
    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_4939408d9c213d92ac887ea6.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:1.688965;font-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_c00000{transform:matrix(0.384508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384508,0.000000,0.000000,0.250000,0,0);}
.ma_c00000{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m9_c00000{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.mb_c00000{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m5_c00000{transform:matrix(0.616340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616340,0.000000,0.000000,0.250000,0,0);}
.m4_c00000{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m3_c00000{transform:matrix(0.660026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660026,0.000000,0.000000,0.250000,0,0);}
.m1_c00000{transform:matrix(0.677748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677748,0.000000,0.000000,0.250000,0,0);}
.m0_c00000{transform:matrix(0.698483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698483,0.000000,0.000000,0.250000,0,0);}
.m6_c00000{transform:matrix(0.705924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705924,0.000000,0.000000,0.250000,0,0);}
.m2_c00000{transform:matrix(0.883650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.883650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.883650,0.000000,0.000000,0.250000,0,0);}
.m8_c00000{transform:matrix(0.957048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.957048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.957048,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;}
.fs7_c00000{font-size:13.620000px;}
.fs3_c00000{font-size:20.400000px;}
.fs9_c00000{font-size:25.500000px;}
.fs8_c00000{font-size:28.920000px;}
.fs6_c00000{font-size:32.340000px;}
.fs5_c00000{font-size:42.540000px;}
.fs4_c00000{font-size:45.900000px;}
.fs0_c00000{font-size:85.020000px;}
.fs1_c00000{font-size:88.440000px;}
.fs2_c00000{font-size:91.860000px;}
.y0_c00000{bottom:0.000000px;}
.y7_c00000{bottom:650.325000px;}
.y9_c00000{bottom:651.405000px;}
.ya_c00000{bottom:652.470000px;}
.y8_c00000{bottom:652.695000px;}
.y6_c00000{bottom:693.180000px;}
.y5_c00000{bottom:693.600000px;}
.y4_c00000{bottom:755.550000px;}
.y3_c00000{bottom:820.635000px;}
.y1_c00000{bottom:888.780000px;}
.y2_c00000{bottom:889.200000px;}
.h8_c00000{height:16.752334px;}
.h4_c00000{height:25.091602px;}
.ha_c00000{height:31.364502px;}
.h9_c00000{height:35.571035px;}
.h7_c00000{height:39.777568px;}
.h6_c00000{height:52.323369px;}
.h5_c00000{height:56.456104px;}
.h1_c00000{height:104.572939px;}
.h2_c00000{height:108.779473px;}
.h3_c00000{height:112.986006px;}
.h0_c00000{height:1335.000000px;}
.w0_c00000{width:880.500000px;}
.x0_c00000{left:0.000000px;}
.x1_c00000{left:210.000000px;}
.x8_c00000{left:305.580000px;}
.x4_c00000{left:313.080000px;}
.x2_c00000{left:329.580000px;}
.x6_c00000{left:354.000000px;}
.x9_c00000{left:387.000000px;}
.xa_c00000{left:412.500000px;}
.x7_c00000{left:423.000000px;}
.x5_c00000{left:433.500000px;}
.xb_c00000{left:483.000000px;}
.xc_c00000{left:539.580000px;}
.x3_c00000{left:607.500000px;}
@media print{
.v0_c00000{vertical-align:0.000000pt;}
.ls0_c00000{letter-spacing:0.000000pt;}
.ws0_c00000{word-spacing:0.000000pt;}
.fs7_c00000{font-size:12.106667pt;}
.fs3_c00000{font-size:18.133333pt;}
.fs9_c00000{font-size:22.666667pt;}
.fs8_c00000{font-size:25.706667pt;}
.fs6_c00000{font-size:28.746667pt;}
.fs5_c00000{font-size:37.813333pt;}
.fs4_c00000{font-size:40.800000pt;}
.fs0_c00000{font-size:75.573333pt;}
.fs1_c00000{font-size:78.613333pt;}
.fs2_c00000{font-size:81.653333pt;}
.y0_c00000{bottom:0.000000pt;}
.y7_c00000{bottom:578.066667pt;}
.y9_c00000{bottom:579.026667pt;}
.ya_c00000{bottom:579.973333pt;}
.y8_c00000{bottom:580.173333pt;}
.y6_c00000{bottom:616.160000pt;}
.y5_c00000{bottom:616.533333pt;}
.y4_c00000{bottom:671.600000pt;}
.y3_c00000{bottom:729.453333pt;}
.y1_c00000{bottom:790.026667pt;}
.y2_c00000{bottom:790.400000pt;}
.h8_c00000{height:14.890964pt;}
.h4_c00000{height:22.303646pt;}
.ha_c00000{height:27.879557pt;}
.h9_c00000{height:31.618698pt;}
.h7_c00000{height:35.357839pt;}
.h6_c00000{height:46.509661pt;}
.h5_c00000{height:50.183203pt;}
.h1_c00000{height:92.953724pt;}
.h2_c00000{height:96.692865pt;}
.h3_c00000{height:100.432005pt;}
.h0_c00000{height:1186.666667pt;}
.w0_c00000{width:782.666667pt;}
.x0_c00000{left:0.000000pt;}
.x1_c00000{left:186.666667pt;}
.x8_c00000{left:271.626667pt;}
.x4_c00000{left:278.293333pt;}
.x2_c00000{left:292.960000pt;}
.x6_c00000{left:314.666667pt;}
.x9_c00000{left:344.000000pt;}
.xa_c00000{left:366.666667pt;}
.x7_c00000{left:376.000000pt;}
.x5_c00000{left:385.333333pt;}
.xb_c00000{left:429.333333pt;}
.xc_c00000{left:479.626667pt;}
.x3_c00000{left:540.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_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_911959541b45e0ddc0ca9d3f.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.688965;font-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_c00001{transform:matrix(0.338126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338126,0.000000,0.000000,0.250000,0,0);}
.m13_c00001{transform:matrix(0.346992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346992,0.000000,0.000000,0.250000,0,0);}
.m12_c00001{transform:matrix(0.361317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361317,0.000000,0.000000,0.250000,0,0);}
.m30_c00001{transform:matrix(0.366883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366883,0.000000,0.000000,0.250000,0,0);}
.m28_c00001{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.m25_c00001{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m1a_c00001{transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);}
.m26_c00001{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m20_c00001{transform:matrix(0.390588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390588,0.000000,0.000000,0.250000,0,0);}
.m11_c00001{transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);}
.m2f_c00001{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.m2e_c00001{transform:matrix(0.399378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399378,0.000000,0.000000,0.250000,0,0);}
.m16_c00001{transform:matrix(0.407158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407158,0.000000,0.000000,0.250000,0,0);}
.m29_c00001{transform:matrix(0.415456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415456,0.000000,0.000000,0.250000,0,0);}
.m7_c00001{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m27_c00001{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.mc_c00001{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m1b_c00001{transform:matrix(0.427647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427647,0.000000,0.000000,0.250000,0,0);}
.mf_c00001{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m1e_c00001{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m1f_c00001{transform:matrix(0.456471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456471,0.000000,0.000000,0.250000,0,0);}
.m17_c00001{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_c00001{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m18_c00001{transform:matrix(0.468824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468824,0.000000,0.000000,0.250000,0,0);}
.m15_c00001{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.m14_c00001{transform:matrix(0.477206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477206,0.000000,0.000000,0.250000,0,0);}
.m2a_c00001{transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);}
.m1d_c00001{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_c00001{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_c00001{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.m24_c00001{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_c00001{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m10_c00001{transform:matrix(0.528676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528676,0.000000,0.000000,0.250000,0,0);}
.m31_c00001{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.m5_c00001{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m6_c00001{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m34_c00001{transform:matrix(0.543269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543269,0.000000,0.000000,0.250000,0,0);}
.m4_c00001{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m0_c00001{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m33_c00001{transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);}
.m2_c00001{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mb_c00001{transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);}
.m2d_c00001{transform:matrix(0.590441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590441,0.000000,0.000000,0.250000,0,0);}
.m1_c00001{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m19_c00001{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m1c_c00001{transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);}
.m23_c00001{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);}
.md_c00001{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m32_c00001{transform:matrix(0.636218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636218,0.000000,0.000000,0.250000,0,0);}
.m9_c00001{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m8_c00001{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.m2b_c00001{transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);}
.m22_c00001{transform:matrix(0.892070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.892070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.892070,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;}
.fs5_c00001{font-size:13.620000px;}
.fs6_c00001{font-size:18.720000px;}
.fs4_c00001{font-size:20.400000px;}
.fs3_c00001{font-size:25.500000px;}
.fs0_c00001{font-size:28.920000px;}
.fs1_c00001{font-size:32.340000px;}
.fs2_c00001{font-size:35.700000px;}
.y0_c00001{bottom:0.000000px;}
.y29_c00001{bottom:230.130000px;}
.y28_c00001{bottom:249.825000px;}
.y21_c00001{bottom:250.050000px;}
.y25_c00001{bottom:250.905000px;}
.y26_c00001{bottom:251.325000px;}
.y27_c00001{bottom:251.970000px;}
.y20_c00001{bottom:252.195000px;}
.y22_c00001{bottom:253.470000px;}
.y23_c00001{bottom:253.695000px;}
.y24_c00001{bottom:254.550000px;}
.y1c_c00001{bottom:263.550000px;}
.y1f_c00001{bottom:264.405000px;}
.y1d_c00001{bottom:264.825000px;}
.y1e_c00001{bottom:265.905000px;}
.y1b_c00001{bottom:266.550000px;}
.y1a_c00001{bottom:266.970000px;}
.y18_c00001{bottom:276.825000px;}
.y17_c00001{bottom:277.050000px;}
.y15_c00001{bottom:277.470000px;}
.y19_c00001{bottom:277.695000px;}
.y12_c00001{bottom:278.325000px;}
.y11_c00001{bottom:278.970000px;}
.y16_c00001{bottom:279.405000px;}
.y14_c00001{bottom:280.050000px;}
.y13_c00001{bottom:280.470000px;}
.yc_c00001{bottom:300.825000px;}
.y10_c00001{bottom:301.470000px;}
.ye_c00001{bottom:301.905000px;}
.yd_c00001{bottom:302.550000px;}
.yf_c00001{bottom:304.050000px;}
.ya_c00001{bottom:334.050000px;}
.yb_c00001{bottom:334.470000px;}
.y9_c00001{bottom:335.550000px;}
.y8_c00001{bottom:1025.745000px;}
.y7_c00001{bottom:1027.470000px;}
.y5_c00001{bottom:1027.905000px;}
.y6_c00001{bottom:1028.970000px;}
.y2_c00001{bottom:1044.825000px;}
.y3_c00001{bottom:1045.245000px;}
.y1_c00001{bottom:1047.405000px;}
.y4_c00001{bottom:1048.470000px;}
.h6_c00001{height:16.752334px;}
.h7_c00001{height:23.025234px;}
.h5_c00001{height:25.091602px;}
.h4_c00001{height:31.364502px;}
.h1_c00001{height:35.571035px;}
.h2_c00001{height:39.777568px;}
.h3_c00001{height:43.910303px;}
.h0_c00001{height:1335.000000px;}
.w0_c00001{width:880.500000px;}
.x0_c00001{left:0.000000px;}
.x1_c00001{left:167.145000px;}
.x2_c00001{left:243.000000px;}
.x1b_c00001{left:276.000000px;}
.x3_c00001{left:282.420000px;}
.x2e_c00001{left:292.920000px;}
.x1c_c00001{left:299.580000px;}
.x15_c00001{left:306.000000px;}
.xb_c00001{left:315.000000px;}
.x2f_c00001{left:316.080000px;}
.x27_c00001{left:331.500000px;}
.x1d_c00001{left:337.080000px;}
.x4_c00001{left:348.000000px;}
.x16_c00001{left:363.855000px;}
.x28_c00001{left:370.500000px;}
.x35_c00001{left:371.580000px;}
.x30_c00001{left:385.500000px;}
.x1e_c00001{left:388.500000px;}
.x10_c00001{left:393.000000px;}
.x29_c00001{left:404.580000px;}
.x5_c00001{left:408.420000px;}
.x17_c00001{left:409.500000px;}
.x1f_c00001{left:412.080000px;}
.xc_c00001{left:413.580000px;}
.x36_c00001{left:420.000000px;}
.x2a_c00001{left:422.580000px;}
.x18_c00001{left:425.355000px;}
.x31_c00001{left:430.500000px;}
.xd_c00001{left:432.645000px;}
.x11_c00001{left:435.420000px;}
.x19_c00001{left:437.580000px;}
.x20_c00001{left:439.080000px;}
.x6_c00001{left:448.920000px;}
.x12_c00001{left:454.080000px;}
.x2b_c00001{left:456.000000px;}
.x21_c00001{left:457.500000px;}
.x37_c00001{left:465.000000px;}
.xe_c00001{left:471.000000px;}
.x13_c00001{left:472.500000px;}
.x7_c00001{left:477.000000px;}
.x22_c00001{left:483.000000px;}
.x14_c00001{left:511.920000px;}
.x1a_c00001{left:513.000000px;}
.x23_c00001{left:514.500000px;}
.x2c_c00001{left:522.000000px;}
.x32_c00001{left:534.000000px;}
.xf_c00001{left:538.080000px;}
.x24_c00001{left:541.080000px;}
.x25_c00001{left:560.580000px;}
.x33_c00001{left:565.500000px;}
.x8_c00001{left:568.080000px;}
.x2d_c00001{left:580.500000px;}
.x34_c00001{left:586.500000px;}
.x26_c00001{left:624.000000px;}
.x9_c00001{left:664.500000px;}
.xa_c00001{left:691.920000px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.ls0_c00001{letter-spacing:0.000000pt;}
.ws0_c00001{word-spacing:0.000000pt;}
.fs5_c00001{font-size:12.106667pt;}
.fs6_c00001{font-size:16.640000pt;}
.fs4_c00001{font-size:18.133333pt;}
.fs3_c00001{font-size:22.666667pt;}
.fs0_c00001{font-size:25.706667pt;}
.fs1_c00001{font-size:28.746667pt;}
.fs2_c00001{font-size:31.733333pt;}
.y0_c00001{bottom:0.000000pt;}
.y29_c00001{bottom:204.560000pt;}
.y28_c00001{bottom:222.066667pt;}
.y21_c00001{bottom:222.266667pt;}
.y25_c00001{bottom:223.026667pt;}
.y26_c00001{bottom:223.400000pt;}
.y27_c00001{bottom:223.973333pt;}
.y20_c00001{bottom:224.173333pt;}
.y22_c00001{bottom:225.306667pt;}
.y23_c00001{bottom:225.506667pt;}
.y24_c00001{bottom:226.266667pt;}
.y1c_c00001{bottom:234.266667pt;}
.y1f_c00001{bottom:235.026667pt;}
.y1d_c00001{bottom:235.400000pt;}
.y1e_c00001{bottom:236.360000pt;}
.y1b_c00001{bottom:236.933333pt;}
.y1a_c00001{bottom:237.306667pt;}
.y18_c00001{bottom:246.066667pt;}
.y17_c00001{bottom:246.266667pt;}
.y15_c00001{bottom:246.640000pt;}
.y19_c00001{bottom:246.840000pt;}
.y12_c00001{bottom:247.400000pt;}
.y11_c00001{bottom:247.973333pt;}
.y16_c00001{bottom:248.360000pt;}
.y14_c00001{bottom:248.933333pt;}
.y13_c00001{bottom:249.306667pt;}
.yc_c00001{bottom:267.400000pt;}
.y10_c00001{bottom:267.973333pt;}
.ye_c00001{bottom:268.360000pt;}
.yd_c00001{bottom:268.933333pt;}
.yf_c00001{bottom:270.266667pt;}
.ya_c00001{bottom:296.933333pt;}
.yb_c00001{bottom:297.306667pt;}
.y9_c00001{bottom:298.266667pt;}
.y8_c00001{bottom:911.773333pt;}
.y7_c00001{bottom:913.306667pt;}
.y5_c00001{bottom:913.693333pt;}
.y6_c00001{bottom:914.640000pt;}
.y2_c00001{bottom:928.733333pt;}
.y3_c00001{bottom:929.106667pt;}
.y1_c00001{bottom:931.026667pt;}
.y4_c00001{bottom:931.973333pt;}
.h6_c00001{height:14.890964pt;}
.h7_c00001{height:20.466875pt;}
.h5_c00001{height:22.303646pt;}
.h4_c00001{height:27.879557pt;}
.h1_c00001{height:31.618698pt;}
.h2_c00001{height:35.357839pt;}
.h3_c00001{height:39.031380pt;}
.h0_c00001{height:1186.666667pt;}
.w0_c00001{width:782.666667pt;}
.x0_c00001{left:0.000000pt;}
.x1_c00001{left:148.573333pt;}
.x2_c00001{left:216.000000pt;}
.x1b_c00001{left:245.333333pt;}
.x3_c00001{left:251.040000pt;}
.x2e_c00001{left:260.373333pt;}
.x1c_c00001{left:266.293333pt;}
.x15_c00001{left:272.000000pt;}
.xb_c00001{left:280.000000pt;}
.x2f_c00001{left:280.960000pt;}
.x27_c00001{left:294.666667pt;}
.x1d_c00001{left:299.626667pt;}
.x4_c00001{left:309.333333pt;}
.x16_c00001{left:323.426667pt;}
.x28_c00001{left:329.333333pt;}
.x35_c00001{left:330.293333pt;}
.x30_c00001{left:342.666667pt;}
.x1e_c00001{left:345.333333pt;}
.x10_c00001{left:349.333333pt;}
.x29_c00001{left:359.626667pt;}
.x5_c00001{left:363.040000pt;}
.x17_c00001{left:364.000000pt;}
.x1f_c00001{left:366.293333pt;}
.xc_c00001{left:367.626667pt;}
.x36_c00001{left:373.333333pt;}
.x2a_c00001{left:375.626667pt;}
.x18_c00001{left:378.093333pt;}
.x31_c00001{left:382.666667pt;}
.xd_c00001{left:384.573333pt;}
.x11_c00001{left:387.040000pt;}
.x19_c00001{left:388.960000pt;}
.x20_c00001{left:390.293333pt;}
.x6_c00001{left:399.040000pt;}
.x12_c00001{left:403.626667pt;}
.x2b_c00001{left:405.333333pt;}
.x21_c00001{left:406.666667pt;}
.x37_c00001{left:413.333333pt;}
.xe_c00001{left:418.666667pt;}
.x13_c00001{left:420.000000pt;}
.x7_c00001{left:424.000000pt;}
.x22_c00001{left:429.333333pt;}
.x14_c00001{left:455.040000pt;}
.x1a_c00001{left:456.000000pt;}
.x23_c00001{left:457.333333pt;}
.x2c_c00001{left:464.000000pt;}
.x32_c00001{left:474.666667pt;}
.xf_c00001{left:478.293333pt;}
.x24_c00001{left:480.960000pt;}
.x25_c00001{left:498.293333pt;}
.x33_c00001{left:502.666667pt;}
.x8_c00001{left:504.960000pt;}
.x2d_c00001{left:516.000000pt;}
.x34_c00001{left:521.333333pt;}
.x26_c00001{left:554.666667pt;}
.x9_c00001{left:590.666667pt;}
.xa_c00001{left:615.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_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_b39e4984fc083b15d1edeee9.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:1.688965;font-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_c00002{transform:matrix(0.378834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378834,0.000000,0.000000,0.250000,0,0);}
.m3_c00002{transform:matrix(0.380818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380818,0.000000,0.000000,0.250000,0,0);}
.m1_c00002{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.mc_c00002{transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);}
.ma_c00002{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m2_c00002{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.m0_c00002{transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);}
.m9_c00002{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.m7_c00002{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.mb_c00002{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m4_c00002{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.m5_c00002{transform:matrix(0.559369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559369,0.000000,0.000000,0.250000,0,0);}
.m6_c00002{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,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;}
.fs2_c00002{font-size:28.920000px;}
.fs0_c00002{font-size:32.340000px;}
.fs3_c00002{font-size:39.120000px;}
.fs1_c00002{font-size:42.540000px;}
.y0_c00002{bottom:0.000000px;}
.y8_c00002{bottom:726.405000px;}
.y7_c00002{bottom:726.825000px;}
.y6_c00002{bottom:751.680000px;}
.y4_c00002{bottom:753.825000px;}
.y5_c00002{bottom:754.905000px;}
.y2_c00002{bottom:776.325000px;}
.y3_c00002{bottom:777.180000px;}
.y1_c00002{bottom:780.825000px;}
.h3_c00002{height:35.571035px;}
.h1_c00002{height:39.777568px;}
.h4_c00002{height:48.116836px;}
.h2_c00002{height:52.323369px;}
.h0_c00002{height:1335.000000px;}
.w0_c00002{width:880.500000px;}
.x0_c00002{left:0.000000px;}
.x5_c00002{left:314.580000px;}
.x6_c00002{left:356.580000px;}
.xa_c00002{left:373.500000px;}
.x1_c00002{left:385.920000px;}
.x7_c00002{left:387.000000px;}
.xb_c00002{left:402.000000px;}
.x2_c00002{left:406.500000px;}
.x8_c00002{left:410.580000px;}
.x3_c00002{left:430.920000px;}
.xc_c00002{left:436.500000px;}
.xd_c00002{left:452.355000px;}
.x9_c00002{left:484.080000px;}
.x4_c00002{left:486.000000px;}
@media print{
.v0_c00002{vertical-align:0.000000pt;}
.ls0_c00002{letter-spacing:0.000000pt;}
.ws0_c00002{word-spacing:0.000000pt;}
.fs2_c00002{font-size:25.706667pt;}
.fs0_c00002{font-size:28.746667pt;}
.fs3_c00002{font-size:34.773333pt;}
.fs1_c00002{font-size:37.813333pt;}
.y0_c00002{bottom:0.000000pt;}
.y8_c00002{bottom:645.693333pt;}
.y7_c00002{bottom:646.066667pt;}
.y6_c00002{bottom:668.160000pt;}
.y4_c00002{bottom:670.066667pt;}
.y5_c00002{bottom:671.026667pt;}
.y2_c00002{bottom:690.066667pt;}
.y3_c00002{bottom:690.826667pt;}
.y1_c00002{bottom:694.066667pt;}
.h3_c00002{height:31.618698pt;}
.h1_c00002{height:35.357839pt;}
.h4_c00002{height:42.770521pt;}
.h2_c00002{height:46.509661pt;}
.h0_c00002{height:1186.666667pt;}
.w0_c00002{width:782.666667pt;}
.x0_c00002{left:0.000000pt;}
.x5_c00002{left:279.626667pt;}
.x6_c00002{left:316.960000pt;}
.xa_c00002{left:332.000000pt;}
.x1_c00002{left:343.040000pt;}
.x7_c00002{left:344.000000pt;}
.xb_c00002{left:357.333333pt;}
.x2_c00002{left:361.333333pt;}
.x8_c00002{left:364.960000pt;}
.x3_c00002{left:383.040000pt;}
.xc_c00002{left:388.000000pt;}
.xd_c00002{left:402.093333pt;}
.x9_c00002{left:430.293333pt;}
.x4_c00002{left:432.000000pt;}
}





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

.ir_c00003:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00003{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00003;src:url('chunks/assets/font_8aa8ccb945a1e7b7756fa79a.woff2')format("woff");}.ff1_c00003{font-family:ff1_c00003;line-height:1.688965;font-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_c00003{transform:matrix(0.046680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046680,0.000000,0.000000,0.250000,0,0);}
.mb_c00003{transform:matrix(0.360084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360084,0.000000,0.000000,0.250000,0,0);}
.m20_c00003{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m2c_c00003{transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);}
.m3b_c00003{transform:matrix(0.382285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382285,0.000000,0.000000,0.250000,0,0);}
.m2e_c00003{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m3d_c00003{transform:matrix(0.394939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394939,0.000000,0.000000,0.250000,0,0);}
.m2b_c00003{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m2d_c00003{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m3a_c00003{transform:matrix(0.401074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401074,0.000000,0.000000,0.250000,0,0);}
.m25_c00003{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m18_c00003{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m16_c00003{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m6_c00003{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m32_c00003{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m1c_c00003{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m29_c00003{transform:matrix(0.415261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415261,0.000000,0.000000,0.250000,0,0);}
.m24_c00003{transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);}
.m30_c00003{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m31_c00003{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m13_c00003{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m15_c00003{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m1e_c00003{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m39_c00003{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m23_c00003{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m3c_c00003{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m27_c00003{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m26_c00003{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.mf_c00003{transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);}
.m37_c00003{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m14_c00003{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.ma_c00003{transform:matrix(0.460581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460581,0.000000,0.000000,0.250000,0,0);}
.m3e_c00003{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m8_c00003{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m1b_c00003{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m1f_c00003{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m5_c00003{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_c00003{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m1a_c00003{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m1d_c00003{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m2f_c00003{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m12_c00003{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m10_c00003{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m22_c00003{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m38_c00003{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m21_c00003{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m9_c00003{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m36_c00003{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m2a_c00003{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m33_c00003{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m17_c00003{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m3_c00003{transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);}
.m2_c00003{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.md_c00003{transform:matrix(0.582469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582469,0.000000,0.000000,0.250000,0,0);}
.m28_c00003{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m7_c00003{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.me_c00003{transform:matrix(0.837340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837340,0.000000,0.000000,0.250000,0,0);}
.m0_c00003{transform:matrix(0.842842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.842842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.842842,0.000000,0.000000,0.250000,0,0);}
.m4_c00003{transform:matrix(0.885294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.885294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.885294,0.000000,0.000000,0.250000,0,0);}
.mc_c00003{transform:matrix(0.938235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.938235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.938235,0.000000,0.000000,0.250000,0,0);}
.m19_c00003{transform:matrix(0.999199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.999199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.999199,0.000000,0.000000,0.250000,0,0);}
.m11_c00003{transform:matrix(1.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.749199,0.000000,0.000000,0.250000,0,0);}
.m34_c00003{transform:matrix(2.640041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.640041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.640041,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;}
.fs4_c00003{font-size:18.720000px;}
.fs1_c00003{font-size:20.400000px;}
.fs3_c00003{font-size:25.500000px;}
.fs0_c00003{font-size:28.920000px;}
.fs6_c00003{font-size:32.340000px;}
.fs2_c00003{font-size:35.700000px;}
.fs5_c00003{font-size:39.120000px;}
.y0_c00003{bottom:0.000000px;}
.y57_c00003{bottom:228.825000px;}
.y58_c00003{bottom:232.905000px;}
.y55_c00003{bottom:246.180000px;}
.y56_c00003{bottom:253.905000px;}
.y53_c00003{bottom:266.745000px;}
.y54_c00003{bottom:270.825000px;}
.y51_c00003{bottom:286.245000px;}
.y52_c00003{bottom:292.470000px;}
.y4f_c00003{bottom:306.180000px;}
.y50_c00003{bottom:308.745000px;}
.y4c_c00003{bottom:325.680000px;}
.y4d_c00003{bottom:326.745000px;}
.y4e_c00003{bottom:329.745000px;}
.y4a_c00003{bottom:346.245000px;}
.y4b_c00003{bottom:348.405000px;}
.y49_c00003{bottom:366.405000px;}
.y48_c00003{bottom:367.905000px;}
.y44_c00003{bottom:385.245000px;}
.y46_c00003{bottom:385.905000px;}
.y45_c00003{bottom:387.405000px;}
.y47_c00003{bottom:389.130000px;}
.y43_c00003{bottom:407.745000px;}
.y42_c00003{bottom:408.405000px;}
.y3f_c00003{bottom:425.745000px;}
.y41_c00003{bottom:427.245000px;}
.y40_c00003{bottom:427.905000px;}
.y3d_c00003{bottom:445.245000px;}
.y3e_c00003{bottom:446.745000px;}
.y3b_c00003{bottom:464.745000px;}
.y3c_c00003{bottom:468.405000px;}
.y39_c00003{bottom:484.245000px;}
.y3a_c00003{bottom:485.745000px;}
.y37_c00003{bottom:505.905000px;}
.y38_c00003{bottom:508.905000px;}
.y35_c00003{bottom:524.745000px;}
.y36_c00003{bottom:525.405000px;}
.y33_c00003{bottom:543.180000px;}
.y34_c00003{bottom:545.745000px;}
.y30_c00003{bottom:563.745000px;}
.y32_c00003{bottom:564.825000px;}
.y31_c00003{bottom:565.905000px;}
.y2d_c00003{bottom:582.180000px;}
.y2f_c00003{bottom:584.325000px;}
.y2e_c00003{bottom:585.405000px;}
.y2a_c00003{bottom:602.745000px;}
.y2b_c00003{bottom:604.470000px;}
.y29_c00003{bottom:604.905000px;}
.y2c_c00003{bottom:606.630000px;}
.y27_c00003{bottom:629.745000px;}
.y28_c00003{bottom:630.405000px;}
.y24_c00003{bottom:648.180000px;}
.y25_c00003{bottom:649.245000px;}
.y26_c00003{bottom:649.905000px;}
.y22_c00003{bottom:668.745000px;}
.y23_c00003{bottom:669.405000px;}
.y21_c00003{bottom:695.970000px;}
.y20_c00003{bottom:696.405000px;}
.y1f_c00003{bottom:716.745000px;}
.y1e_c00003{bottom:717.405000px;}
.y1c_c00003{bottom:734.745000px;}
.y1d_c00003{bottom:735.405000px;}
.y1a_c00003{bottom:756.405000px;}
.y1b_c00003{bottom:757.905000px;}
.y18_c00003{bottom:773.745000px;}
.y19_c00003{bottom:774.405000px;}
.y17_c00003{bottom:793.905000px;}
.y16_c00003{bottom:795.405000px;}
.y14_c00003{bottom:814.245000px;}
.y15_c00003{bottom:816.630000px;}
.y12_c00003{bottom:832.245000px;}
.y13_c00003{bottom:836.970000px;}
.y10_c00003{bottom:853.245000px;}
.y11_c00003{bottom:855.405000px;}
.yf_c00003{bottom:871.905000px;}
.ye_c00003{bottom:872.745000px;}
.yd_c00003{bottom:874.905000px;}
.yb_c00003{bottom:900.405000px;}
.yc_c00003{bottom:902.130000px;}
.y9_c00003{bottom:927.405000px;}
.ya_c00003{bottom:927.630000px;}
.y5_c00003{bottom:944.745000px;}
.y6_c00003{bottom:945.405000px;}
.y8_c00003{bottom:946.050000px;}
.y7_c00003{bottom:946.470000px;}
.y4_c00003{bottom:946.905000px;}
.y3_c00003{bottom:965.550000px;}
.y2_c00003{bottom:966.405000px;}
.y1_c00003{bottom:1002.405000px;}
.h5_c00003{height:23.025234px;}
.h2_c00003{height:25.091602px;}
.h4_c00003{height:31.364502px;}
.h1_c00003{height:35.571035px;}
.h7_c00003{height:39.777568px;}
.h3_c00003{height:43.910303px;}
.h6_c00003{height:48.116836px;}
.h0_c00003{height:1335.000000px;}
.w0_c00003{width:880.500000px;}
.x0_c00003{left:0.000000px;}
.x2_c00003{left:149.580000px;}
.x11_c00003{left:151.080000px;}
.x14_c00003{left:166.080000px;}
.x1c_c00003{left:167.580000px;}
.x22_c00003{left:169.080000px;}
.x1d_c00003{left:183.000000px;}
.x20_c00003{left:184.500000px;}
.x25_c00003{left:186.000000px;}
.xf_c00003{left:189.000000px;}
.x12_c00003{left:196.080000px;}
.x18_c00003{left:197.580000px;}
.x16_c00003{left:199.500000px;}
.x19_c00003{left:201.000000px;}
.x27_c00003{left:202.920000px;}
.x6_c00003{left:206.580000px;}
.x15_c00003{left:221.580000px;}
.x23_c00003{left:223.500000px;}
.x1a_c00003{left:226.500000px;}
.x7_c00003{left:233.580000px;}
.x3_c00003{left:241.080000px;}
.x8_c00003{left:255.000000px;}
.x1e_c00003{left:259.080000px;}
.x4_c00003{left:261.000000px;}
.x21_c00003{left:271.500000px;}
.x9_c00003{left:276.000000px;}
.xa_c00003{left:349.080000px;}
.xb_c00003{left:381.000000px;}
.x1_c00003{left:388.080000px;}
.xc_c00003{left:403.080000px;}
.xe_c00003{left:699.000000px;}
.xd_c00003{left:702.000000px;}
.x5_c00003{left:708.000000px;}
.x17_c00003{left:714.420000px;}
.x1f_c00003{left:715.500000px;}
.x26_c00003{left:717.000000px;}
.x13_c00003{left:720.000000px;}
.x10_c00003{left:721.080000px;}
.x1b_c00003{left:723.420000px;}
.x24_c00003{left:724.920000px;}
@media print{
.v0_c00003{vertical-align:0.000000pt;}
.ls0_c00003{letter-spacing:0.000000pt;}
.ws0_c00003{word-spacing:0.000000pt;}
.fs4_c00003{font-size:16.640000pt;}
.fs1_c00003{font-size:18.133333pt;}
.fs3_c00003{font-size:22.666667pt;}
.fs0_c00003{font-size:25.706667pt;}
.fs6_c00003{font-size:28.746667pt;}
.fs2_c00003{font-size:31.733333pt;}
.fs5_c00003{font-size:34.773333pt;}
.y0_c00003{bottom:0.000000pt;}
.y57_c00003{bottom:203.400000pt;}
.y58_c00003{bottom:207.026667pt;}
.y55_c00003{bottom:218.826667pt;}
.y56_c00003{bottom:225.693333pt;}
.y53_c00003{bottom:237.106667pt;}
.y54_c00003{bottom:240.733333pt;}
.y51_c00003{bottom:254.440000pt;}
.y52_c00003{bottom:259.973333pt;}
.y4f_c00003{bottom:272.160000pt;}
.y50_c00003{bottom:274.440000pt;}
.y4c_c00003{bottom:289.493333pt;}
.y4d_c00003{bottom:290.440000pt;}
.y4e_c00003{bottom:293.106667pt;}
.y4a_c00003{bottom:307.773333pt;}
.y4b_c00003{bottom:309.693333pt;}
.y49_c00003{bottom:325.693333pt;}
.y48_c00003{bottom:327.026667pt;}
.y44_c00003{bottom:342.440000pt;}
.y46_c00003{bottom:343.026667pt;}
.y45_c00003{bottom:344.360000pt;}
.y47_c00003{bottom:345.893333pt;}
.y43_c00003{bottom:362.440000pt;}
.y42_c00003{bottom:363.026667pt;}
.y3f_c00003{bottom:378.440000pt;}
.y41_c00003{bottom:379.773333pt;}
.y40_c00003{bottom:380.360000pt;}
.y3d_c00003{bottom:395.773333pt;}
.y3e_c00003{bottom:397.106667pt;}
.y3b_c00003{bottom:413.106667pt;}
.y3c_c00003{bottom:416.360000pt;}
.y39_c00003{bottom:430.440000pt;}
.y3a_c00003{bottom:431.773333pt;}
.y37_c00003{bottom:449.693333pt;}
.y38_c00003{bottom:452.360000pt;}
.y35_c00003{bottom:466.440000pt;}
.y36_c00003{bottom:467.026667pt;}
.y33_c00003{bottom:482.826667pt;}
.y34_c00003{bottom:485.106667pt;}
.y30_c00003{bottom:501.106667pt;}
.y32_c00003{bottom:502.066667pt;}
.y31_c00003{bottom:503.026667pt;}
.y2d_c00003{bottom:517.493333pt;}
.y2f_c00003{bottom:519.400000pt;}
.y2e_c00003{bottom:520.360000pt;}
.y2a_c00003{bottom:535.773333pt;}
.y2b_c00003{bottom:537.306667pt;}
.y29_c00003{bottom:537.693333pt;}
.y2c_c00003{bottom:539.226667pt;}
.y27_c00003{bottom:559.773333pt;}
.y28_c00003{bottom:560.360000pt;}
.y24_c00003{bottom:576.160000pt;}
.y25_c00003{bottom:577.106667pt;}
.y26_c00003{bottom:577.693333pt;}
.y22_c00003{bottom:594.440000pt;}
.y23_c00003{bottom:595.026667pt;}
.y21_c00003{bottom:618.640000pt;}
.y20_c00003{bottom:619.026667pt;}
.y1f_c00003{bottom:637.106667pt;}
.y1e_c00003{bottom:637.693333pt;}
.y1c_c00003{bottom:653.106667pt;}
.y1d_c00003{bottom:653.693333pt;}
.y1a_c00003{bottom:672.360000pt;}
.y1b_c00003{bottom:673.693333pt;}
.y18_c00003{bottom:687.773333pt;}
.y19_c00003{bottom:688.360000pt;}
.y17_c00003{bottom:705.693333pt;}
.y16_c00003{bottom:707.026667pt;}
.y14_c00003{bottom:723.773333pt;}
.y15_c00003{bottom:725.893333pt;}
.y12_c00003{bottom:739.773333pt;}
.y13_c00003{bottom:743.973333pt;}
.y10_c00003{bottom:758.440000pt;}
.y11_c00003{bottom:760.360000pt;}
.yf_c00003{bottom:775.026667pt;}
.ye_c00003{bottom:775.773333pt;}
.yd_c00003{bottom:777.693333pt;}
.yb_c00003{bottom:800.360000pt;}
.yc_c00003{bottom:801.893333pt;}
.y9_c00003{bottom:824.360000pt;}
.ya_c00003{bottom:824.560000pt;}
.y5_c00003{bottom:839.773333pt;}
.y6_c00003{bottom:840.360000pt;}
.y8_c00003{bottom:840.933333pt;}
.y7_c00003{bottom:841.306667pt;}
.y4_c00003{bottom:841.693333pt;}
.y3_c00003{bottom:858.266667pt;}
.y2_c00003{bottom:859.026667pt;}
.y1_c00003{bottom:891.026667pt;}
.h5_c00003{height:20.466875pt;}
.h2_c00003{height:22.303646pt;}
.h4_c00003{height:27.879557pt;}
.h1_c00003{height:31.618698pt;}
.h7_c00003{height:35.357839pt;}
.h3_c00003{height:39.031380pt;}
.h6_c00003{height:42.770521pt;}
.h0_c00003{height:1186.666667pt;}
.w0_c00003{width:782.666667pt;}
.x0_c00003{left:0.000000pt;}
.x2_c00003{left:132.960000pt;}
.x11_c00003{left:134.293333pt;}
.x14_c00003{left:147.626667pt;}
.x1c_c00003{left:148.960000pt;}
.x22_c00003{left:150.293333pt;}
.x1d_c00003{left:162.666667pt;}
.x20_c00003{left:164.000000pt;}
.x25_c00003{left:165.333333pt;}
.xf_c00003{left:168.000000pt;}
.x12_c00003{left:174.293333pt;}
.x18_c00003{left:175.626667pt;}
.x16_c00003{left:177.333333pt;}
.x19_c00003{left:178.666667pt;}
.x27_c00003{left:180.373333pt;}
.x6_c00003{left:183.626667pt;}
.x15_c00003{left:196.960000pt;}
.x23_c00003{left:198.666667pt;}
.x1a_c00003{left:201.333333pt;}
.x7_c00003{left:207.626667pt;}
.x3_c00003{left:214.293333pt;}
.x8_c00003{left:226.666667pt;}
.x1e_c00003{left:230.293333pt;}
.x4_c00003{left:232.000000pt;}
.x21_c00003{left:241.333333pt;}
.x9_c00003{left:245.333333pt;}
.xa_c00003{left:310.293333pt;}
.xb_c00003{left:338.666667pt;}
.x1_c00003{left:344.960000pt;}
.xc_c00003{left:358.293333pt;}
.xe_c00003{left:621.333333pt;}
.xd_c00003{left:624.000000pt;}
.x5_c00003{left:629.333333pt;}
.x17_c00003{left:635.040000pt;}
.x1f_c00003{left:636.000000pt;}
.x26_c00003{left:637.333333pt;}
.x13_c00003{left:640.000000pt;}
.x10_c00003{left:640.960000pt;}
.x1b_c00003{left:643.040000pt;}
.x24_c00003{left:644.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_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_4e2c71472c551d955f2f5030.woff2')format("woff");}.ff1_c00004{font-family:ff1_c00004;line-height:1.688965;font-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_c00004{transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);}
.m6_c00004{transform:matrix(0.200207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200207,0.000000,0.000000,0.250000,0,0);}
.m1d_c00004{transform:matrix(0.333506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333506,0.000000,0.000000,0.250000,0,0);}
.m23_c00004{transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);}
.m28_c00004{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.me_c00004{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m1e_c00004{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m12_c00004{transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);}
.m36_c00004{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m8_c00004{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m32_c00004{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mc_c00004{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m24_c00004{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m5_c00004{transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);}
.m34_c00004{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m39_c00004{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m15_c00004{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m2f_c00004{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m20_c00004{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m30_c00004{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m2d_c00004{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m19_c00004{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m2e_c00004{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.mb_c00004{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.ma_c00004{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m2c_c00004{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m31_c00004{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m3_c00004{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m26_c00004{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m9_c00004{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m2a_c00004{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m2b_c00004{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.m29_c00004{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m7_c00004{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m10_c00004{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m1b_c00004{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m3a_c00004{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m3b_c00004{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m21_c00004{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m35_c00004{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m18_c00004{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m1f_c00004{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m27_c00004{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m22_c00004{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m16_c00004{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m17_c00004{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m25_c00004{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m13_c00004{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m4_c00004{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m33_c00004{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.md_c00004{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m1a_c00004{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m38_c00004{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m1c_c00004{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m2_c00004{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m1_c00004{transform:matrix(0.651442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651442,0.000000,0.000000,0.250000,0,0);}
.m14_c00004{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m11_c00004{transform:matrix(0.680498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680498,0.000000,0.000000,0.250000,0,0);}
.m0_c00004{transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);}
.mf_c00004{transform:matrix(0.883299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.883299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.883299,0.000000,0.000000,0.250000,0,0);}
.v0_c00004{vertical-align:0.000000px;}
.ls0_c00004{letter-spacing:0.000000px;}
.sc__c00004{text-shadow:none;}
.sc0_c00004{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00004{-webkit-text-stroke:0px transparent;}
.sc0_c00004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00004{word-spacing:0.000000px;}
.fc0_c00004{color:transparent;}
.fs0_c00004{font-size:18.720000px;}
.fs3_c00004{font-size:25.500000px;}
.fs1_c00004{font-size:28.920000px;}
.fs5_c00004{font-size:32.340000px;}
.fs2_c00004{font-size:35.700000px;}
.fs4_c00004{font-size:39.120000px;}
.y0_c00004{bottom:0.000000px;}
.y57_c00004{bottom:253.245000px;}
.y59_c00004{bottom:253.905000px;}
.y58_c00004{bottom:255.405000px;}
.y55_c00004{bottom:274.905000px;}
.y56_c00004{bottom:276.405000px;}
.y54_c00004{bottom:312.405000px;}
.y53_c00004{bottom:313.905000px;}
.y51_c00004{bottom:331.245000px;}
.y52_c00004{bottom:331.905000px;}
.y50_c00004{bottom:353.745000px;}
.y4f_c00004{bottom:354.405000px;}
.y4d_c00004{bottom:371.745000px;}
.y4e_c00004{bottom:373.245000px;}
.y4a_c00004{bottom:391.245000px;}
.y4b_c00004{bottom:393.405000px;}
.y4c_c00004{bottom:394.905000px;}
.y48_c00004{bottom:410.745000px;}
.y49_c00004{bottom:412.245000px;}
.y47_c00004{bottom:433.905000px;}
.y46_c00004{bottom:450.405000px;}
.y45_c00004{bottom:451.245000px;}
.y43_c00004{bottom:470.745000px;}
.y44_c00004{bottom:471.405000px;}
.y41_c00004{bottom:490.245000px;}
.y42_c00004{bottom:491.745000px;}
.y3f_c00004{bottom:509.745000px;}
.y40_c00004{bottom:513.405000px;}
.y3d_c00004{bottom:529.245000px;}
.y3c_c00004{bottom:530.745000px;}
.y3e_c00004{bottom:532.905000px;}
.y3a_c00004{bottom:550.245000px;}
.y3b_c00004{bottom:551.745000px;}
.y38_c00004{bottom:569.745000px;}
.y39_c00004{bottom:571.245000px;}
.y37_c00004{bottom:589.905000px;}
.y35_c00004{bottom:591.405000px;}
.y36_c00004{bottom:591.630000px;}
.y33_c00004{bottom:608.745000px;}
.y34_c00004{bottom:610.905000px;}
.y32_c00004{bottom:628.905000px;}
.y31_c00004{bottom:631.905000px;}
.y2f_c00004{bottom:647.745000px;}
.y30_c00004{bottom:648.405000px;}
.y2e_c00004{bottom:667.245000px;}
.y2d_c00004{bottom:670.905000px;}
.y2c_c00004{bottom:687.405000px;}
.y2b_c00004{bottom:690.405000px;}
.y2a_c00004{bottom:706.905000px;}
.y29_c00004{bottom:707.745000px;}
.y28_c00004{bottom:726.405000px;}
.y27_c00004{bottom:729.405000px;}
.y24_c00004{bottom:746.745000px;}
.y26_c00004{bottom:747.825000px;}
.y25_c00004{bottom:748.905000px;}
.y23_c00004{bottom:765.405000px;}
.y22_c00004{bottom:769.905000px;}
.y21_c00004{bottom:786.405000px;}
.y1f_c00004{bottom:787.245000px;}
.y20_c00004{bottom:787.905000px;}
.y1e_c00004{bottom:805.905000px;}
.y1d_c00004{bottom:806.745000px;}
.y1c_c00004{bottom:826.470000px;}
.y1b_c00004{bottom:828.405000px;}
.y19_c00004{bottom:845.745000px;}
.y1a_c00004{bottom:847.905000px;}
.y18_c00004{bottom:864.405000px;}
.y17_c00004{bottom:865.245000px;}
.y15_c00004{bottom:886.905000px;}
.y16_c00004{bottom:887.130000px;}
.y13_c00004{bottom:904.680000px;}
.y14_c00004{bottom:904.905000px;}
.y11_c00004{bottom:925.905000px;}
.y12_c00004{bottom:927.405000px;}
.yf_c00004{bottom:943.245000px;}
.y10_c00004{bottom:943.905000px;}
.yd_c00004{bottom:964.245000px;}
.ye_c00004{bottom:964.470000px;}
.yc_c00004{bottom:981.405000px;}
.yb_c00004{bottom:982.245000px;}
.ya_c00004{bottom:1002.405000px;}
.y9_c00004{bottom:1003.245000px;}
.y8_c00004{bottom:1021.905000px;}
.y7_c00004{bottom:1022.745000px;}
.y6_c00004{bottom:1041.405000px;}
.y5_c00004{bottom:1044.405000px;}
.y4_c00004{bottom:1060.905000px;}
.y3_c00004{bottom:1063.905000px;}
.y1_c00004{bottom:1101.630000px;}
.y2_c00004{bottom:1103.130000px;}
.h1_c00004{height:23.025234px;}
.h4_c00004{height:31.364502px;}
.h2_c00004{height:35.571035px;}
.h6_c00004{height:39.777568px;}
.h3_c00004{height:43.910303px;}
.h5_c00004{height:48.116836px;}
.h0_c00004{height:1335.000000px;}
.w0_c00004{width:880.500000px;}
.x0_c00004{left:0.000000px;}
.x1_c00004{left:151.500000px;}
.x14_c00004{left:152.580000px;}
.x12_c00004{left:167.580000px;}
.xf_c00004{left:169.080000px;}
.x8_c00004{left:184.500000px;}
.x15_c00004{left:197.145000px;}
.x3_c00004{left:199.500000px;}
.x6_c00004{left:201.420000px;}
.xd_c00004{left:202.500000px;}
.x10_c00004{left:223.080000px;}
.xc_c00004{left:256.500000px;}
.x9_c00004{left:259.500000px;}
.xb_c00004{left:260.580000px;}
.x13_c00004{left:267.000000px;}
.xe_c00004{left:272.580000px;}
.x5_c00004{left:284.580000px;}
.x2_c00004{left:408.000000px;}
.x7_c00004{left:706.920000px;}
.xa_c00004{left:708.420000px;}
.x4_c00004{left:713.580000px;}
.x11_c00004{left:715.080000px;}
@media print{
.v0_c00004{vertical-align:0.000000pt;}
.ls0_c00004{letter-spacing:0.000000pt;}
.ws0_c00004{word-spacing:0.000000pt;}
.fs0_c00004{font-size:16.640000pt;}
.fs3_c00004{font-size:22.666667pt;}
.fs1_c00004{font-size:25.706667pt;}
.fs5_c00004{font-size:28.746667pt;}
.fs2_c00004{font-size:31.733333pt;}
.fs4_c00004{font-size:34.773333pt;}
.y0_c00004{bottom:0.000000pt;}
.y57_c00004{bottom:225.106667pt;}
.y59_c00004{bottom:225.693333pt;}
.y58_c00004{bottom:227.026667pt;}
.y55_c00004{bottom:244.360000pt;}
.y56_c00004{bottom:245.693333pt;}
.y54_c00004{bottom:277.693333pt;}
.y53_c00004{bottom:279.026667pt;}
.y51_c00004{bottom:294.440000pt;}
.y52_c00004{bottom:295.026667pt;}
.y50_c00004{bottom:314.440000pt;}
.y4f_c00004{bottom:315.026667pt;}
.y4d_c00004{bottom:330.440000pt;}
.y4e_c00004{bottom:331.773333pt;}
.y4a_c00004{bottom:347.773333pt;}
.y4b_c00004{bottom:349.693333pt;}
.y4c_c00004{bottom:351.026667pt;}
.y48_c00004{bottom:365.106667pt;}
.y49_c00004{bottom:366.440000pt;}
.y47_c00004{bottom:385.693333pt;}
.y46_c00004{bottom:400.360000pt;}
.y45_c00004{bottom:401.106667pt;}
.y43_c00004{bottom:418.440000pt;}
.y44_c00004{bottom:419.026667pt;}
.y41_c00004{bottom:435.773333pt;}
.y42_c00004{bottom:437.106667pt;}
.y3f_c00004{bottom:453.106667pt;}
.y40_c00004{bottom:456.360000pt;}
.y3d_c00004{bottom:470.440000pt;}
.y3c_c00004{bottom:471.773333pt;}
.y3e_c00004{bottom:473.693333pt;}
.y3a_c00004{bottom:489.106667pt;}
.y3b_c00004{bottom:490.440000pt;}
.y38_c00004{bottom:506.440000pt;}
.y39_c00004{bottom:507.773333pt;}
.y37_c00004{bottom:524.360000pt;}
.y35_c00004{bottom:525.693333pt;}
.y36_c00004{bottom:525.893333pt;}
.y33_c00004{bottom:541.106667pt;}
.y34_c00004{bottom:543.026667pt;}
.y32_c00004{bottom:559.026667pt;}
.y31_c00004{bottom:561.693333pt;}
.y2f_c00004{bottom:575.773333pt;}
.y30_c00004{bottom:576.360000pt;}
.y2e_c00004{bottom:593.106667pt;}
.y2d_c00004{bottom:596.360000pt;}
.y2c_c00004{bottom:611.026667pt;}
.y2b_c00004{bottom:613.693333pt;}
.y2a_c00004{bottom:628.360000pt;}
.y29_c00004{bottom:629.106667pt;}
.y28_c00004{bottom:645.693333pt;}
.y27_c00004{bottom:648.360000pt;}
.y24_c00004{bottom:663.773333pt;}
.y26_c00004{bottom:664.733333pt;}
.y25_c00004{bottom:665.693333pt;}
.y23_c00004{bottom:680.360000pt;}
.y22_c00004{bottom:684.360000pt;}
.y21_c00004{bottom:699.026667pt;}
.y1f_c00004{bottom:699.773333pt;}
.y20_c00004{bottom:700.360000pt;}
.y1e_c00004{bottom:716.360000pt;}
.y1d_c00004{bottom:717.106667pt;}
.y1c_c00004{bottom:734.640000pt;}
.y1b_c00004{bottom:736.360000pt;}
.y19_c00004{bottom:751.773333pt;}
.y1a_c00004{bottom:753.693333pt;}
.y18_c00004{bottom:768.360000pt;}
.y17_c00004{bottom:769.106667pt;}
.y15_c00004{bottom:788.360000pt;}
.y16_c00004{bottom:788.560000pt;}
.y13_c00004{bottom:804.160000pt;}
.y14_c00004{bottom:804.360000pt;}
.y11_c00004{bottom:823.026667pt;}
.y12_c00004{bottom:824.360000pt;}
.yf_c00004{bottom:838.440000pt;}
.y10_c00004{bottom:839.026667pt;}
.yd_c00004{bottom:857.106667pt;}
.ye_c00004{bottom:857.306667pt;}
.yc_c00004{bottom:872.360000pt;}
.yb_c00004{bottom:873.106667pt;}
.ya_c00004{bottom:891.026667pt;}
.y9_c00004{bottom:891.773333pt;}
.y8_c00004{bottom:908.360000pt;}
.y7_c00004{bottom:909.106667pt;}
.y6_c00004{bottom:925.693333pt;}
.y5_c00004{bottom:928.360000pt;}
.y4_c00004{bottom:943.026667pt;}
.y3_c00004{bottom:945.693333pt;}
.y1_c00004{bottom:979.226667pt;}
.y2_c00004{bottom:980.560000pt;}
.h1_c00004{height:20.466875pt;}
.h4_c00004{height:27.879557pt;}
.h2_c00004{height:31.618698pt;}
.h6_c00004{height:35.357839pt;}
.h3_c00004{height:39.031380pt;}
.h5_c00004{height:42.770521pt;}
.h0_c00004{height:1186.666667pt;}
.w0_c00004{width:782.666667pt;}
.x0_c00004{left:0.000000pt;}
.x1_c00004{left:134.666667pt;}
.x14_c00004{left:135.626667pt;}
.x12_c00004{left:148.960000pt;}
.xf_c00004{left:150.293333pt;}
.x8_c00004{left:164.000000pt;}
.x15_c00004{left:175.240000pt;}
.x3_c00004{left:177.333333pt;}
.x6_c00004{left:179.040000pt;}
.xd_c00004{left:180.000000pt;}
.x10_c00004{left:198.293333pt;}
.xc_c00004{left:228.000000pt;}
.x9_c00004{left:230.666667pt;}
.xb_c00004{left:231.626667pt;}
.x13_c00004{left:237.333333pt;}
.xe_c00004{left:242.293333pt;}
.x5_c00004{left:252.960000pt;}
.x2_c00004{left:362.666667pt;}
.x7_c00004{left:628.373333pt;}
.xa_c00004{left:629.706667pt;}
.x4_c00004{left:634.293333pt;}
.x11_c00004{left:635.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_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_a5e5a591b6395ba0f3db1749.woff2')format("woff");}.ff1_c00005{font-family:ff1_c00005;line-height:1.688965;font-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_c00005{transform:matrix(0.111072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111072,0.000000,0.000000,0.250000,0,0);}
.m16_c00005{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m1a_c00005{transform:matrix(0.345859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345859,0.000000,0.000000,0.250000,0,0);}
.m1e_c00005{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m25_c00005{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m39_c00005{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m15_c00005{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.m23_c00005{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m2_c00005{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m33_c00005{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m36_c00005{transform:matrix(0.398006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398006,0.000000,0.000000,0.250000,0,0);}
.m11_c00005{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.md_c00005{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m1c_c00005{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m1b_c00005{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m13_c00005{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m12_c00005{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.m20_c00005{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m26_c00005{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m27_c00005{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m18_c00005{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m19_c00005{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mb_c00005{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m24_c00005{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m7_c00005{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m17_c00005{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.m1f_c00005{transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);}
.m28_c00005{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.ma_c00005{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.m3_c00005{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m2b_c00005{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m1d_c00005{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m2e_c00005{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m22_c00005{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m2c_c00005{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m37_c00005{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m4_c00005{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m29_c00005{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mf_c00005{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m32_c00005{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m14_c00005{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m21_c00005{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mc_c00005{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.m6_c00005{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.me_c00005{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m38_c00005{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m2a_c00005{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m10_c00005{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m9_c00005{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m30_c00005{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m0_c00005{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);}
.m2f_c00005{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m34_c00005{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m8_c00005{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m31_c00005{transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);}
.m5_c00005{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m1_c00005{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m35_c00005{transform:matrix(1.874118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.874118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.874118,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;}
.fs1_c00005{font-size:18.720000px;}
.fs0_c00005{font-size:20.400000px;}
.fs4_c00005{font-size:25.500000px;}
.fs3_c00005{font-size:28.920000px;}
.fs5_c00005{font-size:32.340000px;}
.fs2_c00005{font-size:35.700000px;}
.fs6_c00005{font-size:39.120000px;}
.fs7_c00005{font-size:42.540000px;}
.y0_c00005{bottom:0.000000px;}
.y5a_c00005{bottom:252.405000px;}
.y59_c00005{bottom:256.245000px;}
.y57_c00005{bottom:275.745000px;}
.y58_c00005{bottom:277.905000px;}
.y56_c00005{bottom:293.745000px;}
.y55_c00005{bottom:297.405000px;}
.y54_c00005{bottom:312.405000px;}
.y53_c00005{bottom:315.180000px;}
.y52_c00005{bottom:331.470000px;}
.y51_c00005{bottom:336.405000px;}
.y50_c00005{bottom:352.245000px;}
.y4f_c00005{bottom:355.245000px;}
.y4e_c00005{bottom:371.745000px;}
.y4c_c00005{bottom:374.745000px;}
.y4d_c00005{bottom:376.905000px;}
.y4b_c00005{bottom:391.470000px;}
.y4a_c00005{bottom:397.470000px;}
.y49_c00005{bottom:410.970000px;}
.y48_c00005{bottom:415.905000px;}
.y47_c00005{bottom:429.405000px;}
.y46_c00005{bottom:435.405000px;}
.y45_c00005{bottom:448.905000px;}
.y44_c00005{bottom:454.905000px;}
.y43_c00005{bottom:468.405000px;}
.y42_c00005{bottom:471.180000px;}
.y40_c00005{bottom:473.745000px;}
.y41_c00005{bottom:475.905000px;}
.y3f_c00005{bottom:488.745000px;}
.y3e_c00005{bottom:495.405000px;}
.y3d_c00005{bottom:511.905000px;}
.y3c_c00005{bottom:514.905000px;}
.y3b_c00005{bottom:528.405000px;}
.y3a_c00005{bottom:532.245000px;}
.y39_c00005{bottom:547.905000px;}
.y38_c00005{bottom:551.745000px;}
.y37_c00005{bottom:567.405000px;}
.y36_c00005{bottom:572.745000px;}
.y35_c00005{bottom:586.905000px;}
.y34_c00005{bottom:592.245000px;}
.y33_c00005{bottom:606.405000px;}
.y31_c00005{bottom:611.745000px;}
.y32_c00005{bottom:613.905000px;}
.y30_c00005{bottom:628.245000px;}
.y2f_c00005{bottom:633.405000px;}
.y2e_c00005{bottom:660.405000px;}
.y2d_c00005{bottom:661.245000px;}
.y2c_c00005{bottom:676.905000px;}
.y2b_c00005{bottom:681.405000px;}
.y2a_c00005{bottom:697.245000px;}
.y29_c00005{bottom:702.405000px;}
.y28_c00005{bottom:715.905000px;}
.y27_c00005{bottom:719.745000px;}
.y26_c00005{bottom:735.405000px;}
.y25_c00005{bottom:739.245000px;}
.y24_c00005{bottom:754.905000px;}
.y23_c00005{bottom:757.680000px;}
.y22_c00005{bottom:774.405000px;}
.y21_c00005{bottom:778.245000px;}
.y20_c00005{bottom:793.905000px;}
.y1f_c00005{bottom:797.745000px;}
.y1e_c00005{bottom:813.405000px;}
.y1c_c00005{bottom:817.245000px;}
.y1d_c00005{bottom:819.630000px;}
.y1b_c00005{bottom:832.905000px;}
.y1a_c00005{bottom:838.905000px;}
.y19_c00005{bottom:853.905000px;}
.y18_c00005{bottom:857.745000px;}
.y17_c00005{bottom:873.405000px;}
.y16_c00005{bottom:877.245000px;}
.y15_c00005{bottom:894.825000px;}
.y14_c00005{bottom:898.905000px;}
.y13_c00005{bottom:922.470000px;}
.y12_c00005{bottom:925.245000px;}
.y11_c00005{bottom:940.905000px;}
.yf_c00005{bottom:946.245000px;}
.y10_c00005{bottom:946.905000px;}
.ye_c00005{bottom:961.905000px;}
.yd_c00005{bottom:967.905000px;}
.yc_c00005{bottom:984.405000px;}
.yb_c00005{bottom:987.405000px;}
.ya_c00005{bottom:1003.905000px;}
.y9_c00005{bottom:1006.905000px;}
.y8_c00005{bottom:1020.405000px;}
.y7_c00005{bottom:1026.405000px;}
.y6_c00005{bottom:1043.130000px;}
.y5_c00005{bottom:1045.905000px;}
.y4_c00005{bottom:1059.405000px;}
.y3_c00005{bottom:1063.245000px;}
.y2_c00005{bottom:1101.630000px;}
.y1_c00005{bottom:1102.050000px;}
.h2_c00005{height:23.025234px;}
.h1_c00005{height:25.091602px;}
.h5_c00005{height:31.364502px;}
.h4_c00005{height:35.571035px;}
.h6_c00005{height:39.777568px;}
.h3_c00005{height:43.910303px;}
.h7_c00005{height:48.116836px;}
.h8_c00005{height:52.323369px;}
.h0_c00005{height:1335.000000px;}
.w0_c00005{width:880.500000px;}
.x0_c00005{left:0.000000px;}
.x8_c00005{left:151.080000px;}
.xb_c00005{left:166.080000px;}
.x6_c00005{left:167.580000px;}
.x9_c00005{left:196.080000px;}
.x3_c00005{left:198.000000px;}
.x5_c00005{left:199.080000px;}
.xf_c00005{left:220.500000px;}
.x7_c00005{left:221.580000px;}
.xe_c00005{left:235.500000px;}
.xa_c00005{left:253.500000px;}
.x1_c00005{left:406.500000px;}
.xd_c00005{left:660.000000px;}
.x4_c00005{left:704.580000px;}
.xc_c00005{left:712.080000px;}
.x2_c00005{left:714.000000px;}
@media print{
.v0_c00005{vertical-align:0.000000pt;}
.ls0_c00005{letter-spacing:0.000000pt;}
.ws0_c00005{word-spacing:0.000000pt;}
.fs1_c00005{font-size:16.640000pt;}
.fs0_c00005{font-size:18.133333pt;}
.fs4_c00005{font-size:22.666667pt;}
.fs3_c00005{font-size:25.706667pt;}
.fs5_c00005{font-size:28.746667pt;}
.fs2_c00005{font-size:31.733333pt;}
.fs6_c00005{font-size:34.773333pt;}
.fs7_c00005{font-size:37.813333pt;}
.y0_c00005{bottom:0.000000pt;}
.y5a_c00005{bottom:224.360000pt;}
.y59_c00005{bottom:227.773333pt;}
.y57_c00005{bottom:245.106667pt;}
.y58_c00005{bottom:247.026667pt;}
.y56_c00005{bottom:261.106667pt;}
.y55_c00005{bottom:264.360000pt;}
.y54_c00005{bottom:277.693333pt;}
.y53_c00005{bottom:280.160000pt;}
.y52_c00005{bottom:294.640000pt;}
.y51_c00005{bottom:299.026667pt;}
.y50_c00005{bottom:313.106667pt;}
.y4f_c00005{bottom:315.773333pt;}
.y4e_c00005{bottom:330.440000pt;}
.y4c_c00005{bottom:333.106667pt;}
.y4d_c00005{bottom:335.026667pt;}
.y4b_c00005{bottom:347.973333pt;}
.y4a_c00005{bottom:353.306667pt;}
.y49_c00005{bottom:365.306667pt;}
.y48_c00005{bottom:369.693333pt;}
.y47_c00005{bottom:381.693333pt;}
.y46_c00005{bottom:387.026667pt;}
.y45_c00005{bottom:399.026667pt;}
.y44_c00005{bottom:404.360000pt;}
.y43_c00005{bottom:416.360000pt;}
.y42_c00005{bottom:418.826667pt;}
.y40_c00005{bottom:421.106667pt;}
.y41_c00005{bottom:423.026667pt;}
.y3f_c00005{bottom:434.440000pt;}
.y3e_c00005{bottom:440.360000pt;}
.y3d_c00005{bottom:455.026667pt;}
.y3c_c00005{bottom:457.693333pt;}
.y3b_c00005{bottom:469.693333pt;}
.y3a_c00005{bottom:473.106667pt;}
.y39_c00005{bottom:487.026667pt;}
.y38_c00005{bottom:490.440000pt;}
.y37_c00005{bottom:504.360000pt;}
.y36_c00005{bottom:509.106667pt;}
.y35_c00005{bottom:521.693333pt;}
.y34_c00005{bottom:526.440000pt;}
.y33_c00005{bottom:539.026667pt;}
.y31_c00005{bottom:543.773333pt;}
.y32_c00005{bottom:545.693333pt;}
.y30_c00005{bottom:558.440000pt;}
.y2f_c00005{bottom:563.026667pt;}
.y2e_c00005{bottom:587.026667pt;}
.y2d_c00005{bottom:587.773333pt;}
.y2c_c00005{bottom:601.693333pt;}
.y2b_c00005{bottom:605.693333pt;}
.y2a_c00005{bottom:619.773333pt;}
.y29_c00005{bottom:624.360000pt;}
.y28_c00005{bottom:636.360000pt;}
.y27_c00005{bottom:639.773333pt;}
.y26_c00005{bottom:653.693333pt;}
.y25_c00005{bottom:657.106667pt;}
.y24_c00005{bottom:671.026667pt;}
.y23_c00005{bottom:673.493333pt;}
.y22_c00005{bottom:688.360000pt;}
.y21_c00005{bottom:691.773333pt;}
.y20_c00005{bottom:705.693333pt;}
.y1f_c00005{bottom:709.106667pt;}
.y1e_c00005{bottom:723.026667pt;}
.y1c_c00005{bottom:726.440000pt;}
.y1d_c00005{bottom:728.560000pt;}
.y1b_c00005{bottom:740.360000pt;}
.y1a_c00005{bottom:745.693333pt;}
.y19_c00005{bottom:759.026667pt;}
.y18_c00005{bottom:762.440000pt;}
.y17_c00005{bottom:776.360000pt;}
.y16_c00005{bottom:779.773333pt;}
.y15_c00005{bottom:795.400000pt;}
.y14_c00005{bottom:799.026667pt;}
.y13_c00005{bottom:819.973333pt;}
.y12_c00005{bottom:822.440000pt;}
.y11_c00005{bottom:836.360000pt;}
.yf_c00005{bottom:841.106667pt;}
.y10_c00005{bottom:841.693333pt;}
.ye_c00005{bottom:855.026667pt;}
.yd_c00005{bottom:860.360000pt;}
.yc_c00005{bottom:875.026667pt;}
.yb_c00005{bottom:877.693333pt;}
.ya_c00005{bottom:892.360000pt;}
.y9_c00005{bottom:895.026667pt;}
.y8_c00005{bottom:907.026667pt;}
.y7_c00005{bottom:912.360000pt;}
.y6_c00005{bottom:927.226667pt;}
.y5_c00005{bottom:929.693333pt;}
.y4_c00005{bottom:941.693333pt;}
.y3_c00005{bottom:945.106667pt;}
.y2_c00005{bottom:979.226667pt;}
.y1_c00005{bottom:979.600000pt;}
.h2_c00005{height:20.466875pt;}
.h1_c00005{height:22.303646pt;}
.h5_c00005{height:27.879557pt;}
.h4_c00005{height:31.618698pt;}
.h6_c00005{height:35.357839pt;}
.h3_c00005{height:39.031380pt;}
.h7_c00005{height:42.770521pt;}
.h8_c00005{height:46.509661pt;}
.h0_c00005{height:1186.666667pt;}
.w0_c00005{width:782.666667pt;}
.x0_c00005{left:0.000000pt;}
.x8_c00005{left:134.293333pt;}
.xb_c00005{left:147.626667pt;}
.x6_c00005{left:148.960000pt;}
.x9_c00005{left:174.293333pt;}
.x3_c00005{left:176.000000pt;}
.x5_c00005{left:176.960000pt;}
.xf_c00005{left:196.000000pt;}
.x7_c00005{left:196.960000pt;}
.xe_c00005{left:209.333333pt;}
.xa_c00005{left:225.333333pt;}
.x1_c00005{left:361.333333pt;}
.xd_c00005{left:586.666667pt;}
.x4_c00005{left:626.293333pt;}
.xc_c00005{left:632.960000pt;}
.x2_c00005{left:634.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_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_f63f0f23cdb4881862d9a868.woff2')format("woff");}.ff1_c00006{font-family:ff1_c00006;line-height:1.688965;font-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_c00006{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m21_c00006{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m13_c00006{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m2e_c00006{transform:matrix(0.374233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374233,0.000000,0.000000,0.250000,0,0);}
.m1f_c00006{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m17_c00006{transform:matrix(0.385736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385736,0.000000,0.000000,0.250000,0,0);}
.m2b_c00006{transform:matrix(0.388420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388420,0.000000,0.000000,0.250000,0,0);}
.m1e_c00006{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m1d_c00006{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m26_c00006{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m11_c00006{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m20_c00006{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_c00006{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m25_c00006{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.m32_c00006{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m34_c00006{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.ma_c00006{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m16_c00006{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m31_c00006{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m33_c00006{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m27_c00006{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m22_c00006{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mc_c00006{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m24_c00006{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.mb_c00006{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.mf_c00006{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.me_c00006{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.md_c00006{transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);}
.m5_c00006{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.m14_c00006{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m2c_c00006{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m9_c00006{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m8_c00006{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_c00006{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m2a_c00006{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m12_c00006{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m19_c00006{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m7_c00006{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m23_c00006{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m1c_c00006{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m3_c00006{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m29_c00006{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m6_c00006{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m2_c00006{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m15_c00006{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m18_c00006{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m1a_c00006{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m4_c00006{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m28_c00006{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m2d_c00006{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m0_c00006{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);}
.m30_c00006{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m1_c00006{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,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;}
.fs5_c00006{font-size:18.720000px;}
.fs0_c00006{font-size:20.400000px;}
.fs2_c00006{font-size:25.500000px;}
.fs1_c00006{font-size:28.920000px;}
.fs3_c00006{font-size:35.700000px;}
.fs4_c00006{font-size:39.120000px;}
.y0_c00006{bottom:0.000000px;}
.y59_c00006{bottom:253.245000px;}
.y5a_c00006{bottom:256.245000px;}
.y57_c00006{bottom:272.745000px;}
.y58_c00006{bottom:276.405000px;}
.y55_c00006{bottom:293.745000px;}
.y56_c00006{bottom:295.905000px;}
.y52_c00006{bottom:312.180000px;}
.y54_c00006{bottom:313.905000px;}
.y53_c00006{bottom:314.130000px;}
.y4e_c00006{bottom:332.745000px;}
.y4f_c00006{bottom:333.180000px;}
.y50_c00006{bottom:334.905000px;}
.y51_c00006{bottom:338.130000px;}
.y4d_c00006{bottom:354.405000px;}
.y4b_c00006{bottom:371.745000px;}
.y4c_c00006{bottom:373.905000px;}
.y4a_c00006{bottom:393.405000px;}
.y48_c00006{bottom:410.745000px;}
.y49_c00006{bottom:412.905000px;}
.y46_c00006{bottom:431.745000px;}
.y47_c00006{bottom:433.245000px;}
.y44_c00006{bottom:451.245000px;}
.y45_c00006{bottom:451.905000px;}
.y42_c00006{bottom:470.745000px;}
.y43_c00006{bottom:471.405000px;}
.y40_c00006{bottom:490.245000px;}
.y41_c00006{bottom:490.905000px;}
.y3f_c00006{bottom:510.405000px;}
.y3e_c00006{bottom:513.405000px;}
.y3c_c00006{bottom:530.745000px;}
.y3d_c00006{bottom:531.405000px;}
.y3a_c00006{bottom:550.245000px;}
.y3b_c00006{bottom:550.905000px;}
.y38_c00006{bottom:569.745000px;}
.y39_c00006{bottom:571.245000px;}
.y36_c00006{bottom:589.245000px;}
.y37_c00006{bottom:592.245000px;}
.y34_c00006{bottom:608.745000px;}
.y35_c00006{bottom:610.245000px;}
.y31_c00006{bottom:629.745000px;}
.y33_c00006{bottom:631.245000px;}
.y32_c00006{bottom:631.905000px;}
.y30_c00006{bottom:650.745000px;}
.y2f_c00006{bottom:651.405000px;}
.y2e_c00006{bottom:670.245000px;}
.y2d_c00006{bottom:670.905000px;}
.y2a_c00006{bottom:688.245000px;}
.y2c_c00006{bottom:689.745000px;}
.y2b_c00006{bottom:690.405000px;}
.y29_c00006{bottom:708.405000px;}
.y28_c00006{bottom:709.905000px;}
.y26_c00006{bottom:736.680000px;}
.y27_c00006{bottom:739.245000px;}
.y24_c00006{bottom:757.245000px;}
.y25_c00006{bottom:758.745000px;}
.y22_c00006{bottom:776.745000px;}
.y23_c00006{bottom:778.245000px;}
.y21_c00006{bottom:778.905000px;}
.y1f_c00006{bottom:807.405000px;}
.y20_c00006{bottom:808.245000px;}
.y1e_c00006{bottom:827.745000px;}
.y1d_c00006{bottom:828.405000px;}
.y1b_c00006{bottom:845.745000px;}
.y1c_c00006{bottom:847.905000px;}
.y19_c00006{bottom:865.245000px;}
.y1a_c00006{bottom:865.905000px;}
.y17_c00006{bottom:884.745000px;}
.y18_c00006{bottom:885.405000px;}
.y15_c00006{bottom:904.245000px;}
.y16_c00006{bottom:904.905000px;}
.y13_c00006{bottom:923.745000px;}
.y14_c00006{bottom:924.405000px;}
.y12_c00006{bottom:925.905000px;}
.y10_c00006{bottom:953.745000px;}
.y11_c00006{bottom:953.970000px;}
.yf_c00006{bottom:972.405000px;}
.ye_c00006{bottom:973.245000px;}
.yd_c00006{bottom:991.905000px;}
.yc_c00006{bottom:992.745000px;}
.yb_c00006{bottom:994.905000px;}
.ya_c00006{bottom:1021.905000px;}
.y9_c00006{bottom:1024.905000px;}
.y6_c00006{bottom:1040.745000px;}
.y8_c00006{bottom:1041.405000px;}
.y7_c00006{bottom:1042.905000px;}
.y5_c00006{bottom:1061.970000px;}
.y3_c00006{bottom:1062.405000px;}
.y4_c00006{bottom:1063.905000px;}
.y2_c00006{bottom:1100.550000px;}
.y1_c00006{bottom:1102.050000px;}
.h6_c00006{height:23.025234px;}
.h1_c00006{height:25.091602px;}
.h3_c00006{height:31.364502px;}
.h2_c00006{height:35.571035px;}
.h4_c00006{height:43.910303px;}
.h5_c00006{height:48.116836px;}
.h0_c00006{height:1335.000000px;}
.w0_c00006{width:880.500000px;}
.x0_c00006{left:0.000000px;}
.x2_c00006{left:151.500000px;}
.x3_c00006{left:152.580000px;}
.xc_c00006{left:167.580000px;}
.x6_c00006{left:169.080000px;}
.x4_c00006{left:197.580000px;}
.x9_c00006{left:199.080000px;}
.x8_c00006{left:201.000000px;}
.x7_c00006{left:223.500000px;}
.xb_c00006{left:286.500000px;}
.x1_c00006{left:408.000000px;}
.x5_c00006{left:706.500000px;}
.xd_c00006{left:708.000000px;}
.xa_c00006{left:724.920000px;}
@media print{
.v0_c00006{vertical-align:0.000000pt;}
.ls0_c00006{letter-spacing:0.000000pt;}
.ws0_c00006{word-spacing:0.000000pt;}
.fs5_c00006{font-size:16.640000pt;}
.fs0_c00006{font-size:18.133333pt;}
.fs2_c00006{font-size:22.666667pt;}
.fs1_c00006{font-size:25.706667pt;}
.fs3_c00006{font-size:31.733333pt;}
.fs4_c00006{font-size:34.773333pt;}
.y0_c00006{bottom:0.000000pt;}
.y59_c00006{bottom:225.106667pt;}
.y5a_c00006{bottom:227.773333pt;}
.y57_c00006{bottom:242.440000pt;}
.y58_c00006{bottom:245.693333pt;}
.y55_c00006{bottom:261.106667pt;}
.y56_c00006{bottom:263.026667pt;}
.y52_c00006{bottom:277.493333pt;}
.y54_c00006{bottom:279.026667pt;}
.y53_c00006{bottom:279.226667pt;}
.y4e_c00006{bottom:295.773333pt;}
.y4f_c00006{bottom:296.160000pt;}
.y50_c00006{bottom:297.693333pt;}
.y51_c00006{bottom:300.560000pt;}
.y4d_c00006{bottom:315.026667pt;}
.y4b_c00006{bottom:330.440000pt;}
.y4c_c00006{bottom:332.360000pt;}
.y4a_c00006{bottom:349.693333pt;}
.y48_c00006{bottom:365.106667pt;}
.y49_c00006{bottom:367.026667pt;}
.y46_c00006{bottom:383.773333pt;}
.y47_c00006{bottom:385.106667pt;}
.y44_c00006{bottom:401.106667pt;}
.y45_c00006{bottom:401.693333pt;}
.y42_c00006{bottom:418.440000pt;}
.y43_c00006{bottom:419.026667pt;}
.y40_c00006{bottom:435.773333pt;}
.y41_c00006{bottom:436.360000pt;}
.y3f_c00006{bottom:453.693333pt;}
.y3e_c00006{bottom:456.360000pt;}
.y3c_c00006{bottom:471.773333pt;}
.y3d_c00006{bottom:472.360000pt;}
.y3a_c00006{bottom:489.106667pt;}
.y3b_c00006{bottom:489.693333pt;}
.y38_c00006{bottom:506.440000pt;}
.y39_c00006{bottom:507.773333pt;}
.y36_c00006{bottom:523.773333pt;}
.y37_c00006{bottom:526.440000pt;}
.y34_c00006{bottom:541.106667pt;}
.y35_c00006{bottom:542.440000pt;}
.y31_c00006{bottom:559.773333pt;}
.y33_c00006{bottom:561.106667pt;}
.y32_c00006{bottom:561.693333pt;}
.y30_c00006{bottom:578.440000pt;}
.y2f_c00006{bottom:579.026667pt;}
.y2e_c00006{bottom:595.773333pt;}
.y2d_c00006{bottom:596.360000pt;}
.y2a_c00006{bottom:611.773333pt;}
.y2c_c00006{bottom:613.106667pt;}
.y2b_c00006{bottom:613.693333pt;}
.y29_c00006{bottom:629.693333pt;}
.y28_c00006{bottom:631.026667pt;}
.y26_c00006{bottom:654.826667pt;}
.y27_c00006{bottom:657.106667pt;}
.y24_c00006{bottom:673.106667pt;}
.y25_c00006{bottom:674.440000pt;}
.y22_c00006{bottom:690.440000pt;}
.y23_c00006{bottom:691.773333pt;}
.y21_c00006{bottom:692.360000pt;}
.y1f_c00006{bottom:717.693333pt;}
.y20_c00006{bottom:718.440000pt;}
.y1e_c00006{bottom:735.773333pt;}
.y1d_c00006{bottom:736.360000pt;}
.y1b_c00006{bottom:751.773333pt;}
.y1c_c00006{bottom:753.693333pt;}
.y19_c00006{bottom:769.106667pt;}
.y1a_c00006{bottom:769.693333pt;}
.y17_c00006{bottom:786.440000pt;}
.y18_c00006{bottom:787.026667pt;}
.y15_c00006{bottom:803.773333pt;}
.y16_c00006{bottom:804.360000pt;}
.y13_c00006{bottom:821.106667pt;}
.y14_c00006{bottom:821.693333pt;}
.y12_c00006{bottom:823.026667pt;}
.y10_c00006{bottom:847.773333pt;}
.y11_c00006{bottom:847.973333pt;}
.yf_c00006{bottom:864.360000pt;}
.ye_c00006{bottom:865.106667pt;}
.yd_c00006{bottom:881.693333pt;}
.yc_c00006{bottom:882.440000pt;}
.yb_c00006{bottom:884.360000pt;}
.ya_c00006{bottom:908.360000pt;}
.y9_c00006{bottom:911.026667pt;}
.y6_c00006{bottom:925.106667pt;}
.y8_c00006{bottom:925.693333pt;}
.y7_c00006{bottom:927.026667pt;}
.y5_c00006{bottom:943.973333pt;}
.y3_c00006{bottom:944.360000pt;}
.y4_c00006{bottom:945.693333pt;}
.y2_c00006{bottom:978.266667pt;}
.y1_c00006{bottom:979.600000pt;}
.h6_c00006{height:20.466875pt;}
.h1_c00006{height:22.303646pt;}
.h3_c00006{height:27.879557pt;}
.h2_c00006{height:31.618698pt;}
.h4_c00006{height:39.031380pt;}
.h5_c00006{height:42.770521pt;}
.h0_c00006{height:1186.666667pt;}
.w0_c00006{width:782.666667pt;}
.x0_c00006{left:0.000000pt;}
.x2_c00006{left:134.666667pt;}
.x3_c00006{left:135.626667pt;}
.xc_c00006{left:148.960000pt;}
.x6_c00006{left:150.293333pt;}
.x4_c00006{left:175.626667pt;}
.x9_c00006{left:176.960000pt;}
.x8_c00006{left:178.666667pt;}
.x7_c00006{left:198.666667pt;}
.xb_c00006{left:254.666667pt;}
.x1_c00006{left:362.666667pt;}
.x5_c00006{left:628.000000pt;}
.xd_c00006{left:629.333333pt;}
.xa_c00006{left:644.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_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_6c5167a985a67dc7b7ab855d.woff2')format("woff");}.ff1_c00007{font-family:ff1_c00007;line-height:1.688965;font-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_c00007{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m27_c00007{transform:matrix(0.371549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371549,0.000000,0.000000,0.250000,0,0);}
.m18_c00007{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m21_c00007{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mf_c00007{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m2b_c00007{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m20_c00007{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m17_c00007{transform:matrix(0.411043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411043,0.000000,0.000000,0.250000,0,0);}
.m25_c00007{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m24_c00007{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m22_c00007{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m3_c00007{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m6_c00007{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.mc_c00007{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m2_c00007{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m1b_c00007{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.m9_c00007{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.m2f_c00007{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.m1d_c00007{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.md_c00007{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m7_c00007{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m11_c00007{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m36_c00007{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m16_c00007{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m1a_c00007{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m23_c00007{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m1e_c00007{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m31_c00007{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m10_c00007{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.ma_c00007{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m12_c00007{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m13_c00007{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m2e_c00007{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m1c_c00007{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m2a_c00007{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m29_c00007{transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);}
.m2d_c00007{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m5_c00007{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m0_c00007{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_c00007{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);}
.m19_c00007{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m32_c00007{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.m35_c00007{transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);}
.m2c_c00007{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m30_c00007{transform:matrix(0.772436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772436,0.000000,0.000000,0.250000,0,0);}
.m1_c00007{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m34_c00007{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m8_c00007{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.m15_c00007{transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);}
.m14_c00007{transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);}
.m26_c00007{transform:matrix(1.476010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.476010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.476010,0.000000,0.000000,0.250000,0,0);}
.m28_c00007{transform:matrix(1.805659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.805659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.805659,0.000000,0.000000,0.250000,0,0);}
.me_c00007{transform:matrix(1.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.893529,0.000000,0.000000,0.250000,0,0);}
.m1f_c00007{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m4_c00007{transform:matrix(3.134956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.134956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.134956,0.000000,0.000000,0.250000,0,0);}
.v0_c00007{vertical-align:0.000000px;}
.ls0_c00007{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00007{word-spacing:0.000000px;}
.ws0_c00007{word-spacing:9.679421px;}
.fc0_c00007{color:transparent;}
.fs7_c00007{font-size:3.420000px;}
.fs3_c00007{font-size:6.780000px;}
.fs4_c00007{font-size:11.880000px;}
.fs1_c00007{font-size:18.720000px;}
.fs0_c00007{font-size:20.400000px;}
.fs6_c00007{font-size:25.500000px;}
.fs5_c00007{font-size:28.920000px;}
.fs9_c00007{font-size:32.340000px;}
.fs2_c00007{font-size:35.700000px;}
.fs8_c00007{font-size:39.120000px;}
.y0_c00007{bottom:0.000000px;}
.y42_c00007{bottom:610.905000px;}
.y41_c00007{bottom:615.405000px;}
.y40_c00007{bottom:640.050000px;}
.y3f_c00007{bottom:642.405000px;}
.y3e_c00007{bottom:642.630000px;}
.y3d_c00007{bottom:643.905000px;}
.y3c_c00007{bottom:653.745000px;}
.y3b_c00007{bottom:659.550000px;}
.y3a_c00007{bottom:660.405000px;}
.y39_c00007{bottom:663.405000px;}
.y38_c00007{bottom:680.130000px;}
.y37_c00007{bottom:680.325000px;}
.y36_c00007{bottom:682.905000px;}
.y35_c00007{bottom:684.405000px;}
.y34_c00007{bottom:699.630000px;}
.y33_c00007{bottom:700.245000px;}
.y32_c00007{bottom:703.470000px;}
.y31_c00007{bottom:703.905000px;}
.y2f_c00007{bottom:714.630000px;}
.y30_c00007{bottom:716.970000px;}
.y2e_c00007{bottom:723.405000px;}
.y2d_c00007{bottom:741.825000px;}
.y2c_c00007{bottom:748.680000px;}
.y2b_c00007{bottom:767.775000px;}
.y2a_c00007{bottom:769.245000px;}
.y29_c00007{bottom:784.905000px;}
.y28_c00007{bottom:790.905000px;}
.y27_c00007{bottom:808.245000px;}
.y26_c00007{bottom:809.745000px;}
.y25_c00007{bottom:828.420000px;}
.y24_c00007{bottom:829.245000px;}
.y23_c00007{bottom:847.245000px;}
.y22_c00007{bottom:848.745000px;}
.y21_c00007{bottom:867.420000px;}
.y20_c00007{bottom:870.405000px;}
.y1f_c00007{bottom:898.905000px;}
.y1e_c00007{bottom:904.905000px;}
.y1d_c00007{bottom:905.325000px;}
.y1a_c00007{bottom:905.745000px;}
.y1b_c00007{bottom:905.970000px;}
.y19_c00007{bottom:906.180000px;}
.y1c_c00007{bottom:906.405000px;}
.y18_c00007{bottom:909.405000px;}
.y16_c00007{bottom:924.855000px;}
.y17_c00007{bottom:925.920000px;}
.y15_c00007{bottom:928.905000px;}
.y14_c00007{bottom:938.970000px;}
.y13_c00007{bottom:948.405000px;}
.y12_c00007{bottom:960.630000px;}
.y10_c00007{bottom:965.745000px;}
.y11_c00007{bottom:967.905000px;}
.ye_c00007{bottom:985.245000px;}
.yf_c00007{bottom:995.775000px;}
.yd_c00007{bottom:998.970000px;}
.yc_c00007{bottom:1006.905000px;}
.ya_c00007{bottom:1018.050000px;}
.yb_c00007{bottom:1021.470000px;}
.y8_c00007{bottom:1024.245000px;}
.y9_c00007{bottom:1026.405000px;}
.y6_c00007{bottom:1043.745000px;}
.y7_c00007{bottom:1054.275000px;}
.y5_c00007{bottom:1058.130000px;}
.y4_c00007{bottom:1062.855000px;}
.y3_c00007{bottom:1063.245000px;}
.y2_c00007{bottom:1098.630000px;}
.y1_c00007{bottom:1100.550000px;}
.h8_c00007{height:4.206533px;}
.h4_c00007{height:8.339268px;}
.h5_c00007{height:14.612168px;}
.h2_c00007{height:23.025234px;}
.h1_c00007{height:25.091602px;}
.h7_c00007{height:31.364502px;}
.h6_c00007{height:35.571035px;}
.ha_c00007{height:39.777568px;}
.h3_c00007{height:43.910303px;}
.h9_c00007{height:48.116836px;}
.h0_c00007{height:1335.000000px;}
.w0_c00007{width:880.500000px;}
.x0_c00007{left:0.000000px;}
.x2e_c00007{left:149.145000px;}
.x20_c00007{left:151.080000px;}
.x18_c00007{left:152.580000px;}
.x1d_c00007{left:167.580000px;}
.xe_c00007{left:169.080000px;}
.x3_c00007{left:170.580000px;}
.x2b_c00007{left:194.580000px;}
.x24_c00007{left:196.080000px;}
.x19_c00007{left:197.580000px;}
.x1b_c00007{left:199.080000px;}
.xc_c00007{left:200.580000px;}
.x7_c00007{left:202.500000px;}
.x25_c00007{left:214.500000px;}
.x22_c00007{left:216.420000px;}
.x1e_c00007{left:221.580000px;}
.x1a_c00007{left:223.080000px;}
.x4_c00007{left:225.000000px;}
.x12_c00007{left:231.000000px;}
.x10_c00007{left:244.500000px;}
.x2c_c00007{left:249.000000px;}
.xd_c00007{left:256.500000px;}
.x1c_c00007{left:274.500000px;}
.x11_c00007{left:276.000000px;}
.x1f_c00007{left:286.080000px;}
.x26_c00007{left:300.000000px;}
.x28_c00007{left:303.420000px;}
.x23_c00007{left:307.500000px;}
.x13_c00007{left:310.500000px;}
.x2d_c00007{left:336.000000px;}
.x27_c00007{left:366.000000px;}
.x14_c00007{left:373.500000px;}
.x29_c00007{left:384.000000px;}
.x15_c00007{left:391.920000px;}
.x1_c00007{left:411.000000px;}
.x16_c00007{left:418.500000px;}
.x17_c00007{left:489.420000px;}
.x2a_c00007{left:703.500000px;}
.xf_c00007{left:706.500000px;}
.xa_c00007{left:708.420000px;}
.x5_c00007{left:711.000000px;}
.x8_c00007{left:712.920000px;}
.x9_c00007{left:715.500000px;}
.x2_c00007{left:717.000000px;}
.x21_c00007{left:720.420000px;}
.xb_c00007{left:723.420000px;}
.x6_c00007{left:724.500000px;}
@media print{
.v0_c00007{vertical-align:0.000000pt;}
.ls0_c00007{letter-spacing:0.000000pt;}
.ws1_c00007{word-spacing:0.000000pt;}
.ws0_c00007{word-spacing:8.603930pt;}
.fs7_c00007{font-size:3.040000pt;}
.fs3_c00007{font-size:6.026667pt;}
.fs4_c00007{font-size:10.560000pt;}
.fs1_c00007{font-size:16.640000pt;}
.fs0_c00007{font-size:18.133333pt;}
.fs6_c00007{font-size:22.666667pt;}
.fs5_c00007{font-size:25.706667pt;}
.fs9_c00007{font-size:28.746667pt;}
.fs2_c00007{font-size:31.733333pt;}
.fs8_c00007{font-size:34.773333pt;}
.y0_c00007{bottom:0.000000pt;}
.y42_c00007{bottom:543.026667pt;}
.y41_c00007{bottom:547.026667pt;}
.y40_c00007{bottom:568.933333pt;}
.y3f_c00007{bottom:571.026667pt;}
.y3e_c00007{bottom:571.226667pt;}
.y3d_c00007{bottom:572.360000pt;}
.y3c_c00007{bottom:581.106667pt;}
.y3b_c00007{bottom:586.266667pt;}
.y3a_c00007{bottom:587.026667pt;}
.y39_c00007{bottom:589.693333pt;}
.y38_c00007{bottom:604.560000pt;}
.y37_c00007{bottom:604.733333pt;}
.y36_c00007{bottom:607.026667pt;}
.y35_c00007{bottom:608.360000pt;}
.y34_c00007{bottom:621.893333pt;}
.y33_c00007{bottom:622.440000pt;}
.y32_c00007{bottom:625.306667pt;}
.y31_c00007{bottom:625.693333pt;}
.y2f_c00007{bottom:635.226667pt;}
.y30_c00007{bottom:637.306667pt;}
.y2e_c00007{bottom:643.026667pt;}
.y2d_c00007{bottom:659.400000pt;}
.y2c_c00007{bottom:665.493333pt;}
.y2b_c00007{bottom:682.466667pt;}
.y2a_c00007{bottom:683.773333pt;}
.y29_c00007{bottom:697.693333pt;}
.y28_c00007{bottom:703.026667pt;}
.y27_c00007{bottom:718.440000pt;}
.y26_c00007{bottom:719.773333pt;}
.y25_c00007{bottom:736.373333pt;}
.y24_c00007{bottom:737.106667pt;}
.y23_c00007{bottom:753.106667pt;}
.y22_c00007{bottom:754.440000pt;}
.y21_c00007{bottom:771.040000pt;}
.y20_c00007{bottom:773.693333pt;}
.y1f_c00007{bottom:799.026667pt;}
.y1e_c00007{bottom:804.360000pt;}
.y1d_c00007{bottom:804.733333pt;}
.y1a_c00007{bottom:805.106667pt;}
.y1b_c00007{bottom:805.306667pt;}
.y19_c00007{bottom:805.493333pt;}
.y1c_c00007{bottom:805.693333pt;}
.y18_c00007{bottom:808.360000pt;}
.y16_c00007{bottom:822.093333pt;}
.y17_c00007{bottom:823.040000pt;}
.y15_c00007{bottom:825.693333pt;}
.y14_c00007{bottom:834.640000pt;}
.y13_c00007{bottom:843.026667pt;}
.y12_c00007{bottom:853.893333pt;}
.y10_c00007{bottom:858.440000pt;}
.y11_c00007{bottom:860.360000pt;}
.ye_c00007{bottom:875.773333pt;}
.yf_c00007{bottom:885.133333pt;}
.yd_c00007{bottom:887.973333pt;}
.yc_c00007{bottom:895.026667pt;}
.ya_c00007{bottom:904.933333pt;}
.yb_c00007{bottom:907.973333pt;}
.y8_c00007{bottom:910.440000pt;}
.y9_c00007{bottom:912.360000pt;}
.y6_c00007{bottom:927.773333pt;}
.y7_c00007{bottom:937.133333pt;}
.y5_c00007{bottom:940.560000pt;}
.y4_c00007{bottom:944.760000pt;}
.y3_c00007{bottom:945.106667pt;}
.y2_c00007{bottom:976.560000pt;}
.y1_c00007{bottom:978.266667pt;}
.h8_c00007{height:3.739141pt;}
.h4_c00007{height:7.412682pt;}
.h5_c00007{height:12.988594pt;}
.h2_c00007{height:20.466875pt;}
.h1_c00007{height:22.303646pt;}
.h7_c00007{height:27.879557pt;}
.h6_c00007{height:31.618698pt;}
.ha_c00007{height:35.357839pt;}
.h3_c00007{height:39.031380pt;}
.h9_c00007{height:42.770521pt;}
.h0_c00007{height:1186.666667pt;}
.w0_c00007{width:782.666667pt;}
.x0_c00007{left:0.000000pt;}
.x2e_c00007{left:132.573333pt;}
.x20_c00007{left:134.293333pt;}
.x18_c00007{left:135.626667pt;}
.x1d_c00007{left:148.960000pt;}
.xe_c00007{left:150.293333pt;}
.x3_c00007{left:151.626667pt;}
.x2b_c00007{left:172.960000pt;}
.x24_c00007{left:174.293333pt;}
.x19_c00007{left:175.626667pt;}
.x1b_c00007{left:176.960000pt;}
.xc_c00007{left:178.293333pt;}
.x7_c00007{left:180.000000pt;}
.x25_c00007{left:190.666667pt;}
.x22_c00007{left:192.373333pt;}
.x1e_c00007{left:196.960000pt;}
.x1a_c00007{left:198.293333pt;}
.x4_c00007{left:200.000000pt;}
.x12_c00007{left:205.333333pt;}
.x10_c00007{left:217.333333pt;}
.x2c_c00007{left:221.333333pt;}
.xd_c00007{left:228.000000pt;}
.x1c_c00007{left:244.000000pt;}
.x11_c00007{left:245.333333pt;}
.x1f_c00007{left:254.293333pt;}
.x26_c00007{left:266.666667pt;}
.x28_c00007{left:269.706667pt;}
.x23_c00007{left:273.333333pt;}
.x13_c00007{left:276.000000pt;}
.x2d_c00007{left:298.666667pt;}
.x27_c00007{left:325.333333pt;}
.x14_c00007{left:332.000000pt;}
.x29_c00007{left:341.333333pt;}
.x15_c00007{left:348.373333pt;}
.x1_c00007{left:365.333333pt;}
.x16_c00007{left:372.000000pt;}
.x17_c00007{left:435.040000pt;}
.x2a_c00007{left:625.333333pt;}
.xf_c00007{left:628.000000pt;}
.xa_c00007{left:629.706667pt;}
.x5_c00007{left:632.000000pt;}
.x8_c00007{left:633.706667pt;}
.x9_c00007{left:636.000000pt;}
.x2_c00007{left:637.333333pt;}
.x21_c00007{left:640.373333pt;}
.xb_c00007{left:643.040000pt;}
.x6_c00007{left:644.000000pt;}
}





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

.ir_c00008:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00008{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00008;src:url('chunks/assets/font_b369837765718be799b4dd9f.woff2')format("woff");}.ff1_c00008{font-family:ff1_c00008;line-height:1.688965;font-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_c00008{transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);}
.m40_c00008{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.me_c00008{transform:matrix(0.365966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365966,0.000000,0.000000,0.250000,0,0);}
.m22_c00008{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.mf_c00008{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m34_c00008{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m42_c00008{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m49_c00008{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m1e_c00008{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m19_c00008{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m6_c00008{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m26_c00008{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m47_c00008{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.m17_c00008{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m2d_c00008{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m33_c00008{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.md_c00008{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m36_c00008{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.m27_c00008{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m24_c00008{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m29_c00008{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m2b_c00008{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m3d_c00008{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m9_c00008{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m45_c00008{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m1a_c00008{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.m16_c00008{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m28_c00008{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m39_c00008{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m2c_c00008{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m12_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);}
.m3e_c00008{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.mb_c00008{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m30_c00008{transform:matrix(0.526438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526438,0.000000,0.000000,0.250000,0,0);}
.m8_c00008{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.ma_c00008{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m11_c00008{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m3_c00008{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m35_c00008{transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);}
.m14_c00008{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m1d_c00008{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m13_c00008{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m3a_c00008{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m4_c00008{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m23_c00008{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m18_c00008{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m2f_c00008{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mc_c00008{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m4a_c00008{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m21_c00008{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m38_c00008{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m32_c00008{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.m3c_c00008{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m20_c00008{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.m3b_c00008{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m1c_c00008{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m46_c00008{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m44_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);}
.m31_c00008{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m1b_c00008{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m7_c00008{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m10_c00008{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m4b_c00008{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m1f_c00008{transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);}
.m25_c00008{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m43_c00008{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m2a_c00008{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m15_c00008{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m5_c00008{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m0_c00008{transform:matrix(0.792531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.792531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.792531,0.000000,0.000000,0.250000,0,0);}
.m3f_c00008{transform:matrix(0.795882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795882,0.000000,0.000000,0.250000,0,0);}
.m37_c00008{transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);}
.m1_c00008{transform:matrix(0.946058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.946058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.946058,0.000000,0.000000,0.250000,0,0);}
.m2_c00008{transform:matrix(0.962656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.962656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.962656,0.000000,0.000000,0.250000,0,0);}
.m2e_c00008{transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);}
.m48_c00008{transform:matrix(1.998397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.998397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.998397,0.000000,0.000000,0.250000,0,0);}
.v3_c00008{vertical-align:-6.000000px;}
.v0_c00008{vertical-align:0.000000px;}
.v1_c00008{vertical-align:6.000000px;}
.v2_c00008{vertical-align:12.000000px;}
.ls0_c00008{letter-spacing:0.000000px;}
.sc__c00008{text-shadow:none;}
.sc0_c00008{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00008{-webkit-text-stroke:0px transparent;}
.sc0_c00008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00008{word-spacing:0.000000px;}
.ws0_c00008{word-spacing:85.026899px;}
.ws2_c00008{word-spacing:100.917234px;}
.ws3_c00008{word-spacing:101.191200px;}
.ws5_c00008{word-spacing:142.311338px;}
.ws4_c00008{word-spacing:145.397785px;}
.ws1_c00008{word-spacing:148.484231px;}
.fc0_c00008{color:transparent;}
.fs1_c00008{font-size:18.720000px;}
.fs5_c00008{font-size:20.400000px;}
.fs3_c00008{font-size:25.500000px;}
.fs0_c00008{font-size:28.920000px;}
.fs4_c00008{font-size:32.340000px;}
.fs2_c00008{font-size:35.700000px;}
.y0_c00008{bottom:0.000000px;}
.y22_c00008{bottom:555.405000px;}
.y24_c00008{bottom:556.470000px;}
.y1e_c00008{bottom:557.745000px;}
.y21_c00008{bottom:557.970000px;}
.y1f_c00008{bottom:558.630000px;}
.y23_c00008{bottom:558.825000px;}
.y20_c00008{bottom:559.470000px;}
.y25_c00008{bottom:559.905000px;}
.y5d_c00008{bottom:585.405000px;}
.y5e_c00008{bottom:586.245000px;}
.y61_c00008{bottom:586.905000px;}
.y5f_c00008{bottom:588.405000px;}
.y60_c00008{bottom:588.630000px;}
.y5b_c00008{bottom:606.405000px;}
.y5a_c00008{bottom:607.245000px;}
.y59_c00008{bottom:608.550000px;}
.y5c_c00008{bottom:609.405000px;}
.y57_c00008{bottom:624.405000px;}
.y58_c00008{bottom:625.245000px;}
.y56_c00008{bottom:625.905000px;}
.y55_c00008{bottom:627.630000px;}
.y53_c00008{bottom:643.905000px;}
.y54_c00008{bottom:644.325000px;}
.y50_c00008{bottom:644.970000px;}
.y4f_c00008{bottom:645.405000px;}
.y52_c00008{bottom:646.245000px;}
.y4e_c00008{bottom:647.130000px;}
.y51_c00008{bottom:648.405000px;}
.y4a_c00008{bottom:663.405000px;}
.y49_c00008{bottom:664.905000px;}
.y4c_c00008{bottom:665.745000px;}
.y4d_c00008{bottom:666.630000px;}
.y4b_c00008{bottom:667.050000px;}
.y48_c00008{bottom:684.405000px;}
.y46_c00008{bottom:685.245000px;}
.y45_c00008{bottom:687.405000px;}
.y47_c00008{bottom:687.630000px;}
.y44_c00008{bottom:702.405000px;}
.y41_c00008{bottom:703.905000px;}
.y43_c00008{bottom:704.745000px;}
.y3f_c00008{bottom:704.970000px;}
.y42_c00008{bottom:706.905000px;}
.y40_c00008{bottom:707.130000px;}
.y3e_c00008{bottom:721.905000px;}
.y3c_c00008{bottom:723.405000px;}
.y3d_c00008{bottom:724.470000px;}
.y3b_c00008{bottom:726.405000px;}
.y38_c00008{bottom:742.905000px;}
.y3a_c00008{bottom:743.970000px;}
.y39_c00008{bottom:745.905000px;}
.y36_c00008{bottom:762.405000px;}
.y37_c00008{bottom:763.245000px;}
.y33_c00008{bottom:781.905000px;}
.y35_c00008{bottom:782.745000px;}
.y32_c00008{bottom:782.970000px;}
.y34_c00008{bottom:784.905000px;}
.y2f_c00008{bottom:801.405000px;}
.y31_c00008{bottom:802.245000px;}
.y2e_c00008{bottom:802.470000px;}
.y2d_c00008{bottom:804.630000px;}
.y30_c00008{bottom:805.470000px;}
.y2b_c00008{bottom:820.905000px;}
.y2c_c00008{bottom:821.970000px;}
.y2a_c00008{bottom:825.405000px;}
.y29_c00008{bottom:825.630000px;}
.y28_c00008{bottom:849.405000px;}
.y27_c00008{bottom:850.470000px;}
.y26_c00008{bottom:851.745000px;}
.y1d_c00008{bottom:879.405000px;}
.y1b_c00008{bottom:880.245000px;}
.y18_c00008{bottom:880.905000px;}
.y19_c00008{bottom:881.745000px;}
.y1c_c00008{bottom:882.405000px;}
.y1a_c00008{bottom:882.630000px;}
.y17_c00008{bottom:883.905000px;}
.y15_c00008{bottom:918.405000px;}
.y13_c00008{bottom:919.245000px;}
.y14_c00008{bottom:919.470000px;}
.y16_c00008{bottom:920.325000px;}
.ye_c00008{bottom:920.745000px;}
.y12_c00008{bottom:921.405000px;}
.y11_c00008{bottom:921.630000px;}
.y10_c00008{bottom:922.470000px;}
.yf_c00008{bottom:923.970000px;}
.yd_c00008{bottom:937.905000px;}
.yc_c00008{bottom:938.745000px;}
.ya_c00008{bottom:940.905000px;}
.yb_c00008{bottom:941.130000px;}
.y6_c00008{bottom:958.905000px;}
.y7_c00008{bottom:959.745000px;}
.y8_c00008{bottom:960.630000px;}
.y9_c00008{bottom:961.470000px;}
.y5_c00008{bottom:961.905000px;}
.y4_c00008{bottom:979.245000px;}
.y3_c00008{bottom:980.130000px;}
.y2_c00008{bottom:981.405000px;}
.y1_c00008{bottom:1020.405000px;}
.h2_c00008{height:23.025234px;}
.h8_c00008{height:25.091602px;}
.h4_c00008{height:31.364502px;}
.h1_c00008{height:35.571035px;}
.h5_c00008{height:39.777568px;}
.h6_c00008{height:41.571035px;}
.h3_c00008{height:43.910303px;}
.h7_c00008{height:47.571035px;}
.h0_c00008{height:1335.000000px;}
.w0_c00008{width:880.500000px;}
.x0_c00008{left:0.000000px;}
.x27_c00008{left:153.000000px;}
.x4f_c00008{left:160.500000px;}
.x4b_c00008{left:162.000000px;}
.x40_c00008{left:166.080000px;}
.x38_c00008{left:168.000000px;}
.x4_c00008{left:169.500000px;}
.x19_c00008{left:193.920000px;}
.x5_c00008{left:201.000000px;}
.xa_c00008{left:202.920000px;}
.x41_c00008{left:208.080000px;}
.x4c_c00008{left:210.420000px;}
.x51_c00008{left:219.000000px;}
.x28_c00008{left:220.500000px;}
.x39_c00008{left:222.420000px;}
.x1a_c00008{left:223.920000px;}
.x50_c00008{left:228.000000px;}
.xb_c00008{left:232.080000px;}
.x42_c00008{left:240.000000px;}
.x29_c00008{left:247.500000px;}
.x1b_c00008{left:249.000000px;}
.x43_c00008{left:253.500000px;}
.xc_c00008{left:275.580000px;}
.x2a_c00008{left:280.500000px;}
.x1_c00008{left:281.580000px;}
.x6_c00008{left:288.000000px;}
.x2b_c00008{left:298.920000px;}
.x3a_c00008{left:306.000000px;}
.xd_c00008{left:309.000000px;}
.x7_c00008{left:313.500000px;}
.x4d_c00008{left:315.420000px;}
.x1c_c00008{left:316.500000px;}
.x44_c00008{left:328.500000px;}
.x3b_c00008{left:331.500000px;}
.x45_c00008{left:350.580000px;}
.xe_c00008{left:352.500000px;}
.x2c_c00008{left:355.500000px;}
.x8_c00008{left:363.000000px;}
.x1d_c00008{left:367.500000px;}
.x55_c00008{left:373.920000px;}
.x46_c00008{left:378.420000px;}
.x3c_c00008{left:381.000000px;}
.x9_c00008{left:382.920000px;}
.x2d_c00008{left:384.000000px;}
.x1e_c00008{left:400.500000px;}
.xf_c00008{left:401.580000px;}
.x3d_c00008{left:403.920000px;}
.x2e_c00008{left:418.080000px;}
.x1f_c00008{left:421.920000px;}
.x2_c00008{left:425.580000px;}
.x3e_c00008{left:430.920000px;}
.x10_c00008{left:437.775000px;}
.x20_c00008{left:454.920000px;}
.x3_c00008{left:457.500000px;}
.x48_c00008{left:475.920000px;}
.x52_c00008{left:477.000000px;}
.x2f_c00008{left:478.080000px;}
.x11_c00008{left:484.500000px;}
.x3f_c00008{left:497.580000px;}
.x30_c00008{left:504.000000px;}
.x12_c00008{left:513.000000px;}
.x47_c00008{left:524.580000px;}
.x31_c00008{left:530.580000px;}
.x53_c00008{left:535.920000px;}
.x49_c00008{left:537.645000px;}
.x21_c00008{left:547.920000px;}
.x32_c00008{left:561.000000px;}
.x13_c00008{left:563.580000px;}
.x22_c00008{left:577.080000px;}
.x14_c00008{left:583.920000px;}
.x33_c00008{left:594.000000px;}
.x15_c00008{left:611.580000px;}
.x34_c00008{left:615.000000px;}
.x23_c00008{left:620.580000px;}
.x35_c00008{left:625.500000px;}
.x24_c00008{left:637.080000px;}
.x16_c00008{left:643.080000px;}
.x4a_c00008{left:646.920000px;}
.x17_c00008{left:664.920000px;}
.x25_c00008{left:672.000000px;}
.x36_c00008{left:685.080000px;}
.x18_c00008{left:692.580000px;}
.x37_c00008{left:702.000000px;}
.x54_c00008{left:705.000000px;}
.x4e_c00008{left:706.080000px;}
.x26_c00008{left:709.500000px;}
.x56_c00008{left:723.420000px;}
@media print{
.v3_c00008{vertical-align:-5.333333pt;}
.v0_c00008{vertical-align:0.000000pt;}
.v1_c00008{vertical-align:5.333333pt;}
.v2_c00008{vertical-align:10.666667pt;}
.ls0_c00008{letter-spacing:0.000000pt;}
.ws6_c00008{word-spacing:0.000000pt;}
.ws0_c00008{word-spacing:75.579466pt;}
.ws2_c00008{word-spacing:89.704208pt;}
.ws3_c00008{word-spacing:89.947733pt;}
.ws5_c00008{word-spacing:126.498968pt;}
.ws4_c00008{word-spacing:129.242475pt;}
.ws1_c00008{word-spacing:131.985983pt;}
.fs1_c00008{font-size:16.640000pt;}
.fs5_c00008{font-size:18.133333pt;}
.fs3_c00008{font-size:22.666667pt;}
.fs0_c00008{font-size:25.706667pt;}
.fs4_c00008{font-size:28.746667pt;}
.fs2_c00008{font-size:31.733333pt;}
.y0_c00008{bottom:0.000000pt;}
.y22_c00008{bottom:493.693333pt;}
.y24_c00008{bottom:494.640000pt;}
.y1e_c00008{bottom:495.773333pt;}
.y21_c00008{bottom:495.973333pt;}
.y1f_c00008{bottom:496.560000pt;}
.y23_c00008{bottom:496.733333pt;}
.y20_c00008{bottom:497.306667pt;}
.y25_c00008{bottom:497.693333pt;}
.y5d_c00008{bottom:520.360000pt;}
.y5e_c00008{bottom:521.106667pt;}
.y61_c00008{bottom:521.693333pt;}
.y5f_c00008{bottom:523.026667pt;}
.y60_c00008{bottom:523.226667pt;}
.y5b_c00008{bottom:539.026667pt;}
.y5a_c00008{bottom:539.773333pt;}
.y59_c00008{bottom:540.933333pt;}
.y5c_c00008{bottom:541.693333pt;}
.y57_c00008{bottom:555.026667pt;}
.y58_c00008{bottom:555.773333pt;}
.y56_c00008{bottom:556.360000pt;}
.y55_c00008{bottom:557.893333pt;}
.y53_c00008{bottom:572.360000pt;}
.y54_c00008{bottom:572.733333pt;}
.y50_c00008{bottom:573.306667pt;}
.y4f_c00008{bottom:573.693333pt;}
.y52_c00008{bottom:574.440000pt;}
.y4e_c00008{bottom:575.226667pt;}
.y51_c00008{bottom:576.360000pt;}
.y4a_c00008{bottom:589.693333pt;}
.y49_c00008{bottom:591.026667pt;}
.y4c_c00008{bottom:591.773333pt;}
.y4d_c00008{bottom:592.560000pt;}
.y4b_c00008{bottom:592.933333pt;}
.y48_c00008{bottom:608.360000pt;}
.y46_c00008{bottom:609.106667pt;}
.y45_c00008{bottom:611.026667pt;}
.y47_c00008{bottom:611.226667pt;}
.y44_c00008{bottom:624.360000pt;}
.y41_c00008{bottom:625.693333pt;}
.y43_c00008{bottom:626.440000pt;}
.y3f_c00008{bottom:626.640000pt;}
.y42_c00008{bottom:628.360000pt;}
.y40_c00008{bottom:628.560000pt;}
.y3e_c00008{bottom:641.693333pt;}
.y3c_c00008{bottom:643.026667pt;}
.y3d_c00008{bottom:643.973333pt;}
.y3b_c00008{bottom:645.693333pt;}
.y38_c00008{bottom:660.360000pt;}
.y3a_c00008{bottom:661.306667pt;}
.y39_c00008{bottom:663.026667pt;}
.y36_c00008{bottom:677.693333pt;}
.y37_c00008{bottom:678.440000pt;}
.y33_c00008{bottom:695.026667pt;}
.y35_c00008{bottom:695.773333pt;}
.y32_c00008{bottom:695.973333pt;}
.y34_c00008{bottom:697.693333pt;}
.y2f_c00008{bottom:712.360000pt;}
.y31_c00008{bottom:713.106667pt;}
.y2e_c00008{bottom:713.306667pt;}
.y2d_c00008{bottom:715.226667pt;}
.y30_c00008{bottom:715.973333pt;}
.y2b_c00008{bottom:729.693333pt;}
.y2c_c00008{bottom:730.640000pt;}
.y2a_c00008{bottom:733.693333pt;}
.y29_c00008{bottom:733.893333pt;}
.y28_c00008{bottom:755.026667pt;}
.y27_c00008{bottom:755.973333pt;}
.y26_c00008{bottom:757.106667pt;}
.y1d_c00008{bottom:781.693333pt;}
.y1b_c00008{bottom:782.440000pt;}
.y18_c00008{bottom:783.026667pt;}
.y19_c00008{bottom:783.773333pt;}
.y1c_c00008{bottom:784.360000pt;}
.y1a_c00008{bottom:784.560000pt;}
.y17_c00008{bottom:785.693333pt;}
.y15_c00008{bottom:816.360000pt;}
.y13_c00008{bottom:817.106667pt;}
.y14_c00008{bottom:817.306667pt;}
.y16_c00008{bottom:818.066667pt;}
.ye_c00008{bottom:818.440000pt;}
.y12_c00008{bottom:819.026667pt;}
.y11_c00008{bottom:819.226667pt;}
.y10_c00008{bottom:819.973333pt;}
.yf_c00008{bottom:821.306667pt;}
.yd_c00008{bottom:833.693333pt;}
.yc_c00008{bottom:834.440000pt;}
.ya_c00008{bottom:836.360000pt;}
.yb_c00008{bottom:836.560000pt;}
.y6_c00008{bottom:852.360000pt;}
.y7_c00008{bottom:853.106667pt;}
.y8_c00008{bottom:853.893333pt;}
.y9_c00008{bottom:854.640000pt;}
.y5_c00008{bottom:855.026667pt;}
.y4_c00008{bottom:870.440000pt;}
.y3_c00008{bottom:871.226667pt;}
.y2_c00008{bottom:872.360000pt;}
.y1_c00008{bottom:907.026667pt;}
.h2_c00008{height:20.466875pt;}
.h8_c00008{height:22.303646pt;}
.h4_c00008{height:27.879557pt;}
.h1_c00008{height:31.618698pt;}
.h5_c00008{height:35.357839pt;}
.h6_c00008{height:36.952031pt;}
.h3_c00008{height:39.031380pt;}
.h7_c00008{height:42.285365pt;}
.h0_c00008{height:1186.666667pt;}
.w0_c00008{width:782.666667pt;}
.x0_c00008{left:0.000000pt;}
.x27_c00008{left:136.000000pt;}
.x4f_c00008{left:142.666667pt;}
.x4b_c00008{left:144.000000pt;}
.x40_c00008{left:147.626667pt;}
.x38_c00008{left:149.333333pt;}
.x4_c00008{left:150.666667pt;}
.x19_c00008{left:172.373333pt;}
.x5_c00008{left:178.666667pt;}
.xa_c00008{left:180.373333pt;}
.x41_c00008{left:184.960000pt;}
.x4c_c00008{left:187.040000pt;}
.x51_c00008{left:194.666667pt;}
.x28_c00008{left:196.000000pt;}
.x39_c00008{left:197.706667pt;}
.x1a_c00008{left:199.040000pt;}
.x50_c00008{left:202.666667pt;}
.xb_c00008{left:206.293333pt;}
.x42_c00008{left:213.333333pt;}
.x29_c00008{left:220.000000pt;}
.x1b_c00008{left:221.333333pt;}
.x43_c00008{left:225.333333pt;}
.xc_c00008{left:244.960000pt;}
.x2a_c00008{left:249.333333pt;}
.x1_c00008{left:250.293333pt;}
.x6_c00008{left:256.000000pt;}
.x2b_c00008{left:265.706667pt;}
.x3a_c00008{left:272.000000pt;}
.xd_c00008{left:274.666667pt;}
.x7_c00008{left:278.666667pt;}
.x4d_c00008{left:280.373333pt;}
.x1c_c00008{left:281.333333pt;}
.x44_c00008{left:292.000000pt;}
.x3b_c00008{left:294.666667pt;}
.x45_c00008{left:311.626667pt;}
.xe_c00008{left:313.333333pt;}
.x2c_c00008{left:316.000000pt;}
.x8_c00008{left:322.666667pt;}
.x1d_c00008{left:326.666667pt;}
.x55_c00008{left:332.373333pt;}
.x46_c00008{left:336.373333pt;}
.x3c_c00008{left:338.666667pt;}
.x9_c00008{left:340.373333pt;}
.x2d_c00008{left:341.333333pt;}
.x1e_c00008{left:356.000000pt;}
.xf_c00008{left:356.960000pt;}
.x3d_c00008{left:359.040000pt;}
.x2e_c00008{left:371.626667pt;}
.x1f_c00008{left:375.040000pt;}
.x2_c00008{left:378.293333pt;}
.x3e_c00008{left:383.040000pt;}
.x10_c00008{left:389.133333pt;}
.x20_c00008{left:404.373333pt;}
.x3_c00008{left:406.666667pt;}
.x48_c00008{left:423.040000pt;}
.x52_c00008{left:424.000000pt;}
.x2f_c00008{left:424.960000pt;}
.x11_c00008{left:430.666667pt;}
.x3f_c00008{left:442.293333pt;}
.x30_c00008{left:448.000000pt;}
.x12_c00008{left:456.000000pt;}
.x47_c00008{left:466.293333pt;}
.x31_c00008{left:471.626667pt;}
.x53_c00008{left:476.373333pt;}
.x49_c00008{left:477.906667pt;}
.x21_c00008{left:487.040000pt;}
.x32_c00008{left:498.666667pt;}
.x13_c00008{left:500.960000pt;}
.x22_c00008{left:512.960000pt;}
.x14_c00008{left:519.040000pt;}
.x33_c00008{left:528.000000pt;}
.x15_c00008{left:543.626667pt;}
.x34_c00008{left:546.666667pt;}
.x23_c00008{left:551.626667pt;}
.x35_c00008{left:556.000000pt;}
.x24_c00008{left:566.293333pt;}
.x16_c00008{left:571.626667pt;}
.x4a_c00008{left:575.040000pt;}
.x17_c00008{left:591.040000pt;}
.x25_c00008{left:597.333333pt;}
.x36_c00008{left:608.960000pt;}
.x18_c00008{left:615.626667pt;}
.x37_c00008{left:624.000000pt;}
.x54_c00008{left:626.666667pt;}
.x4e_c00008{left:627.626667pt;}
.x26_c00008{left:630.666667pt;}
.x56_c00008{left:643.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_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_afd7b0bb97585d3d92171136.woff2')format("woff");}.ff1_c00009{font-family:ff1_c00009;line-height:1.688965;font-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_c00009{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m29_c00009{transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);}
.ma3_c00009{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m8c_c00009{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m47_c00009{transform:matrix(0.376050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376050,0.000000,0.000000,0.250000,0,0);}
.m7a_c00009{transform:matrix(0.376891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376891,0.000000,0.000000,0.250000,0,0);}
.m8d_c00009{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.mb7_c00009{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m70_c00009{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.ma9_c00009{transform:matrix(0.382285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382285,0.000000,0.000000,0.250000,0,0);}
.m45_c00009{transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);}
.m99_c00009{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.m61_c00009{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.ma8_c00009{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.md7_c00009{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m30_c00009{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.mb2_c00009{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mbb_c00009{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m6d_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);}
.m7e_c00009{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m97_c00009{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m8b_c00009{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m94_c00009{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m19_c00009{transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);}
.m58_c00009{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.md1_c00009{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.md3_c00009{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.maf_c00009{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m44_c00009{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.m3e_c00009{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mb8_c00009{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m33_c00009{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m84_c00009{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m67_c00009{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m55_c00009{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mc5_c00009{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.ma4_c00009{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m1f_c00009{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m11_c00009{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m5a_c00009{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m92_c00009{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.mb_c00009{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.ma7_c00009{transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);}
.m72_c00009{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m9a_c00009{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m93_c00009{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.me2_c00009{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m46_c00009{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.mca_c00009{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.me0_c00009{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m7d_c00009{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m83_c00009{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.m74_c00009{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m9b_c00009{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m37_c00009{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mde_c00009{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m81_c00009{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m8e_c00009{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m17_c00009{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m63_c00009{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m9d_c00009{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.m2d_c00009{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.mba_c00009{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.m5d_c00009{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m68_c00009{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.ma5_c00009{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m89_c00009{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.mc_c00009{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.mc2_c00009{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m5c_c00009{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m82_c00009{transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);}
.mb9_c00009{transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);}
.m76_c00009{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.me_c00009{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m21_c00009{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.mdc_c00009{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m4b_c00009{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m23_c00009{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.mcf_c00009{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m50_c00009{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m87_c00009{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m42_c00009{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m32_c00009{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m2e_c00009{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.mc3_c00009{transform:matrix(0.463866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463866,0.000000,0.000000,0.250000,0,0);}
.m96_c00009{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00009{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m78_c00009{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.md6_c00009{transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);}
.m7c_c00009{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.m16_c00009{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m36_c00009{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m75_c00009{transform:matrix(0.483193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483193,0.000000,0.000000,0.250000,0,0);}
.m4d_c00009{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m5b_c00009{transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);}
.m5_c00009{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.me3_c00009{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m86_c00009{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m28_c00009{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m53_c00009{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m98_c00009{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m13_c00009{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.md_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);}
.md9_c00009{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mcc_c00009{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.mb1_c00009{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mb0_c00009{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m7_c00009{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m54_c00009{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m2_c00009{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m5e_c00009{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m31_c00009{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m3_c00009{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m14_c00009{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m4a_c00009{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m43_c00009{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m6b_c00009{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m60_c00009{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m3b_c00009{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m95_c00009{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.mb6_c00009{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m4_c00009{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m62_c00009{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m85_c00009{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m64_c00009{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m88_c00009{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mda_c00009{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m3f_c00009{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.mc9_c00009{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m1e_c00009{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.mcd_c00009{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mc6_c00009{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.mce_c00009{transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);}
.m9_c00009{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m91_c00009{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m71_c00009{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m34_c00009{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m38_c00009{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m2b_c00009{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.md8_c00009{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m6_c00009{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m2a_c00009{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m57_c00009{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m6e_c00009{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.mf_c00009{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mad_c00009{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m4e_c00009{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.ma0_c00009{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m1d_c00009{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mc1_c00009{transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);}
.m25_c00009{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m49_c00009{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m22_c00009{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m65_c00009{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m35_c00009{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m66_c00009{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m80_c00009{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mb5_c00009{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m2f_c00009{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mb4_c00009{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mac_c00009{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.mc0_c00009{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m10_c00009{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m8f_c00009{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m3a_c00009{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mdf_c00009{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m7f_c00009{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m40_c00009{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m4c_c00009{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m51_c00009{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m77_c00009{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mcb_c00009{transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);}
.ma_c00009{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.ma2_c00009{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m9c_c00009{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m1_c00009{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mc4_c00009{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m27_c00009{transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);}
.m56_c00009{transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);}
.m1c_c00009{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.ma1_c00009{transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);}
.m15_c00009{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m39_c00009{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m3d_c00009{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.ma6_c00009{transform:matrix(0.582469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582469,0.000000,0.000000,0.250000,0,0);}
.md2_c00009{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m2c_c00009{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m59_c00009{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mc7_c00009{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m6c_c00009{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.m48_c00009{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m26_c00009{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mb3_c00009{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m8a_c00009{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m24_c00009{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m18_c00009{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.md4_c00009{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m1b_c00009{transform:matrix(0.630588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630588,0.000000,0.000000,0.250000,0,0);}
.mc8_c00009{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.mbf_c00009{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.mdb_c00009{transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);}
.mdd_c00009{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m79_c00009{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m1a_c00009{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m8_c00009{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m7b_c00009{transform:matrix(0.668269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.668269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.668269,0.000000,0.000000,0.250000,0,0);}
.mbc_c00009{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.me1_c00009{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.maa_c00009{transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);}
.mab_c00009{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m4f_c00009{transform:matrix(0.705929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705929,0.000000,0.000000,0.250000,0,0);}
.m12_c00009{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m69_c00009{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m5f_c00009{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m52_c00009{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.mbd_c00009{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m41_c00009{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m6f_c00009{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m73_c00009{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mbe_c00009{transform:matrix(0.774840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.774840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.774840,0.000000,0.000000,0.250000,0,0);}
.m3c_c00009{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m90_c00009{transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);}
.md5_c00009{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.mae_c00009{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m0_c00009{transform:matrix(0.806017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806017,0.000000,0.000000,0.250000,0,0);}
.md0_c00009{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m9e_c00009{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m20_c00009{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,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;}
}
.ws1_c00009{word-spacing:-6.766801px;}
.ws0_c00009{word-spacing:-3.524477px;}
.ws2_c00009{word-spacing:0.000000px;}
.fc0_c00009{color:transparent;}
.fs4_c00009{font-size:18.720000px;}
.fs6_c00009{font-size:20.400000px;}
.fs1_c00009{font-size:25.500000px;}
.fs0_c00009{font-size:28.920000px;}
.fs3_c00009{font-size:32.340000px;}
.fs2_c00009{font-size:35.700000px;}
.fs5_c00009{font-size:39.120000px;}
.y0_c00009{bottom:0.000000px;}
.ybf_c00009{bottom:230.325000px;}
.yc3_c00009{bottom:230.745000px;}
.yc1_c00009{bottom:232.050000px;}
.ybe_c00009{bottom:232.470000px;}
.yc0_c00009{bottom:232.905000px;}
.yc2_c00009{bottom:233.130000px;}
.ybb_c00009{bottom:250.245000px;}
.ybd_c00009{bottom:251.130000px;}
.ybc_c00009{bottom:251.970000px;}
.yb9_c00009{bottom:252.405000px;}
.yba_c00009{bottom:253.470000px;}
.yb8_c00009{bottom:268.245000px;}
.yb4_c00009{bottom:269.325000px;}
.yb5_c00009{bottom:269.745000px;}
.yb7_c00009{bottom:270.405000px;}
.yb6_c00009{bottom:271.905000px;}
.yb2_c00009{bottom:289.050000px;}
.yae_c00009{bottom:289.245000px;}
.yb3_c00009{bottom:289.905000px;}
.yaf_c00009{bottom:290.130000px;}
.yad_c00009{bottom:291.405000px;}
.yb0_c00009{bottom:292.470000px;}
.yb1_c00009{bottom:292.905000px;}
.ya8_c00009{bottom:307.905000px;}
.yac_c00009{bottom:308.745000px;}
.yab_c00009{bottom:309.630000px;}
.yaa_c00009{bottom:309.825000px;}
.ya7_c00009{bottom:310.905000px;}
.ya9_c00009{bottom:312.405000px;}
.ya6_c00009{bottom:327.405000px;}
.y9f_c00009{bottom:328.245000px;}
.ya1_c00009{bottom:328.470000px;}
.ya5_c00009{bottom:329.325000px;}
.ya4_c00009{bottom:329.970000px;}
.ya2_c00009{bottom:330.405000px;}
.ya3_c00009{bottom:331.470000px;}
.ya0_c00009{bottom:331.905000px;}
.y9b_c00009{bottom:349.245000px;}
.y9e_c00009{bottom:349.470000px;}
.y9d_c00009{bottom:349.905000px;}
.y9c_c00009{bottom:350.970000px;}
.y9a_c00009{bottom:351.405000px;}
.y99_c00009{bottom:367.245000px;}
.y97_c00009{bottom:367.470000px;}
.y96_c00009{bottom:368.745000px;}
.y94_c00009{bottom:369.405000px;}
.y98_c00009{bottom:370.470000px;}
.y95_c00009{bottom:370.905000px;}
.y92_c00009{bottom:388.245000px;}
.y93_c00009{bottom:388.905000px;}
.y91_c00009{bottom:389.130000px;}
.y90_c00009{bottom:390.405000px;}
.y8f_c00009{bottom:406.470000px;}
.y8d_c00009{bottom:408.630000px;}
.y8b_c00009{bottom:409.050000px;}
.y8e_c00009{bottom:409.470000px;}
.y8a_c00009{bottom:409.905000px;}
.y8c_c00009{bottom:410.130000px;}
.y87_c00009{bottom:427.245000px;}
.y86_c00009{bottom:428.325000px;}
.y89_c00009{bottom:429.405000px;}
.y88_c00009{bottom:429.630000px;}
.y85_c00009{bottom:445.905000px;}
.y84_c00009{bottom:446.745000px;}
.y82_c00009{bottom:448.470000px;}
.y83_c00009{bottom:448.905000px;}
.y81_c00009{bottom:449.130000px;}
.y7e_c00009{bottom:465.405000px;}
.y7a_c00009{bottom:466.245000px;}
.y79_c00009{bottom:467.130000px;}
.y7f_c00009{bottom:467.745000px;}
.y7d_c00009{bottom:468.405000px;}
.y7c_c00009{bottom:468.630000px;}
.y80_c00009{bottom:469.470000px;}
.y7b_c00009{bottom:469.905000px;}
.y76_c00009{bottom:487.245000px;}
.y75_c00009{bottom:487.905000px;}
.y77_c00009{bottom:488.130000px;}
.y78_c00009{bottom:489.405000px;}
.y71_c00009{bottom:505.680000px;}
.y6f_c00009{bottom:506.325000px;}
.y74_c00009{bottom:506.550000px;}
.y73_c00009{bottom:506.745000px;}
.y72_c00009{bottom:507.630000px;}
.y70_c00009{bottom:507.825000px;}
.y6e_c00009{bottom:508.905000px;}
.y6c_c00009{bottom:526.245000px;}
.y6d_c00009{bottom:526.905000px;}
.y6b_c00009{bottom:528.405000px;}
.y69_c00009{bottom:543.405000px;}
.y65_c00009{bottom:545.325000px;}
.y67_c00009{bottom:545.745000px;}
.y68_c00009{bottom:546.630000px;}
.y6a_c00009{bottom:546.825000px;}
.y66_c00009{bottom:547.470000px;}
.y63_c00009{bottom:547.905000px;}
.y64_c00009{bottom:548.970000px;}
.y61_c00009{bottom:565.245000px;}
.y62_c00009{bottom:567.405000px;}
.y60_c00009{bottom:584.745000px;}
.y5d_c00009{bottom:585.825000px;}
.y5c_c00009{bottom:586.245000px;}
.y5e_c00009{bottom:586.905000px;}
.y5f_c00009{bottom:587.130000px;}
.y5b_c00009{bottom:588.405000px;}
.y5a_c00009{bottom:605.745000px;}
.y58_c00009{bottom:606.630000px;}
.y59_c00009{bottom:607.905000px;}
.y51_c00009{bottom:623.745000px;}
.y55_c00009{bottom:623.970000px;}
.y50_c00009{bottom:624.825000px;}
.y56_c00009{bottom:625.245000px;}
.y53_c00009{bottom:625.905000px;}
.y52_c00009{bottom:626.130000px;}
.y57_c00009{bottom:626.970000px;}
.y54_c00009{bottom:627.405000px;}
.y4c_c00009{bottom:644.325000px;}
.y4d_c00009{bottom:644.745000px;}
.y4b_c00009{bottom:645.405000px;}
.y4f_c00009{bottom:645.825000px;}
.y4e_c00009{bottom:646.905000px;}
.y49_c00009{bottom:664.245000px;}
.y48_c00009{bottom:665.325000px;}
.y4a_c00009{bottom:666.405000px;}
.y44_c00009{bottom:683.745000px;}
.y47_c00009{bottom:684.825000px;}
.y45_c00009{bottom:685.905000px;}
.y43_c00009{bottom:686.130000px;}
.y46_c00009{bottom:686.970000px;}
.y40_c00009{bottom:703.245000px;}
.y41_c00009{bottom:704.325000px;}
.y3f_c00009{bottom:705.405000px;}
.y42_c00009{bottom:705.630000px;}
.y39_c00009{bottom:722.745000px;}
.y3a_c00009{bottom:723.630000px;}
.y3c_c00009{bottom:723.825000px;}
.y3b_c00009{bottom:724.905000px;}
.y3e_c00009{bottom:725.130000px;}
.y3d_c00009{bottom:725.970000px;}
.y37_c00009{bottom:741.405000px;}
.y36_c00009{bottom:743.745000px;}
.y38_c00009{bottom:744.630000px;}
.y35_c00009{bottom:745.905000px;}
.y33_c00009{bottom:762.825000px;}
.y31_c00009{bottom:763.245000px;}
.y34_c00009{bottom:764.130000px;}
.y30_c00009{bottom:764.325000px;}
.y32_c00009{bottom:765.405000px;}
.y2c_c00009{bottom:781.905000px;}
.y2e_c00009{bottom:782.745000px;}
.y2f_c00009{bottom:783.405000px;}
.y2b_c00009{bottom:784.470000px;}
.y2d_c00009{bottom:784.905000px;}
.y2a_c00009{bottom:802.245000px;}
.y29_c00009{bottom:803.130000px;}
.y28_c00009{bottom:804.405000px;}
.y24_c00009{bottom:821.745000px;}
.y27_c00009{bottom:822.825000px;}
.y25_c00009{bottom:823.905000px;}
.y26_c00009{bottom:824.970000px;}
.y22_c00009{bottom:841.245000px;}
.y21_c00009{bottom:842.970000px;}
.y1f_c00009{bottom:843.405000px;}
.y20_c00009{bottom:843.630000px;}
.y23_c00009{bottom:844.905000px;}
.y1d_c00009{bottom:860.745000px;}
.y1e_c00009{bottom:862.905000px;}
.y1a_c00009{bottom:881.745000px;}
.y18_c00009{bottom:882.405000px;}
.y1b_c00009{bottom:882.825000px;}
.y19_c00009{bottom:883.470000px;}
.y1c_c00009{bottom:883.905000px;}
.y11_c00009{bottom:899.745000px;}
.y13_c00009{bottom:901.245000px;}
.y17_c00009{bottom:901.905000px;}
.y12_c00009{bottom:902.130000px;}
.y16_c00009{bottom:902.325000px;}
.y15_c00009{bottom:902.970000px;}
.y14_c00009{bottom:903.405000px;}
.yd_c00009{bottom:918.825000px;}
.yc_c00009{bottom:919.245000px;}
.yb_c00009{bottom:921.405000px;}
.ye_c00009{bottom:921.630000px;}
.yf_c00009{bottom:922.470000px;}
.y10_c00009{bottom:922.905000px;}
.y5_c00009{bottom:939.825000px;}
.y9_c00009{bottom:940.245000px;}
.y6_c00009{bottom:940.905000px;}
.ya_c00009{bottom:941.130000px;}
.y8_c00009{bottom:941.970000px;}
.y7_c00009{bottom:942.405000px;}
.y4_c00009{bottom:959.745000px;}
.y3_c00009{bottom:961.470000px;}
.y2_c00009{bottom:961.905000px;}
.y1_c00009{bottom:1000.905000px;}
.h5_c00009{height:23.025234px;}
.h7_c00009{height:25.091602px;}
.h2_c00009{height:31.364502px;}
.h1_c00009{height:35.571035px;}
.h4_c00009{height:39.777568px;}
.h3_c00009{height:43.910303px;}
.h6_c00009{height:48.116836px;}
.h0_c00009{height:1335.000000px;}
.w0_c00009{width:880.500000px;}
.x0_c00009{left:0.000000px;}
.x10_c00009{left:151.500000px;}
.x62_c00009{left:153.000000px;}
.xf6_c00009{left:154.500000px;}
.xc8_c00009{left:165.000000px;}
.x2_c00009{left:168.000000px;}
.xd5_c00009{left:169.080000px;}
.xcf_c00009{left:171.000000px;}
.x80_c00009{left:173.580000px;}
.x74_c00009{left:175.500000px;}
.xed_c00009{left:181.080000px;}
.x42_c00009{left:183.000000px;}
.x3_c00009{left:186.420000px;}
.x75_c00009{left:189.420000px;}
.xd6_c00009{left:190.500000px;}
.x5a_c00009{left:192.420000px;}
.x56_c00009{left:193.920000px;}
.xc2_c00009{left:197.580000px;}
.xfc_c00009{left:199.080000px;}
.x43_c00009{left:201.000000px;}
.xa7_c00009{left:204.000000px;}
.x18_c00009{left:205.080000px;}
.x11_c00009{left:207.000000px;}
.x30_c00009{left:210.000000px;}
.x8c_c00009{left:211.500000px;}
.x4e_c00009{left:213.420000px;}
.x4_c00009{left:214.500000px;}
.xa9_c00009{left:215.580000px;}
.x76_c00009{left:219.000000px;}
.xb2_c00009{left:220.920000px;}
.x39_c00009{left:225.420000px;}
.x31_c00009{left:226.500000px;}
.x6d_c00009{left:228.000000px;}
.x63_c00009{left:231.420000px;}
.x5b_c00009{left:232.500000px;}
.xd7_c00009{left:238.500000px;}
.x44_c00009{left:241.080000px;}
.x19_c00009{left:243.000000px;}
.xbb_c00009{left:244.500000px;}
.x12_c00009{left:247.080000px;}
.xf3_c00009{left:249.000000px;}
.xf0_c00009{left:250.080000px;}
.x25_c00009{left:252.420000px;}
.x32_c00009{left:253.920000px;}
.x98_c00009{left:255.000000px;}
.x5c_c00009{left:259.500000px;}
.x4f_c00009{left:262.920000px;}
.xc3_c00009{left:265.920000px;}
.x1a_c00009{left:268.500000px;}
.xea_c00009{left:270.420000px;}
.xaa_c00009{left:271.500000px;}
.x77_c00009{left:274.500000px;}
.x5_c00009{left:277.500000px;}
.x13_c00009{left:279.000000px;}
.xdb_c00009{left:280.920000px;}
.x86_c00009{left:282.420000px;}
.x26_c00009{left:284.580000px;}
.xd8_c00009{left:286.500000px;}
.x45_c00009{left:288.000000px;}
.x50_c00009{left:289.500000px;}
.xab_c00009{left:291.000000px;}
.x33_c00009{left:295.080000px;}
.x99_c00009{left:297.420000px;}
.x14_c00009{left:298.500000px;}
.x81_c00009{left:300.000000px;}
.xc4_c00009{left:301.080000px;}
.xd4_c00009{left:307.500000px;}
.xc9_c00009{left:310.500000px;}
.x3a_c00009{left:311.580000px;}
.x34_c00009{left:313.920000px;}
.xa2_c00009{left:315.000000px;}
.x6e_c00009{left:316.920000px;}
.x5d_c00009{left:318.000000px;}
.x57_c00009{left:320.580000px;}
.xdc_c00009{left:322.500000px;}
.xf7_c00009{left:325.500000px;}
.x6_c00009{left:328.080000px;}
.xee_c00009{left:330.420000px;}
.xa0_c00009{left:331.500000px;}
.x9a_c00009{left:334.500000px;}
.xd0_c00009{left:337.500000px;}
.x51_c00009{left:338.580000px;}
.xe5_c00009{left:340.500000px;}
.xdd_c00009{left:341.580000px;}
.x6f_c00009{left:343.275000px;}
.xb3_c00009{left:344.580000px;}
.xac_c00009{left:346.500000px;}
.x7_c00009{left:351.420000px;}
.x15_c00009{left:354.420000px;}
.x8d_c00009{left:355.500000px;}
.x64_c00009{left:358.500000px;}
.xde_c00009{left:360.000000px;}
.x1b_c00009{left:361.500000px;}
.xf4_c00009{left:363.420000px;}
.x87_c00009{left:364.500000px;}
.xb4_c00009{left:366.000000px;}
.x78_c00009{left:367.500000px;}
.x35_c00009{left:369.420000px;}
.xd9_c00009{left:370.500000px;}
.x27_c00009{left:372.000000px;}
.xa3_c00009{left:373.080000px;}
.xdf_c00009{left:375.000000px;}
.xbc_c00009{left:376.080000px;}
.xf8_c00009{left:378.000000px;}
.x46_c00009{left:379.500000px;}
.x1c_c00009{left:381.855000px;}
.x9b_c00009{left:382.920000px;}
.xca_c00009{left:387.420000px;}
.x5e_c00009{left:391.500000px;}
.x16_c00009{left:393.000000px;}
.x58_c00009{left:394.500000px;}
.xa1_c00009{left:396.420000px;}
.x1_c00009{left:398.145000px;}
.x8e_c00009{left:399.420000px;}
.x79_c00009{left:402.000000px;}
.xad_c00009{left:403.920000px;}
.x94_c00009{left:406.500000px;}
.xf9_c00009{left:409.500000px;}
.x8_c00009{left:411.000000px;}
.xe3_c00009{left:412.080000px;}
.x17_c00009{left:415.500000px;}
.x1d_c00009{left:417.000000px;}
.xb5_c00009{left:419.580000px;}
.x47_c00009{left:421.080000px;}
.x7a_c00009{left:422.775000px;}
.x65_c00009{left:425.580000px;}
.x88_c00009{left:427.920000px;}
.x82_c00009{left:429.000000px;}
.x95_c00009{left:430.080000px;}
.x28_c00009{left:434.580000px;}
.x1e_c00009{left:436.920000px;}
.xb6_c00009{left:439.920000px;}
.xe0_c00009{left:441.000000px;}
.xc5_c00009{left:442.500000px;}
.x9_c00009{left:445.500000px;}
.x66_c00009{left:448.920000px;}
.xe6_c00009{left:453.000000px;}
.x83_c00009{left:454.500000px;}
.x29_c00009{left:455.580000px;}
.xbd_c00009{left:457.500000px;}
.x7b_c00009{left:462.000000px;}
.x89_c00009{left:465.000000px;}
.xa_c00009{left:466.920000px;}
.xb7_c00009{left:468.000000px;}
.xcb_c00009{left:471.000000px;}
.x3b_c00009{left:472.500000px;}
.x8f_c00009{left:474.420000px;}
.x52_c00009{left:477.000000px;}
.x67_c00009{left:478.500000px;}
.x70_c00009{left:482.580000px;}
.x59_c00009{left:486.000000px;}
.x3c_c00009{left:487.920000px;}
.x1f_c00009{left:490.080000px;}
.xae_c00009{left:492.000000px;}
.xb_c00009{left:495.000000px;}
.xd1_c00009{left:496.500000px;}
.xbe_c00009{left:498.000000px;}
.xda_c00009{left:499.080000px;}
.x9c_c00009{left:502.275000px;}
.x84_c00009{left:507.000000px;}
.x20_c00009{left:508.920000px;}
.xe7_c00009{left:511.080000px;}
.xf5_c00009{left:513.420000px;}
.x2a_c00009{left:514.500000px;}
.xbf_c00009{left:516.000000px;}
.x96_c00009{left:521.145000px;}
.x3d_c00009{left:525.000000px;}
.xcc_c00009{left:526.500000px;}
.xb8_c00009{left:528.000000px;}
.x53_c00009{left:531.000000px;}
.xa4_c00009{left:535.500000px;}
.x21_c00009{left:536.580000px;}
.x9d_c00009{left:538.500000px;}
.xe1_c00009{left:539.580000px;}
.x97_c00009{left:541.500000px;}
.xc_c00009{left:543.000000px;}
.x2b_c00009{left:544.500000px;}
.x68_c00009{left:546.000000px;}
.x36_c00009{left:549.000000px;}
.x48_c00009{left:550.500000px;}
.x3e_c00009{left:554.580000px;}
.xcd_c00009{left:556.080000px;}
.x69_c00009{left:561.000000px;}
.xaf_c00009{left:562.080000px;}
.x90_c00009{left:563.580000px;}
.xa8_c00009{left:565.920000px;}
.x37_c00009{left:567.420000px;}
.x2c_c00009{left:568.500000px;}
.xa5_c00009{left:570.000000px;}
.x5f_c00009{left:571.920000px;}
.xe8_c00009{left:573.420000px;}
.xf1_c00009{left:574.920000px;}
.xd2_c00009{left:579.420000px;}
.x7c_c00009{left:580.920000px;}
.x49_c00009{left:582.420000px;}
.x85_c00009{left:584.580000px;}
.xc0_c00009{left:586.920000px;}
.xfa_c00009{left:589.500000px;}
.x3f_c00009{left:591.000000px;}
.x38_c00009{left:592.500000px;}
.x2d_c00009{left:594.000000px;}
.xe4_c00009{left:596.580000px;}
.x22_c00009{left:598.080000px;}
.x71_c00009{left:599.580000px;}
.x60_c00009{left:601.500000px;}
.x91_c00009{left:603.420000px;}
.x8a_c00009{left:606.000000px;}
.x40_c00009{left:607.920000px;}
.x6a_c00009{left:609.000000px;}
.xc1_c00009{left:612.000000px;}
.x23_c00009{left:616.500000px;}
.xb9_c00009{left:618.000000px;}
.xc6_c00009{left:619.080000px;}
.xef_c00009{left:621.000000px;}
.x54_c00009{left:624.000000px;}
.xeb_c00009{left:627.000000px;}
.xd3_c00009{left:628.080000px;}
.xd_c00009{left:631.920000px;}
.x92_c00009{left:633.000000px;}
.x7d_c00009{left:637.500000px;}
.x4a_c00009{left:642.000000px;}
.x72_c00009{left:643.500000px;}
.x9e_c00009{left:646.920000px;}
.xce_c00009{left:649.920000px;}
.x2e_c00009{left:652.080000px;}
.xb0_c00009{left:655.500000px;}
.x41_c00009{left:657.000000px;}
.xfb_c00009{left:658.500000px;}
.x7e_c00009{left:660.000000px;}
.x4b_c00009{left:664.080000px;}
.x6b_c00009{left:665.580000px;}
.x61_c00009{left:669.420000px;}
.xe9_c00009{left:670.500000px;}
.x73_c00009{left:672.420000px;}
.xe2_c00009{left:673.500000px;}
.xb1_c00009{left:674.580000px;}
.x8b_c00009{left:678.000000px;}
.xf2_c00009{left:679.080000px;}
.xa6_c00009{left:682.500000px;}
.x9f_c00009{left:684.420000px;}
.xe_c00009{left:686.580000px;}
.x24_c00009{left:688.080000px;}
.x4c_c00009{left:692.580000px;}
.xc7_c00009{left:694.080000px;}
.xec_c00009{left:696.000000px;}
.x55_c00009{left:697.920000px;}
.x7f_c00009{left:700.080000px;}
.xba_c00009{left:703.080000px;}
.xf_c00009{left:706.920000px;}
.x2f_c00009{left:709.500000px;}
.x6c_c00009{left:712.500000px;}
.x4d_c00009{left:715.080000px;}
.x93_c00009{left:716.580000px;}
@media print{
.v0_c00009{vertical-align:0.000000pt;}
.ls0_c00009{letter-spacing:0.000000pt;}
.ws1_c00009{word-spacing:-6.014934pt;}
.ws0_c00009{word-spacing:-3.132868pt;}
.ws2_c00009{word-spacing:0.000000pt;}
.fs4_c00009{font-size:16.640000pt;}
.fs6_c00009{font-size:18.133333pt;}
.fs1_c00009{font-size:22.666667pt;}
.fs0_c00009{font-size:25.706667pt;}
.fs3_c00009{font-size:28.746667pt;}
.fs2_c00009{font-size:31.733333pt;}
.fs5_c00009{font-size:34.773333pt;}
.y0_c00009{bottom:0.000000pt;}
.ybf_c00009{bottom:204.733333pt;}
.yc3_c00009{bottom:205.106667pt;}
.yc1_c00009{bottom:206.266667pt;}
.ybe_c00009{bottom:206.640000pt;}
.yc0_c00009{bottom:207.026667pt;}
.yc2_c00009{bottom:207.226667pt;}
.ybb_c00009{bottom:222.440000pt;}
.ybd_c00009{bottom:223.226667pt;}
.ybc_c00009{bottom:223.973333pt;}
.yb9_c00009{bottom:224.360000pt;}
.yba_c00009{bottom:225.306667pt;}
.yb8_c00009{bottom:238.440000pt;}
.yb4_c00009{bottom:239.400000pt;}
.yb5_c00009{bottom:239.773333pt;}
.yb7_c00009{bottom:240.360000pt;}
.yb6_c00009{bottom:241.693333pt;}
.yb2_c00009{bottom:256.933333pt;}
.yae_c00009{bottom:257.106667pt;}
.yb3_c00009{bottom:257.693333pt;}
.yaf_c00009{bottom:257.893333pt;}
.yad_c00009{bottom:259.026667pt;}
.yb0_c00009{bottom:259.973333pt;}
.yb1_c00009{bottom:260.360000pt;}
.ya8_c00009{bottom:273.693333pt;}
.yac_c00009{bottom:274.440000pt;}
.yab_c00009{bottom:275.226667pt;}
.yaa_c00009{bottom:275.400000pt;}
.ya7_c00009{bottom:276.360000pt;}
.ya9_c00009{bottom:277.693333pt;}
.ya6_c00009{bottom:291.026667pt;}
.y9f_c00009{bottom:291.773333pt;}
.ya1_c00009{bottom:291.973333pt;}
.ya5_c00009{bottom:292.733333pt;}
.ya4_c00009{bottom:293.306667pt;}
.ya2_c00009{bottom:293.693333pt;}
.ya3_c00009{bottom:294.640000pt;}
.ya0_c00009{bottom:295.026667pt;}
.y9b_c00009{bottom:310.440000pt;}
.y9e_c00009{bottom:310.640000pt;}
.y9d_c00009{bottom:311.026667pt;}
.y9c_c00009{bottom:311.973333pt;}
.y9a_c00009{bottom:312.360000pt;}
.y99_c00009{bottom:326.440000pt;}
.y97_c00009{bottom:326.640000pt;}
.y96_c00009{bottom:327.773333pt;}
.y94_c00009{bottom:328.360000pt;}
.y98_c00009{bottom:329.306667pt;}
.y95_c00009{bottom:329.693333pt;}
.y92_c00009{bottom:345.106667pt;}
.y93_c00009{bottom:345.693333pt;}
.y91_c00009{bottom:345.893333pt;}
.y90_c00009{bottom:347.026667pt;}
.y8f_c00009{bottom:361.306667pt;}
.y8d_c00009{bottom:363.226667pt;}
.y8b_c00009{bottom:363.600000pt;}
.y8e_c00009{bottom:363.973333pt;}
.y8a_c00009{bottom:364.360000pt;}
.y8c_c00009{bottom:364.560000pt;}
.y87_c00009{bottom:379.773333pt;}
.y86_c00009{bottom:380.733333pt;}
.y89_c00009{bottom:381.693333pt;}
.y88_c00009{bottom:381.893333pt;}
.y85_c00009{bottom:396.360000pt;}
.y84_c00009{bottom:397.106667pt;}
.y82_c00009{bottom:398.640000pt;}
.y83_c00009{bottom:399.026667pt;}
.y81_c00009{bottom:399.226667pt;}
.y7e_c00009{bottom:413.693333pt;}
.y7a_c00009{bottom:414.440000pt;}
.y79_c00009{bottom:415.226667pt;}
.y7f_c00009{bottom:415.773333pt;}
.y7d_c00009{bottom:416.360000pt;}
.y7c_c00009{bottom:416.560000pt;}
.y80_c00009{bottom:417.306667pt;}
.y7b_c00009{bottom:417.693333pt;}
.y76_c00009{bottom:433.106667pt;}
.y75_c00009{bottom:433.693333pt;}
.y77_c00009{bottom:433.893333pt;}
.y78_c00009{bottom:435.026667pt;}
.y71_c00009{bottom:449.493333pt;}
.y6f_c00009{bottom:450.066667pt;}
.y74_c00009{bottom:450.266667pt;}
.y73_c00009{bottom:450.440000pt;}
.y72_c00009{bottom:451.226667pt;}
.y70_c00009{bottom:451.400000pt;}
.y6e_c00009{bottom:452.360000pt;}
.y6c_c00009{bottom:467.773333pt;}
.y6d_c00009{bottom:468.360000pt;}
.y6b_c00009{bottom:469.693333pt;}
.y69_c00009{bottom:483.026667pt;}
.y65_c00009{bottom:484.733333pt;}
.y67_c00009{bottom:485.106667pt;}
.y68_c00009{bottom:485.893333pt;}
.y6a_c00009{bottom:486.066667pt;}
.y66_c00009{bottom:486.640000pt;}
.y63_c00009{bottom:487.026667pt;}
.y64_c00009{bottom:487.973333pt;}
.y61_c00009{bottom:502.440000pt;}
.y62_c00009{bottom:504.360000pt;}
.y60_c00009{bottom:519.773333pt;}
.y5d_c00009{bottom:520.733333pt;}
.y5c_c00009{bottom:521.106667pt;}
.y5e_c00009{bottom:521.693333pt;}
.y5f_c00009{bottom:521.893333pt;}
.y5b_c00009{bottom:523.026667pt;}
.y5a_c00009{bottom:538.440000pt;}
.y58_c00009{bottom:539.226667pt;}
.y59_c00009{bottom:540.360000pt;}
.y51_c00009{bottom:554.440000pt;}
.y55_c00009{bottom:554.640000pt;}
.y50_c00009{bottom:555.400000pt;}
.y56_c00009{bottom:555.773333pt;}
.y53_c00009{bottom:556.360000pt;}
.y52_c00009{bottom:556.560000pt;}
.y57_c00009{bottom:557.306667pt;}
.y54_c00009{bottom:557.693333pt;}
.y4c_c00009{bottom:572.733333pt;}
.y4d_c00009{bottom:573.106667pt;}
.y4b_c00009{bottom:573.693333pt;}
.y4f_c00009{bottom:574.066667pt;}
.y4e_c00009{bottom:575.026667pt;}
.y49_c00009{bottom:590.440000pt;}
.y48_c00009{bottom:591.400000pt;}
.y4a_c00009{bottom:592.360000pt;}
.y44_c00009{bottom:607.773333pt;}
.y47_c00009{bottom:608.733333pt;}
.y45_c00009{bottom:609.693333pt;}
.y43_c00009{bottom:609.893333pt;}
.y46_c00009{bottom:610.640000pt;}
.y40_c00009{bottom:625.106667pt;}
.y41_c00009{bottom:626.066667pt;}
.y3f_c00009{bottom:627.026667pt;}
.y42_c00009{bottom:627.226667pt;}
.y39_c00009{bottom:642.440000pt;}
.y3a_c00009{bottom:643.226667pt;}
.y3c_c00009{bottom:643.400000pt;}
.y3b_c00009{bottom:644.360000pt;}
.y3e_c00009{bottom:644.560000pt;}
.y3d_c00009{bottom:645.306667pt;}
.y37_c00009{bottom:659.026667pt;}
.y36_c00009{bottom:661.106667pt;}
.y38_c00009{bottom:661.893333pt;}
.y35_c00009{bottom:663.026667pt;}
.y33_c00009{bottom:678.066667pt;}
.y31_c00009{bottom:678.440000pt;}
.y34_c00009{bottom:679.226667pt;}
.y30_c00009{bottom:679.400000pt;}
.y32_c00009{bottom:680.360000pt;}
.y2c_c00009{bottom:695.026667pt;}
.y2e_c00009{bottom:695.773333pt;}
.y2f_c00009{bottom:696.360000pt;}
.y2b_c00009{bottom:697.306667pt;}
.y2d_c00009{bottom:697.693333pt;}
.y2a_c00009{bottom:713.106667pt;}
.y29_c00009{bottom:713.893333pt;}
.y28_c00009{bottom:715.026667pt;}
.y24_c00009{bottom:730.440000pt;}
.y27_c00009{bottom:731.400000pt;}
.y25_c00009{bottom:732.360000pt;}
.y26_c00009{bottom:733.306667pt;}
.y22_c00009{bottom:747.773333pt;}
.y21_c00009{bottom:749.306667pt;}
.y1f_c00009{bottom:749.693333pt;}
.y20_c00009{bottom:749.893333pt;}
.y23_c00009{bottom:751.026667pt;}
.y1d_c00009{bottom:765.106667pt;}
.y1e_c00009{bottom:767.026667pt;}
.y1a_c00009{bottom:783.773333pt;}
.y18_c00009{bottom:784.360000pt;}
.y1b_c00009{bottom:784.733333pt;}
.y19_c00009{bottom:785.306667pt;}
.y1c_c00009{bottom:785.693333pt;}
.y11_c00009{bottom:799.773333pt;}
.y13_c00009{bottom:801.106667pt;}
.y17_c00009{bottom:801.693333pt;}
.y12_c00009{bottom:801.893333pt;}
.y16_c00009{bottom:802.066667pt;}
.y15_c00009{bottom:802.640000pt;}
.y14_c00009{bottom:803.026667pt;}
.yd_c00009{bottom:816.733333pt;}
.yc_c00009{bottom:817.106667pt;}
.yb_c00009{bottom:819.026667pt;}
.ye_c00009{bottom:819.226667pt;}
.yf_c00009{bottom:819.973333pt;}
.y10_c00009{bottom:820.360000pt;}
.y5_c00009{bottom:835.400000pt;}
.y9_c00009{bottom:835.773333pt;}
.y6_c00009{bottom:836.360000pt;}
.ya_c00009{bottom:836.560000pt;}
.y8_c00009{bottom:837.306667pt;}
.y7_c00009{bottom:837.693333pt;}
.y4_c00009{bottom:853.106667pt;}
.y3_c00009{bottom:854.640000pt;}
.y2_c00009{bottom:855.026667pt;}
.y1_c00009{bottom:889.693333pt;}
.h5_c00009{height:20.466875pt;}
.h7_c00009{height:22.303646pt;}
.h2_c00009{height:27.879557pt;}
.h1_c00009{height:31.618698pt;}
.h4_c00009{height:35.357839pt;}
.h3_c00009{height:39.031380pt;}
.h6_c00009{height:42.770521pt;}
.h0_c00009{height:1186.666667pt;}
.w0_c00009{width:782.666667pt;}
.x0_c00009{left:0.000000pt;}
.x10_c00009{left:134.666667pt;}
.x62_c00009{left:136.000000pt;}
.xf6_c00009{left:137.333333pt;}
.xc8_c00009{left:146.666667pt;}
.x2_c00009{left:149.333333pt;}
.xd5_c00009{left:150.293333pt;}
.xcf_c00009{left:152.000000pt;}
.x80_c00009{left:154.293333pt;}
.x74_c00009{left:156.000000pt;}
.xed_c00009{left:160.960000pt;}
.x42_c00009{left:162.666667pt;}
.x3_c00009{left:165.706667pt;}
.x75_c00009{left:168.373333pt;}
.xd6_c00009{left:169.333333pt;}
.x5a_c00009{left:171.040000pt;}
.x56_c00009{left:172.373333pt;}
.xc2_c00009{left:175.626667pt;}
.xfc_c00009{left:176.960000pt;}
.x43_c00009{left:178.666667pt;}
.xa7_c00009{left:181.333333pt;}
.x18_c00009{left:182.293333pt;}
.x11_c00009{left:184.000000pt;}
.x30_c00009{left:186.666667pt;}
.x8c_c00009{left:188.000000pt;}
.x4e_c00009{left:189.706667pt;}
.x4_c00009{left:190.666667pt;}
.xa9_c00009{left:191.626667pt;}
.x76_c00009{left:194.666667pt;}
.xb2_c00009{left:196.373333pt;}
.x39_c00009{left:200.373333pt;}
.x31_c00009{left:201.333333pt;}
.x6d_c00009{left:202.666667pt;}
.x63_c00009{left:205.706667pt;}
.x5b_c00009{left:206.666667pt;}
.xd7_c00009{left:212.000000pt;}
.x44_c00009{left:214.293333pt;}
.x19_c00009{left:216.000000pt;}
.xbb_c00009{left:217.333333pt;}
.x12_c00009{left:219.626667pt;}
.xf3_c00009{left:221.333333pt;}
.xf0_c00009{left:222.293333pt;}
.x25_c00009{left:224.373333pt;}
.x32_c00009{left:225.706667pt;}
.x98_c00009{left:226.666667pt;}
.x5c_c00009{left:230.666667pt;}
.x4f_c00009{left:233.706667pt;}
.xc3_c00009{left:236.373333pt;}
.x1a_c00009{left:238.666667pt;}
.xea_c00009{left:240.373333pt;}
.xaa_c00009{left:241.333333pt;}
.x77_c00009{left:244.000000pt;}
.x5_c00009{left:246.666667pt;}
.x13_c00009{left:248.000000pt;}
.xdb_c00009{left:249.706667pt;}
.x86_c00009{left:251.040000pt;}
.x26_c00009{left:252.960000pt;}
.xd8_c00009{left:254.666667pt;}
.x45_c00009{left:256.000000pt;}
.x50_c00009{left:257.333333pt;}
.xab_c00009{left:258.666667pt;}
.x33_c00009{left:262.293333pt;}
.x99_c00009{left:264.373333pt;}
.x14_c00009{left:265.333333pt;}
.x81_c00009{left:266.666667pt;}
.xc4_c00009{left:267.626667pt;}
.xd4_c00009{left:273.333333pt;}
.xc9_c00009{left:276.000000pt;}
.x3a_c00009{left:276.960000pt;}
.x34_c00009{left:279.040000pt;}
.xa2_c00009{left:280.000000pt;}
.x6e_c00009{left:281.706667pt;}
.x5d_c00009{left:282.666667pt;}
.x57_c00009{left:284.960000pt;}
.xdc_c00009{left:286.666667pt;}
.xf7_c00009{left:289.333333pt;}
.x6_c00009{left:291.626667pt;}
.xee_c00009{left:293.706667pt;}
.xa0_c00009{left:294.666667pt;}
.x9a_c00009{left:297.333333pt;}
.xd0_c00009{left:300.000000pt;}
.x51_c00009{left:300.960000pt;}
.xe5_c00009{left:302.666667pt;}
.xdd_c00009{left:303.626667pt;}
.x6f_c00009{left:305.133333pt;}
.xb3_c00009{left:306.293333pt;}
.xac_c00009{left:308.000000pt;}
.x7_c00009{left:312.373333pt;}
.x15_c00009{left:315.040000pt;}
.x8d_c00009{left:316.000000pt;}
.x64_c00009{left:318.666667pt;}
.xde_c00009{left:320.000000pt;}
.x1b_c00009{left:321.333333pt;}
.xf4_c00009{left:323.040000pt;}
.x87_c00009{left:324.000000pt;}
.xb4_c00009{left:325.333333pt;}
.x78_c00009{left:326.666667pt;}
.x35_c00009{left:328.373333pt;}
.xd9_c00009{left:329.333333pt;}
.x27_c00009{left:330.666667pt;}
.xa3_c00009{left:331.626667pt;}
.xdf_c00009{left:333.333333pt;}
.xbc_c00009{left:334.293333pt;}
.xf8_c00009{left:336.000000pt;}
.x46_c00009{left:337.333333pt;}
.x1c_c00009{left:339.426667pt;}
.x9b_c00009{left:340.373333pt;}
.xca_c00009{left:344.373333pt;}
.x5e_c00009{left:348.000000pt;}
.x16_c00009{left:349.333333pt;}
.x58_c00009{left:350.666667pt;}
.xa1_c00009{left:352.373333pt;}
.x1_c00009{left:353.906667pt;}
.x8e_c00009{left:355.040000pt;}
.x79_c00009{left:357.333333pt;}
.xad_c00009{left:359.040000pt;}
.x94_c00009{left:361.333333pt;}
.xf9_c00009{left:364.000000pt;}
.x8_c00009{left:365.333333pt;}
.xe3_c00009{left:366.293333pt;}
.x17_c00009{left:369.333333pt;}
.x1d_c00009{left:370.666667pt;}
.xb5_c00009{left:372.960000pt;}
.x47_c00009{left:374.293333pt;}
.x7a_c00009{left:375.800000pt;}
.x65_c00009{left:378.293333pt;}
.x88_c00009{left:380.373333pt;}
.x82_c00009{left:381.333333pt;}
.x95_c00009{left:382.293333pt;}
.x28_c00009{left:386.293333pt;}
.x1e_c00009{left:388.373333pt;}
.xb6_c00009{left:391.040000pt;}
.xe0_c00009{left:392.000000pt;}
.xc5_c00009{left:393.333333pt;}
.x9_c00009{left:396.000000pt;}
.x66_c00009{left:399.040000pt;}
.xe6_c00009{left:402.666667pt;}
.x83_c00009{left:404.000000pt;}
.x29_c00009{left:404.960000pt;}
.xbd_c00009{left:406.666667pt;}
.x7b_c00009{left:410.666667pt;}
.x89_c00009{left:413.333333pt;}
.xa_c00009{left:415.040000pt;}
.xb7_c00009{left:416.000000pt;}
.xcb_c00009{left:418.666667pt;}
.x3b_c00009{left:420.000000pt;}
.x8f_c00009{left:421.706667pt;}
.x52_c00009{left:424.000000pt;}
.x67_c00009{left:425.333333pt;}
.x70_c00009{left:428.960000pt;}
.x59_c00009{left:432.000000pt;}
.x3c_c00009{left:433.706667pt;}
.x1f_c00009{left:435.626667pt;}
.xae_c00009{left:437.333333pt;}
.xb_c00009{left:440.000000pt;}
.xd1_c00009{left:441.333333pt;}
.xbe_c00009{left:442.666667pt;}
.xda_c00009{left:443.626667pt;}
.x9c_c00009{left:446.466667pt;}
.x84_c00009{left:450.666667pt;}
.x20_c00009{left:452.373333pt;}
.xe7_c00009{left:454.293333pt;}
.xf5_c00009{left:456.373333pt;}
.x2a_c00009{left:457.333333pt;}
.xbf_c00009{left:458.666667pt;}
.x96_c00009{left:463.240000pt;}
.x3d_c00009{left:466.666667pt;}
.xcc_c00009{left:468.000000pt;}
.xb8_c00009{left:469.333333pt;}
.x53_c00009{left:472.000000pt;}
.xa4_c00009{left:476.000000pt;}
.x21_c00009{left:476.960000pt;}
.x9d_c00009{left:478.666667pt;}
.xe1_c00009{left:479.626667pt;}
.x97_c00009{left:481.333333pt;}
.xc_c00009{left:482.666667pt;}
.x2b_c00009{left:484.000000pt;}
.x68_c00009{left:485.333333pt;}
.x36_c00009{left:488.000000pt;}
.x48_c00009{left:489.333333pt;}
.x3e_c00009{left:492.960000pt;}
.xcd_c00009{left:494.293333pt;}
.x69_c00009{left:498.666667pt;}
.xaf_c00009{left:499.626667pt;}
.x90_c00009{left:500.960000pt;}
.xa8_c00009{left:503.040000pt;}
.x37_c00009{left:504.373333pt;}
.x2c_c00009{left:505.333333pt;}
.xa5_c00009{left:506.666667pt;}
.x5f_c00009{left:508.373333pt;}
.xe8_c00009{left:509.706667pt;}
.xf1_c00009{left:511.040000pt;}
.xd2_c00009{left:515.040000pt;}
.x7c_c00009{left:516.373333pt;}
.x49_c00009{left:517.706667pt;}
.x85_c00009{left:519.626667pt;}
.xc0_c00009{left:521.706667pt;}
.xfa_c00009{left:524.000000pt;}
.x3f_c00009{left:525.333333pt;}
.x38_c00009{left:526.666667pt;}
.x2d_c00009{left:528.000000pt;}
.xe4_c00009{left:530.293333pt;}
.x22_c00009{left:531.626667pt;}
.x71_c00009{left:532.960000pt;}
.x60_c00009{left:534.666667pt;}
.x91_c00009{left:536.373333pt;}
.x8a_c00009{left:538.666667pt;}
.x40_c00009{left:540.373333pt;}
.x6a_c00009{left:541.333333pt;}
.xc1_c00009{left:544.000000pt;}
.x23_c00009{left:548.000000pt;}
.xb9_c00009{left:549.333333pt;}
.xc6_c00009{left:550.293333pt;}
.xef_c00009{left:552.000000pt;}
.x54_c00009{left:554.666667pt;}
.xeb_c00009{left:557.333333pt;}
.xd3_c00009{left:558.293333pt;}
.xd_c00009{left:561.706667pt;}
.x92_c00009{left:562.666667pt;}
.x7d_c00009{left:566.666667pt;}
.x4a_c00009{left:570.666667pt;}
.x72_c00009{left:572.000000pt;}
.x9e_c00009{left:575.040000pt;}
.xce_c00009{left:577.706667pt;}
.x2e_c00009{left:579.626667pt;}
.xb0_c00009{left:582.666667pt;}
.x41_c00009{left:584.000000pt;}
.xfb_c00009{left:585.333333pt;}
.x7e_c00009{left:586.666667pt;}
.x4b_c00009{left:590.293333pt;}
.x6b_c00009{left:591.626667pt;}
.x61_c00009{left:595.040000pt;}
.xe9_c00009{left:596.000000pt;}
.x73_c00009{left:597.706667pt;}
.xe2_c00009{left:598.666667pt;}
.xb1_c00009{left:599.626667pt;}
.x8b_c00009{left:602.666667pt;}
.xf2_c00009{left:603.626667pt;}
.xa6_c00009{left:606.666667pt;}
.x9f_c00009{left:608.373333pt;}
.xe_c00009{left:610.293333pt;}
.x24_c00009{left:611.626667pt;}
.x4c_c00009{left:615.626667pt;}
.xc7_c00009{left:616.960000pt;}
.xec_c00009{left:618.666667pt;}
.x55_c00009{left:620.373333pt;}
.x7f_c00009{left:622.293333pt;}
.xba_c00009{left:624.960000pt;}
.xf_c00009{left:628.373333pt;}
.x2f_c00009{left:630.666667pt;}
.x6c_c00009{left:633.333333pt;}
.x4d_c00009{left:635.626667pt;}
.x93_c00009{left:636.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_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_2ea0013d3a3e59fc30419fb5.woff2')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:1.688965;font-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_c00010{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m6f_c00010{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m58_c00010{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m2a_c00010{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.m4e_c00010{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m19_c00010{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m55_c00010{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m43_c00010{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m83_c00010{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m9a_c00010{transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);}
.ma1_c00010{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m45_c00010{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m98_c00010{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.mc8_c00010{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m29_c00010{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.maf_c00010{transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);}
.m7d_c00010{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m67_c00010{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m79_c00010{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m3d_c00010{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m5f_c00010{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m20_c00010{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m82_c00010{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m25_c00010{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m49_c00010{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.mcf_c00010{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.md2_c00010{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m39_c00010{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m4d_c00010{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m8a_c00010{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m37_c00010{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m57_c00010{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m24_c00010{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.mb5_c00010{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m9d_c00010{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.md6_c00010{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m2f_c00010{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mb6_c00010{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.mce_c00010{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.md_c00010{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.md8_c00010{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m95_c00010{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mb8_c00010{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m1c_c00010{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m6c_c00010{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m9e_c00010{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.maa_c00010{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mc7_c00010{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m22_c00010{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m8e_c00010{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.mad_c00010{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mcb_c00010{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.ma4_c00010{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.mb7_c00010{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m14_c00010{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m38_c00010{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m10_c00010{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.ma7_c00010{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m5a_c00010{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.ma5_c00010{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m94_c00010{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.m6b_c00010{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m7f_c00010{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m21_c00010{transform:matrix(0.449907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449907,0.000000,0.000000,0.250000,0,0);}
.m47_c00010{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.mc3_c00010{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m1e_c00010{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m5c_c00010{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.mdb_c00010{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m5b_c00010{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mb_c00010{transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);}
.m54_c00010{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m8b_c00010{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m7c_c00010{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.mda_c00010{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m48_c00010{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.m77_c00010{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m12_c00010{transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);}
.mae_c00010{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.ma_c00010{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.md0_c00010{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mc2_c00010{transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);}
.m59_c00010{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m7b_c00010{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m4b_c00010{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.ma6_c00010{transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);}
.m68_c00010{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m90_c00010{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m8c_c00010{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.md1_c00010{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m18_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);}
.m41_c00010{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.mbd_c00010{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m31_c00010{transform:matrix(0.504638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504638,0.000000,0.000000,0.250000,0,0);}
.m36_c00010{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.ma3_c00010{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m97_c00010{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mb4_c00010{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m6a_c00010{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m13_c00010{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m76_c00010{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m8f_c00010{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mbc_c00010{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m23_c00010{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m53_c00010{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m75_c00010{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m7e_c00010{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mbe_c00010{transform:matrix(0.519944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519944,0.000000,0.000000,0.250000,0,0);}
.m3f_c00010{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m5d_c00010{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.m96_c00010{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m7a_c00010{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m4f_c00010{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m9c_c00010{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mc1_c00010{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m7_c00010{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.mb2_c00010{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m85_c00010{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mcd_c00010{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mb1_c00010{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m4c_c00010{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m8d_c00010{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m92_c00010{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m3_c00010{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m6e_c00010{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m80_c00010{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.md3_c00010{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m3e_c00010{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m51_c00010{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m3b_c00010{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mb3_c00010{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mca_c00010{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m33_c00010{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m74_c00010{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m8_c00010{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mbf_c00010{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m34_c00010{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m32_c00010{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m72_c00010{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.ma9_c00010{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m65_c00010{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m84_c00010{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m40_c00010{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m93_c00010{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mc6_c00010{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m26_c00010{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m11_c00010{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m66_c00010{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m63_c00010{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m30_c00010{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m73_c00010{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m70_c00010{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m9f_c00010{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m9b_c00010{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.mc4_c00010{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.md7_c00010{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);}
.m2d_c00010{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m1d_c00010{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mcc_c00010{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.md4_c00010{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m56_c00010{transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);}
.m5_c00010{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m91_c00010{transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);}
.m1f_c00010{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mbb_c00010{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m3c_c00010{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m2e_c00010{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m15_c00010{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.ma0_c00010{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m81_c00010{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m5e_c00010{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mba_c00010{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.mc9_c00010{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.ma2_c00010{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m2c_c00010{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m71_c00010{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m0_c00010{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.m27_c00010{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m61_c00010{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m78_c00010{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m42_c00010{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);}
.m99_c00010{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mac_c00010{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mc5_c00010{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.m6_c00010{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m28_c00010{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m1a_c00010{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m2_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);}
.mc0_c00010{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.me_c00010{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m88_c00010{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mb9_c00010{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.mb0_c00010{transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);}
.mab_c00010{transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);}
.m89_c00010{transform:matrix(0.654118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.654118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.654118,0.000000,0.000000,0.250000,0,0);}
.m6d_c00010{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m17_c00010{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m3a_c00010{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m9_c00010{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mf_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);}
.m62_c00010{transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);}
.md5_c00010{transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);}
.md9_c00010{transform:matrix(0.692647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692647,0.000000,0.000000,0.250000,0,0);}
.m69_c00010{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m64_c00010{transform:matrix(0.696471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696471,0.000000,0.000000,0.250000,0,0);}
.m44_c00010{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m4a_c00010{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m4_c00010{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.ma8_c00010{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m46_c00010{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m1_c00010{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);}
.m1b_c00010{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m60_c00010{transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);}
.m52_c00010{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m16_c00010{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mc_c00010{transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);}
.m87_c00010{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m86_c00010{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m35_c00010{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m50_c00010{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.v1_c00010{vertical-align:-12.000000px;}
.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:-16.889280px;}
.ws1_c00010{word-spacing:-4.382160px;}
.ws2_c00010{word-spacing:0.000000px;}
._0_c00010{width:6.613272px;}
.fc0_c00010{color:transparent;}
.fs2_c00010{font-size:18.720000px;}
.fs0_c00010{font-size:20.400000px;}
.fs3_c00010{font-size:25.500000px;}
.fs1_c00010{font-size:28.920000px;}
.fs5_c00010{font-size:32.340000px;}
.fs4_c00010{font-size:35.700000px;}
.y0_c00010{bottom:0.000000px;}
.yda_c00010{bottom:254.745000px;}
.yd6_c00010{bottom:255.405000px;}
.yd8_c00010{bottom:255.630000px;}
.yd9_c00010{bottom:255.825000px;}
.yd7_c00010{bottom:256.905000px;}
.yd0_c00010{bottom:274.245000px;}
.yd5_c00010{bottom:275.550000px;}
.yd1_c00010{bottom:275.970000px;}
.yd2_c00010{bottom:276.405000px;}
.yd4_c00010{bottom:276.630000px;}
.yd3_c00010{bottom:277.470000px;}
.yca_c00010{bottom:293.745000px;}
.ycc_c00010{bottom:293.970000px;}
.ycd_c00010{bottom:294.825000px;}
.ycf_c00010{bottom:295.050000px;}
.ycb_c00010{bottom:295.905000px;}
.yce_c00010{bottom:296.130000px;}
.yc5_c00010{bottom:313.245000px;}
.yc8_c00010{bottom:314.325000px;}
.yc7_c00010{bottom:314.745000px;}
.yc6_c00010{bottom:315.405000px;}
.yc9_c00010{bottom:316.470000px;}
.yc1_c00010{bottom:331.245000px;}
.yc2_c00010{bottom:334.245000px;}
.yc0_c00010{bottom:334.905000px;}
.yc4_c00010{bottom:336.405000px;}
.yc3_c00010{bottom:336.630000px;}
.ybe_c00010{bottom:353.745000px;}
.ybb_c00010{bottom:354.405000px;}
.ybd_c00010{bottom:354.825000px;}
.ybf_c00010{bottom:355.470000px;}
.ybc_c00010{bottom:355.905000px;}
.yba_c00010{bottom:373.245000px;}
.yb7_c00010{bottom:373.905000px;}
.yb6_c00010{bottom:374.130000px;}
.yb8_c00010{bottom:375.405000px;}
.yb9_c00010{bottom:375.630000px;}
.yb3_c00010{bottom:392.745000px;}
.yb0_c00010{bottom:393.405000px;}
.yb2_c00010{bottom:393.630000px;}
.yb4_c00010{bottom:394.245000px;}
.yb1_c00010{bottom:394.905000px;}
.yb5_c00010{bottom:395.970000px;}
.yaf_c00010{bottom:411.405000px;}
.yad_c00010{bottom:414.405000px;}
.yae_c00010{bottom:415.905000px;}
.yab_c00010{bottom:431.745000px;}
.ya8_c00010{bottom:433.245000px;}
.ya5_c00010{bottom:433.905000px;}
.yac_c00010{bottom:434.130000px;}
.ya7_c00010{bottom:434.325000px;}
.ya6_c00010{bottom:434.970000px;}
.yaa_c00010{bottom:435.405000px;}
.ya9_c00010{bottom:436.470000px;}
.ya3_c00010{bottom:450.405000px;}
.y9e_c00010{bottom:451.245000px;}
.y9f_c00010{bottom:452.745000px;}
.y9d_c00010{bottom:453.405000px;}
.ya0_c00010{bottom:453.630000px;}
.ya1_c00010{bottom:453.825000px;}
.ya4_c00010{bottom:454.470000px;}
.ya2_c00010{bottom:454.905000px;}
.y9c_c00010{bottom:469.905000px;}
.y98_c00010{bottom:472.245000px;}
.y97_c00010{bottom:472.905000px;}
.y9a_c00010{bottom:473.550000px;}
.y99_c00010{bottom:474.405000px;}
.y9b_c00010{bottom:475.470000px;}
.y96_c00010{bottom:490.905000px;}
.y92_c00010{bottom:491.745000px;}
.y90_c00010{bottom:492.405000px;}
.y95_c00010{bottom:493.245000px;}
.y93_c00010{bottom:493.470000px;}
.y91_c00010{bottom:493.905000px;}
.y94_c00010{bottom:495.405000px;}
.y8f_c00010{bottom:509.745000px;}
.y8d_c00010{bottom:511.245000px;}
.y8a_c00010{bottom:512.130000px;}
.y8c_c00010{bottom:512.970000px;}
.y8b_c00010{bottom:513.405000px;}
.y8e_c00010{bottom:514.905000px;}
.y86_c00010{bottom:528.825000px;}
.y85_c00010{bottom:532.905000px;}
.y89_c00010{bottom:533.130000px;}
.y87_c00010{bottom:533.970000px;}
.y88_c00010{bottom:534.405000px;}
.y84_c00010{bottom:550.905000px;}
.y83_c00010{bottom:551.745000px;}
.y7f_c00010{bottom:552.405000px;}
.y82_c00010{bottom:552.630000px;}
.y80_c00010{bottom:552.825000px;}
.y81_c00010{bottom:553.905000px;}
.y77_c00010{bottom:569.745000px;}
.y79_c00010{bottom:570.825000px;}
.y7e_c00010{bottom:571.245000px;}
.y78_c00010{bottom:571.905000px;}
.y7b_c00010{bottom:572.130000px;}
.y7a_c00010{bottom:572.970000px;}
.y7c_c00010{bottom:573.405000px;}
.y7d_c00010{bottom:574.470000px;}
.y70_c00010{bottom:589.245000px;}
.y73_c00010{bottom:590.325000px;}
.y75_c00010{bottom:590.745000px;}
.y6f_c00010{bottom:591.405000px;}
.y72_c00010{bottom:591.630000px;}
.y71_c00010{bottom:592.470000px;}
.y74_c00010{bottom:592.905000px;}
.y76_c00010{bottom:593.970000px;}
.y6a_c00010{bottom:609.405000px;}
.y6e_c00010{bottom:609.825000px;}
.y6d_c00010{bottom:610.245000px;}
.y69_c00010{bottom:610.905000px;}
.y6c_c00010{bottom:611.970000px;}
.y6b_c00010{bottom:612.405000px;}
.y68_c00010{bottom:629.745000px;}
.y63_c00010{bottom:649.245000px;}
.y64_c00010{bottom:650.130000px;}
.y67_c00010{bottom:650.970000px;}
.y66_c00010{bottom:651.405000px;}
.y65_c00010{bottom:652.470000px;}
.y62_c00010{bottom:666.405000px;}
.y5e_c00010{bottom:668.745000px;}
.y61_c00010{bottom:669.630000px;}
.y60_c00010{bottom:670.905000px;}
.y5f_c00010{bottom:671.970000px;}
.y5c_c00010{bottom:688.245000px;}
.y5d_c00010{bottom:690.405000px;}
.y58_c00010{bottom:709.905000px;}
.y59_c00010{bottom:710.130000px;}
.y5b_c00010{bottom:710.970000px;}
.y5a_c00010{bottom:711.405000px;}
.y52_c00010{bottom:727.245000px;}
.y50_c00010{bottom:728.130000px;}
.y55_c00010{bottom:728.325000px;}
.y54_c00010{bottom:728.745000px;}
.y57_c00010{bottom:729.405000px;}
.y53_c00010{bottom:729.630000px;}
.y51_c00010{bottom:730.470000px;}
.y56_c00010{bottom:730.905000px;}
.y4c_c00010{bottom:747.825000px;}
.y4d_c00010{bottom:748.245000px;}
.y4e_c00010{bottom:748.905000px;}
.y4f_c00010{bottom:750.405000px;}
.y4b_c00010{bottom:765.405000px;}
.y4a_c00010{bottom:767.745000px;}
.y49_c00010{bottom:768.825000px;}
.y48_c00010{bottom:769.905000px;}
.y47_c00010{bottom:787.245000px;}
.y46_c00010{bottom:788.325000px;}
.y45_c00010{bottom:788.970000px;}
.y44_c00010{bottom:789.405000px;}
.y40_c00010{bottom:806.745000px;}
.y3f_c00010{bottom:807.405000px;}
.y43_c00010{bottom:807.630000px;}
.y42_c00010{bottom:808.470000px;}
.y41_c00010{bottom:808.905000px;}
.y3d_c00010{bottom:826.245000px;}
.y3b_c00010{bottom:827.130000px;}
.y3c_c00010{bottom:828.405000px;}
.y3e_c00010{bottom:829.470000px;}
.y39_c00010{bottom:845.745000px;}
.y3a_c00010{bottom:846.825000px;}
.y38_c00010{bottom:847.905000px;}
.y35_c00010{bottom:865.245000px;}
.y37_c00010{bottom:866.325000px;}
.y32_c00010{bottom:866.970000px;}
.y36_c00010{bottom:867.405000px;}
.y34_c00010{bottom:867.630000px;}
.y33_c00010{bottom:868.470000px;}
.y2d_c00010{bottom:884.745000px;}
.y2f_c00010{bottom:885.825000px;}
.y2e_c00010{bottom:886.905000px;}
.y30_c00010{bottom:887.970000px;}
.y31_c00010{bottom:888.405000px;}
.y27_c00010{bottom:905.130000px;}
.y29_c00010{bottom:905.745000px;}
.y28_c00010{bottom:906.405000px;}
.y2a_c00010{bottom:906.630000px;}
.y2c_c00010{bottom:906.825000px;}
.y2b_c00010{bottom:907.905000px;}
.y24_c00010{bottom:925.245000px;}
.y25_c00010{bottom:926.130000px;}
.y26_c00010{bottom:927.405000px;}
.y1e_c00010{bottom:942.405000px;}
.y21_c00010{bottom:944.745000px;}
.y1d_c00010{bottom:945.405000px;}
.y22_c00010{bottom:945.630000px;}
.y23_c00010{bottom:945.825000px;}
.y1f_c00010{bottom:946.905000px;}
.y20_c00010{bottom:947.970000px;}
.y1a_c00010{bottom:964.245000px;}
.y1b_c00010{bottom:965.130000px;}
.y1c_c00010{bottom:966.405000px;}
.y15_c00010{bottom:983.745000px;}
.y14_c00010{bottom:984.405000px;}
.y18_c00010{bottom:984.630000px;}
.y17_c00010{bottom:984.825000px;}
.y16_c00010{bottom:985.905000px;}
.y19_c00010{bottom:986.130000px;}
.y10_c00010{bottom:1003.245000px;}
.y13_c00010{bottom:1004.970000px;}
.y11_c00010{bottom:1005.405000px;}
.y12_c00010{bottom:1006.470000px;}
.ye_c00010{bottom:1022.745000px;}
.yf_c00010{bottom:1023.630000px;}
.yd_c00010{bottom:1023.825000px;}
.yc_c00010{bottom:1024.905000px;}
.y7_c00010{bottom:1042.050000px;}
.y9_c00010{bottom:1042.245000px;}
.y8_c00010{bottom:1043.970000px;}
.ya_c00010{bottom:1044.405000px;}
.yb_c00010{bottom:1044.630000px;}
.y6_c00010{bottom:1061.745000px;}
.y5_c00010{bottom:1063.245000px;}
.y2_c00010{bottom:1063.905000px;}
.y3_c00010{bottom:1064.130000px;}
.y4_c00010{bottom:1064.970000px;}
.y1_c00010{bottom:1102.050000px;}
.h3_c00010{height:23.025234px;}
.h1_c00010{height:25.091602px;}
.h4_c00010{height:31.364502px;}
.h2_c00010{height:35.571035px;}
.h6_c00010{height:39.777568px;}
.h5_c00010{height:43.910303px;}
.h0_c00010{height:1335.000000px;}
.w0_c00010{width:880.500000px;}
.x0_c00010{left:0.000000px;}
.x5f_c00010{left:151.500000px;}
.x2_c00010{left:153.000000px;}
.xf1_c00010{left:166.500000px;}
.xbd_c00010{left:168.000000px;}
.x3_c00010{left:169.500000px;}
.x7a_c00010{left:171.000000px;}
.x31_c00010{left:172.500000px;}
.x57_c00010{left:174.420000px;}
.xf7_c00010{left:175.920000px;}
.xe8_c00010{left:177.000000px;}
.xd7_c00010{left:183.420000px;}
.xc4_c00010{left:186.000000px;}
.x7b_c00010{left:187.500000px;}
.x97_c00010{left:189.000000px;}
.x4_c00010{left:192.420000px;}
.x10_c00010{left:195.000000px;}
.x84_c00010{left:197.580000px;}
.x69_c00010{left:199.500000px;}
.x45_c00010{left:200.580000px;}
.xdd_c00010{left:202.500000px;}
.x28_c00010{left:204.000000px;}
.x60_c00010{left:205.500000px;}
.x1e_c00010{left:208.920000px;}
.x109_c00010{left:211.500000px;}
.xbe_c00010{left:213.000000px;}
.x11_c00010{left:214.920000px;}
.xaf_c00010{left:217.500000px;}
.x8b_c00010{left:219.000000px;}
.x3d_c00010{left:220.920000px;}
.x5_c00010{left:222.420000px;}
.xce_c00010{left:223.920000px;}
.x98_c00010{left:226.500000px;}
.x32_c00010{left:229.080000px;}
.xd8_c00010{left:231.000000px;}
.x92_c00010{left:232.920000px;}
.x101_c00010{left:235.920000px;}
.xf2_c00010{left:237.000000px;}
.x51_c00010{left:244.500000px;}
.x46_c00010{left:246.420000px;}
.xb0_c00010{left:249.000000px;}
.x10a_c00010{left:250.500000px;}
.xa1_c00010{left:252.420000px;}
.xca_c00010{left:253.500000px;}
.x61_c00010{left:255.000000px;}
.x12_c00010{left:256.500000px;}
.xa8_c00010{left:257.580000px;}
.x33_c00010{left:263.355000px;}
.xe9_c00010{left:264.420000px;}
.x7e_c00010{left:265.500000px;}
.xf3_c00010{left:267.420000px;}
.xbf_c00010{left:268.500000px;}
.x10e_c00010{left:270.000000px;}
.xc5_c00010{left:271.500000px;}
.x6_c00010{left:272.580000px;}
.x52_c00010{left:274.080000px;}
.x58_c00010{left:276.000000px;}
.x6a_c00010{left:277.080000px;}
.x29_c00010{left:280.500000px;}
.xc0_c00010{left:283.080000px;}
.x8c_c00010{left:286.500000px;}
.x1f_c00010{left:287.580000px;}
.xea_c00010{left:289.500000px;}
.x74_c00010{left:292.500000px;}
.x7_c00010{left:294.000000px;}
.x6b_c00010{left:295.500000px;}
.x7f_c00010{left:300.000000px;}
.x13_c00010{left:303.420000px;}
.xc6_c00010{left:306.000000px;}
.x47_c00010{left:307.500000px;}
.xde_c00010{left:309.420000px;}
.xee_c00010{left:310.500000px;}
.x3e_c00010{left:312.000000px;}
.xfe_c00010{left:315.000000px;}
.x102_c00010{left:316.500000px;}
.x2a_c00010{left:319.500000px;}
.x8_c00010{left:321.000000px;}
.x53_c00010{left:322.080000px;}
.x6c_c00010{left:324.000000px;}
.xa2_c00010{left:325.500000px;}
.x93_c00010{left:327.000000px;}
.x75_c00010{left:328.500000px;}
.xcb_c00010{left:330.420000px;}
.x20_c00010{left:331.500000px;}
.xb4_c00010{left:334.500000px;}
.x85_c00010{left:335.580000px;}
.xcf_c00010{left:337.500000px;}
.xe2_c00010{left:339.000000px;}
.x14_c00010{left:340.920000px;}
.xa9_c00010{left:343.500000px;}
.x99_c00010{left:345.000000px;}
.x59_c00010{left:346.920000px;}
.x62_c00010{left:348.000000px;}
.xb5_c00010{left:349.920000px;}
.x34_c00010{left:354.000000px;}
.x86_c00010{left:355.080000px;}
.xc7_c00010{left:357.000000px;}
.x8d_c00010{left:358.080000px;}
.x3f_c00010{left:360.000000px;}
.x7c_c00010{left:361.500000px;}
.x2b_c00010{left:363.420000px;}
.x9a_c00010{left:364.500000px;}
.xff_c00010{left:367.500000px;}
.xe3_c00010{left:369.420000px;}
.x10b_c00010{left:373.080000px;}
.x6d_c00010{left:375.000000px;}
.x54_c00010{left:376.500000px;}
.x8e_c00010{left:378.420000px;}
.x21_c00010{left:381.000000px;}
.x76_c00010{left:382.500000px;}
.x63_c00010{left:384.000000px;}
.x35_c00010{left:385.080000px;}
.x104_c00010{left:386.355000px;}
.x9_c00010{left:391.500000px;}
.xaa_c00010{left:392.580000px;}
.xb6_c00010{left:395.580000px;}
.xdf_c00010{left:399.420000px;}
.xef_c00010{left:400.500000px;}
.x77_c00010{left:402.420000px;}
.xe4_c00010{left:403.500000px;}
.x15_c00010{left:406.500000px;}
.x48_c00010{left:409.080000px;}
.xd0_c00010{left:411.000000px;}
.xc1_c00010{left:412.500000px;}
.x1_c00010{left:414.000000px;}
.xb7_c00010{left:415.920000px;}
.x9b_c00010{left:418.500000px;}
.x2c_c00010{left:420.420000px;}
.xf4_c00010{left:421.500000px;}
.x6e_c00010{left:424.500000px;}
.x80_c00010{left:426.000000px;}
.x49_c00010{left:429.000000px;}
.xa_c00010{left:433.080000px;}
.x64_c00010{left:435.000000px;}
.xd9_c00010{left:436.080000px;}
.x9c_c00010{left:439.500000px;}
.xd1_c00010{left:442.500000px;}
.xc8_c00010{left:444.000000px;}
.x87_c00010{left:445.500000px;}
.x5a_c00010{left:447.000000px;}
.x40_c00010{left:450.000000px;}
.xb1_c00010{left:451.500000px;}
.xf8_c00010{left:453.000000px;}
.xb_c00010{left:456.000000px;}
.x4a_c00010{left:457.080000px;}
.xfb_c00010{left:460.920000px;}
.x55_c00010{left:462.000000px;}
.xd3_c00010{left:465.000000px;}
.x36_c00010{left:466.500000px;}
.x94_c00010{left:469.080000px;}
.xab_c00010{left:475.920000px;}
.x105_c00010{left:479.580000px;}
.xe5_c00010{left:481.500000px;}
.xc_c00010{left:483.000000px;}
.xa3_c00010{left:484.500000px;}
.x37_c00010{left:486.420000px;}
.x10f_c00010{left:487.500000px;}
.xda_c00010{left:490.920000px;}
.x22_c00010{left:492.420000px;}
.x16_c00010{left:494.580000px;}
.x4b_c00010{left:496.500000px;}
.x6f_c00010{left:499.500000px;}
.xb8_c00010{left:501.420000px;}
.xc9_c00010{left:502.500000px;}
.xcc_c00010{left:508.080000px;}
.x81_c00010{left:509.580000px;}
.x2d_c00010{left:513.420000px;}
.xeb_c00010{left:514.500000px;}
.x88_c00010{left:516.420000px;}
.x65_c00010{left:517.500000px;}
.xdb_c00010{left:519.000000px;}
.xe6_c00010{left:520.080000px;}
.x9d_c00010{left:522.420000px;}
.x23_c00010{left:523.500000px;}
.x17_c00010{left:525.000000px;}
.x4c_c00010{left:528.000000px;}
.xa4_c00010{left:529.500000px;}
.x7d_c00010{left:531.420000px;}
.x78_c00010{left:532.920000px;}
.x41_c00010{left:534.420000px;}
.x70_c00010{left:535.500000px;}
.x38_c00010{left:536.580000px;}
.x95_c00010{left:538.500000px;}
.xc2_c00010{left:540.420000px;}
.xf9_c00010{left:541.500000px;}
.x2e_c00010{left:543.000000px;}
.xd_c00010{left:544.500000px;}
.xd4_c00010{left:547.080000px;}
.xb9_c00010{left:549.000000px;}
.x5b_c00010{left:550.920000px;}
.xb2_c00010{left:553.500000px;}
.xd2_c00010{left:555.000000px;}
.x39_c00010{left:558.000000px;}
.x56_c00010{left:561.000000px;}
.x18_c00010{left:562.080000px;}
.x9e_c00010{left:564.000000px;}
.x42_c00010{left:565.080000px;}
.xc3_c00010{left:567.000000px;}
.x3a_c00010{left:571.500000px;}
.xec_c00010{left:573.000000px;}
.xa5_c00010{left:574.500000px;}
.x82_c00010{left:576.000000px;}
.x4d_c00010{left:579.000000px;}
.x100_c00010{left:581.775000px;}
.x24_c00010{left:585.000000px;}
.xba_c00010{left:586.500000px;}
.xf0_c00010{left:588.420000px;}
.xac_c00010{left:589.500000px;}
.x19_c00010{left:590.580000px;}
.xe0_c00010{left:592.500000px;}
.xed_c00010{left:594.000000px;}
.x106_c00010{left:597.000000px;}
.x2f_c00010{left:598.080000px;}
.x4e_c00010{left:601.500000px;}
.x5c_c00010{left:604.920000px;}
.xfc_c00010{left:606.000000px;}
.x66_c00010{left:607.080000px;}
.x10c_c00010{left:609.000000px;}
.x1a_c00010{left:610.500000px;}
.x3b_c00010{left:611.580000px;}
.x8f_c00010{left:613.500000px;}
.xbb_c00010{left:615.000000px;}
.x71_c00010{left:616.080000px;}
.xe_c00010{left:618.420000px;}
.x107_c00010{left:619.500000px;}
.x25_c00010{left:622.080000px;}
.xf5_c00010{left:624.000000px;}
.x30_c00010{left:631.080000px;}
.x90_c00010{left:633.420000px;}
.x9f_c00010{left:634.500000px;}
.x89_c00010{left:637.080000px;}
.x72_c00010{left:639.000000px;}
.x43_c00010{left:640.500000px;}
.x103_c00010{left:642.000000px;}
.xe7_c00010{left:643.920000px;}
.x26_c00010{left:645.000000px;}
.xad_c00010{left:649.080000px;}
.x1b_c00010{left:651.000000px;}
.x3c_c00010{left:652.500000px;}
.xd5_c00010{left:653.580000px;}
.x83_c00010{left:655.500000px;}
.x10d_c00010{left:657.420000px;}
.x91_c00010{left:661.500000px;}
.x96_c00010{left:664.500000px;}
.x73_c00010{left:665.580000px;}
.x8a_c00010{left:667.920000px;}
.xe1_c00010{left:669.000000px;}
.x1c_c00010{left:670.500000px;}
.x110_c00010{left:672.000000px;}
.xb3_c00010{left:673.080000px;}
.xa6_c00010{left:675.000000px;}
.x67_c00010{left:676.500000px;}
.x4f_c00010{left:678.000000px;}
.xae_c00010{left:679.500000px;}
.xdc_c00010{left:681.000000px;}
.xbc_c00010{left:682.920000px;}
.x1d_c00010{left:685.500000px;}
.xa7_c00010{left:688.080000px;}
.x5d_c00010{left:689.580000px;}
.x68_c00010{left:693.420000px;}
.x79_c00010{left:694.920000px;}
.x108_c00010{left:697.500000px;}
.xf_c00010{left:699.420000px;}
.xfd_c00010{left:702.000000px;}
.xfa_c00010{left:703.500000px;}
.xa0_c00010{left:705.000000px;}
.xf6_c00010{left:706.080000px;}
.x50_c00010{left:708.000000px;}
.x5e_c00010{left:709.920000px;}
.xd6_c00010{left:714.000000px;}
.xcd_c00010{left:715.080000px;}
.x44_c00010{left:717.000000px;}
.x27_c00010{left:723.000000px;}
@media print{
.v1_c00010{vertical-align:-10.666667pt;}
.v0_c00010{vertical-align:0.000000pt;}
.ls0_c00010{letter-spacing:0.000000pt;}
.ws0_c00010{word-spacing:-15.012693pt;}
.ws1_c00010{word-spacing:-3.895254pt;}
.ws2_c00010{word-spacing:0.000000pt;}
._0_c00010{width:5.878464pt;}
.fs2_c00010{font-size:16.640000pt;}
.fs0_c00010{font-size:18.133333pt;}
.fs3_c00010{font-size:22.666667pt;}
.fs1_c00010{font-size:25.706667pt;}
.fs5_c00010{font-size:28.746667pt;}
.fs4_c00010{font-size:31.733333pt;}
.y0_c00010{bottom:0.000000pt;}
.yda_c00010{bottom:226.440000pt;}
.yd6_c00010{bottom:227.026667pt;}
.yd8_c00010{bottom:227.226667pt;}
.yd9_c00010{bottom:227.400000pt;}
.yd7_c00010{bottom:228.360000pt;}
.yd0_c00010{bottom:243.773333pt;}
.yd5_c00010{bottom:244.933333pt;}
.yd1_c00010{bottom:245.306667pt;}
.yd2_c00010{bottom:245.693333pt;}
.yd4_c00010{bottom:245.893333pt;}
.yd3_c00010{bottom:246.640000pt;}
.yca_c00010{bottom:261.106667pt;}
.ycc_c00010{bottom:261.306667pt;}
.ycd_c00010{bottom:262.066667pt;}
.ycf_c00010{bottom:262.266667pt;}
.ycb_c00010{bottom:263.026667pt;}
.yce_c00010{bottom:263.226667pt;}
.yc5_c00010{bottom:278.440000pt;}
.yc8_c00010{bottom:279.400000pt;}
.yc7_c00010{bottom:279.773333pt;}
.yc6_c00010{bottom:280.360000pt;}
.yc9_c00010{bottom:281.306667pt;}
.yc1_c00010{bottom:294.440000pt;}
.yc2_c00010{bottom:297.106667pt;}
.yc0_c00010{bottom:297.693333pt;}
.yc4_c00010{bottom:299.026667pt;}
.yc3_c00010{bottom:299.226667pt;}
.ybe_c00010{bottom:314.440000pt;}
.ybb_c00010{bottom:315.026667pt;}
.ybd_c00010{bottom:315.400000pt;}
.ybf_c00010{bottom:315.973333pt;}
.ybc_c00010{bottom:316.360000pt;}
.yba_c00010{bottom:331.773333pt;}
.yb7_c00010{bottom:332.360000pt;}
.yb6_c00010{bottom:332.560000pt;}
.yb8_c00010{bottom:333.693333pt;}
.yb9_c00010{bottom:333.893333pt;}
.yb3_c00010{bottom:349.106667pt;}
.yb0_c00010{bottom:349.693333pt;}
.yb2_c00010{bottom:349.893333pt;}
.yb4_c00010{bottom:350.440000pt;}
.yb1_c00010{bottom:351.026667pt;}
.yb5_c00010{bottom:351.973333pt;}
.yaf_c00010{bottom:365.693333pt;}
.yad_c00010{bottom:368.360000pt;}
.yae_c00010{bottom:369.693333pt;}
.yab_c00010{bottom:383.773333pt;}
.ya8_c00010{bottom:385.106667pt;}
.ya5_c00010{bottom:385.693333pt;}
.yac_c00010{bottom:385.893333pt;}
.ya7_c00010{bottom:386.066667pt;}
.ya6_c00010{bottom:386.640000pt;}
.yaa_c00010{bottom:387.026667pt;}
.ya9_c00010{bottom:387.973333pt;}
.ya3_c00010{bottom:400.360000pt;}
.y9e_c00010{bottom:401.106667pt;}
.y9f_c00010{bottom:402.440000pt;}
.y9d_c00010{bottom:403.026667pt;}
.ya0_c00010{bottom:403.226667pt;}
.ya1_c00010{bottom:403.400000pt;}
.ya4_c00010{bottom:403.973333pt;}
.ya2_c00010{bottom:404.360000pt;}
.y9c_c00010{bottom:417.693333pt;}
.y98_c00010{bottom:419.773333pt;}
.y97_c00010{bottom:420.360000pt;}
.y9a_c00010{bottom:420.933333pt;}
.y99_c00010{bottom:421.693333pt;}
.y9b_c00010{bottom:422.640000pt;}
.y96_c00010{bottom:436.360000pt;}
.y92_c00010{bottom:437.106667pt;}
.y90_c00010{bottom:437.693333pt;}
.y95_c00010{bottom:438.440000pt;}
.y93_c00010{bottom:438.640000pt;}
.y91_c00010{bottom:439.026667pt;}
.y94_c00010{bottom:440.360000pt;}
.y8f_c00010{bottom:453.106667pt;}
.y8d_c00010{bottom:454.440000pt;}
.y8a_c00010{bottom:455.226667pt;}
.y8c_c00010{bottom:455.973333pt;}
.y8b_c00010{bottom:456.360000pt;}
.y8e_c00010{bottom:457.693333pt;}
.y86_c00010{bottom:470.066667pt;}
.y85_c00010{bottom:473.693333pt;}
.y89_c00010{bottom:473.893333pt;}
.y87_c00010{bottom:474.640000pt;}
.y88_c00010{bottom:475.026667pt;}
.y84_c00010{bottom:489.693333pt;}
.y83_c00010{bottom:490.440000pt;}
.y7f_c00010{bottom:491.026667pt;}
.y82_c00010{bottom:491.226667pt;}
.y80_c00010{bottom:491.400000pt;}
.y81_c00010{bottom:492.360000pt;}
.y77_c00010{bottom:506.440000pt;}
.y79_c00010{bottom:507.400000pt;}
.y7e_c00010{bottom:507.773333pt;}
.y78_c00010{bottom:508.360000pt;}
.y7b_c00010{bottom:508.560000pt;}
.y7a_c00010{bottom:509.306667pt;}
.y7c_c00010{bottom:509.693333pt;}
.y7d_c00010{bottom:510.640000pt;}
.y70_c00010{bottom:523.773333pt;}
.y73_c00010{bottom:524.733333pt;}
.y75_c00010{bottom:525.106667pt;}
.y6f_c00010{bottom:525.693333pt;}
.y72_c00010{bottom:525.893333pt;}
.y71_c00010{bottom:526.640000pt;}
.y74_c00010{bottom:527.026667pt;}
.y76_c00010{bottom:527.973333pt;}
.y6a_c00010{bottom:541.693333pt;}
.y6e_c00010{bottom:542.066667pt;}
.y6d_c00010{bottom:542.440000pt;}
.y69_c00010{bottom:543.026667pt;}
.y6c_c00010{bottom:543.973333pt;}
.y6b_c00010{bottom:544.360000pt;}
.y68_c00010{bottom:559.773333pt;}
.y63_c00010{bottom:577.106667pt;}
.y64_c00010{bottom:577.893333pt;}
.y67_c00010{bottom:578.640000pt;}
.y66_c00010{bottom:579.026667pt;}
.y65_c00010{bottom:579.973333pt;}
.y62_c00010{bottom:592.360000pt;}
.y5e_c00010{bottom:594.440000pt;}
.y61_c00010{bottom:595.226667pt;}
.y60_c00010{bottom:596.360000pt;}
.y5f_c00010{bottom:597.306667pt;}
.y5c_c00010{bottom:611.773333pt;}
.y5d_c00010{bottom:613.693333pt;}
.y58_c00010{bottom:631.026667pt;}
.y59_c00010{bottom:631.226667pt;}
.y5b_c00010{bottom:631.973333pt;}
.y5a_c00010{bottom:632.360000pt;}
.y52_c00010{bottom:646.440000pt;}
.y50_c00010{bottom:647.226667pt;}
.y55_c00010{bottom:647.400000pt;}
.y54_c00010{bottom:647.773333pt;}
.y57_c00010{bottom:648.360000pt;}
.y53_c00010{bottom:648.560000pt;}
.y51_c00010{bottom:649.306667pt;}
.y56_c00010{bottom:649.693333pt;}
.y4c_c00010{bottom:664.733333pt;}
.y4d_c00010{bottom:665.106667pt;}
.y4e_c00010{bottom:665.693333pt;}
.y4f_c00010{bottom:667.026667pt;}
.y4b_c00010{bottom:680.360000pt;}
.y4a_c00010{bottom:682.440000pt;}
.y49_c00010{bottom:683.400000pt;}
.y48_c00010{bottom:684.360000pt;}
.y47_c00010{bottom:699.773333pt;}
.y46_c00010{bottom:700.733333pt;}
.y45_c00010{bottom:701.306667pt;}
.y44_c00010{bottom:701.693333pt;}
.y40_c00010{bottom:717.106667pt;}
.y3f_c00010{bottom:717.693333pt;}
.y43_c00010{bottom:717.893333pt;}
.y42_c00010{bottom:718.640000pt;}
.y41_c00010{bottom:719.026667pt;}
.y3d_c00010{bottom:734.440000pt;}
.y3b_c00010{bottom:735.226667pt;}
.y3c_c00010{bottom:736.360000pt;}
.y3e_c00010{bottom:737.306667pt;}
.y39_c00010{bottom:751.773333pt;}
.y3a_c00010{bottom:752.733333pt;}
.y38_c00010{bottom:753.693333pt;}
.y35_c00010{bottom:769.106667pt;}
.y37_c00010{bottom:770.066667pt;}
.y32_c00010{bottom:770.640000pt;}
.y36_c00010{bottom:771.026667pt;}
.y34_c00010{bottom:771.226667pt;}
.y33_c00010{bottom:771.973333pt;}
.y2d_c00010{bottom:786.440000pt;}
.y2f_c00010{bottom:787.400000pt;}
.y2e_c00010{bottom:788.360000pt;}
.y30_c00010{bottom:789.306667pt;}
.y31_c00010{bottom:789.693333pt;}
.y27_c00010{bottom:804.560000pt;}
.y29_c00010{bottom:805.106667pt;}
.y28_c00010{bottom:805.693333pt;}
.y2a_c00010{bottom:805.893333pt;}
.y2c_c00010{bottom:806.066667pt;}
.y2b_c00010{bottom:807.026667pt;}
.y24_c00010{bottom:822.440000pt;}
.y25_c00010{bottom:823.226667pt;}
.y26_c00010{bottom:824.360000pt;}
.y1e_c00010{bottom:837.693333pt;}
.y21_c00010{bottom:839.773333pt;}
.y1d_c00010{bottom:840.360000pt;}
.y22_c00010{bottom:840.560000pt;}
.y23_c00010{bottom:840.733333pt;}
.y1f_c00010{bottom:841.693333pt;}
.y20_c00010{bottom:842.640000pt;}
.y1a_c00010{bottom:857.106667pt;}
.y1b_c00010{bottom:857.893333pt;}
.y1c_c00010{bottom:859.026667pt;}
.y15_c00010{bottom:874.440000pt;}
.y14_c00010{bottom:875.026667pt;}
.y18_c00010{bottom:875.226667pt;}
.y17_c00010{bottom:875.400000pt;}
.y16_c00010{bottom:876.360000pt;}
.y19_c00010{bottom:876.560000pt;}
.y10_c00010{bottom:891.773333pt;}
.y13_c00010{bottom:893.306667pt;}
.y11_c00010{bottom:893.693333pt;}
.y12_c00010{bottom:894.640000pt;}
.ye_c00010{bottom:909.106667pt;}
.yf_c00010{bottom:909.893333pt;}
.yd_c00010{bottom:910.066667pt;}
.yc_c00010{bottom:911.026667pt;}
.y7_c00010{bottom:926.266667pt;}
.y9_c00010{bottom:926.440000pt;}
.y8_c00010{bottom:927.973333pt;}
.ya_c00010{bottom:928.360000pt;}
.yb_c00010{bottom:928.560000pt;}
.y6_c00010{bottom:943.773333pt;}
.y5_c00010{bottom:945.106667pt;}
.y2_c00010{bottom:945.693333pt;}
.y3_c00010{bottom:945.893333pt;}
.y4_c00010{bottom:946.640000pt;}
.y1_c00010{bottom:979.600000pt;}
.h3_c00010{height:20.466875pt;}
.h1_c00010{height:22.303646pt;}
.h4_c00010{height:27.879557pt;}
.h2_c00010{height:31.618698pt;}
.h6_c00010{height:35.357839pt;}
.h5_c00010{height:39.031380pt;}
.h0_c00010{height:1186.666667pt;}
.w0_c00010{width:782.666667pt;}
.x0_c00010{left:0.000000pt;}
.x5f_c00010{left:134.666667pt;}
.x2_c00010{left:136.000000pt;}
.xf1_c00010{left:148.000000pt;}
.xbd_c00010{left:149.333333pt;}
.x3_c00010{left:150.666667pt;}
.x7a_c00010{left:152.000000pt;}
.x31_c00010{left:153.333333pt;}
.x57_c00010{left:155.040000pt;}
.xf7_c00010{left:156.373333pt;}
.xe8_c00010{left:157.333333pt;}
.xd7_c00010{left:163.040000pt;}
.xc4_c00010{left:165.333333pt;}
.x7b_c00010{left:166.666667pt;}
.x97_c00010{left:168.000000pt;}
.x4_c00010{left:171.040000pt;}
.x10_c00010{left:173.333333pt;}
.x84_c00010{left:175.626667pt;}
.x69_c00010{left:177.333333pt;}
.x45_c00010{left:178.293333pt;}
.xdd_c00010{left:180.000000pt;}
.x28_c00010{left:181.333333pt;}
.x60_c00010{left:182.666667pt;}
.x1e_c00010{left:185.706667pt;}
.x109_c00010{left:188.000000pt;}
.xbe_c00010{left:189.333333pt;}
.x11_c00010{left:191.040000pt;}
.xaf_c00010{left:193.333333pt;}
.x8b_c00010{left:194.666667pt;}
.x3d_c00010{left:196.373333pt;}
.x5_c00010{left:197.706667pt;}
.xce_c00010{left:199.040000pt;}
.x98_c00010{left:201.333333pt;}
.x32_c00010{left:203.626667pt;}
.xd8_c00010{left:205.333333pt;}
.x92_c00010{left:207.040000pt;}
.x101_c00010{left:209.706667pt;}
.xf2_c00010{left:210.666667pt;}
.x51_c00010{left:217.333333pt;}
.x46_c00010{left:219.040000pt;}
.xb0_c00010{left:221.333333pt;}
.x10a_c00010{left:222.666667pt;}
.xa1_c00010{left:224.373333pt;}
.xca_c00010{left:225.333333pt;}
.x61_c00010{left:226.666667pt;}
.x12_c00010{left:228.000000pt;}
.xa8_c00010{left:228.960000pt;}
.x33_c00010{left:234.093333pt;}
.xe9_c00010{left:235.040000pt;}
.x7e_c00010{left:236.000000pt;}
.xf3_c00010{left:237.706667pt;}
.xbf_c00010{left:238.666667pt;}
.x10e_c00010{left:240.000000pt;}
.xc5_c00010{left:241.333333pt;}
.x6_c00010{left:242.293333pt;}
.x52_c00010{left:243.626667pt;}
.x58_c00010{left:245.333333pt;}
.x6a_c00010{left:246.293333pt;}
.x29_c00010{left:249.333333pt;}
.xc0_c00010{left:251.626667pt;}
.x8c_c00010{left:254.666667pt;}
.x1f_c00010{left:255.626667pt;}
.xea_c00010{left:257.333333pt;}
.x74_c00010{left:260.000000pt;}
.x7_c00010{left:261.333333pt;}
.x6b_c00010{left:262.666667pt;}
.x7f_c00010{left:266.666667pt;}
.x13_c00010{left:269.706667pt;}
.xc6_c00010{left:272.000000pt;}
.x47_c00010{left:273.333333pt;}
.xde_c00010{left:275.040000pt;}
.xee_c00010{left:276.000000pt;}
.x3e_c00010{left:277.333333pt;}
.xfe_c00010{left:280.000000pt;}
.x102_c00010{left:281.333333pt;}
.x2a_c00010{left:284.000000pt;}
.x8_c00010{left:285.333333pt;}
.x53_c00010{left:286.293333pt;}
.x6c_c00010{left:288.000000pt;}
.xa2_c00010{left:289.333333pt;}
.x93_c00010{left:290.666667pt;}
.x75_c00010{left:292.000000pt;}
.xcb_c00010{left:293.706667pt;}
.x20_c00010{left:294.666667pt;}
.xb4_c00010{left:297.333333pt;}
.x85_c00010{left:298.293333pt;}
.xcf_c00010{left:300.000000pt;}
.xe2_c00010{left:301.333333pt;}
.x14_c00010{left:303.040000pt;}
.xa9_c00010{left:305.333333pt;}
.x99_c00010{left:306.666667pt;}
.x59_c00010{left:308.373333pt;}
.x62_c00010{left:309.333333pt;}
.xb5_c00010{left:311.040000pt;}
.x34_c00010{left:314.666667pt;}
.x86_c00010{left:315.626667pt;}
.xc7_c00010{left:317.333333pt;}
.x8d_c00010{left:318.293333pt;}
.x3f_c00010{left:320.000000pt;}
.x7c_c00010{left:321.333333pt;}
.x2b_c00010{left:323.040000pt;}
.x9a_c00010{left:324.000000pt;}
.xff_c00010{left:326.666667pt;}
.xe3_c00010{left:328.373333pt;}
.x10b_c00010{left:331.626667pt;}
.x6d_c00010{left:333.333333pt;}
.x54_c00010{left:334.666667pt;}
.x8e_c00010{left:336.373333pt;}
.x21_c00010{left:338.666667pt;}
.x76_c00010{left:340.000000pt;}
.x63_c00010{left:341.333333pt;}
.x35_c00010{left:342.293333pt;}
.x104_c00010{left:343.426667pt;}
.x9_c00010{left:348.000000pt;}
.xaa_c00010{left:348.960000pt;}
.xb6_c00010{left:351.626667pt;}
.xdf_c00010{left:355.040000pt;}
.xef_c00010{left:356.000000pt;}
.x77_c00010{left:357.706667pt;}
.xe4_c00010{left:358.666667pt;}
.x15_c00010{left:361.333333pt;}
.x48_c00010{left:363.626667pt;}
.xd0_c00010{left:365.333333pt;}
.xc1_c00010{left:366.666667pt;}
.x1_c00010{left:368.000000pt;}
.xb7_c00010{left:369.706667pt;}
.x9b_c00010{left:372.000000pt;}
.x2c_c00010{left:373.706667pt;}
.xf4_c00010{left:374.666667pt;}
.x6e_c00010{left:377.333333pt;}
.x80_c00010{left:378.666667pt;}
.x49_c00010{left:381.333333pt;}
.xa_c00010{left:384.960000pt;}
.x64_c00010{left:386.666667pt;}
.xd9_c00010{left:387.626667pt;}
.x9c_c00010{left:390.666667pt;}
.xd1_c00010{left:393.333333pt;}
.xc8_c00010{left:394.666667pt;}
.x87_c00010{left:396.000000pt;}
.x5a_c00010{left:397.333333pt;}
.x40_c00010{left:400.000000pt;}
.xb1_c00010{left:401.333333pt;}
.xf8_c00010{left:402.666667pt;}
.xb_c00010{left:405.333333pt;}
.x4a_c00010{left:406.293333pt;}
.xfb_c00010{left:409.706667pt;}
.x55_c00010{left:410.666667pt;}
.xd3_c00010{left:413.333333pt;}
.x36_c00010{left:414.666667pt;}
.x94_c00010{left:416.960000pt;}
.xab_c00010{left:423.040000pt;}
.x105_c00010{left:426.293333pt;}
.xe5_c00010{left:428.000000pt;}
.xc_c00010{left:429.333333pt;}
.xa3_c00010{left:430.666667pt;}
.x37_c00010{left:432.373333pt;}
.x10f_c00010{left:433.333333pt;}
.xda_c00010{left:436.373333pt;}
.x22_c00010{left:437.706667pt;}
.x16_c00010{left:439.626667pt;}
.x4b_c00010{left:441.333333pt;}
.x6f_c00010{left:444.000000pt;}
.xb8_c00010{left:445.706667pt;}
.xc9_c00010{left:446.666667pt;}
.xcc_c00010{left:451.626667pt;}
.x81_c00010{left:452.960000pt;}
.x2d_c00010{left:456.373333pt;}
.xeb_c00010{left:457.333333pt;}
.x88_c00010{left:459.040000pt;}
.x65_c00010{left:460.000000pt;}
.xdb_c00010{left:461.333333pt;}
.xe6_c00010{left:462.293333pt;}
.x9d_c00010{left:464.373333pt;}
.x23_c00010{left:465.333333pt;}
.x17_c00010{left:466.666667pt;}
.x4c_c00010{left:469.333333pt;}
.xa4_c00010{left:470.666667pt;}
.x7d_c00010{left:472.373333pt;}
.x78_c00010{left:473.706667pt;}
.x41_c00010{left:475.040000pt;}
.x70_c00010{left:476.000000pt;}
.x38_c00010{left:476.960000pt;}
.x95_c00010{left:478.666667pt;}
.xc2_c00010{left:480.373333pt;}
.xf9_c00010{left:481.333333pt;}
.x2e_c00010{left:482.666667pt;}
.xd_c00010{left:484.000000pt;}
.xd4_c00010{left:486.293333pt;}
.xb9_c00010{left:488.000000pt;}
.x5b_c00010{left:489.706667pt;}
.xb2_c00010{left:492.000000pt;}
.xd2_c00010{left:493.333333pt;}
.x39_c00010{left:496.000000pt;}
.x56_c00010{left:498.666667pt;}
.x18_c00010{left:499.626667pt;}
.x9e_c00010{left:501.333333pt;}
.x42_c00010{left:502.293333pt;}
.xc3_c00010{left:504.000000pt;}
.x3a_c00010{left:508.000000pt;}
.xec_c00010{left:509.333333pt;}
.xa5_c00010{left:510.666667pt;}
.x82_c00010{left:512.000000pt;}
.x4d_c00010{left:514.666667pt;}
.x100_c00010{left:517.133333pt;}
.x24_c00010{left:520.000000pt;}
.xba_c00010{left:521.333333pt;}
.xf0_c00010{left:523.040000pt;}
.xac_c00010{left:524.000000pt;}
.x19_c00010{left:524.960000pt;}
.xe0_c00010{left:526.666667pt;}
.xed_c00010{left:528.000000pt;}
.x106_c00010{left:530.666667pt;}
.x2f_c00010{left:531.626667pt;}
.x4e_c00010{left:534.666667pt;}
.x5c_c00010{left:537.706667pt;}
.xfc_c00010{left:538.666667pt;}
.x66_c00010{left:539.626667pt;}
.x10c_c00010{left:541.333333pt;}
.x1a_c00010{left:542.666667pt;}
.x3b_c00010{left:543.626667pt;}
.x8f_c00010{left:545.333333pt;}
.xbb_c00010{left:546.666667pt;}
.x71_c00010{left:547.626667pt;}
.xe_c00010{left:549.706667pt;}
.x107_c00010{left:550.666667pt;}
.x25_c00010{left:552.960000pt;}
.xf5_c00010{left:554.666667pt;}
.x30_c00010{left:560.960000pt;}
.x90_c00010{left:563.040000pt;}
.x9f_c00010{left:564.000000pt;}
.x89_c00010{left:566.293333pt;}
.x72_c00010{left:568.000000pt;}
.x43_c00010{left:569.333333pt;}
.x103_c00010{left:570.666667pt;}
.xe7_c00010{left:572.373333pt;}
.x26_c00010{left:573.333333pt;}
.xad_c00010{left:576.960000pt;}
.x1b_c00010{left:578.666667pt;}
.x3c_c00010{left:580.000000pt;}
.xd5_c00010{left:580.960000pt;}
.x83_c00010{left:582.666667pt;}
.x10d_c00010{left:584.373333pt;}
.x91_c00010{left:588.000000pt;}
.x96_c00010{left:590.666667pt;}
.x73_c00010{left:591.626667pt;}
.x8a_c00010{left:593.706667pt;}
.xe1_c00010{left:594.666667pt;}
.x1c_c00010{left:596.000000pt;}
.x110_c00010{left:597.333333pt;}
.xb3_c00010{left:598.293333pt;}
.xa6_c00010{left:600.000000pt;}
.x67_c00010{left:601.333333pt;}
.x4f_c00010{left:602.666667pt;}
.xae_c00010{left:604.000000pt;}
.xdc_c00010{left:605.333333pt;}
.xbc_c00010{left:607.040000pt;}
.x1d_c00010{left:609.333333pt;}
.xa7_c00010{left:611.626667pt;}
.x5d_c00010{left:612.960000pt;}
.x68_c00010{left:616.373333pt;}
.x79_c00010{left:617.706667pt;}
.x108_c00010{left:620.000000pt;}
.xf_c00010{left:621.706667pt;}
.xfd_c00010{left:624.000000pt;}
.xfa_c00010{left:625.333333pt;}
.xa0_c00010{left:626.666667pt;}
.xf6_c00010{left:627.626667pt;}
.x50_c00010{left:629.333333pt;}
.x5e_c00010{left:631.040000pt;}
.xd6_c00010{left:634.666667pt;}
.xcd_c00010{left:635.626667pt;}
.x44_c00010{left:637.333333pt;}
.x27_c00010{left:642.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_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_ef8021435149be3428a03f78.woff2')format("woff");}.ff1_c00011{font-family:ff1_c00011;line-height:1.688965;font-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_c00011{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m24_c00011{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m3_c00011{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m5f_c00011{transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);}
.m5b_c00011{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m65_c00011{transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);}
.m3f_c00011{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m79_c00011{transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);}
.m73_c00011{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m75_c00011{transform:matrix(0.406120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406120,0.000000,0.000000,0.250000,0,0);}
.m4b_c00011{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m78_c00011{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m2b_c00011{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.m5e_c00011{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.m41_c00011{transform:matrix(0.412960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412960,0.000000,0.000000,0.250000,0,0);}
.m19_c00011{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m36_c00011{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m45_c00011{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m10_c00011{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m68_c00011{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m3c_c00011{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m6e_c00011{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m46_c00011{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m2_c00011{transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);}
.m6f_c00011{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m4c_c00011{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m29_c00011{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m54_c00011{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m5a_c00011{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m3e_c00011{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.m1b_c00011{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m9_c00011{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m20_c00011{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m49_c00011{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m4d_c00011{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m16_c00011{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.m5c_c00011{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m56_c00011{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m27_c00011{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.m6a_c00011{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m7c_c00011{transform:matrix(0.449170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449170,0.000000,0.000000,0.250000,0,0);}
.m3a_c00011{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m2a_c00011{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.m6d_c00011{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m7b_c00011{transform:matrix(0.460581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460581,0.000000,0.000000,0.250000,0,0);}
.m7a_c00011{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m34_c00011{transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);}
.m51_c00011{transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);}
.m66_c00011{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m70_c00011{transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);}
.m72_c00011{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m26_c00011{transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);}
.md_c00011{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.me_c00011{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m38_c00011{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m23_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);}
.m3b_c00011{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m2f_c00011{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m47_c00011{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m15_c00011{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m42_c00011{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m77_c00011{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m1d_c00011{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m31_c00011{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m5d_c00011{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m59_c00011{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m74_c00011{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m63_c00011{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m3d_c00011{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mc_c00011{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m5_c00011{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m1e_c00011{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m12_c00011{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m4f_c00011{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m7_c00011{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m44_c00011{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m1c_c00011{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m32_c00011{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m67_c00011{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m50_c00011{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m52_c00011{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m30_c00011{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m4a_c00011{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m22_c00011{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m14_c00011{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m6b_c00011{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m58_c00011{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m71_c00011{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m28_c00011{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m6_c00011{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m13_c00011{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m17_c00011{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m11_c00011{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m1a_c00011{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m2c_c00011{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m61_c00011{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m8_c00011{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m18_c00011{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m48_c00011{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m39_c00011{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m76_c00011{transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);}
.m4e_c00011{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m55_c00011{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m6c_c00011{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m37_c00011{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m53_c00011{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_c00011{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.ma_c00011{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m57_c00011{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m35_c00011{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m2d_c00011{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m40_c00011{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.m21_c00011{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m1_c00011{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m60_c00011{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mb_c00011{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m64_c00011{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m43_c00011{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m4_c00011{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m33_c00011{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m25_c00011{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m62_c00011{transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);}
.m2e_c00011{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m1f_c00011{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m69_c00011{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.v0_c00011{vertical-align:0.000000px;}
.ls0_c00011{letter-spacing:0.000000px;}
.sc__c00011{text-shadow:none;}
.sc0_c00011{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00011{-webkit-text-stroke:0px transparent;}
.sc0_c00011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00011{word-spacing:0.000000px;}
.fc0_c00011{color:transparent;}
.fs3_c00011{font-size:18.720000px;}
.fs0_c00011{font-size:20.400000px;}
.fs5_c00011{font-size:25.500000px;}
.fs4_c00011{font-size:28.920000px;}
.fs1_c00011{font-size:32.340000px;}
.fs2_c00011{font-size:35.700000px;}
.fs6_c00011{font-size:39.120000px;}
.y0_c00011{bottom:0.000000px;}
.y69_c00011{bottom:688.905000px;}
.y68_c00011{bottom:705.825000px;}
.y66_c00011{bottom:709.245000px;}
.y67_c00011{bottom:709.905000px;}
.y64_c00011{bottom:748.470000px;}
.y65_c00011{bottom:748.905000px;}
.y63_c00011{bottom:765.405000px;}
.y5e_c00011{bottom:767.325000px;}
.y5d_c00011{bottom:767.745000px;}
.y5f_c00011{bottom:768.405000px;}
.y61_c00011{bottom:768.630000px;}
.y62_c00011{bottom:769.470000px;}
.y60_c00011{bottom:769.905000px;}
.y59_c00011{bottom:785.745000px;}
.y5c_c00011{bottom:786.825000px;}
.y57_c00011{bottom:787.245000px;}
.y5a_c00011{bottom:787.905000px;}
.y58_c00011{bottom:788.130000px;}
.y5b_c00011{bottom:788.970000px;}
.y56_c00011{bottom:790.905000px;}
.y54_c00011{bottom:805.245000px;}
.y51_c00011{bottom:805.680000px;}
.y53_c00011{bottom:807.405000px;}
.y55_c00011{bottom:807.630000px;}
.y52_c00011{bottom:808.470000px;}
.y50_c00011{bottom:810.405000px;}
.y4d_c00011{bottom:826.245000px;}
.y4e_c00011{bottom:827.130000px;}
.y4f_c00011{bottom:827.970000px;}
.y4c_c00011{bottom:828.405000px;}
.y4b_c00011{bottom:829.905000px;}
.y49_c00011{bottom:844.905000px;}
.y4a_c00011{bottom:845.745000px;}
.y48_c00011{bottom:847.905000px;}
.y47_c00011{bottom:849.405000px;}
.y41_c00011{bottom:862.905000px;}
.y42_c00011{bottom:865.245000px;}
.y46_c00011{bottom:866.325000px;}
.y43_c00011{bottom:866.970000px;}
.y45_c00011{bottom:867.405000px;}
.y40_c00011{bottom:867.630000px;}
.y44_c00011{bottom:868.470000px;}
.y3f_c00011{bottom:868.905000px;}
.y3e_c00011{bottom:886.905000px;}
.y3d_c00011{bottom:888.405000px;}
.y3a_c00011{bottom:904.245000px;}
.y37_c00011{bottom:904.905000px;}
.y39_c00011{bottom:905.745000px;}
.y3c_c00011{bottom:905.970000px;}
.y3b_c00011{bottom:906.405000px;}
.y38_c00011{bottom:907.470000px;}
.y33_c00011{bottom:922.905000px;}
.y34_c00011{bottom:923.745000px;}
.y30_c00011{bottom:924.180000px;}
.y36_c00011{bottom:925.245000px;}
.y31_c00011{bottom:925.905000px;}
.y35_c00011{bottom:926.130000px;}
.y32_c00011{bottom:926.970000px;}
.y2d_c00011{bottom:942.825000px;}
.y2b_c00011{bottom:943.245000px;}
.y2c_c00011{bottom:944.130000px;}
.y29_c00011{bottom:944.745000px;}
.y2e_c00011{bottom:944.970000px;}
.y2a_c00011{bottom:945.405000px;}
.y2f_c00011{bottom:946.470000px;}
.y24_c00011{bottom:962.745000px;}
.y26_c00011{bottom:963.825000px;}
.y21_c00011{bottom:964.245000px;}
.y28_c00011{bottom:964.470000px;}
.y23_c00011{bottom:964.905000px;}
.y25_c00011{bottom:965.130000px;}
.y27_c00011{bottom:965.970000px;}
.y22_c00011{bottom:966.405000px;}
.y1c_c00011{bottom:982.245000px;}
.y1e_c00011{bottom:983.745000px;}
.y20_c00011{bottom:984.405000px;}
.y1f_c00011{bottom:984.630000px;}
.y1d_c00011{bottom:985.905000px;}
.y1b_c00011{bottom:986.325000px;}
.y17_c00011{bottom:1001.745000px;}
.y19_c00011{bottom:1002.825000px;}
.y16_c00011{bottom:1003.905000px;}
.y18_c00011{bottom:1004.130000px;}
.y1a_c00011{bottom:1004.970000px;}
.y15_c00011{bottom:1006.470000px;}
.y10_c00011{bottom:1021.245000px;}
.y13_c00011{bottom:1022.745000px;}
.y11_c00011{bottom:1023.405000px;}
.y12_c00011{bottom:1023.630000px;}
.y14_c00011{bottom:1024.905000px;}
.yf_c00011{bottom:1026.405000px;}
.ya_c00011{bottom:1042.245000px;}
.ye_c00011{bottom:1042.905000px;}
.yb_c00011{bottom:1043.130000px;}
.yd_c00011{bottom:1043.325000px;}
.yc_c00011{bottom:1044.405000px;}
.y9_c00011{bottom:1045.905000px;}
.y7_c00011{bottom:1060.470000px;}
.y3_c00011{bottom:1061.745000px;}
.y4_c00011{bottom:1062.630000px;}
.y8_c00011{bottom:1063.470000px;}
.y5_c00011{bottom:1063.905000px;}
.y6_c00011{bottom:1064.130000px;}
.y2_c00011{bottom:1064.325000px;}
.y1_c00011{bottom:1102.050000px;}
.h4_c00011{height:23.025234px;}
.h1_c00011{height:25.091602px;}
.h6_c00011{height:31.364502px;}
.h5_c00011{height:35.571035px;}
.h2_c00011{height:39.777568px;}
.h3_c00011{height:43.910303px;}
.h7_c00011{height:48.116836px;}
.h0_c00011{height:1335.000000px;}
.w0_c00011{width:880.500000px;}
.x0_c00011{left:0.000000px;}
.x3_c00011{left:153.000000px;}
.x73_c00011{left:154.080000px;}
.x62_c00011{left:169.500000px;}
.x56_c00011{left:178.500000px;}
.x61_c00011{left:181.920000px;}
.x12_c00011{left:183.420000px;}
.x24_c00011{left:186.000000px;}
.x6c_c00011{left:190.500000px;}
.x4_c00011{left:193.275000px;}
.x63_c00011{left:198.000000px;}
.x57_c00011{left:199.920000px;}
.x84_c00011{left:202.080000px;}
.x37_c00011{left:205.920000px;}
.x41_c00011{left:208.500000px;}
.x93_c00011{left:211.080000px;}
.x2d_c00011{left:223.080000px;}
.x4d_c00011{left:225.000000px;}
.x96_c00011{left:226.080000px;}
.x5_c00011{left:228.000000px;}
.x94_c00011{left:230.580000px;}
.x7c_c00011{left:236.580000px;}
.x6d_c00011{left:238.500000px;}
.x58_c00011{left:241.500000px;}
.x8c_c00011{left:243.420000px;}
.x7d_c00011{left:256.920000px;}
.x95_c00011{left:258.000000px;}
.x6_c00011{left:259.080000px;}
.x1c_c00011{left:261.000000px;}
.x42_c00011{left:262.500000px;}
.x13_c00011{left:265.500000px;}
.x4e_c00011{left:271.500000px;}
.x38_c00011{left:282.000000px;}
.x43_c00011{left:283.080000px;}
.x74_c00011{left:285.000000px;}
.x25_c00011{left:286.080000px;}
.x6e_c00011{left:288.000000px;}
.x4f_c00011{left:292.920000px;}
.x14_c00011{left:298.920000px;}
.x39_c00011{left:301.080000px;}
.x7_c00011{left:305.580000px;}
.x59_c00011{left:308.580000px;}
.x44_c00011{left:310.500000px;}
.x7e_c00011{left:311.580000px;}
.x75_c00011{left:316.920000px;}
.x64_c00011{left:319.500000px;}
.x50_c00011{left:325.500000px;}
.x7f_c00011{left:331.920000px;}
.x2e_c00011{left:334.080000px;}
.x8_c00011{left:336.420000px;}
.x8d_c00011{left:337.500000px;}
.x65_c00011{left:339.000000px;}
.x15_c00011{left:344.580000px;}
.x1d_c00011{left:348.000000px;}
.x2f_c00011{left:352.920000px;}
.x8e_c00011{left:355.500000px;}
.x80_c00011{left:358.500000px;}
.x51_c00011{left:360.420000px;}
.x9_c00011{left:363.000000px;}
.x45_c00011{left:366.000000px;}
.x6f_c00011{left:367.500000px;}
.x3a_c00011{left:371.580000px;}
.x76_c00011{left:375.000000px;}
.x1e_c00011{left:381.420000px;}
.x46_c00011{left:382.500000px;}
.x26_c00011{left:388.500000px;}
.x5a_c00011{left:393.000000px;}
.x77_c00011{left:394.500000px;}
.x66_c00011{left:396.645000px;}
.x16_c00011{left:397.920000px;}
.x1_c00011{left:409.500000px;}
.x5b_c00011{left:411.000000px;}
.x3b_c00011{left:412.275000px;}
.x81_c00011{left:415.080000px;}
.x70_c00011{left:420.000000px;}
.x85_c00011{left:421.500000px;}
.x8f_c00011{left:426.000000px;}
.x27_c00011{left:427.500000px;}
.x30_c00011{left:433.500000px;}
.x1f_c00011{left:436.500000px;}
.x3c_c00011{left:447.000000px;}
.xa_c00011{left:448.500000px;}
.x78_c00011{left:453.000000px;}
.x5c_c00011{left:454.500000px;}
.x82_c00011{left:459.000000px;}
.x67_c00011{left:466.500000px;}
.x17_c00011{left:468.420000px;}
.x52_c00011{left:469.500000px;}
.x31_c00011{left:471.000000px;}
.x3d_c00011{left:472.500000px;}
.x79_c00011{left:474.000000px;}
.x90_c00011{left:477.420000px;}
.xb_c00011{left:480.000000px;}
.x83_c00011{left:481.500000px;}
.x86_c00011{left:483.000000px;}
.x47_c00011{left:484.500000px;}
.x68_c00011{left:489.000000px;}
.x28_c00011{left:493.080000px;}
.x32_c00011{left:499.500000px;}
.x18_c00011{left:506.580000px;}
.x48_c00011{left:508.920000px;}
.x71_c00011{left:511.920000px;}
.x20_c00011{left:518.580000px;}
.x29_c00011{left:523.920000px;}
.x87_c00011{left:525.420000px;}
.x19_c00011{left:535.500000px;}
.xc_c00011{left:540.000000px;}
.x21_c00011{left:543.000000px;}
.x53_c00011{left:549.000000px;}
.x33_c00011{left:550.500000px;}
.x49_c00011{left:553.080000px;}
.x69_c00011{left:561.000000px;}
.xd_c00011{left:562.500000px;}
.x88_c00011{left:567.000000px;}
.x3e_c00011{left:570.000000px;}
.x54_c00011{left:578.580000px;}
.xe_c00011{left:582.420000px;}
.x34_c00011{left:583.920000px;}
.x5d_c00011{left:591.000000px;}
.x6a_c00011{left:593.580000px;}
.x97_c00011{left:595.080000px;}
.x99_c00011{left:597.000000px;}
.x2a_c00011{left:601.920000px;}
.x91_c00011{left:604.080000px;}
.x1a_c00011{left:605.775000px;}
.x89_c00011{left:609.000000px;}
.x55_c00011{left:616.500000px;}
.x9a_c00011{left:619.080000px;}
.xf_c00011{left:620.580000px;}
.x72_c00011{left:622.080000px;}
.x8a_c00011{left:628.500000px;}
.x22_c00011{left:630.420000px;}
.x4a_c00011{left:634.500000px;}
.x98_c00011{left:637.500000px;}
.x2b_c00011{left:639.000000px;}
.x10_c00011{left:643.080000px;}
.x5e_c00011{left:655.920000px;}
.x3f_c00011{left:658.500000px;}
.x23_c00011{left:660.420000px;}
.x7a_c00011{left:663.420000px;}
.x4b_c00011{left:664.500000px;}
.x35_c00011{left:672.000000px;}
.x11_c00011{left:678.000000px;}
.x4c_c00011{left:682.080000px;}
.x5f_c00011{left:683.580000px;}
.x92_c00011{left:689.580000px;}
.x1b_c00011{left:693.000000px;}
.x40_c00011{left:694.920000px;}
.x6b_c00011{left:702.000000px;}
.x8b_c00011{left:706.920000px;}
.x36_c00011{left:708.420000px;}
.x2_c00011{left:709.500000px;}
.x7b_c00011{left:714.000000px;}
.x2c_c00011{left:715.500000px;}
.x60_c00011{left:716.580000px;}
@media print{
.v0_c00011{vertical-align:0.000000pt;}
.ls0_c00011{letter-spacing:0.000000pt;}
.ws0_c00011{word-spacing:0.000000pt;}
.fs3_c00011{font-size:16.640000pt;}
.fs0_c00011{font-size:18.133333pt;}
.fs5_c00011{font-size:22.666667pt;}
.fs4_c00011{font-size:25.706667pt;}
.fs1_c00011{font-size:28.746667pt;}
.fs2_c00011{font-size:31.733333pt;}
.fs6_c00011{font-size:34.773333pt;}
.y0_c00011{bottom:0.000000pt;}
.y69_c00011{bottom:612.360000pt;}
.y68_c00011{bottom:627.400000pt;}
.y66_c00011{bottom:630.440000pt;}
.y67_c00011{bottom:631.026667pt;}
.y64_c00011{bottom:665.306667pt;}
.y65_c00011{bottom:665.693333pt;}
.y63_c00011{bottom:680.360000pt;}
.y5e_c00011{bottom:682.066667pt;}
.y5d_c00011{bottom:682.440000pt;}
.y5f_c00011{bottom:683.026667pt;}
.y61_c00011{bottom:683.226667pt;}
.y62_c00011{bottom:683.973333pt;}
.y60_c00011{bottom:684.360000pt;}
.y59_c00011{bottom:698.440000pt;}
.y5c_c00011{bottom:699.400000pt;}
.y57_c00011{bottom:699.773333pt;}
.y5a_c00011{bottom:700.360000pt;}
.y58_c00011{bottom:700.560000pt;}
.y5b_c00011{bottom:701.306667pt;}
.y56_c00011{bottom:703.026667pt;}
.y54_c00011{bottom:715.773333pt;}
.y51_c00011{bottom:716.160000pt;}
.y53_c00011{bottom:717.693333pt;}
.y55_c00011{bottom:717.893333pt;}
.y52_c00011{bottom:718.640000pt;}
.y50_c00011{bottom:720.360000pt;}
.y4d_c00011{bottom:734.440000pt;}
.y4e_c00011{bottom:735.226667pt;}
.y4f_c00011{bottom:735.973333pt;}
.y4c_c00011{bottom:736.360000pt;}
.y4b_c00011{bottom:737.693333pt;}
.y49_c00011{bottom:751.026667pt;}
.y4a_c00011{bottom:751.773333pt;}
.y48_c00011{bottom:753.693333pt;}
.y47_c00011{bottom:755.026667pt;}
.y41_c00011{bottom:767.026667pt;}
.y42_c00011{bottom:769.106667pt;}
.y46_c00011{bottom:770.066667pt;}
.y43_c00011{bottom:770.640000pt;}
.y45_c00011{bottom:771.026667pt;}
.y40_c00011{bottom:771.226667pt;}
.y44_c00011{bottom:771.973333pt;}
.y3f_c00011{bottom:772.360000pt;}
.y3e_c00011{bottom:788.360000pt;}
.y3d_c00011{bottom:789.693333pt;}
.y3a_c00011{bottom:803.773333pt;}
.y37_c00011{bottom:804.360000pt;}
.y39_c00011{bottom:805.106667pt;}
.y3c_c00011{bottom:805.306667pt;}
.y3b_c00011{bottom:805.693333pt;}
.y38_c00011{bottom:806.640000pt;}
.y33_c00011{bottom:820.360000pt;}
.y34_c00011{bottom:821.106667pt;}
.y30_c00011{bottom:821.493333pt;}
.y36_c00011{bottom:822.440000pt;}
.y31_c00011{bottom:823.026667pt;}
.y35_c00011{bottom:823.226667pt;}
.y32_c00011{bottom:823.973333pt;}
.y2d_c00011{bottom:838.066667pt;}
.y2b_c00011{bottom:838.440000pt;}
.y2c_c00011{bottom:839.226667pt;}
.y29_c00011{bottom:839.773333pt;}
.y2e_c00011{bottom:839.973333pt;}
.y2a_c00011{bottom:840.360000pt;}
.y2f_c00011{bottom:841.306667pt;}
.y24_c00011{bottom:855.773333pt;}
.y26_c00011{bottom:856.733333pt;}
.y21_c00011{bottom:857.106667pt;}
.y28_c00011{bottom:857.306667pt;}
.y23_c00011{bottom:857.693333pt;}
.y25_c00011{bottom:857.893333pt;}
.y27_c00011{bottom:858.640000pt;}
.y22_c00011{bottom:859.026667pt;}
.y1c_c00011{bottom:873.106667pt;}
.y1e_c00011{bottom:874.440000pt;}
.y20_c00011{bottom:875.026667pt;}
.y1f_c00011{bottom:875.226667pt;}
.y1d_c00011{bottom:876.360000pt;}
.y1b_c00011{bottom:876.733333pt;}
.y17_c00011{bottom:890.440000pt;}
.y19_c00011{bottom:891.400000pt;}
.y16_c00011{bottom:892.360000pt;}
.y18_c00011{bottom:892.560000pt;}
.y1a_c00011{bottom:893.306667pt;}
.y15_c00011{bottom:894.640000pt;}
.y10_c00011{bottom:907.773333pt;}
.y13_c00011{bottom:909.106667pt;}
.y11_c00011{bottom:909.693333pt;}
.y12_c00011{bottom:909.893333pt;}
.y14_c00011{bottom:911.026667pt;}
.yf_c00011{bottom:912.360000pt;}
.ya_c00011{bottom:926.440000pt;}
.ye_c00011{bottom:927.026667pt;}
.yb_c00011{bottom:927.226667pt;}
.yd_c00011{bottom:927.400000pt;}
.yc_c00011{bottom:928.360000pt;}
.y9_c00011{bottom:929.693333pt;}
.y7_c00011{bottom:942.640000pt;}
.y3_c00011{bottom:943.773333pt;}
.y4_c00011{bottom:944.560000pt;}
.y8_c00011{bottom:945.306667pt;}
.y5_c00011{bottom:945.693333pt;}
.y6_c00011{bottom:945.893333pt;}
.y2_c00011{bottom:946.066667pt;}
.y1_c00011{bottom:979.600000pt;}
.h4_c00011{height:20.466875pt;}
.h1_c00011{height:22.303646pt;}
.h6_c00011{height:27.879557pt;}
.h5_c00011{height:31.618698pt;}
.h2_c00011{height:35.357839pt;}
.h3_c00011{height:39.031380pt;}
.h7_c00011{height:42.770521pt;}
.h0_c00011{height:1186.666667pt;}
.w0_c00011{width:782.666667pt;}
.x0_c00011{left:0.000000pt;}
.x3_c00011{left:136.000000pt;}
.x73_c00011{left:136.960000pt;}
.x62_c00011{left:150.666667pt;}
.x56_c00011{left:158.666667pt;}
.x61_c00011{left:161.706667pt;}
.x12_c00011{left:163.040000pt;}
.x24_c00011{left:165.333333pt;}
.x6c_c00011{left:169.333333pt;}
.x4_c00011{left:171.800000pt;}
.x63_c00011{left:176.000000pt;}
.x57_c00011{left:177.706667pt;}
.x84_c00011{left:179.626667pt;}
.x37_c00011{left:183.040000pt;}
.x41_c00011{left:185.333333pt;}
.x93_c00011{left:187.626667pt;}
.x2d_c00011{left:198.293333pt;}
.x4d_c00011{left:200.000000pt;}
.x96_c00011{left:200.960000pt;}
.x5_c00011{left:202.666667pt;}
.x94_c00011{left:204.960000pt;}
.x7c_c00011{left:210.293333pt;}
.x6d_c00011{left:212.000000pt;}
.x58_c00011{left:214.666667pt;}
.x8c_c00011{left:216.373333pt;}
.x7d_c00011{left:228.373333pt;}
.x95_c00011{left:229.333333pt;}
.x6_c00011{left:230.293333pt;}
.x1c_c00011{left:232.000000pt;}
.x42_c00011{left:233.333333pt;}
.x13_c00011{left:236.000000pt;}
.x4e_c00011{left:241.333333pt;}
.x38_c00011{left:250.666667pt;}
.x43_c00011{left:251.626667pt;}
.x74_c00011{left:253.333333pt;}
.x25_c00011{left:254.293333pt;}
.x6e_c00011{left:256.000000pt;}
.x4f_c00011{left:260.373333pt;}
.x14_c00011{left:265.706667pt;}
.x39_c00011{left:267.626667pt;}
.x7_c00011{left:271.626667pt;}
.x59_c00011{left:274.293333pt;}
.x44_c00011{left:276.000000pt;}
.x7e_c00011{left:276.960000pt;}
.x75_c00011{left:281.706667pt;}
.x64_c00011{left:284.000000pt;}
.x50_c00011{left:289.333333pt;}
.x7f_c00011{left:295.040000pt;}
.x2e_c00011{left:296.960000pt;}
.x8_c00011{left:299.040000pt;}
.x8d_c00011{left:300.000000pt;}
.x65_c00011{left:301.333333pt;}
.x15_c00011{left:306.293333pt;}
.x1d_c00011{left:309.333333pt;}
.x2f_c00011{left:313.706667pt;}
.x8e_c00011{left:316.000000pt;}
.x80_c00011{left:318.666667pt;}
.x51_c00011{left:320.373333pt;}
.x9_c00011{left:322.666667pt;}
.x45_c00011{left:325.333333pt;}
.x6f_c00011{left:326.666667pt;}
.x3a_c00011{left:330.293333pt;}
.x76_c00011{left:333.333333pt;}
.x1e_c00011{left:339.040000pt;}
.x46_c00011{left:340.000000pt;}
.x26_c00011{left:345.333333pt;}
.x5a_c00011{left:349.333333pt;}
.x77_c00011{left:350.666667pt;}
.x66_c00011{left:352.573333pt;}
.x16_c00011{left:353.706667pt;}
.x1_c00011{left:364.000000pt;}
.x5b_c00011{left:365.333333pt;}
.x3b_c00011{left:366.466667pt;}
.x81_c00011{left:368.960000pt;}
.x70_c00011{left:373.333333pt;}
.x85_c00011{left:374.666667pt;}
.x8f_c00011{left:378.666667pt;}
.x27_c00011{left:380.000000pt;}
.x30_c00011{left:385.333333pt;}
.x1f_c00011{left:388.000000pt;}
.x3c_c00011{left:397.333333pt;}
.xa_c00011{left:398.666667pt;}
.x78_c00011{left:402.666667pt;}
.x5c_c00011{left:404.000000pt;}
.x82_c00011{left:408.000000pt;}
.x67_c00011{left:414.666667pt;}
.x17_c00011{left:416.373333pt;}
.x52_c00011{left:417.333333pt;}
.x31_c00011{left:418.666667pt;}
.x3d_c00011{left:420.000000pt;}
.x79_c00011{left:421.333333pt;}
.x90_c00011{left:424.373333pt;}
.xb_c00011{left:426.666667pt;}
.x83_c00011{left:428.000000pt;}
.x86_c00011{left:429.333333pt;}
.x47_c00011{left:430.666667pt;}
.x68_c00011{left:434.666667pt;}
.x28_c00011{left:438.293333pt;}
.x32_c00011{left:444.000000pt;}
.x18_c00011{left:450.293333pt;}
.x48_c00011{left:452.373333pt;}
.x71_c00011{left:455.040000pt;}
.x20_c00011{left:460.960000pt;}
.x29_c00011{left:465.706667pt;}
.x87_c00011{left:467.040000pt;}
.x19_c00011{left:476.000000pt;}
.xc_c00011{left:480.000000pt;}
.x21_c00011{left:482.666667pt;}
.x53_c00011{left:488.000000pt;}
.x33_c00011{left:489.333333pt;}
.x49_c00011{left:491.626667pt;}
.x69_c00011{left:498.666667pt;}
.xd_c00011{left:500.000000pt;}
.x88_c00011{left:504.000000pt;}
.x3e_c00011{left:506.666667pt;}
.x54_c00011{left:514.293333pt;}
.xe_c00011{left:517.706667pt;}
.x34_c00011{left:519.040000pt;}
.x5d_c00011{left:525.333333pt;}
.x6a_c00011{left:527.626667pt;}
.x97_c00011{left:528.960000pt;}
.x99_c00011{left:530.666667pt;}
.x2a_c00011{left:535.040000pt;}
.x91_c00011{left:536.960000pt;}
.x1a_c00011{left:538.466667pt;}
.x89_c00011{left:541.333333pt;}
.x55_c00011{left:548.000000pt;}
.x9a_c00011{left:550.293333pt;}
.xf_c00011{left:551.626667pt;}
.x72_c00011{left:552.960000pt;}
.x8a_c00011{left:558.666667pt;}
.x22_c00011{left:560.373333pt;}
.x4a_c00011{left:564.000000pt;}
.x98_c00011{left:566.666667pt;}
.x2b_c00011{left:568.000000pt;}
.x10_c00011{left:571.626667pt;}
.x5e_c00011{left:583.040000pt;}
.x3f_c00011{left:585.333333pt;}
.x23_c00011{left:587.040000pt;}
.x7a_c00011{left:589.706667pt;}
.x4b_c00011{left:590.666667pt;}
.x35_c00011{left:597.333333pt;}
.x11_c00011{left:602.666667pt;}
.x4c_c00011{left:606.293333pt;}
.x5f_c00011{left:607.626667pt;}
.x92_c00011{left:612.960000pt;}
.x1b_c00011{left:616.000000pt;}
.x40_c00011{left:617.706667pt;}
.x6b_c00011{left:624.000000pt;}
.x8b_c00011{left:628.373333pt;}
.x36_c00011{left:629.706667pt;}
.x2_c00011{left:630.666667pt;}
.x7b_c00011{left:634.666667pt;}
.x2c_c00011{left:636.000000pt;}
.x60_c00011{left:636.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_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_222cc09c44c904f9bab90661.woff2')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00012{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00012{transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);}
.m51_c00012{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m69_c00012{transform:matrix(0.356212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356212,0.000000,0.000000,0.250000,0,0);}
.mb5_c00012{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m96_c00012{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mac_c00012{transform:matrix(0.369182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369182,0.000000,0.000000,0.250000,0,0);}
.mb7_c00012{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m6f_c00012{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m86_c00012{transform:matrix(0.376050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376050,0.000000,0.000000,0.250000,0,0);}
.m8f_c00012{transform:matrix(0.376534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376534,0.000000,0.000000,0.250000,0,0);}
.m8e_c00012{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m7e_c00012{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m9c_c00012{transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);}
.m6b_c00012{transform:matrix(0.384874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384874,0.000000,0.000000,0.250000,0,0);}
.m3d_c00012{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m41_c00012{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m67_c00012{transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);}
.m53_c00012{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mcc_c00012{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.me3_c00012{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.ma5_c00012{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.me0_c00012{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m2b_c00012{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m38_c00012{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m14_c00012{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m62_c00012{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.mdd_c00012{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m73_c00012{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mb0_c00012{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.md2_c00012{transform:matrix(0.405675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405675,0.000000,0.000000,0.250000,0,0);}
.m52_c00012{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m89_c00012{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m82_c00012{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m98_c00012{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.mdf_c00012{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m8c_c00012{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m7c_c00012{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m3_c00012{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.m95_c00012{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m76_c00012{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m84_c00012{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.m5f_c00012{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m55_c00012{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m4e_c00012{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.md9_c00012{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.md_c00012{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m18_c00012{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mc0_c00012{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.mc2_c00012{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mf_c00012{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m4d_c00012{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m21_c00012{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m63_c00012{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.ma_c00012{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.mb2_c00012{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m85_c00012{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m49_c00012{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m10_c00012{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.me2_c00012{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m78_c00012{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m16_c00012{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m8b_c00012{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m19_c00012{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mb9_c00012{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m3f_c00012{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m46_c00012{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m7b_c00012{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m9f_c00012{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.mda_c00012{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m17_c00012{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m1e_c00012{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mb3_c00012{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.mc_c00012{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.mc6_c00012{transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);}
.mc8_c00012{transform:matrix(0.444805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444805,0.000000,0.000000,0.250000,0,0);}
.mbd_c00012{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m7a_c00012{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m4a_c00012{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.ma7_c00012{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m9a_c00012{transform:matrix(0.449907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449907,0.000000,0.000000,0.250000,0,0);}
.maa_c00012{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m24_c00012{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.me1_c00012{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.mbc_c00012{transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);}
.m35_c00012{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.mc5_c00012{transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);}
.m61_c00012{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m8a_c00012{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.ma2_c00012{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m3c_c00012{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.md6_c00012{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m60_c00012{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.mae_c00012{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m74_c00012{transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);}
.md5_c00012{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m8d_c00012{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.m70_c00012{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mba_c00012{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m8_c00012{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mcd_c00012{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.ma3_c00012{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m99_c00012{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m7d_c00012{transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);}
.m2f_c00012{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m66_c00012{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m43_c00012{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m31_c00012{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m26_c00012{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.m5d_c00012{transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);}
.md0_c00012{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.md3_c00012{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m54_c00012{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m4_c00012{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);}
.m5a_c00012{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m83_c00012{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.mdb_c00012{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mb8_c00012{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m2d_c00012{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m75_c00012{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m56_c00012{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m1c_c00012{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m80_c00012{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m88_c00012{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m6e_c00012{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mcf_c00012{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m65_c00012{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m48_c00012{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m30_c00012{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m13_c00012{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.me6_c00012{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m91_c00012{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.md4_c00012{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mde_c00012{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m6d_c00012{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mb4_c00012{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mb6_c00012{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m36_c00012{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m3b_c00012{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m97_c00012{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m92_c00012{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m5_c00012{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.me5_c00012{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m93_c00012{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m1a_c00012{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m7_c00012{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m2_c00012{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m6_c00012{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mdc_c00012{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mc4_c00012{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m64_c00012{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m28_c00012{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.ma0_c00012{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m6a_c00012{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m2c_c00012{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.md1_c00012{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m5c_c00012{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m3a_c00012{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m25_c00012{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m57_c00012{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m79_c00012{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m4f_c00012{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.md7_c00012{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mca_c00012{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.me_c00012{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m71_c00012{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m4b_c00012{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m23_c00012{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mce_c00012{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m22_c00012{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m72_c00012{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m58_c00012{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mc3_c00012{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m42_c00012{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m44_c00012{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m5b_c00012{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m5e_c00012{transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);}
.m50_c00012{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m27_c00012{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m47_c00012{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.mc9_c00012{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m9_c00012{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m39_c00012{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.mb1_c00012{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m11_c00012{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.mab_c00012{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.me7_c00012{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m68_c00012{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.me4_c00012{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.maf_c00012{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.mbb_c00012{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mbf_c00012{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m90_c00012{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.md8_c00012{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.mc1_c00012{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.m33_c00012{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.ma9_c00012{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m6c_c00012{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.m1b_c00012{transform:matrix(0.608235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608235,0.000000,0.000000,0.250000,0,0);}
.m7f_c00012{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m32_c00012{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.m15_c00012{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m20_c00012{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mb_c00012{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m9e_c00012{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m45_c00012{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m59_c00012{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);}
.m87_c00012{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m40_c00012{transform:matrix(0.634706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634706,0.000000,0.000000,0.250000,0,0);}
.m9d_c00012{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m94_c00012{transform:matrix(0.638485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638485,0.000000,0.000000,0.250000,0,0);}
.m34_c00012{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.ma6_c00012{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m2a_c00012{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mbe_c00012{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m9b_c00012{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m81_c00012{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m29_c00012{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mad_c00012{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mc7_c00012{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m12_c00012{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m2e_c00012{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m3e_c00012{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m4c_c00012{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m1d_c00012{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m1f_c00012{transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);}
.m37_c00012{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m77_c00012{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m1_c00012{transform:matrix(0.923237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.923237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.923237,0.000000,0.000000,0.250000,0,0);}
.ma8_c00012{transform:matrix(1.907895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.907895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.907895,0.000000,0.000000,0.250000,0,0);}
.ma1_c00012{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.ma4_c00012{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00012{vertical-align:0.000000px;}
.ls0_c00012{letter-spacing:0.000000px;}
.sc__c00012{text-shadow:none;}
.sc0_c00012{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00012{-webkit-text-stroke:0px transparent;}
.sc0_c00012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00012{word-spacing:-8.988101px;}
.ws1_c00012{word-spacing:0.000000px;}
.fc0_c00012{color:transparent;}
.fs8_c00012{font-size:3.420000px;}
.fs3_c00012{font-size:18.720000px;}
.fs7_c00012{font-size:20.400000px;}
.fs0_c00012{font-size:22.140000px;}
.fs4_c00012{font-size:25.500000px;}
.fs1_c00012{font-size:28.920000px;}
.fs5_c00012{font-size:32.340000px;}
.fs2_c00012{font-size:35.700000px;}
.fs6_c00012{font-size:39.120000px;}
.fs9_c00012{font-size:42.540000px;}
.y0_c00012{bottom:0.000000px;}
.y1_c00012{bottom:223.275000px;}
.yc7_c00012{bottom:253.245000px;}
.yc6_c00012{bottom:254.970000px;}
.yc5_c00012{bottom:255.405000px;}
.yc8_c00012{bottom:256.470000px;}
.yc4_c00012{bottom:257.325000px;}
.yc0_c00012{bottom:271.245000px;}
.yc3_c00012{bottom:272.745000px;}
.ybf_c00012{bottom:273.405000px;}
.yc1_c00012{bottom:273.825000px;}
.yc2_c00012{bottom:274.470000px;}
.ybe_c00012{bottom:274.905000px;}
.ybd_c00012{bottom:275.745000px;}
.yb9_c00012{bottom:291.825000px;}
.yb8_c00012{bottom:292.245000px;}
.ybc_c00012{bottom:293.130000px;}
.ybb_c00012{bottom:293.970000px;}
.yb7_c00012{bottom:294.405000px;}
.yb6_c00012{bottom:294.825000px;}
.yba_c00012{bottom:295.470000px;}
.yb5_c00012{bottom:311.745000px;}
.yb3_c00012{bottom:312.630000px;}
.yb4_c00012{bottom:313.470000px;}
.yb2_c00012{bottom:313.905000px;}
.yb1_c00012{bottom:314.970000px;}
.yb0_c00012{bottom:315.825000px;}
.yae_c00012{bottom:330.825000px;}
.ya9_c00012{bottom:331.680000px;}
.yab_c00012{bottom:332.325000px;}
.yac_c00012{bottom:332.970000px;}
.yaa_c00012{bottom:333.405000px;}
.ya8_c00012{bottom:334.245000px;}
.yad_c00012{bottom:334.470000px;}
.yaf_c00012{bottom:334.905000px;}
.ya5_c00012{bottom:349.905000px;}
.ya3_c00012{bottom:350.745000px;}
.ya4_c00012{bottom:351.630000px;}
.ya0_c00012{bottom:352.245000px;}
.ya2_c00012{bottom:352.470000px;}
.ya1_c00012{bottom:352.905000px;}
.ya6_c00012{bottom:353.130000px;}
.ya7_c00012{bottom:353.970000px;}
.y9f_c00012{bottom:370.245000px;}
.y9c_c00012{bottom:371.325000px;}
.y9e_c00012{bottom:372.405000px;}
.y9d_c00012{bottom:372.630000px;}
.y9b_c00012{bottom:372.825000px;}
.y98_c00012{bottom:391.245000px;}
.y99_c00012{bottom:392.130000px;}
.y9a_c00012{bottom:393.405000px;}
.y97_c00012{bottom:409.470000px;}
.y95_c00012{bottom:410.325000px;}
.y93_c00012{bottom:410.745000px;}
.y94_c00012{bottom:411.825000px;}
.y96_c00012{bottom:412.470000px;}
.y91_c00012{bottom:412.905000px;}
.y92_c00012{bottom:413.970000px;}
.y90_c00012{bottom:429.825000px;}
.y8d_c00012{bottom:430.245000px;}
.y8f_c00012{bottom:431.970000px;}
.y8e_c00012{bottom:432.405000px;}
.y8b_c00012{bottom:449.745000px;}
.y8c_c00012{bottom:450.630000px;}
.y8a_c00012{bottom:451.905000px;}
.y89_c00012{bottom:452.325000px;}
.y86_c00012{bottom:468.405000px;}
.y87_c00012{bottom:469.245000px;}
.y84_c00012{bottom:469.680000px;}
.y85_c00012{bottom:471.405000px;}
.y88_c00012{bottom:471.630000px;}
.y83_c00012{bottom:488.745000px;}
.y7f_c00012{bottom:490.245000px;}
.y81_c00012{bottom:490.905000px;}
.y82_c00012{bottom:491.130000px;}
.y80_c00012{bottom:492.405000px;}
.y79_c00012{bottom:508.245000px;}
.y7d_c00012{bottom:508.920000px;}
.y7c_c00012{bottom:509.745000px;}
.y77_c00012{bottom:510.405000px;}
.y78_c00012{bottom:510.420000px;}
.y7a_c00012{bottom:510.630000px;}
.y76_c00012{bottom:510.825000px;}
.y7b_c00012{bottom:511.470000px;}
.y7e_c00012{bottom:511.905000px;}
.y74_c00012{bottom:528.825000px;}
.y71_c00012{bottom:529.245000px;}
.y75_c00012{bottom:530.130000px;}
.y72_c00012{bottom:530.325000px;}
.y6f_c00012{bottom:530.550000px;}
.y70_c00012{bottom:531.405000px;}
.y73_c00012{bottom:531.420000px;}
.y6d_c00012{bottom:547.245000px;}
.y6c_c00012{bottom:548.745000px;}
.y6a_c00012{bottom:549.825000px;}
.y68_c00012{bottom:550.245000px;}
.y6b_c00012{bottom:550.470000px;}
.y69_c00012{bottom:550.905000px;}
.y6e_c00012{bottom:551.970000px;}
.y65_c00012{bottom:568.245000px;}
.y66_c00012{bottom:569.325000px;}
.y67_c00012{bottom:569.970000px;}
.y64_c00012{bottom:570.405000px;}
.y63_c00012{bottom:571.905000px;}
.y61_c00012{bottom:586.245000px;}
.y62_c00012{bottom:587.745000px;}
.y5f_c00012{bottom:588.180000px;}
.y60_c00012{bottom:589.905000px;}
.y5c_c00012{bottom:607.245000px;}
.y5a_c00012{bottom:608.745000px;}
.y5e_c00012{bottom:609.405000px;}
.y5b_c00012{bottom:610.470000px;}
.y5d_c00012{bottom:610.905000px;}
.y59_c00012{bottom:626.745000px;}
.y56_c00012{bottom:628.245000px;}
.y58_c00012{bottom:629.130000px;}
.y57_c00012{bottom:629.970000px;}
.y55_c00012{bottom:630.405000px;}
.y51_c00012{bottom:647.745000px;}
.y52_c00012{bottom:648.405000px;}
.y54_c00012{bottom:649.470000px;}
.y53_c00012{bottom:649.905000px;}
.y4d_c00012{bottom:667.245000px;}
.y50_c00012{bottom:668.130000px;}
.y4c_c00012{bottom:668.325000px;}
.y4f_c00012{bottom:668.970000px;}
.y4e_c00012{bottom:669.405000px;}
.y4b_c00012{bottom:670.905000px;}
.y49_c00012{bottom:686.745000px;}
.y48_c00012{bottom:688.905000px;}
.y4a_c00012{bottom:689.130000px;}
.y47_c00012{bottom:690.405000px;}
.y46_c00012{bottom:705.405000px;}
.y43_c00012{bottom:706.245000px;}
.y45_c00012{bottom:707.325000px;}
.y44_c00012{bottom:708.405000px;}
.y42_c00012{bottom:709.905000px;}
.y40_c00012{bottom:725.745000px;}
.y3e_c00012{bottom:726.180000px;}
.y3f_c00012{bottom:727.905000px;}
.y41_c00012{bottom:728.970000px;}
.y3c_c00012{bottom:745.245000px;}
.y3d_c00012{bottom:747.405000px;}
.y3b_c00012{bottom:765.825000px;}
.y3a_c00012{bottom:766.245000px;}
.y39_c00012{bottom:767.130000px;}
.y38_c00012{bottom:767.325000px;}
.y37_c00012{bottom:768.405000px;}
.y36_c00012{bottom:784.905000px;}
.y33_c00012{bottom:785.745000px;}
.y34_c00012{bottom:787.905000px;}
.y35_c00012{bottom:788.970000px;}
.y32_c00012{bottom:803.745000px;}
.y31_c00012{bottom:805.245000px;}
.y30_c00012{bottom:806.130000px;}
.y2f_c00012{bottom:807.405000px;}
.y2c_c00012{bottom:824.745000px;}
.y2e_c00012{bottom:826.470000px;}
.y2d_c00012{bottom:826.905000px;}
.y2b_c00012{bottom:827.970000px;}
.y2a_c00012{bottom:842.970000px;}
.y27_c00012{bottom:844.245000px;}
.y28_c00012{bottom:846.405000px;}
.y26_c00012{bottom:846.630000px;}
.y29_c00012{bottom:847.470000px;}
.y21_c00012{bottom:863.745000px;}
.y25_c00012{bottom:865.245000px;}
.y22_c00012{bottom:865.470000px;}
.y23_c00012{bottom:865.905000px;}
.y20_c00012{bottom:866.130000px;}
.y24_c00012{bottom:866.970000px;}
.y1f_c00012{bottom:867.405000px;}
.y1a_c00012{bottom:882.405000px;}
.y1d_c00012{bottom:883.470000px;}
.y1e_c00012{bottom:884.325000px;}
.y1b_c00012{bottom:885.405000px;}
.y1c_c00012{bottom:885.630000px;}
.y19_c00012{bottom:886.905000px;}
.y18_c00012{bottom:902.745000px;}
.y13_c00012{bottom:903.825000px;}
.y16_c00012{bottom:904.245000px;}
.y14_c00012{bottom:904.905000px;}
.y17_c00012{bottom:905.130000px;}
.y15_c00012{bottom:905.970000px;}
.y12_c00012{bottom:906.405000px;}
.yf_c00012{bottom:923.745000px;}
.y10_c00012{bottom:924.630000px;}
.ye_c00012{bottom:925.470000px;}
.yd_c00012{bottom:925.905000px;}
.y11_c00012{bottom:926.970000px;}
.y9_c00012{bottom:941.745000px;}
.ya_c00012{bottom:941.970000px;}
.yb_c00012{bottom:943.245000px;}
.y8_c00012{bottom:943.905000px;}
.yc_c00012{bottom:945.405000px;}
.y6_c00012{bottom:962.745000px;}
.y7_c00012{bottom:963.630000px;}
.y5_c00012{bottom:964.905000px;}
.y4_c00012{bottom:982.245000px;}
.y3_c00012{bottom:984.405000px;}
.y2_c00012{bottom:1023.405000px;}
.h9_c00012{height:4.206533px;}
.h4_c00012{height:23.025234px;}
.h8_c00012{height:25.091602px;}
.h1_c00012{height:27.231768px;}
.h5_c00012{height:31.364502px;}
.h2_c00012{height:35.571035px;}
.h6_c00012{height:39.777568px;}
.h3_c00012{height:43.910303px;}
.h7_c00012{height:48.116836px;}
.ha_c00012{height:52.323369px;}
.h0_c00012{height:1335.000000px;}
.w0_c00012{width:880.500000px;}
.x0_c00012{left:0.000000px;}
.x10_c00012{left:151.080000px;}
.x2d_c00012{left:153.420000px;}
.x3_c00012{left:168.000000px;}
.x39_c00012{left:169.500000px;}
.x8b_c00012{left:171.000000px;}
.x56_c00012{left:172.500000px;}
.x11_c00012{left:174.420000px;}
.xe2_c00012{left:175.920000px;}
.xf6_c00012{left:179.580000px;}
.xce_c00012{left:182.580000px;}
.x2e_c00012{left:187.500000px;}
.x3a_c00012{left:188.580000px;}
.xbf_c00012{left:190.080000px;}
.x5d_c00012{left:196.500000px;}
.xdb_c00012{left:197.580000px;}
.x4_c00012{left:200.580000px;}
.xba_c00012{left:202.500000px;}
.xad_c00012{left:204.000000px;}
.x12_c00012{left:205.920000px;}
.x68_c00012{left:207.000000px;}
.xcb_c00012{left:208.500000px;}
.xb1_c00012{left:209.580000px;}
.xf7_c00012{left:211.500000px;}
.xe7_c00012{left:214.500000px;}
.xc3_c00012{left:216.000000px;}
.x9b_c00012{left:217.500000px;}
.x23_c00012{left:222.000000px;}
.x1a_c00012{left:223.080000px;}
.x4f_c00012{left:225.000000px;}
.xa8_c00012{left:226.500000px;}
.x57_c00012{left:228.000000px;}
.xd7_c00012{left:229.920000px;}
.x5e_c00012{left:231.000000px;}
.xc0_c00012{left:232.500000px;}
.xe8_c00012{left:233.580000px;}
.xb2_c00012{left:235.920000px;}
.x9c_c00012{left:237.000000px;}
.x3b_c00012{left:238.080000px;}
.x92_c00012{left:241.500000px;}
.x1b_c00012{left:242.580000px;}
.x50_c00012{left:244.500000px;}
.x95_c00012{left:245.580000px;}
.xeb_c00012{left:249.000000px;}
.xe3_c00012{left:252.000000px;}
.xa9_c00012{left:253.500000px;}
.x5f_c00012{left:256.920000px;}
.x2f_c00012{left:258.000000px;}
.xdc_c00012{left:259.500000px;}
.x3c_c00012{left:268.080000px;}
.x80_c00012{left:271.500000px;}
.xae_c00012{left:274.500000px;}
.xbb_c00012{left:277.500000px;}
.x5_c00012{left:278.580000px;}
.x47_c00012{left:280.500000px;}
.x58_c00012{left:283.920000px;}
.x69_c00012{left:285.000000px;}
.x84_c00012{left:289.500000px;}
.x13_c00012{left:291.000000px;}
.x24_c00012{left:292.080000px;}
.xb3_c00012{left:295.080000px;}
.x6_c00012{left:297.420000px;}
.x30_c00012{left:298.500000px;}
.x9d_c00012{left:301.500000px;}
.x7c_c00012{left:304.080000px;}
.xa1_c00012{left:307.500000px;}
.xd3_c00012{left:308.580000px;}
.x1c_c00012{left:313.500000px;}
.xec_c00012{left:315.420000px;}
.x48_c00012{left:316.500000px;}
.xaa_c00012{left:319.920000px;}
.x76_c00012{left:324.000000px;}
.x7_c00012{left:325.920000px;}
.x96_c00012{left:331.500000px;}
.x25_c00012{left:333.000000px;}
.x71_c00012{left:334.920000px;}
.xc4_c00012{left:336.000000px;}
.x3d_c00012{left:337.500000px;}
.xed_c00012{left:340.500000px;}
.xe9_c00012{left:342.000000px;}
.xe4_c00012{left:343.500000px;}
.xb4_c00012{left:345.000000px;}
.x49_c00012{left:348.420000px;}
.x6a_c00012{left:349.500000px;}
.x60_c00012{left:351.420000px;}
.xdd_c00012{left:354.000000px;}
.xd4_c00012{left:357.000000px;}
.x77_c00012{left:358.920000px;}
.x93_c00012{left:361.500000px;}
.x72_c00012{left:362.580000px;}
.xaf_c00012{left:364.500000px;}
.x3e_c00012{left:366.000000px;}
.x97_c00012{left:367.080000px;}
.x2_c00012{left:370.500000px;}
.xa2_c00012{left:373.080000px;}
.xbc_c00012{left:375.000000px;}
.x14_c00012{left:376.500000px;}
.x51_c00012{left:378.000000px;}
.x8c_c00012{left:381.000000px;}
.x1d_c00012{left:382.920000px;}
.xcf_c00012{left:384.000000px;}
.x85_c00012{left:385.500000px;}
.xab_c00012{left:387.000000px;}
.x8_c00012{left:389.580000px;}
.x31_c00012{left:391.080000px;}
.x3f_c00012{left:392.580000px;}
.x61_c00012{left:394.500000px;}
.xee_c00012{left:395.580000px;}
.xde_c00012{left:399.000000px;}
.xf8_c00012{left:401.580000px;}
.x73_c00012{left:403.500000px;}
.xf3_c00012{left:406.920000px;}
.x32_c00012{left:409.920000px;}
.x40_c00012{left:411.000000px;}
.x15_c00012{left:412.920000px;}
.x59_c00012{left:415.080000px;}
.xd8_c00012{left:416.580000px;}
.x1e_c00012{left:418.500000px;}
.x52_c00012{left:420.000000px;}
.x9e_c00012{left:421.920000px;}
.x26_c00012{left:424.500000px;}
.xc9_c00012{left:427.080000px;}
.x78_c00012{left:429.000000px;}
.x41_c00012{left:430.500000px;}
.xd0_c00012{left:432.000000px;}
.x74_c00012{left:433.500000px;}
.xef_c00012{left:435.000000px;}
.x33_c00012{left:436.080000px;}
.x98_c00012{left:439.500000px;}
.xd5_c00012{left:441.000000px;}
.x6b_c00012{left:442.500000px;}
.x81_c00012{left:445.080000px;}
.x16_c00012{left:448.500000px;}
.xf0_c00012{left:450.000000px;}
.x4a_c00012{left:453.000000px;}
.x75_c00012{left:454.500000px;}
.x62_c00012{left:456.000000px;}
.x1f_c00012{left:457.500000px;}
.x9_c00012{left:459.000000px;}
.x7d_c00012{left:463.080000px;}
.x27_c00012{left:464.580000px;}
.xc1_c00012{left:467.580000px;}
.xc5_c00012{left:469.080000px;}
.x4b_c00012{left:471.000000px;}
.x6c_c00012{left:472.500000px;}
.xe5_c00012{left:475.080000px;}
.xa_c00012{left:476.580000px;}
.x63_c00012{left:478.500000px;}
.x42_c00012{left:480.000000px;}
.x34_c00012{left:481.500000px;}
.xf4_c00012{left:483.000000px;}
.xb5_c00012{left:484.080000px;}
.xdf_c00012{left:486.000000px;}
.x94_c00012{left:487.080000px;}
.x53_c00012{left:490.080000px;}
.x8d_c00012{left:492.000000px;}
.xbd_c00012{left:493.920000px;}
.xb_c00012{left:496.080000px;}
.x79_c00012{left:497.580000px;}
.x9f_c00012{left:500.580000px;}
.x86_c00012{left:502.500000px;}
.xe0_c00012{left:504.420000px;}
.x20_c00012{left:505.920000px;}
.x5a_c00012{left:509.580000px;}
.xea_c00012{left:512.580000px;}
.x82_c00012{left:516.000000px;}
.xc6_c00012{left:519.420000px;}
.xca_c00012{left:520.920000px;}
.xd9_c00012{left:525.000000px;}
.x87_c00012{left:528.420000px;}
.xd1_c00012{left:529.500000px;}
.xbe_c00012{left:531.420000px;}
.x35_c00012{left:532.500000px;}
.x8e_c00012{left:535.080000px;}
.x28_c00012{left:538.500000px;}
.x7a_c00012{left:539.580000px;}
.x17_c00012{left:541.500000px;}
.x64_c00012{left:542.580000px;}
.x54_c00012{left:544.500000px;}
.xb6_c00012{left:546.000000px;}
.xf5_c00012{left:550.500000px;}
.xc_c00012{left:559.920000px;}
.xa3_c00012{left:561.000000px;}
.x43_c00012{left:562.920000px;}
.xb7_c00012{left:567.420000px;}
.x6d_c00012{left:568.500000px;}
.xd6_c00012{left:571.500000px;}
.xb0_c00012{left:574.500000px;}
.x65_c00012{left:577.080000px;}
.x21_c00012{left:578.580000px;}
.x83_c00012{left:580.920000px;}
.xa4_c00012{left:583.080000px;}
.x88_c00012{left:586.500000px;}
.x4c_c00012{left:588.000000px;}
.xe6_c00012{left:589.080000px;}
.x6e_c00012{left:591.000000px;}
.xf1_c00012{left:592.920000px;}
.x7e_c00012{left:594.645000px;}
.x44_c00012{left:595.920000px;}
.x5b_c00012{left:597.000000px;}
.xda_c00012{left:598.500000px;}
.x99_c00012{left:601.500000px;}
.x8f_c00012{left:606.000000px;}
.xf9_c00012{left:609.000000px;}
.x29_c00012{left:612.000000px;}
.xac_c00012{left:615.000000px;}
.x4d_c00012{left:618.420000px;}
.x36_c00012{left:621.000000px;}
.x18_c00012{left:622.500000px;}
.xc7_c00012{left:625.080000px;}
.xfa_c00012{left:626.580000px;}
.x45_c00012{left:630.000000px;}
.x66_c00012{left:631.275000px;}
.x2a_c00012{left:634.500000px;}
.x6f_c00012{left:637.500000px;}
.xb8_c00012{left:640.920000px;}
.xcc_c00012{left:642.000000px;}
.xd_c00012{left:643.500000px;}
.x7f_c00012{left:646.080000px;}
.xc2_c00012{left:649.500000px;}
.x22_c00012{left:651.000000px;}
.xa5_c00012{left:652.500000px;}
.x89_c00012{left:655.920000px;}
.xf2_c00012{left:658.920000px;}
.x4e_c00012{left:660.000000px;}
.xe_c00012{left:663.420000px;}
.x2b_c00012{left:665.775000px;}
.x90_c00012{left:667.500000px;}
.x37_c00012{left:669.420000px;}
.xa6_c00012{left:670.920000px;}
.x46_c00012{left:672.000000px;}
.xd2_c00012{left:673.080000px;}
.xc8_c00012{left:676.500000px;}
.xcd_c00012{left:678.420000px;}
.x67_c00012{left:681.000000px;}
.xe1_c00012{left:682.500000px;}
.x7b_c00012{left:685.500000px;}
.x91_c00012{left:686.580000px;}
.x8a_c00012{left:688.080000px;}
.xf_c00012{left:690.000000px;}
.xb9_c00012{left:691.080000px;}
.xa0_c00012{left:693.000000px;}
.x38_c00012{left:696.000000px;}
.x5c_c00012{left:697.920000px;}
.xa7_c00012{left:699.420000px;}
.x55_c00012{left:700.500000px;}
.x2c_c00012{left:703.080000px;}
.x70_c00012{left:706.920000px;}
.x9a_c00012{left:711.000000px;}
.x19_c00012{left:712.500000px;}
.x1_c00012{left:735.000000px;}
@media print{
.v0_c00012{vertical-align:0.000000pt;}
.ls0_c00012{letter-spacing:0.000000pt;}
.ws0_c00012{word-spacing:-7.989423pt;}
.ws1_c00012{word-spacing:0.000000pt;}
.fs8_c00012{font-size:3.040000pt;}
.fs3_c00012{font-size:16.640000pt;}
.fs7_c00012{font-size:18.133333pt;}
.fs0_c00012{font-size:19.680000pt;}
.fs4_c00012{font-size:22.666667pt;}
.fs1_c00012{font-size:25.706667pt;}
.fs5_c00012{font-size:28.746667pt;}
.fs2_c00012{font-size:31.733333pt;}
.fs6_c00012{font-size:34.773333pt;}
.fs9_c00012{font-size:37.813333pt;}
.y0_c00012{bottom:0.000000pt;}
.y1_c00012{bottom:198.466667pt;}
.yc7_c00012{bottom:225.106667pt;}
.yc6_c00012{bottom:226.640000pt;}
.yc5_c00012{bottom:227.026667pt;}
.yc8_c00012{bottom:227.973333pt;}
.yc4_c00012{bottom:228.733333pt;}
.yc0_c00012{bottom:241.106667pt;}
.yc3_c00012{bottom:242.440000pt;}
.ybf_c00012{bottom:243.026667pt;}
.yc1_c00012{bottom:243.400000pt;}
.yc2_c00012{bottom:243.973333pt;}
.ybe_c00012{bottom:244.360000pt;}
.ybd_c00012{bottom:245.106667pt;}
.yb9_c00012{bottom:259.400000pt;}
.yb8_c00012{bottom:259.773333pt;}
.ybc_c00012{bottom:260.560000pt;}
.ybb_c00012{bottom:261.306667pt;}
.yb7_c00012{bottom:261.693333pt;}
.yb6_c00012{bottom:262.066667pt;}
.yba_c00012{bottom:262.640000pt;}
.yb5_c00012{bottom:277.106667pt;}
.yb3_c00012{bottom:277.893333pt;}
.yb4_c00012{bottom:278.640000pt;}
.yb2_c00012{bottom:279.026667pt;}
.yb1_c00012{bottom:279.973333pt;}
.yb0_c00012{bottom:280.733333pt;}
.yae_c00012{bottom:294.066667pt;}
.ya9_c00012{bottom:294.826667pt;}
.yab_c00012{bottom:295.400000pt;}
.yac_c00012{bottom:295.973333pt;}
.yaa_c00012{bottom:296.360000pt;}
.ya8_c00012{bottom:297.106667pt;}
.yad_c00012{bottom:297.306667pt;}
.yaf_c00012{bottom:297.693333pt;}
.ya5_c00012{bottom:311.026667pt;}
.ya3_c00012{bottom:311.773333pt;}
.ya4_c00012{bottom:312.560000pt;}
.ya0_c00012{bottom:313.106667pt;}
.ya2_c00012{bottom:313.306667pt;}
.ya1_c00012{bottom:313.693333pt;}
.ya6_c00012{bottom:313.893333pt;}
.ya7_c00012{bottom:314.640000pt;}
.y9f_c00012{bottom:329.106667pt;}
.y9c_c00012{bottom:330.066667pt;}
.y9e_c00012{bottom:331.026667pt;}
.y9d_c00012{bottom:331.226667pt;}
.y9b_c00012{bottom:331.400000pt;}
.y98_c00012{bottom:347.773333pt;}
.y99_c00012{bottom:348.560000pt;}
.y9a_c00012{bottom:349.693333pt;}
.y97_c00012{bottom:363.973333pt;}
.y95_c00012{bottom:364.733333pt;}
.y93_c00012{bottom:365.106667pt;}
.y94_c00012{bottom:366.066667pt;}
.y96_c00012{bottom:366.640000pt;}
.y91_c00012{bottom:367.026667pt;}
.y92_c00012{bottom:367.973333pt;}
.y90_c00012{bottom:382.066667pt;}
.y8d_c00012{bottom:382.440000pt;}
.y8f_c00012{bottom:383.973333pt;}
.y8e_c00012{bottom:384.360000pt;}
.y8b_c00012{bottom:399.773333pt;}
.y8c_c00012{bottom:400.560000pt;}
.y8a_c00012{bottom:401.693333pt;}
.y89_c00012{bottom:402.066667pt;}
.y86_c00012{bottom:416.360000pt;}
.y87_c00012{bottom:417.106667pt;}
.y84_c00012{bottom:417.493333pt;}
.y85_c00012{bottom:419.026667pt;}
.y88_c00012{bottom:419.226667pt;}
.y83_c00012{bottom:434.440000pt;}
.y7f_c00012{bottom:435.773333pt;}
.y81_c00012{bottom:436.360000pt;}
.y82_c00012{bottom:436.560000pt;}
.y80_c00012{bottom:437.693333pt;}
.y79_c00012{bottom:451.773333pt;}
.y7d_c00012{bottom:452.373333pt;}
.y7c_c00012{bottom:453.106667pt;}
.y77_c00012{bottom:453.693333pt;}
.y78_c00012{bottom:453.706667pt;}
.y7a_c00012{bottom:453.893333pt;}
.y76_c00012{bottom:454.066667pt;}
.y7b_c00012{bottom:454.640000pt;}
.y7e_c00012{bottom:455.026667pt;}
.y74_c00012{bottom:470.066667pt;}
.y71_c00012{bottom:470.440000pt;}
.y75_c00012{bottom:471.226667pt;}
.y72_c00012{bottom:471.400000pt;}
.y6f_c00012{bottom:471.600000pt;}
.y70_c00012{bottom:472.360000pt;}
.y73_c00012{bottom:472.373333pt;}
.y6d_c00012{bottom:486.440000pt;}
.y6c_c00012{bottom:487.773333pt;}
.y6a_c00012{bottom:488.733333pt;}
.y68_c00012{bottom:489.106667pt;}
.y6b_c00012{bottom:489.306667pt;}
.y69_c00012{bottom:489.693333pt;}
.y6e_c00012{bottom:490.640000pt;}
.y65_c00012{bottom:505.106667pt;}
.y66_c00012{bottom:506.066667pt;}
.y67_c00012{bottom:506.640000pt;}
.y64_c00012{bottom:507.026667pt;}
.y63_c00012{bottom:508.360000pt;}
.y61_c00012{bottom:521.106667pt;}
.y62_c00012{bottom:522.440000pt;}
.y5f_c00012{bottom:522.826667pt;}
.y60_c00012{bottom:524.360000pt;}
.y5c_c00012{bottom:539.773333pt;}
.y5a_c00012{bottom:541.106667pt;}
.y5e_c00012{bottom:541.693333pt;}
.y5b_c00012{bottom:542.640000pt;}
.y5d_c00012{bottom:543.026667pt;}
.y59_c00012{bottom:557.106667pt;}
.y56_c00012{bottom:558.440000pt;}
.y58_c00012{bottom:559.226667pt;}
.y57_c00012{bottom:559.973333pt;}
.y55_c00012{bottom:560.360000pt;}
.y51_c00012{bottom:575.773333pt;}
.y52_c00012{bottom:576.360000pt;}
.y54_c00012{bottom:577.306667pt;}
.y53_c00012{bottom:577.693333pt;}
.y4d_c00012{bottom:593.106667pt;}
.y50_c00012{bottom:593.893333pt;}
.y4c_c00012{bottom:594.066667pt;}
.y4f_c00012{bottom:594.640000pt;}
.y4e_c00012{bottom:595.026667pt;}
.y4b_c00012{bottom:596.360000pt;}
.y49_c00012{bottom:610.440000pt;}
.y48_c00012{bottom:612.360000pt;}
.y4a_c00012{bottom:612.560000pt;}
.y47_c00012{bottom:613.693333pt;}
.y46_c00012{bottom:627.026667pt;}
.y43_c00012{bottom:627.773333pt;}
.y45_c00012{bottom:628.733333pt;}
.y44_c00012{bottom:629.693333pt;}
.y42_c00012{bottom:631.026667pt;}
.y40_c00012{bottom:645.106667pt;}
.y3e_c00012{bottom:645.493333pt;}
.y3f_c00012{bottom:647.026667pt;}
.y41_c00012{bottom:647.973333pt;}
.y3c_c00012{bottom:662.440000pt;}
.y3d_c00012{bottom:664.360000pt;}
.y3b_c00012{bottom:680.733333pt;}
.y3a_c00012{bottom:681.106667pt;}
.y39_c00012{bottom:681.893333pt;}
.y38_c00012{bottom:682.066667pt;}
.y37_c00012{bottom:683.026667pt;}
.y36_c00012{bottom:697.693333pt;}
.y33_c00012{bottom:698.440000pt;}
.y34_c00012{bottom:700.360000pt;}
.y35_c00012{bottom:701.306667pt;}
.y32_c00012{bottom:714.440000pt;}
.y31_c00012{bottom:715.773333pt;}
.y30_c00012{bottom:716.560000pt;}
.y2f_c00012{bottom:717.693333pt;}
.y2c_c00012{bottom:733.106667pt;}
.y2e_c00012{bottom:734.640000pt;}
.y2d_c00012{bottom:735.026667pt;}
.y2b_c00012{bottom:735.973333pt;}
.y2a_c00012{bottom:749.306667pt;}
.y27_c00012{bottom:750.440000pt;}
.y28_c00012{bottom:752.360000pt;}
.y26_c00012{bottom:752.560000pt;}
.y29_c00012{bottom:753.306667pt;}
.y21_c00012{bottom:767.773333pt;}
.y25_c00012{bottom:769.106667pt;}
.y22_c00012{bottom:769.306667pt;}
.y23_c00012{bottom:769.693333pt;}
.y20_c00012{bottom:769.893333pt;}
.y24_c00012{bottom:770.640000pt;}
.y1f_c00012{bottom:771.026667pt;}
.y1a_c00012{bottom:784.360000pt;}
.y1d_c00012{bottom:785.306667pt;}
.y1e_c00012{bottom:786.066667pt;}
.y1b_c00012{bottom:787.026667pt;}
.y1c_c00012{bottom:787.226667pt;}
.y19_c00012{bottom:788.360000pt;}
.y18_c00012{bottom:802.440000pt;}
.y13_c00012{bottom:803.400000pt;}
.y16_c00012{bottom:803.773333pt;}
.y14_c00012{bottom:804.360000pt;}
.y17_c00012{bottom:804.560000pt;}
.y15_c00012{bottom:805.306667pt;}
.y12_c00012{bottom:805.693333pt;}
.yf_c00012{bottom:821.106667pt;}
.y10_c00012{bottom:821.893333pt;}
.ye_c00012{bottom:822.640000pt;}
.yd_c00012{bottom:823.026667pt;}
.y11_c00012{bottom:823.973333pt;}
.y9_c00012{bottom:837.106667pt;}
.ya_c00012{bottom:837.306667pt;}
.yb_c00012{bottom:838.440000pt;}
.y8_c00012{bottom:839.026667pt;}
.yc_c00012{bottom:840.360000pt;}
.y6_c00012{bottom:855.773333pt;}
.y7_c00012{bottom:856.560000pt;}
.y5_c00012{bottom:857.693333pt;}
.y4_c00012{bottom:873.106667pt;}
.y3_c00012{bottom:875.026667pt;}
.y2_c00012{bottom:909.693333pt;}
.h9_c00012{height:3.739141pt;}
.h4_c00012{height:20.466875pt;}
.h8_c00012{height:22.303646pt;}
.h1_c00012{height:24.206016pt;}
.h5_c00012{height:27.879557pt;}
.h2_c00012{height:31.618698pt;}
.h6_c00012{height:35.357839pt;}
.h3_c00012{height:39.031380pt;}
.h7_c00012{height:42.770521pt;}
.ha_c00012{height:46.509661pt;}
.h0_c00012{height:1186.666667pt;}
.w0_c00012{width:782.666667pt;}
.x0_c00012{left:0.000000pt;}
.x10_c00012{left:134.293333pt;}
.x2d_c00012{left:136.373333pt;}
.x3_c00012{left:149.333333pt;}
.x39_c00012{left:150.666667pt;}
.x8b_c00012{left:152.000000pt;}
.x56_c00012{left:153.333333pt;}
.x11_c00012{left:155.040000pt;}
.xe2_c00012{left:156.373333pt;}
.xf6_c00012{left:159.626667pt;}
.xce_c00012{left:162.293333pt;}
.x2e_c00012{left:166.666667pt;}
.x3a_c00012{left:167.626667pt;}
.xbf_c00012{left:168.960000pt;}
.x5d_c00012{left:174.666667pt;}
.xdb_c00012{left:175.626667pt;}
.x4_c00012{left:178.293333pt;}
.xba_c00012{left:180.000000pt;}
.xad_c00012{left:181.333333pt;}
.x12_c00012{left:183.040000pt;}
.x68_c00012{left:184.000000pt;}
.xcb_c00012{left:185.333333pt;}
.xb1_c00012{left:186.293333pt;}
.xf7_c00012{left:188.000000pt;}
.xe7_c00012{left:190.666667pt;}
.xc3_c00012{left:192.000000pt;}
.x9b_c00012{left:193.333333pt;}
.x23_c00012{left:197.333333pt;}
.x1a_c00012{left:198.293333pt;}
.x4f_c00012{left:200.000000pt;}
.xa8_c00012{left:201.333333pt;}
.x57_c00012{left:202.666667pt;}
.xd7_c00012{left:204.373333pt;}
.x5e_c00012{left:205.333333pt;}
.xc0_c00012{left:206.666667pt;}
.xe8_c00012{left:207.626667pt;}
.xb2_c00012{left:209.706667pt;}
.x9c_c00012{left:210.666667pt;}
.x3b_c00012{left:211.626667pt;}
.x92_c00012{left:214.666667pt;}
.x1b_c00012{left:215.626667pt;}
.x50_c00012{left:217.333333pt;}
.x95_c00012{left:218.293333pt;}
.xeb_c00012{left:221.333333pt;}
.xe3_c00012{left:224.000000pt;}
.xa9_c00012{left:225.333333pt;}
.x5f_c00012{left:228.373333pt;}
.x2f_c00012{left:229.333333pt;}
.xdc_c00012{left:230.666667pt;}
.x3c_c00012{left:238.293333pt;}
.x80_c00012{left:241.333333pt;}
.xae_c00012{left:244.000000pt;}
.xbb_c00012{left:246.666667pt;}
.x5_c00012{left:247.626667pt;}
.x47_c00012{left:249.333333pt;}
.x58_c00012{left:252.373333pt;}
.x69_c00012{left:253.333333pt;}
.x84_c00012{left:257.333333pt;}
.x13_c00012{left:258.666667pt;}
.x24_c00012{left:259.626667pt;}
.xb3_c00012{left:262.293333pt;}
.x6_c00012{left:264.373333pt;}
.x30_c00012{left:265.333333pt;}
.x9d_c00012{left:268.000000pt;}
.x7c_c00012{left:270.293333pt;}
.xa1_c00012{left:273.333333pt;}
.xd3_c00012{left:274.293333pt;}
.x1c_c00012{left:278.666667pt;}
.xec_c00012{left:280.373333pt;}
.x48_c00012{left:281.333333pt;}
.xaa_c00012{left:284.373333pt;}
.x76_c00012{left:288.000000pt;}
.x7_c00012{left:289.706667pt;}
.x96_c00012{left:294.666667pt;}
.x25_c00012{left:296.000000pt;}
.x71_c00012{left:297.706667pt;}
.xc4_c00012{left:298.666667pt;}
.x3d_c00012{left:300.000000pt;}
.xed_c00012{left:302.666667pt;}
.xe9_c00012{left:304.000000pt;}
.xe4_c00012{left:305.333333pt;}
.xb4_c00012{left:306.666667pt;}
.x49_c00012{left:309.706667pt;}
.x6a_c00012{left:310.666667pt;}
.x60_c00012{left:312.373333pt;}
.xdd_c00012{left:314.666667pt;}
.xd4_c00012{left:317.333333pt;}
.x77_c00012{left:319.040000pt;}
.x93_c00012{left:321.333333pt;}
.x72_c00012{left:322.293333pt;}
.xaf_c00012{left:324.000000pt;}
.x3e_c00012{left:325.333333pt;}
.x97_c00012{left:326.293333pt;}
.x2_c00012{left:329.333333pt;}
.xa2_c00012{left:331.626667pt;}
.xbc_c00012{left:333.333333pt;}
.x14_c00012{left:334.666667pt;}
.x51_c00012{left:336.000000pt;}
.x8c_c00012{left:338.666667pt;}
.x1d_c00012{left:340.373333pt;}
.xcf_c00012{left:341.333333pt;}
.x85_c00012{left:342.666667pt;}
.xab_c00012{left:344.000000pt;}
.x8_c00012{left:346.293333pt;}
.x31_c00012{left:347.626667pt;}
.x3f_c00012{left:348.960000pt;}
.x61_c00012{left:350.666667pt;}
.xee_c00012{left:351.626667pt;}
.xde_c00012{left:354.666667pt;}
.xf8_c00012{left:356.960000pt;}
.x73_c00012{left:358.666667pt;}
.xf3_c00012{left:361.706667pt;}
.x32_c00012{left:364.373333pt;}
.x40_c00012{left:365.333333pt;}
.x15_c00012{left:367.040000pt;}
.x59_c00012{left:368.960000pt;}
.xd8_c00012{left:370.293333pt;}
.x1e_c00012{left:372.000000pt;}
.x52_c00012{left:373.333333pt;}
.x9e_c00012{left:375.040000pt;}
.x26_c00012{left:377.333333pt;}
.xc9_c00012{left:379.626667pt;}
.x78_c00012{left:381.333333pt;}
.x41_c00012{left:382.666667pt;}
.xd0_c00012{left:384.000000pt;}
.x74_c00012{left:385.333333pt;}
.xef_c00012{left:386.666667pt;}
.x33_c00012{left:387.626667pt;}
.x98_c00012{left:390.666667pt;}
.xd5_c00012{left:392.000000pt;}
.x6b_c00012{left:393.333333pt;}
.x81_c00012{left:395.626667pt;}
.x16_c00012{left:398.666667pt;}
.xf0_c00012{left:400.000000pt;}
.x4a_c00012{left:402.666667pt;}
.x75_c00012{left:404.000000pt;}
.x62_c00012{left:405.333333pt;}
.x1f_c00012{left:406.666667pt;}
.x9_c00012{left:408.000000pt;}
.x7d_c00012{left:411.626667pt;}
.x27_c00012{left:412.960000pt;}
.xc1_c00012{left:415.626667pt;}
.xc5_c00012{left:416.960000pt;}
.x4b_c00012{left:418.666667pt;}
.x6c_c00012{left:420.000000pt;}
.xe5_c00012{left:422.293333pt;}
.xa_c00012{left:423.626667pt;}
.x63_c00012{left:425.333333pt;}
.x42_c00012{left:426.666667pt;}
.x34_c00012{left:428.000000pt;}
.xf4_c00012{left:429.333333pt;}
.xb5_c00012{left:430.293333pt;}
.xdf_c00012{left:432.000000pt;}
.x94_c00012{left:432.960000pt;}
.x53_c00012{left:435.626667pt;}
.x8d_c00012{left:437.333333pt;}
.xbd_c00012{left:439.040000pt;}
.xb_c00012{left:440.960000pt;}
.x79_c00012{left:442.293333pt;}
.x9f_c00012{left:444.960000pt;}
.x86_c00012{left:446.666667pt;}
.xe0_c00012{left:448.373333pt;}
.x20_c00012{left:449.706667pt;}
.x5a_c00012{left:452.960000pt;}
.xea_c00012{left:455.626667pt;}
.x82_c00012{left:458.666667pt;}
.xc6_c00012{left:461.706667pt;}
.xca_c00012{left:463.040000pt;}
.xd9_c00012{left:466.666667pt;}
.x87_c00012{left:469.706667pt;}
.xd1_c00012{left:470.666667pt;}
.xbe_c00012{left:472.373333pt;}
.x35_c00012{left:473.333333pt;}
.x8e_c00012{left:475.626667pt;}
.x28_c00012{left:478.666667pt;}
.x7a_c00012{left:479.626667pt;}
.x17_c00012{left:481.333333pt;}
.x64_c00012{left:482.293333pt;}
.x54_c00012{left:484.000000pt;}
.xb6_c00012{left:485.333333pt;}
.xf5_c00012{left:489.333333pt;}
.xc_c00012{left:497.706667pt;}
.xa3_c00012{left:498.666667pt;}
.x43_c00012{left:500.373333pt;}
.xb7_c00012{left:504.373333pt;}
.x6d_c00012{left:505.333333pt;}
.xd6_c00012{left:508.000000pt;}
.xb0_c00012{left:510.666667pt;}
.x65_c00012{left:512.960000pt;}
.x21_c00012{left:514.293333pt;}
.x83_c00012{left:516.373333pt;}
.xa4_c00012{left:518.293333pt;}
.x88_c00012{left:521.333333pt;}
.x4c_c00012{left:522.666667pt;}
.xe6_c00012{left:523.626667pt;}
.x6e_c00012{left:525.333333pt;}
.xf1_c00012{left:527.040000pt;}
.x7e_c00012{left:528.573333pt;}
.x44_c00012{left:529.706667pt;}
.x5b_c00012{left:530.666667pt;}
.xda_c00012{left:532.000000pt;}
.x99_c00012{left:534.666667pt;}
.x8f_c00012{left:538.666667pt;}
.xf9_c00012{left:541.333333pt;}
.x29_c00012{left:544.000000pt;}
.xac_c00012{left:546.666667pt;}
.x4d_c00012{left:549.706667pt;}
.x36_c00012{left:552.000000pt;}
.x18_c00012{left:553.333333pt;}
.xc7_c00012{left:555.626667pt;}
.xfa_c00012{left:556.960000pt;}
.x45_c00012{left:560.000000pt;}
.x66_c00012{left:561.133333pt;}
.x2a_c00012{left:564.000000pt;}
.x6f_c00012{left:566.666667pt;}
.xb8_c00012{left:569.706667pt;}
.xcc_c00012{left:570.666667pt;}
.xd_c00012{left:572.000000pt;}
.x7f_c00012{left:574.293333pt;}
.xc2_c00012{left:577.333333pt;}
.x22_c00012{left:578.666667pt;}
.xa5_c00012{left:580.000000pt;}
.x89_c00012{left:583.040000pt;}
.xf2_c00012{left:585.706667pt;}
.x4e_c00012{left:586.666667pt;}
.xe_c00012{left:589.706667pt;}
.x2b_c00012{left:591.800000pt;}
.x90_c00012{left:593.333333pt;}
.x37_c00012{left:595.040000pt;}
.xa6_c00012{left:596.373333pt;}
.x46_c00012{left:597.333333pt;}
.xd2_c00012{left:598.293333pt;}
.xc8_c00012{left:601.333333pt;}
.xcd_c00012{left:603.040000pt;}
.x67_c00012{left:605.333333pt;}
.xe1_c00012{left:606.666667pt;}
.x7b_c00012{left:609.333333pt;}
.x91_c00012{left:610.293333pt;}
.x8a_c00012{left:611.626667pt;}
.xf_c00012{left:613.333333pt;}
.xb9_c00012{left:614.293333pt;}
.xa0_c00012{left:616.000000pt;}
.x38_c00012{left:618.666667pt;}
.x5c_c00012{left:620.373333pt;}
.xa7_c00012{left:621.706667pt;}
.x55_c00012{left:622.666667pt;}
.x2c_c00012{left:624.960000pt;}
.x70_c00012{left:628.373333pt;}
.x9a_c00012{left:632.000000pt;}
.x19_c00012{left:633.333333pt;}
.x1_c00012{left:653.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_908fdc24331153907ed2aa7d.woff2')format("woff");}.ff1_c00013{font-family:ff1_c00013;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m78_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);}
.m4b_c00013{transform:matrix(0.330905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330905,0.000000,0.000000,0.250000,0,0);}
.m3c_c00013{transform:matrix(0.336273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336273,0.000000,0.000000,0.250000,0,0);}
.m26_c00013{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m2f_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);}
.m93_c00013{transform:matrix(0.354360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354360,0.000000,0.000000,0.250000,0,0);}
.m62_c00013{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m22_c00013{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m29_c00013{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mb3_c00013{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.md9_c00013{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m44_c00013{transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);}
.med_c00013{transform:matrix(0.383819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383819,0.000000,0.000000,0.250000,0,0);}
.m1e_c00013{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.m1a_c00013{transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);}
.ma1_c00013{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.mf4_c00013{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m60_c00013{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m106_c00013{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.mbf_c00013{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.mfa_c00013{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.mc5_c00013{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m63_c00013{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m69_c00013{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m48_c00013{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);}
.m5d_c00013{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m67_c00013{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mee_c00013{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m6a_c00013{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m4_c00013{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m11_c00013{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m50_c00013{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m9b_c00013{transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);}
.m75_c00013{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m66_c00013{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m82_c00013{transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);}
.m46_c00013{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m79_c00013{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m3d_c00013{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m74_c00013{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m4d_c00013{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.me3_c00013{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m56_c00013{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m103_c00013{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.md1_c00013{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m86_c00013{transform:matrix(0.418831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418831,0.000000,0.000000,0.250000,0,0);}
.m10f_c00013{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mf3_c00013{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.mdd_c00013{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m45_c00013{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mb9_c00013{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mb4_c00013{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.mec_c00013{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m3b_c00013{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m25_c00013{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m20_c00013{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m2c_c00013{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m10e_c00013{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m23_c00013{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m2d_c00013{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m100_c00013{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m5f_c00013{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m31_c00013{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mae_c00013{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.mc0_c00013{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m94_c00013{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m41_c00013{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m73_c00013{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.mb6_c00013{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m64_c00013{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m52_c00013{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mb_c00013{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m10a_c00013{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.mde_c00013{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m4a_c00013{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.mc8_c00013{transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);}
.m6d_c00013{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.mab_c00013{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m17_c00013{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m77_c00013{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m85_c00013{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.me8_c00013{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.m49_c00013{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m8f_c00013{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.ma0_c00013{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m3e_c00013{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m10d_c00013{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m54_c00013{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m87_c00013{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m8e_c00013{transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);}
.mc_c00013{transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);}
.m30_c00013{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m101_c00013{transform:matrix(0.479592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479592,0.000000,0.000000,0.250000,0,0);}
.md_c00013{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m35_c00013{transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);}
.m72_c00013{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m1b_c00013{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mcf_c00013{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m39_c00013{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.md4_c00013{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.ma6_c00013{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m7b_c00013{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m1d_c00013{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m76_c00013{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.mf9_c00013{transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);}
.mf7_c00013{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m3f_c00013{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m88_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);}
.m9f_c00013{transform:matrix(0.503529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503529,0.000000,0.000000,0.250000,0,0);}
.m5e_c00013{transform:matrix(0.504638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504638,0.000000,0.000000,0.250000,0,0);}
.mcb_c00013{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m51_c00013{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m111_c00013{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m7e_c00013{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);}
.m2a_c00013{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m84_c00013{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.mc6_c00013{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m104_c00013{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m19_c00013{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.mdb_c00013{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m3a_c00013{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mc1_c00013{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.maa_c00013{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m34_c00013{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mf6_c00013{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.mf1_c00013{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m9e_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);}
.m14_c00013{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m7f_c00013{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.md0_c00013{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mda_c00013{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.ma9_c00013{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.m6b_c00013{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mac_c00013{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m27_c00013{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.mce_c00013{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.me9_c00013{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.md2_c00013{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mfe_c00013{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.mea_c00013{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m8b_c00013{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m5_c00013{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m5c_c00013{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.mf8_c00013{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m15_c00013{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m4f_c00013{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m40_c00013{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mc4_c00013{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m107_c00013{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m71_c00013{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m3_c00013{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m42_c00013{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m37_c00013{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m96_c00013{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);}
.m4e_c00013{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m80_c00013{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m102_c00013{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m21_c00013{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m9d_c00013{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m108_c00013{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m6_c00013{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m16_c00013{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m58_c00013{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m5b_c00013{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.maf_c00013{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m109_c00013{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m9c_c00013{transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);}
.m13_c00013{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.ma2_c00013{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m53_c00013{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mad_c00013{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.md5_c00013{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m8d_c00013{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m110_c00013{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m32_c00013{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m6f_c00013{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mf5_c00013{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m99_c00013{transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);}
.m9_c00013{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m36_c00013{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.mc9_c00013{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mb0_c00013{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m5a_c00013{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m47_c00013{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.me5_c00013{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.md3_c00013{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m105_c00013{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m10b_c00013{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.mf2_c00013{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m61_c00013{transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);}
.m7_c00013{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m18_c00013{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m1c_c00013{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mb1_c00013{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m24_c00013{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.mbb_c00013{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.md7_c00013{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.ma4_c00013{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.m4c_c00013{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m8a_c00013{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m33_c00013{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m7c_c00013{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m95_c00013{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.mba_c00013{transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);}
.mb2_c00013{transform:matrix(0.588824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588824,0.000000,0.000000,0.250000,0,0);}
.mfd_c00013{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.m6e_c00013{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m57_c00013{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m6c_c00013{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m2e_c00013{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m2_c00013{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.m10_c00013{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mcc_c00013{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);}
.mef_c00013{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.me4_c00013{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.mbc_c00013{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mb7_c00013{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m70_c00013{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.ma_c00013{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.meb_c00013{transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);}
.m91_c00013{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m97_c00013{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.me7_c00013{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m28_c00013{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.mb5_c00013{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m68_c00013{transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);}
.m83_c00013{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);}
.mc2_c00013{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_c00013{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m8_c00013{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m12_c00013{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.ma7_c00013{transform:matrix(0.637019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637019,0.000000,0.000000,0.250000,0,0);}
.mb8_c00013{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.mfb_c00013{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.mc3_c00013{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m81_c00013{transform:matrix(0.651471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651471,0.000000,0.000000,0.250000,0,0);}
.m89_c00013{transform:matrix(0.656250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00013{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m92_c00013{transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);}
.m1_c00013{transform:matrix(0.665064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665064,0.000000,0.000000,0.250000,0,0);}
.mf_c00013{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m2b_c00013{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mbd_c00013{transform:matrix(0.671765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.671765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.671765,0.000000,0.000000,0.250000,0,0);}
.m7d_c00013{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.mfc_c00013{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.me6_c00013{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.ma5_c00013{transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);}
.m7a_c00013{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m38_c00013{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.me1_c00013{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.mdc_c00013{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m90_c00013{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);}
.mdf_c00013{transform:matrix(0.714706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.714706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.714706,0.000000,0.000000,0.250000,0,0);}
.mcd_c00013{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mf0_c00013{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.me0_c00013{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.md8_c00013{transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);}
.mc7_c00013{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mff_c00013{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m59_c00013{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.me_c00013{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m65_c00013{transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);}
.m1f_c00013{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.me2_c00013{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m55_c00013{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m43_c00013{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.md6_c00013{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.mca_c00013{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m0_c00013{transform:matrix(0.846955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.846955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.846955,0.000000,0.000000,0.250000,0,0);}
.m98_c00013{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m8c_c00013{transform:matrix(0.875735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875735,0.000000,0.000000,0.250000,0,0);}
.ma8_c00013{transform:matrix(0.916912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.916912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.916912,0.000000,0.000000,0.250000,0,0);}
.m9a_c00013{transform:matrix(0.972467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.972467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.972467,0.000000,0.000000,0.250000,0,0);}
.ma3_c00013{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,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;}
.fs6_c00013{font-size:13.620000px;}
.fs0_c00013{font-size:18.720000px;}
.fs7_c00013{font-size:20.400000px;}
.fs3_c00013{font-size:25.500000px;}
.fs1_c00013{font-size:28.920000px;}
.fs4_c00013{font-size:32.340000px;}
.fs2_c00013{font-size:35.700000px;}
.fs5_c00013{font-size:39.120000px;}
.y0_c00013{bottom:0.000000px;}
.y6b_c00013{bottom:250.470000px;}
.y6f_c00013{bottom:251.325000px;}
.y70_c00013{bottom:251.970000px;}
.y6c_c00013{bottom:252.405000px;}
.y6a_c00013{bottom:252.630000px;}
.y6e_c00013{bottom:253.470000px;}
.y71_c00013{bottom:253.695000px;}
.y6d_c00013{bottom:254.550000px;}
.y72_c00013{bottom:254.970000px;}
.y69_c00013{bottom:265.470000px;}
.y64_c00013{bottom:266.325000px;}
.y67_c00013{bottom:267.630000px;}
.y66_c00013{bottom:268.470000px;}
.y68_c00013{bottom:268.695000px;}
.y65_c00013{bottom:269.550000px;}
.y62_c00013{bottom:280.470000px;}
.y5e_c00013{bottom:281.325000px;}
.y5f_c00013{bottom:282.405000px;}
.y61_c00013{bottom:282.630000px;}
.y60_c00013{bottom:283.470000px;}
.y63_c00013{bottom:284.550000px;}
.y58_c00013{bottom:295.905000px;}
.y5c_c00013{bottom:296.325000px;}
.y5d_c00013{bottom:297.405000px;}
.y5a_c00013{bottom:298.050000px;}
.y59_c00013{bottom:298.470000px;}
.y5b_c00013{bottom:299.550000px;}
.y57_c00013{bottom:301.695000px;}
.y56_c00013{bottom:332.970000px;}
.y51_c00013{bottom:334.245000px;}
.y52_c00013{bottom:334.905000px;}
.y53_c00013{bottom:335.970000px;}
.y54_c00013{bottom:336.405000px;}
.y55_c00013{bottom:339.630000px;}
.y4f_c00013{bottom:353.325000px;}
.y4d_c00013{bottom:353.745000px;}
.y50_c00013{bottom:354.405000px;}
.y4c_c00013{bottom:354.630000px;}
.y4b_c00013{bottom:354.825000px;}
.y4a_c00013{bottom:355.905000px;}
.y4e_c00013{bottom:356.970000px;}
.y48_c00013{bottom:372.405000px;}
.y45_c00013{bottom:373.245000px;}
.y46_c00013{bottom:374.970000px;}
.y47_c00013{bottom:375.405000px;}
.y49_c00013{bottom:376.470000px;}
.y42_c00013{bottom:392.745000px;}
.y44_c00013{bottom:393.630000px;}
.y41_c00013{bottom:394.905000px;}
.y43_c00013{bottom:395.130000px;}
.y3c_c00013{bottom:411.405000px;}
.y3d_c00013{bottom:412.245000px;}
.y3b_c00013{bottom:413.130000px;}
.y40_c00013{bottom:413.325000px;}
.y3f_c00013{bottom:413.745000px;}
.y3a_c00013{bottom:414.405000px;}
.y3e_c00013{bottom:415.905000px;}
.y39_c00013{bottom:432.630000px;}
.y36_c00013{bottom:432.825000px;}
.y37_c00013{bottom:433.245000px;}
.y33_c00013{bottom:433.905000px;}
.y35_c00013{bottom:434.130000px;}
.y38_c00013{bottom:434.970000px;}
.y34_c00013{bottom:435.405000px;}
.y32_c00013{bottom:451.245000px;}
.y2e_c00013{bottom:451.680000px;}
.y2d_c00013{bottom:452.325000px;}
.y30_c00013{bottom:452.745000px;}
.y31_c00013{bottom:453.405000px;}
.y2f_c00013{bottom:454.905000px;}
.y29_c00013{bottom:472.245000px;}
.y2c_c00013{bottom:472.905000px;}
.y2a_c00013{bottom:473.130000px;}
.y2b_c00013{bottom:474.405000px;}
.y27_c00013{bottom:489.405000px;}
.y21_c00013{bottom:490.680000px;}
.y22_c00013{bottom:491.745000px;}
.y28_c00013{bottom:492.405000px;}
.y26_c00013{bottom:492.630000px;}
.y23_c00013{bottom:492.825000px;}
.y25_c00013{bottom:493.470000px;}
.y24_c00013{bottom:493.905000px;}
.y1f_c00013{bottom:510.825000px;}
.y1d_c00013{bottom:511.245000px;}
.y20_c00013{bottom:512.325000px;}
.y1e_c00013{bottom:513.405000px;}
.y1c_c00013{bottom:529.470000px;}
.y16_c00013{bottom:530.745000px;}
.y19_c00013{bottom:530.970000px;}
.y1a_c00013{bottom:531.630000px;}
.y17_c00013{bottom:532.245000px;}
.y1b_c00013{bottom:532.470000px;}
.y18_c00013{bottom:532.905000px;}
.y12_c00013{bottom:550.245000px;}
.y15_c00013{bottom:551.745000px;}
.y14_c00013{bottom:552.405000px;}
.y13_c00013{bottom:552.630000px;}
.y11_c00013{bottom:553.905000px;}
.y10_c00013{bottom:571.245000px;}
.ye_c00013{bottom:572.970000px;}
.yf_c00013{bottom:573.405000px;}
.yd_c00013{bottom:589.245000px;}
.ya_c00013{bottom:590.745000px;}
.yc_c00013{bottom:591.405000px;}
.y8_c00013{bottom:591.630000px;}
.yb_c00013{bottom:592.470000px;}
.y9_c00013{bottom:592.905000px;}
.y6_c00013{bottom:609.825000px;}
.y3_c00013{bottom:610.245000px;}
.y4_c00013{bottom:610.905000px;}
.y7_c00013{bottom:611.130000px;}
.y5_c00013{bottom:611.970000px;}
.y2_c00013{bottom:612.405000px;}
.ye9_c00013{bottom:629.745000px;}
.yea_c00013{bottom:631.470000px;}
.ye8_c00013{bottom:631.905000px;}
.ye6_c00013{bottom:647.325000px;}
.ye5_c00013{bottom:648.825000px;}
.ye1_c00013{bottom:649.245000px;}
.ye7_c00013{bottom:649.905000px;}
.ye3_c00013{bottom:650.130000px;}
.ye4_c00013{bottom:650.970000px;}
.ye2_c00013{bottom:651.405000px;}
.yde_c00013{bottom:667.245000px;}
.ydd_c00013{bottom:668.745000px;}
.ydf_c00013{bottom:669.630000px;}
.ye0_c00013{bottom:670.470000px;}
.ydc_c00013{bottom:670.905000px;}
.yda_c00013{bottom:688.245000px;}
.ydb_c00013{bottom:688.905000px;}
.yd9_c00013{bottom:690.405000px;}
.yd5_c00013{bottom:707.745000px;}
.yd8_c00013{bottom:708.405000px;}
.yd7_c00013{bottom:709.905000px;}
.yd6_c00013{bottom:710.970000px;}
.yd4_c00013{bottom:727.245000px;}
.yd0_c00013{bottom:728.130000px;}
.yd1_c00013{bottom:728.325000px;}
.yd3_c00013{bottom:728.970000px;}
.yd2_c00013{bottom:729.405000px;}
.yce_c00013{bottom:746.745000px;}
.ycd_c00013{bottom:748.905000px;}
.ycf_c00013{bottom:749.130000px;}
.yca_c00013{bottom:766.245000px;}
.yc8_c00013{bottom:767.745000px;}
.yc6_c00013{bottom:768.405000px;}
.yc7_c00013{bottom:768.630000px;}
.ycc_c00013{bottom:769.470000px;}
.yc9_c00013{bottom:769.905000px;}
.ycb_c00013{bottom:770.970000px;}
.yc1_c00013{bottom:785.745000px;}
.yc4_c00013{bottom:785.970000px;}
.yc5_c00013{bottom:787.905000px;}
.yc3_c00013{bottom:788.130000px;}
.yc2_c00013{bottom:788.970000px;}
.ybd_c00013{bottom:804.405000px;}
.yc0_c00013{bottom:805.245000px;}
.ybf_c00013{bottom:806.325000px;}
.ybc_c00013{bottom:807.405000px;}
.ybe_c00013{bottom:807.630000px;}
.yb5_c00013{bottom:823.905000px;}
.ybb_c00013{bottom:824.745000px;}
.yb7_c00013{bottom:826.245000px;}
.yba_c00013{bottom:826.905000px;}
.yb8_c00013{bottom:827.130000px;}
.yb9_c00013{bottom:827.970000px;}
.yb6_c00013{bottom:828.405000px;}
.yb1_c00013{bottom:844.680000px;}
.yaf_c00013{bottom:845.745000px;}
.yb4_c00013{bottom:846.630000px;}
.yb3_c00013{bottom:847.470000px;}
.yb0_c00013{bottom:847.905000px;}
.yb2_c00013{bottom:848.130000px;}
.yac_c00013{bottom:865.245000px;}
.yad_c00013{bottom:866.970000px;}
.yae_c00013{bottom:867.405000px;}
.yab_c00013{bottom:868.470000px;}
.ya5_c00013{bottom:884.745000px;}
.yaa_c00013{bottom:885.405000px;}
.ya8_c00013{bottom:885.630000px;}
.ya9_c00013{bottom:886.470000px;}
.ya7_c00013{bottom:886.905000px;}
.ya6_c00013{bottom:887.970000px;}
.ya2_c00013{bottom:904.245000px;}
.ya4_c00013{bottom:905.130000px;}
.ya3_c00013{bottom:905.970000px;}
.ya1_c00013{bottom:906.405000px;}
.y9e_c00013{bottom:923.745000px;}
.y9c_c00013{bottom:925.050000px;}
.ya0_c00013{bottom:925.470000px;}
.y9f_c00013{bottom:925.905000px;}
.y9d_c00013{bottom:926.130000px;}
.y9b_c00013{bottom:927.405000px;}
.y9a_c00013{bottom:944.130000px;}
.y95_c00013{bottom:944.745000px;}
.y99_c00013{bottom:945.405000px;}
.y98_c00013{bottom:945.630000px;}
.y97_c00013{bottom:946.905000px;}
.y96_c00013{bottom:947.970000px;}
.y90_c00013{bottom:962.745000px;}
.y93_c00013{bottom:964.470000px;}
.y92_c00013{bottom:964.905000px;}
.y94_c00013{bottom:965.130000px;}
.y91_c00013{bottom:965.970000px;}
.y8c_c00013{bottom:982.245000px;}
.y8f_c00013{bottom:983.325000px;}
.y8e_c00013{bottom:984.405000px;}
.y8d_c00013{bottom:984.630000px;}
.y87_c00013{bottom:1003.245000px;}
.y8a_c00013{bottom:1003.470000px;}
.y8b_c00013{bottom:1003.905000px;}
.y88_c00013{bottom:1004.130000px;}
.y89_c00013{bottom:1004.970000px;}
.y86_c00013{bottom:1005.405000px;}
.y85_c00013{bottom:1020.825000px;}
.y84_c00013{bottom:1021.245000px;}
.y82_c00013{bottom:1022.745000px;}
.y80_c00013{bottom:1024.470000px;}
.y83_c00013{bottom:1024.905000px;}
.y81_c00013{bottom:1025.970000px;}
.y7d_c00013{bottom:1040.745000px;}
.y7a_c00013{bottom:1040.970000px;}
.y7f_c00013{bottom:1041.630000px;}
.y7b_c00013{bottom:1042.245000px;}
.y7e_c00013{bottom:1042.905000px;}
.y7c_c00013{bottom:1043.970000px;}
.y79_c00013{bottom:1044.405000px;}
.y77_c00013{bottom:1061.745000px;}
.y78_c00013{bottom:1062.405000px;}
.y76_c00013{bottom:1062.630000px;}
.y75_c00013{bottom:1062.825000px;}
.y73_c00013{bottom:1063.470000px;}
.y74_c00013{bottom:1063.905000px;}
.y1_c00013{bottom:1103.130000px;}
.h7_c00013{height:16.752334px;}
.h1_c00013{height:23.025234px;}
.h8_c00013{height:25.091602px;}
.h4_c00013{height:31.364502px;}
.h2_c00013{height:35.571035px;}
.h5_c00013{height:39.777568px;}
.h3_c00013{height:43.910303px;}
.h6_c00013{height:48.116836px;}
.h0_c00013{height:1335.000000px;}
.w0_c00013{width:880.500000px;}
.x0_c00013{left:0.000000px;}
.x9b_c00013{left:150.000000px;}
.x5a_c00013{left:151.500000px;}
.x1_c00013{left:153.000000px;}
.x38_c00013{left:154.080000px;}
.x93_c00013{left:165.000000px;}
.x3_c00013{left:169.500000px;}
.x6e_c00013{left:172.500000px;}
.x1e_c00013{left:173.580000px;}
.x13_c00013{left:175.920000px;}
.x76_c00013{left:178.500000px;}
.x103_c00013{left:180.000000px;}
.x46_c00013{left:181.500000px;}
.xeb_c00013{left:182.580000px;}
.xdf_c00013{left:184.080000px;}
.x109_c00013{left:185.580000px;}
.x6f_c00013{left:187.080000px;}
.x20_c00013{left:191.580000px;}
.xa6_c00013{left:195.000000px;}
.xc9_c00013{left:196.500000px;}
.xbd_c00013{left:199.500000px;}
.x2b_c00013{left:200.580000px;}
.x64_c00013{left:202.920000px;}
.x4f_c00013{left:205.500000px;}
.xb2_c00013{left:207.000000px;}
.x4_c00013{left:208.920000px;}
.x14_c00013{left:213.000000px;}
.x21_c00013{left:214.080000px;}
.x94_c00013{left:215.580000px;}
.x104_c00013{left:217.920000px;}
.xb9_c00013{left:220.920000px;}
.xe6_c00013{left:222.000000px;}
.x2c_c00013{left:223.920000px;}
.x50_c00013{left:225.000000px;}
.xbe_c00013{left:226.920000px;}
.xd1_c00013{left:229.080000px;}
.xf4_c00013{left:231.000000px;}
.x1f_c00013{left:232.080000px;}
.x39_c00013{left:234.420000px;}
.xd5_c00013{left:235.500000px;}
.x5_c00013{left:237.000000px;}
.xff_c00013{left:238.920000px;}
.xec_c00013{left:240.420000px;}
.xb3_c00013{left:244.920000px;}
.xa7_c00013{left:247.500000px;}
.x2d_c00013{left:249.000000px;}
.xd6_c00013{left:253.920000px;}
.xe7_c00013{left:255.000000px;}
.x70_c00013{left:256.080000px;}
.xfa_c00013{left:258.000000px;}
.x95_c00013{left:259.080000px;}
.x5b_c00013{left:261.000000px;}
.x22_c00013{left:262.920000px;}
.x9c_c00013{left:265.500000px;}
.x77_c00013{left:268.500000px;}
.xfb_c00013{left:271.080000px;}
.x100_c00013{left:273.420000px;}
.x47_c00013{left:274.920000px;}
.x15_c00013{left:276.000000px;}
.x84_c00013{left:277.500000px;}
.x10d_c00013{left:279.420000px;}
.x65_c00013{left:282.000000px;}
.x78_c00013{left:283.500000px;}
.x7e_c00013{left:284.580000px;}
.xc4_c00013{left:289.500000px;}
.x111_c00013{left:291.000000px;}
.x3a_c00013{left:293.580000px;}
.x16_c00013{left:297.420000px;}
.x8b_c00013{left:298.500000px;}
.xad_c00013{left:301.500000px;}
.xba_c00013{left:302.580000px;}
.x5c_c00013{left:306.000000px;}
.x51_c00013{left:307.080000px;}
.x96_c00013{left:308.580000px;}
.x10a_c00013{left:312.420000px;}
.x6_c00013{left:313.920000px;}
.x85_c00013{left:315.000000px;}
.x8c_c00013{left:318.000000px;}
.xb4_c00013{left:319.080000px;}
.x3b_c00013{left:322.500000px;}
.x71_c00013{left:325.080000px;}
.x17_c00013{left:327.420000px;}
.x112_c00013{left:328.920000px;}
.x52_c00013{left:330.420000px;}
.xed_c00013{left:331.500000px;}
.xd7_c00013{left:333.420000px;}
.x23_c00013{left:334.500000px;}
.x101_c00013{left:335.580000px;}
.xa8_c00013{left:337.500000px;}
.x7_c00013{left:338.580000px;}
.xb5_c00013{left:342.000000px;}
.xf5_c00013{left:345.420000px;}
.x10e_c00013{left:346.500000px;}
.xe8_c00013{left:349.500000px;}
.x5d_c00013{left:351.420000px;}
.xfc_c00013{left:352.920000px;}
.xae_c00013{left:355.080000px;}
.x66_c00013{left:357.000000px;}
.xb6_c00013{left:358.920000px;}
.x24_c00013{left:361.500000px;}
.x2e_c00013{left:362.580000px;}
.x9d_c00013{left:364.500000px;}
.x3c_c00013{left:366.000000px;}
.xd8_c00013{left:369.000000px;}
.xa9_c00013{left:373.500000px;}
.x79_c00013{left:375.420000px;}
.x10f_c00013{left:376.920000px;}
.x8_c00013{left:379.080000px;}
.x3d_c00013{left:380.580000px;}
.x5e_c00013{left:382.080000px;}
.xb7_c00013{left:384.420000px;}
.x2f_c00013{left:385.500000px;}
.xfd_c00013{left:387.000000px;}
.x7f_c00013{left:388.500000px;}
.x48_c00013{left:390.000000px;}
.xcc_c00013{left:391.500000px;}
.x2_c00013{left:393.000000px;}
.x30_c00013{left:396.000000px;}
.x9_c00013{left:397.920000px;}
.xbb_c00013{left:400.080000px;}
.x7a_c00013{left:402.000000px;}
.x67_c00013{left:403.500000px;}
.xf6_c00013{left:405.000000px;}
.xd9_c00013{left:406.080000px;}
.x53_c00013{left:408.000000px;}
.xbf_c00013{left:409.500000px;}
.xcd_c00013{left:411.000000px;}
.x49_c00013{left:412.080000px;}
.x68_c00013{left:417.000000px;}
.xe0_c00013{left:418.500000px;}
.x18_c00013{left:421.500000px;}
.xda_c00013{left:423.420000px;}
.xa_c00013{left:424.500000px;}
.x9e_c00013{left:427.920000px;}
.xe1_c00013{left:430.500000px;}
.x25_c00013{left:433.080000px;}
.x5f_c00013{left:436.080000px;}
.x113_c00013{left:439.080000px;}
.xaa_c00013{left:440.580000px;}
.x10b_c00013{left:443.580000px;}
.x86_c00013{left:445.500000px;}
.xf0_c00013{left:447.000000px;}
.xee_c00013{left:450.420000px;}
.x97_c00013{left:453.000000px;}
.x3e_c00013{left:454.500000px;}
.x26_c00013{left:456.420000px;}
.x54_c00013{left:457.500000px;}
.xb_c00013{left:459.420000px;}
.x80_c00013{left:461.580000px;}
.x31_c00013{left:463.500000px;}
.xc0_c00013{left:465.000000px;}
.x9f_c00013{left:466.080000px;}
.xe2_c00013{left:468.420000px;}
.x114_c00013{left:471.000000px;}
.x87_c00013{left:472.080000px;}
.x4a_c00013{left:474.000000px;}
.x55_c00013{left:475.080000px;}
.xab_c00013{left:477.000000px;}
.x102_c00013{left:478.080000px;}
.x32_c00013{left:481.920000px;}
.x27_c00013{left:483.000000px;}
.x7b_c00013{left:484.080000px;}
.xc5_c00013{left:486.000000px;}
.x3f_c00013{left:487.080000px;}
.xac_c00013{left:489.420000px;}
.xdb_c00013{left:492.420000px;}
.xa0_c00013{left:493.500000px;}
.x19_c00013{left:494.580000px;}
.xb8_c00013{left:496.920000px;}
.xf1_c00013{left:499.500000px;}
.xf7_c00013{left:502.500000px;}
.xf9_c00013{left:504.000000px;}
.xe3_c00013{left:505.500000px;}
.x33_c00013{left:507.000000px;}
.x60_c00013{left:510.420000px;}
.x106_c00013{left:511.500000px;}
.xc_c00013{left:513.000000px;}
.xce_c00013{left:514.080000px;}
.x40_c00013{left:516.000000px;}
.x1a_c00013{left:517.080000px;}
.x98_c00013{left:519.000000px;}
.xe9_c00013{left:520.920000px;}
.x69_c00013{left:523.080000px;}
.xe4_c00013{left:525.000000px;}
.xca_c00013{left:526.920000px;}
.x8d_c00013{left:529.920000px;}
.xd_c00013{left:531.420000px;}
.x56_c00013{left:533.580000px;}
.x99_c00013{left:535.500000px;}
.x28_c00013{left:537.420000px;}
.x41_c00013{left:538.500000px;}
.xf2_c00013{left:540.000000px;}
.xa1_c00013{left:541.500000px;}
.x72_c00013{left:544.920000px;}
.xc6_c00013{left:546.420000px;}
.x4b_c00013{left:549.000000px;}
.xaf_c00013{left:553.080000px;}
.xa2_c00013{left:555.000000px;}
.x8e_c00013{left:556.500000px;}
.xe_c00013{left:558.000000px;}
.x9a_c00013{left:561.000000px;}
.x34_c00013{left:562.500000px;}
.xc1_c00013{left:563.580000px;}
.x1b_c00013{left:565.500000px;}
.xdc_c00013{left:570.420000px;}
.x73_c00013{left:574.920000px;}
.xea_c00013{left:576.000000px;}
.x107_c00013{left:579.420000px;}
.xe5_c00013{left:580.500000px;}
.x6a_c00013{left:581.580000px;}
.x42_c00013{left:583.500000px;}
.x61_c00013{left:585.000000px;}
.xc7_c00013{left:586.920000px;}
.xef_c00013{left:588.000000px;}
.x81_c00013{left:589.500000px;}
.xc2_c00013{left:595.920000px;}
.xdd_c00013{left:597.000000px;}
.x43_c00013{left:598.500000px;}
.xcb_c00013{left:600.000000px;}
.x6b_c00013{left:601.920000px;}
.x7c_c00013{left:603.000000px;}
.xb0_c00013{left:604.500000px;}
.x4c_c00013{left:607.500000px;}
.x8f_c00013{left:609.420000px;}
.xf_c00013{left:612.420000px;}
.x57_c00013{left:614.580000px;}
.x90_c00013{left:616.080000px;}
.x88_c00013{left:618.420000px;}
.xa3_c00013{left:621.000000px;}
.x62_c00013{left:622.500000px;}
.x44_c00013{left:623.580000px;}
.x105_c00013{left:625.500000px;}
.x91_c00013{left:626.580000px;}
.xc8_c00013{left:628.500000px;}
.x74_c00013{left:630.420000px;}
.x29_c00013{left:633.000000px;}
.x82_c00013{left:634.080000px;}
.xa4_c00013{left:637.920000px;}
.x1c_c00013{left:639.000000px;}
.x6c_c00013{left:642.420000px;}
.x35_c00013{left:644.580000px;}
.x58_c00013{left:646.080000px;}
.x110_c00013{left:649.500000px;}
.xde_c00013{left:651.000000px;}
.x92_c00013{left:652.920000px;}
.x10c_c00013{left:654.000000px;}
.x10_c00013{left:655.500000px;}
.xd2_c00013{left:658.500000px;}
.x45_c00013{left:659.580000px;}
.x36_c00013{left:661.920000px;}
.xcf_c00013{left:667.080000px;}
.x11_c00013{left:670.920000px;}
.x108_c00013{left:672.420000px;}
.xc3_c00013{left:673.500000px;}
.xf3_c00013{left:675.000000px;}
.x59_c00013{left:677.580000px;}
.xd3_c00013{left:679.500000px;}
.x83_c00013{left:684.000000px;}
.x89_c00013{left:685.500000px;}
.x4d_c00013{left:686.580000px;}
.x37_c00013{left:688.500000px;}
.x63_c00013{left:689.580000px;}
.x6d_c00013{left:691.920000px;}
.xa5_c00013{left:694.500000px;}
.x12_c00013{left:696.420000px;}
.xbc_c00013{left:697.500000px;}
.xd0_c00013{left:699.000000px;}
.xfe_c00013{left:700.080000px;}
.xd4_c00013{left:702.000000px;}
.xb1_c00013{left:703.500000px;}
.xf8_c00013{left:706.080000px;}
.x4e_c00013{left:709.920000px;}
.x1d_c00013{left:712.500000px;}
.x75_c00013{left:718.080000px;}
.x2a_c00013{left:720.000000px;}
.x8a_c00013{left:721.500000px;}
.x7d_c00013{left:723.000000px;}
@media print{
.v0_c00013{vertical-align:0.000000pt;}
.ls0_c00013{letter-spacing:0.000000pt;}
.ws0_c00013{word-spacing:0.000000pt;}
.fs6_c00013{font-size:12.106667pt;}
.fs0_c00013{font-size:16.640000pt;}
.fs7_c00013{font-size:18.133333pt;}
.fs3_c00013{font-size:22.666667pt;}
.fs1_c00013{font-size:25.706667pt;}
.fs4_c00013{font-size:28.746667pt;}
.fs2_c00013{font-size:31.733333pt;}
.fs5_c00013{font-size:34.773333pt;}
.y0_c00013{bottom:0.000000pt;}
.y6b_c00013{bottom:222.640000pt;}
.y6f_c00013{bottom:223.400000pt;}
.y70_c00013{bottom:223.973333pt;}
.y6c_c00013{bottom:224.360000pt;}
.y6a_c00013{bottom:224.560000pt;}
.y6e_c00013{bottom:225.306667pt;}
.y71_c00013{bottom:225.506667pt;}
.y6d_c00013{bottom:226.266667pt;}
.y72_c00013{bottom:226.640000pt;}
.y69_c00013{bottom:235.973333pt;}
.y64_c00013{bottom:236.733333pt;}
.y67_c00013{bottom:237.893333pt;}
.y66_c00013{bottom:238.640000pt;}
.y68_c00013{bottom:238.840000pt;}
.y65_c00013{bottom:239.600000pt;}
.y62_c00013{bottom:249.306667pt;}
.y5e_c00013{bottom:250.066667pt;}
.y5f_c00013{bottom:251.026667pt;}
.y61_c00013{bottom:251.226667pt;}
.y60_c00013{bottom:251.973333pt;}
.y63_c00013{bottom:252.933333pt;}
.y58_c00013{bottom:263.026667pt;}
.y5c_c00013{bottom:263.400000pt;}
.y5d_c00013{bottom:264.360000pt;}
.y5a_c00013{bottom:264.933333pt;}
.y59_c00013{bottom:265.306667pt;}
.y5b_c00013{bottom:266.266667pt;}
.y57_c00013{bottom:268.173333pt;}
.y56_c00013{bottom:295.973333pt;}
.y51_c00013{bottom:297.106667pt;}
.y52_c00013{bottom:297.693333pt;}
.y53_c00013{bottom:298.640000pt;}
.y54_c00013{bottom:299.026667pt;}
.y55_c00013{bottom:301.893333pt;}
.y4f_c00013{bottom:314.066667pt;}
.y4d_c00013{bottom:314.440000pt;}
.y50_c00013{bottom:315.026667pt;}
.y4c_c00013{bottom:315.226667pt;}
.y4b_c00013{bottom:315.400000pt;}
.y4a_c00013{bottom:316.360000pt;}
.y4e_c00013{bottom:317.306667pt;}
.y48_c00013{bottom:331.026667pt;}
.y45_c00013{bottom:331.773333pt;}
.y46_c00013{bottom:333.306667pt;}
.y47_c00013{bottom:333.693333pt;}
.y49_c00013{bottom:334.640000pt;}
.y42_c00013{bottom:349.106667pt;}
.y44_c00013{bottom:349.893333pt;}
.y41_c00013{bottom:351.026667pt;}
.y43_c00013{bottom:351.226667pt;}
.y3c_c00013{bottom:365.693333pt;}
.y3d_c00013{bottom:366.440000pt;}
.y3b_c00013{bottom:367.226667pt;}
.y40_c00013{bottom:367.400000pt;}
.y3f_c00013{bottom:367.773333pt;}
.y3a_c00013{bottom:368.360000pt;}
.y3e_c00013{bottom:369.693333pt;}
.y39_c00013{bottom:384.560000pt;}
.y36_c00013{bottom:384.733333pt;}
.y37_c00013{bottom:385.106667pt;}
.y33_c00013{bottom:385.693333pt;}
.y35_c00013{bottom:385.893333pt;}
.y38_c00013{bottom:386.640000pt;}
.y34_c00013{bottom:387.026667pt;}
.y32_c00013{bottom:401.106667pt;}
.y2e_c00013{bottom:401.493333pt;}
.y2d_c00013{bottom:402.066667pt;}
.y30_c00013{bottom:402.440000pt;}
.y31_c00013{bottom:403.026667pt;}
.y2f_c00013{bottom:404.360000pt;}
.y29_c00013{bottom:419.773333pt;}
.y2c_c00013{bottom:420.360000pt;}
.y2a_c00013{bottom:420.560000pt;}
.y2b_c00013{bottom:421.693333pt;}
.y27_c00013{bottom:435.026667pt;}
.y21_c00013{bottom:436.160000pt;}
.y22_c00013{bottom:437.106667pt;}
.y28_c00013{bottom:437.693333pt;}
.y26_c00013{bottom:437.893333pt;}
.y23_c00013{bottom:438.066667pt;}
.y25_c00013{bottom:438.640000pt;}
.y24_c00013{bottom:439.026667pt;}
.y1f_c00013{bottom:454.066667pt;}
.y1d_c00013{bottom:454.440000pt;}
.y20_c00013{bottom:455.400000pt;}
.y1e_c00013{bottom:456.360000pt;}
.y1c_c00013{bottom:470.640000pt;}
.y16_c00013{bottom:471.773333pt;}
.y19_c00013{bottom:471.973333pt;}
.y1a_c00013{bottom:472.560000pt;}
.y17_c00013{bottom:473.106667pt;}
.y1b_c00013{bottom:473.306667pt;}
.y18_c00013{bottom:473.693333pt;}
.y12_c00013{bottom:489.106667pt;}
.y15_c00013{bottom:490.440000pt;}
.y14_c00013{bottom:491.026667pt;}
.y13_c00013{bottom:491.226667pt;}
.y11_c00013{bottom:492.360000pt;}
.y10_c00013{bottom:507.773333pt;}
.ye_c00013{bottom:509.306667pt;}
.yf_c00013{bottom:509.693333pt;}
.yd_c00013{bottom:523.773333pt;}
.ya_c00013{bottom:525.106667pt;}
.yc_c00013{bottom:525.693333pt;}
.y8_c00013{bottom:525.893333pt;}
.yb_c00013{bottom:526.640000pt;}
.y9_c00013{bottom:527.026667pt;}
.y6_c00013{bottom:542.066667pt;}
.y3_c00013{bottom:542.440000pt;}
.y4_c00013{bottom:543.026667pt;}
.y7_c00013{bottom:543.226667pt;}
.y5_c00013{bottom:543.973333pt;}
.y2_c00013{bottom:544.360000pt;}
.ye9_c00013{bottom:559.773333pt;}
.yea_c00013{bottom:561.306667pt;}
.ye8_c00013{bottom:561.693333pt;}
.ye6_c00013{bottom:575.400000pt;}
.ye5_c00013{bottom:576.733333pt;}
.ye1_c00013{bottom:577.106667pt;}
.ye7_c00013{bottom:577.693333pt;}
.ye3_c00013{bottom:577.893333pt;}
.ye4_c00013{bottom:578.640000pt;}
.ye2_c00013{bottom:579.026667pt;}
.yde_c00013{bottom:593.106667pt;}
.ydd_c00013{bottom:594.440000pt;}
.ydf_c00013{bottom:595.226667pt;}
.ye0_c00013{bottom:595.973333pt;}
.ydc_c00013{bottom:596.360000pt;}
.yda_c00013{bottom:611.773333pt;}
.ydb_c00013{bottom:612.360000pt;}
.yd9_c00013{bottom:613.693333pt;}
.yd5_c00013{bottom:629.106667pt;}
.yd8_c00013{bottom:629.693333pt;}
.yd7_c00013{bottom:631.026667pt;}
.yd6_c00013{bottom:631.973333pt;}
.yd4_c00013{bottom:646.440000pt;}
.yd0_c00013{bottom:647.226667pt;}
.yd1_c00013{bottom:647.400000pt;}
.yd3_c00013{bottom:647.973333pt;}
.yd2_c00013{bottom:648.360000pt;}
.yce_c00013{bottom:663.773333pt;}
.ycd_c00013{bottom:665.693333pt;}
.ycf_c00013{bottom:665.893333pt;}
.yca_c00013{bottom:681.106667pt;}
.yc8_c00013{bottom:682.440000pt;}
.yc6_c00013{bottom:683.026667pt;}
.yc7_c00013{bottom:683.226667pt;}
.ycc_c00013{bottom:683.973333pt;}
.yc9_c00013{bottom:684.360000pt;}
.ycb_c00013{bottom:685.306667pt;}
.yc1_c00013{bottom:698.440000pt;}
.yc4_c00013{bottom:698.640000pt;}
.yc5_c00013{bottom:700.360000pt;}
.yc3_c00013{bottom:700.560000pt;}
.yc2_c00013{bottom:701.306667pt;}
.ybd_c00013{bottom:715.026667pt;}
.yc0_c00013{bottom:715.773333pt;}
.ybf_c00013{bottom:716.733333pt;}
.ybc_c00013{bottom:717.693333pt;}
.ybe_c00013{bottom:717.893333pt;}
.yb5_c00013{bottom:732.360000pt;}
.ybb_c00013{bottom:733.106667pt;}
.yb7_c00013{bottom:734.440000pt;}
.yba_c00013{bottom:735.026667pt;}
.yb8_c00013{bottom:735.226667pt;}
.yb9_c00013{bottom:735.973333pt;}
.yb6_c00013{bottom:736.360000pt;}
.yb1_c00013{bottom:750.826667pt;}
.yaf_c00013{bottom:751.773333pt;}
.yb4_c00013{bottom:752.560000pt;}
.yb3_c00013{bottom:753.306667pt;}
.yb0_c00013{bottom:753.693333pt;}
.yb2_c00013{bottom:753.893333pt;}
.yac_c00013{bottom:769.106667pt;}
.yad_c00013{bottom:770.640000pt;}
.yae_c00013{bottom:771.026667pt;}
.yab_c00013{bottom:771.973333pt;}
.ya5_c00013{bottom:786.440000pt;}
.yaa_c00013{bottom:787.026667pt;}
.ya8_c00013{bottom:787.226667pt;}
.ya9_c00013{bottom:787.973333pt;}
.ya7_c00013{bottom:788.360000pt;}
.ya6_c00013{bottom:789.306667pt;}
.ya2_c00013{bottom:803.773333pt;}
.ya4_c00013{bottom:804.560000pt;}
.ya3_c00013{bottom:805.306667pt;}
.ya1_c00013{bottom:805.693333pt;}
.y9e_c00013{bottom:821.106667pt;}
.y9c_c00013{bottom:822.266667pt;}
.ya0_c00013{bottom:822.640000pt;}
.y9f_c00013{bottom:823.026667pt;}
.y9d_c00013{bottom:823.226667pt;}
.y9b_c00013{bottom:824.360000pt;}
.y9a_c00013{bottom:839.226667pt;}
.y95_c00013{bottom:839.773333pt;}
.y99_c00013{bottom:840.360000pt;}
.y98_c00013{bottom:840.560000pt;}
.y97_c00013{bottom:841.693333pt;}
.y96_c00013{bottom:842.640000pt;}
.y90_c00013{bottom:855.773333pt;}
.y93_c00013{bottom:857.306667pt;}
.y92_c00013{bottom:857.693333pt;}
.y94_c00013{bottom:857.893333pt;}
.y91_c00013{bottom:858.640000pt;}
.y8c_c00013{bottom:873.106667pt;}
.y8f_c00013{bottom:874.066667pt;}
.y8e_c00013{bottom:875.026667pt;}
.y8d_c00013{bottom:875.226667pt;}
.y87_c00013{bottom:891.773333pt;}
.y8a_c00013{bottom:891.973333pt;}
.y8b_c00013{bottom:892.360000pt;}
.y88_c00013{bottom:892.560000pt;}
.y89_c00013{bottom:893.306667pt;}
.y86_c00013{bottom:893.693333pt;}
.y85_c00013{bottom:907.400000pt;}
.y84_c00013{bottom:907.773333pt;}
.y82_c00013{bottom:909.106667pt;}
.y80_c00013{bottom:910.640000pt;}
.y83_c00013{bottom:911.026667pt;}
.y81_c00013{bottom:911.973333pt;}
.y7d_c00013{bottom:925.106667pt;}
.y7a_c00013{bottom:925.306667pt;}
.y7f_c00013{bottom:925.893333pt;}
.y7b_c00013{bottom:926.440000pt;}
.y7e_c00013{bottom:927.026667pt;}
.y7c_c00013{bottom:927.973333pt;}
.y79_c00013{bottom:928.360000pt;}
.y77_c00013{bottom:943.773333pt;}
.y78_c00013{bottom:944.360000pt;}
.y76_c00013{bottom:944.560000pt;}
.y75_c00013{bottom:944.733333pt;}
.y73_c00013{bottom:945.306667pt;}
.y74_c00013{bottom:945.693333pt;}
.y1_c00013{bottom:980.560000pt;}
.h7_c00013{height:14.890964pt;}
.h1_c00013{height:20.466875pt;}
.h8_c00013{height:22.303646pt;}
.h4_c00013{height:27.879557pt;}
.h2_c00013{height:31.618698pt;}
.h5_c00013{height:35.357839pt;}
.h3_c00013{height:39.031380pt;}
.h6_c00013{height:42.770521pt;}
.h0_c00013{height:1186.666667pt;}
.w0_c00013{width:782.666667pt;}
.x0_c00013{left:0.000000pt;}
.x9b_c00013{left:133.333333pt;}
.x5a_c00013{left:134.666667pt;}
.x1_c00013{left:136.000000pt;}
.x38_c00013{left:136.960000pt;}
.x93_c00013{left:146.666667pt;}
.x3_c00013{left:150.666667pt;}
.x6e_c00013{left:153.333333pt;}
.x1e_c00013{left:154.293333pt;}
.x13_c00013{left:156.373333pt;}
.x76_c00013{left:158.666667pt;}
.x103_c00013{left:160.000000pt;}
.x46_c00013{left:161.333333pt;}
.xeb_c00013{left:162.293333pt;}
.xdf_c00013{left:163.626667pt;}
.x109_c00013{left:164.960000pt;}
.x6f_c00013{left:166.293333pt;}
.x20_c00013{left:170.293333pt;}
.xa6_c00013{left:173.333333pt;}
.xc9_c00013{left:174.666667pt;}
.xbd_c00013{left:177.333333pt;}
.x2b_c00013{left:178.293333pt;}
.x64_c00013{left:180.373333pt;}
.x4f_c00013{left:182.666667pt;}
.xb2_c00013{left:184.000000pt;}
.x4_c00013{left:185.706667pt;}
.x14_c00013{left:189.333333pt;}
.x21_c00013{left:190.293333pt;}
.x94_c00013{left:191.626667pt;}
.x104_c00013{left:193.706667pt;}
.xb9_c00013{left:196.373333pt;}
.xe6_c00013{left:197.333333pt;}
.x2c_c00013{left:199.040000pt;}
.x50_c00013{left:200.000000pt;}
.xbe_c00013{left:201.706667pt;}
.xd1_c00013{left:203.626667pt;}
.xf4_c00013{left:205.333333pt;}
.x1f_c00013{left:206.293333pt;}
.x39_c00013{left:208.373333pt;}
.xd5_c00013{left:209.333333pt;}
.x5_c00013{left:210.666667pt;}
.xff_c00013{left:212.373333pt;}
.xec_c00013{left:213.706667pt;}
.xb3_c00013{left:217.706667pt;}
.xa7_c00013{left:220.000000pt;}
.x2d_c00013{left:221.333333pt;}
.xd6_c00013{left:225.706667pt;}
.xe7_c00013{left:226.666667pt;}
.x70_c00013{left:227.626667pt;}
.xfa_c00013{left:229.333333pt;}
.x95_c00013{left:230.293333pt;}
.x5b_c00013{left:232.000000pt;}
.x22_c00013{left:233.706667pt;}
.x9c_c00013{left:236.000000pt;}
.x77_c00013{left:238.666667pt;}
.xfb_c00013{left:240.960000pt;}
.x100_c00013{left:243.040000pt;}
.x47_c00013{left:244.373333pt;}
.x15_c00013{left:245.333333pt;}
.x84_c00013{left:246.666667pt;}
.x10d_c00013{left:248.373333pt;}
.x65_c00013{left:250.666667pt;}
.x78_c00013{left:252.000000pt;}
.x7e_c00013{left:252.960000pt;}
.xc4_c00013{left:257.333333pt;}
.x111_c00013{left:258.666667pt;}
.x3a_c00013{left:260.960000pt;}
.x16_c00013{left:264.373333pt;}
.x8b_c00013{left:265.333333pt;}
.xad_c00013{left:268.000000pt;}
.xba_c00013{left:268.960000pt;}
.x5c_c00013{left:272.000000pt;}
.x51_c00013{left:272.960000pt;}
.x96_c00013{left:274.293333pt;}
.x10a_c00013{left:277.706667pt;}
.x6_c00013{left:279.040000pt;}
.x85_c00013{left:280.000000pt;}
.x8c_c00013{left:282.666667pt;}
.xb4_c00013{left:283.626667pt;}
.x3b_c00013{left:286.666667pt;}
.x71_c00013{left:288.960000pt;}
.x17_c00013{left:291.040000pt;}
.x112_c00013{left:292.373333pt;}
.x52_c00013{left:293.706667pt;}
.xed_c00013{left:294.666667pt;}
.xd7_c00013{left:296.373333pt;}
.x23_c00013{left:297.333333pt;}
.x101_c00013{left:298.293333pt;}
.xa8_c00013{left:300.000000pt;}
.x7_c00013{left:300.960000pt;}
.xb5_c00013{left:304.000000pt;}
.xf5_c00013{left:307.040000pt;}
.x10e_c00013{left:308.000000pt;}
.xe8_c00013{left:310.666667pt;}
.x5d_c00013{left:312.373333pt;}
.xfc_c00013{left:313.706667pt;}
.xae_c00013{left:315.626667pt;}
.x66_c00013{left:317.333333pt;}
.xb6_c00013{left:319.040000pt;}
.x24_c00013{left:321.333333pt;}
.x2e_c00013{left:322.293333pt;}
.x9d_c00013{left:324.000000pt;}
.x3c_c00013{left:325.333333pt;}
.xd8_c00013{left:328.000000pt;}
.xa9_c00013{left:332.000000pt;}
.x79_c00013{left:333.706667pt;}
.x10f_c00013{left:335.040000pt;}
.x8_c00013{left:336.960000pt;}
.x3d_c00013{left:338.293333pt;}
.x5e_c00013{left:339.626667pt;}
.xb7_c00013{left:341.706667pt;}
.x2f_c00013{left:342.666667pt;}
.xfd_c00013{left:344.000000pt;}
.x7f_c00013{left:345.333333pt;}
.x48_c00013{left:346.666667pt;}
.xcc_c00013{left:348.000000pt;}
.x2_c00013{left:349.333333pt;}
.x30_c00013{left:352.000000pt;}
.x9_c00013{left:353.706667pt;}
.xbb_c00013{left:355.626667pt;}
.x7a_c00013{left:357.333333pt;}
.x67_c00013{left:358.666667pt;}
.xf6_c00013{left:360.000000pt;}
.xd9_c00013{left:360.960000pt;}
.x53_c00013{left:362.666667pt;}
.xbf_c00013{left:364.000000pt;}
.xcd_c00013{left:365.333333pt;}
.x49_c00013{left:366.293333pt;}
.x68_c00013{left:370.666667pt;}
.xe0_c00013{left:372.000000pt;}
.x18_c00013{left:374.666667pt;}
.xda_c00013{left:376.373333pt;}
.xa_c00013{left:377.333333pt;}
.x9e_c00013{left:380.373333pt;}
.xe1_c00013{left:382.666667pt;}
.x25_c00013{left:384.960000pt;}
.x5f_c00013{left:387.626667pt;}
.x113_c00013{left:390.293333pt;}
.xaa_c00013{left:391.626667pt;}
.x10b_c00013{left:394.293333pt;}
.x86_c00013{left:396.000000pt;}
.xf0_c00013{left:397.333333pt;}
.xee_c00013{left:400.373333pt;}
.x97_c00013{left:402.666667pt;}
.x3e_c00013{left:404.000000pt;}
.x26_c00013{left:405.706667pt;}
.x54_c00013{left:406.666667pt;}
.xb_c00013{left:408.373333pt;}
.x80_c00013{left:410.293333pt;}
.x31_c00013{left:412.000000pt;}
.xc0_c00013{left:413.333333pt;}
.x9f_c00013{left:414.293333pt;}
.xe2_c00013{left:416.373333pt;}
.x114_c00013{left:418.666667pt;}
.x87_c00013{left:419.626667pt;}
.x4a_c00013{left:421.333333pt;}
.x55_c00013{left:422.293333pt;}
.xab_c00013{left:424.000000pt;}
.x102_c00013{left:424.960000pt;}
.x32_c00013{left:428.373333pt;}
.x27_c00013{left:429.333333pt;}
.x7b_c00013{left:430.293333pt;}
.xc5_c00013{left:432.000000pt;}
.x3f_c00013{left:432.960000pt;}
.xac_c00013{left:435.040000pt;}
.xdb_c00013{left:437.706667pt;}
.xa0_c00013{left:438.666667pt;}
.x19_c00013{left:439.626667pt;}
.xb8_c00013{left:441.706667pt;}
.xf1_c00013{left:444.000000pt;}
.xf7_c00013{left:446.666667pt;}
.xf9_c00013{left:448.000000pt;}
.xe3_c00013{left:449.333333pt;}
.x33_c00013{left:450.666667pt;}
.x60_c00013{left:453.706667pt;}
.x106_c00013{left:454.666667pt;}
.xc_c00013{left:456.000000pt;}
.xce_c00013{left:456.960000pt;}
.x40_c00013{left:458.666667pt;}
.x1a_c00013{left:459.626667pt;}
.x98_c00013{left:461.333333pt;}
.xe9_c00013{left:463.040000pt;}
.x69_c00013{left:464.960000pt;}
.xe4_c00013{left:466.666667pt;}
.xca_c00013{left:468.373333pt;}
.x8d_c00013{left:471.040000pt;}
.xd_c00013{left:472.373333pt;}
.x56_c00013{left:474.293333pt;}
.x99_c00013{left:476.000000pt;}
.x28_c00013{left:477.706667pt;}
.x41_c00013{left:478.666667pt;}
.xf2_c00013{left:480.000000pt;}
.xa1_c00013{left:481.333333pt;}
.x72_c00013{left:484.373333pt;}
.xc6_c00013{left:485.706667pt;}
.x4b_c00013{left:488.000000pt;}
.xaf_c00013{left:491.626667pt;}
.xa2_c00013{left:493.333333pt;}
.x8e_c00013{left:494.666667pt;}
.xe_c00013{left:496.000000pt;}
.x9a_c00013{left:498.666667pt;}
.x34_c00013{left:500.000000pt;}
.xc1_c00013{left:500.960000pt;}
.x1b_c00013{left:502.666667pt;}
.xdc_c00013{left:507.040000pt;}
.x73_c00013{left:511.040000pt;}
.xea_c00013{left:512.000000pt;}
.x107_c00013{left:515.040000pt;}
.xe5_c00013{left:516.000000pt;}
.x6a_c00013{left:516.960000pt;}
.x42_c00013{left:518.666667pt;}
.x61_c00013{left:520.000000pt;}
.xc7_c00013{left:521.706667pt;}
.xef_c00013{left:522.666667pt;}
.x81_c00013{left:524.000000pt;}
.xc2_c00013{left:529.706667pt;}
.xdd_c00013{left:530.666667pt;}
.x43_c00013{left:532.000000pt;}
.xcb_c00013{left:533.333333pt;}
.x6b_c00013{left:535.040000pt;}
.x7c_c00013{left:536.000000pt;}
.xb0_c00013{left:537.333333pt;}
.x4c_c00013{left:540.000000pt;}
.x8f_c00013{left:541.706667pt;}
.xf_c00013{left:544.373333pt;}
.x57_c00013{left:546.293333pt;}
.x90_c00013{left:547.626667pt;}
.x88_c00013{left:549.706667pt;}
.xa3_c00013{left:552.000000pt;}
.x62_c00013{left:553.333333pt;}
.x44_c00013{left:554.293333pt;}
.x105_c00013{left:556.000000pt;}
.x91_c00013{left:556.960000pt;}
.xc8_c00013{left:558.666667pt;}
.x74_c00013{left:560.373333pt;}
.x29_c00013{left:562.666667pt;}
.x82_c00013{left:563.626667pt;}
.xa4_c00013{left:567.040000pt;}
.x1c_c00013{left:568.000000pt;}
.x6c_c00013{left:571.040000pt;}
.x35_c00013{left:572.960000pt;}
.x58_c00013{left:574.293333pt;}
.x110_c00013{left:577.333333pt;}
.xde_c00013{left:578.666667pt;}
.x92_c00013{left:580.373333pt;}
.x10c_c00013{left:581.333333pt;}
.x10_c00013{left:582.666667pt;}
.xd2_c00013{left:585.333333pt;}
.x45_c00013{left:586.293333pt;}
.x36_c00013{left:588.373333pt;}
.xcf_c00013{left:592.960000pt;}
.x11_c00013{left:596.373333pt;}
.x108_c00013{left:597.706667pt;}
.xc3_c00013{left:598.666667pt;}
.xf3_c00013{left:600.000000pt;}
.x59_c00013{left:602.293333pt;}
.xd3_c00013{left:604.000000pt;}
.x83_c00013{left:608.000000pt;}
.x89_c00013{left:609.333333pt;}
.x4d_c00013{left:610.293333pt;}
.x37_c00013{left:612.000000pt;}
.x63_c00013{left:612.960000pt;}
.x6d_c00013{left:615.040000pt;}
.xa5_c00013{left:617.333333pt;}
.x12_c00013{left:619.040000pt;}
.xbc_c00013{left:620.000000pt;}
.xd0_c00013{left:621.333333pt;}
.xfe_c00013{left:622.293333pt;}
.xd4_c00013{left:624.000000pt;}
.xb1_c00013{left:625.333333pt;}
.xf8_c00013{left:627.626667pt;}
.x4e_c00013{left:631.040000pt;}
.x1d_c00013{left:633.333333pt;}
.x75_c00013{left:638.293333pt;}
.x2a_c00013{left:640.000000pt;}
.x8a_c00013{left:641.333333pt;}
.x7d_c00013{left:642.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_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_21e1143c81e1a0c88f767c65.woff2')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m65_c00014{transform:matrix(0.341258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341258,0.000000,0.000000,0.250000,0,0);}
.me5_c00014{transform:matrix(0.354360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354360,0.000000,0.000000,0.250000,0,0);}
.m7e_c00014{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m29_c00014{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m12_c00014{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m57_c00014{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m75_c00014{transform:matrix(0.370399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370399,0.000000,0.000000,0.250000,0,0);}
.mcc_c00014{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m4e_c00014{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m5f_c00014{transform:matrix(0.376891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376891,0.000000,0.000000,0.250000,0,0);}
.m48_c00014{transform:matrix(0.381902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381902,0.000000,0.000000,0.250000,0,0);}
.mdb_c00014{transform:matrix(0.383819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383819,0.000000,0.000000,0.250000,0,0);}
.md5_c00014{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m9c_c00014{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m50_c00014{transform:matrix(0.386120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386120,0.000000,0.000000,0.250000,0,0);}
.mb_c00014{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mc6_c00014{transform:matrix(0.387653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387653,0.000000,0.000000,0.250000,0,0);}
.md8_c00014{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m62_c00014{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m28_c00014{transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);}
.m3e_c00014{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m8d_c00014{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mb9_c00014{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mde_c00014{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.mb5_c00014{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m7c_c00014{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m72_c00014{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m92_c00014{transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);}
.mc2_c00014{transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);}
.m10e_c00014{transform:matrix(0.404453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404453,0.000000,0.000000,0.250000,0,0);}
.maa_c00014{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.me7_c00014{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.m2_c00014{transform:matrix(0.405675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405675,0.000000,0.000000,0.250000,0,0);}
.md0_c00014{transform:matrix(0.406058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406058,0.000000,0.000000,0.250000,0,0);}
.ma6_c00014{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.md6_c00014{transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);}
.m64_c00014{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mc5_c00014{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m60_c00014{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mc0_c00014{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mbb_c00014{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.me0_c00014{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m2e_c00014{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m8e_c00014{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m14_c00014{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.md3_c00014{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.mbc_c00014{transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);}
.me2_c00014{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m3c_c00014{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m87_c00014{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m4_c00014{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.md9_c00014{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.ma8_c00014{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m40_c00014{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m74_c00014{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m6a_c00014{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m8c_c00014{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m6c_c00014{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.mb0_c00014{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mfa_c00014{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.m15_c00014{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m7a_c00014{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m6e_c00014{transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);}
.m37_c00014{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.mf7_c00014{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m102_c00014{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m10d_c00014{transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);}
.m16_c00014{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m6f_c00014{transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);}
.mce_c00014{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.ma3_c00014{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m46_c00014{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m114_c00014{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m2b_c00014{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.mf1_c00014{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.ma5_c00014{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m96_c00014{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.med_c00014{transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);}
.m7d_c00014{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m78_c00014{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m6b_c00014{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mf3_c00014{transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);}
.mdd_c00014{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.mad_c00014{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.mb3_c00014{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m80_c00014{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m4c_c00014{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mb7_c00014{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.m11_c00014{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m13_c00014{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mcf_c00014{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.maf_c00014{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m110_c00014{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.m5c_c00014{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m101_c00014{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.mdf_c00014{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.m5a_c00014{transform:matrix(0.473098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473098,0.000000,0.000000,0.250000,0,0);}
.m20_c00014{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.m8a_c00014{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m1c_c00014{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m82_c00014{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m18_c00014{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m79_c00014{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mb6_c00014{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.mf6_c00014{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m51_c00014{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mee_c00014{transform:matrix(0.488824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488824,0.000000,0.000000,0.250000,0,0);}
.m1f_c00014{transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);}
.mc4_c00014{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mb2_c00014{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m103_c00014{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.mff_c00014{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m17_c00014{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.me9_c00014{transform:matrix(0.495294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495294,0.000000,0.000000,0.250000,0,0);}
.m99_c00014{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m5_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);}
.m68_c00014{transform:matrix(0.502319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502319,0.000000,0.000000,0.250000,0,0);}
.m8f_c00014{transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);}
.m9a_c00014{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m66_c00014{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m8_c00014{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.md2_c00014{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m70_c00014{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m63_c00014{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m2a_c00014{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m7b_c00014{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mb1_c00014{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.md1_c00014{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m9d_c00014{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m88_c00014{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.mc9_c00014{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m22_c00014{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m97_c00014{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m76_c00014{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mc7_c00014{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.mfc_c00014{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m24_c00014{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m39_c00014{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m52_c00014{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m89_c00014{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.ma2_c00014{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m61_c00014{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mef_c00014{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.mbd_c00014{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m31_c00014{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m9e_c00014{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m1e_c00014{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m10_c00014{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m100_c00014{transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);}
.mbe_c00014{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mda_c00014{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m3_c00014{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m3a_c00014{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.ma0_c00014{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.mae_c00014{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.ma_c00014{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m6d_c00014{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mf8_c00014{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m45_c00014{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m10f_c00014{transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);}
.mc_c00014{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m56_c00014{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mc3_c00014{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m5b_c00014{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.me8_c00014{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.mfd_c00014{transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);}
.m54_c00014{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m2f_c00014{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.mf9_c00014{transform:matrix(0.542941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542941,0.000000,0.000000,0.250000,0,0);}
.m43_c00014{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m98_c00014{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m5d_c00014{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m7_c00014{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m4f_c00014{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.me4_c00014{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m69_c00014{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mb8_c00014{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.ma4_c00014{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m84_c00014{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m26_c00014{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m35_c00014{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.mb4_c00014{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mbf_c00014{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m36_c00014{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m19_c00014{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.md_c00014{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mf5_c00014{transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);}
.m25_c00014{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mf4_c00014{transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);}
.m104_c00014{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m73_c00014{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m5e_c00014{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mab_c00014{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m44_c00014{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);}
.ma1_c00014{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m27_c00014{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.md7_c00014{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m85_c00014{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mc8_c00014{transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);}
.m42_c00014{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m9b_c00014{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m1d_c00014{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m95_c00014{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m9_c00014{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m10a_c00014{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m47_c00014{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m81_c00014{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m77_c00014{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m94_c00014{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.md4_c00014{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m49_c00014{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mec_c00014{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m7f_c00014{transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);}
.m55_c00014{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mf_c00014{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m9f_c00014{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m41_c00014{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.m59_c00014{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m86_c00014{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);}
.m91_c00014{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.mfb_c00014{transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);}
.m67_c00014{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.m33_c00014{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m8b_c00014{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m6_c00014{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m3d_c00014{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.me6_c00014{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m108_c00014{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.mf2_c00014{transform:matrix(0.620192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620192,0.000000,0.000000,0.250000,0,0);}
.mfe_c00014{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m32_c00014{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m0_c00014{transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);}
.m30_c00014{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m10b_c00014{transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);}
.m107_c00014{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m106_c00014{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.ma9_c00014{transform:matrix(0.636411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636411,0.000000,0.000000,0.250000,0,0);}
.m38_c00014{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.mea_c00014{transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);}
.m93_c00014{transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);}
.m3f_c00014{transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);}
.ma7_c00014{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m10c_c00014{transform:matrix(0.656250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656250,0.000000,0.000000,0.250000,0,0);}
.m71_c00014{transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);}
.m113_c00014{transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);}
.m1b_c00014{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m4b_c00014{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m112_c00014{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m21_c00014{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m2d_c00014{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.mf0_c00014{transform:matrix(0.669872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669872,0.000000,0.000000,0.250000,0,0);}
.m58_c00014{transform:matrix(0.675294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675294,0.000000,0.000000,0.250000,0,0);}
.m105_c00014{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.mc1_c00014{transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);}
.mac_c00014{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.me3_c00014{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);}
.mcd_c00014{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mba_c00014{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m3b_c00014{transform:matrix(0.724359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.724359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.724359,0.000000,0.000000,0.250000,0,0);}
.m2c_c00014{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m1_c00014{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);}
.me_c00014{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m111_c00014{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);}
.m34_c00014{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.m4a_c00014{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m4d_c00014{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m53_c00014{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mcb_c00014{transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);}
.m83_c00014{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m1a_c00014{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mca_c00014{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m23_c00014{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mdc_c00014{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m90_c00014{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.meb_c00014{transform:matrix(0.885463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.885463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.885463,0.000000,0.000000,0.250000,0,0);}
.me1_c00014{transform:matrix(0.893382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893382,0.000000,0.000000,0.250000,0,0);}
.m109_c00014{transform:matrix(0.916912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.916912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.916912,0.000000,0.000000,0.250000,0,0);}
.v0_c00014{vertical-align:0.000000px;}
.ls0_c00014{letter-spacing:0.000000px;}
.sc__c00014{text-shadow:none;}
.sc0_c00014{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00014{-webkit-text-stroke:0px transparent;}
.sc0_c00014{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00014{word-spacing:0.000000px;}
.fc0_c00014{color:transparent;}
.fs7_c00014{font-size:13.620000px;}
.fs5_c00014{font-size:18.720000px;}
.fs0_c00014{font-size:20.400000px;}
.fs4_c00014{font-size:25.500000px;}
.fs2_c00014{font-size:28.920000px;}
.fs6_c00014{font-size:32.340000px;}
.fs3_c00014{font-size:35.700000px;}
.fs1_c00014{font-size:39.120000px;}
.y0_c00014{bottom:0.000000px;}
.yf7_c00014{bottom:251.325000px;}
.yfa_c00014{bottom:252.405000px;}
.yf9_c00014{bottom:253.470000px;}
.yf6_c00014{bottom:254.130000px;}
.yf8_c00014{bottom:254.550000px;}
.yf5_c00014{bottom:256.905000px;}
.yf4_c00014{bottom:258.630000px;}
.yf1_c00014{bottom:267.405000px;}
.yf0_c00014{bottom:268.470000px;}
.yf3_c00014{bottom:268.695000px;}
.yef_c00014{bottom:268.905000px;}
.yf2_c00014{bottom:269.550000px;}
.yee_c00014{bottom:270.405000px;}
.yeb_c00014{bottom:281.325000px;}
.yed_c00014{bottom:282.405000px;}
.yea_c00014{bottom:283.470000px;}
.yec_c00014{bottom:284.550000px;}
.ye9_c00014{bottom:286.470000px;}
.ye3_c00014{bottom:295.905000px;}
.ye2_c00014{bottom:296.130000px;}
.ye8_c00014{bottom:296.325000px;}
.ye5_c00014{bottom:296.970000px;}
.ye7_c00014{bottom:297.405000px;}
.ye1_c00014{bottom:297.825000px;}
.ye6_c00014{bottom:298.050000px;}
.ye4_c00014{bottom:298.470000px;}
.ye0_c00014{bottom:300.630000px;}
.ydf_c00014{bottom:302.970000px;}
.ydb_c00014{bottom:309.825000px;}
.ydd_c00014{bottom:311.325000px;}
.yda_c00014{bottom:311.970000px;}
.yde_c00014{bottom:312.195000px;}
.ydc_c00014{bottom:313.050000px;}
.yd9_c00014{bottom:313.470000px;}
.yd7_c00014{bottom:314.325000px;}
.yd8_c00014{bottom:314.550000px;}
.yd6_c00014{bottom:317.550000px;}
.yd2_c00014{bottom:346.245000px;}
.yd5_c00014{bottom:347.745000px;}
.yd4_c00014{bottom:348.405000px;}
.yd1_c00014{bottom:348.630000px;}
.yd3_c00014{bottom:349.905000px;}
.yd0_c00014{bottom:351.180000px;}
.yce_c00014{bottom:365.745000px;}
.ycb_c00014{bottom:367.245000px;}
.ycd_c00014{bottom:367.905000px;}
.ycc_c00014{bottom:368.130000px;}
.yca_c00014{bottom:369.405000px;}
.ycf_c00014{bottom:370.470000px;}
.yc9_c00014{bottom:372.405000px;}
.yc7_c00014{bottom:386.745000px;}
.yc8_c00014{bottom:387.630000px;}
.yc6_c00014{bottom:388.905000px;}
.yc5_c00014{bottom:390.630000px;}
.yc4_c00014{bottom:392.325000px;}
.yc2_c00014{bottom:406.245000px;}
.yc0_c00014{bottom:406.680000px;}
.yc3_c00014{bottom:407.130000px;}
.yc1_c00014{bottom:408.405000px;}
.ybf_c00014{bottom:411.405000px;}
.ybe_c00014{bottom:438.405000px;}
.ybd_c00014{bottom:470.325000px;}
.yba_c00014{bottom:470.745000px;}
.yb9_c00014{bottom:471.405000px;}
.ybc_c00014{bottom:471.630000px;}
.ybb_c00014{bottom:472.905000px;}
.yb8_c00014{bottom:475.905000px;}
.yb7_c00014{bottom:490.245000px;}
.yb6_c00014{bottom:491.130000px;}
.yb4_c00014{bottom:492.180000px;}
.yb5_c00014{bottom:492.405000px;}
.yb1_c00014{bottom:509.745000px;}
.yb0_c00014{bottom:510.630000px;}
.yaf_c00014{bottom:511.245000px;}
.yb2_c00014{bottom:511.470000px;}
.yb3_c00014{bottom:511.905000px;}
.yad_c00014{bottom:514.050000px;}
.yae_c00014{bottom:514.470000px;}
.yaa_c00014{bottom:529.245000px;}
.yac_c00014{bottom:530.970000px;}
.yab_c00014{bottom:531.405000px;}
.ya9_c00014{bottom:534.405000px;}
.ya7_c00014{bottom:547.905000px;}
.ya5_c00014{bottom:548.745000px;}
.ya8_c00014{bottom:550.905000px;}
.ya6_c00014{bottom:551.130000px;}
.ya4_c00014{bottom:552.825000px;}
.ya3_c00014{bottom:554.325000px;}
.ya2_c00014{bottom:568.245000px;}
.y9f_c00014{bottom:569.745000px;}
.ya1_c00014{bottom:570.630000px;}
.y9d_c00014{bottom:570.825000px;}
.ya0_c00014{bottom:571.905000px;}
.y9e_c00014{bottom:572.130000px;}
.y9b_c00014{bottom:589.245000px;}
.y9a_c00014{bottom:590.130000px;}
.y9c_c00014{bottom:590.325000px;}
.y97_c00014{bottom:590.745000px;}
.y99_c00014{bottom:591.405000px;}
.y98_c00014{bottom:592.470000px;}
.y95_c00014{bottom:606.405000px;}
.y96_c00014{bottom:607.245000px;}
.y94_c00014{bottom:608.550000px;}
.y93_c00014{bottom:608.745000px;}
.y92_c00014{bottom:610.905000px;}
.y91_c00014{bottom:612.405000px;}
.y90_c00014{bottom:612.825000px;}
.y8e_c00014{bottom:625.905000px;}
.y8f_c00014{bottom:626.745000px;}
.y8d_c00014{bottom:626.970000px;}
.y8c_c00014{bottom:629.130000px;}
.y8a_c00014{bottom:629.745000px;}
.y8b_c00014{bottom:630.405000px;}
.y89_c00014{bottom:632.130000px;}
.y88_c00014{bottom:633.405000px;}
.y87_c00014{bottom:647.745000px;}
.y85_c00014{bottom:649.905000px;}
.y86_c00014{bottom:650.130000px;}
.y82_c00014{bottom:650.325000px;}
.y84_c00014{bottom:650.970000px;}
.y83_c00014{bottom:651.405000px;}
.y81_c00014{bottom:653.970000px;}
.y7c_c00014{bottom:668.745000px;}
.y80_c00014{bottom:668.970000px;}
.y7f_c00014{bottom:669.405000px;}
.y7e_c00014{bottom:670.470000px;}
.y7d_c00014{bottom:670.905000px;}
.y7b_c00014{bottom:686.745000px;}
.y78_c00014{bottom:688.905000px;}
.y7a_c00014{bottom:689.970000px;}
.y79_c00014{bottom:690.405000px;}
.y75_c00014{bottom:706.245000px;}
.y74_c00014{bottom:707.745000px;}
.y76_c00014{bottom:708.405000px;}
.y73_c00014{bottom:709.470000px;}
.y77_c00014{bottom:709.905000px;}
.y6f_c00014{bottom:724.905000px;}
.y71_c00014{bottom:727.245000px;}
.y72_c00014{bottom:727.905000px;}
.y70_c00014{bottom:728.130000px;}
.y6e_c00014{bottom:728.325000px;}
.y6d_c00014{bottom:728.970000px;}
.y6c_c00014{bottom:729.405000px;}
.y6b_c00014{bottom:729.630000px;}
.y6a_c00014{bottom:730.905000px;}
.y64_c00014{bottom:746.325000px;}
.y66_c00014{bottom:746.745000px;}
.y69_c00014{bottom:747.405000px;}
.y68_c00014{bottom:747.630000px;}
.y62_c00014{bottom:748.245000px;}
.y67_c00014{bottom:748.470000px;}
.y65_c00014{bottom:748.905000px;}
.y63_c00014{bottom:749.130000px;}
.y60_c00014{bottom:765.405000px;}
.y61_c00014{bottom:766.245000px;}
.y5d_c00014{bottom:766.680000px;}
.y5e_c00014{bottom:768.405000px;}
.y5f_c00014{bottom:769.470000px;}
.y5c_c00014{bottom:770.130000px;}
.y57_c00014{bottom:785.745000px;}
.y5a_c00014{bottom:785.970000px;}
.y59_c00014{bottom:786.825000px;}
.y58_c00014{bottom:787.905000px;}
.y5b_c00014{bottom:788.970000px;}
.y56_c00014{bottom:790.905000px;}
.y54_c00014{bottom:804.825000px;}
.y55_c00014{bottom:805.245000px;}
.y53_c00014{bottom:808.905000px;}
.y52_c00014{bottom:810.405000px;}
.y51_c00014{bottom:824.745000px;}
.y50_c00014{bottom:826.905000px;}
.y4f_c00014{bottom:827.130000px;}
.y4e_c00014{bottom:828.825000px;}
.y4b_c00014{bottom:843.405000px;}
.y47_c00014{bottom:844.245000px;}
.y4c_c00014{bottom:844.680000px;}
.y49_c00014{bottom:845.745000px;}
.y4d_c00014{bottom:846.405000px;}
.y48_c00014{bottom:846.630000px;}
.y4a_c00014{bottom:847.470000px;}
.y46_c00014{bottom:847.905000px;}
.y45_c00014{bottom:849.405000px;}
.y41_c00014{bottom:865.245000px;}
.y40_c00014{bottom:865.470000px;}
.y43_c00014{bottom:866.325000px;}
.y44_c00014{bottom:867.405000px;}
.y42_c00014{bottom:868.470000px;}
.y3f_c00014{bottom:868.905000px;}
.y3e_c00014{bottom:884.745000px;}
.y3b_c00014{bottom:885.180000px;}
.y3d_c00014{bottom:885.630000px;}
.y3c_c00014{bottom:886.905000px;}
.y37_c00014{bottom:904.245000px;}
.y38_c00014{bottom:905.130000px;}
.y3a_c00014{bottom:905.970000px;}
.y39_c00014{bottom:906.405000px;}
.y36_c00014{bottom:907.905000px;}
.y35_c00014{bottom:908.970000px;}
.y34_c00014{bottom:922.680000px;}
.y33_c00014{bottom:923.745000px;}
.y31_c00014{bottom:925.905000px;}
.y32_c00014{bottom:926.970000px;}
.y30_c00014{bottom:927.405000px;}
.y2f_c00014{bottom:928.905000px;}
.y2e_c00014{bottom:943.245000px;}
.y2c_c00014{bottom:944.745000px;}
.y2d_c00014{bottom:945.405000px;}
.y2b_c00014{bottom:945.630000px;}
.y2a_c00014{bottom:946.470000px;}
.y29_c00014{bottom:946.905000px;}
.y25_c00014{bottom:962.745000px;}
.y27_c00014{bottom:964.905000px;}
.y28_c00014{bottom:965.130000px;}
.y26_c00014{bottom:965.970000px;}
.y24_c00014{bottom:966.405000px;}
.y23_c00014{bottom:967.470000px;}
.y20_c00014{bottom:982.245000px;}
.y22_c00014{bottom:983.550000px;}
.y1d_c00014{bottom:984.180000px;}
.y1f_c00014{bottom:984.405000px;}
.y21_c00014{bottom:984.630000px;}
.y1e_c00014{bottom:985.905000px;}
.y19_c00014{bottom:1000.905000px;}
.y1b_c00014{bottom:1003.245000px;}
.y1c_c00014{bottom:1003.905000px;}
.y1a_c00014{bottom:1004.130000px;}
.y16_c00014{bottom:1004.325000px;}
.y17_c00014{bottom:1004.970000px;}
.y18_c00014{bottom:1005.405000px;}
.y15_c00014{bottom:1005.825000px;}
.y14_c00014{bottom:1006.905000px;}
.yf_c00014{bottom:1020.405000px;}
.y13_c00014{bottom:1022.745000px;}
.y11_c00014{bottom:1023.630000px;}
.ye_c00014{bottom:1023.825000px;}
.y12_c00014{bottom:1024.470000px;}
.y10_c00014{bottom:1024.905000px;}
.yd_c00014{bottom:1025.325000px;}
.yb_c00014{bottom:1042.245000px;}
.yc_c00014{bottom:1043.130000px;}
.ya_c00014{bottom:1043.325000px;}
.y9_c00014{bottom:1043.970000px;}
.y8_c00014{bottom:1044.405000px;}
.y7_c00014{bottom:1044.630000px;}
.y6_c00014{bottom:1045.905000px;}
.y4_c00014{bottom:1061.745000px;}
.y2_c00014{bottom:1062.180000px;}
.y3_c00014{bottom:1063.905000px;}
.y5_c00014{bottom:1064.970000px;}
.y1_c00014{bottom:1102.050000px;}
.h8_c00014{height:16.752334px;}
.h6_c00014{height:23.025234px;}
.h1_c00014{height:25.091602px;}
.h5_c00014{height:31.364502px;}
.h3_c00014{height:35.571035px;}
.h7_c00014{height:39.777568px;}
.h4_c00014{height:43.910303px;}
.h2_c00014{height:48.116836px;}
.h0_c00014{height:1335.000000px;}
.w0_c00014{width:880.500000px;}
.x0_c00014{left:0.000000px;}
.x3_c00014{left:151.920000px;}
.xe1_c00014{left:154.500000px;}
.xf2_c00014{left:162.420000px;}
.x86_c00014{left:166.500000px;}
.x44_c00014{left:167.580000px;}
.x38_c00014{left:169.920000px;}
.x23_c00014{left:171.855000px;}
.x58_c00014{left:172.920000px;}
.xf6_c00014{left:177.000000px;}
.x8d_c00014{left:181.080000px;}
.xdd_c00014{left:182.580000px;}
.xf_c00014{left:184.500000px;}
.x68_c00014{left:186.000000px;}
.x9d_c00014{left:187.500000px;}
.xd5_c00014{left:189.000000px;}
.x4d_c00014{left:192.420000px;}
.xa6_c00014{left:193.500000px;}
.xe8_c00014{left:195.000000px;}
.x39_c00014{left:196.500000px;}
.x4_c00014{left:198.420000px;}
.x10_c00014{left:199.500000px;}
.x45_c00014{left:201.000000px;}
.x69_c00014{left:204.000000px;}
.x2f_c00014{left:206.580000px;}
.xf3_c00014{left:208.500000px;}
.xf7_c00014{left:211.500000px;}
.x104_c00014{left:213.000000px;}
.x24_c00014{left:214.500000px;}
.xdf_c00014{left:216.000000px;}
.xe9_c00014{left:217.080000px;}
.x46_c00014{left:220.080000px;}
.xb8_c00014{left:222.000000px;}
.x5_c00014{left:223.920000px;}
.x94_c00014{left:225.000000px;}
.x73_c00014{left:228.000000px;}
.xbf_c00014{left:231.000000px;}
.x6a_c00014{left:232.275000px;}
.x61_c00014{left:233.580000px;}
.xfb_c00014{left:237.000000px;}
.x11_c00014{left:241.080000px;}
.xfe_c00014{left:246.000000px;}
.x19_c00014{left:250.500000px;}
.x3a_c00014{left:251.580000px;}
.x4e_c00014{left:258.420000px;}
.xd6_c00014{left:259.500000px;}
.xcd_c00014{left:261.000000px;}
.x7e_c00014{left:265.920000px;}
.xde_c00014{left:267.000000px;}
.x6b_c00014{left:268.080000px;}
.xad_c00014{left:270.000000px;}
.x25_c00014{left:271.500000px;}
.x47_c00014{left:276.000000px;}
.x8e_c00014{left:279.000000px;}
.x3b_c00014{left:280.500000px;}
.xff_c00014{left:281.580000px;}
.xa7_c00014{left:283.500000px;}
.x74_c00014{left:285.000000px;}
.x87_c00014{left:287.580000px;}
.xb9_c00014{left:289.500000px;}
.x26_c00014{left:291.420000px;}
.xc0_c00014{left:292.500000px;}
.x7f_c00014{left:295.080000px;}
.x4f_c00014{left:297.420000px;}
.x12_c00014{left:301.080000px;}
.x6_c00014{left:302.580000px;}
.x62_c00014{left:304.080000px;}
.x30_c00014{left:305.580000px;}
.x6c_c00014{left:307.080000px;}
.x59_c00014{left:309.420000px;}
.x75_c00014{left:313.920000px;}
.xf8_c00014{left:315.000000px;}
.x7_c00014{left:319.500000px;}
.x13_c00014{left:322.920000px;}
.xae_c00014{left:325.500000px;}
.x95_c00014{left:327.000000px;}
.xce_c00014{left:328.500000px;}
.x50_c00014{left:332.580000px;}
.xc7_c00014{left:336.000000px;}
.x5a_c00014{left:337.920000px;}
.x88_c00014{left:339.000000px;}
.x6d_c00014{left:340.080000px;}
.x1a_c00014{left:341.580000px;}
.xe2_c00014{left:343.080000px;}
.x8_c00014{left:344.580000px;}
.x3c_c00014{left:346.500000px;}
.xf4_c00014{left:348.420000px;}
.x31_c00014{left:349.500000px;}
.x14_c00014{left:351.000000px;}
.xc8_c00014{left:356.580000px;}
.x6e_c00014{left:358.500000px;}
.x100_c00014{left:360.420000px;}
.xb2_c00014{left:361.500000px;}
.x76_c00014{left:363.420000px;}
.x48_c00014{left:366.420000px;}
.x80_c00014{left:369.000000px;}
.xa8_c00014{left:370.080000px;}
.xba_c00014{left:372.420000px;}
.x1b_c00014{left:375.000000px;}
.x9e_c00014{left:376.080000px;}
.xfc_c00014{left:378.000000px;}
.x51_c00014{left:379.080000px;}
.xd7_c00014{left:381.000000px;}
.xc1_c00014{left:382.080000px;}
.x27_c00014{left:385.500000px;}
.xaf_c00014{left:386.580000px;}
.xa9_c00014{left:388.500000px;}
.x77_c00014{left:390.420000px;}
.x1_c00014{left:391.500000px;}
.x3d_c00014{left:393.000000px;}
.x89_c00014{left:395.580000px;}
.xc2_c00014{left:399.000000px;}
.x5b_c00014{left:400.920000px;}
.x32_c00014{left:402.000000px;}
.x28_c00014{left:403.920000px;}
.x9_c00014{left:405.000000px;}
.xea_c00014{left:406.500000px;}
.xcf_c00014{left:407.580000px;}
.x9f_c00014{left:409.500000px;}
.x52_c00014{left:412.080000px;}
.xb3_c00014{left:414.000000px;}
.xd9_c00014{left:415.920000px;}
.xc3_c00014{left:420.000000px;}
.xd3_c00014{left:421.080000px;}
.x33_c00014{left:422.580000px;}
.xd0_c00014{left:426.000000px;}
.xc9_c00014{left:429.000000px;}
.xb4_c00014{left:430.500000px;}
.x53_c00014{left:432.420000px;}
.xf0_c00014{left:433.500000px;}
.x78_c00014{left:436.500000px;}
.x1c_c00014{left:438.000000px;}
.x101_c00014{left:439.500000px;}
.x6f_c00014{left:441.420000px;}
.x5c_c00014{left:442.500000px;}
.x63_c00014{left:443.580000px;}
.x49_c00014{left:447.000000px;}
.xd8_c00014{left:448.080000px;}
.x81_c00014{left:449.580000px;}
.xeb_c00014{left:451.500000px;}
.x8f_c00014{left:453.000000px;}
.xa0_c00014{left:454.920000px;}
.x29_c00014{left:456.000000px;}
.x1d_c00014{left:457.500000px;}
.x54_c00014{left:460.500000px;}
.xbb_c00014{left:462.420000px;}
.x105_c00014{left:463.500000px;}
.xe3_c00014{left:465.000000px;}
.xe6_c00014{left:466.500000px;}
.x96_c00014{left:471.000000px;}
.xb5_c00014{left:474.000000px;}
.x15_c00014{left:475.080000px;}
.xa_c00014{left:478.080000px;}
.xb0_c00014{left:480.420000px;}
.x3e_c00014{left:481.500000px;}
.x70_c00014{left:483.420000px;}
.x90_c00014{left:484.500000px;}
.x1e_c00014{left:486.420000px;}
.xbc_c00014{left:489.420000px;}
.xee_c00014{left:490.500000px;}
.xda_c00014{left:491.580000px;}
.x34_c00014{left:493.500000px;}
.xb_c00014{left:495.420000px;}
.x3f_c00014{left:496.500000px;}
.x97_c00014{left:499.500000px;}
.x8a_c00014{left:501.000000px;}
.x79_c00014{left:505.500000px;}
.x64_c00014{left:507.420000px;}
.xe4_c00014{left:510.420000px;}
.xc4_c00014{left:511.920000px;}
.x1f_c00014{left:514.500000px;}
.x5d_c00014{left:516.000000px;}
.x82_c00014{left:517.500000px;}
.xa1_c00014{left:519.000000px;}
.x102_c00014{left:520.500000px;}
.xc_c00014{left:521.580000px;}
.x40_c00014{left:524.580000px;}
.xb6_c00014{left:526.920000px;}
.x91_c00014{left:529.500000px;}
.xaa_c00014{left:530.580000px;}
.x71_c00014{left:532.080000px;}
.x98_c00014{left:533.580000px;}
.x65_c00014{left:535.080000px;}
.x2a_c00014{left:536.580000px;}
.x8b_c00014{left:538.080000px;}
.x5e_c00014{left:540.000000px;}
.x55_c00014{left:542.580000px;}
.xdb_c00014{left:544.080000px;}
.xfd_c00014{left:547.080000px;}
.x4a_c00014{left:548.580000px;}
.x35_c00014{left:550.500000px;}
.xb7_c00014{left:552.000000px;}
.x99_c00014{left:553.920000px;}
.x2b_c00014{left:555.000000px;}
.xbd_c00014{left:556.080000px;}
.x41_c00014{left:559.080000px;}
.x106_c00014{left:561.000000px;}
.xca_c00014{left:562.500000px;}
.x16_c00014{left:564.000000px;}
.xec_c00014{left:565.080000px;}
.x20_c00014{left:567.000000px;}
.x7a_c00014{left:568.500000px;}
.x103_c00014{left:570.000000px;}
.x66_c00014{left:571.500000px;}
.x92_c00014{left:576.000000px;}
.xa2_c00014{left:577.080000px;}
.x17_c00014{left:579.000000px;}
.x9a_c00014{left:580.080000px;}
.x21_c00014{left:583.500000px;}
.xe7_c00014{left:585.000000px;}
.xd1_c00014{left:586.500000px;}
.xd_c00014{left:589.500000px;}
.x5f_c00014{left:590.775000px;}
.xf5_c00014{left:592.500000px;}
.x107_c00014{left:594.420000px;}
.x2c_c00014{left:595.500000px;}
.xab_c00014{left:596.580000px;}
.xc5_c00014{left:599.580000px;}
.xbe_c00014{left:603.420000px;}
.xa3_c00014{left:609.000000px;}
.x2d_c00014{left:610.080000px;}
.xf1_c00014{left:611.580000px;}
.xd4_c00014{left:613.500000px;}
.x83_c00014{left:614.775000px;}
.x8c_c00014{left:616.500000px;}
.x36_c00014{left:617.580000px;}
.x7b_c00014{left:620.775000px;}
.x42_c00014{left:622.500000px;}
.x56_c00014{left:623.580000px;}
.x72_c00014{left:630.000000px;}
.x60_c00014{left:631.080000px;}
.xd2_c00014{left:633.000000px;}
.x37_c00014{left:636.000000px;}
.xcb_c00014{left:637.500000px;}
.xed_c00014{left:639.000000px;}
.xe0_c00014{left:640.500000px;}
.xf9_c00014{left:641.580000px;}
.x22_c00014{left:643.500000px;}
.xe5_c00014{left:644.580000px;}
.x57_c00014{left:646.920000px;}
.xa4_c00014{left:648.000000px;}
.xb1_c00014{left:649.500000px;}
.x84_c00014{left:652.500000px;}
.xac_c00014{left:655.500000px;}
.x18_c00014{left:657.000000px;}
.x7c_c00014{left:658.080000px;}
.x43_c00014{left:659.580000px;}
.xe_c00014{left:662.580000px;}
.xc6_c00014{left:667.500000px;}
.x85_c00014{left:670.500000px;}
.x9b_c00014{left:672.000000px;}
.x4b_c00014{left:673.500000px;}
.xdc_c00014{left:675.000000px;}
.xa5_c00014{left:682.080000px;}
.xef_c00014{left:683.580000px;}
.x4c_c00014{left:688.920000px;}
.x9c_c00014{left:691.920000px;}
.x67_c00014{left:694.920000px;}
.xcc_c00014{left:696.420000px;}
.xfa_c00014{left:700.500000px;}
.x2_c00014{left:703.500000px;}
.x93_c00014{left:705.420000px;}
.x2e_c00014{left:706.920000px;}
.x7d_c00014{left:708.000000px;}
@media print{
.v0_c00014{vertical-align:0.000000pt;}
.ls0_c00014{letter-spacing:0.000000pt;}
.ws0_c00014{word-spacing:0.000000pt;}
.fs7_c00014{font-size:12.106667pt;}
.fs5_c00014{font-size:16.640000pt;}
.fs0_c00014{font-size:18.133333pt;}
.fs4_c00014{font-size:22.666667pt;}
.fs2_c00014{font-size:25.706667pt;}
.fs6_c00014{font-size:28.746667pt;}
.fs3_c00014{font-size:31.733333pt;}
.fs1_c00014{font-size:34.773333pt;}
.y0_c00014{bottom:0.000000pt;}
.yf7_c00014{bottom:223.400000pt;}
.yfa_c00014{bottom:224.360000pt;}
.yf9_c00014{bottom:225.306667pt;}
.yf6_c00014{bottom:225.893333pt;}
.yf8_c00014{bottom:226.266667pt;}
.yf5_c00014{bottom:228.360000pt;}
.yf4_c00014{bottom:229.893333pt;}
.yf1_c00014{bottom:237.693333pt;}
.yf0_c00014{bottom:238.640000pt;}
.yf3_c00014{bottom:238.840000pt;}
.yef_c00014{bottom:239.026667pt;}
.yf2_c00014{bottom:239.600000pt;}
.yee_c00014{bottom:240.360000pt;}
.yeb_c00014{bottom:250.066667pt;}
.yed_c00014{bottom:251.026667pt;}
.yea_c00014{bottom:251.973333pt;}
.yec_c00014{bottom:252.933333pt;}
.ye9_c00014{bottom:254.640000pt;}
.ye3_c00014{bottom:263.026667pt;}
.ye2_c00014{bottom:263.226667pt;}
.ye8_c00014{bottom:263.400000pt;}
.ye5_c00014{bottom:263.973333pt;}
.ye7_c00014{bottom:264.360000pt;}
.ye1_c00014{bottom:264.733333pt;}
.ye6_c00014{bottom:264.933333pt;}
.ye4_c00014{bottom:265.306667pt;}
.ye0_c00014{bottom:267.226667pt;}
.ydf_c00014{bottom:269.306667pt;}
.ydb_c00014{bottom:275.400000pt;}
.ydd_c00014{bottom:276.733333pt;}
.yda_c00014{bottom:277.306667pt;}
.yde_c00014{bottom:277.506667pt;}
.ydc_c00014{bottom:278.266667pt;}
.yd9_c00014{bottom:278.640000pt;}
.yd7_c00014{bottom:279.400000pt;}
.yd8_c00014{bottom:279.600000pt;}
.yd6_c00014{bottom:282.266667pt;}
.yd2_c00014{bottom:307.773333pt;}
.yd5_c00014{bottom:309.106667pt;}
.yd4_c00014{bottom:309.693333pt;}
.yd1_c00014{bottom:309.893333pt;}
.yd3_c00014{bottom:311.026667pt;}
.yd0_c00014{bottom:312.160000pt;}
.yce_c00014{bottom:325.106667pt;}
.ycb_c00014{bottom:326.440000pt;}
.ycd_c00014{bottom:327.026667pt;}
.ycc_c00014{bottom:327.226667pt;}
.yca_c00014{bottom:328.360000pt;}
.ycf_c00014{bottom:329.306667pt;}
.yc9_c00014{bottom:331.026667pt;}
.yc7_c00014{bottom:343.773333pt;}
.yc8_c00014{bottom:344.560000pt;}
.yc6_c00014{bottom:345.693333pt;}
.yc5_c00014{bottom:347.226667pt;}
.yc4_c00014{bottom:348.733333pt;}
.yc2_c00014{bottom:361.106667pt;}
.yc0_c00014{bottom:361.493333pt;}
.yc3_c00014{bottom:361.893333pt;}
.yc1_c00014{bottom:363.026667pt;}
.ybf_c00014{bottom:365.693333pt;}
.ybe_c00014{bottom:389.693333pt;}
.ybd_c00014{bottom:418.066667pt;}
.yba_c00014{bottom:418.440000pt;}
.yb9_c00014{bottom:419.026667pt;}
.ybc_c00014{bottom:419.226667pt;}
.ybb_c00014{bottom:420.360000pt;}
.yb8_c00014{bottom:423.026667pt;}
.yb7_c00014{bottom:435.773333pt;}
.yb6_c00014{bottom:436.560000pt;}
.yb4_c00014{bottom:437.493333pt;}
.yb5_c00014{bottom:437.693333pt;}
.yb1_c00014{bottom:453.106667pt;}
.yb0_c00014{bottom:453.893333pt;}
.yaf_c00014{bottom:454.440000pt;}
.yb2_c00014{bottom:454.640000pt;}
.yb3_c00014{bottom:455.026667pt;}
.yad_c00014{bottom:456.933333pt;}
.yae_c00014{bottom:457.306667pt;}
.yaa_c00014{bottom:470.440000pt;}
.yac_c00014{bottom:471.973333pt;}
.yab_c00014{bottom:472.360000pt;}
.ya9_c00014{bottom:475.026667pt;}
.ya7_c00014{bottom:487.026667pt;}
.ya5_c00014{bottom:487.773333pt;}
.ya8_c00014{bottom:489.693333pt;}
.ya6_c00014{bottom:489.893333pt;}
.ya4_c00014{bottom:491.400000pt;}
.ya3_c00014{bottom:492.733333pt;}
.ya2_c00014{bottom:505.106667pt;}
.y9f_c00014{bottom:506.440000pt;}
.ya1_c00014{bottom:507.226667pt;}
.y9d_c00014{bottom:507.400000pt;}
.ya0_c00014{bottom:508.360000pt;}
.y9e_c00014{bottom:508.560000pt;}
.y9b_c00014{bottom:523.773333pt;}
.y9a_c00014{bottom:524.560000pt;}
.y9c_c00014{bottom:524.733333pt;}
.y97_c00014{bottom:525.106667pt;}
.y99_c00014{bottom:525.693333pt;}
.y98_c00014{bottom:526.640000pt;}
.y95_c00014{bottom:539.026667pt;}
.y96_c00014{bottom:539.773333pt;}
.y94_c00014{bottom:540.933333pt;}
.y93_c00014{bottom:541.106667pt;}
.y92_c00014{bottom:543.026667pt;}
.y91_c00014{bottom:544.360000pt;}
.y90_c00014{bottom:544.733333pt;}
.y8e_c00014{bottom:556.360000pt;}
.y8f_c00014{bottom:557.106667pt;}
.y8d_c00014{bottom:557.306667pt;}
.y8c_c00014{bottom:559.226667pt;}
.y8a_c00014{bottom:559.773333pt;}
.y8b_c00014{bottom:560.360000pt;}
.y89_c00014{bottom:561.893333pt;}
.y88_c00014{bottom:563.026667pt;}
.y87_c00014{bottom:575.773333pt;}
.y85_c00014{bottom:577.693333pt;}
.y86_c00014{bottom:577.893333pt;}
.y82_c00014{bottom:578.066667pt;}
.y84_c00014{bottom:578.640000pt;}
.y83_c00014{bottom:579.026667pt;}
.y81_c00014{bottom:581.306667pt;}
.y7c_c00014{bottom:594.440000pt;}
.y80_c00014{bottom:594.640000pt;}
.y7f_c00014{bottom:595.026667pt;}
.y7e_c00014{bottom:595.973333pt;}
.y7d_c00014{bottom:596.360000pt;}
.y7b_c00014{bottom:610.440000pt;}
.y78_c00014{bottom:612.360000pt;}
.y7a_c00014{bottom:613.306667pt;}
.y79_c00014{bottom:613.693333pt;}
.y75_c00014{bottom:627.773333pt;}
.y74_c00014{bottom:629.106667pt;}
.y76_c00014{bottom:629.693333pt;}
.y73_c00014{bottom:630.640000pt;}
.y77_c00014{bottom:631.026667pt;}
.y6f_c00014{bottom:644.360000pt;}
.y71_c00014{bottom:646.440000pt;}
.y72_c00014{bottom:647.026667pt;}
.y70_c00014{bottom:647.226667pt;}
.y6e_c00014{bottom:647.400000pt;}
.y6d_c00014{bottom:647.973333pt;}
.y6c_c00014{bottom:648.360000pt;}
.y6b_c00014{bottom:648.560000pt;}
.y6a_c00014{bottom:649.693333pt;}
.y64_c00014{bottom:663.400000pt;}
.y66_c00014{bottom:663.773333pt;}
.y69_c00014{bottom:664.360000pt;}
.y68_c00014{bottom:664.560000pt;}
.y62_c00014{bottom:665.106667pt;}
.y67_c00014{bottom:665.306667pt;}
.y65_c00014{bottom:665.693333pt;}
.y63_c00014{bottom:665.893333pt;}
.y60_c00014{bottom:680.360000pt;}
.y61_c00014{bottom:681.106667pt;}
.y5d_c00014{bottom:681.493333pt;}
.y5e_c00014{bottom:683.026667pt;}
.y5f_c00014{bottom:683.973333pt;}
.y5c_c00014{bottom:684.560000pt;}
.y57_c00014{bottom:698.440000pt;}
.y5a_c00014{bottom:698.640000pt;}
.y59_c00014{bottom:699.400000pt;}
.y58_c00014{bottom:700.360000pt;}
.y5b_c00014{bottom:701.306667pt;}
.y56_c00014{bottom:703.026667pt;}
.y54_c00014{bottom:715.400000pt;}
.y55_c00014{bottom:715.773333pt;}
.y53_c00014{bottom:719.026667pt;}
.y52_c00014{bottom:720.360000pt;}
.y51_c00014{bottom:733.106667pt;}
.y50_c00014{bottom:735.026667pt;}
.y4f_c00014{bottom:735.226667pt;}
.y4e_c00014{bottom:736.733333pt;}
.y4b_c00014{bottom:749.693333pt;}
.y47_c00014{bottom:750.440000pt;}
.y4c_c00014{bottom:750.826667pt;}
.y49_c00014{bottom:751.773333pt;}
.y4d_c00014{bottom:752.360000pt;}
.y48_c00014{bottom:752.560000pt;}
.y4a_c00014{bottom:753.306667pt;}
.y46_c00014{bottom:753.693333pt;}
.y45_c00014{bottom:755.026667pt;}
.y41_c00014{bottom:769.106667pt;}
.y40_c00014{bottom:769.306667pt;}
.y43_c00014{bottom:770.066667pt;}
.y44_c00014{bottom:771.026667pt;}
.y42_c00014{bottom:771.973333pt;}
.y3f_c00014{bottom:772.360000pt;}
.y3e_c00014{bottom:786.440000pt;}
.y3b_c00014{bottom:786.826667pt;}
.y3d_c00014{bottom:787.226667pt;}
.y3c_c00014{bottom:788.360000pt;}
.y37_c00014{bottom:803.773333pt;}
.y38_c00014{bottom:804.560000pt;}
.y3a_c00014{bottom:805.306667pt;}
.y39_c00014{bottom:805.693333pt;}
.y36_c00014{bottom:807.026667pt;}
.y35_c00014{bottom:807.973333pt;}
.y34_c00014{bottom:820.160000pt;}
.y33_c00014{bottom:821.106667pt;}
.y31_c00014{bottom:823.026667pt;}
.y32_c00014{bottom:823.973333pt;}
.y30_c00014{bottom:824.360000pt;}
.y2f_c00014{bottom:825.693333pt;}
.y2e_c00014{bottom:838.440000pt;}
.y2c_c00014{bottom:839.773333pt;}
.y2d_c00014{bottom:840.360000pt;}
.y2b_c00014{bottom:840.560000pt;}
.y2a_c00014{bottom:841.306667pt;}
.y29_c00014{bottom:841.693333pt;}
.y25_c00014{bottom:855.773333pt;}
.y27_c00014{bottom:857.693333pt;}
.y28_c00014{bottom:857.893333pt;}
.y26_c00014{bottom:858.640000pt;}
.y24_c00014{bottom:859.026667pt;}
.y23_c00014{bottom:859.973333pt;}
.y20_c00014{bottom:873.106667pt;}
.y22_c00014{bottom:874.266667pt;}
.y1d_c00014{bottom:874.826667pt;}
.y1f_c00014{bottom:875.026667pt;}
.y21_c00014{bottom:875.226667pt;}
.y1e_c00014{bottom:876.360000pt;}
.y19_c00014{bottom:889.693333pt;}
.y1b_c00014{bottom:891.773333pt;}
.y1c_c00014{bottom:892.360000pt;}
.y1a_c00014{bottom:892.560000pt;}
.y16_c00014{bottom:892.733333pt;}
.y17_c00014{bottom:893.306667pt;}
.y18_c00014{bottom:893.693333pt;}
.y15_c00014{bottom:894.066667pt;}
.y14_c00014{bottom:895.026667pt;}
.yf_c00014{bottom:907.026667pt;}
.y13_c00014{bottom:909.106667pt;}
.y11_c00014{bottom:909.893333pt;}
.ye_c00014{bottom:910.066667pt;}
.y12_c00014{bottom:910.640000pt;}
.y10_c00014{bottom:911.026667pt;}
.yd_c00014{bottom:911.400000pt;}
.yb_c00014{bottom:926.440000pt;}
.yc_c00014{bottom:927.226667pt;}
.ya_c00014{bottom:927.400000pt;}
.y9_c00014{bottom:927.973333pt;}
.y8_c00014{bottom:928.360000pt;}
.y7_c00014{bottom:928.560000pt;}
.y6_c00014{bottom:929.693333pt;}
.y4_c00014{bottom:943.773333pt;}
.y2_c00014{bottom:944.160000pt;}
.y3_c00014{bottom:945.693333pt;}
.y5_c00014{bottom:946.640000pt;}
.y1_c00014{bottom:979.600000pt;}
.h8_c00014{height:14.890964pt;}
.h6_c00014{height:20.466875pt;}
.h1_c00014{height:22.303646pt;}
.h5_c00014{height:27.879557pt;}
.h3_c00014{height:31.618698pt;}
.h7_c00014{height:35.357839pt;}
.h4_c00014{height:39.031380pt;}
.h2_c00014{height:42.770521pt;}
.h0_c00014{height:1186.666667pt;}
.w0_c00014{width:782.666667pt;}
.x0_c00014{left:0.000000pt;}
.x3_c00014{left:135.040000pt;}
.xe1_c00014{left:137.333333pt;}
.xf2_c00014{left:144.373333pt;}
.x86_c00014{left:148.000000pt;}
.x44_c00014{left:148.960000pt;}
.x38_c00014{left:151.040000pt;}
.x23_c00014{left:152.760000pt;}
.x58_c00014{left:153.706667pt;}
.xf6_c00014{left:157.333333pt;}
.x8d_c00014{left:160.960000pt;}
.xdd_c00014{left:162.293333pt;}
.xf_c00014{left:164.000000pt;}
.x68_c00014{left:165.333333pt;}
.x9d_c00014{left:166.666667pt;}
.xd5_c00014{left:168.000000pt;}
.x4d_c00014{left:171.040000pt;}
.xa6_c00014{left:172.000000pt;}
.xe8_c00014{left:173.333333pt;}
.x39_c00014{left:174.666667pt;}
.x4_c00014{left:176.373333pt;}
.x10_c00014{left:177.333333pt;}
.x45_c00014{left:178.666667pt;}
.x69_c00014{left:181.333333pt;}
.x2f_c00014{left:183.626667pt;}
.xf3_c00014{left:185.333333pt;}
.xf7_c00014{left:188.000000pt;}
.x104_c00014{left:189.333333pt;}
.x24_c00014{left:190.666667pt;}
.xdf_c00014{left:192.000000pt;}
.xe9_c00014{left:192.960000pt;}
.x46_c00014{left:195.626667pt;}
.xb8_c00014{left:197.333333pt;}
.x5_c00014{left:199.040000pt;}
.x94_c00014{left:200.000000pt;}
.x73_c00014{left:202.666667pt;}
.xbf_c00014{left:205.333333pt;}
.x6a_c00014{left:206.466667pt;}
.x61_c00014{left:207.626667pt;}
.xfb_c00014{left:210.666667pt;}
.x11_c00014{left:214.293333pt;}
.xfe_c00014{left:218.666667pt;}
.x19_c00014{left:222.666667pt;}
.x3a_c00014{left:223.626667pt;}
.x4e_c00014{left:229.706667pt;}
.xd6_c00014{left:230.666667pt;}
.xcd_c00014{left:232.000000pt;}
.x7e_c00014{left:236.373333pt;}
.xde_c00014{left:237.333333pt;}
.x6b_c00014{left:238.293333pt;}
.xad_c00014{left:240.000000pt;}
.x25_c00014{left:241.333333pt;}
.x47_c00014{left:245.333333pt;}
.x8e_c00014{left:248.000000pt;}
.x3b_c00014{left:249.333333pt;}
.xff_c00014{left:250.293333pt;}
.xa7_c00014{left:252.000000pt;}
.x74_c00014{left:253.333333pt;}
.x87_c00014{left:255.626667pt;}
.xb9_c00014{left:257.333333pt;}
.x26_c00014{left:259.040000pt;}
.xc0_c00014{left:260.000000pt;}
.x7f_c00014{left:262.293333pt;}
.x4f_c00014{left:264.373333pt;}
.x12_c00014{left:267.626667pt;}
.x6_c00014{left:268.960000pt;}
.x62_c00014{left:270.293333pt;}
.x30_c00014{left:271.626667pt;}
.x6c_c00014{left:272.960000pt;}
.x59_c00014{left:275.040000pt;}
.x75_c00014{left:279.040000pt;}
.xf8_c00014{left:280.000000pt;}
.x7_c00014{left:284.000000pt;}
.x13_c00014{left:287.040000pt;}
.xae_c00014{left:289.333333pt;}
.x95_c00014{left:290.666667pt;}
.xce_c00014{left:292.000000pt;}
.x50_c00014{left:295.626667pt;}
.xc7_c00014{left:298.666667pt;}
.x5a_c00014{left:300.373333pt;}
.x88_c00014{left:301.333333pt;}
.x6d_c00014{left:302.293333pt;}
.x1a_c00014{left:303.626667pt;}
.xe2_c00014{left:304.960000pt;}
.x8_c00014{left:306.293333pt;}
.x3c_c00014{left:308.000000pt;}
.xf4_c00014{left:309.706667pt;}
.x31_c00014{left:310.666667pt;}
.x14_c00014{left:312.000000pt;}
.xc8_c00014{left:316.960000pt;}
.x6e_c00014{left:318.666667pt;}
.x100_c00014{left:320.373333pt;}
.xb2_c00014{left:321.333333pt;}
.x76_c00014{left:323.040000pt;}
.x48_c00014{left:325.706667pt;}
.x80_c00014{left:328.000000pt;}
.xa8_c00014{left:328.960000pt;}
.xba_c00014{left:331.040000pt;}
.x1b_c00014{left:333.333333pt;}
.x9e_c00014{left:334.293333pt;}
.xfc_c00014{left:336.000000pt;}
.x51_c00014{left:336.960000pt;}
.xd7_c00014{left:338.666667pt;}
.xc1_c00014{left:339.626667pt;}
.x27_c00014{left:342.666667pt;}
.xaf_c00014{left:343.626667pt;}
.xa9_c00014{left:345.333333pt;}
.x77_c00014{left:347.040000pt;}
.x1_c00014{left:348.000000pt;}
.x3d_c00014{left:349.333333pt;}
.x89_c00014{left:351.626667pt;}
.xc2_c00014{left:354.666667pt;}
.x5b_c00014{left:356.373333pt;}
.x32_c00014{left:357.333333pt;}
.x28_c00014{left:359.040000pt;}
.x9_c00014{left:360.000000pt;}
.xea_c00014{left:361.333333pt;}
.xcf_c00014{left:362.293333pt;}
.x9f_c00014{left:364.000000pt;}
.x52_c00014{left:366.293333pt;}
.xb3_c00014{left:368.000000pt;}
.xd9_c00014{left:369.706667pt;}
.xc3_c00014{left:373.333333pt;}
.xd3_c00014{left:374.293333pt;}
.x33_c00014{left:375.626667pt;}
.xd0_c00014{left:378.666667pt;}
.xc9_c00014{left:381.333333pt;}
.xb4_c00014{left:382.666667pt;}
.x53_c00014{left:384.373333pt;}
.xf0_c00014{left:385.333333pt;}
.x78_c00014{left:388.000000pt;}
.x1c_c00014{left:389.333333pt;}
.x101_c00014{left:390.666667pt;}
.x6f_c00014{left:392.373333pt;}
.x5c_c00014{left:393.333333pt;}
.x63_c00014{left:394.293333pt;}
.x49_c00014{left:397.333333pt;}
.xd8_c00014{left:398.293333pt;}
.x81_c00014{left:399.626667pt;}
.xeb_c00014{left:401.333333pt;}
.x8f_c00014{left:402.666667pt;}
.xa0_c00014{left:404.373333pt;}
.x29_c00014{left:405.333333pt;}
.x1d_c00014{left:406.666667pt;}
.x54_c00014{left:409.333333pt;}
.xbb_c00014{left:411.040000pt;}
.x105_c00014{left:412.000000pt;}
.xe3_c00014{left:413.333333pt;}
.xe6_c00014{left:414.666667pt;}
.x96_c00014{left:418.666667pt;}
.xb5_c00014{left:421.333333pt;}
.x15_c00014{left:422.293333pt;}
.xa_c00014{left:424.960000pt;}
.xb0_c00014{left:427.040000pt;}
.x3e_c00014{left:428.000000pt;}
.x70_c00014{left:429.706667pt;}
.x90_c00014{left:430.666667pt;}
.x1e_c00014{left:432.373333pt;}
.xbc_c00014{left:435.040000pt;}
.xee_c00014{left:436.000000pt;}
.xda_c00014{left:436.960000pt;}
.x34_c00014{left:438.666667pt;}
.xb_c00014{left:440.373333pt;}
.x3f_c00014{left:441.333333pt;}
.x97_c00014{left:444.000000pt;}
.x8a_c00014{left:445.333333pt;}
.x79_c00014{left:449.333333pt;}
.x64_c00014{left:451.040000pt;}
.xe4_c00014{left:453.706667pt;}
.xc4_c00014{left:455.040000pt;}
.x1f_c00014{left:457.333333pt;}
.x5d_c00014{left:458.666667pt;}
.x82_c00014{left:460.000000pt;}
.xa1_c00014{left:461.333333pt;}
.x102_c00014{left:462.666667pt;}
.xc_c00014{left:463.626667pt;}
.x40_c00014{left:466.293333pt;}
.xb6_c00014{left:468.373333pt;}
.x91_c00014{left:470.666667pt;}
.xaa_c00014{left:471.626667pt;}
.x71_c00014{left:472.960000pt;}
.x98_c00014{left:474.293333pt;}
.x65_c00014{left:475.626667pt;}
.x2a_c00014{left:476.960000pt;}
.x8b_c00014{left:478.293333pt;}
.x5e_c00014{left:480.000000pt;}
.x55_c00014{left:482.293333pt;}
.xdb_c00014{left:483.626667pt;}
.xfd_c00014{left:486.293333pt;}
.x4a_c00014{left:487.626667pt;}
.x35_c00014{left:489.333333pt;}
.xb7_c00014{left:490.666667pt;}
.x99_c00014{left:492.373333pt;}
.x2b_c00014{left:493.333333pt;}
.xbd_c00014{left:494.293333pt;}
.x41_c00014{left:496.960000pt;}
.x106_c00014{left:498.666667pt;}
.xca_c00014{left:500.000000pt;}
.x16_c00014{left:501.333333pt;}
.xec_c00014{left:502.293333pt;}
.x20_c00014{left:504.000000pt;}
.x7a_c00014{left:505.333333pt;}
.x103_c00014{left:506.666667pt;}
.x66_c00014{left:508.000000pt;}
.x92_c00014{left:512.000000pt;}
.xa2_c00014{left:512.960000pt;}
.x17_c00014{left:514.666667pt;}
.x9a_c00014{left:515.626667pt;}
.x21_c00014{left:518.666667pt;}
.xe7_c00014{left:520.000000pt;}
.xd1_c00014{left:521.333333pt;}
.xd_c00014{left:524.000000pt;}
.x5f_c00014{left:525.133333pt;}
.xf5_c00014{left:526.666667pt;}
.x107_c00014{left:528.373333pt;}
.x2c_c00014{left:529.333333pt;}
.xab_c00014{left:530.293333pt;}
.xc5_c00014{left:532.960000pt;}
.xbe_c00014{left:536.373333pt;}
.xa3_c00014{left:541.333333pt;}
.x2d_c00014{left:542.293333pt;}
.xf1_c00014{left:543.626667pt;}
.xd4_c00014{left:545.333333pt;}
.x83_c00014{left:546.466667pt;}
.x8c_c00014{left:548.000000pt;}
.x36_c00014{left:548.960000pt;}
.x7b_c00014{left:551.800000pt;}
.x42_c00014{left:553.333333pt;}
.x56_c00014{left:554.293333pt;}
.x72_c00014{left:560.000000pt;}
.x60_c00014{left:560.960000pt;}
.xd2_c00014{left:562.666667pt;}
.x37_c00014{left:565.333333pt;}
.xcb_c00014{left:566.666667pt;}
.xed_c00014{left:568.000000pt;}
.xe0_c00014{left:569.333333pt;}
.xf9_c00014{left:570.293333pt;}
.x22_c00014{left:572.000000pt;}
.xe5_c00014{left:572.960000pt;}
.x57_c00014{left:575.040000pt;}
.xa4_c00014{left:576.000000pt;}
.xb1_c00014{left:577.333333pt;}
.x84_c00014{left:580.000000pt;}
.xac_c00014{left:582.666667pt;}
.x18_c00014{left:584.000000pt;}
.x7c_c00014{left:584.960000pt;}
.x43_c00014{left:586.293333pt;}
.xe_c00014{left:588.960000pt;}
.xc6_c00014{left:593.333333pt;}
.x85_c00014{left:596.000000pt;}
.x9b_c00014{left:597.333333pt;}
.x4b_c00014{left:598.666667pt;}
.xdc_c00014{left:600.000000pt;}
.xa5_c00014{left:606.293333pt;}
.xef_c00014{left:607.626667pt;}
.x4c_c00014{left:612.373333pt;}
.x9c_c00014{left:615.040000pt;}
.x67_c00014{left:617.706667pt;}
.xcc_c00014{left:619.040000pt;}
.xfa_c00014{left:622.666667pt;}
.x2_c00014{left:625.333333pt;}
.x93_c00014{left:627.040000pt;}
.x2e_c00014{left:628.373333pt;}
.x7d_c00014{left:629.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3d96e90e87dd0e67dc288e97.woff2')format("woff");}.ff1_c00015{font-family:ff1_c00015;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8b_c00015{transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);}
.m24_c00015{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_c00015{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.mda_c00015{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m23_c00015{transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);}
.m6c_c00015{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m4b_c00015{transform:matrix(0.365966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365966,0.000000,0.000000,0.250000,0,0);}
.m49_c00015{transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);}
.m79_c00015{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mb6_c00015{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m13_c00015{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m7f_c00015{transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);}
.m50_c00015{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m4c_c00015{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m46_c00015{transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);}
.m48_c00015{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m38_c00015{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.maf_c00015{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m3b_c00015{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.mc6_c00015{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m12_c00015{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.me_c00015{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m47_c00015{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m31_c00015{transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);}
.ma7_c00015{transform:matrix(0.390560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390560,0.000000,0.000000,0.250000,0,0);}
.m81_c00015{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m9b_c00015{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.maa_c00015{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mc8_c00015{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m16_c00015{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.m2c_c00015{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m21_c00015{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m3d_c00015{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);}
.m1f_c00015{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m86_c00015{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mba_c00015{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m29_c00015{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m4f_c00015{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.md4_c00015{transform:matrix(0.408742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408742,0.000000,0.000000,0.250000,0,0);}
.m55_c00015{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m98_c00015{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mc3_c00015{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m4e_c00015{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m1c_c00015{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m34_c00015{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.m75_c00015{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.ma_c00015{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m3f_c00015{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mb0_c00015{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.ma1_c00015{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m28_c00015{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mb9_c00015{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m3c_c00015{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m58_c00015{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m8c_c00015{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m5a_c00015{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m66_c00015{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.md7_c00015{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mb5_c00015{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.mae_c00015{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m64_c00015{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m63_c00015{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m60_c00015{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.mce_c00015{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.m9a_c00015{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m61_c00015{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m36_c00015{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m72_c00015{transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);}
.ma5_c00015{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.mc5_c00015{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m44_c00015{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m87_c00015{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m6a_c00015{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mcb_c00015{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.mc1_c00015{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.mca_c00015{transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);}
.m8a_c00015{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m2f_c00015{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m51_c00015{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m33_c00015{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m3a_c00015{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.mc2_c00015{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m35_c00015{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m7c_c00015{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m32_c00015{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.mcf_c00015{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m9d_c00015{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.m70_c00015{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m76_c00015{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.m19_c00015{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m10_c00015{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m3_c00015{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m6f_c00015{transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);}
.m99_c00015{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mb4_c00015{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m96_c00015{transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);}
.mcd_c00015{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.m15_c00015{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m45_c00015{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.mbc_c00015{transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);}
.me0_c00015{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mdd_c00015{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m5d_c00015{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m82_c00015{transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);}
.mf_c00015{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.mc_c00015{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m6b_c00015{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m68_c00015{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.md8_c00015{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m17_c00015{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m5f_c00015{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.m1b_c00015{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m69_c00015{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mc7_c00015{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m73_c00015{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m11_c00015{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_c00015{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m67_c00015{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m26_c00015{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m8f_c00015{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mc4_c00015{transform:matrix(0.512059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512059,0.000000,0.000000,0.250000,0,0);}
.mcc_c00015{transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);}
.mad_c00015{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m84_c00015{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m8_c00015{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.ma9_c00015{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m54_c00015{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.md_c00015{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mb7_c00015{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.mbd_c00015{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.ma3_c00015{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m30_c00015{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m8d_c00015{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m52_c00015{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m83_c00015{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m5e_c00015{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m37_c00015{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m2a_c00015{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m7_c00015{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.ma8_c00015{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m4_c00015{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mb_c00015{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m93_c00015{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.md5_c00015{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m25_c00015{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mb3_c00015{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m57_c00015{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m42_c00015{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.md3_c00015{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m7e_c00015{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m5b_c00015{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m7a_c00015{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m9e_c00015{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m2b_c00015{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.mac_c00015{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m74_c00015{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m4d_c00015{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m1e_c00015{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m5c_c00015{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mc9_c00015{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m89_c00015{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m65_c00015{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.ma6_c00015{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m6d_c00015{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m77_c00015{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m6e_c00015{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mb1_c00015{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m1a_c00015{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mdb_c00015{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.md9_c00015{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m56_c00015{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m3e_c00015{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m7b_c00015{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);}
.ma0_c00015{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m5_c00015{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m90_c00015{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m9f_c00015{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m91_c00015{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m20_c00015{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.mdc_c00015{transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);}
.m6_c00015{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m53_c00015{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m9c_c00015{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m71_c00015{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m39_c00015{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m4a_c00015{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m2d_c00015{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.ma2_c00015{transform:matrix(0.591805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591805,0.000000,0.000000,0.250000,0,0);}
.mde_c00015{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.mb8_c00015{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.md0_c00015{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m8e_c00015{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m2e_c00015{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.ma4_c00015{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m22_c00015{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.mdf_c00015{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.m78_c00015{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m1d_c00015{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m95_c00015{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m97_c00015{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m1_c00015{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.mab_c00015{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.mbe_c00015{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);}
.mb2_c00015{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m0_c00015{transform:matrix(0.665064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665064,0.000000,0.000000,0.250000,0,0);}
.m92_c00015{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m43_c00015{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mc0_c00015{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.mbf_c00015{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m40_c00015{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mbb_c00015{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m62_c00015{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m85_c00015{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m94_c00015{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m7d_c00015{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m2_c00015{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.md6_c00015{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m59_c00015{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m80_c00015{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.md1_c00015{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m88_c00015{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m27_c00015{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m41_c00015{transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);}
.m9_c00015{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.md2_c00015{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.v2_c00015{vertical-align:-6.000000px;}
.v0_c00015{vertical-align:0.000000px;}
.v1_c00015{vertical-align:6.000000px;}
.ls0_c00015{letter-spacing:0.000000px;}
.sc__c00015{text-shadow:none;}
.sc0_c00015{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00015{-webkit-text-stroke:0px transparent;}
.sc0_c00015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00015{word-spacing:-8.551971px;}
.ws3_c00015{word-spacing:-6.111596px;}
.wsd_c00015{word-spacing:-5.986184px;}
.ws9_c00015{word-spacing:-5.443839px;}
.wse_c00015{word-spacing:-5.187112px;}
.wsc_c00015{word-spacing:-4.506262px;}
.ws8_c00015{word-spacing:-3.088080px;}
.wsf_c00015{word-spacing:-2.069520px;}
.ws5_c00015{word-spacing:-1.792767px;}
.ws7_c00015{word-spacing:-1.219898px;}
.ws10_c00015{word-spacing:0.000000px;}
.ws6_c00015{word-spacing:1.062776px;}
.wsb_c00015{word-spacing:1.146284px;}
.ws4_c00015{word-spacing:1.716457px;}
.wsa_c00015{word-spacing:1.767045px;}
.ws0_c00015{word-spacing:2.066465px;}
.ws1_c00015{word-spacing:5.688035px;}
._2_c00015{width:14.102211px;}
._1_c00015{width:15.669382px;}
._0_c00015{width:22.242109px;}
.fc0_c00015{color:transparent;}
.fs0_c00015{font-size:18.720000px;}
.fs1_c00015{font-size:20.400000px;}
.fs5_c00015{font-size:25.500000px;}
.fs3_c00015{font-size:28.920000px;}
.fs4_c00015{font-size:32.340000px;}
.fs2_c00015{font-size:35.700000px;}
.fs6_c00015{font-size:39.120000px;}
.y0_c00015{bottom:0.000000px;}
.ydb_c00015{bottom:254.325000px;}
.yda_c00015{bottom:255.405000px;}
.ydd_c00015{bottom:255.630000px;}
.yde_c00015{bottom:256.470000px;}
.ydc_c00015{bottom:256.905000px;}
.yd5_c00015{bottom:273.180000px;}
.yd6_c00015{bottom:274.245000px;}
.yd3_c00015{bottom:274.905000px;}
.yd7_c00015{bottom:275.970000px;}
.yd4_c00015{bottom:276.405000px;}
.yd8_c00015{bottom:276.630000px;}
.yd9_c00015{bottom:277.905000px;}
.yd0_c00015{bottom:293.745000px;}
.ycf_c00015{bottom:294.630000px;}
.yd2_c00015{bottom:295.245000px;}
.yce_c00015{bottom:295.905000px;}
.yd1_c00015{bottom:296.130000px;}
.yc8_c00015{bottom:310.905000px;}
.ycd_c00015{bottom:312.180000px;}
.yc9_c00015{bottom:313.245000px;}
.yca_c00015{bottom:315.405000px;}
.ycc_c00015{bottom:315.630000px;}
.ycb_c00015{bottom:316.470000px;}
.yc2_c00015{bottom:332.745000px;}
.yc6_c00015{bottom:334.245000px;}
.yc3_c00015{bottom:334.905000px;}
.yc4_c00015{bottom:335.130000px;}
.yc5_c00015{bottom:336.405000px;}
.yc7_c00015{bottom:337.470000px;}
.ybf_c00015{bottom:352.245000px;}
.yc0_c00015{bottom:354.630000px;}
.yc1_c00015{bottom:355.905000px;}
.yba_c00015{bottom:371.325000px;}
.ybb_c00015{bottom:372.405000px;}
.ybe_c00015{bottom:373.245000px;}
.yb8_c00015{bottom:373.905000px;}
.yb9_c00015{bottom:374.325000px;}
.ybd_c00015{bottom:375.405000px;}
.ybc_c00015{bottom:376.470000px;}
.yb7_c00015{bottom:391.905000px;}
.yb4_c00015{bottom:392.745000px;}
.yb5_c00015{bottom:393.825000px;}
.yb3_c00015{bottom:394.905000px;}
.yb6_c00015{bottom:395.130000px;}
.yb2_c00015{bottom:410.745000px;}
.yab_c00015{bottom:412.050000px;}
.yaa_c00015{bottom:412.245000px;}
.yb1_c00015{bottom:412.470000px;}
.yae_c00015{bottom:413.130000px;}
.yb0_c00015{bottom:413.970000px;}
.yac_c00015{bottom:414.405000px;}
.yaf_c00015{bottom:414.630000px;}
.yad_c00015{bottom:415.470000px;}
.ya7_c00015{bottom:431.745000px;}
.ya6_c00015{bottom:433.245000px;}
.ya4_c00015{bottom:433.470000px;}
.ya5_c00015{bottom:433.905000px;}
.ya9_c00015{bottom:434.130000px;}
.ya8_c00015{bottom:435.405000px;}
.ya0_c00015{bottom:450.825000px;}
.ya1_c00015{bottom:451.245000px;}
.ya2_c00015{bottom:452.745000px;}
.y9e_c00015{bottom:453.405000px;}
.y9f_c00015{bottom:454.905000px;}
.ya3_c00015{bottom:455.970000px;}
.y9a_c00015{bottom:470.745000px;}
.y9b_c00015{bottom:472.245000px;}
.y9d_c00015{bottom:472.470000px;}
.y97_c00015{bottom:472.905000px;}
.y9c_c00015{bottom:473.130000px;}
.y99_c00015{bottom:473.970000px;}
.y98_c00015{bottom:474.405000px;}
.y96_c00015{bottom:490.245000px;}
.y92_c00015{bottom:491.745000px;}
.y94_c00015{bottom:492.630000px;}
.y93_c00015{bottom:493.905000px;}
.y95_c00015{bottom:494.970000px;}
.y91_c00015{bottom:509.745000px;}
.y90_c00015{bottom:510.405000px;}
.y8f_c00015{bottom:511.245000px;}
.y8e_c00015{bottom:513.405000px;}
.y8b_c00015{bottom:530.745000px;}
.y8d_c00015{bottom:531.405000px;}
.y8c_c00015{bottom:531.630000px;}
.y8a_c00015{bottom:532.905000px;}
.y85_c00015{bottom:549.405000px;}
.y84_c00015{bottom:550.245000px;}
.y83_c00015{bottom:551.325000px;}
.y87_c00015{bottom:551.745000px;}
.y82_c00015{bottom:552.405000px;}
.y89_c00015{bottom:552.630000px;}
.y86_c00015{bottom:553.470000px;}
.y88_c00015{bottom:553.905000px;}
.y81_c00015{bottom:569.745000px;}
.y7d_c00015{bottom:571.905000px;}
.y7e_c00015{bottom:572.130000px;}
.y80_c00015{bottom:572.970000px;}
.y7f_c00015{bottom:573.405000px;}
.y7a_c00015{bottom:589.680000px;}
.y79_c00015{bottom:590.745000px;}
.y7b_c00015{bottom:591.405000px;}
.y7c_c00015{bottom:592.470000px;}
.y75_c00015{bottom:608.745000px;}
.y76_c00015{bottom:610.245000px;}
.y74_c00015{bottom:610.905000px;}
.y78_c00015{bottom:611.130000px;}
.y73_c00015{bottom:611.970000px;}
.y77_c00015{bottom:612.405000px;}
.y72_c00015{bottom:627.405000px;}
.y6d_c00015{bottom:628.680000px;}
.y70_c00015{bottom:629.745000px;}
.y6c_c00015{bottom:630.405000px;}
.y6f_c00015{bottom:630.630000px;}
.y71_c00015{bottom:630.825000px;}
.y6e_c00015{bottom:631.905000px;}
.y6b_c00015{bottom:647.970000px;}
.y6a_c00015{bottom:649.245000px;}
.y68_c00015{bottom:650.130000px;}
.y66_c00015{bottom:650.325000px;}
.y67_c00015{bottom:651.405000px;}
.y69_c00015{bottom:652.470000px;}
.y64_c00015{bottom:667.245000px;}
.y62_c00015{bottom:668.745000px;}
.y65_c00015{bottom:669.630000px;}
.y63_c00015{bottom:670.905000px;}
.y61_c00015{bottom:700.905000px;}
.y60_c00015{bottom:727.245000px;}
.y5e_c00015{bottom:728.130000px;}
.y5f_c00015{bottom:729.405000px;}
.y58_c00015{bottom:745.905000px;}
.y5a_c00015{bottom:746.745000px;}
.y5d_c00015{bottom:746.970000px;}
.y5c_c00015{bottom:747.405000px;}
.y5b_c00015{bottom:748.905000px;}
.y59_c00015{bottom:749.970000px;}
.y57_c00015{bottom:765.405000px;}
.y55_c00015{bottom:766.245000px;}
.y56_c00015{bottom:767.325000px;}
.y50_c00015{bottom:784.905000px;}
.y4e_c00015{bottom:785.745000px;}
.y52_c00015{bottom:787.245000px;}
.y51_c00015{bottom:787.905000px;}
.y4f_c00015{bottom:788.130000px;}
.y53_c00015{bottom:788.970000px;}
.y54_c00015{bottom:789.405000px;}
.y4d_c00015{bottom:804.405000px;}
.y4c_c00015{bottom:805.245000px;}
.y4b_c00015{bottom:807.405000px;}
.y49_c00015{bottom:824.745000px;}
.y48_c00015{bottom:826.905000px;}
.y4a_c00015{bottom:827.130000px;}
.y47_c00015{bottom:845.745000px;}
.y46_c00015{bottom:847.905000px;}
.y44_c00015{bottom:865.245000px;}
.y45_c00015{bottom:866.970000px;}
.y43_c00015{bottom:867.405000px;}
.y3e_c00015{bottom:882.405000px;}
.y3d_c00015{bottom:882.825000px;}
.y40_c00015{bottom:883.905000px;}
.y3c_c00015{bottom:884.745000px;}
.y42_c00015{bottom:885.405000px;}
.y41_c00015{bottom:885.825000px;}
.y3f_c00015{bottom:886.905000px;}
.y3b_c00015{bottom:903.405000px;}
.y38_c00015{bottom:904.245000px;}
.y39_c00015{bottom:905.130000px;}
.y36_c00015{bottom:906.405000px;}
.y3a_c00015{bottom:907.470000px;}
.y37_c00015{bottom:907.905000px;}
.y33_c00015{bottom:922.905000px;}
.y31_c00015{bottom:923.745000px;}
.y32_c00015{bottom:923.970000px;}
.y35_c00015{bottom:924.405000px;}
.y2e_c00015{bottom:925.245000px;}
.y2d_c00015{bottom:925.905000px;}
.y34_c00015{bottom:926.325000px;}
.y2f_c00015{bottom:926.970000px;}
.y30_c00015{bottom:927.405000px;}
.y2b_c00015{bottom:940.905000px;}
.y2c_c00015{bottom:941.970000px;}
.y26_c00015{bottom:942.405000px;}
.y27_c00015{bottom:943.245000px;}
.y2a_c00015{bottom:943.470000px;}
.y28_c00015{bottom:944.325000px;}
.y29_c00015{bottom:946.470000px;}
.y23_c00015{bottom:961.905000px;}
.y21_c00015{bottom:962.745000px;}
.y22_c00015{bottom:962.970000px;}
.y24_c00015{bottom:963.405000px;}
.y25_c00015{bottom:963.825000px;}
.y20_c00015{bottom:964.905000px;}
.y1b_c00015{bottom:981.405000px;}
.y18_c00015{bottom:982.245000px;}
.y19_c00015{bottom:982.470000px;}
.y1d_c00015{bottom:983.325000px;}
.y1c_c00015{bottom:983.745000px;}
.y1f_c00015{bottom:984.405000px;}
.y1a_c00015{bottom:984.825000px;}
.y1e_c00015{bottom:985.905000px;}
.y16_c00015{bottom:1003.245000px;}
.y15_c00015{bottom:1004.130000px;}
.y17_c00015{bottom:1004.970000px;}
.y14_c00015{bottom:1005.405000px;}
.ye_c00015{bottom:1020.405000px;}
.y10_c00015{bottom:1021.245000px;}
.y12_c00015{bottom:1021.905000px;}
.yf_c00015{bottom:1023.405000px;}
.y13_c00015{bottom:1023.630000px;}
.y11_c00015{bottom:1024.470000px;}
.ya_c00015{bottom:1039.905000px;}
.y9_c00015{bottom:1040.745000px;}
.yb_c00015{bottom:1041.405000px;}
.yc_c00015{bottom:1041.825000px;}
.yd_c00015{bottom:1042.905000px;}
.y8_c00015{bottom:1059.405000px;}
.y7_c00015{bottom:1060.905000px;}
.y4_c00015{bottom:1061.745000px;}
.y3_c00015{bottom:1062.630000px;}
.y6_c00015{bottom:1062.825000px;}
.y5_c00015{bottom:1063.905000px;}
.y2_c00015{bottom:1102.050000px;}
.y1_c00015{bottom:1103.130000px;}
.h1_c00015{height:23.025234px;}
.h2_c00015{height:25.091602px;}
.h6_c00015{height:31.364502px;}
.h4_c00015{height:35.571035px;}
.h5_c00015{height:39.777568px;}
.h7_c00015{height:41.571035px;}
.h3_c00015{height:43.910303px;}
.h8_c00015{height:48.116836px;}
.h0_c00015{height:1335.000000px;}
.w0_c00015{width:880.500000px;}
.x0_c00015{left:0.000000px;}
.x105_c00015{left:151.500000px;}
.x2_c00015{left:153.000000px;}
.x1e_c00015{left:154.920000px;}
.x64_c00015{left:168.645000px;}
.xab_c00015{left:170.580000px;}
.xe9_c00015{left:174.000000px;}
.x7b_c00015{left:175.080000px;}
.xec_c00015{left:177.000000px;}
.x4c_c00015{left:178.500000px;}
.xff_c00015{left:180.000000px;}
.x3_c00015{left:181.500000px;}
.xe1_c00015{left:183.000000px;}
.xba_c00015{left:184.500000px;}
.x5a_c00015{left:186.000000px;}
.x1f_c00015{left:187.500000px;}
.xa7_c00015{left:191.580000px;}
.xd9_c00015{left:193.080000px;}
.xfc_c00015{left:195.000000px;}
.x43_c00015{left:196.920000px;}
.x14_c00015{left:200.580000px;}
.x4d_c00015{left:204.000000px;}
.x87_c00015{left:205.080000px;}
.x4_c00015{left:207.420000px;}
.x5b_c00015{left:211.080000px;}
.x102_c00015{left:212.145000px;}
.xde_c00015{left:214.080000px;}
.x70_c00015{left:217.080000px;}
.x20_c00015{left:218.355000px;}
.xd2_c00015{left:220.500000px;}
.x8f_c00015{left:223.500000px;}
.x2c_c00015{left:225.000000px;}
.xcf_c00015{left:226.500000px;}
.x7c_c00015{left:227.580000px;}
.x65_c00015{left:231.000000px;}
.xb1_c00015{left:232.500000px;}
.x5_c00015{left:235.500000px;}
.xe2_c00015{left:236.580000px;}
.x34_c00015{left:238.920000px;}
.xed_c00015{left:240.000000px;}
.x5c_c00015{left:242.580000px;}
.x95_c00015{left:249.000000px;}
.x88_c00015{left:250.500000px;}
.x21_c00015{left:252.000000px;}
.x90_c00015{left:253.500000px;}
.x7d_c00015{left:256.275000px;}
.xa1_c00015{left:258.000000px;}
.x4e_c00015{left:264.000000px;}
.xa8_c00015{left:265.500000px;}
.xd3_c00015{left:268.080000px;}
.x9e_c00015{left:270.000000px;}
.x22_c00015{left:271.500000px;}
.x35_c00015{left:273.000000px;}
.x5d_c00015{left:274.920000px;}
.xbf_c00015{left:276.000000px;}
.x6_c00015{left:277.080000px;}
.x71_c00015{left:279.000000px;}
.xb2_c00015{left:280.500000px;}
.x44_c00015{left:282.000000px;}
.x4f_c00015{left:283.080000px;}
.xa2_c00015{left:286.500000px;}
.xa9_c00015{left:288.000000px;}
.x36_c00015{left:289.080000px;}
.xd4_c00015{left:290.580000px;}
.x23_c00015{left:294.000000px;}
.xda_c00015{left:295.080000px;}
.x7e_c00015{left:297.000000px;}
.x7_c00015{left:298.500000px;}
.x2d_c00015{left:300.420000px;}
.xf7_c00015{left:301.500000px;}
.x5e_c00015{left:302.580000px;}
.x72_c00015{left:305.580000px;}
.x37_c00015{left:307.500000px;}
.xb3_c00015{left:309.420000px;}
.xbb_c00015{left:312.420000px;}
.x50_c00015{left:314.580000px;}
.x9f_c00015{left:316.080000px;}
.xf3_c00015{left:318.420000px;}
.xf8_c00015{left:320.580000px;}
.x96_c00015{left:322.500000px;}
.x66_c00015{left:324.000000px;}
.xc5_c00015{left:325.080000px;}
.xc9_c00015{left:326.580000px;}
.x8_c00015{left:329.145000px;}
.x38_c00015{left:332.580000px;}
.x73_c00015{left:334.920000px;}
.xe3_c00015{left:336.000000px;}
.x15_c00015{left:337.920000px;}
.x45_c00015{left:339.420000px;}
.x51_c00015{left:340.500000px;}
.xdb_c00015{left:341.580000px;}
.x89_c00015{left:343.500000px;}
.xf9_c00015{left:345.000000px;}
.x85_c00015{left:347.580000px;}
.x9_c00015{left:349.920000px;}
.xee_c00015{left:351.000000px;}
.x2e_c00015{left:352.080000px;}
.x97_c00015{left:355.080000px;}
.x39_c00015{left:358.500000px;}
.xc0_c00015{left:360.000000px;}
.xfa_c00015{left:362.580000px;}
.xac_c00015{left:364.920000px;}
.x67_c00015{left:366.000000px;}
.xbc_c00015{left:367.500000px;}
.x91_c00015{left:368.580000px;}
.x74_c00015{left:370.275000px;}
.xc1_c00015{left:372.000000px;}
.xc6_c00015{left:373.500000px;}
.x86_c00015{left:376.500000px;}
.xb4_c00015{left:378.000000px;}
.xa_c00015{left:379.920000px;}
.x24_c00015{left:382.500000px;}
.xa3_c00015{left:383.580000px;}
.x8a_c00015{left:385.500000px;}
.x2f_c00015{left:386.580000px;}
.xaa_c00015{left:388.500000px;}
.x52_c00015{left:389.580000px;}
.x1_c00015{left:391.500000px;}
.xd6_c00015{left:392.580000px;}
.xca_c00015{left:394.500000px;}
.x25_c00015{left:397.080000px;}
.x16_c00015{left:402.420000px;}
.x3a_c00015{left:409.500000px;}
.x68_c00015{left:411.000000px;}
.xe4_c00015{left:412.500000px;}
.xd7_c00015{left:413.580000px;}
.xef_c00015{left:417.000000px;}
.x46_c00015{left:419.775000px;}
.x5f_c00015{left:421.920000px;}
.x103_c00015{left:423.000000px;}
.xb5_c00015{left:424.500000px;}
.xf4_c00015{left:427.080000px;}
.xbd_c00015{left:429.000000px;}
.xb_c00015{left:430.500000px;}
.x53_c00015{left:433.500000px;}
.x3b_c00015{left:435.000000px;}
.x17_c00015{left:437.355000px;}
.xad_c00015{left:439.500000px;}
.xea_c00015{left:442.080000px;}
.x47_c00015{left:443.580000px;}
.x7f_c00015{left:447.000000px;}
.xcb_c00015{left:448.500000px;}
.x100_c00015{left:450.000000px;}
.x92_c00015{left:451.920000px;}
.xb6_c00015{left:453.000000px;}
.xfd_c00015{left:454.080000px;}
.x60_c00015{left:456.420000px;}
.x8b_c00015{left:457.920000px;}
.x3c_c00015{left:460.500000px;}
.xc_c00015{left:464.580000px;}
.xdf_c00015{left:466.500000px;}
.x75_c00015{left:468.855000px;}
.xe5_c00015{left:471.420000px;}
.x54_c00015{left:475.920000px;}
.x93_c00015{left:477.000000px;}
.x69_c00015{left:478.500000px;}
.x26_c00015{left:480.000000px;}
.x80_c00015{left:481.500000px;}
.x61_c00015{left:483.420000px;}
.x3d_c00015{left:485.580000px;}
.x8c_c00015{left:487.500000px;}
.x76_c00015{left:488.580000px;}
.xf0_c00015{left:493.500000px;}
.xae_c00015{left:495.000000px;}
.x48_c00015{left:497.580000px;}
.xd_c00015{left:499.500000px;}
.x6a_c00015{left:501.420000px;}
.x27_c00015{left:504.000000px;}
.x18_c00015{left:505.920000px;}
.x30_c00015{left:507.000000px;}
.x62_c00015{left:508.500000px;}
.xbe_c00015{left:511.080000px;}
.x81_c00015{left:513.645000px;}
.x3e_c00015{left:516.000000px;}
.x98_c00015{left:523.500000px;}
.xe6_c00015{left:528.000000px;}
.x6b_c00015{left:529.920000px;}
.x82_c00015{left:532.500000px;}
.x28_c00015{left:534.000000px;}
.xc2_c00015{left:537.000000px;}
.x31_c00015{left:538.500000px;}
.x19_c00015{left:541.920000px;}
.xe_c00015{left:543.000000px;}
.xf1_c00015{left:546.000000px;}
.x3f_c00015{left:549.420000px;}
.x99_c00015{left:550.500000px;}
.x83_c00015{left:553.500000px;}
.x94_c00015{left:554.580000px;}
.xfe_c00015{left:556.500000px;}
.x77_c00015{left:557.580000px;}
.x29_c00015{left:559.500000px;}
.x55_c00015{left:561.420000px;}
.xcc_c00015{left:562.500000px;}
.xd0_c00015{left:564.000000px;}
.x40_c00015{left:567.000000px;}
.xe7_c00015{left:569.580000px;}
.x101_c00015{left:573.000000px;}
.xf_c00015{left:574.920000px;}
.xb7_c00015{left:576.000000px;}
.xc7_c00015{left:579.420000px;}
.xf5_c00015{left:581.775000px;}
.x56_c00015{left:586.920000px;}
.xa4_c00015{left:589.080000px;}
.x63_c00015{left:590.580000px;}
.xe8_c00015{left:592.500000px;}
.x78_c00015{left:594.000000px;}
.x41_c00015{left:595.500000px;}
.xd5_c00015{left:598.500000px;}
.x6c_c00015{left:599.580000px;}
.xaf_c00015{left:601.500000px;}
.x9a_c00015{left:603.000000px;}
.x1a_c00015{left:604.920000px;}
.x10_c00015{left:606.000000px;}
.xd1_c00015{left:607.920000px;}
.x57_c00015{left:612.855000px;}
.x104_c00015{left:618.000000px;}
.xf2_c00015{left:619.500000px;}
.xa5_c00015{left:621.000000px;}
.x42_c00015{left:622.080000px;}
.xe0_c00015{left:624.000000px;}
.xf6_c00015{left:625.500000px;}
.x32_c00015{left:628.080000px;}
.x49_c00015{left:630.000000px;}
.x84_c00015{left:631.080000px;}
.x11_c00015{left:633.000000px;}
.xcd_c00015{left:634.500000px;}
.x9b_c00015{left:636.000000px;}
.x2a_c00015{left:637.080000px;}
.x1b_c00015{left:640.275000px;}
.xfb_c00015{left:645.420000px;}
.x79_c00015{left:648.000000px;}
.xdc_c00015{left:649.080000px;}
.xa6_c00015{left:652.500000px;}
.x8d_c00015{left:654.420000px;}
.xb8_c00015{left:655.920000px;}
.x4a_c00015{left:657.000000px;}
.xc3_c00015{left:658.500000px;}
.x12_c00015{left:661.500000px;}
.x2b_c00015{left:663.000000px;}
.x6d_c00015{left:664.080000px;}
.x9c_c00015{left:665.580000px;}
.xb0_c00015{left:670.500000px;}
.xc8_c00015{left:672.000000px;}
.xa0_c00015{left:673.275000px;}
.x1c_c00015{left:675.420000px;}
.xc4_c00015{left:677.580000px;}
.xce_c00015{left:681.000000px;}
.x8e_c00015{left:683.580000px;}
.xeb_c00015{left:685.500000px;}
.x9d_c00015{left:687.000000px;}
.x58_c00015{left:688.080000px;}
.x4b_c00015{left:690.855000px;}
.x6e_c00015{left:694.080000px;}
.xdd_c00015{left:697.500000px;}
.xd8_c00015{left:702.000000px;}
.x1d_c00015{left:703.080000px;}
.x7a_c00015{left:706.500000px;}
.x33_c00015{left:708.000000px;}
.x13_c00015{left:709.080000px;}
.x59_c00015{left:714.000000px;}
.x6f_c00015{left:716.580000px;}
.xb9_c00015{left:723.000000px;}
@media print{
.v2_c00015{vertical-align:-5.333333pt;}
.v0_c00015{vertical-align:0.000000pt;}
.v1_c00015{vertical-align:5.333333pt;}
.ls0_c00015{letter-spacing:0.000000pt;}
.ws2_c00015{word-spacing:-7.601752pt;}
.ws3_c00015{word-spacing:-5.432530pt;}
.wsd_c00015{word-spacing:-5.321053pt;}
.ws9_c00015{word-spacing:-4.838968pt;}
.wse_c00015{word-spacing:-4.610767pt;}
.wsc_c00015{word-spacing:-4.005566pt;}
.ws8_c00015{word-spacing:-2.744960pt;}
.wsf_c00015{word-spacing:-1.839573pt;}
.ws5_c00015{word-spacing:-1.593571pt;}
.ws7_c00015{word-spacing:-1.084354pt;}
.ws10_c00015{word-spacing:0.000000pt;}
.ws6_c00015{word-spacing:0.944690pt;}
.wsb_c00015{word-spacing:1.018919pt;}
.ws4_c00015{word-spacing:1.525740pt;}
.wsa_c00015{word-spacing:1.570707pt;}
.ws0_c00015{word-spacing:1.836858pt;}
.ws1_c00015{word-spacing:5.056031pt;}
._2_c00015{width:12.535299pt;}
._1_c00015{width:13.928339pt;}
._0_c00015{width:19.770764pt;}
.fs0_c00015{font-size:16.640000pt;}
.fs1_c00015{font-size:18.133333pt;}
.fs5_c00015{font-size:22.666667pt;}
.fs3_c00015{font-size:25.706667pt;}
.fs4_c00015{font-size:28.746667pt;}
.fs2_c00015{font-size:31.733333pt;}
.fs6_c00015{font-size:34.773333pt;}
.y0_c00015{bottom:0.000000pt;}
.ydb_c00015{bottom:226.066667pt;}
.yda_c00015{bottom:227.026667pt;}
.ydd_c00015{bottom:227.226667pt;}
.yde_c00015{bottom:227.973333pt;}
.ydc_c00015{bottom:228.360000pt;}
.yd5_c00015{bottom:242.826667pt;}
.yd6_c00015{bottom:243.773333pt;}
.yd3_c00015{bottom:244.360000pt;}
.yd7_c00015{bottom:245.306667pt;}
.yd4_c00015{bottom:245.693333pt;}
.yd8_c00015{bottom:245.893333pt;}
.yd9_c00015{bottom:247.026667pt;}
.yd0_c00015{bottom:261.106667pt;}
.ycf_c00015{bottom:261.893333pt;}
.yd2_c00015{bottom:262.440000pt;}
.yce_c00015{bottom:263.026667pt;}
.yd1_c00015{bottom:263.226667pt;}
.yc8_c00015{bottom:276.360000pt;}
.ycd_c00015{bottom:277.493333pt;}
.yc9_c00015{bottom:278.440000pt;}
.yca_c00015{bottom:280.360000pt;}
.ycc_c00015{bottom:280.560000pt;}
.ycb_c00015{bottom:281.306667pt;}
.yc2_c00015{bottom:295.773333pt;}
.yc6_c00015{bottom:297.106667pt;}
.yc3_c00015{bottom:297.693333pt;}
.yc4_c00015{bottom:297.893333pt;}
.yc5_c00015{bottom:299.026667pt;}
.yc7_c00015{bottom:299.973333pt;}
.ybf_c00015{bottom:313.106667pt;}
.yc0_c00015{bottom:315.226667pt;}
.yc1_c00015{bottom:316.360000pt;}
.yba_c00015{bottom:330.066667pt;}
.ybb_c00015{bottom:331.026667pt;}
.ybe_c00015{bottom:331.773333pt;}
.yb8_c00015{bottom:332.360000pt;}
.yb9_c00015{bottom:332.733333pt;}
.ybd_c00015{bottom:333.693333pt;}
.ybc_c00015{bottom:334.640000pt;}
.yb7_c00015{bottom:348.360000pt;}
.yb4_c00015{bottom:349.106667pt;}
.yb5_c00015{bottom:350.066667pt;}
.yb3_c00015{bottom:351.026667pt;}
.yb6_c00015{bottom:351.226667pt;}
.yb2_c00015{bottom:365.106667pt;}
.yab_c00015{bottom:366.266667pt;}
.yaa_c00015{bottom:366.440000pt;}
.yb1_c00015{bottom:366.640000pt;}
.yae_c00015{bottom:367.226667pt;}
.yb0_c00015{bottom:367.973333pt;}
.yac_c00015{bottom:368.360000pt;}
.yaf_c00015{bottom:368.560000pt;}
.yad_c00015{bottom:369.306667pt;}
.ya7_c00015{bottom:383.773333pt;}
.ya6_c00015{bottom:385.106667pt;}
.ya4_c00015{bottom:385.306667pt;}
.ya5_c00015{bottom:385.693333pt;}
.ya9_c00015{bottom:385.893333pt;}
.ya8_c00015{bottom:387.026667pt;}
.ya0_c00015{bottom:400.733333pt;}
.ya1_c00015{bottom:401.106667pt;}
.ya2_c00015{bottom:402.440000pt;}
.y9e_c00015{bottom:403.026667pt;}
.y9f_c00015{bottom:404.360000pt;}
.ya3_c00015{bottom:405.306667pt;}
.y9a_c00015{bottom:418.440000pt;}
.y9b_c00015{bottom:419.773333pt;}
.y9d_c00015{bottom:419.973333pt;}
.y97_c00015{bottom:420.360000pt;}
.y9c_c00015{bottom:420.560000pt;}
.y99_c00015{bottom:421.306667pt;}
.y98_c00015{bottom:421.693333pt;}
.y96_c00015{bottom:435.773333pt;}
.y92_c00015{bottom:437.106667pt;}
.y94_c00015{bottom:437.893333pt;}
.y93_c00015{bottom:439.026667pt;}
.y95_c00015{bottom:439.973333pt;}
.y91_c00015{bottom:453.106667pt;}
.y90_c00015{bottom:453.693333pt;}
.y8f_c00015{bottom:454.440000pt;}
.y8e_c00015{bottom:456.360000pt;}
.y8b_c00015{bottom:471.773333pt;}
.y8d_c00015{bottom:472.360000pt;}
.y8c_c00015{bottom:472.560000pt;}
.y8a_c00015{bottom:473.693333pt;}
.y85_c00015{bottom:488.360000pt;}
.y84_c00015{bottom:489.106667pt;}
.y83_c00015{bottom:490.066667pt;}
.y87_c00015{bottom:490.440000pt;}
.y82_c00015{bottom:491.026667pt;}
.y89_c00015{bottom:491.226667pt;}
.y86_c00015{bottom:491.973333pt;}
.y88_c00015{bottom:492.360000pt;}
.y81_c00015{bottom:506.440000pt;}
.y7d_c00015{bottom:508.360000pt;}
.y7e_c00015{bottom:508.560000pt;}
.y80_c00015{bottom:509.306667pt;}
.y7f_c00015{bottom:509.693333pt;}
.y7a_c00015{bottom:524.160000pt;}
.y79_c00015{bottom:525.106667pt;}
.y7b_c00015{bottom:525.693333pt;}
.y7c_c00015{bottom:526.640000pt;}
.y75_c00015{bottom:541.106667pt;}
.y76_c00015{bottom:542.440000pt;}
.y74_c00015{bottom:543.026667pt;}
.y78_c00015{bottom:543.226667pt;}
.y73_c00015{bottom:543.973333pt;}
.y77_c00015{bottom:544.360000pt;}
.y72_c00015{bottom:557.693333pt;}
.y6d_c00015{bottom:558.826667pt;}
.y70_c00015{bottom:559.773333pt;}
.y6c_c00015{bottom:560.360000pt;}
.y6f_c00015{bottom:560.560000pt;}
.y71_c00015{bottom:560.733333pt;}
.y6e_c00015{bottom:561.693333pt;}
.y6b_c00015{bottom:575.973333pt;}
.y6a_c00015{bottom:577.106667pt;}
.y68_c00015{bottom:577.893333pt;}
.y66_c00015{bottom:578.066667pt;}
.y67_c00015{bottom:579.026667pt;}
.y69_c00015{bottom:579.973333pt;}
.y64_c00015{bottom:593.106667pt;}
.y62_c00015{bottom:594.440000pt;}
.y65_c00015{bottom:595.226667pt;}
.y63_c00015{bottom:596.360000pt;}
.y61_c00015{bottom:623.026667pt;}
.y60_c00015{bottom:646.440000pt;}
.y5e_c00015{bottom:647.226667pt;}
.y5f_c00015{bottom:648.360000pt;}
.y58_c00015{bottom:663.026667pt;}
.y5a_c00015{bottom:663.773333pt;}
.y5d_c00015{bottom:663.973333pt;}
.y5c_c00015{bottom:664.360000pt;}
.y5b_c00015{bottom:665.693333pt;}
.y59_c00015{bottom:666.640000pt;}
.y57_c00015{bottom:680.360000pt;}
.y55_c00015{bottom:681.106667pt;}
.y56_c00015{bottom:682.066667pt;}
.y50_c00015{bottom:697.693333pt;}
.y4e_c00015{bottom:698.440000pt;}
.y52_c00015{bottom:699.773333pt;}
.y51_c00015{bottom:700.360000pt;}
.y4f_c00015{bottom:700.560000pt;}
.y53_c00015{bottom:701.306667pt;}
.y54_c00015{bottom:701.693333pt;}
.y4d_c00015{bottom:715.026667pt;}
.y4c_c00015{bottom:715.773333pt;}
.y4b_c00015{bottom:717.693333pt;}
.y49_c00015{bottom:733.106667pt;}
.y48_c00015{bottom:735.026667pt;}
.y4a_c00015{bottom:735.226667pt;}
.y47_c00015{bottom:751.773333pt;}
.y46_c00015{bottom:753.693333pt;}
.y44_c00015{bottom:769.106667pt;}
.y45_c00015{bottom:770.640000pt;}
.y43_c00015{bottom:771.026667pt;}
.y3e_c00015{bottom:784.360000pt;}
.y3d_c00015{bottom:784.733333pt;}
.y40_c00015{bottom:785.693333pt;}
.y3c_c00015{bottom:786.440000pt;}
.y42_c00015{bottom:787.026667pt;}
.y41_c00015{bottom:787.400000pt;}
.y3f_c00015{bottom:788.360000pt;}
.y3b_c00015{bottom:803.026667pt;}
.y38_c00015{bottom:803.773333pt;}
.y39_c00015{bottom:804.560000pt;}
.y36_c00015{bottom:805.693333pt;}
.y3a_c00015{bottom:806.640000pt;}
.y37_c00015{bottom:807.026667pt;}
.y33_c00015{bottom:820.360000pt;}
.y31_c00015{bottom:821.106667pt;}
.y32_c00015{bottom:821.306667pt;}
.y35_c00015{bottom:821.693333pt;}
.y2e_c00015{bottom:822.440000pt;}
.y2d_c00015{bottom:823.026667pt;}
.y34_c00015{bottom:823.400000pt;}
.y2f_c00015{bottom:823.973333pt;}
.y30_c00015{bottom:824.360000pt;}
.y2b_c00015{bottom:836.360000pt;}
.y2c_c00015{bottom:837.306667pt;}
.y26_c00015{bottom:837.693333pt;}
.y27_c00015{bottom:838.440000pt;}
.y2a_c00015{bottom:838.640000pt;}
.y28_c00015{bottom:839.400000pt;}
.y29_c00015{bottom:841.306667pt;}
.y23_c00015{bottom:855.026667pt;}
.y21_c00015{bottom:855.773333pt;}
.y22_c00015{bottom:855.973333pt;}
.y24_c00015{bottom:856.360000pt;}
.y25_c00015{bottom:856.733333pt;}
.y20_c00015{bottom:857.693333pt;}
.y1b_c00015{bottom:872.360000pt;}
.y18_c00015{bottom:873.106667pt;}
.y19_c00015{bottom:873.306667pt;}
.y1d_c00015{bottom:874.066667pt;}
.y1c_c00015{bottom:874.440000pt;}
.y1f_c00015{bottom:875.026667pt;}
.y1a_c00015{bottom:875.400000pt;}
.y1e_c00015{bottom:876.360000pt;}
.y16_c00015{bottom:891.773333pt;}
.y15_c00015{bottom:892.560000pt;}
.y17_c00015{bottom:893.306667pt;}
.y14_c00015{bottom:893.693333pt;}
.ye_c00015{bottom:907.026667pt;}
.y10_c00015{bottom:907.773333pt;}
.y12_c00015{bottom:908.360000pt;}
.yf_c00015{bottom:909.693333pt;}
.y13_c00015{bottom:909.893333pt;}
.y11_c00015{bottom:910.640000pt;}
.ya_c00015{bottom:924.360000pt;}
.y9_c00015{bottom:925.106667pt;}
.yb_c00015{bottom:925.693333pt;}
.yc_c00015{bottom:926.066667pt;}
.yd_c00015{bottom:927.026667pt;}
.y8_c00015{bottom:941.693333pt;}
.y7_c00015{bottom:943.026667pt;}
.y4_c00015{bottom:943.773333pt;}
.y3_c00015{bottom:944.560000pt;}
.y6_c00015{bottom:944.733333pt;}
.y5_c00015{bottom:945.693333pt;}
.y2_c00015{bottom:979.600000pt;}
.y1_c00015{bottom:980.560000pt;}
.h1_c00015{height:20.466875pt;}
.h2_c00015{height:22.303646pt;}
.h6_c00015{height:27.879557pt;}
.h4_c00015{height:31.618698pt;}
.h5_c00015{height:35.357839pt;}
.h7_c00015{height:36.952031pt;}
.h3_c00015{height:39.031380pt;}
.h8_c00015{height:42.770521pt;}
.h0_c00015{height:1186.666667pt;}
.w0_c00015{width:782.666667pt;}
.x0_c00015{left:0.000000pt;}
.x105_c00015{left:134.666667pt;}
.x2_c00015{left:136.000000pt;}
.x1e_c00015{left:137.706667pt;}
.x64_c00015{left:149.906667pt;}
.xab_c00015{left:151.626667pt;}
.xe9_c00015{left:154.666667pt;}
.x7b_c00015{left:155.626667pt;}
.xec_c00015{left:157.333333pt;}
.x4c_c00015{left:158.666667pt;}
.xff_c00015{left:160.000000pt;}
.x3_c00015{left:161.333333pt;}
.xe1_c00015{left:162.666667pt;}
.xba_c00015{left:164.000000pt;}
.x5a_c00015{left:165.333333pt;}
.x1f_c00015{left:166.666667pt;}
.xa7_c00015{left:170.293333pt;}
.xd9_c00015{left:171.626667pt;}
.xfc_c00015{left:173.333333pt;}
.x43_c00015{left:175.040000pt;}
.x14_c00015{left:178.293333pt;}
.x4d_c00015{left:181.333333pt;}
.x87_c00015{left:182.293333pt;}
.x4_c00015{left:184.373333pt;}
.x5b_c00015{left:187.626667pt;}
.x102_c00015{left:188.573333pt;}
.xde_c00015{left:190.293333pt;}
.x70_c00015{left:192.960000pt;}
.x20_c00015{left:194.093333pt;}
.xd2_c00015{left:196.000000pt;}
.x8f_c00015{left:198.666667pt;}
.x2c_c00015{left:200.000000pt;}
.xcf_c00015{left:201.333333pt;}
.x7c_c00015{left:202.293333pt;}
.x65_c00015{left:205.333333pt;}
.xb1_c00015{left:206.666667pt;}
.x5_c00015{left:209.333333pt;}
.xe2_c00015{left:210.293333pt;}
.x34_c00015{left:212.373333pt;}
.xed_c00015{left:213.333333pt;}
.x5c_c00015{left:215.626667pt;}
.x95_c00015{left:221.333333pt;}
.x88_c00015{left:222.666667pt;}
.x21_c00015{left:224.000000pt;}
.x90_c00015{left:225.333333pt;}
.x7d_c00015{left:227.800000pt;}
.xa1_c00015{left:229.333333pt;}
.x4e_c00015{left:234.666667pt;}
.xa8_c00015{left:236.000000pt;}
.xd3_c00015{left:238.293333pt;}
.x9e_c00015{left:240.000000pt;}
.x22_c00015{left:241.333333pt;}
.x35_c00015{left:242.666667pt;}
.x5d_c00015{left:244.373333pt;}
.xbf_c00015{left:245.333333pt;}
.x6_c00015{left:246.293333pt;}
.x71_c00015{left:248.000000pt;}
.xb2_c00015{left:249.333333pt;}
.x44_c00015{left:250.666667pt;}
.x4f_c00015{left:251.626667pt;}
.xa2_c00015{left:254.666667pt;}
.xa9_c00015{left:256.000000pt;}
.x36_c00015{left:256.960000pt;}
.xd4_c00015{left:258.293333pt;}
.x23_c00015{left:261.333333pt;}
.xda_c00015{left:262.293333pt;}
.x7e_c00015{left:264.000000pt;}
.x7_c00015{left:265.333333pt;}
.x2d_c00015{left:267.040000pt;}
.xf7_c00015{left:268.000000pt;}
.x5e_c00015{left:268.960000pt;}
.x72_c00015{left:271.626667pt;}
.x37_c00015{left:273.333333pt;}
.xb3_c00015{left:275.040000pt;}
.xbb_c00015{left:277.706667pt;}
.x50_c00015{left:279.626667pt;}
.x9f_c00015{left:280.960000pt;}
.xf3_c00015{left:283.040000pt;}
.xf8_c00015{left:284.960000pt;}
.x96_c00015{left:286.666667pt;}
.x66_c00015{left:288.000000pt;}
.xc5_c00015{left:288.960000pt;}
.xc9_c00015{left:290.293333pt;}
.x8_c00015{left:292.573333pt;}
.x38_c00015{left:295.626667pt;}
.x73_c00015{left:297.706667pt;}
.xe3_c00015{left:298.666667pt;}
.x15_c00015{left:300.373333pt;}
.x45_c00015{left:301.706667pt;}
.x51_c00015{left:302.666667pt;}
.xdb_c00015{left:303.626667pt;}
.x89_c00015{left:305.333333pt;}
.xf9_c00015{left:306.666667pt;}
.x85_c00015{left:308.960000pt;}
.x9_c00015{left:311.040000pt;}
.xee_c00015{left:312.000000pt;}
.x2e_c00015{left:312.960000pt;}
.x97_c00015{left:315.626667pt;}
.x39_c00015{left:318.666667pt;}
.xc0_c00015{left:320.000000pt;}
.xfa_c00015{left:322.293333pt;}
.xac_c00015{left:324.373333pt;}
.x67_c00015{left:325.333333pt;}
.xbc_c00015{left:326.666667pt;}
.x91_c00015{left:327.626667pt;}
.x74_c00015{left:329.133333pt;}
.xc1_c00015{left:330.666667pt;}
.xc6_c00015{left:332.000000pt;}
.x86_c00015{left:334.666667pt;}
.xb4_c00015{left:336.000000pt;}
.xa_c00015{left:337.706667pt;}
.x24_c00015{left:340.000000pt;}
.xa3_c00015{left:340.960000pt;}
.x8a_c00015{left:342.666667pt;}
.x2f_c00015{left:343.626667pt;}
.xaa_c00015{left:345.333333pt;}
.x52_c00015{left:346.293333pt;}
.x1_c00015{left:348.000000pt;}
.xd6_c00015{left:348.960000pt;}
.xca_c00015{left:350.666667pt;}
.x25_c00015{left:352.960000pt;}
.x16_c00015{left:357.706667pt;}
.x3a_c00015{left:364.000000pt;}
.x68_c00015{left:365.333333pt;}
.xe4_c00015{left:366.666667pt;}
.xd7_c00015{left:367.626667pt;}
.xef_c00015{left:370.666667pt;}
.x46_c00015{left:373.133333pt;}
.x5f_c00015{left:375.040000pt;}
.x103_c00015{left:376.000000pt;}
.xb5_c00015{left:377.333333pt;}
.xf4_c00015{left:379.626667pt;}
.xbd_c00015{left:381.333333pt;}
.xb_c00015{left:382.666667pt;}
.x53_c00015{left:385.333333pt;}
.x3b_c00015{left:386.666667pt;}
.x17_c00015{left:388.760000pt;}
.xad_c00015{left:390.666667pt;}
.xea_c00015{left:392.960000pt;}
.x47_c00015{left:394.293333pt;}
.x7f_c00015{left:397.333333pt;}
.xcb_c00015{left:398.666667pt;}
.x100_c00015{left:400.000000pt;}
.x92_c00015{left:401.706667pt;}
.xb6_c00015{left:402.666667pt;}
.xfd_c00015{left:403.626667pt;}
.x60_c00015{left:405.706667pt;}
.x8b_c00015{left:407.040000pt;}
.x3c_c00015{left:409.333333pt;}
.xc_c00015{left:412.960000pt;}
.xdf_c00015{left:414.666667pt;}
.x75_c00015{left:416.760000pt;}
.xe5_c00015{left:419.040000pt;}
.x54_c00015{left:423.040000pt;}
.x93_c00015{left:424.000000pt;}
.x69_c00015{left:425.333333pt;}
.x26_c00015{left:426.666667pt;}
.x80_c00015{left:428.000000pt;}
.x61_c00015{left:429.706667pt;}
.x3d_c00015{left:431.626667pt;}
.x8c_c00015{left:433.333333pt;}
.x76_c00015{left:434.293333pt;}
.xf0_c00015{left:438.666667pt;}
.xae_c00015{left:440.000000pt;}
.x48_c00015{left:442.293333pt;}
.xd_c00015{left:444.000000pt;}
.x6a_c00015{left:445.706667pt;}
.x27_c00015{left:448.000000pt;}
.x18_c00015{left:449.706667pt;}
.x30_c00015{left:450.666667pt;}
.x62_c00015{left:452.000000pt;}
.xbe_c00015{left:454.293333pt;}
.x81_c00015{left:456.573333pt;}
.x3e_c00015{left:458.666667pt;}
.x98_c00015{left:465.333333pt;}
.xe6_c00015{left:469.333333pt;}
.x6b_c00015{left:471.040000pt;}
.x82_c00015{left:473.333333pt;}
.x28_c00015{left:474.666667pt;}
.xc2_c00015{left:477.333333pt;}
.x31_c00015{left:478.666667pt;}
.x19_c00015{left:481.706667pt;}
.xe_c00015{left:482.666667pt;}
.xf1_c00015{left:485.333333pt;}
.x3f_c00015{left:488.373333pt;}
.x99_c00015{left:489.333333pt;}
.x83_c00015{left:492.000000pt;}
.x94_c00015{left:492.960000pt;}
.xfe_c00015{left:494.666667pt;}
.x77_c00015{left:495.626667pt;}
.x29_c00015{left:497.333333pt;}
.x55_c00015{left:499.040000pt;}
.xcc_c00015{left:500.000000pt;}
.xd0_c00015{left:501.333333pt;}
.x40_c00015{left:504.000000pt;}
.xe7_c00015{left:506.293333pt;}
.x101_c00015{left:509.333333pt;}
.xf_c00015{left:511.040000pt;}
.xb7_c00015{left:512.000000pt;}
.xc7_c00015{left:515.040000pt;}
.xf5_c00015{left:517.133333pt;}
.x56_c00015{left:521.706667pt;}
.xa4_c00015{left:523.626667pt;}
.x63_c00015{left:524.960000pt;}
.xe8_c00015{left:526.666667pt;}
.x78_c00015{left:528.000000pt;}
.x41_c00015{left:529.333333pt;}
.xd5_c00015{left:532.000000pt;}
.x6c_c00015{left:532.960000pt;}
.xaf_c00015{left:534.666667pt;}
.x9a_c00015{left:536.000000pt;}
.x1a_c00015{left:537.706667pt;}
.x10_c00015{left:538.666667pt;}
.xd1_c00015{left:540.373333pt;}
.x57_c00015{left:544.760000pt;}
.x104_c00015{left:549.333333pt;}
.xf2_c00015{left:550.666667pt;}
.xa5_c00015{left:552.000000pt;}
.x42_c00015{left:552.960000pt;}
.xe0_c00015{left:554.666667pt;}
.xf6_c00015{left:556.000000pt;}
.x32_c00015{left:558.293333pt;}
.x49_c00015{left:560.000000pt;}
.x84_c00015{left:560.960000pt;}
.x11_c00015{left:562.666667pt;}
.xcd_c00015{left:564.000000pt;}
.x9b_c00015{left:565.333333pt;}
.x2a_c00015{left:566.293333pt;}
.x1b_c00015{left:569.133333pt;}
.xfb_c00015{left:573.706667pt;}
.x79_c00015{left:576.000000pt;}
.xdc_c00015{left:576.960000pt;}
.xa6_c00015{left:580.000000pt;}
.x8d_c00015{left:581.706667pt;}
.xb8_c00015{left:583.040000pt;}
.x4a_c00015{left:584.000000pt;}
.xc3_c00015{left:585.333333pt;}
.x12_c00015{left:588.000000pt;}
.x2b_c00015{left:589.333333pt;}
.x6d_c00015{left:590.293333pt;}
.x9c_c00015{left:591.626667pt;}
.xb0_c00015{left:596.000000pt;}
.xc8_c00015{left:597.333333pt;}
.xa0_c00015{left:598.466667pt;}
.x1c_c00015{left:600.373333pt;}
.xc4_c00015{left:602.293333pt;}
.xce_c00015{left:605.333333pt;}
.x8e_c00015{left:607.626667pt;}
.xeb_c00015{left:609.333333pt;}
.x9d_c00015{left:610.666667pt;}
.x58_c00015{left:611.626667pt;}
.x4b_c00015{left:614.093333pt;}
.x6e_c00015{left:616.960000pt;}
.xdd_c00015{left:620.000000pt;}
.xd8_c00015{left:624.000000pt;}
.x1d_c00015{left:624.960000pt;}
.x7a_c00015{left:628.000000pt;}
.x33_c00015{left:629.333333pt;}
.x13_c00015{left:630.293333pt;}
.x59_c00015{left:634.666667pt;}
.x6f_c00015{left:636.960000pt;}
.xb9_c00015{left:642.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_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_8ae8b194446160a00cd334f2.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:1.688965;font-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_c00016{transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);}
.m9e_c00016{transform:matrix(0.371166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371166,0.000000,0.000000,0.250000,0,0);}
.m65_c00016{transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);}
.mc8_c00016{transform:matrix(0.371429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371429,0.000000,0.000000,0.250000,0,0);}
.m14_c00016{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m5f_c00016{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m3f_c00016{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.ma0_c00016{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m5b_c00016{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.mb5_c00016{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.mb8_c00016{transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);}
.mca_c00016{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m2b_c00016{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m56_c00016{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.ma5_c00016{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m88_c00016{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m9d_c00016{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.ma6_c00016{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m4f_c00016{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m79_c00016{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m1c_c00016{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m66_c00016{transform:matrix(0.404525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404525,0.000000,0.000000,0.250000,0,0);}
.m85_c00016{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mba_c00016{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m61_c00016{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m5a_c00016{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m73_c00016{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m5_c00016{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m9f_c00016{transform:matrix(0.412960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412960,0.000000,0.000000,0.250000,0,0);}
.mc4_c00016{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m11_c00016{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.ma8_c00016{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m4d_c00016{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m99_c00016{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m4c_c00016{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m1e_c00016{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.md4_c00016{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mc9_c00016{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m6d_c00016{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.mc0_c00016{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m15_c00016{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mc_c00016{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m80_c00016{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.mcb_c00016{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m3c_c00016{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.ma3_c00016{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.mc6_c00016{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m75_c00016{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.mc5_c00016{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m2c_c00016{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m70_c00016{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m98_c00016{transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);}
.m6a_c00016{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m5c_c00016{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m57_c00016{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m3e_c00016{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m39_c00016{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.maf_c00016{transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);}
.md3_c00016{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.m44_c00016{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m20_c00016{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m23_c00016{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m71_c00016{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m64_c00016{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m54_c00016{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m94_c00016{transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);}
.m3a_c00016{transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);}
.m68_c00016{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m4b_c00016{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mc3_c00016{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m3b_c00016{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m72_c00016{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m77_c00016{transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);}
.m8b_c00016{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m6f_c00016{transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);}
.md6_c00016{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.me_c00016{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mcd_c00016{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m4a_c00016{transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);}
.m43_c00016{transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);}
.mc1_c00016{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m8d_c00016{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m21_c00016{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m2_c00016{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m34_c00016{transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);}
.m58_c00016{transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);}
.m69_c00016{transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);}
.ma4_c00016{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mab_c00016{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m76_c00016{transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);}
.m40_c00016{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m26_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);}
.m93_c00016{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.mb7_c00016{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m9a_c00016{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m36_c00016{transform:matrix(0.508349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508349,0.000000,0.000000,0.250000,0,0);}
.mb2_c00016{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m19_c00016{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m48_c00016{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m82_c00016{transform:matrix(0.512059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512059,0.000000,0.000000,0.250000,0,0);}
.mb1_c00016{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.ma1_c00016{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mbd_c00016{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m7b_c00016{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m87_c00016{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mce_c00016{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m96_c00016{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m35_c00016{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m47_c00016{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.m38_c00016{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m1a_c00016{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m45_c00016{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m46_c00016{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m9b_c00016{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mb3_c00016{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m55_c00016{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m12_c00016{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m59_c00016{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m1d_c00016{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mcf_c00016{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m89_c00016{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.mae_c00016{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m2f_c00016{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m24_c00016{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mbf_c00016{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m33_c00016{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.maa_c00016{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m18_c00016{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.md1_c00016{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mb9_c00016{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m53_c00016{transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);}
.m28_c00016{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m6e_c00016{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m2d_c00016{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.ma_c00016{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m5e_c00016{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.mb6_c00016{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m8_c00016{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mf_c00016{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m67_c00016{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mc2_c00016{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.md0_c00016{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m50_c00016{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m84_c00016{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.mb0_c00016{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m74_c00016{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m4e_c00016{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m27_c00016{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m2a_c00016{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m17_c00016{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.ma7_c00016{transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);}
.ma9_c00016{transform:matrix(0.559369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559369,0.000000,0.000000,0.250000,0,0);}
.m8e_c00016{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m3d_c00016{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m41_c00016{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m3_c00016{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m37_c00016{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m42_c00016{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m32_c00016{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m13_c00016{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m6b_c00016{transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);}
.m97_c00016{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mbc_c00016{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m49_c00016{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mbb_c00016{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.m7e_c00016{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m7a_c00016{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mc7_c00016{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m16_c00016{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.mad_c00016{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m31_c00016{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m30_c00016{transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);}
.m51_c00016{transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);}
.m90_c00016{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m86_c00016{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m2e_c00016{transform:matrix(0.591805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591805,0.000000,0.000000,0.250000,0,0);}
.m6_c00016{transform:matrix(0.596471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596471,0.000000,0.000000,0.250000,0,0);}
.m8a_c00016{transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);}
.m91_c00016{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);}
.m7f_c00016{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m95_c00016{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m4_c00016{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m22_c00016{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mb_c00016{transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);}
.md5_c00016{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m1_c00016{transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);}
.m5d_c00016{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);}
.m9_c00016{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m25_c00016{transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);}
.m7_c00016{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mb4_c00016{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m78_c00016{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m6c_c00016{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mac_c00016{transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);}
.m10_c00016{transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);}
.m7d_c00016{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m7c_c00016{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m60_c00016{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m81_c00016{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mbe_c00016{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m8f_c00016{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m9c_c00016{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m8c_c00016{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m1b_c00016{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.ma2_c00016{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.md_c00016{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.md2_c00016{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m62_c00016{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m83_c00016{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m63_c00016{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m52_c00016{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m92_c00016{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m0_c00016{transform:matrix(0.822917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.822917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.822917,0.000000,0.000000,0.250000,0,0);}
.m1f_c00016{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mcc_c00016{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.v0_c00016{vertical-align:0.000000px;}
.ls0_c00016{letter-spacing:0.000000px;}
.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;}
.fs0_c00016{font-size:18.720000px;}
.fs1_c00016{font-size:20.400000px;}
.fs3_c00016{font-size:25.500000px;}
.fs2_c00016{font-size:28.920000px;}
.fs5_c00016{font-size:32.340000px;}
.fs4_c00016{font-size:35.700000px;}
.fs6_c00016{font-size:39.120000px;}
.y0_c00016{bottom:0.000000px;}
.yae_c00016{bottom:277.245000px;}
.yaf_c00016{bottom:279.405000px;}
.yb0_c00016{bottom:280.470000px;}
.yad_c00016{bottom:281.325000px;}
.yac_c00016{bottom:297.825000px;}
.ya8_c00016{bottom:298.905000px;}
.yab_c00016{bottom:299.130000px;}
.yaa_c00016{bottom:299.970000px;}
.ya9_c00016{bottom:300.405000px;}
.ya3_c00016{bottom:316.245000px;}
.ya5_c00016{bottom:316.470000px;}
.ya7_c00016{bottom:316.905000px;}
.ya4_c00016{bottom:318.405000px;}
.ya6_c00016{bottom:318.630000px;}
.ya1_c00016{bottom:319.245000px;}
.ya2_c00016{bottom:319.905000px;}
.y9f_c00016{bottom:337.245000px;}
.ya0_c00016{bottom:337.905000px;}
.y9e_c00016{bottom:338.130000px;}
.y9d_c00016{bottom:338.970000px;}
.y9c_c00016{bottom:339.405000px;}
.y9b_c00016{bottom:356.745000px;}
.y99_c00016{bottom:357.630000px;}
.y98_c00016{bottom:358.470000px;}
.y9a_c00016{bottom:358.905000px;}
.y97_c00016{bottom:359.325000px;}
.y95_c00016{bottom:376.245000px;}
.y96_c00016{bottom:377.130000px;}
.y94_c00016{bottom:377.970000px;}
.y93_c00016{bottom:378.405000px;}
.y92_c00016{bottom:379.905000px;}
.y90_c00016{bottom:394.905000px;}
.y91_c00016{bottom:395.325000px;}
.y8d_c00016{bottom:395.745000px;}
.y8e_c00016{bottom:397.905000px;}
.y8f_c00016{bottom:398.130000px;}
.y8c_c00016{bottom:399.405000px;}
.y89_c00016{bottom:415.245000px;}
.y8a_c00016{bottom:416.325000px;}
.y88_c00016{bottom:417.405000px;}
.y87_c00016{bottom:417.630000px;}
.y86_c00016{bottom:418.245000px;}
.y8b_c00016{bottom:418.470000px;}
.y82_c00016{bottom:434.745000px;}
.y85_c00016{bottom:435.825000px;}
.y80_c00016{bottom:436.245000px;}
.y81_c00016{bottom:436.905000px;}
.y83_c00016{bottom:437.130000px;}
.y84_c00016{bottom:437.970000px;}
.y7f_c00016{bottom:438.630000px;}
.y7c_c00016{bottom:454.680000px;}
.y7e_c00016{bottom:455.745000px;}
.y79_c00016{bottom:456.180000px;}
.y7d_c00016{bottom:456.630000px;}
.y7b_c00016{bottom:457.470000px;}
.y7a_c00016{bottom:457.905000px;}
.y75_c00016{bottom:474.825000px;}
.y74_c00016{bottom:475.245000px;}
.y78_c00016{bottom:476.130000px;}
.y76_c00016{bottom:477.405000px;}
.y73_c00016{bottom:477.630000px;}
.y72_c00016{bottom:477.825000px;}
.y77_c00016{bottom:478.470000px;}
.y6e_c00016{bottom:492.405000px;}
.y71_c00016{bottom:494.745000px;}
.y70_c00016{bottom:495.630000px;}
.y6d_c00016{bottom:496.470000px;}
.y6f_c00016{bottom:496.905000px;}
.y6c_c00016{bottom:498.405000px;}
.y6b_c00016{bottom:526.905000px;}
.y6a_c00016{bottom:567.405000px;}
.y68_c00016{bottom:569.745000px;}
.y69_c00016{bottom:570.630000px;}
.y67_c00016{bottom:571.905000px;}
.y66_c00016{bottom:586.905000px;}
.y62_c00016{bottom:587.970000px;}
.y65_c00016{bottom:589.245000px;}
.y61_c00016{bottom:589.905000px;}
.y60_c00016{bottom:590.130000px;}
.y5f_c00016{bottom:590.325000px;}
.y64_c00016{bottom:590.970000px;}
.y63_c00016{bottom:591.405000px;}
.y5c_c00016{bottom:608.745000px;}
.y5d_c00016{bottom:609.405000px;}
.y5e_c00016{bottom:609.630000px;}
.y5b_c00016{bottom:610.905000px;}
.y5a_c00016{bottom:611.130000px;}
.y57_c00016{bottom:628.245000px;}
.y58_c00016{bottom:629.130000px;}
.y59_c00016{bottom:629.325000px;}
.y54_c00016{bottom:629.550000px;}
.y56_c00016{bottom:629.970000px;}
.y55_c00016{bottom:630.405000px;}
.y53_c00016{bottom:631.905000px;}
.y50_c00016{bottom:648.825000px;}
.y4f_c00016{bottom:649.905000px;}
.y51_c00016{bottom:650.130000px;}
.y4e_c00016{bottom:650.325000px;}
.y52_c00016{bottom:650.970000px;}
.y4c_c00016{bottom:667.245000px;}
.y4b_c00016{bottom:668.325000px;}
.y4a_c00016{bottom:668.745000px;}
.y4d_c00016{bottom:669.405000px;}
.y44_c00016{bottom:686.745000px;}
.y42_c00016{bottom:687.180000px;}
.y45_c00016{bottom:687.825000px;}
.y46_c00016{bottom:688.245000px;}
.y43_c00016{bottom:688.905000px;}
.y49_c00016{bottom:689.325000px;}
.y48_c00016{bottom:689.970000px;}
.y47_c00016{bottom:690.405000px;}
.y41_c00016{bottom:705.405000px;}
.y3f_c00016{bottom:707.745000px;}
.y3e_c00016{bottom:708.405000px;}
.y40_c00016{bottom:708.630000px;}
.y3d_c00016{bottom:709.905000px;}
.y3a_c00016{bottom:740.745000px;}
.y3b_c00016{bottom:741.825000px;}
.y3c_c00016{bottom:742.245000px;}
.y39_c00016{bottom:744.405000px;}
.y35_c00016{bottom:760.245000px;}
.y36_c00016{bottom:761.325000px;}
.y38_c00016{bottom:761.745000px;}
.y37_c00016{bottom:762.825000px;}
.y34_c00016{bottom:763.905000px;}
.y32_c00016{bottom:780.825000px;}
.y33_c00016{bottom:783.405000px;}
.y2f_c00016{bottom:800.745000px;}
.y2e_c00016{bottom:802.905000px;}
.y30_c00016{bottom:803.130000px;}
.y31_c00016{bottom:803.970000px;}
.y2d_c00016{bottom:820.245000px;}
.y2c_c00016{bottom:839.745000px;}
.y2b_c00016{bottom:840.825000px;}
.y2a_c00016{bottom:841.905000px;}
.y29_c00016{bottom:843.405000px;}
.y28_c00016{bottom:860.325000px;}
.y27_c00016{bottom:861.405000px;}
.y26_c00016{bottom:862.905000px;}
.y24_c00016{bottom:878.745000px;}
.y23_c00016{bottom:880.905000px;}
.y25_c00016{bottom:881.325000px;}
.y22_c00016{bottom:882.405000px;}
.y21_c00016{bottom:899.745000px;}
.y1f_c00016{bottom:900.825000px;}
.y20_c00016{bottom:901.905000px;}
.y1d_c00016{bottom:919.245000px;}
.y1e_c00016{bottom:920.325000px;}
.y1b_c00016{bottom:921.405000px;}
.y1c_c00016{bottom:922.470000px;}
.y1a_c00016{bottom:952.245000px;}
.y19_c00016{bottom:954.405000px;}
.y18_c00016{bottom:955.905000px;}
.y14_c00016{bottom:971.745000px;}
.y16_c00016{bottom:973.245000px;}
.y13_c00016{bottom:973.905000px;}
.y12_c00016{bottom:974.325000px;}
.y17_c00016{bottom:974.970000px;}
.y15_c00016{bottom:975.405000px;}
.y10_c00016{bottom:992.745000px;}
.yf_c00016{bottom:993.630000px;}
.ye_c00016{bottom:994.905000px;}
.y11_c00016{bottom:995.130000px;}
.yc_c00016{bottom:1012.245000px;}
.yb_c00016{bottom:1013.970000px;}
.ya_c00016{bottom:1014.405000px;}
.yd_c00016{bottom:1015.470000px;}
.y6_c00016{bottom:1030.245000px;}
.y8_c00016{bottom:1031.745000px;}
.y9_c00016{bottom:1032.630000px;}
.y5_c00016{bottom:1033.470000px;}
.y4_c00016{bottom:1033.905000px;}
.y7_c00016{bottom:1034.970000px;}
.y3_c00016{bottom:1063.905000px;}
.y2_c00016{bottom:1100.550000px;}
.y1_c00016{bottom:1101.630000px;}
.h1_c00016{height:23.025234px;}
.h2_c00016{height:25.091602px;}
.h4_c00016{height:31.364502px;}
.h3_c00016{height:35.571035px;}
.h6_c00016{height:39.777568px;}
.h5_c00016{height:43.910303px;}
.h7_c00016{height:48.116836px;}
.h0_c00016{height:1335.000000px;}
.w0_c00016{width:880.500000px;}
.x0_c00016{left:0.000000px;}
.x10_c00016{left:154.500000px;}
.x28_c00016{left:156.000000px;}
.x76_c00016{left:157.500000px;}
.xa9_c00016{left:159.000000px;}
.xd7_c00016{left:160.500000px;}
.xc5_c00016{left:162.420000px;}
.x4_c00016{left:169.500000px;}
.x11_c00016{left:172.500000px;}
.x82_c00016{left:174.000000px;}
.x8f_c00016{left:177.000000px;}
.xb5_c00016{left:186.420000px;}
.x90_c00016{left:189.000000px;}
.xc6_c00016{left:192.000000px;}
.x1d_c00016{left:195.000000px;}
.xaa_c00016{left:196.500000px;}
.xa4_c00016{left:198.000000px;}
.xc1_c00016{left:199.080000px;}
.xd0_c00016{left:201.420000px;}
.x9a_c00016{left:207.420000px;}
.xcb_c00016{left:211.500000px;}
.x83_c00016{left:214.920000px;}
.xa2_c00016{left:216.000000px;}
.x12_c00016{left:217.500000px;}
.xb8_c00016{left:219.420000px;}
.x5_c00016{left:220.500000px;}
.x61_c00016{left:223.080000px;}
.x33_c00016{left:225.000000px;}
.xd1_c00016{left:226.500000px;}
.x79_c00016{left:228.000000px;}
.xaf_c00016{left:229.920000px;}
.xc2_c00016{left:231.420000px;}
.x37_c00016{left:234.000000px;}
.x4c_c00016{left:235.080000px;}
.x58_c00016{left:236.355000px;}
.x29_c00016{left:239.580000px;}
.x6c_c00016{left:246.420000px;}
.x6_c00016{left:247.920000px;}
.x84_c00016{left:250.500000px;}
.xd8_c00016{left:252.420000px;}
.x13_c00016{left:255.000000px;}
.xb0_c00016{left:256.500000px;}
.x9b_c00016{left:259.920000px;}
.xa3_c00016{left:265.080000px;}
.xd2_c00016{left:267.000000px;}
.x1e_c00016{left:273.000000px;}
.x43_c00016{left:274.500000px;}
.x91_c00016{left:277.500000px;}
.xd9_c00016{left:279.000000px;}
.x85_c00016{left:282.000000px;}
.x14_c00016{left:283.080000px;}
.x3f_c00016{left:286.500000px;}
.xbc_c00016{left:291.000000px;}
.xa5_c00016{left:292.080000px;}
.xc7_c00016{left:295.500000px;}
.x2a_c00016{left:296.580000px;}
.x38_c00016{left:304.500000px;}
.x34_c00016{left:306.000000px;}
.x7_c00016{left:308.580000px;}
.x6d_c00016{left:309.855000px;}
.x52_c00016{left:312.000000px;}
.x92_c00016{left:313.920000px;}
.x62_c00016{left:316.080000px;}
.x4d_c00016{left:318.000000px;}
.x1f_c00016{left:321.420000px;}
.xc8_c00016{left:322.920000px;}
.x59_c00016{left:325.920000px;}
.x9c_c00016{left:327.000000px;}
.x35_c00016{left:330.420000px;}
.x44_c00016{left:337.080000px;}
.x86_c00016{left:340.500000px;}
.x20_c00016{left:345.000000px;}
.xab_c00016{left:346.080000px;}
.x40_c00016{left:349.080000px;}
.xcc_c00016{left:351.000000px;}
.x21_c00016{left:355.080000px;}
.x36_c00016{left:357.420000px;}
.x15_c00016{left:358.500000px;}
.x49_c00016{left:361.920000px;}
.x63_c00016{left:364.500000px;}
.x39_c00016{left:367.080000px;}
.x2b_c00016{left:369.000000px;}
.x9d_c00016{left:370.920000px;}
.x93_c00016{left:373.080000px;}
.x53_c00016{left:374.580000px;}
.x6e_c00016{left:376.080000px;}
.xcd_c00016{left:379.920000px;}
.xb1_c00016{left:381.000000px;}
.x4e_c00016{left:384.420000px;}
.x3a_c00016{left:385.500000px;}
.x77_c00016{left:388.080000px;}
.xa6_c00016{left:390.000000px;}
.x2_c00016{left:391.500000px;}
.x5a_c00016{left:393.000000px;}
.x8_c00016{left:399.000000px;}
.x54_c00016{left:400.500000px;}
.x45_c00016{left:401.580000px;}
.x7a_c00016{left:403.500000px;}
.x2c_c00016{left:404.580000px;}
.x87_c00016{left:406.920000px;}
.x3_c00016{left:408.000000px;}
.xc3_c00016{left:412.500000px;}
.x41_c00016{left:413.580000px;}
.xb2_c00016{left:417.000000px;}
.x9_c00016{left:419.580000px;}
.x16_c00016{left:424.080000px;}
.x9e_c00016{left:426.000000px;}
.x22_c00016{left:427.500000px;}
.x64_c00016{left:429.420000px;}
.x94_c00016{left:430.500000px;}
.x4a_c00016{left:435.420000px;}
.x6f_c00016{left:436.920000px;}
.x3b_c00016{left:443.580000px;}
.x17_c00016{left:445.500000px;}
.xbd_c00016{left:448.920000px;}
.xb9_c00016{left:456.420000px;}
.x65_c00016{left:457.500000px;}
.xc9_c00016{left:459.000000px;}
.x95_c00016{left:460.500000px;}
.xac_c00016{left:461.580000px;}
.x5d_c00016{left:467.145000px;}
.x55_c00016{left:468.420000px;}
.x46_c00016{left:469.500000px;}
.x88_c00016{left:471.420000px;}
.x18_c00016{left:475.500000px;}
.x70_c00016{left:477.000000px;}
.x2d_c00016{left:480.000000px;}
.x42_c00016{left:481.080000px;}
.x23_c00016{left:482.580000px;}
.x9f_c00016{left:490.920000px;}
.x7b_c00016{left:498.000000px;}
.xa_c00016{left:499.080000px;}
.x24_c00016{left:501.420000px;}
.x56_c00016{left:502.500000px;}
.x5b_c00016{left:503.580000px;}
.x3c_c00016{left:507.000000px;}
.x4b_c00016{left:508.080000px;}
.x4f_c00016{left:510.000000px;}
.x89_c00016{left:512.355000px;}
.x71_c00016{left:516.000000px;}
.x66_c00016{left:517.500000px;}
.x7c_c00016{left:519.000000px;}
.xb6_c00016{left:522.000000px;}
.xb_c00016{left:523.500000px;}
.x5e_c00016{left:524.580000px;}
.x25_c00016{left:526.080000px;}
.xd4_c00016{left:529.500000px;}
.xad_c00016{left:531.000000px;}
.x47_c00016{left:532.080000px;}
.x7d_c00016{left:535.500000px;}
.x72_c00016{left:538.500000px;}
.x2e_c00016{left:541.080000px;}
.x3d_c00016{left:543.000000px;}
.x67_c00016{left:546.000000px;}
.xc_c00016{left:552.000000px;}
.x19_c00016{left:555.000000px;}
.xbe_c00016{left:556.500000px;}
.xb3_c00016{left:557.580000px;}
.x2f_c00016{left:562.500000px;}
.xa7_c00016{left:564.000000px;}
.xb7_c00016{left:565.920000px;}
.xba_c00016{left:567.000000px;}
.x7e_c00016{left:568.500000px;}
.x8a_c00016{left:570.420000px;}
.x1a_c00016{left:574.500000px;}
.xce_c00016{left:576.000000px;}
.x73_c00016{left:577.500000px;}
.xc4_c00016{left:585.000000px;}
.x3e_c00016{left:586.500000px;}
.x5c_c00016{left:587.580000px;}
.x48_c00016{left:589.500000px;}
.x96_c00016{left:590.580000px;}
.x5f_c00016{left:592.080000px;}
.x8b_c00016{left:597.000000px;}
.x74_c00016{left:598.920000px;}
.xbf_c00016{left:600.420000px;}
.xb4_c00016{left:604.500000px;}
.x57_c00016{left:606.000000px;}
.x97_c00016{left:609.420000px;}
.x60_c00016{left:610.500000px;}
.x68_c00016{left:613.500000px;}
.xd_c00016{left:614.580000px;}
.xd5_c00016{left:619.080000px;}
.x26_c00016{left:624.420000px;}
.x7f_c00016{left:625.500000px;}
.x30_c00016{left:628.920000px;}
.xae_c00016{left:630.420000px;}
.x1b_c00016{left:633.420000px;}
.x98_c00016{left:634.500000px;}
.x8c_c00016{left:638.580000px;}
.xd3_c00016{left:646.080000px;}
.xa0_c00016{left:648.000000px;}
.x50_c00016{left:649.080000px;}
.x27_c00016{left:652.080000px;}
.x69_c00016{left:654.000000px;}
.x8d_c00016{left:658.920000px;}
.x78_c00016{left:662.580000px;}
.xca_c00016{left:667.080000px;}
.x31_c00016{left:668.580000px;}
.x80_c00016{left:670.500000px;}
.x75_c00016{left:672.420000px;}
.xd6_c00016{left:673.920000px;}
.x6a_c00016{left:675.000000px;}
.x1c_c00016{left:678.000000px;}
.xc0_c00016{left:679.080000px;}
.x8e_c00016{left:685.920000px;}
.xe_c00016{left:687.000000px;}
.x81_c00016{left:691.500000px;}
.xcf_c00016{left:695.580000px;}
.xa1_c00016{left:697.500000px;}
.x99_c00016{left:700.500000px;}
.x1_c00016{left:703.500000px;}
.x6b_c00016{left:705.420000px;}
.xf_c00016{left:711.000000px;}
.x32_c00016{left:712.500000px;}
.xbb_c00016{left:715.500000px;}
.x51_c00016{left:719.580000px;}
.xa8_c00016{left:721.080000px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.ls0_c00016{letter-spacing:0.000000pt;}
.ws0_c00016{word-spacing:0.000000pt;}
.fs0_c00016{font-size:16.640000pt;}
.fs1_c00016{font-size:18.133333pt;}
.fs3_c00016{font-size:22.666667pt;}
.fs2_c00016{font-size:25.706667pt;}
.fs5_c00016{font-size:28.746667pt;}
.fs4_c00016{font-size:31.733333pt;}
.fs6_c00016{font-size:34.773333pt;}
.y0_c00016{bottom:0.000000pt;}
.yae_c00016{bottom:246.440000pt;}
.yaf_c00016{bottom:248.360000pt;}
.yb0_c00016{bottom:249.306667pt;}
.yad_c00016{bottom:250.066667pt;}
.yac_c00016{bottom:264.733333pt;}
.ya8_c00016{bottom:265.693333pt;}
.yab_c00016{bottom:265.893333pt;}
.yaa_c00016{bottom:266.640000pt;}
.ya9_c00016{bottom:267.026667pt;}
.ya3_c00016{bottom:281.106667pt;}
.ya5_c00016{bottom:281.306667pt;}
.ya7_c00016{bottom:281.693333pt;}
.ya4_c00016{bottom:283.026667pt;}
.ya6_c00016{bottom:283.226667pt;}
.ya1_c00016{bottom:283.773333pt;}
.ya2_c00016{bottom:284.360000pt;}
.y9f_c00016{bottom:299.773333pt;}
.ya0_c00016{bottom:300.360000pt;}
.y9e_c00016{bottom:300.560000pt;}
.y9d_c00016{bottom:301.306667pt;}
.y9c_c00016{bottom:301.693333pt;}
.y9b_c00016{bottom:317.106667pt;}
.y99_c00016{bottom:317.893333pt;}
.y98_c00016{bottom:318.640000pt;}
.y9a_c00016{bottom:319.026667pt;}
.y97_c00016{bottom:319.400000pt;}
.y95_c00016{bottom:334.440000pt;}
.y96_c00016{bottom:335.226667pt;}
.y94_c00016{bottom:335.973333pt;}
.y93_c00016{bottom:336.360000pt;}
.y92_c00016{bottom:337.693333pt;}
.y90_c00016{bottom:351.026667pt;}
.y91_c00016{bottom:351.400000pt;}
.y8d_c00016{bottom:351.773333pt;}
.y8e_c00016{bottom:353.693333pt;}
.y8f_c00016{bottom:353.893333pt;}
.y8c_c00016{bottom:355.026667pt;}
.y89_c00016{bottom:369.106667pt;}
.y8a_c00016{bottom:370.066667pt;}
.y88_c00016{bottom:371.026667pt;}
.y87_c00016{bottom:371.226667pt;}
.y86_c00016{bottom:371.773333pt;}
.y8b_c00016{bottom:371.973333pt;}
.y82_c00016{bottom:386.440000pt;}
.y85_c00016{bottom:387.400000pt;}
.y80_c00016{bottom:387.773333pt;}
.y81_c00016{bottom:388.360000pt;}
.y83_c00016{bottom:388.560000pt;}
.y84_c00016{bottom:389.306667pt;}
.y7f_c00016{bottom:389.893333pt;}
.y7c_c00016{bottom:404.160000pt;}
.y7e_c00016{bottom:405.106667pt;}
.y79_c00016{bottom:405.493333pt;}
.y7d_c00016{bottom:405.893333pt;}
.y7b_c00016{bottom:406.640000pt;}
.y7a_c00016{bottom:407.026667pt;}
.y75_c00016{bottom:422.066667pt;}
.y74_c00016{bottom:422.440000pt;}
.y78_c00016{bottom:423.226667pt;}
.y76_c00016{bottom:424.360000pt;}
.y73_c00016{bottom:424.560000pt;}
.y72_c00016{bottom:424.733333pt;}
.y77_c00016{bottom:425.306667pt;}
.y6e_c00016{bottom:437.693333pt;}
.y71_c00016{bottom:439.773333pt;}
.y70_c00016{bottom:440.560000pt;}
.y6d_c00016{bottom:441.306667pt;}
.y6f_c00016{bottom:441.693333pt;}
.y6c_c00016{bottom:443.026667pt;}
.y6b_c00016{bottom:468.360000pt;}
.y6a_c00016{bottom:504.360000pt;}
.y68_c00016{bottom:506.440000pt;}
.y69_c00016{bottom:507.226667pt;}
.y67_c00016{bottom:508.360000pt;}
.y66_c00016{bottom:521.693333pt;}
.y62_c00016{bottom:522.640000pt;}
.y65_c00016{bottom:523.773333pt;}
.y61_c00016{bottom:524.360000pt;}
.y60_c00016{bottom:524.560000pt;}
.y5f_c00016{bottom:524.733333pt;}
.y64_c00016{bottom:525.306667pt;}
.y63_c00016{bottom:525.693333pt;}
.y5c_c00016{bottom:541.106667pt;}
.y5d_c00016{bottom:541.693333pt;}
.y5e_c00016{bottom:541.893333pt;}
.y5b_c00016{bottom:543.026667pt;}
.y5a_c00016{bottom:543.226667pt;}
.y57_c00016{bottom:558.440000pt;}
.y58_c00016{bottom:559.226667pt;}
.y59_c00016{bottom:559.400000pt;}
.y54_c00016{bottom:559.600000pt;}
.y56_c00016{bottom:559.973333pt;}
.y55_c00016{bottom:560.360000pt;}
.y53_c00016{bottom:561.693333pt;}
.y50_c00016{bottom:576.733333pt;}
.y4f_c00016{bottom:577.693333pt;}
.y51_c00016{bottom:577.893333pt;}
.y4e_c00016{bottom:578.066667pt;}
.y52_c00016{bottom:578.640000pt;}
.y4c_c00016{bottom:593.106667pt;}
.y4b_c00016{bottom:594.066667pt;}
.y4a_c00016{bottom:594.440000pt;}
.y4d_c00016{bottom:595.026667pt;}
.y44_c00016{bottom:610.440000pt;}
.y42_c00016{bottom:610.826667pt;}
.y45_c00016{bottom:611.400000pt;}
.y46_c00016{bottom:611.773333pt;}
.y43_c00016{bottom:612.360000pt;}
.y49_c00016{bottom:612.733333pt;}
.y48_c00016{bottom:613.306667pt;}
.y47_c00016{bottom:613.693333pt;}
.y41_c00016{bottom:627.026667pt;}
.y3f_c00016{bottom:629.106667pt;}
.y3e_c00016{bottom:629.693333pt;}
.y40_c00016{bottom:629.893333pt;}
.y3d_c00016{bottom:631.026667pt;}
.y3a_c00016{bottom:658.440000pt;}
.y3b_c00016{bottom:659.400000pt;}
.y3c_c00016{bottom:659.773333pt;}
.y39_c00016{bottom:661.693333pt;}
.y35_c00016{bottom:675.773333pt;}
.y36_c00016{bottom:676.733333pt;}
.y38_c00016{bottom:677.106667pt;}
.y37_c00016{bottom:678.066667pt;}
.y34_c00016{bottom:679.026667pt;}
.y32_c00016{bottom:694.066667pt;}
.y33_c00016{bottom:696.360000pt;}
.y2f_c00016{bottom:711.773333pt;}
.y2e_c00016{bottom:713.693333pt;}
.y30_c00016{bottom:713.893333pt;}
.y31_c00016{bottom:714.640000pt;}
.y2d_c00016{bottom:729.106667pt;}
.y2c_c00016{bottom:746.440000pt;}
.y2b_c00016{bottom:747.400000pt;}
.y2a_c00016{bottom:748.360000pt;}
.y29_c00016{bottom:749.693333pt;}
.y28_c00016{bottom:764.733333pt;}
.y27_c00016{bottom:765.693333pt;}
.y26_c00016{bottom:767.026667pt;}
.y24_c00016{bottom:781.106667pt;}
.y23_c00016{bottom:783.026667pt;}
.y25_c00016{bottom:783.400000pt;}
.y22_c00016{bottom:784.360000pt;}
.y21_c00016{bottom:799.773333pt;}
.y1f_c00016{bottom:800.733333pt;}
.y20_c00016{bottom:801.693333pt;}
.y1d_c00016{bottom:817.106667pt;}
.y1e_c00016{bottom:818.066667pt;}
.y1b_c00016{bottom:819.026667pt;}
.y1c_c00016{bottom:819.973333pt;}
.y1a_c00016{bottom:846.440000pt;}
.y19_c00016{bottom:848.360000pt;}
.y18_c00016{bottom:849.693333pt;}
.y14_c00016{bottom:863.773333pt;}
.y16_c00016{bottom:865.106667pt;}
.y13_c00016{bottom:865.693333pt;}
.y12_c00016{bottom:866.066667pt;}
.y17_c00016{bottom:866.640000pt;}
.y15_c00016{bottom:867.026667pt;}
.y10_c00016{bottom:882.440000pt;}
.yf_c00016{bottom:883.226667pt;}
.ye_c00016{bottom:884.360000pt;}
.y11_c00016{bottom:884.560000pt;}
.yc_c00016{bottom:899.773333pt;}
.yb_c00016{bottom:901.306667pt;}
.ya_c00016{bottom:901.693333pt;}
.yd_c00016{bottom:902.640000pt;}
.y6_c00016{bottom:915.773333pt;}
.y8_c00016{bottom:917.106667pt;}
.y9_c00016{bottom:917.893333pt;}
.y5_c00016{bottom:918.640000pt;}
.y4_c00016{bottom:919.026667pt;}
.y7_c00016{bottom:919.973333pt;}
.y3_c00016{bottom:945.693333pt;}
.y2_c00016{bottom:978.266667pt;}
.y1_c00016{bottom:979.226667pt;}
.h1_c00016{height:20.466875pt;}
.h2_c00016{height:22.303646pt;}
.h4_c00016{height:27.879557pt;}
.h3_c00016{height:31.618698pt;}
.h6_c00016{height:35.357839pt;}
.h5_c00016{height:39.031380pt;}
.h7_c00016{height:42.770521pt;}
.h0_c00016{height:1186.666667pt;}
.w0_c00016{width:782.666667pt;}
.x0_c00016{left:0.000000pt;}
.x10_c00016{left:137.333333pt;}
.x28_c00016{left:138.666667pt;}
.x76_c00016{left:140.000000pt;}
.xa9_c00016{left:141.333333pt;}
.xd7_c00016{left:142.666667pt;}
.xc5_c00016{left:144.373333pt;}
.x4_c00016{left:150.666667pt;}
.x11_c00016{left:153.333333pt;}
.x82_c00016{left:154.666667pt;}
.x8f_c00016{left:157.333333pt;}
.xb5_c00016{left:165.706667pt;}
.x90_c00016{left:168.000000pt;}
.xc6_c00016{left:170.666667pt;}
.x1d_c00016{left:173.333333pt;}
.xaa_c00016{left:174.666667pt;}
.xa4_c00016{left:176.000000pt;}
.xc1_c00016{left:176.960000pt;}
.xd0_c00016{left:179.040000pt;}
.x9a_c00016{left:184.373333pt;}
.xcb_c00016{left:188.000000pt;}
.x83_c00016{left:191.040000pt;}
.xa2_c00016{left:192.000000pt;}
.x12_c00016{left:193.333333pt;}
.xb8_c00016{left:195.040000pt;}
.x5_c00016{left:196.000000pt;}
.x61_c00016{left:198.293333pt;}
.x33_c00016{left:200.000000pt;}
.xd1_c00016{left:201.333333pt;}
.x79_c00016{left:202.666667pt;}
.xaf_c00016{left:204.373333pt;}
.xc2_c00016{left:205.706667pt;}
.x37_c00016{left:208.000000pt;}
.x4c_c00016{left:208.960000pt;}
.x58_c00016{left:210.093333pt;}
.x29_c00016{left:212.960000pt;}
.x6c_c00016{left:219.040000pt;}
.x6_c00016{left:220.373333pt;}
.x84_c00016{left:222.666667pt;}
.xd8_c00016{left:224.373333pt;}
.x13_c00016{left:226.666667pt;}
.xb0_c00016{left:228.000000pt;}
.x9b_c00016{left:231.040000pt;}
.xa3_c00016{left:235.626667pt;}
.xd2_c00016{left:237.333333pt;}
.x1e_c00016{left:242.666667pt;}
.x43_c00016{left:244.000000pt;}
.x91_c00016{left:246.666667pt;}
.xd9_c00016{left:248.000000pt;}
.x85_c00016{left:250.666667pt;}
.x14_c00016{left:251.626667pt;}
.x3f_c00016{left:254.666667pt;}
.xbc_c00016{left:258.666667pt;}
.xa5_c00016{left:259.626667pt;}
.xc7_c00016{left:262.666667pt;}
.x2a_c00016{left:263.626667pt;}
.x38_c00016{left:270.666667pt;}
.x34_c00016{left:272.000000pt;}
.x7_c00016{left:274.293333pt;}
.x6d_c00016{left:275.426667pt;}
.x52_c00016{left:277.333333pt;}
.x92_c00016{left:279.040000pt;}
.x62_c00016{left:280.960000pt;}
.x4d_c00016{left:282.666667pt;}
.x1f_c00016{left:285.706667pt;}
.xc8_c00016{left:287.040000pt;}
.x59_c00016{left:289.706667pt;}
.x9c_c00016{left:290.666667pt;}
.x35_c00016{left:293.706667pt;}
.x44_c00016{left:299.626667pt;}
.x86_c00016{left:302.666667pt;}
.x20_c00016{left:306.666667pt;}
.xab_c00016{left:307.626667pt;}
.x40_c00016{left:310.293333pt;}
.xcc_c00016{left:312.000000pt;}
.x21_c00016{left:315.626667pt;}
.x36_c00016{left:317.706667pt;}
.x15_c00016{left:318.666667pt;}
.x49_c00016{left:321.706667pt;}
.x63_c00016{left:324.000000pt;}
.x39_c00016{left:326.293333pt;}
.x2b_c00016{left:328.000000pt;}
.x9d_c00016{left:329.706667pt;}
.x93_c00016{left:331.626667pt;}
.x53_c00016{left:332.960000pt;}
.x6e_c00016{left:334.293333pt;}
.xcd_c00016{left:337.706667pt;}
.xb1_c00016{left:338.666667pt;}
.x4e_c00016{left:341.706667pt;}
.x3a_c00016{left:342.666667pt;}
.x77_c00016{left:344.960000pt;}
.xa6_c00016{left:346.666667pt;}
.x2_c00016{left:348.000000pt;}
.x5a_c00016{left:349.333333pt;}
.x8_c00016{left:354.666667pt;}
.x54_c00016{left:356.000000pt;}
.x45_c00016{left:356.960000pt;}
.x7a_c00016{left:358.666667pt;}
.x2c_c00016{left:359.626667pt;}
.x87_c00016{left:361.706667pt;}
.x3_c00016{left:362.666667pt;}
.xc3_c00016{left:366.666667pt;}
.x41_c00016{left:367.626667pt;}
.xb2_c00016{left:370.666667pt;}
.x9_c00016{left:372.960000pt;}
.x16_c00016{left:376.960000pt;}
.x9e_c00016{left:378.666667pt;}
.x22_c00016{left:380.000000pt;}
.x64_c00016{left:381.706667pt;}
.x94_c00016{left:382.666667pt;}
.x4a_c00016{left:387.040000pt;}
.x6f_c00016{left:388.373333pt;}
.x3b_c00016{left:394.293333pt;}
.x17_c00016{left:396.000000pt;}
.xbd_c00016{left:399.040000pt;}
.xb9_c00016{left:405.706667pt;}
.x65_c00016{left:406.666667pt;}
.xc9_c00016{left:408.000000pt;}
.x95_c00016{left:409.333333pt;}
.xac_c00016{left:410.293333pt;}
.x5d_c00016{left:415.240000pt;}
.x55_c00016{left:416.373333pt;}
.x46_c00016{left:417.333333pt;}
.x88_c00016{left:419.040000pt;}
.x18_c00016{left:422.666667pt;}
.x70_c00016{left:424.000000pt;}
.x2d_c00016{left:426.666667pt;}
.x42_c00016{left:427.626667pt;}
.x23_c00016{left:428.960000pt;}
.x9f_c00016{left:436.373333pt;}
.x7b_c00016{left:442.666667pt;}
.xa_c00016{left:443.626667pt;}
.x24_c00016{left:445.706667pt;}
.x56_c00016{left:446.666667pt;}
.x5b_c00016{left:447.626667pt;}
.x3c_c00016{left:450.666667pt;}
.x4b_c00016{left:451.626667pt;}
.x4f_c00016{left:453.333333pt;}
.x89_c00016{left:455.426667pt;}
.x71_c00016{left:458.666667pt;}
.x66_c00016{left:460.000000pt;}
.x7c_c00016{left:461.333333pt;}
.xb6_c00016{left:464.000000pt;}
.xb_c00016{left:465.333333pt;}
.x5e_c00016{left:466.293333pt;}
.x25_c00016{left:467.626667pt;}
.xd4_c00016{left:470.666667pt;}
.xad_c00016{left:472.000000pt;}
.x47_c00016{left:472.960000pt;}
.x7d_c00016{left:476.000000pt;}
.x72_c00016{left:478.666667pt;}
.x2e_c00016{left:480.960000pt;}
.x3d_c00016{left:482.666667pt;}
.x67_c00016{left:485.333333pt;}
.xc_c00016{left:490.666667pt;}
.x19_c00016{left:493.333333pt;}
.xbe_c00016{left:494.666667pt;}
.xb3_c00016{left:495.626667pt;}
.x2f_c00016{left:500.000000pt;}
.xa7_c00016{left:501.333333pt;}
.xb7_c00016{left:503.040000pt;}
.xba_c00016{left:504.000000pt;}
.x7e_c00016{left:505.333333pt;}
.x8a_c00016{left:507.040000pt;}
.x1a_c00016{left:510.666667pt;}
.xce_c00016{left:512.000000pt;}
.x73_c00016{left:513.333333pt;}
.xc4_c00016{left:520.000000pt;}
.x3e_c00016{left:521.333333pt;}
.x5c_c00016{left:522.293333pt;}
.x48_c00016{left:524.000000pt;}
.x96_c00016{left:524.960000pt;}
.x5f_c00016{left:526.293333pt;}
.x8b_c00016{left:530.666667pt;}
.x74_c00016{left:532.373333pt;}
.xbf_c00016{left:533.706667pt;}
.xb4_c00016{left:537.333333pt;}
.x57_c00016{left:538.666667pt;}
.x97_c00016{left:541.706667pt;}
.x60_c00016{left:542.666667pt;}
.x68_c00016{left:545.333333pt;}
.xd_c00016{left:546.293333pt;}
.xd5_c00016{left:550.293333pt;}
.x26_c00016{left:555.040000pt;}
.x7f_c00016{left:556.000000pt;}
.x30_c00016{left:559.040000pt;}
.xae_c00016{left:560.373333pt;}
.x1b_c00016{left:563.040000pt;}
.x98_c00016{left:564.000000pt;}
.x8c_c00016{left:567.626667pt;}
.xd3_c00016{left:574.293333pt;}
.xa0_c00016{left:576.000000pt;}
.x50_c00016{left:576.960000pt;}
.x27_c00016{left:579.626667pt;}
.x69_c00016{left:581.333333pt;}
.x8d_c00016{left:585.706667pt;}
.x78_c00016{left:588.960000pt;}
.xca_c00016{left:592.960000pt;}
.x31_c00016{left:594.293333pt;}
.x80_c00016{left:596.000000pt;}
.x75_c00016{left:597.706667pt;}
.xd6_c00016{left:599.040000pt;}
.x6a_c00016{left:600.000000pt;}
.x1c_c00016{left:602.666667pt;}
.xc0_c00016{left:603.626667pt;}
.x8e_c00016{left:609.706667pt;}
.xe_c00016{left:610.666667pt;}
.x81_c00016{left:614.666667pt;}
.xcf_c00016{left:618.293333pt;}
.xa1_c00016{left:620.000000pt;}
.x99_c00016{left:622.666667pt;}
.x1_c00016{left:625.333333pt;}
.x6b_c00016{left:627.040000pt;}
.xf_c00016{left:632.000000pt;}
.x32_c00016{left:633.333333pt;}
.xbb_c00016{left:636.000000pt;}
.x51_c00016{left:639.626667pt;}
.xa8_c00016{left:640.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_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_087bcfe84e891e53f7741564.woff2')format("woff");}.ff1_c00017{font-family:ff1_c00017;line-height:1.688965;font-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_c00017{transform:matrix(0.331092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331092,0.000000,0.000000,0.250000,0,0);}
.m90_c00017{transform:matrix(0.367739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367739,0.000000,0.000000,0.250000,0,0);}
.m11_c00017{transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);}
.m39_c00017{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m69_c00017{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m59_c00017{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m7d_c00017{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m17_c00017{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m67_c00017{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m4c_c00017{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.ma9_c00017{transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);}
.m78_c00017{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m1b_c00017{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m63_c00017{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m82_c00017{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.m66_c00017{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m80_c00017{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.ma8_c00017{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.m8b_c00017{transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);}
.m54_c00017{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m19_c00017{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m5e_c00017{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m81_c00017{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m68_c00017{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m3e_c00017{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m2e_c00017{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m2f_c00017{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.mc_c00017{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m2_c00017{transform:matrix(0.436722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436722,0.000000,0.000000,0.250000,0,0);}
.m30_c00017{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m7a_c00017{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m4a_c00017{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m76_c00017{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.ma6_c00017{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m7b_c00017{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m65_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);}
.m3_c00017{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m62_c00017{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m35_c00017{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m12_c00017{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.m20_c00017{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m9a_c00017{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.m37_c00017{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.m7f_c00017{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m74_c00017{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.m46_c00017{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m1e_c00017{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m4d_c00017{transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);}
.m2b_c00017{transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);}
.m3c_c00017{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m98_c00017{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m14_c00017{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m47_c00017{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m9e_c00017{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m3f_c00017{transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);}
.m60_c00017{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m7c_c00017{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m5f_c00017{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m16_c00017{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m9_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);}
.m33_c00017{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m58_c00017{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m7e_c00017{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m93_c00017{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m45_c00017{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m27_c00017{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m42_c00017{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m22_c00017{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m6b_c00017{transform:matrix(0.513915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513915,0.000000,0.000000,0.250000,0,0);}
.m56_c00017{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m10_c00017{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m50_c00017{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.m8e_c00017{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m70_c00017{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m31_c00017{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m94_c00017{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m6e_c00017{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.md_c00017{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m2a_c00017{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m6c_c00017{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m55_c00017{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m6_c00017{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m61_c00017{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m92_c00017{transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);}
.m34_c00017{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m24_c00017{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m1f_c00017{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m1d_c00017{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m6f_c00017{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m2d_c00017{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m1c_c00017{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mb_c00017{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m73_c00017{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m6d_c00017{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m21_c00017{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.ma2_c00017{transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);}
.m6a_c00017{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.ma7_c00017{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m64_c00017{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m1a_c00017{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m8f_c00017{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);}
.m53_c00017{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m9d_c00017{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m3a_c00017{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.ma_c00017{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m4e_c00017{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m4_c00017{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m13_c00017{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m5a_c00017{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m32_c00017{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m86_c00017{transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);}
.m26_c00017{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m71_c00017{transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);}
.m5b_c00017{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m8_c00017{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m5c_c00017{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m29_c00017{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m8c_c00017{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m75_c00017{transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);}
.m77_c00017{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m49_c00017{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m8a_c00017{transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);}
.m28_c00017{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m52_c00017{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m7_c00017{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.me_c00017{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m84_c00017{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m91_c00017{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m83_c00017{transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);}
.m4b_c00017{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m88_c00017{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.m9c_c00017{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m99_c00017{transform:matrix(0.598529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598529,0.000000,0.000000,0.250000,0,0);}
.m44_c00017{transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);}
.m40_c00017{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m38_c00017{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m43_c00017{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m3d_c00017{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.ma4_c00017{transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);}
.m8d_c00017{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.m85_c00017{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m87_c00017{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m89_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);}
.m0_c00017{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m25_c00017{transform:matrix(0.633814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633814,0.000000,0.000000,0.250000,0,0);}
.m9f_c00017{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m41_c00017{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m9b_c00017{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m23_c00017{transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);}
.m95_c00017{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.ma3_c00017{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m18_c00017{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m97_c00017{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m79_c00017{transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);}
.mf_c00017{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m2c_c00017{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.ma5_c00017{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.ma1_c00017{transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);}
.m96_c00017{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);}
.m3b_c00017{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m51_c00017{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.ma0_c00017{transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);}
.m72_c00017{transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);}
.m36_c00017{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m48_c00017{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m5d_c00017{transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);}
.m1_c00017{transform:matrix(0.761765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761765,0.000000,0.000000,0.250000,0,0);}
.m4f_c00017{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m57_c00017{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m5_c00017{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.v0_c00017{vertical-align:0.000000px;}
.ls0_c00017{letter-spacing:0.000000px;}
.sc__c00017{text-shadow:none;}
.sc0_c00017{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00017{-webkit-text-stroke:0px transparent;}
.sc0_c00017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00017{word-spacing:0.000000px;}
.fc0_c00017{color:transparent;}
.fs6_c00017{font-size:11.880000px;}
.fs3_c00017{font-size:18.720000px;}
.fs0_c00017{font-size:20.400000px;}
.fs4_c00017{font-size:25.500000px;}
.fs1_c00017{font-size:28.920000px;}
.fs2_c00017{font-size:32.340000px;}
.fs5_c00017{font-size:35.700000px;}
.y0_c00017{bottom:0.000000px;}
.y4d_c00017{bottom:254.745000px;}
.y4e_c00017{bottom:256.245000px;}
.y4c_c00017{bottom:256.905000px;}
.y4b_c00017{bottom:274.245000px;}
.y4a_c00017{bottom:275.325000px;}
.y49_c00017{bottom:276.405000px;}
.y47_c00017{bottom:293.745000px;}
.y46_c00017{bottom:295.905000px;}
.y48_c00017{bottom:296.970000px;}
.y42_c00017{bottom:313.245000px;}
.y44_c00017{bottom:314.325000px;}
.y40_c00017{bottom:315.405000px;}
.y41_c00017{bottom:315.630000px;}
.y45_c00017{bottom:316.470000px;}
.y43_c00017{bottom:316.905000px;}
.y3f_c00017{bottom:332.745000px;}
.y3e_c00017{bottom:334.245000px;}
.y3d_c00017{bottom:336.405000px;}
.y39_c00017{bottom:353.745000px;}
.y3c_c00017{bottom:354.825000px;}
.y3b_c00017{bottom:355.470000px;}
.y3a_c00017{bottom:355.905000px;}
.y38_c00017{bottom:373.245000px;}
.y37_c00017{bottom:375.405000px;}
.y36_c00017{bottom:392.745000px;}
.y35_c00017{bottom:393.630000px;}
.y34_c00017{bottom:394.905000px;}
.y30_c00017{bottom:411.405000px;}
.y33_c00017{bottom:412.245000px;}
.y32_c00017{bottom:413.970000px;}
.y31_c00017{bottom:414.405000px;}
.y2f_c00017{bottom:414.630000px;}
.y2e_c00017{bottom:431.745000px;}
.y29_c00017{bottom:432.825000px;}
.y2c_c00017{bottom:433.245000px;}
.y28_c00017{bottom:433.905000px;}
.y2a_c00017{bottom:434.130000px;}
.y2d_c00017{bottom:434.970000px;}
.y2b_c00017{bottom:435.405000px;}
.y24_c00017{bottom:453.825000px;}
.y26_c00017{bottom:454.470000px;}
.y25_c00017{bottom:454.905000px;}
.y27_c00017{bottom:455.970000px;}
.y23_c00017{bottom:472.245000px;}
.y1f_c00017{bottom:473.130000px;}
.y20_c00017{bottom:473.325000px;}
.y22_c00017{bottom:473.970000px;}
.y21_c00017{bottom:474.405000px;}
.y1e_c00017{bottom:491.325000px;}
.y1c_c00017{bottom:491.745000px;}
.y1d_c00017{bottom:493.905000px;}
.y1b_c00017{bottom:511.245000px;}
.y18_c00017{bottom:513.405000px;}
.y19_c00017{bottom:513.825000px;}
.y1a_c00017{bottom:514.905000px;}
.y14_c00017{bottom:530.745000px;}
.y13_c00017{bottom:531.825000px;}
.y12_c00017{bottom:532.905000px;}
.y17_c00017{bottom:533.130000px;}
.y15_c00017{bottom:533.970000px;}
.y16_c00017{bottom:534.405000px;}
.yc_c00017{bottom:549.405000px;}
.ye_c00017{bottom:550.245000px;}
.yb_c00017{bottom:551.325000px;}
.y11_c00017{bottom:551.745000px;}
.ya_c00017{bottom:552.405000px;}
.yf_c00017{bottom:553.470000px;}
.y10_c00017{bottom:553.905000px;}
.yd_c00017{bottom:557.775000px;}
.y8_c00017{bottom:571.245000px;}
.y6_c00017{bottom:571.905000px;}
.y5_c00017{bottom:572.130000px;}
.y3_c00017{bottom:572.325000px;}
.y7_c00017{bottom:572.970000px;}
.y4_c00017{bottom:573.405000px;}
.y9_c00017{bottom:578.775000px;}
.y2_c00017{bottom:603.405000px;}
.y61_c00017{bottom:636.825000px;}
.y62_c00017{bottom:640.050000px;}
.y60_c00017{bottom:652.050000px;}
.y5c_c00017{bottom:652.905000px;}
.y5f_c00017{bottom:653.130000px;}
.y5d_c00017{bottom:653.970000px;}
.y5e_c00017{bottom:655.050000px;}
.y5b_c00017{bottom:666.405000px;}
.y57_c00017{bottom:667.470000px;}
.y58_c00017{bottom:667.905000px;}
.y59_c00017{bottom:668.550000px;}
.y5a_c00017{bottom:668.970000px;}
.y56_c00017{bottom:681.405000px;}
.y4f_c00017{bottom:681.825000px;}
.y55_c00017{bottom:682.050000px;}
.y54_c00017{bottom:682.470000px;}
.y50_c00017{bottom:683.130000px;}
.y52_c00017{bottom:683.550000px;}
.y51_c00017{bottom:683.970000px;}
.y53_c00017{bottom:685.050000px;}
.y1_c00017{bottom:1102.050000px;}
.h7_c00017{height:14.612168px;}
.h4_c00017{height:23.025234px;}
.h1_c00017{height:25.091602px;}
.h5_c00017{height:31.364502px;}
.h2_c00017{height:35.571035px;}
.h3_c00017{height:39.777568px;}
.h6_c00017{height:43.910303px;}
.h0_c00017{height:1335.000000px;}
.w0_c00017{width:880.500000px;}
.x0_c00017{left:0.000000px;}
.x82_c00017{left:147.000000px;}
.x2c_c00017{left:148.500000px;}
.x11_c00017{left:149.580000px;}
.x2_c00017{left:151.500000px;}
.x50_c00017{left:163.500000px;}
.x4_c00017{left:165.000000px;}
.x5d_c00017{left:175.500000px;}
.x7b_c00017{left:176.580000px;}
.x12_c00017{left:178.080000px;}
.x9a_c00017{left:180.420000px;}
.x2d_c00017{left:181.920000px;}
.xac_c00017{left:183.000000px;}
.x67_c00017{left:186.000000px;}
.x22_c00017{left:193.500000px;}
.x6e_c00017{left:194.580000px;}
.x13_c00017{left:196.920000px;}
.x9b_c00017{left:198.000000px;}
.x68_c00017{left:207.000000px;}
.xa4_c00017{left:210.420000px;}
.x23_c00017{left:211.500000px;}
.x6f_c00017{left:214.920000px;}
.x14_c00017{left:217.080000px;}
.x4b_c00017{left:219.420000px;}
.x7c_c00017{left:225.000000px;}
.x2e_c00017{left:228.000000px;}
.x39_c00017{left:230.580000px;}
.x83_c00017{left:234.000000px;}
.xa5_c00017{left:237.420000px;}
.x7d_c00017{left:238.920000px;}
.x5_c00017{left:243.000000px;}
.x69_c00017{left:244.080000px;}
.x15_c00017{left:245.580000px;}
.x43_c00017{left:251.580000px;}
.x51_c00017{left:255.000000px;}
.x5e_c00017{left:256.080000px;}
.x8f_c00017{left:261.420000px;}
.x16_c00017{left:262.500000px;}
.x9c_c00017{left:263.580000px;}
.x17_c00017{left:271.080000px;}
.x95_c00017{left:273.645000px;}
.x24_c00017{left:274.920000px;}
.x4c_c00017{left:277.080000px;}
.x9d_c00017{left:280.500000px;}
.x44_c00017{left:282.000000px;}
.x52_c00017{left:283.500000px;}
.x3a_c00017{left:286.500000px;}
.x5f_c00017{left:288.000000px;}
.x90_c00017{left:289.500000px;}
.x2f_c00017{left:291.420000px;}
.x53_c00017{left:297.420000px;}
.x18_c00017{left:301.500000px;}
.x70_c00017{left:303.420000px;}
.x6_c00017{left:307.500000px;}
.x75_c00017{left:312.000000px;}
.x30_c00017{left:319.080000px;}
.x45_c00017{left:321.000000px;}
.xad_c00017{left:322.500000px;}
.x19_c00017{left:325.500000px;}
.x54_c00017{left:327.000000px;}
.x25_c00017{left:328.500000px;}
.x7_c00017{left:331.920000px;}
.x7e_c00017{left:339.000000px;}
.x89_c00017{left:343.920000px;}
.x1a_c00017{left:351.000000px;}
.x60_c00017{left:352.500000px;}
.x96_c00017{left:354.420000px;}
.xae_c00017{left:355.500000px;}
.x9e_c00017{left:357.000000px;}
.xb2_c00017{left:361.080000px;}
.x8_c00017{left:363.000000px;}
.x3b_c00017{left:364.500000px;}
.xa6_c00017{left:369.000000px;}
.x46_c00017{left:373.080000px;}
.x91_c00017{left:374.580000px;}
.x4d_c00017{left:379.080000px;}
.x3c_c00017{left:381.420000px;}
.x84_c00017{left:384.000000px;}
.x3_c00017{left:385.500000px;}
.x31_c00017{left:389.580000px;}
.x1_c00017{left:391.500000px;}
.x61_c00017{left:393.420000px;}
.xb3_c00017{left:396.000000px;}
.x71_c00017{left:398.580000px;}
.x1b_c00017{left:406.500000px;}
.x9_c00017{left:408.420000px;}
.x32_c00017{left:411.420000px;}
.x8a_c00017{left:416.580000px;}
.xa7_c00017{left:420.420000px;}
.x55_c00017{left:421.500000px;}
.x1c_c00017{left:424.920000px;}
.xb4_c00017{left:427.500000px;}
.x26_c00017{left:429.420000px;}
.x72_c00017{left:430.920000px;}
.x3d_c00017{left:433.920000px;}
.x6a_c00017{left:435.000000px;}
.xa8_c00017{left:436.500000px;}
.x4e_c00017{left:438.000000px;}
.x76_c00017{left:439.080000px;}
.xb5_c00017{left:444.000000px;}
.x9f_c00017{left:447.000000px;}
.x85_c00017{left:448.500000px;}
.x1d_c00017{left:450.420000px;}
.xa_c00017{left:452.580000px;}
.x56_c00017{left:457.500000px;}
.x3e_c00017{left:459.420000px;}
.x47_c00017{left:461.580000px;}
.x62_c00017{left:465.000000px;}
.x27_c00017{left:468.420000px;}
.x57_c00017{left:471.420000px;}
.xb_c00017{left:473.580000px;}
.xa0_c00017{left:478.500000px;}
.x33_c00017{left:481.080000px;}
.x63_c00017{left:484.500000px;}
.x3f_c00017{left:486.000000px;}
.xa9_c00017{left:490.500000px;}
.x77_c00017{left:493.500000px;}
.x28_c00017{left:496.080000px;}
.x58_c00017{left:501.000000px;}
.x8b_c00017{left:506.580000px;}
.x64_c00017{left:508.080000px;}
.x73_c00017{left:510.420000px;}
.x34_c00017{left:514.920000px;}
.xa1_c00017{left:520.500000px;}
.xaf_c00017{left:522.000000px;}
.xc_c00017{left:523.500000px;}
.x1e_c00017{left:531.420000px;}
.x48_c00017{left:532.500000px;}
.x86_c00017{left:534.000000px;}
.x78_c00017{left:538.500000px;}
.x4f_c00017{left:542.580000px;}
.x59_c00017{left:545.580000px;}
.xb0_c00017{left:550.500000px;}
.x29_c00017{left:552.000000px;}
.x49_c00017{left:557.580000px;}
.x79_c00017{left:559.920000px;}
.x97_c00017{left:565.920000px;}
.x8c_c00017{left:575.580000px;}
.x1f_c00017{left:577.500000px;}
.x65_c00017{left:579.420000px;}
.x92_c00017{left:583.920000px;}
.x40_c00017{left:586.080000px;}
.xd_c00017{left:589.080000px;}
.x7f_c00017{left:591.000000px;}
.x6b_c00017{left:592.080000px;}
.xa2_c00017{left:597.000000px;}
.x35_c00017{left:598.500000px;}
.x87_c00017{left:603.420000px;}
.x41_c00017{left:606.420000px;}
.x5a_c00017{left:608.580000px;}
.x93_c00017{left:611.580000px;}
.x36_c00017{left:616.500000px;}
.x2a_c00017{left:617.580000px;}
.xb1_c00017{left:621.000000px;}
.x6c_c00017{left:624.420000px;}
.x37_c00017{left:634.500000px;}
.x8d_c00017{left:636.000000px;}
.x74_c00017{left:637.080000px;}
.x7a_c00017{left:640.500000px;}
.x98_c00017{left:641.580000px;}
.x20_c00017{left:645.000000px;}
.x80_c00017{left:648.000000px;}
.xe_c00017{left:649.080000px;}
.x4a_c00017{left:654.000000px;}
.xaa_c00017{left:655.500000px;}
.x81_c00017{left:663.420000px;}
.x5b_c00017{left:664.920000px;}
.x21_c00017{left:667.500000px;}
.x66_c00017{left:668.580000px;}
.xa3_c00017{left:672.420000px;}
.x88_c00017{left:675.000000px;}
.x6d_c00017{left:678.420000px;}
.x42_c00017{left:679.500000px;}
.xab_c00017{left:681.000000px;}
.x94_c00017{left:683.580000px;}
.x2b_c00017{left:688.500000px;}
.x5c_c00017{left:691.920000px;}
.x99_c00017{left:694.500000px;}
.x8e_c00017{left:705.420000px;}
.x38_c00017{left:709.500000px;}
.xf_c00017{left:715.500000px;}
.x10_c00017{left:723.000000px;}
@media print{
.v0_c00017{vertical-align:0.000000pt;}
.ls0_c00017{letter-spacing:0.000000pt;}
.ws0_c00017{word-spacing:0.000000pt;}
.fs6_c00017{font-size:10.560000pt;}
.fs3_c00017{font-size:16.640000pt;}
.fs0_c00017{font-size:18.133333pt;}
.fs4_c00017{font-size:22.666667pt;}
.fs1_c00017{font-size:25.706667pt;}
.fs2_c00017{font-size:28.746667pt;}
.fs5_c00017{font-size:31.733333pt;}
.y0_c00017{bottom:0.000000pt;}
.y4d_c00017{bottom:226.440000pt;}
.y4e_c00017{bottom:227.773333pt;}
.y4c_c00017{bottom:228.360000pt;}
.y4b_c00017{bottom:243.773333pt;}
.y4a_c00017{bottom:244.733333pt;}
.y49_c00017{bottom:245.693333pt;}
.y47_c00017{bottom:261.106667pt;}
.y46_c00017{bottom:263.026667pt;}
.y48_c00017{bottom:263.973333pt;}
.y42_c00017{bottom:278.440000pt;}
.y44_c00017{bottom:279.400000pt;}
.y40_c00017{bottom:280.360000pt;}
.y41_c00017{bottom:280.560000pt;}
.y45_c00017{bottom:281.306667pt;}
.y43_c00017{bottom:281.693333pt;}
.y3f_c00017{bottom:295.773333pt;}
.y3e_c00017{bottom:297.106667pt;}
.y3d_c00017{bottom:299.026667pt;}
.y39_c00017{bottom:314.440000pt;}
.y3c_c00017{bottom:315.400000pt;}
.y3b_c00017{bottom:315.973333pt;}
.y3a_c00017{bottom:316.360000pt;}
.y38_c00017{bottom:331.773333pt;}
.y37_c00017{bottom:333.693333pt;}
.y36_c00017{bottom:349.106667pt;}
.y35_c00017{bottom:349.893333pt;}
.y34_c00017{bottom:351.026667pt;}
.y30_c00017{bottom:365.693333pt;}
.y33_c00017{bottom:366.440000pt;}
.y32_c00017{bottom:367.973333pt;}
.y31_c00017{bottom:368.360000pt;}
.y2f_c00017{bottom:368.560000pt;}
.y2e_c00017{bottom:383.773333pt;}
.y29_c00017{bottom:384.733333pt;}
.y2c_c00017{bottom:385.106667pt;}
.y28_c00017{bottom:385.693333pt;}
.y2a_c00017{bottom:385.893333pt;}
.y2d_c00017{bottom:386.640000pt;}
.y2b_c00017{bottom:387.026667pt;}
.y24_c00017{bottom:403.400000pt;}
.y26_c00017{bottom:403.973333pt;}
.y25_c00017{bottom:404.360000pt;}
.y27_c00017{bottom:405.306667pt;}
.y23_c00017{bottom:419.773333pt;}
.y1f_c00017{bottom:420.560000pt;}
.y20_c00017{bottom:420.733333pt;}
.y22_c00017{bottom:421.306667pt;}
.y21_c00017{bottom:421.693333pt;}
.y1e_c00017{bottom:436.733333pt;}
.y1c_c00017{bottom:437.106667pt;}
.y1d_c00017{bottom:439.026667pt;}
.y1b_c00017{bottom:454.440000pt;}
.y18_c00017{bottom:456.360000pt;}
.y19_c00017{bottom:456.733333pt;}
.y1a_c00017{bottom:457.693333pt;}
.y14_c00017{bottom:471.773333pt;}
.y13_c00017{bottom:472.733333pt;}
.y12_c00017{bottom:473.693333pt;}
.y17_c00017{bottom:473.893333pt;}
.y15_c00017{bottom:474.640000pt;}
.y16_c00017{bottom:475.026667pt;}
.yc_c00017{bottom:488.360000pt;}
.ye_c00017{bottom:489.106667pt;}
.yb_c00017{bottom:490.066667pt;}
.y11_c00017{bottom:490.440000pt;}
.ya_c00017{bottom:491.026667pt;}
.yf_c00017{bottom:491.973333pt;}
.y10_c00017{bottom:492.360000pt;}
.yd_c00017{bottom:495.800000pt;}
.y8_c00017{bottom:507.773333pt;}
.y6_c00017{bottom:508.360000pt;}
.y5_c00017{bottom:508.560000pt;}
.y3_c00017{bottom:508.733333pt;}
.y7_c00017{bottom:509.306667pt;}
.y4_c00017{bottom:509.693333pt;}
.y9_c00017{bottom:514.466667pt;}
.y2_c00017{bottom:536.360000pt;}
.y61_c00017{bottom:566.066667pt;}
.y62_c00017{bottom:568.933333pt;}
.y60_c00017{bottom:579.600000pt;}
.y5c_c00017{bottom:580.360000pt;}
.y5f_c00017{bottom:580.560000pt;}
.y5d_c00017{bottom:581.306667pt;}
.y5e_c00017{bottom:582.266667pt;}
.y5b_c00017{bottom:592.360000pt;}
.y57_c00017{bottom:593.306667pt;}
.y58_c00017{bottom:593.693333pt;}
.y59_c00017{bottom:594.266667pt;}
.y5a_c00017{bottom:594.640000pt;}
.y56_c00017{bottom:605.693333pt;}
.y4f_c00017{bottom:606.066667pt;}
.y55_c00017{bottom:606.266667pt;}
.y54_c00017{bottom:606.640000pt;}
.y50_c00017{bottom:607.226667pt;}
.y52_c00017{bottom:607.600000pt;}
.y51_c00017{bottom:607.973333pt;}
.y53_c00017{bottom:608.933333pt;}
.y1_c00017{bottom:979.600000pt;}
.h7_c00017{height:12.988594pt;}
.h4_c00017{height:20.466875pt;}
.h1_c00017{height:22.303646pt;}
.h5_c00017{height:27.879557pt;}
.h2_c00017{height:31.618698pt;}
.h3_c00017{height:35.357839pt;}
.h6_c00017{height:39.031380pt;}
.h0_c00017{height:1186.666667pt;}
.w0_c00017{width:782.666667pt;}
.x0_c00017{left:0.000000pt;}
.x82_c00017{left:130.666667pt;}
.x2c_c00017{left:132.000000pt;}
.x11_c00017{left:132.960000pt;}
.x2_c00017{left:134.666667pt;}
.x50_c00017{left:145.333333pt;}
.x4_c00017{left:146.666667pt;}
.x5d_c00017{left:156.000000pt;}
.x7b_c00017{left:156.960000pt;}
.x12_c00017{left:158.293333pt;}
.x9a_c00017{left:160.373333pt;}
.x2d_c00017{left:161.706667pt;}
.xac_c00017{left:162.666667pt;}
.x67_c00017{left:165.333333pt;}
.x22_c00017{left:172.000000pt;}
.x6e_c00017{left:172.960000pt;}
.x13_c00017{left:175.040000pt;}
.x9b_c00017{left:176.000000pt;}
.x68_c00017{left:184.000000pt;}
.xa4_c00017{left:187.040000pt;}
.x23_c00017{left:188.000000pt;}
.x6f_c00017{left:191.040000pt;}
.x14_c00017{left:192.960000pt;}
.x4b_c00017{left:195.040000pt;}
.x7c_c00017{left:200.000000pt;}
.x2e_c00017{left:202.666667pt;}
.x39_c00017{left:204.960000pt;}
.x83_c00017{left:208.000000pt;}
.xa5_c00017{left:211.040000pt;}
.x7d_c00017{left:212.373333pt;}
.x5_c00017{left:216.000000pt;}
.x69_c00017{left:216.960000pt;}
.x15_c00017{left:218.293333pt;}
.x43_c00017{left:223.626667pt;}
.x51_c00017{left:226.666667pt;}
.x5e_c00017{left:227.626667pt;}
.x8f_c00017{left:232.373333pt;}
.x16_c00017{left:233.333333pt;}
.x9c_c00017{left:234.293333pt;}
.x17_c00017{left:240.960000pt;}
.x95_c00017{left:243.240000pt;}
.x24_c00017{left:244.373333pt;}
.x4c_c00017{left:246.293333pt;}
.x9d_c00017{left:249.333333pt;}
.x44_c00017{left:250.666667pt;}
.x52_c00017{left:252.000000pt;}
.x3a_c00017{left:254.666667pt;}
.x5f_c00017{left:256.000000pt;}
.x90_c00017{left:257.333333pt;}
.x2f_c00017{left:259.040000pt;}
.x53_c00017{left:264.373333pt;}
.x18_c00017{left:268.000000pt;}
.x70_c00017{left:269.706667pt;}
.x6_c00017{left:273.333333pt;}
.x75_c00017{left:277.333333pt;}
.x30_c00017{left:283.626667pt;}
.x45_c00017{left:285.333333pt;}
.xad_c00017{left:286.666667pt;}
.x19_c00017{left:289.333333pt;}
.x54_c00017{left:290.666667pt;}
.x25_c00017{left:292.000000pt;}
.x7_c00017{left:295.040000pt;}
.x7e_c00017{left:301.333333pt;}
.x89_c00017{left:305.706667pt;}
.x1a_c00017{left:312.000000pt;}
.x60_c00017{left:313.333333pt;}
.x96_c00017{left:315.040000pt;}
.xae_c00017{left:316.000000pt;}
.x9e_c00017{left:317.333333pt;}
.xb2_c00017{left:320.960000pt;}
.x8_c00017{left:322.666667pt;}
.x3b_c00017{left:324.000000pt;}
.xa6_c00017{left:328.000000pt;}
.x46_c00017{left:331.626667pt;}
.x91_c00017{left:332.960000pt;}
.x4d_c00017{left:336.960000pt;}
.x3c_c00017{left:339.040000pt;}
.x84_c00017{left:341.333333pt;}
.x3_c00017{left:342.666667pt;}
.x31_c00017{left:346.293333pt;}
.x1_c00017{left:348.000000pt;}
.x61_c00017{left:349.706667pt;}
.xb3_c00017{left:352.000000pt;}
.x71_c00017{left:354.293333pt;}
.x1b_c00017{left:361.333333pt;}
.x9_c00017{left:363.040000pt;}
.x32_c00017{left:365.706667pt;}
.x8a_c00017{left:370.293333pt;}
.xa7_c00017{left:373.706667pt;}
.x55_c00017{left:374.666667pt;}
.x1c_c00017{left:377.706667pt;}
.xb4_c00017{left:380.000000pt;}
.x26_c00017{left:381.706667pt;}
.x72_c00017{left:383.040000pt;}
.x3d_c00017{left:385.706667pt;}
.x6a_c00017{left:386.666667pt;}
.xa8_c00017{left:388.000000pt;}
.x4e_c00017{left:389.333333pt;}
.x76_c00017{left:390.293333pt;}
.xb5_c00017{left:394.666667pt;}
.x9f_c00017{left:397.333333pt;}
.x85_c00017{left:398.666667pt;}
.x1d_c00017{left:400.373333pt;}
.xa_c00017{left:402.293333pt;}
.x56_c00017{left:406.666667pt;}
.x3e_c00017{left:408.373333pt;}
.x47_c00017{left:410.293333pt;}
.x62_c00017{left:413.333333pt;}
.x27_c00017{left:416.373333pt;}
.x57_c00017{left:419.040000pt;}
.xb_c00017{left:420.960000pt;}
.xa0_c00017{left:425.333333pt;}
.x33_c00017{left:427.626667pt;}
.x63_c00017{left:430.666667pt;}
.x3f_c00017{left:432.000000pt;}
.xa9_c00017{left:436.000000pt;}
.x77_c00017{left:438.666667pt;}
.x28_c00017{left:440.960000pt;}
.x58_c00017{left:445.333333pt;}
.x8b_c00017{left:450.293333pt;}
.x64_c00017{left:451.626667pt;}
.x73_c00017{left:453.706667pt;}
.x34_c00017{left:457.706667pt;}
.xa1_c00017{left:462.666667pt;}
.xaf_c00017{left:464.000000pt;}
.xc_c00017{left:465.333333pt;}
.x1e_c00017{left:472.373333pt;}
.x48_c00017{left:473.333333pt;}
.x86_c00017{left:474.666667pt;}
.x78_c00017{left:478.666667pt;}
.x4f_c00017{left:482.293333pt;}
.x59_c00017{left:484.960000pt;}
.xb0_c00017{left:489.333333pt;}
.x29_c00017{left:490.666667pt;}
.x49_c00017{left:495.626667pt;}
.x79_c00017{left:497.706667pt;}
.x97_c00017{left:503.040000pt;}
.x8c_c00017{left:511.626667pt;}
.x1f_c00017{left:513.333333pt;}
.x65_c00017{left:515.040000pt;}
.x92_c00017{left:519.040000pt;}
.x40_c00017{left:520.960000pt;}
.xd_c00017{left:523.626667pt;}
.x7f_c00017{left:525.333333pt;}
.x6b_c00017{left:526.293333pt;}
.xa2_c00017{left:530.666667pt;}
.x35_c00017{left:532.000000pt;}
.x87_c00017{left:536.373333pt;}
.x41_c00017{left:539.040000pt;}
.x5a_c00017{left:540.960000pt;}
.x93_c00017{left:543.626667pt;}
.x36_c00017{left:548.000000pt;}
.x2a_c00017{left:548.960000pt;}
.xb1_c00017{left:552.000000pt;}
.x6c_c00017{left:555.040000pt;}
.x37_c00017{left:564.000000pt;}
.x8d_c00017{left:565.333333pt;}
.x74_c00017{left:566.293333pt;}
.x7a_c00017{left:569.333333pt;}
.x98_c00017{left:570.293333pt;}
.x20_c00017{left:573.333333pt;}
.x80_c00017{left:576.000000pt;}
.xe_c00017{left:576.960000pt;}
.x4a_c00017{left:581.333333pt;}
.xaa_c00017{left:582.666667pt;}
.x81_c00017{left:589.706667pt;}
.x5b_c00017{left:591.040000pt;}
.x21_c00017{left:593.333333pt;}
.x66_c00017{left:594.293333pt;}
.xa3_c00017{left:597.706667pt;}
.x88_c00017{left:600.000000pt;}
.x6d_c00017{left:603.040000pt;}
.x42_c00017{left:604.000000pt;}
.xab_c00017{left:605.333333pt;}
.x94_c00017{left:607.626667pt;}
.x2b_c00017{left:612.000000pt;}
.x5c_c00017{left:615.040000pt;}
.x99_c00017{left:617.333333pt;}
.x8e_c00017{left:627.040000pt;}
.x38_c00017{left:630.666667pt;}
.xf_c00017{left:636.000000pt;}
.x10_c00017{left:642.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_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_1660f6b9411a15b2cccfedb6.woff2')format("woff");}.ff1_c00018{font-family:ff1_c00018;line-height:1.688965;font-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_c00018{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.m39_c00018{transform:matrix(0.378151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378151,0.000000,0.000000,0.250000,0,0);}
.m2_c00018{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.m2a_c00018{transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);}
.m33_c00018{transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);}
.m32_c00018{transform:matrix(0.418568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418568,0.000000,0.000000,0.250000,0,0);}
.m20_c00018{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m27_c00018{transform:matrix(0.433529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433529,0.000000,0.000000,0.250000,0,0);}
.m1c_c00018{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m11_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);}
.m16_c00018{transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);}
.m43_c00018{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.mf_c00018{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m6_c00018{transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);}
.m3f_c00018{transform:matrix(0.466286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466286,0.000000,0.000000,0.250000,0,0);}
.m44_c00018{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.ma_c00018{transform:matrix(0.472353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472353,0.000000,0.000000,0.250000,0,0);}
.m23_c00018{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m17_c00018{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m3a_c00018{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m19_c00018{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m4a_c00018{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m35_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);}
.m41_c00018{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m22_c00018{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.m21_c00018{transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);}
.m14_c00018{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_c00018{transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);}
.m34_c00018{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m3b_c00018{transform:matrix(0.535250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535250,0.000000,0.000000,0.250000,0,0);}
.m28_c00018{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m12_c00018{transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);}
.m8_c00018{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.mb_c00018{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m29_c00018{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m5_c00018{transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);}
.m38_c00018{transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);}
.m13_c00018{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m1d_c00018{transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);}
.md_c00018{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);}
.m3c_c00018{transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);}
.m31_c00018{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mc_c00018{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m3d_c00018{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m37_c00018{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m3_c00018{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m9_c00018{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m10_c00018{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m49_c00018{transform:matrix(0.602206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602206,0.000000,0.000000,0.250000,0,0);}
.m2c_c00018{transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);}
.m46_c00018{transform:matrix(0.607353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607353,0.000000,0.000000,0.250000,0,0);}
.m45_c00018{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);}
.m4b_c00018{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.m7_c00018{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m0_c00018{transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);}
.m4_c00018{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_c00018{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m25_c00018{transform:matrix(0.627206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627206,0.000000,0.000000,0.250000,0,0);}
.m1e_c00018{transform:matrix(0.627941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627941,0.000000,0.000000,0.250000,0,0);}
.m1f_c00018{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.m2b_c00018{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m26_c00018{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m4c_c00018{transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);}
.m42_c00018{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m15_c00018{transform:matrix(0.647794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647794,0.000000,0.000000,0.250000,0,0);}
.m3e_c00018{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);}
.m30_c00018{transform:matrix(0.653846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653846,0.000000,0.000000,0.250000,0,0);}
.m2f_c00018{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m47_c00018{transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);}
.m18_c00018{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m48_c00018{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m40_c00018{transform:matrix(0.711765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.711765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.711765,0.000000,0.000000,0.250000,0,0);}
.m36_c00018{transform:matrix(0.718824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.718824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.718824,0.000000,0.000000,0.250000,0,0);}
.m1_c00018{transform:matrix(0.810294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.810294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.810294,0.000000,0.000000,0.250000,0,0);}
.me_c00018{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m2d_c00018{transform:matrix(0.932819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.932819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.932819,0.000000,0.000000,0.250000,0,0);}
.m2e_c00018{transform:matrix(0.953744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.953744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.953744,0.000000,0.000000,0.250000,0,0);}
.v0_c00018{vertical-align:0.000000px;}
.ls0_c00018{letter-spacing:0.000000px;}
.sc__c00018{text-shadow:none;}
.sc0_c00018{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00018{-webkit-text-stroke:0px transparent;}
.sc0_c00018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00018{word-spacing:0.000000px;}
.fc0_c00018{color:transparent;}
.fs5_c00018{font-size:13.620000px;}
.fs2_c00018{font-size:18.720000px;}
.fs0_c00018{font-size:20.400000px;}
.fs3_c00018{font-size:25.500000px;}
.fs4_c00018{font-size:28.920000px;}
.fs1_c00018{font-size:32.340000px;}
.fs6_c00018{font-size:35.700000px;}
.y0_c00018{bottom:0.000000px;}
.y37_c00018{bottom:255.405000px;}
.y36_c00018{bottom:255.630000px;}
.y35_c00018{bottom:257.550000px;}
.y33_c00018{bottom:270.405000px;}
.y34_c00018{bottom:271.470000px;}
.y32_c00018{bottom:272.550000px;}
.y31_c00018{bottom:272.970000px;}
.y30_c00018{bottom:273.825000px;}
.y2f_c00018{bottom:284.745000px;}
.y2d_c00018{bottom:284.970000px;}
.y2c_c00018{bottom:285.405000px;}
.y2b_c00018{bottom:285.825000px;}
.y2e_c00018{bottom:286.470000px;}
.y26_c00018{bottom:297.825000px;}
.y25_c00018{bottom:298.050000px;}
.y24_c00018{bottom:298.905000px;}
.y22_c00018{bottom:299.550000px;}
.y28_c00018{bottom:300.195000px;}
.y2a_c00018{bottom:300.405000px;}
.y29_c00018{bottom:300.630000px;}
.y27_c00018{bottom:301.050000px;}
.y23_c00018{bottom:301.470000px;}
.y21_c00018{bottom:301.905000px;}
.y20_c00018{bottom:304.470000px;}
.y1c_c00018{bottom:313.050000px;}
.y1d_c00018{bottom:313.905000px;}
.y1f_c00018{bottom:314.550000px;}
.y1e_c00018{bottom:314.970000px;}
.y1b_c00018{bottom:315.405000px;}
.y19_c00018{bottom:316.050000px;}
.y1a_c00018{bottom:316.470000px;}
.y18_c00018{bottom:317.325000px;}
.y16_c00018{bottom:328.050000px;}
.y14_c00018{bottom:329.550000px;}
.y15_c00018{bottom:329.970000px;}
.y13_c00018{bottom:330.405000px;}
.y12_c00018{bottom:331.470000px;}
.y17_c00018{bottom:332.550000px;}
.y11_c00018{bottom:333.405000px;}
.yd_c00018{bottom:343.050000px;}
.y10_c00018{bottom:343.905000px;}
.ye_c00018{bottom:344.970000px;}
.yf_c00018{bottom:346.050000px;}
.yc_c00018{bottom:346.470000px;}
.ya_c00018{bottom:346.905000px;}
.yb_c00018{bottom:347.550000px;}
.y7_c00018{bottom:358.905000px;}
.y8_c00018{bottom:359.130000px;}
.y4_c00018{bottom:359.325000px;}
.y6_c00018{bottom:359.970000px;}
.y9_c00018{bottom:360.195000px;}
.y5_c00018{bottom:361.050000px;}
.y3_c00018{bottom:362.130000px;}
.y2_c00018{bottom:362.325000px;}
.y1_c00018{bottom:1100.550000px;}
.h6_c00018{height:16.752334px;}
.h3_c00018{height:23.025234px;}
.h1_c00018{height:25.091602px;}
.h4_c00018{height:31.364502px;}
.h5_c00018{height:35.571035px;}
.h2_c00018{height:39.777568px;}
.h7_c00018{height:43.910303px;}
.h0_c00018{height:1335.000000px;}
.w0_c00018{width:880.500000px;}
.x0_c00018{left:0.000000px;}
.x3_c00018{left:153.420000px;}
.x21_c00018{left:154.500000px;}
.x3a_c00018{left:182.145000px;}
.x4f_c00018{left:186.000000px;}
.x4_c00018{left:189.420000px;}
.x2e_c00018{left:192.420000px;}
.x14_c00018{left:198.420000px;}
.x22_c00018{left:204.000000px;}
.x5_c00018{left:205.920000px;}
.x2f_c00018{left:207.000000px;}
.x48_c00018{left:217.500000px;}
.x3b_c00018{left:224.355000px;}
.x15_c00018{left:226.500000px;}
.x50_c00018{left:231.420000px;}
.x49_c00018{left:237.000000px;}
.x6_c00018{left:238.920000px;}
.x3c_c00018{left:242.580000px;}
.x51_c00018{left:249.000000px;}
.x7_c00018{left:255.000000px;}
.x16_c00018{left:266.355000px;}
.x23_c00018{left:268.920000px;}
.x3d_c00018{left:276.645000px;}
.x17_c00018{left:280.500000px;}
.x58_c00018{left:283.500000px;}
.x24_c00018{left:285.000000px;}
.x52_c00018{left:288.000000px;}
.x30_c00018{left:294.855000px;}
.x4a_c00018{left:301.500000px;}
.x8_c00018{left:312.000000px;}
.x31_c00018{left:314.145000px;}
.x3e_c00018{left:317.355000px;}
.x4b_c00018{left:327.000000px;}
.x3f_c00018{left:337.920000px;}
.x25_c00018{left:350.580000px;}
.x18_c00018{left:353.580000px;}
.x32_c00018{left:364.080000px;}
.x9_c00018{left:366.000000px;}
.x59_c00018{left:372.000000px;}
.x4c_c00018{left:373.500000px;}
.x53_c00018{left:388.080000px;}
.x1_c00018{left:390.000000px;}
.xa_c00018{left:391.080000px;}
.x19_c00018{left:394.920000px;}
.x4d_c00018{left:397.500000px;}
.x5a_c00018{left:402.000000px;}
.x1a_c00018{left:412.500000px;}
.x26_c00018{left:413.580000px;}
.x40_c00018{left:415.500000px;}
.x33_c00018{left:426.000000px;}
.xb_c00018{left:430.920000px;}
.x41_c00018{left:442.500000px;}
.x5b_c00018{left:452.580000px;}
.xc_c00018{left:459.420000px;}
.x27_c00018{left:470.580000px;}
.x5c_c00018{left:472.500000px;}
.x1b_c00018{left:481.080000px;}
.x54_c00018{left:485.580000px;}
.x42_c00018{left:487.500000px;}
.x5d_c00018{left:497.580000px;}
.xd_c00018{left:501.000000px;}
.x4e_c00018{left:506.580000px;}
.x34_c00018{left:507.645000px;}
.x28_c00018{left:516.000000px;}
.x43_c00018{left:522.000000px;}
.x1c_c00018{left:523.920000px;}
.x29_c00018{left:531.000000px;}
.x5e_c00018{left:537.000000px;}
.x1d_c00018{left:541.080000px;}
.x44_c00018{left:544.500000px;}
.x35_c00018{left:548.355000px;}
.x55_c00018{left:565.500000px;}
.x36_c00018{left:568.500000px;}
.xe_c00018{left:570.000000px;}
.x2a_c00018{left:583.080000px;}
.x45_c00018{left:586.080000px;}
.xf_c00018{left:588.000000px;}
.x56_c00018{left:594.000000px;}
.x10_c00018{left:612.000000px;}
.x1e_c00018{left:620.145000px;}
.x2b_c00018{left:625.080000px;}
.x37_c00018{left:629.580000px;}
.x57_c00018{left:636.000000px;}
.x2c_c00018{left:642.000000px;}
.x46_c00018{left:643.500000px;}
.x11_c00018{left:646.500000px;}
.x47_c00018{left:656.580000px;}
.x1f_c00018{left:661.920000px;}
.x12_c00018{left:664.500000px;}
.x38_c00018{left:669.855000px;}
.x20_c00018{left:679.080000px;}
.x39_c00018{left:688.500000px;}
.x2_c00018{left:693.000000px;}
.x2d_c00018{left:697.500000px;}
.x13_c00018{left:712.500000px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.ls0_c00018{letter-spacing:0.000000pt;}
.ws0_c00018{word-spacing:0.000000pt;}
.fs5_c00018{font-size:12.106667pt;}
.fs2_c00018{font-size:16.640000pt;}
.fs0_c00018{font-size:18.133333pt;}
.fs3_c00018{font-size:22.666667pt;}
.fs4_c00018{font-size:25.706667pt;}
.fs1_c00018{font-size:28.746667pt;}
.fs6_c00018{font-size:31.733333pt;}
.y0_c00018{bottom:0.000000pt;}
.y37_c00018{bottom:227.026667pt;}
.y36_c00018{bottom:227.226667pt;}
.y35_c00018{bottom:228.933333pt;}
.y33_c00018{bottom:240.360000pt;}
.y34_c00018{bottom:241.306667pt;}
.y32_c00018{bottom:242.266667pt;}
.y31_c00018{bottom:242.640000pt;}
.y30_c00018{bottom:243.400000pt;}
.y2f_c00018{bottom:253.106667pt;}
.y2d_c00018{bottom:253.306667pt;}
.y2c_c00018{bottom:253.693333pt;}
.y2b_c00018{bottom:254.066667pt;}
.y2e_c00018{bottom:254.640000pt;}
.y26_c00018{bottom:264.733333pt;}
.y25_c00018{bottom:264.933333pt;}
.y24_c00018{bottom:265.693333pt;}
.y22_c00018{bottom:266.266667pt;}
.y28_c00018{bottom:266.840000pt;}
.y2a_c00018{bottom:267.026667pt;}
.y29_c00018{bottom:267.226667pt;}
.y27_c00018{bottom:267.600000pt;}
.y23_c00018{bottom:267.973333pt;}
.y21_c00018{bottom:268.360000pt;}
.y20_c00018{bottom:270.640000pt;}
.y1c_c00018{bottom:278.266667pt;}
.y1d_c00018{bottom:279.026667pt;}
.y1f_c00018{bottom:279.600000pt;}
.y1e_c00018{bottom:279.973333pt;}
.y1b_c00018{bottom:280.360000pt;}
.y19_c00018{bottom:280.933333pt;}
.y1a_c00018{bottom:281.306667pt;}
.y18_c00018{bottom:282.066667pt;}
.y16_c00018{bottom:291.600000pt;}
.y14_c00018{bottom:292.933333pt;}
.y15_c00018{bottom:293.306667pt;}
.y13_c00018{bottom:293.693333pt;}
.y12_c00018{bottom:294.640000pt;}
.y17_c00018{bottom:295.600000pt;}
.y11_c00018{bottom:296.360000pt;}
.yd_c00018{bottom:304.933333pt;}
.y10_c00018{bottom:305.693333pt;}
.ye_c00018{bottom:306.640000pt;}
.yf_c00018{bottom:307.600000pt;}
.yc_c00018{bottom:307.973333pt;}
.ya_c00018{bottom:308.360000pt;}
.yb_c00018{bottom:308.933333pt;}
.y7_c00018{bottom:319.026667pt;}
.y8_c00018{bottom:319.226667pt;}
.y4_c00018{bottom:319.400000pt;}
.y6_c00018{bottom:319.973333pt;}
.y9_c00018{bottom:320.173333pt;}
.y5_c00018{bottom:320.933333pt;}
.y3_c00018{bottom:321.893333pt;}
.y2_c00018{bottom:322.066667pt;}
.y1_c00018{bottom:978.266667pt;}
.h6_c00018{height:14.890964pt;}
.h3_c00018{height:20.466875pt;}
.h1_c00018{height:22.303646pt;}
.h4_c00018{height:27.879557pt;}
.h5_c00018{height:31.618698pt;}
.h2_c00018{height:35.357839pt;}
.h7_c00018{height:39.031380pt;}
.h0_c00018{height:1186.666667pt;}
.w0_c00018{width:782.666667pt;}
.x0_c00018{left:0.000000pt;}
.x3_c00018{left:136.373333pt;}
.x21_c00018{left:137.333333pt;}
.x3a_c00018{left:161.906667pt;}
.x4f_c00018{left:165.333333pt;}
.x4_c00018{left:168.373333pt;}
.x2e_c00018{left:171.040000pt;}
.x14_c00018{left:176.373333pt;}
.x22_c00018{left:181.333333pt;}
.x5_c00018{left:183.040000pt;}
.x2f_c00018{left:184.000000pt;}
.x48_c00018{left:193.333333pt;}
.x3b_c00018{left:199.426667pt;}
.x15_c00018{left:201.333333pt;}
.x50_c00018{left:205.706667pt;}
.x49_c00018{left:210.666667pt;}
.x6_c00018{left:212.373333pt;}
.x3c_c00018{left:215.626667pt;}
.x51_c00018{left:221.333333pt;}
.x7_c00018{left:226.666667pt;}
.x16_c00018{left:236.760000pt;}
.x23_c00018{left:239.040000pt;}
.x3d_c00018{left:245.906667pt;}
.x17_c00018{left:249.333333pt;}
.x58_c00018{left:252.000000pt;}
.x24_c00018{left:253.333333pt;}
.x52_c00018{left:256.000000pt;}
.x30_c00018{left:262.093333pt;}
.x4a_c00018{left:268.000000pt;}
.x8_c00018{left:277.333333pt;}
.x31_c00018{left:279.240000pt;}
.x3e_c00018{left:282.093333pt;}
.x4b_c00018{left:290.666667pt;}
.x3f_c00018{left:300.373333pt;}
.x25_c00018{left:311.626667pt;}
.x18_c00018{left:314.293333pt;}
.x32_c00018{left:323.626667pt;}
.x9_c00018{left:325.333333pt;}
.x59_c00018{left:330.666667pt;}
.x4c_c00018{left:332.000000pt;}
.x53_c00018{left:344.960000pt;}
.x1_c00018{left:346.666667pt;}
.xa_c00018{left:347.626667pt;}
.x19_c00018{left:351.040000pt;}
.x4d_c00018{left:353.333333pt;}
.x5a_c00018{left:357.333333pt;}
.x1a_c00018{left:366.666667pt;}
.x26_c00018{left:367.626667pt;}
.x40_c00018{left:369.333333pt;}
.x33_c00018{left:378.666667pt;}
.xb_c00018{left:383.040000pt;}
.x41_c00018{left:393.333333pt;}
.x5b_c00018{left:402.293333pt;}
.xc_c00018{left:408.373333pt;}
.x27_c00018{left:418.293333pt;}
.x5c_c00018{left:420.000000pt;}
.x1b_c00018{left:427.626667pt;}
.x54_c00018{left:431.626667pt;}
.x42_c00018{left:433.333333pt;}
.x5d_c00018{left:442.293333pt;}
.xd_c00018{left:445.333333pt;}
.x4e_c00018{left:450.293333pt;}
.x34_c00018{left:451.240000pt;}
.x28_c00018{left:458.666667pt;}
.x43_c00018{left:464.000000pt;}
.x1c_c00018{left:465.706667pt;}
.x29_c00018{left:472.000000pt;}
.x5e_c00018{left:477.333333pt;}
.x1d_c00018{left:480.960000pt;}
.x44_c00018{left:484.000000pt;}
.x35_c00018{left:487.426667pt;}
.x55_c00018{left:502.666667pt;}
.x36_c00018{left:505.333333pt;}
.xe_c00018{left:506.666667pt;}
.x2a_c00018{left:518.293333pt;}
.x45_c00018{left:520.960000pt;}
.xf_c00018{left:522.666667pt;}
.x56_c00018{left:528.000000pt;}
.x10_c00018{left:544.000000pt;}
.x1e_c00018{left:551.240000pt;}
.x2b_c00018{left:555.626667pt;}
.x37_c00018{left:559.626667pt;}
.x57_c00018{left:565.333333pt;}
.x2c_c00018{left:570.666667pt;}
.x46_c00018{left:572.000000pt;}
.x11_c00018{left:574.666667pt;}
.x47_c00018{left:583.626667pt;}
.x1f_c00018{left:588.373333pt;}
.x12_c00018{left:590.666667pt;}
.x38_c00018{left:595.426667pt;}
.x20_c00018{left:603.626667pt;}
.x39_c00018{left:612.000000pt;}
.x2_c00018{left:616.000000pt;}
.x2d_c00018{left:620.000000pt;}
.x13_c00018{left:633.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7def4676d4f886f7b7d97f52.woff2')format("woff");}.ff1_c00019{font-family:ff1_c00019;line-height:1.688965;font-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_c00019{transform:matrix(0.280252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280252,0.000000,0.000000,0.250000,0,0);}
.ma0_c00019{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.meb_c00019{transform:matrix(0.363497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363497,0.000000,0.000000,0.250000,0,0);}
.m31_c00019{transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);}
.m52_c00019{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m96_c00019{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mea_c00019{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m94_c00019{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.me4_c00019{transform:matrix(0.376050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376050,0.000000,0.000000,0.250000,0,0);}
.mbf_c00019{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.mae_c00019{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.m2e_c00019{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.mca_c00019{transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);}
.maa_c00019{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.me7_c00019{transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);}
.m78_c00019{transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);}
.m7a_c00019{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.mc5_c00019{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m8d_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);}
.mde_c00019{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m19_c00019{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.md4_c00019{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.mb_c00019{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.mb4_c00019{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m77_c00019{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.ma5_c00019{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m3c_c00019{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.ma1_c00019{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m89_c00019{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m9c_c00019{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.m2b_c00019{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m73_c00019{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m95_c00019{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.mc3_c00019{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m9_c00019{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mda_c00019{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.md_c00019{transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);}
.mb6_c00019{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m3e_c00019{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.mdc_c00019{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m2c_c00019{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m3_c00019{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.md9_c00019{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m58_c00019{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mbc_c00019{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m33_c00019{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m49_c00019{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m45_c00019{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.me3_c00019{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.ma_c00019{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m9b_c00019{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m47_c00019{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.md1_c00019{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.mc_c00019{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m3b_c00019{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m13_c00019{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m9f_c00019{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.maf_c00019{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.mba_c00019{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m32_c00019{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m34_c00019{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.me1_c00019{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m14_c00019{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.ma2_c00019{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.m7e_c00019{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m12_c00019{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m1b_c00019{transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);}
.m43_c00019{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.me6_c00019{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m9e_c00019{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m66_c00019{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.ma3_c00019{transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);}
.m3a_c00019{transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);}
.mb9_c00019{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.me9_c00019{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.mcf_c00019{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m75_c00019{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mad_c00019{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m71_c00019{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.ma6_c00019{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.m5c_c00019{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.ma9_c00019{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m5e_c00019{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.ma4_c00019{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.m44_c00019{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m6_c00019{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mdb_c00019{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.mb3_c00019{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m38_c00019{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m22_c00019{transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);}
.m17_c00019{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.mcd_c00019{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m4a_c00019{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.md0_c00019{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m9a_c00019{transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);}
.m4b_c00019{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.mf_c00019{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m11_c00019{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m41_c00019{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.md2_c00019{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.mc6_c00019{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.mdf_c00019{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m10_c00019{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);}
.ma8_c00019{transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);}
.m4f_c00019{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m69_c00019{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mc0_c00019{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.md7_c00019{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m82_c00019{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m80_c00019{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m46_c00019{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m28_c00019{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m23_c00019{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m30_c00019{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.me8_c00019{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.me0_c00019{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.md6_c00019{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.me2_c00019{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.m90_c00019{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.md3_c00019{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m61_c00019{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m15_c00019{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mbb_c00019{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m2d_c00019{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mc1_c00019{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m99_c00019{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m8f_c00019{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.ma7_c00019{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mcc_c00019{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m4_c00019{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m8c_c00019{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mc9_c00019{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m76_c00019{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m7_c00019{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m54_c00019{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m1c_c00019{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m1f_c00019{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mc7_c00019{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m4c_c00019{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m24_c00019{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m9d_c00019{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m81_c00019{transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);}
.mce_c00019{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m48_c00019{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m60_c00019{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m7d_c00019{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m2_c00019{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m42_c00019{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mac_c00019{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m97_c00019{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m6b_c00019{transform:matrix(0.546474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546474,0.000000,0.000000,0.250000,0,0);}
.mbe_c00019{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m68_c00019{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m2a_c00019{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m20_c00019{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m5_c00019{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m36_c00019{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m87_c00019{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m92_c00019{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.mb2_c00019{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.md5_c00019{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m67_c00019{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m7b_c00019{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m29_c00019{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mab_c00019{transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);}
.m3d_c00019{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m37_c00019{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m26_c00019{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m4e_c00019{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m74_c00019{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m40_c00019{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m88_c00019{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mbd_c00019{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.m64_c00019{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.mc2_c00019{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m8b_c00019{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m51_c00019{transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);}
.m18_c00019{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m35_c00019{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m8_c00019{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m1e_c00019{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m8e_c00019{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.mb5_c00019{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m63_c00019{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m39_c00019{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.mdd_c00019{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m86_c00019{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mb0_c00019{transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);}
.m72_c00019{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m84_c00019{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.mc4_c00019{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m53_c00019{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m5b_c00019{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m55_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);}
.m7c_c00019{transform:matrix(0.608921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608921,0.000000,0.000000,0.250000,0,0);}
.m6e_c00019{transform:matrix(0.608974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608974,0.000000,0.000000,0.250000,0,0);}
.mc8_c00019{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.me_c00019{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m3f_c00019{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m70_c00019{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.md8_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);}
.m7f_c00019{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m93_c00019{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m62_c00019{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m85_c00019{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m6f_c00019{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m59_c00019{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m0_c00019{transform:matrix(0.665064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665064,0.000000,0.000000,0.250000,0,0);}
.m50_c00019{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m25_c00019{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m6c_c00019{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m6a_c00019{transform:matrix(0.683494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683494,0.000000,0.000000,0.250000,0,0);}
.m6d_c00019{transform:matrix(0.689103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689103,0.000000,0.000000,0.250000,0,0);}
.m2f_c00019{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m4d_c00019{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m56_c00019{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.m8a_c00019{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m83_c00019{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.me5_c00019{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m1_c00019{transform:matrix(0.722794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722794,0.000000,0.000000,0.250000,0,0);}
.mcb_c00019{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m5f_c00019{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mb1_c00019{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m21_c00019{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m57_c00019{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m5d_c00019{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.m65_c00019{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m1d_c00019{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m98_c00019{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m1a_c00019{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m5a_c00019{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m79_c00019{transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);}
.mb8_c00019{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mb7_c00019{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m91_c00019{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m16_c00019{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.v0_c00019{vertical-align:0.000000px;}
.v1_c00019{vertical-align:6.000000px;}
.ls0_c00019{letter-spacing:0.000000px;}
.sc__c00019{text-shadow:none;}
.sc0_c00019{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00019{-webkit-text-stroke:0px transparent;}
.sc0_c00019{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00019{word-spacing:0.000000px;}
.ws0_c00019{word-spacing:9.650052px;}
.fc0_c00019{color:transparent;}
.fs6_c00019{font-size:11.880000px;}
.fs0_c00019{font-size:18.720000px;}
.fs1_c00019{font-size:20.400000px;}
.fs5_c00019{font-size:25.500000px;}
.fs2_c00019{font-size:28.920000px;}
.fs4_c00019{font-size:32.340000px;}
.fs3_c00019{font-size:35.700000px;}
.fs7_c00019{font-size:39.120000px;}
.y0_c00019{bottom:0.000000px;}
.yc6_c00019{bottom:253.245000px;}
.yc8_c00019{bottom:253.680000px;}
.yc5_c00019{bottom:254.745000px;}
.yc4_c00019{bottom:255.405000px;}
.yc7_c00019{bottom:256.905000px;}
.yc9_c00019{bottom:257.130000px;}
.yca_c00019{bottom:258.405000px;}
.yc3_c00019{bottom:273.405000px;}
.yc0_c00019{bottom:275.325000px;}
.ybf_c00019{bottom:276.405000px;}
.yc1_c00019{bottom:276.630000px;}
.yc2_c00019{bottom:277.470000px;}
.ybe_c00019{bottom:293.745000px;}
.yb7_c00019{bottom:294.630000px;}
.yb9_c00019{bottom:294.825000px;}
.ybc_c00019{bottom:295.245000px;}
.yb8_c00019{bottom:295.905000px;}
.yba_c00019{bottom:296.130000px;}
.ybd_c00019{bottom:296.970000px;}
.ybb_c00019{bottom:297.405000px;}
.yb3_c00019{bottom:314.325000px;}
.yb6_c00019{bottom:314.745000px;}
.yb4_c00019{bottom:315.405000px;}
.yb5_c00019{bottom:316.905000px;}
.yaf_c00019{bottom:332.745000px;}
.yb0_c00019{bottom:334.245000px;}
.yae_c00019{bottom:334.905000px;}
.yad_c00019{bottom:335.130000px;}
.yb2_c00019{bottom:335.325000px;}
.yb1_c00019{bottom:336.405000px;}
.yab_c00019{bottom:353.745000px;}
.ya8_c00019{bottom:354.405000px;}
.yaa_c00019{bottom:354.630000px;}
.ya9_c00019{bottom:355.905000px;}
.yac_c00019{bottom:356.970000px;}
.ya6_c00019{bottom:371.745000px;}
.ya5_c00019{bottom:372.825000px;}
.ya4_c00019{bottom:373.245000px;}
.ya7_c00019{bottom:374.130000px;}
.ya3_c00019{bottom:375.405000px;}
.ya2_c00019{bottom:391.905000px;}
.ya1_c00019{bottom:392.745000px;}
.ya0_c00019{bottom:394.905000px;}
.y9f_c00019{bottom:412.245000px;}
.y9d_c00019{bottom:414.405000px;}
.y9e_c00019{bottom:414.630000px;}
.y9a_c00019{bottom:431.745000px;}
.y9c_c00019{bottom:433.245000px;}
.y97_c00019{bottom:433.905000px;}
.y98_c00019{bottom:434.130000px;}
.y9b_c00019{bottom:434.325000px;}
.y99_c00019{bottom:435.405000px;}
.y93_c00019{bottom:453.405000px;}
.y95_c00019{bottom:453.630000px;}
.y96_c00019{bottom:453.825000px;}
.y92_c00019{bottom:454.470000px;}
.y94_c00019{bottom:454.905000px;}
.y8f_c00019{bottom:470.745000px;}
.y90_c00019{bottom:472.245000px;}
.y8c_c00019{bottom:472.905000px;}
.y91_c00019{bottom:473.130000px;}
.y8e_c00019{bottom:473.970000px;}
.y8d_c00019{bottom:474.405000px;}
.y8a_c00019{bottom:489.405000px;}
.y89_c00019{bottom:491.745000px;}
.y8b_c00019{bottom:492.630000px;}
.y88_c00019{bottom:493.905000px;}
.y87_c00019{bottom:510.405000px;}
.y85_c00019{bottom:511.245000px;}
.y84_c00019{bottom:513.405000px;}
.y86_c00019{bottom:514.470000px;}
.y81_c00019{bottom:530.745000px;}
.y83_c00019{bottom:532.245000px;}
.y80_c00019{bottom:532.905000px;}
.y82_c00019{bottom:534.405000px;}
.y7f_c00019{bottom:549.405000px;}
.y7a_c00019{bottom:550.245000px;}
.y7e_c00019{bottom:551.325000px;}
.y7d_c00019{bottom:551.745000px;}
.y7b_c00019{bottom:552.405000px;}
.y7c_c00019{bottom:552.630000px;}
.y77_c00019{bottom:569.745000px;}
.y76_c00019{bottom:570.825000px;}
.y74_c00019{bottom:571.905000px;}
.y79_c00019{bottom:572.130000px;}
.y75_c00019{bottom:572.970000px;}
.y78_c00019{bottom:573.405000px;}
.y6f_c00019{bottom:588.405000px;}
.y6d_c00019{bottom:589.245000px;}
.y72_c00019{bottom:589.470000px;}
.y70_c00019{bottom:590.325000px;}
.y71_c00019{bottom:590.745000px;}
.y6e_c00019{bottom:591.825000px;}
.y73_c00019{bottom:592.905000px;}
.y69_c00019{bottom:608.745000px;}
.y6b_c00019{bottom:609.825000px;}
.y68_c00019{bottom:610.245000px;}
.y6a_c00019{bottom:611.325000px;}
.y6c_c00019{bottom:612.405000px;}
.y64_c00019{bottom:628.245000px;}
.y65_c00019{bottom:629.745000px;}
.y67_c00019{bottom:630.630000px;}
.y63_c00019{bottom:631.905000px;}
.y66_c00019{bottom:632.130000px;}
.y62_c00019{bottom:646.905000px;}
.y61_c00019{bottom:649.245000px;}
.y60_c00019{bottom:650.325000px;}
.y5f_c00019{bottom:650.970000px;}
.y5e_c00019{bottom:651.405000px;}
.y5d_c00019{bottom:667.905000px;}
.y5b_c00019{bottom:668.745000px;}
.y59_c00019{bottom:669.630000px;}
.y58_c00019{bottom:670.905000px;}
.y5c_c00019{bottom:671.130000px;}
.y5a_c00019{bottom:671.970000px;}
.y52_c00019{bottom:687.405000px;}
.y56_c00019{bottom:689.745000px;}
.y53_c00019{bottom:690.405000px;}
.y54_c00019{bottom:690.630000px;}
.y55_c00019{bottom:691.470000px;}
.y57_c00019{bottom:691.905000px;}
.y4d_c00019{bottom:707.970000px;}
.y50_c00019{bottom:709.245000px;}
.y4c_c00019{bottom:709.905000px;}
.y4e_c00019{bottom:710.130000px;}
.y51_c00019{bottom:710.970000px;}
.y4f_c00019{bottom:711.405000px;}
.y4b_c00019{bottom:728.745000px;}
.y47_c00019{bottom:729.405000px;}
.y49_c00019{bottom:729.630000px;}
.y46_c00019{bottom:730.470000px;}
.y48_c00019{bottom:730.905000px;}
.y4a_c00019{bottom:731.970000px;}
.y42_c00019{bottom:746.745000px;}
.y40_c00019{bottom:748.245000px;}
.y41_c00019{bottom:748.905000px;}
.y44_c00019{bottom:749.130000px;}
.y43_c00019{bottom:749.325000px;}
.y3f_c00019{bottom:750.405000px;}
.y45_c00019{bottom:751.470000px;}
.y3c_c00019{bottom:766.905000px;}
.y3b_c00019{bottom:767.745000px;}
.y3d_c00019{bottom:769.470000px;}
.y3a_c00019{bottom:769.905000px;}
.y3e_c00019{bottom:771.405000px;}
.y37_c00019{bottom:798.630000px;}
.y39_c00019{bottom:799.050000px;}
.y36_c00019{bottom:799.905000px;}
.y38_c00019{bottom:800.130000px;}
.y35_c00019{bottom:847.905000px;}
.y34_c00019{bottom:865.245000px;}
.y31_c00019{bottom:867.405000px;}
.y33_c00019{bottom:867.630000px;}
.y32_c00019{bottom:868.470000px;}
.y2e_c00019{bottom:885.825000px;}
.y30_c00019{bottom:886.245000px;}
.y2b_c00019{bottom:886.905000px;}
.y2d_c00019{bottom:887.130000px;}
.y2c_c00019{bottom:887.970000px;}
.y2f_c00019{bottom:888.405000px;}
.y2a_c00019{bottom:904.245000px;}
.y26_c00019{bottom:905.745000px;}
.y25_c00019{bottom:906.405000px;}
.y29_c00019{bottom:906.630000px;}
.y28_c00019{bottom:907.470000px;}
.y27_c00019{bottom:907.905000px;}
.y1f_c00019{bottom:922.905000px;}
.y22_c00019{bottom:925.245000px;}
.y23_c00019{bottom:926.130000px;}
.y21_c00019{bottom:926.970000px;}
.y20_c00019{bottom:927.405000px;}
.y24_c00019{bottom:928.470000px;}
.y1d_c00019{bottom:944.325000px;}
.y1e_c00019{bottom:944.745000px;}
.y1c_c00019{bottom:946.905000px;}
.y1a_c00019{bottom:962.970000px;}
.y1b_c00019{bottom:964.245000px;}
.y18_c00019{bottom:965.970000px;}
.y19_c00019{bottom:966.405000px;}
.y16_c00019{bottom:982.905000px;}
.y15_c00019{bottom:983.745000px;}
.y14_c00019{bottom:985.905000px;}
.y17_c00019{bottom:991.275000px;}
.y10_c00019{bottom:1003.245000px;}
.yf_c00019{bottom:1004.130000px;}
.y12_c00019{bottom:1004.325000px;}
.y13_c00019{bottom:1004.970000px;}
.ye_c00019{bottom:1005.405000px;}
.y11_c00019{bottom:1005.630000px;}
.yc_c00019{bottom:1021.470000px;}
.y9_c00019{bottom:1022.745000px;}
.ya_c00019{bottom:1024.905000px;}
.yd_c00019{bottom:1025.130000px;}
.yb_c00019{bottom:1025.970000px;}
.y6_c00019{bottom:1042.245000px;}
.y5_c00019{bottom:1043.325000px;}
.y8_c00019{bottom:1044.405000px;}
.y7_c00019{bottom:1045.470000px;}
.y4_c00019{bottom:1061.745000px;}
.y3_c00019{bottom:1063.905000px;}
.y2_c00019{bottom:1102.050000px;}
.y1_c00019{bottom:1103.130000px;}
.h7_c00019{height:14.612168px;}
.h1_c00019{height:23.025234px;}
.h2_c00019{height:25.091602px;}
.h6_c00019{height:31.364502px;}
.h3_c00019{height:35.571035px;}
.h5_c00019{height:39.777568px;}
.h4_c00019{height:43.910303px;}
.h9_c00019{height:48.116836px;}
.h8_c00019{height:49.910303px;}
.h0_c00019{height:1335.000000px;}
.w0_c00019{width:880.500000px;}
.x0_c00019{left:0.000000px;}
.xcb_c00019{left:151.500000px;}
.x2_c00019{left:153.000000px;}
.xe7_c00019{left:168.000000px;}
.x84_c00019{left:169.500000px;}
.xdf_c00019{left:172.080000px;}
.x9c_c00019{left:174.420000px;}
.x54_c00019{left:175.920000px;}
.x5e_c00019{left:180.000000px;}
.x3f_c00019{left:181.080000px;}
.xa7_c00019{left:183.000000px;}
.x95_c00019{left:184.500000px;}
.x17_c00019{left:185.580000px;}
.xe8_c00019{left:189.420000px;}
.xff_c00019{left:191.580000px;}
.x25_c00019{left:198.000000px;}
.xd0_c00019{left:199.500000px;}
.xe3_c00019{left:201.000000px;}
.x9d_c00019{left:202.080000px;}
.x3_c00019{left:205.500000px;}
.x85_c00019{left:211.920000px;}
.xf5_c00019{left:213.000000px;}
.xae_c00019{left:214.500000px;}
.xb5_c00019{left:215.580000px;}
.x40_c00019{left:217.080000px;}
.x73_c00019{left:219.000000px;}
.x55_c00019{left:220.500000px;}
.x26_c00019{left:223.920000px;}
.xcc_c00019{left:225.000000px;}
.xd1_c00019{left:229.080000px;}
.x5f_c00019{left:231.000000px;}
.x18_c00019{left:234.000000px;}
.x69_c00019{left:237.420000px;}
.xd_c00019{left:238.500000px;}
.x4b_c00019{left:240.420000px;}
.x9e_c00019{left:243.000000px;}
.xcd_c00019{left:246.000000px;}
.xda_c00019{left:249.000000px;}
.x19_c00019{left:250.500000px;}
.x35_c00019{left:252.000000px;}
.xe9_c00019{left:255.000000px;}
.xef_c00019{left:258.000000px;}
.x96_c00019{left:259.500000px;}
.x7d_c00019{left:262.920000px;}
.xc7_c00019{left:264.000000px;}
.x74_c00019{left:265.500000px;}
.x41_c00019{left:268.080000px;}
.x6a_c00019{left:271.500000px;}
.x4_c00019{left:273.420000px;}
.x102_c00019{left:277.500000px;}
.x4c_c00019{left:279.420000px;}
.xa8_c00019{left:282.420000px;}
.xbb_c00019{left:283.920000px;}
.xc8_c00019{left:288.420000px;}
.x9f_c00019{left:289.500000px;}
.x8f_c00019{left:291.420000px;}
.x56_c00019{left:292.500000px;}
.xfa_c00019{left:293.580000px;}
.x5_c00019{left:298.920000px;}
.x27_c00019{left:301.920000px;}
.xd5_c00019{left:304.080000px;}
.x1a_c00019{left:306.420000px;}
.x4d_c00019{left:307.500000px;}
.x42_c00019{left:309.000000px;}
.x36_c00019{left:310.080000px;}
.x86_c00019{left:312.000000px;}
.xfb_c00019{left:313.500000px;}
.xaf_c00019{left:315.000000px;}
.xa9_c00019{left:316.080000px;}
.x75_c00019{left:320.580000px;}
.x7e_c00019{left:322.500000px;}
.x57_c00019{left:324.000000px;}
.x43_c00019{left:325.500000px;}
.x28_c00019{left:326.580000px;}
.xf0_c00019{left:330.000000px;}
.x6_c00019{left:331.500000px;}
.x87_c00019{left:333.420000px;}
.x1b_c00019{left:334.500000px;}
.x97_c00019{left:336.000000px;}
.xb0_c00019{left:338.580000px;}
.xe0_c00019{left:340.500000px;}
.x6b_c00019{left:342.420000px;}
.xa0_c00019{left:343.920000px;}
.xd2_c00019{left:345.000000px;}
.xe4_c00019{left:348.000000px;}
.x60_c00019{left:351.000000px;}
.x7f_c00019{left:352.080000px;}
.x7_c00019{left:354.000000px;}
.x58_c00019{left:355.500000px;}
.x44_c00019{left:356.580000px;}
.x37_c00019{left:359.580000px;}
.x4e_c00019{left:363.000000px;}
.x1c_c00019{left:364.920000px;}
.xf1_c00019{left:367.500000px;}
.xea_c00019{left:369.000000px;}
.x88_c00019{left:370.080000px;}
.x29_c00019{left:372.420000px;}
.x6c_c00019{left:375.000000px;}
.xb1_c00019{left:376.080000px;}
.xbc_c00019{left:378.420000px;}
.x76_c00019{left:379.500000px;}
.x103_c00019{left:381.000000px;}
.x59_c00019{left:382.500000px;}
.xe1_c00019{left:384.420000px;}
.x89_c00019{left:390.420000px;}
.x6d_c00019{left:391.920000px;}
.x1_c00019{left:393.000000px;}
.x8_c00019{left:396.420000px;}
.x2a_c00019{left:397.500000px;}
.xdb_c00019{left:398.580000px;}
.x80_c00019{left:400.920000px;}
.xfc_c00019{left:405.420000px;}
.xa1_c00019{left:409.920000px;}
.xe_c00019{left:411.000000px;}
.xe5_c00019{left:414.000000px;}
.xbd_c00019{left:415.500000px;}
.x8a_c00019{left:417.000000px;}
.xc9_c00019{left:418.500000px;}
.x81_c00019{left:421.500000px;}
.x38_c00019{left:422.580000px;}
.x61_c00019{left:424.920000px;}
.x6e_c00019{left:426.000000px;}
.x1d_c00019{left:427.080000px;}
.xc0_c00019{left:429.000000px;}
.x45_c00019{left:430.500000px;}
.x9_c00019{left:432.420000px;}
.xb6_c00019{left:438.420000px;}
.xf_c00019{left:439.500000px;}
.x2b_c00019{left:441.420000px;}
.x5a_c00019{left:442.920000px;}
.x90_c00019{left:444.000000px;}
.x1e_c00019{left:445.080000px;}
.xd3_c00019{left:447.000000px;}
.xa2_c00019{left:448.920000px;}
.x82_c00019{left:453.000000px;}
.x6f_c00019{left:454.500000px;}
.x62_c00019{left:456.000000px;}
.xf2_c00019{left:457.500000px;}
.xeb_c00019{left:458.580000px;}
.xf6_c00019{left:463.500000px;}
.x101_c00019{left:465.000000px;}
.x98_c00019{left:467.580000px;}
.x2c_c00019{left:469.080000px;}
.xa_c00019{left:471.000000px;}
.xb7_c00019{left:474.000000px;}
.xec_c00019{left:478.920000px;}
.x46_c00019{left:480.000000px;}
.x1f_c00019{left:481.500000px;}
.x39_c00019{left:484.080000px;}
.x8b_c00019{left:487.920000px;}
.x63_c00019{left:490.500000px;}
.x10_c00019{left:492.000000px;}
.x3a_c00019{left:493.500000px;}
.xd6_c00019{left:495.420000px;}
.x70_c00019{left:496.500000px;}
.xc3_c00019{left:498.000000px;}
.x2d_c00019{left:501.420000px;}
.x64_c00019{left:502.500000px;}
.x3b_c00019{left:503.580000px;}
.xb_c00019{left:508.080000px;}
.xc1_c00019{left:510.420000px;}
.x20_c00019{left:514.500000px;}
.xaa_c00019{left:516.000000px;}
.x4f_c00019{left:517.920000px;}
.x77_c00019{left:519.000000px;}
.xbe_c00019{left:522.000000px;}
.xf3_c00019{left:523.500000px;}
.xe6_c00019{left:524.580000px;}
.x100_c00019{left:526.275000px;}
.x2e_c00019{left:528.420000px;}
.xf7_c00019{left:529.500000px;}
.x11_c00019{left:530.580000px;}
.xb2_c00019{left:532.920000px;}
.xed_c00019{left:534.000000px;}
.x3c_c00019{left:535.080000px;}
.xa3_c00019{left:537.000000px;}
.x83_c00019{left:538.080000px;}
.xdc_c00019{left:540.000000px;}
.xc4_c00019{left:541.080000px;}
.x71_c00019{left:543.000000px;}
.xb3_c00019{left:546.000000px;}
.xf8_c00019{left:547.500000px;}
.x8c_c00019{left:548.580000px;}
.x12_c00019{left:550.080000px;}
.x3d_c00019{left:553.080000px;}
.x21_c00019{left:558.000000px;}
.x50_c00019{left:559.500000px;}
.x2f_c00019{left:561.000000px;}
.x91_c00019{left:562.500000px;}
.x5b_c00019{left:564.000000px;}
.xd7_c00019{left:565.500000px;}
.xab_c00019{left:567.000000px;}
.xf4_c00019{left:570.000000px;}
.xc5_c00019{left:572.580000px;}
.xfd_c00019{left:574.080000px;}
.xd4_c00019{left:576.000000px;}
.x78_c00019{left:579.000000px;}
.x3e_c00019{left:580.500000px;}
.x65_c00019{left:582.000000px;}
.x22_c00019{left:585.000000px;}
.xb8_c00019{left:586.920000px;}
.x13_c00019{left:588.000000px;}
.xc2_c00019{left:589.500000px;}
.x30_c00019{left:591.000000px;}
.x47_c00019{left:592.500000px;}
.x8d_c00019{left:595.500000px;}
.x79_c00019{left:596.580000px;}
.xca_c00019{left:599.580000px;}
.xb4_c00019{left:602.580000px;}
.x5c_c00019{left:604.500000px;}
.x66_c00019{left:609.420000px;}
.x92_c00019{left:610.920000px;}
.xf9_c00019{left:612.000000px;}
.xb9_c00019{left:613.080000px;}
.xce_c00019{left:616.500000px;}
.x7a_c00019{left:618.000000px;}
.xa4_c00019{left:619.500000px;}
.x14_c00019{left:621.855000px;}
.x99_c00019{left:622.920000px;}
.x23_c00019{left:625.920000px;}
.x51_c00019{left:627.420000px;}
.x31_c00019{left:632.580000px;}
.x67_c00019{left:635.580000px;}
.xa5_c00019{left:637.500000px;}
.xac_c00019{left:640.080000px;}
.xc_c00019{left:646.500000px;}
.x93_c00019{left:649.080000px;}
.xdd_c00019{left:651.000000px;}
.x32_c00019{left:652.080000px;}
.xa6_c00019{left:655.920000px;}
.xd8_c00019{left:657.000000px;}
.xfe_c00019{left:658.920000px;}
.x8e_c00019{left:660.000000px;}
.xad_c00019{left:661.080000px;}
.xe2_c00019{left:663.000000px;}
.x48_c00019{left:664.500000px;}
.x9a_c00019{left:667.080000px;}
.x94_c00019{left:669.000000px;}
.x72_c00019{left:672.000000px;}
.x68_c00019{left:673.920000px;}
.x15_c00019{left:675.420000px;}
.x52_c00019{left:678.420000px;}
.xbf_c00019{left:679.500000px;}
.xee_c00019{left:681.420000px;}
.xd9_c00019{left:682.500000px;}
.x49_c00019{left:684.420000px;}
.xde_c00019{left:685.500000px;}
.x104_c00019{left:687.420000px;}
.x7b_c00019{left:688.500000px;}
.xba_c00019{left:689.580000px;}
.xc6_c00019{left:691.920000px;}
.x33_c00019{left:697.500000px;}
.x9b_c00019{left:699.420000px;}
.x16_c00019{left:703.920000px;}
.x24_c00019{left:705.000000px;}
.x53_c00019{left:706.500000px;}
.xcf_c00019{left:708.420000px;}
.x7c_c00019{left:709.920000px;}
.x4a_c00019{left:712.500000px;}
.x34_c00019{left:715.500000px;}
.x5d_c00019{left:716.580000px;}
@media print{
.v0_c00019{vertical-align:0.000000pt;}
.v1_c00019{vertical-align:5.333333pt;}
.ls0_c00019{letter-spacing:0.000000pt;}
.ws1_c00019{word-spacing:0.000000pt;}
.ws0_c00019{word-spacing:8.577824pt;}
.fs6_c00019{font-size:10.560000pt;}
.fs0_c00019{font-size:16.640000pt;}
.fs1_c00019{font-size:18.133333pt;}
.fs5_c00019{font-size:22.666667pt;}
.fs2_c00019{font-size:25.706667pt;}
.fs4_c00019{font-size:28.746667pt;}
.fs3_c00019{font-size:31.733333pt;}
.fs7_c00019{font-size:34.773333pt;}
.y0_c00019{bottom:0.000000pt;}
.yc6_c00019{bottom:225.106667pt;}
.yc8_c00019{bottom:225.493333pt;}
.yc5_c00019{bottom:226.440000pt;}
.yc4_c00019{bottom:227.026667pt;}
.yc7_c00019{bottom:228.360000pt;}
.yc9_c00019{bottom:228.560000pt;}
.yca_c00019{bottom:229.693333pt;}
.yc3_c00019{bottom:243.026667pt;}
.yc0_c00019{bottom:244.733333pt;}
.ybf_c00019{bottom:245.693333pt;}
.yc1_c00019{bottom:245.893333pt;}
.yc2_c00019{bottom:246.640000pt;}
.ybe_c00019{bottom:261.106667pt;}
.yb7_c00019{bottom:261.893333pt;}
.yb9_c00019{bottom:262.066667pt;}
.ybc_c00019{bottom:262.440000pt;}
.yb8_c00019{bottom:263.026667pt;}
.yba_c00019{bottom:263.226667pt;}
.ybd_c00019{bottom:263.973333pt;}
.ybb_c00019{bottom:264.360000pt;}
.yb3_c00019{bottom:279.400000pt;}
.yb6_c00019{bottom:279.773333pt;}
.yb4_c00019{bottom:280.360000pt;}
.yb5_c00019{bottom:281.693333pt;}
.yaf_c00019{bottom:295.773333pt;}
.yb0_c00019{bottom:297.106667pt;}
.yae_c00019{bottom:297.693333pt;}
.yad_c00019{bottom:297.893333pt;}
.yb2_c00019{bottom:298.066667pt;}
.yb1_c00019{bottom:299.026667pt;}
.yab_c00019{bottom:314.440000pt;}
.ya8_c00019{bottom:315.026667pt;}
.yaa_c00019{bottom:315.226667pt;}
.ya9_c00019{bottom:316.360000pt;}
.yac_c00019{bottom:317.306667pt;}
.ya6_c00019{bottom:330.440000pt;}
.ya5_c00019{bottom:331.400000pt;}
.ya4_c00019{bottom:331.773333pt;}
.ya7_c00019{bottom:332.560000pt;}
.ya3_c00019{bottom:333.693333pt;}
.ya2_c00019{bottom:348.360000pt;}
.ya1_c00019{bottom:349.106667pt;}
.ya0_c00019{bottom:351.026667pt;}
.y9f_c00019{bottom:366.440000pt;}
.y9d_c00019{bottom:368.360000pt;}
.y9e_c00019{bottom:368.560000pt;}
.y9a_c00019{bottom:383.773333pt;}
.y9c_c00019{bottom:385.106667pt;}
.y97_c00019{bottom:385.693333pt;}
.y98_c00019{bottom:385.893333pt;}
.y9b_c00019{bottom:386.066667pt;}
.y99_c00019{bottom:387.026667pt;}
.y93_c00019{bottom:403.026667pt;}
.y95_c00019{bottom:403.226667pt;}
.y96_c00019{bottom:403.400000pt;}
.y92_c00019{bottom:403.973333pt;}
.y94_c00019{bottom:404.360000pt;}
.y8f_c00019{bottom:418.440000pt;}
.y90_c00019{bottom:419.773333pt;}
.y8c_c00019{bottom:420.360000pt;}
.y91_c00019{bottom:420.560000pt;}
.y8e_c00019{bottom:421.306667pt;}
.y8d_c00019{bottom:421.693333pt;}
.y8a_c00019{bottom:435.026667pt;}
.y89_c00019{bottom:437.106667pt;}
.y8b_c00019{bottom:437.893333pt;}
.y88_c00019{bottom:439.026667pt;}
.y87_c00019{bottom:453.693333pt;}
.y85_c00019{bottom:454.440000pt;}
.y84_c00019{bottom:456.360000pt;}
.y86_c00019{bottom:457.306667pt;}
.y81_c00019{bottom:471.773333pt;}
.y83_c00019{bottom:473.106667pt;}
.y80_c00019{bottom:473.693333pt;}
.y82_c00019{bottom:475.026667pt;}
.y7f_c00019{bottom:488.360000pt;}
.y7a_c00019{bottom:489.106667pt;}
.y7e_c00019{bottom:490.066667pt;}
.y7d_c00019{bottom:490.440000pt;}
.y7b_c00019{bottom:491.026667pt;}
.y7c_c00019{bottom:491.226667pt;}
.y77_c00019{bottom:506.440000pt;}
.y76_c00019{bottom:507.400000pt;}
.y74_c00019{bottom:508.360000pt;}
.y79_c00019{bottom:508.560000pt;}
.y75_c00019{bottom:509.306667pt;}
.y78_c00019{bottom:509.693333pt;}
.y6f_c00019{bottom:523.026667pt;}
.y6d_c00019{bottom:523.773333pt;}
.y72_c00019{bottom:523.973333pt;}
.y70_c00019{bottom:524.733333pt;}
.y71_c00019{bottom:525.106667pt;}
.y6e_c00019{bottom:526.066667pt;}
.y73_c00019{bottom:527.026667pt;}
.y69_c00019{bottom:541.106667pt;}
.y6b_c00019{bottom:542.066667pt;}
.y68_c00019{bottom:542.440000pt;}
.y6a_c00019{bottom:543.400000pt;}
.y6c_c00019{bottom:544.360000pt;}
.y64_c00019{bottom:558.440000pt;}
.y65_c00019{bottom:559.773333pt;}
.y67_c00019{bottom:560.560000pt;}
.y63_c00019{bottom:561.693333pt;}
.y66_c00019{bottom:561.893333pt;}
.y62_c00019{bottom:575.026667pt;}
.y61_c00019{bottom:577.106667pt;}
.y60_c00019{bottom:578.066667pt;}
.y5f_c00019{bottom:578.640000pt;}
.y5e_c00019{bottom:579.026667pt;}
.y5d_c00019{bottom:593.693333pt;}
.y5b_c00019{bottom:594.440000pt;}
.y59_c00019{bottom:595.226667pt;}
.y58_c00019{bottom:596.360000pt;}
.y5c_c00019{bottom:596.560000pt;}
.y5a_c00019{bottom:597.306667pt;}
.y52_c00019{bottom:611.026667pt;}
.y56_c00019{bottom:613.106667pt;}
.y53_c00019{bottom:613.693333pt;}
.y54_c00019{bottom:613.893333pt;}
.y55_c00019{bottom:614.640000pt;}
.y57_c00019{bottom:615.026667pt;}
.y4d_c00019{bottom:629.306667pt;}
.y50_c00019{bottom:630.440000pt;}
.y4c_c00019{bottom:631.026667pt;}
.y4e_c00019{bottom:631.226667pt;}
.y51_c00019{bottom:631.973333pt;}
.y4f_c00019{bottom:632.360000pt;}
.y4b_c00019{bottom:647.773333pt;}
.y47_c00019{bottom:648.360000pt;}
.y49_c00019{bottom:648.560000pt;}
.y46_c00019{bottom:649.306667pt;}
.y48_c00019{bottom:649.693333pt;}
.y4a_c00019{bottom:650.640000pt;}
.y42_c00019{bottom:663.773333pt;}
.y40_c00019{bottom:665.106667pt;}
.y41_c00019{bottom:665.693333pt;}
.y44_c00019{bottom:665.893333pt;}
.y43_c00019{bottom:666.066667pt;}
.y3f_c00019{bottom:667.026667pt;}
.y45_c00019{bottom:667.973333pt;}
.y3c_c00019{bottom:681.693333pt;}
.y3b_c00019{bottom:682.440000pt;}
.y3d_c00019{bottom:683.973333pt;}
.y3a_c00019{bottom:684.360000pt;}
.y3e_c00019{bottom:685.693333pt;}
.y37_c00019{bottom:709.893333pt;}
.y39_c00019{bottom:710.266667pt;}
.y36_c00019{bottom:711.026667pt;}
.y38_c00019{bottom:711.226667pt;}
.y35_c00019{bottom:753.693333pt;}
.y34_c00019{bottom:769.106667pt;}
.y31_c00019{bottom:771.026667pt;}
.y33_c00019{bottom:771.226667pt;}
.y32_c00019{bottom:771.973333pt;}
.y2e_c00019{bottom:787.400000pt;}
.y30_c00019{bottom:787.773333pt;}
.y2b_c00019{bottom:788.360000pt;}
.y2d_c00019{bottom:788.560000pt;}
.y2c_c00019{bottom:789.306667pt;}
.y2f_c00019{bottom:789.693333pt;}
.y2a_c00019{bottom:803.773333pt;}
.y26_c00019{bottom:805.106667pt;}
.y25_c00019{bottom:805.693333pt;}
.y29_c00019{bottom:805.893333pt;}
.y28_c00019{bottom:806.640000pt;}
.y27_c00019{bottom:807.026667pt;}
.y1f_c00019{bottom:820.360000pt;}
.y22_c00019{bottom:822.440000pt;}
.y23_c00019{bottom:823.226667pt;}
.y21_c00019{bottom:823.973333pt;}
.y20_c00019{bottom:824.360000pt;}
.y24_c00019{bottom:825.306667pt;}
.y1d_c00019{bottom:839.400000pt;}
.y1e_c00019{bottom:839.773333pt;}
.y1c_c00019{bottom:841.693333pt;}
.y1a_c00019{bottom:855.973333pt;}
.y1b_c00019{bottom:857.106667pt;}
.y18_c00019{bottom:858.640000pt;}
.y19_c00019{bottom:859.026667pt;}
.y16_c00019{bottom:873.693333pt;}
.y15_c00019{bottom:874.440000pt;}
.y14_c00019{bottom:876.360000pt;}
.y17_c00019{bottom:881.133333pt;}
.y10_c00019{bottom:891.773333pt;}
.yf_c00019{bottom:892.560000pt;}
.y12_c00019{bottom:892.733333pt;}
.y13_c00019{bottom:893.306667pt;}
.ye_c00019{bottom:893.693333pt;}
.y11_c00019{bottom:893.893333pt;}
.yc_c00019{bottom:907.973333pt;}
.y9_c00019{bottom:909.106667pt;}
.ya_c00019{bottom:911.026667pt;}
.yd_c00019{bottom:911.226667pt;}
.yb_c00019{bottom:911.973333pt;}
.y6_c00019{bottom:926.440000pt;}
.y5_c00019{bottom:927.400000pt;}
.y8_c00019{bottom:928.360000pt;}
.y7_c00019{bottom:929.306667pt;}
.y4_c00019{bottom:943.773333pt;}
.y3_c00019{bottom:945.693333pt;}
.y2_c00019{bottom:979.600000pt;}
.y1_c00019{bottom:980.560000pt;}
.h7_c00019{height:12.988594pt;}
.h1_c00019{height:20.466875pt;}
.h2_c00019{height:22.303646pt;}
.h6_c00019{height:27.879557pt;}
.h3_c00019{height:31.618698pt;}
.h5_c00019{height:35.357839pt;}
.h4_c00019{height:39.031380pt;}
.h9_c00019{height:42.770521pt;}
.h8_c00019{height:44.364714pt;}
.h0_c00019{height:1186.666667pt;}
.w0_c00019{width:782.666667pt;}
.x0_c00019{left:0.000000pt;}
.xcb_c00019{left:134.666667pt;}
.x2_c00019{left:136.000000pt;}
.xe7_c00019{left:149.333333pt;}
.x84_c00019{left:150.666667pt;}
.xdf_c00019{left:152.960000pt;}
.x9c_c00019{left:155.040000pt;}
.x54_c00019{left:156.373333pt;}
.x5e_c00019{left:160.000000pt;}
.x3f_c00019{left:160.960000pt;}
.xa7_c00019{left:162.666667pt;}
.x95_c00019{left:164.000000pt;}
.x17_c00019{left:164.960000pt;}
.xe8_c00019{left:168.373333pt;}
.xff_c00019{left:170.293333pt;}
.x25_c00019{left:176.000000pt;}
.xd0_c00019{left:177.333333pt;}
.xe3_c00019{left:178.666667pt;}
.x9d_c00019{left:179.626667pt;}
.x3_c00019{left:182.666667pt;}
.x85_c00019{left:188.373333pt;}
.xf5_c00019{left:189.333333pt;}
.xae_c00019{left:190.666667pt;}
.xb5_c00019{left:191.626667pt;}
.x40_c00019{left:192.960000pt;}
.x73_c00019{left:194.666667pt;}
.x55_c00019{left:196.000000pt;}
.x26_c00019{left:199.040000pt;}
.xcc_c00019{left:200.000000pt;}
.xd1_c00019{left:203.626667pt;}
.x5f_c00019{left:205.333333pt;}
.x18_c00019{left:208.000000pt;}
.x69_c00019{left:211.040000pt;}
.xd_c00019{left:212.000000pt;}
.x4b_c00019{left:213.706667pt;}
.x9e_c00019{left:216.000000pt;}
.xcd_c00019{left:218.666667pt;}
.xda_c00019{left:221.333333pt;}
.x19_c00019{left:222.666667pt;}
.x35_c00019{left:224.000000pt;}
.xe9_c00019{left:226.666667pt;}
.xef_c00019{left:229.333333pt;}
.x96_c00019{left:230.666667pt;}
.x7d_c00019{left:233.706667pt;}
.xc7_c00019{left:234.666667pt;}
.x74_c00019{left:236.000000pt;}
.x41_c00019{left:238.293333pt;}
.x6a_c00019{left:241.333333pt;}
.x4_c00019{left:243.040000pt;}
.x102_c00019{left:246.666667pt;}
.x4c_c00019{left:248.373333pt;}
.xa8_c00019{left:251.040000pt;}
.xbb_c00019{left:252.373333pt;}
.xc8_c00019{left:256.373333pt;}
.x9f_c00019{left:257.333333pt;}
.x8f_c00019{left:259.040000pt;}
.x56_c00019{left:260.000000pt;}
.xfa_c00019{left:260.960000pt;}
.x5_c00019{left:265.706667pt;}
.x27_c00019{left:268.373333pt;}
.xd5_c00019{left:270.293333pt;}
.x1a_c00019{left:272.373333pt;}
.x4d_c00019{left:273.333333pt;}
.x42_c00019{left:274.666667pt;}
.x36_c00019{left:275.626667pt;}
.x86_c00019{left:277.333333pt;}
.xfb_c00019{left:278.666667pt;}
.xaf_c00019{left:280.000000pt;}
.xa9_c00019{left:280.960000pt;}
.x75_c00019{left:284.960000pt;}
.x7e_c00019{left:286.666667pt;}
.x57_c00019{left:288.000000pt;}
.x43_c00019{left:289.333333pt;}
.x28_c00019{left:290.293333pt;}
.xf0_c00019{left:293.333333pt;}
.x6_c00019{left:294.666667pt;}
.x87_c00019{left:296.373333pt;}
.x1b_c00019{left:297.333333pt;}
.x97_c00019{left:298.666667pt;}
.xb0_c00019{left:300.960000pt;}
.xe0_c00019{left:302.666667pt;}
.x6b_c00019{left:304.373333pt;}
.xa0_c00019{left:305.706667pt;}
.xd2_c00019{left:306.666667pt;}
.xe4_c00019{left:309.333333pt;}
.x60_c00019{left:312.000000pt;}
.x7f_c00019{left:312.960000pt;}
.x7_c00019{left:314.666667pt;}
.x58_c00019{left:316.000000pt;}
.x44_c00019{left:316.960000pt;}
.x37_c00019{left:319.626667pt;}
.x4e_c00019{left:322.666667pt;}
.x1c_c00019{left:324.373333pt;}
.xf1_c00019{left:326.666667pt;}
.xea_c00019{left:328.000000pt;}
.x88_c00019{left:328.960000pt;}
.x29_c00019{left:331.040000pt;}
.x6c_c00019{left:333.333333pt;}
.xb1_c00019{left:334.293333pt;}
.xbc_c00019{left:336.373333pt;}
.x76_c00019{left:337.333333pt;}
.x103_c00019{left:338.666667pt;}
.x59_c00019{left:340.000000pt;}
.xe1_c00019{left:341.706667pt;}
.x89_c00019{left:347.040000pt;}
.x6d_c00019{left:348.373333pt;}
.x1_c00019{left:349.333333pt;}
.x8_c00019{left:352.373333pt;}
.x2a_c00019{left:353.333333pt;}
.xdb_c00019{left:354.293333pt;}
.x80_c00019{left:356.373333pt;}
.xfc_c00019{left:360.373333pt;}
.xa1_c00019{left:364.373333pt;}
.xe_c00019{left:365.333333pt;}
.xe5_c00019{left:368.000000pt;}
.xbd_c00019{left:369.333333pt;}
.x8a_c00019{left:370.666667pt;}
.xc9_c00019{left:372.000000pt;}
.x81_c00019{left:374.666667pt;}
.x38_c00019{left:375.626667pt;}
.x61_c00019{left:377.706667pt;}
.x6e_c00019{left:378.666667pt;}
.x1d_c00019{left:379.626667pt;}
.xc0_c00019{left:381.333333pt;}
.x45_c00019{left:382.666667pt;}
.x9_c00019{left:384.373333pt;}
.xb6_c00019{left:389.706667pt;}
.xf_c00019{left:390.666667pt;}
.x2b_c00019{left:392.373333pt;}
.x5a_c00019{left:393.706667pt;}
.x90_c00019{left:394.666667pt;}
.x1e_c00019{left:395.626667pt;}
.xd3_c00019{left:397.333333pt;}
.xa2_c00019{left:399.040000pt;}
.x82_c00019{left:402.666667pt;}
.x6f_c00019{left:404.000000pt;}
.x62_c00019{left:405.333333pt;}
.xf2_c00019{left:406.666667pt;}
.xeb_c00019{left:407.626667pt;}
.xf6_c00019{left:412.000000pt;}
.x101_c00019{left:413.333333pt;}
.x98_c00019{left:415.626667pt;}
.x2c_c00019{left:416.960000pt;}
.xa_c00019{left:418.666667pt;}
.xb7_c00019{left:421.333333pt;}
.xec_c00019{left:425.706667pt;}
.x46_c00019{left:426.666667pt;}
.x1f_c00019{left:428.000000pt;}
.x39_c00019{left:430.293333pt;}
.x8b_c00019{left:433.706667pt;}
.x63_c00019{left:436.000000pt;}
.x10_c00019{left:437.333333pt;}
.x3a_c00019{left:438.666667pt;}
.xd6_c00019{left:440.373333pt;}
.x70_c00019{left:441.333333pt;}
.xc3_c00019{left:442.666667pt;}
.x2d_c00019{left:445.706667pt;}
.x64_c00019{left:446.666667pt;}
.x3b_c00019{left:447.626667pt;}
.xb_c00019{left:451.626667pt;}
.xc1_c00019{left:453.706667pt;}
.x20_c00019{left:457.333333pt;}
.xaa_c00019{left:458.666667pt;}
.x4f_c00019{left:460.373333pt;}
.x77_c00019{left:461.333333pt;}
.xbe_c00019{left:464.000000pt;}
.xf3_c00019{left:465.333333pt;}
.xe6_c00019{left:466.293333pt;}
.x100_c00019{left:467.800000pt;}
.x2e_c00019{left:469.706667pt;}
.xf7_c00019{left:470.666667pt;}
.x11_c00019{left:471.626667pt;}
.xb2_c00019{left:473.706667pt;}
.xed_c00019{left:474.666667pt;}
.x3c_c00019{left:475.626667pt;}
.xa3_c00019{left:477.333333pt;}
.x83_c00019{left:478.293333pt;}
.xdc_c00019{left:480.000000pt;}
.xc4_c00019{left:480.960000pt;}
.x71_c00019{left:482.666667pt;}
.xb3_c00019{left:485.333333pt;}
.xf8_c00019{left:486.666667pt;}
.x8c_c00019{left:487.626667pt;}
.x12_c00019{left:488.960000pt;}
.x3d_c00019{left:491.626667pt;}
.x21_c00019{left:496.000000pt;}
.x50_c00019{left:497.333333pt;}
.x2f_c00019{left:498.666667pt;}
.x91_c00019{left:500.000000pt;}
.x5b_c00019{left:501.333333pt;}
.xd7_c00019{left:502.666667pt;}
.xab_c00019{left:504.000000pt;}
.xf4_c00019{left:506.666667pt;}
.xc5_c00019{left:508.960000pt;}
.xfd_c00019{left:510.293333pt;}
.xd4_c00019{left:512.000000pt;}
.x78_c00019{left:514.666667pt;}
.x3e_c00019{left:516.000000pt;}
.x65_c00019{left:517.333333pt;}
.x22_c00019{left:520.000000pt;}
.xb8_c00019{left:521.706667pt;}
.x13_c00019{left:522.666667pt;}
.xc2_c00019{left:524.000000pt;}
.x30_c00019{left:525.333333pt;}
.x47_c00019{left:526.666667pt;}
.x8d_c00019{left:529.333333pt;}
.x79_c00019{left:530.293333pt;}
.xca_c00019{left:532.960000pt;}
.xb4_c00019{left:535.626667pt;}
.x5c_c00019{left:537.333333pt;}
.x66_c00019{left:541.706667pt;}
.x92_c00019{left:543.040000pt;}
.xf9_c00019{left:544.000000pt;}
.xb9_c00019{left:544.960000pt;}
.xce_c00019{left:548.000000pt;}
.x7a_c00019{left:549.333333pt;}
.xa4_c00019{left:550.666667pt;}
.x14_c00019{left:552.760000pt;}
.x99_c00019{left:553.706667pt;}
.x23_c00019{left:556.373333pt;}
.x51_c00019{left:557.706667pt;}
.x31_c00019{left:562.293333pt;}
.x67_c00019{left:564.960000pt;}
.xa5_c00019{left:566.666667pt;}
.xac_c00019{left:568.960000pt;}
.xc_c00019{left:574.666667pt;}
.x93_c00019{left:576.960000pt;}
.xdd_c00019{left:578.666667pt;}
.x32_c00019{left:579.626667pt;}
.xa6_c00019{left:583.040000pt;}
.xd8_c00019{left:584.000000pt;}
.xfe_c00019{left:585.706667pt;}
.x8e_c00019{left:586.666667pt;}
.xad_c00019{left:587.626667pt;}
.xe2_c00019{left:589.333333pt;}
.x48_c00019{left:590.666667pt;}
.x9a_c00019{left:592.960000pt;}
.x94_c00019{left:594.666667pt;}
.x72_c00019{left:597.333333pt;}
.x68_c00019{left:599.040000pt;}
.x15_c00019{left:600.373333pt;}
.x52_c00019{left:603.040000pt;}
.xbf_c00019{left:604.000000pt;}
.xee_c00019{left:605.706667pt;}
.xd9_c00019{left:606.666667pt;}
.x49_c00019{left:608.373333pt;}
.xde_c00019{left:609.333333pt;}
.x104_c00019{left:611.040000pt;}
.x7b_c00019{left:612.000000pt;}
.xba_c00019{left:612.960000pt;}
.xc6_c00019{left:615.040000pt;}
.x33_c00019{left:620.000000pt;}
.x9b_c00019{left:621.706667pt;}
.x16_c00019{left:625.706667pt;}
.x24_c00019{left:626.666667pt;}
.x53_c00019{left:628.000000pt;}
.xcf_c00019{left:629.706667pt;}
.x7c_c00019{left:631.040000pt;}
.x4a_c00019{left:633.333333pt;}
.x34_c00019{left:636.000000pt;}
.x5d_c00019{left:636.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_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_d1e637e5bcd0dce2cb4c1a4b.woff2')format("woff");}.ff1_c00020{font-family:ff1_c00020;line-height:1.688965;font-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_c00020{transform:matrix(0.139986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139986,0.000000,0.000000,0.250000,0,0);}
.m49_c00020{transform:matrix(0.179831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179831,0.000000,0.000000,0.250000,0,0);}
.m5_c00020{transform:matrix(0.195552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195552,0.000000,0.000000,0.250000,0,0);}
.m52_c00020{transform:matrix(0.205219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205219,0.000000,0.000000,0.250000,0,0);}
.m2a_c00020{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m4a_c00020{transform:matrix(0.232722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232722,0.000000,0.000000,0.250000,0,0);}
.m6_c00020{transform:matrix(0.297546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297546,0.000000,0.000000,0.250000,0,0);}
.m2b_c00020{transform:matrix(0.305462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305462,0.000000,0.000000,0.250000,0,0);}
.m55_c00020{transform:matrix(0.307563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307563,0.000000,0.000000,0.250000,0,0);}
.m1e_c00020{transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);}
.m31_c00020{transform:matrix(0.327458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327458,0.000000,0.000000,0.250000,0,0);}
.m2f_c00020{transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);}
.m5d_c00020{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m7_c00020{transform:matrix(0.362245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362245,0.000000,0.000000,0.250000,0,0);}
.m48_c00020{transform:matrix(0.367419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367419,0.000000,0.000000,0.250000,0,0);}
.m36_c00020{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m72_c00020{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m15_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);}
.m32_c00020{transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);}
.m50_c00020{transform:matrix(0.379408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379408,0.000000,0.000000,0.250000,0,0);}
.m26_c00020{transform:matrix(0.380187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380187,0.000000,0.000000,0.250000,0,0);}
.m54_c00020{transform:matrix(0.384874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384874,0.000000,0.000000,0.250000,0,0);}
.m4_c00020{transform:matrix(0.385736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385736,0.000000,0.000000,0.250000,0,0);}
.m4c_c00020{transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);}
.m12_c00020{transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);}
.m11_c00020{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m0_c00020{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.m57_c00020{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m56_c00020{transform:matrix(0.400415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400415,0.000000,0.000000,0.250000,0,0);}
.m45_c00020{transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);}
.m14_c00020{transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);}
.m29_c00020{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m18_c00020{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m4e_c00020{transform:matrix(0.413265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413265,0.000000,0.000000,0.250000,0,0);}
.m64_c00020{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m4f_c00020{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m58_c00020{transform:matrix(0.417440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417440,0.000000,0.000000,0.250000,0,0);}
.m39_c00020{transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);}
.m47_c00020{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.m61_c00020{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.m25_c00020{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m1b_c00020{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.mf_c00020{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m66_c00020{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m4b_c00020{transform:matrix(0.443983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443983,0.000000,0.000000,0.250000,0,0);}
.m3d_c00020{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.m13_c00020{transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);}
.m1d_c00020{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m59_c00020{transform:matrix(0.466286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466286,0.000000,0.000000,0.250000,0,0);}
.m62_c00020{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m53_c00020{transform:matrix(0.468235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468235,0.000000,0.000000,0.250000,0,0);}
.m65_c00020{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m1a_c00020{transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);}
.m9_c00020{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.m22_c00020{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.m6a_c00020{transform:matrix(0.474118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474118,0.000000,0.000000,0.250000,0,0);}
.m6e_c00020{transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);}
.m21_c00020{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m37_c00020{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m5e_c00020{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.md_c00020{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m38_c00020{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m3a_c00020{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m5c_c00020{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m24_c00020{transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);}
.m2c_c00020{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m63_c00020{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m4d_c00020{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m2e_c00020{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m46_c00020{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m5a_c00020{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m3e_c00020{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m20_c00020{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m23_c00020{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m28_c00020{transform:matrix(0.497059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497059,0.000000,0.000000,0.250000,0,0);}
.m71_c00020{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_c00020{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m43_c00020{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m2d_c00020{transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);}
.m6b_c00020{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m19_c00020{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.m33_c00020{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m5f_c00020{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m1f_c00020{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m3b_c00020{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.m8_c00020{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_c00020{transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);}
.m70_c00020{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.mb_c00020{transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);}
.m3_c00020{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.me_c00020{transform:matrix(0.548824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548824,0.000000,0.000000,0.250000,0,0);}
.m1c_c00020{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m6d_c00020{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.mc_c00020{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m16_c00020{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.m34_c00020{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m27_c00020{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.m5b_c00020{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m1_c00020{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m44_c00020{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m3c_c00020{transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);}
.m6f_c00020{transform:matrix(0.595588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595588,0.000000,0.000000,0.250000,0,0);}
.m41_c00020{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.m69_c00020{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m2_c00020{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_c00020{transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);}
.m17_c00020{transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);}
.m68_c00020{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m6c_c00020{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m35_c00020{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.m67_c00020{transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);}
.m3f_c00020{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);}
.m42_c00020{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m40_c00020{transform:matrix(1.103524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.103524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.103524,0.000000,0.000000,0.250000,0,0);}
.m30_c00020{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,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;}
.fs7_c00020{font-size:3.420000px;}
.fs8_c00020{font-size:13.620000px;}
.fs1_c00020{font-size:18.720000px;}
.fs2_c00020{font-size:20.400000px;}
.fs3_c00020{font-size:25.500000px;}
.fs5_c00020{font-size:28.920000px;}
.fs0_c00020{font-size:32.340000px;}
.fs6_c00020{font-size:35.700000px;}
.fs4_c00020{font-size:39.120000px;}
.fs9_c00020{font-size:42.540000px;}
.y0_c00020{bottom:0.000000px;}
.y70_c00020{bottom:209.970000px;}
.y71_c00020{bottom:210.825000px;}
.y6e_c00020{bottom:211.050000px;}
.y6d_c00020{bottom:211.905000px;}
.y6f_c00020{bottom:212.130000px;}
.y6c_c00020{bottom:212.550000px;}
.y6b_c00020{bottom:212.970000px;}
.y65_c00020{bottom:225.825000px;}
.y66_c00020{bottom:226.050000px;}
.y68_c00020{bottom:226.470000px;}
.y67_c00020{bottom:226.905000px;}
.y69_c00020{bottom:227.970000px;}
.y6a_c00020{bottom:229.050000px;}
.y64_c00020{bottom:229.905000px;}
.y63_c00020{bottom:231.405000px;}
.y5f_c00020{bottom:239.970000px;}
.y61_c00020{bottom:240.405000px;}
.y62_c00020{bottom:240.825000px;}
.y5d_c00020{bottom:241.050000px;}
.y60_c00020{bottom:241.470000px;}
.y5e_c00020{bottom:241.905000px;}
.y5c_c00020{bottom:242.745000px;}
.y58_c00020{bottom:254.550000px;}
.y55_c00020{bottom:254.970000px;}
.y57_c00020{bottom:255.405000px;}
.y56_c00020{bottom:255.825000px;}
.y5a_c00020{bottom:256.050000px;}
.y59_c00020{bottom:256.470000px;}
.y5b_c00020{bottom:256.905000px;}
.y54_c00020{bottom:258.825000px;}
.y50_c00020{bottom:269.325000px;}
.y51_c00020{bottom:269.550000px;}
.y53_c00020{bottom:270.405000px;}
.y52_c00020{bottom:271.245000px;}
.y4f_c00020{bottom:274.470000px;}
.y4a_c00020{bottom:283.470000px;}
.y4d_c00020{bottom:284.325000px;}
.y4c_c00020{bottom:284.550000px;}
.y4e_c00020{bottom:285.180000px;}
.y4b_c00020{bottom:285.405000px;}
.y49_c00020{bottom:287.325000px;}
.y48_c00020{bottom:289.905000px;}
.y47_c00020{bottom:298.470000px;}
.y46_c00020{bottom:299.325000px;}
.y43_c00020{bottom:299.550000px;}
.y45_c00020{bottom:300.180000px;}
.y44_c00020{bottom:300.405000px;}
.y42_c00020{bottom:300.825000px;}
.y41_c00020{bottom:303.825000px;}
.y3f_c00020{bottom:313.905000px;}
.y3d_c00020{bottom:314.550000px;}
.y3e_c00020{bottom:315.195000px;}
.y3c_c00020{bottom:315.405000px;}
.y3b_c00020{bottom:316.050000px;}
.y40_c00020{bottom:316.470000px;}
.y3a_c00020{bottom:317.325000px;}
.y37_c00020{bottom:327.825000px;}
.y38_c00020{bottom:328.050000px;}
.y39_c00020{bottom:328.905000px;}
.y33_c00020{bottom:329.550000px;}
.y35_c00020{bottom:329.970000px;}
.y34_c00020{bottom:330.405000px;}
.y36_c00020{bottom:331.470000px;}
.y32_c00020{bottom:332.745000px;}
.y2e_c00020{bottom:342.825000px;}
.y2f_c00020{bottom:343.050000px;}
.y30_c00020{bottom:343.905000px;}
.y2d_c00020{bottom:344.325000px;}
.y2b_c00020{bottom:344.745000px;}
.y2c_c00020{bottom:346.920000px;}
.y31_c00020{bottom:347.550000px;}
.y2a_c00020{bottom:347.970000px;}
.y27_c00020{bottom:357.825000px;}
.y28_c00020{bottom:358.050000px;}
.y29_c00020{bottom:358.905000px;}
.y26_c00020{bottom:359.745000px;}
.y25_c00020{bottom:359.970000px;}
.y23_c00020{bottom:360.405000px;}
.y22_c00020{bottom:360.825000px;}
.y24_c00020{bottom:361.470000px;}
.y21_c00020{bottom:372.825000px;}
.y1e_c00020{bottom:373.050000px;}
.y20_c00020{bottom:373.470000px;}
.y1f_c00020{bottom:373.905000px;}
.y1d_c00020{bottom:375.405000px;}
.y1b_c00020{bottom:377.550000px;}
.y1c_c00020{bottom:377.970000px;}
.y18_c00020{bottom:387.825000px;}
.y17_c00020{bottom:388.050000px;}
.y19_c00020{bottom:388.905000px;}
.y1a_c00020{bottom:389.970000px;}
.y16_c00020{bottom:390.405000px;}
.y15_c00020{bottom:390.825000px;}
.y14_c00020{bottom:391.470000px;}
.y11_c00020{bottom:401.970000px;}
.y13_c00020{bottom:402.825000px;}
.yf_c00020{bottom:403.050000px;}
.y12_c00020{bottom:403.470000px;}
.ye_c00020{bottom:403.905000px;}
.y10_c00020{bottom:404.970000px;}
.yd_c00020{bottom:406.470000px;}
.yb_c00020{bottom:407.550000px;}
.yc_c00020{bottom:407.970000px;}
.y7_c00020{bottom:417.825000px;}
.y8_c00020{bottom:418.050000px;}
.y6_c00020{bottom:418.680000px;}
.y9_c00020{bottom:418.905000px;}
.y3_c00020{bottom:419.325000px;}
.ya_c00020{bottom:419.550000px;}
.y5_c00020{bottom:419.970000px;}
.y2_c00020{bottom:420.630000px;}
.y1_c00020{bottom:420.825000px;}
.y4_c00020{bottom:421.050000px;}
.h8_c00020{height:4.206533px;}
.h9_c00020{height:16.752334px;}
.h2_c00020{height:23.025234px;}
.h3_c00020{height:25.091602px;}
.h4_c00020{height:31.364502px;}
.h6_c00020{height:35.571035px;}
.h1_c00020{height:39.777568px;}
.h7_c00020{height:43.910303px;}
.h5_c00020{height:48.116836px;}
.ha_c00020{height:52.323369px;}
.h0_c00020{height:1335.000000px;}
.w0_c00020{width:880.500000px;}
.x0_c00020{left:0.000000px;}
.x1_c00020{left:153.420000px;}
.x73_c00020{left:154.920000px;}
.x27_c00020{left:159.855000px;}
.xf_c00020{left:166.500000px;}
.x1a_c00020{left:169.500000px;}
.x7f_c00020{left:174.000000px;}
.x28_c00020{left:175.500000px;}
.x62_c00020{left:177.420000px;}
.x3c_c00020{left:178.500000px;}
.x2_c00020{left:184.500000px;}
.x6c_c00020{left:200.580000px;}
.x3_c00020{left:202.920000px;}
.x31_c00020{left:210.420000px;}
.x46_c00020{left:217.920000px;}
.x1b_c00020{left:223.080000px;}
.x80_c00020{left:224.580000px;}
.x32_c00020{left:232.500000px;}
.x4_c00020{left:234.420000px;}
.x1c_c00020{left:240.000000px;}
.x47_c00020{left:241.080000px;}
.x50_c00020{left:242.580000px;}
.x5_c00020{left:250.500000px;}
.x87_c00020{left:251.580000px;}
.x3d_c00020{left:256.500000px;}
.x5a_c00020{left:259.920000px;}
.x10_c00020{left:261.645000px;}
.x79_c00020{left:263.145000px;}
.x33_c00020{left:265.500000px;}
.x63_c00020{left:267.000000px;}
.x6d_c00020{left:273.420000px;}
.x3e_c00020{left:275.580000px;}
.x88_c00020{left:279.000000px;}
.x5b_c00020{left:283.080000px;}
.x29_c00020{left:285.855000px;}
.x1d_c00020{left:291.000000px;}
.x6e_c00020{left:301.080000px;}
.x74_c00020{left:303.000000px;}
.x2a_c00020{left:307.080000px;}
.x6_c00020{left:310.080000px;}
.x11_c00020{left:312.420000px;}
.x81_c00020{left:316.920000px;}
.x12_c00020{left:325.500000px;}
.x75_c00020{left:327.645000px;}
.x64_c00020{left:331.920000px;}
.x48_c00020{left:335.580000px;}
.x82_c00020{left:337.500000px;}
.x34_c00020{left:338.580000px;}
.x5c_c00020{left:346.080000px;}
.x1e_c00020{left:352.920000px;}
.x65_c00020{left:355.500000px;}
.x3f_c00020{left:356.580000px;}
.x51_c00020{left:360.000000px;}
.x49_c00020{left:361.500000px;}
.x89_c00020{left:365.580000px;}
.x1f_c00020{left:369.000000px;}
.x5d_c00020{left:370.080000px;}
.x7a_c00020{left:373.500000px;}
.x7_c00020{left:384.000000px;}
.x2b_c00020{left:392.355000px;}
.x8_c00020{left:395.580000px;}
.x13_c00020{left:405.645000px;}
.x76_c00020{left:408.420000px;}
.x66_c00020{left:409.920000px;}
.x2c_c00020{left:415.080000px;}
.x83_c00020{left:418.080000px;}
.x35_c00020{left:421.500000px;}
.x7b_c00020{left:423.420000px;}
.x20_c00020{left:425.355000px;}
.x52_c00020{left:426.420000px;}
.x40_c00020{left:427.920000px;}
.x67_c00020{left:433.500000px;}
.x36_c00020{left:434.580000px;}
.x84_c00020{left:439.500000px;}
.x6f_c00020{left:441.000000px;}
.x7c_c00020{left:445.500000px;}
.x21_c00020{left:447.000000px;}
.x4a_c00020{left:450.420000px;}
.x41_c00020{left:453.000000px;}
.x14_c00020{left:455.580000px;}
.x5e_c00020{left:459.000000px;}
.x9_c00020{left:461.580000px;}
.x15_c00020{left:469.500000px;}
.x5f_c00020{left:472.080000px;}
.x4b_c00020{left:474.000000px;}
.x2d_c00020{left:488.580000px;}
.x7d_c00020{left:491.580000px;}
.x53_c00020{left:493.500000px;}
.x37_c00020{left:494.580000px;}
.x68_c00020{left:498.000000px;}
.x8a_c00020{left:511.500000px;}
.x7e_c00020{left:512.580000px;}
.x22_c00020{left:516.855000px;}
.x77_c00020{left:519.000000px;}
.x54_c00020{left:522.000000px;}
.x42_c00020{left:530.145000px;}
.xa_c00020{left:531.855000px;}
.x70_c00020{left:536.580000px;}
.x23_c00020{left:538.920000px;}
.x16_c00020{left:541.080000px;}
.xb_c00020{left:545.580000px;}
.x4c_c00020{left:548.580000px;}
.x17_c00020{left:555.000000px;}
.x60_c00020{left:556.080000px;}
.x55_c00020{left:564.000000px;}
.x38_c00020{left:566.355000px;}
.x2e_c00020{left:568.500000px;}
.x4d_c00020{left:573.000000px;}
.x43_c00020{left:574.920000px;}
.x8b_c00020{left:577.080000px;}
.x69_c00020{left:586.920000px;}
.x39_c00020{left:589.080000px;}
.x78_c00020{left:593.580000px;}
.x24_c00020{left:594.855000px;}
.x56_c00020{left:598.500000px;}
.x44_c00020{left:601.080000px;}
.x71_c00020{left:607.920000px;}
.x6a_c00020{left:610.080000px;}
.xc_c00020{left:615.420000px;}
.x25_c00020{left:617.580000px;}
.x61_c00020{left:625.500000px;}
.x4e_c00020{left:630.420000px;}
.xd_c00020{left:631.500000px;}
.x18_c00020{left:634.080000px;}
.x72_c00020{left:636.855000px;}
.x57_c00020{left:639.000000px;}
.x85_c00020{left:645.000000px;}
.x2f_c00020{left:648.855000px;}
.x3a_c00020{left:655.920000px;}
.x86_c00020{left:669.000000px;}
.x30_c00020{left:670.500000px;}
.xe_c00020{left:675.000000px;}
.x58_c00020{left:676.920000px;}
.x3b_c00020{left:678.000000px;}
.x26_c00020{left:681.000000px;}
.x6b_c00020{left:683.580000px;}
.x19_c00020{left:685.080000px;}
.x45_c00020{left:697.080000px;}
.x59_c00020{left:700.500000px;}
.x4f_c00020{left:712.920000px;}
@media print{
.v0_c00020{vertical-align:0.000000pt;}
.ls0_c00020{letter-spacing:0.000000pt;}
.ws0_c00020{word-spacing:0.000000pt;}
.fs7_c00020{font-size:3.040000pt;}
.fs8_c00020{font-size:12.106667pt;}
.fs1_c00020{font-size:16.640000pt;}
.fs2_c00020{font-size:18.133333pt;}
.fs3_c00020{font-size:22.666667pt;}
.fs5_c00020{font-size:25.706667pt;}
.fs0_c00020{font-size:28.746667pt;}
.fs6_c00020{font-size:31.733333pt;}
.fs4_c00020{font-size:34.773333pt;}
.fs9_c00020{font-size:37.813333pt;}
.y0_c00020{bottom:0.000000pt;}
.y70_c00020{bottom:186.640000pt;}
.y71_c00020{bottom:187.400000pt;}
.y6e_c00020{bottom:187.600000pt;}
.y6d_c00020{bottom:188.360000pt;}
.y6f_c00020{bottom:188.560000pt;}
.y6c_c00020{bottom:188.933333pt;}
.y6b_c00020{bottom:189.306667pt;}
.y65_c00020{bottom:200.733333pt;}
.y66_c00020{bottom:200.933333pt;}
.y68_c00020{bottom:201.306667pt;}
.y67_c00020{bottom:201.693333pt;}
.y69_c00020{bottom:202.640000pt;}
.y6a_c00020{bottom:203.600000pt;}
.y64_c00020{bottom:204.360000pt;}
.y63_c00020{bottom:205.693333pt;}
.y5f_c00020{bottom:213.306667pt;}
.y61_c00020{bottom:213.693333pt;}
.y62_c00020{bottom:214.066667pt;}
.y5d_c00020{bottom:214.266667pt;}
.y60_c00020{bottom:214.640000pt;}
.y5e_c00020{bottom:215.026667pt;}
.y5c_c00020{bottom:215.773333pt;}
.y58_c00020{bottom:226.266667pt;}
.y55_c00020{bottom:226.640000pt;}
.y57_c00020{bottom:227.026667pt;}
.y56_c00020{bottom:227.400000pt;}
.y5a_c00020{bottom:227.600000pt;}
.y59_c00020{bottom:227.973333pt;}
.y5b_c00020{bottom:228.360000pt;}
.y54_c00020{bottom:230.066667pt;}
.y50_c00020{bottom:239.400000pt;}
.y51_c00020{bottom:239.600000pt;}
.y53_c00020{bottom:240.360000pt;}
.y52_c00020{bottom:241.106667pt;}
.y4f_c00020{bottom:243.973333pt;}
.y4a_c00020{bottom:251.973333pt;}
.y4d_c00020{bottom:252.733333pt;}
.y4c_c00020{bottom:252.933333pt;}
.y4e_c00020{bottom:253.493333pt;}
.y4b_c00020{bottom:253.693333pt;}
.y49_c00020{bottom:255.400000pt;}
.y48_c00020{bottom:257.693333pt;}
.y47_c00020{bottom:265.306667pt;}
.y46_c00020{bottom:266.066667pt;}
.y43_c00020{bottom:266.266667pt;}
.y45_c00020{bottom:266.826667pt;}
.y44_c00020{bottom:267.026667pt;}
.y42_c00020{bottom:267.400000pt;}
.y41_c00020{bottom:270.066667pt;}
.y3f_c00020{bottom:279.026667pt;}
.y3d_c00020{bottom:279.600000pt;}
.y3e_c00020{bottom:280.173333pt;}
.y3c_c00020{bottom:280.360000pt;}
.y3b_c00020{bottom:280.933333pt;}
.y40_c00020{bottom:281.306667pt;}
.y3a_c00020{bottom:282.066667pt;}
.y37_c00020{bottom:291.400000pt;}
.y38_c00020{bottom:291.600000pt;}
.y39_c00020{bottom:292.360000pt;}
.y33_c00020{bottom:292.933333pt;}
.y35_c00020{bottom:293.306667pt;}
.y34_c00020{bottom:293.693333pt;}
.y36_c00020{bottom:294.640000pt;}
.y32_c00020{bottom:295.773333pt;}
.y2e_c00020{bottom:304.733333pt;}
.y2f_c00020{bottom:304.933333pt;}
.y30_c00020{bottom:305.693333pt;}
.y2d_c00020{bottom:306.066667pt;}
.y2b_c00020{bottom:306.440000pt;}
.y2c_c00020{bottom:308.373333pt;}
.y31_c00020{bottom:308.933333pt;}
.y2a_c00020{bottom:309.306667pt;}
.y27_c00020{bottom:318.066667pt;}
.y28_c00020{bottom:318.266667pt;}
.y29_c00020{bottom:319.026667pt;}
.y26_c00020{bottom:319.773333pt;}
.y25_c00020{bottom:319.973333pt;}
.y23_c00020{bottom:320.360000pt;}
.y22_c00020{bottom:320.733333pt;}
.y24_c00020{bottom:321.306667pt;}
.y21_c00020{bottom:331.400000pt;}
.y1e_c00020{bottom:331.600000pt;}
.y20_c00020{bottom:331.973333pt;}
.y1f_c00020{bottom:332.360000pt;}
.y1d_c00020{bottom:333.693333pt;}
.y1b_c00020{bottom:335.600000pt;}
.y1c_c00020{bottom:335.973333pt;}
.y18_c00020{bottom:344.733333pt;}
.y17_c00020{bottom:344.933333pt;}
.y19_c00020{bottom:345.693333pt;}
.y1a_c00020{bottom:346.640000pt;}
.y16_c00020{bottom:347.026667pt;}
.y15_c00020{bottom:347.400000pt;}
.y14_c00020{bottom:347.973333pt;}
.y11_c00020{bottom:357.306667pt;}
.y13_c00020{bottom:358.066667pt;}
.yf_c00020{bottom:358.266667pt;}
.y12_c00020{bottom:358.640000pt;}
.ye_c00020{bottom:359.026667pt;}
.y10_c00020{bottom:359.973333pt;}
.yd_c00020{bottom:361.306667pt;}
.yb_c00020{bottom:362.266667pt;}
.yc_c00020{bottom:362.640000pt;}
.y7_c00020{bottom:371.400000pt;}
.y8_c00020{bottom:371.600000pt;}
.y6_c00020{bottom:372.160000pt;}
.y9_c00020{bottom:372.360000pt;}
.y3_c00020{bottom:372.733333pt;}
.ya_c00020{bottom:372.933333pt;}
.y5_c00020{bottom:373.306667pt;}
.y2_c00020{bottom:373.893333pt;}
.y1_c00020{bottom:374.066667pt;}
.y4_c00020{bottom:374.266667pt;}
.h8_c00020{height:3.739141pt;}
.h9_c00020{height:14.890964pt;}
.h2_c00020{height:20.466875pt;}
.h3_c00020{height:22.303646pt;}
.h4_c00020{height:27.879557pt;}
.h6_c00020{height:31.618698pt;}
.h1_c00020{height:35.357839pt;}
.h7_c00020{height:39.031380pt;}
.h5_c00020{height:42.770521pt;}
.ha_c00020{height:46.509661pt;}
.h0_c00020{height:1186.666667pt;}
.w0_c00020{width:782.666667pt;}
.x0_c00020{left:0.000000pt;}
.x1_c00020{left:136.373333pt;}
.x73_c00020{left:137.706667pt;}
.x27_c00020{left:142.093333pt;}
.xf_c00020{left:148.000000pt;}
.x1a_c00020{left:150.666667pt;}
.x7f_c00020{left:154.666667pt;}
.x28_c00020{left:156.000000pt;}
.x62_c00020{left:157.706667pt;}
.x3c_c00020{left:158.666667pt;}
.x2_c00020{left:164.000000pt;}
.x6c_c00020{left:178.293333pt;}
.x3_c00020{left:180.373333pt;}
.x31_c00020{left:187.040000pt;}
.x46_c00020{left:193.706667pt;}
.x1b_c00020{left:198.293333pt;}
.x80_c00020{left:199.626667pt;}
.x32_c00020{left:206.666667pt;}
.x4_c00020{left:208.373333pt;}
.x1c_c00020{left:213.333333pt;}
.x47_c00020{left:214.293333pt;}
.x50_c00020{left:215.626667pt;}
.x5_c00020{left:222.666667pt;}
.x87_c00020{left:223.626667pt;}
.x3d_c00020{left:228.000000pt;}
.x5a_c00020{left:231.040000pt;}
.x10_c00020{left:232.573333pt;}
.x79_c00020{left:233.906667pt;}
.x33_c00020{left:236.000000pt;}
.x63_c00020{left:237.333333pt;}
.x6d_c00020{left:243.040000pt;}
.x3e_c00020{left:244.960000pt;}
.x88_c00020{left:248.000000pt;}
.x5b_c00020{left:251.626667pt;}
.x29_c00020{left:254.093333pt;}
.x1d_c00020{left:258.666667pt;}
.x6e_c00020{left:267.626667pt;}
.x74_c00020{left:269.333333pt;}
.x2a_c00020{left:272.960000pt;}
.x6_c00020{left:275.626667pt;}
.x11_c00020{left:277.706667pt;}
.x81_c00020{left:281.706667pt;}
.x12_c00020{left:289.333333pt;}
.x75_c00020{left:291.240000pt;}
.x64_c00020{left:295.040000pt;}
.x48_c00020{left:298.293333pt;}
.x82_c00020{left:300.000000pt;}
.x34_c00020{left:300.960000pt;}
.x5c_c00020{left:307.626667pt;}
.x1e_c00020{left:313.706667pt;}
.x65_c00020{left:316.000000pt;}
.x3f_c00020{left:316.960000pt;}
.x51_c00020{left:320.000000pt;}
.x49_c00020{left:321.333333pt;}
.x89_c00020{left:324.960000pt;}
.x1f_c00020{left:328.000000pt;}
.x5d_c00020{left:328.960000pt;}
.x7a_c00020{left:332.000000pt;}
.x7_c00020{left:341.333333pt;}
.x2b_c00020{left:348.760000pt;}
.x8_c00020{left:351.626667pt;}
.x13_c00020{left:360.573333pt;}
.x76_c00020{left:363.040000pt;}
.x66_c00020{left:364.373333pt;}
.x2c_c00020{left:368.960000pt;}
.x83_c00020{left:371.626667pt;}
.x35_c00020{left:374.666667pt;}
.x7b_c00020{left:376.373333pt;}
.x20_c00020{left:378.093333pt;}
.x52_c00020{left:379.040000pt;}
.x40_c00020{left:380.373333pt;}
.x67_c00020{left:385.333333pt;}
.x36_c00020{left:386.293333pt;}
.x84_c00020{left:390.666667pt;}
.x6f_c00020{left:392.000000pt;}
.x7c_c00020{left:396.000000pt;}
.x21_c00020{left:397.333333pt;}
.x4a_c00020{left:400.373333pt;}
.x41_c00020{left:402.666667pt;}
.x14_c00020{left:404.960000pt;}
.x5e_c00020{left:408.000000pt;}
.x9_c00020{left:410.293333pt;}
.x15_c00020{left:417.333333pt;}
.x5f_c00020{left:419.626667pt;}
.x4b_c00020{left:421.333333pt;}
.x2d_c00020{left:434.293333pt;}
.x7d_c00020{left:436.960000pt;}
.x53_c00020{left:438.666667pt;}
.x37_c00020{left:439.626667pt;}
.x68_c00020{left:442.666667pt;}
.x8a_c00020{left:454.666667pt;}
.x7e_c00020{left:455.626667pt;}
.x22_c00020{left:459.426667pt;}
.x77_c00020{left:461.333333pt;}
.x54_c00020{left:464.000000pt;}
.x42_c00020{left:471.240000pt;}
.xa_c00020{left:472.760000pt;}
.x70_c00020{left:476.960000pt;}
.x23_c00020{left:479.040000pt;}
.x16_c00020{left:480.960000pt;}
.xb_c00020{left:484.960000pt;}
.x4c_c00020{left:487.626667pt;}
.x17_c00020{left:493.333333pt;}
.x60_c00020{left:494.293333pt;}
.x55_c00020{left:501.333333pt;}
.x38_c00020{left:503.426667pt;}
.x2e_c00020{left:505.333333pt;}
.x4d_c00020{left:509.333333pt;}
.x43_c00020{left:511.040000pt;}
.x8b_c00020{left:512.960000pt;}
.x69_c00020{left:521.706667pt;}
.x39_c00020{left:523.626667pt;}
.x78_c00020{left:527.626667pt;}
.x24_c00020{left:528.760000pt;}
.x56_c00020{left:532.000000pt;}
.x44_c00020{left:534.293333pt;}
.x71_c00020{left:540.373333pt;}
.x6a_c00020{left:542.293333pt;}
.xc_c00020{left:547.040000pt;}
.x25_c00020{left:548.960000pt;}
.x61_c00020{left:556.000000pt;}
.x4e_c00020{left:560.373333pt;}
.xd_c00020{left:561.333333pt;}
.x18_c00020{left:563.626667pt;}
.x72_c00020{left:566.093333pt;}
.x57_c00020{left:568.000000pt;}
.x85_c00020{left:573.333333pt;}
.x2f_c00020{left:576.760000pt;}
.x3a_c00020{left:583.040000pt;}
.x86_c00020{left:594.666667pt;}
.x30_c00020{left:596.000000pt;}
.xe_c00020{left:600.000000pt;}
.x58_c00020{left:601.706667pt;}
.x3b_c00020{left:602.666667pt;}
.x26_c00020{left:605.333333pt;}
.x6b_c00020{left:607.626667pt;}
.x19_c00020{left:608.960000pt;}
.x45_c00020{left:619.626667pt;}
.x59_c00020{left:622.666667pt;}
.x4f_c00020{left:633.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_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_312eec6999d1a10dab0fc8b2.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mca_c00021{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.ma6_c00021{transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);}
.m27_c00021{transform:matrix(0.351610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351610,0.000000,0.000000,0.250000,0,0);}
.m19_c00021{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m7_c00021{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m95_c00021{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m77_c00021{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m1f_c00021{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mc_c00021{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m83_c00021{transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);}
.m5e_c00021{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m79_c00021{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m7f_c00021{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m93_c00021{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m74_c00021{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m25_c00021{transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);}
.m5d_c00021{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m96_c00021{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.md5_c00021{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mac_c00021{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m92_c00021{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m62_c00021{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m3e_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);}
.m47_c00021{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m6f_c00021{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m45_c00021{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m82_c00021{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.mbe_c00021{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.md3_c00021{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m41_c00021{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.mc8_c00021{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m57_c00021{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m70_c00021{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.mb8_c00021{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.ma1_c00021{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m3b_c00021{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m73_c00021{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.m9_c00021{transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);}
.mdb_c00021{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m5f_c00021{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.md8_c00021{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m53_c00021{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.mcf_c00021{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.m6_c00021{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mda_c00021{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m6c_c00021{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m7a_c00021{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m3c_c00021{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mc3_c00021{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m9d_c00021{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m7e_c00021{transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);}
.mc5_c00021{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.me0_c00021{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m16_c00021{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mc4_c00021{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.maa_c00021{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.ma8_c00021{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m2d_c00021{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.m1c_c00021{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m3_c00021{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m8a_c00021{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.ma5_c00021{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.mdd_c00021{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m1a_c00021{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.md2_c00021{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m89_c00021{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.ma_c00021{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m9c_c00021{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m40_c00021{transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);}
.mb2_c00021{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m33_c00021{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m7c_c00021{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.mb9_c00021{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m8d_c00021{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m9e_c00021{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m8e_c00021{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m18_c00021{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.mc1_c00021{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.ma3_c00021{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m4d_c00021{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m9b_c00021{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m9f_c00021{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.mbd_c00021{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m7b_c00021{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.mb_c00021{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.mdf_c00021{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.mb6_c00021{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.mc0_c00021{transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);}
.m12_c00021{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.me_c00021{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m63_c00021{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m99_c00021{transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);}
.m59_c00021{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m97_c00021{transform:matrix(0.461345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461345,0.000000,0.000000,0.250000,0,0);}
.mbb_c00021{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m7d_c00021{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.maf_c00021{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m2c_c00021{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m50_c00021{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m1d_c00021{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mde_c00021{transform:matrix(0.482365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482365,0.000000,0.000000,0.250000,0,0);}
.mae_c00021{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m69_c00021{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m91_c00021{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m2e_c00021{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m8c_c00021{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m2a_c00021{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m8f_c00021{transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);}
.mcc_c00021{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m46_c00021{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m1b_c00021{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m17_c00021{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);}
.mb1_c00021{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m5b_c00021{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.mcb_c00021{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m68_c00021{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m24_c00021{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mc6_c00021{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m6e_c00021{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m78_c00021{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m72_c00021{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.mba_c00021{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m15_c00021{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m6d_c00021{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m71_c00021{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.ma9_c00021{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m51_c00021{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.m39_c00021{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mf_c00021{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.md7_c00021{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m30_c00021{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m94_c00021{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m81_c00021{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m3a_c00021{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m3f_c00021{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m2b_c00021{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m10_c00021{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m75_c00021{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mcd_c00021{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m22_c00021{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m64_c00021{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m34_c00021{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m2_c00021{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m35_c00021{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.ma4_c00021{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m29_c00021{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m4b_c00021{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m1e_c00021{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m76_c00021{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.ma2_c00021{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m65_c00021{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m9a_c00021{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m4a_c00021{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m49_c00021{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m67_c00021{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m52_c00021{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.md4_c00021{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.ma0_c00021{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mb7_c00021{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m13_c00021{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m87_c00021{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.md9_c00021{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m3d_c00021{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m36_c00021{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m37_c00021{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m28_c00021{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m80_c00021{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m90_c00021{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m26_c00021{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m42_c00021{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mbf_c00021{transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);}
.mad_c00021{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m5c_c00021{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m84_c00021{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m98_c00021{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m38_c00021{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m55_c00021{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.mab_c00021{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m85_c00021{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mb4_c00021{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mc7_c00021{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m4_c00021{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.md_c00021{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m58_c00021{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m31_c00021{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.mdc_c00021{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.mc9_c00021{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m61_c00021{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m48_c00021{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m32_c00021{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m6a_c00021{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m66_c00021{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mb0_c00021{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m6b_c00021{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.md1_c00021{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m11_c00021{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m56_c00021{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m4c_c00021{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m8_c00021{transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);}
.m1_c00021{transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);}
.m4f_c00021{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mce_c00021{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m23_c00021{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m21_c00021{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mc2_c00021{transform:matrix(0.672276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672276,0.000000,0.000000,0.250000,0,0);}
.mb3_c00021{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m14_c00021{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m43_c00021{transform:matrix(0.724359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.724359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.724359,0.000000,0.000000,0.250000,0,0);}
.m2f_c00021{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m4e_c00021{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m54_c00021{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m20_c00021{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m5a_c00021{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mb5_c00021{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m5_c00021{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mbc_c00021{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m60_c00021{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.md0_c00021{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m88_c00021{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m86_c00021{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m0_c00021{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.md6_c00021{transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);}
.m44_c00021{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.m8b_c00021{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.ma7_c00021{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.v0_c00021{vertical-align:0.000000px;}
.ls0_c00021{letter-spacing:0.000000px;}
.sc__c00021{text-shadow:none;}
.sc0_c00021{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00021{-webkit-text-stroke:0px transparent;}
.sc0_c00021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00021{word-spacing:0.000000px;}
.ws0_c00021{word-spacing:1.181863px;}
.fc0_c00021{color:transparent;}
.fs0_c00021{font-size:18.720000px;}
.fs1_c00021{font-size:20.400000px;}
.fs4_c00021{font-size:25.500000px;}
.fs2_c00021{font-size:28.920000px;}
.fs5_c00021{font-size:32.340000px;}
.fs3_c00021{font-size:35.700000px;}
.fs6_c00021{font-size:39.120000px;}
.y0_c00021{bottom:0.000000px;}
.yc8_c00021{bottom:252.405000px;}
.yc9_c00021{bottom:253.245000px;}
.ycb_c00021{bottom:254.325000px;}
.ycc_c00021{bottom:254.745000px;}
.yc7_c00021{bottom:255.405000px;}
.yca_c00021{bottom:256.905000px;}
.yc4_c00021{bottom:272.745000px;}
.yc3_c00021{bottom:274.470000px;}
.yc5_c00021{bottom:274.905000px;}
.yc6_c00021{bottom:276.405000px;}
.ybd_c00021{bottom:292.245000px;}
.yc0_c00021{bottom:293.745000px;}
.ybf_c00021{bottom:294.405000px;}
.ybe_c00021{bottom:294.630000px;}
.yc2_c00021{bottom:295.470000px;}
.yc1_c00021{bottom:295.905000px;}
.ybc_c00021{bottom:311.745000px;}
.yba_c00021{bottom:313.245000px;}
.ybb_c00021{bottom:314.130000px;}
.yb9_c00021{bottom:315.405000px;}
.yb8_c00021{bottom:332.745000px;}
.yb5_c00021{bottom:333.630000px;}
.yb7_c00021{bottom:334.470000px;}
.yb6_c00021{bottom:334.905000px;}
.yb1_c00021{bottom:351.405000px;}
.yb0_c00021{bottom:351.825000px;}
.yb2_c00021{bottom:352.245000px;}
.yb4_c00021{bottom:353.970000px;}
.yaf_c00021{bottom:354.405000px;}
.yb3_c00021{bottom:355.470000px;}
.yad_c00021{bottom:370.905000px;}
.yae_c00021{bottom:371.745000px;}
.yaa_c00021{bottom:373.245000px;}
.yab_c00021{bottom:373.470000px;}
.ya9_c00021{bottom:373.905000px;}
.yac_c00021{bottom:374.130000px;}
.ya4_c00021{bottom:391.245000px;}
.ya5_c00021{bottom:393.405000px;}
.ya6_c00021{bottom:393.630000px;}
.ya8_c00021{bottom:394.470000px;}
.ya7_c00021{bottom:394.905000px;}
.ya3_c00021{bottom:410.745000px;}
.ya2_c00021{bottom:411.825000px;}
.y9e_c00021{bottom:412.245000px;}
.ya1_c00021{bottom:413.130000px;}
.y9f_c00021{bottom:413.970000px;}
.ya0_c00021{bottom:414.405000px;}
.y99_c00021{bottom:431.745000px;}
.y9d_c00021{bottom:432.405000px;}
.y9a_c00021{bottom:432.630000px;}
.y9b_c00021{bottom:432.825000px;}
.y9c_c00021{bottom:433.905000px;}
.y96_c00021{bottom:451.245000px;}
.y98_c00021{bottom:451.905000px;}
.y97_c00021{bottom:452.325000px;}
.y95_c00021{bottom:453.405000px;}
.y94_c00021{bottom:470.325000px;}
.y8f_c00021{bottom:470.745000px;}
.y92_c00021{bottom:471.630000px;}
.y93_c00021{bottom:472.470000px;}
.y90_c00021{bottom:472.905000px;}
.y91_c00021{bottom:473.130000px;}
.y8d_c00021{bottom:492.405000px;}
.y8e_c00021{bottom:493.905000px;}
.y88_c00021{bottom:509.745000px;}
.y8b_c00021{bottom:510.825000px;}
.y87_c00021{bottom:511.905000px;}
.y8a_c00021{bottom:512.130000px;}
.y89_c00021{bottom:512.970000px;}
.y8c_c00021{bottom:513.405000px;}
.y86_c00021{bottom:530.745000px;}
.y85_c00021{bottom:532.470000px;}
.y84_c00021{bottom:532.905000px;}
.y83_c00021{bottom:547.905000px;}
.y7e_c00021{bottom:549.180000px;}
.y81_c00021{bottom:550.245000px;}
.y82_c00021{bottom:551.970000px;}
.y80_c00021{bottom:552.405000px;}
.y7f_c00021{bottom:553.470000px;}
.y7c_c00021{bottom:568.905000px;}
.y7a_c00021{bottom:569.745000px;}
.y7d_c00021{bottom:571.470000px;}
.y7b_c00021{bottom:571.905000px;}
.y76_c00021{bottom:589.245000px;}
.y77_c00021{bottom:591.405000px;}
.y78_c00021{bottom:591.630000px;}
.y79_c00021{bottom:592.470000px;}
.y73_c00021{bottom:608.745000px;}
.y74_c00021{bottom:610.905000px;}
.y75_c00021{bottom:611.130000px;}
.y71_c00021{bottom:627.405000px;}
.y72_c00021{bottom:628.245000px;}
.y6f_c00021{bottom:629.745000px;}
.y70_c00021{bottom:631.470000px;}
.y6d_c00021{bottom:648.825000px;}
.y6c_c00021{bottom:649.245000px;}
.y6e_c00021{bottom:649.905000px;}
.y6b_c00021{bottom:651.405000px;}
.y6a_c00021{bottom:668.325000px;}
.y65_c00021{bottom:668.745000px;}
.y68_c00021{bottom:669.405000px;}
.y69_c00021{bottom:669.630000px;}
.y67_c00021{bottom:670.470000px;}
.y66_c00021{bottom:670.905000px;}
.y5f_c00021{bottom:688.245000px;}
.y64_c00021{bottom:688.905000px;}
.y62_c00021{bottom:689.130000px;}
.y61_c00021{bottom:689.970000px;}
.y60_c00021{bottom:690.405000px;}
.y63_c00021{bottom:691.470000px;}
.y5d_c00021{bottom:707.745000px;}
.y5e_c00021{bottom:708.630000px;}
.y5c_c00021{bottom:709.905000px;}
.y58_c00021{bottom:725.325000px;}
.y5b_c00021{bottom:727.245000px;}
.y57_c00021{bottom:728.325000px;}
.y5a_c00021{bottom:729.405000px;}
.y59_c00021{bottom:729.630000px;}
.y55_c00021{bottom:746.745000px;}
.y54_c00021{bottom:748.905000px;}
.y56_c00021{bottom:749.130000px;}
.y50_c00021{bottom:765.405000px;}
.y52_c00021{bottom:767.745000px;}
.y4f_c00021{bottom:768.405000px;}
.y53_c00021{bottom:769.470000px;}
.y51_c00021{bottom:769.905000px;}
.y4c_c00021{bottom:787.245000px;}
.y4e_c00021{bottom:787.905000px;}
.y4d_c00021{bottom:788.130000px;}
.y4b_c00021{bottom:789.405000px;}
.y45_c00021{bottom:804.405000px;}
.y4a_c00021{bottom:805.470000px;}
.y44_c00021{bottom:806.745000px;}
.y49_c00021{bottom:807.405000px;}
.y43_c00021{bottom:807.630000px;}
.y47_c00021{bottom:807.825000px;}
.y46_c00021{bottom:808.470000px;}
.y48_c00021{bottom:808.905000px;}
.y41_c00021{bottom:824.745000px;}
.y3f_c00021{bottom:825.825000px;}
.y42_c00021{bottom:826.905000px;}
.y3e_c00021{bottom:828.405000px;}
.y40_c00021{bottom:828.630000px;}
.y39_c00021{bottom:845.745000px;}
.y3d_c00021{bottom:846.825000px;}
.y3c_c00021{bottom:847.470000px;}
.y3a_c00021{bottom:847.905000px;}
.y3b_c00021{bottom:848.970000px;}
.y35_c00021{bottom:865.245000px;}
.y37_c00021{bottom:866.130000px;}
.y38_c00021{bottom:866.970000px;}
.y36_c00021{bottom:867.405000px;}
.y33_c00021{bottom:884.745000px;}
.y32_c00021{bottom:885.825000px;}
.y30_c00021{bottom:886.245000px;}
.y31_c00021{bottom:886.905000px;}
.y34_c00021{bottom:887.130000px;}
.y2f_c00021{bottom:887.970000px;}
.y2d_c00021{bottom:904.245000px;}
.y2a_c00021{bottom:905.325000px;}
.y2e_c00021{bottom:905.970000px;}
.y2c_c00021{bottom:906.405000px;}
.y2b_c00021{bottom:906.630000px;}
.y28_c00021{bottom:907.470000px;}
.y29_c00021{bottom:907.905000px;}
.y26_c00021{bottom:924.825000px;}
.y23_c00021{bottom:925.245000px;}
.y27_c00021{bottom:925.905000px;}
.y25_c00021{bottom:926.970000px;}
.y24_c00021{bottom:927.405000px;}
.y1f_c00021{bottom:944.325000px;}
.y20_c00021{bottom:944.745000px;}
.y22_c00021{bottom:945.405000px;}
.y21_c00021{bottom:945.630000px;}
.y1e_c00021{bottom:946.470000px;}
.y1d_c00021{bottom:946.905000px;}
.y1c_c00021{bottom:964.245000px;}
.y1b_c00021{bottom:966.405000px;}
.y16_c00021{bottom:983.745000px;}
.y1a_c00021{bottom:984.405000px;}
.y18_c00021{bottom:984.630000px;}
.y17_c00021{bottom:984.825000px;}
.y15_c00021{bottom:985.905000px;}
.y19_c00021{bottom:986.970000px;}
.y13_c00021{bottom:1002.180000px;}
.y12_c00021{bottom:1003.245000px;}
.y14_c00021{bottom:1003.905000px;}
.y11_c00021{bottom:1004.130000px;}
.yf_c00021{bottom:1004.970000px;}
.y10_c00021{bottom:1005.405000px;}
.yc_c00021{bottom:1022.745000px;}
.ye_c00021{bottom:1023.630000px;}
.yd_c00021{bottom:1024.905000px;}
.y8_c00021{bottom:1042.245000px;}
.ya_c00021{bottom:1043.970000px;}
.y9_c00021{bottom:1044.405000px;}
.yb_c00021{bottom:1044.630000px;}
.y4_c00021{bottom:1061.745000px;}
.y7_c00021{bottom:1062.825000px;}
.y3_c00021{bottom:1063.905000px;}
.y6_c00021{bottom:1064.130000px;}
.y5_c00021{bottom:1064.970000px;}
.y2_c00021{bottom:1102.050000px;}
.y1_c00021{bottom:1103.130000px;}
.h1_c00021{height:23.025234px;}
.h2_c00021{height:25.091602px;}
.h5_c00021{height:31.364502px;}
.h3_c00021{height:35.571035px;}
.h6_c00021{height:39.777568px;}
.h4_c00021{height:43.910303px;}
.h7_c00021{height:48.116836px;}
.h0_c00021{height:1335.000000px;}
.w0_c00021{width:880.500000px;}
.x0_c00021{left:0.000000px;}
.xda_c00021{left:150.000000px;}
.x9d_c00021{left:151.500000px;}
.x6f_c00021{left:153.000000px;}
.x1_c00021{left:154.500000px;}
.x1a_c00021{left:155.775000px;}
.xf6_c00021{left:166.080000px;}
.xb4_c00021{left:168.000000px;}
.x5b_c00021{left:169.500000px;}
.x25_c00021{left:175.080000px;}
.x32_c00021{left:177.000000px;}
.xe_c00021{left:178.920000px;}
.x67_c00021{left:183.000000px;}
.xcd_c00021{left:186.420000px;}
.xc6_c00021{left:187.500000px;}
.xa2_c00021{left:189.000000px;}
.xdb_c00021{left:190.500000px;}
.x3_c00021{left:192.000000px;}
.x5c_c00021{left:193.920000px;}
.xad_c00021{left:195.000000px;}
.x1b_c00021{left:197.775000px;}
.xbf_c00021{left:199.500000px;}
.xf_c00021{left:202.920000px;}
.x3d_c00021{left:205.500000px;}
.xc7_c00021{left:207.000000px;}
.xb6_c00021{left:210.000000px;}
.xc0_c00021{left:213.000000px;}
.xde_c00021{left:214.080000px;}
.xae_c00021{left:215.580000px;}
.x53_c00021{left:218.580000px;}
.x5d_c00021{left:223.080000px;}
.x33_c00021{left:226.500000px;}
.x49_c00021{left:227.580000px;}
.xe4_c00021{left:229.500000px;}
.x10_c00021{left:231.000000px;}
.xe9_c00021{left:236.580000px;}
.x76_c00021{left:240.000000px;}
.x1c_c00021{left:242.145000px;}
.xc1_c00021{left:244.920000px;}
.x26_c00021{left:246.000000px;}
.x3e_c00021{left:248.580000px;}
.x4_c00021{left:250.080000px;}
.xa3_c00021{left:251.580000px;}
.xbd_c00021{left:256.500000px;}
.x68_c00021{left:259.920000px;}
.x5e_c00021{left:261.000000px;}
.xf5_c00021{left:262.080000px;}
.x27_c00021{left:265.500000px;}
.xdf_c00021{left:268.500000px;}
.x87_c00021{left:269.580000px;}
.x11_c00021{left:271.920000px;}
.x77_c00021{left:273.000000px;}
.xa4_c00021{left:274.080000px;}
.x34_c00021{left:276.000000px;}
.xe5_c00021{left:277.920000px;}
.x28_c00021{left:279.000000px;}
.x8b_c00021{left:280.920000px;}
.xea_c00021{left:282.000000px;}
.x69_c00021{left:286.500000px;}
.x70_c00021{left:289.500000px;}
.xd4_c00021{left:292.500000px;}
.xf1_c00021{left:294.000000px;}
.xb7_c00021{left:297.000000px;}
.xaf_c00021{left:298.500000px;}
.x9e_c00021{left:300.000000px;}
.xe3_c00021{left:301.080000px;}
.x78_c00021{left:303.000000px;}
.x4a_c00021{left:306.000000px;}
.x1d_c00021{left:309.000000px;}
.x54_c00021{left:312.000000px;}
.xe6_c00021{left:315.000000px;}
.x5_c00021{left:316.500000px;}
.x96_c00021{left:319.500000px;}
.x5f_c00021{left:321.000000px;}
.x8c_c00021{left:322.500000px;}
.x3f_c00021{left:324.000000px;}
.x35_c00021{left:325.500000px;}
.x93_c00021{left:327.000000px;}
.x29_c00021{left:329.580000px;}
.xa5_c00021{left:331.080000px;}
.x99_c00021{left:334.500000px;}
.xf0_c00021{left:336.000000px;}
.x60_c00021{left:337.500000px;}
.x4b_c00021{left:339.000000px;}
.xb8_c00021{left:340.080000px;}
.x55_c00021{left:341.580000px;}
.x6a_c00021{left:343.080000px;}
.xd1_c00021{left:345.000000px;}
.x12_c00021{left:346.500000px;}
.x83_c00021{left:348.000000px;}
.x40_c00021{left:351.420000px;}
.x6_c00021{left:354.000000px;}
.x1e_c00021{left:357.000000px;}
.xc2_c00021{left:359.580000px;}
.xd5_c00021{left:361.920000px;}
.x6b_c00021{left:363.000000px;}
.xb0_c00021{left:364.080000px;}
.xd8_c00021{left:366.000000px;}
.x71_c00021{left:367.080000px;}
.xf2_c00021{left:370.500000px;}
.x8d_c00021{left:373.080000px;}
.xe0_c00021{left:375.000000px;}
.xc8_c00021{left:376.275000px;}
.xa6_c00021{left:377.580000px;}
.x36_c00021{left:379.500000px;}
.x56_c00021{left:382.080000px;}
.x7c_c00021{left:388.500000px;}
.x79_c00021{left:390.000000px;}
.x4c_c00021{left:391.500000px;}
.x2_c00021{left:394.500000px;}
.x8e_c00021{left:395.580000px;}
.xb5_c00021{left:397.500000px;}
.xa7_c00021{left:399.420000px;}
.x37_c00021{left:401.580000px;}
.x57_c00021{left:405.000000px;}
.x7d_c00021{left:408.420000px;}
.x7a_c00021{left:412.500000px;}
.x4d_c00021{left:414.420000px;}
.x8f_c00021{left:415.500000px;}
.xeb_c00021{left:416.580000px;}
.x2a_c00021{left:418.080000px;}
.x94_c00021{left:421.080000px;}
.xc3_c00021{left:423.420000px;}
.x7_c00021{left:427.080000px;}
.x61_c00021{left:429.000000px;}
.x1f_c00021{left:430.500000px;}
.x88_c00021{left:432.000000px;}
.x7e_c00021{left:436.500000px;}
.x41_c00021{left:437.580000px;}
.x6c_c00021{left:441.420000px;}
.x4e_c00021{left:442.500000px;}
.x13_c00021{left:444.000000px;}
.x20_c00021{left:447.000000px;}
.x72_c00021{left:448.080000px;}
.x2b_c00021{left:450.000000px;}
.x42_c00021{left:456.420000px;}
.xb9_c00021{left:459.000000px;}
.x58_c00021{left:462.420000px;}
.x9a_c00021{left:464.580000px;}
.xc9_c00021{left:466.500000px;}
.x8_c00021{left:468.000000px;}
.x95_c00021{left:469.500000px;}
.x14_c00021{left:471.420000px;}
.xdc_c00021{left:474.000000px;}
.xd6_c00021{left:477.420000px;}
.x84_c00021{left:478.500000px;}
.x43_c00021{left:481.500000px;}
.x4f_c00021{left:484.920000px;}
.xca_c00021{left:486.000000px;}
.x2c_c00021{left:487.080000px;}
.x59_c00021{left:489.000000px;}
.x62_c00021{left:490.080000px;}
.x7f_c00021{left:491.580000px;}
.xe1_c00021{left:493.080000px;}
.xec_c00021{left:495.420000px;}
.x9f_c00021{left:496.500000px;}
.x73_c00021{left:497.775000px;}
.xf3_c00021{left:499.920000px;}
.x9_c00021{left:501.000000px;}
.xa8_c00021{left:502.920000px;}
.x63_c00021{left:510.000000px;}
.x15_c00021{left:513.000000px;}
.xba_c00021{left:514.920000px;}
.xe7_c00021{left:516.000000px;}
.x21_c00021{left:519.000000px;}
.xa0_c00021{left:520.500000px;}
.xce_c00021{left:523.080000px;}
.x9b_c00021{left:524.580000px;}
.xd2_c00021{left:526.080000px;}
.xd7_c00021{left:528.000000px;}
.xed_c00021{left:529.500000px;}
.x38_c00021{left:532.080000px;}
.x97_c00021{left:533.775000px;}
.x44_c00021{left:536.580000px;}
.xcb_c00021{left:539.580000px;}
.x50_c00021{left:541.080000px;}
.x22_c00021{left:543.000000px;}
.x5a_c00021{left:545.580000px;}
.xa_c00021{left:546.855000px;}
.xbb_c00021{left:552.000000px;}
.xdd_c00021{left:555.000000px;}
.xcf_c00021{left:556.920000px;}
.xcc_c00021{left:558.420000px;}
.x89_c00021{left:561.420000px;}
.x39_c00021{left:562.920000px;}
.x6d_c00021{left:565.500000px;}
.x45_c00021{left:567.000000px;}
.xee_c00021{left:568.500000px;}
.xe2_c00021{left:570.000000px;}
.x2d_c00021{left:571.500000px;}
.xb1_c00021{left:577.500000px;}
.x64_c00021{left:579.000000px;}
.xa9_c00021{left:582.000000px;}
.x16_c00021{left:583.500000px;}
.x85_c00021{left:585.000000px;}
.xd0_c00021{left:586.500000px;}
.xb_c00021{left:589.920000px;}
.x51_c00021{left:592.080000px;}
.x9c_c00021{left:596.580000px;}
.x90_c00021{left:600.000000px;}
.x17_c00021{left:607.500000px;}
.x2e_c00021{left:610.920000px;}
.x86_c00021{left:613.500000px;}
.x3a_c00021{left:616.500000px;}
.xaa_c00021{left:618.000000px;}
.xc4_c00021{left:619.920000px;}
.x46_c00021{left:622.080000px;}
.x91_c00021{left:623.775000px;}
.x98_c00021{left:626.580000px;}
.x18_c00021{left:629.145000px;}
.x80_c00021{left:631.500000px;}
.xd3_c00021{left:633.000000px;}
.xb2_c00021{left:634.080000px;}
.x6e_c00021{left:635.580000px;}
.x47_c00021{left:640.920000px;}
.x23_c00021{left:646.080000px;}
.xbe_c00021{left:648.000000px;}
.x74_c00021{left:649.500000px;}
.xef_c00021{left:650.580000px;}
.x2f_c00021{left:652.500000px;}
.x81_c00021{left:655.920000px;}
.x8a_c00021{left:661.500000px;}
.xc_c00021{left:662.775000px;}
.x65_c00021{left:664.500000px;}
.x48_c00021{left:667.080000px;}
.xd9_c00021{left:669.000000px;}
.xc5_c00021{left:670.500000px;}
.x30_c00021{left:672.000000px;}
.xa1_c00021{left:675.000000px;}
.xe8_c00021{left:676.500000px;}
.xab_c00021{left:678.000000px;}
.xb3_c00021{left:681.420000px;}
.x31_c00021{left:685.920000px;}
.x75_c00021{left:688.080000px;}
.x3b_c00021{left:690.000000px;}
.x19_c00021{left:691.080000px;}
.x52_c00021{left:696.420000px;}
.x24_c00021{left:697.920000px;}
.xf7_c00021{left:699.420000px;}
.xac_c00021{left:700.920000px;}
.x82_c00021{left:702.000000px;}
.x66_c00021{left:703.500000px;}
.xbc_c00021{left:704.580000px;}
.x7b_c00021{left:706.080000px;}
.xd_c00021{left:707.580000px;}
.x3c_c00021{left:709.920000px;}
.xf4_c00021{left:713.580000px;}
.x92_c00021{left:717.000000px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.ls0_c00021{letter-spacing:0.000000pt;}
.ws1_c00021{word-spacing:0.000000pt;}
.ws0_c00021{word-spacing:1.050545pt;}
.fs0_c00021{font-size:16.640000pt;}
.fs1_c00021{font-size:18.133333pt;}
.fs4_c00021{font-size:22.666667pt;}
.fs2_c00021{font-size:25.706667pt;}
.fs5_c00021{font-size:28.746667pt;}
.fs3_c00021{font-size:31.733333pt;}
.fs6_c00021{font-size:34.773333pt;}
.y0_c00021{bottom:0.000000pt;}
.yc8_c00021{bottom:224.360000pt;}
.yc9_c00021{bottom:225.106667pt;}
.ycb_c00021{bottom:226.066667pt;}
.ycc_c00021{bottom:226.440000pt;}
.yc7_c00021{bottom:227.026667pt;}
.yca_c00021{bottom:228.360000pt;}
.yc4_c00021{bottom:242.440000pt;}
.yc3_c00021{bottom:243.973333pt;}
.yc5_c00021{bottom:244.360000pt;}
.yc6_c00021{bottom:245.693333pt;}
.ybd_c00021{bottom:259.773333pt;}
.yc0_c00021{bottom:261.106667pt;}
.ybf_c00021{bottom:261.693333pt;}
.ybe_c00021{bottom:261.893333pt;}
.yc2_c00021{bottom:262.640000pt;}
.yc1_c00021{bottom:263.026667pt;}
.ybc_c00021{bottom:277.106667pt;}
.yba_c00021{bottom:278.440000pt;}
.ybb_c00021{bottom:279.226667pt;}
.yb9_c00021{bottom:280.360000pt;}
.yb8_c00021{bottom:295.773333pt;}
.yb5_c00021{bottom:296.560000pt;}
.yb7_c00021{bottom:297.306667pt;}
.yb6_c00021{bottom:297.693333pt;}
.yb1_c00021{bottom:312.360000pt;}
.yb0_c00021{bottom:312.733333pt;}
.yb2_c00021{bottom:313.106667pt;}
.yb4_c00021{bottom:314.640000pt;}
.yaf_c00021{bottom:315.026667pt;}
.yb3_c00021{bottom:315.973333pt;}
.yad_c00021{bottom:329.693333pt;}
.yae_c00021{bottom:330.440000pt;}
.yaa_c00021{bottom:331.773333pt;}
.yab_c00021{bottom:331.973333pt;}
.ya9_c00021{bottom:332.360000pt;}
.yac_c00021{bottom:332.560000pt;}
.ya4_c00021{bottom:347.773333pt;}
.ya5_c00021{bottom:349.693333pt;}
.ya6_c00021{bottom:349.893333pt;}
.ya8_c00021{bottom:350.640000pt;}
.ya7_c00021{bottom:351.026667pt;}
.ya3_c00021{bottom:365.106667pt;}
.ya2_c00021{bottom:366.066667pt;}
.y9e_c00021{bottom:366.440000pt;}
.ya1_c00021{bottom:367.226667pt;}
.y9f_c00021{bottom:367.973333pt;}
.ya0_c00021{bottom:368.360000pt;}
.y99_c00021{bottom:383.773333pt;}
.y9d_c00021{bottom:384.360000pt;}
.y9a_c00021{bottom:384.560000pt;}
.y9b_c00021{bottom:384.733333pt;}
.y9c_c00021{bottom:385.693333pt;}
.y96_c00021{bottom:401.106667pt;}
.y98_c00021{bottom:401.693333pt;}
.y97_c00021{bottom:402.066667pt;}
.y95_c00021{bottom:403.026667pt;}
.y94_c00021{bottom:418.066667pt;}
.y8f_c00021{bottom:418.440000pt;}
.y92_c00021{bottom:419.226667pt;}
.y93_c00021{bottom:419.973333pt;}
.y90_c00021{bottom:420.360000pt;}
.y91_c00021{bottom:420.560000pt;}
.y8d_c00021{bottom:437.693333pt;}
.y8e_c00021{bottom:439.026667pt;}
.y88_c00021{bottom:453.106667pt;}
.y8b_c00021{bottom:454.066667pt;}
.y87_c00021{bottom:455.026667pt;}
.y8a_c00021{bottom:455.226667pt;}
.y89_c00021{bottom:455.973333pt;}
.y8c_c00021{bottom:456.360000pt;}
.y86_c00021{bottom:471.773333pt;}
.y85_c00021{bottom:473.306667pt;}
.y84_c00021{bottom:473.693333pt;}
.y83_c00021{bottom:487.026667pt;}
.y7e_c00021{bottom:488.160000pt;}
.y81_c00021{bottom:489.106667pt;}
.y82_c00021{bottom:490.640000pt;}
.y80_c00021{bottom:491.026667pt;}
.y7f_c00021{bottom:491.973333pt;}
.y7c_c00021{bottom:505.693333pt;}
.y7a_c00021{bottom:506.440000pt;}
.y7d_c00021{bottom:507.973333pt;}
.y7b_c00021{bottom:508.360000pt;}
.y76_c00021{bottom:523.773333pt;}
.y77_c00021{bottom:525.693333pt;}
.y78_c00021{bottom:525.893333pt;}
.y79_c00021{bottom:526.640000pt;}
.y73_c00021{bottom:541.106667pt;}
.y74_c00021{bottom:543.026667pt;}
.y75_c00021{bottom:543.226667pt;}
.y71_c00021{bottom:557.693333pt;}
.y72_c00021{bottom:558.440000pt;}
.y6f_c00021{bottom:559.773333pt;}
.y70_c00021{bottom:561.306667pt;}
.y6d_c00021{bottom:576.733333pt;}
.y6c_c00021{bottom:577.106667pt;}
.y6e_c00021{bottom:577.693333pt;}
.y6b_c00021{bottom:579.026667pt;}
.y6a_c00021{bottom:594.066667pt;}
.y65_c00021{bottom:594.440000pt;}
.y68_c00021{bottom:595.026667pt;}
.y69_c00021{bottom:595.226667pt;}
.y67_c00021{bottom:595.973333pt;}
.y66_c00021{bottom:596.360000pt;}
.y5f_c00021{bottom:611.773333pt;}
.y64_c00021{bottom:612.360000pt;}
.y62_c00021{bottom:612.560000pt;}
.y61_c00021{bottom:613.306667pt;}
.y60_c00021{bottom:613.693333pt;}
.y63_c00021{bottom:614.640000pt;}
.y5d_c00021{bottom:629.106667pt;}
.y5e_c00021{bottom:629.893333pt;}
.y5c_c00021{bottom:631.026667pt;}
.y58_c00021{bottom:644.733333pt;}
.y5b_c00021{bottom:646.440000pt;}
.y57_c00021{bottom:647.400000pt;}
.y5a_c00021{bottom:648.360000pt;}
.y59_c00021{bottom:648.560000pt;}
.y55_c00021{bottom:663.773333pt;}
.y54_c00021{bottom:665.693333pt;}
.y56_c00021{bottom:665.893333pt;}
.y50_c00021{bottom:680.360000pt;}
.y52_c00021{bottom:682.440000pt;}
.y4f_c00021{bottom:683.026667pt;}
.y53_c00021{bottom:683.973333pt;}
.y51_c00021{bottom:684.360000pt;}
.y4c_c00021{bottom:699.773333pt;}
.y4e_c00021{bottom:700.360000pt;}
.y4d_c00021{bottom:700.560000pt;}
.y4b_c00021{bottom:701.693333pt;}
.y45_c00021{bottom:715.026667pt;}
.y4a_c00021{bottom:715.973333pt;}
.y44_c00021{bottom:717.106667pt;}
.y49_c00021{bottom:717.693333pt;}
.y43_c00021{bottom:717.893333pt;}
.y47_c00021{bottom:718.066667pt;}
.y46_c00021{bottom:718.640000pt;}
.y48_c00021{bottom:719.026667pt;}
.y41_c00021{bottom:733.106667pt;}
.y3f_c00021{bottom:734.066667pt;}
.y42_c00021{bottom:735.026667pt;}
.y3e_c00021{bottom:736.360000pt;}
.y40_c00021{bottom:736.560000pt;}
.y39_c00021{bottom:751.773333pt;}
.y3d_c00021{bottom:752.733333pt;}
.y3c_c00021{bottom:753.306667pt;}
.y3a_c00021{bottom:753.693333pt;}
.y3b_c00021{bottom:754.640000pt;}
.y35_c00021{bottom:769.106667pt;}
.y37_c00021{bottom:769.893333pt;}
.y38_c00021{bottom:770.640000pt;}
.y36_c00021{bottom:771.026667pt;}
.y33_c00021{bottom:786.440000pt;}
.y32_c00021{bottom:787.400000pt;}
.y30_c00021{bottom:787.773333pt;}
.y31_c00021{bottom:788.360000pt;}
.y34_c00021{bottom:788.560000pt;}
.y2f_c00021{bottom:789.306667pt;}
.y2d_c00021{bottom:803.773333pt;}
.y2a_c00021{bottom:804.733333pt;}
.y2e_c00021{bottom:805.306667pt;}
.y2c_c00021{bottom:805.693333pt;}
.y2b_c00021{bottom:805.893333pt;}
.y28_c00021{bottom:806.640000pt;}
.y29_c00021{bottom:807.026667pt;}
.y26_c00021{bottom:822.066667pt;}
.y23_c00021{bottom:822.440000pt;}
.y27_c00021{bottom:823.026667pt;}
.y25_c00021{bottom:823.973333pt;}
.y24_c00021{bottom:824.360000pt;}
.y1f_c00021{bottom:839.400000pt;}
.y20_c00021{bottom:839.773333pt;}
.y22_c00021{bottom:840.360000pt;}
.y21_c00021{bottom:840.560000pt;}
.y1e_c00021{bottom:841.306667pt;}
.y1d_c00021{bottom:841.693333pt;}
.y1c_c00021{bottom:857.106667pt;}
.y1b_c00021{bottom:859.026667pt;}
.y16_c00021{bottom:874.440000pt;}
.y1a_c00021{bottom:875.026667pt;}
.y18_c00021{bottom:875.226667pt;}
.y17_c00021{bottom:875.400000pt;}
.y15_c00021{bottom:876.360000pt;}
.y19_c00021{bottom:877.306667pt;}
.y13_c00021{bottom:890.826667pt;}
.y12_c00021{bottom:891.773333pt;}
.y14_c00021{bottom:892.360000pt;}
.y11_c00021{bottom:892.560000pt;}
.yf_c00021{bottom:893.306667pt;}
.y10_c00021{bottom:893.693333pt;}
.yc_c00021{bottom:909.106667pt;}
.ye_c00021{bottom:909.893333pt;}
.yd_c00021{bottom:911.026667pt;}
.y8_c00021{bottom:926.440000pt;}
.ya_c00021{bottom:927.973333pt;}
.y9_c00021{bottom:928.360000pt;}
.yb_c00021{bottom:928.560000pt;}
.y4_c00021{bottom:943.773333pt;}
.y7_c00021{bottom:944.733333pt;}
.y3_c00021{bottom:945.693333pt;}
.y6_c00021{bottom:945.893333pt;}
.y5_c00021{bottom:946.640000pt;}
.y2_c00021{bottom:979.600000pt;}
.y1_c00021{bottom:980.560000pt;}
.h1_c00021{height:20.466875pt;}
.h2_c00021{height:22.303646pt;}
.h5_c00021{height:27.879557pt;}
.h3_c00021{height:31.618698pt;}
.h6_c00021{height:35.357839pt;}
.h4_c00021{height:39.031380pt;}
.h7_c00021{height:42.770521pt;}
.h0_c00021{height:1186.666667pt;}
.w0_c00021{width:782.666667pt;}
.x0_c00021{left:0.000000pt;}
.xda_c00021{left:133.333333pt;}
.x9d_c00021{left:134.666667pt;}
.x6f_c00021{left:136.000000pt;}
.x1_c00021{left:137.333333pt;}
.x1a_c00021{left:138.466667pt;}
.xf6_c00021{left:147.626667pt;}
.xb4_c00021{left:149.333333pt;}
.x5b_c00021{left:150.666667pt;}
.x25_c00021{left:155.626667pt;}
.x32_c00021{left:157.333333pt;}
.xe_c00021{left:159.040000pt;}
.x67_c00021{left:162.666667pt;}
.xcd_c00021{left:165.706667pt;}
.xc6_c00021{left:166.666667pt;}
.xa2_c00021{left:168.000000pt;}
.xdb_c00021{left:169.333333pt;}
.x3_c00021{left:170.666667pt;}
.x5c_c00021{left:172.373333pt;}
.xad_c00021{left:173.333333pt;}
.x1b_c00021{left:175.800000pt;}
.xbf_c00021{left:177.333333pt;}
.xf_c00021{left:180.373333pt;}
.x3d_c00021{left:182.666667pt;}
.xc7_c00021{left:184.000000pt;}
.xb6_c00021{left:186.666667pt;}
.xc0_c00021{left:189.333333pt;}
.xde_c00021{left:190.293333pt;}
.xae_c00021{left:191.626667pt;}
.x53_c00021{left:194.293333pt;}
.x5d_c00021{left:198.293333pt;}
.x33_c00021{left:201.333333pt;}
.x49_c00021{left:202.293333pt;}
.xe4_c00021{left:204.000000pt;}
.x10_c00021{left:205.333333pt;}
.xe9_c00021{left:210.293333pt;}
.x76_c00021{left:213.333333pt;}
.x1c_c00021{left:215.240000pt;}
.xc1_c00021{left:217.706667pt;}
.x26_c00021{left:218.666667pt;}
.x3e_c00021{left:220.960000pt;}
.x4_c00021{left:222.293333pt;}
.xa3_c00021{left:223.626667pt;}
.xbd_c00021{left:228.000000pt;}
.x68_c00021{left:231.040000pt;}
.x5e_c00021{left:232.000000pt;}
.xf5_c00021{left:232.960000pt;}
.x27_c00021{left:236.000000pt;}
.xdf_c00021{left:238.666667pt;}
.x87_c00021{left:239.626667pt;}
.x11_c00021{left:241.706667pt;}
.x77_c00021{left:242.666667pt;}
.xa4_c00021{left:243.626667pt;}
.x34_c00021{left:245.333333pt;}
.xe5_c00021{left:247.040000pt;}
.x28_c00021{left:248.000000pt;}
.x8b_c00021{left:249.706667pt;}
.xea_c00021{left:250.666667pt;}
.x69_c00021{left:254.666667pt;}
.x70_c00021{left:257.333333pt;}
.xd4_c00021{left:260.000000pt;}
.xf1_c00021{left:261.333333pt;}
.xb7_c00021{left:264.000000pt;}
.xaf_c00021{left:265.333333pt;}
.x9e_c00021{left:266.666667pt;}
.xe3_c00021{left:267.626667pt;}
.x78_c00021{left:269.333333pt;}
.x4a_c00021{left:272.000000pt;}
.x1d_c00021{left:274.666667pt;}
.x54_c00021{left:277.333333pt;}
.xe6_c00021{left:280.000000pt;}
.x5_c00021{left:281.333333pt;}
.x96_c00021{left:284.000000pt;}
.x5f_c00021{left:285.333333pt;}
.x8c_c00021{left:286.666667pt;}
.x3f_c00021{left:288.000000pt;}
.x35_c00021{left:289.333333pt;}
.x93_c00021{left:290.666667pt;}
.x29_c00021{left:292.960000pt;}
.xa5_c00021{left:294.293333pt;}
.x99_c00021{left:297.333333pt;}
.xf0_c00021{left:298.666667pt;}
.x60_c00021{left:300.000000pt;}
.x4b_c00021{left:301.333333pt;}
.xb8_c00021{left:302.293333pt;}
.x55_c00021{left:303.626667pt;}
.x6a_c00021{left:304.960000pt;}
.xd1_c00021{left:306.666667pt;}
.x12_c00021{left:308.000000pt;}
.x83_c00021{left:309.333333pt;}
.x40_c00021{left:312.373333pt;}
.x6_c00021{left:314.666667pt;}
.x1e_c00021{left:317.333333pt;}
.xc2_c00021{left:319.626667pt;}
.xd5_c00021{left:321.706667pt;}
.x6b_c00021{left:322.666667pt;}
.xb0_c00021{left:323.626667pt;}
.xd8_c00021{left:325.333333pt;}
.x71_c00021{left:326.293333pt;}
.xf2_c00021{left:329.333333pt;}
.x8d_c00021{left:331.626667pt;}
.xe0_c00021{left:333.333333pt;}
.xc8_c00021{left:334.466667pt;}
.xa6_c00021{left:335.626667pt;}
.x36_c00021{left:337.333333pt;}
.x56_c00021{left:339.626667pt;}
.x7c_c00021{left:345.333333pt;}
.x79_c00021{left:346.666667pt;}
.x4c_c00021{left:348.000000pt;}
.x2_c00021{left:350.666667pt;}
.x8e_c00021{left:351.626667pt;}
.xb5_c00021{left:353.333333pt;}
.xa7_c00021{left:355.040000pt;}
.x37_c00021{left:356.960000pt;}
.x57_c00021{left:360.000000pt;}
.x7d_c00021{left:363.040000pt;}
.x7a_c00021{left:366.666667pt;}
.x4d_c00021{left:368.373333pt;}
.x8f_c00021{left:369.333333pt;}
.xeb_c00021{left:370.293333pt;}
.x2a_c00021{left:371.626667pt;}
.x94_c00021{left:374.293333pt;}
.xc3_c00021{left:376.373333pt;}
.x7_c00021{left:379.626667pt;}
.x61_c00021{left:381.333333pt;}
.x1f_c00021{left:382.666667pt;}
.x88_c00021{left:384.000000pt;}
.x7e_c00021{left:388.000000pt;}
.x41_c00021{left:388.960000pt;}
.x6c_c00021{left:392.373333pt;}
.x4e_c00021{left:393.333333pt;}
.x13_c00021{left:394.666667pt;}
.x20_c00021{left:397.333333pt;}
.x72_c00021{left:398.293333pt;}
.x2b_c00021{left:400.000000pt;}
.x42_c00021{left:405.706667pt;}
.xb9_c00021{left:408.000000pt;}
.x58_c00021{left:411.040000pt;}
.x9a_c00021{left:412.960000pt;}
.xc9_c00021{left:414.666667pt;}
.x8_c00021{left:416.000000pt;}
.x95_c00021{left:417.333333pt;}
.x14_c00021{left:419.040000pt;}
.xdc_c00021{left:421.333333pt;}
.xd6_c00021{left:424.373333pt;}
.x84_c00021{left:425.333333pt;}
.x43_c00021{left:428.000000pt;}
.x4f_c00021{left:431.040000pt;}
.xca_c00021{left:432.000000pt;}
.x2c_c00021{left:432.960000pt;}
.x59_c00021{left:434.666667pt;}
.x62_c00021{left:435.626667pt;}
.x7f_c00021{left:436.960000pt;}
.xe1_c00021{left:438.293333pt;}
.xec_c00021{left:440.373333pt;}
.x9f_c00021{left:441.333333pt;}
.x73_c00021{left:442.466667pt;}
.xf3_c00021{left:444.373333pt;}
.x9_c00021{left:445.333333pt;}
.xa8_c00021{left:447.040000pt;}
.x63_c00021{left:453.333333pt;}
.x15_c00021{left:456.000000pt;}
.xba_c00021{left:457.706667pt;}
.xe7_c00021{left:458.666667pt;}
.x21_c00021{left:461.333333pt;}
.xa0_c00021{left:462.666667pt;}
.xce_c00021{left:464.960000pt;}
.x9b_c00021{left:466.293333pt;}
.xd2_c00021{left:467.626667pt;}
.xd7_c00021{left:469.333333pt;}
.xed_c00021{left:470.666667pt;}
.x38_c00021{left:472.960000pt;}
.x97_c00021{left:474.466667pt;}
.x44_c00021{left:476.960000pt;}
.xcb_c00021{left:479.626667pt;}
.x50_c00021{left:480.960000pt;}
.x22_c00021{left:482.666667pt;}
.x5a_c00021{left:484.960000pt;}
.xa_c00021{left:486.093333pt;}
.xbb_c00021{left:490.666667pt;}
.xdd_c00021{left:493.333333pt;}
.xcf_c00021{left:495.040000pt;}
.xcc_c00021{left:496.373333pt;}
.x89_c00021{left:499.040000pt;}
.x39_c00021{left:500.373333pt;}
.x6d_c00021{left:502.666667pt;}
.x45_c00021{left:504.000000pt;}
.xee_c00021{left:505.333333pt;}
.xe2_c00021{left:506.666667pt;}
.x2d_c00021{left:508.000000pt;}
.xb1_c00021{left:513.333333pt;}
.x64_c00021{left:514.666667pt;}
.xa9_c00021{left:517.333333pt;}
.x16_c00021{left:518.666667pt;}
.x85_c00021{left:520.000000pt;}
.xd0_c00021{left:521.333333pt;}
.xb_c00021{left:524.373333pt;}
.x51_c00021{left:526.293333pt;}
.x9c_c00021{left:530.293333pt;}
.x90_c00021{left:533.333333pt;}
.x17_c00021{left:540.000000pt;}
.x2e_c00021{left:543.040000pt;}
.x86_c00021{left:545.333333pt;}
.x3a_c00021{left:548.000000pt;}
.xaa_c00021{left:549.333333pt;}
.xc4_c00021{left:551.040000pt;}
.x46_c00021{left:552.960000pt;}
.x91_c00021{left:554.466667pt;}
.x98_c00021{left:556.960000pt;}
.x18_c00021{left:559.240000pt;}
.x80_c00021{left:561.333333pt;}
.xd3_c00021{left:562.666667pt;}
.xb2_c00021{left:563.626667pt;}
.x6e_c00021{left:564.960000pt;}
.x47_c00021{left:569.706667pt;}
.x23_c00021{left:574.293333pt;}
.xbe_c00021{left:576.000000pt;}
.x74_c00021{left:577.333333pt;}
.xef_c00021{left:578.293333pt;}
.x2f_c00021{left:580.000000pt;}
.x81_c00021{left:583.040000pt;}
.x8a_c00021{left:588.000000pt;}
.xc_c00021{left:589.133333pt;}
.x65_c00021{left:590.666667pt;}
.x48_c00021{left:592.960000pt;}
.xd9_c00021{left:594.666667pt;}
.xc5_c00021{left:596.000000pt;}
.x30_c00021{left:597.333333pt;}
.xa1_c00021{left:600.000000pt;}
.xe8_c00021{left:601.333333pt;}
.xab_c00021{left:602.666667pt;}
.xb3_c00021{left:605.706667pt;}
.x31_c00021{left:609.706667pt;}
.x75_c00021{left:611.626667pt;}
.x3b_c00021{left:613.333333pt;}
.x19_c00021{left:614.293333pt;}
.x52_c00021{left:619.040000pt;}
.x24_c00021{left:620.373333pt;}
.xf7_c00021{left:621.706667pt;}
.xac_c00021{left:623.040000pt;}
.x82_c00021{left:624.000000pt;}
.x66_c00021{left:625.333333pt;}
.xbc_c00021{left:626.293333pt;}
.x7b_c00021{left:627.626667pt;}
.xd_c00021{left:628.960000pt;}
.x3c_c00021{left:631.040000pt;}
.xf4_c00021{left:634.293333pt;}
.x92_c00021{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38cdcf12d09605d1ceb4327f.woff2')format("woff");}.ff1_c00022{font-family:ff1_c00022;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m59_c00022{transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);}
.m1e_c00022{transform:matrix(0.331672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331672,0.000000,0.000000,0.250000,0,0);}
.m4c_c00022{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m52_c00022{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.m11_c00022{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.m54_c00022{transform:matrix(0.380187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380187,0.000000,0.000000,0.250000,0,0);}
.m25_c00022{transform:matrix(0.381513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381513,0.000000,0.000000,0.250000,0,0);}
.m24_c00022{transform:matrix(0.382653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382653,0.000000,0.000000,0.250000,0,0);}
.mc_c00022{transform:matrix(0.383581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383581,0.000000,0.000000,0.250000,0,0);}
.m42_c00022{transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);}
.m5f_c00022{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m2_c00022{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.m2f_c00022{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m45_c00022{transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);}
.mb_c00022{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.m12_c00022{transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);}
.m46_c00022{transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);}
.m4f_c00022{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.m28_c00022{transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);}
.m65_c00022{transform:matrix(0.413265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413265,0.000000,0.000000,0.250000,0,0);}
.mf_c00022{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.m38_c00022{transform:matrix(0.418831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418831,0.000000,0.000000,0.250000,0,0);}
.m5c_c00022{transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);}
.m58_c00022{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.m4_c00022{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m3c_c00022{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.m31_c00022{transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);}
.m40_c00022{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.m67_c00022{transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);}
.m23_c00022{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m63_c00022{transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);}
.m17_c00022{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m3_c00022{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m39_c00022{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m5e_c00022{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m55_c00022{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.m33_c00022{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m62_c00022{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m1d_c00022{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m35_c00022{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m3d_c00022{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m27_c00022{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.m1f_c00022{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m16_c00022{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m41_c00022{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m13_c00022{transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);}
.m14_c00022{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m5a_c00022{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m2b_c00022{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m2c_c00022{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m18_c00022{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.m60_c00022{transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);}
.m19_c00022{transform:matrix(0.492220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492220,0.000000,0.000000,0.250000,0,0);}
.m2e_c00022{transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);}
.m5d_c00022{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m66_c00022{transform:matrix(0.497925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497925,0.000000,0.000000,0.250000,0,0);}
.m15_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);}
.m3a_c00022{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m2d_c00022{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m4d_c00022{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m1b_c00022{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.m3f_c00022{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m10_c00022{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_c00022{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m7_c00022{transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);}
.m21_c00022{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.m3b_c00022{transform:matrix(0.539412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539412,0.000000,0.000000,0.250000,0,0);}
.m8_c00022{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m51_c00022{transform:matrix(0.542941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542941,0.000000,0.000000,0.250000,0,0);}
.m32_c00022{transform:matrix(0.546471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546471,0.000000,0.000000,0.250000,0,0);}
.m22_c00022{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m64_c00022{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m50_c00022{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m4a_c00022{transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);}
.m49_c00022{transform:matrix(0.555294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555294,0.000000,0.000000,0.250000,0,0);}
.m57_c00022{transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);}
.m9_c00022{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m3e_c00022{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m37_c00022{transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);}
.m4e_c00022{transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);}
.m43_c00022{transform:matrix(0.561765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561765,0.000000,0.000000,0.250000,0,0);}
.m4b_c00022{transform:matrix(0.564706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564706,0.000000,0.000000,0.250000,0,0);}
.m53_c00022{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.m1a_c00022{transform:matrix(0.571176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571176,0.000000,0.000000,0.250000,0,0);}
.m26_c00022{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m6_c00022{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m44_c00022{transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);}
.m48_c00022{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.m5b_c00022{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m61_c00022{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_c00022{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m5_c00022{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m20_c00022{transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);}
.m2a_c00022{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m1c_c00022{transform:matrix(0.595294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595294,0.000000,0.000000,0.250000,0,0);}
.m36_c00022{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m56_c00022{transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);}
.ma_c00022{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m29_c00022{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.md_c00022{transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);}
.m0_c00022{transform:matrix(0.665064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665064,0.000000,0.000000,0.250000,0,0);}
.m47_c00022{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m30_c00022{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m1_c00022{transform:matrix(0.814103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.814103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.814103,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;}
.fs0_c00022{font-size:18.720000px;}
.fs3_c00022{font-size:20.400000px;}
.fs2_c00022{font-size:25.500000px;}
.fs5_c00022{font-size:28.920000px;}
.fs1_c00022{font-size:32.340000px;}
.fs4_c00022{font-size:35.700000px;}
.fs6_c00022{font-size:39.120000px;}
.y0_c00022{bottom:0.000000px;}
.y65_c00022{bottom:218.970000px;}
.y66_c00022{bottom:219.825000px;}
.y63_c00022{bottom:233.550000px;}
.y60_c00022{bottom:233.970000px;}
.y64_c00022{bottom:234.405000px;}
.y5f_c00022{bottom:234.825000px;}
.y61_c00022{bottom:235.905000px;}
.y62_c00022{bottom:236.970000px;}
.y5d_c00022{bottom:249.405000px;}
.y5e_c00022{bottom:250.050000px;}
.y5b_c00022{bottom:250.245000px;}
.y5c_c00022{bottom:250.470000px;}
.y5a_c00022{bottom:253.905000px;}
.y59_c00022{bottom:263.325000px;}
.y57_c00022{bottom:264.405000px;}
.y58_c00022{bottom:265.470000px;}
.y56_c00022{bottom:266.130000px;}
.y54_c00022{bottom:268.050000px;}
.y55_c00022{bottom:268.905000px;}
.y4d_c00022{bottom:277.470000px;}
.y53_c00022{bottom:278.325000px;}
.y50_c00022{bottom:278.550000px;}
.y51_c00022{bottom:278.970000px;}
.y4f_c00022{bottom:279.405000px;}
.y4e_c00022{bottom:280.470000px;}
.y4c_c00022{bottom:281.325000px;}
.y52_c00022{bottom:281.550000px;}
.y4b_c00022{bottom:283.470000px;}
.y4a_c00022{bottom:292.470000px;}
.y49_c00022{bottom:293.325000px;}
.y46_c00022{bottom:293.550000px;}
.y47_c00022{bottom:294.405000px;}
.y45_c00022{bottom:295.245000px;}
.y48_c00022{bottom:295.470000px;}
.y44_c00022{bottom:298.050000px;}
.y43_c00022{bottom:307.905000px;}
.y40_c00022{bottom:308.325000px;}
.y3f_c00022{bottom:308.550000px;}
.y41_c00022{bottom:309.630000px;}
.y42_c00022{bottom:310.470000px;}
.y3e_c00022{bottom:311.325000px;}
.y3d_c00022{bottom:311.970000px;}
.y3b_c00022{bottom:320.970000px;}
.y3a_c00022{bottom:321.825000px;}
.y39_c00022{bottom:322.050000px;}
.y36_c00022{bottom:323.325000px;}
.y37_c00022{bottom:323.550000px;}
.y3c_c00022{bottom:323.970000px;}
.y35_c00022{bottom:324.405000px;}
.y38_c00022{bottom:325.470000px;}
.y34_c00022{bottom:327.405000px;}
.y2e_c00022{bottom:337.470000px;}
.y32_c00022{bottom:337.905000px;}
.y30_c00022{bottom:338.550000px;}
.y31_c00022{bottom:338.970000px;}
.y2f_c00022{bottom:339.405000px;}
.y2d_c00022{bottom:339.825000px;}
.y33_c00022{bottom:341.550000px;}
.y2c_c00022{bottom:343.050000px;}
.y29_c00022{bottom:352.050000px;}
.y28_c00022{bottom:352.905000px;}
.y2a_c00022{bottom:353.970000px;}
.y27_c00022{bottom:354.630000px;}
.y26_c00022{bottom:354.825000px;}
.y2b_c00022{bottom:355.050000px;}
.y25_c00022{bottom:356.970000px;}
.y24_c00022{bottom:365.970000px;}
.y21_c00022{bottom:366.825000px;}
.y1f_c00022{bottom:367.050000px;}
.y20_c00022{bottom:367.905000px;}
.y22_c00022{bottom:368.130000px;}
.y23_c00022{bottom:368.970000px;}
.y1e_c00022{bottom:370.245000px;}
.y18_c00022{bottom:380.970000px;}
.y1c_c00022{bottom:381.825000px;}
.y1d_c00022{bottom:382.050000px;}
.y1a_c00022{bottom:382.470000px;}
.y19_c00022{bottom:382.905000px;}
.y1b_c00022{bottom:383.970000px;}
.y17_c00022{bottom:384.180000px;}
.y16_c00022{bottom:397.050000px;}
.y15_c00022{bottom:397.905000px;}
.y14_c00022{bottom:398.970000px;}
.y13_c00022{bottom:399.405000px;}
.y12_c00022{bottom:399.825000px;}
.y11_c00022{bottom:401.550000px;}
.yd_c00022{bottom:410.970000px;}
.y10_c00022{bottom:411.405000px;}
.yc_c00022{bottom:411.825000px;}
.yb_c00022{bottom:412.050000px;}
.yf_c00022{bottom:412.470000px;}
.ye_c00022{bottom:412.905000px;}
.ya_c00022{bottom:413.745000px;}
.y9_c00022{bottom:416.550000px;}
.y7_c00022{bottom:425.325000px;}
.y8_c00022{bottom:426.630000px;}
.y4_c00022{bottom:426.825000px;}
.y3_c00022{bottom:427.470000px;}
.y6_c00022{bottom:428.550000px;}
.y5_c00022{bottom:428.970000px;}
.y2_c00022{bottom:431.325000px;}
.y1_c00022{bottom:1103.130000px;}
.h1_c00022{height:23.025234px;}
.h4_c00022{height:25.091602px;}
.h3_c00022{height:31.364502px;}
.h6_c00022{height:35.571035px;}
.h2_c00022{height:39.777568px;}
.h5_c00022{height:43.910303px;}
.h7_c00022{height:48.116836px;}
.h0_c00022{height:1335.000000px;}
.w0_c00022{width:880.500000px;}
.x0_c00022{left:0.000000px;}
.x7d_c00022{left:147.000000px;}
.x3_c00022{left:151.920000px;}
.x6f_c00022{left:157.500000px;}
.x1a_c00022{left:168.000000px;}
.x11_c00022{left:169.080000px;}
.x39_c00022{left:172.500000px;}
.x58_c00022{left:173.580000px;}
.x44_c00022{left:175.080000px;}
.x4_c00022{left:181.500000px;}
.x4e_c00022{left:182.580000px;}
.x5_c00022{left:198.420000px;}
.x3a_c00022{left:202.500000px;}
.x4f_c00022{left:205.080000px;}
.x7e_c00022{left:214.080000px;}
.x70_c00022{left:219.645000px;}
.x67_c00022{left:226.080000px;}
.x59_c00022{left:229.920000px;}
.x6_c00022{left:232.080000px;}
.x3b_c00022{left:234.000000px;}
.x2f_c00022{left:235.920000px;}
.x7f_c00022{left:241.500000px;}
.x77_c00022{left:244.080000px;}
.x12_c00022{left:246.420000px;}
.x68_c00022{left:247.500000px;}
.x7_c00022{left:252.000000px;}
.x45_c00022{left:256.500000px;}
.x30_c00022{left:259.080000px;}
.x1b_c00022{left:263.580000px;}
.x13_c00022{left:265.080000px;}
.x78_c00022{left:268.080000px;}
.x50_c00022{left:271.920000px;}
.x25_c00022{left:273.645000px;}
.x8_c00022{left:280.500000px;}
.x3c_c00022{left:285.000000px;}
.x5a_c00022{left:286.500000px;}
.x51_c00022{left:292.500000px;}
.x69_c00022{left:298.080000px;}
.x5b_c00022{left:306.000000px;}
.x80_c00022{left:310.080000px;}
.x9_c00022{left:319.500000px;}
.x26_c00022{left:337.920000px;}
.x5c_c00022{left:339.000000px;}
.x71_c00022{left:343.080000px;}
.x31_c00022{left:344.580000px;}
.x46_c00022{left:346.920000px;}
.x1c_c00022{left:352.920000px;}
.x52_c00022{left:355.920000px;}
.x61_c00022{left:357.420000px;}
.x27_c00022{left:359.580000px;}
.x3d_c00022{left:361.080000px;}
.x5d_c00022{left:363.000000px;}
.x72_c00022{left:364.920000px;}
.x1d_c00022{left:368.580000px;}
.x14_c00022{left:370.920000px;}
.x53_c00022{left:375.645000px;}
.x3e_c00022{left:382.080000px;}
.xa_c00022{left:385.500000px;}
.x1_c00022{left:390.000000px;}
.x81_c00022{left:399.000000px;}
.x6a_c00022{left:405.420000px;}
.x32_c00022{left:417.000000px;}
.x28_c00022{left:418.920000px;}
.x79_c00022{left:421.500000px;}
.xb_c00022{left:426.420000px;}
.x62_c00022{left:430.920000px;}
.x47_c00022{left:433.500000px;}
.x5e_c00022{left:438.420000px;}
.x29_c00022{left:441.000000px;}
.x7a_c00022{left:445.500000px;}
.x15_c00022{left:446.580000px;}
.x1e_c00022{left:452.355000px;}
.x3f_c00022{left:453.420000px;}
.x63_c00022{left:454.920000px;}
.xc_c00022{left:456.000000px;}
.x48_c00022{left:457.080000px;}
.x5f_c00022{left:461.580000px;}
.x54_c00022{left:464.355000px;}
.x16_c00022{left:466.080000px;}
.x82_c00022{left:468.000000px;}
.x73_c00022{left:469.080000px;}
.x1f_c00022{left:475.080000px;}
.x2a_c00022{left:481.500000px;}
.x6b_c00022{left:485.580000px;}
.x33_c00022{left:488.580000px;}
.x83_c00022{left:493.920000px;}
.x6c_c00022{left:508.500000px;}
.x34_c00022{left:513.000000px;}
.xd_c00022{left:515.580000px;}
.x40_c00022{left:522.420000px;}
.x2b_c00022{left:531.420000px;}
.x49_c00022{left:534.000000px;}
.x17_c00022{left:538.080000px;}
.x20_c00022{left:543.855000px;}
.x60_c00022{left:547.500000px;}
.x6d_c00022{left:552.000000px;}
.x2c_c00022{left:553.080000px;}
.x18_c00022{left:556.500000px;}
.x74_c00022{left:557.580000px;}
.x21_c00022{left:565.500000px;}
.x64_c00022{left:568.080000px;}
.xe_c00022{left:571.500000px;}
.x35_c00022{left:574.920000px;}
.x7b_c00022{left:576.000000px;}
.x55_c00022{left:577.500000px;}
.x4a_c00022{left:578.580000px;}
.x36_c00022{left:598.080000px;}
.x4b_c00022{left:602.145000px;}
.x84_c00022{left:605.580000px;}
.x2d_c00022{left:621.420000px;}
.x65_c00022{left:622.920000px;}
.x41_c00022{left:630.420000px;}
.x19_c00022{left:637.500000px;}
.xf_c00022{left:642.420000px;}
.x2e_c00022{left:643.500000px;}
.x66_c00022{left:646.500000px;}
.x22_c00022{left:648.855000px;}
.x37_c00022{left:649.920000px;}
.x42_c00022{left:651.000000px;}
.x75_c00022{left:652.080000px;}
.x6e_c00022{left:654.420000px;}
.x10_c00022{left:660.420000px;}
.x56_c00022{left:663.420000px;}
.x4c_c00022{left:669.420000px;}
.x23_c00022{left:670.500000px;}
.x38_c00022{left:672.000000px;}
.x43_c00022{left:673.500000px;}
.x76_c00022{left:675.000000px;}
.x57_c00022{left:685.080000px;}
.x2_c00022{left:688.500000px;}
.x4d_c00022{left:693.000000px;}
.x7c_c00022{left:711.000000px;}
.x24_c00022{left:713.355000px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.ls0_c00022{letter-spacing:0.000000pt;}
.ws0_c00022{word-spacing:0.000000pt;}
.fs0_c00022{font-size:16.640000pt;}
.fs3_c00022{font-size:18.133333pt;}
.fs2_c00022{font-size:22.666667pt;}
.fs5_c00022{font-size:25.706667pt;}
.fs1_c00022{font-size:28.746667pt;}
.fs4_c00022{font-size:31.733333pt;}
.fs6_c00022{font-size:34.773333pt;}
.y0_c00022{bottom:0.000000pt;}
.y65_c00022{bottom:194.640000pt;}
.y66_c00022{bottom:195.400000pt;}
.y63_c00022{bottom:207.600000pt;}
.y60_c00022{bottom:207.973333pt;}
.y64_c00022{bottom:208.360000pt;}
.y5f_c00022{bottom:208.733333pt;}
.y61_c00022{bottom:209.693333pt;}
.y62_c00022{bottom:210.640000pt;}
.y5d_c00022{bottom:221.693333pt;}
.y5e_c00022{bottom:222.266667pt;}
.y5b_c00022{bottom:222.440000pt;}
.y5c_c00022{bottom:222.640000pt;}
.y5a_c00022{bottom:225.693333pt;}
.y59_c00022{bottom:234.066667pt;}
.y57_c00022{bottom:235.026667pt;}
.y58_c00022{bottom:235.973333pt;}
.y56_c00022{bottom:236.560000pt;}
.y54_c00022{bottom:238.266667pt;}
.y55_c00022{bottom:239.026667pt;}
.y4d_c00022{bottom:246.640000pt;}
.y53_c00022{bottom:247.400000pt;}
.y50_c00022{bottom:247.600000pt;}
.y51_c00022{bottom:247.973333pt;}
.y4f_c00022{bottom:248.360000pt;}
.y4e_c00022{bottom:249.306667pt;}
.y4c_c00022{bottom:250.066667pt;}
.y52_c00022{bottom:250.266667pt;}
.y4b_c00022{bottom:251.973333pt;}
.y4a_c00022{bottom:259.973333pt;}
.y49_c00022{bottom:260.733333pt;}
.y46_c00022{bottom:260.933333pt;}
.y47_c00022{bottom:261.693333pt;}
.y45_c00022{bottom:262.440000pt;}
.y48_c00022{bottom:262.640000pt;}
.y44_c00022{bottom:264.933333pt;}
.y43_c00022{bottom:273.693333pt;}
.y40_c00022{bottom:274.066667pt;}
.y3f_c00022{bottom:274.266667pt;}
.y41_c00022{bottom:275.226667pt;}
.y42_c00022{bottom:275.973333pt;}
.y3e_c00022{bottom:276.733333pt;}
.y3d_c00022{bottom:277.306667pt;}
.y3b_c00022{bottom:285.306667pt;}
.y3a_c00022{bottom:286.066667pt;}
.y39_c00022{bottom:286.266667pt;}
.y36_c00022{bottom:287.400000pt;}
.y37_c00022{bottom:287.600000pt;}
.y3c_c00022{bottom:287.973333pt;}
.y35_c00022{bottom:288.360000pt;}
.y38_c00022{bottom:289.306667pt;}
.y34_c00022{bottom:291.026667pt;}
.y2e_c00022{bottom:299.973333pt;}
.y32_c00022{bottom:300.360000pt;}
.y30_c00022{bottom:300.933333pt;}
.y31_c00022{bottom:301.306667pt;}
.y2f_c00022{bottom:301.693333pt;}
.y2d_c00022{bottom:302.066667pt;}
.y33_c00022{bottom:303.600000pt;}
.y2c_c00022{bottom:304.933333pt;}
.y29_c00022{bottom:312.933333pt;}
.y28_c00022{bottom:313.693333pt;}
.y2a_c00022{bottom:314.640000pt;}
.y27_c00022{bottom:315.226667pt;}
.y26_c00022{bottom:315.400000pt;}
.y2b_c00022{bottom:315.600000pt;}
.y25_c00022{bottom:317.306667pt;}
.y24_c00022{bottom:325.306667pt;}
.y21_c00022{bottom:326.066667pt;}
.y1f_c00022{bottom:326.266667pt;}
.y20_c00022{bottom:327.026667pt;}
.y22_c00022{bottom:327.226667pt;}
.y23_c00022{bottom:327.973333pt;}
.y1e_c00022{bottom:329.106667pt;}
.y18_c00022{bottom:338.640000pt;}
.y1c_c00022{bottom:339.400000pt;}
.y1d_c00022{bottom:339.600000pt;}
.y1a_c00022{bottom:339.973333pt;}
.y19_c00022{bottom:340.360000pt;}
.y1b_c00022{bottom:341.306667pt;}
.y17_c00022{bottom:341.493333pt;}
.y16_c00022{bottom:352.933333pt;}
.y15_c00022{bottom:353.693333pt;}
.y14_c00022{bottom:354.640000pt;}
.y13_c00022{bottom:355.026667pt;}
.y12_c00022{bottom:355.400000pt;}
.y11_c00022{bottom:356.933333pt;}
.yd_c00022{bottom:365.306667pt;}
.y10_c00022{bottom:365.693333pt;}
.yc_c00022{bottom:366.066667pt;}
.yb_c00022{bottom:366.266667pt;}
.yf_c00022{bottom:366.640000pt;}
.ye_c00022{bottom:367.026667pt;}
.ya_c00022{bottom:367.773333pt;}
.y9_c00022{bottom:370.266667pt;}
.y7_c00022{bottom:378.066667pt;}
.y8_c00022{bottom:379.226667pt;}
.y4_c00022{bottom:379.400000pt;}
.y3_c00022{bottom:379.973333pt;}
.y6_c00022{bottom:380.933333pt;}
.y5_c00022{bottom:381.306667pt;}
.y2_c00022{bottom:383.400000pt;}
.y1_c00022{bottom:980.560000pt;}
.h1_c00022{height:20.466875pt;}
.h4_c00022{height:22.303646pt;}
.h3_c00022{height:27.879557pt;}
.h6_c00022{height:31.618698pt;}
.h2_c00022{height:35.357839pt;}
.h5_c00022{height:39.031380pt;}
.h7_c00022{height:42.770521pt;}
.h0_c00022{height:1186.666667pt;}
.w0_c00022{width:782.666667pt;}
.x0_c00022{left:0.000000pt;}
.x7d_c00022{left:130.666667pt;}
.x3_c00022{left:135.040000pt;}
.x6f_c00022{left:140.000000pt;}
.x1a_c00022{left:149.333333pt;}
.x11_c00022{left:150.293333pt;}
.x39_c00022{left:153.333333pt;}
.x58_c00022{left:154.293333pt;}
.x44_c00022{left:155.626667pt;}
.x4_c00022{left:161.333333pt;}
.x4e_c00022{left:162.293333pt;}
.x5_c00022{left:176.373333pt;}
.x3a_c00022{left:180.000000pt;}
.x4f_c00022{left:182.293333pt;}
.x7e_c00022{left:190.293333pt;}
.x70_c00022{left:195.240000pt;}
.x67_c00022{left:200.960000pt;}
.x59_c00022{left:204.373333pt;}
.x6_c00022{left:206.293333pt;}
.x3b_c00022{left:208.000000pt;}
.x2f_c00022{left:209.706667pt;}
.x7f_c00022{left:214.666667pt;}
.x77_c00022{left:216.960000pt;}
.x12_c00022{left:219.040000pt;}
.x68_c00022{left:220.000000pt;}
.x7_c00022{left:224.000000pt;}
.x45_c00022{left:228.000000pt;}
.x30_c00022{left:230.293333pt;}
.x1b_c00022{left:234.293333pt;}
.x13_c00022{left:235.626667pt;}
.x78_c00022{left:238.293333pt;}
.x50_c00022{left:241.706667pt;}
.x25_c00022{left:243.240000pt;}
.x8_c00022{left:249.333333pt;}
.x3c_c00022{left:253.333333pt;}
.x5a_c00022{left:254.666667pt;}
.x51_c00022{left:260.000000pt;}
.x69_c00022{left:264.960000pt;}
.x5b_c00022{left:272.000000pt;}
.x80_c00022{left:275.626667pt;}
.x9_c00022{left:284.000000pt;}
.x26_c00022{left:300.373333pt;}
.x5c_c00022{left:301.333333pt;}
.x71_c00022{left:304.960000pt;}
.x31_c00022{left:306.293333pt;}
.x46_c00022{left:308.373333pt;}
.x1c_c00022{left:313.706667pt;}
.x52_c00022{left:316.373333pt;}
.x61_c00022{left:317.706667pt;}
.x27_c00022{left:319.626667pt;}
.x3d_c00022{left:320.960000pt;}
.x5d_c00022{left:322.666667pt;}
.x72_c00022{left:324.373333pt;}
.x1d_c00022{left:327.626667pt;}
.x14_c00022{left:329.706667pt;}
.x53_c00022{left:333.906667pt;}
.x3e_c00022{left:339.626667pt;}
.xa_c00022{left:342.666667pt;}
.x1_c00022{left:346.666667pt;}
.x81_c00022{left:354.666667pt;}
.x6a_c00022{left:360.373333pt;}
.x32_c00022{left:370.666667pt;}
.x28_c00022{left:372.373333pt;}
.x79_c00022{left:374.666667pt;}
.xb_c00022{left:379.040000pt;}
.x62_c00022{left:383.040000pt;}
.x47_c00022{left:385.333333pt;}
.x5e_c00022{left:389.706667pt;}
.x29_c00022{left:392.000000pt;}
.x7a_c00022{left:396.000000pt;}
.x15_c00022{left:396.960000pt;}
.x1e_c00022{left:402.093333pt;}
.x3f_c00022{left:403.040000pt;}
.x63_c00022{left:404.373333pt;}
.xc_c00022{left:405.333333pt;}
.x48_c00022{left:406.293333pt;}
.x5f_c00022{left:410.293333pt;}
.x54_c00022{left:412.760000pt;}
.x16_c00022{left:414.293333pt;}
.x82_c00022{left:416.000000pt;}
.x73_c00022{left:416.960000pt;}
.x1f_c00022{left:422.293333pt;}
.x2a_c00022{left:428.000000pt;}
.x6b_c00022{left:431.626667pt;}
.x33_c00022{left:434.293333pt;}
.x83_c00022{left:439.040000pt;}
.x6c_c00022{left:452.000000pt;}
.x34_c00022{left:456.000000pt;}
.xd_c00022{left:458.293333pt;}
.x40_c00022{left:464.373333pt;}
.x2b_c00022{left:472.373333pt;}
.x49_c00022{left:474.666667pt;}
.x17_c00022{left:478.293333pt;}
.x20_c00022{left:483.426667pt;}
.x60_c00022{left:486.666667pt;}
.x6d_c00022{left:490.666667pt;}
.x2c_c00022{left:491.626667pt;}
.x18_c00022{left:494.666667pt;}
.x74_c00022{left:495.626667pt;}
.x21_c00022{left:502.666667pt;}
.x64_c00022{left:504.960000pt;}
.xe_c00022{left:508.000000pt;}
.x35_c00022{left:511.040000pt;}
.x7b_c00022{left:512.000000pt;}
.x55_c00022{left:513.333333pt;}
.x4a_c00022{left:514.293333pt;}
.x36_c00022{left:531.626667pt;}
.x4b_c00022{left:535.240000pt;}
.x84_c00022{left:538.293333pt;}
.x2d_c00022{left:552.373333pt;}
.x65_c00022{left:553.706667pt;}
.x41_c00022{left:560.373333pt;}
.x19_c00022{left:566.666667pt;}
.xf_c00022{left:571.040000pt;}
.x2e_c00022{left:572.000000pt;}
.x66_c00022{left:574.666667pt;}
.x22_c00022{left:576.760000pt;}
.x37_c00022{left:577.706667pt;}
.x42_c00022{left:578.666667pt;}
.x75_c00022{left:579.626667pt;}
.x6e_c00022{left:581.706667pt;}
.x10_c00022{left:587.040000pt;}
.x56_c00022{left:589.706667pt;}
.x4c_c00022{left:595.040000pt;}
.x23_c00022{left:596.000000pt;}
.x38_c00022{left:597.333333pt;}
.x43_c00022{left:598.666667pt;}
.x76_c00022{left:600.000000pt;}
.x57_c00022{left:608.960000pt;}
.x2_c00022{left:612.000000pt;}
.x4d_c00022{left:616.000000pt;}
.x7c_c00022{left:632.000000pt;}
.x24_c00022{left:634.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_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_fa01ed6701d2f8f531025f20.woff2')format("woff");}.ff1_c00023{font-family:ff1_c00023;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma8_c00023{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.m72_c00023{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m22_c00023{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m33_c00023{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m12_c00023{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m15_c00023{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m65_c00023{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m1d_c00023{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m35_c00023{transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);}
.mdd_c00023{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m9b_c00023{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.md5_c00023{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.ma1_c00023{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.mde_c00023{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.mba_c00023{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m8e_c00023{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m50_c00023{transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);}
.me9_c00023{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.ma5_c00023{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m2_c00023{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m90_c00023{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mf1_c00023{transform:matrix(0.411043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411043,0.000000,0.000000,0.250000,0,0);}
.m64_c00023{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m78_c00023{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.md8_c00023{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m14_c00023{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m97_c00023{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m6_c00023{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m70_c00023{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m6e_c00023{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.mb7_c00023{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m2e_c00023{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m52_c00023{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m10_c00023{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m2d_c00023{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m1c_c00023{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m9d_c00023{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m74_c00023{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m2b_c00023{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m59_c00023{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.mc1_c00023{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.md7_c00023{transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);}
.m7a_c00023{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.med_c00023{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m20_c00023{transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);}
.m7d_c00023{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mda_c00023{transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);}
.m9a_c00023{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m47_c00023{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m62_c00023{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m3e_c00023{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m43_c00023{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mb1_c00023{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.me7_c00023{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.m89_c00023{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m95_c00023{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m98_c00023{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m7e_c00023{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m73_c00023{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m6f_c00023{transform:matrix(0.443465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443465,0.000000,0.000000,0.250000,0,0);}
.mcf_c00023{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mb2_c00023{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.mcb_c00023{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m8b_c00023{transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);}
.m1f_c00023{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m3f_c00023{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.mb4_c00023{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.ma7_c00023{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.me3_c00023{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m5f_c00023{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.mb6_c00023{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.mc7_c00023{transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);}
.mab_c00023{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m91_c00023{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m26_c00023{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m1e_c00023{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m82_c00023{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.me2_c00023{transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);}
.m38_c00023{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.mef_c00023{transform:matrix(0.468067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468067,0.000000,0.000000,0.250000,0,0);}
.m40_c00023{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.md1_c00023{transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);}
.ma9_c00023{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.mae_c00023{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.maf_c00023{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m46_c00023{transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);}
.mc4_c00023{transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);}
.m6c_c00023{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.me4_c00023{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m28_c00023{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.md3_c00023{transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);}
.mdc_c00023{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m9_c00023{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mf2_c00023{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.mc6_c00023{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.mb8_c00023{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m4f_c00023{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m4d_c00023{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m9f_c00023{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m17_c00023{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m99_c00023{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m19_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);}
.m84_c00023{transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);}
.mb0_c00023{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.mb3_c00023{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.me6_c00023{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m3d_c00023{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m30_c00023{transform:matrix(0.507780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507780,0.000000,0.000000,0.250000,0,0);}
.md4_c00023{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mb5_c00023{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m87_c00023{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.md_c00023{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m67_c00023{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m69_c00023{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m75_c00023{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m58_c00023{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m1b_c00023{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m24_c00023{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m44_c00023{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m32_c00023{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mc9_c00023{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m48_c00023{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m18_c00023{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m39_c00023{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m71_c00023{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m55_c00023{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.meb_c00023{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m3b_c00023{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mcd_c00023{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m4b_c00023{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m77_c00023{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m5c_c00023{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m5a_c00023{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.mc_c00023{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m41_c00023{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m23_c00023{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m68_c00023{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m61_c00023{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mc2_c00023{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.ma3_c00023{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m83_c00023{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m8f_c00023{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m92_c00023{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m7_c00023{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.me_c00023{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mad_c00023{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.me1_c00023{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m57_c00023{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m81_c00023{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mc3_c00023{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m94_c00023{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m79_c00023{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.mc0_c00023{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m6d_c00023{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m2a_c00023{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m53_c00023{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.mee_c00023{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mac_c00023{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m88_c00023{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m4e_c00023{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m80_c00023{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m85_c00023{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m13_c00023{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.ma2_c00023{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mbb_c00023{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mc5_c00023{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m6a_c00023{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m27_c00023{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.me8_c00023{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.ma_c00023{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m2f_c00023{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m76_c00023{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m11_c00023{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mce_c00023{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.mf_c00023{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.m3a_c00023{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mdf_c00023{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m8d_c00023{transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);}
.m63_c00023{transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);}
.m1a_c00023{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m21_c00023{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m34_c00023{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m51_c00023{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m56_c00023{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m2c_c00023{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m7c_c00023{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.md0_c00023{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m9c_c00023{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m36_c00023{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m9e_c00023{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m42_c00023{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m7f_c00023{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mbf_c00023{transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);}
.mec_c00023{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.mbd_c00023{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.mbc_c00023{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m3c_c00023{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.ma6_c00023{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m86_c00023{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mc8_c00023{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m5e_c00023{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);}
.maa_c00023{transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);}
.m7b_c00023{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.ma0_c00023{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m49_c00023{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m45_c00023{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mb_c00023{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m93_c00023{transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);}
.m8a_c00023{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.m1_c00023{transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);}
.mea_c00023{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_c00023{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.me0_c00023{transform:matrix(0.628235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628235,0.000000,0.000000,0.250000,0,0);}
.m8c_c00023{transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);}
.m54_c00023{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.m4_c00023{transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);}
.md6_c00023{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.mb9_c00023{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mca_c00023{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.md2_c00023{transform:matrix(0.648824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648824,0.000000,0.000000,0.250000,0,0);}
.mcc_c00023{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m3_c00023{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.me5_c00023{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m37_c00023{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m31_c00023{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.md9_c00023{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m96_c00023{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.mf0_c00023{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m4a_c00023{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.mbe_c00023{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m6b_c00023{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m16_c00023{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m8_c00023{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m29_c00023{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m4c_c00023{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m25_c00023{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m60_c00023{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m5d_c00023{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m66_c00023{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m5b_c00023{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m0_c00023{transform:matrix(0.849359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.849359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.849359,0.000000,0.000000,0.250000,0,0);}
.mdb_c00023{transform:matrix(1.165865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.165865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.165865,0.000000,0.000000,0.250000,0,0);}
.ma4_c00023{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.v1_c00023{vertical-align:-6.000000px;}
.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;}
}
.ws1_c00023{word-spacing:-5.910850px;}
.ws3_c00023{word-spacing:-5.608801px;}
.ws0_c00023{word-spacing:-2.171720px;}
.ws4_c00023{word-spacing:0.000000px;}
.ws2_c00023{word-spacing:1.306449px;}
.fc0_c00023{color:transparent;}
.fs6_c00023{font-size:3.420000px;}
.fs0_c00023{font-size:18.720000px;}
.fs1_c00023{font-size:20.400000px;}
.fs3_c00023{font-size:25.500000px;}
.fs4_c00023{font-size:28.920000px;}
.fs5_c00023{font-size:32.340000px;}
.fs2_c00023{font-size:35.700000px;}
.fs7_c00023{font-size:39.120000px;}
.y0_c00023{bottom:0.000000px;}
.yd4_c00023{bottom:252.180000px;}
.yd1_c00023{bottom:253.245000px;}
.yd3_c00023{bottom:254.130000px;}
.yd6_c00023{bottom:254.325000px;}
.yd2_c00023{bottom:255.405000px;}
.yd5_c00023{bottom:255.630000px;}
.yd0_c00023{bottom:274.245000px;}
.ycc_c00023{bottom:274.905000px;}
.yce_c00023{bottom:275.130000px;}
.ycd_c00023{bottom:275.970000px;}
.ycf_c00023{bottom:276.405000px;}
.yca_c00023{bottom:293.745000px;}
.yc8_c00023{bottom:294.405000px;}
.yc7_c00023{bottom:294.630000px;}
.ycb_c00023{bottom:295.470000px;}
.yc9_c00023{bottom:295.905000px;}
.yc4_c00023{bottom:312.405000px;}
.yc2_c00023{bottom:313.245000px;}
.yc6_c00023{bottom:314.325000px;}
.yc5_c00023{bottom:314.970000px;}
.yc3_c00023{bottom:315.405000px;}
.ybd_c00023{bottom:332.745000px;}
.yc0_c00023{bottom:333.630000px;}
.yc1_c00023{bottom:333.825000px;}
.ybe_c00023{bottom:334.905000px;}
.ybf_c00023{bottom:335.970000px;}
.yb9_c00023{bottom:351.405000px;}
.ybc_c00023{bottom:351.825000px;}
.yba_c00023{bottom:352.245000px;}
.yb8_c00023{bottom:353.130000px;}
.ybb_c00023{bottom:354.405000px;}
.yb6_c00023{bottom:371.745000px;}
.yb3_c00023{bottom:372.630000px;}
.yb7_c00023{bottom:372.825000px;}
.yb5_c00023{bottom:373.470000px;}
.yb2_c00023{bottom:373.905000px;}
.yb4_c00023{bottom:374.130000px;}
.yb0_c00023{bottom:391.245000px;}
.yae_c00023{bottom:391.470000px;}
.yb1_c00023{bottom:392.325000px;}
.yac_c00023{bottom:393.405000px;}
.yad_c00023{bottom:393.630000px;}
.yaf_c00023{bottom:394.905000px;}
.ya9_c00023{bottom:409.905000px;}
.ya8_c00023{bottom:410.745000px;}
.yab_c00023{bottom:412.905000px;}
.ya7_c00023{bottom:413.130000px;}
.ya6_c00023{bottom:413.970000px;}
.yaa_c00023{bottom:414.405000px;}
.y9f_c00023{bottom:429.405000px;}
.ya1_c00023{bottom:431.745000px;}
.ya5_c00023{bottom:432.405000px;}
.ya3_c00023{bottom:432.630000px;}
.ya4_c00023{bottom:433.470000px;}
.ya0_c00023{bottom:433.905000px;}
.ya2_c00023{bottom:434.970000px;}
.y9d_c00023{bottom:449.745000px;}
.y9a_c00023{bottom:451.245000px;}
.y9c_c00023{bottom:452.970000px;}
.y9b_c00023{bottom:453.405000px;}
.y9e_c00023{bottom:453.420000px;}
.y97_c00023{bottom:470.745000px;}
.y99_c00023{bottom:472.050000px;}
.y98_c00023{bottom:472.470000px;}
.y96_c00023{bottom:472.905000px;}
.y95_c00023{bottom:473.970000px;}
.y92_c00023{bottom:489.405000px;}
.y94_c00023{bottom:490.245000px;}
.y93_c00023{bottom:491.325000px;}
.y91_c00023{bottom:492.405000px;}
.y8f_c00023{bottom:509.745000px;}
.y8e_c00023{bottom:511.905000px;}
.y8d_c00023{bottom:512.970000px;}
.y90_c00023{bottom:513.405000px;}
.y88_c00023{bottom:530.325000px;}
.y8a_c00023{bottom:530.745000px;}
.y8b_c00023{bottom:531.405000px;}
.y8c_c00023{bottom:532.470000px;}
.y89_c00023{bottom:532.905000px;}
.y87_c00023{bottom:547.905000px;}
.y86_c00023{bottom:549.405000px;}
.y84_c00023{bottom:550.245000px;}
.y85_c00023{bottom:551.130000px;}
.y82_c00023{bottom:552.405000px;}
.y83_c00023{bottom:553.470000px;}
.y81_c00023{bottom:569.745000px;}
.y7f_c00023{bottom:570.630000px;}
.y7e_c00023{bottom:570.825000px;}
.y80_c00023{bottom:571.470000px;}
.y7c_c00023{bottom:571.905000px;}
.y7d_c00023{bottom:572.970000px;}
.y78_c00023{bottom:589.245000px;}
.y77_c00023{bottom:591.405000px;}
.y79_c00023{bottom:591.420000px;}
.y7a_c00023{bottom:591.630000px;}
.y7b_c00023{bottom:592.470000px;}
.y76_c00023{bottom:607.905000px;}
.y73_c00023{bottom:608.325000px;}
.y74_c00023{bottom:608.745000px;}
.y72_c00023{bottom:610.905000px;}
.y75_c00023{bottom:610.920000px;}
.y6f_c00023{bottom:628.245000px;}
.y70_c00023{bottom:629.130000px;}
.y6d_c00023{bottom:629.745000px;}
.y71_c00023{bottom:629.970000px;}
.y6e_c00023{bottom:630.405000px;}
.y6b_c00023{bottom:647.745000px;}
.y6a_c00023{bottom:649.905000px;}
.y6c_c00023{bottom:650.130000px;}
.y69_c00023{bottom:650.970000px;}
.y68_c00023{bottom:668.325000px;}
.y65_c00023{bottom:668.745000px;}
.y66_c00023{bottom:669.405000px;}
.y64_c00023{bottom:669.630000px;}
.y67_c00023{bottom:670.470000px;}
.y63_c00023{bottom:670.905000px;}
.y5f_c00023{bottom:685.905000px;}
.y60_c00023{bottom:688.245000px;}
.y62_c00023{bottom:688.905000px;}
.y61_c00023{bottom:689.970000px;}
.y5e_c00023{bottom:690.405000px;}
.y5c_c00023{bottom:706.245000px;}
.y5b_c00023{bottom:708.405000px;}
.y5d_c00023{bottom:709.470000px;}
.y59_c00023{bottom:727.245000px;}
.y5a_c00023{bottom:727.905000px;}
.y58_c00023{bottom:728.970000px;}
.y57_c00023{bottom:729.405000px;}
.y54_c00023{bottom:746.745000px;}
.y56_c00023{bottom:747.630000px;}
.y55_c00023{bottom:748.905000px;}
.y53_c00023{bottom:749.130000px;}
.y4e_c00023{bottom:766.245000px;}
.y51_c00023{bottom:766.470000px;}
.y4f_c00023{bottom:767.970000px;}
.y4d_c00023{bottom:768.405000px;}
.y52_c00023{bottom:768.630000px;}
.y50_c00023{bottom:769.470000px;}
.y4a_c00023{bottom:785.745000px;}
.y4b_c00023{bottom:785.970000px;}
.y4c_c00023{bottom:786.825000px;}
.y49_c00023{bottom:787.905000px;}
.y47_c00023{bottom:805.245000px;}
.y46_c00023{bottom:807.405000px;}
.y48_c00023{bottom:807.630000px;}
.y44_c00023{bottom:823.905000px;}
.y45_c00023{bottom:824.745000px;}
.y40_c00023{bottom:826.245000px;}
.y43_c00023{bottom:826.905000px;}
.y41_c00023{bottom:827.130000px;}
.y42_c00023{bottom:828.405000px;}
.y3e_c00023{bottom:845.745000px;}
.y3d_c00023{bottom:846.630000px;}
.y3f_c00023{bottom:847.470000px;}
.y3b_c00023{bottom:847.905000px;}
.y3c_c00023{bottom:848.970000px;}
.y39_c00023{bottom:864.825000px;}
.y36_c00023{bottom:865.245000px;}
.y3a_c00023{bottom:865.905000px;}
.y37_c00023{bottom:866.130000px;}
.y38_c00023{bottom:866.970000px;}
.y35_c00023{bottom:867.405000px;}
.y32_c00023{bottom:884.745000px;}
.y34_c00023{bottom:886.470000px;}
.y31_c00023{bottom:886.905000px;}
.y33_c00023{bottom:887.970000px;}
.y30_c00023{bottom:902.970000px;}
.y2f_c00023{bottom:903.405000px;}
.y2d_c00023{bottom:904.245000px;}
.y2e_c00023{bottom:905.130000px;}
.y2c_c00023{bottom:906.405000px;}
.y2b_c00023{bottom:922.470000px;}
.y28_c00023{bottom:923.325000px;}
.y25_c00023{bottom:923.745000px;}
.y29_c00023{bottom:924.825000px;}
.y26_c00023{bottom:925.470000px;}
.y24_c00023{bottom:925.905000px;}
.y2a_c00023{bottom:926.130000px;}
.y27_c00023{bottom:926.970000px;}
.y23_c00023{bottom:927.405000px;}
.y1f_c00023{bottom:943.245000px;}
.y22_c00023{bottom:944.325000px;}
.y21_c00023{bottom:945.405000px;}
.y20_c00023{bottom:946.470000px;}
.y1d_c00023{bottom:962.745000px;}
.y1b_c00023{bottom:964.905000px;}
.y1e_c00023{bottom:965.130000px;}
.y1c_c00023{bottom:965.970000px;}
.y19_c00023{bottom:982.245000px;}
.y1a_c00023{bottom:984.405000px;}
.y18_c00023{bottom:985.470000px;}
.y14_c00023{bottom:1001.745000px;}
.y13_c00023{bottom:1001.970000px;}
.y17_c00023{bottom:1002.825000px;}
.y15_c00023{bottom:1003.905000px;}
.y16_c00023{bottom:1004.130000px;}
.yf_c00023{bottom:1020.405000px;}
.y10_c00023{bottom:1021.245000px;}
.y12_c00023{bottom:1022.325000px;}
.y11_c00023{bottom:1022.745000px;}
.yd_c00023{bottom:1023.405000px;}
.yc_c00023{bottom:1024.470000px;}
.ye_c00023{bottom:1024.905000px;}
.y9_c00023{bottom:1040.745000px;}
.y8_c00023{bottom:1040.970000px;}
.yb_c00023{bottom:1042.245000px;}
.ya_c00023{bottom:1044.405000px;}
.y3_c00023{bottom:1061.745000px;}
.y7_c00023{bottom:1062.405000px;}
.y6_c00023{bottom:1062.630000px;}
.y5_c00023{bottom:1063.905000px;}
.y4_c00023{bottom:1064.970000px;}
.y2_c00023{bottom:1102.050000px;}
.y1_c00023{bottom:1103.130000px;}
.h7_c00023{height:4.206533px;}
.h1_c00023{height:23.025234px;}
.h2_c00023{height:25.091602px;}
.h4_c00023{height:31.364502px;}
.h5_c00023{height:35.571035px;}
.h6_c00023{height:39.777568px;}
.h3_c00023{height:43.910303px;}
.h8_c00023{height:48.116836px;}
.h0_c00023{height:1335.000000px;}
.w0_c00023{width:880.500000px;}
.x0_c00023{left:0.000000px;}
.xc7_c00023{left:150.000000px;}
.xba_c00023{left:151.500000px;}
.x22_c00023{left:153.000000px;}
.x1_c00023{left:154.500000px;}
.x101_c00023{left:158.580000px;}
.xaa_c00023{left:168.000000px;}
.x15_c00023{left:169.500000px;}
.x7e_c00023{left:172.920000px;}
.x9a_c00023{left:174.420000px;}
.xe9_c00023{left:181.500000px;}
.x48_c00023{left:182.580000px;}
.xab_c00023{left:187.920000px;}
.x16_c00023{left:190.500000px;}
.x23_c00023{left:191.775000px;}
.x102_c00023{left:193.500000px;}
.xc8_c00023{left:195.000000px;}
.xa8_c00023{left:198.000000px;}
.x7f_c00023{left:199.500000px;}
.x41_c00023{left:200.580000px;}
.x109_c00023{left:202.080000px;}
.xf_c00023{left:204.000000px;}
.x49_c00023{left:205.920000px;}
.xea_c00023{left:207.420000px;}
.x8a_c00023{left:208.500000px;}
.x74_c00023{left:210.000000px;}
.x36_c00023{left:211.080000px;}
.xbb_c00023{left:212.580000px;}
.xfb_c00023{left:214.080000px;}
.xfa_c00023{left:217.500000px;}
.x2e_c00023{left:219.000000px;}
.x9b_c00023{left:220.500000px;}
.x66_c00023{left:221.580000px;}
.x75_c00023{left:223.500000px;}
.x112_c00023{left:225.000000px;}
.xac_c00023{left:226.920000px;}
.x10_c00023{left:228.000000px;}
.xb2_c00023{left:230.580000px;}
.x3_c00023{left:232.500000px;}
.xf4_c00023{left:233.775000px;}
.x24_c00023{left:235.080000px;}
.xf1_c00023{left:237.000000px;}
.xa1_c00023{left:238.500000px;}
.x17_c00023{left:241.500000px;}
.x9c_c00023{left:243.000000px;}
.xe2_c00023{left:244.920000px;}
.xfc_c00023{left:247.500000px;}
.x76_c00023{left:248.580000px;}
.xdc_c00023{left:250.275000px;}
.xb3_c00023{left:251.580000px;}
.x6e_c00023{left:253.080000px;}
.x90_c00023{left:254.580000px;}
.xe5_c00023{left:256.500000px;}
.x42_c00023{left:259.080000px;}
.x10a_c00023{left:262.080000px;}
.x103_c00023{left:263.580000px;}
.x5d_c00023{left:265.500000px;}
.x77_c00023{left:266.580000px;}
.x4_c00023{left:270.000000px;}
.x113_c00023{left:272.580000px;}
.xbc_c00023{left:274.500000px;}
.x91_c00023{left:276.420000px;}
.x43_c00023{left:277.920000px;}
.x67_c00023{left:279.000000px;}
.x9d_c00023{left:280.500000px;}
.x4a_c00023{left:282.000000px;}
.x37_c00023{left:283.500000px;}
.x2f_c00023{left:285.420000px;}
.x80_c00023{left:287.580000px;}
.x5e_c00023{left:289.275000px;}
.x11_c00023{left:293.580000px;}
.xd6_c00023{left:295.500000px;}
.xa9_c00023{left:297.000000px;}
.xf7_c00023{left:303.000000px;}
.x44_c00023{left:304.500000px;}
.x18_c00023{left:305.580000px;}
.x81_c00023{left:307.920000px;}
.x25_c00023{left:309.000000px;}
.x8b_c00023{left:310.500000px;}
.x55_c00023{left:312.000000px;}
.x107_c00023{left:313.080000px;}
.xc4_c00023{left:314.580000px;}
.x92_c00023{left:316.920000px;}
.xf8_c00023{left:322.920000px;}
.xb4_c00023{left:324.000000px;}
.x5f_c00023{left:325.080000px;}
.xeb_c00023{left:327.000000px;}
.x68_c00023{left:330.420000px;}
.x114_c00023{left:331.500000px;}
.xa2_c00023{left:333.420000px;}
.xfd_c00023{left:334.500000px;}
.x82_c00023{left:336.420000px;}
.xad_c00023{left:339.000000px;}
.x12_c00023{left:340.080000px;}
.x38_c00023{left:342.000000px;}
.x5_c00023{left:343.080000px;}
.x56_c00023{left:344.580000px;}
.x60_c00023{left:346.920000px;}
.x10e_c00023{left:349.080000px;}
.xc9_c00023{left:351.645000px;}
.xd7_c00023{left:352.920000px;}
.xfe_c00023{left:354.000000px;}
.x19_c00023{left:355.080000px;}
.xb5_c00023{left:357.420000px;}
.x4b_c00023{left:360.000000px;}
.x39_c00023{left:361.920000px;}
.x30_c00023{left:363.000000px;}
.x9e_c00023{left:364.500000px;}
.xcf_c00023{left:366.420000px;}
.x8c_c00023{left:367.920000px;}
.x45_c00023{left:369.000000px;}
.x13_c00023{left:371.580000px;}
.x1a_c00023{left:373.920000px;}
.x6_c00023{left:375.000000px;}
.x61_c00023{left:376.500000px;}
.x4c_c00023{left:379.500000px;}
.x93_c00023{left:382.080000px;}
.x26_c00023{left:384.000000px;}
.xca_c00023{left:387.645000px;}
.x78_c00023{left:389.580000px;}
.x3a_c00023{left:391.500000px;}
.x2_c00023{left:394.500000px;}
.x110_c00023{left:396.000000px;}
.xa3_c00023{left:397.500000px;}
.x83_c00023{left:399.420000px;}
.xb6_c00023{left:400.500000px;}
.xd0_c00023{left:402.000000px;}
.x1b_c00023{left:403.500000px;}
.xf9_c00023{left:404.580000px;}
.x4d_c00023{left:406.500000px;}
.x57_c00023{left:408.420000px;}
.xd1_c00023{left:411.420000px;}
.x94_c00023{left:412.920000px;}
.x27_c00023{left:414.420000px;}
.x10b_c00023{left:415.920000px;}
.x79_c00023{left:420.000000px;}
.x8d_c00023{left:421.500000px;}
.xb7_c00023{left:426.420000px;}
.x84_c00023{left:427.500000px;}
.xd2_c00023{left:432.000000px;}
.xe6_c00023{left:433.080000px;}
.x3b_c00023{left:436.500000px;}
.xbd_c00023{left:437.580000px;}
.x7a_c00023{left:439.920000px;}
.xff_c00023{left:441.000000px;}
.x58_c00023{left:442.500000px;}
.x7_c00023{left:443.580000px;}
.x95_c00023{left:448.500000px;}
.xd8_c00023{left:449.580000px;}
.x1c_c00023{left:451.080000px;}
.x14_c00023{left:452.580000px;}
.x9f_c00023{left:454.500000px;}
.xc5_c00023{left:456.420000px;}
.xbe_c00023{left:457.500000px;}
.x69_c00023{left:459.000000px;}
.xec_c00023{left:460.500000px;}
.x4e_c00023{left:462.420000px;}
.xae_c00023{left:463.500000px;}
.xa4_c00023{left:465.000000px;}
.x7b_c00023{left:469.500000px;}
.xd9_c00023{left:470.580000px;}
.xdd_c00023{left:472.920000px;}
.xee_c00023{left:474.420000px;}
.x115_c00023{left:475.500000px;}
.xf5_c00023{left:477.000000px;}
.x62_c00023{left:483.000000px;}
.xbf_c00023{left:484.500000px;}
.x1d_c00023{left:487.920000px;}
.xe3_c00023{left:490.500000px;}
.x59_c00023{left:491.580000px;}
.x85_c00023{left:493.920000px;}
.x10c_c00023{left:495.000000px;}
.x28_c00023{left:498.000000px;}
.x6f_c00023{left:499.500000px;}
.x6a_c00023{left:501.000000px;}
.x3c_c00023{left:502.500000px;}
.x63_c00023{left:504.420000px;}
.x4f_c00023{left:507.000000px;}
.x8_c00023{left:511.920000px;}
.xde_c00023{left:514.080000px;}
.x96_c00023{left:517.500000px;}
.x5a_c00023{left:519.000000px;}
.x86_c00023{left:520.500000px;}
.x3d_c00023{left:523.920000px;}
.xc6_c00023{left:525.420000px;}
.xa5_c00023{left:526.500000px;}
.x1e_c00023{left:529.920000px;}
.x108_c00023{left:532.500000px;}
.x64_c00023{left:533.580000px;}
.x100_c00023{left:535.080000px;}
.x8e_c00023{left:537.420000px;}
.x104_c00023{left:538.500000px;}
.x9_c00023{left:539.580000px;}
.x31_c00023{left:541.080000px;}
.x29_c00023{left:542.580000px;}
.x97_c00023{left:544.080000px;}
.x70_c00023{left:546.000000px;}
.xc0_c00023{left:547.500000px;}
.xa6_c00023{left:549.000000px;}
.x50_c00023{left:552.000000px;}
.xd3_c00023{left:553.500000px;}
.xe7_c00023{left:554.580000px;}
.xaf_c00023{left:556.500000px;}
.x87_c00023{left:557.580000px;}
.xb8_c00023{left:559.080000px;}
.xa_c00023{left:561.420000px;}
.x5b_c00023{left:563.580000px;}
.xf2_c00023{left:565.080000px;}
.xc1_c00023{left:569.580000px;}
.x1f_c00023{left:571.500000px;}
.xdf_c00023{left:573.000000px;}
.xcb_c00023{left:574.500000px;}
.x88_c00023{left:576.420000px;}
.x2a_c00023{left:579.000000px;}
.xe4_c00023{left:580.500000px;}
.x71_c00023{left:582.420000px;}
.xcc_c00023{left:586.500000px;}
.x32_c00023{left:588.000000px;}
.x6b_c00023{left:589.500000px;}
.xd4_c00023{left:591.420000px;}
.x3e_c00023{left:594.000000px;}
.x2b_c00023{left:595.500000px;}
.x98_c00023{left:597.000000px;}
.x105_c00023{left:598.500000px;}
.x7c_c00023{left:601.500000px;}
.x89_c00023{left:604.500000px;}
.xb_c00023{left:606.000000px;}
.xb0_c00023{left:607.080000px;}
.x72_c00023{left:609.000000px;}
.x46_c00023{left:612.420000px;}
.x10f_c00023{left:613.500000px;}
.xf6_c00023{left:615.420000px;}
.xa0_c00023{left:616.920000px;}
.xd5_c00023{left:618.420000px;}
.x5c_c00023{left:619.500000px;}
.x6c_c00023{left:621.000000px;}
.xda_c00023{left:622.500000px;}
.xc_c00023{left:624.420000px;}
.xe8_c00023{left:628.920000px;}
.x51_c00023{left:630.000000px;}
.x8f_c00023{left:631.920000px;}
.xa7_c00023{left:633.000000px;}
.x10d_c00023{left:634.920000px;}
.x20_c00023{left:637.920000px;}
.xc2_c00023{left:640.500000px;}
.xe0_c00023{left:643.080000px;}
.x73_c00023{left:646.500000px;}
.x3f_c00023{left:649.080000px;}
.xef_c00023{left:651.000000px;}
.xd_c00023{left:652.080000px;}
.x52_c00023{left:654.000000px;}
.x33_c00023{left:655.080000px;}
.x2c_c00023{left:656.580000px;}
.x106_c00023{left:658.500000px;}
.xdb_c00023{left:659.580000px;}
.x99_c00023{left:662.580000px;}
.xcd_c00023{left:665.775000px;}
.x40_c00023{left:667.500000px;}
.x7d_c00023{left:671.580000px;}
.x53_c00023{left:673.920000px;}
.x34_c00023{left:675.000000px;}
.x2d_c00023{left:678.000000px;}
.x21_c00023{left:679.080000px;}
.xe1_c00023{left:681.000000px;}
.xf0_c00023{left:682.920000px;}
.x111_c00023{left:686.580000px;}
.xb1_c00023{left:688.080000px;}
.x47_c00023{left:690.000000px;}
.x6d_c00023{left:691.920000px;}
.xed_c00023{left:694.920000px;}
.xe_c00023{left:697.500000px;}
.x35_c00023{left:701.775000px;}
.xce_c00023{left:704.580000px;}
.x116_c00023{left:706.920000px;}
.x65_c00023{left:708.000000px;}
.x54_c00023{left:709.920000px;}
.xc3_c00023{left:712.500000px;}
.xb9_c00023{left:723.000000px;}
.xf3_c00023{left:724.500000px;}
@media print{
.v1_c00023{vertical-align:-5.333333pt;}
.v0_c00023{vertical-align:0.000000pt;}
.ls0_c00023{letter-spacing:0.000000pt;}
.ws1_c00023{word-spacing:-5.254089pt;}
.ws3_c00023{word-spacing:-4.985601pt;}
.ws0_c00023{word-spacing:-1.930418pt;}
.ws4_c00023{word-spacing:0.000000pt;}
.ws2_c00023{word-spacing:1.161288pt;}
.fs6_c00023{font-size:3.040000pt;}
.fs0_c00023{font-size:16.640000pt;}
.fs1_c00023{font-size:18.133333pt;}
.fs3_c00023{font-size:22.666667pt;}
.fs4_c00023{font-size:25.706667pt;}
.fs5_c00023{font-size:28.746667pt;}
.fs2_c00023{font-size:31.733333pt;}
.fs7_c00023{font-size:34.773333pt;}
.y0_c00023{bottom:0.000000pt;}
.yd4_c00023{bottom:224.160000pt;}
.yd1_c00023{bottom:225.106667pt;}
.yd3_c00023{bottom:225.893333pt;}
.yd6_c00023{bottom:226.066667pt;}
.yd2_c00023{bottom:227.026667pt;}
.yd5_c00023{bottom:227.226667pt;}
.yd0_c00023{bottom:243.773333pt;}
.ycc_c00023{bottom:244.360000pt;}
.yce_c00023{bottom:244.560000pt;}
.ycd_c00023{bottom:245.306667pt;}
.ycf_c00023{bottom:245.693333pt;}
.yca_c00023{bottom:261.106667pt;}
.yc8_c00023{bottom:261.693333pt;}
.yc7_c00023{bottom:261.893333pt;}
.ycb_c00023{bottom:262.640000pt;}
.yc9_c00023{bottom:263.026667pt;}
.yc4_c00023{bottom:277.693333pt;}
.yc2_c00023{bottom:278.440000pt;}
.yc6_c00023{bottom:279.400000pt;}
.yc5_c00023{bottom:279.973333pt;}
.yc3_c00023{bottom:280.360000pt;}
.ybd_c00023{bottom:295.773333pt;}
.yc0_c00023{bottom:296.560000pt;}
.yc1_c00023{bottom:296.733333pt;}
.ybe_c00023{bottom:297.693333pt;}
.ybf_c00023{bottom:298.640000pt;}
.yb9_c00023{bottom:312.360000pt;}
.ybc_c00023{bottom:312.733333pt;}
.yba_c00023{bottom:313.106667pt;}
.yb8_c00023{bottom:313.893333pt;}
.ybb_c00023{bottom:315.026667pt;}
.yb6_c00023{bottom:330.440000pt;}
.yb3_c00023{bottom:331.226667pt;}
.yb7_c00023{bottom:331.400000pt;}
.yb5_c00023{bottom:331.973333pt;}
.yb2_c00023{bottom:332.360000pt;}
.yb4_c00023{bottom:332.560000pt;}
.yb0_c00023{bottom:347.773333pt;}
.yae_c00023{bottom:347.973333pt;}
.yb1_c00023{bottom:348.733333pt;}
.yac_c00023{bottom:349.693333pt;}
.yad_c00023{bottom:349.893333pt;}
.yaf_c00023{bottom:351.026667pt;}
.ya9_c00023{bottom:364.360000pt;}
.ya8_c00023{bottom:365.106667pt;}
.yab_c00023{bottom:367.026667pt;}
.ya7_c00023{bottom:367.226667pt;}
.ya6_c00023{bottom:367.973333pt;}
.yaa_c00023{bottom:368.360000pt;}
.y9f_c00023{bottom:381.693333pt;}
.ya1_c00023{bottom:383.773333pt;}
.ya5_c00023{bottom:384.360000pt;}
.ya3_c00023{bottom:384.560000pt;}
.ya4_c00023{bottom:385.306667pt;}
.ya0_c00023{bottom:385.693333pt;}
.ya2_c00023{bottom:386.640000pt;}
.y9d_c00023{bottom:399.773333pt;}
.y9a_c00023{bottom:401.106667pt;}
.y9c_c00023{bottom:402.640000pt;}
.y9b_c00023{bottom:403.026667pt;}
.y9e_c00023{bottom:403.040000pt;}
.y97_c00023{bottom:418.440000pt;}
.y99_c00023{bottom:419.600000pt;}
.y98_c00023{bottom:419.973333pt;}
.y96_c00023{bottom:420.360000pt;}
.y95_c00023{bottom:421.306667pt;}
.y92_c00023{bottom:435.026667pt;}
.y94_c00023{bottom:435.773333pt;}
.y93_c00023{bottom:436.733333pt;}
.y91_c00023{bottom:437.693333pt;}
.y8f_c00023{bottom:453.106667pt;}
.y8e_c00023{bottom:455.026667pt;}
.y8d_c00023{bottom:455.973333pt;}
.y90_c00023{bottom:456.360000pt;}
.y88_c00023{bottom:471.400000pt;}
.y8a_c00023{bottom:471.773333pt;}
.y8b_c00023{bottom:472.360000pt;}
.y8c_c00023{bottom:473.306667pt;}
.y89_c00023{bottom:473.693333pt;}
.y87_c00023{bottom:487.026667pt;}
.y86_c00023{bottom:488.360000pt;}
.y84_c00023{bottom:489.106667pt;}
.y85_c00023{bottom:489.893333pt;}
.y82_c00023{bottom:491.026667pt;}
.y83_c00023{bottom:491.973333pt;}
.y81_c00023{bottom:506.440000pt;}
.y7f_c00023{bottom:507.226667pt;}
.y7e_c00023{bottom:507.400000pt;}
.y80_c00023{bottom:507.973333pt;}
.y7c_c00023{bottom:508.360000pt;}
.y7d_c00023{bottom:509.306667pt;}
.y78_c00023{bottom:523.773333pt;}
.y77_c00023{bottom:525.693333pt;}
.y79_c00023{bottom:525.706667pt;}
.y7a_c00023{bottom:525.893333pt;}
.y7b_c00023{bottom:526.640000pt;}
.y76_c00023{bottom:540.360000pt;}
.y73_c00023{bottom:540.733333pt;}
.y74_c00023{bottom:541.106667pt;}
.y72_c00023{bottom:543.026667pt;}
.y75_c00023{bottom:543.040000pt;}
.y6f_c00023{bottom:558.440000pt;}
.y70_c00023{bottom:559.226667pt;}
.y6d_c00023{bottom:559.773333pt;}
.y71_c00023{bottom:559.973333pt;}
.y6e_c00023{bottom:560.360000pt;}
.y6b_c00023{bottom:575.773333pt;}
.y6a_c00023{bottom:577.693333pt;}
.y6c_c00023{bottom:577.893333pt;}
.y69_c00023{bottom:578.640000pt;}
.y68_c00023{bottom:594.066667pt;}
.y65_c00023{bottom:594.440000pt;}
.y66_c00023{bottom:595.026667pt;}
.y64_c00023{bottom:595.226667pt;}
.y67_c00023{bottom:595.973333pt;}
.y63_c00023{bottom:596.360000pt;}
.y5f_c00023{bottom:609.693333pt;}
.y60_c00023{bottom:611.773333pt;}
.y62_c00023{bottom:612.360000pt;}
.y61_c00023{bottom:613.306667pt;}
.y5e_c00023{bottom:613.693333pt;}
.y5c_c00023{bottom:627.773333pt;}
.y5b_c00023{bottom:629.693333pt;}
.y5d_c00023{bottom:630.640000pt;}
.y59_c00023{bottom:646.440000pt;}
.y5a_c00023{bottom:647.026667pt;}
.y58_c00023{bottom:647.973333pt;}
.y57_c00023{bottom:648.360000pt;}
.y54_c00023{bottom:663.773333pt;}
.y56_c00023{bottom:664.560000pt;}
.y55_c00023{bottom:665.693333pt;}
.y53_c00023{bottom:665.893333pt;}
.y4e_c00023{bottom:681.106667pt;}
.y51_c00023{bottom:681.306667pt;}
.y4f_c00023{bottom:682.640000pt;}
.y4d_c00023{bottom:683.026667pt;}
.y52_c00023{bottom:683.226667pt;}
.y50_c00023{bottom:683.973333pt;}
.y4a_c00023{bottom:698.440000pt;}
.y4b_c00023{bottom:698.640000pt;}
.y4c_c00023{bottom:699.400000pt;}
.y49_c00023{bottom:700.360000pt;}
.y47_c00023{bottom:715.773333pt;}
.y46_c00023{bottom:717.693333pt;}
.y48_c00023{bottom:717.893333pt;}
.y44_c00023{bottom:732.360000pt;}
.y45_c00023{bottom:733.106667pt;}
.y40_c00023{bottom:734.440000pt;}
.y43_c00023{bottom:735.026667pt;}
.y41_c00023{bottom:735.226667pt;}
.y42_c00023{bottom:736.360000pt;}
.y3e_c00023{bottom:751.773333pt;}
.y3d_c00023{bottom:752.560000pt;}
.y3f_c00023{bottom:753.306667pt;}
.y3b_c00023{bottom:753.693333pt;}
.y3c_c00023{bottom:754.640000pt;}
.y39_c00023{bottom:768.733333pt;}
.y36_c00023{bottom:769.106667pt;}
.y3a_c00023{bottom:769.693333pt;}
.y37_c00023{bottom:769.893333pt;}
.y38_c00023{bottom:770.640000pt;}
.y35_c00023{bottom:771.026667pt;}
.y32_c00023{bottom:786.440000pt;}
.y34_c00023{bottom:787.973333pt;}
.y31_c00023{bottom:788.360000pt;}
.y33_c00023{bottom:789.306667pt;}
.y30_c00023{bottom:802.640000pt;}
.y2f_c00023{bottom:803.026667pt;}
.y2d_c00023{bottom:803.773333pt;}
.y2e_c00023{bottom:804.560000pt;}
.y2c_c00023{bottom:805.693333pt;}
.y2b_c00023{bottom:819.973333pt;}
.y28_c00023{bottom:820.733333pt;}
.y25_c00023{bottom:821.106667pt;}
.y29_c00023{bottom:822.066667pt;}
.y26_c00023{bottom:822.640000pt;}
.y24_c00023{bottom:823.026667pt;}
.y2a_c00023{bottom:823.226667pt;}
.y27_c00023{bottom:823.973333pt;}
.y23_c00023{bottom:824.360000pt;}
.y1f_c00023{bottom:838.440000pt;}
.y22_c00023{bottom:839.400000pt;}
.y21_c00023{bottom:840.360000pt;}
.y20_c00023{bottom:841.306667pt;}
.y1d_c00023{bottom:855.773333pt;}
.y1b_c00023{bottom:857.693333pt;}
.y1e_c00023{bottom:857.893333pt;}
.y1c_c00023{bottom:858.640000pt;}
.y19_c00023{bottom:873.106667pt;}
.y1a_c00023{bottom:875.026667pt;}
.y18_c00023{bottom:875.973333pt;}
.y14_c00023{bottom:890.440000pt;}
.y13_c00023{bottom:890.640000pt;}
.y17_c00023{bottom:891.400000pt;}
.y15_c00023{bottom:892.360000pt;}
.y16_c00023{bottom:892.560000pt;}
.yf_c00023{bottom:907.026667pt;}
.y10_c00023{bottom:907.773333pt;}
.y12_c00023{bottom:908.733333pt;}
.y11_c00023{bottom:909.106667pt;}
.yd_c00023{bottom:909.693333pt;}
.yc_c00023{bottom:910.640000pt;}
.ye_c00023{bottom:911.026667pt;}
.y9_c00023{bottom:925.106667pt;}
.y8_c00023{bottom:925.306667pt;}
.yb_c00023{bottom:926.440000pt;}
.ya_c00023{bottom:928.360000pt;}
.y3_c00023{bottom:943.773333pt;}
.y7_c00023{bottom:944.360000pt;}
.y6_c00023{bottom:944.560000pt;}
.y5_c00023{bottom:945.693333pt;}
.y4_c00023{bottom:946.640000pt;}
.y2_c00023{bottom:979.600000pt;}
.y1_c00023{bottom:980.560000pt;}
.h7_c00023{height:3.739141pt;}
.h1_c00023{height:20.466875pt;}
.h2_c00023{height:22.303646pt;}
.h4_c00023{height:27.879557pt;}
.h5_c00023{height:31.618698pt;}
.h6_c00023{height:35.357839pt;}
.h3_c00023{height:39.031380pt;}
.h8_c00023{height:42.770521pt;}
.h0_c00023{height:1186.666667pt;}
.w0_c00023{width:782.666667pt;}
.x0_c00023{left:0.000000pt;}
.xc7_c00023{left:133.333333pt;}
.xba_c00023{left:134.666667pt;}
.x22_c00023{left:136.000000pt;}
.x1_c00023{left:137.333333pt;}
.x101_c00023{left:140.960000pt;}
.xaa_c00023{left:149.333333pt;}
.x15_c00023{left:150.666667pt;}
.x7e_c00023{left:153.706667pt;}
.x9a_c00023{left:155.040000pt;}
.xe9_c00023{left:161.333333pt;}
.x48_c00023{left:162.293333pt;}
.xab_c00023{left:167.040000pt;}
.x16_c00023{left:169.333333pt;}
.x23_c00023{left:170.466667pt;}
.x102_c00023{left:172.000000pt;}
.xc8_c00023{left:173.333333pt;}
.xa8_c00023{left:176.000000pt;}
.x7f_c00023{left:177.333333pt;}
.x41_c00023{left:178.293333pt;}
.x109_c00023{left:179.626667pt;}
.xf_c00023{left:181.333333pt;}
.x49_c00023{left:183.040000pt;}
.xea_c00023{left:184.373333pt;}
.x8a_c00023{left:185.333333pt;}
.x74_c00023{left:186.666667pt;}
.x36_c00023{left:187.626667pt;}
.xbb_c00023{left:188.960000pt;}
.xfb_c00023{left:190.293333pt;}
.xfa_c00023{left:193.333333pt;}
.x2e_c00023{left:194.666667pt;}
.x9b_c00023{left:196.000000pt;}
.x66_c00023{left:196.960000pt;}
.x75_c00023{left:198.666667pt;}
.x112_c00023{left:200.000000pt;}
.xac_c00023{left:201.706667pt;}
.x10_c00023{left:202.666667pt;}
.xb2_c00023{left:204.960000pt;}
.x3_c00023{left:206.666667pt;}
.xf4_c00023{left:207.800000pt;}
.x24_c00023{left:208.960000pt;}
.xf1_c00023{left:210.666667pt;}
.xa1_c00023{left:212.000000pt;}
.x17_c00023{left:214.666667pt;}
.x9c_c00023{left:216.000000pt;}
.xe2_c00023{left:217.706667pt;}
.xfc_c00023{left:220.000000pt;}
.x76_c00023{left:220.960000pt;}
.xdc_c00023{left:222.466667pt;}
.xb3_c00023{left:223.626667pt;}
.x6e_c00023{left:224.960000pt;}
.x90_c00023{left:226.293333pt;}
.xe5_c00023{left:228.000000pt;}
.x42_c00023{left:230.293333pt;}
.x10a_c00023{left:232.960000pt;}
.x103_c00023{left:234.293333pt;}
.x5d_c00023{left:236.000000pt;}
.x77_c00023{left:236.960000pt;}
.x4_c00023{left:240.000000pt;}
.x113_c00023{left:242.293333pt;}
.xbc_c00023{left:244.000000pt;}
.x91_c00023{left:245.706667pt;}
.x43_c00023{left:247.040000pt;}
.x67_c00023{left:248.000000pt;}
.x9d_c00023{left:249.333333pt;}
.x4a_c00023{left:250.666667pt;}
.x37_c00023{left:252.000000pt;}
.x2f_c00023{left:253.706667pt;}
.x80_c00023{left:255.626667pt;}
.x5e_c00023{left:257.133333pt;}
.x11_c00023{left:260.960000pt;}
.xd6_c00023{left:262.666667pt;}
.xa9_c00023{left:264.000000pt;}
.xf7_c00023{left:269.333333pt;}
.x44_c00023{left:270.666667pt;}
.x18_c00023{left:271.626667pt;}
.x81_c00023{left:273.706667pt;}
.x25_c00023{left:274.666667pt;}
.x8b_c00023{left:276.000000pt;}
.x55_c00023{left:277.333333pt;}
.x107_c00023{left:278.293333pt;}
.xc4_c00023{left:279.626667pt;}
.x92_c00023{left:281.706667pt;}
.xf8_c00023{left:287.040000pt;}
.xb4_c00023{left:288.000000pt;}
.x5f_c00023{left:288.960000pt;}
.xeb_c00023{left:290.666667pt;}
.x68_c00023{left:293.706667pt;}
.x114_c00023{left:294.666667pt;}
.xa2_c00023{left:296.373333pt;}
.xfd_c00023{left:297.333333pt;}
.x82_c00023{left:299.040000pt;}
.xad_c00023{left:301.333333pt;}
.x12_c00023{left:302.293333pt;}
.x38_c00023{left:304.000000pt;}
.x5_c00023{left:304.960000pt;}
.x56_c00023{left:306.293333pt;}
.x60_c00023{left:308.373333pt;}
.x10e_c00023{left:310.293333pt;}
.xc9_c00023{left:312.573333pt;}
.xd7_c00023{left:313.706667pt;}
.xfe_c00023{left:314.666667pt;}
.x19_c00023{left:315.626667pt;}
.xb5_c00023{left:317.706667pt;}
.x4b_c00023{left:320.000000pt;}
.x39_c00023{left:321.706667pt;}
.x30_c00023{left:322.666667pt;}
.x9e_c00023{left:324.000000pt;}
.xcf_c00023{left:325.706667pt;}
.x8c_c00023{left:327.040000pt;}
.x45_c00023{left:328.000000pt;}
.x13_c00023{left:330.293333pt;}
.x1a_c00023{left:332.373333pt;}
.x6_c00023{left:333.333333pt;}
.x61_c00023{left:334.666667pt;}
.x4c_c00023{left:337.333333pt;}
.x93_c00023{left:339.626667pt;}
.x26_c00023{left:341.333333pt;}
.xca_c00023{left:344.573333pt;}
.x78_c00023{left:346.293333pt;}
.x3a_c00023{left:348.000000pt;}
.x2_c00023{left:350.666667pt;}
.x110_c00023{left:352.000000pt;}
.xa3_c00023{left:353.333333pt;}
.x83_c00023{left:355.040000pt;}
.xb6_c00023{left:356.000000pt;}
.xd0_c00023{left:357.333333pt;}
.x1b_c00023{left:358.666667pt;}
.xf9_c00023{left:359.626667pt;}
.x4d_c00023{left:361.333333pt;}
.x57_c00023{left:363.040000pt;}
.xd1_c00023{left:365.706667pt;}
.x94_c00023{left:367.040000pt;}
.x27_c00023{left:368.373333pt;}
.x10b_c00023{left:369.706667pt;}
.x79_c00023{left:373.333333pt;}
.x8d_c00023{left:374.666667pt;}
.xb7_c00023{left:379.040000pt;}
.x84_c00023{left:380.000000pt;}
.xd2_c00023{left:384.000000pt;}
.xe6_c00023{left:384.960000pt;}
.x3b_c00023{left:388.000000pt;}
.xbd_c00023{left:388.960000pt;}
.x7a_c00023{left:391.040000pt;}
.xff_c00023{left:392.000000pt;}
.x58_c00023{left:393.333333pt;}
.x7_c00023{left:394.293333pt;}
.x95_c00023{left:398.666667pt;}
.xd8_c00023{left:399.626667pt;}
.x1c_c00023{left:400.960000pt;}
.x14_c00023{left:402.293333pt;}
.x9f_c00023{left:404.000000pt;}
.xc5_c00023{left:405.706667pt;}
.xbe_c00023{left:406.666667pt;}
.x69_c00023{left:408.000000pt;}
.xec_c00023{left:409.333333pt;}
.x4e_c00023{left:411.040000pt;}
.xae_c00023{left:412.000000pt;}
.xa4_c00023{left:413.333333pt;}
.x7b_c00023{left:417.333333pt;}
.xd9_c00023{left:418.293333pt;}
.xdd_c00023{left:420.373333pt;}
.xee_c00023{left:421.706667pt;}
.x115_c00023{left:422.666667pt;}
.xf5_c00023{left:424.000000pt;}
.x62_c00023{left:429.333333pt;}
.xbf_c00023{left:430.666667pt;}
.x1d_c00023{left:433.706667pt;}
.xe3_c00023{left:436.000000pt;}
.x59_c00023{left:436.960000pt;}
.x85_c00023{left:439.040000pt;}
.x10c_c00023{left:440.000000pt;}
.x28_c00023{left:442.666667pt;}
.x6f_c00023{left:444.000000pt;}
.x6a_c00023{left:445.333333pt;}
.x3c_c00023{left:446.666667pt;}
.x63_c00023{left:448.373333pt;}
.x4f_c00023{left:450.666667pt;}
.x8_c00023{left:455.040000pt;}
.xde_c00023{left:456.960000pt;}
.x96_c00023{left:460.000000pt;}
.x5a_c00023{left:461.333333pt;}
.x86_c00023{left:462.666667pt;}
.x3d_c00023{left:465.706667pt;}
.xc6_c00023{left:467.040000pt;}
.xa5_c00023{left:468.000000pt;}
.x1e_c00023{left:471.040000pt;}
.x108_c00023{left:473.333333pt;}
.x64_c00023{left:474.293333pt;}
.x100_c00023{left:475.626667pt;}
.x8e_c00023{left:477.706667pt;}
.x104_c00023{left:478.666667pt;}
.x9_c00023{left:479.626667pt;}
.x31_c00023{left:480.960000pt;}
.x29_c00023{left:482.293333pt;}
.x97_c00023{left:483.626667pt;}
.x70_c00023{left:485.333333pt;}
.xc0_c00023{left:486.666667pt;}
.xa6_c00023{left:488.000000pt;}
.x50_c00023{left:490.666667pt;}
.xd3_c00023{left:492.000000pt;}
.xe7_c00023{left:492.960000pt;}
.xaf_c00023{left:494.666667pt;}
.x87_c00023{left:495.626667pt;}
.xb8_c00023{left:496.960000pt;}
.xa_c00023{left:499.040000pt;}
.x5b_c00023{left:500.960000pt;}
.xf2_c00023{left:502.293333pt;}
.xc1_c00023{left:506.293333pt;}
.x1f_c00023{left:508.000000pt;}
.xdf_c00023{left:509.333333pt;}
.xcb_c00023{left:510.666667pt;}
.x88_c00023{left:512.373333pt;}
.x2a_c00023{left:514.666667pt;}
.xe4_c00023{left:516.000000pt;}
.x71_c00023{left:517.706667pt;}
.xcc_c00023{left:521.333333pt;}
.x32_c00023{left:522.666667pt;}
.x6b_c00023{left:524.000000pt;}
.xd4_c00023{left:525.706667pt;}
.x3e_c00023{left:528.000000pt;}
.x2b_c00023{left:529.333333pt;}
.x98_c00023{left:530.666667pt;}
.x105_c00023{left:532.000000pt;}
.x7c_c00023{left:534.666667pt;}
.x89_c00023{left:537.333333pt;}
.xb_c00023{left:538.666667pt;}
.xb0_c00023{left:539.626667pt;}
.x72_c00023{left:541.333333pt;}
.x46_c00023{left:544.373333pt;}
.x10f_c00023{left:545.333333pt;}
.xf6_c00023{left:547.040000pt;}
.xa0_c00023{left:548.373333pt;}
.xd5_c00023{left:549.706667pt;}
.x5c_c00023{left:550.666667pt;}
.x6c_c00023{left:552.000000pt;}
.xda_c00023{left:553.333333pt;}
.xc_c00023{left:555.040000pt;}
.xe8_c00023{left:559.040000pt;}
.x51_c00023{left:560.000000pt;}
.x8f_c00023{left:561.706667pt;}
.xa7_c00023{left:562.666667pt;}
.x10d_c00023{left:564.373333pt;}
.x20_c00023{left:567.040000pt;}
.xc2_c00023{left:569.333333pt;}
.xe0_c00023{left:571.626667pt;}
.x73_c00023{left:574.666667pt;}
.x3f_c00023{left:576.960000pt;}
.xef_c00023{left:578.666667pt;}
.xd_c00023{left:579.626667pt;}
.x52_c00023{left:581.333333pt;}
.x33_c00023{left:582.293333pt;}
.x2c_c00023{left:583.626667pt;}
.x106_c00023{left:585.333333pt;}
.xdb_c00023{left:586.293333pt;}
.x99_c00023{left:588.960000pt;}
.xcd_c00023{left:591.800000pt;}
.x40_c00023{left:593.333333pt;}
.x7d_c00023{left:596.960000pt;}
.x53_c00023{left:599.040000pt;}
.x34_c00023{left:600.000000pt;}
.x2d_c00023{left:602.666667pt;}
.x21_c00023{left:603.626667pt;}
.xe1_c00023{left:605.333333pt;}
.xf0_c00023{left:607.040000pt;}
.x111_c00023{left:610.293333pt;}
.xb1_c00023{left:611.626667pt;}
.x47_c00023{left:613.333333pt;}
.x6d_c00023{left:615.040000pt;}
.xed_c00023{left:617.706667pt;}
.xe_c00023{left:620.000000pt;}
.x35_c00023{left:623.800000pt;}
.xce_c00023{left:626.293333pt;}
.x116_c00023{left:628.373333pt;}
.x65_c00023{left:629.333333pt;}
.x54_c00023{left:631.040000pt;}
.xc3_c00023{left:633.333333pt;}
.xb9_c00023{left:642.666667pt;}
.xf3_c00023{left:644.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_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_feac50b65fc8e2f7e75aae1a.woff2')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m87_c00024{transform:matrix(0.332353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332353,0.000000,0.000000,0.250000,0,0);}
.mf1_c00024{transform:matrix(0.334274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334274,0.000000,0.000000,0.250000,0,0);}
.m92_c00024{transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);}
.m82_c00024{transform:matrix(0.358251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358251,0.000000,0.000000,0.250000,0,0);}
.m1d_c00024{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m84_c00024{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mf0_c00024{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.ma5_c00024{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00024{transform:matrix(0.376891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376891,0.000000,0.000000,0.250000,0,0);}
.m42_c00024{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.mbd_c00024{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m14_c00024{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m9b_c00024{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m96_c00024{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.m63_c00024{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m3d_c00024{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.mb9_c00024{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m62_c00024{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.mc6_c00024{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m38_c00024{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m3f_c00024{transform:matrix(0.391488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391488,0.000000,0.000000,0.250000,0,0);}
.mf3_c00024{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m10a_c00024{transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);}
.md_c00024{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.maf_c00024{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.mc1_c00024{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m34_c00024{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m24_c00024{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m60_c00024{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mbf_c00024{transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);}
.mbc_c00024{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.mcb_c00024{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.mdb_c00024{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m39_c00024{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m40_c00024{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m94_c00024{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.mc3_c00024{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m10f_c00024{transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);}
.ma2_c00024{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.ma8_c00024{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m77_c00024{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.maa_c00024{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.mdf_c00024{transform:matrix(0.413344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413344,0.000000,0.000000,0.250000,0,0);}
.mb1_c00024{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.md9_c00024{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.mec_c00024{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m69_c00024{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m44_c00024{transform:matrix(0.417561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417561,0.000000,0.000000,0.250000,0,0);}
.mb8_c00024{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m49_c00024{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m3b_c00024{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m95_c00024{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m67_c00024{transform:matrix(0.421779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421779,0.000000,0.000000,0.250000,0,0);}
.m57_c00024{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m5e_c00024{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.ma3_c00024{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m9e_c00024{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m73_c00024{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.mbe_c00024{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m74_c00024{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.mcd_c00024{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m25_c00024{transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);}
.mde_c00024{transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);}
.m8e_c00024{transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);}
.me6_c00024{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m80_c00024{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m43_c00024{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m10e_c00024{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.mb5_c00024{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m78_c00024{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m3a_c00024{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m37_c00024{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m97_c00024{transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);}
.m11_c00024{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m47_c00024{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mfa_c00024{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m27_c00024{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.mc4_c00024{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.mca_c00024{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.mab_c00024{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.me2_c00024{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m7a_c00024{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m7b_c00024{transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);}
.m10c_c00024{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.mc0_c00024{transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);}
.m7c_c00024{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mae_c00024{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.mb6_c00024{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.mb7_c00024{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mdc_c00024{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.m4a_c00024{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.me7_c00024{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.me8_c00024{transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);}
.md1_c00024{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m4c_c00024{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.me4_c00024{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m93_c00024{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.ma7_c00024{transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);}
.mee_c00024{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m2e_c00024{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mda_c00024{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m33_c00024{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.m59_c00024{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m8c_c00024{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m51_c00024{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.ma4_c00024{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.meb_c00024{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.mc7_c00024{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m41_c00024{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.m8b_c00024{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.mb3_c00024{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.mcc_c00024{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m5a_c00024{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m31_c00024{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mfd_c00024{transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);}
.m66_c00024{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m81_c00024{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mc8_c00024{transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);}
.me3_c00024{transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);}
.m23_c00024{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mc2_c00024{transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);}
.m89_c00024{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m102_c00024{transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);}
.m52_c00024{transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);}
.m2c_c00024{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m28_c00024{transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);}
.m4b_c00024{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.me5_c00024{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m2d_c00024{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m68_c00024{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m1c_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);}
.m58_c00024{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mf6_c00024{transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);}
.m72_c00024{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m5f_c00024{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.mfc_c00024{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mdd_c00024{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m6b_c00024{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m10d_c00024{transform:matrix(0.511176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511176,0.000000,0.000000,0.250000,0,0);}
.ma_c00024{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m8d_c00024{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m4f_c00024{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.md5_c00024{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m45_c00024{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.mb0_c00024{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m8_c00024{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mbb_c00024{transform:matrix(0.518235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518235,0.000000,0.000000,0.250000,0,0);}
.m91_c00024{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m7_c00024{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m22_c00024{transform:matrix(0.523655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523655,0.000000,0.000000,0.250000,0,0);}
.m88_c00024{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m64_c00024{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.ma0_c00024{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.mb_c00024{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.me9_c00024{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m111_c00024{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.ma1_c00024{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mc_c00024{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m16_c00024{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m35_c00024{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m110_c00024{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m5_c00024{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mfb_c00024{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m19_c00024{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mf_c00024{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m99_c00024{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m30_c00024{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m86_c00024{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m48_c00024{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m2f_c00024{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mba_c00024{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m79_c00024{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m9f_c00024{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m8a_c00024{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.md2_c00024{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.m46_c00024{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.mcf_c00024{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m2b_c00024{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m18_c00024{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m6a_c00024{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m85_c00024{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.mfe_c00024{transform:matrix(0.551176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551176,0.000000,0.000000,0.250000,0,0);}
.m3c_c00024{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m6f_c00024{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.ma6_c00024{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m1e_c00024{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.me1_c00024{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m20_c00024{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m6_c00024{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mc9_c00024{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m53_c00024{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mc5_c00024{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m13_c00024{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m55_c00024{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m90_c00024{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.m65_c00024{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m9d_c00024{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m26_c00024{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m106_c00024{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m1a_c00024{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m108_c00024{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.m9_c00024{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m1b_c00024{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m100_c00024{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.mb4_c00024{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m101_c00024{transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);}
.md0_c00024{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.mff_c00024{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m70_c00024{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m4e_c00024{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mf7_c00024{transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);}
.mad_c00024{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m36_c00024{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m103_c00024{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m61_c00024{transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);}
.m29_c00024{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m71_c00024{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m3_c00024{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.md7_c00024{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m107_c00024{transform:matrix(0.591912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591912,0.000000,0.000000,0.250000,0,0);}
.m17_c00024{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m6e_c00024{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m10_c00024{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m5b_c00024{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);}
.md8_c00024{transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);}
.m2_c00024{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.m5c_c00024{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.md6_c00024{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.me0_c00024{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.m4_c00024{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m21_c00024{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.med_c00024{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.mf9_c00024{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m104_c00024{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m56_c00024{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.m1_c00024{transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);}
.m15_c00024{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);}
.m75_c00024{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m4d_c00024{transform:matrix(0.630588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630588,0.000000,0.000000,0.250000,0,0);}
.m12_c00024{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.ma9_c00024{transform:matrix(0.636411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636411,0.000000,0.000000,0.250000,0,0);}
.mf5_c00024{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.mef_c00024{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m109_c00024{transform:matrix(0.656250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656250,0.000000,0.000000,0.250000,0,0);}
.m32_c00024{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m105_c00024{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);}
.m7f_c00024{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.me_c00024{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m9a_c00024{transform:matrix(0.676349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676349,0.000000,0.000000,0.250000,0,0);}
.m6d_c00024{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.mf4_c00024{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.mf8_c00024{transform:matrix(0.695882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695882,0.000000,0.000000,0.250000,0,0);}
.m7e_c00024{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m6c_c00024{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m10b_c00024{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);}
.m8f_c00024{transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);}
.m98_c00024{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.mb2_c00024{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m0_c00024{transform:matrix(0.722794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722794,0.000000,0.000000,0.250000,0,0);}
.m2a_c00024{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m83_c00024{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.md4_c00024{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m76_c00024{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m1f_c00024{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mf2_c00024{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);}
.mea_c00024{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.mac_c00024{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mce_c00024{transform:matrix(0.767059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.767059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.767059,0.000000,0.000000,0.250000,0,0);}
.m5d_c00024{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m50_c00024{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m7d_c00024{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.m54_c00024{transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);}
.md3_c00024{transform:matrix(0.800588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800588,0.000000,0.000000,0.250000,0,0);}
.m3e_c00024{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.v1_c00024{vertical-align:-6.000000px;}
.v0_c00024{vertical-align:0.000000px;}
.v2_c00024{vertical-align:13.740000px;}
.v3_c00024{vertical-align:18.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:-6.419372px;}
.ws3_c00024{word-spacing:-5.612043px;}
.ws1_c00024{word-spacing:-3.928680px;}
.ws2_c00024{word-spacing:-2.928000px;}
.ws4_c00024{word-spacing:-2.910265px;}
.ws5_c00024{word-spacing:0.000000px;}
.fc0_c00024{color:transparent;}
.fs8_c00024{font-size:13.620000px;}
.fs4_c00024{font-size:18.720000px;}
.fs0_c00024{font-size:20.400000px;}
.fs1_c00024{font-size:25.500000px;}
.fs2_c00024{font-size:28.920000px;}
.fs5_c00024{font-size:32.340000px;}
.fs3_c00024{font-size:35.700000px;}
.fs6_c00024{font-size:39.120000px;}
.fs7_c00024{font-size:42.540000px;}
.y0_c00024{bottom:0.000000px;}
.y101_c00024{bottom:249.825000px;}
.y103_c00024{bottom:250.905000px;}
.y100_c00024{bottom:251.130000px;}
.y105_c00024{bottom:251.325000px;}
.y104_c00024{bottom:251.970000px;}
.y102_c00024{bottom:253.050000px;}
.yff_c00024{bottom:253.470000px;}
.y106_c00024{bottom:254.550000px;}
.yfe_c00024{bottom:256.905000px;}
.yf9_c00024{bottom:265.905000px;}
.yfa_c00024{bottom:266.970000px;}
.yfb_c00024{bottom:268.050000px;}
.yfc_c00024{bottom:268.470000px;}
.yfd_c00024{bottom:269.550000px;}
.yf8_c00024{bottom:269.970000px;}
.yf7_c00024{bottom:274.695000px;}
.yf0_c00024{bottom:291.405000px;}
.yf1_c00024{bottom:291.825000px;}
.yf5_c00024{bottom:292.245000px;}
.yee_c00024{bottom:293.745000px;}
.yf2_c00024{bottom:293.970000px;}
.yef_c00024{bottom:294.405000px;}
.yf4_c00024{bottom:294.630000px;}
.yf3_c00024{bottom:295.470000px;}
.yec_c00024{bottom:295.905000px;}
.yed_c00024{bottom:296.130000px;}
.yf6_c00024{bottom:296.970000px;}
.yeb_c00024{bottom:297.825000px;}
.ye6_c00024{bottom:311.745000px;}
.ye5_c00024{bottom:312.180000px;}
.yea_c00024{bottom:312.405000px;}
.ye4_c00024{bottom:313.245000px;}
.ye3_c00024{bottom:313.905000px;}
.ye9_c00024{bottom:314.130000px;}
.ye2_c00024{bottom:314.970000px;}
.ye7_c00024{bottom:315.405000px;}
.ye8_c00024{bottom:316.470000px;}
.ye1_c00024{bottom:316.905000px;}
.ye0_c00024{bottom:317.550000px;}
.ydc_c00024{bottom:331.245000px;}
.ydb_c00024{bottom:332.745000px;}
.ydd_c00024{bottom:333.405000px;}
.yde_c00024{bottom:333.630000px;}
.ydf_c00024{bottom:334.470000px;}
.yda_c00024{bottom:334.905000px;}
.yd9_c00024{bottom:335.325000px;}
.yd6_c00024{bottom:350.745000px;}
.yd4_c00024{bottom:351.825000px;}
.yd8_c00024{bottom:352.245000px;}
.yd5_c00024{bottom:352.905000px;}
.yd7_c00024{bottom:353.130000px;}
.yd3_c00024{bottom:353.970000px;}
.yd2_c00024{bottom:354.405000px;}
.yd1_c00024{bottom:356.325000px;}
.ycc_c00024{bottom:370.680000px;}
.ycf_c00024{bottom:371.745000px;}
.ycd_c00024{bottom:372.405000px;}
.yd0_c00024{bottom:372.825000px;}
.yce_c00024{bottom:373.905000px;}
.ycb_c00024{bottom:375.405000px;}
.yca_c00024{bottom:377.325000px;}
.yc9_c00024{bottom:391.245000px;}
.yc8_c00024{bottom:393.405000px;}
.yc7_c00024{bottom:394.905000px;}
.yc6_c00024{bottom:396.630000px;}
.yc5_c00024{bottom:410.745000px;}
.yc4_c00024{bottom:412.470000px;}
.yc1_c00024{bottom:412.905000px;}
.yc2_c00024{bottom:413.130000px;}
.yc3_c00024{bottom:413.970000px;}
.yc0_c00024{bottom:414.825000px;}
.ybc_c00024{bottom:428.970000px;}
.ybd_c00024{bottom:430.245000px;}
.ybe_c00024{bottom:431.970000px;}
.ybb_c00024{bottom:432.405000px;}
.ybf_c00024{bottom:433.470000px;}
.yba_c00024{bottom:434.325000px;}
.yb9_c00024{bottom:449.745000px;}
.yb7_c00024{bottom:450.825000px;}
.yb5_c00024{bottom:451.905000px;}
.yb6_c00024{bottom:452.130000px;}
.yb4_c00024{bottom:452.325000px;}
.yb8_c00024{bottom:452.970000px;}
.yaf_c00024{bottom:468.405000px;}
.yae_c00024{bottom:469.905000px;}
.yb3_c00024{bottom:470.325000px;}
.yb2_c00024{bottom:470.745000px;}
.yb1_c00024{bottom:471.630000px;}
.yb0_c00024{bottom:471.825000px;}
.yad_c00024{bottom:472.905000px;}
.yac_c00024{bottom:473.130000px;}
.yab_c00024{bottom:475.905000px;}
.ya8_c00024{bottom:491.745000px;}
.yaa_c00024{bottom:492.405000px;}
.ya9_c00024{bottom:493.470000px;}
.ya6_c00024{bottom:509.745000px;}
.ya7_c00024{bottom:511.470000px;}
.ya5_c00024{bottom:511.905000px;}
.ya4_c00024{bottom:512.325000px;}
.ya2_c00024{bottom:527.970000px;}
.ya0_c00024{bottom:529.245000px;}
.ya1_c00024{bottom:530.130000px;}
.y9f_c00024{bottom:531.405000px;}
.y9e_c00024{bottom:531.825000px;}
.ya3_c00024{bottom:532.470000px;}
.y9d_c00024{bottom:546.825000px;}
.y98_c00024{bottom:547.905000px;}
.y9a_c00024{bottom:548.745000px;}
.y97_c00024{bottom:550.245000px;}
.y99_c00024{bottom:550.470000px;}
.y9b_c00024{bottom:550.905000px;}
.y9c_c00024{bottom:551.130000px;}
.y96_c00024{bottom:551.970000px;}
.y92_c00024{bottom:568.245000px;}
.y94_c00024{bottom:569.745000px;}
.y93_c00024{bottom:570.405000px;}
.y91_c00024{bottom:570.825000px;}
.y8f_c00024{bottom:571.245000px;}
.y95_c00024{bottom:571.905000px;}
.y90_c00024{bottom:572.130000px;}
.y8a_c00024{bottom:587.745000px;}
.y8d_c00024{bottom:588.825000px;}
.y8b_c00024{bottom:589.905000px;}
.y8c_c00024{bottom:590.130000px;}
.y8e_c00024{bottom:590.970000px;}
.y89_c00024{bottom:592.905000px;}
.y88_c00024{bottom:593.130000px;}
.y85_c00024{bottom:606.405000px;}
.y86_c00024{bottom:606.825000px;}
.y87_c00024{bottom:608.745000px;}
.y83_c00024{bottom:609.630000px;}
.y81_c00024{bottom:609.825000px;}
.y84_c00024{bottom:610.470000px;}
.y82_c00024{bottom:610.905000px;}
.y80_c00024{bottom:613.905000px;}
.y7e_c00024{bottom:628.245000px;}
.y7d_c00024{bottom:629.970000px;}
.y7c_c00024{bottom:630.180000px;}
.y7f_c00024{bottom:630.405000px;}
.y79_c00024{bottom:647.745000px;}
.y78_c00024{bottom:648.630000px;}
.y7b_c00024{bottom:648.825000px;}
.y76_c00024{bottom:649.245000px;}
.y77_c00024{bottom:649.905000px;}
.y7a_c00024{bottom:650.970000px;}
.y75_c00024{bottom:665.745000px;}
.y74_c00024{bottom:667.245000px;}
.y73_c00024{bottom:669.405000px;}
.y72_c00024{bottom:669.630000px;}
.y71_c00024{bottom:671.325000px;}
.y6f_c00024{bottom:686.745000px;}
.y6e_c00024{bottom:688.905000px;}
.y70_c00024{bottom:689.130000px;}
.y6d_c00024{bottom:690.825000px;}
.y6b_c00024{bottom:706.245000px;}
.y69_c00024{bottom:708.405000px;}
.y6c_c00024{bottom:708.630000px;}
.y6a_c00024{bottom:709.470000px;}
.y68_c00024{bottom:710.970000px;}
.y67_c00024{bottom:711.405000px;}
.y64_c00024{bottom:725.745000px;}
.y66_c00024{bottom:726.825000px;}
.y63_c00024{bottom:727.905000px;}
.y65_c00024{bottom:728.130000px;}
.y5b_c00024{bottom:745.680000px;}
.y5d_c00024{bottom:745.905000px;}
.y5f_c00024{bottom:746.745000px;}
.y5e_c00024{bottom:747.405000px;}
.y61_c00024{bottom:747.630000px;}
.y5c_c00024{bottom:748.470000px;}
.y60_c00024{bottom:748.905000px;}
.y62_c00024{bottom:749.130000px;}
.y57_c00024{bottom:766.245000px;}
.y5a_c00024{bottom:767.130000px;}
.y59_c00024{bottom:767.325000px;}
.y58_c00024{bottom:768.405000px;}
.y56_c00024{bottom:771.405000px;}
.y53_c00024{bottom:785.745000px;}
.y52_c00024{bottom:786.630000px;}
.y50_c00024{bottom:786.825000px;}
.y54_c00024{bottom:787.905000px;}
.y55_c00024{bottom:788.130000px;}
.y51_c00024{bottom:788.970000px;}
.y4e_c00024{bottom:805.245000px;}
.y4c_c00024{bottom:806.550000px;}
.y4d_c00024{bottom:807.405000px;}
.y4f_c00024{bottom:808.470000px;}
.y4b_c00024{bottom:808.905000px;}
.y45_c00024{bottom:824.325000px;}
.y49_c00024{bottom:824.745000px;}
.y46_c00024{bottom:825.180000px;}
.y47_c00024{bottom:825.825000px;}
.y48_c00024{bottom:826.905000px;}
.y4a_c00024{bottom:827.130000px;}
.y3f_c00024{bottom:844.245000px;}
.y43_c00024{bottom:845.745000px;}
.y44_c00024{bottom:845.970000px;}
.y40_c00024{bottom:846.405000px;}
.y41_c00024{bottom:847.470000px;}
.y42_c00024{bottom:847.905000px;}
.y3e_c00024{bottom:848.325000px;}
.y39_c00024{bottom:862.905000px;}
.y3d_c00024{bottom:863.745000px;}
.y3b_c00024{bottom:865.470000px;}
.y38_c00024{bottom:865.905000px;}
.y3c_c00024{bottom:866.130000px;}
.y37_c00024{bottom:866.325000px;}
.y3a_c00024{bottom:866.970000px;}
.y36_c00024{bottom:884.745000px;}
.y33_c00024{bottom:885.405000px;}
.y34_c00024{bottom:885.630000px;}
.y35_c00024{bottom:886.470000px;}
.y32_c00024{bottom:886.905000px;}
.y31_c00024{bottom:887.325000px;}
.y30_c00024{bottom:905.130000px;}
.y2e_c00024{bottom:905.325000px;}
.y2d_c00024{bottom:905.970000px;}
.y2f_c00024{bottom:906.405000px;}
.y2c_c00024{bottom:906.825000px;}
.y2a_c00024{bottom:923.745000px;}
.y27_c00024{bottom:924.180000px;}
.y29_c00024{bottom:925.470000px;}
.y28_c00024{bottom:925.905000px;}
.y2b_c00024{bottom:926.130000px;}
.y26_c00024{bottom:942.180000px;}
.y24_c00024{bottom:943.245000px;}
.y25_c00024{bottom:944.130000px;}
.y22_c00024{bottom:945.405000px;}
.y23_c00024{bottom:946.470000px;}
.y21_c00024{bottom:946.905000px;}
.y1f_c00024{bottom:961.905000px;}
.y1d_c00024{bottom:962.745000px;}
.y20_c00024{bottom:964.470000px;}
.y1e_c00024{bottom:964.905000px;}
.y1c_c00024{bottom:965.325000px;}
.y1b_c00024{bottom:982.245000px;}
.y1a_c00024{bottom:983.970000px;}
.y19_c00024{bottom:984.405000px;}
.y18_c00024{bottom:984.630000px;}
.y17_c00024{bottom:985.470000px;}
.y16_c00024{bottom:1000.905000px;}
.y13_c00024{bottom:1001.745000px;}
.y15_c00024{bottom:1002.825000px;}
.y12_c00024{bottom:1003.905000px;}
.y11_c00024{bottom:1004.325000px;}
.y14_c00024{bottom:1004.970000px;}
.ye_c00024{bottom:1021.245000px;}
.yd_c00024{bottom:1023.405000px;}
.yf_c00024{bottom:1023.630000px;}
.y10_c00024{bottom:1024.470000px;}
.yc_c00024{bottom:1024.905000px;}
.yb_c00024{bottom:1039.905000px;}
.y9_c00024{bottom:1040.745000px;}
.y8_c00024{bottom:1042.905000px;}
.ya_c00024{bottom:1043.970000px;}
.y7_c00024{bottom:1044.405000px;}
.y6_c00024{bottom:1045.470000px;}
.y4_c00024{bottom:1059.405000px;}
.y5_c00024{bottom:1061.745000px;}
.y2_c00024{bottom:1063.470000px;}
.y3_c00024{bottom:1063.905000px;}
.y1_c00024{bottom:1102.050000px;}
.hb_c00024{height:16.752334px;}
.h5_c00024{height:23.025234px;}
.h1_c00024{height:25.091602px;}
.h2_c00024{height:31.364502px;}
.h3_c00024{height:35.571035px;}
.h6_c00024{height:39.777568px;}
.h4_c00024{height:43.910303px;}
.h7_c00024{height:48.116836px;}
.h9_c00024{height:49.311035px;}
.h8_c00024{height:52.323369px;}
.ha_c00024{height:53.571035px;}
.h0_c00024{height:1335.000000px;}
.w0_c00024{width:880.500000px;}
.x0_c00024{left:0.000000px;}
.x3_c00024{left:151.920000px;}
.x103_c00024{left:166.500000px;}
.x81_c00024{left:168.000000px;}
.xbc_c00024{left:169.920000px;}
.x10_c00024{left:172.920000px;}
.xe9_c00024{left:174.420000px;}
.xc2_c00024{left:175.500000px;}
.x104_c00024{left:177.000000px;}
.x49_c00024{left:180.420000px;}
.x8e_c00024{left:183.420000px;}
.x78_c00024{left:186.000000px;}
.x82_c00024{left:187.500000px;}
.xc3_c00024{left:189.420000px;}
.x30_c00024{left:192.000000px;}
.x3f_c00024{left:193.080000px;}
.xfc_c00024{left:194.580000px;}
.x1a_c00024{left:196.920000px;}
.xea_c00024{left:201.000000px;}
.x11_c00024{left:202.500000px;}
.x26_c00024{left:205.080000px;}
.x4_c00024{left:207.000000px;}
.xd5_c00024{left:208.500000px;}
.x53_c00024{left:211.080000px;}
.xe0_c00024{left:213.420000px;}
.x31_c00024{left:214.920000px;}
.x4a_c00024{left:216.420000px;}
.x40_c00024{left:219.420000px;}
.x83_c00024{left:220.500000px;}
.xcc_c00024{left:222.000000px;}
.x6b_c00024{left:223.500000px;}
.xd1_c00024{left:224.580000px;}
.x9c_c00024{left:228.000000px;}
.xf6_c00024{left:229.500000px;}
.x1b_c00024{left:232.500000px;}
.x27_c00024{left:237.000000px;}
.x8f_c00024{left:238.080000px;}
.xa8_c00024{left:240.420000px;}
.xd2_c00024{left:243.420000px;}
.x5_c00024{left:244.500000px;}
.x62_c00024{left:245.580000px;}
.x41_c00024{left:246.645000px;}
.xb7_c00024{left:249.000000px;}
.xaa_c00024{left:253.920000px;}
.x32_c00024{left:255.000000px;}
.x90_c00024{left:256.920000px;}
.x79_c00024{left:259.500000px;}
.x12_c00024{left:261.420000px;}
.xa1_c00024{left:265.500000px;}
.x63_c00024{left:267.000000px;}
.xdb_c00024{left:269.580000px;}
.x6_c00024{left:271.500000px;}
.x4b_c00024{left:272.580000px;}
.x33_c00024{left:274.080000px;}
.x54_c00024{left:280.500000px;}
.xf9_c00024{left:283.080000px;}
.x105_c00024{left:285.000000px;}
.x6c_c00024{left:286.500000px;}
.xc9_c00024{left:288.000000px;}
.x91_c00024{left:289.500000px;}
.xdc_c00024{left:290.580000px;}
.xd4_c00024{left:292.920000px;}
.x4c_c00024{left:294.420000px;}
.x34_c00024{left:295.500000px;}
.x13_c00024{left:297.000000px;}
.xd6_c00024{left:299.580000px;}
.xe1_c00024{left:301.080000px;}
.xca_c00024{left:306.000000px;}
.x55_c00024{left:308.145000px;}
.xa2_c00024{left:310.500000px;}
.x96_c00024{left:311.775000px;}
.x84_c00024{left:313.920000px;}
.xd7_c00024{left:315.000000px;}
.x28_c00024{left:316.920000px;}
.xf0_c00024{left:318.000000px;}
.x1c_c00024{left:319.080000px;}
.xe6_c00024{left:321.000000px;}
.xe2_c00024{left:323.580000px;}
.xbd_c00024{left:325.920000px;}
.x7_c00024{left:328.080000px;}
.x42_c00024{left:330.000000px;}
.x35_c00024{left:331.500000px;}
.x92_c00024{left:333.000000px;}
.x4d_c00024{left:334.080000px;}
.x89_c00024{left:337.500000px;}
.x1d_c00024{left:339.420000px;}
.x64_c00024{left:341.580000px;}
.xcd_c00024{left:343.920000px;}
.x29_c00024{left:345.000000px;}
.x97_c00024{left:346.500000px;}
.x7a_c00024{left:348.000000px;}
.x85_c00024{left:349.920000px;}
.x56_c00024{left:351.855000px;}
.x36_c00024{left:353.145000px;}
.xe3_c00024{left:355.500000px;}
.xb8_c00024{left:357.000000px;}
.x8_c00024{left:360.420000px;}
.x8a_c00024{left:363.000000px;}
.xab_c00024{left:364.500000px;}
.x1e_c00024{left:369.000000px;}
.xa3_c00024{left:370.500000px;}
.xfd_c00024{left:373.500000px;}
.xc4_c00024{left:375.000000px;}
.x86_c00024{left:379.500000px;}
.x10a_c00024{left:381.420000px;}
.xeb_c00024{left:382.500000px;}
.x106_c00024{left:384.000000px;}
.x2_c00024{left:388.500000px;}
.x9d_c00024{left:391.500000px;}
.x65_c00024{left:392.580000px;}
.xd8_c00024{left:394.920000px;}
.xae_c00024{left:396.000000px;}
.x72_c00024{left:397.920000px;}
.x14_c00024{left:402.420000px;}
.xfe_c00024{left:405.000000px;}
.x43_c00024{left:406.920000px;}
.x107_c00024{left:408.000000px;}
.xbe_c00024{left:409.500000px;}
.xcb_c00024{left:410.580000px;}
.x57_c00024{left:414.420000px;}
.x6d_c00024{left:417.000000px;}
.x37_c00024{left:418.500000px;}
.x4e_c00024{left:420.420000px;}
.xb1_c00024{left:421.500000px;}
.xa9_c00024{left:423.000000px;}
.x1f_c00024{left:426.000000px;}
.x7b_c00024{left:427.500000px;}
.x2a_c00024{left:430.080000px;}
.x9_c00024{left:431.580000px;}
.xa4_c00024{left:433.500000px;}
.xbf_c00024{left:435.000000px;}
.x38_c00024{left:436.500000px;}
.x5b_c00024{left:439.080000px;}
.x15_c00024{left:441.000000px;}
.x44_c00024{left:443.580000px;}
.xdd_c00024{left:445.080000px;}
.x2b_c00024{left:450.420000px;}
.xc5_c00024{left:451.920000px;}
.x4f_c00024{left:453.420000px;}
.x66_c00024{left:456.000000px;}
.xa5_c00024{left:457.920000px;}
.x8b_c00024{left:460.500000px;}
.xa_c00024{left:462.420000px;}
.x98_c00024{left:465.000000px;}
.xde_c00024{left:466.080000px;}
.xac_c00024{left:468.000000px;}
.x73_c00024{left:471.000000px;}
.x20_c00024{left:472.500000px;}
.xf7_c00024{left:475.500000px;}
.x99_c00024{left:477.000000px;}
.x2c_c00024{left:478.080000px;}
.x93_c00024{left:480.000000px;}
.x9e_c00024{left:481.500000px;}
.x5c_c00024{left:482.580000px;}
.x87_c00024{left:484.920000px;}
.xff_c00024{left:486.000000px;}
.xb_c00024{left:487.920000px;}
.x6e_c00024{left:489.000000px;}
.xe4_c00024{left:490.500000px;}
.x58_c00024{left:492.420000px;}
.xb2_c00024{left:493.500000px;}
.xc0_c00024{left:494.580000px;}
.x9f_c00024{left:496.500000px;}
.x7c_c00024{left:498.000000px;}
.x39_c00024{left:499.080000px;}
.xf1_c00024{left:502.080000px;}
.xb9_c00024{left:507.420000px;}
.x45_c00024{left:510.420000px;}
.xb3_c00024{left:511.500000px;}
.x2d_c00024{left:513.000000px;}
.x5d_c00024{left:514.080000px;}
.x74_c00024{left:516.000000px;}
.xd3_c00024{left:517.080000px;}
.xc_c00024{left:518.580000px;}
.x16_c00024{left:522.000000px;}
.xf2_c00024{left:523.500000px;}
.x3a_c00024{left:525.000000px;}
.x7d_c00024{left:526.500000px;}
.x8c_c00024{left:529.920000px;}
.xdf_c00024{left:531.420000px;}
.x6f_c00024{left:532.500000px;}
.x108_c00024{left:534.000000px;}
.x5e_c00024{left:535.080000px;}
.xec_c00024{left:537.000000px;}
.xe7_c00024{left:538.500000px;}
.x46_c00024{left:540.000000px;}
.x9a_c00024{left:541.500000px;}
.x10b_c00024{left:543.855000px;}
.x17_c00024{left:544.920000px;}
.x50_c00024{left:549.000000px;}
.xc1_c00024{left:550.080000px;}
.xf8_c00024{left:552.000000px;}
.xce_c00024{left:553.500000px;}
.x8d_c00024{left:555.000000px;}
.x5f_c00024{left:556.920000px;}
.xaf_c00024{left:558.420000px;}
.x21_c00024{left:559.500000px;}
.x67_c00024{left:561.420000px;}
.x88_c00024{left:564.000000px;}
.xba_c00024{left:565.500000px;}
.xd9_c00024{left:567.000000px;}
.xcf_c00024{left:568.500000px;}
.x100_c00024{left:570.000000px;}
.xc6_c00024{left:571.080000px;}
.x3b_c00024{left:573.420000px;}
.xa6_c00024{left:574.920000px;}
.xd_c00024{left:577.500000px;}
.xb4_c00024{left:579.420000px;}
.xe5_c00024{left:580.500000px;}
.x7e_c00024{left:583.080000px;}
.xbb_c00024{left:585.420000px;}
.x60_c00024{left:588.000000px;}
.x68_c00024{left:591.000000px;}
.x22_c00024{left:592.500000px;}
.x75_c00024{left:594.420000px;}
.x101_c00024{left:595.500000px;}
.xee_c00024{left:598.080000px;}
.x7f_c00024{left:601.080000px;}
.xa7_c00024{left:605.580000px;}
.x70_c00024{left:607.500000px;}
.xf3_c00024{left:609.420000px;}
.x3c_c00024{left:610.500000px;}
.x18_c00024{left:612.000000px;}
.xed_c00024{left:615.000000px;}
.x59_c00024{left:616.920000px;}
.xfa_c00024{left:618.000000px;}
.xc7_c00024{left:619.500000px;}
.x76_c00024{left:621.420000px;}
.x102_c00024{left:622.500000px;}
.x109_c00024{left:625.500000px;}
.x71_c00024{left:628.500000px;}
.x23_c00024{left:630.000000px;}
.xef_c00024{left:631.500000px;}
.xe_c00024{left:633.420000px;}
.x2e_c00024{left:634.920000px;}
.x51_c00024{left:639.420000px;}
.xf4_c00024{left:640.500000px;}
.x69_c00024{left:643.920000px;}
.xb0_c00024{left:646.500000px;}
.x94_c00024{left:648.000000px;}
.x5a_c00024{left:649.080000px;}
.x24_c00024{left:651.420000px;}
.x47_c00024{left:655.500000px;}
.xfb_c00024{left:658.920000px;}
.xf_c00024{left:660.420000px;}
.x2f_c00024{left:663.000000px;}
.x61_c00024{left:666.000000px;}
.x19_c00024{left:667.080000px;}
.xb5_c00024{left:668.145000px;}
.xad_c00024{left:671.580000px;}
.x80_c00024{left:674.580000px;}
.xe8_c00024{left:676.080000px;}
.x48_c00024{left:678.000000px;}
.x3d_c00024{left:680.580000px;}
.x77_c00024{left:683.580000px;}
.x9b_c00024{left:685.080000px;}
.xc8_c00024{left:686.580000px;}
.x25_c00024{left:688.080000px;}
.x1_c00024{left:691.500000px;}
.xda_c00024{left:694.500000px;}
.xd0_c00024{left:697.500000px;}
.x3e_c00024{left:698.580000px;}
.x6a_c00024{left:702.000000px;}
.xb6_c00024{left:703.080000px;}
.x52_c00024{left:705.420000px;}
.x95_c00024{left:706.920000px;}
.xf5_c00024{left:709.500000px;}
.xa0_c00024{left:720.000000px;}
@media print{
.v1_c00024{vertical-align:-5.333333pt;}
.v0_c00024{vertical-align:0.000000pt;}
.v2_c00024{vertical-align:12.213333pt;}
.v3_c00024{vertical-align:16.000000pt;}
.ls0_c00024{letter-spacing:0.000000pt;}
.ws0_c00024{word-spacing:-5.706108pt;}
.ws3_c00024{word-spacing:-4.988483pt;}
.ws1_c00024{word-spacing:-3.492160pt;}
.ws2_c00024{word-spacing:-2.602667pt;}
.ws4_c00024{word-spacing:-2.586902pt;}
.ws5_c00024{word-spacing:0.000000pt;}
.fs8_c00024{font-size:12.106667pt;}
.fs4_c00024{font-size:16.640000pt;}
.fs0_c00024{font-size:18.133333pt;}
.fs1_c00024{font-size:22.666667pt;}
.fs2_c00024{font-size:25.706667pt;}
.fs5_c00024{font-size:28.746667pt;}
.fs3_c00024{font-size:31.733333pt;}
.fs6_c00024{font-size:34.773333pt;}
.fs7_c00024{font-size:37.813333pt;}
.y0_c00024{bottom:0.000000pt;}
.y101_c00024{bottom:222.066667pt;}
.y103_c00024{bottom:223.026667pt;}
.y100_c00024{bottom:223.226667pt;}
.y105_c00024{bottom:223.400000pt;}
.y104_c00024{bottom:223.973333pt;}
.y102_c00024{bottom:224.933333pt;}
.yff_c00024{bottom:225.306667pt;}
.y106_c00024{bottom:226.266667pt;}
.yfe_c00024{bottom:228.360000pt;}
.yf9_c00024{bottom:236.360000pt;}
.yfa_c00024{bottom:237.306667pt;}
.yfb_c00024{bottom:238.266667pt;}
.yfc_c00024{bottom:238.640000pt;}
.yfd_c00024{bottom:239.600000pt;}
.yf8_c00024{bottom:239.973333pt;}
.yf7_c00024{bottom:244.173333pt;}
.yf0_c00024{bottom:259.026667pt;}
.yf1_c00024{bottom:259.400000pt;}
.yf5_c00024{bottom:259.773333pt;}
.yee_c00024{bottom:261.106667pt;}
.yf2_c00024{bottom:261.306667pt;}
.yef_c00024{bottom:261.693333pt;}
.yf4_c00024{bottom:261.893333pt;}
.yf3_c00024{bottom:262.640000pt;}
.yec_c00024{bottom:263.026667pt;}
.yed_c00024{bottom:263.226667pt;}
.yf6_c00024{bottom:263.973333pt;}
.yeb_c00024{bottom:264.733333pt;}
.ye6_c00024{bottom:277.106667pt;}
.ye5_c00024{bottom:277.493333pt;}
.yea_c00024{bottom:277.693333pt;}
.ye4_c00024{bottom:278.440000pt;}
.ye3_c00024{bottom:279.026667pt;}
.ye9_c00024{bottom:279.226667pt;}
.ye2_c00024{bottom:279.973333pt;}
.ye7_c00024{bottom:280.360000pt;}
.ye8_c00024{bottom:281.306667pt;}
.ye1_c00024{bottom:281.693333pt;}
.ye0_c00024{bottom:282.266667pt;}
.ydc_c00024{bottom:294.440000pt;}
.ydb_c00024{bottom:295.773333pt;}
.ydd_c00024{bottom:296.360000pt;}
.yde_c00024{bottom:296.560000pt;}
.ydf_c00024{bottom:297.306667pt;}
.yda_c00024{bottom:297.693333pt;}
.yd9_c00024{bottom:298.066667pt;}
.yd6_c00024{bottom:311.773333pt;}
.yd4_c00024{bottom:312.733333pt;}
.yd8_c00024{bottom:313.106667pt;}
.yd5_c00024{bottom:313.693333pt;}
.yd7_c00024{bottom:313.893333pt;}
.yd3_c00024{bottom:314.640000pt;}
.yd2_c00024{bottom:315.026667pt;}
.yd1_c00024{bottom:316.733333pt;}
.ycc_c00024{bottom:329.493333pt;}
.ycf_c00024{bottom:330.440000pt;}
.ycd_c00024{bottom:331.026667pt;}
.yd0_c00024{bottom:331.400000pt;}
.yce_c00024{bottom:332.360000pt;}
.ycb_c00024{bottom:333.693333pt;}
.yca_c00024{bottom:335.400000pt;}
.yc9_c00024{bottom:347.773333pt;}
.yc8_c00024{bottom:349.693333pt;}
.yc7_c00024{bottom:351.026667pt;}
.yc6_c00024{bottom:352.560000pt;}
.yc5_c00024{bottom:365.106667pt;}
.yc4_c00024{bottom:366.640000pt;}
.yc1_c00024{bottom:367.026667pt;}
.yc2_c00024{bottom:367.226667pt;}
.yc3_c00024{bottom:367.973333pt;}
.yc0_c00024{bottom:368.733333pt;}
.ybc_c00024{bottom:381.306667pt;}
.ybd_c00024{bottom:382.440000pt;}
.ybe_c00024{bottom:383.973333pt;}
.ybb_c00024{bottom:384.360000pt;}
.ybf_c00024{bottom:385.306667pt;}
.yba_c00024{bottom:386.066667pt;}
.yb9_c00024{bottom:399.773333pt;}
.yb7_c00024{bottom:400.733333pt;}
.yb5_c00024{bottom:401.693333pt;}
.yb6_c00024{bottom:401.893333pt;}
.yb4_c00024{bottom:402.066667pt;}
.yb8_c00024{bottom:402.640000pt;}
.yaf_c00024{bottom:416.360000pt;}
.yae_c00024{bottom:417.693333pt;}
.yb3_c00024{bottom:418.066667pt;}
.yb2_c00024{bottom:418.440000pt;}
.yb1_c00024{bottom:419.226667pt;}
.yb0_c00024{bottom:419.400000pt;}
.yad_c00024{bottom:420.360000pt;}
.yac_c00024{bottom:420.560000pt;}
.yab_c00024{bottom:423.026667pt;}
.ya8_c00024{bottom:437.106667pt;}
.yaa_c00024{bottom:437.693333pt;}
.ya9_c00024{bottom:438.640000pt;}
.ya6_c00024{bottom:453.106667pt;}
.ya7_c00024{bottom:454.640000pt;}
.ya5_c00024{bottom:455.026667pt;}
.ya4_c00024{bottom:455.400000pt;}
.ya2_c00024{bottom:469.306667pt;}
.ya0_c00024{bottom:470.440000pt;}
.ya1_c00024{bottom:471.226667pt;}
.y9f_c00024{bottom:472.360000pt;}
.y9e_c00024{bottom:472.733333pt;}
.ya3_c00024{bottom:473.306667pt;}
.y9d_c00024{bottom:486.066667pt;}
.y98_c00024{bottom:487.026667pt;}
.y9a_c00024{bottom:487.773333pt;}
.y97_c00024{bottom:489.106667pt;}
.y99_c00024{bottom:489.306667pt;}
.y9b_c00024{bottom:489.693333pt;}
.y9c_c00024{bottom:489.893333pt;}
.y96_c00024{bottom:490.640000pt;}
.y92_c00024{bottom:505.106667pt;}
.y94_c00024{bottom:506.440000pt;}
.y93_c00024{bottom:507.026667pt;}
.y91_c00024{bottom:507.400000pt;}
.y8f_c00024{bottom:507.773333pt;}
.y95_c00024{bottom:508.360000pt;}
.y90_c00024{bottom:508.560000pt;}
.y8a_c00024{bottom:522.440000pt;}
.y8d_c00024{bottom:523.400000pt;}
.y8b_c00024{bottom:524.360000pt;}
.y8c_c00024{bottom:524.560000pt;}
.y8e_c00024{bottom:525.306667pt;}
.y89_c00024{bottom:527.026667pt;}
.y88_c00024{bottom:527.226667pt;}
.y85_c00024{bottom:539.026667pt;}
.y86_c00024{bottom:539.400000pt;}
.y87_c00024{bottom:541.106667pt;}
.y83_c00024{bottom:541.893333pt;}
.y81_c00024{bottom:542.066667pt;}
.y84_c00024{bottom:542.640000pt;}
.y82_c00024{bottom:543.026667pt;}
.y80_c00024{bottom:545.693333pt;}
.y7e_c00024{bottom:558.440000pt;}
.y7d_c00024{bottom:559.973333pt;}
.y7c_c00024{bottom:560.160000pt;}
.y7f_c00024{bottom:560.360000pt;}
.y79_c00024{bottom:575.773333pt;}
.y78_c00024{bottom:576.560000pt;}
.y7b_c00024{bottom:576.733333pt;}
.y76_c00024{bottom:577.106667pt;}
.y77_c00024{bottom:577.693333pt;}
.y7a_c00024{bottom:578.640000pt;}
.y75_c00024{bottom:591.773333pt;}
.y74_c00024{bottom:593.106667pt;}
.y73_c00024{bottom:595.026667pt;}
.y72_c00024{bottom:595.226667pt;}
.y71_c00024{bottom:596.733333pt;}
.y6f_c00024{bottom:610.440000pt;}
.y6e_c00024{bottom:612.360000pt;}
.y70_c00024{bottom:612.560000pt;}
.y6d_c00024{bottom:614.066667pt;}
.y6b_c00024{bottom:627.773333pt;}
.y69_c00024{bottom:629.693333pt;}
.y6c_c00024{bottom:629.893333pt;}
.y6a_c00024{bottom:630.640000pt;}
.y68_c00024{bottom:631.973333pt;}
.y67_c00024{bottom:632.360000pt;}
.y64_c00024{bottom:645.106667pt;}
.y66_c00024{bottom:646.066667pt;}
.y63_c00024{bottom:647.026667pt;}
.y65_c00024{bottom:647.226667pt;}
.y5b_c00024{bottom:662.826667pt;}
.y5d_c00024{bottom:663.026667pt;}
.y5f_c00024{bottom:663.773333pt;}
.y5e_c00024{bottom:664.360000pt;}
.y61_c00024{bottom:664.560000pt;}
.y5c_c00024{bottom:665.306667pt;}
.y60_c00024{bottom:665.693333pt;}
.y62_c00024{bottom:665.893333pt;}
.y57_c00024{bottom:681.106667pt;}
.y5a_c00024{bottom:681.893333pt;}
.y59_c00024{bottom:682.066667pt;}
.y58_c00024{bottom:683.026667pt;}
.y56_c00024{bottom:685.693333pt;}
.y53_c00024{bottom:698.440000pt;}
.y52_c00024{bottom:699.226667pt;}
.y50_c00024{bottom:699.400000pt;}
.y54_c00024{bottom:700.360000pt;}
.y55_c00024{bottom:700.560000pt;}
.y51_c00024{bottom:701.306667pt;}
.y4e_c00024{bottom:715.773333pt;}
.y4c_c00024{bottom:716.933333pt;}
.y4d_c00024{bottom:717.693333pt;}
.y4f_c00024{bottom:718.640000pt;}
.y4b_c00024{bottom:719.026667pt;}
.y45_c00024{bottom:732.733333pt;}
.y49_c00024{bottom:733.106667pt;}
.y46_c00024{bottom:733.493333pt;}
.y47_c00024{bottom:734.066667pt;}
.y48_c00024{bottom:735.026667pt;}
.y4a_c00024{bottom:735.226667pt;}
.y3f_c00024{bottom:750.440000pt;}
.y43_c00024{bottom:751.773333pt;}
.y44_c00024{bottom:751.973333pt;}
.y40_c00024{bottom:752.360000pt;}
.y41_c00024{bottom:753.306667pt;}
.y42_c00024{bottom:753.693333pt;}
.y3e_c00024{bottom:754.066667pt;}
.y39_c00024{bottom:767.026667pt;}
.y3d_c00024{bottom:767.773333pt;}
.y3b_c00024{bottom:769.306667pt;}
.y38_c00024{bottom:769.693333pt;}
.y3c_c00024{bottom:769.893333pt;}
.y37_c00024{bottom:770.066667pt;}
.y3a_c00024{bottom:770.640000pt;}
.y36_c00024{bottom:786.440000pt;}
.y33_c00024{bottom:787.026667pt;}
.y34_c00024{bottom:787.226667pt;}
.y35_c00024{bottom:787.973333pt;}
.y32_c00024{bottom:788.360000pt;}
.y31_c00024{bottom:788.733333pt;}
.y30_c00024{bottom:804.560000pt;}
.y2e_c00024{bottom:804.733333pt;}
.y2d_c00024{bottom:805.306667pt;}
.y2f_c00024{bottom:805.693333pt;}
.y2c_c00024{bottom:806.066667pt;}
.y2a_c00024{bottom:821.106667pt;}
.y27_c00024{bottom:821.493333pt;}
.y29_c00024{bottom:822.640000pt;}
.y28_c00024{bottom:823.026667pt;}
.y2b_c00024{bottom:823.226667pt;}
.y26_c00024{bottom:837.493333pt;}
.y24_c00024{bottom:838.440000pt;}
.y25_c00024{bottom:839.226667pt;}
.y22_c00024{bottom:840.360000pt;}
.y23_c00024{bottom:841.306667pt;}
.y21_c00024{bottom:841.693333pt;}
.y1f_c00024{bottom:855.026667pt;}
.y1d_c00024{bottom:855.773333pt;}
.y20_c00024{bottom:857.306667pt;}
.y1e_c00024{bottom:857.693333pt;}
.y1c_c00024{bottom:858.066667pt;}
.y1b_c00024{bottom:873.106667pt;}
.y1a_c00024{bottom:874.640000pt;}
.y19_c00024{bottom:875.026667pt;}
.y18_c00024{bottom:875.226667pt;}
.y17_c00024{bottom:875.973333pt;}
.y16_c00024{bottom:889.693333pt;}
.y13_c00024{bottom:890.440000pt;}
.y15_c00024{bottom:891.400000pt;}
.y12_c00024{bottom:892.360000pt;}
.y11_c00024{bottom:892.733333pt;}
.y14_c00024{bottom:893.306667pt;}
.ye_c00024{bottom:907.773333pt;}
.yd_c00024{bottom:909.693333pt;}
.yf_c00024{bottom:909.893333pt;}
.y10_c00024{bottom:910.640000pt;}
.yc_c00024{bottom:911.026667pt;}
.yb_c00024{bottom:924.360000pt;}
.y9_c00024{bottom:925.106667pt;}
.y8_c00024{bottom:927.026667pt;}
.ya_c00024{bottom:927.973333pt;}
.y7_c00024{bottom:928.360000pt;}
.y6_c00024{bottom:929.306667pt;}
.y4_c00024{bottom:941.693333pt;}
.y5_c00024{bottom:943.773333pt;}
.y2_c00024{bottom:945.306667pt;}
.y3_c00024{bottom:945.693333pt;}
.y1_c00024{bottom:979.600000pt;}
.hb_c00024{height:14.890964pt;}
.h5_c00024{height:20.466875pt;}
.h1_c00024{height:22.303646pt;}
.h2_c00024{height:27.879557pt;}
.h3_c00024{height:31.618698pt;}
.h6_c00024{height:35.357839pt;}
.h4_c00024{height:39.031380pt;}
.h7_c00024{height:42.770521pt;}
.h9_c00024{height:43.832031pt;}
.h8_c00024{height:46.509661pt;}
.ha_c00024{height:47.618698pt;}
.h0_c00024{height:1186.666667pt;}
.w0_c00024{width:782.666667pt;}
.x0_c00024{left:0.000000pt;}
.x3_c00024{left:135.040000pt;}
.x103_c00024{left:148.000000pt;}
.x81_c00024{left:149.333333pt;}
.xbc_c00024{left:151.040000pt;}
.x10_c00024{left:153.706667pt;}
.xe9_c00024{left:155.040000pt;}
.xc2_c00024{left:156.000000pt;}
.x104_c00024{left:157.333333pt;}
.x49_c00024{left:160.373333pt;}
.x8e_c00024{left:163.040000pt;}
.x78_c00024{left:165.333333pt;}
.x82_c00024{left:166.666667pt;}
.xc3_c00024{left:168.373333pt;}
.x30_c00024{left:170.666667pt;}
.x3f_c00024{left:171.626667pt;}
.xfc_c00024{left:172.960000pt;}
.x1a_c00024{left:175.040000pt;}
.xea_c00024{left:178.666667pt;}
.x11_c00024{left:180.000000pt;}
.x26_c00024{left:182.293333pt;}
.x4_c00024{left:184.000000pt;}
.xd5_c00024{left:185.333333pt;}
.x53_c00024{left:187.626667pt;}
.xe0_c00024{left:189.706667pt;}
.x31_c00024{left:191.040000pt;}
.x4a_c00024{left:192.373333pt;}
.x40_c00024{left:195.040000pt;}
.x83_c00024{left:196.000000pt;}
.xcc_c00024{left:197.333333pt;}
.x6b_c00024{left:198.666667pt;}
.xd1_c00024{left:199.626667pt;}
.x9c_c00024{left:202.666667pt;}
.xf6_c00024{left:204.000000pt;}
.x1b_c00024{left:206.666667pt;}
.x27_c00024{left:210.666667pt;}
.x8f_c00024{left:211.626667pt;}
.xa8_c00024{left:213.706667pt;}
.xd2_c00024{left:216.373333pt;}
.x5_c00024{left:217.333333pt;}
.x62_c00024{left:218.293333pt;}
.x41_c00024{left:219.240000pt;}
.xb7_c00024{left:221.333333pt;}
.xaa_c00024{left:225.706667pt;}
.x32_c00024{left:226.666667pt;}
.x90_c00024{left:228.373333pt;}
.x79_c00024{left:230.666667pt;}
.x12_c00024{left:232.373333pt;}
.xa1_c00024{left:236.000000pt;}
.x63_c00024{left:237.333333pt;}
.xdb_c00024{left:239.626667pt;}
.x6_c00024{left:241.333333pt;}
.x4b_c00024{left:242.293333pt;}
.x33_c00024{left:243.626667pt;}
.x54_c00024{left:249.333333pt;}
.xf9_c00024{left:251.626667pt;}
.x105_c00024{left:253.333333pt;}
.x6c_c00024{left:254.666667pt;}
.xc9_c00024{left:256.000000pt;}
.x91_c00024{left:257.333333pt;}
.xdc_c00024{left:258.293333pt;}
.xd4_c00024{left:260.373333pt;}
.x4c_c00024{left:261.706667pt;}
.x34_c00024{left:262.666667pt;}
.x13_c00024{left:264.000000pt;}
.xd6_c00024{left:266.293333pt;}
.xe1_c00024{left:267.626667pt;}
.xca_c00024{left:272.000000pt;}
.x55_c00024{left:273.906667pt;}
.xa2_c00024{left:276.000000pt;}
.x96_c00024{left:277.133333pt;}
.x84_c00024{left:279.040000pt;}
.xd7_c00024{left:280.000000pt;}
.x28_c00024{left:281.706667pt;}
.xf0_c00024{left:282.666667pt;}
.x1c_c00024{left:283.626667pt;}
.xe6_c00024{left:285.333333pt;}
.xe2_c00024{left:287.626667pt;}
.xbd_c00024{left:289.706667pt;}
.x7_c00024{left:291.626667pt;}
.x42_c00024{left:293.333333pt;}
.x35_c00024{left:294.666667pt;}
.x92_c00024{left:296.000000pt;}
.x4d_c00024{left:296.960000pt;}
.x89_c00024{left:300.000000pt;}
.x1d_c00024{left:301.706667pt;}
.x64_c00024{left:303.626667pt;}
.xcd_c00024{left:305.706667pt;}
.x29_c00024{left:306.666667pt;}
.x97_c00024{left:308.000000pt;}
.x7a_c00024{left:309.333333pt;}
.x85_c00024{left:311.040000pt;}
.x56_c00024{left:312.760000pt;}
.x36_c00024{left:313.906667pt;}
.xe3_c00024{left:316.000000pt;}
.xb8_c00024{left:317.333333pt;}
.x8_c00024{left:320.373333pt;}
.x8a_c00024{left:322.666667pt;}
.xab_c00024{left:324.000000pt;}
.x1e_c00024{left:328.000000pt;}
.xa3_c00024{left:329.333333pt;}
.xfd_c00024{left:332.000000pt;}
.xc4_c00024{left:333.333333pt;}
.x86_c00024{left:337.333333pt;}
.x10a_c00024{left:339.040000pt;}
.xeb_c00024{left:340.000000pt;}
.x106_c00024{left:341.333333pt;}
.x2_c00024{left:345.333333pt;}
.x9d_c00024{left:348.000000pt;}
.x65_c00024{left:348.960000pt;}
.xd8_c00024{left:351.040000pt;}
.xae_c00024{left:352.000000pt;}
.x72_c00024{left:353.706667pt;}
.x14_c00024{left:357.706667pt;}
.xfe_c00024{left:360.000000pt;}
.x43_c00024{left:361.706667pt;}
.x107_c00024{left:362.666667pt;}
.xbe_c00024{left:364.000000pt;}
.xcb_c00024{left:364.960000pt;}
.x57_c00024{left:368.373333pt;}
.x6d_c00024{left:370.666667pt;}
.x37_c00024{left:372.000000pt;}
.x4e_c00024{left:373.706667pt;}
.xb1_c00024{left:374.666667pt;}
.xa9_c00024{left:376.000000pt;}
.x1f_c00024{left:378.666667pt;}
.x7b_c00024{left:380.000000pt;}
.x2a_c00024{left:382.293333pt;}
.x9_c00024{left:383.626667pt;}
.xa4_c00024{left:385.333333pt;}
.xbf_c00024{left:386.666667pt;}
.x38_c00024{left:388.000000pt;}
.x5b_c00024{left:390.293333pt;}
.x15_c00024{left:392.000000pt;}
.x44_c00024{left:394.293333pt;}
.xdd_c00024{left:395.626667pt;}
.x2b_c00024{left:400.373333pt;}
.xc5_c00024{left:401.706667pt;}
.x4f_c00024{left:403.040000pt;}
.x66_c00024{left:405.333333pt;}
.xa5_c00024{left:407.040000pt;}
.x8b_c00024{left:409.333333pt;}
.xa_c00024{left:411.040000pt;}
.x98_c00024{left:413.333333pt;}
.xde_c00024{left:414.293333pt;}
.xac_c00024{left:416.000000pt;}
.x73_c00024{left:418.666667pt;}
.x20_c00024{left:420.000000pt;}
.xf7_c00024{left:422.666667pt;}
.x99_c00024{left:424.000000pt;}
.x2c_c00024{left:424.960000pt;}
.x93_c00024{left:426.666667pt;}
.x9e_c00024{left:428.000000pt;}
.x5c_c00024{left:428.960000pt;}
.x87_c00024{left:431.040000pt;}
.xff_c00024{left:432.000000pt;}
.xb_c00024{left:433.706667pt;}
.x6e_c00024{left:434.666667pt;}
.xe4_c00024{left:436.000000pt;}
.x58_c00024{left:437.706667pt;}
.xb2_c00024{left:438.666667pt;}
.xc0_c00024{left:439.626667pt;}
.x9f_c00024{left:441.333333pt;}
.x7c_c00024{left:442.666667pt;}
.x39_c00024{left:443.626667pt;}
.xf1_c00024{left:446.293333pt;}
.xb9_c00024{left:451.040000pt;}
.x45_c00024{left:453.706667pt;}
.xb3_c00024{left:454.666667pt;}
.x2d_c00024{left:456.000000pt;}
.x5d_c00024{left:456.960000pt;}
.x74_c00024{left:458.666667pt;}
.xd3_c00024{left:459.626667pt;}
.xc_c00024{left:460.960000pt;}
.x16_c00024{left:464.000000pt;}
.xf2_c00024{left:465.333333pt;}
.x3a_c00024{left:466.666667pt;}
.x7d_c00024{left:468.000000pt;}
.x8c_c00024{left:471.040000pt;}
.xdf_c00024{left:472.373333pt;}
.x6f_c00024{left:473.333333pt;}
.x108_c00024{left:474.666667pt;}
.x5e_c00024{left:475.626667pt;}
.xec_c00024{left:477.333333pt;}
.xe7_c00024{left:478.666667pt;}
.x46_c00024{left:480.000000pt;}
.x9a_c00024{left:481.333333pt;}
.x10b_c00024{left:483.426667pt;}
.x17_c00024{left:484.373333pt;}
.x50_c00024{left:488.000000pt;}
.xc1_c00024{left:488.960000pt;}
.xf8_c00024{left:490.666667pt;}
.xce_c00024{left:492.000000pt;}
.x8d_c00024{left:493.333333pt;}
.x5f_c00024{left:495.040000pt;}
.xaf_c00024{left:496.373333pt;}
.x21_c00024{left:497.333333pt;}
.x67_c00024{left:499.040000pt;}
.x88_c00024{left:501.333333pt;}
.xba_c00024{left:502.666667pt;}
.xd9_c00024{left:504.000000pt;}
.xcf_c00024{left:505.333333pt;}
.x100_c00024{left:506.666667pt;}
.xc6_c00024{left:507.626667pt;}
.x3b_c00024{left:509.706667pt;}
.xa6_c00024{left:511.040000pt;}
.xd_c00024{left:513.333333pt;}
.xb4_c00024{left:515.040000pt;}
.xe5_c00024{left:516.000000pt;}
.x7e_c00024{left:518.293333pt;}
.xbb_c00024{left:520.373333pt;}
.x60_c00024{left:522.666667pt;}
.x68_c00024{left:525.333333pt;}
.x22_c00024{left:526.666667pt;}
.x75_c00024{left:528.373333pt;}
.x101_c00024{left:529.333333pt;}
.xee_c00024{left:531.626667pt;}
.x7f_c00024{left:534.293333pt;}
.xa7_c00024{left:538.293333pt;}
.x70_c00024{left:540.000000pt;}
.xf3_c00024{left:541.706667pt;}
.x3c_c00024{left:542.666667pt;}
.x18_c00024{left:544.000000pt;}
.xed_c00024{left:546.666667pt;}
.x59_c00024{left:548.373333pt;}
.xfa_c00024{left:549.333333pt;}
.xc7_c00024{left:550.666667pt;}
.x76_c00024{left:552.373333pt;}
.x102_c00024{left:553.333333pt;}
.x109_c00024{left:556.000000pt;}
.x71_c00024{left:558.666667pt;}
.x23_c00024{left:560.000000pt;}
.xef_c00024{left:561.333333pt;}
.xe_c00024{left:563.040000pt;}
.x2e_c00024{left:564.373333pt;}
.x51_c00024{left:568.373333pt;}
.xf4_c00024{left:569.333333pt;}
.x69_c00024{left:572.373333pt;}
.xb0_c00024{left:574.666667pt;}
.x94_c00024{left:576.000000pt;}
.x5a_c00024{left:576.960000pt;}
.x24_c00024{left:579.040000pt;}
.x47_c00024{left:582.666667pt;}
.xfb_c00024{left:585.706667pt;}
.xf_c00024{left:587.040000pt;}
.x2f_c00024{left:589.333333pt;}
.x61_c00024{left:592.000000pt;}
.x19_c00024{left:592.960000pt;}
.xb5_c00024{left:593.906667pt;}
.xad_c00024{left:596.960000pt;}
.x80_c00024{left:599.626667pt;}
.xe8_c00024{left:600.960000pt;}
.x48_c00024{left:602.666667pt;}
.x3d_c00024{left:604.960000pt;}
.x77_c00024{left:607.626667pt;}
.x9b_c00024{left:608.960000pt;}
.xc8_c00024{left:610.293333pt;}
.x25_c00024{left:611.626667pt;}
.x1_c00024{left:614.666667pt;}
.xda_c00024{left:617.333333pt;}
.xd0_c00024{left:620.000000pt;}
.x3e_c00024{left:620.960000pt;}
.x6a_c00024{left:624.000000pt;}
.xb6_c00024{left:624.960000pt;}
.x52_c00024{left:627.040000pt;}
.x95_c00024{left:628.373333pt;}
.xf5_c00024{left:630.666667pt;}
.xa0_c00024{left:640.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_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_64bc62fd7709e5665d1a2fda.woff2')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:1.688965;font-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_c00025{transform:matrix(0.313544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313544,0.000000,0.000000,0.250000,0,0);}
.m137_c00025{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m26_c00025{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.mad_c00025{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m92_c00025{transform:matrix(0.372449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372449,0.000000,0.000000,0.250000,0,0);}
.m1e_c00025{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.m136_c00025{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mbf_c00025{transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);}
.m5_c00025{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m5d_c00025{transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);}
.mbc_c00025{transform:matrix(0.382189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382189,0.000000,0.000000,0.250000,0,0);}
.mb0_c00025{transform:matrix(0.386364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386364,0.000000,0.000000,0.250000,0,0);}
.mf7_c00025{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.mcc_c00025{transform:matrix(0.390224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390224,0.000000,0.000000,0.250000,0,0);}
.m82_c00025{transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);}
.m126_c00025{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m11d_c00025{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.me3_c00025{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.md_c00025{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m12d_c00025{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.me0_c00025{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m24_c00025{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mbe_c00025{transform:matrix(0.404453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404453,0.000000,0.000000,0.250000,0,0);}
.mdf_c00025{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m41_c00025{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mc7_c00025{transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);}
.mf2_c00025{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m35_c00025{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m116_c00025{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m80_c00025{transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);}
.mdb_c00025{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m11e_c00025{transform:matrix(0.414110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414110,0.000000,0.000000,0.250000,0,0);}
.m5e_c00025{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.m114_c00025{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mec_c00025{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.md2_c00025{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m2d_c00025{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m20_c00025{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m5a_c00025{transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);}
.m42_c00025{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.me6_c00025{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.me2_c00025{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m86_c00025{transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);}
.m112_c00025{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m45_c00025{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m110_c00025{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m115_c00025{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mc4_c00025{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.m7e_c00025{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.me7_c00025{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m3b_c00025{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m103_c00025{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m39_c00025{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m93_c00025{transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);}
.m102_c00025{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m2f_c00025{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mea_c00025{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m18_c00025{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m120_c00025{transform:matrix(0.435529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435529,0.000000,0.000000,0.250000,0,0);}
.m6f_c00025{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m14_c00025{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m2b_c00025{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.mee_c00025{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m2a_c00025{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.me9_c00025{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m23_c00025{transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);}
.m2c_c00025{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.md3_c00025{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m57_c00025{transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);}
.m12b_c00025{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m107_c00025{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m8b_c00025{transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);}
.md5_c00025{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m105_c00025{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.ma1_c00025{transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);}
.m12e_c00025{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m130_c00025{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m4b_c00025{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m139_c00025{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m52_c00025{transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);}
.mce_c00025{transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);}
.m13_c00025{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m5f_c00025{transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);}
.mdd_c00025{transform:matrix(0.463445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463445,0.000000,0.000000,0.250000,0,0);}
.m8d_c00025{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m96_c00025{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m16_c00025{transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);}
.m55_c00025{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.m134_c00025{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.mb7_c00025{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.mb4_c00025{transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);}
.m10e_c00025{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.m127_c00025{transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);}
.mbd_c00025{transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);}
.me4_c00025{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.m10f_c00025{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m8a_c00025{transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);}
.m63_c00025{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.mb5_c00025{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m7_c00025{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m3f_c00025{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m6e_c00025{transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);}
.m118_c00025{transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);}
.m65_c00025{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.mfc_c00025{transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);}
.m2e_c00025{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.m7f_c00025{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m9c_c00025{transform:matrix(0.484118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484118,0.000000,0.000000,0.250000,0,0);}
.m1f_c00025{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mc1_c00025{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mb9_c00025{transform:matrix(0.487059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487059,0.000000,0.000000,0.250000,0,0);}
.m83_c00025{transform:matrix(0.488824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488824,0.000000,0.000000,0.250000,0,0);}
.mae_c00025{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mcd_c00025{transform:matrix(0.491765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491765,0.000000,0.000000,0.250000,0,0);}
.md8_c00025{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m15_c00025{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.me_c00025{transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);}
.ma2_c00025{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m49_c00025{transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);}
.m101_c00025{transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);}
.m29_c00025{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);}
.m122_c00025{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m138_c00025{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m4a_c00025{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.ma8_c00025{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m10b_c00025{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m67_c00025{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m109_c00025{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mf3_c00025{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m9b_c00025{transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);}
.mf1_c00025{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m84_c00025{transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);}
.m17_c00025{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m135_c00025{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m6c_c00025{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.m12_c00025{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.mb_c00025{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m87_c00025{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m8_c00025{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m4f_c00025{transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);}
.m1b_c00025{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mb3_c00025{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.m28_c00025{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m11b_c00025{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m59_c00025{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.ma4_c00025{transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);}
.m46_c00025{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.mb1_c00025{transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);}
.mf6_c00025{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m11a_c00025{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m11f_c00025{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m5c_c00025{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m3_c00025{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m123_c00025{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m117_c00025{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m3c_c00025{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m95_c00025{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.md6_c00025{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mf4_c00025{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mc5_c00025{transform:matrix(0.537647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537647,0.000000,0.000000,0.250000,0,0);}
.m44_c00025{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mde_c00025{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mfd_c00025{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m4d_c00025{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m10c_c00025{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mc_c00025{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mdc_c00025{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m10a_c00025{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m10d_c00025{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m10_c00025{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m56_c00025{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m124_c00025{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m133_c00025{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m3a_c00025{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.md4_c00025{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.me5_c00025{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m6b_c00025{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.ma_c00025{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mb8_c00025{transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);}
.m36_c00025{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mb6_c00025{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m47_c00025{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m104_c00025{transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);}
.m7b_c00025{transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);}
.m132_c00025{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.ma6_c00025{transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);}
.mc0_c00025{transform:matrix(0.557353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557353,0.000000,0.000000,0.250000,0,0);}
.mff_c00025{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.md1_c00025{transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);}
.mf9_c00025{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m60_c00025{transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);}
.m48_c00025{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mda_c00025{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m12f_c00025{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m8c_c00025{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.m119_c00025{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m99_c00025{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.me8_c00025{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.mf8_c00025{transform:matrix(0.570965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570965,0.000000,0.000000,0.250000,0,0);}
.m2_c00025{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m32_c00025{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m79_c00025{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m37_c00025{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m69_c00025{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m64_c00025{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00025{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m128_c00025{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m125_c00025{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m61_c00025{transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);}
.m75_c00025{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m12c_c00025{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m40_c00025{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m113_c00025{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m30_c00025{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.maf_c00025{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m108_c00025{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m68_c00025{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.md7_c00025{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m6_c00025{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m85_c00025{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.m66_c00025{transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);}
.mab_c00025{transform:matrix(0.595588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595588,0.000000,0.000000,0.250000,0,0);}
.mf0_c00025{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m77_c00025{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);}
.m121_c00025{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m34_c00025{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.ma3_c00025{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m7c_c00025{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.md9_c00025{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m19_c00025{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mba_c00025{transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);}
.med_c00025{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m9e_c00025{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);}
.m25_c00025{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m58_c00025{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.m9_c00025{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m4c_c00025{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.maa_c00025{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.m88_c00025{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.mf_c00025{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.m81_c00025{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m71_c00025{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m0_c00025{transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);}
.m11c_c00025{transform:matrix(0.624304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624304,0.000000,0.000000,0.250000,0,0);}
.m33_c00025{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);}
.me1_c00025{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m11_c00025{transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);}
.mc3_c00025{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m62_c00025{transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);}
.mc2_c00025{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m3d_c00025{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mfa_c00025{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mfe_c00025{transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);}
.mca_c00025{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.m8f_c00025{transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);}
.mbb_c00025{transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);}
.mcf_c00025{transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);}
.m94_c00025{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.mac_c00025{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.mc6_c00025{transform:matrix(0.646635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.646635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.646635,0.000000,0.000000,0.250000,0,0);}
.m9d_c00025{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m54_c00025{transform:matrix(0.652206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652206,0.000000,0.000000,0.250000,0,0);}
.mef_c00025{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m111_c00025{transform:matrix(0.653045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653045,0.000000,0.000000,0.250000,0,0);}
.m3e_c00025{transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);}
.m70_c00025{transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);}
.m91_c00025{transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);}
.m6d_c00025{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);}
.m6a_c00025{transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);}
.m21_c00025{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m1a_c00025{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m38_c00025{transform:matrix(0.671176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.671176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.671176,0.000000,0.000000,0.250000,0,0);}
.mc9_c00025{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.mc8_c00025{transform:matrix(0.673529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673529,0.000000,0.000000,0.250000,0,0);}
.m8e_c00025{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);}
.m7d_c00025{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.ma7_c00025{transform:matrix(0.683088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683088,0.000000,0.000000,0.250000,0,0);}
.m4_c00025{transform:matrix(0.685096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685096,0.000000,0.000000,0.250000,0,0);}
.m4e_c00025{transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);}
.m97_c00025{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);}
.mb2_c00025{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m72_c00025{transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);}
.m129_c00025{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m12a_c00025{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.ma0_c00025{transform:matrix(0.697794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697794,0.000000,0.000000,0.250000,0,0);}
.m1_c00025{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m98_c00025{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m53_c00025{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);}
.mcb_c00025{transform:matrix(0.707353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707353,0.000000,0.000000,0.250000,0,0);}
.m7a_c00025{transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);}
.m76_c00025{transform:matrix(0.722794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722794,0.000000,0.000000,0.250000,0,0);}
.m106_c00025{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.md0_c00025{transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);}
.mf5_c00025{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m27_c00025{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m31_c00025{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m22_c00025{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m89_c00025{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.m1c_c00025{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m100_c00025{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mfb_c00025{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m73_c00025{transform:matrix(0.777941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777941,0.000000,0.000000,0.250000,0,0);}
.m131_c00025{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.m1d_c00025{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m74_c00025{transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);}
.meb_c00025{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m43_c00025{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m9a_c00025{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m9f_c00025{transform:matrix(0.875735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875735,0.000000,0.000000,0.250000,0,0);}
.ma9_c00025{transform:matrix(0.885463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.885463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.885463,0.000000,0.000000,0.250000,0,0);}
.m50_c00025{transform:matrix(0.916912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.916912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.916912,0.000000,0.000000,0.250000,0,0);}
.m51_c00025{transform:matrix(0.953744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.953744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.953744,0.000000,0.000000,0.250000,0,0);}
.m90_c00025{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m78_c00025{transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.049679,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:-7.448345px;}
.ws1_c00025{word-spacing:-5.355771px;}
.ws2_c00025{word-spacing:0.000000px;}
.fc0_c00025{color:transparent;}
.fs6_c00025{font-size:13.620000px;}
.fs2_c00025{font-size:18.720000px;}
.fs0_c00025{font-size:20.400000px;}
.fs5_c00025{font-size:25.500000px;}
.fs1_c00025{font-size:28.920000px;}
.fs4_c00025{font-size:32.340000px;}
.fs3_c00025{font-size:35.700000px;}
.fs7_c00025{font-size:39.120000px;}
.y0_c00025{bottom:0.000000px;}
.y107_c00025{bottom:250.905000px;}
.y106_c00025{bottom:253.245000px;}
.y108_c00025{bottom:255.405000px;}
.y109_c00025{bottom:255.630000px;}
.y10a_c00025{bottom:256.470000px;}
.y105_c00025{bottom:273.405000px;}
.y100_c00025{bottom:273.630000px;}
.y101_c00025{bottom:274.470000px;}
.yff_c00025{bottom:274.905000px;}
.y104_c00025{bottom:275.130000px;}
.y102_c00025{bottom:275.325000px;}
.y103_c00025{bottom:276.405000px;}
.yf9_c00025{bottom:293.130000px;}
.yfc_c00025{bottom:293.745000px;}
.yfa_c00025{bottom:294.405000px;}
.yfb_c00025{bottom:294.630000px;}
.yfe_c00025{bottom:295.470000px;}
.yfd_c00025{bottom:295.905000px;}
.yf3_c00025{bottom:312.825000px;}
.yf7_c00025{bottom:313.245000px;}
.yf4_c00025{bottom:313.905000px;}
.yf6_c00025{bottom:314.130000px;}
.yf8_c00025{bottom:314.325000px;}
.yf5_c00025{bottom:315.405000px;}
.yf1_c00025{bottom:332.745000px;}
.yf2_c00025{bottom:333.630000px;}
.yf0_c00025{bottom:334.905000px;}
.yeb_c00025{bottom:351.180000px;}
.yef_c00025{bottom:352.245000px;}
.yed_c00025{bottom:353.325000px;}
.yee_c00025{bottom:353.970000px;}
.yec_c00025{bottom:354.405000px;}
.ye8_c00025{bottom:371.745000px;}
.ye9_c00025{bottom:372.825000px;}
.ye7_c00025{bottom:373.470000px;}
.ye6_c00025{bottom:373.905000px;}
.yea_c00025{bottom:374.130000px;}
.ydf_c00025{bottom:391.245000px;}
.ye1_c00025{bottom:392.325000px;}
.ye3_c00025{bottom:392.745000px;}
.ye0_c00025{bottom:393.405000px;}
.ye2_c00025{bottom:393.630000px;}
.ye4_c00025{bottom:394.470000px;}
.ye5_c00025{bottom:394.905000px;}
.ydc_c00025{bottom:409.905000px;}
.yd9_c00025{bottom:410.745000px;}
.yde_c00025{bottom:412.905000px;}
.ydd_c00025{bottom:413.130000px;}
.yda_c00025{bottom:413.970000px;}
.ydb_c00025{bottom:414.405000px;}
.yd6_c00025{bottom:429.405000px;}
.yd5_c00025{bottom:430.245000px;}
.yd1_c00025{bottom:431.325000px;}
.yd4_c00025{bottom:431.550000px;}
.yd2_c00025{bottom:432.405000px;}
.yd8_c00025{bottom:432.630000px;}
.yd7_c00025{bottom:433.470000px;}
.yd3_c00025{bottom:433.905000px;}
.ycf_c00025{bottom:449.745000px;}
.yce_c00025{bottom:451.245000px;}
.ycb_c00025{bottom:451.905000px;}
.ycd_c00025{bottom:452.130000px;}
.yd0_c00025{bottom:452.970000px;}
.ycc_c00025{bottom:453.405000px;}
.yc6_c00025{bottom:470.745000px;}
.yca_c00025{bottom:471.630000px;}
.yc8_c00025{bottom:471.825000px;}
.yc7_c00025{bottom:472.905000px;}
.yc9_c00025{bottom:473.970000px;}
.yc4_c00025{bottom:490.245000px;}
.yc5_c00025{bottom:491.130000px;}
.yc3_c00025{bottom:492.405000px;}
.yc2_c00025{bottom:508.905000px;}
.ybf_c00025{bottom:510.630000px;}
.ybc_c00025{bottom:510.825000px;}
.yc0_c00025{bottom:511.470000px;}
.ybd_c00025{bottom:511.905000px;}
.yc1_c00025{bottom:512.130000px;}
.ybe_c00025{bottom:512.970000px;}
.yb9_c00025{bottom:529.245000px;}
.yba_c00025{bottom:530.970000px;}
.yb8_c00025{bottom:531.405000px;}
.ybb_c00025{bottom:531.630000px;}
.yb7_c00025{bottom:532.470000px;}
.yb3_c00025{bottom:548.745000px;}
.yb2_c00025{bottom:550.905000px;}
.yb5_c00025{bottom:551.130000px;}
.yb4_c00025{bottom:551.970000px;}
.yb6_c00025{bottom:552.405000px;}
.yb0_c00025{bottom:567.405000px;}
.yab_c00025{bottom:568.245000px;}
.yaf_c00025{bottom:568.905000px;}
.yad_c00025{bottom:569.745000px;}
.yb1_c00025{bottom:569.970000px;}
.yae_c00025{bottom:570.630000px;}
.yac_c00025{bottom:571.905000px;}
.ya8_c00025{bottom:589.245000px;}
.ya6_c00025{bottom:589.905000px;}
.yaa_c00025{bottom:590.130000px;}
.ya9_c00025{bottom:590.325000px;}
.ya7_c00025{bottom:591.405000px;}
.ya2_c00025{bottom:608.745000px;}
.ya5_c00025{bottom:609.405000px;}
.ya3_c00025{bottom:610.905000px;}
.ya4_c00025{bottom:611.970000px;}
.ya0_c00025{bottom:627.825000px;}
.y9e_c00025{bottom:628.245000px;}
.ya1_c00025{bottom:629.970000px;}
.y9f_c00025{bottom:630.405000px;}
.y9d_c00025{bottom:658.905000px;}
.y9b_c00025{bottom:659.970000px;}
.y9c_c00025{bottom:661.050000px;}
.y99_c00025{bottom:672.825000px;}
.y98_c00025{bottom:673.050000px;}
.y94_c00025{bottom:673.905000px;}
.y97_c00025{bottom:674.130000px;}
.y9a_c00025{bottom:674.970000px;}
.y96_c00025{bottom:675.195000px;}
.y95_c00025{bottom:676.050000px;}
.y90_c00025{bottom:687.825000px;}
.y92_c00025{bottom:688.905000px;}
.y93_c00025{bottom:689.970000px;}
.y91_c00025{bottom:691.050000px;}
.y8b_c00025{bottom:701.970000px;}
.y8f_c00025{bottom:702.405000px;}
.y87_c00025{bottom:702.630000px;}
.y8d_c00025{bottom:702.825000px;}
.y8c_c00025{bottom:703.905000px;}
.y8e_c00025{bottom:704.130000px;}
.y89_c00025{bottom:704.550000px;}
.y88_c00025{bottom:704.970000px;}
.y8a_c00025{bottom:706.050000px;}
.y86_c00025{bottom:716.970000px;}
.y80_c00025{bottom:717.405000px;}
.y85_c00025{bottom:718.050000px;}
.y7f_c00025{bottom:718.470000px;}
.y82_c00025{bottom:718.905000px;}
.y84_c00025{bottom:719.550000px;}
.y83_c00025{bottom:719.970000px;}
.y81_c00025{bottom:721.050000px;}
.y7b_c00025{bottom:731.325000px;}
.y7d_c00025{bottom:732.825000px;}
.y7c_c00025{bottom:734.130000px;}
.y7e_c00025{bottom:734.970000px;}
.y75_c00025{bottom:745.470000px;}
.y7a_c00025{bottom:746.325000px;}
.y79_c00025{bottom:747.405000px;}
.y76_c00025{bottom:748.470000px;}
.y77_c00025{bottom:749.550000px;}
.y78_c00025{bottom:750.195000px;}
.y72_c00025{bottom:761.550000px;}
.y74_c00025{bottom:762.405000px;}
.y73_c00025{bottom:763.470000px;}
.y71_c00025{bottom:763.695000px;}
.y70_c00025{bottom:764.550000px;}
.y6e_c00025{bottom:775.470000px;}
.y6f_c00025{bottom:776.325000px;}
.y6a_c00025{bottom:776.550000px;}
.y6c_c00025{bottom:777.405000px;}
.y67_c00025{bottom:777.630000px;}
.y6b_c00025{bottom:778.050000px;}
.y68_c00025{bottom:778.470000px;}
.y69_c00025{bottom:778.695000px;}
.y6d_c00025{bottom:779.550000px;}
.y64_c00025{bottom:790.470000px;}
.y62_c00025{bottom:791.325000px;}
.y60_c00025{bottom:792.195000px;}
.y65_c00025{bottom:792.405000px;}
.y66_c00025{bottom:793.050000px;}
.y63_c00025{bottom:793.470000px;}
.y61_c00025{bottom:794.550000px;}
.y5b_c00025{bottom:806.325000px;}
.y5f_c00025{bottom:807.405000px;}
.y5e_c00025{bottom:807.630000px;}
.y5c_c00025{bottom:808.470000px;}
.y5d_c00025{bottom:809.550000px;}
.y58_c00025{bottom:821.325000px;}
.y5a_c00025{bottom:821.970000px;}
.y56_c00025{bottom:822.405000px;}
.y59_c00025{bottom:823.050000px;}
.y55_c00025{bottom:823.470000px;}
.y57_c00025{bottom:824.550000px;}
.y4d_c00025{bottom:833.970000px;}
.y54_c00025{bottom:834.825000px;}
.y51_c00025{bottom:835.050000px;}
.y53_c00025{bottom:835.470000px;}
.y4e_c00025{bottom:836.130000px;}
.y4f_c00025{bottom:836.550000px;}
.y52_c00025{bottom:836.970000px;}
.y4c_c00025{bottom:838.050000px;}
.y50_c00025{bottom:838.470000px;}
.y49_c00025{bottom:849.825000px;}
.y4a_c00025{bottom:851.970000px;}
.y4b_c00025{bottom:853.050000px;}
.y46_c00025{bottom:863.970000px;}
.y47_c00025{bottom:865.050000px;}
.y43_c00025{bottom:865.905000px;}
.y48_c00025{bottom:866.130000px;}
.y45_c00025{bottom:866.970000px;}
.y44_c00025{bottom:868.050000px;}
.y42_c00025{bottom:878.970000px;}
.y3f_c00025{bottom:879.825000px;}
.y40_c00025{bottom:880.905000px;}
.y3e_c00025{bottom:881.130000px;}
.y3d_c00025{bottom:881.970000px;}
.y41_c00025{bottom:883.050000px;}
.y3c_c00025{bottom:894.825000px;}
.y3b_c00025{bottom:895.050000px;}
.y3a_c00025{bottom:895.905000px;}
.y38_c00025{bottom:896.970000px;}
.y39_c00025{bottom:897.195000px;}
.y37_c00025{bottom:898.050000px;}
.y34_c00025{bottom:922.905000px;}
.y31_c00025{bottom:924.405000px;}
.y36_c00025{bottom:924.630000px;}
.y33_c00025{bottom:924.825000px;}
.y35_c00025{bottom:925.470000px;}
.y32_c00025{bottom:925.905000px;}
.y30_c00025{bottom:941.745000px;}
.y2f_c00025{bottom:943.245000px;}
.y2a_c00025{bottom:943.905000px;}
.y2e_c00025{bottom:944.130000px;}
.y2b_c00025{bottom:944.970000px;}
.y2d_c00025{bottom:945.405000px;}
.y2c_c00025{bottom:946.470000px;}
.y26_c00025{bottom:960.405000px;}
.y29_c00025{bottom:962.745000px;}
.y27_c00025{bottom:963.630000px;}
.y28_c00025{bottom:964.470000px;}
.y25_c00025{bottom:964.905000px;}
.y24_c00025{bottom:981.405000px;}
.y20_c00025{bottom:982.245000px;}
.y1f_c00025{bottom:983.325000px;}
.y21_c00025{bottom:984.405000px;}
.y22_c00025{bottom:984.630000px;}
.y23_c00025{bottom:985.470000px;}
.y17_c00025{bottom:1000.245000px;}
.y1c_c00025{bottom:1000.905000px;}
.y1b_c00025{bottom:1001.745000px;}
.y1e_c00025{bottom:1001.970000px;}
.y1d_c00025{bottom:1002.825000px;}
.y16_c00025{bottom:1003.470000px;}
.y19_c00025{bottom:1003.905000px;}
.y18_c00025{bottom:1004.130000px;}
.y1a_c00025{bottom:1004.970000px;}
.y10_c00025{bottom:1021.245000px;}
.y11_c00025{bottom:1021.470000px;}
.y14_c00025{bottom:1022.130000px;}
.y15_c00025{bottom:1022.325000px;}
.yf_c00025{bottom:1023.405000px;}
.y13_c00025{bottom:1023.630000px;}
.y12_c00025{bottom:1024.470000px;}
.yd_c00025{bottom:1039.905000px;}
.ye_c00025{bottom:1040.745000px;}
.yb_c00025{bottom:1041.825000px;}
.ya_c00025{bottom:1042.905000px;}
.yc_c00025{bottom:1043.970000px;}
.y3_c00025{bottom:1057.905000px;}
.y8_c00025{bottom:1059.405000px;}
.y9_c00025{bottom:1060.245000px;}
.y5_c00025{bottom:1061.745000px;}
.y2_c00025{bottom:1062.405000px;}
.y4_c00025{bottom:1062.630000px;}
.y7_c00025{bottom:1062.825000px;}
.y6_c00025{bottom:1063.905000px;}
.y1_c00025{bottom:1100.550000px;}
.h7_c00025{height:16.752334px;}
.h3_c00025{height:23.025234px;}
.h1_c00025{height:25.091602px;}
.h6_c00025{height:31.364502px;}
.h2_c00025{height:35.571035px;}
.h5_c00025{height:39.777568px;}
.h4_c00025{height:43.910303px;}
.h8_c00025{height:48.116836px;}
.h0_c00025{height:1335.000000px;}
.w0_c00025{width:880.500000px;}
.x0_c00025{left:0.000000px;}
.xec_c00025{left:151.500000px;}
.x2_c00025{left:153.000000px;}
.x29_c00025{left:154.080000px;}
.xca_c00025{left:166.500000px;}
.x69_c00025{left:167.580000px;}
.xb5_c00025{left:171.000000px;}
.x3_c00025{left:172.500000px;}
.xd0_c00025{left:173.580000px;}
.xab_c00025{left:175.500000px;}
.xbb_c00025{left:178.080000px;}
.xf4_c00025{left:179.355000px;}
.x60_c00025{left:184.920000px;}
.x53_c00025{left:186.000000px;}
.xac_c00025{left:192.000000px;}
.x94_c00025{left:194.580000px;}
.x118_c00025{left:196.080000px;}
.x1a_c00025{left:198.000000px;}
.x4_c00025{left:199.920000px;}
.x36_c00025{left:201.000000px;}
.x7e_c00025{left:205.500000px;}
.x104_c00025{left:207.420000px;}
.x6a_c00025{left:208.500000px;}
.xe3_c00025{left:210.000000px;}
.xcb_c00025{left:211.920000px;}
.x10_c00025{left:213.000000px;}
.xdc_c00025{left:214.500000px;}
.x86_c00025{left:216.000000px;}
.x119_c00025{left:219.000000px;}
.x8a_c00025{left:220.500000px;}
.x54_c00025{left:223.500000px;}
.x2a_c00025{left:226.500000px;}
.x9c_c00025{left:227.580000px;}
.x61_c00025{left:229.080000px;}
.x45_c00025{left:231.420000px;}
.x6b_c00025{left:234.000000px;}
.xed_c00025{left:235.500000px;}
.x116_c00025{left:236.580000px;}
.x5_c00025{left:238.500000px;}
.xbc_c00025{left:240.000000px;}
.x87_c00025{left:241.500000px;}
.x9d_c00025{left:244.500000px;}
.x6c_c00025{left:246.000000px;}
.xad_c00025{left:249.420000px;}
.x95_c00025{left:250.920000px;}
.x2b_c00025{left:252.000000px;}
.xd6_c00025{left:253.500000px;}
.x11_c00025{left:255.420000px;}
.xc8_c00025{left:256.500000px;}
.x37_c00025{left:258.420000px;}
.x55_c00025{left:259.500000px;}
.xcc_c00025{left:264.000000px;}
.x112_c00025{left:265.500000px;}
.x46_c00025{left:266.580000px;}
.x6d_c00025{left:268.500000px;}
.x2c_c00025{left:270.000000px;}
.x1b_c00025{left:271.500000px;}
.x8b_c00025{left:276.000000px;}
.x56_c00025{left:277.500000px;}
.x7f_c00025{left:279.000000px;}
.xcd_c00025{left:280.500000px;}
.xfa_c00025{left:282.420000px;}
.xdd_c00025{left:283.500000px;}
.xd1_c00025{left:285.000000px;}
.x6_c00025{left:286.080000px;}
.xe6_c00025{left:287.355000px;}
.x47_c00025{left:288.420000px;}
.x11e_c00025{left:289.920000px;}
.x57_c00025{left:291.000000px;}
.x38_c00025{left:294.000000px;}
.x88_c00025{left:295.500000px;}
.x2d_c00025{left:297.000000px;}
.xb6_c00025{left:298.500000px;}
.x108_c00025{left:301.500000px;}
.xd2_c00025{left:303.420000px;}
.xfc_c00025{left:304.500000px;}
.x7_c00025{left:306.000000px;}
.x48_c00025{left:307.080000px;}
.xf5_c00025{left:309.000000px;}
.x8c_c00025{left:310.080000px;}
.xc9_c00025{left:312.000000px;}
.xbd_c00025{left:313.500000px;}
.xae_c00025{left:316.500000px;}
.x6e_c00025{left:318.000000px;}
.x10d_c00025{left:319.920000px;}
.x76_c00025{left:322.500000px;}
.x39_c00025{left:324.420000px;}
.x12_c00025{left:326.580000px;}
.x8d_c00025{left:327.855000px;}
.x62_c00025{left:328.920000px;}
.x1c_c00025{left:330.000000px;}
.xb7_c00025{left:331.500000px;}
.xaf_c00025{left:332.580000px;}
.x6f_c00025{left:334.500000px;}
.x58_c00025{left:335.580000px;}
.xbe_c00025{left:337.500000px;}
.x8_c00025{left:339.000000px;}
.x89_c00025{left:340.500000px;}
.x9e_c00025{left:341.580000px;}
.x49_c00025{left:343.500000px;}
.xef_c00025{left:345.000000px;}
.x124_c00025{left:346.080000px;}
.xe7_c00025{left:347.580000px;}
.xa7_c00025{left:349.500000px;}
.x1d_c00025{left:352.500000px;}
.x63_c00025{left:354.420000px;}
.xbf_c00025{left:357.000000px;}
.x3a_c00025{left:359.580000px;}
.xde_c00025{left:361.500000px;}
.x4a_c00025{left:362.580000px;}
.x105_c00025{left:364.920000px;}
.x70_c00025{left:366.000000px;}
.x11f_c00025{left:367.080000px;}
.x9f_c00025{left:369.000000px;}
.x1e_c00025{left:370.920000px;}
.xf6_c00025{left:372.000000px;}
.x11a_c00025{left:373.500000px;}
.x96_c00025{left:374.580000px;}
.x109_c00025{left:378.000000px;}
.xfd_c00025{left:379.500000px;}
.x3b_c00025{left:381.000000px;}
.xa0_c00025{left:382.500000px;}
.xd3_c00025{left:383.580000px;}
.xe4_c00025{left:385.500000px;}
.x110_c00025{left:387.420000px;}
.x2e_c00025{left:388.500000px;}
.xdf_c00025{left:390.000000px;}
.x13_c00025{left:391.080000px;}
.x1_c00025{left:393.000000px;}
.xf1_c00025{left:394.080000px;}
.x64_c00025{left:396.000000px;}
.xd7_c00025{left:397.500000px;}
.xfe_c00025{left:398.580000px;}
.xb0_c00025{left:400.500000px;}
.x80_c00025{left:402.000000px;}
.xe5_c00025{left:403.500000px;}
.x1f_c00025{left:404.580000px;}
.x77_c00025{left:406.920000px;}
.xb8_c00025{left:409.500000px;}
.x4b_c00025{left:411.420000px;}
.x3c_c00025{left:414.000000px;}
.x2f_c00025{left:415.920000px;}
.x65_c00025{left:418.920000px;}
.x10e_c00025{left:420.000000px;}
.xc0_c00025{left:421.920000px;}
.x59_c00025{left:423.000000px;}
.x8e_c00025{left:424.500000px;}
.xa1_c00025{left:426.000000px;}
.xff_c00025{left:427.920000px;}
.x9_c00025{left:429.420000px;}
.x10a_c00025{left:432.420000px;}
.x3d_c00025{left:433.920000px;}
.x20_c00025{left:435.000000px;}
.x4c_c00025{left:439.500000px;}
.x81_c00025{left:441.420000px;}
.x30_c00025{left:442.500000px;}
.x114_c00025{left:445.500000px;}
.xa8_c00025{left:447.420000px;}
.xb1_c00025{left:451.920000px;}
.xb9_c00025{left:454.080000px;}
.xa_c00025{left:456.000000px;}
.x5a_c00025{left:457.500000px;}
.xfb_c00025{left:459.420000px;}
.x14_c00025{left:460.500000px;}
.xc1_c00025{left:462.000000px;}
.x71_c00025{left:463.500000px;}
.xf7_c00025{left:464.580000px;}
.x3e_c00025{left:468.000000px;}
.x106_c00025{left:469.080000px;}
.x78_c00025{left:471.000000px;}
.x10f_c00025{left:472.920000px;}
.xb2_c00025{left:475.920000px;}
.x5b_c00025{left:478.080000px;}
.xd4_c00025{left:480.000000px;}
.x66_c00025{left:481.500000px;}
.x31_c00025{left:484.080000px;}
.xe8_c00025{left:486.000000px;}
.x102_c00025{left:487.500000px;}
.x3f_c00025{left:489.420000px;}
.x97_c00025{left:490.500000px;}
.x21_c00025{left:493.500000px;}
.x10b_c00025{left:495.000000px;}
.x67_c00025{left:498.000000px;}
.xd8_c00025{left:499.500000px;}
.x100_c00025{left:501.420000px;}
.xe0_c00025{left:503.580000px;}
.x32_c00025{left:505.080000px;}
.x5c_c00025{left:507.420000px;}
.x22_c00025{left:510.000000px;}
.xa2_c00025{left:511.080000px;}
.x82_c00025{left:514.500000px;}
.x68_c00025{left:517.920000px;}
.xc2_c00025{left:519.000000px;}
.x8f_c00025{left:520.920000px;}
.x40_c00025{left:522.000000px;}
.xd9_c00025{left:523.080000px;}
.x4d_c00025{left:526.500000px;}
.x120_c00025{left:528.420000px;}
.x125_c00025{left:530.145000px;}
.x15_c00025{left:531.420000px;}
.xb_c00025{left:532.500000px;}
.x98_c00025{left:534.000000px;}
.xf8_c00025{left:535.080000px;}
.x111_c00025{left:537.000000px;}
.x5d_c00025{left:538.080000px;}
.xee_c00025{left:540.000000px;}
.x83_c00025{left:541.500000px;}
.x79_c00025{left:543.000000px;}
.x117_c00025{left:544.500000px;}
.x4e_c00025{left:546.000000px;}
.x41_c00025{left:549.000000px;}
.xc_c00025{left:552.000000px;}
.x23_c00025{left:553.500000px;}
.xa3_c00025{left:555.420000px;}
.xda_c00025{left:556.500000px;}
.x16_c00025{left:558.000000px;}
.xf0_c00025{left:559.500000px;}
.xce_c00025{left:562.500000px;}
.x33_c00025{left:564.000000px;}
.x107_c00025{left:565.920000px;}
.xe1_c00025{left:567.420000px;}
.xa9_c00025{left:570.000000px;}
.x24_c00025{left:571.080000px;}
.x90_c00025{left:574.500000px;}
.x5e_c00025{left:576.000000px;}
.xc3_c00025{left:577.500000px;}
.x121_c00025{left:579.420000px;}
.x4f_c00025{left:580.500000px;}
.x72_c00025{left:582.420000px;}
.x34_c00025{left:583.500000px;}
.x7a_c00025{left:586.500000px;}
.x42_c00025{left:589.920000px;}
.x115_c00025{left:591.000000px;}
.x25_c00025{left:592.500000px;}
.x99_c00025{left:594.000000px;}
.x11b_c00025{left:595.920000px;}
.x91_c00025{left:597.000000px;}
.xd_c00025{left:598.920000px;}
.x5f_c00025{left:600.000000px;}
.x113_c00025{left:603.000000px;}
.x123_c00025{left:604.500000px;}
.xc4_c00025{left:606.000000px;}
.x50_c00025{left:607.500000px;}
.x7b_c00025{left:611.580000px;}
.xe9_c00025{left:613.500000px;}
.xdb_c00025{left:615.420000px;}
.x126_c00025{left:616.500000px;}
.x17_c00025{left:617.580000px;}
.x84_c00025{left:619.500000px;}
.xa4_c00025{left:621.420000px;}
.x92_c00025{left:622.500000px;}
.xc5_c00025{left:623.580000px;}
.x11c_c00025{left:625.500000px;}
.xe_c00025{left:628.500000px;}
.xf9_c00025{left:634.500000px;}
.x18_c00025{left:636.420000px;}
.xa5_c00025{left:637.500000px;}
.x127_c00025{left:638.580000px;}
.x43_c00025{left:640.080000px;}
.x101_c00025{left:643.920000px;}
.xaa_c00025{left:645.420000px;}
.x51_c00025{left:646.500000px;}
.xf2_c00025{left:652.920000px;}
.xea_c00025{left:654.000000px;}
.x73_c00025{left:655.920000px;}
.xc6_c00025{left:658.500000px;}
.x52_c00025{left:660.420000px;}
.x44_c00025{left:661.500000px;}
.x26_c00025{left:663.000000px;}
.x7c_c00025{left:664.500000px;}
.x128_c00025{left:665.580000px;}
.xba_c00025{left:667.500000px;}
.xf_c00025{left:669.000000px;}
.x74_c00025{left:672.000000px;}
.x35_c00025{left:673.080000px;}
.x85_c00025{left:674.580000px;}
.x19_c00025{left:676.500000px;}
.xd5_c00025{left:678.000000px;}
.x27_c00025{left:681.000000px;}
.x11d_c00025{left:682.920000px;}
.xc7_c00025{left:685.080000px;}
.xeb_c00025{left:686.580000px;}
.x122_c00025{left:689.355000px;}
.xf3_c00025{left:691.500000px;}
.x28_c00025{left:693.000000px;}
.x9a_c00025{left:694.500000px;}
.xb3_c00025{left:696.000000px;}
.x75_c00025{left:697.500000px;}
.x103_c00025{left:700.920000px;}
.xa6_c00025{left:702.000000px;}
.x10c_c00025{left:703.920000px;}
.x7d_c00025{left:708.000000px;}
.x9b_c00025{left:711.000000px;}
.xb4_c00025{left:712.500000px;}
.xe2_c00025{left:714.000000px;}
.xcf_c00025{left:715.920000px;}
.x93_c00025{left:718.500000px;}
@media print{
.v0_c00025{vertical-align:0.000000pt;}
.ls0_c00025{letter-spacing:0.000000pt;}
.ws0_c00025{word-spacing:-6.620751pt;}
.ws1_c00025{word-spacing:-4.760686pt;}
.ws2_c00025{word-spacing:0.000000pt;}
.fs6_c00025{font-size:12.106667pt;}
.fs2_c00025{font-size:16.640000pt;}
.fs0_c00025{font-size:18.133333pt;}
.fs5_c00025{font-size:22.666667pt;}
.fs1_c00025{font-size:25.706667pt;}
.fs4_c00025{font-size:28.746667pt;}
.fs3_c00025{font-size:31.733333pt;}
.fs7_c00025{font-size:34.773333pt;}
.y0_c00025{bottom:0.000000pt;}
.y107_c00025{bottom:223.026667pt;}
.y106_c00025{bottom:225.106667pt;}
.y108_c00025{bottom:227.026667pt;}
.y109_c00025{bottom:227.226667pt;}
.y10a_c00025{bottom:227.973333pt;}
.y105_c00025{bottom:243.026667pt;}
.y100_c00025{bottom:243.226667pt;}
.y101_c00025{bottom:243.973333pt;}
.yff_c00025{bottom:244.360000pt;}
.y104_c00025{bottom:244.560000pt;}
.y102_c00025{bottom:244.733333pt;}
.y103_c00025{bottom:245.693333pt;}
.yf9_c00025{bottom:260.560000pt;}
.yfc_c00025{bottom:261.106667pt;}
.yfa_c00025{bottom:261.693333pt;}
.yfb_c00025{bottom:261.893333pt;}
.yfe_c00025{bottom:262.640000pt;}
.yfd_c00025{bottom:263.026667pt;}
.yf3_c00025{bottom:278.066667pt;}
.yf7_c00025{bottom:278.440000pt;}
.yf4_c00025{bottom:279.026667pt;}
.yf6_c00025{bottom:279.226667pt;}
.yf8_c00025{bottom:279.400000pt;}
.yf5_c00025{bottom:280.360000pt;}
.yf1_c00025{bottom:295.773333pt;}
.yf2_c00025{bottom:296.560000pt;}
.yf0_c00025{bottom:297.693333pt;}
.yeb_c00025{bottom:312.160000pt;}
.yef_c00025{bottom:313.106667pt;}
.yed_c00025{bottom:314.066667pt;}
.yee_c00025{bottom:314.640000pt;}
.yec_c00025{bottom:315.026667pt;}
.ye8_c00025{bottom:330.440000pt;}
.ye9_c00025{bottom:331.400000pt;}
.ye7_c00025{bottom:331.973333pt;}
.ye6_c00025{bottom:332.360000pt;}
.yea_c00025{bottom:332.560000pt;}
.ydf_c00025{bottom:347.773333pt;}
.ye1_c00025{bottom:348.733333pt;}
.ye3_c00025{bottom:349.106667pt;}
.ye0_c00025{bottom:349.693333pt;}
.ye2_c00025{bottom:349.893333pt;}
.ye4_c00025{bottom:350.640000pt;}
.ye5_c00025{bottom:351.026667pt;}
.ydc_c00025{bottom:364.360000pt;}
.yd9_c00025{bottom:365.106667pt;}
.yde_c00025{bottom:367.026667pt;}
.ydd_c00025{bottom:367.226667pt;}
.yda_c00025{bottom:367.973333pt;}
.ydb_c00025{bottom:368.360000pt;}
.yd6_c00025{bottom:381.693333pt;}
.yd5_c00025{bottom:382.440000pt;}
.yd1_c00025{bottom:383.400000pt;}
.yd4_c00025{bottom:383.600000pt;}
.yd2_c00025{bottom:384.360000pt;}
.yd8_c00025{bottom:384.560000pt;}
.yd7_c00025{bottom:385.306667pt;}
.yd3_c00025{bottom:385.693333pt;}
.ycf_c00025{bottom:399.773333pt;}
.yce_c00025{bottom:401.106667pt;}
.ycb_c00025{bottom:401.693333pt;}
.ycd_c00025{bottom:401.893333pt;}
.yd0_c00025{bottom:402.640000pt;}
.ycc_c00025{bottom:403.026667pt;}
.yc6_c00025{bottom:418.440000pt;}
.yca_c00025{bottom:419.226667pt;}
.yc8_c00025{bottom:419.400000pt;}
.yc7_c00025{bottom:420.360000pt;}
.yc9_c00025{bottom:421.306667pt;}
.yc4_c00025{bottom:435.773333pt;}
.yc5_c00025{bottom:436.560000pt;}
.yc3_c00025{bottom:437.693333pt;}
.yc2_c00025{bottom:452.360000pt;}
.ybf_c00025{bottom:453.893333pt;}
.ybc_c00025{bottom:454.066667pt;}
.yc0_c00025{bottom:454.640000pt;}
.ybd_c00025{bottom:455.026667pt;}
.yc1_c00025{bottom:455.226667pt;}
.ybe_c00025{bottom:455.973333pt;}
.yb9_c00025{bottom:470.440000pt;}
.yba_c00025{bottom:471.973333pt;}
.yb8_c00025{bottom:472.360000pt;}
.ybb_c00025{bottom:472.560000pt;}
.yb7_c00025{bottom:473.306667pt;}
.yb3_c00025{bottom:487.773333pt;}
.yb2_c00025{bottom:489.693333pt;}
.yb5_c00025{bottom:489.893333pt;}
.yb4_c00025{bottom:490.640000pt;}
.yb6_c00025{bottom:491.026667pt;}
.yb0_c00025{bottom:504.360000pt;}
.yab_c00025{bottom:505.106667pt;}
.yaf_c00025{bottom:505.693333pt;}
.yad_c00025{bottom:506.440000pt;}
.yb1_c00025{bottom:506.640000pt;}
.yae_c00025{bottom:507.226667pt;}
.yac_c00025{bottom:508.360000pt;}
.ya8_c00025{bottom:523.773333pt;}
.ya6_c00025{bottom:524.360000pt;}
.yaa_c00025{bottom:524.560000pt;}
.ya9_c00025{bottom:524.733333pt;}
.ya7_c00025{bottom:525.693333pt;}
.ya2_c00025{bottom:541.106667pt;}
.ya5_c00025{bottom:541.693333pt;}
.ya3_c00025{bottom:543.026667pt;}
.ya4_c00025{bottom:543.973333pt;}
.ya0_c00025{bottom:558.066667pt;}
.y9e_c00025{bottom:558.440000pt;}
.ya1_c00025{bottom:559.973333pt;}
.y9f_c00025{bottom:560.360000pt;}
.y9d_c00025{bottom:585.693333pt;}
.y9b_c00025{bottom:586.640000pt;}
.y9c_c00025{bottom:587.600000pt;}
.y99_c00025{bottom:598.066667pt;}
.y98_c00025{bottom:598.266667pt;}
.y94_c00025{bottom:599.026667pt;}
.y97_c00025{bottom:599.226667pt;}
.y9a_c00025{bottom:599.973333pt;}
.y96_c00025{bottom:600.173333pt;}
.y95_c00025{bottom:600.933333pt;}
.y90_c00025{bottom:611.400000pt;}
.y92_c00025{bottom:612.360000pt;}
.y93_c00025{bottom:613.306667pt;}
.y91_c00025{bottom:614.266667pt;}
.y8b_c00025{bottom:623.973333pt;}
.y8f_c00025{bottom:624.360000pt;}
.y87_c00025{bottom:624.560000pt;}
.y8d_c00025{bottom:624.733333pt;}
.y8c_c00025{bottom:625.693333pt;}
.y8e_c00025{bottom:625.893333pt;}
.y89_c00025{bottom:626.266667pt;}
.y88_c00025{bottom:626.640000pt;}
.y8a_c00025{bottom:627.600000pt;}
.y86_c00025{bottom:637.306667pt;}
.y80_c00025{bottom:637.693333pt;}
.y85_c00025{bottom:638.266667pt;}
.y7f_c00025{bottom:638.640000pt;}
.y82_c00025{bottom:639.026667pt;}
.y84_c00025{bottom:639.600000pt;}
.y83_c00025{bottom:639.973333pt;}
.y81_c00025{bottom:640.933333pt;}
.y7b_c00025{bottom:650.066667pt;}
.y7d_c00025{bottom:651.400000pt;}
.y7c_c00025{bottom:652.560000pt;}
.y7e_c00025{bottom:653.306667pt;}
.y75_c00025{bottom:662.640000pt;}
.y7a_c00025{bottom:663.400000pt;}
.y79_c00025{bottom:664.360000pt;}
.y76_c00025{bottom:665.306667pt;}
.y77_c00025{bottom:666.266667pt;}
.y78_c00025{bottom:666.840000pt;}
.y72_c00025{bottom:676.933333pt;}
.y74_c00025{bottom:677.693333pt;}
.y73_c00025{bottom:678.640000pt;}
.y71_c00025{bottom:678.840000pt;}
.y70_c00025{bottom:679.600000pt;}
.y6e_c00025{bottom:689.306667pt;}
.y6f_c00025{bottom:690.066667pt;}
.y6a_c00025{bottom:690.266667pt;}
.y6c_c00025{bottom:691.026667pt;}
.y67_c00025{bottom:691.226667pt;}
.y6b_c00025{bottom:691.600000pt;}
.y68_c00025{bottom:691.973333pt;}
.y69_c00025{bottom:692.173333pt;}
.y6d_c00025{bottom:692.933333pt;}
.y64_c00025{bottom:702.640000pt;}
.y62_c00025{bottom:703.400000pt;}
.y60_c00025{bottom:704.173333pt;}
.y65_c00025{bottom:704.360000pt;}
.y66_c00025{bottom:704.933333pt;}
.y63_c00025{bottom:705.306667pt;}
.y61_c00025{bottom:706.266667pt;}
.y5b_c00025{bottom:716.733333pt;}
.y5f_c00025{bottom:717.693333pt;}
.y5e_c00025{bottom:717.893333pt;}
.y5c_c00025{bottom:718.640000pt;}
.y5d_c00025{bottom:719.600000pt;}
.y58_c00025{bottom:730.066667pt;}
.y5a_c00025{bottom:730.640000pt;}
.y56_c00025{bottom:731.026667pt;}
.y59_c00025{bottom:731.600000pt;}
.y55_c00025{bottom:731.973333pt;}
.y57_c00025{bottom:732.933333pt;}
.y4d_c00025{bottom:741.306667pt;}
.y54_c00025{bottom:742.066667pt;}
.y51_c00025{bottom:742.266667pt;}
.y53_c00025{bottom:742.640000pt;}
.y4e_c00025{bottom:743.226667pt;}
.y4f_c00025{bottom:743.600000pt;}
.y52_c00025{bottom:743.973333pt;}
.y4c_c00025{bottom:744.933333pt;}
.y50_c00025{bottom:745.306667pt;}
.y49_c00025{bottom:755.400000pt;}
.y4a_c00025{bottom:757.306667pt;}
.y4b_c00025{bottom:758.266667pt;}
.y46_c00025{bottom:767.973333pt;}
.y47_c00025{bottom:768.933333pt;}
.y43_c00025{bottom:769.693333pt;}
.y48_c00025{bottom:769.893333pt;}
.y45_c00025{bottom:770.640000pt;}
.y44_c00025{bottom:771.600000pt;}
.y42_c00025{bottom:781.306667pt;}
.y3f_c00025{bottom:782.066667pt;}
.y40_c00025{bottom:783.026667pt;}
.y3e_c00025{bottom:783.226667pt;}
.y3d_c00025{bottom:783.973333pt;}
.y41_c00025{bottom:784.933333pt;}
.y3c_c00025{bottom:795.400000pt;}
.y3b_c00025{bottom:795.600000pt;}
.y3a_c00025{bottom:796.360000pt;}
.y38_c00025{bottom:797.306667pt;}
.y39_c00025{bottom:797.506667pt;}
.y37_c00025{bottom:798.266667pt;}
.y34_c00025{bottom:820.360000pt;}
.y31_c00025{bottom:821.693333pt;}
.y36_c00025{bottom:821.893333pt;}
.y33_c00025{bottom:822.066667pt;}
.y35_c00025{bottom:822.640000pt;}
.y32_c00025{bottom:823.026667pt;}
.y30_c00025{bottom:837.106667pt;}
.y2f_c00025{bottom:838.440000pt;}
.y2a_c00025{bottom:839.026667pt;}
.y2e_c00025{bottom:839.226667pt;}
.y2b_c00025{bottom:839.973333pt;}
.y2d_c00025{bottom:840.360000pt;}
.y2c_c00025{bottom:841.306667pt;}
.y26_c00025{bottom:853.693333pt;}
.y29_c00025{bottom:855.773333pt;}
.y27_c00025{bottom:856.560000pt;}
.y28_c00025{bottom:857.306667pt;}
.y25_c00025{bottom:857.693333pt;}
.y24_c00025{bottom:872.360000pt;}
.y20_c00025{bottom:873.106667pt;}
.y1f_c00025{bottom:874.066667pt;}
.y21_c00025{bottom:875.026667pt;}
.y22_c00025{bottom:875.226667pt;}
.y23_c00025{bottom:875.973333pt;}
.y17_c00025{bottom:889.106667pt;}
.y1c_c00025{bottom:889.693333pt;}
.y1b_c00025{bottom:890.440000pt;}
.y1e_c00025{bottom:890.640000pt;}
.y1d_c00025{bottom:891.400000pt;}
.y16_c00025{bottom:891.973333pt;}
.y19_c00025{bottom:892.360000pt;}
.y18_c00025{bottom:892.560000pt;}
.y1a_c00025{bottom:893.306667pt;}
.y10_c00025{bottom:907.773333pt;}
.y11_c00025{bottom:907.973333pt;}
.y14_c00025{bottom:908.560000pt;}
.y15_c00025{bottom:908.733333pt;}
.yf_c00025{bottom:909.693333pt;}
.y13_c00025{bottom:909.893333pt;}
.y12_c00025{bottom:910.640000pt;}
.yd_c00025{bottom:924.360000pt;}
.ye_c00025{bottom:925.106667pt;}
.yb_c00025{bottom:926.066667pt;}
.ya_c00025{bottom:927.026667pt;}
.yc_c00025{bottom:927.973333pt;}
.y3_c00025{bottom:940.360000pt;}
.y8_c00025{bottom:941.693333pt;}
.y9_c00025{bottom:942.440000pt;}
.y5_c00025{bottom:943.773333pt;}
.y2_c00025{bottom:944.360000pt;}
.y4_c00025{bottom:944.560000pt;}
.y7_c00025{bottom:944.733333pt;}
.y6_c00025{bottom:945.693333pt;}
.y1_c00025{bottom:978.266667pt;}
.h7_c00025{height:14.890964pt;}
.h3_c00025{height:20.466875pt;}
.h1_c00025{height:22.303646pt;}
.h6_c00025{height:27.879557pt;}
.h2_c00025{height:31.618698pt;}
.h5_c00025{height:35.357839pt;}
.h4_c00025{height:39.031380pt;}
.h8_c00025{height:42.770521pt;}
.h0_c00025{height:1186.666667pt;}
.w0_c00025{width:782.666667pt;}
.x0_c00025{left:0.000000pt;}
.xec_c00025{left:134.666667pt;}
.x2_c00025{left:136.000000pt;}
.x29_c00025{left:136.960000pt;}
.xca_c00025{left:148.000000pt;}
.x69_c00025{left:148.960000pt;}
.xb5_c00025{left:152.000000pt;}
.x3_c00025{left:153.333333pt;}
.xd0_c00025{left:154.293333pt;}
.xab_c00025{left:156.000000pt;}
.xbb_c00025{left:158.293333pt;}
.xf4_c00025{left:159.426667pt;}
.x60_c00025{left:164.373333pt;}
.x53_c00025{left:165.333333pt;}
.xac_c00025{left:170.666667pt;}
.x94_c00025{left:172.960000pt;}
.x118_c00025{left:174.293333pt;}
.x1a_c00025{left:176.000000pt;}
.x4_c00025{left:177.706667pt;}
.x36_c00025{left:178.666667pt;}
.x7e_c00025{left:182.666667pt;}
.x104_c00025{left:184.373333pt;}
.x6a_c00025{left:185.333333pt;}
.xe3_c00025{left:186.666667pt;}
.xcb_c00025{left:188.373333pt;}
.x10_c00025{left:189.333333pt;}
.xdc_c00025{left:190.666667pt;}
.x86_c00025{left:192.000000pt;}
.x119_c00025{left:194.666667pt;}
.x8a_c00025{left:196.000000pt;}
.x54_c00025{left:198.666667pt;}
.x2a_c00025{left:201.333333pt;}
.x9c_c00025{left:202.293333pt;}
.x61_c00025{left:203.626667pt;}
.x45_c00025{left:205.706667pt;}
.x6b_c00025{left:208.000000pt;}
.xed_c00025{left:209.333333pt;}
.x116_c00025{left:210.293333pt;}
.x5_c00025{left:212.000000pt;}
.xbc_c00025{left:213.333333pt;}
.x87_c00025{left:214.666667pt;}
.x9d_c00025{left:217.333333pt;}
.x6c_c00025{left:218.666667pt;}
.xad_c00025{left:221.706667pt;}
.x95_c00025{left:223.040000pt;}
.x2b_c00025{left:224.000000pt;}
.xd6_c00025{left:225.333333pt;}
.x11_c00025{left:227.040000pt;}
.xc8_c00025{left:228.000000pt;}
.x37_c00025{left:229.706667pt;}
.x55_c00025{left:230.666667pt;}
.xcc_c00025{left:234.666667pt;}
.x112_c00025{left:236.000000pt;}
.x46_c00025{left:236.960000pt;}
.x6d_c00025{left:238.666667pt;}
.x2c_c00025{left:240.000000pt;}
.x1b_c00025{left:241.333333pt;}
.x8b_c00025{left:245.333333pt;}
.x56_c00025{left:246.666667pt;}
.x7f_c00025{left:248.000000pt;}
.xcd_c00025{left:249.333333pt;}
.xfa_c00025{left:251.040000pt;}
.xdd_c00025{left:252.000000pt;}
.xd1_c00025{left:253.333333pt;}
.x6_c00025{left:254.293333pt;}
.xe6_c00025{left:255.426667pt;}
.x47_c00025{left:256.373333pt;}
.x11e_c00025{left:257.706667pt;}
.x57_c00025{left:258.666667pt;}
.x38_c00025{left:261.333333pt;}
.x88_c00025{left:262.666667pt;}
.x2d_c00025{left:264.000000pt;}
.xb6_c00025{left:265.333333pt;}
.x108_c00025{left:268.000000pt;}
.xd2_c00025{left:269.706667pt;}
.xfc_c00025{left:270.666667pt;}
.x7_c00025{left:272.000000pt;}
.x48_c00025{left:272.960000pt;}
.xf5_c00025{left:274.666667pt;}
.x8c_c00025{left:275.626667pt;}
.xc9_c00025{left:277.333333pt;}
.xbd_c00025{left:278.666667pt;}
.xae_c00025{left:281.333333pt;}
.x6e_c00025{left:282.666667pt;}
.x10d_c00025{left:284.373333pt;}
.x76_c00025{left:286.666667pt;}
.x39_c00025{left:288.373333pt;}
.x12_c00025{left:290.293333pt;}
.x8d_c00025{left:291.426667pt;}
.x62_c00025{left:292.373333pt;}
.x1c_c00025{left:293.333333pt;}
.xb7_c00025{left:294.666667pt;}
.xaf_c00025{left:295.626667pt;}
.x6f_c00025{left:297.333333pt;}
.x58_c00025{left:298.293333pt;}
.xbe_c00025{left:300.000000pt;}
.x8_c00025{left:301.333333pt;}
.x89_c00025{left:302.666667pt;}
.x9e_c00025{left:303.626667pt;}
.x49_c00025{left:305.333333pt;}
.xef_c00025{left:306.666667pt;}
.x124_c00025{left:307.626667pt;}
.xe7_c00025{left:308.960000pt;}
.xa7_c00025{left:310.666667pt;}
.x1d_c00025{left:313.333333pt;}
.x63_c00025{left:315.040000pt;}
.xbf_c00025{left:317.333333pt;}
.x3a_c00025{left:319.626667pt;}
.xde_c00025{left:321.333333pt;}
.x4a_c00025{left:322.293333pt;}
.x105_c00025{left:324.373333pt;}
.x70_c00025{left:325.333333pt;}
.x11f_c00025{left:326.293333pt;}
.x9f_c00025{left:328.000000pt;}
.x1e_c00025{left:329.706667pt;}
.xf6_c00025{left:330.666667pt;}
.x11a_c00025{left:332.000000pt;}
.x96_c00025{left:332.960000pt;}
.x109_c00025{left:336.000000pt;}
.xfd_c00025{left:337.333333pt;}
.x3b_c00025{left:338.666667pt;}
.xa0_c00025{left:340.000000pt;}
.xd3_c00025{left:340.960000pt;}
.xe4_c00025{left:342.666667pt;}
.x110_c00025{left:344.373333pt;}
.x2e_c00025{left:345.333333pt;}
.xdf_c00025{left:346.666667pt;}
.x13_c00025{left:347.626667pt;}
.x1_c00025{left:349.333333pt;}
.xf1_c00025{left:350.293333pt;}
.x64_c00025{left:352.000000pt;}
.xd7_c00025{left:353.333333pt;}
.xfe_c00025{left:354.293333pt;}
.xb0_c00025{left:356.000000pt;}
.x80_c00025{left:357.333333pt;}
.xe5_c00025{left:358.666667pt;}
.x1f_c00025{left:359.626667pt;}
.x77_c00025{left:361.706667pt;}
.xb8_c00025{left:364.000000pt;}
.x4b_c00025{left:365.706667pt;}
.x3c_c00025{left:368.000000pt;}
.x2f_c00025{left:369.706667pt;}
.x65_c00025{left:372.373333pt;}
.x10e_c00025{left:373.333333pt;}
.xc0_c00025{left:375.040000pt;}
.x59_c00025{left:376.000000pt;}
.x8e_c00025{left:377.333333pt;}
.xa1_c00025{left:378.666667pt;}
.xff_c00025{left:380.373333pt;}
.x9_c00025{left:381.706667pt;}
.x10a_c00025{left:384.373333pt;}
.x3d_c00025{left:385.706667pt;}
.x20_c00025{left:386.666667pt;}
.x4c_c00025{left:390.666667pt;}
.x81_c00025{left:392.373333pt;}
.x30_c00025{left:393.333333pt;}
.x114_c00025{left:396.000000pt;}
.xa8_c00025{left:397.706667pt;}
.xb1_c00025{left:401.706667pt;}
.xb9_c00025{left:403.626667pt;}
.xa_c00025{left:405.333333pt;}
.x5a_c00025{left:406.666667pt;}
.xfb_c00025{left:408.373333pt;}
.x14_c00025{left:409.333333pt;}
.xc1_c00025{left:410.666667pt;}
.x71_c00025{left:412.000000pt;}
.xf7_c00025{left:412.960000pt;}
.x3e_c00025{left:416.000000pt;}
.x106_c00025{left:416.960000pt;}
.x78_c00025{left:418.666667pt;}
.x10f_c00025{left:420.373333pt;}
.xb2_c00025{left:423.040000pt;}
.x5b_c00025{left:424.960000pt;}
.xd4_c00025{left:426.666667pt;}
.x66_c00025{left:428.000000pt;}
.x31_c00025{left:430.293333pt;}
.xe8_c00025{left:432.000000pt;}
.x102_c00025{left:433.333333pt;}
.x3f_c00025{left:435.040000pt;}
.x97_c00025{left:436.000000pt;}
.x21_c00025{left:438.666667pt;}
.x10b_c00025{left:440.000000pt;}
.x67_c00025{left:442.666667pt;}
.xd8_c00025{left:444.000000pt;}
.x100_c00025{left:445.706667pt;}
.xe0_c00025{left:447.626667pt;}
.x32_c00025{left:448.960000pt;}
.x5c_c00025{left:451.040000pt;}
.x22_c00025{left:453.333333pt;}
.xa2_c00025{left:454.293333pt;}
.x82_c00025{left:457.333333pt;}
.x68_c00025{left:460.373333pt;}
.xc2_c00025{left:461.333333pt;}
.x8f_c00025{left:463.040000pt;}
.x40_c00025{left:464.000000pt;}
.xd9_c00025{left:464.960000pt;}
.x4d_c00025{left:468.000000pt;}
.x120_c00025{left:469.706667pt;}
.x125_c00025{left:471.240000pt;}
.x15_c00025{left:472.373333pt;}
.xb_c00025{left:473.333333pt;}
.x98_c00025{left:474.666667pt;}
.xf8_c00025{left:475.626667pt;}
.x111_c00025{left:477.333333pt;}
.x5d_c00025{left:478.293333pt;}
.xee_c00025{left:480.000000pt;}
.x83_c00025{left:481.333333pt;}
.x79_c00025{left:482.666667pt;}
.x117_c00025{left:484.000000pt;}
.x4e_c00025{left:485.333333pt;}
.x41_c00025{left:488.000000pt;}
.xc_c00025{left:490.666667pt;}
.x23_c00025{left:492.000000pt;}
.xa3_c00025{left:493.706667pt;}
.xda_c00025{left:494.666667pt;}
.x16_c00025{left:496.000000pt;}
.xf0_c00025{left:497.333333pt;}
.xce_c00025{left:500.000000pt;}
.x33_c00025{left:501.333333pt;}
.x107_c00025{left:503.040000pt;}
.xe1_c00025{left:504.373333pt;}
.xa9_c00025{left:506.666667pt;}
.x24_c00025{left:507.626667pt;}
.x90_c00025{left:510.666667pt;}
.x5e_c00025{left:512.000000pt;}
.xc3_c00025{left:513.333333pt;}
.x121_c00025{left:515.040000pt;}
.x4f_c00025{left:516.000000pt;}
.x72_c00025{left:517.706667pt;}
.x34_c00025{left:518.666667pt;}
.x7a_c00025{left:521.333333pt;}
.x42_c00025{left:524.373333pt;}
.x115_c00025{left:525.333333pt;}
.x25_c00025{left:526.666667pt;}
.x99_c00025{left:528.000000pt;}
.x11b_c00025{left:529.706667pt;}
.x91_c00025{left:530.666667pt;}
.xd_c00025{left:532.373333pt;}
.x5f_c00025{left:533.333333pt;}
.x113_c00025{left:536.000000pt;}
.x123_c00025{left:537.333333pt;}
.xc4_c00025{left:538.666667pt;}
.x50_c00025{left:540.000000pt;}
.x7b_c00025{left:543.626667pt;}
.xe9_c00025{left:545.333333pt;}
.xdb_c00025{left:547.040000pt;}
.x126_c00025{left:548.000000pt;}
.x17_c00025{left:548.960000pt;}
.x84_c00025{left:550.666667pt;}
.xa4_c00025{left:552.373333pt;}
.x92_c00025{left:553.333333pt;}
.xc5_c00025{left:554.293333pt;}
.x11c_c00025{left:556.000000pt;}
.xe_c00025{left:558.666667pt;}
.xf9_c00025{left:564.000000pt;}
.x18_c00025{left:565.706667pt;}
.xa5_c00025{left:566.666667pt;}
.x127_c00025{left:567.626667pt;}
.x43_c00025{left:568.960000pt;}
.x101_c00025{left:572.373333pt;}
.xaa_c00025{left:573.706667pt;}
.x51_c00025{left:574.666667pt;}
.xf2_c00025{left:580.373333pt;}
.xea_c00025{left:581.333333pt;}
.x73_c00025{left:583.040000pt;}
.xc6_c00025{left:585.333333pt;}
.x52_c00025{left:587.040000pt;}
.x44_c00025{left:588.000000pt;}
.x26_c00025{left:589.333333pt;}
.x7c_c00025{left:590.666667pt;}
.x128_c00025{left:591.626667pt;}
.xba_c00025{left:593.333333pt;}
.xf_c00025{left:594.666667pt;}
.x74_c00025{left:597.333333pt;}
.x35_c00025{left:598.293333pt;}
.x85_c00025{left:599.626667pt;}
.x19_c00025{left:601.333333pt;}
.xd5_c00025{left:602.666667pt;}
.x27_c00025{left:605.333333pt;}
.x11d_c00025{left:607.040000pt;}
.xc7_c00025{left:608.960000pt;}
.xeb_c00025{left:610.293333pt;}
.x122_c00025{left:612.760000pt;}
.xf3_c00025{left:614.666667pt;}
.x28_c00025{left:616.000000pt;}
.x9a_c00025{left:617.333333pt;}
.xb3_c00025{left:618.666667pt;}
.x75_c00025{left:620.000000pt;}
.x103_c00025{left:623.040000pt;}
.xa6_c00025{left:624.000000pt;}
.x10c_c00025{left:625.706667pt;}
.x7d_c00025{left:629.333333pt;}
.x9b_c00025{left:632.000000pt;}
.xb4_c00025{left:633.333333pt;}
.xe2_c00025{left:634.666667pt;}
.xcf_c00025{left:636.373333pt;}
.x93_c00025{left:638.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_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_377d814eedf4cfc56c05a683.woff2')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.med_c00026{transform:matrix(0.124824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124824,0.000000,0.000000,0.250000,0,0);}
.mee_c00026{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.mf9_c00026{transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);}
.m4c_c00026{transform:matrix(0.360924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360924,0.000000,0.000000,0.250000,0,0);}
.m3a_c00026{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m69_c00026{transform:matrix(0.366714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366714,0.000000,0.000000,0.250000,0,0);}
.mdb_c00026{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m6c_c00026{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m6a_c00026{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mb1_c00026{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m87_c00026{transform:matrix(0.382285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382285,0.000000,0.000000,0.250000,0,0);}
.m5e_c00026{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.mae_c00026{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.mbf_c00026{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m1d_c00026{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.mda_c00026{transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);}
.m59_c00026{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m5b_c00026{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m7c_c00026{transform:matrix(0.396089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396089,0.000000,0.000000,0.250000,0,0);}
.mb3_c00026{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m40_c00026{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.mbb_c00026{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m26_c00026{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.ma4_c00026{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mb6_c00026{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m28_c00026{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.mc6_c00026{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.ma2_c00026{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m51_c00026{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mbc_c00026{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.mef_c00026{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.md6_c00026{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m66_c00026{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mdc_c00026{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.mc2_c00026{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.mfa_c00026{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.m9_c00026{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.meb_c00026{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m93_c00026{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m23_c00026{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m8f_c00026{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m45_c00026{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m37_c00026{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m10_c00026{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.mf8_c00026{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.md4_c00026{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m1b_c00026{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m31_c00026{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mcd_c00026{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m18_c00026{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.m61_c00026{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.md0_c00026{transform:matrix(0.427386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427386,0.000000,0.000000,0.250000,0,0);}
.m81_c00026{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m3d_c00026{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m8c_c00026{transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);}
.mc1_c00026{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.m97_c00026{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.mcc_c00026{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m9b_c00026{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mcb_c00026{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.md5_c00026{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.mf2_c00026{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.m70_c00026{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m50_c00026{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.mbd_c00026{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.md3_c00026{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mfb_c00026{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.mca_c00026{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m83_c00026{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.m47_c00026{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.mec_c00026{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.mf0_c00026{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.mf7_c00026{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.md1_c00026{transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);}
.m1f_c00026{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.mc7_c00026{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m21_c00026{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mf4_c00026{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.maa_c00026{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.me3_c00026{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m5d_c00026{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.md2_c00026{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m2a_c00026{transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);}
.md_c00026{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m7b_c00026{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.mc4_c00026{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m65_c00026{transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);}
.m4e_c00026{transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);}
.m5c_c00026{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m6b_c00026{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m9c_c00026{transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);}
.m54_c00026{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.m90_c00026{transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);}
.mb4_c00026{transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);}
.m2_c00026{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m48_c00026{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.me8_c00026{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.mf6_c00026{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mdd_c00026{transform:matrix(0.480588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480588,0.000000,0.000000,0.250000,0,0);}
.maf_c00026{transform:matrix(0.480672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480672,0.000000,0.000000,0.250000,0,0);}
.m4a_c00026{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m8b_c00026{transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);}
.m17_c00026{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m4b_c00026{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m16_c00026{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m86_c00026{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m9d_c00026{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.mb9_c00026{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m1e_c00026{transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);}
.m33_c00026{transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);}
.mb5_c00026{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m12_c00026{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.ma7_c00026{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m53_c00026{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m89_c00026{transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);}
.m5_c00026{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m80_c00026{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m52_c00026{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.ma6_c00026{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m15_c00026{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_c00026{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m8a_c00026{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m94_c00026{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m9e_c00026{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m5a_c00026{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mf1_c00026{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m6e_c00026{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m4d_c00026{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mc0_c00026{transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);}
.m60_c00026{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.mea_c00026{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m2b_c00026{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m4f_c00026{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m2d_c00026{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m92_c00026{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.mfc_c00026{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mb7_c00026{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m35_c00026{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m56_c00026{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.mf5_c00026{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m64_c00026{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m3c_c00026{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m95_c00026{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m25_c00026{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mba_c00026{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.me4_c00026{transform:matrix(0.532468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532468,0.000000,0.000000,0.250000,0,0);}
.m8_c00026{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m27_c00026{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m1a_c00026{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.me7_c00026{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m6d_c00026{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m3_c00026{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m49_c00026{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m72_c00026{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m4_c00026{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.ma1_c00026{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.md8_c00026{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m6f_c00026{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mb2_c00026{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m96_c00026{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m76_c00026{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m34_c00026{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m84_c00026{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mce_c00026{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.ma5_c00026{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m75_c00026{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m73_c00026{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mcf_c00026{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m14_c00026{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.md7_c00026{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m3b_c00026{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m58_c00026{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.mf3_c00026{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m11_c00026{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mf_c00026{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m3e_c00026{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mbe_c00026{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m99_c00026{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.me_c00026{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m9a_c00026{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m85_c00026{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);}
.mb0_c00026{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m8d_c00026{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m62_c00026{transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);}
.mab_c00026{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m22_c00026{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m55_c00026{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m8e_c00026{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m41_c00026{transform:matrix(0.570965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570965,0.000000,0.000000,0.250000,0,0);}
.ma_c00026{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.ma0_c00026{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.ma9_c00026{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m71_c00026{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m7a_c00026{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m79_c00026{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.mb_c00026{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m67_c00026{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m42_c00026{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m9f_c00026{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mac_c00026{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.me1_c00026{transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);}
.m82_c00026{transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);}
.mc8_c00026{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m36_c00026{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m77_c00026{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m57_c00026{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.me0_c00026{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m7e_c00026{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mc_c00026{transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);}
.mc3_c00026{transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);}
.m3f_c00026{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m74_c00026{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m20_c00026{transform:matrix(0.610588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610588,0.000000,0.000000,0.250000,0,0);}
.ma8_c00026{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.mc5_c00026{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m63_c00026{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m2e_c00026{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mdf_c00026{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.mb8_c00026{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.m1_c00026{transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);}
.mc9_c00026{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_c00026{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.md9_c00026{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m19_c00026{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mde_c00026{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.me9_c00026{transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);}
.m91_c00026{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.me2_c00026{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m7_c00026{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m39_c00026{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m29_c00026{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m30_c00026{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m2f_c00026{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m38_c00026{transform:matrix(0.714744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.714744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.714744,0.000000,0.000000,0.250000,0,0);}
.m43_c00026{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m78_c00026{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m0_c00026{transform:matrix(0.722794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722794,0.000000,0.000000,0.250000,0,0);}
.m68_c00026{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m98_c00026{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mad_c00026{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.me5_c00026{transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);}
.m13_c00026{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m1c_c00026{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m5f_c00026{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.me6_c00026{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m46_c00026{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m2c_c00026{transform:matrix(0.796474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.796474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.796474,0.000000,0.000000,0.250000,0,0);}
.m7f_c00026{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m44_c00026{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m88_c00026{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m24_c00026{transform:matrix(0.822115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.822115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.822115,0.000000,0.000000,0.250000,0,0);}
.ma3_c00026{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m7d_c00026{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.v1_c00026{vertical-align:-12.000000px;}
.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:-6.305908px;}
.ws1_c00026{word-spacing:-3.499241px;}
.ws2_c00026{word-spacing:-0.141089px;}
.ws3_c00026{word-spacing:0.000000px;}
.fc0_c00026{color:transparent;}
.fs5_c00026{font-size:18.720000px;}
.fs0_c00026{font-size:20.400000px;}
.fs2_c00026{font-size:25.500000px;}
.fs1_c00026{font-size:28.920000px;}
.fs4_c00026{font-size:32.340000px;}
.fs3_c00026{font-size:35.700000px;}
.fs7_c00026{font-size:39.120000px;}
.fs6_c00026{font-size:42.540000px;}
.y0_c00026{bottom:0.000000px;}
.yed_c00026{bottom:250.245000px;}
.yeb_c00026{bottom:251.745000px;}
.yea_c00026{bottom:252.180000px;}
.yec_c00026{bottom:252.405000px;}
.yee_c00026{bottom:253.470000px;}
.yef_c00026{bottom:253.905000px;}
.ye6_c00026{bottom:269.745000px;}
.ye5_c00026{bottom:270.630000px;}
.ye3_c00026{bottom:270.825000px;}
.ye8_c00026{bottom:271.245000px;}
.ye4_c00026{bottom:271.905000px;}
.ye7_c00026{bottom:272.970000px;}
.ye9_c00026{bottom:273.405000px;}
.ye2_c00026{bottom:276.825000px;}
.yde_c00026{bottom:288.825000px;}
.ydd_c00026{bottom:290.970000px;}
.ydc_c00026{bottom:291.405000px;}
.ydf_c00026{bottom:291.630000px;}
.ye0_c00026{bottom:292.470000px;}
.ydb_c00026{bottom:292.905000px;}
.ye1_c00026{bottom:293.970000px;}
.yda_c00026{bottom:296.325000px;}
.yd8_c00026{bottom:308.745000px;}
.yd4_c00026{bottom:309.180000px;}
.yd6_c00026{bottom:310.245000px;}
.yd7_c00026{bottom:310.905000px;}
.yd5_c00026{bottom:311.745000px;}
.yd9_c00026{bottom:312.405000px;}
.yd3_c00026{bottom:315.630000px;}
.yd0_c00026{bottom:328.245000px;}
.yd2_c00026{bottom:328.905000px;}
.ycd_c00026{bottom:329.970000px;}
.ycf_c00026{bottom:330.405000px;}
.yce_c00026{bottom:330.630000px;}
.yd1_c00026{bottom:330.825000px;}
.ycc_c00026{bottom:336.405000px;}
.yc5_c00026{bottom:348.405000px;}
.yca_c00026{bottom:348.825000px;}
.yc8_c00026{bottom:349.905000px;}
.yc6_c00026{bottom:350.130000px;}
.yc9_c00026{bottom:350.970000px;}
.yc7_c00026{bottom:351.405000px;}
.ycb_c00026{bottom:352.470000px;}
.yc4_c00026{bottom:353.325000px;}
.yc1_c00026{bottom:377.970000px;}
.yc2_c00026{bottom:379.050000px;}
.yc3_c00026{bottom:379.905000px;}
.yc0_c00026{bottom:380.325000px;}
.ybf_c00026{bottom:427.245000px;}
.ybb_c00026{bottom:427.680000px;}
.ybe_c00026{bottom:428.130000px;}
.ybd_c00026{bottom:429.405000px;}
.ybc_c00026{bottom:430.470000px;}
.yba_c00026{bottom:432.405000px;}
.yb8_c00026{bottom:446.745000px;}
.yb7_c00026{bottom:448.905000px;}
.yb9_c00026{bottom:449.970000px;}
.yb6_c00026{bottom:450.405000px;}
.yb5_c00026{bottom:452.970000px;}
.yb4_c00026{bottom:467.745000px;}
.yb2_c00026{bottom:469.905000px;}
.yb3_c00026{bottom:470.970000px;}
.yaf_c00026{bottom:487.245000px;}
.yb1_c00026{bottom:487.905000px;}
.yb0_c00026{bottom:488.970000px;}
.yae_c00026{bottom:489.405000px;}
.yad_c00026{bottom:491.970000px;}
.yaa_c00026{bottom:506.325000px;}
.yac_c00026{bottom:506.745000px;}
.yab_c00026{bottom:508.905000px;}
.ya9_c00026{bottom:510.405000px;}
.ya8_c00026{bottom:511.905000px;}
.ya6_c00026{bottom:528.405000px;}
.ya7_c00026{bottom:529.470000px;}
.ya5_c00026{bottom:530.325000px;}
.ya2_c00026{bottom:544.470000px;}
.ya1_c00026{bottom:545.745000px;}
.ya0_c00026{bottom:546.630000px;}
.ya4_c00026{bottom:546.825000px;}
.ya3_c00026{bottom:547.470000px;}
.y9f_c00026{bottom:547.905000px;}
.y9e_c00026{bottom:548.325000px;}
.y9d_c00026{bottom:550.470000px;}
.y99_c00026{bottom:565.245000px;}
.y9c_c00026{bottom:565.470000px;}
.y9b_c00026{bottom:566.325000px;}
.y9a_c00026{bottom:567.405000px;}
.y98_c00026{bottom:568.905000px;}
.y97_c00026{bottom:570.825000px;}
.y94_c00026{bottom:583.905000px;}
.y93_c00026{bottom:586.245000px;}
.y96_c00026{bottom:587.130000px;}
.y91_c00026{bottom:587.325000px;}
.y95_c00026{bottom:587.970000px;}
.y92_c00026{bottom:588.405000px;}
.y8f_c00026{bottom:604.245000px;}
.y8e_c00026{bottom:604.470000px;}
.y90_c00026{bottom:605.745000px;}
.y8d_c00026{bottom:606.630000px;}
.y8a_c00026{bottom:607.245000px;}
.y8c_c00026{bottom:607.470000px;}
.y8b_c00026{bottom:607.905000px;}
.y89_c00026{bottom:608.745000px;}
.y85_c00026{bottom:622.905000px;}
.y87_c00026{bottom:623.970000px;}
.y86_c00026{bottom:624.825000px;}
.y88_c00026{bottom:626.130000px;}
.y83_c00026{bottom:626.970000px;}
.y82_c00026{bottom:627.405000px;}
.y81_c00026{bottom:627.825000px;}
.y84_c00026{bottom:628.470000px;}
.y80_c00026{bottom:630.405000px;}
.y7f_c00026{bottom:643.245000px;}
.y7c_c00026{bottom:643.905000px;}
.y7d_c00026{bottom:644.745000px;}
.y78_c00026{bottom:645.405000px;}
.y7e_c00026{bottom:645.630000px;}
.y7b_c00026{bottom:646.050000px;}
.y7a_c00026{bottom:646.905000px;}
.y79_c00026{bottom:648.405000px;}
.y74_c00026{bottom:664.245000px;}
.y77_c00026{bottom:665.325000px;}
.y75_c00026{bottom:666.405000px;}
.y76_c00026{bottom:667.470000px;}
.y73_c00026{bottom:667.905000px;}
.y71_c00026{bottom:684.825000px;}
.y70_c00026{bottom:685.905000px;}
.y72_c00026{bottom:686.130000px;}
.y6f_c00026{bottom:687.405000px;}
.y6e_c00026{bottom:687.825000px;}
.y6c_c00026{bottom:703.245000px;}
.y6b_c00026{bottom:705.405000px;}
.y6d_c00026{bottom:705.630000px;}
.y6a_c00026{bottom:706.470000px;}
.y69_c00026{bottom:706.905000px;}
.y68_c00026{bottom:708.405000px;}
.y67_c00026{bottom:721.905000px;}
.y64_c00026{bottom:724.245000px;}
.y61_c00026{bottom:724.680000px;}
.y65_c00026{bottom:724.905000px;}
.y63_c00026{bottom:725.130000px;}
.y66_c00026{bottom:725.325000px;}
.y62_c00026{bottom:726.405000px;}
.y5c_c00026{bottom:743.745000px;}
.y60_c00026{bottom:744.630000px;}
.y5e_c00026{bottom:744.825000px;}
.y5f_c00026{bottom:745.470000px;}
.y5d_c00026{bottom:745.905000px;}
.y5a_c00026{bottom:762.405000px;}
.y58_c00026{bottom:763.245000px;}
.y55_c00026{bottom:763.680000px;}
.y59_c00026{bottom:764.970000px;}
.y56_c00026{bottom:765.405000px;}
.y5b_c00026{bottom:765.630000px;}
.y57_c00026{bottom:766.470000px;}
.y53_c00026{bottom:781.905000px;}
.y52_c00026{bottom:782.970000px;}
.y54_c00026{bottom:783.825000px;}
.y4f_c00026{bottom:784.470000px;}
.y4e_c00026{bottom:784.905000px;}
.y51_c00026{bottom:785.130000px;}
.y50_c00026{bottom:785.970000px;}
.y4c_c00026{bottom:802.245000px;}
.y4b_c00026{bottom:804.405000px;}
.y4d_c00026{bottom:804.630000px;}
.y4a_c00026{bottom:805.905000px;}
.y48_c00026{bottom:821.745000px;}
.y47_c00026{bottom:822.180000px;}
.y49_c00026{bottom:822.405000px;}
.y43_c00026{bottom:841.245000px;}
.y46_c00026{bottom:842.745000px;}
.y42_c00026{bottom:843.405000px;}
.y45_c00026{bottom:843.825000px;}
.y44_c00026{bottom:844.470000px;}
.y41_c00026{bottom:844.905000px;}
.y40_c00026{bottom:845.970000px;}
.y3d_c00026{bottom:862.245000px;}
.y3c_c00026{bottom:862.905000px;}
.y3f_c00026{bottom:863.130000px;}
.y3e_c00026{bottom:863.325000px;}
.y3b_c00026{bottom:864.405000px;}
.y38_c00026{bottom:881.745000px;}
.y3a_c00026{bottom:882.630000px;}
.y36_c00026{bottom:882.825000px;}
.y39_c00026{bottom:883.470000px;}
.y37_c00026{bottom:883.905000px;}
.y35_c00026{bottom:885.405000px;}
.y32_c00026{bottom:901.245000px;}
.y2f_c00026{bottom:901.905000px;}
.y33_c00026{bottom:902.325000px;}
.y34_c00026{bottom:902.970000px;}
.y31_c00026{bottom:903.405000px;}
.y30_c00026{bottom:904.905000px;}
.y2b_c00026{bottom:920.745000px;}
.y2c_c00026{bottom:921.630000px;}
.y2d_c00026{bottom:921.825000px;}
.y2e_c00026{bottom:922.905000px;}
.y2a_c00026{bottom:924.405000px;}
.y29_c00026{bottom:925.905000px;}
.y25_c00026{bottom:940.245000px;}
.y28_c00026{bottom:941.130000px;}
.y27_c00026{bottom:941.325000px;}
.y26_c00026{bottom:941.970000px;}
.y24_c00026{bottom:942.405000px;}
.y23_c00026{bottom:943.905000px;}
.y20_c00026{bottom:959.745000px;}
.y1f_c00026{bottom:961.905000px;}
.y21_c00026{bottom:962.130000px;}
.y22_c00026{bottom:962.970000px;}
.y1e_c00026{bottom:963.405000px;}
.y1d_c00026{bottom:979.245000px;}
.y1b_c00026{bottom:981.405000px;}
.y1c_c00026{bottom:981.630000px;}
.y1a_c00026{bottom:982.905000px;}
.y17_c00026{bottom:998.745000px;}
.y16_c00026{bottom:1000.905000px;}
.y15_c00026{bottom:1001.130000px;}
.y18_c00026{bottom:1001.970000px;}
.y19_c00026{bottom:1002.405000px;}
.y14_c00026{bottom:1002.630000px;}
.y10_c00026{bottom:1018.245000px;}
.y11_c00026{bottom:1019.325000px;}
.ye_c00026{bottom:1019.745000px;}
.yf_c00026{bottom:1020.630000px;}
.y12_c00026{bottom:1021.470000px;}
.y13_c00026{bottom:1021.905000px;}
.y9_c00026{bottom:1039.245000px;}
.yb_c00026{bottom:1040.130000px;}
.yc_c00026{bottom:1040.325000px;}
.ya_c00026{bottom:1041.405000px;}
.yd_c00026{bottom:1042.470000px;}
.y4_c00026{bottom:1056.405000px;}
.y6_c00026{bottom:1057.245000px;}
.y8_c00026{bottom:1059.825000px;}
.y5_c00026{bottom:1060.470000px;}
.y3_c00026{bottom:1060.905000px;}
.y7_c00026{bottom:1061.970000px;}
.y2_c00026{bottom:1062.405000px;}
.y1_c00026{bottom:1099.050000px;}
.h6_c00026{height:23.025234px;}
.h1_c00026{height:25.091602px;}
.h3_c00026{height:31.364502px;}
.h2_c00026{height:35.571035px;}
.h5_c00026{height:39.777568px;}
.h4_c00026{height:43.910303px;}
.h8_c00026{height:48.116836px;}
.h7_c00026{height:52.323369px;}
.h0_c00026{height:1335.000000px;}
.w0_c00026{width:880.500000px;}
.x0_c00026{left:0.000000px;}
.x3_c00026{left:153.000000px;}
.x48_c00026{left:154.500000px;}
.x49_c00026{left:165.000000px;}
.x28_c00026{left:166.080000px;}
.x7f_c00026{left:169.500000px;}
.xbc_c00026{left:171.000000px;}
.x54_c00026{left:172.920000px;}
.x69_c00026{left:174.000000px;}
.x4_c00026{left:178.920000px;}
.xf6_c00026{left:180.000000px;}
.xb7_c00026{left:186.000000px;}
.xd7_c00026{left:189.420000px;}
.x5f_c00026{left:192.000000px;}
.xa1_c00026{left:193.080000px;}
.xae_c00026{left:197.580000px;}
.x55_c00026{left:199.080000px;}
.x80_c00026{left:200.580000px;}
.xb8_c00026{left:202.500000px;}
.xbd_c00026{left:204.000000px;}
.x40_c00026{left:205.500000px;}
.xcc_c00026{left:207.000000px;}
.xdf_c00026{left:208.500000px;}
.xf3_c00026{left:210.420000px;}
.x60_c00026{left:211.920000px;}
.x1d_c00026{left:213.000000px;}
.x35_c00026{left:214.920000px;}
.x72_c00026{left:216.000000px;}
.x29_c00026{left:217.500000px;}
.x92_c00026{left:220.080000px;}
.x77_c00026{left:221.580000px;}
.x5_c00026{left:223.500000px;}
.x88_c00026{left:226.500000px;}
.x9b_c00026{left:228.420000px;}
.xb9_c00026{left:229.500000px;}
.xcd_c00026{left:234.000000px;}
.x4a_c00026{left:235.920000px;}
.x1e_c00026{left:238.500000px;}
.x61_c00026{left:239.580000px;}
.x6_c00026{left:243.420000px;}
.x78_c00026{left:244.920000px;}
.x89_c00026{left:246.420000px;}
.xa2_c00026{left:249.420000px;}
.xe4_c00026{left:250.500000px;}
.xef_c00026{left:252.000000px;}
.xe8_c00026{left:255.420000px;}
.x36_c00026{left:256.500000px;}
.xc9_c00026{left:259.920000px;}
.x93_c00026{left:261.000000px;}
.xd6_c00026{left:262.080000px;}
.x73_c00026{left:263.580000px;}
.x4b_c00026{left:265.500000px;}
.xf4_c00026{left:268.080000px;}
.xba_c00026{left:269.580000px;}
.x79_c00026{left:271.500000px;}
.xe0_c00026{left:273.420000px;}
.x2a_c00026{left:277.500000px;}
.x7_c00026{left:279.000000px;}
.x94_c00026{left:280.500000px;}
.x81_c00026{left:282.420000px;}
.x8a_c00026{left:286.500000px;}
.x1f_c00026{left:288.000000px;}
.x9c_c00026{left:289.500000px;}
.x12_c00026{left:291.000000px;}
.xe9_c00026{left:294.000000px;}
.x6a_c00026{left:295.500000px;}
.x56_c00026{left:297.420000px;}
.xaf_c00026{left:298.500000px;}
.x62_c00026{left:299.580000px;}
.xf7_c00026{left:303.000000px;}
.x101_c00026{left:306.000000px;}
.xce_c00026{left:307.500000px;}
.x82_c00026{left:308.580000px;}
.x20_c00026{left:310.500000px;}
.xd8_c00026{left:312.000000px;}
.xfe_c00026{left:313.080000px;}
.xa3_c00026{left:315.000000px;}
.xa9_c00026{left:316.920000px;}
.x8_c00026{left:318.000000px;}
.x63_c00026{left:319.920000px;}
.xd9_c00026{left:322.500000px;}
.x2b_c00026{left:325.500000px;}
.x8b_c00026{left:326.580000px;}
.x57_c00026{left:328.080000px;}
.xe5_c00026{left:330.420000px;}
.xf0_c00026{left:331.500000px;}
.x41_c00026{left:334.920000px;}
.x95_c00026{left:337.920000px;}
.x9_c00026{left:339.420000px;}
.x21_c00026{left:340.920000px;}
.xf5_c00026{left:342.000000px;}
.xcf_c00026{left:344.580000px;}
.x4c_c00026{left:347.580000px;}
.x13_c00026{left:350.580000px;}
.x102_c00026{left:355.080000px;}
.x6b_c00026{left:360.000000px;}
.x2c_c00026{left:361.920000px;}
.xbe_c00026{left:363.000000px;}
.xa_c00026{left:366.420000px;}
.xea_c00026{left:367.500000px;}
.x37_c00026{left:369.000000px;}
.x42_c00026{left:370.500000px;}
.x14_c00026{left:372.000000px;}
.xc5_c00026{left:373.080000px;}
.xa4_c00026{left:376.500000px;}
.x4d_c00026{left:378.000000px;}
.xf8_c00026{left:381.420000px;}
.xb0_c00026{left:382.920000px;}
.x6c_c00026{left:385.080000px;}
.x15_c00026{left:388.500000px;}
.x22_c00026{left:390.420000px;}
.x2_c00026{left:391.500000px;}
.xb2_c00026{left:392.580000px;}
.x9d_c00026{left:396.000000px;}
.xff_c00026{left:400.500000px;}
.x6d_c00026{left:402.000000px;}
.x8c_c00026{left:405.000000px;}
.xd0_c00026{left:406.500000px;}
.xda_c00026{left:408.420000px;}
.x58_c00026{left:412.500000px;}
.xbf_c00026{left:415.920000px;}
.xc6_c00026{left:418.500000px;}
.x4e_c00026{left:420.000000px;}
.x38_c00026{left:421.500000px;}
.x103_c00026{left:422.580000px;}
.xb3_c00026{left:424.920000px;}
.x43_c00026{left:426.420000px;}
.x64_c00026{left:427.920000px;}
.xd4_c00026{left:429.000000px;}
.xa5_c00026{left:430.500000px;}
.x2d_c00026{left:432.000000px;}
.xb_c00026{left:433.080000px;}
.x6e_c00026{left:434.580000px;}
.xaa_c00026{left:436.920000px;}
.xeb_c00026{left:438.000000px;}
.xf9_c00026{left:439.080000px;}
.x8d_c00026{left:441.420000px;}
.xd1_c00026{left:442.920000px;}
.x96_c00026{left:445.500000px;}
.x16_c00026{left:448.080000px;}
.xc_c00026{left:451.920000px;}
.xfb_c00026{left:453.000000px;}
.x83_c00026{left:455.580000px;}
.x39_c00026{left:459.000000px;}
.xa6_c00026{left:462.000000px;}
.x97_c00026{left:463.500000px;}
.xc7_c00026{left:466.500000px;}
.x2e_c00026{left:468.420000px;}
.x17_c00026{left:469.500000px;}
.x7a_c00026{left:471.000000px;}
.x23_c00026{left:472.500000px;}
.x59_c00026{left:476.580000px;}
.xe1_c00026{left:478.500000px;}
.xd_c00026{left:480.420000px;}
.x8e_c00026{left:481.500000px;}
.x3a_c00026{left:484.920000px;}
.xdb_c00026{left:489.420000px;}
.x104_c00026{left:490.500000px;}
.xbb_c00026{left:491.580000px;}
.x9e_c00026{left:493.920000px;}
.x2f_c00026{left:495.420000px;}
.x7b_c00026{left:498.420000px;}
.xab_c00026{left:499.500000px;}
.xc0_c00026{left:501.000000px;}
.xfc_c00026{left:507.420000px;}
.xec_c00026{left:508.500000px;}
.xc1_c00026{left:511.500000px;}
.x3b_c00026{left:513.420000px;}
.xe_c00026{left:514.500000px;}
.x18_c00026{left:518.580000px;}
.x9f_c00026{left:521.580000px;}
.xb4_c00026{left:523.500000px;}
.x98_c00026{left:525.420000px;}
.xdc_c00026{left:526.920000px;}
.xd2_c00026{left:528.000000px;}
.x24_c00026{left:530.145000px;}
.x5a_c00026{left:532.500000px;}
.x84_c00026{left:534.420000px;}
.x4f_c00026{left:536.580000px;}
.x8f_c00026{left:539.580000px;}
.x44_c00026{left:541.500000px;}
.x65_c00026{left:547.500000px;}
.x30_c00026{left:548.580000px;}
.xdd_c00026{left:552.645000px;}
.x50_c00026{left:555.000000px;}
.x6f_c00026{left:560.580000px;}
.x74_c00026{left:564.000000px;}
.xe6_c00026{left:565.500000px;}
.x31_c00026{left:567.420000px;}
.xf_c00026{left:568.500000px;}
.x90_c00026{left:570.000000px;}
.x45_c00026{left:573.000000px;}
.xed_c00026{left:574.500000px;}
.x3c_c00026{left:575.580000px;}
.x5b_c00026{left:577.500000px;}
.xa7_c00026{left:579.000000px;}
.xe2_c00026{left:580.500000px;}
.xc8_c00026{left:582.000000px;}
.xf1_c00026{left:583.500000px;}
.x25_c00026{left:585.000000px;}
.x19_c00026{left:586.500000px;}
.xfa_c00026{left:587.580000px;}
.x85_c00026{left:589.080000px;}
.x46_c00026{left:590.145000px;}
.x5c_c00026{left:592.080000px;}
.xee_c00026{left:593.580000px;}
.x32_c00026{left:595.500000px;}
.x3d_c00026{left:597.420000px;}
.x26_c00026{left:603.645000px;}
.x75_c00026{left:606.000000px;}
.xb5_c00026{left:609.000000px;}
.x70_c00026{left:610.500000px;}
.x51_c00026{left:611.580000px;}
.x7c_c00026{left:613.920000px;}
.xac_c00026{left:616.500000px;}
.xc2_c00026{left:618.420000px;}
.x86_c00026{left:621.420000px;}
.x5d_c00026{left:624.000000px;}
.x3e_c00026{left:625.080000px;}
.xca_c00026{left:628.080000px;}
.x52_c00026{left:630.000000px;}
.x91_c00026{left:631.920000px;}
.x10_c00026{left:634.500000px;}
.x66_c00026{left:635.580000px;}
.x5e_c00026{left:637.080000px;}
.x1a_c00026{left:639.000000px;}
.x99_c00026{left:640.500000px;}
.xd5_c00026{left:643.500000px;}
.xe3_c00026{left:645.000000px;}
.xc3_c00026{left:648.420000px;}
.x87_c00026{left:649.500000px;}
.x27_c00026{left:652.500000px;}
.x7d_c00026{left:655.500000px;}
.x33_c00026{left:658.920000px;}
.x1b_c00026{left:660.000000px;}
.xf2_c00026{left:663.000000px;}
.x71_c00026{left:667.500000px;}
.x105_c00026{left:670.080000px;}
.xde_c00026{left:671.580000px;}
.xa8_c00026{left:673.500000px;}
.x9a_c00026{left:675.000000px;}
.x3f_c00026{left:676.500000px;}
.xc4_c00026{left:681.000000px;}
.xe7_c00026{left:684.000000px;}
.x34_c00026{left:685.080000px;}
.x67_c00026{left:686.580000px;}
.xcb_c00026{left:688.080000px;}
.x7e_c00026{left:690.000000px;}
.xb6_c00026{left:693.000000px;}
.x1_c00026{left:694.500000px;}
.x47_c00026{left:695.775000px;}
.xd3_c00026{left:697.500000px;}
.xad_c00026{left:699.000000px;}
.x11_c00026{left:700.500000px;}
.x53_c00026{left:702.000000px;}
.xa0_c00026{left:703.500000px;}
.x100_c00026{left:705.000000px;}
.x68_c00026{left:706.500000px;}
.x1c_c00026{left:708.420000px;}
.x76_c00026{left:709.500000px;}
.xb1_c00026{left:714.000000px;}
.xfd_c00026{left:715.080000px;}
@media print{
.v1_c00026{vertical-align:-10.666667pt;}
.v0_c00026{vertical-align:0.000000pt;}
.ls0_c00026{letter-spacing:0.000000pt;}
.ws0_c00026{word-spacing:-5.605252pt;}
.ws1_c00026{word-spacing:-3.110437pt;}
.ws2_c00026{word-spacing:-0.125413pt;}
.ws3_c00026{word-spacing:0.000000pt;}
.fs5_c00026{font-size:16.640000pt;}
.fs0_c00026{font-size:18.133333pt;}
.fs2_c00026{font-size:22.666667pt;}
.fs1_c00026{font-size:25.706667pt;}
.fs4_c00026{font-size:28.746667pt;}
.fs3_c00026{font-size:31.733333pt;}
.fs7_c00026{font-size:34.773333pt;}
.fs6_c00026{font-size:37.813333pt;}
.y0_c00026{bottom:0.000000pt;}
.yed_c00026{bottom:222.440000pt;}
.yeb_c00026{bottom:223.773333pt;}
.yea_c00026{bottom:224.160000pt;}
.yec_c00026{bottom:224.360000pt;}
.yee_c00026{bottom:225.306667pt;}
.yef_c00026{bottom:225.693333pt;}
.ye6_c00026{bottom:239.773333pt;}
.ye5_c00026{bottom:240.560000pt;}
.ye3_c00026{bottom:240.733333pt;}
.ye8_c00026{bottom:241.106667pt;}
.ye4_c00026{bottom:241.693333pt;}
.ye7_c00026{bottom:242.640000pt;}
.ye9_c00026{bottom:243.026667pt;}
.ye2_c00026{bottom:246.066667pt;}
.yde_c00026{bottom:256.733333pt;}
.ydd_c00026{bottom:258.640000pt;}
.ydc_c00026{bottom:259.026667pt;}
.ydf_c00026{bottom:259.226667pt;}
.ye0_c00026{bottom:259.973333pt;}
.ydb_c00026{bottom:260.360000pt;}
.ye1_c00026{bottom:261.306667pt;}
.yda_c00026{bottom:263.400000pt;}
.yd8_c00026{bottom:274.440000pt;}
.yd4_c00026{bottom:274.826667pt;}
.yd6_c00026{bottom:275.773333pt;}
.yd7_c00026{bottom:276.360000pt;}
.yd5_c00026{bottom:277.106667pt;}
.yd9_c00026{bottom:277.693333pt;}
.yd3_c00026{bottom:280.560000pt;}
.yd0_c00026{bottom:291.773333pt;}
.yd2_c00026{bottom:292.360000pt;}
.ycd_c00026{bottom:293.306667pt;}
.ycf_c00026{bottom:293.693333pt;}
.yce_c00026{bottom:293.893333pt;}
.yd1_c00026{bottom:294.066667pt;}
.ycc_c00026{bottom:299.026667pt;}
.yc5_c00026{bottom:309.693333pt;}
.yca_c00026{bottom:310.066667pt;}
.yc8_c00026{bottom:311.026667pt;}
.yc6_c00026{bottom:311.226667pt;}
.yc9_c00026{bottom:311.973333pt;}
.yc7_c00026{bottom:312.360000pt;}
.ycb_c00026{bottom:313.306667pt;}
.yc4_c00026{bottom:314.066667pt;}
.yc1_c00026{bottom:335.973333pt;}
.yc2_c00026{bottom:336.933333pt;}
.yc3_c00026{bottom:337.693333pt;}
.yc0_c00026{bottom:338.066667pt;}
.ybf_c00026{bottom:379.773333pt;}
.ybb_c00026{bottom:380.160000pt;}
.ybe_c00026{bottom:380.560000pt;}
.ybd_c00026{bottom:381.693333pt;}
.ybc_c00026{bottom:382.640000pt;}
.yba_c00026{bottom:384.360000pt;}
.yb8_c00026{bottom:397.106667pt;}
.yb7_c00026{bottom:399.026667pt;}
.yb9_c00026{bottom:399.973333pt;}
.yb6_c00026{bottom:400.360000pt;}
.yb5_c00026{bottom:402.640000pt;}
.yb4_c00026{bottom:415.773333pt;}
.yb2_c00026{bottom:417.693333pt;}
.yb3_c00026{bottom:418.640000pt;}
.yaf_c00026{bottom:433.106667pt;}
.yb1_c00026{bottom:433.693333pt;}
.yb0_c00026{bottom:434.640000pt;}
.yae_c00026{bottom:435.026667pt;}
.yad_c00026{bottom:437.306667pt;}
.yaa_c00026{bottom:450.066667pt;}
.yac_c00026{bottom:450.440000pt;}
.yab_c00026{bottom:452.360000pt;}
.ya9_c00026{bottom:453.693333pt;}
.ya8_c00026{bottom:455.026667pt;}
.ya6_c00026{bottom:469.693333pt;}
.ya7_c00026{bottom:470.640000pt;}
.ya5_c00026{bottom:471.400000pt;}
.ya2_c00026{bottom:483.973333pt;}
.ya1_c00026{bottom:485.106667pt;}
.ya0_c00026{bottom:485.893333pt;}
.ya4_c00026{bottom:486.066667pt;}
.ya3_c00026{bottom:486.640000pt;}
.y9f_c00026{bottom:487.026667pt;}
.y9e_c00026{bottom:487.400000pt;}
.y9d_c00026{bottom:489.306667pt;}
.y99_c00026{bottom:502.440000pt;}
.y9c_c00026{bottom:502.640000pt;}
.y9b_c00026{bottom:503.400000pt;}
.y9a_c00026{bottom:504.360000pt;}
.y98_c00026{bottom:505.693333pt;}
.y97_c00026{bottom:507.400000pt;}
.y94_c00026{bottom:519.026667pt;}
.y93_c00026{bottom:521.106667pt;}
.y96_c00026{bottom:521.893333pt;}
.y91_c00026{bottom:522.066667pt;}
.y95_c00026{bottom:522.640000pt;}
.y92_c00026{bottom:523.026667pt;}
.y8f_c00026{bottom:537.106667pt;}
.y8e_c00026{bottom:537.306667pt;}
.y90_c00026{bottom:538.440000pt;}
.y8d_c00026{bottom:539.226667pt;}
.y8a_c00026{bottom:539.773333pt;}
.y8c_c00026{bottom:539.973333pt;}
.y8b_c00026{bottom:540.360000pt;}
.y89_c00026{bottom:541.106667pt;}
.y85_c00026{bottom:553.693333pt;}
.y87_c00026{bottom:554.640000pt;}
.y86_c00026{bottom:555.400000pt;}
.y88_c00026{bottom:556.560000pt;}
.y83_c00026{bottom:557.306667pt;}
.y82_c00026{bottom:557.693333pt;}
.y81_c00026{bottom:558.066667pt;}
.y84_c00026{bottom:558.640000pt;}
.y80_c00026{bottom:560.360000pt;}
.y7f_c00026{bottom:571.773333pt;}
.y7c_c00026{bottom:572.360000pt;}
.y7d_c00026{bottom:573.106667pt;}
.y78_c00026{bottom:573.693333pt;}
.y7e_c00026{bottom:573.893333pt;}
.y7b_c00026{bottom:574.266667pt;}
.y7a_c00026{bottom:575.026667pt;}
.y79_c00026{bottom:576.360000pt;}
.y74_c00026{bottom:590.440000pt;}
.y77_c00026{bottom:591.400000pt;}
.y75_c00026{bottom:592.360000pt;}
.y76_c00026{bottom:593.306667pt;}
.y73_c00026{bottom:593.693333pt;}
.y71_c00026{bottom:608.733333pt;}
.y70_c00026{bottom:609.693333pt;}
.y72_c00026{bottom:609.893333pt;}
.y6f_c00026{bottom:611.026667pt;}
.y6e_c00026{bottom:611.400000pt;}
.y6c_c00026{bottom:625.106667pt;}
.y6b_c00026{bottom:627.026667pt;}
.y6d_c00026{bottom:627.226667pt;}
.y6a_c00026{bottom:627.973333pt;}
.y69_c00026{bottom:628.360000pt;}
.y68_c00026{bottom:629.693333pt;}
.y67_c00026{bottom:641.693333pt;}
.y64_c00026{bottom:643.773333pt;}
.y61_c00026{bottom:644.160000pt;}
.y65_c00026{bottom:644.360000pt;}
.y63_c00026{bottom:644.560000pt;}
.y66_c00026{bottom:644.733333pt;}
.y62_c00026{bottom:645.693333pt;}
.y5c_c00026{bottom:661.106667pt;}
.y60_c00026{bottom:661.893333pt;}
.y5e_c00026{bottom:662.066667pt;}
.y5f_c00026{bottom:662.640000pt;}
.y5d_c00026{bottom:663.026667pt;}
.y5a_c00026{bottom:677.693333pt;}
.y58_c00026{bottom:678.440000pt;}
.y55_c00026{bottom:678.826667pt;}
.y59_c00026{bottom:679.973333pt;}
.y56_c00026{bottom:680.360000pt;}
.y5b_c00026{bottom:680.560000pt;}
.y57_c00026{bottom:681.306667pt;}
.y53_c00026{bottom:695.026667pt;}
.y52_c00026{bottom:695.973333pt;}
.y54_c00026{bottom:696.733333pt;}
.y4f_c00026{bottom:697.306667pt;}
.y4e_c00026{bottom:697.693333pt;}
.y51_c00026{bottom:697.893333pt;}
.y50_c00026{bottom:698.640000pt;}
.y4c_c00026{bottom:713.106667pt;}
.y4b_c00026{bottom:715.026667pt;}
.y4d_c00026{bottom:715.226667pt;}
.y4a_c00026{bottom:716.360000pt;}
.y48_c00026{bottom:730.440000pt;}
.y47_c00026{bottom:730.826667pt;}
.y49_c00026{bottom:731.026667pt;}
.y43_c00026{bottom:747.773333pt;}
.y46_c00026{bottom:749.106667pt;}
.y42_c00026{bottom:749.693333pt;}
.y45_c00026{bottom:750.066667pt;}
.y44_c00026{bottom:750.640000pt;}
.y41_c00026{bottom:751.026667pt;}
.y40_c00026{bottom:751.973333pt;}
.y3d_c00026{bottom:766.440000pt;}
.y3c_c00026{bottom:767.026667pt;}
.y3f_c00026{bottom:767.226667pt;}
.y3e_c00026{bottom:767.400000pt;}
.y3b_c00026{bottom:768.360000pt;}
.y38_c00026{bottom:783.773333pt;}
.y3a_c00026{bottom:784.560000pt;}
.y36_c00026{bottom:784.733333pt;}
.y39_c00026{bottom:785.306667pt;}
.y37_c00026{bottom:785.693333pt;}
.y35_c00026{bottom:787.026667pt;}
.y32_c00026{bottom:801.106667pt;}
.y2f_c00026{bottom:801.693333pt;}
.y33_c00026{bottom:802.066667pt;}
.y34_c00026{bottom:802.640000pt;}
.y31_c00026{bottom:803.026667pt;}
.y30_c00026{bottom:804.360000pt;}
.y2b_c00026{bottom:818.440000pt;}
.y2c_c00026{bottom:819.226667pt;}
.y2d_c00026{bottom:819.400000pt;}
.y2e_c00026{bottom:820.360000pt;}
.y2a_c00026{bottom:821.693333pt;}
.y29_c00026{bottom:823.026667pt;}
.y25_c00026{bottom:835.773333pt;}
.y28_c00026{bottom:836.560000pt;}
.y27_c00026{bottom:836.733333pt;}
.y26_c00026{bottom:837.306667pt;}
.y24_c00026{bottom:837.693333pt;}
.y23_c00026{bottom:839.026667pt;}
.y20_c00026{bottom:853.106667pt;}
.y1f_c00026{bottom:855.026667pt;}
.y21_c00026{bottom:855.226667pt;}
.y22_c00026{bottom:855.973333pt;}
.y1e_c00026{bottom:856.360000pt;}
.y1d_c00026{bottom:870.440000pt;}
.y1b_c00026{bottom:872.360000pt;}
.y1c_c00026{bottom:872.560000pt;}
.y1a_c00026{bottom:873.693333pt;}
.y17_c00026{bottom:887.773333pt;}
.y16_c00026{bottom:889.693333pt;}
.y15_c00026{bottom:889.893333pt;}
.y18_c00026{bottom:890.640000pt;}
.y19_c00026{bottom:891.026667pt;}
.y14_c00026{bottom:891.226667pt;}
.y10_c00026{bottom:905.106667pt;}
.y11_c00026{bottom:906.066667pt;}
.ye_c00026{bottom:906.440000pt;}
.yf_c00026{bottom:907.226667pt;}
.y12_c00026{bottom:907.973333pt;}
.y13_c00026{bottom:908.360000pt;}
.y9_c00026{bottom:923.773333pt;}
.yb_c00026{bottom:924.560000pt;}
.yc_c00026{bottom:924.733333pt;}
.ya_c00026{bottom:925.693333pt;}
.yd_c00026{bottom:926.640000pt;}
.y4_c00026{bottom:939.026667pt;}
.y6_c00026{bottom:939.773333pt;}
.y8_c00026{bottom:942.066667pt;}
.y5_c00026{bottom:942.640000pt;}
.y3_c00026{bottom:943.026667pt;}
.y7_c00026{bottom:943.973333pt;}
.y2_c00026{bottom:944.360000pt;}
.y1_c00026{bottom:976.933333pt;}
.h6_c00026{height:20.466875pt;}
.h1_c00026{height:22.303646pt;}
.h3_c00026{height:27.879557pt;}
.h2_c00026{height:31.618698pt;}
.h5_c00026{height:35.357839pt;}
.h4_c00026{height:39.031380pt;}
.h8_c00026{height:42.770521pt;}
.h7_c00026{height:46.509661pt;}
.h0_c00026{height:1186.666667pt;}
.w0_c00026{width:782.666667pt;}
.x0_c00026{left:0.000000pt;}
.x3_c00026{left:136.000000pt;}
.x48_c00026{left:137.333333pt;}
.x49_c00026{left:146.666667pt;}
.x28_c00026{left:147.626667pt;}
.x7f_c00026{left:150.666667pt;}
.xbc_c00026{left:152.000000pt;}
.x54_c00026{left:153.706667pt;}
.x69_c00026{left:154.666667pt;}
.x4_c00026{left:159.040000pt;}
.xf6_c00026{left:160.000000pt;}
.xb7_c00026{left:165.333333pt;}
.xd7_c00026{left:168.373333pt;}
.x5f_c00026{left:170.666667pt;}
.xa1_c00026{left:171.626667pt;}
.xae_c00026{left:175.626667pt;}
.x55_c00026{left:176.960000pt;}
.x80_c00026{left:178.293333pt;}
.xb8_c00026{left:180.000000pt;}
.xbd_c00026{left:181.333333pt;}
.x40_c00026{left:182.666667pt;}
.xcc_c00026{left:184.000000pt;}
.xdf_c00026{left:185.333333pt;}
.xf3_c00026{left:187.040000pt;}
.x60_c00026{left:188.373333pt;}
.x1d_c00026{left:189.333333pt;}
.x35_c00026{left:191.040000pt;}
.x72_c00026{left:192.000000pt;}
.x29_c00026{left:193.333333pt;}
.x92_c00026{left:195.626667pt;}
.x77_c00026{left:196.960000pt;}
.x5_c00026{left:198.666667pt;}
.x88_c00026{left:201.333333pt;}
.x9b_c00026{left:203.040000pt;}
.xb9_c00026{left:204.000000pt;}
.xcd_c00026{left:208.000000pt;}
.x4a_c00026{left:209.706667pt;}
.x1e_c00026{left:212.000000pt;}
.x61_c00026{left:212.960000pt;}
.x6_c00026{left:216.373333pt;}
.x78_c00026{left:217.706667pt;}
.x89_c00026{left:219.040000pt;}
.xa2_c00026{left:221.706667pt;}
.xe4_c00026{left:222.666667pt;}
.xef_c00026{left:224.000000pt;}
.xe8_c00026{left:227.040000pt;}
.x36_c00026{left:228.000000pt;}
.xc9_c00026{left:231.040000pt;}
.x93_c00026{left:232.000000pt;}
.xd6_c00026{left:232.960000pt;}
.x73_c00026{left:234.293333pt;}
.x4b_c00026{left:236.000000pt;}
.xf4_c00026{left:238.293333pt;}
.xba_c00026{left:239.626667pt;}
.x79_c00026{left:241.333333pt;}
.xe0_c00026{left:243.040000pt;}
.x2a_c00026{left:246.666667pt;}
.x7_c00026{left:248.000000pt;}
.x94_c00026{left:249.333333pt;}
.x81_c00026{left:251.040000pt;}
.x8a_c00026{left:254.666667pt;}
.x1f_c00026{left:256.000000pt;}
.x9c_c00026{left:257.333333pt;}
.x12_c00026{left:258.666667pt;}
.xe9_c00026{left:261.333333pt;}
.x6a_c00026{left:262.666667pt;}
.x56_c00026{left:264.373333pt;}
.xaf_c00026{left:265.333333pt;}
.x62_c00026{left:266.293333pt;}
.xf7_c00026{left:269.333333pt;}
.x101_c00026{left:272.000000pt;}
.xce_c00026{left:273.333333pt;}
.x82_c00026{left:274.293333pt;}
.x20_c00026{left:276.000000pt;}
.xd8_c00026{left:277.333333pt;}
.xfe_c00026{left:278.293333pt;}
.xa3_c00026{left:280.000000pt;}
.xa9_c00026{left:281.706667pt;}
.x8_c00026{left:282.666667pt;}
.x63_c00026{left:284.373333pt;}
.xd9_c00026{left:286.666667pt;}
.x2b_c00026{left:289.333333pt;}
.x8b_c00026{left:290.293333pt;}
.x57_c00026{left:291.626667pt;}
.xe5_c00026{left:293.706667pt;}
.xf0_c00026{left:294.666667pt;}
.x41_c00026{left:297.706667pt;}
.x95_c00026{left:300.373333pt;}
.x9_c00026{left:301.706667pt;}
.x21_c00026{left:303.040000pt;}
.xf5_c00026{left:304.000000pt;}
.xcf_c00026{left:306.293333pt;}
.x4c_c00026{left:308.960000pt;}
.x13_c00026{left:311.626667pt;}
.x102_c00026{left:315.626667pt;}
.x6b_c00026{left:320.000000pt;}
.x2c_c00026{left:321.706667pt;}
.xbe_c00026{left:322.666667pt;}
.xa_c00026{left:325.706667pt;}
.xea_c00026{left:326.666667pt;}
.x37_c00026{left:328.000000pt;}
.x42_c00026{left:329.333333pt;}
.x14_c00026{left:330.666667pt;}
.xc5_c00026{left:331.626667pt;}
.xa4_c00026{left:334.666667pt;}
.x4d_c00026{left:336.000000pt;}
.xf8_c00026{left:339.040000pt;}
.xb0_c00026{left:340.373333pt;}
.x6c_c00026{left:342.293333pt;}
.x15_c00026{left:345.333333pt;}
.x22_c00026{left:347.040000pt;}
.x2_c00026{left:348.000000pt;}
.xb2_c00026{left:348.960000pt;}
.x9d_c00026{left:352.000000pt;}
.xff_c00026{left:356.000000pt;}
.x6d_c00026{left:357.333333pt;}
.x8c_c00026{left:360.000000pt;}
.xd0_c00026{left:361.333333pt;}
.xda_c00026{left:363.040000pt;}
.x58_c00026{left:366.666667pt;}
.xbf_c00026{left:369.706667pt;}
.xc6_c00026{left:372.000000pt;}
.x4e_c00026{left:373.333333pt;}
.x38_c00026{left:374.666667pt;}
.x103_c00026{left:375.626667pt;}
.xb3_c00026{left:377.706667pt;}
.x43_c00026{left:379.040000pt;}
.x64_c00026{left:380.373333pt;}
.xd4_c00026{left:381.333333pt;}
.xa5_c00026{left:382.666667pt;}
.x2d_c00026{left:384.000000pt;}
.xb_c00026{left:384.960000pt;}
.x6e_c00026{left:386.293333pt;}
.xaa_c00026{left:388.373333pt;}
.xeb_c00026{left:389.333333pt;}
.xf9_c00026{left:390.293333pt;}
.x8d_c00026{left:392.373333pt;}
.xd1_c00026{left:393.706667pt;}
.x96_c00026{left:396.000000pt;}
.x16_c00026{left:398.293333pt;}
.xc_c00026{left:401.706667pt;}
.xfb_c00026{left:402.666667pt;}
.x83_c00026{left:404.960000pt;}
.x39_c00026{left:408.000000pt;}
.xa6_c00026{left:410.666667pt;}
.x97_c00026{left:412.000000pt;}
.xc7_c00026{left:414.666667pt;}
.x2e_c00026{left:416.373333pt;}
.x17_c00026{left:417.333333pt;}
.x7a_c00026{left:418.666667pt;}
.x23_c00026{left:420.000000pt;}
.x59_c00026{left:423.626667pt;}
.xe1_c00026{left:425.333333pt;}
.xd_c00026{left:427.040000pt;}
.x8e_c00026{left:428.000000pt;}
.x3a_c00026{left:431.040000pt;}
.xdb_c00026{left:435.040000pt;}
.x104_c00026{left:436.000000pt;}
.xbb_c00026{left:436.960000pt;}
.x9e_c00026{left:439.040000pt;}
.x2f_c00026{left:440.373333pt;}
.x7b_c00026{left:443.040000pt;}
.xab_c00026{left:444.000000pt;}
.xc0_c00026{left:445.333333pt;}
.xfc_c00026{left:451.040000pt;}
.xec_c00026{left:452.000000pt;}
.xc1_c00026{left:454.666667pt;}
.x3b_c00026{left:456.373333pt;}
.xe_c00026{left:457.333333pt;}
.x18_c00026{left:460.960000pt;}
.x9f_c00026{left:463.626667pt;}
.xb4_c00026{left:465.333333pt;}
.x98_c00026{left:467.040000pt;}
.xdc_c00026{left:468.373333pt;}
.xd2_c00026{left:469.333333pt;}
.x24_c00026{left:471.240000pt;}
.x5a_c00026{left:473.333333pt;}
.x84_c00026{left:475.040000pt;}
.x4f_c00026{left:476.960000pt;}
.x8f_c00026{left:479.626667pt;}
.x44_c00026{left:481.333333pt;}
.x65_c00026{left:486.666667pt;}
.x30_c00026{left:487.626667pt;}
.xdd_c00026{left:491.240000pt;}
.x50_c00026{left:493.333333pt;}
.x6f_c00026{left:498.293333pt;}
.x74_c00026{left:501.333333pt;}
.xe6_c00026{left:502.666667pt;}
.x31_c00026{left:504.373333pt;}
.xf_c00026{left:505.333333pt;}
.x90_c00026{left:506.666667pt;}
.x45_c00026{left:509.333333pt;}
.xed_c00026{left:510.666667pt;}
.x3c_c00026{left:511.626667pt;}
.x5b_c00026{left:513.333333pt;}
.xa7_c00026{left:514.666667pt;}
.xe2_c00026{left:516.000000pt;}
.xc8_c00026{left:517.333333pt;}
.xf1_c00026{left:518.666667pt;}
.x25_c00026{left:520.000000pt;}
.x19_c00026{left:521.333333pt;}
.xfa_c00026{left:522.293333pt;}
.x85_c00026{left:523.626667pt;}
.x46_c00026{left:524.573333pt;}
.x5c_c00026{left:526.293333pt;}
.xee_c00026{left:527.626667pt;}
.x32_c00026{left:529.333333pt;}
.x3d_c00026{left:531.040000pt;}
.x26_c00026{left:536.573333pt;}
.x75_c00026{left:538.666667pt;}
.xb5_c00026{left:541.333333pt;}
.x70_c00026{left:542.666667pt;}
.x51_c00026{left:543.626667pt;}
.x7c_c00026{left:545.706667pt;}
.xac_c00026{left:548.000000pt;}
.xc2_c00026{left:549.706667pt;}
.x86_c00026{left:552.373333pt;}
.x5d_c00026{left:554.666667pt;}
.x3e_c00026{left:555.626667pt;}
.xca_c00026{left:558.293333pt;}
.x52_c00026{left:560.000000pt;}
.x91_c00026{left:561.706667pt;}
.x10_c00026{left:564.000000pt;}
.x66_c00026{left:564.960000pt;}
.x5e_c00026{left:566.293333pt;}
.x1a_c00026{left:568.000000pt;}
.x99_c00026{left:569.333333pt;}
.xd5_c00026{left:572.000000pt;}
.xe3_c00026{left:573.333333pt;}
.xc3_c00026{left:576.373333pt;}
.x87_c00026{left:577.333333pt;}
.x27_c00026{left:580.000000pt;}
.x7d_c00026{left:582.666667pt;}
.x33_c00026{left:585.706667pt;}
.x1b_c00026{left:586.666667pt;}
.xf2_c00026{left:589.333333pt;}
.x71_c00026{left:593.333333pt;}
.x105_c00026{left:595.626667pt;}
.xde_c00026{left:596.960000pt;}
.xa8_c00026{left:598.666667pt;}
.x9a_c00026{left:600.000000pt;}
.x3f_c00026{left:601.333333pt;}
.xc4_c00026{left:605.333333pt;}
.xe7_c00026{left:608.000000pt;}
.x34_c00026{left:608.960000pt;}
.x67_c00026{left:610.293333pt;}
.xcb_c00026{left:611.626667pt;}
.x7e_c00026{left:613.333333pt;}
.xb6_c00026{left:616.000000pt;}
.x1_c00026{left:617.333333pt;}
.x47_c00026{left:618.466667pt;}
.xd3_c00026{left:620.000000pt;}
.xad_c00026{left:621.333333pt;}
.x11_c00026{left:622.666667pt;}
.x53_c00026{left:624.000000pt;}
.xa0_c00026{left:625.333333pt;}
.x100_c00026{left:626.666667pt;}
.x68_c00026{left:628.000000pt;}
.x1c_c00026{left:629.706667pt;}
.x76_c00026{left:630.666667pt;}
.xb1_c00026{left:634.666667pt;}
.xfd_c00026{left:635.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_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_96fa7f3ccbb5ad62c554a440.woff2')format("woff");}.ff1_c00027{font-family:ff1_c00027;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m42_c00027{transform:matrix(0.333824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333824,0.000000,0.000000,0.250000,0,0);}
.m9a_c00027{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m52_c00027{transform:matrix(0.365028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365028,0.000000,0.000000,0.250000,0,0);}
.m6_c00027{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mb4_c00027{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m99_c00027{transform:matrix(0.372699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372699,0.000000,0.000000,0.250000,0,0);}
.m5d_c00027{transform:matrix(0.379406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379406,0.000000,0.000000,0.250000,0,0);}
.m78_c00027{transform:matrix(0.379870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379870,0.000000,0.000000,0.250000,0,0);}
.m68_c00027{transform:matrix(0.381725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381725,0.000000,0.000000,0.250000,0,0);}
.m4c_c00027{transform:matrix(0.382189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382189,0.000000,0.000000,0.250000,0,0);}
.md5_c00027{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.mb_c00027{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.ma6_c00027{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m4f_c00027{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.mdf_c00027{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m5f_c00027{transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);}
.ma3_c00027{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m41_c00027{transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);}
.m48_c00027{transform:matrix(0.393321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393321,0.000000,0.000000,0.250000,0,0);}
.m76_c00027{transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);}
.m46_c00027{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m6e_c00027{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.mb8_c00027{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m18_c00027{transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);}
.m39_c00027{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m7c_c00027{transform:matrix(0.403989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403989,0.000000,0.000000,0.250000,0,0);}
.m7_c00027{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m47_c00027{transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);}
.m75_c00027{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.m59_c00027{transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);}
.m53_c00027{transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);}
.m65_c00027{transform:matrix(0.408627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408627,0.000000,0.000000,0.250000,0,0);}
.m96_c00027{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m74_c00027{transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);}
.md7_c00027{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m98_c00027{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m60_c00027{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.m16_c00027{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mcf_c00027{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m83_c00027{transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);}
.m22_c00027{transform:matrix(0.418831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418831,0.000000,0.000000,0.250000,0,0);}
.m8e_c00027{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m28_c00027{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m70_c00027{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.mc2_c00027{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m54_c00027{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.me0_c00027{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m3b_c00027{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.ma4_c00027{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mf_c00027{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m7e_c00027{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.m9e_c00027{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m36_c00027{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m5e_c00027{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m69_c00027{transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);}
.mb1_c00027{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m8a_c00027{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.ma5_c00027{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m50_c00027{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m6c_c00027{transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);}
.mc5_c00027{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m80_c00027{transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);}
.mc3_c00027{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.maa_c00027{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m82_c00027{transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);}
.mc7_c00027{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m8b_c00027{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.mdb_c00027{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m7f_c00027{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.ma2_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);}
.m2f_c00027{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m5c_c00027{transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);}
.m9f_c00027{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m85_c00027{transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);}
.mb9_c00027{transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);}
.m5b_c00027{transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);}
.m93_c00027{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m94_c00027{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m64_c00027{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.m72_c00027{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m40_c00027{transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);}
.m45_c00027{transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);}
.m62_c00027{transform:matrix(0.468361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468361,0.000000,0.000000,0.250000,0,0);}
.m3f_c00027{transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);}
.m20_c00027{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m66_c00027{transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);}
.md9_c00027{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.m4b_c00027{transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);}
.m87_c00027{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mb2_c00027{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m24_c00027{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m84_c00027{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.md3_c00027{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mad_c00027{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m14_c00027{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.md_c00027{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m10_c00027{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m1b_c00027{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m13_c00027{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m9_c00027{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m1e_c00027{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m3_c00027{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_c00027{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.md6_c00027{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.ma8_c00027{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mde_c00027{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m27_c00027{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m1d_c00027{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m1c_c00027{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m90_c00027{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.maf_c00027{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m35_c00027{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mb3_c00027{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m1f_c00027{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mc8_c00027{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m6b_c00027{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m51_c00027{transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);}
.mbe_c00027{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m9c_c00027{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m57_c00027{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.ma0_c00027{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m89_c00027{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.md1_c00027{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m86_c00027{transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);}
.m2c_c00027{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m37_c00027{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m91_c00027{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.md8_c00027{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m7b_c00027{transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);}
.m5_c00027{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m4d_c00027{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.m2d_c00027{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mae_c00027{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m77_c00027{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m11_c00027{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m31_c00027{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m21_c00027{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m3a_c00027{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.ma9_c00027{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mc4_c00027{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mdc_c00027{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m56_c00027{transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);}
.mb5_c00027{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mc6_c00027{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mcc_c00027{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m58_c00027{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.mc9_c00027{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mc1_c00027{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m4a_c00027{transform:matrix(0.551176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551176,0.000000,0.000000,0.250000,0,0);}
.m12_c00027{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.me_c00027{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m23_c00027{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m19_c00027{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mac_c00027{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mbd_c00027{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.mdd_c00027{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mce_c00027{transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);}
.m9d_c00027{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m6d_c00027{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m2_c00027{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m2a_c00027{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m8c_c00027{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m71_c00027{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.ma7_c00027{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.md2_c00027{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m25_c00027{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m73_c00027{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m7d_c00027{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_c00027{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m2b_c00027{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m97_c00027{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m79_c00027{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.ma1_c00027{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.mca_c00027{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m95_c00027{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m3c_c00027{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m4_c00027{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m88_c00027{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);}
.mbf_c00027{transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);}
.mbc_c00027{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m44_c00027{transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);}
.m43_c00027{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);}
.m92_c00027{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m17_c00027{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mb6_c00027{transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);}
.m0_c00027{transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);}
.mb0_c00027{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);}
.mda_c00027{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m4e_c00027{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m67_c00027{transform:matrix(0.636029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636029,0.000000,0.000000,0.250000,0,0);}
.m26_c00027{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m7a_c00027{transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);}
.m33_c00027{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.m63_c00027{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.ma_c00027{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m3d_c00027{transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);}
.m55_c00027{transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);}
.mcd_c00027{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m38_c00027{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m8_c00027{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m5a_c00027{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m61_c00027{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);}
.m1a_c00027{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m49_c00027{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mba_c00027{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m81_c00027{transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);}
.mb7_c00027{transform:matrix(0.721154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721154,0.000000,0.000000,0.250000,0,0);}
.m6a_c00027{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m32_c00027{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m29_c00027{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mcb_c00027{transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);}
.m6f_c00027{transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);}
.m15_c00027{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.md0_c00027{transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);}
.mab_c00027{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m30_c00027{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m1_c00027{transform:matrix(0.766912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766912,0.000000,0.000000,0.250000,0,0);}
.mc0_c00027{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m8f_c00027{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mbb_c00027{transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);}
.m2e_c00027{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.md4_c00027{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.m3e_c00027{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m34_c00027{transform:matrix(1.092949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.092949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.092949,0.000000,0.000000,0.250000,0,0);}
.m8d_c00027{transform:matrix(1.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.749199,0.000000,0.000000,0.250000,0,0);}
.v0_c00027{vertical-align:0.000000px;}
.v1_c00027{vertical-align:3.420000px;}
.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:-5.128800px;}
.ws1_c00027{word-spacing:-3.136060px;}
.ws2_c00027{word-spacing:-0.799200px;}
.ws3_c00027{word-spacing:0.000000px;}
.fc0_c00027{color:transparent;}
.fs8_c00027{font-size:11.880000px;}
.fs6_c00027{font-size:13.620000px;}
.fs4_c00027{font-size:18.720000px;}
.fs0_c00027{font-size:20.400000px;}
.fs3_c00027{font-size:25.500000px;}
.fs1_c00027{font-size:28.920000px;}
.fs5_c00027{font-size:32.340000px;}
.fs2_c00027{font-size:35.700000px;}
.fs7_c00027{font-size:39.120000px;}
.y0_c00027{bottom:0.000000px;}
.yb9_c00027{bottom:252.405000px;}
.yb8_c00027{bottom:254.745000px;}
.ybd_c00027{bottom:256.245000px;}
.ybb_c00027{bottom:256.470000px;}
.yba_c00027{bottom:256.905000px;}
.ybc_c00027{bottom:257.970000px;}
.yb1_c00027{bottom:274.245000px;}
.yb7_c00027{bottom:275.325000px;}
.yb4_c00027{bottom:275.745000px;}
.yb2_c00027{bottom:275.970000px;}
.yaf_c00027{bottom:276.405000px;}
.yb3_c00027{bottom:276.630000px;}
.yb0_c00027{bottom:277.470000px;}
.yb6_c00027{bottom:277.905000px;}
.yb5_c00027{bottom:278.970000px;}
.yaa_c00027{bottom:293.745000px;}
.yae_c00027{bottom:294.825000px;}
.yad_c00027{bottom:295.245000px;}
.ya9_c00027{bottom:295.905000px;}
.yab_c00027{bottom:296.130000px;}
.yac_c00027{bottom:297.405000px;}
.ya6_c00027{bottom:314.745000px;}
.ya3_c00027{bottom:315.405000px;}
.ya8_c00027{bottom:315.630000px;}
.ya7_c00027{bottom:316.470000px;}
.ya4_c00027{bottom:316.905000px;}
.ya5_c00027{bottom:317.130000px;}
.ya2_c00027{bottom:333.825000px;}
.y9d_c00027{bottom:334.245000px;}
.y9c_c00027{bottom:334.905000px;}
.y9e_c00027{bottom:335.130000px;}
.ya1_c00027{bottom:335.325000px;}
.y9f_c00027{bottom:335.970000px;}
.ya0_c00027{bottom:336.405000px;}
.y9b_c00027{bottom:352.470000px;}
.y97_c00027{bottom:354.630000px;}
.y98_c00027{bottom:355.470000px;}
.y96_c00027{bottom:355.905000px;}
.y9a_c00027{bottom:356.130000px;}
.y99_c00027{bottom:356.970000px;}
.y95_c00027{bottom:385.905000px;}
.y94_c00027{bottom:412.245000px;}
.y90_c00027{bottom:433.245000px;}
.y92_c00027{bottom:433.470000px;}
.y8f_c00027{bottom:433.905000px;}
.y93_c00027{bottom:434.130000px;}
.y91_c00027{bottom:435.405000px;}
.y8a_c00027{bottom:449.745000px;}
.y8c_c00027{bottom:452.325000px;}
.y8d_c00027{bottom:452.745000px;}
.y8b_c00027{bottom:453.405000px;}
.y8e_c00027{bottom:454.905000px;}
.y88_c00027{bottom:469.905000px;}
.y87_c00027{bottom:471.825000px;}
.y84_c00027{bottom:472.245000px;}
.y86_c00027{bottom:473.130000px;}
.y89_c00027{bottom:473.550000px;}
.y85_c00027{bottom:474.405000px;}
.y81_c00027{bottom:490.905000px;}
.y83_c00027{bottom:491.325000px;}
.y82_c00027{bottom:493.470000px;}
.y80_c00027{bottom:493.905000px;}
.y7e_c00027{bottom:509.745000px;}
.y7f_c00027{bottom:511.245000px;}
.y7b_c00027{bottom:530.745000px;}
.y7a_c00027{bottom:532.905000px;}
.y7d_c00027{bottom:533.130000px;}
.y7c_c00027{bottom:534.405000px;}
.y74_c00027{bottom:548.775000px;}
.y72_c00027{bottom:549.180000px;}
.y76_c00027{bottom:549.405000px;}
.y73_c00027{bottom:550.245000px;}
.y79_c00027{bottom:550.470000px;}
.y78_c00027{bottom:551.745000px;}
.y75_c00027{bottom:552.405000px;}
.y77_c00027{bottom:553.470000px;}
.y6f_c00027{bottom:569.745000px;}
.y6e_c00027{bottom:570.825000px;}
.y71_c00027{bottom:571.245000px;}
.y6c_c00027{bottom:571.905000px;}
.y6b_c00027{bottom:572.130000px;}
.y6d_c00027{bottom:572.970000px;}
.y70_c00027{bottom:573.405000px;}
.y6a_c00027{bottom:588.405000px;}
.y67_c00027{bottom:589.245000px;}
.y69_c00027{bottom:590.745000px;}
.y66_c00027{bottom:591.405000px;}
.y65_c00027{bottom:591.630000px;}
.y64_c00027{bottom:592.470000px;}
.y68_c00027{bottom:592.905000px;}
.y63_c00027{bottom:616.905000px;}
.y62_c00027{bottom:617.970000px;}
.y61_c00027{bottom:631.905000px;}
.y60_c00027{bottom:634.050000px;}
.y5f_c00027{bottom:645.825000px;}
.y5c_c00027{bottom:646.905000px;}
.y5d_c00027{bottom:648.195000px;}
.y5e_c00027{bottom:649.050000px;}
.y5b_c00027{bottom:660.825000px;}
.y5a_c00027{bottom:662.970000px;}
.y59_c00027{bottom:675.825000px;}
.y57_c00027{bottom:677.130000px;}
.y58_c00027{bottom:677.970000px;}
.y56_c00027{bottom:679.050000px;}
.y53_c00027{bottom:690.825000px;}
.y55_c00027{bottom:691.050000px;}
.y54_c00027{bottom:692.970000px;}
.y50_c00027{bottom:705.405000px;}
.y51_c00027{bottom:705.825000px;}
.y52_c00027{bottom:706.050000px;}
.y4e_c00027{bottom:707.970000px;}
.y4f_c00027{bottom:708.195000px;}
.y4c_c00027{bottom:720.405000px;}
.y4d_c00027{bottom:720.825000px;}
.y4b_c00027{bottom:722.550000px;}
.y4a_c00027{bottom:746.745000px;}
.y49_c00027{bottom:748.245000px;}
.y46_c00027{bottom:748.905000px;}
.y47_c00027{bottom:749.130000px;}
.y48_c00027{bottom:750.405000px;}
.y45_c00027{bottom:774.825000px;}
.y44_c00027{bottom:775.695000px;}
.y43_c00027{bottom:776.550000px;}
.y40_c00027{bottom:789.405000px;}
.y41_c00027{bottom:789.825000px;}
.y42_c00027{bottom:790.905000px;}
.y3f_c00027{bottom:791.130000px;}
.y3e_c00027{bottom:791.550000px;}
.y3b_c00027{bottom:804.405000px;}
.y3c_c00027{bottom:805.695000px;}
.y3d_c00027{bottom:806.550000px;}
.y3a_c00027{bottom:818.325000px;}
.y39_c00027{bottom:833.325000px;}
.y38_c00027{bottom:835.470000px;}
.y35_c00027{bottom:849.405000px;}
.y36_c00027{bottom:849.630000px;}
.y37_c00027{bottom:851.550000px;}
.y34_c00027{bottom:863.325000px;}
.y32_c00027{bottom:865.470000px;}
.y33_c00027{bottom:865.695000px;}
.y31_c00027{bottom:866.550000px;}
.y30_c00027{bottom:878.325000px;}
.y2f_c00027{bottom:880.470000px;}
.y29_c00027{bottom:891.825000px;}
.y2d_c00027{bottom:892.905000px;}
.y2a_c00027{bottom:893.130000px;}
.y2b_c00027{bottom:893.970000px;}
.y2c_c00027{bottom:894.630000px;}
.y2e_c00027{bottom:895.050000px;}
.y28_c00027{bottom:906.825000px;}
.y27_c00027{bottom:922.905000px;}
.y26_c00027{bottom:924.195000px;}
.y25_c00027{bottom:925.050000px;}
.y23_c00027{bottom:936.825000px;}
.y24_c00027{bottom:937.050000px;}
.y22_c00027{bottom:937.905000px;}
.y21_c00027{bottom:939.195000px;}
.y20_c00027{bottom:940.050000px;}
.y1f_c00027{bottom:966.405000px;}
.y1a_c00027{bottom:983.550000px;}
.y1e_c00027{bottom:983.745000px;}
.y1b_c00027{bottom:984.405000px;}
.y1c_c00027{bottom:984.630000px;}
.y1d_c00027{bottom:985.905000px;}
.y11_c00027{bottom:1000.905000px;}
.y17_c00027{bottom:1001.970000px;}
.y16_c00027{bottom:1002.405000px;}
.y12_c00027{bottom:1003.245000px;}
.y19_c00027{bottom:1003.905000px;}
.y14_c00027{bottom:1004.130000px;}
.y15_c00027{bottom:1004.325000px;}
.y18_c00027{bottom:1004.970000px;}
.y13_c00027{bottom:1005.405000px;}
.yf_c00027{bottom:1022.745000px;}
.yb_c00027{bottom:1023.405000px;}
.y10_c00027{bottom:1023.630000px;}
.yd_c00027{bottom:1023.825000px;}
.yc_c00027{bottom:1024.905000px;}
.ye_c00027{bottom:1025.970000px;}
.y9_c00027{bottom:1040.325000px;}
.y5_c00027{bottom:1040.745000px;}
.y8_c00027{bottom:1042.245000px;}
.ya_c00027{bottom:1042.905000px;}
.y6_c00027{bottom:1044.405000px;}
.y7_c00027{bottom:1044.630000px;}
.y3_c00027{bottom:1061.745000px;}
.y2_c00027{bottom:1063.905000px;}
.y4_c00027{bottom:1064.970000px;}
.y1_c00027{bottom:1102.050000px;}
.h9_c00027{height:14.612168px;}
.h7_c00027{height:16.752334px;}
.h5_c00027{height:23.025234px;}
.h1_c00027{height:25.091602px;}
.h4_c00027{height:31.364502px;}
.h2_c00027{height:35.571035px;}
.ha_c00027{height:38.991035px;}
.h6_c00027{height:39.777568px;}
.h3_c00027{height:43.910303px;}
.h8_c00027{height:48.116836px;}
.h0_c00027{height:1335.000000px;}
.w0_c00027{width:880.500000px;}
.x0_c00027{left:0.000000px;}
.x92_c00027{left:151.920000px;}
.x3_c00027{left:153.000000px;}
.x2_c00027{left:154.500000px;}
.x36_c00027{left:168.000000px;}
.x44_c00027{left:172.920000px;}
.x10_c00027{left:175.920000px;}
.xb6_c00027{left:178.500000px;}
.xab_c00027{left:180.000000px;}
.x9d_c00027{left:187.920000px;}
.xca_c00027{left:192.000000px;}
.x61_c00027{left:195.000000px;}
.x1f_c00027{left:196.500000px;}
.x37_c00027{left:197.580000px;}
.x45_c00027{left:199.080000px;}
.xc4_c00027{left:201.420000px;}
.xcc_c00027{left:202.500000px;}
.xac_c00027{left:205.500000px;}
.x4_c00027{left:206.580000px;}
.x8c_c00027{left:211.080000px;}
.x38_c00027{left:220.500000px;}
.x93_c00027{left:221.580000px;}
.x11_c00027{left:226.500000px;}
.xcd_c00027{left:229.920000px;}
.x4a_c00027{left:231.000000px;}
.xa5_c00027{left:232.500000px;}
.x56_c00027{left:233.580000px;}
.x5f_c00027{left:235.080000px;}
.x39_c00027{left:237.000000px;}
.x9e_c00027{left:238.500000px;}
.x20_c00027{left:240.000000px;}
.x5e_c00027{left:241.080000px;}
.x4d_c00027{left:242.580000px;}
.x4f_c00027{left:244.500000px;}
.x67_c00027{left:246.000000px;}
.x4b_c00027{left:249.000000px;}
.x62_c00027{left:250.500000px;}
.x46_c00027{left:252.000000px;}
.x70_c00027{left:253.920000px;}
.x94_c00027{left:255.420000px;}
.x12_c00027{left:256.920000px;}
.x5_c00027{left:259.920000px;}
.x50_c00027{left:261.000000px;}
.x6b_c00027{left:262.500000px;}
.x68_c00027{left:264.000000px;}
.x65_c00027{left:265.500000px;}
.x2f_c00027{left:268.500000px;}
.x21_c00027{left:271.500000px;}
.x73_c00027{left:274.500000px;}
.xce_c00027{left:280.920000px;}
.x66_c00027{left:283.080000px;}
.x57_c00027{left:285.000000px;}
.x30_c00027{left:288.420000px;}
.x13_c00027{left:289.500000px;}
.x63_c00027{left:291.000000px;}
.xb7_c00027{left:292.500000px;}
.x60_c00027{left:294.000000px;}
.x6_c00027{left:295.920000px;}
.x3a_c00027{left:298.920000px;}
.x76_c00027{left:300.000000px;}
.x54_c00027{left:301.500000px;}
.x58_c00027{left:302.580000px;}
.xcf_c00027{left:305.145000px;}
.x4e_c00027{left:307.500000px;}
.xad_c00027{left:309.000000px;}
.x31_c00027{left:315.000000px;}
.x22_c00027{left:317.355000px;}
.x4c_c00027{left:319.080000px;}
.x7_c00027{left:322.500000px;}
.x14_c00027{left:325.920000px;}
.xae_c00027{left:328.920000px;}
.x95_c00027{left:332.580000px;}
.xbd_c00027{left:336.420000px;}
.x74_c00027{left:338.580000px;}
.x5b_c00027{left:340.080000px;}
.x55_c00027{left:342.000000px;}
.x51_c00027{left:343.920000px;}
.x64_c00027{left:345.420000px;}
.x47_c00027{left:348.000000px;}
.x69_c00027{left:349.080000px;}
.xa6_c00027{left:351.000000px;}
.x77_c00027{left:354.420000px;}
.xaf_c00027{left:355.920000px;}
.xc5_c00027{left:358.500000px;}
.xcb_c00027{left:360.000000px;}
.x85_c00027{left:361.080000px;}
.x75_c00027{left:363.000000px;}
.x48_c00027{left:365.580000px;}
.x3b_c00027{left:367.080000px;}
.x23_c00027{left:369.000000px;}
.x15_c00027{left:372.000000px;}
.x8_c00027{left:376.500000px;}
.x9f_c00027{left:381.000000px;}
.x5c_c00027{left:382.500000px;}
.x59_c00027{left:383.580000px;}
.x86_c00027{left:385.500000px;}
.x78_c00027{left:387.420000px;}
.x96_c00027{left:390.000000px;}
.x1_c00027{left:394.500000px;}
.x8d_c00027{left:400.500000px;}
.x16_c00027{left:402.000000px;}
.xbe_c00027{left:403.500000px;}
.xb8_c00027{left:406.500000px;}
.x52_c00027{left:410.580000px;}
.x6c_c00027{left:412.500000px;}
.xa0_c00027{left:413.580000px;}
.x24_c00027{left:415.500000px;}
.xb0_c00027{left:419.580000px;}
.x6a_c00027{left:423.420000px;}
.xd0_c00027{left:424.500000px;}
.x3c_c00027{left:427.500000px;}
.x7f_c00027{left:430.500000px;}
.x25_c00027{left:432.000000px;}
.x97_c00027{left:436.920000px;}
.x71_c00027{left:439.080000px;}
.x49_c00027{left:440.580000px;}
.x87_c00027{left:442.920000px;}
.x79_c00027{left:445.500000px;}
.x9_c00027{left:447.000000px;}
.xb1_c00027{left:450.420000px;}
.x32_c00027{left:459.420000px;}
.xc6_c00027{left:460.920000px;}
.x5d_c00027{left:462.000000px;}
.x26_c00027{left:463.500000px;}
.x5a_c00027{left:464.580000px;}
.xa7_c00027{left:466.080000px;}
.xa_c00027{left:468.420000px;}
.x17_c00027{left:471.000000px;}
.x27_c00027{left:481.920000px;}
.x6d_c00027{left:483.000000px;}
.xb9_c00027{left:487.500000px;}
.x18_c00027{left:489.855000px;}
.x3d_c00027{left:493.080000px;}
.xbf_c00027{left:495.000000px;}
.x80_c00027{left:498.000000px;}
.x72_c00027{left:499.080000px;}
.xa1_c00027{left:501.000000px;}
.x6e_c00027{left:504.000000px;}
.xb_c00027{left:508.500000px;}
.xb2_c00027{left:511.080000px;}
.xc7_c00027{left:519.000000px;}
.x28_c00027{left:520.920000px;}
.x19_c00027{left:524.580000px;}
.x88_c00027{left:528.000000px;}
.xb3_c00027{left:529.920000px;}
.x81_c00027{left:534.420000px;}
.x7a_c00027{left:535.920000px;}
.x8e_c00027{left:538.500000px;}
.xc_c00027{left:541.500000px;}
.x98_c00027{left:545.580000px;}
.xd1_c00027{left:549.420000px;}
.xa2_c00027{left:550.500000px;}
.x1a_c00027{left:553.500000px;}
.x3e_c00027{left:556.500000px;}
.x53_c00027{left:558.420000px;}
.x82_c00027{left:562.500000px;}
.x33_c00027{left:565.920000px;}
.x1b_c00027{left:568.500000px;}
.x29_c00027{left:570.000000px;}
.xa3_c00027{left:571.500000px;}
.x7b_c00027{left:572.580000px;}
.x8f_c00027{left:574.080000px;}
.x3f_c00027{left:577.920000px;}
.xba_c00027{left:582.000000px;}
.xc0_c00027{left:583.500000px;}
.x2a_c00027{left:586.920000px;}
.xa8_c00027{left:590.580000px;}
.xc8_c00027{left:594.000000px;}
.x1c_c00027{left:595.080000px;}
.x89_c00027{left:601.080000px;}
.x34_c00027{left:603.000000px;}
.x40_c00027{left:604.500000px;}
.xa4_c00027{left:606.420000px;}
.xd_c00027{left:613.500000px;}
.x2b_c00027{left:615.000000px;}
.xc1_c00027{left:619.500000px;}
.x7c_c00027{left:621.000000px;}
.x99_c00027{left:623.355000px;}
.x35_c00027{left:630.420000px;}
.x1d_c00027{left:631.500000px;}
.x90_c00027{left:633.000000px;}
.x83_c00027{left:634.080000px;}
.x7d_c00027{left:640.080000px;}
.x2c_c00027{left:643.080000px;}
.xe_c00027{left:644.580000px;}
.xa9_c00027{left:652.080000px;}
.x84_c00027{left:654.420000px;}
.xbb_c00027{left:658.500000px;}
.x9a_c00027{left:660.000000px;}
.x7e_c00027{left:661.080000px;}
.x2d_c00027{left:663.420000px;}
.x8a_c00027{left:666.420000px;}
.xf_c00027{left:667.500000px;}
.x41_c00027{left:668.580000px;}
.x91_c00027{left:670.500000px;}
.xc9_c00027{left:671.580000px;}
.x6f_c00027{left:673.500000px;}
.x9b_c00027{left:676.500000px;}
.x2e_c00027{left:677.580000px;}
.x1e_c00027{left:684.000000px;}
.xaa_c00027{left:685.500000px;}
.x42_c00027{left:688.500000px;}
.xb4_c00027{left:689.580000px;}
.x8b_c00027{left:694.920000px;}
.x9c_c00027{left:696.420000px;}
.xc2_c00027{left:703.500000px;}
.xb5_c00027{left:708.420000px;}
.xbc_c00027{left:717.000000px;}
.xc3_c00027{left:723.000000px;}
.x43_c00027{left:724.920000px;}
@media print{
.v0_c00027{vertical-align:0.000000pt;}
.v1_c00027{vertical-align:3.040000pt;}
.ls0_c00027{letter-spacing:0.000000pt;}
.ws0_c00027{word-spacing:-4.558933pt;}
.ws1_c00027{word-spacing:-2.787609pt;}
.ws2_c00027{word-spacing:-0.710400pt;}
.ws3_c00027{word-spacing:0.000000pt;}
.fs8_c00027{font-size:10.560000pt;}
.fs6_c00027{font-size:12.106667pt;}
.fs4_c00027{font-size:16.640000pt;}
.fs0_c00027{font-size:18.133333pt;}
.fs3_c00027{font-size:22.666667pt;}
.fs1_c00027{font-size:25.706667pt;}
.fs5_c00027{font-size:28.746667pt;}
.fs2_c00027{font-size:31.733333pt;}
.fs7_c00027{font-size:34.773333pt;}
.y0_c00027{bottom:0.000000pt;}
.yb9_c00027{bottom:224.360000pt;}
.yb8_c00027{bottom:226.440000pt;}
.ybd_c00027{bottom:227.773333pt;}
.ybb_c00027{bottom:227.973333pt;}
.yba_c00027{bottom:228.360000pt;}
.ybc_c00027{bottom:229.306667pt;}
.yb1_c00027{bottom:243.773333pt;}
.yb7_c00027{bottom:244.733333pt;}
.yb4_c00027{bottom:245.106667pt;}
.yb2_c00027{bottom:245.306667pt;}
.yaf_c00027{bottom:245.693333pt;}
.yb3_c00027{bottom:245.893333pt;}
.yb0_c00027{bottom:246.640000pt;}
.yb6_c00027{bottom:247.026667pt;}
.yb5_c00027{bottom:247.973333pt;}
.yaa_c00027{bottom:261.106667pt;}
.yae_c00027{bottom:262.066667pt;}
.yad_c00027{bottom:262.440000pt;}
.ya9_c00027{bottom:263.026667pt;}
.yab_c00027{bottom:263.226667pt;}
.yac_c00027{bottom:264.360000pt;}
.ya6_c00027{bottom:279.773333pt;}
.ya3_c00027{bottom:280.360000pt;}
.ya8_c00027{bottom:280.560000pt;}
.ya7_c00027{bottom:281.306667pt;}
.ya4_c00027{bottom:281.693333pt;}
.ya5_c00027{bottom:281.893333pt;}
.ya2_c00027{bottom:296.733333pt;}
.y9d_c00027{bottom:297.106667pt;}
.y9c_c00027{bottom:297.693333pt;}
.y9e_c00027{bottom:297.893333pt;}
.ya1_c00027{bottom:298.066667pt;}
.y9f_c00027{bottom:298.640000pt;}
.ya0_c00027{bottom:299.026667pt;}
.y9b_c00027{bottom:313.306667pt;}
.y97_c00027{bottom:315.226667pt;}
.y98_c00027{bottom:315.973333pt;}
.y96_c00027{bottom:316.360000pt;}
.y9a_c00027{bottom:316.560000pt;}
.y99_c00027{bottom:317.306667pt;}
.y95_c00027{bottom:343.026667pt;}
.y94_c00027{bottom:366.440000pt;}
.y90_c00027{bottom:385.106667pt;}
.y92_c00027{bottom:385.306667pt;}
.y8f_c00027{bottom:385.693333pt;}
.y93_c00027{bottom:385.893333pt;}
.y91_c00027{bottom:387.026667pt;}
.y8a_c00027{bottom:399.773333pt;}
.y8c_c00027{bottom:402.066667pt;}
.y8d_c00027{bottom:402.440000pt;}
.y8b_c00027{bottom:403.026667pt;}
.y8e_c00027{bottom:404.360000pt;}
.y88_c00027{bottom:417.693333pt;}
.y87_c00027{bottom:419.400000pt;}
.y84_c00027{bottom:419.773333pt;}
.y86_c00027{bottom:420.560000pt;}
.y89_c00027{bottom:420.933333pt;}
.y85_c00027{bottom:421.693333pt;}
.y81_c00027{bottom:436.360000pt;}
.y83_c00027{bottom:436.733333pt;}
.y82_c00027{bottom:438.640000pt;}
.y80_c00027{bottom:439.026667pt;}
.y7e_c00027{bottom:453.106667pt;}
.y7f_c00027{bottom:454.440000pt;}
.y7b_c00027{bottom:471.773333pt;}
.y7a_c00027{bottom:473.693333pt;}
.y7d_c00027{bottom:473.893333pt;}
.y7c_c00027{bottom:475.026667pt;}
.y74_c00027{bottom:487.800000pt;}
.y72_c00027{bottom:488.160000pt;}
.y76_c00027{bottom:488.360000pt;}
.y73_c00027{bottom:489.106667pt;}
.y79_c00027{bottom:489.306667pt;}
.y78_c00027{bottom:490.440000pt;}
.y75_c00027{bottom:491.026667pt;}
.y77_c00027{bottom:491.973333pt;}
.y6f_c00027{bottom:506.440000pt;}
.y6e_c00027{bottom:507.400000pt;}
.y71_c00027{bottom:507.773333pt;}
.y6c_c00027{bottom:508.360000pt;}
.y6b_c00027{bottom:508.560000pt;}
.y6d_c00027{bottom:509.306667pt;}
.y70_c00027{bottom:509.693333pt;}
.y6a_c00027{bottom:523.026667pt;}
.y67_c00027{bottom:523.773333pt;}
.y69_c00027{bottom:525.106667pt;}
.y66_c00027{bottom:525.693333pt;}
.y65_c00027{bottom:525.893333pt;}
.y64_c00027{bottom:526.640000pt;}
.y68_c00027{bottom:527.026667pt;}
.y63_c00027{bottom:548.360000pt;}
.y62_c00027{bottom:549.306667pt;}
.y61_c00027{bottom:561.693333pt;}
.y60_c00027{bottom:563.600000pt;}
.y5f_c00027{bottom:574.066667pt;}
.y5c_c00027{bottom:575.026667pt;}
.y5d_c00027{bottom:576.173333pt;}
.y5e_c00027{bottom:576.933333pt;}
.y5b_c00027{bottom:587.400000pt;}
.y5a_c00027{bottom:589.306667pt;}
.y59_c00027{bottom:600.733333pt;}
.y57_c00027{bottom:601.893333pt;}
.y58_c00027{bottom:602.640000pt;}
.y56_c00027{bottom:603.600000pt;}
.y53_c00027{bottom:614.066667pt;}
.y55_c00027{bottom:614.266667pt;}
.y54_c00027{bottom:615.973333pt;}
.y50_c00027{bottom:627.026667pt;}
.y51_c00027{bottom:627.400000pt;}
.y52_c00027{bottom:627.600000pt;}
.y4e_c00027{bottom:629.306667pt;}
.y4f_c00027{bottom:629.506667pt;}
.y4c_c00027{bottom:640.360000pt;}
.y4d_c00027{bottom:640.733333pt;}
.y4b_c00027{bottom:642.266667pt;}
.y4a_c00027{bottom:663.773333pt;}
.y49_c00027{bottom:665.106667pt;}
.y46_c00027{bottom:665.693333pt;}
.y47_c00027{bottom:665.893333pt;}
.y48_c00027{bottom:667.026667pt;}
.y45_c00027{bottom:688.733333pt;}
.y44_c00027{bottom:689.506667pt;}
.y43_c00027{bottom:690.266667pt;}
.y40_c00027{bottom:701.693333pt;}
.y41_c00027{bottom:702.066667pt;}
.y42_c00027{bottom:703.026667pt;}
.y3f_c00027{bottom:703.226667pt;}
.y3e_c00027{bottom:703.600000pt;}
.y3b_c00027{bottom:715.026667pt;}
.y3c_c00027{bottom:716.173333pt;}
.y3d_c00027{bottom:716.933333pt;}
.y3a_c00027{bottom:727.400000pt;}
.y39_c00027{bottom:740.733333pt;}
.y38_c00027{bottom:742.640000pt;}
.y35_c00027{bottom:755.026667pt;}
.y36_c00027{bottom:755.226667pt;}
.y37_c00027{bottom:756.933333pt;}
.y34_c00027{bottom:767.400000pt;}
.y32_c00027{bottom:769.306667pt;}
.y33_c00027{bottom:769.506667pt;}
.y31_c00027{bottom:770.266667pt;}
.y30_c00027{bottom:780.733333pt;}
.y2f_c00027{bottom:782.640000pt;}
.y29_c00027{bottom:792.733333pt;}
.y2d_c00027{bottom:793.693333pt;}
.y2a_c00027{bottom:793.893333pt;}
.y2b_c00027{bottom:794.640000pt;}
.y2c_c00027{bottom:795.226667pt;}
.y2e_c00027{bottom:795.600000pt;}
.y28_c00027{bottom:806.066667pt;}
.y27_c00027{bottom:820.360000pt;}
.y26_c00027{bottom:821.506667pt;}
.y25_c00027{bottom:822.266667pt;}
.y23_c00027{bottom:832.733333pt;}
.y24_c00027{bottom:832.933333pt;}
.y22_c00027{bottom:833.693333pt;}
.y21_c00027{bottom:834.840000pt;}
.y20_c00027{bottom:835.600000pt;}
.y1f_c00027{bottom:859.026667pt;}
.y1a_c00027{bottom:874.266667pt;}
.y1e_c00027{bottom:874.440000pt;}
.y1b_c00027{bottom:875.026667pt;}
.y1c_c00027{bottom:875.226667pt;}
.y1d_c00027{bottom:876.360000pt;}
.y11_c00027{bottom:889.693333pt;}
.y17_c00027{bottom:890.640000pt;}
.y16_c00027{bottom:891.026667pt;}
.y12_c00027{bottom:891.773333pt;}
.y19_c00027{bottom:892.360000pt;}
.y14_c00027{bottom:892.560000pt;}
.y15_c00027{bottom:892.733333pt;}
.y18_c00027{bottom:893.306667pt;}
.y13_c00027{bottom:893.693333pt;}
.yf_c00027{bottom:909.106667pt;}
.yb_c00027{bottom:909.693333pt;}
.y10_c00027{bottom:909.893333pt;}
.yd_c00027{bottom:910.066667pt;}
.yc_c00027{bottom:911.026667pt;}
.ye_c00027{bottom:911.973333pt;}
.y9_c00027{bottom:924.733333pt;}
.y5_c00027{bottom:925.106667pt;}
.y8_c00027{bottom:926.440000pt;}
.ya_c00027{bottom:927.026667pt;}
.y6_c00027{bottom:928.360000pt;}
.y7_c00027{bottom:928.560000pt;}
.y3_c00027{bottom:943.773333pt;}
.y2_c00027{bottom:945.693333pt;}
.y4_c00027{bottom:946.640000pt;}
.y1_c00027{bottom:979.600000pt;}
.h9_c00027{height:12.988594pt;}
.h7_c00027{height:14.890964pt;}
.h5_c00027{height:20.466875pt;}
.h1_c00027{height:22.303646pt;}
.h4_c00027{height:27.879557pt;}
.h2_c00027{height:31.618698pt;}
.ha_c00027{height:34.658698pt;}
.h6_c00027{height:35.357839pt;}
.h3_c00027{height:39.031380pt;}
.h8_c00027{height:42.770521pt;}
.h0_c00027{height:1186.666667pt;}
.w0_c00027{width:782.666667pt;}
.x0_c00027{left:0.000000pt;}
.x92_c00027{left:135.040000pt;}
.x3_c00027{left:136.000000pt;}
.x2_c00027{left:137.333333pt;}
.x36_c00027{left:149.333333pt;}
.x44_c00027{left:153.706667pt;}
.x10_c00027{left:156.373333pt;}
.xb6_c00027{left:158.666667pt;}
.xab_c00027{left:160.000000pt;}
.x9d_c00027{left:167.040000pt;}
.xca_c00027{left:170.666667pt;}
.x61_c00027{left:173.333333pt;}
.x1f_c00027{left:174.666667pt;}
.x37_c00027{left:175.626667pt;}
.x45_c00027{left:176.960000pt;}
.xc4_c00027{left:179.040000pt;}
.xcc_c00027{left:180.000000pt;}
.xac_c00027{left:182.666667pt;}
.x4_c00027{left:183.626667pt;}
.x8c_c00027{left:187.626667pt;}
.x38_c00027{left:196.000000pt;}
.x93_c00027{left:196.960000pt;}
.x11_c00027{left:201.333333pt;}
.xcd_c00027{left:204.373333pt;}
.x4a_c00027{left:205.333333pt;}
.xa5_c00027{left:206.666667pt;}
.x56_c00027{left:207.626667pt;}
.x5f_c00027{left:208.960000pt;}
.x39_c00027{left:210.666667pt;}
.x9e_c00027{left:212.000000pt;}
.x20_c00027{left:213.333333pt;}
.x5e_c00027{left:214.293333pt;}
.x4d_c00027{left:215.626667pt;}
.x4f_c00027{left:217.333333pt;}
.x67_c00027{left:218.666667pt;}
.x4b_c00027{left:221.333333pt;}
.x62_c00027{left:222.666667pt;}
.x46_c00027{left:224.000000pt;}
.x70_c00027{left:225.706667pt;}
.x94_c00027{left:227.040000pt;}
.x12_c00027{left:228.373333pt;}
.x5_c00027{left:231.040000pt;}
.x50_c00027{left:232.000000pt;}
.x6b_c00027{left:233.333333pt;}
.x68_c00027{left:234.666667pt;}
.x65_c00027{left:236.000000pt;}
.x2f_c00027{left:238.666667pt;}
.x21_c00027{left:241.333333pt;}
.x73_c00027{left:244.000000pt;}
.xce_c00027{left:249.706667pt;}
.x66_c00027{left:251.626667pt;}
.x57_c00027{left:253.333333pt;}
.x30_c00027{left:256.373333pt;}
.x13_c00027{left:257.333333pt;}
.x63_c00027{left:258.666667pt;}
.xb7_c00027{left:260.000000pt;}
.x60_c00027{left:261.333333pt;}
.x6_c00027{left:263.040000pt;}
.x3a_c00027{left:265.706667pt;}
.x76_c00027{left:266.666667pt;}
.x54_c00027{left:268.000000pt;}
.x58_c00027{left:268.960000pt;}
.xcf_c00027{left:271.240000pt;}
.x4e_c00027{left:273.333333pt;}
.xad_c00027{left:274.666667pt;}
.x31_c00027{left:280.000000pt;}
.x22_c00027{left:282.093333pt;}
.x4c_c00027{left:283.626667pt;}
.x7_c00027{left:286.666667pt;}
.x14_c00027{left:289.706667pt;}
.xae_c00027{left:292.373333pt;}
.x95_c00027{left:295.626667pt;}
.xbd_c00027{left:299.040000pt;}
.x74_c00027{left:300.960000pt;}
.x5b_c00027{left:302.293333pt;}
.x55_c00027{left:304.000000pt;}
.x51_c00027{left:305.706667pt;}
.x64_c00027{left:307.040000pt;}
.x47_c00027{left:309.333333pt;}
.x69_c00027{left:310.293333pt;}
.xa6_c00027{left:312.000000pt;}
.x77_c00027{left:315.040000pt;}
.xaf_c00027{left:316.373333pt;}
.xc5_c00027{left:318.666667pt;}
.xcb_c00027{left:320.000000pt;}
.x85_c00027{left:320.960000pt;}
.x75_c00027{left:322.666667pt;}
.x48_c00027{left:324.960000pt;}
.x3b_c00027{left:326.293333pt;}
.x23_c00027{left:328.000000pt;}
.x15_c00027{left:330.666667pt;}
.x8_c00027{left:334.666667pt;}
.x9f_c00027{left:338.666667pt;}
.x5c_c00027{left:340.000000pt;}
.x59_c00027{left:340.960000pt;}
.x86_c00027{left:342.666667pt;}
.x78_c00027{left:344.373333pt;}
.x96_c00027{left:346.666667pt;}
.x1_c00027{left:350.666667pt;}
.x8d_c00027{left:356.000000pt;}
.x16_c00027{left:357.333333pt;}
.xbe_c00027{left:358.666667pt;}
.xb8_c00027{left:361.333333pt;}
.x52_c00027{left:364.960000pt;}
.x6c_c00027{left:366.666667pt;}
.xa0_c00027{left:367.626667pt;}
.x24_c00027{left:369.333333pt;}
.xb0_c00027{left:372.960000pt;}
.x6a_c00027{left:376.373333pt;}
.xd0_c00027{left:377.333333pt;}
.x3c_c00027{left:380.000000pt;}
.x7f_c00027{left:382.666667pt;}
.x25_c00027{left:384.000000pt;}
.x97_c00027{left:388.373333pt;}
.x71_c00027{left:390.293333pt;}
.x49_c00027{left:391.626667pt;}
.x87_c00027{left:393.706667pt;}
.x79_c00027{left:396.000000pt;}
.x9_c00027{left:397.333333pt;}
.xb1_c00027{left:400.373333pt;}
.x32_c00027{left:408.373333pt;}
.xc6_c00027{left:409.706667pt;}
.x5d_c00027{left:410.666667pt;}
.x26_c00027{left:412.000000pt;}
.x5a_c00027{left:412.960000pt;}
.xa7_c00027{left:414.293333pt;}
.xa_c00027{left:416.373333pt;}
.x17_c00027{left:418.666667pt;}
.x27_c00027{left:428.373333pt;}
.x6d_c00027{left:429.333333pt;}
.xb9_c00027{left:433.333333pt;}
.x18_c00027{left:435.426667pt;}
.x3d_c00027{left:438.293333pt;}
.xbf_c00027{left:440.000000pt;}
.x80_c00027{left:442.666667pt;}
.x72_c00027{left:443.626667pt;}
.xa1_c00027{left:445.333333pt;}
.x6e_c00027{left:448.000000pt;}
.xb_c00027{left:452.000000pt;}
.xb2_c00027{left:454.293333pt;}
.xc7_c00027{left:461.333333pt;}
.x28_c00027{left:463.040000pt;}
.x19_c00027{left:466.293333pt;}
.x88_c00027{left:469.333333pt;}
.xb3_c00027{left:471.040000pt;}
.x81_c00027{left:475.040000pt;}
.x7a_c00027{left:476.373333pt;}
.x8e_c00027{left:478.666667pt;}
.xc_c00027{left:481.333333pt;}
.x98_c00027{left:484.960000pt;}
.xd1_c00027{left:488.373333pt;}
.xa2_c00027{left:489.333333pt;}
.x1a_c00027{left:492.000000pt;}
.x3e_c00027{left:494.666667pt;}
.x53_c00027{left:496.373333pt;}
.x82_c00027{left:500.000000pt;}
.x33_c00027{left:503.040000pt;}
.x1b_c00027{left:505.333333pt;}
.x29_c00027{left:506.666667pt;}
.xa3_c00027{left:508.000000pt;}
.x7b_c00027{left:508.960000pt;}
.x8f_c00027{left:510.293333pt;}
.x3f_c00027{left:513.706667pt;}
.xba_c00027{left:517.333333pt;}
.xc0_c00027{left:518.666667pt;}
.x2a_c00027{left:521.706667pt;}
.xa8_c00027{left:524.960000pt;}
.xc8_c00027{left:528.000000pt;}
.x1c_c00027{left:528.960000pt;}
.x89_c00027{left:534.293333pt;}
.x34_c00027{left:536.000000pt;}
.x40_c00027{left:537.333333pt;}
.xa4_c00027{left:539.040000pt;}
.xd_c00027{left:545.333333pt;}
.x2b_c00027{left:546.666667pt;}
.xc1_c00027{left:550.666667pt;}
.x7c_c00027{left:552.000000pt;}
.x99_c00027{left:554.093333pt;}
.x35_c00027{left:560.373333pt;}
.x1d_c00027{left:561.333333pt;}
.x90_c00027{left:562.666667pt;}
.x83_c00027{left:563.626667pt;}
.x7d_c00027{left:568.960000pt;}
.x2c_c00027{left:571.626667pt;}
.xe_c00027{left:572.960000pt;}
.xa9_c00027{left:579.626667pt;}
.x84_c00027{left:581.706667pt;}
.xbb_c00027{left:585.333333pt;}
.x9a_c00027{left:586.666667pt;}
.x7e_c00027{left:587.626667pt;}
.x2d_c00027{left:589.706667pt;}
.x8a_c00027{left:592.373333pt;}
.xf_c00027{left:593.333333pt;}
.x41_c00027{left:594.293333pt;}
.x91_c00027{left:596.000000pt;}
.xc9_c00027{left:596.960000pt;}
.x6f_c00027{left:598.666667pt;}
.x9b_c00027{left:601.333333pt;}
.x2e_c00027{left:602.293333pt;}
.x1e_c00027{left:608.000000pt;}
.xaa_c00027{left:609.333333pt;}
.x42_c00027{left:612.000000pt;}
.xb4_c00027{left:612.960000pt;}
.x8b_c00027{left:617.706667pt;}
.x9c_c00027{left:619.040000pt;}
.xc2_c00027{left:625.333333pt;}
.xb5_c00027{left:629.706667pt;}
.xbc_c00027{left:637.333333pt;}
.xc3_c00027{left:642.666667pt;}
.x43_c00027{left:644.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_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_6891e2533454f24275074c57.woff2')format("woff");}.ff1_c00028{font-family:ff1_c00028;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5f_c00028{transform:matrix(0.314706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314706,0.000000,0.000000,0.250000,0,0);}
.m74_c00028{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.m8e_c00028{transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);}
.m7e_c00028{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.mb1_c00028{transform:matrix(0.364264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364264,0.000000,0.000000,0.250000,0,0);}
.m1e_c00028{transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);}
.m8b_c00028{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m6c_c00028{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m86_c00028{transform:matrix(0.369887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369887,0.000000,0.000000,0.250000,0,0);}
.m19_c00028{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m22_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);}
.m78_c00028{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m1b_c00028{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m9e_c00028{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.md2_c00028{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m5a_c00028{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.mca_c00028{transform:matrix(0.384874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384874,0.000000,0.000000,0.250000,0,0);}
.ma1_c00028{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mb3_c00028{transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);}
.m37_c00028{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.mea_c00028{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m61_c00028{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.mc9_c00028{transform:matrix(0.394939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394939,0.000000,0.000000,0.250000,0,0);}
.m4e_c00028{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.mad_c00028{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m27_c00028{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m26_c00028{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m64_c00028{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m40_c00028{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.me6_c00028{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.me4_c00028{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m57_c00028{transform:matrix(0.406058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406058,0.000000,0.000000,0.250000,0,0);}
.m82_c00028{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mf1_c00028{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.mf4_c00028{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.mbe_c00028{transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);}
.m54_c00028{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.me8_c00028{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m36_c00028{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.m55_c00028{transform:matrix(0.412577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412577,0.000000,0.000000,0.250000,0,0);}
.m5d_c00028{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.med_c00028{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m97_c00028{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.ma0_c00028{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m56_c00028{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m6f_c00028{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m9b_c00028{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.ma7_c00028{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.mc0_c00028{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.mdc_c00028{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m4f_c00028{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m10_c00028{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m2b_c00028{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m68_c00028{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.mb9_c00028{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m33_c00028{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.md8_c00028{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.m1a_c00028{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.mc5_c00028{transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);}
.mb6_c00028{transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);}
.m4d_c00028{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.meb_c00028{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m9c_c00028{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m58_c00028{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m7f_c00028{transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);}
.m67_c00028{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.me9_c00028{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.md3_c00028{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m50_c00028{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.mb8_c00028{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.mda_c00028{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m79_c00028{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.md9_c00028{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m35_c00028{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m3b_c00028{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m81_c00028{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.mee_c00028{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.m21_c00028{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.mac_c00028{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m3a_c00028{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.mcd_c00028{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.me3_c00028{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m5c_c00028{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mbd_c00028{transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);}
.m8c_c00028{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m8f_c00028{transform:matrix(0.444805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444805,0.000000,0.000000,0.250000,0,0);}
.m96_c00028{transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);}
.m29_c00028{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.mf2_c00028{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m98_c00028{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.m38_c00028{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.ma9_c00028{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.mbb_c00028{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.md5_c00028{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mef_c00028{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.ma_c00028{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m25_c00028{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m9d_c00028{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m16_c00028{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m71_c00028{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m7d_c00028{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.m60_c00028{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.me1_c00028{transform:matrix(0.461345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461345,0.000000,0.000000,0.250000,0,0);}
.mba_c00028{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00028{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m85_c00028{transform:matrix(0.465546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465546,0.000000,0.000000,0.250000,0,0);}
.mb7_c00028{transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);}
.m7b_c00028{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.m24_c00028{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.m87_c00028{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.md6_c00028{transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);}
.m47_c00028{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m6_c00028{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.mab_c00028{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mc2_c00028{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.me_c00028{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mc7_c00028{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m52_c00028{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m70_c00028{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m91_c00028{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m53_c00028{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.maa_c00028{transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);}
.m3e_c00028{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mdd_c00028{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m6b_c00028{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m5_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);}
.m66_c00028{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m3c_c00028{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.me7_c00028{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m48_c00028{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m80_c00028{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.ma4_c00028{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mdb_c00028{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m73_c00028{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m72_c00028{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m93_c00028{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m1f_c00028{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m15_c00028{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m45_c00028{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m28_c00028{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m14_c00028{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m95_c00028{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m92_c00028{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m23_c00028{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mae_c00028{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m5b_c00028{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m6e_c00028{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m11_c00028{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m39_c00028{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mc1_c00028{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m77_c00028{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m9f_c00028{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m99_c00028{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m4_c00028{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mb_c00028{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mb4_c00028{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m13_c00028{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mc_c00028{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mb2_c00028{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.md7_c00028{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.ma6_c00028{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m2e_c00028{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m75_c00028{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m6a_c00028{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.ma5_c00028{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.md4_c00028{transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);}
.m94_c00028{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mc8_c00028{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.mbc_c00028{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.mbf_c00028{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mec_c00028{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m3d_c00028{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.me0_c00028{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m7a_c00028{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m90_c00028{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m8_c00028{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mb0_c00028{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m4a_c00028{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mc3_c00028{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mdf_c00028{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m17_c00028{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m62_c00028{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.md1_c00028{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m12_c00028{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m34_c00028{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m2a_c00028{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m63_c00028{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m30_c00028{transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);}
.mc6_c00028{transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);}
.m43_c00028{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mce_c00028{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.me5_c00028{transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);}
.m88_c00028{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mcf_c00028{transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);}
.m7_c00028{transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);}
.m9_c00028{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m1d_c00028{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m7c_c00028{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m9a_c00028{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m51_c00028{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m69_c00028{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m2f_c00028{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m46_c00028{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m59_c00028{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mcc_c00028{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m3_c00028{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m2c_c00028{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m89_c00028{transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);}
.m41_c00028{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m32_c00028{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m1c_c00028{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m18_c00028{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mf3_c00028{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.m0_c00028{transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);}
.m83_c00028{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_c00028{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mde_c00028{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.md0_c00028{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m65_c00028{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.mf0_c00028{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m6d_c00028{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m84_c00028{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mc4_c00028{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.mf_c00028{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.ma2_c00028{transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);}
.mb5_c00028{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.ma3_c00028{transform:matrix(0.696324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696324,0.000000,0.000000,0.250000,0,0);}
.maf_c00028{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m49_c00028{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m3f_c00028{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m44_c00028{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m42_c00028{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m31_c00028{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.md_c00028{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m4c_c00028{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.ma8_c00028{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m4b_c00028{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.m2d_c00028{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m5e_c00028{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.me2_c00028{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m20_c00028{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m1_c00028{transform:matrix(0.849359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.849359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.849359,0.000000,0.000000,0.250000,0,0);}
.m8a_c00028{transform:matrix(1.166912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.166912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.166912,0.000000,0.000000,0.250000,0,0);}
.m2_c00028{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m76_c00028{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.v1_c00028{vertical-align:-18.000000px;}
.v0_c00028{vertical-align:0.000000px;}
.ls1_c00028{letter-spacing:0.000000px;}
.ls0_c00028{letter-spacing:3.301624px;}
.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:-3.645857px;}
.ws1_c00028{word-spacing:-0.302710px;}
.ws2_c00028{word-spacing:0.000000px;}
.fc0_c00028{color:transparent;}
.fs8_c00028{font-size:3.420000px;}
.fs2_c00028{font-size:13.620000px;}
.fs1_c00028{font-size:18.720000px;}
.fs0_c00028{font-size:20.400000px;}
.fs5_c00028{font-size:25.500000px;}
.fs3_c00028{font-size:28.920000px;}
.fs4_c00028{font-size:32.340000px;}
.fs6_c00028{font-size:35.700000px;}
.fs7_c00028{font-size:39.120000px;}
.fs9_c00028{font-size:42.540000px;}
.y0_c00028{bottom:0.000000px;}
.y3_c00028{bottom:229.695000px;}
.yfd_c00028{bottom:253.905000px;}
.yf9_c00028{bottom:254.325000px;}
.yf8_c00028{bottom:254.745000px;}
.yfa_c00028{bottom:255.405000px;}
.yfb_c00028{bottom:256.470000px;}
.yf7_c00028{bottom:256.905000px;}
.yfc_c00028{bottom:257.970000px;}
.yf6_c00028{bottom:259.245000px;}
.yf1_c00028{bottom:272.745000px;}
.yf2_c00028{bottom:273.825000px;}
.yf0_c00028{bottom:274.905000px;}
.yf3_c00028{bottom:275.325000px;}
.yef_c00028{bottom:275.745000px;}
.yf4_c00028{bottom:276.405000px;}
.yee_c00028{bottom:277.245000px;}
.yf5_c00028{bottom:277.470000px;}
.yed_c00028{bottom:280.905000px;}
.yeb_c00028{bottom:292.245000px;}
.yec_c00028{bottom:293.745000px;}
.yea_c00028{bottom:294.405000px;}
.ye9_c00028{bottom:295.905000px;}
.ye8_c00028{bottom:298.245000px;}
.ye4_c00028{bottom:311.745000px;}
.ye3_c00028{bottom:312.825000px;}
.ye6_c00028{bottom:313.245000px;}
.ye2_c00028{bottom:313.905000px;}
.ye5_c00028{bottom:314.130000px;}
.ye1_c00028{bottom:315.405000px;}
.ye7_c00028{bottom:315.630000px;}
.ye0_c00028{bottom:316.905000px;}
.ydb_c00028{bottom:330.405000px;}
.ydc_c00028{bottom:331.245000px;}
.yd9_c00028{bottom:332.745000px;}
.yda_c00028{bottom:333.405000px;}
.yd8_c00028{bottom:334.245000px;}
.ydf_c00028{bottom:334.470000px;}
.yde_c00028{bottom:334.905000px;}
.ydd_c00028{bottom:335.970000px;}
.yd4_c00028{bottom:350.745000px;}
.yd7_c00028{bottom:351.405000px;}
.yd6_c00028{bottom:352.245000px;}
.yd1_c00028{bottom:352.905000px;}
.yd5_c00028{bottom:353.325000px;}
.yd2_c00028{bottom:353.970000px;}
.yd3_c00028{bottom:354.405000px;}
.yd0_c00028{bottom:354.825000px;}
.ycf_c00028{bottom:357.825000px;}
.ycd_c00028{bottom:371.745000px;}
.ycc_c00028{bottom:373.470000px;}
.ycb_c00028{bottom:373.905000px;}
.yce_c00028{bottom:374.970000px;}
.yca_c00028{bottom:375.405000px;}
.yc9_c00028{bottom:376.245000px;}
.yc6_c00028{bottom:390.825000px;}
.yc5_c00028{bottom:392.970000px;}
.yc8_c00028{bottom:393.405000px;}
.yc7_c00028{bottom:394.470000px;}
.yc4_c00028{bottom:395.130000px;}
.yc3_c00028{bottom:398.970000px;}
.ybd_c00028{bottom:410.325000px;}
.ybe_c00028{bottom:410.745000px;}
.ybc_c00028{bottom:410.970000px;}
.yc0_c00028{bottom:411.825000px;}
.ybb_c00028{bottom:412.680000px;}
.ybf_c00028{bottom:412.905000px;}
.yc2_c00028{bottom:413.130000px;}
.yc1_c00028{bottom:413.970000px;}
.yba_c00028{bottom:432.405000px;}
.yb8_c00028{bottom:432.825000px;}
.yb9_c00028{bottom:433.905000px;}
.yb7_c00028{bottom:437.970000px;}
.yb6_c00028{bottom:449.745000px;}
.yb4_c00028{bottom:450.825000px;}
.yb5_c00028{bottom:451.050000px;}
.yb3_c00028{bottom:451.905000px;}
.yb2_c00028{bottom:453.405000px;}
.yb1_c00028{bottom:454.905000px;}
.yaf_c00028{bottom:470.745000px;}
.yb0_c00028{bottom:471.825000px;}
.yae_c00028{bottom:472.905000px;}
.yad_c00028{bottom:474.825000px;}
.yac_c00028{bottom:489.825000px;}
.yab_c00028{bottom:490.245000px;}
.yaa_c00028{bottom:491.325000px;}
.ya8_c00028{bottom:491.970000px;}
.ya9_c00028{bottom:492.405000px;}
.ya7_c00028{bottom:492.825000px;}
.ya6_c00028{bottom:493.905000px;}
.ya0_c00028{bottom:507.405000px;}
.ya1_c00028{bottom:508.245000px;}
.ya5_c00028{bottom:509.745000px;}
.ya3_c00028{bottom:510.630000px;}
.ya4_c00028{bottom:511.470000px;}
.y9d_c00028{bottom:511.680000px;}
.y9f_c00028{bottom:511.905000px;}
.y9e_c00028{bottom:512.130000px;}
.ya2_c00028{bottom:512.970000px;}
.y99_c00028{bottom:528.405000px;}
.y9c_c00028{bottom:529.245000px;}
.y9a_c00028{bottom:531.405000px;}
.y9b_c00028{bottom:531.630000px;}
.y98_c00028{bottom:533.325000px;}
.y95_c00028{bottom:548.745000px;}
.y96_c00028{bottom:549.825000px;}
.y97_c00028{bottom:550.905000px;}
.y94_c00028{bottom:551.130000px;}
.y93_c00028{bottom:553.245000px;}
.y90_c00028{bottom:569.745000px;}
.y92_c00028{bottom:570.405000px;}
.y91_c00028{bottom:571.905000px;}
.y8f_c00028{bottom:573.405000px;}
.y8e_c00028{bottom:589.905000px;}
.y8c_c00028{bottom:590.550000px;}
.y8d_c00028{bottom:591.405000px;}
.y8b_c00028{bottom:592.050000px;}
.y89_c00028{bottom:606.405000px;}
.y87_c00028{bottom:607.905000px;}
.y88_c00028{bottom:608.745000px;}
.y8a_c00028{bottom:610.905000px;}
.y86_c00028{bottom:611.325000px;}
.y84_c00028{bottom:628.245000px;}
.y85_c00028{bottom:629.325000px;}
.y83_c00028{bottom:630.405000px;}
.y82_c00028{bottom:630.825000px;}
.y81_c00028{bottom:646.905000px;}
.y80_c00028{bottom:647.745000px;}
.y7e_c00028{bottom:649.905000px;}
.y7f_c00028{bottom:650.970000px;}
.y7d_c00028{bottom:651.405000px;}
.y7c_c00028{bottom:652.905000px;}
.y7b_c00028{bottom:666.405000px;}
.y79_c00028{bottom:667.245000px;}
.y78_c00028{bottom:669.405000px;}
.y7a_c00028{bottom:669.630000px;}
.y77_c00028{bottom:669.825000px;}
.y72_c00028{bottom:685.905000px;}
.y71_c00028{bottom:686.745000px;}
.y70_c00028{bottom:686.970000px;}
.y76_c00028{bottom:687.180000px;}
.y74_c00028{bottom:687.405000px;}
.y73_c00028{bottom:688.905000px;}
.y6e_c00028{bottom:689.745000px;}
.y75_c00028{bottom:690.405000px;}
.y6f_c00028{bottom:690.420000px;}
.y6d_c00028{bottom:691.050000px;}
.y68_c00028{bottom:705.405000px;}
.y6a_c00028{bottom:706.245000px;}
.y67_c00028{bottom:706.680000px;}
.y6c_c00028{bottom:707.745000px;}
.y69_c00028{bottom:708.405000px;}
.y6b_c00028{bottom:709.470000px;}
.y63_c00028{bottom:725.745000px;}
.y65_c00028{bottom:727.050000px;}
.y60_c00028{bottom:727.245000px;}
.y61_c00028{bottom:727.905000px;}
.y66_c00028{bottom:728.130000px;}
.y62_c00028{bottom:728.970000px;}
.y64_c00028{bottom:729.420000px;}
.y5f_c00028{bottom:730.905000px;}
.y59_c00028{bottom:745.245000px;}
.y5c_c00028{bottom:745.905000px;}
.y58_c00028{bottom:746.745000px;}
.y5a_c00028{bottom:747.405000px;}
.y5b_c00028{bottom:747.630000px;}
.y5e_c00028{bottom:748.905000px;}
.y5d_c00028{bottom:748.920000px;}
.y57_c00028{bottom:751.470000px;}
.y56_c00028{bottom:763.905000px;}
.y55_c00028{bottom:765.405000px;}
.y53_c00028{bottom:766.245000px;}
.y52_c00028{bottom:766.905000px;}
.y50_c00028{bottom:767.325000px;}
.y51_c00028{bottom:768.405000px;}
.y54_c00028{bottom:768.420000px;}
.y4f_c00028{bottom:770.325000px;}
.y4e_c00028{bottom:785.745000px;}
.y4c_c00028{bottom:787.470000px;}
.y4d_c00028{bottom:787.905000px;}
.y4b_c00028{bottom:789.405000px;}
.y49_c00028{bottom:803.970000px;}
.y48_c00028{bottom:805.245000px;}
.y4a_c00028{bottom:806.130000px;}
.y47_c00028{bottom:807.405000px;}
.y46_c00028{bottom:809.325000px;}
.y42_c00028{bottom:823.905000px;}
.y43_c00028{bottom:824.745000px;}
.y44_c00028{bottom:826.905000px;}
.y45_c00028{bottom:827.130000px;}
.y41_c00028{bottom:829.470000px;}
.y3f_c00028{bottom:841.905000px;}
.y3b_c00028{bottom:844.245000px;}
.y3a_c00028{bottom:844.680000px;}
.y3d_c00028{bottom:845.130000px;}
.y3e_c00028{bottom:845.970000px;}
.y3c_c00028{bottom:846.405000px;}
.y40_c00028{bottom:847.470000px;}
.y38_c00028{bottom:863.745000px;}
.y39_c00028{bottom:864.630000px;}
.y36_c00028{bottom:865.680000px;}
.y37_c00028{bottom:865.905000px;}
.y33_c00028{bottom:882.405000px;}
.y32_c00028{bottom:883.245000px;}
.y30_c00028{bottom:884.745000px;}
.y31_c00028{bottom:885.405000px;}
.y34_c00028{bottom:885.630000px;}
.y35_c00028{bottom:886.905000px;}
.y2f_c00028{bottom:887.325000px;}
.y2c_c00028{bottom:904.905000px;}
.y2e_c00028{bottom:905.130000px;}
.y2d_c00028{bottom:906.405000px;}
.y2a_c00028{bottom:922.245000px;}
.y27_c00028{bottom:923.325000px;}
.y26_c00028{bottom:924.405000px;}
.y2b_c00028{bottom:924.630000px;}
.y29_c00028{bottom:925.470000px;}
.y28_c00028{bottom:925.905000px;}
.y23_c00028{bottom:941.745000px;}
.y24_c00028{bottom:943.245000px;}
.y25_c00028{bottom:944.325000px;}
.y22_c00028{bottom:945.405000px;}
.y21_c00028{bottom:946.905000px;}
.y20_c00028{bottom:962.325000px;}
.y1f_c00028{bottom:964.905000px;}
.y1e_c00028{bottom:966.405000px;}
.y1a_c00028{bottom:982.245000px;}
.y1d_c00028{bottom:982.470000px;}
.y19_c00028{bottom:984.405000px;}
.y1b_c00028{bottom:984.630000px;}
.y1c_c00028{bottom:985.470000px;}
.y18_c00028{bottom:986.325000px;}
.y17_c00028{bottom:1000.905000px;}
.y15_c00028{bottom:1001.745000px;}
.y12_c00028{bottom:1002.180000px;}
.y14_c00028{bottom:1002.825000px;}
.y13_c00028{bottom:1003.905000px;}
.y16_c00028{bottom:1004.970000px;}
.yd_c00028{bottom:1021.245000px;}
.y11_c00028{bottom:1022.325000px;}
.yc_c00028{bottom:1022.745000px;}
.yf_c00028{bottom:1023.405000px;}
.y10_c00028{bottom:1023.630000px;}
.ye_c00028{bottom:1024.470000px;}
.yb_c00028{bottom:1040.745000px;}
.y9_c00028{bottom:1042.245000px;}
.ya_c00028{bottom:1042.905000px;}
.y5_c00028{bottom:1062.405000px;}
.y8_c00028{bottom:1062.630000px;}
.y6_c00028{bottom:1062.825000px;}
.y7_c00028{bottom:1063.470000px;}
.y4_c00028{bottom:1063.905000px;}
.y1_c00028{bottom:1100.550000px;}
.y2_c00028{bottom:1101.630000px;}
.h9_c00028{height:4.206533px;}
.h3_c00028{height:16.752334px;}
.h2_c00028{height:23.025234px;}
.h1_c00028{height:25.091602px;}
.h6_c00028{height:31.364502px;}
.h4_c00028{height:35.571035px;}
.h5_c00028{height:39.777568px;}
.h7_c00028{height:43.910303px;}
.h8_c00028{height:48.116836px;}
.ha_c00028{height:52.323369px;}
.h0_c00028{height:1335.000000px;}
.w0_c00028{width:880.500000px;}
.x0_c00028{left:0.000000px;}
.x49_c00028{left:151.920000px;}
.x4_c00028{left:153.000000px;}
.x1d_c00028{left:154.275000px;}
.xa4_c00028{left:160.500000px;}
.x3f_c00028{left:167.580000px;}
.xc1_c00028{left:169.500000px;}
.x70_c00028{left:172.500000px;}
.x103_c00028{left:174.855000px;}
.x56_c00028{left:178.500000px;}
.xaf_c00028{left:180.645000px;}
.x98_c00028{left:184.275000px;}
.x3c_c00028{left:186.000000px;}
.x5_c00028{left:188.580000px;}
.x5f_c00028{left:190.500000px;}
.x7f_c00028{left:192.000000px;}
.x1e_c00028{left:194.580000px;}
.x40_c00028{left:196.080000px;}
.x11_c00028{left:198.420000px;}
.xa5_c00028{left:199.920000px;}
.x71_c00028{left:201.000000px;}
.xb0_c00028{left:202.080000px;}
.x3d_c00028{left:203.580000px;}
.xe9_c00028{left:205.080000px;}
.x6a_c00028{left:208.920000px;}
.xbf_c00028{left:211.500000px;}
.x8c_c00028{left:212.775000px;}
.xc2_c00028{left:216.000000px;}
.x41_c00028{left:217.080000px;}
.x6_c00028{left:218.145000px;}
.xb7_c00028{left:220.500000px;}
.x33_c00028{left:222.000000px;}
.x9e_c00028{left:223.920000px;}
.x12_c00028{left:226.080000px;}
.x29_c00028{left:228.000000px;}
.x77_c00028{left:229.500000px;}
.xfd_c00028{left:230.580000px;}
.x80_c00028{left:234.420000px;}
.x42_c00028{left:237.000000px;}
.x7_c00028{left:240.000000px;}
.x57_c00028{left:241.920000px;}
.xe4_c00028{left:243.420000px;}
.x3e_c00028{left:247.080000px;}
.xc6_c00028{left:252.420000px;}
.x4a_c00028{left:253.920000px;}
.x8d_c00028{left:256.080000px;}
.xc0_c00028{left:257.580000px;}
.x99_c00028{left:259.500000px;}
.xd3_c00028{left:261.000000px;}
.xfa_c00028{left:262.500000px;}
.x85_c00028{left:263.580000px;}
.x60_c00028{left:265.500000px;}
.x58_c00028{left:268.080000px;}
.xe5_c00028{left:270.000000px;}
.xa6_c00028{left:271.275000px;}
.xe0_c00028{left:272.580000px;}
.x68_c00028{left:274.920000px;}
.xcb_c00028{left:277.500000px;}
.xd4_c00028{left:279.000000px;}
.x4b_c00028{left:280.500000px;}
.xb1_c00028{left:281.580000px;}
.x8e_c00028{left:282.645000px;}
.x6b_c00028{left:284.580000px;}
.x9a_c00028{left:286.080000px;}
.x106_c00028{left:288.000000px;}
.xeb_c00028{left:289.080000px;}
.x2a_c00028{left:291.000000px;}
.x34_c00028{left:292.080000px;}
.xab_c00028{left:294.000000px;}
.x13_c00028{left:297.000000px;}
.xef_c00028{left:298.080000px;}
.x81_c00028{left:300.000000px;}
.xb2_c00028{left:301.920000px;}
.x8f_c00028{left:303.000000px;}
.x43_c00028{left:306.420000px;}
.xed_c00028{left:307.500000px;}
.x9b_c00028{left:308.580000px;}
.x2b_c00028{left:310.920000px;}
.x86_c00028{left:313.080000px;}
.x72_c00028{left:315.000000px;}
.x78_c00028{left:316.080000px;}
.x69_c00028{left:318.000000px;}
.x61_c00028{left:321.000000px;}
.xea_c00028{left:322.500000px;}
.x90_c00028{left:324.420000px;}
.xcc_c00028{left:325.920000px;}
.xb3_c00028{left:329.580000px;}
.xfe_c00028{left:332.580000px;}
.xc3_c00028{left:334.080000px;}
.x8_c00028{left:336.000000px;}
.x59_c00028{left:339.000000px;}
.x4c_c00028{left:340.500000px;}
.xbc_c00028{left:342.000000px;}
.xf2_c00028{left:345.000000px;}
.x1f_c00028{left:346.500000px;}
.xee_c00028{left:348.420000px;}
.x91_c00028{left:353.580000px;}
.xcd_c00028{left:355.500000px;}
.x35_c00028{left:357.000000px;}
.xda_c00028{left:359.580000px;}
.x14_c00028{left:361.080000px;}
.xd5_c00028{left:364.080000px;}
.x9f_c00028{left:366.420000px;}
.xf7_c00028{left:367.500000px;}
.x79_c00028{left:369.420000px;}
.xc7_c00028{left:370.500000px;}
.x44_c00028{left:371.580000px;}
.x4d_c00028{left:375.000000px;}
.x36_c00028{left:378.420000px;}
.x15_c00028{left:380.580000px;}
.x73_c00028{left:382.500000px;}
.x87_c00028{left:386.580000px;}
.xb8_c00028{left:390.420000px;}
.x4e_c00028{left:391.920000px;}
.x1_c00028{left:393.000000px;}
.xe1_c00028{left:396.420000px;}
.x2c_c00028{left:400.080000px;}
.x74_c00028{left:401.580000px;}
.x20_c00028{left:402.855000px;}
.x9_c00028{left:404.580000px;}
.x7a_c00028{left:408.420000px;}
.x5a_c00028{left:410.580000px;}
.x37_c00028{left:412.500000px;}
.xfb_c00028{left:413.580000px;}
.xff_c00028{left:415.080000px;}
.xb9_c00028{left:417.000000px;}
.x4f_c00028{left:418.500000px;}
.x21_c00028{left:420.000000px;}
.xa7_c00028{left:421.920000px;}
.xce_c00028{left:423.000000px;}
.x92_c00028{left:424.080000px;}
.xb4_c00028{left:428.580000px;}
.xa0_c00028{left:433.500000px;}
.xc8_c00028{left:435.000000px;}
.xe6_c00028{left:436.500000px;}
.x45_c00028{left:437.580000px;}
.x22_c00028{left:441.420000px;}
.xf0_c00028{left:442.500000px;}
.xba_c00028{left:445.500000px;}
.xf3_c00028{left:448.080000px;}
.xd6_c00028{left:450.000000px;}
.x16_c00028{left:451.500000px;}
.x6c_c00028{left:453.000000px;}
.xdb_c00028{left:454.500000px;}
.xa8_c00028{left:457.500000px;}
.x46_c00028{left:459.420000px;}
.x104_c00028{left:460.500000px;}
.xa_c00028{left:463.080000px;}
.xfc_c00028{left:465.000000px;}
.x62_c00028{left:466.500000px;}
.x93_c00028{left:468.420000px;}
.x7b_c00028{left:469.500000px;}
.x50_c00028{left:471.000000px;}
.x23_c00028{left:472.500000px;}
.x38_c00028{left:474.000000px;}
.xac_c00028{left:478.500000px;}
.xb_c00028{left:483.420000px;}
.xdc_c00028{left:484.500000px;}
.xbd_c00028{left:485.580000px;}
.xcf_c00028{left:487.500000px;}
.x47_c00028{left:488.580000px;}
.x7c_c00028{left:490.500000px;}
.x39_c00028{left:491.580000px;}
.x9c_c00028{left:493.500000px;}
.x63_c00028{left:495.000000px;}
.xd7_c00028{left:496.500000px;}
.xc4_c00028{left:497.580000px;}
.x5b_c00028{left:499.500000px;}
.x2d_c00028{left:500.580000px;}
.x6d_c00028{left:503.580000px;}
.xc9_c00028{left:505.080000px;}
.xd8_c00028{left:508.500000px;}
.x82_c00028{left:511.500000px;}
.x94_c00028{left:513.000000px;}
.xe7_c00028{left:514.500000px;}
.x100_c00028{left:517.500000px;}
.x24_c00028{left:518.580000px;}
.xec_c00028{left:520.500000px;}
.x2e_c00028{left:522.000000px;}
.x17_c00028{left:523.500000px;}
.x5c_c00028{left:525.000000px;}
.xdd_c00028{left:526.920000px;}
.x88_c00028{left:532.500000px;}
.xbe_c00028{left:534.420000px;}
.x64_c00028{left:535.500000px;}
.xf4_c00028{left:536.580000px;}
.x3a_c00028{left:538.920000px;}
.x51_c00028{left:543.000000px;}
.x89_c00028{left:544.080000px;}
.x2f_c00028{left:550.920000px;}
.x6e_c00028{left:553.920000px;}
.x65_c00028{left:556.500000px;}
.xa1_c00028{left:558.000000px;}
.xc_c00028{left:561.000000px;}
.xd0_c00028{left:565.080000px;}
.xb5_c00028{left:569.355000px;}
.x48_c00028{left:570.420000px;}
.x52_c00028{left:571.500000px;}
.xd9_c00028{left:573.420000px;}
.x75_c00028{left:574.500000px;}
.x9d_c00028{left:575.775000px;}
.xde_c00028{left:577.500000px;}
.x25_c00028{left:583.080000px;}
.x66_c00028{left:585.420000px;}
.xa2_c00028{left:586.500000px;}
.xca_c00028{left:588.420000px;}
.x18_c00028{left:589.500000px;}
.x95_c00028{left:592.500000px;}
.xd_c00028{left:595.080000px;}
.xe2_c00028{left:597.000000px;}
.x53_c00028{left:598.500000px;}
.x105_c00028{left:603.420000px;}
.x7d_c00028{left:604.920000px;}
.x26_c00028{left:607.500000px;}
.x101_c00028{left:608.580000px;}
.x30_c00028{left:610.920000px;}
.xf5_c00028{left:612.000000px;}
.x19_c00028{left:613.500000px;}
.x6f_c00028{left:615.000000px;}
.xf8_c00028{left:618.000000px;}
.xc5_c00028{left:619.080000px;}
.x83_c00028{left:620.580000px;}
.xa9_c00028{left:624.000000px;}
.x54_c00028{left:625.500000px;}
.xf1_c00028{left:627.000000px;}
.x67_c00028{left:628.500000px;}
.xe8_c00028{left:629.580000px;}
.xf9_c00028{left:631.500000px;}
.xd1_c00028{left:634.920000px;}
.xb6_c00028{left:637.080000px;}
.x31_c00028{left:639.000000px;}
.xdf_c00028{left:640.500000px;}
.x3b_c00028{left:643.500000px;}
.x1a_c00028{left:646.500000px;}
.x76_c00028{left:649.500000px;}
.xe_c00028{left:654.000000px;}
.x5d_c00028{left:655.500000px;}
.x55_c00028{left:657.000000px;}
.xaa_c00028{left:661.920000px;}
.x8a_c00028{left:663.855000px;}
.xbb_c00028{left:666.000000px;}
.x1b_c00028{left:667.275000px;}
.x96_c00028{left:669.000000px;}
.x84_c00028{left:671.580000px;}
.xad_c00028{left:676.080000px;}
.x97_c00028{left:677.580000px;}
.xf_c00028{left:680.580000px;}
.x27_c00028{left:683.580000px;}
.x2_c00028{left:685.500000px;}
.xa3_c00028{left:687.000000px;}
.x107_c00028{left:690.000000px;}
.xf6_c00028{left:691.500000px;}
.xae_c00028{left:694.920000px;}
.xe3_c00028{left:696.420000px;}
.x5e_c00028{left:699.000000px;}
.x1c_c00028{left:704.580000px;}
.x102_c00028{left:706.500000px;}
.x28_c00028{left:708.420000px;}
.x7e_c00028{left:709.500000px;}
.xd2_c00028{left:714.000000px;}
.x10_c00028{left:715.500000px;}
.x32_c00028{left:716.580000px;}
.x8b_c00028{left:724.500000px;}
.x3_c00028{left:725.580000px;}
@media print{
.v1_c00028{vertical-align:-16.000000pt;}
.v0_c00028{vertical-align:0.000000pt;}
.ls1_c00028{letter-spacing:0.000000pt;}
.ls0_c00028{letter-spacing:2.934777pt;}
.ws0_c00028{word-spacing:-3.240762pt;}
.ws1_c00028{word-spacing:-0.269075pt;}
.ws2_c00028{word-spacing:0.000000pt;}
.fs8_c00028{font-size:3.040000pt;}
.fs2_c00028{font-size:12.106667pt;}
.fs1_c00028{font-size:16.640000pt;}
.fs0_c00028{font-size:18.133333pt;}
.fs5_c00028{font-size:22.666667pt;}
.fs3_c00028{font-size:25.706667pt;}
.fs4_c00028{font-size:28.746667pt;}
.fs6_c00028{font-size:31.733333pt;}
.fs7_c00028{font-size:34.773333pt;}
.fs9_c00028{font-size:37.813333pt;}
.y0_c00028{bottom:0.000000pt;}
.y3_c00028{bottom:204.173333pt;}
.yfd_c00028{bottom:225.693333pt;}
.yf9_c00028{bottom:226.066667pt;}
.yf8_c00028{bottom:226.440000pt;}
.yfa_c00028{bottom:227.026667pt;}
.yfb_c00028{bottom:227.973333pt;}
.yf7_c00028{bottom:228.360000pt;}
.yfc_c00028{bottom:229.306667pt;}
.yf6_c00028{bottom:230.440000pt;}
.yf1_c00028{bottom:242.440000pt;}
.yf2_c00028{bottom:243.400000pt;}
.yf0_c00028{bottom:244.360000pt;}
.yf3_c00028{bottom:244.733333pt;}
.yef_c00028{bottom:245.106667pt;}
.yf4_c00028{bottom:245.693333pt;}
.yee_c00028{bottom:246.440000pt;}
.yf5_c00028{bottom:246.640000pt;}
.yed_c00028{bottom:249.693333pt;}
.yeb_c00028{bottom:259.773333pt;}
.yec_c00028{bottom:261.106667pt;}
.yea_c00028{bottom:261.693333pt;}
.ye9_c00028{bottom:263.026667pt;}
.ye8_c00028{bottom:265.106667pt;}
.ye4_c00028{bottom:277.106667pt;}
.ye3_c00028{bottom:278.066667pt;}
.ye6_c00028{bottom:278.440000pt;}
.ye2_c00028{bottom:279.026667pt;}
.ye5_c00028{bottom:279.226667pt;}
.ye1_c00028{bottom:280.360000pt;}
.ye7_c00028{bottom:280.560000pt;}
.ye0_c00028{bottom:281.693333pt;}
.ydb_c00028{bottom:293.693333pt;}
.ydc_c00028{bottom:294.440000pt;}
.yd9_c00028{bottom:295.773333pt;}
.yda_c00028{bottom:296.360000pt;}
.yd8_c00028{bottom:297.106667pt;}
.ydf_c00028{bottom:297.306667pt;}
.yde_c00028{bottom:297.693333pt;}
.ydd_c00028{bottom:298.640000pt;}
.yd4_c00028{bottom:311.773333pt;}
.yd7_c00028{bottom:312.360000pt;}
.yd6_c00028{bottom:313.106667pt;}
.yd1_c00028{bottom:313.693333pt;}
.yd5_c00028{bottom:314.066667pt;}
.yd2_c00028{bottom:314.640000pt;}
.yd3_c00028{bottom:315.026667pt;}
.yd0_c00028{bottom:315.400000pt;}
.ycf_c00028{bottom:318.066667pt;}
.ycd_c00028{bottom:330.440000pt;}
.ycc_c00028{bottom:331.973333pt;}
.ycb_c00028{bottom:332.360000pt;}
.yce_c00028{bottom:333.306667pt;}
.yca_c00028{bottom:333.693333pt;}
.yc9_c00028{bottom:334.440000pt;}
.yc6_c00028{bottom:347.400000pt;}
.yc5_c00028{bottom:349.306667pt;}
.yc8_c00028{bottom:349.693333pt;}
.yc7_c00028{bottom:350.640000pt;}
.yc4_c00028{bottom:351.226667pt;}
.yc3_c00028{bottom:354.640000pt;}
.ybd_c00028{bottom:364.733333pt;}
.ybe_c00028{bottom:365.106667pt;}
.ybc_c00028{bottom:365.306667pt;}
.yc0_c00028{bottom:366.066667pt;}
.ybb_c00028{bottom:366.826667pt;}
.ybf_c00028{bottom:367.026667pt;}
.yc2_c00028{bottom:367.226667pt;}
.yc1_c00028{bottom:367.973333pt;}
.yba_c00028{bottom:384.360000pt;}
.yb8_c00028{bottom:384.733333pt;}
.yb9_c00028{bottom:385.693333pt;}
.yb7_c00028{bottom:389.306667pt;}
.yb6_c00028{bottom:399.773333pt;}
.yb4_c00028{bottom:400.733333pt;}
.yb5_c00028{bottom:400.933333pt;}
.yb3_c00028{bottom:401.693333pt;}
.yb2_c00028{bottom:403.026667pt;}
.yb1_c00028{bottom:404.360000pt;}
.yaf_c00028{bottom:418.440000pt;}
.yb0_c00028{bottom:419.400000pt;}
.yae_c00028{bottom:420.360000pt;}
.yad_c00028{bottom:422.066667pt;}
.yac_c00028{bottom:435.400000pt;}
.yab_c00028{bottom:435.773333pt;}
.yaa_c00028{bottom:436.733333pt;}
.ya8_c00028{bottom:437.306667pt;}
.ya9_c00028{bottom:437.693333pt;}
.ya7_c00028{bottom:438.066667pt;}
.ya6_c00028{bottom:439.026667pt;}
.ya0_c00028{bottom:451.026667pt;}
.ya1_c00028{bottom:451.773333pt;}
.ya5_c00028{bottom:453.106667pt;}
.ya3_c00028{bottom:453.893333pt;}
.ya4_c00028{bottom:454.640000pt;}
.y9d_c00028{bottom:454.826667pt;}
.y9f_c00028{bottom:455.026667pt;}
.y9e_c00028{bottom:455.226667pt;}
.ya2_c00028{bottom:455.973333pt;}
.y99_c00028{bottom:469.693333pt;}
.y9c_c00028{bottom:470.440000pt;}
.y9a_c00028{bottom:472.360000pt;}
.y9b_c00028{bottom:472.560000pt;}
.y98_c00028{bottom:474.066667pt;}
.y95_c00028{bottom:487.773333pt;}
.y96_c00028{bottom:488.733333pt;}
.y97_c00028{bottom:489.693333pt;}
.y94_c00028{bottom:489.893333pt;}
.y93_c00028{bottom:491.773333pt;}
.y90_c00028{bottom:506.440000pt;}
.y92_c00028{bottom:507.026667pt;}
.y91_c00028{bottom:508.360000pt;}
.y8f_c00028{bottom:509.693333pt;}
.y8e_c00028{bottom:524.360000pt;}
.y8c_c00028{bottom:524.933333pt;}
.y8d_c00028{bottom:525.693333pt;}
.y8b_c00028{bottom:526.266667pt;}
.y89_c00028{bottom:539.026667pt;}
.y87_c00028{bottom:540.360000pt;}
.y88_c00028{bottom:541.106667pt;}
.y8a_c00028{bottom:543.026667pt;}
.y86_c00028{bottom:543.400000pt;}
.y84_c00028{bottom:558.440000pt;}
.y85_c00028{bottom:559.400000pt;}
.y83_c00028{bottom:560.360000pt;}
.y82_c00028{bottom:560.733333pt;}
.y81_c00028{bottom:575.026667pt;}
.y80_c00028{bottom:575.773333pt;}
.y7e_c00028{bottom:577.693333pt;}
.y7f_c00028{bottom:578.640000pt;}
.y7d_c00028{bottom:579.026667pt;}
.y7c_c00028{bottom:580.360000pt;}
.y7b_c00028{bottom:592.360000pt;}
.y79_c00028{bottom:593.106667pt;}
.y78_c00028{bottom:595.026667pt;}
.y7a_c00028{bottom:595.226667pt;}
.y77_c00028{bottom:595.400000pt;}
.y72_c00028{bottom:609.693333pt;}
.y71_c00028{bottom:610.440000pt;}
.y70_c00028{bottom:610.640000pt;}
.y76_c00028{bottom:610.826667pt;}
.y74_c00028{bottom:611.026667pt;}
.y73_c00028{bottom:612.360000pt;}
.y6e_c00028{bottom:613.106667pt;}
.y75_c00028{bottom:613.693333pt;}
.y6f_c00028{bottom:613.706667pt;}
.y6d_c00028{bottom:614.266667pt;}
.y68_c00028{bottom:627.026667pt;}
.y6a_c00028{bottom:627.773333pt;}
.y67_c00028{bottom:628.160000pt;}
.y6c_c00028{bottom:629.106667pt;}
.y69_c00028{bottom:629.693333pt;}
.y6b_c00028{bottom:630.640000pt;}
.y63_c00028{bottom:645.106667pt;}
.y65_c00028{bottom:646.266667pt;}
.y60_c00028{bottom:646.440000pt;}
.y61_c00028{bottom:647.026667pt;}
.y66_c00028{bottom:647.226667pt;}
.y62_c00028{bottom:647.973333pt;}
.y64_c00028{bottom:648.373333pt;}
.y5f_c00028{bottom:649.693333pt;}
.y59_c00028{bottom:662.440000pt;}
.y5c_c00028{bottom:663.026667pt;}
.y58_c00028{bottom:663.773333pt;}
.y5a_c00028{bottom:664.360000pt;}
.y5b_c00028{bottom:664.560000pt;}
.y5e_c00028{bottom:665.693333pt;}
.y5d_c00028{bottom:665.706667pt;}
.y57_c00028{bottom:667.973333pt;}
.y56_c00028{bottom:679.026667pt;}
.y55_c00028{bottom:680.360000pt;}
.y53_c00028{bottom:681.106667pt;}
.y52_c00028{bottom:681.693333pt;}
.y50_c00028{bottom:682.066667pt;}
.y51_c00028{bottom:683.026667pt;}
.y54_c00028{bottom:683.040000pt;}
.y4f_c00028{bottom:684.733333pt;}
.y4e_c00028{bottom:698.440000pt;}
.y4c_c00028{bottom:699.973333pt;}
.y4d_c00028{bottom:700.360000pt;}
.y4b_c00028{bottom:701.693333pt;}
.y49_c00028{bottom:714.640000pt;}
.y48_c00028{bottom:715.773333pt;}
.y4a_c00028{bottom:716.560000pt;}
.y47_c00028{bottom:717.693333pt;}
.y46_c00028{bottom:719.400000pt;}
.y42_c00028{bottom:732.360000pt;}
.y43_c00028{bottom:733.106667pt;}
.y44_c00028{bottom:735.026667pt;}
.y45_c00028{bottom:735.226667pt;}
.y41_c00028{bottom:737.306667pt;}
.y3f_c00028{bottom:748.360000pt;}
.y3b_c00028{bottom:750.440000pt;}
.y3a_c00028{bottom:750.826667pt;}
.y3d_c00028{bottom:751.226667pt;}
.y3e_c00028{bottom:751.973333pt;}
.y3c_c00028{bottom:752.360000pt;}
.y40_c00028{bottom:753.306667pt;}
.y38_c00028{bottom:767.773333pt;}
.y39_c00028{bottom:768.560000pt;}
.y36_c00028{bottom:769.493333pt;}
.y37_c00028{bottom:769.693333pt;}
.y33_c00028{bottom:784.360000pt;}
.y32_c00028{bottom:785.106667pt;}
.y30_c00028{bottom:786.440000pt;}
.y31_c00028{bottom:787.026667pt;}
.y34_c00028{bottom:787.226667pt;}
.y35_c00028{bottom:788.360000pt;}
.y2f_c00028{bottom:788.733333pt;}
.y2c_c00028{bottom:804.360000pt;}
.y2e_c00028{bottom:804.560000pt;}
.y2d_c00028{bottom:805.693333pt;}
.y2a_c00028{bottom:819.773333pt;}
.y27_c00028{bottom:820.733333pt;}
.y26_c00028{bottom:821.693333pt;}
.y2b_c00028{bottom:821.893333pt;}
.y29_c00028{bottom:822.640000pt;}
.y28_c00028{bottom:823.026667pt;}
.y23_c00028{bottom:837.106667pt;}
.y24_c00028{bottom:838.440000pt;}
.y25_c00028{bottom:839.400000pt;}
.y22_c00028{bottom:840.360000pt;}
.y21_c00028{bottom:841.693333pt;}
.y20_c00028{bottom:855.400000pt;}
.y1f_c00028{bottom:857.693333pt;}
.y1e_c00028{bottom:859.026667pt;}
.y1a_c00028{bottom:873.106667pt;}
.y1d_c00028{bottom:873.306667pt;}
.y19_c00028{bottom:875.026667pt;}
.y1b_c00028{bottom:875.226667pt;}
.y1c_c00028{bottom:875.973333pt;}
.y18_c00028{bottom:876.733333pt;}
.y17_c00028{bottom:889.693333pt;}
.y15_c00028{bottom:890.440000pt;}
.y12_c00028{bottom:890.826667pt;}
.y14_c00028{bottom:891.400000pt;}
.y13_c00028{bottom:892.360000pt;}
.y16_c00028{bottom:893.306667pt;}
.yd_c00028{bottom:907.773333pt;}
.y11_c00028{bottom:908.733333pt;}
.yc_c00028{bottom:909.106667pt;}
.yf_c00028{bottom:909.693333pt;}
.y10_c00028{bottom:909.893333pt;}
.ye_c00028{bottom:910.640000pt;}
.yb_c00028{bottom:925.106667pt;}
.y9_c00028{bottom:926.440000pt;}
.ya_c00028{bottom:927.026667pt;}
.y5_c00028{bottom:944.360000pt;}
.y8_c00028{bottom:944.560000pt;}
.y6_c00028{bottom:944.733333pt;}
.y7_c00028{bottom:945.306667pt;}
.y4_c00028{bottom:945.693333pt;}
.y1_c00028{bottom:978.266667pt;}
.y2_c00028{bottom:979.226667pt;}
.h9_c00028{height:3.739141pt;}
.h3_c00028{height:14.890964pt;}
.h2_c00028{height:20.466875pt;}
.h1_c00028{height:22.303646pt;}
.h6_c00028{height:27.879557pt;}
.h4_c00028{height:31.618698pt;}
.h5_c00028{height:35.357839pt;}
.h7_c00028{height:39.031380pt;}
.h8_c00028{height:42.770521pt;}
.ha_c00028{height:46.509661pt;}
.h0_c00028{height:1186.666667pt;}
.w0_c00028{width:782.666667pt;}
.x0_c00028{left:0.000000pt;}
.x49_c00028{left:135.040000pt;}
.x4_c00028{left:136.000000pt;}
.x1d_c00028{left:137.133333pt;}
.xa4_c00028{left:142.666667pt;}
.x3f_c00028{left:148.960000pt;}
.xc1_c00028{left:150.666667pt;}
.x70_c00028{left:153.333333pt;}
.x103_c00028{left:155.426667pt;}
.x56_c00028{left:158.666667pt;}
.xaf_c00028{left:160.573333pt;}
.x98_c00028{left:163.800000pt;}
.x3c_c00028{left:165.333333pt;}
.x5_c00028{left:167.626667pt;}
.x5f_c00028{left:169.333333pt;}
.x7f_c00028{left:170.666667pt;}
.x1e_c00028{left:172.960000pt;}
.x40_c00028{left:174.293333pt;}
.x11_c00028{left:176.373333pt;}
.xa5_c00028{left:177.706667pt;}
.x71_c00028{left:178.666667pt;}
.xb0_c00028{left:179.626667pt;}
.x3d_c00028{left:180.960000pt;}
.xe9_c00028{left:182.293333pt;}
.x6a_c00028{left:185.706667pt;}
.xbf_c00028{left:188.000000pt;}
.x8c_c00028{left:189.133333pt;}
.xc2_c00028{left:192.000000pt;}
.x41_c00028{left:192.960000pt;}
.x6_c00028{left:193.906667pt;}
.xb7_c00028{left:196.000000pt;}
.x33_c00028{left:197.333333pt;}
.x9e_c00028{left:199.040000pt;}
.x12_c00028{left:200.960000pt;}
.x29_c00028{left:202.666667pt;}
.x77_c00028{left:204.000000pt;}
.xfd_c00028{left:204.960000pt;}
.x80_c00028{left:208.373333pt;}
.x42_c00028{left:210.666667pt;}
.x7_c00028{left:213.333333pt;}
.x57_c00028{left:215.040000pt;}
.xe4_c00028{left:216.373333pt;}
.x3e_c00028{left:219.626667pt;}
.xc6_c00028{left:224.373333pt;}
.x4a_c00028{left:225.706667pt;}
.x8d_c00028{left:227.626667pt;}
.xc0_c00028{left:228.960000pt;}
.x99_c00028{left:230.666667pt;}
.xd3_c00028{left:232.000000pt;}
.xfa_c00028{left:233.333333pt;}
.x85_c00028{left:234.293333pt;}
.x60_c00028{left:236.000000pt;}
.x58_c00028{left:238.293333pt;}
.xe5_c00028{left:240.000000pt;}
.xa6_c00028{left:241.133333pt;}
.xe0_c00028{left:242.293333pt;}
.x68_c00028{left:244.373333pt;}
.xcb_c00028{left:246.666667pt;}
.xd4_c00028{left:248.000000pt;}
.x4b_c00028{left:249.333333pt;}
.xb1_c00028{left:250.293333pt;}
.x8e_c00028{left:251.240000pt;}
.x6b_c00028{left:252.960000pt;}
.x9a_c00028{left:254.293333pt;}
.x106_c00028{left:256.000000pt;}
.xeb_c00028{left:256.960000pt;}
.x2a_c00028{left:258.666667pt;}
.x34_c00028{left:259.626667pt;}
.xab_c00028{left:261.333333pt;}
.x13_c00028{left:264.000000pt;}
.xef_c00028{left:264.960000pt;}
.x81_c00028{left:266.666667pt;}
.xb2_c00028{left:268.373333pt;}
.x8f_c00028{left:269.333333pt;}
.x43_c00028{left:272.373333pt;}
.xed_c00028{left:273.333333pt;}
.x9b_c00028{left:274.293333pt;}
.x2b_c00028{left:276.373333pt;}
.x86_c00028{left:278.293333pt;}
.x72_c00028{left:280.000000pt;}
.x78_c00028{left:280.960000pt;}
.x69_c00028{left:282.666667pt;}
.x61_c00028{left:285.333333pt;}
.xea_c00028{left:286.666667pt;}
.x90_c00028{left:288.373333pt;}
.xcc_c00028{left:289.706667pt;}
.xb3_c00028{left:292.960000pt;}
.xfe_c00028{left:295.626667pt;}
.xc3_c00028{left:296.960000pt;}
.x8_c00028{left:298.666667pt;}
.x59_c00028{left:301.333333pt;}
.x4c_c00028{left:302.666667pt;}
.xbc_c00028{left:304.000000pt;}
.xf2_c00028{left:306.666667pt;}
.x1f_c00028{left:308.000000pt;}
.xee_c00028{left:309.706667pt;}
.x91_c00028{left:314.293333pt;}
.xcd_c00028{left:316.000000pt;}
.x35_c00028{left:317.333333pt;}
.xda_c00028{left:319.626667pt;}
.x14_c00028{left:320.960000pt;}
.xd5_c00028{left:323.626667pt;}
.x9f_c00028{left:325.706667pt;}
.xf7_c00028{left:326.666667pt;}
.x79_c00028{left:328.373333pt;}
.xc7_c00028{left:329.333333pt;}
.x44_c00028{left:330.293333pt;}
.x4d_c00028{left:333.333333pt;}
.x36_c00028{left:336.373333pt;}
.x15_c00028{left:338.293333pt;}
.x73_c00028{left:340.000000pt;}
.x87_c00028{left:343.626667pt;}
.xb8_c00028{left:347.040000pt;}
.x4e_c00028{left:348.373333pt;}
.x1_c00028{left:349.333333pt;}
.xe1_c00028{left:352.373333pt;}
.x2c_c00028{left:355.626667pt;}
.x74_c00028{left:356.960000pt;}
.x20_c00028{left:358.093333pt;}
.x9_c00028{left:359.626667pt;}
.x7a_c00028{left:363.040000pt;}
.x5a_c00028{left:364.960000pt;}
.x37_c00028{left:366.666667pt;}
.xfb_c00028{left:367.626667pt;}
.xff_c00028{left:368.960000pt;}
.xb9_c00028{left:370.666667pt;}
.x4f_c00028{left:372.000000pt;}
.x21_c00028{left:373.333333pt;}
.xa7_c00028{left:375.040000pt;}
.xce_c00028{left:376.000000pt;}
.x92_c00028{left:376.960000pt;}
.xb4_c00028{left:380.960000pt;}
.xa0_c00028{left:385.333333pt;}
.xc8_c00028{left:386.666667pt;}
.xe6_c00028{left:388.000000pt;}
.x45_c00028{left:388.960000pt;}
.x22_c00028{left:392.373333pt;}
.xf0_c00028{left:393.333333pt;}
.xba_c00028{left:396.000000pt;}
.xf3_c00028{left:398.293333pt;}
.xd6_c00028{left:400.000000pt;}
.x16_c00028{left:401.333333pt;}
.x6c_c00028{left:402.666667pt;}
.xdb_c00028{left:404.000000pt;}
.xa8_c00028{left:406.666667pt;}
.x46_c00028{left:408.373333pt;}
.x104_c00028{left:409.333333pt;}
.xa_c00028{left:411.626667pt;}
.xfc_c00028{left:413.333333pt;}
.x62_c00028{left:414.666667pt;}
.x93_c00028{left:416.373333pt;}
.x7b_c00028{left:417.333333pt;}
.x50_c00028{left:418.666667pt;}
.x23_c00028{left:420.000000pt;}
.x38_c00028{left:421.333333pt;}
.xac_c00028{left:425.333333pt;}
.xb_c00028{left:429.706667pt;}
.xdc_c00028{left:430.666667pt;}
.xbd_c00028{left:431.626667pt;}
.xcf_c00028{left:433.333333pt;}
.x47_c00028{left:434.293333pt;}
.x7c_c00028{left:436.000000pt;}
.x39_c00028{left:436.960000pt;}
.x9c_c00028{left:438.666667pt;}
.x63_c00028{left:440.000000pt;}
.xd7_c00028{left:441.333333pt;}
.xc4_c00028{left:442.293333pt;}
.x5b_c00028{left:444.000000pt;}
.x2d_c00028{left:444.960000pt;}
.x6d_c00028{left:447.626667pt;}
.xc9_c00028{left:448.960000pt;}
.xd8_c00028{left:452.000000pt;}
.x82_c00028{left:454.666667pt;}
.x94_c00028{left:456.000000pt;}
.xe7_c00028{left:457.333333pt;}
.x100_c00028{left:460.000000pt;}
.x24_c00028{left:460.960000pt;}
.xec_c00028{left:462.666667pt;}
.x2e_c00028{left:464.000000pt;}
.x17_c00028{left:465.333333pt;}
.x5c_c00028{left:466.666667pt;}
.xdd_c00028{left:468.373333pt;}
.x88_c00028{left:473.333333pt;}
.xbe_c00028{left:475.040000pt;}
.x64_c00028{left:476.000000pt;}
.xf4_c00028{left:476.960000pt;}
.x3a_c00028{left:479.040000pt;}
.x51_c00028{left:482.666667pt;}
.x89_c00028{left:483.626667pt;}
.x2f_c00028{left:489.706667pt;}
.x6e_c00028{left:492.373333pt;}
.x65_c00028{left:494.666667pt;}
.xa1_c00028{left:496.000000pt;}
.xc_c00028{left:498.666667pt;}
.xd0_c00028{left:502.293333pt;}
.xb5_c00028{left:506.093333pt;}
.x48_c00028{left:507.040000pt;}
.x52_c00028{left:508.000000pt;}
.xd9_c00028{left:509.706667pt;}
.x75_c00028{left:510.666667pt;}
.x9d_c00028{left:511.800000pt;}
.xde_c00028{left:513.333333pt;}
.x25_c00028{left:518.293333pt;}
.x66_c00028{left:520.373333pt;}
.xa2_c00028{left:521.333333pt;}
.xca_c00028{left:523.040000pt;}
.x18_c00028{left:524.000000pt;}
.x95_c00028{left:526.666667pt;}
.xd_c00028{left:528.960000pt;}
.xe2_c00028{left:530.666667pt;}
.x53_c00028{left:532.000000pt;}
.x105_c00028{left:536.373333pt;}
.x7d_c00028{left:537.706667pt;}
.x26_c00028{left:540.000000pt;}
.x101_c00028{left:540.960000pt;}
.x30_c00028{left:543.040000pt;}
.xf5_c00028{left:544.000000pt;}
.x19_c00028{left:545.333333pt;}
.x6f_c00028{left:546.666667pt;}
.xf8_c00028{left:549.333333pt;}
.xc5_c00028{left:550.293333pt;}
.x83_c00028{left:551.626667pt;}
.xa9_c00028{left:554.666667pt;}
.x54_c00028{left:556.000000pt;}
.xf1_c00028{left:557.333333pt;}
.x67_c00028{left:558.666667pt;}
.xe8_c00028{left:559.626667pt;}
.xf9_c00028{left:561.333333pt;}
.xd1_c00028{left:564.373333pt;}
.xb6_c00028{left:566.293333pt;}
.x31_c00028{left:568.000000pt;}
.xdf_c00028{left:569.333333pt;}
.x3b_c00028{left:572.000000pt;}
.x1a_c00028{left:574.666667pt;}
.x76_c00028{left:577.333333pt;}
.xe_c00028{left:581.333333pt;}
.x5d_c00028{left:582.666667pt;}
.x55_c00028{left:584.000000pt;}
.xaa_c00028{left:588.373333pt;}
.x8a_c00028{left:590.093333pt;}
.xbb_c00028{left:592.000000pt;}
.x1b_c00028{left:593.133333pt;}
.x96_c00028{left:594.666667pt;}
.x84_c00028{left:596.960000pt;}
.xad_c00028{left:600.960000pt;}
.x97_c00028{left:602.293333pt;}
.xf_c00028{left:604.960000pt;}
.x27_c00028{left:607.626667pt;}
.x2_c00028{left:609.333333pt;}
.xa3_c00028{left:610.666667pt;}
.x107_c00028{left:613.333333pt;}
.xf6_c00028{left:614.666667pt;}
.xae_c00028{left:617.706667pt;}
.xe3_c00028{left:619.040000pt;}
.x5e_c00028{left:621.333333pt;}
.x1c_c00028{left:626.293333pt;}
.x102_c00028{left:628.000000pt;}
.x28_c00028{left:629.706667pt;}
.x7e_c00028{left:630.666667pt;}
.xd2_c00028{left:634.666667pt;}
.x10_c00028{left:636.000000pt;}
.x32_c00028{left:636.960000pt;}
.x8b_c00028{left:644.000000pt;}
.x3_c00028{left:644.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_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_1974e8855faa33aa5d47ffe8.woff2')format("woff");}.ff1_c00029{font-family:ff1_c00029;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m60_c00029{transform:matrix(0.365031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365031,0.000000,0.000000,0.250000,0,0);}
.m89_c00029{transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);}
.m6a_c00029{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m55_c00029{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.m7a_c00029{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m52_c00029{transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);}
.m3e_c00029{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m79_c00029{transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);}
.m37_c00029{transform:matrix(0.396472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396472,0.000000,0.000000,0.250000,0,0);}
.m51_c00029{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m2f_c00029{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m5d_c00029{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m84_c00029{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m6_c00029{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m3a_c00029{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m49_c00029{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m23_c00029{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m68_c00029{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m2d_c00029{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m6e_c00029{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m36_c00029{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m12_c00029{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m2_c00029{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m22_c00029{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m85_c00029{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m24_c00029{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m57_c00029{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m5a_c00029{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m61_c00029{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m87_c00029{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m14_c00029{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m1d_c00029{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m72_c00029{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m8a_c00029{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m5b_c00029{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m7d_c00029{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m31_c00029{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m28_c00029{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.m81_c00029{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m7b_c00029{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m2b_c00029{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m50_c00029{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m6d_c00029{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m5_c00029{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m25_c00029{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m3c_c00029{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m27_c00029{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m80_c00029{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m18_c00029{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);}
.m86_c00029{transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);}
.m15_c00029{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m2e_c00029{transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);}
.m20_c00029{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m54_c00029{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m5e_c00029{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m83_c00029{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m46_c00029{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m29_c00029{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.m67_c00029{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m2a_c00029{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.m4a_c00029{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m39_c00029{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m56_c00029{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.m75_c00029{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m6b_c00029{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m4_c00029{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m47_c00029{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mc_c00029{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);}
.m69_c00029{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m59_c00029{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m4f_c00029{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m70_c00029{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m17_c00029{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m8d_c00029{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mb_c00029{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m1f_c00029{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m45_c00029{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m76_c00029{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m5f_c00029{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m53_c00029{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m1b_c00029{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m5c_c00029{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.md_c00029{transform:matrix(0.531540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531540,0.000000,0.000000,0.250000,0,0);}
.m8_c00029{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m3d_c00029{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m34_c00029{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m13_c00029{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m77_c00029{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m7e_c00029{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m64_c00029{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m73_c00029{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m30_c00029{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m1e_c00029{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m1a_c00029{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m82_c00029{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m35_c00029{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m4e_c00029{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m66_c00029{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m33_c00029{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m8b_c00029{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m9_c00029{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m3b_c00029{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m32_c00029{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m19_c00029{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m44_c00029{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m58_c00029{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m1c_c00029{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m7f_c00029{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.ma_c00029{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m21_c00029{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m2c_c00029{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.me_c00029{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m88_c00029{transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);}
.m3_c00029{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m78_c00029{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m6c_c00029{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m42_c00029{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m4c_c00029{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.m11_c00029{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m40_c00029{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m71_c00029{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m4d_c00029{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.m0_c00029{transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);}
.m10_c00029{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mf_c00029{transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);}
.m74_c00029{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m26_c00029{transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);}
.m7c_c00029{transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);}
.m62_c00029{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m65_c00029{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m7_c00029{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m41_c00029{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);}
.m38_c00029{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m63_c00029{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m1_c00029{transform:matrix(0.728676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728676,0.000000,0.000000,0.250000,0,0);}
.m6f_c00029{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m48_c00029{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m4b_c00029{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m3f_c00029{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m8c_c00029{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.m43_c00029{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m16_c00029{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,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;}
.fs5_c00029{font-size:18.720000px;}
.fs0_c00029{font-size:20.400000px;}
.fs2_c00029{font-size:25.500000px;}
.fs3_c00029{font-size:28.920000px;}
.fs4_c00029{font-size:32.340000px;}
.fs1_c00029{font-size:35.700000px;}
.fs6_c00029{font-size:39.120000px;}
.y0_c00029{bottom:0.000000px;}
.y60_c00029{bottom:688.905000px;}
.y61_c00029{bottom:690.405000px;}
.y5d_c00029{bottom:706.680000px;}
.y5e_c00029{bottom:707.745000px;}
.y5f_c00029{bottom:708.630000px;}
.y5c_c00029{bottom:709.905000px;}
.y5b_c00029{bottom:727.245000px;}
.y5a_c00029{bottom:729.405000px;}
.y59_c00029{bottom:746.325000px;}
.y57_c00029{bottom:747.825000px;}
.y58_c00029{bottom:748.470000px;}
.y55_c00029{bottom:748.905000px;}
.y56_c00029{bottom:749.970000px;}
.y52_c00029{bottom:766.245000px;}
.y53_c00029{bottom:766.470000px;}
.y54_c00029{bottom:767.745000px;}
.y4f_c00029{bottom:768.405000px;}
.y51_c00029{bottom:769.470000px;}
.y50_c00029{bottom:769.905000px;}
.y4c_c00029{bottom:785.745000px;}
.y4e_c00029{bottom:786.825000px;}
.y4b_c00029{bottom:787.905000px;}
.y4d_c00029{bottom:788.970000px;}
.y44_c00029{bottom:804.405000px;}
.y48_c00029{bottom:805.245000px;}
.y47_c00029{bottom:806.325000px;}
.y45_c00029{bottom:806.745000px;}
.y43_c00029{bottom:807.405000px;}
.y49_c00029{bottom:807.630000px;}
.y4a_c00029{bottom:808.470000px;}
.y46_c00029{bottom:808.905000px;}
.y3c_c00029{bottom:824.745000px;}
.y3e_c00029{bottom:826.245000px;}
.y42_c00029{bottom:826.470000px;}
.y41_c00029{bottom:826.905000px;}
.y3f_c00029{bottom:827.130000px;}
.y3d_c00029{bottom:827.970000px;}
.y40_c00029{bottom:828.405000px;}
.y37_c00029{bottom:843.405000px;}
.y3b_c00029{bottom:844.680000px;}
.y3a_c00029{bottom:845.325000px;}
.y39_c00029{bottom:845.745000px;}
.y38_c00029{bottom:847.905000px;}
.y34_c00029{bottom:862.905000px;}
.y32_c00029{bottom:864.180000px;}
.y33_c00029{bottom:865.245000px;}
.y36_c00029{bottom:866.325000px;}
.y31_c00029{bottom:867.405000px;}
.y35_c00029{bottom:868.470000px;}
.y30_c00029{bottom:884.745000px;}
.y2f_c00029{bottom:886.470000px;}
.y2e_c00029{bottom:886.905000px;}
.y2a_c00029{bottom:902.970000px;}
.y2b_c00029{bottom:903.825000px;}
.y2d_c00029{bottom:904.245000px;}
.y2c_c00029{bottom:905.130000px;}
.y29_c00029{bottom:906.405000px;}
.y28_c00029{bottom:922.470000px;}
.y23_c00029{bottom:923.745000px;}
.y26_c00029{bottom:924.630000px;}
.y25_c00029{bottom:924.825000px;}
.y27_c00029{bottom:925.050000px;}
.y24_c00029{bottom:925.470000px;}
.y22_c00029{bottom:925.905000px;}
.y21_c00029{bottom:942.180000px;}
.y1d_c00029{bottom:943.245000px;}
.y1e_c00029{bottom:944.325000px;}
.y1f_c00029{bottom:945.405000px;}
.y20_c00029{bottom:946.905000px;}
.y1c_c00029{bottom:962.745000px;}
.y1a_c00029{bottom:964.905000px;}
.y1b_c00029{bottom:965.970000px;}
.y16_c00029{bottom:982.245000px;}
.y19_c00029{bottom:983.325000px;}
.y18_c00029{bottom:984.405000px;}
.y17_c00029{bottom:985.470000px;}
.y14_c00029{bottom:1001.745000px;}
.y15_c00029{bottom:1002.825000px;}
.y13_c00029{bottom:1003.905000px;}
.yd_c00029{bottom:1022.745000px;}
.y12_c00029{bottom:1023.405000px;}
.y11_c00029{bottom:1023.630000px;}
.ye_c00029{bottom:1023.825000px;}
.y10_c00029{bottom:1024.470000px;}
.yf_c00029{bottom:1024.905000px;}
.y7_c00029{bottom:1042.245000px;}
.yb_c00029{bottom:1042.905000px;}
.y8_c00029{bottom:1043.325000px;}
.yc_c00029{bottom:1043.970000px;}
.y9_c00029{bottom:1044.405000px;}
.ya_c00029{bottom:1045.470000px;}
.y3_c00029{bottom:1060.470000px;}
.y2_c00029{bottom:1061.745000px;}
.y6_c00029{bottom:1062.405000px;}
.y5_c00029{bottom:1063.470000px;}
.y4_c00029{bottom:1063.905000px;}
.y1_c00029{bottom:1102.050000px;}
.h6_c00029{height:23.025234px;}
.h1_c00029{height:25.091602px;}
.h3_c00029{height:31.364502px;}
.h4_c00029{height:35.571035px;}
.h5_c00029{height:39.777568px;}
.h2_c00029{height:43.910303px;}
.h7_c00029{height:48.116836px;}
.h0_c00029{height:1335.000000px;}
.w0_c00029{width:880.500000px;}
.x0_c00029{left:0.000000px;}
.x2_c00029{left:150.000000px;}
.x3_c00029{left:151.500000px;}
.x5b_c00029{left:168.000000px;}
.x46_c00029{left:169.500000px;}
.x35_c00029{left:172.500000px;}
.x80_c00029{left:180.000000px;}
.x85_c00029{left:181.500000px;}
.x60_c00029{left:183.000000px;}
.x47_c00029{left:186.420000px;}
.x9f_c00029{left:187.500000px;}
.x8a_c00029{left:190.080000px;}
.x36_c00029{left:192.420000px;}
.x52_c00029{left:193.500000px;}
.x69_c00029{left:197.580000px;}
.x24_c00029{left:203.580000px;}
.x71_c00029{left:208.500000px;}
.x5c_c00029{left:210.000000px;}
.x98_c00029{left:216.000000px;}
.x3f_c00029{left:217.500000px;}
.x6a_c00029{left:219.000000px;}
.x53_c00029{left:220.500000px;}
.x2f_c00029{left:222.000000px;}
.x18_c00029{left:231.000000px;}
.x86_c00029{left:232.500000px;}
.x72_c00029{left:240.000000px;}
.x8b_c00029{left:241.500000px;}
.x99_c00029{left:243.000000px;}
.x4_c00029{left:244.080000px;}
.xf_c00029{left:247.080000px;}
.x61_c00029{left:250.500000px;}
.x79_c00029{left:251.775000px;}
.x54_c00029{left:255.000000px;}
.x94_c00029{left:256.920000px;}
.x48_c00029{left:262.500000px;}
.x5d_c00029{left:264.420000px;}
.x25_c00029{left:271.500000px;}
.x55_c00029{left:274.080000px;}
.x37_c00029{left:277.080000px;}
.x40_c00029{left:280.080000px;}
.x87_c00029{left:283.080000px;}
.x5_c00029{left:286.500000px;}
.x30_c00029{left:289.080000px;}
.x19_c00029{left:293.145000px;}
.x6b_c00029{left:294.420000px;}
.x81_c00029{left:310.500000px;}
.x8c_c00029{left:312.000000px;}
.x26_c00029{left:314.580000px;}
.x10_c00029{left:316.080000px;}
.x6_c00029{left:318.855000px;}
.x73_c00029{left:322.500000px;}
.x6c_c00029{left:328.500000px;}
.x8d_c00029{left:330.000000px;}
.x7a_c00029{left:333.000000px;}
.x1a_c00029{left:334.500000px;}
.x27_c00029{left:335.580000px;}
.x62_c00029{left:337.500000px;}
.x9a_c00029{left:339.420000px;}
.x38_c00029{left:341.580000px;}
.x56_c00029{left:343.500000px;}
.x74_c00029{left:346.500000px;}
.x31_c00029{left:348.000000px;}
.x11_c00029{left:349.500000px;}
.x1b_c00029{left:362.580000px;}
.x49_c00029{left:364.920000px;}
.x7b_c00029{left:367.920000px;}
.x82_c00029{left:369.000000px;}
.x7_c00029{left:371.580000px;}
.x8e_c00029{left:376.920000px;}
.x57_c00029{left:379.500000px;}
.x9b_c00029{left:382.080000px;}
.x1c_c00029{left:384.420000px;}
.x83_c00029{left:390.000000px;}
.x1_c00029{left:391.500000px;}
.x58_c00029{left:393.000000px;}
.x7c_c00029{left:396.000000px;}
.x88_c00029{left:405.000000px;}
.x12_c00029{left:410.580000px;}
.x28_c00029{left:412.080000px;}
.x1d_c00029{left:414.420000px;}
.x6d_c00029{left:420.000000px;}
.x95_c00029{left:424.080000px;}
.x41_c00029{left:433.920000px;}
.x63_c00029{left:435.645000px;}
.x8_c00029{left:437.580000px;}
.x1e_c00029{left:441.645000px;}
.x8f_c00029{left:444.000000px;}
.x84_c00029{left:445.920000px;}
.x13_c00029{left:447.000000px;}
.x6e_c00029{left:451.500000px;}
.x7d_c00029{left:453.000000px;}
.x39_c00029{left:456.000000px;}
.x75_c00029{left:457.500000px;}
.x9_c00029{left:459.420000px;}
.x42_c00029{left:463.080000px;}
.x29_c00029{left:473.580000px;}
.x4a_c00029{left:475.920000px;}
.x14_c00029{left:479.580000px;}
.x59_c00029{left:486.000000px;}
.xa_c00029{left:487.920000px;}
.x1f_c00029{left:491.580000px;}
.x15_c00029{left:500.580000px;}
.x3a_c00029{left:501.855000px;}
.x64_c00029{left:503.580000px;}
.x7e_c00029{left:511.500000px;}
.x2a_c00029{left:515.580000px;}
.x3b_c00029{left:519.000000px;}
.xb_c00029{left:524.580000px;}
.x4b_c00029{left:526.500000px;}
.x76_c00029{left:528.000000px;}
.x90_c00029{left:532.500000px;}
.x9c_c00029{left:534.420000px;}
.x43_c00029{left:535.500000px;}
.x3c_c00029{left:541.080000px;}
.x65_c00029{left:544.500000px;}
.x32_c00029{left:547.500000px;}
.x77_c00029{left:549.000000px;}
.x4c_c00029{left:552.000000px;}
.x6f_c00029{left:553.500000px;}
.x20_c00029{left:554.580000px;}
.x91_c00029{left:556.500000px;}
.x5a_c00029{left:558.000000px;}
.x5e_c00029{left:559.500000px;}
.x9d_c00029{left:565.080000px;}
.x4d_c00029{left:570.000000px;}
.x2b_c00029{left:573.000000px;}
.x21_c00029{left:574.920000px;}
.x92_c00029{left:580.500000px;}
.xc_c00029{left:584.580000px;}
.x44_c00029{left:595.500000px;}
.x22_c00029{left:602.580000px;}
.x70_c00029{left:605.580000px;}
.x4e_c00029{left:609.000000px;}
.x16_c00029{left:610.080000px;}
.x33_c00029{left:611.580000px;}
.x66_c00029{left:613.920000px;}
.x96_c00029{left:616.920000px;}
.x7f_c00029{left:619.500000px;}
.x3d_c00029{left:620.580000px;}
.x2c_c00029{left:633.000000px;}
.x4f_c00029{left:643.500000px;}
.x97_c00029{left:648.000000px;}
.x2d_c00029{left:653.355000px;}
.x5f_c00029{left:655.920000px;}
.x23_c00029{left:658.920000px;}
.x50_c00029{left:661.080000px;}
.x67_c00029{left:663.420000px;}
.x45_c00029{left:668.580000px;}
.x2e_c00029{left:672.000000px;}
.x89_c00029{left:675.420000px;}
.x93_c00029{left:676.500000px;}
.x17_c00029{left:683.580000px;}
.x3e_c00029{left:685.080000px;}
.xd_c00029{left:686.580000px;}
.x68_c00029{left:690.000000px;}
.x9e_c00029{left:697.500000px;}
.x51_c00029{left:703.080000px;}
.xe_c00029{left:706.920000px;}
.x34_c00029{left:711.000000px;}
.x78_c00029{left:715.500000px;}
@media print{
.v0_c00029{vertical-align:0.000000pt;}
.ls0_c00029{letter-spacing:0.000000pt;}
.ws0_c00029{word-spacing:0.000000pt;}
.fs5_c00029{font-size:16.640000pt;}
.fs0_c00029{font-size:18.133333pt;}
.fs2_c00029{font-size:22.666667pt;}
.fs3_c00029{font-size:25.706667pt;}
.fs4_c00029{font-size:28.746667pt;}
.fs1_c00029{font-size:31.733333pt;}
.fs6_c00029{font-size:34.773333pt;}
.y0_c00029{bottom:0.000000pt;}
.y60_c00029{bottom:612.360000pt;}
.y61_c00029{bottom:613.693333pt;}
.y5d_c00029{bottom:628.160000pt;}
.y5e_c00029{bottom:629.106667pt;}
.y5f_c00029{bottom:629.893333pt;}
.y5c_c00029{bottom:631.026667pt;}
.y5b_c00029{bottom:646.440000pt;}
.y5a_c00029{bottom:648.360000pt;}
.y59_c00029{bottom:663.400000pt;}
.y57_c00029{bottom:664.733333pt;}
.y58_c00029{bottom:665.306667pt;}
.y55_c00029{bottom:665.693333pt;}
.y56_c00029{bottom:666.640000pt;}
.y52_c00029{bottom:681.106667pt;}
.y53_c00029{bottom:681.306667pt;}
.y54_c00029{bottom:682.440000pt;}
.y4f_c00029{bottom:683.026667pt;}
.y51_c00029{bottom:683.973333pt;}
.y50_c00029{bottom:684.360000pt;}
.y4c_c00029{bottom:698.440000pt;}
.y4e_c00029{bottom:699.400000pt;}
.y4b_c00029{bottom:700.360000pt;}
.y4d_c00029{bottom:701.306667pt;}
.y44_c00029{bottom:715.026667pt;}
.y48_c00029{bottom:715.773333pt;}
.y47_c00029{bottom:716.733333pt;}
.y45_c00029{bottom:717.106667pt;}
.y43_c00029{bottom:717.693333pt;}
.y49_c00029{bottom:717.893333pt;}
.y4a_c00029{bottom:718.640000pt;}
.y46_c00029{bottom:719.026667pt;}
.y3c_c00029{bottom:733.106667pt;}
.y3e_c00029{bottom:734.440000pt;}
.y42_c00029{bottom:734.640000pt;}
.y41_c00029{bottom:735.026667pt;}
.y3f_c00029{bottom:735.226667pt;}
.y3d_c00029{bottom:735.973333pt;}
.y40_c00029{bottom:736.360000pt;}
.y37_c00029{bottom:749.693333pt;}
.y3b_c00029{bottom:750.826667pt;}
.y3a_c00029{bottom:751.400000pt;}
.y39_c00029{bottom:751.773333pt;}
.y38_c00029{bottom:753.693333pt;}
.y34_c00029{bottom:767.026667pt;}
.y32_c00029{bottom:768.160000pt;}
.y33_c00029{bottom:769.106667pt;}
.y36_c00029{bottom:770.066667pt;}
.y31_c00029{bottom:771.026667pt;}
.y35_c00029{bottom:771.973333pt;}
.y30_c00029{bottom:786.440000pt;}
.y2f_c00029{bottom:787.973333pt;}
.y2e_c00029{bottom:788.360000pt;}
.y2a_c00029{bottom:802.640000pt;}
.y2b_c00029{bottom:803.400000pt;}
.y2d_c00029{bottom:803.773333pt;}
.y2c_c00029{bottom:804.560000pt;}
.y29_c00029{bottom:805.693333pt;}
.y28_c00029{bottom:819.973333pt;}
.y23_c00029{bottom:821.106667pt;}
.y26_c00029{bottom:821.893333pt;}
.y25_c00029{bottom:822.066667pt;}
.y27_c00029{bottom:822.266667pt;}
.y24_c00029{bottom:822.640000pt;}
.y22_c00029{bottom:823.026667pt;}
.y21_c00029{bottom:837.493333pt;}
.y1d_c00029{bottom:838.440000pt;}
.y1e_c00029{bottom:839.400000pt;}
.y1f_c00029{bottom:840.360000pt;}
.y20_c00029{bottom:841.693333pt;}
.y1c_c00029{bottom:855.773333pt;}
.y1a_c00029{bottom:857.693333pt;}
.y1b_c00029{bottom:858.640000pt;}
.y16_c00029{bottom:873.106667pt;}
.y19_c00029{bottom:874.066667pt;}
.y18_c00029{bottom:875.026667pt;}
.y17_c00029{bottom:875.973333pt;}
.y14_c00029{bottom:890.440000pt;}
.y15_c00029{bottom:891.400000pt;}
.y13_c00029{bottom:892.360000pt;}
.yd_c00029{bottom:909.106667pt;}
.y12_c00029{bottom:909.693333pt;}
.y11_c00029{bottom:909.893333pt;}
.ye_c00029{bottom:910.066667pt;}
.y10_c00029{bottom:910.640000pt;}
.yf_c00029{bottom:911.026667pt;}
.y7_c00029{bottom:926.440000pt;}
.yb_c00029{bottom:927.026667pt;}
.y8_c00029{bottom:927.400000pt;}
.yc_c00029{bottom:927.973333pt;}
.y9_c00029{bottom:928.360000pt;}
.ya_c00029{bottom:929.306667pt;}
.y3_c00029{bottom:942.640000pt;}
.y2_c00029{bottom:943.773333pt;}
.y6_c00029{bottom:944.360000pt;}
.y5_c00029{bottom:945.306667pt;}
.y4_c00029{bottom:945.693333pt;}
.y1_c00029{bottom:979.600000pt;}
.h6_c00029{height:20.466875pt;}
.h1_c00029{height:22.303646pt;}
.h3_c00029{height:27.879557pt;}
.h4_c00029{height:31.618698pt;}
.h5_c00029{height:35.357839pt;}
.h2_c00029{height:39.031380pt;}
.h7_c00029{height:42.770521pt;}
.h0_c00029{height:1186.666667pt;}
.w0_c00029{width:782.666667pt;}
.x0_c00029{left:0.000000pt;}
.x2_c00029{left:133.333333pt;}
.x3_c00029{left:134.666667pt;}
.x5b_c00029{left:149.333333pt;}
.x46_c00029{left:150.666667pt;}
.x35_c00029{left:153.333333pt;}
.x80_c00029{left:160.000000pt;}
.x85_c00029{left:161.333333pt;}
.x60_c00029{left:162.666667pt;}
.x47_c00029{left:165.706667pt;}
.x9f_c00029{left:166.666667pt;}
.x8a_c00029{left:168.960000pt;}
.x36_c00029{left:171.040000pt;}
.x52_c00029{left:172.000000pt;}
.x69_c00029{left:175.626667pt;}
.x24_c00029{left:180.960000pt;}
.x71_c00029{left:185.333333pt;}
.x5c_c00029{left:186.666667pt;}
.x98_c00029{left:192.000000pt;}
.x3f_c00029{left:193.333333pt;}
.x6a_c00029{left:194.666667pt;}
.x53_c00029{left:196.000000pt;}
.x2f_c00029{left:197.333333pt;}
.x18_c00029{left:205.333333pt;}
.x86_c00029{left:206.666667pt;}
.x72_c00029{left:213.333333pt;}
.x8b_c00029{left:214.666667pt;}
.x99_c00029{left:216.000000pt;}
.x4_c00029{left:216.960000pt;}
.xf_c00029{left:219.626667pt;}
.x61_c00029{left:222.666667pt;}
.x79_c00029{left:223.800000pt;}
.x54_c00029{left:226.666667pt;}
.x94_c00029{left:228.373333pt;}
.x48_c00029{left:233.333333pt;}
.x5d_c00029{left:235.040000pt;}
.x25_c00029{left:241.333333pt;}
.x55_c00029{left:243.626667pt;}
.x37_c00029{left:246.293333pt;}
.x40_c00029{left:248.960000pt;}
.x87_c00029{left:251.626667pt;}
.x5_c00029{left:254.666667pt;}
.x30_c00029{left:256.960000pt;}
.x19_c00029{left:260.573333pt;}
.x6b_c00029{left:261.706667pt;}
.x81_c00029{left:276.000000pt;}
.x8c_c00029{left:277.333333pt;}
.x26_c00029{left:279.626667pt;}
.x10_c00029{left:280.960000pt;}
.x6_c00029{left:283.426667pt;}
.x73_c00029{left:286.666667pt;}
.x6c_c00029{left:292.000000pt;}
.x8d_c00029{left:293.333333pt;}
.x7a_c00029{left:296.000000pt;}
.x1a_c00029{left:297.333333pt;}
.x27_c00029{left:298.293333pt;}
.x62_c00029{left:300.000000pt;}
.x9a_c00029{left:301.706667pt;}
.x38_c00029{left:303.626667pt;}
.x56_c00029{left:305.333333pt;}
.x74_c00029{left:308.000000pt;}
.x31_c00029{left:309.333333pt;}
.x11_c00029{left:310.666667pt;}
.x1b_c00029{left:322.293333pt;}
.x49_c00029{left:324.373333pt;}
.x7b_c00029{left:327.040000pt;}
.x82_c00029{left:328.000000pt;}
.x7_c00029{left:330.293333pt;}
.x8e_c00029{left:335.040000pt;}
.x57_c00029{left:337.333333pt;}
.x9b_c00029{left:339.626667pt;}
.x1c_c00029{left:341.706667pt;}
.x83_c00029{left:346.666667pt;}
.x1_c00029{left:348.000000pt;}
.x58_c00029{left:349.333333pt;}
.x7c_c00029{left:352.000000pt;}
.x88_c00029{left:360.000000pt;}
.x12_c00029{left:364.960000pt;}
.x28_c00029{left:366.293333pt;}
.x1d_c00029{left:368.373333pt;}
.x6d_c00029{left:373.333333pt;}
.x95_c00029{left:376.960000pt;}
.x41_c00029{left:385.706667pt;}
.x63_c00029{left:387.240000pt;}
.x8_c00029{left:388.960000pt;}
.x1e_c00029{left:392.573333pt;}
.x8f_c00029{left:394.666667pt;}
.x84_c00029{left:396.373333pt;}
.x13_c00029{left:397.333333pt;}
.x6e_c00029{left:401.333333pt;}
.x7d_c00029{left:402.666667pt;}
.x39_c00029{left:405.333333pt;}
.x75_c00029{left:406.666667pt;}
.x9_c00029{left:408.373333pt;}
.x42_c00029{left:411.626667pt;}
.x29_c00029{left:420.960000pt;}
.x4a_c00029{left:423.040000pt;}
.x14_c00029{left:426.293333pt;}
.x59_c00029{left:432.000000pt;}
.xa_c00029{left:433.706667pt;}
.x1f_c00029{left:436.960000pt;}
.x15_c00029{left:444.960000pt;}
.x3a_c00029{left:446.093333pt;}
.x64_c00029{left:447.626667pt;}
.x7e_c00029{left:454.666667pt;}
.x2a_c00029{left:458.293333pt;}
.x3b_c00029{left:461.333333pt;}
.xb_c00029{left:466.293333pt;}
.x4b_c00029{left:468.000000pt;}
.x76_c00029{left:469.333333pt;}
.x90_c00029{left:473.333333pt;}
.x9c_c00029{left:475.040000pt;}
.x43_c00029{left:476.000000pt;}
.x3c_c00029{left:480.960000pt;}
.x65_c00029{left:484.000000pt;}
.x32_c00029{left:486.666667pt;}
.x77_c00029{left:488.000000pt;}
.x4c_c00029{left:490.666667pt;}
.x6f_c00029{left:492.000000pt;}
.x20_c00029{left:492.960000pt;}
.x91_c00029{left:494.666667pt;}
.x5a_c00029{left:496.000000pt;}
.x5e_c00029{left:497.333333pt;}
.x9d_c00029{left:502.293333pt;}
.x4d_c00029{left:506.666667pt;}
.x2b_c00029{left:509.333333pt;}
.x21_c00029{left:511.040000pt;}
.x92_c00029{left:516.000000pt;}
.xc_c00029{left:519.626667pt;}
.x44_c00029{left:529.333333pt;}
.x22_c00029{left:535.626667pt;}
.x70_c00029{left:538.293333pt;}
.x4e_c00029{left:541.333333pt;}
.x16_c00029{left:542.293333pt;}
.x33_c00029{left:543.626667pt;}
.x66_c00029{left:545.706667pt;}
.x96_c00029{left:548.373333pt;}
.x7f_c00029{left:550.666667pt;}
.x3d_c00029{left:551.626667pt;}
.x2c_c00029{left:562.666667pt;}
.x4f_c00029{left:572.000000pt;}
.x97_c00029{left:576.000000pt;}
.x2d_c00029{left:580.760000pt;}
.x5f_c00029{left:583.040000pt;}
.x23_c00029{left:585.706667pt;}
.x50_c00029{left:587.626667pt;}
.x67_c00029{left:589.706667pt;}
.x45_c00029{left:594.293333pt;}
.x2e_c00029{left:597.333333pt;}
.x89_c00029{left:600.373333pt;}
.x93_c00029{left:601.333333pt;}
.x17_c00029{left:607.626667pt;}
.x3e_c00029{left:608.960000pt;}
.xd_c00029{left:610.293333pt;}
.x68_c00029{left:613.333333pt;}
.x9e_c00029{left:620.000000pt;}
.x51_c00029{left:624.960000pt;}
.xe_c00029{left:628.373333pt;}
.x34_c00029{left:632.000000pt;}
.x78_c00029{left:636.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_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_d067329d56569576a0828234.woff2')format("woff");}.ff1_c00030{font-family:ff1_c00030;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m93_c00030{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m69_c00030{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.md1_c00030{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.m6c_c00030{transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);}
.m53_c00030{transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);}
.m7f_c00030{transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);}
.ma3_c00030{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m80_c00030{transform:matrix(0.365031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365031,0.000000,0.000000,0.250000,0,0);}
.m91_c00030{transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);}
.me_c00030{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m12_c00030{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m92_c00030{transform:matrix(0.371429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371429,0.000000,0.000000,0.250000,0,0);}
.m62_c00030{transform:matrix(0.373850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373850,0.000000,0.000000,0.250000,0,0);}
.m51_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);}
.m84_c00030{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.mce_c00030{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m95_c00030{transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);}
.m49_c00030{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m7d_c00030{transform:matrix(0.385353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385353,0.000000,0.000000,0.250000,0,0);}
.m6b_c00030{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m48_c00030{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m39_c00030{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m79_c00030{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m10_c00030{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.mbf_c00030{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m45_c00030{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.ma_c00030{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.ma0_c00030{transform:matrix(0.398006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398006,0.000000,0.000000,0.250000,0,0);}
.m4c_c00030{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mcf_c00030{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_c00030{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m8f_c00030{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.mac_c00030{transform:matrix(0.402607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402607,0.000000,0.000000,0.250000,0,0);}
.m96_c00030{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.mb1_c00030{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.m50_c00030{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.ma6_c00030{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mc8_c00030{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m2c_c00030{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m27_c00030{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.m9b_c00030{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mad_c00030{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m7a_c00030{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m71_c00030{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m57_c00030{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mb_c00030{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.mcc_c00030{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.ma7_c00030{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m5f_c00030{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m56_c00030{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m5b_c00030{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m9c_c00030{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m2b_c00030{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m1a_c00030{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m3e_c00030{transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);}
.md2_c00030{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m9f_c00030{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mb6_c00030{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m94_c00030{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m52_c00030{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.mb4_c00030{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m5_c00030{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m58_c00030{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.ma1_c00030{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m44_c00030{transform:matrix(0.434049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434049,0.000000,0.000000,0.250000,0,0);}
.mc6_c00030{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.mc9_c00030{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m47_c00030{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m8e_c00030{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.m81_c00030{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m46_c00030{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.mf_c00030{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m5d_c00030{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m7e_c00030{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m5e_c00030{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m55_c00030{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.m5c_c00030{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.maf_c00030{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m4_c00030{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.md5_c00030{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m29_c00030{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m88_c00030{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m87_c00030{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m3b_c00030{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m8_c00030{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m18_c00030{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.ma5_c00030{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m9e_c00030{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.mcb_c00030{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m24_c00030{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.md3_c00030{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m3c_c00030{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.mb3_c00030{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m76_c00030{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.ma9_c00030{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m34_c00030{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m75_c00030{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m0_c00030{transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);}
.m2d_c00030{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mc3_c00030{transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);}
.m3a_c00030{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m74_c00030{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m98_c00030{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mb7_c00030{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m83_c00030{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m20_c00030{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m6e_c00030{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m78_c00030{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m1f_c00030{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.mc_c00030{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_c00030{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m43_c00030{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m25_c00030{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m89_c00030{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m13_c00030{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m36_c00030{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m41_c00030{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.md4_c00030{transform:matrix(0.510668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510668,0.000000,0.000000,0.250000,0,0);}
.mb5_c00030{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m1c_c00030{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.mbd_c00030{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m26_c00030{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m67_c00030{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.mc1_c00030{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m64_c00030{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m4e_c00030{transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);}
.m7_c00030{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m65_c00030{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mbc_c00030{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m6_c00030{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.md0_c00030{transform:matrix(0.524583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524583,0.000000,0.000000,0.250000,0,0);}
.mbb_c00030{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mba_c00030{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m17_c00030{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.mc4_c00030{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m3_c00030{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m82_c00030{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m61_c00030{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m68_c00030{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m23_c00030{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m35_c00030{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m2a_c00030{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m28_c00030{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m99_c00030{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m3d_c00030{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mca_c00030{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m77_c00030{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m33_c00030{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m4f_c00030{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m7c_c00030{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m6f_c00030{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m37_c00030{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m16_c00030{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mab_c00030{transform:matrix(0.546382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546382,0.000000,0.000000,0.250000,0,0);}
.m8c_c00030{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.ma4_c00030{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.ma8_c00030{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m90_c00030{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m1d_c00030{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m15_c00030{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m8a_c00030{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m9d_c00030{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mae_c00030{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.md_c00030{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m86_c00030{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m4b_c00030{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m70_c00030{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mc7_c00030{transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);}
.m6a_c00030{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m9_c00030{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mcd_c00030{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.maa_c00030{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m40_c00030{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m32_c00030{transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);}
.mb9_c00030{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.md6_c00030{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m14_c00030{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mc0_c00030{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m31_c00030{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m11_c00030{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m63_c00030{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m4d_c00030{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m9a_c00030{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m2e_c00030{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m22_c00030{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mc5_c00030{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m2_c00030{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_c00030{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m60_c00030{transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);}
.m85_c00030{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.mb0_c00030{transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);}
.m4a_c00030{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m38_c00030{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);}
.m7b_c00030{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m30_c00030{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m1b_c00030{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m1e_c00030{transform:matrix(0.673878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673878,0.000000,0.000000,0.250000,0,0);}
.m72_c00030{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m97_c00030{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m73_c00030{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m1_c00030{transform:matrix(0.712894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712894,0.000000,0.000000,0.250000,0,0);}
.mbe_c00030{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m2f_c00030{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m6d_c00030{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.ma2_c00030{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mb8_c00030{transform:matrix(0.742788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742788,0.000000,0.000000,0.250000,0,0);}
.m42_c00030{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m21_c00030{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.m59_c00030{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m8b_c00030{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mb2_c00030{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m3f_c00030{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m8d_c00030{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m5a_c00030{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mc2_c00030{transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.915865,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:-16.889280px;}
.ws1_c00030{word-spacing:-2.037000px;}
.ws2_c00030{word-spacing:0.000000px;}
._0_c00030{width:4.112149px;}
.fc0_c00030{color:transparent;}
.fs4_c00030{font-size:18.720000px;}
.fs5_c00030{font-size:20.400000px;}
.fs3_c00030{font-size:25.500000px;}
.fs1_c00030{font-size:28.920000px;}
.fs0_c00030{font-size:32.340000px;}
.fs2_c00030{font-size:35.700000px;}
.fs6_c00030{font-size:39.120000px;}
.y0_c00030{bottom:0.000000px;}
.ye3_c00030{bottom:230.745000px;}
.ye2_c00030{bottom:232.470000px;}
.ye1_c00030{bottom:232.905000px;}
.ye4_c00030{bottom:234.630000px;}
.ye0_c00030{bottom:234.825000px;}
.ydf_c00030{bottom:237.405000px;}
.yde_c00030{bottom:250.905000px;}
.ydd_c00030{bottom:251.745000px;}
.ydc_c00030{bottom:252.825000px;}
.ydb_c00030{bottom:253.245000px;}
.yd9_c00030{bottom:271.245000px;}
.yd5_c00030{bottom:271.680000px;}
.yd6_c00030{bottom:271.905000px;}
.yda_c00030{bottom:272.745000px;}
.yd7_c00030{bottom:272.970000px;}
.yd8_c00030{bottom:273.405000px;}
.yd4_c00030{bottom:290.745000px;}
.yd3_c00030{bottom:292.470000px;}
.yd2_c00030{bottom:292.905000px;}
.yd1_c00030{bottom:293.325000px;}
.yd0_c00030{bottom:295.050000px;}
.ycf_c00030{bottom:296.130000px;}
.ycc_c00030{bottom:314.745000px;}
.ycd_c00030{bottom:316.470000px;}
.yce_c00030{bottom:316.905000px;}
.yc9_c00030{bottom:343.245000px;}
.yca_c00030{bottom:344.325000px;}
.yc7_c00030{bottom:344.745000px;}
.yc6_c00030{bottom:345.630000px;}
.yc8_c00030{bottom:346.470000px;}
.yc5_c00030{bottom:346.905000px;}
.ycb_c00030{bottom:347.970000px;}
.yc4_c00030{bottom:348.405000px;}
.yc2_c00030{bottom:365.130000px;}
.yc1_c00030{bottom:365.550000px;}
.yc3_c00030{bottom:366.405000px;}
.yc0_c00030{bottom:367.905000px;}
.ybf_c00030{bottom:369.405000px;}
.yba_c00030{bottom:382.245000px;}
.yb8_c00030{bottom:383.325000px;}
.ybe_c00030{bottom:383.745000px;}
.yb9_c00030{bottom:384.405000px;}
.ybd_c00030{bottom:384.630000px;}
.ybc_c00030{bottom:384.825000px;}
.yb7_c00030{bottom:385.470000px;}
.ybb_c00030{bottom:385.905000px;}
.yb6_c00030{bottom:386.325000px;}
.yb3_c00030{bottom:400.905000px;}
.yb4_c00030{bottom:403.245000px;}
.yb5_c00030{bottom:404.130000px;}
.yb2_c00030{bottom:405.405000px;}
.yb0_c00030{bottom:405.825000px;}
.yb1_c00030{bottom:406.905000px;}
.yaf_c00030{bottom:409.050000px;}
.yab_c00030{bottom:422.745000px;}
.yaa_c00030{bottom:423.180000px;}
.yae_c00030{bottom:423.825000px;}
.yac_c00030{bottom:424.470000px;}
.yad_c00030{bottom:424.905000px;}
.ya9_c00030{bottom:426.405000px;}
.ya8_c00030{bottom:428.325000px;}
.ya7_c00030{bottom:446.325000px;}
.ya6_c00030{bottom:448.905000px;}
.ya3_c00030{bottom:461.745000px;}
.ya5_c00030{bottom:462.825000px;}
.ya1_c00030{bottom:463.245000px;}
.ya4_c00030{bottom:463.905000px;}
.ya2_c00030{bottom:464.970000px;}
.ya0_c00030{bottom:465.405000px;}
.y9f_c00030{bottom:467.325000px;}
.y9d_c00030{bottom:480.405000px;}
.y9a_c00030{bottom:481.245000px;}
.y9c_c00030{bottom:482.745000px;}
.y9e_c00030{bottom:483.405000px;}
.y9b_c00030{bottom:483.630000px;}
.y99_c00030{bottom:484.905000px;}
.y98_c00030{bottom:486.825000px;}
.y97_c00030{bottom:501.180000px;}
.y95_c00030{bottom:502.245000px;}
.y96_c00030{bottom:504.405000px;}
.y94_c00030{bottom:507.825000px;}
.y91_c00030{bottom:521.745000px;}
.y92_c00030{bottom:523.905000px;}
.y93_c00030{bottom:524.130000px;}
.y8f_c00030{bottom:524.745000px;}
.y90_c00030{bottom:525.405000px;}
.y8a_c00030{bottom:540.405000px;}
.y8e_c00030{bottom:540.825000px;}
.y8c_c00030{bottom:542.970000px;}
.y8b_c00030{bottom:543.405000px;}
.y8d_c00030{bottom:543.630000px;}
.y89_c00030{bottom:544.470000px;}
.y88_c00030{bottom:547.905000px;}
.y85_c00030{bottom:559.680000px;}
.y87_c00030{bottom:559.905000px;}
.y84_c00030{bottom:560.745000px;}
.y80_c00030{bottom:562.470000px;}
.y82_c00030{bottom:562.905000px;}
.y83_c00030{bottom:563.130000px;}
.y7f_c00030{bottom:563.745000px;}
.y86_c00030{bottom:563.970000px;}
.y81_c00030{bottom:564.405000px;}
.y7e_c00030{bottom:579.405000px;}
.y7c_c00030{bottom:581.745000px;}
.y7d_c00030{bottom:582.630000px;}
.y7b_c00030{bottom:583.905000px;}
.y7a_c00030{bottom:586.905000px;}
.y79_c00030{bottom:602.130000px;}
.y76_c00030{bottom:602.325000px;}
.y78_c00030{bottom:603.405000px;}
.y77_c00030{bottom:604.470000px;}
.y75_c00030{bottom:606.405000px;}
.y73_c00030{bottom:622.905000px;}
.y72_c00030{bottom:623.745000px;}
.y74_c00030{bottom:623.970000px;}
.y6f_c00030{bottom:642.180000px;}
.y71_c00030{bottom:642.405000px;}
.y70_c00030{bottom:642.825000px;}
.y6d_c00030{bottom:660.180000px;}
.y6e_c00030{bottom:661.245000px;}
.y6b_c00030{bottom:661.905000px;}
.y6a_c00030{bottom:662.325000px;}
.y6c_c00030{bottom:663.405000px;}
.y69_c00030{bottom:664.470000px;}
.y66_c00030{bottom:680.325000px;}
.y68_c00030{bottom:680.745000px;}
.y67_c00030{bottom:682.470000px;}
.y65_c00030{bottom:682.905000px;}
.y64_c00030{bottom:684.405000px;}
.y5f_c00030{bottom:697.905000px;}
.y62_c00030{bottom:700.905000px;}
.y60_c00030{bottom:701.130000px;}
.y5e_c00030{bottom:701.745000px;}
.y61_c00030{bottom:701.970000px;}
.y63_c00030{bottom:702.405000px;}
.y59_c00030{bottom:717.405000px;}
.y5a_c00030{bottom:719.745000px;}
.y5b_c00030{bottom:720.630000px;}
.y5c_c00030{bottom:721.470000px;}
.y57_c00030{bottom:721.680000px;}
.y58_c00030{bottom:721.905000px;}
.y5d_c00030{bottom:722.130000px;}
.y54_c00030{bottom:738.405000px;}
.y56_c00030{bottom:739.245000px;}
.y55_c00030{bottom:740.970000px;}
.y52_c00030{bottom:741.405000px;}
.y53_c00030{bottom:742.905000px;}
.y4e_c00030{bottom:758.745000px;}
.y4f_c00030{bottom:760.470000px;}
.y4c_c00030{bottom:760.680000px;}
.y4d_c00030{bottom:760.905000px;}
.y50_c00030{bottom:761.970000px;}
.y51_c00030{bottom:762.405000px;}
.y46_c00030{bottom:777.825000px;}
.y47_c00030{bottom:779.325000px;}
.y49_c00030{bottom:779.745000px;}
.y48_c00030{bottom:780.405000px;}
.y45_c00030{bottom:780.630000px;}
.y44_c00030{bottom:780.825000px;}
.y4a_c00030{bottom:781.470000px;}
.y4b_c00030{bottom:781.905000px;}
.y3f_c00030{bottom:797.745000px;}
.y3e_c00030{bottom:798.825000px;}
.y41_c00030{bottom:799.245000px;}
.y43_c00030{bottom:800.130000px;}
.y3c_c00030{bottom:800.745000px;}
.y40_c00030{bottom:800.970000px;}
.y42_c00030{bottom:801.405000px;}
.y3d_c00030{bottom:802.470000px;}
.y3b_c00030{bottom:817.680000px;}
.y3a_c00030{bottom:818.745000px;}
.y39_c00030{bottom:820.470000px;}
.y38_c00030{bottom:820.905000px;}
.y37_c00030{bottom:822.405000px;}
.y32_c00030{bottom:836.745000px;}
.y35_c00030{bottom:836.970000px;}
.y33_c00030{bottom:838.245000px;}
.y34_c00030{bottom:838.905000px;}
.y36_c00030{bottom:839.970000px;}
.y31_c00030{bottom:840.405000px;}
.y30_c00030{bottom:840.825000px;}
.y2c_c00030{bottom:855.405000px;}
.y2d_c00030{bottom:856.680000px;}
.y2e_c00030{bottom:856.905000px;}
.y2f_c00030{bottom:857.745000px;}
.y2a_c00030{bottom:858.630000px;}
.y2b_c00030{bottom:859.470000px;}
.y28_c00030{bottom:859.680000px;}
.y29_c00030{bottom:859.905000px;}
.y24_c00030{bottom:877.245000px;}
.y25_c00030{bottom:878.325000px;}
.y23_c00030{bottom:878.550000px;}
.y27_c00030{bottom:878.745000px;}
.y26_c00030{bottom:879.405000px;}
.y22_c00030{bottom:880.905000px;}
.y21_c00030{bottom:897.825000px;}
.y1f_c00030{bottom:898.905000px;}
.y20_c00030{bottom:899.970000px;}
.y1e_c00030{bottom:900.405000px;}
.y1d_c00030{bottom:901.905000px;}
.y18_c00030{bottom:916.245000px;}
.y1b_c00030{bottom:917.325000px;}
.y17_c00030{bottom:918.405000px;}
.y1a_c00030{bottom:918.630000px;}
.y19_c00030{bottom:919.470000px;}
.y1c_c00030{bottom:919.905000px;}
.y16_c00030{bottom:920.325000px;}
.y15_c00030{bottom:921.405000px;}
.y14_c00030{bottom:937.245000px;}
.y12_c00030{bottom:938.130000px;}
.y13_c00030{bottom:938.325000px;}
.y11_c00030{bottom:939.405000px;}
.y10_c00030{bottom:939.825000px;}
.yd_c00030{bottom:956.745000px;}
.ye_c00030{bottom:958.470000px;}
.yc_c00030{bottom:958.905000px;}
.yf_c00030{bottom:959.130000px;}
.yb_c00030{bottom:960.405000px;}
.ya_c00030{bottom:961.470000px;}
.y7_c00030{bottom:973.905000px;}
.y9_c00030{bottom:976.245000px;}
.y6_c00030{bottom:977.745000px;}
.y8_c00030{bottom:978.405000px;}
.y4_c00030{bottom:995.325000px;}
.y5_c00030{bottom:995.745000px;}
.y3_c00030{bottom:997.905000px;}
.y2_c00030{bottom:999.405000px;}
.y1_c00030{bottom:1026.825000px;}
.h5_c00030{height:23.025234px;}
.h6_c00030{height:25.091602px;}
.h4_c00030{height:31.364502px;}
.h2_c00030{height:35.571035px;}
.h1_c00030{height:39.777568px;}
.h3_c00030{height:43.910303px;}
.h7_c00030{height:48.116836px;}
.h0_c00030{height:1335.000000px;}
.w0_c00030{width:880.500000px;}
.x0_c00030{left:0.000000px;}
.xf_c00030{left:153.420000px;}
.x80_c00030{left:154.500000px;}
.x88_c00030{left:155.775000px;}
.xf2_c00030{left:162.000000px;}
.x3_c00030{left:169.500000px;}
.x1b_c00030{left:171.420000px;}
.x62_c00030{left:175.920000px;}
.xb0_c00030{left:181.080000px;}
.x25_c00030{left:182.580000px;}
.x43_c00030{left:189.000000px;}
.x4_c00030{left:190.920000px;}
.xd7_c00030{left:192.420000px;}
.x68_c00030{left:194.580000px;}
.x1c_c00030{left:197.580000px;}
.x57_c00030{left:200.580000px;}
.x63_c00030{left:203.580000px;}
.xb8_c00030{left:205.920000px;}
.x4c_c00030{left:210.000000px;}
.xc8_c00030{left:211.080000px;}
.x10_c00030{left:214.920000px;}
.x3a_c00030{left:216.000000px;}
.x71_c00030{left:217.500000px;}
.x5_c00030{left:219.000000px;}
.x58_c00030{left:220.080000px;}
.x96_c00030{left:223.500000px;}
.xb1_c00030{left:224.580000px;}
.x89_c00030{left:226.500000px;}
.x44_c00030{left:227.580000px;}
.x26_c00030{left:229.500000px;}
.xb9_c00030{left:230.580000px;}
.x72_c00030{left:234.000000px;}
.xe2_c00030{left:235.500000px;}
.xf3_c00030{left:237.000000px;}
.x1d_c00030{left:241.500000px;}
.xd0_c00030{left:243.000000px;}
.xc6_c00030{left:244.080000px;}
.xa5_c00030{left:247.080000px;}
.x4d_c00030{left:250.080000px;}
.xf9_c00030{left:252.000000px;}
.x92_c00030{left:253.080000px;}
.x8a_c00030{left:254.580000px;}
.xe3_c00030{left:256.500000px;}
.xbc_c00030{left:258.000000px;}
.x81_c00030{left:261.420000px;}
.x11_c00030{left:265.080000px;}
.x7a_c00030{left:267.420000px;}
.x27_c00030{left:271.500000px;}
.x6_c00030{left:274.500000px;}
.x3b_c00030{left:277.500000px;}
.x8f_c00030{left:278.580000px;}
.x59_c00030{left:280.080000px;}
.x45_c00030{left:285.420000px;}
.xa6_c00030{left:287.580000px;}
.x28_c00030{left:289.080000px;}
.x3c_c00030{left:292.500000px;}
.x69_c00030{left:295.500000px;}
.x12_c00030{left:297.000000px;}
.x4e_c00030{left:298.500000px;}
.x90_c00030{left:300.420000px;}
.x97_c00030{left:303.420000px;}
.xee_c00030{left:304.500000px;}
.xc7_c00030{left:305.580000px;}
.xa7_c00030{left:309.420000px;}
.x1e_c00030{left:312.000000px;}
.x82_c00030{left:313.500000px;}
.x64_c00030{left:314.580000px;}
.xd8_c00030{left:319.500000px;}
.xe6_c00030{left:322.500000px;}
.xc1_c00030{left:324.420000px;}
.x5a_c00030{left:325.500000px;}
.xc9_c00030{left:328.500000px;}
.x91_c00030{left:330.000000px;}
.x9d_c00030{left:331.500000px;}
.x29_c00030{left:333.420000px;}
.xba_c00030{left:334.500000px;}
.xa8_c00030{left:338.580000px;}
.x83_c00030{left:340.500000px;}
.x7b_c00030{left:341.580000px;}
.xf4_c00030{left:343.500000px;}
.x73_c00030{left:345.420000px;}
.xb2_c00030{left:346.920000px;}
.xe4_c00030{left:348.420000px;}
.x13_c00030{left:349.500000px;}
.x46_c00030{left:350.580000px;}
.xbd_c00030{left:352.080000px;}
.x31_c00030{left:355.920000px;}
.x6a_c00030{left:357.000000px;}
.x7_c00030{left:358.920000px;}
.x1_c00030{left:361.500000px;}
.x3d_c00030{left:363.000000px;}
.x4f_c00030{left:364.080000px;}
.xd1_c00030{left:367.500000px;}
.xd9_c00030{left:368.580000px;}
.xea_c00030{left:370.500000px;}
.x74_c00030{left:371.580000px;}
.x8b_c00030{left:373.500000px;}
.xb3_c00030{left:375.000000px;}
.x6b_c00030{left:376.500000px;}
.xca_c00030{left:379.500000px;}
.x3e_c00030{left:381.420000px;}
.x1f_c00030{left:382.500000px;}
.x50_c00030{left:384.420000px;}
.xa9_c00030{left:385.500000px;}
.x8_c00030{left:387.000000px;}
.x5b_c00030{left:388.080000px;}
.xbb_c00030{left:390.000000px;}
.x65_c00030{left:392.580000px;}
.xde_c00030{left:397.080000px;}
.x2a_c00030{left:398.580000px;}
.x14_c00030{left:402.000000px;}
.x20_c00030{left:404.580000px;}
.xef_c00030{left:406.080000px;}
.x3f_c00030{left:408.000000px;}
.x2_c00030{left:411.420000px;}
.x32_c00030{left:414.420000px;}
.x5c_c00030{left:417.000000px;}
.x98_c00030{left:418.080000px;}
.x47_c00030{left:420.000000px;}
.xcb_c00030{left:421.920000px;}
.x51_c00030{left:424.920000px;}
.x7c_c00030{left:427.500000px;}
.x33_c00030{left:433.500000px;}
.xe7_c00030{left:436.500000px;}
.x9e_c00030{left:439.920000px;}
.xda_c00030{left:441.000000px;}
.x93_c00030{left:442.920000px;}
.x2b_c00030{left:446.580000px;}
.xf0_c00030{left:457.500000px;}
.x34_c00030{left:459.000000px;}
.x5d_c00030{left:460.080000px;}
.x2c_c00030{left:462.000000px;}
.xdf_c00030{left:463.080000px;}
.xbe_c00030{left:465.000000px;}
.x21_c00030{left:468.000000px;}
.x9f_c00030{left:469.920000px;}
.x6c_c00030{left:471.000000px;}
.x94_c00030{left:472.080000px;}
.xeb_c00030{left:477.000000px;}
.x52_c00030{left:480.000000px;}
.x9_c00030{left:481.080000px;}
.x75_c00030{left:483.000000px;}
.x99_c00030{left:484.500000px;}
.x15_c00030{left:487.500000px;}
.xc2_c00030{left:489.645000px;}
.xec_c00030{left:496.920000px;}
.x35_c00030{left:499.500000px;}
.x5e_c00030{left:500.580000px;}
.x6d_c00030{left:502.500000px;}
.xbf_c00030{left:505.080000px;}
.x2d_c00030{left:507.000000px;}
.xa0_c00030{left:508.920000px;}
.xd2_c00030{left:510.000000px;}
.x48_c00030{left:511.500000px;}
.xa_c00030{left:513.420000px;}
.xaa_c00030{left:514.500000px;}
.x95_c00030{left:515.580000px;}
.x36_c00030{left:519.000000px;}
.xf5_c00030{left:521.580000px;}
.xed_c00030{left:523.500000px;}
.x16_c00030{left:525.420000px;}
.xdb_c00030{left:528.000000px;}
.x53_c00030{left:529.500000px;}
.xf1_c00030{left:530.580000px;}
.x6e_c00030{left:534.000000px;}
.x40_c00030{left:537.000000px;}
.xcc_c00030{left:538.080000px;}
.xb_c00030{left:541.500000px;}
.x9a_c00030{left:544.080000px;}
.xa1_c00030{left:546.420000px;}
.xe8_c00030{left:547.920000px;}
.x54_c00030{left:549.000000px;}
.xd3_c00030{left:550.080000px;}
.xab_c00030{left:552.000000px;}
.xf7_c00030{left:553.080000px;}
.x17_c00030{left:554.775000px;}
.x5f_c00030{left:556.080000px;}
.x66_c00030{left:558.420000px;}
.x22_c00030{left:560.580000px;}
.xc3_c00030{left:562.500000px;}
.x55_c00030{left:564.000000px;}
.x84_c00030{left:566.580000px;}
.xd4_c00030{left:568.080000px;}
.xcd_c00030{left:570.000000px;}
.x41_c00030{left:571.080000px;}
.xe9_c00030{left:575.580000px;}
.x76_c00030{left:577.500000px;}
.x8c_c00030{left:579.420000px;}
.xdc_c00030{left:580.500000px;}
.xf8_c00030{left:583.920000px;}
.xc0_c00030{left:586.500000px;}
.xa2_c00030{left:588.000000px;}
.x18_c00030{left:589.080000px;}
.xb4_c00030{left:591.000000px;}
.x37_c00030{left:592.500000px;}
.x77_c00030{left:595.920000px;}
.x85_c00030{left:597.000000px;}
.xc4_c00030{left:598.500000px;}
.xf6_c00030{left:604.920000px;}
.x6f_c00030{left:606.000000px;}
.x9b_c00030{left:608.580000px;}
.x38_c00030{left:610.920000px;}
.x7d_c00030{left:612.000000px;}
.xd5_c00030{left:613.500000px;}
.x42_c00030{left:615.000000px;}
.xac_c00030{left:616.500000px;}
.x8d_c00030{left:618.420000px;}
.x23_c00030{left:619.920000px;}
.x78_c00030{left:621.000000px;}
.x19_c00030{left:622.275000px;}
.x67_c00030{left:625.920000px;}
.xce_c00030{left:628.920000px;}
.xb5_c00030{left:630.420000px;}
.x60_c00030{left:633.000000px;}
.xc_c00030{left:634.080000px;}
.xad_c00030{left:636.000000px;}
.x49_c00030{left:643.500000px;}
.x8e_c00030{left:646.920000px;}
.x39_c00030{left:648.420000px;}
.x2e_c00030{left:649.500000px;}
.xae_c00030{left:651.000000px;}
.xd_c00030{left:654.420000px;}
.xe0_c00030{left:655.500000px;}
.xcf_c00030{left:657.000000px;}
.x1a_c00030{left:658.500000px;}
.xdd_c00030{left:660.000000px;}
.xa3_c00030{left:661.500000px;}
.x61_c00030{left:663.000000px;}
.xb6_c00030{left:664.500000px;}
.x2f_c00030{left:666.420000px;}
.x70_c00030{left:667.920000px;}
.x24_c00030{left:669.000000px;}
.x79_c00030{left:670.500000px;}
.x86_c00030{left:671.580000px;}
.x56_c00030{left:673.500000px;}
.xd6_c00030{left:674.580000px;}
.x7e_c00030{left:679.080000px;}
.xe1_c00030{left:681.000000px;}
.x9c_c00030{left:682.080000px;}
.xe_c00030{left:684.000000px;}
.x87_c00030{left:687.855000px;}
.x4a_c00030{left:690.000000px;}
.x30_c00030{left:691.920000px;}
.xfa_c00030{left:695.580000px;}
.x7f_c00030{left:700.920000px;}
.xc5_c00030{left:703.080000px;}
.x4b_c00030{left:708.420000px;}
.xb7_c00030{left:711.000000px;}
.xa4_c00030{left:713.580000px;}
.xe5_c00030{left:715.080000px;}
.xaf_c00030{left:717.000000px;}
.xfb_c00030{left:721.500000px;}
@media print{
.v0_c00030{vertical-align:0.000000pt;}
.ls0_c00030{letter-spacing:0.000000pt;}
.ws0_c00030{word-spacing:-15.012693pt;}
.ws1_c00030{word-spacing:-1.810667pt;}
.ws2_c00030{word-spacing:0.000000pt;}
._0_c00030{width:3.655243pt;}
.fs4_c00030{font-size:16.640000pt;}
.fs5_c00030{font-size:18.133333pt;}
.fs3_c00030{font-size:22.666667pt;}
.fs1_c00030{font-size:25.706667pt;}
.fs0_c00030{font-size:28.746667pt;}
.fs2_c00030{font-size:31.733333pt;}
.fs6_c00030{font-size:34.773333pt;}
.y0_c00030{bottom:0.000000pt;}
.ye3_c00030{bottom:205.106667pt;}
.ye2_c00030{bottom:206.640000pt;}
.ye1_c00030{bottom:207.026667pt;}
.ye4_c00030{bottom:208.560000pt;}
.ye0_c00030{bottom:208.733333pt;}
.ydf_c00030{bottom:211.026667pt;}
.yde_c00030{bottom:223.026667pt;}
.ydd_c00030{bottom:223.773333pt;}
.ydc_c00030{bottom:224.733333pt;}
.ydb_c00030{bottom:225.106667pt;}
.yd9_c00030{bottom:241.106667pt;}
.yd5_c00030{bottom:241.493333pt;}
.yd6_c00030{bottom:241.693333pt;}
.yda_c00030{bottom:242.440000pt;}
.yd7_c00030{bottom:242.640000pt;}
.yd8_c00030{bottom:243.026667pt;}
.yd4_c00030{bottom:258.440000pt;}
.yd3_c00030{bottom:259.973333pt;}
.yd2_c00030{bottom:260.360000pt;}
.yd1_c00030{bottom:260.733333pt;}
.yd0_c00030{bottom:262.266667pt;}
.ycf_c00030{bottom:263.226667pt;}
.ycc_c00030{bottom:279.773333pt;}
.ycd_c00030{bottom:281.306667pt;}
.yce_c00030{bottom:281.693333pt;}
.yc9_c00030{bottom:305.106667pt;}
.yca_c00030{bottom:306.066667pt;}
.yc7_c00030{bottom:306.440000pt;}
.yc6_c00030{bottom:307.226667pt;}
.yc8_c00030{bottom:307.973333pt;}
.yc5_c00030{bottom:308.360000pt;}
.ycb_c00030{bottom:309.306667pt;}
.yc4_c00030{bottom:309.693333pt;}
.yc2_c00030{bottom:324.560000pt;}
.yc1_c00030{bottom:324.933333pt;}
.yc3_c00030{bottom:325.693333pt;}
.yc0_c00030{bottom:327.026667pt;}
.ybf_c00030{bottom:328.360000pt;}
.yba_c00030{bottom:339.773333pt;}
.yb8_c00030{bottom:340.733333pt;}
.ybe_c00030{bottom:341.106667pt;}
.yb9_c00030{bottom:341.693333pt;}
.ybd_c00030{bottom:341.893333pt;}
.ybc_c00030{bottom:342.066667pt;}
.yb7_c00030{bottom:342.640000pt;}
.ybb_c00030{bottom:343.026667pt;}
.yb6_c00030{bottom:343.400000pt;}
.yb3_c00030{bottom:356.360000pt;}
.yb4_c00030{bottom:358.440000pt;}
.yb5_c00030{bottom:359.226667pt;}
.yb2_c00030{bottom:360.360000pt;}
.yb0_c00030{bottom:360.733333pt;}
.yb1_c00030{bottom:361.693333pt;}
.yaf_c00030{bottom:363.600000pt;}
.yab_c00030{bottom:375.773333pt;}
.yaa_c00030{bottom:376.160000pt;}
.yae_c00030{bottom:376.733333pt;}
.yac_c00030{bottom:377.306667pt;}
.yad_c00030{bottom:377.693333pt;}
.ya9_c00030{bottom:379.026667pt;}
.ya8_c00030{bottom:380.733333pt;}
.ya7_c00030{bottom:396.733333pt;}
.ya6_c00030{bottom:399.026667pt;}
.ya3_c00030{bottom:410.440000pt;}
.ya5_c00030{bottom:411.400000pt;}
.ya1_c00030{bottom:411.773333pt;}
.ya4_c00030{bottom:412.360000pt;}
.ya2_c00030{bottom:413.306667pt;}
.ya0_c00030{bottom:413.693333pt;}
.y9f_c00030{bottom:415.400000pt;}
.y9d_c00030{bottom:427.026667pt;}
.y9a_c00030{bottom:427.773333pt;}
.y9c_c00030{bottom:429.106667pt;}
.y9e_c00030{bottom:429.693333pt;}
.y9b_c00030{bottom:429.893333pt;}
.y99_c00030{bottom:431.026667pt;}
.y98_c00030{bottom:432.733333pt;}
.y97_c00030{bottom:445.493333pt;}
.y95_c00030{bottom:446.440000pt;}
.y96_c00030{bottom:448.360000pt;}
.y94_c00030{bottom:451.400000pt;}
.y91_c00030{bottom:463.773333pt;}
.y92_c00030{bottom:465.693333pt;}
.y93_c00030{bottom:465.893333pt;}
.y8f_c00030{bottom:466.440000pt;}
.y90_c00030{bottom:467.026667pt;}
.y8a_c00030{bottom:480.360000pt;}
.y8e_c00030{bottom:480.733333pt;}
.y8c_c00030{bottom:482.640000pt;}
.y8b_c00030{bottom:483.026667pt;}
.y8d_c00030{bottom:483.226667pt;}
.y89_c00030{bottom:483.973333pt;}
.y88_c00030{bottom:487.026667pt;}
.y85_c00030{bottom:497.493333pt;}
.y87_c00030{bottom:497.693333pt;}
.y84_c00030{bottom:498.440000pt;}
.y80_c00030{bottom:499.973333pt;}
.y82_c00030{bottom:500.360000pt;}
.y83_c00030{bottom:500.560000pt;}
.y7f_c00030{bottom:501.106667pt;}
.y86_c00030{bottom:501.306667pt;}
.y81_c00030{bottom:501.693333pt;}
.y7e_c00030{bottom:515.026667pt;}
.y7c_c00030{bottom:517.106667pt;}
.y7d_c00030{bottom:517.893333pt;}
.y7b_c00030{bottom:519.026667pt;}
.y7a_c00030{bottom:521.693333pt;}
.y79_c00030{bottom:535.226667pt;}
.y76_c00030{bottom:535.400000pt;}
.y78_c00030{bottom:536.360000pt;}
.y77_c00030{bottom:537.306667pt;}
.y75_c00030{bottom:539.026667pt;}
.y73_c00030{bottom:553.693333pt;}
.y72_c00030{bottom:554.440000pt;}
.y74_c00030{bottom:554.640000pt;}
.y6f_c00030{bottom:570.826667pt;}
.y71_c00030{bottom:571.026667pt;}
.y70_c00030{bottom:571.400000pt;}
.y6d_c00030{bottom:586.826667pt;}
.y6e_c00030{bottom:587.773333pt;}
.y6b_c00030{bottom:588.360000pt;}
.y6a_c00030{bottom:588.733333pt;}
.y6c_c00030{bottom:589.693333pt;}
.y69_c00030{bottom:590.640000pt;}
.y66_c00030{bottom:604.733333pt;}
.y68_c00030{bottom:605.106667pt;}
.y67_c00030{bottom:606.640000pt;}
.y65_c00030{bottom:607.026667pt;}
.y64_c00030{bottom:608.360000pt;}
.y5f_c00030{bottom:620.360000pt;}
.y62_c00030{bottom:623.026667pt;}
.y60_c00030{bottom:623.226667pt;}
.y5e_c00030{bottom:623.773333pt;}
.y61_c00030{bottom:623.973333pt;}
.y63_c00030{bottom:624.360000pt;}
.y59_c00030{bottom:637.693333pt;}
.y5a_c00030{bottom:639.773333pt;}
.y5b_c00030{bottom:640.560000pt;}
.y5c_c00030{bottom:641.306667pt;}
.y57_c00030{bottom:641.493333pt;}
.y58_c00030{bottom:641.693333pt;}
.y5d_c00030{bottom:641.893333pt;}
.y54_c00030{bottom:656.360000pt;}
.y56_c00030{bottom:657.106667pt;}
.y55_c00030{bottom:658.640000pt;}
.y52_c00030{bottom:659.026667pt;}
.y53_c00030{bottom:660.360000pt;}
.y4e_c00030{bottom:674.440000pt;}
.y4f_c00030{bottom:675.973333pt;}
.y4c_c00030{bottom:676.160000pt;}
.y4d_c00030{bottom:676.360000pt;}
.y50_c00030{bottom:677.306667pt;}
.y51_c00030{bottom:677.693333pt;}
.y46_c00030{bottom:691.400000pt;}
.y47_c00030{bottom:692.733333pt;}
.y49_c00030{bottom:693.106667pt;}
.y48_c00030{bottom:693.693333pt;}
.y45_c00030{bottom:693.893333pt;}
.y44_c00030{bottom:694.066667pt;}
.y4a_c00030{bottom:694.640000pt;}
.y4b_c00030{bottom:695.026667pt;}
.y3f_c00030{bottom:709.106667pt;}
.y3e_c00030{bottom:710.066667pt;}
.y41_c00030{bottom:710.440000pt;}
.y43_c00030{bottom:711.226667pt;}
.y3c_c00030{bottom:711.773333pt;}
.y40_c00030{bottom:711.973333pt;}
.y42_c00030{bottom:712.360000pt;}
.y3d_c00030{bottom:713.306667pt;}
.y3b_c00030{bottom:726.826667pt;}
.y3a_c00030{bottom:727.773333pt;}
.y39_c00030{bottom:729.306667pt;}
.y38_c00030{bottom:729.693333pt;}
.y37_c00030{bottom:731.026667pt;}
.y32_c00030{bottom:743.773333pt;}
.y35_c00030{bottom:743.973333pt;}
.y33_c00030{bottom:745.106667pt;}
.y34_c00030{bottom:745.693333pt;}
.y36_c00030{bottom:746.640000pt;}
.y31_c00030{bottom:747.026667pt;}
.y30_c00030{bottom:747.400000pt;}
.y2c_c00030{bottom:760.360000pt;}
.y2d_c00030{bottom:761.493333pt;}
.y2e_c00030{bottom:761.693333pt;}
.y2f_c00030{bottom:762.440000pt;}
.y2a_c00030{bottom:763.226667pt;}
.y2b_c00030{bottom:763.973333pt;}
.y28_c00030{bottom:764.160000pt;}
.y29_c00030{bottom:764.360000pt;}
.y24_c00030{bottom:779.773333pt;}
.y25_c00030{bottom:780.733333pt;}
.y23_c00030{bottom:780.933333pt;}
.y27_c00030{bottom:781.106667pt;}
.y26_c00030{bottom:781.693333pt;}
.y22_c00030{bottom:783.026667pt;}
.y21_c00030{bottom:798.066667pt;}
.y1f_c00030{bottom:799.026667pt;}
.y20_c00030{bottom:799.973333pt;}
.y1e_c00030{bottom:800.360000pt;}
.y1d_c00030{bottom:801.693333pt;}
.y18_c00030{bottom:814.440000pt;}
.y1b_c00030{bottom:815.400000pt;}
.y17_c00030{bottom:816.360000pt;}
.y1a_c00030{bottom:816.560000pt;}
.y19_c00030{bottom:817.306667pt;}
.y1c_c00030{bottom:817.693333pt;}
.y16_c00030{bottom:818.066667pt;}
.y15_c00030{bottom:819.026667pt;}
.y14_c00030{bottom:833.106667pt;}
.y12_c00030{bottom:833.893333pt;}
.y13_c00030{bottom:834.066667pt;}
.y11_c00030{bottom:835.026667pt;}
.y10_c00030{bottom:835.400000pt;}
.yd_c00030{bottom:850.440000pt;}
.ye_c00030{bottom:851.973333pt;}
.yc_c00030{bottom:852.360000pt;}
.yf_c00030{bottom:852.560000pt;}
.yb_c00030{bottom:853.693333pt;}
.ya_c00030{bottom:854.640000pt;}
.y7_c00030{bottom:865.693333pt;}
.y9_c00030{bottom:867.773333pt;}
.y6_c00030{bottom:869.106667pt;}
.y8_c00030{bottom:869.693333pt;}
.y4_c00030{bottom:884.733333pt;}
.y5_c00030{bottom:885.106667pt;}
.y3_c00030{bottom:887.026667pt;}
.y2_c00030{bottom:888.360000pt;}
.y1_c00030{bottom:912.733333pt;}
.h5_c00030{height:20.466875pt;}
.h6_c00030{height:22.303646pt;}
.h4_c00030{height:27.879557pt;}
.h2_c00030{height:31.618698pt;}
.h1_c00030{height:35.357839pt;}
.h3_c00030{height:39.031380pt;}
.h7_c00030{height:42.770521pt;}
.h0_c00030{height:1186.666667pt;}
.w0_c00030{width:782.666667pt;}
.x0_c00030{left:0.000000pt;}
.xf_c00030{left:136.373333pt;}
.x80_c00030{left:137.333333pt;}
.x88_c00030{left:138.466667pt;}
.xf2_c00030{left:144.000000pt;}
.x3_c00030{left:150.666667pt;}
.x1b_c00030{left:152.373333pt;}
.x62_c00030{left:156.373333pt;}
.xb0_c00030{left:160.960000pt;}
.x25_c00030{left:162.293333pt;}
.x43_c00030{left:168.000000pt;}
.x4_c00030{left:169.706667pt;}
.xd7_c00030{left:171.040000pt;}
.x68_c00030{left:172.960000pt;}
.x1c_c00030{left:175.626667pt;}
.x57_c00030{left:178.293333pt;}
.x63_c00030{left:180.960000pt;}
.xb8_c00030{left:183.040000pt;}
.x4c_c00030{left:186.666667pt;}
.xc8_c00030{left:187.626667pt;}
.x10_c00030{left:191.040000pt;}
.x3a_c00030{left:192.000000pt;}
.x71_c00030{left:193.333333pt;}
.x5_c00030{left:194.666667pt;}
.x58_c00030{left:195.626667pt;}
.x96_c00030{left:198.666667pt;}
.xb1_c00030{left:199.626667pt;}
.x89_c00030{left:201.333333pt;}
.x44_c00030{left:202.293333pt;}
.x26_c00030{left:204.000000pt;}
.xb9_c00030{left:204.960000pt;}
.x72_c00030{left:208.000000pt;}
.xe2_c00030{left:209.333333pt;}
.xf3_c00030{left:210.666667pt;}
.x1d_c00030{left:214.666667pt;}
.xd0_c00030{left:216.000000pt;}
.xc6_c00030{left:216.960000pt;}
.xa5_c00030{left:219.626667pt;}
.x4d_c00030{left:222.293333pt;}
.xf9_c00030{left:224.000000pt;}
.x92_c00030{left:224.960000pt;}
.x8a_c00030{left:226.293333pt;}
.xe3_c00030{left:228.000000pt;}
.xbc_c00030{left:229.333333pt;}
.x81_c00030{left:232.373333pt;}
.x11_c00030{left:235.626667pt;}
.x7a_c00030{left:237.706667pt;}
.x27_c00030{left:241.333333pt;}
.x6_c00030{left:244.000000pt;}
.x3b_c00030{left:246.666667pt;}
.x8f_c00030{left:247.626667pt;}
.x59_c00030{left:248.960000pt;}
.x45_c00030{left:253.706667pt;}
.xa6_c00030{left:255.626667pt;}
.x28_c00030{left:256.960000pt;}
.x3c_c00030{left:260.000000pt;}
.x69_c00030{left:262.666667pt;}
.x12_c00030{left:264.000000pt;}
.x4e_c00030{left:265.333333pt;}
.x90_c00030{left:267.040000pt;}
.x97_c00030{left:269.706667pt;}
.xee_c00030{left:270.666667pt;}
.xc7_c00030{left:271.626667pt;}
.xa7_c00030{left:275.040000pt;}
.x1e_c00030{left:277.333333pt;}
.x82_c00030{left:278.666667pt;}
.x64_c00030{left:279.626667pt;}
.xd8_c00030{left:284.000000pt;}
.xe6_c00030{left:286.666667pt;}
.xc1_c00030{left:288.373333pt;}
.x5a_c00030{left:289.333333pt;}
.xc9_c00030{left:292.000000pt;}
.x91_c00030{left:293.333333pt;}
.x9d_c00030{left:294.666667pt;}
.x29_c00030{left:296.373333pt;}
.xba_c00030{left:297.333333pt;}
.xa8_c00030{left:300.960000pt;}
.x83_c00030{left:302.666667pt;}
.x7b_c00030{left:303.626667pt;}
.xf4_c00030{left:305.333333pt;}
.x73_c00030{left:307.040000pt;}
.xb2_c00030{left:308.373333pt;}
.xe4_c00030{left:309.706667pt;}
.x13_c00030{left:310.666667pt;}
.x46_c00030{left:311.626667pt;}
.xbd_c00030{left:312.960000pt;}
.x31_c00030{left:316.373333pt;}
.x6a_c00030{left:317.333333pt;}
.x7_c00030{left:319.040000pt;}
.x1_c00030{left:321.333333pt;}
.x3d_c00030{left:322.666667pt;}
.x4f_c00030{left:323.626667pt;}
.xd1_c00030{left:326.666667pt;}
.xd9_c00030{left:327.626667pt;}
.xea_c00030{left:329.333333pt;}
.x74_c00030{left:330.293333pt;}
.x8b_c00030{left:332.000000pt;}
.xb3_c00030{left:333.333333pt;}
.x6b_c00030{left:334.666667pt;}
.xca_c00030{left:337.333333pt;}
.x3e_c00030{left:339.040000pt;}
.x1f_c00030{left:340.000000pt;}
.x50_c00030{left:341.706667pt;}
.xa9_c00030{left:342.666667pt;}
.x8_c00030{left:344.000000pt;}
.x5b_c00030{left:344.960000pt;}
.xbb_c00030{left:346.666667pt;}
.x65_c00030{left:348.960000pt;}
.xde_c00030{left:352.960000pt;}
.x2a_c00030{left:354.293333pt;}
.x14_c00030{left:357.333333pt;}
.x20_c00030{left:359.626667pt;}
.xef_c00030{left:360.960000pt;}
.x3f_c00030{left:362.666667pt;}
.x2_c00030{left:365.706667pt;}
.x32_c00030{left:368.373333pt;}
.x5c_c00030{left:370.666667pt;}
.x98_c00030{left:371.626667pt;}
.x47_c00030{left:373.333333pt;}
.xcb_c00030{left:375.040000pt;}
.x51_c00030{left:377.706667pt;}
.x7c_c00030{left:380.000000pt;}
.x33_c00030{left:385.333333pt;}
.xe7_c00030{left:388.000000pt;}
.x9e_c00030{left:391.040000pt;}
.xda_c00030{left:392.000000pt;}
.x93_c00030{left:393.706667pt;}
.x2b_c00030{left:396.960000pt;}
.xf0_c00030{left:406.666667pt;}
.x34_c00030{left:408.000000pt;}
.x5d_c00030{left:408.960000pt;}
.x2c_c00030{left:410.666667pt;}
.xdf_c00030{left:411.626667pt;}
.xbe_c00030{left:413.333333pt;}
.x21_c00030{left:416.000000pt;}
.x9f_c00030{left:417.706667pt;}
.x6c_c00030{left:418.666667pt;}
.x94_c00030{left:419.626667pt;}
.xeb_c00030{left:424.000000pt;}
.x52_c00030{left:426.666667pt;}
.x9_c00030{left:427.626667pt;}
.x75_c00030{left:429.333333pt;}
.x99_c00030{left:430.666667pt;}
.x15_c00030{left:433.333333pt;}
.xc2_c00030{left:435.240000pt;}
.xec_c00030{left:441.706667pt;}
.x35_c00030{left:444.000000pt;}
.x5e_c00030{left:444.960000pt;}
.x6d_c00030{left:446.666667pt;}
.xbf_c00030{left:448.960000pt;}
.x2d_c00030{left:450.666667pt;}
.xa0_c00030{left:452.373333pt;}
.xd2_c00030{left:453.333333pt;}
.x48_c00030{left:454.666667pt;}
.xa_c00030{left:456.373333pt;}
.xaa_c00030{left:457.333333pt;}
.x95_c00030{left:458.293333pt;}
.x36_c00030{left:461.333333pt;}
.xf5_c00030{left:463.626667pt;}
.xed_c00030{left:465.333333pt;}
.x16_c00030{left:467.040000pt;}
.xdb_c00030{left:469.333333pt;}
.x53_c00030{left:470.666667pt;}
.xf1_c00030{left:471.626667pt;}
.x6e_c00030{left:474.666667pt;}
.x40_c00030{left:477.333333pt;}
.xcc_c00030{left:478.293333pt;}
.xb_c00030{left:481.333333pt;}
.x9a_c00030{left:483.626667pt;}
.xa1_c00030{left:485.706667pt;}
.xe8_c00030{left:487.040000pt;}
.x54_c00030{left:488.000000pt;}
.xd3_c00030{left:488.960000pt;}
.xab_c00030{left:490.666667pt;}
.xf7_c00030{left:491.626667pt;}
.x17_c00030{left:493.133333pt;}
.x5f_c00030{left:494.293333pt;}
.x66_c00030{left:496.373333pt;}
.x22_c00030{left:498.293333pt;}
.xc3_c00030{left:500.000000pt;}
.x55_c00030{left:501.333333pt;}
.x84_c00030{left:503.626667pt;}
.xd4_c00030{left:504.960000pt;}
.xcd_c00030{left:506.666667pt;}
.x41_c00030{left:507.626667pt;}
.xe9_c00030{left:511.626667pt;}
.x76_c00030{left:513.333333pt;}
.x8c_c00030{left:515.040000pt;}
.xdc_c00030{left:516.000000pt;}
.xf8_c00030{left:519.040000pt;}
.xc0_c00030{left:521.333333pt;}
.xa2_c00030{left:522.666667pt;}
.x18_c00030{left:523.626667pt;}
.xb4_c00030{left:525.333333pt;}
.x37_c00030{left:526.666667pt;}
.x77_c00030{left:529.706667pt;}
.x85_c00030{left:530.666667pt;}
.xc4_c00030{left:532.000000pt;}
.xf6_c00030{left:537.706667pt;}
.x6f_c00030{left:538.666667pt;}
.x9b_c00030{left:540.960000pt;}
.x38_c00030{left:543.040000pt;}
.x7d_c00030{left:544.000000pt;}
.xd5_c00030{left:545.333333pt;}
.x42_c00030{left:546.666667pt;}
.xac_c00030{left:548.000000pt;}
.x8d_c00030{left:549.706667pt;}
.x23_c00030{left:551.040000pt;}
.x78_c00030{left:552.000000pt;}
.x19_c00030{left:553.133333pt;}
.x67_c00030{left:556.373333pt;}
.xce_c00030{left:559.040000pt;}
.xb5_c00030{left:560.373333pt;}
.x60_c00030{left:562.666667pt;}
.xc_c00030{left:563.626667pt;}
.xad_c00030{left:565.333333pt;}
.x49_c00030{left:572.000000pt;}
.x8e_c00030{left:575.040000pt;}
.x39_c00030{left:576.373333pt;}
.x2e_c00030{left:577.333333pt;}
.xae_c00030{left:578.666667pt;}
.xd_c00030{left:581.706667pt;}
.xe0_c00030{left:582.666667pt;}
.xcf_c00030{left:584.000000pt;}
.x1a_c00030{left:585.333333pt;}
.xdd_c00030{left:586.666667pt;}
.xa3_c00030{left:588.000000pt;}
.x61_c00030{left:589.333333pt;}
.xb6_c00030{left:590.666667pt;}
.x2f_c00030{left:592.373333pt;}
.x70_c00030{left:593.706667pt;}
.x24_c00030{left:594.666667pt;}
.x79_c00030{left:596.000000pt;}
.x86_c00030{left:596.960000pt;}
.x56_c00030{left:598.666667pt;}
.xd6_c00030{left:599.626667pt;}
.x7e_c00030{left:603.626667pt;}
.xe1_c00030{left:605.333333pt;}
.x9c_c00030{left:606.293333pt;}
.xe_c00030{left:608.000000pt;}
.x87_c00030{left:611.426667pt;}
.x4a_c00030{left:613.333333pt;}
.x30_c00030{left:615.040000pt;}
.xfa_c00030{left:618.293333pt;}
.x7f_c00030{left:623.040000pt;}
.xc5_c00030{left:624.960000pt;}
.x4b_c00030{left:629.706667pt;}
.xb7_c00030{left:632.000000pt;}
.xa4_c00030{left:634.293333pt;}
.xe5_c00030{left:635.626667pt;}
.xaf_c00030{left:637.333333pt;}
.xfb_c00030{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a6694845f9907e6577bbca69.woff2')format("woff");}.ff1_c00031{font-family:ff1_c00031;line-height:1.688965;font-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_c00031{transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);}
.m74_c00031{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.m21_c00031{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.m2b_c00031{transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);}
.m58_c00031{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);}
.ma5_c00031{transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);}
.m64_c00031{transform:matrix(0.356212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356212,0.000000,0.000000,0.250000,0,0);}
.m42_c00031{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.m8c_c00031{transform:matrix(0.358129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358129,0.000000,0.000000,0.250000,0,0);}
.m24_c00031{transform:matrix(0.362730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362730,0.000000,0.000000,0.250000,0,0);}
.m4a_c00031{transform:matrix(0.363497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363497,0.000000,0.000000,0.250000,0,0);}
.m60_c00031{transform:matrix(0.365966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365966,0.000000,0.000000,0.250000,0,0);}
.m69_c00031{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m3e_c00031{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m4c_c00031{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00031{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m11_c00031{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mb2_c00031{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m5b_c00031{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m54_c00031{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m59_c00031{transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);}
.m9f_c00031{transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);}
.m20_c00031{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m80_c00031{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m4b_c00031{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m57_c00031{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m2d_c00031{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m91_c00031{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m8_c00031{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.ma4_c00031{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.mb5_c00031{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m6c_c00031{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m50_c00031{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m53_c00031{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);}
.m8f_c00031{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m5a_c00031{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mbc_c00031{transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);}
.m3c_c00031{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.mb9_c00031{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m41_c00031{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m27_c00031{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m10_c00031{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m5c_c00031{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m2f_c00031{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m48_c00031{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m14_c00031{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m13_c00031{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mb_c00031{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m52_c00031{transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);}
.m61_c00031{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m65_c00031{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m1e_c00031{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m84_c00031{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.ma7_c00031{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m88_c00031{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.m7e_c00031{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m5d_c00031{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m3d_c00031{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mac_c00031{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.md_c00031{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m46_c00031{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m83_c00031{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m98_c00031{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m6e_c00031{transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);}
.ma6_c00031{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m38_c00031{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m9e_c00031{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mb6_c00031{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m29_c00031{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m34_c00031{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.me_c00031{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m1f_c00031{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m76_c00031{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m71_c00031{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.ma0_c00031{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m7a_c00031{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m49_c00031{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mb1_c00031{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m78_c00031{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m66_c00031{transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);}
.m7b_c00031{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m77_c00031{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m26_c00031{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m6b_c00031{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m40_c00031{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m45_c00031{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m81_c00031{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m3f_c00031{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.maf_c00031{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.ma1_c00031{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.m51_c00031{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m8a_c00031{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m2c_c00031{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m44_c00031{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m32_c00031{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m25_c00031{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.maa_c00031{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m6a_c00031{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.m5f_c00031{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m62_c00031{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m30_c00031{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);}
.m70_c00031{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m55_c00031{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m56_c00031{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m2a_c00031{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m36_c00031{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.mba_c00031{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m67_c00031{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m2e_c00031{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m95_c00031{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m31_c00031{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m6d_c00031{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m23_c00031{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m1b_c00031{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.ma3_c00031{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.ma2_c00031{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.ma_c00031{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m73_c00031{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m63_c00031{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m79_c00031{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m8d_c00031{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mb4_c00031{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m99_c00031{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mbb_c00031{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m12_c00031{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mae_c00031{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m5_c00031{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mb0_c00031{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m8e_c00031{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m4_c00031{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m7d_c00031{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m87_c00031{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m92_c00031{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m97_c00031{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m75_c00031{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m47_c00031{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m7c_c00031{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m4f_c00031{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m96_c00031{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m9b_c00031{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m15_c00031{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m7_c00031{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m39_c00031{transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);}
.mf_c00031{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m4e_c00031{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m33_c00031{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m82_c00031{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m93_c00031{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m9_c00031{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.ma8_c00031{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m43_c00031{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m72_c00031{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m89_c00031{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m1_c00031{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m16_c00031{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mb3_c00031{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m37_c00031{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mc_c00031{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m7f_c00031{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.mab_c00031{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m35_c00031{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m28_c00031{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m9a_c00031{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m8b_c00031{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m5e_c00031{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m19_c00031{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m1c_c00031{transform:matrix(0.616701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616701,0.000000,0.000000,0.250000,0,0);}
.m90_c00031{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);}
.ma9_c00031{transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);}
.mad_c00031{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m4d_c00031{transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);}
.mb7_c00031{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m17_c00031{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m18_c00031{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m6_c00031{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m3_c00031{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.m85_c00031{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.m2_c00031{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m0_c00031{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m1a_c00031{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m3b_c00031{transform:matrix(0.744118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.744118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.744118,0.000000,0.000000,0.250000,0,0);}
.m1d_c00031{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mb8_c00031{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m9c_c00031{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m86_c00031{transform:matrix(0.781765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.781765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.781765,0.000000,0.000000,0.250000,0,0);}
.m3a_c00031{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m94_c00031{transform:matrix(0.883088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.883088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.883088,0.000000,0.000000,0.250000,0,0);}
.m6f_c00031{transform:matrix(6.522124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.522124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.522124,0.000000,0.000000,0.250000,0,0);}
.m9d_c00031{transform:matrix(7.274336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.274336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.274336,0.000000,0.000000,0.250000,0,0);}
.v0_c00031{vertical-align:0.000000px;}
.v1_c00031{vertical-align:6.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;}
}
.ws1_c00031{word-spacing:-5.008560px;}
.ws2_c00031{word-spacing:-4.168560px;}
.ws3_c00031{word-spacing:0.000000px;}
.ws0_c00031{word-spacing:65.202698px;}
.fc0_c00031{color:transparent;}
.fs7_c00031{font-size:6.780000px;}
.fs0_c00031{font-size:18.720000px;}
.fs6_c00031{font-size:20.400000px;}
.fs1_c00031{font-size:25.500000px;}
.fs2_c00031{font-size:28.920000px;}
.fs5_c00031{font-size:32.340000px;}
.fs3_c00031{font-size:35.700000px;}
.fs4_c00031{font-size:39.120000px;}
.y0_c00031{bottom:0.000000px;}
.yca_c00031{bottom:270.405000px;}
.yc9_c00031{bottom:272.745000px;}
.yc8_c00031{bottom:274.905000px;}
.yc7_c00031{bottom:291.405000px;}
.yc3_c00031{bottom:292.245000px;}
.yc5_c00031{bottom:293.745000px;}
.yc6_c00031{bottom:293.970000px;}
.yc1_c00031{bottom:294.405000px;}
.yc2_c00031{bottom:294.630000px;}
.yc4_c00031{bottom:295.905000px;}
.ybc_c00031{bottom:310.905000px;}
.ybf_c00031{bottom:311.745000px;}
.ybe_c00031{bottom:313.245000px;}
.yc0_c00031{bottom:313.470000px;}
.yba_c00031{bottom:313.905000px;}
.ybd_c00031{bottom:314.130000px;}
.ybb_c00031{bottom:315.405000px;}
.yb9_c00031{bottom:330.405000px;}
.yb8_c00031{bottom:331.245000px;}
.yb7_c00031{bottom:332.745000px;}
.yb5_c00031{bottom:333.405000px;}
.yb6_c00031{bottom:334.905000px;}
.yaf_c00031{bottom:349.905000px;}
.yb3_c00031{bottom:350.745000px;}
.yb2_c00031{bottom:352.245000px;}
.yb4_c00031{bottom:352.905000px;}
.yb1_c00031{bottom:353.130000px;}
.yb0_c00031{bottom:354.405000px;}
.yae_c00031{bottom:370.470000px;}
.yab_c00031{bottom:373.470000px;}
.yaa_c00031{bottom:373.905000px;}
.yad_c00031{bottom:374.130000px;}
.yac_c00031{bottom:374.970000px;}
.ya9_c00031{bottom:388.905000px;}
.ya8_c00031{bottom:391.245000px;}
.ya6_c00031{bottom:393.405000px;}
.ya7_c00031{bottom:394.470000px;}
.ya4_c00031{bottom:408.405000px;}
.ya5_c00031{bottom:409.470000px;}
.ya0_c00031{bottom:412.050000px;}
.ya1_c00031{bottom:412.905000px;}
.ya2_c00031{bottom:413.130000px;}
.ya3_c00031{bottom:413.970000px;}
.y9e_c00031{bottom:427.905000px;}
.y9f_c00031{bottom:429.405000px;}
.y9d_c00031{bottom:430.245000px;}
.y99_c00031{bottom:448.905000px;}
.y97_c00031{bottom:451.245000px;}
.y9b_c00031{bottom:451.905000px;}
.y9c_c00031{bottom:452.130000px;}
.y9a_c00031{bottom:452.970000px;}
.y98_c00031{bottom:453.405000px;}
.y96_c00031{bottom:469.680000px;}
.y94_c00031{bottom:470.745000px;}
.y95_c00031{bottom:471.630000px;}
.y93_c00031{bottom:472.905000px;}
.y92_c00031{bottom:487.905000px;}
.y8e_c00031{bottom:489.405000px;}
.y90_c00031{bottom:489.855000px;}
.y91_c00031{bottom:490.245000px;}
.y8d_c00031{bottom:492.405000px;}
.y8f_c00031{bottom:492.630000px;}
.y8c_c00031{bottom:508.470000px;}
.y89_c00031{bottom:509.745000px;}
.y88_c00031{bottom:511.050000px;}
.y8b_c00031{bottom:511.470000px;}
.y8a_c00031{bottom:511.905000px;}
.y87_c00031{bottom:529.050000px;}
.y85_c00031{bottom:529.245000px;}
.y84_c00031{bottom:531.405000px;}
.y86_c00031{bottom:531.630000px;}
.y82_c00031{bottom:547.905000px;}
.y83_c00031{bottom:549.630000px;}
.y7f_c00031{bottom:550.050000px;}
.y81_c00031{bottom:551.325000px;}
.y80_c00031{bottom:552.405000px;}
.y7e_c00031{bottom:567.405000px;}
.y7d_c00031{bottom:568.470000px;}
.y7a_c00031{bottom:568.680000px;}
.y7c_c00031{bottom:569.745000px;}
.y7b_c00031{bottom:571.905000px;}
.y73_c00031{bottom:586.905000px;}
.y77_c00031{bottom:588.825000px;}
.y74_c00031{bottom:589.245000px;}
.y79_c00031{bottom:589.470000px;}
.y78_c00031{bottom:589.905000px;}
.y75_c00031{bottom:590.130000px;}
.y72_c00031{bottom:591.405000px;}
.y76_c00031{bottom:592.470000px;}
.y71_c00031{bottom:607.245000px;}
.y70_c00031{bottom:607.470000px;}
.y6e_c00031{bottom:608.745000px;}
.y6f_c00031{bottom:610.905000px;}
.y6d_c00031{bottom:626.745000px;}
.y6a_c00031{bottom:628.245000px;}
.y6b_c00031{bottom:629.325000px;}
.y6c_c00031{bottom:629.970000px;}
.y69_c00031{bottom:630.405000px;}
.y65_c00031{bottom:646.905000px;}
.y67_c00031{bottom:647.745000px;}
.y68_c00031{bottom:648.825000px;}
.y66_c00031{bottom:649.905000px;}
.y63_c00031{bottom:667.245000px;}
.y64_c00031{bottom:668.130000px;}
.y61_c00031{bottom:668.325000px;}
.y62_c00031{bottom:668.745000px;}
.y60_c00031{bottom:669.405000px;}
.y5f_c00031{bottom:685.905000px;}
.y5e_c00031{bottom:686.355000px;}
.y5c_c00031{bottom:686.745000px;}
.y5b_c00031{bottom:687.825000px;}
.y5d_c00031{bottom:688.905000px;}
.y5a_c00031{bottom:690.405000px;}
.y59_c00031{bottom:705.405000px;}
.y57_c00031{bottom:706.245000px;}
.y58_c00031{bottom:708.405000px;}
.y56_c00031{bottom:726.180000px;}
.y54_c00031{bottom:727.245000px;}
.y55_c00031{bottom:728.325000px;}
.y53_c00031{bottom:729.405000px;}
.y52_c00031{bottom:744.405000px;}
.y51_c00031{bottom:746.745000px;}
.y50_c00031{bottom:747.825000px;}
.y4c_c00031{bottom:765.405000px;}
.y4d_c00031{bottom:766.245000px;}
.y4e_c00031{bottom:768.405000px;}
.y4f_c00031{bottom:769.470000px;}
.y4a_c00031{bottom:785.745000px;}
.y49_c00031{bottom:787.905000px;}
.y4b_c00031{bottom:789.405000px;}
.y48_c00031{bottom:804.405000px;}
.y45_c00031{bottom:805.245000px;}
.y47_c00031{bottom:806.745000px;}
.y44_c00031{bottom:807.405000px;}
.y46_c00031{bottom:808.905000px;}
.y42_c00031{bottom:825.405000px;}
.y43_c00031{bottom:826.905000px;}
.y40_c00031{bottom:827.130000px;}
.y3f_c00031{bottom:827.970000px;}
.y41_c00031{bottom:828.405000px;}
.y3d_c00031{bottom:843.405000px;}
.y3e_c00031{bottom:844.245000px;}
.y3c_c00031{bottom:845.745000px;}
.y3b_c00031{bottom:846.825000px;}
.y3a_c00031{bottom:865.245000px;}
.y39_c00031{bottom:867.405000px;}
.y35_c00031{bottom:883.680000px;}
.y32_c00031{bottom:883.905000px;}
.y33_c00031{bottom:884.745000px;}
.y38_c00031{bottom:885.405000px;}
.y36_c00031{bottom:885.825000px;}
.y34_c00031{bottom:886.905000px;}
.y37_c00031{bottom:887.970000px;}
.y31_c00031{bottom:903.405000px;}
.y2e_c00031{bottom:906.405000px;}
.y2f_c00031{bottom:906.630000px;}
.y2d_c00031{bottom:907.470000px;}
.y30_c00031{bottom:907.905000px;}
.y2b_c00031{bottom:922.470000px;}
.y2c_c00031{bottom:922.905000px;}
.y2a_c00031{bottom:923.745000px;}
.y28_c00031{bottom:924.180000px;}
.y29_c00031{bottom:924.825000px;}
.y27_c00031{bottom:925.245000px;}
.y24_c00031{bottom:941.970000px;}
.y1e_c00031{bottom:942.405000px;}
.y26_c00031{bottom:943.050000px;}
.y23_c00031{bottom:943.245000px;}
.y25_c00031{bottom:944.130000px;}
.y21_c00031{bottom:944.745000px;}
.y22_c00031{bottom:945.630000px;}
.y20_c00031{bottom:945.825000px;}
.y1f_c00031{bottom:946.905000px;}
.y1c_c00031{bottom:961.470000px;}
.y1d_c00031{bottom:961.905000px;}
.y1b_c00031{bottom:962.745000px;}
.y1a_c00031{bottom:964.245000px;}
.y19_c00031{bottom:964.905000px;}
.y18_c00031{bottom:983.745000px;}
.y16_c00031{bottom:985.470000px;}
.y17_c00031{bottom:985.905000px;}
.y14_c00031{bottom:1000.470000px;}
.y15_c00031{bottom:1000.905000px;}
.yf_c00031{bottom:1001.970000px;}
.y13_c00031{bottom:1002.180000px;}
.y12_c00031{bottom:1003.245000px;}
.y11_c00031{bottom:1004.130000px;}
.y10_c00031{bottom:1005.405000px;}
.ye_c00031{bottom:1019.970000px;}
.yb_c00031{bottom:1023.630000px;}
.y9_c00031{bottom:1024.470000px;}
.yc_c00031{bottom:1024.905000px;}
.yd_c00031{bottom:1025.130000px;}
.ya_c00031{bottom:1025.970000px;}
.y8_c00031{bottom:1039.470000px;}
.y6_c00031{bottom:1042.245000px;}
.y7_c00031{bottom:1044.405000px;}
.y5_c00031{bottom:1061.745000px;}
.y4_c00031{bottom:1063.905000px;}
.y2_c00031{bottom:1064.130000px;}
.y3_c00031{bottom:1064.970000px;}
.y1_c00031{bottom:1103.130000px;}
.h8_c00031{height:8.339268px;}
.h1_c00031{height:23.025234px;}
.h7_c00031{height:25.091602px;}
.h2_c00031{height:31.364502px;}
.h3_c00031{height:35.571035px;}
.h6_c00031{height:39.777568px;}
.h9_c00031{height:41.571035px;}
.h4_c00031{height:43.910303px;}
.h5_c00031{height:48.116836px;}
.h0_c00031{height:1335.000000px;}
.w0_c00031{width:880.500000px;}
.x0_c00031{left:0.000000px;}
.x2_c00031{left:153.000000px;}
.x93_c00031{left:154.500000px;}
.x8f_c00031{left:156.855000px;}
.x3_c00031{left:162.000000px;}
.x46_c00031{left:163.080000px;}
.x25_c00031{left:169.080000px;}
.x15_c00031{left:170.580000px;}
.xbc_c00031{left:192.000000px;}
.x4_c00031{left:193.080000px;}
.x16_c00031{left:195.000000px;}
.xb7_c00031{left:211.920000px;}
.xc3_c00031{left:223.500000px;}
.x17_c00031{left:225.000000px;}
.x1a_c00031{left:226.500000px;}
.xaf_c00031{left:229.500000px;}
.xbd_c00031{left:237.000000px;}
.x9d_c00031{left:238.080000px;}
.x5_c00031{left:240.000000px;}
.x47_c00031{left:241.080000px;}
.x58_c00031{left:243.000000px;}
.x18_c00031{left:244.500000px;}
.x45_c00031{left:246.000000px;}
.xa8_c00031{left:247.080000px;}
.xb0_c00031{left:249.000000px;}
.x6c_c00031{left:250.500000px;}
.x72_c00031{left:252.000000px;}
.x75_c00031{left:254.580000px;}
.x50_c00031{left:258.000000px;}
.xc4_c00031{left:259.500000px;}
.x1b_c00031{left:262.500000px;}
.x19_c00031{left:264.000000px;}
.xa9_c00031{left:265.500000px;}
.x48_c00031{left:271.500000px;}
.x76_c00031{left:273.000000px;}
.x1c_c00031{left:274.500000px;}
.x5b_c00031{left:278.580000px;}
.xb8_c00031{left:280.500000px;}
.xf_c00031{left:282.420000px;}
.x6_c00031{left:283.500000px;}
.x3d_c00031{left:286.500000px;}
.x26_c00031{left:288.000000px;}
.x90_c00031{left:289.920000px;}
.x66_c00031{left:291.000000px;}
.xbe_c00031{left:295.080000px;}
.x31_c00031{left:296.580000px;}
.x59_c00031{left:298.080000px;}
.xc5_c00031{left:303.000000px;}
.xaa_c00031{left:304.080000px;}
.x6d_c00031{left:306.000000px;}
.x7b_c00031{left:307.500000px;}
.x3e_c00031{left:309.000000px;}
.x73_c00031{left:312.420000px;}
.x32_c00031{left:313.920000px;}
.x94_c00031{left:315.000000px;}
.x51_c00031{left:316.080000px;}
.xc7_c00031{left:318.000000px;}
.x53_c00031{left:319.080000px;}
.x91_c00031{left:325.500000px;}
.x67_c00031{left:327.420000px;}
.x86_c00031{left:328.500000px;}
.xca_c00031{left:330.420000px;}
.xbb_c00031{left:333.000000px;}
.xab_c00031{left:334.500000px;}
.x1d_c00031{left:337.500000px;}
.x52_c00031{left:343.500000px;}
.x87_c00031{left:345.420000px;}
.x77_c00031{left:346.920000px;}
.x9e_c00031{left:348.000000px;}
.x7_c00031{left:349.500000px;}
.x3f_c00031{left:350.580000px;}
.x5c_c00031{left:352.500000px;}
.x95_c00031{left:355.500000px;}
.x33_c00031{left:357.000000px;}
.x27_c00031{left:360.000000px;}
.xa2_c00031{left:364.500000px;}
.x8_c00031{left:370.920000px;}
.x88_c00031{left:372.000000px;}
.x63_c00031{left:373.080000px;}
.x10_c00031{left:379.275000px;}
.x5a_c00031{left:382.500000px;}
.x7c_c00031{left:384.420000px;}
.xc8_c00031{left:387.000000px;}
.x5d_c00031{left:388.920000px;}
.xb1_c00031{left:390.000000px;}
.x28_c00031{left:391.500000px;}
.x54_c00031{left:393.420000px;}
.x34_c00031{left:395.580000px;}
.xcb_c00031{left:397.500000px;}
.x49_c00031{left:399.420000px;}
.x1e_c00031{left:402.000000px;}
.x1_c00031{left:406.500000px;}
.x92_c00031{left:412.080000px;}
.xbf_c00031{left:414.000000px;}
.xac_c00031{left:415.080000px;}
.x11_c00031{left:417.000000px;}
.x5e_c00031{left:420.000000px;}
.x29_c00031{left:421.500000px;}
.x40_c00031{left:423.420000px;}
.x9_c00031{left:424.500000px;}
.x35_c00031{left:426.420000px;}
.xb2_c00031{left:432.000000px;}
.x96_c00031{left:433.920000px;}
.xa3_c00031{left:438.000000px;}
.x55_c00031{left:442.080000px;}
.x9f_c00031{left:444.420000px;}
.x89_c00031{left:445.500000px;}
.x64_c00031{left:447.420000px;}
.x36_c00031{left:453.000000px;}
.x1f_c00031{left:457.080000px;}
.x68_c00031{left:459.000000px;}
.xad_c00031{left:460.920000px;}
.x8a_c00031{left:463.500000px;}
.x4a_c00031{left:466.080000px;}
.x2d_c00031{left:472.080000px;}
.xa4_c00031{left:474.000000px;}
.x97_c00031{left:475.500000px;}
.xc0_c00031{left:477.000000px;}
.x12_c00031{left:478.500000px;}
.x2a_c00031{left:480.420000px;}
.x20_c00031{left:483.000000px;}
.xae_c00031{left:487.920000px;}
.x78_c00031{left:490.500000px;}
.xa0_c00031{left:493.080000px;}
.x69_c00031{left:495.000000px;}
.x65_c00031{left:496.080000px;}
.x5f_c00031{left:498.420000px;}
.x4b_c00031{left:499.500000px;}
.x8b_c00031{left:507.000000px;}
.x37_c00031{left:510.000000px;}
.x6e_c00031{left:511.500000px;}
.x98_c00031{left:512.580000px;}
.xa_c00031{left:516.000000px;}
.xcc_c00031{left:517.500000px;}
.x21_c00031{left:520.500000px;}
.x4c_c00031{left:523.500000px;}
.x7d_c00031{left:525.000000px;}
.x2b_c00031{left:526.080000px;}
.x2e_c00031{left:530.580000px;}
.x60_c00031{left:532.500000px;}
.xc1_c00031{left:534.000000px;}
.xa5_c00031{left:535.500000px;}
.x79_c00031{left:541.500000px;}
.x6a_c00031{left:544.080000px;}
.x38_c00031{left:546.000000px;}
.x83_c00031{left:550.080000px;}
.xb_c00031{left:553.500000px;}
.x2c_c00031{left:554.775000px;}
.x39_c00031{left:558.000000px;}
.x13_c00031{left:561.000000px;}
.x7e_c00031{left:562.920000px;}
.x41_c00031{left:566.580000px;}
.x56_c00031{left:572.580000px;}
.x61_c00031{left:574.080000px;}
.xb3_c00031{left:576.000000px;}
.xa1_c00031{left:577.080000px;}
.x6f_c00031{left:583.080000px;}
.x99_c00031{left:585.000000px;}
.x2f_c00031{left:586.080000px;}
.x84_c00031{left:595.080000px;}
.xc_c00031{left:597.420000px;}
.x3a_c00031{left:598.920000px;}
.x8c_c00031{left:601.920000px;}
.x7f_c00031{left:603.000000px;}
.x4d_c00031{left:604.920000px;}
.xa6_c00031{left:606.000000px;}
.x22_c00031{left:607.080000px;}
.x6b_c00031{left:608.580000px;}
.xc6_c00031{left:610.080000px;}
.xb9_c00031{left:611.580000px;}
.x7a_c00031{left:614.580000px;}
.xc2_c00031{left:616.500000px;}
.x30_c00031{left:618.420000px;}
.xb4_c00031{left:621.000000px;}
.x9a_c00031{left:623.580000px;}
.x85_c00031{left:626.580000px;}
.x62_c00031{left:631.500000px;}
.x80_c00031{left:635.580000px;}
.x8d_c00031{left:640.500000px;}
.x70_c00031{left:646.500000px;}
.x9b_c00031{left:654.000000px;}
.x57_c00031{left:655.080000px;}
.x42_c00031{left:656.580000px;}
.xd_c00031{left:658.500000px;}
.x4e_c00031{left:660.000000px;}
.x3b_c00031{left:661.500000px;}
.x81_c00031{left:663.420000px;}
.xc9_c00031{left:666.420000px;}
.x43_c00031{left:675.000000px;}
.xb5_c00031{left:676.920000px;}
.x71_c00031{left:678.000000px;}
.xa7_c00031{left:679.080000px;}
.x3c_c00031{left:681.420000px;}
.x23_c00031{left:689.580000px;}
.xe_c00031{left:691.500000px;}
.x8e_c00031{left:693.000000px;}
.x4f_c00031{left:694.500000px;}
.xb6_c00031{left:702.420000px;}
.xba_c00031{left:704.580000px;}
.x24_c00031{left:706.080000px;}
.x44_c00031{left:707.580000px;}
.x74_c00031{left:715.920000px;}
.x9c_c00031{left:717.000000px;}
.x82_c00031{left:718.500000px;}
.x14_c00031{left:723.000000px;}
@media print{
.v0_c00031{vertical-align:0.000000pt;}
.v1_c00031{vertical-align:5.333333pt;}
.ls0_c00031{letter-spacing:0.000000pt;}
.ws1_c00031{word-spacing:-4.452053pt;}
.ws2_c00031{word-spacing:-3.705387pt;}
.ws3_c00031{word-spacing:0.000000pt;}
.ws0_c00031{word-spacing:57.957954pt;}
.fs7_c00031{font-size:6.026667pt;}
.fs0_c00031{font-size:16.640000pt;}
.fs6_c00031{font-size:18.133333pt;}
.fs1_c00031{font-size:22.666667pt;}
.fs2_c00031{font-size:25.706667pt;}
.fs5_c00031{font-size:28.746667pt;}
.fs3_c00031{font-size:31.733333pt;}
.fs4_c00031{font-size:34.773333pt;}
.y0_c00031{bottom:0.000000pt;}
.yca_c00031{bottom:240.360000pt;}
.yc9_c00031{bottom:242.440000pt;}
.yc8_c00031{bottom:244.360000pt;}
.yc7_c00031{bottom:259.026667pt;}
.yc3_c00031{bottom:259.773333pt;}
.yc5_c00031{bottom:261.106667pt;}
.yc6_c00031{bottom:261.306667pt;}
.yc1_c00031{bottom:261.693333pt;}
.yc2_c00031{bottom:261.893333pt;}
.yc4_c00031{bottom:263.026667pt;}
.ybc_c00031{bottom:276.360000pt;}
.ybf_c00031{bottom:277.106667pt;}
.ybe_c00031{bottom:278.440000pt;}
.yc0_c00031{bottom:278.640000pt;}
.yba_c00031{bottom:279.026667pt;}
.ybd_c00031{bottom:279.226667pt;}
.ybb_c00031{bottom:280.360000pt;}
.yb9_c00031{bottom:293.693333pt;}
.yb8_c00031{bottom:294.440000pt;}
.yb7_c00031{bottom:295.773333pt;}
.yb5_c00031{bottom:296.360000pt;}
.yb6_c00031{bottom:297.693333pt;}
.yaf_c00031{bottom:311.026667pt;}
.yb3_c00031{bottom:311.773333pt;}
.yb2_c00031{bottom:313.106667pt;}
.yb4_c00031{bottom:313.693333pt;}
.yb1_c00031{bottom:313.893333pt;}
.yb0_c00031{bottom:315.026667pt;}
.yae_c00031{bottom:329.306667pt;}
.yab_c00031{bottom:331.973333pt;}
.yaa_c00031{bottom:332.360000pt;}
.yad_c00031{bottom:332.560000pt;}
.yac_c00031{bottom:333.306667pt;}
.ya9_c00031{bottom:345.693333pt;}
.ya8_c00031{bottom:347.773333pt;}
.ya6_c00031{bottom:349.693333pt;}
.ya7_c00031{bottom:350.640000pt;}
.ya4_c00031{bottom:363.026667pt;}
.ya5_c00031{bottom:363.973333pt;}
.ya0_c00031{bottom:366.266667pt;}
.ya1_c00031{bottom:367.026667pt;}
.ya2_c00031{bottom:367.226667pt;}
.ya3_c00031{bottom:367.973333pt;}
.y9e_c00031{bottom:380.360000pt;}
.y9f_c00031{bottom:381.693333pt;}
.y9d_c00031{bottom:382.440000pt;}
.y99_c00031{bottom:399.026667pt;}
.y97_c00031{bottom:401.106667pt;}
.y9b_c00031{bottom:401.693333pt;}
.y9c_c00031{bottom:401.893333pt;}
.y9a_c00031{bottom:402.640000pt;}
.y98_c00031{bottom:403.026667pt;}
.y96_c00031{bottom:417.493333pt;}
.y94_c00031{bottom:418.440000pt;}
.y95_c00031{bottom:419.226667pt;}
.y93_c00031{bottom:420.360000pt;}
.y92_c00031{bottom:433.693333pt;}
.y8e_c00031{bottom:435.026667pt;}
.y90_c00031{bottom:435.426667pt;}
.y91_c00031{bottom:435.773333pt;}
.y8d_c00031{bottom:437.693333pt;}
.y8f_c00031{bottom:437.893333pt;}
.y8c_c00031{bottom:451.973333pt;}
.y89_c00031{bottom:453.106667pt;}
.y88_c00031{bottom:454.266667pt;}
.y8b_c00031{bottom:454.640000pt;}
.y8a_c00031{bottom:455.026667pt;}
.y87_c00031{bottom:470.266667pt;}
.y85_c00031{bottom:470.440000pt;}
.y84_c00031{bottom:472.360000pt;}
.y86_c00031{bottom:472.560000pt;}
.y82_c00031{bottom:487.026667pt;}
.y83_c00031{bottom:488.560000pt;}
.y7f_c00031{bottom:488.933333pt;}
.y81_c00031{bottom:490.066667pt;}
.y80_c00031{bottom:491.026667pt;}
.y7e_c00031{bottom:504.360000pt;}
.y7d_c00031{bottom:505.306667pt;}
.y7a_c00031{bottom:505.493333pt;}
.y7c_c00031{bottom:506.440000pt;}
.y7b_c00031{bottom:508.360000pt;}
.y73_c00031{bottom:521.693333pt;}
.y77_c00031{bottom:523.400000pt;}
.y74_c00031{bottom:523.773333pt;}
.y79_c00031{bottom:523.973333pt;}
.y78_c00031{bottom:524.360000pt;}
.y75_c00031{bottom:524.560000pt;}
.y72_c00031{bottom:525.693333pt;}
.y76_c00031{bottom:526.640000pt;}
.y71_c00031{bottom:539.773333pt;}
.y70_c00031{bottom:539.973333pt;}
.y6e_c00031{bottom:541.106667pt;}
.y6f_c00031{bottom:543.026667pt;}
.y6d_c00031{bottom:557.106667pt;}
.y6a_c00031{bottom:558.440000pt;}
.y6b_c00031{bottom:559.400000pt;}
.y6c_c00031{bottom:559.973333pt;}
.y69_c00031{bottom:560.360000pt;}
.y65_c00031{bottom:575.026667pt;}
.y67_c00031{bottom:575.773333pt;}
.y68_c00031{bottom:576.733333pt;}
.y66_c00031{bottom:577.693333pt;}
.y63_c00031{bottom:593.106667pt;}
.y64_c00031{bottom:593.893333pt;}
.y61_c00031{bottom:594.066667pt;}
.y62_c00031{bottom:594.440000pt;}
.y60_c00031{bottom:595.026667pt;}
.y5f_c00031{bottom:609.693333pt;}
.y5e_c00031{bottom:610.093333pt;}
.y5c_c00031{bottom:610.440000pt;}
.y5b_c00031{bottom:611.400000pt;}
.y5d_c00031{bottom:612.360000pt;}
.y5a_c00031{bottom:613.693333pt;}
.y59_c00031{bottom:627.026667pt;}
.y57_c00031{bottom:627.773333pt;}
.y58_c00031{bottom:629.693333pt;}
.y56_c00031{bottom:645.493333pt;}
.y54_c00031{bottom:646.440000pt;}
.y55_c00031{bottom:647.400000pt;}
.y53_c00031{bottom:648.360000pt;}
.y52_c00031{bottom:661.693333pt;}
.y51_c00031{bottom:663.773333pt;}
.y50_c00031{bottom:664.733333pt;}
.y4c_c00031{bottom:680.360000pt;}
.y4d_c00031{bottom:681.106667pt;}
.y4e_c00031{bottom:683.026667pt;}
.y4f_c00031{bottom:683.973333pt;}
.y4a_c00031{bottom:698.440000pt;}
.y49_c00031{bottom:700.360000pt;}
.y4b_c00031{bottom:701.693333pt;}
.y48_c00031{bottom:715.026667pt;}
.y45_c00031{bottom:715.773333pt;}
.y47_c00031{bottom:717.106667pt;}
.y44_c00031{bottom:717.693333pt;}
.y46_c00031{bottom:719.026667pt;}
.y42_c00031{bottom:733.693333pt;}
.y43_c00031{bottom:735.026667pt;}
.y40_c00031{bottom:735.226667pt;}
.y3f_c00031{bottom:735.973333pt;}
.y41_c00031{bottom:736.360000pt;}
.y3d_c00031{bottom:749.693333pt;}
.y3e_c00031{bottom:750.440000pt;}
.y3c_c00031{bottom:751.773333pt;}
.y3b_c00031{bottom:752.733333pt;}
.y3a_c00031{bottom:769.106667pt;}
.y39_c00031{bottom:771.026667pt;}
.y35_c00031{bottom:785.493333pt;}
.y32_c00031{bottom:785.693333pt;}
.y33_c00031{bottom:786.440000pt;}
.y38_c00031{bottom:787.026667pt;}
.y36_c00031{bottom:787.400000pt;}
.y34_c00031{bottom:788.360000pt;}
.y37_c00031{bottom:789.306667pt;}
.y31_c00031{bottom:803.026667pt;}
.y2e_c00031{bottom:805.693333pt;}
.y2f_c00031{bottom:805.893333pt;}
.y2d_c00031{bottom:806.640000pt;}
.y30_c00031{bottom:807.026667pt;}
.y2b_c00031{bottom:819.973333pt;}
.y2c_c00031{bottom:820.360000pt;}
.y2a_c00031{bottom:821.106667pt;}
.y28_c00031{bottom:821.493333pt;}
.y29_c00031{bottom:822.066667pt;}
.y27_c00031{bottom:822.440000pt;}
.y24_c00031{bottom:837.306667pt;}
.y1e_c00031{bottom:837.693333pt;}
.y26_c00031{bottom:838.266667pt;}
.y23_c00031{bottom:838.440000pt;}
.y25_c00031{bottom:839.226667pt;}
.y21_c00031{bottom:839.773333pt;}
.y22_c00031{bottom:840.560000pt;}
.y20_c00031{bottom:840.733333pt;}
.y1f_c00031{bottom:841.693333pt;}
.y1c_c00031{bottom:854.640000pt;}
.y1d_c00031{bottom:855.026667pt;}
.y1b_c00031{bottom:855.773333pt;}
.y1a_c00031{bottom:857.106667pt;}
.y19_c00031{bottom:857.693333pt;}
.y18_c00031{bottom:874.440000pt;}
.y16_c00031{bottom:875.973333pt;}
.y17_c00031{bottom:876.360000pt;}
.y14_c00031{bottom:889.306667pt;}
.y15_c00031{bottom:889.693333pt;}
.yf_c00031{bottom:890.640000pt;}
.y13_c00031{bottom:890.826667pt;}
.y12_c00031{bottom:891.773333pt;}
.y11_c00031{bottom:892.560000pt;}
.y10_c00031{bottom:893.693333pt;}
.ye_c00031{bottom:906.640000pt;}
.yb_c00031{bottom:909.893333pt;}
.y9_c00031{bottom:910.640000pt;}
.yc_c00031{bottom:911.026667pt;}
.yd_c00031{bottom:911.226667pt;}
.ya_c00031{bottom:911.973333pt;}
.y8_c00031{bottom:923.973333pt;}
.y6_c00031{bottom:926.440000pt;}
.y7_c00031{bottom:928.360000pt;}
.y5_c00031{bottom:943.773333pt;}
.y4_c00031{bottom:945.693333pt;}
.y2_c00031{bottom:945.893333pt;}
.y3_c00031{bottom:946.640000pt;}
.y1_c00031{bottom:980.560000pt;}
.h8_c00031{height:7.412682pt;}
.h1_c00031{height:20.466875pt;}
.h7_c00031{height:22.303646pt;}
.h2_c00031{height:27.879557pt;}
.h3_c00031{height:31.618698pt;}
.h6_c00031{height:35.357839pt;}
.h9_c00031{height:36.952031pt;}
.h4_c00031{height:39.031380pt;}
.h5_c00031{height:42.770521pt;}
.h0_c00031{height:1186.666667pt;}
.w0_c00031{width:782.666667pt;}
.x0_c00031{left:0.000000pt;}
.x2_c00031{left:136.000000pt;}
.x93_c00031{left:137.333333pt;}
.x8f_c00031{left:139.426667pt;}
.x3_c00031{left:144.000000pt;}
.x46_c00031{left:144.960000pt;}
.x25_c00031{left:150.293333pt;}
.x15_c00031{left:151.626667pt;}
.xbc_c00031{left:170.666667pt;}
.x4_c00031{left:171.626667pt;}
.x16_c00031{left:173.333333pt;}
.xb7_c00031{left:188.373333pt;}
.xc3_c00031{left:198.666667pt;}
.x17_c00031{left:200.000000pt;}
.x1a_c00031{left:201.333333pt;}
.xaf_c00031{left:204.000000pt;}
.xbd_c00031{left:210.666667pt;}
.x9d_c00031{left:211.626667pt;}
.x5_c00031{left:213.333333pt;}
.x47_c00031{left:214.293333pt;}
.x58_c00031{left:216.000000pt;}
.x18_c00031{left:217.333333pt;}
.x45_c00031{left:218.666667pt;}
.xa8_c00031{left:219.626667pt;}
.xb0_c00031{left:221.333333pt;}
.x6c_c00031{left:222.666667pt;}
.x72_c00031{left:224.000000pt;}
.x75_c00031{left:226.293333pt;}
.x50_c00031{left:229.333333pt;}
.xc4_c00031{left:230.666667pt;}
.x1b_c00031{left:233.333333pt;}
.x19_c00031{left:234.666667pt;}
.xa9_c00031{left:236.000000pt;}
.x48_c00031{left:241.333333pt;}
.x76_c00031{left:242.666667pt;}
.x1c_c00031{left:244.000000pt;}
.x5b_c00031{left:247.626667pt;}
.xb8_c00031{left:249.333333pt;}
.xf_c00031{left:251.040000pt;}
.x6_c00031{left:252.000000pt;}
.x3d_c00031{left:254.666667pt;}
.x26_c00031{left:256.000000pt;}
.x90_c00031{left:257.706667pt;}
.x66_c00031{left:258.666667pt;}
.xbe_c00031{left:262.293333pt;}
.x31_c00031{left:263.626667pt;}
.x59_c00031{left:264.960000pt;}
.xc5_c00031{left:269.333333pt;}
.xaa_c00031{left:270.293333pt;}
.x6d_c00031{left:272.000000pt;}
.x7b_c00031{left:273.333333pt;}
.x3e_c00031{left:274.666667pt;}
.x73_c00031{left:277.706667pt;}
.x32_c00031{left:279.040000pt;}
.x94_c00031{left:280.000000pt;}
.x51_c00031{left:280.960000pt;}
.xc7_c00031{left:282.666667pt;}
.x53_c00031{left:283.626667pt;}
.x91_c00031{left:289.333333pt;}
.x67_c00031{left:291.040000pt;}
.x86_c00031{left:292.000000pt;}
.xca_c00031{left:293.706667pt;}
.xbb_c00031{left:296.000000pt;}
.xab_c00031{left:297.333333pt;}
.x1d_c00031{left:300.000000pt;}
.x52_c00031{left:305.333333pt;}
.x87_c00031{left:307.040000pt;}
.x77_c00031{left:308.373333pt;}
.x9e_c00031{left:309.333333pt;}
.x7_c00031{left:310.666667pt;}
.x3f_c00031{left:311.626667pt;}
.x5c_c00031{left:313.333333pt;}
.x95_c00031{left:316.000000pt;}
.x33_c00031{left:317.333333pt;}
.x27_c00031{left:320.000000pt;}
.xa2_c00031{left:324.000000pt;}
.x8_c00031{left:329.706667pt;}
.x88_c00031{left:330.666667pt;}
.x63_c00031{left:331.626667pt;}
.x10_c00031{left:337.133333pt;}
.x5a_c00031{left:340.000000pt;}
.x7c_c00031{left:341.706667pt;}
.xc8_c00031{left:344.000000pt;}
.x5d_c00031{left:345.706667pt;}
.xb1_c00031{left:346.666667pt;}
.x28_c00031{left:348.000000pt;}
.x54_c00031{left:349.706667pt;}
.x34_c00031{left:351.626667pt;}
.xcb_c00031{left:353.333333pt;}
.x49_c00031{left:355.040000pt;}
.x1e_c00031{left:357.333333pt;}
.x1_c00031{left:361.333333pt;}
.x92_c00031{left:366.293333pt;}
.xbf_c00031{left:368.000000pt;}
.xac_c00031{left:368.960000pt;}
.x11_c00031{left:370.666667pt;}
.x5e_c00031{left:373.333333pt;}
.x29_c00031{left:374.666667pt;}
.x40_c00031{left:376.373333pt;}
.x9_c00031{left:377.333333pt;}
.x35_c00031{left:379.040000pt;}
.xb2_c00031{left:384.000000pt;}
.x96_c00031{left:385.706667pt;}
.xa3_c00031{left:389.333333pt;}
.x55_c00031{left:392.960000pt;}
.x9f_c00031{left:395.040000pt;}
.x89_c00031{left:396.000000pt;}
.x64_c00031{left:397.706667pt;}
.x36_c00031{left:402.666667pt;}
.x1f_c00031{left:406.293333pt;}
.x68_c00031{left:408.000000pt;}
.xad_c00031{left:409.706667pt;}
.x8a_c00031{left:412.000000pt;}
.x4a_c00031{left:414.293333pt;}
.x2d_c00031{left:419.626667pt;}
.xa4_c00031{left:421.333333pt;}
.x97_c00031{left:422.666667pt;}
.xc0_c00031{left:424.000000pt;}
.x12_c00031{left:425.333333pt;}
.x2a_c00031{left:427.040000pt;}
.x20_c00031{left:429.333333pt;}
.xae_c00031{left:433.706667pt;}
.x78_c00031{left:436.000000pt;}
.xa0_c00031{left:438.293333pt;}
.x69_c00031{left:440.000000pt;}
.x65_c00031{left:440.960000pt;}
.x5f_c00031{left:443.040000pt;}
.x4b_c00031{left:444.000000pt;}
.x8b_c00031{left:450.666667pt;}
.x37_c00031{left:453.333333pt;}
.x6e_c00031{left:454.666667pt;}
.x98_c00031{left:455.626667pt;}
.xa_c00031{left:458.666667pt;}
.xcc_c00031{left:460.000000pt;}
.x21_c00031{left:462.666667pt;}
.x4c_c00031{left:465.333333pt;}
.x7d_c00031{left:466.666667pt;}
.x2b_c00031{left:467.626667pt;}
.x2e_c00031{left:471.626667pt;}
.x60_c00031{left:473.333333pt;}
.xc1_c00031{left:474.666667pt;}
.xa5_c00031{left:476.000000pt;}
.x79_c00031{left:481.333333pt;}
.x6a_c00031{left:483.626667pt;}
.x38_c00031{left:485.333333pt;}
.x83_c00031{left:488.960000pt;}
.xb_c00031{left:492.000000pt;}
.x2c_c00031{left:493.133333pt;}
.x39_c00031{left:496.000000pt;}
.x13_c00031{left:498.666667pt;}
.x7e_c00031{left:500.373333pt;}
.x41_c00031{left:503.626667pt;}
.x56_c00031{left:508.960000pt;}
.x61_c00031{left:510.293333pt;}
.xb3_c00031{left:512.000000pt;}
.xa1_c00031{left:512.960000pt;}
.x6f_c00031{left:518.293333pt;}
.x99_c00031{left:520.000000pt;}
.x2f_c00031{left:520.960000pt;}
.x84_c00031{left:528.960000pt;}
.xc_c00031{left:531.040000pt;}
.x3a_c00031{left:532.373333pt;}
.x8c_c00031{left:535.040000pt;}
.x7f_c00031{left:536.000000pt;}
.x4d_c00031{left:537.706667pt;}
.xa6_c00031{left:538.666667pt;}
.x22_c00031{left:539.626667pt;}
.x6b_c00031{left:540.960000pt;}
.xc6_c00031{left:542.293333pt;}
.xb9_c00031{left:543.626667pt;}
.x7a_c00031{left:546.293333pt;}
.xc2_c00031{left:548.000000pt;}
.x30_c00031{left:549.706667pt;}
.xb4_c00031{left:552.000000pt;}
.x9a_c00031{left:554.293333pt;}
.x85_c00031{left:556.960000pt;}
.x62_c00031{left:561.333333pt;}
.x80_c00031{left:564.960000pt;}
.x8d_c00031{left:569.333333pt;}
.x70_c00031{left:574.666667pt;}
.x9b_c00031{left:581.333333pt;}
.x57_c00031{left:582.293333pt;}
.x42_c00031{left:583.626667pt;}
.xd_c00031{left:585.333333pt;}
.x4e_c00031{left:586.666667pt;}
.x3b_c00031{left:588.000000pt;}
.x81_c00031{left:589.706667pt;}
.xc9_c00031{left:592.373333pt;}
.x43_c00031{left:600.000000pt;}
.xb5_c00031{left:601.706667pt;}
.x71_c00031{left:602.666667pt;}
.xa7_c00031{left:603.626667pt;}
.x3c_c00031{left:605.706667pt;}
.x23_c00031{left:612.960000pt;}
.xe_c00031{left:614.666667pt;}
.x8e_c00031{left:616.000000pt;}
.x4f_c00031{left:617.333333pt;}
.xb6_c00031{left:624.373333pt;}
.xba_c00031{left:626.293333pt;}
.x24_c00031{left:627.626667pt;}
.x44_c00031{left:628.960000pt;}
.x74_c00031{left:636.373333pt;}
.x9c_c00031{left:637.333333pt;}
.x82_c00031{left:638.666667pt;}
.x14_c00031{left:642.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_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_a7456c55e0db0943aac5e4e1.woff2')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:1.688965;font-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_c00032{transform:matrix(0.285788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285788,0.000000,0.000000,0.250000,0,0);}
.m19_c00032{transform:matrix(0.386364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386364,0.000000,0.000000,0.250000,0,0);}
.m1_c00032{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.ma_c00032{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m2_c00032{transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);}
.m1d_c00032{transform:matrix(0.393321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393321,0.000000,0.000000,0.250000,0,0);}
.m6_c00032{transform:matrix(0.399351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399351,0.000000,0.000000,0.250000,0,0);}
.md_c00032{transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);}
.m1e_c00032{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.m7_c00032{transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);}
.m1a_c00032{transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);}
.m3_c00032{transform:matrix(0.415456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415456,0.000000,0.000000,0.250000,0,0);}
.m5_c00032{transform:matrix(0.417059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417059,0.000000,0.000000,0.250000,0,0);}
.m16_c00032{transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);}
.mb_c00032{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.m4_c00032{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m15_c00032{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m18_c00032{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.mc_c00032{transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);}
.m8_c00032{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_c00032{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m11_c00032{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.m1c_c00032{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m9_c00032{transform:matrix(0.541912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541912,0.000000,0.000000,0.250000,0,0);}
.m14_c00032{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m10_c00032{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m12_c00032{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m13_c00032{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_c00032{transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);}
.m17_c00032{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);}
.m1b_c00032{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);}
.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:-4.240192px;}
.ws1_c00032{word-spacing:0.000000px;}
.fc0_c00032{color:transparent;}
.fs4_c00032{font-size:18.720000px;}
.fs0_c00032{font-size:20.400000px;}
.fs3_c00032{font-size:25.500000px;}
.fs1_c00032{font-size:28.920000px;}
.fs2_c00032{font-size:32.340000px;}
.y0_c00032{bottom:0.000000px;}
.y4_c00032{bottom:274.905000px;}
.y3_c00032{bottom:275.325000px;}
.y5_c00032{bottom:275.970000px;}
.y6_c00032{bottom:288.825000px;}
.y9_c00032{bottom:289.905000px;}
.ya_c00032{bottom:290.325000px;}
.y7_c00032{bottom:290.970000px;}
.y8_c00032{bottom:292.050000px;}
.yb_c00032{bottom:292.470000px;}
.y15_c00032{bottom:293.550000px;}
.y14_c00032{bottom:294.825000px;}
.y11_c00032{bottom:302.970000px;}
.y12_c00032{bottom:303.825000px;}
.y13_c00032{bottom:304.905000px;}
.y10_c00032{bottom:305.970000px;}
.yf_c00032{bottom:307.050000px;}
.yd_c00032{bottom:308.130000px;}
.ye_c00032{bottom:308.970000px;}
.yc_c00032{bottom:310.905000px;}
.y2_c00032{bottom:1099.905000px;}
.y1_c00032{bottom:1102.050000px;}
.h5_c00032{height:23.025234px;}
.h1_c00032{height:25.091602px;}
.h4_c00032{height:31.364502px;}
.h2_c00032{height:35.571035px;}
.h3_c00032{height:39.777568px;}
.h0_c00032{height:1335.000000px;}
.w0_c00032{width:880.500000px;}
.x0_c00032{left:0.000000px;}
.x1e_c00032{left:150.000000px;}
.x10_c00032{left:159.645000px;}
.x11_c00032{left:178.500000px;}
.x12_c00032{left:196.500000px;}
.x1f_c00032{left:219.420000px;}
.x20_c00032{left:246.420000px;}
.x13_c00032{left:249.420000px;}
.x14_c00032{left:277.920000px;}
.x5_c00032{left:281.580000px;}
.x21_c00032{left:319.500000px;}
.x6_c00032{left:325.500000px;}
.x15_c00032{left:327.000000px;}
.xa_c00032{left:337.500000px;}
.x3_c00032{left:343.920000px;}
.xb_c00032{left:376.500000px;}
.x16_c00032{left:383.580000px;}
.x1_c00032{left:400.500000px;}
.xc_c00032{left:415.080000px;}
.x4_c00032{left:419.580000px;}
.x8_c00032{left:455.580000px;}
.x17_c00032{left:465.420000px;}
.x18_c00032{left:492.000000px;}
.x7_c00032{left:527.580000px;}
.x9_c00032{left:529.500000px;}
.x19_c00032{left:530.580000px;}
.xd_c00032{left:547.080000px;}
.x1a_c00032{left:570.000000px;}
.xe_c00032{left:613.500000px;}
.x1b_c00032{left:619.920000px;}
.x1c_c00032{left:652.500000px;}
.xf_c00032{left:666.000000px;}
.x1d_c00032{left:669.000000px;}
.x2_c00032{left:715.080000px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.ls0_c00032{letter-spacing:0.000000pt;}
.ws0_c00032{word-spacing:-3.769059pt;}
.ws1_c00032{word-spacing:0.000000pt;}
.fs4_c00032{font-size:16.640000pt;}
.fs0_c00032{font-size:18.133333pt;}
.fs3_c00032{font-size:22.666667pt;}
.fs1_c00032{font-size:25.706667pt;}
.fs2_c00032{font-size:28.746667pt;}
.y0_c00032{bottom:0.000000pt;}
.y4_c00032{bottom:244.360000pt;}
.y3_c00032{bottom:244.733333pt;}
.y5_c00032{bottom:245.306667pt;}
.y6_c00032{bottom:256.733333pt;}
.y9_c00032{bottom:257.693333pt;}
.ya_c00032{bottom:258.066667pt;}
.y7_c00032{bottom:258.640000pt;}
.y8_c00032{bottom:259.600000pt;}
.yb_c00032{bottom:259.973333pt;}
.y15_c00032{bottom:260.933333pt;}
.y14_c00032{bottom:262.066667pt;}
.y11_c00032{bottom:269.306667pt;}
.y12_c00032{bottom:270.066667pt;}
.y13_c00032{bottom:271.026667pt;}
.y10_c00032{bottom:271.973333pt;}
.yf_c00032{bottom:272.933333pt;}
.yd_c00032{bottom:273.893333pt;}
.ye_c00032{bottom:274.640000pt;}
.yc_c00032{bottom:276.360000pt;}
.y2_c00032{bottom:977.693333pt;}
.y1_c00032{bottom:979.600000pt;}
.h5_c00032{height:20.466875pt;}
.h1_c00032{height:22.303646pt;}
.h4_c00032{height:27.879557pt;}
.h2_c00032{height:31.618698pt;}
.h3_c00032{height:35.357839pt;}
.h0_c00032{height:1186.666667pt;}
.w0_c00032{width:782.666667pt;}
.x0_c00032{left:0.000000pt;}
.x1e_c00032{left:133.333333pt;}
.x10_c00032{left:141.906667pt;}
.x11_c00032{left:158.666667pt;}
.x12_c00032{left:174.666667pt;}
.x1f_c00032{left:195.040000pt;}
.x20_c00032{left:219.040000pt;}
.x13_c00032{left:221.706667pt;}
.x14_c00032{left:247.040000pt;}
.x5_c00032{left:250.293333pt;}
.x21_c00032{left:284.000000pt;}
.x6_c00032{left:289.333333pt;}
.x15_c00032{left:290.666667pt;}
.xa_c00032{left:300.000000pt;}
.x3_c00032{left:305.706667pt;}
.xb_c00032{left:334.666667pt;}
.x16_c00032{left:340.960000pt;}
.x1_c00032{left:356.000000pt;}
.xc_c00032{left:368.960000pt;}
.x4_c00032{left:372.960000pt;}
.x8_c00032{left:404.960000pt;}
.x17_c00032{left:413.706667pt;}
.x18_c00032{left:437.333333pt;}
.x7_c00032{left:468.960000pt;}
.x9_c00032{left:470.666667pt;}
.x19_c00032{left:471.626667pt;}
.xd_c00032{left:486.293333pt;}
.x1a_c00032{left:506.666667pt;}
.xe_c00032{left:545.333333pt;}
.x1b_c00032{left:551.040000pt;}
.x1c_c00032{left:580.000000pt;}
.xf_c00032{left:592.000000pt;}
.x1d_c00032{left:594.666667pt;}
.x2_c00032{left:635.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_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_ca93bc220eb50d4483a1940a.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:1.688965;font-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_c00033{transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);}
.mf_c00033{transform:matrix(0.325920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325920,0.000000,0.000000,0.250000,0,0);}
.mdd_c00033{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.m76_c00033{transform:matrix(0.333506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333506,0.000000,0.000000,0.250000,0,0);}
.m46_c00033{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m41_c00033{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m40_c00033{transform:matrix(0.361196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361196,0.000000,0.000000,0.250000,0,0);}
.m16_c00033{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mdf_c00033{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.ma7_c00033{transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);}
.m11_c00033{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m9f_c00033{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mde_c00033{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mc7_c00033{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.ma8_c00033{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.mab_c00033{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mb7_c00033{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m65_c00033{transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);}
.m86_c00033{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m3f_c00033{transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);}
.m8f_c00033{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m21_c00033{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m35_c00033{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m48_c00033{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m87_c00033{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.mc9_c00033{transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);}
.mbc_c00033{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m17_c00033{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m3c_c00033{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m6b_c00033{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m75_c00033{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m8a_c00033{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m89_c00033{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m73_c00033{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m97_c00033{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m60_c00033{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.mb_c00033{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m5f_c00033{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.mce_c00033{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m5d_c00033{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m10_c00033{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m18_c00033{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m5c_c00033{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m8c_c00033{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mc3_c00033{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m1b_c00033{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m77_c00033{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m8e_c00033{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m2d_c00033{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m30_c00033{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.ma3_c00033{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.ma1_c00033{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m7_c00033{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m67_c00033{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.ma6_c00033{transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);}
.m58_c00033{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mac_c00033{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m6a_c00033{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m5a_c00033{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mbf_c00033{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.mcd_c00033{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m3e_c00033{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m7a_c00033{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m4f_c00033{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.mb0_c00033{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.m7f_c00033{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m28_c00033{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m47_c00033{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.md2_c00033{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m71_c00033{transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);}
.m42_c00033{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m56_c00033{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m8b_c00033{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.mc8_c00033{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m1e_c00033{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m44_c00033{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m6c_c00033{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.ma9_c00033{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.maf_c00033{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.mb1_c00033{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m63_c00033{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mad_c00033{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.m13_c00033{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.md9_c00033{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.md1_c00033{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.m51_c00033{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.m82_c00033{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.ma5_c00033{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.ma4_c00033{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.md3_c00033{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.m55_c00033{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m3_c00033{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m5b_c00033{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m23_c00033{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m59_c00033{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m3a_c00033{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mb3_c00033{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m53_c00033{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m81_c00033{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m6d_c00033{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m70_c00033{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m61_c00033{transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);}
.ma_c00033{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);}
.mba_c00033{transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);}
.m96_c00033{transform:matrix(0.503711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503711,0.000000,0.000000,0.250000,0,0);}
.mc4_c00033{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m1c_c00033{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m7b_c00033{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mbe_c00033{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m4c_c00033{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.ma0_c00033{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m68_c00033{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.mc0_c00033{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m4b_c00033{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mc6_c00033{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m4a_c00033{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m24_c00033{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m2a_c00033{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m19_c00033{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m69_c00033{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m6f_c00033{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m78_c00033{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m95_c00033{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m84_c00033{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m9d_c00033{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m1d_c00033{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m52_c00033{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m92_c00033{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mb6_c00033{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m8_c00033{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m83_c00033{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.me_c00033{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m32_c00033{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m7e_c00033{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m2b_c00033{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mdc_c00033{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m94_c00033{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m6e_c00033{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.maa_c00033{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.md_c00033{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mb9_c00033{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m29_c00033{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m2f_c00033{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m45_c00033{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m4e_c00033{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m66_c00033{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m7d_c00033{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m20_c00033{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mc_c00033{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m57_c00033{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m2c_c00033{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m80_c00033{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m22_c00033{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m64_c00033{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m3b_c00033{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m9c_c00033{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m3d_c00033{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m9a_c00033{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m37_c00033{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m9e_c00033{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.me0_c00033{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m85_c00033{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m39_c00033{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m9b_c00033{transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);}
.m36_c00033{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m31_c00033{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m72_c00033{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.ma2_c00033{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.mb4_c00033{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m8d_c00033{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mc2_c00033{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.m38_c00033{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.m93_c00033{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.md6_c00033{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m43_c00033{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m5_c00033{transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);}
.m25_c00033{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mcc_c00033{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.mdb_c00033{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m90_c00033{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m26_c00033{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);}
.m88_c00033{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m49_c00033{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.m14_c00033{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.mbb_c00033{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m27_c00033{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m4_c00033{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m4d_c00033{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.md7_c00033{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.mc5_c00033{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.mb8_c00033{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_c00033{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mc1_c00033{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);}
.m0_c00033{transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);}
.m54_c00033{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.md8_c00033{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m74_c00033{transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);}
.m79_c00033{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m50_c00033{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m6_c00033{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mca_c00033{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m2_c00033{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m99_c00033{transform:matrix(0.709135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709135,0.000000,0.000000,0.250000,0,0);}
.m62_c00033{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m15_c00033{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m98_c00033{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.mb5_c00033{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m9_c00033{transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);}
.m12_c00033{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mb2_c00033{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.mda_c00033{transform:matrix(0.741186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741186,0.000000,0.000000,0.250000,0,0);}
.m1a_c00033{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mae_c00033{transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);}
.mbd_c00033{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m2e_c00033{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m91_c00033{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m33_c00033{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.md4_c00033{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m5e_c00033{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m7c_c00033{transform:matrix(0.822115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.822115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.822115,0.000000,0.000000,0.250000,0,0);}
.m1_c00033{transform:matrix(0.851660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.851660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.851660,0.000000,0.000000,0.250000,0,0);}
.mcb_c00033{transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);}
.mcf_c00033{transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);}
.md0_c00033{transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);}
.md5_c00033{transform:matrix(6.772124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.772124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.772124,0.000000,0.000000,0.250000,0,0);}
.v0_c00033{vertical-align:0.000000px;}
.v1_c00033{vertical-align:18.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.597240px;}
.ws2_c00033{word-spacing:0.000000px;}
.ws1_c00033{word-spacing:10.582953px;}
._0_c00033{width:13.049081px;}
.fc0_c00033{color:transparent;}
.fs7_c00033{font-size:6.780000px;}
.fs3_c00033{font-size:18.720000px;}
.fs6_c00033{font-size:20.400000px;}
.fs1_c00033{font-size:25.500000px;}
.fs0_c00033{font-size:28.920000px;}
.fs5_c00033{font-size:32.340000px;}
.fs2_c00033{font-size:35.700000px;}
.fs4_c00033{font-size:39.120000px;}
.y0_c00033{bottom:0.000000px;}
.yb4_c00033{bottom:229.905000px;}
.yb1_c00033{bottom:232.905000px;}
.yb2_c00033{bottom:233.130000px;}
.yb3_c00033{bottom:233.970000px;}
.yb0_c00033{bottom:249.405000px;}
.yaf_c00033{bottom:251.745000px;}
.yad_c00033{bottom:271.245000px;}
.yae_c00033{bottom:272.130000px;}
.yaa_c00033{bottom:272.550000px;}
.yac_c00033{bottom:273.405000px;}
.yab_c00033{bottom:274.470000px;}
.ya5_c00033{bottom:290.325000px;}
.ya8_c00033{bottom:290.355000px;}
.ya4_c00033{bottom:290.745000px;}
.ya9_c00033{bottom:291.630000px;}
.ya6_c00033{bottom:291.825000px;}
.ya3_c00033{bottom:292.905000px;}
.ya7_c00033{bottom:293.130000px;}
.ya1_c00033{bottom:308.970000px;}
.ya0_c00033{bottom:309.855000px;}
.y9f_c00033{bottom:310.245000px;}
.ya2_c00033{bottom:311.130000px;}
.y9e_c00033{bottom:312.405000px;}
.y9d_c00033{bottom:312.630000px;}
.y9a_c00033{bottom:333.405000px;}
.y9b_c00033{bottom:334.680000px;}
.y9c_c00033{bottom:335.550000px;}
.y97_c00033{bottom:335.745000px;}
.y98_c00033{bottom:336.405000px;}
.y99_c00033{bottom:337.905000px;}
.y96_c00033{bottom:370.245000px;}
.y95_c00033{bottom:372.405000px;}
.y91_c00033{bottom:387.405000px;}
.y93_c00033{bottom:390.630000px;}
.y94_c00033{bottom:391.470000px;}
.y92_c00033{bottom:391.905000px;}
.y8d_c00033{bottom:409.245000px;}
.y8e_c00033{bottom:410.130000px;}
.y90_c00033{bottom:410.970000px;}
.y8c_c00033{bottom:411.405000px;}
.y8b_c00033{bottom:411.630000px;}
.y8f_c00033{bottom:412.470000px;}
.y89_c00033{bottom:428.745000px;}
.y8a_c00033{bottom:430.470000px;}
.y86_c00033{bottom:430.905000px;}
.y88_c00033{bottom:431.325000px;}
.y87_c00033{bottom:431.970000px;}
.y85_c00033{bottom:448.245000px;}
.y84_c00033{bottom:448.470000px;}
.y83_c00033{bottom:449.745000px;}
.y82_c00033{bottom:450.405000px;}
.y81_c00033{bottom:451.905000px;}
.y7a_c00033{bottom:466.905000px;}
.y7d_c00033{bottom:467.745000px;}
.y7e_c00033{bottom:468.825000px;}
.y7b_c00033{bottom:469.245000px;}
.y80_c00033{bottom:469.905000px;}
.y7f_c00033{bottom:470.130000px;}
.y7c_c00033{bottom:470.970000px;}
.y75_c00033{bottom:487.680000px;}
.y76_c00033{bottom:488.745000px;}
.y79_c00033{bottom:489.630000px;}
.y78_c00033{bottom:489.825000px;}
.y77_c00033{bottom:490.905000px;}
.y73_c00033{bottom:506.970000px;}
.y72_c00033{bottom:508.245000px;}
.y74_c00033{bottom:509.325000px;}
.y71_c00033{bottom:510.405000px;}
.y6f_c00033{bottom:526.905000px;}
.y6e_c00033{bottom:527.745000px;}
.y70_c00033{bottom:529.470000px;}
.y6d_c00033{bottom:529.905000px;}
.y6c_c00033{bottom:546.405000px;}
.y6a_c00033{bottom:547.245000px;}
.y6b_c00033{bottom:548.970000px;}
.y69_c00033{bottom:549.405000px;}
.y64_c00033{bottom:566.745000px;}
.y67_c00033{bottom:567.825000px;}
.y65_c00033{bottom:568.905000px;}
.y68_c00033{bottom:569.130000px;}
.y66_c00033{bottom:569.970000px;}
.y62_c00033{bottom:586.245000px;}
.y61_c00033{bottom:588.405000px;}
.y63_c00033{bottom:588.630000px;}
.y60_c00033{bottom:607.245000px;}
.y5f_c00033{bottom:608.130000px;}
.y5e_c00033{bottom:609.405000px;}
.y5d_c00033{bottom:625.680000px;}
.y5c_c00033{bottom:626.745000px;}
.y5a_c00033{bottom:627.630000px;}
.y5b_c00033{bottom:627.825000px;}
.y59_c00033{bottom:628.905000px;}
.y58_c00033{bottom:643.905000px;}
.y56_c00033{bottom:644.970000px;}
.y55_c00033{bottom:645.180000px;}
.y57_c00033{bottom:646.245000px;}
.y54_c00033{bottom:647.130000px;}
.y53_c00033{bottom:648.405000px;}
.y4f_c00033{bottom:665.745000px;}
.y50_c00033{bottom:667.470000px;}
.y51_c00033{bottom:667.905000px;}
.y52_c00033{bottom:668.970000px;}
.y4b_c00033{bottom:683.745000px;}
.y49_c00033{bottom:684.405000px;}
.y4c_c00033{bottom:685.245000px;}
.y4e_c00033{bottom:686.130000px;}
.y4a_c00033{bottom:686.325000px;}
.y4d_c00033{bottom:686.550000px;}
.y48_c00033{bottom:687.405000px;}
.y45_c00033{bottom:703.905000px;}
.y46_c00033{bottom:704.745000px;}
.y44_c00033{bottom:706.905000px;}
.y47_c00033{bottom:707.130000px;}
.y43_c00033{bottom:708.405000px;}
.y42_c00033{bottom:724.245000px;}
.y3f_c00033{bottom:726.405000px;}
.y41_c00033{bottom:726.630000px;}
.y40_c00033{bottom:727.470000px;}
.y3e_c00033{bottom:727.905000px;}
.y3b_c00033{bottom:745.245000px;}
.y3d_c00033{bottom:745.905000px;}
.y3a_c00033{bottom:746.130000px;}
.y3c_c00033{bottom:746.325000px;}
.y39_c00033{bottom:747.405000px;}
.y36_c00033{bottom:763.245000px;}
.y37_c00033{bottom:764.745000px;}
.y35_c00033{bottom:765.405000px;}
.y38_c00033{bottom:765.630000px;}
.y34_c00033{bottom:766.905000px;}
.y31_c00033{bottom:781.905000px;}
.y30_c00033{bottom:784.245000px;}
.y2f_c00033{bottom:785.130000px;}
.y32_c00033{bottom:785.325000px;}
.y2e_c00033{bottom:785.970000px;}
.y2d_c00033{bottom:786.405000px;}
.y33_c00033{bottom:787.470000px;}
.y29_c00033{bottom:801.405000px;}
.y27_c00033{bottom:803.745000px;}
.y2a_c00033{bottom:804.630000px;}
.y2b_c00033{bottom:804.825000px;}
.y28_c00033{bottom:805.905000px;}
.y2c_c00033{bottom:806.970000px;}
.y26_c00033{bottom:822.825000px;}
.y23_c00033{bottom:823.245000px;}
.y24_c00033{bottom:825.405000px;}
.y25_c00033{bottom:826.470000px;}
.y22_c00033{bottom:841.680000px;}
.y20_c00033{bottom:842.745000px;}
.y21_c00033{bottom:844.470000px;}
.y1f_c00033{bottom:844.905000px;}
.y1d_c00033{bottom:862.245000px;}
.y1b_c00033{bottom:862.680000px;}
.y1c_c00033{bottom:864.405000px;}
.y1e_c00033{bottom:865.470000px;}
.y1a_c00033{bottom:881.745000px;}
.y17_c00033{bottom:883.245000px;}
.y16_c00033{bottom:883.905000px;}
.y18_c00033{bottom:884.130000px;}
.y19_c00033{bottom:884.970000px;}
.y13_c00033{bottom:900.405000px;}
.y12_c00033{bottom:902.745000px;}
.y15_c00033{bottom:904.470000px;}
.y11_c00033{bottom:904.905000px;}
.y14_c00033{bottom:905.970000px;}
.yc_c00033{bottom:922.245000px;}
.ye_c00033{bottom:923.130000px;}
.y10_c00033{bottom:923.325000px;}
.yf_c00033{bottom:923.970000px;}
.yd_c00033{bottom:924.405000px;}
.y8_c00033{bottom:940.680000px;}
.y9_c00033{bottom:941.745000px;}
.ya_c00033{bottom:942.630000px;}
.yb_c00033{bottom:942.825000px;}
.y7_c00033{bottom:943.905000px;}
.y6_c00033{bottom:958.905000px;}
.y4_c00033{bottom:961.245000px;}
.y5_c00033{bottom:962.130000px;}
.y3_c00033{bottom:962.970000px;}
.y2_c00033{bottom:963.405000px;}
.y1_c00033{bottom:1002.405000px;}
.h9_c00033{height:8.339268px;}
.h4_c00033{height:23.025234px;}
.h8_c00033{height:25.091602px;}
.h2_c00033{height:31.364502px;}
.h1_c00033{height:35.571035px;}
.h7_c00033{height:39.777568px;}
.h3_c00033{height:43.910303px;}
.h6_c00033{height:48.116836px;}
.h5_c00033{height:53.571035px;}
.h0_c00033{height:1335.000000px;}
.w0_c00033{width:880.500000px;}
.x0_c00033{left:0.000000px;}
.xfb_c00033{left:150.420000px;}
.xb8_c00033{left:151.500000px;}
.x67_c00033{left:152.580000px;}
.xf_c00033{left:154.080000px;}
.xf6_c00033{left:157.080000px;}
.xb9_c00033{left:168.000000px;}
.x8e_c00033{left:169.080000px;}
.x3c_c00033{left:170.580000px;}
.x3_c00033{left:172.500000px;}
.xa5_c00033{left:174.420000px;}
.x97_c00033{left:177.420000px;}
.xee_c00033{left:180.000000px;}
.xf2_c00033{left:181.500000px;}
.x68_c00033{left:183.420000px;}
.xb1_c00033{left:186.000000px;}
.x29_c00033{left:189.420000px;}
.x7e_c00033{left:190.500000px;}
.x4_c00033{left:192.000000px;}
.x59_c00033{left:193.500000px;}
.x3d_c00033{left:196.920000px;}
.x75_c00033{left:198.000000px;}
.x35_c00033{left:202.500000px;}
.x98_c00033{left:204.000000px;}
.xe8_c00033{left:207.420000px;}
.x69_c00033{left:208.500000px;}
.x9e_c00033{left:210.000000px;}
.x5_c00033{left:211.500000px;}
.x8f_c00033{left:214.920000px;}
.x1d_c00033{left:217.500000px;}
.xbf_c00033{left:222.000000px;}
.x3e_c00033{left:225.000000px;}
.x10_c00033{left:226.080000px;}
.x9f_c00033{left:229.920000px;}
.xde_c00033{left:232.500000px;}
.xe9_c00033{left:235.500000px;}
.x86_c00033{left:237.000000px;}
.x2a_c00033{left:238.500000px;}
.x90_c00033{left:241.920000px;}
.x6_c00033{left:243.420000px;}
.xa6_c00033{left:245.580000px;}
.xdc_c00033{left:247.080000px;}
.x4b_c00033{left:250.500000px;}
.x5a_c00033{left:252.000000px;}
.x76_c00033{left:253.080000px;}
.x87_c00033{left:255.000000px;}
.x51_c00033{left:256.080000px;}
.x11_c00033{left:258.000000px;}
.xba_c00033{left:259.500000px;}
.xe3_c00033{left:261.420000px;}
.x99_c00033{left:262.920000px;}
.x3f_c00033{left:269.580000px;}
.x5b_c00033{left:271.920000px;}
.x1e_c00033{left:273.000000px;}
.x2b_c00033{left:274.080000px;}
.xab_c00033{left:279.000000px;}
.x6a_c00033{left:282.420000px;}
.x77_c00033{left:283.920000px;}
.x36_c00033{left:285.420000px;}
.x52_c00033{left:288.420000px;}
.xd1_c00033{left:289.500000px;}
.xc0_c00033{left:290.580000px;}
.x91_c00033{left:292.080000px;}
.xb2_c00033{left:294.420000px;}
.x2c_c00033{left:297.000000px;}
.xbb_c00033{left:298.500000px;}
.x5c_c00033{left:300.000000px;}
.x40_c00033{left:301.920000px;}
.x12_c00033{left:304.500000px;}
.x7_c00033{left:307.500000px;}
.xd7_c00033{left:309.000000px;}
.x92_c00033{left:310.080000px;}
.x9a_c00033{left:312.420000px;}
.x37_c00033{left:316.080000px;}
.xc1_c00033{left:318.000000px;}
.xdf_c00033{left:319.920000px;}
.x6b_c00033{left:321.000000px;}
.xb3_c00033{left:322.920000px;}
.xea_c00033{left:324.000000px;}
.x4c_c00033{left:325.500000px;}
.xfc_c00033{left:328.920000px;}
.x8_c00033{left:330.420000px;}
.x6c_c00033{left:336.000000px;}
.x13_c00033{left:337.920000px;}
.x38_c00033{left:339.420000px;}
.x7f_c00033{left:342.420000px;}
.x5d_c00033{left:345.855000px;}
.x6d_c00033{left:346.920000px;}
.x4d_c00033{left:348.420000px;}
.x1f_c00033{left:351.000000px;}
.x1_c00033{left:353.580000px;}
.x88_c00033{left:357.420000px;}
.xd2_c00033{left:360.420000px;}
.x2d_c00033{left:363.000000px;}
.xa7_c00033{left:364.080000px;}
.x80_c00033{left:367.500000px;}
.x78_c00033{left:368.580000px;}
.xdd_c00033{left:370.500000px;}
.x14_c00033{left:375.000000px;}
.x5e_c00033{left:376.500000px;}
.x4e_c00033{left:377.580000px;}
.xe4_c00033{left:382.500000px;}
.x6e_c00033{left:384.000000px;}
.xa8_c00033{left:385.500000px;}
.x79_c00033{left:387.420000px;}
.xac_c00033{left:393.000000px;}
.xf7_c00033{left:394.500000px;}
.x93_c00033{left:396.000000px;}
.x5f_c00033{left:397.500000px;}
.x41_c00033{left:398.580000px;}
.x2e_c00033{left:400.920000px;}
.xb4_c00033{left:403.500000px;}
.x15_c00033{left:405.000000px;}
.x2_c00033{left:409.500000px;}
.xad_c00033{left:411.420000px;}
.x9_c00033{left:412.920000px;}
.xf8_c00033{left:414.420000px;}
.xd3_c00033{left:415.920000px;}
.x42_c00033{left:418.920000px;}
.x4f_c00033{left:421.920000px;}
.x81_c00033{left:423.000000px;}
.xc2_c00033{left:424.500000px;}
.xc8_c00033{left:426.420000px;}
.x53_c00033{left:429.000000px;}
.x60_c00033{left:430.500000px;}
.xd8_c00033{left:433.500000px;}
.xae_c00033{left:435.000000px;}
.x100_c00033{left:436.500000px;}
.x39_c00033{left:438.420000px;}
.x20_c00033{left:441.000000px;}
.xa_c00033{left:442.920000px;}
.xb5_c00033{left:445.920000px;}
.x2f_c00033{left:447.000000px;}
.x82_c00033{left:448.500000px;}
.x61_c00033{left:451.500000px;}
.xaf_c00033{left:453.420000px;}
.x6f_c00033{left:455.355000px;}
.x54_c00033{left:457.920000px;}
.x21_c00033{left:462.420000px;}
.x16_c00033{left:466.080000px;}
.x50_c00033{left:467.580000px;}
.xfd_c00033{left:469.500000px;}
.x62_c00033{left:471.420000px;}
.xeb_c00033{left:472.500000px;}
.xa0_c00033{left:475.500000px;}
.x3a_c00033{left:478.500000px;}
.x30_c00033{left:480.000000px;}
.xc9_c00033{left:483.000000px;}
.x43_c00033{left:484.920000px;}
.x89_c00033{left:487.920000px;}
.xb_c00033{left:489.420000px;}
.x7a_c00033{left:490.500000px;}
.x83_c00033{left:493.500000px;}
.xc3_c00033{left:495.000000px;}
.x17_c00033{left:496.920000px;}
.x55_c00033{left:499.080000px;}
.x22_c00033{left:503.580000px;}
.x94_c00033{left:505.500000px;}
.xcd_c00033{left:507.000000px;}
.xef_c00033{left:511.080000px;}
.xc4_c00033{left:513.000000px;}
.x8a_c00033{left:516.000000px;}
.x31_c00033{left:520.500000px;}
.xf3_c00033{left:522.000000px;}
.x23_c00033{left:523.920000px;}
.x44_c00033{left:525.420000px;}
.xa1_c00033{left:526.500000px;}
.xbc_c00033{left:528.000000px;}
.xf9_c00033{left:529.920000px;}
.x56_c00033{left:531.420000px;}
.xca_c00033{left:532.500000px;}
.xd9_c00033{left:534.000000px;}
.x18_c00033{left:535.080000px;}
.x3b_c00033{left:538.500000px;}
.xc5_c00033{left:540.000000px;}
.xe5_c00033{left:541.080000px;}
.xce_c00033{left:543.420000px;}
.xbd_c00033{left:545.580000px;}
.x63_c00033{left:547.500000px;}
.xfe_c00033{left:550.080000px;}
.x24_c00033{left:552.000000px;}
.x45_c00033{left:553.500000px;}
.x19_c00033{left:555.420000px;}
.xc_c00033{left:564.000000px;}
.xa2_c00033{left:565.920000px;}
.xec_c00033{left:567.420000px;}
.x70_c00033{left:568.500000px;}
.xcf_c00033{left:570.000000px;}
.x8b_c00033{left:571.080000px;}
.xe0_c00033{left:572.580000px;}
.xf0_c00033{left:575.580000px;}
.x32_c00033{left:580.080000px;}
.x1a_c00033{left:582.000000px;}
.x71_c00033{left:583.920000px;}
.x9b_c00033{left:585.420000px;}
.x64_c00033{left:589.080000px;}
.xcb_c00033{left:590.580000px;}
.x57_c00033{left:592.500000px;}
.xa3_c00033{left:594.420000px;}
.xed_c00033{left:595.500000px;}
.xa9_c00033{left:598.500000px;}
.xf4_c00033{left:601.080000px;}
.x46_c00033{left:602.580000px;}
.x7b_c00033{left:604.500000px;}
.x25_c00033{left:608.580000px;}
.x9c_c00033{left:611.580000px;}
.x84_c00033{left:613.920000px;}
.x58_c00033{left:616.500000px;}
.xd0_c00033{left:620.580000px;}
.x47_c00033{left:622.920000px;}
.x7c_c00033{left:625.920000px;}
.xd4_c00033{left:628.500000px;}
.xb0_c00033{left:629.580000px;}
.x8c_c00033{left:631.920000px;}
.x72_c00033{left:633.000000px;}
.xc6_c00033{left:634.500000px;}
.xf1_c00033{left:636.000000px;}
.x1b_c00033{left:639.000000px;}
.xb6_c00033{left:640.080000px;}
.x33_c00033{left:642.000000px;}
.xda_c00033{left:643.500000px;}
.x95_c00033{left:645.000000px;}
.xd_c00033{left:646.080000px;}
.xd5_c00033{left:648.000000px;}
.x48_c00033{left:651.000000px;}
.x65_c00033{left:652.500000px;}
.x73_c00033{left:654.000000px;}
.xa4_c00033{left:661.500000px;}
.xaa_c00033{left:663.000000px;}
.xe6_c00033{left:664.500000px;}
.x8d_c00033{left:666.000000px;}
.xe1_c00033{left:667.500000px;}
.xbe_c00033{left:669.000000px;}
.x26_c00033{left:670.080000px;}
.xb7_c00033{left:672.000000px;}
.xfa_c00033{left:676.500000px;}
.x85_c00033{left:678.000000px;}
.x74_c00033{left:679.080000px;}
.x66_c00033{left:681.000000px;}
.x49_c00033{left:688.920000px;}
.x9d_c00033{left:690.000000px;}
.xe7_c00033{left:691.920000px;}
.x7d_c00033{left:693.420000px;}
.x96_c00033{left:695.580000px;}
.xe2_c00033{left:698.580000px;}
.xe_c00033{left:700.920000px;}
.x27_c00033{left:703.080000px;}
.xc7_c00033{left:708.420000px;}
.x1c_c00033{left:711.420000px;}
.xcc_c00033{left:712.500000px;}
.xdb_c00033{left:714.000000px;}
.xf5_c00033{left:715.500000px;}
.xff_c00033{left:717.000000px;}
.x34_c00033{left:718.500000px;}
.xd6_c00033{left:720.000000px;}
.x4a_c00033{left:721.500000px;}
.x28_c00033{left:724.500000px;}
@media print{
.v0_c00033{vertical-align:0.000000pt;}
.v1_c00033{vertical-align:16.000000pt;}
.ls0_c00033{letter-spacing:0.000000pt;}
.ws0_c00033{word-spacing:-0.530880pt;}
.ws2_c00033{word-spacing:0.000000pt;}
.ws1_c00033{word-spacing:9.407069pt;}
._0_c00033{width:11.599183pt;}
.fs7_c00033{font-size:6.026667pt;}
.fs3_c00033{font-size:16.640000pt;}
.fs6_c00033{font-size:18.133333pt;}
.fs1_c00033{font-size:22.666667pt;}
.fs0_c00033{font-size:25.706667pt;}
.fs5_c00033{font-size:28.746667pt;}
.fs2_c00033{font-size:31.733333pt;}
.fs4_c00033{font-size:34.773333pt;}
.y0_c00033{bottom:0.000000pt;}
.yb4_c00033{bottom:204.360000pt;}
.yb1_c00033{bottom:207.026667pt;}
.yb2_c00033{bottom:207.226667pt;}
.yb3_c00033{bottom:207.973333pt;}
.yb0_c00033{bottom:221.693333pt;}
.yaf_c00033{bottom:223.773333pt;}
.yad_c00033{bottom:241.106667pt;}
.yae_c00033{bottom:241.893333pt;}
.yaa_c00033{bottom:242.266667pt;}
.yac_c00033{bottom:243.026667pt;}
.yab_c00033{bottom:243.973333pt;}
.ya5_c00033{bottom:258.066667pt;}
.ya8_c00033{bottom:258.093333pt;}
.ya4_c00033{bottom:258.440000pt;}
.ya9_c00033{bottom:259.226667pt;}
.ya6_c00033{bottom:259.400000pt;}
.ya3_c00033{bottom:260.360000pt;}
.ya7_c00033{bottom:260.560000pt;}
.ya1_c00033{bottom:274.640000pt;}
.ya0_c00033{bottom:275.426667pt;}
.y9f_c00033{bottom:275.773333pt;}
.ya2_c00033{bottom:276.560000pt;}
.y9e_c00033{bottom:277.693333pt;}
.y9d_c00033{bottom:277.893333pt;}
.y9a_c00033{bottom:296.360000pt;}
.y9b_c00033{bottom:297.493333pt;}
.y9c_c00033{bottom:298.266667pt;}
.y97_c00033{bottom:298.440000pt;}
.y98_c00033{bottom:299.026667pt;}
.y99_c00033{bottom:300.360000pt;}
.y96_c00033{bottom:329.106667pt;}
.y95_c00033{bottom:331.026667pt;}
.y91_c00033{bottom:344.360000pt;}
.y93_c00033{bottom:347.226667pt;}
.y94_c00033{bottom:347.973333pt;}
.y92_c00033{bottom:348.360000pt;}
.y8d_c00033{bottom:363.773333pt;}
.y8e_c00033{bottom:364.560000pt;}
.y90_c00033{bottom:365.306667pt;}
.y8c_c00033{bottom:365.693333pt;}
.y8b_c00033{bottom:365.893333pt;}
.y8f_c00033{bottom:366.640000pt;}
.y89_c00033{bottom:381.106667pt;}
.y8a_c00033{bottom:382.640000pt;}
.y86_c00033{bottom:383.026667pt;}
.y88_c00033{bottom:383.400000pt;}
.y87_c00033{bottom:383.973333pt;}
.y85_c00033{bottom:398.440000pt;}
.y84_c00033{bottom:398.640000pt;}
.y83_c00033{bottom:399.773333pt;}
.y82_c00033{bottom:400.360000pt;}
.y81_c00033{bottom:401.693333pt;}
.y7a_c00033{bottom:415.026667pt;}
.y7d_c00033{bottom:415.773333pt;}
.y7e_c00033{bottom:416.733333pt;}
.y7b_c00033{bottom:417.106667pt;}
.y80_c00033{bottom:417.693333pt;}
.y7f_c00033{bottom:417.893333pt;}
.y7c_c00033{bottom:418.640000pt;}
.y75_c00033{bottom:433.493333pt;}
.y76_c00033{bottom:434.440000pt;}
.y79_c00033{bottom:435.226667pt;}
.y78_c00033{bottom:435.400000pt;}
.y77_c00033{bottom:436.360000pt;}
.y73_c00033{bottom:450.640000pt;}
.y72_c00033{bottom:451.773333pt;}
.y74_c00033{bottom:452.733333pt;}
.y71_c00033{bottom:453.693333pt;}
.y6f_c00033{bottom:468.360000pt;}
.y6e_c00033{bottom:469.106667pt;}
.y70_c00033{bottom:470.640000pt;}
.y6d_c00033{bottom:471.026667pt;}
.y6c_c00033{bottom:485.693333pt;}
.y6a_c00033{bottom:486.440000pt;}
.y6b_c00033{bottom:487.973333pt;}
.y69_c00033{bottom:488.360000pt;}
.y64_c00033{bottom:503.773333pt;}
.y67_c00033{bottom:504.733333pt;}
.y65_c00033{bottom:505.693333pt;}
.y68_c00033{bottom:505.893333pt;}
.y66_c00033{bottom:506.640000pt;}
.y62_c00033{bottom:521.106667pt;}
.y61_c00033{bottom:523.026667pt;}
.y63_c00033{bottom:523.226667pt;}
.y60_c00033{bottom:539.773333pt;}
.y5f_c00033{bottom:540.560000pt;}
.y5e_c00033{bottom:541.693333pt;}
.y5d_c00033{bottom:556.160000pt;}
.y5c_c00033{bottom:557.106667pt;}
.y5a_c00033{bottom:557.893333pt;}
.y5b_c00033{bottom:558.066667pt;}
.y59_c00033{bottom:559.026667pt;}
.y58_c00033{bottom:572.360000pt;}
.y56_c00033{bottom:573.306667pt;}
.y55_c00033{bottom:573.493333pt;}
.y57_c00033{bottom:574.440000pt;}
.y54_c00033{bottom:575.226667pt;}
.y53_c00033{bottom:576.360000pt;}
.y4f_c00033{bottom:591.773333pt;}
.y50_c00033{bottom:593.306667pt;}
.y51_c00033{bottom:593.693333pt;}
.y52_c00033{bottom:594.640000pt;}
.y4b_c00033{bottom:607.773333pt;}
.y49_c00033{bottom:608.360000pt;}
.y4c_c00033{bottom:609.106667pt;}
.y4e_c00033{bottom:609.893333pt;}
.y4a_c00033{bottom:610.066667pt;}
.y4d_c00033{bottom:610.266667pt;}
.y48_c00033{bottom:611.026667pt;}
.y45_c00033{bottom:625.693333pt;}
.y46_c00033{bottom:626.440000pt;}
.y44_c00033{bottom:628.360000pt;}
.y47_c00033{bottom:628.560000pt;}
.y43_c00033{bottom:629.693333pt;}
.y42_c00033{bottom:643.773333pt;}
.y3f_c00033{bottom:645.693333pt;}
.y41_c00033{bottom:645.893333pt;}
.y40_c00033{bottom:646.640000pt;}
.y3e_c00033{bottom:647.026667pt;}
.y3b_c00033{bottom:662.440000pt;}
.y3d_c00033{bottom:663.026667pt;}
.y3a_c00033{bottom:663.226667pt;}
.y3c_c00033{bottom:663.400000pt;}
.y39_c00033{bottom:664.360000pt;}
.y36_c00033{bottom:678.440000pt;}
.y37_c00033{bottom:679.773333pt;}
.y35_c00033{bottom:680.360000pt;}
.y38_c00033{bottom:680.560000pt;}
.y34_c00033{bottom:681.693333pt;}
.y31_c00033{bottom:695.026667pt;}
.y30_c00033{bottom:697.106667pt;}
.y2f_c00033{bottom:697.893333pt;}
.y32_c00033{bottom:698.066667pt;}
.y2e_c00033{bottom:698.640000pt;}
.y2d_c00033{bottom:699.026667pt;}
.y33_c00033{bottom:699.973333pt;}
.y29_c00033{bottom:712.360000pt;}
.y27_c00033{bottom:714.440000pt;}
.y2a_c00033{bottom:715.226667pt;}
.y2b_c00033{bottom:715.400000pt;}
.y28_c00033{bottom:716.360000pt;}
.y2c_c00033{bottom:717.306667pt;}
.y26_c00033{bottom:731.400000pt;}
.y23_c00033{bottom:731.773333pt;}
.y24_c00033{bottom:733.693333pt;}
.y25_c00033{bottom:734.640000pt;}
.y22_c00033{bottom:748.160000pt;}
.y20_c00033{bottom:749.106667pt;}
.y21_c00033{bottom:750.640000pt;}
.y1f_c00033{bottom:751.026667pt;}
.y1d_c00033{bottom:766.440000pt;}
.y1b_c00033{bottom:766.826667pt;}
.y1c_c00033{bottom:768.360000pt;}
.y1e_c00033{bottom:769.306667pt;}
.y1a_c00033{bottom:783.773333pt;}
.y17_c00033{bottom:785.106667pt;}
.y16_c00033{bottom:785.693333pt;}
.y18_c00033{bottom:785.893333pt;}
.y19_c00033{bottom:786.640000pt;}
.y13_c00033{bottom:800.360000pt;}
.y12_c00033{bottom:802.440000pt;}
.y15_c00033{bottom:803.973333pt;}
.y11_c00033{bottom:804.360000pt;}
.y14_c00033{bottom:805.306667pt;}
.yc_c00033{bottom:819.773333pt;}
.ye_c00033{bottom:820.560000pt;}
.y10_c00033{bottom:820.733333pt;}
.yf_c00033{bottom:821.306667pt;}
.yd_c00033{bottom:821.693333pt;}
.y8_c00033{bottom:836.160000pt;}
.y9_c00033{bottom:837.106667pt;}
.ya_c00033{bottom:837.893333pt;}
.yb_c00033{bottom:838.066667pt;}
.y7_c00033{bottom:839.026667pt;}
.y6_c00033{bottom:852.360000pt;}
.y4_c00033{bottom:854.440000pt;}
.y5_c00033{bottom:855.226667pt;}
.y3_c00033{bottom:855.973333pt;}
.y2_c00033{bottom:856.360000pt;}
.y1_c00033{bottom:891.026667pt;}
.h9_c00033{height:7.412682pt;}
.h4_c00033{height:20.466875pt;}
.h8_c00033{height:22.303646pt;}
.h2_c00033{height:27.879557pt;}
.h1_c00033{height:31.618698pt;}
.h7_c00033{height:35.357839pt;}
.h3_c00033{height:39.031380pt;}
.h6_c00033{height:42.770521pt;}
.h5_c00033{height:47.618698pt;}
.h0_c00033{height:1186.666667pt;}
.w0_c00033{width:782.666667pt;}
.x0_c00033{left:0.000000pt;}
.xfb_c00033{left:133.706667pt;}
.xb8_c00033{left:134.666667pt;}
.x67_c00033{left:135.626667pt;}
.xf_c00033{left:136.960000pt;}
.xf6_c00033{left:139.626667pt;}
.xb9_c00033{left:149.333333pt;}
.x8e_c00033{left:150.293333pt;}
.x3c_c00033{left:151.626667pt;}
.x3_c00033{left:153.333333pt;}
.xa5_c00033{left:155.040000pt;}
.x97_c00033{left:157.706667pt;}
.xee_c00033{left:160.000000pt;}
.xf2_c00033{left:161.333333pt;}
.x68_c00033{left:163.040000pt;}
.xb1_c00033{left:165.333333pt;}
.x29_c00033{left:168.373333pt;}
.x7e_c00033{left:169.333333pt;}
.x4_c00033{left:170.666667pt;}
.x59_c00033{left:172.000000pt;}
.x3d_c00033{left:175.040000pt;}
.x75_c00033{left:176.000000pt;}
.x35_c00033{left:180.000000pt;}
.x98_c00033{left:181.333333pt;}
.xe8_c00033{left:184.373333pt;}
.x69_c00033{left:185.333333pt;}
.x9e_c00033{left:186.666667pt;}
.x5_c00033{left:188.000000pt;}
.x8f_c00033{left:191.040000pt;}
.x1d_c00033{left:193.333333pt;}
.xbf_c00033{left:197.333333pt;}
.x3e_c00033{left:200.000000pt;}
.x10_c00033{left:200.960000pt;}
.x9f_c00033{left:204.373333pt;}
.xde_c00033{left:206.666667pt;}
.xe9_c00033{left:209.333333pt;}
.x86_c00033{left:210.666667pt;}
.x2a_c00033{left:212.000000pt;}
.x90_c00033{left:215.040000pt;}
.x6_c00033{left:216.373333pt;}
.xa6_c00033{left:218.293333pt;}
.xdc_c00033{left:219.626667pt;}
.x4b_c00033{left:222.666667pt;}
.x5a_c00033{left:224.000000pt;}
.x76_c00033{left:224.960000pt;}
.x87_c00033{left:226.666667pt;}
.x51_c00033{left:227.626667pt;}
.x11_c00033{left:229.333333pt;}
.xba_c00033{left:230.666667pt;}
.xe3_c00033{left:232.373333pt;}
.x99_c00033{left:233.706667pt;}
.x3f_c00033{left:239.626667pt;}
.x5b_c00033{left:241.706667pt;}
.x1e_c00033{left:242.666667pt;}
.x2b_c00033{left:243.626667pt;}
.xab_c00033{left:248.000000pt;}
.x6a_c00033{left:251.040000pt;}
.x77_c00033{left:252.373333pt;}
.x36_c00033{left:253.706667pt;}
.x52_c00033{left:256.373333pt;}
.xd1_c00033{left:257.333333pt;}
.xc0_c00033{left:258.293333pt;}
.x91_c00033{left:259.626667pt;}
.xb2_c00033{left:261.706667pt;}
.x2c_c00033{left:264.000000pt;}
.xbb_c00033{left:265.333333pt;}
.x5c_c00033{left:266.666667pt;}
.x40_c00033{left:268.373333pt;}
.x12_c00033{left:270.666667pt;}
.x7_c00033{left:273.333333pt;}
.xd7_c00033{left:274.666667pt;}
.x92_c00033{left:275.626667pt;}
.x9a_c00033{left:277.706667pt;}
.x37_c00033{left:280.960000pt;}
.xc1_c00033{left:282.666667pt;}
.xdf_c00033{left:284.373333pt;}
.x6b_c00033{left:285.333333pt;}
.xb3_c00033{left:287.040000pt;}
.xea_c00033{left:288.000000pt;}
.x4c_c00033{left:289.333333pt;}
.xfc_c00033{left:292.373333pt;}
.x8_c00033{left:293.706667pt;}
.x6c_c00033{left:298.666667pt;}
.x13_c00033{left:300.373333pt;}
.x38_c00033{left:301.706667pt;}
.x7f_c00033{left:304.373333pt;}
.x5d_c00033{left:307.426667pt;}
.x6d_c00033{left:308.373333pt;}
.x4d_c00033{left:309.706667pt;}
.x1f_c00033{left:312.000000pt;}
.x1_c00033{left:314.293333pt;}
.x88_c00033{left:317.706667pt;}
.xd2_c00033{left:320.373333pt;}
.x2d_c00033{left:322.666667pt;}
.xa7_c00033{left:323.626667pt;}
.x80_c00033{left:326.666667pt;}
.x78_c00033{left:327.626667pt;}
.xdd_c00033{left:329.333333pt;}
.x14_c00033{left:333.333333pt;}
.x5e_c00033{left:334.666667pt;}
.x4e_c00033{left:335.626667pt;}
.xe4_c00033{left:340.000000pt;}
.x6e_c00033{left:341.333333pt;}
.xa8_c00033{left:342.666667pt;}
.x79_c00033{left:344.373333pt;}
.xac_c00033{left:349.333333pt;}
.xf7_c00033{left:350.666667pt;}
.x93_c00033{left:352.000000pt;}
.x5f_c00033{left:353.333333pt;}
.x41_c00033{left:354.293333pt;}
.x2e_c00033{left:356.373333pt;}
.xb4_c00033{left:358.666667pt;}
.x15_c00033{left:360.000000pt;}
.x2_c00033{left:364.000000pt;}
.xad_c00033{left:365.706667pt;}
.x9_c00033{left:367.040000pt;}
.xf8_c00033{left:368.373333pt;}
.xd3_c00033{left:369.706667pt;}
.x42_c00033{left:372.373333pt;}
.x4f_c00033{left:375.040000pt;}
.x81_c00033{left:376.000000pt;}
.xc2_c00033{left:377.333333pt;}
.xc8_c00033{left:379.040000pt;}
.x53_c00033{left:381.333333pt;}
.x60_c00033{left:382.666667pt;}
.xd8_c00033{left:385.333333pt;}
.xae_c00033{left:386.666667pt;}
.x100_c00033{left:388.000000pt;}
.x39_c00033{left:389.706667pt;}
.x20_c00033{left:392.000000pt;}
.xa_c00033{left:393.706667pt;}
.xb5_c00033{left:396.373333pt;}
.x2f_c00033{left:397.333333pt;}
.x82_c00033{left:398.666667pt;}
.x61_c00033{left:401.333333pt;}
.xaf_c00033{left:403.040000pt;}
.x6f_c00033{left:404.760000pt;}
.x54_c00033{left:407.040000pt;}
.x21_c00033{left:411.040000pt;}
.x16_c00033{left:414.293333pt;}
.x50_c00033{left:415.626667pt;}
.xfd_c00033{left:417.333333pt;}
.x62_c00033{left:419.040000pt;}
.xeb_c00033{left:420.000000pt;}
.xa0_c00033{left:422.666667pt;}
.x3a_c00033{left:425.333333pt;}
.x30_c00033{left:426.666667pt;}
.xc9_c00033{left:429.333333pt;}
.x43_c00033{left:431.040000pt;}
.x89_c00033{left:433.706667pt;}
.xb_c00033{left:435.040000pt;}
.x7a_c00033{left:436.000000pt;}
.x83_c00033{left:438.666667pt;}
.xc3_c00033{left:440.000000pt;}
.x17_c00033{left:441.706667pt;}
.x55_c00033{left:443.626667pt;}
.x22_c00033{left:447.626667pt;}
.x94_c00033{left:449.333333pt;}
.xcd_c00033{left:450.666667pt;}
.xef_c00033{left:454.293333pt;}
.xc4_c00033{left:456.000000pt;}
.x8a_c00033{left:458.666667pt;}
.x31_c00033{left:462.666667pt;}
.xf3_c00033{left:464.000000pt;}
.x23_c00033{left:465.706667pt;}
.x44_c00033{left:467.040000pt;}
.xa1_c00033{left:468.000000pt;}
.xbc_c00033{left:469.333333pt;}
.xf9_c00033{left:471.040000pt;}
.x56_c00033{left:472.373333pt;}
.xca_c00033{left:473.333333pt;}
.xd9_c00033{left:474.666667pt;}
.x18_c00033{left:475.626667pt;}
.x3b_c00033{left:478.666667pt;}
.xc5_c00033{left:480.000000pt;}
.xe5_c00033{left:480.960000pt;}
.xce_c00033{left:483.040000pt;}
.xbd_c00033{left:484.960000pt;}
.x63_c00033{left:486.666667pt;}
.xfe_c00033{left:488.960000pt;}
.x24_c00033{left:490.666667pt;}
.x45_c00033{left:492.000000pt;}
.x19_c00033{left:493.706667pt;}
.xc_c00033{left:501.333333pt;}
.xa2_c00033{left:503.040000pt;}
.xec_c00033{left:504.373333pt;}
.x70_c00033{left:505.333333pt;}
.xcf_c00033{left:506.666667pt;}
.x8b_c00033{left:507.626667pt;}
.xe0_c00033{left:508.960000pt;}
.xf0_c00033{left:511.626667pt;}
.x32_c00033{left:515.626667pt;}
.x1a_c00033{left:517.333333pt;}
.x71_c00033{left:519.040000pt;}
.x9b_c00033{left:520.373333pt;}
.x64_c00033{left:523.626667pt;}
.xcb_c00033{left:524.960000pt;}
.x57_c00033{left:526.666667pt;}
.xa3_c00033{left:528.373333pt;}
.xed_c00033{left:529.333333pt;}
.xa9_c00033{left:532.000000pt;}
.xf4_c00033{left:534.293333pt;}
.x46_c00033{left:535.626667pt;}
.x7b_c00033{left:537.333333pt;}
.x25_c00033{left:540.960000pt;}
.x9c_c00033{left:543.626667pt;}
.x84_c00033{left:545.706667pt;}
.x58_c00033{left:548.000000pt;}
.xd0_c00033{left:551.626667pt;}
.x47_c00033{left:553.706667pt;}
.x7c_c00033{left:556.373333pt;}
.xd4_c00033{left:558.666667pt;}
.xb0_c00033{left:559.626667pt;}
.x8c_c00033{left:561.706667pt;}
.x72_c00033{left:562.666667pt;}
.xc6_c00033{left:564.000000pt;}
.xf1_c00033{left:565.333333pt;}
.x1b_c00033{left:568.000000pt;}
.xb6_c00033{left:568.960000pt;}
.x33_c00033{left:570.666667pt;}
.xda_c00033{left:572.000000pt;}
.x95_c00033{left:573.333333pt;}
.xd_c00033{left:574.293333pt;}
.xd5_c00033{left:576.000000pt;}
.x48_c00033{left:578.666667pt;}
.x65_c00033{left:580.000000pt;}
.x73_c00033{left:581.333333pt;}
.xa4_c00033{left:588.000000pt;}
.xaa_c00033{left:589.333333pt;}
.xe6_c00033{left:590.666667pt;}
.x8d_c00033{left:592.000000pt;}
.xe1_c00033{left:593.333333pt;}
.xbe_c00033{left:594.666667pt;}
.x26_c00033{left:595.626667pt;}
.xb7_c00033{left:597.333333pt;}
.xfa_c00033{left:601.333333pt;}
.x85_c00033{left:602.666667pt;}
.x74_c00033{left:603.626667pt;}
.x66_c00033{left:605.333333pt;}
.x49_c00033{left:612.373333pt;}
.x9d_c00033{left:613.333333pt;}
.xe7_c00033{left:615.040000pt;}
.x7d_c00033{left:616.373333pt;}
.x96_c00033{left:618.293333pt;}
.xe2_c00033{left:620.960000pt;}
.xe_c00033{left:623.040000pt;}
.x27_c00033{left:624.960000pt;}
.xc7_c00033{left:629.706667pt;}
.x1c_c00033{left:632.373333pt;}
.xcc_c00033{left:633.333333pt;}
.xdb_c00033{left:634.666667pt;}
.xf5_c00033{left:636.000000pt;}
.xff_c00033{left:637.333333pt;}
.x34_c00033{left:638.666667pt;}
.xd6_c00033{left:640.000000pt;}
.x4a_c00033{left:641.333333pt;}
.x28_c00033{left:644.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_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_657e741688a96293714fe913.woff2')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:1.688965;font-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_c00034{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m1_c00034{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m5_c00034{transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);}
.m1a_c00034{transform:matrix(0.394712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394712,0.000000,0.000000,0.250000,0,0);}
.m13_c00034{transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);}
.m2_c00034{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m7_c00034{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.m23_c00034{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m20_c00034{transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);}
.m16_c00034{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.ma_c00034{transform:matrix(0.491176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491176,0.000000,0.000000,0.250000,0,0);}
.me_c00034{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_c00034{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.mf_c00034{transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);}
.m1e_c00034{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.md_c00034{transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);}
.m11_c00034{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.mb_c00034{transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);}
.m22_c00034{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);}
.m21_c00034{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m19_c00034{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m18_c00034{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_c00034{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m1b_c00034{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m3_c00034{transform:matrix(0.594853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594853,0.000000,0.000000,0.250000,0,0);}
.m9_c00034{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m10_c00034{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m15_c00034{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.m1c_c00034{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m12_c00034{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_c00034{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m17_c00034{transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);}
.m4_c00034{transform:matrix(0.647794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647794,0.000000,0.000000,0.250000,0,0);}
.m8_c00034{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);}
.m6_c00034{transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);}
.m1f_c00034{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,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;}
.fs6_c00034{font-size:13.620000px;}
.fs4_c00034{font-size:18.720000px;}
.fs0_c00034{font-size:20.400000px;}
.fs3_c00034{font-size:25.500000px;}
.fs1_c00034{font-size:28.920000px;}
.fs2_c00034{font-size:32.340000px;}
.fs5_c00034{font-size:35.700000px;}
.y0_c00034{bottom:0.000000px;}
.yb_c00034{bottom:293.550000px;}
.ya_c00034{bottom:294.630000px;}
.yc_c00034{bottom:294.825000px;}
.y9_c00034{bottom:295.470000px;}
.y8_c00034{bottom:296.970000px;}
.y7_c00034{bottom:298.050000px;}
.y5_c00034{bottom:308.325000px;}
.y3_c00034{bottom:309.405000px;}
.yd_c00034{bottom:310.245000px;}
.y6_c00034{bottom:310.905000px;}
.y4_c00034{bottom:311.550000px;}
.y10_c00034{bottom:314.970000px;}
.y14_c00034{bottom:324.195000px;}
.y13_c00034{bottom:324.405000px;}
.yf_c00034{bottom:325.470000px;}
.y12_c00034{bottom:325.695000px;}
.y11_c00034{bottom:326.325000px;}
.ye_c00034{bottom:326.550000px;}
.y2_c00034{bottom:1099.905000px;}
.y1_c00034{bottom:1102.050000px;}
.h7_c00034{height:16.752334px;}
.h5_c00034{height:23.025234px;}
.h1_c00034{height:25.091602px;}
.h4_c00034{height:31.364502px;}
.h2_c00034{height:35.571035px;}
.h3_c00034{height:39.777568px;}
.h6_c00034{height:43.910303px;}
.h0_c00034{height:1335.000000px;}
.w0_c00034{width:880.500000px;}
.x0_c00034{left:0.000000px;}
.x1a_c00034{left:154.500000px;}
.x1b_c00034{left:201.000000px;}
.x15_c00034{left:203.580000px;}
.x9_c00034{left:249.000000px;}
.xa_c00034{left:265.500000px;}
.x1c_c00034{left:275.580000px;}
.x16_c00034{left:279.000000px;}
.xb_c00034{left:289.500000px;}
.x1d_c00034{left:294.000000px;}
.x17_c00034{left:316.920000px;}
.xc_c00034{left:318.420000px;}
.xd_c00034{left:355.920000px;}
.x3_c00034{left:363.000000px;}
.xe_c00034{left:370.920000px;}
.x1e_c00034{left:373.500000px;}
.x1f_c00034{left:385.500000px;}
.x1_c00034{left:397.500000px;}
.xf_c00034{left:418.500000px;}
.x10_c00034{left:432.000000px;}
.x20_c00034{left:449.580000px;}
.x4_c00034{left:453.000000px;}
.x21_c00034{left:478.500000px;}
.x11_c00034{left:486.000000px;}
.x22_c00034{left:490.080000px;}
.x12_c00034{left:507.000000px;}
.x5_c00034{left:520.500000px;}
.x23_c00034{left:540.000000px;}
.x13_c00034{left:556.500000px;}
.x14_c00034{left:573.000000px;}
.x24_c00034{left:582.420000px;}
.x6_c00034{left:589.080000px;}
.x18_c00034{left:627.000000px;}
.x7_c00034{left:655.500000px;}
.x19_c00034{left:687.000000px;}
.x8_c00034{left:690.420000px;}
.x2_c00034{left:721.080000px;}
@media print{
.v0_c00034{vertical-align:0.000000pt;}
.ls0_c00034{letter-spacing:0.000000pt;}
.ws0_c00034{word-spacing:0.000000pt;}
.fs6_c00034{font-size:12.106667pt;}
.fs4_c00034{font-size:16.640000pt;}
.fs0_c00034{font-size:18.133333pt;}
.fs3_c00034{font-size:22.666667pt;}
.fs1_c00034{font-size:25.706667pt;}
.fs2_c00034{font-size:28.746667pt;}
.fs5_c00034{font-size:31.733333pt;}
.y0_c00034{bottom:0.000000pt;}
.yb_c00034{bottom:260.933333pt;}
.ya_c00034{bottom:261.893333pt;}
.yc_c00034{bottom:262.066667pt;}
.y9_c00034{bottom:262.640000pt;}
.y8_c00034{bottom:263.973333pt;}
.y7_c00034{bottom:264.933333pt;}
.y5_c00034{bottom:274.066667pt;}
.y3_c00034{bottom:275.026667pt;}
.yd_c00034{bottom:275.773333pt;}
.y6_c00034{bottom:276.360000pt;}
.y4_c00034{bottom:276.933333pt;}
.y10_c00034{bottom:279.973333pt;}
.y14_c00034{bottom:288.173333pt;}
.y13_c00034{bottom:288.360000pt;}
.yf_c00034{bottom:289.306667pt;}
.y12_c00034{bottom:289.506667pt;}
.y11_c00034{bottom:290.066667pt;}
.ye_c00034{bottom:290.266667pt;}
.y2_c00034{bottom:977.693333pt;}
.y1_c00034{bottom:979.600000pt;}
.h7_c00034{height:14.890964pt;}
.h5_c00034{height:20.466875pt;}
.h1_c00034{height:22.303646pt;}
.h4_c00034{height:27.879557pt;}
.h2_c00034{height:31.618698pt;}
.h3_c00034{height:35.357839pt;}
.h6_c00034{height:39.031380pt;}
.h0_c00034{height:1186.666667pt;}
.w0_c00034{width:782.666667pt;}
.x0_c00034{left:0.000000pt;}
.x1a_c00034{left:137.333333pt;}
.x1b_c00034{left:178.666667pt;}
.x15_c00034{left:180.960000pt;}
.x9_c00034{left:221.333333pt;}
.xa_c00034{left:236.000000pt;}
.x1c_c00034{left:244.960000pt;}
.x16_c00034{left:248.000000pt;}
.xb_c00034{left:257.333333pt;}
.x1d_c00034{left:261.333333pt;}
.x17_c00034{left:281.706667pt;}
.xc_c00034{left:283.040000pt;}
.xd_c00034{left:316.373333pt;}
.x3_c00034{left:322.666667pt;}
.xe_c00034{left:329.706667pt;}
.x1e_c00034{left:332.000000pt;}
.x1f_c00034{left:342.666667pt;}
.x1_c00034{left:353.333333pt;}
.xf_c00034{left:372.000000pt;}
.x10_c00034{left:384.000000pt;}
.x20_c00034{left:399.626667pt;}
.x4_c00034{left:402.666667pt;}
.x21_c00034{left:425.333333pt;}
.x11_c00034{left:432.000000pt;}
.x22_c00034{left:435.626667pt;}
.x12_c00034{left:450.666667pt;}
.x5_c00034{left:462.666667pt;}
.x23_c00034{left:480.000000pt;}
.x13_c00034{left:494.666667pt;}
.x14_c00034{left:509.333333pt;}
.x24_c00034{left:517.706667pt;}
.x6_c00034{left:523.626667pt;}
.x18_c00034{left:557.333333pt;}
.x7_c00034{left:582.666667pt;}
.x19_c00034{left:610.666667pt;}
.x8_c00034{left:613.706667pt;}
.x2_c00034{left:640.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_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_d4ea5ff0a754fb06a1bb0ea1.woff2')format("woff");}.ff1_c00035{font-family:ff1_c00035;line-height:1.688965;font-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_c00035{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.m5f_c00035{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.ma3_c00035{transform:matrix(0.343558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343558,0.000000,0.000000,0.250000,0,0);}
.m51_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);}
.m96_c00035{transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);}
.md_c00035{transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);}
.m6b_c00035{transform:matrix(0.370015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370015,0.000000,0.000000,0.250000,0,0);}
.mb4_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);}
.m3a_c00035{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m73_c00035{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m14_c00035{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.ma5_c00035{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m49_c00035{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m7e_c00035{transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);}
.m60_c00035{transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);}
.m74_c00035{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m23_c00035{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m2c_c00035{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m88_c00035{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m99_c00035{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m3b_c00035{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m93_c00035{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m48_c00035{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.maa_c00035{transform:matrix(0.408627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408627,0.000000,0.000000,0.250000,0,0);}
.m53_c00035{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m65_c00035{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m4e_c00035{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m76_c00035{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m97_c00035{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m45_c00035{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m56_c00035{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m83_c00035{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m8_c00035{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m41_c00035{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m58_c00035{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m9a_c00035{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m82_c00035{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m7b_c00035{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m78_c00035{transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);}
.m11_c00035{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m6d_c00035{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m8a_c00035{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m98_c00035{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m71_c00035{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m69_c00035{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m61_c00035{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m89_c00035{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m4c_c00035{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m4f_c00035{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m13_c00035{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m24_c00035{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m54_c00035{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.m9e_c00035{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.ma_c00035{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m75_c00035{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m57_c00035{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.mad_c00035{transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);}
.m2d_c00035{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m40_c00035{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m4b_c00035{transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);}
.m7_c00035{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m7a_c00035{transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);}
.m3f_c00035{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.ma4_c00035{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m9c_c00035{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.mb2_c00035{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m62_c00035{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.ma9_c00035{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m1d_c00035{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m4d_c00035{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.mc_c00035{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mb_c00035{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m92_c00035{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m77_c00035{transform:matrix(0.497407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497407,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m34_c00035{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m38_c00035{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m5c_c00035{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m1a_c00035{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m5a_c00035{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m9d_c00035{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m10_c00035{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m90_c00035{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m36_c00035{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m33_c00035{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mac_c00035{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m68_c00035{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m70_c00035{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m8d_c00035{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m27_c00035{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m1b_c00035{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m80_c00035{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m31_c00035{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m55_c00035{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m43_c00035{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m17_c00035{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m5b_c00035{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m6c_c00035{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m7f_c00035{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m21_c00035{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m30_c00035{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m8f_c00035{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m59_c00035{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m25_c00035{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m5e_c00035{transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);}
.m7c_c00035{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m16_c00035{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m72_c00035{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mab_c00035{transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);}
.m66_c00035{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m26_c00035{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m91_c00035{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m37_c00035{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m9_c00035{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m6f_c00035{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m64_c00035{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m2f_c00035{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m7d_c00035{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m47_c00035{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m42_c00035{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.ma6_c00035{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m50_c00035{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.mae_c00035{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m4_c00035{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m8e_c00035{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m8b_c00035{transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);}
.m6e_c00035{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m8c_c00035{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.ma2_c00035{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m4a_c00035{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m1c_c00035{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m9b_c00035{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.ma1_c00035{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m5_c00035{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m18_c00035{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m3_c00035{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m35_c00035{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m19_c00035{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m2_c00035{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m95_c00035{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m9f_c00035{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m67_c00035{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m3d_c00035{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m86_c00035{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m3c_c00035{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m52_c00035{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m28_c00035{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m15_c00035{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);}
.m22_c00035{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m94_c00035{transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);}
.mb1_c00035{transform:matrix(0.607059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607059,0.000000,0.000000,0.250000,0,0);}
.m29_c00035{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m84_c00035{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.ma8_c00035{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m87_c00035{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m6a_c00035{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m85_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);}
.m2e_c00035{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m1_c00035{transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);}
.m12_c00035{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m44_c00035{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m1e_c00035{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m81_c00035{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.ma0_c00035{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m39_c00035{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.mb3_c00035{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m63_c00035{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m3e_c00035{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m46_c00035{transform:matrix(0.773237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.773237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.773237,0.000000,0.000000,0.250000,0,0);}
.ma7_c00035{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m6_c00035{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m32_c00035{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m5d_c00035{transform:matrix(0.808088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.808088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.808088,0.000000,0.000000,0.250000,0,0);}
.m20_c00035{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m1f_c00035{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m2a_c00035{transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);}
.m2b_c00035{transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);}
.m79_c00035{transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);}
.maf_c00035{transform:matrix(6.464912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.464912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.464912,0.000000,0.000000,0.250000,0,0);}
.mf_c00035{transform:matrix(6.522124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.522124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.522124,0.000000,0.000000,0.250000,0,0);}
.mb0_c00035{transform:matrix(7.274336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.274336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.274336,0.000000,0.000000,0.250000,0,0);}
.v1_c00035{vertical-align:-12.000000px;}
.v0_c00035{vertical-align:0.000000px;}
.v3_c00035{vertical-align:4.260000px;}
.v2_c00035{vertical-align:6.000000px;}
.ls0_c00035{letter-spacing:0.000000px;}
.sc__c00035{text-shadow:none;}
.sc0_c00035{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00035{-webkit-text-stroke:0px transparent;}
.sc0_c00035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00035{word-spacing:-6.400641px;}
.ws8_c00035{word-spacing:-5.008560px;}
.ws9_c00035{word-spacing:-3.584672px;}
.ws0_c00035{word-spacing:-3.418333px;}
.ws1_c00035{word-spacing:-2.161806px;}
.wsa_c00035{word-spacing:0.000000px;}
.ws6_c00035{word-spacing:2.047266px;}
.ws2_c00035{word-spacing:6.121440px;}
.ws4_c00035{word-spacing:7.831440px;}
.ws3_c00035{word-spacing:9.089561px;}
.ws7_c00035{word-spacing:12.118039px;}
.fc0_c00035{color:transparent;}
.fs8_c00035{font-size:3.420000px;}
.fs7_c00035{font-size:6.780000px;}
.fs3_c00035{font-size:18.720000px;}
.fs1_c00035{font-size:20.400000px;}
.fs2_c00035{font-size:25.500000px;}
.fs0_c00035{font-size:28.920000px;}
.fs5_c00035{font-size:32.340000px;}
.fs4_c00035{font-size:35.700000px;}
.fs6_c00035{font-size:39.120000px;}
.y0_c00035{bottom:0.000000px;}
.yde_c00035{bottom:247.905000px;}
.ye4_c00035{bottom:249.180000px;}
.ye0_c00035{bottom:249.405000px;}
.ye2_c00035{bottom:250.245000px;}
.ye1_c00035{bottom:251.130000px;}
.ydf_c00035{bottom:251.970000px;}
.ye3_c00035{bottom:252.405000px;}
.ydb_c00035{bottom:267.405000px;}
.ydd_c00035{bottom:268.905000px;}
.yda_c00035{bottom:269.745000px;}
.yd9_c00035{bottom:271.905000px;}
.ydc_c00035{bottom:272.970000px;}
.yd8_c00035{bottom:287.970000px;}
.yd1_c00035{bottom:288.405000px;}
.yd5_c00035{bottom:288.855000px;}
.yd4_c00035{bottom:289.245000px;}
.yd7_c00035{bottom:290.325000px;}
.yd2_c00035{bottom:290.970000px;}
.yd0_c00035{bottom:291.405000px;}
.yd3_c00035{bottom:291.630000px;}
.yd6_c00035{bottom:292.470000px;}
.yce_c00035{bottom:308.745000px;}
.ycf_c00035{bottom:308.970000px;}
.ycd_c00035{bottom:310.905000px;}
.yc9_c00035{bottom:327.405000px;}
.ycb_c00035{bottom:328.905000px;}
.ycc_c00035{bottom:328.920000px;}
.yc7_c00035{bottom:329.745000px;}
.yc6_c00035{bottom:330.405000px;}
.yca_c00035{bottom:330.630000px;}
.yc8_c00035{bottom:331.905000px;}
.yc5_c00035{bottom:346.905000px;}
.yc4_c00035{bottom:350.325000px;}
.yc3_c00035{bottom:351.405000px;}
.ybf_c00035{bottom:366.405000px;}
.ybb_c00035{bottom:367.905000px;}
.yc2_c00035{bottom:367.920000px;}
.ybd_c00035{bottom:368.745000px;}
.ybc_c00035{bottom:369.405000px;}
.yc1_c00035{bottom:369.630000px;}
.yc0_c00035{bottom:370.050000px;}
.ybe_c00035{bottom:370.905000px;}
.yb7_c00035{bottom:385.905000px;}
.yba_c00035{bottom:387.405000px;}
.yb9_c00035{bottom:387.855000px;}
.yb6_c00035{bottom:388.245000px;}
.yb8_c00035{bottom:389.130000px;}
.yb5_c00035{bottom:390.405000px;}
.yb4_c00035{bottom:406.470000px;}
.yaf_c00035{bottom:406.905000px;}
.yb3_c00035{bottom:408.825000px;}
.yb0_c00035{bottom:409.470000px;}
.yb2_c00035{bottom:409.905000px;}
.yb1_c00035{bottom:410.130000px;}
.yac_c00035{bottom:426.405000px;}
.yae_c00035{bottom:427.245000px;}
.yad_c00035{bottom:429.405000px;}
.yaa_c00035{bottom:445.905000px;}
.yab_c00035{bottom:446.355000px;}
.ya8_c00035{bottom:446.970000px;}
.ya7_c00035{bottom:448.245000px;}
.ya5_c00035{bottom:448.905000px;}
.ya9_c00035{bottom:449.130000px;}
.ya6_c00035{bottom:450.405000px;}
.ya4_c00035{bottom:465.405000px;}
.ya2_c00035{bottom:467.745000px;}
.ya3_c00035{bottom:467.970000px;}
.ya1_c00035{bottom:468.825000px;}
.y9e_c00035{bottom:484.905000px;}
.ya0_c00035{bottom:486.180000px;}
.y9d_c00035{bottom:487.245000px;}
.y9b_c00035{bottom:487.470000px;}
.y9f_c00035{bottom:488.130000px;}
.y9c_c00035{bottom:489.405000px;}
.y9a_c00035{bottom:505.470000px;}
.y99_c00035{bottom:505.905000px;}
.y97_c00035{bottom:507.630000px;}
.y98_c00035{bottom:508.050000px;}
.y96_c00035{bottom:508.905000px;}
.y94_c00035{bottom:525.405000px;}
.y95_c00035{bottom:526.245000px;}
.y92_c00035{bottom:528.405000px;}
.y93_c00035{bottom:529.905000px;}
.y90_c00035{bottom:544.470000px;}
.y8e_c00035{bottom:545.745000px;}
.y8f_c00035{bottom:547.245000px;}
.y91_c00035{bottom:547.905000px;}
.y89_c00035{bottom:565.245000px;}
.y87_c00035{bottom:565.680000px;}
.y8b_c00035{bottom:566.130000px;}
.y8d_c00035{bottom:566.745000px;}
.y8a_c00035{bottom:566.970000px;}
.y8c_c00035{bottom:567.405000px;}
.y88_c00035{bottom:568.905000px;}
.y85_c00035{bottom:583.905000px;}
.y83_c00035{bottom:584.745000px;}
.y81_c00035{bottom:586.050000px;}
.y86_c00035{bottom:586.245000px;}
.y84_c00035{bottom:586.905000px;}
.y82_c00035{bottom:588.405000px;}
.y80_c00035{bottom:603.405000px;}
.y7e_c00035{bottom:604.245000px;}
.y7d_c00035{bottom:605.745000px;}
.y7f_c00035{bottom:606.405000px;}
.y7c_c00035{bottom:607.905000px;}
.y79_c00035{bottom:622.905000px;}
.y7a_c00035{bottom:625.245000px;}
.y7b_c00035{bottom:626.130000px;}
.y77_c00035{bottom:626.550000px;}
.y78_c00035{bottom:627.405000px;}
.y74_c00035{bottom:642.405000px;}
.y76_c00035{bottom:645.630000px;}
.y75_c00035{bottom:646.050000px;}
.y73_c00035{bottom:646.905000px;}
.y6d_c00035{bottom:664.245000px;}
.y6e_c00035{bottom:664.470000px;}
.y70_c00035{bottom:665.130000px;}
.y71_c00035{bottom:665.325000px;}
.y6f_c00035{bottom:666.405000px;}
.y72_c00035{bottom:667.470000px;}
.y69_c00035{bottom:682.905000px;}
.y6a_c00035{bottom:683.745000px;}
.y6c_c00035{bottom:684.825000px;}
.y68_c00035{bottom:685.905000px;}
.y6b_c00035{bottom:686.130000px;}
.y67_c00035{bottom:686.970000px;}
.y66_c00035{bottom:702.405000px;}
.y62_c00035{bottom:703.245000px;}
.y64_c00035{bottom:703.920000px;}
.y65_c00035{bottom:704.325000px;}
.y60_c00035{bottom:705.405000px;}
.y63_c00035{bottom:705.630000px;}
.y61_c00035{bottom:706.470000px;}
.y5d_c00035{bottom:721.905000px;}
.y5e_c00035{bottom:722.745000px;}
.y5c_c00035{bottom:724.245000px;}
.y5f_c00035{bottom:724.905000px;}
.y5b_c00035{bottom:726.405000px;}
.y58_c00035{bottom:741.405000px;}
.y59_c00035{bottom:742.470000px;}
.y5a_c00035{bottom:742.680000px;}
.y57_c00035{bottom:743.745000px;}
.y56_c00035{bottom:745.905000px;}
.y51_c00035{bottom:761.970000px;}
.y53_c00035{bottom:762.405000px;}
.y52_c00035{bottom:763.245000px;}
.y55_c00035{bottom:764.130000px;}
.y54_c00035{bottom:764.325000px;}
.y4f_c00035{bottom:764.550000px;}
.y50_c00035{bottom:765.405000px;}
.y49_c00035{bottom:787.245000px;}
.y4c_c00035{bottom:788.745000px;}
.y4a_c00035{bottom:788.970000px;}
.y4d_c00035{bottom:789.405000px;}
.y4e_c00035{bottom:789.630000px;}
.y4b_c00035{bottom:790.905000px;}
.y47_c00035{bottom:820.470000px;}
.y48_c00035{bottom:820.905000px;}
.y45_c00035{bottom:821.745000px;}
.y46_c00035{bottom:823.905000px;}
.y44_c00035{bottom:840.405000px;}
.y43_c00035{bottom:841.245000px;}
.y42_c00035{bottom:842.325000px;}
.y41_c00035{bottom:843.405000px;}
.y3f_c00035{bottom:858.405000px;}
.y40_c00035{bottom:859.905000px;}
.y3d_c00035{bottom:860.355000px;}
.y3c_c00035{bottom:860.745000px;}
.y3a_c00035{bottom:860.970000px;}
.y3e_c00035{bottom:861.825000px;}
.y37_c00035{bottom:862.905000px;}
.y39_c00035{bottom:863.130000px;}
.y3b_c00035{bottom:863.970000px;}
.y38_c00035{bottom:864.405000px;}
.y33_c00035{bottom:879.405000px;}
.y34_c00035{bottom:881.745000px;}
.y36_c00035{bottom:882.405000px;}
.y35_c00035{bottom:882.630000px;}
.y32_c00035{bottom:883.905000px;}
.y31_c00035{bottom:902.130000px;}
.y30_c00035{bottom:903.405000px;}
.y2e_c00035{bottom:919.470000px;}
.y2d_c00035{bottom:920.745000px;}
.y2f_c00035{bottom:921.405000px;}
.y2c_c00035{bottom:921.630000px;}
.y2b_c00035{bottom:922.470000px;}
.y2a_c00035{bottom:922.905000px;}
.y25_c00035{bottom:939.405000px;}
.y29_c00035{bottom:940.905000px;}
.y28_c00035{bottom:941.130000px;}
.y27_c00035{bottom:942.405000px;}
.y26_c00035{bottom:943.470000px;}
.y23_c00035{bottom:957.405000px;}
.y22_c00035{bottom:959.745000px;}
.y24_c00035{bottom:961.905000px;}
.y1d_c00035{bottom:978.405000px;}
.y21_c00035{bottom:978.420000px;}
.y20_c00035{bottom:978.855000px;}
.y1f_c00035{bottom:979.920000px;}
.y1c_c00035{bottom:980.970000px;}
.y1a_c00035{bottom:981.405000px;}
.y1e_c00035{bottom:981.630000px;}
.y1b_c00035{bottom:982.470000px;}
.y18_c00035{bottom:996.405000px;}
.y19_c00035{bottom:997.905000px;}
.y17_c00035{bottom:998.745000px;}
.y12_c00035{bottom:1017.405000px;}
.y16_c00035{bottom:1019.130000px;}
.y14_c00035{bottom:1020.405000px;}
.y15_c00035{bottom:1020.630000px;}
.y13_c00035{bottom:1021.470000px;}
.y11_c00035{bottom:1036.905000px;}
.yf_c00035{bottom:1038.825000px;}
.y10_c00035{bottom:1040.970000px;}
.ye_c00035{bottom:1041.405000px;}
.ya_c00035{bottom:1056.405000px;}
.y7_c00035{bottom:1056.825000px;}
.yd_c00035{bottom:1056.855000px;}
.yc_c00035{bottom:1057.245000px;}
.y3_c00035{bottom:1057.470000px;}
.yb_c00035{bottom:1057.680000px;}
.y6_c00035{bottom:1058.745000px;}
.y9_c00035{bottom:1059.405000px;}
.y5_c00035{bottom:1059.630000px;}
.y8_c00035{bottom:1060.470000px;}
.y4_c00035{bottom:1060.905000px;}
.y2_c00035{bottom:1097.550000px;}
.y1_c00035{bottom:1099.905000px;}
.h9_c00035{height:4.206533px;}
.h8_c00035{height:8.339268px;}
.h4_c00035{height:23.025234px;}
.h2_c00035{height:25.091602px;}
.h3_c00035{height:31.364502px;}
.h1_c00035{height:35.571035px;}
.hb_c00035{height:35.624502px;}
.h6_c00035{height:39.777568px;}
.ha_c00035{height:41.571035px;}
.h5_c00035{height:43.910303px;}
.h7_c00035{height:48.116836px;}
.h0_c00035{height:1335.000000px;}
.w0_c00035{width:880.500000px;}
.x0_c00035{left:0.000000px;}
.xc7_c00035{left:151.500000px;}
.xbd_c00035{left:153.000000px;}
.x1_c00035{left:154.080000px;}
.xd9_c00035{left:158.580000px;}
.x8f_c00035{left:160.080000px;}
.x12_c00035{left:161.580000px;}
.xda_c00035{left:182.580000px;}
.x7d_c00035{left:184.080000px;}
.x3_c00035{left:186.000000px;}
.x4_c00035{left:202.920000px;}
.xe2_c00035{left:208.500000px;}
.x60_c00035{left:210.855000px;}
.x55_c00035{left:213.000000px;}
.x16_c00035{left:217.920000px;}
.xdc_c00035{left:221.580000px;}
.x48_c00035{left:223.500000px;}
.x13_c00035{left:225.000000px;}
.xe3_c00035{left:227.580000px;}
.x6d_c00035{left:228.645000px;}
.x8a_c00035{left:231.000000px;}
.x6c_c00035{left:235.500000px;}
.xab_c00035{left:236.580000px;}
.x40_c00035{left:238.500000px;}
.x38_c00035{left:239.580000px;}
.xdd_c00035{left:247.500000px;}
.x95_c00035{left:248.775000px;}
.x7e_c00035{left:250.920000px;}
.x4d_c00035{left:252.000000px;}
.xcd_c00035{left:253.500000px;}
.x8b_c00035{left:255.000000px;}
.x41_c00035{left:256.080000px;}
.x84_c00035{left:258.420000px;}
.x5_c00035{left:259.500000px;}
.x6e_c00035{left:262.500000px;}
.x14_c00035{left:265.500000px;}
.x75_c00035{left:266.580000px;}
.x90_c00035{left:268.080000px;}
.x61_c00035{left:269.580000px;}
.x96_c00035{left:279.000000px;}
.x7f_c00035{left:280.500000px;}
.x6f_c00035{left:282.420000px;}
.x49_c00035{left:283.500000px;}
.x28_c00035{left:285.000000px;}
.x39_c00035{left:288.000000px;}
.x17_c00035{left:289.500000px;}
.xde_c00035{left:291.000000px;}
.x15_c00035{left:292.500000px;}
.x4a_c00035{left:295.920000px;}
.x97_c00035{left:297.000000px;}
.xb8_c00035{left:301.080000px;}
.x6_c00035{left:303.000000px;}
.x56_c00035{left:304.080000px;}
.x85_c00035{left:305.580000px;}
.x18_c00035{left:308.580000px;}
.xb9_c00035{left:313.500000px;}
.xac_c00035{left:315.420000px;}
.x42_c00035{left:319.920000px;}
.x7_c00035{left:321.420000px;}
.x57_c00035{left:322.920000px;}
.xa8_c00035{left:324.000000px;}
.x62_c00035{left:328.920000px;}
.x9f_c00035{left:330.000000px;}
.x4b_c00035{left:333.000000px;}
.x76_c00035{left:334.080000px;}
.xa3_c00035{left:337.920000px;}
.x91_c00035{left:339.000000px;}
.x3a_c00035{left:340.500000px;}
.xba_c00035{left:345.000000px;}
.x43_c00035{left:346.500000px;}
.x29_c00035{left:349.920000px;}
.x98_c00035{left:352.500000px;}
.x4e_c00035{left:357.000000px;}
.x8_c00035{left:358.920000px;}
.xe4_c00035{left:363.000000px;}
.x63_c00035{left:364.080000px;}
.x80_c00035{left:365.580000px;}
.xad_c00035{left:367.080000px;}
.x19_c00035{left:368.580000px;}
.x2a_c00035{left:373.080000px;}
.xdf_c00035{left:376.500000px;}
.x58_c00035{left:378.000000px;}
.x44_c00035{left:379.080000px;}
.xa0_c00035{left:381.000000px;}
.x4c_c00035{left:385.500000px;}
.xc8_c00035{left:386.580000px;}
.x3b_c00035{left:388.080000px;}
.xc2_c00035{left:391.080000px;}
.x70_c00035{left:394.080000px;}
.x59_c00035{left:396.420000px;}
.x2_c00035{left:399.000000px;}
.xbe_c00035{left:400.080000px;}
.xb4_c00035{left:403.080000px;}
.x4f_c00035{left:404.580000px;}
.x45_c00035{left:406.500000px;}
.xa4_c00035{left:411.420000px;}
.x71_c00035{left:413.580000px;}
.x1a_c00035{left:417.420000px;}
.xae_c00035{left:420.420000px;}
.x99_c00035{left:421.500000px;}
.x77_c00035{left:423.000000px;}
.x5a_c00035{left:424.500000px;}
.x9_c00035{left:426.000000px;}
.x8c_c00035{left:427.080000px;}
.x81_c00035{left:429.000000px;}
.x2b_c00035{left:431.580000px;}
.x78_c00035{left:439.500000px;}
.xbb_c00035{left:440.580000px;}
.x1b_c00035{left:442.080000px;}
.xa1_c00035{left:443.355000px;}
.xc9_c00035{left:445.500000px;}
.x86_c00035{left:447.000000px;}
.x64_c00035{left:448.920000px;}
.xd1_c00035{left:450.000000px;}
.x2c_c00035{left:451.500000px;}
.xbc_c00035{left:453.000000px;}
.xa9_c00035{left:454.500000px;}
.x3c_c00035{left:459.420000px;}
.xa2_c00035{left:462.000000px;}
.xaf_c00035{left:464.580000px;}
.x79_c00035{left:468.000000px;}
.x50_c00035{left:472.080000px;}
.x65_c00035{left:475.080000px;}
.x5b_c00035{left:476.580000px;}
.xb5_c00035{left:480.420000px;}
.x72_c00035{left:482.580000px;}
.x92_c00035{left:484.920000px;}
.xa_c00035{left:487.500000px;}
.x9a_c00035{left:489.000000px;}
.x2d_c00035{left:490.920000px;}
.xd2_c00035{left:495.000000px;}
.xc3_c00035{left:496.500000px;}
.xce_c00035{left:499.500000px;}
.x1c_c00035{left:501.420000px;}
.x5c_c00035{left:502.500000px;}
.xdb_c00035{left:507.000000px;}
.x51_c00035{left:508.500000px;}
.x66_c00035{left:509.580000px;}
.x82_c00035{left:513.000000px;}
.x2e_c00035{left:514.080000px;}
.x8d_c00035{left:518.580000px;}
.xb_c00035{left:521.580000px;}
.x1d_c00035{left:524.580000px;}
.x73_c00035{left:526.500000px;}
.xb0_c00035{left:528.000000px;}
.xa5_c00035{left:529.500000px;}
.x3d_c00035{left:532.500000px;}
.x67_c00035{left:535.500000px;}
.xca_c00035{left:538.920000px;}
.x87_c00035{left:540.420000px;}
.x9b_c00035{left:544.500000px;}
.xd3_c00035{left:546.000000px;}
.xc4_c00035{left:547.500000px;}
.x74_c00035{left:549.000000px;}
.xb6_c00035{left:553.920000px;}
.x52_c00035{left:555.000000px;}
.x68_c00035{left:557.145000px;}
.x2f_c00035{left:559.080000px;}
.x7a_c00035{left:562.500000px;}
.xd6_c00035{left:564.420000px;}
.xc_c00035{left:566.580000px;}
.xcf_c00035{left:568.500000px;}
.x1e_c00035{left:569.580000px;}
.x9c_c00035{left:571.500000px;}
.xa6_c00035{left:573.420000px;}
.xb1_c00035{left:576.000000px;}
.x30_c00035{left:579.000000px;}
.x7b_c00035{left:580.500000px;}
.xe0_c00035{left:583.500000px;}
.x3e_c00035{left:586.080000px;}
.x69_c00035{left:588.000000px;}
.x1f_c00035{left:589.500000px;}
.xbf_c00035{left:591.420000px;}
.x5d_c00035{left:592.500000px;}
.xcb_c00035{left:595.500000px;}
.x88_c00035{left:597.000000px;}
.xd_c00035{left:601.080000px;}
.x7c_c00035{left:604.500000px;}
.x8e_c00035{left:606.000000px;}
.x25_c00035{left:607.080000px;}
.x20_c00035{left:608.580000px;}
.x31_c00035{left:610.500000px;}
.xd4_c00035{left:612.000000px;}
.xcc_c00035{left:613.500000px;}
.x36_c00035{left:614.580000px;}
.xa7_c00035{left:619.500000px;}
.xc5_c00035{left:622.080000px;}
.x46_c00035{left:624.000000px;}
.x5e_c00035{left:625.920000px;}
.x89_c00035{left:627.000000px;}
.x21_c00035{left:628.500000px;}
.xe_c00035{left:629.580000px;}
.xb2_c00035{left:631.920000px;}
.x32_c00035{left:633.420000px;}
.xaa_c00035{left:634.500000px;}
.xd5_c00035{left:636.000000px;}
.xe1_c00035{left:637.920000px;}
.xd8_c00035{left:640.500000px;}
.x9d_c00035{left:642.420000px;}
.x53_c00035{left:643.500000px;}
.xc6_c00035{left:646.500000px;}
.x83_c00035{left:649.500000px;}
.xc0_c00035{left:654.000000px;}
.x54_c00035{left:655.500000px;}
.xf_c00035{left:657.000000px;}
.x22_c00035{left:660.000000px;}
.x93_c00035{left:661.500000px;}
.x6a_c00035{left:667.500000px;}
.x3f_c00035{left:672.420000px;}
.xd7_c00035{left:675.000000px;}
.x94_c00035{left:677.580000px;}
.x10_c00035{left:679.500000px;}
.x23_c00035{left:682.920000px;}
.xc1_c00035{left:688.080000px;}
.x9e_c00035{left:689.580000px;}
.xb7_c00035{left:691.500000px;}
.xb3_c00035{left:693.000000px;}
.x33_c00035{left:694.500000px;}
.xd0_c00035{left:695.580000px;}
.x37_c00035{left:697.080000px;}
.x26_c00035{left:698.580000px;}
.x6b_c00035{left:702.420000px;}
.x47_c00035{left:704.580000px;}
.x24_c00035{left:709.920000px;}
.x34_c00035{left:711.000000px;}
.x27_c00035{left:715.080000px;}
.x5f_c00035{left:717.420000px;}
.x11_c00035{left:723.000000px;}
.x35_c00035{left:726.000000px;}
@media print{
.v1_c00035{vertical-align:-10.666667pt;}
.v0_c00035{vertical-align:0.000000pt;}
.v3_c00035{vertical-align:3.786667pt;}
.v2_c00035{vertical-align:5.333333pt;}
.ls0_c00035{letter-spacing:0.000000pt;}
.ws5_c00035{word-spacing:-5.689459pt;}
.ws8_c00035{word-spacing:-4.452053pt;}
.ws9_c00035{word-spacing:-3.186375pt;}
.ws0_c00035{word-spacing:-3.038518pt;}
.ws1_c00035{word-spacing:-1.921606pt;}
.wsa_c00035{word-spacing:0.000000pt;}
.ws6_c00035{word-spacing:1.819792pt;}
.ws2_c00035{word-spacing:5.441280pt;}
.ws4_c00035{word-spacing:6.961280pt;}
.ws3_c00035{word-spacing:8.079610pt;}
.ws7_c00035{word-spacing:10.771590pt;}
.fs8_c00035{font-size:3.040000pt;}
.fs7_c00035{font-size:6.026667pt;}
.fs3_c00035{font-size:16.640000pt;}
.fs1_c00035{font-size:18.133333pt;}
.fs2_c00035{font-size:22.666667pt;}
.fs0_c00035{font-size:25.706667pt;}
.fs5_c00035{font-size:28.746667pt;}
.fs4_c00035{font-size:31.733333pt;}
.fs6_c00035{font-size:34.773333pt;}
.y0_c00035{bottom:0.000000pt;}
.yde_c00035{bottom:220.360000pt;}
.ye4_c00035{bottom:221.493333pt;}
.ye0_c00035{bottom:221.693333pt;}
.ye2_c00035{bottom:222.440000pt;}
.ye1_c00035{bottom:223.226667pt;}
.ydf_c00035{bottom:223.973333pt;}
.ye3_c00035{bottom:224.360000pt;}
.ydb_c00035{bottom:237.693333pt;}
.ydd_c00035{bottom:239.026667pt;}
.yda_c00035{bottom:239.773333pt;}
.yd9_c00035{bottom:241.693333pt;}
.ydc_c00035{bottom:242.640000pt;}
.yd8_c00035{bottom:255.973333pt;}
.yd1_c00035{bottom:256.360000pt;}
.yd5_c00035{bottom:256.760000pt;}
.yd4_c00035{bottom:257.106667pt;}
.yd7_c00035{bottom:258.066667pt;}
.yd2_c00035{bottom:258.640000pt;}
.yd0_c00035{bottom:259.026667pt;}
.yd3_c00035{bottom:259.226667pt;}
.yd6_c00035{bottom:259.973333pt;}
.yce_c00035{bottom:274.440000pt;}
.ycf_c00035{bottom:274.640000pt;}
.ycd_c00035{bottom:276.360000pt;}
.yc9_c00035{bottom:291.026667pt;}
.ycb_c00035{bottom:292.360000pt;}
.ycc_c00035{bottom:292.373333pt;}
.yc7_c00035{bottom:293.106667pt;}
.yc6_c00035{bottom:293.693333pt;}
.yca_c00035{bottom:293.893333pt;}
.yc8_c00035{bottom:295.026667pt;}
.yc5_c00035{bottom:308.360000pt;}
.yc4_c00035{bottom:311.400000pt;}
.yc3_c00035{bottom:312.360000pt;}
.ybf_c00035{bottom:325.693333pt;}
.ybb_c00035{bottom:327.026667pt;}
.yc2_c00035{bottom:327.040000pt;}
.ybd_c00035{bottom:327.773333pt;}
.ybc_c00035{bottom:328.360000pt;}
.yc1_c00035{bottom:328.560000pt;}
.yc0_c00035{bottom:328.933333pt;}
.ybe_c00035{bottom:329.693333pt;}
.yb7_c00035{bottom:343.026667pt;}
.yba_c00035{bottom:344.360000pt;}
.yb9_c00035{bottom:344.760000pt;}
.yb6_c00035{bottom:345.106667pt;}
.yb8_c00035{bottom:345.893333pt;}
.yb5_c00035{bottom:347.026667pt;}
.yb4_c00035{bottom:361.306667pt;}
.yaf_c00035{bottom:361.693333pt;}
.yb3_c00035{bottom:363.400000pt;}
.yb0_c00035{bottom:363.973333pt;}
.yb2_c00035{bottom:364.360000pt;}
.yb1_c00035{bottom:364.560000pt;}
.yac_c00035{bottom:379.026667pt;}
.yae_c00035{bottom:379.773333pt;}
.yad_c00035{bottom:381.693333pt;}
.yaa_c00035{bottom:396.360000pt;}
.yab_c00035{bottom:396.760000pt;}
.ya8_c00035{bottom:397.306667pt;}
.ya7_c00035{bottom:398.440000pt;}
.ya5_c00035{bottom:399.026667pt;}
.ya9_c00035{bottom:399.226667pt;}
.ya6_c00035{bottom:400.360000pt;}
.ya4_c00035{bottom:413.693333pt;}
.ya2_c00035{bottom:415.773333pt;}
.ya3_c00035{bottom:415.973333pt;}
.ya1_c00035{bottom:416.733333pt;}
.y9e_c00035{bottom:431.026667pt;}
.ya0_c00035{bottom:432.160000pt;}
.y9d_c00035{bottom:433.106667pt;}
.y9b_c00035{bottom:433.306667pt;}
.y9f_c00035{bottom:433.893333pt;}
.y9c_c00035{bottom:435.026667pt;}
.y9a_c00035{bottom:449.306667pt;}
.y99_c00035{bottom:449.693333pt;}
.y97_c00035{bottom:451.226667pt;}
.y98_c00035{bottom:451.600000pt;}
.y96_c00035{bottom:452.360000pt;}
.y94_c00035{bottom:467.026667pt;}
.y95_c00035{bottom:467.773333pt;}
.y92_c00035{bottom:469.693333pt;}
.y93_c00035{bottom:471.026667pt;}
.y90_c00035{bottom:483.973333pt;}
.y8e_c00035{bottom:485.106667pt;}
.y8f_c00035{bottom:486.440000pt;}
.y91_c00035{bottom:487.026667pt;}
.y89_c00035{bottom:502.440000pt;}
.y87_c00035{bottom:502.826667pt;}
.y8b_c00035{bottom:503.226667pt;}
.y8d_c00035{bottom:503.773333pt;}
.y8a_c00035{bottom:503.973333pt;}
.y8c_c00035{bottom:504.360000pt;}
.y88_c00035{bottom:505.693333pt;}
.y85_c00035{bottom:519.026667pt;}
.y83_c00035{bottom:519.773333pt;}
.y81_c00035{bottom:520.933333pt;}
.y86_c00035{bottom:521.106667pt;}
.y84_c00035{bottom:521.693333pt;}
.y82_c00035{bottom:523.026667pt;}
.y80_c00035{bottom:536.360000pt;}
.y7e_c00035{bottom:537.106667pt;}
.y7d_c00035{bottom:538.440000pt;}
.y7f_c00035{bottom:539.026667pt;}
.y7c_c00035{bottom:540.360000pt;}
.y79_c00035{bottom:553.693333pt;}
.y7a_c00035{bottom:555.773333pt;}
.y7b_c00035{bottom:556.560000pt;}
.y77_c00035{bottom:556.933333pt;}
.y78_c00035{bottom:557.693333pt;}
.y74_c00035{bottom:571.026667pt;}
.y76_c00035{bottom:573.893333pt;}
.y75_c00035{bottom:574.266667pt;}
.y73_c00035{bottom:575.026667pt;}
.y6d_c00035{bottom:590.440000pt;}
.y6e_c00035{bottom:590.640000pt;}
.y70_c00035{bottom:591.226667pt;}
.y71_c00035{bottom:591.400000pt;}
.y6f_c00035{bottom:592.360000pt;}
.y72_c00035{bottom:593.306667pt;}
.y69_c00035{bottom:607.026667pt;}
.y6a_c00035{bottom:607.773333pt;}
.y6c_c00035{bottom:608.733333pt;}
.y68_c00035{bottom:609.693333pt;}
.y6b_c00035{bottom:609.893333pt;}
.y67_c00035{bottom:610.640000pt;}
.y66_c00035{bottom:624.360000pt;}
.y62_c00035{bottom:625.106667pt;}
.y64_c00035{bottom:625.706667pt;}
.y65_c00035{bottom:626.066667pt;}
.y60_c00035{bottom:627.026667pt;}
.y63_c00035{bottom:627.226667pt;}
.y61_c00035{bottom:627.973333pt;}
.y5d_c00035{bottom:641.693333pt;}
.y5e_c00035{bottom:642.440000pt;}
.y5c_c00035{bottom:643.773333pt;}
.y5f_c00035{bottom:644.360000pt;}
.y5b_c00035{bottom:645.693333pt;}
.y58_c00035{bottom:659.026667pt;}
.y59_c00035{bottom:659.973333pt;}
.y5a_c00035{bottom:660.160000pt;}
.y57_c00035{bottom:661.106667pt;}
.y56_c00035{bottom:663.026667pt;}
.y51_c00035{bottom:677.306667pt;}
.y53_c00035{bottom:677.693333pt;}
.y52_c00035{bottom:678.440000pt;}
.y55_c00035{bottom:679.226667pt;}
.y54_c00035{bottom:679.400000pt;}
.y4f_c00035{bottom:679.600000pt;}
.y50_c00035{bottom:680.360000pt;}
.y49_c00035{bottom:699.773333pt;}
.y4c_c00035{bottom:701.106667pt;}
.y4a_c00035{bottom:701.306667pt;}
.y4d_c00035{bottom:701.693333pt;}
.y4e_c00035{bottom:701.893333pt;}
.y4b_c00035{bottom:703.026667pt;}
.y47_c00035{bottom:729.306667pt;}
.y48_c00035{bottom:729.693333pt;}
.y45_c00035{bottom:730.440000pt;}
.y46_c00035{bottom:732.360000pt;}
.y44_c00035{bottom:747.026667pt;}
.y43_c00035{bottom:747.773333pt;}
.y42_c00035{bottom:748.733333pt;}
.y41_c00035{bottom:749.693333pt;}
.y3f_c00035{bottom:763.026667pt;}
.y40_c00035{bottom:764.360000pt;}
.y3d_c00035{bottom:764.760000pt;}
.y3c_c00035{bottom:765.106667pt;}
.y3a_c00035{bottom:765.306667pt;}
.y3e_c00035{bottom:766.066667pt;}
.y37_c00035{bottom:767.026667pt;}
.y39_c00035{bottom:767.226667pt;}
.y3b_c00035{bottom:767.973333pt;}
.y38_c00035{bottom:768.360000pt;}
.y33_c00035{bottom:781.693333pt;}
.y34_c00035{bottom:783.773333pt;}
.y36_c00035{bottom:784.360000pt;}
.y35_c00035{bottom:784.560000pt;}
.y32_c00035{bottom:785.693333pt;}
.y31_c00035{bottom:801.893333pt;}
.y30_c00035{bottom:803.026667pt;}
.y2e_c00035{bottom:817.306667pt;}
.y2d_c00035{bottom:818.440000pt;}
.y2f_c00035{bottom:819.026667pt;}
.y2c_c00035{bottom:819.226667pt;}
.y2b_c00035{bottom:819.973333pt;}
.y2a_c00035{bottom:820.360000pt;}
.y25_c00035{bottom:835.026667pt;}
.y29_c00035{bottom:836.360000pt;}
.y28_c00035{bottom:836.560000pt;}
.y27_c00035{bottom:837.693333pt;}
.y26_c00035{bottom:838.640000pt;}
.y23_c00035{bottom:851.026667pt;}
.y22_c00035{bottom:853.106667pt;}
.y24_c00035{bottom:855.026667pt;}
.y1d_c00035{bottom:869.693333pt;}
.y21_c00035{bottom:869.706667pt;}
.y20_c00035{bottom:870.093333pt;}
.y1f_c00035{bottom:871.040000pt;}
.y1c_c00035{bottom:871.973333pt;}
.y1a_c00035{bottom:872.360000pt;}
.y1e_c00035{bottom:872.560000pt;}
.y1b_c00035{bottom:873.306667pt;}
.y18_c00035{bottom:885.693333pt;}
.y19_c00035{bottom:887.026667pt;}
.y17_c00035{bottom:887.773333pt;}
.y12_c00035{bottom:904.360000pt;}
.y16_c00035{bottom:905.893333pt;}
.y14_c00035{bottom:907.026667pt;}
.y15_c00035{bottom:907.226667pt;}
.y13_c00035{bottom:907.973333pt;}
.y11_c00035{bottom:921.693333pt;}
.yf_c00035{bottom:923.400000pt;}
.y10_c00035{bottom:925.306667pt;}
.ye_c00035{bottom:925.693333pt;}
.ya_c00035{bottom:939.026667pt;}
.y7_c00035{bottom:939.400000pt;}
.yd_c00035{bottom:939.426667pt;}
.yc_c00035{bottom:939.773333pt;}
.y3_c00035{bottom:939.973333pt;}
.yb_c00035{bottom:940.160000pt;}
.y6_c00035{bottom:941.106667pt;}
.y9_c00035{bottom:941.693333pt;}
.y5_c00035{bottom:941.893333pt;}
.y8_c00035{bottom:942.640000pt;}
.y4_c00035{bottom:943.026667pt;}
.y2_c00035{bottom:975.600000pt;}
.y1_c00035{bottom:977.693333pt;}
.h9_c00035{height:3.739141pt;}
.h8_c00035{height:7.412682pt;}
.h4_c00035{height:20.466875pt;}
.h2_c00035{height:22.303646pt;}
.h3_c00035{height:27.879557pt;}
.h1_c00035{height:31.618698pt;}
.hb_c00035{height:31.666224pt;}
.h6_c00035{height:35.357839pt;}
.ha_c00035{height:36.952031pt;}
.h5_c00035{height:39.031380pt;}
.h7_c00035{height:42.770521pt;}
.h0_c00035{height:1186.666667pt;}
.w0_c00035{width:782.666667pt;}
.x0_c00035{left:0.000000pt;}
.xc7_c00035{left:134.666667pt;}
.xbd_c00035{left:136.000000pt;}
.x1_c00035{left:136.960000pt;}
.xd9_c00035{left:140.960000pt;}
.x8f_c00035{left:142.293333pt;}
.x12_c00035{left:143.626667pt;}
.xda_c00035{left:162.293333pt;}
.x7d_c00035{left:163.626667pt;}
.x3_c00035{left:165.333333pt;}
.x4_c00035{left:180.373333pt;}
.xe2_c00035{left:185.333333pt;}
.x60_c00035{left:187.426667pt;}
.x55_c00035{left:189.333333pt;}
.x16_c00035{left:193.706667pt;}
.xdc_c00035{left:196.960000pt;}
.x48_c00035{left:198.666667pt;}
.x13_c00035{left:200.000000pt;}
.xe3_c00035{left:202.293333pt;}
.x6d_c00035{left:203.240000pt;}
.x8a_c00035{left:205.333333pt;}
.x6c_c00035{left:209.333333pt;}
.xab_c00035{left:210.293333pt;}
.x40_c00035{left:212.000000pt;}
.x38_c00035{left:212.960000pt;}
.xdd_c00035{left:220.000000pt;}
.x95_c00035{left:221.133333pt;}
.x7e_c00035{left:223.040000pt;}
.x4d_c00035{left:224.000000pt;}
.xcd_c00035{left:225.333333pt;}
.x8b_c00035{left:226.666667pt;}
.x41_c00035{left:227.626667pt;}
.x84_c00035{left:229.706667pt;}
.x5_c00035{left:230.666667pt;}
.x6e_c00035{left:233.333333pt;}
.x14_c00035{left:236.000000pt;}
.x75_c00035{left:236.960000pt;}
.x90_c00035{left:238.293333pt;}
.x61_c00035{left:239.626667pt;}
.x96_c00035{left:248.000000pt;}
.x7f_c00035{left:249.333333pt;}
.x6f_c00035{left:251.040000pt;}
.x49_c00035{left:252.000000pt;}
.x28_c00035{left:253.333333pt;}
.x39_c00035{left:256.000000pt;}
.x17_c00035{left:257.333333pt;}
.xde_c00035{left:258.666667pt;}
.x15_c00035{left:260.000000pt;}
.x4a_c00035{left:263.040000pt;}
.x97_c00035{left:264.000000pt;}
.xb8_c00035{left:267.626667pt;}
.x6_c00035{left:269.333333pt;}
.x56_c00035{left:270.293333pt;}
.x85_c00035{left:271.626667pt;}
.x18_c00035{left:274.293333pt;}
.xb9_c00035{left:278.666667pt;}
.xac_c00035{left:280.373333pt;}
.x42_c00035{left:284.373333pt;}
.x7_c00035{left:285.706667pt;}
.x57_c00035{left:287.040000pt;}
.xa8_c00035{left:288.000000pt;}
.x62_c00035{left:292.373333pt;}
.x9f_c00035{left:293.333333pt;}
.x4b_c00035{left:296.000000pt;}
.x76_c00035{left:296.960000pt;}
.xa3_c00035{left:300.373333pt;}
.x91_c00035{left:301.333333pt;}
.x3a_c00035{left:302.666667pt;}
.xba_c00035{left:306.666667pt;}
.x43_c00035{left:308.000000pt;}
.x29_c00035{left:311.040000pt;}
.x98_c00035{left:313.333333pt;}
.x4e_c00035{left:317.333333pt;}
.x8_c00035{left:319.040000pt;}
.xe4_c00035{left:322.666667pt;}
.x63_c00035{left:323.626667pt;}
.x80_c00035{left:324.960000pt;}
.xad_c00035{left:326.293333pt;}
.x19_c00035{left:327.626667pt;}
.x2a_c00035{left:331.626667pt;}
.xdf_c00035{left:334.666667pt;}
.x58_c00035{left:336.000000pt;}
.x44_c00035{left:336.960000pt;}
.xa0_c00035{left:338.666667pt;}
.x4c_c00035{left:342.666667pt;}
.xc8_c00035{left:343.626667pt;}
.x3b_c00035{left:344.960000pt;}
.xc2_c00035{left:347.626667pt;}
.x70_c00035{left:350.293333pt;}
.x59_c00035{left:352.373333pt;}
.x2_c00035{left:354.666667pt;}
.xbe_c00035{left:355.626667pt;}
.xb4_c00035{left:358.293333pt;}
.x4f_c00035{left:359.626667pt;}
.x45_c00035{left:361.333333pt;}
.xa4_c00035{left:365.706667pt;}
.x71_c00035{left:367.626667pt;}
.x1a_c00035{left:371.040000pt;}
.xae_c00035{left:373.706667pt;}
.x99_c00035{left:374.666667pt;}
.x77_c00035{left:376.000000pt;}
.x5a_c00035{left:377.333333pt;}
.x9_c00035{left:378.666667pt;}
.x8c_c00035{left:379.626667pt;}
.x81_c00035{left:381.333333pt;}
.x2b_c00035{left:383.626667pt;}
.x78_c00035{left:390.666667pt;}
.xbb_c00035{left:391.626667pt;}
.x1b_c00035{left:392.960000pt;}
.xa1_c00035{left:394.093333pt;}
.xc9_c00035{left:396.000000pt;}
.x86_c00035{left:397.333333pt;}
.x64_c00035{left:399.040000pt;}
.xd1_c00035{left:400.000000pt;}
.x2c_c00035{left:401.333333pt;}
.xbc_c00035{left:402.666667pt;}
.xa9_c00035{left:404.000000pt;}
.x3c_c00035{left:408.373333pt;}
.xa2_c00035{left:410.666667pt;}
.xaf_c00035{left:412.960000pt;}
.x79_c00035{left:416.000000pt;}
.x50_c00035{left:419.626667pt;}
.x65_c00035{left:422.293333pt;}
.x5b_c00035{left:423.626667pt;}
.xb5_c00035{left:427.040000pt;}
.x72_c00035{left:428.960000pt;}
.x92_c00035{left:431.040000pt;}
.xa_c00035{left:433.333333pt;}
.x9a_c00035{left:434.666667pt;}
.x2d_c00035{left:436.373333pt;}
.xd2_c00035{left:440.000000pt;}
.xc3_c00035{left:441.333333pt;}
.xce_c00035{left:444.000000pt;}
.x1c_c00035{left:445.706667pt;}
.x5c_c00035{left:446.666667pt;}
.xdb_c00035{left:450.666667pt;}
.x51_c00035{left:452.000000pt;}
.x66_c00035{left:452.960000pt;}
.x82_c00035{left:456.000000pt;}
.x2e_c00035{left:456.960000pt;}
.x8d_c00035{left:460.960000pt;}
.xb_c00035{left:463.626667pt;}
.x1d_c00035{left:466.293333pt;}
.x73_c00035{left:468.000000pt;}
.xb0_c00035{left:469.333333pt;}
.xa5_c00035{left:470.666667pt;}
.x3d_c00035{left:473.333333pt;}
.x67_c00035{left:476.000000pt;}
.xca_c00035{left:479.040000pt;}
.x87_c00035{left:480.373333pt;}
.x9b_c00035{left:484.000000pt;}
.xd3_c00035{left:485.333333pt;}
.xc4_c00035{left:486.666667pt;}
.x74_c00035{left:488.000000pt;}
.xb6_c00035{left:492.373333pt;}
.x52_c00035{left:493.333333pt;}
.x68_c00035{left:495.240000pt;}
.x2f_c00035{left:496.960000pt;}
.x7a_c00035{left:500.000000pt;}
.xd6_c00035{left:501.706667pt;}
.xc_c00035{left:503.626667pt;}
.xcf_c00035{left:505.333333pt;}
.x1e_c00035{left:506.293333pt;}
.x9c_c00035{left:508.000000pt;}
.xa6_c00035{left:509.706667pt;}
.xb1_c00035{left:512.000000pt;}
.x30_c00035{left:514.666667pt;}
.x7b_c00035{left:516.000000pt;}
.xe0_c00035{left:518.666667pt;}
.x3e_c00035{left:520.960000pt;}
.x69_c00035{left:522.666667pt;}
.x1f_c00035{left:524.000000pt;}
.xbf_c00035{left:525.706667pt;}
.x5d_c00035{left:526.666667pt;}
.xcb_c00035{left:529.333333pt;}
.x88_c00035{left:530.666667pt;}
.xd_c00035{left:534.293333pt;}
.x7c_c00035{left:537.333333pt;}
.x8e_c00035{left:538.666667pt;}
.x25_c00035{left:539.626667pt;}
.x20_c00035{left:540.960000pt;}
.x31_c00035{left:542.666667pt;}
.xd4_c00035{left:544.000000pt;}
.xcc_c00035{left:545.333333pt;}
.x36_c00035{left:546.293333pt;}
.xa7_c00035{left:550.666667pt;}
.xc5_c00035{left:552.960000pt;}
.x46_c00035{left:554.666667pt;}
.x5e_c00035{left:556.373333pt;}
.x89_c00035{left:557.333333pt;}
.x21_c00035{left:558.666667pt;}
.xe_c00035{left:559.626667pt;}
.xb2_c00035{left:561.706667pt;}
.x32_c00035{left:563.040000pt;}
.xaa_c00035{left:564.000000pt;}
.xd5_c00035{left:565.333333pt;}
.xe1_c00035{left:567.040000pt;}
.xd8_c00035{left:569.333333pt;}
.x9d_c00035{left:571.040000pt;}
.x53_c00035{left:572.000000pt;}
.xc6_c00035{left:574.666667pt;}
.x83_c00035{left:577.333333pt;}
.xc0_c00035{left:581.333333pt;}
.x54_c00035{left:582.666667pt;}
.xf_c00035{left:584.000000pt;}
.x22_c00035{left:586.666667pt;}
.x93_c00035{left:588.000000pt;}
.x6a_c00035{left:593.333333pt;}
.x3f_c00035{left:597.706667pt;}
.xd7_c00035{left:600.000000pt;}
.x94_c00035{left:602.293333pt;}
.x10_c00035{left:604.000000pt;}
.x23_c00035{left:607.040000pt;}
.xc1_c00035{left:611.626667pt;}
.x9e_c00035{left:612.960000pt;}
.xb7_c00035{left:614.666667pt;}
.xb3_c00035{left:616.000000pt;}
.x33_c00035{left:617.333333pt;}
.xd0_c00035{left:618.293333pt;}
.x37_c00035{left:619.626667pt;}
.x26_c00035{left:620.960000pt;}
.x6b_c00035{left:624.373333pt;}
.x47_c00035{left:626.293333pt;}
.x24_c00035{left:631.040000pt;}
.x34_c00035{left:632.000000pt;}
.x27_c00035{left:635.626667pt;}
.x5f_c00035{left:637.706667pt;}
.x11_c00035{left:642.666667pt;}
.x35_c00035{left:645.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_81706ebdff34e1b12189a858.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:1.688965;font-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_c00036{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m48_c00036{transform:matrix(0.041794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041794,0.000000,0.000000,0.250000,0,0);}
.m21_c00036{transform:matrix(0.090909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090909,0.000000,0.000000,0.250000,0,0);}
.md_c00036{transform:matrix(0.117811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117811,0.000000,0.000000,0.250000,0,0);}
.m39_c00036{transform:matrix(0.129739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129739,0.000000,0.000000,0.250000,0,0);}
.mb_c00036{transform:matrix(0.132189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132189,0.000000,0.000000,0.250000,0,0);}
.mc_c00036{transform:matrix(0.141929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141929,0.000000,0.000000,0.250000,0,0);}
.m20_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);}
.m34_c00036{transform:matrix(0.276471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276471,0.000000,0.000000,0.250000,0,0);}
.m70_c00036{transform:matrix(0.291280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291280,0.000000,0.000000,0.250000,0,0);}
.m38_c00036{transform:matrix(0.299020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299020,0.000000,0.000000,0.250000,0,0);}
.m3a_c00036{transform:matrix(0.304575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304575,0.000000,0.000000,0.250000,0,0);}
.m24_c00036{transform:matrix(0.360853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360853,0.000000,0.000000,0.250000,0,0);}
.m1_c00036{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m29_c00036{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m25_c00036{transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);}
.m5f_c00036{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.m65_c00036{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.m2_c00036{transform:matrix(0.408714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408714,0.000000,0.000000,0.250000,0,0);}
.m59_c00036{transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);}
.m4_c00036{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m4e_c00036{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.m58_c00036{transform:matrix(0.425294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425294,0.000000,0.000000,0.250000,0,0);}
.m30_c00036{transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);}
.m4a_c00036{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.m67_c00036{transform:matrix(0.427905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427905,0.000000,0.000000,0.250000,0,0);}
.me_c00036{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.m62_c00036{transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);}
.m26_c00036{transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);}
.m44_c00036{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m4d_c00036{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m2d_c00036{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m5a_c00036{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m52_c00036{transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);}
.m5d_c00036{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m15_c00036{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m9_c00036{transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);}
.m6a_c00036{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.m6f_c00036{transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);}
.m63_c00036{transform:matrix(0.474706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474706,0.000000,0.000000,0.250000,0,0);}
.m2b_c00036{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m49_c00036{transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);}
.m13_c00036{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m47_c00036{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m66_c00036{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m43_c00036{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m4b_c00036{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m69_c00036{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m3_c00036{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m55_c00036{transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);}
.m1b_c00036{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m10_c00036{transform:matrix(0.491176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491176,0.000000,0.000000,0.250000,0,0);}
.m4f_c00036{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m5b_c00036{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m1e_c00036{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_c00036{transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);}
.m61_c00036{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m33_c00036{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m60_c00036{transform:matrix(0.514378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514378,0.000000,0.000000,0.250000,0,0);}
.m3f_c00036{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.m64_c00036{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m3e_c00036{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m28_c00036{transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);}
.m6c_c00036{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_c00036{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m3b_c00036{transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);}
.m1d_c00036{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.m32_c00036{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m41_c00036{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_c00036{transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);}
.m8_c00036{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m6d_c00036{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m4c_c00036{transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);}
.m54_c00036{transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);}
.m14_c00036{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m2f_c00036{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);}
.m17_c00036{transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);}
.m5c_c00036{transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);}
.m2e_c00036{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00036{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m3c_c00036{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.m6_c00036{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);}
.m11_c00036{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m5e_c00036{transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);}
.m68_c00036{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m19_c00036{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.m23_c00036{transform:matrix(0.594853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594853,0.000000,0.000000,0.250000,0,0);}
.m53_c00036{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.m5_c00036{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m1a_c00036{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m1c_c00036{transform:matrix(0.619853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619853,0.000000,0.000000,0.250000,0,0);}
.m57_c00036{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m36_c00036{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m40_c00036{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);}
.m2c_c00036{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m16_c00036{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m0_c00036{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.mf_c00036{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m3d_c00036{transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);}
.m6b_c00036{transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);}
.m51_c00036{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m50_c00036{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m22_c00036{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m2a_c00036{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m56_c00036{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.m27_c00036{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m18_c00036{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);}
.m46_c00036{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);}
.m42_c00036{transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);}
.m35_c00036{transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);}
.m1f_c00036{transform:matrix(0.874304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874304,0.000000,0.000000,0.250000,0,0);}
.m6e_c00036{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m37_c00036{transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.004425,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;}
.fs8_c00036{font-size:6.780000px;}
.fs6_c00036{font-size:13.620000px;}
.fs5_c00036{font-size:18.720000px;}
.fs0_c00036{font-size:20.400000px;}
.fs3_c00036{font-size:25.500000px;}
.fs1_c00036{font-size:28.920000px;}
.fs2_c00036{font-size:32.340000px;}
.fsa_c00036{font-size:35.700000px;}
.fs4_c00036{font-size:39.120000px;}
.fs9_c00036{font-size:42.540000px;}
.fs7_c00036{font-size:45.900000px;}
.y0_c00036{bottom:0.000000px;}
.y51_c00036{bottom:225.405000px;}
.y50_c00036{bottom:226.470000px;}
.y4d_c00036{bottom:238.470000px;}
.y4c_c00036{bottom:239.325000px;}
.y4f_c00036{bottom:239.550000px;}
.y4e_c00036{bottom:240.405000px;}
.y4b_c00036{bottom:241.470000px;}
.y4a_c00036{bottom:242.970000px;}
.y48_c00036{bottom:247.050000px;}
.y49_c00036{bottom:247.695000px;}
.y47_c00036{bottom:253.470000px;}
.y46_c00036{bottom:254.325000px;}
.y45_c00036{bottom:254.550000px;}
.y43_c00036{bottom:255.405000px;}
.y44_c00036{bottom:256.470000px;}
.y42_c00036{bottom:257.325000px;}
.y40_c00036{bottom:268.470000px;}
.y3f_c00036{bottom:268.905000px;}
.y3e_c00036{bottom:269.130000px;}
.y41_c00036{bottom:269.550000px;}
.y3c_c00036{bottom:270.405000px;}
.y3b_c00036{bottom:271.470000px;}
.y39_c00036{bottom:271.905000px;}
.y3d_c00036{bottom:272.550000px;}
.y3a_c00036{bottom:272.970000px;}
.y38_c00036{bottom:273.405000px;}
.y37_c00036{bottom:274.470000px;}
.y35_c00036{bottom:283.905000px;}
.y2f_c00036{bottom:285.180000px;}
.y32_c00036{bottom:285.405000px;}
.y31_c00036{bottom:285.825000px;}
.y34_c00036{bottom:286.050000px;}
.y33_c00036{bottom:286.470000px;}
.y36_c00036{bottom:287.550000px;}
.y30_c00036{bottom:289.470000px;}
.y2e_c00036{bottom:298.905000px;}
.y2c_c00036{bottom:299.970000px;}
.y29_c00036{bottom:300.180000px;}
.y2d_c00036{bottom:301.050000px;}
.y2b_c00036{bottom:301.470000px;}
.y2a_c00036{bottom:305.970000px;}
.y23_c00036{bottom:311.100000px;}
.y26_c00036{bottom:314.355000px;}
.y28_c00036{bottom:314.970000px;}
.y27_c00036{bottom:316.050000px;}
.y25_c00036{bottom:317.550000px;}
.y24_c00036{bottom:320.130000px;}
.y1f_c00036{bottom:327.825000px;}
.y22_c00036{bottom:328.470000px;}
.y1d_c00036{bottom:328.905000px;}
.y21_c00036{bottom:329.130000px;}
.y1a_c00036{bottom:329.325000px;}
.y1e_c00036{bottom:329.970000px;}
.y20_c00036{bottom:331.050000px;}
.y1b_c00036{bottom:331.470000px;}
.y19_c00036{bottom:332.970000px;}
.y1c_c00036{bottom:334.695000px;}
.y18_c00036{bottom:335.130000px;}
.y16_c00036{bottom:341.325000px;}
.y12_c00036{bottom:342.825000px;}
.y13_c00036{bottom:343.680000px;}
.y17_c00036{bottom:343.905000px;}
.y14_c00036{bottom:344.130000px;}
.y15_c00036{bottom:344.550000px;}
.yf_c00036{bottom:344.970000px;}
.y10_c00036{bottom:345.405000px;}
.y11_c00036{bottom:346.050000px;}
.ye_c00036{bottom:349.050000px;}
.yb_c00036{bottom:356.325000px;}
.yc_c00036{bottom:357.405000px;}
.y7_c00036{bottom:357.825000px;}
.ya_c00036{bottom:358.470000px;}
.yd_c00036{bottom:359.550000px;}
.y9_c00036{bottom:359.970000px;}
.y8_c00036{bottom:361.050000px;}
.y6_c00036{bottom:370.470000px;}
.y4_c00036{bottom:371.325000px;}
.y3_c00036{bottom:372.405000px;}
.y53_c00036{bottom:373.245000px;}
.y5_c00036{bottom:373.470000px;}
.y52_c00036{bottom:374.550000px;}
.y56_c00036{bottom:375.195000px;}
.y54_c00036{bottom:376.050000px;}
.y55_c00036{bottom:376.470000px;}
.y2_c00036{bottom:1099.905000px;}
.y1_c00036{bottom:1102.050000px;}
.h9_c00036{height:8.339268px;}
.h7_c00036{height:16.752334px;}
.h6_c00036{height:23.025234px;}
.h1_c00036{height:25.091602px;}
.h4_c00036{height:31.364502px;}
.h2_c00036{height:35.571035px;}
.h3_c00036{height:39.777568px;}
.hb_c00036{height:43.910303px;}
.h5_c00036{height:48.116836px;}
.ha_c00036{height:52.323369px;}
.h8_c00036{height:56.456104px;}
.h0_c00036{height:1335.000000px;}
.w0_c00036{width:880.500000px;}
.x0_c00036{left:0.000000px;}
.xb_c00036{left:151.080000px;}
.x37_c00036{left:153.420000px;}
.x81_c00036{left:155.580000px;}
.x2b_c00036{left:163.500000px;}
.x50_c00036{left:165.000000px;}
.x38_c00036{left:169.080000px;}
.x1c_c00036{left:171.000000px;}
.x51_c00036{left:173.580000px;}
.x75_c00036{left:175.080000px;}
.x6b_c00036{left:177.000000px;}
.x82_c00036{left:180.420000px;}
.x39_c00036{left:181.500000px;}
.x2c_c00036{left:183.000000px;}
.x1d_c00036{left:196.500000px;}
.x83_c00036{left:198.000000px;}
.x76_c00036{left:199.080000px;}
.x52_c00036{left:207.000000px;}
.x60_c00036{left:211.500000px;}
.x3a_c00036{left:220.500000px;}
.x3b_c00036{left:227.145000px;}
.x2d_c00036{left:229.080000px;}
.x61_c00036{left:231.000000px;}
.x84_c00036{left:234.420000px;}
.x1e_c00036{left:237.420000px;}
.x6c_c00036{left:242.580000px;}
.x2e_c00036{left:244.920000px;}
.x85_c00036{left:252.000000px;}
.x53_c00036{left:254.580000px;}
.x46_c00036{left:256.080000px;}
.x77_c00036{left:261.420000px;}
.x1f_c00036{left:265.500000px;}
.x6d_c00036{left:269.580000px;}
.xc_c00036{left:270.855000px;}
.x54_c00036{left:275.580000px;}
.xd_c00036{left:285.420000px;}
.xe_c00036{left:296.580000px;}
.x47_c00036{left:302.580000px;}
.x62_c00036{left:304.920000px;}
.x3c_c00036{left:312.000000px;}
.xf_c00036{left:313.500000px;}
.x2f_c00036{left:316.080000px;}
.x20_c00036{left:317.580000px;}
.x48_c00036{left:321.000000px;}
.x3d_c00036{left:324.000000px;}
.x55_c00036{left:328.920000px;}
.x86_c00036{left:331.080000px;}
.x30_c00036{left:333.000000px;}
.x21_c00036{left:336.000000px;}
.x78_c00036{left:337.080000px;}
.x3e_c00036{left:340.920000px;}
.x56_c00036{left:343.080000px;}
.x49_c00036{left:348.000000px;}
.x7e_c00036{left:352.500000px;}
.x31_c00036{left:357.000000px;}
.x10_c00036{left:358.500000px;}
.x79_c00036{left:359.580000px;}
.x22_c00036{left:364.500000px;}
.x4a_c00036{left:383.580000px;}
.x63_c00036{left:385.920000px;}
.x7f_c00036{left:388.920000px;}
.x11_c00036{left:394.500000px;}
.x1_c00036{left:396.000000px;}
.x3_c00036{left:397.500000px;}
.x6e_c00036{left:402.000000px;}
.x57_c00036{left:411.000000px;}
.x23_c00036{left:415.080000px;}
.x6f_c00036{left:420.000000px;}
.x12_c00036{left:421.080000px;}
.x24_c00036{left:428.775000px;}
.x58_c00036{left:432.000000px;}
.x64_c00036{left:438.420000px;}
.x13_c00036{left:439.500000px;}
.x4_c00036{left:441.000000px;}
.x25_c00036{left:447.000000px;}
.x3f_c00036{left:448.500000px;}
.x26_c00036{left:450.000000px;}
.x65_c00036{left:454.500000px;}
.x14_c00036{left:461.580000px;}
.x70_c00036{left:463.500000px;}
.x4b_c00036{left:469.500000px;}
.x40_c00036{left:470.580000px;}
.x7a_c00036{left:473.580000px;}
.x80_c00036{left:475.080000px;}
.x32_c00036{left:478.500000px;}
.x5_c00036{left:486.000000px;}
.x27_c00036{left:489.000000px;}
.x7b_c00036{left:494.580000px;}
.x15_c00036{left:496.500000px;}
.x4c_c00036{left:513.420000px;}
.x59_c00036{left:514.500000px;}
.x66_c00036{left:519.000000px;}
.x41_c00036{left:523.500000px;}
.x71_c00036{left:526.500000px;}
.x6_c00036{left:529.500000px;}
.x4d_c00036{left:531.000000px;}
.x33_c00036{left:532.500000px;}
.x16_c00036{left:534.420000px;}
.x7c_c00036{left:541.500000px;}
.x34_c00036{left:558.420000px;}
.x28_c00036{left:559.500000px;}
.x7_c00036{left:561.420000px;}
.x5a_c00036{left:562.920000px;}
.x17_c00036{left:565.500000px;}
.x42_c00036{left:566.580000px;}
.x67_c00036{left:576.420000px;}
.x5b_c00036{left:577.500000px;}
.x43_c00036{left:582.000000px;}
.x4e_c00036{left:589.500000px;}
.x18_c00036{left:592.500000px;}
.x29_c00036{left:595.500000px;}
.x72_c00036{left:596.580000px;}
.x35_c00036{left:606.000000px;}
.x8_c00036{left:610.920000px;}
.x7d_c00036{left:613.080000px;}
.x5c_c00036{left:619.080000px;}
.x73_c00036{left:620.580000px;}
.x4f_c00036{left:627.000000px;}
.x5d_c00036{left:636.000000px;}
.x68_c00036{left:637.080000px;}
.x36_c00036{left:642.000000px;}
.x9_c00036{left:649.500000px;}
.x44_c00036{left:651.420000px;}
.x69_c00036{left:652.920000px;}
.x19_c00036{left:657.420000px;}
.x74_c00036{left:658.500000px;}
.x5e_c00036{left:660.000000px;}
.x2a_c00036{left:663.000000px;}
.x45_c00036{left:666.000000px;}
.x1a_c00036{left:673.920000px;}
.x6a_c00036{left:685.080000px;}
.x5f_c00036{left:688.500000px;}
.xa_c00036{left:690.420000px;}
.x1b_c00036{left:706.500000px;}
.x2_c00036{left:719.580000px;}
@media print{
.v0_c00036{vertical-align:0.000000pt;}
.ls0_c00036{letter-spacing:0.000000pt;}
.ws0_c00036{word-spacing:0.000000pt;}
.fs8_c00036{font-size:6.026667pt;}
.fs6_c00036{font-size:12.106667pt;}
.fs5_c00036{font-size:16.640000pt;}
.fs0_c00036{font-size:18.133333pt;}
.fs3_c00036{font-size:22.666667pt;}
.fs1_c00036{font-size:25.706667pt;}
.fs2_c00036{font-size:28.746667pt;}
.fsa_c00036{font-size:31.733333pt;}
.fs4_c00036{font-size:34.773333pt;}
.fs9_c00036{font-size:37.813333pt;}
.fs7_c00036{font-size:40.800000pt;}
.y0_c00036{bottom:0.000000pt;}
.y51_c00036{bottom:200.360000pt;}
.y50_c00036{bottom:201.306667pt;}
.y4d_c00036{bottom:211.973333pt;}
.y4c_c00036{bottom:212.733333pt;}
.y4f_c00036{bottom:212.933333pt;}
.y4e_c00036{bottom:213.693333pt;}
.y4b_c00036{bottom:214.640000pt;}
.y4a_c00036{bottom:215.973333pt;}
.y48_c00036{bottom:219.600000pt;}
.y49_c00036{bottom:220.173333pt;}
.y47_c00036{bottom:225.306667pt;}
.y46_c00036{bottom:226.066667pt;}
.y45_c00036{bottom:226.266667pt;}
.y43_c00036{bottom:227.026667pt;}
.y44_c00036{bottom:227.973333pt;}
.y42_c00036{bottom:228.733333pt;}
.y40_c00036{bottom:238.640000pt;}
.y3f_c00036{bottom:239.026667pt;}
.y3e_c00036{bottom:239.226667pt;}
.y41_c00036{bottom:239.600000pt;}
.y3c_c00036{bottom:240.360000pt;}
.y3b_c00036{bottom:241.306667pt;}
.y39_c00036{bottom:241.693333pt;}
.y3d_c00036{bottom:242.266667pt;}
.y3a_c00036{bottom:242.640000pt;}
.y38_c00036{bottom:243.026667pt;}
.y37_c00036{bottom:243.973333pt;}
.y35_c00036{bottom:252.360000pt;}
.y2f_c00036{bottom:253.493333pt;}
.y32_c00036{bottom:253.693333pt;}
.y31_c00036{bottom:254.066667pt;}
.y34_c00036{bottom:254.266667pt;}
.y33_c00036{bottom:254.640000pt;}
.y36_c00036{bottom:255.600000pt;}
.y30_c00036{bottom:257.306667pt;}
.y2e_c00036{bottom:265.693333pt;}
.y2c_c00036{bottom:266.640000pt;}
.y29_c00036{bottom:266.826667pt;}
.y2d_c00036{bottom:267.600000pt;}
.y2b_c00036{bottom:267.973333pt;}
.y2a_c00036{bottom:271.973333pt;}
.y23_c00036{bottom:276.533333pt;}
.y26_c00036{bottom:279.426667pt;}
.y28_c00036{bottom:279.973333pt;}
.y27_c00036{bottom:280.933333pt;}
.y25_c00036{bottom:282.266667pt;}
.y24_c00036{bottom:284.560000pt;}
.y1f_c00036{bottom:291.400000pt;}
.y22_c00036{bottom:291.973333pt;}
.y1d_c00036{bottom:292.360000pt;}
.y21_c00036{bottom:292.560000pt;}
.y1a_c00036{bottom:292.733333pt;}
.y1e_c00036{bottom:293.306667pt;}
.y20_c00036{bottom:294.266667pt;}
.y1b_c00036{bottom:294.640000pt;}
.y19_c00036{bottom:295.973333pt;}
.y1c_c00036{bottom:297.506667pt;}
.y18_c00036{bottom:297.893333pt;}
.y16_c00036{bottom:303.400000pt;}
.y12_c00036{bottom:304.733333pt;}
.y13_c00036{bottom:305.493333pt;}
.y17_c00036{bottom:305.693333pt;}
.y14_c00036{bottom:305.893333pt;}
.y15_c00036{bottom:306.266667pt;}
.yf_c00036{bottom:306.640000pt;}
.y10_c00036{bottom:307.026667pt;}
.y11_c00036{bottom:307.600000pt;}
.ye_c00036{bottom:310.266667pt;}
.yb_c00036{bottom:316.733333pt;}
.yc_c00036{bottom:317.693333pt;}
.y7_c00036{bottom:318.066667pt;}
.ya_c00036{bottom:318.640000pt;}
.yd_c00036{bottom:319.600000pt;}
.y9_c00036{bottom:319.973333pt;}
.y8_c00036{bottom:320.933333pt;}
.y6_c00036{bottom:329.306667pt;}
.y4_c00036{bottom:330.066667pt;}
.y3_c00036{bottom:331.026667pt;}
.y53_c00036{bottom:331.773333pt;}
.y5_c00036{bottom:331.973333pt;}
.y52_c00036{bottom:332.933333pt;}
.y56_c00036{bottom:333.506667pt;}
.y54_c00036{bottom:334.266667pt;}
.y55_c00036{bottom:334.640000pt;}
.y2_c00036{bottom:977.693333pt;}
.y1_c00036{bottom:979.600000pt;}
.h9_c00036{height:7.412682pt;}
.h7_c00036{height:14.890964pt;}
.h6_c00036{height:20.466875pt;}
.h1_c00036{height:22.303646pt;}
.h4_c00036{height:27.879557pt;}
.h2_c00036{height:31.618698pt;}
.h3_c00036{height:35.357839pt;}
.hb_c00036{height:39.031380pt;}
.h5_c00036{height:42.770521pt;}
.ha_c00036{height:46.509661pt;}
.h8_c00036{height:50.183203pt;}
.h0_c00036{height:1186.666667pt;}
.w0_c00036{width:782.666667pt;}
.x0_c00036{left:0.000000pt;}
.xb_c00036{left:134.293333pt;}
.x37_c00036{left:136.373333pt;}
.x81_c00036{left:138.293333pt;}
.x2b_c00036{left:145.333333pt;}
.x50_c00036{left:146.666667pt;}
.x38_c00036{left:150.293333pt;}
.x1c_c00036{left:152.000000pt;}
.x51_c00036{left:154.293333pt;}
.x75_c00036{left:155.626667pt;}
.x6b_c00036{left:157.333333pt;}
.x82_c00036{left:160.373333pt;}
.x39_c00036{left:161.333333pt;}
.x2c_c00036{left:162.666667pt;}
.x1d_c00036{left:174.666667pt;}
.x83_c00036{left:176.000000pt;}
.x76_c00036{left:176.960000pt;}
.x52_c00036{left:184.000000pt;}
.x60_c00036{left:188.000000pt;}
.x3a_c00036{left:196.000000pt;}
.x3b_c00036{left:201.906667pt;}
.x2d_c00036{left:203.626667pt;}
.x61_c00036{left:205.333333pt;}
.x84_c00036{left:208.373333pt;}
.x1e_c00036{left:211.040000pt;}
.x6c_c00036{left:215.626667pt;}
.x2e_c00036{left:217.706667pt;}
.x85_c00036{left:224.000000pt;}
.x53_c00036{left:226.293333pt;}
.x46_c00036{left:227.626667pt;}
.x77_c00036{left:232.373333pt;}
.x1f_c00036{left:236.000000pt;}
.x6d_c00036{left:239.626667pt;}
.xc_c00036{left:240.760000pt;}
.x54_c00036{left:244.960000pt;}
.xd_c00036{left:253.706667pt;}
.xe_c00036{left:263.626667pt;}
.x47_c00036{left:268.960000pt;}
.x62_c00036{left:271.040000pt;}
.x3c_c00036{left:277.333333pt;}
.xf_c00036{left:278.666667pt;}
.x2f_c00036{left:280.960000pt;}
.x20_c00036{left:282.293333pt;}
.x48_c00036{left:285.333333pt;}
.x3d_c00036{left:288.000000pt;}
.x55_c00036{left:292.373333pt;}
.x86_c00036{left:294.293333pt;}
.x30_c00036{left:296.000000pt;}
.x21_c00036{left:298.666667pt;}
.x78_c00036{left:299.626667pt;}
.x3e_c00036{left:303.040000pt;}
.x56_c00036{left:304.960000pt;}
.x49_c00036{left:309.333333pt;}
.x7e_c00036{left:313.333333pt;}
.x31_c00036{left:317.333333pt;}
.x10_c00036{left:318.666667pt;}
.x79_c00036{left:319.626667pt;}
.x22_c00036{left:324.000000pt;}
.x4a_c00036{left:340.960000pt;}
.x63_c00036{left:343.040000pt;}
.x7f_c00036{left:345.706667pt;}
.x11_c00036{left:350.666667pt;}
.x1_c00036{left:352.000000pt;}
.x3_c00036{left:353.333333pt;}
.x6e_c00036{left:357.333333pt;}
.x57_c00036{left:365.333333pt;}
.x23_c00036{left:368.960000pt;}
.x6f_c00036{left:373.333333pt;}
.x12_c00036{left:374.293333pt;}
.x24_c00036{left:381.133333pt;}
.x58_c00036{left:384.000000pt;}
.x64_c00036{left:389.706667pt;}
.x13_c00036{left:390.666667pt;}
.x4_c00036{left:392.000000pt;}
.x25_c00036{left:397.333333pt;}
.x3f_c00036{left:398.666667pt;}
.x26_c00036{left:400.000000pt;}
.x65_c00036{left:404.000000pt;}
.x14_c00036{left:410.293333pt;}
.x70_c00036{left:412.000000pt;}
.x4b_c00036{left:417.333333pt;}
.x40_c00036{left:418.293333pt;}
.x7a_c00036{left:420.960000pt;}
.x80_c00036{left:422.293333pt;}
.x32_c00036{left:425.333333pt;}
.x5_c00036{left:432.000000pt;}
.x27_c00036{left:434.666667pt;}
.x7b_c00036{left:439.626667pt;}
.x15_c00036{left:441.333333pt;}
.x4c_c00036{left:456.373333pt;}
.x59_c00036{left:457.333333pt;}
.x66_c00036{left:461.333333pt;}
.x41_c00036{left:465.333333pt;}
.x71_c00036{left:468.000000pt;}
.x6_c00036{left:470.666667pt;}
.x4d_c00036{left:472.000000pt;}
.x33_c00036{left:473.333333pt;}
.x16_c00036{left:475.040000pt;}
.x7c_c00036{left:481.333333pt;}
.x34_c00036{left:496.373333pt;}
.x28_c00036{left:497.333333pt;}
.x7_c00036{left:499.040000pt;}
.x5a_c00036{left:500.373333pt;}
.x17_c00036{left:502.666667pt;}
.x42_c00036{left:503.626667pt;}
.x67_c00036{left:512.373333pt;}
.x5b_c00036{left:513.333333pt;}
.x43_c00036{left:517.333333pt;}
.x4e_c00036{left:524.000000pt;}
.x18_c00036{left:526.666667pt;}
.x29_c00036{left:529.333333pt;}
.x72_c00036{left:530.293333pt;}
.x35_c00036{left:538.666667pt;}
.x8_c00036{left:543.040000pt;}
.x7d_c00036{left:544.960000pt;}
.x5c_c00036{left:550.293333pt;}
.x73_c00036{left:551.626667pt;}
.x4f_c00036{left:557.333333pt;}
.x5d_c00036{left:565.333333pt;}
.x68_c00036{left:566.293333pt;}
.x36_c00036{left:570.666667pt;}
.x9_c00036{left:577.333333pt;}
.x44_c00036{left:579.040000pt;}
.x69_c00036{left:580.373333pt;}
.x19_c00036{left:584.373333pt;}
.x74_c00036{left:585.333333pt;}
.x5e_c00036{left:586.666667pt;}
.x2a_c00036{left:589.333333pt;}
.x45_c00036{left:592.000000pt;}
.x1a_c00036{left:599.040000pt;}
.x6a_c00036{left:608.960000pt;}
.x5f_c00036{left:612.000000pt;}
.xa_c00036{left:613.706667pt;}
.x1b_c00036{left:628.000000pt;}
.x2_c00036{left:639.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_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_3da7ab1caeef114aef9e1d9b.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:1.688965;font-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_c00037{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m34_c00037{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m59_c00037{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mad_c00037{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m65_c00037{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m8f_c00037{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.mb5_c00037{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m11_c00037{transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);}
.m29_c00037{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m45_c00037{transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);}
.m12_c00037{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m71_c00037{transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);}
.ma5_c00037{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m28_c00037{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m76_c00037{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.md_c00037{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m9a_c00037{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m4c_c00037{transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);}
.m1a_c00037{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mb8_c00037{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m7b_c00037{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m24_c00037{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m2b_c00037{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m3d_c00037{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m4b_c00037{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m66_c00037{transform:matrix(0.406120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406120,0.000000,0.000000,0.250000,0,0);}
.m83_c00037{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m63_c00037{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m18_c00037{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m72_c00037{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m44_c00037{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m7a_c00037{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m58_c00037{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mc5_c00037{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m4e_c00037{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.ma4_c00037{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m5c_c00037{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.ma9_c00037{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m1c_c00037{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m1b_c00037{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m60_c00037{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m9b_c00037{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.ma8_c00037{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m4_c00037{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m69_c00037{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m7d_c00037{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mc4_c00037{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m6f_c00037{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m2f_c00037{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m84_c00037{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m20_c00037{transform:matrix(0.427386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427386,0.000000,0.000000,0.250000,0,0);}
.m38_c00037{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m87_c00037{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.mc2_c00037{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m42_c00037{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m22_c00037{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.ma1_c00037{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m6a_c00037{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m5d_c00037{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m0_c00037{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.ma_c00037{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m53_c00037{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m2c_c00037{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m3b_c00037{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m74_c00037{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.mbb_c00037{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.ma2_c00037{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.mbe_c00037{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m23_c00037{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m13_c00037{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m9f_c00037{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m64_c00037{transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);}
.m2_c00037{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.maf_c00037{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m37_c00037{transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);}
.m7c_c00037{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.m62_c00037{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m5f_c00037{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.m3c_c00037{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.mb2_c00037{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.m8b_c00037{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m90_c00037{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.m55_c00037{transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);}
.ma7_c00037{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m75_c00037{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.mbf_c00037{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m33_c00037{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.m85_c00037{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m17_c00037{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m56_c00037{transform:matrix(0.486134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486134,0.000000,0.000000,0.250000,0,0);}
.m41_c00037{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m68_c00037{transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);}
.m5_c00037{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_c00037{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m4a_c00037{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.ma6_c00037{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m93_c00037{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m88_c00037{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.mb1_c00037{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m2d_c00037{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m9_c00037{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m51_c00037{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.m8c_c00037{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.mc3_c00037{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m52_c00037{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m57_c00037{transform:matrix(0.527829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527829,0.000000,0.000000,0.250000,0,0);}
.m70_c00037{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m3_c00037{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mac_c00037{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m47_c00037{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m6_c00037{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m95_c00037{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m8e_c00037{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m97_c00037{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m82_c00037{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m8d_c00037{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m46_c00037{transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);}
.m39_c00037{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m27_c00037{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m6e_c00037{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m25_c00037{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.mbd_c00037{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.ma3_c00037{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mab_c00037{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m77_c00037{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.me_c00037{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m1e_c00037{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m92_c00037{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m8_c00037{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m96_c00037{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m61_c00037{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m19_c00037{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m94_c00037{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m86_c00037{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mb9_c00037{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m79_c00037{transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);}
.m6d_c00037{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m89_c00037{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m7_c00037{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m99_c00037{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m5e_c00037{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.mb3_c00037{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m43_c00037{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m7f_c00037{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mc1_c00037{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m21_c00037{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m80_c00037{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m1f_c00037{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m2e_c00037{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m8a_c00037{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mb0_c00037{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m16_c00037{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m26_c00037{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m9c_c00037{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m5b_c00037{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m1d_c00037{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m5a_c00037{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m3f_c00037{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.mba_c00037{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.mb6_c00037{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mb4_c00037{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.m9e_c00037{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.m36_c00037{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m35_c00037{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m40_c00037{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m6c_c00037{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.mb_c00037{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m2a_c00037{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m30_c00037{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m1_c00037{transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);}
.mbc_c00037{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m31_c00037{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m4d_c00037{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.mf_c00037{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m98_c00037{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.mae_c00037{transform:matrix(0.692647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692647,0.000000,0.000000,0.250000,0,0);}
.m67_c00037{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.m3e_c00037{transform:matrix(0.695539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695539,0.000000,0.000000,0.250000,0,0);}
.m54_c00037{transform:matrix(0.697647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697647,0.000000,0.000000,0.250000,0,0);}
.m4f_c00037{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m91_c00037{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m3a_c00037{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.mc_c00037{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mb7_c00037{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m78_c00037{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m49_c00037{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m15_c00037{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m9d_c00037{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m48_c00037{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.ma0_c00037{transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);}
.maa_c00037{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m10_c00037{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m50_c00037{transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);}
.mc0_c00037{transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);}
.m81_c00037{transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);}
.m73_c00037{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m6b_c00037{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.m32_c00037{transform:matrix(7.274336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.274336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.274336,0.000000,0.000000,0.250000,0,0);}
.v0_c00037{vertical-align:0.000000px;}
.v1_c00037{vertical-align:6.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;}
}
.ws4_c00037{word-spacing:-8.699707px;}
.ws0_c00037{word-spacing:-3.584672px;}
.ws1_c00037{word-spacing:-0.768703px;}
.ws5_c00037{word-spacing:0.000000px;}
.ws3_c00037{word-spacing:0.812675px;}
.ws2_c00037{word-spacing:12.118039px;}
._0_c00037{width:15.621927px;}
.fc0_c00037{color:transparent;}
.fs8_c00037{font-size:3.420000px;}
.fs7_c00037{font-size:6.780000px;}
.fs4_c00037{font-size:18.720000px;}
.fs1_c00037{font-size:20.400000px;}
.fs0_c00037{font-size:25.500000px;}
.fs2_c00037{font-size:28.920000px;}
.fs6_c00037{font-size:32.340000px;}
.fs3_c00037{font-size:35.700000px;}
.fs5_c00037{font-size:39.120000px;}
.y0_c00037{bottom:0.000000px;}
.yb3_c00037{bottom:250.245000px;}
.yb5_c00037{bottom:251.745000px;}
.yb4_c00037{bottom:252.405000px;}
.yb6_c00037{bottom:252.630000px;}
.yb7_c00037{bottom:253.905000px;}
.yb2_c00037{bottom:269.745000px;}
.yae_c00037{bottom:271.245000px;}
.yac_c00037{bottom:271.905000px;}
.yb1_c00037{bottom:272.130000px;}
.yb0_c00037{bottom:272.325000px;}
.yad_c00037{bottom:272.970000px;}
.yaf_c00037{bottom:273.405000px;}
.yaa_c00037{bottom:290.745000px;}
.yab_c00037{bottom:291.630000px;}
.ya8_c00037{bottom:292.905000px;}
.ya9_c00037{bottom:293.970000px;}
.ya4_c00037{bottom:310.245000px;}
.ya7_c00037{bottom:311.325000px;}
.ya6_c00037{bottom:311.550000px;}
.ya5_c00037{bottom:312.405000px;}
.ya0_c00037{bottom:329.745000px;}
.ya1_c00037{bottom:331.905000px;}
.ya2_c00037{bottom:332.130000px;}
.ya3_c00037{bottom:333.405000px;}
.y9e_c00037{bottom:349.245000px;}
.y9c_c00037{bottom:350.130000px;}
.y9f_c00037{bottom:350.745000px;}
.y9d_c00037{bottom:351.405000px;}
.y9b_c00037{bottom:369.825000px;}
.y97_c00037{bottom:370.050000px;}
.y99_c00037{bottom:370.245000px;}
.y96_c00037{bottom:370.905000px;}
.y9a_c00037{bottom:371.130000px;}
.y98_c00037{bottom:372.405000px;}
.y94_c00037{bottom:389.745000px;}
.y95_c00037{bottom:390.405000px;}
.y92_c00037{bottom:391.905000px;}
.y93_c00037{bottom:391.920000px;}
.y91_c00037{bottom:411.405000px;}
.y8d_c00037{bottom:428.745000px;}
.y90_c00037{bottom:429.405000px;}
.y8e_c00037{bottom:429.630000px;}
.y8f_c00037{bottom:429.825000px;}
.y8c_c00037{bottom:430.905000px;}
.y89_c00037{bottom:449.325000px;}
.y8a_c00037{bottom:450.405000px;}
.y8b_c00037{bottom:451.905000px;}
.y87_c00037{bottom:467.745000px;}
.y86_c00037{bottom:469.245000px;}
.y88_c00037{bottom:469.905000px;}
.y84_c00037{bottom:471.405000px;}
.y85_c00037{bottom:471.420000px;}
.y82_c00037{bottom:488.745000px;}
.y83_c00037{bottom:490.905000px;}
.y7e_c00037{bottom:506.745000px;}
.y80_c00037{bottom:508.245000px;}
.y7f_c00037{bottom:508.905000px;}
.y7c_c00037{bottom:509.130000px;}
.y81_c00037{bottom:509.325000px;}
.y7b_c00037{bottom:510.405000px;}
.y7d_c00037{bottom:510.420000px;}
.y7a_c00037{bottom:525.405000px;}
.y78_c00037{bottom:526.905000px;}
.y75_c00037{bottom:527.745000px;}
.y77_c00037{bottom:528.825000px;}
.y79_c00037{bottom:529.905000px;}
.y76_c00037{bottom:531.420000px;}
.y74_c00037{bottom:549.405000px;}
.y72_c00037{bottom:565.680000px;}
.y6f_c00037{bottom:566.745000px;}
.y73_c00037{bottom:568.470000px;}
.y71_c00037{bottom:568.905000px;}
.y70_c00037{bottom:570.420000px;}
.y6e_c00037{bottom:593.970000px;}
.y6c_c00037{bottom:594.405000px;}
.y6a_c00037{bottom:594.825000px;}
.y6b_c00037{bottom:595.470000px;}
.y6d_c00037{bottom:596.130000px;}
.y67_c00037{bottom:612.825000px;}
.y69_c00037{bottom:613.905000px;}
.y66_c00037{bottom:614.130000px;}
.y68_c00037{bottom:614.970000px;}
.y65_c00037{bottom:616.050000px;}
.y63_c00037{bottom:640.245000px;}
.y64_c00037{bottom:641.325000px;}
.y61_c00037{bottom:676.905000px;}
.y62_c00037{bottom:677.970000px;}
.y60_c00037{bottom:721.905000px;}
.y5f_c00037{bottom:725.325000px;}
.y5e_c00037{bottom:726.405000px;}
.y5b_c00037{bottom:743.745000px;}
.y5a_c00037{bottom:743.970000px;}
.y57_c00037{bottom:744.405000px;}
.y5d_c00037{bottom:744.420000px;}
.y59_c00037{bottom:745.245000px;}
.y5c_c00037{bottom:745.905000px;}
.y58_c00037{bottom:746.130000px;}
.y53_c00037{bottom:762.405000px;}
.y54_c00037{bottom:763.245000px;}
.y55_c00037{bottom:764.550000px;}
.y51_c00037{bottom:764.745000px;}
.y52_c00037{bottom:765.405000px;}
.y56_c00037{bottom:766.470000px;}
.y4c_c00037{bottom:782.970000px;}
.y50_c00037{bottom:783.180000px;}
.y4f_c00037{bottom:784.245000px;}
.y4e_c00037{bottom:784.905000px;}
.y4d_c00037{bottom:785.130000px;}
.y4b_c00037{bottom:786.405000px;}
.y4a_c00037{bottom:801.405000px;}
.y49_c00037{bottom:802.245000px;}
.y48_c00037{bottom:803.325000px;}
.y47_c00037{bottom:803.745000px;}
.y46_c00037{bottom:821.355000px;}
.y44_c00037{bottom:822.405000px;}
.y41_c00037{bottom:823.245000px;}
.y45_c00037{bottom:824.130000px;}
.y42_c00037{bottom:825.405000px;}
.y43_c00037{bottom:826.470000px;}
.y3b_c00037{bottom:841.470000px;}
.y3e_c00037{bottom:841.905000px;}
.y3c_c00037{bottom:842.745000px;}
.y40_c00037{bottom:843.630000px;}
.y3f_c00037{bottom:844.470000px;}
.y3a_c00037{bottom:844.905000px;}
.y3d_c00037{bottom:845.970000px;}
.y39_c00037{bottom:860.970000px;}
.y36_c00037{bottom:861.405000px;}
.y38_c00037{bottom:862.245000px;}
.y37_c00037{bottom:864.405000px;}
.y35_c00037{bottom:880.905000px;}
.y34_c00037{bottom:883.245000px;}
.y33_c00037{bottom:900.405000px;}
.y31_c00037{bottom:901.245000px;}
.y2e_c00037{bottom:901.470000px;}
.y32_c00037{bottom:903.405000px;}
.y30_c00037{bottom:903.630000px;}
.y2f_c00037{bottom:904.470000px;}
.y2d_c00037{bottom:904.905000px;}
.y28_c00037{bottom:919.905000px;}
.y2c_c00037{bottom:920.745000px;}
.y2b_c00037{bottom:920.970000px;}
.y29_c00037{bottom:921.855000px;}
.y24_c00037{bottom:922.245000px;}
.y23_c00037{bottom:922.470000px;}
.y26_c00037{bottom:923.130000px;}
.y27_c00037{bottom:923.970000px;}
.y2a_c00037{bottom:924.405000px;}
.y25_c00037{bottom:925.470000px;}
.y20_c00037{bottom:940.470000px;}
.y1e_c00037{bottom:941.745000px;}
.y22_c00037{bottom:942.825000px;}
.y21_c00037{bottom:943.470000px;}
.y1f_c00037{bottom:943.905000px;}
.y1c_c00037{bottom:961.245000px;}
.y1d_c00037{bottom:961.905000px;}
.y1b_c00037{bottom:963.405000px;}
.y18_c00037{bottom:980.325000px;}
.y16_c00037{bottom:980.745000px;}
.y1a_c00037{bottom:981.405000px;}
.y19_c00037{bottom:981.630000px;}
.y17_c00037{bottom:982.905000px;}
.y14_c00037{bottom:997.905000px;}
.y15_c00037{bottom:999.405000px;}
.y13_c00037{bottom:1000.245000px;}
.y12_c00037{bottom:1002.405000px;}
.y11_c00037{bottom:1018.470000px;}
.y10_c00037{bottom:1019.745000px;}
.yf_c00037{bottom:1021.905000px;}
.ye_c00037{bottom:1036.905000px;}
.y8_c00037{bottom:1038.405000px;}
.yc_c00037{bottom:1039.245000px;}
.yb_c00037{bottom:1039.680000px;}
.yd_c00037{bottom:1040.130000px;}
.y7_c00037{bottom:1041.405000px;}
.ya_c00037{bottom:1041.630000px;}
.y9_c00037{bottom:1042.470000px;}
.y3_c00037{bottom:1057.905000px;}
.y5_c00037{bottom:1058.745000px;}
.y4_c00037{bottom:1060.905000px;}
.y6_c00037{bottom:1061.130000px;}
.y2_c00037{bottom:1099.050000px;}
.y1_c00037{bottom:1100.970000px;}
.h9_c00037{height:4.206533px;}
.h8_c00037{height:8.339268px;}
.h5_c00037{height:23.025234px;}
.h2_c00037{height:25.091602px;}
.h1_c00037{height:31.364502px;}
.h3_c00037{height:35.571035px;}
.h7_c00037{height:39.777568px;}
.h4_c00037{height:43.910303px;}
.h6_c00037{height:48.116836px;}
.ha_c00037{height:49.910303px;}
.h0_c00037{height:1335.000000px;}
.w0_c00037{width:880.500000px;}
.x0_c00037{left:0.000000px;}
.xdb_c00037{left:148.920000px;}
.xb0_c00037{left:150.000000px;}
.x9d_c00037{left:151.500000px;}
.x2f_c00037{left:152.580000px;}
.x1_c00037{left:154.080000px;}
.x21_c00037{left:160.080000px;}
.x8f_c00037{left:164.580000px;}
.x96_c00037{left:166.920000px;}
.x9e_c00037{left:168.000000px;}
.xab_c00037{left:175.500000px;}
.xd0_c00037{left:177.000000px;}
.x30_c00037{left:184.080000px;}
.x3_c00037{left:185.580000px;}
.xe0_c00037{left:190.500000px;}
.xd4_c00037{left:195.000000px;}
.xb3_c00037{left:204.000000px;}
.xc7_c00037{left:208.500000px;}
.x97_c00037{left:210.420000px;}
.xb9_c00037{left:214.080000px;}
.x78_c00037{left:216.000000px;}
.x40_c00037{left:219.420000px;}
.xc1_c00037{left:222.000000px;}
.xe_c00037{left:226.920000px;}
.x1c_c00037{left:229.920000px;}
.x71_c00037{left:232.080000px;}
.x2a_c00037{left:234.000000px;}
.x5f_c00037{left:238.500000px;}
.xcd_c00037{left:245.580000px;}
.xba_c00037{left:247.500000px;}
.x79_c00037{left:248.580000px;}
.xbc_c00037{left:250.500000px;}
.x39_c00037{left:252.420000px;}
.x85_c00037{left:255.000000px;}
.x31_c00037{left:256.920000px;}
.x9f_c00037{left:258.000000px;}
.xf_c00037{left:259.500000px;}
.x4_c00037{left:261.420000px;}
.x2b_c00037{left:262.920000px;}
.x4d_c00037{left:266.580000px;}
.x6b_c00037{left:268.080000px;}
.x60_c00037{left:270.000000px;}
.xbd_c00037{left:272.580000px;}
.xdc_c00037{left:274.500000px;}
.xa0_c00037{left:279.000000px;}
.x10_c00037{left:280.920000px;}
.xe1_c00037{left:285.000000px;}
.x41_c00037{left:286.500000px;}
.x90_c00037{left:289.080000px;}
.x56_c00037{left:291.000000px;}
.xc8_c00037{left:294.000000px;}
.xd5_c00037{left:297.000000px;}
.x2c_c00037{left:300.000000px;}
.x7a_c00037{left:303.420000px;}
.x22_c00037{left:310.080000px;}
.x5_c00037{left:311.580000px;}
.x61_c00037{left:313.500000px;}
.x8a_c00037{left:318.000000px;}
.x2d_c00037{left:319.500000px;}
.x3a_c00037{left:320.580000px;}
.xa5_c00037{left:322.080000px;}
.x32_c00037{left:325.080000px;}
.x6_c00037{left:331.920000px;}
.x4e_c00037{left:334.500000px;}
.x57_c00037{left:339.000000px;}
.x6c_c00037{left:342.000000px;}
.xa1_c00037{left:343.275000px;}
.x11_c00037{left:344.580000px;}
.x86_c00037{left:346.500000px;}
.xbb_c00037{left:347.580000px;}
.xa6_c00037{left:348.645000px;}
.x83_c00037{left:350.145000px;}
.x8b_c00037{left:352.080000px;}
.x91_c00037{left:354.420000px;}
.x62_c00037{left:356.580000px;}
.xb1_c00037{left:358.920000px;}
.xc2_c00037{left:360.000000px;}
.x98_c00037{left:363.000000px;}
.xac_c00037{left:364.500000px;}
.x42_c00037{left:366.420000px;}
.xdd_c00037{left:375.000000px;}
.x63_c00037{left:376.500000px;}
.x3b_c00037{left:379.500000px;}
.x33_c00037{left:381.420000px;}
.xa2_c00037{left:382.500000px;}
.x99_c00037{left:384.000000px;}
.x43_c00037{left:385.500000px;}
.x46_c00037{left:387.000000px;}
.xb4_c00037{left:388.080000px;}
.x92_c00037{left:389.580000px;}
.x4f_c00037{left:391.920000px;}
.x58_c00037{left:393.420000px;}
.xc9_c00037{left:396.420000px;}
.x2_c00037{left:399.000000px;}
.x12_c00037{left:400.275000px;}
.x7_c00037{left:401.580000px;}
.x64_c00037{left:403.500000px;}
.x23_c00037{left:404.580000px;}
.xde_c00037{left:405.645000px;}
.x6d_c00037{left:409.500000px;}
.x84_c00037{left:411.000000px;}
.xd1_c00037{left:415.500000px;}
.x34_c00037{left:417.420000px;}
.x7b_c00037{left:421.080000px;}
.xa7_c00037{left:422.580000px;}
.x3c_c00037{left:424.500000px;}
.x44_c00037{left:426.000000px;}
.x72_c00037{left:427.500000px;}
.x87_c00037{left:429.000000px;}
.x8c_c00037{left:430.920000px;}
.x13_c00037{left:432.000000px;}
.xbe_c00037{left:437.580000px;}
.xad_c00037{left:439.500000px;}
.x35_c00037{left:441.000000px;}
.x8d_c00037{left:442.500000px;}
.x50_c00037{left:445.080000px;}
.x47_c00037{left:447.420000px;}
.x6e_c00037{left:449.580000px;}
.x59_c00037{left:453.000000px;}
.x65_c00037{left:454.500000px;}
.x1d_c00037{left:458.580000px;}
.xdf_c00037{left:460.080000px;}
.x8_c00037{left:462.000000px;}
.x24_c00037{left:466.500000px;}
.x7c_c00037{left:468.000000px;}
.x51_c00037{left:470.580000px;}
.x14_c00037{left:475.080000px;}
.x48_c00037{left:477.000000px;}
.x73_c00037{left:478.920000px;}
.xd6_c00037{left:480.000000px;}
.x69_c00037{left:481.080000px;}
.x52_c00037{left:484.500000px;}
.x45_c00037{left:485.580000px;}
.xd2_c00037{left:489.000000px;}
.xbf_c00037{left:492.000000px;}
.xc3_c00037{left:493.500000px;}
.xa3_c00037{left:495.420000px;}
.x5a_c00037{left:498.000000px;}
.x66_c00037{left:499.500000px;}
.x81_c00037{left:504.000000px;}
.x6f_c00037{left:505.080000px;}
.x9_c00037{left:510.000000px;}
.x88_c00037{left:511.080000px;}
.x25_c00037{left:513.000000px;}
.x15_c00037{left:516.420000px;}
.xd7_c00037{left:517.500000px;}
.x7d_c00037{left:519.000000px;}
.x36_c00037{left:523.500000px;}
.x8e_c00037{left:524.580000px;}
.xa8_c00037{left:526.080000px;}
.x1e_c00037{left:528.000000px;}
.x53_c00037{left:529.920000px;}
.x93_c00037{left:532.920000px;}
.x3d_c00037{left:535.080000px;}
.x74_c00037{left:537.000000px;}
.x9a_c00037{left:543.000000px;}
.xca_c00037{left:544.080000px;}
.xce_c00037{left:550.500000px;}
.xb5_c00037{left:553.500000px;}
.x75_c00037{left:555.000000px;}
.x94_c00037{left:556.920000px;}
.xc4_c00037{left:558.420000px;}
.xa_c00037{left:561.420000px;}
.x49_c00037{left:562.500000px;}
.x16_c00037{left:565.500000px;}
.x26_c00037{left:567.000000px;}
.x9b_c00037{left:568.500000px;}
.x54_c00037{left:569.580000px;}
.x95_c00037{left:571.080000px;}
.x5b_c00037{left:574.920000px;}
.x70_c00037{left:580.275000px;}
.xcb_c00037{left:584.580000px;}
.x7e_c00037{left:586.080000px;}
.xae_c00037{left:589.275000px;}
.x89_c00037{left:592.275000px;}
.xd3_c00037{left:595.500000px;}
.x27_c00037{left:597.420000px;}
.x82_c00037{left:600.420000px;}
.xd8_c00037{left:601.500000px;}
.xa9_c00037{left:603.000000px;}
.xb6_c00037{left:604.500000px;}
.x17_c00037{left:606.420000px;}
.x37_c00037{left:608.580000px;}
.x3e_c00037{left:610.500000px;}
.x1f_c00037{left:612.000000px;}
.xcc_c00037{left:613.500000px;}
.x5c_c00037{left:615.420000px;}
.xb_c00037{left:621.000000px;}
.xb7_c00037{left:625.500000px;}
.x3f_c00037{left:630.420000px;}
.x6a_c00037{left:631.500000px;}
.x9c_c00037{left:632.580000px;}
.x67_c00037{left:634.500000px;}
.x38_c00037{left:635.775000px;}
.x28_c00037{left:637.920000px;}
.xc_c00037{left:640.500000px;}
.xc0_c00037{left:642.000000px;}
.x18_c00037{left:643.080000px;}
.xaf_c00037{left:646.080000px;}
.x4a_c00037{left:650.580000px;}
.x7f_c00037{left:655.500000px;}
.xaa_c00037{left:661.080000px;}
.xd_c00037{left:663.000000px;}
.x19_c00037{left:664.500000px;}
.xd9_c00037{left:668.580000px;}
.xc5_c00037{left:672.420000px;}
.x5d_c00037{left:673.920000px;}
.x4b_c00037{left:676.080000px;}
.x68_c00037{left:678.000000px;}
.xb2_c00037{left:682.500000px;}
.x76_c00037{left:684.855000px;}
.xcf_c00037{left:686.580000px;}
.xda_c00037{left:688.500000px;}
.x4c_c00037{left:691.500000px;}
.x80_c00037{left:693.000000px;}
.xc6_c00037{left:694.500000px;}
.x29_c00037{left:695.580000px;}
.x1a_c00037{left:697.080000px;}
.xa4_c00037{left:701.580000px;}
.x5e_c00037{left:705.000000px;}
.xb8_c00037{left:708.420000px;}
.x55_c00037{left:709.920000px;}
.x20_c00037{left:715.500000px;}
.x77_c00037{left:717.000000px;}
.x2e_c00037{left:722.580000px;}
.x1b_c00037{left:724.080000px;}
@media print{
.v0_c00037{vertical-align:0.000000pt;}
.v1_c00037{vertical-align:5.333333pt;}
.ls0_c00037{letter-spacing:0.000000pt;}
.ws4_c00037{word-spacing:-7.733073pt;}
.ws0_c00037{word-spacing:-3.186375pt;}
.ws1_c00037{word-spacing:-0.683292pt;}
.ws5_c00037{word-spacing:0.000000pt;}
.ws3_c00037{word-spacing:0.722378pt;}
.ws2_c00037{word-spacing:10.771590pt;}
._0_c00037{width:13.886158pt;}
.fs8_c00037{font-size:3.040000pt;}
.fs7_c00037{font-size:6.026667pt;}
.fs4_c00037{font-size:16.640000pt;}
.fs1_c00037{font-size:18.133333pt;}
.fs0_c00037{font-size:22.666667pt;}
.fs2_c00037{font-size:25.706667pt;}
.fs6_c00037{font-size:28.746667pt;}
.fs3_c00037{font-size:31.733333pt;}
.fs5_c00037{font-size:34.773333pt;}
.y0_c00037{bottom:0.000000pt;}
.yb3_c00037{bottom:222.440000pt;}
.yb5_c00037{bottom:223.773333pt;}
.yb4_c00037{bottom:224.360000pt;}
.yb6_c00037{bottom:224.560000pt;}
.yb7_c00037{bottom:225.693333pt;}
.yb2_c00037{bottom:239.773333pt;}
.yae_c00037{bottom:241.106667pt;}
.yac_c00037{bottom:241.693333pt;}
.yb1_c00037{bottom:241.893333pt;}
.yb0_c00037{bottom:242.066667pt;}
.yad_c00037{bottom:242.640000pt;}
.yaf_c00037{bottom:243.026667pt;}
.yaa_c00037{bottom:258.440000pt;}
.yab_c00037{bottom:259.226667pt;}
.ya8_c00037{bottom:260.360000pt;}
.ya9_c00037{bottom:261.306667pt;}
.ya4_c00037{bottom:275.773333pt;}
.ya7_c00037{bottom:276.733333pt;}
.ya6_c00037{bottom:276.933333pt;}
.ya5_c00037{bottom:277.693333pt;}
.ya0_c00037{bottom:293.106667pt;}
.ya1_c00037{bottom:295.026667pt;}
.ya2_c00037{bottom:295.226667pt;}
.ya3_c00037{bottom:296.360000pt;}
.y9e_c00037{bottom:310.440000pt;}
.y9c_c00037{bottom:311.226667pt;}
.y9f_c00037{bottom:311.773333pt;}
.y9d_c00037{bottom:312.360000pt;}
.y9b_c00037{bottom:328.733333pt;}
.y97_c00037{bottom:328.933333pt;}
.y99_c00037{bottom:329.106667pt;}
.y96_c00037{bottom:329.693333pt;}
.y9a_c00037{bottom:329.893333pt;}
.y98_c00037{bottom:331.026667pt;}
.y94_c00037{bottom:346.440000pt;}
.y95_c00037{bottom:347.026667pt;}
.y92_c00037{bottom:348.360000pt;}
.y93_c00037{bottom:348.373333pt;}
.y91_c00037{bottom:365.693333pt;}
.y8d_c00037{bottom:381.106667pt;}
.y90_c00037{bottom:381.693333pt;}
.y8e_c00037{bottom:381.893333pt;}
.y8f_c00037{bottom:382.066667pt;}
.y8c_c00037{bottom:383.026667pt;}
.y89_c00037{bottom:399.400000pt;}
.y8a_c00037{bottom:400.360000pt;}
.y8b_c00037{bottom:401.693333pt;}
.y87_c00037{bottom:415.773333pt;}
.y86_c00037{bottom:417.106667pt;}
.y88_c00037{bottom:417.693333pt;}
.y84_c00037{bottom:419.026667pt;}
.y85_c00037{bottom:419.040000pt;}
.y82_c00037{bottom:434.440000pt;}
.y83_c00037{bottom:436.360000pt;}
.y7e_c00037{bottom:450.440000pt;}
.y80_c00037{bottom:451.773333pt;}
.y7f_c00037{bottom:452.360000pt;}
.y7c_c00037{bottom:452.560000pt;}
.y81_c00037{bottom:452.733333pt;}
.y7b_c00037{bottom:453.693333pt;}
.y7d_c00037{bottom:453.706667pt;}
.y7a_c00037{bottom:467.026667pt;}
.y78_c00037{bottom:468.360000pt;}
.y75_c00037{bottom:469.106667pt;}
.y77_c00037{bottom:470.066667pt;}
.y79_c00037{bottom:471.026667pt;}
.y76_c00037{bottom:472.373333pt;}
.y74_c00037{bottom:488.360000pt;}
.y72_c00037{bottom:502.826667pt;}
.y6f_c00037{bottom:503.773333pt;}
.y73_c00037{bottom:505.306667pt;}
.y71_c00037{bottom:505.693333pt;}
.y70_c00037{bottom:507.040000pt;}
.y6e_c00037{bottom:527.973333pt;}
.y6c_c00037{bottom:528.360000pt;}
.y6a_c00037{bottom:528.733333pt;}
.y6b_c00037{bottom:529.306667pt;}
.y6d_c00037{bottom:529.893333pt;}
.y67_c00037{bottom:544.733333pt;}
.y69_c00037{bottom:545.693333pt;}
.y66_c00037{bottom:545.893333pt;}
.y68_c00037{bottom:546.640000pt;}
.y65_c00037{bottom:547.600000pt;}
.y63_c00037{bottom:569.106667pt;}
.y64_c00037{bottom:570.066667pt;}
.y61_c00037{bottom:601.693333pt;}
.y62_c00037{bottom:602.640000pt;}
.y60_c00037{bottom:641.693333pt;}
.y5f_c00037{bottom:644.733333pt;}
.y5e_c00037{bottom:645.693333pt;}
.y5b_c00037{bottom:661.106667pt;}
.y5a_c00037{bottom:661.306667pt;}
.y57_c00037{bottom:661.693333pt;}
.y5d_c00037{bottom:661.706667pt;}
.y59_c00037{bottom:662.440000pt;}
.y5c_c00037{bottom:663.026667pt;}
.y58_c00037{bottom:663.226667pt;}
.y53_c00037{bottom:677.693333pt;}
.y54_c00037{bottom:678.440000pt;}
.y55_c00037{bottom:679.600000pt;}
.y51_c00037{bottom:679.773333pt;}
.y52_c00037{bottom:680.360000pt;}
.y56_c00037{bottom:681.306667pt;}
.y4c_c00037{bottom:695.973333pt;}
.y50_c00037{bottom:696.160000pt;}
.y4f_c00037{bottom:697.106667pt;}
.y4e_c00037{bottom:697.693333pt;}
.y4d_c00037{bottom:697.893333pt;}
.y4b_c00037{bottom:699.026667pt;}
.y4a_c00037{bottom:712.360000pt;}
.y49_c00037{bottom:713.106667pt;}
.y48_c00037{bottom:714.066667pt;}
.y47_c00037{bottom:714.440000pt;}
.y46_c00037{bottom:730.093333pt;}
.y44_c00037{bottom:731.026667pt;}
.y41_c00037{bottom:731.773333pt;}
.y45_c00037{bottom:732.560000pt;}
.y42_c00037{bottom:733.693333pt;}
.y43_c00037{bottom:734.640000pt;}
.y3b_c00037{bottom:747.973333pt;}
.y3e_c00037{bottom:748.360000pt;}
.y3c_c00037{bottom:749.106667pt;}
.y40_c00037{bottom:749.893333pt;}
.y3f_c00037{bottom:750.640000pt;}
.y3a_c00037{bottom:751.026667pt;}
.y3d_c00037{bottom:751.973333pt;}
.y39_c00037{bottom:765.306667pt;}
.y36_c00037{bottom:765.693333pt;}
.y38_c00037{bottom:766.440000pt;}
.y37_c00037{bottom:768.360000pt;}
.y35_c00037{bottom:783.026667pt;}
.y34_c00037{bottom:785.106667pt;}
.y33_c00037{bottom:800.360000pt;}
.y31_c00037{bottom:801.106667pt;}
.y2e_c00037{bottom:801.306667pt;}
.y32_c00037{bottom:803.026667pt;}
.y30_c00037{bottom:803.226667pt;}
.y2f_c00037{bottom:803.973333pt;}
.y2d_c00037{bottom:804.360000pt;}
.y28_c00037{bottom:817.693333pt;}
.y2c_c00037{bottom:818.440000pt;}
.y2b_c00037{bottom:818.640000pt;}
.y29_c00037{bottom:819.426667pt;}
.y24_c00037{bottom:819.773333pt;}
.y23_c00037{bottom:819.973333pt;}
.y26_c00037{bottom:820.560000pt;}
.y27_c00037{bottom:821.306667pt;}
.y2a_c00037{bottom:821.693333pt;}
.y25_c00037{bottom:822.640000pt;}
.y20_c00037{bottom:835.973333pt;}
.y1e_c00037{bottom:837.106667pt;}
.y22_c00037{bottom:838.066667pt;}
.y21_c00037{bottom:838.640000pt;}
.y1f_c00037{bottom:839.026667pt;}
.y1c_c00037{bottom:854.440000pt;}
.y1d_c00037{bottom:855.026667pt;}
.y1b_c00037{bottom:856.360000pt;}
.y18_c00037{bottom:871.400000pt;}
.y16_c00037{bottom:871.773333pt;}
.y1a_c00037{bottom:872.360000pt;}
.y19_c00037{bottom:872.560000pt;}
.y17_c00037{bottom:873.693333pt;}
.y14_c00037{bottom:887.026667pt;}
.y15_c00037{bottom:888.360000pt;}
.y13_c00037{bottom:889.106667pt;}
.y12_c00037{bottom:891.026667pt;}
.y11_c00037{bottom:905.306667pt;}
.y10_c00037{bottom:906.440000pt;}
.yf_c00037{bottom:908.360000pt;}
.ye_c00037{bottom:921.693333pt;}
.y8_c00037{bottom:923.026667pt;}
.yc_c00037{bottom:923.773333pt;}
.yb_c00037{bottom:924.160000pt;}
.yd_c00037{bottom:924.560000pt;}
.y7_c00037{bottom:925.693333pt;}
.ya_c00037{bottom:925.893333pt;}
.y9_c00037{bottom:926.640000pt;}
.y3_c00037{bottom:940.360000pt;}
.y5_c00037{bottom:941.106667pt;}
.y4_c00037{bottom:943.026667pt;}
.y6_c00037{bottom:943.226667pt;}
.y2_c00037{bottom:976.933333pt;}
.y1_c00037{bottom:978.640000pt;}
.h9_c00037{height:3.739141pt;}
.h8_c00037{height:7.412682pt;}
.h5_c00037{height:20.466875pt;}
.h2_c00037{height:22.303646pt;}
.h1_c00037{height:27.879557pt;}
.h3_c00037{height:31.618698pt;}
.h7_c00037{height:35.357839pt;}
.h4_c00037{height:39.031380pt;}
.h6_c00037{height:42.770521pt;}
.ha_c00037{height:44.364714pt;}
.h0_c00037{height:1186.666667pt;}
.w0_c00037{width:782.666667pt;}
.x0_c00037{left:0.000000pt;}
.xdb_c00037{left:132.373333pt;}
.xb0_c00037{left:133.333333pt;}
.x9d_c00037{left:134.666667pt;}
.x2f_c00037{left:135.626667pt;}
.x1_c00037{left:136.960000pt;}
.x21_c00037{left:142.293333pt;}
.x8f_c00037{left:146.293333pt;}
.x96_c00037{left:148.373333pt;}
.x9e_c00037{left:149.333333pt;}
.xab_c00037{left:156.000000pt;}
.xd0_c00037{left:157.333333pt;}
.x30_c00037{left:163.626667pt;}
.x3_c00037{left:164.960000pt;}
.xe0_c00037{left:169.333333pt;}
.xd4_c00037{left:173.333333pt;}
.xb3_c00037{left:181.333333pt;}
.xc7_c00037{left:185.333333pt;}
.x97_c00037{left:187.040000pt;}
.xb9_c00037{left:190.293333pt;}
.x78_c00037{left:192.000000pt;}
.x40_c00037{left:195.040000pt;}
.xc1_c00037{left:197.333333pt;}
.xe_c00037{left:201.706667pt;}
.x1c_c00037{left:204.373333pt;}
.x71_c00037{left:206.293333pt;}
.x2a_c00037{left:208.000000pt;}
.x5f_c00037{left:212.000000pt;}
.xcd_c00037{left:218.293333pt;}
.xba_c00037{left:220.000000pt;}
.x79_c00037{left:220.960000pt;}
.xbc_c00037{left:222.666667pt;}
.x39_c00037{left:224.373333pt;}
.x85_c00037{left:226.666667pt;}
.x31_c00037{left:228.373333pt;}
.x9f_c00037{left:229.333333pt;}
.xf_c00037{left:230.666667pt;}
.x4_c00037{left:232.373333pt;}
.x2b_c00037{left:233.706667pt;}
.x4d_c00037{left:236.960000pt;}
.x6b_c00037{left:238.293333pt;}
.x60_c00037{left:240.000000pt;}
.xbd_c00037{left:242.293333pt;}
.xdc_c00037{left:244.000000pt;}
.xa0_c00037{left:248.000000pt;}
.x10_c00037{left:249.706667pt;}
.xe1_c00037{left:253.333333pt;}
.x41_c00037{left:254.666667pt;}
.x90_c00037{left:256.960000pt;}
.x56_c00037{left:258.666667pt;}
.xc8_c00037{left:261.333333pt;}
.xd5_c00037{left:264.000000pt;}
.x2c_c00037{left:266.666667pt;}
.x7a_c00037{left:269.706667pt;}
.x22_c00037{left:275.626667pt;}
.x5_c00037{left:276.960000pt;}
.x61_c00037{left:278.666667pt;}
.x8a_c00037{left:282.666667pt;}
.x2d_c00037{left:284.000000pt;}
.x3a_c00037{left:284.960000pt;}
.xa5_c00037{left:286.293333pt;}
.x32_c00037{left:288.960000pt;}
.x6_c00037{left:295.040000pt;}
.x4e_c00037{left:297.333333pt;}
.x57_c00037{left:301.333333pt;}
.x6c_c00037{left:304.000000pt;}
.xa1_c00037{left:305.133333pt;}
.x11_c00037{left:306.293333pt;}
.x86_c00037{left:308.000000pt;}
.xbb_c00037{left:308.960000pt;}
.xa6_c00037{left:309.906667pt;}
.x83_c00037{left:311.240000pt;}
.x8b_c00037{left:312.960000pt;}
.x91_c00037{left:315.040000pt;}
.x62_c00037{left:316.960000pt;}
.xb1_c00037{left:319.040000pt;}
.xc2_c00037{left:320.000000pt;}
.x98_c00037{left:322.666667pt;}
.xac_c00037{left:324.000000pt;}
.x42_c00037{left:325.706667pt;}
.xdd_c00037{left:333.333333pt;}
.x63_c00037{left:334.666667pt;}
.x3b_c00037{left:337.333333pt;}
.x33_c00037{left:339.040000pt;}
.xa2_c00037{left:340.000000pt;}
.x99_c00037{left:341.333333pt;}
.x43_c00037{left:342.666667pt;}
.x46_c00037{left:344.000000pt;}
.xb4_c00037{left:344.960000pt;}
.x92_c00037{left:346.293333pt;}
.x4f_c00037{left:348.373333pt;}
.x58_c00037{left:349.706667pt;}
.xc9_c00037{left:352.373333pt;}
.x2_c00037{left:354.666667pt;}
.x12_c00037{left:355.800000pt;}
.x7_c00037{left:356.960000pt;}
.x64_c00037{left:358.666667pt;}
.x23_c00037{left:359.626667pt;}
.xde_c00037{left:360.573333pt;}
.x6d_c00037{left:364.000000pt;}
.x84_c00037{left:365.333333pt;}
.xd1_c00037{left:369.333333pt;}
.x34_c00037{left:371.040000pt;}
.x7b_c00037{left:374.293333pt;}
.xa7_c00037{left:375.626667pt;}
.x3c_c00037{left:377.333333pt;}
.x44_c00037{left:378.666667pt;}
.x72_c00037{left:380.000000pt;}
.x87_c00037{left:381.333333pt;}
.x8c_c00037{left:383.040000pt;}
.x13_c00037{left:384.000000pt;}
.xbe_c00037{left:388.960000pt;}
.xad_c00037{left:390.666667pt;}
.x35_c00037{left:392.000000pt;}
.x8d_c00037{left:393.333333pt;}
.x50_c00037{left:395.626667pt;}
.x47_c00037{left:397.706667pt;}
.x6e_c00037{left:399.626667pt;}
.x59_c00037{left:402.666667pt;}
.x65_c00037{left:404.000000pt;}
.x1d_c00037{left:407.626667pt;}
.xdf_c00037{left:408.960000pt;}
.x8_c00037{left:410.666667pt;}
.x24_c00037{left:414.666667pt;}
.x7c_c00037{left:416.000000pt;}
.x51_c00037{left:418.293333pt;}
.x14_c00037{left:422.293333pt;}
.x48_c00037{left:424.000000pt;}
.x73_c00037{left:425.706667pt;}
.xd6_c00037{left:426.666667pt;}
.x69_c00037{left:427.626667pt;}
.x52_c00037{left:430.666667pt;}
.x45_c00037{left:431.626667pt;}
.xd2_c00037{left:434.666667pt;}
.xbf_c00037{left:437.333333pt;}
.xc3_c00037{left:438.666667pt;}
.xa3_c00037{left:440.373333pt;}
.x5a_c00037{left:442.666667pt;}
.x66_c00037{left:444.000000pt;}
.x81_c00037{left:448.000000pt;}
.x6f_c00037{left:448.960000pt;}
.x9_c00037{left:453.333333pt;}
.x88_c00037{left:454.293333pt;}
.x25_c00037{left:456.000000pt;}
.x15_c00037{left:459.040000pt;}
.xd7_c00037{left:460.000000pt;}
.x7d_c00037{left:461.333333pt;}
.x36_c00037{left:465.333333pt;}
.x8e_c00037{left:466.293333pt;}
.xa8_c00037{left:467.626667pt;}
.x1e_c00037{left:469.333333pt;}
.x53_c00037{left:471.040000pt;}
.x93_c00037{left:473.706667pt;}
.x3d_c00037{left:475.626667pt;}
.x74_c00037{left:477.333333pt;}
.x9a_c00037{left:482.666667pt;}
.xca_c00037{left:483.626667pt;}
.xce_c00037{left:489.333333pt;}
.xb5_c00037{left:492.000000pt;}
.x75_c00037{left:493.333333pt;}
.x94_c00037{left:495.040000pt;}
.xc4_c00037{left:496.373333pt;}
.xa_c00037{left:499.040000pt;}
.x49_c00037{left:500.000000pt;}
.x16_c00037{left:502.666667pt;}
.x26_c00037{left:504.000000pt;}
.x9b_c00037{left:505.333333pt;}
.x54_c00037{left:506.293333pt;}
.x95_c00037{left:507.626667pt;}
.x5b_c00037{left:511.040000pt;}
.x70_c00037{left:515.800000pt;}
.xcb_c00037{left:519.626667pt;}
.x7e_c00037{left:520.960000pt;}
.xae_c00037{left:523.800000pt;}
.x89_c00037{left:526.466667pt;}
.xd3_c00037{left:529.333333pt;}
.x27_c00037{left:531.040000pt;}
.x82_c00037{left:533.706667pt;}
.xd8_c00037{left:534.666667pt;}
.xa9_c00037{left:536.000000pt;}
.xb6_c00037{left:537.333333pt;}
.x17_c00037{left:539.040000pt;}
.x37_c00037{left:540.960000pt;}
.x3e_c00037{left:542.666667pt;}
.x1f_c00037{left:544.000000pt;}
.xcc_c00037{left:545.333333pt;}
.x5c_c00037{left:547.040000pt;}
.xb_c00037{left:552.000000pt;}
.xb7_c00037{left:556.000000pt;}
.x3f_c00037{left:560.373333pt;}
.x6a_c00037{left:561.333333pt;}
.x9c_c00037{left:562.293333pt;}
.x67_c00037{left:564.000000pt;}
.x38_c00037{left:565.133333pt;}
.x28_c00037{left:567.040000pt;}
.xc_c00037{left:569.333333pt;}
.xc0_c00037{left:570.666667pt;}
.x18_c00037{left:571.626667pt;}
.xaf_c00037{left:574.293333pt;}
.x4a_c00037{left:578.293333pt;}
.x7f_c00037{left:582.666667pt;}
.xaa_c00037{left:587.626667pt;}
.xd_c00037{left:589.333333pt;}
.x19_c00037{left:590.666667pt;}
.xd9_c00037{left:594.293333pt;}
.xc5_c00037{left:597.706667pt;}
.x5d_c00037{left:599.040000pt;}
.x4b_c00037{left:600.960000pt;}
.x68_c00037{left:602.666667pt;}
.xb2_c00037{left:606.666667pt;}
.x76_c00037{left:608.760000pt;}
.xcf_c00037{left:610.293333pt;}
.xda_c00037{left:612.000000pt;}
.x4c_c00037{left:614.666667pt;}
.x80_c00037{left:616.000000pt;}
.xc6_c00037{left:617.333333pt;}
.x29_c00037{left:618.293333pt;}
.x1a_c00037{left:619.626667pt;}
.xa4_c00037{left:623.626667pt;}
.x5e_c00037{left:626.666667pt;}
.xb8_c00037{left:629.706667pt;}
.x55_c00037{left:631.040000pt;}
.x20_c00037{left:636.000000pt;}
.x77_c00037{left:637.333333pt;}
.x2e_c00037{left:642.293333pt;}
.x1b_c00037{left:643.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_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_56a7823f033c16a58ae1cdc3.woff2')format("woff");}.ff1_c00038{font-family:ff1_c00038;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m95_c00038{transform:matrix(0.308442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308442,0.000000,0.000000,0.250000,0,0);}
.mbe_c00038{transform:matrix(0.321892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321892,0.000000,0.000000,0.250000,0,0);}
.mcb_c00038{transform:matrix(0.322086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322086,0.000000,0.000000,0.250000,0,0);}
.m38_c00038{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m39_c00038{transform:matrix(0.336389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336389,0.000000,0.000000,0.250000,0,0);}
.m1d_c00038{transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);}
.m129_c00038{transform:matrix(0.349346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349346,0.000000,0.000000,0.250000,0,0);}
.m9f_c00038{transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);}
.m30_c00038{transform:matrix(0.355430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355430,0.000000,0.000000,0.250000,0,0);}
.mcc_c00038{transform:matrix(0.356135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356135,0.000000,0.000000,0.250000,0,0);}
.m1a_c00038{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.m21_c00038{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m7c_c00038{transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);}
.md9_c00038{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m10c_c00038{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m67_c00038{transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);}
.mae_c00038{transform:matrix(0.370588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370588,0.000000,0.000000,0.250000,0,0);}
.m59_c00038{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m2_c00038{transform:matrix(0.371166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371166,0.000000,0.000000,0.250000,0,0);}
.mca_c00038{transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);}
.m9e_c00038{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m43_c00038{transform:matrix(0.373413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373413,0.000000,0.000000,0.250000,0,0);}
.m7e_c00038{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.mba_c00038{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m4e_c00038{transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);}
.m1b_c00038{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mc7_c00038{transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);}
.m11_c00038{transform:matrix(0.384969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384969,0.000000,0.000000,0.250000,0,0);}
.m7_c00038{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m107_c00038{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m1c_c00038{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m2c_c00038{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m54_c00038{transform:matrix(0.393321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393321,0.000000,0.000000,0.250000,0,0);}
.m17_c00038{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m32_c00038{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m128_c00038{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m118_c00038{transform:matrix(0.396856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396856,0.000000,0.000000,0.250000,0,0);}
.mf3_c00038{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mb7_c00038{transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);}
.ma7_c00038{transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);}
.m114_c00038{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m68_c00038{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.m12b_c00038{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.mdb_c00038{transform:matrix(0.402607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402607,0.000000,0.000000,0.250000,0,0);}
.ma0_c00038{transform:matrix(0.404118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404118,0.000000,0.000000,0.250000,0,0);}
.mf5_c00038{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.mdf_c00038{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mc4_c00038{transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);}
.m14_c00038{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.mdc_c00038{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.mc_c00038{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.mc3_c00038{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m99_c00038{transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);}
.m78_c00038{transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);}
.m8e_c00038{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.m10d_c00038{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m12_c00038{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.ma8_c00038{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.m12e_c00038{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.md1_c00038{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m109_c00038{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m3b_c00038{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.mcf_c00038{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m18_c00038{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.mbf_c00038{transform:matrix(0.421150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421150,0.000000,0.000000,0.250000,0,0);}
.m85_c00038{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.m74_c00038{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m5a_c00038{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.mb4_c00038{transform:matrix(0.424118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424118,0.000000,0.000000,0.250000,0,0);}
.m9b_c00038{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m8d_c00038{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m96_c00038{transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);}
.me3_c00038{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m66_c00038{transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);}
.m102_c00038{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m41_c00038{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.m35_c00038{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m45_c00038{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m100_c00038{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mf9_c00038{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.m42_c00038{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mf4_c00038{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m82_c00038{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.me2_c00038{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m103_c00038{transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);}
.mf8_c00038{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.mac_c00038{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m87_c00038{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m9c_c00038{transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);}
.maf_c00038{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m3e_c00038{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m116_c00038{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m12d_c00038{transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);}
.mfa_c00038{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m6_c00038{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.mec_c00038{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.md8_c00038{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.md7_c00038{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m16_c00038{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m121_c00038{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.m64_c00038{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.mbb_c00038{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m84_c00038{transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);}
.me0_c00038{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m4_c00038{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m11c_c00038{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.mfc_c00038{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m56_c00038{transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);}
.m112_c00038{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m26_c00038{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.me8_c00038{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.md5_c00038{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.mab_c00038{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m71_c00038{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m9a_c00038{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m126_c00038{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.mad_c00038{transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);}
.m120_c00038{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m83_c00038{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m113_c00038{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.ma3_c00038{transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);}
.mfd_c00038{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.me7_c00038{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.ma4_c00038{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.md4_c00038{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.mb5_c00038{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m104_c00038{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m3d_c00038{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.m61_c00038{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m55_c00038{transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);}
.m63_c00038{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.mb1_c00038{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m53_c00038{transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);}
.m69_c00038{transform:matrix(0.477206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477206,0.000000,0.000000,0.250000,0,0);}
.m46_c00038{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.ma6_c00038{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.md0_c00038{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m2f_c00038{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m90_c00038{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m19_c00038{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m27_c00038{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mbc_c00038{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m101_c00038{transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);}
.m11e_c00038{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m98_c00038{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.mf2_c00038{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m125_c00038{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.mc8_c00038{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m1_c00038{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);}
.m6c_c00038{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m10f_c00038{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m11d_c00038{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m115_c00038{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mfb_c00038{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.ma1_c00038{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);}
.mbd_c00038{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.me_c00038{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m5c_c00038{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m106_c00038{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.mfe_c00038{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.mb_c00038{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m8b_c00038{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.m3f_c00038{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m8f_c00038{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.md_c00038{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m50_c00038{transform:matrix(0.518235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518235,0.000000,0.000000,0.250000,0,0);}
.m8c_c00038{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m52_c00038{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.mf0_c00038{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m4b_c00038{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.m2e_c00038{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m7d_c00038{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);}
.mef_c00038{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m122_c00038{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.me4_c00038{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m13_c00038{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m10_c00038{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m111_c00038{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m4a_c00038{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.mea_c00038{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.med_c00038{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m24_c00038{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m89_c00038{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.mce_c00038{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m47_c00038{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m9_c00038{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m2b_c00038{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m60_c00038{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.md6_c00038{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.mde_c00038{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m6f_c00038{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.mf7_c00038{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m23_c00038{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m80_c00038{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.mee_c00038{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m117_c00038{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m94_c00038{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);}
.m29_c00038{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m58_c00038{transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);}
.mc0_c00038{transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);}
.m88_c00038{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.mda_c00038{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m2a_c00038{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m5e_c00038{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.me6_c00038{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m119_c00038{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m12a_c00038{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m3a_c00038{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m75_c00038{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.m93_c00038{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_c00038{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.me9_c00038{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m127_c00038{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m22_c00038{transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);}
.m86_c00038{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.m15_c00038{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m37_c00038{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m10b_c00038{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.mc5_c00038{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m10a_c00038{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mff_c00038{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m123_c00038{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m36_c00038{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m5_c00038{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m6a_c00038{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m48_c00038{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);}
.mdd_c00038{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m44_c00038{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m5f_c00038{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m77_c00038{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m10e_c00038{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.m110_c00038{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m73_c00038{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.mb8_c00038{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m5b_c00038{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m70_c00038{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.m91_c00038{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.md3_c00038{transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);}
.m6b_c00038{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);}
.m7a_c00038{transform:matrix(0.601471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601471,0.000000,0.000000,0.250000,0,0);}
.m11f_c00038{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mb3_c00038{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.mb0_c00038{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m20_c00038{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m25_c00038{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mf_c00038{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m92_c00038{transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);}
.maa_c00038{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.meb_c00038{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m81_c00038{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mb6_c00038{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m4c_c00038{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);}
.mc1_c00038{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m51_c00038{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m6e_c00038{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m0_c00038{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m12c_c00038{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m76_c00038{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m11a_c00038{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m5d_c00038{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m2d_c00038{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.mc2_c00038{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.m49_c00038{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m79_c00038{transform:matrix(0.649265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649265,0.000000,0.000000,0.250000,0,0);}
.ma5_c00038{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);}
.m9d_c00038{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m8a_c00038{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m6d_c00038{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m62_c00038{transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);}
.m11b_c00038{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m97_c00038{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m57_c00038{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.ma_c00038{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m7f_c00038{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.m7b_c00038{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.ma9_c00038{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.ma2_c00038{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m72_c00038{transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);}
.m65_c00038{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m108_c00038{transform:matrix(0.695882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695882,0.000000,0.000000,0.250000,0,0);}
.m1f_c00038{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.mc9_c00038{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m40_c00038{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m4f_c00038{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);}
.mb9_c00038{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.mf6_c00038{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mf1_c00038{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.me5_c00038{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.md2_c00038{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m31_c00038{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m33_c00038{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m124_c00038{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.m3c_c00038{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m8_c00038{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m105_c00038{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m28_c00038{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m34_c00038{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m3_c00038{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.me1_c00038{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.m4d_c00038{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mc6_c00038{transform:matrix(0.957048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.957048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.957048,0.000000,0.000000,0.250000,0,0);}
.mb2_c00038{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.mcd_c00038{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.v1_c00038{vertical-align:-12.000000px;}
.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:-16.889280px;}
.ws1_c00038{word-spacing:-8.085683px;}
.ws2_c00038{word-spacing:-6.467164px;}
.ws3_c00038{word-spacing:0.000000px;}
._0_c00038{width:6.522671px;}
.fc0_c00038{color:transparent;}
.fs9_c00038{font-size:3.420000px;}
.fs8_c00038{font-size:13.620000px;}
.fs3_c00038{font-size:18.720000px;}
.fs0_c00038{font-size:20.400000px;}
.fs5_c00038{font-size:25.500000px;}
.fs1_c00038{font-size:28.920000px;}
.fs6_c00038{font-size:32.340000px;}
.fs4_c00038{font-size:35.700000px;}
.fs2_c00038{font-size:39.120000px;}
.fs7_c00038{font-size:42.540000px;}
.fsa_c00038{font-size:45.900000px;}
.y0_c00038{bottom:0.000000px;}
.y13c_c00038{bottom:254.745000px;}
.y13b_c00038{bottom:255.180000px;}
.y13a_c00038{bottom:258.405000px;}
.y139_c00038{bottom:263.325000px;}
.y137_c00038{bottom:274.245000px;}
.y136_c00038{bottom:275.130000px;}
.y135_c00038{bottom:276.405000px;}
.y133_c00038{bottom:276.600000px;}
.y138_c00038{bottom:277.470000px;}
.y134_c00038{bottom:277.905000px;}
.y132_c00038{bottom:293.745000px;}
.y130_c00038{bottom:294.630000px;}
.y12e_c00038{bottom:295.245000px;}
.y12f_c00038{bottom:295.905000px;}
.y131_c00038{bottom:296.970000px;}
.y12d_c00038{bottom:298.470000px;}
.y12b_c00038{bottom:312.825000px;}
.y12a_c00038{bottom:313.245000px;}
.y129_c00038{bottom:314.325000px;}
.y127_c00038{bottom:314.970000px;}
.y128_c00038{bottom:315.405000px;}
.y12c_c00038{bottom:315.630000px;}
.y125_c00038{bottom:316.680000px;}
.y126_c00038{bottom:316.905000px;}
.y121_c00038{bottom:331.470000px;}
.y120_c00038{bottom:331.905000px;}
.y123_c00038{bottom:332.325000px;}
.y122_c00038{bottom:332.745000px;}
.y11c_c00038{bottom:333.180000px;}
.y11e_c00038{bottom:333.630000px;}
.y11f_c00038{bottom:334.470000px;}
.y11d_c00038{bottom:334.905000px;}
.y124_c00038{bottom:336.405000px;}
.y11b_c00038{bottom:337.905000px;}
.y11a_c00038{bottom:339.405000px;}
.y119_c00038{bottom:341.130000px;}
.y118_c00038{bottom:342.405000px;}
.y116_c00038{bottom:352.245000px;}
.y115_c00038{bottom:353.130000px;}
.y117_c00038{bottom:353.745000px;}
.y114_c00038{bottom:354.405000px;}
.y112_c00038{bottom:354.825000px;}
.y113_c00038{bottom:355.905000px;}
.y111_c00038{bottom:360.405000px;}
.y10f_c00038{bottom:370.470000px;}
.y10d_c00038{bottom:371.745000px;}
.y10e_c00038{bottom:372.630000px;}
.y10c_c00038{bottom:373.905000px;}
.y110_c00038{bottom:374.130000px;}
.y10b_c00038{bottom:375.405000px;}
.y10a_c00038{bottom:378.405000px;}
.y109_c00038{bottom:381.630000px;}
.y107_c00038{bottom:391.245000px;}
.y105_c00038{bottom:392.325000px;}
.y104_c00038{bottom:393.405000px;}
.y103_c00038{bottom:393.630000px;}
.y102_c00038{bottom:394.245000px;}
.y106_c00038{bottom:394.470000px;}
.y108_c00038{bottom:394.905000px;}
.y101_c00038{bottom:396.825000px;}
.yff_c00038{bottom:409.905000px;}
.yfd_c00038{bottom:410.325000px;}
.y100_c00038{bottom:410.745000px;}
.yfc_c00038{bottom:412.905000px;}
.yfe_c00038{bottom:413.130000px;}
.yfb_c00038{bottom:413.970000px;}
.yfa_c00038{bottom:414.405000px;}
.yf9_c00038{bottom:414.825000px;}
.yf8_c00038{bottom:419.325000px;}
.yf4_c00038{bottom:429.405000px;}
.yf6_c00038{bottom:430.245000px;}
.yf7_c00038{bottom:431.325000px;}
.yf5_c00038{bottom:432.405000px;}
.yf3_c00038{bottom:434.325000px;}
.yf2_c00038{bottom:435.825000px;}
.yf1_c00038{bottom:448.905000px;}
.yef_c00038{bottom:449.745000px;}
.yf0_c00038{bottom:450.825000px;}
.yed_c00038{bottom:451.245000px;}
.yee_c00038{bottom:451.905000px;}
.yec_c00038{bottom:452.130000px;}
.yea_c00038{bottom:452.745000px;}
.yeb_c00038{bottom:453.405000px;}
.ye9_c00038{bottom:456.825000px;}
.ye7_c00038{bottom:470.745000px;}
.ye8_c00038{bottom:471.630000px;}
.ye5_c00038{bottom:472.905000px;}
.ye6_c00038{bottom:473.970000px;}
.ye4_c00038{bottom:477.405000px;}
.ydf_c00038{bottom:489.405000px;}
.ye3_c00038{bottom:490.245000px;}
.ye1_c00038{bottom:491.130000px;}
.ye0_c00038{bottom:492.405000px;}
.ye2_c00038{bottom:493.470000px;}
.yde_c00038{bottom:493.905000px;}
.ydd_c00038{bottom:495.405000px;}
.yda_c00038{bottom:507.405000px;}
.ydc_c00038{bottom:508.470000px;}
.yd7_c00038{bottom:509.745000px;}
.yd9_c00038{bottom:510.630000px;}
.ydb_c00038{bottom:511.470000px;}
.yd8_c00038{bottom:511.905000px;}
.yd6_c00038{bottom:516.825000px;}
.yd3_c00038{bottom:529.245000px;}
.yd4_c00038{bottom:530.325000px;}
.yd1_c00038{bottom:530.745000px;}
.yd0_c00038{bottom:531.180000px;}
.yd2_c00038{bottom:531.405000px;}
.yd5_c00038{bottom:531.630000px;}
.yce_c00038{bottom:548.325000px;}
.ycf_c00038{bottom:548.745000px;}
.ycc_c00038{bottom:550.245000px;}
.ycb_c00038{bottom:550.470000px;}
.ycd_c00038{bottom:550.905000px;}
.yca_c00038{bottom:551.970000px;}
.yc9_c00038{bottom:552.405000px;}
.yc8_c00038{bottom:552.825000px;}
.yc7_c00038{bottom:555.825000px;}
.yc4_c00038{bottom:569.745000px;}
.yc6_c00038{bottom:570.405000px;}
.yc5_c00038{bottom:570.630000px;}
.yc1_c00038{bottom:571.680000px;}
.yc3_c00038{bottom:571.905000px;}
.yc2_c00038{bottom:571.920000px;}
.yc0_c00038{bottom:594.825000px;}
.ybf_c00038{bottom:596.130000px;}
.ybe_c00038{bottom:597.180000px;}
.ybd_c00038{bottom:599.325000px;}
.yb9_c00038{bottom:609.405000px;}
.ybc_c00038{bottom:610.050000px;}
.ybb_c00038{bottom:610.470000px;}
.yb6_c00038{bottom:610.905000px;}
.yb8_c00038{bottom:611.130000px;}
.yb4_c00038{bottom:611.325000px;}
.yba_c00038{bottom:611.550000px;}
.yb7_c00038{bottom:611.970000px;}
.yb5_c00038{bottom:612.630000px;}
.yb2_c00038{bottom:624.405000px;}
.yb0_c00038{bottom:624.825000px;}
.yb3_c00038{bottom:625.470000px;}
.yad_c00038{bottom:626.130000px;}
.yac_c00038{bottom:626.550000px;}
.yaf_c00038{bottom:626.970000px;}
.yb1_c00038{bottom:627.195000px;}
.yae_c00038{bottom:628.050000px;}
.yab_c00038{bottom:629.970000px;}
.ya6_c00038{bottom:638.325000px;}
.ya7_c00038{bottom:639.405000px;}
.yaa_c00038{bottom:639.825000px;}
.ya9_c00038{bottom:640.470000px;}
.ya5_c00038{bottom:641.130000px;}
.ya3_c00038{bottom:641.325000px;}
.ya4_c00038{bottom:641.970000px;}
.ya8_c00038{bottom:642.195000px;}
.ya2_c00038{bottom:644.130000px;}
.ya0_c00038{bottom:653.325000px;}
.ya1_c00038{bottom:654.405000px;}
.y9e_c00038{bottom:655.470000px;}
.y9c_c00038{bottom:656.325000px;}
.y9f_c00038{bottom:656.550000px;}
.y9d_c00038{bottom:657.195000px;}
.y9b_c00038{bottom:658.905000px;}
.y96_c00038{bottom:668.325000px;}
.y98_c00038{bottom:669.405000px;}
.y95_c00038{bottom:670.245000px;}
.y9a_c00038{bottom:670.470000px;}
.y99_c00038{bottom:670.695000px;}
.y97_c00038{bottom:671.550000px;}
.y94_c00038{bottom:673.050000px;}
.y8f_c00038{bottom:683.325000px;}
.y90_c00038{bottom:684.405000px;}
.y92_c00038{bottom:685.470000px;}
.y91_c00038{bottom:685.695000px;}
.y8e_c00038{bottom:685.905000px;}
.y93_c00038{bottom:686.550000px;}
.y8d_c00038{bottom:688.905000px;}
.y8c_c00038{bottom:691.050000px;}
.y8b_c00038{bottom:699.405000px;}
.y87_c00038{bottom:699.825000px;}
.y88_c00038{bottom:700.050000px;}
.y8a_c00038{bottom:700.470000px;}
.y89_c00038{bottom:701.550000px;}
.y86_c00038{bottom:704.550000px;}
.y85_c00038{bottom:713.325000px;}
.y82_c00038{bottom:716.325000px;}
.y84_c00038{bottom:716.550000px;}
.y83_c00038{bottom:716.970000px;}
.y80_c00038{bottom:727.905000px;}
.y7e_c00038{bottom:728.325000px;}
.y81_c00038{bottom:729.195000px;}
.y7d_c00038{bottom:729.405000px;}
.y7c_c00038{bottom:729.630000px;}
.y7f_c00038{bottom:730.050000px;}
.y7a_c00038{bottom:730.470000px;}
.y7b_c00038{bottom:731.970000px;}
.y79_c00038{bottom:743.325000px;}
.y78_c00038{bottom:744.825000px;}
.y77_c00038{bottom:746.325000px;}
.y76_c00038{bottom:755.970000px;}
.y75_c00038{bottom:756.825000px;}
.y72_c00038{bottom:757.905000px;}
.y74_c00038{bottom:758.130000px;}
.y71_c00038{bottom:759.405000px;}
.y73_c00038{bottom:760.050000px;}
.y70_c00038{bottom:762.405000px;}
.y6a_c00038{bottom:770.970000px;}
.y6b_c00038{bottom:771.825000px;}
.y69_c00038{bottom:772.905000px;}
.y6e_c00038{bottom:773.130000px;}
.y6f_c00038{bottom:773.550000px;}
.y68_c00038{bottom:773.970000px;}
.y6d_c00038{bottom:774.195000px;}
.y66_c00038{bottom:774.825000px;}
.y6c_c00038{bottom:775.050000px;}
.y67_c00038{bottom:775.470000px;}
.y64_c00038{bottom:786.825000px;}
.y65_c00038{bottom:787.905000px;}
.y63_c00038{bottom:788.970000px;}
.y61_c00038{bottom:789.195000px;}
.y60_c00038{bottom:789.825000px;}
.y62_c00038{bottom:790.050000px;}
.y5f_c00038{bottom:793.050000px;}
.y5e_c00038{bottom:801.825000px;}
.y5c_c00038{bottom:805.050000px;}
.y5d_c00038{bottom:805.470000px;}
.y5b_c00038{bottom:808.050000px;}
.y57_c00038{bottom:816.825000px;}
.y59_c00038{bottom:817.905000px;}
.y56_c00038{bottom:818.325000px;}
.y58_c00038{bottom:818.970000px;}
.y5a_c00038{bottom:819.195000px;}
.y55_c00038{bottom:820.050000px;}
.y54_c00038{bottom:831.405000px;}
.y53_c00038{bottom:831.825000px;}
.y51_c00038{bottom:832.470000px;}
.y50_c00038{bottom:833.325000px;}
.y4f_c00038{bottom:833.550000px;}
.y52_c00038{bottom:834.195000px;}
.y4c_c00038{bottom:845.325000px;}
.y4e_c00038{bottom:846.405000px;}
.y4a_c00038{bottom:847.050000px;}
.y4d_c00038{bottom:847.695000px;}
.y49_c00038{bottom:847.905000px;}
.y4b_c00038{bottom:848.550000px;}
.y48_c00038{bottom:851.550000px;}
.y46_c00038{bottom:861.405000px;}
.y47_c00038{bottom:861.630000px;}
.y45_c00038{bottom:862.470000px;}
.y43_c00038{bottom:863.550000px;}
.y44_c00038{bottom:863.970000px;}
.y41_c00038{bottom:875.325000px;}
.y42_c00038{bottom:877.470000px;}
.y3f_c00038{bottom:878.325000px;}
.y40_c00038{bottom:879.195000px;}
.y3b_c00038{bottom:891.405000px;}
.y3c_c00038{bottom:892.050000px;}
.y3d_c00038{bottom:892.470000px;}
.y3e_c00038{bottom:893.550000px;}
.y3a_c00038{bottom:893.970000px;}
.y39_c00038{bottom:894.630000px;}
.y38_c00038{bottom:904.470000px;}
.y36_c00038{bottom:905.325000px;}
.y35_c00038{bottom:906.405000px;}
.y37_c00038{bottom:906.630000px;}
.y34_c00038{bottom:907.470000px;}
.y33_c00038{bottom:908.550000px;}
.y32_c00038{bottom:910.470000px;}
.y31_c00038{bottom:920.325000px;}
.y30_c00038{bottom:921.195000px;}
.y2d_c00038{bottom:921.405000px;}
.y2c_c00038{bottom:921.825000px;}
.y2e_c00038{bottom:922.470000px;}
.y2f_c00038{bottom:923.550000px;}
.y2b_c00038{bottom:924.630000px;}
.y29_c00038{bottom:943.245000px;}
.y2a_c00038{bottom:943.680000px;}
.y28_c00038{bottom:945.405000px;}
.y27_c00038{bottom:945.825000px;}
.y26_c00038{bottom:948.405000px;}
.y24_c00038{bottom:962.745000px;}
.y21_c00038{bottom:964.680000px;}
.y23_c00038{bottom:964.905000px;}
.y25_c00038{bottom:965.130000px;}
.y22_c00038{bottom:966.405000px;}
.y1e_c00038{bottom:983.745000px;}
.y1c_c00038{bottom:984.180000px;}
.y20_c00038{bottom:984.405000px;}
.y1d_c00038{bottom:984.630000px;}
.y1f_c00038{bottom:985.905000px;}
.y19_c00038{bottom:1003.245000px;}
.y18_c00038{bottom:1004.130000px;}
.y1b_c00038{bottom:1004.325000px;}
.y1a_c00038{bottom:1004.970000px;}
.y17_c00038{bottom:1005.405000px;}
.y16_c00038{bottom:1006.470000px;}
.y15_c00038{bottom:1006.905000px;}
.y13_c00038{bottom:1021.470000px;}
.yf_c00038{bottom:1022.745000px;}
.y10_c00038{bottom:1023.405000px;}
.y14_c00038{bottom:1023.825000px;}
.y11_c00038{bottom:1024.470000px;}
.y12_c00038{bottom:1024.905000px;}
.ye_c00038{bottom:1026.405000px;}
.yd_c00038{bottom:1039.905000px;}
.yc_c00038{bottom:1041.825000px;}
.y9_c00038{bottom:1042.245000px;}
.y8_c00038{bottom:1042.680000px;}
.yb_c00038{bottom:1043.325000px;}
.ya_c00038{bottom:1044.405000px;}
.y6_c00038{bottom:1061.745000px;}
.y4_c00038{bottom:1062.630000px;}
.y7_c00038{bottom:1063.470000px;}
.y3_c00038{bottom:1063.680000px;}
.y5_c00038{bottom:1063.905000px;}
.y2_c00038{bottom:1099.905000px;}
.y1_c00038{bottom:1102.050000px;}
.ha_c00038{height:4.206533px;}
.h9_c00038{height:16.752334px;}
.h4_c00038{height:23.025234px;}
.h1_c00038{height:25.091602px;}
.h6_c00038{height:31.364502px;}
.h2_c00038{height:35.571035px;}
.h7_c00038{height:39.777568px;}
.h5_c00038{height:43.910303px;}
.h3_c00038{height:48.116836px;}
.h8_c00038{height:52.323369px;}
.hb_c00038{height:56.456104px;}
.h0_c00038{height:1335.000000px;}
.w0_c00038{width:880.500000px;}
.x0_c00038{left:0.000000px;}
.x43_c00038{left:151.500000px;}
.x3_c00038{left:153.000000px;}
.xa7_c00038{left:154.080000px;}
.x8a_c00038{left:155.355000px;}
.x10f_c00038{left:159.000000px;}
.x103_c00038{left:161.580000px;}
.x4f_c00038{left:166.920000px;}
.x1d_c00038{left:168.000000px;}
.xb6_c00038{left:169.080000px;}
.x109_c00038{left:172.920000px;}
.x8b_c00038{left:174.000000px;}
.x4a_c00038{left:180.420000px;}
.x2a_c00038{left:181.500000px;}
.x50_c00038{left:183.000000px;}
.x8e_c00038{left:184.080000px;}
.x74_c00038{left:186.000000px;}
.xa8_c00038{left:188.355000px;}
.x96_c00038{left:190.500000px;}
.x11a_c00038{left:191.580000px;}
.x8c_c00038{left:195.000000px;}
.x2b_c00038{left:199.080000px;}
.xdd_c00038{left:201.000000px;}
.x115_c00038{left:202.500000px;}
.x1e_c00038{left:205.080000px;}
.x59_c00038{left:207.000000px;}
.x69_c00038{left:208.500000px;}
.x10a_c00038{left:210.420000px;}
.xa9_c00038{left:213.420000px;}
.x75_c00038{left:215.355000px;}
.x4b_c00038{left:217.080000px;}
.x4_c00038{left:219.000000px;}
.x2c_c00038{left:220.080000px;}
.x97_c00038{left:222.000000px;}
.x8d_c00038{left:225.420000px;}
.x112_c00038{left:226.500000px;}
.x9f_c00038{left:229.920000px;}
.xd1_c00038{left:231.420000px;}
.x7d_c00038{left:232.500000px;}
.xef_c00038{left:233.580000px;}
.xe5_c00038{left:235.500000px;}
.xfc_c00038{left:237.000000px;}
.x5_c00038{left:240.000000px;}
.x12_c00038{left:241.080000px;}
.xe3_c00038{left:243.420000px;}
.xc1_c00038{left:244.500000px;}
.x44_c00038{left:246.420000px;}
.x39_c00038{left:249.000000px;}
.x51_c00038{left:250.080000px;}
.x2d_c00038{left:252.000000px;}
.x1f_c00038{left:253.275000px;}
.xc2_c00038{left:254.580000px;}
.x76_c00038{left:256.500000px;}
.xf5_c00038{left:258.000000px;}
.x104_c00038{left:259.080000px;}
.x5a_c00038{left:262.080000px;}
.x85_c00038{left:263.580000px;}
.x8f_c00038{left:265.500000px;}
.x10b_c00038{left:266.580000px;}
.x6_c00038{left:268.920000px;}
.x2e_c00038{left:270.000000px;}
.xa0_c00038{left:271.500000px;}
.x6a_c00038{left:273.000000px;}
.x45_c00038{left:274.080000px;}
.x90_c00038{left:276.420000px;}
.x5b_c00038{left:277.500000px;}
.xe6_c00038{left:278.580000px;}
.x6d_c00038{left:282.645000px;}
.x20_c00038{left:285.000000px;}
.x13_c00038{left:287.580000px;}
.x7e_c00038{left:291.000000px;}
.x113_c00038{left:292.080000px;}
.x98_c00038{left:294.420000px;}
.xaa_c00038{left:295.920000px;}
.xd9_c00038{left:299.355000px;}
.xfd_c00038{left:301.920000px;}
.xa1_c00038{left:303.420000px;}
.x105_c00038{left:304.500000px;}
.x7_c00038{left:305.580000px;}
.x6b_c00038{left:307.080000px;}
.xda_c00038{left:309.420000px;}
.xf0_c00038{left:310.500000px;}
.x77_c00038{left:313.500000px;}
.x4c_c00038{left:315.420000px;}
.x3a_c00038{left:316.500000px;}
.xbb_c00038{left:319.920000px;}
.xae_c00038{left:321.000000px;}
.xcb_c00038{left:323.580000px;}
.x8_c00038{left:325.500000px;}
.xfe_c00038{left:327.420000px;}
.x21_c00038{left:328.500000px;}
.xd2_c00038{left:330.000000px;}
.x14_c00038{left:331.080000px;}
.xf8_c00038{left:333.420000px;}
.x2f_c00038{left:336.000000px;}
.x7f_c00038{left:337.920000px;}
.xc5_c00038{left:339.000000px;}
.xf1_c00038{left:340.920000px;}
.x114_c00038{left:342.420000px;}
.x5c_c00038{left:343.920000px;}
.xaf_c00038{left:345.000000px;}
.x116_c00038{left:346.500000px;}
.x64_c00038{left:347.580000px;}
.x3b_c00038{left:349.920000px;}
.x6e_c00038{left:351.000000px;}
.x86_c00038{left:352.500000px;}
.x80_c00038{left:354.000000px;}
.xb7_c00038{left:355.080000px;}
.x106_c00038{left:358.920000px;}
.x119_c00038{left:361.500000px;}
.x22_c00038{left:363.000000px;}
.x52_c00038{left:364.500000px;}
.xde_c00038{left:367.500000px;}
.xd3_c00038{left:369.000000px;}
.x30_c00038{left:370.500000px;}
.xe7_c00038{left:373.080000px;}
.x91_c00038{left:376.920000px;}
.x6c_c00038{left:379.500000px;}
.x4d_c00038{left:382.080000px;}
.xcc_c00038{left:385.500000px;}
.x15_c00038{left:386.580000px;}
.x31_c00038{left:388.920000px;}
.x78_c00038{left:390.000000px;}
.x99_c00038{left:391.920000px;}
.xd4_c00038{left:393.420000px;}
.x3c_c00038{left:394.500000px;}
.x1_c00038{left:396.000000px;}
.x46_c00038{left:397.500000px;}
.x9_c00038{left:399.000000px;}
.x65_c00038{left:400.500000px;}
.x16_c00038{left:402.420000px;}
.xc3_c00038{left:406.500000px;}
.x5d_c00038{left:411.000000px;}
.xff_c00038{left:412.500000px;}
.xb0_c00038{left:414.420000px;}
.xf6_c00038{left:417.000000px;}
.x6f_c00038{left:418.920000px;}
.xb8_c00038{left:421.500000px;}
.x53_c00038{left:423.000000px;}
.xa_c00038{left:424.500000px;}
.xf2_c00038{left:425.580000px;}
.x100_c00038{left:427.500000px;}
.x9a_c00038{left:430.920000px;}
.x3d_c00038{left:432.000000px;}
.x70_c00038{left:435.000000px;}
.xc4_c00038{left:436.920000px;}
.xd5_c00038{left:439.920000px;}
.x32_c00038{left:442.080000px;}
.xa2_c00038{left:444.000000px;}
.x81_c00038{left:445.920000px;}
.xf7_c00038{left:448.500000px;}
.x23_c00038{left:449.580000px;}
.x4e_c00038{left:453.000000px;}
.x47_c00038{left:455.580000px;}
.x79_c00038{left:457.500000px;}
.xbc_c00038{left:459.000000px;}
.xe8_c00038{left:460.500000px;}
.x66_c00038{left:462.645000px;}
.xdf_c00038{left:465.000000px;}
.x17_c00038{left:467.775000px;}
.xcd_c00038{left:469.920000px;}
.xb_c00038{left:471.000000px;}
.x33_c00038{left:472.500000px;}
.x5e_c00038{left:474.000000px;}
.x92_c00038{left:475.500000px;}
.xbd_c00038{left:478.500000px;}
.x82_c00038{left:483.000000px;}
.x9b_c00038{left:484.500000px;}
.x5f_c00038{left:486.000000px;}
.x117_c00038{left:489.000000px;}
.xc_c00038{left:490.500000px;}
.xe9_c00038{left:491.580000px;}
.x87_c00038{left:492.645000px;}
.xb1_c00038{left:493.920000px;}
.x54_c00038{left:495.000000px;}
.xf3_c00038{left:496.500000px;}
.x71_c00038{left:498.000000px;}
.xc6_c00038{left:499.500000px;}
.x48_c00038{left:501.420000px;}
.x10c_c00038{left:504.000000px;}
.x3e_c00038{left:505.500000px;}
.x24_c00038{left:507.000000px;}
.x18_c00038{left:508.500000px;}
.x7a_c00038{left:510.000000px;}
.x9c_c00038{left:512.580000px;}
.x34_c00038{left:514.500000px;}
.x83_c00038{left:517.080000px;}
.x60_c00038{left:519.000000px;}
.xb2_c00038{left:520.080000px;}
.xea_c00038{left:522.420000px;}
.xab_c00038{left:524.580000px;}
.x25_c00038{left:526.080000px;}
.x110_c00038{left:527.580000px;}
.x49_c00038{left:529.920000px;}
.xd6_c00038{left:531.000000px;}
.xe0_c00038{left:532.080000px;}
.xa3_c00038{left:533.580000px;}
.xbe_c00038{left:538.080000px;}
.x72_c00038{left:540.000000px;}
.x19_c00038{left:541.080000px;}
.xc7_c00038{left:543.000000px;}
.x7b_c00038{left:544.500000px;}
.x35_c00038{left:546.420000px;}
.x26_c00038{left:547.500000px;}
.x61_c00038{left:549.420000px;}
.xf9_c00038{left:550.500000px;}
.xe1_c00038{left:552.420000px;}
.x3f_c00038{left:553.500000px;}
.xbf_c00038{left:555.000000px;}
.xf4_c00038{left:556.080000px;}
.x101_c00038{left:559.920000px;}
.x10d_c00038{left:561.000000px;}
.xe4_c00038{left:562.500000px;}
.xd_c00038{left:564.000000px;}
.x93_c00038{left:567.000000px;}
.xfa_c00038{left:568.500000px;}
.x36_c00038{left:570.000000px;}
.x1a_c00038{left:572.580000px;}
.x7c_c00038{left:573.855000px;}
.xc8_c00038{left:575.580000px;}
.x88_c00038{left:577.500000px;}
.xa4_c00038{left:579.000000px;}
.x84_c00038{left:580.500000px;}
.xeb_c00038{left:582.000000px;}
.xd7_c00038{left:586.500000px;}
.x67_c00038{left:590.145000px;}
.xac_c00038{left:592.500000px;}
.xb9_c00038{left:595.500000px;}
.x37_c00038{left:596.580000px;}
.x62_c00038{left:598.080000px;}
.x9d_c00038{left:599.580000px;}
.x1b_c00038{left:601.275000px;}
.xce_c00038{left:609.000000px;}
.xc9_c00038{left:610.500000px;}
.x40_c00038{left:611.580000px;}
.xe_c00038{left:614.580000px;}
.x27_c00038{left:618.000000px;}
.x55_c00038{left:619.920000px;}
.xdb_c00038{left:622.920000px;}
.x63_c00038{left:625.920000px;}
.xec_c00038{left:627.420000px;}
.x41_c00038{left:631.080000px;}
.x1c_c00038{left:634.275000px;}
.x28_c00038{left:637.500000px;}
.x56_c00038{left:639.000000px;}
.x94_c00038{left:640.080000px;}
.x107_c00038{left:643.500000px;}
.xf_c00038{left:645.000000px;}
.xb3_c00038{left:648.420000px;}
.x118_c00038{left:649.500000px;}
.xed_c00038{left:650.580000px;}
.xba_c00038{left:652.500000px;}
.x57_c00038{left:654.000000px;}
.xca_c00038{left:655.080000px;}
.x89_c00038{left:660.000000px;}
.xad_c00038{left:661.500000px;}
.x29_c00038{left:663.000000px;}
.xb4_c00038{left:664.500000px;}
.x38_c00038{left:666.420000px;}
.xee_c00038{left:667.920000px;}
.xcf_c00038{left:669.000000px;}
.x68_c00038{left:672.000000px;}
.x95_c00038{left:676.500000px;}
.xc0_c00038{left:679.500000px;}
.xfb_c00038{left:681.000000px;}
.xa5_c00038{left:682.500000px;}
.x102_c00038{left:684.000000px;}
.x10e_c00038{left:685.500000px;}
.x9e_c00038{left:687.000000px;}
.x10_c00038{left:688.500000px;}
.xe2_c00038{left:690.000000px;}
.x108_c00038{left:691.500000px;}
.xa6_c00038{left:694.500000px;}
.xdc_c00038{left:696.000000px;}
.x73_c00038{left:697.920000px;}
.xb5_c00038{left:699.000000px;}
.x111_c00038{left:700.080000px;}
.x42_c00038{left:703.080000px;}
.xd8_c00038{left:705.420000px;}
.x11_c00038{left:706.920000px;}
.xd0_c00038{left:709.500000px;}
.x58_c00038{left:717.000000px;}
.x2_c00038{left:719.580000px;}
@media print{
.v1_c00038{vertical-align:-10.666667pt;}
.v0_c00038{vertical-align:0.000000pt;}
.ls0_c00038{letter-spacing:0.000000pt;}
.ws0_c00038{word-spacing:-15.012693pt;}
.ws1_c00038{word-spacing:-7.187274pt;}
.ws2_c00038{word-spacing:-5.748590pt;}
.ws3_c00038{word-spacing:0.000000pt;}
._0_c00038{width:5.797930pt;}
.fs9_c00038{font-size:3.040000pt;}
.fs8_c00038{font-size:12.106667pt;}
.fs3_c00038{font-size:16.640000pt;}
.fs0_c00038{font-size:18.133333pt;}
.fs5_c00038{font-size:22.666667pt;}
.fs1_c00038{font-size:25.706667pt;}
.fs6_c00038{font-size:28.746667pt;}
.fs4_c00038{font-size:31.733333pt;}
.fs2_c00038{font-size:34.773333pt;}
.fs7_c00038{font-size:37.813333pt;}
.fsa_c00038{font-size:40.800000pt;}
.y0_c00038{bottom:0.000000pt;}
.y13c_c00038{bottom:226.440000pt;}
.y13b_c00038{bottom:226.826667pt;}
.y13a_c00038{bottom:229.693333pt;}
.y139_c00038{bottom:234.066667pt;}
.y137_c00038{bottom:243.773333pt;}
.y136_c00038{bottom:244.560000pt;}
.y135_c00038{bottom:245.693333pt;}
.y133_c00038{bottom:245.866667pt;}
.y138_c00038{bottom:246.640000pt;}
.y134_c00038{bottom:247.026667pt;}
.y132_c00038{bottom:261.106667pt;}
.y130_c00038{bottom:261.893333pt;}
.y12e_c00038{bottom:262.440000pt;}
.y12f_c00038{bottom:263.026667pt;}
.y131_c00038{bottom:263.973333pt;}
.y12d_c00038{bottom:265.306667pt;}
.y12b_c00038{bottom:278.066667pt;}
.y12a_c00038{bottom:278.440000pt;}
.y129_c00038{bottom:279.400000pt;}
.y127_c00038{bottom:279.973333pt;}
.y128_c00038{bottom:280.360000pt;}
.y12c_c00038{bottom:280.560000pt;}
.y125_c00038{bottom:281.493333pt;}
.y126_c00038{bottom:281.693333pt;}
.y121_c00038{bottom:294.640000pt;}
.y120_c00038{bottom:295.026667pt;}
.y123_c00038{bottom:295.400000pt;}
.y122_c00038{bottom:295.773333pt;}
.y11c_c00038{bottom:296.160000pt;}
.y11e_c00038{bottom:296.560000pt;}
.y11f_c00038{bottom:297.306667pt;}
.y11d_c00038{bottom:297.693333pt;}
.y124_c00038{bottom:299.026667pt;}
.y11b_c00038{bottom:300.360000pt;}
.y11a_c00038{bottom:301.693333pt;}
.y119_c00038{bottom:303.226667pt;}
.y118_c00038{bottom:304.360000pt;}
.y116_c00038{bottom:313.106667pt;}
.y115_c00038{bottom:313.893333pt;}
.y117_c00038{bottom:314.440000pt;}
.y114_c00038{bottom:315.026667pt;}
.y112_c00038{bottom:315.400000pt;}
.y113_c00038{bottom:316.360000pt;}
.y111_c00038{bottom:320.360000pt;}
.y10f_c00038{bottom:329.306667pt;}
.y10d_c00038{bottom:330.440000pt;}
.y10e_c00038{bottom:331.226667pt;}
.y10c_c00038{bottom:332.360000pt;}
.y110_c00038{bottom:332.560000pt;}
.y10b_c00038{bottom:333.693333pt;}
.y10a_c00038{bottom:336.360000pt;}
.y109_c00038{bottom:339.226667pt;}
.y107_c00038{bottom:347.773333pt;}
.y105_c00038{bottom:348.733333pt;}
.y104_c00038{bottom:349.693333pt;}
.y103_c00038{bottom:349.893333pt;}
.y102_c00038{bottom:350.440000pt;}
.y106_c00038{bottom:350.640000pt;}
.y108_c00038{bottom:351.026667pt;}
.y101_c00038{bottom:352.733333pt;}
.yff_c00038{bottom:364.360000pt;}
.yfd_c00038{bottom:364.733333pt;}
.y100_c00038{bottom:365.106667pt;}
.yfc_c00038{bottom:367.026667pt;}
.yfe_c00038{bottom:367.226667pt;}
.yfb_c00038{bottom:367.973333pt;}
.yfa_c00038{bottom:368.360000pt;}
.yf9_c00038{bottom:368.733333pt;}
.yf8_c00038{bottom:372.733333pt;}
.yf4_c00038{bottom:381.693333pt;}
.yf6_c00038{bottom:382.440000pt;}
.yf7_c00038{bottom:383.400000pt;}
.yf5_c00038{bottom:384.360000pt;}
.yf3_c00038{bottom:386.066667pt;}
.yf2_c00038{bottom:387.400000pt;}
.yf1_c00038{bottom:399.026667pt;}
.yef_c00038{bottom:399.773333pt;}
.yf0_c00038{bottom:400.733333pt;}
.yed_c00038{bottom:401.106667pt;}
.yee_c00038{bottom:401.693333pt;}
.yec_c00038{bottom:401.893333pt;}
.yea_c00038{bottom:402.440000pt;}
.yeb_c00038{bottom:403.026667pt;}
.ye9_c00038{bottom:406.066667pt;}
.ye7_c00038{bottom:418.440000pt;}
.ye8_c00038{bottom:419.226667pt;}
.ye5_c00038{bottom:420.360000pt;}
.ye6_c00038{bottom:421.306667pt;}
.ye4_c00038{bottom:424.360000pt;}
.ydf_c00038{bottom:435.026667pt;}
.ye3_c00038{bottom:435.773333pt;}
.ye1_c00038{bottom:436.560000pt;}
.ye0_c00038{bottom:437.693333pt;}
.ye2_c00038{bottom:438.640000pt;}
.yde_c00038{bottom:439.026667pt;}
.ydd_c00038{bottom:440.360000pt;}
.yda_c00038{bottom:451.026667pt;}
.ydc_c00038{bottom:451.973333pt;}
.yd7_c00038{bottom:453.106667pt;}
.yd9_c00038{bottom:453.893333pt;}
.ydb_c00038{bottom:454.640000pt;}
.yd8_c00038{bottom:455.026667pt;}
.yd6_c00038{bottom:459.400000pt;}
.yd3_c00038{bottom:470.440000pt;}
.yd4_c00038{bottom:471.400000pt;}
.yd1_c00038{bottom:471.773333pt;}
.yd0_c00038{bottom:472.160000pt;}
.yd2_c00038{bottom:472.360000pt;}
.yd5_c00038{bottom:472.560000pt;}
.yce_c00038{bottom:487.400000pt;}
.ycf_c00038{bottom:487.773333pt;}
.ycc_c00038{bottom:489.106667pt;}
.ycb_c00038{bottom:489.306667pt;}
.ycd_c00038{bottom:489.693333pt;}
.yca_c00038{bottom:490.640000pt;}
.yc9_c00038{bottom:491.026667pt;}
.yc8_c00038{bottom:491.400000pt;}
.yc7_c00038{bottom:494.066667pt;}
.yc4_c00038{bottom:506.440000pt;}
.yc6_c00038{bottom:507.026667pt;}
.yc5_c00038{bottom:507.226667pt;}
.yc1_c00038{bottom:508.160000pt;}
.yc3_c00038{bottom:508.360000pt;}
.yc2_c00038{bottom:508.373333pt;}
.yc0_c00038{bottom:528.733333pt;}
.ybf_c00038{bottom:529.893333pt;}
.ybe_c00038{bottom:530.826667pt;}
.ybd_c00038{bottom:532.733333pt;}
.yb9_c00038{bottom:541.693333pt;}
.ybc_c00038{bottom:542.266667pt;}
.ybb_c00038{bottom:542.640000pt;}
.yb6_c00038{bottom:543.026667pt;}
.yb8_c00038{bottom:543.226667pt;}
.yb4_c00038{bottom:543.400000pt;}
.yba_c00038{bottom:543.600000pt;}
.yb7_c00038{bottom:543.973333pt;}
.yb5_c00038{bottom:544.560000pt;}
.yb2_c00038{bottom:555.026667pt;}
.yb0_c00038{bottom:555.400000pt;}
.yb3_c00038{bottom:555.973333pt;}
.yad_c00038{bottom:556.560000pt;}
.yac_c00038{bottom:556.933333pt;}
.yaf_c00038{bottom:557.306667pt;}
.yb1_c00038{bottom:557.506667pt;}
.yae_c00038{bottom:558.266667pt;}
.yab_c00038{bottom:559.973333pt;}
.ya6_c00038{bottom:567.400000pt;}
.ya7_c00038{bottom:568.360000pt;}
.yaa_c00038{bottom:568.733333pt;}
.ya9_c00038{bottom:569.306667pt;}
.ya5_c00038{bottom:569.893333pt;}
.ya3_c00038{bottom:570.066667pt;}
.ya4_c00038{bottom:570.640000pt;}
.ya8_c00038{bottom:570.840000pt;}
.ya2_c00038{bottom:572.560000pt;}
.ya0_c00038{bottom:580.733333pt;}
.ya1_c00038{bottom:581.693333pt;}
.y9e_c00038{bottom:582.640000pt;}
.y9c_c00038{bottom:583.400000pt;}
.y9f_c00038{bottom:583.600000pt;}
.y9d_c00038{bottom:584.173333pt;}
.y9b_c00038{bottom:585.693333pt;}
.y96_c00038{bottom:594.066667pt;}
.y98_c00038{bottom:595.026667pt;}
.y95_c00038{bottom:595.773333pt;}
.y9a_c00038{bottom:595.973333pt;}
.y99_c00038{bottom:596.173333pt;}
.y97_c00038{bottom:596.933333pt;}
.y94_c00038{bottom:598.266667pt;}
.y8f_c00038{bottom:607.400000pt;}
.y90_c00038{bottom:608.360000pt;}
.y92_c00038{bottom:609.306667pt;}
.y91_c00038{bottom:609.506667pt;}
.y8e_c00038{bottom:609.693333pt;}
.y93_c00038{bottom:610.266667pt;}
.y8d_c00038{bottom:612.360000pt;}
.y8c_c00038{bottom:614.266667pt;}
.y8b_c00038{bottom:621.693333pt;}
.y87_c00038{bottom:622.066667pt;}
.y88_c00038{bottom:622.266667pt;}
.y8a_c00038{bottom:622.640000pt;}
.y89_c00038{bottom:623.600000pt;}
.y86_c00038{bottom:626.266667pt;}
.y85_c00038{bottom:634.066667pt;}
.y82_c00038{bottom:636.733333pt;}
.y84_c00038{bottom:636.933333pt;}
.y83_c00038{bottom:637.306667pt;}
.y80_c00038{bottom:647.026667pt;}
.y7e_c00038{bottom:647.400000pt;}
.y81_c00038{bottom:648.173333pt;}
.y7d_c00038{bottom:648.360000pt;}
.y7c_c00038{bottom:648.560000pt;}
.y7f_c00038{bottom:648.933333pt;}
.y7a_c00038{bottom:649.306667pt;}
.y7b_c00038{bottom:650.640000pt;}
.y79_c00038{bottom:660.733333pt;}
.y78_c00038{bottom:662.066667pt;}
.y77_c00038{bottom:663.400000pt;}
.y76_c00038{bottom:671.973333pt;}
.y75_c00038{bottom:672.733333pt;}
.y72_c00038{bottom:673.693333pt;}
.y74_c00038{bottom:673.893333pt;}
.y71_c00038{bottom:675.026667pt;}
.y73_c00038{bottom:675.600000pt;}
.y70_c00038{bottom:677.693333pt;}
.y6a_c00038{bottom:685.306667pt;}
.y6b_c00038{bottom:686.066667pt;}
.y69_c00038{bottom:687.026667pt;}
.y6e_c00038{bottom:687.226667pt;}
.y6f_c00038{bottom:687.600000pt;}
.y68_c00038{bottom:687.973333pt;}
.y6d_c00038{bottom:688.173333pt;}
.y66_c00038{bottom:688.733333pt;}
.y6c_c00038{bottom:688.933333pt;}
.y67_c00038{bottom:689.306667pt;}
.y64_c00038{bottom:699.400000pt;}
.y65_c00038{bottom:700.360000pt;}
.y63_c00038{bottom:701.306667pt;}
.y61_c00038{bottom:701.506667pt;}
.y60_c00038{bottom:702.066667pt;}
.y62_c00038{bottom:702.266667pt;}
.y5f_c00038{bottom:704.933333pt;}
.y5e_c00038{bottom:712.733333pt;}
.y5c_c00038{bottom:715.600000pt;}
.y5d_c00038{bottom:715.973333pt;}
.y5b_c00038{bottom:718.266667pt;}
.y57_c00038{bottom:726.066667pt;}
.y59_c00038{bottom:727.026667pt;}
.y56_c00038{bottom:727.400000pt;}
.y58_c00038{bottom:727.973333pt;}
.y5a_c00038{bottom:728.173333pt;}
.y55_c00038{bottom:728.933333pt;}
.y54_c00038{bottom:739.026667pt;}
.y53_c00038{bottom:739.400000pt;}
.y51_c00038{bottom:739.973333pt;}
.y50_c00038{bottom:740.733333pt;}
.y4f_c00038{bottom:740.933333pt;}
.y52_c00038{bottom:741.506667pt;}
.y4c_c00038{bottom:751.400000pt;}
.y4e_c00038{bottom:752.360000pt;}
.y4a_c00038{bottom:752.933333pt;}
.y4d_c00038{bottom:753.506667pt;}
.y49_c00038{bottom:753.693333pt;}
.y4b_c00038{bottom:754.266667pt;}
.y48_c00038{bottom:756.933333pt;}
.y46_c00038{bottom:765.693333pt;}
.y47_c00038{bottom:765.893333pt;}
.y45_c00038{bottom:766.640000pt;}
.y43_c00038{bottom:767.600000pt;}
.y44_c00038{bottom:767.973333pt;}
.y41_c00038{bottom:778.066667pt;}
.y42_c00038{bottom:779.973333pt;}
.y3f_c00038{bottom:780.733333pt;}
.y40_c00038{bottom:781.506667pt;}
.y3b_c00038{bottom:792.360000pt;}
.y3c_c00038{bottom:792.933333pt;}
.y3d_c00038{bottom:793.306667pt;}
.y3e_c00038{bottom:794.266667pt;}
.y3a_c00038{bottom:794.640000pt;}
.y39_c00038{bottom:795.226667pt;}
.y38_c00038{bottom:803.973333pt;}
.y36_c00038{bottom:804.733333pt;}
.y35_c00038{bottom:805.693333pt;}
.y37_c00038{bottom:805.893333pt;}
.y34_c00038{bottom:806.640000pt;}
.y33_c00038{bottom:807.600000pt;}
.y32_c00038{bottom:809.306667pt;}
.y31_c00038{bottom:818.066667pt;}
.y30_c00038{bottom:818.840000pt;}
.y2d_c00038{bottom:819.026667pt;}
.y2c_c00038{bottom:819.400000pt;}
.y2e_c00038{bottom:819.973333pt;}
.y2f_c00038{bottom:820.933333pt;}
.y2b_c00038{bottom:821.893333pt;}
.y29_c00038{bottom:838.440000pt;}
.y2a_c00038{bottom:838.826667pt;}
.y28_c00038{bottom:840.360000pt;}
.y27_c00038{bottom:840.733333pt;}
.y26_c00038{bottom:843.026667pt;}
.y24_c00038{bottom:855.773333pt;}
.y21_c00038{bottom:857.493333pt;}
.y23_c00038{bottom:857.693333pt;}
.y25_c00038{bottom:857.893333pt;}
.y22_c00038{bottom:859.026667pt;}
.y1e_c00038{bottom:874.440000pt;}
.y1c_c00038{bottom:874.826667pt;}
.y20_c00038{bottom:875.026667pt;}
.y1d_c00038{bottom:875.226667pt;}
.y1f_c00038{bottom:876.360000pt;}
.y19_c00038{bottom:891.773333pt;}
.y18_c00038{bottom:892.560000pt;}
.y1b_c00038{bottom:892.733333pt;}
.y1a_c00038{bottom:893.306667pt;}
.y17_c00038{bottom:893.693333pt;}
.y16_c00038{bottom:894.640000pt;}
.y15_c00038{bottom:895.026667pt;}
.y13_c00038{bottom:907.973333pt;}
.yf_c00038{bottom:909.106667pt;}
.y10_c00038{bottom:909.693333pt;}
.y14_c00038{bottom:910.066667pt;}
.y11_c00038{bottom:910.640000pt;}
.y12_c00038{bottom:911.026667pt;}
.ye_c00038{bottom:912.360000pt;}
.yd_c00038{bottom:924.360000pt;}
.yc_c00038{bottom:926.066667pt;}
.y9_c00038{bottom:926.440000pt;}
.y8_c00038{bottom:926.826667pt;}
.yb_c00038{bottom:927.400000pt;}
.ya_c00038{bottom:928.360000pt;}
.y6_c00038{bottom:943.773333pt;}
.y4_c00038{bottom:944.560000pt;}
.y7_c00038{bottom:945.306667pt;}
.y3_c00038{bottom:945.493333pt;}
.y5_c00038{bottom:945.693333pt;}
.y2_c00038{bottom:977.693333pt;}
.y1_c00038{bottom:979.600000pt;}
.ha_c00038{height:3.739141pt;}
.h9_c00038{height:14.890964pt;}
.h4_c00038{height:20.466875pt;}
.h1_c00038{height:22.303646pt;}
.h6_c00038{height:27.879557pt;}
.h2_c00038{height:31.618698pt;}
.h7_c00038{height:35.357839pt;}
.h5_c00038{height:39.031380pt;}
.h3_c00038{height:42.770521pt;}
.h8_c00038{height:46.509661pt;}
.hb_c00038{height:50.183203pt;}
.h0_c00038{height:1186.666667pt;}
.w0_c00038{width:782.666667pt;}
.x0_c00038{left:0.000000pt;}
.x43_c00038{left:134.666667pt;}
.x3_c00038{left:136.000000pt;}
.xa7_c00038{left:136.960000pt;}
.x8a_c00038{left:138.093333pt;}
.x10f_c00038{left:141.333333pt;}
.x103_c00038{left:143.626667pt;}
.x4f_c00038{left:148.373333pt;}
.x1d_c00038{left:149.333333pt;}
.xb6_c00038{left:150.293333pt;}
.x109_c00038{left:153.706667pt;}
.x8b_c00038{left:154.666667pt;}
.x4a_c00038{left:160.373333pt;}
.x2a_c00038{left:161.333333pt;}
.x50_c00038{left:162.666667pt;}
.x8e_c00038{left:163.626667pt;}
.x74_c00038{left:165.333333pt;}
.xa8_c00038{left:167.426667pt;}
.x96_c00038{left:169.333333pt;}
.x11a_c00038{left:170.293333pt;}
.x8c_c00038{left:173.333333pt;}
.x2b_c00038{left:176.960000pt;}
.xdd_c00038{left:178.666667pt;}
.x115_c00038{left:180.000000pt;}
.x1e_c00038{left:182.293333pt;}
.x59_c00038{left:184.000000pt;}
.x69_c00038{left:185.333333pt;}
.x10a_c00038{left:187.040000pt;}
.xa9_c00038{left:189.706667pt;}
.x75_c00038{left:191.426667pt;}
.x4b_c00038{left:192.960000pt;}
.x4_c00038{left:194.666667pt;}
.x2c_c00038{left:195.626667pt;}
.x97_c00038{left:197.333333pt;}
.x8d_c00038{left:200.373333pt;}
.x112_c00038{left:201.333333pt;}
.x9f_c00038{left:204.373333pt;}
.xd1_c00038{left:205.706667pt;}
.x7d_c00038{left:206.666667pt;}
.xef_c00038{left:207.626667pt;}
.xe5_c00038{left:209.333333pt;}
.xfc_c00038{left:210.666667pt;}
.x5_c00038{left:213.333333pt;}
.x12_c00038{left:214.293333pt;}
.xe3_c00038{left:216.373333pt;}
.xc1_c00038{left:217.333333pt;}
.x44_c00038{left:219.040000pt;}
.x39_c00038{left:221.333333pt;}
.x51_c00038{left:222.293333pt;}
.x2d_c00038{left:224.000000pt;}
.x1f_c00038{left:225.133333pt;}
.xc2_c00038{left:226.293333pt;}
.x76_c00038{left:228.000000pt;}
.xf5_c00038{left:229.333333pt;}
.x104_c00038{left:230.293333pt;}
.x5a_c00038{left:232.960000pt;}
.x85_c00038{left:234.293333pt;}
.x8f_c00038{left:236.000000pt;}
.x10b_c00038{left:236.960000pt;}
.x6_c00038{left:239.040000pt;}
.x2e_c00038{left:240.000000pt;}
.xa0_c00038{left:241.333333pt;}
.x6a_c00038{left:242.666667pt;}
.x45_c00038{left:243.626667pt;}
.x90_c00038{left:245.706667pt;}
.x5b_c00038{left:246.666667pt;}
.xe6_c00038{left:247.626667pt;}
.x6d_c00038{left:251.240000pt;}
.x20_c00038{left:253.333333pt;}
.x13_c00038{left:255.626667pt;}
.x7e_c00038{left:258.666667pt;}
.x113_c00038{left:259.626667pt;}
.x98_c00038{left:261.706667pt;}
.xaa_c00038{left:263.040000pt;}
.xd9_c00038{left:266.093333pt;}
.xfd_c00038{left:268.373333pt;}
.xa1_c00038{left:269.706667pt;}
.x105_c00038{left:270.666667pt;}
.x7_c00038{left:271.626667pt;}
.x6b_c00038{left:272.960000pt;}
.xda_c00038{left:275.040000pt;}
.xf0_c00038{left:276.000000pt;}
.x77_c00038{left:278.666667pt;}
.x4c_c00038{left:280.373333pt;}
.x3a_c00038{left:281.333333pt;}
.xbb_c00038{left:284.373333pt;}
.xae_c00038{left:285.333333pt;}
.xcb_c00038{left:287.626667pt;}
.x8_c00038{left:289.333333pt;}
.xfe_c00038{left:291.040000pt;}
.x21_c00038{left:292.000000pt;}
.xd2_c00038{left:293.333333pt;}
.x14_c00038{left:294.293333pt;}
.xf8_c00038{left:296.373333pt;}
.x2f_c00038{left:298.666667pt;}
.x7f_c00038{left:300.373333pt;}
.xc5_c00038{left:301.333333pt;}
.xf1_c00038{left:303.040000pt;}
.x114_c00038{left:304.373333pt;}
.x5c_c00038{left:305.706667pt;}
.xaf_c00038{left:306.666667pt;}
.x116_c00038{left:308.000000pt;}
.x64_c00038{left:308.960000pt;}
.x3b_c00038{left:311.040000pt;}
.x6e_c00038{left:312.000000pt;}
.x86_c00038{left:313.333333pt;}
.x80_c00038{left:314.666667pt;}
.xb7_c00038{left:315.626667pt;}
.x106_c00038{left:319.040000pt;}
.x119_c00038{left:321.333333pt;}
.x22_c00038{left:322.666667pt;}
.x52_c00038{left:324.000000pt;}
.xde_c00038{left:326.666667pt;}
.xd3_c00038{left:328.000000pt;}
.x30_c00038{left:329.333333pt;}
.xe7_c00038{left:331.626667pt;}
.x91_c00038{left:335.040000pt;}
.x6c_c00038{left:337.333333pt;}
.x4d_c00038{left:339.626667pt;}
.xcc_c00038{left:342.666667pt;}
.x15_c00038{left:343.626667pt;}
.x31_c00038{left:345.706667pt;}
.x78_c00038{left:346.666667pt;}
.x99_c00038{left:348.373333pt;}
.xd4_c00038{left:349.706667pt;}
.x3c_c00038{left:350.666667pt;}
.x1_c00038{left:352.000000pt;}
.x46_c00038{left:353.333333pt;}
.x9_c00038{left:354.666667pt;}
.x65_c00038{left:356.000000pt;}
.x16_c00038{left:357.706667pt;}
.xc3_c00038{left:361.333333pt;}
.x5d_c00038{left:365.333333pt;}
.xff_c00038{left:366.666667pt;}
.xb0_c00038{left:368.373333pt;}
.xf6_c00038{left:370.666667pt;}
.x6f_c00038{left:372.373333pt;}
.xb8_c00038{left:374.666667pt;}
.x53_c00038{left:376.000000pt;}
.xa_c00038{left:377.333333pt;}
.xf2_c00038{left:378.293333pt;}
.x100_c00038{left:380.000000pt;}
.x9a_c00038{left:383.040000pt;}
.x3d_c00038{left:384.000000pt;}
.x70_c00038{left:386.666667pt;}
.xc4_c00038{left:388.373333pt;}
.xd5_c00038{left:391.040000pt;}
.x32_c00038{left:392.960000pt;}
.xa2_c00038{left:394.666667pt;}
.x81_c00038{left:396.373333pt;}
.xf7_c00038{left:398.666667pt;}
.x23_c00038{left:399.626667pt;}
.x4e_c00038{left:402.666667pt;}
.x47_c00038{left:404.960000pt;}
.x79_c00038{left:406.666667pt;}
.xbc_c00038{left:408.000000pt;}
.xe8_c00038{left:409.333333pt;}
.x66_c00038{left:411.240000pt;}
.xdf_c00038{left:413.333333pt;}
.x17_c00038{left:415.800000pt;}
.xcd_c00038{left:417.706667pt;}
.xb_c00038{left:418.666667pt;}
.x33_c00038{left:420.000000pt;}
.x5e_c00038{left:421.333333pt;}
.x92_c00038{left:422.666667pt;}
.xbd_c00038{left:425.333333pt;}
.x82_c00038{left:429.333333pt;}
.x9b_c00038{left:430.666667pt;}
.x5f_c00038{left:432.000000pt;}
.x117_c00038{left:434.666667pt;}
.xc_c00038{left:436.000000pt;}
.xe9_c00038{left:436.960000pt;}
.x87_c00038{left:437.906667pt;}
.xb1_c00038{left:439.040000pt;}
.x54_c00038{left:440.000000pt;}
.xf3_c00038{left:441.333333pt;}
.x71_c00038{left:442.666667pt;}
.xc6_c00038{left:444.000000pt;}
.x48_c00038{left:445.706667pt;}
.x10c_c00038{left:448.000000pt;}
.x3e_c00038{left:449.333333pt;}
.x24_c00038{left:450.666667pt;}
.x18_c00038{left:452.000000pt;}
.x7a_c00038{left:453.333333pt;}
.x9c_c00038{left:455.626667pt;}
.x34_c00038{left:457.333333pt;}
.x83_c00038{left:459.626667pt;}
.x60_c00038{left:461.333333pt;}
.xb2_c00038{left:462.293333pt;}
.xea_c00038{left:464.373333pt;}
.xab_c00038{left:466.293333pt;}
.x25_c00038{left:467.626667pt;}
.x110_c00038{left:468.960000pt;}
.x49_c00038{left:471.040000pt;}
.xd6_c00038{left:472.000000pt;}
.xe0_c00038{left:472.960000pt;}
.xa3_c00038{left:474.293333pt;}
.xbe_c00038{left:478.293333pt;}
.x72_c00038{left:480.000000pt;}
.x19_c00038{left:480.960000pt;}
.xc7_c00038{left:482.666667pt;}
.x7b_c00038{left:484.000000pt;}
.x35_c00038{left:485.706667pt;}
.x26_c00038{left:486.666667pt;}
.x61_c00038{left:488.373333pt;}
.xf9_c00038{left:489.333333pt;}
.xe1_c00038{left:491.040000pt;}
.x3f_c00038{left:492.000000pt;}
.xbf_c00038{left:493.333333pt;}
.xf4_c00038{left:494.293333pt;}
.x101_c00038{left:497.706667pt;}
.x10d_c00038{left:498.666667pt;}
.xe4_c00038{left:500.000000pt;}
.xd_c00038{left:501.333333pt;}
.x93_c00038{left:504.000000pt;}
.xfa_c00038{left:505.333333pt;}
.x36_c00038{left:506.666667pt;}
.x1a_c00038{left:508.960000pt;}
.x7c_c00038{left:510.093333pt;}
.xc8_c00038{left:511.626667pt;}
.x88_c00038{left:513.333333pt;}
.xa4_c00038{left:514.666667pt;}
.x84_c00038{left:516.000000pt;}
.xeb_c00038{left:517.333333pt;}
.xd7_c00038{left:521.333333pt;}
.x67_c00038{left:524.573333pt;}
.xac_c00038{left:526.666667pt;}
.xb9_c00038{left:529.333333pt;}
.x37_c00038{left:530.293333pt;}
.x62_c00038{left:531.626667pt;}
.x9d_c00038{left:532.960000pt;}
.x1b_c00038{left:534.466667pt;}
.xce_c00038{left:541.333333pt;}
.xc9_c00038{left:542.666667pt;}
.x40_c00038{left:543.626667pt;}
.xe_c00038{left:546.293333pt;}
.x27_c00038{left:549.333333pt;}
.x55_c00038{left:551.040000pt;}
.xdb_c00038{left:553.706667pt;}
.x63_c00038{left:556.373333pt;}
.xec_c00038{left:557.706667pt;}
.x41_c00038{left:560.960000pt;}
.x1c_c00038{left:563.800000pt;}
.x28_c00038{left:566.666667pt;}
.x56_c00038{left:568.000000pt;}
.x94_c00038{left:568.960000pt;}
.x107_c00038{left:572.000000pt;}
.xf_c00038{left:573.333333pt;}
.xb3_c00038{left:576.373333pt;}
.x118_c00038{left:577.333333pt;}
.xed_c00038{left:578.293333pt;}
.xba_c00038{left:580.000000pt;}
.x57_c00038{left:581.333333pt;}
.xca_c00038{left:582.293333pt;}
.x89_c00038{left:586.666667pt;}
.xad_c00038{left:588.000000pt;}
.x29_c00038{left:589.333333pt;}
.xb4_c00038{left:590.666667pt;}
.x38_c00038{left:592.373333pt;}
.xee_c00038{left:593.706667pt;}
.xcf_c00038{left:594.666667pt;}
.x68_c00038{left:597.333333pt;}
.x95_c00038{left:601.333333pt;}
.xc0_c00038{left:604.000000pt;}
.xfb_c00038{left:605.333333pt;}
.xa5_c00038{left:606.666667pt;}
.x102_c00038{left:608.000000pt;}
.x10e_c00038{left:609.333333pt;}
.x9e_c00038{left:610.666667pt;}
.x10_c00038{left:612.000000pt;}
.xe2_c00038{left:613.333333pt;}
.x108_c00038{left:614.666667pt;}
.xa6_c00038{left:617.333333pt;}
.xdc_c00038{left:618.666667pt;}
.x73_c00038{left:620.373333pt;}
.xb5_c00038{left:621.333333pt;}
.x111_c00038{left:622.293333pt;}
.x42_c00038{left:624.960000pt;}
.xd8_c00038{left:627.040000pt;}
.x11_c00038{left:628.373333pt;}
.xd0_c00038{left:630.666667pt;}
.x58_c00038{left:637.333333pt;}
.x2_c00038{left:639.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_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_0db49148018ac09939cb86a9.woff2')format("woff");}.ff1_c00039{font-family:ff1_c00039;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf8_c00039{transform:matrix(0.090909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090909,0.000000,0.000000,0.250000,0,0);}
.md3_c00039{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m6_c00039{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.mfc_c00039{transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);}
.m86_c00039{transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);}
.m36_c00039{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mb9_c00039{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m60_c00039{transform:matrix(0.373850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373850,0.000000,0.000000,0.250000,0,0);}
.mc2_c00039{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.mfb_c00039{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00039{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.md1_c00039{transform:matrix(0.383013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383013,0.000000,0.000000,0.250000,0,0);}
.m83_c00039{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m99_c00039{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m59_c00039{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m6f_c00039{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.mc5_c00039{transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);}
.mb5_c00039{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m66_c00039{transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);}
.mb7_c00039{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m40_c00039{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m12_c00039{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m8a_c00039{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m67_c00039{transform:matrix(0.399540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399540,0.000000,0.000000,0.250000,0,0);}
.m5b_c00039{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m6e_c00039{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m54_c00039{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m17_c00039{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m9a_c00039{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.mce_c00039{transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00039{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.ma1_c00039{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.mcd_c00039{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m58_c00039{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m76_c00039{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mc4_c00039{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m8_c00039{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m37_c00039{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mba_c00039{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.mb6_c00039{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.ma3_c00039{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m89_c00039{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m93_c00039{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m78_c00039{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m39_c00039{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m2c_c00039{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m68_c00039{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mad_c00039{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m9f_c00039{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m21_c00039{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m2e_c00039{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m4f_c00039{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mca_c00039{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m85_c00039{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mac_c00039{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m1a_c00039{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m87_c00039{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m53_c00039{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.mc7_c00039{transform:matrix(0.427647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427647,0.000000,0.000000,0.250000,0,0);}
.m7e_c00039{transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);}
.m24_c00039{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m3f_c00039{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.md_c00039{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m19_c00039{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m4b_c00039{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m72_c00039{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m5_c00039{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.mf4_c00039{transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);}
.mb8_c00039{transform:matrix(0.440184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440184,0.000000,0.000000,0.250000,0,0);}
.mae_c00039{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mcc_c00039{transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);}
.m29_c00039{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m13_c00039{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.mab_c00039{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m46_c00039{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);}
.m41_c00039{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m55_c00039{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.maa_c00039{transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);}
.m8f_c00039{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m3e_c00039{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m49_c00039{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mbd_c00039{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mf5_c00039{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.m73_c00039{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.mda_c00039{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.mdd_c00039{transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);}
.me4_c00039{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.mdc_c00039{transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);}
.m9c_c00039{transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);}
.m94_c00039{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.mb1_c00039{transform:matrix(0.473562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473562,0.000000,0.000000,0.250000,0,0);}
.m77_c00039{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m7_c00039{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m34_c00039{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m8e_c00039{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m81_c00039{transform:matrix(0.479592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479592,0.000000,0.000000,0.250000,0,0);}
.md5_c00039{transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);}
.me_c00039{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m74_c00039{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m7a_c00039{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.mf2_c00039{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m91_c00039{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m70_c00039{transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);}
.m51_c00039{transform:matrix(0.487477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487477,0.000000,0.000000,0.250000,0,0);}
.med_c00039{transform:matrix(0.489583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489583,0.000000,0.000000,0.250000,0,0);}
.m95_c00039{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m2d_c00039{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m1c_c00039{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mf7_c00039{transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);}
.mf9_c00039{transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);}
.m6c_c00039{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m9_c00039{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_c00039{transform:matrix(0.505609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505609,0.000000,0.000000,0.250000,0,0);}
.m1e_c00039{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.ma7_c00039{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m69_c00039{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mfa_c00039{transform:matrix(0.509615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509615,0.000000,0.000000,0.250000,0,0);}
.m50_c00039{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m65_c00039{transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);}
.m61_c00039{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m6b_c00039{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m56_c00039{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m8b_c00039{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m35_c00039{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m80_c00039{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mf3_c00039{transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);}
.ma4_c00039{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m57_c00039{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m8d_c00039{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mb2_c00039{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m32_c00039{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m71_c00039{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m9d_c00039{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m1f_c00039{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m16_c00039{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m10_c00039{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m43_c00039{transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);}
.m18_c00039{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.me3_c00039{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m27_c00039{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m4a_c00039{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m3c_c00039{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.ma_c00039{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m2b_c00039{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.ma0_c00039{transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);}
.ma6_c00039{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m4e_c00039{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m4c_c00039{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m7b_c00039{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m88_c00039{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mbb_c00039{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m3a_c00039{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m9e_c00039{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m38_c00039{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.mc_c00039{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m5a_c00039{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.md9_c00039{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.mb_c00039{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m6a_c00039{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m23_c00039{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m44_c00039{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m48_c00039{transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);}
.m33_c00039{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mbe_c00039{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m11_c00039{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m14_c00039{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m79_c00039{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mb4_c00039{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m5f_c00039{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m7c_c00039{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m90_c00039{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);}
.m7d_c00039{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m63_c00039{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m3_c00039{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.me0_c00039{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m2_c00039{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m28_c00039{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m22_c00039{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m98_c00039{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m5c_c00039{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m5e_c00039{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m75_c00039{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m9b_c00039{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m42_c00039{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mc6_c00039{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.mdb_c00039{transform:matrix(0.577724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577724,0.000000,0.000000,0.250000,0,0);}
.m52_c00039{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.ma8_c00039{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m1b_c00039{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m97_c00039{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.mc3_c00039{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m4_c00039{transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);}
.maf_c00039{transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);}
.m4d_c00039{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m7f_c00039{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m47_c00039{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m2a_c00039{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.m2f_c00039{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);}
.mbc_c00039{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.mcf_c00039{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.mf_c00039{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m1d_c00039{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m30_c00039{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.mcb_c00039{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m5d_c00039{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mc9_c00039{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.mc1_c00039{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.mbf_c00039{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mf0_c00039{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.mc0_c00039{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_c00039{transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);}
.m84_c00039{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m3b_c00039{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m26_c00039{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.md0_c00039{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m92_c00039{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.md2_c00039{transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);}
.m1_c00039{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m20_c00039{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.meb_c00039{transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);}
.md7_c00039{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.md8_c00039{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.me2_c00039{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.mb0_c00039{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.me7_c00039{transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);}
.m0_c00039{transform:matrix(0.711538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.711538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.711538,0.000000,0.000000,0.250000,0,0);}
.m45_c00039{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mef_c00039{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.mf6_c00039{transform:matrix(0.720264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720264,0.000000,0.000000,0.250000,0,0);}
.m6d_c00039{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.me8_c00039{transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);}
.m96_c00039{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.me9_c00039{transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);}
.mea_c00039{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.mde_c00039{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.md6_c00039{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m25_c00039{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m62_c00039{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m82_c00039{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.me1_c00039{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m15_c00039{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.me5_c00039{transform:matrix(0.805066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805066,0.000000,0.000000,0.250000,0,0);}
.mb3_c00039{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.me6_c00039{transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);}
.m64_c00039{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.ma2_c00039{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mee_c00039{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mdf_c00039{transform:matrix(0.881057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.881057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.881057,0.000000,0.000000,0.250000,0,0);}
.ma9_c00039{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.mc8_c00039{transform:matrix(0.972467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.972467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.972467,0.000000,0.000000,0.250000,0,0);}
.mf1_c00039{transform:matrix(1.249199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.249199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.249199,0.000000,0.000000,0.250000,0,0);}
.md4_c00039{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.ma5_c00039{transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);}
.v1_c00039{vertical-align:-12.000000px;}
.v2_c00039{vertical-align:-6.000000px;}
.v0_c00039{vertical-align:0.000000px;}
.v3_c00039{vertical-align:6.000000px;}
.ls1_c00039{letter-spacing:0.000000px;}
.ls0_c00039{letter-spacing:87.773498px;}
.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;}
}
.ws3_c00039{word-spacing:-98.705978px;}
.ws0_c00039{word-spacing:-6.591190px;}
.ws1_c00039{word-spacing:-1.567647px;}
.ws13_c00039{word-spacing:0.000000px;}
.ws4_c00039{word-spacing:11.661937px;}
.wse_c00039{word-spacing:17.617871px;}
.wsd_c00039{word-spacing:23.728109px;}
.ws9_c00039{word-spacing:23.767013px;}
.ws5_c00039{word-spacing:25.629635px;}
.wsb_c00039{word-spacing:25.643046px;}
.ws12_c00039{word-spacing:27.519079px;}
.ws11_c00039{word-spacing:28.038235px;}
.wsa_c00039{word-spacing:29.395112px;}
.wsc_c00039{word-spacing:30.193299px;}
.wsf_c00039{word-spacing:31.271145px;}
.ws7_c00039{word-spacing:33.638400px;}
.ws2_c00039{word-spacing:36.326509px;}
.ws10_c00039{word-spacing:39.052735px;}
.ws8_c00039{word-spacing:39.638400px;}
.ws6_c00039{word-spacing:42.638400px;}
._0_c00039{margin-left:-87.773498px;}
._7_c00039{width:27.574892px;}
._4_c00039{width:31.721093px;}
._8_c00039{width:33.583715px;}
._5_c00039{width:35.473159px;}
._3_c00039{width:37.349192px;}
._6_c00039{width:38.945566px;}
._1_c00039{width:53.570880px;}
._2_c00039{width:56.570880px;}
._9_c00039{width:58.430328px;}
.fc0_c00039{color:transparent;}
.fs7_c00039{font-size:3.420000px;}
.fs9_c00039{font-size:11.880000px;}
.fs8_c00039{font-size:13.620000px;}
.fs0_c00039{font-size:18.720000px;}
.fs6_c00039{font-size:20.400000px;}
.fs3_c00039{font-size:25.500000px;}
.fs1_c00039{font-size:28.920000px;}
.fs4_c00039{font-size:32.340000px;}
.fs2_c00039{font-size:35.700000px;}
.fs5_c00039{font-size:39.120000px;}
.y0_c00039{bottom:0.000000px;}
.y83_c00039{bottom:241.905000px;}
.y7d_c00039{bottom:242.745000px;}
.y81_c00039{bottom:243.180000px;}
.y82_c00039{bottom:244.245000px;}
.y7e_c00039{bottom:244.905000px;}
.y7f_c00039{bottom:245.130000px;}
.y80_c00039{bottom:246.405000px;}
.y7b_c00039{bottom:263.745000px;}
.y77_c00039{bottom:264.405000px;}
.y7a_c00039{bottom:264.630000px;}
.y7c_c00039{bottom:264.825000px;}
.y78_c00039{bottom:265.470000px;}
.y79_c00039{bottom:265.905000px;}
.y74_c00039{bottom:283.245000px;}
.y75_c00039{bottom:285.405000px;}
.y76_c00039{bottom:286.470000px;}
.y70_c00039{bottom:302.745000px;}
.y72_c00039{bottom:302.970000px;}
.y6e_c00039{bottom:304.905000px;}
.y6f_c00039{bottom:304.920000px;}
.y73_c00039{bottom:305.970000px;}
.y71_c00039{bottom:306.405000px;}
.yc6_c00039{bottom:336.630000px;}
.yc7_c00039{bottom:337.695000px;}
.yc8_c00039{bottom:337.920000px;}
.yc5_c00039{bottom:346.050000px;}
.yc3_c00039{bottom:347.550000px;}
.yc1_c00039{bottom:350.130000px;}
.yc2_c00039{bottom:351.195000px;}
.yc4_c00039{bottom:351.420000px;}
.ybd_c00039{bottom:363.630000px;}
.ybe_c00039{bottom:364.695000px;}
.ybf_c00039{bottom:365.130000px;}
.yc0_c00039{bottom:366.195000px;}
.yb9_c00039{bottom:376.695000px;}
.yba_c00039{bottom:377.775000px;}
.yb7_c00039{bottom:378.630000px;}
.ybb_c00039{bottom:378.825000px;}
.yb8_c00039{bottom:379.695000px;}
.ybc_c00039{bottom:379.920000px;}
.yb4_c00039{bottom:391.695000px;}
.yb2_c00039{bottom:392.130000px;}
.yb5_c00039{bottom:392.775000px;}
.yb3_c00039{bottom:393.195000px;}
.yb6_c00039{bottom:394.920000px;}
.yb1_c00039{bottom:396.630000px;}
.yb0_c00039{bottom:405.630000px;}
.yad_c00039{bottom:406.695000px;}
.yaf_c00039{bottom:407.130000px;}
.yae_c00039{bottom:408.195000px;}
.yaa_c00039{bottom:419.130000px;}
.ya9_c00039{bottom:419.775000px;}
.ya8_c00039{bottom:420.195000px;}
.yab_c00039{bottom:420.630000px;}
.yac_c00039{bottom:421.695000px;}
.ya7_c00039{bottom:432.630000px;}
.ya5_c00039{bottom:433.275000px;}
.ya4_c00039{bottom:433.695000px;}
.ya6_c00039{bottom:435.195000px;}
.ya3_c00039{bottom:447.630000px;}
.ya2_c00039{bottom:448.695000px;}
.ya0_c00039{bottom:461.130000px;}
.y9f_c00039{bottom:462.195000px;}
.ya1_c00039{bottom:462.420000px;}
.y9d_c00039{bottom:474.630000px;}
.y9e_c00039{bottom:475.695000px;}
.y9a_c00039{bottom:488.550000px;}
.y9c_c00039{bottom:489.195000px;}
.y99_c00039{bottom:489.630000px;}
.y9b_c00039{bottom:490.920000px;}
.y97_c00039{bottom:502.695000px;}
.y98_c00039{bottom:503.130000px;}
.y96_c00039{bottom:515.130000px;}
.y94_c00039{bottom:516.630000px;}
.y95_c00039{bottom:517.695000px;}
.y90_c00039{bottom:535.695000px;}
.y93_c00039{bottom:535.920000px;}
.y91_c00039{bottom:536.130000px;}
.y92_c00039{bottom:537.420000px;}
.y8f_c00039{bottom:549.195000px;}
.y8d_c00039{bottom:549.630000px;}
.y8e_c00039{bottom:550.695000px;}
.y8b_c00039{bottom:573.195000px;}
.y8c_c00039{bottom:574.050000px;}
.y89_c00039{bottom:585.825000px;}
.y8a_c00039{bottom:586.905000px;}
.y87_c00039{bottom:587.550000px;}
.y86_c00039{bottom:587.970000px;}
.y88_c00039{bottom:589.050000px;}
.y85_c00039{bottom:612.630000px;}
.y84_c00039{bottom:613.050000px;}
.y6b_c00039{bottom:647.745000px;}
.y6d_c00039{bottom:648.630000px;}
.y6c_c00039{bottom:649.470000px;}
.y6a_c00039{bottom:649.905000px;}
.y68_c00039{bottom:665.970000px;}
.y66_c00039{bottom:667.245000px;}
.y65_c00039{bottom:668.970000px;}
.y67_c00039{bottom:669.405000px;}
.y69_c00039{bottom:670.470000px;}
.y62_c00039{bottom:686.745000px;}
.y61_c00039{bottom:687.630000px;}
.y64_c00039{bottom:688.470000px;}
.y63_c00039{bottom:688.905000px;}
.y5e_c00039{bottom:706.245000px;}
.y60_c00039{bottom:707.325000px;}
.y5d_c00039{bottom:707.550000px;}
.y5c_c00039{bottom:708.405000px;}
.y5f_c00039{bottom:708.630000px;}
.y54_c00039{bottom:724.905000px;}
.y56_c00039{bottom:725.745000px;}
.y55_c00039{bottom:725.970000px;}
.y57_c00039{bottom:726.825000px;}
.y5b_c00039{bottom:727.470000px;}
.y59_c00039{bottom:727.905000px;}
.y5a_c00039{bottom:728.130000px;}
.y58_c00039{bottom:728.970000px;}
.y51_c00039{bottom:745.245000px;}
.y52_c00039{bottom:745.905000px;}
.y53_c00039{bottom:746.325000px;}
.y50_c00039{bottom:747.405000px;}
.y4c_c00039{bottom:764.745000px;}
.y4b_c00039{bottom:765.825000px;}
.y4e_c00039{bottom:766.245000px;}
.y49_c00039{bottom:766.905000px;}
.y4a_c00039{bottom:767.130000px;}
.y4d_c00039{bottom:767.970000px;}
.y4f_c00039{bottom:768.405000px;}
.y48_c00039{bottom:783.405000px;}
.y45_c00039{bottom:785.745000px;}
.y47_c00039{bottom:786.630000px;}
.y46_c00039{bottom:787.470000px;}
.y44_c00039{bottom:787.905000px;}
.y43_c00039{bottom:805.245000px;}
.y42_c00039{bottom:806.130000px;}
.y41_c00039{bottom:807.405000px;}
.y3e_c00039{bottom:823.905000px;}
.y3f_c00039{bottom:824.325000px;}
.y3d_c00039{bottom:824.745000px;}
.y3c_c00039{bottom:825.825000px;}
.y3b_c00039{bottom:826.905000px;}
.y40_c00039{bottom:827.970000px;}
.y3a_c00039{bottom:842.970000px;}
.y39_c00039{bottom:843.405000px;}
.y35_c00039{bottom:844.245000px;}
.y37_c00039{bottom:845.130000px;}
.y36_c00039{bottom:846.405000px;}
.y38_c00039{bottom:847.470000px;}
.y31_c00039{bottom:863.745000px;}
.y34_c00039{bottom:864.630000px;}
.y33_c00039{bottom:865.470000px;}
.y32_c00039{bottom:865.905000px;}
.y2c_c00039{bottom:883.680000px;}
.y2d_c00039{bottom:885.405000px;}
.y2f_c00039{bottom:885.630000px;}
.y30_c00039{bottom:885.825000px;}
.y2e_c00039{bottom:886.905000px;}
.y2a_c00039{bottom:904.245000px;}
.y28_c00039{bottom:904.905000px;}
.y29_c00039{bottom:905.970000px;}
.y2b_c00039{bottom:906.405000px;}
.y26_c00039{bottom:923.745000px;}
.y23_c00039{bottom:924.405000px;}
.y24_c00039{bottom:924.630000px;}
.y27_c00039{bottom:924.825000px;}
.y25_c00039{bottom:925.905000px;}
.y1f_c00039{bottom:941.970000px;}
.y22_c00039{bottom:943.245000px;}
.y21_c00039{bottom:944.130000px;}
.y20_c00039{bottom:945.405000px;}
.y1d_c00039{bottom:961.245000px;}
.y1e_c00039{bottom:962.325000px;}
.y1c_c00039{bottom:962.745000px;}
.y19_c00039{bottom:963.405000px;}
.y1b_c00039{bottom:964.470000px;}
.y1a_c00039{bottom:964.905000px;}
.y17_c00039{bottom:981.405000px;}
.y16_c00039{bottom:982.245000px;}
.y15_c00039{bottom:984.405000px;}
.y18_c00039{bottom:985.470000px;}
.y12_c00039{bottom:1001.745000px;}
.y14_c00039{bottom:1002.630000px;}
.y11_c00039{bottom:1003.905000px;}
.y13_c00039{bottom:1004.970000px;}
.ye_c00039{bottom:1021.245000px;}
.y10_c00039{bottom:1022.325000px;}
.yc_c00039{bottom:1023.405000px;}
.yf_c00039{bottom:1023.630000px;}
.yd_c00039{bottom:1024.470000px;}
.y7_c00039{bottom:1040.745000px;}
.ya_c00039{bottom:1041.825000px;}
.yb_c00039{bottom:1042.470000px;}
.y8_c00039{bottom:1042.905000px;}
.y9_c00039{bottom:1043.130000px;}
.y4_c00039{bottom:1059.405000px;}
.y3_c00039{bottom:1060.245000px;}
.y6_c00039{bottom:1060.470000px;}
.y5_c00039{bottom:1061.745000px;}
.y2_c00039{bottom:1062.405000px;}
.y1_c00039{bottom:1101.630000px;}
.h8_c00039{height:4.206533px;}
.ha_c00039{height:14.612168px;}
.h9_c00039{height:16.752334px;}
.h1_c00039{height:23.025234px;}
.h7_c00039{height:25.091602px;}
.h4_c00039{height:31.364502px;}
.h2_c00039{height:35.571035px;}
.h5_c00039{height:39.777568px;}
.h3_c00039{height:43.910303px;}
.h6_c00039{height:48.116836px;}
.h0_c00039{height:1335.000000px;}
.w0_c00039{width:880.500000px;}
.x0_c00039{left:0.000000px;}
.xcd_c00039{left:135.000000px;}
.xb5_c00039{left:153.000000px;}
.x84_c00039{left:154.500000px;}
.x2_c00039{left:156.420000px;}
.xd2_c00039{left:161.580000px;}
.xe2_c00039{left:166.500000px;}
.xad_c00039{left:168.645000px;}
.x3_c00039{left:170.580000px;}
.x58_c00039{left:172.500000px;}
.x4e_c00039{left:175.500000px;}
.x90_c00039{left:180.000000px;}
.xa8_c00039{left:181.920000px;}
.xa0_c00039{left:183.000000px;}
.x2b_c00039{left:184.920000px;}
.xd8_c00039{left:189.000000px;}
.x4f_c00039{left:190.080000px;}
.x21_c00039{left:191.580000px;}
.x35_c00039{left:193.500000px;}
.x59_c00039{left:201.420000px;}
.xda_c00039{left:202.500000px;}
.x7e_c00039{left:204.420000px;}
.x14_c00039{left:205.920000px;}
.xe3_c00039{left:207.000000px;}
.x85_c00039{left:208.500000px;}
.x22_c00039{left:210.000000px;}
.xbe_c00039{left:213.000000px;}
.xa9_c00039{left:216.420000px;}
.x2c_c00039{left:219.000000px;}
.x67_c00039{left:220.920000px;}
.x78_c00039{left:223.500000px;}
.x4_c00039{left:226.920000px;}
.xbf_c00039{left:230.580000px;}
.x3d_c00039{left:233.580000px;}
.x60_c00039{left:235.920000px;}
.x23_c00039{left:237.000000px;}
.x79_c00039{left:238.500000px;}
.xae_c00039{left:240.000000px;}
.xc5_c00039{left:241.500000px;}
.x36_c00039{left:249.420000px;}
.x3e_c00039{left:252.420000px;}
.xb6_c00039{left:253.920000px;}
.xaa_c00039{left:256.500000px;}
.xaf_c00039{left:259.500000px;}
.x68_c00039{left:261.000000px;}
.x61_c00039{left:264.000000px;}
.x15_c00039{left:265.080000px;}
.x7a_c00039{left:268.080000px;}
.x5a_c00039{left:270.420000px;}
.x46_c00039{left:273.000000px;}
.xdd_c00039{left:274.080000px;}
.xe4_c00039{left:276.855000px;}
.x3f_c00039{left:278.580000px;}
.x69_c00039{left:280.080000px;}
.x50_c00039{left:282.000000px;}
.xa1_c00039{left:283.500000px;}
.x6d_c00039{left:285.420000px;}
.x2d_c00039{left:287.580000px;}
.xb0_c00039{left:291.645000px;}
.xb7_c00039{left:292.920000px;}
.x5_c00039{left:294.000000px;}
.x47_c00039{left:298.920000px;}
.xcc_c00039{left:300.000000px;}
.xc6_c00039{left:301.500000px;}
.xc0_c00039{left:303.000000px;}
.x24_c00039{left:304.080000px;}
.x95_c00039{left:307.500000px;}
.x9a_c00039{left:309.420000px;}
.x37_c00039{left:313.500000px;}
.x16_c00039{left:318.000000px;}
.x2e_c00039{left:319.920000px;}
.x6_c00039{left:322.080000px;}
.xa2_c00039{left:325.080000px;}
.x86_c00039{left:327.000000px;}
.xc1_c00039{left:330.420000px;}
.xc7_c00039{left:333.000000px;}
.x7_c00039{left:336.000000px;}
.xcf_c00039{left:337.500000px;}
.x17_c00039{left:338.580000px;}
.x73_c00039{left:342.000000px;}
.xa3_c00039{left:343.920000px;}
.x62_c00039{left:345.000000px;}
.x25_c00039{left:349.500000px;}
.x8_c00039{left:353.145000px;}
.xb8_c00039{left:355.500000px;}
.x51_c00039{left:356.580000px;}
.x7b_c00039{left:363.420000px;}
.xc2_c00039{left:367.500000px;}
.x9_c00039{left:369.000000px;}
.x9b_c00039{left:370.080000px;}
.x48_c00039{left:372.000000px;}
.xb9_c00039{left:375.000000px;}
.x7f_c00039{left:378.000000px;}
.xce_c00039{left:379.920000px;}
.xd0_c00039{left:382.500000px;}
.xde_c00039{left:384.000000px;}
.xa_c00039{left:385.500000px;}
.xd9_c00039{left:387.000000px;}
.xd5_c00039{left:388.500000px;}
.x40_c00039{left:390.000000px;}
.x18_c00039{left:391.500000px;}
.x2f_c00039{left:393.420000px;}
.x74_c00039{left:396.420000px;}
.x1_c00039{left:399.000000px;}
.xb_c00039{left:402.000000px;}
.x52_c00039{left:403.920000px;}
.x80_c00039{left:406.920000px;}
.x49_c00039{left:408.000000px;}
.x6e_c00039{left:412.500000px;}
.xba_c00039{left:415.500000px;}
.x8c_c00039{left:416.580000px;}
.xcb_c00039{left:418.500000px;}
.xc_c00039{left:420.000000px;}
.x5b_c00039{left:422.580000px;}
.xc3_c00039{left:427.920000px;}
.x7c_c00039{left:429.420000px;}
.x53_c00039{left:432.000000px;}
.x9c_c00039{left:433.920000px;}
.x87_c00039{left:436.500000px;}
.x30_c00039{left:439.500000px;}
.xc8_c00039{left:441.000000px;}
.xa4_c00039{left:442.500000px;}
.x91_c00039{left:445.080000px;}
.x19_c00039{left:447.420000px;}
.x63_c00039{left:448.500000px;}
.x5c_c00039{left:449.580000px;}
.xc4_c00039{left:451.500000px;}
.xd_c00039{left:454.920000px;}
.x38_c00039{left:459.420000px;}
.xab_c00039{left:460.500000px;}
.x88_c00039{left:462.000000px;}
.x5d_c00039{left:463.500000px;}
.x6f_c00039{left:465.000000px;}
.x64_c00039{left:468.000000px;}
.x41_c00039{left:469.500000px;}
.x26_c00039{left:472.500000px;}
.xdf_c00039{left:474.000000px;}
.x1a_c00039{left:475.500000px;}
.x7d_c00039{left:477.420000px;}
.xc9_c00039{left:478.500000px;}
.xbb_c00039{left:481.500000px;}
.x27_c00039{left:484.920000px;}
.x39_c00039{left:489.000000px;}
.xe_c00039{left:490.500000px;}
.x31_c00039{left:492.000000px;}
.x70_c00039{left:493.080000px;}
.x81_c00039{left:500.580000px;}
.x5e_c00039{left:505.920000px;}
.x89_c00039{left:508.500000px;}
.x54_c00039{left:513.000000px;}
.xb1_c00039{left:515.580000px;}
.xd3_c00039{left:517.500000px;}
.x42_c00039{left:519.000000px;}
.x4a_c00039{left:520.080000px;}
.xe5_c00039{left:522.000000px;}
.x92_c00039{left:523.500000px;}
.xa5_c00039{left:525.000000px;}
.x6a_c00039{left:526.500000px;}
.x1b_c00039{left:529.920000px;}
.xf_c00039{left:538.500000px;}
.x28_c00039{left:541.920000px;}
.x93_c00039{left:543.000000px;}
.x82_c00039{left:544.920000px;}
.xb2_c00039{left:547.500000px;}
.x8a_c00039{left:548.580000px;}
.x4b_c00039{left:550.500000px;}
.xbc_c00039{left:553.500000px;}
.x9d_c00039{left:558.000000px;}
.x6b_c00039{left:559.500000px;}
.x8d_c00039{left:562.500000px;}
.xe0_c00039{left:564.000000px;}
.x32_c00039{left:565.500000px;}
.xd6_c00039{left:567.000000px;}
.xa6_c00039{left:568.500000px;}
.xac_c00039{left:570.000000px;}
.x75_c00039{left:574.920000px;}
.x96_c00039{left:576.420000px;}
.x3a_c00039{left:577.500000px;}
.x43_c00039{left:580.920000px;}
.xb3_c00039{left:582.000000px;}
.x1c_c00039{left:585.000000px;}
.x94_c00039{left:586.920000px;}
.xca_c00039{left:590.580000px;}
.x4c_c00039{left:595.500000px;}
.x33_c00039{left:598.920000px;}
.x1d_c00039{left:601.920000px;}
.x5f_c00039{left:604.080000px;}
.x10_c00039{left:606.000000px;}
.x55_c00039{left:607.920000px;}
.xbd_c00039{left:609.000000px;}
.x3b_c00039{left:620.580000px;}
.x29_c00039{left:622.500000px;}
.x97_c00039{left:623.580000px;}
.x11_c00039{left:625.920000px;}
.x65_c00039{left:628.500000px;}
.x8e_c00039{left:629.580000px;}
.x56_c00039{left:634.500000px;}
.x1e_c00039{left:639.000000px;}
.x98_c00039{left:642.420000px;}
.x3c_c00039{left:643.920000px;}
.xe1_c00039{left:645.000000px;}
.x6c_c00039{left:646.080000px;}
.x9e_c00039{left:649.500000px;}
.x44_c00039{left:652.500000px;}
.x76_c00039{left:660.000000px;}
.x12_c00039{left:663.000000px;}
.x71_c00039{left:664.920000px;}
.x1f_c00039{left:667.500000px;}
.x99_c00039{left:669.000000px;}
.x83_c00039{left:670.080000px;}
.x4d_c00039{left:675.000000px;}
.x2a_c00039{left:676.080000px;}
.x57_c00039{left:679.920000px;}
.x45_c00039{left:686.580000px;}
.xd4_c00039{left:688.500000px;}
.xdb_c00039{left:690.420000px;}
.x66_c00039{left:691.500000px;}
.x77_c00039{left:692.580000px;}
.x8b_c00039{left:695.775000px;}
.x8f_c00039{left:700.500000px;}
.x72_c00039{left:703.920000px;}
.x13_c00039{left:706.080000px;}
.x20_c00039{left:711.420000px;}
.x9f_c00039{left:718.500000px;}
.xa7_c00039{left:719.580000px;}
.xb4_c00039{left:721.500000px;}
.x34_c00039{left:724.500000px;}
.xd1_c00039{left:729.000000px;}
.xdc_c00039{left:730.500000px;}
.xd7_c00039{left:733.500000px;}
@media print{
.v1_c00039{vertical-align:-10.666667pt;}
.v2_c00039{vertical-align:-5.333333pt;}
.v0_c00039{vertical-align:0.000000pt;}
.v3_c00039{vertical-align:5.333333pt;}
.ls1_c00039{letter-spacing:0.000000pt;}
.ls0_c00039{letter-spacing:78.020887pt;}
.ws3_c00039{word-spacing:-87.738647pt;}
.ws0_c00039{word-spacing:-5.858835pt;}
.ws1_c00039{word-spacing:-1.393464pt;}
.ws13_c00039{word-spacing:0.000000pt;}
.ws4_c00039{word-spacing:10.366166pt;}
.wse_c00039{word-spacing:15.660329pt;}
.wsd_c00039{word-spacing:21.091652pt;}
.ws9_c00039{word-spacing:21.126233pt;}
.ws5_c00039{word-spacing:22.781898pt;}
.wsb_c00039{word-spacing:22.793818pt;}
.ws12_c00039{word-spacing:24.461403pt;}
.ws11_c00039{word-spacing:24.922876pt;}
.wsa_c00039{word-spacing:26.128988pt;}
.wsc_c00039{word-spacing:26.838488pt;}
.wsf_c00039{word-spacing:27.796573pt;}
.ws7_c00039{word-spacing:29.900800pt;}
.ws2_c00039{word-spacing:32.290231pt;}
.ws10_c00039{word-spacing:34.713542pt;}
.ws8_c00039{word-spacing:35.234133pt;}
.ws6_c00039{word-spacing:37.900800pt;}
._0_c00039{margin-left:-78.020887pt;}
._7_c00039{width:24.511015pt;}
._4_c00039{width:28.196527pt;}
._8_c00039{width:29.852191pt;}
._5_c00039{width:31.531697pt;}
._3_c00039{width:33.199282pt;}
._6_c00039{width:34.618281pt;}
._1_c00039{width:47.618560pt;}
._2_c00039{width:50.285227pt;}
._9_c00039{width:51.938069pt;}
.fs7_c00039{font-size:3.040000pt;}
.fs9_c00039{font-size:10.560000pt;}
.fs8_c00039{font-size:12.106667pt;}
.fs0_c00039{font-size:16.640000pt;}
.fs6_c00039{font-size:18.133333pt;}
.fs3_c00039{font-size:22.666667pt;}
.fs1_c00039{font-size:25.706667pt;}
.fs4_c00039{font-size:28.746667pt;}
.fs2_c00039{font-size:31.733333pt;}
.fs5_c00039{font-size:34.773333pt;}
.y0_c00039{bottom:0.000000pt;}
.y83_c00039{bottom:215.026667pt;}
.y7d_c00039{bottom:215.773333pt;}
.y81_c00039{bottom:216.160000pt;}
.y82_c00039{bottom:217.106667pt;}
.y7e_c00039{bottom:217.693333pt;}
.y7f_c00039{bottom:217.893333pt;}
.y80_c00039{bottom:219.026667pt;}
.y7b_c00039{bottom:234.440000pt;}
.y77_c00039{bottom:235.026667pt;}
.y7a_c00039{bottom:235.226667pt;}
.y7c_c00039{bottom:235.400000pt;}
.y78_c00039{bottom:235.973333pt;}
.y79_c00039{bottom:236.360000pt;}
.y74_c00039{bottom:251.773333pt;}
.y75_c00039{bottom:253.693333pt;}
.y76_c00039{bottom:254.640000pt;}
.y70_c00039{bottom:269.106667pt;}
.y72_c00039{bottom:269.306667pt;}
.y6e_c00039{bottom:271.026667pt;}
.y6f_c00039{bottom:271.040000pt;}
.y73_c00039{bottom:271.973333pt;}
.y71_c00039{bottom:272.360000pt;}
.yc6_c00039{bottom:299.226667pt;}
.yc7_c00039{bottom:300.173333pt;}
.yc8_c00039{bottom:300.373333pt;}
.yc5_c00039{bottom:307.600000pt;}
.yc3_c00039{bottom:308.933333pt;}
.yc1_c00039{bottom:311.226667pt;}
.yc2_c00039{bottom:312.173333pt;}
.yc4_c00039{bottom:312.373333pt;}
.ybd_c00039{bottom:323.226667pt;}
.ybe_c00039{bottom:324.173333pt;}
.ybf_c00039{bottom:324.560000pt;}
.yc0_c00039{bottom:325.506667pt;}
.yb9_c00039{bottom:334.840000pt;}
.yba_c00039{bottom:335.800000pt;}
.yb7_c00039{bottom:336.560000pt;}
.ybb_c00039{bottom:336.733333pt;}
.yb8_c00039{bottom:337.506667pt;}
.ybc_c00039{bottom:337.706667pt;}
.yb4_c00039{bottom:348.173333pt;}
.yb2_c00039{bottom:348.560000pt;}
.yb5_c00039{bottom:349.133333pt;}
.yb3_c00039{bottom:349.506667pt;}
.yb6_c00039{bottom:351.040000pt;}
.yb1_c00039{bottom:352.560000pt;}
.yb0_c00039{bottom:360.560000pt;}
.yad_c00039{bottom:361.506667pt;}
.yaf_c00039{bottom:361.893333pt;}
.yae_c00039{bottom:362.840000pt;}
.yaa_c00039{bottom:372.560000pt;}
.ya9_c00039{bottom:373.133333pt;}
.ya8_c00039{bottom:373.506667pt;}
.yab_c00039{bottom:373.893333pt;}
.yac_c00039{bottom:374.840000pt;}
.ya7_c00039{bottom:384.560000pt;}
.ya5_c00039{bottom:385.133333pt;}
.ya4_c00039{bottom:385.506667pt;}
.ya6_c00039{bottom:386.840000pt;}
.ya3_c00039{bottom:397.893333pt;}
.ya2_c00039{bottom:398.840000pt;}
.ya0_c00039{bottom:409.893333pt;}
.y9f_c00039{bottom:410.840000pt;}
.ya1_c00039{bottom:411.040000pt;}
.y9d_c00039{bottom:421.893333pt;}
.y9e_c00039{bottom:422.840000pt;}
.y9a_c00039{bottom:434.266667pt;}
.y9c_c00039{bottom:434.840000pt;}
.y99_c00039{bottom:435.226667pt;}
.y9b_c00039{bottom:436.373333pt;}
.y97_c00039{bottom:446.840000pt;}
.y98_c00039{bottom:447.226667pt;}
.y96_c00039{bottom:457.893333pt;}
.y94_c00039{bottom:459.226667pt;}
.y95_c00039{bottom:460.173333pt;}
.y90_c00039{bottom:476.173333pt;}
.y93_c00039{bottom:476.373333pt;}
.y91_c00039{bottom:476.560000pt;}
.y92_c00039{bottom:477.706667pt;}
.y8f_c00039{bottom:488.173333pt;}
.y8d_c00039{bottom:488.560000pt;}
.y8e_c00039{bottom:489.506667pt;}
.y8b_c00039{bottom:509.506667pt;}
.y8c_c00039{bottom:510.266667pt;}
.y89_c00039{bottom:520.733333pt;}
.y8a_c00039{bottom:521.693333pt;}
.y87_c00039{bottom:522.266667pt;}
.y86_c00039{bottom:522.640000pt;}
.y88_c00039{bottom:523.600000pt;}
.y85_c00039{bottom:544.560000pt;}
.y84_c00039{bottom:544.933333pt;}
.y6b_c00039{bottom:575.773333pt;}
.y6d_c00039{bottom:576.560000pt;}
.y6c_c00039{bottom:577.306667pt;}
.y6a_c00039{bottom:577.693333pt;}
.y68_c00039{bottom:591.973333pt;}
.y66_c00039{bottom:593.106667pt;}
.y65_c00039{bottom:594.640000pt;}
.y67_c00039{bottom:595.026667pt;}
.y69_c00039{bottom:595.973333pt;}
.y62_c00039{bottom:610.440000pt;}
.y61_c00039{bottom:611.226667pt;}
.y64_c00039{bottom:611.973333pt;}
.y63_c00039{bottom:612.360000pt;}
.y5e_c00039{bottom:627.773333pt;}
.y60_c00039{bottom:628.733333pt;}
.y5d_c00039{bottom:628.933333pt;}
.y5c_c00039{bottom:629.693333pt;}
.y5f_c00039{bottom:629.893333pt;}
.y54_c00039{bottom:644.360000pt;}
.y56_c00039{bottom:645.106667pt;}
.y55_c00039{bottom:645.306667pt;}
.y57_c00039{bottom:646.066667pt;}
.y5b_c00039{bottom:646.640000pt;}
.y59_c00039{bottom:647.026667pt;}
.y5a_c00039{bottom:647.226667pt;}
.y58_c00039{bottom:647.973333pt;}
.y51_c00039{bottom:662.440000pt;}
.y52_c00039{bottom:663.026667pt;}
.y53_c00039{bottom:663.400000pt;}
.y50_c00039{bottom:664.360000pt;}
.y4c_c00039{bottom:679.773333pt;}
.y4b_c00039{bottom:680.733333pt;}
.y4e_c00039{bottom:681.106667pt;}
.y49_c00039{bottom:681.693333pt;}
.y4a_c00039{bottom:681.893333pt;}
.y4d_c00039{bottom:682.640000pt;}
.y4f_c00039{bottom:683.026667pt;}
.y48_c00039{bottom:696.360000pt;}
.y45_c00039{bottom:698.440000pt;}
.y47_c00039{bottom:699.226667pt;}
.y46_c00039{bottom:699.973333pt;}
.y44_c00039{bottom:700.360000pt;}
.y43_c00039{bottom:715.773333pt;}
.y42_c00039{bottom:716.560000pt;}
.y41_c00039{bottom:717.693333pt;}
.y3e_c00039{bottom:732.360000pt;}
.y3f_c00039{bottom:732.733333pt;}
.y3d_c00039{bottom:733.106667pt;}
.y3c_c00039{bottom:734.066667pt;}
.y3b_c00039{bottom:735.026667pt;}
.y40_c00039{bottom:735.973333pt;}
.y3a_c00039{bottom:749.306667pt;}
.y39_c00039{bottom:749.693333pt;}
.y35_c00039{bottom:750.440000pt;}
.y37_c00039{bottom:751.226667pt;}
.y36_c00039{bottom:752.360000pt;}
.y38_c00039{bottom:753.306667pt;}
.y31_c00039{bottom:767.773333pt;}
.y34_c00039{bottom:768.560000pt;}
.y33_c00039{bottom:769.306667pt;}
.y32_c00039{bottom:769.693333pt;}
.y2c_c00039{bottom:785.493333pt;}
.y2d_c00039{bottom:787.026667pt;}
.y2f_c00039{bottom:787.226667pt;}
.y30_c00039{bottom:787.400000pt;}
.y2e_c00039{bottom:788.360000pt;}
.y2a_c00039{bottom:803.773333pt;}
.y28_c00039{bottom:804.360000pt;}
.y29_c00039{bottom:805.306667pt;}
.y2b_c00039{bottom:805.693333pt;}
.y26_c00039{bottom:821.106667pt;}
.y23_c00039{bottom:821.693333pt;}
.y24_c00039{bottom:821.893333pt;}
.y27_c00039{bottom:822.066667pt;}
.y25_c00039{bottom:823.026667pt;}
.y1f_c00039{bottom:837.306667pt;}
.y22_c00039{bottom:838.440000pt;}
.y21_c00039{bottom:839.226667pt;}
.y20_c00039{bottom:840.360000pt;}
.y1d_c00039{bottom:854.440000pt;}
.y1e_c00039{bottom:855.400000pt;}
.y1c_c00039{bottom:855.773333pt;}
.y19_c00039{bottom:856.360000pt;}
.y1b_c00039{bottom:857.306667pt;}
.y1a_c00039{bottom:857.693333pt;}
.y17_c00039{bottom:872.360000pt;}
.y16_c00039{bottom:873.106667pt;}
.y15_c00039{bottom:875.026667pt;}
.y18_c00039{bottom:875.973333pt;}
.y12_c00039{bottom:890.440000pt;}
.y14_c00039{bottom:891.226667pt;}
.y11_c00039{bottom:892.360000pt;}
.y13_c00039{bottom:893.306667pt;}
.ye_c00039{bottom:907.773333pt;}
.y10_c00039{bottom:908.733333pt;}
.yc_c00039{bottom:909.693333pt;}
.yf_c00039{bottom:909.893333pt;}
.yd_c00039{bottom:910.640000pt;}
.y7_c00039{bottom:925.106667pt;}
.ya_c00039{bottom:926.066667pt;}
.yb_c00039{bottom:926.640000pt;}
.y8_c00039{bottom:927.026667pt;}
.y9_c00039{bottom:927.226667pt;}
.y4_c00039{bottom:941.693333pt;}
.y3_c00039{bottom:942.440000pt;}
.y6_c00039{bottom:942.640000pt;}
.y5_c00039{bottom:943.773333pt;}
.y2_c00039{bottom:944.360000pt;}
.y1_c00039{bottom:979.226667pt;}
.h8_c00039{height:3.739141pt;}
.ha_c00039{height:12.988594pt;}
.h9_c00039{height:14.890964pt;}
.h1_c00039{height:20.466875pt;}
.h7_c00039{height:22.303646pt;}
.h4_c00039{height:27.879557pt;}
.h2_c00039{height:31.618698pt;}
.h5_c00039{height:35.357839pt;}
.h3_c00039{height:39.031380pt;}
.h6_c00039{height:42.770521pt;}
.h0_c00039{height:1186.666667pt;}
.w0_c00039{width:782.666667pt;}
.x0_c00039{left:0.000000pt;}
.xcd_c00039{left:120.000000pt;}
.xb5_c00039{left:136.000000pt;}
.x84_c00039{left:137.333333pt;}
.x2_c00039{left:139.040000pt;}
.xd2_c00039{left:143.626667pt;}
.xe2_c00039{left:148.000000pt;}
.xad_c00039{left:149.906667pt;}
.x3_c00039{left:151.626667pt;}
.x58_c00039{left:153.333333pt;}
.x4e_c00039{left:156.000000pt;}
.x90_c00039{left:160.000000pt;}
.xa8_c00039{left:161.706667pt;}
.xa0_c00039{left:162.666667pt;}
.x2b_c00039{left:164.373333pt;}
.xd8_c00039{left:168.000000pt;}
.x4f_c00039{left:168.960000pt;}
.x21_c00039{left:170.293333pt;}
.x35_c00039{left:172.000000pt;}
.x59_c00039{left:179.040000pt;}
.xda_c00039{left:180.000000pt;}
.x7e_c00039{left:181.706667pt;}
.x14_c00039{left:183.040000pt;}
.xe3_c00039{left:184.000000pt;}
.x85_c00039{left:185.333333pt;}
.x22_c00039{left:186.666667pt;}
.xbe_c00039{left:189.333333pt;}
.xa9_c00039{left:192.373333pt;}
.x2c_c00039{left:194.666667pt;}
.x67_c00039{left:196.373333pt;}
.x78_c00039{left:198.666667pt;}
.x4_c00039{left:201.706667pt;}
.xbf_c00039{left:204.960000pt;}
.x3d_c00039{left:207.626667pt;}
.x60_c00039{left:209.706667pt;}
.x23_c00039{left:210.666667pt;}
.x79_c00039{left:212.000000pt;}
.xae_c00039{left:213.333333pt;}
.xc5_c00039{left:214.666667pt;}
.x36_c00039{left:221.706667pt;}
.x3e_c00039{left:224.373333pt;}
.xb6_c00039{left:225.706667pt;}
.xaa_c00039{left:228.000000pt;}
.xaf_c00039{left:230.666667pt;}
.x68_c00039{left:232.000000pt;}
.x61_c00039{left:234.666667pt;}
.x15_c00039{left:235.626667pt;}
.x7a_c00039{left:238.293333pt;}
.x5a_c00039{left:240.373333pt;}
.x46_c00039{left:242.666667pt;}
.xdd_c00039{left:243.626667pt;}
.xe4_c00039{left:246.093333pt;}
.x3f_c00039{left:247.626667pt;}
.x69_c00039{left:248.960000pt;}
.x50_c00039{left:250.666667pt;}
.xa1_c00039{left:252.000000pt;}
.x6d_c00039{left:253.706667pt;}
.x2d_c00039{left:255.626667pt;}
.xb0_c00039{left:259.240000pt;}
.xb7_c00039{left:260.373333pt;}
.x5_c00039{left:261.333333pt;}
.x47_c00039{left:265.706667pt;}
.xcc_c00039{left:266.666667pt;}
.xc6_c00039{left:268.000000pt;}
.xc0_c00039{left:269.333333pt;}
.x24_c00039{left:270.293333pt;}
.x95_c00039{left:273.333333pt;}
.x9a_c00039{left:275.040000pt;}
.x37_c00039{left:278.666667pt;}
.x16_c00039{left:282.666667pt;}
.x2e_c00039{left:284.373333pt;}
.x6_c00039{left:286.293333pt;}
.xa2_c00039{left:288.960000pt;}
.x86_c00039{left:290.666667pt;}
.xc1_c00039{left:293.706667pt;}
.xc7_c00039{left:296.000000pt;}
.x7_c00039{left:298.666667pt;}
.xcf_c00039{left:300.000000pt;}
.x17_c00039{left:300.960000pt;}
.x73_c00039{left:304.000000pt;}
.xa3_c00039{left:305.706667pt;}
.x62_c00039{left:306.666667pt;}
.x25_c00039{left:310.666667pt;}
.x8_c00039{left:313.906667pt;}
.xb8_c00039{left:316.000000pt;}
.x51_c00039{left:316.960000pt;}
.x7b_c00039{left:323.040000pt;}
.xc2_c00039{left:326.666667pt;}
.x9_c00039{left:328.000000pt;}
.x9b_c00039{left:328.960000pt;}
.x48_c00039{left:330.666667pt;}
.xb9_c00039{left:333.333333pt;}
.x7f_c00039{left:336.000000pt;}
.xce_c00039{left:337.706667pt;}
.xd0_c00039{left:340.000000pt;}
.xde_c00039{left:341.333333pt;}
.xa_c00039{left:342.666667pt;}
.xd9_c00039{left:344.000000pt;}
.xd5_c00039{left:345.333333pt;}
.x40_c00039{left:346.666667pt;}
.x18_c00039{left:348.000000pt;}
.x2f_c00039{left:349.706667pt;}
.x74_c00039{left:352.373333pt;}
.x1_c00039{left:354.666667pt;}
.xb_c00039{left:357.333333pt;}
.x52_c00039{left:359.040000pt;}
.x80_c00039{left:361.706667pt;}
.x49_c00039{left:362.666667pt;}
.x6e_c00039{left:366.666667pt;}
.xba_c00039{left:369.333333pt;}
.x8c_c00039{left:370.293333pt;}
.xcb_c00039{left:372.000000pt;}
.xc_c00039{left:373.333333pt;}
.x5b_c00039{left:375.626667pt;}
.xc3_c00039{left:380.373333pt;}
.x7c_c00039{left:381.706667pt;}
.x53_c00039{left:384.000000pt;}
.x9c_c00039{left:385.706667pt;}
.x87_c00039{left:388.000000pt;}
.x30_c00039{left:390.666667pt;}
.xc8_c00039{left:392.000000pt;}
.xa4_c00039{left:393.333333pt;}
.x91_c00039{left:395.626667pt;}
.x19_c00039{left:397.706667pt;}
.x63_c00039{left:398.666667pt;}
.x5c_c00039{left:399.626667pt;}
.xc4_c00039{left:401.333333pt;}
.xd_c00039{left:404.373333pt;}
.x38_c00039{left:408.373333pt;}
.xab_c00039{left:409.333333pt;}
.x88_c00039{left:410.666667pt;}
.x5d_c00039{left:412.000000pt;}
.x6f_c00039{left:413.333333pt;}
.x64_c00039{left:416.000000pt;}
.x41_c00039{left:417.333333pt;}
.x26_c00039{left:420.000000pt;}
.xdf_c00039{left:421.333333pt;}
.x1a_c00039{left:422.666667pt;}
.x7d_c00039{left:424.373333pt;}
.xc9_c00039{left:425.333333pt;}
.xbb_c00039{left:428.000000pt;}
.x27_c00039{left:431.040000pt;}
.x39_c00039{left:434.666667pt;}
.xe_c00039{left:436.000000pt;}
.x31_c00039{left:437.333333pt;}
.x70_c00039{left:438.293333pt;}
.x81_c00039{left:444.960000pt;}
.x5e_c00039{left:449.706667pt;}
.x89_c00039{left:452.000000pt;}
.x54_c00039{left:456.000000pt;}
.xb1_c00039{left:458.293333pt;}
.xd3_c00039{left:460.000000pt;}
.x42_c00039{left:461.333333pt;}
.x4a_c00039{left:462.293333pt;}
.xe5_c00039{left:464.000000pt;}
.x92_c00039{left:465.333333pt;}
.xa5_c00039{left:466.666667pt;}
.x6a_c00039{left:468.000000pt;}
.x1b_c00039{left:471.040000pt;}
.xf_c00039{left:478.666667pt;}
.x28_c00039{left:481.706667pt;}
.x93_c00039{left:482.666667pt;}
.x82_c00039{left:484.373333pt;}
.xb2_c00039{left:486.666667pt;}
.x8a_c00039{left:487.626667pt;}
.x4b_c00039{left:489.333333pt;}
.xbc_c00039{left:492.000000pt;}
.x9d_c00039{left:496.000000pt;}
.x6b_c00039{left:497.333333pt;}
.x8d_c00039{left:500.000000pt;}
.xe0_c00039{left:501.333333pt;}
.x32_c00039{left:502.666667pt;}
.xd6_c00039{left:504.000000pt;}
.xa6_c00039{left:505.333333pt;}
.xac_c00039{left:506.666667pt;}
.x75_c00039{left:511.040000pt;}
.x96_c00039{left:512.373333pt;}
.x3a_c00039{left:513.333333pt;}
.x43_c00039{left:516.373333pt;}
.xb3_c00039{left:517.333333pt;}
.x1c_c00039{left:520.000000pt;}
.x94_c00039{left:521.706667pt;}
.xca_c00039{left:524.960000pt;}
.x4c_c00039{left:529.333333pt;}
.x33_c00039{left:532.373333pt;}
.x1d_c00039{left:535.040000pt;}
.x5f_c00039{left:536.960000pt;}
.x10_c00039{left:538.666667pt;}
.x55_c00039{left:540.373333pt;}
.xbd_c00039{left:541.333333pt;}
.x3b_c00039{left:551.626667pt;}
.x29_c00039{left:553.333333pt;}
.x97_c00039{left:554.293333pt;}
.x11_c00039{left:556.373333pt;}
.x65_c00039{left:558.666667pt;}
.x8e_c00039{left:559.626667pt;}
.x56_c00039{left:564.000000pt;}
.x1e_c00039{left:568.000000pt;}
.x98_c00039{left:571.040000pt;}
.x3c_c00039{left:572.373333pt;}
.xe1_c00039{left:573.333333pt;}
.x6c_c00039{left:574.293333pt;}
.x9e_c00039{left:577.333333pt;}
.x44_c00039{left:580.000000pt;}
.x76_c00039{left:586.666667pt;}
.x12_c00039{left:589.333333pt;}
.x71_c00039{left:591.040000pt;}
.x1f_c00039{left:593.333333pt;}
.x99_c00039{left:594.666667pt;}
.x83_c00039{left:595.626667pt;}
.x4d_c00039{left:600.000000pt;}
.x2a_c00039{left:600.960000pt;}
.x57_c00039{left:604.373333pt;}
.x45_c00039{left:610.293333pt;}
.xd4_c00039{left:612.000000pt;}
.xdb_c00039{left:613.706667pt;}
.x66_c00039{left:614.666667pt;}
.x77_c00039{left:615.626667pt;}
.x8b_c00039{left:618.466667pt;}
.x8f_c00039{left:622.666667pt;}
.x72_c00039{left:625.706667pt;}
.x13_c00039{left:627.626667pt;}
.x20_c00039{left:632.373333pt;}
.x9f_c00039{left:638.666667pt;}
.xa7_c00039{left:639.626667pt;}
.xb4_c00039{left:641.333333pt;}
.x34_c00039{left:644.000000pt;}
.xd1_c00039{left:648.000000pt;}
.xdc_c00039{left:649.333333pt;}
.xd7_c00039{left:652.000000pt;}
}





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

.ir_c00040:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00040{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00040;src:url('chunks/assets/font_2d6e32a49f3334a84e52818d.woff2')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mce_c00040{transform:matrix(0.124824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124824,0.000000,0.000000,0.250000,0,0);}
.m53_c00040{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m91_c00040{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m82_c00040{transform:matrix(0.348378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348378,0.000000,0.000000,0.250000,0,0);}
.m8e_c00040{transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);}
.mb8_c00040{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);}
.me2_c00040{transform:matrix(0.352257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352257,0.000000,0.000000,0.250000,0,0);}
.me0_c00040{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m76_c00040{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.mc9_c00040{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m5_c00040{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m2e_c00040{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m14_c00040{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m9d_c00040{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m77_c00040{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m79_c00040{transform:matrix(0.372316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372316,0.000000,0.000000,0.250000,0,0);}
.m94_c00040{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m55_c00040{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.mf1_c00040{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mcd_c00040{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m85_c00040{transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);}
.m96_c00040{transform:matrix(0.381902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381902,0.000000,0.000000,0.250000,0,0);}
.m25_c00040{transform:matrix(0.385736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385736,0.000000,0.000000,0.250000,0,0);}
.mb1_c00040{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m13_c00040{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m6e_c00040{transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);}
.mc_c00040{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m99_c00040{transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);}
.m3b_c00040{transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);}
.m7c_c00040{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m31_c00040{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.ma1_c00040{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m8b_c00040{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m38_c00040{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m2c_c00040{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m27_c00040{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m45_c00040{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.mac_c00040{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.ma5_c00040{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m83_c00040{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m11_c00040{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m80_c00040{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m87_c00040{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m65_c00040{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m8d_c00040{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m60_c00040{transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);}
.m89_c00040{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m86_c00040{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m6f_c00040{transform:matrix(0.412193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412193,0.000000,0.000000,0.250000,0,0);}
.m64_c00040{transform:matrix(0.413265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413265,0.000000,0.000000,0.250000,0,0);}
.m59_c00040{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.mae_c00040{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mdf_c00040{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m5c_c00040{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.mf5_c00040{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m4b_c00040{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.mc5_c00040{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m5f_c00040{transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);}
.md6_c00040{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.md9_c00040{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.me8_c00040{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.md3_c00040{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.m3a_c00040{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m4c_c00040{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.mbb_c00040{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.mf0_c00040{transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);}
.md1_c00040{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.mf9_c00040{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.mc6_c00040{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m42_c00040{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m4f_c00040{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.mbf_c00040{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m12_c00040{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m7b_c00040{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m7d_c00040{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m5d_c00040{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m5b_c00040{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mcf_c00040{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.me9_c00040{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m3f_c00040{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mdd_c00040{transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);}
.mde_c00040{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m23_c00040{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.ma6_c00040{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mc7_c00040{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.mbc_c00040{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m1a_c00040{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.mfa_c00040{transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);}
.m52_c00040{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m6c_c00040{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.med_c00040{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m93_c00040{transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);}
.me3_c00040{transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);}
.mb9_c00040{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.me6_c00040{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.mf3_c00040{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m40_c00040{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.mbe_c00040{transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);}
.m18_c00040{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m69_c00040{transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);}
.m75_c00040{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m7_c00040{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.m61_c00040{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m62_c00040{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m56_c00040{transform:matrix(0.463445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463445,0.000000,0.000000,0.250000,0,0);}
.mb0_c00040{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.m30_c00040{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m46_c00040{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m6a_c00040{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.m1f_c00040{transform:matrix(0.471429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471429,0.000000,0.000000,0.250000,0,0);}
.m6b_c00040{transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);}
.mdc_c00040{transform:matrix(0.476345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476345,0.000000,0.000000,0.250000,0,0);}
.m1c_c00040{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.md5_c00040{transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);}
.m54_c00040{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m8f_c00040{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.me7_c00040{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m6_c00040{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mc2_c00040{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.mf_c00040{transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);}
.m49_c00040{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m34_c00040{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.md2_c00040{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.mc8_c00040{transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);}
.m22_c00040{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m98_c00040{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.ma_c00040{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.mdb_c00040{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m39_c00040{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.ma9_c00040{transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);}
.m50_c00040{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m68_c00040{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m84_c00040{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m95_c00040{transform:matrix(0.497407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497407,0.000000,0.000000,0.250000,0,0);}
.m24_c00040{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_c00040{transform:matrix(0.502941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502941,0.000000,0.000000,0.250000,0,0);}
.md8_c00040{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m48_c00040{transform:matrix(0.503711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503711,0.000000,0.000000,0.250000,0,0);}
.ma7_c00040{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mda_c00040{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.mef_c00040{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.md4_c00040{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m47_c00040{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m3_c00040{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.mf6_c00040{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m9a_c00040{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m44_c00040{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m1b_c00040{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mf2_c00040{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.md_c00040{transform:matrix(0.515770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515770,0.000000,0.000000,0.250000,0,0);}
.m19_c00040{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m2_c00040{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m29_c00040{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mcb_c00040{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m72_c00040{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m8c_c00040{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m3d_c00040{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.ma4_c00040{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.md7_c00040{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m92_c00040{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.ma0_c00040{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mca_c00040{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.me_c00040{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m15_c00040{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mb2_c00040{transform:matrix(0.532931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532931,0.000000,0.000000,0.250000,0,0);}
.mb4_c00040{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m90_c00040{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.ma3_c00040{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m4_c00040{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m32_c00040{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mcc_c00040{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m2a_c00040{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m74_c00040{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.md0_c00040{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.me5_c00040{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m67_c00040{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m8_c00040{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m5a_c00040{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.mb3_c00040{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m9c_c00040{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m73_c00040{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mc4_c00040{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m5e_c00040{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m7f_c00040{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mb5_c00040{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m2b_c00040{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mea_c00040{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m97_c00040{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m9e_c00040{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m37_c00040{transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);}
.m35_c00040{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m9_c00040{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m8a_c00040{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m10_c00040{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mb6_c00040{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m4e_c00040{transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);}
.m1d_c00040{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.meb_c00040{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mc0_c00040{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mab_c00040{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.mb_c00040{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m6d_c00040{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m51_c00040{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m20_c00040{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.me4_c00040{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m78_c00040{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mf4_c00040{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m1e_c00040{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m81_c00040{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m21_c00040{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mee_c00040{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.maf_c00040{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.m57_c00040{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m3e_c00040{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m33_c00040{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);}
.mf7_c00040{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mf8_c00040{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.maa_c00040{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mc3_c00040{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m36_c00040{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m71_c00040{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.m2d_c00040{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m17_c00040{transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);}
.m4a_c00040{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_c00040{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m9b_c00040{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mc1_c00040{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.mba_c00040{transform:matrix(0.650934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650934,0.000000,0.000000,0.250000,0,0);}
.m1_c00040{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m28_c00040{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.ma8_c00040{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m58_c00040{transform:matrix(0.681765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681765,0.000000,0.000000,0.250000,0,0);}
.m26_c00040{transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);}
.m63_c00040{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mec_c00040{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m43_c00040{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m41_c00040{transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);}
.m9f_c00040{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m3c_c00040{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m7e_c00040{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.ma2_c00040{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m88_c00040{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m16_c00040{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m4d_c00040{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mbd_c00040{transform:matrix(0.768429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.768429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.768429,0.000000,0.000000,0.250000,0,0);}
.mad_c00040{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.me1_c00040{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m2f_c00040{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.mb7_c00040{transform:matrix(0.888971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.888971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.888971,0.000000,0.000000,0.250000,0,0);}
.m7a_c00040{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m70_c00040{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws1_c00040{word-spacing:-4.530080px;}
.ws2_c00040{word-spacing:0.000000px;}
.ws0_c00040{word-spacing:1.497839px;}
.fc0_c00040{color:transparent;}
.fs8_c00040{font-size:3.420000px;}
.fs7_c00040{font-size:13.620000px;}
.fs1_c00040{font-size:18.720000px;}
.fs0_c00040{font-size:20.400000px;}
.fs5_c00040{font-size:25.500000px;}
.fs2_c00040{font-size:28.920000px;}
.fs4_c00040{font-size:32.340000px;}
.fs3_c00040{font-size:35.700000px;}
.fs6_c00040{font-size:39.120000px;}
.fs9_c00040{font-size:42.540000px;}
.y0_c00040{bottom:0.000000px;}
.ye6_c00040{bottom:251.745000px;}
.ye5_c00040{bottom:253.470000px;}
.ye4_c00040{bottom:254.325000px;}
.ye0_c00040{bottom:269.745000px;}
.ye2_c00040{bottom:270.405000px;}
.yde_c00040{bottom:271.245000px;}
.ye1_c00040{bottom:271.905000px;}
.ydf_c00040{bottom:273.405000px;}
.ydd_c00040{bottom:273.630000px;}
.ye3_c00040{bottom:274.470000px;}
.ydc_c00040{bottom:276.405000px;}
.ydb_c00040{bottom:277.905000px;}
.yd8_c00040{bottom:288.825000px;}
.yd5_c00040{bottom:290.745000px;}
.yd7_c00040{bottom:291.630000px;}
.yd4_c00040{bottom:292.470000px;}
.yd6_c00040{bottom:292.905000px;}
.yda_c00040{bottom:293.130000px;}
.yd9_c00040{bottom:294.405000px;}
.yd3_c00040{bottom:295.050000px;}
.yd2_c00040{bottom:297.630000px;}
.yce_c00040{bottom:310.245000px;}
.ycf_c00040{bottom:310.905000px;}
.yd1_c00040{bottom:311.745000px;}
.yd0_c00040{bottom:311.970000px;}
.ycd_c00040{bottom:312.405000px;}
.ycc_c00040{bottom:313.905000px;}
.ycb_c00040{bottom:317.325000px;}
.yc9_c00040{bottom:328.905000px;}
.yc7_c00040{bottom:329.745000px;}
.yc8_c00040{bottom:330.825000px;}
.yca_c00040{bottom:331.245000px;}
.yc5_c00040{bottom:331.470000px;}
.yc6_c00040{bottom:331.905000px;}
.yc4_c00040{bottom:332.325000px;}
.yc3_c00040{bottom:333.180000px;}
.yc0_c00040{bottom:349.245000px;}
.ybf_c00040{bottom:350.745000px;}
.yc1_c00040{bottom:351.405000px;}
.yc2_c00040{bottom:351.630000px;}
.ybe_c00040{bottom:355.245000px;}
.ybc_c00040{bottom:368.745000px;}
.ybd_c00040{bottom:369.825000px;}
.ybb_c00040{bottom:370.905000px;}
.yba_c00040{bottom:372.405000px;}
.yb9_c00040{bottom:374.745000px;}
.yb7_c00040{bottom:388.245000px;}
.yb1_c00040{bottom:388.680000px;}
.yb8_c00040{bottom:389.325000px;}
.yb6_c00040{bottom:390.405000px;}
.yb3_c00040{bottom:391.245000px;}
.yb5_c00040{bottom:391.905000px;}
.yb4_c00040{bottom:392.130000px;}
.yb2_c00040{bottom:393.630000px;}
.yb0_c00040{bottom:395.550000px;}
.yae_c00040{bottom:407.745000px;}
.yaf_c00040{bottom:409.905000px;}
.yad_c00040{bottom:411.825000px;}
.yac_c00040{bottom:413.130000px;}
.yab_c00040{bottom:415.905000px;}
.ya8_c00040{bottom:426.405000px;}
.ya6_c00040{bottom:427.245000px;}
.ya9_c00040{bottom:428.970000px;}
.ya7_c00040{bottom:429.405000px;}
.ya5_c00040{bottom:429.630000px;}
.yaa_c00040{bottom:430.470000px;}
.ya4_c00040{bottom:430.905000px;}
.ya3_c00040{bottom:432.405000px;}
.ya1_c00040{bottom:446.745000px;}
.ya0_c00040{bottom:448.905000px;}
.ya2_c00040{bottom:449.130000px;}
.y9f_c00040{bottom:450.405000px;}
.y9e_c00040{bottom:450.825000px;}
.y9c_c00040{bottom:451.245000px;}
.y9d_c00040{bottom:451.470000px;}
.y9b_c00040{bottom:454.050000px;}
.y9a_c00040{bottom:466.905000px;}
.y98_c00040{bottom:467.745000px;}
.y97_c00040{bottom:468.405000px;}
.y99_c00040{bottom:468.630000px;}
.y96_c00040{bottom:469.905000px;}
.y95_c00040{bottom:471.405000px;}
.y94_c00040{bottom:473.325000px;}
.y93_c00040{bottom:487.245000px;}
.y92_c00040{bottom:488.130000px;}
.y91_c00040{bottom:488.325000px;}
.y8f_c00040{bottom:489.405000px;}
.y90_c00040{bottom:490.905000px;}
.y8d_c00040{bottom:504.825000px;}
.y8a_c00040{bottom:505.470000px;}
.y8e_c00040{bottom:506.745000px;}
.y8c_c00040{bottom:507.630000px;}
.y89_c00040{bottom:507.825000px;}
.y87_c00040{bottom:508.050000px;}
.y8b_c00040{bottom:508.470000px;}
.y88_c00040{bottom:508.905000px;}
.y86_c00040{bottom:510.405000px;}
.y84_c00040{bottom:526.245000px;}
.y85_c00040{bottom:527.130000px;}
.y81_c00040{bottom:528.405000px;}
.y82_c00040{bottom:528.420000px;}
.y80_c00040{bottom:529.245000px;}
.y83_c00040{bottom:529.470000px;}
.y7f_c00040{bottom:551.745000px;}
.y7e_c00040{bottom:567.630000px;}
.y7d_c00040{bottom:568.905000px;}
.y7c_c00040{bottom:569.745000px;}
.y78_c00040{bottom:586.245000px;}
.y79_c00040{bottom:586.905000px;}
.y7a_c00040{bottom:587.970000px;}
.y7b_c00040{bottom:588.405000px;}
.y77_c00040{bottom:590.325000px;}
.y76_c00040{bottom:604.680000px;}
.y75_c00040{bottom:605.745000px;}
.y74_c00040{bottom:607.905000px;}
.y73_c00040{bottom:607.920000px;}
.y72_c00040{bottom:608.745000px;}
.y70_c00040{bottom:625.245000px;}
.y6f_c00040{bottom:626.745000px;}
.y71_c00040{bottom:627.405000px;}
.y6e_c00040{bottom:628.905000px;}
.y6b_c00040{bottom:644.745000px;}
.y6d_c00040{bottom:645.180000px;}
.y69_c00040{bottom:645.630000px;}
.y6c_c00040{bottom:646.905000px;}
.y6a_c00040{bottom:646.920000px;}
.y68_c00040{bottom:647.745000px;}
.y67_c00040{bottom:664.245000px;}
.y65_c00040{bottom:665.745000px;}
.y64_c00040{bottom:666.180000px;}
.y66_c00040{bottom:666.405000px;}
.y5e_c00040{bottom:683.745000px;}
.y60_c00040{bottom:683.970000px;}
.y5d_c00040{bottom:684.825000px;}
.y5f_c00040{bottom:685.245000px;}
.y5b_c00040{bottom:685.680000px;}
.y62_c00040{bottom:685.905000px;}
.y61_c00040{bottom:686.130000px;}
.y63_c00040{bottom:686.970000px;}
.y5c_c00040{bottom:687.420000px;}
.y58_c00040{bottom:704.745000px;}
.y5a_c00040{bottom:705.405000px;}
.y59_c00040{bottom:706.470000px;}
.y57_c00040{bottom:706.680000px;}
.y52_c00040{bottom:723.180000px;}
.y56_c00040{bottom:724.245000px;}
.y51_c00040{bottom:724.680000px;}
.y54_c00040{bottom:724.905000px;}
.y55_c00040{bottom:726.405000px;}
.y53_c00040{bottom:726.420000px;}
.y4e_c00040{bottom:754.470000px;}
.y4f_c00040{bottom:756.405000px;}
.y4d_c00040{bottom:757.470000px;}
.y4c_c00040{bottom:758.325000px;}
.y50_c00040{bottom:758.550000px;}
.y46_c00040{bottom:773.970000px;}
.y47_c00040{bottom:774.825000px;}
.y48_c00040{bottom:775.050000px;}
.y49_c00040{bottom:775.905000px;}
.y4a_c00040{bottom:776.130000px;}
.y45_c00040{bottom:776.970000px;}
.y4b_c00040{bottom:777.195000px;}
.y41_c00040{bottom:806.745000px;}
.y44_c00040{bottom:808.245000px;}
.y42_c00040{bottom:808.905000px;}
.y43_c00040{bottom:809.970000px;}
.y3e_c00040{bottom:860.325000px;}
.y3f_c00040{bottom:860.745000px;}
.y40_c00040{bottom:861.825000px;}
.y3c_c00040{bottom:862.245000px;}
.y3d_c00040{bottom:862.905000px;}
.y3b_c00040{bottom:880.245000px;}
.y3a_c00040{bottom:881.745000px;}
.y38_c00040{bottom:882.405000px;}
.y39_c00040{bottom:882.630000px;}
.y37_c00040{bottom:883.905000px;}
.y36_c00040{bottom:885.405000px;}
.y34_c00040{bottom:900.825000px;}
.y35_c00040{bottom:901.905000px;}
.y33_c00040{bottom:903.405000px;}
.y32_c00040{bottom:903.825000px;}
.y2c_c00040{bottom:919.245000px;}
.y29_c00040{bottom:920.325000px;}
.y2f_c00040{bottom:920.745000px;}
.y2d_c00040{bottom:921.405000px;}
.y30_c00040{bottom:921.825000px;}
.y2b_c00040{bottom:922.050000px;}
.y2e_c00040{bottom:922.470000px;}
.y31_c00040{bottom:922.905000px;}
.y2a_c00040{bottom:923.130000px;}
.y24_c00040{bottom:938.745000px;}
.y23_c00040{bottom:940.680000px;}
.y26_c00040{bottom:940.905000px;}
.y27_c00040{bottom:941.130000px;}
.y25_c00040{bottom:941.970000px;}
.y28_c00040{bottom:942.405000px;}
.y21_c00040{bottom:959.745000px;}
.y20_c00040{bottom:961.470000px;}
.y1f_c00040{bottom:961.905000px;}
.y22_c00040{bottom:962.970000px;}
.y1c_c00040{bottom:979.245000px;}
.y1d_c00040{bottom:980.130000px;}
.y1e_c00040{bottom:980.970000px;}
.y1b_c00040{bottom:981.405000px;}
.y1a_c00040{bottom:981.630000px;}
.y19_c00040{bottom:983.325000px;}
.y15_c00040{bottom:998.745000px;}
.y13_c00040{bottom:999.180000px;}
.y14_c00040{bottom:999.630000px;}
.y16_c00040{bottom:1000.470000px;}
.y17_c00040{bottom:1000.905000px;}
.y18_c00040{bottom:1001.970000px;}
.y10_c00040{bottom:1016.970000px;}
.y11_c00040{bottom:1018.245000px;}
.y12_c00040{bottom:1019.130000px;}
.yf_c00040{bottom:1020.405000px;}
.ye_c00040{bottom:1020.825000px;}
.yb_c00040{bottom:1037.745000px;}
.ya_c00040{bottom:1039.905000px;}
.yc_c00040{bottom:1040.130000px;}
.y9_c00040{bottom:1040.325000px;}
.yd_c00040{bottom:1040.970000px;}
.y5_c00040{bottom:1057.245000px;}
.y6_c00040{bottom:1058.325000px;}
.y7_c00040{bottom:1058.745000px;}
.y4_c00040{bottom:1059.405000px;}
.y8_c00040{bottom:1059.825000px;}
.y3_c00040{bottom:1060.905000px;}
.y1_c00040{bottom:1097.550000px;}
.y2_c00040{bottom:1098.630000px;}
.h9_c00040{height:4.206533px;}
.h8_c00040{height:16.752334px;}
.h2_c00040{height:23.025234px;}
.h1_c00040{height:25.091602px;}
.h6_c00040{height:31.364502px;}
.h3_c00040{height:35.571035px;}
.h5_c00040{height:39.777568px;}
.h4_c00040{height:43.910303px;}
.h7_c00040{height:48.116836px;}
.ha_c00040{height:52.323369px;}
.h0_c00040{height:1335.000000px;}
.w0_c00040{width:880.500000px;}
.x0_c00040{left:0.000000px;}
.x27_c00040{left:151.500000px;}
.x10_c00040{left:153.000000px;}
.x3_c00040{left:154.080000px;}
.xec_c00040{left:155.355000px;}
.x7f_c00040{left:166.080000px;}
.x62_c00040{left:168.000000px;}
.x8c_c00040{left:169.500000px;}
.xd8_c00040{left:171.000000px;}
.x55_c00040{left:175.500000px;}
.xd9_c00040{left:180.420000px;}
.x4_c00040{left:185.580000px;}
.x56_c00040{left:187.500000px;}
.x63_c00040{left:189.420000px;}
.xf4_c00040{left:190.500000px;}
.x11_c00040{left:191.580000px;}
.xa5_c00040{left:194.580000px;}
.x33_c00040{left:199.500000px;}
.x89_c00040{left:202.500000px;}
.x3f_c00040{left:203.580000px;}
.x83_c00040{left:208.080000px;}
.x5f_c00040{left:210.420000px;}
.xc2_c00040{left:211.920000px;}
.x34_c00040{left:214.500000px;}
.x64_c00040{left:216.000000px;}
.x49_c00040{left:218.775000px;}
.x12_c00040{left:221.580000px;}
.xe4_c00040{left:222.645000px;}
.x1c_c00040{left:223.920000px;}
.x28_c00040{left:226.920000px;}
.xad_c00040{left:228.000000px;}
.x73_c00040{left:229.080000px;}
.xfa_c00040{left:230.580000px;}
.x8a_c00040{left:235.500000px;}
.x5_c00040{left:237.000000px;}
.xda_c00040{left:238.920000px;}
.xe0_c00040{left:240.000000px;}
.xbc_c00040{left:242.580000px;}
.x97_c00040{left:249.000000px;}
.xf0_c00040{left:250.920000px;}
.x77_c00040{left:253.500000px;}
.x8b_c00040{left:255.000000px;}
.xae_c00040{left:256.080000px;}
.x8d_c00040{left:259.500000px;}
.x1d_c00040{left:261.000000px;}
.x40_c00040{left:262.080000px;}
.x4a_c00040{left:264.000000px;}
.xb4_c00040{left:266.580000px;}
.x84_c00040{left:268.500000px;}
.x6_c00040{left:270.000000px;}
.x9e_c00040{left:272.580000px;}
.x78_c00040{left:274.500000px;}
.x29_c00040{left:276.420000px;}
.xa6_c00040{left:277.920000px;}
.x41_c00040{left:279.000000px;}
.x13_c00040{left:280.500000px;}
.x4b_c00040{left:282.420000px;}
.x1e_c00040{left:285.000000px;}
.x65_c00040{left:286.920000px;}
.x6e_c00040{left:288.000000px;}
.x85_c00040{left:289.500000px;}
.x57_c00040{left:292.500000px;}
.x35_c00040{left:294.000000px;}
.x9f_c00040{left:297.000000px;}
.x98_c00040{left:300.000000px;}
.xdb_c00040{left:301.500000px;}
.xbd_c00040{left:303.000000px;}
.x42_c00040{left:305.145000px;}
.xf1_c00040{left:307.500000px;}
.x4c_c00040{left:309.000000px;}
.x60_c00040{left:310.920000px;}
.xa0_c00040{left:312.000000px;}
.x66_c00040{left:313.500000px;}
.x2a_c00040{left:318.420000px;}
.x99_c00040{left:320.580000px;}
.x7_c00040{left:322.500000px;}
.x94_c00040{left:324.000000px;}
.x74_c00040{left:331.080000px;}
.xc9_c00040{left:333.420000px;}
.x61_c00040{left:337.920000px;}
.x8_c00040{left:339.000000px;}
.xb5_c00040{left:340.500000px;}
.xdc_c00040{left:341.580000px;}
.x6f_c00040{left:343.500000px;}
.x79_c00040{left:345.000000px;}
.x8e_c00040{left:346.275000px;}
.x9a_c00040{left:347.580000px;}
.xed_c00040{left:349.080000px;}
.xd0_c00040{left:351.000000px;}
.x58_c00040{left:352.500000px;}
.xca_c00040{left:353.580000px;}
.x1f_c00040{left:357.420000px;}
.x86_c00040{left:358.500000px;}
.x67_c00040{left:361.080000px;}
.x59_c00040{left:363.420000px;}
.x36_c00040{left:364.500000px;}
.x80_c00040{left:369.420000px;}
.x4d_c00040{left:370.920000px;}
.xa7_c00040{left:373.080000px;}
.x43_c00040{left:376.080000px;}
.x2b_c00040{left:378.000000px;}
.xb6_c00040{left:380.580000px;}
.x95_c00040{left:382.080000px;}
.xd4_c00040{left:383.580000px;}
.x37_c00040{left:385.500000px;}
.x20_c00040{left:387.855000px;}
.xd1_c00040{left:391.920000px;}
.xbe_c00040{left:393.000000px;}
.x1_c00040{left:394.500000px;}
.x70_c00040{left:395.580000px;}
.x2c_c00040{left:398.580000px;}
.x38_c00040{left:400.920000px;}
.x81_c00040{left:404.580000px;}
.x5a_c00040{left:406.500000px;}
.xdd_c00040{left:408.000000px;}
.xa8_c00040{left:409.920000px;}
.xf5_c00040{left:411.000000px;}
.xbf_c00040{left:414.000000px;}
.x7a_c00040{left:415.500000px;}
.x14_c00040{left:418.080000px;}
.xcb_c00040{left:421.500000px;}
.xe7_c00040{left:423.645000px;}
.x71_c00040{left:425.580000px;}
.x9_c00040{left:427.500000px;}
.x68_c00040{left:429.000000px;}
.x96_c00040{left:430.080000px;}
.x4e_c00040{left:433.080000px;}
.x9b_c00040{left:434.580000px;}
.x75_c00040{left:436.080000px;}
.xaf_c00040{left:438.000000px;}
.xa9_c00040{left:441.000000px;}
.x44_c00040{left:442.500000px;}
.x39_c00040{left:445.080000px;}
.x21_c00040{left:447.420000px;}
.xc3_c00040{left:448.920000px;}
.x8f_c00040{left:450.000000px;}
.xa_c00040{left:451.920000px;}
.xcc_c00040{left:454.500000px;}
.x7b_c00040{left:455.580000px;}
.x45_c00040{left:457.500000px;}
.x82_c00040{left:459.645000px;}
.xe1_c00040{left:460.920000px;}
.x2d_c00040{left:462.000000px;}
.x15_c00040{left:463.500000px;}
.x4f_c00040{left:465.000000px;}
.xd2_c00040{left:471.000000px;}
.xf6_c00040{left:475.500000px;}
.xb7_c00040{left:477.000000px;}
.xc4_c00040{left:478.500000px;}
.xe8_c00040{left:479.580000px;}
.x2e_c00040{left:481.500000px;}
.x22_c00040{left:483.420000px;}
.xe2_c00040{left:485.580000px;}
.xb_c00040{left:487.500000px;}
.x16_c00040{left:489.000000px;}
.xb0_c00040{left:490.500000px;}
.xf7_c00040{left:493.920000px;}
.xc0_c00040{left:496.080000px;}
.x69_c00040{left:499.080000px;}
.x7c_c00040{left:500.580000px;}
.x3a_c00040{left:504.000000px;}
.x23_c00040{left:505.920000px;}
.xd3_c00040{left:507.420000px;}
.x87_c00040{left:511.500000px;}
.x9c_c00040{left:515.145000px;}
.x90_c00040{left:517.080000px;}
.xe9_c00040{left:519.000000px;}
.xde_c00040{left:522.000000px;}
.x7d_c00040{left:523.920000px;}
.xd5_c00040{left:526.920000px;}
.x6a_c00040{left:528.645000px;}
.x2f_c00040{left:532.920000px;}
.xc7_c00040{left:534.000000px;}
.x91_c00040{left:535.920000px;}
.x3b_c00040{left:537.000000px;}
.x46_c00040{left:538.080000px;}
.x76_c00040{left:541.080000px;}
.xb1_c00040{left:543.000000px;}
.xc_c00040{left:544.080000px;}
.xa1_c00040{left:545.580000px;}
.xb8_c00040{left:547.920000px;}
.x50_c00040{left:550.920000px;}
.xaa_c00040{left:552.000000px;}
.x72_c00040{left:553.275000px;}
.xc5_c00040{left:555.000000px;}
.x3c_c00040{left:557.145000px;}
.xe5_c00040{left:559.500000px;}
.x5b_c00040{left:562.920000px;}
.xd_c00040{left:564.420000px;}
.x17_c00040{left:565.500000px;}
.x7e_c00040{left:569.580000px;}
.xb9_c00040{left:571.500000px;}
.xab_c00040{left:574.080000px;}
.xe3_c00040{left:576.855000px;}
.x51_c00040{left:580.080000px;}
.xf2_c00040{left:583.500000px;}
.x47_c00040{left:584.580000px;}
.xba_c00040{left:586.500000px;}
.x9d_c00040{left:589.080000px;}
.x5c_c00040{left:595.500000px;}
.xf8_c00040{left:597.000000px;}
.x18_c00040{left:598.500000px;}
.x6b_c00040{left:600.000000px;}
.x92_c00040{left:601.080000px;}
.xd6_c00040{left:602.580000px;}
.xcd_c00040{left:604.500000px;}
.xb2_c00040{left:607.080000px;}
.xea_c00040{left:609.420000px;}
.x19_c00040{left:610.500000px;}
.x52_c00040{left:612.000000px;}
.xe6_c00040{left:615.000000px;}
.x30_c00040{left:618.855000px;}
.xee_c00040{left:619.920000px;}
.x24_c00040{left:621.000000px;}
.xd7_c00040{left:622.920000px;}
.xa2_c00040{left:625.275000px;}
.x5d_c00040{left:628.080000px;}
.xac_c00040{left:630.000000px;}
.xeb_c00040{left:632.355000px;}
.xb3_c00040{left:642.420000px;}
.x88_c00040{left:643.500000px;}
.xe_c00040{left:645.000000px;}
.x53_c00040{left:646.500000px;}
.x3d_c00040{left:650.580000px;}
.x25_c00040{left:654.000000px;}
.x48_c00040{left:657.420000px;}
.xce_c00040{left:658.500000px;}
.x1a_c00040{left:661.920000px;}
.x54_c00040{left:664.080000px;}
.xa3_c00040{left:666.000000px;}
.xc1_c00040{left:667.500000px;}
.x6c_c00040{left:669.000000px;}
.xbb_c00040{left:672.420000px;}
.x5e_c00040{left:673.500000px;}
.xcf_c00040{left:682.080000px;}
.xa4_c00040{left:683.580000px;}
.x31_c00040{left:685.275000px;}
.x1b_c00040{left:687.420000px;}
.xf_c00040{left:691.500000px;}
.x93_c00040{left:693.000000px;}
.xc8_c00040{left:694.275000px;}
.x6d_c00040{left:696.420000px;}
.xef_c00040{left:697.920000px;}
.xdf_c00040{left:702.420000px;}
.xc6_c00040{left:703.500000px;}
.xf9_c00040{left:705.000000px;}
.x3e_c00040{left:706.920000px;}
.x26_c00040{left:708.000000px;}
.x2_c00040{left:712.920000px;}
.x32_c00040{left:721.500000px;}
.xf3_c00040{left:723.000000px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.ls0_c00040{letter-spacing:0.000000pt;}
.ws1_c00040{word-spacing:-4.026738pt;}
.ws2_c00040{word-spacing:0.000000pt;}
.ws0_c00040{word-spacing:1.331412pt;}
.fs8_c00040{font-size:3.040000pt;}
.fs7_c00040{font-size:12.106667pt;}
.fs1_c00040{font-size:16.640000pt;}
.fs0_c00040{font-size:18.133333pt;}
.fs5_c00040{font-size:22.666667pt;}
.fs2_c00040{font-size:25.706667pt;}
.fs4_c00040{font-size:28.746667pt;}
.fs3_c00040{font-size:31.733333pt;}
.fs6_c00040{font-size:34.773333pt;}
.fs9_c00040{font-size:37.813333pt;}
.y0_c00040{bottom:0.000000pt;}
.ye6_c00040{bottom:223.773333pt;}
.ye5_c00040{bottom:225.306667pt;}
.ye4_c00040{bottom:226.066667pt;}
.ye0_c00040{bottom:239.773333pt;}
.ye2_c00040{bottom:240.360000pt;}
.yde_c00040{bottom:241.106667pt;}
.ye1_c00040{bottom:241.693333pt;}
.ydf_c00040{bottom:243.026667pt;}
.ydd_c00040{bottom:243.226667pt;}
.ye3_c00040{bottom:243.973333pt;}
.ydc_c00040{bottom:245.693333pt;}
.ydb_c00040{bottom:247.026667pt;}
.yd8_c00040{bottom:256.733333pt;}
.yd5_c00040{bottom:258.440000pt;}
.yd7_c00040{bottom:259.226667pt;}
.yd4_c00040{bottom:259.973333pt;}
.yd6_c00040{bottom:260.360000pt;}
.yda_c00040{bottom:260.560000pt;}
.yd9_c00040{bottom:261.693333pt;}
.yd3_c00040{bottom:262.266667pt;}
.yd2_c00040{bottom:264.560000pt;}
.yce_c00040{bottom:275.773333pt;}
.ycf_c00040{bottom:276.360000pt;}
.yd1_c00040{bottom:277.106667pt;}
.yd0_c00040{bottom:277.306667pt;}
.ycd_c00040{bottom:277.693333pt;}
.ycc_c00040{bottom:279.026667pt;}
.ycb_c00040{bottom:282.066667pt;}
.yc9_c00040{bottom:292.360000pt;}
.yc7_c00040{bottom:293.106667pt;}
.yc8_c00040{bottom:294.066667pt;}
.yca_c00040{bottom:294.440000pt;}
.yc5_c00040{bottom:294.640000pt;}
.yc6_c00040{bottom:295.026667pt;}
.yc4_c00040{bottom:295.400000pt;}
.yc3_c00040{bottom:296.160000pt;}
.yc0_c00040{bottom:310.440000pt;}
.ybf_c00040{bottom:311.773333pt;}
.yc1_c00040{bottom:312.360000pt;}
.yc2_c00040{bottom:312.560000pt;}
.ybe_c00040{bottom:315.773333pt;}
.ybc_c00040{bottom:327.773333pt;}
.ybd_c00040{bottom:328.733333pt;}
.ybb_c00040{bottom:329.693333pt;}
.yba_c00040{bottom:331.026667pt;}
.yb9_c00040{bottom:333.106667pt;}
.yb7_c00040{bottom:345.106667pt;}
.yb1_c00040{bottom:345.493333pt;}
.yb8_c00040{bottom:346.066667pt;}
.yb6_c00040{bottom:347.026667pt;}
.yb3_c00040{bottom:347.773333pt;}
.yb5_c00040{bottom:348.360000pt;}
.yb4_c00040{bottom:348.560000pt;}
.yb2_c00040{bottom:349.893333pt;}
.yb0_c00040{bottom:351.600000pt;}
.yae_c00040{bottom:362.440000pt;}
.yaf_c00040{bottom:364.360000pt;}
.yad_c00040{bottom:366.066667pt;}
.yac_c00040{bottom:367.226667pt;}
.yab_c00040{bottom:369.693333pt;}
.ya8_c00040{bottom:379.026667pt;}
.ya6_c00040{bottom:379.773333pt;}
.ya9_c00040{bottom:381.306667pt;}
.ya7_c00040{bottom:381.693333pt;}
.ya5_c00040{bottom:381.893333pt;}
.yaa_c00040{bottom:382.640000pt;}
.ya4_c00040{bottom:383.026667pt;}
.ya3_c00040{bottom:384.360000pt;}
.ya1_c00040{bottom:397.106667pt;}
.ya0_c00040{bottom:399.026667pt;}
.ya2_c00040{bottom:399.226667pt;}
.y9f_c00040{bottom:400.360000pt;}
.y9e_c00040{bottom:400.733333pt;}
.y9c_c00040{bottom:401.106667pt;}
.y9d_c00040{bottom:401.306667pt;}
.y9b_c00040{bottom:403.600000pt;}
.y9a_c00040{bottom:415.026667pt;}
.y98_c00040{bottom:415.773333pt;}
.y97_c00040{bottom:416.360000pt;}
.y99_c00040{bottom:416.560000pt;}
.y96_c00040{bottom:417.693333pt;}
.y95_c00040{bottom:419.026667pt;}
.y94_c00040{bottom:420.733333pt;}
.y93_c00040{bottom:433.106667pt;}
.y92_c00040{bottom:433.893333pt;}
.y91_c00040{bottom:434.066667pt;}
.y8f_c00040{bottom:435.026667pt;}
.y90_c00040{bottom:436.360000pt;}
.y8d_c00040{bottom:448.733333pt;}
.y8a_c00040{bottom:449.306667pt;}
.y8e_c00040{bottom:450.440000pt;}
.y8c_c00040{bottom:451.226667pt;}
.y89_c00040{bottom:451.400000pt;}
.y87_c00040{bottom:451.600000pt;}
.y8b_c00040{bottom:451.973333pt;}
.y88_c00040{bottom:452.360000pt;}
.y86_c00040{bottom:453.693333pt;}
.y84_c00040{bottom:467.773333pt;}
.y85_c00040{bottom:468.560000pt;}
.y81_c00040{bottom:469.693333pt;}
.y82_c00040{bottom:469.706667pt;}
.y80_c00040{bottom:470.440000pt;}
.y83_c00040{bottom:470.640000pt;}
.y7f_c00040{bottom:490.440000pt;}
.y7e_c00040{bottom:504.560000pt;}
.y7d_c00040{bottom:505.693333pt;}
.y7c_c00040{bottom:506.440000pt;}
.y78_c00040{bottom:521.106667pt;}
.y79_c00040{bottom:521.693333pt;}
.y7a_c00040{bottom:522.640000pt;}
.y7b_c00040{bottom:523.026667pt;}
.y77_c00040{bottom:524.733333pt;}
.y76_c00040{bottom:537.493333pt;}
.y75_c00040{bottom:538.440000pt;}
.y74_c00040{bottom:540.360000pt;}
.y73_c00040{bottom:540.373333pt;}
.y72_c00040{bottom:541.106667pt;}
.y70_c00040{bottom:555.773333pt;}
.y6f_c00040{bottom:557.106667pt;}
.y71_c00040{bottom:557.693333pt;}
.y6e_c00040{bottom:559.026667pt;}
.y6b_c00040{bottom:573.106667pt;}
.y6d_c00040{bottom:573.493333pt;}
.y69_c00040{bottom:573.893333pt;}
.y6c_c00040{bottom:575.026667pt;}
.y6a_c00040{bottom:575.040000pt;}
.y68_c00040{bottom:575.773333pt;}
.y67_c00040{bottom:590.440000pt;}
.y65_c00040{bottom:591.773333pt;}
.y64_c00040{bottom:592.160000pt;}
.y66_c00040{bottom:592.360000pt;}
.y5e_c00040{bottom:607.773333pt;}
.y60_c00040{bottom:607.973333pt;}
.y5d_c00040{bottom:608.733333pt;}
.y5f_c00040{bottom:609.106667pt;}
.y5b_c00040{bottom:609.493333pt;}
.y62_c00040{bottom:609.693333pt;}
.y61_c00040{bottom:609.893333pt;}
.y63_c00040{bottom:610.640000pt;}
.y5c_c00040{bottom:611.040000pt;}
.y58_c00040{bottom:626.440000pt;}
.y5a_c00040{bottom:627.026667pt;}
.y59_c00040{bottom:627.973333pt;}
.y57_c00040{bottom:628.160000pt;}
.y52_c00040{bottom:642.826667pt;}
.y56_c00040{bottom:643.773333pt;}
.y51_c00040{bottom:644.160000pt;}
.y54_c00040{bottom:644.360000pt;}
.y55_c00040{bottom:645.693333pt;}
.y53_c00040{bottom:645.706667pt;}
.y4e_c00040{bottom:670.640000pt;}
.y4f_c00040{bottom:672.360000pt;}
.y4d_c00040{bottom:673.306667pt;}
.y4c_c00040{bottom:674.066667pt;}
.y50_c00040{bottom:674.266667pt;}
.y46_c00040{bottom:687.973333pt;}
.y47_c00040{bottom:688.733333pt;}
.y48_c00040{bottom:688.933333pt;}
.y49_c00040{bottom:689.693333pt;}
.y4a_c00040{bottom:689.893333pt;}
.y45_c00040{bottom:690.640000pt;}
.y4b_c00040{bottom:690.840000pt;}
.y41_c00040{bottom:717.106667pt;}
.y44_c00040{bottom:718.440000pt;}
.y42_c00040{bottom:719.026667pt;}
.y43_c00040{bottom:719.973333pt;}
.y3e_c00040{bottom:764.733333pt;}
.y3f_c00040{bottom:765.106667pt;}
.y40_c00040{bottom:766.066667pt;}
.y3c_c00040{bottom:766.440000pt;}
.y3d_c00040{bottom:767.026667pt;}
.y3b_c00040{bottom:782.440000pt;}
.y3a_c00040{bottom:783.773333pt;}
.y38_c00040{bottom:784.360000pt;}
.y39_c00040{bottom:784.560000pt;}
.y37_c00040{bottom:785.693333pt;}
.y36_c00040{bottom:787.026667pt;}
.y34_c00040{bottom:800.733333pt;}
.y35_c00040{bottom:801.693333pt;}
.y33_c00040{bottom:803.026667pt;}
.y32_c00040{bottom:803.400000pt;}
.y2c_c00040{bottom:817.106667pt;}
.y29_c00040{bottom:818.066667pt;}
.y2f_c00040{bottom:818.440000pt;}
.y2d_c00040{bottom:819.026667pt;}
.y30_c00040{bottom:819.400000pt;}
.y2b_c00040{bottom:819.600000pt;}
.y2e_c00040{bottom:819.973333pt;}
.y31_c00040{bottom:820.360000pt;}
.y2a_c00040{bottom:820.560000pt;}
.y24_c00040{bottom:834.440000pt;}
.y23_c00040{bottom:836.160000pt;}
.y26_c00040{bottom:836.360000pt;}
.y27_c00040{bottom:836.560000pt;}
.y25_c00040{bottom:837.306667pt;}
.y28_c00040{bottom:837.693333pt;}
.y21_c00040{bottom:853.106667pt;}
.y20_c00040{bottom:854.640000pt;}
.y1f_c00040{bottom:855.026667pt;}
.y22_c00040{bottom:855.973333pt;}
.y1c_c00040{bottom:870.440000pt;}
.y1d_c00040{bottom:871.226667pt;}
.y1e_c00040{bottom:871.973333pt;}
.y1b_c00040{bottom:872.360000pt;}
.y1a_c00040{bottom:872.560000pt;}
.y19_c00040{bottom:874.066667pt;}
.y15_c00040{bottom:887.773333pt;}
.y13_c00040{bottom:888.160000pt;}
.y14_c00040{bottom:888.560000pt;}
.y16_c00040{bottom:889.306667pt;}
.y17_c00040{bottom:889.693333pt;}
.y18_c00040{bottom:890.640000pt;}
.y10_c00040{bottom:903.973333pt;}
.y11_c00040{bottom:905.106667pt;}
.y12_c00040{bottom:905.893333pt;}
.yf_c00040{bottom:907.026667pt;}
.ye_c00040{bottom:907.400000pt;}
.yb_c00040{bottom:922.440000pt;}
.ya_c00040{bottom:924.360000pt;}
.yc_c00040{bottom:924.560000pt;}
.y9_c00040{bottom:924.733333pt;}
.yd_c00040{bottom:925.306667pt;}
.y5_c00040{bottom:939.773333pt;}
.y6_c00040{bottom:940.733333pt;}
.y7_c00040{bottom:941.106667pt;}
.y4_c00040{bottom:941.693333pt;}
.y8_c00040{bottom:942.066667pt;}
.y3_c00040{bottom:943.026667pt;}
.y1_c00040{bottom:975.600000pt;}
.y2_c00040{bottom:976.560000pt;}
.h9_c00040{height:3.739141pt;}
.h8_c00040{height:14.890964pt;}
.h2_c00040{height:20.466875pt;}
.h1_c00040{height:22.303646pt;}
.h6_c00040{height:27.879557pt;}
.h3_c00040{height:31.618698pt;}
.h5_c00040{height:35.357839pt;}
.h4_c00040{height:39.031380pt;}
.h7_c00040{height:42.770521pt;}
.ha_c00040{height:46.509661pt;}
.h0_c00040{height:1186.666667pt;}
.w0_c00040{width:782.666667pt;}
.x0_c00040{left:0.000000pt;}
.x27_c00040{left:134.666667pt;}
.x10_c00040{left:136.000000pt;}
.x3_c00040{left:136.960000pt;}
.xec_c00040{left:138.093333pt;}
.x7f_c00040{left:147.626667pt;}
.x62_c00040{left:149.333333pt;}
.x8c_c00040{left:150.666667pt;}
.xd8_c00040{left:152.000000pt;}
.x55_c00040{left:156.000000pt;}
.xd9_c00040{left:160.373333pt;}
.x4_c00040{left:164.960000pt;}
.x56_c00040{left:166.666667pt;}
.x63_c00040{left:168.373333pt;}
.xf4_c00040{left:169.333333pt;}
.x11_c00040{left:170.293333pt;}
.xa5_c00040{left:172.960000pt;}
.x33_c00040{left:177.333333pt;}
.x89_c00040{left:180.000000pt;}
.x3f_c00040{left:180.960000pt;}
.x83_c00040{left:184.960000pt;}
.x5f_c00040{left:187.040000pt;}
.xc2_c00040{left:188.373333pt;}
.x34_c00040{left:190.666667pt;}
.x64_c00040{left:192.000000pt;}
.x49_c00040{left:194.466667pt;}
.x12_c00040{left:196.960000pt;}
.xe4_c00040{left:197.906667pt;}
.x1c_c00040{left:199.040000pt;}
.x28_c00040{left:201.706667pt;}
.xad_c00040{left:202.666667pt;}
.x73_c00040{left:203.626667pt;}
.xfa_c00040{left:204.960000pt;}
.x8a_c00040{left:209.333333pt;}
.x5_c00040{left:210.666667pt;}
.xda_c00040{left:212.373333pt;}
.xe0_c00040{left:213.333333pt;}
.xbc_c00040{left:215.626667pt;}
.x97_c00040{left:221.333333pt;}
.xf0_c00040{left:223.040000pt;}
.x77_c00040{left:225.333333pt;}
.x8b_c00040{left:226.666667pt;}
.xae_c00040{left:227.626667pt;}
.x8d_c00040{left:230.666667pt;}
.x1d_c00040{left:232.000000pt;}
.x40_c00040{left:232.960000pt;}
.x4a_c00040{left:234.666667pt;}
.xb4_c00040{left:236.960000pt;}
.x84_c00040{left:238.666667pt;}
.x6_c00040{left:240.000000pt;}
.x9e_c00040{left:242.293333pt;}
.x78_c00040{left:244.000000pt;}
.x29_c00040{left:245.706667pt;}
.xa6_c00040{left:247.040000pt;}
.x41_c00040{left:248.000000pt;}
.x13_c00040{left:249.333333pt;}
.x4b_c00040{left:251.040000pt;}
.x1e_c00040{left:253.333333pt;}
.x65_c00040{left:255.040000pt;}
.x6e_c00040{left:256.000000pt;}
.x85_c00040{left:257.333333pt;}
.x57_c00040{left:260.000000pt;}
.x35_c00040{left:261.333333pt;}
.x9f_c00040{left:264.000000pt;}
.x98_c00040{left:266.666667pt;}
.xdb_c00040{left:268.000000pt;}
.xbd_c00040{left:269.333333pt;}
.x42_c00040{left:271.240000pt;}
.xf1_c00040{left:273.333333pt;}
.x4c_c00040{left:274.666667pt;}
.x60_c00040{left:276.373333pt;}
.xa0_c00040{left:277.333333pt;}
.x66_c00040{left:278.666667pt;}
.x2a_c00040{left:283.040000pt;}
.x99_c00040{left:284.960000pt;}
.x7_c00040{left:286.666667pt;}
.x94_c00040{left:288.000000pt;}
.x74_c00040{left:294.293333pt;}
.xc9_c00040{left:296.373333pt;}
.x61_c00040{left:300.373333pt;}
.x8_c00040{left:301.333333pt;}
.xb5_c00040{left:302.666667pt;}
.xdc_c00040{left:303.626667pt;}
.x6f_c00040{left:305.333333pt;}
.x79_c00040{left:306.666667pt;}
.x8e_c00040{left:307.800000pt;}
.x9a_c00040{left:308.960000pt;}
.xed_c00040{left:310.293333pt;}
.xd0_c00040{left:312.000000pt;}
.x58_c00040{left:313.333333pt;}
.xca_c00040{left:314.293333pt;}
.x1f_c00040{left:317.706667pt;}
.x86_c00040{left:318.666667pt;}
.x67_c00040{left:320.960000pt;}
.x59_c00040{left:323.040000pt;}
.x36_c00040{left:324.000000pt;}
.x80_c00040{left:328.373333pt;}
.x4d_c00040{left:329.706667pt;}
.xa7_c00040{left:331.626667pt;}
.x43_c00040{left:334.293333pt;}
.x2b_c00040{left:336.000000pt;}
.xb6_c00040{left:338.293333pt;}
.x95_c00040{left:339.626667pt;}
.xd4_c00040{left:340.960000pt;}
.x37_c00040{left:342.666667pt;}
.x20_c00040{left:344.760000pt;}
.xd1_c00040{left:348.373333pt;}
.xbe_c00040{left:349.333333pt;}
.x1_c00040{left:350.666667pt;}
.x70_c00040{left:351.626667pt;}
.x2c_c00040{left:354.293333pt;}
.x38_c00040{left:356.373333pt;}
.x81_c00040{left:359.626667pt;}
.x5a_c00040{left:361.333333pt;}
.xdd_c00040{left:362.666667pt;}
.xa8_c00040{left:364.373333pt;}
.xf5_c00040{left:365.333333pt;}
.xbf_c00040{left:368.000000pt;}
.x7a_c00040{left:369.333333pt;}
.x14_c00040{left:371.626667pt;}
.xcb_c00040{left:374.666667pt;}
.xe7_c00040{left:376.573333pt;}
.x71_c00040{left:378.293333pt;}
.x9_c00040{left:380.000000pt;}
.x68_c00040{left:381.333333pt;}
.x96_c00040{left:382.293333pt;}
.x4e_c00040{left:384.960000pt;}
.x9b_c00040{left:386.293333pt;}
.x75_c00040{left:387.626667pt;}
.xaf_c00040{left:389.333333pt;}
.xa9_c00040{left:392.000000pt;}
.x44_c00040{left:393.333333pt;}
.x39_c00040{left:395.626667pt;}
.x21_c00040{left:397.706667pt;}
.xc3_c00040{left:399.040000pt;}
.x8f_c00040{left:400.000000pt;}
.xa_c00040{left:401.706667pt;}
.xcc_c00040{left:404.000000pt;}
.x7b_c00040{left:404.960000pt;}
.x45_c00040{left:406.666667pt;}
.x82_c00040{left:408.573333pt;}
.xe1_c00040{left:409.706667pt;}
.x2d_c00040{left:410.666667pt;}
.x15_c00040{left:412.000000pt;}
.x4f_c00040{left:413.333333pt;}
.xd2_c00040{left:418.666667pt;}
.xf6_c00040{left:422.666667pt;}
.xb7_c00040{left:424.000000pt;}
.xc4_c00040{left:425.333333pt;}
.xe8_c00040{left:426.293333pt;}
.x2e_c00040{left:428.000000pt;}
.x22_c00040{left:429.706667pt;}
.xe2_c00040{left:431.626667pt;}
.xb_c00040{left:433.333333pt;}
.x16_c00040{left:434.666667pt;}
.xb0_c00040{left:436.000000pt;}
.xf7_c00040{left:439.040000pt;}
.xc0_c00040{left:440.960000pt;}
.x69_c00040{left:443.626667pt;}
.x7c_c00040{left:444.960000pt;}
.x3a_c00040{left:448.000000pt;}
.x23_c00040{left:449.706667pt;}
.xd3_c00040{left:451.040000pt;}
.x87_c00040{left:454.666667pt;}
.x9c_c00040{left:457.906667pt;}
.x90_c00040{left:459.626667pt;}
.xe9_c00040{left:461.333333pt;}
.xde_c00040{left:464.000000pt;}
.x7d_c00040{left:465.706667pt;}
.xd5_c00040{left:468.373333pt;}
.x6a_c00040{left:469.906667pt;}
.x2f_c00040{left:473.706667pt;}
.xc7_c00040{left:474.666667pt;}
.x91_c00040{left:476.373333pt;}
.x3b_c00040{left:477.333333pt;}
.x46_c00040{left:478.293333pt;}
.x76_c00040{left:480.960000pt;}
.xb1_c00040{left:482.666667pt;}
.xc_c00040{left:483.626667pt;}
.xa1_c00040{left:484.960000pt;}
.xb8_c00040{left:487.040000pt;}
.x50_c00040{left:489.706667pt;}
.xaa_c00040{left:490.666667pt;}
.x72_c00040{left:491.800000pt;}
.xc5_c00040{left:493.333333pt;}
.x3c_c00040{left:495.240000pt;}
.xe5_c00040{left:497.333333pt;}
.x5b_c00040{left:500.373333pt;}
.xd_c00040{left:501.706667pt;}
.x17_c00040{left:502.666667pt;}
.x7e_c00040{left:506.293333pt;}
.xb9_c00040{left:508.000000pt;}
.xab_c00040{left:510.293333pt;}
.xe3_c00040{left:512.760000pt;}
.x51_c00040{left:515.626667pt;}
.xf2_c00040{left:518.666667pt;}
.x47_c00040{left:519.626667pt;}
.xba_c00040{left:521.333333pt;}
.x9d_c00040{left:523.626667pt;}
.x5c_c00040{left:529.333333pt;}
.xf8_c00040{left:530.666667pt;}
.x18_c00040{left:532.000000pt;}
.x6b_c00040{left:533.333333pt;}
.x92_c00040{left:534.293333pt;}
.xd6_c00040{left:535.626667pt;}
.xcd_c00040{left:537.333333pt;}
.xb2_c00040{left:539.626667pt;}
.xea_c00040{left:541.706667pt;}
.x19_c00040{left:542.666667pt;}
.x52_c00040{left:544.000000pt;}
.xe6_c00040{left:546.666667pt;}
.x30_c00040{left:550.093333pt;}
.xee_c00040{left:551.040000pt;}
.x24_c00040{left:552.000000pt;}
.xd7_c00040{left:553.706667pt;}
.xa2_c00040{left:555.800000pt;}
.x5d_c00040{left:558.293333pt;}
.xac_c00040{left:560.000000pt;}
.xeb_c00040{left:562.093333pt;}
.xb3_c00040{left:571.040000pt;}
.x88_c00040{left:572.000000pt;}
.xe_c00040{left:573.333333pt;}
.x53_c00040{left:574.666667pt;}
.x3d_c00040{left:578.293333pt;}
.x25_c00040{left:581.333333pt;}
.x48_c00040{left:584.373333pt;}
.xce_c00040{left:585.333333pt;}
.x1a_c00040{left:588.373333pt;}
.x54_c00040{left:590.293333pt;}
.xa3_c00040{left:592.000000pt;}
.xc1_c00040{left:593.333333pt;}
.x6c_c00040{left:594.666667pt;}
.xbb_c00040{left:597.706667pt;}
.x5e_c00040{left:598.666667pt;}
.xcf_c00040{left:606.293333pt;}
.xa4_c00040{left:607.626667pt;}
.x31_c00040{left:609.133333pt;}
.x1b_c00040{left:611.040000pt;}
.xf_c00040{left:614.666667pt;}
.x93_c00040{left:616.000000pt;}
.xc8_c00040{left:617.133333pt;}
.x6d_c00040{left:619.040000pt;}
.xef_c00040{left:620.373333pt;}
.xdf_c00040{left:624.373333pt;}
.xc6_c00040{left:625.333333pt;}
.xf9_c00040{left:626.666667pt;}
.x3e_c00040{left:628.373333pt;}
.x26_c00040{left:629.333333pt;}
.x2_c00040{left:633.706667pt;}
.x32_c00040{left:641.333333pt;}
.xf3_c00040{left:642.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_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_fa35dab967316535451c6d56.woff2')format("woff");}.ff1_c00041{font-family:ff1_c00041;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mcd_c00041{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m70_c00041{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m19_c00041{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.me0_c00041{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.me5_c00041{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m49_c00041{transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);}
.m87_c00041{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m4_c00041{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.md9_c00041{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m5f_c00041{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.mf1_c00041{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.mda_c00041{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mfc_c00041{transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);}
.m4a_c00041{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.mc3_c00041{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.mac_c00041{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.me6_c00041{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m56_c00041{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.m4f_c00041{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.m36_c00041{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.ma0_c00041{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.ma4_c00041{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m85_c00041{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m99_c00041{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m75_c00041{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m3e_c00041{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.me3_c00041{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.mee_c00041{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m6b_c00041{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m83_c00041{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.me9_c00041{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m66_c00041{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m6e_c00041{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m5b_c00041{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.mb4_c00041{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m25_c00041{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.mb2_c00041{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m1b_c00041{transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);}
.mf4_c00041{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mf2_c00041{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m26_c00041{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m33_c00041{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m8d_c00041{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m89_c00041{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m31_c00041{transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);}
.mdf_c00041{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m1e_c00041{transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);}
.mc2_c00041{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m81_c00041{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m97_c00041{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m5e_c00041{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m3_c00041{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m7e_c00041{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m20_c00041{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.mb0_c00041{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.md4_c00041{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m96_c00041{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m51_c00041{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mbc_c00041{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m1a_c00041{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.mf6_c00041{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m46_c00041{transform:matrix(0.446471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446471,0.000000,0.000000,0.250000,0,0);}
.mf9_c00041{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m3b_c00041{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m9e_c00041{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.mc_c00041{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.mc5_c00041{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.me7_c00041{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mef_c00041{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.mf8_c00041{transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);}
.m8c_c00041{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m7_c00041{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m9f_c00041{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m3c_c00041{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m52_c00041{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.ma1_c00041{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m29_c00041{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m4e_c00041{transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);}
.m9d_c00041{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.mfd_c00041{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m11_c00041{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m42_c00041{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m21_c00041{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m65_c00041{transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);}
.mad_c00041{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m5a_c00041{transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);}
.m76_c00041{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m2c_c00041{transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);}
.m38_c00041{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.me8_c00041{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m58_c00041{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mcc_c00041{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.meb_c00041{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.me4_c00041{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m78_c00041{transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);}
.m37_c00041{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m9a_c00041{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mbd_c00041{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m35_c00041{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m44_c00041{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_c00041{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m9c_c00041{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.mb8_c00041{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m1d_c00041{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mc8_c00041{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.mca_c00041{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m84_c00041{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mde_c00041{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.mb_c00041{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m92_c00041{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m7a_c00041{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.mc4_c00041{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m6f_c00041{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m48_c00041{transform:matrix(0.518235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518235,0.000000,0.000000,0.250000,0,0);}
.m39_c00041{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.ma6_c00041{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m6d_c00041{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m95_c00041{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m2a_c00041{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_c00041{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m82_c00041{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.me_c00041{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.ma7_c00041{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mc9_c00041{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m8a_c00041{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m88_c00041{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mc0_c00041{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m77_c00041{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mc6_c00041{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m74_c00041{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m24_c00041{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m2_c00041{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.md2_c00041{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.maf_c00041{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m6_c00041{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mb5_c00041{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m8f_c00041{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.med_c00041{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m15_c00041{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.mdd_c00041{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m7f_c00041{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m57_c00041{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m71_c00041{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mba_c00041{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m14_c00041{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.mab_c00041{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m94_c00041{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mf3_c00041{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.ma8_c00041{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mdc_c00041{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m50_c00041{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m7b_c00041{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mea_c00041{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m90_c00041{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m64_c00041{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.md7_c00041{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m80_c00041{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mfe_c00041{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m5c_c00041{transform:matrix(0.557353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557353,0.000000,0.000000,0.250000,0,0);}
.m73_c00041{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m32_c00041{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.mb3_c00041{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m7c_c00041{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.ma3_c00041{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mff_c00041{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.mbb_c00041{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m1f_c00041{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.mb9_c00041{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m79_c00041{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m1_c00041{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.mec_c00041{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m72_c00041{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mfa_c00041{transform:matrix(0.574519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574519,0.000000,0.000000,0.250000,0,0);}
.mf0_c00041{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.me1_c00041{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.md3_c00041{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m34_c00041{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.mb6_c00041{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.ma2_c00041{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m16_c00041{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);}
.m1c_c00041{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m55_c00041{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m28_c00041{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m8e_c00041{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m7d_c00041{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m3d_c00041{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.m59_c00041{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m61_c00041{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m18_c00041{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.md1_c00041{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);}
.mcf_c00041{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.maa_c00041{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.md6_c00041{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m9b_c00041{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m10_c00041{transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);}
.md8_c00041{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m47_c00041{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m30_c00041{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);}
.m3a_c00041{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m4b_c00041{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.ma_c00041{transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);}
.mb1_c00041{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m5d_c00041{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.mf5_c00041{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m27_c00041{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m91_c00041{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m4c_c00041{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.m12_c00041{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.mcb_c00041{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m63_c00041{transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);}
.mf7_c00041{transform:matrix(0.648235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648235,0.000000,0.000000,0.250000,0,0);}
.m41_c00041{transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);}
.m4d_c00041{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);}
.m43_c00041{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m69_c00041{transform:matrix(0.656250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656250,0.000000,0.000000,0.250000,0,0);}
.m45_c00041{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m2f_c00041{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m2d_c00041{transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);}
.m53_c00041{transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);}
.mc1_c00041{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.mf_c00041{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.ma9_c00041{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m2b_c00041{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.m0_c00041{transform:matrix(0.673878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673878,0.000000,0.000000,0.250000,0,0);}
.md_c00041{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m23_c00041{transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);}
.m54_c00041{transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);}
.m22_c00041{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mb7_c00041{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m67_c00041{transform:matrix(0.694853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694853,0.000000,0.000000,0.250000,0,0);}
.m60_c00041{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m40_c00041{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m13_c00041{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);}
.md5_c00041{transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);}
.mbf_c00041{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m2e_c00041{transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);}
.md0_c00041{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mbe_c00041{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.me2_c00041{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m62_c00041{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mae_c00041{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m93_c00041{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mc7_c00041{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mdb_c00041{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m5_c00041{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m8b_c00041{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m86_c00041{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mfb_c00041{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.m8_c00041{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m98_c00041{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.m6a_c00041{transform:matrix(0.916912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.916912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.916912,0.000000,0.000000,0.250000,0,0);}
.m3f_c00041{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m68_c00041{transform:matrix(1.123348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.123348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.123348,0.000000,0.000000,0.250000,0,0);}
.m9_c00041{transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);}
.m17_c00041{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m6c_c00041{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws1_c00041{word-spacing:-9.296522px;}
.ws2_c00041{word-spacing:-3.557922px;}
.ws0_c00041{word-spacing:-0.127200px;}
.ws3_c00041{word-spacing:0.000000px;}
.fc0_c00041{color:transparent;}
.fs7_c00041{font-size:3.420000px;}
.fs4_c00041{font-size:13.620000px;}
.fs0_c00041{font-size:18.720000px;}
.fs1_c00041{font-size:20.400000px;}
.fs6_c00041{font-size:25.500000px;}
.fs2_c00041{font-size:28.920000px;}
.fs5_c00041{font-size:32.340000px;}
.fs3_c00041{font-size:35.700000px;}
.y0_c00041{bottom:0.000000px;}
.yeb_c00041{bottom:251.745000px;}
.yec_c00041{bottom:253.905000px;}
.yed_c00041{bottom:255.405000px;}
.ye5_c00041{bottom:273.405000px;}
.ye7_c00041{bottom:273.630000px;}
.yea_c00041{bottom:273.825000px;}
.ye9_c00041{bottom:274.245000px;}
.ye6_c00041{bottom:274.905000px;}
.ye8_c00041{bottom:275.130000px;}
.ye3_c00041{bottom:292.245000px;}
.ydb_c00041{bottom:292.905000px;}
.ye4_c00041{bottom:293.130000px;}
.yde_c00041{bottom:293.325000px;}
.ye0_c00041{bottom:293.745000px;}
.ydc_c00041{bottom:293.970000px;}
.ydd_c00041{bottom:294.405000px;}
.ydf_c00041{bottom:294.630000px;}
.ye2_c00041{bottom:295.470000px;}
.ye1_c00041{bottom:295.905000px;}
.yd6_c00041{bottom:311.745000px;}
.yd9_c00041{bottom:313.245000px;}
.yd5_c00041{bottom:313.905000px;}
.yd7_c00041{bottom:314.130000px;}
.yd8_c00041{bottom:315.405000px;}
.yda_c00041{bottom:316.470000px;}
.yd1_c00041{bottom:331.245000px;}
.yd4_c00041{bottom:332.745000px;}
.yd0_c00041{bottom:333.405000px;}
.yd3_c00041{bottom:333.630000px;}
.yd2_c00041{bottom:334.905000px;}
.ycf_c00041{bottom:351.825000px;}
.yce_c00041{bottom:352.245000px;}
.ycc_c00041{bottom:352.905000px;}
.ycd_c00041{bottom:354.405000px;}
.ycb_c00041{bottom:371.325000px;}
.yc7_c00041{bottom:371.745000px;}
.yc6_c00041{bottom:372.405000px;}
.yc8_c00041{bottom:372.630000px;}
.yc9_c00041{bottom:373.905000px;}
.yca_c00041{bottom:374.970000px;}
.yc1_c00041{bottom:391.245000px;}
.yc5_c00041{bottom:391.470000px;}
.yc3_c00041{bottom:393.405000px;}
.yc2_c00041{bottom:394.470000px;}
.yc4_c00041{bottom:394.905000px;}
.ybf_c00041{bottom:410.745000px;}
.ybe_c00041{bottom:412.905000px;}
.yc0_c00041{bottom:413.130000px;}
.yb6_c00041{bottom:429.405000px;}
.ybd_c00041{bottom:430.245000px;}
.yb9_c00041{bottom:430.470000px;}
.yb8_c00041{bottom:431.745000px;}
.yb7_c00041{bottom:432.405000px;}
.yba_c00041{bottom:432.630000px;}
.ybb_c00041{bottom:433.470000px;}
.ybc_c00041{bottom:433.905000px;}
.yb5_c00041{bottom:449.970000px;}
.yb1_c00041{bottom:451.245000px;}
.yb0_c00041{bottom:451.905000px;}
.yb3_c00041{bottom:452.325000px;}
.yb4_c00041{bottom:452.970000px;}
.yb2_c00041{bottom:453.405000px;}
.yaf_c00041{bottom:470.745000px;}
.yad_c00041{bottom:471.630000px;}
.yab_c00041{bottom:472.905000px;}
.yac_c00041{bottom:473.130000px;}
.yae_c00041{bottom:473.970000px;}
.yaa_c00041{bottom:487.905000px;}
.ya6_c00041{bottom:490.050000px;}
.ya9_c00041{bottom:490.245000px;}
.ya5_c00041{bottom:491.130000px;}
.ya7_c00041{bottom:491.970000px;}
.ya8_c00041{bottom:492.405000px;}
.ya4_c00041{bottom:509.970000px;}
.ya1_c00041{bottom:510.825000px;}
.ya0_c00041{bottom:511.905000px;}
.ya2_c00041{bottom:512.130000px;}
.ya3_c00041{bottom:512.970000px;}
.y9e_c00041{bottom:528.405000px;}
.y9c_c00041{bottom:529.245000px;}
.y9f_c00041{bottom:530.745000px;}
.y9a_c00041{bottom:531.405000px;}
.y9b_c00041{bottom:531.630000px;}
.y9d_c00041{bottom:532.470000px;}
.y99_c00041{bottom:547.905000px;}
.y98_c00041{bottom:550.245000px;}
.y95_c00041{bottom:550.905000px;}
.y96_c00041{bottom:551.130000px;}
.y97_c00041{bottom:552.405000px;}
.y92_c00041{bottom:568.470000px;}
.y8f_c00041{bottom:569.130000px;}
.y91_c00041{bottom:569.745000px;}
.y90_c00041{bottom:570.405000px;}
.y94_c00041{bottom:570.630000px;}
.y93_c00041{bottom:571.905000px;}
.y89_c00041{bottom:587.745000px;}
.y8d_c00041{bottom:589.245000px;}
.y8a_c00041{bottom:589.905000px;}
.y8e_c00041{bottom:590.130000px;}
.y8c_c00041{bottom:590.970000px;}
.y8b_c00041{bottom:591.405000px;}
.y87_c00041{bottom:610.470000px;}
.y88_c00041{bottom:610.905000px;}
.y81_c00041{bottom:626.745000px;}
.y83_c00041{bottom:628.245000px;}
.y82_c00041{bottom:628.905000px;}
.y84_c00041{bottom:629.130000px;}
.y85_c00041{bottom:629.325000px;}
.y86_c00041{bottom:630.405000px;}
.y7d_c00041{bottom:647.745000px;}
.y80_c00041{bottom:649.470000px;}
.y7f_c00041{bottom:649.905000px;}
.y7e_c00041{bottom:650.970000px;}
.y7b_c00041{bottom:664.905000px;}
.y7c_c00041{bottom:667.245000px;}
.y7a_c00041{bottom:668.130000px;}
.y77_c00041{bottom:669.405000px;}
.y79_c00041{bottom:669.630000px;}
.y78_c00041{bottom:670.470000px;}
.y73_c00041{bottom:686.745000px;}
.y76_c00041{bottom:687.825000px;}
.y72_c00041{bottom:688.905000px;}
.y75_c00041{bottom:689.130000px;}
.y74_c00041{bottom:690.405000px;}
.y6f_c00041{bottom:706.245000px;}
.y6e_c00041{bottom:708.405000px;}
.y71_c00041{bottom:708.630000px;}
.y70_c00041{bottom:709.905000px;}
.y6d_c00041{bottom:727.905000px;}
.y67_c00041{bottom:745.245000px;}
.y6b_c00041{bottom:746.745000px;}
.y6c_c00041{bottom:747.405000px;}
.y6a_c00041{bottom:747.630000px;}
.y69_c00041{bottom:747.825000px;}
.y68_c00041{bottom:748.905000px;}
.y64_c00041{bottom:766.245000px;}
.y66_c00041{bottom:768.405000px;}
.y65_c00041{bottom:768.420000px;}
.y63_c00041{bottom:795.825000px;}
.y60_c00041{bottom:796.905000px;}
.y5e_c00041{bottom:797.130000px;}
.y5f_c00041{bottom:797.970000px;}
.y61_c00041{bottom:798.195000px;}
.y62_c00041{bottom:799.050000px;}
.y59_c00041{bottom:810.825000px;}
.y5d_c00041{bottom:811.905000px;}
.y5c_c00041{bottom:812.130000px;}
.y58_c00041{bottom:812.550000px;}
.y5b_c00041{bottom:812.970000px;}
.y5a_c00041{bottom:814.050000px;}
.y51_c00041{bottom:824.970000px;}
.y52_c00041{bottom:825.630000px;}
.y57_c00041{bottom:826.050000px;}
.y56_c00041{bottom:826.905000px;}
.y55_c00041{bottom:827.970000px;}
.y53_c00041{bottom:828.195000px;}
.y54_c00041{bottom:829.050000px;}
.y4a_c00041{bottom:839.970000px;}
.y50_c00041{bottom:840.825000px;}
.y4b_c00041{bottom:841.905000px;}
.y4e_c00041{bottom:842.130000px;}
.y4f_c00041{bottom:842.970000px;}
.y4c_c00041{bottom:843.195000px;}
.y4d_c00041{bottom:844.050000px;}
.y48_c00041{bottom:854.970000px;}
.y43_c00041{bottom:855.405000px;}
.y47_c00041{bottom:855.825000px;}
.y45_c00041{bottom:856.470000px;}
.y49_c00041{bottom:857.550000px;}
.y46_c00041{bottom:857.970000px;}
.y44_c00041{bottom:858.195000px;}
.y40_c00041{bottom:869.325000px;}
.y41_c00041{bottom:870.405000px;}
.y42_c00041{bottom:872.130000px;}
.y3f_c00041{bottom:872.550000px;}
.y3e_c00041{bottom:885.405000px;}
.y3d_c00041{bottom:887.550000px;}
.y3a_c00041{bottom:899.325000px;}
.y3b_c00041{bottom:900.405000px;}
.y38_c00041{bottom:901.470000px;}
.y39_c00041{bottom:901.695000px;}
.y3c_c00041{bottom:902.550000px;}
.y36_c00041{bottom:913.470000px;}
.y32_c00041{bottom:914.325000px;}
.y31_c00041{bottom:914.550000px;}
.y35_c00041{bottom:915.405000px;}
.y37_c00041{bottom:916.470000px;}
.y33_c00041{bottom:916.695000px;}
.y34_c00041{bottom:917.550000px;}
.y2c_c00041{bottom:928.470000px;}
.y2b_c00041{bottom:929.325000px;}
.y2f_c00041{bottom:930.405000px;}
.y30_c00041{bottom:930.630000px;}
.y2d_c00041{bottom:931.470000px;}
.y2e_c00041{bottom:932.550000px;}
.y24_c00041{bottom:943.050000px;}
.y28_c00041{bottom:944.325000px;}
.y2a_c00041{bottom:944.970000px;}
.y26_c00041{bottom:945.405000px;}
.y25_c00041{bottom:946.470000px;}
.y29_c00041{bottom:946.695000px;}
.y27_c00041{bottom:947.550000px;}
.y1f_c00041{bottom:957.825000px;}
.y21_c00041{bottom:959.325000px;}
.y22_c00041{bottom:959.550000px;}
.y1e_c00041{bottom:960.195000px;}
.y20_c00041{bottom:961.470000px;}
.y23_c00041{bottom:962.550000px;}
.y1a_c00041{bottom:973.050000px;}
.y1c_c00041{bottom:973.905000px;}
.y1d_c00041{bottom:974.970000px;}
.y1b_c00041{bottom:976.050000px;}
.y19_c00041{bottom:988.905000px;}
.y18_c00041{bottom:991.050000px;}
.y14_c00041{bottom:1002.825000px;}
.y13_c00041{bottom:1003.905000px;}
.y12_c00041{bottom:1004.130000px;}
.y15_c00041{bottom:1004.970000px;}
.y16_c00041{bottom:1005.195000px;}
.y17_c00041{bottom:1006.050000px;}
.y10_c00041{bottom:1017.825000px;}
.yd_c00041{bottom:1018.470000px;}
.y11_c00041{bottom:1018.905000px;}
.ye_c00041{bottom:1019.970000px;}
.yf_c00041{bottom:1020.195000px;}
.y9_c00041{bottom:1032.825000px;}
.yc_c00041{bottom:1033.470000px;}
.y6_c00041{bottom:1033.695000px;}
.y8_c00041{bottom:1033.905000px;}
.ya_c00041{bottom:1034.130000px;}
.y7_c00041{bottom:1034.550000px;}
.yb_c00041{bottom:1036.050000px;}
.y4_c00041{bottom:1061.745000px;}
.y5_c00041{bottom:1062.630000px;}
.y3_c00041{bottom:1063.905000px;}
.y2_c00041{bottom:1102.050000px;}
.y1_c00041{bottom:1103.130000px;}
.h8_c00041{height:4.206533px;}
.h5_c00041{height:16.752334px;}
.h1_c00041{height:23.025234px;}
.h2_c00041{height:25.091602px;}
.h7_c00041{height:31.364502px;}
.h3_c00041{height:35.571035px;}
.h6_c00041{height:39.777568px;}
.h4_c00041{height:43.910303px;}
.h0_c00041{height:1335.000000px;}
.w0_c00041{width:880.500000px;}
.x0_c00041{left:0.000000px;}
.x66_c00041{left:152.580000px;}
.x2_c00041{left:153.855000px;}
.x82_c00041{left:154.920000px;}
.x32_c00041{left:163.920000px;}
.x28_c00041{left:166.920000px;}
.x1c_c00041{left:168.000000px;}
.x3_c00041{left:169.500000px;}
.xf2_c00041{left:171.420000px;}
.xdf_c00041{left:172.920000px;}
.xb9_c00041{left:176.580000px;}
.x73_c00041{left:178.500000px;}
.x5d_c00041{left:180.000000px;}
.x26_c00041{left:183.420000px;}
.x1d_c00041{left:184.500000px;}
.xa_c00041{left:186.000000px;}
.x10c_c00041{left:188.580000px;}
.xd7_c00041{left:190.500000px;}
.xb4_c00041{left:192.000000px;}
.xc1_c00041{left:195.420000px;}
.xce_c00041{left:196.920000px;}
.xf3_c00041{left:198.420000px;}
.x74_c00041{left:199.500000px;}
.x4_c00041{left:201.420000px;}
.x106_c00041{left:205.920000px;}
.x51_c00041{left:208.500000px;}
.x27_c00041{left:210.000000px;}
.x75_c00041{left:211.920000px;}
.xa6_c00041{left:213.000000px;}
.x15_c00041{left:216.000000px;}
.xe5_c00041{left:217.500000px;}
.x52_c00041{left:220.080000px;}
.xc2_c00041{left:222.000000px;}
.x9e_c00041{left:223.080000px;}
.x3e_c00041{left:225.000000px;}
.xe0_c00041{left:228.000000px;}
.xac_c00041{left:229.080000px;}
.x8f_c00041{left:231.000000px;}
.xeb_c00041{left:234.000000px;}
.xe6_c00041{left:237.000000px;}
.xb_c00041{left:238.080000px;}
.xdb_c00041{left:241.080000px;}
.x9f_c00041{left:243.420000px;}
.xd3_c00041{left:244.500000px;}
.x83_c00041{left:246.000000px;}
.x76_c00041{left:247.500000px;}
.x46_c00041{left:252.000000px;}
.x38_c00041{left:253.500000px;}
.x29_c00041{left:254.580000px;}
.x53_c00041{left:256.500000px;}
.xf9_c00041{left:257.580000px;}
.xd8_c00041{left:259.500000px;}
.x33_c00041{left:260.580000px;}
.x107_c00041{left:262.080000px;}
.x1e_c00041{left:263.580000px;}
.x5e_c00041{left:265.500000px;}
.xe1_c00041{left:267.420000px;}
.x5_c00041{left:268.500000px;}
.x47_c00041{left:270.420000px;}
.x16_c00041{left:272.580000px;}
.x84_c00041{left:274.920000px;}
.x8b_c00041{left:276.000000px;}
.x3f_c00041{left:282.000000px;}
.x17_c00041{left:283.080000px;}
.x2a_c00041{left:285.000000px;}
.x100_c00041{left:286.920000px;}
.x67_c00041{left:288.000000px;}
.x34_c00041{left:290.355000px;}
.x6c_c00041{left:294.000000px;}
.xf4_c00041{left:297.000000px;}
.x77_c00041{left:298.500000px;}
.x7b_c00041{left:300.000000px;}
.xba_c00041{left:301.920000px;}
.xfa_c00041{left:303.420000px;}
.x108_c00041{left:307.500000px;}
.xc_c00041{left:309.000000px;}
.x54_c00041{left:310.500000px;}
.xdc_c00041{left:312.000000px;}
.x39_c00041{left:313.500000px;}
.xf6_c00041{left:315.000000px;}
.x85_c00041{left:316.500000px;}
.x18_c00041{left:319.500000px;}
.x86_c00041{left:322.080000px;}
.x5f_c00041{left:324.420000px;}
.x48_c00041{left:325.500000px;}
.xad_c00041{left:328.920000px;}
.xa0_c00041{left:330.420000px;}
.x35_c00041{left:331.500000px;}
.x68_c00041{left:332.580000px;}
.x87_c00041{left:334.080000px;}
.x10d_c00041{left:337.080000px;}
.x60_c00041{left:339.000000px;}
.xee_c00041{left:340.920000px;}
.x6_c00041{left:342.000000px;}
.x88_c00041{left:345.000000px;}
.xbb_c00041{left:346.500000px;}
.x40_c00041{left:348.420000px;}
.x98_c00041{left:349.500000px;}
.x1f_c00041{left:351.000000px;}
.xc8_c00041{left:352.080000px;}
.x19_c00041{left:353.580000px;}
.x7c_c00041{left:355.500000px;}
.x49_c00041{left:358.500000px;}
.x36_c00041{left:360.420000px;}
.x69_c00041{left:361.920000px;}
.x89_c00041{left:363.000000px;}
.xa7_c00041{left:364.080000px;}
.x99_c00041{left:365.580000px;}
.xef_c00041{left:367.500000px;}
.x55_c00041{left:370.080000px;}
.x8a_c00041{left:373.500000px;}
.xc9_c00041{left:375.000000px;}
.x7_c00041{left:379.080000px;}
.x2b_c00041{left:381.000000px;}
.x1a_c00041{left:382.080000px;}
.xd_c00041{left:384.000000px;}
.xa1_c00041{left:385.500000px;}
.x37_c00041{left:387.000000px;}
.x101_c00041{left:388.080000px;}
.xb5_c00041{left:391.080000px;}
.xd9_c00041{left:393.000000px;}
.xc3_c00041{left:394.080000px;}
.x41_c00041{left:396.000000px;}
.x1_c00041{left:397.500000px;}
.x78_c00041{left:398.580000px;}
.x20_c00041{left:400.080000px;}
.x7d_c00041{left:402.000000px;}
.x6a_c00041{left:403.500000px;}
.x9a_c00041{left:411.000000px;}
.xca_c00041{left:415.920000px;}
.xe_c00041{left:417.000000px;}
.x90_c00041{left:418.500000px;}
.xae_c00041{left:420.000000px;}
.x6d_c00041{left:421.080000px;}
.xa8_c00041{left:423.420000px;}
.x1b_c00041{left:424.500000px;}
.xfb_c00041{left:426.420000px;}
.x3a_c00041{left:429.420000px;}
.x42_c00041{left:430.500000px;}
.x4a_c00041{left:433.500000px;}
.x10e_c00041{left:435.000000px;}
.x6e_c00041{left:436.500000px;}
.xc4_c00041{left:439.920000px;}
.x61_c00041{left:441.420000px;}
.x56_c00041{left:442.500000px;}
.xb6_c00041{left:444.000000px;}
.x109_c00041{left:445.500000px;}
.x7e_c00041{left:446.580000px;}
.x2c_c00041{left:448.920000px;}
.x8_c00041{left:450.000000px;}
.xd4_c00041{left:451.500000px;}
.xcb_c00041{left:453.420000px;}
.xe7_c00041{left:456.000000px;}
.x43_c00041{left:457.080000px;}
.x6b_c00041{left:460.500000px;}
.x10a_c00041{left:462.000000px;}
.xa2_c00041{left:463.500000px;}
.x91_c00041{left:465.000000px;}
.xf_c00041{left:466.500000px;}
.x9_c00041{left:472.500000px;}
.xf7_c00041{left:475.080000px;}
.x79_c00041{left:477.420000px;}
.x8c_c00041{left:478.920000px;}
.x62_c00041{left:480.420000px;}
.xbc_c00041{left:481.500000px;}
.x7f_c00041{left:483.420000px;}
.xa3_c00041{left:484.920000px;}
.x102_c00041{left:486.000000px;}
.x10_c00041{left:487.500000px;}
.x10b_c00041{left:488.580000px;}
.x9b_c00041{left:490.500000px;}
.xaf_c00041{left:492.420000px;}
.xf5_c00041{left:496.920000px;}
.x57_c00041{left:499.500000px;}
.x44_c00041{left:501.000000px;}
.x63_c00041{left:502.080000px;}
.x7a_c00041{left:504.000000px;}
.xf0_c00041{left:505.500000px;}
.x4b_c00041{left:508.920000px;}
.x8d_c00041{left:510.000000px;}
.xc5_c00041{left:511.500000px;}
.xcf_c00041{left:513.000000px;}
.x6f_c00041{left:514.080000px;}
.xda_c00041{left:516.420000px;}
.x103_c00041{left:517.500000px;}
.xfc_c00041{left:519.000000px;}
.xb0_c00041{left:520.080000px;}
.xa4_c00041{left:522.000000px;}
.x92_c00041{left:525.000000px;}
.x3b_c00041{left:526.500000px;}
.x45_c00041{left:531.420000px;}
.xa9_c00041{left:532.500000px;}
.xbd_c00041{left:536.580000px;}
.xf8_c00041{left:538.920000px;}
.xdd_c00041{left:540.000000px;}
.x58_c00041{left:541.920000px;}
.xb7_c00041{left:546.000000px;}
.x2d_c00041{left:547.500000px;}
.x70_c00041{left:551.580000px;}
.xe2_c00041{left:553.500000px;}
.xe8_c00041{left:555.000000px;}
.x93_c00041{left:556.500000px;}
.x11_c00041{left:558.645000px;}
.xfe_c00041{left:561.000000px;}
.x64_c00041{left:562.920000px;}
.xd0_c00041{left:564.000000px;}
.xec_c00041{left:565.080000px;}
.x4c_c00041{left:566.580000px;}
.x80_c00041{left:567.645000px;}
.x21_c00041{left:570.000000px;}
.xcc_c00041{left:571.080000px;}
.xe9_c00041{left:572.580000px;}
.x2e_c00041{left:574.500000px;}
.x65_c00041{left:576.645000px;}
.xc6_c00041{left:577.920000px;}
.xff_c00041{left:579.420000px;}
.x59_c00041{left:580.920000px;}
.x22_c00041{left:582.420000px;}
.x104_c00041{left:583.500000px;}
.xbe_c00041{left:585.000000px;}
.x9c_c00041{left:586.080000px;}
.x3c_c00041{left:587.580000px;}
.x4d_c00041{left:589.500000px;}
.xaa_c00041{left:595.920000px;}
.xd1_c00041{left:600.000000px;}
.x8e_c00041{left:601.080000px;}
.x12_c00041{left:603.000000px;}
.xb1_c00041{left:604.920000px;}
.x4e_c00041{left:606.420000px;}
.xd5_c00041{left:607.920000px;}
.x94_c00041{left:609.000000px;}
.x2f_c00041{left:610.920000px;}
.xcd_c00041{left:612.000000px;}
.xed_c00041{left:616.920000px;}
.x23_c00041{left:618.000000px;}
.x4f_c00041{left:621.645000px;}
.xb8_c00041{left:624.420000px;}
.x95_c00041{left:627.000000px;}
.x30_c00041{left:628.500000px;}
.x71_c00041{left:629.580000px;}
.xbf_c00041{left:631.080000px;}
.x5a_c00041{left:634.080000px;}
.x13_c00041{left:636.420000px;}
.xde_c00041{left:637.500000px;}
.xb2_c00041{left:638.580000px;}
.x3d_c00041{left:643.500000px;}
.xe3_c00041{left:649.080000px;}
.x14_c00041{left:655.500000px;}
.x9d_c00041{left:658.500000px;}
.xd2_c00041{left:659.580000px;}
.xab_c00041{left:661.920000px;}
.x5b_c00041{left:663.420000px;}
.x24_c00041{left:664.500000px;}
.x96_c00041{left:665.580000px;}
.xd6_c00041{left:668.580000px;}
.xc7_c00041{left:670.500000px;}
.xea_c00041{left:677.580000px;}
.x81_c00041{left:679.080000px;}
.x72_c00041{left:682.080000px;}
.xfd_c00041{left:686.580000px;}
.xc0_c00041{left:688.500000px;}
.x31_c00041{left:690.645000px;}
.x25_c00041{left:693.420000px;}
.x97_c00041{left:694.500000px;}
.xe4_c00041{left:696.000000px;}
.xf1_c00041{left:697.500000px;}
.xa5_c00041{left:699.000000px;}
.x50_c00041{left:702.000000px;}
.x105_c00041{left:703.920000px;}
.x5c_c00041{left:705.000000px;}
.xb3_c00041{left:708.420000px;}
@media print{
.v0_c00041{vertical-align:0.000000pt;}
.ls0_c00041{letter-spacing:0.000000pt;}
.ws1_c00041{word-spacing:-8.263575pt;}
.ws2_c00041{word-spacing:-3.162597pt;}
.ws0_c00041{word-spacing:-0.113067pt;}
.ws3_c00041{word-spacing:0.000000pt;}
.fs7_c00041{font-size:3.040000pt;}
.fs4_c00041{font-size:12.106667pt;}
.fs0_c00041{font-size:16.640000pt;}
.fs1_c00041{font-size:18.133333pt;}
.fs6_c00041{font-size:22.666667pt;}
.fs2_c00041{font-size:25.706667pt;}
.fs5_c00041{font-size:28.746667pt;}
.fs3_c00041{font-size:31.733333pt;}
.y0_c00041{bottom:0.000000pt;}
.yeb_c00041{bottom:223.773333pt;}
.yec_c00041{bottom:225.693333pt;}
.yed_c00041{bottom:227.026667pt;}
.ye5_c00041{bottom:243.026667pt;}
.ye7_c00041{bottom:243.226667pt;}
.yea_c00041{bottom:243.400000pt;}
.ye9_c00041{bottom:243.773333pt;}
.ye6_c00041{bottom:244.360000pt;}
.ye8_c00041{bottom:244.560000pt;}
.ye3_c00041{bottom:259.773333pt;}
.ydb_c00041{bottom:260.360000pt;}
.ye4_c00041{bottom:260.560000pt;}
.yde_c00041{bottom:260.733333pt;}
.ye0_c00041{bottom:261.106667pt;}
.ydc_c00041{bottom:261.306667pt;}
.ydd_c00041{bottom:261.693333pt;}
.ydf_c00041{bottom:261.893333pt;}
.ye2_c00041{bottom:262.640000pt;}
.ye1_c00041{bottom:263.026667pt;}
.yd6_c00041{bottom:277.106667pt;}
.yd9_c00041{bottom:278.440000pt;}
.yd5_c00041{bottom:279.026667pt;}
.yd7_c00041{bottom:279.226667pt;}
.yd8_c00041{bottom:280.360000pt;}
.yda_c00041{bottom:281.306667pt;}
.yd1_c00041{bottom:294.440000pt;}
.yd4_c00041{bottom:295.773333pt;}
.yd0_c00041{bottom:296.360000pt;}
.yd3_c00041{bottom:296.560000pt;}
.yd2_c00041{bottom:297.693333pt;}
.ycf_c00041{bottom:312.733333pt;}
.yce_c00041{bottom:313.106667pt;}
.ycc_c00041{bottom:313.693333pt;}
.ycd_c00041{bottom:315.026667pt;}
.ycb_c00041{bottom:330.066667pt;}
.yc7_c00041{bottom:330.440000pt;}
.yc6_c00041{bottom:331.026667pt;}
.yc8_c00041{bottom:331.226667pt;}
.yc9_c00041{bottom:332.360000pt;}
.yca_c00041{bottom:333.306667pt;}
.yc1_c00041{bottom:347.773333pt;}
.yc5_c00041{bottom:347.973333pt;}
.yc3_c00041{bottom:349.693333pt;}
.yc2_c00041{bottom:350.640000pt;}
.yc4_c00041{bottom:351.026667pt;}
.ybf_c00041{bottom:365.106667pt;}
.ybe_c00041{bottom:367.026667pt;}
.yc0_c00041{bottom:367.226667pt;}
.yb6_c00041{bottom:381.693333pt;}
.ybd_c00041{bottom:382.440000pt;}
.yb9_c00041{bottom:382.640000pt;}
.yb8_c00041{bottom:383.773333pt;}
.yb7_c00041{bottom:384.360000pt;}
.yba_c00041{bottom:384.560000pt;}
.ybb_c00041{bottom:385.306667pt;}
.ybc_c00041{bottom:385.693333pt;}
.yb5_c00041{bottom:399.973333pt;}
.yb1_c00041{bottom:401.106667pt;}
.yb0_c00041{bottom:401.693333pt;}
.yb3_c00041{bottom:402.066667pt;}
.yb4_c00041{bottom:402.640000pt;}
.yb2_c00041{bottom:403.026667pt;}
.yaf_c00041{bottom:418.440000pt;}
.yad_c00041{bottom:419.226667pt;}
.yab_c00041{bottom:420.360000pt;}
.yac_c00041{bottom:420.560000pt;}
.yae_c00041{bottom:421.306667pt;}
.yaa_c00041{bottom:433.693333pt;}
.ya6_c00041{bottom:435.600000pt;}
.ya9_c00041{bottom:435.773333pt;}
.ya5_c00041{bottom:436.560000pt;}
.ya7_c00041{bottom:437.306667pt;}
.ya8_c00041{bottom:437.693333pt;}
.ya4_c00041{bottom:453.306667pt;}
.ya1_c00041{bottom:454.066667pt;}
.ya0_c00041{bottom:455.026667pt;}
.ya2_c00041{bottom:455.226667pt;}
.ya3_c00041{bottom:455.973333pt;}
.y9e_c00041{bottom:469.693333pt;}
.y9c_c00041{bottom:470.440000pt;}
.y9f_c00041{bottom:471.773333pt;}
.y9a_c00041{bottom:472.360000pt;}
.y9b_c00041{bottom:472.560000pt;}
.y9d_c00041{bottom:473.306667pt;}
.y99_c00041{bottom:487.026667pt;}
.y98_c00041{bottom:489.106667pt;}
.y95_c00041{bottom:489.693333pt;}
.y96_c00041{bottom:489.893333pt;}
.y97_c00041{bottom:491.026667pt;}
.y92_c00041{bottom:505.306667pt;}
.y8f_c00041{bottom:505.893333pt;}
.y91_c00041{bottom:506.440000pt;}
.y90_c00041{bottom:507.026667pt;}
.y94_c00041{bottom:507.226667pt;}
.y93_c00041{bottom:508.360000pt;}
.y89_c00041{bottom:522.440000pt;}
.y8d_c00041{bottom:523.773333pt;}
.y8a_c00041{bottom:524.360000pt;}
.y8e_c00041{bottom:524.560000pt;}
.y8c_c00041{bottom:525.306667pt;}
.y8b_c00041{bottom:525.693333pt;}
.y87_c00041{bottom:542.640000pt;}
.y88_c00041{bottom:543.026667pt;}
.y81_c00041{bottom:557.106667pt;}
.y83_c00041{bottom:558.440000pt;}
.y82_c00041{bottom:559.026667pt;}
.y84_c00041{bottom:559.226667pt;}
.y85_c00041{bottom:559.400000pt;}
.y86_c00041{bottom:560.360000pt;}
.y7d_c00041{bottom:575.773333pt;}
.y80_c00041{bottom:577.306667pt;}
.y7f_c00041{bottom:577.693333pt;}
.y7e_c00041{bottom:578.640000pt;}
.y7b_c00041{bottom:591.026667pt;}
.y7c_c00041{bottom:593.106667pt;}
.y7a_c00041{bottom:593.893333pt;}
.y77_c00041{bottom:595.026667pt;}
.y79_c00041{bottom:595.226667pt;}
.y78_c00041{bottom:595.973333pt;}
.y73_c00041{bottom:610.440000pt;}
.y76_c00041{bottom:611.400000pt;}
.y72_c00041{bottom:612.360000pt;}
.y75_c00041{bottom:612.560000pt;}
.y74_c00041{bottom:613.693333pt;}
.y6f_c00041{bottom:627.773333pt;}
.y6e_c00041{bottom:629.693333pt;}
.y71_c00041{bottom:629.893333pt;}
.y70_c00041{bottom:631.026667pt;}
.y6d_c00041{bottom:647.026667pt;}
.y67_c00041{bottom:662.440000pt;}
.y6b_c00041{bottom:663.773333pt;}
.y6c_c00041{bottom:664.360000pt;}
.y6a_c00041{bottom:664.560000pt;}
.y69_c00041{bottom:664.733333pt;}
.y68_c00041{bottom:665.693333pt;}
.y64_c00041{bottom:681.106667pt;}
.y66_c00041{bottom:683.026667pt;}
.y65_c00041{bottom:683.040000pt;}
.y63_c00041{bottom:707.400000pt;}
.y60_c00041{bottom:708.360000pt;}
.y5e_c00041{bottom:708.560000pt;}
.y5f_c00041{bottom:709.306667pt;}
.y61_c00041{bottom:709.506667pt;}
.y62_c00041{bottom:710.266667pt;}
.y59_c00041{bottom:720.733333pt;}
.y5d_c00041{bottom:721.693333pt;}
.y5c_c00041{bottom:721.893333pt;}
.y58_c00041{bottom:722.266667pt;}
.y5b_c00041{bottom:722.640000pt;}
.y5a_c00041{bottom:723.600000pt;}
.y51_c00041{bottom:733.306667pt;}
.y52_c00041{bottom:733.893333pt;}
.y57_c00041{bottom:734.266667pt;}
.y56_c00041{bottom:735.026667pt;}
.y55_c00041{bottom:735.973333pt;}
.y53_c00041{bottom:736.173333pt;}
.y54_c00041{bottom:736.933333pt;}
.y4a_c00041{bottom:746.640000pt;}
.y50_c00041{bottom:747.400000pt;}
.y4b_c00041{bottom:748.360000pt;}
.y4e_c00041{bottom:748.560000pt;}
.y4f_c00041{bottom:749.306667pt;}
.y4c_c00041{bottom:749.506667pt;}
.y4d_c00041{bottom:750.266667pt;}
.y48_c00041{bottom:759.973333pt;}
.y43_c00041{bottom:760.360000pt;}
.y47_c00041{bottom:760.733333pt;}
.y45_c00041{bottom:761.306667pt;}
.y49_c00041{bottom:762.266667pt;}
.y46_c00041{bottom:762.640000pt;}
.y44_c00041{bottom:762.840000pt;}
.y40_c00041{bottom:772.733333pt;}
.y41_c00041{bottom:773.693333pt;}
.y42_c00041{bottom:775.226667pt;}
.y3f_c00041{bottom:775.600000pt;}
.y3e_c00041{bottom:787.026667pt;}
.y3d_c00041{bottom:788.933333pt;}
.y3a_c00041{bottom:799.400000pt;}
.y3b_c00041{bottom:800.360000pt;}
.y38_c00041{bottom:801.306667pt;}
.y39_c00041{bottom:801.506667pt;}
.y3c_c00041{bottom:802.266667pt;}
.y36_c00041{bottom:811.973333pt;}
.y32_c00041{bottom:812.733333pt;}
.y31_c00041{bottom:812.933333pt;}
.y35_c00041{bottom:813.693333pt;}
.y37_c00041{bottom:814.640000pt;}
.y33_c00041{bottom:814.840000pt;}
.y34_c00041{bottom:815.600000pt;}
.y2c_c00041{bottom:825.306667pt;}
.y2b_c00041{bottom:826.066667pt;}
.y2f_c00041{bottom:827.026667pt;}
.y30_c00041{bottom:827.226667pt;}
.y2d_c00041{bottom:827.973333pt;}
.y2e_c00041{bottom:828.933333pt;}
.y24_c00041{bottom:838.266667pt;}
.y28_c00041{bottom:839.400000pt;}
.y2a_c00041{bottom:839.973333pt;}
.y26_c00041{bottom:840.360000pt;}
.y25_c00041{bottom:841.306667pt;}
.y29_c00041{bottom:841.506667pt;}
.y27_c00041{bottom:842.266667pt;}
.y1f_c00041{bottom:851.400000pt;}
.y21_c00041{bottom:852.733333pt;}
.y22_c00041{bottom:852.933333pt;}
.y1e_c00041{bottom:853.506667pt;}
.y20_c00041{bottom:854.640000pt;}
.y23_c00041{bottom:855.600000pt;}
.y1a_c00041{bottom:864.933333pt;}
.y1c_c00041{bottom:865.693333pt;}
.y1d_c00041{bottom:866.640000pt;}
.y1b_c00041{bottom:867.600000pt;}
.y19_c00041{bottom:879.026667pt;}
.y18_c00041{bottom:880.933333pt;}
.y14_c00041{bottom:891.400000pt;}
.y13_c00041{bottom:892.360000pt;}
.y12_c00041{bottom:892.560000pt;}
.y15_c00041{bottom:893.306667pt;}
.y16_c00041{bottom:893.506667pt;}
.y17_c00041{bottom:894.266667pt;}
.y10_c00041{bottom:904.733333pt;}
.yd_c00041{bottom:905.306667pt;}
.y11_c00041{bottom:905.693333pt;}
.ye_c00041{bottom:906.640000pt;}
.yf_c00041{bottom:906.840000pt;}
.y9_c00041{bottom:918.066667pt;}
.yc_c00041{bottom:918.640000pt;}
.y6_c00041{bottom:918.840000pt;}
.y8_c00041{bottom:919.026667pt;}
.ya_c00041{bottom:919.226667pt;}
.y7_c00041{bottom:919.600000pt;}
.yb_c00041{bottom:920.933333pt;}
.y4_c00041{bottom:943.773333pt;}
.y5_c00041{bottom:944.560000pt;}
.y3_c00041{bottom:945.693333pt;}
.y2_c00041{bottom:979.600000pt;}
.y1_c00041{bottom:980.560000pt;}
.h8_c00041{height:3.739141pt;}
.h5_c00041{height:14.890964pt;}
.h1_c00041{height:20.466875pt;}
.h2_c00041{height:22.303646pt;}
.h7_c00041{height:27.879557pt;}
.h3_c00041{height:31.618698pt;}
.h6_c00041{height:35.357839pt;}
.h4_c00041{height:39.031380pt;}
.h0_c00041{height:1186.666667pt;}
.w0_c00041{width:782.666667pt;}
.x0_c00041{left:0.000000pt;}
.x66_c00041{left:135.626667pt;}
.x2_c00041{left:136.760000pt;}
.x82_c00041{left:137.706667pt;}
.x32_c00041{left:145.706667pt;}
.x28_c00041{left:148.373333pt;}
.x1c_c00041{left:149.333333pt;}
.x3_c00041{left:150.666667pt;}
.xf2_c00041{left:152.373333pt;}
.xdf_c00041{left:153.706667pt;}
.xb9_c00041{left:156.960000pt;}
.x73_c00041{left:158.666667pt;}
.x5d_c00041{left:160.000000pt;}
.x26_c00041{left:163.040000pt;}
.x1d_c00041{left:164.000000pt;}
.xa_c00041{left:165.333333pt;}
.x10c_c00041{left:167.626667pt;}
.xd7_c00041{left:169.333333pt;}
.xb4_c00041{left:170.666667pt;}
.xc1_c00041{left:173.706667pt;}
.xce_c00041{left:175.040000pt;}
.xf3_c00041{left:176.373333pt;}
.x74_c00041{left:177.333333pt;}
.x4_c00041{left:179.040000pt;}
.x106_c00041{left:183.040000pt;}
.x51_c00041{left:185.333333pt;}
.x27_c00041{left:186.666667pt;}
.x75_c00041{left:188.373333pt;}
.xa6_c00041{left:189.333333pt;}
.x15_c00041{left:192.000000pt;}
.xe5_c00041{left:193.333333pt;}
.x52_c00041{left:195.626667pt;}
.xc2_c00041{left:197.333333pt;}
.x9e_c00041{left:198.293333pt;}
.x3e_c00041{left:200.000000pt;}
.xe0_c00041{left:202.666667pt;}
.xac_c00041{left:203.626667pt;}
.x8f_c00041{left:205.333333pt;}
.xeb_c00041{left:208.000000pt;}
.xe6_c00041{left:210.666667pt;}
.xb_c00041{left:211.626667pt;}
.xdb_c00041{left:214.293333pt;}
.x9f_c00041{left:216.373333pt;}
.xd3_c00041{left:217.333333pt;}
.x83_c00041{left:218.666667pt;}
.x76_c00041{left:220.000000pt;}
.x46_c00041{left:224.000000pt;}
.x38_c00041{left:225.333333pt;}
.x29_c00041{left:226.293333pt;}
.x53_c00041{left:228.000000pt;}
.xf9_c00041{left:228.960000pt;}
.xd8_c00041{left:230.666667pt;}
.x33_c00041{left:231.626667pt;}
.x107_c00041{left:232.960000pt;}
.x1e_c00041{left:234.293333pt;}
.x5e_c00041{left:236.000000pt;}
.xe1_c00041{left:237.706667pt;}
.x5_c00041{left:238.666667pt;}
.x47_c00041{left:240.373333pt;}
.x16_c00041{left:242.293333pt;}
.x84_c00041{left:244.373333pt;}
.x8b_c00041{left:245.333333pt;}
.x3f_c00041{left:250.666667pt;}
.x17_c00041{left:251.626667pt;}
.x2a_c00041{left:253.333333pt;}
.x100_c00041{left:255.040000pt;}
.x67_c00041{left:256.000000pt;}
.x34_c00041{left:258.093333pt;}
.x6c_c00041{left:261.333333pt;}
.xf4_c00041{left:264.000000pt;}
.x77_c00041{left:265.333333pt;}
.x7b_c00041{left:266.666667pt;}
.xba_c00041{left:268.373333pt;}
.xfa_c00041{left:269.706667pt;}
.x108_c00041{left:273.333333pt;}
.xc_c00041{left:274.666667pt;}
.x54_c00041{left:276.000000pt;}
.xdc_c00041{left:277.333333pt;}
.x39_c00041{left:278.666667pt;}
.xf6_c00041{left:280.000000pt;}
.x85_c00041{left:281.333333pt;}
.x18_c00041{left:284.000000pt;}
.x86_c00041{left:286.293333pt;}
.x5f_c00041{left:288.373333pt;}
.x48_c00041{left:289.333333pt;}
.xad_c00041{left:292.373333pt;}
.xa0_c00041{left:293.706667pt;}
.x35_c00041{left:294.666667pt;}
.x68_c00041{left:295.626667pt;}
.x87_c00041{left:296.960000pt;}
.x10d_c00041{left:299.626667pt;}
.x60_c00041{left:301.333333pt;}
.xee_c00041{left:303.040000pt;}
.x6_c00041{left:304.000000pt;}
.x88_c00041{left:306.666667pt;}
.xbb_c00041{left:308.000000pt;}
.x40_c00041{left:309.706667pt;}
.x98_c00041{left:310.666667pt;}
.x1f_c00041{left:312.000000pt;}
.xc8_c00041{left:312.960000pt;}
.x19_c00041{left:314.293333pt;}
.x7c_c00041{left:316.000000pt;}
.x49_c00041{left:318.666667pt;}
.x36_c00041{left:320.373333pt;}
.x69_c00041{left:321.706667pt;}
.x89_c00041{left:322.666667pt;}
.xa7_c00041{left:323.626667pt;}
.x99_c00041{left:324.960000pt;}
.xef_c00041{left:326.666667pt;}
.x55_c00041{left:328.960000pt;}
.x8a_c00041{left:332.000000pt;}
.xc9_c00041{left:333.333333pt;}
.x7_c00041{left:336.960000pt;}
.x2b_c00041{left:338.666667pt;}
.x1a_c00041{left:339.626667pt;}
.xd_c00041{left:341.333333pt;}
.xa1_c00041{left:342.666667pt;}
.x37_c00041{left:344.000000pt;}
.x101_c00041{left:344.960000pt;}
.xb5_c00041{left:347.626667pt;}
.xd9_c00041{left:349.333333pt;}
.xc3_c00041{left:350.293333pt;}
.x41_c00041{left:352.000000pt;}
.x1_c00041{left:353.333333pt;}
.x78_c00041{left:354.293333pt;}
.x20_c00041{left:355.626667pt;}
.x7d_c00041{left:357.333333pt;}
.x6a_c00041{left:358.666667pt;}
.x9a_c00041{left:365.333333pt;}
.xca_c00041{left:369.706667pt;}
.xe_c00041{left:370.666667pt;}
.x90_c00041{left:372.000000pt;}
.xae_c00041{left:373.333333pt;}
.x6d_c00041{left:374.293333pt;}
.xa8_c00041{left:376.373333pt;}
.x1b_c00041{left:377.333333pt;}
.xfb_c00041{left:379.040000pt;}
.x3a_c00041{left:381.706667pt;}
.x42_c00041{left:382.666667pt;}
.x4a_c00041{left:385.333333pt;}
.x10e_c00041{left:386.666667pt;}
.x6e_c00041{left:388.000000pt;}
.xc4_c00041{left:391.040000pt;}
.x61_c00041{left:392.373333pt;}
.x56_c00041{left:393.333333pt;}
.xb6_c00041{left:394.666667pt;}
.x109_c00041{left:396.000000pt;}
.x7e_c00041{left:396.960000pt;}
.x2c_c00041{left:399.040000pt;}
.x8_c00041{left:400.000000pt;}
.xd4_c00041{left:401.333333pt;}
.xcb_c00041{left:403.040000pt;}
.xe7_c00041{left:405.333333pt;}
.x43_c00041{left:406.293333pt;}
.x6b_c00041{left:409.333333pt;}
.x10a_c00041{left:410.666667pt;}
.xa2_c00041{left:412.000000pt;}
.x91_c00041{left:413.333333pt;}
.xf_c00041{left:414.666667pt;}
.x9_c00041{left:420.000000pt;}
.xf7_c00041{left:422.293333pt;}
.x79_c00041{left:424.373333pt;}
.x8c_c00041{left:425.706667pt;}
.x62_c00041{left:427.040000pt;}
.xbc_c00041{left:428.000000pt;}
.x7f_c00041{left:429.706667pt;}
.xa3_c00041{left:431.040000pt;}
.x102_c00041{left:432.000000pt;}
.x10_c00041{left:433.333333pt;}
.x10b_c00041{left:434.293333pt;}
.x9b_c00041{left:436.000000pt;}
.xaf_c00041{left:437.706667pt;}
.xf5_c00041{left:441.706667pt;}
.x57_c00041{left:444.000000pt;}
.x44_c00041{left:445.333333pt;}
.x63_c00041{left:446.293333pt;}
.x7a_c00041{left:448.000000pt;}
.xf0_c00041{left:449.333333pt;}
.x4b_c00041{left:452.373333pt;}
.x8d_c00041{left:453.333333pt;}
.xc5_c00041{left:454.666667pt;}
.xcf_c00041{left:456.000000pt;}
.x6f_c00041{left:456.960000pt;}
.xda_c00041{left:459.040000pt;}
.x103_c00041{left:460.000000pt;}
.xfc_c00041{left:461.333333pt;}
.xb0_c00041{left:462.293333pt;}
.xa4_c00041{left:464.000000pt;}
.x92_c00041{left:466.666667pt;}
.x3b_c00041{left:468.000000pt;}
.x45_c00041{left:472.373333pt;}
.xa9_c00041{left:473.333333pt;}
.xbd_c00041{left:476.960000pt;}
.xf8_c00041{left:479.040000pt;}
.xdd_c00041{left:480.000000pt;}
.x58_c00041{left:481.706667pt;}
.xb7_c00041{left:485.333333pt;}
.x2d_c00041{left:486.666667pt;}
.x70_c00041{left:490.293333pt;}
.xe2_c00041{left:492.000000pt;}
.xe8_c00041{left:493.333333pt;}
.x93_c00041{left:494.666667pt;}
.x11_c00041{left:496.573333pt;}
.xfe_c00041{left:498.666667pt;}
.x64_c00041{left:500.373333pt;}
.xd0_c00041{left:501.333333pt;}
.xec_c00041{left:502.293333pt;}
.x4c_c00041{left:503.626667pt;}
.x80_c00041{left:504.573333pt;}
.x21_c00041{left:506.666667pt;}
.xcc_c00041{left:507.626667pt;}
.xe9_c00041{left:508.960000pt;}
.x2e_c00041{left:510.666667pt;}
.x65_c00041{left:512.573333pt;}
.xc6_c00041{left:513.706667pt;}
.xff_c00041{left:515.040000pt;}
.x59_c00041{left:516.373333pt;}
.x22_c00041{left:517.706667pt;}
.x104_c00041{left:518.666667pt;}
.xbe_c00041{left:520.000000pt;}
.x9c_c00041{left:520.960000pt;}
.x3c_c00041{left:522.293333pt;}
.x4d_c00041{left:524.000000pt;}
.xaa_c00041{left:529.706667pt;}
.xd1_c00041{left:533.333333pt;}
.x8e_c00041{left:534.293333pt;}
.x12_c00041{left:536.000000pt;}
.xb1_c00041{left:537.706667pt;}
.x4e_c00041{left:539.040000pt;}
.xd5_c00041{left:540.373333pt;}
.x94_c00041{left:541.333333pt;}
.x2f_c00041{left:543.040000pt;}
.xcd_c00041{left:544.000000pt;}
.xed_c00041{left:548.373333pt;}
.x23_c00041{left:549.333333pt;}
.x4f_c00041{left:552.573333pt;}
.xb8_c00041{left:555.040000pt;}
.x95_c00041{left:557.333333pt;}
.x30_c00041{left:558.666667pt;}
.x71_c00041{left:559.626667pt;}
.xbf_c00041{left:560.960000pt;}
.x5a_c00041{left:563.626667pt;}
.x13_c00041{left:565.706667pt;}
.xde_c00041{left:566.666667pt;}
.xb2_c00041{left:567.626667pt;}
.x3d_c00041{left:572.000000pt;}
.xe3_c00041{left:576.960000pt;}
.x14_c00041{left:582.666667pt;}
.x9d_c00041{left:585.333333pt;}
.xd2_c00041{left:586.293333pt;}
.xab_c00041{left:588.373333pt;}
.x5b_c00041{left:589.706667pt;}
.x24_c00041{left:590.666667pt;}
.x96_c00041{left:591.626667pt;}
.xd6_c00041{left:594.293333pt;}
.xc7_c00041{left:596.000000pt;}
.xea_c00041{left:602.293333pt;}
.x81_c00041{left:603.626667pt;}
.x72_c00041{left:606.293333pt;}
.xfd_c00041{left:610.293333pt;}
.xc0_c00041{left:612.000000pt;}
.x31_c00041{left:613.906667pt;}
.x25_c00041{left:616.373333pt;}
.x97_c00041{left:617.333333pt;}
.xe4_c00041{left:618.666667pt;}
.xf1_c00041{left:620.000000pt;}
.xa5_c00041{left:621.333333pt;}
.x50_c00041{left:624.000000pt;}
.x105_c00041{left:625.706667pt;}
.x5c_c00041{left:626.666667pt;}
.xb3_c00041{left:629.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_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_5281574b2bfb40bc1611ce24.woff2')format("woff");}.ff1_c00042{font-family:ff1_c00042;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf5_c00042{transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);}
.mfa_c00042{transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);}
.mf0_c00042{transform:matrix(0.276471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276471,0.000000,0.000000,0.250000,0,0);}
.mf4_c00042{transform:matrix(0.281176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281176,0.000000,0.000000,0.250000,0,0);}
.m5f_c00042{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.mfd_c00042{transform:matrix(0.291912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291912,0.000000,0.000000,0.250000,0,0);}
.m98_c00042{transform:matrix(0.295012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295012,0.000000,0.000000,0.250000,0,0);}
.ma8_c00042{transform:matrix(0.316302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316302,0.000000,0.000000,0.250000,0,0);}
.m60_c00042{transform:matrix(0.321227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321227,0.000000,0.000000,0.250000,0,0);}
.m5d_c00042{transform:matrix(0.327922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327922,0.000000,0.000000,0.250000,0,0);}
.m23_c00042{transform:matrix(0.338957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338957,0.000000,0.000000,0.250000,0,0);}
.m85_c00042{transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);}
.m13_c00042{transform:matrix(0.361765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361765,0.000000,0.000000,0.250000,0,0);}
.m96_c00042{transform:matrix(0.363188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363188,0.000000,0.000000,0.250000,0,0);}
.m86_c00042{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m29_c00042{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.me_c00042{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m9b_c00042{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m34_c00042{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.mb4_c00042{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.md2_c00042{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00042{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mab_c00042{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.ma4_c00042{transform:matrix(0.378151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378151,0.000000,0.000000,0.250000,0,0);}
.m28_c00042{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m6a_c00042{transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);}
.m8c_c00042{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.md_c00042{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m8b_c00042{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.m2f_c00042{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.mca_c00042{transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);}
.mc8_c00042{transform:matrix(0.388971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388971,0.000000,0.000000,0.250000,0,0);}
.mb5_c00042{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m82_c00042{transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);}
.m9a_c00042{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m97_c00042{transform:matrix(0.393788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393788,0.000000,0.000000,0.250000,0,0);}
.me1_c00042{transform:matrix(0.395294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395294,0.000000,0.000000,0.250000,0,0);}
.m22_c00042{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m63_c00042{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m99_c00042{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m4b_c00042{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m30_c00042{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m3a_c00042{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.m74_c00042{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m19_c00042{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m9c_c00042{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m8f_c00042{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m25_c00042{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m80_c00042{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.mb9_c00042{transform:matrix(0.406772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406772,0.000000,0.000000,0.250000,0,0);}
.mc1_c00042{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m77_c00042{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m6f_c00042{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m6b_c00042{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.ma6_c00042{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m6e_c00042{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m35_c00042{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m4f_c00042{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m6_c00042{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mdc_c00042{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.mc_c00042{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m9e_c00042{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mc4_c00042{transform:matrix(0.420673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420673,0.000000,0.000000,0.250000,0,0);}
.mcd_c00042{transform:matrix(0.421324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421324,0.000000,0.000000,0.250000,0,0);}
.m79_c00042{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mbf_c00042{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.mad_c00042{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m4a_c00042{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m32_c00042{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m76_c00042{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m72_c00042{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.mc0_c00042{transform:matrix(0.431891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431891,0.000000,0.000000,0.250000,0,0);}
.mb7_c00042{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mda_c00042{transform:matrix(0.433088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433088,0.000000,0.000000,0.250000,0,0);}
.m6d_c00042{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.maa_c00042{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m5c_c00042{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.md3_c00042{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);}
.m75_c00042{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m11_c00042{transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);}
.m7a_c00042{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.mcb_c00042{transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);}
.m1_c00042{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m8d_c00042{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m9_c00042{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m8a_c00042{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m3d_c00042{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.me5_c00042{transform:matrix(0.450321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450321,0.000000,0.000000,0.250000,0,0);}
.mdf_c00042{transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);}
.m93_c00042{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m92_c00042{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.maf_c00042{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m67_c00042{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m49_c00042{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m56_c00042{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.mfc_c00042{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_c00042{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m2c_c00042{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m54_c00042{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.md8_c00042{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.mf6_c00042{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.m51_c00042{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m89_c00042{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.ma2_c00042{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.md9_c00042{transform:matrix(0.470353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470353,0.000000,0.000000,0.250000,0,0);}
.mdd_c00042{transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);}
.m1b_c00042{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.mf9_c00042{transform:matrix(0.471154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471154,0.000000,0.000000,0.250000,0,0);}
.m59_c00042{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.m71_c00042{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.mac_c00042{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.md5_c00042{transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);}
.m5e_c00042{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m3f_c00042{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.me4_c00042{transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);}
.m7_c00042{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m4c_c00042{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.mf1_c00042{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.ma9_c00042{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mea_c00042{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m88_c00042{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m44_c00042{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mb8_c00042{transform:matrix(0.490588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490588,0.000000,0.000000,0.250000,0,0);}
.m95_c00042{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m20_c00042{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m52_c00042{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mf3_c00042{transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);}
.mf8_c00042{transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);}
.m46_c00042{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m21_c00042{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.mb0_c00042{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m12_c00042{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_c00042{transform:matrix(0.502941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502941,0.000000,0.000000,0.250000,0,0);}
.m3_c00042{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m66_c00042{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m27_c00042{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mb1_c00042{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m1f_c00042{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.ma5_c00042{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m40_c00042{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.me0_c00042{transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);}
.m43_c00042{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m65_c00042{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.mee_c00042{transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);}
.me6_c00042{transform:matrix(0.526442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526442,0.000000,0.000000,0.250000,0,0);}
.m73_c00042{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.ma1_c00042{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m2a_c00042{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m26_c00042{transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);}
.m5_c00042{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.me9_c00042{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m7e_c00042{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m61_c00042{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m2b_c00042{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m14_c00042{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m47_c00042{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m91_c00042{transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);}
.m9d_c00042{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m31_c00042{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m55_c00042{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m7b_c00042{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m39_c00042{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m78_c00042{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m90_c00042{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m36_c00042{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m48_c00042{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mba_c00042{transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);}
.mbd_c00042{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m6c_c00042{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m2_c00042{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m2d_c00042{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.me2_c00042{transform:matrix(0.554487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554487,0.000000,0.000000,0.250000,0,0);}
.m1a_c00042{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m64_c00042{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mdb_c00042{transform:matrix(0.556167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556167,0.000000,0.000000,0.250000,0,0);}
.m7c_c00042{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m84_c00042{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mb2_c00042{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m70_c00042{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m38_c00042{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.md1_c00042{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m15_c00042{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m1e_c00042{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m5a_c00042{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.me8_c00042{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m42_c00042{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m4_c00042{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mb_c00042{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m58_c00042{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m4d_c00042{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m53_c00042{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.mc7_c00042{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.md6_c00042{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m41_c00042{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m7d_c00042{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m17_c00042{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.ma7_c00042{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m94_c00042{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);}
.me7_c00042{transform:matrix(0.602564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602564,0.000000,0.000000,0.250000,0,0);}
.mae_c00042{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m4e_c00042{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mc2_c00042{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m8_c00042{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m3b_c00042{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m87_c00042{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m45_c00042{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mbe_c00042{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.mbc_c00042{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.mbb_c00042{transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);}
.mb3_c00042{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m18_c00042{transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);}
.me3_c00042{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.ma_c00042{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_c00042{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m2e_c00042{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m5b_c00042{transform:matrix(0.638804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638804,0.000000,0.000000,0.250000,0,0);}
.m68_c00042{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m10_c00042{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.md0_c00042{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m3e_c00042{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.mc3_c00042{transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);}
.m3c_c00042{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m69_c00042{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mc9_c00042{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m83_c00042{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mc5_c00042{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mef_c00042{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.md7_c00042{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.med_c00042{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.ma0_c00042{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.mf7_c00042{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m9f_c00042{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m7f_c00042{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mf2_c00042{transform:matrix(0.720264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720264,0.000000,0.000000,0.250000,0,0);}
.m8e_c00042{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m24_c00042{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.meb_c00042{transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);}
.ma3_c00042{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.mde_c00042{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m1d_c00042{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m62_c00042{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m33_c00042{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mfb_c00042{transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);}
.m1c_c00042{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m50_c00042{transform:matrix(0.780449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780449,0.000000,0.000000,0.250000,0,0);}
.mec_c00042{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m37_c00042{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mcf_c00042{transform:matrix(0.806891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806891,0.000000,0.000000,0.250000,0,0);}
.m57_c00042{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.mce_c00042{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mcc_c00042{transform:matrix(1.380531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.380531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.380531,0.000000,0.000000,0.250000,0,0);}
.mc6_c00042{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.md4_c00042{transform:matrix(2.758850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.758850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.758850,0.000000,0.000000,0.250000,0,0);}
.m81_c00042{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00042{vertical-align:-6.000000px;}
.v0_c00042{vertical-align:0.000000px;}
.v2_c00042{vertical-align:6.000000px;}
.ls1_c00042{letter-spacing:0.000000px;}
.ls0_c00042{letter-spacing:15.303448px;}
.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;}
}
.wsa_c00042{word-spacing:-17.300728px;}
.ws1_c00042{word-spacing:-7.854100px;}
.ws15_c00042{word-spacing:0.000000px;}
.ws6_c00042{word-spacing:0.688827px;}
.ws0_c00042{word-spacing:1.906692px;}
.ws8_c00042{word-spacing:13.306168px;}
.wsc_c00042{word-spacing:23.626694px;}
.wse_c00042{word-spacing:25.629635px;}
.ws14_c00042{word-spacing:29.395112px;}
.ws12_c00042{word-spacing:30.193299px;}
.wsd_c00042{word-spacing:39.638400px;}
.ws13_c00042{word-spacing:42.638400px;}
.ws7_c00042{word-spacing:43.283673px;}
.ws11_c00042{word-spacing:44.682810px;}
.ws2_c00042{word-spacing:47.359908px;}
.ws10_c00042{word-spacing:47.497848px;}
.ws3_c00042{word-spacing:48.389692px;}
.wsf_c00042{word-spacing:49.633219px;}
.ws9_c00042{word-spacing:54.347539px;}
.ws5_c00042{word-spacing:73.568291px;}
.ws4_c00042{word-spacing:76.841018px;}
.wsb_c00042{word-spacing:84.250880px;}
._2_c00042{margin-left:-15.303448px;}
._4_c00042{width:33.583715px;}
._3_c00042{width:35.586656px;}
._5_c00042{width:53.570880px;}
._7_c00042{width:58.430328px;}
._0_c00042{width:60.940404px;}
._6_c00042{width:63.798859px;}
._1_c00042{width:87.773498px;}
.fc0_c00042{color:transparent;}
.fs8_c00042{font-size:3.420000px;}
.fsb_c00042{font-size:6.780000px;}
.fsc_c00042{font-size:11.880000px;}
.fsa_c00042{font-size:13.620000px;}
.fs5_c00042{font-size:18.720000px;}
.fs0_c00042{font-size:20.400000px;}
.fs3_c00042{font-size:25.500000px;}
.fs1_c00042{font-size:28.920000px;}
.fs4_c00042{font-size:32.340000px;}
.fs2_c00042{font-size:35.700000px;}
.fs6_c00042{font-size:39.120000px;}
.fs7_c00042{font-size:42.540000px;}
.fs9_c00042{font-size:49.320000px;}
.y0_c00042{bottom:0.000000px;}
.y94_c00042{bottom:250.905000px;}
.y95_c00042{bottom:251.745000px;}
.y96_c00042{bottom:253.245000px;}
.y99_c00042{bottom:254.130000px;}
.y98_c00042{bottom:254.325000px;}
.y93_c00042{bottom:254.535000px;}
.y97_c00042{bottom:255.405000px;}
.y9a_c00042{bottom:256.470000px;}
.y8f_c00042{bottom:271.245000px;}
.y90_c00042{bottom:272.745000px;}
.y8e_c00042{bottom:273.405000px;}
.y8d_c00042{bottom:273.630000px;}
.y8c_c00042{bottom:274.905000px;}
.y91_c00042{bottom:275.325000px;}
.y8b_c00042{bottom:275.745000px;}
.y92_c00042{bottom:276.405000px;}
.y87_c00042{bottom:292.245000px;}
.y89_c00042{bottom:293.325000px;}
.y85_c00042{bottom:293.745000px;}
.y88_c00042{bottom:293.970000px;}
.y86_c00042{bottom:294.405000px;}
.y8a_c00042{bottom:294.630000px;}
.y84_c00042{bottom:297.405000px;}
.y7d_c00042{bottom:309.825000px;}
.y7f_c00042{bottom:310.680000px;}
.y80_c00042{bottom:311.535000px;}
.y81_c00042{bottom:311.745000px;}
.y82_c00042{bottom:312.630000px;}
.y83_c00042{bottom:313.245000px;}
.y7c_c00042{bottom:313.680000px;}
.y7e_c00042{bottom:313.905000px;}
.y79_c00042{bottom:330.405000px;}
.y7b_c00042{bottom:331.245000px;}
.y78_c00042{bottom:332.970000px;}
.y77_c00042{bottom:333.405000px;}
.y76_c00042{bottom:333.825000px;}
.y7a_c00042{bottom:334.470000px;}
.y75_c00042{bottom:338.970000px;}
.y72_c00042{bottom:350.745000px;}
.y70_c00042{bottom:351.825000px;}
.y73_c00042{bottom:352.905000px;}
.y74_c00042{bottom:353.970000px;}
.y71_c00042{bottom:354.405000px;}
.y6f_c00042{bottom:358.470000px;}
.y6e_c00042{bottom:358.905000px;}
.y69_c00042{bottom:369.180000px;}
.y6c_c00042{bottom:370.245000px;}
.y6a_c00042{bottom:371.970000px;}
.y6b_c00042{bottom:372.405000px;}
.y6d_c00042{bottom:373.470000px;}
.y68_c00042{bottom:373.920000px;}
.y67_c00042{bottom:374.745000px;}
.y10a_c00042{bottom:403.050000px;}
.y109_c00042{bottom:404.550000px;}
.y10c_c00042{bottom:405.630000px;}
.y108_c00042{bottom:406.695000px;}
.y10b_c00042{bottom:406.920000px;}
.y107_c00042{bottom:407.130000px;}
.y106_c00042{bottom:408.195000px;}
.y105_c00042{bottom:409.050000px;}
.y100_c00042{bottom:416.550000px;}
.y102_c00042{bottom:417.630000px;}
.y104_c00042{bottom:418.695000px;}
.yff_c00042{bottom:419.130000px;}
.y103_c00042{bottom:420.195000px;}
.y101_c00042{bottom:420.420000px;}
.yfe_c00042{bottom:420.630000px;}
.yfc_c00042{bottom:422.550000px;}
.yfd_c00042{bottom:423.195000px;}
.yfb_c00042{bottom:432.630000px;}
.yfa_c00042{bottom:433.695000px;}
.yf9_c00042{bottom:434.130000px;}
.yf8_c00042{bottom:436.695000px;}
.yf7_c00042{bottom:437.130000px;}
.yf6_c00042{bottom:446.130000px;}
.yf1_c00042{bottom:447.195000px;}
.yf3_c00042{bottom:447.630000px;}
.yf4_c00042{bottom:448.470000px;}
.yf2_c00042{bottom:448.695000px;}
.yf5_c00042{bottom:448.920000px;}
.yf0_c00042{bottom:450.195000px;}
.yef_c00042{bottom:450.630000px;}
.ye9_c00042{bottom:460.695000px;}
.yea_c00042{bottom:461.130000px;}
.yeb_c00042{bottom:461.775000px;}
.yed_c00042{bottom:461.970000px;}
.yee_c00042{bottom:462.195000px;}
.yec_c00042{bottom:462.420000px;}
.ye7_c00042{bottom:463.050000px;}
.ye8_c00042{bottom:463.695000px;}
.ye5_c00042{bottom:473.130000px;}
.ye6_c00042{bottom:474.630000px;}
.ye4_c00042{bottom:475.695000px;}
.ye3_c00042{bottom:476.130000px;}
.ye2_c00042{bottom:477.195000px;}
.ye1_c00042{bottom:479.130000px;}
.ye0_c00042{bottom:487.695000px;}
.ydf_c00042{bottom:488.130000px;}
.yde_c00042{bottom:489.630000px;}
.ydd_c00042{bottom:490.275000px;}
.ydc_c00042{bottom:492.630000px;}
.ydb_c00042{bottom:503.130000px;}
.yda_c00042{bottom:506.130000px;}
.yd9_c00042{bottom:516.195000px;}
.yd8_c00042{bottom:516.630000px;}
.yd7_c00042{bottom:518.130000px;}
.yd6_c00042{bottom:519.630000px;}
.yd5_c00042{bottom:529.695000px;}
.yd4_c00042{bottom:530.130000px;}
.yd3_c00042{bottom:530.550000px;}
.yd2_c00042{bottom:533.130000px;}
.ycf_c00042{bottom:542.130000px;}
.yd0_c00042{bottom:543.630000px;}
.yd1_c00042{bottom:544.470000px;}
.yce_c00042{bottom:544.695000px;}
.ycd_c00042{bottom:546.630000px;}
.ycc_c00042{bottom:557.130000px;}
.yca_c00042{bottom:557.550000px;}
.ycb_c00042{bottom:558.195000px;}
.yc9_c00042{bottom:560.550000px;}
.yc8_c00042{bottom:570.630000px;}
.yc6_c00042{bottom:573.195000px;}
.yc7_c00042{bottom:573.420000px;}
.yc5_c00042{bottom:574.050000px;}
.yc3_c00042{bottom:585.195000px;}
.yc4_c00042{bottom:585.630000px;}
.yc2_c00042{bottom:586.695000px;}
.yc1_c00042{bottom:586.920000px;}
.yc0_c00042{bottom:588.630000px;}
.ybf_c00042{bottom:598.695000px;}
.ybe_c00042{bottom:599.130000px;}
.ybc_c00042{bottom:600.195000px;}
.ybd_c00042{bottom:600.420000px;}
.ybb_c00042{bottom:602.130000px;}
.yba_c00042{bottom:603.630000px;}
.yb8_c00042{bottom:612.630000px;}
.yb6_c00042{bottom:613.695000px;}
.yb5_c00042{bottom:614.130000px;}
.yb9_c00042{bottom:614.355000px;}
.yb4_c00042{bottom:615.195000px;}
.yb7_c00042{bottom:615.420000px;}
.yb3_c00042{bottom:616.050000px;}
.yb1_c00042{bottom:626.130000px;}
.yaf_c00042{bottom:627.195000px;}
.yb2_c00042{bottom:627.855000px;}
.yae_c00042{bottom:628.050000px;}
.yb0_c00042{bottom:628.920000px;}
.yad_c00042{bottom:631.695000px;}
.yaa_c00042{bottom:645.630000px;}
.yab_c00042{bottom:646.695000px;}
.yac_c00042{bottom:646.920000px;}
.ya9_c00042{bottom:648.630000px;}
.ya7_c00042{bottom:659.130000px;}
.ya8_c00042{bottom:660.195000px;}
.ya6_c00042{bottom:660.630000px;}
.ya5_c00042{bottom:662.130000px;}
.ya3_c00042{bottom:681.825000px;}
.ya2_c00042{bottom:683.970000px;}
.ya4_c00042{bottom:685.050000px;}
.ya1_c00042{bottom:696.825000px;}
.ya0_c00042{bottom:697.905000px;}
.y9f_c00042{bottom:698.550000px;}
.y9e_c00042{bottom:698.970000px;}
.y9d_c00042{bottom:700.905000px;}
.y9c_c00042{bottom:722.130000px;}
.y9b_c00042{bottom:724.050000px;}
.y64_c00042{bottom:763.245000px;}
.y66_c00042{bottom:764.550000px;}
.y63_c00042{bottom:764.970000px;}
.y62_c00042{bottom:765.405000px;}
.y65_c00042{bottom:765.630000px;}
.y61_c00042{bottom:767.325000px;}
.y60_c00042{bottom:781.905000px;}
.y5f_c00042{bottom:782.745000px;}
.y5e_c00042{bottom:784.905000px;}
.y5c_c00042{bottom:802.245000px;}
.y5b_c00042{bottom:803.325000px;}
.y5a_c00042{bottom:804.405000px;}
.y59_c00042{bottom:804.630000px;}
.y5d_c00042{bottom:805.470000px;}
.y58_c00042{bottom:805.680000px;}
.y56_c00042{bottom:823.245000px;}
.y53_c00042{bottom:823.905000px;}
.y54_c00042{bottom:824.130000px;}
.y55_c00042{bottom:824.325000px;}
.y57_c00042{bottom:824.970000px;}
.y52_c00042{bottom:825.405000px;}
.y51_c00042{bottom:826.905000px;}
.y4a_c00042{bottom:840.180000px;}
.y4d_c00042{bottom:841.245000px;}
.y4e_c00042{bottom:841.680000px;}
.y4b_c00042{bottom:842.325000px;}
.y4f_c00042{bottom:842.745000px;}
.y4c_c00042{bottom:843.405000px;}
.y50_c00042{bottom:843.630000px;}
.y49_c00042{bottom:844.905000px;}
.y48_c00042{bottom:845.325000px;}
.y47_c00042{bottom:863.130000px;}
.y46_c00042{bottom:864.405000px;}
.y45_c00042{bottom:865.905000px;}
.y43_c00042{bottom:879.405000px;}
.y42_c00042{bottom:880.905000px;}
.y3f_c00042{bottom:881.745000px;}
.y40_c00042{bottom:882.630000px;}
.y44_c00042{bottom:882.825000px;}
.y41_c00042{bottom:883.905000px;}
.y3e_c00042{bottom:884.325000px;}
.y3d_c00042{bottom:885.630000px;}
.y3b_c00042{bottom:901.245000px;}
.y3c_c00042{bottom:902.970000px;}
.y3a_c00042{bottom:903.405000px;}
.y39_c00042{bottom:903.825000px;}
.y38_c00042{bottom:905.325000px;}
.y36_c00042{bottom:920.745000px;}
.y37_c00042{bottom:921.825000px;}
.y35_c00042{bottom:922.905000px;}
.y34_c00042{bottom:924.405000px;}
.y33_c00042{bottom:926.970000px;}
.y32_c00042{bottom:939.825000px;}
.y2e_c00042{bottom:940.245000px;}
.y2f_c00042{bottom:941.970000px;}
.y31_c00042{bottom:942.405000px;}
.y30_c00042{bottom:942.630000px;}
.y2d_c00042{bottom:943.470000px;}
.y2c_c00042{bottom:943.905000px;}
.y2b_c00042{bottom:944.325000px;}
.y2a_c00042{bottom:958.905000px;}
.y27_c00042{bottom:959.745000px;}
.y26_c00042{bottom:960.825000px;}
.y28_c00042{bottom:961.905000px;}
.y29_c00042{bottom:962.130000px;}
.y23_c00042{bottom:978.405000px;}
.y22_c00042{bottom:979.245000px;}
.y24_c00042{bottom:980.745000px;}
.y21_c00042{bottom:981.405000px;}
.y25_c00042{bottom:981.630000px;}
.y20_c00042{bottom:982.470000px;}
.y1f_c00042{bottom:982.905000px;}
.y1e_c00042{bottom:983.325000px;}
.y1a_c00042{bottom:998.745000px;}
.y17_c00042{bottom:999.180000px;}
.y16_c00042{bottom:999.825000px;}
.y1c_c00042{bottom:1000.245000px;}
.y1d_c00042{bottom:1000.905000px;}
.y18_c00042{bottom:1001.130000px;}
.y19_c00042{bottom:1001.970000px;}
.y1b_c00042{bottom:1002.405000px;}
.y10_c00042{bottom:1018.245000px;}
.y12_c00042{bottom:1018.470000px;}
.y15_c00042{bottom:1018.905000px;}
.y14_c00042{bottom:1019.745000px;}
.yf_c00042{bottom:1020.405000px;}
.y11_c00042{bottom:1020.630000px;}
.y13_c00042{bottom:1021.905000px;}
.ye_c00042{bottom:1022.325000px;}
.yd_c00042{bottom:1023.405000px;}
.y9_c00042{bottom:1038.405000px;}
.ya_c00042{bottom:1039.245000px;}
.y8_c00042{bottom:1040.550000px;}
.y7_c00042{bottom:1040.745000px;}
.yc_c00042{bottom:1040.970000px;}
.yb_c00042{bottom:1041.405000px;}
.y5_c00042{bottom:1057.470000px;}
.y6_c00042{bottom:1058.325000px;}
.y4_c00042{bottom:1058.745000px;}
.y3_c00042{bottom:1060.905000px;}
.y2_c00042{bottom:1096.905000px;}
.y1_c00042{bottom:1099.050000px;}
.h9_c00042{height:4.206533px;}
.hd_c00042{height:8.339268px;}
.hf_c00042{height:14.612168px;}
.hb_c00042{height:16.752334px;}
.he_c00042{height:22.752334px;}
.h6_c00042{height:23.025234px;}
.h1_c00042{height:25.091602px;}
.hc_c00042{height:29.025234px;}
.h4_c00042{height:31.364502px;}
.h2_c00042{height:35.571035px;}
.h5_c00042{height:39.777568px;}
.h3_c00042{height:43.910303px;}
.h7_c00042{height:48.116836px;}
.h8_c00042{height:52.323369px;}
.ha_c00042{height:60.662637px;}
.h0_c00042{height:1335.000000px;}
.w0_c00042{width:880.500000px;}
.x0_c00042{left:0.000000px;}
.x3_c00042{left:153.420000px;}
.x2b_c00042{left:155.355000px;}
.x66_c00042{left:169.500000px;}
.x9f_c00042{left:170.580000px;}
.x56_c00042{left:172.920000px;}
.xd9_c00042{left:174.000000px;}
.xc5_c00042{left:176.580000px;}
.x1f_c00042{left:180.000000px;}
.x5d_c00042{left:183.855000px;}
.xa6_c00042{left:186.420000px;}
.x4e_c00042{left:190.080000px;}
.xcc_c00042{left:195.000000px;}
.x57_c00042{left:199.920000px;}
.x2c_c00042{left:203.775000px;}
.x44_c00042{left:205.275000px;}
.x6f_c00042{left:207.420000px;}
.x4_c00042{left:208.500000px;}
.xd8_c00042{left:210.000000px;}
.x89_c00042{left:211.920000px;}
.xd0_c00042{left:214.500000px;}
.xbb_c00042{left:217.500000px;}
.x67_c00042{left:218.580000px;}
.x20_c00042{left:220.500000px;}
.xb2_c00042{left:222.420000px;}
.x91_c00042{left:223.500000px;}
.x77_c00042{left:225.420000px;}
.xda_c00042{left:231.000000px;}
.xdd_c00042{left:232.920000px;}
.x4f_c00042{left:234.420000px;}
.x82_c00042{left:237.000000px;}
.x3a_c00042{left:238.500000px;}
.xa0_c00042{left:240.000000px;}
.x5e_c00042{left:241.920000px;}
.x70_c00042{left:244.920000px;}
.xe2_c00042{left:246.000000px;}
.x68_c00042{left:250.275000px;}
.x12_c00042{left:252.420000px;}
.x2d_c00042{left:253.500000px;}
.x58_c00042{left:254.580000px;}
.x3b_c00042{left:256.920000px;}
.x99_c00042{left:259.080000px;}
.x13_c00042{left:260.580000px;}
.xc6_c00042{left:262.500000px;}
.x5_c00042{left:263.580000px;}
.xbc_c00042{left:265.500000px;}
.x2e_c00042{left:270.420000px;}
.x71_c00042{left:271.500000px;}
.x21_c00042{left:272.580000px;}
.x83_c00042{left:277.500000px;}
.x5f_c00042{left:280.500000px;}
.x6_c00042{left:283.920000px;}
.x2f_c00042{left:285.000000px;}
.x59_c00042{left:286.500000px;}
.x9a_c00042{left:288.000000px;}
.x22_c00042{left:291.420000px;}
.x50_c00042{left:292.500000px;}
.x78_c00042{left:294.000000px;}
.xa7_c00042{left:295.080000px;}
.xc7_c00042{left:297.000000px;}
.x30_c00042{left:298.920000px;}
.x60_c00042{left:300.420000px;}
.x84_c00042{left:301.920000px;}
.x14_c00042{left:303.420000px;}
.xe3_c00042{left:304.500000px;}
.xe6_c00042{left:307.920000px;}
.x72_c00042{left:309.000000px;}
.x15_c00042{left:310.500000px;}
.x7_c00042{left:312.000000px;}
.x92_c00042{left:313.080000px;}
.x45_c00042{left:314.580000px;}
.x23_c00042{left:316.920000px;}
.x69_c00042{left:318.420000px;}
.xe4_c00042{left:322.500000px;}
.x79_c00042{left:323.580000px;}
.x3c_c00042{left:327.000000px;}
.xbf_c00042{left:329.775000px;}
.x93_c00042{left:331.920000px;}
.xad_c00042{left:333.420000px;}
.xa1_c00042{left:336.000000px;}
.x5a_c00042{left:337.500000px;}
.x31_c00042{left:339.000000px;}
.x8a_c00042{left:346.500000px;}
.x24_c00042{left:348.000000px;}
.x8_c00042{left:352.500000px;}
.x16_c00042{left:354.420000px;}
.x7a_c00042{left:356.145000px;}
.x94_c00042{left:360.000000px;}
.x8b_c00042{left:364.500000px;}
.x46_c00042{left:365.580000px;}
.xa8_c00042{left:367.275000px;}
.x9_c00042{left:369.420000px;}
.x7b_c00042{left:370.500000px;}
.xcd_c00042{left:372.420000px;}
.x61_c00042{left:373.500000px;}
.x73_c00042{left:375.420000px;}
.xdb_c00042{left:376.500000px;}
.xdf_c00042{left:378.000000px;}
.xce_c00042{left:379.500000px;}
.x17_c00042{left:381.000000px;}
.xbd_c00042{left:384.420000px;}
.xd3_c00042{left:385.500000px;}
.x25_c00042{left:387.420000px;}
.x7c_c00042{left:388.500000px;}
.x6a_c00042{left:391.920000px;}
.x1_c00042{left:396.000000px;}
.x47_c00042{left:397.275000px;}
.x74_c00042{left:402.420000px;}
.x3d_c00042{left:405.000000px;}
.xa_c00042{left:406.920000px;}
.xc0_c00042{left:408.000000px;}
.x51_c00042{left:409.500000px;}
.x95_c00042{left:414.000000px;}
.xa2_c00042{left:415.080000px;}
.x32_c00042{left:417.420000px;}
.x7d_c00042{left:421.500000px;}
.x8c_c00042{left:423.420000px;}
.xd1_c00042{left:426.000000px;}
.x6b_c00042{left:427.080000px;}
.x18_c00042{left:429.000000px;}
.x26_c00042{left:438.000000px;}
.x85_c00042{left:441.000000px;}
.x3e_c00042{left:445.080000px;}
.x19_c00042{left:447.000000px;}
.x75_c00042{left:450.000000px;}
.xb_c00042{left:453.000000px;}
.x7e_c00042{left:456.420000px;}
.x27_c00042{left:459.420000px;}
.xc4_c00042{left:460.500000px;}
.xa3_c00042{left:463.275000px;}
.xb3_c00042{left:466.275000px;}
.x33_c00042{left:467.580000px;}
.x76_c00042{left:469.920000px;}
.x96_c00042{left:471.420000px;}
.x52_c00042{left:472.920000px;}
.xc_c00042{left:475.080000px;}
.xc9_c00042{left:478.500000px;}
.x28_c00042{left:484.500000px;}
.xb8_c00042{left:485.580000px;}
.xbe_c00042{left:487.920000px;}
.x1a_c00042{left:495.420000px;}
.xd_c00042{left:498.420000px;}
.x7f_c00042{left:499.500000px;}
.x34_c00042{left:500.775000px;}
.x62_c00042{left:504.000000px;}
.x48_c00042{left:505.920000px;}
.xa9_c00042{left:507.420000px;}
.x6c_c00042{left:511.500000px;}
.x3f_c00042{left:513.420000px;}
.x8d_c00042{left:515.580000px;}
.xe7_c00042{left:517.500000px;}
.xca_c00042{left:518.580000px;}
.xd4_c00042{left:520.500000px;}
.x9b_c00042{left:522.000000px;}
.xc8_c00042{left:523.920000px;}
.xe_c00042{left:526.920000px;}
.x1b_c00042{left:532.500000px;}
.xb4_c00042{left:534.000000px;}
.x63_c00042{left:536.355000px;}
.xaa_c00042{left:541.500000px;}
.x49_c00042{left:542.580000px;}
.x40_c00042{left:547.500000px;}
.x35_c00042{left:549.420000px;}
.x29_c00042{left:551.580000px;}
.x53_c00042{left:553.920000px;}
.xb5_c00042{left:555.000000px;}
.xdc_c00042{left:558.000000px;}
.xab_c00042{left:560.580000px;}
.xd2_c00042{left:562.920000px;}
.xcb_c00042{left:564.000000px;}
.x97_c00042{left:567.000000px;}
.x8e_c00042{left:568.920000px;}
.x1c_c00042{left:570.420000px;}
.xc1_c00042{left:571.500000px;}
.xf_c00042{left:573.000000px;}
.x4a_c00042{left:574.275000px;}
.xb6_c00042{left:575.580000px;}
.x36_c00042{left:577.500000px;}
.x5b_c00042{left:580.500000px;}
.xae_c00042{left:586.500000px;}
.x2a_c00042{left:592.920000px;}
.x9c_c00042{left:594.000000px;}
.xb7_c00042{left:595.080000px;}
.x1d_c00042{left:597.420000px;}
.x6d_c00042{left:601.500000px;}
.x64_c00042{left:603.420000px;}
.x8f_c00042{left:606.000000px;}
.xde_c00042{left:607.500000px;}
.xd5_c00042{left:610.500000px;}
.x98_c00042{left:612.420000px;}
.x41_c00042{left:615.000000px;}
.x9d_c00042{left:618.420000px;}
.xb9_c00042{left:619.500000px;}
.x37_c00042{left:621.000000px;}
.xa4_c00042{left:625.500000px;}
.x4b_c00042{left:627.000000px;}
.xc2_c00042{left:628.500000px;}
.x65_c00042{left:631.920000px;}
.x86_c00042{left:635.580000px;}
.xaf_c00042{left:637.080000px;}
.x6e_c00042{left:641.355000px;}
.x54_c00042{left:643.080000px;}
.xd6_c00042{left:646.500000px;}
.xe0_c00042{left:648.000000px;}
.x10_c00042{left:649.080000px;}
.x42_c00042{left:651.420000px;}
.xe5_c00042{left:652.500000px;}
.x80_c00042{left:653.580000px;}
.xb0_c00042{left:655.500000px;}
.xd7_c00042{left:657.420000px;}
.x90_c00042{left:658.920000px;}
.x55_c00042{left:661.500000px;}
.x4c_c00042{left:666.420000px;}
.x5c_c00042{left:669.000000px;}
.x38_c00042{left:675.000000px;}
.xac_c00042{left:678.000000px;}
.xa5_c00042{left:679.500000px;}
.x87_c00042{left:682.500000px;}
.xc3_c00042{left:685.080000px;}
.x11_c00042{left:686.775000px;}
.x39_c00042{left:691.500000px;}
.xe1_c00042{left:693.420000px;}
.x4d_c00042{left:694.500000px;}
.xcf_c00042{left:696.000000px;}
.x43_c00042{left:697.080000px;}
.xba_c00042{left:700.500000px;}
.x1e_c00042{left:703.080000px;}
.xb1_c00042{left:706.080000px;}
.x81_c00042{left:708.420000px;}
.x2_c00042{left:714.420000px;}
.x88_c00042{left:715.500000px;}
.x9e_c00042{left:718.920000px;}
@media print{
.v1_c00042{vertical-align:-5.333333pt;}
.v0_c00042{vertical-align:0.000000pt;}
.v2_c00042{vertical-align:5.333333pt;}
.ls1_c00042{letter-spacing:0.000000pt;}
.ls0_c00042{letter-spacing:13.603065pt;}
.wsa_c00042{word-spacing:-15.378425pt;}
.ws1_c00042{word-spacing:-6.981422pt;}
.ws15_c00042{word-spacing:0.000000pt;}
.ws6_c00042{word-spacing:0.612291pt;}
.ws0_c00042{word-spacing:1.694837pt;}
.ws8_c00042{word-spacing:11.827705pt;}
.wsc_c00042{word-spacing:21.001506pt;}
.wse_c00042{word-spacing:22.781898pt;}
.ws14_c00042{word-spacing:26.128988pt;}
.ws12_c00042{word-spacing:26.838488pt;}
.wsd_c00042{word-spacing:35.234133pt;}
.ws13_c00042{word-spacing:37.900800pt;}
.ws7_c00042{word-spacing:38.474376pt;}
.ws11_c00042{word-spacing:39.718054pt;}
.ws2_c00042{word-spacing:42.097696pt;}
.ws10_c00042{word-spacing:42.220309pt;}
.ws3_c00042{word-spacing:43.013060pt;}
.wsf_c00042{word-spacing:44.118417pt;}
.ws9_c00042{word-spacing:48.308923pt;}
.ws5_c00042{word-spacing:65.394036pt;}
.ws4_c00042{word-spacing:68.303127pt;}
.wsb_c00042{word-spacing:74.889671pt;}
._2_c00042{margin-left:-13.603065pt;}
._4_c00042{width:29.852191pt;}
._3_c00042{width:31.632584pt;}
._5_c00042{width:47.618560pt;}
._7_c00042{width:51.938069pt;}
._0_c00042{width:54.169248pt;}
._6_c00042{width:56.710097pt;}
._1_c00042{width:78.020887pt;}
.fs8_c00042{font-size:3.040000pt;}
.fsb_c00042{font-size:6.026667pt;}
.fsc_c00042{font-size:10.560000pt;}
.fsa_c00042{font-size:12.106667pt;}
.fs5_c00042{font-size:16.640000pt;}
.fs0_c00042{font-size:18.133333pt;}
.fs3_c00042{font-size:22.666667pt;}
.fs1_c00042{font-size:25.706667pt;}
.fs4_c00042{font-size:28.746667pt;}
.fs2_c00042{font-size:31.733333pt;}
.fs6_c00042{font-size:34.773333pt;}
.fs7_c00042{font-size:37.813333pt;}
.fs9_c00042{font-size:43.840000pt;}
.y0_c00042{bottom:0.000000pt;}
.y94_c00042{bottom:223.026667pt;}
.y95_c00042{bottom:223.773333pt;}
.y96_c00042{bottom:225.106667pt;}
.y99_c00042{bottom:225.893333pt;}
.y98_c00042{bottom:226.066667pt;}
.y93_c00042{bottom:226.253333pt;}
.y97_c00042{bottom:227.026667pt;}
.y9a_c00042{bottom:227.973333pt;}
.y8f_c00042{bottom:241.106667pt;}
.y90_c00042{bottom:242.440000pt;}
.y8e_c00042{bottom:243.026667pt;}
.y8d_c00042{bottom:243.226667pt;}
.y8c_c00042{bottom:244.360000pt;}
.y91_c00042{bottom:244.733333pt;}
.y8b_c00042{bottom:245.106667pt;}
.y92_c00042{bottom:245.693333pt;}
.y87_c00042{bottom:259.773333pt;}
.y89_c00042{bottom:260.733333pt;}
.y85_c00042{bottom:261.106667pt;}
.y88_c00042{bottom:261.306667pt;}
.y86_c00042{bottom:261.693333pt;}
.y8a_c00042{bottom:261.893333pt;}
.y84_c00042{bottom:264.360000pt;}
.y7d_c00042{bottom:275.400000pt;}
.y7f_c00042{bottom:276.160000pt;}
.y80_c00042{bottom:276.920000pt;}
.y81_c00042{bottom:277.106667pt;}
.y82_c00042{bottom:277.893333pt;}
.y83_c00042{bottom:278.440000pt;}
.y7c_c00042{bottom:278.826667pt;}
.y7e_c00042{bottom:279.026667pt;}
.y79_c00042{bottom:293.693333pt;}
.y7b_c00042{bottom:294.440000pt;}
.y78_c00042{bottom:295.973333pt;}
.y77_c00042{bottom:296.360000pt;}
.y76_c00042{bottom:296.733333pt;}
.y7a_c00042{bottom:297.306667pt;}
.y75_c00042{bottom:301.306667pt;}
.y72_c00042{bottom:311.773333pt;}
.y70_c00042{bottom:312.733333pt;}
.y73_c00042{bottom:313.693333pt;}
.y74_c00042{bottom:314.640000pt;}
.y71_c00042{bottom:315.026667pt;}
.y6f_c00042{bottom:318.640000pt;}
.y6e_c00042{bottom:319.026667pt;}
.y69_c00042{bottom:328.160000pt;}
.y6c_c00042{bottom:329.106667pt;}
.y6a_c00042{bottom:330.640000pt;}
.y6b_c00042{bottom:331.026667pt;}
.y6d_c00042{bottom:331.973333pt;}
.y68_c00042{bottom:332.373333pt;}
.y67_c00042{bottom:333.106667pt;}
.y10a_c00042{bottom:358.266667pt;}
.y109_c00042{bottom:359.600000pt;}
.y10c_c00042{bottom:360.560000pt;}
.y108_c00042{bottom:361.506667pt;}
.y10b_c00042{bottom:361.706667pt;}
.y107_c00042{bottom:361.893333pt;}
.y106_c00042{bottom:362.840000pt;}
.y105_c00042{bottom:363.600000pt;}
.y100_c00042{bottom:370.266667pt;}
.y102_c00042{bottom:371.226667pt;}
.y104_c00042{bottom:372.173333pt;}
.yff_c00042{bottom:372.560000pt;}
.y103_c00042{bottom:373.506667pt;}
.y101_c00042{bottom:373.706667pt;}
.yfe_c00042{bottom:373.893333pt;}
.yfc_c00042{bottom:375.600000pt;}
.yfd_c00042{bottom:376.173333pt;}
.yfb_c00042{bottom:384.560000pt;}
.yfa_c00042{bottom:385.506667pt;}
.yf9_c00042{bottom:385.893333pt;}
.yf8_c00042{bottom:388.173333pt;}
.yf7_c00042{bottom:388.560000pt;}
.yf6_c00042{bottom:396.560000pt;}
.yf1_c00042{bottom:397.506667pt;}
.yf3_c00042{bottom:397.893333pt;}
.yf4_c00042{bottom:398.640000pt;}
.yf2_c00042{bottom:398.840000pt;}
.yf5_c00042{bottom:399.040000pt;}
.yf0_c00042{bottom:400.173333pt;}
.yef_c00042{bottom:400.560000pt;}
.ye9_c00042{bottom:409.506667pt;}
.yea_c00042{bottom:409.893333pt;}
.yeb_c00042{bottom:410.466667pt;}
.yed_c00042{bottom:410.640000pt;}
.yee_c00042{bottom:410.840000pt;}
.yec_c00042{bottom:411.040000pt;}
.ye7_c00042{bottom:411.600000pt;}
.ye8_c00042{bottom:412.173333pt;}
.ye5_c00042{bottom:420.560000pt;}
.ye6_c00042{bottom:421.893333pt;}
.ye4_c00042{bottom:422.840000pt;}
.ye3_c00042{bottom:423.226667pt;}
.ye2_c00042{bottom:424.173333pt;}
.ye1_c00042{bottom:425.893333pt;}
.ye0_c00042{bottom:433.506667pt;}
.ydf_c00042{bottom:433.893333pt;}
.yde_c00042{bottom:435.226667pt;}
.ydd_c00042{bottom:435.800000pt;}
.ydc_c00042{bottom:437.893333pt;}
.ydb_c00042{bottom:447.226667pt;}
.yda_c00042{bottom:449.893333pt;}
.yd9_c00042{bottom:458.840000pt;}
.yd8_c00042{bottom:459.226667pt;}
.yd7_c00042{bottom:460.560000pt;}
.yd6_c00042{bottom:461.893333pt;}
.yd5_c00042{bottom:470.840000pt;}
.yd4_c00042{bottom:471.226667pt;}
.yd3_c00042{bottom:471.600000pt;}
.yd2_c00042{bottom:473.893333pt;}
.ycf_c00042{bottom:481.893333pt;}
.yd0_c00042{bottom:483.226667pt;}
.yd1_c00042{bottom:483.973333pt;}
.yce_c00042{bottom:484.173333pt;}
.ycd_c00042{bottom:485.893333pt;}
.ycc_c00042{bottom:495.226667pt;}
.yca_c00042{bottom:495.600000pt;}
.ycb_c00042{bottom:496.173333pt;}
.yc9_c00042{bottom:498.266667pt;}
.yc8_c00042{bottom:507.226667pt;}
.yc6_c00042{bottom:509.506667pt;}
.yc7_c00042{bottom:509.706667pt;}
.yc5_c00042{bottom:510.266667pt;}
.yc3_c00042{bottom:520.173333pt;}
.yc4_c00042{bottom:520.560000pt;}
.yc2_c00042{bottom:521.506667pt;}
.yc1_c00042{bottom:521.706667pt;}
.yc0_c00042{bottom:523.226667pt;}
.ybf_c00042{bottom:532.173333pt;}
.ybe_c00042{bottom:532.560000pt;}
.ybc_c00042{bottom:533.506667pt;}
.ybd_c00042{bottom:533.706667pt;}
.ybb_c00042{bottom:535.226667pt;}
.yba_c00042{bottom:536.560000pt;}
.yb8_c00042{bottom:544.560000pt;}
.yb6_c00042{bottom:545.506667pt;}
.yb5_c00042{bottom:545.893333pt;}
.yb9_c00042{bottom:546.093333pt;}
.yb4_c00042{bottom:546.840000pt;}
.yb7_c00042{bottom:547.040000pt;}
.yb3_c00042{bottom:547.600000pt;}
.yb1_c00042{bottom:556.560000pt;}
.yaf_c00042{bottom:557.506667pt;}
.yb2_c00042{bottom:558.093333pt;}
.yae_c00042{bottom:558.266667pt;}
.yb0_c00042{bottom:559.040000pt;}
.yad_c00042{bottom:561.506667pt;}
.yaa_c00042{bottom:573.893333pt;}
.yab_c00042{bottom:574.840000pt;}
.yac_c00042{bottom:575.040000pt;}
.ya9_c00042{bottom:576.560000pt;}
.ya7_c00042{bottom:585.893333pt;}
.ya8_c00042{bottom:586.840000pt;}
.ya6_c00042{bottom:587.226667pt;}
.ya5_c00042{bottom:588.560000pt;}
.ya3_c00042{bottom:606.066667pt;}
.ya2_c00042{bottom:607.973333pt;}
.ya4_c00042{bottom:608.933333pt;}
.ya1_c00042{bottom:619.400000pt;}
.ya0_c00042{bottom:620.360000pt;}
.y9f_c00042{bottom:620.933333pt;}
.y9e_c00042{bottom:621.306667pt;}
.y9d_c00042{bottom:623.026667pt;}
.y9c_c00042{bottom:641.893333pt;}
.y9b_c00042{bottom:643.600000pt;}
.y64_c00042{bottom:678.440000pt;}
.y66_c00042{bottom:679.600000pt;}
.y63_c00042{bottom:679.973333pt;}
.y62_c00042{bottom:680.360000pt;}
.y65_c00042{bottom:680.560000pt;}
.y61_c00042{bottom:682.066667pt;}
.y60_c00042{bottom:695.026667pt;}
.y5f_c00042{bottom:695.773333pt;}
.y5e_c00042{bottom:697.693333pt;}
.y5c_c00042{bottom:713.106667pt;}
.y5b_c00042{bottom:714.066667pt;}
.y5a_c00042{bottom:715.026667pt;}
.y59_c00042{bottom:715.226667pt;}
.y5d_c00042{bottom:715.973333pt;}
.y58_c00042{bottom:716.160000pt;}
.y56_c00042{bottom:731.773333pt;}
.y53_c00042{bottom:732.360000pt;}
.y54_c00042{bottom:732.560000pt;}
.y55_c00042{bottom:732.733333pt;}
.y57_c00042{bottom:733.306667pt;}
.y52_c00042{bottom:733.693333pt;}
.y51_c00042{bottom:735.026667pt;}
.y4a_c00042{bottom:746.826667pt;}
.y4d_c00042{bottom:747.773333pt;}
.y4e_c00042{bottom:748.160000pt;}
.y4b_c00042{bottom:748.733333pt;}
.y4f_c00042{bottom:749.106667pt;}
.y4c_c00042{bottom:749.693333pt;}
.y50_c00042{bottom:749.893333pt;}
.y49_c00042{bottom:751.026667pt;}
.y48_c00042{bottom:751.400000pt;}
.y47_c00042{bottom:767.226667pt;}
.y46_c00042{bottom:768.360000pt;}
.y45_c00042{bottom:769.693333pt;}
.y43_c00042{bottom:781.693333pt;}
.y42_c00042{bottom:783.026667pt;}
.y3f_c00042{bottom:783.773333pt;}
.y40_c00042{bottom:784.560000pt;}
.y44_c00042{bottom:784.733333pt;}
.y41_c00042{bottom:785.693333pt;}
.y3e_c00042{bottom:786.066667pt;}
.y3d_c00042{bottom:787.226667pt;}
.y3b_c00042{bottom:801.106667pt;}
.y3c_c00042{bottom:802.640000pt;}
.y3a_c00042{bottom:803.026667pt;}
.y39_c00042{bottom:803.400000pt;}
.y38_c00042{bottom:804.733333pt;}
.y36_c00042{bottom:818.440000pt;}
.y37_c00042{bottom:819.400000pt;}
.y35_c00042{bottom:820.360000pt;}
.y34_c00042{bottom:821.693333pt;}
.y33_c00042{bottom:823.973333pt;}
.y32_c00042{bottom:835.400000pt;}
.y2e_c00042{bottom:835.773333pt;}
.y2f_c00042{bottom:837.306667pt;}
.y31_c00042{bottom:837.693333pt;}
.y30_c00042{bottom:837.893333pt;}
.y2d_c00042{bottom:838.640000pt;}
.y2c_c00042{bottom:839.026667pt;}
.y2b_c00042{bottom:839.400000pt;}
.y2a_c00042{bottom:852.360000pt;}
.y27_c00042{bottom:853.106667pt;}
.y26_c00042{bottom:854.066667pt;}
.y28_c00042{bottom:855.026667pt;}
.y29_c00042{bottom:855.226667pt;}
.y23_c00042{bottom:869.693333pt;}
.y22_c00042{bottom:870.440000pt;}
.y24_c00042{bottom:871.773333pt;}
.y21_c00042{bottom:872.360000pt;}
.y25_c00042{bottom:872.560000pt;}
.y20_c00042{bottom:873.306667pt;}
.y1f_c00042{bottom:873.693333pt;}
.y1e_c00042{bottom:874.066667pt;}
.y1a_c00042{bottom:887.773333pt;}
.y17_c00042{bottom:888.160000pt;}
.y16_c00042{bottom:888.733333pt;}
.y1c_c00042{bottom:889.106667pt;}
.y1d_c00042{bottom:889.693333pt;}
.y18_c00042{bottom:889.893333pt;}
.y19_c00042{bottom:890.640000pt;}
.y1b_c00042{bottom:891.026667pt;}
.y10_c00042{bottom:905.106667pt;}
.y12_c00042{bottom:905.306667pt;}
.y15_c00042{bottom:905.693333pt;}
.y14_c00042{bottom:906.440000pt;}
.yf_c00042{bottom:907.026667pt;}
.y11_c00042{bottom:907.226667pt;}
.y13_c00042{bottom:908.360000pt;}
.ye_c00042{bottom:908.733333pt;}
.yd_c00042{bottom:909.693333pt;}
.y9_c00042{bottom:923.026667pt;}
.ya_c00042{bottom:923.773333pt;}
.y8_c00042{bottom:924.933333pt;}
.y7_c00042{bottom:925.106667pt;}
.yc_c00042{bottom:925.306667pt;}
.yb_c00042{bottom:925.693333pt;}
.y5_c00042{bottom:939.973333pt;}
.y6_c00042{bottom:940.733333pt;}
.y4_c00042{bottom:941.106667pt;}
.y3_c00042{bottom:943.026667pt;}
.y2_c00042{bottom:975.026667pt;}
.y1_c00042{bottom:976.933333pt;}
.h9_c00042{height:3.739141pt;}
.hd_c00042{height:7.412682pt;}
.hf_c00042{height:12.988594pt;}
.hb_c00042{height:14.890964pt;}
.he_c00042{height:20.224297pt;}
.h6_c00042{height:20.466875pt;}
.h1_c00042{height:22.303646pt;}
.hc_c00042{height:25.800208pt;}
.h4_c00042{height:27.879557pt;}
.h2_c00042{height:31.618698pt;}
.h5_c00042{height:35.357839pt;}
.h3_c00042{height:39.031380pt;}
.h7_c00042{height:42.770521pt;}
.h8_c00042{height:46.509661pt;}
.ha_c00042{height:53.922344pt;}
.h0_c00042{height:1186.666667pt;}
.w0_c00042{width:782.666667pt;}
.x0_c00042{left:0.000000pt;}
.x3_c00042{left:136.373333pt;}
.x2b_c00042{left:138.093333pt;}
.x66_c00042{left:150.666667pt;}
.x9f_c00042{left:151.626667pt;}
.x56_c00042{left:153.706667pt;}
.xd9_c00042{left:154.666667pt;}
.xc5_c00042{left:156.960000pt;}
.x1f_c00042{left:160.000000pt;}
.x5d_c00042{left:163.426667pt;}
.xa6_c00042{left:165.706667pt;}
.x4e_c00042{left:168.960000pt;}
.xcc_c00042{left:173.333333pt;}
.x57_c00042{left:177.706667pt;}
.x2c_c00042{left:181.133333pt;}
.x44_c00042{left:182.466667pt;}
.x6f_c00042{left:184.373333pt;}
.x4_c00042{left:185.333333pt;}
.xd8_c00042{left:186.666667pt;}
.x89_c00042{left:188.373333pt;}
.xd0_c00042{left:190.666667pt;}
.xbb_c00042{left:193.333333pt;}
.x67_c00042{left:194.293333pt;}
.x20_c00042{left:196.000000pt;}
.xb2_c00042{left:197.706667pt;}
.x91_c00042{left:198.666667pt;}
.x77_c00042{left:200.373333pt;}
.xda_c00042{left:205.333333pt;}
.xdd_c00042{left:207.040000pt;}
.x4f_c00042{left:208.373333pt;}
.x82_c00042{left:210.666667pt;}
.x3a_c00042{left:212.000000pt;}
.xa0_c00042{left:213.333333pt;}
.x5e_c00042{left:215.040000pt;}
.x70_c00042{left:217.706667pt;}
.xe2_c00042{left:218.666667pt;}
.x68_c00042{left:222.466667pt;}
.x12_c00042{left:224.373333pt;}
.x2d_c00042{left:225.333333pt;}
.x58_c00042{left:226.293333pt;}
.x3b_c00042{left:228.373333pt;}
.x99_c00042{left:230.293333pt;}
.x13_c00042{left:231.626667pt;}
.xc6_c00042{left:233.333333pt;}
.x5_c00042{left:234.293333pt;}
.xbc_c00042{left:236.000000pt;}
.x2e_c00042{left:240.373333pt;}
.x71_c00042{left:241.333333pt;}
.x21_c00042{left:242.293333pt;}
.x83_c00042{left:246.666667pt;}
.x5f_c00042{left:249.333333pt;}
.x6_c00042{left:252.373333pt;}
.x2f_c00042{left:253.333333pt;}
.x59_c00042{left:254.666667pt;}
.x9a_c00042{left:256.000000pt;}
.x22_c00042{left:259.040000pt;}
.x50_c00042{left:260.000000pt;}
.x78_c00042{left:261.333333pt;}
.xa7_c00042{left:262.293333pt;}
.xc7_c00042{left:264.000000pt;}
.x30_c00042{left:265.706667pt;}
.x60_c00042{left:267.040000pt;}
.x84_c00042{left:268.373333pt;}
.x14_c00042{left:269.706667pt;}
.xe3_c00042{left:270.666667pt;}
.xe6_c00042{left:273.706667pt;}
.x72_c00042{left:274.666667pt;}
.x15_c00042{left:276.000000pt;}
.x7_c00042{left:277.333333pt;}
.x92_c00042{left:278.293333pt;}
.x45_c00042{left:279.626667pt;}
.x23_c00042{left:281.706667pt;}
.x69_c00042{left:283.040000pt;}
.xe4_c00042{left:286.666667pt;}
.x79_c00042{left:287.626667pt;}
.x3c_c00042{left:290.666667pt;}
.xbf_c00042{left:293.133333pt;}
.x93_c00042{left:295.040000pt;}
.xad_c00042{left:296.373333pt;}
.xa1_c00042{left:298.666667pt;}
.x5a_c00042{left:300.000000pt;}
.x31_c00042{left:301.333333pt;}
.x8a_c00042{left:308.000000pt;}
.x24_c00042{left:309.333333pt;}
.x8_c00042{left:313.333333pt;}
.x16_c00042{left:315.040000pt;}
.x7a_c00042{left:316.573333pt;}
.x94_c00042{left:320.000000pt;}
.x8b_c00042{left:324.000000pt;}
.x46_c00042{left:324.960000pt;}
.xa8_c00042{left:326.466667pt;}
.x9_c00042{left:328.373333pt;}
.x7b_c00042{left:329.333333pt;}
.xcd_c00042{left:331.040000pt;}
.x61_c00042{left:332.000000pt;}
.x73_c00042{left:333.706667pt;}
.xdb_c00042{left:334.666667pt;}
.xdf_c00042{left:336.000000pt;}
.xce_c00042{left:337.333333pt;}
.x17_c00042{left:338.666667pt;}
.xbd_c00042{left:341.706667pt;}
.xd3_c00042{left:342.666667pt;}
.x25_c00042{left:344.373333pt;}
.x7c_c00042{left:345.333333pt;}
.x6a_c00042{left:348.373333pt;}
.x1_c00042{left:352.000000pt;}
.x47_c00042{left:353.133333pt;}
.x74_c00042{left:357.706667pt;}
.x3d_c00042{left:360.000000pt;}
.xa_c00042{left:361.706667pt;}
.xc0_c00042{left:362.666667pt;}
.x51_c00042{left:364.000000pt;}
.x95_c00042{left:368.000000pt;}
.xa2_c00042{left:368.960000pt;}
.x32_c00042{left:371.040000pt;}
.x7d_c00042{left:374.666667pt;}
.x8c_c00042{left:376.373333pt;}
.xd1_c00042{left:378.666667pt;}
.x6b_c00042{left:379.626667pt;}
.x18_c00042{left:381.333333pt;}
.x26_c00042{left:389.333333pt;}
.x85_c00042{left:392.000000pt;}
.x3e_c00042{left:395.626667pt;}
.x19_c00042{left:397.333333pt;}
.x75_c00042{left:400.000000pt;}
.xb_c00042{left:402.666667pt;}
.x7e_c00042{left:405.706667pt;}
.x27_c00042{left:408.373333pt;}
.xc4_c00042{left:409.333333pt;}
.xa3_c00042{left:411.800000pt;}
.xb3_c00042{left:414.466667pt;}
.x33_c00042{left:415.626667pt;}
.x76_c00042{left:417.706667pt;}
.x96_c00042{left:419.040000pt;}
.x52_c00042{left:420.373333pt;}
.xc_c00042{left:422.293333pt;}
.xc9_c00042{left:425.333333pt;}
.x28_c00042{left:430.666667pt;}
.xb8_c00042{left:431.626667pt;}
.xbe_c00042{left:433.706667pt;}
.x1a_c00042{left:440.373333pt;}
.xd_c00042{left:443.040000pt;}
.x7f_c00042{left:444.000000pt;}
.x34_c00042{left:445.133333pt;}
.x62_c00042{left:448.000000pt;}
.x48_c00042{left:449.706667pt;}
.xa9_c00042{left:451.040000pt;}
.x6c_c00042{left:454.666667pt;}
.x3f_c00042{left:456.373333pt;}
.x8d_c00042{left:458.293333pt;}
.xe7_c00042{left:460.000000pt;}
.xca_c00042{left:460.960000pt;}
.xd4_c00042{left:462.666667pt;}
.x9b_c00042{left:464.000000pt;}
.xc8_c00042{left:465.706667pt;}
.xe_c00042{left:468.373333pt;}
.x1b_c00042{left:473.333333pt;}
.xb4_c00042{left:474.666667pt;}
.x63_c00042{left:476.760000pt;}
.xaa_c00042{left:481.333333pt;}
.x49_c00042{left:482.293333pt;}
.x40_c00042{left:486.666667pt;}
.x35_c00042{left:488.373333pt;}
.x29_c00042{left:490.293333pt;}
.x53_c00042{left:492.373333pt;}
.xb5_c00042{left:493.333333pt;}
.xdc_c00042{left:496.000000pt;}
.xab_c00042{left:498.293333pt;}
.xd2_c00042{left:500.373333pt;}
.xcb_c00042{left:501.333333pt;}
.x97_c00042{left:504.000000pt;}
.x8e_c00042{left:505.706667pt;}
.x1c_c00042{left:507.040000pt;}
.xc1_c00042{left:508.000000pt;}
.xf_c00042{left:509.333333pt;}
.x4a_c00042{left:510.466667pt;}
.xb6_c00042{left:511.626667pt;}
.x36_c00042{left:513.333333pt;}
.x5b_c00042{left:516.000000pt;}
.xae_c00042{left:521.333333pt;}
.x2a_c00042{left:527.040000pt;}
.x9c_c00042{left:528.000000pt;}
.xb7_c00042{left:528.960000pt;}
.x1d_c00042{left:531.040000pt;}
.x6d_c00042{left:534.666667pt;}
.x64_c00042{left:536.373333pt;}
.x8f_c00042{left:538.666667pt;}
.xde_c00042{left:540.000000pt;}
.xd5_c00042{left:542.666667pt;}
.x98_c00042{left:544.373333pt;}
.x41_c00042{left:546.666667pt;}
.x9d_c00042{left:549.706667pt;}
.xb9_c00042{left:550.666667pt;}
.x37_c00042{left:552.000000pt;}
.xa4_c00042{left:556.000000pt;}
.x4b_c00042{left:557.333333pt;}
.xc2_c00042{left:558.666667pt;}
.x65_c00042{left:561.706667pt;}
.x86_c00042{left:564.960000pt;}
.xaf_c00042{left:566.293333pt;}
.x6e_c00042{left:570.093333pt;}
.x54_c00042{left:571.626667pt;}
.xd6_c00042{left:574.666667pt;}
.xe0_c00042{left:576.000000pt;}
.x10_c00042{left:576.960000pt;}
.x42_c00042{left:579.040000pt;}
.xe5_c00042{left:580.000000pt;}
.x80_c00042{left:580.960000pt;}
.xb0_c00042{left:582.666667pt;}
.xd7_c00042{left:584.373333pt;}
.x90_c00042{left:585.706667pt;}
.x55_c00042{left:588.000000pt;}
.x4c_c00042{left:592.373333pt;}
.x5c_c00042{left:594.666667pt;}
.x38_c00042{left:600.000000pt;}
.xac_c00042{left:602.666667pt;}
.xa5_c00042{left:604.000000pt;}
.x87_c00042{left:606.666667pt;}
.xc3_c00042{left:608.960000pt;}
.x11_c00042{left:610.466667pt;}
.x39_c00042{left:614.666667pt;}
.xe1_c00042{left:616.373333pt;}
.x4d_c00042{left:617.333333pt;}
.xcf_c00042{left:618.666667pt;}
.x43_c00042{left:619.626667pt;}
.xba_c00042{left:622.666667pt;}
.x1e_c00042{left:624.960000pt;}
.xb1_c00042{left:627.626667pt;}
.x81_c00042{left:629.706667pt;}
.x2_c00042{left:635.040000pt;}
.x88_c00042{left:636.000000pt;}
.x9e_c00042{left:639.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_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_bb7a69188cd9ae80db44a6ba.woff2')format("woff");}.ff1_c00043{font-family:ff1_c00043;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mea_c00043{transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);}
.mb4_c00043{transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);}
.md3_c00043{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.me7_c00043{transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);}
.m32_c00043{transform:matrix(0.354294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354294,0.000000,0.000000,0.250000,0,0);}
.m8a_c00043{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.mcb_c00043{transform:matrix(0.366564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366564,0.000000,0.000000,0.250000,0,0);}
.m18_c00043{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m9_c00043{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m9e_c00043{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.md8_c00043{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.me8_c00043{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m25_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);}
.md1_c00043{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m29_c00043{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m4_c00043{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m99_c00043{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m35_c00043{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.mb2_c00043{transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);}
.m60_c00043{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m3_c00043{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m5b_c00043{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m47_c00043{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m6_c00043{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.me_c00043{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.mab_c00043{transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);}
.mc5_c00043{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m8d_c00043{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.md2_c00043{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.ma6_c00043{transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);}
.m89_c00043{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m19_c00043{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m63_c00043{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.mbe_c00043{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.maa_c00043{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m90_c00043{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mec_c00043{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m97_c00043{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m67_c00043{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m62_c00043{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m28_c00043{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.mc3_c00043{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m80_c00043{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m93_c00043{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.mb_c00043{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m64_c00043{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.md6_c00043{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m8_c00043{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mc4_c00043{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mc6_c00043{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.me5_c00043{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m77_c00043{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.ma0_c00043{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m8f_c00043{transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);}
.md7_c00043{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m4b_c00043{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m46_c00043{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.mc1_c00043{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m2b_c00043{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m96_c00043{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m79_c00043{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mc0_c00043{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m26_c00043{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.m70_c00043{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.ma5_c00043{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m33_c00043{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m1c_c00043{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m92_c00043{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m2_c00043{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m87_c00043{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.me0_c00043{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m10_c00043{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m2c_c00043{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m40_c00043{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m2e_c00043{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m48_c00043{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m81_c00043{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.mc_c00043{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m75_c00043{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mc2_c00043{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mb8_c00043{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m94_c00043{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m50_c00043{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m4f_c00043{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m4d_c00043{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.mbb_c00043{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m2d_c00043{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.md9_c00043{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m84_c00043{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m6c_c00043{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.m9a_c00043{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mcd_c00043{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.me6_c00043{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m42_c00043{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.ma7_c00043{transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);}
.m53_c00043{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m83_c00043{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m5c_c00043{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m8b_c00043{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mc7_c00043{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m6d_c00043{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mb0_c00043{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m20_c00043{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.ma1_c00043{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.mad_c00043{transform:matrix(0.495294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495294,0.000000,0.000000,0.250000,0,0);}
.m16_c00043{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.mb6_c00043{transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);}
.m72_c00043{transform:matrix(0.497407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497407,0.000000,0.000000,0.250000,0,0);}
.m1_c00043{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);}
.mc9_c00043{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m41_c00043{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.mb9_c00043{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mdb_c00043{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m39_c00043{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mdc_c00043{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m78_c00043{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m5d_c00043{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m73_c00043{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m95_c00043{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m7b_c00043{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m1e_c00043{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m6e_c00043{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m1f_c00043{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m69_c00043{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m3c_c00043{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m37_c00043{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m7a_c00043{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m7f_c00043{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m9b_c00043{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m7e_c00043{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m34_c00043{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mc8_c00043{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m7c_c00043{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m27_c00043{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m36_c00043{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m68_c00043{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m51_c00043{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.maf_c00043{transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);}
.m44_c00043{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m65_c00043{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m3a_c00043{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mb1_c00043{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.md5_c00043{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.ma9_c00043{transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);}
.m98_c00043{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m9d_c00043{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m6f_c00043{transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);}
.m23_c00043{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m9c_c00043{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m2a_c00043{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m5_c00043{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m43_c00043{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mac_c00043{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.mda_c00043{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m3f_c00043{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m4a_c00043{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m56_c00043{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m38_c00043{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mcf_c00043{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m7_c00043{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.med_c00043{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.m3d_c00043{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.mce_c00043{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.mcc_c00043{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m66_c00043{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m45_c00043{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mbd_c00043{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m22_c00043{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m24_c00043{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m52_c00043{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m1d_c00043{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m4c_c00043{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m76_c00043{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m58_c00043{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m49_c00043{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m3e_c00043{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.me2_c00043{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m30_c00043{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m54_c00043{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m5f_c00043{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.mbc_c00043{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m91_c00043{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.md4_c00043{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m59_c00043{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mb5_c00043{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.mae_c00043{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00043{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.ma3_c00043{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m15_c00043{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.mdf_c00043{transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);}
.mca_c00043{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m5a_c00043{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.me4_c00043{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m31_c00043{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.me3_c00043{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m8e_c00043{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m88_c00043{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m6a_c00043{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m5e_c00043{transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);}
.m2f_c00043{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.ma4_c00043{transform:matrix(0.606328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606328,0.000000,0.000000,0.250000,0,0);}
.m3b_c00043{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m12_c00043{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mde_c00043{transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);}
.mba_c00043{transform:matrix(0.611765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611765,0.000000,0.000000,0.250000,0,0);}
.m1b_c00043{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m13_c00043{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m57_c00043{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);}
.m71_c00043{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mdd_c00043{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mf_c00043{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m17_c00043{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m7d_c00043{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m4e_c00043{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m11_c00043{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mb3_c00043{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.m85_c00043{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.ma2_c00043{transform:matrix(0.692941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692941,0.000000,0.000000,0.250000,0,0);}
.m61_c00043{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m0_c00043{transform:matrix(0.711538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.711538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.711538,0.000000,0.000000,0.250000,0,0);}
.m21_c00043{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m9f_c00043{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m8c_c00043{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m6b_c00043{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m82_c00043{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m86_c00043{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.ma_c00043{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.md0_c00043{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m1a_c00043{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.me9_c00043{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m74_c00043{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m14_c00043{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m55_c00043{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.me1_c00043{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.ma8_c00043{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.meb_c00043{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.mb7_c00043{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.mbf_c00043{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
.fs8_c00043{font-size:3.420000px;}
.fs6_c00043{font-size:13.620000px;}
.fs0_c00043{font-size:18.720000px;}
.fs7_c00043{font-size:20.400000px;}
.fs1_c00043{font-size:25.500000px;}
.fs3_c00043{font-size:28.920000px;}
.fs4_c00043{font-size:32.340000px;}
.fs2_c00043{font-size:35.700000px;}
.fs5_c00043{font-size:39.120000px;}
.y0_c00043{bottom:0.000000px;}
.ycf_c00043{bottom:253.905000px;}
.yc8_c00043{bottom:271.245000px;}
.yca_c00043{bottom:272.745000px;}
.ycb_c00043{bottom:273.180000px;}
.yc6_c00043{bottom:273.405000px;}
.yc7_c00043{bottom:273.630000px;}
.yce_c00043{bottom:274.245000px;}
.yc9_c00043{bottom:274.470000px;}
.ycd_c00043{bottom:274.905000px;}
.ycc_c00043{bottom:275.970000px;}
.yc3_c00043{bottom:291.180000px;}
.yc1_c00043{bottom:291.825000px;}
.yc4_c00043{bottom:292.245000px;}
.yc2_c00043{bottom:292.905000px;}
.yc5_c00043{bottom:294.405000px;}
.ybc_c00043{bottom:311.745000px;}
.ybf_c00043{bottom:313.245000px;}
.ybb_c00043{bottom:313.905000px;}
.ybd_c00043{bottom:314.130000px;}
.ybe_c00043{bottom:314.970000px;}
.yc0_c00043{bottom:315.405000px;}
.yba_c00043{bottom:330.405000px;}
.yb4_c00043{bottom:331.245000px;}
.yb6_c00043{bottom:332.745000px;}
.yb5_c00043{bottom:333.405000px;}
.yb8_c00043{bottom:333.630000px;}
.yb9_c00043{bottom:334.470000px;}
.yb7_c00043{bottom:334.905000px;}
.yb3_c00043{bottom:351.825000px;}
.yb1_c00043{bottom:352.245000px;}
.yb0_c00043{bottom:352.905000px;}
.yb2_c00043{bottom:354.405000px;}
.yad_c00043{bottom:371.325000px;}
.yac_c00043{bottom:372.405000px;}
.yaa_c00043{bottom:372.630000px;}
.yab_c00043{bottom:373.470000px;}
.yaf_c00043{bottom:373.905000px;}
.yae_c00043{bottom:374.970000px;}
.ya9_c00043{bottom:391.245000px;}
.ya7_c00043{bottom:392.325000px;}
.ya8_c00043{bottom:393.405000px;}
.ya6_c00043{bottom:410.745000px;}
.ya4_c00043{bottom:412.905000px;}
.ya5_c00043{bottom:412.920000px;}
.ya3_c00043{bottom:430.245000px;}
.ya0_c00043{bottom:432.405000px;}
.ya1_c00043{bottom:432.630000px;}
.ya2_c00043{bottom:433.920000px;}
.y9e_c00043{bottom:451.905000px;}
.y9f_c00043{bottom:452.970000px;}
.y99_c00043{bottom:468.405000px;}
.y97_c00043{bottom:469.245000px;}
.y9b_c00043{bottom:469.470000px;}
.y9d_c00043{bottom:469.680000px;}
.y98_c00043{bottom:470.745000px;}
.y9c_c00043{bottom:471.630000px;}
.y9a_c00043{bottom:472.905000px;}
.y95_c00043{bottom:489.405000px;}
.y91_c00043{bottom:490.245000px;}
.y93_c00043{bottom:491.325000px;}
.y94_c00043{bottom:491.550000px;}
.y96_c00043{bottom:492.405000px;}
.y92_c00043{bottom:492.420000px;}
.y8a_c00043{bottom:508.245000px;}
.y8f_c00043{bottom:508.905000px;}
.y8b_c00043{bottom:509.745000px;}
.y8d_c00043{bottom:510.825000px;}
.y8e_c00043{bottom:511.905000px;}
.y8c_c00043{bottom:511.920000px;}
.y90_c00043{bottom:512.970000px;}
.y86_c00043{bottom:535.470000px;}
.y87_c00043{bottom:536.325000px;}
.y89_c00043{bottom:536.970000px;}
.y88_c00043{bottom:537.405000px;}
.y84_c00043{bottom:538.470000px;}
.y85_c00043{bottom:539.550000px;}
.y83_c00043{bottom:555.825000px;}
.y81_c00043{bottom:557.970000px;}
.y82_c00043{bottom:559.695000px;}
.y80_c00043{bottom:582.825000px;}
.y7f_c00043{bottom:584.325000px;}
.y7e_c00043{bottom:585.405000px;}
.y7d_c00043{bottom:586.470000px;}
.y78_c00043{bottom:626.745000px;}
.y7b_c00043{bottom:628.245000px;}
.y7a_c00043{bottom:628.905000px;}
.y79_c00043{bottom:629.130000px;}
.y7c_c00043{bottom:630.405000px;}
.y76_c00043{bottom:645.405000px;}
.y77_c00043{bottom:647.745000px;}
.y72_c00043{bottom:648.405000px;}
.y75_c00043{bottom:648.630000px;}
.y73_c00043{bottom:649.470000px;}
.y74_c00043{bottom:649.905000px;}
.y70_c00043{bottom:667.245000px;}
.y6d_c00043{bottom:667.905000px;}
.y6f_c00043{bottom:668.325000px;}
.y71_c00043{bottom:668.970000px;}
.y6e_c00043{bottom:669.405000px;}
.y6a_c00043{bottom:686.745000px;}
.y6b_c00043{bottom:688.905000px;}
.y6c_c00043{bottom:689.970000px;}
.y68_c00043{bottom:706.245000px;}
.y69_c00043{bottom:706.470000px;}
.y66_c00043{bottom:707.325000px;}
.y67_c00043{bottom:708.405000px;}
.y65_c00043{bottom:724.905000px;}
.y64_c00043{bottom:725.745000px;}
.y61_c00043{bottom:726.825000px;}
.y60_c00043{bottom:727.905000px;}
.y63_c00043{bottom:728.130000px;}
.y62_c00043{bottom:728.970000px;}
.y5b_c00043{bottom:744.405000px;}
.y59_c00043{bottom:745.245000px;}
.y5c_c00043{bottom:746.745000px;}
.y58_c00043{bottom:747.405000px;}
.y5f_c00043{bottom:747.630000px;}
.y5e_c00043{bottom:747.825000px;}
.y5a_c00043{bottom:748.470000px;}
.y5d_c00043{bottom:748.905000px;}
.y54_c00043{bottom:763.905000px;}
.y52_c00043{bottom:764.745000px;}
.y57_c00043{bottom:765.405000px;}
.y55_c00043{bottom:766.245000px;}
.y56_c00043{bottom:767.970000px;}
.y53_c00043{bottom:768.405000px;}
.y4e_c00043{bottom:785.745000px;}
.y4d_c00043{bottom:786.405000px;}
.y51_c00043{bottom:786.825000px;}
.y4f_c00043{bottom:787.905000px;}
.y50_c00043{bottom:788.130000px;}
.y4a_c00043{bottom:804.825000px;}
.y4b_c00043{bottom:805.245000px;}
.y48_c00043{bottom:806.970000px;}
.y49_c00043{bottom:807.405000px;}
.y4c_c00043{bottom:808.470000px;}
.y45_c00043{bottom:824.745000px;}
.y46_c00043{bottom:825.825000px;}
.y47_c00043{bottom:826.470000px;}
.y44_c00043{bottom:826.905000px;}
.y3f_c00043{bottom:844.245000px;}
.y40_c00043{bottom:845.325000px;}
.y42_c00043{bottom:845.745000px;}
.y43_c00043{bottom:845.970000px;}
.y3e_c00043{bottom:846.405000px;}
.y41_c00043{bottom:847.905000px;}
.y3c_c00043{bottom:863.970000px;}
.y3a_c00043{bottom:865.245000px;}
.y38_c00043{bottom:865.905000px;}
.y3d_c00043{bottom:866.130000px;}
.y3b_c00043{bottom:866.970000px;}
.y39_c00043{bottom:867.405000px;}
.y33_c00043{bottom:884.130000px;}
.y35_c00043{bottom:884.325000px;}
.y34_c00043{bottom:885.405000px;}
.y37_c00043{bottom:885.630000px;}
.y36_c00043{bottom:886.905000px;}
.y2e_c00043{bottom:903.825000px;}
.y31_c00043{bottom:904.245000px;}
.y32_c00043{bottom:905.130000px;}
.y30_c00043{bottom:905.970000px;}
.y2f_c00043{bottom:906.405000px;}
.y29_c00043{bottom:922.245000px;}
.y2d_c00043{bottom:923.745000px;}
.y2c_c00043{bottom:924.825000px;}
.y2b_c00043{bottom:925.470000px;}
.y2a_c00043{bottom:925.905000px;}
.y25_c00043{bottom:943.245000px;}
.y22_c00043{bottom:943.905000px;}
.y26_c00043{bottom:944.130000px;}
.y24_c00043{bottom:944.970000px;}
.y23_c00043{bottom:945.405000px;}
.y27_c00043{bottom:946.470000px;}
.y28_c00043{bottom:946.905000px;}
.y1e_c00043{bottom:961.680000px;}
.y1f_c00043{bottom:962.745000px;}
.y1d_c00043{bottom:964.470000px;}
.y20_c00043{bottom:964.905000px;}
.y21_c00043{bottom:965.970000px;}
.y18_c00043{bottom:982.245000px;}
.y1c_c00043{bottom:983.325000px;}
.y1a_c00043{bottom:983.745000px;}
.y17_c00043{bottom:984.405000px;}
.y19_c00043{bottom:985.470000px;}
.y1b_c00043{bottom:985.905000px;}
.y13_c00043{bottom:1001.745000px;}
.y16_c00043{bottom:1003.245000px;}
.y12_c00043{bottom:1003.905000px;}
.y14_c00043{bottom:1004.130000px;}
.y15_c00043{bottom:1005.405000px;}
.yc_c00043{bottom:1021.245000px;}
.y11_c00043{bottom:1022.325000px;}
.yf_c00043{bottom:1022.745000px;}
.ye_c00043{bottom:1023.405000px;}
.y10_c00043{bottom:1023.630000px;}
.yd_c00043{bottom:1024.470000px;}
.y7_c00043{bottom:1040.745000px;}
.ya_c00043{bottom:1040.970000px;}
.yb_c00043{bottom:1043.130000px;}
.y8_c00043{bottom:1043.970000px;}
.y9_c00043{bottom:1044.405000px;}
.y3_c00043{bottom:1060.245000px;}
.y4_c00043{bottom:1061.745000px;}
.y6_c00043{bottom:1062.630000px;}
.y5_c00043{bottom:1063.905000px;}
.y2_c00043{bottom:1099.470000px;}
.y1_c00043{bottom:1103.130000px;}
.h9_c00043{height:4.206533px;}
.h7_c00043{height:16.752334px;}
.h1_c00043{height:23.025234px;}
.h8_c00043{height:25.091602px;}
.h2_c00043{height:31.364502px;}
.h4_c00043{height:35.571035px;}
.h5_c00043{height:39.777568px;}
.h3_c00043{height:43.910303px;}
.h6_c00043{height:48.116836px;}
.h0_c00043{height:1335.000000px;}
.w0_c00043{width:880.500000px;}
.x0_c00043{left:0.000000px;}
.x3_c00043{left:152.145000px;}
.x2_c00043{left:153.420000px;}
.xcf_c00043{left:166.500000px;}
.x18_c00043{left:169.500000px;}
.x62_c00043{left:173.580000px;}
.xe5_c00043{left:178.920000px;}
.xba_c00043{left:181.080000px;}
.x88_c00043{left:183.420000px;}
.x24_c00043{left:184.500000px;}
.xfa_c00043{left:186.000000px;}
.xc2_c00043{left:187.500000px;}
.x2e_c00043{left:188.580000px;}
.x6d_c00043{left:190.920000px;}
.xf7_c00043{left:193.500000px;}
.x3a_c00043{left:197.580000px;}
.x7d_c00043{left:199.500000px;}
.x74_c00043{left:200.580000px;}
.x25_c00043{left:203.580000px;}
.xa5_c00043{left:205.920000px;}
.xf5_c00043{left:207.000000px;}
.xc8_c00043{left:208.500000px;}
.x9a_c00043{left:213.000000px;}
.xf_c00043{left:214.080000px;}
.x4_c00043{left:217.080000px;}
.x4e_c00043{left:219.000000px;}
.xbb_c00043{left:220.080000px;}
.xde_c00043{left:223.920000px;}
.xc9_c00043{left:228.000000px;}
.x41_c00043{left:230.580000px;}
.xeb_c00043{left:232.920000px;}
.x91_c00043{left:234.420000px;}
.x63_c00043{left:235.500000px;}
.xbc_c00043{left:239.580000px;}
.x89_c00043{left:242.580000px;}
.xdf_c00043{left:244.920000px;}
.x19_c00043{left:246.000000px;}
.x4f_c00043{left:247.080000px;}
.x75_c00043{left:249.000000px;}
.xe6_c00043{left:250.920000px;}
.x10_c00043{left:252.420000px;}
.xf2_c00043{left:253.500000px;}
.xac_c00043{left:255.000000px;}
.xda_c00043{left:259.500000px;}
.x58_c00043{left:261.000000px;}
.xb4_c00043{left:262.500000px;}
.x5_c00043{left:264.000000px;}
.x1a_c00043{left:265.500000px;}
.x2f_c00043{left:266.775000px;}
.xd4_c00043{left:268.500000px;}
.xfd_c00043{left:270.000000px;}
.xe0_c00043{left:271.920000px;}
.x26_c00043{left:273.000000px;}
.xa6_c00043{left:274.500000px;}
.xca_c00043{left:276.000000px;}
.xf8_c00043{left:277.080000px;}
.x7e_c00043{left:279.000000px;}
.x59_c00043{left:280.500000px;}
.xe7_c00043{left:282.000000px;}
.xbd_c00043{left:283.920000px;}
.x9b_c00043{left:286.920000px;}
.x64_c00043{left:288.420000px;}
.xd5_c00043{left:289.500000px;}
.xc3_c00043{left:291.000000px;}
.x42_c00043{left:294.420000px;}
.x6_c00043{left:295.500000px;}
.x3b_c00043{left:298.500000px;}
.xe1_c00043{left:299.580000px;}
.xad_c00043{left:301.500000px;}
.xb5_c00043{left:304.500000px;}
.x5a_c00043{left:306.000000px;}
.xfe_c00043{left:307.500000px;}
.x30_c00043{left:310.080000px;}
.x9c_c00043{left:313.500000px;}
.xe8_c00043{left:315.000000px;}
.x11_c00043{left:316.080000px;}
.x92_c00043{left:317.580000px;}
.x1b_c00043{left:320.580000px;}
.x76_c00043{left:322.920000px;}
.xec_c00043{left:325.080000px;}
.x7_c00043{left:328.500000px;}
.x31_c00043{left:330.000000px;}
.x12_c00043{left:334.080000px;}
.x8a_c00043{left:336.420000px;}
.x50_c00043{left:337.500000px;}
.x27_c00043{left:339.420000px;}
.x9d_c00043{left:342.000000px;}
.xf0_c00043{left:345.000000px;}
.x13_c00043{left:347.580000px;}
.x5b_c00043{left:349.920000px;}
.xbe_c00043{left:351.000000px;}
.x7f_c00043{left:352.500000px;}
.xa7_c00043{left:354.000000px;}
.x65_c00043{left:355.500000px;}
.x51_c00043{left:357.000000px;}
.x83_c00043{left:360.420000px;}
.x77_c00043{left:361.500000px;}
.xcc_c00043{left:363.000000px;}
.x43_c00043{left:364.500000px;}
.x3c_c00043{left:369.420000px;}
.xed_c00043{left:371.580000px;}
.x66_c00043{left:375.000000px;}
.x80_c00043{left:376.500000px;}
.x5c_c00043{left:378.000000px;}
.x1c_c00043{left:379.500000px;}
.x8b_c00043{left:381.000000px;}
.x9e_c00043{left:382.080000px;}
.xae_c00043{left:383.580000px;}
.xcd_c00043{left:385.500000px;}
.x14_c00043{left:388.500000px;}
.x6e_c00043{left:389.580000px;}
.x84_c00043{left:395.580000px;}
.x1_c00043{left:397.500000px;}
.xd6_c00043{left:399.000000px;}
.xff_c00043{left:400.500000px;}
.xce_c00043{left:402.000000px;}
.xee_c00043{left:403.080000px;}
.x93_c00043{left:405.000000px;}
.x15_c00043{left:406.500000px;}
.x6f_c00043{left:408.000000px;}
.x32_c00043{left:409.500000px;}
.x1d_c00043{left:411.000000px;}
.x9f_c00043{left:412.500000px;}
.xb6_c00043{left:414.420000px;}
.xf3_c00043{left:415.500000px;}
.x44_c00043{left:417.000000px;}
.x5d_c00043{left:418.500000px;}
.x16_c00043{left:420.420000px;}
.x8c_c00043{left:421.500000px;}
.x67_c00043{left:424.080000px;}
.x81_c00043{left:426.000000px;}
.x52_c00043{left:428.580000px;}
.xaf_c00043{left:430.500000px;}
.x28_c00043{left:432.000000px;}
.xd0_c00043{left:433.500000px;}
.x5e_c00043{left:435.420000px;}
.x8_c00043{left:437.580000px;}
.x3d_c00043{left:439.500000px;}
.x45_c00043{left:444.000000px;}
.xfb_c00043{left:446.580000px;}
.x94_c00043{left:448.920000px;}
.x78_c00043{left:450.000000px;}
.x53_c00043{left:452.580000px;}
.x68_c00043{left:456.420000px;}
.x29_c00043{left:459.000000px;}
.xd7_c00043{left:463.500000px;}
.x1e_c00043{left:464.580000px;}
.xdb_c00043{left:466.275000px;}
.xa8_c00043{left:471.000000px;}
.x8d_c00043{left:472.500000px;}
.xc4_c00043{left:473.580000px;}
.x46_c00043{left:477.000000px;}
.xb7_c00043{left:478.500000px;}
.x33_c00043{left:480.420000px;}
.x17_c00043{left:481.500000px;}
.x1f_c00043{left:484.080000px;}
.xb0_c00043{left:487.500000px;}
.xa0_c00043{left:489.420000px;}
.xfc_c00043{left:493.500000px;}
.xe9_c00043{left:494.580000px;}
.x47_c00043{left:496.080000px;}
.x70_c00043{left:499.500000px;}
.x79_c00043{left:502.920000px;}
.x82_c00043{left:504.420000px;}
.xe2_c00043{left:507.000000px;}
.x95_c00043{left:508.500000px;}
.xcb_c00043{left:510.420000px;}
.x9_c00043{left:514.080000px;}
.x34_c00043{left:516.420000px;}
.x48_c00043{left:517.920000px;}
.xc5_c00043{left:519.000000px;}
.x5f_c00043{left:522.420000px;}
.x2a_c00043{left:526.500000px;}
.xd8_c00043{left:536.580000px;}
.x54_c00043{left:538.500000px;}
.xf4_c00043{left:540.420000px;}
.x100_c00043{left:541.920000px;}
.xd1_c00043{left:543.000000px;}
.xa_c00043{left:545.775000px;}
.xc6_c00043{left:547.500000px;}
.xf1_c00043{left:549.000000px;}
.x2b_c00043{left:550.920000px;}
.xbf_c00043{left:554.580000px;}
.xdc_c00043{left:556.500000px;}
.xe3_c00043{left:559.920000px;}
.x49_c00043{left:562.500000px;}
.x96_c00043{left:564.000000px;}
.xf6_c00043{left:565.920000px;}
.xa9_c00043{left:569.580000px;}
.xa1_c00043{left:571.920000px;}
.x35_c00043{left:573.000000px;}
.xe4_c00043{left:574.080000px;}
.xd2_c00043{left:576.000000px;}
.x20_c00043{left:577.500000px;}
.x2c_c00043{left:579.000000px;}
.x85_c00043{left:580.920000px;}
.x4a_c00043{left:582.420000px;}
.x97_c00043{left:583.500000px;}
.xd9_c00043{left:584.580000px;}
.xef_c00043{left:586.500000px;}
.x36_c00043{left:589.500000px;}
.x69_c00043{left:592.500000px;}
.xb_c00043{left:595.500000px;}
.x55_c00043{left:596.580000px;}
.x7a_c00043{left:598.920000px;}
.x3e_c00043{left:603.000000px;}
.x71_c00043{left:604.080000px;}
.x86_c00043{left:607.920000px;}
.x4b_c00043{left:609.000000px;}
.xb8_c00043{left:610.920000px;}
.x6a_c00043{left:612.000000px;}
.xd3_c00043{left:614.580000px;}
.xc7_c00043{left:618.000000px;}
.x21_c00043{left:621.000000px;}
.x72_c00043{left:622.920000px;}
.xc_c00043{left:627.000000px;}
.xc0_c00043{left:630.420000px;}
.xb1_c00043{left:634.500000px;}
.x101_c00043{left:636.000000px;}
.x8e_c00043{left:637.500000px;}
.x60_c00043{left:639.000000px;}
.x22_c00043{left:640.500000px;}
.xb9_c00043{left:642.420000px;}
.xf9_c00043{left:643.500000px;}
.xea_c00043{left:644.580000px;}
.xa2_c00043{left:646.500000px;}
.x56_c00043{left:648.000000px;}
.x73_c00043{left:649.080000px;}
.xb2_c00043{left:652.500000px;}
.x2d_c00043{left:653.580000px;}
.x6b_c00043{left:655.500000px;}
.x4c_c00043{left:656.580000px;}
.xc1_c00043{left:658.500000px;}
.x98_c00043{left:660.000000px;}
.x87_c00043{left:661.500000px;}
.x3f_c00043{left:663.000000px;}
.x37_c00043{left:664.080000px;}
.x61_c00043{left:666.420000px;}
.xaa_c00043{left:667.500000px;}
.xa3_c00043{left:669.420000px;}
.x23_c00043{left:670.920000px;}
.x6c_c00043{left:675.000000px;}
.x7b_c00043{left:678.420000px;}
.xd_c00043{left:681.000000px;}
.x8f_c00043{left:686.580000px;}
.x4d_c00043{left:688.500000px;}
.xdd_c00043{left:690.420000px;}
.x99_c00043{left:691.500000px;}
.x38_c00043{left:694.500000px;}
.x40_c00043{left:696.000000px;}
.xa4_c00043{left:697.080000px;}
.x57_c00043{left:702.000000px;}
.x7c_c00043{left:705.000000px;}
.xe_c00043{left:706.080000px;}
.x90_c00043{left:708.420000px;}
.xab_c00043{left:717.000000px;}
.xb3_c00043{left:718.500000px;}
.x39_c00043{left:721.500000px;}
@media print{
.v0_c00043{vertical-align:0.000000pt;}
.ls0_c00043{letter-spacing:0.000000pt;}
.ws0_c00043{word-spacing:0.000000pt;}
.fs8_c00043{font-size:3.040000pt;}
.fs6_c00043{font-size:12.106667pt;}
.fs0_c00043{font-size:16.640000pt;}
.fs7_c00043{font-size:18.133333pt;}
.fs1_c00043{font-size:22.666667pt;}
.fs3_c00043{font-size:25.706667pt;}
.fs4_c00043{font-size:28.746667pt;}
.fs2_c00043{font-size:31.733333pt;}
.fs5_c00043{font-size:34.773333pt;}
.y0_c00043{bottom:0.000000pt;}
.ycf_c00043{bottom:225.693333pt;}
.yc8_c00043{bottom:241.106667pt;}
.yca_c00043{bottom:242.440000pt;}
.ycb_c00043{bottom:242.826667pt;}
.yc6_c00043{bottom:243.026667pt;}
.yc7_c00043{bottom:243.226667pt;}
.yce_c00043{bottom:243.773333pt;}
.yc9_c00043{bottom:243.973333pt;}
.ycd_c00043{bottom:244.360000pt;}
.ycc_c00043{bottom:245.306667pt;}
.yc3_c00043{bottom:258.826667pt;}
.yc1_c00043{bottom:259.400000pt;}
.yc4_c00043{bottom:259.773333pt;}
.yc2_c00043{bottom:260.360000pt;}
.yc5_c00043{bottom:261.693333pt;}
.ybc_c00043{bottom:277.106667pt;}
.ybf_c00043{bottom:278.440000pt;}
.ybb_c00043{bottom:279.026667pt;}
.ybd_c00043{bottom:279.226667pt;}
.ybe_c00043{bottom:279.973333pt;}
.yc0_c00043{bottom:280.360000pt;}
.yba_c00043{bottom:293.693333pt;}
.yb4_c00043{bottom:294.440000pt;}
.yb6_c00043{bottom:295.773333pt;}
.yb5_c00043{bottom:296.360000pt;}
.yb8_c00043{bottom:296.560000pt;}
.yb9_c00043{bottom:297.306667pt;}
.yb7_c00043{bottom:297.693333pt;}
.yb3_c00043{bottom:312.733333pt;}
.yb1_c00043{bottom:313.106667pt;}
.yb0_c00043{bottom:313.693333pt;}
.yb2_c00043{bottom:315.026667pt;}
.yad_c00043{bottom:330.066667pt;}
.yac_c00043{bottom:331.026667pt;}
.yaa_c00043{bottom:331.226667pt;}
.yab_c00043{bottom:331.973333pt;}
.yaf_c00043{bottom:332.360000pt;}
.yae_c00043{bottom:333.306667pt;}
.ya9_c00043{bottom:347.773333pt;}
.ya7_c00043{bottom:348.733333pt;}
.ya8_c00043{bottom:349.693333pt;}
.ya6_c00043{bottom:365.106667pt;}
.ya4_c00043{bottom:367.026667pt;}
.ya5_c00043{bottom:367.040000pt;}
.ya3_c00043{bottom:382.440000pt;}
.ya0_c00043{bottom:384.360000pt;}
.ya1_c00043{bottom:384.560000pt;}
.ya2_c00043{bottom:385.706667pt;}
.y9e_c00043{bottom:401.693333pt;}
.y9f_c00043{bottom:402.640000pt;}
.y99_c00043{bottom:416.360000pt;}
.y97_c00043{bottom:417.106667pt;}
.y9b_c00043{bottom:417.306667pt;}
.y9d_c00043{bottom:417.493333pt;}
.y98_c00043{bottom:418.440000pt;}
.y9c_c00043{bottom:419.226667pt;}
.y9a_c00043{bottom:420.360000pt;}
.y95_c00043{bottom:435.026667pt;}
.y91_c00043{bottom:435.773333pt;}
.y93_c00043{bottom:436.733333pt;}
.y94_c00043{bottom:436.933333pt;}
.y96_c00043{bottom:437.693333pt;}
.y92_c00043{bottom:437.706667pt;}
.y8a_c00043{bottom:451.773333pt;}
.y8f_c00043{bottom:452.360000pt;}
.y8b_c00043{bottom:453.106667pt;}
.y8d_c00043{bottom:454.066667pt;}
.y8e_c00043{bottom:455.026667pt;}
.y8c_c00043{bottom:455.040000pt;}
.y90_c00043{bottom:455.973333pt;}
.y86_c00043{bottom:475.973333pt;}
.y87_c00043{bottom:476.733333pt;}
.y89_c00043{bottom:477.306667pt;}
.y88_c00043{bottom:477.693333pt;}
.y84_c00043{bottom:478.640000pt;}
.y85_c00043{bottom:479.600000pt;}
.y83_c00043{bottom:494.066667pt;}
.y81_c00043{bottom:495.973333pt;}
.y82_c00043{bottom:497.506667pt;}
.y80_c00043{bottom:518.066667pt;}
.y7f_c00043{bottom:519.400000pt;}
.y7e_c00043{bottom:520.360000pt;}
.y7d_c00043{bottom:521.306667pt;}
.y78_c00043{bottom:557.106667pt;}
.y7b_c00043{bottom:558.440000pt;}
.y7a_c00043{bottom:559.026667pt;}
.y79_c00043{bottom:559.226667pt;}
.y7c_c00043{bottom:560.360000pt;}
.y76_c00043{bottom:573.693333pt;}
.y77_c00043{bottom:575.773333pt;}
.y72_c00043{bottom:576.360000pt;}
.y75_c00043{bottom:576.560000pt;}
.y73_c00043{bottom:577.306667pt;}
.y74_c00043{bottom:577.693333pt;}
.y70_c00043{bottom:593.106667pt;}
.y6d_c00043{bottom:593.693333pt;}
.y6f_c00043{bottom:594.066667pt;}
.y71_c00043{bottom:594.640000pt;}
.y6e_c00043{bottom:595.026667pt;}
.y6a_c00043{bottom:610.440000pt;}
.y6b_c00043{bottom:612.360000pt;}
.y6c_c00043{bottom:613.306667pt;}
.y68_c00043{bottom:627.773333pt;}
.y69_c00043{bottom:627.973333pt;}
.y66_c00043{bottom:628.733333pt;}
.y67_c00043{bottom:629.693333pt;}
.y65_c00043{bottom:644.360000pt;}
.y64_c00043{bottom:645.106667pt;}
.y61_c00043{bottom:646.066667pt;}
.y60_c00043{bottom:647.026667pt;}
.y63_c00043{bottom:647.226667pt;}
.y62_c00043{bottom:647.973333pt;}
.y5b_c00043{bottom:661.693333pt;}
.y59_c00043{bottom:662.440000pt;}
.y5c_c00043{bottom:663.773333pt;}
.y58_c00043{bottom:664.360000pt;}
.y5f_c00043{bottom:664.560000pt;}
.y5e_c00043{bottom:664.733333pt;}
.y5a_c00043{bottom:665.306667pt;}
.y5d_c00043{bottom:665.693333pt;}
.y54_c00043{bottom:679.026667pt;}
.y52_c00043{bottom:679.773333pt;}
.y57_c00043{bottom:680.360000pt;}
.y55_c00043{bottom:681.106667pt;}
.y56_c00043{bottom:682.640000pt;}
.y53_c00043{bottom:683.026667pt;}
.y4e_c00043{bottom:698.440000pt;}
.y4d_c00043{bottom:699.026667pt;}
.y51_c00043{bottom:699.400000pt;}
.y4f_c00043{bottom:700.360000pt;}
.y50_c00043{bottom:700.560000pt;}
.y4a_c00043{bottom:715.400000pt;}
.y4b_c00043{bottom:715.773333pt;}
.y48_c00043{bottom:717.306667pt;}
.y49_c00043{bottom:717.693333pt;}
.y4c_c00043{bottom:718.640000pt;}
.y45_c00043{bottom:733.106667pt;}
.y46_c00043{bottom:734.066667pt;}
.y47_c00043{bottom:734.640000pt;}
.y44_c00043{bottom:735.026667pt;}
.y3f_c00043{bottom:750.440000pt;}
.y40_c00043{bottom:751.400000pt;}
.y42_c00043{bottom:751.773333pt;}
.y43_c00043{bottom:751.973333pt;}
.y3e_c00043{bottom:752.360000pt;}
.y41_c00043{bottom:753.693333pt;}
.y3c_c00043{bottom:767.973333pt;}
.y3a_c00043{bottom:769.106667pt;}
.y38_c00043{bottom:769.693333pt;}
.y3d_c00043{bottom:769.893333pt;}
.y3b_c00043{bottom:770.640000pt;}
.y39_c00043{bottom:771.026667pt;}
.y33_c00043{bottom:785.893333pt;}
.y35_c00043{bottom:786.066667pt;}
.y34_c00043{bottom:787.026667pt;}
.y37_c00043{bottom:787.226667pt;}
.y36_c00043{bottom:788.360000pt;}
.y2e_c00043{bottom:803.400000pt;}
.y31_c00043{bottom:803.773333pt;}
.y32_c00043{bottom:804.560000pt;}
.y30_c00043{bottom:805.306667pt;}
.y2f_c00043{bottom:805.693333pt;}
.y29_c00043{bottom:819.773333pt;}
.y2d_c00043{bottom:821.106667pt;}
.y2c_c00043{bottom:822.066667pt;}
.y2b_c00043{bottom:822.640000pt;}
.y2a_c00043{bottom:823.026667pt;}
.y25_c00043{bottom:838.440000pt;}
.y22_c00043{bottom:839.026667pt;}
.y26_c00043{bottom:839.226667pt;}
.y24_c00043{bottom:839.973333pt;}
.y23_c00043{bottom:840.360000pt;}
.y27_c00043{bottom:841.306667pt;}
.y28_c00043{bottom:841.693333pt;}
.y1e_c00043{bottom:854.826667pt;}
.y1f_c00043{bottom:855.773333pt;}
.y1d_c00043{bottom:857.306667pt;}
.y20_c00043{bottom:857.693333pt;}
.y21_c00043{bottom:858.640000pt;}
.y18_c00043{bottom:873.106667pt;}
.y1c_c00043{bottom:874.066667pt;}
.y1a_c00043{bottom:874.440000pt;}
.y17_c00043{bottom:875.026667pt;}
.y19_c00043{bottom:875.973333pt;}
.y1b_c00043{bottom:876.360000pt;}
.y13_c00043{bottom:890.440000pt;}
.y16_c00043{bottom:891.773333pt;}
.y12_c00043{bottom:892.360000pt;}
.y14_c00043{bottom:892.560000pt;}
.y15_c00043{bottom:893.693333pt;}
.yc_c00043{bottom:907.773333pt;}
.y11_c00043{bottom:908.733333pt;}
.yf_c00043{bottom:909.106667pt;}
.ye_c00043{bottom:909.693333pt;}
.y10_c00043{bottom:909.893333pt;}
.yd_c00043{bottom:910.640000pt;}
.y7_c00043{bottom:925.106667pt;}
.ya_c00043{bottom:925.306667pt;}
.yb_c00043{bottom:927.226667pt;}
.y8_c00043{bottom:927.973333pt;}
.y9_c00043{bottom:928.360000pt;}
.y3_c00043{bottom:942.440000pt;}
.y4_c00043{bottom:943.773333pt;}
.y6_c00043{bottom:944.560000pt;}
.y5_c00043{bottom:945.693333pt;}
.y2_c00043{bottom:977.306667pt;}
.y1_c00043{bottom:980.560000pt;}
.h9_c00043{height:3.739141pt;}
.h7_c00043{height:14.890964pt;}
.h1_c00043{height:20.466875pt;}
.h8_c00043{height:22.303646pt;}
.h2_c00043{height:27.879557pt;}
.h4_c00043{height:31.618698pt;}
.h5_c00043{height:35.357839pt;}
.h3_c00043{height:39.031380pt;}
.h6_c00043{height:42.770521pt;}
.h0_c00043{height:1186.666667pt;}
.w0_c00043{width:782.666667pt;}
.x0_c00043{left:0.000000pt;}
.x3_c00043{left:135.240000pt;}
.x2_c00043{left:136.373333pt;}
.xcf_c00043{left:148.000000pt;}
.x18_c00043{left:150.666667pt;}
.x62_c00043{left:154.293333pt;}
.xe5_c00043{left:159.040000pt;}
.xba_c00043{left:160.960000pt;}
.x88_c00043{left:163.040000pt;}
.x24_c00043{left:164.000000pt;}
.xfa_c00043{left:165.333333pt;}
.xc2_c00043{left:166.666667pt;}
.x2e_c00043{left:167.626667pt;}
.x6d_c00043{left:169.706667pt;}
.xf7_c00043{left:172.000000pt;}
.x3a_c00043{left:175.626667pt;}
.x7d_c00043{left:177.333333pt;}
.x74_c00043{left:178.293333pt;}
.x25_c00043{left:180.960000pt;}
.xa5_c00043{left:183.040000pt;}
.xf5_c00043{left:184.000000pt;}
.xc8_c00043{left:185.333333pt;}
.x9a_c00043{left:189.333333pt;}
.xf_c00043{left:190.293333pt;}
.x4_c00043{left:192.960000pt;}
.x4e_c00043{left:194.666667pt;}
.xbb_c00043{left:195.626667pt;}
.xde_c00043{left:199.040000pt;}
.xc9_c00043{left:202.666667pt;}
.x41_c00043{left:204.960000pt;}
.xeb_c00043{left:207.040000pt;}
.x91_c00043{left:208.373333pt;}
.x63_c00043{left:209.333333pt;}
.xbc_c00043{left:212.960000pt;}
.x89_c00043{left:215.626667pt;}
.xdf_c00043{left:217.706667pt;}
.x19_c00043{left:218.666667pt;}
.x4f_c00043{left:219.626667pt;}
.x75_c00043{left:221.333333pt;}
.xe6_c00043{left:223.040000pt;}
.x10_c00043{left:224.373333pt;}
.xf2_c00043{left:225.333333pt;}
.xac_c00043{left:226.666667pt;}
.xda_c00043{left:230.666667pt;}
.x58_c00043{left:232.000000pt;}
.xb4_c00043{left:233.333333pt;}
.x5_c00043{left:234.666667pt;}
.x1a_c00043{left:236.000000pt;}
.x2f_c00043{left:237.133333pt;}
.xd4_c00043{left:238.666667pt;}
.xfd_c00043{left:240.000000pt;}
.xe0_c00043{left:241.706667pt;}
.x26_c00043{left:242.666667pt;}
.xa6_c00043{left:244.000000pt;}
.xca_c00043{left:245.333333pt;}
.xf8_c00043{left:246.293333pt;}
.x7e_c00043{left:248.000000pt;}
.x59_c00043{left:249.333333pt;}
.xe7_c00043{left:250.666667pt;}
.xbd_c00043{left:252.373333pt;}
.x9b_c00043{left:255.040000pt;}
.x64_c00043{left:256.373333pt;}
.xd5_c00043{left:257.333333pt;}
.xc3_c00043{left:258.666667pt;}
.x42_c00043{left:261.706667pt;}
.x6_c00043{left:262.666667pt;}
.x3b_c00043{left:265.333333pt;}
.xe1_c00043{left:266.293333pt;}
.xad_c00043{left:268.000000pt;}
.xb5_c00043{left:270.666667pt;}
.x5a_c00043{left:272.000000pt;}
.xfe_c00043{left:273.333333pt;}
.x30_c00043{left:275.626667pt;}
.x9c_c00043{left:278.666667pt;}
.xe8_c00043{left:280.000000pt;}
.x11_c00043{left:280.960000pt;}
.x92_c00043{left:282.293333pt;}
.x1b_c00043{left:284.960000pt;}
.x76_c00043{left:287.040000pt;}
.xec_c00043{left:288.960000pt;}
.x7_c00043{left:292.000000pt;}
.x31_c00043{left:293.333333pt;}
.x12_c00043{left:296.960000pt;}
.x8a_c00043{left:299.040000pt;}
.x50_c00043{left:300.000000pt;}
.x27_c00043{left:301.706667pt;}
.x9d_c00043{left:304.000000pt;}
.xf0_c00043{left:306.666667pt;}
.x13_c00043{left:308.960000pt;}
.x5b_c00043{left:311.040000pt;}
.xbe_c00043{left:312.000000pt;}
.x7f_c00043{left:313.333333pt;}
.xa7_c00043{left:314.666667pt;}
.x65_c00043{left:316.000000pt;}
.x51_c00043{left:317.333333pt;}
.x83_c00043{left:320.373333pt;}
.x77_c00043{left:321.333333pt;}
.xcc_c00043{left:322.666667pt;}
.x43_c00043{left:324.000000pt;}
.x3c_c00043{left:328.373333pt;}
.xed_c00043{left:330.293333pt;}
.x66_c00043{left:333.333333pt;}
.x80_c00043{left:334.666667pt;}
.x5c_c00043{left:336.000000pt;}
.x1c_c00043{left:337.333333pt;}
.x8b_c00043{left:338.666667pt;}
.x9e_c00043{left:339.626667pt;}
.xae_c00043{left:340.960000pt;}
.xcd_c00043{left:342.666667pt;}
.x14_c00043{left:345.333333pt;}
.x6e_c00043{left:346.293333pt;}
.x84_c00043{left:351.626667pt;}
.x1_c00043{left:353.333333pt;}
.xd6_c00043{left:354.666667pt;}
.xff_c00043{left:356.000000pt;}
.xce_c00043{left:357.333333pt;}
.xee_c00043{left:358.293333pt;}
.x93_c00043{left:360.000000pt;}
.x15_c00043{left:361.333333pt;}
.x6f_c00043{left:362.666667pt;}
.x32_c00043{left:364.000000pt;}
.x1d_c00043{left:365.333333pt;}
.x9f_c00043{left:366.666667pt;}
.xb6_c00043{left:368.373333pt;}
.xf3_c00043{left:369.333333pt;}
.x44_c00043{left:370.666667pt;}
.x5d_c00043{left:372.000000pt;}
.x16_c00043{left:373.706667pt;}
.x8c_c00043{left:374.666667pt;}
.x67_c00043{left:376.960000pt;}
.x81_c00043{left:378.666667pt;}
.x52_c00043{left:380.960000pt;}
.xaf_c00043{left:382.666667pt;}
.x28_c00043{left:384.000000pt;}
.xd0_c00043{left:385.333333pt;}
.x5e_c00043{left:387.040000pt;}
.x8_c00043{left:388.960000pt;}
.x3d_c00043{left:390.666667pt;}
.x45_c00043{left:394.666667pt;}
.xfb_c00043{left:396.960000pt;}
.x94_c00043{left:399.040000pt;}
.x78_c00043{left:400.000000pt;}
.x53_c00043{left:402.293333pt;}
.x68_c00043{left:405.706667pt;}
.x29_c00043{left:408.000000pt;}
.xd7_c00043{left:412.000000pt;}
.x1e_c00043{left:412.960000pt;}
.xdb_c00043{left:414.466667pt;}
.xa8_c00043{left:418.666667pt;}
.x8d_c00043{left:420.000000pt;}
.xc4_c00043{left:420.960000pt;}
.x46_c00043{left:424.000000pt;}
.xb7_c00043{left:425.333333pt;}
.x33_c00043{left:427.040000pt;}
.x17_c00043{left:428.000000pt;}
.x1f_c00043{left:430.293333pt;}
.xb0_c00043{left:433.333333pt;}
.xa0_c00043{left:435.040000pt;}
.xfc_c00043{left:438.666667pt;}
.xe9_c00043{left:439.626667pt;}
.x47_c00043{left:440.960000pt;}
.x70_c00043{left:444.000000pt;}
.x79_c00043{left:447.040000pt;}
.x82_c00043{left:448.373333pt;}
.xe2_c00043{left:450.666667pt;}
.x95_c00043{left:452.000000pt;}
.xcb_c00043{left:453.706667pt;}
.x9_c00043{left:456.960000pt;}
.x34_c00043{left:459.040000pt;}
.x48_c00043{left:460.373333pt;}
.xc5_c00043{left:461.333333pt;}
.x5f_c00043{left:464.373333pt;}
.x2a_c00043{left:468.000000pt;}
.xd8_c00043{left:476.960000pt;}
.x54_c00043{left:478.666667pt;}
.xf4_c00043{left:480.373333pt;}
.x100_c00043{left:481.706667pt;}
.xd1_c00043{left:482.666667pt;}
.xa_c00043{left:485.133333pt;}
.xc6_c00043{left:486.666667pt;}
.xf1_c00043{left:488.000000pt;}
.x2b_c00043{left:489.706667pt;}
.xbf_c00043{left:492.960000pt;}
.xdc_c00043{left:494.666667pt;}
.xe3_c00043{left:497.706667pt;}
.x49_c00043{left:500.000000pt;}
.x96_c00043{left:501.333333pt;}
.xf6_c00043{left:503.040000pt;}
.xa9_c00043{left:506.293333pt;}
.xa1_c00043{left:508.373333pt;}
.x35_c00043{left:509.333333pt;}
.xe4_c00043{left:510.293333pt;}
.xd2_c00043{left:512.000000pt;}
.x20_c00043{left:513.333333pt;}
.x2c_c00043{left:514.666667pt;}
.x85_c00043{left:516.373333pt;}
.x4a_c00043{left:517.706667pt;}
.x97_c00043{left:518.666667pt;}
.xd9_c00043{left:519.626667pt;}
.xef_c00043{left:521.333333pt;}
.x36_c00043{left:524.000000pt;}
.x69_c00043{left:526.666667pt;}
.xb_c00043{left:529.333333pt;}
.x55_c00043{left:530.293333pt;}
.x7a_c00043{left:532.373333pt;}
.x3e_c00043{left:536.000000pt;}
.x71_c00043{left:536.960000pt;}
.x86_c00043{left:540.373333pt;}
.x4b_c00043{left:541.333333pt;}
.xb8_c00043{left:543.040000pt;}
.x6a_c00043{left:544.000000pt;}
.xd3_c00043{left:546.293333pt;}
.xc7_c00043{left:549.333333pt;}
.x21_c00043{left:552.000000pt;}
.x72_c00043{left:553.706667pt;}
.xc_c00043{left:557.333333pt;}
.xc0_c00043{left:560.373333pt;}
.xb1_c00043{left:564.000000pt;}
.x101_c00043{left:565.333333pt;}
.x8e_c00043{left:566.666667pt;}
.x60_c00043{left:568.000000pt;}
.x22_c00043{left:569.333333pt;}
.xb9_c00043{left:571.040000pt;}
.xf9_c00043{left:572.000000pt;}
.xea_c00043{left:572.960000pt;}
.xa2_c00043{left:574.666667pt;}
.x56_c00043{left:576.000000pt;}
.x73_c00043{left:576.960000pt;}
.xb2_c00043{left:580.000000pt;}
.x2d_c00043{left:580.960000pt;}
.x6b_c00043{left:582.666667pt;}
.x4c_c00043{left:583.626667pt;}
.xc1_c00043{left:585.333333pt;}
.x98_c00043{left:586.666667pt;}
.x87_c00043{left:588.000000pt;}
.x3f_c00043{left:589.333333pt;}
.x37_c00043{left:590.293333pt;}
.x61_c00043{left:592.373333pt;}
.xaa_c00043{left:593.333333pt;}
.xa3_c00043{left:595.040000pt;}
.x23_c00043{left:596.373333pt;}
.x6c_c00043{left:600.000000pt;}
.x7b_c00043{left:603.040000pt;}
.xd_c00043{left:605.333333pt;}
.x8f_c00043{left:610.293333pt;}
.x4d_c00043{left:612.000000pt;}
.xdd_c00043{left:613.706667pt;}
.x99_c00043{left:614.666667pt;}
.x38_c00043{left:617.333333pt;}
.x40_c00043{left:618.666667pt;}
.xa4_c00043{left:619.626667pt;}
.x57_c00043{left:624.000000pt;}
.x7c_c00043{left:626.666667pt;}
.xe_c00043{left:627.626667pt;}
.x90_c00043{left:629.706667pt;}
.xab_c00043{left:637.333333pt;}
.xb3_c00043{left:638.666667pt;}
.x39_c00043{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_644d32dedcf632e8fe5992b8.woff2')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc1_c00044{transform:matrix(0.281076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281076,0.000000,0.000000,0.250000,0,0);}
.mc3_c00044{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m10a_c00044{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.mbe_c00044{transform:matrix(0.352288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352288,0.000000,0.000000,0.250000,0,0);}
.mbf_c00044{transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);}
.mee_c00044{transform:matrix(0.359309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359309,0.000000,0.000000,0.250000,0,0);}
.m8e_c00044{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m119_c00044{transform:matrix(0.365126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365126,0.000000,0.000000,0.250000,0,0);}
.mef_c00044{transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);}
.mf7_c00044{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m45_c00044{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m1e_c00044{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.mfb_c00044{transform:matrix(0.379985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379985,0.000000,0.000000,0.250000,0,0);}
.m86_c00044{transform:matrix(0.381518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381518,0.000000,0.000000,0.250000,0,0);}
.mac_c00044{transform:matrix(0.383639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383639,0.000000,0.000000,0.250000,0,0);}
.mb6_c00044{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m49_c00044{transform:matrix(0.388037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388037,0.000000,0.000000,0.250000,0,0);}
.me9_c00044{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m8c_c00044{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.ma3_c00044{transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);}
.m8f_c00044{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m11_c00044{transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);}
.m10b_c00044{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.mc7_c00044{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.me0_c00044{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m18_c00044{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.md3_c00044{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m3a_c00044{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.mab_c00044{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.mcd_c00044{transform:matrix(0.402991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402991,0.000000,0.000000,0.250000,0,0);}
.mde_c00044{transform:matrix(0.403374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403374,0.000000,0.000000,0.250000,0,0);}
.m112_c00044{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m52_c00044{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m115_c00044{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.md2_c00044{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mf4_c00044{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.mc5_c00044{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.mb1_c00044{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m100_c00044{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m110_c00044{transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);}
.m9d_c00044{transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);}
.m60_c00044{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m29_c00044{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.mad_c00044{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m99_c00044{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.md8_c00044{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.maf_c00044{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m90_c00044{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m11c_c00044{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.mfd_c00044{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.md6_c00044{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m5_c00044{transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);}
.m7d_c00044{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m105_c00044{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m3f_c00044{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m61_c00044{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mf_c00044{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.mb7_c00044{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m59_c00044{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m26_c00044{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m16_c00044{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.mca_c00044{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m22_c00044{transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);}
.m85_c00044{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m5f_c00044{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.mdd_c00044{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mce_c00044{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m97_c00044{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.m94_c00044{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m66_c00044{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mb5_c00044{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.mc0_c00044{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.mb4_c00044{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.md4_c00044{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m80_c00044{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m57_c00044{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m4_c00044{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m53_c00044{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mcc_c00044{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mc6_c00044{transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);}
.m10c_c00044{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m0_c00044{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m87_c00044{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.ma4_c00044{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m9_c00044{transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);}
.m32_c00044{transform:matrix(0.446471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446471,0.000000,0.000000,0.250000,0,0);}
.me6_c00044{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.m35_c00044{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.me8_c00044{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m78_c00044{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m88_c00044{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.mfc_c00044{transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);}
.me1_c00044{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m96_c00044{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m1a_c00044{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.m106_c00044{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.me7_c00044{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mf8_c00044{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m95_c00044{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m43_c00044{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m56_c00044{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.mb0_c00044{transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);}
.m47_c00044{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m63_c00044{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m98_c00044{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.mb2_c00044{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.mb9_c00044{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.m6b_c00044{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.md5_c00044{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.m6_c00044{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.m109_c00044{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.me3_c00044{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m9a_c00044{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m50_c00044{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m71_c00044{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.m40_c00044{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m102_c00044{transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);}
.mbd_c00044{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.mc9_c00044{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m24_c00044{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m41_c00044{transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);}
.mc2_c00044{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m28_c00044{transform:matrix(0.477206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477206,0.000000,0.000000,0.250000,0,0);}
.m42_c00044{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m8d_c00044{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m51_c00044{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m38_c00044{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m2e_c00044{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.mda_c00044{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m108_c00044{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m7e_c00044{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.ma7_c00044{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m77_c00044{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m7f_c00044{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m10f_c00044{transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);}
.m58_c00044{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mb_c00044{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m2b_c00044{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.md0_c00044{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m75_c00044{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mfe_c00044{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.mff_c00044{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m7b_c00044{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m3c_c00044{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_c00044{transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);}
.m8b_c00044{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m89_c00044{transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);}
.m5b_c00044{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m84_c00044{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m1f_c00044{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m9f_c00044{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m11b_c00044{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.ma9_c00044{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m27_c00044{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.mb3_c00044{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m4f_c00044{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m34_c00044{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.m9e_c00044{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m79_c00044{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mc4_c00044{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m39_c00044{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.mbc_c00044{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.ma_c00044{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);}
.m8_c00044{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m6d_c00044{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m65_c00044{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mf3_c00044{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m13_c00044{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);}
.m6c_c00044{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m5d_c00044{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m82_c00044{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m74_c00044{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.meb_c00044{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m19_c00044{transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);}
.m62_c00044{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mf9_c00044{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.mdc_c00044{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m4e_c00044{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.me2_c00044{transform:matrix(0.532931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532931,0.000000,0.000000,0.250000,0,0);}
.m67_c00044{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.me5_c00044{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m23_c00044{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m5a_c00044{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.md9_c00044{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m92_c00044{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m4c_c00044{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mf1_c00044{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m10e_c00044{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m37_c00044{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.mae_c00044{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m6e_c00044{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mea_c00044{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.ma6_c00044{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m8a_c00044{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m33_c00044{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m6f_c00044{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m10d_c00044{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.mdb_c00044{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.ma2_c00044{transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);}
.mbb_c00044{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m2d_c00044{transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);}
.m6a_c00044{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.mba_c00044{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m111_c00044{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m69_c00044{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m54_c00044{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m1b_c00044{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.mf6_c00044{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m118_c00044{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m5c_c00044{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.md7_c00044{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m1d_c00044{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mf2_c00044{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m93_c00044{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m104_c00044{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m4d_c00044{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m30_c00044{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m44_c00044{transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);}
.ma0_c00044{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m113_c00044{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.mcb_c00044{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m7c_c00044{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m3_c00044{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m20_c00044{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);}
.mec_c00044{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.mcf_c00044{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m2_c00044{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m3e_c00044{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m46_c00044{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.med_c00044{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m3b_c00044{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m55_c00044{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m11e_c00044{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m72_c00044{transform:matrix(0.594398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594398,0.000000,0.000000,0.250000,0,0);}
.m11a_c00044{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.m36_c00044{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m9c_c00044{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m4b_c00044{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.mc8_c00044{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);}
.maa_c00044{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m4a_c00044{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.m7_c00044{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m76_c00044{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m81_c00044{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.md1_c00044{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m101_c00044{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.ma5_c00044{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m107_c00044{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m48_c00044{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.me_c00044{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.me4_c00044{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);}
.m83_c00044{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m15_c00044{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m1_c00044{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m14_c00044{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m2f_c00044{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m31_c00044{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m9b_c00044{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m70_c00044{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m73_c00044{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m3d_c00044{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.md_c00044{transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);}
.m10_c00044{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m11d_c00044{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.mb8_c00044{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m2c_c00044{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m25_c00044{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m103_c00044{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m1c_c00044{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);}
.m64_c00044{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mdf_c00044{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m116_c00044{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m68_c00044{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m114_c00044{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);}
.m5e_c00044{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mf0_c00044{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m12_c00044{transform:matrix(0.780449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780449,0.000000,0.000000,0.250000,0,0);}
.m7a_c00044{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.ma1_c00044{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m91_c00044{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.m117_c00044{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.ma8_c00044{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m17_c00044{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m2a_c00044{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m21_c00044{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.mc_c00044{transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);}
.mf5_c00044{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.v0_c00044{vertical-align:0.000000px;}
.v1_c00044{vertical-align:18.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:-6.988015px;}
.ws1_c00044{word-spacing:0.000000px;}
.fc0_c00044{color:transparent;}
.fsa_c00044{font-size:3.420000px;}
.fs5_c00044{font-size:13.620000px;}
.fs2_c00044{font-size:18.720000px;}
.fs1_c00044{font-size:20.400000px;}
.fs3_c00044{font-size:25.500000px;}
.fs0_c00044{font-size:28.920000px;}
.fs4_c00044{font-size:32.340000px;}
.fs7_c00044{font-size:35.700000px;}
.fs6_c00044{font-size:39.120000px;}
.fs8_c00044{font-size:42.540000px;}
.fs9_c00044{font-size:45.900000px;}
.y0_c00044{bottom:0.000000px;}
.y112_c00044{bottom:253.905000px;}
.y110_c00044{bottom:254.745000px;}
.y10e_c00044{bottom:256.470000px;}
.y10f_c00044{bottom:256.905000px;}
.y111_c00044{bottom:257.970000px;}
.y10d_c00044{bottom:258.405000px;}
.y10b_c00044{bottom:259.905000px;}
.y10c_c00044{bottom:260.970000px;}
.y107_c00044{bottom:274.245000px;}
.y105_c00044{bottom:275.130000px;}
.y106_c00044{bottom:276.405000px;}
.y104_c00044{bottom:276.630000px;}
.y109_c00044{bottom:276.825000px;}
.y103_c00044{bottom:277.245000px;}
.y108_c00044{bottom:277.470000px;}
.y10a_c00044{bottom:277.905000px;}
.y102_c00044{bottom:278.550000px;}
.y101_c00044{bottom:279.405000px;}
.y100_c00044{bottom:295.470000px;}
.yfd_c00044{bottom:295.905000px;}
.yfc_c00044{bottom:296.325000px;}
.yfe_c00044{bottom:296.970000px;}
.yff_c00044{bottom:297.405000px;}
.yfb_c00044{bottom:298.905000px;}
.yfa_c00044{bottom:300.825000px;}
.yf4_c00044{bottom:312.180000px;}
.yf5_c00044{bottom:313.245000px;}
.yf9_c00044{bottom:314.745000px;}
.yf6_c00044{bottom:314.970000px;}
.yf3_c00044{bottom:315.405000px;}
.yf7_c00044{bottom:316.470000px;}
.yf8_c00044{bottom:316.905000px;}
.yf2_c00044{bottom:318.405000px;}
.yf1_c00044{bottom:320.325000px;}
.yee_c00044{bottom:332.745000px;}
.yef_c00044{bottom:332.970000px;}
.yec_c00044{bottom:334.470000px;}
.yed_c00044{bottom:334.905000px;}
.yf0_c00044{bottom:335.130000px;}
.yeb_c00044{bottom:336.405000px;}
.yea_c00044{bottom:337.905000px;}
.ye8_c00044{bottom:352.245000px;}
.ye7_c00044{bottom:354.405000px;}
.ye9_c00044{bottom:355.470000px;}
.ye6_c00044{bottom:355.905000px;}
.ye5_c00044{bottom:358.245000px;}
.ye4_c00044{bottom:379.245000px;}
.ye1_c00044{bottom:391.245000px;}
.ydf_c00044{bottom:392.325000px;}
.yde_c00044{bottom:393.180000px;}
.ye0_c00044{bottom:393.405000px;}
.ye2_c00044{bottom:394.470000px;}
.ye3_c00044{bottom:394.905000px;}
.ydd_c00044{bottom:398.745000px;}
.ydb_c00044{bottom:410.745000px;}
.yda_c00044{bottom:412.905000px;}
.ydc_c00044{bottom:413.130000px;}
.yd9_c00044{bottom:414.405000px;}
.yd8_c00044{bottom:414.420000px;}
.yd7_c00044{bottom:416.745000px;}
.yd5_c00044{bottom:430.245000px;}
.yd3_c00044{bottom:431.745000px;}
.yd4_c00044{bottom:432.405000px;}
.yd6_c00044{bottom:432.630000px;}
.yd2_c00044{bottom:433.905000px;}
.yd0_c00044{bottom:435.180000px;}
.yd1_c00044{bottom:436.470000px;}
.ycc_c00044{bottom:451.245000px;}
.ycf_c00044{bottom:452.130000px;}
.ycd_c00044{bottom:452.970000px;}
.yce_c00044{bottom:453.405000px;}
.ycb_c00044{bottom:453.630000px;}
.yca_c00044{bottom:454.905000px;}
.yc7_c00044{bottom:471.405000px;}
.yc9_c00044{bottom:472.470000px;}
.yc8_c00044{bottom:472.905000px;}
.yc6_c00044{bottom:474.825000px;}
.yc5_c00044{bottom:477.405000px;}
.yc3_c00044{bottom:489.405000px;}
.yc2_c00044{bottom:492.405000px;}
.yc4_c00044{bottom:492.630000px;}
.yc1_c00044{bottom:493.905000px;}
.yc0_c00044{bottom:494.325000px;}
.ybe_c00044{bottom:508.905000px;}
.ybf_c00044{bottom:509.745000px;}
.ybd_c00044{bottom:511.905000px;}
.ybc_c00044{bottom:512.325000px;}
.ybb_c00044{bottom:516.825000px;}
.yba_c00044{bottom:529.245000px;}
.yb9_c00044{bottom:530.325000px;}
.yb5_c00044{bottom:531.180000px;}
.yb7_c00044{bottom:531.405000px;}
.yb8_c00044{bottom:531.630000px;}
.yb6_c00044{bottom:533.130000px;}
.yb4_c00044{bottom:535.245000px;}
.yb3_c00044{bottom:550.245000px;}
.yb2_c00044{bottom:551.130000px;}
.yb1_c00044{bottom:552.405000px;}
.yb0_c00044{bottom:553.905000px;}
.yaf_c00044{bottom:554.970000px;}
.yae_c00044{bottom:555.405000px;}
.yab_c00044{bottom:569.745000px;}
.yac_c00044{bottom:570.630000px;}
.yad_c00044{bottom:571.470000px;}
.yaa_c00044{bottom:571.905000px;}
.ya9_c00044{bottom:574.905000px;}
.ya6_c00044{bottom:589.245000px;}
.ya8_c00044{bottom:590.130000px;}
.ya7_c00044{bottom:591.405000px;}
.ya5_c00044{bottom:592.680000px;}
.ya3_c00044{bottom:607.905000px;}
.ya1_c00044{bottom:608.745000px;}
.ya4_c00044{bottom:610.905000px;}
.ya2_c00044{bottom:611.970000px;}
.ya0_c00044{bottom:612.405000px;}
.y9f_c00044{bottom:612.825000px;}
.y9e_c00044{bottom:615.630000px;}
.y97_c00044{bottom:627.180000px;}
.y9a_c00044{bottom:628.245000px;}
.y96_c00044{bottom:629.100000px;}
.y99_c00044{bottom:629.325000px;}
.y9c_c00044{bottom:629.745000px;}
.y98_c00044{bottom:630.405000px;}
.y9b_c00044{bottom:630.630000px;}
.y9d_c00044{bottom:631.905000px;}
.y95_c00044{bottom:633.825000px;}
.y91_c00044{bottom:646.905000px;}
.y92_c00044{bottom:649.905000px;}
.y94_c00044{bottom:650.130000px;}
.y93_c00044{bottom:651.405000px;}
.y90_c00044{bottom:651.825000px;}
.y8f_c00044{bottom:653.550000px;}
.y8e_c00044{bottom:668.745000px;}
.y8d_c00044{bottom:669.630000px;}
.y8c_c00044{bottom:670.905000px;}
.y8b_c00044{bottom:671.325000px;}
.y8a_c00044{bottom:673.905000px;}
.y88_c00044{bottom:688.245000px;}
.y85_c00044{bottom:688.680000px;}
.y89_c00044{bottom:689.325000px;}
.y86_c00044{bottom:689.745000px;}
.y87_c00044{bottom:690.405000px;}
.y81_c00044{bottom:706.470000px;}
.y83_c00044{bottom:706.905000px;}
.y7f_c00044{bottom:707.745000px;}
.y84_c00044{bottom:708.630000px;}
.y82_c00044{bottom:709.470000px;}
.y7e_c00044{bottom:709.905000px;}
.y80_c00044{bottom:710.970000px;}
.y7d_c00044{bottom:711.180000px;}
.y79_c00044{bottom:725.970000px;}
.y77_c00044{bottom:726.405000px;}
.y7a_c00044{bottom:728.130000px;}
.y7c_c00044{bottom:728.325000px;}
.y7b_c00044{bottom:728.970000px;}
.y78_c00044{bottom:729.405000px;}
.y76_c00044{bottom:730.905000px;}
.y75_c00044{bottom:732.825000px;}
.y72_c00044{bottom:746.745000px;}
.y74_c00044{bottom:747.825000px;}
.y71_c00044{bottom:748.905000px;}
.y73_c00044{bottom:749.130000px;}
.y70_c00044{bottom:749.325000px;}
.y6f_c00044{bottom:751.050000px;}
.y6b_c00044{bottom:766.245000px;}
.y6e_c00044{bottom:767.745000px;}
.y6c_c00044{bottom:768.405000px;}
.y6d_c00044{bottom:768.630000px;}
.y69_c00044{bottom:769.245000px;}
.y6a_c00044{bottom:769.905000px;}
.y68_c00044{bottom:771.825000px;}
.y66_c00044{bottom:786.825000px;}
.y67_c00044{bottom:787.245000px;}
.y65_c00044{bottom:787.905000px;}
.y64_c00044{bottom:788.325000px;}
.y63_c00044{bottom:789.180000px;}
.y61_c00044{bottom:806.325000px;}
.y62_c00044{bottom:806.745000px;}
.y5f_c00044{bottom:807.405000px;}
.y60_c00044{bottom:808.470000px;}
.y5e_c00044{bottom:808.905000px;}
.y5d_c00044{bottom:809.325000px;}
.y5c_c00044{bottom:810.825000px;}
.y5a_c00044{bottom:825.825000px;}
.y59_c00044{bottom:826.245000px;}
.y5b_c00044{bottom:827.130000px;}
.y58_c00044{bottom:828.405000px;}
.y57_c00044{bottom:829.905000px;}
.y56_c00044{bottom:830.325000px;}
.y54_c00044{bottom:845.745000px;}
.y52_c00044{bottom:847.050000px;}
.y53_c00044{bottom:847.470000px;}
.y51_c00044{bottom:847.905000px;}
.y55_c00044{bottom:848.130000px;}
.y4d_c00044{bottom:862.905000px;}
.y4f_c00044{bottom:864.405000px;}
.y4e_c00044{bottom:866.130000px;}
.y50_c00044{bottom:866.970000px;}
.y4c_c00044{bottom:867.405000px;}
.y49_c00044{bottom:884.745000px;}
.y48_c00044{bottom:886.245000px;}
.y4a_c00044{bottom:886.905000px;}
.y4b_c00044{bottom:887.130000px;}
.y47_c00044{bottom:889.905000px;}
.y43_c00044{bottom:904.245000px;}
.y41_c00044{bottom:905.745000px;}
.y42_c00044{bottom:906.405000px;}
.y46_c00044{bottom:906.630000px;}
.y45_c00044{bottom:907.470000px;}
.y44_c00044{bottom:907.905000px;}
.y40_c00044{bottom:908.325000px;}
.y3e_c00044{bottom:924.825000px;}
.y3f_c00044{bottom:925.245000px;}
.y3a_c00044{bottom:925.680000px;}
.y3b_c00044{bottom:925.905000px;}
.y3c_c00044{bottom:926.970000px;}
.y3d_c00044{bottom:927.405000px;}
.y35_c00044{bottom:960.825000px;}
.y38_c00044{bottom:961.905000px;}
.y36_c00044{bottom:962.970000px;}
.y39_c00044{bottom:963.195000px;}
.y37_c00044{bottom:964.050000px;}
.y34_c00044{bottom:964.470000px;}
.y33_c00044{bottom:965.970000px;}
.y31_c00044{bottom:975.825000px;}
.y30_c00044{bottom:976.905000px;}
.y32_c00044{bottom:977.130000px;}
.y2d_c00044{bottom:977.325000px;}
.y2c_c00044{bottom:977.550000px;}
.y2e_c00044{bottom:977.970000px;}
.y2f_c00044{bottom:979.050000px;}
.y26_c00044{bottom:990.825000px;}
.y2a_c00044{bottom:991.470000px;}
.y29_c00044{bottom:991.905000px;}
.y28_c00044{bottom:992.970000px;}
.y27_c00044{bottom:993.195000px;}
.y2b_c00044{bottom:994.050000px;}
.y25_c00044{bottom:995.970000px;}
.y20_c00044{bottom:1005.405000px;}
.y1e_c00044{bottom:1005.825000px;}
.y23_c00044{bottom:1006.050000px;}
.y1f_c00044{bottom:1006.695000px;}
.y22_c00044{bottom:1006.905000px;}
.y1d_c00044{bottom:1007.550000px;}
.y21_c00044{bottom:1007.970000px;}
.y24_c00044{bottom:1009.050000px;}
.y1c_c00044{bottom:1019.325000px;}
.y19_c00044{bottom:1020.405000px;}
.y1b_c00044{bottom:1021.470000px;}
.y18_c00044{bottom:1022.130000px;}
.y1a_c00044{bottom:1022.550000px;}
.y17_c00044{bottom:1023.405000px;}
.y15_c00044{bottom:1034.325000px;}
.y13_c00044{bottom:1035.405000px;}
.y11_c00044{bottom:1035.825000px;}
.y12_c00044{bottom:1036.470000px;}
.y16_c00044{bottom:1036.695000px;}
.y14_c00044{bottom:1037.550000px;}
.y10_c00044{bottom:1039.695000px;}
.yf_c00044{bottom:1049.325000px;}
.ye_c00044{bottom:1051.050000px;}
.yd_c00044{bottom:1052.130000px;}
.yc_c00044{bottom:1052.550000px;}
.yb_c00044{bottom:1054.695000px;}
.y5_c00044{bottom:1064.325000px;}
.y8_c00044{bottom:1065.405000px;}
.y9_c00044{bottom:1065.630000px;}
.y6_c00044{bottom:1066.050000px;}
.y7_c00044{bottom:1066.470000px;}
.ya_c00044{bottom:1067.550000px;}
.y4_c00044{bottom:1067.970000px;}
.y3_c00044{bottom:1068.630000px;}
.y1_c00044{bottom:1099.905000px;}
.y2_c00044{bottom:1102.050000px;}
.hc_c00044{height:4.206533px;}
.h6_c00044{height:16.752334px;}
.h3_c00044{height:23.025234px;}
.h2_c00044{height:25.091602px;}
.h4_c00044{height:31.364502px;}
.h1_c00044{height:35.571035px;}
.h5_c00044{height:39.777568px;}
.h8_c00044{height:43.910303px;}
.h7_c00044{height:48.116836px;}
.h9_c00044{height:52.323369px;}
.ha_c00044{height:53.571035px;}
.hb_c00044{height:56.456104px;}
.h0_c00044{height:1335.000000px;}
.w0_c00044{width:880.500000px;}
.x0_c00044{left:0.000000px;}
.x34_c00044{left:153.000000px;}
.x11_c00044{left:154.500000px;}
.xf2_c00044{left:156.420000px;}
.x12_c00044{left:160.500000px;}
.x3_c00044{left:166.920000px;}
.x50_c00044{left:168.000000px;}
.xe3_c00044{left:169.500000px;}
.xc7_c00044{left:172.500000px;}
.x107_c00044{left:174.000000px;}
.x13_c00044{left:180.420000px;}
.x26_c00044{left:183.000000px;}
.x4_c00044{left:184.500000px;}
.x35_c00044{left:185.580000px;}
.xe4_c00044{left:187.920000px;}
.x43_c00044{left:189.000000px;}
.x21_c00044{left:192.000000px;}
.x14_c00044{left:195.000000px;}
.x76_c00044{left:198.420000px;}
.x98_c00044{left:199.500000px;}
.xd6_c00044{left:201.000000px;}
.xd0_c00044{left:204.420000px;}
.x108_c00044{left:206.580000px;}
.x8e_c00044{left:209.355000px;}
.x61_c00044{left:211.920000px;}
.x86_c00044{left:214.080000px;}
.x22_c00044{left:216.420000px;}
.xa2_c00044{left:217.500000px;}
.xff_c00044{left:219.000000px;}
.x59_c00044{left:220.500000px;}
.xb5_c00044{left:223.920000px;}
.x15_c00044{left:225.420000px;}
.xe7_c00044{left:228.000000px;}
.xcb_c00044{left:231.000000px;}
.x44_c00044{left:233.580000px;}
.x17_c00044{left:235.080000px;}
.x6a_c00044{left:237.420000px;}
.xef_c00044{left:238.500000px;}
.xf5_c00044{left:240.000000px;}
.x36_c00044{left:241.500000px;}
.xe5_c00044{left:243.420000px;}
.xfb_c00044{left:246.000000px;}
.xad_c00044{left:247.920000px;}
.x16_c00044{left:252.000000px;}
.x37_c00044{left:253.080000px;}
.x5_c00044{left:255.000000px;}
.x109_c00044{left:256.920000px;}
.xdb_c00044{left:258.000000px;}
.x23_c00044{left:259.500000px;}
.x77_c00044{left:260.580000px;}
.x45_c00044{left:262.920000px;}
.x27_c00044{left:265.500000px;}
.x99_c00044{left:267.000000px;}
.x8f_c00044{left:268.500000px;}
.xa3_c00044{left:273.000000px;}
.x18_c00044{left:274.080000px;}
.x100_c00044{left:275.580000px;}
.x104_c00044{left:277.920000px;}
.xdc_c00044{left:279.000000px;}
.x62_c00044{left:280.080000px;}
.xd7_c00044{left:283.920000px;}
.x28_c00044{left:285.000000px;}
.x24_c00044{left:289.080000px;}
.xc3_c00044{left:290.775000px;}
.xdd_c00044{left:292.500000px;}
.xd1_c00044{left:294.000000px;}
.x6b_c00044{left:298.080000px;}
.x3c_c00044{left:300.000000px;}
.x46_c00044{left:304.500000px;}
.x95_c00044{left:305.580000px;}
.x51_c00044{left:307.920000px;}
.x10a_c00044{left:309.000000px;}
.x6_c00044{left:310.500000px;}
.x5a_c00044{left:312.000000px;}
.x25_c00044{left:316.500000px;}
.x7c_c00044{left:319.500000px;}
.xa4_c00044{left:321.000000px;}
.x78_c00044{left:322.920000px;}
.x38_c00044{left:324.000000px;}
.x6c_c00044{left:328.500000px;}
.xc4_c00044{left:330.855000px;}
.x47_c00044{left:334.920000px;}
.x5b_c00044{left:336.420000px;}
.xa5_c00044{left:339.000000px;}
.x29_c00044{left:340.500000px;}
.x6d_c00044{left:342.420000px;}
.x52_c00044{left:343.500000px;}
.xbd_c00044{left:345.420000px;}
.xae_c00044{left:347.580000px;}
.xb8_c00044{left:349.920000px;}
.x19_c00044{left:351.000000px;}
.x39_c00044{left:352.920000px;}
.x7d_c00044{left:355.080000px;}
.x90_c00044{left:358.920000px;}
.x7_c00044{left:360.420000px;}
.x48_c00044{left:361.500000px;}
.x5c_c00044{left:363.420000px;}
.x79_c00044{left:364.500000px;}
.xde_c00044{left:366.420000px;}
.x63_c00044{left:367.500000px;}
.xf6_c00044{left:369.000000px;}
.x10f_c00044{left:370.500000px;}
.x2a_c00044{left:373.500000px;}
.x7e_c00044{left:375.420000px;}
.x6e_c00044{left:378.000000px;}
.xbe_c00044{left:382.920000px;}
.xb6_c00044{left:384.000000px;}
.x87_c00044{left:385.500000px;}
.x9a_c00044{left:387.000000px;}
.xd2_c00044{left:388.500000px;}
.x1a_c00044{left:390.420000px;}
.x8_c00044{left:391.920000px;}
.x101_c00044{left:393.000000px;}
.xa6_c00044{left:394.500000px;}
.x2_c00044{left:396.000000px;}
.x10b_c00044{left:397.500000px;}
.xcc_c00044{left:398.580000px;}
.xb9_c00044{left:402.420000px;}
.x7f_c00044{left:403.500000px;}
.x49_c00044{left:405.000000px;}
.x64_c00044{left:406.500000px;}
.x1b_c00044{left:407.580000px;}
.x53_c00044{left:411.420000px;}
.x3d_c00044{left:412.500000px;}
.xeb_c00044{left:414.000000px;}
.x4a_c00044{left:415.920000px;}
.xf7_c00044{left:417.420000px;}
.xaf_c00044{left:418.500000px;}
.xe8_c00044{left:419.580000px;}
.x9_c00044{left:421.080000px;}
.x6f_c00044{left:424.080000px;}
.x3a_c00044{left:426.420000px;}
.xd8_c00044{left:429.420000px;}
.x5d_c00044{left:430.920000px;}
.xa7_c00044{left:432.420000px;}
.x65_c00044{left:433.500000px;}
.xa_c00044{left:439.500000px;}
.xb0_c00044{left:440.580000px;}
.x9b_c00044{left:444.420000px;}
.x80_c00044{left:445.500000px;}
.x1c_c00044{left:447.000000px;}
.xfc_c00044{left:448.920000px;}
.x2b_c00044{left:450.000000px;}
.x3b_c00044{left:453.000000px;}
.xce_c00044{left:454.500000px;}
.x3e_c00044{left:458.580000px;}
.xb1_c00044{left:460.500000px;}
.xbf_c00044{left:462.000000px;}
.x2c_c00044{left:468.000000px;}
.x110_c00044{left:469.500000px;}
.x9c_c00044{left:471.000000px;}
.xa8_c00044{left:472.500000px;}
.xdf_c00044{left:475.920000px;}
.x3f_c00044{left:478.920000px;}
.xf3_c00044{left:480.420000px;}
.x70_c00044{left:481.920000px;}
.xc5_c00044{left:483.000000px;}
.xfd_c00044{left:484.920000px;}
.x54_c00044{left:486.000000px;}
.xec_c00044{left:487.080000px;}
.x88_c00044{left:489.420000px;}
.xf8_c00044{left:490.920000px;}
.xcf_c00044{left:493.920000px;}
.xb_c00044{left:496.500000px;}
.xb2_c00044{left:498.000000px;}
.x5e_c00044{left:499.920000px;}
.x10c_c00044{left:501.000000px;}
.x4b_c00044{left:502.080000px;}
.x91_c00044{left:505.500000px;}
.x66_c00044{left:507.420000px;}
.x9d_c00044{left:510.000000px;}
.xd3_c00044{left:513.000000px;}
.xe6_c00044{left:514.920000px;}
.x89_c00044{left:516.420000px;}
.x71_c00044{left:518.580000px;}
.x2d_c00044{left:522.420000px;}
.xc8_c00044{left:523.920000px;}
.x55_c00044{left:526.500000px;}
.x105_c00044{left:529.080000px;}
.x4c_c00044{left:531.420000px;}
.xfe_c00044{left:532.500000px;}
.x96_c00044{left:535.920000px;}
.x81_c00044{left:537.420000px;}
.x2e_c00044{left:538.920000px;}
.xed_c00044{left:540.000000px;}
.x7a_c00044{left:541.920000px;}
.x56_c00044{left:543.420000px;}
.x92_c00044{left:546.000000px;}
.xd9_c00044{left:547.080000px;}
.xc_c00044{left:548.580000px;}
.xe0_c00044{left:551.580000px;}
.xc0_c00044{left:555.000000px;}
.xf9_c00044{left:556.080000px;}
.x10d_c00044{left:558.000000px;}
.xc6_c00044{left:561.000000px;}
.x67_c00044{left:562.500000px;}
.x72_c00044{left:563.580000px;}
.x82_c00044{left:565.920000px;}
.x1d_c00044{left:567.000000px;}
.xc1_c00044{left:568.500000px;}
.x8a_c00044{left:570.000000px;}
.x111_c00044{left:571.920000px;}
.x9e_c00044{left:573.420000px;}
.x4d_c00044{left:574.500000px;}
.xb7_c00044{left:576.000000px;}
.x5f_c00044{left:577.080000px;}
.x2f_c00044{left:579.420000px;}
.x73_c00044{left:580.920000px;}
.xb3_c00044{left:585.000000px;}
.x97_c00044{left:589.500000px;}
.xa9_c00044{left:592.500000px;}
.x40_c00044{left:594.000000px;}
.x30_c00044{left:596.580000px;}
.xe1_c00044{left:598.500000px;}
.x83_c00044{left:600.000000px;}
.x57_c00044{left:601.920000px;}
.x4e_c00044{left:604.080000px;}
.x8b_c00044{left:605.580000px;}
.xd_c00044{left:607.080000px;}
.xc2_c00044{left:609.000000px;}
.xfa_c00044{left:610.080000px;}
.xba_c00044{left:612.420000px;}
.xaa_c00044{left:615.000000px;}
.xf0_c00044{left:616.500000px;}
.xe_c00044{left:619.920000px;}
.x31_c00044{left:621.000000px;}
.x102_c00044{left:622.500000px;}
.x1e_c00044{left:623.580000px;}
.x68_c00044{left:625.500000px;}
.x84_c00044{left:627.420000px;}
.x9f_c00044{left:628.500000px;}
.x4f_c00044{left:631.500000px;}
.x10e_c00044{left:632.580000px;}
.x1f_c00044{left:634.920000px;}
.xab_c00044{left:636.420000px;}
.x32_c00044{left:637.920000px;}
.x69_c00044{left:639.420000px;}
.x103_c00044{left:640.500000px;}
.x74_c00044{left:642.000000px;}
.xe2_c00044{left:643.920000px;}
.x93_c00044{left:646.920000px;}
.xe9_c00044{left:649.500000px;}
.x8c_c00044{left:651.000000px;}
.xc9_c00044{left:652.080000px;}
.x33_c00044{left:654.000000px;}
.xd4_c00044{left:655.920000px;}
.xf_c00044{left:658.500000px;}
.x75_c00044{left:661.920000px;}
.xac_c00044{left:663.000000px;}
.x41_c00044{left:664.080000px;}
.x7b_c00044{left:666.420000px;}
.xee_c00044{left:668.580000px;}
.xcd_c00044{left:670.500000px;}
.xf1_c00044{left:672.000000px;}
.xbb_c00044{left:673.500000px;}
.xa0_c00044{left:681.420000px;}
.xb4_c00044{left:682.500000px;}
.xca_c00044{left:684.000000px;}
.xf4_c00044{left:686.580000px;}
.x20_c00044{left:688.500000px;}
.x8d_c00044{left:690.000000px;}
.x60_c00044{left:691.500000px;}
.xda_c00044{left:694.500000px;}
.x85_c00044{left:695.580000px;}
.x58_c00044{left:697.500000px;}
.xd5_c00044{left:698.580000px;}
.xa1_c00044{left:700.920000px;}
.x94_c00044{left:703.080000px;}
.x10_c00044{left:706.500000px;}
.xea_c00044{left:708.420000px;}
.x1_c00044{left:714.420000px;}
.x106_c00044{left:717.000000px;}
.xbc_c00044{left:721.500000px;}
.x42_c00044{left:723.420000px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.v1_c00044{vertical-align:16.000000pt;}
.ls0_c00044{letter-spacing:0.000000pt;}
.ws0_c00044{word-spacing:-6.211569pt;}
.ws1_c00044{word-spacing:0.000000pt;}
.fsa_c00044{font-size:3.040000pt;}
.fs5_c00044{font-size:12.106667pt;}
.fs2_c00044{font-size:16.640000pt;}
.fs1_c00044{font-size:18.133333pt;}
.fs3_c00044{font-size:22.666667pt;}
.fs0_c00044{font-size:25.706667pt;}
.fs4_c00044{font-size:28.746667pt;}
.fs7_c00044{font-size:31.733333pt;}
.fs6_c00044{font-size:34.773333pt;}
.fs8_c00044{font-size:37.813333pt;}
.fs9_c00044{font-size:40.800000pt;}
.y0_c00044{bottom:0.000000pt;}
.y112_c00044{bottom:225.693333pt;}
.y110_c00044{bottom:226.440000pt;}
.y10e_c00044{bottom:227.973333pt;}
.y10f_c00044{bottom:228.360000pt;}
.y111_c00044{bottom:229.306667pt;}
.y10d_c00044{bottom:229.693333pt;}
.y10b_c00044{bottom:231.026667pt;}
.y10c_c00044{bottom:231.973333pt;}
.y107_c00044{bottom:243.773333pt;}
.y105_c00044{bottom:244.560000pt;}
.y106_c00044{bottom:245.693333pt;}
.y104_c00044{bottom:245.893333pt;}
.y109_c00044{bottom:246.066667pt;}
.y103_c00044{bottom:246.440000pt;}
.y108_c00044{bottom:246.640000pt;}
.y10a_c00044{bottom:247.026667pt;}
.y102_c00044{bottom:247.600000pt;}
.y101_c00044{bottom:248.360000pt;}
.y100_c00044{bottom:262.640000pt;}
.yfd_c00044{bottom:263.026667pt;}
.yfc_c00044{bottom:263.400000pt;}
.yfe_c00044{bottom:263.973333pt;}
.yff_c00044{bottom:264.360000pt;}
.yfb_c00044{bottom:265.693333pt;}
.yfa_c00044{bottom:267.400000pt;}
.yf4_c00044{bottom:277.493333pt;}
.yf5_c00044{bottom:278.440000pt;}
.yf9_c00044{bottom:279.773333pt;}
.yf6_c00044{bottom:279.973333pt;}
.yf3_c00044{bottom:280.360000pt;}
.yf7_c00044{bottom:281.306667pt;}
.yf8_c00044{bottom:281.693333pt;}
.yf2_c00044{bottom:283.026667pt;}
.yf1_c00044{bottom:284.733333pt;}
.yee_c00044{bottom:295.773333pt;}
.yef_c00044{bottom:295.973333pt;}
.yec_c00044{bottom:297.306667pt;}
.yed_c00044{bottom:297.693333pt;}
.yf0_c00044{bottom:297.893333pt;}
.yeb_c00044{bottom:299.026667pt;}
.yea_c00044{bottom:300.360000pt;}
.ye8_c00044{bottom:313.106667pt;}
.ye7_c00044{bottom:315.026667pt;}
.ye9_c00044{bottom:315.973333pt;}
.ye6_c00044{bottom:316.360000pt;}
.ye5_c00044{bottom:318.440000pt;}
.ye4_c00044{bottom:337.106667pt;}
.ye1_c00044{bottom:347.773333pt;}
.ydf_c00044{bottom:348.733333pt;}
.yde_c00044{bottom:349.493333pt;}
.ye0_c00044{bottom:349.693333pt;}
.ye2_c00044{bottom:350.640000pt;}
.ye3_c00044{bottom:351.026667pt;}
.ydd_c00044{bottom:354.440000pt;}
.ydb_c00044{bottom:365.106667pt;}
.yda_c00044{bottom:367.026667pt;}
.ydc_c00044{bottom:367.226667pt;}
.yd9_c00044{bottom:368.360000pt;}
.yd8_c00044{bottom:368.373333pt;}
.yd7_c00044{bottom:370.440000pt;}
.yd5_c00044{bottom:382.440000pt;}
.yd3_c00044{bottom:383.773333pt;}
.yd4_c00044{bottom:384.360000pt;}
.yd6_c00044{bottom:384.560000pt;}
.yd2_c00044{bottom:385.693333pt;}
.yd0_c00044{bottom:386.826667pt;}
.yd1_c00044{bottom:387.973333pt;}
.ycc_c00044{bottom:401.106667pt;}
.ycf_c00044{bottom:401.893333pt;}
.ycd_c00044{bottom:402.640000pt;}
.yce_c00044{bottom:403.026667pt;}
.ycb_c00044{bottom:403.226667pt;}
.yca_c00044{bottom:404.360000pt;}
.yc7_c00044{bottom:419.026667pt;}
.yc9_c00044{bottom:419.973333pt;}
.yc8_c00044{bottom:420.360000pt;}
.yc6_c00044{bottom:422.066667pt;}
.yc5_c00044{bottom:424.360000pt;}
.yc3_c00044{bottom:435.026667pt;}
.yc2_c00044{bottom:437.693333pt;}
.yc4_c00044{bottom:437.893333pt;}
.yc1_c00044{bottom:439.026667pt;}
.yc0_c00044{bottom:439.400000pt;}
.ybe_c00044{bottom:452.360000pt;}
.ybf_c00044{bottom:453.106667pt;}
.ybd_c00044{bottom:455.026667pt;}
.ybc_c00044{bottom:455.400000pt;}
.ybb_c00044{bottom:459.400000pt;}
.yba_c00044{bottom:470.440000pt;}
.yb9_c00044{bottom:471.400000pt;}
.yb5_c00044{bottom:472.160000pt;}
.yb7_c00044{bottom:472.360000pt;}
.yb8_c00044{bottom:472.560000pt;}
.yb6_c00044{bottom:473.893333pt;}
.yb4_c00044{bottom:475.773333pt;}
.yb3_c00044{bottom:489.106667pt;}
.yb2_c00044{bottom:489.893333pt;}
.yb1_c00044{bottom:491.026667pt;}
.yb0_c00044{bottom:492.360000pt;}
.yaf_c00044{bottom:493.306667pt;}
.yae_c00044{bottom:493.693333pt;}
.yab_c00044{bottom:506.440000pt;}
.yac_c00044{bottom:507.226667pt;}
.yad_c00044{bottom:507.973333pt;}
.yaa_c00044{bottom:508.360000pt;}
.ya9_c00044{bottom:511.026667pt;}
.ya6_c00044{bottom:523.773333pt;}
.ya8_c00044{bottom:524.560000pt;}
.ya7_c00044{bottom:525.693333pt;}
.ya5_c00044{bottom:526.826667pt;}
.ya3_c00044{bottom:540.360000pt;}
.ya1_c00044{bottom:541.106667pt;}
.ya4_c00044{bottom:543.026667pt;}
.ya2_c00044{bottom:543.973333pt;}
.ya0_c00044{bottom:544.360000pt;}
.y9f_c00044{bottom:544.733333pt;}
.y9e_c00044{bottom:547.226667pt;}
.y97_c00044{bottom:557.493333pt;}
.y9a_c00044{bottom:558.440000pt;}
.y96_c00044{bottom:559.200000pt;}
.y99_c00044{bottom:559.400000pt;}
.y9c_c00044{bottom:559.773333pt;}
.y98_c00044{bottom:560.360000pt;}
.y9b_c00044{bottom:560.560000pt;}
.y9d_c00044{bottom:561.693333pt;}
.y95_c00044{bottom:563.400000pt;}
.y91_c00044{bottom:575.026667pt;}
.y92_c00044{bottom:577.693333pt;}
.y94_c00044{bottom:577.893333pt;}
.y93_c00044{bottom:579.026667pt;}
.y90_c00044{bottom:579.400000pt;}
.y8f_c00044{bottom:580.933333pt;}
.y8e_c00044{bottom:594.440000pt;}
.y8d_c00044{bottom:595.226667pt;}
.y8c_c00044{bottom:596.360000pt;}
.y8b_c00044{bottom:596.733333pt;}
.y8a_c00044{bottom:599.026667pt;}
.y88_c00044{bottom:611.773333pt;}
.y85_c00044{bottom:612.160000pt;}
.y89_c00044{bottom:612.733333pt;}
.y86_c00044{bottom:613.106667pt;}
.y87_c00044{bottom:613.693333pt;}
.y81_c00044{bottom:627.973333pt;}
.y83_c00044{bottom:628.360000pt;}
.y7f_c00044{bottom:629.106667pt;}
.y84_c00044{bottom:629.893333pt;}
.y82_c00044{bottom:630.640000pt;}
.y7e_c00044{bottom:631.026667pt;}
.y80_c00044{bottom:631.973333pt;}
.y7d_c00044{bottom:632.160000pt;}
.y79_c00044{bottom:645.306667pt;}
.y77_c00044{bottom:645.693333pt;}
.y7a_c00044{bottom:647.226667pt;}
.y7c_c00044{bottom:647.400000pt;}
.y7b_c00044{bottom:647.973333pt;}
.y78_c00044{bottom:648.360000pt;}
.y76_c00044{bottom:649.693333pt;}
.y75_c00044{bottom:651.400000pt;}
.y72_c00044{bottom:663.773333pt;}
.y74_c00044{bottom:664.733333pt;}
.y71_c00044{bottom:665.693333pt;}
.y73_c00044{bottom:665.893333pt;}
.y70_c00044{bottom:666.066667pt;}
.y6f_c00044{bottom:667.600000pt;}
.y6b_c00044{bottom:681.106667pt;}
.y6e_c00044{bottom:682.440000pt;}
.y6c_c00044{bottom:683.026667pt;}
.y6d_c00044{bottom:683.226667pt;}
.y69_c00044{bottom:683.773333pt;}
.y6a_c00044{bottom:684.360000pt;}
.y68_c00044{bottom:686.066667pt;}
.y66_c00044{bottom:699.400000pt;}
.y67_c00044{bottom:699.773333pt;}
.y65_c00044{bottom:700.360000pt;}
.y64_c00044{bottom:700.733333pt;}
.y63_c00044{bottom:701.493333pt;}
.y61_c00044{bottom:716.733333pt;}
.y62_c00044{bottom:717.106667pt;}
.y5f_c00044{bottom:717.693333pt;}
.y60_c00044{bottom:718.640000pt;}
.y5e_c00044{bottom:719.026667pt;}
.y5d_c00044{bottom:719.400000pt;}
.y5c_c00044{bottom:720.733333pt;}
.y5a_c00044{bottom:734.066667pt;}
.y59_c00044{bottom:734.440000pt;}
.y5b_c00044{bottom:735.226667pt;}
.y58_c00044{bottom:736.360000pt;}
.y57_c00044{bottom:737.693333pt;}
.y56_c00044{bottom:738.066667pt;}
.y54_c00044{bottom:751.773333pt;}
.y52_c00044{bottom:752.933333pt;}
.y53_c00044{bottom:753.306667pt;}
.y51_c00044{bottom:753.693333pt;}
.y55_c00044{bottom:753.893333pt;}
.y4d_c00044{bottom:767.026667pt;}
.y4f_c00044{bottom:768.360000pt;}
.y4e_c00044{bottom:769.893333pt;}
.y50_c00044{bottom:770.640000pt;}
.y4c_c00044{bottom:771.026667pt;}
.y49_c00044{bottom:786.440000pt;}
.y48_c00044{bottom:787.773333pt;}
.y4a_c00044{bottom:788.360000pt;}
.y4b_c00044{bottom:788.560000pt;}
.y47_c00044{bottom:791.026667pt;}
.y43_c00044{bottom:803.773333pt;}
.y41_c00044{bottom:805.106667pt;}
.y42_c00044{bottom:805.693333pt;}
.y46_c00044{bottom:805.893333pt;}
.y45_c00044{bottom:806.640000pt;}
.y44_c00044{bottom:807.026667pt;}
.y40_c00044{bottom:807.400000pt;}
.y3e_c00044{bottom:822.066667pt;}
.y3f_c00044{bottom:822.440000pt;}
.y3a_c00044{bottom:822.826667pt;}
.y3b_c00044{bottom:823.026667pt;}
.y3c_c00044{bottom:823.973333pt;}
.y3d_c00044{bottom:824.360000pt;}
.y35_c00044{bottom:854.066667pt;}
.y38_c00044{bottom:855.026667pt;}
.y36_c00044{bottom:855.973333pt;}
.y39_c00044{bottom:856.173333pt;}
.y37_c00044{bottom:856.933333pt;}
.y34_c00044{bottom:857.306667pt;}
.y33_c00044{bottom:858.640000pt;}
.y31_c00044{bottom:867.400000pt;}
.y30_c00044{bottom:868.360000pt;}
.y32_c00044{bottom:868.560000pt;}
.y2d_c00044{bottom:868.733333pt;}
.y2c_c00044{bottom:868.933333pt;}
.y2e_c00044{bottom:869.306667pt;}
.y2f_c00044{bottom:870.266667pt;}
.y26_c00044{bottom:880.733333pt;}
.y2a_c00044{bottom:881.306667pt;}
.y29_c00044{bottom:881.693333pt;}
.y28_c00044{bottom:882.640000pt;}
.y27_c00044{bottom:882.840000pt;}
.y2b_c00044{bottom:883.600000pt;}
.y25_c00044{bottom:885.306667pt;}
.y20_c00044{bottom:893.693333pt;}
.y1e_c00044{bottom:894.066667pt;}
.y23_c00044{bottom:894.266667pt;}
.y1f_c00044{bottom:894.840000pt;}
.y22_c00044{bottom:895.026667pt;}
.y1d_c00044{bottom:895.600000pt;}
.y21_c00044{bottom:895.973333pt;}
.y24_c00044{bottom:896.933333pt;}
.y1c_c00044{bottom:906.066667pt;}
.y19_c00044{bottom:907.026667pt;}
.y1b_c00044{bottom:907.973333pt;}
.y18_c00044{bottom:908.560000pt;}
.y1a_c00044{bottom:908.933333pt;}
.y17_c00044{bottom:909.693333pt;}
.y15_c00044{bottom:919.400000pt;}
.y13_c00044{bottom:920.360000pt;}
.y11_c00044{bottom:920.733333pt;}
.y12_c00044{bottom:921.306667pt;}
.y16_c00044{bottom:921.506667pt;}
.y14_c00044{bottom:922.266667pt;}
.y10_c00044{bottom:924.173333pt;}
.yf_c00044{bottom:932.733333pt;}
.ye_c00044{bottom:934.266667pt;}
.yd_c00044{bottom:935.226667pt;}
.yc_c00044{bottom:935.600000pt;}
.yb_c00044{bottom:937.506667pt;}
.y5_c00044{bottom:946.066667pt;}
.y8_c00044{bottom:947.026667pt;}
.y9_c00044{bottom:947.226667pt;}
.y6_c00044{bottom:947.600000pt;}
.y7_c00044{bottom:947.973333pt;}
.ya_c00044{bottom:948.933333pt;}
.y4_c00044{bottom:949.306667pt;}
.y3_c00044{bottom:949.893333pt;}
.y1_c00044{bottom:977.693333pt;}
.y2_c00044{bottom:979.600000pt;}
.hc_c00044{height:3.739141pt;}
.h6_c00044{height:14.890964pt;}
.h3_c00044{height:20.466875pt;}
.h2_c00044{height:22.303646pt;}
.h4_c00044{height:27.879557pt;}
.h1_c00044{height:31.618698pt;}
.h5_c00044{height:35.357839pt;}
.h8_c00044{height:39.031380pt;}
.h7_c00044{height:42.770521pt;}
.h9_c00044{height:46.509661pt;}
.ha_c00044{height:47.618698pt;}
.hb_c00044{height:50.183203pt;}
.h0_c00044{height:1186.666667pt;}
.w0_c00044{width:782.666667pt;}
.x0_c00044{left:0.000000pt;}
.x34_c00044{left:136.000000pt;}
.x11_c00044{left:137.333333pt;}
.xf2_c00044{left:139.040000pt;}
.x12_c00044{left:142.666667pt;}
.x3_c00044{left:148.373333pt;}
.x50_c00044{left:149.333333pt;}
.xe3_c00044{left:150.666667pt;}
.xc7_c00044{left:153.333333pt;}
.x107_c00044{left:154.666667pt;}
.x13_c00044{left:160.373333pt;}
.x26_c00044{left:162.666667pt;}
.x4_c00044{left:164.000000pt;}
.x35_c00044{left:164.960000pt;}
.xe4_c00044{left:167.040000pt;}
.x43_c00044{left:168.000000pt;}
.x21_c00044{left:170.666667pt;}
.x14_c00044{left:173.333333pt;}
.x76_c00044{left:176.373333pt;}
.x98_c00044{left:177.333333pt;}
.xd6_c00044{left:178.666667pt;}
.xd0_c00044{left:181.706667pt;}
.x108_c00044{left:183.626667pt;}
.x8e_c00044{left:186.093333pt;}
.x61_c00044{left:188.373333pt;}
.x86_c00044{left:190.293333pt;}
.x22_c00044{left:192.373333pt;}
.xa2_c00044{left:193.333333pt;}
.xff_c00044{left:194.666667pt;}
.x59_c00044{left:196.000000pt;}
.xb5_c00044{left:199.040000pt;}
.x15_c00044{left:200.373333pt;}
.xe7_c00044{left:202.666667pt;}
.xcb_c00044{left:205.333333pt;}
.x44_c00044{left:207.626667pt;}
.x17_c00044{left:208.960000pt;}
.x6a_c00044{left:211.040000pt;}
.xef_c00044{left:212.000000pt;}
.xf5_c00044{left:213.333333pt;}
.x36_c00044{left:214.666667pt;}
.xe5_c00044{left:216.373333pt;}
.xfb_c00044{left:218.666667pt;}
.xad_c00044{left:220.373333pt;}
.x16_c00044{left:224.000000pt;}
.x37_c00044{left:224.960000pt;}
.x5_c00044{left:226.666667pt;}
.x109_c00044{left:228.373333pt;}
.xdb_c00044{left:229.333333pt;}
.x23_c00044{left:230.666667pt;}
.x77_c00044{left:231.626667pt;}
.x45_c00044{left:233.706667pt;}
.x27_c00044{left:236.000000pt;}
.x99_c00044{left:237.333333pt;}
.x8f_c00044{left:238.666667pt;}
.xa3_c00044{left:242.666667pt;}
.x18_c00044{left:243.626667pt;}
.x100_c00044{left:244.960000pt;}
.x104_c00044{left:247.040000pt;}
.xdc_c00044{left:248.000000pt;}
.x62_c00044{left:248.960000pt;}
.xd7_c00044{left:252.373333pt;}
.x28_c00044{left:253.333333pt;}
.x24_c00044{left:256.960000pt;}
.xc3_c00044{left:258.466667pt;}
.xdd_c00044{left:260.000000pt;}
.xd1_c00044{left:261.333333pt;}
.x6b_c00044{left:264.960000pt;}
.x3c_c00044{left:266.666667pt;}
.x46_c00044{left:270.666667pt;}
.x95_c00044{left:271.626667pt;}
.x51_c00044{left:273.706667pt;}
.x10a_c00044{left:274.666667pt;}
.x6_c00044{left:276.000000pt;}
.x5a_c00044{left:277.333333pt;}
.x25_c00044{left:281.333333pt;}
.x7c_c00044{left:284.000000pt;}
.xa4_c00044{left:285.333333pt;}
.x78_c00044{left:287.040000pt;}
.x38_c00044{left:288.000000pt;}
.x6c_c00044{left:292.000000pt;}
.xc4_c00044{left:294.093333pt;}
.x47_c00044{left:297.706667pt;}
.x5b_c00044{left:299.040000pt;}
.xa5_c00044{left:301.333333pt;}
.x29_c00044{left:302.666667pt;}
.x6d_c00044{left:304.373333pt;}
.x52_c00044{left:305.333333pt;}
.xbd_c00044{left:307.040000pt;}
.xae_c00044{left:308.960000pt;}
.xb8_c00044{left:311.040000pt;}
.x19_c00044{left:312.000000pt;}
.x39_c00044{left:313.706667pt;}
.x7d_c00044{left:315.626667pt;}
.x90_c00044{left:319.040000pt;}
.x7_c00044{left:320.373333pt;}
.x48_c00044{left:321.333333pt;}
.x5c_c00044{left:323.040000pt;}
.x79_c00044{left:324.000000pt;}
.xde_c00044{left:325.706667pt;}
.x63_c00044{left:326.666667pt;}
.xf6_c00044{left:328.000000pt;}
.x10f_c00044{left:329.333333pt;}
.x2a_c00044{left:332.000000pt;}
.x7e_c00044{left:333.706667pt;}
.x6e_c00044{left:336.000000pt;}
.xbe_c00044{left:340.373333pt;}
.xb6_c00044{left:341.333333pt;}
.x87_c00044{left:342.666667pt;}
.x9a_c00044{left:344.000000pt;}
.xd2_c00044{left:345.333333pt;}
.x1a_c00044{left:347.040000pt;}
.x8_c00044{left:348.373333pt;}
.x101_c00044{left:349.333333pt;}
.xa6_c00044{left:350.666667pt;}
.x2_c00044{left:352.000000pt;}
.x10b_c00044{left:353.333333pt;}
.xcc_c00044{left:354.293333pt;}
.xb9_c00044{left:357.706667pt;}
.x7f_c00044{left:358.666667pt;}
.x49_c00044{left:360.000000pt;}
.x64_c00044{left:361.333333pt;}
.x1b_c00044{left:362.293333pt;}
.x53_c00044{left:365.706667pt;}
.x3d_c00044{left:366.666667pt;}
.xeb_c00044{left:368.000000pt;}
.x4a_c00044{left:369.706667pt;}
.xf7_c00044{left:371.040000pt;}
.xaf_c00044{left:372.000000pt;}
.xe8_c00044{left:372.960000pt;}
.x9_c00044{left:374.293333pt;}
.x6f_c00044{left:376.960000pt;}
.x3a_c00044{left:379.040000pt;}
.xd8_c00044{left:381.706667pt;}
.x5d_c00044{left:383.040000pt;}
.xa7_c00044{left:384.373333pt;}
.x65_c00044{left:385.333333pt;}
.xa_c00044{left:390.666667pt;}
.xb0_c00044{left:391.626667pt;}
.x9b_c00044{left:395.040000pt;}
.x80_c00044{left:396.000000pt;}
.x1c_c00044{left:397.333333pt;}
.xfc_c00044{left:399.040000pt;}
.x2b_c00044{left:400.000000pt;}
.x3b_c00044{left:402.666667pt;}
.xce_c00044{left:404.000000pt;}
.x3e_c00044{left:407.626667pt;}
.xb1_c00044{left:409.333333pt;}
.xbf_c00044{left:410.666667pt;}
.x2c_c00044{left:416.000000pt;}
.x110_c00044{left:417.333333pt;}
.x9c_c00044{left:418.666667pt;}
.xa8_c00044{left:420.000000pt;}
.xdf_c00044{left:423.040000pt;}
.x3f_c00044{left:425.706667pt;}
.xf3_c00044{left:427.040000pt;}
.x70_c00044{left:428.373333pt;}
.xc5_c00044{left:429.333333pt;}
.xfd_c00044{left:431.040000pt;}
.x54_c00044{left:432.000000pt;}
.xec_c00044{left:432.960000pt;}
.x88_c00044{left:435.040000pt;}
.xf8_c00044{left:436.373333pt;}
.xcf_c00044{left:439.040000pt;}
.xb_c00044{left:441.333333pt;}
.xb2_c00044{left:442.666667pt;}
.x5e_c00044{left:444.373333pt;}
.x10c_c00044{left:445.333333pt;}
.x4b_c00044{left:446.293333pt;}
.x91_c00044{left:449.333333pt;}
.x66_c00044{left:451.040000pt;}
.x9d_c00044{left:453.333333pt;}
.xd3_c00044{left:456.000000pt;}
.xe6_c00044{left:457.706667pt;}
.x89_c00044{left:459.040000pt;}
.x71_c00044{left:460.960000pt;}
.x2d_c00044{left:464.373333pt;}
.xc8_c00044{left:465.706667pt;}
.x55_c00044{left:468.000000pt;}
.x105_c00044{left:470.293333pt;}
.x4c_c00044{left:472.373333pt;}
.xfe_c00044{left:473.333333pt;}
.x96_c00044{left:476.373333pt;}
.x81_c00044{left:477.706667pt;}
.x2e_c00044{left:479.040000pt;}
.xed_c00044{left:480.000000pt;}
.x7a_c00044{left:481.706667pt;}
.x56_c00044{left:483.040000pt;}
.x92_c00044{left:485.333333pt;}
.xd9_c00044{left:486.293333pt;}
.xc_c00044{left:487.626667pt;}
.xe0_c00044{left:490.293333pt;}
.xc0_c00044{left:493.333333pt;}
.xf9_c00044{left:494.293333pt;}
.x10d_c00044{left:496.000000pt;}
.xc6_c00044{left:498.666667pt;}
.x67_c00044{left:500.000000pt;}
.x72_c00044{left:500.960000pt;}
.x82_c00044{left:503.040000pt;}
.x1d_c00044{left:504.000000pt;}
.xc1_c00044{left:505.333333pt;}
.x8a_c00044{left:506.666667pt;}
.x111_c00044{left:508.373333pt;}
.x9e_c00044{left:509.706667pt;}
.x4d_c00044{left:510.666667pt;}
.xb7_c00044{left:512.000000pt;}
.x5f_c00044{left:512.960000pt;}
.x2f_c00044{left:515.040000pt;}
.x73_c00044{left:516.373333pt;}
.xb3_c00044{left:520.000000pt;}
.x97_c00044{left:524.000000pt;}
.xa9_c00044{left:526.666667pt;}
.x40_c00044{left:528.000000pt;}
.x30_c00044{left:530.293333pt;}
.xe1_c00044{left:532.000000pt;}
.x83_c00044{left:533.333333pt;}
.x57_c00044{left:535.040000pt;}
.x4e_c00044{left:536.960000pt;}
.x8b_c00044{left:538.293333pt;}
.xd_c00044{left:539.626667pt;}
.xc2_c00044{left:541.333333pt;}
.xfa_c00044{left:542.293333pt;}
.xba_c00044{left:544.373333pt;}
.xaa_c00044{left:546.666667pt;}
.xf0_c00044{left:548.000000pt;}
.xe_c00044{left:551.040000pt;}
.x31_c00044{left:552.000000pt;}
.x102_c00044{left:553.333333pt;}
.x1e_c00044{left:554.293333pt;}
.x68_c00044{left:556.000000pt;}
.x84_c00044{left:557.706667pt;}
.x9f_c00044{left:558.666667pt;}
.x4f_c00044{left:561.333333pt;}
.x10e_c00044{left:562.293333pt;}
.x1f_c00044{left:564.373333pt;}
.xab_c00044{left:565.706667pt;}
.x32_c00044{left:567.040000pt;}
.x69_c00044{left:568.373333pt;}
.x103_c00044{left:569.333333pt;}
.x74_c00044{left:570.666667pt;}
.xe2_c00044{left:572.373333pt;}
.x93_c00044{left:575.040000pt;}
.xe9_c00044{left:577.333333pt;}
.x8c_c00044{left:578.666667pt;}
.xc9_c00044{left:579.626667pt;}
.x33_c00044{left:581.333333pt;}
.xd4_c00044{left:583.040000pt;}
.xf_c00044{left:585.333333pt;}
.x75_c00044{left:588.373333pt;}
.xac_c00044{left:589.333333pt;}
.x41_c00044{left:590.293333pt;}
.x7b_c00044{left:592.373333pt;}
.xee_c00044{left:594.293333pt;}
.xcd_c00044{left:596.000000pt;}
.xf1_c00044{left:597.333333pt;}
.xbb_c00044{left:598.666667pt;}
.xa0_c00044{left:605.706667pt;}
.xb4_c00044{left:606.666667pt;}
.xca_c00044{left:608.000000pt;}
.xf4_c00044{left:610.293333pt;}
.x20_c00044{left:612.000000pt;}
.x8d_c00044{left:613.333333pt;}
.x60_c00044{left:614.666667pt;}
.xda_c00044{left:617.333333pt;}
.x85_c00044{left:618.293333pt;}
.x58_c00044{left:620.000000pt;}
.xd5_c00044{left:620.960000pt;}
.xa1_c00044{left:623.040000pt;}
.x94_c00044{left:624.960000pt;}
.x10_c00044{left:628.000000pt;}
.xea_c00044{left:629.706667pt;}
.x1_c00044{left:635.040000pt;}
.x106_c00044{left:637.333333pt;}
.xbc_c00044{left:641.333333pt;}
.x42_c00044{left:643.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_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_bf5a8817ea608539a83761fc.woff2')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mdd_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);}
.me7_c00045{transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);}
.m9c_c00045{transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);}
.me6_c00045{transform:matrix(0.346324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346324,0.000000,0.000000,0.250000,0,0);}
.m45_c00045{transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);}
.m53_c00045{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m36_c00045{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m8e_c00045{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.ma8_c00045{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.mc8_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);}
.m6e_c00045{transform:matrix(0.376534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376534,0.000000,0.000000,0.250000,0,0);}
.m65_c00045{transform:matrix(0.376917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376917,0.000000,0.000000,0.250000,0,0);}
.m5b_c00045{transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);}
.m81_c00045{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m73_c00045{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m42_c00045{transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);}
.m61_c00045{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m24_c00045{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mc3_c00045{transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);}
.m3e_c00045{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m88_c00045{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m71_c00045{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m5d_c00045{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m9b_c00045{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m5c_c00045{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m3a_c00045{transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);}
.m3d_c00045{transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);}
.m63_c00045{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m4_c00045{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m50_c00045{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m98_c00045{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);}
.m3c_c00045{transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);}
.m35_c00045{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m9a_c00045{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m6a_c00045{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mbd_c00045{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m66_c00045{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m78_c00045{transform:matrix(0.408742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408742,0.000000,0.000000,0.250000,0,0);}
.m80_c00045{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m47_c00045{transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);}
.mb2_c00045{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m3b_c00045{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m72_c00045{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.mb6_c00045{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m1f_c00045{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m48_c00045{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m12_c00045{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mbb_c00045{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m28_c00045{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.md0_c00045{transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);}
.mb4_c00045{transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);}
.m67_c00045{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m40_c00045{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m5e_c00045{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m55_c00045{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m17_c00045{transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);}
.m99_c00045{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m49_c00045{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mb7_c00045{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.mc1_c00045{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_c00045{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m7e_c00045{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m57_c00045{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.m86_c00045{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.ma1_c00045{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m22_c00045{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m6_c00045{transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);}
.m6f_c00045{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m31_c00045{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m95_c00045{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m10_c00045{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mb9_c00045{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.me0_c00045{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.m7d_c00045{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m3f_c00045{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.mdc_c00045{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m7c_c00045{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.maf_c00045{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.md5_c00045{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.mb3_c00045{transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);}
.m34_c00045{transform:matrix(0.470168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470168,0.000000,0.000000,0.250000,0,0);}
.md9_c00045{transform:matrix(0.472756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472756,0.000000,0.000000,0.250000,0,0);}
.m4e_c00045{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m58_c00045{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.mb_c00045{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m5f_c00045{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m1c_c00045{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m26_c00045{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.md8_c00045{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m68_c00045{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m37_c00045{transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);}
.mc_c00045{transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);}
.mcd_c00045{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m69_c00045{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m4f_c00045{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mab_c00045{transform:matrix(0.492941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492941,0.000000,0.000000,0.250000,0,0);}
.m8_c00045{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m0_c00045{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_c00045{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m1d_c00045{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m94_c00045{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.mde_c00045{transform:matrix(0.507212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507212,0.000000,0.000000,0.250000,0,0);}
.ma4_c00045{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m96_c00045{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m9e_c00045{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m2a_c00045{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m60_c00045{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m16_c00045{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.mc2_c00045{transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);}
.mda_c00045{transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);}
.m38_c00045{transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);}
.m6c_c00045{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m2f_c00045{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m7b_c00045{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m27_c00045{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m51_c00045{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m19_c00045{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.me_c00045{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.mf_c00045{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.md4_c00045{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.mb5_c00045{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.m89_c00045{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m5a_c00045{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m85_c00045{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m14_c00045{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m52_c00045{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.ma9_c00045{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m1e_c00045{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.ma7_c00045{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m7_c00045{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m4c_c00045{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m9f_c00045{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m77_c00045{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m93_c00045{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m2b_c00045{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m3_c00045{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m7a_c00045{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m39_c00045{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m8f_c00045{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m59_c00045{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m91_c00045{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m41_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);}
.mca_c00045{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m23_c00045{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m64_c00045{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m11_c00045{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m7f_c00045{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m2d_c00045{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m56_c00045{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m8a_c00045{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m20_c00045{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m1b_c00045{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mc7_c00045{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m6b_c00045{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m6d_c00045{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.me5_c00045{transform:matrix(0.563131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563131,0.000000,0.000000,0.250000,0,0);}
.m1a_c00045{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.md3_c00045{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m83_c00045{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m30_c00045{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m75_c00045{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.ma3_c00045{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);}
.m15_c00045{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m44_c00045{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m84_c00045{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m4b_c00045{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.maa_c00045{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.mbf_c00045{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.m97_c00045{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m70_c00045{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m25_c00045{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.mdf_c00045{transform:matrix(0.584596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584596,0.000000,0.000000,0.250000,0,0);}
.m92_c00045{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m8d_c00045{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m5_c00045{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.ma0_c00045{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m79_c00045{transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);}
.m54_c00045{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m90_c00045{transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);}
.ma2_c00045{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.mbc_c00045{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m8b_c00045{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mb8_c00045{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m82_c00045{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m76_c00045{transform:matrix(0.616183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616183,0.000000,0.000000,0.250000,0,0);}
.mc4_c00045{transform:matrix(0.616987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616987,0.000000,0.000000,0.250000,0,0);}
.ma6_c00045{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m21_c00045{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.md2_c00045{transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);}
.m4d_c00045{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);}
.mae_c00045{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m2c_c00045{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mb0_c00045{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m2e_c00045{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m1_c00045{transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);}
.mac_c00045{transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);}
.mc5_c00045{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m62_c00045{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mc0_c00045{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.md_c00045{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.ma5_c00045{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.mb1_c00045{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m43_c00045{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.me1_c00045{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.mba_c00045{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mdb_c00045{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m33_c00045{transform:matrix(0.692941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692941,0.000000,0.000000,0.250000,0,0);}
.ma_c00045{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mcc_c00045{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.me4_c00045{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.mad_c00045{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.me2_c00045{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m9d_c00045{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.md6_c00045{transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);}
.m87_c00045{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.md1_c00045{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.mce_c00045{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m13_c00045{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mcb_c00045{transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);}
.m29_c00045{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m2_c00045{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m8c_c00045{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mbe_c00045{transform:matrix(0.790749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790749,0.000000,0.000000,0.250000,0,0);}
.me3_c00045{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.mcf_c00045{transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);}
.m18_c00045{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m32_c00045{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.md7_c00045{transform:matrix(0.849119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.849119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.849119,0.000000,0.000000,0.250000,0,0);}
.mc6_c00045{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m46_c00045{transform:matrix(1.249199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.249199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.249199,0.000000,0.000000,0.250000,0,0);}
.mc9_c00045{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m4a_c00045{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00045{vertical-align:0.000000px;}
.v1_c00045{vertical-align:6.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;}
}
.ws1_c00045{word-spacing:-8.149871px;}
.ws0_c00045{word-spacing:-6.400641px;}
.ws2_c00045{word-spacing:-1.611816px;}
.ws12_c00045{word-spacing:0.000000px;}
.wsc_c00045{word-spacing:11.586697px;}
.wsb_c00045{word-spacing:11.661937px;}
.wsa_c00045{word-spacing:12.210014px;}
.wsd_c00045{word-spacing:13.306168px;}
.wse_c00045{word-spacing:23.728109px;}
.ws10_c00045{word-spacing:23.767013px;}
.ws8_c00045{word-spacing:30.111231px;}
.wsf_c00045{word-spacing:30.638400px;}
.ws6_c00045{word-spacing:36.326509px;}
.ws9_c00045{word-spacing:38.705522px;}
.ws11_c00045{word-spacing:39.052735px;}
.ws7_c00045{word-spacing:46.567836px;}
.ws3_c00045{word-spacing:47.719225px;}
.ws5_c00045{word-spacing:49.953969px;}
.ws4_c00045{word-spacing:63.750109px;}
.fc0_c00045{color:transparent;}
.fs6_c00045{font-size:3.420000px;}
.fs9_c00045{font-size:11.880000px;}
.fs8_c00045{font-size:13.620000px;}
.fs2_c00045{font-size:18.720000px;}
.fs1_c00045{font-size:20.400000px;}
.fs0_c00045{font-size:25.500000px;}
.fs4_c00045{font-size:28.920000px;}
.fs5_c00045{font-size:32.340000px;}
.fs3_c00045{font-size:35.700000px;}
.fs7_c00045{font-size:39.120000px;}
.y0_c00045{bottom:0.000000px;}
.y68_c00045{bottom:252.180000px;}
.y6c_c00045{bottom:253.245000px;}
.y67_c00045{bottom:253.905000px;}
.y6b_c00045{bottom:254.130000px;}
.y6a_c00045{bottom:254.970000px;}
.y69_c00045{bottom:255.405000px;}
.y66_c00045{bottom:272.745000px;}
.y63_c00045{bottom:273.405000px;}
.y65_c00045{bottom:273.630000px;}
.y64_c00045{bottom:274.905000px;}
.y61_c00045{bottom:291.825000px;}
.y62_c00045{bottom:292.245000px;}
.y5e_c00045{bottom:292.905000px;}
.y5f_c00045{bottom:294.405000px;}
.y60_c00045{bottom:295.905000px;}
.y5b_c00045{bottom:311.745000px;}
.y5d_c00045{bottom:313.245000px;}
.y5c_c00045{bottom:313.905000px;}
.y58_c00045{bottom:331.245000px;}
.y59_c00045{bottom:332.745000px;}
.y56_c00045{bottom:333.405000px;}
.y57_c00045{bottom:333.630000px;}
.y5a_c00045{bottom:334.470000px;}
.y55_c00045{bottom:350.745000px;}
.y54_c00045{bottom:351.825000px;}
.y51_c00045{bottom:352.905000px;}
.y52_c00045{bottom:354.405000px;}
.y53_c00045{bottom:354.420000px;}
.y4f_c00045{bottom:369.405000px;}
.y50_c00045{bottom:370.245000px;}
.y4e_c00045{bottom:371.745000px;}
.y4c_c00045{bottom:372.405000px;}
.y4d_c00045{bottom:372.825000px;}
.y4a_c00045{bottom:390.180000px;}
.y4b_c00045{bottom:392.970000px;}
.y48_c00045{bottom:393.405000px;}
.y49_c00045{bottom:394.920000px;}
.y47_c00045{bottom:409.905000px;}
.y44_c00045{bottom:410.745000px;}
.y45_c00045{bottom:410.970000px;}
.y42_c00045{bottom:411.825000px;}
.y43_c00045{bottom:412.905000px;}
.y46_c00045{bottom:413.130000px;}
.y41_c00045{bottom:429.180000px;}
.y3e_c00045{bottom:429.405000px;}
.y3d_c00045{bottom:430.245000px;}
.y3f_c00045{bottom:430.470000px;}
.y3c_c00045{bottom:432.405000px;}
.y40_c00045{bottom:433.470000px;}
.y3a_c00045{bottom:448.680000px;}
.y37_c00045{bottom:448.905000px;}
.y35_c00045{bottom:449.745000px;}
.y39_c00045{bottom:449.970000px;}
.y32_c00045{bottom:450.180000px;}
.y36_c00045{bottom:450.825000px;}
.y34_c00045{bottom:451.245000px;}
.y3b_c00045{bottom:451.905000px;}
.y38_c00045{bottom:452.130000px;}
.y33_c00045{bottom:453.420000px;}
.y31_c00045{bottom:472.905000px;}
.y2d_c00045{bottom:487.905000px;}
.y2e_c00045{bottom:490.245000px;}
.y2c_c00045{bottom:491.130000px;}
.y30_c00045{bottom:491.325000px;}
.y2f_c00045{bottom:492.405000px;}
.y29_c00045{bottom:509.745000px;}
.y2b_c00045{bottom:511.905000px;}
.y2a_c00045{bottom:511.920000px;}
.y24_c00045{bottom:533.325000px;}
.y25_c00045{bottom:534.405000px;}
.y28_c00045{bottom:534.630000px;}
.y26_c00045{bottom:535.470000px;}
.y27_c00045{bottom:536.550000px;}
.y22_c00045{bottom:551.970000px;}
.y23_c00045{bottom:552.825000px;}
.y21_c00045{bottom:554.130000px;}
.y20_c00045{bottom:554.970000px;}
.y1e_c00045{bottom:575.745000px;}
.y1f_c00045{bottom:577.245000px;}
.y1d_c00045{bottom:578.970000px;}
.y18_c00045{bottom:612.405000px;}
.y19_c00045{bottom:613.470000px;}
.y16_c00045{bottom:613.905000px;}
.y1b_c00045{bottom:614.745000px;}
.y1c_c00045{bottom:615.630000px;}
.y17_c00045{bottom:616.470000px;}
.y15_c00045{bottom:616.905000px;}
.y1a_c00045{bottom:617.970000px;}
.yf_c00045{bottom:632.970000px;}
.y13_c00045{bottom:634.050000px;}
.y12_c00045{bottom:634.245000px;}
.y14_c00045{bottom:635.130000px;}
.y10_c00045{bottom:635.325000px;}
.y11_c00045{bottom:636.405000px;}
.ye_c00045{bottom:653.745000px;}
.yd_c00045{bottom:655.905000px;}
.yb_c00045{bottom:673.245000px;}
.yc_c00045{bottom:674.130000px;}
.ya_c00045{bottom:674.325000px;}
.y9_c00045{bottom:675.405000px;}
.y7_c00045{bottom:691.905000px;}
.y5_c00045{bottom:692.745000px;}
.y8_c00045{bottom:694.470000px;}
.y6_c00045{bottom:694.905000px;}
.y3_c00045{bottom:695.130000px;}
.y4_c00045{bottom:695.970000px;}
.yca_c00045{bottom:719.130000px;}
.yc9_c00045{bottom:720.195000px;}
.yc4_c00045{bottom:728.550000px;}
.yc2_c00045{bottom:731.130000px;}
.yc3_c00045{bottom:732.195000px;}
.yc7_c00045{bottom:732.630000px;}
.yc6_c00045{bottom:733.695000px;}
.yc5_c00045{bottom:733.920000px;}
.yc8_c00045{bottom:734.130000px;}
.yc0_c00045{bottom:741.195000px;}
.ybc_c00045{bottom:746.130000px;}
.ybe_c00045{bottom:746.775000px;}
.ybd_c00045{bottom:747.195000px;}
.ybf_c00045{bottom:747.420000px;}
.yc1_c00045{bottom:748.695000px;}
.yb8_c00045{bottom:759.630000px;}
.yb9_c00045{bottom:760.695000px;}
.ybb_c00045{bottom:762.195000px;}
.yba_c00045{bottom:762.420000px;}
.yb1_c00045{bottom:773.130000px;}
.yb3_c00045{bottom:773.775000px;}
.yb2_c00045{bottom:774.195000px;}
.yb4_c00045{bottom:774.420000px;}
.yb5_c00045{bottom:774.630000px;}
.yb7_c00045{bottom:775.695000px;}
.yb6_c00045{bottom:775.920000px;}
.yb0_c00045{bottom:778.695000px;}
.yac_c00045{bottom:785.130000px;}
.yaa_c00045{bottom:786.630000px;}
.yad_c00045{bottom:787.275000px;}
.yab_c00045{bottom:787.695000px;}
.yaf_c00045{bottom:788.130000px;}
.yae_c00045{bottom:789.420000px;}
.ya6_c00045{bottom:800.775000px;}
.ya5_c00045{bottom:801.195000px;}
.ya7_c00045{bottom:801.630000px;}
.ya8_c00045{bottom:802.920000px;}
.ya9_c00045{bottom:804.420000px;}
.ya1_c00045{bottom:815.130000px;}
.ya2_c00045{bottom:816.420000px;}
.ya4_c00045{bottom:816.630000px;}
.ya3_c00045{bottom:817.920000px;}
.y9c_c00045{bottom:827.550000px;}
.y9e_c00045{bottom:828.630000px;}
.y9d_c00045{bottom:829.695000px;}
.ya0_c00045{bottom:830.130000px;}
.y9f_c00045{bottom:831.420000px;}
.y99_c00045{bottom:842.130000px;}
.y98_c00045{bottom:843.195000px;}
.y9b_c00045{bottom:844.695000px;}
.y9a_c00045{bottom:844.920000px;}
.y94_c00045{bottom:855.630000px;}
.y95_c00045{bottom:857.130000px;}
.y97_c00045{bottom:858.195000px;}
.y96_c00045{bottom:858.420000px;}
.y8f_c00045{bottom:870.630000px;}
.y90_c00045{bottom:871.695000px;}
.y91_c00045{bottom:871.920000px;}
.y93_c00045{bottom:873.195000px;}
.y92_c00045{bottom:873.420000px;}
.y8c_c00045{bottom:883.695000px;}
.y8e_c00045{bottom:885.195000px;}
.y8d_c00045{bottom:886.920000px;}
.y89_c00045{bottom:898.695000px;}
.y8b_c00045{bottom:899.130000px;}
.y8a_c00045{bottom:900.195000px;}
.y87_c00045{bottom:911.130000px;}
.y88_c00045{bottom:913.695000px;}
.y84_c00045{bottom:924.630000px;}
.y83_c00045{bottom:925.695000px;}
.y86_c00045{bottom:926.130000px;}
.y85_c00045{bottom:927.195000px;}
.y7e_c00045{bottom:942.630000px;}
.y7f_c00045{bottom:943.695000px;}
.y81_c00045{bottom:944.130000px;}
.y80_c00045{bottom:945.195000px;}
.y82_c00045{bottom:946.695000px;}
.y7b_c00045{bottom:957.195000px;}
.y7c_c00045{bottom:959.130000px;}
.y7d_c00045{bottom:960.195000px;}
.y78_c00045{bottom:970.695000px;}
.y79_c00045{bottom:972.195000px;}
.y7a_c00045{bottom:973.695000px;}
.y77_c00045{bottom:993.405000px;}
.y74_c00045{bottom:1007.325000px;}
.y76_c00045{bottom:1008.405000px;}
.y75_c00045{bottom:1010.550000px;}
.y73_c00045{bottom:1024.470000px;}
.y72_c00045{bottom:1025.550000px;}
.y71_c00045{bottom:1037.325000px;}
.y70_c00045{bottom:1039.050000px;}
.y6f_c00045{bottom:1039.470000px;}
.y6e_c00045{bottom:1061.550000px;}
.y6d_c00045{bottom:1064.550000px;}
.y2_c00045{bottom:1099.050000px;}
.y1_c00045{bottom:1100.970000px;}
.h7_c00045{height:4.206533px;}
.hc_c00045{height:14.612168px;}
.h9_c00045{height:16.752334px;}
.ha_c00045{height:22.752334px;}
.h3_c00045{height:23.025234px;}
.h2_c00045{height:25.091602px;}
.hb_c00045{height:29.025234px;}
.h1_c00045{height:31.364502px;}
.h5_c00045{height:35.571035px;}
.h6_c00045{height:39.777568px;}
.h4_c00045{height:43.910303px;}
.h8_c00045{height:48.116836px;}
.h0_c00045{height:1335.000000px;}
.w0_c00045{width:880.500000px;}
.x0_c00045{left:0.000000px;}
.xa4_c00045{left:151.080000px;}
.x70_c00045{left:153.000000px;}
.x1_c00045{left:154.920000px;}
.x49_c00045{left:167.580000px;}
.x51_c00045{left:169.920000px;}
.x5b_c00045{left:175.080000px;}
.x71_c00045{left:180.420000px;}
.x3_c00045{left:182.580000px;}
.xf_c00045{left:186.000000px;}
.xa5_c00045{left:195.420000px;}
.x96_c00045{left:196.500000px;}
.x31_c00045{left:198.420000px;}
.x25_c00045{left:201.420000px;}
.x4_c00045{left:203.580000px;}
.x5c_c00045{left:211.500000px;}
.x52_c00045{left:213.420000px;}
.xb1_c00045{left:215.580000px;}
.x7a_c00045{left:217.920000px;}
.x89_c00045{left:220.080000px;}
.x97_c00045{left:226.500000px;}
.x72_c00045{left:228.000000px;}
.x32_c00045{left:233.580000px;}
.x10_c00045{left:237.000000px;}
.x5d_c00045{left:238.920000px;}
.xa6_c00045{left:247.920000px;}
.x8d_c00045{left:249.000000px;}
.x73_c00045{left:250.080000px;}
.x1a_c00045{left:256.080000px;}
.x33_c00045{left:258.000000px;}
.x26_c00045{left:259.500000px;}
.x65_c00045{left:261.000000px;}
.x83_c00045{left:262.500000px;}
.xb2_c00045{left:264.000000px;}
.xaa_c00045{left:265.500000px;}
.x8e_c00045{left:266.580000px;}
.x53_c00045{left:271.500000px;}
.x5e_c00045{left:273.420000px;}
.x34_c00045{left:275.580000px;}
.xc2_c00045{left:277.500000px;}
.xb8_c00045{left:280.500000px;}
.x5_c00045{left:282.000000px;}
.x84_c00045{left:283.500000px;}
.x11_c00045{left:286.500000px;}
.x8a_c00045{left:287.580000px;}
.x1b_c00045{left:289.080000px;}
.x54_c00045{left:292.500000px;}
.xbc_c00045{left:295.500000px;}
.x35_c00045{left:300.000000px;}
.xcb_c00045{left:304.080000px;}
.x1c_c00045{left:307.920000px;}
.xce_c00045{left:309.000000px;}
.x98_c00045{left:310.080000px;}
.xc0_c00045{left:313.500000px;}
.xab_c00045{left:316.500000px;}
.x6_c00045{left:318.000000px;}
.x41_c00045{left:321.000000px;}
.xcc_c00045{left:322.500000px;}
.x27_c00045{left:328.920000px;}
.x74_c00045{left:331.080000px;}
.x36_c00045{left:334.080000px;}
.xc9_c00045{left:335.580000px;}
.xd4_c00045{left:337.500000px;}
.xb9_c00045{left:338.580000px;}
.x8f_c00045{left:340.500000px;}
.x7b_c00045{left:343.500000px;}
.xcd_c00045{left:345.000000px;}
.x66_c00045{left:346.275000px;}
.x12_c00045{left:348.000000px;}
.x1d_c00045{left:349.500000px;}
.xcf_c00045{left:351.000000px;}
.x7c_c00045{left:355.920000px;}
.x99_c00045{left:357.000000px;}
.x28_c00045{left:358.920000px;}
.x90_c00045{left:360.000000px;}
.x45_c00045{left:363.000000px;}
.x13_c00045{left:364.500000px;}
.xba_c00045{left:367.500000px;}
.x55_c00045{left:370.500000px;}
.x5f_c00045{left:373.500000px;}
.x75_c00045{left:379.920000px;}
.x37_c00045{left:381.000000px;}
.x7d_c00045{left:382.920000px;}
.xa0_c00045{left:384.420000px;}
.x46_c00045{left:385.920000px;}
.x67_c00045{left:387.855000px;}
.x91_c00045{left:391.920000px;}
.x7_c00045{left:393.000000px;}
.x29_c00045{left:394.500000px;}
.x7e_c00045{left:395.580000px;}
.x2_c00045{left:399.000000px;}
.xbd_c00045{left:400.920000px;}
.x42_c00045{left:402.420000px;}
.x4a_c00045{left:405.420000px;}
.xc1_c00045{left:406.920000px;}
.xd0_c00045{left:408.000000px;}
.xd2_c00045{left:409.500000px;}
.x8_c00045{left:411.420000px;}
.x68_c00045{left:412.920000px;}
.xb7_c00045{left:417.000000px;}
.xa1_c00045{left:421.500000px;}
.x92_c00045{left:423.000000px;}
.x1e_c00045{left:424.500000px;}
.x14_c00045{left:425.580000px;}
.x7f_c00045{left:429.000000px;}
.x9a_c00045{left:430.920000px;}
.x38_c00045{left:432.000000px;}
.x76_c00045{left:436.920000px;}
.x8b_c00045{left:438.000000px;}
.x1f_c00045{left:441.420000px;}
.x47_c00045{left:442.500000px;}
.x15_c00045{left:447.000000px;}
.x9_c00045{left:451.500000px;}
.xc4_c00045{left:453.000000px;}
.x69_c00045{left:456.420000px;}
.x9b_c00045{left:457.500000px;}
.x43_c00045{left:458.580000px;}
.xa7_c00045{left:460.500000px;}
.xb3_c00045{left:462.000000px;}
.x56_c00045{left:463.500000px;}
.xbe_c00045{left:465.000000px;}
.x20_c00045{left:469.500000px;}
.x2a_c00045{left:470.580000px;}
.xac_c00045{left:472.500000px;}
.xb4_c00045{left:475.500000px;}
.x85_c00045{left:478.500000px;}
.x93_c00045{left:483.420000px;}
.x60_c00045{left:484.500000px;}
.x57_c00045{left:486.000000px;}
.x48_c00045{left:487.080000px;}
.xad_c00045{left:490.500000px;}
.x2b_c00045{left:492.000000px;}
.x4b_c00045{left:493.920000px;}
.x6a_c00045{left:496.500000px;}
.xd3_c00045{left:499.500000px;}
.x8c_c00045{left:500.580000px;}
.xc8_c00045{left:502.500000px;}
.xca_c00045{left:504.000000px;}
.x39_c00045{left:505.080000px;}
.xbb_c00045{left:510.000000px;}
.x58_c00045{left:513.420000px;}
.x80_c00045{left:516.000000px;}
.xa8_c00045{left:517.920000px;}
.x2c_c00045{left:519.000000px;}
.x94_c00045{left:520.080000px;}
.x3a_c00045{left:522.000000px;}
.x16_c00045{left:526.500000px;}
.x77_c00045{left:528.420000px;}
.x44_c00045{left:530.775000px;}
.xa2_c00045{left:532.080000px;}
.x61_c00045{left:537.000000px;}
.x2d_c00045{left:538.920000px;}
.x21_c00045{left:540.420000px;}
.xc3_c00045{left:541.500000px;}
.xc7_c00045{left:543.000000px;}
.x9c_c00045{left:544.500000px;}
.x3b_c00045{left:546.000000px;}
.x78_c00045{left:547.500000px;}
.xbf_c00045{left:550.500000px;}
.xa_c00045{left:553.500000px;}
.x4c_c00045{left:555.000000px;}
.x9d_c00045{left:556.500000px;}
.x81_c00045{left:558.420000px;}
.x6b_c00045{left:559.500000px;}
.xae_c00045{left:561.420000px;}
.xa3_c00045{left:562.920000px;}
.xb_c00045{left:568.500000px;}
.xc5_c00045{left:570.000000px;}
.x86_c00045{left:575.580000px;}
.x62_c00045{left:578.580000px;}
.xd1_c00045{left:580.920000px;}
.x6c_c00045{left:582.420000px;}
.xc6_c00045{left:583.500000px;}
.xc_c00045{left:585.000000px;}
.x4d_c00045{left:586.500000px;}
.x22_c00045{left:589.080000px;}
.xaf_c00045{left:591.420000px;}
.x17_c00045{left:592.500000px;}
.x9e_c00045{left:596.580000px;}
.x3c_c00045{left:598.920000px;}
.x6d_c00045{left:601.920000px;}
.x95_c00045{left:606.420000px;}
.x23_c00045{left:609.420000px;}
.x2e_c00045{left:611.580000px;}
.x18_c00045{left:617.580000px;}
.x79_c00045{left:619.080000px;}
.x4e_c00045{left:625.080000px;}
.x6e_c00045{left:628.920000px;}
.x87_c00045{left:630.420000px;}
.x59_c00045{left:631.500000px;}
.xb0_c00045{left:633.000000px;}
.x3d_c00045{left:634.080000px;}
.x9f_c00045{left:639.420000px;}
.x63_c00045{left:644.580000px;}
.x4f_c00045{left:646.080000px;}
.xd_c00045{left:655.500000px;}
.x3e_c00045{left:658.500000px;}
.x50_c00045{left:661.920000px;}
.xb5_c00045{left:666.000000px;}
.xa9_c00045{left:667.500000px;}
.x64_c00045{left:669.645000px;}
.x19_c00045{left:672.000000px;}
.xe_c00045{left:674.580000px;}
.x3f_c00045{left:676.080000px;}
.x24_c00045{left:677.580000px;}
.xb6_c00045{left:681.420000px;}
.x2f_c00045{left:685.500000px;}
.x82_c00045{left:690.420000px;}
.x5a_c00045{left:694.500000px;}
.x40_c00045{left:700.500000px;}
.x6f_c00045{left:703.920000px;}
.x88_c00045{left:711.420000px;}
.x30_c00045{left:712.500000px;}
@media print{
.v0_c00045{vertical-align:0.000000pt;}
.v1_c00045{vertical-align:5.333333pt;}
.ls0_c00045{letter-spacing:0.000000pt;}
.ws1_c00045{word-spacing:-7.244330pt;}
.ws0_c00045{word-spacing:-5.689459pt;}
.ws2_c00045{word-spacing:-1.432725pt;}
.ws12_c00045{word-spacing:0.000000pt;}
.wsc_c00045{word-spacing:10.299286pt;}
.wsb_c00045{word-spacing:10.366166pt;}
.wsa_c00045{word-spacing:10.853346pt;}
.wsd_c00045{word-spacing:11.827705pt;}
.wse_c00045{word-spacing:21.091652pt;}
.ws10_c00045{word-spacing:21.126233pt;}
.ws8_c00045{word-spacing:26.765539pt;}
.wsf_c00045{word-spacing:27.234133pt;}
.ws6_c00045{word-spacing:32.290231pt;}
.ws9_c00045{word-spacing:34.404908pt;}
.ws11_c00045{word-spacing:34.713542pt;}
.ws7_c00045{word-spacing:41.393632pt;}
.ws3_c00045{word-spacing:42.417089pt;}
.ws5_c00045{word-spacing:44.403528pt;}
.ws4_c00045{word-spacing:56.666764pt;}
.fs6_c00045{font-size:3.040000pt;}
.fs9_c00045{font-size:10.560000pt;}
.fs8_c00045{font-size:12.106667pt;}
.fs2_c00045{font-size:16.640000pt;}
.fs1_c00045{font-size:18.133333pt;}
.fs0_c00045{font-size:22.666667pt;}
.fs4_c00045{font-size:25.706667pt;}
.fs5_c00045{font-size:28.746667pt;}
.fs3_c00045{font-size:31.733333pt;}
.fs7_c00045{font-size:34.773333pt;}
.y0_c00045{bottom:0.000000pt;}
.y68_c00045{bottom:224.160000pt;}
.y6c_c00045{bottom:225.106667pt;}
.y67_c00045{bottom:225.693333pt;}
.y6b_c00045{bottom:225.893333pt;}
.y6a_c00045{bottom:226.640000pt;}
.y69_c00045{bottom:227.026667pt;}
.y66_c00045{bottom:242.440000pt;}
.y63_c00045{bottom:243.026667pt;}
.y65_c00045{bottom:243.226667pt;}
.y64_c00045{bottom:244.360000pt;}
.y61_c00045{bottom:259.400000pt;}
.y62_c00045{bottom:259.773333pt;}
.y5e_c00045{bottom:260.360000pt;}
.y5f_c00045{bottom:261.693333pt;}
.y60_c00045{bottom:263.026667pt;}
.y5b_c00045{bottom:277.106667pt;}
.y5d_c00045{bottom:278.440000pt;}
.y5c_c00045{bottom:279.026667pt;}
.y58_c00045{bottom:294.440000pt;}
.y59_c00045{bottom:295.773333pt;}
.y56_c00045{bottom:296.360000pt;}
.y57_c00045{bottom:296.560000pt;}
.y5a_c00045{bottom:297.306667pt;}
.y55_c00045{bottom:311.773333pt;}
.y54_c00045{bottom:312.733333pt;}
.y51_c00045{bottom:313.693333pt;}
.y52_c00045{bottom:315.026667pt;}
.y53_c00045{bottom:315.040000pt;}
.y4f_c00045{bottom:328.360000pt;}
.y50_c00045{bottom:329.106667pt;}
.y4e_c00045{bottom:330.440000pt;}
.y4c_c00045{bottom:331.026667pt;}
.y4d_c00045{bottom:331.400000pt;}
.y4a_c00045{bottom:346.826667pt;}
.y4b_c00045{bottom:349.306667pt;}
.y48_c00045{bottom:349.693333pt;}
.y49_c00045{bottom:351.040000pt;}
.y47_c00045{bottom:364.360000pt;}
.y44_c00045{bottom:365.106667pt;}
.y45_c00045{bottom:365.306667pt;}
.y42_c00045{bottom:366.066667pt;}
.y43_c00045{bottom:367.026667pt;}
.y46_c00045{bottom:367.226667pt;}
.y41_c00045{bottom:381.493333pt;}
.y3e_c00045{bottom:381.693333pt;}
.y3d_c00045{bottom:382.440000pt;}
.y3f_c00045{bottom:382.640000pt;}
.y3c_c00045{bottom:384.360000pt;}
.y40_c00045{bottom:385.306667pt;}
.y3a_c00045{bottom:398.826667pt;}
.y37_c00045{bottom:399.026667pt;}
.y35_c00045{bottom:399.773333pt;}
.y39_c00045{bottom:399.973333pt;}
.y32_c00045{bottom:400.160000pt;}
.y36_c00045{bottom:400.733333pt;}
.y34_c00045{bottom:401.106667pt;}
.y3b_c00045{bottom:401.693333pt;}
.y38_c00045{bottom:401.893333pt;}
.y33_c00045{bottom:403.040000pt;}
.y31_c00045{bottom:420.360000pt;}
.y2d_c00045{bottom:433.693333pt;}
.y2e_c00045{bottom:435.773333pt;}
.y2c_c00045{bottom:436.560000pt;}
.y30_c00045{bottom:436.733333pt;}
.y2f_c00045{bottom:437.693333pt;}
.y29_c00045{bottom:453.106667pt;}
.y2b_c00045{bottom:455.026667pt;}
.y2a_c00045{bottom:455.040000pt;}
.y24_c00045{bottom:474.066667pt;}
.y25_c00045{bottom:475.026667pt;}
.y28_c00045{bottom:475.226667pt;}
.y26_c00045{bottom:475.973333pt;}
.y27_c00045{bottom:476.933333pt;}
.y22_c00045{bottom:490.640000pt;}
.y23_c00045{bottom:491.400000pt;}
.y21_c00045{bottom:492.560000pt;}
.y20_c00045{bottom:493.306667pt;}
.y1e_c00045{bottom:511.773333pt;}
.y1f_c00045{bottom:513.106667pt;}
.y1d_c00045{bottom:514.640000pt;}
.y18_c00045{bottom:544.360000pt;}
.y19_c00045{bottom:545.306667pt;}
.y16_c00045{bottom:545.693333pt;}
.y1b_c00045{bottom:546.440000pt;}
.y1c_c00045{bottom:547.226667pt;}
.y17_c00045{bottom:547.973333pt;}
.y15_c00045{bottom:548.360000pt;}
.y1a_c00045{bottom:549.306667pt;}
.yf_c00045{bottom:562.640000pt;}
.y13_c00045{bottom:563.600000pt;}
.y12_c00045{bottom:563.773333pt;}
.y14_c00045{bottom:564.560000pt;}
.y10_c00045{bottom:564.733333pt;}
.y11_c00045{bottom:565.693333pt;}
.ye_c00045{bottom:581.106667pt;}
.yd_c00045{bottom:583.026667pt;}
.yb_c00045{bottom:598.440000pt;}
.yc_c00045{bottom:599.226667pt;}
.ya_c00045{bottom:599.400000pt;}
.y9_c00045{bottom:600.360000pt;}
.y7_c00045{bottom:615.026667pt;}
.y5_c00045{bottom:615.773333pt;}
.y8_c00045{bottom:617.306667pt;}
.y6_c00045{bottom:617.693333pt;}
.y3_c00045{bottom:617.893333pt;}
.y4_c00045{bottom:618.640000pt;}
.yca_c00045{bottom:639.226667pt;}
.yc9_c00045{bottom:640.173333pt;}
.yc4_c00045{bottom:647.600000pt;}
.yc2_c00045{bottom:649.893333pt;}
.yc3_c00045{bottom:650.840000pt;}
.yc7_c00045{bottom:651.226667pt;}
.yc6_c00045{bottom:652.173333pt;}
.yc5_c00045{bottom:652.373333pt;}
.yc8_c00045{bottom:652.560000pt;}
.yc0_c00045{bottom:658.840000pt;}
.ybc_c00045{bottom:663.226667pt;}
.ybe_c00045{bottom:663.800000pt;}
.ybd_c00045{bottom:664.173333pt;}
.ybf_c00045{bottom:664.373333pt;}
.yc1_c00045{bottom:665.506667pt;}
.yb8_c00045{bottom:675.226667pt;}
.yb9_c00045{bottom:676.173333pt;}
.ybb_c00045{bottom:677.506667pt;}
.yba_c00045{bottom:677.706667pt;}
.yb1_c00045{bottom:687.226667pt;}
.yb3_c00045{bottom:687.800000pt;}
.yb2_c00045{bottom:688.173333pt;}
.yb4_c00045{bottom:688.373333pt;}
.yb5_c00045{bottom:688.560000pt;}
.yb7_c00045{bottom:689.506667pt;}
.yb6_c00045{bottom:689.706667pt;}
.yb0_c00045{bottom:692.173333pt;}
.yac_c00045{bottom:697.893333pt;}
.yaa_c00045{bottom:699.226667pt;}
.yad_c00045{bottom:699.800000pt;}
.yab_c00045{bottom:700.173333pt;}
.yaf_c00045{bottom:700.560000pt;}
.yae_c00045{bottom:701.706667pt;}
.ya6_c00045{bottom:711.800000pt;}
.ya5_c00045{bottom:712.173333pt;}
.ya7_c00045{bottom:712.560000pt;}
.ya8_c00045{bottom:713.706667pt;}
.ya9_c00045{bottom:715.040000pt;}
.ya1_c00045{bottom:724.560000pt;}
.ya2_c00045{bottom:725.706667pt;}
.ya4_c00045{bottom:725.893333pt;}
.ya3_c00045{bottom:727.040000pt;}
.y9c_c00045{bottom:735.600000pt;}
.y9e_c00045{bottom:736.560000pt;}
.y9d_c00045{bottom:737.506667pt;}
.ya0_c00045{bottom:737.893333pt;}
.y9f_c00045{bottom:739.040000pt;}
.y99_c00045{bottom:748.560000pt;}
.y98_c00045{bottom:749.506667pt;}
.y9b_c00045{bottom:750.840000pt;}
.y9a_c00045{bottom:751.040000pt;}
.y94_c00045{bottom:760.560000pt;}
.y95_c00045{bottom:761.893333pt;}
.y97_c00045{bottom:762.840000pt;}
.y96_c00045{bottom:763.040000pt;}
.y8f_c00045{bottom:773.893333pt;}
.y90_c00045{bottom:774.840000pt;}
.y91_c00045{bottom:775.040000pt;}
.y93_c00045{bottom:776.173333pt;}
.y92_c00045{bottom:776.373333pt;}
.y8c_c00045{bottom:785.506667pt;}
.y8e_c00045{bottom:786.840000pt;}
.y8d_c00045{bottom:788.373333pt;}
.y89_c00045{bottom:798.840000pt;}
.y8b_c00045{bottom:799.226667pt;}
.y8a_c00045{bottom:800.173333pt;}
.y87_c00045{bottom:809.893333pt;}
.y88_c00045{bottom:812.173333pt;}
.y84_c00045{bottom:821.893333pt;}
.y83_c00045{bottom:822.840000pt;}
.y86_c00045{bottom:823.226667pt;}
.y85_c00045{bottom:824.173333pt;}
.y7e_c00045{bottom:837.893333pt;}
.y7f_c00045{bottom:838.840000pt;}
.y81_c00045{bottom:839.226667pt;}
.y80_c00045{bottom:840.173333pt;}
.y82_c00045{bottom:841.506667pt;}
.y7b_c00045{bottom:850.840000pt;}
.y7c_c00045{bottom:852.560000pt;}
.y7d_c00045{bottom:853.506667pt;}
.y78_c00045{bottom:862.840000pt;}
.y79_c00045{bottom:864.173333pt;}
.y7a_c00045{bottom:865.506667pt;}
.y77_c00045{bottom:883.026667pt;}
.y74_c00045{bottom:895.400000pt;}
.y76_c00045{bottom:896.360000pt;}
.y75_c00045{bottom:898.266667pt;}
.y73_c00045{bottom:910.640000pt;}
.y72_c00045{bottom:911.600000pt;}
.y71_c00045{bottom:922.066667pt;}
.y70_c00045{bottom:923.600000pt;}
.y6f_c00045{bottom:923.973333pt;}
.y6e_c00045{bottom:943.600000pt;}
.y6d_c00045{bottom:946.266667pt;}
.y2_c00045{bottom:976.933333pt;}
.y1_c00045{bottom:978.640000pt;}
.h7_c00045{height:3.739141pt;}
.hc_c00045{height:12.988594pt;}
.h9_c00045{height:14.890964pt;}
.ha_c00045{height:20.224297pt;}
.h3_c00045{height:20.466875pt;}
.h2_c00045{height:22.303646pt;}
.hb_c00045{height:25.800208pt;}
.h1_c00045{height:27.879557pt;}
.h5_c00045{height:31.618698pt;}
.h6_c00045{height:35.357839pt;}
.h4_c00045{height:39.031380pt;}
.h8_c00045{height:42.770521pt;}
.h0_c00045{height:1186.666667pt;}
.w0_c00045{width:782.666667pt;}
.x0_c00045{left:0.000000pt;}
.xa4_c00045{left:134.293333pt;}
.x70_c00045{left:136.000000pt;}
.x1_c00045{left:137.706667pt;}
.x49_c00045{left:148.960000pt;}
.x51_c00045{left:151.040000pt;}
.x5b_c00045{left:155.626667pt;}
.x71_c00045{left:160.373333pt;}
.x3_c00045{left:162.293333pt;}
.xf_c00045{left:165.333333pt;}
.xa5_c00045{left:173.706667pt;}
.x96_c00045{left:174.666667pt;}
.x31_c00045{left:176.373333pt;}
.x25_c00045{left:179.040000pt;}
.x4_c00045{left:180.960000pt;}
.x5c_c00045{left:188.000000pt;}
.x52_c00045{left:189.706667pt;}
.xb1_c00045{left:191.626667pt;}
.x7a_c00045{left:193.706667pt;}
.x89_c00045{left:195.626667pt;}
.x97_c00045{left:201.333333pt;}
.x72_c00045{left:202.666667pt;}
.x32_c00045{left:207.626667pt;}
.x10_c00045{left:210.666667pt;}
.x5d_c00045{left:212.373333pt;}
.xa6_c00045{left:220.373333pt;}
.x8d_c00045{left:221.333333pt;}
.x73_c00045{left:222.293333pt;}
.x1a_c00045{left:227.626667pt;}
.x33_c00045{left:229.333333pt;}
.x26_c00045{left:230.666667pt;}
.x65_c00045{left:232.000000pt;}
.x83_c00045{left:233.333333pt;}
.xb2_c00045{left:234.666667pt;}
.xaa_c00045{left:236.000000pt;}
.x8e_c00045{left:236.960000pt;}
.x53_c00045{left:241.333333pt;}
.x5e_c00045{left:243.040000pt;}
.x34_c00045{left:244.960000pt;}
.xc2_c00045{left:246.666667pt;}
.xb8_c00045{left:249.333333pt;}
.x5_c00045{left:250.666667pt;}
.x84_c00045{left:252.000000pt;}
.x11_c00045{left:254.666667pt;}
.x8a_c00045{left:255.626667pt;}
.x1b_c00045{left:256.960000pt;}
.x54_c00045{left:260.000000pt;}
.xbc_c00045{left:262.666667pt;}
.x35_c00045{left:266.666667pt;}
.xcb_c00045{left:270.293333pt;}
.x1c_c00045{left:273.706667pt;}
.xce_c00045{left:274.666667pt;}
.x98_c00045{left:275.626667pt;}
.xc0_c00045{left:278.666667pt;}
.xab_c00045{left:281.333333pt;}
.x6_c00045{left:282.666667pt;}
.x41_c00045{left:285.333333pt;}
.xcc_c00045{left:286.666667pt;}
.x27_c00045{left:292.373333pt;}
.x74_c00045{left:294.293333pt;}
.x36_c00045{left:296.960000pt;}
.xc9_c00045{left:298.293333pt;}
.xd4_c00045{left:300.000000pt;}
.xb9_c00045{left:300.960000pt;}
.x8f_c00045{left:302.666667pt;}
.x7b_c00045{left:305.333333pt;}
.xcd_c00045{left:306.666667pt;}
.x66_c00045{left:307.800000pt;}
.x12_c00045{left:309.333333pt;}
.x1d_c00045{left:310.666667pt;}
.xcf_c00045{left:312.000000pt;}
.x7c_c00045{left:316.373333pt;}
.x99_c00045{left:317.333333pt;}
.x28_c00045{left:319.040000pt;}
.x90_c00045{left:320.000000pt;}
.x45_c00045{left:322.666667pt;}
.x13_c00045{left:324.000000pt;}
.xba_c00045{left:326.666667pt;}
.x55_c00045{left:329.333333pt;}
.x5f_c00045{left:332.000000pt;}
.x75_c00045{left:337.706667pt;}
.x37_c00045{left:338.666667pt;}
.x7d_c00045{left:340.373333pt;}
.xa0_c00045{left:341.706667pt;}
.x46_c00045{left:343.040000pt;}
.x67_c00045{left:344.760000pt;}
.x91_c00045{left:348.373333pt;}
.x7_c00045{left:349.333333pt;}
.x29_c00045{left:350.666667pt;}
.x7e_c00045{left:351.626667pt;}
.x2_c00045{left:354.666667pt;}
.xbd_c00045{left:356.373333pt;}
.x42_c00045{left:357.706667pt;}
.x4a_c00045{left:360.373333pt;}
.xc1_c00045{left:361.706667pt;}
.xd0_c00045{left:362.666667pt;}
.xd2_c00045{left:364.000000pt;}
.x8_c00045{left:365.706667pt;}
.x68_c00045{left:367.040000pt;}
.xb7_c00045{left:370.666667pt;}
.xa1_c00045{left:374.666667pt;}
.x92_c00045{left:376.000000pt;}
.x1e_c00045{left:377.333333pt;}
.x14_c00045{left:378.293333pt;}
.x7f_c00045{left:381.333333pt;}
.x9a_c00045{left:383.040000pt;}
.x38_c00045{left:384.000000pt;}
.x76_c00045{left:388.373333pt;}
.x8b_c00045{left:389.333333pt;}
.x1f_c00045{left:392.373333pt;}
.x47_c00045{left:393.333333pt;}
.x15_c00045{left:397.333333pt;}
.x9_c00045{left:401.333333pt;}
.xc4_c00045{left:402.666667pt;}
.x69_c00045{left:405.706667pt;}
.x9b_c00045{left:406.666667pt;}
.x43_c00045{left:407.626667pt;}
.xa7_c00045{left:409.333333pt;}
.xb3_c00045{left:410.666667pt;}
.x56_c00045{left:412.000000pt;}
.xbe_c00045{left:413.333333pt;}
.x20_c00045{left:417.333333pt;}
.x2a_c00045{left:418.293333pt;}
.xac_c00045{left:420.000000pt;}
.xb4_c00045{left:422.666667pt;}
.x85_c00045{left:425.333333pt;}
.x93_c00045{left:429.706667pt;}
.x60_c00045{left:430.666667pt;}
.x57_c00045{left:432.000000pt;}
.x48_c00045{left:432.960000pt;}
.xad_c00045{left:436.000000pt;}
.x2b_c00045{left:437.333333pt;}
.x4b_c00045{left:439.040000pt;}
.x6a_c00045{left:441.333333pt;}
.xd3_c00045{left:444.000000pt;}
.x8c_c00045{left:444.960000pt;}
.xc8_c00045{left:446.666667pt;}
.xca_c00045{left:448.000000pt;}
.x39_c00045{left:448.960000pt;}
.xbb_c00045{left:453.333333pt;}
.x58_c00045{left:456.373333pt;}
.x80_c00045{left:458.666667pt;}
.xa8_c00045{left:460.373333pt;}
.x2c_c00045{left:461.333333pt;}
.x94_c00045{left:462.293333pt;}
.x3a_c00045{left:464.000000pt;}
.x16_c00045{left:468.000000pt;}
.x77_c00045{left:469.706667pt;}
.x44_c00045{left:471.800000pt;}
.xa2_c00045{left:472.960000pt;}
.x61_c00045{left:477.333333pt;}
.x2d_c00045{left:479.040000pt;}
.x21_c00045{left:480.373333pt;}
.xc3_c00045{left:481.333333pt;}
.xc7_c00045{left:482.666667pt;}
.x9c_c00045{left:484.000000pt;}
.x3b_c00045{left:485.333333pt;}
.x78_c00045{left:486.666667pt;}
.xbf_c00045{left:489.333333pt;}
.xa_c00045{left:492.000000pt;}
.x4c_c00045{left:493.333333pt;}
.x9d_c00045{left:494.666667pt;}
.x81_c00045{left:496.373333pt;}
.x6b_c00045{left:497.333333pt;}
.xae_c00045{left:499.040000pt;}
.xa3_c00045{left:500.373333pt;}
.xb_c00045{left:505.333333pt;}
.xc5_c00045{left:506.666667pt;}
.x86_c00045{left:511.626667pt;}
.x62_c00045{left:514.293333pt;}
.xd1_c00045{left:516.373333pt;}
.x6c_c00045{left:517.706667pt;}
.xc6_c00045{left:518.666667pt;}
.xc_c00045{left:520.000000pt;}
.x4d_c00045{left:521.333333pt;}
.x22_c00045{left:523.626667pt;}
.xaf_c00045{left:525.706667pt;}
.x17_c00045{left:526.666667pt;}
.x9e_c00045{left:530.293333pt;}
.x3c_c00045{left:532.373333pt;}
.x6d_c00045{left:535.040000pt;}
.x95_c00045{left:539.040000pt;}
.x23_c00045{left:541.706667pt;}
.x2e_c00045{left:543.626667pt;}
.x18_c00045{left:548.960000pt;}
.x79_c00045{left:550.293333pt;}
.x4e_c00045{left:555.626667pt;}
.x6e_c00045{left:559.040000pt;}
.x87_c00045{left:560.373333pt;}
.x59_c00045{left:561.333333pt;}
.xb0_c00045{left:562.666667pt;}
.x3d_c00045{left:563.626667pt;}
.x9f_c00045{left:568.373333pt;}
.x63_c00045{left:572.960000pt;}
.x4f_c00045{left:574.293333pt;}
.xd_c00045{left:582.666667pt;}
.x3e_c00045{left:585.333333pt;}
.x50_c00045{left:588.373333pt;}
.xb5_c00045{left:592.000000pt;}
.xa9_c00045{left:593.333333pt;}
.x64_c00045{left:595.240000pt;}
.x19_c00045{left:597.333333pt;}
.xe_c00045{left:599.626667pt;}
.x3f_c00045{left:600.960000pt;}
.x24_c00045{left:602.293333pt;}
.xb6_c00045{left:605.706667pt;}
.x2f_c00045{left:609.333333pt;}
.x82_c00045{left:613.706667pt;}
.x5a_c00045{left:617.333333pt;}
.x40_c00045{left:622.666667pt;}
.x6f_c00045{left:625.706667pt;}
.x88_c00045{left:632.373333pt;}
.x30_c00045{left:633.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_49cd558d9b2cb82bdf3cd182.woff2')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m125_c00046{transform:matrix(0.125163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125163,0.000000,0.000000,0.250000,0,0);}
.m106_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);}
.me8_c00046{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.me6_c00046{transform:matrix(0.327922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327922,0.000000,0.000000,0.250000,0,0);}
.mf3_c00046{transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);}
.m4b_c00046{transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);}
.mdc_c00046{transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);}
.mf8_c00046{transform:matrix(0.354372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354372,0.000000,0.000000,0.250000,0,0);}
.m8a_c00046{transform:matrix(0.356135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356135,0.000000,0.000000,0.250000,0,0);}
.m118_c00046{transform:matrix(0.358604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358604,0.000000,0.000000,0.250000,0,0);}
.me4_c00046{transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);}
.m12f_c00046{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m7b_c00046{transform:matrix(0.363173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363173,0.000000,0.000000,0.250000,0,0);}
.m6a_c00046{transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);}
.md8_c00046{transform:matrix(0.367066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367066,0.000000,0.000000,0.250000,0,0);}
.m120_c00046{transform:matrix(0.368275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368275,0.000000,0.000000,0.250000,0,0);}
.m25_c00046{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m91_c00046{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m12a_c00046{transform:matrix(0.370015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370015,0.000000,0.000000,0.250000,0,0);}
.m82_c00046{transform:matrix(0.370594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370594,0.000000,0.000000,0.250000,0,0);}
.m3b_c00046{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m130_c00046{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mdd_c00046{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.m2d_c00046{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m6f_c00046{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.ma0_c00046{transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);}
.m90_c00046{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m111_c00046{transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);}
.m97_c00046{transform:matrix(0.381902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381902,0.000000,0.000000,0.250000,0,0);}
.m104_c00046{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m9e_c00046{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.mea_c00046{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mfe_c00046{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m10e_c00046{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m1b_c00046{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m121_c00046{transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);}
.m8f_c00046{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mf9_c00046{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.m38_c00046{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m4d_c00046{transform:matrix(0.398423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398423,0.000000,0.000000,0.250000,0,0);}
.m12e_c00046{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m2f_c00046{transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);}
.mb_c00046{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.meb_c00046{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m15_c00046{transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);}
.m109_c00046{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.md6_c00046{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m79_c00046{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.md7_c00046{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m137_c00046{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m132_c00046{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mc3_c00046{transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);}
.md0_c00046{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m21_c00046{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.ma5_c00046{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m89_c00046{transform:matrix(0.411874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411874,0.000000,0.000000,0.250000,0,0);}
.m10a_c00046{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m135_c00046{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.mdf_c00046{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mc8_c00046{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mb3_c00046{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m1e_c00046{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m77_c00046{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.m49_c00046{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m107_c00046{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m37_c00046{transform:matrix(0.419606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419606,0.000000,0.000000,0.250000,0,0);}
.m11d_c00046{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mf2_c00046{transform:matrix(0.419862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419862,0.000000,0.000000,0.250000,0,0);}
.m5e_c00046{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.mc6_c00046{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m76_c00046{transform:matrix(0.421150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421150,0.000000,0.000000,0.250000,0,0);}
.m35_c00046{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m63_c00046{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m9c_c00046{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m87_c00046{transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);}
.m64_c00046{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.mf7_c00046{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m10b_c00046{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m51_c00046{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m54_c00046{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.mb2_c00046{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mff_c00046{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.md1_c00046{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mc7_c00046{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m71_c00046{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.m34_c00046{transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);}
.me2_c00046{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.mc9_c00046{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m23_c00046{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m29_c00046{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.m10_c00046{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.ma8_c00046{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m2b_c00046{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m36_c00046{transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);}
.mb5_c00046{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m1f_c00046{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mcd_c00046{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.mc1_c00046{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m1a_c00046{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m128_c00046{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.me5_c00046{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m5d_c00046{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.m7e_c00046{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.ma7_c00046{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m115_c00046{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.mca_c00046{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m0_c00046{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.maa_c00046{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m85_c00046{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m6d_c00046{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.m16_c00046{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m70_c00046{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.mc5_c00046{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m108_c00046{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.ma3_c00046{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.mee_c00046{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mba_c00046{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.mbb_c00046{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m5f_c00046{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mc2_c00046{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m6b_c00046{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.mde_c00046{transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);}
.m122_c00046{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m127_c00046{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m3c_c00046{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m81_c00046{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.mc0_c00046{transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);}
.m2_c00046{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.m94_c00046{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.mfb_c00046{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.me_c00046{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.me0_c00046{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.mf0_c00046{transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);}
.m6c_c00046{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.m69_c00046{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m66_c00046{transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);}
.m113_c00046{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m41_c00046{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m4c_c00046{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mbd_c00046{transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);}
.m3d_c00046{transform:matrix(0.476471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476471,0.000000,0.000000,0.250000,0,0);}
.me7_c00046{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m55_c00046{transform:matrix(0.477206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477206,0.000000,0.000000,0.250000,0,0);}
.m47_c00046{transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);}
.m3a_c00046{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m4e_c00046{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.mfd_c00046{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m11c_c00046{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m10d_c00046{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m17_c00046{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m65_c00046{transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);}
.m75_c00046{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m68_c00046{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m93_c00046{transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);}
.mb4_c00046{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m11a_c00046{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m103_c00046{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m33_c00046{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mb1_c00046{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.md9_c00046{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m61_c00046{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.me3_c00046{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m1c_c00046{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);}
.med_c00046{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m73_c00046{transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);}
.mdb_c00046{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.ma1_c00046{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.maf_c00046{transform:matrix(0.508349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508349,0.000000,0.000000,0.250000,0,0);}
.m3_c00046{transform:matrix(0.509276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509276,0.000000,0.000000,0.250000,0,0);}
.m80_c00046{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m8e_c00046{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m48_c00046{transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);}
.m9b_c00046{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m50_c00046{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.mfa_c00046{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m24_c00046{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.mcf_c00046{transform:matrix(0.517647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517647,0.000000,0.000000,0.250000,0,0);}
.m9_c00046{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m7f_c00046{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.mce_c00046{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mad_c00046{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m27_c00046{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mac_c00046{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.m43_c00046{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m9f_c00046{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m2a_c00046{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mb0_c00046{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m101_c00046{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m126_c00046{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.ma9_c00046{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m12c_c00046{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m7_c00046{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m5b_c00046{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.m83_c00046{transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);}
.m133_c00046{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m56_c00046{transform:matrix(0.534706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534706,0.000000,0.000000,0.250000,0,0);}
.m8_c00046{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m31_c00046{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m8c_c00046{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mf1_c00046{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mb8_c00046{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m95_c00046{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mb9_c00046{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.me1_c00046{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m13_c00046{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m32_c00046{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.md3_c00046{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.mda_c00046{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m40_c00046{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.mf5_c00046{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m92_c00046{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.ma6_c00046{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m2c_c00046{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m119_c00046{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m10f_c00046{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m22_c00046{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m86_c00046{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);}
.m96_c00046{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m74_c00046{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.mab_c00046{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.mb6_c00046{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m116_c00046{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m5_c00046{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mcc_c00046{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.md_c00046{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.ma2_c00046{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m3f_c00046{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.mec_c00046{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m45_c00046{transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);}
.m9a_c00046{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.mf6_c00046{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);}
.m98_c00046{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m8d_c00046{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m5c_c00046{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mbe_c00046{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mf_c00046{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.m12d_c00046{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.m134_c00046{transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);}
.m6_c00046{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mfc_c00046{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m26_c00046{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m11e_c00046{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.mf4_c00046{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m11_c00046{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m129_c00046{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m123_c00046{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m10c_c00046{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m7a_c00046{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);}
.mef_c00046{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m12_c00046{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m2e_c00046{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m30_c00046{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mb7_c00046{transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);}
.m102_c00046{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m19_c00046{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mbc_c00046{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m18_c00046{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m7c_c00046{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m136_c00046{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m60_c00046{transform:matrix(0.601471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601471,0.000000,0.000000,0.250000,0,0);}
.m124_c00046{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m58_c00046{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);}
.ma4_c00046{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m99_c00046{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m72_c00046{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m7d_c00046{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m1d_c00046{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m59_c00046{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);}
.me9_c00046{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);}
.m114_c00046{transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);}
.m53_c00046{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m5a_c00046{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.mae_c00046{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m52_c00046{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m67_c00046{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m1_c00046{transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);}
.m131_c00046{transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);}
.md5_c00046{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m84_c00046{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.ma_c00046{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m62_c00046{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m4a_c00046{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m44_c00046{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m4f_c00046{transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);}
.m39_c00046{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m28_c00046{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m57_c00046{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m110_c00046{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m88_c00046{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m46_c00046{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m42_c00046{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);}
.m6e_c00046{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m105_c00046{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m3e_c00046{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.md4_c00046{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m11b_c00046{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m112_c00046{transform:matrix(0.741987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741987,0.000000,0.000000,0.250000,0,0);}
.m14_c00046{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mcb_c00046{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m9d_c00046{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m20_c00046{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mc4_c00046{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mbf_c00046{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m4_c00046{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mc_c00046{transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);}
.m100_c00046{transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);}
.md2_c00046{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m78_c00046{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m11f_c00046{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.m117_c00046{transform:matrix(1.165865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.165865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.165865,0.000000,0.000000,0.250000,0,0);}
.m12b_c00046{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m8b_c00046{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
.fs8_c00046{font-size:3.420000px;}
.fsa_c00046{font-size:11.880000px;}
.fs6_c00046{font-size:13.620000px;}
.fs3_c00046{font-size:18.720000px;}
.fs1_c00046{font-size:20.400000px;}
.fs4_c00046{font-size:25.500000px;}
.fs0_c00046{font-size:28.920000px;}
.fs2_c00046{font-size:32.340000px;}
.fs5_c00046{font-size:35.700000px;}
.fs9_c00046{font-size:39.120000px;}
.fs7_c00046{font-size:42.540000px;}
.fsb_c00046{font-size:45.900000px;}
.y0_c00046{bottom:0.000000px;}
.y137_c00046{bottom:253.245000px;}
.y13c_c00046{bottom:254.325000px;}
.y13a_c00046{bottom:254.745000px;}
.y138_c00046{bottom:255.405000px;}
.y139_c00046{bottom:256.470000px;}
.y136_c00046{bottom:256.680000px;}
.y13b_c00046{bottom:256.905000px;}
.y134_c00046{bottom:260.550000px;}
.y135_c00046{bottom:260.970000px;}
.y12f_c00046{bottom:272.745000px;}
.y133_c00046{bottom:274.245000px;}
.y130_c00046{bottom:274.905000px;}
.y132_c00046{bottom:275.130000px;}
.y131_c00046{bottom:276.405000px;}
.y12e_c00046{bottom:276.420000px;}
.y12d_c00046{bottom:277.680000px;}
.y12b_c00046{bottom:291.405000px;}
.y12a_c00046{bottom:293.745000px;}
.y12c_c00046{bottom:294.630000px;}
.y129_c00046{bottom:299.325000px;}
.y128_c00046{bottom:301.905000px;}
.y123_c00046{bottom:311.130000px;}
.y120_c00046{bottom:311.745000px;}
.y11f_c00046{bottom:311.970000px;}
.y125_c00046{bottom:312.405000px;}
.y124_c00046{bottom:312.600000px;}
.y11e_c00046{bottom:312.825000px;}
.y127_c00046{bottom:313.245000px;}
.y126_c00046{bottom:313.470000px;}
.y121_c00046{bottom:313.905000px;}
.y122_c00046{bottom:314.130000px;}
.y11c_c00046{bottom:315.180000px;}
.y11d_c00046{bottom:315.405000px;}
.y11b_c00046{bottom:317.325000px;}
.y113_c00046{bottom:329.775000px;}
.y114_c00046{bottom:330.405000px;}
.y115_c00046{bottom:331.245000px;}
.y11a_c00046{bottom:331.275000px;}
.y10f_c00046{bottom:331.905000px;}
.y110_c00046{bottom:332.325000px;}
.y116_c00046{bottom:333.405000px;}
.y111_c00046{bottom:333.630000px;}
.y117_c00046{bottom:333.825000px;}
.y118_c00046{bottom:334.905000px;}
.y10d_c00046{bottom:336.180000px;}
.y112_c00046{bottom:336.630000px;}
.y10e_c00046{bottom:337.470000px;}
.y119_c00046{bottom:338.130000px;}
.y108_c00046{bottom:349.905000px;}
.y104_c00046{bottom:351.405000px;}
.y109_c00046{bottom:352.245000px;}
.y103_c00046{bottom:352.470000px;}
.y105_c00046{bottom:352.905000px;}
.y106_c00046{bottom:353.130000px;}
.y10b_c00046{bottom:353.325000px;}
.y10a_c00046{bottom:353.970000px;}
.y107_c00046{bottom:354.405000px;}
.y10c_c00046{bottom:354.630000px;}
.y102_c00046{bottom:355.245000px;}
.y100_c00046{bottom:369.405000px;}
.yfd_c00046{bottom:370.245000px;}
.yfc_c00046{bottom:371.325000px;}
.yfb_c00046{bottom:371.745000px;}
.yff_c00046{bottom:372.825000px;}
.yfe_c00046{bottom:373.905000px;}
.y101_c00046{bottom:374.130000px;}
.yfa_c00046{bottom:375.825000px;}
.yf5_c00046{bottom:389.130000px;}
.yf8_c00046{bottom:389.325000px;}
.yf4_c00046{bottom:391.245000px;}
.yf6_c00046{bottom:392.325000px;}
.yf9_c00046{bottom:392.745000px;}
.yf7_c00046{bottom:393.405000px;}
.yf3_c00046{bottom:395.745000px;}
.yf2_c00046{bottom:409.275000px;}
.yf0_c00046{bottom:410.745000px;}
.yef_c00046{bottom:411.630000px;}
.yed_c00046{bottom:412.470000px;}
.yee_c00046{bottom:412.905000px;}
.yf1_c00046{bottom:413.130000px;}
.yec_c00046{bottom:414.405000px;}
.yeb_c00046{bottom:416.325000px;}
.ye9_c00046{bottom:428.130000px;}
.ye6_c00046{bottom:429.405000px;}
.ye8_c00046{bottom:430.470000px;}
.ye4_c00046{bottom:430.905000px;}
.ye5_c00046{bottom:431.325000px;}
.ye7_c00046{bottom:432.405000px;}
.yea_c00046{bottom:432.630000px;}
.ye3_c00046{bottom:432.825000px;}
.ye2_c00046{bottom:433.680000px;}
.ydd_c00046{bottom:448.680000px;}
.ye0_c00046{bottom:449.745000px;}
.ye1_c00046{bottom:449.970000px;}
.ydf_c00046{bottom:450.630000px;}
.ydb_c00046{bottom:451.680000px;}
.yde_c00046{bottom:451.905000px;}
.ydc_c00046{bottom:453.405000px;}
.yda_c00046{bottom:454.905000px;}
.yd9_c00046{bottom:470.745000px;}
.yd7_c00046{bottom:470.970000px;}
.yd8_c00046{bottom:471.405000px;}
.yd6_c00046{bottom:472.905000px;}
.yd5_c00046{bottom:476.325000px;}
.yd0_c00046{bottom:487.275000px;}
.yd1_c00046{bottom:487.905000px;}
.yd3_c00046{bottom:489.405000px;}
.ycd_c00046{bottom:490.245000px;}
.yd4_c00046{bottom:491.130000px;}
.ycc_c00046{bottom:491.325000px;}
.yd2_c00046{bottom:491.970000px;}
.yce_c00046{bottom:492.405000px;}
.ycf_c00046{bottom:494.130000px;}
.ycb_c00046{bottom:496.905000px;}
.yc9_c00046{bottom:508.245000px;}
.yc6_c00046{bottom:508.680000px;}
.yc8_c00046{bottom:509.325000px;}
.yca_c00046{bottom:509.745000px;}
.yc5_c00046{bottom:510.825000px;}
.yc7_c00046{bottom:511.905000px;}
.yc4_c00046{bottom:514.245000px;}
.yc2_c00046{bottom:529.245000px;}
.yc3_c00046{bottom:530.325000px;}
.yc1_c00046{bottom:531.405000px;}
.yc0_c00046{bottom:531.825000px;}
.ybf_c00046{bottom:535.245000px;}
.ybe_c00046{bottom:547.680000px;}
.ybd_c00046{bottom:548.745000px;}
.ybb_c00046{bottom:550.470000px;}
.ybc_c00046{bottom:550.905000px;}
.yba_c00046{bottom:551.325000px;}
.yb9_c00046{bottom:552.180000px;}
.yb7_c00046{bottom:568.245000px;}
.yb5_c00046{bottom:569.130000px;}
.yb6_c00046{bottom:570.405000px;}
.yb8_c00046{bottom:570.630000px;}
.yb4_c00046{bottom:571.905000px;}
.yb3_c00046{bottom:573.405000px;}
.yb2_c00046{bottom:573.825000px;}
.yb0_c00046{bottom:586.905000px;}
.yab_c00046{bottom:587.745000px;}
.yac_c00046{bottom:588.630000px;}
.yaa_c00046{bottom:589.245000px;}
.yad_c00046{bottom:589.905000px;}
.yae_c00046{bottom:590.130000px;}
.yaf_c00046{bottom:590.970000px;}
.yb1_c00046{bottom:591.405000px;}
.ya9_c00046{bottom:591.630000px;}
.ya8_c00046{bottom:592.470000px;}
.ya6_c00046{bottom:608.745000px;}
.ya5_c00046{bottom:609.630000px;}
.ya3_c00046{bottom:610.245000px;}
.ya7_c00046{bottom:610.905000px;}
.ya4_c00046{bottom:612.405000px;}
.ya1_c00046{bottom:628.245000px;}
.ya0_c00046{bottom:628.905000px;}
.y9f_c00046{bottom:629.130000px;}
.ya2_c00046{bottom:630.405000px;}
.y9e_c00046{bottom:630.825000px;}
.y9d_c00046{bottom:633.825000px;}
.y99_c00046{bottom:645.405000px;}
.y9a_c00046{bottom:647.745000px;}
.y9b_c00046{bottom:648.630000px;}
.y9c_c00046{bottom:648.825000px;}
.y98_c00046{bottom:649.905000px;}
.y97_c00046{bottom:651.405000px;}
.y96_c00046{bottom:653.325000px;}
.y94_c00046{bottom:668.130000px;}
.y95_c00046{bottom:668.325000px;}
.y93_c00046{bottom:669.405000px;}
.y92_c00046{bottom:670.905000px;}
.y91_c00046{bottom:671.745000px;}
.y8e_c00046{bottom:686.745000px;}
.y8f_c00046{bottom:688.245000px;}
.y8d_c00046{bottom:688.905000px;}
.y90_c00046{bottom:689.130000px;}
.y8c_c00046{bottom:690.405000px;}
.y8b_c00046{bottom:691.905000px;}
.y8a_c00046{bottom:692.550000px;}
.y85_c00046{bottom:706.245000px;}
.y86_c00046{bottom:706.470000px;}
.y83_c00046{bottom:707.745000px;}
.y84_c00046{bottom:708.405000px;}
.y88_c00046{bottom:708.825000px;}
.y87_c00046{bottom:709.470000px;}
.y89_c00046{bottom:709.905000px;}
.y82_c00046{bottom:713.325000px;}
.y7f_c00046{bottom:725.745000px;}
.y80_c00046{bottom:726.825000px;}
.y7e_c00046{bottom:727.905000px;}
.y81_c00046{bottom:728.970000px;}
.y7c_c00046{bottom:729.180000px;}
.y7d_c00046{bottom:729.405000px;}
.y79_c00046{bottom:745.245000px;}
.y76_c00046{bottom:745.680000px;}
.y7b_c00046{bottom:746.745000px;}
.y77_c00046{bottom:747.405000px;}
.y7a_c00046{bottom:747.630000px;}
.y78_c00046{bottom:748.905000px;}
.y75_c00046{bottom:750.405000px;}
.y74_c00046{bottom:765.405000px;}
.y73_c00046{bottom:766.245000px;}
.y70_c00046{bottom:766.680000px;}
.y72_c00046{bottom:768.405000px;}
.y71_c00046{bottom:768.420000px;}
.y6d_c00046{bottom:790.905000px;}
.y6a_c00046{bottom:791.325000px;}
.y6b_c00046{bottom:791.970000px;}
.y69_c00046{bottom:792.405000px;}
.y6f_c00046{bottom:792.630000px;}
.y6c_c00046{bottom:793.050000px;}
.y6e_c00046{bottom:794.550000px;}
.y68_c00046{bottom:794.970000px;}
.y67_c00046{bottom:796.470000px;}
.y60_c00046{bottom:804.825000px;}
.y5f_c00046{bottom:805.905000px;}
.y62_c00046{bottom:806.325000px;}
.y61_c00046{bottom:807.195000px;}
.y66_c00046{bottom:807.405000px;}
.y63_c00046{bottom:807.630000px;}
.y5e_c00046{bottom:808.470000px;}
.y64_c00046{bottom:808.695000px;}
.y65_c00046{bottom:809.550000px;}
.y5d_c00046{bottom:809.970000px;}
.y5a_c00046{bottom:821.130000px;}
.y59_c00046{bottom:821.325000px;}
.y5c_c00046{bottom:822.405000px;}
.y5b_c00046{bottom:822.630000px;}
.y58_c00046{bottom:823.905000px;}
.y57_c00046{bottom:824.550000px;}
.y55_c00046{bottom:835.905000px;}
.y54_c00046{bottom:836.325000px;}
.y56_c00046{bottom:838.050000px;}
.y53_c00046{bottom:840.405000px;}
.y4f_c00046{bottom:849.825000px;}
.y4c_c00046{bottom:850.905000px;}
.y50_c00046{bottom:851.325000px;}
.y4d_c00046{bottom:851.550000px;}
.y4e_c00046{bottom:851.970000px;}
.y51_c00046{bottom:852.405000px;}
.y4a_c00046{bottom:853.050000px;}
.y4b_c00046{bottom:853.470000px;}
.y52_c00046{bottom:853.695000px;}
.y49_c00046{bottom:865.905000px;}
.y48_c00046{bottom:868.050000px;}
.y47_c00046{bottom:870.630000px;}
.y46_c00046{bottom:879.825000px;}
.y45_c00046{bottom:880.905000px;}
.y43_c00046{bottom:881.130000px;}
.y42_c00046{bottom:881.550000px;}
.y44_c00046{bottom:881.970000px;}
.y40_c00046{bottom:883.050000px;}
.y41_c00046{bottom:883.470000px;}
.y3c_c00046{bottom:894.825000px;}
.y3b_c00046{bottom:895.905000px;}
.y3a_c00046{bottom:896.745000px;}
.y3f_c00046{bottom:896.970000px;}
.y3d_c00046{bottom:897.195000px;}
.y3e_c00046{bottom:898.050000px;}
.y39_c00046{bottom:909.825000px;}
.y35_c00046{bottom:910.470000px;}
.y37_c00046{bottom:910.905000px;}
.y34_c00046{bottom:911.130000px;}
.y36_c00046{bottom:911.970000px;}
.y38_c00046{bottom:913.050000px;}
.y33_c00046{bottom:913.470000px;}
.y32_c00046{bottom:914.130000px;}
.y30_c00046{bottom:923.325000px;}
.y31_c00046{bottom:924.405000px;}
.y2f_c00046{bottom:925.470000px;}
.y2e_c00046{bottom:925.905000px;}
.y2d_c00046{bottom:927.195000px;}
.y2c_c00046{bottom:927.825000px;}
.y29_c00046{bottom:938.325000px;}
.y27_c00046{bottom:939.405000px;}
.y28_c00046{bottom:939.630000px;}
.y25_c00046{bottom:939.825000px;}
.y26_c00046{bottom:940.470000px;}
.y2b_c00046{bottom:940.905000px;}
.y2a_c00046{bottom:941.970000px;}
.y24_c00046{bottom:942.630000px;}
.y23_c00046{bottom:962.745000px;}
.y22_c00046{bottom:964.905000px;}
.y21_c00046{bottom:965.325000px;}
.y20_c00046{bottom:967.470000px;}
.y1f_c00046{bottom:982.245000px;}
.y1e_c00046{bottom:984.405000px;}
.y17_c00046{bottom:1000.905000px;}
.y16_c00046{bottom:1001.745000px;}
.y1b_c00046{bottom:1002.825000px;}
.y19_c00046{bottom:1003.245000px;}
.y1c_c00046{bottom:1003.905000px;}
.y1a_c00046{bottom:1004.130000px;}
.y15_c00046{bottom:1004.745000px;}
.y18_c00046{bottom:1004.970000px;}
.y1d_c00046{bottom:1005.405000px;}
.y14_c00046{bottom:1023.405000px;}
.y13_c00046{bottom:1024.470000px;}
.y12_c00046{bottom:1027.905000px;}
.ye_c00046{bottom:1040.745000px;}
.yf_c00046{bottom:1040.970000px;}
.y11_c00046{bottom:1042.245000px;}
.yc_c00046{bottom:1042.470000px;}
.yd_c00046{bottom:1042.905000px;}
.y10_c00046{bottom:1043.130000px;}
.yb_c00046{bottom:1044.405000px;}
.ya_c00046{bottom:1044.825000px;}
.y6_c00046{bottom:1059.405000px;}
.y9_c00046{bottom:1061.745000px;}
.y5_c00046{bottom:1062.630000px;}
.y4_c00046{bottom:1062.825000px;}
.y8_c00046{bottom:1063.470000px;}
.y7_c00046{bottom:1063.905000px;}
.y3_c00046{bottom:1065.825000px;}
.y1_c00046{bottom:1099.905000px;}
.y2_c00046{bottom:1102.050000px;}
.h9_c00046{height:4.206533px;}
.hb_c00046{height:14.612168px;}
.h7_c00046{height:16.752334px;}
.h4_c00046{height:23.025234px;}
.h2_c00046{height:25.091602px;}
.h5_c00046{height:31.364502px;}
.h1_c00046{height:35.571035px;}
.h3_c00046{height:39.777568px;}
.h6_c00046{height:43.910303px;}
.ha_c00046{height:48.116836px;}
.h8_c00046{height:52.323369px;}
.hc_c00046{height:56.456104px;}
.h0_c00046{height:1335.000000px;}
.w0_c00046{width:880.500000px;}
.x0_c00046{left:0.000000px;}
.x3_c00046{left:154.500000px;}
.x66_c00046{left:156.420000px;}
.x106_c00046{left:165.420000px;}
.x67_c00046{left:166.500000px;}
.x3b_c00046{left:168.420000px;}
.x1f_c00046{left:169.500000px;}
.x31_c00046{left:171.000000px;}
.x102_c00046{left:172.500000px;}
.x32_c00046{left:181.920000px;}
.xfe_c00046{left:184.080000px;}
.x3c_c00046{left:186.420000px;}
.x9d_c00046{left:187.500000px;}
.xa2_c00046{left:188.580000px;}
.x8f_c00046{left:192.420000px;}
.x4_c00046{left:195.420000px;}
.x12_c00046{left:198.420000px;}
.xab_c00046{left:200.580000px;}
.x45_c00046{left:202.500000px;}
.xa5_c00046{left:205.920000px;}
.x2e_c00046{left:208.500000px;}
.x84_c00046{left:210.000000px;}
.xba_c00046{left:211.500000px;}
.x46_c00046{left:213.420000px;}
.x7d_c00046{left:214.500000px;}
.x20_c00046{left:217.500000px;}
.x33_c00046{left:218.580000px;}
.x90_c00046{left:222.420000px;}
.x13_c00046{left:223.920000px;}
.x73_c00046{left:226.920000px;}
.x22_c00046{left:229.080000px;}
.x6a_c00046{left:231.000000px;}
.x4b_c00046{left:232.500000px;}
.x5f_c00046{left:237.000000px;}
.x103_c00046{left:240.000000px;}
.xbb_c00046{left:243.420000px;}
.xa6_c00046{left:244.920000px;}
.x85_c00046{left:246.000000px;}
.xb4_c00046{left:247.500000px;}
.x9e_c00046{left:249.000000px;}
.x76_c00046{left:250.080000px;}
.x4c_c00046{left:252.000000px;}
.x21_c00046{left:253.500000px;}
.x89_c00046{left:256.500000px;}
.xbf_c00046{left:259.920000px;}
.x2f_c00046{left:261.420000px;}
.xdd_c00046{left:262.500000px;}
.x47_c00046{left:265.500000px;}
.xf7_c00046{left:267.000000px;}
.x74_c00046{left:268.500000px;}
.x5_c00046{left:270.000000px;}
.x58_c00046{left:271.500000px;}
.xa7_c00046{left:272.580000px;}
.x23_c00046{left:275.580000px;}
.x96_c00046{left:277.920000px;}
.xcb_c00046{left:280.500000px;}
.x3d_c00046{left:281.580000px;}
.x7e_c00046{left:283.080000px;}
.xd0_c00046{left:285.000000px;}
.x34_c00046{left:289.920000px;}
.x6_c00046{left:292.080000px;}
.xe2_c00046{left:295.920000px;}
.x3e_c00046{left:297.000000px;}
.x30_c00046{left:298.080000px;}
.x48_c00046{left:299.580000px;}
.x6b_c00046{left:301.500000px;}
.x14_c00046{left:302.580000px;}
.x68_c00046{left:306.000000px;}
.x8a_c00046{left:307.080000px;}
.x24_c00046{left:310.500000px;}
.x60_c00046{left:312.420000px;}
.x4d_c00046{left:313.500000px;}
.xd4_c00046{left:314.580000px;}
.x35_c00046{left:316.920000px;}
.xda_c00046{left:318.000000px;}
.xff_c00046{left:319.080000px;}
.x15_c00046{left:321.420000px;}
.xb5_c00046{left:322.500000px;}
.x7_c00046{left:323.580000px;}
.x75_c00046{left:325.500000px;}
.x49_c00046{left:328.920000px;}
.xc4_c00046{left:330.000000px;}
.x6c_c00046{left:331.080000px;}
.xdb_c00046{left:333.420000px;}
.x69_c00046{left:334.920000px;}
.xac_c00046{left:336.000000px;}
.xd1_c00046{left:337.920000px;}
.xed_c00046{left:341.775000px;}
.x8_c00046{left:343.920000px;}
.xc5_c00046{left:345.000000px;}
.x16_c00046{left:346.500000px;}
.x77_c00046{left:348.000000px;}
.x59_c00046{left:349.080000px;}
.x4e_c00046{left:351.000000px;}
.xb6_c00046{left:352.500000px;}
.x25_c00046{left:355.080000px;}
.x100_c00046{left:356.580000px;}
.x91_c00046{left:358.500000px;}
.x7f_c00046{left:363.420000px;}
.xe8_c00046{left:364.920000px;}
.xbc_c00046{left:366.000000px;}
.x97_c00046{left:367.080000px;}
.xf8_c00046{left:370.500000px;}
.x9_c00046{left:371.580000px;}
.xd5_c00046{left:373.500000px;}
.xc0_c00046{left:374.580000px;}
.x3f_c00046{left:376.500000px;}
.xc6_c00046{left:378.420000px;}
.x4a_c00046{left:379.500000px;}
.xa8_c00046{left:381.000000px;}
.xee_c00046{left:382.500000px;}
.x9f_c00046{left:383.580000px;}
.x36_c00046{left:385.080000px;}
.xf9_c00046{left:387.420000px;}
.x4f_c00046{left:389.580000px;}
.xd2_c00046{left:391.500000px;}
.x80_c00046{left:394.500000px;}
.x78_c00046{left:396.000000px;}
.x2_c00046{left:397.500000px;}
.xe3_c00046{left:399.000000px;}
.x50_c00046{left:405.645000px;}
.xbd_c00046{left:408.420000px;}
.x92_c00046{left:409.500000px;}
.x6d_c00046{left:411.645000px;}
.xa3_c00046{left:414.000000px;}
.x98_c00046{left:415.500000px;}
.x5a_c00046{left:417.420000px;}
.xea_c00046{left:420.420000px;}
.x61_c00046{left:421.500000px;}
.xcc_c00046{left:424.500000px;}
.x26_c00046{left:426.000000px;}
.xd6_c00046{left:427.920000px;}
.x86_c00046{left:430.500000px;}
.xad_c00046{left:433.500000px;}
.x17_c00046{left:436.080000px;}
.xe4_c00046{left:437.355000px;}
.xa0_c00046{left:439.920000px;}
.xc1_c00046{left:441.420000px;}
.xa_c00046{left:442.500000px;}
.xd3_c00046{left:445.500000px;}
.x79_c00046{left:450.000000px;}
.x18_c00046{left:453.420000px;}
.x37_c00046{left:454.500000px;}
.x99_c00046{left:456.000000px;}
.xd7_c00046{left:459.000000px;}
.xdc_c00046{left:460.080000px;}
.xb7_c00046{left:462.000000px;}
.xfa_c00046{left:463.920000px;}
.x87_c00046{left:465.000000px;}
.x6e_c00046{left:467.580000px;}
.x104_c00046{left:469.920000px;}
.x62_c00046{left:472.500000px;}
.xf2_c00046{left:474.000000px;}
.xae_c00046{left:475.500000px;}
.xc7_c00046{left:478.500000px;}
.xcd_c00046{left:479.580000px;}
.x81_c00046{left:481.500000px;}
.x19_c00046{left:483.000000px;}
.xb_c00046{left:484.080000px;}
.x27_c00046{left:486.000000px;}
.x5b_c00046{left:487.080000px;}
.xe5_c00046{left:488.580000px;}
.x40_c00046{left:492.000000px;}
.x88_c00046{left:494.580000px;}
.x9a_c00046{left:499.500000px;}
.x51_c00046{left:501.000000px;}
.x41_c00046{left:502.920000px;}
.xc_c00046{left:504.000000px;}
.xf3_c00046{left:505.080000px;}
.x6f_c00046{left:507.000000px;}
.x28_c00046{left:511.500000px;}
.x63_c00046{left:512.580000px;}
.x38_c00046{left:517.080000px;}
.xb8_c00046{left:519.420000px;}
.x93_c00046{left:520.920000px;}
.x52_c00046{left:526.500000px;}
.x1a_c00046{left:528.000000px;}
.xc8_c00046{left:529.500000px;}
.x29_c00046{left:531.000000px;}
.xd_c00046{left:532.920000px;}
.xaf_c00046{left:534.000000px;}
.x39_c00046{left:535.920000px;}
.xc2_c00046{left:538.500000px;}
.x7a_c00046{left:540.420000px;}
.x1b_c00046{left:541.500000px;}
.xe6_c00046{left:546.420000px;}
.x64_c00046{left:553.080000px;}
.x42_c00046{left:555.000000px;}
.x5c_c00046{left:558.000000px;}
.xef_c00046{left:561.000000px;}
.x3a_c00046{left:562.500000px;}
.xe7_c00046{left:565.500000px;}
.x9b_c00046{left:567.000000px;}
.x8b_c00046{left:568.500000px;}
.x94_c00046{left:570.000000px;}
.xc3_c00046{left:571.080000px;}
.xbe_c00046{left:572.580000px;}
.x2a_c00046{left:574.500000px;}
.xfb_c00046{left:577.500000px;}
.x82_c00046{left:579.000000px;}
.xb0_c00046{left:580.080000px;}
.xde_c00046{left:583.080000px;}
.xf4_c00046{left:585.000000px;}
.x5d_c00046{left:586.920000px;}
.x1c_c00046{left:589.500000px;}
.xf0_c00046{left:594.000000px;}
.x53_c00046{left:595.500000px;}
.xe_c00046{left:596.580000px;}
.xb1_c00046{left:598.920000px;}
.xa1_c00046{left:600.000000px;}
.x1d_c00046{left:601.920000px;}
.x43_c00046{left:604.500000px;}
.x101_c00046{left:607.920000px;}
.x65_c00046{left:612.420000px;}
.x5e_c00046{left:615.000000px;}
.xdf_c00046{left:616.275000px;}
.x105_c00046{left:618.000000px;}
.x70_c00046{left:619.080000px;}
.x8c_c00046{left:620.580000px;}
.xb2_c00046{left:624.420000px;}
.x54_c00046{left:625.500000px;}
.x9c_c00046{left:627.000000px;}
.xf_c00046{left:628.500000px;}
.xa9_c00046{left:631.500000px;}
.x7b_c00046{left:634.080000px;}
.xe9_c00046{left:636.000000px;}
.x44_c00046{left:637.920000px;}
.x55_c00046{left:640.920000px;}
.xd8_c00046{left:642.420000px;}
.xc9_c00046{left:643.500000px;}
.x2b_c00046{left:649.500000px;}
.xfc_c00046{left:654.000000px;}
.x10_c00046{left:655.500000px;}
.xeb_c00046{left:657.855000px;}
.xf5_c00046{left:658.920000px;}
.xa4_c00046{left:661.500000px;}
.x83_c00046{left:663.000000px;}
.x7c_c00046{left:666.420000px;}
.x8d_c00046{left:667.920000px;}
.xd9_c00046{left:669.420000px;}
.xce_c00046{left:670.920000px;}
.x71_c00046{left:673.500000px;}
.xb3_c00046{left:678.000000px;}
.x1e_c00046{left:679.920000px;}
.x95_c00046{left:681.000000px;}
.x72_c00046{left:682.920000px;}
.xaa_c00046{left:686.580000px;}
.x2c_c00046{left:688.080000px;}
.xf1_c00046{left:690.000000px;}
.x56_c00046{left:691.500000px;}
.xe0_c00046{left:694.920000px;}
.xb9_c00046{left:696.000000px;}
.xf6_c00046{left:697.500000px;}
.xec_c00046{left:698.775000px;}
.x8e_c00046{left:703.500000px;}
.xe1_c00046{left:704.580000px;}
.xfd_c00046{left:706.080000px;}
.x2d_c00046{left:708.420000px;}
.xcf_c00046{left:709.920000px;}
.x57_c00046{left:711.000000px;}
.x1_c00046{left:715.920000px;}
.x11_c00046{left:717.000000px;}
.xca_c00046{left:720.000000px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.ls0_c00046{letter-spacing:0.000000pt;}
.ws0_c00046{word-spacing:0.000000pt;}
.fs8_c00046{font-size:3.040000pt;}
.fsa_c00046{font-size:10.560000pt;}
.fs6_c00046{font-size:12.106667pt;}
.fs3_c00046{font-size:16.640000pt;}
.fs1_c00046{font-size:18.133333pt;}
.fs4_c00046{font-size:22.666667pt;}
.fs0_c00046{font-size:25.706667pt;}
.fs2_c00046{font-size:28.746667pt;}
.fs5_c00046{font-size:31.733333pt;}
.fs9_c00046{font-size:34.773333pt;}
.fs7_c00046{font-size:37.813333pt;}
.fsb_c00046{font-size:40.800000pt;}
.y0_c00046{bottom:0.000000pt;}
.y137_c00046{bottom:225.106667pt;}
.y13c_c00046{bottom:226.066667pt;}
.y13a_c00046{bottom:226.440000pt;}
.y138_c00046{bottom:227.026667pt;}
.y139_c00046{bottom:227.973333pt;}
.y136_c00046{bottom:228.160000pt;}
.y13b_c00046{bottom:228.360000pt;}
.y134_c00046{bottom:231.600000pt;}
.y135_c00046{bottom:231.973333pt;}
.y12f_c00046{bottom:242.440000pt;}
.y133_c00046{bottom:243.773333pt;}
.y130_c00046{bottom:244.360000pt;}
.y132_c00046{bottom:244.560000pt;}
.y131_c00046{bottom:245.693333pt;}
.y12e_c00046{bottom:245.706667pt;}
.y12d_c00046{bottom:246.826667pt;}
.y12b_c00046{bottom:259.026667pt;}
.y12a_c00046{bottom:261.106667pt;}
.y12c_c00046{bottom:261.893333pt;}
.y129_c00046{bottom:266.066667pt;}
.y128_c00046{bottom:268.360000pt;}
.y123_c00046{bottom:276.560000pt;}
.y120_c00046{bottom:277.106667pt;}
.y11f_c00046{bottom:277.306667pt;}
.y125_c00046{bottom:277.693333pt;}
.y124_c00046{bottom:277.866667pt;}
.y11e_c00046{bottom:278.066667pt;}
.y127_c00046{bottom:278.440000pt;}
.y126_c00046{bottom:278.640000pt;}
.y121_c00046{bottom:279.026667pt;}
.y122_c00046{bottom:279.226667pt;}
.y11c_c00046{bottom:280.160000pt;}
.y11d_c00046{bottom:280.360000pt;}
.y11b_c00046{bottom:282.066667pt;}
.y113_c00046{bottom:293.133333pt;}
.y114_c00046{bottom:293.693333pt;}
.y115_c00046{bottom:294.440000pt;}
.y11a_c00046{bottom:294.466667pt;}
.y10f_c00046{bottom:295.026667pt;}
.y110_c00046{bottom:295.400000pt;}
.y116_c00046{bottom:296.360000pt;}
.y111_c00046{bottom:296.560000pt;}
.y117_c00046{bottom:296.733333pt;}
.y118_c00046{bottom:297.693333pt;}
.y10d_c00046{bottom:298.826667pt;}
.y112_c00046{bottom:299.226667pt;}
.y10e_c00046{bottom:299.973333pt;}
.y119_c00046{bottom:300.560000pt;}
.y108_c00046{bottom:311.026667pt;}
.y104_c00046{bottom:312.360000pt;}
.y109_c00046{bottom:313.106667pt;}
.y103_c00046{bottom:313.306667pt;}
.y105_c00046{bottom:313.693333pt;}
.y106_c00046{bottom:313.893333pt;}
.y10b_c00046{bottom:314.066667pt;}
.y10a_c00046{bottom:314.640000pt;}
.y107_c00046{bottom:315.026667pt;}
.y10c_c00046{bottom:315.226667pt;}
.y102_c00046{bottom:315.773333pt;}
.y100_c00046{bottom:328.360000pt;}
.yfd_c00046{bottom:329.106667pt;}
.yfc_c00046{bottom:330.066667pt;}
.yfb_c00046{bottom:330.440000pt;}
.yff_c00046{bottom:331.400000pt;}
.yfe_c00046{bottom:332.360000pt;}
.y101_c00046{bottom:332.560000pt;}
.yfa_c00046{bottom:334.066667pt;}
.yf5_c00046{bottom:345.893333pt;}
.yf8_c00046{bottom:346.066667pt;}
.yf4_c00046{bottom:347.773333pt;}
.yf6_c00046{bottom:348.733333pt;}
.yf9_c00046{bottom:349.106667pt;}
.yf7_c00046{bottom:349.693333pt;}
.yf3_c00046{bottom:351.773333pt;}
.yf2_c00046{bottom:363.800000pt;}
.yf0_c00046{bottom:365.106667pt;}
.yef_c00046{bottom:365.893333pt;}
.yed_c00046{bottom:366.640000pt;}
.yee_c00046{bottom:367.026667pt;}
.yf1_c00046{bottom:367.226667pt;}
.yec_c00046{bottom:368.360000pt;}
.yeb_c00046{bottom:370.066667pt;}
.ye9_c00046{bottom:380.560000pt;}
.ye6_c00046{bottom:381.693333pt;}
.ye8_c00046{bottom:382.640000pt;}
.ye4_c00046{bottom:383.026667pt;}
.ye5_c00046{bottom:383.400000pt;}
.ye7_c00046{bottom:384.360000pt;}
.yea_c00046{bottom:384.560000pt;}
.ye3_c00046{bottom:384.733333pt;}
.ye2_c00046{bottom:385.493333pt;}
.ydd_c00046{bottom:398.826667pt;}
.ye0_c00046{bottom:399.773333pt;}
.ye1_c00046{bottom:399.973333pt;}
.ydf_c00046{bottom:400.560000pt;}
.ydb_c00046{bottom:401.493333pt;}
.yde_c00046{bottom:401.693333pt;}
.ydc_c00046{bottom:403.026667pt;}
.yda_c00046{bottom:404.360000pt;}
.yd9_c00046{bottom:418.440000pt;}
.yd7_c00046{bottom:418.640000pt;}
.yd8_c00046{bottom:419.026667pt;}
.yd6_c00046{bottom:420.360000pt;}
.yd5_c00046{bottom:423.400000pt;}
.yd0_c00046{bottom:433.133333pt;}
.yd1_c00046{bottom:433.693333pt;}
.yd3_c00046{bottom:435.026667pt;}
.ycd_c00046{bottom:435.773333pt;}
.yd4_c00046{bottom:436.560000pt;}
.ycc_c00046{bottom:436.733333pt;}
.yd2_c00046{bottom:437.306667pt;}
.yce_c00046{bottom:437.693333pt;}
.ycf_c00046{bottom:439.226667pt;}
.ycb_c00046{bottom:441.693333pt;}
.yc9_c00046{bottom:451.773333pt;}
.yc6_c00046{bottom:452.160000pt;}
.yc8_c00046{bottom:452.733333pt;}
.yca_c00046{bottom:453.106667pt;}
.yc5_c00046{bottom:454.066667pt;}
.yc7_c00046{bottom:455.026667pt;}
.yc4_c00046{bottom:457.106667pt;}
.yc2_c00046{bottom:470.440000pt;}
.yc3_c00046{bottom:471.400000pt;}
.yc1_c00046{bottom:472.360000pt;}
.yc0_c00046{bottom:472.733333pt;}
.ybf_c00046{bottom:475.773333pt;}
.ybe_c00046{bottom:486.826667pt;}
.ybd_c00046{bottom:487.773333pt;}
.ybb_c00046{bottom:489.306667pt;}
.ybc_c00046{bottom:489.693333pt;}
.yba_c00046{bottom:490.066667pt;}
.yb9_c00046{bottom:490.826667pt;}
.yb7_c00046{bottom:505.106667pt;}
.yb5_c00046{bottom:505.893333pt;}
.yb6_c00046{bottom:507.026667pt;}
.yb8_c00046{bottom:507.226667pt;}
.yb4_c00046{bottom:508.360000pt;}
.yb3_c00046{bottom:509.693333pt;}
.yb2_c00046{bottom:510.066667pt;}
.yb0_c00046{bottom:521.693333pt;}
.yab_c00046{bottom:522.440000pt;}
.yac_c00046{bottom:523.226667pt;}
.yaa_c00046{bottom:523.773333pt;}
.yad_c00046{bottom:524.360000pt;}
.yae_c00046{bottom:524.560000pt;}
.yaf_c00046{bottom:525.306667pt;}
.yb1_c00046{bottom:525.693333pt;}
.ya9_c00046{bottom:525.893333pt;}
.ya8_c00046{bottom:526.640000pt;}
.ya6_c00046{bottom:541.106667pt;}
.ya5_c00046{bottom:541.893333pt;}
.ya3_c00046{bottom:542.440000pt;}
.ya7_c00046{bottom:543.026667pt;}
.ya4_c00046{bottom:544.360000pt;}
.ya1_c00046{bottom:558.440000pt;}
.ya0_c00046{bottom:559.026667pt;}
.y9f_c00046{bottom:559.226667pt;}
.ya2_c00046{bottom:560.360000pt;}
.y9e_c00046{bottom:560.733333pt;}
.y9d_c00046{bottom:563.400000pt;}
.y99_c00046{bottom:573.693333pt;}
.y9a_c00046{bottom:575.773333pt;}
.y9b_c00046{bottom:576.560000pt;}
.y9c_c00046{bottom:576.733333pt;}
.y98_c00046{bottom:577.693333pt;}
.y97_c00046{bottom:579.026667pt;}
.y96_c00046{bottom:580.733333pt;}
.y94_c00046{bottom:593.893333pt;}
.y95_c00046{bottom:594.066667pt;}
.y93_c00046{bottom:595.026667pt;}
.y92_c00046{bottom:596.360000pt;}
.y91_c00046{bottom:597.106667pt;}
.y8e_c00046{bottom:610.440000pt;}
.y8f_c00046{bottom:611.773333pt;}
.y8d_c00046{bottom:612.360000pt;}
.y90_c00046{bottom:612.560000pt;}
.y8c_c00046{bottom:613.693333pt;}
.y8b_c00046{bottom:615.026667pt;}
.y8a_c00046{bottom:615.600000pt;}
.y85_c00046{bottom:627.773333pt;}
.y86_c00046{bottom:627.973333pt;}
.y83_c00046{bottom:629.106667pt;}
.y84_c00046{bottom:629.693333pt;}
.y88_c00046{bottom:630.066667pt;}
.y87_c00046{bottom:630.640000pt;}
.y89_c00046{bottom:631.026667pt;}
.y82_c00046{bottom:634.066667pt;}
.y7f_c00046{bottom:645.106667pt;}
.y80_c00046{bottom:646.066667pt;}
.y7e_c00046{bottom:647.026667pt;}
.y81_c00046{bottom:647.973333pt;}
.y7c_c00046{bottom:648.160000pt;}
.y7d_c00046{bottom:648.360000pt;}
.y79_c00046{bottom:662.440000pt;}
.y76_c00046{bottom:662.826667pt;}
.y7b_c00046{bottom:663.773333pt;}
.y77_c00046{bottom:664.360000pt;}
.y7a_c00046{bottom:664.560000pt;}
.y78_c00046{bottom:665.693333pt;}
.y75_c00046{bottom:667.026667pt;}
.y74_c00046{bottom:680.360000pt;}
.y73_c00046{bottom:681.106667pt;}
.y70_c00046{bottom:681.493333pt;}
.y72_c00046{bottom:683.026667pt;}
.y71_c00046{bottom:683.040000pt;}
.y6d_c00046{bottom:703.026667pt;}
.y6a_c00046{bottom:703.400000pt;}
.y6b_c00046{bottom:703.973333pt;}
.y69_c00046{bottom:704.360000pt;}
.y6f_c00046{bottom:704.560000pt;}
.y6c_c00046{bottom:704.933333pt;}
.y6e_c00046{bottom:706.266667pt;}
.y68_c00046{bottom:706.640000pt;}
.y67_c00046{bottom:707.973333pt;}
.y60_c00046{bottom:715.400000pt;}
.y5f_c00046{bottom:716.360000pt;}
.y62_c00046{bottom:716.733333pt;}
.y61_c00046{bottom:717.506667pt;}
.y66_c00046{bottom:717.693333pt;}
.y63_c00046{bottom:717.893333pt;}
.y5e_c00046{bottom:718.640000pt;}
.y64_c00046{bottom:718.840000pt;}
.y65_c00046{bottom:719.600000pt;}
.y5d_c00046{bottom:719.973333pt;}
.y5a_c00046{bottom:729.893333pt;}
.y59_c00046{bottom:730.066667pt;}
.y5c_c00046{bottom:731.026667pt;}
.y5b_c00046{bottom:731.226667pt;}
.y58_c00046{bottom:732.360000pt;}
.y57_c00046{bottom:732.933333pt;}
.y55_c00046{bottom:743.026667pt;}
.y54_c00046{bottom:743.400000pt;}
.y56_c00046{bottom:744.933333pt;}
.y53_c00046{bottom:747.026667pt;}
.y4f_c00046{bottom:755.400000pt;}
.y4c_c00046{bottom:756.360000pt;}
.y50_c00046{bottom:756.733333pt;}
.y4d_c00046{bottom:756.933333pt;}
.y4e_c00046{bottom:757.306667pt;}
.y51_c00046{bottom:757.693333pt;}
.y4a_c00046{bottom:758.266667pt;}
.y4b_c00046{bottom:758.640000pt;}
.y52_c00046{bottom:758.840000pt;}
.y49_c00046{bottom:769.693333pt;}
.y48_c00046{bottom:771.600000pt;}
.y47_c00046{bottom:773.893333pt;}
.y46_c00046{bottom:782.066667pt;}
.y45_c00046{bottom:783.026667pt;}
.y43_c00046{bottom:783.226667pt;}
.y42_c00046{bottom:783.600000pt;}
.y44_c00046{bottom:783.973333pt;}
.y40_c00046{bottom:784.933333pt;}
.y41_c00046{bottom:785.306667pt;}
.y3c_c00046{bottom:795.400000pt;}
.y3b_c00046{bottom:796.360000pt;}
.y3a_c00046{bottom:797.106667pt;}
.y3f_c00046{bottom:797.306667pt;}
.y3d_c00046{bottom:797.506667pt;}
.y3e_c00046{bottom:798.266667pt;}
.y39_c00046{bottom:808.733333pt;}
.y35_c00046{bottom:809.306667pt;}
.y37_c00046{bottom:809.693333pt;}
.y34_c00046{bottom:809.893333pt;}
.y36_c00046{bottom:810.640000pt;}
.y38_c00046{bottom:811.600000pt;}
.y33_c00046{bottom:811.973333pt;}
.y32_c00046{bottom:812.560000pt;}
.y30_c00046{bottom:820.733333pt;}
.y31_c00046{bottom:821.693333pt;}
.y2f_c00046{bottom:822.640000pt;}
.y2e_c00046{bottom:823.026667pt;}
.y2d_c00046{bottom:824.173333pt;}
.y2c_c00046{bottom:824.733333pt;}
.y29_c00046{bottom:834.066667pt;}
.y27_c00046{bottom:835.026667pt;}
.y28_c00046{bottom:835.226667pt;}
.y25_c00046{bottom:835.400000pt;}
.y26_c00046{bottom:835.973333pt;}
.y2b_c00046{bottom:836.360000pt;}
.y2a_c00046{bottom:837.306667pt;}
.y24_c00046{bottom:837.893333pt;}
.y23_c00046{bottom:855.773333pt;}
.y22_c00046{bottom:857.693333pt;}
.y21_c00046{bottom:858.066667pt;}
.y20_c00046{bottom:859.973333pt;}
.y1f_c00046{bottom:873.106667pt;}
.y1e_c00046{bottom:875.026667pt;}
.y17_c00046{bottom:889.693333pt;}
.y16_c00046{bottom:890.440000pt;}
.y1b_c00046{bottom:891.400000pt;}
.y19_c00046{bottom:891.773333pt;}
.y1c_c00046{bottom:892.360000pt;}
.y1a_c00046{bottom:892.560000pt;}
.y15_c00046{bottom:893.106667pt;}
.y18_c00046{bottom:893.306667pt;}
.y1d_c00046{bottom:893.693333pt;}
.y14_c00046{bottom:909.693333pt;}
.y13_c00046{bottom:910.640000pt;}
.y12_c00046{bottom:913.693333pt;}
.ye_c00046{bottom:925.106667pt;}
.yf_c00046{bottom:925.306667pt;}
.y11_c00046{bottom:926.440000pt;}
.yc_c00046{bottom:926.640000pt;}
.yd_c00046{bottom:927.026667pt;}
.y10_c00046{bottom:927.226667pt;}
.yb_c00046{bottom:928.360000pt;}
.ya_c00046{bottom:928.733333pt;}
.y6_c00046{bottom:941.693333pt;}
.y9_c00046{bottom:943.773333pt;}
.y5_c00046{bottom:944.560000pt;}
.y4_c00046{bottom:944.733333pt;}
.y8_c00046{bottom:945.306667pt;}
.y7_c00046{bottom:945.693333pt;}
.y3_c00046{bottom:947.400000pt;}
.y1_c00046{bottom:977.693333pt;}
.y2_c00046{bottom:979.600000pt;}
.h9_c00046{height:3.739141pt;}
.hb_c00046{height:12.988594pt;}
.h7_c00046{height:14.890964pt;}
.h4_c00046{height:20.466875pt;}
.h2_c00046{height:22.303646pt;}
.h5_c00046{height:27.879557pt;}
.h1_c00046{height:31.618698pt;}
.h3_c00046{height:35.357839pt;}
.h6_c00046{height:39.031380pt;}
.ha_c00046{height:42.770521pt;}
.h8_c00046{height:46.509661pt;}
.hc_c00046{height:50.183203pt;}
.h0_c00046{height:1186.666667pt;}
.w0_c00046{width:782.666667pt;}
.x0_c00046{left:0.000000pt;}
.x3_c00046{left:137.333333pt;}
.x66_c00046{left:139.040000pt;}
.x106_c00046{left:147.040000pt;}
.x67_c00046{left:148.000000pt;}
.x3b_c00046{left:149.706667pt;}
.x1f_c00046{left:150.666667pt;}
.x31_c00046{left:152.000000pt;}
.x102_c00046{left:153.333333pt;}
.x32_c00046{left:161.706667pt;}
.xfe_c00046{left:163.626667pt;}
.x3c_c00046{left:165.706667pt;}
.x9d_c00046{left:166.666667pt;}
.xa2_c00046{left:167.626667pt;}
.x8f_c00046{left:171.040000pt;}
.x4_c00046{left:173.706667pt;}
.x12_c00046{left:176.373333pt;}
.xab_c00046{left:178.293333pt;}
.x45_c00046{left:180.000000pt;}
.xa5_c00046{left:183.040000pt;}
.x2e_c00046{left:185.333333pt;}
.x84_c00046{left:186.666667pt;}
.xba_c00046{left:188.000000pt;}
.x46_c00046{left:189.706667pt;}
.x7d_c00046{left:190.666667pt;}
.x20_c00046{left:193.333333pt;}
.x33_c00046{left:194.293333pt;}
.x90_c00046{left:197.706667pt;}
.x13_c00046{left:199.040000pt;}
.x73_c00046{left:201.706667pt;}
.x22_c00046{left:203.626667pt;}
.x6a_c00046{left:205.333333pt;}
.x4b_c00046{left:206.666667pt;}
.x5f_c00046{left:210.666667pt;}
.x103_c00046{left:213.333333pt;}
.xbb_c00046{left:216.373333pt;}
.xa6_c00046{left:217.706667pt;}
.x85_c00046{left:218.666667pt;}
.xb4_c00046{left:220.000000pt;}
.x9e_c00046{left:221.333333pt;}
.x76_c00046{left:222.293333pt;}
.x4c_c00046{left:224.000000pt;}
.x21_c00046{left:225.333333pt;}
.x89_c00046{left:228.000000pt;}
.xbf_c00046{left:231.040000pt;}
.x2f_c00046{left:232.373333pt;}
.xdd_c00046{left:233.333333pt;}
.x47_c00046{left:236.000000pt;}
.xf7_c00046{left:237.333333pt;}
.x74_c00046{left:238.666667pt;}
.x5_c00046{left:240.000000pt;}
.x58_c00046{left:241.333333pt;}
.xa7_c00046{left:242.293333pt;}
.x23_c00046{left:244.960000pt;}
.x96_c00046{left:247.040000pt;}
.xcb_c00046{left:249.333333pt;}
.x3d_c00046{left:250.293333pt;}
.x7e_c00046{left:251.626667pt;}
.xd0_c00046{left:253.333333pt;}
.x34_c00046{left:257.706667pt;}
.x6_c00046{left:259.626667pt;}
.xe2_c00046{left:263.040000pt;}
.x3e_c00046{left:264.000000pt;}
.x30_c00046{left:264.960000pt;}
.x48_c00046{left:266.293333pt;}
.x6b_c00046{left:268.000000pt;}
.x14_c00046{left:268.960000pt;}
.x68_c00046{left:272.000000pt;}
.x8a_c00046{left:272.960000pt;}
.x24_c00046{left:276.000000pt;}
.x60_c00046{left:277.706667pt;}
.x4d_c00046{left:278.666667pt;}
.xd4_c00046{left:279.626667pt;}
.x35_c00046{left:281.706667pt;}
.xda_c00046{left:282.666667pt;}
.xff_c00046{left:283.626667pt;}
.x15_c00046{left:285.706667pt;}
.xb5_c00046{left:286.666667pt;}
.x7_c00046{left:287.626667pt;}
.x75_c00046{left:289.333333pt;}
.x49_c00046{left:292.373333pt;}
.xc4_c00046{left:293.333333pt;}
.x6c_c00046{left:294.293333pt;}
.xdb_c00046{left:296.373333pt;}
.x69_c00046{left:297.706667pt;}
.xac_c00046{left:298.666667pt;}
.xd1_c00046{left:300.373333pt;}
.xed_c00046{left:303.800000pt;}
.x8_c00046{left:305.706667pt;}
.xc5_c00046{left:306.666667pt;}
.x16_c00046{left:308.000000pt;}
.x77_c00046{left:309.333333pt;}
.x59_c00046{left:310.293333pt;}
.x4e_c00046{left:312.000000pt;}
.xb6_c00046{left:313.333333pt;}
.x25_c00046{left:315.626667pt;}
.x100_c00046{left:316.960000pt;}
.x91_c00046{left:318.666667pt;}
.x7f_c00046{left:323.040000pt;}
.xe8_c00046{left:324.373333pt;}
.xbc_c00046{left:325.333333pt;}
.x97_c00046{left:326.293333pt;}
.xf8_c00046{left:329.333333pt;}
.x9_c00046{left:330.293333pt;}
.xd5_c00046{left:332.000000pt;}
.xc0_c00046{left:332.960000pt;}
.x3f_c00046{left:334.666667pt;}
.xc6_c00046{left:336.373333pt;}
.x4a_c00046{left:337.333333pt;}
.xa8_c00046{left:338.666667pt;}
.xee_c00046{left:340.000000pt;}
.x9f_c00046{left:340.960000pt;}
.x36_c00046{left:342.293333pt;}
.xf9_c00046{left:344.373333pt;}
.x4f_c00046{left:346.293333pt;}
.xd2_c00046{left:348.000000pt;}
.x80_c00046{left:350.666667pt;}
.x78_c00046{left:352.000000pt;}
.x2_c00046{left:353.333333pt;}
.xe3_c00046{left:354.666667pt;}
.x50_c00046{left:360.573333pt;}
.xbd_c00046{left:363.040000pt;}
.x92_c00046{left:364.000000pt;}
.x6d_c00046{left:365.906667pt;}
.xa3_c00046{left:368.000000pt;}
.x98_c00046{left:369.333333pt;}
.x5a_c00046{left:371.040000pt;}
.xea_c00046{left:373.706667pt;}
.x61_c00046{left:374.666667pt;}
.xcc_c00046{left:377.333333pt;}
.x26_c00046{left:378.666667pt;}
.xd6_c00046{left:380.373333pt;}
.x86_c00046{left:382.666667pt;}
.xad_c00046{left:385.333333pt;}
.x17_c00046{left:387.626667pt;}
.xe4_c00046{left:388.760000pt;}
.xa0_c00046{left:391.040000pt;}
.xc1_c00046{left:392.373333pt;}
.xa_c00046{left:393.333333pt;}
.xd3_c00046{left:396.000000pt;}
.x79_c00046{left:400.000000pt;}
.x18_c00046{left:403.040000pt;}
.x37_c00046{left:404.000000pt;}
.x99_c00046{left:405.333333pt;}
.xd7_c00046{left:408.000000pt;}
.xdc_c00046{left:408.960000pt;}
.xb7_c00046{left:410.666667pt;}
.xfa_c00046{left:412.373333pt;}
.x87_c00046{left:413.333333pt;}
.x6e_c00046{left:415.626667pt;}
.x104_c00046{left:417.706667pt;}
.x62_c00046{left:420.000000pt;}
.xf2_c00046{left:421.333333pt;}
.xae_c00046{left:422.666667pt;}
.xc7_c00046{left:425.333333pt;}
.xcd_c00046{left:426.293333pt;}
.x81_c00046{left:428.000000pt;}
.x19_c00046{left:429.333333pt;}
.xb_c00046{left:430.293333pt;}
.x27_c00046{left:432.000000pt;}
.x5b_c00046{left:432.960000pt;}
.xe5_c00046{left:434.293333pt;}
.x40_c00046{left:437.333333pt;}
.x88_c00046{left:439.626667pt;}
.x9a_c00046{left:444.000000pt;}
.x51_c00046{left:445.333333pt;}
.x41_c00046{left:447.040000pt;}
.xc_c00046{left:448.000000pt;}
.xf3_c00046{left:448.960000pt;}
.x6f_c00046{left:450.666667pt;}
.x28_c00046{left:454.666667pt;}
.x63_c00046{left:455.626667pt;}
.x38_c00046{left:459.626667pt;}
.xb8_c00046{left:461.706667pt;}
.x93_c00046{left:463.040000pt;}
.x52_c00046{left:468.000000pt;}
.x1a_c00046{left:469.333333pt;}
.xc8_c00046{left:470.666667pt;}
.x29_c00046{left:472.000000pt;}
.xd_c00046{left:473.706667pt;}
.xaf_c00046{left:474.666667pt;}
.x39_c00046{left:476.373333pt;}
.xc2_c00046{left:478.666667pt;}
.x7a_c00046{left:480.373333pt;}
.x1b_c00046{left:481.333333pt;}
.xe6_c00046{left:485.706667pt;}
.x64_c00046{left:491.626667pt;}
.x42_c00046{left:493.333333pt;}
.x5c_c00046{left:496.000000pt;}
.xef_c00046{left:498.666667pt;}
.x3a_c00046{left:500.000000pt;}
.xe7_c00046{left:502.666667pt;}
.x9b_c00046{left:504.000000pt;}
.x8b_c00046{left:505.333333pt;}
.x94_c00046{left:506.666667pt;}
.xc3_c00046{left:507.626667pt;}
.xbe_c00046{left:508.960000pt;}
.x2a_c00046{left:510.666667pt;}
.xfb_c00046{left:513.333333pt;}
.x82_c00046{left:514.666667pt;}
.xb0_c00046{left:515.626667pt;}
.xde_c00046{left:518.293333pt;}
.xf4_c00046{left:520.000000pt;}
.x5d_c00046{left:521.706667pt;}
.x1c_c00046{left:524.000000pt;}
.xf0_c00046{left:528.000000pt;}
.x53_c00046{left:529.333333pt;}
.xe_c00046{left:530.293333pt;}
.xb1_c00046{left:532.373333pt;}
.xa1_c00046{left:533.333333pt;}
.x1d_c00046{left:535.040000pt;}
.x43_c00046{left:537.333333pt;}
.x101_c00046{left:540.373333pt;}
.x65_c00046{left:544.373333pt;}
.x5e_c00046{left:546.666667pt;}
.xdf_c00046{left:547.800000pt;}
.x105_c00046{left:549.333333pt;}
.x70_c00046{left:550.293333pt;}
.x8c_c00046{left:551.626667pt;}
.xb2_c00046{left:555.040000pt;}
.x54_c00046{left:556.000000pt;}
.x9c_c00046{left:557.333333pt;}
.xf_c00046{left:558.666667pt;}
.xa9_c00046{left:561.333333pt;}
.x7b_c00046{left:563.626667pt;}
.xe9_c00046{left:565.333333pt;}
.x44_c00046{left:567.040000pt;}
.x55_c00046{left:569.706667pt;}
.xd8_c00046{left:571.040000pt;}
.xc9_c00046{left:572.000000pt;}
.x2b_c00046{left:577.333333pt;}
.xfc_c00046{left:581.333333pt;}
.x10_c00046{left:582.666667pt;}
.xeb_c00046{left:584.760000pt;}
.xf5_c00046{left:585.706667pt;}
.xa4_c00046{left:588.000000pt;}
.x83_c00046{left:589.333333pt;}
.x7c_c00046{left:592.373333pt;}
.x8d_c00046{left:593.706667pt;}
.xd9_c00046{left:595.040000pt;}
.xce_c00046{left:596.373333pt;}
.x71_c00046{left:598.666667pt;}
.xb3_c00046{left:602.666667pt;}
.x1e_c00046{left:604.373333pt;}
.x95_c00046{left:605.333333pt;}
.x72_c00046{left:607.040000pt;}
.xaa_c00046{left:610.293333pt;}
.x2c_c00046{left:611.626667pt;}
.xf1_c00046{left:613.333333pt;}
.x56_c00046{left:614.666667pt;}
.xe0_c00046{left:617.706667pt;}
.xb9_c00046{left:618.666667pt;}
.xf6_c00046{left:620.000000pt;}
.xec_c00046{left:621.133333pt;}
.x8e_c00046{left:625.333333pt;}
.xe1_c00046{left:626.293333pt;}
.xfd_c00046{left:627.626667pt;}
.x2d_c00046{left:629.706667pt;}
.xcf_c00046{left:631.040000pt;}
.x57_c00046{left:632.000000pt;}
.x1_c00046{left:636.373333pt;}
.x11_c00046{left:637.333333pt;}
.xca_c00046{left:640.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_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_30477b09a64e9dc9d0cd3de5.woff2')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb1_c00047{transform:matrix(0.308666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308666,0.000000,0.000000,0.250000,0,0);}
.m81_c00047{transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);}
.md7_c00047{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.m3e_c00047{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m31_c00047{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.m9c_c00047{transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);}
.mae_c00047{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m60_c00047{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.mc5_c00047{transform:matrix(0.365126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365126,0.000000,0.000000,0.250000,0,0);}
.ma5_c00047{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m68_c00047{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mba_c00047{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mca_c00047{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m80_c00047{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m45_c00047{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m8b_c00047{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m95_c00047{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m41_c00047{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m43_c00047{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m9b_c00047{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m34_c00047{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m7e_c00047{transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);}
.mec_c00047{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m4f_c00047{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m19_c00047{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m91_c00047{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.mb8_c00047{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m2f_c00047{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.mcf_c00047{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m30_c00047{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m12_c00047{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mac_c00047{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m90_c00047{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.md9_c00047{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.me6_c00047{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m75_c00047{transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);}
.m67_c00047{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.ma3_c00047{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m55_c00047{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m92_c00047{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m1e_c00047{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_c00047{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m6e_c00047{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m63_c00047{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m98_c00047{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.ma1_c00047{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m6a_c00047{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m5a_c00047{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mc6_c00047{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m3d_c00047{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m7a_c00047{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.mbf_c00047{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m36_c00047{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m70_c00047{transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);}
.mab_c00047{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.ma2_c00047{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m78_c00047{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m53_c00047{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.me2_c00047{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m4d_c00047{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mbc_c00047{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.ma6_c00047{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mf_c00047{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m77_c00047{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.m79_c00047{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.mc9_c00047{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.md6_c00047{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m20_c00047{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m1b_c00047{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m9a_c00047{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.mea_c00047{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.md0_c00047{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.me0_c00047{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.meb_c00047{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.md8_c00047{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.mc4_c00047{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.mb2_c00047{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mc7_c00047{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m7d_c00047{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m28_c00047{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m37_c00047{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.mc0_c00047{transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);}
.m11_c00047{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m26_c00047{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m8f_c00047{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m71_c00047{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m39_c00047{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.m54_c00047{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m1d_c00047{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m84_c00047{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.ma4_c00047{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m6f_c00047{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m44_c00047{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m27_c00047{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.mb9_c00047{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.mda_c00047{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.mde_c00047{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m87_c00047{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m2_c00047{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m72_c00047{transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);}
.m15_c00047{transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);}
.m97_c00047{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m89_c00047{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m8d_c00047{transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);}
.maf_c00047{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m40_c00047{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m56_c00047{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.mbd_c00047{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m7c_c00047{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.me1_c00047{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m7f_c00047{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.md2_c00047{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m5b_c00047{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m61_c00047{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m8_c00047{transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);}
.m94_c00047{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m29_c00047{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m3f_c00047{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mc_c00047{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.md5_c00047{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m59_c00047{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m83_c00047{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m48_c00047{transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);}
.mad_c00047{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m0_c00047{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);}
.me8_c00047{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m9f_c00047{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m6_c00047{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m66_c00047{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.me9_c00047{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m17_c00047{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.md1_c00047{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m3a_c00047{transform:matrix(0.510668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510668,0.000000,0.000000,0.250000,0,0);}
.m51_c00047{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m42_c00047{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.me4_c00047{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m4a_c00047{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m2e_c00047{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m99_c00047{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mb4_c00047{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.md_c00047{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.ma_c00047{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m32_c00047{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m9e_c00047{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.mb5_c00047{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m4c_c00047{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m13_c00047{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mb3_c00047{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m96_c00047{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m58_c00047{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m5c_c00047{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m22_c00047{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m35_c00047{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m8a_c00047{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m3b_c00047{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mb6_c00047{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m2c_c00047{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m65_c00047{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mce_c00047{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m38_c00047{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m18_c00047{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m16_c00047{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mc8_c00047{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mcb_c00047{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m24_c00047{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m88_c00047{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.md4_c00047{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.md3_c00047{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m21_c00047{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.ma9_c00047{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m5_c00047{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m69_c00047{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m74_c00047{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m8e_c00047{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mb7_c00047{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m10_c00047{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mcd_c00047{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m2a_c00047{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m7_c00047{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m93_c00047{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m62_c00047{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m49_c00047{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mdc_c00047{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m46_c00047{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mdb_c00047{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m2b_c00047{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m9d_c00047{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m7b_c00047{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m57_c00047{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.mbb_c00047{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.me7_c00047{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.ma7_c00047{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.mb0_c00047{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m23_c00047{transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);}
.m14_c00047{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.me5_c00047{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mbe_c00047{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mcc_c00047{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.mc3_c00047{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.m8c_c00047{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m2d_c00047{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m73_c00047{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.me3_c00047{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m47_c00047{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m5e_c00047{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.m25_c00047{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mb_c00047{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m6c_c00047{transform:matrix(0.603216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603216,0.000000,0.000000,0.250000,0,0);}
.m3c_c00047{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.m4_c00047{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m5f_c00047{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m86_c00047{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.m9_c00047{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m1a_c00047{transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);}
.mdd_c00047{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m1_c00047{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m50_c00047{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m6d_c00047{transform:matrix(0.642116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642116,0.000000,0.000000,0.250000,0,0);}
.ma0_c00047{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.m4b_c00047{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.me_c00047{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m76_c00047{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m5d_c00047{transform:matrix(0.689412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689412,0.000000,0.000000,0.250000,0,0);}
.m82_c00047{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.m4e_c00047{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m6b_c00047{transform:matrix(0.709135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709135,0.000000,0.000000,0.250000,0,0);}
.m52_c00047{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.mc2_c00047{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m3_c00047{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.maa_c00047{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.mdf_c00047{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m1c_c00047{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m33_c00047{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mc1_c00047{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m1f_c00047{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m64_c00047{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m85_c00047{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws1_c00047{word-spacing:-7.637413px;}
.ws0_c00047{word-spacing:-4.819689px;}
.ws2_c00047{word-spacing:0.000000px;}
.fc0_c00047{color:transparent;}
.fs7_c00047{font-size:3.420000px;}
.fs6_c00047{font-size:13.620000px;}
.fs3_c00047{font-size:18.720000px;}
.fs1_c00047{font-size:20.400000px;}
.fs0_c00047{font-size:25.500000px;}
.fs2_c00047{font-size:28.920000px;}
.fs5_c00047{font-size:32.340000px;}
.fs4_c00047{font-size:35.700000px;}
.fs8_c00047{font-size:39.120000px;}
.y0_c00047{bottom:0.000000px;}
.ybf_c00047{bottom:251.745000px;}
.ybc_c00047{bottom:252.405000px;}
.ybe_c00047{bottom:252.630000px;}
.ybd_c00047{bottom:253.905000px;}
.ybb_c00047{bottom:271.245000px;}
.yba_c00047{bottom:272.130000px;}
.yb9_c00047{bottom:273.405000px;}
.yb5_c00047{bottom:290.745000px;}
.yb8_c00047{bottom:291.630000px;}
.yb7_c00047{bottom:291.825000px;}
.yb6_c00047{bottom:292.905000px;}
.yb4_c00047{bottom:309.405000px;}
.yaf_c00047{bottom:310.245000px;}
.yb1_c00047{bottom:310.470000px;}
.yb3_c00047{bottom:311.325000px;}
.yae_c00047{bottom:311.970000px;}
.yad_c00047{bottom:312.405000px;}
.yb2_c00047{bottom:312.630000px;}
.yb0_c00047{bottom:313.905000px;}
.ya8_c00047{bottom:329.745000px;}
.yac_c00047{bottom:330.825000px;}
.yaa_c00047{bottom:331.245000px;}
.yab_c00047{bottom:331.905000px;}
.ya9_c00047{bottom:333.405000px;}
.ya5_c00047{bottom:348.405000px;}
.ya6_c00047{bottom:349.245000px;}
.ya7_c00047{bottom:349.470000px;}
.ya1_c00047{bottom:350.745000px;}
.ya0_c00047{bottom:351.405000px;}
.ya3_c00047{bottom:351.630000px;}
.ya4_c00047{bottom:352.470000px;}
.ya2_c00047{bottom:352.905000px;}
.y9e_c00047{bottom:367.905000px;}
.y9a_c00047{bottom:368.745000px;}
.y9c_c00047{bottom:370.245000px;}
.y9f_c00047{bottom:371.130000px;}
.y9d_c00047{bottom:371.325000px;}
.y9b_c00047{bottom:372.405000px;}
.y99_c00047{bottom:389.745000px;}
.y96_c00047{bottom:391.905000px;}
.y98_c00047{bottom:392.970000px;}
.y97_c00047{bottom:393.420000px;}
.y95_c00047{bottom:410.745000px;}
.y94_c00047{bottom:411.405000px;}
.y8f_c00047{bottom:428.745000px;}
.y90_c00047{bottom:430.905000px;}
.y92_c00047{bottom:431.130000px;}
.y93_c00047{bottom:431.970000px;}
.y91_c00047{bottom:432.405000px;}
.y8c_c00047{bottom:448.245000px;}
.y8e_c00047{bottom:449.745000px;}
.y8a_c00047{bottom:450.405000px;}
.y8d_c00047{bottom:451.470000px;}
.y8b_c00047{bottom:451.905000px;}
.y88_c00047{bottom:467.745000px;}
.y87_c00047{bottom:469.245000px;}
.y89_c00047{bottom:469.905000px;}
.y85_c00047{bottom:470.130000px;}
.y86_c00047{bottom:470.970000px;}
.y84_c00047{bottom:471.405000px;}
.y7c_c00047{bottom:488.325000px;}
.y81_c00047{bottom:488.745000px;}
.y82_c00047{bottom:489.405000px;}
.y83_c00047{bottom:489.630000px;}
.y7f_c00047{bottom:489.825000px;}
.y80_c00047{bottom:490.470000px;}
.y7d_c00047{bottom:490.905000px;}
.y7e_c00047{bottom:491.970000px;}
.y79_c00047{bottom:508.245000px;}
.y7b_c00047{bottom:508.905000px;}
.y78_c00047{bottom:509.130000px;}
.y7a_c00047{bottom:509.325000px;}
.y77_c00047{bottom:510.405000px;}
.y75_c00047{bottom:527.745000px;}
.y76_c00047{bottom:529.905000px;}
.y72_c00047{bottom:546.405000px;}
.y71_c00047{bottom:547.245000px;}
.y73_c00047{bottom:547.680000px;}
.y74_c00047{bottom:548.745000px;}
.y70_c00047{bottom:549.405000px;}
.y6e_c00047{bottom:550.905000px;}
.y6f_c00047{bottom:550.920000px;}
.y6c_c00047{bottom:566.745000px;}
.y6d_c00047{bottom:567.825000px;}
.y6b_c00047{bottom:568.245000px;}
.y68_c00047{bottom:568.905000px;}
.y69_c00047{bottom:569.130000px;}
.y6a_c00047{bottom:570.420000px;}
.y66_c00047{bottom:586.905000px;}
.y67_c00047{bottom:587.745000px;}
.y65_c00047{bottom:589.905000px;}
.y64_c00047{bottom:605.970000px;}
.y61_c00047{bottom:606.405000px;}
.y60_c00047{bottom:607.245000px;}
.y63_c00047{bottom:607.905000px;}
.y62_c00047{bottom:609.405000px;}
.y5f_c00047{bottom:624.405000px;}
.y5e_c00047{bottom:625.470000px;}
.y5d_c00047{bottom:626.745000px;}
.y5b_c00047{bottom:626.970000px;}
.y5c_c00047{bottom:628.050000px;}
.y5a_c00047{bottom:628.905000px;}
.y57_c00047{bottom:645.405000px;}
.y56_c00047{bottom:646.245000px;}
.y58_c00047{bottom:646.470000px;}
.y59_c00047{bottom:648.405000px;}
.y54_c00047{bottom:664.905000px;}
.y51_c00047{bottom:665.745000px;}
.y53_c00047{bottom:666.825000px;}
.y55_c00047{bottom:667.905000px;}
.y52_c00047{bottom:669.420000px;}
.y4e_c00047{bottom:686.970000px;}
.y4f_c00047{bottom:687.405000px;}
.y50_c00047{bottom:688.905000px;}
.y48_c00047{bottom:704.745000px;}
.y49_c00047{bottom:706.245000px;}
.y4d_c00047{bottom:706.905000px;}
.y4c_c00047{bottom:707.325000px;}
.y4b_c00047{bottom:708.405000px;}
.y4a_c00047{bottom:708.420000px;}
.y47_c00047{bottom:731.970000px;}
.y43_c00047{bottom:732.825000px;}
.y45_c00047{bottom:733.905000px;}
.y46_c00047{bottom:734.130000px;}
.y44_c00047{bottom:734.970000px;}
.y3e_c00047{bottom:751.470000px;}
.y3d_c00047{bottom:752.325000px;}
.y3f_c00047{bottom:752.550000px;}
.y40_c00047{bottom:753.405000px;}
.y41_c00047{bottom:753.630000px;}
.y42_c00047{bottom:754.695000px;}
.y3c_c00047{bottom:779.745000px;}
.y3b_c00047{bottom:781.905000px;}
.y39_c00047{bottom:823.245000px;}
.y38_c00047{bottom:825.405000px;}
.y3a_c00047{bottom:825.630000px;}
.y36_c00047{bottom:842.745000px;}
.y37_c00047{bottom:843.630000px;}
.y35_c00047{bottom:844.905000px;}
.y34_c00047{bottom:845.970000px;}
.y33_c00047{bottom:861.405000px;}
.y32_c00047{bottom:862.245000px;}
.y31_c00047{bottom:862.470000px;}
.y2e_c00047{bottom:864.405000px;}
.y30_c00047{bottom:865.470000px;}
.y2f_c00047{bottom:865.905000px;}
.y2d_c00047{bottom:881.745000px;}
.y2b_c00047{bottom:882.825000px;}
.y2c_c00047{bottom:883.905000px;}
.y29_c00047{bottom:902.745000px;}
.y2a_c00047{bottom:903.405000px;}
.y28_c00047{bottom:903.630000px;}
.y27_c00047{bottom:904.905000px;}
.y23_c00047{bottom:921.405000px;}
.y25_c00047{bottom:922.245000px;}
.y24_c00047{bottom:923.130000px;}
.y22_c00047{bottom:923.325000px;}
.y21_c00047{bottom:924.405000px;}
.y26_c00047{bottom:925.470000px;}
.y1e_c00047{bottom:941.745000px;}
.y1f_c00047{bottom:942.825000px;}
.y20_c00047{bottom:943.470000px;}
.y1d_c00047{bottom:943.905000px;}
.y1c_c00047{bottom:960.405000px;}
.y1b_c00047{bottom:961.245000px;}
.y1a_c00047{bottom:962.325000px;}
.y19_c00047{bottom:963.405000px;}
.y16_c00047{bottom:980.745000px;}
.y17_c00047{bottom:981.630000px;}
.y15_c00047{bottom:982.905000px;}
.y18_c00047{bottom:983.130000px;}
.y13_c00047{bottom:1000.245000px;}
.y14_c00047{bottom:1002.405000px;}
.y12_c00047{bottom:1018.245000px;}
.ye_c00047{bottom:1021.245000px;}
.y10_c00047{bottom:1021.905000px;}
.yf_c00047{bottom:1022.130000px;}
.y11_c00047{bottom:1023.405000px;}
.ya_c00047{bottom:1039.245000px;}
.yd_c00047{bottom:1040.130000px;}
.yb_c00047{bottom:1041.405000px;}
.yc_c00047{bottom:1042.470000px;}
.y6_c00047{bottom:1057.905000px;}
.y7_c00047{bottom:1058.745000px;}
.y5_c00047{bottom:1058.970000px;}
.y3_c00047{bottom:1060.905000px;}
.y4_c00047{bottom:1061.130000px;}
.y9_c00047{bottom:1061.970000px;}
.y8_c00047{bottom:1062.405000px;}
.y2_c00047{bottom:1100.550000px;}
.y1_c00047{bottom:1100.970000px;}
.h8_c00047{height:4.206533px;}
.h7_c00047{height:16.752334px;}
.h4_c00047{height:23.025234px;}
.h2_c00047{height:25.091602px;}
.h1_c00047{height:31.364502px;}
.h3_c00047{height:35.571035px;}
.h6_c00047{height:39.777568px;}
.h5_c00047{height:43.910303px;}
.h9_c00047{height:48.116836px;}
.h0_c00047{height:1335.000000px;}
.w0_c00047{width:880.500000px;}
.x0_c00047{left:0.000000px;}
.x1_c00047{left:151.920000px;}
.x9a_c00047{left:153.000000px;}
.x30_c00047{left:166.500000px;}
.x92_c00047{left:168.420000px;}
.x9c_c00047{left:169.500000px;}
.x9b_c00047{left:172.500000px;}
.xa4_c00047{left:175.080000px;}
.xf3_c00047{left:178.500000px;}
.xef_c00047{left:180.000000px;}
.x3_c00047{left:181.500000px;}
.x82_c00047{left:184.920000px;}
.xa5_c00047{left:187.920000px;}
.x5b_c00047{left:189.000000px;}
.x6e_c00047{left:190.920000px;}
.xb1_c00047{left:193.920000px;}
.x4_c00047{left:195.420000px;}
.x3b_c00047{left:196.500000px;}
.xf4_c00047{left:198.420000px;}
.xf8_c00047{left:201.000000px;}
.x12_c00047{left:205.500000px;}
.xe0_c00047{left:207.000000px;}
.x73_c00047{left:208.920000px;}
.x93_c00047{left:210.420000px;}
.x7e_c00047{left:211.500000px;}
.x46_c00047{left:212.580000px;}
.x105_c00047{left:215.580000px;}
.xa6_c00047{left:218.580000px;}
.xbd_c00047{left:220.080000px;}
.x1c_c00047{left:223.920000px;}
.xd6_c00047{left:225.000000px;}
.x8d_c00047{left:228.000000px;}
.xcc_c00047{left:229.500000px;}
.x5_c00047{left:232.500000px;}
.x5c_c00047{left:237.000000px;}
.x3c_c00047{left:238.500000px;}
.x83_c00047{left:241.500000px;}
.xa7_c00047{left:242.580000px;}
.x74_c00047{left:244.500000px;}
.x106_c00047{left:246.000000px;}
.x6f_c00047{left:247.500000px;}
.xbe_c00047{left:249.000000px;}
.x66_c00047{left:250.080000px;}
.xe1_c00047{left:251.580000px;}
.x31_c00047{left:253.275000px;}
.x13_c00047{left:255.000000px;}
.x26_c00047{left:256.920000px;}
.x9d_c00047{left:259.500000px;}
.x1d_c00047{left:261.000000px;}
.xf0_c00047{left:262.920000px;}
.xb2_c00047{left:264.420000px;}
.x4f_c00047{left:266.580000px;}
.x94_c00047{left:268.500000px;}
.x6_c00047{left:271.500000px;}
.xcd_c00047{left:273.000000px;}
.x8e_c00047{left:274.080000px;}
.xe5_c00047{left:276.000000px;}
.x32_c00047{left:277.920000px;}
.xc7_c00047{left:279.000000px;}
.x9e_c00047{left:280.500000px;}
.x5d_c00047{left:282.000000px;}
.x67_c00047{left:283.080000px;}
.x1e_c00047{left:285.420000px;}
.xa8_c00047{left:287.580000px;}
.x47_c00047{left:291.420000px;}
.xce_c00047{left:292.500000px;}
.x5e_c00047{left:297.000000px;}
.x50_c00047{left:300.420000px;}
.xe6_c00047{left:301.500000px;}
.x75_c00047{left:303.420000px;}
.xcf_c00047{left:304.500000px;}
.x3d_c00047{left:306.000000px;}
.xf5_c00047{left:309.420000px;}
.x27_c00047{left:313.500000px;}
.x14_c00047{left:317.580000px;}
.xc2_c00047{left:319.080000px;}
.x7_c00047{left:321.000000px;}
.x107_c00047{left:322.500000px;}
.xe7_c00047{left:324.000000px;}
.x84_c00047{left:325.920000px;}
.x28_c00047{left:331.080000px;}
.xa9_c00047{left:333.420000px;}
.xd0_c00047{left:334.500000px;}
.x15_c00047{left:336.420000px;}
.x51_c00047{left:337.500000px;}
.x85_c00047{left:339.000000px;}
.x9f_c00047{left:343.275000px;}
.x8_c00047{left:344.580000px;}
.xbf_c00047{left:346.500000px;}
.x33_c00047{left:348.000000px;}
.x76_c00047{left:349.080000px;}
.x3e_c00047{left:351.000000px;}
.xe8_c00047{left:354.000000px;}
.xe2_c00047{left:357.000000px;}
.x48_c00047{left:358.500000px;}
.x80_c00047{left:360.000000px;}
.x34_c00047{left:361.500000px;}
.x70_c00047{left:363.420000px;}
.xc3_c00047{left:365.580000px;}
.xdc_c00047{left:367.500000px;}
.x1f_c00047{left:369.000000px;}
.xfc_c00047{left:370.920000px;}
.x3f_c00047{left:373.500000px;}
.xd4_c00047{left:375.000000px;}
.x68_c00047{left:376.500000px;}
.x95_c00047{left:378.420000px;}
.xb8_c00047{left:381.000000px;}
.x29_c00047{left:382.080000px;}
.xa0_c00047{left:384.420000px;}
.x52_c00047{left:385.500000px;}
.x7f_c00047{left:389.580000px;}
.x9_c00047{left:391.500000px;}
.x35_c00047{left:393.000000px;}
.x2_c00047{left:396.000000px;}
.xc0_c00047{left:398.580000px;}
.x5f_c00047{left:400.920000px;}
.xb9_c00047{left:403.920000px;}
.x108_c00047{left:405.420000px;}
.x77_c00047{left:406.500000px;}
.xa_c00047{left:412.500000px;}
.x101_c00047{left:413.580000px;}
.x69_c00047{left:417.420000px;}
.xd9_c00047{left:418.500000px;}
.x40_c00047{left:423.000000px;}
.xaa_c00047{left:424.500000px;}
.x20_c00047{left:425.580000px;}
.xf6_c00047{left:427.080000px;}
.x2a_c00047{left:429.420000px;}
.xa1_c00047{left:430.920000px;}
.xfd_c00047{left:432.000000px;}
.x86_c00047{left:435.000000px;}
.x49_c00047{left:436.500000px;}
.xe9_c00047{left:438.420000px;}
.x78_c00047{left:441.000000px;}
.x53_c00047{left:442.920000px;}
.x16_c00047{left:444.420000px;}
.xab_c00047{left:445.920000px;}
.x21_c00047{left:447.000000px;}
.x6a_c00047{left:448.920000px;}
.x41_c00047{left:450.420000px;}
.x2b_c00047{left:456.000000px;}
.x60_c00047{left:457.920000px;}
.xba_c00047{left:459.420000px;}
.xf9_c00047{left:462.000000px;}
.xac_c00047{left:465.420000px;}
.xc8_c00047{left:468.000000px;}
.x36_c00047{left:469.080000px;}
.x17_c00047{left:472.080000px;}
.xe3_c00047{left:473.580000px;}
.x87_c00047{left:475.500000px;}
.x54_c00047{left:478.500000px;}
.xea_c00047{left:484.080000px;}
.x4a_c00047{left:486.000000px;}
.x37_c00047{left:487.500000px;}
.xb_c00047{left:490.500000px;}
.x96_c00047{left:492.645000px;}
.x42_c00047{left:493.920000px;}
.x55_c00047{left:496.500000px;}
.xad_c00047{left:498.420000px;}
.xb3_c00047{left:500.580000px;}
.xeb_c00047{left:502.920000px;}
.xfe_c00047{left:504.000000px;}
.xc4_c00047{left:505.920000px;}
.xda_c00047{left:509.580000px;}
.xa2_c00047{left:511.500000px;}
.x2c_c00047{left:512.580000px;}
.x8f_c00047{left:515.355000px;}
.x79_c00047{left:517.500000px;}
.x61_c00047{left:520.920000px;}
.xe4_c00047{left:522.000000px;}
.x22_c00047{left:523.920000px;}
.xc_c00047{left:526.080000px;}
.xec_c00047{left:529.920000px;}
.x2d_c00047{left:531.420000px;}
.xc5_c00047{left:532.920000px;}
.xff_c00047{left:535.920000px;}
.x90_c00047{left:537.420000px;}
.x6b_c00047{left:541.080000px;}
.x18_c00047{left:543.000000px;}
.xd1_c00047{left:544.920000px;}
.xc9_c00047{left:547.500000px;}
.xd_c00047{left:549.420000px;}
.xb4_c00047{left:550.500000px;}
.x91_c00047{left:553.080000px;}
.x38_c00047{left:555.420000px;}
.xfa_c00047{left:556.500000px;}
.xdd_c00047{left:558.000000px;}
.x2e_c00047{left:559.500000px;}
.xd7_c00047{left:560.580000px;}
.x4b_c00047{left:562.500000px;}
.xae_c00047{left:563.775000px;}
.x88_c00047{left:565.500000px;}
.x97_c00047{left:570.000000px;}
.x81_c00047{left:571.275000px;}
.x62_c00047{left:573.000000px;}
.x56_c00047{left:574.920000px;}
.xb5_c00047{left:576.000000px;}
.xe_c00047{left:579.000000px;}
.x43_c00047{left:580.080000px;}
.x4c_c00047{left:581.580000px;}
.x102_c00047{left:583.500000px;}
.x7a_c00047{left:585.420000px;}
.x89_c00047{left:588.000000px;}
.xc1_c00047{left:589.080000px;}
.x71_c00047{left:591.000000px;}
.x98_c00047{left:594.000000px;}
.x63_c00047{left:597.420000px;}
.x8a_c00047{left:598.500000px;}
.xf_c00047{left:600.000000px;}
.x39_c00047{left:601.920000px;}
.xca_c00047{left:603.420000px;}
.x4d_c00047{left:604.500000px;}
.x57_c00047{left:610.500000px;}
.x23_c00047{left:612.000000px;}
.x19_c00047{left:614.580000px;}
.x103_c00047{left:618.000000px;}
.xf1_c00047{left:620.580000px;}
.x8b_c00047{left:622.500000px;}
.x2f_c00047{left:624.000000px;}
.xbb_c00047{left:628.920000px;}
.x58_c00047{left:630.420000px;}
.x7b_c00047{left:631.500000px;}
.x24_c00047{left:633.420000px;}
.x104_c00047{left:634.500000px;}
.xaf_c00047{left:636.420000px;}
.x3a_c00047{left:639.000000px;}
.xd8_c00047{left:640.080000px;}
.xed_c00047{left:642.000000px;}
.x72_c00047{left:643.500000px;}
.x64_c00047{left:646.080000px;}
.x7c_c00047{left:649.080000px;}
.x6c_c00047{left:652.920000px;}
.x44_c00047{left:654.420000px;}
.xde_c00047{left:656.580000px;}
.x59_c00047{left:660.000000px;}
.x10_c00047{left:661.500000px;}
.x100_c00047{left:663.000000px;}
.xdb_c00047{left:666.000000px;}
.xf7_c00047{left:667.920000px;}
.x8c_c00047{left:669.000000px;}
.x25_c00047{left:670.500000px;}
.xd2_c00047{left:671.580000px;}
.xa3_c00047{left:676.920000px;}
.xfb_c00047{left:681.000000px;}
.x109_c00047{left:682.500000px;}
.x7d_c00047{left:684.000000px;}
.xc6_c00047{left:685.920000px;}
.x1a_c00047{left:687.000000px;}
.xb0_c00047{left:688.920000px;}
.xd3_c00047{left:690.000000px;}
.x6d_c00047{left:691.500000px;}
.xf2_c00047{left:693.000000px;}
.xcb_c00047{left:694.080000px;}
.x45_c00047{left:696.000000px;}
.x65_c00047{left:697.920000px;}
.xb6_c00047{left:700.500000px;}
.x99_c00047{left:703.275000px;}
.xdf_c00047{left:706.080000px;}
.x4e_c00047{left:708.420000px;}
.x1b_c00047{left:709.500000px;}
.x11_c00047{left:710.580000px;}
.xd5_c00047{left:714.000000px;}
.xee_c00047{left:715.500000px;}
.xbc_c00047{left:718.920000px;}
.x5a_c00047{left:721.500000px;}
.xb7_c00047{left:722.580000px;}
@media print{
.v0_c00047{vertical-align:0.000000pt;}
.ls0_c00047{letter-spacing:0.000000pt;}
.ws1_c00047{word-spacing:-6.788812pt;}
.ws0_c00047{word-spacing:-4.284168pt;}
.ws2_c00047{word-spacing:0.000000pt;}
.fs7_c00047{font-size:3.040000pt;}
.fs6_c00047{font-size:12.106667pt;}
.fs3_c00047{font-size:16.640000pt;}
.fs1_c00047{font-size:18.133333pt;}
.fs0_c00047{font-size:22.666667pt;}
.fs2_c00047{font-size:25.706667pt;}
.fs5_c00047{font-size:28.746667pt;}
.fs4_c00047{font-size:31.733333pt;}
.fs8_c00047{font-size:34.773333pt;}
.y0_c00047{bottom:0.000000pt;}
.ybf_c00047{bottom:223.773333pt;}
.ybc_c00047{bottom:224.360000pt;}
.ybe_c00047{bottom:224.560000pt;}
.ybd_c00047{bottom:225.693333pt;}
.ybb_c00047{bottom:241.106667pt;}
.yba_c00047{bottom:241.893333pt;}
.yb9_c00047{bottom:243.026667pt;}
.yb5_c00047{bottom:258.440000pt;}
.yb8_c00047{bottom:259.226667pt;}
.yb7_c00047{bottom:259.400000pt;}
.yb6_c00047{bottom:260.360000pt;}
.yb4_c00047{bottom:275.026667pt;}
.yaf_c00047{bottom:275.773333pt;}
.yb1_c00047{bottom:275.973333pt;}
.yb3_c00047{bottom:276.733333pt;}
.yae_c00047{bottom:277.306667pt;}
.yad_c00047{bottom:277.693333pt;}
.yb2_c00047{bottom:277.893333pt;}
.yb0_c00047{bottom:279.026667pt;}
.ya8_c00047{bottom:293.106667pt;}
.yac_c00047{bottom:294.066667pt;}
.yaa_c00047{bottom:294.440000pt;}
.yab_c00047{bottom:295.026667pt;}
.ya9_c00047{bottom:296.360000pt;}
.ya5_c00047{bottom:309.693333pt;}
.ya6_c00047{bottom:310.440000pt;}
.ya7_c00047{bottom:310.640000pt;}
.ya1_c00047{bottom:311.773333pt;}
.ya0_c00047{bottom:312.360000pt;}
.ya3_c00047{bottom:312.560000pt;}
.ya4_c00047{bottom:313.306667pt;}
.ya2_c00047{bottom:313.693333pt;}
.y9e_c00047{bottom:327.026667pt;}
.y9a_c00047{bottom:327.773333pt;}
.y9c_c00047{bottom:329.106667pt;}
.y9f_c00047{bottom:329.893333pt;}
.y9d_c00047{bottom:330.066667pt;}
.y9b_c00047{bottom:331.026667pt;}
.y99_c00047{bottom:346.440000pt;}
.y96_c00047{bottom:348.360000pt;}
.y98_c00047{bottom:349.306667pt;}
.y97_c00047{bottom:349.706667pt;}
.y95_c00047{bottom:365.106667pt;}
.y94_c00047{bottom:365.693333pt;}
.y8f_c00047{bottom:381.106667pt;}
.y90_c00047{bottom:383.026667pt;}
.y92_c00047{bottom:383.226667pt;}
.y93_c00047{bottom:383.973333pt;}
.y91_c00047{bottom:384.360000pt;}
.y8c_c00047{bottom:398.440000pt;}
.y8e_c00047{bottom:399.773333pt;}
.y8a_c00047{bottom:400.360000pt;}
.y8d_c00047{bottom:401.306667pt;}
.y8b_c00047{bottom:401.693333pt;}
.y88_c00047{bottom:415.773333pt;}
.y87_c00047{bottom:417.106667pt;}
.y89_c00047{bottom:417.693333pt;}
.y85_c00047{bottom:417.893333pt;}
.y86_c00047{bottom:418.640000pt;}
.y84_c00047{bottom:419.026667pt;}
.y7c_c00047{bottom:434.066667pt;}
.y81_c00047{bottom:434.440000pt;}
.y82_c00047{bottom:435.026667pt;}
.y83_c00047{bottom:435.226667pt;}
.y7f_c00047{bottom:435.400000pt;}
.y80_c00047{bottom:435.973333pt;}
.y7d_c00047{bottom:436.360000pt;}
.y7e_c00047{bottom:437.306667pt;}
.y79_c00047{bottom:451.773333pt;}
.y7b_c00047{bottom:452.360000pt;}
.y78_c00047{bottom:452.560000pt;}
.y7a_c00047{bottom:452.733333pt;}
.y77_c00047{bottom:453.693333pt;}
.y75_c00047{bottom:469.106667pt;}
.y76_c00047{bottom:471.026667pt;}
.y72_c00047{bottom:485.693333pt;}
.y71_c00047{bottom:486.440000pt;}
.y73_c00047{bottom:486.826667pt;}
.y74_c00047{bottom:487.773333pt;}
.y70_c00047{bottom:488.360000pt;}
.y6e_c00047{bottom:489.693333pt;}
.y6f_c00047{bottom:489.706667pt;}
.y6c_c00047{bottom:503.773333pt;}
.y6d_c00047{bottom:504.733333pt;}
.y6b_c00047{bottom:505.106667pt;}
.y68_c00047{bottom:505.693333pt;}
.y69_c00047{bottom:505.893333pt;}
.y6a_c00047{bottom:507.040000pt;}
.y66_c00047{bottom:521.693333pt;}
.y67_c00047{bottom:522.440000pt;}
.y65_c00047{bottom:524.360000pt;}
.y64_c00047{bottom:538.640000pt;}
.y61_c00047{bottom:539.026667pt;}
.y60_c00047{bottom:539.773333pt;}
.y63_c00047{bottom:540.360000pt;}
.y62_c00047{bottom:541.693333pt;}
.y5f_c00047{bottom:555.026667pt;}
.y5e_c00047{bottom:555.973333pt;}
.y5d_c00047{bottom:557.106667pt;}
.y5b_c00047{bottom:557.306667pt;}
.y5c_c00047{bottom:558.266667pt;}
.y5a_c00047{bottom:559.026667pt;}
.y57_c00047{bottom:573.693333pt;}
.y56_c00047{bottom:574.440000pt;}
.y58_c00047{bottom:574.640000pt;}
.y59_c00047{bottom:576.360000pt;}
.y54_c00047{bottom:591.026667pt;}
.y51_c00047{bottom:591.773333pt;}
.y53_c00047{bottom:592.733333pt;}
.y55_c00047{bottom:593.693333pt;}
.y52_c00047{bottom:595.040000pt;}
.y4e_c00047{bottom:610.640000pt;}
.y4f_c00047{bottom:611.026667pt;}
.y50_c00047{bottom:612.360000pt;}
.y48_c00047{bottom:626.440000pt;}
.y49_c00047{bottom:627.773333pt;}
.y4d_c00047{bottom:628.360000pt;}
.y4c_c00047{bottom:628.733333pt;}
.y4b_c00047{bottom:629.693333pt;}
.y4a_c00047{bottom:629.706667pt;}
.y47_c00047{bottom:650.640000pt;}
.y43_c00047{bottom:651.400000pt;}
.y45_c00047{bottom:652.360000pt;}
.y46_c00047{bottom:652.560000pt;}
.y44_c00047{bottom:653.306667pt;}
.y3e_c00047{bottom:667.973333pt;}
.y3d_c00047{bottom:668.733333pt;}
.y3f_c00047{bottom:668.933333pt;}
.y40_c00047{bottom:669.693333pt;}
.y41_c00047{bottom:669.893333pt;}
.y42_c00047{bottom:670.840000pt;}
.y3c_c00047{bottom:693.106667pt;}
.y3b_c00047{bottom:695.026667pt;}
.y39_c00047{bottom:731.773333pt;}
.y38_c00047{bottom:733.693333pt;}
.y3a_c00047{bottom:733.893333pt;}
.y36_c00047{bottom:749.106667pt;}
.y37_c00047{bottom:749.893333pt;}
.y35_c00047{bottom:751.026667pt;}
.y34_c00047{bottom:751.973333pt;}
.y33_c00047{bottom:765.693333pt;}
.y32_c00047{bottom:766.440000pt;}
.y31_c00047{bottom:766.640000pt;}
.y2e_c00047{bottom:768.360000pt;}
.y30_c00047{bottom:769.306667pt;}
.y2f_c00047{bottom:769.693333pt;}
.y2d_c00047{bottom:783.773333pt;}
.y2b_c00047{bottom:784.733333pt;}
.y2c_c00047{bottom:785.693333pt;}
.y29_c00047{bottom:802.440000pt;}
.y2a_c00047{bottom:803.026667pt;}
.y28_c00047{bottom:803.226667pt;}
.y27_c00047{bottom:804.360000pt;}
.y23_c00047{bottom:819.026667pt;}
.y25_c00047{bottom:819.773333pt;}
.y24_c00047{bottom:820.560000pt;}
.y22_c00047{bottom:820.733333pt;}
.y21_c00047{bottom:821.693333pt;}
.y26_c00047{bottom:822.640000pt;}
.y1e_c00047{bottom:837.106667pt;}
.y1f_c00047{bottom:838.066667pt;}
.y20_c00047{bottom:838.640000pt;}
.y1d_c00047{bottom:839.026667pt;}
.y1c_c00047{bottom:853.693333pt;}
.y1b_c00047{bottom:854.440000pt;}
.y1a_c00047{bottom:855.400000pt;}
.y19_c00047{bottom:856.360000pt;}
.y16_c00047{bottom:871.773333pt;}
.y17_c00047{bottom:872.560000pt;}
.y15_c00047{bottom:873.693333pt;}
.y18_c00047{bottom:873.893333pt;}
.y13_c00047{bottom:889.106667pt;}
.y14_c00047{bottom:891.026667pt;}
.y12_c00047{bottom:905.106667pt;}
.ye_c00047{bottom:907.773333pt;}
.y10_c00047{bottom:908.360000pt;}
.yf_c00047{bottom:908.560000pt;}
.y11_c00047{bottom:909.693333pt;}
.ya_c00047{bottom:923.773333pt;}
.yd_c00047{bottom:924.560000pt;}
.yb_c00047{bottom:925.693333pt;}
.yc_c00047{bottom:926.640000pt;}
.y6_c00047{bottom:940.360000pt;}
.y7_c00047{bottom:941.106667pt;}
.y5_c00047{bottom:941.306667pt;}
.y3_c00047{bottom:943.026667pt;}
.y4_c00047{bottom:943.226667pt;}
.y9_c00047{bottom:943.973333pt;}
.y8_c00047{bottom:944.360000pt;}
.y2_c00047{bottom:978.266667pt;}
.y1_c00047{bottom:978.640000pt;}
.h8_c00047{height:3.739141pt;}
.h7_c00047{height:14.890964pt;}
.h4_c00047{height:20.466875pt;}
.h2_c00047{height:22.303646pt;}
.h1_c00047{height:27.879557pt;}
.h3_c00047{height:31.618698pt;}
.h6_c00047{height:35.357839pt;}
.h5_c00047{height:39.031380pt;}
.h9_c00047{height:42.770521pt;}
.h0_c00047{height:1186.666667pt;}
.w0_c00047{width:782.666667pt;}
.x0_c00047{left:0.000000pt;}
.x1_c00047{left:135.040000pt;}
.x9a_c00047{left:136.000000pt;}
.x30_c00047{left:148.000000pt;}
.x92_c00047{left:149.706667pt;}
.x9c_c00047{left:150.666667pt;}
.x9b_c00047{left:153.333333pt;}
.xa4_c00047{left:155.626667pt;}
.xf3_c00047{left:158.666667pt;}
.xef_c00047{left:160.000000pt;}
.x3_c00047{left:161.333333pt;}
.x82_c00047{left:164.373333pt;}
.xa5_c00047{left:167.040000pt;}
.x5b_c00047{left:168.000000pt;}
.x6e_c00047{left:169.706667pt;}
.xb1_c00047{left:172.373333pt;}
.x4_c00047{left:173.706667pt;}
.x3b_c00047{left:174.666667pt;}
.xf4_c00047{left:176.373333pt;}
.xf8_c00047{left:178.666667pt;}
.x12_c00047{left:182.666667pt;}
.xe0_c00047{left:184.000000pt;}
.x73_c00047{left:185.706667pt;}
.x93_c00047{left:187.040000pt;}
.x7e_c00047{left:188.000000pt;}
.x46_c00047{left:188.960000pt;}
.x105_c00047{left:191.626667pt;}
.xa6_c00047{left:194.293333pt;}
.xbd_c00047{left:195.626667pt;}
.x1c_c00047{left:199.040000pt;}
.xd6_c00047{left:200.000000pt;}
.x8d_c00047{left:202.666667pt;}
.xcc_c00047{left:204.000000pt;}
.x5_c00047{left:206.666667pt;}
.x5c_c00047{left:210.666667pt;}
.x3c_c00047{left:212.000000pt;}
.x83_c00047{left:214.666667pt;}
.xa7_c00047{left:215.626667pt;}
.x74_c00047{left:217.333333pt;}
.x106_c00047{left:218.666667pt;}
.x6f_c00047{left:220.000000pt;}
.xbe_c00047{left:221.333333pt;}
.x66_c00047{left:222.293333pt;}
.xe1_c00047{left:223.626667pt;}
.x31_c00047{left:225.133333pt;}
.x13_c00047{left:226.666667pt;}
.x26_c00047{left:228.373333pt;}
.x9d_c00047{left:230.666667pt;}
.x1d_c00047{left:232.000000pt;}
.xf0_c00047{left:233.706667pt;}
.xb2_c00047{left:235.040000pt;}
.x4f_c00047{left:236.960000pt;}
.x94_c00047{left:238.666667pt;}
.x6_c00047{left:241.333333pt;}
.xcd_c00047{left:242.666667pt;}
.x8e_c00047{left:243.626667pt;}
.xe5_c00047{left:245.333333pt;}
.x32_c00047{left:247.040000pt;}
.xc7_c00047{left:248.000000pt;}
.x9e_c00047{left:249.333333pt;}
.x5d_c00047{left:250.666667pt;}
.x67_c00047{left:251.626667pt;}
.x1e_c00047{left:253.706667pt;}
.xa8_c00047{left:255.626667pt;}
.x47_c00047{left:259.040000pt;}
.xce_c00047{left:260.000000pt;}
.x5e_c00047{left:264.000000pt;}
.x50_c00047{left:267.040000pt;}
.xe6_c00047{left:268.000000pt;}
.x75_c00047{left:269.706667pt;}
.xcf_c00047{left:270.666667pt;}
.x3d_c00047{left:272.000000pt;}
.xf5_c00047{left:275.040000pt;}
.x27_c00047{left:278.666667pt;}
.x14_c00047{left:282.293333pt;}
.xc2_c00047{left:283.626667pt;}
.x7_c00047{left:285.333333pt;}
.x107_c00047{left:286.666667pt;}
.xe7_c00047{left:288.000000pt;}
.x84_c00047{left:289.706667pt;}
.x28_c00047{left:294.293333pt;}
.xa9_c00047{left:296.373333pt;}
.xd0_c00047{left:297.333333pt;}
.x15_c00047{left:299.040000pt;}
.x51_c00047{left:300.000000pt;}
.x85_c00047{left:301.333333pt;}
.x9f_c00047{left:305.133333pt;}
.x8_c00047{left:306.293333pt;}
.xbf_c00047{left:308.000000pt;}
.x33_c00047{left:309.333333pt;}
.x76_c00047{left:310.293333pt;}
.x3e_c00047{left:312.000000pt;}
.xe8_c00047{left:314.666667pt;}
.xe2_c00047{left:317.333333pt;}
.x48_c00047{left:318.666667pt;}
.x80_c00047{left:320.000000pt;}
.x34_c00047{left:321.333333pt;}
.x70_c00047{left:323.040000pt;}
.xc3_c00047{left:324.960000pt;}
.xdc_c00047{left:326.666667pt;}
.x1f_c00047{left:328.000000pt;}
.xfc_c00047{left:329.706667pt;}
.x3f_c00047{left:332.000000pt;}
.xd4_c00047{left:333.333333pt;}
.x68_c00047{left:334.666667pt;}
.x95_c00047{left:336.373333pt;}
.xb8_c00047{left:338.666667pt;}
.x29_c00047{left:339.626667pt;}
.xa0_c00047{left:341.706667pt;}
.x52_c00047{left:342.666667pt;}
.x7f_c00047{left:346.293333pt;}
.x9_c00047{left:348.000000pt;}
.x35_c00047{left:349.333333pt;}
.x2_c00047{left:352.000000pt;}
.xc0_c00047{left:354.293333pt;}
.x5f_c00047{left:356.373333pt;}
.xb9_c00047{left:359.040000pt;}
.x108_c00047{left:360.373333pt;}
.x77_c00047{left:361.333333pt;}
.xa_c00047{left:366.666667pt;}
.x101_c00047{left:367.626667pt;}
.x69_c00047{left:371.040000pt;}
.xd9_c00047{left:372.000000pt;}
.x40_c00047{left:376.000000pt;}
.xaa_c00047{left:377.333333pt;}
.x20_c00047{left:378.293333pt;}
.xf6_c00047{left:379.626667pt;}
.x2a_c00047{left:381.706667pt;}
.xa1_c00047{left:383.040000pt;}
.xfd_c00047{left:384.000000pt;}
.x86_c00047{left:386.666667pt;}
.x49_c00047{left:388.000000pt;}
.xe9_c00047{left:389.706667pt;}
.x78_c00047{left:392.000000pt;}
.x53_c00047{left:393.706667pt;}
.x16_c00047{left:395.040000pt;}
.xab_c00047{left:396.373333pt;}
.x21_c00047{left:397.333333pt;}
.x6a_c00047{left:399.040000pt;}
.x41_c00047{left:400.373333pt;}
.x2b_c00047{left:405.333333pt;}
.x60_c00047{left:407.040000pt;}
.xba_c00047{left:408.373333pt;}
.xf9_c00047{left:410.666667pt;}
.xac_c00047{left:413.706667pt;}
.xc8_c00047{left:416.000000pt;}
.x36_c00047{left:416.960000pt;}
.x17_c00047{left:419.626667pt;}
.xe3_c00047{left:420.960000pt;}
.x87_c00047{left:422.666667pt;}
.x54_c00047{left:425.333333pt;}
.xea_c00047{left:430.293333pt;}
.x4a_c00047{left:432.000000pt;}
.x37_c00047{left:433.333333pt;}
.xb_c00047{left:436.000000pt;}
.x96_c00047{left:437.906667pt;}
.x42_c00047{left:439.040000pt;}
.x55_c00047{left:441.333333pt;}
.xad_c00047{left:443.040000pt;}
.xb3_c00047{left:444.960000pt;}
.xeb_c00047{left:447.040000pt;}
.xfe_c00047{left:448.000000pt;}
.xc4_c00047{left:449.706667pt;}
.xda_c00047{left:452.960000pt;}
.xa2_c00047{left:454.666667pt;}
.x2c_c00047{left:455.626667pt;}
.x8f_c00047{left:458.093333pt;}
.x79_c00047{left:460.000000pt;}
.x61_c00047{left:463.040000pt;}
.xe4_c00047{left:464.000000pt;}
.x22_c00047{left:465.706667pt;}
.xc_c00047{left:467.626667pt;}
.xec_c00047{left:471.040000pt;}
.x2d_c00047{left:472.373333pt;}
.xc5_c00047{left:473.706667pt;}
.xff_c00047{left:476.373333pt;}
.x90_c00047{left:477.706667pt;}
.x6b_c00047{left:480.960000pt;}
.x18_c00047{left:482.666667pt;}
.xd1_c00047{left:484.373333pt;}
.xc9_c00047{left:486.666667pt;}
.xd_c00047{left:488.373333pt;}
.xb4_c00047{left:489.333333pt;}
.x91_c00047{left:491.626667pt;}
.x38_c00047{left:493.706667pt;}
.xfa_c00047{left:494.666667pt;}
.xdd_c00047{left:496.000000pt;}
.x2e_c00047{left:497.333333pt;}
.xd7_c00047{left:498.293333pt;}
.x4b_c00047{left:500.000000pt;}
.xae_c00047{left:501.133333pt;}
.x88_c00047{left:502.666667pt;}
.x97_c00047{left:506.666667pt;}
.x81_c00047{left:507.800000pt;}
.x62_c00047{left:509.333333pt;}
.x56_c00047{left:511.040000pt;}
.xb5_c00047{left:512.000000pt;}
.xe_c00047{left:514.666667pt;}
.x43_c00047{left:515.626667pt;}
.x4c_c00047{left:516.960000pt;}
.x102_c00047{left:518.666667pt;}
.x7a_c00047{left:520.373333pt;}
.x89_c00047{left:522.666667pt;}
.xc1_c00047{left:523.626667pt;}
.x71_c00047{left:525.333333pt;}
.x98_c00047{left:528.000000pt;}
.x63_c00047{left:531.040000pt;}
.x8a_c00047{left:532.000000pt;}
.xf_c00047{left:533.333333pt;}
.x39_c00047{left:535.040000pt;}
.xca_c00047{left:536.373333pt;}
.x4d_c00047{left:537.333333pt;}
.x57_c00047{left:542.666667pt;}
.x23_c00047{left:544.000000pt;}
.x19_c00047{left:546.293333pt;}
.x103_c00047{left:549.333333pt;}
.xf1_c00047{left:551.626667pt;}
.x8b_c00047{left:553.333333pt;}
.x2f_c00047{left:554.666667pt;}
.xbb_c00047{left:559.040000pt;}
.x58_c00047{left:560.373333pt;}
.x7b_c00047{left:561.333333pt;}
.x24_c00047{left:563.040000pt;}
.x104_c00047{left:564.000000pt;}
.xaf_c00047{left:565.706667pt;}
.x3a_c00047{left:568.000000pt;}
.xd8_c00047{left:568.960000pt;}
.xed_c00047{left:570.666667pt;}
.x72_c00047{left:572.000000pt;}
.x64_c00047{left:574.293333pt;}
.x7c_c00047{left:576.960000pt;}
.x6c_c00047{left:580.373333pt;}
.x44_c00047{left:581.706667pt;}
.xde_c00047{left:583.626667pt;}
.x59_c00047{left:586.666667pt;}
.x10_c00047{left:588.000000pt;}
.x100_c00047{left:589.333333pt;}
.xdb_c00047{left:592.000000pt;}
.xf7_c00047{left:593.706667pt;}
.x8c_c00047{left:594.666667pt;}
.x25_c00047{left:596.000000pt;}
.xd2_c00047{left:596.960000pt;}
.xa3_c00047{left:601.706667pt;}
.xfb_c00047{left:605.333333pt;}
.x109_c00047{left:606.666667pt;}
.x7d_c00047{left:608.000000pt;}
.xc6_c00047{left:609.706667pt;}
.x1a_c00047{left:610.666667pt;}
.xb0_c00047{left:612.373333pt;}
.xd3_c00047{left:613.333333pt;}
.x6d_c00047{left:614.666667pt;}
.xf2_c00047{left:616.000000pt;}
.xcb_c00047{left:616.960000pt;}
.x45_c00047{left:618.666667pt;}
.x65_c00047{left:620.373333pt;}
.xb6_c00047{left:622.666667pt;}
.x99_c00047{left:625.133333pt;}
.xdf_c00047{left:627.626667pt;}
.x4e_c00047{left:629.706667pt;}
.x1b_c00047{left:630.666667pt;}
.x11_c00047{left:631.626667pt;}
.xd5_c00047{left:634.666667pt;}
.xee_c00047{left:636.000000pt;}
.xbc_c00047{left:639.040000pt;}
.x5a_c00047{left:641.333333pt;}
.xb7_c00047{left:642.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_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_f7b3bb6481d32b1586bf15bf.woff2')format("woff");}.ff1_c00048{font-family:ff1_c00048;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf5_c00048{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);}
.m106_c00048{transform:matrix(0.220056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220056,0.000000,0.000000,0.250000,0,0);}
.m86_c00048{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m129_c00048{transform:matrix(0.294404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294404,0.000000,0.000000,0.250000,0,0);}
.m43_c00048{transform:matrix(0.299020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299020,0.000000,0.000000,0.250000,0,0);}
.m6_c00048{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.m87_c00048{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.m78_c00048{transform:matrix(0.351994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351994,0.000000,0.000000,0.250000,0,0);}
.m77_c00048{transform:matrix(0.352257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352257,0.000000,0.000000,0.250000,0,0);}
.m3e_c00048{transform:matrix(0.357563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357563,0.000000,0.000000,0.250000,0,0);}
.m11_c00048{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m85_c00048{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.mb0_c00048{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m3a_c00048{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mb4_c00048{transform:matrix(0.364264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364264,0.000000,0.000000,0.250000,0,0);}
.m40_c00048{transform:matrix(0.365126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365126,0.000000,0.000000,0.250000,0,0);}
.m42_c00048{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m4d_c00048{transform:matrix(0.369328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369328,0.000000,0.000000,0.250000,0,0);}
.maf_c00048{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m75_c00048{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m126_c00048{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m131_c00048{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m3c_c00048{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m46_c00048{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m60_c00048{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m109_c00048{transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);}
.mbc_c00048{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m5_c00048{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m117_c00048{transform:matrix(0.383581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383581,0.000000,0.000000,0.250000,0,0);}
.m98_c00048{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.me3_c00048{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.m6d_c00048{transform:matrix(0.384586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384586,0.000000,0.000000,0.250000,0,0);}
.m35_c00048{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.mb2_c00048{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m74_c00048{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.m67_c00048{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m3_c00048{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mf6_c00048{transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);}
.m4c_c00048{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mc4_c00048{transform:matrix(0.390560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390560,0.000000,0.000000,0.250000,0,0);}
.m9a_c00048{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.mc0_c00048{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m66_c00048{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m7c_c00048{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m134_c00048{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m71_c00048{transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);}
.m51_c00048{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m14_c00048{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m8b_c00048{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.md1_c00048{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m12e_c00048{transform:matrix(0.399896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399896,0.000000,0.000000,0.250000,0,0);}
.m10b_c00048{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.m7e_c00048{transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);}
.m89_c00048{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m18_c00048{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.ma6_c00048{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.mc9_c00048{transform:matrix(0.405291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405291,0.000000,0.000000,0.250000,0,0);}
.mc3_c00048{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m9c_c00048{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m10e_c00048{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.m70_c00048{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m6c_c00048{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m65_c00048{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.mbb_c00048{transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);}
.m59_c00048{transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);}
.mc1_c00048{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m33_c00048{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m2e_c00048{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m92_c00048{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.me1_c00048{transform:matrix(0.414938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414938,0.000000,0.000000,0.250000,0,0);}
.m83_c00048{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.ma5_c00048{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m27_c00048{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m32_c00048{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.maa_c00048{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m7b_c00048{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mb6_c00048{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.mef_c00048{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.mc5_c00048{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m22_c00048{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m12a_c00048{transform:matrix(0.424397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424397,0.000000,0.000000,0.250000,0,0);}
.m104_c00048{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.mf3_c00048{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m1c_c00048{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m95_c00048{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mad_c00048{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m5c_c00048{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mcd_c00048{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m8c_c00048{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m6f_c00048{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m8f_c00048{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.md3_c00048{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.m9f_c00048{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.md4_c00048{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.me5_c00048{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m26_c00048{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m12c_c00048{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.mfe_c00048{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m54_c00048{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.mf0_c00048{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m34_c00048{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.mc8_c00048{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.m7d_c00048{transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);}
.mdb_c00048{transform:matrix(0.443465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443465,0.000000,0.000000,0.250000,0,0);}
.m1_c00048{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m5e_c00048{transform:matrix(0.444805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444805,0.000000,0.000000,0.250000,0,0);}
.m48_c00048{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.ma3_c00048{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m30_c00048{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.mac_c00048{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.mb9_c00048{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m11f_c00048{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m10c_c00048{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m93_c00048{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m7a_c00048{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m12b_c00048{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m25_c00048{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m11b_c00048{transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);}
.mfb_c00048{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.ma1_c00048{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m37_c00048{transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);}
.m64_c00048{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.md7_c00048{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.mf4_c00048{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m61_c00048{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.mca_c00048{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m120_c00048{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m105_c00048{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m4e_c00048{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.mec_c00048{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.mab_c00048{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.me8_c00048{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m57_c00048{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m4_c00048{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m115_c00048{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.mcf_c00048{transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);}
.m10d_c00048{transform:matrix(0.477206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477206,0.000000,0.000000,0.250000,0,0);}
.m2d_c00048{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m12d_c00048{transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);}
.m1e_c00048{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m63_c00048{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.mc2_c00048{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m132_c00048{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m6e_c00048{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.md_c00048{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m23_c00048{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m101_c00048{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.mf8_c00048{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m2_c00048{transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);}
.m52_c00048{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.mea_c00048{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m11e_c00048{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.mb1_c00048{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m121_c00048{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m73_c00048{transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);}
.mba_c00048{transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);}
.m3f_c00048{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);}
.m8e_c00048{transform:matrix(0.502783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502783,0.000000,0.000000,0.250000,0,0);}
.mbf_c00048{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.mf9_c00048{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m133_c00048{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.mde_c00048{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);}
.m119_c00048{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.md2_c00048{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m6a_c00048{transform:matrix(0.513451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513451,0.000000,0.000000,0.250000,0,0);}
.m1a_c00048{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m8a_c00048{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m82_c00048{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m90_c00048{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mee_c00048{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.m10_c00048{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mf1_c00048{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m76_c00048{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mdc_c00048{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m128_c00048{transform:matrix(0.521324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521324,0.000000,0.000000,0.250000,0,0);}
.m41_c00048{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m2c_c00048{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.meb_c00048{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.ma2_c00048{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.md0_c00048{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.md9_c00048{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.mce_c00048{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m97_c00048{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m113_c00048{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.me6_c00048{transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);}
.mb5_c00048{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.ma9_c00048{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m17_c00048{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m8_c00048{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m47_c00048{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m1d_c00048{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m13_c00048{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m118_c00048{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m29_c00048{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m56_c00048{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m15_c00048{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.me9_c00048{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.mcc_c00048{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mdd_c00048{transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);}
.ma7_c00048{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m12f_c00048{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m53_c00048{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m12_c00048{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m112_c00048{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m79_c00048{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m4b_c00048{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.me4_c00048{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m7_c00048{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mf_c00048{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m68_c00048{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m110_c00048{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);}
.m6b_c00048{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m100_c00048{transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);}
.mf7_c00048{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m28_c00048{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mc7_c00048{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m11c_c00048{transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);}
.m39_c00048{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m3d_c00048{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mfa_c00048{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m9e_c00048{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m19_c00048{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m62_c00048{transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);}
.m7f_c00048{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m81_c00048{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m3b_c00048{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mfc_c00048{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.md5_c00048{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.me_c00048{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m2a_c00048{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m130_c00048{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.m9d_c00048{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m38_c00048{transform:matrix(0.561029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561029,0.000000,0.000000,0.250000,0,0);}
.mfd_c00048{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m1f_c00048{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.ma0_c00048{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m50_c00048{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.ma4_c00048{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m4a_c00048{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.mb3_c00048{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m111_c00048{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.ma_c00048{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mc_c00048{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m20_c00048{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mb7_c00048{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.mff_c00048{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m2b_c00048{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mf2_c00048{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.ma8_c00048{transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);}
.m2f_c00048{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m96_c00048{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m125_c00048{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.mcb_c00048{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.mae_c00048{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.m21_c00048{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m91_c00048{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);}
.mbd_c00048{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.mc6_c00048{transform:matrix(0.603216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603216,0.000000,0.000000,0.250000,0,0);}
.m84_c00048{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m11a_c00048{transform:matrix(0.607353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607353,0.000000,0.000000,0.250000,0,0);}
.m88_c00048{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m31_c00048{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m102_c00048{transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);}
.m4f_c00048{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mdf_c00048{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m5f_c00048{transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);}
.m103_c00048{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m8d_c00048{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);}
.m99_c00048{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m49_c00048{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m123_c00048{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m0_c00048{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.mda_c00048{transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);}
.m45_c00048{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.me2_c00048{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m80_c00048{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.m10f_c00048{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.md6_c00048{transform:matrix(0.642628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642628,0.000000,0.000000,0.250000,0,0);}
.m44_c00048{transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);}
.mbe_c00048{transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);}
.m55_c00048{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m124_c00048{transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);}
.me7_c00048{transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);}
.m122_c00048{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m36_c00048{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m10a_c00048{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.m5d_c00048{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.me0_c00048{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.med_c00048{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m58_c00048{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m9b_c00048{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m69_c00048{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m127_c00048{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m114_c00048{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);}
.m16_c00048{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m24_c00048{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m1b_c00048{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m5b_c00048{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.m9_c00048{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m72_c00048{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mb8_c00048{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.mb_c00048{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m116_c00048{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m5a_c00048{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m108_c00048{transform:matrix(0.892070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.892070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.892070,0.000000,0.000000,0.250000,0,0);}
.md8_c00048{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m11d_c00048{transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);}
.m107_c00048{transform:matrix(1.123348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.123348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.123348,0.000000,0.000000,0.250000,0,0);}
.m94_c00048{transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);}
.v0_c00048{vertical-align:0.000000px;}
.v1_c00048{vertical-align:18.000000px;}
.ls0_c00048{letter-spacing:0.000000px;}
.sc__c00048{text-shadow:none;}
.sc0_c00048{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00048{-webkit-text-stroke:0px transparent;}
.sc0_c00048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00048{word-spacing:-9.184371px;}
.ws3_c00048{word-spacing:-5.903887px;}
.ws1_c00048{word-spacing:-3.839879px;}
.ws2_c00048{word-spacing:-2.079441px;}
.ws4_c00048{word-spacing:0.000000px;}
.fc0_c00048{color:transparent;}
.fs9_c00048{font-size:11.880000px;}
.fsa_c00048{font-size:13.620000px;}
.fs4_c00048{font-size:18.720000px;}
.fs0_c00048{font-size:20.400000px;}
.fs5_c00048{font-size:25.500000px;}
.fs1_c00048{font-size:28.920000px;}
.fs2_c00048{font-size:32.340000px;}
.fs3_c00048{font-size:35.700000px;}
.fs7_c00048{font-size:39.120000px;}
.fs8_c00048{font-size:42.540000px;}
.fs6_c00048{font-size:45.900000px;}
.fsc_c00048{font-size:49.320000px;}
.fsb_c00048{font-size:64.620000px;}
.y0_c00048{bottom:0.000000px;}
.y13f_c00048{bottom:250.470000px;}
.y13e_c00048{bottom:251.325000px;}
.y139_c00048{bottom:251.550000px;}
.y13c_c00048{bottom:252.405000px;}
.y13d_c00048{bottom:252.630000px;}
.y138_c00048{bottom:252.825000px;}
.y13a_c00048{bottom:253.050000px;}
.y13b_c00048{bottom:253.470000px;}
.y137_c00048{bottom:254.970000px;}
.y136_c00048{bottom:255.630000px;}
.y135_c00048{bottom:256.905000px;}
.y134_c00048{bottom:258.630000px;}
.y133_c00048{bottom:259.695000px;}
.y12b_c00048{bottom:263.550000px;}
.y12c_c00048{bottom:265.035000px;}
.y12d_c00048{bottom:266.325000px;}
.y131_c00048{bottom:267.405000px;}
.y130_c00048{bottom:268.470000px;}
.y12e_c00048{bottom:268.695000px;}
.y12f_c00048{bottom:269.550000px;}
.y132_c00048{bottom:269.970000px;}
.y12a_c00048{bottom:282.825000px;}
.y129_c00048{bottom:287.550000px;}
.y128_c00048{bottom:288.630000px;}
.y127_c00048{bottom:290.130000px;}
.y121_c00048{bottom:296.130000px;}
.y126_c00048{bottom:296.325000px;}
.y123_c00048{bottom:296.970000px;}
.y124_c00048{bottom:297.195000px;}
.y120_c00048{bottom:297.405000px;}
.y122_c00048{bottom:298.050000px;}
.y11e_c00048{bottom:298.680000px;}
.y125_c00048{bottom:299.550000px;}
.y11f_c00048{bottom:300.825000px;}
.y11c_c00048{bottom:310.905000px;}
.y11d_c00048{bottom:313.050000px;}
.y11b_c00048{bottom:313.905000px;}
.y11a_c00048{bottom:314.130000px;}
.y119_c00048{bottom:314.325000px;}
.y10f_c00048{bottom:322.050000px;}
.y112_c00048{bottom:324.825000px;}
.y116_c00048{bottom:325.905000px;}
.y113_c00048{bottom:326.550000px;}
.y114_c00048{bottom:326.970000px;}
.y115_c00048{bottom:327.195000px;}
.y111_c00048{bottom:327.405000px;}
.y117_c00048{bottom:328.050000px;}
.y118_c00048{bottom:328.470000px;}
.y110_c00048{bottom:329.550000px;}
.y10e_c00048{bottom:339.825000px;}
.y10a_c00048{bottom:340.905000px;}
.y10c_c00048{bottom:341.970000px;}
.y10b_c00048{bottom:342.195000px;}
.y10d_c00048{bottom:343.050000px;}
.y109_c00048{bottom:344.325000px;}
.y108_c00048{bottom:344.550000px;}
.y107_c00048{bottom:348.195000px;}
.yfd_c00048{bottom:353.130000px;}
.y105_c00048{bottom:354.405000px;}
.y103_c00048{bottom:355.470000px;}
.y101_c00048{bottom:355.905000px;}
.y100_c00048{bottom:356.325000px;}
.y102_c00048{bottom:356.550000px;}
.y104_c00048{bottom:356.970000px;}
.y106_c00048{bottom:358.050000px;}
.yfe_c00048{bottom:361.050000px;}
.yff_c00048{bottom:361.470000px;}
.yf7_c00048{bottom:377.730000px;}
.yf6_c00048{bottom:378.630000px;}
.yf9_c00048{bottom:382.470000px;}
.yfa_c00048{bottom:383.325000px;}
.yfc_c00048{bottom:384.405000px;}
.yf8_c00048{bottom:385.695000px;}
.yfb_c00048{bottom:386.550000px;}
.yf4_c00048{bottom:399.405000px;}
.yf5_c00048{bottom:399.630000px;}
.yf2_c00048{bottom:400.470000px;}
.yf3_c00048{bottom:401.550000px;}
.yf1_c00048{bottom:401.970000px;}
.yf0_c00048{bottom:404.130000px;}
.yef_c00048{bottom:404.970000px;}
.ye9_c00048{bottom:413.325000px;}
.yec_c00048{bottom:414.405000px;}
.yed_c00048{bottom:414.630000px;}
.yee_c00048{bottom:415.050000px;}
.yea_c00048{bottom:415.470000px;}
.ye5_c00048{bottom:415.680000px;}
.yeb_c00048{bottom:416.550000px;}
.ye7_c00048{bottom:416.970000px;}
.ye8_c00048{bottom:418.050000px;}
.ye6_c00048{bottom:419.970000px;}
.ye4_c00048{bottom:420.630000px;}
.ye3_c00048{bottom:428.325000px;}
.ye0_c00048{bottom:429.405000px;}
.ye1_c00048{bottom:430.470000px;}
.ye2_c00048{bottom:431.550000px;}
.ydf_c00048{bottom:432.405000px;}
.yde_c00048{bottom:434.970000px;}
.ydd_c00048{bottom:438.195000px;}
.yd5_c00048{bottom:442.470000px;}
.ydb_c00048{bottom:442.905000px;}
.yd6_c00048{bottom:443.325000px;}
.ydc_c00048{bottom:443.970000px;}
.yda_c00048{bottom:444.405000px;}
.yd8_c00048{bottom:444.630000px;}
.yd4_c00048{bottom:445.245000px;}
.yd7_c00048{bottom:445.470000px;}
.yd9_c00048{bottom:446.550000px;}
.yd3_c00048{bottom:451.050000px;}
.yd1_c00048{bottom:457.050000px;}
.ycf_c00048{bottom:457.905000px;}
.yd2_c00048{bottom:458.130000px;}
.yd0_c00048{bottom:458.970000px;}
.yce_c00048{bottom:460.050000px;}
.ycd_c00048{bottom:460.470000px;}
.ycc_c00048{bottom:462.195000px;}
.ycb_c00048{bottom:462.405000px;}
.yca_c00048{bottom:465.630000px;}
.yc9_c00048{bottom:488.745000px;}
.yc7_c00048{bottom:490.245000px;}
.yc8_c00048{bottom:490.905000px;}
.yc6_c00048{bottom:492.405000px;}
.yc5_c00048{bottom:495.825000px;}
.yc4_c00048{bottom:498.405000px;}
.yc3_c00048{bottom:513.405000px;}
.yc2_c00048{bottom:518.325000px;}
.ybf_c00048{bottom:529.245000px;}
.yc0_c00048{bottom:530.325000px;}
.yc1_c00048{bottom:531.405000px;}
.ybe_c00048{bottom:532.905000px;}
.ybd_c00048{bottom:534.405000px;}
.yba_c00048{bottom:548.325000px;}
.ybc_c00048{bottom:548.745000px;}
.ybb_c00048{bottom:550.470000px;}
.yb8_c00048{bottom:550.905000px;}
.yb9_c00048{bottom:551.130000px;}
.yb6_c00048{bottom:552.180000px;}
.yb7_c00048{bottom:552.405000px;}
.yb5_c00048{bottom:553.905000px;}
.yb2_c00048{bottom:567.405000px;}
.yb4_c00048{bottom:568.245000px;}
.yb1_c00048{bottom:570.405000px;}
.yb3_c00048{bottom:571.470000px;}
.yb0_c00048{bottom:571.905000px;}
.yaf_c00048{bottom:572.745000px;}
.yae_c00048{bottom:576.825000px;}
.yac_c00048{bottom:587.745000px;}
.ya9_c00048{bottom:587.970000px;}
.ya8_c00048{bottom:589.245000px;}
.yaa_c00048{bottom:589.905000px;}
.yad_c00048{bottom:590.130000px;}
.yab_c00048{bottom:590.970000px;}
.ya7_c00048{bottom:591.180000px;}
.ya6_c00048{bottom:594.825000px;}
.ya1_c00048{bottom:607.905000px;}
.ya3_c00048{bottom:608.745000px;}
.ya2_c00048{bottom:609.630000px;}
.ya5_c00048{bottom:609.825000px;}
.ya4_c00048{bottom:610.905000px;}
.ya0_c00048{bottom:612.405000px;}
.y9e_c00048{bottom:627.825000px;}
.y9f_c00048{bottom:628.245000px;}
.y9b_c00048{bottom:628.680000px;}
.y9c_c00048{bottom:629.970000px;}
.y9d_c00048{bottom:630.405000px;}
.y9a_c00048{bottom:632.970000px;}
.y97_c00048{bottom:647.745000px;}
.y98_c00048{bottom:649.905000px;}
.y99_c00048{bottom:650.970000px;}
.y96_c00048{bottom:651.825000px;}
.y95_c00048{bottom:654.825000px;}
.y91_c00048{bottom:667.245000px;}
.y94_c00048{bottom:668.325000px;}
.y92_c00048{bottom:669.405000px;}
.y93_c00048{bottom:670.470000px;}
.y90_c00048{bottom:670.905000px;}
.y8e_c00048{bottom:671.745000px;}
.y8f_c00048{bottom:672.405000px;}
.y8d_c00048{bottom:674.550000px;}
.y8b_c00048{bottom:686.745000px;}
.y8c_c00048{bottom:688.245000px;}
.y8a_c00048{bottom:688.905000px;}
.y88_c00048{bottom:689.130000px;}
.y89_c00048{bottom:689.970000px;}
.y87_c00048{bottom:690.405000px;}
.y86_c00048{bottom:691.905000px;}
.y85_c00048{bottom:694.470000px;}
.y84_c00048{bottom:706.245000px;}
.y83_c00048{bottom:706.470000px;}
.y82_c00048{bottom:707.325000px;}
.y7e_c00048{bottom:707.745000px;}
.y81_c00048{bottom:708.405000px;}
.y7f_c00048{bottom:709.470000px;}
.y7d_c00048{bottom:709.680000px;}
.y80_c00048{bottom:709.905000px;}
.y79_c00048{bottom:724.905000px;}
.y78_c00048{bottom:725.745000px;}
.y7b_c00048{bottom:727.905000px;}
.y77_c00048{bottom:728.130000px;}
.y76_c00048{bottom:728.325000px;}
.y75_c00048{bottom:728.745000px;}
.y7a_c00048{bottom:728.970000px;}
.y7c_c00048{bottom:729.405000px;}
.y74_c00048{bottom:731.745000px;}
.y73_c00048{bottom:745.245000px;}
.y70_c00048{bottom:746.745000px;}
.y72_c00048{bottom:748.470000px;}
.y71_c00048{bottom:748.905000px;}
.y6f_c00048{bottom:749.325000px;}
.y6e_c00048{bottom:751.905000px;}
.y6d_c00048{bottom:752.550000px;}
.y69_c00048{bottom:764.775000px;}
.y6a_c00048{bottom:766.245000px;}
.y68_c00048{bottom:766.905000px;}
.y6c_c00048{bottom:767.325000px;}
.y6b_c00048{bottom:768.405000px;}
.y67_c00048{bottom:769.680000px;}
.y64_c00048{bottom:784.905000px;}
.y66_c00048{bottom:785.745000px;}
.y60_c00048{bottom:787.680000px;}
.y65_c00048{bottom:787.905000px;}
.y63_c00048{bottom:788.130000px;}
.y62_c00048{bottom:788.970000px;}
.y61_c00048{bottom:789.405000px;}
.y5f_c00048{bottom:805.245000px;}
.y5c_c00048{bottom:805.680000px;}
.y5e_c00048{bottom:806.325000px;}
.y5d_c00048{bottom:807.405000px;}
.y5b_c00048{bottom:808.680000px;}
.y58_c00048{bottom:823.905000px;}
.y59_c00048{bottom:824.745000px;}
.y57_c00048{bottom:826.905000px;}
.y5a_c00048{bottom:827.130000px;}
.y56_c00048{bottom:828.630000px;}
.y55_c00048{bottom:828.825000px;}
.y54_c00048{bottom:844.245000px;}
.y4f_c00048{bottom:844.680000px;}
.y50_c00048{bottom:845.325000px;}
.y53_c00048{bottom:845.745000px;}
.y52_c00048{bottom:847.470000px;}
.y51_c00048{bottom:847.905000px;}
.y4e_c00048{bottom:851.325000px;}
.y4d_c00048{bottom:862.905000px;}
.y4c_c00048{bottom:864.405000px;}
.y49_c00048{bottom:865.245000px;}
.y4a_c00048{bottom:866.130000px;}
.y48_c00048{bottom:866.325000px;}
.y4b_c00048{bottom:867.405000px;}
.y47_c00048{bottom:867.825000px;}
.y46_c00048{bottom:870.825000px;}
.y44_c00048{bottom:884.325000px;}
.y43_c00048{bottom:884.745000px;}
.y45_c00048{bottom:885.630000px;}
.y40_c00048{bottom:885.825000px;}
.y42_c00048{bottom:886.470000px;}
.y41_c00048{bottom:886.905000px;}
.y3f_c00048{bottom:887.550000px;}
.y3e_c00048{bottom:889.905000px;}
.y38_c00048{bottom:901.905000px;}
.y3d_c00048{bottom:904.245000px;}
.y3c_c00048{bottom:905.130000px;}
.y3a_c00048{bottom:905.325000px;}
.y39_c00048{bottom:906.405000px;}
.y36_c00048{bottom:906.825000px;}
.y37_c00048{bottom:907.050000px;}
.y3b_c00048{bottom:907.470000px;}
.y34_c00048{bottom:923.745000px;}
.y35_c00048{bottom:924.825000px;}
.y32_c00048{bottom:925.050000px;}
.y33_c00048{bottom:925.905000px;}
.y31_c00048{bottom:927.825000px;}
.y2d_c00048{bottom:943.245000px;}
.y2e_c00048{bottom:944.100000px;}
.y2b_c00048{bottom:944.745000px;}
.y30_c00048{bottom:944.970000px;}
.y2c_c00048{bottom:945.405000px;}
.y2f_c00048{bottom:946.470000px;}
.y2a_c00048{bottom:949.905000px;}
.y26_c00048{bottom:962.745000px;}
.y27_c00048{bottom:964.905000px;}
.y28_c00048{bottom:965.130000px;}
.y29_c00048{bottom:965.970000px;}
.y25_c00048{bottom:966.405000px;}
.y24_c00048{bottom:968.550000px;}
.y22_c00048{bottom:982.245000px;}
.y23_c00048{bottom:984.405000px;}
.y1f_c00048{bottom:984.825000px;}
.y21_c00048{bottom:985.470000px;}
.y20_c00048{bottom:985.905000px;}
.y1e_c00048{bottom:1001.745000px;}
.y1d_c00048{bottom:1002.825000px;}
.y1b_c00048{bottom:1003.905000px;}
.y19_c00048{bottom:1004.130000px;}
.y18_c00048{bottom:1004.745000px;}
.y1c_c00048{bottom:1004.970000px;}
.y1a_c00048{bottom:1005.405000px;}
.y14_c00048{bottom:1021.245000px;}
.y16_c00048{bottom:1022.325000px;}
.y17_c00048{bottom:1022.745000px;}
.y13_c00048{bottom:1023.405000px;}
.y15_c00048{bottom:1023.630000px;}
.y12_c00048{bottom:1024.905000px;}
.y11_c00048{bottom:1026.405000px;}
.y10_c00048{bottom:1027.905000px;}
.yf_c00048{bottom:1039.905000px;}
.yd_c00048{bottom:1040.745000px;}
.ya_c00048{bottom:1042.245000px;}
.ye_c00048{bottom:1042.905000px;}
.yc_c00048{bottom:1043.130000px;}
.yb_c00048{bottom:1044.405000px;}
.y9_c00048{bottom:1047.405000px;}
.y5_c00048{bottom:1060.905000px;}
.y6_c00048{bottom:1061.745000px;}
.y8_c00048{bottom:1062.630000px;}
.y4_c00048{bottom:1063.245000px;}
.y7_c00048{bottom:1063.905000px;}
.y3_c00048{bottom:1065.825000px;}
.y2_c00048{bottom:1099.905000px;}
.y1_c00048{bottom:1102.050000px;}
.hb_c00048{height:14.612168px;}
.hc_c00048{height:16.752334px;}
.h5_c00048{height:23.025234px;}
.h1_c00048{height:25.091602px;}
.h6_c00048{height:31.364502px;}
.h2_c00048{height:35.571035px;}
.h3_c00048{height:39.777568px;}
.h4_c00048{height:43.910303px;}
.h9_c00048{height:48.116836px;}
.ha_c00048{height:52.323369px;}
.h8_c00048{height:53.571035px;}
.h7_c00048{height:56.456104px;}
.he_c00048{height:60.662637px;}
.hd_c00048{height:79.481338px;}
.h0_c00048{height:1335.000000px;}
.w0_c00048{width:880.500000px;}
.x0_c00048{left:0.000000px;}
.x3_c00048{left:150.000000px;}
.x37_c00048{left:151.920000px;}
.x90_c00048{left:153.420000px;}
.xc1_c00048{left:154.920000px;}
.x100_c00048{left:156.000000px;}
.xf2_c00048{left:159.645000px;}
.x109_c00048{left:162.000000px;}
.xfb_c00048{left:163.500000px;}
.xe3_c00048{left:166.500000px;}
.x10e_c00048{left:168.000000px;}
.xad_c00048{left:169.500000px;}
.xa5_c00048{left:171.000000px;}
.x10f_c00048{left:174.000000px;}
.xe5_c00048{left:175.500000px;}
.x91_c00048{left:177.420000px;}
.xfc_c00048{left:178.500000px;}
.x4a_c00048{left:180.000000px;}
.x11_c00048{left:181.500000px;}
.x68_c00048{left:183.420000px;}
.xda_c00048{left:185.145000px;}
.xae_c00048{left:187.500000px;}
.xb1_c00048{left:189.000000px;}
.x43_c00048{left:190.500000px;}
.xfd_c00048{left:193.500000px;}
.xce_c00048{left:194.580000px;}
.x1d_c00048{left:196.500000px;}
.x4_c00048{left:197.580000px;}
.x77_c00048{left:199.920000px;}
.x6f_c00048{left:201.420000px;}
.xd3_c00048{left:204.000000px;}
.x110_c00048{left:205.920000px;}
.x92_c00048{left:207.000000px;}
.x2b_c00048{left:210.000000px;}
.x105_c00048{left:211.920000px;}
.x1e_c00048{left:214.920000px;}
.x8c_c00048{left:216.000000px;}
.x54_c00048{left:219.420000px;}
.x82_c00048{left:220.920000px;}
.xd4_c00048{left:222.420000px;}
.x8d_c00048{left:223.500000px;}
.x38_c00048{left:225.420000px;}
.xdb_c00048{left:228.000000px;}
.xec_c00048{left:229.500000px;}
.x2c_c00048{left:231.420000px;}
.x12_c00048{left:232.920000px;}
.x5d_c00048{left:234.000000px;}
.xc2_c00048{left:237.000000px;}
.xe0_c00048{left:238.500000px;}
.x4b_c00048{left:239.580000px;}
.xe6_c00048{left:243.000000px;}
.x5_c00048{left:244.920000px;}
.xdc_c00048{left:246.000000px;}
.x39_c00048{left:247.500000px;}
.x55_c00048{left:248.580000px;}
.xcf_c00048{left:250.080000px;}
.xb2_c00048{left:253.500000px;}
.x10a_c00048{left:256.500000px;}
.x2d_c00048{left:258.000000px;}
.x9b_c00048{left:259.500000px;}
.xfe_c00048{left:262.080000px;}
.x70_c00048{left:264.000000px;}
.xbd_c00048{left:265.500000px;}
.x106_c00048{left:267.000000px;}
.xc3_c00048{left:268.500000px;}
.xdd_c00048{left:270.000000px;}
.x13_c00048{left:271.080000px;}
.xb7_c00048{left:273.000000px;}
.x3a_c00048{left:274.920000px;}
.x6_c00048{left:277.500000px;}
.xe1_c00048{left:279.000000px;}
.x1f_c00048{left:280.920000px;}
.xf3_c00048{left:282.000000px;}
.xa0_c00048{left:283.080000px;}
.x56_c00048{left:284.580000px;}
.x44_c00048{left:285.645000px;}
.xd8_c00048{left:289.920000px;}
.xed_c00048{left:292.500000px;}
.x7d_c00048{left:293.580000px;}
.x5e_c00048{left:295.080000px;}
.xf4_c00048{left:297.000000px;}
.xe4_c00048{left:298.920000px;}
.x7_c00048{left:301.275000px;}
.x2e_c00048{left:304.500000px;}
.x4c_c00048{left:305.580000px;}
.x3b_c00048{left:309.420000px;}
.xa6_c00048{left:312.000000px;}
.xa1_c00048{left:313.080000px;}
.xf5_c00048{left:315.000000px;}
.x8_c00048{left:318.000000px;}
.x20_c00048{left:319.080000px;}
.xde_c00048{left:321.000000px;}
.xb3_c00048{left:322.080000px;}
.xb8_c00048{left:324.000000px;}
.x87_c00048{left:325.500000px;}
.xe7_c00048{left:327.000000px;}
.x69_c00048{left:330.000000px;}
.xbe_c00048{left:331.920000px;}
.x2f_c00048{left:335.580000px;}
.x107_c00048{left:337.500000px;}
.x5f_c00048{left:338.580000px;}
.x14_c00048{left:341.580000px;}
.xa2_c00048{left:343.080000px;}
.x45_c00048{left:344.580000px;}
.x4d_c00048{left:346.080000px;}
.x83_c00048{left:348.420000px;}
.x93_c00048{left:350.580000px;}
.x78_c00048{left:352.500000px;}
.x71_c00048{left:354.420000px;}
.x21_c00048{left:358.920000px;}
.xa7_c00048{left:360.000000px;}
.xee_c00048{left:361.080000px;}
.x9_c00048{left:363.420000px;}
.xc9_c00048{left:365.580000px;}
.xf8_c00048{left:367.080000px;}
.x60_c00048{left:369.420000px;}
.xdf_c00048{left:372.000000px;}
.x30_c00048{left:376.080000px;}
.x9c_c00048{left:377.355000px;}
.xd5_c00048{left:379.500000px;}
.xb9_c00048{left:382.500000px;}
.xd0_c00048{left:384.000000px;}
.x88_c00048{left:385.080000px;}
.x84_c00048{left:387.000000px;}
.x101_c00048{left:388.500000px;}
.xa_c00048{left:391.500000px;}
.x1_c00048{left:393.000000px;}
.x22_c00048{left:394.500000px;}
.x15_c00048{left:396.000000px;}
.x94_c00048{left:399.420000px;}
.x61_c00048{left:400.500000px;}
.x89_c00048{left:402.000000px;}
.xff_c00048{left:405.420000px;}
.xaf_c00048{left:406.500000px;}
.x4e_c00048{left:408.420000px;}
.xca_c00048{left:410.580000px;}
.xe2_c00048{left:412.500000px;}
.xa8_c00048{left:414.000000px;}
.x57_c00048{left:415.500000px;}
.x111_c00048{left:417.000000px;}
.x23_c00048{left:418.080000px;}
.xc4_c00048{left:420.000000px;}
.x102_c00048{left:422.580000px;}
.x79_c00048{left:424.500000px;}
.x46_c00048{left:426.000000px;}
.x72_c00048{left:427.500000px;}
.xa9_c00048{left:429.000000px;}
.x95_c00048{left:430.500000px;}
.xb_c00048{left:433.500000px;}
.xbf_c00048{left:438.000000px;}
.x8a_c00048{left:439.500000px;}
.x3c_c00048{left:441.000000px;}
.x103_c00048{left:442.500000px;}
.x7e_c00048{left:443.580000px;}
.xc5_c00048{left:445.500000px;}
.x6a_c00048{left:447.000000px;}
.x16_c00048{left:450.000000px;}
.x31_c00048{left:451.920000px;}
.xd9_c00048{left:456.000000px;}
.x62_c00048{left:457.500000px;}
.x24_c00048{left:458.580000px;}
.x4f_c00048{left:460.080000px;}
.xef_c00048{left:462.000000px;}
.x7a_c00048{left:463.080000px;}
.x63_c00048{left:469.500000px;}
.x17_c00048{left:472.500000px;}
.xe8_c00048{left:475.500000px;}
.x58_c00048{left:477.420000px;}
.x32_c00048{left:480.420000px;}
.x10b_c00048{left:483.000000px;}
.x7f_c00048{left:484.080000px;}
.x3d_c00048{left:485.580000px;}
.x25_c00048{left:490.920000px;}
.x7b_c00048{left:493.500000px;}
.xe9_c00048{left:495.000000px;}
.xc0_c00048{left:496.500000px;}
.x96_c00048{left:498.000000px;}
.x8e_c00048{left:499.080000px;}
.xc6_c00048{left:501.000000px;}
.xd6_c00048{left:502.500000px;}
.xba_c00048{left:503.580000px;}
.xc_c00048{left:505.500000px;}
.x3e_c00048{left:507.000000px;}
.x73_c00048{left:508.500000px;}
.x50_c00048{left:511.500000px;}
.xa3_c00048{left:513.000000px;}
.x33_c00048{left:514.500000px;}
.x80_c00048{left:517.500000px;}
.x47_c00048{left:519.000000px;}
.x26_c00048{left:520.500000px;}
.x6b_c00048{left:521.580000px;}
.xcb_c00048{left:524.580000px;}
.xd_c00048{left:527.145000px;}
.x51_c00048{left:529.500000px;}
.xf0_c00048{left:532.500000px;}
.x18_c00048{left:535.500000px;}
.x97_c00048{left:536.580000px;}
.x64_c00048{left:540.000000px;}
.x104_c00048{left:541.500000px;}
.x74_c00048{left:544.080000px;}
.x81_c00048{left:546.420000px;}
.x59_c00048{left:547.920000px;}
.x27_c00048{left:550.500000px;}
.x9d_c00048{left:551.580000px;}
.x52_c00048{left:555.000000px;}
.xf6_c00048{left:556.500000px;}
.x48_c00048{left:558.000000px;}
.xe_c00048{left:561.420000px;}
.xaa_c00048{left:562.500000px;}
.xd1_c00048{left:564.420000px;}
.xb4_c00048{left:566.580000px;}
.x3f_c00048{left:568.500000px;}
.x34_c00048{left:571.920000px;}
.x28_c00048{left:576.420000px;}
.x8f_c00048{left:579.000000px;}
.xf_c00048{left:581.580000px;}
.x5a_c00048{left:583.080000px;}
.x98_c00048{left:585.000000px;}
.xbb_c00048{left:586.080000px;}
.xf1_c00048{left:588.000000px;}
.x6c_c00048{left:589.500000px;}
.xd2_c00048{left:591.000000px;}
.xcc_c00048{left:592.500000px;}
.x112_c00048{left:595.500000px;}
.xb5_c00048{left:596.580000px;}
.x19_c00048{left:599.580000px;}
.x5b_c00048{left:603.420000px;}
.x40_c00048{left:604.500000px;}
.x9e_c00048{left:613.080000px;}
.x85_c00048{left:615.420000px;}
.x49_c00048{left:616.500000px;}
.xb6_c00048{left:618.420000px;}
.xbc_c00048{left:619.500000px;}
.xb0_c00048{left:621.420000px;}
.x35_c00048{left:625.500000px;}
.x7c_c00048{left:627.000000px;}
.x65_c00048{left:628.080000px;}
.xab_c00048{left:629.355000px;}
.x6d_c00048{left:630.420000px;}
.x1a_c00048{left:631.920000px;}
.x29_c00048{left:634.080000px;}
.xc7_c00048{left:636.420000px;}
.x75_c00048{left:639.000000px;}
.x99_c00048{left:643.500000px;}
.x10c_c00048{left:645.000000px;}
.x66_c00048{left:646.500000px;}
.x10_c00048{left:654.000000px;}
.x86_c00048{left:655.500000px;}
.xea_c00048{left:657.000000px;}
.x5c_c00048{left:660.000000px;}
.x8b_c00048{left:661.080000px;}
.x36_c00048{left:662.580000px;}
.x2a_c00048{left:664.500000px;}
.x67_c00048{left:666.000000px;}
.xf9_c00048{left:667.920000px;}
.x1b_c00048{left:669.000000px;}
.x41_c00048{left:672.000000px;}
.xa4_c00048{left:674.580000px;}
.x9a_c00048{left:678.645000px;}
.x53_c00048{left:681.000000px;}
.x1c_c00048{left:682.920000px;}
.xfa_c00048{left:684.645000px;}
.xac_c00048{left:686.580000px;}
.xcd_c00048{left:688.500000px;}
.x42_c00048{left:691.500000px;}
.x108_c00048{left:692.580000px;}
.xd7_c00048{left:694.500000px;}
.xeb_c00048{left:695.580000px;}
.x6e_c00048{left:699.420000px;}
.x76_c00048{left:700.500000px;}
.xf7_c00048{left:709.920000px;}
.x2_c00048{left:711.420000px;}
.xc8_c00048{left:714.000000px;}
.x9f_c00048{left:715.080000px;}
.x10d_c00048{left:719.580000px;}
@media print{
.v0_c00048{vertical-align:0.000000pt;}
.v1_c00048{vertical-align:16.000000pt;}
.ls0_c00048{letter-spacing:0.000000pt;}
.ws0_c00048{word-spacing:-8.163886pt;}
.ws3_c00048{word-spacing:-5.247899pt;}
.ws1_c00048{word-spacing:-3.413226pt;}
.ws2_c00048{word-spacing:-1.848392pt;}
.ws4_c00048{word-spacing:0.000000pt;}
.fs9_c00048{font-size:10.560000pt;}
.fsa_c00048{font-size:12.106667pt;}
.fs4_c00048{font-size:16.640000pt;}
.fs0_c00048{font-size:18.133333pt;}
.fs5_c00048{font-size:22.666667pt;}
.fs1_c00048{font-size:25.706667pt;}
.fs2_c00048{font-size:28.746667pt;}
.fs3_c00048{font-size:31.733333pt;}
.fs7_c00048{font-size:34.773333pt;}
.fs8_c00048{font-size:37.813333pt;}
.fs6_c00048{font-size:40.800000pt;}
.fsc_c00048{font-size:43.840000pt;}
.fsb_c00048{font-size:57.440000pt;}
.y0_c00048{bottom:0.000000pt;}
.y13f_c00048{bottom:222.640000pt;}
.y13e_c00048{bottom:223.400000pt;}
.y139_c00048{bottom:223.600000pt;}
.y13c_c00048{bottom:224.360000pt;}
.y13d_c00048{bottom:224.560000pt;}
.y138_c00048{bottom:224.733333pt;}
.y13a_c00048{bottom:224.933333pt;}
.y13b_c00048{bottom:225.306667pt;}
.y137_c00048{bottom:226.640000pt;}
.y136_c00048{bottom:227.226667pt;}
.y135_c00048{bottom:228.360000pt;}
.y134_c00048{bottom:229.893333pt;}
.y133_c00048{bottom:230.840000pt;}
.y12b_c00048{bottom:234.266667pt;}
.y12c_c00048{bottom:235.586667pt;}
.y12d_c00048{bottom:236.733333pt;}
.y131_c00048{bottom:237.693333pt;}
.y130_c00048{bottom:238.640000pt;}
.y12e_c00048{bottom:238.840000pt;}
.y12f_c00048{bottom:239.600000pt;}
.y132_c00048{bottom:239.973333pt;}
.y12a_c00048{bottom:251.400000pt;}
.y129_c00048{bottom:255.600000pt;}
.y128_c00048{bottom:256.560000pt;}
.y127_c00048{bottom:257.893333pt;}
.y121_c00048{bottom:263.226667pt;}
.y126_c00048{bottom:263.400000pt;}
.y123_c00048{bottom:263.973333pt;}
.y124_c00048{bottom:264.173333pt;}
.y120_c00048{bottom:264.360000pt;}
.y122_c00048{bottom:264.933333pt;}
.y11e_c00048{bottom:265.493333pt;}
.y125_c00048{bottom:266.266667pt;}
.y11f_c00048{bottom:267.400000pt;}
.y11c_c00048{bottom:276.360000pt;}
.y11d_c00048{bottom:278.266667pt;}
.y11b_c00048{bottom:279.026667pt;}
.y11a_c00048{bottom:279.226667pt;}
.y119_c00048{bottom:279.400000pt;}
.y10f_c00048{bottom:286.266667pt;}
.y112_c00048{bottom:288.733333pt;}
.y116_c00048{bottom:289.693333pt;}
.y113_c00048{bottom:290.266667pt;}
.y114_c00048{bottom:290.640000pt;}
.y115_c00048{bottom:290.840000pt;}
.y111_c00048{bottom:291.026667pt;}
.y117_c00048{bottom:291.600000pt;}
.y118_c00048{bottom:291.973333pt;}
.y110_c00048{bottom:292.933333pt;}
.y10e_c00048{bottom:302.066667pt;}
.y10a_c00048{bottom:303.026667pt;}
.y10c_c00048{bottom:303.973333pt;}
.y10b_c00048{bottom:304.173333pt;}
.y10d_c00048{bottom:304.933333pt;}
.y109_c00048{bottom:306.066667pt;}
.y108_c00048{bottom:306.266667pt;}
.y107_c00048{bottom:309.506667pt;}
.yfd_c00048{bottom:313.893333pt;}
.y105_c00048{bottom:315.026667pt;}
.y103_c00048{bottom:315.973333pt;}
.y101_c00048{bottom:316.360000pt;}
.y100_c00048{bottom:316.733333pt;}
.y102_c00048{bottom:316.933333pt;}
.y104_c00048{bottom:317.306667pt;}
.y106_c00048{bottom:318.266667pt;}
.yfe_c00048{bottom:320.933333pt;}
.yff_c00048{bottom:321.306667pt;}
.yf7_c00048{bottom:335.760000pt;}
.yf6_c00048{bottom:336.560000pt;}
.yf9_c00048{bottom:339.973333pt;}
.yfa_c00048{bottom:340.733333pt;}
.yfc_c00048{bottom:341.693333pt;}
.yf8_c00048{bottom:342.840000pt;}
.yfb_c00048{bottom:343.600000pt;}
.yf4_c00048{bottom:355.026667pt;}
.yf5_c00048{bottom:355.226667pt;}
.yf2_c00048{bottom:355.973333pt;}
.yf3_c00048{bottom:356.933333pt;}
.yf1_c00048{bottom:357.306667pt;}
.yf0_c00048{bottom:359.226667pt;}
.yef_c00048{bottom:359.973333pt;}
.ye9_c00048{bottom:367.400000pt;}
.yec_c00048{bottom:368.360000pt;}
.yed_c00048{bottom:368.560000pt;}
.yee_c00048{bottom:368.933333pt;}
.yea_c00048{bottom:369.306667pt;}
.ye5_c00048{bottom:369.493333pt;}
.yeb_c00048{bottom:370.266667pt;}
.ye7_c00048{bottom:370.640000pt;}
.ye8_c00048{bottom:371.600000pt;}
.ye6_c00048{bottom:373.306667pt;}
.ye4_c00048{bottom:373.893333pt;}
.ye3_c00048{bottom:380.733333pt;}
.ye0_c00048{bottom:381.693333pt;}
.ye1_c00048{bottom:382.640000pt;}
.ye2_c00048{bottom:383.600000pt;}
.ydf_c00048{bottom:384.360000pt;}
.yde_c00048{bottom:386.640000pt;}
.ydd_c00048{bottom:389.506667pt;}
.yd5_c00048{bottom:393.306667pt;}
.ydb_c00048{bottom:393.693333pt;}
.yd6_c00048{bottom:394.066667pt;}
.ydc_c00048{bottom:394.640000pt;}
.yda_c00048{bottom:395.026667pt;}
.yd8_c00048{bottom:395.226667pt;}
.yd4_c00048{bottom:395.773333pt;}
.yd7_c00048{bottom:395.973333pt;}
.yd9_c00048{bottom:396.933333pt;}
.yd3_c00048{bottom:400.933333pt;}
.yd1_c00048{bottom:406.266667pt;}
.ycf_c00048{bottom:407.026667pt;}
.yd2_c00048{bottom:407.226667pt;}
.yd0_c00048{bottom:407.973333pt;}
.yce_c00048{bottom:408.933333pt;}
.ycd_c00048{bottom:409.306667pt;}
.ycc_c00048{bottom:410.840000pt;}
.ycb_c00048{bottom:411.026667pt;}
.yca_c00048{bottom:413.893333pt;}
.yc9_c00048{bottom:434.440000pt;}
.yc7_c00048{bottom:435.773333pt;}
.yc8_c00048{bottom:436.360000pt;}
.yc6_c00048{bottom:437.693333pt;}
.yc5_c00048{bottom:440.733333pt;}
.yc4_c00048{bottom:443.026667pt;}
.yc3_c00048{bottom:456.360000pt;}
.yc2_c00048{bottom:460.733333pt;}
.ybf_c00048{bottom:470.440000pt;}
.yc0_c00048{bottom:471.400000pt;}
.yc1_c00048{bottom:472.360000pt;}
.ybe_c00048{bottom:473.693333pt;}
.ybd_c00048{bottom:475.026667pt;}
.yba_c00048{bottom:487.400000pt;}
.ybc_c00048{bottom:487.773333pt;}
.ybb_c00048{bottom:489.306667pt;}
.yb8_c00048{bottom:489.693333pt;}
.yb9_c00048{bottom:489.893333pt;}
.yb6_c00048{bottom:490.826667pt;}
.yb7_c00048{bottom:491.026667pt;}
.yb5_c00048{bottom:492.360000pt;}
.yb2_c00048{bottom:504.360000pt;}
.yb4_c00048{bottom:505.106667pt;}
.yb1_c00048{bottom:507.026667pt;}
.yb3_c00048{bottom:507.973333pt;}
.yb0_c00048{bottom:508.360000pt;}
.yaf_c00048{bottom:509.106667pt;}
.yae_c00048{bottom:512.733333pt;}
.yac_c00048{bottom:522.440000pt;}
.ya9_c00048{bottom:522.640000pt;}
.ya8_c00048{bottom:523.773333pt;}
.yaa_c00048{bottom:524.360000pt;}
.yad_c00048{bottom:524.560000pt;}
.yab_c00048{bottom:525.306667pt;}
.ya7_c00048{bottom:525.493333pt;}
.ya6_c00048{bottom:528.733333pt;}
.ya1_c00048{bottom:540.360000pt;}
.ya3_c00048{bottom:541.106667pt;}
.ya2_c00048{bottom:541.893333pt;}
.ya5_c00048{bottom:542.066667pt;}
.ya4_c00048{bottom:543.026667pt;}
.ya0_c00048{bottom:544.360000pt;}
.y9e_c00048{bottom:558.066667pt;}
.y9f_c00048{bottom:558.440000pt;}
.y9b_c00048{bottom:558.826667pt;}
.y9c_c00048{bottom:559.973333pt;}
.y9d_c00048{bottom:560.360000pt;}
.y9a_c00048{bottom:562.640000pt;}
.y97_c00048{bottom:575.773333pt;}
.y98_c00048{bottom:577.693333pt;}
.y99_c00048{bottom:578.640000pt;}
.y96_c00048{bottom:579.400000pt;}
.y95_c00048{bottom:582.066667pt;}
.y91_c00048{bottom:593.106667pt;}
.y94_c00048{bottom:594.066667pt;}
.y92_c00048{bottom:595.026667pt;}
.y93_c00048{bottom:595.973333pt;}
.y90_c00048{bottom:596.360000pt;}
.y8e_c00048{bottom:597.106667pt;}
.y8f_c00048{bottom:597.693333pt;}
.y8d_c00048{bottom:599.600000pt;}
.y8b_c00048{bottom:610.440000pt;}
.y8c_c00048{bottom:611.773333pt;}
.y8a_c00048{bottom:612.360000pt;}
.y88_c00048{bottom:612.560000pt;}
.y89_c00048{bottom:613.306667pt;}
.y87_c00048{bottom:613.693333pt;}
.y86_c00048{bottom:615.026667pt;}
.y85_c00048{bottom:617.306667pt;}
.y84_c00048{bottom:627.773333pt;}
.y83_c00048{bottom:627.973333pt;}
.y82_c00048{bottom:628.733333pt;}
.y7e_c00048{bottom:629.106667pt;}
.y81_c00048{bottom:629.693333pt;}
.y7f_c00048{bottom:630.640000pt;}
.y7d_c00048{bottom:630.826667pt;}
.y80_c00048{bottom:631.026667pt;}
.y79_c00048{bottom:644.360000pt;}
.y78_c00048{bottom:645.106667pt;}
.y7b_c00048{bottom:647.026667pt;}
.y77_c00048{bottom:647.226667pt;}
.y76_c00048{bottom:647.400000pt;}
.y75_c00048{bottom:647.773333pt;}
.y7a_c00048{bottom:647.973333pt;}
.y7c_c00048{bottom:648.360000pt;}
.y74_c00048{bottom:650.440000pt;}
.y73_c00048{bottom:662.440000pt;}
.y70_c00048{bottom:663.773333pt;}
.y72_c00048{bottom:665.306667pt;}
.y71_c00048{bottom:665.693333pt;}
.y6f_c00048{bottom:666.066667pt;}
.y6e_c00048{bottom:668.360000pt;}
.y6d_c00048{bottom:668.933333pt;}
.y69_c00048{bottom:679.800000pt;}
.y6a_c00048{bottom:681.106667pt;}
.y68_c00048{bottom:681.693333pt;}
.y6c_c00048{bottom:682.066667pt;}
.y6b_c00048{bottom:683.026667pt;}
.y67_c00048{bottom:684.160000pt;}
.y64_c00048{bottom:697.693333pt;}
.y66_c00048{bottom:698.440000pt;}
.y60_c00048{bottom:700.160000pt;}
.y65_c00048{bottom:700.360000pt;}
.y63_c00048{bottom:700.560000pt;}
.y62_c00048{bottom:701.306667pt;}
.y61_c00048{bottom:701.693333pt;}
.y5f_c00048{bottom:715.773333pt;}
.y5c_c00048{bottom:716.160000pt;}
.y5e_c00048{bottom:716.733333pt;}
.y5d_c00048{bottom:717.693333pt;}
.y5b_c00048{bottom:718.826667pt;}
.y58_c00048{bottom:732.360000pt;}
.y59_c00048{bottom:733.106667pt;}
.y57_c00048{bottom:735.026667pt;}
.y5a_c00048{bottom:735.226667pt;}
.y56_c00048{bottom:736.560000pt;}
.y55_c00048{bottom:736.733333pt;}
.y54_c00048{bottom:750.440000pt;}
.y4f_c00048{bottom:750.826667pt;}
.y50_c00048{bottom:751.400000pt;}
.y53_c00048{bottom:751.773333pt;}
.y52_c00048{bottom:753.306667pt;}
.y51_c00048{bottom:753.693333pt;}
.y4e_c00048{bottom:756.733333pt;}
.y4d_c00048{bottom:767.026667pt;}
.y4c_c00048{bottom:768.360000pt;}
.y49_c00048{bottom:769.106667pt;}
.y4a_c00048{bottom:769.893333pt;}
.y48_c00048{bottom:770.066667pt;}
.y4b_c00048{bottom:771.026667pt;}
.y47_c00048{bottom:771.400000pt;}
.y46_c00048{bottom:774.066667pt;}
.y44_c00048{bottom:786.066667pt;}
.y43_c00048{bottom:786.440000pt;}
.y45_c00048{bottom:787.226667pt;}
.y40_c00048{bottom:787.400000pt;}
.y42_c00048{bottom:787.973333pt;}
.y41_c00048{bottom:788.360000pt;}
.y3f_c00048{bottom:788.933333pt;}
.y3e_c00048{bottom:791.026667pt;}
.y38_c00048{bottom:801.693333pt;}
.y3d_c00048{bottom:803.773333pt;}
.y3c_c00048{bottom:804.560000pt;}
.y3a_c00048{bottom:804.733333pt;}
.y39_c00048{bottom:805.693333pt;}
.y36_c00048{bottom:806.066667pt;}
.y37_c00048{bottom:806.266667pt;}
.y3b_c00048{bottom:806.640000pt;}
.y34_c00048{bottom:821.106667pt;}
.y35_c00048{bottom:822.066667pt;}
.y32_c00048{bottom:822.266667pt;}
.y33_c00048{bottom:823.026667pt;}
.y31_c00048{bottom:824.733333pt;}
.y2d_c00048{bottom:838.440000pt;}
.y2e_c00048{bottom:839.200000pt;}
.y2b_c00048{bottom:839.773333pt;}
.y30_c00048{bottom:839.973333pt;}
.y2c_c00048{bottom:840.360000pt;}
.y2f_c00048{bottom:841.306667pt;}
.y2a_c00048{bottom:844.360000pt;}
.y26_c00048{bottom:855.773333pt;}
.y27_c00048{bottom:857.693333pt;}
.y28_c00048{bottom:857.893333pt;}
.y29_c00048{bottom:858.640000pt;}
.y25_c00048{bottom:859.026667pt;}
.y24_c00048{bottom:860.933333pt;}
.y22_c00048{bottom:873.106667pt;}
.y23_c00048{bottom:875.026667pt;}
.y1f_c00048{bottom:875.400000pt;}
.y21_c00048{bottom:875.973333pt;}
.y20_c00048{bottom:876.360000pt;}
.y1e_c00048{bottom:890.440000pt;}
.y1d_c00048{bottom:891.400000pt;}
.y1b_c00048{bottom:892.360000pt;}
.y19_c00048{bottom:892.560000pt;}
.y18_c00048{bottom:893.106667pt;}
.y1c_c00048{bottom:893.306667pt;}
.y1a_c00048{bottom:893.693333pt;}
.y14_c00048{bottom:907.773333pt;}
.y16_c00048{bottom:908.733333pt;}
.y17_c00048{bottom:909.106667pt;}
.y13_c00048{bottom:909.693333pt;}
.y15_c00048{bottom:909.893333pt;}
.y12_c00048{bottom:911.026667pt;}
.y11_c00048{bottom:912.360000pt;}
.y10_c00048{bottom:913.693333pt;}
.yf_c00048{bottom:924.360000pt;}
.yd_c00048{bottom:925.106667pt;}
.ya_c00048{bottom:926.440000pt;}
.ye_c00048{bottom:927.026667pt;}
.yc_c00048{bottom:927.226667pt;}
.yb_c00048{bottom:928.360000pt;}
.y9_c00048{bottom:931.026667pt;}
.y5_c00048{bottom:943.026667pt;}
.y6_c00048{bottom:943.773333pt;}
.y8_c00048{bottom:944.560000pt;}
.y4_c00048{bottom:945.106667pt;}
.y7_c00048{bottom:945.693333pt;}
.y3_c00048{bottom:947.400000pt;}
.y2_c00048{bottom:977.693333pt;}
.y1_c00048{bottom:979.600000pt;}
.hb_c00048{height:12.988594pt;}
.hc_c00048{height:14.890964pt;}
.h5_c00048{height:20.466875pt;}
.h1_c00048{height:22.303646pt;}
.h6_c00048{height:27.879557pt;}
.h2_c00048{height:31.618698pt;}
.h3_c00048{height:35.357839pt;}
.h4_c00048{height:39.031380pt;}
.h9_c00048{height:42.770521pt;}
.ha_c00048{height:46.509661pt;}
.h8_c00048{height:47.618698pt;}
.h7_c00048{height:50.183203pt;}
.he_c00048{height:53.922344pt;}
.hd_c00048{height:70.650078pt;}
.h0_c00048{height:1186.666667pt;}
.w0_c00048{width:782.666667pt;}
.x0_c00048{left:0.000000pt;}
.x3_c00048{left:133.333333pt;}
.x37_c00048{left:135.040000pt;}
.x90_c00048{left:136.373333pt;}
.xc1_c00048{left:137.706667pt;}
.x100_c00048{left:138.666667pt;}
.xf2_c00048{left:141.906667pt;}
.x109_c00048{left:144.000000pt;}
.xfb_c00048{left:145.333333pt;}
.xe3_c00048{left:148.000000pt;}
.x10e_c00048{left:149.333333pt;}
.xad_c00048{left:150.666667pt;}
.xa5_c00048{left:152.000000pt;}
.x10f_c00048{left:154.666667pt;}
.xe5_c00048{left:156.000000pt;}
.x91_c00048{left:157.706667pt;}
.xfc_c00048{left:158.666667pt;}
.x4a_c00048{left:160.000000pt;}
.x11_c00048{left:161.333333pt;}
.x68_c00048{left:163.040000pt;}
.xda_c00048{left:164.573333pt;}
.xae_c00048{left:166.666667pt;}
.xb1_c00048{left:168.000000pt;}
.x43_c00048{left:169.333333pt;}
.xfd_c00048{left:172.000000pt;}
.xce_c00048{left:172.960000pt;}
.x1d_c00048{left:174.666667pt;}
.x4_c00048{left:175.626667pt;}
.x77_c00048{left:177.706667pt;}
.x6f_c00048{left:179.040000pt;}
.xd3_c00048{left:181.333333pt;}
.x110_c00048{left:183.040000pt;}
.x92_c00048{left:184.000000pt;}
.x2b_c00048{left:186.666667pt;}
.x105_c00048{left:188.373333pt;}
.x1e_c00048{left:191.040000pt;}
.x8c_c00048{left:192.000000pt;}
.x54_c00048{left:195.040000pt;}
.x82_c00048{left:196.373333pt;}
.xd4_c00048{left:197.706667pt;}
.x8d_c00048{left:198.666667pt;}
.x38_c00048{left:200.373333pt;}
.xdb_c00048{left:202.666667pt;}
.xec_c00048{left:204.000000pt;}
.x2c_c00048{left:205.706667pt;}
.x12_c00048{left:207.040000pt;}
.x5d_c00048{left:208.000000pt;}
.xc2_c00048{left:210.666667pt;}
.xe0_c00048{left:212.000000pt;}
.x4b_c00048{left:212.960000pt;}
.xe6_c00048{left:216.000000pt;}
.x5_c00048{left:217.706667pt;}
.xdc_c00048{left:218.666667pt;}
.x39_c00048{left:220.000000pt;}
.x55_c00048{left:220.960000pt;}
.xcf_c00048{left:222.293333pt;}
.xb2_c00048{left:225.333333pt;}
.x10a_c00048{left:228.000000pt;}
.x2d_c00048{left:229.333333pt;}
.x9b_c00048{left:230.666667pt;}
.xfe_c00048{left:232.960000pt;}
.x70_c00048{left:234.666667pt;}
.xbd_c00048{left:236.000000pt;}
.x106_c00048{left:237.333333pt;}
.xc3_c00048{left:238.666667pt;}
.xdd_c00048{left:240.000000pt;}
.x13_c00048{left:240.960000pt;}
.xb7_c00048{left:242.666667pt;}
.x3a_c00048{left:244.373333pt;}
.x6_c00048{left:246.666667pt;}
.xe1_c00048{left:248.000000pt;}
.x1f_c00048{left:249.706667pt;}
.xf3_c00048{left:250.666667pt;}
.xa0_c00048{left:251.626667pt;}
.x56_c00048{left:252.960000pt;}
.x44_c00048{left:253.906667pt;}
.xd8_c00048{left:257.706667pt;}
.xed_c00048{left:260.000000pt;}
.x7d_c00048{left:260.960000pt;}
.x5e_c00048{left:262.293333pt;}
.xf4_c00048{left:264.000000pt;}
.xe4_c00048{left:265.706667pt;}
.x7_c00048{left:267.800000pt;}
.x2e_c00048{left:270.666667pt;}
.x4c_c00048{left:271.626667pt;}
.x3b_c00048{left:275.040000pt;}
.xa6_c00048{left:277.333333pt;}
.xa1_c00048{left:278.293333pt;}
.xf5_c00048{left:280.000000pt;}
.x8_c00048{left:282.666667pt;}
.x20_c00048{left:283.626667pt;}
.xde_c00048{left:285.333333pt;}
.xb3_c00048{left:286.293333pt;}
.xb8_c00048{left:288.000000pt;}
.x87_c00048{left:289.333333pt;}
.xe7_c00048{left:290.666667pt;}
.x69_c00048{left:293.333333pt;}
.xbe_c00048{left:295.040000pt;}
.x2f_c00048{left:298.293333pt;}
.x107_c00048{left:300.000000pt;}
.x5f_c00048{left:300.960000pt;}
.x14_c00048{left:303.626667pt;}
.xa2_c00048{left:304.960000pt;}
.x45_c00048{left:306.293333pt;}
.x4d_c00048{left:307.626667pt;}
.x83_c00048{left:309.706667pt;}
.x93_c00048{left:311.626667pt;}
.x78_c00048{left:313.333333pt;}
.x71_c00048{left:315.040000pt;}
.x21_c00048{left:319.040000pt;}
.xa7_c00048{left:320.000000pt;}
.xee_c00048{left:320.960000pt;}
.x9_c00048{left:323.040000pt;}
.xc9_c00048{left:324.960000pt;}
.xf8_c00048{left:326.293333pt;}
.x60_c00048{left:328.373333pt;}
.xdf_c00048{left:330.666667pt;}
.x30_c00048{left:334.293333pt;}
.x9c_c00048{left:335.426667pt;}
.xd5_c00048{left:337.333333pt;}
.xb9_c00048{left:340.000000pt;}
.xd0_c00048{left:341.333333pt;}
.x88_c00048{left:342.293333pt;}
.x84_c00048{left:344.000000pt;}
.x101_c00048{left:345.333333pt;}
.xa_c00048{left:348.000000pt;}
.x1_c00048{left:349.333333pt;}
.x22_c00048{left:350.666667pt;}
.x15_c00048{left:352.000000pt;}
.x94_c00048{left:355.040000pt;}
.x61_c00048{left:356.000000pt;}
.x89_c00048{left:357.333333pt;}
.xff_c00048{left:360.373333pt;}
.xaf_c00048{left:361.333333pt;}
.x4e_c00048{left:363.040000pt;}
.xca_c00048{left:364.960000pt;}
.xe2_c00048{left:366.666667pt;}
.xa8_c00048{left:368.000000pt;}
.x57_c00048{left:369.333333pt;}
.x111_c00048{left:370.666667pt;}
.x23_c00048{left:371.626667pt;}
.xc4_c00048{left:373.333333pt;}
.x102_c00048{left:375.626667pt;}
.x79_c00048{left:377.333333pt;}
.x46_c00048{left:378.666667pt;}
.x72_c00048{left:380.000000pt;}
.xa9_c00048{left:381.333333pt;}
.x95_c00048{left:382.666667pt;}
.xb_c00048{left:385.333333pt;}
.xbf_c00048{left:389.333333pt;}
.x8a_c00048{left:390.666667pt;}
.x3c_c00048{left:392.000000pt;}
.x103_c00048{left:393.333333pt;}
.x7e_c00048{left:394.293333pt;}
.xc5_c00048{left:396.000000pt;}
.x6a_c00048{left:397.333333pt;}
.x16_c00048{left:400.000000pt;}
.x31_c00048{left:401.706667pt;}
.xd9_c00048{left:405.333333pt;}
.x62_c00048{left:406.666667pt;}
.x24_c00048{left:407.626667pt;}
.x4f_c00048{left:408.960000pt;}
.xef_c00048{left:410.666667pt;}
.x7a_c00048{left:411.626667pt;}
.x63_c00048{left:417.333333pt;}
.x17_c00048{left:420.000000pt;}
.xe8_c00048{left:422.666667pt;}
.x58_c00048{left:424.373333pt;}
.x32_c00048{left:427.040000pt;}
.x10b_c00048{left:429.333333pt;}
.x7f_c00048{left:430.293333pt;}
.x3d_c00048{left:431.626667pt;}
.x25_c00048{left:436.373333pt;}
.x7b_c00048{left:438.666667pt;}
.xe9_c00048{left:440.000000pt;}
.xc0_c00048{left:441.333333pt;}
.x96_c00048{left:442.666667pt;}
.x8e_c00048{left:443.626667pt;}
.xc6_c00048{left:445.333333pt;}
.xd6_c00048{left:446.666667pt;}
.xba_c00048{left:447.626667pt;}
.xc_c00048{left:449.333333pt;}
.x3e_c00048{left:450.666667pt;}
.x73_c00048{left:452.000000pt;}
.x50_c00048{left:454.666667pt;}
.xa3_c00048{left:456.000000pt;}
.x33_c00048{left:457.333333pt;}
.x80_c00048{left:460.000000pt;}
.x47_c00048{left:461.333333pt;}
.x26_c00048{left:462.666667pt;}
.x6b_c00048{left:463.626667pt;}
.xcb_c00048{left:466.293333pt;}
.xd_c00048{left:468.573333pt;}
.x51_c00048{left:470.666667pt;}
.xf0_c00048{left:473.333333pt;}
.x18_c00048{left:476.000000pt;}
.x97_c00048{left:476.960000pt;}
.x64_c00048{left:480.000000pt;}
.x104_c00048{left:481.333333pt;}
.x74_c00048{left:483.626667pt;}
.x81_c00048{left:485.706667pt;}
.x59_c00048{left:487.040000pt;}
.x27_c00048{left:489.333333pt;}
.x9d_c00048{left:490.293333pt;}
.x52_c00048{left:493.333333pt;}
.xf6_c00048{left:494.666667pt;}
.x48_c00048{left:496.000000pt;}
.xe_c00048{left:499.040000pt;}
.xaa_c00048{left:500.000000pt;}
.xd1_c00048{left:501.706667pt;}
.xb4_c00048{left:503.626667pt;}
.x3f_c00048{left:505.333333pt;}
.x34_c00048{left:508.373333pt;}
.x28_c00048{left:512.373333pt;}
.x8f_c00048{left:514.666667pt;}
.xf_c00048{left:516.960000pt;}
.x5a_c00048{left:518.293333pt;}
.x98_c00048{left:520.000000pt;}
.xbb_c00048{left:520.960000pt;}
.xf1_c00048{left:522.666667pt;}
.x6c_c00048{left:524.000000pt;}
.xd2_c00048{left:525.333333pt;}
.xcc_c00048{left:526.666667pt;}
.x112_c00048{left:529.333333pt;}
.xb5_c00048{left:530.293333pt;}
.x19_c00048{left:532.960000pt;}
.x5b_c00048{left:536.373333pt;}
.x40_c00048{left:537.333333pt;}
.x9e_c00048{left:544.960000pt;}
.x85_c00048{left:547.040000pt;}
.x49_c00048{left:548.000000pt;}
.xb6_c00048{left:549.706667pt;}
.xbc_c00048{left:550.666667pt;}
.xb0_c00048{left:552.373333pt;}
.x35_c00048{left:556.000000pt;}
.x7c_c00048{left:557.333333pt;}
.x65_c00048{left:558.293333pt;}
.xab_c00048{left:559.426667pt;}
.x6d_c00048{left:560.373333pt;}
.x1a_c00048{left:561.706667pt;}
.x29_c00048{left:563.626667pt;}
.xc7_c00048{left:565.706667pt;}
.x75_c00048{left:568.000000pt;}
.x99_c00048{left:572.000000pt;}
.x10c_c00048{left:573.333333pt;}
.x66_c00048{left:574.666667pt;}
.x10_c00048{left:581.333333pt;}
.x86_c00048{left:582.666667pt;}
.xea_c00048{left:584.000000pt;}
.x5c_c00048{left:586.666667pt;}
.x8b_c00048{left:587.626667pt;}
.x36_c00048{left:588.960000pt;}
.x2a_c00048{left:590.666667pt;}
.x67_c00048{left:592.000000pt;}
.xf9_c00048{left:593.706667pt;}
.x1b_c00048{left:594.666667pt;}
.x41_c00048{left:597.333333pt;}
.xa4_c00048{left:599.626667pt;}
.x9a_c00048{left:603.240000pt;}
.x53_c00048{left:605.333333pt;}
.x1c_c00048{left:607.040000pt;}
.xfa_c00048{left:608.573333pt;}
.xac_c00048{left:610.293333pt;}
.xcd_c00048{left:612.000000pt;}
.x42_c00048{left:614.666667pt;}
.x108_c00048{left:615.626667pt;}
.xd7_c00048{left:617.333333pt;}
.xeb_c00048{left:618.293333pt;}
.x6e_c00048{left:621.706667pt;}
.x76_c00048{left:622.666667pt;}
.xf7_c00048{left:631.040000pt;}
.x2_c00048{left:632.373333pt;}
.xc8_c00048{left:634.666667pt;}
.x9f_c00048{left:635.626667pt;}
.x10d_c00048{left:639.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_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_c89d58cf35019cf109da2b8c.woff2')format("woff");}.ff1_c00049{font-family:ff1_c00049;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m105_c00049{transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);}
.m56_c00049{transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);}
.md0_c00049{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m57_c00049{transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);}
.me9_c00049{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m102_c00049{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m9_c00049{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.mc6_c00049{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.maa_c00049{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.mec_c00049{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m85_c00049{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m5a_c00049{transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);}
.m97_c00049{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.mb7_c00049{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m58_c00049{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.mf5_c00049{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.mdb_c00049{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mde_c00049{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m8b_c00049{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m9e_c00049{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m8d_c00049{transform:matrix(0.404908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404908,0.000000,0.000000,0.250000,0,0);}
.me5_c00049{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m64_c00049{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m8c_c00049{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m4b_c00049{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.m9c_c00049{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m3b_c00049{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m96_c00049{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mcb_c00049{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m62_c00049{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mc1_c00049{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.me7_c00049{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m92_c00049{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m5b_c00049{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m82_c00049{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.md9_c00049{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m2c_c00049{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m18_c00049{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m69_c00049{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m7c_c00049{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mdc_c00049{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m47_c00049{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.m74_c00049{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m19_c00049{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m1e_c00049{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.mfb_c00049{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.md2_c00049{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mea_c00049{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m3_c00049{transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);}
.m91_c00049{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.mda_c00049{transform:matrix(0.430598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430598,0.000000,0.000000,0.250000,0,0);}
.m22_c00049{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m80_c00049{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m83_c00049{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m30_c00049{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m99_c00049{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mad_c00049{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.med_c00049{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m5_c00049{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.mb3_c00049{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m87_c00049{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m67_c00049{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m2d_c00049{transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);}
.m33_c00049{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mce_c00049{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.mc7_c00049{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m20_c00049{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m70_c00049{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m81_c00049{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m100_c00049{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.mae_c00049{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m78_c00049{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.meb_c00049{transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);}
.mfc_c00049{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.me0_c00049{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.me8_c00049{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m90_c00049{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m9b_c00049{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m65_c00049{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m2_c00049{transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);}
.mc0_c00049{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mef_c00049{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m4a_c00049{transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);}
.me6_c00049{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m43_c00049{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.maf_c00049{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m7e_c00049{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mbd_c00049{transform:matrix(0.456865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456865,0.000000,0.000000,0.250000,0,0);}
.mb8_c00049{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.mbe_c00049{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m38_c00049{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.md_c00049{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m4d_c00049{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m107_c00049{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m7a_c00049{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m63_c00049{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m76_c00049{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m28_c00049{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m3e_c00049{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m8e_c00049{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m6_c00049{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.mf0_c00049{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m42_c00049{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m12_c00049{transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);}
.m98_c00049{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m46_c00049{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m61_c00049{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.ma_c00049{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.ma6_c00049{transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);}
.m8f_c00049{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.mf9_c00049{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m103_c00049{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m52_c00049{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m54_c00049{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mb4_c00049{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m89_c00049{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mfd_c00049{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mf4_c00049{transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);}
.mb6_c00049{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mf8_c00049{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m31_c00049{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.mf6_c00049{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m2a_c00049{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);}
.mb2_c00049{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m68_c00049{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mf1_c00049{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m2e_c00049{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m4e_c00049{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m72_c00049{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mba_c00049{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m6f_c00049{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m6e_c00049{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m44_c00049{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.m5e_c00049{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mbf_c00049{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.ma9_c00049{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mb_c00049{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m2b_c00049{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);}
.m49_c00049{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.mb5_c00049{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.mcf_c00049{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.ma1_c00049{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mc8_c00049{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m29_c00049{transform:matrix(0.525882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525882,0.000000,0.000000,0.250000,0,0);}
.m6c_c00049{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mc2_c00049{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m77_c00049{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mf3_c00049{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mb0_c00049{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m7b_c00049{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m6b_c00049{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m8_c00049{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m5d_c00049{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mc3_c00049{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.md4_c00049{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m60_c00049{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mfa_c00049{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m93_c00049{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mfe_c00049{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m104_c00049{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m27_c00049{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.mdf_c00049{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m73_c00049{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m35_c00049{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.mcd_c00049{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mb1_c00049{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.me_c00049{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m86_c00049{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m106_c00049{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m66_c00049{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.md3_c00049{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m1d_c00049{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.ma2_c00049{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m79_c00049{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.md1_c00049{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m25_c00049{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.me4_c00049{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.mac_c00049{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m88_c00049{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.me3_c00049{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mca_c00049{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m15_c00049{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.mdd_c00049{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);}
.me2_c00049{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m32_c00049{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m9f_c00049{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m4_c00049{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.mcc_c00049{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m6a_c00049{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m5f_c00049{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m3f_c00049{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.mc9_c00049{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m1a_c00049{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.mc5_c00049{transform:matrix(0.574519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574519,0.000000,0.000000,0.250000,0,0);}
.md5_c00049{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mf2_c00049{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m3a_c00049{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m37_c00049{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);}
.m16_c00049{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m26_c00049{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m2f_c00049{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m17_c00049{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.mbb_c00049{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m9d_c00049{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m53_c00049{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.m21_c00049{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.mab_c00049{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.ma5_c00049{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m45_c00049{transform:matrix(0.598529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598529,0.000000,0.000000,0.250000,0,0);}
.m59_c00049{transform:matrix(0.601471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601471,0.000000,0.000000,0.250000,0,0);}
.md6_c00049{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mf7_c00049{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.m24_c00049{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m94_c00049{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m71_c00049{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.mbc_c00049{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m7d_c00049{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m7f_c00049{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m41_c00049{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m39_c00049{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.ma8_c00049{transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);}
.m1_c00049{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);}
.me1_c00049{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);}
.m55_c00049{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.mc_c00049{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m36_c00049{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m101_c00049{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m1c_c00049{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.mf_c00049{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);}
.m51_c00049{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m10_c00049{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.mc4_c00049{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.mb9_c00049{transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);}
.m4c_c00049{transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);}
.m40_c00049{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.md8_c00049{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.mee_c00049{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.ma4_c00049{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.ma0_c00049{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m14_c00049{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m13_c00049{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m1f_c00049{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m3c_c00049{transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);}
.m48_c00049{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m4f_c00049{transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);}
.m1b_c00049{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m11_c00049{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);}
.m50_c00049{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m0_c00049{transform:matrix(0.711538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.711538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.711538,0.000000,0.000000,0.250000,0,0);}
.m34_c00049{transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);}
.ma3_c00049{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m95_c00049{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.m3d_c00049{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m75_c00049{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m84_c00049{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m6d_c00049{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m9a_c00049{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m8a_c00049{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mff_c00049{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.md7_c00049{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.ma7_c00049{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m23_c00049{transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);}
.m7_c00049{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m5c_c00049{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00049{vertical-align:0.000000px;}
.v1_c00049{vertical-align:13.680000px;}
.ls1_c00049{letter-spacing:0.000000px;}
.ls0_c00049{letter-spacing:11.817600px;}
.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:-7.228080px;}
.ws1_c00049{word-spacing:0.000000px;}
.fc0_c00049{color:transparent;}
.fs7_c00049{font-size:3.420000px;}
.fs5_c00049{font-size:13.620000px;}
.fs0_c00049{font-size:18.720000px;}
.fs1_c00049{font-size:20.400000px;}
.fs3_c00049{font-size:25.500000px;}
.fs4_c00049{font-size:28.920000px;}
.fs2_c00049{font-size:32.340000px;}
.fs6_c00049{font-size:35.700000px;}
.fs8_c00049{font-size:39.120000px;}
.y0_c00049{bottom:0.000000px;}
.y101_c00049{bottom:253.905000px;}
.yfc_c00049{bottom:271.905000px;}
.yfa_c00049{bottom:272.745000px;}
.yfe_c00049{bottom:273.180000px;}
.yf9_c00049{bottom:273.405000px;}
.y100_c00049{bottom:273.825000px;}
.yfb_c00049{bottom:274.470000px;}
.yfd_c00049{bottom:274.905000px;}
.yff_c00049{bottom:276.405000px;}
.yf8_c00049{bottom:292.470000px;}
.yf3_c00049{bottom:292.905000px;}
.yf4_c00049{bottom:294.405000px;}
.yf6_c00049{bottom:294.630000px;}
.yf7_c00049{bottom:294.825000px;}
.yf5_c00049{bottom:295.905000px;}
.yf2_c00049{bottom:311.970000px;}
.yf1_c00049{bottom:313.245000px;}
.yee_c00049{bottom:313.905000px;}
.yf0_c00049{bottom:314.970000px;}
.yef_c00049{bottom:315.405000px;}
.ye8_c00049{bottom:331.245000px;}
.ye9_c00049{bottom:332.325000px;}
.yeb_c00049{bottom:332.745000px;}
.ye7_c00049{bottom:333.405000px;}
.yea_c00049{bottom:333.630000px;}
.yec_c00049{bottom:334.905000px;}
.yed_c00049{bottom:336.405000px;}
.ye4_c00049{bottom:352.245000px;}
.ye2_c00049{bottom:352.905000px;}
.ye3_c00049{bottom:353.325000px;}
.ye6_c00049{bottom:353.970000px;}
.ye5_c00049{bottom:354.405000px;}
.ydf_c00049{bottom:371.745000px;}
.ye0_c00049{bottom:373.905000px;}
.ye1_c00049{bottom:375.405000px;}
.yda_c00049{bottom:391.245000px;}
.ydd_c00049{bottom:392.745000px;}
.yd8_c00049{bottom:393.405000px;}
.yd9_c00049{bottom:393.630000px;}
.yde_c00049{bottom:393.825000px;}
.ydc_c00049{bottom:394.470000px;}
.ydb_c00049{bottom:394.905000px;}
.yd7_c00049{bottom:409.905000px;}
.yd3_c00049{bottom:410.745000px;}
.yd5_c00049{bottom:412.245000px;}
.yd2_c00049{bottom:412.905000px;}
.yd4_c00049{bottom:413.130000px;}
.yd6_c00049{bottom:414.405000px;}
.yc9_c00049{bottom:429.405000px;}
.ycf_c00049{bottom:430.470000px;}
.ycc_c00049{bottom:430.905000px;}
.ycb_c00049{bottom:431.745000px;}
.yce_c00049{bottom:431.970000px;}
.yd1_c00049{bottom:432.405000px;}
.ycd_c00049{bottom:432.825000px;}
.yd0_c00049{bottom:433.470000px;}
.yca_c00049{bottom:433.905000px;}
.yc3_c00049{bottom:451.245000px;}
.yc8_c00049{bottom:451.905000px;}
.yc5_c00049{bottom:452.970000px;}
.yc4_c00049{bottom:453.405000px;}
.yc7_c00049{bottom:453.630000px;}
.yc6_c00049{bottom:454.470000px;}
.yc1_c00049{bottom:470.745000px;}
.yc2_c00049{bottom:471.180000px;}
.ybf_c00049{bottom:472.905000px;}
.yc0_c00049{bottom:473.130000px;}
.ybe_c00049{bottom:473.970000px;}
.ybd_c00049{bottom:490.470000px;}
.ybc_c00049{bottom:491.550000px;}
.yb8_c00049{bottom:492.405000px;}
.yb9_c00049{bottom:492.630000px;}
.ybb_c00049{bottom:492.825000px;}
.yba_c00049{bottom:493.470000px;}
.yb5_c00049{bottom:509.745000px;}
.yb7_c00049{bottom:511.245000px;}
.yb4_c00049{bottom:511.905000px;}
.yb6_c00049{bottom:513.405000px;}
.yb0_c00049{bottom:529.245000px;}
.yae_c00049{bottom:529.470000px;}
.yb3_c00049{bottom:530.745000px;}
.yaf_c00049{bottom:531.405000px;}
.yb1_c00049{bottom:532.470000px;}
.yb2_c00049{bottom:532.905000px;}
.yad_c00049{bottom:550.245000px;}
.yac_c00049{bottom:551.130000px;}
.yab_c00049{bottom:552.405000px;}
.yaa_c00049{bottom:569.325000px;}
.ya7_c00049{bottom:569.745000px;}
.ya8_c00049{bottom:570.405000px;}
.ya9_c00049{bottom:570.630000px;}
.ya6_c00049{bottom:571.905000px;}
.ya0_c00049{bottom:587.970000px;}
.ya2_c00049{bottom:589.245000px;}
.ya4_c00049{bottom:589.470000px;}
.ya5_c00049{bottom:590.130000px;}
.ya1_c00049{bottom:590.325000px;}
.ya3_c00049{bottom:590.970000px;}
.y9f_c00049{bottom:591.405000px;}
.y9c_c00049{bottom:608.745000px;}
.y9b_c00049{bottom:609.630000px;}
.y9d_c00049{bottom:609.825000px;}
.y9a_c00049{bottom:610.470000px;}
.y99_c00049{bottom:610.905000px;}
.y9e_c00049{bottom:611.970000px;}
.y98_c00049{bottom:628.245000px;}
.y97_c00049{bottom:629.970000px;}
.y96_c00049{bottom:630.405000px;}
.y91_c00049{bottom:646.245000px;}
.y90_c00049{bottom:647.745000px;}
.y93_c00049{bottom:649.245000px;}
.y8f_c00049{bottom:649.905000px;}
.y92_c00049{bottom:650.130000px;}
.y94_c00049{bottom:650.325000px;}
.y95_c00049{bottom:651.405000px;}
.y8d_c00049{bottom:667.245000px;}
.y8a_c00049{bottom:668.325000px;}
.y89_c00049{bottom:669.405000px;}
.y8b_c00049{bottom:669.630000px;}
.y8c_c00049{bottom:670.470000px;}
.y8e_c00049{bottom:670.905000px;}
.y85_c00049{bottom:686.745000px;}
.y84_c00049{bottom:688.905000px;}
.y87_c00049{bottom:689.130000px;}
.y86_c00049{bottom:689.970000px;}
.y88_c00049{bottom:690.405000px;}
.y80_c00049{bottom:706.245000px;}
.y81_c00049{bottom:707.325000px;}
.y83_c00049{bottom:707.745000px;}
.y7f_c00049{bottom:708.405000px;}
.y82_c00049{bottom:708.630000px;}
.y79_c00049{bottom:726.180000px;}
.y7c_c00049{bottom:727.245000px;}
.y7e_c00049{bottom:728.130000px;}
.y7a_c00049{bottom:728.325000px;}
.y7d_c00049{bottom:728.970000px;}
.y7b_c00049{bottom:729.405000px;}
.y75_c00049{bottom:745.245000px;}
.y77_c00049{bottom:745.905000px;}
.y76_c00049{bottom:746.745000px;}
.y74_c00049{bottom:747.630000px;}
.y73_c00049{bottom:748.905000px;}
.y78_c00049{bottom:749.130000px;}
.y6e_c00049{bottom:766.245000px;}
.y72_c00049{bottom:767.130000px;}
.y71_c00049{bottom:767.970000px;}
.y6f_c00049{bottom:768.405000px;}
.y70_c00049{bottom:769.470000px;}
.y6c_c00049{bottom:784.905000px;}
.y69_c00049{bottom:785.745000px;}
.y6a_c00049{bottom:786.630000px;}
.y6b_c00049{bottom:786.825000px;}
.y68_c00049{bottom:787.905000px;}
.y6d_c00049{bottom:789.405000px;}
.y64_c00049{bottom:804.405000px;}
.y61_c00049{bottom:805.245000px;}
.y66_c00049{bottom:806.745000px;}
.y62_c00049{bottom:807.405000px;}
.y63_c00049{bottom:807.630000px;}
.y67_c00049{bottom:808.470000px;}
.y65_c00049{bottom:808.905000px;}
.y5a_c00049{bottom:824.745000px;}
.y5e_c00049{bottom:826.245000px;}
.y5c_c00049{bottom:826.905000px;}
.y5f_c00049{bottom:827.325000px;}
.y5d_c00049{bottom:827.970000px;}
.y60_c00049{bottom:828.405000px;}
.y5b_c00049{bottom:828.420000px;}
.y59_c00049{bottom:856.905000px;}
.y56_c00049{bottom:857.325000px;}
.y57_c00049{bottom:857.550000px;}
.y58_c00049{bottom:859.050000px;}
.y4f_c00049{bottom:871.050000px;}
.y53_c00049{bottom:871.470000px;}
.y50_c00049{bottom:872.325000px;}
.y51_c00049{bottom:873.405000px;}
.y52_c00049{bottom:873.630000px;}
.y54_c00049{bottom:874.470000px;}
.y55_c00049{bottom:875.550000px;}
.y46_c00049{bottom:886.470000px;}
.y49_c00049{bottom:887.130000px;}
.y4d_c00049{bottom:887.325000px;}
.y47_c00049{bottom:887.970000px;}
.y4a_c00049{bottom:888.405000px;}
.y48_c00049{bottom:889.050000px;}
.y4e_c00049{bottom:889.470000px;}
.y4b_c00049{bottom:889.695000px;}
.y4c_c00049{bottom:890.550000px;}
.y44_c00049{bottom:900.825000px;}
.y45_c00049{bottom:901.905000px;}
.y43_c00049{bottom:902.970000px;}
.y42_c00049{bottom:903.195000px;}
.y3b_c00049{bottom:916.050000px;}
.y3d_c00049{bottom:916.905000px;}
.y3f_c00049{bottom:917.325000px;}
.y40_c00049{bottom:918.405000px;}
.y3c_c00049{bottom:919.050000px;}
.y3e_c00049{bottom:919.470000px;}
.y41_c00049{bottom:920.550000px;}
.y39_c00049{bottom:931.905000px;}
.y3a_c00049{bottom:934.050000px;}
.y37_c00049{bottom:946.050000px;}
.y36_c00049{bottom:946.905000px;}
.y33_c00049{bottom:947.130000px;}
.y34_c00049{bottom:947.970000px;}
.y38_c00049{bottom:948.195000px;}
.y35_c00049{bottom:949.050000px;}
.y32_c00049{bottom:959.970000px;}
.y2d_c00049{bottom:960.825000px;}
.y31_c00049{bottom:961.050000px;}
.y30_c00049{bottom:961.905000px;}
.y2e_c00049{bottom:962.130000px;}
.y2f_c00049{bottom:962.970000px;}
.y2c_c00049{bottom:964.050000px;}
.y26_c00049{bottom:974.970000px;}
.y24_c00049{bottom:975.405000px;}
.y2b_c00049{bottom:976.050000px;}
.y23_c00049{bottom:976.695000px;}
.y28_c00049{bottom:976.905000px;}
.y2a_c00049{bottom:977.130000px;}
.y27_c00049{bottom:977.550000px;}
.y25_c00049{bottom:977.970000px;}
.y29_c00049{bottom:979.050000px;}
.y1f_c00049{bottom:989.550000px;}
.y21_c00049{bottom:990.405000px;}
.y20_c00049{bottom:991.470000px;}
.y22_c00049{bottom:992.550000px;}
.y19_c00049{bottom:1004.325000px;}
.y17_c00049{bottom:1005.630000px;}
.y18_c00049{bottom:1006.470000px;}
.y1a_c00049{bottom:1006.695000px;}
.y1c_c00049{bottom:1006.905000px;}
.y1b_c00049{bottom:1007.550000px;}
.y1d_c00049{bottom:1007.970000px;}
.y1e_c00049{bottom:1009.050000px;}
.y14_c00049{bottom:1019.325000px;}
.y16_c00049{bottom:1020.405000px;}
.y11_c00049{bottom:1020.630000px;}
.y12_c00049{bottom:1021.470000px;}
.y15_c00049{bottom:1021.695000px;}
.y13_c00049{bottom:1022.550000px;}
.yc_c00049{bottom:1034.550000px;}
.y10_c00049{bottom:1035.405000px;}
.yf_c00049{bottom:1035.630000px;}
.yd_c00049{bottom:1036.470000px;}
.ye_c00049{bottom:1037.550000px;}
.yb_c00049{bottom:1048.905000px;}
.ya_c00049{bottom:1051.050000px;}
.y4_c00049{bottom:1062.825000px;}
.y9_c00049{bottom:1064.325000px;}
.y5_c00049{bottom:1064.970000px;}
.y6_c00049{bottom:1065.405000px;}
.y3_c00049{bottom:1066.050000px;}
.y8_c00049{bottom:1066.470000px;}
.y7_c00049{bottom:1066.695000px;}
.y1_c00049{bottom:1101.630000px;}
.y2_c00049{bottom:1102.050000px;}
.h9_c00049{height:4.206533px;}
.h6_c00049{height:16.752334px;}
.h1_c00049{height:23.025234px;}
.h2_c00049{height:25.091602px;}
.h4_c00049{height:31.364502px;}
.h5_c00049{height:35.571035px;}
.h3_c00049{height:39.777568px;}
.h8_c00049{height:43.910303px;}
.h7_c00049{height:45.044502px;}
.ha_c00049{height:48.116836px;}
.h0_c00049{height:1335.000000px;}
.w0_c00049{width:880.500000px;}
.x0_c00049{left:0.000000px;}
.x10a_c00049{left:150.000000px;}
.xbe_c00049{left:151.500000px;}
.x51_c00049{left:153.000000px;}
.x2_c00049{left:154.920000px;}
.x2f_c00049{left:166.500000px;}
.x3_c00049{left:168.420000px;}
.x24_c00049{left:169.920000px;}
.xab_c00049{left:171.420000px;}
.x119_c00049{left:177.000000px;}
.x1b_c00049{left:178.920000px;}
.x106_c00049{left:180.420000px;}
.xe_c00049{left:181.500000px;}
.xb7_c00049{left:184.920000px;}
.x4_c00049{left:186.420000px;}
.xcb_c00049{left:189.420000px;}
.x44_c00049{left:192.000000px;}
.x25_c00049{left:193.500000px;}
.x98_c00049{left:196.920000px;}
.xac_c00049{left:199.500000px;}
.x10f_c00049{left:201.420000px;}
.xc5_c00049{left:202.500000px;}
.xde_c00049{left:204.420000px;}
.xd3_c00049{left:205.920000px;}
.xbf_c00049{left:207.000000px;}
.x102_c00049{left:210.000000px;}
.x7f_c00049{left:211.500000px;}
.x5d_c00049{left:212.580000px;}
.x52_c00049{left:214.500000px;}
.x30_c00049{left:217.500000px;}
.x68_c00049{left:218.580000px;}
.x1c_c00049{left:220.500000px;}
.x79_c00049{left:222.000000px;}
.x3d_c00049{left:223.500000px;}
.xcc_c00049{left:225.000000px;}
.x8d_c00049{left:226.500000px;}
.x86_c00049{left:228.420000px;}
.x57_c00049{left:229.500000px;}
.x110_c00049{left:232.500000px;}
.x45_c00049{left:234.000000px;}
.x3e_c00049{left:235.500000px;}
.x10b_c00049{left:236.580000px;}
.xfd_c00049{left:240.000000px;}
.x5e_c00049{left:241.920000px;}
.x53_c00049{left:243.420000px;}
.x99_c00049{left:244.500000px;}
.xec_c00049{left:246.420000px;}
.x69_c00049{left:247.920000px;}
.x1d_c00049{left:250.080000px;}
.x31_c00049{left:252.420000px;}
.x72_c00049{left:253.920000px;}
.x60_c00049{left:255.000000px;}
.x74_c00049{left:256.500000px;}
.xcd_c00049{left:259.500000px;}
.x8e_c00049{left:261.000000px;}
.xc0_c00049{left:263.580000px;}
.x5_c00049{left:265.080000px;}
.xf_c00049{left:268.500000px;}
.xdf_c00049{left:270.420000px;}
.x107_c00049{left:273.420000px;}
.x46_c00049{left:274.500000px;}
.x1e_c00049{left:277.500000px;}
.xad_c00049{left:279.420000px;}
.x73_c00049{left:280.500000px;}
.xd4_c00049{left:281.580000px;}
.xc6_c00049{left:283.080000px;}
.x54_c00049{left:285.000000px;}
.x3f_c00049{left:286.500000px;}
.x87_c00049{left:288.000000px;}
.x6a_c00049{left:291.000000px;}
.x47_c00049{left:292.920000px;}
.x34_c00049{left:294.420000px;}
.x7a_c00049{left:295.500000px;}
.xf4_c00049{left:298.500000px;}
.x9e_c00049{left:299.580000px;}
.x9a_c00049{left:301.500000px;}
.xce_c00049{left:303.000000px;}
.x8f_c00049{left:304.080000px;}
.xae_c00049{left:306.420000px;}
.x61_c00049{left:307.500000px;}
.x115_c00049{left:309.000000px;}
.x58_c00049{left:310.080000px;}
.x35_c00049{left:311.580000px;}
.x55_c00049{left:313.920000px;}
.x40_c00049{left:318.420000px;}
.x10_c00049{left:319.500000px;}
.x1f_c00049{left:321.000000px;}
.x103_c00049{left:322.920000px;}
.xc7_c00049{left:327.000000px;}
.xd5_c00049{left:328.920000px;}
.xed_c00049{left:330.000000px;}
.x20_c00049{left:331.500000px;}
.xb8_c00049{left:333.420000px;}
.x32_c00049{left:334.500000px;}
.x36_c00049{left:337.500000px;}
.x88_c00049{left:338.580000px;}
.xe0_c00049{left:340.500000px;}
.x56_c00049{left:342.000000px;}
.x5f_c00049{left:343.500000px;}
.x26_c00049{left:346.500000px;}
.xe7_c00049{left:348.000000px;}
.x48_c00049{left:349.500000px;}
.x116_c00049{left:351.000000px;}
.x80_c00049{left:353.355000px;}
.x6_c00049{left:355.500000px;}
.x75_c00049{left:357.420000px;}
.x111_c00049{left:358.920000px;}
.x9b_c00049{left:360.000000px;}
.x41_c00049{left:361.080000px;}
.x6b_c00049{left:363.855000px;}
.xa5_c00049{left:365.580000px;}
.x27_c00049{left:369.420000px;}
.xcf_c00049{left:370.920000px;}
.xee_c00049{left:372.420000px;}
.x37_c00049{left:374.580000px;}
.x21_c00049{left:376.080000px;}
.x59_c00049{left:377.580000px;}
.x11_c00049{left:379.500000px;}
.x49_c00049{left:382.500000px;}
.x89_c00049{left:384.000000px;}
.x7b_c00049{left:385.500000px;}
.xaf_c00049{left:387.420000px;}
.x38_c00049{left:390.645000px;}
.xf5_c00049{left:391.920000px;}
.x76_c00049{left:393.000000px;}
.xc8_c00049{left:394.500000px;}
.x33_c00049{left:396.000000px;}
.x1_c00049{left:399.000000px;}
.x28_c00049{left:400.080000px;}
.x22_c00049{left:403.080000px;}
.x7_c00049{left:404.580000px;}
.x6c_c00049{left:406.080000px;}
.x112_c00049{left:409.500000px;}
.xf7_c00049{left:411.000000px;}
.xa6_c00049{left:412.920000px;}
.xd0_c00049{left:414.000000px;}
.xc1_c00049{left:415.080000px;}
.xe8_c00049{left:417.000000px;}
.xd6_c00049{left:418.500000px;}
.x7c_c00049{left:424.500000px;}
.xc9_c00049{left:426.000000px;}
.x8a_c00049{left:427.500000px;}
.x12_c00049{left:429.420000px;}
.x9c_c00049{left:430.920000px;}
.xe1_c00049{left:433.920000px;}
.x9f_c00049{left:435.000000px;}
.x29_c00049{left:437.580000px;}
.x42_c00049{left:439.920000px;}
.xb0_c00049{left:442.500000px;}
.x4a_c00049{left:444.420000px;}
.x23_c00049{left:445.500000px;}
.x113_c00049{left:447.000000px;}
.x62_c00049{left:448.500000px;}
.xb9_c00049{left:450.000000px;}
.x6d_c00049{left:451.500000px;}
.x7d_c00049{left:453.000000px;}
.x5a_c00049{left:454.920000px;}
.x104_c00049{left:456.000000px;}
.x2a_c00049{left:457.500000px;}
.x81_c00049{left:458.580000px;}
.xe2_c00049{left:460.080000px;}
.x114_c00049{left:462.000000px;}
.x13_c00049{left:465.000000px;}
.x43_c00049{left:466.500000px;}
.xe9_c00049{left:467.580000px;}
.x39_c00049{left:471.000000px;}
.xa0_c00049{left:472.920000px;}
.xba_c00049{left:483.000000px;}
.xda_c00049{left:484.080000px;}
.xb1_c00049{left:489.000000px;}
.x4b_c00049{left:490.500000px;}
.x82_c00049{left:493.080000px;}
.x8_c00049{left:494.145000px;}
.x90_c00049{left:495.420000px;}
.x14_c00049{left:498.000000px;}
.xd1_c00049{left:504.000000px;}
.xef_c00049{left:506.355000px;}
.xfb_c00049{left:508.920000px;}
.x77_c00049{left:513.000000px;}
.x105_c00049{left:514.920000px;}
.xe3_c00049{left:516.420000px;}
.x63_c00049{left:519.000000px;}
.x2b_c00049{left:521.145000px;}
.x91_c00049{left:523.080000px;}
.x15_c00049{left:525.000000px;}
.xf8_c00049{left:528.000000px;}
.x4c_c00049{left:530.580000px;}
.x3a_c00049{left:534.000000px;}
.x117_c00049{left:537.420000px;}
.xfe_c00049{left:541.500000px;}
.xe4_c00049{left:543.420000px;}
.xa1_c00049{left:544.500000px;}
.xc2_c00049{left:546.000000px;}
.x10c_c00049{left:547.500000px;}
.x4d_c00049{left:549.645000px;}
.x83_c00049{left:550.920000px;}
.xb2_c00049{left:552.000000px;}
.x92_c00049{left:553.500000px;}
.xa7_c00049{left:556.920000px;}
.x6e_c00049{left:559.500000px;}
.xbb_c00049{left:560.580000px;}
.xff_c00049{left:562.500000px;}
.xa2_c00049{left:564.000000px;}
.x16_c00049{left:565.500000px;}
.x2c_c00049{left:567.000000px;}
.xea_c00049{left:570.000000px;}
.xf0_c00049{left:573.000000px;}
.x93_c00049{left:574.500000px;}
.x9_c00049{left:575.580000px;}
.x100_c00049{left:577.920000px;}
.xb3_c00049{left:579.000000px;}
.x17_c00049{left:580.500000px;}
.x5b_c00049{left:582.000000px;}
.xd7_c00049{left:586.920000px;}
.xa_c00049{left:588.000000px;}
.x3b_c00049{left:589.920000px;}
.x94_c00049{left:591.000000px;}
.x64_c00049{left:592.080000px;}
.xbc_c00049{left:594.420000px;}
.xfc_c00049{left:595.920000px;}
.xa8_c00049{left:597.000000px;}
.xf1_c00049{left:600.000000px;}
.x3c_c00049{left:601.500000px;}
.xa3_c00049{left:604.500000px;}
.x10d_c00049{left:606.000000px;}
.x8b_c00049{left:607.500000px;}
.x6f_c00049{left:609.420000px;}
.xb4_c00049{left:613.080000px;}
.x84_c00049{left:615.420000px;}
.xa9_c00049{left:616.920000px;}
.x70_c00049{left:621.000000px;}
.x18_c00049{left:622.500000px;}
.x108_c00049{left:624.420000px;}
.x118_c00049{left:625.500000px;}
.xeb_c00049{left:627.420000px;}
.xc3_c00049{left:628.500000px;}
.xd2_c00049{left:630.000000px;}
.x4e_c00049{left:631.500000px;}
.xb_c00049{left:634.080000px;}
.x65_c00049{left:636.000000px;}
.x2d_c00049{left:637.920000px;}
.xf9_c00049{left:639.420000px;}
.xf2_c00049{left:640.920000px;}
.xdb_c00049{left:642.000000px;}
.x85_c00049{left:643.080000px;}
.xca_c00049{left:646.080000px;}
.xaa_c00049{left:650.580000px;}
.x19_c00049{left:652.920000px;}
.x8c_c00049{left:655.080000px;}
.x2e_c00049{left:656.145000px;}
.xdc_c00049{left:658.500000px;}
.xd8_c00049{left:660.000000px;}
.x95_c00049{left:661.500000px;}
.xc_c00049{left:663.420000px;}
.x66_c00049{left:665.580000px;}
.x4f_c00049{left:667.080000px;}
.xa4_c00049{left:669.000000px;}
.x5c_c00049{left:670.080000px;}
.xe5_c00049{left:672.000000px;}
.xb5_c00049{left:675.420000px;}
.x71_c00049{left:676.500000px;}
.xc4_c00049{left:677.580000px;}
.xf3_c00049{left:678.855000px;}
.x96_c00049{left:681.000000px;}
.x109_c00049{left:682.080000px;}
.xbd_c00049{left:683.580000px;}
.xf6_c00049{left:686.580000px;}
.x78_c00049{left:688.080000px;}
.x67_c00049{left:694.500000px;}
.x97_c00049{left:696.000000px;}
.x1a_c00049{left:697.500000px;}
.x10e_c00049{left:698.580000px;}
.xb6_c00049{left:703.500000px;}
.x7e_c00049{left:705.000000px;}
.xd_c00049{left:706.500000px;}
.x9d_c00049{left:709.920000px;}
.xd9_c00049{left:711.420000px;}
.xfa_c00049{left:714.000000px;}
.xdd_c00049{left:715.500000px;}
.xe6_c00049{left:716.580000px;}
.x101_c00049{left:718.500000px;}
.x50_c00049{left:724.500000px;}
@media print{
.v0_c00049{vertical-align:0.000000pt;}
.v1_c00049{vertical-align:12.160000pt;}
.ls1_c00049{letter-spacing:0.000000pt;}
.ls0_c00049{letter-spacing:10.504533pt;}
.ws0_c00049{word-spacing:-6.424960pt;}
.ws1_c00049{word-spacing:0.000000pt;}
.fs7_c00049{font-size:3.040000pt;}
.fs5_c00049{font-size:12.106667pt;}
.fs0_c00049{font-size:16.640000pt;}
.fs1_c00049{font-size:18.133333pt;}
.fs3_c00049{font-size:22.666667pt;}
.fs4_c00049{font-size:25.706667pt;}
.fs2_c00049{font-size:28.746667pt;}
.fs6_c00049{font-size:31.733333pt;}
.fs8_c00049{font-size:34.773333pt;}
.y0_c00049{bottom:0.000000pt;}
.y101_c00049{bottom:225.693333pt;}
.yfc_c00049{bottom:241.693333pt;}
.yfa_c00049{bottom:242.440000pt;}
.yfe_c00049{bottom:242.826667pt;}
.yf9_c00049{bottom:243.026667pt;}
.y100_c00049{bottom:243.400000pt;}
.yfb_c00049{bottom:243.973333pt;}
.yfd_c00049{bottom:244.360000pt;}
.yff_c00049{bottom:245.693333pt;}
.yf8_c00049{bottom:259.973333pt;}
.yf3_c00049{bottom:260.360000pt;}
.yf4_c00049{bottom:261.693333pt;}
.yf6_c00049{bottom:261.893333pt;}
.yf7_c00049{bottom:262.066667pt;}
.yf5_c00049{bottom:263.026667pt;}
.yf2_c00049{bottom:277.306667pt;}
.yf1_c00049{bottom:278.440000pt;}
.yee_c00049{bottom:279.026667pt;}
.yf0_c00049{bottom:279.973333pt;}
.yef_c00049{bottom:280.360000pt;}
.ye8_c00049{bottom:294.440000pt;}
.ye9_c00049{bottom:295.400000pt;}
.yeb_c00049{bottom:295.773333pt;}
.ye7_c00049{bottom:296.360000pt;}
.yea_c00049{bottom:296.560000pt;}
.yec_c00049{bottom:297.693333pt;}
.yed_c00049{bottom:299.026667pt;}
.ye4_c00049{bottom:313.106667pt;}
.ye2_c00049{bottom:313.693333pt;}
.ye3_c00049{bottom:314.066667pt;}
.ye6_c00049{bottom:314.640000pt;}
.ye5_c00049{bottom:315.026667pt;}
.ydf_c00049{bottom:330.440000pt;}
.ye0_c00049{bottom:332.360000pt;}
.ye1_c00049{bottom:333.693333pt;}
.yda_c00049{bottom:347.773333pt;}
.ydd_c00049{bottom:349.106667pt;}
.yd8_c00049{bottom:349.693333pt;}
.yd9_c00049{bottom:349.893333pt;}
.yde_c00049{bottom:350.066667pt;}
.ydc_c00049{bottom:350.640000pt;}
.ydb_c00049{bottom:351.026667pt;}
.yd7_c00049{bottom:364.360000pt;}
.yd3_c00049{bottom:365.106667pt;}
.yd5_c00049{bottom:366.440000pt;}
.yd2_c00049{bottom:367.026667pt;}
.yd4_c00049{bottom:367.226667pt;}
.yd6_c00049{bottom:368.360000pt;}
.yc9_c00049{bottom:381.693333pt;}
.ycf_c00049{bottom:382.640000pt;}
.ycc_c00049{bottom:383.026667pt;}
.ycb_c00049{bottom:383.773333pt;}
.yce_c00049{bottom:383.973333pt;}
.yd1_c00049{bottom:384.360000pt;}
.ycd_c00049{bottom:384.733333pt;}
.yd0_c00049{bottom:385.306667pt;}
.yca_c00049{bottom:385.693333pt;}
.yc3_c00049{bottom:401.106667pt;}
.yc8_c00049{bottom:401.693333pt;}
.yc5_c00049{bottom:402.640000pt;}
.yc4_c00049{bottom:403.026667pt;}
.yc7_c00049{bottom:403.226667pt;}
.yc6_c00049{bottom:403.973333pt;}
.yc1_c00049{bottom:418.440000pt;}
.yc2_c00049{bottom:418.826667pt;}
.ybf_c00049{bottom:420.360000pt;}
.yc0_c00049{bottom:420.560000pt;}
.ybe_c00049{bottom:421.306667pt;}
.ybd_c00049{bottom:435.973333pt;}
.ybc_c00049{bottom:436.933333pt;}
.yb8_c00049{bottom:437.693333pt;}
.yb9_c00049{bottom:437.893333pt;}
.ybb_c00049{bottom:438.066667pt;}
.yba_c00049{bottom:438.640000pt;}
.yb5_c00049{bottom:453.106667pt;}
.yb7_c00049{bottom:454.440000pt;}
.yb4_c00049{bottom:455.026667pt;}
.yb6_c00049{bottom:456.360000pt;}
.yb0_c00049{bottom:470.440000pt;}
.yae_c00049{bottom:470.640000pt;}
.yb3_c00049{bottom:471.773333pt;}
.yaf_c00049{bottom:472.360000pt;}
.yb1_c00049{bottom:473.306667pt;}
.yb2_c00049{bottom:473.693333pt;}
.yad_c00049{bottom:489.106667pt;}
.yac_c00049{bottom:489.893333pt;}
.yab_c00049{bottom:491.026667pt;}
.yaa_c00049{bottom:506.066667pt;}
.ya7_c00049{bottom:506.440000pt;}
.ya8_c00049{bottom:507.026667pt;}
.ya9_c00049{bottom:507.226667pt;}
.ya6_c00049{bottom:508.360000pt;}
.ya0_c00049{bottom:522.640000pt;}
.ya2_c00049{bottom:523.773333pt;}
.ya4_c00049{bottom:523.973333pt;}
.ya5_c00049{bottom:524.560000pt;}
.ya1_c00049{bottom:524.733333pt;}
.ya3_c00049{bottom:525.306667pt;}
.y9f_c00049{bottom:525.693333pt;}
.y9c_c00049{bottom:541.106667pt;}
.y9b_c00049{bottom:541.893333pt;}
.y9d_c00049{bottom:542.066667pt;}
.y9a_c00049{bottom:542.640000pt;}
.y99_c00049{bottom:543.026667pt;}
.y9e_c00049{bottom:543.973333pt;}
.y98_c00049{bottom:558.440000pt;}
.y97_c00049{bottom:559.973333pt;}
.y96_c00049{bottom:560.360000pt;}
.y91_c00049{bottom:574.440000pt;}
.y90_c00049{bottom:575.773333pt;}
.y93_c00049{bottom:577.106667pt;}
.y8f_c00049{bottom:577.693333pt;}
.y92_c00049{bottom:577.893333pt;}
.y94_c00049{bottom:578.066667pt;}
.y95_c00049{bottom:579.026667pt;}
.y8d_c00049{bottom:593.106667pt;}
.y8a_c00049{bottom:594.066667pt;}
.y89_c00049{bottom:595.026667pt;}
.y8b_c00049{bottom:595.226667pt;}
.y8c_c00049{bottom:595.973333pt;}
.y8e_c00049{bottom:596.360000pt;}
.y85_c00049{bottom:610.440000pt;}
.y84_c00049{bottom:612.360000pt;}
.y87_c00049{bottom:612.560000pt;}
.y86_c00049{bottom:613.306667pt;}
.y88_c00049{bottom:613.693333pt;}
.y80_c00049{bottom:627.773333pt;}
.y81_c00049{bottom:628.733333pt;}
.y83_c00049{bottom:629.106667pt;}
.y7f_c00049{bottom:629.693333pt;}
.y82_c00049{bottom:629.893333pt;}
.y79_c00049{bottom:645.493333pt;}
.y7c_c00049{bottom:646.440000pt;}
.y7e_c00049{bottom:647.226667pt;}
.y7a_c00049{bottom:647.400000pt;}
.y7d_c00049{bottom:647.973333pt;}
.y7b_c00049{bottom:648.360000pt;}
.y75_c00049{bottom:662.440000pt;}
.y77_c00049{bottom:663.026667pt;}
.y76_c00049{bottom:663.773333pt;}
.y74_c00049{bottom:664.560000pt;}
.y73_c00049{bottom:665.693333pt;}
.y78_c00049{bottom:665.893333pt;}
.y6e_c00049{bottom:681.106667pt;}
.y72_c00049{bottom:681.893333pt;}
.y71_c00049{bottom:682.640000pt;}
.y6f_c00049{bottom:683.026667pt;}
.y70_c00049{bottom:683.973333pt;}
.y6c_c00049{bottom:697.693333pt;}
.y69_c00049{bottom:698.440000pt;}
.y6a_c00049{bottom:699.226667pt;}
.y6b_c00049{bottom:699.400000pt;}
.y68_c00049{bottom:700.360000pt;}
.y6d_c00049{bottom:701.693333pt;}
.y64_c00049{bottom:715.026667pt;}
.y61_c00049{bottom:715.773333pt;}
.y66_c00049{bottom:717.106667pt;}
.y62_c00049{bottom:717.693333pt;}
.y63_c00049{bottom:717.893333pt;}
.y67_c00049{bottom:718.640000pt;}
.y65_c00049{bottom:719.026667pt;}
.y5a_c00049{bottom:733.106667pt;}
.y5e_c00049{bottom:734.440000pt;}
.y5c_c00049{bottom:735.026667pt;}
.y5f_c00049{bottom:735.400000pt;}
.y5d_c00049{bottom:735.973333pt;}
.y60_c00049{bottom:736.360000pt;}
.y5b_c00049{bottom:736.373333pt;}
.y59_c00049{bottom:761.693333pt;}
.y56_c00049{bottom:762.066667pt;}
.y57_c00049{bottom:762.266667pt;}
.y58_c00049{bottom:763.600000pt;}
.y4f_c00049{bottom:774.266667pt;}
.y53_c00049{bottom:774.640000pt;}
.y50_c00049{bottom:775.400000pt;}
.y51_c00049{bottom:776.360000pt;}
.y52_c00049{bottom:776.560000pt;}
.y54_c00049{bottom:777.306667pt;}
.y55_c00049{bottom:778.266667pt;}
.y46_c00049{bottom:787.973333pt;}
.y49_c00049{bottom:788.560000pt;}
.y4d_c00049{bottom:788.733333pt;}
.y47_c00049{bottom:789.306667pt;}
.y4a_c00049{bottom:789.693333pt;}
.y48_c00049{bottom:790.266667pt;}
.y4e_c00049{bottom:790.640000pt;}
.y4b_c00049{bottom:790.840000pt;}
.y4c_c00049{bottom:791.600000pt;}
.y44_c00049{bottom:800.733333pt;}
.y45_c00049{bottom:801.693333pt;}
.y43_c00049{bottom:802.640000pt;}
.y42_c00049{bottom:802.840000pt;}
.y3b_c00049{bottom:814.266667pt;}
.y3d_c00049{bottom:815.026667pt;}
.y3f_c00049{bottom:815.400000pt;}
.y40_c00049{bottom:816.360000pt;}
.y3c_c00049{bottom:816.933333pt;}
.y3e_c00049{bottom:817.306667pt;}
.y41_c00049{bottom:818.266667pt;}
.y39_c00049{bottom:828.360000pt;}
.y3a_c00049{bottom:830.266667pt;}
.y37_c00049{bottom:840.933333pt;}
.y36_c00049{bottom:841.693333pt;}
.y33_c00049{bottom:841.893333pt;}
.y34_c00049{bottom:842.640000pt;}
.y38_c00049{bottom:842.840000pt;}
.y35_c00049{bottom:843.600000pt;}
.y32_c00049{bottom:853.306667pt;}
.y2d_c00049{bottom:854.066667pt;}
.y31_c00049{bottom:854.266667pt;}
.y30_c00049{bottom:855.026667pt;}
.y2e_c00049{bottom:855.226667pt;}
.y2f_c00049{bottom:855.973333pt;}
.y2c_c00049{bottom:856.933333pt;}
.y26_c00049{bottom:866.640000pt;}
.y24_c00049{bottom:867.026667pt;}
.y2b_c00049{bottom:867.600000pt;}
.y23_c00049{bottom:868.173333pt;}
.y28_c00049{bottom:868.360000pt;}
.y2a_c00049{bottom:868.560000pt;}
.y27_c00049{bottom:868.933333pt;}
.y25_c00049{bottom:869.306667pt;}
.y29_c00049{bottom:870.266667pt;}
.y1f_c00049{bottom:879.600000pt;}
.y21_c00049{bottom:880.360000pt;}
.y20_c00049{bottom:881.306667pt;}
.y22_c00049{bottom:882.266667pt;}
.y19_c00049{bottom:892.733333pt;}
.y17_c00049{bottom:893.893333pt;}
.y18_c00049{bottom:894.640000pt;}
.y1a_c00049{bottom:894.840000pt;}
.y1c_c00049{bottom:895.026667pt;}
.y1b_c00049{bottom:895.600000pt;}
.y1d_c00049{bottom:895.973333pt;}
.y1e_c00049{bottom:896.933333pt;}
.y14_c00049{bottom:906.066667pt;}
.y16_c00049{bottom:907.026667pt;}
.y11_c00049{bottom:907.226667pt;}
.y12_c00049{bottom:907.973333pt;}
.y15_c00049{bottom:908.173333pt;}
.y13_c00049{bottom:908.933333pt;}
.yc_c00049{bottom:919.600000pt;}
.y10_c00049{bottom:920.360000pt;}
.yf_c00049{bottom:920.560000pt;}
.yd_c00049{bottom:921.306667pt;}
.ye_c00049{bottom:922.266667pt;}
.yb_c00049{bottom:932.360000pt;}
.ya_c00049{bottom:934.266667pt;}
.y4_c00049{bottom:944.733333pt;}
.y9_c00049{bottom:946.066667pt;}
.y5_c00049{bottom:946.640000pt;}
.y6_c00049{bottom:947.026667pt;}
.y3_c00049{bottom:947.600000pt;}
.y8_c00049{bottom:947.973333pt;}
.y7_c00049{bottom:948.173333pt;}
.y1_c00049{bottom:979.226667pt;}
.y2_c00049{bottom:979.600000pt;}
.h9_c00049{height:3.739141pt;}
.h6_c00049{height:14.890964pt;}
.h1_c00049{height:20.466875pt;}
.h2_c00049{height:22.303646pt;}
.h4_c00049{height:27.879557pt;}
.h5_c00049{height:31.618698pt;}
.h3_c00049{height:35.357839pt;}
.h8_c00049{height:39.031380pt;}
.h7_c00049{height:40.039557pt;}
.ha_c00049{height:42.770521pt;}
.h0_c00049{height:1186.666667pt;}
.w0_c00049{width:782.666667pt;}
.x0_c00049{left:0.000000pt;}
.x10a_c00049{left:133.333333pt;}
.xbe_c00049{left:134.666667pt;}
.x51_c00049{left:136.000000pt;}
.x2_c00049{left:137.706667pt;}
.x2f_c00049{left:148.000000pt;}
.x3_c00049{left:149.706667pt;}
.x24_c00049{left:151.040000pt;}
.xab_c00049{left:152.373333pt;}
.x119_c00049{left:157.333333pt;}
.x1b_c00049{left:159.040000pt;}
.x106_c00049{left:160.373333pt;}
.xe_c00049{left:161.333333pt;}
.xb7_c00049{left:164.373333pt;}
.x4_c00049{left:165.706667pt;}
.xcb_c00049{left:168.373333pt;}
.x44_c00049{left:170.666667pt;}
.x25_c00049{left:172.000000pt;}
.x98_c00049{left:175.040000pt;}
.xac_c00049{left:177.333333pt;}
.x10f_c00049{left:179.040000pt;}
.xc5_c00049{left:180.000000pt;}
.xde_c00049{left:181.706667pt;}
.xd3_c00049{left:183.040000pt;}
.xbf_c00049{left:184.000000pt;}
.x102_c00049{left:186.666667pt;}
.x7f_c00049{left:188.000000pt;}
.x5d_c00049{left:188.960000pt;}
.x52_c00049{left:190.666667pt;}
.x30_c00049{left:193.333333pt;}
.x68_c00049{left:194.293333pt;}
.x1c_c00049{left:196.000000pt;}
.x79_c00049{left:197.333333pt;}
.x3d_c00049{left:198.666667pt;}
.xcc_c00049{left:200.000000pt;}
.x8d_c00049{left:201.333333pt;}
.x86_c00049{left:203.040000pt;}
.x57_c00049{left:204.000000pt;}
.x110_c00049{left:206.666667pt;}
.x45_c00049{left:208.000000pt;}
.x3e_c00049{left:209.333333pt;}
.x10b_c00049{left:210.293333pt;}
.xfd_c00049{left:213.333333pt;}
.x5e_c00049{left:215.040000pt;}
.x53_c00049{left:216.373333pt;}
.x99_c00049{left:217.333333pt;}
.xec_c00049{left:219.040000pt;}
.x69_c00049{left:220.373333pt;}
.x1d_c00049{left:222.293333pt;}
.x31_c00049{left:224.373333pt;}
.x72_c00049{left:225.706667pt;}
.x60_c00049{left:226.666667pt;}
.x74_c00049{left:228.000000pt;}
.xcd_c00049{left:230.666667pt;}
.x8e_c00049{left:232.000000pt;}
.xc0_c00049{left:234.293333pt;}
.x5_c00049{left:235.626667pt;}
.xf_c00049{left:238.666667pt;}
.xdf_c00049{left:240.373333pt;}
.x107_c00049{left:243.040000pt;}
.x46_c00049{left:244.000000pt;}
.x1e_c00049{left:246.666667pt;}
.xad_c00049{left:248.373333pt;}
.x73_c00049{left:249.333333pt;}
.xd4_c00049{left:250.293333pt;}
.xc6_c00049{left:251.626667pt;}
.x54_c00049{left:253.333333pt;}
.x3f_c00049{left:254.666667pt;}
.x87_c00049{left:256.000000pt;}
.x6a_c00049{left:258.666667pt;}
.x47_c00049{left:260.373333pt;}
.x34_c00049{left:261.706667pt;}
.x7a_c00049{left:262.666667pt;}
.xf4_c00049{left:265.333333pt;}
.x9e_c00049{left:266.293333pt;}
.x9a_c00049{left:268.000000pt;}
.xce_c00049{left:269.333333pt;}
.x8f_c00049{left:270.293333pt;}
.xae_c00049{left:272.373333pt;}
.x61_c00049{left:273.333333pt;}
.x115_c00049{left:274.666667pt;}
.x58_c00049{left:275.626667pt;}
.x35_c00049{left:276.960000pt;}
.x55_c00049{left:279.040000pt;}
.x40_c00049{left:283.040000pt;}
.x10_c00049{left:284.000000pt;}
.x1f_c00049{left:285.333333pt;}
.x103_c00049{left:287.040000pt;}
.xc7_c00049{left:290.666667pt;}
.xd5_c00049{left:292.373333pt;}
.xed_c00049{left:293.333333pt;}
.x20_c00049{left:294.666667pt;}
.xb8_c00049{left:296.373333pt;}
.x32_c00049{left:297.333333pt;}
.x36_c00049{left:300.000000pt;}
.x88_c00049{left:300.960000pt;}
.xe0_c00049{left:302.666667pt;}
.x56_c00049{left:304.000000pt;}
.x5f_c00049{left:305.333333pt;}
.x26_c00049{left:308.000000pt;}
.xe7_c00049{left:309.333333pt;}
.x48_c00049{left:310.666667pt;}
.x116_c00049{left:312.000000pt;}
.x80_c00049{left:314.093333pt;}
.x6_c00049{left:316.000000pt;}
.x75_c00049{left:317.706667pt;}
.x111_c00049{left:319.040000pt;}
.x9b_c00049{left:320.000000pt;}
.x41_c00049{left:320.960000pt;}
.x6b_c00049{left:323.426667pt;}
.xa5_c00049{left:324.960000pt;}
.x27_c00049{left:328.373333pt;}
.xcf_c00049{left:329.706667pt;}
.xee_c00049{left:331.040000pt;}
.x37_c00049{left:332.960000pt;}
.x21_c00049{left:334.293333pt;}
.x59_c00049{left:335.626667pt;}
.x11_c00049{left:337.333333pt;}
.x49_c00049{left:340.000000pt;}
.x89_c00049{left:341.333333pt;}
.x7b_c00049{left:342.666667pt;}
.xaf_c00049{left:344.373333pt;}
.x38_c00049{left:347.240000pt;}
.xf5_c00049{left:348.373333pt;}
.x76_c00049{left:349.333333pt;}
.xc8_c00049{left:350.666667pt;}
.x33_c00049{left:352.000000pt;}
.x1_c00049{left:354.666667pt;}
.x28_c00049{left:355.626667pt;}
.x22_c00049{left:358.293333pt;}
.x7_c00049{left:359.626667pt;}
.x6c_c00049{left:360.960000pt;}
.x112_c00049{left:364.000000pt;}
.xf7_c00049{left:365.333333pt;}
.xa6_c00049{left:367.040000pt;}
.xd0_c00049{left:368.000000pt;}
.xc1_c00049{left:368.960000pt;}
.xe8_c00049{left:370.666667pt;}
.xd6_c00049{left:372.000000pt;}
.x7c_c00049{left:377.333333pt;}
.xc9_c00049{left:378.666667pt;}
.x8a_c00049{left:380.000000pt;}
.x12_c00049{left:381.706667pt;}
.x9c_c00049{left:383.040000pt;}
.xe1_c00049{left:385.706667pt;}
.x9f_c00049{left:386.666667pt;}
.x29_c00049{left:388.960000pt;}
.x42_c00049{left:391.040000pt;}
.xb0_c00049{left:393.333333pt;}
.x4a_c00049{left:395.040000pt;}
.x23_c00049{left:396.000000pt;}
.x113_c00049{left:397.333333pt;}
.x62_c00049{left:398.666667pt;}
.xb9_c00049{left:400.000000pt;}
.x6d_c00049{left:401.333333pt;}
.x7d_c00049{left:402.666667pt;}
.x5a_c00049{left:404.373333pt;}
.x104_c00049{left:405.333333pt;}
.x2a_c00049{left:406.666667pt;}
.x81_c00049{left:407.626667pt;}
.xe2_c00049{left:408.960000pt;}
.x114_c00049{left:410.666667pt;}
.x13_c00049{left:413.333333pt;}
.x43_c00049{left:414.666667pt;}
.xe9_c00049{left:415.626667pt;}
.x39_c00049{left:418.666667pt;}
.xa0_c00049{left:420.373333pt;}
.xba_c00049{left:429.333333pt;}
.xda_c00049{left:430.293333pt;}
.xb1_c00049{left:434.666667pt;}
.x4b_c00049{left:436.000000pt;}
.x82_c00049{left:438.293333pt;}
.x8_c00049{left:439.240000pt;}
.x90_c00049{left:440.373333pt;}
.x14_c00049{left:442.666667pt;}
.xd1_c00049{left:448.000000pt;}
.xef_c00049{left:450.093333pt;}
.xfb_c00049{left:452.373333pt;}
.x77_c00049{left:456.000000pt;}
.x105_c00049{left:457.706667pt;}
.xe3_c00049{left:459.040000pt;}
.x63_c00049{left:461.333333pt;}
.x2b_c00049{left:463.240000pt;}
.x91_c00049{left:464.960000pt;}
.x15_c00049{left:466.666667pt;}
.xf8_c00049{left:469.333333pt;}
.x4c_c00049{left:471.626667pt;}
.x3a_c00049{left:474.666667pt;}
.x117_c00049{left:477.706667pt;}
.xfe_c00049{left:481.333333pt;}
.xe4_c00049{left:483.040000pt;}
.xa1_c00049{left:484.000000pt;}
.xc2_c00049{left:485.333333pt;}
.x10c_c00049{left:486.666667pt;}
.x4d_c00049{left:488.573333pt;}
.x83_c00049{left:489.706667pt;}
.xb2_c00049{left:490.666667pt;}
.x92_c00049{left:492.000000pt;}
.xa7_c00049{left:495.040000pt;}
.x6e_c00049{left:497.333333pt;}
.xbb_c00049{left:498.293333pt;}
.xff_c00049{left:500.000000pt;}
.xa2_c00049{left:501.333333pt;}
.x16_c00049{left:502.666667pt;}
.x2c_c00049{left:504.000000pt;}
.xea_c00049{left:506.666667pt;}
.xf0_c00049{left:509.333333pt;}
.x93_c00049{left:510.666667pt;}
.x9_c00049{left:511.626667pt;}
.x100_c00049{left:513.706667pt;}
.xb3_c00049{left:514.666667pt;}
.x17_c00049{left:516.000000pt;}
.x5b_c00049{left:517.333333pt;}
.xd7_c00049{left:521.706667pt;}
.xa_c00049{left:522.666667pt;}
.x3b_c00049{left:524.373333pt;}
.x94_c00049{left:525.333333pt;}
.x64_c00049{left:526.293333pt;}
.xbc_c00049{left:528.373333pt;}
.xfc_c00049{left:529.706667pt;}
.xa8_c00049{left:530.666667pt;}
.xf1_c00049{left:533.333333pt;}
.x3c_c00049{left:534.666667pt;}
.xa3_c00049{left:537.333333pt;}
.x10d_c00049{left:538.666667pt;}
.x8b_c00049{left:540.000000pt;}
.x6f_c00049{left:541.706667pt;}
.xb4_c00049{left:544.960000pt;}
.x84_c00049{left:547.040000pt;}
.xa9_c00049{left:548.373333pt;}
.x70_c00049{left:552.000000pt;}
.x18_c00049{left:553.333333pt;}
.x108_c00049{left:555.040000pt;}
.x118_c00049{left:556.000000pt;}
.xeb_c00049{left:557.706667pt;}
.xc3_c00049{left:558.666667pt;}
.xd2_c00049{left:560.000000pt;}
.x4e_c00049{left:561.333333pt;}
.xb_c00049{left:563.626667pt;}
.x65_c00049{left:565.333333pt;}
.x2d_c00049{left:567.040000pt;}
.xf9_c00049{left:568.373333pt;}
.xf2_c00049{left:569.706667pt;}
.xdb_c00049{left:570.666667pt;}
.x85_c00049{left:571.626667pt;}
.xca_c00049{left:574.293333pt;}
.xaa_c00049{left:578.293333pt;}
.x19_c00049{left:580.373333pt;}
.x8c_c00049{left:582.293333pt;}
.x2e_c00049{left:583.240000pt;}
.xdc_c00049{left:585.333333pt;}
.xd8_c00049{left:586.666667pt;}
.x95_c00049{left:588.000000pt;}
.xc_c00049{left:589.706667pt;}
.x66_c00049{left:591.626667pt;}
.x4f_c00049{left:592.960000pt;}
.xa4_c00049{left:594.666667pt;}
.x5c_c00049{left:595.626667pt;}
.xe5_c00049{left:597.333333pt;}
.xb5_c00049{left:600.373333pt;}
.x71_c00049{left:601.333333pt;}
.xc4_c00049{left:602.293333pt;}
.xf3_c00049{left:603.426667pt;}
.x96_c00049{left:605.333333pt;}
.x109_c00049{left:606.293333pt;}
.xbd_c00049{left:607.626667pt;}
.xf6_c00049{left:610.293333pt;}
.x78_c00049{left:611.626667pt;}
.x67_c00049{left:617.333333pt;}
.x97_c00049{left:618.666667pt;}
.x1a_c00049{left:620.000000pt;}
.x10e_c00049{left:620.960000pt;}
.xb6_c00049{left:625.333333pt;}
.x7e_c00049{left:626.666667pt;}
.xd_c00049{left:628.000000pt;}
.x9d_c00049{left:631.040000pt;}
.xd9_c00049{left:632.373333pt;}
.xfa_c00049{left:634.666667pt;}
.xdd_c00049{left:636.000000pt;}
.xe6_c00049{left:636.960000pt;}
.x101_c00049{left:638.666667pt;}
.x50_c00049{left:644.000000pt;}
}





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

.ir_c00050:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00050{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00050;src:url('chunks/assets/font_50652e9d3d1fccd745a50ed5.woff2')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:1.688965;font-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_c00050{transform:matrix(0.236963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236963,0.000000,0.000000,0.250000,0,0);}
.m5_c00050{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m4d_c00050{transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);}
.m80_c00050{transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);}
.mf0_c00050{transform:matrix(0.339496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339496,0.000000,0.000000,0.250000,0,0);}
.mdd_c00050{transform:matrix(0.353667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353667,0.000000,0.000000,0.250000,0,0);}
.mce_c00050{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.mb3_c00050{transform:matrix(0.361196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361196,0.000000,0.000000,0.250000,0,0);}
.mc1_c00050{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.me2_c00050{transform:matrix(0.366361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366361,0.000000,0.000000,0.250000,0,0);}
.m5e_c00050{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m3c_c00050{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.mad_c00050{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m86_c00050{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.meb_c00050{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m63_c00050{transform:matrix(0.371933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371933,0.000000,0.000000,0.250000,0,0);}
.mfc_c00050{transform:matrix(0.376917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376917,0.000000,0.000000,0.250000,0,0);}
.mdb_c00050{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m3b_c00050{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mdc_c00050{transform:matrix(0.380705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380705,0.000000,0.000000,0.250000,0,0);}
.mc4_c00050{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.mae_c00050{transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);}
.mff_c00050{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.mb2_c00050{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m61_c00050{transform:matrix(0.383819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383819,0.000000,0.000000,0.250000,0,0);}
.ma9_c00050{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.m5c_c00050{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m65_c00050{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m83_c00050{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.mef_c00050{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mda_c00050{transform:matrix(0.389954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389954,0.000000,0.000000,0.250000,0,0);}
.m87_c00050{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m7b_c00050{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m21_c00050{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mc8_c00050{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.mf8_c00050{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mee_c00050{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m5d_c00050{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m1b_c00050{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mc2_c00050{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m99_c00050{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m16_c00050{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m17_c00050{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m79_c00050{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m50_c00050{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.md_c00050{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m41_c00050{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m53_c00050{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.mcd_c00050{transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);}
.m51_c00050{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m45_c00050{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m6a_c00050{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m75_c00050{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.maa_c00050{transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);}
.mc0_c00050{transform:matrix(0.422929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422929,0.000000,0.000000,0.250000,0,0);}
.m6c_c00050{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mf7_c00050{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m9d_c00050{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m2c_c00050{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.md8_c00050{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m103_c00050{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m40_c00050{transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);}
.m20_c00050{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m55_c00050{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m11_c00050{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mcb_c00050{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.m8e_c00050{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.ma2_c00050{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m6_c00050{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m101_c00050{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m106_c00050{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m6e_c00050{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m2f_c00050{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.me4_c00050{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m3e_c00050{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.mc7_c00050{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mab_c00050{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.me6_c00050{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m85_c00050{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m84_c00050{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m23_c00050{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.mc9_c00050{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m8c_c00050{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m12_c00050{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m1f_c00050{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.mca_c00050{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.mac_c00050{transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);}
.m2e_c00050{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m58_c00050{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m1c_c00050{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.me1_c00050{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.ma1_c00050{transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);}
.mf2_c00050{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.mba_c00050{transform:matrix(0.467069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467069,0.000000,0.000000,0.250000,0,0);}
.m42_c00050{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m54_c00050{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m2b_c00050{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m74_c00050{transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);}
.md9_c00050{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m73_c00050{transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);}
.me5_c00050{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.mec_c00050{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m81_c00050{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m8d_c00050{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.mf_c00050{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m69_c00050{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mb6_c00050{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m33_c00050{transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);}
.mb_c00050{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.md7_c00050{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m108_c00050{transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);}
.m68_c00050{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mf6_c00050{transform:matrix(0.489332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489332,0.000000,0.000000,0.250000,0,0);}
.md6_c00050{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m29_c00050{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mbd_c00050{transform:matrix(0.492857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492857,0.000000,0.000000,0.250000,0,0);}
.mc6_c00050{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mf1_c00050{transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);}
.m72_c00050{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.me3_c00050{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.md5_c00050{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m9_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);}
.ma3_c00050{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.mfe_c00050{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m24_c00050{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m3a_c00050{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.md1_c00050{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.me8_c00050{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mbe_c00050{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m7d_c00050{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m9f_c00050{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m4a_c00050{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m100_c00050{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m39_c00050{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m10a_c00050{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m64_c00050{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m44_c00050{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m7a_c00050{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m25_c00050{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mb9_c00050{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.ma_c00050{transform:matrix(0.521008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521008,0.000000,0.000000,0.250000,0,0);}
.m9c_c00050{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m5b_c00050{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m43_c00050{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mc5_c00050{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mf4_c00050{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m47_c00050{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.mbf_c00050{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.mc3_c00050{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.mf5_c00050{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m52_c00050{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m9e_c00050{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mfa_c00050{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m6d_c00050{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m8a_c00050{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m70_c00050{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m109_c00050{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.mc_c00050{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m7f_c00050{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m19_c00050{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m78_c00050{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m34_c00050{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mde_c00050{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m6f_c00050{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m94_c00050{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m31_c00050{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m9b_c00050{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.md3_c00050{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m95_c00050{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mb5_c00050{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.ma5_c00050{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.mcf_c00050{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m18_c00050{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m35_c00050{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mb7_c00050{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m9a_c00050{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m62_c00050{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m5f_c00050{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m10b_c00050{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m7c_c00050{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mb0_c00050{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);}
.m93_c00050{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.me_c00050{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m2_c00050{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m32_c00050{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m92_c00050{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m76_c00050{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.me9_c00050{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m10_c00050{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m2d_c00050{transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);}
.m14_c00050{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m4b_c00050{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mbb_c00050{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m56_c00050{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m48_c00050{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);}
.ma8_c00050{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m28_c00050{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m82_c00050{transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);}
.m3d_c00050{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.ma7_c00050{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.me0_c00050{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.m3_c00050{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mfd_c00050{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m6b_c00050{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m2a_c00050{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mb4_c00050{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.mb1_c00050{transform:matrix(0.572356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572356,0.000000,0.000000,0.250000,0,0);}
.m77_c00050{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m104_c00050{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m13_c00050{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m8f_c00050{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m7e_c00050{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m4c_c00050{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m107_c00050{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.md0_c00050{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m38_c00050{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m36_c00050{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.md2_c00050{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m88_c00050{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mf3_c00050{transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);}
.m60_c00050{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.m46_c00050{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m97_c00050{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m8b_c00050{transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);}
.mcc_c00050{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m22_c00050{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m26_c00050{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m1e_c00050{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m30_c00050{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m91_c00050{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m96_c00050{transform:matrix(0.617059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617059,0.000000,0.000000,0.250000,0,0);}
.m57_c00050{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m5a_c00050{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);}
.m7_c00050{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m90_c00050{transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);}
.md4_c00050{transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);}
.m102_c00050{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m105_c00050{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m0_c00050{transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);}
.m98_c00050{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.me7_c00050{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m1_c00050{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m66_c00050{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mfb_c00050{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m15_c00050{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m1a_c00050{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.ma4_c00050{transform:matrix(0.696471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696471,0.000000,0.000000,0.250000,0,0);}
.m4e_c00050{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m4_c00050{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.ma0_c00050{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.m3f_c00050{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.med_c00050{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.ma6_c00050{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.mdf_c00050{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m89_c00050{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m1d_c00050{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m27_c00050{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mbc_c00050{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.maf_c00050{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m67_c00050{transform:matrix(0.772059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772059,0.000000,0.000000,0.250000,0,0);}
.mb8_c00050{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.mea_c00050{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m4f_c00050{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.m49_c00050{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m71_c00050{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mf9_c00050{transform:matrix(0.801282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.801282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.801282,0.000000,0.000000,0.250000,0,0);}
.m37_c00050{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m59_c00050{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.v1_c00050{vertical-align:-6.000000px;}
.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:-6.400641px;}
.ws2_c00050{word-spacing:-4.343067px;}
.ws1_c00050{word-spacing:-3.584672px;}
.ws3_c00050{word-spacing:0.000000px;}
.fc0_c00050{color:transparent;}
.fs1_c00050{font-size:18.720000px;}
.fs0_c00050{font-size:20.400000px;}
.fs4_c00050{font-size:25.500000px;}
.fs2_c00050{font-size:28.920000px;}
.fs6_c00050{font-size:32.340000px;}
.fs3_c00050{font-size:35.700000px;}
.fs5_c00050{font-size:39.120000px;}
.fs7_c00050{font-size:42.540000px;}
.y0_c00050{bottom:0.000000px;}
.y104_c00050{bottom:251.745000px;}
.y106_c00050{bottom:253.245000px;}
.y103_c00050{bottom:253.905000px;}
.y102_c00050{bottom:254.325000px;}
.y105_c00050{bottom:255.405000px;}
.y107_c00050{bottom:255.630000px;}
.y101_c00050{bottom:256.905000px;}
.y100_c00050{bottom:257.970000px;}
.yfd_c00050{bottom:271.245000px;}
.yfe_c00050{bottom:271.905000px;}
.yfc_c00050{bottom:273.405000px;}
.yfa_c00050{bottom:274.245000px;}
.yfb_c00050{bottom:274.905000px;}
.yff_c00050{bottom:276.405000px;}
.yf9_c00050{bottom:278.325000px;}
.yf4_c00050{bottom:292.245000px;}
.yf6_c00050{bottom:293.130000px;}
.yf7_c00050{bottom:293.745000px;}
.yf5_c00050{bottom:293.970000px;}
.yf3_c00050{bottom:294.405000px;}
.yf1_c00050{bottom:295.050000px;}
.yf2_c00050{bottom:295.470000px;}
.yf0_c00050{bottom:295.905000px;}
.yf8_c00050{bottom:296.970000px;}
.yec_c00050{bottom:311.745000px;}
.yee_c00050{bottom:313.245000px;}
.yed_c00050{bottom:313.905000px;}
.yef_c00050{bottom:314.970000px;}
.yeb_c00050{bottom:315.405000px;}
.yea_c00050{bottom:316.470000px;}
.ye9_c00050{bottom:316.905000px;}
.ye5_c00050{bottom:331.680000px;}
.ye7_c00050{bottom:332.130000px;}
.ye6_c00050{bottom:333.405000px;}
.ye8_c00050{bottom:334.905000px;}
.ye4_c00050{bottom:336.405000px;}
.ye1_c00050{bottom:350.745000px;}
.ye2_c00050{bottom:351.630000px;}
.ydf_c00050{bottom:351.825000px;}
.ye0_c00050{bottom:352.905000px;}
.ye3_c00050{bottom:353.130000px;}
.yde_c00050{bottom:354.825000px;}
.ydd_c00050{bottom:358.470000px;}
.yd8_c00050{bottom:370.245000px;}
.ydc_c00050{bottom:371.130000px;}
.ydb_c00050{bottom:371.970000px;}
.yda_c00050{bottom:372.405000px;}
.yd9_c00050{bottom:372.630000px;}
.yd7_c00050{bottom:373.905000px;}
.yd6_c00050{bottom:377.325000px;}
.yd2_c00050{bottom:389.745000px;}
.yd1_c00050{bottom:391.245000px;}
.yd3_c00050{bottom:391.470000px;}
.yd4_c00050{bottom:391.905000px;}
.yd5_c00050{bottom:392.325000px;}
.yd0_c00050{bottom:393.405000px;}
.ycf_c00050{bottom:393.630000px;}
.yce_c00050{bottom:393.825000px;}
.ycd_c00050{bottom:409.245000px;}
.yc9_c00050{bottom:410.745000px;}
.ycc_c00050{bottom:411.405000px;}
.yca_c00050{bottom:411.630000px;}
.ycb_c00050{bottom:412.470000px;}
.yc8_c00050{bottom:412.905000px;}
.yc7_c00050{bottom:413.970000px;}
.yc6_c00050{bottom:414.405000px;}
.yc5_c00050{bottom:415.905000px;}
.yc4_c00050{bottom:430.050000px;}
.yc3_c00050{bottom:430.245000px;}
.yc2_c00050{bottom:432.405000px;}
.yc1_c00050{bottom:434.325000px;}
.yc0_c00050{bottom:449.745000px;}
.ybe_c00050{bottom:450.180000px;}
.ybf_c00050{bottom:451.905000px;}
.ybc_c00050{bottom:470.130000px;}
.ybd_c00050{bottom:470.325000px;}
.ybb_c00050{bottom:470.970000px;}
.yb8_c00050{bottom:471.180000px;}
.yba_c00050{bottom:471.405000px;}
.yb9_c00050{bottom:471.630000px;}
.yb7_c00050{bottom:487.680000px;}
.yb6_c00050{bottom:487.905000px;}
.yb4_c00050{bottom:488.745000px;}
.yb3_c00050{bottom:490.245000px;}
.yb5_c00050{bottom:490.905000px;}
.yb2_c00050{bottom:491.745000px;}
.yb1_c00050{bottom:493.905000px;}
.yac_c00050{bottom:508.905000px;}
.yb0_c00050{bottom:509.325000px;}
.yae_c00050{bottom:510.405000px;}
.yaf_c00050{bottom:510.630000px;}
.yad_c00050{bottom:511.905000px;}
.yab_c00050{bottom:514.470000px;}
.ya6_c00050{bottom:526.905000px;}
.ya9_c00050{bottom:527.745000px;}
.ya7_c00050{bottom:529.245000px;}
.yaa_c00050{bottom:529.905000px;}
.ya8_c00050{bottom:530.130000px;}
.ya5_c00050{bottom:531.405000px;}
.ya4_c00050{bottom:532.905000px;}
.ya3_c00050{bottom:547.245000px;}
.y9f_c00050{bottom:547.470000px;}
.ya2_c00050{bottom:548.325000px;}
.ya1_c00050{bottom:549.405000px;}
.y9b_c00050{bottom:549.825000px;}
.ya0_c00050{bottom:550.470000px;}
.y9e_c00050{bottom:550.905000px;}
.y9d_c00050{bottom:551.325000px;}
.y9c_c00050{bottom:552.405000px;}
.y9a_c00050{bottom:565.905000px;}
.y99_c00050{bottom:568.245000px;}
.y98_c00050{bottom:569.970000px;}
.y97_c00050{bottom:570.405000px;}
.y95_c00050{bottom:571.245000px;}
.y96_c00050{bottom:571.905000px;}
.y94_c00050{bottom:587.745000px;}
.y92_c00050{bottom:588.180000px;}
.y93_c00050{bottom:589.905000px;}
.y91_c00050{bottom:592.470000px;}
.y8f_c00050{bottom:607.245000px;}
.y90_c00050{bottom:607.470000px;}
.y8d_c00050{bottom:609.405000px;}
.y8e_c00050{bottom:609.630000px;}
.y8c_c00050{bottom:611.325000px;}
.y8b_c00050{bottom:612.405000px;}
.y87_c00050{bottom:627.180000px;}
.y86_c00050{bottom:628.245000px;}
.y8a_c00050{bottom:628.905000px;}
.y89_c00050{bottom:629.130000px;}
.y85_c00050{bottom:629.325000px;}
.y84_c00050{bottom:629.970000px;}
.y88_c00050{bottom:630.405000px;}
.y82_c00050{bottom:647.745000px;}
.y83_c00050{bottom:648.630000px;}
.y81_c00050{bottom:649.905000px;}
.y80_c00050{bottom:650.325000px;}
.y7f_c00050{bottom:667.245000px;}
.y7b_c00050{bottom:667.905000px;}
.y7d_c00050{bottom:668.970000px;}
.y7e_c00050{bottom:669.405000px;}
.y7c_c00050{bottom:670.470000px;}
.y79_c00050{bottom:686.745000px;}
.y78_c00050{bottom:687.630000px;}
.y7a_c00050{bottom:688.470000px;}
.y77_c00050{bottom:688.905000px;}
.y76_c00050{bottom:689.970000px;}
.y75_c00050{bottom:691.905000px;}
.y74_c00050{bottom:706.245000px;}
.y73_c00050{bottom:707.550000px;}
.y72_c00050{bottom:708.405000px;}
.y71_c00050{bottom:709.905000px;}
.y70_c00050{bottom:710.550000px;}
.y6d_c00050{bottom:725.745000px;}
.y6c_c00050{bottom:727.905000px;}
.y6e_c00050{bottom:728.130000px;}
.y6f_c00050{bottom:728.970000px;}
.y6b_c00050{bottom:729.405000px;}
.y69_c00050{bottom:730.050000px;}
.y6a_c00050{bottom:730.905000px;}
.y68_c00050{bottom:744.405000px;}
.y63_c00050{bottom:745.245000px;}
.y66_c00050{bottom:745.470000px;}
.y64_c00050{bottom:746.325000px;}
.y67_c00050{bottom:747.405000px;}
.y65_c00050{bottom:747.630000px;}
.y61_c00050{bottom:747.825000px;}
.y62_c00050{bottom:748.470000px;}
.y60_c00050{bottom:750.405000px;}
.y5e_c00050{bottom:763.905000px;}
.y5c_c00050{bottom:764.745000px;}
.y5a_c00050{bottom:765.405000px;}
.y5d_c00050{bottom:766.245000px;}
.y5f_c00050{bottom:766.905000px;}
.y5b_c00050{bottom:767.130000px;}
.y59_c00050{bottom:768.405000px;}
.y57_c00050{bottom:783.405000px;}
.y58_c00050{bottom:784.680000px;}
.y55_c00050{bottom:784.905000px;}
.y54_c00050{bottom:785.745000px;}
.y56_c00050{bottom:787.470000px;}
.y53_c00050{bottom:787.905000px;}
.y4f_c00050{bottom:805.245000px;}
.y52_c00050{bottom:806.130000px;}
.y50_c00050{bottom:806.970000px;}
.y51_c00050{bottom:807.405000px;}
.y4e_c00050{bottom:807.825000px;}
.y4d_c00050{bottom:826.905000px;}
.y4c_c00050{bottom:827.130000px;}
.y4b_c00050{bottom:828.405000px;}
.y4a_c00050{bottom:843.825000px;}
.y49_c00050{bottom:844.245000px;}
.y47_c00050{bottom:845.550000px;}
.y48_c00050{bottom:846.405000px;}
.y46_c00050{bottom:847.905000px;}
.y43_c00050{bottom:862.905000px;}
.y44_c00050{bottom:863.325000px;}
.y42_c00050{bottom:864.180000px;}
.y41_c00050{bottom:865.470000px;}
.y40_c00050{bottom:865.905000px;}
.y45_c00050{bottom:866.970000px;}
.y3f_c00050{bottom:867.405000px;}
.y3e_c00050{bottom:868.905000px;}
.y3d_c00050{bottom:883.245000px;}
.y39_c00050{bottom:883.470000px;}
.y3a_c00050{bottom:884.325000px;}
.y3c_c00050{bottom:884.745000px;}
.y38_c00050{bottom:885.405000px;}
.y3b_c00050{bottom:885.630000px;}
.y37_c00050{bottom:886.905000px;}
.y36_c00050{bottom:888.405000px;}
.y33_c00050{bottom:901.905000px;}
.y32_c00050{bottom:904.245000px;}
.y31_c00050{bottom:905.130000px;}
.y34_c00050{bottom:905.325000px;}
.y35_c00050{bottom:906.405000px;}
.y30_c00050{bottom:907.050000px;}
.y2c_c00050{bottom:921.405000px;}
.y2b_c00050{bottom:922.470000px;}
.y29_c00050{bottom:923.325000px;}
.y2f_c00050{bottom:923.745000px;}
.y2d_c00050{bottom:924.630000px;}
.y2e_c00050{bottom:925.470000px;}
.y2a_c00050{bottom:925.905000px;}
.y27_c00050{bottom:940.905000px;}
.y26_c00050{bottom:942.405000px;}
.y24_c00050{bottom:943.245000px;}
.y25_c00050{bottom:944.130000px;}
.y28_c00050{bottom:944.325000px;}
.y23_c00050{bottom:945.405000px;}
.y22_c00050{bottom:946.905000px;}
.y21_c00050{bottom:962.745000px;}
.y20_c00050{bottom:963.630000px;}
.y1f_c00050{bottom:964.470000px;}
.y1e_c00050{bottom:964.905000px;}
.y1b_c00050{bottom:982.245000px;}
.y1d_c00050{bottom:983.130000px;}
.y1c_c00050{bottom:984.405000px;}
.y1a_c00050{bottom:984.825000px;}
.y17_c00050{bottom:1000.905000px;}
.y18_c00050{bottom:1001.745000px;}
.y16_c00050{bottom:1003.905000px;}
.y19_c00050{bottom:1004.130000px;}
.y15_c00050{bottom:1005.405000px;}
.y10_c00050{bottom:1021.245000px;}
.y13_c00050{bottom:1022.325000px;}
.y11_c00050{bottom:1023.405000px;}
.y14_c00050{bottom:1023.630000px;}
.y12_c00050{bottom:1024.470000px;}
.yf_c00050{bottom:1024.905000px;}
.yd_c00050{bottom:1040.745000px;}
.ye_c00050{bottom:1041.825000px;}
.yb_c00050{bottom:1042.905000px;}
.yc_c00050{bottom:1043.130000px;}
.ya_c00050{bottom:1043.970000px;}
.y7_c00050{bottom:1059.180000px;}
.y5_c00050{bottom:1060.245000px;}
.y8_c00050{bottom:1061.745000px;}
.y4_c00050{bottom:1062.405000px;}
.y9_c00050{bottom:1062.630000px;}
.y6_c00050{bottom:1063.470000px;}
.y3_c00050{bottom:1063.905000px;}
.y1_c00050{bottom:1100.550000px;}
.y2_c00050{bottom:1103.130000px;}
.h2_c00050{height:23.025234px;}
.h1_c00050{height:25.091602px;}
.h5_c00050{height:31.364502px;}
.h3_c00050{height:35.571035px;}
.h7_c00050{height:39.777568px;}
.h4_c00050{height:43.910303px;}
.h6_c00050{height:48.116836px;}
.h8_c00050{height:52.323369px;}
.h0_c00050{height:1335.000000px;}
.w0_c00050{width:880.500000px;}
.x0_c00050{left:0.000000px;}
.x15_c00050{left:151.080000px;}
.x84_c00050{left:152.580000px;}
.x5f_c00050{left:153.855000px;}
.xef_c00050{left:154.920000px;}
.x101_c00050{left:156.420000px;}
.x3_c00050{left:166.080000px;}
.x47_c00050{left:168.000000px;}
.x94_c00050{left:169.080000px;}
.xc9_c00050{left:170.580000px;}
.xae_c00050{left:173.580000px;}
.xb6_c00050{left:175.920000px;}
.x85_c00050{left:177.000000px;}
.x16_c00050{left:178.500000px;}
.x7e_c00050{left:180.000000px;}
.x36_c00050{left:182.580000px;}
.xec_c00050{left:184.920000px;}
.x60_c00050{left:186.000000px;}
.x6d_c00050{left:187.500000px;}
.x53_c00050{left:189.420000px;}
.x90_c00050{left:190.500000px;}
.xaf_c00050{left:193.500000px;}
.xd5_c00050{left:195.000000px;}
.x114_c00050{left:196.080000px;}
.x40_c00050{left:198.000000px;}
.xf6_c00050{left:200.580000px;}
.xb7_c00050{left:204.420000px;}
.x17_c00050{left:207.420000px;}
.x91_c00050{left:208.920000px;}
.x28_c00050{left:211.500000px;}
.x86_c00050{left:213.000000px;}
.x37_c00050{left:214.920000px;}
.x74_c00050{left:216.420000px;}
.xfb_c00050{left:219.000000px;}
.x4_c00050{left:220.920000px;}
.x61_c00050{left:222.420000px;}
.x10b_c00050{left:224.580000px;}
.x54_c00050{left:226.080000px;}
.xb0_c00050{left:228.000000px;}
.xc5_c00050{left:229.080000px;}
.xa0_c00050{left:230.580000px;}
.xd1_c00050{left:232.080000px;}
.xe4_c00050{left:234.420000px;}
.x102_c00050{left:235.500000px;}
.x87_c00050{left:236.580000px;}
.x10f_c00050{left:238.500000px;}
.xed_c00050{left:239.580000px;}
.x18_c00050{left:241.500000px;}
.xa1_c00050{left:243.000000px;}
.x92_c00050{left:246.000000px;}
.xf0_c00050{left:247.080000px;}
.xd2_c00050{left:250.920000px;}
.x62_c00050{left:254.580000px;}
.x75_c00050{left:258.000000px;}
.x48_c00050{left:259.500000px;}
.x38_c00050{left:260.580000px;}
.x9b_c00050{left:262.500000px;}
.x19_c00050{left:265.500000px;}
.x110_c00050{left:267.000000px;}
.x88_c00050{left:268.500000px;}
.x10d_c00050{left:270.000000px;}
.x93_c00050{left:271.500000px;}
.x1a_c00050{left:274.500000px;}
.xc6_c00050{left:276.000000px;}
.x41_c00050{left:277.500000px;}
.x29_c00050{left:279.000000px;}
.x63_c00050{left:280.080000px;}
.xb1_c00050{left:283.080000px;}
.x115_c00050{left:285.000000px;}
.xd6_c00050{left:286.920000px;}
.x5_c00050{left:288.000000px;}
.x7f_c00050{left:289.500000px;}
.x1b_c00050{left:291.420000px;}
.x2a_c00050{left:294.000000px;}
.x42_c00050{left:297.000000px;}
.x6_c00050{left:298.500000px;}
.xe5_c00050{left:300.420000px;}
.xbb_c00050{left:303.000000px;}
.x64_c00050{left:305.580000px;}
.xde_c00050{left:307.500000px;}
.x43_c00050{left:310.500000px;}
.x7_c00050{left:313.080000px;}
.x6e_c00050{left:316.920000px;}
.xb8_c00050{left:318.420000px;}
.xd7_c00050{left:319.500000px;}
.x89_c00050{left:321.000000px;}
.x1c_c00050{left:322.500000px;}
.x55_c00050{left:323.775000px;}
.xf7_c00050{left:325.500000px;}
.x10e_c00050{left:327.000000px;}
.x9c_c00050{left:328.500000px;}
.xf4_c00050{left:333.000000px;}
.x105_c00050{left:334.500000px;}
.xa2_c00050{left:335.580000px;}
.x65_c00050{left:337.080000px;}
.x1d_c00050{left:339.420000px;}
.x8_c00050{left:342.000000px;}
.x2b_c00050{left:343.500000px;}
.x39_c00050{left:345.000000px;}
.xc7_c00050{left:346.500000px;}
.xca_c00050{left:347.580000px;}
.xe6_c00050{left:349.080000px;}
.xbc_c00050{left:351.420000px;}
.xb2_c00050{left:352.500000px;}
.x9_c00050{left:357.000000px;}
.xd8_c00050{left:358.500000px;}
.x49_c00050{left:361.080000px;}
.x76_c00050{left:362.580000px;}
.xe9_c00050{left:364.500000px;}
.x1e_c00050{left:366.000000px;}
.xcb_c00050{left:369.420000px;}
.xa_c00050{left:370.500000px;}
.x56_c00050{left:372.000000px;}
.x3a_c00050{left:377.580000px;}
.x4a_c00050{left:379.500000px;}
.xa3_c00050{left:381.000000px;}
.x66_c00050{left:382.500000px;}
.xf1_c00050{left:384.000000px;}
.xb3_c00050{left:385.500000px;}
.x77_c00050{left:387.000000px;}
.xb_c00050{left:388.920000px;}
.x1_c00050{left:394.500000px;}
.x2c_c00050{left:396.000000px;}
.x57_c00050{left:397.080000px;}
.x95_c00050{left:399.000000px;}
.x4b_c00050{left:401.580000px;}
.x44_c00050{left:403.080000px;}
.xc_c00050{left:406.080000px;}
.xd9_c00050{left:407.580000px;}
.xf8_c00050{left:409.500000px;}
.xf5_c00050{left:410.580000px;}
.x6f_c00050{left:414.000000px;}
.x67_c00050{left:416.580000px;}
.x1f_c00050{left:418.920000px;}
.xdf_c00050{left:420.000000px;}
.x8a_c00050{left:421.920000px;}
.x2d_c00050{left:423.000000px;}
.x78_c00050{left:424.500000px;}
.xd3_c00050{left:426.000000px;}
.xd_c00050{left:427.920000px;}
.xfc_c00050{left:430.500000px;}
.xf2_c00050{left:433.920000px;}
.xa4_c00050{left:435.000000px;}
.xda_c00050{left:436.920000px;}
.xe0_c00050{left:439.920000px;}
.x4c_c00050{left:442.500000px;}
.xb9_c00050{left:444.000000px;}
.x106_c00050{left:445.920000px;}
.x79_c00050{left:447.000000px;}
.x3b_c00050{left:448.500000px;}
.x8b_c00050{left:450.000000px;}
.x96_c00050{left:451.500000px;}
.x20_c00050{left:453.000000px;}
.xe7_c00050{left:454.500000px;}
.x108_c00050{left:456.000000px;}
.xb4_c00050{left:457.080000px;}
.x68_c00050{left:460.500000px;}
.xc0_c00050{left:463.275000px;}
.xbe_c00050{left:464.580000px;}
.x45_c00050{left:466.920000px;}
.xdb_c00050{left:471.420000px;}
.x103_c00050{left:474.420000px;}
.xfd_c00050{left:475.500000px;}
.xea_c00050{left:477.000000px;}
.x2e_c00050{left:478.920000px;}
.x4d_c00050{left:480.420000px;}
.xc8_c00050{left:481.500000px;}
.xd4_c00050{left:483.000000px;}
.xf9_c00050{left:484.920000px;}
.x111_c00050{left:486.420000px;}
.x8c_c00050{left:487.920000px;}
.xbd_c00050{left:489.000000px;}
.x70_c00050{left:490.500000px;}
.x58_c00050{left:492.000000px;}
.x46_c00050{left:493.500000px;}
.xe_c00050{left:495.000000px;}
.x21_c00050{left:496.500000px;}
.x69_c00050{left:498.000000px;}
.xcc_c00050{left:499.920000px;}
.xa5_c00050{left:501.000000px;}
.x7a_c00050{left:502.500000px;}
.x2f_c00050{left:504.000000px;}
.xaa_c00050{left:508.275000px;}
.x22_c00050{left:510.000000px;}
.xfe_c00050{left:513.420000px;}
.xb5_c00050{left:514.500000px;}
.x4e_c00050{left:515.580000px;}
.x10c_c00050{left:518.775000px;}
.x97_c00050{left:523.500000px;}
.x23_c00050{left:525.000000px;}
.x107_c00050{left:528.000000px;}
.x59_c00050{left:529.080000px;}
.xcd_c00050{left:534.000000px;}
.xa6_c00050{left:537.000000px;}
.x3c_c00050{left:540.000000px;}
.xe1_c00050{left:541.920000px;}
.x104_c00050{left:544.500000px;}
.x100_c00050{left:545.580000px;}
.x80_c00050{left:547.080000px;}
.x98_c00050{left:548.580000px;}
.x9d_c00050{left:550.080000px;}
.x112_c00050{left:552.000000px;}
.xce_c00050{left:553.500000px;}
.x30_c00050{left:554.580000px;}
.x3d_c00050{left:556.500000px;}
.x5a_c00050{left:558.000000px;}
.xe8_c00050{left:561.420000px;}
.x4f_c00050{left:563.580000px;}
.xba_c00050{left:565.080000px;}
.x113_c00050{left:570.000000px;}
.xf_c00050{left:573.420000px;}
.xff_c00050{left:576.000000px;}
.x7b_c00050{left:578.580000px;}
.xcf_c00050{left:581.580000px;}
.xab_c00050{left:585.000000px;}
.x31_c00050{left:586.920000px;}
.xdc_c00050{left:588.000000px;}
.xe2_c00050{left:589.500000px;}
.xc1_c00050{left:591.420000px;}
.x24_c00050{left:592.500000px;}
.x50_c00050{left:594.000000px;}
.x71_c00050{left:595.500000px;}
.x9e_c00050{left:597.000000px;}
.x3e_c00050{left:598.080000px;}
.x10_c00050{left:600.420000px;}
.x5b_c00050{left:603.420000px;}
.x81_c00050{left:604.920000px;}
.xa7_c00050{left:606.000000px;}
.x109_c00050{left:607.920000px;}
.xac_c00050{left:612.000000px;}
.x25_c00050{left:615.000000px;}
.x6a_c00050{left:618.420000px;}
.x8d_c00050{left:621.000000px;}
.x99_c00050{left:622.500000px;}
.x32_c00050{left:624.000000px;}
.x26_c00050{left:625.500000px;}
.x7c_c00050{left:627.000000px;}
.xeb_c00050{left:628.080000px;}
.x3f_c00050{left:630.000000px;}
.x11_c00050{left:633.000000px;}
.xc2_c00050{left:634.500000px;}
.x5c_c00050{left:636.420000px;}
.xa8_c00050{left:641.580000px;}
.x51_c00050{left:643.080000px;}
.x6b_c00050{left:644.580000px;}
.xd0_c00050{left:646.500000px;}
.x12_c00050{left:648.000000px;}
.xc3_c00050{left:649.500000px;}
.x33_c00050{left:650.580000px;}
.x82_c00050{left:652.920000px;}
.xa9_c00050{left:654.420000px;}
.xdd_c00050{left:655.500000px;}
.x9f_c00050{left:657.420000px;}
.xc4_c00050{left:661.500000px;}
.xee_c00050{left:664.275000px;}
.x27_c00050{left:665.355000px;}
.xbf_c00050{left:666.420000px;}
.x72_c00050{left:667.920000px;}
.x34_c00050{left:669.420000px;}
.x5d_c00050{left:670.500000px;}
.x52_c00050{left:673.500000px;}
.x8e_c00050{left:676.500000px;}
.x13_c00050{left:681.000000px;}
.x10a_c00050{left:682.920000px;}
.x7d_c00050{left:684.000000px;}
.xad_c00050{left:688.920000px;}
.x83_c00050{left:690.000000px;}
.x6c_c00050{left:691.500000px;}
.x8f_c00050{left:693.000000px;}
.x35_c00050{left:694.920000px;}
.xe3_c00050{left:697.500000px;}
.xf3_c00050{left:698.580000px;}
.x14_c00050{left:700.920000px;}
.x5e_c00050{left:703.920000px;}
.x9a_c00050{left:709.920000px;}
.x2_c00050{left:712.500000px;}
.x73_c00050{left:716.580000px;}
.xfa_c00050{left:720.000000px;}
@media print{
.v1_c00050{vertical-align:-5.333333pt;}
.v0_c00050{vertical-align:0.000000pt;}
.ls0_c00050{letter-spacing:0.000000pt;}
.ws0_c00050{word-spacing:-5.689459pt;}
.ws2_c00050{word-spacing:-3.860504pt;}
.ws1_c00050{word-spacing:-3.186375pt;}
.ws3_c00050{word-spacing:0.000000pt;}
.fs1_c00050{font-size:16.640000pt;}
.fs0_c00050{font-size:18.133333pt;}
.fs4_c00050{font-size:22.666667pt;}
.fs2_c00050{font-size:25.706667pt;}
.fs6_c00050{font-size:28.746667pt;}
.fs3_c00050{font-size:31.733333pt;}
.fs5_c00050{font-size:34.773333pt;}
.fs7_c00050{font-size:37.813333pt;}
.y0_c00050{bottom:0.000000pt;}
.y104_c00050{bottom:223.773333pt;}
.y106_c00050{bottom:225.106667pt;}
.y103_c00050{bottom:225.693333pt;}
.y102_c00050{bottom:226.066667pt;}
.y105_c00050{bottom:227.026667pt;}
.y107_c00050{bottom:227.226667pt;}
.y101_c00050{bottom:228.360000pt;}
.y100_c00050{bottom:229.306667pt;}
.yfd_c00050{bottom:241.106667pt;}
.yfe_c00050{bottom:241.693333pt;}
.yfc_c00050{bottom:243.026667pt;}
.yfa_c00050{bottom:243.773333pt;}
.yfb_c00050{bottom:244.360000pt;}
.yff_c00050{bottom:245.693333pt;}
.yf9_c00050{bottom:247.400000pt;}
.yf4_c00050{bottom:259.773333pt;}
.yf6_c00050{bottom:260.560000pt;}
.yf7_c00050{bottom:261.106667pt;}
.yf5_c00050{bottom:261.306667pt;}
.yf3_c00050{bottom:261.693333pt;}
.yf1_c00050{bottom:262.266667pt;}
.yf2_c00050{bottom:262.640000pt;}
.yf0_c00050{bottom:263.026667pt;}
.yf8_c00050{bottom:263.973333pt;}
.yec_c00050{bottom:277.106667pt;}
.yee_c00050{bottom:278.440000pt;}
.yed_c00050{bottom:279.026667pt;}
.yef_c00050{bottom:279.973333pt;}
.yeb_c00050{bottom:280.360000pt;}
.yea_c00050{bottom:281.306667pt;}
.ye9_c00050{bottom:281.693333pt;}
.ye5_c00050{bottom:294.826667pt;}
.ye7_c00050{bottom:295.226667pt;}
.ye6_c00050{bottom:296.360000pt;}
.ye8_c00050{bottom:297.693333pt;}
.ye4_c00050{bottom:299.026667pt;}
.ye1_c00050{bottom:311.773333pt;}
.ye2_c00050{bottom:312.560000pt;}
.ydf_c00050{bottom:312.733333pt;}
.ye0_c00050{bottom:313.693333pt;}
.ye3_c00050{bottom:313.893333pt;}
.yde_c00050{bottom:315.400000pt;}
.ydd_c00050{bottom:318.640000pt;}
.yd8_c00050{bottom:329.106667pt;}
.ydc_c00050{bottom:329.893333pt;}
.ydb_c00050{bottom:330.640000pt;}
.yda_c00050{bottom:331.026667pt;}
.yd9_c00050{bottom:331.226667pt;}
.yd7_c00050{bottom:332.360000pt;}
.yd6_c00050{bottom:335.400000pt;}
.yd2_c00050{bottom:346.440000pt;}
.yd1_c00050{bottom:347.773333pt;}
.yd3_c00050{bottom:347.973333pt;}
.yd4_c00050{bottom:348.360000pt;}
.yd5_c00050{bottom:348.733333pt;}
.yd0_c00050{bottom:349.693333pt;}
.ycf_c00050{bottom:349.893333pt;}
.yce_c00050{bottom:350.066667pt;}
.ycd_c00050{bottom:363.773333pt;}
.yc9_c00050{bottom:365.106667pt;}
.ycc_c00050{bottom:365.693333pt;}
.yca_c00050{bottom:365.893333pt;}
.ycb_c00050{bottom:366.640000pt;}
.yc8_c00050{bottom:367.026667pt;}
.yc7_c00050{bottom:367.973333pt;}
.yc6_c00050{bottom:368.360000pt;}
.yc5_c00050{bottom:369.693333pt;}
.yc4_c00050{bottom:382.266667pt;}
.yc3_c00050{bottom:382.440000pt;}
.yc2_c00050{bottom:384.360000pt;}
.yc1_c00050{bottom:386.066667pt;}
.yc0_c00050{bottom:399.773333pt;}
.ybe_c00050{bottom:400.160000pt;}
.ybf_c00050{bottom:401.693333pt;}
.ybc_c00050{bottom:417.893333pt;}
.ybd_c00050{bottom:418.066667pt;}
.ybb_c00050{bottom:418.640000pt;}
.yb8_c00050{bottom:418.826667pt;}
.yba_c00050{bottom:419.026667pt;}
.yb9_c00050{bottom:419.226667pt;}
.yb7_c00050{bottom:433.493333pt;}
.yb6_c00050{bottom:433.693333pt;}
.yb4_c00050{bottom:434.440000pt;}
.yb3_c00050{bottom:435.773333pt;}
.yb5_c00050{bottom:436.360000pt;}
.yb2_c00050{bottom:437.106667pt;}
.yb1_c00050{bottom:439.026667pt;}
.yac_c00050{bottom:452.360000pt;}
.yb0_c00050{bottom:452.733333pt;}
.yae_c00050{bottom:453.693333pt;}
.yaf_c00050{bottom:453.893333pt;}
.yad_c00050{bottom:455.026667pt;}
.yab_c00050{bottom:457.306667pt;}
.ya6_c00050{bottom:468.360000pt;}
.ya9_c00050{bottom:469.106667pt;}
.ya7_c00050{bottom:470.440000pt;}
.yaa_c00050{bottom:471.026667pt;}
.ya8_c00050{bottom:471.226667pt;}
.ya5_c00050{bottom:472.360000pt;}
.ya4_c00050{bottom:473.693333pt;}
.ya3_c00050{bottom:486.440000pt;}
.y9f_c00050{bottom:486.640000pt;}
.ya2_c00050{bottom:487.400000pt;}
.ya1_c00050{bottom:488.360000pt;}
.y9b_c00050{bottom:488.733333pt;}
.ya0_c00050{bottom:489.306667pt;}
.y9e_c00050{bottom:489.693333pt;}
.y9d_c00050{bottom:490.066667pt;}
.y9c_c00050{bottom:491.026667pt;}
.y9a_c00050{bottom:503.026667pt;}
.y99_c00050{bottom:505.106667pt;}
.y98_c00050{bottom:506.640000pt;}
.y97_c00050{bottom:507.026667pt;}
.y95_c00050{bottom:507.773333pt;}
.y96_c00050{bottom:508.360000pt;}
.y94_c00050{bottom:522.440000pt;}
.y92_c00050{bottom:522.826667pt;}
.y93_c00050{bottom:524.360000pt;}
.y91_c00050{bottom:526.640000pt;}
.y8f_c00050{bottom:539.773333pt;}
.y90_c00050{bottom:539.973333pt;}
.y8d_c00050{bottom:541.693333pt;}
.y8e_c00050{bottom:541.893333pt;}
.y8c_c00050{bottom:543.400000pt;}
.y8b_c00050{bottom:544.360000pt;}
.y87_c00050{bottom:557.493333pt;}
.y86_c00050{bottom:558.440000pt;}
.y8a_c00050{bottom:559.026667pt;}
.y89_c00050{bottom:559.226667pt;}
.y85_c00050{bottom:559.400000pt;}
.y84_c00050{bottom:559.973333pt;}
.y88_c00050{bottom:560.360000pt;}
.y82_c00050{bottom:575.773333pt;}
.y83_c00050{bottom:576.560000pt;}
.y81_c00050{bottom:577.693333pt;}
.y80_c00050{bottom:578.066667pt;}
.y7f_c00050{bottom:593.106667pt;}
.y7b_c00050{bottom:593.693333pt;}
.y7d_c00050{bottom:594.640000pt;}
.y7e_c00050{bottom:595.026667pt;}
.y7c_c00050{bottom:595.973333pt;}
.y79_c00050{bottom:610.440000pt;}
.y78_c00050{bottom:611.226667pt;}
.y7a_c00050{bottom:611.973333pt;}
.y77_c00050{bottom:612.360000pt;}
.y76_c00050{bottom:613.306667pt;}
.y75_c00050{bottom:615.026667pt;}
.y74_c00050{bottom:627.773333pt;}
.y73_c00050{bottom:628.933333pt;}
.y72_c00050{bottom:629.693333pt;}
.y71_c00050{bottom:631.026667pt;}
.y70_c00050{bottom:631.600000pt;}
.y6d_c00050{bottom:645.106667pt;}
.y6c_c00050{bottom:647.026667pt;}
.y6e_c00050{bottom:647.226667pt;}
.y6f_c00050{bottom:647.973333pt;}
.y6b_c00050{bottom:648.360000pt;}
.y69_c00050{bottom:648.933333pt;}
.y6a_c00050{bottom:649.693333pt;}
.y68_c00050{bottom:661.693333pt;}
.y63_c00050{bottom:662.440000pt;}
.y66_c00050{bottom:662.640000pt;}
.y64_c00050{bottom:663.400000pt;}
.y67_c00050{bottom:664.360000pt;}
.y65_c00050{bottom:664.560000pt;}
.y61_c00050{bottom:664.733333pt;}
.y62_c00050{bottom:665.306667pt;}
.y60_c00050{bottom:667.026667pt;}
.y5e_c00050{bottom:679.026667pt;}
.y5c_c00050{bottom:679.773333pt;}
.y5a_c00050{bottom:680.360000pt;}
.y5d_c00050{bottom:681.106667pt;}
.y5f_c00050{bottom:681.693333pt;}
.y5b_c00050{bottom:681.893333pt;}
.y59_c00050{bottom:683.026667pt;}
.y57_c00050{bottom:696.360000pt;}
.y58_c00050{bottom:697.493333pt;}
.y55_c00050{bottom:697.693333pt;}
.y54_c00050{bottom:698.440000pt;}
.y56_c00050{bottom:699.973333pt;}
.y53_c00050{bottom:700.360000pt;}
.y4f_c00050{bottom:715.773333pt;}
.y52_c00050{bottom:716.560000pt;}
.y50_c00050{bottom:717.306667pt;}
.y51_c00050{bottom:717.693333pt;}
.y4e_c00050{bottom:718.066667pt;}
.y4d_c00050{bottom:735.026667pt;}
.y4c_c00050{bottom:735.226667pt;}
.y4b_c00050{bottom:736.360000pt;}
.y4a_c00050{bottom:750.066667pt;}
.y49_c00050{bottom:750.440000pt;}
.y47_c00050{bottom:751.600000pt;}
.y48_c00050{bottom:752.360000pt;}
.y46_c00050{bottom:753.693333pt;}
.y43_c00050{bottom:767.026667pt;}
.y44_c00050{bottom:767.400000pt;}
.y42_c00050{bottom:768.160000pt;}
.y41_c00050{bottom:769.306667pt;}
.y40_c00050{bottom:769.693333pt;}
.y45_c00050{bottom:770.640000pt;}
.y3f_c00050{bottom:771.026667pt;}
.y3e_c00050{bottom:772.360000pt;}
.y3d_c00050{bottom:785.106667pt;}
.y39_c00050{bottom:785.306667pt;}
.y3a_c00050{bottom:786.066667pt;}
.y3c_c00050{bottom:786.440000pt;}
.y38_c00050{bottom:787.026667pt;}
.y3b_c00050{bottom:787.226667pt;}
.y37_c00050{bottom:788.360000pt;}
.y36_c00050{bottom:789.693333pt;}
.y33_c00050{bottom:801.693333pt;}
.y32_c00050{bottom:803.773333pt;}
.y31_c00050{bottom:804.560000pt;}
.y34_c00050{bottom:804.733333pt;}
.y35_c00050{bottom:805.693333pt;}
.y30_c00050{bottom:806.266667pt;}
.y2c_c00050{bottom:819.026667pt;}
.y2b_c00050{bottom:819.973333pt;}
.y29_c00050{bottom:820.733333pt;}
.y2f_c00050{bottom:821.106667pt;}
.y2d_c00050{bottom:821.893333pt;}
.y2e_c00050{bottom:822.640000pt;}
.y2a_c00050{bottom:823.026667pt;}
.y27_c00050{bottom:836.360000pt;}
.y26_c00050{bottom:837.693333pt;}
.y24_c00050{bottom:838.440000pt;}
.y25_c00050{bottom:839.226667pt;}
.y28_c00050{bottom:839.400000pt;}
.y23_c00050{bottom:840.360000pt;}
.y22_c00050{bottom:841.693333pt;}
.y21_c00050{bottom:855.773333pt;}
.y20_c00050{bottom:856.560000pt;}
.y1f_c00050{bottom:857.306667pt;}
.y1e_c00050{bottom:857.693333pt;}
.y1b_c00050{bottom:873.106667pt;}
.y1d_c00050{bottom:873.893333pt;}
.y1c_c00050{bottom:875.026667pt;}
.y1a_c00050{bottom:875.400000pt;}
.y17_c00050{bottom:889.693333pt;}
.y18_c00050{bottom:890.440000pt;}
.y16_c00050{bottom:892.360000pt;}
.y19_c00050{bottom:892.560000pt;}
.y15_c00050{bottom:893.693333pt;}
.y10_c00050{bottom:907.773333pt;}
.y13_c00050{bottom:908.733333pt;}
.y11_c00050{bottom:909.693333pt;}
.y14_c00050{bottom:909.893333pt;}
.y12_c00050{bottom:910.640000pt;}
.yf_c00050{bottom:911.026667pt;}
.yd_c00050{bottom:925.106667pt;}
.ye_c00050{bottom:926.066667pt;}
.yb_c00050{bottom:927.026667pt;}
.yc_c00050{bottom:927.226667pt;}
.ya_c00050{bottom:927.973333pt;}
.y7_c00050{bottom:941.493333pt;}
.y5_c00050{bottom:942.440000pt;}
.y8_c00050{bottom:943.773333pt;}
.y4_c00050{bottom:944.360000pt;}
.y9_c00050{bottom:944.560000pt;}
.y6_c00050{bottom:945.306667pt;}
.y3_c00050{bottom:945.693333pt;}
.y1_c00050{bottom:978.266667pt;}
.y2_c00050{bottom:980.560000pt;}
.h2_c00050{height:20.466875pt;}
.h1_c00050{height:22.303646pt;}
.h5_c00050{height:27.879557pt;}
.h3_c00050{height:31.618698pt;}
.h7_c00050{height:35.357839pt;}
.h4_c00050{height:39.031380pt;}
.h6_c00050{height:42.770521pt;}
.h8_c00050{height:46.509661pt;}
.h0_c00050{height:1186.666667pt;}
.w0_c00050{width:782.666667pt;}
.x0_c00050{left:0.000000pt;}
.x15_c00050{left:134.293333pt;}
.x84_c00050{left:135.626667pt;}
.x5f_c00050{left:136.760000pt;}
.xef_c00050{left:137.706667pt;}
.x101_c00050{left:139.040000pt;}
.x3_c00050{left:147.626667pt;}
.x47_c00050{left:149.333333pt;}
.x94_c00050{left:150.293333pt;}
.xc9_c00050{left:151.626667pt;}
.xae_c00050{left:154.293333pt;}
.xb6_c00050{left:156.373333pt;}
.x85_c00050{left:157.333333pt;}
.x16_c00050{left:158.666667pt;}
.x7e_c00050{left:160.000000pt;}
.x36_c00050{left:162.293333pt;}
.xec_c00050{left:164.373333pt;}
.x60_c00050{left:165.333333pt;}
.x6d_c00050{left:166.666667pt;}
.x53_c00050{left:168.373333pt;}
.x90_c00050{left:169.333333pt;}
.xaf_c00050{left:172.000000pt;}
.xd5_c00050{left:173.333333pt;}
.x114_c00050{left:174.293333pt;}
.x40_c00050{left:176.000000pt;}
.xf6_c00050{left:178.293333pt;}
.xb7_c00050{left:181.706667pt;}
.x17_c00050{left:184.373333pt;}
.x91_c00050{left:185.706667pt;}
.x28_c00050{left:188.000000pt;}
.x86_c00050{left:189.333333pt;}
.x37_c00050{left:191.040000pt;}
.x74_c00050{left:192.373333pt;}
.xfb_c00050{left:194.666667pt;}
.x4_c00050{left:196.373333pt;}
.x61_c00050{left:197.706667pt;}
.x10b_c00050{left:199.626667pt;}
.x54_c00050{left:200.960000pt;}
.xb0_c00050{left:202.666667pt;}
.xc5_c00050{left:203.626667pt;}
.xa0_c00050{left:204.960000pt;}
.xd1_c00050{left:206.293333pt;}
.xe4_c00050{left:208.373333pt;}
.x102_c00050{left:209.333333pt;}
.x87_c00050{left:210.293333pt;}
.x10f_c00050{left:212.000000pt;}
.xed_c00050{left:212.960000pt;}
.x18_c00050{left:214.666667pt;}
.xa1_c00050{left:216.000000pt;}
.x92_c00050{left:218.666667pt;}
.xf0_c00050{left:219.626667pt;}
.xd2_c00050{left:223.040000pt;}
.x62_c00050{left:226.293333pt;}
.x75_c00050{left:229.333333pt;}
.x48_c00050{left:230.666667pt;}
.x38_c00050{left:231.626667pt;}
.x9b_c00050{left:233.333333pt;}
.x19_c00050{left:236.000000pt;}
.x110_c00050{left:237.333333pt;}
.x88_c00050{left:238.666667pt;}
.x10d_c00050{left:240.000000pt;}
.x93_c00050{left:241.333333pt;}
.x1a_c00050{left:244.000000pt;}
.xc6_c00050{left:245.333333pt;}
.x41_c00050{left:246.666667pt;}
.x29_c00050{left:248.000000pt;}
.x63_c00050{left:248.960000pt;}
.xb1_c00050{left:251.626667pt;}
.x115_c00050{left:253.333333pt;}
.xd6_c00050{left:255.040000pt;}
.x5_c00050{left:256.000000pt;}
.x7f_c00050{left:257.333333pt;}
.x1b_c00050{left:259.040000pt;}
.x2a_c00050{left:261.333333pt;}
.x42_c00050{left:264.000000pt;}
.x6_c00050{left:265.333333pt;}
.xe5_c00050{left:267.040000pt;}
.xbb_c00050{left:269.333333pt;}
.x64_c00050{left:271.626667pt;}
.xde_c00050{left:273.333333pt;}
.x43_c00050{left:276.000000pt;}
.x7_c00050{left:278.293333pt;}
.x6e_c00050{left:281.706667pt;}
.xb8_c00050{left:283.040000pt;}
.xd7_c00050{left:284.000000pt;}
.x89_c00050{left:285.333333pt;}
.x1c_c00050{left:286.666667pt;}
.x55_c00050{left:287.800000pt;}
.xf7_c00050{left:289.333333pt;}
.x10e_c00050{left:290.666667pt;}
.x9c_c00050{left:292.000000pt;}
.xf4_c00050{left:296.000000pt;}
.x105_c00050{left:297.333333pt;}
.xa2_c00050{left:298.293333pt;}
.x65_c00050{left:299.626667pt;}
.x1d_c00050{left:301.706667pt;}
.x8_c00050{left:304.000000pt;}
.x2b_c00050{left:305.333333pt;}
.x39_c00050{left:306.666667pt;}
.xc7_c00050{left:308.000000pt;}
.xca_c00050{left:308.960000pt;}
.xe6_c00050{left:310.293333pt;}
.xbc_c00050{left:312.373333pt;}
.xb2_c00050{left:313.333333pt;}
.x9_c00050{left:317.333333pt;}
.xd8_c00050{left:318.666667pt;}
.x49_c00050{left:320.960000pt;}
.x76_c00050{left:322.293333pt;}
.xe9_c00050{left:324.000000pt;}
.x1e_c00050{left:325.333333pt;}
.xcb_c00050{left:328.373333pt;}
.xa_c00050{left:329.333333pt;}
.x56_c00050{left:330.666667pt;}
.x3a_c00050{left:335.626667pt;}
.x4a_c00050{left:337.333333pt;}
.xa3_c00050{left:338.666667pt;}
.x66_c00050{left:340.000000pt;}
.xf1_c00050{left:341.333333pt;}
.xb3_c00050{left:342.666667pt;}
.x77_c00050{left:344.000000pt;}
.xb_c00050{left:345.706667pt;}
.x1_c00050{left:350.666667pt;}
.x2c_c00050{left:352.000000pt;}
.x57_c00050{left:352.960000pt;}
.x95_c00050{left:354.666667pt;}
.x4b_c00050{left:356.960000pt;}
.x44_c00050{left:358.293333pt;}
.xc_c00050{left:360.960000pt;}
.xd9_c00050{left:362.293333pt;}
.xf8_c00050{left:364.000000pt;}
.xf5_c00050{left:364.960000pt;}
.x6f_c00050{left:368.000000pt;}
.x67_c00050{left:370.293333pt;}
.x1f_c00050{left:372.373333pt;}
.xdf_c00050{left:373.333333pt;}
.x8a_c00050{left:375.040000pt;}
.x2d_c00050{left:376.000000pt;}
.x78_c00050{left:377.333333pt;}
.xd3_c00050{left:378.666667pt;}
.xd_c00050{left:380.373333pt;}
.xfc_c00050{left:382.666667pt;}
.xf2_c00050{left:385.706667pt;}
.xa4_c00050{left:386.666667pt;}
.xda_c00050{left:388.373333pt;}
.xe0_c00050{left:391.040000pt;}
.x4c_c00050{left:393.333333pt;}
.xb9_c00050{left:394.666667pt;}
.x106_c00050{left:396.373333pt;}
.x79_c00050{left:397.333333pt;}
.x3b_c00050{left:398.666667pt;}
.x8b_c00050{left:400.000000pt;}
.x96_c00050{left:401.333333pt;}
.x20_c00050{left:402.666667pt;}
.xe7_c00050{left:404.000000pt;}
.x108_c00050{left:405.333333pt;}
.xb4_c00050{left:406.293333pt;}
.x68_c00050{left:409.333333pt;}
.xc0_c00050{left:411.800000pt;}
.xbe_c00050{left:412.960000pt;}
.x45_c00050{left:415.040000pt;}
.xdb_c00050{left:419.040000pt;}
.x103_c00050{left:421.706667pt;}
.xfd_c00050{left:422.666667pt;}
.xea_c00050{left:424.000000pt;}
.x2e_c00050{left:425.706667pt;}
.x4d_c00050{left:427.040000pt;}
.xc8_c00050{left:428.000000pt;}
.xd4_c00050{left:429.333333pt;}
.xf9_c00050{left:431.040000pt;}
.x111_c00050{left:432.373333pt;}
.x8c_c00050{left:433.706667pt;}
.xbd_c00050{left:434.666667pt;}
.x70_c00050{left:436.000000pt;}
.x58_c00050{left:437.333333pt;}
.x46_c00050{left:438.666667pt;}
.xe_c00050{left:440.000000pt;}
.x21_c00050{left:441.333333pt;}
.x69_c00050{left:442.666667pt;}
.xcc_c00050{left:444.373333pt;}
.xa5_c00050{left:445.333333pt;}
.x7a_c00050{left:446.666667pt;}
.x2f_c00050{left:448.000000pt;}
.xaa_c00050{left:451.800000pt;}
.x22_c00050{left:453.333333pt;}
.xfe_c00050{left:456.373333pt;}
.xb5_c00050{left:457.333333pt;}
.x4e_c00050{left:458.293333pt;}
.x10c_c00050{left:461.133333pt;}
.x97_c00050{left:465.333333pt;}
.x23_c00050{left:466.666667pt;}
.x107_c00050{left:469.333333pt;}
.x59_c00050{left:470.293333pt;}
.xcd_c00050{left:474.666667pt;}
.xa6_c00050{left:477.333333pt;}
.x3c_c00050{left:480.000000pt;}
.xe1_c00050{left:481.706667pt;}
.x104_c00050{left:484.000000pt;}
.x100_c00050{left:484.960000pt;}
.x80_c00050{left:486.293333pt;}
.x98_c00050{left:487.626667pt;}
.x9d_c00050{left:488.960000pt;}
.x112_c00050{left:490.666667pt;}
.xce_c00050{left:492.000000pt;}
.x30_c00050{left:492.960000pt;}
.x3d_c00050{left:494.666667pt;}
.x5a_c00050{left:496.000000pt;}
.xe8_c00050{left:499.040000pt;}
.x4f_c00050{left:500.960000pt;}
.xba_c00050{left:502.293333pt;}
.x113_c00050{left:506.666667pt;}
.xf_c00050{left:509.706667pt;}
.xff_c00050{left:512.000000pt;}
.x7b_c00050{left:514.293333pt;}
.xcf_c00050{left:516.960000pt;}
.xab_c00050{left:520.000000pt;}
.x31_c00050{left:521.706667pt;}
.xdc_c00050{left:522.666667pt;}
.xe2_c00050{left:524.000000pt;}
.xc1_c00050{left:525.706667pt;}
.x24_c00050{left:526.666667pt;}
.x50_c00050{left:528.000000pt;}
.x71_c00050{left:529.333333pt;}
.x9e_c00050{left:530.666667pt;}
.x3e_c00050{left:531.626667pt;}
.x10_c00050{left:533.706667pt;}
.x5b_c00050{left:536.373333pt;}
.x81_c00050{left:537.706667pt;}
.xa7_c00050{left:538.666667pt;}
.x109_c00050{left:540.373333pt;}
.xac_c00050{left:544.000000pt;}
.x25_c00050{left:546.666667pt;}
.x6a_c00050{left:549.706667pt;}
.x8d_c00050{left:552.000000pt;}
.x99_c00050{left:553.333333pt;}
.x32_c00050{left:554.666667pt;}
.x26_c00050{left:556.000000pt;}
.x7c_c00050{left:557.333333pt;}
.xeb_c00050{left:558.293333pt;}
.x3f_c00050{left:560.000000pt;}
.x11_c00050{left:562.666667pt;}
.xc2_c00050{left:564.000000pt;}
.x5c_c00050{left:565.706667pt;}
.xa8_c00050{left:570.293333pt;}
.x51_c00050{left:571.626667pt;}
.x6b_c00050{left:572.960000pt;}
.xd0_c00050{left:574.666667pt;}
.x12_c00050{left:576.000000pt;}
.xc3_c00050{left:577.333333pt;}
.x33_c00050{left:578.293333pt;}
.x82_c00050{left:580.373333pt;}
.xa9_c00050{left:581.706667pt;}
.xdd_c00050{left:582.666667pt;}
.x9f_c00050{left:584.373333pt;}
.xc4_c00050{left:588.000000pt;}
.xee_c00050{left:590.466667pt;}
.x27_c00050{left:591.426667pt;}
.xbf_c00050{left:592.373333pt;}
.x72_c00050{left:593.706667pt;}
.x34_c00050{left:595.040000pt;}
.x5d_c00050{left:596.000000pt;}
.x52_c00050{left:598.666667pt;}
.x8e_c00050{left:601.333333pt;}
.x13_c00050{left:605.333333pt;}
.x10a_c00050{left:607.040000pt;}
.x7d_c00050{left:608.000000pt;}
.xad_c00050{left:612.373333pt;}
.x83_c00050{left:613.333333pt;}
.x6c_c00050{left:614.666667pt;}
.x8f_c00050{left:616.000000pt;}
.x35_c00050{left:617.706667pt;}
.xe3_c00050{left:620.000000pt;}
.xf3_c00050{left:620.960000pt;}
.x14_c00050{left:623.040000pt;}
.x5e_c00050{left:625.706667pt;}
.x9a_c00050{left:631.040000pt;}
.x2_c00050{left:633.333333pt;}
.x73_c00050{left:636.960000pt;}
.xfa_c00050{left:640.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_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_c16fd6de22f5ef8be001cf2e.woff2')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:1.688965;font-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_c00051{transform:matrix(0.321577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321577,0.000000,0.000000,0.250000,0,0);}
.mb3_c00051{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.ma2_c00051{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.me9_c00051{transform:matrix(0.334274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334274,0.000000,0.000000,0.250000,0,0);}
.m32_c00051{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.m46_c00051{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);}
.mdd_c00051{transform:matrix(0.351994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351994,0.000000,0.000000,0.250000,0,0);}
.mde_c00051{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m98_c00051{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mb5_c00051{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m2c_c00051{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mdc_c00051{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m71_c00051{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m23_c00051{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.md9_c00051{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mb0_c00051{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.ma5_c00051{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m5a_c00051{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mb4_c00051{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.md6_c00051{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m58_c00051{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m3b_c00051{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m14_c00051{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mbd_c00051{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m8a_c00051{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m31_c00051{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m59_c00051{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m93_c00051{transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);}
.m81_c00051{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.ma4_c00051{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mc1_c00051{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.md1_c00051{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.mc5_c00051{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.mb6_c00051{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.md2_c00051{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.m20_c00051{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mcd_c00051{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.mb2_c00051{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_c00051{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m89_c00051{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m9e_c00051{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m70_c00051{transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);}
.m94_c00051{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m97_c00051{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.meb_c00051{transform:matrix(0.406058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406058,0.000000,0.000000,0.250000,0,0);}
.mc3_c00051{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m8b_c00051{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m87_c00051{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m6f_c00051{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m57_c00051{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m5b_c00051{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m67_c00051{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m51_c00051{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.mbb_c00051{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.mc6_c00051{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m38_c00051{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m77_c00051{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m6d_c00051{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.me7_c00051{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.mbe_c00051{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m78_c00051{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.mba_c00051{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m92_c00051{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mcb_c00051{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m17_c00051{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m75_c00051{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m9c_c00051{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mc2_c00051{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mca_c00051{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m28_c00051{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m4e_c00051{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m11_c00051{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.med_c00051{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m42_c00051{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.mb9_c00051{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m4b_c00051{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.md3_c00051{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m73_c00051{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m91_c00051{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m69_c00051{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m61_c00051{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.mcf_c00051{transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);}
.m44_c00051{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m52_c00051{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m5f_c00051{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m27_c00051{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m2b_c00051{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.maa_c00051{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.md4_c00051{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m65_c00051{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m49_c00051{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m83_c00051{transform:matrix(0.451681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451681,0.000000,0.000000,0.250000,0,0);}
.m6c_c00051{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m6b_c00051{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.ma3_c00051{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m1a_c00051{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m48_c00051{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m2f_c00051{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.ma8_c00051{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m76_c00051{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.mac_c00051{transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);}
.m6e_c00051{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.me0_c00051{transform:matrix(0.473109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473109,0.000000,0.000000,0.250000,0,0);}
.m7_c00051{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m40_c00051{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mee_c00051{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.md0_c00051{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m95_c00051{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m3d_c00051{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m26_c00051{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.me3_c00051{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.mad_c00051{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m53_c00051{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m9d_c00051{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mbf_c00051{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m9b_c00051{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m50_c00051{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m37_c00051{transform:matrix(0.492115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492115,0.000000,0.000000,0.250000,0,0);}
.me5_c00051{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m18_c00051{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m88_c00051{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.me2_c00051{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m66_c00051{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m96_c00051{transform:matrix(0.497407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497407,0.000000,0.000000,0.250000,0,0);}
.m84_c00051{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m6_c00051{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_c00051{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m5c_c00051{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m56_c00051{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m68_c00051{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m12_c00051{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m43_c00051{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m4c_c00051{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.ma0_c00051{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m1f_c00051{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.mc7_c00051{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m3a_c00051{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m8e_c00051{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.me1_c00051{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m24_c00051{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m10_c00051{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m80_c00051{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m2e_c00051{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.me4_c00051{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.m45_c00051{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m29_c00051{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mce_c00051{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m6a_c00051{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m4a_c00051{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.mbc_c00051{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.mb8_c00051{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m79_c00051{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m13_c00051{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m8f_c00051{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.md8_c00051{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.mcc_c00051{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m4_c00051{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mea_c00051{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mb7_c00051{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m7e_c00051{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.md7_c00051{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m2a_c00051{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mf0_c00051{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m3e_c00051{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m3_c00051{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m4d_c00051{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m30_c00051{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.mb_c00051{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m5e_c00051{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m15_c00051{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m99_c00051{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mdf_c00051{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mb1_c00051{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m64_c00051{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m33_c00051{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m7d_c00051{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m3c_c00051{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m2_c00051{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m3f_c00051{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m1e_c00051{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m25_c00051{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m1c_c00051{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m39_c00051{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m19_c00051{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m9_c00051{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m22_c00051{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.me6_c00051{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mef_c00051{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mc0_c00051{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m35_c00051{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.maf_c00051{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.ma6_c00051{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m9f_c00051{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.mab_c00051{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m36_c00051{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m7f_c00051{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m21_c00051{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mc4_c00051{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m1b_c00051{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m5_c00051{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m7c_c00051{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m72_c00051{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m8c_c00051{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.mda_c00051{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m4f_c00051{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mae_c00051{transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);}
.m63_c00051{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m5d_c00051{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mf_c00051{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.mec_c00051{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m90_c00051{transform:matrix(0.602697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602697,0.000000,0.000000,0.250000,0,0);}
.m34_c00051{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m47_c00051{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.me_c00051{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.md5_c00051{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.mc9_c00051{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m8_c00051{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);}
.m82_c00051{transform:matrix(0.656120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656120,0.000000,0.000000,0.250000,0,0);}
.ma9_c00051{transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);}
.m1_c00051{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.ma_c00051{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m74_c00051{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.m7a_c00051{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mc_c00051{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m0_c00051{transform:matrix(0.711538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.711538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.711538,0.000000,0.000000,0.250000,0,0);}
.m85_c00051{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m60_c00051{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.md_c00051{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m2d_c00051{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mc8_c00051{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.ma1_c00051{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.ma7_c00051{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mdb_c00051{transform:matrix(0.772436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772436,0.000000,0.000000,0.250000,0,0);}
.me8_c00051{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m86_c00051{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m55_c00051{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m8d_c00051{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m62_c00051{transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);}
.m7b_c00051{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m54_c00051{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m9a_c00051{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,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;}
}
.ws2_c00051{word-spacing:-7.168560px;}
.ws0_c00051{word-spacing:-6.111596px;}
.ws1_c00051{word-spacing:-3.233492px;}
.ws3_c00051{word-spacing:0.000000px;}
._0_c00051{width:11.198011px;}
.fc0_c00051{color:transparent;}
.fs0_c00051{font-size:18.720000px;}
.fs5_c00051{font-size:20.400000px;}
.fs3_c00051{font-size:25.500000px;}
.fs1_c00051{font-size:28.920000px;}
.fs2_c00051{font-size:32.340000px;}
.fs4_c00051{font-size:35.700000px;}
.fs6_c00051{font-size:39.120000px;}
.fs7_c00051{font-size:42.540000px;}
.y0_c00051{bottom:0.000000px;}
.yde_c00051{bottom:252.405000px;}
.ydb_c00051{bottom:253.245000px;}
.ydc_c00051{bottom:254.745000px;}
.yda_c00051{bottom:255.405000px;}
.ydd_c00051{bottom:256.905000px;}
.yd7_c00051{bottom:273.180000px;}
.yd9_c00051{bottom:274.245000px;}
.yd6_c00051{bottom:275.130000px;}
.yd5_c00051{bottom:275.970000px;}
.yd8_c00051{bottom:276.405000px;}
.yd4_c00051{bottom:292.680000px;}
.yce_c00051{bottom:293.745000px;}
.yd1_c00051{bottom:294.825000px;}
.yd3_c00051{bottom:295.245000px;}
.ycf_c00051{bottom:295.470000px;}
.yd0_c00051{bottom:295.905000px;}
.yd2_c00051{bottom:296.130000px;}
.ycd_c00051{bottom:312.405000px;}
.yca_c00051{bottom:314.325000px;}
.yc9_c00051{bottom:315.405000px;}
.ycc_c00051{bottom:315.630000px;}
.ycb_c00051{bottom:316.470000px;}
.yc7_c00051{bottom:334.245000px;}
.yc5_c00051{bottom:334.905000px;}
.yc6_c00051{bottom:335.130000px;}
.yc8_c00051{bottom:336.405000px;}
.ybe_c00051{bottom:351.405000px;}
.yc4_c00051{bottom:352.680000px;}
.yc0_c00051{bottom:353.745000px;}
.ybd_c00051{bottom:354.405000px;}
.ybf_c00051{bottom:354.630000px;}
.yc2_c00051{bottom:354.825000px;}
.yc1_c00051{bottom:355.905000px;}
.yc3_c00051{bottom:356.970000px;}
.yba_c00051{bottom:373.245000px;}
.yb9_c00051{bottom:373.905000px;}
.ybb_c00051{bottom:374.970000px;}
.ybc_c00051{bottom:375.405000px;}
.yb8_c00051{bottom:391.245000px;}
.yb5_c00051{bottom:392.745000px;}
.yb7_c00051{bottom:393.630000px;}
.yb6_c00051{bottom:393.825000px;}
.yb4_c00051{bottom:394.905000px;}
.yb1_c00051{bottom:412.245000px;}
.yb0_c00051{bottom:413.325000px;}
.yb2_c00051{bottom:413.745000px;}
.yb3_c00051{bottom:414.405000px;}
.ya9_c00051{bottom:431.325000px;}
.yaa_c00051{bottom:431.745000px;}
.yaf_c00051{bottom:433.245000px;}
.yab_c00051{bottom:433.905000px;}
.yac_c00051{bottom:434.130000px;}
.yae_c00051{bottom:434.970000px;}
.yad_c00051{bottom:435.405000px;}
.ya8_c00051{bottom:451.245000px;}
.ya6_c00051{bottom:452.745000px;}
.ya4_c00051{bottom:453.405000px;}
.ya5_c00051{bottom:453.630000px;}
.ya7_c00051{bottom:454.905000px;}
.ya3_c00051{bottom:470.745000px;}
.ya2_c00051{bottom:472.245000px;}
.y9f_c00051{bottom:472.905000px;}
.ya0_c00051{bottom:473.130000px;}
.ya1_c00051{bottom:474.405000px;}
.y9d_c00051{bottom:490.245000px;}
.y9b_c00051{bottom:490.470000px;}
.y9c_c00051{bottom:490.905000px;}
.y9a_c00051{bottom:491.745000px;}
.y9e_c00051{bottom:492.405000px;}
.y99_c00051{bottom:492.630000px;}
.y98_c00051{bottom:493.905000px;}
.y95_c00051{bottom:511.245000px;}
.y97_c00051{bottom:512.130000px;}
.y96_c00051{bottom:512.970000px;}
.y94_c00051{bottom:513.405000px;}
.y90_c00051{bottom:529.245000px;}
.y93_c00051{bottom:530.325000px;}
.y91_c00051{bottom:530.745000px;}
.y8f_c00051{bottom:531.825000px;}
.y92_c00051{bottom:532.470000px;}
.y8e_c00051{bottom:532.905000px;}
.y8c_c00051{bottom:550.245000px;}
.y8d_c00051{bottom:551.745000px;}
.y8a_c00051{bottom:552.405000px;}
.y8b_c00051{bottom:552.630000px;}
.y86_c00051{bottom:568.905000px;}
.y87_c00051{bottom:569.745000px;}
.y85_c00051{bottom:569.970000px;}
.y88_c00051{bottom:570.825000px;}
.y84_c00051{bottom:571.905000px;}
.y89_c00051{bottom:572.130000px;}
.y7d_c00051{bottom:588.405000px;}
.y80_c00051{bottom:589.245000px;}
.y83_c00051{bottom:590.325000px;}
.y7f_c00051{bottom:590.550000px;}
.y82_c00051{bottom:590.745000px;}
.y7e_c00051{bottom:591.405000px;}
.y7c_c00051{bottom:592.470000px;}
.y81_c00051{bottom:592.905000px;}
.y7b_c00051{bottom:607.905000px;}
.y75_c00051{bottom:608.745000px;}
.y7a_c00051{bottom:608.970000px;}
.y76_c00051{bottom:610.245000px;}
.y74_c00051{bottom:610.905000px;}
.y79_c00051{bottom:611.130000px;}
.y78_c00051{bottom:611.970000px;}
.y77_c00051{bottom:612.405000px;}
.y72_c00051{bottom:629.745000px;}
.y71_c00051{bottom:630.630000px;}
.y73_c00051{bottom:630.825000px;}
.y70_c00051{bottom:631.905000px;}
.y6c_c00051{bottom:646.905000px;}
.y6f_c00051{bottom:647.745000px;}
.y6d_c00051{bottom:647.970000px;}
.y6b_c00051{bottom:649.245000px;}
.y6a_c00051{bottom:650.130000px;}
.y6e_c00051{bottom:650.970000px;}
.y69_c00051{bottom:651.405000px;}
.y64_c00051{bottom:666.405000px;}
.y68_c00051{bottom:668.745000px;}
.y67_c00051{bottom:669.630000px;}
.y65_c00051{bottom:670.905000px;}
.y66_c00051{bottom:671.970000px;}
.y61_c00051{bottom:688.245000px;}
.y62_c00051{bottom:689.130000px;}
.y63_c00051{bottom:689.970000px;}
.y60_c00051{bottom:690.405000px;}
.y5e_c00051{bottom:707.745000px;}
.y5f_c00051{bottom:709.905000px;}
.y56_c00051{bottom:725.745000px;}
.y59_c00051{bottom:727.245000px;}
.y5b_c00051{bottom:727.470000px;}
.y58_c00051{bottom:728.130000px;}
.y5c_c00051{bottom:728.745000px;}
.y57_c00051{bottom:729.405000px;}
.y5d_c00051{bottom:729.825000px;}
.y5a_c00051{bottom:730.905000px;}
.y53_c00051{bottom:745.905000px;}
.y50_c00051{bottom:746.745000px;}
.y55_c00051{bottom:746.970000px;}
.y52_c00051{bottom:748.245000px;}
.y4f_c00051{bottom:748.905000px;}
.y51_c00051{bottom:749.130000px;}
.y54_c00051{bottom:750.405000px;}
.y4a_c00051{bottom:765.405000px;}
.y4b_c00051{bottom:766.470000px;}
.y4c_c00051{bottom:767.745000px;}
.y4e_c00051{bottom:768.630000px;}
.y4d_c00051{bottom:768.825000px;}
.y49_c00051{bottom:769.905000px;}
.y47_c00051{bottom:787.245000px;}
.y46_c00051{bottom:787.905000px;}
.y48_c00051{bottom:788.130000px;}
.y45_c00051{bottom:789.405000px;}
.y42_c00051{bottom:806.745000px;}
.y44_c00051{bottom:807.630000px;}
.y43_c00051{bottom:808.905000px;}
.y3e_c00051{bottom:824.970000px;}
.y41_c00051{bottom:825.405000px;}
.y3d_c00051{bottom:826.245000px;}
.y3f_c00051{bottom:827.130000px;}
.y3c_c00051{bottom:828.405000px;}
.y40_c00051{bottom:828.630000px;}
.y3a_c00051{bottom:845.745000px;}
.y39_c00051{bottom:846.825000px;}
.y38_c00051{bottom:847.905000px;}
.y3b_c00051{bottom:848.970000px;}
.y37_c00051{bottom:865.245000px;}
.y35_c00051{bottom:866.325000px;}
.y36_c00051{bottom:866.745000px;}
.y34_c00051{bottom:867.405000px;}
.y2f_c00051{bottom:884.745000px;}
.y31_c00051{bottom:884.970000px;}
.y32_c00051{bottom:885.405000px;}
.y33_c00051{bottom:886.245000px;}
.y2e_c00051{bottom:886.905000px;}
.y30_c00051{bottom:887.130000px;}
.y2c_c00051{bottom:903.405000px;}
.y2b_c00051{bottom:904.470000px;}
.y2d_c00051{bottom:904.905000px;}
.y29_c00051{bottom:905.325000px;}
.y2a_c00051{bottom:905.745000px;}
.y27_c00051{bottom:906.630000px;}
.y28_c00051{bottom:907.905000px;}
.y25_c00051{bottom:923.970000px;}
.y26_c00051{bottom:924.405000px;}
.y21_c00051{bottom:925.245000px;}
.y23_c00051{bottom:926.970000px;}
.y22_c00051{bottom:927.405000px;}
.y24_c00051{bottom:928.470000px;}
.y20_c00051{bottom:943.905000px;}
.y1d_c00051{bottom:944.745000px;}
.y1f_c00051{bottom:944.970000px;}
.y1e_c00051{bottom:945.825000px;}
.y1c_c00051{bottom:946.470000px;}
.y1b_c00051{bottom:946.905000px;}
.y17_c00051{bottom:962.970000px;}
.y19_c00051{bottom:964.245000px;}
.y18_c00051{bottom:965.325000px;}
.y1a_c00051{bottom:966.405000px;}
.y13_c00051{bottom:983.325000px;}
.y14_c00051{bottom:983.745000px;}
.y15_c00051{bottom:984.630000px;}
.y16_c00051{bottom:985.470000px;}
.y12_c00051{bottom:985.905000px;}
.y11_c00051{bottom:1003.245000px;}
.y10_c00051{bottom:1005.405000px;}
.yf_c00051{bottom:1021.245000px;}
.ye_c00051{bottom:1022.745000px;}
.yd_c00051{bottom:1023.825000px;}
.yc_c00051{bottom:1024.905000px;}
.y9_c00051{bottom:1042.245000px;}
.ya_c00051{bottom:1044.405000px;}
.yb_c00051{bottom:1045.470000px;}
.y8_c00051{bottom:1060.905000px;}
.y3_c00051{bottom:1062.630000px;}
.y4_c00051{bottom:1062.825000px;}
.y7_c00051{bottom:1063.470000px;}
.y2_c00051{bottom:1063.905000px;}
.y6_c00051{bottom:1064.130000px;}
.y5_c00051{bottom:1064.970000px;}
.y1_c00051{bottom:1103.130000px;}
.h1_c00051{height:23.025234px;}
.h6_c00051{height:25.091602px;}
.h4_c00051{height:31.364502px;}
.h2_c00051{height:35.571035px;}
.h3_c00051{height:39.777568px;}
.h5_c00051{height:43.910303px;}
.h7_c00051{height:48.116836px;}
.h8_c00051{height:52.323369px;}
.h0_c00051{height:1335.000000px;}
.w0_c00051{width:880.500000px;}
.x0_c00051{left:0.000000px;}
.x108_c00051{left:151.920000px;}
.x47_c00051{left:153.000000px;}
.x2_c00051{left:154.500000px;}
.xca_c00051{left:166.080000px;}
.x103_c00051{left:168.000000px;}
.x36_c00051{left:169.500000px;}
.x90_c00051{left:176.580000px;}
.x10e_c00051{left:178.500000px;}
.x60_c00051{left:180.000000px;}
.x1f_c00051{left:183.000000px;}
.xd5_c00051{left:184.920000px;}
.x74_c00051{left:186.420000px;}
.x3_c00051{left:187.500000px;}
.x54_c00051{left:189.000000px;}
.xb6_c00051{left:190.500000px;}
.xe5_c00051{left:192.000000px;}
.x6e_c00051{left:193.080000px;}
.x6a_c00051{left:195.000000px;}
.xc0_c00051{left:198.000000px;}
.xd6_c00051{left:200.580000px;}
.x37_c00051{left:204.000000px;}
.xcb_c00051{left:205.080000px;}
.x40_c00051{left:207.420000px;}
.x4_c00051{left:208.500000px;}
.xb7_c00051{left:210.000000px;}
.x48_c00051{left:211.500000px;}
.xe6_c00051{left:214.500000px;}
.xc2_c00051{left:218.580000px;}
.x7d_c00051{left:220.080000px;}
.x55_c00051{left:222.000000px;}
.x2c_c00051{left:223.500000px;}
.x61_c00051{left:225.000000px;}
.xfe_c00051{left:226.080000px;}
.x5_c00051{left:228.420000px;}
.x97_c00051{left:229.920000px;}
.x14_c00051{left:231.420000px;}
.x6b_c00051{left:234.000000px;}
.xe7_c00051{left:235.500000px;}
.xcc_c00051{left:236.580000px;}
.x41_c00051{left:242.580000px;}
.x91_c00051{left:244.500000px;}
.x20_c00051{left:246.420000px;}
.x10a_c00051{left:247.920000px;}
.x75_c00051{left:249.000000px;}
.x111_c00051{left:250.080000px;}
.xb8_c00051{left:252.420000px;}
.xcd_c00051{left:253.920000px;}
.x6_c00051{left:255.000000px;}
.xdd_c00051{left:256.500000px;}
.xaf_c00051{left:259.500000px;}
.xa1_c00051{left:261.000000px;}
.x38_c00051{left:262.500000px;}
.xd7_c00051{left:265.500000px;}
.x7e_c00051{left:267.000000px;}
.xce_c00051{left:268.080000px;}
.x6f_c00051{left:271.500000px;}
.xb0_c00051{left:273.000000px;}
.x86_c00051{left:274.500000px;}
.x92_c00051{left:277.500000px;}
.xb9_c00051{left:278.580000px;}
.xf1_c00051{left:280.500000px;}
.x98_c00051{left:282.000000px;}
.xe4_c00051{left:283.500000px;}
.x76_c00051{left:286.500000px;}
.x56_c00051{left:289.500000px;}
.xc3_c00051{left:291.420000px;}
.x7f_c00051{left:292.920000px;}
.xba_c00051{left:294.000000px;}
.x101_c00051{left:295.500000px;}
.xe8_c00051{left:296.580000px;}
.x10f_c00051{left:298.500000px;}
.x2d_c00051{left:299.580000px;}
.x49_c00051{left:302.580000px;}
.x99_c00051{left:306.000000px;}
.x6c_c00051{left:307.500000px;}
.x15_c00051{left:308.580000px;}
.x77_c00051{left:310.080000px;}
.xdb_c00051{left:311.580000px;}
.x7_c00051{left:313.080000px;}
.x102_c00051{left:315.000000px;}
.x39_c00051{left:316.500000px;}
.x2e_c00051{left:318.000000px;}
.xf2_c00051{left:319.500000px;}
.x62_c00051{left:321.420000px;}
.x21_c00051{left:324.420000px;}
.xcf_c00051{left:325.500000px;}
.x9a_c00051{left:326.580000px;}
.x80_c00051{left:328.920000px;}
.x93_c00051{left:330.000000px;}
.xd8_c00051{left:331.080000px;}
.x8_c00051{left:333.420000px;}
.xea_c00051{left:334.920000px;}
.x87_c00051{left:336.000000px;}
.x57_c00051{left:337.500000px;}
.xbb_c00051{left:338.580000px;}
.x4a_c00051{left:340.920000px;}
.x3a_c00051{left:349.920000px;}
.x22_c00051{left:351.420000px;}
.xb1_c00051{left:352.500000px;}
.x4b_c00051{left:354.000000px;}
.xde_c00051{left:355.500000px;}
.xbc_c00051{left:357.000000px;}
.x9_c00051{left:361.500000px;}
.xd0_c00051{left:363.000000px;}
.x70_c00051{left:364.920000px;}
.x42_c00051{left:367.080000px;}
.x8c_c00051{left:369.000000px;}
.x16_c00051{left:370.500000px;}
.xa7_c00051{left:372.420000px;}
.xb2_c00051{left:373.920000px;}
.xfa_c00051{left:375.420000px;}
.xa2_c00051{left:376.500000px;}
.xdf_c00051{left:378.000000px;}
.x23_c00051{left:379.920000px;}
.x78_c00051{left:381.000000px;}
.xd1_c00051{left:382.080000px;}
.xf3_c00051{left:383.580000px;}
.x109_c00051{left:385.500000px;}
.x2f_c00051{left:387.000000px;}
.x4c_c00051{left:391.080000px;}
.x81_c00051{left:393.000000px;}
.x17_c00051{left:397.500000px;}
.x1_c00051{left:399.000000px;}
.xb3_c00051{left:402.420000px;}
.xf7_c00051{left:405.000000px;}
.xe0_c00051{left:406.500000px;}
.xa8_c00051{left:408.000000px;}
.xbd_c00051{left:411.000000px;}
.xd2_c00051{left:412.080000px;}
.x8d_c00051{left:413.580000px;}
.x24_c00051{left:417.000000px;}
.x9b_c00051{left:418.500000px;}
.x4d_c00051{left:420.000000px;}
.x3b_c00051{left:421.500000px;}
.xa9_c00051{left:424.500000px;}
.xa_c00051{left:426.000000px;}
.xeb_c00051{left:429.000000px;}
.x58_c00051{left:430.080000px;}
.xfb_c00051{left:433.920000px;}
.x94_c00051{left:435.420000px;}
.x4e_c00051{left:437.580000px;}
.x30_c00051{left:441.000000px;}
.xc1_c00051{left:442.500000px;}
.x63_c00051{left:445.080000px;}
.xb_c00051{left:447.420000px;}
.xec_c00051{left:451.920000px;}
.xa3_c00051{left:453.000000px;}
.x88_c00051{left:456.000000px;}
.x31_c00051{left:457.920000px;}
.xd3_c00051{left:459.000000px;}
.xff_c00051{left:462.420000px;}
.xdc_c00051{left:463.500000px;}
.xe1_c00051{left:465.000000px;}
.x25_c00051{left:466.500000px;}
.xf8_c00051{left:467.580000px;}
.x79_c00051{left:469.080000px;}
.x18_c00051{left:471.420000px;}
.xc_c00051{left:475.500000px;}
.xc4_c00051{left:477.000000px;}
.x26_c00051{left:480.420000px;}
.x10b_c00051{left:482.580000px;}
.x32_c00051{left:484.500000px;}
.x104_c00051{left:487.080000px;}
.xf4_c00051{left:490.080000px;}
.x43_c00051{left:492.000000px;}
.x9c_c00051{left:496.920000px;}
.x64_c00051{left:499.080000px;}
.x59_c00051{left:504.420000px;}
.xc5_c00051{left:505.500000px;}
.x19_c00051{left:508.920000px;}
.xaa_c00051{left:511.500000px;}
.xbe_c00051{left:513.420000px;}
.x95_c00051{left:514.500000px;}
.x6d_c00051{left:516.000000px;}
.x3c_c00051{left:517.080000px;}
.xe2_c00051{left:519.000000px;}
.x33_c00051{left:520.920000px;}
.xa4_c00051{left:522.000000px;}
.xb4_c00051{left:525.000000px;}
.x65_c00051{left:526.500000px;}
.x27_c00051{left:529.080000px;}
.xfc_c00051{left:531.000000px;}
.x5a_c00051{left:534.420000px;}
.x1a_c00051{left:535.500000px;}
.xd_c00051{left:538.080000px;}
.x44_c00051{left:539.580000px;}
.x89_c00051{left:541.500000px;}
.x9d_c00051{left:544.080000px;}
.x105_c00051{left:550.080000px;}
.x5b_c00051{left:551.580000px;}
.xf9_c00051{left:553.500000px;}
.x7a_c00051{left:555.000000px;}
.x34_c00051{left:558.000000px;}
.xe_c00051{left:559.500000px;}
.xe3_c00051{left:561.000000px;}
.x4f_c00051{left:562.920000px;}
.x3d_c00051{left:564.000000px;}
.xc6_c00051{left:565.500000px;}
.xed_c00051{left:567.000000px;}
.xab_c00051{left:568.080000px;}
.x5c_c00051{left:569.580000px;}
.x82_c00051{left:571.920000px;}
.xf5_c00051{left:573.000000px;}
.xd4_c00051{left:575.580000px;}
.x7b_c00051{left:577.080000px;}
.x71_c00051{left:579.420000px;}
.xa5_c00051{left:582.420000px;}
.x110_c00051{left:583.500000px;}
.x8a_c00051{left:584.580000px;}
.x83_c00051{left:586.080000px;}
.x1b_c00051{left:588.000000px;}
.x28_c00051{left:589.080000px;}
.x66_c00051{left:591.000000px;}
.x3e_c00051{left:592.500000px;}
.x5d_c00051{left:598.500000px;}
.xf6_c00051{left:600.000000px;}
.xf_c00051{left:601.500000px;}
.x9e_c00051{left:603.420000px;}
.x84_c00051{left:604.500000px;}
.xfd_c00051{left:606.000000px;}
.x8b_c00051{left:607.500000px;}
.x45_c00051{left:609.420000px;}
.x8e_c00051{left:610.500000px;}
.x10_c00051{left:613.920000px;}
.x5e_c00051{left:615.000000px;}
.xac_c00051{left:617.580000px;}
.x67_c00051{left:619.920000px;}
.x72_c00051{left:621.000000px;}
.x29_c00051{left:622.500000px;}
.x50_c00051{left:625.500000px;}
.x1c_c00051{left:626.580000px;}
.xd9_c00051{left:630.000000px;}
.x96_c00051{left:633.000000px;}
.xee_c00051{left:636.000000px;}
.x3f_c00051{left:639.000000px;}
.x9f_c00051{left:640.080000px;}
.x100_c00051{left:642.000000px;}
.x11_c00051{left:643.500000px;}
.x68_c00051{left:644.775000px;}
.x35_c00051{left:646.080000px;}
.x106_c00051{left:649.500000px;}
.x51_c00051{left:651.000000px;}
.xbf_c00051{left:652.080000px;}
.x73_c00051{left:657.000000px;}
.x1d_c00051{left:658.920000px;}
.xad_c00051{left:660.000000px;}
.xef_c00051{left:661.500000px;}
.x10c_c00051{left:667.500000px;}
.x46_c00051{left:668.580000px;}
.x7c_c00051{left:670.500000px;}
.x12_c00051{left:672.420000px;}
.x2a_c00051{left:673.920000px;}
.x8f_c00051{left:675.000000px;}
.x69_c00051{left:676.920000px;}
.xae_c00051{left:678.000000px;}
.xc7_c00051{left:679.920000px;}
.xf0_c00051{left:681.000000px;}
.xa0_c00051{left:687.000000px;}
.x85_c00051{left:689.580000px;}
.xa6_c00051{left:691.500000px;}
.xc8_c00051{left:692.580000px;}
.xe9_c00051{left:694.500000px;}
.x52_c00051{left:697.920000px;}
.x1e_c00051{left:699.420000px;}
.x10d_c00051{left:700.500000px;}
.x107_c00051{left:705.000000px;}
.x13_c00051{left:706.080000px;}
.x2b_c00051{left:709.920000px;}
.xc9_c00051{left:711.000000px;}
.x53_c00051{left:712.920000px;}
.xb5_c00051{left:714.000000px;}
.x5f_c00051{left:715.080000px;}
.xda_c00051{left:717.000000px;}
@media print{
.v0_c00051{vertical-align:0.000000pt;}
.ls0_c00051{letter-spacing:0.000000pt;}
.ws2_c00051{word-spacing:-6.372053pt;}
.ws0_c00051{word-spacing:-5.432530pt;}
.ws1_c00051{word-spacing:-2.874215pt;}
.ws3_c00051{word-spacing:0.000000pt;}
._0_c00051{width:9.953788pt;}
.fs0_c00051{font-size:16.640000pt;}
.fs5_c00051{font-size:18.133333pt;}
.fs3_c00051{font-size:22.666667pt;}
.fs1_c00051{font-size:25.706667pt;}
.fs2_c00051{font-size:28.746667pt;}
.fs4_c00051{font-size:31.733333pt;}
.fs6_c00051{font-size:34.773333pt;}
.fs7_c00051{font-size:37.813333pt;}
.y0_c00051{bottom:0.000000pt;}
.yde_c00051{bottom:224.360000pt;}
.ydb_c00051{bottom:225.106667pt;}
.ydc_c00051{bottom:226.440000pt;}
.yda_c00051{bottom:227.026667pt;}
.ydd_c00051{bottom:228.360000pt;}
.yd7_c00051{bottom:242.826667pt;}
.yd9_c00051{bottom:243.773333pt;}
.yd6_c00051{bottom:244.560000pt;}
.yd5_c00051{bottom:245.306667pt;}
.yd8_c00051{bottom:245.693333pt;}
.yd4_c00051{bottom:260.160000pt;}
.yce_c00051{bottom:261.106667pt;}
.yd1_c00051{bottom:262.066667pt;}
.yd3_c00051{bottom:262.440000pt;}
.ycf_c00051{bottom:262.640000pt;}
.yd0_c00051{bottom:263.026667pt;}
.yd2_c00051{bottom:263.226667pt;}
.ycd_c00051{bottom:277.693333pt;}
.yca_c00051{bottom:279.400000pt;}
.yc9_c00051{bottom:280.360000pt;}
.ycc_c00051{bottom:280.560000pt;}
.ycb_c00051{bottom:281.306667pt;}
.yc7_c00051{bottom:297.106667pt;}
.yc5_c00051{bottom:297.693333pt;}
.yc6_c00051{bottom:297.893333pt;}
.yc8_c00051{bottom:299.026667pt;}
.ybe_c00051{bottom:312.360000pt;}
.yc4_c00051{bottom:313.493333pt;}
.yc0_c00051{bottom:314.440000pt;}
.ybd_c00051{bottom:315.026667pt;}
.ybf_c00051{bottom:315.226667pt;}
.yc2_c00051{bottom:315.400000pt;}
.yc1_c00051{bottom:316.360000pt;}
.yc3_c00051{bottom:317.306667pt;}
.yba_c00051{bottom:331.773333pt;}
.yb9_c00051{bottom:332.360000pt;}
.ybb_c00051{bottom:333.306667pt;}
.ybc_c00051{bottom:333.693333pt;}
.yb8_c00051{bottom:347.773333pt;}
.yb5_c00051{bottom:349.106667pt;}
.yb7_c00051{bottom:349.893333pt;}
.yb6_c00051{bottom:350.066667pt;}
.yb4_c00051{bottom:351.026667pt;}
.yb1_c00051{bottom:366.440000pt;}
.yb0_c00051{bottom:367.400000pt;}
.yb2_c00051{bottom:367.773333pt;}
.yb3_c00051{bottom:368.360000pt;}
.ya9_c00051{bottom:383.400000pt;}
.yaa_c00051{bottom:383.773333pt;}
.yaf_c00051{bottom:385.106667pt;}
.yab_c00051{bottom:385.693333pt;}
.yac_c00051{bottom:385.893333pt;}
.yae_c00051{bottom:386.640000pt;}
.yad_c00051{bottom:387.026667pt;}
.ya8_c00051{bottom:401.106667pt;}
.ya6_c00051{bottom:402.440000pt;}
.ya4_c00051{bottom:403.026667pt;}
.ya5_c00051{bottom:403.226667pt;}
.ya7_c00051{bottom:404.360000pt;}
.ya3_c00051{bottom:418.440000pt;}
.ya2_c00051{bottom:419.773333pt;}
.y9f_c00051{bottom:420.360000pt;}
.ya0_c00051{bottom:420.560000pt;}
.ya1_c00051{bottom:421.693333pt;}
.y9d_c00051{bottom:435.773333pt;}
.y9b_c00051{bottom:435.973333pt;}
.y9c_c00051{bottom:436.360000pt;}
.y9a_c00051{bottom:437.106667pt;}
.y9e_c00051{bottom:437.693333pt;}
.y99_c00051{bottom:437.893333pt;}
.y98_c00051{bottom:439.026667pt;}
.y95_c00051{bottom:454.440000pt;}
.y97_c00051{bottom:455.226667pt;}
.y96_c00051{bottom:455.973333pt;}
.y94_c00051{bottom:456.360000pt;}
.y90_c00051{bottom:470.440000pt;}
.y93_c00051{bottom:471.400000pt;}
.y91_c00051{bottom:471.773333pt;}
.y8f_c00051{bottom:472.733333pt;}
.y92_c00051{bottom:473.306667pt;}
.y8e_c00051{bottom:473.693333pt;}
.y8c_c00051{bottom:489.106667pt;}
.y8d_c00051{bottom:490.440000pt;}
.y8a_c00051{bottom:491.026667pt;}
.y8b_c00051{bottom:491.226667pt;}
.y86_c00051{bottom:505.693333pt;}
.y87_c00051{bottom:506.440000pt;}
.y85_c00051{bottom:506.640000pt;}
.y88_c00051{bottom:507.400000pt;}
.y84_c00051{bottom:508.360000pt;}
.y89_c00051{bottom:508.560000pt;}
.y7d_c00051{bottom:523.026667pt;}
.y80_c00051{bottom:523.773333pt;}
.y83_c00051{bottom:524.733333pt;}
.y7f_c00051{bottom:524.933333pt;}
.y82_c00051{bottom:525.106667pt;}
.y7e_c00051{bottom:525.693333pt;}
.y7c_c00051{bottom:526.640000pt;}
.y81_c00051{bottom:527.026667pt;}
.y7b_c00051{bottom:540.360000pt;}
.y75_c00051{bottom:541.106667pt;}
.y7a_c00051{bottom:541.306667pt;}
.y76_c00051{bottom:542.440000pt;}
.y74_c00051{bottom:543.026667pt;}
.y79_c00051{bottom:543.226667pt;}
.y78_c00051{bottom:543.973333pt;}
.y77_c00051{bottom:544.360000pt;}
.y72_c00051{bottom:559.773333pt;}
.y71_c00051{bottom:560.560000pt;}
.y73_c00051{bottom:560.733333pt;}
.y70_c00051{bottom:561.693333pt;}
.y6c_c00051{bottom:575.026667pt;}
.y6f_c00051{bottom:575.773333pt;}
.y6d_c00051{bottom:575.973333pt;}
.y6b_c00051{bottom:577.106667pt;}
.y6a_c00051{bottom:577.893333pt;}
.y6e_c00051{bottom:578.640000pt;}
.y69_c00051{bottom:579.026667pt;}
.y64_c00051{bottom:592.360000pt;}
.y68_c00051{bottom:594.440000pt;}
.y67_c00051{bottom:595.226667pt;}
.y65_c00051{bottom:596.360000pt;}
.y66_c00051{bottom:597.306667pt;}
.y61_c00051{bottom:611.773333pt;}
.y62_c00051{bottom:612.560000pt;}
.y63_c00051{bottom:613.306667pt;}
.y60_c00051{bottom:613.693333pt;}
.y5e_c00051{bottom:629.106667pt;}
.y5f_c00051{bottom:631.026667pt;}
.y56_c00051{bottom:645.106667pt;}
.y59_c00051{bottom:646.440000pt;}
.y5b_c00051{bottom:646.640000pt;}
.y58_c00051{bottom:647.226667pt;}
.y5c_c00051{bottom:647.773333pt;}
.y57_c00051{bottom:648.360000pt;}
.y5d_c00051{bottom:648.733333pt;}
.y5a_c00051{bottom:649.693333pt;}
.y53_c00051{bottom:663.026667pt;}
.y50_c00051{bottom:663.773333pt;}
.y55_c00051{bottom:663.973333pt;}
.y52_c00051{bottom:665.106667pt;}
.y4f_c00051{bottom:665.693333pt;}
.y51_c00051{bottom:665.893333pt;}
.y54_c00051{bottom:667.026667pt;}
.y4a_c00051{bottom:680.360000pt;}
.y4b_c00051{bottom:681.306667pt;}
.y4c_c00051{bottom:682.440000pt;}
.y4e_c00051{bottom:683.226667pt;}
.y4d_c00051{bottom:683.400000pt;}
.y49_c00051{bottom:684.360000pt;}
.y47_c00051{bottom:699.773333pt;}
.y46_c00051{bottom:700.360000pt;}
.y48_c00051{bottom:700.560000pt;}
.y45_c00051{bottom:701.693333pt;}
.y42_c00051{bottom:717.106667pt;}
.y44_c00051{bottom:717.893333pt;}
.y43_c00051{bottom:719.026667pt;}
.y3e_c00051{bottom:733.306667pt;}
.y41_c00051{bottom:733.693333pt;}
.y3d_c00051{bottom:734.440000pt;}
.y3f_c00051{bottom:735.226667pt;}
.y3c_c00051{bottom:736.360000pt;}
.y40_c00051{bottom:736.560000pt;}
.y3a_c00051{bottom:751.773333pt;}
.y39_c00051{bottom:752.733333pt;}
.y38_c00051{bottom:753.693333pt;}
.y3b_c00051{bottom:754.640000pt;}
.y37_c00051{bottom:769.106667pt;}
.y35_c00051{bottom:770.066667pt;}
.y36_c00051{bottom:770.440000pt;}
.y34_c00051{bottom:771.026667pt;}
.y2f_c00051{bottom:786.440000pt;}
.y31_c00051{bottom:786.640000pt;}
.y32_c00051{bottom:787.026667pt;}
.y33_c00051{bottom:787.773333pt;}
.y2e_c00051{bottom:788.360000pt;}
.y30_c00051{bottom:788.560000pt;}
.y2c_c00051{bottom:803.026667pt;}
.y2b_c00051{bottom:803.973333pt;}
.y2d_c00051{bottom:804.360000pt;}
.y29_c00051{bottom:804.733333pt;}
.y2a_c00051{bottom:805.106667pt;}
.y27_c00051{bottom:805.893333pt;}
.y28_c00051{bottom:807.026667pt;}
.y25_c00051{bottom:821.306667pt;}
.y26_c00051{bottom:821.693333pt;}
.y21_c00051{bottom:822.440000pt;}
.y23_c00051{bottom:823.973333pt;}
.y22_c00051{bottom:824.360000pt;}
.y24_c00051{bottom:825.306667pt;}
.y20_c00051{bottom:839.026667pt;}
.y1d_c00051{bottom:839.773333pt;}
.y1f_c00051{bottom:839.973333pt;}
.y1e_c00051{bottom:840.733333pt;}
.y1c_c00051{bottom:841.306667pt;}
.y1b_c00051{bottom:841.693333pt;}
.y17_c00051{bottom:855.973333pt;}
.y19_c00051{bottom:857.106667pt;}
.y18_c00051{bottom:858.066667pt;}
.y1a_c00051{bottom:859.026667pt;}
.y13_c00051{bottom:874.066667pt;}
.y14_c00051{bottom:874.440000pt;}
.y15_c00051{bottom:875.226667pt;}
.y16_c00051{bottom:875.973333pt;}
.y12_c00051{bottom:876.360000pt;}
.y11_c00051{bottom:891.773333pt;}
.y10_c00051{bottom:893.693333pt;}
.yf_c00051{bottom:907.773333pt;}
.ye_c00051{bottom:909.106667pt;}
.yd_c00051{bottom:910.066667pt;}
.yc_c00051{bottom:911.026667pt;}
.y9_c00051{bottom:926.440000pt;}
.ya_c00051{bottom:928.360000pt;}
.yb_c00051{bottom:929.306667pt;}
.y8_c00051{bottom:943.026667pt;}
.y3_c00051{bottom:944.560000pt;}
.y4_c00051{bottom:944.733333pt;}
.y7_c00051{bottom:945.306667pt;}
.y2_c00051{bottom:945.693333pt;}
.y6_c00051{bottom:945.893333pt;}
.y5_c00051{bottom:946.640000pt;}
.y1_c00051{bottom:980.560000pt;}
.h1_c00051{height:20.466875pt;}
.h6_c00051{height:22.303646pt;}
.h4_c00051{height:27.879557pt;}
.h2_c00051{height:31.618698pt;}
.h3_c00051{height:35.357839pt;}
.h5_c00051{height:39.031380pt;}
.h7_c00051{height:42.770521pt;}
.h8_c00051{height:46.509661pt;}
.h0_c00051{height:1186.666667pt;}
.w0_c00051{width:782.666667pt;}
.x0_c00051{left:0.000000pt;}
.x108_c00051{left:135.040000pt;}
.x47_c00051{left:136.000000pt;}
.x2_c00051{left:137.333333pt;}
.xca_c00051{left:147.626667pt;}
.x103_c00051{left:149.333333pt;}
.x36_c00051{left:150.666667pt;}
.x90_c00051{left:156.960000pt;}
.x10e_c00051{left:158.666667pt;}
.x60_c00051{left:160.000000pt;}
.x1f_c00051{left:162.666667pt;}
.xd5_c00051{left:164.373333pt;}
.x74_c00051{left:165.706667pt;}
.x3_c00051{left:166.666667pt;}
.x54_c00051{left:168.000000pt;}
.xb6_c00051{left:169.333333pt;}
.xe5_c00051{left:170.666667pt;}
.x6e_c00051{left:171.626667pt;}
.x6a_c00051{left:173.333333pt;}
.xc0_c00051{left:176.000000pt;}
.xd6_c00051{left:178.293333pt;}
.x37_c00051{left:181.333333pt;}
.xcb_c00051{left:182.293333pt;}
.x40_c00051{left:184.373333pt;}
.x4_c00051{left:185.333333pt;}
.xb7_c00051{left:186.666667pt;}
.x48_c00051{left:188.000000pt;}
.xe6_c00051{left:190.666667pt;}
.xc2_c00051{left:194.293333pt;}
.x7d_c00051{left:195.626667pt;}
.x55_c00051{left:197.333333pt;}
.x2c_c00051{left:198.666667pt;}
.x61_c00051{left:200.000000pt;}
.xfe_c00051{left:200.960000pt;}
.x5_c00051{left:203.040000pt;}
.x97_c00051{left:204.373333pt;}
.x14_c00051{left:205.706667pt;}
.x6b_c00051{left:208.000000pt;}
.xe7_c00051{left:209.333333pt;}
.xcc_c00051{left:210.293333pt;}
.x41_c00051{left:215.626667pt;}
.x91_c00051{left:217.333333pt;}
.x20_c00051{left:219.040000pt;}
.x10a_c00051{left:220.373333pt;}
.x75_c00051{left:221.333333pt;}
.x111_c00051{left:222.293333pt;}
.xb8_c00051{left:224.373333pt;}
.xcd_c00051{left:225.706667pt;}
.x6_c00051{left:226.666667pt;}
.xdd_c00051{left:228.000000pt;}
.xaf_c00051{left:230.666667pt;}
.xa1_c00051{left:232.000000pt;}
.x38_c00051{left:233.333333pt;}
.xd7_c00051{left:236.000000pt;}
.x7e_c00051{left:237.333333pt;}
.xce_c00051{left:238.293333pt;}
.x6f_c00051{left:241.333333pt;}
.xb0_c00051{left:242.666667pt;}
.x86_c00051{left:244.000000pt;}
.x92_c00051{left:246.666667pt;}
.xb9_c00051{left:247.626667pt;}
.xf1_c00051{left:249.333333pt;}
.x98_c00051{left:250.666667pt;}
.xe4_c00051{left:252.000000pt;}
.x76_c00051{left:254.666667pt;}
.x56_c00051{left:257.333333pt;}
.xc3_c00051{left:259.040000pt;}
.x7f_c00051{left:260.373333pt;}
.xba_c00051{left:261.333333pt;}
.x101_c00051{left:262.666667pt;}
.xe8_c00051{left:263.626667pt;}
.x10f_c00051{left:265.333333pt;}
.x2d_c00051{left:266.293333pt;}
.x49_c00051{left:268.960000pt;}
.x99_c00051{left:272.000000pt;}
.x6c_c00051{left:273.333333pt;}
.x15_c00051{left:274.293333pt;}
.x77_c00051{left:275.626667pt;}
.xdb_c00051{left:276.960000pt;}
.x7_c00051{left:278.293333pt;}
.x102_c00051{left:280.000000pt;}
.x39_c00051{left:281.333333pt;}
.x2e_c00051{left:282.666667pt;}
.xf2_c00051{left:284.000000pt;}
.x62_c00051{left:285.706667pt;}
.x21_c00051{left:288.373333pt;}
.xcf_c00051{left:289.333333pt;}
.x9a_c00051{left:290.293333pt;}
.x80_c00051{left:292.373333pt;}
.x93_c00051{left:293.333333pt;}
.xd8_c00051{left:294.293333pt;}
.x8_c00051{left:296.373333pt;}
.xea_c00051{left:297.706667pt;}
.x87_c00051{left:298.666667pt;}
.x57_c00051{left:300.000000pt;}
.xbb_c00051{left:300.960000pt;}
.x4a_c00051{left:303.040000pt;}
.x3a_c00051{left:311.040000pt;}
.x22_c00051{left:312.373333pt;}
.xb1_c00051{left:313.333333pt;}
.x4b_c00051{left:314.666667pt;}
.xde_c00051{left:316.000000pt;}
.xbc_c00051{left:317.333333pt;}
.x9_c00051{left:321.333333pt;}
.xd0_c00051{left:322.666667pt;}
.x70_c00051{left:324.373333pt;}
.x42_c00051{left:326.293333pt;}
.x8c_c00051{left:328.000000pt;}
.x16_c00051{left:329.333333pt;}
.xa7_c00051{left:331.040000pt;}
.xb2_c00051{left:332.373333pt;}
.xfa_c00051{left:333.706667pt;}
.xa2_c00051{left:334.666667pt;}
.xdf_c00051{left:336.000000pt;}
.x23_c00051{left:337.706667pt;}
.x78_c00051{left:338.666667pt;}
.xd1_c00051{left:339.626667pt;}
.xf3_c00051{left:340.960000pt;}
.x109_c00051{left:342.666667pt;}
.x2f_c00051{left:344.000000pt;}
.x4c_c00051{left:347.626667pt;}
.x81_c00051{left:349.333333pt;}
.x17_c00051{left:353.333333pt;}
.x1_c00051{left:354.666667pt;}
.xb3_c00051{left:357.706667pt;}
.xf7_c00051{left:360.000000pt;}
.xe0_c00051{left:361.333333pt;}
.xa8_c00051{left:362.666667pt;}
.xbd_c00051{left:365.333333pt;}
.xd2_c00051{left:366.293333pt;}
.x8d_c00051{left:367.626667pt;}
.x24_c00051{left:370.666667pt;}
.x9b_c00051{left:372.000000pt;}
.x4d_c00051{left:373.333333pt;}
.x3b_c00051{left:374.666667pt;}
.xa9_c00051{left:377.333333pt;}
.xa_c00051{left:378.666667pt;}
.xeb_c00051{left:381.333333pt;}
.x58_c00051{left:382.293333pt;}
.xfb_c00051{left:385.706667pt;}
.x94_c00051{left:387.040000pt;}
.x4e_c00051{left:388.960000pt;}
.x30_c00051{left:392.000000pt;}
.xc1_c00051{left:393.333333pt;}
.x63_c00051{left:395.626667pt;}
.xb_c00051{left:397.706667pt;}
.xec_c00051{left:401.706667pt;}
.xa3_c00051{left:402.666667pt;}
.x88_c00051{left:405.333333pt;}
.x31_c00051{left:407.040000pt;}
.xd3_c00051{left:408.000000pt;}
.xff_c00051{left:411.040000pt;}
.xdc_c00051{left:412.000000pt;}
.xe1_c00051{left:413.333333pt;}
.x25_c00051{left:414.666667pt;}
.xf8_c00051{left:415.626667pt;}
.x79_c00051{left:416.960000pt;}
.x18_c00051{left:419.040000pt;}
.xc_c00051{left:422.666667pt;}
.xc4_c00051{left:424.000000pt;}
.x26_c00051{left:427.040000pt;}
.x10b_c00051{left:428.960000pt;}
.x32_c00051{left:430.666667pt;}
.x104_c00051{left:432.960000pt;}
.xf4_c00051{left:435.626667pt;}
.x43_c00051{left:437.333333pt;}
.x9c_c00051{left:441.706667pt;}
.x64_c00051{left:443.626667pt;}
.x59_c00051{left:448.373333pt;}
.xc5_c00051{left:449.333333pt;}
.x19_c00051{left:452.373333pt;}
.xaa_c00051{left:454.666667pt;}
.xbe_c00051{left:456.373333pt;}
.x95_c00051{left:457.333333pt;}
.x6d_c00051{left:458.666667pt;}
.x3c_c00051{left:459.626667pt;}
.xe2_c00051{left:461.333333pt;}
.x33_c00051{left:463.040000pt;}
.xa4_c00051{left:464.000000pt;}
.xb4_c00051{left:466.666667pt;}
.x65_c00051{left:468.000000pt;}
.x27_c00051{left:470.293333pt;}
.xfc_c00051{left:472.000000pt;}
.x5a_c00051{left:475.040000pt;}
.x1a_c00051{left:476.000000pt;}
.xd_c00051{left:478.293333pt;}
.x44_c00051{left:479.626667pt;}
.x89_c00051{left:481.333333pt;}
.x9d_c00051{left:483.626667pt;}
.x105_c00051{left:488.960000pt;}
.x5b_c00051{left:490.293333pt;}
.xf9_c00051{left:492.000000pt;}
.x7a_c00051{left:493.333333pt;}
.x34_c00051{left:496.000000pt;}
.xe_c00051{left:497.333333pt;}
.xe3_c00051{left:498.666667pt;}
.x4f_c00051{left:500.373333pt;}
.x3d_c00051{left:501.333333pt;}
.xc6_c00051{left:502.666667pt;}
.xed_c00051{left:504.000000pt;}
.xab_c00051{left:504.960000pt;}
.x5c_c00051{left:506.293333pt;}
.x82_c00051{left:508.373333pt;}
.xf5_c00051{left:509.333333pt;}
.xd4_c00051{left:511.626667pt;}
.x7b_c00051{left:512.960000pt;}
.x71_c00051{left:515.040000pt;}
.xa5_c00051{left:517.706667pt;}
.x110_c00051{left:518.666667pt;}
.x8a_c00051{left:519.626667pt;}
.x83_c00051{left:520.960000pt;}
.x1b_c00051{left:522.666667pt;}
.x28_c00051{left:523.626667pt;}
.x66_c00051{left:525.333333pt;}
.x3e_c00051{left:526.666667pt;}
.x5d_c00051{left:532.000000pt;}
.xf6_c00051{left:533.333333pt;}
.xf_c00051{left:534.666667pt;}
.x9e_c00051{left:536.373333pt;}
.x84_c00051{left:537.333333pt;}
.xfd_c00051{left:538.666667pt;}
.x8b_c00051{left:540.000000pt;}
.x45_c00051{left:541.706667pt;}
.x8e_c00051{left:542.666667pt;}
.x10_c00051{left:545.706667pt;}
.x5e_c00051{left:546.666667pt;}
.xac_c00051{left:548.960000pt;}
.x67_c00051{left:551.040000pt;}
.x72_c00051{left:552.000000pt;}
.x29_c00051{left:553.333333pt;}
.x50_c00051{left:556.000000pt;}
.x1c_c00051{left:556.960000pt;}
.xd9_c00051{left:560.000000pt;}
.x96_c00051{left:562.666667pt;}
.xee_c00051{left:565.333333pt;}
.x3f_c00051{left:568.000000pt;}
.x9f_c00051{left:568.960000pt;}
.x100_c00051{left:570.666667pt;}
.x11_c00051{left:572.000000pt;}
.x68_c00051{left:573.133333pt;}
.x35_c00051{left:574.293333pt;}
.x106_c00051{left:577.333333pt;}
.x51_c00051{left:578.666667pt;}
.xbf_c00051{left:579.626667pt;}
.x73_c00051{left:584.000000pt;}
.x1d_c00051{left:585.706667pt;}
.xad_c00051{left:586.666667pt;}
.xef_c00051{left:588.000000pt;}
.x10c_c00051{left:593.333333pt;}
.x46_c00051{left:594.293333pt;}
.x7c_c00051{left:596.000000pt;}
.x12_c00051{left:597.706667pt;}
.x2a_c00051{left:599.040000pt;}
.x8f_c00051{left:600.000000pt;}
.x69_c00051{left:601.706667pt;}
.xae_c00051{left:602.666667pt;}
.xc7_c00051{left:604.373333pt;}
.xf0_c00051{left:605.333333pt;}
.xa0_c00051{left:610.666667pt;}
.x85_c00051{left:612.960000pt;}
.xa6_c00051{left:614.666667pt;}
.xc8_c00051{left:615.626667pt;}
.xe9_c00051{left:617.333333pt;}
.x52_c00051{left:620.373333pt;}
.x1e_c00051{left:621.706667pt;}
.x10d_c00051{left:622.666667pt;}
.x107_c00051{left:626.666667pt;}
.x13_c00051{left:627.626667pt;}
.x2b_c00051{left:631.040000pt;}
.xc9_c00051{left:632.000000pt;}
.x53_c00051{left:633.706667pt;}
.xb5_c00051{left:634.666667pt;}
.x5f_c00051{left:635.626667pt;}
.xda_c00051{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6d0dad258f9f32208210a9a6.woff2')format("woff");}.ff1_c00052{font-family:ff1_c00052;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mcc_c00052{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.me0_c00052{transform:matrix(0.307475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307475,0.000000,0.000000,0.250000,0,0);}
.mca_c00052{transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);}
.m12_c00052{transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);}
.md7_c00052{transform:matrix(0.358251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358251,0.000000,0.000000,0.250000,0,0);}
.mc2_c00052{transform:matrix(0.359309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359309,0.000000,0.000000,0.250000,0,0);}
.m98_c00052{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mdd_c00052{transform:matrix(0.363866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363866,0.000000,0.000000,0.250000,0,0);}
.m24_c00052{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m70_c00052{transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);}
.mcf_c00052{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m47_c00052{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m89_c00052{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m1c_c00052{transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);}
.m7e_c00052{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.me9_c00052{transform:matrix(0.379760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379760,0.000000,0.000000,0.250000,0,0);}
.md5_c00052{transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);}
.mc7_c00052{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.md8_c00052{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.mf_c00052{transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);}
.me6_c00052{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m7f_c00052{transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);}
.m27_c00052{transform:matrix(0.389187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389187,0.000000,0.000000,0.250000,0,0);}
.m88_c00052{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m33_c00052{transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);}
.m86_c00052{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m4e_c00052{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m74_c00052{transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);}
.m2e_c00052{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m23_c00052{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m62_c00052{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.mb1_c00052{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mda_c00052{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m71_c00052{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m25_c00052{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m91_c00052{transform:matrix(0.404908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404908,0.000000,0.000000,0.250000,0,0);}
.m76_c00052{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m8e_c00052{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m9_c00052{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m3e_c00052{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m81_c00052{transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);}
.mc4_c00052{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m19_c00052{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.ma5_c00052{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.mf3_c00052{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.mbf_c00052{transform:matrix(0.413344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413344,0.000000,0.000000,0.250000,0,0);}
.m20_c00052{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.ma0_c00052{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m6b_c00052{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m40_c00052{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.ma_c00052{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m73_c00052{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m50_c00052{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m77_c00052{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m97_c00052{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m65_c00052{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m79_c00052{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m46_c00052{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m14_c00052{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m21_c00052{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m2b_c00052{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.md9_c00052{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m9d_c00052{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.me4_c00052{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m96_c00052{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m4c_c00052{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.ma4_c00052{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.mc6_c00052{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m1e_c00052{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.md3_c00052{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m34_c00052{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m13_c00052{transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);}
.m15_c00052{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m55_c00052{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.md6_c00052{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m80_c00052{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m4_c00052{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m7c_c00052{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mc5_c00052{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mae_c00052{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m7d_c00052{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.ma8_c00052{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m7a_c00052{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.me2_c00052{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.md_c00052{transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);}
.m1d_c00052{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m2f_c00052{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m3a_c00052{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.mdf_c00052{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.mb4_c00052{transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);}
.mb2_c00052{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m61_c00052{transform:matrix(0.451304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451304,0.000000,0.000000,0.250000,0,0);}
.md2_c00052{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m94_c00052{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m92_c00052{transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);}
.mb5_c00052{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m99_c00052{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m1f_c00052{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mb8_c00052{transform:matrix(0.462430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462430,0.000000,0.000000,0.250000,0,0);}
.ma3_c00052{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m63_c00052{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m67_c00052{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.ma9_c00052{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.ma2_c00052{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m56_c00052{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m39_c00052{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m60_c00052{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mf1_c00052{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m5e_c00052{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m3d_c00052{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m28_c00052{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m93_c00052{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m11_c00052{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m66_c00052{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m53_c00052{transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);}
.m5_c00052{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.maf_c00052{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m31_c00052{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);}
.m5a_c00052{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m84_c00052{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mef_c00052{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m6d_c00052{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m4d_c00052{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m83_c00052{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m9b_c00052{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m26_c00052{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mc8_c00052{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m57_c00052{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m5b_c00052{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m7_c00052{transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);}
.mbb_c00052{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m43_c00052{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mbe_c00052{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m4a_c00052{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m9e_c00052{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mc0_c00052{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m85_c00052{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m48_c00052{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mc1_c00052{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m1b_c00052{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m32_c00052{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m9c_c00052{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m6c_c00052{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mc3_c00052{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mb_c00052{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m1a_c00052{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m8d_c00052{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m95_c00052{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m2c_c00052{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m8c_c00052{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m9f_c00052{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m3f_c00052{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m90_c00052{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.ma6_c00052{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m0_c00052{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m6e_c00052{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.ma7_c00052{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m58_c00052{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.maa_c00052{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m87_c00052{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m18_c00052{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m2a_c00052{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m54_c00052{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m59_c00052{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m49_c00052{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mbd_c00052{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mde_c00052{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m68_c00052{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.md0_c00052{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);}
.ma1_c00052{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m8f_c00052{transform:matrix(0.562152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562152,0.000000,0.000000,0.250000,0,0);}
.mb6_c00052{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mac_c00052{transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);}
.mb7_c00052{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.m7b_c00052{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m35_c00052{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.mee_c00052{transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);}
.m52_c00052{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mce_c00052{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.mcd_c00052{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.me_c00052{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.m82_c00052{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mba_c00052{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m69_c00052{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.mea_c00052{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m6a_c00052{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.mb3_c00052{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m51_c00052{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m64_c00052{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.m36_c00052{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.mcb_c00052{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m3b_c00052{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m2d_c00052{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m30_c00052{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m78_c00052{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mc_c00052{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.mb9_c00052{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.m8a_c00052{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m17_c00052{transform:matrix(0.601141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601141,0.000000,0.000000,0.250000,0,0);}
.m2_c00052{transform:matrix(0.603216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603216,0.000000,0.000000,0.250000,0,0);}
.mb0_c00052{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m8b_c00052{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m38_c00052{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m5f_c00052{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m42_c00052{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mf2_c00052{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.m3_c00052{transform:matrix(0.617739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617739,0.000000,0.000000,0.250000,0,0);}
.m6_c00052{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);}
.m45_c00052{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_c00052{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m29_c00052{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m1_c00052{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m5d_c00052{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m37_c00052{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m8_c00052{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);}
.me5_c00052{transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);}
.med_c00052{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m22_c00052{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.md4_c00052{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.mab_c00052{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mad_c00052{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.mc9_c00052{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m10_c00052{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.mf0_c00052{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mdb_c00052{transform:matrix(0.695539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695539,0.000000,0.000000,0.250000,0,0);}
.me3_c00052{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.meb_c00052{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m41_c00052{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.mec_c00052{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mdc_c00052{transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);}
.m5c_c00052{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mbc_c00052{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m4b_c00052{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m9a_c00052{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m6f_c00052{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.me7_c00052{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.me1_c00052{transform:matrix(0.772059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772059,0.000000,0.000000,0.250000,0,0);}
.m3c_c00052{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.me8_c00052{transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);}
.m4f_c00052{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.md1_c00052{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m75_c00052{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m44_c00052{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m16_c00052{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00052{vertical-align:-5.100000px;}
.v0_c00052{vertical-align:0.000000px;}
.ls1_c00052{letter-spacing:0.000000px;}
.ls0_c00052{letter-spacing:20.751900px;}
.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;}
}
.ws0_c00052{word-spacing:-6.628518px;}
.ws1_c00052{word-spacing:0.000000px;}
.fc0_c00052{color:transparent;}
.fs6_c00052{font-size:3.420000px;}
.fs4_c00052{font-size:18.720000px;}
.fs1_c00052{font-size:20.400000px;}
.fs0_c00052{font-size:25.500000px;}
.fs2_c00052{font-size:28.920000px;}
.fs3_c00052{font-size:32.340000px;}
.fs5_c00052{font-size:35.700000px;}
.fs7_c00052{font-size:39.120000px;}
.fs8_c00052{font-size:42.540000px;}
.y0_c00052{bottom:0.000000px;}
.yd3_c00052{bottom:300.405000px;}
.yd2_c00052{bottom:302.745000px;}
.ycf_c00052{bottom:316.245000px;}
.yce_c00052{bottom:318.405000px;}
.ycd_c00052{bottom:318.630000px;}
.ycc_c00052{bottom:318.825000px;}
.yd0_c00052{bottom:319.470000px;}
.ycb_c00052{bottom:319.905000px;}
.yd1_c00052{bottom:320.970000px;}
.yca_c00052{bottom:321.405000px;}
.yc8_c00052{bottom:335.970000px;}
.yc2_c00052{bottom:336.180000px;}
.yc3_c00052{bottom:336.405000px;}
.yc6_c00052{bottom:337.245000px;}
.yc5_c00052{bottom:338.130000px;}
.yc7_c00052{bottom:338.970000px;}
.yc4_c00052{bottom:339.405000px;}
.yc9_c00052{bottom:340.905000px;}
.yc1_c00052{bottom:341.550000px;}
.yc0_c00052{bottom:355.245000px;}
.ybd_c00052{bottom:356.745000px;}
.ybe_c00052{bottom:357.630000px;}
.ybf_c00052{bottom:358.470000px;}
.ybb_c00052{bottom:358.905000px;}
.ybc_c00052{bottom:359.130000px;}
.yba_c00052{bottom:360.405000px;}
.yb4_c00052{bottom:375.825000px;}
.yb5_c00052{bottom:376.245000px;}
.yb8_c00052{bottom:376.470000px;}
.yb9_c00052{bottom:377.745000px;}
.yb7_c00052{bottom:377.970000px;}
.yb3_c00052{bottom:378.405000px;}
.yb6_c00052{bottom:378.630000px;}
.yb1_c00052{bottom:379.245000px;}
.yb2_c00052{bottom:379.920000px;}
.yb0_c00052{bottom:397.050000px;}
.yaf_c00052{bottom:397.680000px;}
.ya9_c00052{bottom:414.405000px;}
.yaa_c00052{bottom:415.470000px;}
.yae_c00052{bottom:415.905000px;}
.yad_c00052{bottom:416.325000px;}
.ya8_c00052{bottom:416.745000px;}
.yab_c00052{bottom:417.405000px;}
.yac_c00052{bottom:418.470000px;}
.ya7_c00052{bottom:421.470000px;}
.ya4_c00052{bottom:435.825000px;}
.ya3_c00052{bottom:436.050000px;}
.ya2_c00052{bottom:436.245000px;}
.ya1_c00052{bottom:436.680000px;}
.ya5_c00052{bottom:436.905000px;}
.ya6_c00052{bottom:438.405000px;}
.y9d_c00052{bottom:453.405000px;}
.y9c_c00052{bottom:454.470000px;}
.ya0_c00052{bottom:455.325000px;}
.y9a_c00052{bottom:455.550000px;}
.y9b_c00052{bottom:455.745000px;}
.y9e_c00052{bottom:456.630000px;}
.y99_c00052{bottom:456.825000px;}
.y97_c00052{bottom:457.245000px;}
.y95_c00052{bottom:457.680000px;}
.y98_c00052{bottom:457.905000px;}
.y9f_c00052{bottom:457.920000px;}
.y96_c00052{bottom:459.630000px;}
.y92_c00052{bottom:475.245000px;}
.y8f_c00052{bottom:475.680000px;}
.y90_c00052{bottom:476.130000px;}
.y93_c00052{bottom:476.325000px;}
.y91_c00052{bottom:477.405000px;}
.y94_c00052{bottom:477.630000px;}
.y8e_c00052{bottom:493.680000px;}
.y8d_c00052{bottom:494.745000px;}
.y8b_c00052{bottom:496.470000px;}
.y8c_c00052{bottom:496.905000px;}
.y8a_c00052{bottom:498.825000px;}
.y89_c00052{bottom:513.405000px;}
.y87_c00052{bottom:516.405000px;}
.y88_c00052{bottom:516.630000px;}
.y86_c00052{bottom:517.470000px;}
.y85_c00052{bottom:518.325000px;}
.y83_c00052{bottom:533.970000px;}
.y84_c00052{bottom:535.245000px;}
.y82_c00052{bottom:535.905000px;}
.y81_c00052{bottom:537.405000px;}
.y80_c00052{bottom:537.825000px;}
.y7e_c00052{bottom:554.745000px;}
.y7f_c00052{bottom:555.405000px;}
.y7b_c00052{bottom:555.825000px;}
.y7d_c00052{bottom:556.470000px;}
.y7c_c00052{bottom:556.905000px;}
.y7a_c00052{bottom:557.550000px;}
.y77_c00052{bottom:572.745000px;}
.y74_c00052{bottom:573.405000px;}
.y78_c00052{bottom:575.130000px;}
.y76_c00052{bottom:575.325000px;}
.y79_c00052{bottom:575.970000px;}
.y75_c00052{bottom:576.405000px;}
.y73_c00052{bottom:577.905000px;}
.y71_c00052{bottom:592.245000px;}
.y6f_c00052{bottom:593.745000px;}
.y70_c00052{bottom:594.630000px;}
.y72_c00052{bottom:595.905000px;}
.y6e_c00052{bottom:597.825000px;}
.y6c_c00052{bottom:613.245000px;}
.y6b_c00052{bottom:615.405000px;}
.y6d_c00052{bottom:615.630000px;}
.y6a_c00052{bottom:616.245000px;}
.y66_c00052{bottom:634.905000px;}
.y69_c00052{bottom:635.130000px;}
.y65_c00052{bottom:635.325000px;}
.y67_c00052{bottom:635.970000px;}
.y68_c00052{bottom:636.405000px;}
.y60_c00052{bottom:652.245000px;}
.y62_c00052{bottom:653.325000px;}
.y5f_c00052{bottom:653.745000px;}
.y61_c00052{bottom:654.405000px;}
.y63_c00052{bottom:654.630000px;}
.y64_c00052{bottom:655.905000px;}
.y5e_c00052{bottom:657.405000px;}
.y5a_c00052{bottom:672.180000px;}
.y5c_c00052{bottom:673.245000px;}
.y5d_c00052{bottom:674.325000px;}
.y5b_c00052{bottom:675.405000px;}
.y59_c00052{bottom:676.905000px;}
.y56_c00052{bottom:691.905000px;}
.y57_c00052{bottom:692.745000px;}
.y58_c00052{bottom:693.825000px;}
.y55_c00052{bottom:694.905000px;}
.y52_c00052{bottom:712.245000px;}
.y51_c00052{bottom:714.405000px;}
.y54_c00052{bottom:714.630000px;}
.y50_c00052{bottom:714.825000px;}
.y53_c00052{bottom:715.470000px;}
.y4f_c00052{bottom:731.745000px;}
.y4d_c00052{bottom:732.825000px;}
.y4e_c00052{bottom:733.905000px;}
.y4b_c00052{bottom:751.245000px;}
.y48_c00052{bottom:751.680000px;}
.y4c_c00052{bottom:753.405000px;}
.y49_c00052{bottom:753.420000px;}
.y4a_c00052{bottom:754.470000px;}
.y47_c00052{bottom:770.745000px;}
.y45_c00052{bottom:773.745000px;}
.y46_c00052{bottom:773.970000px;}
.y42_c00052{bottom:791.745000px;}
.y43_c00052{bottom:792.405000px;}
.y44_c00052{bottom:792.630000px;}
.y41_c00052{bottom:793.905000px;}
.y40_c00052{bottom:795.405000px;}
.y3c_c00052{bottom:811.245000px;}
.y3b_c00052{bottom:811.680000px;}
.y3f_c00052{bottom:812.325000px;}
.y3e_c00052{bottom:812.970000px;}
.y3d_c00052{bottom:813.405000px;}
.y36_c00052{bottom:830.745000px;}
.y37_c00052{bottom:831.630000px;}
.y39_c00052{bottom:831.825000px;}
.y3a_c00052{bottom:832.470000px;}
.y35_c00052{bottom:832.905000px;}
.y34_c00052{bottom:833.325000px;}
.y38_c00052{bottom:833.970000px;}
.y2f_c00052{bottom:850.245000px;}
.y30_c00052{bottom:851.130000px;}
.y32_c00052{bottom:851.325000px;}
.y31_c00052{bottom:852.405000px;}
.y33_c00052{bottom:853.470000px;}
.y2e_c00052{bottom:853.905000px;}
.y2c_c00052{bottom:869.745000px;}
.y2d_c00052{bottom:870.630000px;}
.y2a_c00052{bottom:871.905000px;}
.y2b_c00052{bottom:871.920000px;}
.y29_c00052{bottom:873.405000px;}
.y28_c00052{bottom:892.050000px;}
.y25_c00052{bottom:908.325000px;}
.y26_c00052{bottom:908.745000px;}
.y23_c00052{bottom:910.905000px;}
.y27_c00052{bottom:911.130000px;}
.y24_c00052{bottom:911.970000px;}
.y21_c00052{bottom:912.405000px;}
.y22_c00052{bottom:912.420000px;}
.y1f_c00052{bottom:928.680000px;}
.y20_c00052{bottom:929.745000px;}
.y1a_c00052{bottom:946.905000px;}
.y1b_c00052{bottom:949.050000px;}
.y19_c00052{bottom:949.245000px;}
.y18_c00052{bottom:949.680000px;}
.y1d_c00052{bottom:949.905000px;}
.y1e_c00052{bottom:950.970000px;}
.y1c_c00052{bottom:951.405000px;}
.y14_c00052{bottom:967.245000px;}
.y11_c00052{bottom:967.680000px;}
.y15_c00052{bottom:968.745000px;}
.y16_c00052{bottom:969.630000px;}
.y13_c00052{bottom:969.825000px;}
.y17_c00052{bottom:970.905000px;}
.y12_c00052{bottom:970.920000px;}
.ye_c00052{bottom:988.245000px;}
.y10_c00052{bottom:990.405000px;}
.yf_c00052{bottom:990.420000px;}
.yd_c00052{bottom:1014.825000px;}
.yc_c00052{bottom:1015.050000px;}
.yb_c00052{bottom:1015.905000px;}
.y9_c00052{bottom:1016.970000px;}
.ya_c00052{bottom:1018.050000px;}
.y8_c00052{bottom:1034.325000px;}
.y7_c00052{bottom:1035.630000px;}
.y6_c00052{bottom:1037.550000px;}
.y5_c00052{bottom:1059.405000px;}
.y4_c00052{bottom:1062.825000px;}
.y3_c00052{bottom:1063.905000px;}
.y1_c00052{bottom:1100.970000px;}
.y2_c00052{bottom:1102.050000px;}
.h7_c00052{height:4.206533px;}
.h5_c00052{height:23.025234px;}
.h2_c00052{height:25.091602px;}
.h1_c00052{height:31.364502px;}
.h3_c00052{height:35.571035px;}
.h4_c00052{height:39.777568px;}
.h6_c00052{height:43.910303px;}
.h8_c00052{height:48.116836px;}
.h9_c00052{height:52.323369px;}
.h0_c00052{height:1335.000000px;}
.w0_c00052{width:880.500000px;}
.x0_c00052{left:0.000000px;}
.x28_c00052{left:150.420000px;}
.x7a_c00052{left:151.500000px;}
.xd5_c00052{left:153.000000px;}
.xef_c00052{left:154.080000px;}
.xc_c00052{left:163.500000px;}
.x17_c00052{left:165.420000px;}
.x6b_c00052{left:166.500000px;}
.xd3_c00052{left:168.420000px;}
.xdf_c00052{left:174.000000px;}
.xeb_c00052{left:178.500000px;}
.x93_c00052{left:180.000000px;}
.xbe_c00052{left:184.500000px;}
.x61_c00052{left:186.420000px;}
.x74_c00052{left:188.580000px;}
.x4e_c00052{left:190.500000px;}
.x8c_c00052{left:191.580000px;}
.xa7_c00052{left:195.000000px;}
.x29_c00052{left:196.500000px;}
.x6c_c00052{left:198.420000px;}
.x56_c00052{left:199.500000px;}
.x18_c00052{left:205.920000px;}
.x86_c00052{left:208.920000px;}
.xc5_c00052{left:213.000000px;}
.x35_c00052{left:214.500000px;}
.x2a_c00052{left:218.580000px;}
.x57_c00052{left:220.920000px;}
.xd_c00052{left:223.920000px;}
.x9b_c00052{left:225.000000px;}
.x7b_c00052{left:226.500000px;}
.xe0_c00052{left:229.500000px;}
.xb6_c00052{left:231.000000px;}
.xcc_c00052{left:234.000000px;}
.xaf_c00052{left:237.000000px;}
.xd6_c00052{left:238.500000px;}
.x94_c00052{left:240.420000px;}
.x2b_c00052{left:241.920000px;}
.x87_c00052{left:243.000000px;}
.xf7_c00052{left:244.920000px;}
.xbf_c00052{left:246.420000px;}
.x7c_c00052{left:247.920000px;}
.x42_c00052{left:249.000000px;}
.x58_c00052{left:250.500000px;}
.xcd_c00052{left:253.920000px;}
.x1f_c00052{left:255.000000px;}
.x9c_c00052{left:256.500000px;}
.x36_c00052{left:258.000000px;}
.x4f_c00052{left:259.500000px;}
.xc6_c00052{left:262.920000px;}
.x19_c00052{left:264.000000px;}
.xb7_c00052{left:265.920000px;}
.x2c_c00052{left:267.420000px;}
.xe_c00052{left:270.000000px;}
.x43_c00052{left:271.080000px;}
.x75_c00052{left:274.500000px;}
.x20_c00052{left:277.500000px;}
.x37_c00052{left:278.580000px;}
.xd7_c00052{left:283.500000px;}
.x1a_c00052{left:285.000000px;}
.xb0_c00052{left:286.920000px;}
.xf8_c00052{left:288.000000px;}
.x80_c00052{left:289.500000px;}
.x62_c00052{left:291.420000px;}
.xf0_c00052{left:292.500000px;}
.x8d_c00052{left:296.580000px;}
.x2d_c00052{left:298.080000px;}
.xa8_c00052{left:300.420000px;}
.x9d_c00052{left:304.080000px;}
.xd8_c00052{left:307.920000px;}
.xff_c00052{left:309.420000px;}
.xf9_c00052{left:310.920000px;}
.xc0_c00052{left:315.000000px;}
.x3_c00052{left:316.500000px;}
.x59_c00052{left:318.420000px;}
.xce_c00052{left:319.500000px;}
.x95_c00052{left:322.080000px;}
.x9e_c00052{left:324.420000px;}
.x63_c00052{left:325.500000px;}
.xb8_c00052{left:326.580000px;}
.xf_c00052{left:327.855000px;}
.xa9_c00052{left:331.920000px;}
.x38_c00052{left:334.500000px;}
.x88_c00052{left:337.920000px;}
.xfa_c00052{left:339.000000px;}
.x1b_c00052{left:341.580000px;}
.x44_c00052{left:343.500000px;}
.x21_c00052{left:344.775000px;}
.x2e_c00052{left:346.920000px;}
.xcf_c00052{left:349.920000px;}
.xf1_c00052{left:351.000000px;}
.x64_c00052{left:352.080000px;}
.xe1_c00052{left:354.420000px;}
.xc7_c00052{left:355.500000px;}
.x7_c00052{left:357.000000px;}
.xb9_c00052{left:358.500000px;}
.x6d_c00052{left:360.000000px;}
.x10_c00052{left:361.500000px;}
.xc1_c00052{left:363.000000px;}
.x45_c00052{left:364.500000px;}
.x1c_c00052{left:365.580000px;}
.x81_c00052{left:367.080000px;}
.x100_c00052{left:368.580000px;}
.x96_c00052{left:372.000000px;}
.x39_c00052{left:373.500000px;}
.xba_c00052{left:376.500000px;}
.x5a_c00052{left:377.580000px;}
.xe7_c00052{left:378.855000px;}
.x8_c00052{left:379.920000px;}
.x8e_c00052{left:381.000000px;}
.x46_c00052{left:387.000000px;}
.x82_c00052{left:388.500000px;}
.x89_c00052{left:390.000000px;}
.x9f_c00052{left:391.080000px;}
.x2_c00052{left:393.000000px;}
.xb1_c00052{left:394.500000px;}
.x9_c00052{left:396.000000px;}
.x4_c00052{left:397.080000px;}
.x65_c00052{left:399.420000px;}
.x3a_c00052{left:400.500000px;}
.x2f_c00052{left:402.420000px;}
.xe2_c00052{left:403.500000px;}
.xf2_c00052{left:405.420000px;}
.x11_c00052{left:408.420000px;}
.xa0_c00052{left:411.000000px;}
.xaa_c00052{left:412.920000px;}
.x22_c00052{left:415.920000px;}
.xd4_c00052{left:417.000000px;}
.xc8_c00052{left:421.920000px;}
.x1d_c00052{left:424.500000px;}
.x50_c00052{left:429.000000px;}
.x97_c00052{left:430.080000px;}
.xa_c00052{left:433.500000px;}
.x3b_c00052{left:436.920000px;}
.xa1_c00052{left:438.420000px;}
.xe3_c00052{left:439.500000px;}
.xf4_c00052{left:442.500000px;}
.x8f_c00052{left:443.580000px;}
.xec_c00052{left:445.080000px;}
.x47_c00052{left:446.775000px;}
.x30_c00052{left:448.920000px;}
.x6e_c00052{left:450.000000px;}
.xc2_c00052{left:451.920000px;}
.xf3_c00052{left:453.000000px;}
.x83_c00052{left:459.000000px;}
.x5_c00052{left:460.920000px;}
.x8a_c00052{left:462.000000px;}
.xb2_c00052{left:463.920000px;}
.xed_c00052{left:466.500000px;}
.x7d_c00052{left:467.580000px;}
.x12_c00052{left:469.500000px;}
.xfb_c00052{left:471.000000px;}
.x66_c00052{left:472.080000px;}
.xbb_c00052{left:474.000000px;}
.x51_c00052{left:475.080000px;}
.xb_c00052{left:478.080000px;}
.xab_c00052{left:481.920000px;}
.x48_c00052{left:484.500000px;}
.xa2_c00052{left:486.000000px;}
.x98_c00052{left:487.920000px;}
.x31_c00052{left:490.500000px;}
.x3c_c00052{left:493.080000px;}
.x52_c00052{left:495.420000px;}
.x6f_c00052{left:497.580000px;}
.xfc_c00052{left:499.500000px;}
.x13_c00052{left:501.000000px;}
.xd9_c00052{left:502.500000px;}
.x32_c00052{left:503.580000px;}
.xe4_c00052{left:505.920000px;}
.xd0_c00052{left:508.080000px;}
.x5b_c00052{left:511.500000px;}
.xfd_c00052{left:513.000000px;}
.x49_c00052{left:514.080000px;}
.x67_c00052{left:517.500000px;}
.x84_c00052{left:518.580000px;}
.xb3_c00052{left:520.080000px;}
.x1e_c00052{left:521.580000px;}
.x76_c00052{left:523.500000px;}
.x3d_c00052{left:525.000000px;}
.x6_c00052{left:528.420000px;}
.xbc_c00052{left:529.500000px;}
.x99_c00052{left:531.000000px;}
.xe8_c00052{left:532.500000px;}
.x4a_c00052{left:535.500000px;}
.x5c_c00052{left:537.000000px;}
.x23_c00052{left:538.500000px;}
.xa3_c00052{left:540.000000px;}
.x14_c00052{left:541.080000px;}
.xd1_c00052{left:549.420000px;}
.x101_c00052{left:550.500000px;}
.x70_c00052{left:552.000000px;}
.x53_c00052{left:553.500000px;}
.x5d_c00052{left:555.000000px;}
.xa4_c00052{left:556.080000px;}
.xc9_c00052{left:558.000000px;}
.x3e_c00052{left:559.080000px;}
.x15_c00052{left:561.420000px;}
.xe5_c00052{left:564.420000px;}
.x7e_c00052{left:565.500000px;}
.x68_c00052{left:568.920000px;}
.xda_c00052{left:573.000000px;}
.x8b_c00052{left:574.500000px;}
.xa5_c00052{left:576.000000px;}
.x16_c00052{left:577.080000px;}
.x33_c00052{left:580.500000px;}
.xfe_c00052{left:582.420000px;}
.x24_c00052{left:583.920000px;}
.x85_c00052{left:586.500000px;}
.x4b_c00052{left:589.500000px;}
.x3f_c00052{left:590.580000px;}
.x77_c00052{left:594.000000px;}
.xac_c00052{left:595.920000px;}
.xe9_c00052{left:597.000000px;}
.xf5_c00052{left:601.920000px;}
.xee_c00052{left:603.000000px;}
.xc3_c00052{left:604.500000px;}
.x54_c00052{left:605.580000px;}
.x9a_c00052{left:609.000000px;}
.x25_c00052{left:610.500000px;}
.xdb_c00052{left:613.080000px;}
.x71_c00052{left:615.000000px;}
.x69_c00052{left:616.500000px;}
.xa6_c00052{left:621.000000px;}
.x5e_c00052{left:622.500000px;}
.xad_c00052{left:624.000000px;}
.x55_c00052{left:627.420000px;}
.x90_c00052{left:628.500000px;}
.xea_c00052{left:629.580000px;}
.x78_c00052{left:633.420000px;}
.xc4_c00052{left:634.500000px;}
.x26_c00052{left:635.580000px;}
.xdc_c00052{left:637.080000px;}
.xd2_c00052{left:638.580000px;}
.xe6_c00052{left:646.080000px;}
.xb4_c00052{left:647.580000px;}
.x5f_c00052{left:649.920000px;}
.x91_c00052{left:651.420000px;}
.xca_c00052{left:654.000000px;}
.x40_c00052{left:655.920000px;}
.x4c_c00052{left:657.000000px;}
.x6a_c00052{left:658.920000px;}
.x72_c00052{left:661.500000px;}
.x79_c00052{left:664.920000px;}
.x7f_c00052{left:666.000000px;}
.xf6_c00052{left:670.500000px;}
.xdd_c00052{left:672.000000px;}
.x4d_c00052{left:674.355000px;}
.xb5_c00052{left:680.580000px;}
.x27_c00052{left:685.920000px;}
.x60_c00052{left:688.500000px;}
.x73_c00052{left:689.775000px;}
.xae_c00052{left:691.500000px;}
.xcb_c00052{left:693.000000px;}
.x41_c00052{left:694.080000px;}
.xbd_c00052{left:703.500000px;}
.x34_c00052{left:705.420000px;}
.xde_c00052{left:706.920000px;}
.x1_c00052{left:709.080000px;}
.x92_c00052{left:715.500000px;}
.x102_c00052{left:716.580000px;}
@media print{
.v1_c00052{vertical-align:-4.533333pt;}
.v0_c00052{vertical-align:0.000000pt;}
.ls1_c00052{letter-spacing:0.000000pt;}
.ls0_c00052{letter-spacing:18.446133pt;}
.ws0_c00052{word-spacing:-5.892016pt;}
.ws1_c00052{word-spacing:0.000000pt;}
.fs6_c00052{font-size:3.040000pt;}
.fs4_c00052{font-size:16.640000pt;}
.fs1_c00052{font-size:18.133333pt;}
.fs0_c00052{font-size:22.666667pt;}
.fs2_c00052{font-size:25.706667pt;}
.fs3_c00052{font-size:28.746667pt;}
.fs5_c00052{font-size:31.733333pt;}
.fs7_c00052{font-size:34.773333pt;}
.fs8_c00052{font-size:37.813333pt;}
.y0_c00052{bottom:0.000000pt;}
.yd3_c00052{bottom:267.026667pt;}
.yd2_c00052{bottom:269.106667pt;}
.ycf_c00052{bottom:281.106667pt;}
.yce_c00052{bottom:283.026667pt;}
.ycd_c00052{bottom:283.226667pt;}
.ycc_c00052{bottom:283.400000pt;}
.yd0_c00052{bottom:283.973333pt;}
.ycb_c00052{bottom:284.360000pt;}
.yd1_c00052{bottom:285.306667pt;}
.yca_c00052{bottom:285.693333pt;}
.yc8_c00052{bottom:298.640000pt;}
.yc2_c00052{bottom:298.826667pt;}
.yc3_c00052{bottom:299.026667pt;}
.yc6_c00052{bottom:299.773333pt;}
.yc5_c00052{bottom:300.560000pt;}
.yc7_c00052{bottom:301.306667pt;}
.yc4_c00052{bottom:301.693333pt;}
.yc9_c00052{bottom:303.026667pt;}
.yc1_c00052{bottom:303.600000pt;}
.yc0_c00052{bottom:315.773333pt;}
.ybd_c00052{bottom:317.106667pt;}
.ybe_c00052{bottom:317.893333pt;}
.ybf_c00052{bottom:318.640000pt;}
.ybb_c00052{bottom:319.026667pt;}
.ybc_c00052{bottom:319.226667pt;}
.yba_c00052{bottom:320.360000pt;}
.yb4_c00052{bottom:334.066667pt;}
.yb5_c00052{bottom:334.440000pt;}
.yb8_c00052{bottom:334.640000pt;}
.yb9_c00052{bottom:335.773333pt;}
.yb7_c00052{bottom:335.973333pt;}
.yb3_c00052{bottom:336.360000pt;}
.yb6_c00052{bottom:336.560000pt;}
.yb1_c00052{bottom:337.106667pt;}
.yb2_c00052{bottom:337.706667pt;}
.yb0_c00052{bottom:352.933333pt;}
.yaf_c00052{bottom:353.493333pt;}
.ya9_c00052{bottom:368.360000pt;}
.yaa_c00052{bottom:369.306667pt;}
.yae_c00052{bottom:369.693333pt;}
.yad_c00052{bottom:370.066667pt;}
.ya8_c00052{bottom:370.440000pt;}
.yab_c00052{bottom:371.026667pt;}
.yac_c00052{bottom:371.973333pt;}
.ya7_c00052{bottom:374.640000pt;}
.ya4_c00052{bottom:387.400000pt;}
.ya3_c00052{bottom:387.600000pt;}
.ya2_c00052{bottom:387.773333pt;}
.ya1_c00052{bottom:388.160000pt;}
.ya5_c00052{bottom:388.360000pt;}
.ya6_c00052{bottom:389.693333pt;}
.y9d_c00052{bottom:403.026667pt;}
.y9c_c00052{bottom:403.973333pt;}
.ya0_c00052{bottom:404.733333pt;}
.y9a_c00052{bottom:404.933333pt;}
.y9b_c00052{bottom:405.106667pt;}
.y9e_c00052{bottom:405.893333pt;}
.y99_c00052{bottom:406.066667pt;}
.y97_c00052{bottom:406.440000pt;}
.y95_c00052{bottom:406.826667pt;}
.y98_c00052{bottom:407.026667pt;}
.y9f_c00052{bottom:407.040000pt;}
.y96_c00052{bottom:408.560000pt;}
.y92_c00052{bottom:422.440000pt;}
.y8f_c00052{bottom:422.826667pt;}
.y90_c00052{bottom:423.226667pt;}
.y93_c00052{bottom:423.400000pt;}
.y91_c00052{bottom:424.360000pt;}
.y94_c00052{bottom:424.560000pt;}
.y8e_c00052{bottom:438.826667pt;}
.y8d_c00052{bottom:439.773333pt;}
.y8b_c00052{bottom:441.306667pt;}
.y8c_c00052{bottom:441.693333pt;}
.y8a_c00052{bottom:443.400000pt;}
.y89_c00052{bottom:456.360000pt;}
.y87_c00052{bottom:459.026667pt;}
.y88_c00052{bottom:459.226667pt;}
.y86_c00052{bottom:459.973333pt;}
.y85_c00052{bottom:460.733333pt;}
.y83_c00052{bottom:474.640000pt;}
.y84_c00052{bottom:475.773333pt;}
.y82_c00052{bottom:476.360000pt;}
.y81_c00052{bottom:477.693333pt;}
.y80_c00052{bottom:478.066667pt;}
.y7e_c00052{bottom:493.106667pt;}
.y7f_c00052{bottom:493.693333pt;}
.y7b_c00052{bottom:494.066667pt;}
.y7d_c00052{bottom:494.640000pt;}
.y7c_c00052{bottom:495.026667pt;}
.y7a_c00052{bottom:495.600000pt;}
.y77_c00052{bottom:509.106667pt;}
.y74_c00052{bottom:509.693333pt;}
.y78_c00052{bottom:511.226667pt;}
.y76_c00052{bottom:511.400000pt;}
.y79_c00052{bottom:511.973333pt;}
.y75_c00052{bottom:512.360000pt;}
.y73_c00052{bottom:513.693333pt;}
.y71_c00052{bottom:526.440000pt;}
.y6f_c00052{bottom:527.773333pt;}
.y70_c00052{bottom:528.560000pt;}
.y72_c00052{bottom:529.693333pt;}
.y6e_c00052{bottom:531.400000pt;}
.y6c_c00052{bottom:545.106667pt;}
.y6b_c00052{bottom:547.026667pt;}
.y6d_c00052{bottom:547.226667pt;}
.y6a_c00052{bottom:547.773333pt;}
.y66_c00052{bottom:564.360000pt;}
.y69_c00052{bottom:564.560000pt;}
.y65_c00052{bottom:564.733333pt;}
.y67_c00052{bottom:565.306667pt;}
.y68_c00052{bottom:565.693333pt;}
.y60_c00052{bottom:579.773333pt;}
.y62_c00052{bottom:580.733333pt;}
.y5f_c00052{bottom:581.106667pt;}
.y61_c00052{bottom:581.693333pt;}
.y63_c00052{bottom:581.893333pt;}
.y64_c00052{bottom:583.026667pt;}
.y5e_c00052{bottom:584.360000pt;}
.y5a_c00052{bottom:597.493333pt;}
.y5c_c00052{bottom:598.440000pt;}
.y5d_c00052{bottom:599.400000pt;}
.y5b_c00052{bottom:600.360000pt;}
.y59_c00052{bottom:601.693333pt;}
.y56_c00052{bottom:615.026667pt;}
.y57_c00052{bottom:615.773333pt;}
.y58_c00052{bottom:616.733333pt;}
.y55_c00052{bottom:617.693333pt;}
.y52_c00052{bottom:633.106667pt;}
.y51_c00052{bottom:635.026667pt;}
.y54_c00052{bottom:635.226667pt;}
.y50_c00052{bottom:635.400000pt;}
.y53_c00052{bottom:635.973333pt;}
.y4f_c00052{bottom:650.440000pt;}
.y4d_c00052{bottom:651.400000pt;}
.y4e_c00052{bottom:652.360000pt;}
.y4b_c00052{bottom:667.773333pt;}
.y48_c00052{bottom:668.160000pt;}
.y4c_c00052{bottom:669.693333pt;}
.y49_c00052{bottom:669.706667pt;}
.y4a_c00052{bottom:670.640000pt;}
.y47_c00052{bottom:685.106667pt;}
.y45_c00052{bottom:687.773333pt;}
.y46_c00052{bottom:687.973333pt;}
.y42_c00052{bottom:703.773333pt;}
.y43_c00052{bottom:704.360000pt;}
.y44_c00052{bottom:704.560000pt;}
.y41_c00052{bottom:705.693333pt;}
.y40_c00052{bottom:707.026667pt;}
.y3c_c00052{bottom:721.106667pt;}
.y3b_c00052{bottom:721.493333pt;}
.y3f_c00052{bottom:722.066667pt;}
.y3e_c00052{bottom:722.640000pt;}
.y3d_c00052{bottom:723.026667pt;}
.y36_c00052{bottom:738.440000pt;}
.y37_c00052{bottom:739.226667pt;}
.y39_c00052{bottom:739.400000pt;}
.y3a_c00052{bottom:739.973333pt;}
.y35_c00052{bottom:740.360000pt;}
.y34_c00052{bottom:740.733333pt;}
.y38_c00052{bottom:741.306667pt;}
.y2f_c00052{bottom:755.773333pt;}
.y30_c00052{bottom:756.560000pt;}
.y32_c00052{bottom:756.733333pt;}
.y31_c00052{bottom:757.693333pt;}
.y33_c00052{bottom:758.640000pt;}
.y2e_c00052{bottom:759.026667pt;}
.y2c_c00052{bottom:773.106667pt;}
.y2d_c00052{bottom:773.893333pt;}
.y2a_c00052{bottom:775.026667pt;}
.y2b_c00052{bottom:775.040000pt;}
.y29_c00052{bottom:776.360000pt;}
.y28_c00052{bottom:792.933333pt;}
.y25_c00052{bottom:807.400000pt;}
.y26_c00052{bottom:807.773333pt;}
.y23_c00052{bottom:809.693333pt;}
.y27_c00052{bottom:809.893333pt;}
.y24_c00052{bottom:810.640000pt;}
.y21_c00052{bottom:811.026667pt;}
.y22_c00052{bottom:811.040000pt;}
.y1f_c00052{bottom:825.493333pt;}
.y20_c00052{bottom:826.440000pt;}
.y1a_c00052{bottom:841.693333pt;}
.y1b_c00052{bottom:843.600000pt;}
.y19_c00052{bottom:843.773333pt;}
.y18_c00052{bottom:844.160000pt;}
.y1d_c00052{bottom:844.360000pt;}
.y1e_c00052{bottom:845.306667pt;}
.y1c_c00052{bottom:845.693333pt;}
.y14_c00052{bottom:859.773333pt;}
.y11_c00052{bottom:860.160000pt;}
.y15_c00052{bottom:861.106667pt;}
.y16_c00052{bottom:861.893333pt;}
.y13_c00052{bottom:862.066667pt;}
.y17_c00052{bottom:863.026667pt;}
.y12_c00052{bottom:863.040000pt;}
.ye_c00052{bottom:878.440000pt;}
.y10_c00052{bottom:880.360000pt;}
.yf_c00052{bottom:880.373333pt;}
.yd_c00052{bottom:902.066667pt;}
.yc_c00052{bottom:902.266667pt;}
.yb_c00052{bottom:903.026667pt;}
.y9_c00052{bottom:903.973333pt;}
.ya_c00052{bottom:904.933333pt;}
.y8_c00052{bottom:919.400000pt;}
.y7_c00052{bottom:920.560000pt;}
.y6_c00052{bottom:922.266667pt;}
.y5_c00052{bottom:941.693333pt;}
.y4_c00052{bottom:944.733333pt;}
.y3_c00052{bottom:945.693333pt;}
.y1_c00052{bottom:978.640000pt;}
.y2_c00052{bottom:979.600000pt;}
.h7_c00052{height:3.739141pt;}
.h5_c00052{height:20.466875pt;}
.h2_c00052{height:22.303646pt;}
.h1_c00052{height:27.879557pt;}
.h3_c00052{height:31.618698pt;}
.h4_c00052{height:35.357839pt;}
.h6_c00052{height:39.031380pt;}
.h8_c00052{height:42.770521pt;}
.h9_c00052{height:46.509661pt;}
.h0_c00052{height:1186.666667pt;}
.w0_c00052{width:782.666667pt;}
.x0_c00052{left:0.000000pt;}
.x28_c00052{left:133.706667pt;}
.x7a_c00052{left:134.666667pt;}
.xd5_c00052{left:136.000000pt;}
.xef_c00052{left:136.960000pt;}
.xc_c00052{left:145.333333pt;}
.x17_c00052{left:147.040000pt;}
.x6b_c00052{left:148.000000pt;}
.xd3_c00052{left:149.706667pt;}
.xdf_c00052{left:154.666667pt;}
.xeb_c00052{left:158.666667pt;}
.x93_c00052{left:160.000000pt;}
.xbe_c00052{left:164.000000pt;}
.x61_c00052{left:165.706667pt;}
.x74_c00052{left:167.626667pt;}
.x4e_c00052{left:169.333333pt;}
.x8c_c00052{left:170.293333pt;}
.xa7_c00052{left:173.333333pt;}
.x29_c00052{left:174.666667pt;}
.x6c_c00052{left:176.373333pt;}
.x56_c00052{left:177.333333pt;}
.x18_c00052{left:183.040000pt;}
.x86_c00052{left:185.706667pt;}
.xc5_c00052{left:189.333333pt;}
.x35_c00052{left:190.666667pt;}
.x2a_c00052{left:194.293333pt;}
.x57_c00052{left:196.373333pt;}
.xd_c00052{left:199.040000pt;}
.x9b_c00052{left:200.000000pt;}
.x7b_c00052{left:201.333333pt;}
.xe0_c00052{left:204.000000pt;}
.xb6_c00052{left:205.333333pt;}
.xcc_c00052{left:208.000000pt;}
.xaf_c00052{left:210.666667pt;}
.xd6_c00052{left:212.000000pt;}
.x94_c00052{left:213.706667pt;}
.x2b_c00052{left:215.040000pt;}
.x87_c00052{left:216.000000pt;}
.xf7_c00052{left:217.706667pt;}
.xbf_c00052{left:219.040000pt;}
.x7c_c00052{left:220.373333pt;}
.x42_c00052{left:221.333333pt;}
.x58_c00052{left:222.666667pt;}
.xcd_c00052{left:225.706667pt;}
.x1f_c00052{left:226.666667pt;}
.x9c_c00052{left:228.000000pt;}
.x36_c00052{left:229.333333pt;}
.x4f_c00052{left:230.666667pt;}
.xc6_c00052{left:233.706667pt;}
.x19_c00052{left:234.666667pt;}
.xb7_c00052{left:236.373333pt;}
.x2c_c00052{left:237.706667pt;}
.xe_c00052{left:240.000000pt;}
.x43_c00052{left:240.960000pt;}
.x75_c00052{left:244.000000pt;}
.x20_c00052{left:246.666667pt;}
.x37_c00052{left:247.626667pt;}
.xd7_c00052{left:252.000000pt;}
.x1a_c00052{left:253.333333pt;}
.xb0_c00052{left:255.040000pt;}
.xf8_c00052{left:256.000000pt;}
.x80_c00052{left:257.333333pt;}
.x62_c00052{left:259.040000pt;}
.xf0_c00052{left:260.000000pt;}
.x8d_c00052{left:263.626667pt;}
.x2d_c00052{left:264.960000pt;}
.xa8_c00052{left:267.040000pt;}
.x9d_c00052{left:270.293333pt;}
.xd8_c00052{left:273.706667pt;}
.xff_c00052{left:275.040000pt;}
.xf9_c00052{left:276.373333pt;}
.xc0_c00052{left:280.000000pt;}
.x3_c00052{left:281.333333pt;}
.x59_c00052{left:283.040000pt;}
.xce_c00052{left:284.000000pt;}
.x95_c00052{left:286.293333pt;}
.x9e_c00052{left:288.373333pt;}
.x63_c00052{left:289.333333pt;}
.xb8_c00052{left:290.293333pt;}
.xf_c00052{left:291.426667pt;}
.xa9_c00052{left:295.040000pt;}
.x38_c00052{left:297.333333pt;}
.x88_c00052{left:300.373333pt;}
.xfa_c00052{left:301.333333pt;}
.x1b_c00052{left:303.626667pt;}
.x44_c00052{left:305.333333pt;}
.x21_c00052{left:306.466667pt;}
.x2e_c00052{left:308.373333pt;}
.xcf_c00052{left:311.040000pt;}
.xf1_c00052{left:312.000000pt;}
.x64_c00052{left:312.960000pt;}
.xe1_c00052{left:315.040000pt;}
.xc7_c00052{left:316.000000pt;}
.x7_c00052{left:317.333333pt;}
.xb9_c00052{left:318.666667pt;}
.x6d_c00052{left:320.000000pt;}
.x10_c00052{left:321.333333pt;}
.xc1_c00052{left:322.666667pt;}
.x45_c00052{left:324.000000pt;}
.x1c_c00052{left:324.960000pt;}
.x81_c00052{left:326.293333pt;}
.x100_c00052{left:327.626667pt;}
.x96_c00052{left:330.666667pt;}
.x39_c00052{left:332.000000pt;}
.xba_c00052{left:334.666667pt;}
.x5a_c00052{left:335.626667pt;}
.xe7_c00052{left:336.760000pt;}
.x8_c00052{left:337.706667pt;}
.x8e_c00052{left:338.666667pt;}
.x46_c00052{left:344.000000pt;}
.x82_c00052{left:345.333333pt;}
.x89_c00052{left:346.666667pt;}
.x9f_c00052{left:347.626667pt;}
.x2_c00052{left:349.333333pt;}
.xb1_c00052{left:350.666667pt;}
.x9_c00052{left:352.000000pt;}
.x4_c00052{left:352.960000pt;}
.x65_c00052{left:355.040000pt;}
.x3a_c00052{left:356.000000pt;}
.x2f_c00052{left:357.706667pt;}
.xe2_c00052{left:358.666667pt;}
.xf2_c00052{left:360.373333pt;}
.x11_c00052{left:363.040000pt;}
.xa0_c00052{left:365.333333pt;}
.xaa_c00052{left:367.040000pt;}
.x22_c00052{left:369.706667pt;}
.xd4_c00052{left:370.666667pt;}
.xc8_c00052{left:375.040000pt;}
.x1d_c00052{left:377.333333pt;}
.x50_c00052{left:381.333333pt;}
.x97_c00052{left:382.293333pt;}
.xa_c00052{left:385.333333pt;}
.x3b_c00052{left:388.373333pt;}
.xa1_c00052{left:389.706667pt;}
.xe3_c00052{left:390.666667pt;}
.xf4_c00052{left:393.333333pt;}
.x8f_c00052{left:394.293333pt;}
.xec_c00052{left:395.626667pt;}
.x47_c00052{left:397.133333pt;}
.x30_c00052{left:399.040000pt;}
.x6e_c00052{left:400.000000pt;}
.xc2_c00052{left:401.706667pt;}
.xf3_c00052{left:402.666667pt;}
.x83_c00052{left:408.000000pt;}
.x5_c00052{left:409.706667pt;}
.x8a_c00052{left:410.666667pt;}
.xb2_c00052{left:412.373333pt;}
.xed_c00052{left:414.666667pt;}
.x7d_c00052{left:415.626667pt;}
.x12_c00052{left:417.333333pt;}
.xfb_c00052{left:418.666667pt;}
.x66_c00052{left:419.626667pt;}
.xbb_c00052{left:421.333333pt;}
.x51_c00052{left:422.293333pt;}
.xb_c00052{left:424.960000pt;}
.xab_c00052{left:428.373333pt;}
.x48_c00052{left:430.666667pt;}
.xa2_c00052{left:432.000000pt;}
.x98_c00052{left:433.706667pt;}
.x31_c00052{left:436.000000pt;}
.x3c_c00052{left:438.293333pt;}
.x52_c00052{left:440.373333pt;}
.x6f_c00052{left:442.293333pt;}
.xfc_c00052{left:444.000000pt;}
.x13_c00052{left:445.333333pt;}
.xd9_c00052{left:446.666667pt;}
.x32_c00052{left:447.626667pt;}
.xe4_c00052{left:449.706667pt;}
.xd0_c00052{left:451.626667pt;}
.x5b_c00052{left:454.666667pt;}
.xfd_c00052{left:456.000000pt;}
.x49_c00052{left:456.960000pt;}
.x67_c00052{left:460.000000pt;}
.x84_c00052{left:460.960000pt;}
.xb3_c00052{left:462.293333pt;}
.x1e_c00052{left:463.626667pt;}
.x76_c00052{left:465.333333pt;}
.x3d_c00052{left:466.666667pt;}
.x6_c00052{left:469.706667pt;}
.xbc_c00052{left:470.666667pt;}
.x99_c00052{left:472.000000pt;}
.xe8_c00052{left:473.333333pt;}
.x4a_c00052{left:476.000000pt;}
.x5c_c00052{left:477.333333pt;}
.x23_c00052{left:478.666667pt;}
.xa3_c00052{left:480.000000pt;}
.x14_c00052{left:480.960000pt;}
.xd1_c00052{left:488.373333pt;}
.x101_c00052{left:489.333333pt;}
.x70_c00052{left:490.666667pt;}
.x53_c00052{left:492.000000pt;}
.x5d_c00052{left:493.333333pt;}
.xa4_c00052{left:494.293333pt;}
.xc9_c00052{left:496.000000pt;}
.x3e_c00052{left:496.960000pt;}
.x15_c00052{left:499.040000pt;}
.xe5_c00052{left:501.706667pt;}
.x7e_c00052{left:502.666667pt;}
.x68_c00052{left:505.706667pt;}
.xda_c00052{left:509.333333pt;}
.x8b_c00052{left:510.666667pt;}
.xa5_c00052{left:512.000000pt;}
.x16_c00052{left:512.960000pt;}
.x33_c00052{left:516.000000pt;}
.xfe_c00052{left:517.706667pt;}
.x24_c00052{left:519.040000pt;}
.x85_c00052{left:521.333333pt;}
.x4b_c00052{left:524.000000pt;}
.x3f_c00052{left:524.960000pt;}
.x77_c00052{left:528.000000pt;}
.xac_c00052{left:529.706667pt;}
.xe9_c00052{left:530.666667pt;}
.xf5_c00052{left:535.040000pt;}
.xee_c00052{left:536.000000pt;}
.xc3_c00052{left:537.333333pt;}
.x54_c00052{left:538.293333pt;}
.x9a_c00052{left:541.333333pt;}
.x25_c00052{left:542.666667pt;}
.xdb_c00052{left:544.960000pt;}
.x71_c00052{left:546.666667pt;}
.x69_c00052{left:548.000000pt;}
.xa6_c00052{left:552.000000pt;}
.x5e_c00052{left:553.333333pt;}
.xad_c00052{left:554.666667pt;}
.x55_c00052{left:557.706667pt;}
.x90_c00052{left:558.666667pt;}
.xea_c00052{left:559.626667pt;}
.x78_c00052{left:563.040000pt;}
.xc4_c00052{left:564.000000pt;}
.x26_c00052{left:564.960000pt;}
.xdc_c00052{left:566.293333pt;}
.xd2_c00052{left:567.626667pt;}
.xe6_c00052{left:574.293333pt;}
.xb4_c00052{left:575.626667pt;}
.x5f_c00052{left:577.706667pt;}
.x91_c00052{left:579.040000pt;}
.xca_c00052{left:581.333333pt;}
.x40_c00052{left:583.040000pt;}
.x4c_c00052{left:584.000000pt;}
.x6a_c00052{left:585.706667pt;}
.x72_c00052{left:588.000000pt;}
.x79_c00052{left:591.040000pt;}
.x7f_c00052{left:592.000000pt;}
.xf6_c00052{left:596.000000pt;}
.xdd_c00052{left:597.333333pt;}
.x4d_c00052{left:599.426667pt;}
.xb5_c00052{left:604.960000pt;}
.x27_c00052{left:609.706667pt;}
.x60_c00052{left:612.000000pt;}
.x73_c00052{left:613.133333pt;}
.xae_c00052{left:614.666667pt;}
.xcb_c00052{left:616.000000pt;}
.x41_c00052{left:616.960000pt;}
.xbd_c00052{left:625.333333pt;}
.x34_c00052{left:627.040000pt;}
.xde_c00052{left:628.373333pt;}
.x1_c00052{left:630.293333pt;}
.x92_c00052{left:636.000000pt;}
.x102_c00052{left:636.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_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_cd296d1870aaf69ede44c1f4.woff2')format("woff");}.ff1_c00053{font-family:ff1_c00053;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7c_c00053{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m64_c00053{transform:matrix(0.308666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308666,0.000000,0.000000,0.250000,0,0);}
.m2f_c00053{transform:matrix(0.327922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327922,0.000000,0.000000,0.250000,0,0);}
.m39_c00053{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.mc3_c00053{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.mc9_c00053{transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);}
.mbe_c00053{transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);}
.m1c_c00053{transform:matrix(0.347866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347866,0.000000,0.000000,0.250000,0,0);}
.m8b_c00053{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m2e_c00053{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);}
.mca_c00053{transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);}
.mba_c00053{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m50_c00053{transform:matrix(0.360084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360084,0.000000,0.000000,0.250000,0,0);}
.md1_c00053{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m37_c00053{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m6_c00053{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m4d_c00053{transform:matrix(0.370399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370399,0.000000,0.000000,0.250000,0,0);}
.m26_c00053{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m1b_c00053{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m89_c00053{transform:matrix(0.371166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371166,0.000000,0.000000,0.250000,0,0);}
.m51_c00053{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.ma6_c00053{transform:matrix(0.376150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376150,0.000000,0.000000,0.250000,0,0);}
.m90_c00053{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.mda_c00053{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mb_c00053{transform:matrix(0.379406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379406,0.000000,0.000000,0.250000,0,0);}
.mcb_c00053{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.ma0_c00053{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m36_c00053{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m73_c00053{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.m49_c00053{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m2d_c00053{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m31_c00053{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.mb7_c00053{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.mf4_c00053{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m70_c00053{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mcc_c00053{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m5_c00053{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.md7_c00053{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.md0_c00053{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.md_c00053{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.mc5_c00053{transform:matrix(0.405675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405675,0.000000,0.000000,0.250000,0,0);}
.m32_c00053{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.mde_c00053{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m18_c00053{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m8f_c00053{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m75_c00053{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m15_c00053{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m88_c00053{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m10_c00053{transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);}
.m86_c00053{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m79_c00053{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m4e_c00053{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m87_c00053{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m4b_c00053{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.me8_c00053{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m2a_c00053{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m8a_c00053{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m58_c00053{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.mcd_c00053{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mee_c00053{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m83_c00053{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m27_c00053{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.md9_c00053{transform:matrix(0.419862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419862,0.000000,0.000000,0.250000,0,0);}
.mc7_c00053{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mce_c00053{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mfa_c00053{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m34_c00053{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.m1f_c00053{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m38_c00053{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m63_c00053{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m5f_c00053{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mf0_c00053{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m16_c00053{transform:matrix(0.426867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426867,0.000000,0.000000,0.250000,0,0);}
.mb6_c00053{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.mfd_c00053{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m62_c00053{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m78_c00053{transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);}
.me2_c00053{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m9f_c00053{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.mf7_c00053{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m6c_c00053{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m80_c00053{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.md3_c00053{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.m6a_c00053{transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);}
.m20_c00053{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m77_c00053{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m55_c00053{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m7f_c00053{transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);}
.m7b_c00053{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.mf9_c00053{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m9_c00053{transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);}
.mfc_c00053{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m53_c00053{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.mf8_c00053{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.mf_c00053{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.mec_c00053{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.ma9_c00053{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m3e_c00053{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m71_c00053{transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);}
.m19_c00053{transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);}
.m9a_c00053{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m12_c00053{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m3b_c00053{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m9c_c00053{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m98_c00053{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m60_c00053{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.m9b_c00053{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.m17_c00053{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m57_c00053{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.mfe_c00053{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m14_c00053{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.m2_c00053{transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);}
.md5_c00053{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.me4_c00053{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m46_c00053{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.m6d_c00053{transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);}
.m48_c00053{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m7d_c00053{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m52_c00053{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m5b_c00053{transform:matrix(0.479592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479592,0.000000,0.000000,0.250000,0,0);}
.m13_c00053{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.med_c00053{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m28_c00053{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m7_c00053{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mbd_c00053{transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);}
.m33_c00053{transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);}
.m1_c00053{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m43_c00053{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m30_c00053{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m82_c00053{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.me0_c00053{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mdd_c00053{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m2c_c00053{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.mf3_c00053{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m9d_c00053{transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);}
.mb5_c00053{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.mc_c00053{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);}
.me6_c00053{transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);}
.m5d_c00053{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m93_c00053{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.md4_c00053{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.mcf_c00053{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m41_c00053{transform:matrix(0.507421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507421,0.000000,0.000000,0.250000,0,0);}
.mb2_c00053{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m61_c00053{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m72_c00053{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m29_c00053{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.ma2_c00053{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m44_c00053{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m68_c00053{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.md2_c00053{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.mef_c00053{transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);}
.m56_c00053{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.maf_c00053{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m66_c00053{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m81_c00053{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mb9_c00053{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.maa_c00053{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mea_c00053{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.meb_c00053{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m74_c00053{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m35_c00053{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mc1_c00053{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mc8_c00053{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m40_c00053{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m25_c00053{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m4c_c00053{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m8e_c00053{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m3c_c00053{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.md6_c00053{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m95_c00053{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m92_c00053{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.ma7_c00053{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.me5_c00053{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m23_c00053{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m96_c00053{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m8c_c00053{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m84_c00053{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.mf5_c00053{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m91_c00053{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mae_c00053{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mf1_c00053{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m4f_c00053{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mc4_c00053{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m94_c00053{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m1a_c00053{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m5c_c00053{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mbf_c00053{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m99_c00053{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.ma_c00053{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m4a_c00053{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m7a_c00053{transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);}
.m24_c00053{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m3a_c00053{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.me9_c00053{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m9e_c00053{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m42_c00053{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mdb_c00053{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m6f_c00053{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mf2_c00053{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.mab_c00053{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mc0_c00053{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mb4_c00053{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.m7e_c00053{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.mfb_c00053{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m8d_c00053{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m6e_c00053{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m1e_c00053{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.mb3_c00053{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m47_c00053{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mbc_c00053{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.mdc_c00053{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.me1_c00053{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.ma3_c00053{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m4_c00053{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m6b_c00053{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m97_c00053{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.mc2_c00053{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.ma4_c00053{transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);}
.mb8_c00053{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m5e_c00053{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m22_c00053{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.m69_c00053{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m67_c00053{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);}
.me_c00053{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.md8_c00053{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mbb_c00053{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m0_c00053{transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);}
.m3_c00053{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m45_c00053{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m54_c00053{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m5a_c00053{transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);}
.m11_c00053{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m1d_c00053{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.m59_c00053{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mac_c00053{transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);}
.ma1_c00053{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m2b_c00053{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.me7_c00053{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.ma5_c00053{transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);}
.m3f_c00053{transform:matrix(0.742788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742788,0.000000,0.000000,0.250000,0,0);}
.mb1_c00053{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m85_c00053{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.ma8_c00053{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mb0_c00053{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mad_c00053{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mf6_c00053{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.mc6_c00053{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m3d_c00053{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.mdf_c00053{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.me3_c00053{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m65_c00053{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m8_c00053{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m76_c00053{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m21_c00053{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-16.889280px;}
.ws1_c00053{word-spacing:0.000000px;}
._0_c00053{width:6.095728px;}
.fc0_c00053{color:transparent;}
.fs7_c00053{font-size:3.420000px;}
.fs4_c00053{font-size:13.620000px;}
.fs6_c00053{font-size:18.720000px;}
.fs0_c00053{font-size:20.400000px;}
.fs3_c00053{font-size:25.500000px;}
.fs1_c00053{font-size:28.920000px;}
.fs5_c00053{font-size:32.340000px;}
.fs2_c00053{font-size:35.700000px;}
.fs8_c00053{font-size:39.120000px;}
.y0_c00053{bottom:0.000000px;}
.ycd_c00053{bottom:252.405000px;}
.yc9_c00053{bottom:253.245000px;}
.ycb_c00053{bottom:254.325000px;}
.ycc_c00053{bottom:254.745000px;}
.yca_c00053{bottom:255.405000px;}
.ycf_c00053{bottom:255.825000px;}
.yce_c00053{bottom:256.905000px;}
.yc5_c00053{bottom:274.245000px;}
.yc6_c00053{bottom:275.130000px;}
.yc8_c00053{bottom:275.970000px;}
.yc7_c00053{bottom:276.405000px;}
.yc2_c00053{bottom:292.905000px;}
.ybf_c00053{bottom:293.745000px;}
.yc3_c00053{bottom:294.630000px;}
.yc4_c00053{bottom:294.825000px;}
.yc0_c00053{bottom:295.905000px;}
.yc1_c00053{bottom:296.970000px;}
.ybc_c00053{bottom:313.245000px;}
.ybe_c00053{bottom:314.325000px;}
.ybb_c00053{bottom:315.405000px;}
.ybd_c00053{bottom:316.905000px;}
.yb5_c00053{bottom:332.745000px;}
.yb9_c00053{bottom:333.825000px;}
.yb7_c00053{bottom:334.245000px;}
.yb6_c00053{bottom:334.905000px;}
.yba_c00053{bottom:335.130000px;}
.yb8_c00053{bottom:336.405000px;}
.yb4_c00053{bottom:351.405000px;}
.yb0_c00053{bottom:352.245000px;}
.yb1_c00053{bottom:354.405000px;}
.yb3_c00053{bottom:354.630000px;}
.yb2_c00053{bottom:355.905000px;}
.yac_c00053{bottom:370.905000px;}
.yad_c00053{bottom:371.970000px;}
.yab_c00053{bottom:372.825000px;}
.yae_c00053{bottom:373.245000px;}
.yaa_c00053{bottom:374.130000px;}
.yaf_c00053{bottom:374.970000px;}
.ya9_c00053{bottom:375.405000px;}
.ya8_c00053{bottom:390.405000px;}
.ya5_c00053{bottom:391.905000px;}
.ya6_c00053{bottom:392.745000px;}
.ya7_c00053{bottom:393.630000px;}
.ya4_c00053{bottom:394.905000px;}
.ya0_c00053{bottom:412.245000px;}
.ya2_c00053{bottom:412.680000px;}
.ya3_c00053{bottom:413.130000px;}
.y9f_c00053{bottom:414.405000px;}
.ya1_c00053{bottom:414.630000px;}
.y9d_c00053{bottom:431.745000px;}
.y9a_c00053{bottom:432.825000px;}
.y9e_c00053{bottom:433.470000px;}
.y99_c00053{bottom:433.905000px;}
.y9b_c00053{bottom:434.130000px;}
.y9c_c00053{bottom:435.405000px;}
.y95_c00053{bottom:450.405000px;}
.y94_c00053{bottom:451.245000px;}
.y98_c00053{bottom:452.970000px;}
.y97_c00053{bottom:453.405000px;}
.y96_c00053{bottom:454.905000px;}
.y93_c00053{bottom:468.825000px;}
.y91_c00053{bottom:469.905000px;}
.y92_c00053{bottom:470.745000px;}
.y8d_c00053{bottom:471.180000px;}
.y90_c00053{bottom:472.245000px;}
.y8f_c00053{bottom:473.130000px;}
.y8e_c00053{bottom:474.405000px;}
.y8c_c00053{bottom:490.245000px;}
.y8a_c00053{bottom:491.745000px;}
.y88_c00053{bottom:492.405000px;}
.y8b_c00053{bottom:492.630000px;}
.y89_c00053{bottom:493.905000px;}
.y87_c00053{bottom:510.180000px;}
.y86_c00053{bottom:510.825000px;}
.y84_c00053{bottom:511.245000px;}
.y82_c00053{bottom:512.130000px;}
.y85_c00053{bottom:512.970000px;}
.y83_c00053{bottom:513.405000px;}
.y7f_c00053{bottom:530.745000px;}
.y81_c00053{bottom:531.405000px;}
.y80_c00053{bottom:531.825000px;}
.y7d_c00053{bottom:532.905000px;}
.y7e_c00053{bottom:533.130000px;}
.y7b_c00053{bottom:551.325000px;}
.y7c_c00053{bottom:551.550000px;}
.y7a_c00053{bottom:552.405000px;}
.y79_c00053{bottom:552.630000px;}
.y75_c00053{bottom:568.680000px;}
.y77_c00053{bottom:568.905000px;}
.y76_c00053{bottom:569.745000px;}
.y73_c00053{bottom:571.905000px;}
.y74_c00053{bottom:571.920000px;}
.y78_c00053{bottom:572.130000px;}
.y70_c00053{bottom:591.405000px;}
.y72_c00053{bottom:591.630000px;}
.y71_c00053{bottom:592.470000px;}
.y6d_c00053{bottom:608.745000px;}
.y6e_c00053{bottom:609.825000px;}
.y6c_c00053{bottom:610.905000px;}
.y6f_c00053{bottom:611.130000px;}
.y6b_c00053{bottom:628.245000px;}
.y6a_c00053{bottom:629.325000px;}
.y68_c00053{bottom:630.405000px;}
.y69_c00053{bottom:630.825000px;}
.y67_c00053{bottom:631.905000px;}
.y65_c00053{bottom:649.245000px;}
.y66_c00053{bottom:650.325000px;}
.y64_c00053{bottom:651.405000px;}
.y63_c00053{bottom:666.405000px;}
.y62_c00053{bottom:667.245000px;}
.y61_c00053{bottom:668.745000px;}
.y5f_c00053{bottom:670.905000px;}
.y60_c00053{bottom:670.920000px;}
.y5d_c00053{bottom:688.245000px;}
.y5e_c00053{bottom:690.405000px;}
.y5c_c00053{bottom:706.680000px;}
.y5b_c00053{bottom:707.745000px;}
.y59_c00053{bottom:708.630000px;}
.y58_c00053{bottom:709.905000px;}
.y5a_c00053{bottom:709.920000px;}
.y54_c00053{bottom:725.325000px;}
.y55_c00053{bottom:726.405000px;}
.y57_c00053{bottom:727.245000px;}
.y53_c00053{bottom:728.325000px;}
.y56_c00053{bottom:729.405000px;}
.y52_c00053{bottom:745.905000px;}
.y50_c00053{bottom:746.745000px;}
.y4f_c00053{bottom:747.825000px;}
.y4d_c00053{bottom:748.245000px;}
.y51_c00053{bottom:750.405000px;}
.y4e_c00053{bottom:750.420000px;}
.y4b_c00053{bottom:766.245000px;}
.y4c_c00053{bottom:767.325000px;}
.y49_c00053{bottom:768.405000px;}
.y4a_c00053{bottom:769.470000px;}
.y43_c00053{bottom:785.745000px;}
.y45_c00053{bottom:786.825000px;}
.y44_c00053{bottom:787.245000px;}
.y47_c00053{bottom:787.905000px;}
.y46_c00053{bottom:788.130000px;}
.y48_c00053{bottom:788.325000px;}
.y42_c00053{bottom:789.405000px;}
.y3d_c00053{bottom:805.680000px;}
.y40_c00053{bottom:806.325000px;}
.y3f_c00053{bottom:806.550000px;}
.y3b_c00053{bottom:806.745000px;}
.y41_c00053{bottom:807.405000px;}
.y3e_c00053{bottom:807.630000px;}
.y3c_c00053{bottom:808.905000px;}
.y39_c00053{bottom:825.825000px;}
.y36_c00053{bottom:826.245000px;}
.y3a_c00053{bottom:826.905000px;}
.y37_c00053{bottom:827.130000px;}
.y38_c00053{bottom:827.970000px;}
.y35_c00053{bottom:828.405000px;}
.y30_c00053{bottom:845.745000px;}
.y34_c00053{bottom:846.825000px;}
.y33_c00053{bottom:847.470000px;}
.y31_c00053{bottom:847.905000px;}
.y32_c00053{bottom:848.970000px;}
.y2f_c00053{bottom:864.405000px;}
.y2c_c00053{bottom:864.825000px;}
.y2a_c00053{bottom:865.245000px;}
.y2e_c00053{bottom:866.325000px;}
.y2d_c00053{bottom:866.970000px;}
.y2b_c00053{bottom:867.405000px;}
.y29_c00053{bottom:883.680000px;}
.y28_c00053{bottom:884.745000px;}
.y27_c00053{bottom:886.905000px;}
.y26_c00053{bottom:903.405000px;}
.y25_c00053{bottom:905.745000px;}
.y22_c00053{bottom:906.630000px;}
.y24_c00053{bottom:906.825000px;}
.y23_c00053{bottom:907.905000px;}
.y1f_c00053{bottom:923.970000px;}
.y21_c00053{bottom:924.825000px;}
.y1e_c00053{bottom:925.245000px;}
.y20_c00053{bottom:926.130000px;}
.y1c_c00053{bottom:926.325000px;}
.y1d_c00053{bottom:927.405000px;}
.y1a_c00053{bottom:942.825000px;}
.y17_c00053{bottom:944.745000px;}
.y18_c00053{bottom:945.630000px;}
.y1b_c00053{bottom:945.825000px;}
.y19_c00053{bottom:946.905000px;}
.y13_c00053{bottom:964.245000px;}
.y16_c00053{bottom:964.905000px;}
.y15_c00053{bottom:966.405000px;}
.y14_c00053{bottom:966.420000px;}
.ye_c00053{bottom:995.325000px;}
.yf_c00053{bottom:996.405000px;}
.y12_c00053{bottom:997.050000px;}
.y10_c00053{bottom:997.470000px;}
.y11_c00053{bottom:998.130000px;}
.yd_c00053{bottom:1015.905000px;}
.yc_c00053{bottom:1029.405000px;}
.y9_c00053{bottom:1029.825000px;}
.ya_c00053{bottom:1030.050000px;}
.y6_c00053{bottom:1030.905000px;}
.y8_c00053{bottom:1031.970000px;}
.y7_c00053{bottom:1032.195000px;}
.yb_c00053{bottom:1033.050000px;}
.y5_c00053{bottom:1060.905000px;}
.y3_c00053{bottom:1061.745000px;}
.y4_c00053{bottom:1061.970000px;}
.y2_c00053{bottom:1099.905000px;}
.y1_c00053{bottom:1102.050000px;}
.h8_c00053{height:4.206533px;}
.h5_c00053{height:16.752334px;}
.h7_c00053{height:23.025234px;}
.h1_c00053{height:25.091602px;}
.h4_c00053{height:31.364502px;}
.h2_c00053{height:35.571035px;}
.h6_c00053{height:39.777568px;}
.h3_c00053{height:43.910303px;}
.h9_c00053{height:48.116836px;}
.h0_c00053{height:1335.000000px;}
.w0_c00053{width:880.500000px;}
.x0_c00053{left:0.000000px;}
.x100_c00053{left:148.500000px;}
.xd2_c00053{left:149.580000px;}
.x98_c00053{left:151.080000px;}
.x34_c00053{left:153.000000px;}
.x2_c00053{left:154.080000px;}
.x55_c00053{left:155.775000px;}
.x19_c00053{left:167.580000px;}
.x23_c00053{left:169.920000px;}
.xc0_c00053{left:171.420000px;}
.xcd_c00053{left:178.920000px;}
.x4a_c00053{left:180.000000px;}
.x35_c00053{left:183.000000px;}
.xb6_c00053{left:184.080000px;}
.x85_c00053{left:190.500000px;}
.x61_c00053{left:193.080000px;}
.x8e_c00053{left:194.355000px;}
.xc1_c00053{left:195.420000px;}
.xf0_c00053{left:196.500000px;}
.xaa_c00053{left:197.580000px;}
.x56_c00053{left:202.275000px;}
.x4b_c00053{left:205.500000px;}
.x104_c00053{left:206.580000px;}
.x71_c00053{left:208.500000px;}
.x40_c00053{left:210.420000px;}
.x24_c00053{left:213.420000px;}
.x8_c00053{left:214.500000px;}
.xd3_c00053{left:217.500000px;}
.xbb_c00053{left:220.500000px;}
.xc2_c00053{left:222.000000px;}
.x105_c00053{left:223.920000px;}
.x101_c00053{left:225.000000px;}
.x36_c00053{left:227.580000px;}
.x1a_c00053{left:229.080000px;}
.xf1_c00053{left:231.000000px;}
.x72_c00053{left:232.080000px;}
.xa7_c00053{left:234.420000px;}
.x9_c00053{left:235.500000px;}
.x57_c00053{left:237.000000px;}
.xe4_c00053{left:240.000000px;}
.x67_c00053{left:242.580000px;}
.xdc_c00053{left:244.500000px;}
.x9f_c00053{left:247.500000px;}
.xf8_c00053{left:249.420000px;}
.xb1_c00053{left:250.500000px;}
.x93_c00053{left:252.000000px;}
.x37_c00053{left:255.000000px;}
.x2c_c00053{left:256.080000px;}
.x3_c00053{left:257.580000px;}
.x89_c00053{left:259.500000px;}
.x41_c00053{left:262.500000px;}
.xd4_c00053{left:267.420000px;}
.x7f_c00053{left:269.580000px;}
.x25_c00053{left:271.500000px;}
.xa8_c00053{left:273.000000px;}
.xb7_c00053{left:274.500000px;}
.x38_c00053{left:277.920000px;}
.x86_c00053{left:279.000000px;}
.x4c_c00053{left:280.080000px;}
.x99_c00053{left:283.080000px;}
.xdd_c00053{left:285.000000px;}
.x1b_c00053{left:287.580000px;}
.x68_c00053{left:289.500000px;}
.xe5_c00053{left:291.000000px;}
.xa_c00053{left:292.080000px;}
.xd5_c00053{left:294.000000px;}
.xce_c00053{left:295.500000px;}
.x62_c00053{left:298.080000px;}
.xa0_c00053{left:300.000000px;}
.xc3_c00053{left:301.500000px;}
.x94_c00053{left:303.000000px;}
.x2d_c00053{left:305.580000px;}
.xfb_c00053{left:307.080000px;}
.x58_c00053{left:309.420000px;}
.xaf_c00053{left:312.000000px;}
.x9a_c00053{left:315.000000px;}
.xbc_c00053{left:316.920000px;}
.x73_c00053{left:318.000000px;}
.xab_c00053{left:319.500000px;}
.xb_c00053{left:322.500000px;}
.x39_c00053{left:323.580000px;}
.x95_c00053{left:325.080000px;}
.xc4_c00053{left:328.080000px;}
.x4d_c00053{left:329.580000px;}
.xf9_c00053{left:333.000000px;}
.x8f_c00053{left:334.920000px;}
.x59_c00053{left:337.500000px;}
.xec_c00053{left:339.000000px;}
.xf4_c00053{left:340.500000px;}
.xde_c00053{left:342.420000px;}
.xb2_c00053{left:343.500000px;}
.x74_c00053{left:346.500000px;}
.x8a_c00053{left:347.775000px;}
.x42_c00053{left:351.420000px;}
.x1c_c00053{left:352.920000px;}
.x2e_c00053{left:354.000000px;}
.x80_c00053{left:355.500000px;}
.x3a_c00053{left:357.000000px;}
.xfe_c00053{left:358.500000px;}
.x4_c00053{left:361.080000px;}
.x26_c00053{left:363.000000px;}
.xc5_c00053{left:366.420000px;}
.xda_c00053{left:367.920000px;}
.x75_c00053{left:369.000000px;}
.xf5_c00053{left:370.920000px;}
.xb0_c00053{left:373.500000px;}
.x5a_c00053{left:375.420000px;}
.xa1_c00053{left:376.920000px;}
.x2f_c00053{left:378.000000px;}
.x69_c00053{left:379.500000px;}
.xed_c00053{left:381.000000px;}
.x63_c00053{left:382.500000px;}
.x27_c00053{left:384.000000px;}
.xc_c00053{left:385.080000px;}
.x1d_c00053{left:388.080000px;}
.x76_c00053{left:394.500000px;}
.x6a_c00053{left:397.500000px;}
.x1_c00053{left:399.000000px;}
.x81_c00053{left:400.500000px;}
.xd_c00053{left:405.420000px;}
.xcf_c00053{left:408.420000px;}
.xc6_c00053{left:409.500000px;}
.x17_c00053{left:411.000000px;}
.x8b_c00053{left:412.080000px;}
.x87_c00053{left:414.420000px;}
.x77_c00053{left:417.000000px;}
.xac_c00053{left:418.500000px;}
.xe_c00053{left:419.580000px;}
.x43_c00053{left:421.080000px;}
.x6b_c00053{left:424.920000px;}
.x102_c00053{left:426.000000px;}
.xc7_c00053{left:427.500000px;}
.xfc_c00053{left:430.500000px;}
.x5b_c00053{left:432.000000px;}
.x4e_c00053{left:433.080000px;}
.xa2_c00053{left:434.580000px;}
.x5_c00053{left:437.580000px;}
.x78_c00053{left:439.920000px;}
.x3b_c00053{left:442.920000px;}
.x1e_c00053{left:444.000000px;}
.xfd_c00053{left:445.920000px;}
.x18_c00053{left:447.420000px;}
.xe6_c00053{left:451.080000px;}
.xb3_c00053{left:453.000000px;}
.x5c_c00053{left:454.500000px;}
.x64_c00053{left:457.500000px;}
.x9b_c00053{left:459.000000px;}
.x28_c00053{left:461.580000px;}
.x82_c00053{left:463.080000px;}
.x4f_c00053{left:464.580000px;}
.xdf_c00053{left:466.500000px;}
.x90_c00053{left:467.580000px;}
.x44_c00053{left:469.920000px;}
.x88_c00053{left:471.000000px;}
.x65_c00053{left:477.000000px;}
.xe7_c00053{left:478.500000px;}
.xb8_c00053{left:480.000000px;}
.xf_c00053{left:481.080000px;}
.xf2_c00053{left:483.420000px;}
.x79_c00053{left:484.500000px;}
.xa3_c00053{left:487.500000px;}
.x30_c00053{left:490.080000px;}
.x6c_c00053{left:491.580000px;}
.x45_c00053{left:495.000000px;}
.xff_c00053{left:499.500000px;}
.x10_c00053{left:501.420000px;}
.xdb_c00053{left:502.500000px;}
.x1f_c00053{left:503.580000px;}
.xf3_c00053{left:505.080000px;}
.xe0_c00053{left:506.580000px;}
.x6d_c00053{left:508.080000px;}
.xc8_c00053{left:511.080000px;}
.xb9_c00053{left:512.580000px;}
.x6_c00053{left:514.080000px;}
.xa9_c00053{left:516.000000px;}
.x91_c00053{left:517.080000px;}
.x46_c00053{left:518.580000px;}
.x7a_c00053{left:520.500000px;}
.x9c_c00053{left:523.080000px;}
.xe1_c00053{left:525.855000px;}
.xbd_c00053{left:527.580000px;}
.xc9_c00053{left:529.920000px;}
.x20_c00053{left:531.855000px;}
.xb4_c00053{left:532.920000px;}
.x66_c00053{left:534.000000px;}
.x3c_c00053{left:535.500000px;}
.x50_c00053{left:536.580000px;}
.x8c_c00053{left:538.500000px;}
.xee_c00053{left:540.000000px;}
.x29_c00053{left:542.580000px;}
.x106_c00053{left:544.500000px;}
.x8d_c00053{left:547.500000px;}
.x83_c00053{left:549.000000px;}
.xd0_c00053{left:553.080000px;}
.x21_c00053{left:555.420000px;}
.x47_c00053{left:556.920000px;}
.x11_c00053{left:558.420000px;}
.x31_c00053{left:561.000000px;}
.x5d_c00053{left:562.920000px;}
.x51_c00053{left:567.420000px;}
.x3d_c00053{left:570.000000px;}
.x22_c00053{left:571.920000px;}
.xf6_c00053{left:573.000000px;}
.x6e_c00053{left:576.000000px;}
.x103_c00053{left:577.500000px;}
.xba_c00053{left:579.000000px;}
.xa4_c00053{left:580.080000px;}
.xd6_c00053{left:581.580000px;}
.x7b_c00053{left:586.500000px;}
.x92_c00053{left:589.500000px;}
.x2a_c00053{left:592.920000px;}
.x32_c00053{left:594.000000px;}
.x7_c00053{left:595.275000px;}
.x52_c00053{left:597.000000px;}
.xf7_c00053{left:598.920000px;}
.xe2_c00053{left:600.000000px;}
.x7c_c00053{left:603.000000px;}
.x9d_c00053{left:604.275000px;}
.x12_c00053{left:605.580000px;}
.xfa_c00053{left:609.420000px;}
.xd7_c00053{left:612.420000px;}
.x48_c00053{left:615.420000px;}
.xe8_c00053{left:616.500000px;}
.xca_c00053{left:619.080000px;}
.x7d_c00053{left:622.500000px;}
.xa5_c00053{left:624.420000px;}
.x107_c00053{left:627.420000px;}
.x5e_c00053{left:628.920000px;}
.xe3_c00053{left:630.000000px;}
.xe9_c00053{left:631.500000px;}
.x96_c00053{left:632.580000px;}
.x6f_c00053{left:637.080000px;}
.xad_c00053{left:642.000000px;}
.xd8_c00053{left:645.000000px;}
.x3e_c00053{left:646.920000px;}
.xea_c00053{left:648.420000px;}
.xef_c00053{left:649.500000px;}
.x13_c00053{left:653.580000px;}
.xcb_c00053{left:658.080000px;}
.x53_c00053{left:659.355000px;}
.x70_c00053{left:660.420000px;}
.xbe_c00053{left:663.000000px;}
.x97_c00053{left:664.080000px;}
.x33_c00053{left:667.080000px;}
.xd9_c00053{left:669.000000px;}
.x5f_c00053{left:670.920000px;}
.x49_c00053{left:672.000000px;}
.xeb_c00053{left:673.500000px;}
.x14_c00053{left:675.000000px;}
.xb5_c00053{left:681.000000px;}
.x3f_c00053{left:682.500000px;}
.x15_c00053{left:687.420000px;}
.x84_c00053{left:688.500000px;}
.xa6_c00053{left:690.000000px;}
.x2b_c00053{left:692.580000px;}
.x54_c00053{left:694.500000px;}
.x9e_c00053{left:697.920000px;}
.xd1_c00053{left:699.420000px;}
.x7e_c00053{left:700.500000px;}
.xcc_c00053{left:703.500000px;}
.x60_c00053{left:704.580000px;}
.xbf_c00053{left:706.080000px;}
.xae_c00053{left:708.420000px;}
.x16_c00053{left:711.420000px;}
@media print{
.v0_c00053{vertical-align:0.000000pt;}
.ls0_c00053{letter-spacing:0.000000pt;}
.ws0_c00053{word-spacing:-15.012693pt;}
.ws1_c00053{word-spacing:0.000000pt;}
._0_c00053{width:5.418425pt;}
.fs7_c00053{font-size:3.040000pt;}
.fs4_c00053{font-size:12.106667pt;}
.fs6_c00053{font-size:16.640000pt;}
.fs0_c00053{font-size:18.133333pt;}
.fs3_c00053{font-size:22.666667pt;}
.fs1_c00053{font-size:25.706667pt;}
.fs5_c00053{font-size:28.746667pt;}
.fs2_c00053{font-size:31.733333pt;}
.fs8_c00053{font-size:34.773333pt;}
.y0_c00053{bottom:0.000000pt;}
.ycd_c00053{bottom:224.360000pt;}
.yc9_c00053{bottom:225.106667pt;}
.ycb_c00053{bottom:226.066667pt;}
.ycc_c00053{bottom:226.440000pt;}
.yca_c00053{bottom:227.026667pt;}
.ycf_c00053{bottom:227.400000pt;}
.yce_c00053{bottom:228.360000pt;}
.yc5_c00053{bottom:243.773333pt;}
.yc6_c00053{bottom:244.560000pt;}
.yc8_c00053{bottom:245.306667pt;}
.yc7_c00053{bottom:245.693333pt;}
.yc2_c00053{bottom:260.360000pt;}
.ybf_c00053{bottom:261.106667pt;}
.yc3_c00053{bottom:261.893333pt;}
.yc4_c00053{bottom:262.066667pt;}
.yc0_c00053{bottom:263.026667pt;}
.yc1_c00053{bottom:263.973333pt;}
.ybc_c00053{bottom:278.440000pt;}
.ybe_c00053{bottom:279.400000pt;}
.ybb_c00053{bottom:280.360000pt;}
.ybd_c00053{bottom:281.693333pt;}
.yb5_c00053{bottom:295.773333pt;}
.yb9_c00053{bottom:296.733333pt;}
.yb7_c00053{bottom:297.106667pt;}
.yb6_c00053{bottom:297.693333pt;}
.yba_c00053{bottom:297.893333pt;}
.yb8_c00053{bottom:299.026667pt;}
.yb4_c00053{bottom:312.360000pt;}
.yb0_c00053{bottom:313.106667pt;}
.yb1_c00053{bottom:315.026667pt;}
.yb3_c00053{bottom:315.226667pt;}
.yb2_c00053{bottom:316.360000pt;}
.yac_c00053{bottom:329.693333pt;}
.yad_c00053{bottom:330.640000pt;}
.yab_c00053{bottom:331.400000pt;}
.yae_c00053{bottom:331.773333pt;}
.yaa_c00053{bottom:332.560000pt;}
.yaf_c00053{bottom:333.306667pt;}
.ya9_c00053{bottom:333.693333pt;}
.ya8_c00053{bottom:347.026667pt;}
.ya5_c00053{bottom:348.360000pt;}
.ya6_c00053{bottom:349.106667pt;}
.ya7_c00053{bottom:349.893333pt;}
.ya4_c00053{bottom:351.026667pt;}
.ya0_c00053{bottom:366.440000pt;}
.ya2_c00053{bottom:366.826667pt;}
.ya3_c00053{bottom:367.226667pt;}
.y9f_c00053{bottom:368.360000pt;}
.ya1_c00053{bottom:368.560000pt;}
.y9d_c00053{bottom:383.773333pt;}
.y9a_c00053{bottom:384.733333pt;}
.y9e_c00053{bottom:385.306667pt;}
.y99_c00053{bottom:385.693333pt;}
.y9b_c00053{bottom:385.893333pt;}
.y9c_c00053{bottom:387.026667pt;}
.y95_c00053{bottom:400.360000pt;}
.y94_c00053{bottom:401.106667pt;}
.y98_c00053{bottom:402.640000pt;}
.y97_c00053{bottom:403.026667pt;}
.y96_c00053{bottom:404.360000pt;}
.y93_c00053{bottom:416.733333pt;}
.y91_c00053{bottom:417.693333pt;}
.y92_c00053{bottom:418.440000pt;}
.y8d_c00053{bottom:418.826667pt;}
.y90_c00053{bottom:419.773333pt;}
.y8f_c00053{bottom:420.560000pt;}
.y8e_c00053{bottom:421.693333pt;}
.y8c_c00053{bottom:435.773333pt;}
.y8a_c00053{bottom:437.106667pt;}
.y88_c00053{bottom:437.693333pt;}
.y8b_c00053{bottom:437.893333pt;}
.y89_c00053{bottom:439.026667pt;}
.y87_c00053{bottom:453.493333pt;}
.y86_c00053{bottom:454.066667pt;}
.y84_c00053{bottom:454.440000pt;}
.y82_c00053{bottom:455.226667pt;}
.y85_c00053{bottom:455.973333pt;}
.y83_c00053{bottom:456.360000pt;}
.y7f_c00053{bottom:471.773333pt;}
.y81_c00053{bottom:472.360000pt;}
.y80_c00053{bottom:472.733333pt;}
.y7d_c00053{bottom:473.693333pt;}
.y7e_c00053{bottom:473.893333pt;}
.y7b_c00053{bottom:490.066667pt;}
.y7c_c00053{bottom:490.266667pt;}
.y7a_c00053{bottom:491.026667pt;}
.y79_c00053{bottom:491.226667pt;}
.y75_c00053{bottom:505.493333pt;}
.y77_c00053{bottom:505.693333pt;}
.y76_c00053{bottom:506.440000pt;}
.y73_c00053{bottom:508.360000pt;}
.y74_c00053{bottom:508.373333pt;}
.y78_c00053{bottom:508.560000pt;}
.y70_c00053{bottom:525.693333pt;}
.y72_c00053{bottom:525.893333pt;}
.y71_c00053{bottom:526.640000pt;}
.y6d_c00053{bottom:541.106667pt;}
.y6e_c00053{bottom:542.066667pt;}
.y6c_c00053{bottom:543.026667pt;}
.y6f_c00053{bottom:543.226667pt;}
.y6b_c00053{bottom:558.440000pt;}
.y6a_c00053{bottom:559.400000pt;}
.y68_c00053{bottom:560.360000pt;}
.y69_c00053{bottom:560.733333pt;}
.y67_c00053{bottom:561.693333pt;}
.y65_c00053{bottom:577.106667pt;}
.y66_c00053{bottom:578.066667pt;}
.y64_c00053{bottom:579.026667pt;}
.y63_c00053{bottom:592.360000pt;}
.y62_c00053{bottom:593.106667pt;}
.y61_c00053{bottom:594.440000pt;}
.y5f_c00053{bottom:596.360000pt;}
.y60_c00053{bottom:596.373333pt;}
.y5d_c00053{bottom:611.773333pt;}
.y5e_c00053{bottom:613.693333pt;}
.y5c_c00053{bottom:628.160000pt;}
.y5b_c00053{bottom:629.106667pt;}
.y59_c00053{bottom:629.893333pt;}
.y58_c00053{bottom:631.026667pt;}
.y5a_c00053{bottom:631.040000pt;}
.y54_c00053{bottom:644.733333pt;}
.y55_c00053{bottom:645.693333pt;}
.y57_c00053{bottom:646.440000pt;}
.y53_c00053{bottom:647.400000pt;}
.y56_c00053{bottom:648.360000pt;}
.y52_c00053{bottom:663.026667pt;}
.y50_c00053{bottom:663.773333pt;}
.y4f_c00053{bottom:664.733333pt;}
.y4d_c00053{bottom:665.106667pt;}
.y51_c00053{bottom:667.026667pt;}
.y4e_c00053{bottom:667.040000pt;}
.y4b_c00053{bottom:681.106667pt;}
.y4c_c00053{bottom:682.066667pt;}
.y49_c00053{bottom:683.026667pt;}
.y4a_c00053{bottom:683.973333pt;}
.y43_c00053{bottom:698.440000pt;}
.y45_c00053{bottom:699.400000pt;}
.y44_c00053{bottom:699.773333pt;}
.y47_c00053{bottom:700.360000pt;}
.y46_c00053{bottom:700.560000pt;}
.y48_c00053{bottom:700.733333pt;}
.y42_c00053{bottom:701.693333pt;}
.y3d_c00053{bottom:716.160000pt;}
.y40_c00053{bottom:716.733333pt;}
.y3f_c00053{bottom:716.933333pt;}
.y3b_c00053{bottom:717.106667pt;}
.y41_c00053{bottom:717.693333pt;}
.y3e_c00053{bottom:717.893333pt;}
.y3c_c00053{bottom:719.026667pt;}
.y39_c00053{bottom:734.066667pt;}
.y36_c00053{bottom:734.440000pt;}
.y3a_c00053{bottom:735.026667pt;}
.y37_c00053{bottom:735.226667pt;}
.y38_c00053{bottom:735.973333pt;}
.y35_c00053{bottom:736.360000pt;}
.y30_c00053{bottom:751.773333pt;}
.y34_c00053{bottom:752.733333pt;}
.y33_c00053{bottom:753.306667pt;}
.y31_c00053{bottom:753.693333pt;}
.y32_c00053{bottom:754.640000pt;}
.y2f_c00053{bottom:768.360000pt;}
.y2c_c00053{bottom:768.733333pt;}
.y2a_c00053{bottom:769.106667pt;}
.y2e_c00053{bottom:770.066667pt;}
.y2d_c00053{bottom:770.640000pt;}
.y2b_c00053{bottom:771.026667pt;}
.y29_c00053{bottom:785.493333pt;}
.y28_c00053{bottom:786.440000pt;}
.y27_c00053{bottom:788.360000pt;}
.y26_c00053{bottom:803.026667pt;}
.y25_c00053{bottom:805.106667pt;}
.y22_c00053{bottom:805.893333pt;}
.y24_c00053{bottom:806.066667pt;}
.y23_c00053{bottom:807.026667pt;}
.y1f_c00053{bottom:821.306667pt;}
.y21_c00053{bottom:822.066667pt;}
.y1e_c00053{bottom:822.440000pt;}
.y20_c00053{bottom:823.226667pt;}
.y1c_c00053{bottom:823.400000pt;}
.y1d_c00053{bottom:824.360000pt;}
.y1a_c00053{bottom:838.066667pt;}
.y17_c00053{bottom:839.773333pt;}
.y18_c00053{bottom:840.560000pt;}
.y1b_c00053{bottom:840.733333pt;}
.y19_c00053{bottom:841.693333pt;}
.y13_c00053{bottom:857.106667pt;}
.y16_c00053{bottom:857.693333pt;}
.y15_c00053{bottom:859.026667pt;}
.y14_c00053{bottom:859.040000pt;}
.ye_c00053{bottom:884.733333pt;}
.yf_c00053{bottom:885.693333pt;}
.y12_c00053{bottom:886.266667pt;}
.y10_c00053{bottom:886.640000pt;}
.y11_c00053{bottom:887.226667pt;}
.yd_c00053{bottom:903.026667pt;}
.yc_c00053{bottom:915.026667pt;}
.y9_c00053{bottom:915.400000pt;}
.ya_c00053{bottom:915.600000pt;}
.y6_c00053{bottom:916.360000pt;}
.y8_c00053{bottom:917.306667pt;}
.y7_c00053{bottom:917.506667pt;}
.yb_c00053{bottom:918.266667pt;}
.y5_c00053{bottom:943.026667pt;}
.y3_c00053{bottom:943.773333pt;}
.y4_c00053{bottom:943.973333pt;}
.y2_c00053{bottom:977.693333pt;}
.y1_c00053{bottom:979.600000pt;}
.h8_c00053{height:3.739141pt;}
.h5_c00053{height:14.890964pt;}
.h7_c00053{height:20.466875pt;}
.h1_c00053{height:22.303646pt;}
.h4_c00053{height:27.879557pt;}
.h2_c00053{height:31.618698pt;}
.h6_c00053{height:35.357839pt;}
.h3_c00053{height:39.031380pt;}
.h9_c00053{height:42.770521pt;}
.h0_c00053{height:1186.666667pt;}
.w0_c00053{width:782.666667pt;}
.x0_c00053{left:0.000000pt;}
.x100_c00053{left:132.000000pt;}
.xd2_c00053{left:132.960000pt;}
.x98_c00053{left:134.293333pt;}
.x34_c00053{left:136.000000pt;}
.x2_c00053{left:136.960000pt;}
.x55_c00053{left:138.466667pt;}
.x19_c00053{left:148.960000pt;}
.x23_c00053{left:151.040000pt;}
.xc0_c00053{left:152.373333pt;}
.xcd_c00053{left:159.040000pt;}
.x4a_c00053{left:160.000000pt;}
.x35_c00053{left:162.666667pt;}
.xb6_c00053{left:163.626667pt;}
.x85_c00053{left:169.333333pt;}
.x61_c00053{left:171.626667pt;}
.x8e_c00053{left:172.760000pt;}
.xc1_c00053{left:173.706667pt;}
.xf0_c00053{left:174.666667pt;}
.xaa_c00053{left:175.626667pt;}
.x56_c00053{left:179.800000pt;}
.x4b_c00053{left:182.666667pt;}
.x104_c00053{left:183.626667pt;}
.x71_c00053{left:185.333333pt;}
.x40_c00053{left:187.040000pt;}
.x24_c00053{left:189.706667pt;}
.x8_c00053{left:190.666667pt;}
.xd3_c00053{left:193.333333pt;}
.xbb_c00053{left:196.000000pt;}
.xc2_c00053{left:197.333333pt;}
.x105_c00053{left:199.040000pt;}
.x101_c00053{left:200.000000pt;}
.x36_c00053{left:202.293333pt;}
.x1a_c00053{left:203.626667pt;}
.xf1_c00053{left:205.333333pt;}
.x72_c00053{left:206.293333pt;}
.xa7_c00053{left:208.373333pt;}
.x9_c00053{left:209.333333pt;}
.x57_c00053{left:210.666667pt;}
.xe4_c00053{left:213.333333pt;}
.x67_c00053{left:215.626667pt;}
.xdc_c00053{left:217.333333pt;}
.x9f_c00053{left:220.000000pt;}
.xf8_c00053{left:221.706667pt;}
.xb1_c00053{left:222.666667pt;}
.x93_c00053{left:224.000000pt;}
.x37_c00053{left:226.666667pt;}
.x2c_c00053{left:227.626667pt;}
.x3_c00053{left:228.960000pt;}
.x89_c00053{left:230.666667pt;}
.x41_c00053{left:233.333333pt;}
.xd4_c00053{left:237.706667pt;}
.x7f_c00053{left:239.626667pt;}
.x25_c00053{left:241.333333pt;}
.xa8_c00053{left:242.666667pt;}
.xb7_c00053{left:244.000000pt;}
.x38_c00053{left:247.040000pt;}
.x86_c00053{left:248.000000pt;}
.x4c_c00053{left:248.960000pt;}
.x99_c00053{left:251.626667pt;}
.xdd_c00053{left:253.333333pt;}
.x1b_c00053{left:255.626667pt;}
.x68_c00053{left:257.333333pt;}
.xe5_c00053{left:258.666667pt;}
.xa_c00053{left:259.626667pt;}
.xd5_c00053{left:261.333333pt;}
.xce_c00053{left:262.666667pt;}
.x62_c00053{left:264.960000pt;}
.xa0_c00053{left:266.666667pt;}
.xc3_c00053{left:268.000000pt;}
.x94_c00053{left:269.333333pt;}
.x2d_c00053{left:271.626667pt;}
.xfb_c00053{left:272.960000pt;}
.x58_c00053{left:275.040000pt;}
.xaf_c00053{left:277.333333pt;}
.x9a_c00053{left:280.000000pt;}
.xbc_c00053{left:281.706667pt;}
.x73_c00053{left:282.666667pt;}
.xab_c00053{left:284.000000pt;}
.xb_c00053{left:286.666667pt;}
.x39_c00053{left:287.626667pt;}
.x95_c00053{left:288.960000pt;}
.xc4_c00053{left:291.626667pt;}
.x4d_c00053{left:292.960000pt;}
.xf9_c00053{left:296.000000pt;}
.x8f_c00053{left:297.706667pt;}
.x59_c00053{left:300.000000pt;}
.xec_c00053{left:301.333333pt;}
.xf4_c00053{left:302.666667pt;}
.xde_c00053{left:304.373333pt;}
.xb2_c00053{left:305.333333pt;}
.x74_c00053{left:308.000000pt;}
.x8a_c00053{left:309.133333pt;}
.x42_c00053{left:312.373333pt;}
.x1c_c00053{left:313.706667pt;}
.x2e_c00053{left:314.666667pt;}
.x80_c00053{left:316.000000pt;}
.x3a_c00053{left:317.333333pt;}
.xfe_c00053{left:318.666667pt;}
.x4_c00053{left:320.960000pt;}
.x26_c00053{left:322.666667pt;}
.xc5_c00053{left:325.706667pt;}
.xda_c00053{left:327.040000pt;}
.x75_c00053{left:328.000000pt;}
.xf5_c00053{left:329.706667pt;}
.xb0_c00053{left:332.000000pt;}
.x5a_c00053{left:333.706667pt;}
.xa1_c00053{left:335.040000pt;}
.x2f_c00053{left:336.000000pt;}
.x69_c00053{left:337.333333pt;}
.xed_c00053{left:338.666667pt;}
.x63_c00053{left:340.000000pt;}
.x27_c00053{left:341.333333pt;}
.xc_c00053{left:342.293333pt;}
.x1d_c00053{left:344.960000pt;}
.x76_c00053{left:350.666667pt;}
.x6a_c00053{left:353.333333pt;}
.x1_c00053{left:354.666667pt;}
.x81_c00053{left:356.000000pt;}
.xd_c00053{left:360.373333pt;}
.xcf_c00053{left:363.040000pt;}
.xc6_c00053{left:364.000000pt;}
.x17_c00053{left:365.333333pt;}
.x8b_c00053{left:366.293333pt;}
.x87_c00053{left:368.373333pt;}
.x77_c00053{left:370.666667pt;}
.xac_c00053{left:372.000000pt;}
.xe_c00053{left:372.960000pt;}
.x43_c00053{left:374.293333pt;}
.x6b_c00053{left:377.706667pt;}
.x102_c00053{left:378.666667pt;}
.xc7_c00053{left:380.000000pt;}
.xfc_c00053{left:382.666667pt;}
.x5b_c00053{left:384.000000pt;}
.x4e_c00053{left:384.960000pt;}
.xa2_c00053{left:386.293333pt;}
.x5_c00053{left:388.960000pt;}
.x78_c00053{left:391.040000pt;}
.x3b_c00053{left:393.706667pt;}
.x1e_c00053{left:394.666667pt;}
.xfd_c00053{left:396.373333pt;}
.x18_c00053{left:397.706667pt;}
.xe6_c00053{left:400.960000pt;}
.xb3_c00053{left:402.666667pt;}
.x5c_c00053{left:404.000000pt;}
.x64_c00053{left:406.666667pt;}
.x9b_c00053{left:408.000000pt;}
.x28_c00053{left:410.293333pt;}
.x82_c00053{left:411.626667pt;}
.x4f_c00053{left:412.960000pt;}
.xdf_c00053{left:414.666667pt;}
.x90_c00053{left:415.626667pt;}
.x44_c00053{left:417.706667pt;}
.x88_c00053{left:418.666667pt;}
.x65_c00053{left:424.000000pt;}
.xe7_c00053{left:425.333333pt;}
.xb8_c00053{left:426.666667pt;}
.xf_c00053{left:427.626667pt;}
.xf2_c00053{left:429.706667pt;}
.x79_c00053{left:430.666667pt;}
.xa3_c00053{left:433.333333pt;}
.x30_c00053{left:435.626667pt;}
.x6c_c00053{left:436.960000pt;}
.x45_c00053{left:440.000000pt;}
.xff_c00053{left:444.000000pt;}
.x10_c00053{left:445.706667pt;}
.xdb_c00053{left:446.666667pt;}
.x1f_c00053{left:447.626667pt;}
.xf3_c00053{left:448.960000pt;}
.xe0_c00053{left:450.293333pt;}
.x6d_c00053{left:451.626667pt;}
.xc8_c00053{left:454.293333pt;}
.xb9_c00053{left:455.626667pt;}
.x6_c00053{left:456.960000pt;}
.xa9_c00053{left:458.666667pt;}
.x91_c00053{left:459.626667pt;}
.x46_c00053{left:460.960000pt;}
.x7a_c00053{left:462.666667pt;}
.x9c_c00053{left:464.960000pt;}
.xe1_c00053{left:467.426667pt;}
.xbd_c00053{left:468.960000pt;}
.xc9_c00053{left:471.040000pt;}
.x20_c00053{left:472.760000pt;}
.xb4_c00053{left:473.706667pt;}
.x66_c00053{left:474.666667pt;}
.x3c_c00053{left:476.000000pt;}
.x50_c00053{left:476.960000pt;}
.x8c_c00053{left:478.666667pt;}
.xee_c00053{left:480.000000pt;}
.x29_c00053{left:482.293333pt;}
.x106_c00053{left:484.000000pt;}
.x8d_c00053{left:486.666667pt;}
.x83_c00053{left:488.000000pt;}
.xd0_c00053{left:491.626667pt;}
.x21_c00053{left:493.706667pt;}
.x47_c00053{left:495.040000pt;}
.x11_c00053{left:496.373333pt;}
.x31_c00053{left:498.666667pt;}
.x5d_c00053{left:500.373333pt;}
.x51_c00053{left:504.373333pt;}
.x3d_c00053{left:506.666667pt;}
.x22_c00053{left:508.373333pt;}
.xf6_c00053{left:509.333333pt;}
.x6e_c00053{left:512.000000pt;}
.x103_c00053{left:513.333333pt;}
.xba_c00053{left:514.666667pt;}
.xa4_c00053{left:515.626667pt;}
.xd6_c00053{left:516.960000pt;}
.x7b_c00053{left:521.333333pt;}
.x92_c00053{left:524.000000pt;}
.x2a_c00053{left:527.040000pt;}
.x32_c00053{left:528.000000pt;}
.x7_c00053{left:529.133333pt;}
.x52_c00053{left:530.666667pt;}
.xf7_c00053{left:532.373333pt;}
.xe2_c00053{left:533.333333pt;}
.x7c_c00053{left:536.000000pt;}
.x9d_c00053{left:537.133333pt;}
.x12_c00053{left:538.293333pt;}
.xfa_c00053{left:541.706667pt;}
.xd7_c00053{left:544.373333pt;}
.x48_c00053{left:547.040000pt;}
.xe8_c00053{left:548.000000pt;}
.xca_c00053{left:550.293333pt;}
.x7d_c00053{left:553.333333pt;}
.xa5_c00053{left:555.040000pt;}
.x107_c00053{left:557.706667pt;}
.x5e_c00053{left:559.040000pt;}
.xe3_c00053{left:560.000000pt;}
.xe9_c00053{left:561.333333pt;}
.x96_c00053{left:562.293333pt;}
.x6f_c00053{left:566.293333pt;}
.xad_c00053{left:570.666667pt;}
.xd8_c00053{left:573.333333pt;}
.x3e_c00053{left:575.040000pt;}
.xea_c00053{left:576.373333pt;}
.xef_c00053{left:577.333333pt;}
.x13_c00053{left:580.960000pt;}
.xcb_c00053{left:584.960000pt;}
.x53_c00053{left:586.093333pt;}
.x70_c00053{left:587.040000pt;}
.xbe_c00053{left:589.333333pt;}
.x97_c00053{left:590.293333pt;}
.x33_c00053{left:592.960000pt;}
.xd9_c00053{left:594.666667pt;}
.x5f_c00053{left:596.373333pt;}
.x49_c00053{left:597.333333pt;}
.xeb_c00053{left:598.666667pt;}
.x14_c00053{left:600.000000pt;}
.xb5_c00053{left:605.333333pt;}
.x3f_c00053{left:606.666667pt;}
.x15_c00053{left:611.040000pt;}
.x84_c00053{left:612.000000pt;}
.xa6_c00053{left:613.333333pt;}
.x2b_c00053{left:615.626667pt;}
.x54_c00053{left:617.333333pt;}
.x9e_c00053{left:620.373333pt;}
.xd1_c00053{left:621.706667pt;}
.x7e_c00053{left:622.666667pt;}
.xcc_c00053{left:625.333333pt;}
.x60_c00053{left:626.293333pt;}
.xbf_c00053{left:627.626667pt;}
.xae_c00053{left:629.706667pt;}
.x16_c00053{left:632.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_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_987931bc30df4e3d6f4675fd.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m97_c00054{transform:matrix(0.326531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326531,0.000000,0.000000,0.250000,0,0);}
.m40_c00054{transform:matrix(0.339518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339518,0.000000,0.000000,0.250000,0,0);}
.m10b_c00054{transform:matrix(0.343558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343558,0.000000,0.000000,0.250000,0,0);}
.m96_c00054{transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);}
.m56_c00054{transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);}
.m1b_c00054{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.me8_c00054{transform:matrix(0.367066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367066,0.000000,0.000000,0.250000,0,0);}
.m12_c00054{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m42_c00054{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.mdc_c00054{transform:matrix(0.371549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371549,0.000000,0.000000,0.250000,0,0);}
.m5c_c00054{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m22_c00054{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mb0_c00054{transform:matrix(0.372316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372316,0.000000,0.000000,0.250000,0,0);}
.m43_c00054{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m33_c00054{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m93_c00054{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.mbc_c00054{transform:matrix(0.385353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385353,0.000000,0.000000,0.250000,0,0);}
.me_c00054{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m9c_c00054{transform:matrix(0.388037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388037,0.000000,0.000000,0.250000,0,0);}
.m10a_c00054{transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);}
.ma5_c00054{transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);}
.mdf_c00054{transform:matrix(0.389954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389954,0.000000,0.000000,0.250000,0,0);}
.m102_c00054{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.mf_c00054{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.mff_c00054{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m65_c00054{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.md9_c00054{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m20_c00054{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m89_c00054{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.m32_c00054{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mb7_c00054{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m79_c00054{transform:matrix(0.404118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404118,0.000000,0.000000,0.250000,0,0);}
.m2d_c00054{transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);}
.me2_c00054{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.m107_c00054{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m2c_c00054{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.mac_c00054{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m4d_c00054{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m80_c00054{transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);}
.mc8_c00054{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mc7_c00054{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m28_c00054{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m29_c00054{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m82_c00054{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.mb6_c00054{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m44_c00054{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.mf1_c00054{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m101_c00054{transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);}
.m50_c00054{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m7a_c00054{transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);}
.m3_c00054{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m9f_c00054{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m103_c00054{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mbd_c00054{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m8e_c00054{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m2a_c00054{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m66_c00054{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m49_c00054{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.mf8_c00054{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m23_c00054{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m4a_c00054{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m3b_c00054{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.mcb_c00054{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m95_c00054{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.mc1_c00054{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.ma9_c00054{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m112_c00054{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m1f_c00054{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m78_c00054{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m30_c00054{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mfd_c00054{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m10c_c00054{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m76_c00054{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.mb5_c00054{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m6f_c00054{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.m100_c00054{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m71_c00054{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m110_c00054{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m62_c00054{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.md1_c00054{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.mfe_c00054{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m5e_c00054{transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);}
.me6_c00054{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m109_c00054{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m18_c00054{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.ma7_c00054{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m91_c00054{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.mee_c00054{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m85_c00054{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m94_c00054{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m3c_c00054{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m6d_c00054{transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);}
.me5_c00054{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.md5_c00054{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mce_c00054{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.maa_c00054{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.mb9_c00054{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m9b_c00054{transform:matrix(0.454706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454706,0.000000,0.000000,0.250000,0,0);}
.m24_c00054{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.me9_c00054{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mf5_c00054{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m4b_c00054{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.mde_c00054{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.mfc_c00054{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m111_c00054{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m60_c00054{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.m46_c00054{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mca_c00054{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m54_c00054{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m88_c00054{transform:matrix(0.477206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477206,0.000000,0.000000,0.250000,0,0);}
.mba_c00054{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.mbf_c00054{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m9_c00054{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m7_c00054{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.mef_c00054{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.m5d_c00054{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m10e_c00054{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.me4_c00054{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m9a_c00054{transform:matrix(0.485882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485882,0.000000,0.000000,0.250000,0,0);}
.m0_c00054{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m1d_c00054{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m104_c00054{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.me3_c00054{transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);}
.mad_c00054{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m3e_c00054{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m6_c00054{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m98_c00054{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.md_c00054{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m2b_c00054{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.mb_c00054{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);}
.m4f_c00054{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m99_c00054{transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);}
.ma8_c00054{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mcd_c00054{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.mf0_c00054{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m6b_c00054{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m3d_c00054{transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);}
.ma4_c00054{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m64_c00054{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.ma0_c00054{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.me1_c00054{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.mdb_c00054{transform:matrix(0.513451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513451,0.000000,0.000000,0.250000,0,0);}
.m5_c00054{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m113_c00054{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m11_c00054{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.mc0_c00054{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m8b_c00054{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.md7_c00054{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m77_c00054{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);}
.maf_c00054{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.m53_c00054{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.mc2_c00054{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m1e_c00054{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m81_c00054{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.mf7_c00054{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m4c_c00054{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);}
.m51_c00054{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m83_c00054{transform:matrix(0.525882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525882,0.000000,0.000000,0.250000,0,0);}
.m25_c00054{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.md8_c00054{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m2f_c00054{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.md4_c00054{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m3a_c00054{transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);}
.m27_c00054{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mcf_c00054{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m73_c00054{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m10_c00054{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mcc_c00054{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.mb3_c00054{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.ma3_c00054{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m1c_c00054{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mec_c00054{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m45_c00054{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.md2_c00054{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mbb_c00054{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mb1_c00054{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mf6_c00054{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m36_c00054{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.md6_c00054{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.mc3_c00054{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mb8_c00054{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m39_c00054{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m35_c00054{transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);}
.m69_c00054{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.mfa_c00054{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m38_c00054{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m2e_c00054{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m8d_c00054{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);}
.m108_c00054{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m90_c00054{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m7f_c00054{transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);}
.m9e_c00054{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mc_c00054{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m19_c00054{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mb2_c00054{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m5a_c00054{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m31_c00054{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m3f_c00054{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m67_c00054{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.mb4_c00054{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mc5_c00054{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mab_c00054{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mdd_c00054{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m16_c00054{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m26_c00054{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m37_c00054{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.mda_c00054{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m17_c00054{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m8a_c00054{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.ma2_c00054{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mbe_c00054{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mf9_c00054{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.md0_c00054{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m5f_c00054{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m8f_c00054{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);}
.m8_c00054{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m34_c00054{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m21_c00054{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m6c_c00054{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m58_c00054{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.me7_c00054{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m70_c00054{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.mc9_c00054{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m57_c00054{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m106_c00054{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.ma6_c00054{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.ma_c00054{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mae_c00054{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.meb_c00054{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m86_c00054{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m48_c00054{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.mf4_c00054{transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);}
.m84_c00054{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_c00054{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m72_c00054{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m55_c00054{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m1a_c00054{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m63_c00054{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m74_c00054{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m87_c00054{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m52_c00054{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m1_c00054{transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);}
.m41_c00054{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m7d_c00054{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);}
.m7b_c00054{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m7c_c00054{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.mf2_c00054{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m6a_c00054{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m4_c00054{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m6e_c00054{transform:matrix(0.671324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.671324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.671324,0.000000,0.000000,0.250000,0,0);}
.m68_c00054{transform:matrix(0.671474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.671474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.671474,0.000000,0.000000,0.250000,0,0);}
.m75_c00054{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m2_c00054{transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);}
.m47_c00054{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mc4_c00054{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.md3_c00054{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.mfb_c00054{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m7e_c00054{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_c00054{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m10f_c00054{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mea_c00054{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m4e_c00054{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.mc6_c00054{transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);}
.m59_c00054{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m105_c00054{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mf3_c00054{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m15_c00054{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m14_c00054{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m10d_c00054{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.med_c00054{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.me0_c00054{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m13_c00054{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.ma1_c00054{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m5b_c00054{transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);}
.m8c_c00054{transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);}
.m9d_c00054{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v2_c00054{vertical-align:-6.000000px;}
.v0_c00054{vertical-align:0.000000px;}
.v3_c00054{vertical-align:7.680000px;}
.v1_c00054{vertical-align:12.000000px;}
.ls1_c00054{letter-spacing:0.000000px;}
.ls0_c00054{letter-spacing:14.817600px;}
.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:-6.425697px;}
.ws6_c00054{word-spacing:-6.400641px;}
.ws1_c00054{word-spacing:-5.871000px;}
.ws5_c00054{word-spacing:-4.199201px;}
.ws4_c00054{word-spacing:-2.923710px;}
.ws2_c00054{word-spacing:-2.871000px;}
.ws3_c00054{word-spacing:-0.597013px;}
.ws7_c00054{word-spacing:0.000000px;}
.fc0_c00054{color:transparent;}
.fs8_c00054{font-size:3.420000px;}
.fs6_c00054{font-size:13.620000px;}
.fs5_c00054{font-size:18.720000px;}
.fs1_c00054{font-size:20.400000px;}
.fs3_c00054{font-size:25.500000px;}
.fs0_c00054{font-size:28.920000px;}
.fs4_c00054{font-size:32.340000px;}
.fs2_c00054{font-size:35.700000px;}
.fs7_c00054{font-size:39.120000px;}
.fs9_c00054{font-size:42.540000px;}
.y0_c00054{bottom:0.000000px;}
.y13b_c00054{bottom:252.825000px;}
.y13a_c00054{bottom:253.245000px;}
.y139_c00054{bottom:254.325000px;}
.y138_c00054{bottom:255.405000px;}
.y13c_c00054{bottom:255.630000px;}
.y13d_c00054{bottom:256.905000px;}
.y137_c00054{bottom:257.130000px;}
.y136_c00054{bottom:259.245000px;}
.y12f_c00054{bottom:272.745000px;}
.y131_c00054{bottom:273.630000px;}
.y135_c00054{bottom:274.245000px;}
.y133_c00054{bottom:274.905000px;}
.y132_c00054{bottom:275.130000px;}
.y130_c00054{bottom:275.325000px;}
.y12d_c00054{bottom:276.180000px;}
.y12e_c00054{bottom:276.405000px;}
.y134_c00054{bottom:276.630000px;}
.y12c_c00054{bottom:281.130000px;}
.y128_c00054{bottom:292.245000px;}
.y127_c00054{bottom:292.470000px;}
.y126_c00054{bottom:294.405000px;}
.y125_c00054{bottom:294.630000px;}
.y129_c00054{bottom:294.825000px;}
.y12b_c00054{bottom:295.245000px;}
.y124_c00054{bottom:295.905000px;}
.y12a_c00054{bottom:296.130000px;}
.y123_c00054{bottom:296.325000px;}
.y122_c00054{bottom:299.745000px;}
.y11d_c00054{bottom:311.745000px;}
.y11b_c00054{bottom:312.180000px;}
.y11f_c00054{bottom:312.825000px;}
.y11c_c00054{bottom:313.245000px;}
.y120_c00054{bottom:313.905000px;}
.y121_c00054{bottom:314.130000px;}
.y11e_c00054{bottom:315.405000px;}
.y11a_c00054{bottom:317.745000px;}
.y113_c00054{bottom:330.405000px;}
.y115_c00054{bottom:331.470000px;}
.y114_c00054{bottom:332.325000px;}
.y117_c00054{bottom:332.745000px;}
.y118_c00054{bottom:333.630000px;}
.y116_c00054{bottom:333.825000px;}
.y119_c00054{bottom:334.245000px;}
.y112_c00054{bottom:334.905000px;}
.y111_c00054{bottom:335.550000px;}
.y110_c00054{bottom:336.405000px;}
.y10c_c00054{bottom:352.245000px;}
.y10d_c00054{bottom:352.905000px;}
.y10f_c00054{bottom:353.130000px;}
.y10e_c00054{bottom:353.970000px;}
.y10b_c00054{bottom:354.405000px;}
.y10a_c00054{bottom:355.905000px;}
.y109_c00054{bottom:356.325000px;}
.y105_c00054{bottom:371.745000px;}
.y106_c00054{bottom:372.405000px;}
.y107_c00054{bottom:372.630000px;}
.y108_c00054{bottom:373.470000px;}
.y104_c00054{bottom:373.905000px;}
.y103_c00054{bottom:374.970000px;}
.y102_c00054{bottom:375.405000px;}
.y101_c00054{bottom:377.745000px;}
.yfe_c00054{bottom:391.245000px;}
.yff_c00054{bottom:392.130000px;}
.y100_c00054{bottom:392.325000px;}
.yfd_c00054{bottom:393.405000px;}
.yfc_c00054{bottom:394.905000px;}
.yfb_c00054{bottom:395.130000px;}
.yfa_c00054{bottom:396.825000px;}
.yf7_c00054{bottom:410.745000px;}
.yf9_c00054{bottom:411.630000px;}
.yf6_c00054{bottom:412.905000px;}
.yf8_c00054{bottom:413.970000px;}
.yf4_c00054{bottom:414.180000px;}
.yf5_c00054{bottom:414.405000px;}
.yf2_c00054{bottom:430.245000px;}
.yf3_c00054{bottom:431.130000px;}
.yee_c00054{bottom:431.325000px;}
.yf0_c00054{bottom:432.405000px;}
.yf1_c00054{bottom:432.630000px;}
.yef_c00054{bottom:433.905000px;}
.yed_c00054{bottom:437.325000px;}
.yeb_c00054{bottom:449.745000px;}
.ye9_c00054{bottom:450.630000px;}
.yea_c00054{bottom:450.825000px;}
.ye8_c00054{bottom:451.905000px;}
.ye7_c00054{bottom:452.130000px;}
.yec_c00054{bottom:452.970000px;}
.ye6_c00054{bottom:453.405000px;}
.ye5_c00054{bottom:454.680000px;}
.ye4_c00054{bottom:468.825000px;}
.ye0_c00054{bottom:469.680000px;}
.ye3_c00054{bottom:470.970000px;}
.ye2_c00054{bottom:471.405000px;}
.ye1_c00054{bottom:471.630000px;}
.ydf_c00054{bottom:471.825000px;}
.ydd_c00054{bottom:472.245000px;}
.yde_c00054{bottom:472.905000px;}
.ydc_c00054{bottom:477.405000px;}
.ydb_c00054{bottom:491.130000px;}
.yda_c00054{bottom:491.550000px;}
.yd9_c00054{bottom:492.405000px;}
.yd8_c00054{bottom:493.905000px;}
.yd7_c00054{bottom:495.825000px;}
.yd6_c00054{bottom:509.325000px;}
.yd5_c00054{bottom:509.745000px;}
.yd4_c00054{bottom:510.825000px;}
.yd2_c00054{bottom:511.245000px;}
.yd3_c00054{bottom:511.905000px;}
.yd1_c00054{bottom:512.970000px;}
.yd0_c00054{bottom:514.050000px;}
.ycf_c00054{bottom:514.470000px;}
.ycb_c00054{bottom:529.245000px;}
.ycd_c00054{bottom:530.325000px;}
.yca_c00054{bottom:531.180000px;}
.ycc_c00054{bottom:531.405000px;}
.yce_c00054{bottom:532.470000px;}
.yc9_c00054{bottom:537.405000px;}
.yc7_c00054{bottom:547.245000px;}
.yc6_c00054{bottom:548.745000px;}
.yc8_c00054{bottom:549.825000px;}
.yc5_c00054{bottom:550.905000px;}
.yc4_c00054{bottom:552.405000px;}
.yc3_c00054{bottom:553.905000px;}
.yc2_c00054{bottom:555.405000px;}
.ybe_c00054{bottom:567.405000px;}
.ybd_c00054{bottom:568.245000px;}
.yc0_c00054{bottom:568.680000px;}
.ybf_c00054{bottom:569.745000px;}
.yc1_c00054{bottom:570.405000px;}
.ybc_c00054{bottom:571.905000px;}
.ybb_c00054{bottom:573.825000px;}
.yba_c00054{bottom:587.970000px;}
.yb6_c00054{bottom:589.245000px;}
.yb9_c00054{bottom:589.905000px;}
.yb8_c00054{bottom:590.130000px;}
.yb7_c00054{bottom:591.405000px;}
.yb5_c00054{bottom:592.470000px;}
.yb4_c00054{bottom:593.325000px;}
.yb2_c00054{bottom:608.745000px;}
.yb3_c00054{bottom:609.630000px;}
.yaf_c00054{bottom:610.680000px;}
.yb1_c00054{bottom:610.905000px;}
.yb0_c00054{bottom:612.420000px;}
.yab_c00054{bottom:632.970000px;}
.yac_c00054{bottom:633.825000px;}
.yae_c00054{bottom:634.905000px;}
.yaa_c00054{bottom:635.970000px;}
.yad_c00054{bottom:637.050000px;}
.ya9_c00054{bottom:638.970000px;}
.ya5_c00054{bottom:647.970000px;}
.ya6_c00054{bottom:648.405000px;}
.ya1_c00054{bottom:648.825000px;}
.ya4_c00054{bottom:649.050000px;}
.ya8_c00054{bottom:650.130000px;}
.ya7_c00054{bottom:650.550000px;}
.ya2_c00054{bottom:650.970000px;}
.ya3_c00054{bottom:652.050000px;}
.y9d_c00054{bottom:662.970000px;}
.y9f_c00054{bottom:663.405000px;}
.y9b_c00054{bottom:663.825000px;}
.ya0_c00054{bottom:664.905000px;}
.y9c_c00054{bottom:665.130000px;}
.y9e_c00054{bottom:665.970000px;}
.y9a_c00054{bottom:667.470000px;}
.y99_c00054{bottom:668.130000px;}
.y98_c00054{bottom:681.825000px;}
.y95_c00054{bottom:692.325000px;}
.y97_c00054{bottom:692.970000px;}
.y94_c00054{bottom:693.405000px;}
.y93_c00054{bottom:694.470000px;}
.y96_c00054{bottom:694.695000px;}
.y91_c00054{bottom:695.970000px;}
.y92_c00054{bottom:696.195000px;}
.y90_c00054{bottom:696.630000px;}
.y8b_c00054{bottom:707.325000px;}
.y8f_c00054{bottom:707.550000px;}
.y8c_c00054{bottom:708.405000px;}
.y8e_c00054{bottom:709.470000px;}
.y8d_c00054{bottom:709.695000px;}
.y89_c00054{bottom:710.550000px;}
.y8a_c00054{bottom:710.970000px;}
.y86_c00054{bottom:722.325000px;}
.y87_c00054{bottom:722.550000px;}
.y88_c00054{bottom:723.405000px;}
.y84_c00054{bottom:724.695000px;}
.y85_c00054{bottom:725.550000px;}
.y83_c00054{bottom:726.825000px;}
.y80_c00054{bottom:737.325000px;}
.y82_c00054{bottom:737.970000px;}
.y7f_c00054{bottom:738.630000px;}
.y81_c00054{bottom:739.050000px;}
.y7e_c00054{bottom:739.470000px;}
.y7d_c00054{bottom:740.970000px;}
.y79_c00054{bottom:751.905000px;}
.y77_c00054{bottom:752.325000px;}
.y7a_c00054{bottom:752.550000px;}
.y7b_c00054{bottom:752.970000px;}
.y78_c00054{bottom:753.630000px;}
.y7c_c00054{bottom:754.050000px;}
.y75_c00054{bottom:754.470000px;}
.y74_c00054{bottom:754.905000px;}
.y76_c00054{bottom:755.550000px;}
.y72_c00054{bottom:766.050000px;}
.y70_c00054{bottom:767.325000px;}
.y6e_c00054{bottom:767.550000px;}
.y73_c00054{bottom:768.405000px;}
.y6f_c00054{bottom:768.630000px;}
.y6c_c00054{bottom:768.825000px;}
.y71_c00054{bottom:769.050000px;}
.y6b_c00054{bottom:769.470000px;}
.y6d_c00054{bottom:770.550000px;}
.y68_c00054{bottom:780.825000px;}
.y66_c00054{bottom:781.050000px;}
.y69_c00054{bottom:781.905000px;}
.y65_c00054{bottom:782.325000px;}
.y67_c00054{bottom:782.970000px;}
.y6a_c00054{bottom:784.050000px;}
.y64_c00054{bottom:785.550000px;}
.y63_c00054{bottom:785.970000px;}
.y61_c00054{bottom:795.825000px;}
.y60_c00054{bottom:796.050000px;}
.y62_c00054{bottom:796.905000px;}
.y5f_c00054{bottom:797.130000px;}
.y5d_c00054{bottom:797.970000px;}
.y5c_c00054{bottom:798.405000px;}
.y5e_c00054{bottom:799.050000px;}
.y5b_c00054{bottom:802.050000px;}
.y58_c00054{bottom:809.970000px;}
.y55_c00054{bottom:810.825000px;}
.y59_c00054{bottom:811.050000px;}
.y56_c00054{bottom:811.470000px;}
.y57_c00054{bottom:811.905000px;}
.y53_c00054{bottom:812.970000px;}
.y5a_c00054{bottom:814.050000px;}
.y54_c00054{bottom:814.470000px;}
.y52_c00054{bottom:824.970000px;}
.y4f_c00054{bottom:825.825000px;}
.y51_c00054{bottom:826.050000px;}
.y4e_c00054{bottom:826.905000px;}
.y4d_c00054{bottom:827.325000px;}
.y50_c00054{bottom:827.970000px;}
.y4c_c00054{bottom:829.050000px;}
.y4b_c00054{bottom:840.825000px;}
.y48_c00054{bottom:841.905000px;}
.y49_c00054{bottom:842.970000px;}
.y4a_c00054{bottom:844.050000px;}
.y46_c00054{bottom:856.050000px;}
.y47_c00054{bottom:856.470000px;}
.y45_c00054{bottom:856.905000px;}
.y43_c00054{bottom:857.130000px;}
.y42_c00054{bottom:857.325000px;}
.y44_c00054{bottom:857.970000px;}
.y3f_c00054{bottom:868.470000px;}
.y3e_c00054{bottom:869.550000px;}
.y3d_c00054{bottom:869.970000px;}
.y3a_c00054{bottom:870.405000px;}
.y3c_c00054{bottom:870.630000px;}
.y3b_c00054{bottom:871.050000px;}
.y41_c00054{bottom:871.470000px;}
.y40_c00054{bottom:872.550000px;}
.y39_c00054{bottom:883.470000px;}
.y38_c00054{bottom:884.325000px;}
.y37_c00054{bottom:885.405000px;}
.y35_c00054{bottom:885.630000px;}
.y33_c00054{bottom:886.050000px;}
.y36_c00054{bottom:886.470000px;}
.y34_c00054{bottom:887.970000px;}
.y32_c00054{bottom:900.825000px;}
.y2d_c00054{bottom:914.325000px;}
.y2e_c00054{bottom:914.550000px;}
.y2c_c00054{bottom:915.405000px;}
.y2b_c00054{bottom:915.630000px;}
.y2a_c00054{bottom:915.825000px;}
.y29_c00054{bottom:916.050000px;}
.y2f_c00054{bottom:916.470000px;}
.y31_c00054{bottom:916.695000px;}
.y30_c00054{bottom:917.550000px;}
.y26_c00054{bottom:930.405000px;}
.y24_c00054{bottom:930.825000px;}
.y25_c00054{bottom:931.470000px;}
.y27_c00054{bottom:931.695000px;}
.y23_c00054{bottom:932.130000px;}
.y28_c00054{bottom:932.550000px;}
.y22_c00054{bottom:944.325000px;}
.y21_c00054{bottom:947.550000px;}
.y1f_c00054{bottom:957.825000px;}
.y20_c00054{bottom:958.905000px;}
.y1e_c00054{bottom:959.970000px;}
.y1d_c00054{bottom:961.470000px;}
.y1c_c00054{bottom:962.130000px;}
.y1b_c00054{bottom:982.245000px;}
.y1a_c00054{bottom:984.405000px;}
.y19_c00054{bottom:985.905000px;}
.y16_c00054{bottom:1001.745000px;}
.y18_c00054{bottom:1002.825000px;}
.y17_c00054{bottom:1003.905000px;}
.y15_c00054{bottom:1004.325000px;}
.y13_c00054{bottom:1021.245000px;}
.y14_c00054{bottom:1021.470000px;}
.y11_c00054{bottom:1022.745000px;}
.y12_c00054{bottom:1023.405000px;}
.y10_c00054{bottom:1026.405000px;}
.ya_c00054{bottom:1040.745000px;}
.y9_c00054{bottom:1041.405000px;}
.yd_c00054{bottom:1041.825000px;}
.ye_c00054{bottom:1042.470000px;}
.yc_c00054{bottom:1042.905000px;}
.yb_c00054{bottom:1043.130000px;}
.yf_c00054{bottom:1044.405000px;}
.y8_c00054{bottom:1045.905000px;}
.y4_c00054{bottom:1061.745000px;}
.y7_c00054{bottom:1062.825000px;}
.y3_c00054{bottom:1063.050000px;}
.y5_c00054{bottom:1063.470000px;}
.y6_c00054{bottom:1063.905000px;}
.y1_c00054{bottom:1099.905000px;}
.y2_c00054{bottom:1102.050000px;}
.hb_c00054{height:4.206533px;}
.h7_c00054{height:16.752334px;}
.h6_c00054{height:23.025234px;}
.h2_c00054{height:25.091602px;}
.h4_c00054{height:31.364502px;}
.h1_c00054{height:35.571035px;}
.h9_c00054{height:39.044502px;}
.h5_c00054{height:39.777568px;}
.h8_c00054{height:43.364502px;}
.h3_c00054{height:43.910303px;}
.ha_c00054{height:48.116836px;}
.hc_c00054{height:52.323369px;}
.h0_c00054{height:1335.000000px;}
.w0_c00054{width:880.500000px;}
.x0_c00054{left:0.000000px;}
.x3_c00054{left:151.500000px;}
.x20_c00054{left:153.420000px;}
.xc6_c00054{left:154.920000px;}
.xe0_c00054{left:160.080000px;}
.x3d_c00054{left:166.920000px;}
.x34_c00054{left:168.000000px;}
.x111_c00054{left:171.000000px;}
.xd8_c00054{left:172.500000px;}
.xe1_c00054{left:174.420000px;}
.x11_c00054{left:178.080000px;}
.x35_c00054{left:180.000000px;}
.x3e_c00054{left:183.000000px;}
.x92_c00054{left:184.080000px;}
.x21_c00054{left:185.580000px;}
.x8d_c00054{left:187.920000px;}
.x2f_c00054{left:189.000000px;}
.x4_c00054{left:190.080000px;}
.x48_c00054{left:193.080000px;}
.x7b_c00054{left:195.000000px;}
.x74_c00054{left:196.500000px;}
.x65_c00054{left:198.420000px;}
.xfb_c00054{left:199.500000px;}
.x6e_c00054{left:201.420000px;}
.x22_c00054{left:204.000000px;}
.xce_c00054{left:205.500000px;}
.xa9_c00054{left:208.500000px;}
.x112_c00054{left:212.580000px;}
.x8e_c00054{left:214.500000px;}
.x36_c00054{left:217.080000px;}
.xaa_c00054{left:219.000000px;}
.x49_c00054{left:220.500000px;}
.x101_c00054{left:223.080000px;}
.x4a_c00054{left:225.000000px;}
.xd1_c00054{left:226.500000px;}
.xf1_c00054{left:228.000000px;}
.x51_c00054{left:229.500000px;}
.x12_c00054{left:232.500000px;}
.x10c_c00054{left:235.920000px;}
.xb7_c00054{left:237.000000px;}
.xb2_c00054{left:238.500000px;}
.x66_c00054{left:241.920000px;}
.xf2_c00054{left:243.420000px;}
.xfc_c00054{left:244.500000px;}
.x93_c00054{left:247.920000px;}
.xa3_c00054{left:249.000000px;}
.xbe_c00054{left:250.080000px;}
.x5_c00054{left:253.500000px;}
.x3f_c00054{left:254.580000px;}
.x7c_c00054{left:256.500000px;}
.x75_c00054{left:259.500000px;}
.x76_c00054{left:260.580000px;}
.x30_c00054{left:262.500000px;}
.x52_c00054{left:263.580000px;}
.x86_c00054{left:265.920000px;}
.x23_c00054{left:267.000000px;}
.x6_c00054{left:271.500000px;}
.x6f_c00054{left:273.000000px;}
.x8f_c00054{left:274.500000px;}
.xc0_c00054{left:276.000000px;}
.x104_c00054{left:277.500000px;}
.xf3_c00054{left:278.580000px;}
.x4b_c00054{left:279.645000px;}
.xd2_c00054{left:280.920000px;}
.x9d_c00054{left:282.000000px;}
.x13_c00054{left:283.500000px;}
.x67_c00054{left:285.000000px;}
.xa4_c00054{left:286.500000px;}
.x37_c00054{left:288.420000px;}
.x40_c00054{left:289.500000px;}
.x102_c00054{left:292.500000px;}
.xe9_c00054{left:294.000000px;}
.xad_c00054{left:299.145000px;}
.x14_c00054{left:303.000000px;}
.x94_c00054{left:305.580000px;}
.x24_c00054{left:307.500000px;}
.x7_c00054{left:308.580000px;}
.x5c_c00054{left:310.500000px;}
.xc1_c00054{left:312.420000px;}
.x31_c00054{left:313.500000px;}
.x7d_c00054{left:315.000000px;}
.x38_c00054{left:316.920000px;}
.x53_c00054{left:318.420000px;}
.x4c_c00054{left:324.000000px;}
.x90_c00054{left:325.080000px;}
.x15_c00054{left:328.500000px;}
.x68_c00054{left:330.000000px;}
.x5d_c00054{left:331.500000px;}
.xfd_c00054{left:332.580000px;}
.x10d_c00054{left:334.920000px;}
.xd9_c00054{left:336.000000px;}
.x16_c00054{left:340.500000px;}
.xae_c00054{left:342.000000px;}
.x9e_c00054{left:345.000000px;}
.x8_c00054{left:346.500000px;}
.x77_c00054{left:348.000000px;}
.x105_c00054{left:349.500000px;}
.x70_c00054{left:351.000000px;}
.xab_c00054{left:354.420000px;}
.xb8_c00054{left:357.000000px;}
.x32_c00054{left:358.080000px;}
.x69_c00054{left:359.580000px;}
.xc7_c00054{left:361.080000px;}
.x103_c00054{left:363.000000px;}
.x7e_c00054{left:364.080000px;}
.x95_c00054{left:366.420000px;}
.x106_c00054{left:367.500000px;}
.x25_c00054{left:368.580000px;}
.x41_c00054{left:370.500000px;}
.x87_c00054{left:373.500000px;}
.x54_c00054{left:375.420000px;}
.x4d_c00054{left:377.580000px;}
.xf6_c00054{left:379.920000px;}
.xac_c00054{left:381.000000px;}
.x96_c00054{left:382.500000px;}
.x39_c00054{left:384.000000px;}
.x55_c00054{left:386.580000px;}
.x26_c00054{left:388.275000px;}
.x88_c00054{left:391.920000px;}
.xbf_c00054{left:393.000000px;}
.x5e_c00054{left:394.500000px;}
.x2_c00054{left:396.000000px;}
.x17_c00054{left:398.580000px;}
.x9f_c00054{left:403.500000px;}
.x6a_c00054{left:405.420000px;}
.x10e_c00054{left:409.920000px;}
.x9_c00054{left:411.000000px;}
.xc2_c00054{left:412.080000px;}
.x42_c00054{left:414.000000px;}
.x18_c00054{left:417.420000px;}
.x27_c00054{left:420.000000px;}
.xf7_c00054{left:423.000000px;}
.xaf_c00054{left:424.080000px;}
.x107_c00054{left:426.000000px;}
.xa_c00054{left:427.500000px;}
.x115_c00054{left:430.500000px;}
.xec_c00054{left:432.000000px;}
.x4e_c00054{left:433.500000px;}
.x71_c00054{left:435.000000px;}
.xa5_c00054{left:438.420000px;}
.xf4_c00054{left:439.920000px;}
.x7f_c00054{left:441.420000px;}
.xb5_c00054{left:442.500000px;}
.x19_c00054{left:444.000000px;}
.x33_c00054{left:445.500000px;}
.xd3_c00054{left:447.000000px;}
.x113_c00054{left:448.500000px;}
.x6b_c00054{left:449.580000px;}
.x43_c00054{left:451.500000px;}
.x89_c00054{left:453.000000px;}
.xb_c00054{left:454.500000px;}
.xda_c00054{left:456.000000px;}
.x97_c00054{left:457.500000px;}
.x56_c00054{left:459.645000px;}
.xe2_c00054{left:463.500000px;}
.x3a_c00054{left:465.420000px;}
.xfe_c00054{left:468.000000px;}
.x10f_c00054{left:471.420000px;}
.xea_c00054{left:474.000000px;}
.xb9_c00054{left:475.920000px;}
.x98_c00054{left:477.420000px;}
.x8a_c00054{left:478.500000px;}
.xb0_c00054{left:480.000000px;}
.x72_c00054{left:481.500000px;}
.x80_c00054{left:483.420000px;}
.x28_c00054{left:486.000000px;}
.xdb_c00054{left:487.080000px;}
.x91_c00054{left:489.000000px;}
.x3b_c00054{left:490.500000px;}
.xc_c00054{left:492.000000px;}
.xc8_c00054{left:493.920000px;}
.xe3_c00054{left:496.500000px;}
.x1a_c00054{left:497.580000px;}
.x5f_c00054{left:500.580000px;}
.xf8_c00054{left:503.580000px;}
.xc3_c00054{left:505.080000px;}
.x108_c00054{left:508.920000px;}
.x29_c00054{left:510.000000px;}
.x73_c00054{left:511.500000px;}
.x44_c00054{left:512.580000px;}
.xa6_c00054{left:514.500000px;}
.x60_c00054{left:516.645000px;}
.x4f_c00054{left:517.920000px;}
.x8b_c00054{left:519.420000px;}
.xc9_c00054{left:521.580000px;}
.x81_c00054{left:524.580000px;}
.x116_c00054{left:526.080000px;}
.x1b_c00054{left:528.420000px;}
.xa0_c00054{left:529.920000px;}
.xed_c00054{left:531.000000px;}
.x99_c00054{left:532.500000px;}
.xe6_c00054{left:535.500000px;}
.x6c_c00054{left:538.080000px;}
.xf5_c00054{left:540.000000px;}
.x57_c00054{left:541.500000px;}
.x110_c00054{left:544.500000px;}
.xee_c00054{left:546.000000px;}
.x3c_c00054{left:547.500000px;}
.x9a_c00054{left:549.000000px;}
.xf9_c00054{left:550.920000px;}
.xd_c00054{left:552.420000px;}
.xb1_c00054{left:553.920000px;}
.x1c_c00054{left:555.000000px;}
.x50_c00054{left:559.500000px;}
.x2a_c00054{left:560.580000px;}
.xb3_c00054{left:562.500000px;}
.x78_c00054{left:565.920000px;}
.x82_c00054{left:568.920000px;}
.xa1_c00054{left:571.500000px;}
.x8c_c00054{left:572.580000px;}
.xdc_c00054{left:574.080000px;}
.x109_c00054{left:575.580000px;}
.x2b_c00054{left:577.500000px;}
.xa7_c00054{left:580.920000px;}
.xd4_c00054{left:582.000000px;}
.xca_c00054{left:586.080000px;}
.x1d_c00054{left:589.500000px;}
.xe_c00054{left:592.500000px;}
.xa8_c00054{left:594.000000px;}
.xba_c00054{left:595.920000px;}
.x10a_c00054{left:597.420000px;}
.x61_c00054{left:598.920000px;}
.xdd_c00054{left:600.000000px;}
.x58_c00054{left:604.080000px;}
.xcb_c00054{left:606.000000px;}
.x9b_c00054{left:607.920000px;}
.x45_c00054{left:610.080000px;}
.x83_c00054{left:612.000000px;}
.x79_c00054{left:615.000000px;}
.x62_c00054{left:618.000000px;}
.x9c_c00054{left:619.500000px;}
.xcc_c00054{left:621.420000px;}
.xbb_c00054{left:622.500000px;}
.xd5_c00054{left:624.420000px;}
.x10b_c00054{left:625.500000px;}
.xde_c00054{left:626.580000px;}
.xb4_c00054{left:629.580000px;}
.xe4_c00054{left:631.920000px;}
.xcf_c00054{left:633.420000px;}
.xa2_c00054{left:634.500000px;}
.x2c_c00054{left:635.580000px;}
.xef_c00054{left:637.500000px;}
.xc4_c00054{left:640.500000px;}
.x1e_c00054{left:645.000000px;}
.x84_c00054{left:646.920000px;}
.xb6_c00054{left:648.855000px;}
.x7a_c00054{left:649.920000px;}
.xe7_c00054{left:652.500000px;}
.x2d_c00054{left:655.920000px;}
.x63_c00054{left:658.080000px;}
.xd0_c00054{left:659.580000px;}
.x59_c00054{left:661.500000px;}
.xf_c00054{left:664.500000px;}
.x46_c00054{left:666.000000px;}
.xd6_c00054{left:667.500000px;}
.xbc_c00054{left:669.000000px;}
.x6d_c00054{left:670.500000px;}
.x5a_c00054{left:672.000000px;}
.x85_c00054{left:673.500000px;}
.x1f_c00054{left:675.000000px;}
.xf0_c00054{left:676.080000px;}
.x114_c00054{left:678.000000px;}
.xcd_c00054{left:679.500000px;}
.xbd_c00054{left:681.000000px;}
.x2e_c00054{left:682.500000px;}
.xc5_c00054{left:685.080000px;}
.xfa_c00054{left:688.080000px;}
.x64_c00054{left:691.920000px;}
.x100_c00054{left:693.000000px;}
.xe5_c00054{left:694.500000px;}
.xdf_c00054{left:699.420000px;}
.x47_c00054{left:700.500000px;}
.xd7_c00054{left:701.580000px;}
.x5b_c00054{left:706.080000px;}
.xff_c00054{left:708.000000px;}
.xeb_c00054{left:709.920000px;}
.x1_c00054{left:712.080000px;}
.x10_c00054{left:715.500000px;}
.xe8_c00054{left:716.580000px;}
@media print{
.v2_c00054{vertical-align:-5.333333pt;}
.v0_c00054{vertical-align:0.000000pt;}
.v3_c00054{vertical-align:6.826667pt;}
.v1_c00054{vertical-align:10.666667pt;}
.ls1_c00054{letter-spacing:0.000000pt;}
.ls0_c00054{letter-spacing:13.171200pt;}
.ws0_c00054{word-spacing:-5.711730pt;}
.ws6_c00054{word-spacing:-5.689459pt;}
.ws1_c00054{word-spacing:-5.218667pt;}
.ws5_c00054{word-spacing:-3.732623pt;}
.ws4_c00054{word-spacing:-2.598853pt;}
.ws2_c00054{word-spacing:-2.552000pt;}
.ws3_c00054{word-spacing:-0.530678pt;}
.ws7_c00054{word-spacing:0.000000pt;}
.fs8_c00054{font-size:3.040000pt;}
.fs6_c00054{font-size:12.106667pt;}
.fs5_c00054{font-size:16.640000pt;}
.fs1_c00054{font-size:18.133333pt;}
.fs3_c00054{font-size:22.666667pt;}
.fs0_c00054{font-size:25.706667pt;}
.fs4_c00054{font-size:28.746667pt;}
.fs2_c00054{font-size:31.733333pt;}
.fs7_c00054{font-size:34.773333pt;}
.fs9_c00054{font-size:37.813333pt;}
.y0_c00054{bottom:0.000000pt;}
.y13b_c00054{bottom:224.733333pt;}
.y13a_c00054{bottom:225.106667pt;}
.y139_c00054{bottom:226.066667pt;}
.y138_c00054{bottom:227.026667pt;}
.y13c_c00054{bottom:227.226667pt;}
.y13d_c00054{bottom:228.360000pt;}
.y137_c00054{bottom:228.560000pt;}
.y136_c00054{bottom:230.440000pt;}
.y12f_c00054{bottom:242.440000pt;}
.y131_c00054{bottom:243.226667pt;}
.y135_c00054{bottom:243.773333pt;}
.y133_c00054{bottom:244.360000pt;}
.y132_c00054{bottom:244.560000pt;}
.y130_c00054{bottom:244.733333pt;}
.y12d_c00054{bottom:245.493333pt;}
.y12e_c00054{bottom:245.693333pt;}
.y134_c00054{bottom:245.893333pt;}
.y12c_c00054{bottom:249.893333pt;}
.y128_c00054{bottom:259.773333pt;}
.y127_c00054{bottom:259.973333pt;}
.y126_c00054{bottom:261.693333pt;}
.y125_c00054{bottom:261.893333pt;}
.y129_c00054{bottom:262.066667pt;}
.y12b_c00054{bottom:262.440000pt;}
.y124_c00054{bottom:263.026667pt;}
.y12a_c00054{bottom:263.226667pt;}
.y123_c00054{bottom:263.400000pt;}
.y122_c00054{bottom:266.440000pt;}
.y11d_c00054{bottom:277.106667pt;}
.y11b_c00054{bottom:277.493333pt;}
.y11f_c00054{bottom:278.066667pt;}
.y11c_c00054{bottom:278.440000pt;}
.y120_c00054{bottom:279.026667pt;}
.y121_c00054{bottom:279.226667pt;}
.y11e_c00054{bottom:280.360000pt;}
.y11a_c00054{bottom:282.440000pt;}
.y113_c00054{bottom:293.693333pt;}
.y115_c00054{bottom:294.640000pt;}
.y114_c00054{bottom:295.400000pt;}
.y117_c00054{bottom:295.773333pt;}
.y118_c00054{bottom:296.560000pt;}
.y116_c00054{bottom:296.733333pt;}
.y119_c00054{bottom:297.106667pt;}
.y112_c00054{bottom:297.693333pt;}
.y111_c00054{bottom:298.266667pt;}
.y110_c00054{bottom:299.026667pt;}
.y10c_c00054{bottom:313.106667pt;}
.y10d_c00054{bottom:313.693333pt;}
.y10f_c00054{bottom:313.893333pt;}
.y10e_c00054{bottom:314.640000pt;}
.y10b_c00054{bottom:315.026667pt;}
.y10a_c00054{bottom:316.360000pt;}
.y109_c00054{bottom:316.733333pt;}
.y105_c00054{bottom:330.440000pt;}
.y106_c00054{bottom:331.026667pt;}
.y107_c00054{bottom:331.226667pt;}
.y108_c00054{bottom:331.973333pt;}
.y104_c00054{bottom:332.360000pt;}
.y103_c00054{bottom:333.306667pt;}
.y102_c00054{bottom:333.693333pt;}
.y101_c00054{bottom:335.773333pt;}
.yfe_c00054{bottom:347.773333pt;}
.yff_c00054{bottom:348.560000pt;}
.y100_c00054{bottom:348.733333pt;}
.yfd_c00054{bottom:349.693333pt;}
.yfc_c00054{bottom:351.026667pt;}
.yfb_c00054{bottom:351.226667pt;}
.yfa_c00054{bottom:352.733333pt;}
.yf7_c00054{bottom:365.106667pt;}
.yf9_c00054{bottom:365.893333pt;}
.yf6_c00054{bottom:367.026667pt;}
.yf8_c00054{bottom:367.973333pt;}
.yf4_c00054{bottom:368.160000pt;}
.yf5_c00054{bottom:368.360000pt;}
.yf2_c00054{bottom:382.440000pt;}
.yf3_c00054{bottom:383.226667pt;}
.yee_c00054{bottom:383.400000pt;}
.yf0_c00054{bottom:384.360000pt;}
.yf1_c00054{bottom:384.560000pt;}
.yef_c00054{bottom:385.693333pt;}
.yed_c00054{bottom:388.733333pt;}
.yeb_c00054{bottom:399.773333pt;}
.ye9_c00054{bottom:400.560000pt;}
.yea_c00054{bottom:400.733333pt;}
.ye8_c00054{bottom:401.693333pt;}
.ye7_c00054{bottom:401.893333pt;}
.yec_c00054{bottom:402.640000pt;}
.ye6_c00054{bottom:403.026667pt;}
.ye5_c00054{bottom:404.160000pt;}
.ye4_c00054{bottom:416.733333pt;}
.ye0_c00054{bottom:417.493333pt;}
.ye3_c00054{bottom:418.640000pt;}
.ye2_c00054{bottom:419.026667pt;}
.ye1_c00054{bottom:419.226667pt;}
.ydf_c00054{bottom:419.400000pt;}
.ydd_c00054{bottom:419.773333pt;}
.yde_c00054{bottom:420.360000pt;}
.ydc_c00054{bottom:424.360000pt;}
.ydb_c00054{bottom:436.560000pt;}
.yda_c00054{bottom:436.933333pt;}
.yd9_c00054{bottom:437.693333pt;}
.yd8_c00054{bottom:439.026667pt;}
.yd7_c00054{bottom:440.733333pt;}
.yd6_c00054{bottom:452.733333pt;}
.yd5_c00054{bottom:453.106667pt;}
.yd4_c00054{bottom:454.066667pt;}
.yd2_c00054{bottom:454.440000pt;}
.yd3_c00054{bottom:455.026667pt;}
.yd1_c00054{bottom:455.973333pt;}
.yd0_c00054{bottom:456.933333pt;}
.ycf_c00054{bottom:457.306667pt;}
.ycb_c00054{bottom:470.440000pt;}
.ycd_c00054{bottom:471.400000pt;}
.yca_c00054{bottom:472.160000pt;}
.ycc_c00054{bottom:472.360000pt;}
.yce_c00054{bottom:473.306667pt;}
.yc9_c00054{bottom:477.693333pt;}
.yc7_c00054{bottom:486.440000pt;}
.yc6_c00054{bottom:487.773333pt;}
.yc8_c00054{bottom:488.733333pt;}
.yc5_c00054{bottom:489.693333pt;}
.yc4_c00054{bottom:491.026667pt;}
.yc3_c00054{bottom:492.360000pt;}
.yc2_c00054{bottom:493.693333pt;}
.ybe_c00054{bottom:504.360000pt;}
.ybd_c00054{bottom:505.106667pt;}
.yc0_c00054{bottom:505.493333pt;}
.ybf_c00054{bottom:506.440000pt;}
.yc1_c00054{bottom:507.026667pt;}
.ybc_c00054{bottom:508.360000pt;}
.ybb_c00054{bottom:510.066667pt;}
.yba_c00054{bottom:522.640000pt;}
.yb6_c00054{bottom:523.773333pt;}
.yb9_c00054{bottom:524.360000pt;}
.yb8_c00054{bottom:524.560000pt;}
.yb7_c00054{bottom:525.693333pt;}
.yb5_c00054{bottom:526.640000pt;}
.yb4_c00054{bottom:527.400000pt;}
.yb2_c00054{bottom:541.106667pt;}
.yb3_c00054{bottom:541.893333pt;}
.yaf_c00054{bottom:542.826667pt;}
.yb1_c00054{bottom:543.026667pt;}
.yb0_c00054{bottom:544.373333pt;}
.yab_c00054{bottom:562.640000pt;}
.yac_c00054{bottom:563.400000pt;}
.yae_c00054{bottom:564.360000pt;}
.yaa_c00054{bottom:565.306667pt;}
.yad_c00054{bottom:566.266667pt;}
.ya9_c00054{bottom:567.973333pt;}
.ya5_c00054{bottom:575.973333pt;}
.ya6_c00054{bottom:576.360000pt;}
.ya1_c00054{bottom:576.733333pt;}
.ya4_c00054{bottom:576.933333pt;}
.ya8_c00054{bottom:577.893333pt;}
.ya7_c00054{bottom:578.266667pt;}
.ya2_c00054{bottom:578.640000pt;}
.ya3_c00054{bottom:579.600000pt;}
.y9d_c00054{bottom:589.306667pt;}
.y9f_c00054{bottom:589.693333pt;}
.y9b_c00054{bottom:590.066667pt;}
.ya0_c00054{bottom:591.026667pt;}
.y9c_c00054{bottom:591.226667pt;}
.y9e_c00054{bottom:591.973333pt;}
.y9a_c00054{bottom:593.306667pt;}
.y99_c00054{bottom:593.893333pt;}
.y98_c00054{bottom:606.066667pt;}
.y95_c00054{bottom:615.400000pt;}
.y97_c00054{bottom:615.973333pt;}
.y94_c00054{bottom:616.360000pt;}
.y93_c00054{bottom:617.306667pt;}
.y96_c00054{bottom:617.506667pt;}
.y91_c00054{bottom:618.640000pt;}
.y92_c00054{bottom:618.840000pt;}
.y90_c00054{bottom:619.226667pt;}
.y8b_c00054{bottom:628.733333pt;}
.y8f_c00054{bottom:628.933333pt;}
.y8c_c00054{bottom:629.693333pt;}
.y8e_c00054{bottom:630.640000pt;}
.y8d_c00054{bottom:630.840000pt;}
.y89_c00054{bottom:631.600000pt;}
.y8a_c00054{bottom:631.973333pt;}
.y86_c00054{bottom:642.066667pt;}
.y87_c00054{bottom:642.266667pt;}
.y88_c00054{bottom:643.026667pt;}
.y84_c00054{bottom:644.173333pt;}
.y85_c00054{bottom:644.933333pt;}
.y83_c00054{bottom:646.066667pt;}
.y80_c00054{bottom:655.400000pt;}
.y82_c00054{bottom:655.973333pt;}
.y7f_c00054{bottom:656.560000pt;}
.y81_c00054{bottom:656.933333pt;}
.y7e_c00054{bottom:657.306667pt;}
.y7d_c00054{bottom:658.640000pt;}
.y79_c00054{bottom:668.360000pt;}
.y77_c00054{bottom:668.733333pt;}
.y7a_c00054{bottom:668.933333pt;}
.y7b_c00054{bottom:669.306667pt;}
.y78_c00054{bottom:669.893333pt;}
.y7c_c00054{bottom:670.266667pt;}
.y75_c00054{bottom:670.640000pt;}
.y74_c00054{bottom:671.026667pt;}
.y76_c00054{bottom:671.600000pt;}
.y72_c00054{bottom:680.933333pt;}
.y70_c00054{bottom:682.066667pt;}
.y6e_c00054{bottom:682.266667pt;}
.y73_c00054{bottom:683.026667pt;}
.y6f_c00054{bottom:683.226667pt;}
.y6c_c00054{bottom:683.400000pt;}
.y71_c00054{bottom:683.600000pt;}
.y6b_c00054{bottom:683.973333pt;}
.y6d_c00054{bottom:684.933333pt;}
.y68_c00054{bottom:694.066667pt;}
.y66_c00054{bottom:694.266667pt;}
.y69_c00054{bottom:695.026667pt;}
.y65_c00054{bottom:695.400000pt;}
.y67_c00054{bottom:695.973333pt;}
.y6a_c00054{bottom:696.933333pt;}
.y64_c00054{bottom:698.266667pt;}
.y63_c00054{bottom:698.640000pt;}
.y61_c00054{bottom:707.400000pt;}
.y60_c00054{bottom:707.600000pt;}
.y62_c00054{bottom:708.360000pt;}
.y5f_c00054{bottom:708.560000pt;}
.y5d_c00054{bottom:709.306667pt;}
.y5c_c00054{bottom:709.693333pt;}
.y5e_c00054{bottom:710.266667pt;}
.y5b_c00054{bottom:712.933333pt;}
.y58_c00054{bottom:719.973333pt;}
.y55_c00054{bottom:720.733333pt;}
.y59_c00054{bottom:720.933333pt;}
.y56_c00054{bottom:721.306667pt;}
.y57_c00054{bottom:721.693333pt;}
.y53_c00054{bottom:722.640000pt;}
.y5a_c00054{bottom:723.600000pt;}
.y54_c00054{bottom:723.973333pt;}
.y52_c00054{bottom:733.306667pt;}
.y4f_c00054{bottom:734.066667pt;}
.y51_c00054{bottom:734.266667pt;}
.y4e_c00054{bottom:735.026667pt;}
.y4d_c00054{bottom:735.400000pt;}
.y50_c00054{bottom:735.973333pt;}
.y4c_c00054{bottom:736.933333pt;}
.y4b_c00054{bottom:747.400000pt;}
.y48_c00054{bottom:748.360000pt;}
.y49_c00054{bottom:749.306667pt;}
.y4a_c00054{bottom:750.266667pt;}
.y46_c00054{bottom:760.933333pt;}
.y47_c00054{bottom:761.306667pt;}
.y45_c00054{bottom:761.693333pt;}
.y43_c00054{bottom:761.893333pt;}
.y42_c00054{bottom:762.066667pt;}
.y44_c00054{bottom:762.640000pt;}
.y3f_c00054{bottom:771.973333pt;}
.y3e_c00054{bottom:772.933333pt;}
.y3d_c00054{bottom:773.306667pt;}
.y3a_c00054{bottom:773.693333pt;}
.y3c_c00054{bottom:773.893333pt;}
.y3b_c00054{bottom:774.266667pt;}
.y41_c00054{bottom:774.640000pt;}
.y40_c00054{bottom:775.600000pt;}
.y39_c00054{bottom:785.306667pt;}
.y38_c00054{bottom:786.066667pt;}
.y37_c00054{bottom:787.026667pt;}
.y35_c00054{bottom:787.226667pt;}
.y33_c00054{bottom:787.600000pt;}
.y36_c00054{bottom:787.973333pt;}
.y34_c00054{bottom:789.306667pt;}
.y32_c00054{bottom:800.733333pt;}
.y2d_c00054{bottom:812.733333pt;}
.y2e_c00054{bottom:812.933333pt;}
.y2c_c00054{bottom:813.693333pt;}
.y2b_c00054{bottom:813.893333pt;}
.y2a_c00054{bottom:814.066667pt;}
.y29_c00054{bottom:814.266667pt;}
.y2f_c00054{bottom:814.640000pt;}
.y31_c00054{bottom:814.840000pt;}
.y30_c00054{bottom:815.600000pt;}
.y26_c00054{bottom:827.026667pt;}
.y24_c00054{bottom:827.400000pt;}
.y25_c00054{bottom:827.973333pt;}
.y27_c00054{bottom:828.173333pt;}
.y23_c00054{bottom:828.560000pt;}
.y28_c00054{bottom:828.933333pt;}
.y22_c00054{bottom:839.400000pt;}
.y21_c00054{bottom:842.266667pt;}
.y1f_c00054{bottom:851.400000pt;}
.y20_c00054{bottom:852.360000pt;}
.y1e_c00054{bottom:853.306667pt;}
.y1d_c00054{bottom:854.640000pt;}
.y1c_c00054{bottom:855.226667pt;}
.y1b_c00054{bottom:873.106667pt;}
.y1a_c00054{bottom:875.026667pt;}
.y19_c00054{bottom:876.360000pt;}
.y16_c00054{bottom:890.440000pt;}
.y18_c00054{bottom:891.400000pt;}
.y17_c00054{bottom:892.360000pt;}
.y15_c00054{bottom:892.733333pt;}
.y13_c00054{bottom:907.773333pt;}
.y14_c00054{bottom:907.973333pt;}
.y11_c00054{bottom:909.106667pt;}
.y12_c00054{bottom:909.693333pt;}
.y10_c00054{bottom:912.360000pt;}
.ya_c00054{bottom:925.106667pt;}
.y9_c00054{bottom:925.693333pt;}
.yd_c00054{bottom:926.066667pt;}
.ye_c00054{bottom:926.640000pt;}
.yc_c00054{bottom:927.026667pt;}
.yb_c00054{bottom:927.226667pt;}
.yf_c00054{bottom:928.360000pt;}
.y8_c00054{bottom:929.693333pt;}
.y4_c00054{bottom:943.773333pt;}
.y7_c00054{bottom:944.733333pt;}
.y3_c00054{bottom:944.933333pt;}
.y5_c00054{bottom:945.306667pt;}
.y6_c00054{bottom:945.693333pt;}
.y1_c00054{bottom:977.693333pt;}
.y2_c00054{bottom:979.600000pt;}
.hb_c00054{height:3.739141pt;}
.h7_c00054{height:14.890964pt;}
.h6_c00054{height:20.466875pt;}
.h2_c00054{height:22.303646pt;}
.h4_c00054{height:27.879557pt;}
.h1_c00054{height:31.618698pt;}
.h9_c00054{height:34.706224pt;}
.h5_c00054{height:35.357839pt;}
.h8_c00054{height:38.546224pt;}
.h3_c00054{height:39.031380pt;}
.ha_c00054{height:42.770521pt;}
.hc_c00054{height:46.509661pt;}
.h0_c00054{height:1186.666667pt;}
.w0_c00054{width:782.666667pt;}
.x0_c00054{left:0.000000pt;}
.x3_c00054{left:134.666667pt;}
.x20_c00054{left:136.373333pt;}
.xc6_c00054{left:137.706667pt;}
.xe0_c00054{left:142.293333pt;}
.x3d_c00054{left:148.373333pt;}
.x34_c00054{left:149.333333pt;}
.x111_c00054{left:152.000000pt;}
.xd8_c00054{left:153.333333pt;}
.xe1_c00054{left:155.040000pt;}
.x11_c00054{left:158.293333pt;}
.x35_c00054{left:160.000000pt;}
.x3e_c00054{left:162.666667pt;}
.x92_c00054{left:163.626667pt;}
.x21_c00054{left:164.960000pt;}
.x8d_c00054{left:167.040000pt;}
.x2f_c00054{left:168.000000pt;}
.x4_c00054{left:168.960000pt;}
.x48_c00054{left:171.626667pt;}
.x7b_c00054{left:173.333333pt;}
.x74_c00054{left:174.666667pt;}
.x65_c00054{left:176.373333pt;}
.xfb_c00054{left:177.333333pt;}
.x6e_c00054{left:179.040000pt;}
.x22_c00054{left:181.333333pt;}
.xce_c00054{left:182.666667pt;}
.xa9_c00054{left:185.333333pt;}
.x112_c00054{left:188.960000pt;}
.x8e_c00054{left:190.666667pt;}
.x36_c00054{left:192.960000pt;}
.xaa_c00054{left:194.666667pt;}
.x49_c00054{left:196.000000pt;}
.x101_c00054{left:198.293333pt;}
.x4a_c00054{left:200.000000pt;}
.xd1_c00054{left:201.333333pt;}
.xf1_c00054{left:202.666667pt;}
.x51_c00054{left:204.000000pt;}
.x12_c00054{left:206.666667pt;}
.x10c_c00054{left:209.706667pt;}
.xb7_c00054{left:210.666667pt;}
.xb2_c00054{left:212.000000pt;}
.x66_c00054{left:215.040000pt;}
.xf2_c00054{left:216.373333pt;}
.xfc_c00054{left:217.333333pt;}
.x93_c00054{left:220.373333pt;}
.xa3_c00054{left:221.333333pt;}
.xbe_c00054{left:222.293333pt;}
.x5_c00054{left:225.333333pt;}
.x3f_c00054{left:226.293333pt;}
.x7c_c00054{left:228.000000pt;}
.x75_c00054{left:230.666667pt;}
.x76_c00054{left:231.626667pt;}
.x30_c00054{left:233.333333pt;}
.x52_c00054{left:234.293333pt;}
.x86_c00054{left:236.373333pt;}
.x23_c00054{left:237.333333pt;}
.x6_c00054{left:241.333333pt;}
.x6f_c00054{left:242.666667pt;}
.x8f_c00054{left:244.000000pt;}
.xc0_c00054{left:245.333333pt;}
.x104_c00054{left:246.666667pt;}
.xf3_c00054{left:247.626667pt;}
.x4b_c00054{left:248.573333pt;}
.xd2_c00054{left:249.706667pt;}
.x9d_c00054{left:250.666667pt;}
.x13_c00054{left:252.000000pt;}
.x67_c00054{left:253.333333pt;}
.xa4_c00054{left:254.666667pt;}
.x37_c00054{left:256.373333pt;}
.x40_c00054{left:257.333333pt;}
.x102_c00054{left:260.000000pt;}
.xe9_c00054{left:261.333333pt;}
.xad_c00054{left:265.906667pt;}
.x14_c00054{left:269.333333pt;}
.x94_c00054{left:271.626667pt;}
.x24_c00054{left:273.333333pt;}
.x7_c00054{left:274.293333pt;}
.x5c_c00054{left:276.000000pt;}
.xc1_c00054{left:277.706667pt;}
.x31_c00054{left:278.666667pt;}
.x7d_c00054{left:280.000000pt;}
.x38_c00054{left:281.706667pt;}
.x53_c00054{left:283.040000pt;}
.x4c_c00054{left:288.000000pt;}
.x90_c00054{left:288.960000pt;}
.x15_c00054{left:292.000000pt;}
.x68_c00054{left:293.333333pt;}
.x5d_c00054{left:294.666667pt;}
.xfd_c00054{left:295.626667pt;}
.x10d_c00054{left:297.706667pt;}
.xd9_c00054{left:298.666667pt;}
.x16_c00054{left:302.666667pt;}
.xae_c00054{left:304.000000pt;}
.x9e_c00054{left:306.666667pt;}
.x8_c00054{left:308.000000pt;}
.x77_c00054{left:309.333333pt;}
.x105_c00054{left:310.666667pt;}
.x70_c00054{left:312.000000pt;}
.xab_c00054{left:315.040000pt;}
.xb8_c00054{left:317.333333pt;}
.x32_c00054{left:318.293333pt;}
.x69_c00054{left:319.626667pt;}
.xc7_c00054{left:320.960000pt;}
.x103_c00054{left:322.666667pt;}
.x7e_c00054{left:323.626667pt;}
.x95_c00054{left:325.706667pt;}
.x106_c00054{left:326.666667pt;}
.x25_c00054{left:327.626667pt;}
.x41_c00054{left:329.333333pt;}
.x87_c00054{left:332.000000pt;}
.x54_c00054{left:333.706667pt;}
.x4d_c00054{left:335.626667pt;}
.xf6_c00054{left:337.706667pt;}
.xac_c00054{left:338.666667pt;}
.x96_c00054{left:340.000000pt;}
.x39_c00054{left:341.333333pt;}
.x55_c00054{left:343.626667pt;}
.x26_c00054{left:345.133333pt;}
.x88_c00054{left:348.373333pt;}
.xbf_c00054{left:349.333333pt;}
.x5e_c00054{left:350.666667pt;}
.x2_c00054{left:352.000000pt;}
.x17_c00054{left:354.293333pt;}
.x9f_c00054{left:358.666667pt;}
.x6a_c00054{left:360.373333pt;}
.x10e_c00054{left:364.373333pt;}
.x9_c00054{left:365.333333pt;}
.xc2_c00054{left:366.293333pt;}
.x42_c00054{left:368.000000pt;}
.x18_c00054{left:371.040000pt;}
.x27_c00054{left:373.333333pt;}
.xf7_c00054{left:376.000000pt;}
.xaf_c00054{left:376.960000pt;}
.x107_c00054{left:378.666667pt;}
.xa_c00054{left:380.000000pt;}
.x115_c00054{left:382.666667pt;}
.xec_c00054{left:384.000000pt;}
.x4e_c00054{left:385.333333pt;}
.x71_c00054{left:386.666667pt;}
.xa5_c00054{left:389.706667pt;}
.xf4_c00054{left:391.040000pt;}
.x7f_c00054{left:392.373333pt;}
.xb5_c00054{left:393.333333pt;}
.x19_c00054{left:394.666667pt;}
.x33_c00054{left:396.000000pt;}
.xd3_c00054{left:397.333333pt;}
.x113_c00054{left:398.666667pt;}
.x6b_c00054{left:399.626667pt;}
.x43_c00054{left:401.333333pt;}
.x89_c00054{left:402.666667pt;}
.xb_c00054{left:404.000000pt;}
.xda_c00054{left:405.333333pt;}
.x97_c00054{left:406.666667pt;}
.x56_c00054{left:408.573333pt;}
.xe2_c00054{left:412.000000pt;}
.x3a_c00054{left:413.706667pt;}
.xfe_c00054{left:416.000000pt;}
.x10f_c00054{left:419.040000pt;}
.xea_c00054{left:421.333333pt;}
.xb9_c00054{left:423.040000pt;}
.x98_c00054{left:424.373333pt;}
.x8a_c00054{left:425.333333pt;}
.xb0_c00054{left:426.666667pt;}
.x72_c00054{left:428.000000pt;}
.x80_c00054{left:429.706667pt;}
.x28_c00054{left:432.000000pt;}
.xdb_c00054{left:432.960000pt;}
.x91_c00054{left:434.666667pt;}
.x3b_c00054{left:436.000000pt;}
.xc_c00054{left:437.333333pt;}
.xc8_c00054{left:439.040000pt;}
.xe3_c00054{left:441.333333pt;}
.x1a_c00054{left:442.293333pt;}
.x5f_c00054{left:444.960000pt;}
.xf8_c00054{left:447.626667pt;}
.xc3_c00054{left:448.960000pt;}
.x108_c00054{left:452.373333pt;}
.x29_c00054{left:453.333333pt;}
.x73_c00054{left:454.666667pt;}
.x44_c00054{left:455.626667pt;}
.xa6_c00054{left:457.333333pt;}
.x60_c00054{left:459.240000pt;}
.x4f_c00054{left:460.373333pt;}
.x8b_c00054{left:461.706667pt;}
.xc9_c00054{left:463.626667pt;}
.x81_c00054{left:466.293333pt;}
.x116_c00054{left:467.626667pt;}
.x1b_c00054{left:469.706667pt;}
.xa0_c00054{left:471.040000pt;}
.xed_c00054{left:472.000000pt;}
.x99_c00054{left:473.333333pt;}
.xe6_c00054{left:476.000000pt;}
.x6c_c00054{left:478.293333pt;}
.xf5_c00054{left:480.000000pt;}
.x57_c00054{left:481.333333pt;}
.x110_c00054{left:484.000000pt;}
.xee_c00054{left:485.333333pt;}
.x3c_c00054{left:486.666667pt;}
.x9a_c00054{left:488.000000pt;}
.xf9_c00054{left:489.706667pt;}
.xd_c00054{left:491.040000pt;}
.xb1_c00054{left:492.373333pt;}
.x1c_c00054{left:493.333333pt;}
.x50_c00054{left:497.333333pt;}
.x2a_c00054{left:498.293333pt;}
.xb3_c00054{left:500.000000pt;}
.x78_c00054{left:503.040000pt;}
.x82_c00054{left:505.706667pt;}
.xa1_c00054{left:508.000000pt;}
.x8c_c00054{left:508.960000pt;}
.xdc_c00054{left:510.293333pt;}
.x109_c00054{left:511.626667pt;}
.x2b_c00054{left:513.333333pt;}
.xa7_c00054{left:516.373333pt;}
.xd4_c00054{left:517.333333pt;}
.xca_c00054{left:520.960000pt;}
.x1d_c00054{left:524.000000pt;}
.xe_c00054{left:526.666667pt;}
.xa8_c00054{left:528.000000pt;}
.xba_c00054{left:529.706667pt;}
.x10a_c00054{left:531.040000pt;}
.x61_c00054{left:532.373333pt;}
.xdd_c00054{left:533.333333pt;}
.x58_c00054{left:536.960000pt;}
.xcb_c00054{left:538.666667pt;}
.x9b_c00054{left:540.373333pt;}
.x45_c00054{left:542.293333pt;}
.x83_c00054{left:544.000000pt;}
.x79_c00054{left:546.666667pt;}
.x62_c00054{left:549.333333pt;}
.x9c_c00054{left:550.666667pt;}
.xcc_c00054{left:552.373333pt;}
.xbb_c00054{left:553.333333pt;}
.xd5_c00054{left:555.040000pt;}
.x10b_c00054{left:556.000000pt;}
.xde_c00054{left:556.960000pt;}
.xb4_c00054{left:559.626667pt;}
.xe4_c00054{left:561.706667pt;}
.xcf_c00054{left:563.040000pt;}
.xa2_c00054{left:564.000000pt;}
.x2c_c00054{left:564.960000pt;}
.xef_c00054{left:566.666667pt;}
.xc4_c00054{left:569.333333pt;}
.x1e_c00054{left:573.333333pt;}
.x84_c00054{left:575.040000pt;}
.xb6_c00054{left:576.760000pt;}
.x7a_c00054{left:577.706667pt;}
.xe7_c00054{left:580.000000pt;}
.x2d_c00054{left:583.040000pt;}
.x63_c00054{left:584.960000pt;}
.xd0_c00054{left:586.293333pt;}
.x59_c00054{left:588.000000pt;}
.xf_c00054{left:590.666667pt;}
.x46_c00054{left:592.000000pt;}
.xd6_c00054{left:593.333333pt;}
.xbc_c00054{left:594.666667pt;}
.x6d_c00054{left:596.000000pt;}
.x5a_c00054{left:597.333333pt;}
.x85_c00054{left:598.666667pt;}
.x1f_c00054{left:600.000000pt;}
.xf0_c00054{left:600.960000pt;}
.x114_c00054{left:602.666667pt;}
.xcd_c00054{left:604.000000pt;}
.xbd_c00054{left:605.333333pt;}
.x2e_c00054{left:606.666667pt;}
.xc5_c00054{left:608.960000pt;}
.xfa_c00054{left:611.626667pt;}
.x64_c00054{left:615.040000pt;}
.x100_c00054{left:616.000000pt;}
.xe5_c00054{left:617.333333pt;}
.xdf_c00054{left:621.706667pt;}
.x47_c00054{left:622.666667pt;}
.xd7_c00054{left:623.626667pt;}
.x5b_c00054{left:627.626667pt;}
.xff_c00054{left:629.333333pt;}
.xeb_c00054{left:631.040000pt;}
.x1_c00054{left:632.960000pt;}
.x10_c00054{left:636.000000pt;}
.xe8_c00054{left:636.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_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_7760b2091454686652980fc3.woff2')format("woff");}.ff1_c00055{font-family:ff1_c00055;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m95_c00055{transform:matrix(0.328221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328221,0.000000,0.000000,0.250000,0,0);}
.m67_c00055{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);}
.m41_c00055{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.mc3_c00055{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.md9_c00055{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mdc_c00055{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.me5_c00055{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m2e_c00055{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.md3_c00055{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m65_c00055{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m66_c00055{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m47_c00055{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m8f_c00055{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.md1_c00055{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m1a_c00055{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m9d_c00055{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mbf_c00055{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m4d_c00055{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m5a_c00055{transform:matrix(0.399896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399896,0.000000,0.000000,0.250000,0,0);}
.m76_c00055{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m80_c00055{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m19_c00055{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.mae_c00055{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m9f_c00055{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.md_c00055{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.md4_c00055{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.md7_c00055{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m9_c00055{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m97_c00055{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.mc8_c00055{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m25_c00055{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m5c_c00055{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m42_c00055{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mdf_c00055{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m23_c00055{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mc9_c00055{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.ma2_c00055{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m7d_c00055{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m35_c00055{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m69_c00055{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m9c_c00055{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.mac_c00055{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m2a_c00055{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mbe_c00055{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m82_c00055{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m4f_c00055{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mb3_c00055{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m77_c00055{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.me4_c00055{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m88_c00055{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m54_c00055{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m9b_c00055{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m8d_c00055{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m10_c00055{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m4_c00055{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m3e_c00055{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.m61_c00055{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.mdb_c00055{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.me2_c00055{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m96_c00055{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m79_c00055{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.ma4_c00055{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.mc0_c00055{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m7f_c00055{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mb0_c00055{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.md8_c00055{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m6d_c00055{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.mb1_c00055{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.m4a_c00055{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.ma8_c00055{transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);}
.m81_c00055{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m6a_c00055{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m6b_c00055{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m85_c00055{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m17_c00055{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m71_c00055{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.mc2_c00055{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.ma1_c00055{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m84_c00055{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mf_c00055{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.ma6_c00055{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mcb_c00055{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.m57_c00055{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m22_c00055{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m3c_c00055{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m7a_c00055{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.m8a_c00055{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.mb8_c00055{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.md0_c00055{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.maf_c00055{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m75_c00055{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.mca_c00055{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m91_c00055{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.ma5_c00055{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m73_c00055{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m98_c00055{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m99_c00055{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.mc1_c00055{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.ma9_c00055{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m8_c00055{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m8e_c00055{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m33_c00055{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m86_c00055{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m8c_c00055{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m7_c00055{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m50_c00055{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m39_c00055{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m6_c00055{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_c00055{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m3d_c00055{transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);}
.m63_c00055{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m70_c00055{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m7b_c00055{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m3b_c00055{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mc6_c00055{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.mde_c00055{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m87_c00055{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m78_c00055{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m7e_c00055{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m29_c00055{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m3a_c00055{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m6f_c00055{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.me_c00055{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m2c_c00055{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m9e_c00055{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mcd_c00055{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m62_c00055{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m56_c00055{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.ma3_c00055{transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);}
.m8b_c00055{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m90_c00055{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m1b_c00055{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m3f_c00055{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.md2_c00055{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m83_c00055{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m15_c00055{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m3_c00055{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mb2_c00055{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.ma_c00055{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mab_c00055{transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);}
.mb4_c00055{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m2b_c00055{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m58_c00055{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m31_c00055{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m7c_c00055{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m16_c00055{transform:matrix(0.539889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539889,0.000000,0.000000,0.250000,0,0);}
.m37_c00055{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m53_c00055{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mbd_c00055{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m36_c00055{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mb6_c00055{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mba_c00055{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m0_c00055{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m1f_c00055{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m14_c00055{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m72_c00055{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m9a_c00055{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.md6_c00055{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.ma0_c00055{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m60_c00055{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m48_c00055{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mb7_c00055{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m4c_c00055{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m18_c00055{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.maa_c00055{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m59_c00055{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m11_c00055{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m6e_c00055{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);}
.mad_c00055{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m51_c00055{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m6c_c00055{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mda_c00055{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m26_c00055{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m94_c00055{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m93_c00055{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m30_c00055{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m2_c00055{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mdd_c00055{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m5e_c00055{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m89_c00055{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m4e_c00055{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mb5_c00055{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m1d_c00055{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m68_c00055{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m4b_c00055{transform:matrix(0.588824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588824,0.000000,0.000000,0.250000,0,0);}
.mbc_c00055{transform:matrix(0.589212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589212,0.000000,0.000000,0.250000,0,0);}
.mbb_c00055{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m12_c00055{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m5b_c00055{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m40_c00055{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m5_c00055{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m5d_c00055{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);}
.m34_c00055{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.ma7_c00055{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m74_c00055{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.md5_c00055{transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);}
.m2d_c00055{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m49_c00055{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mcf_c00055{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);}
.m46_c00055{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.me0_c00055{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m1_c00055{transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);}
.m1e_c00055{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.mc4_c00055{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m92_c00055{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m52_c00055{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m38_c00055{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m55_c00055{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mc_c00055{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m2f_c00055{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m43_c00055{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.mb_c00055{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m1c_c00055{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.me3_c00055{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m21_c00055{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m13_c00055{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m32_c00055{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m44_c00055{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m28_c00055{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m45_c00055{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m27_c00055{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.me1_c00055{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m24_c00055{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.mb9_c00055{transform:matrix(0.810096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.810096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.810096,0.000000,0.000000,0.250000,0,0);}
.m5f_c00055{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mc5_c00055{transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);}
.m64_c00055{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mce_c00055{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.mcc_c00055{transform:matrix(1.165865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.165865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.165865,0.000000,0.000000,0.250000,0,0);}
.mc7_c00055{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-3.089552px;}
.ws1_c00055{word-spacing:-0.768703px;}
.ws2_c00055{word-spacing:0.000000px;}
.fc0_c00055{color:transparent;}
.fs7_c00055{font-size:3.420000px;}
.fs5_c00055{font-size:18.720000px;}
.fs1_c00055{font-size:20.400000px;}
.fs0_c00055{font-size:25.500000px;}
.fs2_c00055{font-size:28.920000px;}
.fs3_c00055{font-size:32.340000px;}
.fs4_c00055{font-size:35.700000px;}
.fs6_c00055{font-size:39.120000px;}
.y0_c00055{bottom:0.000000px;}
.yd3_c00055{bottom:251.745000px;}
.yd1_c00055{bottom:252.630000px;}
.yd2_c00055{bottom:253.470000px;}
.yd4_c00055{bottom:253.905000px;}
.yd5_c00055{bottom:254.130000px;}
.ycf_c00055{bottom:270.405000px;}
.ycb_c00055{bottom:271.245000px;}
.yca_c00055{bottom:271.470000px;}
.yd0_c00055{bottom:272.745000px;}
.yc9_c00055{bottom:273.405000px;}
.ycc_c00055{bottom:273.630000px;}
.ycd_c00055{bottom:274.470000px;}
.yce_c00055{bottom:274.905000px;}
.yc7_c00055{bottom:290.745000px;}
.yc8_c00055{bottom:291.825000px;}
.yc5_c00055{bottom:292.905000px;}
.yc6_c00055{bottom:294.420000px;}
.yc2_c00055{bottom:310.245000px;}
.yc4_c00055{bottom:311.745000px;}
.yc1_c00055{bottom:312.405000px;}
.yc3_c00055{bottom:313.905000px;}
.ybe_c00055{bottom:330.405000px;}
.ybc_c00055{bottom:331.245000px;}
.ybb_c00055{bottom:331.905000px;}
.yc0_c00055{bottom:332.130000px;}
.ybf_c00055{bottom:332.970000px;}
.ybd_c00055{bottom:333.405000px;}
.yb6_c00055{bottom:348.405000px;}
.yb9_c00055{bottom:349.470000px;}
.yba_c00055{bottom:349.905000px;}
.yb4_c00055{bottom:350.745000px;}
.yb8_c00055{bottom:351.630000px;}
.yb7_c00055{bottom:351.825000px;}
.yb5_c00055{bottom:352.905000px;}
.yb1_c00055{bottom:369.405000px;}
.yb0_c00055{bottom:370.245000px;}
.yaf_c00055{bottom:370.905000px;}
.yb2_c00055{bottom:371.325000px;}
.yb3_c00055{bottom:372.405000px;}
.yad_c00055{bottom:387.405000px;}
.yac_c00055{bottom:387.630000px;}
.yab_c00055{bottom:388.470000px;}
.yaa_c00055{bottom:388.905000px;}
.ya8_c00055{bottom:389.745000px;}
.ya7_c00055{bottom:390.825000px;}
.ya9_c00055{bottom:391.905000px;}
.yae_c00055{bottom:391.920000px;}
.ya4_c00055{bottom:407.970000px;}
.ya6_c00055{bottom:408.405000px;}
.ya5_c00055{bottom:409.245000px;}
.ya3_c00055{bottom:410.130000px;}
.ya2_c00055{bottom:411.405000px;}
.ya1_c00055{bottom:430.470000px;}
.y9f_c00055{bottom:430.905000px;}
.ya0_c00055{bottom:431.130000px;}
.y9e_c00055{bottom:431.970000px;}
.y9b_c00055{bottom:447.405000px;}
.y9c_c00055{bottom:448.245000px;}
.y9a_c00055{bottom:449.745000px;}
.y99_c00055{bottom:450.405000px;}
.y9d_c00055{bottom:450.630000px;}
.y98_c00055{bottom:451.470000px;}
.y92_c00055{bottom:467.745000px;}
.y95_c00055{bottom:469.245000px;}
.y96_c00055{bottom:469.905000px;}
.y97_c00055{bottom:470.130000px;}
.y94_c00055{bottom:470.970000px;}
.y93_c00055{bottom:471.405000px;}
.y91_c00055{bottom:486.405000px;}
.y8d_c00055{bottom:487.470000px;}
.y8e_c00055{bottom:488.745000px;}
.y8b_c00055{bottom:489.405000px;}
.y90_c00055{bottom:489.825000px;}
.y8f_c00055{bottom:490.470000px;}
.y8c_c00055{bottom:490.905000px;}
.y87_c00055{bottom:508.245000px;}
.y8a_c00055{bottom:509.325000px;}
.y89_c00055{bottom:509.970000px;}
.y88_c00055{bottom:510.405000px;}
.y84_c00055{bottom:526.905000px;}
.y83_c00055{bottom:527.745000px;}
.y82_c00055{bottom:529.905000px;}
.y85_c00055{bottom:530.130000px;}
.y86_c00055{bottom:530.325000px;}
.y7e_c00055{bottom:547.245000px;}
.y81_c00055{bottom:548.325000px;}
.y80_c00055{bottom:549.405000px;}
.y7f_c00055{bottom:549.630000px;}
.y7c_c00055{bottom:566.745000px;}
.y7b_c00055{bottom:567.825000px;}
.y7a_c00055{bottom:568.905000px;}
.y7d_c00055{bottom:569.970000px;}
.y76_c00055{bottom:585.180000px;}
.y77_c00055{bottom:586.245000px;}
.y78_c00055{bottom:587.745000px;}
.y75_c00055{bottom:588.405000px;}
.y79_c00055{bottom:588.630000px;}
.y74_c00055{bottom:589.905000px;}
.y73_c00055{bottom:609.405000px;}
.y72_c00055{bottom:625.905000px;}
.y71_c00055{bottom:626.745000px;}
.y70_c00055{bottom:628.470000px;}
.y6f_c00055{bottom:628.905000px;}
.y6d_c00055{bottom:646.245000px;}
.y6b_c00055{bottom:647.130000px;}
.y6a_c00055{bottom:648.405000px;}
.y6e_c00055{bottom:648.630000px;}
.y6c_c00055{bottom:649.470000px;}
.y69_c00055{bottom:664.245000px;}
.y68_c00055{bottom:664.905000px;}
.y66_c00055{bottom:665.745000px;}
.y67_c00055{bottom:666.825000px;}
.y65_c00055{bottom:667.905000px;}
.y63_c00055{bottom:684.405000px;}
.y61_c00055{bottom:686.325000px;}
.y60_c00055{bottom:687.405000px;}
.y64_c00055{bottom:687.630000px;}
.y62_c00055{bottom:688.470000px;}
.y5b_c00055{bottom:706.245000px;}
.y5a_c00055{bottom:706.905000px;}
.y5f_c00055{bottom:707.130000px;}
.y5c_c00055{bottom:707.325000px;}
.y5d_c00055{bottom:707.970000px;}
.y5e_c00055{bottom:708.405000px;}
.y58_c00055{bottom:725.745000px;}
.y59_c00055{bottom:727.905000px;}
.y54_c00055{bottom:743.745000px;}
.y57_c00055{bottom:744.825000px;}
.y56_c00055{bottom:745.245000px;}
.y53_c00055{bottom:745.905000px;}
.y55_c00055{bottom:746.130000px;}
.y51_c00055{bottom:763.245000px;}
.y4d_c00055{bottom:764.325000px;}
.y4e_c00055{bottom:765.405000px;}
.y4f_c00055{bottom:765.825000px;}
.y50_c00055{bottom:766.470000px;}
.y52_c00055{bottom:766.905000px;}
.y4a_c00055{bottom:781.905000px;}
.y4b_c00055{bottom:784.245000px;}
.y4c_c00055{bottom:785.130000px;}
.y49_c00055{bottom:786.405000px;}
.y46_c00055{bottom:802.245000px;}
.y44_c00055{bottom:803.745000px;}
.y47_c00055{bottom:805.470000px;}
.y45_c00055{bottom:805.905000px;}
.y48_c00055{bottom:806.970000px;}
.y40_c00055{bottom:822.405000px;}
.y41_c00055{bottom:823.245000px;}
.y3e_c00055{bottom:824.325000px;}
.y42_c00055{bottom:824.970000px;}
.y3d_c00055{bottom:825.405000px;}
.y3f_c00055{bottom:825.630000px;}
.y43_c00055{bottom:826.470000px;}
.y39_c00055{bottom:842.745000px;}
.y3b_c00055{bottom:843.630000px;}
.y3c_c00055{bottom:843.825000px;}
.y38_c00055{bottom:844.905000px;}
.y3a_c00055{bottom:845.970000px;}
.y33_c00055{bottom:862.245000px;}
.y37_c00055{bottom:863.130000px;}
.y35_c00055{bottom:863.325000px;}
.y34_c00055{bottom:864.405000px;}
.y36_c00055{bottom:864.630000px;}
.y30_c00055{bottom:881.745000px;}
.y2f_c00055{bottom:883.905000px;}
.y31_c00055{bottom:884.130000px;}
.y32_c00055{bottom:885.405000px;}
.y2e_c00055{bottom:900.405000px;}
.y29_c00055{bottom:901.470000px;}
.y2d_c00055{bottom:902.745000px;}
.y28_c00055{bottom:903.405000px;}
.y2a_c00055{bottom:903.630000px;}
.y2c_c00055{bottom:903.825000px;}
.y2b_c00055{bottom:904.905000px;}
.y27_c00055{bottom:921.825000px;}
.y24_c00055{bottom:922.245000px;}
.y25_c00055{bottom:923.130000px;}
.y22_c00055{bottom:923.970000px;}
.y23_c00055{bottom:924.405000px;}
.y26_c00055{bottom:925.470000px;}
.y20_c00055{bottom:939.405000px;}
.y1f_c00055{bottom:941.745000px;}
.y21_c00055{bottom:942.630000px;}
.y1e_c00055{bottom:942.825000px;}
.y1d_c00055{bottom:943.905000px;}
.y1b_c00055{bottom:961.245000px;}
.y1a_c00055{bottom:962.130000px;}
.y1c_c00055{bottom:962.970000px;}
.y19_c00055{bottom:963.405000px;}
.y14_c00055{bottom:978.405000px;}
.y13_c00055{bottom:980.745000px;}
.y18_c00055{bottom:981.630000px;}
.y16_c00055{bottom:982.470000px;}
.y15_c00055{bottom:982.905000px;}
.y17_c00055{bottom:983.970000px;}
.y11_c00055{bottom:1000.245000px;}
.y10_c00055{bottom:1001.130000px;}
.y12_c00055{bottom:1002.405000px;}
.yf_c00055{bottom:1019.745000px;}
.yd_c00055{bottom:1020.630000px;}
.ye_c00055{bottom:1021.470000px;}
.yc_c00055{bottom:1021.905000px;}
.yb_c00055{bottom:1039.245000px;}
.ya_c00055{bottom:1040.325000px;}
.y8_c00055{bottom:1041.405000px;}
.y9_c00055{bottom:1041.630000px;}
.y5_c00055{bottom:1058.745000px;}
.y7_c00055{bottom:1059.630000px;}
.y4_c00055{bottom:1059.825000px;}
.y3_c00055{bottom:1060.905000px;}
.y6_c00055{bottom:1061.130000px;}
.y2_c00055{bottom:1099.050000px;}
.y1_c00055{bottom:1100.970000px;}
.h8_c00055{height:4.206533px;}
.h6_c00055{height:23.025234px;}
.h2_c00055{height:25.091602px;}
.h1_c00055{height:31.364502px;}
.h3_c00055{height:35.571035px;}
.h4_c00055{height:39.777568px;}
.h5_c00055{height:43.910303px;}
.h7_c00055{height:48.116836px;}
.h0_c00055{height:1335.000000px;}
.w0_c00055{width:880.500000px;}
.x0_c00055{left:0.000000px;}
.x10b_c00055{left:150.000000px;}
.xcb_c00055{left:151.080000px;}
.x1_c00055{left:152.580000px;}
.x3_c00055{left:154.080000px;}
.x11a_c00055{left:162.000000px;}
.xfd_c00055{left:166.500000px;}
.xdb_c00055{left:167.580000px;}
.xbd_c00055{left:170.355000px;}
.xb9_c00055{left:171.420000px;}
.x4_c00055{left:174.420000px;}
.xe5_c00055{left:175.500000px;}
.xf3_c00055{left:176.580000px;}
.x5d_c00055{left:178.500000px;}
.x52_c00055{left:180.000000px;}
.x103_c00055{left:181.500000px;}
.x68_c00055{left:182.580000px;}
.x86_c00055{left:184.920000px;}
.xe6_c00055{left:189.420000px;}
.xa4_c00055{left:190.500000px;}
.x2c_c00055{left:192.420000px;}
.x111_c00055{left:196.500000px;}
.x94_c00055{left:198.000000px;}
.x5_c00055{left:201.420000px;}
.x1f_c00055{left:202.500000px;}
.xad_c00055{left:204.420000px;}
.x74_c00055{left:206.580000px;}
.x46_c00055{left:208.500000px;}
.x14_c00055{left:210.000000px;}
.x53_c00055{left:213.000000px;}
.xd1_c00055{left:214.080000px;}
.xc1_c00055{left:216.000000px;}
.xc5_c00055{left:217.920000px;}
.x9e_c00055{left:220.920000px;}
.xdc_c00055{left:222.420000px;}
.x10c_c00055{left:223.500000px;}
.x20_c00055{left:224.580000px;}
.xff_c00055{left:226.080000px;}
.x39_c00055{left:228.000000px;}
.xe7_c00055{left:229.500000px;}
.xae_c00055{left:231.420000px;}
.xfa_c00055{left:232.500000px;}
.x112_c00055{left:234.000000px;}
.xe2_c00055{left:235.500000px;}
.x69_c00055{left:237.000000px;}
.x87_c00055{left:240.000000px;}
.x6_c00055{left:244.920000px;}
.x15_c00055{left:247.500000px;}
.x2d_c00055{left:249.000000px;}
.x75_c00055{left:252.420000px;}
.x95_c00055{left:256.080000px;}
.xa5_c00055{left:258.420000px;}
.xfe_c00055{left:259.500000px;}
.xba_c00055{left:261.000000px;}
.x16_c00055{left:262.080000px;}
.x7d_c00055{left:265.080000px;}
.x116_c00055{left:266.355000px;}
.x54_c00055{left:268.500000px;}
.x88_c00055{left:271.920000px;}
.xd8_c00055{left:273.420000px;}
.xaf_c00055{left:274.500000px;}
.x7_c00055{left:278.580000px;}
.x9f_c00055{left:280.500000px;}
.x76_c00055{left:282.000000px;}
.x2e_c00055{left:285.000000px;}
.xed_c00055{left:286.500000px;}
.x21_c00055{left:287.580000px;}
.x5e_c00055{left:291.420000px;}
.x89_c00055{left:295.500000px;}
.x107_c00055{left:297.420000px;}
.x8_c00055{left:298.920000px;}
.x6a_c00055{left:301.080000px;}
.xea_c00055{left:303.000000px;}
.x55_c00055{left:304.920000px;}
.xb0_c00055{left:306.000000px;}
.x17_c00055{left:307.080000px;}
.x3a_c00055{left:311.580000px;}
.x96_c00055{left:313.500000px;}
.xee_c00055{left:314.580000px;}
.x8a_c00055{left:316.500000px;}
.x6b_c00055{left:319.920000px;}
.xb1_c00055{left:321.420000px;}
.x7e_c00055{left:322.500000px;}
.xf4_c00055{left:324.000000px;}
.x9_c00055{left:325.500000px;}
.x47_c00055{left:327.000000px;}
.x2f_c00055{left:328.500000px;}
.x22_c00055{left:329.580000px;}
.x97_c00055{left:333.000000px;}
.xeb_c00055{left:336.000000px;}
.x77_c00055{left:337.920000px;}
.x7f_c00055{left:339.000000px;}
.x113_c00055{left:340.080000px;}
.xdd_c00055{left:341.145000px;}
.x56_c00055{left:342.420000px;}
.xef_c00055{left:343.500000px;}
.x5f_c00055{left:345.000000px;}
.x30_c00055{left:346.920000px;}
.x18_c00055{left:350.580000px;}
.x3b_c00055{left:352.500000px;}
.x80_c00055{left:354.000000px;}
.x104_c00055{left:357.000000px;}
.xa0_c00055{left:358.500000px;}
.x23_c00055{left:360.420000px;}
.xf0_c00055{left:361.500000px;}
.x117_c00055{left:364.500000px;}
.x10d_c00055{left:366.420000px;}
.x11b_c00055{left:367.920000px;}
.xb2_c00055{left:369.000000px;}
.xa_c00055{left:370.500000px;}
.xa6_c00055{left:372.000000px;}
.x98_c00055{left:373.080000px;}
.x8b_c00055{left:376.080000px;}
.x57_c00055{left:378.000000px;}
.x6c_c00055{left:379.500000px;}
.xcc_c00055{left:382.500000px;}
.x60_c00055{left:384.000000px;}
.xfb_c00055{left:385.500000px;}
.xb_c00055{left:387.420000px;}
.x19_c00055{left:388.500000px;}
.x48_c00055{left:391.500000px;}
.x31_c00055{left:393.420000px;}
.x8c_c00055{left:394.500000px;}
.xb3_c00055{left:396.000000px;}
.x2_c00055{left:399.000000px;}
.xf5_c00055{left:402.000000px;}
.xd2_c00055{left:403.920000px;}
.x3c_c00055{left:406.080000px;}
.xc6_c00055{left:408.000000px;}
.x61_c00055{left:409.500000px;}
.x6d_c00055{left:413.580000px;}
.xa7_c00055{left:415.500000px;}
.xfc_c00055{left:416.580000px;}
.xc2_c00055{left:418.500000px;}
.x8d_c00055{left:420.000000px;}
.x3d_c00055{left:424.500000px;}
.x58_c00055{left:426.000000px;}
.x24_c00055{left:427.500000px;}
.x32_c00055{left:429.420000px;}
.xd9_c00055{left:430.920000px;}
.xf6_c00055{left:433.500000px;}
.xde_c00055{left:436.920000px;}
.x10e_c00055{left:439.500000px;}
.xbe_c00055{left:440.580000px;}
.xc_c00055{left:442.500000px;}
.xc3_c00055{left:444.000000px;}
.x99_c00055{left:445.080000px;}
.x62_c00055{left:447.420000px;}
.x49_c00055{left:450.420000px;}
.x3e_c00055{left:451.920000px;}
.x33_c00055{left:456.420000px;}
.x1a_c00055{left:460.500000px;}
.xcd_c00055{left:463.500000px;}
.xd3_c00055{left:466.500000px;}
.xb4_c00055{left:468.000000px;}
.xbb_c00055{left:469.080000px;}
.x9a_c00055{left:474.000000px;}
.xd_c00055{left:475.500000px;}
.xa1_c00055{left:477.000000px;}
.x4a_c00055{left:478.920000px;}
.x118_c00055{left:480.000000px;}
.x25_c00055{left:481.080000px;}
.x3f_c00055{left:483.000000px;}
.x81_c00055{left:485.580000px;}
.xbc_c00055{left:487.920000px;}
.xec_c00055{left:489.000000px;}
.xa8_c00055{left:490.500000px;}
.xe8_c00055{left:492.000000px;}
.x10f_c00055{left:495.000000px;}
.x6e_c00055{left:496.920000px;}
.xd4_c00055{left:498.420000px;}
.x26_c00055{left:499.920000px;}
.x1b_c00055{left:502.080000px;}
.x59_c00055{left:507.000000px;}
.xe_c00055{left:508.500000px;}
.xb5_c00055{left:510.000000px;}
.x8e_c00055{left:511.080000px;}
.x82_c00055{left:516.000000px;}
.x40_c00055{left:517.500000px;}
.x105_c00055{left:519.000000px;}
.x63_c00055{left:520.920000px;}
.xa9_c00055{left:523.080000px;}
.x27_c00055{left:526.500000px;}
.xf7_c00055{left:528.000000px;}
.x8f_c00055{left:529.920000px;}
.x6f_c00055{left:531.000000px;}
.x4b_c00055{left:532.920000px;}
.x1c_c00055{left:534.420000px;}
.xf_c00055{left:535.920000px;}
.xdf_c00055{left:537.000000px;}
.xda_c00055{left:540.000000px;}
.x108_c00055{left:541.500000px;}
.x41_c00055{left:544.920000px;}
.xa2_c00055{left:547.920000px;}
.x78_c00055{left:550.080000px;}
.xe3_c00055{left:552.420000px;}
.xe0_c00055{left:553.500000px;}
.x34_c00055{left:554.580000px;}
.x28_c00055{left:556.500000px;}
.x64_c00055{left:558.000000px;}
.x5a_c00055{left:559.080000px;}
.xf9_c00055{left:560.580000px;}
.xbf_c00055{left:562.920000px;}
.xc4_c00055{left:564.000000px;}
.xb6_c00055{left:565.920000px;}
.x4c_c00055{left:570.420000px;}
.x114_c00055{left:571.920000px;}
.xaa_c00055{left:573.000000px;}
.x83_c00055{left:574.500000px;}
.x10_c00055{left:575.580000px;}
.x5b_c00055{left:577.920000px;}
.x109_c00055{left:580.500000px;}
.x9b_c00055{left:581.775000px;}
.x42_c00055{left:583.500000px;}
.x35_c00055{left:585.000000px;}
.xce_c00055{left:586.080000px;}
.x29_c00055{left:588.000000px;}
.x100_c00055{left:589.080000px;}
.xe4_c00055{left:591.420000px;}
.x70_c00055{left:592.920000px;}
.x90_c00055{left:594.000000px;}
.x79_c00055{left:595.500000px;}
.xc7_c00055{left:597.000000px;}
.x4d_c00055{left:598.500000px;}
.xd5_c00055{left:599.580000px;}
.x115_c00055{left:601.500000px;}
.x5c_c00055{left:604.500000px;}
.x11_c00055{left:605.580000px;}
.xf8_c00055{left:607.920000px;}
.xab_c00055{left:612.420000px;}
.x7a_c00055{left:613.920000px;}
.xf1_c00055{left:615.000000px;}
.x110_c00055{left:616.500000px;}
.x43_c00055{left:618.420000px;}
.xcf_c00055{left:619.920000px;}
.x101_c00055{left:621.000000px;}
.xc8_c00055{left:622.920000px;}
.x2a_c00055{left:625.080000px;}
.xe9_c00055{left:627.420000px;}
.x10a_c00055{left:628.500000px;}
.xe1_c00055{left:630.000000px;}
.x65_c00055{left:631.920000px;}
.x4e_c00055{left:633.000000px;}
.x71_c00055{left:634.500000px;}
.x1d_c00055{left:636.000000px;}
.xd6_c00055{left:637.500000px;}
.x11c_c00055{left:639.000000px;}
.x91_c00055{left:640.500000px;}
.xac_c00055{left:642.000000px;}
.x2b_c00055{left:643.920000px;}
.xc9_c00055{left:646.500000px;}
.x9c_c00055{left:647.580000px;}
.x7b_c00055{left:649.500000px;}
.x44_c00055{left:652.500000px;}
.x4f_c00055{left:654.420000px;}
.xb7_c00055{left:657.000000px;}
.x92_c00055{left:658.920000px;}
.xf2_c00055{left:660.000000px;}
.xd7_c00055{left:661.920000px;}
.x9d_c00055{left:664.920000px;}
.x66_c00055{left:666.000000px;}
.x7c_c00055{left:667.500000px;}
.x72_c00055{left:669.420000px;}
.x1e_c00055{left:670.500000px;}
.xc0_c00055{left:672.420000px;}
.x12_c00055{left:673.920000px;}
.xca_c00055{left:675.855000px;}
.x36_c00055{left:679.500000px;}
.x50_c00055{left:680.580000px;}
.x67_c00055{left:684.000000px;}
.x84_c00055{left:687.000000px;}
.xd0_c00055{left:688.080000px;}
.x119_c00055{left:690.000000px;}
.x93_c00055{left:691.080000px;}
.x73_c00055{left:694.500000px;}
.xa3_c00055{left:696.000000px;}
.xb8_c00055{left:697.500000px;}
.x85_c00055{left:699.420000px;}
.x102_c00055{left:700.500000px;}
.x45_c00055{left:703.500000px;}
.x37_c00055{left:704.580000px;}
.x13_c00055{left:709.500000px;}
.x106_c00055{left:714.000000px;}
.x51_c00055{left:716.580000px;}
.x38_c00055{left:723.000000px;}
@media print{
.v0_c00055{vertical-align:0.000000pt;}
.ls0_c00055{letter-spacing:0.000000pt;}
.ws0_c00055{word-spacing:-2.746269pt;}
.ws1_c00055{word-spacing:-0.683292pt;}
.ws2_c00055{word-spacing:0.000000pt;}
.fs7_c00055{font-size:3.040000pt;}
.fs5_c00055{font-size:16.640000pt;}
.fs1_c00055{font-size:18.133333pt;}
.fs0_c00055{font-size:22.666667pt;}
.fs2_c00055{font-size:25.706667pt;}
.fs3_c00055{font-size:28.746667pt;}
.fs4_c00055{font-size:31.733333pt;}
.fs6_c00055{font-size:34.773333pt;}
.y0_c00055{bottom:0.000000pt;}
.yd3_c00055{bottom:223.773333pt;}
.yd1_c00055{bottom:224.560000pt;}
.yd2_c00055{bottom:225.306667pt;}
.yd4_c00055{bottom:225.693333pt;}
.yd5_c00055{bottom:225.893333pt;}
.ycf_c00055{bottom:240.360000pt;}
.ycb_c00055{bottom:241.106667pt;}
.yca_c00055{bottom:241.306667pt;}
.yd0_c00055{bottom:242.440000pt;}
.yc9_c00055{bottom:243.026667pt;}
.ycc_c00055{bottom:243.226667pt;}
.ycd_c00055{bottom:243.973333pt;}
.yce_c00055{bottom:244.360000pt;}
.yc7_c00055{bottom:258.440000pt;}
.yc8_c00055{bottom:259.400000pt;}
.yc5_c00055{bottom:260.360000pt;}
.yc6_c00055{bottom:261.706667pt;}
.yc2_c00055{bottom:275.773333pt;}
.yc4_c00055{bottom:277.106667pt;}
.yc1_c00055{bottom:277.693333pt;}
.yc3_c00055{bottom:279.026667pt;}
.ybe_c00055{bottom:293.693333pt;}
.ybc_c00055{bottom:294.440000pt;}
.ybb_c00055{bottom:295.026667pt;}
.yc0_c00055{bottom:295.226667pt;}
.ybf_c00055{bottom:295.973333pt;}
.ybd_c00055{bottom:296.360000pt;}
.yb6_c00055{bottom:309.693333pt;}
.yb9_c00055{bottom:310.640000pt;}
.yba_c00055{bottom:311.026667pt;}
.yb4_c00055{bottom:311.773333pt;}
.yb8_c00055{bottom:312.560000pt;}
.yb7_c00055{bottom:312.733333pt;}
.yb5_c00055{bottom:313.693333pt;}
.yb1_c00055{bottom:328.360000pt;}
.yb0_c00055{bottom:329.106667pt;}
.yaf_c00055{bottom:329.693333pt;}
.yb2_c00055{bottom:330.066667pt;}
.yb3_c00055{bottom:331.026667pt;}
.yad_c00055{bottom:344.360000pt;}
.yac_c00055{bottom:344.560000pt;}
.yab_c00055{bottom:345.306667pt;}
.yaa_c00055{bottom:345.693333pt;}
.ya8_c00055{bottom:346.440000pt;}
.ya7_c00055{bottom:347.400000pt;}
.ya9_c00055{bottom:348.360000pt;}
.yae_c00055{bottom:348.373333pt;}
.ya4_c00055{bottom:362.640000pt;}
.ya6_c00055{bottom:363.026667pt;}
.ya5_c00055{bottom:363.773333pt;}
.ya3_c00055{bottom:364.560000pt;}
.ya2_c00055{bottom:365.693333pt;}
.ya1_c00055{bottom:382.640000pt;}
.y9f_c00055{bottom:383.026667pt;}
.ya0_c00055{bottom:383.226667pt;}
.y9e_c00055{bottom:383.973333pt;}
.y9b_c00055{bottom:397.693333pt;}
.y9c_c00055{bottom:398.440000pt;}
.y9a_c00055{bottom:399.773333pt;}
.y99_c00055{bottom:400.360000pt;}
.y9d_c00055{bottom:400.560000pt;}
.y98_c00055{bottom:401.306667pt;}
.y92_c00055{bottom:415.773333pt;}
.y95_c00055{bottom:417.106667pt;}
.y96_c00055{bottom:417.693333pt;}
.y97_c00055{bottom:417.893333pt;}
.y94_c00055{bottom:418.640000pt;}
.y93_c00055{bottom:419.026667pt;}
.y91_c00055{bottom:432.360000pt;}
.y8d_c00055{bottom:433.306667pt;}
.y8e_c00055{bottom:434.440000pt;}
.y8b_c00055{bottom:435.026667pt;}
.y90_c00055{bottom:435.400000pt;}
.y8f_c00055{bottom:435.973333pt;}
.y8c_c00055{bottom:436.360000pt;}
.y87_c00055{bottom:451.773333pt;}
.y8a_c00055{bottom:452.733333pt;}
.y89_c00055{bottom:453.306667pt;}
.y88_c00055{bottom:453.693333pt;}
.y84_c00055{bottom:468.360000pt;}
.y83_c00055{bottom:469.106667pt;}
.y82_c00055{bottom:471.026667pt;}
.y85_c00055{bottom:471.226667pt;}
.y86_c00055{bottom:471.400000pt;}
.y7e_c00055{bottom:486.440000pt;}
.y81_c00055{bottom:487.400000pt;}
.y80_c00055{bottom:488.360000pt;}
.y7f_c00055{bottom:488.560000pt;}
.y7c_c00055{bottom:503.773333pt;}
.y7b_c00055{bottom:504.733333pt;}
.y7a_c00055{bottom:505.693333pt;}
.y7d_c00055{bottom:506.640000pt;}
.y76_c00055{bottom:520.160000pt;}
.y77_c00055{bottom:521.106667pt;}
.y78_c00055{bottom:522.440000pt;}
.y75_c00055{bottom:523.026667pt;}
.y79_c00055{bottom:523.226667pt;}
.y74_c00055{bottom:524.360000pt;}
.y73_c00055{bottom:541.693333pt;}
.y72_c00055{bottom:556.360000pt;}
.y71_c00055{bottom:557.106667pt;}
.y70_c00055{bottom:558.640000pt;}
.y6f_c00055{bottom:559.026667pt;}
.y6d_c00055{bottom:574.440000pt;}
.y6b_c00055{bottom:575.226667pt;}
.y6a_c00055{bottom:576.360000pt;}
.y6e_c00055{bottom:576.560000pt;}
.y6c_c00055{bottom:577.306667pt;}
.y69_c00055{bottom:590.440000pt;}
.y68_c00055{bottom:591.026667pt;}
.y66_c00055{bottom:591.773333pt;}
.y67_c00055{bottom:592.733333pt;}
.y65_c00055{bottom:593.693333pt;}
.y63_c00055{bottom:608.360000pt;}
.y61_c00055{bottom:610.066667pt;}
.y60_c00055{bottom:611.026667pt;}
.y64_c00055{bottom:611.226667pt;}
.y62_c00055{bottom:611.973333pt;}
.y5b_c00055{bottom:627.773333pt;}
.y5a_c00055{bottom:628.360000pt;}
.y5f_c00055{bottom:628.560000pt;}
.y5c_c00055{bottom:628.733333pt;}
.y5d_c00055{bottom:629.306667pt;}
.y5e_c00055{bottom:629.693333pt;}
.y58_c00055{bottom:645.106667pt;}
.y59_c00055{bottom:647.026667pt;}
.y54_c00055{bottom:661.106667pt;}
.y57_c00055{bottom:662.066667pt;}
.y56_c00055{bottom:662.440000pt;}
.y53_c00055{bottom:663.026667pt;}
.y55_c00055{bottom:663.226667pt;}
.y51_c00055{bottom:678.440000pt;}
.y4d_c00055{bottom:679.400000pt;}
.y4e_c00055{bottom:680.360000pt;}
.y4f_c00055{bottom:680.733333pt;}
.y50_c00055{bottom:681.306667pt;}
.y52_c00055{bottom:681.693333pt;}
.y4a_c00055{bottom:695.026667pt;}
.y4b_c00055{bottom:697.106667pt;}
.y4c_c00055{bottom:697.893333pt;}
.y49_c00055{bottom:699.026667pt;}
.y46_c00055{bottom:713.106667pt;}
.y44_c00055{bottom:714.440000pt;}
.y47_c00055{bottom:715.973333pt;}
.y45_c00055{bottom:716.360000pt;}
.y48_c00055{bottom:717.306667pt;}
.y40_c00055{bottom:731.026667pt;}
.y41_c00055{bottom:731.773333pt;}
.y3e_c00055{bottom:732.733333pt;}
.y42_c00055{bottom:733.306667pt;}
.y3d_c00055{bottom:733.693333pt;}
.y3f_c00055{bottom:733.893333pt;}
.y43_c00055{bottom:734.640000pt;}
.y39_c00055{bottom:749.106667pt;}
.y3b_c00055{bottom:749.893333pt;}
.y3c_c00055{bottom:750.066667pt;}
.y38_c00055{bottom:751.026667pt;}
.y3a_c00055{bottom:751.973333pt;}
.y33_c00055{bottom:766.440000pt;}
.y37_c00055{bottom:767.226667pt;}
.y35_c00055{bottom:767.400000pt;}
.y34_c00055{bottom:768.360000pt;}
.y36_c00055{bottom:768.560000pt;}
.y30_c00055{bottom:783.773333pt;}
.y2f_c00055{bottom:785.693333pt;}
.y31_c00055{bottom:785.893333pt;}
.y32_c00055{bottom:787.026667pt;}
.y2e_c00055{bottom:800.360000pt;}
.y29_c00055{bottom:801.306667pt;}
.y2d_c00055{bottom:802.440000pt;}
.y28_c00055{bottom:803.026667pt;}
.y2a_c00055{bottom:803.226667pt;}
.y2c_c00055{bottom:803.400000pt;}
.y2b_c00055{bottom:804.360000pt;}
.y27_c00055{bottom:819.400000pt;}
.y24_c00055{bottom:819.773333pt;}
.y25_c00055{bottom:820.560000pt;}
.y22_c00055{bottom:821.306667pt;}
.y23_c00055{bottom:821.693333pt;}
.y26_c00055{bottom:822.640000pt;}
.y20_c00055{bottom:835.026667pt;}
.y1f_c00055{bottom:837.106667pt;}
.y21_c00055{bottom:837.893333pt;}
.y1e_c00055{bottom:838.066667pt;}
.y1d_c00055{bottom:839.026667pt;}
.y1b_c00055{bottom:854.440000pt;}
.y1a_c00055{bottom:855.226667pt;}
.y1c_c00055{bottom:855.973333pt;}
.y19_c00055{bottom:856.360000pt;}
.y14_c00055{bottom:869.693333pt;}
.y13_c00055{bottom:871.773333pt;}
.y18_c00055{bottom:872.560000pt;}
.y16_c00055{bottom:873.306667pt;}
.y15_c00055{bottom:873.693333pt;}
.y17_c00055{bottom:874.640000pt;}
.y11_c00055{bottom:889.106667pt;}
.y10_c00055{bottom:889.893333pt;}
.y12_c00055{bottom:891.026667pt;}
.yf_c00055{bottom:906.440000pt;}
.yd_c00055{bottom:907.226667pt;}
.ye_c00055{bottom:907.973333pt;}
.yc_c00055{bottom:908.360000pt;}
.yb_c00055{bottom:923.773333pt;}
.ya_c00055{bottom:924.733333pt;}
.y8_c00055{bottom:925.693333pt;}
.y9_c00055{bottom:925.893333pt;}
.y5_c00055{bottom:941.106667pt;}
.y7_c00055{bottom:941.893333pt;}
.y4_c00055{bottom:942.066667pt;}
.y3_c00055{bottom:943.026667pt;}
.y6_c00055{bottom:943.226667pt;}
.y2_c00055{bottom:976.933333pt;}
.y1_c00055{bottom:978.640000pt;}
.h8_c00055{height:3.739141pt;}
.h6_c00055{height:20.466875pt;}
.h2_c00055{height:22.303646pt;}
.h1_c00055{height:27.879557pt;}
.h3_c00055{height:31.618698pt;}
.h4_c00055{height:35.357839pt;}
.h5_c00055{height:39.031380pt;}
.h7_c00055{height:42.770521pt;}
.h0_c00055{height:1186.666667pt;}
.w0_c00055{width:782.666667pt;}
.x0_c00055{left:0.000000pt;}
.x10b_c00055{left:133.333333pt;}
.xcb_c00055{left:134.293333pt;}
.x1_c00055{left:135.626667pt;}
.x3_c00055{left:136.960000pt;}
.x11a_c00055{left:144.000000pt;}
.xfd_c00055{left:148.000000pt;}
.xdb_c00055{left:148.960000pt;}
.xbd_c00055{left:151.426667pt;}
.xb9_c00055{left:152.373333pt;}
.x4_c00055{left:155.040000pt;}
.xe5_c00055{left:156.000000pt;}
.xf3_c00055{left:156.960000pt;}
.x5d_c00055{left:158.666667pt;}
.x52_c00055{left:160.000000pt;}
.x103_c00055{left:161.333333pt;}
.x68_c00055{left:162.293333pt;}
.x86_c00055{left:164.373333pt;}
.xe6_c00055{left:168.373333pt;}
.xa4_c00055{left:169.333333pt;}
.x2c_c00055{left:171.040000pt;}
.x111_c00055{left:174.666667pt;}
.x94_c00055{left:176.000000pt;}
.x5_c00055{left:179.040000pt;}
.x1f_c00055{left:180.000000pt;}
.xad_c00055{left:181.706667pt;}
.x74_c00055{left:183.626667pt;}
.x46_c00055{left:185.333333pt;}
.x14_c00055{left:186.666667pt;}
.x53_c00055{left:189.333333pt;}
.xd1_c00055{left:190.293333pt;}
.xc1_c00055{left:192.000000pt;}
.xc5_c00055{left:193.706667pt;}
.x9e_c00055{left:196.373333pt;}
.xdc_c00055{left:197.706667pt;}
.x10c_c00055{left:198.666667pt;}
.x20_c00055{left:199.626667pt;}
.xff_c00055{left:200.960000pt;}
.x39_c00055{left:202.666667pt;}
.xe7_c00055{left:204.000000pt;}
.xae_c00055{left:205.706667pt;}
.xfa_c00055{left:206.666667pt;}
.x112_c00055{left:208.000000pt;}
.xe2_c00055{left:209.333333pt;}
.x69_c00055{left:210.666667pt;}
.x87_c00055{left:213.333333pt;}
.x6_c00055{left:217.706667pt;}
.x15_c00055{left:220.000000pt;}
.x2d_c00055{left:221.333333pt;}
.x75_c00055{left:224.373333pt;}
.x95_c00055{left:227.626667pt;}
.xa5_c00055{left:229.706667pt;}
.xfe_c00055{left:230.666667pt;}
.xba_c00055{left:232.000000pt;}
.x16_c00055{left:232.960000pt;}
.x7d_c00055{left:235.626667pt;}
.x116_c00055{left:236.760000pt;}
.x54_c00055{left:238.666667pt;}
.x88_c00055{left:241.706667pt;}
.xd8_c00055{left:243.040000pt;}
.xaf_c00055{left:244.000000pt;}
.x7_c00055{left:247.626667pt;}
.x9f_c00055{left:249.333333pt;}
.x76_c00055{left:250.666667pt;}
.x2e_c00055{left:253.333333pt;}
.xed_c00055{left:254.666667pt;}
.x21_c00055{left:255.626667pt;}
.x5e_c00055{left:259.040000pt;}
.x89_c00055{left:262.666667pt;}
.x107_c00055{left:264.373333pt;}
.x8_c00055{left:265.706667pt;}
.x6a_c00055{left:267.626667pt;}
.xea_c00055{left:269.333333pt;}
.x55_c00055{left:271.040000pt;}
.xb0_c00055{left:272.000000pt;}
.x17_c00055{left:272.960000pt;}
.x3a_c00055{left:276.960000pt;}
.x96_c00055{left:278.666667pt;}
.xee_c00055{left:279.626667pt;}
.x8a_c00055{left:281.333333pt;}
.x6b_c00055{left:284.373333pt;}
.xb1_c00055{left:285.706667pt;}
.x7e_c00055{left:286.666667pt;}
.xf4_c00055{left:288.000000pt;}
.x9_c00055{left:289.333333pt;}
.x47_c00055{left:290.666667pt;}
.x2f_c00055{left:292.000000pt;}
.x22_c00055{left:292.960000pt;}
.x97_c00055{left:296.000000pt;}
.xeb_c00055{left:298.666667pt;}
.x77_c00055{left:300.373333pt;}
.x7f_c00055{left:301.333333pt;}
.x113_c00055{left:302.293333pt;}
.xdd_c00055{left:303.240000pt;}
.x56_c00055{left:304.373333pt;}
.xef_c00055{left:305.333333pt;}
.x5f_c00055{left:306.666667pt;}
.x30_c00055{left:308.373333pt;}
.x18_c00055{left:311.626667pt;}
.x3b_c00055{left:313.333333pt;}
.x80_c00055{left:314.666667pt;}
.x104_c00055{left:317.333333pt;}
.xa0_c00055{left:318.666667pt;}
.x23_c00055{left:320.373333pt;}
.xf0_c00055{left:321.333333pt;}
.x117_c00055{left:324.000000pt;}
.x10d_c00055{left:325.706667pt;}
.x11b_c00055{left:327.040000pt;}
.xb2_c00055{left:328.000000pt;}
.xa_c00055{left:329.333333pt;}
.xa6_c00055{left:330.666667pt;}
.x98_c00055{left:331.626667pt;}
.x8b_c00055{left:334.293333pt;}
.x57_c00055{left:336.000000pt;}
.x6c_c00055{left:337.333333pt;}
.xcc_c00055{left:340.000000pt;}
.x60_c00055{left:341.333333pt;}
.xfb_c00055{left:342.666667pt;}
.xb_c00055{left:344.373333pt;}
.x19_c00055{left:345.333333pt;}
.x48_c00055{left:348.000000pt;}
.x31_c00055{left:349.706667pt;}
.x8c_c00055{left:350.666667pt;}
.xb3_c00055{left:352.000000pt;}
.x2_c00055{left:354.666667pt;}
.xf5_c00055{left:357.333333pt;}
.xd2_c00055{left:359.040000pt;}
.x3c_c00055{left:360.960000pt;}
.xc6_c00055{left:362.666667pt;}
.x61_c00055{left:364.000000pt;}
.x6d_c00055{left:367.626667pt;}
.xa7_c00055{left:369.333333pt;}
.xfc_c00055{left:370.293333pt;}
.xc2_c00055{left:372.000000pt;}
.x8d_c00055{left:373.333333pt;}
.x3d_c00055{left:377.333333pt;}
.x58_c00055{left:378.666667pt;}
.x24_c00055{left:380.000000pt;}
.x32_c00055{left:381.706667pt;}
.xd9_c00055{left:383.040000pt;}
.xf6_c00055{left:385.333333pt;}
.xde_c00055{left:388.373333pt;}
.x10e_c00055{left:390.666667pt;}
.xbe_c00055{left:391.626667pt;}
.xc_c00055{left:393.333333pt;}
.xc3_c00055{left:394.666667pt;}
.x99_c00055{left:395.626667pt;}
.x62_c00055{left:397.706667pt;}
.x49_c00055{left:400.373333pt;}
.x3e_c00055{left:401.706667pt;}
.x33_c00055{left:405.706667pt;}
.x1a_c00055{left:409.333333pt;}
.xcd_c00055{left:412.000000pt;}
.xd3_c00055{left:414.666667pt;}
.xb4_c00055{left:416.000000pt;}
.xbb_c00055{left:416.960000pt;}
.x9a_c00055{left:421.333333pt;}
.xd_c00055{left:422.666667pt;}
.xa1_c00055{left:424.000000pt;}
.x4a_c00055{left:425.706667pt;}
.x118_c00055{left:426.666667pt;}
.x25_c00055{left:427.626667pt;}
.x3f_c00055{left:429.333333pt;}
.x81_c00055{left:431.626667pt;}
.xbc_c00055{left:433.706667pt;}
.xec_c00055{left:434.666667pt;}
.xa8_c00055{left:436.000000pt;}
.xe8_c00055{left:437.333333pt;}
.x10f_c00055{left:440.000000pt;}
.x6e_c00055{left:441.706667pt;}
.xd4_c00055{left:443.040000pt;}
.x26_c00055{left:444.373333pt;}
.x1b_c00055{left:446.293333pt;}
.x59_c00055{left:450.666667pt;}
.xe_c00055{left:452.000000pt;}
.xb5_c00055{left:453.333333pt;}
.x8e_c00055{left:454.293333pt;}
.x82_c00055{left:458.666667pt;}
.x40_c00055{left:460.000000pt;}
.x105_c00055{left:461.333333pt;}
.x63_c00055{left:463.040000pt;}
.xa9_c00055{left:464.960000pt;}
.x27_c00055{left:468.000000pt;}
.xf7_c00055{left:469.333333pt;}
.x8f_c00055{left:471.040000pt;}
.x6f_c00055{left:472.000000pt;}
.x4b_c00055{left:473.706667pt;}
.x1c_c00055{left:475.040000pt;}
.xf_c00055{left:476.373333pt;}
.xdf_c00055{left:477.333333pt;}
.xda_c00055{left:480.000000pt;}
.x108_c00055{left:481.333333pt;}
.x41_c00055{left:484.373333pt;}
.xa2_c00055{left:487.040000pt;}
.x78_c00055{left:488.960000pt;}
.xe3_c00055{left:491.040000pt;}
.xe0_c00055{left:492.000000pt;}
.x34_c00055{left:492.960000pt;}
.x28_c00055{left:494.666667pt;}
.x64_c00055{left:496.000000pt;}
.x5a_c00055{left:496.960000pt;}
.xf9_c00055{left:498.293333pt;}
.xbf_c00055{left:500.373333pt;}
.xc4_c00055{left:501.333333pt;}
.xb6_c00055{left:503.040000pt;}
.x4c_c00055{left:507.040000pt;}
.x114_c00055{left:508.373333pt;}
.xaa_c00055{left:509.333333pt;}
.x83_c00055{left:510.666667pt;}
.x10_c00055{left:511.626667pt;}
.x5b_c00055{left:513.706667pt;}
.x109_c00055{left:516.000000pt;}
.x9b_c00055{left:517.133333pt;}
.x42_c00055{left:518.666667pt;}
.x35_c00055{left:520.000000pt;}
.xce_c00055{left:520.960000pt;}
.x29_c00055{left:522.666667pt;}
.x100_c00055{left:523.626667pt;}
.xe4_c00055{left:525.706667pt;}
.x70_c00055{left:527.040000pt;}
.x90_c00055{left:528.000000pt;}
.x79_c00055{left:529.333333pt;}
.xc7_c00055{left:530.666667pt;}
.x4d_c00055{left:532.000000pt;}
.xd5_c00055{left:532.960000pt;}
.x115_c00055{left:534.666667pt;}
.x5c_c00055{left:537.333333pt;}
.x11_c00055{left:538.293333pt;}
.xf8_c00055{left:540.373333pt;}
.xab_c00055{left:544.373333pt;}
.x7a_c00055{left:545.706667pt;}
.xf1_c00055{left:546.666667pt;}
.x110_c00055{left:548.000000pt;}
.x43_c00055{left:549.706667pt;}
.xcf_c00055{left:551.040000pt;}
.x101_c00055{left:552.000000pt;}
.xc8_c00055{left:553.706667pt;}
.x2a_c00055{left:555.626667pt;}
.xe9_c00055{left:557.706667pt;}
.x10a_c00055{left:558.666667pt;}
.xe1_c00055{left:560.000000pt;}
.x65_c00055{left:561.706667pt;}
.x4e_c00055{left:562.666667pt;}
.x71_c00055{left:564.000000pt;}
.x1d_c00055{left:565.333333pt;}
.xd6_c00055{left:566.666667pt;}
.x11c_c00055{left:568.000000pt;}
.x91_c00055{left:569.333333pt;}
.xac_c00055{left:570.666667pt;}
.x2b_c00055{left:572.373333pt;}
.xc9_c00055{left:574.666667pt;}
.x9c_c00055{left:575.626667pt;}
.x7b_c00055{left:577.333333pt;}
.x44_c00055{left:580.000000pt;}
.x4f_c00055{left:581.706667pt;}
.xb7_c00055{left:584.000000pt;}
.x92_c00055{left:585.706667pt;}
.xf2_c00055{left:586.666667pt;}
.xd7_c00055{left:588.373333pt;}
.x9d_c00055{left:591.040000pt;}
.x66_c00055{left:592.000000pt;}
.x7c_c00055{left:593.333333pt;}
.x72_c00055{left:595.040000pt;}
.x1e_c00055{left:596.000000pt;}
.xc0_c00055{left:597.706667pt;}
.x12_c00055{left:599.040000pt;}
.xca_c00055{left:600.760000pt;}
.x36_c00055{left:604.000000pt;}
.x50_c00055{left:604.960000pt;}
.x67_c00055{left:608.000000pt;}
.x84_c00055{left:610.666667pt;}
.xd0_c00055{left:611.626667pt;}
.x119_c00055{left:613.333333pt;}
.x93_c00055{left:614.293333pt;}
.x73_c00055{left:617.333333pt;}
.xa3_c00055{left:618.666667pt;}
.xb8_c00055{left:620.000000pt;}
.x85_c00055{left:621.706667pt;}
.x102_c00055{left:622.666667pt;}
.x45_c00055{left:625.333333pt;}
.x37_c00055{left:626.293333pt;}
.x13_c00055{left:630.666667pt;}
.x106_c00055{left:634.666667pt;}
.x51_c00055{left:636.960000pt;}
.x38_c00055{left:642.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_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_c86b768f31b335fd3fd2181a.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf5_c00056{transform:matrix(0.303268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303268,0.000000,0.000000,0.250000,0,0);}
.mf0_c00056{transform:matrix(0.322638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322638,0.000000,0.000000,0.250000,0,0);}
.me8_c00056{transform:matrix(0.329739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329739,0.000000,0.000000,0.250000,0,0);}
.m54_c00056{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.m8d_c00056{transform:matrix(0.341678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341678,0.000000,0.000000,0.250000,0,0);}
.mde_c00056{transform:matrix(0.344709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344709,0.000000,0.000000,0.250000,0,0);}
.mc3_c00056{transform:matrix(0.349020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349020,0.000000,0.000000,0.250000,0,0);}
.mdd_c00056{transform:matrix(0.353315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353315,0.000000,0.000000,0.250000,0,0);}
.m79_c00056{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.mf6_c00056{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m92_c00056{transform:matrix(0.361777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361777,0.000000,0.000000,0.250000,0,0);}
.m46_c00056{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m55_c00056{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mdc_c00056{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m33_c00056{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m77_c00056{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m9f_c00056{transform:matrix(0.372316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372316,0.000000,0.000000,0.250000,0,0);}
.ma7_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);}
.mbc_c00056{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mb5_c00056{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m32_c00056{transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);}
.md5_c00056{transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);}
.mb9_c00056{transform:matrix(0.385353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385353,0.000000,0.000000,0.250000,0,0);}
.m35_c00056{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m94_c00056{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.md2_c00056{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m53_c00056{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m51_c00056{transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);}
.m2_c00056{transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);}
.m8b_c00056{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.ma1_c00056{transform:matrix(0.393788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393788,0.000000,0.000000,0.250000,0,0);}
.med_c00056{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.ma0_c00056{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.md4_c00056{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m38_c00056{transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);}
.m69_c00056{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m99_c00056{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m95_c00056{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.mea_c00056{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m84_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);}
.mef_c00056{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m8a_c00056{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m40_c00056{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m1f_c00056{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.mc9_c00056{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m3a_c00056{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m41_c00056{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m42_c00056{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m37_c00056{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m2e_c00056{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mba_c00056{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m28_c00056{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.md9_c00056{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m6c_c00056{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.md3_c00056{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.mb1_c00056{transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);}
.mce_c00056{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m73_c00056{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mcb_c00056{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.mc7_c00056{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m43_c00056{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.md8_c00056{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m6_c00056{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m88_c00056{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mbe_c00056{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m85_c00056{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.m59_c00056{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m86_c00056{transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);}
.mb0_c00056{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m2f_c00056{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mc5_c00056{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.me5_c00056{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.me4_c00056{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m58_c00056{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.m72_c00056{transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);}
.m9_c00056{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mcd_c00056{transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);}
.m7c_c00056{transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);}
.m5c_c00056{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m74_c00056{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.m30_c00056{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m62_c00056{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mf4_c00056{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m4e_c00056{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.me6_c00056{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m8c_c00056{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m9a_c00056{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m82_c00056{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m1a_c00056{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.m65_c00056{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.md7_c00056{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.ma2_c00056{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m3e_c00056{transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);}
.m1_c00056{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m45_c00056{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mbb_c00056{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.mda_c00056{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.mb3_c00056{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.m5f_c00056{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.mbf_c00056{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.mf3_c00056{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m98_c00056{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.mee_c00056{transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);}
.mdb_c00056{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m68_c00056{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m4c_c00056{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.mcf_c00056{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.m24_c00056{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m15_c00056{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.mb2_c00056{transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);}
.m63_c00056{transform:matrix(0.473562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473562,0.000000,0.000000,0.250000,0,0);}
.m93_c00056{transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);}
.m4d_c00056{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.md_c00056{transform:matrix(0.476345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476345,0.000000,0.000000,0.250000,0,0);}
.m17_c00056{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m6b_c00056{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.me1_c00056{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.me2_c00056{transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);}
.m47_c00056{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.ma6_c00056{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m6e_c00056{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m50_c00056{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m9b_c00056{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m52_c00056{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m56_c00056{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m10_c00056{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m60_c00056{transform:matrix(0.489332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489332,0.000000,0.000000,0.250000,0,0);}
.mc_c00056{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m18_c00056{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m9c_c00056{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m8f_c00056{transform:matrix(0.493257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493257,0.000000,0.000000,0.250000,0,0);}
.m1d_c00056{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m71_c00056{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m12_c00056{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.mc4_c00056{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.me3_c00056{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m3_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);}
.m83_c00056{transform:matrix(0.502783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502783,0.000000,0.000000,0.250000,0,0);}
.m5a_c00056{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m76_c00056{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mca_c00056{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.mec_c00056{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m91_c00056{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mb7_c00056{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m3f_c00056{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m2d_c00056{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.md1_c00056{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m22_c00056{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mc1_c00056{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.md0_c00056{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.mb6_c00056{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m3d_c00056{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m3b_c00056{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m9d_c00056{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.meb_c00056{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m14_c00056{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m3c_c00056{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m6a_c00056{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m27_c00056{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m5_c00056{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mf1_c00056{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m4_c00056{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m80_c00056{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m5d_c00056{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mc8_c00056{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mab_c00056{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m16_c00056{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m70_c00056{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mb4_c00056{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m5e_c00056{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mcc_c00056{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m57_c00056{transform:matrix(0.541280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541280,0.000000,0.000000,0.250000,0,0);}
.m7_c00056{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m5b_c00056{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m7e_c00056{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.mb8_c00056{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m7f_c00056{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m39_c00056{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m1b_c00056{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mf2_c00056{transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);}
.m90_c00056{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m78_c00056{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.ma9_c00056{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m1e_c00056{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m20_c00056{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m49_c00056{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m75_c00056{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m97_c00056{transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);}
.m29_c00056{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m4a_c00056{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m8_c00056{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mc2_c00056{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m21_c00056{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mc0_c00056{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m87_c00056{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.mb_c00056{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m2b_c00056{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.md6_c00056{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m31_c00056{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m1c_c00056{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m23_c00056{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m6d_c00056{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.me_c00056{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m9e_c00056{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m81_c00056{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mdf_c00056{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m19_c00056{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mac_c00056{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.mae_c00056{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m64_c00056{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.me7_c00056{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.m11_c00056{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m89_c00056{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.mad_c00056{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m48_c00056{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m2c_c00056{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m34_c00056{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.ma3_c00056{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.m13_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);}
.m25_c00056{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m0_c00056{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m66_c00056{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mbd_c00056{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m26_c00056{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m61_c00056{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m36_c00056{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.ma5_c00056{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.ma8_c00056{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m44_c00056{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.maf_c00056{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);}
.maa_c00056{transform:matrix(0.714744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.714744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.714744,0.000000,0.000000,0.250000,0,0);}
.m8e_c00056{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m7d_c00056{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mc6_c00056{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.me0_c00056{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m67_c00056{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.ma_c00056{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.me9_c00056{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m2a_c00056{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.ma4_c00056{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mf_c00056{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m6f_c00056{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.m96_c00056{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m7a_c00056{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m4b_c00056{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m4f_c00056{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m7b_c00056{transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);}
.v0_c00056{vertical-align:0.000000px;}
.ls0_c00056{letter-spacing:0.000000px;}
.sc__c00056{text-shadow:none;}
.sc0_c00056{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00056{-webkit-text-stroke:0px transparent;}
.sc0_c00056{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00056{word-spacing:-2.174208px;}
.ws1_c00056{word-spacing:0.000000px;}
.fc0_c00056{color:transparent;}
.fs4_c00056{font-size:18.720000px;}
.fs0_c00056{font-size:20.400000px;}
.fs6_c00056{font-size:25.500000px;}
.fs1_c00056{font-size:28.920000px;}
.fs5_c00056{font-size:32.340000px;}
.fs3_c00056{font-size:35.700000px;}
.fs2_c00056{font-size:39.120000px;}
.fs7_c00056{font-size:42.540000px;}
.fs8_c00056{font-size:45.900000px;}
.y0_c00056{bottom:0.000000px;}
.yf8_c00056{bottom:250.905000px;}
.yf6_c00056{bottom:253.245000px;}
.yf5_c00056{bottom:254.325000px;}
.yfb_c00056{bottom:254.745000px;}
.yf7_c00056{bottom:255.405000px;}
.yf4_c00056{bottom:255.600000px;}
.yfa_c00056{bottom:255.825000px;}
.yf9_c00056{bottom:256.470000px;}
.yfc_c00056{bottom:256.905000px;}
.yf1_c00056{bottom:272.745000px;}
.yf0_c00056{bottom:273.180000px;}
.yf2_c00056{bottom:274.905000px;}
.yf3_c00056{bottom:275.130000px;}
.yef_c00056{bottom:276.405000px;}
.yee_c00056{bottom:277.905000px;}
.ye7_c00056{bottom:289.905000px;}
.ye8_c00056{bottom:292.245000px;}
.yed_c00056{bottom:292.470000px;}
.ye9_c00056{bottom:293.325000px;}
.yec_c00056{bottom:293.745000px;}
.ye6_c00056{bottom:294.405000px;}
.yeb_c00056{bottom:294.630000px;}
.yea_c00056{bottom:295.470000px;}
.ye4_c00056{bottom:295.680000px;}
.ye5_c00056{bottom:295.905000px;}
.ye2_c00056{bottom:311.745000px;}
.ye3_c00056{bottom:313.245000px;}
.ye1_c00056{bottom:313.905000px;}
.ye0_c00056{bottom:314.130000px;}
.ydf_c00056{bottom:315.405000px;}
.yde_c00056{bottom:316.905000px;}
.ydb_c00056{bottom:331.245000px;}
.ydc_c00056{bottom:332.325000px;}
.yda_c00056{bottom:333.405000px;}
.yd7_c00056{bottom:333.600000px;}
.yd9_c00056{bottom:333.630000px;}
.ydd_c00056{bottom:333.825000px;}
.yd8_c00056{bottom:334.905000px;}
.yd3_c00056{bottom:350.745000px;}
.yd4_c00056{bottom:352.905000px;}
.yd2_c00056{bottom:353.130000px;}
.yd5_c00056{bottom:353.970000px;}
.yd6_c00056{bottom:355.470000px;}
.yd1_c00056{bottom:355.905000px;}
.yd0_c00056{bottom:357.825000px;}
.ycc_c00056{bottom:370.245000px;}
.yce_c00056{bottom:371.325000px;}
.yc9_c00056{bottom:372.180000px;}
.ycb_c00056{bottom:372.405000px;}
.ycd_c00056{bottom:372.630000px;}
.yca_c00056{bottom:373.470000px;}
.yc8_c00056{bottom:373.680000px;}
.ycf_c00056{bottom:373.905000px;}
.yc7_c00056{bottom:391.245000px;}
.yc6_c00056{bottom:392.325000px;}
.yc5_c00056{bottom:392.970000px;}
.yc4_c00056{bottom:393.405000px;}
.yc3_c00056{bottom:394.905000px;}
.yc2_c00056{bottom:395.745000px;}
.ybe_c00056{bottom:410.745000px;}
.yc0_c00056{bottom:411.630000px;}
.yc1_c00056{bottom:411.825000px;}
.ybf_c00056{bottom:412.905000px;}
.ybd_c00056{bottom:414.405000px;}
.ybc_c00056{bottom:430.245000px;}
.ybb_c00056{bottom:431.130000px;}
.yb8_c00056{bottom:431.325000px;}
.yba_c00056{bottom:431.970000px;}
.yb9_c00056{bottom:432.405000px;}
.yb7_c00056{bottom:433.245000px;}
.yb4_c00056{bottom:449.745000px;}
.yb6_c00056{bottom:451.905000px;}
.yb5_c00056{bottom:452.130000px;}
.yb3_c00056{bottom:452.970000px;}
.yb2_c00056{bottom:455.745000px;}
.yb1_c00056{bottom:468.825000px;}
.yb0_c00056{bottom:469.245000px;}
.yae_c00056{bottom:470.325000px;}
.yad_c00056{bottom:470.970000px;}
.yaf_c00056{bottom:471.405000px;}
.yac_c00056{bottom:471.825000px;}
.yab_c00056{bottom:472.905000px;}
.yaa_c00056{bottom:473.325000px;}
.ya8_c00056{bottom:488.745000px;}
.ya9_c00056{bottom:489.825000px;}
.ya5_c00056{bottom:490.245000px;}
.ya6_c00056{bottom:490.905000px;}
.ya7_c00056{bottom:491.130000px;}
.ya4_c00056{bottom:493.245000px;}
.ya1_c00056{bottom:509.745000px;}
.ya3_c00056{bottom:510.405000px;}
.y9f_c00056{bottom:510.600000px;}
.ya2_c00056{bottom:511.470000px;}
.ya0_c00056{bottom:511.905000px;}
.y9d_c00056{bottom:528.825000px;}
.y9b_c00056{bottom:529.245000px;}
.y9e_c00056{bottom:530.130000px;}
.y9c_c00056{bottom:531.405000px;}
.y95_c00056{bottom:548.325000px;}
.y97_c00056{bottom:548.745000px;}
.y94_c00056{bottom:549.180000px;}
.y9a_c00056{bottom:549.630000px;}
.y96_c00056{bottom:549.825000px;}
.y99_c00056{bottom:550.470000px;}
.y98_c00056{bottom:550.905000px;}
.y93_c00056{bottom:555.405000px;}
.y91_c00056{bottom:568.245000px;}
.y90_c00056{bottom:569.130000px;}
.y92_c00056{bottom:569.325000px;}
.y8f_c00056{bottom:570.405000px;}
.y8e_c00056{bottom:571.470000px;}
.y8d_c00056{bottom:571.905000px;}
.y8c_c00056{bottom:587.745000px;}
.y8a_c00056{bottom:588.825000px;}
.y8b_c00056{bottom:589.905000px;}
.y89_c00056{bottom:590.325000px;}
.y88_c00056{bottom:591.405000px;}
.y87_c00056{bottom:607.245000px;}
.y81_c00056{bottom:607.680000px;}
.y83_c00056{bottom:608.745000px;}
.y86_c00056{bottom:609.405000px;}
.y84_c00056{bottom:609.825000px;}
.y85_c00056{bottom:610.470000px;}
.y82_c00056{bottom:610.905000px;}
.y80_c00056{bottom:613.050000px;}
.y7f_c00056{bottom:626.970000px;}
.y7d_c00056{bottom:629.130000px;}
.y7e_c00056{bottom:629.970000px;}
.y7c_c00056{bottom:630.405000px;}
.y7a_c00056{bottom:631.680000px;}
.y7b_c00056{bottom:631.905000px;}
.y79_c00056{bottom:645.405000px;}
.y75_c00056{bottom:647.745000px;}
.y77_c00056{bottom:648.630000px;}
.y76_c00056{bottom:649.470000px;}
.y74_c00056{bottom:649.905000px;}
.y78_c00056{bottom:650.970000px;}
.y73_c00056{bottom:651.180000px;}
.y70_c00056{bottom:664.905000px;}
.y6f_c00056{bottom:665.745000px;}
.y71_c00056{bottom:666.180000px;}
.y72_c00056{bottom:667.245000px;}
.y6e_c00056{bottom:669.405000px;}
.y6d_c00056{bottom:671.325000px;}
.y69_c00056{bottom:686.745000px;}
.y6c_c00056{bottom:687.825000px;}
.y6a_c00056{bottom:688.905000px;}
.y6b_c00056{bottom:689.130000px;}
.y68_c00056{bottom:690.825000px;}
.y67_c00056{bottom:708.180000px;}
.y65_c00056{bottom:724.905000px;}
.y62_c00056{bottom:727.680000px;}
.y64_c00056{bottom:727.905000px;}
.y63_c00056{bottom:728.130000px;}
.y66_c00056{bottom:728.970000px;}
.y60_c00056{bottom:745.245000px;}
.y5e_c00056{bottom:747.405000px;}
.y61_c00056{bottom:747.630000px;}
.y5f_c00056{bottom:748.470000px;}
.y5d_c00056{bottom:749.325000px;}
.y5b_c00056{bottom:766.245000px;}
.y59_c00056{bottom:767.130000px;}
.y5c_c00056{bottom:767.325000px;}
.y5a_c00056{bottom:768.405000px;}
.y57_c00056{bottom:768.825000px;}
.y58_c00056{bottom:769.470000px;}
.y56_c00056{bottom:785.745000px;}
.y54_c00056{bottom:786.630000px;}
.y53_c00056{bottom:786.825000px;}
.y55_c00056{bottom:787.905000px;}
.y52_c00056{bottom:791.130000px;}
.y4e_c00056{bottom:805.245000px;}
.y51_c00056{bottom:806.130000px;}
.y4d_c00056{bottom:806.325000px;}
.y4f_c00056{bottom:806.970000px;}
.y50_c00056{bottom:807.405000px;}
.y4a_c00056{bottom:824.745000px;}
.y4b_c00056{bottom:825.630000px;}
.y4c_c00056{bottom:825.825000px;}
.y49_c00056{bottom:826.905000px;}
.y48_c00056{bottom:828.825000px;}
.y44_c00056{bottom:844.245000px;}
.y47_c00056{bottom:845.325000px;}
.y41_c00056{bottom:845.745000px;}
.y43_c00056{bottom:846.405000px;}
.y45_c00056{bottom:846.630000px;}
.y42_c00056{bottom:846.825000px;}
.y46_c00056{bottom:847.470000px;}
.y3d_c00056{bottom:863.745000px;}
.y3c_c00056{bottom:863.970000px;}
.y3f_c00056{bottom:864.825000px;}
.y3e_c00056{bottom:865.245000px;}
.y3b_c00056{bottom:865.905000px;}
.y40_c00056{bottom:866.130000px;}
.y38_c00056{bottom:883.245000px;}
.y3a_c00056{bottom:884.325000px;}
.y37_c00056{bottom:884.745000px;}
.y34_c00056{bottom:885.180000px;}
.y36_c00056{bottom:885.405000px;}
.y35_c00056{bottom:886.470000px;}
.y39_c00056{bottom:886.905000px;}
.y33_c00056{bottom:901.905000px;}
.y31_c00056{bottom:904.245000px;}
.y32_c00056{bottom:905.130000px;}
.y30_c00056{bottom:906.405000px;}
.y2f_c00056{bottom:906.825000px;}
.y2b_c00056{bottom:923.325000px;}
.y2c_c00056{bottom:923.745000px;}
.y2e_c00056{bottom:924.630000px;}
.y29_c00056{bottom:925.245000px;}
.y2d_c00056{bottom:925.470000px;}
.y2a_c00056{bottom:925.905000px;}
.y28_c00056{bottom:928.470000px;}
.y27_c00056{bottom:941.745000px;}
.y26_c00056{bottom:943.245000px;}
.y24_c00056{bottom:944.130000px;}
.y25_c00056{bottom:944.325000px;}
.y23_c00056{bottom:945.405000px;}
.y22_c00056{bottom:946.905000px;}
.y21_c00056{bottom:962.745000px;}
.y20_c00056{bottom:964.905000px;}
.y1f_c00056{bottom:965.325000px;}
.y1d_c00056{bottom:982.245000px;}
.y1c_c00056{bottom:984.405000px;}
.y1e_c00056{bottom:985.470000px;}
.y19_c00056{bottom:1000.905000px;}
.y1a_c00056{bottom:1001.745000px;}
.y15_c00056{bottom:1001.970000px;}
.y16_c00056{bottom:1002.825000px;}
.y17_c00056{bottom:1003.905000px;}
.y1b_c00056{bottom:1004.130000px;}
.y18_c00056{bottom:1004.970000px;}
.y14_c00056{bottom:1006.905000px;}
.y11_c00056{bottom:1020.405000px;}
.y10_c00056{bottom:1022.325000px;}
.y13_c00056{bottom:1023.405000px;}
.y12_c00056{bottom:1024.470000px;}
.yf_c00056{bottom:1026.405000px;}
.ye_c00056{bottom:1039.905000px;}
.yc_c00056{bottom:1040.745000px;}
.ya_c00056{bottom:1042.905000px;}
.yd_c00056{bottom:1043.130000px;}
.yb_c00056{bottom:1043.970000px;}
.y9_c00056{bottom:1044.405000px;}
.y7_c00056{bottom:1060.905000px;}
.y5_c00056{bottom:1061.745000px;}
.y3_c00056{bottom:1062.180000px;}
.y6_c00056{bottom:1062.630000px;}
.y8_c00056{bottom:1062.825000px;}
.y4_c00056{bottom:1063.905000px;}
.y2_c00056{bottom:1098.405000px;}
.y1_c00056{bottom:1100.550000px;}
.h5_c00056{height:23.025234px;}
.h1_c00056{height:25.091602px;}
.h7_c00056{height:31.364502px;}
.h2_c00056{height:35.571035px;}
.h6_c00056{height:39.777568px;}
.h4_c00056{height:43.910303px;}
.h3_c00056{height:48.116836px;}
.h8_c00056{height:52.323369px;}
.h9_c00056{height:56.456104px;}
.h0_c00056{height:1335.000000px;}
.w0_c00056{width:880.500000px;}
.x0_c00056{left:0.000000px;}
.x3_c00056{left:154.920000px;}
.x5f_c00056{left:169.500000px;}
.x45_c00056{left:171.000000px;}
.x51_c00056{left:172.080000px;}
.xc8_c00056{left:178.500000px;}
.x5b_c00056{left:184.500000px;}
.x2d_c00056{left:187.080000px;}
.x20_c00056{left:189.000000px;}
.x46_c00056{left:190.920000px;}
.xb5_c00056{left:193.080000px;}
.xea_c00056{left:194.580000px;}
.x71_c00056{left:196.500000px;}
.x12_c00056{left:199.080000px;}
.xc2_c00056{left:200.580000px;}
.xad_c00056{left:203.580000px;}
.xe1_c00056{left:205.080000px;}
.x7b_c00056{left:210.000000px;}
.xc5_c00056{left:211.500000px;}
.xb6_c00056{left:213.000000px;}
.xdf_c00056{left:214.080000px;}
.x43_c00056{left:216.420000px;}
.x47_c00056{left:217.500000px;}
.xe6_c00056{left:219.000000px;}
.xce_c00056{left:220.500000px;}
.xf4_c00056{left:222.000000px;}
.x4_c00056{left:223.080000px;}
.x93_c00056{left:226.080000px;}
.xb7_c00056{left:228.420000px;}
.x13_c00056{left:229.500000px;}
.x8d_c00056{left:231.000000px;}
.xd6_c00056{left:234.420000px;}
.x21_c00056{left:235.920000px;}
.xcf_c00056{left:237.000000px;}
.x69_c00056{left:238.080000px;}
.xe7_c00056{left:240.000000px;}
.x5_c00056{left:241.500000px;}
.x60_c00056{left:243.000000px;}
.xa0_c00056{left:247.500000px;}
.x9c_c00056{left:249.000000px;}
.xf5_c00056{left:250.500000px;}
.xe3_c00056{left:251.580000px;}
.x44_c00056{left:253.080000px;}
.xbe_c00056{left:254.145000px;}
.x72_c00056{left:255.420000px;}
.x86_c00056{left:256.500000px;}
.x7c_c00056{left:258.420000px;}
.x14_c00056{left:261.420000px;}
.xae_c00056{left:262.920000px;}
.xef_c00056{left:264.420000px;}
.x39_c00056{left:265.920000px;}
.x5c_c00056{left:268.080000px;}
.x2e_c00056{left:270.420000px;}
.x52_c00056{left:271.920000px;}
.x94_c00056{left:275.580000px;}
.x48_c00056{left:278.580000px;}
.x8e_c00056{left:280.080000px;}
.x102_c00056{left:282.420000px;}
.xa1_c00056{left:283.500000px;}
.x6_c00056{left:285.420000px;}
.x22_c00056{left:288.000000px;}
.x9d_c00056{left:289.080000px;}
.xfe_c00056{left:290.145000px;}
.x73_c00056{left:291.420000px;}
.x49_c00056{left:297.000000px;}
.x61_c00056{left:299.580000px;}
.x87_c00056{left:302.580000px;}
.xd7_c00056{left:304.080000px;}
.x2f_c00056{left:305.580000px;}
.xa9_c00056{left:307.500000px;}
.x4a_c00056{left:309.000000px;}
.x6a_c00056{left:310.500000px;}
.x7_c00056{left:312.420000px;}
.x53_c00056{left:315.000000px;}
.x7d_c00056{left:316.080000px;}
.x23_c00056{left:319.080000px;}
.x95_c00056{left:321.000000px;}
.x15_c00056{left:322.500000px;}
.xf8_c00056{left:325.500000px;}
.x74_c00056{left:327.000000px;}
.xd0_c00056{left:328.500000px;}
.x5d_c00056{left:334.500000px;}
.x24_c00056{left:337.920000px;}
.x30_c00056{left:339.000000px;}
.x16_c00056{left:343.500000px;}
.x3a_c00056{left:346.500000px;}
.x7e_c00056{left:348.420000px;}
.xd8_c00056{left:349.500000px;}
.x75_c00056{left:354.420000px;}
.x5e_c00056{left:356.580000px;}
.x8_c00056{left:358.080000px;}
.xf9_c00056{left:360.420000px;}
.xff_c00056{left:363.420000px;}
.x4b_c00056{left:364.500000px;}
.xb2_c00056{left:366.420000px;}
.x3b_c00056{left:368.580000px;}
.x31_c00056{left:370.920000px;}
.x62_c00056{left:372.420000px;}
.xe4_c00056{left:373.500000px;}
.xb8_c00056{left:375.000000px;}
.x9_c00056{left:376.500000px;}
.x103_c00056{left:378.420000px;}
.xaa_c00056{left:379.920000px;}
.x9e_c00056{left:384.000000px;}
.x7f_c00056{left:385.080000px;}
.xfa_c00056{left:387.420000px;}
.x54_c00056{left:388.920000px;}
.xdc_c00056{left:390.000000px;}
.x17_c00056{left:391.080000px;}
.xec_c00056{left:392.580000px;}
.xa2_c00056{left:394.080000px;}
.x1_c00056{left:397.500000px;}
.x4c_c00056{left:399.000000px;}
.xf6_c00056{left:400.920000px;}
.x6b_c00056{left:403.080000px;}
.x104_c00056{left:405.000000px;}
.xdd_c00056{left:406.500000px;}
.xbf_c00056{left:408.420000px;}
.xe8_c00056{left:409.500000px;}
.x88_c00056{left:410.580000px;}
.xa_c00056{left:412.080000px;}
.xa3_c00056{left:414.420000px;}
.x55_c00056{left:415.500000px;}
.x80_c00056{left:417.000000px;}
.xd1_c00056{left:418.920000px;}
.xde_c00056{left:420.000000px;}
.x18_c00056{left:423.000000px;}
.xc9_c00056{left:424.500000px;}
.x32_c00056{left:425.580000px;}
.x3c_c00056{left:428.580000px;}
.x25_c00056{left:432.000000px;}
.x96_c00056{left:433.500000px;}
.x4d_c00056{left:434.580000px;}
.xfb_c00056{left:436.500000px;}
.xab_c00056{left:441.420000px;}
.xb_c00056{left:442.500000px;}
.xe0_c00056{left:445.080000px;}
.x3d_c00056{left:446.355000px;}
.xe5_c00056{left:448.080000px;}
.x63_c00056{left:450.420000px;}
.xed_c00056{left:453.000000px;}
.xa4_c00056{left:455.580000px;}
.x89_c00056{left:457.500000px;}
.xe2_c00056{left:459.000000px;}
.x97_c00056{left:460.920000px;}
.x81_c00056{left:462.000000px;}
.x26_c00056{left:463.500000px;}
.x19_c00056{left:464.580000px;}
.x6c_c00056{left:467.145000px;}
.x76_c00056{left:468.420000px;}
.x56_c00056{left:469.500000px;}
.xd9_c00056{left:471.000000px;}
.xd2_c00056{left:472.500000px;}
.xb9_c00056{left:473.580000px;}
.xe9_c00056{left:476.580000px;}
.xc_c00056{left:480.000000px;}
.x82_c00056{left:481.920000px;}
.x1a_c00056{left:483.420000px;}
.x3e_c00056{left:488.580000px;}
.xca_c00056{left:490.920000px;}
.x27_c00056{left:493.920000px;}
.x4e_c00056{left:495.000000px;}
.xf7_c00056{left:496.920000px;}
.xaf_c00056{left:499.080000px;}
.x105_c00056{left:500.580000px;}
.xfc_c00056{left:502.920000px;}
.x77_c00056{left:504.000000px;}
.xc6_c00056{left:507.420000px;}
.xd_c00056{left:509.580000px;}
.x98_c00056{left:514.500000px;}
.xeb_c00056{left:516.000000px;}
.xee_c00056{left:517.920000px;}
.x33_c00056{left:519.000000px;}
.x9f_c00056{left:520.080000px;}
.x6d_c00056{left:523.080000px;}
.x57_c00056{left:525.000000px;}
.xa5_c00056{left:526.500000px;}
.x64_c00056{left:531.000000px;}
.x100_c00056{left:534.420000px;}
.x3f_c00056{left:535.500000px;}
.x83_c00056{left:537.000000px;}
.x28_c00056{left:540.000000px;}
.x58_c00056{left:541.500000px;}
.xb3_c00056{left:543.420000px;}
.xba_c00056{left:546.420000px;}
.x1b_c00056{left:550.920000px;}
.x8f_c00056{left:552.420000px;}
.xe_c00056{left:555.420000px;}
.x40_c00056{left:558.000000px;}
.x6e_c00056{left:562.500000px;}
.x101_c00056{left:564.420000px;}
.xd3_c00056{left:565.920000px;}
.x34_c00056{left:567.420000px;}
.x106_c00056{left:569.580000px;}
.x8a_c00056{left:571.920000px;}
.xa6_c00056{left:573.420000px;}
.xc0_c00056{left:576.420000px;}
.x29_c00056{left:579.420000px;}
.x78_c00056{left:580.920000px;}
.xf_c00056{left:582.420000px;}
.x1c_c00056{left:585.000000px;}
.x90_c00056{left:586.500000px;}
.x65_c00056{left:587.580000px;}
.xb0_c00056{left:591.645000px;}
.xda_c00056{left:592.920000px;}
.x99_c00056{left:594.420000px;}
.xb4_c00056{left:597.000000px;}
.xd4_c00056{left:598.500000px;}
.x8b_c00056{left:600.000000px;}
.x4f_c00056{left:602.580000px;}
.x35_c00056{left:604.500000px;}
.x66_c00056{left:606.000000px;}
.x2a_c00056{left:607.920000px;}
.xac_c00056{left:609.420000px;}
.x1d_c00056{left:610.920000px;}
.xd5_c00056{left:613.500000px;}
.x84_c00056{left:616.500000px;}
.xbb_c00056{left:617.580000px;}
.x91_c00056{left:619.500000px;}
.xc3_c00056{left:622.275000px;}
.xb1_c00056{left:628.080000px;}
.x41_c00056{left:631.080000px;}
.x36_c00056{left:633.000000px;}
.xf0_c00056{left:634.500000px;}
.x2b_c00056{left:638.580000px;}
.x67_c00056{left:645.000000px;}
.xc7_c00056{left:646.080000px;}
.xbc_c00056{left:648.000000px;}
.x42_c00056{left:649.080000px;}
.x6f_c00056{left:652.920000px;}
.x79_c00056{left:654.000000px;}
.x1e_c00056{left:655.500000px;}
.xf1_c00056{left:657.000000px;}
.xa7_c00056{left:658.500000px;}
.x9a_c00056{left:659.580000px;}
.xcb_c00056{left:661.920000px;}
.xc4_c00056{left:664.500000px;}
.x10_c00056{left:666.420000px;}
.xbd_c00056{left:669.000000px;}
.xf2_c00056{left:670.080000px;}
.xa8_c00056{left:672.000000px;}
.x8c_c00056{left:673.920000px;}
.x70_c00056{left:675.855000px;}
.x92_c00056{left:678.000000px;}
.x1f_c00056{left:679.920000px;}
.x2c_c00056{left:681.420000px;}
.x37_c00056{left:682.500000px;}
.x50_c00056{left:684.000000px;}
.xfd_c00056{left:688.920000px;}
.x59_c00056{left:690.000000px;}
.x9b_c00056{left:691.920000px;}
.x68_c00056{left:694.500000px;}
.x85_c00056{left:696.000000px;}
.x11_c00056{left:699.000000px;}
.x7a_c00056{left:700.920000px;}
.xcc_c00056{left:703.500000px;}
.xdb_c00056{left:705.420000px;}
.x5a_c00056{left:708.000000px;}
.xc1_c00056{left:709.920000px;}
.xf3_c00056{left:714.000000px;}
.x2_c00056{left:715.080000px;}
.x38_c00056{left:717.000000px;}
.xcd_c00056{left:723.000000px;}
@media print{
.v0_c00056{vertical-align:0.000000pt;}
.ls0_c00056{letter-spacing:0.000000pt;}
.ws0_c00056{word-spacing:-1.932629pt;}
.ws1_c00056{word-spacing:0.000000pt;}
.fs4_c00056{font-size:16.640000pt;}
.fs0_c00056{font-size:18.133333pt;}
.fs6_c00056{font-size:22.666667pt;}
.fs1_c00056{font-size:25.706667pt;}
.fs5_c00056{font-size:28.746667pt;}
.fs3_c00056{font-size:31.733333pt;}
.fs2_c00056{font-size:34.773333pt;}
.fs7_c00056{font-size:37.813333pt;}
.fs8_c00056{font-size:40.800000pt;}
.y0_c00056{bottom:0.000000pt;}
.yf8_c00056{bottom:223.026667pt;}
.yf6_c00056{bottom:225.106667pt;}
.yf5_c00056{bottom:226.066667pt;}
.yfb_c00056{bottom:226.440000pt;}
.yf7_c00056{bottom:227.026667pt;}
.yf4_c00056{bottom:227.200000pt;}
.yfa_c00056{bottom:227.400000pt;}
.yf9_c00056{bottom:227.973333pt;}
.yfc_c00056{bottom:228.360000pt;}
.yf1_c00056{bottom:242.440000pt;}
.yf0_c00056{bottom:242.826667pt;}
.yf2_c00056{bottom:244.360000pt;}
.yf3_c00056{bottom:244.560000pt;}
.yef_c00056{bottom:245.693333pt;}
.yee_c00056{bottom:247.026667pt;}
.ye7_c00056{bottom:257.693333pt;}
.ye8_c00056{bottom:259.773333pt;}
.yed_c00056{bottom:259.973333pt;}
.ye9_c00056{bottom:260.733333pt;}
.yec_c00056{bottom:261.106667pt;}
.ye6_c00056{bottom:261.693333pt;}
.yeb_c00056{bottom:261.893333pt;}
.yea_c00056{bottom:262.640000pt;}
.ye4_c00056{bottom:262.826667pt;}
.ye5_c00056{bottom:263.026667pt;}
.ye2_c00056{bottom:277.106667pt;}
.ye3_c00056{bottom:278.440000pt;}
.ye1_c00056{bottom:279.026667pt;}
.ye0_c00056{bottom:279.226667pt;}
.ydf_c00056{bottom:280.360000pt;}
.yde_c00056{bottom:281.693333pt;}
.ydb_c00056{bottom:294.440000pt;}
.ydc_c00056{bottom:295.400000pt;}
.yda_c00056{bottom:296.360000pt;}
.yd7_c00056{bottom:296.533333pt;}
.yd9_c00056{bottom:296.560000pt;}
.ydd_c00056{bottom:296.733333pt;}
.yd8_c00056{bottom:297.693333pt;}
.yd3_c00056{bottom:311.773333pt;}
.yd4_c00056{bottom:313.693333pt;}
.yd2_c00056{bottom:313.893333pt;}
.yd5_c00056{bottom:314.640000pt;}
.yd6_c00056{bottom:315.973333pt;}
.yd1_c00056{bottom:316.360000pt;}
.yd0_c00056{bottom:318.066667pt;}
.ycc_c00056{bottom:329.106667pt;}
.yce_c00056{bottom:330.066667pt;}
.yc9_c00056{bottom:330.826667pt;}
.ycb_c00056{bottom:331.026667pt;}
.ycd_c00056{bottom:331.226667pt;}
.yca_c00056{bottom:331.973333pt;}
.yc8_c00056{bottom:332.160000pt;}
.ycf_c00056{bottom:332.360000pt;}
.yc7_c00056{bottom:347.773333pt;}
.yc6_c00056{bottom:348.733333pt;}
.yc5_c00056{bottom:349.306667pt;}
.yc4_c00056{bottom:349.693333pt;}
.yc3_c00056{bottom:351.026667pt;}
.yc2_c00056{bottom:351.773333pt;}
.ybe_c00056{bottom:365.106667pt;}
.yc0_c00056{bottom:365.893333pt;}
.yc1_c00056{bottom:366.066667pt;}
.ybf_c00056{bottom:367.026667pt;}
.ybd_c00056{bottom:368.360000pt;}
.ybc_c00056{bottom:382.440000pt;}
.ybb_c00056{bottom:383.226667pt;}
.yb8_c00056{bottom:383.400000pt;}
.yba_c00056{bottom:383.973333pt;}
.yb9_c00056{bottom:384.360000pt;}
.yb7_c00056{bottom:385.106667pt;}
.yb4_c00056{bottom:399.773333pt;}
.yb6_c00056{bottom:401.693333pt;}
.yb5_c00056{bottom:401.893333pt;}
.yb3_c00056{bottom:402.640000pt;}
.yb2_c00056{bottom:405.106667pt;}
.yb1_c00056{bottom:416.733333pt;}
.yb0_c00056{bottom:417.106667pt;}
.yae_c00056{bottom:418.066667pt;}
.yad_c00056{bottom:418.640000pt;}
.yaf_c00056{bottom:419.026667pt;}
.yac_c00056{bottom:419.400000pt;}
.yab_c00056{bottom:420.360000pt;}
.yaa_c00056{bottom:420.733333pt;}
.ya8_c00056{bottom:434.440000pt;}
.ya9_c00056{bottom:435.400000pt;}
.ya5_c00056{bottom:435.773333pt;}
.ya6_c00056{bottom:436.360000pt;}
.ya7_c00056{bottom:436.560000pt;}
.ya4_c00056{bottom:438.440000pt;}
.ya1_c00056{bottom:453.106667pt;}
.ya3_c00056{bottom:453.693333pt;}
.y9f_c00056{bottom:453.866667pt;}
.ya2_c00056{bottom:454.640000pt;}
.ya0_c00056{bottom:455.026667pt;}
.y9d_c00056{bottom:470.066667pt;}
.y9b_c00056{bottom:470.440000pt;}
.y9e_c00056{bottom:471.226667pt;}
.y9c_c00056{bottom:472.360000pt;}
.y95_c00056{bottom:487.400000pt;}
.y97_c00056{bottom:487.773333pt;}
.y94_c00056{bottom:488.160000pt;}
.y9a_c00056{bottom:488.560000pt;}
.y96_c00056{bottom:488.733333pt;}
.y99_c00056{bottom:489.306667pt;}
.y98_c00056{bottom:489.693333pt;}
.y93_c00056{bottom:493.693333pt;}
.y91_c00056{bottom:505.106667pt;}
.y90_c00056{bottom:505.893333pt;}
.y92_c00056{bottom:506.066667pt;}
.y8f_c00056{bottom:507.026667pt;}
.y8e_c00056{bottom:507.973333pt;}
.y8d_c00056{bottom:508.360000pt;}
.y8c_c00056{bottom:522.440000pt;}
.y8a_c00056{bottom:523.400000pt;}
.y8b_c00056{bottom:524.360000pt;}
.y89_c00056{bottom:524.733333pt;}
.y88_c00056{bottom:525.693333pt;}
.y87_c00056{bottom:539.773333pt;}
.y81_c00056{bottom:540.160000pt;}
.y83_c00056{bottom:541.106667pt;}
.y86_c00056{bottom:541.693333pt;}
.y84_c00056{bottom:542.066667pt;}
.y85_c00056{bottom:542.640000pt;}
.y82_c00056{bottom:543.026667pt;}
.y80_c00056{bottom:544.933333pt;}
.y7f_c00056{bottom:557.306667pt;}
.y7d_c00056{bottom:559.226667pt;}
.y7e_c00056{bottom:559.973333pt;}
.y7c_c00056{bottom:560.360000pt;}
.y7a_c00056{bottom:561.493333pt;}
.y7b_c00056{bottom:561.693333pt;}
.y79_c00056{bottom:573.693333pt;}
.y75_c00056{bottom:575.773333pt;}
.y77_c00056{bottom:576.560000pt;}
.y76_c00056{bottom:577.306667pt;}
.y74_c00056{bottom:577.693333pt;}
.y78_c00056{bottom:578.640000pt;}
.y73_c00056{bottom:578.826667pt;}
.y70_c00056{bottom:591.026667pt;}
.y6f_c00056{bottom:591.773333pt;}
.y71_c00056{bottom:592.160000pt;}
.y72_c00056{bottom:593.106667pt;}
.y6e_c00056{bottom:595.026667pt;}
.y6d_c00056{bottom:596.733333pt;}
.y69_c00056{bottom:610.440000pt;}
.y6c_c00056{bottom:611.400000pt;}
.y6a_c00056{bottom:612.360000pt;}
.y6b_c00056{bottom:612.560000pt;}
.y68_c00056{bottom:614.066667pt;}
.y67_c00056{bottom:629.493333pt;}
.y65_c00056{bottom:644.360000pt;}
.y62_c00056{bottom:646.826667pt;}
.y64_c00056{bottom:647.026667pt;}
.y63_c00056{bottom:647.226667pt;}
.y66_c00056{bottom:647.973333pt;}
.y60_c00056{bottom:662.440000pt;}
.y5e_c00056{bottom:664.360000pt;}
.y61_c00056{bottom:664.560000pt;}
.y5f_c00056{bottom:665.306667pt;}
.y5d_c00056{bottom:666.066667pt;}
.y5b_c00056{bottom:681.106667pt;}
.y59_c00056{bottom:681.893333pt;}
.y5c_c00056{bottom:682.066667pt;}
.y5a_c00056{bottom:683.026667pt;}
.y57_c00056{bottom:683.400000pt;}
.y58_c00056{bottom:683.973333pt;}
.y56_c00056{bottom:698.440000pt;}
.y54_c00056{bottom:699.226667pt;}
.y53_c00056{bottom:699.400000pt;}
.y55_c00056{bottom:700.360000pt;}
.y52_c00056{bottom:703.226667pt;}
.y4e_c00056{bottom:715.773333pt;}
.y51_c00056{bottom:716.560000pt;}
.y4d_c00056{bottom:716.733333pt;}
.y4f_c00056{bottom:717.306667pt;}
.y50_c00056{bottom:717.693333pt;}
.y4a_c00056{bottom:733.106667pt;}
.y4b_c00056{bottom:733.893333pt;}
.y4c_c00056{bottom:734.066667pt;}
.y49_c00056{bottom:735.026667pt;}
.y48_c00056{bottom:736.733333pt;}
.y44_c00056{bottom:750.440000pt;}
.y47_c00056{bottom:751.400000pt;}
.y41_c00056{bottom:751.773333pt;}
.y43_c00056{bottom:752.360000pt;}
.y45_c00056{bottom:752.560000pt;}
.y42_c00056{bottom:752.733333pt;}
.y46_c00056{bottom:753.306667pt;}
.y3d_c00056{bottom:767.773333pt;}
.y3c_c00056{bottom:767.973333pt;}
.y3f_c00056{bottom:768.733333pt;}
.y3e_c00056{bottom:769.106667pt;}
.y3b_c00056{bottom:769.693333pt;}
.y40_c00056{bottom:769.893333pt;}
.y38_c00056{bottom:785.106667pt;}
.y3a_c00056{bottom:786.066667pt;}
.y37_c00056{bottom:786.440000pt;}
.y34_c00056{bottom:786.826667pt;}
.y36_c00056{bottom:787.026667pt;}
.y35_c00056{bottom:787.973333pt;}
.y39_c00056{bottom:788.360000pt;}
.y33_c00056{bottom:801.693333pt;}
.y31_c00056{bottom:803.773333pt;}
.y32_c00056{bottom:804.560000pt;}
.y30_c00056{bottom:805.693333pt;}
.y2f_c00056{bottom:806.066667pt;}
.y2b_c00056{bottom:820.733333pt;}
.y2c_c00056{bottom:821.106667pt;}
.y2e_c00056{bottom:821.893333pt;}
.y29_c00056{bottom:822.440000pt;}
.y2d_c00056{bottom:822.640000pt;}
.y2a_c00056{bottom:823.026667pt;}
.y28_c00056{bottom:825.306667pt;}
.y27_c00056{bottom:837.106667pt;}
.y26_c00056{bottom:838.440000pt;}
.y24_c00056{bottom:839.226667pt;}
.y25_c00056{bottom:839.400000pt;}
.y23_c00056{bottom:840.360000pt;}
.y22_c00056{bottom:841.693333pt;}
.y21_c00056{bottom:855.773333pt;}
.y20_c00056{bottom:857.693333pt;}
.y1f_c00056{bottom:858.066667pt;}
.y1d_c00056{bottom:873.106667pt;}
.y1c_c00056{bottom:875.026667pt;}
.y1e_c00056{bottom:875.973333pt;}
.y19_c00056{bottom:889.693333pt;}
.y1a_c00056{bottom:890.440000pt;}
.y15_c00056{bottom:890.640000pt;}
.y16_c00056{bottom:891.400000pt;}
.y17_c00056{bottom:892.360000pt;}
.y1b_c00056{bottom:892.560000pt;}
.y18_c00056{bottom:893.306667pt;}
.y14_c00056{bottom:895.026667pt;}
.y11_c00056{bottom:907.026667pt;}
.y10_c00056{bottom:908.733333pt;}
.y13_c00056{bottom:909.693333pt;}
.y12_c00056{bottom:910.640000pt;}
.yf_c00056{bottom:912.360000pt;}
.ye_c00056{bottom:924.360000pt;}
.yc_c00056{bottom:925.106667pt;}
.ya_c00056{bottom:927.026667pt;}
.yd_c00056{bottom:927.226667pt;}
.yb_c00056{bottom:927.973333pt;}
.y9_c00056{bottom:928.360000pt;}
.y7_c00056{bottom:943.026667pt;}
.y5_c00056{bottom:943.773333pt;}
.y3_c00056{bottom:944.160000pt;}
.y6_c00056{bottom:944.560000pt;}
.y8_c00056{bottom:944.733333pt;}
.y4_c00056{bottom:945.693333pt;}
.y2_c00056{bottom:976.360000pt;}
.y1_c00056{bottom:978.266667pt;}
.h5_c00056{height:20.466875pt;}
.h1_c00056{height:22.303646pt;}
.h7_c00056{height:27.879557pt;}
.h2_c00056{height:31.618698pt;}
.h6_c00056{height:35.357839pt;}
.h4_c00056{height:39.031380pt;}
.h3_c00056{height:42.770521pt;}
.h8_c00056{height:46.509661pt;}
.h9_c00056{height:50.183203pt;}
.h0_c00056{height:1186.666667pt;}
.w0_c00056{width:782.666667pt;}
.x0_c00056{left:0.000000pt;}
.x3_c00056{left:137.706667pt;}
.x5f_c00056{left:150.666667pt;}
.x45_c00056{left:152.000000pt;}
.x51_c00056{left:152.960000pt;}
.xc8_c00056{left:158.666667pt;}
.x5b_c00056{left:164.000000pt;}
.x2d_c00056{left:166.293333pt;}
.x20_c00056{left:168.000000pt;}
.x46_c00056{left:169.706667pt;}
.xb5_c00056{left:171.626667pt;}
.xea_c00056{left:172.960000pt;}
.x71_c00056{left:174.666667pt;}
.x12_c00056{left:176.960000pt;}
.xc2_c00056{left:178.293333pt;}
.xad_c00056{left:180.960000pt;}
.xe1_c00056{left:182.293333pt;}
.x7b_c00056{left:186.666667pt;}
.xc5_c00056{left:188.000000pt;}
.xb6_c00056{left:189.333333pt;}
.xdf_c00056{left:190.293333pt;}
.x43_c00056{left:192.373333pt;}
.x47_c00056{left:193.333333pt;}
.xe6_c00056{left:194.666667pt;}
.xce_c00056{left:196.000000pt;}
.xf4_c00056{left:197.333333pt;}
.x4_c00056{left:198.293333pt;}
.x93_c00056{left:200.960000pt;}
.xb7_c00056{left:203.040000pt;}
.x13_c00056{left:204.000000pt;}
.x8d_c00056{left:205.333333pt;}
.xd6_c00056{left:208.373333pt;}
.x21_c00056{left:209.706667pt;}
.xcf_c00056{left:210.666667pt;}
.x69_c00056{left:211.626667pt;}
.xe7_c00056{left:213.333333pt;}
.x5_c00056{left:214.666667pt;}
.x60_c00056{left:216.000000pt;}
.xa0_c00056{left:220.000000pt;}
.x9c_c00056{left:221.333333pt;}
.xf5_c00056{left:222.666667pt;}
.xe3_c00056{left:223.626667pt;}
.x44_c00056{left:224.960000pt;}
.xbe_c00056{left:225.906667pt;}
.x72_c00056{left:227.040000pt;}
.x86_c00056{left:228.000000pt;}
.x7c_c00056{left:229.706667pt;}
.x14_c00056{left:232.373333pt;}
.xae_c00056{left:233.706667pt;}
.xef_c00056{left:235.040000pt;}
.x39_c00056{left:236.373333pt;}
.x5c_c00056{left:238.293333pt;}
.x2e_c00056{left:240.373333pt;}
.x52_c00056{left:241.706667pt;}
.x94_c00056{left:244.960000pt;}
.x48_c00056{left:247.626667pt;}
.x8e_c00056{left:248.960000pt;}
.x102_c00056{left:251.040000pt;}
.xa1_c00056{left:252.000000pt;}
.x6_c00056{left:253.706667pt;}
.x22_c00056{left:256.000000pt;}
.x9d_c00056{left:256.960000pt;}
.xfe_c00056{left:257.906667pt;}
.x73_c00056{left:259.040000pt;}
.x49_c00056{left:264.000000pt;}
.x61_c00056{left:266.293333pt;}
.x87_c00056{left:268.960000pt;}
.xd7_c00056{left:270.293333pt;}
.x2f_c00056{left:271.626667pt;}
.xa9_c00056{left:273.333333pt;}
.x4a_c00056{left:274.666667pt;}
.x6a_c00056{left:276.000000pt;}
.x7_c00056{left:277.706667pt;}
.x53_c00056{left:280.000000pt;}
.x7d_c00056{left:280.960000pt;}
.x23_c00056{left:283.626667pt;}
.x95_c00056{left:285.333333pt;}
.x15_c00056{left:286.666667pt;}
.xf8_c00056{left:289.333333pt;}
.x74_c00056{left:290.666667pt;}
.xd0_c00056{left:292.000000pt;}
.x5d_c00056{left:297.333333pt;}
.x24_c00056{left:300.373333pt;}
.x30_c00056{left:301.333333pt;}
.x16_c00056{left:305.333333pt;}
.x3a_c00056{left:308.000000pt;}
.x7e_c00056{left:309.706667pt;}
.xd8_c00056{left:310.666667pt;}
.x75_c00056{left:315.040000pt;}
.x5e_c00056{left:316.960000pt;}
.x8_c00056{left:318.293333pt;}
.xf9_c00056{left:320.373333pt;}
.xff_c00056{left:323.040000pt;}
.x4b_c00056{left:324.000000pt;}
.xb2_c00056{left:325.706667pt;}
.x3b_c00056{left:327.626667pt;}
.x31_c00056{left:329.706667pt;}
.x62_c00056{left:331.040000pt;}
.xe4_c00056{left:332.000000pt;}
.xb8_c00056{left:333.333333pt;}
.x9_c00056{left:334.666667pt;}
.x103_c00056{left:336.373333pt;}
.xaa_c00056{left:337.706667pt;}
.x9e_c00056{left:341.333333pt;}
.x7f_c00056{left:342.293333pt;}
.xfa_c00056{left:344.373333pt;}
.x54_c00056{left:345.706667pt;}
.xdc_c00056{left:346.666667pt;}
.x17_c00056{left:347.626667pt;}
.xec_c00056{left:348.960000pt;}
.xa2_c00056{left:350.293333pt;}
.x1_c00056{left:353.333333pt;}
.x4c_c00056{left:354.666667pt;}
.xf6_c00056{left:356.373333pt;}
.x6b_c00056{left:358.293333pt;}
.x104_c00056{left:360.000000pt;}
.xdd_c00056{left:361.333333pt;}
.xbf_c00056{left:363.040000pt;}
.xe8_c00056{left:364.000000pt;}
.x88_c00056{left:364.960000pt;}
.xa_c00056{left:366.293333pt;}
.xa3_c00056{left:368.373333pt;}
.x55_c00056{left:369.333333pt;}
.x80_c00056{left:370.666667pt;}
.xd1_c00056{left:372.373333pt;}
.xde_c00056{left:373.333333pt;}
.x18_c00056{left:376.000000pt;}
.xc9_c00056{left:377.333333pt;}
.x32_c00056{left:378.293333pt;}
.x3c_c00056{left:380.960000pt;}
.x25_c00056{left:384.000000pt;}
.x96_c00056{left:385.333333pt;}
.x4d_c00056{left:386.293333pt;}
.xfb_c00056{left:388.000000pt;}
.xab_c00056{left:392.373333pt;}
.xb_c00056{left:393.333333pt;}
.xe0_c00056{left:395.626667pt;}
.x3d_c00056{left:396.760000pt;}
.xe5_c00056{left:398.293333pt;}
.x63_c00056{left:400.373333pt;}
.xed_c00056{left:402.666667pt;}
.xa4_c00056{left:404.960000pt;}
.x89_c00056{left:406.666667pt;}
.xe2_c00056{left:408.000000pt;}
.x97_c00056{left:409.706667pt;}
.x81_c00056{left:410.666667pt;}
.x26_c00056{left:412.000000pt;}
.x19_c00056{left:412.960000pt;}
.x6c_c00056{left:415.240000pt;}
.x76_c00056{left:416.373333pt;}
.x56_c00056{left:417.333333pt;}
.xd9_c00056{left:418.666667pt;}
.xd2_c00056{left:420.000000pt;}
.xb9_c00056{left:420.960000pt;}
.xe9_c00056{left:423.626667pt;}
.xc_c00056{left:426.666667pt;}
.x82_c00056{left:428.373333pt;}
.x1a_c00056{left:429.706667pt;}
.x3e_c00056{left:434.293333pt;}
.xca_c00056{left:436.373333pt;}
.x27_c00056{left:439.040000pt;}
.x4e_c00056{left:440.000000pt;}
.xf7_c00056{left:441.706667pt;}
.xaf_c00056{left:443.626667pt;}
.x105_c00056{left:444.960000pt;}
.xfc_c00056{left:447.040000pt;}
.x77_c00056{left:448.000000pt;}
.xc6_c00056{left:451.040000pt;}
.xd_c00056{left:452.960000pt;}
.x98_c00056{left:457.333333pt;}
.xeb_c00056{left:458.666667pt;}
.xee_c00056{left:460.373333pt;}
.x33_c00056{left:461.333333pt;}
.x9f_c00056{left:462.293333pt;}
.x6d_c00056{left:464.960000pt;}
.x57_c00056{left:466.666667pt;}
.xa5_c00056{left:468.000000pt;}
.x64_c00056{left:472.000000pt;}
.x100_c00056{left:475.040000pt;}
.x3f_c00056{left:476.000000pt;}
.x83_c00056{left:477.333333pt;}
.x28_c00056{left:480.000000pt;}
.x58_c00056{left:481.333333pt;}
.xb3_c00056{left:483.040000pt;}
.xba_c00056{left:485.706667pt;}
.x1b_c00056{left:489.706667pt;}
.x8f_c00056{left:491.040000pt;}
.xe_c00056{left:493.706667pt;}
.x40_c00056{left:496.000000pt;}
.x6e_c00056{left:500.000000pt;}
.x101_c00056{left:501.706667pt;}
.xd3_c00056{left:503.040000pt;}
.x34_c00056{left:504.373333pt;}
.x106_c00056{left:506.293333pt;}
.x8a_c00056{left:508.373333pt;}
.xa6_c00056{left:509.706667pt;}
.xc0_c00056{left:512.373333pt;}
.x29_c00056{left:515.040000pt;}
.x78_c00056{left:516.373333pt;}
.xf_c00056{left:517.706667pt;}
.x1c_c00056{left:520.000000pt;}
.x90_c00056{left:521.333333pt;}
.x65_c00056{left:522.293333pt;}
.xb0_c00056{left:525.906667pt;}
.xda_c00056{left:527.040000pt;}
.x99_c00056{left:528.373333pt;}
.xb4_c00056{left:530.666667pt;}
.xd4_c00056{left:532.000000pt;}
.x8b_c00056{left:533.333333pt;}
.x4f_c00056{left:535.626667pt;}
.x35_c00056{left:537.333333pt;}
.x66_c00056{left:538.666667pt;}
.x2a_c00056{left:540.373333pt;}
.xac_c00056{left:541.706667pt;}
.x1d_c00056{left:543.040000pt;}
.xd5_c00056{left:545.333333pt;}
.x84_c00056{left:548.000000pt;}
.xbb_c00056{left:548.960000pt;}
.x91_c00056{left:550.666667pt;}
.xc3_c00056{left:553.133333pt;}
.xb1_c00056{left:558.293333pt;}
.x41_c00056{left:560.960000pt;}
.x36_c00056{left:562.666667pt;}
.xf0_c00056{left:564.000000pt;}
.x2b_c00056{left:567.626667pt;}
.x67_c00056{left:573.333333pt;}
.xc7_c00056{left:574.293333pt;}
.xbc_c00056{left:576.000000pt;}
.x42_c00056{left:576.960000pt;}
.x6f_c00056{left:580.373333pt;}
.x79_c00056{left:581.333333pt;}
.x1e_c00056{left:582.666667pt;}
.xf1_c00056{left:584.000000pt;}
.xa7_c00056{left:585.333333pt;}
.x9a_c00056{left:586.293333pt;}
.xcb_c00056{left:588.373333pt;}
.xc4_c00056{left:590.666667pt;}
.x10_c00056{left:592.373333pt;}
.xbd_c00056{left:594.666667pt;}
.xf2_c00056{left:595.626667pt;}
.xa8_c00056{left:597.333333pt;}
.x8c_c00056{left:599.040000pt;}
.x70_c00056{left:600.760000pt;}
.x92_c00056{left:602.666667pt;}
.x1f_c00056{left:604.373333pt;}
.x2c_c00056{left:605.706667pt;}
.x37_c00056{left:606.666667pt;}
.x50_c00056{left:608.000000pt;}
.xfd_c00056{left:612.373333pt;}
.x59_c00056{left:613.333333pt;}
.x9b_c00056{left:615.040000pt;}
.x68_c00056{left:617.333333pt;}
.x85_c00056{left:618.666667pt;}
.x11_c00056{left:621.333333pt;}
.x7a_c00056{left:623.040000pt;}
.xcc_c00056{left:625.333333pt;}
.xdb_c00056{left:627.040000pt;}
.x5a_c00056{left:629.333333pt;}
.xc1_c00056{left:631.040000pt;}
.xf3_c00056{left:634.666667pt;}
.x2_c00056{left:635.626667pt;}
.x38_c00056{left:637.333333pt;}
.xcd_c00056{left:642.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_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_820c900e2e439ca00b957c27.woff2')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:1.688965;font-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_c00057{transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);}
.m4d_c00057{transform:matrix(0.308666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308666,0.000000,0.000000,0.250000,0,0);}
.m9d_c00057{transform:matrix(0.314417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314417,0.000000,0.000000,0.250000,0,0);}
.m9b_c00057{transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);}
.m40_c00057{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m3d_c00057{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.mb8_c00057{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m4b_c00057{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m13_c00057{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.ma5_c00057{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m7_c00057{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m23_c00057{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mde_c00057{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.m48_c00057{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m51_c00057{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.mbf_c00057{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m89_c00057{transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);}
.mdd_c00057{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m46_c00057{transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);}
.m4c_c00057{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.ma8_c00057{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m19_c00057{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m20_c00057{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m81_c00057{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m68_c00057{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m1f_c00057{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mc9_c00057{transform:matrix(0.390560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390560,0.000000,0.000000,0.250000,0,0);}
.m65_c00057{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m8f_c00057{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m82_c00057{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.md2_c00057{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m1b_c00057{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m2f_c00057{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.me4_c00057{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m9a_c00057{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.mc2_c00057{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);}
.md9_c00057{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m91_c00057{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.mbc_c00057{transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);}
.me1_c00057{transform:matrix(0.403758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403758,0.000000,0.000000,0.250000,0,0);}
.m2b_c00057{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m52_c00057{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.ma7_c00057{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m17_c00057{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m3b_c00057{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m6a_c00057{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.mf_c00057{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m2d_c00057{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m5e_c00057{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m5d_c00057{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m49_c00057{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.mcb_c00057{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m64_c00057{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m6d_c00057{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.ma6_c00057{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mb4_c00057{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m1a_c00057{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m4a_c00057{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m8c_c00057{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.ma4_c00057{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.mc7_c00057{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m69_c00057{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mc0_c00057{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.md3_c00057{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.me6_c00057{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m77_c00057{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m1d_c00057{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.md8_c00057{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.mc8_c00057{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.mce_c00057{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mb3_c00057{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m50_c00057{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m30_c00057{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m61_c00057{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m38_c00057{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m34_c00057{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m7a_c00057{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m6e_c00057{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m39_c00057{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m35_c00057{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m90_c00057{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m78_c00057{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m8e_c00057{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.mbd_c00057{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mc4_c00057{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.mcc_c00057{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.me2_c00057{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.md5_c00057{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mb9_c00057{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m0_c00057{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.ma3_c00057{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.mc1_c00057{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m7d_c00057{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.m85_c00057{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m93_c00057{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m5_c00057{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m18_c00057{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.m6f_c00057{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.me3_c00057{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m36_c00057{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m4f_c00057{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m45_c00057{transform:matrix(0.472689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472689,0.000000,0.000000,0.250000,0,0);}
.m47_c00057{transform:matrix(0.473098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473098,0.000000,0.000000,0.250000,0,0);}
.m76_c00057{transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);}
.m41_c00057{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mca_c00057{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.m12_c00057{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m8_c00057{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.ma1_c00057{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m2c_c00057{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mb5_c00057{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m16_c00057{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m95_c00057{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m62_c00057{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m55_c00057{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.mcf_c00057{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m84_c00057{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m53_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);}
.m94_c00057{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.mb0_c00057{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.md1_c00057{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m43_c00057{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m88_c00057{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mab_c00057{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.md_c00057{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m25_c00057{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m92_c00057{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.mbb_c00057{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m3c_c00057{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m71_c00057{transform:matrix(0.518235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518235,0.000000,0.000000,0.250000,0,0);}
.m54_c00057{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m87_c00057{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m1c_c00057{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mc5_c00057{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.mae_c00057{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mdc_c00057{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m63_c00057{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m5b_c00057{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mb6_c00057{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m5f_c00057{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m22_c00057{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m3_c00057{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m2_c00057{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m10_c00057{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.maf_c00057{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m11_c00057{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mba_c00057{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m6_c00057{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m86_c00057{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m8b_c00057{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m26_c00057{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m70_c00057{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m1e_c00057{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m2a_c00057{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m96_c00057{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m21_c00057{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m4e_c00057{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.ma2_c00057{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m3f_c00057{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.m4_c00057{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m7b_c00057{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m33_c00057{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.maa_c00057{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mac_c00057{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m60_c00057{transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);}
.m9_c00057{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m7f_c00057{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mdb_c00057{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m7e_c00057{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m73_c00057{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m7c_c00057{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m75_c00057{transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);}
.m44_c00057{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m57_c00057{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m98_c00057{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m9c_c00057{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.md0_c00057{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m58_c00057{transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);}
.mb_c00057{transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);}
.m9e_c00057{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m14_c00057{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m83_c00057{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.me5_c00057{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.mb1_c00057{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mad_c00057{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.ma_c00057{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m72_c00057{transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);}
.mb7_c00057{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m28_c00057{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.ma0_c00057{transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);}
.mc_c00057{transform:matrix(0.594917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594917,0.000000,0.000000,0.250000,0,0);}
.m80_c00057{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.md7_c00057{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m66_c00057{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.m67_c00057{transform:matrix(0.605809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605809,0.000000,0.000000,0.250000,0,0);}
.m32_c00057{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m5a_c00057{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m15_c00057{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m3e_c00057{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m6b_c00057{transform:matrix(0.621324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621324,0.000000,0.000000,0.250000,0,0);}
.m56_c00057{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);}
.m99_c00057{transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);}
.m5c_c00057{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m6c_c00057{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.md6_c00057{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m59_c00057{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m1_c00057{transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);}
.m74_c00057{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);}
.m2e_c00057{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m27_c00057{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mcd_c00057{transform:matrix(0.684559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.684559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.684559,0.000000,0.000000,0.250000,0,0);}
.mdf_c00057{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.mc3_c00057{transform:matrix(0.692647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692647,0.000000,0.000000,0.250000,0,0);}
.m24_c00057{transform:matrix(0.727178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727178,0.000000,0.000000,0.250000,0,0);}
.m9f_c00057{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m37_c00057{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.md4_c00057{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m29_c00057{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m97_c00057{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.mc6_c00057{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mb2_c00057{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m8a_c00057{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m3a_c00057{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m42_c00057{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mda_c00057{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.me_c00057{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.me0_c00057{transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);}
.m31_c00057{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.mbe_c00057{transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);}
.m8d_c00057{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m79_c00057{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-16.889280px;}
.ws1_c00057{word-spacing:-0.296744px;}
.ws2_c00057{word-spacing:0.000000px;}
._0_c00057{width:6.522671px;}
.fc0_c00057{color:transparent;}
.fs8_c00057{font-size:3.420000px;}
.fs6_c00057{font-size:11.880000px;}
.fs3_c00057{font-size:18.720000px;}
.fs1_c00057{font-size:20.400000px;}
.fs5_c00057{font-size:25.500000px;}
.fs0_c00057{font-size:28.920000px;}
.fs4_c00057{font-size:32.340000px;}
.fs2_c00057{font-size:35.700000px;}
.fs7_c00057{font-size:39.120000px;}
.y0_c00057{bottom:0.000000px;}
.yc7_c00057{bottom:249.405000px;}
.yc3_c00057{bottom:250.245000px;}
.yc2_c00057{bottom:251.130000px;}
.yc4_c00057{bottom:252.405000px;}
.yc5_c00057{bottom:252.630000px;}
.yc6_c00057{bottom:253.470000px;}
.ybc_c00057{bottom:268.680000px;}
.ybb_c00057{bottom:270.405000px;}
.ybd_c00057{bottom:271.245000px;}
.yc1_c00057{bottom:271.905000px;}
.yc0_c00057{bottom:272.130000px;}
.ybe_c00057{bottom:272.325000px;}
.ybf_c00057{bottom:273.405000px;}
.yb6_c00057{bottom:289.245000px;}
.yb5_c00057{bottom:290.130000px;}
.yb8_c00057{bottom:290.745000px;}
.yb4_c00057{bottom:291.405000px;}
.yba_c00057{bottom:291.630000px;}
.yb9_c00057{bottom:292.470000px;}
.yb7_c00057{bottom:292.905000px;}
.yae_c00057{bottom:307.905000px;}
.yac_c00057{bottom:308.745000px;}
.yaf_c00057{bottom:308.970000px;}
.yb1_c00057{bottom:310.245000px;}
.yb3_c00057{bottom:311.130000px;}
.yad_c00057{bottom:311.970000px;}
.yb0_c00057{bottom:312.405000px;}
.yb2_c00057{bottom:313.470000px;}
.yaa_c00057{bottom:328.905000px;}
.ya7_c00057{bottom:329.550000px;}
.ya9_c00057{bottom:329.745000px;}
.yab_c00057{bottom:330.630000px;}
.ya8_c00057{bottom:331.905000px;}
.ya4_c00057{bottom:348.825000px;}
.ya2_c00057{bottom:349.245000px;}
.ya1_c00057{bottom:349.905000px;}
.ya6_c00057{bottom:350.325000px;}
.ya3_c00057{bottom:351.405000px;}
.ya5_c00057{bottom:352.905000px;}
.y9d_c00057{bottom:368.745000px;}
.y9c_c00057{bottom:369.630000px;}
.y9e_c00057{bottom:370.905000px;}
.ya0_c00057{bottom:371.130000px;}
.y9f_c00057{bottom:372.405000px;}
.y96_c00057{bottom:388.245000px;}
.y99_c00057{bottom:389.325000px;}
.y9b_c00057{bottom:389.550000px;}
.y97_c00057{bottom:390.405000px;}
.y9a_c00057{bottom:390.630000px;}
.y98_c00057{bottom:391.905000px;}
.y90_c00057{bottom:407.745000px;}
.y94_c00057{bottom:408.180000px;}
.y93_c00057{bottom:409.245000px;}
.y91_c00057{bottom:409.905000px;}
.y95_c00057{bottom:410.130000px;}
.y92_c00057{bottom:411.405000px;}
.y8f_c00057{bottom:427.245000px;}
.y8b_c00057{bottom:428.130000px;}
.y8e_c00057{bottom:428.745000px;}
.y8c_c00057{bottom:429.405000px;}
.y8d_c00057{bottom:430.905000px;}
.y8a_c00057{bottom:448.245000px;}
.y87_c00057{bottom:448.905000px;}
.y88_c00057{bottom:450.405000px;}
.y89_c00057{bottom:451.920000px;}
.y85_c00057{bottom:468.405000px;}
.y86_c00057{bottom:469.905000px;}
.y84_c00057{bottom:486.180000px;}
.y82_c00057{bottom:487.245000px;}
.y83_c00057{bottom:489.405000px;}
.y7e_c00057{bottom:506.745000px;}
.y81_c00057{bottom:507.825000px;}
.y7f_c00057{bottom:508.905000px;}
.y80_c00057{bottom:509.970000px;}
.y7c_c00057{bottom:527.745000px;}
.y7d_c00057{bottom:528.630000px;}
.y7a_c00057{bottom:529.905000px;}
.y7b_c00057{bottom:529.920000px;}
.y79_c00057{bottom:546.180000px;}
.y78_c00057{bottom:547.245000px;}
.y77_c00057{bottom:549.405000px;}
.y75_c00057{bottom:566.745000px;}
.y73_c00057{bottom:567.630000px;}
.y72_c00057{bottom:568.905000px;}
.y74_c00057{bottom:568.920000px;}
.y76_c00057{bottom:569.970000px;}
.y70_c00057{bottom:585.405000px;}
.y71_c00057{bottom:586.245000px;}
.y6a_c00057{bottom:604.680000px;}
.y6e_c00057{bottom:604.905000px;}
.y6d_c00057{bottom:605.745000px;}
.y6c_c00057{bottom:606.825000px;}
.y6f_c00057{bottom:607.905000px;}
.y6b_c00057{bottom:607.920000px;}
.y64_c00057{bottom:624.180000px;}
.y66_c00057{bottom:625.245000px;}
.y69_c00057{bottom:626.745000px;}
.y67_c00057{bottom:627.405000px;}
.y65_c00057{bottom:627.630000px;}
.y68_c00057{bottom:628.905000px;}
.y60_c00057{bottom:645.825000px;}
.y62_c00057{bottom:646.245000px;}
.y5e_c00057{bottom:646.905000px;}
.y61_c00057{bottom:647.130000px;}
.y5f_c00057{bottom:647.970000px;}
.y63_c00057{bottom:648.405000px;}
.y5a_c00057{bottom:664.245000px;}
.y5d_c00057{bottom:665.325000px;}
.y59_c00057{bottom:665.745000px;}
.y5b_c00057{bottom:666.630000px;}
.y5c_c00057{bottom:667.470000px;}
.y58_c00057{bottom:667.905000px;}
.y54_c00057{bottom:683.745000px;}
.y55_c00057{bottom:685.245000px;}
.y57_c00057{bottom:687.405000px;}
.y56_c00057{bottom:687.420000px;}
.y53_c00057{bottom:707.970000px;}
.y51_c00057{bottom:710.550000px;}
.y52_c00057{bottom:710.970000px;}
.y4d_c00057{bottom:723.825000px;}
.y4f_c00057{bottom:724.905000px;}
.y50_c00057{bottom:725.970000px;}
.y4e_c00057{bottom:727.050000px;}
.y4c_c00057{bottom:745.245000px;}
.y4b_c00057{bottom:747.405000px;}
.y4a_c00057{bottom:782.745000px;}
.y49_c00057{bottom:784.905000px;}
.y45_c00057{bottom:802.245000px;}
.y47_c00057{bottom:803.745000px;}
.y44_c00057{bottom:804.405000px;}
.y46_c00057{bottom:804.630000px;}
.y48_c00057{bottom:805.905000px;}
.y42_c00057{bottom:823.245000px;}
.y43_c00057{bottom:825.405000px;}
.y41_c00057{bottom:842.325000px;}
.y3d_c00057{bottom:842.745000px;}
.y40_c00057{bottom:844.470000px;}
.y3e_c00057{bottom:844.905000px;}
.y3f_c00057{bottom:845.970000px;}
.y3c_c00057{bottom:861.405000px;}
.y3b_c00057{bottom:861.825000px;}
.y38_c00057{bottom:862.245000px;}
.y39_c00057{bottom:863.130000px;}
.y3a_c00057{bottom:864.405000px;}
.y36_c00057{bottom:880.680000px;}
.y34_c00057{bottom:881.745000px;}
.y33_c00057{bottom:882.825000px;}
.y35_c00057{bottom:883.905000px;}
.y37_c00057{bottom:884.130000px;}
.y2f_c00057{bottom:901.245000px;}
.y32_c00057{bottom:902.325000px;}
.y31_c00057{bottom:902.745000px;}
.y30_c00057{bottom:903.405000px;}
.y2e_c00057{bottom:919.905000px;}
.y2b_c00057{bottom:922.245000px;}
.y2a_c00057{bottom:922.905000px;}
.y2d_c00057{bottom:923.130000px;}
.y2c_c00057{bottom:924.405000px;}
.y24_c00057{bottom:940.245000px;}
.y28_c00057{bottom:940.680000px;}
.y26_c00057{bottom:941.745000px;}
.y29_c00057{bottom:942.405000px;}
.y27_c00057{bottom:942.630000px;}
.y25_c00057{bottom:943.905000px;}
.y1e_c00057{bottom:958.275000px;}
.y23_c00057{bottom:959.745000px;}
.y21_c00057{bottom:960.825000px;}
.y1d_c00057{bottom:961.245000px;}
.y1c_c00057{bottom:961.905000px;}
.y20_c00057{bottom:962.130000px;}
.y1f_c00057{bottom:963.405000px;}
.y22_c00057{bottom:964.470000px;}
.y1b_c00057{bottom:979.245000px;}
.y19_c00057{bottom:980.745000px;}
.y15_c00057{bottom:981.405000px;}
.y18_c00057{bottom:981.630000px;}
.y17_c00057{bottom:982.470000px;}
.y16_c00057{bottom:982.905000px;}
.y1a_c00057{bottom:983.970000px;}
.y12_c00057{bottom:998.745000px;}
.y13_c00057{bottom:1000.245000px;}
.y14_c00057{bottom:1000.905000px;}
.y11_c00057{bottom:1002.405000px;}
.y10_c00057{bottom:1018.245000px;}
.ye_c00057{bottom:1018.905000px;}
.ya_c00057{bottom:1019.325000px;}
.yb_c00057{bottom:1019.745000px;}
.y9_c00057{bottom:1020.405000px;}
.yf_c00057{bottom:1020.825000px;}
.yc_c00057{bottom:1021.905000px;}
.yd_c00057{bottom:1022.970000px;}
.y8_c00057{bottom:1039.245000px;}
.y6_c00057{bottom:1041.405000px;}
.y7_c00057{bottom:1041.630000px;}
.y3_c00057{bottom:1056.405000px;}
.y5_c00057{bottom:1058.745000px;}
.y4_c00057{bottom:1060.905000px;}
.y2_c00057{bottom:1099.050000px;}
.y1_c00057{bottom:1099.905000px;}
.h9_c00057{height:4.206533px;}
.h7_c00057{height:14.612168px;}
.h4_c00057{height:23.025234px;}
.h2_c00057{height:25.091602px;}
.h6_c00057{height:31.364502px;}
.h1_c00057{height:35.571035px;}
.h5_c00057{height:39.777568px;}
.h3_c00057{height:43.910303px;}
.h8_c00057{height:48.116836px;}
.h0_c00057{height:1335.000000px;}
.w0_c00057{width:880.500000px;}
.x0_c00057{left:0.000000px;}
.xbf_c00057{left:151.500000px;}
.x1_c00057{left:152.580000px;}
.x79_c00057{left:154.920000px;}
.x80_c00057{left:166.080000px;}
.x12_c00057{left:168.000000px;}
.x34_c00057{left:169.080000px;}
.xd3_c00057{left:172.500000px;}
.x7a_c00057{left:178.920000px;}
.xc0_c00057{left:180.420000px;}
.xec_c00057{left:183.420000px;}
.x3_c00057{left:184.920000px;}
.x28_c00057{left:189.000000px;}
.xb9_c00057{left:190.920000px;}
.x9d_c00057{left:192.000000px;}
.x47_c00057{left:196.500000px;}
.x50_c00057{left:198.000000px;}
.x61_c00057{left:199.080000px;}
.xe4_c00057{left:201.000000px;}
.x13_c00057{left:202.500000px;}
.x71_c00057{left:205.080000px;}
.x4_c00057{left:210.000000px;}
.xc1_c00057{left:211.080000px;}
.x8a_c00057{left:213.420000px;}
.xa9_c00057{left:215.580000px;}
.x9e_c00057{left:217.500000px;}
.x1e_c00057{left:222.000000px;}
.x72_c00057{left:223.080000px;}
.xb4_c00057{left:226.500000px;}
.x81_c00057{left:229.500000px;}
.xcd_c00057{left:231.000000px;}
.xd4_c00057{left:232.080000px;}
.x3d_c00057{left:233.580000px;}
.x59_c00057{left:238.500000px;}
.xf_c00057{left:240.000000px;}
.x14_c00057{left:241.500000px;}
.x1f_c00057{left:244.500000px;}
.xaa_c00057{left:245.580000px;}
.x48_c00057{left:247.080000px;}
.x90_c00057{left:248.580000px;}
.x3e_c00057{left:250.920000px;}
.x73_c00057{left:252.000000px;}
.x9f_c00057{left:253.080000px;}
.xab_c00057{left:255.000000px;}
.x29_c00057{left:258.420000px;}
.xa2_c00057{left:259.500000px;}
.x10_c00057{left:261.000000px;}
.x49_c00057{left:264.000000px;}
.xed_c00057{left:265.500000px;}
.xe1_c00057{left:266.580000px;}
.x5_c00057{left:268.500000px;}
.x51_c00057{left:269.580000px;}
.x8b_c00057{left:273.000000px;}
.x3f_c00057{left:276.420000px;}
.xd5_c00057{left:279.000000px;}
.xa3_c00057{left:280.500000px;}
.x7b_c00057{left:281.580000px;}
.xa0_c00057{left:285.000000px;}
.x4a_c00057{left:288.000000px;}
.x6_c00057{left:290.145000px;}
.xe5_c00057{left:291.420000px;}
.x8c_c00057{left:294.000000px;}
.x15_c00057{left:295.080000px;}
.x35_c00057{left:297.000000px;}
.x74_c00057{left:299.580000px;}
.xa1_c00057{left:301.500000px;}
.x2a_c00057{left:303.420000px;}
.xac_c00057{left:306.000000px;}
.x82_c00057{left:309.000000px;}
.xc8_c00057{left:312.420000px;}
.x7c_c00057{left:313.500000px;}
.x36_c00057{left:315.000000px;}
.x16_c00057{left:316.500000px;}
.x5a_c00057{left:318.420000px;}
.x4b_c00057{left:319.920000px;}
.x20_c00057{left:323.580000px;}
.x7_c00057{left:325.080000px;}
.xad_c00057{left:326.580000px;}
.x40_c00057{left:328.500000px;}
.x62_c00057{left:329.580000px;}
.x83_c00057{left:331.920000px;}
.x11_c00057{left:336.000000px;}
.x52_c00057{left:340.920000px;}
.xbb_c00057{left:342.000000px;}
.x17_c00057{left:346.920000px;}
.xb5_c00057{left:348.000000px;}
.x95_c00057{left:349.500000px;}
.xea_c00057{left:350.580000px;}
.x2b_c00057{left:352.500000px;}
.xd9_c00057{left:356.580000px;}
.xae_c00057{left:357.645000px;}
.x4c_c00057{left:361.500000px;}
.x96_c00057{left:363.000000px;}
.xdc_c00057{left:364.500000px;}
.x41_c00057{left:367.080000px;}
.x8_c00057{left:370.500000px;}
.xc9_c00057{left:372.420000px;}
.x75_c00057{left:375.000000px;}
.xee_c00057{left:376.500000px;}
.xc2_c00057{left:380.580000px;}
.x53_c00057{left:382.920000px;}
.x9_c00057{left:385.080000px;}
.xa4_c00057{left:387.000000px;}
.x18_c00057{left:392.580000px;}
.xbc_c00057{left:394.080000px;}
.x84_c00057{left:396.420000px;}
.x2_c00057{left:397.500000px;}
.xca_c00057{left:399.645000px;}
.x37_c00057{left:403.080000px;}
.x5b_c00057{left:405.000000px;}
.x4d_c00057{left:412.920000px;}
.x2c_c00057{left:415.080000px;}
.xa5_c00057{left:416.145000px;}
.x21_c00057{left:417.420000px;}
.x88_c00057{left:421.500000px;}
.x69_c00057{left:424.920000px;}
.xce_c00057{left:429.000000px;}
.x2d_c00057{left:433.500000px;}
.xba_c00057{left:434.580000px;}
.xb8_c00057{left:438.000000px;}
.x97_c00057{left:439.500000px;}
.x63_c00057{left:442.500000px;}
.x91_c00057{left:444.420000px;}
.xa_c00057{left:445.500000px;}
.x4e_c00057{left:447.420000px;}
.x38_c00057{left:450.000000px;}
.x6a_c00057{left:451.500000px;}
.x8d_c00057{left:452.580000px;}
.x76_c00057{left:454.080000px;}
.x22_c00057{left:455.580000px;}
.x42_c00057{left:457.500000px;}
.x64_c00057{left:460.920000px;}
.xc3_c00057{left:462.420000px;}
.x89_c00057{left:465.420000px;}
.x54_c00057{left:467.775000px;}
.xd6_c00057{left:469.500000px;}
.xb6_c00057{left:470.580000px;}
.x98_c00057{left:472.920000px;}
.x4f_c00057{left:474.000000px;}
.xb2_c00057{left:475.080000px;}
.x77_c00057{left:482.145000px;}
.x19_c00057{left:483.420000px;}
.x6b_c00057{left:484.500000px;}
.xdd_c00057{left:486.000000px;}
.x65_c00057{left:487.500000px;}
.xc4_c00057{left:492.000000px;}
.x5c_c00057{left:496.080000px;}
.x2e_c00057{left:498.000000px;}
.x85_c00057{left:499.500000px;}
.xb_c00057{left:501.000000px;}
.x8e_c00057{left:502.500000px;}
.xd7_c00057{left:503.580000px;}
.x23_c00057{left:504.645000px;}
.x55_c00057{left:507.000000px;}
.xa6_c00057{left:509.775000px;}
.xcf_c00057{left:511.920000px;}
.x2f_c00057{left:515.580000px;}
.xbd_c00057{left:518.580000px;}
.xe6_c00057{left:520.500000px;}
.xcb_c00057{left:521.580000px;}
.x43_c00057{left:523.080000px;}
.x56_c00057{left:525.420000px;}
.xb1_c00057{left:527.145000px;}
.x7d_c00057{left:530.580000px;}
.x30_c00057{left:536.580000px;}
.x99_c00057{left:538.500000px;}
.xe7_c00057{left:540.420000px;}
.x66_c00057{left:541.500000px;}
.x24_c00057{left:542.580000px;}
.x5d_c00057{left:544.275000px;}
.x39_c00057{left:547.500000px;}
.x92_c00057{left:552.000000px;}
.x57_c00057{left:553.500000px;}
.x9a_c00057{left:555.000000px;}
.x7e_c00057{left:556.500000px;}
.x1a_c00057{left:557.775000px;}
.xde_c00057{left:559.920000px;}
.xcc_c00057{left:561.000000px;}
.xa7_c00057{left:562.920000px;}
.xc5_c00057{left:564.000000px;}
.xd0_c00057{left:565.920000px;}
.xe8_c00057{left:567.000000px;}
.x5e_c00057{left:568.500000px;}
.x44_c00057{left:570.000000px;}
.xaf_c00057{left:572.580000px;}
.xe2_c00057{left:575.580000px;}
.xb3_c00057{left:581.775000px;}
.x86_c00057{left:583.500000px;}
.x8f_c00057{left:585.000000px;}
.x9b_c00057{left:586.500000px;}
.x6c_c00057{left:588.000000px;}
.xc_c00057{left:589.500000px;}
.xeb_c00057{left:590.580000px;}
.xd8_c00057{left:594.420000px;}
.x5f_c00057{left:598.500000px;}
.x1b_c00057{left:600.000000px;}
.x31_c00057{left:601.500000px;}
.xc6_c00057{left:602.580000px;}
.x3a_c00057{left:604.500000px;}
.x6d_c00057{left:605.580000px;}
.x58_c00057{left:608.580000px;}
.xd_c00057{left:610.920000px;}
.xd1_c00057{left:614.580000px;}
.x1c_c00057{left:617.580000px;}
.x45_c00057{left:619.920000px;}
.x32_c00057{left:621.000000px;}
.xe3_c00057{left:622.500000px;}
.x25_c00057{left:624.000000px;}
.x78_c00057{left:625.500000px;}
.x7f_c00057{left:628.275000px;}
.x9c_c00057{left:632.145000px;}
.x3b_c00057{left:634.500000px;}
.xe_c00057{left:637.500000px;}
.xbe_c00057{left:639.420000px;}
.x87_c00057{left:640.500000px;}
.xdf_c00057{left:643.080000px;}
.x46_c00057{left:644.580000px;}
.x93_c00057{left:646.500000px;}
.x33_c00057{left:648.420000px;}
.x3c_c00057{left:652.920000px;}
.x6e_c00057{left:655.500000px;}
.x60_c00057{left:657.000000px;}
.xd2_c00057{left:658.920000px;}
.xef_c00057{left:661.920000px;}
.xda_c00057{left:663.000000px;}
.xb0_c00057{left:664.080000px;}
.x67_c00057{left:666.000000px;}
.xe0_c00057{left:667.080000px;}
.xb7_c00057{left:671.580000px;}
.x6f_c00057{left:673.920000px;}
.x26_c00057{left:678.000000px;}
.x94_c00057{left:681.420000px;}
.xe9_c00057{left:683.580000px;}
.x68_c00057{left:685.500000px;}
.x1d_c00057{left:690.420000px;}
.xa8_c00057{left:693.420000px;}
.x27_c00057{left:697.500000px;}
.x70_c00057{left:700.500000px;}
.xc7_c00057{left:703.500000px;}
.xdb_c00057{left:718.080000px;}
@media print{
.v0_c00057{vertical-align:0.000000pt;}
.ls0_c00057{letter-spacing:0.000000pt;}
.ws0_c00057{word-spacing:-15.012693pt;}
.ws1_c00057{word-spacing:-0.263773pt;}
.ws2_c00057{word-spacing:0.000000pt;}
._0_c00057{width:5.797930pt;}
.fs8_c00057{font-size:3.040000pt;}
.fs6_c00057{font-size:10.560000pt;}
.fs3_c00057{font-size:16.640000pt;}
.fs1_c00057{font-size:18.133333pt;}
.fs5_c00057{font-size:22.666667pt;}
.fs0_c00057{font-size:25.706667pt;}
.fs4_c00057{font-size:28.746667pt;}
.fs2_c00057{font-size:31.733333pt;}
.fs7_c00057{font-size:34.773333pt;}
.y0_c00057{bottom:0.000000pt;}
.yc7_c00057{bottom:221.693333pt;}
.yc3_c00057{bottom:222.440000pt;}
.yc2_c00057{bottom:223.226667pt;}
.yc4_c00057{bottom:224.360000pt;}
.yc5_c00057{bottom:224.560000pt;}
.yc6_c00057{bottom:225.306667pt;}
.ybc_c00057{bottom:238.826667pt;}
.ybb_c00057{bottom:240.360000pt;}
.ybd_c00057{bottom:241.106667pt;}
.yc1_c00057{bottom:241.693333pt;}
.yc0_c00057{bottom:241.893333pt;}
.ybe_c00057{bottom:242.066667pt;}
.ybf_c00057{bottom:243.026667pt;}
.yb6_c00057{bottom:257.106667pt;}
.yb5_c00057{bottom:257.893333pt;}
.yb8_c00057{bottom:258.440000pt;}
.yb4_c00057{bottom:259.026667pt;}
.yba_c00057{bottom:259.226667pt;}
.yb9_c00057{bottom:259.973333pt;}
.yb7_c00057{bottom:260.360000pt;}
.yae_c00057{bottom:273.693333pt;}
.yac_c00057{bottom:274.440000pt;}
.yaf_c00057{bottom:274.640000pt;}
.yb1_c00057{bottom:275.773333pt;}
.yb3_c00057{bottom:276.560000pt;}
.yad_c00057{bottom:277.306667pt;}
.yb0_c00057{bottom:277.693333pt;}
.yb2_c00057{bottom:278.640000pt;}
.yaa_c00057{bottom:292.360000pt;}
.ya7_c00057{bottom:292.933333pt;}
.ya9_c00057{bottom:293.106667pt;}
.yab_c00057{bottom:293.893333pt;}
.ya8_c00057{bottom:295.026667pt;}
.ya4_c00057{bottom:310.066667pt;}
.ya2_c00057{bottom:310.440000pt;}
.ya1_c00057{bottom:311.026667pt;}
.ya6_c00057{bottom:311.400000pt;}
.ya3_c00057{bottom:312.360000pt;}
.ya5_c00057{bottom:313.693333pt;}
.y9d_c00057{bottom:327.773333pt;}
.y9c_c00057{bottom:328.560000pt;}
.y9e_c00057{bottom:329.693333pt;}
.ya0_c00057{bottom:329.893333pt;}
.y9f_c00057{bottom:331.026667pt;}
.y96_c00057{bottom:345.106667pt;}
.y99_c00057{bottom:346.066667pt;}
.y9b_c00057{bottom:346.266667pt;}
.y97_c00057{bottom:347.026667pt;}
.y9a_c00057{bottom:347.226667pt;}
.y98_c00057{bottom:348.360000pt;}
.y90_c00057{bottom:362.440000pt;}
.y94_c00057{bottom:362.826667pt;}
.y93_c00057{bottom:363.773333pt;}
.y91_c00057{bottom:364.360000pt;}
.y95_c00057{bottom:364.560000pt;}
.y92_c00057{bottom:365.693333pt;}
.y8f_c00057{bottom:379.773333pt;}
.y8b_c00057{bottom:380.560000pt;}
.y8e_c00057{bottom:381.106667pt;}
.y8c_c00057{bottom:381.693333pt;}
.y8d_c00057{bottom:383.026667pt;}
.y8a_c00057{bottom:398.440000pt;}
.y87_c00057{bottom:399.026667pt;}
.y88_c00057{bottom:400.360000pt;}
.y89_c00057{bottom:401.706667pt;}
.y85_c00057{bottom:416.360000pt;}
.y86_c00057{bottom:417.693333pt;}
.y84_c00057{bottom:432.160000pt;}
.y82_c00057{bottom:433.106667pt;}
.y83_c00057{bottom:435.026667pt;}
.y7e_c00057{bottom:450.440000pt;}
.y81_c00057{bottom:451.400000pt;}
.y7f_c00057{bottom:452.360000pt;}
.y80_c00057{bottom:453.306667pt;}
.y7c_c00057{bottom:469.106667pt;}
.y7d_c00057{bottom:469.893333pt;}
.y7a_c00057{bottom:471.026667pt;}
.y7b_c00057{bottom:471.040000pt;}
.y79_c00057{bottom:485.493333pt;}
.y78_c00057{bottom:486.440000pt;}
.y77_c00057{bottom:488.360000pt;}
.y75_c00057{bottom:503.773333pt;}
.y73_c00057{bottom:504.560000pt;}
.y72_c00057{bottom:505.693333pt;}
.y74_c00057{bottom:505.706667pt;}
.y76_c00057{bottom:506.640000pt;}
.y70_c00057{bottom:520.360000pt;}
.y71_c00057{bottom:521.106667pt;}
.y6a_c00057{bottom:537.493333pt;}
.y6e_c00057{bottom:537.693333pt;}
.y6d_c00057{bottom:538.440000pt;}
.y6c_c00057{bottom:539.400000pt;}
.y6f_c00057{bottom:540.360000pt;}
.y6b_c00057{bottom:540.373333pt;}
.y64_c00057{bottom:554.826667pt;}
.y66_c00057{bottom:555.773333pt;}
.y69_c00057{bottom:557.106667pt;}
.y67_c00057{bottom:557.693333pt;}
.y65_c00057{bottom:557.893333pt;}
.y68_c00057{bottom:559.026667pt;}
.y60_c00057{bottom:574.066667pt;}
.y62_c00057{bottom:574.440000pt;}
.y5e_c00057{bottom:575.026667pt;}
.y61_c00057{bottom:575.226667pt;}
.y5f_c00057{bottom:575.973333pt;}
.y63_c00057{bottom:576.360000pt;}
.y5a_c00057{bottom:590.440000pt;}
.y5d_c00057{bottom:591.400000pt;}
.y59_c00057{bottom:591.773333pt;}
.y5b_c00057{bottom:592.560000pt;}
.y5c_c00057{bottom:593.306667pt;}
.y58_c00057{bottom:593.693333pt;}
.y54_c00057{bottom:607.773333pt;}
.y55_c00057{bottom:609.106667pt;}
.y57_c00057{bottom:611.026667pt;}
.y56_c00057{bottom:611.040000pt;}
.y53_c00057{bottom:629.306667pt;}
.y51_c00057{bottom:631.600000pt;}
.y52_c00057{bottom:631.973333pt;}
.y4d_c00057{bottom:643.400000pt;}
.y4f_c00057{bottom:644.360000pt;}
.y50_c00057{bottom:645.306667pt;}
.y4e_c00057{bottom:646.266667pt;}
.y4c_c00057{bottom:662.440000pt;}
.y4b_c00057{bottom:664.360000pt;}
.y4a_c00057{bottom:695.773333pt;}
.y49_c00057{bottom:697.693333pt;}
.y45_c00057{bottom:713.106667pt;}
.y47_c00057{bottom:714.440000pt;}
.y44_c00057{bottom:715.026667pt;}
.y46_c00057{bottom:715.226667pt;}
.y48_c00057{bottom:716.360000pt;}
.y42_c00057{bottom:731.773333pt;}
.y43_c00057{bottom:733.693333pt;}
.y41_c00057{bottom:748.733333pt;}
.y3d_c00057{bottom:749.106667pt;}
.y40_c00057{bottom:750.640000pt;}
.y3e_c00057{bottom:751.026667pt;}
.y3f_c00057{bottom:751.973333pt;}
.y3c_c00057{bottom:765.693333pt;}
.y3b_c00057{bottom:766.066667pt;}
.y38_c00057{bottom:766.440000pt;}
.y39_c00057{bottom:767.226667pt;}
.y3a_c00057{bottom:768.360000pt;}
.y36_c00057{bottom:782.826667pt;}
.y34_c00057{bottom:783.773333pt;}
.y33_c00057{bottom:784.733333pt;}
.y35_c00057{bottom:785.693333pt;}
.y37_c00057{bottom:785.893333pt;}
.y2f_c00057{bottom:801.106667pt;}
.y32_c00057{bottom:802.066667pt;}
.y31_c00057{bottom:802.440000pt;}
.y30_c00057{bottom:803.026667pt;}
.y2e_c00057{bottom:817.693333pt;}
.y2b_c00057{bottom:819.773333pt;}
.y2a_c00057{bottom:820.360000pt;}
.y2d_c00057{bottom:820.560000pt;}
.y2c_c00057{bottom:821.693333pt;}
.y24_c00057{bottom:835.773333pt;}
.y28_c00057{bottom:836.160000pt;}
.y26_c00057{bottom:837.106667pt;}
.y29_c00057{bottom:837.693333pt;}
.y27_c00057{bottom:837.893333pt;}
.y25_c00057{bottom:839.026667pt;}
.y1e_c00057{bottom:851.800000pt;}
.y23_c00057{bottom:853.106667pt;}
.y21_c00057{bottom:854.066667pt;}
.y1d_c00057{bottom:854.440000pt;}
.y1c_c00057{bottom:855.026667pt;}
.y20_c00057{bottom:855.226667pt;}
.y1f_c00057{bottom:856.360000pt;}
.y22_c00057{bottom:857.306667pt;}
.y1b_c00057{bottom:870.440000pt;}
.y19_c00057{bottom:871.773333pt;}
.y15_c00057{bottom:872.360000pt;}
.y18_c00057{bottom:872.560000pt;}
.y17_c00057{bottom:873.306667pt;}
.y16_c00057{bottom:873.693333pt;}
.y1a_c00057{bottom:874.640000pt;}
.y12_c00057{bottom:887.773333pt;}
.y13_c00057{bottom:889.106667pt;}
.y14_c00057{bottom:889.693333pt;}
.y11_c00057{bottom:891.026667pt;}
.y10_c00057{bottom:905.106667pt;}
.ye_c00057{bottom:905.693333pt;}
.ya_c00057{bottom:906.066667pt;}
.yb_c00057{bottom:906.440000pt;}
.y9_c00057{bottom:907.026667pt;}
.yf_c00057{bottom:907.400000pt;}
.yc_c00057{bottom:908.360000pt;}
.yd_c00057{bottom:909.306667pt;}
.y8_c00057{bottom:923.773333pt;}
.y6_c00057{bottom:925.693333pt;}
.y7_c00057{bottom:925.893333pt;}
.y3_c00057{bottom:939.026667pt;}
.y5_c00057{bottom:941.106667pt;}
.y4_c00057{bottom:943.026667pt;}
.y2_c00057{bottom:976.933333pt;}
.y1_c00057{bottom:977.693333pt;}
.h9_c00057{height:3.739141pt;}
.h7_c00057{height:12.988594pt;}
.h4_c00057{height:20.466875pt;}
.h2_c00057{height:22.303646pt;}
.h6_c00057{height:27.879557pt;}
.h1_c00057{height:31.618698pt;}
.h5_c00057{height:35.357839pt;}
.h3_c00057{height:39.031380pt;}
.h8_c00057{height:42.770521pt;}
.h0_c00057{height:1186.666667pt;}
.w0_c00057{width:782.666667pt;}
.x0_c00057{left:0.000000pt;}
.xbf_c00057{left:134.666667pt;}
.x1_c00057{left:135.626667pt;}
.x79_c00057{left:137.706667pt;}
.x80_c00057{left:147.626667pt;}
.x12_c00057{left:149.333333pt;}
.x34_c00057{left:150.293333pt;}
.xd3_c00057{left:153.333333pt;}
.x7a_c00057{left:159.040000pt;}
.xc0_c00057{left:160.373333pt;}
.xec_c00057{left:163.040000pt;}
.x3_c00057{left:164.373333pt;}
.x28_c00057{left:168.000000pt;}
.xb9_c00057{left:169.706667pt;}
.x9d_c00057{left:170.666667pt;}
.x47_c00057{left:174.666667pt;}
.x50_c00057{left:176.000000pt;}
.x61_c00057{left:176.960000pt;}
.xe4_c00057{left:178.666667pt;}
.x13_c00057{left:180.000000pt;}
.x71_c00057{left:182.293333pt;}
.x4_c00057{left:186.666667pt;}
.xc1_c00057{left:187.626667pt;}
.x8a_c00057{left:189.706667pt;}
.xa9_c00057{left:191.626667pt;}
.x9e_c00057{left:193.333333pt;}
.x1e_c00057{left:197.333333pt;}
.x72_c00057{left:198.293333pt;}
.xb4_c00057{left:201.333333pt;}
.x81_c00057{left:204.000000pt;}
.xcd_c00057{left:205.333333pt;}
.xd4_c00057{left:206.293333pt;}
.x3d_c00057{left:207.626667pt;}
.x59_c00057{left:212.000000pt;}
.xf_c00057{left:213.333333pt;}
.x14_c00057{left:214.666667pt;}
.x1f_c00057{left:217.333333pt;}
.xaa_c00057{left:218.293333pt;}
.x48_c00057{left:219.626667pt;}
.x90_c00057{left:220.960000pt;}
.x3e_c00057{left:223.040000pt;}
.x73_c00057{left:224.000000pt;}
.x9f_c00057{left:224.960000pt;}
.xab_c00057{left:226.666667pt;}
.x29_c00057{left:229.706667pt;}
.xa2_c00057{left:230.666667pt;}
.x10_c00057{left:232.000000pt;}
.x49_c00057{left:234.666667pt;}
.xed_c00057{left:236.000000pt;}
.xe1_c00057{left:236.960000pt;}
.x5_c00057{left:238.666667pt;}
.x51_c00057{left:239.626667pt;}
.x8b_c00057{left:242.666667pt;}
.x3f_c00057{left:245.706667pt;}
.xd5_c00057{left:248.000000pt;}
.xa3_c00057{left:249.333333pt;}
.x7b_c00057{left:250.293333pt;}
.xa0_c00057{left:253.333333pt;}
.x4a_c00057{left:256.000000pt;}
.x6_c00057{left:257.906667pt;}
.xe5_c00057{left:259.040000pt;}
.x8c_c00057{left:261.333333pt;}
.x15_c00057{left:262.293333pt;}
.x35_c00057{left:264.000000pt;}
.x74_c00057{left:266.293333pt;}
.xa1_c00057{left:268.000000pt;}
.x2a_c00057{left:269.706667pt;}
.xac_c00057{left:272.000000pt;}
.x82_c00057{left:274.666667pt;}
.xc8_c00057{left:277.706667pt;}
.x7c_c00057{left:278.666667pt;}
.x36_c00057{left:280.000000pt;}
.x16_c00057{left:281.333333pt;}
.x5a_c00057{left:283.040000pt;}
.x4b_c00057{left:284.373333pt;}
.x20_c00057{left:287.626667pt;}
.x7_c00057{left:288.960000pt;}
.xad_c00057{left:290.293333pt;}
.x40_c00057{left:292.000000pt;}
.x62_c00057{left:292.960000pt;}
.x83_c00057{left:295.040000pt;}
.x11_c00057{left:298.666667pt;}
.x52_c00057{left:303.040000pt;}
.xbb_c00057{left:304.000000pt;}
.x17_c00057{left:308.373333pt;}
.xb5_c00057{left:309.333333pt;}
.x95_c00057{left:310.666667pt;}
.xea_c00057{left:311.626667pt;}
.x2b_c00057{left:313.333333pt;}
.xd9_c00057{left:316.960000pt;}
.xae_c00057{left:317.906667pt;}
.x4c_c00057{left:321.333333pt;}
.x96_c00057{left:322.666667pt;}
.xdc_c00057{left:324.000000pt;}
.x41_c00057{left:326.293333pt;}
.x8_c00057{left:329.333333pt;}
.xc9_c00057{left:331.040000pt;}
.x75_c00057{left:333.333333pt;}
.xee_c00057{left:334.666667pt;}
.xc2_c00057{left:338.293333pt;}
.x53_c00057{left:340.373333pt;}
.x9_c00057{left:342.293333pt;}
.xa4_c00057{left:344.000000pt;}
.x18_c00057{left:348.960000pt;}
.xbc_c00057{left:350.293333pt;}
.x84_c00057{left:352.373333pt;}
.x2_c00057{left:353.333333pt;}
.xca_c00057{left:355.240000pt;}
.x37_c00057{left:358.293333pt;}
.x5b_c00057{left:360.000000pt;}
.x4d_c00057{left:367.040000pt;}
.x2c_c00057{left:368.960000pt;}
.xa5_c00057{left:369.906667pt;}
.x21_c00057{left:371.040000pt;}
.x88_c00057{left:374.666667pt;}
.x69_c00057{left:377.706667pt;}
.xce_c00057{left:381.333333pt;}
.x2d_c00057{left:385.333333pt;}
.xba_c00057{left:386.293333pt;}
.xb8_c00057{left:389.333333pt;}
.x97_c00057{left:390.666667pt;}
.x63_c00057{left:393.333333pt;}
.x91_c00057{left:395.040000pt;}
.xa_c00057{left:396.000000pt;}
.x4e_c00057{left:397.706667pt;}
.x38_c00057{left:400.000000pt;}
.x6a_c00057{left:401.333333pt;}
.x8d_c00057{left:402.293333pt;}
.x76_c00057{left:403.626667pt;}
.x22_c00057{left:404.960000pt;}
.x42_c00057{left:406.666667pt;}
.x64_c00057{left:409.706667pt;}
.xc3_c00057{left:411.040000pt;}
.x89_c00057{left:413.706667pt;}
.x54_c00057{left:415.800000pt;}
.xd6_c00057{left:417.333333pt;}
.xb6_c00057{left:418.293333pt;}
.x98_c00057{left:420.373333pt;}
.x4f_c00057{left:421.333333pt;}
.xb2_c00057{left:422.293333pt;}
.x77_c00057{left:428.573333pt;}
.x19_c00057{left:429.706667pt;}
.x6b_c00057{left:430.666667pt;}
.xdd_c00057{left:432.000000pt;}
.x65_c00057{left:433.333333pt;}
.xc4_c00057{left:437.333333pt;}
.x5c_c00057{left:440.960000pt;}
.x2e_c00057{left:442.666667pt;}
.x85_c00057{left:444.000000pt;}
.xb_c00057{left:445.333333pt;}
.x8e_c00057{left:446.666667pt;}
.xd7_c00057{left:447.626667pt;}
.x23_c00057{left:448.573333pt;}
.x55_c00057{left:450.666667pt;}
.xa6_c00057{left:453.133333pt;}
.xcf_c00057{left:455.040000pt;}
.x2f_c00057{left:458.293333pt;}
.xbd_c00057{left:460.960000pt;}
.xe6_c00057{left:462.666667pt;}
.xcb_c00057{left:463.626667pt;}
.x43_c00057{left:464.960000pt;}
.x56_c00057{left:467.040000pt;}
.xb1_c00057{left:468.573333pt;}
.x7d_c00057{left:471.626667pt;}
.x30_c00057{left:476.960000pt;}
.x99_c00057{left:478.666667pt;}
.xe7_c00057{left:480.373333pt;}
.x66_c00057{left:481.333333pt;}
.x24_c00057{left:482.293333pt;}
.x5d_c00057{left:483.800000pt;}
.x39_c00057{left:486.666667pt;}
.x92_c00057{left:490.666667pt;}
.x57_c00057{left:492.000000pt;}
.x9a_c00057{left:493.333333pt;}
.x7e_c00057{left:494.666667pt;}
.x1a_c00057{left:495.800000pt;}
.xde_c00057{left:497.706667pt;}
.xcc_c00057{left:498.666667pt;}
.xa7_c00057{left:500.373333pt;}
.xc5_c00057{left:501.333333pt;}
.xd0_c00057{left:503.040000pt;}
.xe8_c00057{left:504.000000pt;}
.x5e_c00057{left:505.333333pt;}
.x44_c00057{left:506.666667pt;}
.xaf_c00057{left:508.960000pt;}
.xe2_c00057{left:511.626667pt;}
.xb3_c00057{left:517.133333pt;}
.x86_c00057{left:518.666667pt;}
.x8f_c00057{left:520.000000pt;}
.x9b_c00057{left:521.333333pt;}
.x6c_c00057{left:522.666667pt;}
.xc_c00057{left:524.000000pt;}
.xeb_c00057{left:524.960000pt;}
.xd8_c00057{left:528.373333pt;}
.x5f_c00057{left:532.000000pt;}
.x1b_c00057{left:533.333333pt;}
.x31_c00057{left:534.666667pt;}
.xc6_c00057{left:535.626667pt;}
.x3a_c00057{left:537.333333pt;}
.x6d_c00057{left:538.293333pt;}
.x58_c00057{left:540.960000pt;}
.xd_c00057{left:543.040000pt;}
.xd1_c00057{left:546.293333pt;}
.x1c_c00057{left:548.960000pt;}
.x45_c00057{left:551.040000pt;}
.x32_c00057{left:552.000000pt;}
.xe3_c00057{left:553.333333pt;}
.x25_c00057{left:554.666667pt;}
.x78_c00057{left:556.000000pt;}
.x7f_c00057{left:558.466667pt;}
.x9c_c00057{left:561.906667pt;}
.x3b_c00057{left:564.000000pt;}
.xe_c00057{left:566.666667pt;}
.xbe_c00057{left:568.373333pt;}
.x87_c00057{left:569.333333pt;}
.xdf_c00057{left:571.626667pt;}
.x46_c00057{left:572.960000pt;}
.x93_c00057{left:574.666667pt;}
.x33_c00057{left:576.373333pt;}
.x3c_c00057{left:580.373333pt;}
.x6e_c00057{left:582.666667pt;}
.x60_c00057{left:584.000000pt;}
.xd2_c00057{left:585.706667pt;}
.xef_c00057{left:588.373333pt;}
.xda_c00057{left:589.333333pt;}
.xb0_c00057{left:590.293333pt;}
.x67_c00057{left:592.000000pt;}
.xe0_c00057{left:592.960000pt;}
.xb7_c00057{left:596.960000pt;}
.x6f_c00057{left:599.040000pt;}
.x26_c00057{left:602.666667pt;}
.x94_c00057{left:605.706667pt;}
.xe9_c00057{left:607.626667pt;}
.x68_c00057{left:609.333333pt;}
.x1d_c00057{left:613.706667pt;}
.xa8_c00057{left:616.373333pt;}
.x27_c00057{left:620.000000pt;}
.x70_c00057{left:622.666667pt;}
.xc7_c00057{left:625.333333pt;}
.xdb_c00057{left:638.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_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_1cda70cf1622a9cd39032601.woff2')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md0_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);}
.mde_c00058{transform:matrix(0.328221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328221,0.000000,0.000000,0.250000,0,0);}
.m92_c00058{transform:matrix(0.346262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346262,0.000000,0.000000,0.250000,0,0);}
.m90_c00058{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);}
.mf7_c00058{transform:matrix(0.352257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352257,0.000000,0.000000,0.250000,0,0);}
.mcd_c00058{transform:matrix(0.353315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353315,0.000000,0.000000,0.250000,0,0);}
.md_c00058{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.maa_c00058{transform:matrix(0.358604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358604,0.000000,0.000000,0.250000,0,0);}
.m26_c00058{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mfb_c00058{transform:matrix(0.363113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363113,0.000000,0.000000,0.250000,0,0);}
.mac_c00058{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.me9_c00058{transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);}
.m88_c00058{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m16_c00058{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m85_c00058{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.m2f_c00058{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m32_c00058{transform:matrix(0.376150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376150,0.000000,0.000000,0.250000,0,0);}
.m7b_c00058{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mc4_c00058{transform:matrix(0.380252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380252,0.000000,0.000000,0.250000,0,0);}
.mfd_c00058{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mbf_c00058{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.mec_c00058{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.mb9_c00058{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.ma8_c00058{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mc2_c00058{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m1e_c00058{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.mfe_c00058{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m5b_c00058{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m2d_c00058{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.me5_c00058{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.mce_c00058{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.mf1_c00058{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m82_c00058{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m108_c00058{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);}
.m4e_c00058{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m4c_c00058{transform:matrix(0.401840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401840,0.000000,0.000000,0.250000,0,0);}
.md9_c00058{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.me4_c00058{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mc1_c00058{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m3f_c00058{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mb_c00058{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m33_c00058{transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);}
.m94_c00058{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m10_c00058{transform:matrix(0.407209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407209,0.000000,0.000000,0.250000,0,0);}
.mcf_c00058{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m6a_c00058{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.me1_c00058{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.mf5_c00058{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m7c_c00058{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.mdb_c00058{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mb2_c00058{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mb1_c00058{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m81_c00058{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mb4_c00058{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mef_c00058{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m24_c00058{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m1a_c00058{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m27_c00058{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m2a_c00058{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m18_c00058{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m45_c00058{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m43_c00058{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mee_c00058{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.ma0_c00058{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.md5_c00058{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m107_c00058{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m84_c00058{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m6c_c00058{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m41_c00058{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m89_c00058{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.m9e_c00058{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m61_c00058{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.mff_c00058{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m1f_c00058{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m77_c00058{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m79_c00058{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.mdf_c00058{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.mf4_c00058{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m69_c00058{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.mb0_c00058{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m51_c00058{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m5f_c00058{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.mb7_c00058{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mbb_c00058{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m54_c00058{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m25_c00058{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m47_c00058{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m65_c00058{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.md7_c00058{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.md3_c00058{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);}
.m4d_c00058{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.ma2_c00058{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m37_c00058{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m50_c00058{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.maf_c00058{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m7a_c00058{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m58_c00058{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m96_c00058{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m4b_c00058{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m95_c00058{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.mc5_c00058{transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);}
.m106_c00058{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m104_c00058{transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);}
.mbe_c00058{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m8e_c00058{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.ma3_c00058{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.mf6_c00058{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m67_c00058{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m39_c00058{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.mb8_c00058{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m64_c00058{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.mc9_c00058{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m3c_c00058{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.mdc_c00058{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.mf8_c00058{transform:matrix(0.473098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473098,0.000000,0.000000,0.250000,0,0);}
.mc6_c00058{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m59_c00058{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.m7f_c00058{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.m22_c00058{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mfa_c00058{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m8d_c00058{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m7d_c00058{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m3_c00058{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m1_c00058{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.md6_c00058{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m48_c00058{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m46_c00058{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.ma6_c00058{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.m38_c00058{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m73_c00058{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.me6_c00058{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.me7_c00058{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m8_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);}
.mf_c00058{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m9b_c00058{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m99_c00058{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.mc7_c00058{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mc8_c00058{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m4a_c00058{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mda_c00058{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m8c_c00058{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m80_c00058{transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);}
.m7_c00058{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m97_c00058{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.mc3_c00058{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.mcb_c00058{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m62_c00058{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m5a_c00058{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m21_c00058{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mf3_c00058{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m86_c00058{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mb6_c00058{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m105_c00058{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m13_c00058{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m30_c00058{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.me0_c00058{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.mb5_c00058{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m6f_c00058{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m6e_c00058{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m40_c00058{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m52_c00058{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m1c_c00058{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m78_c00058{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.ma_c00058{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m6b_c00058{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mcc_c00058{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m6_c00058{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m7e_c00058{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.med_c00058{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m3a_c00058{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m5d_c00058{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.me_c00058{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m31_c00058{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m15_c00058{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m9f_c00058{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m3d_c00058{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m8b_c00058{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m98_c00058{transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);}
.m75_c00058{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m56_c00058{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m2c_c00058{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m44_c00058{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m103_c00058{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.md8_c00058{transform:matrix(0.546382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546382,0.000000,0.000000,0.250000,0,0);}
.mab_c00058{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m3b_c00058{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m70_c00058{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m57_c00058{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m66_c00058{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m11_c00058{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m55_c00058{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m68_c00058{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m71_c00058{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m83_c00058{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.me3_c00058{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.ma4_c00058{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mc0_c00058{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);}
.m19_c00058{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m1d_c00058{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.md2_c00058{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);}
.m34_c00058{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.meb_c00058{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.mdd_c00058{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mae_c00058{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m49_c00058{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.ma7_c00058{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m1b_c00058{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mf9_c00058{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m63_c00058{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.ma5_c00058{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.mb3_c00058{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m8a_c00058{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.me2_c00058{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m10a_c00058{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m2b_c00058{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m42_c00058{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m36_c00058{transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);}
.m101_c00058{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m20_c00058{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m29_c00058{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);}
.ma9_c00058{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mfc_c00058{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.m60_c00058{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mba_c00058{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m87_c00058{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mbd_c00058{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m10b_c00058{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m5c_c00058{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_c00058{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mf2_c00058{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m102_c00058{transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);}
.m0_c00058{transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);}
.m9a_c00058{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m74_c00058{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.mca_c00058{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m9d_c00058{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mc_c00058{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m100_c00058{transform:matrix(0.675481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675481,0.000000,0.000000,0.250000,0,0);}
.m4f_c00058{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m4_c00058{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m12_c00058{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m91_c00058{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);}
.m53_c00058{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.md4_c00058{transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);}
.m93_c00058{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m9c_c00058{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m8f_c00058{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.me8_c00058{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m9_c00058{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mea_c00058{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m23_c00058{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m72_c00058{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m5_c00058{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mf0_c00058{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);}
.md1_c00058{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.m5e_c00058{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m3e_c00058{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m2e_c00058{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.ma1_c00058{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mad_c00058{transform:matrix(0.780449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780449,0.000000,0.000000,0.250000,0,0);}
.m76_c00058{transform:matrix(0.793269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.793269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.793269,0.000000,0.000000,0.250000,0,0);}
.m35_c00058{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m17_c00058{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m14_c00058{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mbc_c00058{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m109_c00058{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m2_c00058{transform:matrix(1.166912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.166912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.166912,0.000000,0.000000,0.250000,0,0);}
.m28_c00058{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.v1_c00058{vertical-align:-6.000000px;}
.v0_c00058{vertical-align:0.000000px;}
.ls0_c00058{letter-spacing:0.000000px;}
.sc__c00058{text-shadow:none;}
.sc0_c00058{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00058{-webkit-text-stroke:0px transparent;}
.sc0_c00058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00058{word-spacing:-7.555825px;}
.ws1_c00058{word-spacing:-6.988015px;}
.ws3_c00058{word-spacing:0.000000px;}
.ws0_c00058{word-spacing:0.301471px;}
.fc0_c00058{color:transparent;}
.fs7_c00058{font-size:3.420000px;}
.fs3_c00058{font-size:18.720000px;}
.fs0_c00058{font-size:20.400000px;}
.fs2_c00058{font-size:25.500000px;}
.fs1_c00058{font-size:28.920000px;}
.fs6_c00058{font-size:32.340000px;}
.fs4_c00058{font-size:35.700000px;}
.fs5_c00058{font-size:39.120000px;}
.fs8_c00058{font-size:42.540000px;}
.y0_c00058{bottom:0.000000px;}
.y106_c00058{bottom:252.405000px;}
.y108_c00058{bottom:253.245000px;}
.y107_c00058{bottom:253.905000px;}
.y104_c00058{bottom:254.130000px;}
.y109_c00058{bottom:254.550000px;}
.y105_c00058{bottom:254.970000px;}
.y103_c00058{bottom:255.405000px;}
.y102_c00058{bottom:257.325000px;}
.yff_c00058{bottom:271.245000px;}
.y101_c00058{bottom:271.905000px;}
.yfc_c00058{bottom:272.745000px;}
.yfe_c00058{bottom:273.405000px;}
.yfd_c00058{bottom:273.630000px;}
.y100_c00058{bottom:274.905000px;}
.yfb_c00058{bottom:278.325000px;}
.yf7_c00058{bottom:291.825000px;}
.yf8_c00058{bottom:292.245000px;}
.yf6_c00058{bottom:292.905000px;}
.yf5_c00058{bottom:293.130000px;}
.yf3_c00058{bottom:293.550000px;}
.yf4_c00058{bottom:294.405000px;}
.yf9_c00058{bottom:295.470000px;}
.yfa_c00058{bottom:295.905000px;}
.yf2_c00058{bottom:296.970000px;}
.yf0_c00058{bottom:309.825000px;}
.yed_c00058{bottom:311.745000px;}
.yee_c00058{bottom:313.470000px;}
.yec_c00058{bottom:313.905000px;}
.yf1_c00058{bottom:314.130000px;}
.yef_c00058{bottom:314.970000px;}
.yeb_c00058{bottom:316.680000px;}
.ye6_c00058{bottom:330.405000px;}
.ye8_c00058{bottom:331.245000px;}
.ye5_c00058{bottom:331.680000px;}
.ye7_c00058{bottom:332.325000px;}
.ye9_c00058{bottom:333.405000px;}
.yea_c00058{bottom:334.470000px;}
.ye4_c00058{bottom:337.905000px;}
.ye0_c00058{bottom:350.745000px;}
.ye2_c00058{bottom:351.825000px;}
.ye3_c00058{bottom:352.470000px;}
.ydf_c00058{bottom:352.905000px;}
.yde_c00058{bottom:353.745000px;}
.ye1_c00058{bottom:353.970000px;}
.ydd_c00058{bottom:358.050000px;}
.ydc_c00058{bottom:370.245000px;}
.ydb_c00058{bottom:371.325000px;}
.yda_c00058{bottom:372.405000px;}
.yd9_c00058{bottom:373.905000px;}
.yd8_c00058{bottom:376.245000px;}
.yd6_c00058{bottom:389.745000px;}
.yd1_c00058{bottom:390.180000px;}
.yd2_c00058{bottom:390.825000px;}
.yd7_c00058{bottom:391.470000px;}
.yd3_c00058{bottom:391.905000px;}
.yd4_c00058{bottom:392.130000px;}
.yd5_c00058{bottom:392.970000px;}
.yd0_c00058{bottom:393.405000px;}
.ycf_c00058{bottom:396.825000px;}
.ycd_c00058{bottom:409.245000px;}
.ycb_c00058{bottom:409.680000px;}
.yce_c00058{bottom:411.405000px;}
.ycc_c00058{bottom:412.470000px;}
.yca_c00058{bottom:412.905000px;}
.yc9_c00058{bottom:414.825000px;}
.yc7_c00058{bottom:427.905000px;}
.yc8_c00058{bottom:428.745000px;}
.yc4_c00058{bottom:430.245000px;}
.yc6_c00058{bottom:430.905000px;}
.yc5_c00058{bottom:432.405000px;}
.yc3_c00058{bottom:433.905000px;}
.yc2_c00058{bottom:434.325000px;}
.yc1_c00058{bottom:447.405000px;}
.ybf_c00058{bottom:449.745000px;}
.yc0_c00058{bottom:450.630000px;}
.ybd_c00058{bottom:451.050000px;}
.ybe_c00058{bottom:451.905000px;}
.ybb_c00058{bottom:452.970000px;}
.ybc_c00058{bottom:454.470000px;}
.yba_c00058{bottom:455.130000px;}
.yb8_c00058{bottom:467.970000px;}
.yb9_c00058{bottom:468.825000px;}
.yb5_c00058{bottom:469.245000px;}
.yb6_c00058{bottom:470.130000px;}
.yb4_c00058{bottom:471.180000px;}
.yb7_c00058{bottom:471.405000px;}
.yb1_c00058{bottom:488.325000px;}
.yaf_c00058{bottom:488.745000px;}
.yb3_c00058{bottom:489.630000px;}
.yb0_c00058{bottom:489.825000px;}
.yad_c00058{bottom:490.245000px;}
.yae_c00058{bottom:490.905000px;}
.yb2_c00058{bottom:491.970000px;}
.yac_c00058{bottom:492.405000px;}
.yab_c00058{bottom:495.405000px;}
.ya9_c00058{bottom:508.245000px;}
.yaa_c00058{bottom:509.130000px;}
.ya8_c00058{bottom:510.405000px;}
.ya5_c00058{bottom:511.245000px;}
.ya7_c00058{bottom:511.470000px;}
.ya6_c00058{bottom:511.905000px;}
.ya4_c00058{bottom:526.905000px;}
.ya1_c00058{bottom:528.405000px;}
.ya3_c00058{bottom:529.245000px;}
.y9f_c00058{bottom:529.905000px;}
.ya2_c00058{bottom:530.130000px;}
.ya0_c00058{bottom:530.970000px;}
.y9e_c00058{bottom:533.325000px;}
.y9d_c00058{bottom:547.245000px;}
.y9a_c00058{bottom:548.745000px;}
.y9c_c00058{bottom:549.405000px;}
.y9b_c00058{bottom:550.470000px;}
.y99_c00058{bottom:550.905000px;}
.y98_c00058{bottom:552.825000px;}
.y96_c00058{bottom:569.325000px;}
.y97_c00058{bottom:570.405000px;}
.y95_c00058{bottom:585.405000px;}
.y93_c00058{bottom:587.745000px;}
.y91_c00058{bottom:588.180000px;}
.y94_c00058{bottom:588.630000px;}
.y92_c00058{bottom:589.905000px;}
.y8f_c00058{bottom:607.245000px;}
.y90_c00058{bottom:608.970000px;}
.y8e_c00058{bottom:609.405000px;}
.y8d_c00058{bottom:610.905000px;}
.y8c_c00058{bottom:612.405000px;}
.y8b_c00058{bottom:625.905000px;}
.y88_c00058{bottom:626.745000px;}
.y87_c00058{bottom:628.905000px;}
.y8a_c00058{bottom:629.130000px;}
.y89_c00058{bottom:629.970000px;}
.y86_c00058{bottom:630.405000px;}
.y85_c00058{bottom:630.825000px;}
.y84_c00058{bottom:646.245000px;}
.y82_c00058{bottom:648.405000px;}
.y83_c00058{bottom:648.630000px;}
.y81_c00058{bottom:649.905000px;}
.y80_c00058{bottom:651.825000px;}
.y7a_c00058{bottom:665.970000px;}
.y7e_c00058{bottom:667.245000px;}
.y7b_c00058{bottom:667.905000px;}
.y7f_c00058{bottom:668.130000px;}
.y7c_c00058{bottom:668.970000px;}
.y7d_c00058{bottom:669.405000px;}
.y79_c00058{bottom:670.905000px;}
.y74_c00058{bottom:685.680000px;}
.y77_c00058{bottom:686.745000px;}
.y76_c00058{bottom:687.630000px;}
.y78_c00058{bottom:687.825000px;}
.y75_c00058{bottom:688.905000px;}
.y73_c00058{bottom:691.050000px;}
.y71_c00058{bottom:705.825000px;}
.y70_c00058{bottom:706.245000px;}
.y6f_c00058{bottom:707.130000px;}
.y6e_c00058{bottom:708.405000px;}
.y72_c00058{bottom:708.630000px;}
.y6d_c00058{bottom:709.905000px;}
.y6c_c00058{bottom:711.405000px;}
.y6b_c00058{bottom:724.245000px;}
.y69_c00058{bottom:724.905000px;}
.y68_c00058{bottom:725.325000px;}
.y6a_c00058{bottom:725.745000px;}
.y67_c00058{bottom:727.905000px;}
.y66_c00058{bottom:729.405000px;}
.y61_c00058{bottom:745.245000px;}
.y63_c00058{bottom:746.325000px;}
.y60_c00058{bottom:746.745000px;}
.y62_c00058{bottom:747.405000px;}
.y65_c00058{bottom:747.630000px;}
.y64_c00058{bottom:748.470000px;}
.y5f_c00058{bottom:750.405000px;}
.y5e_c00058{bottom:764.745000px;}
.y5b_c00058{bottom:765.825000px;}
.y5c_c00058{bottom:766.905000px;}
.y5d_c00058{bottom:767.130000px;}
.y5a_c00058{bottom:769.905000px;}
.y59_c00058{bottom:784.245000px;}
.y58_c00058{bottom:785.745000px;}
.y57_c00058{bottom:786.630000px;}
.y56_c00058{bottom:787.905000px;}
.y55_c00058{bottom:789.405000px;}
.y54_c00058{bottom:803.745000px;}
.y50_c00058{bottom:804.825000px;}
.y51_c00058{bottom:805.905000px;}
.y52_c00058{bottom:806.130000px;}
.y4e_c00058{bottom:806.325000px;}
.y53_c00058{bottom:806.970000px;}
.y4f_c00058{bottom:807.405000px;}
.y4c_c00058{bottom:824.745000px;}
.y4b_c00058{bottom:825.825000px;}
.y4a_c00058{bottom:826.905000px;}
.y4d_c00058{bottom:827.970000px;}
.y49_c00058{bottom:829.905000px;}
.y48_c00058{bottom:844.245000px;}
.y47_c00058{bottom:845.325000px;}
.y46_c00058{bottom:845.970000px;}
.y45_c00058{bottom:846.405000px;}
.y44_c00058{bottom:846.825000px;}
.y41_c00058{bottom:861.405000px;}
.y42_c00058{bottom:862.245000px;}
.y43_c00058{bottom:863.745000px;}
.y40_c00058{bottom:864.630000px;}
.y3e_c00058{bottom:864.825000px;}
.y3f_c00058{bottom:865.905000px;}
.y3d_c00058{bottom:866.325000px;}
.y3c_c00058{bottom:880.905000px;}
.y3b_c00058{bottom:883.245000px;}
.y3a_c00058{bottom:884.130000px;}
.y39_c00058{bottom:885.405000px;}
.y38_c00058{bottom:887.325000px;}
.y34_c00058{bottom:901.905000px;}
.y35_c00058{bottom:902.745000px;}
.y32_c00058{bottom:904.680000px;}
.y33_c00058{bottom:904.905000px;}
.y36_c00058{bottom:905.130000px;}
.y37_c00058{bottom:905.970000px;}
.y2d_c00058{bottom:922.245000px;}
.y2f_c00058{bottom:923.325000px;}
.y30_c00058{bottom:923.745000px;}
.y2e_c00058{bottom:924.405000px;}
.y2c_c00058{bottom:924.630000px;}
.y31_c00058{bottom:925.470000px;}
.y2b_c00058{bottom:925.905000px;}
.y2a_c00058{bottom:926.325000px;}
.y28_c00058{bottom:941.745000px;}
.y24_c00058{bottom:942.405000px;}
.y25_c00058{bottom:942.825000px;}
.y29_c00058{bottom:943.245000px;}
.y26_c00058{bottom:943.905000px;}
.y27_c00058{bottom:944.130000px;}
.y23_c00058{bottom:960.405000px;}
.y22_c00058{bottom:961.470000px;}
.y1e_c00058{bottom:962.325000px;}
.y1d_c00058{bottom:963.180000px;}
.y1f_c00058{bottom:963.405000px;}
.y21_c00058{bottom:963.630000px;}
.y20_c00058{bottom:964.905000px;}
.y18_c00058{bottom:982.245000px;}
.y1c_c00058{bottom:983.130000px;}
.y1b_c00058{bottom:984.405000px;}
.y19_c00058{bottom:984.420000px;}
.y1a_c00058{bottom:985.470000px;}
.y16_c00058{bottom:1001.325000px;}
.y17_c00058{bottom:1001.745000px;}
.y15_c00058{bottom:1003.905000px;}
.y14_c00058{bottom:1005.405000px;}
.y12_c00058{bottom:1021.245000px;}
.y13_c00058{bottom:1022.130000px;}
.y11_c00058{bottom:1023.405000px;}
.y10_c00058{bottom:1024.905000px;}
.ye_c00058{bottom:1040.745000px;}
.ya_c00058{bottom:1041.180000px;}
.yc_c00058{bottom:1041.630000px;}
.yb_c00058{bottom:1042.905000px;}
.yd_c00058{bottom:1043.130000px;}
.yf_c00058{bottom:1043.970000px;}
.y8_c00058{bottom:1060.245000px;}
.y4_c00058{bottom:1060.905000px;}
.y6_c00058{bottom:1061.130000px;}
.y9_c00058{bottom:1061.970000px;}
.y7_c00058{bottom:1062.405000px;}
.y3_c00058{bottom:1063.050000px;}
.y5_c00058{bottom:1063.470000px;}
.y2_c00058{bottom:1098.405000px;}
.y1_c00058{bottom:1100.550000px;}
.h8_c00058{height:4.206533px;}
.h4_c00058{height:23.025234px;}
.h1_c00058{height:25.091602px;}
.h3_c00058{height:31.364502px;}
.h2_c00058{height:35.571035px;}
.h7_c00058{height:39.777568px;}
.h5_c00058{height:43.910303px;}
.h6_c00058{height:48.116836px;}
.h9_c00058{height:52.323369px;}
.h0_c00058{height:1335.000000px;}
.w0_c00058{width:880.500000px;}
.x0_c00058{left:0.000000px;}
.x1d_c00058{left:152.580000px;}
.x3_c00058{left:154.500000px;}
.x4_c00058{left:160.080000px;}
.xfa_c00058{left:162.000000px;}
.xdb_c00058{left:168.420000px;}
.x1e_c00058{left:169.920000px;}
.x2c_c00058{left:171.420000px;}
.x80_c00058{left:174.420000px;}
.x9b_c00058{left:175.500000px;}
.xee_c00058{left:178.920000px;}
.x92_c00058{left:180.000000px;}
.x63_c00058{left:186.420000px;}
.xc7_c00058{left:189.420000px;}
.x4f_c00058{left:190.500000px;}
.xfb_c00058{left:193.500000px;}
.x1f_c00058{left:195.000000px;}
.x5_c00058{left:196.500000px;}
.x45_c00058{left:198.000000px;}
.x2d_c00058{left:199.500000px;}
.x87_c00058{left:201.000000px;}
.x6_c00058{left:202.500000px;}
.xef_c00058{left:204.000000px;}
.xda_c00058{left:205.500000px;}
.xdf_c00058{left:208.500000px;}
.xa0_c00058{left:210.000000px;}
.x59_c00058{left:213.420000px;}
.x77_c00058{left:214.920000px;}
.xf0_c00058{left:219.420000px;}
.x7_c00058{left:220.920000px;}
.xd4_c00058{left:222.420000px;}
.x12_c00058{left:223.500000px;}
.xe9_c00058{left:227.580000px;}
.xc1_c00058{left:229.920000px;}
.xdc_c00058{left:231.000000px;}
.x20_c00058{left:232.080000px;}
.x8d_c00058{left:235.500000px;}
.x9c_c00058{left:237.420000px;}
.x46_c00058{left:239.580000px;}
.x5a_c00058{left:241.080000px;}
.x38_c00058{left:243.000000px;}
.x10a_c00058{left:245.580000px;}
.xe0_c00058{left:247.500000px;}
.x8_c00058{left:249.000000px;}
.xd5_c00058{left:250.500000px;}
.xb6_c00058{left:252.000000px;}
.x2e_c00058{left:255.000000px;}
.x2f_c00058{left:256.500000px;}
.x47_c00058{left:259.920000px;}
.xc2_c00058{left:262.500000px;}
.x9d_c00058{left:265.920000px;}
.xac_c00058{left:267.000000px;}
.x113_c00058{left:268.500000px;}
.x64_c00058{left:270.420000px;}
.x13_c00058{left:271.500000px;}
.x21_c00058{left:273.645000px;}
.x30_c00058{left:276.000000px;}
.xea_c00058{left:277.920000px;}
.xf5_c00058{left:279.000000px;}
.x6e_c00058{left:280.500000px;}
.x5b_c00058{left:282.000000px;}
.xfc_c00058{left:283.500000px;}
.xe1_c00058{left:284.580000px;}
.xa1_c00058{left:286.500000px;}
.x48_c00058{left:287.580000px;}
.xc3_c00058{left:289.500000px;}
.x50_c00058{left:291.000000px;}
.xd6_c00058{left:292.500000px;}
.x81_c00058{left:294.420000px;}
.x8e_c00058{left:295.500000px;}
.xa7_c00058{left:297.000000px;}
.xad_c00058{left:298.500000px;}
.xc8_c00058{left:300.000000px;}
.x14_c00058{left:303.000000px;}
.xcd_c00058{left:304.500000px;}
.xe2_c00058{left:306.000000px;}
.x88_c00058{left:307.920000px;}
.x78_c00058{left:309.000000px;}
.x39_c00058{left:310.920000px;}
.x9_c00058{left:313.080000px;}
.x10b_c00058{left:315.000000px;}
.xf6_c00058{left:316.080000px;}
.xfd_c00058{left:318.000000px;}
.x114_c00058{left:319.500000px;}
.x93_c00058{left:322.500000px;}
.x5c_c00058{left:324.420000px;}
.x65_c00058{left:326.580000px;}
.x110_c00058{left:328.920000px;}
.xae_c00058{left:331.500000px;}
.xa_c00058{left:334.500000px;}
.xb7_c00058{left:336.000000px;}
.x15_c00058{left:337.500000px;}
.x51_c00058{left:339.000000px;}
.x49_c00058{left:340.500000px;}
.xa8_c00058{left:345.420000px;}
.xc9_c00058{left:346.500000px;}
.x6f_c00058{left:348.000000px;}
.x22_c00058{left:349.080000px;}
.xc4_c00058{left:351.000000px;}
.x3a_c00058{left:352.500000px;}
.x94_c00058{left:357.000000px;}
.xb_c00058{left:358.080000px;}
.x66_c00058{left:359.580000px;}
.x16_c00058{left:361.920000px;}
.xce_c00058{left:363.000000px;}
.x101_c00058{left:364.500000px;}
.x105_c00058{left:366.000000px;}
.x82_c00058{left:367.500000px;}
.x4a_c00058{left:369.420000px;}
.x3b_c00058{left:370.500000px;}
.xa2_c00058{left:372.420000px;}
.x95_c00058{left:373.500000px;}
.xfe_c00058{left:376.500000px;}
.x102_c00058{left:381.000000px;}
.x17_c00058{left:382.500000px;}
.xc5_c00058{left:385.920000px;}
.x3c_c00058{left:387.000000px;}
.xc_c00058{left:388.500000px;}
.xdd_c00058{left:390.000000px;}
.x103_c00058{left:394.500000px;}
.x1_c00058{left:396.000000px;}
.xe3_c00058{left:397.080000px;}
.x52_c00058{left:400.500000px;}
.x70_c00058{left:406.500000px;}
.x5d_c00058{left:408.420000px;}
.xb8_c00058{left:409.500000px;}
.xa3_c00058{left:411.420000px;}
.x67_c00058{left:412.920000px;}
.x96_c00058{left:415.500000px;}
.x31_c00058{left:417.000000px;}
.x23_c00058{left:418.920000px;}
.x89_c00058{left:421.500000px;}
.x4b_c00058{left:424.080000px;}
.xaf_c00058{left:425.580000px;}
.xd7_c00058{left:427.080000px;}
.xde_c00058{left:430.080000px;}
.x3d_c00058{left:432.000000px;}
.x79_c00058{left:433.080000px;}
.x97_c00058{left:435.420000px;}
.x5e_c00058{left:436.500000px;}
.xa4_c00058{left:437.580000px;}
.x68_c00058{left:439.080000px;}
.xcf_c00058{left:441.420000px;}
.xd8_c00058{left:448.500000px;}
.xe4_c00058{left:450.420000px;}
.x71_c00058{left:451.500000px;}
.x3e_c00058{left:453.420000px;}
.x53_c00058{left:455.580000px;}
.xf1_c00058{left:459.000000px;}
.x100_c00058{left:460.920000px;}
.xd_c00058{left:462.000000px;}
.x32_c00058{left:463.920000px;}
.x8f_c00058{left:466.500000px;}
.x5f_c00058{left:469.500000px;}
.xa9_c00058{left:471.000000px;}
.x4c_c00058{left:472.500000px;}
.x115_c00058{left:474.000000px;}
.x106_c00058{left:475.500000px;}
.x69_c00058{left:477.000000px;}
.xeb_c00058{left:478.500000px;}
.x7a_c00058{left:480.420000px;}
.xb9_c00058{left:481.920000px;}
.xe_c00058{left:483.420000px;}
.xca_c00058{left:488.580000px;}
.x24_c00058{left:490.920000px;}
.x83_c00058{left:492.000000px;}
.x72_c00058{left:493.500000px;}
.x54_c00058{left:496.080000px;}
.x18_c00058{left:498.000000px;}
.x10e_c00058{left:499.500000px;}
.xc6_c00058{left:502.080000px;}
.x33_c00058{left:504.420000px;}
.x7b_c00058{left:505.500000px;}
.x104_c00058{left:507.000000px;}
.xba_c00058{left:508.920000px;}
.xb0_c00058{left:510.000000px;}
.x3f_c00058{left:511.500000px;}
.xf_c00058{left:513.000000px;}
.x10f_c00058{left:514.500000px;}
.x73_c00058{left:516.420000px;}
.x107_c00058{left:517.500000px;}
.x7c_c00058{left:522.420000px;}
.xb1_c00058{left:523.920000px;}
.x25_c00058{left:525.420000px;}
.x98_c00058{left:526.500000px;}
.x9e_c00058{left:527.580000px;}
.xf7_c00058{left:532.500000px;}
.x19_c00058{left:534.000000px;}
.x34_c00058{left:535.500000px;}
.xbb_c00058{left:540.000000px;}
.xa5_c00058{left:541.500000px;}
.x4d_c00058{left:543.000000px;}
.xf2_c00058{left:544.080000px;}
.x74_c00058{left:546.000000px;}
.x60_c00058{left:547.500000px;}
.xcb_c00058{left:549.420000px;}
.xec_c00058{left:552.000000px;}
.x26_c00058{left:553.080000px;}
.x55_c00058{left:555.420000px;}
.x40_c00058{left:556.500000px;}
.xff_c00058{left:558.420000px;}
.xb2_c00058{left:559.500000px;}
.xaa_c00058{left:560.580000px;}
.x6a_c00058{left:562.080000px;}
.xe5_c00058{left:563.580000px;}
.xf8_c00058{left:567.420000px;}
.x10_c00058{left:568.500000px;}
.x99_c00058{left:570.000000px;}
.xf3_c00058{left:571.920000px;}
.xbc_c00058{left:574.920000px;}
.x7d_c00058{left:576.000000px;}
.x84_c00058{left:577.500000px;}
.x27_c00058{left:580.500000px;}
.x10c_c00058{left:582.000000px;}
.xe6_c00058{left:583.500000px;}
.x8a_c00058{left:585.000000px;}
.x6b_c00058{left:589.920000px;}
.x41_c00058{left:592.500000px;}
.xd0_c00058{left:594.420000px;}
.x28_c00058{left:595.500000px;}
.x85_c00058{left:597.000000px;}
.x116_c00058{left:598.080000px;}
.xbd_c00058{left:601.920000px;}
.x1a_c00058{left:603.000000px;}
.x75_c00058{left:604.500000px;}
.x35_c00058{left:607.500000px;}
.x11_c00058{left:609.000000px;}
.xb3_c00058{left:610.080000px;}
.x10d_c00058{left:612.420000px;}
.xd9_c00058{left:613.500000px;}
.x1b_c00058{left:615.420000px;}
.xcc_c00058{left:618.000000px;}
.x56_c00058{left:619.920000px;}
.x29_c00058{left:622.080000px;}
.x8b_c00058{left:625.920000px;}
.x7e_c00058{left:628.500000px;}
.x42_c00058{left:629.580000px;}
.xa6_c00058{left:634.500000px;}
.x86_c00058{left:636.000000px;}
.x90_c00058{left:637.920000px;}
.x2a_c00058{left:639.420000px;}
.xbe_c00058{left:640.500000px;}
.xb4_c00058{left:642.000000px;}
.x111_c00058{left:643.500000px;}
.x57_c00058{left:644.580000px;}
.x6c_c00058{left:646.500000px;}
.x117_c00058{left:648.000000px;}
.x4e_c00058{left:649.080000px;}
.x8c_c00058{left:652.920000px;}
.xe7_c00058{left:654.000000px;}
.x108_c00058{left:655.500000px;}
.xd1_c00058{left:658.500000px;}
.x6d_c00058{left:660.000000px;}
.x1c_c00058{left:661.920000px;}
.x2b_c00058{left:664.500000px;}
.xab_c00058{left:667.080000px;}
.x43_c00058{left:668.580000px;}
.x61_c00058{left:670.920000px;}
.xe8_c00058{left:672.000000px;}
.xf4_c00058{left:673.500000px;}
.x9a_c00058{left:676.920000px;}
.xd2_c00058{left:679.920000px;}
.x9f_c00058{left:683.580000px;}
.x7f_c00058{left:685.920000px;}
.xbf_c00058{left:688.500000px;}
.x36_c00058{left:690.000000px;}
.x58_c00058{left:691.500000px;}
.x76_c00058{left:693.420000px;}
.xf9_c00058{left:696.000000px;}
.x62_c00058{left:697.500000px;}
.xb5_c00058{left:699.000000px;}
.x91_c00058{left:700.920000px;}
.x44_c00058{left:703.500000px;}
.x109_c00058{left:705.000000px;}
.xd3_c00058{left:706.920000px;}
.xc0_c00058{left:708.420000px;}
.x112_c00058{left:709.920000px;}
.x2_c00058{left:712.080000px;}
.x118_c00058{left:715.080000px;}
.x37_c00058{left:717.000000px;}
.xed_c00058{left:718.080000px;}
@media print{
.v1_c00058{vertical-align:-5.333333pt;}
.v0_c00058{vertical-align:0.000000pt;}
.ls0_c00058{letter-spacing:0.000000pt;}
.ws2_c00058{word-spacing:-6.716289pt;}
.ws1_c00058{word-spacing:-6.211569pt;}
.ws3_c00058{word-spacing:0.000000pt;}
.ws0_c00058{word-spacing:0.267974pt;}
.fs7_c00058{font-size:3.040000pt;}
.fs3_c00058{font-size:16.640000pt;}
.fs0_c00058{font-size:18.133333pt;}
.fs2_c00058{font-size:22.666667pt;}
.fs1_c00058{font-size:25.706667pt;}
.fs6_c00058{font-size:28.746667pt;}
.fs4_c00058{font-size:31.733333pt;}
.fs5_c00058{font-size:34.773333pt;}
.fs8_c00058{font-size:37.813333pt;}
.y0_c00058{bottom:0.000000pt;}
.y106_c00058{bottom:224.360000pt;}
.y108_c00058{bottom:225.106667pt;}
.y107_c00058{bottom:225.693333pt;}
.y104_c00058{bottom:225.893333pt;}
.y109_c00058{bottom:226.266667pt;}
.y105_c00058{bottom:226.640000pt;}
.y103_c00058{bottom:227.026667pt;}
.y102_c00058{bottom:228.733333pt;}
.yff_c00058{bottom:241.106667pt;}
.y101_c00058{bottom:241.693333pt;}
.yfc_c00058{bottom:242.440000pt;}
.yfe_c00058{bottom:243.026667pt;}
.yfd_c00058{bottom:243.226667pt;}
.y100_c00058{bottom:244.360000pt;}
.yfb_c00058{bottom:247.400000pt;}
.yf7_c00058{bottom:259.400000pt;}
.yf8_c00058{bottom:259.773333pt;}
.yf6_c00058{bottom:260.360000pt;}
.yf5_c00058{bottom:260.560000pt;}
.yf3_c00058{bottom:260.933333pt;}
.yf4_c00058{bottom:261.693333pt;}
.yf9_c00058{bottom:262.640000pt;}
.yfa_c00058{bottom:263.026667pt;}
.yf2_c00058{bottom:263.973333pt;}
.yf0_c00058{bottom:275.400000pt;}
.yed_c00058{bottom:277.106667pt;}
.yee_c00058{bottom:278.640000pt;}
.yec_c00058{bottom:279.026667pt;}
.yf1_c00058{bottom:279.226667pt;}
.yef_c00058{bottom:279.973333pt;}
.yeb_c00058{bottom:281.493333pt;}
.ye6_c00058{bottom:293.693333pt;}
.ye8_c00058{bottom:294.440000pt;}
.ye5_c00058{bottom:294.826667pt;}
.ye7_c00058{bottom:295.400000pt;}
.ye9_c00058{bottom:296.360000pt;}
.yea_c00058{bottom:297.306667pt;}
.ye4_c00058{bottom:300.360000pt;}
.ye0_c00058{bottom:311.773333pt;}
.ye2_c00058{bottom:312.733333pt;}
.ye3_c00058{bottom:313.306667pt;}
.ydf_c00058{bottom:313.693333pt;}
.yde_c00058{bottom:314.440000pt;}
.ye1_c00058{bottom:314.640000pt;}
.ydd_c00058{bottom:318.266667pt;}
.ydc_c00058{bottom:329.106667pt;}
.ydb_c00058{bottom:330.066667pt;}
.yda_c00058{bottom:331.026667pt;}
.yd9_c00058{bottom:332.360000pt;}
.yd8_c00058{bottom:334.440000pt;}
.yd6_c00058{bottom:346.440000pt;}
.yd1_c00058{bottom:346.826667pt;}
.yd2_c00058{bottom:347.400000pt;}
.yd7_c00058{bottom:347.973333pt;}
.yd3_c00058{bottom:348.360000pt;}
.yd4_c00058{bottom:348.560000pt;}
.yd5_c00058{bottom:349.306667pt;}
.yd0_c00058{bottom:349.693333pt;}
.ycf_c00058{bottom:352.733333pt;}
.ycd_c00058{bottom:363.773333pt;}
.ycb_c00058{bottom:364.160000pt;}
.yce_c00058{bottom:365.693333pt;}
.ycc_c00058{bottom:366.640000pt;}
.yca_c00058{bottom:367.026667pt;}
.yc9_c00058{bottom:368.733333pt;}
.yc7_c00058{bottom:380.360000pt;}
.yc8_c00058{bottom:381.106667pt;}
.yc4_c00058{bottom:382.440000pt;}
.yc6_c00058{bottom:383.026667pt;}
.yc5_c00058{bottom:384.360000pt;}
.yc3_c00058{bottom:385.693333pt;}
.yc2_c00058{bottom:386.066667pt;}
.yc1_c00058{bottom:397.693333pt;}
.ybf_c00058{bottom:399.773333pt;}
.yc0_c00058{bottom:400.560000pt;}
.ybd_c00058{bottom:400.933333pt;}
.ybe_c00058{bottom:401.693333pt;}
.ybb_c00058{bottom:402.640000pt;}
.ybc_c00058{bottom:403.973333pt;}
.yba_c00058{bottom:404.560000pt;}
.yb8_c00058{bottom:415.973333pt;}
.yb9_c00058{bottom:416.733333pt;}
.yb5_c00058{bottom:417.106667pt;}
.yb6_c00058{bottom:417.893333pt;}
.yb4_c00058{bottom:418.826667pt;}
.yb7_c00058{bottom:419.026667pt;}
.yb1_c00058{bottom:434.066667pt;}
.yaf_c00058{bottom:434.440000pt;}
.yb3_c00058{bottom:435.226667pt;}
.yb0_c00058{bottom:435.400000pt;}
.yad_c00058{bottom:435.773333pt;}
.yae_c00058{bottom:436.360000pt;}
.yb2_c00058{bottom:437.306667pt;}
.yac_c00058{bottom:437.693333pt;}
.yab_c00058{bottom:440.360000pt;}
.ya9_c00058{bottom:451.773333pt;}
.yaa_c00058{bottom:452.560000pt;}
.ya8_c00058{bottom:453.693333pt;}
.ya5_c00058{bottom:454.440000pt;}
.ya7_c00058{bottom:454.640000pt;}
.ya6_c00058{bottom:455.026667pt;}
.ya4_c00058{bottom:468.360000pt;}
.ya1_c00058{bottom:469.693333pt;}
.ya3_c00058{bottom:470.440000pt;}
.y9f_c00058{bottom:471.026667pt;}
.ya2_c00058{bottom:471.226667pt;}
.ya0_c00058{bottom:471.973333pt;}
.y9e_c00058{bottom:474.066667pt;}
.y9d_c00058{bottom:486.440000pt;}
.y9a_c00058{bottom:487.773333pt;}
.y9c_c00058{bottom:488.360000pt;}
.y9b_c00058{bottom:489.306667pt;}
.y99_c00058{bottom:489.693333pt;}
.y98_c00058{bottom:491.400000pt;}
.y96_c00058{bottom:506.066667pt;}
.y97_c00058{bottom:507.026667pt;}
.y95_c00058{bottom:520.360000pt;}
.y93_c00058{bottom:522.440000pt;}
.y91_c00058{bottom:522.826667pt;}
.y94_c00058{bottom:523.226667pt;}
.y92_c00058{bottom:524.360000pt;}
.y8f_c00058{bottom:539.773333pt;}
.y90_c00058{bottom:541.306667pt;}
.y8e_c00058{bottom:541.693333pt;}
.y8d_c00058{bottom:543.026667pt;}
.y8c_c00058{bottom:544.360000pt;}
.y8b_c00058{bottom:556.360000pt;}
.y88_c00058{bottom:557.106667pt;}
.y87_c00058{bottom:559.026667pt;}
.y8a_c00058{bottom:559.226667pt;}
.y89_c00058{bottom:559.973333pt;}
.y86_c00058{bottom:560.360000pt;}
.y85_c00058{bottom:560.733333pt;}
.y84_c00058{bottom:574.440000pt;}
.y82_c00058{bottom:576.360000pt;}
.y83_c00058{bottom:576.560000pt;}
.y81_c00058{bottom:577.693333pt;}
.y80_c00058{bottom:579.400000pt;}
.y7a_c00058{bottom:591.973333pt;}
.y7e_c00058{bottom:593.106667pt;}
.y7b_c00058{bottom:593.693333pt;}
.y7f_c00058{bottom:593.893333pt;}
.y7c_c00058{bottom:594.640000pt;}
.y7d_c00058{bottom:595.026667pt;}
.y79_c00058{bottom:596.360000pt;}
.y74_c00058{bottom:609.493333pt;}
.y77_c00058{bottom:610.440000pt;}
.y76_c00058{bottom:611.226667pt;}
.y78_c00058{bottom:611.400000pt;}
.y75_c00058{bottom:612.360000pt;}
.y73_c00058{bottom:614.266667pt;}
.y71_c00058{bottom:627.400000pt;}
.y70_c00058{bottom:627.773333pt;}
.y6f_c00058{bottom:628.560000pt;}
.y6e_c00058{bottom:629.693333pt;}
.y72_c00058{bottom:629.893333pt;}
.y6d_c00058{bottom:631.026667pt;}
.y6c_c00058{bottom:632.360000pt;}
.y6b_c00058{bottom:643.773333pt;}
.y69_c00058{bottom:644.360000pt;}
.y68_c00058{bottom:644.733333pt;}
.y6a_c00058{bottom:645.106667pt;}
.y67_c00058{bottom:647.026667pt;}
.y66_c00058{bottom:648.360000pt;}
.y61_c00058{bottom:662.440000pt;}
.y63_c00058{bottom:663.400000pt;}
.y60_c00058{bottom:663.773333pt;}
.y62_c00058{bottom:664.360000pt;}
.y65_c00058{bottom:664.560000pt;}
.y64_c00058{bottom:665.306667pt;}
.y5f_c00058{bottom:667.026667pt;}
.y5e_c00058{bottom:679.773333pt;}
.y5b_c00058{bottom:680.733333pt;}
.y5c_c00058{bottom:681.693333pt;}
.y5d_c00058{bottom:681.893333pt;}
.y5a_c00058{bottom:684.360000pt;}
.y59_c00058{bottom:697.106667pt;}
.y58_c00058{bottom:698.440000pt;}
.y57_c00058{bottom:699.226667pt;}
.y56_c00058{bottom:700.360000pt;}
.y55_c00058{bottom:701.693333pt;}
.y54_c00058{bottom:714.440000pt;}
.y50_c00058{bottom:715.400000pt;}
.y51_c00058{bottom:716.360000pt;}
.y52_c00058{bottom:716.560000pt;}
.y4e_c00058{bottom:716.733333pt;}
.y53_c00058{bottom:717.306667pt;}
.y4f_c00058{bottom:717.693333pt;}
.y4c_c00058{bottom:733.106667pt;}
.y4b_c00058{bottom:734.066667pt;}
.y4a_c00058{bottom:735.026667pt;}
.y4d_c00058{bottom:735.973333pt;}
.y49_c00058{bottom:737.693333pt;}
.y48_c00058{bottom:750.440000pt;}
.y47_c00058{bottom:751.400000pt;}
.y46_c00058{bottom:751.973333pt;}
.y45_c00058{bottom:752.360000pt;}
.y44_c00058{bottom:752.733333pt;}
.y41_c00058{bottom:765.693333pt;}
.y42_c00058{bottom:766.440000pt;}
.y43_c00058{bottom:767.773333pt;}
.y40_c00058{bottom:768.560000pt;}
.y3e_c00058{bottom:768.733333pt;}
.y3f_c00058{bottom:769.693333pt;}
.y3d_c00058{bottom:770.066667pt;}
.y3c_c00058{bottom:783.026667pt;}
.y3b_c00058{bottom:785.106667pt;}
.y3a_c00058{bottom:785.893333pt;}
.y39_c00058{bottom:787.026667pt;}
.y38_c00058{bottom:788.733333pt;}
.y34_c00058{bottom:801.693333pt;}
.y35_c00058{bottom:802.440000pt;}
.y32_c00058{bottom:804.160000pt;}
.y33_c00058{bottom:804.360000pt;}
.y36_c00058{bottom:804.560000pt;}
.y37_c00058{bottom:805.306667pt;}
.y2d_c00058{bottom:819.773333pt;}
.y2f_c00058{bottom:820.733333pt;}
.y30_c00058{bottom:821.106667pt;}
.y2e_c00058{bottom:821.693333pt;}
.y2c_c00058{bottom:821.893333pt;}
.y31_c00058{bottom:822.640000pt;}
.y2b_c00058{bottom:823.026667pt;}
.y2a_c00058{bottom:823.400000pt;}
.y28_c00058{bottom:837.106667pt;}
.y24_c00058{bottom:837.693333pt;}
.y25_c00058{bottom:838.066667pt;}
.y29_c00058{bottom:838.440000pt;}
.y26_c00058{bottom:839.026667pt;}
.y27_c00058{bottom:839.226667pt;}
.y23_c00058{bottom:853.693333pt;}
.y22_c00058{bottom:854.640000pt;}
.y1e_c00058{bottom:855.400000pt;}
.y1d_c00058{bottom:856.160000pt;}
.y1f_c00058{bottom:856.360000pt;}
.y21_c00058{bottom:856.560000pt;}
.y20_c00058{bottom:857.693333pt;}
.y18_c00058{bottom:873.106667pt;}
.y1c_c00058{bottom:873.893333pt;}
.y1b_c00058{bottom:875.026667pt;}
.y19_c00058{bottom:875.040000pt;}
.y1a_c00058{bottom:875.973333pt;}
.y16_c00058{bottom:890.066667pt;}
.y17_c00058{bottom:890.440000pt;}
.y15_c00058{bottom:892.360000pt;}
.y14_c00058{bottom:893.693333pt;}
.y12_c00058{bottom:907.773333pt;}
.y13_c00058{bottom:908.560000pt;}
.y11_c00058{bottom:909.693333pt;}
.y10_c00058{bottom:911.026667pt;}
.ye_c00058{bottom:925.106667pt;}
.ya_c00058{bottom:925.493333pt;}
.yc_c00058{bottom:925.893333pt;}
.yb_c00058{bottom:927.026667pt;}
.yd_c00058{bottom:927.226667pt;}
.yf_c00058{bottom:927.973333pt;}
.y8_c00058{bottom:942.440000pt;}
.y4_c00058{bottom:943.026667pt;}
.y6_c00058{bottom:943.226667pt;}
.y9_c00058{bottom:943.973333pt;}
.y7_c00058{bottom:944.360000pt;}
.y3_c00058{bottom:944.933333pt;}
.y5_c00058{bottom:945.306667pt;}
.y2_c00058{bottom:976.360000pt;}
.y1_c00058{bottom:978.266667pt;}
.h8_c00058{height:3.739141pt;}
.h4_c00058{height:20.466875pt;}
.h1_c00058{height:22.303646pt;}
.h3_c00058{height:27.879557pt;}
.h2_c00058{height:31.618698pt;}
.h7_c00058{height:35.357839pt;}
.h5_c00058{height:39.031380pt;}
.h6_c00058{height:42.770521pt;}
.h9_c00058{height:46.509661pt;}
.h0_c00058{height:1186.666667pt;}
.w0_c00058{width:782.666667pt;}
.x0_c00058{left:0.000000pt;}
.x1d_c00058{left:135.626667pt;}
.x3_c00058{left:137.333333pt;}
.x4_c00058{left:142.293333pt;}
.xfa_c00058{left:144.000000pt;}
.xdb_c00058{left:149.706667pt;}
.x1e_c00058{left:151.040000pt;}
.x2c_c00058{left:152.373333pt;}
.x80_c00058{left:155.040000pt;}
.x9b_c00058{left:156.000000pt;}
.xee_c00058{left:159.040000pt;}
.x92_c00058{left:160.000000pt;}
.x63_c00058{left:165.706667pt;}
.xc7_c00058{left:168.373333pt;}
.x4f_c00058{left:169.333333pt;}
.xfb_c00058{left:172.000000pt;}
.x1f_c00058{left:173.333333pt;}
.x5_c00058{left:174.666667pt;}
.x45_c00058{left:176.000000pt;}
.x2d_c00058{left:177.333333pt;}
.x87_c00058{left:178.666667pt;}
.x6_c00058{left:180.000000pt;}
.xef_c00058{left:181.333333pt;}
.xda_c00058{left:182.666667pt;}
.xdf_c00058{left:185.333333pt;}
.xa0_c00058{left:186.666667pt;}
.x59_c00058{left:189.706667pt;}
.x77_c00058{left:191.040000pt;}
.xf0_c00058{left:195.040000pt;}
.x7_c00058{left:196.373333pt;}
.xd4_c00058{left:197.706667pt;}
.x12_c00058{left:198.666667pt;}
.xe9_c00058{left:202.293333pt;}
.xc1_c00058{left:204.373333pt;}
.xdc_c00058{left:205.333333pt;}
.x20_c00058{left:206.293333pt;}
.x8d_c00058{left:209.333333pt;}
.x9c_c00058{left:211.040000pt;}
.x46_c00058{left:212.960000pt;}
.x5a_c00058{left:214.293333pt;}
.x38_c00058{left:216.000000pt;}
.x10a_c00058{left:218.293333pt;}
.xe0_c00058{left:220.000000pt;}
.x8_c00058{left:221.333333pt;}
.xd5_c00058{left:222.666667pt;}
.xb6_c00058{left:224.000000pt;}
.x2e_c00058{left:226.666667pt;}
.x2f_c00058{left:228.000000pt;}
.x47_c00058{left:231.040000pt;}
.xc2_c00058{left:233.333333pt;}
.x9d_c00058{left:236.373333pt;}
.xac_c00058{left:237.333333pt;}
.x113_c00058{left:238.666667pt;}
.x64_c00058{left:240.373333pt;}
.x13_c00058{left:241.333333pt;}
.x21_c00058{left:243.240000pt;}
.x30_c00058{left:245.333333pt;}
.xea_c00058{left:247.040000pt;}
.xf5_c00058{left:248.000000pt;}
.x6e_c00058{left:249.333333pt;}
.x5b_c00058{left:250.666667pt;}
.xfc_c00058{left:252.000000pt;}
.xe1_c00058{left:252.960000pt;}
.xa1_c00058{left:254.666667pt;}
.x48_c00058{left:255.626667pt;}
.xc3_c00058{left:257.333333pt;}
.x50_c00058{left:258.666667pt;}
.xd6_c00058{left:260.000000pt;}
.x81_c00058{left:261.706667pt;}
.x8e_c00058{left:262.666667pt;}
.xa7_c00058{left:264.000000pt;}
.xad_c00058{left:265.333333pt;}
.xc8_c00058{left:266.666667pt;}
.x14_c00058{left:269.333333pt;}
.xcd_c00058{left:270.666667pt;}
.xe2_c00058{left:272.000000pt;}
.x88_c00058{left:273.706667pt;}
.x78_c00058{left:274.666667pt;}
.x39_c00058{left:276.373333pt;}
.x9_c00058{left:278.293333pt;}
.x10b_c00058{left:280.000000pt;}
.xf6_c00058{left:280.960000pt;}
.xfd_c00058{left:282.666667pt;}
.x114_c00058{left:284.000000pt;}
.x93_c00058{left:286.666667pt;}
.x5c_c00058{left:288.373333pt;}
.x65_c00058{left:290.293333pt;}
.x110_c00058{left:292.373333pt;}
.xae_c00058{left:294.666667pt;}
.xa_c00058{left:297.333333pt;}
.xb7_c00058{left:298.666667pt;}
.x15_c00058{left:300.000000pt;}
.x51_c00058{left:301.333333pt;}
.x49_c00058{left:302.666667pt;}
.xa8_c00058{left:307.040000pt;}
.xc9_c00058{left:308.000000pt;}
.x6f_c00058{left:309.333333pt;}
.x22_c00058{left:310.293333pt;}
.xc4_c00058{left:312.000000pt;}
.x3a_c00058{left:313.333333pt;}
.x94_c00058{left:317.333333pt;}
.xb_c00058{left:318.293333pt;}
.x66_c00058{left:319.626667pt;}
.x16_c00058{left:321.706667pt;}
.xce_c00058{left:322.666667pt;}
.x101_c00058{left:324.000000pt;}
.x105_c00058{left:325.333333pt;}
.x82_c00058{left:326.666667pt;}
.x4a_c00058{left:328.373333pt;}
.x3b_c00058{left:329.333333pt;}
.xa2_c00058{left:331.040000pt;}
.x95_c00058{left:332.000000pt;}
.xfe_c00058{left:334.666667pt;}
.x102_c00058{left:338.666667pt;}
.x17_c00058{left:340.000000pt;}
.xc5_c00058{left:343.040000pt;}
.x3c_c00058{left:344.000000pt;}
.xc_c00058{left:345.333333pt;}
.xdd_c00058{left:346.666667pt;}
.x103_c00058{left:350.666667pt;}
.x1_c00058{left:352.000000pt;}
.xe3_c00058{left:352.960000pt;}
.x52_c00058{left:356.000000pt;}
.x70_c00058{left:361.333333pt;}
.x5d_c00058{left:363.040000pt;}
.xb8_c00058{left:364.000000pt;}
.xa3_c00058{left:365.706667pt;}
.x67_c00058{left:367.040000pt;}
.x96_c00058{left:369.333333pt;}
.x31_c00058{left:370.666667pt;}
.x23_c00058{left:372.373333pt;}
.x89_c00058{left:374.666667pt;}
.x4b_c00058{left:376.960000pt;}
.xaf_c00058{left:378.293333pt;}
.xd7_c00058{left:379.626667pt;}
.xde_c00058{left:382.293333pt;}
.x3d_c00058{left:384.000000pt;}
.x79_c00058{left:384.960000pt;}
.x97_c00058{left:387.040000pt;}
.x5e_c00058{left:388.000000pt;}
.xa4_c00058{left:388.960000pt;}
.x68_c00058{left:390.293333pt;}
.xcf_c00058{left:392.373333pt;}
.xd8_c00058{left:398.666667pt;}
.xe4_c00058{left:400.373333pt;}
.x71_c00058{left:401.333333pt;}
.x3e_c00058{left:403.040000pt;}
.x53_c00058{left:404.960000pt;}
.xf1_c00058{left:408.000000pt;}
.x100_c00058{left:409.706667pt;}
.xd_c00058{left:410.666667pt;}
.x32_c00058{left:412.373333pt;}
.x8f_c00058{left:414.666667pt;}
.x5f_c00058{left:417.333333pt;}
.xa9_c00058{left:418.666667pt;}
.x4c_c00058{left:420.000000pt;}
.x115_c00058{left:421.333333pt;}
.x106_c00058{left:422.666667pt;}
.x69_c00058{left:424.000000pt;}
.xeb_c00058{left:425.333333pt;}
.x7a_c00058{left:427.040000pt;}
.xb9_c00058{left:428.373333pt;}
.xe_c00058{left:429.706667pt;}
.xca_c00058{left:434.293333pt;}
.x24_c00058{left:436.373333pt;}
.x83_c00058{left:437.333333pt;}
.x72_c00058{left:438.666667pt;}
.x54_c00058{left:440.960000pt;}
.x18_c00058{left:442.666667pt;}
.x10e_c00058{left:444.000000pt;}
.xc6_c00058{left:446.293333pt;}
.x33_c00058{left:448.373333pt;}
.x7b_c00058{left:449.333333pt;}
.x104_c00058{left:450.666667pt;}
.xba_c00058{left:452.373333pt;}
.xb0_c00058{left:453.333333pt;}
.x3f_c00058{left:454.666667pt;}
.xf_c00058{left:456.000000pt;}
.x10f_c00058{left:457.333333pt;}
.x73_c00058{left:459.040000pt;}
.x107_c00058{left:460.000000pt;}
.x7c_c00058{left:464.373333pt;}
.xb1_c00058{left:465.706667pt;}
.x25_c00058{left:467.040000pt;}
.x98_c00058{left:468.000000pt;}
.x9e_c00058{left:468.960000pt;}
.xf7_c00058{left:473.333333pt;}
.x19_c00058{left:474.666667pt;}
.x34_c00058{left:476.000000pt;}
.xbb_c00058{left:480.000000pt;}
.xa5_c00058{left:481.333333pt;}
.x4d_c00058{left:482.666667pt;}
.xf2_c00058{left:483.626667pt;}
.x74_c00058{left:485.333333pt;}
.x60_c00058{left:486.666667pt;}
.xcb_c00058{left:488.373333pt;}
.xec_c00058{left:490.666667pt;}
.x26_c00058{left:491.626667pt;}
.x55_c00058{left:493.706667pt;}
.x40_c00058{left:494.666667pt;}
.xff_c00058{left:496.373333pt;}
.xb2_c00058{left:497.333333pt;}
.xaa_c00058{left:498.293333pt;}
.x6a_c00058{left:499.626667pt;}
.xe5_c00058{left:500.960000pt;}
.xf8_c00058{left:504.373333pt;}
.x10_c00058{left:505.333333pt;}
.x99_c00058{left:506.666667pt;}
.xf3_c00058{left:508.373333pt;}
.xbc_c00058{left:511.040000pt;}
.x7d_c00058{left:512.000000pt;}
.x84_c00058{left:513.333333pt;}
.x27_c00058{left:516.000000pt;}
.x10c_c00058{left:517.333333pt;}
.xe6_c00058{left:518.666667pt;}
.x8a_c00058{left:520.000000pt;}
.x6b_c00058{left:524.373333pt;}
.x41_c00058{left:526.666667pt;}
.xd0_c00058{left:528.373333pt;}
.x28_c00058{left:529.333333pt;}
.x85_c00058{left:530.666667pt;}
.x116_c00058{left:531.626667pt;}
.xbd_c00058{left:535.040000pt;}
.x1a_c00058{left:536.000000pt;}
.x75_c00058{left:537.333333pt;}
.x35_c00058{left:540.000000pt;}
.x11_c00058{left:541.333333pt;}
.xb3_c00058{left:542.293333pt;}
.x10d_c00058{left:544.373333pt;}
.xd9_c00058{left:545.333333pt;}
.x1b_c00058{left:547.040000pt;}
.xcc_c00058{left:549.333333pt;}
.x56_c00058{left:551.040000pt;}
.x29_c00058{left:552.960000pt;}
.x8b_c00058{left:556.373333pt;}
.x7e_c00058{left:558.666667pt;}
.x42_c00058{left:559.626667pt;}
.xa6_c00058{left:564.000000pt;}
.x86_c00058{left:565.333333pt;}
.x90_c00058{left:567.040000pt;}
.x2a_c00058{left:568.373333pt;}
.xbe_c00058{left:569.333333pt;}
.xb4_c00058{left:570.666667pt;}
.x111_c00058{left:572.000000pt;}
.x57_c00058{left:572.960000pt;}
.x6c_c00058{left:574.666667pt;}
.x117_c00058{left:576.000000pt;}
.x4e_c00058{left:576.960000pt;}
.x8c_c00058{left:580.373333pt;}
.xe7_c00058{left:581.333333pt;}
.x108_c00058{left:582.666667pt;}
.xd1_c00058{left:585.333333pt;}
.x6d_c00058{left:586.666667pt;}
.x1c_c00058{left:588.373333pt;}
.x2b_c00058{left:590.666667pt;}
.xab_c00058{left:592.960000pt;}
.x43_c00058{left:594.293333pt;}
.x61_c00058{left:596.373333pt;}
.xe8_c00058{left:597.333333pt;}
.xf4_c00058{left:598.666667pt;}
.x9a_c00058{left:601.706667pt;}
.xd2_c00058{left:604.373333pt;}
.x9f_c00058{left:607.626667pt;}
.x7f_c00058{left:609.706667pt;}
.xbf_c00058{left:612.000000pt;}
.x36_c00058{left:613.333333pt;}
.x58_c00058{left:614.666667pt;}
.x76_c00058{left:616.373333pt;}
.xf9_c00058{left:618.666667pt;}
.x62_c00058{left:620.000000pt;}
.xb5_c00058{left:621.333333pt;}
.x91_c00058{left:623.040000pt;}
.x44_c00058{left:625.333333pt;}
.x109_c00058{left:626.666667pt;}
.xd3_c00058{left:628.373333pt;}
.xc0_c00058{left:629.706667pt;}
.x112_c00058{left:631.040000pt;}
.x2_c00058{left:632.960000pt;}
.x118_c00058{left:635.626667pt;}
.x37_c00058{left:637.333333pt;}
.xed_c00058{left:638.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_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_b7ef8fb6ed371dee4267a606.woff2')format("woff");}.ff1_c00059{font-family:ff1_c00059;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf4_c00059{transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);}
.m18_c00059{transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);}
.mf3_c00059{transform:matrix(0.348330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348330,0.000000,0.000000,0.250000,0,0);}
.mce_c00059{transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);}
.m51_c00059{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.mb7_c00059{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.mf0_c00059{transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);}
.mf_c00059{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mc3_c00059{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m1d_c00059{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.me5_c00059{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.md1_c00059{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mc1_c00059{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mc9_c00059{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.m71_c00059{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mdd_c00059{transform:matrix(0.378834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378834,0.000000,0.000000,0.250000,0,0);}
.m7_c00059{transform:matrix(0.380252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380252,0.000000,0.000000,0.250000,0,0);}
.m33_c00059{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m17_c00059{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m9a_c00059{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.mad_c00059{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m91_c00059{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.mcf_c00059{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.ma5_c00059{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mf1_c00059{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.m9f_c00059{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.mc8_c00059{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.me_c00059{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mb3_c00059{transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);}
.m98_c00059{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m2d_c00059{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m79_c00059{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m27_c00059{transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);}
.m4d_c00059{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.mcc_c00059{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.md7_c00059{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m6_c00059{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.mdb_c00059{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m7e_c00059{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m53_c00059{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m8d_c00059{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m86_c00059{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m77_c00059{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m39_c00059{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mee_c00059{transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);}
.mb8_c00059{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.md8_c00059{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.m31_c00059{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.me6_c00059{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m44_c00059{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m2c_c00059{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.mc2_c00059{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m74_c00059{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m36_c00059{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m8a_c00059{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mec_c00059{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.md9_c00059{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mb0_c00059{transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);}
.m81_c00059{transform:matrix(0.421680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421680,0.000000,0.000000,0.250000,0,0);}
.m59_c00059{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m9e_c00059{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m9c_c00059{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.mc6_c00059{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.mc5_c00059{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.ma_c00059{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m58_c00059{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m64_c00059{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m41_c00059{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m65_c00059{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.ma7_c00059{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.mf8_c00059{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m6a_c00059{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m61_c00059{transform:matrix(0.436134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436134,0.000000,0.000000,0.250000,0,0);}
.m2f_c00059{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m9b_c00059{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m38_c00059{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m11_c00059{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.me9_c00059{transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);}
.md5_c00059{transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);}
.m93_c00059{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m1c_c00059{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mc7_c00059{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.me4_c00059{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.me8_c00059{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.md2_c00059{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m3_c00059{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.ma9_c00059{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m60_c00059{transform:matrix(0.457563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457563,0.000000,0.000000,0.250000,0,0);}
.mea_c00059{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mde_c00059{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m3f_c00059{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.mf7_c00059{transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);}
.m92_c00059{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.md6_c00059{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m22_c00059{transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);}
.m6d_c00059{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m85_c00059{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m80_c00059{transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);}
.med_c00059{transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);}
.m48_c00059{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.meb_c00059{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m2_c00059{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mb1_c00059{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m1_c00059{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.me2_c00059{transform:matrix(0.486555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486555,0.000000,0.000000,0.250000,0,0);}
.m9_c00059{transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);}
.mf6_c00059{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m40_c00059{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m84_c00059{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.me3_c00059{transform:matrix(0.493277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493277,0.000000,0.000000,0.250000,0,0);}
.m4f_c00059{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m57_c00059{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.mc4_c00059{transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);}
.m7f_c00059{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);}
.m97_c00059{transform:matrix(0.503711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503711,0.000000,0.000000,0.250000,0,0);}
.m83_c00059{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m10_c00059{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.ma0_c00059{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.mb_c00059{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mca_c00059{transform:matrix(0.510204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510204,0.000000,0.000000,0.250000,0,0);}
.m5c_c00059{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.ma3_c00059{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m62_c00059{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mdf_c00059{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mab_c00059{transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);}
.m46_c00059{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m7c_c00059{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m28_c00059{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m12_c00059{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m54_c00059{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m7b_c00059{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.m45_c00059{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m63_c00059{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mbf_c00059{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m69_c00059{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m5f_c00059{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.me1_c00059{transform:matrix(0.527829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527829,0.000000,0.000000,0.250000,0,0);}
.m16_c00059{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.mac_c00059{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.maf_c00059{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.mb4_c00059{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mef_c00059{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.md_c00059{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m70_c00059{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m20_c00059{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m5a_c00059{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.md0_c00059{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m8_c00059{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m6b_c00059{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m99_c00059{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mc_c00059{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mcb_c00059{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m4e_c00059{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m75_c00059{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mbd_c00059{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m90_c00059{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m35_c00059{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.ma4_c00059{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mb6_c00059{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m78_c00059{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m7a_c00059{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.mb2_c00059{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mf2_c00059{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m89_c00059{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m25_c00059{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m6e_c00059{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m94_c00059{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m68_c00059{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m5e_c00059{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m3b_c00059{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m23_c00059{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m96_c00059{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m82_c00059{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.md4_c00059{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m88_c00059{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m3c_c00059{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m34_c00059{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m6f_c00059{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.ma8_c00059{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m37_c00059{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.mb5_c00059{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m30_c00059{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.mbe_c00059{transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);}
.m1b_c00059{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.md3_c00059{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mbc_c00059{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m14_c00059{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m6c_c00059{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m5d_c00059{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m32_c00059{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mfb_c00059{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m50_c00059{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.mcd_c00059{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m72_c00059{transform:matrix(0.584025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584025,0.000000,0.000000,0.250000,0,0);}
.m15_c00059{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mc0_c00059{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m42_c00059{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m73_c00059{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m19_c00059{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mdc_c00059{transform:matrix(0.601763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601763,0.000000,0.000000,0.250000,0,0);}
.m66_c00059{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.ma6_c00059{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.m43_c00059{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m2a_c00059{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m3e_c00059{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mfa_c00059{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.m5_c00059{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m4b_c00059{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m8c_c00059{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m2b_c00059{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m56_c00059{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);}
.m7d_c00059{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m1a_c00059{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.m52_c00059{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m4c_c00059{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m0_c00059{transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);}
.ma1_c00059{transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);}
.me7_c00059{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);}
.maa_c00059{transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);}
.m47_c00059{transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);}
.m26_c00059{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m1e_c00059{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m3a_c00059{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mda_c00059{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.mf5_c00059{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.mb9_c00059{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m29_c00059{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.me0_c00059{transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);}
.m13_c00059{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m2e_c00059{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m76_c00059{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m8e_c00059{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m67_c00059{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.mae_c00059{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m4a_c00059{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.mbb_c00059{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m9d_c00059{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m1f_c00059{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m95_c00059{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m21_c00059{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m24_c00059{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m5b_c00059{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m8b_c00059{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.mba_c00059{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m8f_c00059{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m87_c00059{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m3d_c00059{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m4_c00059{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m49_c00059{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.ma2_c00059{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.mf9_c00059{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m55_c00059{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-16.889280px;}
.ws1_c00059{word-spacing:-4.343067px;}
.ws2_c00059{word-spacing:0.000000px;}
._0_c00059{width:6.537379px;}
.fc0_c00059{color:transparent;}
.fs7_c00059{font-size:3.420000px;}
.fs2_c00059{font-size:18.720000px;}
.fs0_c00059{font-size:20.400000px;}
.fs4_c00059{font-size:25.500000px;}
.fs1_c00059{font-size:28.920000px;}
.fs6_c00059{font-size:32.340000px;}
.fs3_c00059{font-size:35.700000px;}
.fs5_c00059{font-size:39.120000px;}
.y0_c00059{bottom:0.000000px;}
.yce_c00059{bottom:255.405000px;}
.yc9_c00059{bottom:272.745000px;}
.ycc_c00059{bottom:274.245000px;}
.ycd_c00059{bottom:275.970000px;}
.ycb_c00059{bottom:276.405000px;}
.yca_c00059{bottom:276.420000px;}
.yc8_c00059{bottom:299.970000px;}
.yc4_c00059{bottom:300.405000px;}
.yc5_c00059{bottom:300.825000px;}
.yc7_c00059{bottom:302.130000px;}
.yc6_c00059{bottom:302.970000px;}
.yc0_c00059{bottom:320.325000px;}
.yc2_c00059{bottom:320.550000px;}
.yc1_c00059{bottom:321.405000px;}
.yc3_c00059{bottom:323.130000px;}
.ybf_c00059{bottom:323.550000px;}
.ybe_c00059{bottom:347.745000px;}
.ybd_c00059{bottom:348.825000px;}
.yb6_c00059{bottom:391.680000px;}
.yba_c00059{bottom:392.325000px;}
.ybc_c00059{bottom:392.550000px;}
.yb8_c00059{bottom:392.745000px;}
.yb9_c00059{bottom:393.630000px;}
.yb7_c00059{bottom:394.905000px;}
.ybb_c00059{bottom:395.970000px;}
.yb5_c00059{bottom:410.745000px;}
.yb4_c00059{bottom:412.245000px;}
.yb0_c00059{bottom:412.905000px;}
.yb2_c00059{bottom:413.130000px;}
.yb1_c00059{bottom:413.970000px;}
.yb3_c00059{bottom:414.405000px;}
.yaf_c00059{bottom:431.325000px;}
.yad_c00059{bottom:431.745000px;}
.yab_c00059{bottom:432.405000px;}
.yac_c00059{bottom:433.470000px;}
.yae_c00059{bottom:433.905000px;}
.ya8_c00059{bottom:451.245000px;}
.yaa_c00059{bottom:452.325000px;}
.ya7_c00059{bottom:453.405000px;}
.ya9_c00059{bottom:453.630000px;}
.ya1_c00059{bottom:470.745000px;}
.ya2_c00059{bottom:472.245000px;}
.ya6_c00059{bottom:472.905000px;}
.ya5_c00059{bottom:473.130000px;}
.ya3_c00059{bottom:473.325000px;}
.ya4_c00059{bottom:473.970000px;}
.y9b_c00059{bottom:490.245000px;}
.y9f_c00059{bottom:490.470000px;}
.y9e_c00059{bottom:491.745000px;}
.y9a_c00059{bottom:492.405000px;}
.ya0_c00059{bottom:492.630000px;}
.y9d_c00059{bottom:492.825000px;}
.y9c_c00059{bottom:493.470000px;}
.y95_c00059{bottom:509.745000px;}
.y97_c00059{bottom:511.245000px;}
.y99_c00059{bottom:511.470000px;}
.y93_c00059{bottom:511.905000px;}
.y98_c00059{bottom:512.130000px;}
.y94_c00059{bottom:512.970000px;}
.y96_c00059{bottom:513.405000px;}
.y8f_c00059{bottom:528.405000px;}
.y92_c00059{bottom:530.745000px;}
.y91_c00059{bottom:531.630000px;}
.y90_c00059{bottom:532.905000px;}
.y8d_c00059{bottom:548.970000px;}
.y8c_c00059{bottom:550.245000px;}
.y8b_c00059{bottom:552.405000px;}
.y8e_c00059{bottom:553.470000px;}
.y87_c00059{bottom:569.745000px;}
.y8a_c00059{bottom:570.630000px;}
.y89_c00059{bottom:570.825000px;}
.y88_c00059{bottom:571.905000px;}
.y82_c00059{bottom:586.905000px;}
.y86_c00059{bottom:588.180000px;}
.y85_c00059{bottom:589.245000px;}
.y84_c00059{bottom:590.130000px;}
.y83_c00059{bottom:591.405000px;}
.y7f_c00059{bottom:607.905000px;}
.y7e_c00059{bottom:608.745000px;}
.y81_c00059{bottom:609.825000px;}
.y7d_c00059{bottom:610.905000px;}
.y80_c00059{bottom:611.130000px;}
.y79_c00059{bottom:628.245000px;}
.y78_c00059{bottom:629.130000px;}
.y7a_c00059{bottom:630.405000px;}
.y7b_c00059{bottom:630.630000px;}
.y7c_c00059{bottom:631.470000px;}
.y77_c00059{bottom:647.325000px;}
.y76_c00059{bottom:647.745000px;}
.y73_c00059{bottom:649.905000px;}
.y75_c00059{bottom:650.130000px;}
.y74_c00059{bottom:650.970000px;}
.y6f_c00059{bottom:666.405000px;}
.y71_c00059{bottom:667.245000px;}
.y70_c00059{bottom:668.745000px;}
.y6c_c00059{bottom:669.405000px;}
.y72_c00059{bottom:669.630000px;}
.y6d_c00059{bottom:669.825000px;}
.y6e_c00059{bottom:670.905000px;}
.y6a_c00059{bottom:688.245000px;}
.y6b_c00059{bottom:689.130000px;}
.y68_c00059{bottom:689.325000px;}
.y69_c00059{bottom:690.405000px;}
.y65_c00059{bottom:707.325000px;}
.y64_c00059{bottom:707.745000px;}
.y66_c00059{bottom:708.630000px;}
.y67_c00059{bottom:709.905000px;}
.y61_c00059{bottom:724.905000px;}
.y62_c00059{bottom:727.245000px;}
.y5f_c00059{bottom:727.905000px;}
.y5e_c00059{bottom:728.130000px;}
.y63_c00059{bottom:728.970000px;}
.y60_c00059{bottom:729.405000px;}
.y5c_c00059{bottom:746.745000px;}
.y5b_c00059{bottom:747.825000px;}
.y5a_c00059{bottom:748.470000px;}
.y59_c00059{bottom:748.905000px;}
.y5d_c00059{bottom:749.130000px;}
.y58_c00059{bottom:765.405000px;}
.y55_c00059{bottom:766.245000px;}
.y56_c00059{bottom:767.325000px;}
.y54_c00059{bottom:768.405000px;}
.y57_c00059{bottom:768.630000px;}
.y53_c00059{bottom:769.470000px;}
.y52_c00059{bottom:785.745000px;}
.y4f_c00059{bottom:787.905000px;}
.y50_c00059{bottom:788.130000px;}
.y51_c00059{bottom:788.970000px;}
.y4e_c00059{bottom:804.405000px;}
.y4c_c00059{bottom:806.745000px;}
.y4a_c00059{bottom:807.405000px;}
.y4d_c00059{bottom:807.630000px;}
.y4b_c00059{bottom:808.905000px;}
.y49_c00059{bottom:826.245000px;}
.y45_c00059{bottom:826.905000px;}
.y48_c00059{bottom:827.130000px;}
.y47_c00059{bottom:827.970000px;}
.y46_c00059{bottom:828.405000px;}
.y44_c00059{bottom:843.405000px;}
.y43_c00059{bottom:845.745000px;}
.y41_c00059{bottom:846.630000px;}
.y42_c00059{bottom:847.470000px;}
.y3f_c00059{bottom:847.905000px;}
.y40_c00059{bottom:848.970000px;}
.y3d_c00059{bottom:862.905000px;}
.y3c_c00059{bottom:865.245000px;}
.y3e_c00059{bottom:866.130000px;}
.y3b_c00059{bottom:867.405000px;}
.y39_c00059{bottom:884.745000px;}
.y3a_c00059{bottom:885.630000px;}
.y37_c00059{bottom:886.905000px;}
.y38_c00059{bottom:886.920000px;}
.y33_c00059{bottom:903.405000px;}
.y36_c00059{bottom:904.470000px;}
.y35_c00059{bottom:904.905000px;}
.y31_c00059{bottom:905.130000px;}
.y32_c00059{bottom:905.745000px;}
.y34_c00059{bottom:907.905000px;}
.y2b_c00059{bottom:922.905000px;}
.y2e_c00059{bottom:923.970000px;}
.y2a_c00059{bottom:924.825000px;}
.y2f_c00059{bottom:925.245000px;}
.y30_c00059{bottom:925.470000px;}
.y2c_c00059{bottom:926.130000px;}
.y29_c00059{bottom:926.970000px;}
.y2d_c00059{bottom:927.405000px;}
.y28_c00059{bottom:942.405000px;}
.y24_c00059{bottom:943.245000px;}
.y27_c00059{bottom:943.905000px;}
.y23_c00059{bottom:944.325000px;}
.y26_c00059{bottom:944.745000px;}
.y20_c00059{bottom:945.405000px;}
.y21_c00059{bottom:945.630000px;}
.y22_c00059{bottom:946.470000px;}
.y25_c00059{bottom:946.905000px;}
.y1d_c00059{bottom:964.245000px;}
.y1b_c00059{bottom:964.905000px;}
.y1e_c00059{bottom:965.325000px;}
.y1f_c00059{bottom:965.970000px;}
.y1c_c00059{bottom:966.405000px;}
.y1a_c00059{bottom:983.745000px;}
.y19_c00059{bottom:985.905000px;}
.y17_c00059{bottom:1001.970000px;}
.y15_c00059{bottom:1002.825000px;}
.y14_c00059{bottom:1003.245000px;}
.y18_c00059{bottom:1004.130000px;}
.y13_c00059{bottom:1005.405000px;}
.y16_c00059{bottom:1006.470000px;}
.yf_c00059{bottom:1022.325000px;}
.y10_c00059{bottom:1022.745000px;}
.yc_c00059{bottom:1023.405000px;}
.y11_c00059{bottom:1023.630000px;}
.y12_c00059{bottom:1024.470000px;}
.yd_c00059{bottom:1024.905000px;}
.ye_c00059{bottom:1025.970000px;}
.y7_c00059{bottom:1040.745000px;}
.yb_c00059{bottom:1041.180000px;}
.y8_c00059{bottom:1042.245000px;}
.ya_c00059{bottom:1042.470000px;}
.y9_c00059{bottom:1044.405000px;}
.y6_c00059{bottom:1060.905000px;}
.y5_c00059{bottom:1061.745000px;}
.y3_c00059{bottom:1063.905000px;}
.y4_c00059{bottom:1064.130000px;}
.y2_c00059{bottom:1099.905000px;}
.y1_c00059{bottom:1102.050000px;}
.h8_c00059{height:4.206533px;}
.h3_c00059{height:23.025234px;}
.h1_c00059{height:25.091602px;}
.h5_c00059{height:31.364502px;}
.h2_c00059{height:35.571035px;}
.h7_c00059{height:39.777568px;}
.h4_c00059{height:43.910303px;}
.h6_c00059{height:48.116836px;}
.h0_c00059{height:1335.000000px;}
.w0_c00059{width:880.500000px;}
.x0_c00059{left:0.000000px;}
.x2_c00059{left:151.080000px;}
.xf_c00059{left:153.000000px;}
.xf8_c00059{left:164.580000px;}
.xfb_c00059{left:166.920000px;}
.x36_c00059{left:168.000000px;}
.x3_c00059{left:172.920000px;}
.x54_c00059{left:179.775000px;}
.x6c_c00059{left:181.500000px;}
.xcc_c00059{left:183.000000px;}
.xbf_c00059{left:184.500000px;}
.x1c_c00059{left:186.420000px;}
.xe5_c00059{left:187.500000px;}
.x4c_c00059{left:189.000000px;}
.xdb_c00059{left:190.500000px;}
.x91_c00059{left:193.500000px;}
.x4_c00059{left:195.000000px;}
.x42_c00059{left:196.500000px;}
.x6d_c00059{left:201.000000px;}
.x37_c00059{left:202.080000px;}
.xb5_c00059{left:205.500000px;}
.x63_c00059{left:206.580000px;}
.x32_c00059{left:208.920000px;}
.x10_c00059{left:210.000000px;}
.x55_c00059{left:211.080000px;}
.x1d_c00059{left:213.000000px;}
.x8d_c00059{left:214.500000px;}
.xd6_c00059{left:217.500000px;}
.x43_c00059{left:219.000000px;}
.x79_c00059{left:220.080000px;}
.xcf_c00059{left:223.500000px;}
.xb6_c00059{left:226.920000px;}
.x4d_c00059{left:228.000000px;}
.xd4_c00059{left:229.500000px;}
.x5_c00059{left:231.000000px;}
.x64_c00059{left:232.500000px;}
.x87_c00059{left:234.420000px;}
.xb0_c00059{left:237.000000px;}
.x5a_c00059{left:238.500000px;}
.x56_c00059{left:239.580000px;}
.xc3_c00059{left:241.080000px;}
.xa7_c00059{left:243.000000px;}
.x38_c00059{left:246.420000px;}
.x6e_c00059{left:247.920000px;}
.x4e_c00059{left:249.000000px;}
.xf2_c00059{left:250.500000px;}
.x6_c00059{left:251.580000px;}
.x1e_c00059{left:253.080000px;}
.x9d_c00059{left:256.500000px;}
.x5b_c00059{left:259.500000px;}
.x2a_c00059{left:262.500000px;}
.x11_c00059{left:265.500000px;}
.x57_c00059{left:269.580000px;}
.x1f_c00059{left:271.920000px;}
.xe0_c00059{left:273.000000px;}
.x6f_c00059{left:274.500000px;}
.xc7_c00059{left:277.920000px;}
.x5c_c00059{left:279.000000px;}
.xb1_c00059{left:280.500000px;}
.xf3_c00059{left:283.080000px;}
.x92_c00059{left:285.000000px;}
.x4f_c00059{left:286.500000px;}
.x44_c00059{left:288.000000px;}
.x58_c00059{left:291.000000px;}
.x7a_c00059{left:292.920000px;}
.x9e_c00059{left:294.420000px;}
.x20_c00059{left:297.000000px;}
.x12_c00059{left:299.580000px;}
.xf9_c00059{left:301.080000px;}
.x93_c00059{left:305.580000px;}
.x82_c00059{left:307.500000px;}
.x50_c00059{left:309.420000px;}
.x65_c00059{left:310.500000px;}
.xe1_c00059{left:311.580000px;}
.xa8_c00059{left:313.920000px;}
.x70_c00059{left:315.000000px;}
.x45_c00059{left:316.500000px;}
.xe6_c00059{left:319.500000px;}
.x9f_c00059{left:321.420000px;}
.x59_c00059{left:326.580000px;}
.xe2_c00059{left:328.920000px;}
.xec_c00059{left:330.000000px;}
.x2b_c00059{left:331.080000px;}
.xb7_c00059{left:333.420000px;}
.x33_c00059{left:336.000000px;}
.x39_c00059{left:337.500000px;}
.x66_c00059{left:339.420000px;}
.x7_c00059{left:342.000000px;}
.x46_c00059{left:343.920000px;}
.x94_c00059{left:345.000000px;}
.x83_c00059{left:346.500000px;}
.xa0_c00059{left:349.500000px;}
.xc0_c00059{left:351.000000px;}
.x21_c00059{left:352.500000px;}
.xe3_c00059{left:354.000000px;}
.x34_c00059{left:355.920000px;}
.xcd_c00059{left:357.000000px;}
.xbc_c00059{left:360.000000px;}
.x71_c00059{left:361.500000px;}
.x88_c00059{left:363.420000px;}
.x2c_c00059{left:364.500000px;}
.x7b_c00059{left:366.645000px;}
.x13_c00059{left:369.000000px;}
.xb8_c00059{left:370.500000px;}
.xf4_c00059{left:372.000000px;}
.xe7_c00059{left:374.580000px;}
.xa9_c00059{left:376.500000px;}
.xc8_c00059{left:379.500000px;}
.xed_c00059{left:380.580000px;}
.xfc_c00059{left:384.000000px;}
.x14_c00059{left:385.080000px;}
.x5d_c00059{left:388.500000px;}
.x35_c00059{left:390.000000px;}
.x95_c00059{left:391.920000px;}
.x89_c00059{left:393.000000px;}
.x1_c00059{left:396.000000px;}
.xc9_c00059{left:397.080000px;}
.xa1_c00059{left:399.000000px;}
.x3a_c00059{left:400.500000px;}
.x2d_c00059{left:402.000000px;}
.x22_c00059{left:403.500000px;}
.xd7_c00059{left:408.000000px;}
.xc4_c00059{left:409.080000px;}
.x47_c00059{left:411.000000px;}
.x8_c00059{left:415.500000px;}
.x3b_c00059{left:421.920000px;}
.x23_c00059{left:423.000000px;}
.x8e_c00059{left:425.580000px;}
.xaa_c00059{left:427.920000px;}
.xf0_c00059{left:429.000000px;}
.x96_c00059{left:430.500000px;}
.xd0_c00059{left:432.420000px;}
.x24_c00059{left:435.000000px;}
.x51_c00059{left:436.500000px;}
.x2e_c00059{left:439.500000px;}
.x72_c00059{left:443.580000px;}
.x9_c00059{left:449.580000px;}
.x3c_c00059{left:451.080000px;}
.x67_c00059{left:454.080000px;}
.x15_c00059{left:456.000000px;}
.xa2_c00059{left:457.920000px;}
.x97_c00059{left:459.000000px;}
.xfd_c00059{left:462.645000px;}
.xbd_c00059{left:463.920000px;}
.x73_c00059{left:465.000000px;}
.xca_c00059{left:466.500000px;}
.xdc_c00059{left:469.080000px;}
.xea_c00059{left:473.580000px;}
.x52_c00059{left:475.500000px;}
.xb2_c00059{left:477.000000px;}
.x25_c00059{left:478.500000px;}
.xd5_c00059{left:480.000000px;}
.xc5_c00059{left:481.920000px;}
.x7c_c00059{left:484.500000px;}
.xc1_c00059{left:486.000000px;}
.x2f_c00059{left:487.500000px;}
.xdd_c00059{left:488.580000px;}
.xd8_c00059{left:490.080000px;}
.xeb_c00059{left:495.420000px;}
.x5e_c00059{left:497.580000px;}
.x16_c00059{left:499.500000px;}
.xf5_c00059{left:500.580000px;}
.x98_c00059{left:504.000000px;}
.x26_c00059{left:505.500000px;}
.x3d_c00059{left:507.420000px;}
.xab_c00059{left:508.500000px;}
.xc6_c00059{left:510.000000px;}
.x17_c00059{left:512.580000px;}
.xa3_c00059{left:514.920000px;}
.x7d_c00059{left:516.000000px;}
.xfa_c00059{left:517.080000px;}
.x48_c00059{left:519.000000px;}
.xa_c00059{left:522.000000px;}
.xb9_c00059{left:523.920000px;}
.xd1_c00059{left:525.000000px;}
.x68_c00059{left:526.920000px;}
.x8a_c00059{left:532.500000px;}
.xd9_c00059{left:535.500000px;}
.x84_c00059{left:537.420000px;}
.xfe_c00059{left:541.500000px;}
.x53_c00059{left:542.580000px;}
.x74_c00059{left:544.500000px;}
.xac_c00059{left:546.645000px;}
.x69_c00059{left:550.080000px;}
.x8b_c00059{left:551.580000px;}
.x18_c00059{left:553.500000px;}
.xf6_c00059{left:555.420000px;}
.x49_c00059{left:557.580000px;}
.x27_c00059{left:562.080000px;}
.x5f_c00059{left:567.420000px;}
.xb3_c00059{left:568.920000px;}
.x99_c00059{left:572.580000px;}
.x3e_c00059{left:574.500000px;}
.xe8_c00059{left:576.000000px;}
.x8f_c00059{left:579.000000px;}
.x6a_c00059{left:580.500000px;}
.x7e_c00059{left:582.420000px;}
.xa4_c00059{left:585.420000px;}
.x4a_c00059{left:588.000000px;}
.x19_c00059{left:591.000000px;}
.x28_c00059{left:592.500000px;}
.x60_c00059{left:593.580000px;}
.xda_c00059{left:596.580000px;}
.xee_c00059{left:598.080000px;}
.xf1_c00059{left:599.775000px;}
.xf7_c00059{left:603.000000px;}
.x9a_c00059{left:604.920000px;}
.x75_c00059{left:607.500000px;}
.xbe_c00059{left:612.000000px;}
.xc2_c00059{left:613.500000px;}
.xb_c00059{left:615.000000px;}
.xef_c00059{left:616.080000px;}
.x7f_c00059{left:618.420000px;}
.x90_c00059{left:621.000000px;}
.xd2_c00059{left:624.420000px;}
.xba_c00059{left:625.500000px;}
.x76_c00059{left:627.420000px;}
.xcb_c00059{left:628.920000px;}
.xce_c00059{left:630.000000px;}
.xc_c00059{left:632.580000px;}
.x9b_c00059{left:634.500000px;}
.x30_c00059{left:636.000000px;}
.xad_c00059{left:637.080000px;}
.x61_c00059{left:640.500000px;}
.xe4_c00059{left:642.420000px;}
.x80_c00059{left:646.080000px;}
.x3f_c00059{left:648.000000px;}
.xbb_c00059{left:649.500000px;}
.xa5_c00059{left:650.580000px;}
.x1a_c00059{left:652.080000px;}
.xd3_c00059{left:654.000000px;}
.x77_c00059{left:655.500000px;}
.xe9_c00059{left:661.500000px;}
.x31_c00059{left:664.500000px;}
.xde_c00059{left:666.420000px;}
.x4b_c00059{left:667.500000px;}
.x40_c00059{left:669.420000px;}
.xa6_c00059{left:670.920000px;}
.xae_c00059{left:672.000000px;}
.x8c_c00059{left:675.000000px;}
.x9c_c00059{left:676.920000px;}
.x85_c00059{left:678.000000px;}
.xff_c00059{left:679.275000px;}
.x62_c00059{left:684.000000px;}
.xd_c00059{left:687.000000px;}
.x6b_c00059{left:688.500000px;}
.xaf_c00059{left:691.500000px;}
.x81_c00059{left:694.500000px;}
.x29_c00059{left:697.500000px;}
.x41_c00059{left:699.420000px;}
.x1b_c00059{left:700.500000px;}
.xb4_c00059{left:702.000000px;}
.x78_c00059{left:703.080000px;}
.xe_c00059{left:708.420000px;}
.x86_c00059{left:713.580000px;}
.x100_c00059{left:717.000000px;}
.xdf_c00059{left:720.000000px;}
@media print{
.v0_c00059{vertical-align:0.000000pt;}
.ls0_c00059{letter-spacing:0.000000pt;}
.ws0_c00059{word-spacing:-15.012693pt;}
.ws1_c00059{word-spacing:-3.860504pt;}
.ws2_c00059{word-spacing:0.000000pt;}
._0_c00059{width:5.811004pt;}
.fs7_c00059{font-size:3.040000pt;}
.fs2_c00059{font-size:16.640000pt;}
.fs0_c00059{font-size:18.133333pt;}
.fs4_c00059{font-size:22.666667pt;}
.fs1_c00059{font-size:25.706667pt;}
.fs6_c00059{font-size:28.746667pt;}
.fs3_c00059{font-size:31.733333pt;}
.fs5_c00059{font-size:34.773333pt;}
.y0_c00059{bottom:0.000000pt;}
.yce_c00059{bottom:227.026667pt;}
.yc9_c00059{bottom:242.440000pt;}
.ycc_c00059{bottom:243.773333pt;}
.ycd_c00059{bottom:245.306667pt;}
.ycb_c00059{bottom:245.693333pt;}
.yca_c00059{bottom:245.706667pt;}
.yc8_c00059{bottom:266.640000pt;}
.yc4_c00059{bottom:267.026667pt;}
.yc5_c00059{bottom:267.400000pt;}
.yc7_c00059{bottom:268.560000pt;}
.yc6_c00059{bottom:269.306667pt;}
.yc0_c00059{bottom:284.733333pt;}
.yc2_c00059{bottom:284.933333pt;}
.yc1_c00059{bottom:285.693333pt;}
.yc3_c00059{bottom:287.226667pt;}
.ybf_c00059{bottom:287.600000pt;}
.ybe_c00059{bottom:309.106667pt;}
.ybd_c00059{bottom:310.066667pt;}
.yb6_c00059{bottom:348.160000pt;}
.yba_c00059{bottom:348.733333pt;}
.ybc_c00059{bottom:348.933333pt;}
.yb8_c00059{bottom:349.106667pt;}
.yb9_c00059{bottom:349.893333pt;}
.yb7_c00059{bottom:351.026667pt;}
.ybb_c00059{bottom:351.973333pt;}
.yb5_c00059{bottom:365.106667pt;}
.yb4_c00059{bottom:366.440000pt;}
.yb0_c00059{bottom:367.026667pt;}
.yb2_c00059{bottom:367.226667pt;}
.yb1_c00059{bottom:367.973333pt;}
.yb3_c00059{bottom:368.360000pt;}
.yaf_c00059{bottom:383.400000pt;}
.yad_c00059{bottom:383.773333pt;}
.yab_c00059{bottom:384.360000pt;}
.yac_c00059{bottom:385.306667pt;}
.yae_c00059{bottom:385.693333pt;}
.ya8_c00059{bottom:401.106667pt;}
.yaa_c00059{bottom:402.066667pt;}
.ya7_c00059{bottom:403.026667pt;}
.ya9_c00059{bottom:403.226667pt;}
.ya1_c00059{bottom:418.440000pt;}
.ya2_c00059{bottom:419.773333pt;}
.ya6_c00059{bottom:420.360000pt;}
.ya5_c00059{bottom:420.560000pt;}
.ya3_c00059{bottom:420.733333pt;}
.ya4_c00059{bottom:421.306667pt;}
.y9b_c00059{bottom:435.773333pt;}
.y9f_c00059{bottom:435.973333pt;}
.y9e_c00059{bottom:437.106667pt;}
.y9a_c00059{bottom:437.693333pt;}
.ya0_c00059{bottom:437.893333pt;}
.y9d_c00059{bottom:438.066667pt;}
.y9c_c00059{bottom:438.640000pt;}
.y95_c00059{bottom:453.106667pt;}
.y97_c00059{bottom:454.440000pt;}
.y99_c00059{bottom:454.640000pt;}
.y93_c00059{bottom:455.026667pt;}
.y98_c00059{bottom:455.226667pt;}
.y94_c00059{bottom:455.973333pt;}
.y96_c00059{bottom:456.360000pt;}
.y8f_c00059{bottom:469.693333pt;}
.y92_c00059{bottom:471.773333pt;}
.y91_c00059{bottom:472.560000pt;}
.y90_c00059{bottom:473.693333pt;}
.y8d_c00059{bottom:487.973333pt;}
.y8c_c00059{bottom:489.106667pt;}
.y8b_c00059{bottom:491.026667pt;}
.y8e_c00059{bottom:491.973333pt;}
.y87_c00059{bottom:506.440000pt;}
.y8a_c00059{bottom:507.226667pt;}
.y89_c00059{bottom:507.400000pt;}
.y88_c00059{bottom:508.360000pt;}
.y82_c00059{bottom:521.693333pt;}
.y86_c00059{bottom:522.826667pt;}
.y85_c00059{bottom:523.773333pt;}
.y84_c00059{bottom:524.560000pt;}
.y83_c00059{bottom:525.693333pt;}
.y7f_c00059{bottom:540.360000pt;}
.y7e_c00059{bottom:541.106667pt;}
.y81_c00059{bottom:542.066667pt;}
.y7d_c00059{bottom:543.026667pt;}
.y80_c00059{bottom:543.226667pt;}
.y79_c00059{bottom:558.440000pt;}
.y78_c00059{bottom:559.226667pt;}
.y7a_c00059{bottom:560.360000pt;}
.y7b_c00059{bottom:560.560000pt;}
.y7c_c00059{bottom:561.306667pt;}
.y77_c00059{bottom:575.400000pt;}
.y76_c00059{bottom:575.773333pt;}
.y73_c00059{bottom:577.693333pt;}
.y75_c00059{bottom:577.893333pt;}
.y74_c00059{bottom:578.640000pt;}
.y6f_c00059{bottom:592.360000pt;}
.y71_c00059{bottom:593.106667pt;}
.y70_c00059{bottom:594.440000pt;}
.y6c_c00059{bottom:595.026667pt;}
.y72_c00059{bottom:595.226667pt;}
.y6d_c00059{bottom:595.400000pt;}
.y6e_c00059{bottom:596.360000pt;}
.y6a_c00059{bottom:611.773333pt;}
.y6b_c00059{bottom:612.560000pt;}
.y68_c00059{bottom:612.733333pt;}
.y69_c00059{bottom:613.693333pt;}
.y65_c00059{bottom:628.733333pt;}
.y64_c00059{bottom:629.106667pt;}
.y66_c00059{bottom:629.893333pt;}
.y67_c00059{bottom:631.026667pt;}
.y61_c00059{bottom:644.360000pt;}
.y62_c00059{bottom:646.440000pt;}
.y5f_c00059{bottom:647.026667pt;}
.y5e_c00059{bottom:647.226667pt;}
.y63_c00059{bottom:647.973333pt;}
.y60_c00059{bottom:648.360000pt;}
.y5c_c00059{bottom:663.773333pt;}
.y5b_c00059{bottom:664.733333pt;}
.y5a_c00059{bottom:665.306667pt;}
.y59_c00059{bottom:665.693333pt;}
.y5d_c00059{bottom:665.893333pt;}
.y58_c00059{bottom:680.360000pt;}
.y55_c00059{bottom:681.106667pt;}
.y56_c00059{bottom:682.066667pt;}
.y54_c00059{bottom:683.026667pt;}
.y57_c00059{bottom:683.226667pt;}
.y53_c00059{bottom:683.973333pt;}
.y52_c00059{bottom:698.440000pt;}
.y4f_c00059{bottom:700.360000pt;}
.y50_c00059{bottom:700.560000pt;}
.y51_c00059{bottom:701.306667pt;}
.y4e_c00059{bottom:715.026667pt;}
.y4c_c00059{bottom:717.106667pt;}
.y4a_c00059{bottom:717.693333pt;}
.y4d_c00059{bottom:717.893333pt;}
.y4b_c00059{bottom:719.026667pt;}
.y49_c00059{bottom:734.440000pt;}
.y45_c00059{bottom:735.026667pt;}
.y48_c00059{bottom:735.226667pt;}
.y47_c00059{bottom:735.973333pt;}
.y46_c00059{bottom:736.360000pt;}
.y44_c00059{bottom:749.693333pt;}
.y43_c00059{bottom:751.773333pt;}
.y41_c00059{bottom:752.560000pt;}
.y42_c00059{bottom:753.306667pt;}
.y3f_c00059{bottom:753.693333pt;}
.y40_c00059{bottom:754.640000pt;}
.y3d_c00059{bottom:767.026667pt;}
.y3c_c00059{bottom:769.106667pt;}
.y3e_c00059{bottom:769.893333pt;}
.y3b_c00059{bottom:771.026667pt;}
.y39_c00059{bottom:786.440000pt;}
.y3a_c00059{bottom:787.226667pt;}
.y37_c00059{bottom:788.360000pt;}
.y38_c00059{bottom:788.373333pt;}
.y33_c00059{bottom:803.026667pt;}
.y36_c00059{bottom:803.973333pt;}
.y35_c00059{bottom:804.360000pt;}
.y31_c00059{bottom:804.560000pt;}
.y32_c00059{bottom:805.106667pt;}
.y34_c00059{bottom:807.026667pt;}
.y2b_c00059{bottom:820.360000pt;}
.y2e_c00059{bottom:821.306667pt;}
.y2a_c00059{bottom:822.066667pt;}
.y2f_c00059{bottom:822.440000pt;}
.y30_c00059{bottom:822.640000pt;}
.y2c_c00059{bottom:823.226667pt;}
.y29_c00059{bottom:823.973333pt;}
.y2d_c00059{bottom:824.360000pt;}
.y28_c00059{bottom:837.693333pt;}
.y24_c00059{bottom:838.440000pt;}
.y27_c00059{bottom:839.026667pt;}
.y23_c00059{bottom:839.400000pt;}
.y26_c00059{bottom:839.773333pt;}
.y20_c00059{bottom:840.360000pt;}
.y21_c00059{bottom:840.560000pt;}
.y22_c00059{bottom:841.306667pt;}
.y25_c00059{bottom:841.693333pt;}
.y1d_c00059{bottom:857.106667pt;}
.y1b_c00059{bottom:857.693333pt;}
.y1e_c00059{bottom:858.066667pt;}
.y1f_c00059{bottom:858.640000pt;}
.y1c_c00059{bottom:859.026667pt;}
.y1a_c00059{bottom:874.440000pt;}
.y19_c00059{bottom:876.360000pt;}
.y17_c00059{bottom:890.640000pt;}
.y15_c00059{bottom:891.400000pt;}
.y14_c00059{bottom:891.773333pt;}
.y18_c00059{bottom:892.560000pt;}
.y13_c00059{bottom:893.693333pt;}
.y16_c00059{bottom:894.640000pt;}
.yf_c00059{bottom:908.733333pt;}
.y10_c00059{bottom:909.106667pt;}
.yc_c00059{bottom:909.693333pt;}
.y11_c00059{bottom:909.893333pt;}
.y12_c00059{bottom:910.640000pt;}
.yd_c00059{bottom:911.026667pt;}
.ye_c00059{bottom:911.973333pt;}
.y7_c00059{bottom:925.106667pt;}
.yb_c00059{bottom:925.493333pt;}
.y8_c00059{bottom:926.440000pt;}
.ya_c00059{bottom:926.640000pt;}
.y9_c00059{bottom:928.360000pt;}
.y6_c00059{bottom:943.026667pt;}
.y5_c00059{bottom:943.773333pt;}
.y3_c00059{bottom:945.693333pt;}
.y4_c00059{bottom:945.893333pt;}
.y2_c00059{bottom:977.693333pt;}
.y1_c00059{bottom:979.600000pt;}
.h8_c00059{height:3.739141pt;}
.h3_c00059{height:20.466875pt;}
.h1_c00059{height:22.303646pt;}
.h5_c00059{height:27.879557pt;}
.h2_c00059{height:31.618698pt;}
.h7_c00059{height:35.357839pt;}
.h4_c00059{height:39.031380pt;}
.h6_c00059{height:42.770521pt;}
.h0_c00059{height:1186.666667pt;}
.w0_c00059{width:782.666667pt;}
.x0_c00059{left:0.000000pt;}
.x2_c00059{left:134.293333pt;}
.xf_c00059{left:136.000000pt;}
.xf8_c00059{left:146.293333pt;}
.xfb_c00059{left:148.373333pt;}
.x36_c00059{left:149.333333pt;}
.x3_c00059{left:153.706667pt;}
.x54_c00059{left:159.800000pt;}
.x6c_c00059{left:161.333333pt;}
.xcc_c00059{left:162.666667pt;}
.xbf_c00059{left:164.000000pt;}
.x1c_c00059{left:165.706667pt;}
.xe5_c00059{left:166.666667pt;}
.x4c_c00059{left:168.000000pt;}
.xdb_c00059{left:169.333333pt;}
.x91_c00059{left:172.000000pt;}
.x4_c00059{left:173.333333pt;}
.x42_c00059{left:174.666667pt;}
.x6d_c00059{left:178.666667pt;}
.x37_c00059{left:179.626667pt;}
.xb5_c00059{left:182.666667pt;}
.x63_c00059{left:183.626667pt;}
.x32_c00059{left:185.706667pt;}
.x10_c00059{left:186.666667pt;}
.x55_c00059{left:187.626667pt;}
.x1d_c00059{left:189.333333pt;}
.x8d_c00059{left:190.666667pt;}
.xd6_c00059{left:193.333333pt;}
.x43_c00059{left:194.666667pt;}
.x79_c00059{left:195.626667pt;}
.xcf_c00059{left:198.666667pt;}
.xb6_c00059{left:201.706667pt;}
.x4d_c00059{left:202.666667pt;}
.xd4_c00059{left:204.000000pt;}
.x5_c00059{left:205.333333pt;}
.x64_c00059{left:206.666667pt;}
.x87_c00059{left:208.373333pt;}
.xb0_c00059{left:210.666667pt;}
.x5a_c00059{left:212.000000pt;}
.x56_c00059{left:212.960000pt;}
.xc3_c00059{left:214.293333pt;}
.xa7_c00059{left:216.000000pt;}
.x38_c00059{left:219.040000pt;}
.x6e_c00059{left:220.373333pt;}
.x4e_c00059{left:221.333333pt;}
.xf2_c00059{left:222.666667pt;}
.x6_c00059{left:223.626667pt;}
.x1e_c00059{left:224.960000pt;}
.x9d_c00059{left:228.000000pt;}
.x5b_c00059{left:230.666667pt;}
.x2a_c00059{left:233.333333pt;}
.x11_c00059{left:236.000000pt;}
.x57_c00059{left:239.626667pt;}
.x1f_c00059{left:241.706667pt;}
.xe0_c00059{left:242.666667pt;}
.x6f_c00059{left:244.000000pt;}
.xc7_c00059{left:247.040000pt;}
.x5c_c00059{left:248.000000pt;}
.xb1_c00059{left:249.333333pt;}
.xf3_c00059{left:251.626667pt;}
.x92_c00059{left:253.333333pt;}
.x4f_c00059{left:254.666667pt;}
.x44_c00059{left:256.000000pt;}
.x58_c00059{left:258.666667pt;}
.x7a_c00059{left:260.373333pt;}
.x9e_c00059{left:261.706667pt;}
.x20_c00059{left:264.000000pt;}
.x12_c00059{left:266.293333pt;}
.xf9_c00059{left:267.626667pt;}
.x93_c00059{left:271.626667pt;}
.x82_c00059{left:273.333333pt;}
.x50_c00059{left:275.040000pt;}
.x65_c00059{left:276.000000pt;}
.xe1_c00059{left:276.960000pt;}
.xa8_c00059{left:279.040000pt;}
.x70_c00059{left:280.000000pt;}
.x45_c00059{left:281.333333pt;}
.xe6_c00059{left:284.000000pt;}
.x9f_c00059{left:285.706667pt;}
.x59_c00059{left:290.293333pt;}
.xe2_c00059{left:292.373333pt;}
.xec_c00059{left:293.333333pt;}
.x2b_c00059{left:294.293333pt;}
.xb7_c00059{left:296.373333pt;}
.x33_c00059{left:298.666667pt;}
.x39_c00059{left:300.000000pt;}
.x66_c00059{left:301.706667pt;}
.x7_c00059{left:304.000000pt;}
.x46_c00059{left:305.706667pt;}
.x94_c00059{left:306.666667pt;}
.x83_c00059{left:308.000000pt;}
.xa0_c00059{left:310.666667pt;}
.xc0_c00059{left:312.000000pt;}
.x21_c00059{left:313.333333pt;}
.xe3_c00059{left:314.666667pt;}
.x34_c00059{left:316.373333pt;}
.xcd_c00059{left:317.333333pt;}
.xbc_c00059{left:320.000000pt;}
.x71_c00059{left:321.333333pt;}
.x88_c00059{left:323.040000pt;}
.x2c_c00059{left:324.000000pt;}
.x7b_c00059{left:325.906667pt;}
.x13_c00059{left:328.000000pt;}
.xb8_c00059{left:329.333333pt;}
.xf4_c00059{left:330.666667pt;}
.xe7_c00059{left:332.960000pt;}
.xa9_c00059{left:334.666667pt;}
.xc8_c00059{left:337.333333pt;}
.xed_c00059{left:338.293333pt;}
.xfc_c00059{left:341.333333pt;}
.x14_c00059{left:342.293333pt;}
.x5d_c00059{left:345.333333pt;}
.x35_c00059{left:346.666667pt;}
.x95_c00059{left:348.373333pt;}
.x89_c00059{left:349.333333pt;}
.x1_c00059{left:352.000000pt;}
.xc9_c00059{left:352.960000pt;}
.xa1_c00059{left:354.666667pt;}
.x3a_c00059{left:356.000000pt;}
.x2d_c00059{left:357.333333pt;}
.x22_c00059{left:358.666667pt;}
.xd7_c00059{left:362.666667pt;}
.xc4_c00059{left:363.626667pt;}
.x47_c00059{left:365.333333pt;}
.x8_c00059{left:369.333333pt;}
.x3b_c00059{left:375.040000pt;}
.x23_c00059{left:376.000000pt;}
.x8e_c00059{left:378.293333pt;}
.xaa_c00059{left:380.373333pt;}
.xf0_c00059{left:381.333333pt;}
.x96_c00059{left:382.666667pt;}
.xd0_c00059{left:384.373333pt;}
.x24_c00059{left:386.666667pt;}
.x51_c00059{left:388.000000pt;}
.x2e_c00059{left:390.666667pt;}
.x72_c00059{left:394.293333pt;}
.x9_c00059{left:399.626667pt;}
.x3c_c00059{left:400.960000pt;}
.x67_c00059{left:403.626667pt;}
.x15_c00059{left:405.333333pt;}
.xa2_c00059{left:407.040000pt;}
.x97_c00059{left:408.000000pt;}
.xfd_c00059{left:411.240000pt;}
.xbd_c00059{left:412.373333pt;}
.x73_c00059{left:413.333333pt;}
.xca_c00059{left:414.666667pt;}
.xdc_c00059{left:416.960000pt;}
.xea_c00059{left:420.960000pt;}
.x52_c00059{left:422.666667pt;}
.xb2_c00059{left:424.000000pt;}
.x25_c00059{left:425.333333pt;}
.xd5_c00059{left:426.666667pt;}
.xc5_c00059{left:428.373333pt;}
.x7c_c00059{left:430.666667pt;}
.xc1_c00059{left:432.000000pt;}
.x2f_c00059{left:433.333333pt;}
.xdd_c00059{left:434.293333pt;}
.xd8_c00059{left:435.626667pt;}
.xeb_c00059{left:440.373333pt;}
.x5e_c00059{left:442.293333pt;}
.x16_c00059{left:444.000000pt;}
.xf5_c00059{left:444.960000pt;}
.x98_c00059{left:448.000000pt;}
.x26_c00059{left:449.333333pt;}
.x3d_c00059{left:451.040000pt;}
.xab_c00059{left:452.000000pt;}
.xc6_c00059{left:453.333333pt;}
.x17_c00059{left:455.626667pt;}
.xa3_c00059{left:457.706667pt;}
.x7d_c00059{left:458.666667pt;}
.xfa_c00059{left:459.626667pt;}
.x48_c00059{left:461.333333pt;}
.xa_c00059{left:464.000000pt;}
.xb9_c00059{left:465.706667pt;}
.xd1_c00059{left:466.666667pt;}
.x68_c00059{left:468.373333pt;}
.x8a_c00059{left:473.333333pt;}
.xd9_c00059{left:476.000000pt;}
.x84_c00059{left:477.706667pt;}
.xfe_c00059{left:481.333333pt;}
.x53_c00059{left:482.293333pt;}
.x74_c00059{left:484.000000pt;}
.xac_c00059{left:485.906667pt;}
.x69_c00059{left:488.960000pt;}
.x8b_c00059{left:490.293333pt;}
.x18_c00059{left:492.000000pt;}
.xf6_c00059{left:493.706667pt;}
.x49_c00059{left:495.626667pt;}
.x27_c00059{left:499.626667pt;}
.x5f_c00059{left:504.373333pt;}
.xb3_c00059{left:505.706667pt;}
.x99_c00059{left:508.960000pt;}
.x3e_c00059{left:510.666667pt;}
.xe8_c00059{left:512.000000pt;}
.x8f_c00059{left:514.666667pt;}
.x6a_c00059{left:516.000000pt;}
.x7e_c00059{left:517.706667pt;}
.xa4_c00059{left:520.373333pt;}
.x4a_c00059{left:522.666667pt;}
.x19_c00059{left:525.333333pt;}
.x28_c00059{left:526.666667pt;}
.x60_c00059{left:527.626667pt;}
.xda_c00059{left:530.293333pt;}
.xee_c00059{left:531.626667pt;}
.xf1_c00059{left:533.133333pt;}
.xf7_c00059{left:536.000000pt;}
.x9a_c00059{left:537.706667pt;}
.x75_c00059{left:540.000000pt;}
.xbe_c00059{left:544.000000pt;}
.xc2_c00059{left:545.333333pt;}
.xb_c00059{left:546.666667pt;}
.xef_c00059{left:547.626667pt;}
.x7f_c00059{left:549.706667pt;}
.x90_c00059{left:552.000000pt;}
.xd2_c00059{left:555.040000pt;}
.xba_c00059{left:556.000000pt;}
.x76_c00059{left:557.706667pt;}
.xcb_c00059{left:559.040000pt;}
.xce_c00059{left:560.000000pt;}
.xc_c00059{left:562.293333pt;}
.x9b_c00059{left:564.000000pt;}
.x30_c00059{left:565.333333pt;}
.xad_c00059{left:566.293333pt;}
.x61_c00059{left:569.333333pt;}
.xe4_c00059{left:571.040000pt;}
.x80_c00059{left:574.293333pt;}
.x3f_c00059{left:576.000000pt;}
.xbb_c00059{left:577.333333pt;}
.xa5_c00059{left:578.293333pt;}
.x1a_c00059{left:579.626667pt;}
.xd3_c00059{left:581.333333pt;}
.x77_c00059{left:582.666667pt;}
.xe9_c00059{left:588.000000pt;}
.x31_c00059{left:590.666667pt;}
.xde_c00059{left:592.373333pt;}
.x4b_c00059{left:593.333333pt;}
.x40_c00059{left:595.040000pt;}
.xa6_c00059{left:596.373333pt;}
.xae_c00059{left:597.333333pt;}
.x8c_c00059{left:600.000000pt;}
.x9c_c00059{left:601.706667pt;}
.x85_c00059{left:602.666667pt;}
.xff_c00059{left:603.800000pt;}
.x62_c00059{left:608.000000pt;}
.xd_c00059{left:610.666667pt;}
.x6b_c00059{left:612.000000pt;}
.xaf_c00059{left:614.666667pt;}
.x81_c00059{left:617.333333pt;}
.x29_c00059{left:620.000000pt;}
.x41_c00059{left:621.706667pt;}
.x1b_c00059{left:622.666667pt;}
.xb4_c00059{left:624.000000pt;}
.x78_c00059{left:624.960000pt;}
.xe_c00059{left:629.706667pt;}
.x86_c00059{left:634.293333pt;}
.x100_c00059{left:637.333333pt;}
.xdf_c00059{left:640.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_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_a36906bc9aec338fdd3b740d.woff2')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:1.688965;font-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_c00060{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.md9_c00060{transform:matrix(0.323343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323343,0.000000,0.000000,0.250000,0,0);}
.mc5_c00060{transform:matrix(0.333216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333216,0.000000,0.000000,0.250000,0,0);}
.m35_c00060{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m29_c00060{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.meb_c00060{transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);}
.m18_c00060{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m84_c00060{transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);}
.mbf_c00060{transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);}
.mba_c00060{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.md7_c00060{transform:matrix(0.364598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364598,0.000000,0.000000,0.250000,0,0);}
.m27_c00060{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m37_c00060{transform:matrix(0.366181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366181,0.000000,0.000000,0.250000,0,0);}
.m6c_c00060{transform:matrix(0.367227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367227,0.000000,0.000000,0.250000,0,0);}
.m1d_c00060{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mb2_c00060{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m3b_c00060{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.mcb_c00060{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m10_c00060{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mcd_c00060{transform:matrix(0.375767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375767,0.000000,0.000000,0.250000,0,0);}
.ma9_c00060{transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);}
.m39_c00060{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m8f_c00060{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m22_c00060{transform:matrix(0.384969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384969,0.000000,0.000000,0.250000,0,0);}
.md_c00060{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m83_c00060{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mc7_c00060{transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);}
.m15_c00060{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.mb3_c00060{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m6_c00060{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m87_c00060{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m6a_c00060{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m13_c00060{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.mad_c00060{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m9e_c00060{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m5f_c00060{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mab_c00060{transform:matrix(0.403374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403374,0.000000,0.000000,0.250000,0,0);}
.m20_c00060{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m80_c00060{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.ma2_c00060{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m3_c00060{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m1a_c00060{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m12_c00060{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.ma7_c00060{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m7e_c00060{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m8a_c00060{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m53_c00060{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mca_c00060{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mc3_c00060{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m7d_c00060{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m4c_c00060{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m6b_c00060{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m3f_c00060{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.ma0_c00060{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m1f_c00060{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mc8_c00060{transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);}
.me7_c00060{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mb1_c00060{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m85_c00060{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m62_c00060{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m8_c00060{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m1e_c00060{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.md0_c00060{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m42_c00060{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m76_c00060{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m19_c00060{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.ma4_c00060{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mc_c00060{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m94_c00060{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.mdc_c00060{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m4a_c00060{transform:matrix(0.435529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435529,0.000000,0.000000,0.250000,0,0);}
.m5_c00060{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m68_c00060{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m81_c00060{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m92_c00060{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.mb0_c00060{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.mc0_c00060{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m17_c00060{transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);}
.mb9_c00060{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m61_c00060{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.mda_c00060{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.md1_c00060{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m67_c00060{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m2d_c00060{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.m25_c00060{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m41_c00060{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m38_c00060{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mbb_c00060{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.m2_c00060{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m97_c00060{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.me6_c00060{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.m75_c00060{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m88_c00060{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m36_c00060{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.mdb_c00060{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m4d_c00060{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m8c_c00060{transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);}
.m86_c00060{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m57_c00060{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mc9_c00060{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m40_c00060{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.ma_c00060{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.m72_c00060{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m3d_c00060{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mcc_c00060{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m43_c00060{transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);}
.m31_c00060{transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);}
.m48_c00060{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m1_c00060{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);}
.m52_c00060{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m65_c00060{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.mf4_c00060{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mcf_c00060{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.md2_c00060{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m6d_c00060{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mf1_c00060{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m9_c00060{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mf7_c00060{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mf0_c00060{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m45_c00060{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.mc6_c00060{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m89_c00060{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m3e_c00060{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m9c_c00060{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m78_c00060{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m26_c00060{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mc2_c00060{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m51_c00060{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m60_c00060{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.ma6_c00060{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m23_c00060{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m16_c00060{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m30_c00060{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m11_c00060{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m7_c00060{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mee_c00060{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mf5_c00060{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mb_c00060{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m91_c00060{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.md3_c00060{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m49_c00060{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m44_c00060{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mb6_c00060{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mbe_c00060{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.ma5_c00060{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m2b_c00060{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m55_c00060{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m1c_c00060{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m46_c00060{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mdd_c00060{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m93_c00060{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m2c_c00060{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m2e_c00060{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m9b_c00060{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.me_c00060{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m5c_c00060{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m21_c00060{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m59_c00060{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.me4_c00060{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m82_c00060{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.md8_c00060{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m7a_c00060{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.maa_c00060{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mb4_c00060{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m70_c00060{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m34_c00060{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mce_c00060{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m69_c00060{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m5a_c00060{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m28_c00060{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m99_c00060{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m47_c00060{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m74_c00060{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.maf_c00060{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m9a_c00060{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m14_c00060{transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);}
.m98_c00060{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m7f_c00060{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m1b_c00060{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.mea_c00060{transform:matrix(0.570588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570588,0.000000,0.000000,0.250000,0,0);}
.m54_c00060{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mf6_c00060{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.mef_c00060{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m77_c00060{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m5e_c00060{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m33_c00060{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.mb7_c00060{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m5d_c00060{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m3c_c00060{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m90_c00060{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m95_c00060{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mb8_c00060{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m2a_c00060{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.ma3_c00060{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m7b_c00060{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m3a_c00060{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_c00060{transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);}
.mae_c00060{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m4f_c00060{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m6f_c00060{transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);}
.m9d_c00060{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.ma1_c00060{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m63_c00060{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mbc_c00060{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.md6_c00060{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m9f_c00060{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m5b_c00060{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_c00060{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mf3_c00060{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.me9_c00060{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m32_c00060{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.me5_c00060{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.mb5_c00060{transform:matrix(0.646471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.646471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.646471,0.000000,0.000000,0.250000,0,0);}
.m2f_c00060{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m56_c00060{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mc4_c00060{transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);}
.mac_c00060{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);}
.m66_c00060{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);}
.me8_c00060{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m8d_c00060{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.med_c00060{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m8e_c00060{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mde_c00060{transform:matrix(0.713235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713235,0.000000,0.000000,0.250000,0,0);}
.m79_c00060{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m0_c00060{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.me0_c00060{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.m4b_c00060{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m96_c00060{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mbd_c00060{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.me1_c00060{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m8b_c00060{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m71_c00060{transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);}
.mf_c00060{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.mdf_c00060{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m7c_c00060{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mec_c00060{transform:matrix(0.765560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765560,0.000000,0.000000,0.250000,0,0);}
.me3_c00060{transform:matrix(0.765882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765882,0.000000,0.000000,0.250000,0,0);}
.md4_c00060{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m6e_c00060{transform:matrix(0.771635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.771635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.771635,0.000000,0.000000,0.250000,0,0);}
.m4e_c00060{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m73_c00060{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mc1_c00060{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.me2_c00060{transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);}
.m50_c00060{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.ma8_c00060{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m58_c00060{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.mf2_c00060{transform:matrix(3.811404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.811404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.811404,0.000000,0.000000,0.250000,0,0);}
.m4_c00060{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws1_c00060{word-spacing:-5.161615px;}
.ws0_c00060{word-spacing:-4.801453px;}
.ws2_c00060{word-spacing:0.000000px;}
.fc0_c00060{color:transparent;}
.fs3_c00060{font-size:3.420000px;}
.fs0_c00060{font-size:18.720000px;}
.fs7_c00060{font-size:20.400000px;}
.fs1_c00060{font-size:25.500000px;}
.fs5_c00060{font-size:28.920000px;}
.fs4_c00060{font-size:32.340000px;}
.fs2_c00060{font-size:35.700000px;}
.fs6_c00060{font-size:39.120000px;}
.fs8_c00060{font-size:42.540000px;}
.y0_c00060{bottom:0.000000px;}
.y3_c00060{bottom:228.630000px;}
.yf6_c00060{bottom:254.325000px;}
.yf5_c00060{bottom:254.745000px;}
.yf4_c00060{bottom:256.905000px;}
.yf7_c00060{bottom:258.405000px;}
.yf3_c00060{bottom:258.825000px;}
.yef_c00060{bottom:271.905000px;}
.yec_c00060{bottom:273.405000px;}
.yed_c00060{bottom:273.420000px;}
.yf0_c00060{bottom:274.245000px;}
.yee_c00060{bottom:274.905000px;}
.yf1_c00060{bottom:275.970000px;}
.yeb_c00060{bottom:276.405000px;}
.yf2_c00060{bottom:277.470000px;}
.ye7_c00060{bottom:292.245000px;}
.ye6_c00060{bottom:294.630000px;}
.ye5_c00060{bottom:295.470000px;}
.ye3_c00060{bottom:295.680000px;}
.ye4_c00060{bottom:295.905000px;}
.ye8_c00060{bottom:296.130000px;}
.yea_c00060{bottom:297.405000px;}
.ye9_c00060{bottom:298.470000px;}
.ye1_c00060{bottom:313.245000px;}
.ye0_c00060{bottom:314.130000px;}
.ye2_c00060{bottom:314.745000px;}
.yde_c00060{bottom:315.405000px;}
.ydd_c00060{bottom:315.825000px;}
.ydf_c00060{bottom:316.470000px;}
.ydc_c00060{bottom:318.405000px;}
.ydb_c00060{bottom:320.970000px;}
.yd6_c00060{bottom:332.745000px;}
.yd8_c00060{bottom:333.405000px;}
.yd4_c00060{bottom:333.630000px;}
.yd9_c00060{bottom:333.825000px;}
.yda_c00060{bottom:334.245000px;}
.yd7_c00060{bottom:334.905000px;}
.yd5_c00060{bottom:335.970000px;}
.yd3_c00060{bottom:336.825000px;}
.ycf_c00060{bottom:352.245000px;}
.yd0_c00060{bottom:353.130000px;}
.yd1_c00060{bottom:353.550000px;}
.yce_c00060{bottom:354.405000px;}
.yd2_c00060{bottom:354.630000px;}
.ycd_c00060{bottom:370.905000px;}
.yca_c00060{bottom:371.745000px;}
.ycb_c00060{bottom:372.825000px;}
.yc7_c00060{bottom:373.680000px;}
.yc9_c00060{bottom:373.905000px;}
.ycc_c00060{bottom:374.130000px;}
.yc8_c00060{bottom:375.405000px;}
.yc3_c00060{bottom:392.745000px;}
.yc2_c00060{bottom:393.180000px;}
.yc5_c00060{bottom:393.405000px;}
.yc6_c00060{bottom:393.630000px;}
.yc4_c00060{bottom:394.905000px;}
.ybf_c00060{bottom:409.905000px;}
.ybe_c00060{bottom:410.745000px;}
.ybd_c00060{bottom:412.905000px;}
.yc0_c00060{bottom:413.130000px;}
.ybc_c00060{bottom:413.325000px;}
.yc1_c00060{bottom:413.970000px;}
.ybb_c00060{bottom:416.325000px;}
.yba_c00060{bottom:430.245000px;}
.yb7_c00060{bottom:431.745000px;}
.yb6_c00060{bottom:432.180000px;}
.yb8_c00060{bottom:432.405000px;}
.yb9_c00060{bottom:432.630000px;}
.yb3_c00060{bottom:451.245000px;}
.yb5_c00060{bottom:452.130000px;}
.yb4_c00060{bottom:453.405000px;}
.yb2_c00060{bottom:455.325000px;}
.yae_c00060{bottom:469.905000px;}
.yb1_c00060{bottom:470.745000px;}
.yad_c00060{bottom:471.180000px;}
.yb0_c00060{bottom:472.470000px;}
.yaf_c00060{bottom:472.905000px;}
.ya8_c00060{bottom:490.245000px;}
.yaa_c00060{bottom:491.130000px;}
.yab_c00060{bottom:491.325000px;}
.ya9_c00060{bottom:492.405000px;}
.yac_c00060{bottom:493.470000px;}
.ya7_c00060{bottom:495.405000px;}
.ya5_c00060{bottom:508.680000px;}
.ya4_c00060{bottom:509.745000px;}
.ya6_c00060{bottom:510.825000px;}
.ya1_c00060{bottom:511.050000px;}
.ya2_c00060{bottom:511.905000px;}
.ya3_c00060{bottom:512.130000px;}
.ya0_c00060{bottom:513.405000px;}
.y9f_c00060{bottom:515.130000px;}
.y9d_c00060{bottom:529.245000px;}
.y9b_c00060{bottom:529.470000px;}
.y9e_c00060{bottom:530.325000px;}
.y9a_c00060{bottom:531.405000px;}
.y9c_c00060{bottom:531.630000px;}
.y99_c00060{bottom:532.470000px;}
.y98_c00060{bottom:532.905000px;}
.y97_c00060{bottom:534.405000px;}
.y96_c00060{bottom:550.245000px;}
.y94_c00060{bottom:551.325000px;}
.y95_c00060{bottom:552.405000px;}
.y93_c00060{bottom:554.325000px;}
.y90_c00060{bottom:568.245000px;}
.y8c_c00060{bottom:569.325000px;}
.y8d_c00060{bottom:569.550000px;}
.y92_c00060{bottom:569.745000px;}
.y8f_c00060{bottom:570.405000px;}
.y8e_c00060{bottom:571.470000px;}
.y91_c00060{bottom:571.905000px;}
.y8b_c00060{bottom:586.905000px;}
.y8a_c00060{bottom:588.180000px;}
.y88_c00060{bottom:589.245000px;}
.y89_c00060{bottom:590.130000px;}
.y87_c00060{bottom:591.405000px;}
.y86_c00060{bottom:592.905000px;}
.y85_c00060{bottom:594.405000px;}
.y82_c00060{bottom:608.745000px;}
.y84_c00060{bottom:610.905000px;}
.y83_c00060{bottom:611.130000px;}
.y81_c00060{bottom:612.405000px;}
.y7c_c00060{bottom:626.970000px;}
.y7e_c00060{bottom:628.245000px;}
.y80_c00060{bottom:629.325000px;}
.y7f_c00060{bottom:629.970000px;}
.y7b_c00060{bottom:630.405000px;}
.y7d_c00060{bottom:631.470000px;}
.y7a_c00060{bottom:631.905000px;}
.y76_c00060{bottom:646.905000px;}
.y75_c00060{bottom:647.745000px;}
.y74_c00060{bottom:648.630000px;}
.y77_c00060{bottom:649.245000px;}
.y73_c00060{bottom:649.905000px;}
.y78_c00060{bottom:650.130000px;}
.y72_c00060{bottom:650.970000px;}
.y79_c00060{bottom:651.405000px;}
.y71_c00060{bottom:667.245000px;}
.y70_c00060{bottom:667.470000px;}
.y6f_c00060{bottom:668.325000px;}
.y6d_c00060{bottom:668.745000px;}
.y6e_c00060{bottom:669.630000px;}
.y6b_c00060{bottom:669.825000px;}
.y6c_c00060{bottom:670.905000px;}
.y69_c00060{bottom:687.405000px;}
.y66_c00060{bottom:687.825000px;}
.y64_c00060{bottom:688.245000px;}
.y65_c00060{bottom:689.130000px;}
.y68_c00060{bottom:689.970000px;}
.y67_c00060{bottom:690.405000px;}
.y6a_c00060{bottom:690.630000px;}
.y63_c00060{bottom:706.905000px;}
.y60_c00060{bottom:707.745000px;}
.y62_c00060{bottom:708.825000px;}
.y61_c00060{bottom:709.905000px;}
.y5d_c00060{bottom:727.245000px;}
.y5f_c00060{bottom:728.130000px;}
.y5e_c00060{bottom:729.405000px;}
.y5b_c00060{bottom:746.745000px;}
.y5a_c00060{bottom:748.905000px;}
.y5c_c00060{bottom:749.130000px;}
.y59_c00060{bottom:750.405000px;}
.y57_c00060{bottom:767.325000px;}
.y55_c00060{bottom:768.405000px;}
.y56_c00060{bottom:768.630000px;}
.y58_c00060{bottom:769.470000px;}
.y54_c00060{bottom:769.905000px;}
.y53_c00060{bottom:785.745000px;}
.y50_c00060{bottom:786.825000px;}
.y51_c00060{bottom:787.905000px;}
.y52_c00060{bottom:788.130000px;}
.y4b_c00060{bottom:805.245000px;}
.y4c_c00060{bottom:806.325000px;}
.y49_c00060{bottom:806.550000px;}
.y4f_c00060{bottom:806.745000px;}
.y4a_c00060{bottom:807.405000px;}
.y4e_c00060{bottom:807.825000px;}
.y4d_c00060{bottom:808.905000px;}
.y48_c00060{bottom:810.405000px;}
.y47_c00060{bottom:823.905000px;}
.y42_c00060{bottom:824.745000px;}
.y45_c00060{bottom:826.245000px;}
.y41_c00060{bottom:826.905000px;}
.y44_c00060{bottom:827.325000px;}
.y46_c00060{bottom:827.970000px;}
.y40_c00060{bottom:828.405000px;}
.y43_c00060{bottom:829.470000px;}
.y3f_c00060{bottom:829.905000px;}
.y3b_c00060{bottom:845.745000px;}
.y3e_c00060{bottom:846.630000px;}
.y3c_c00060{bottom:847.470000px;}
.y3a_c00060{bottom:847.905000px;}
.y3d_c00060{bottom:848.970000px;}
.y37_c00060{bottom:865.245000px;}
.y35_c00060{bottom:865.905000px;}
.y39_c00060{bottom:866.130000px;}
.y33_c00060{bottom:866.325000px;}
.y34_c00060{bottom:866.970000px;}
.y38_c00060{bottom:867.405000px;}
.y36_c00060{bottom:867.420000px;}
.y32_c00060{bottom:885.825000px;}
.y31_c00060{bottom:886.905000px;}
.y2d_c00060{bottom:905.325000px;}
.y2e_c00060{bottom:906.405000px;}
.y30_c00060{bottom:906.630000px;}
.y2c_c00060{bottom:906.825000px;}
.y2f_c00060{bottom:907.905000px;}
.y26_c00060{bottom:922.905000px;}
.y27_c00060{bottom:923.745000px;}
.y25_c00060{bottom:924.180000px;}
.y2a_c00060{bottom:925.245000px;}
.y29_c00060{bottom:925.905000px;}
.y28_c00060{bottom:926.970000px;}
.y2b_c00060{bottom:927.405000px;}
.y23_c00060{bottom:943.245000px;}
.y20_c00060{bottom:944.130000px;}
.y21_c00060{bottom:944.325000px;}
.y24_c00060{bottom:944.745000px;}
.y1f_c00060{bottom:945.405000px;}
.y22_c00060{bottom:946.470000px;}
.y1c_c00060{bottom:961.905000px;}
.y19_c00060{bottom:963.180000px;}
.y1b_c00060{bottom:963.825000px;}
.y1d_c00060{bottom:964.245000px;}
.y1a_c00060{bottom:964.905000px;}
.y1e_c00060{bottom:966.405000px;}
.y18_c00060{bottom:981.405000px;}
.y17_c00060{bottom:983.745000px;}
.y15_c00060{bottom:985.905000px;}
.y16_c00060{bottom:985.920000px;}
.y14_c00060{bottom:1001.745000px;}
.y13_c00060{bottom:1003.245000px;}
.yf_c00060{bottom:1021.245000px;}
.y11_c00060{bottom:1022.745000px;}
.y10_c00060{bottom:1023.405000px;}
.yd_c00060{bottom:1023.630000px;}
.y12_c00060{bottom:1024.470000px;}
.yc_c00060{bottom:1024.905000px;}
.ye_c00060{bottom:1024.920000px;}
.yb_c00060{bottom:1039.905000px;}
.ya_c00060{bottom:1040.745000px;}
.y9_c00060{bottom:1043.325000px;}
.y7_c00060{bottom:1060.905000px;}
.y4_c00060{bottom:1061.745000px;}
.y6_c00060{bottom:1062.825000px;}
.y8_c00060{bottom:1063.905000px;}
.y5_c00060{bottom:1063.920000px;}
.y2_c00060{bottom:1100.970000px;}
.y1_c00060{bottom:1103.130000px;}
.h4_c00060{height:4.206533px;}
.h1_c00060{height:23.025234px;}
.h8_c00060{height:25.091602px;}
.h2_c00060{height:31.364502px;}
.h6_c00060{height:35.571035px;}
.h5_c00060{height:39.777568px;}
.h3_c00060{height:43.910303px;}
.h7_c00060{height:48.116836px;}
.h9_c00060{height:52.323369px;}
.h0_c00060{height:1335.000000px;}
.w0_c00060{width:880.500000px;}
.x0_c00060{left:0.000000px;}
.x19_c00060{left:151.080000px;}
.x8e_c00060{left:152.580000px;}
.xe_c00060{left:153.855000px;}
.xc6_c00060{left:156.000000px;}
.xc7_c00060{left:163.500000px;}
.x4_c00060{left:168.000000px;}
.x79_c00060{left:169.500000px;}
.xb6_c00060{left:171.420000px;}
.x5d_c00060{left:173.145000px;}
.x73_c00060{left:180.420000px;}
.xc8_c00060{left:183.420000px;}
.xc4_c00060{left:186.000000px;}
.x7a_c00060{left:187.920000px;}
.x87_c00060{left:189.420000px;}
.x3f_c00060{left:192.000000px;}
.x2d_c00060{left:193.500000px;}
.xf_c00060{left:195.000000px;}
.xd1_c00060{left:198.420000px;}
.xb7_c00060{left:199.500000px;}
.x9a_c00060{left:201.000000px;}
.x10b_c00060{left:202.920000px;}
.x6c_c00060{left:208.500000px;}
.x7b_c00060{left:213.000000px;}
.xc9_c00060{left:214.080000px;}
.x2e_c00060{left:216.420000px;}
.x47_c00060{left:217.500000px;}
.x37_c00060{left:219.000000px;}
.x9b_c00060{left:220.500000px;}
.xf5_c00060{left:222.000000px;}
.xb0_c00060{left:223.500000px;}
.x53_c00060{left:224.580000px;}
.x1a_c00060{left:229.080000px;}
.x74_c00060{left:230.580000px;}
.x8f_c00060{left:232.500000px;}
.xfb_c00060{left:233.580000px;}
.xef_c00060{left:235.920000px;}
.xbc_c00060{left:238.080000px;}
.x23_c00060{left:241.500000px;}
.x81_c00060{left:242.580000px;}
.x54_c00060{left:244.920000px;}
.x90_c00060{left:246.000000px;}
.xb1_c00060{left:247.920000px;}
.x38_c00060{left:249.000000px;}
.x1b_c00060{left:252.000000px;}
.x11_c00060{left:255.000000px;}
.x66_c00060{left:256.500000px;}
.x5_c00060{left:258.000000px;}
.x10_c00060{left:259.080000px;}
.xf6_c00060{left:260.580000px;}
.x88_c00060{left:262.920000px;}
.x2f_c00060{left:264.000000px;}
.xbd_c00060{left:265.920000px;}
.x40_c00060{left:267.000000px;}
.x48_c00060{left:268.080000px;}
.xd6_c00060{left:270.420000px;}
.xea_c00060{left:271.500000px;}
.x55_c00060{left:273.000000px;}
.x4c_c00060{left:274.080000px;}
.x5e_c00060{left:276.000000px;}
.xfc_c00060{left:277.500000px;}
.x39_c00060{left:279.000000px;}
.x6_c00060{left:280.500000px;}
.x9c_c00060{left:283.500000px;}
.xa5_c00060{left:285.420000px;}
.x67_c00060{left:286.920000px;}
.x107_c00060{left:288.000000px;}
.xbe_c00060{left:289.920000px;}
.xf7_c00060{left:291.000000px;}
.x5f_c00060{left:292.500000px;}
.xca_c00060{left:294.420000px;}
.x24_c00060{left:296.580000px;}
.xd7_c00060{left:298.500000px;}
.xdd_c00060{left:301.500000px;}
.x1c_c00060{left:302.580000px;}
.x12_c00060{left:306.000000px;}
.x101_c00060{left:307.500000px;}
.xa6_c00060{left:313.500000px;}
.x1d_c00060{left:315.000000px;}
.x75_c00060{left:316.500000px;}
.x7c_c00060{left:319.500000px;}
.xf0_c00060{left:320.580000px;}
.x9d_c00060{left:322.500000px;}
.x30_c00060{left:325.500000px;}
.x56_c00060{left:326.580000px;}
.x13_c00060{left:328.080000px;}
.xcb_c00060{left:330.000000px;}
.x49_c00060{left:332.580000px;}
.x102_c00060{left:336.000000px;}
.x10c_c00060{left:339.000000px;}
.xcc_c00060{left:340.080000px;}
.xd8_c00060{left:342.000000px;}
.xe2_c00060{left:343.080000px;}
.x7_c00060{left:344.775000px;}
.x3a_c00060{left:346.500000px;}
.x4d_c00060{left:348.000000px;}
.xd2_c00060{left:350.580000px;}
.xa7_c00060{left:354.000000px;}
.x91_c00060{left:358.500000px;}
.x89_c00060{left:359.580000px;}
.x14_c00060{left:361.080000px;}
.x4a_c00060{left:363.000000px;}
.xec_c00060{left:365.580000px;}
.x1e_c00060{left:368.580000px;}
.xad_c00060{left:370.500000px;}
.x76_c00060{left:372.000000px;}
.x92_c00060{left:373.920000px;}
.x57_c00060{left:376.080000px;}
.xe7_c00060{left:377.580000px;}
.x10d_c00060{left:379.500000px;}
.x60_c00060{left:381.000000px;}
.xde_c00060{left:382.500000px;}
.x8_c00060{left:385.500000px;}
.x7d_c00060{left:386.580000px;}
.x6d_c00060{left:390.000000px;}
.x31_c00060{left:391.500000px;}
.x1_c00060{left:394.500000px;}
.x58_c00060{left:395.580000px;}
.xb2_c00060{left:397.080000px;}
.xfd_c00060{left:399.000000px;}
.x61_c00060{left:400.500000px;}
.xa8_c00060{left:401.580000px;}
.xf1_c00060{left:403.920000px;}
.x6e_c00060{left:406.080000px;}
.x9e_c00060{left:410.580000px;}
.x77_c00060{left:412.080000px;}
.xeb_c00060{left:414.000000px;}
.xdf_c00060{left:416.580000px;}
.x41_c00060{left:418.920000px;}
.x3b_c00060{left:421.500000px;}
.xf8_c00060{left:422.580000px;}
.x93_c00060{left:426.420000px;}
.x4b_c00060{left:428.145000px;}
.x9f_c00060{left:430.080000px;}
.x78_c00060{left:431.580000px;}
.x9_c00060{left:432.645000px;}
.x25_c00060{left:436.500000px;}
.x1f_c00060{left:441.000000px;}
.x3c_c00060{left:442.500000px;}
.xae_c00060{left:443.580000px;}
.xb3_c00060{left:445.500000px;}
.x42_c00060{left:447.000000px;}
.xe8_c00060{left:448.500000px;}
.xfe_c00060{left:450.000000px;}
.xbf_c00060{left:453.000000px;}
.x68_c00060{left:454.500000px;}
.xe0_c00060{left:457.080000px;}
.x26_c00060{left:458.580000px;}
.x103_c00060{left:460.500000px;}
.xd3_c00060{left:461.580000px;}
.x108_c00060{left:465.000000px;}
.xff_c00060{left:466.080000px;}
.x32_c00060{left:467.580000px;}
.xb4_c00060{left:469.500000px;}
.xf2_c00060{left:470.580000px;}
.xda_c00060{left:472.920000px;}
.x82_c00060{left:474.000000px;}
.xa0_c00060{left:477.420000px;}
.xe3_c00060{left:478.500000px;}
.x94_c00060{left:481.920000px;}
.xcd_c00060{left:485.580000px;}
.x59_c00060{left:487.080000px;}
.x27_c00060{left:490.920000px;}
.xd4_c00060{left:492.000000px;}
.xc0_c00060{left:494.580000px;}
.xa9_c00060{left:496.500000px;}
.xa1_c00060{left:498.420000px;}
.xb8_c00060{left:499.500000px;}
.x33_c00060{left:500.580000px;}
.xce_c00060{left:502.920000px;}
.x6f_c00060{left:505.920000px;}
.x43_c00060{left:509.580000px;}
.xed_c00060{left:510.855000px;}
.x15_c00060{left:512.580000px;}
.xc5_c00060{left:517.500000px;}
.x28_c00060{left:518.775000px;}
.x95_c00060{left:521.580000px;}
.x83_c00060{left:523.500000px;}
.xa_c00060{left:525.420000px;}
.xe4_c00060{left:526.920000px;}
.x4e_c00060{left:528.000000px;}
.xa2_c00060{left:529.080000px;}
.xc1_c00060{left:531.000000px;}
.xf3_c00060{left:532.500000px;}
.x70_c00060{left:534.000000px;}
.xf9_c00060{left:535.500000px;}
.x44_c00060{left:541.920000px;}
.x7e_c00060{left:543.420000px;}
.x29_c00060{left:544.500000px;}
.x4f_c00060{left:546.000000px;}
.x16_c00060{left:547.500000px;}
.x104_c00060{left:548.580000px;}
.xb9_c00060{left:550.500000px;}
.x69_c00060{left:551.580000px;}
.xaf_c00060{left:553.920000px;}
.x5a_c00060{left:556.500000px;}
.x34_c00060{left:557.580000px;}
.x62_c00060{left:559.500000px;}
.x96_c00060{left:561.000000px;}
.xc2_c00060{left:562.920000px;}
.x8a_c00060{left:564.420000px;}
.xe1_c00060{left:565.500000px;}
.xb5_c00060{left:570.000000px;}
.xee_c00060{left:572.775000px;}
.xb_c00060{left:574.080000px;}
.x7f_c00060{left:576.000000px;}
.x2a_c00060{left:577.080000px;}
.x50_c00060{left:578.580000px;}
.x45_c00060{left:580.920000px;}
.x97_c00060{left:582.000000px;}
.x10e_c00060{left:584.580000px;}
.xaa_c00060{left:586.500000px;}
.xc3_c00060{left:589.500000px;}
.x5b_c00060{left:592.500000px;}
.xfa_c00060{left:594.000000px;}
.xe5_c00060{left:595.500000px;}
.xdb_c00060{left:598.080000px;}
.x51_c00060{left:600.420000px;}
.x20_c00060{left:602.775000px;}
.x84_c00060{left:605.580000px;}
.x35_c00060{left:607.080000px;}
.xe6_c00060{left:608.355000px;}
.x17_c00060{left:611.580000px;}
.x71_c00060{left:613.080000px;}
.x8b_c00060{left:614.580000px;}
.x105_c00060{left:616.080000px;}
.xc_c00060{left:619.500000px;}
.x2b_c00060{left:622.500000px;}
.x63_c00060{left:625.500000px;}
.x6a_c00060{left:627.000000px;}
.x85_c00060{left:628.500000px;}
.x52_c00060{left:630.000000px;}
.xcf_c00060{left:631.920000px;}
.x3d_c00060{left:634.080000px;}
.xe9_c00060{left:636.000000px;}
.xba_c00060{left:639.000000px;}
.x36_c00060{left:640.500000px;}
.x21_c00060{left:643.500000px;}
.x64_c00060{left:644.580000px;}
.x5c_c00060{left:646.500000px;}
.xab_c00060{left:648.000000px;}
.x106_c00060{left:649.500000px;}
.xd9_c00060{left:652.500000px;}
.xdc_c00060{left:657.000000px;}
.x8c_c00060{left:659.580000px;}
.x72_c00060{left:661.500000px;}
.x80_c00060{left:664.080000px;}
.xd5_c00060{left:666.000000px;}
.xd0_c00060{left:667.500000px;}
.xd_c00060{left:669.000000px;}
.x3e_c00060{left:670.080000px;}
.x6b_c00060{left:672.000000px;}
.xa3_c00060{left:675.420000px;}
.x109_c00060{left:678.000000px;}
.xac_c00060{left:682.080000px;}
.x2c_c00060{left:685.500000px;}
.x86_c00060{left:686.580000px;}
.x100_c00060{left:688.080000px;}
.x18_c00060{left:690.000000px;}
.x98_c00060{left:691.500000px;}
.x65_c00060{left:693.420000px;}
.x8d_c00060{left:694.920000px;}
.x22_c00060{left:696.420000px;}
.xf4_c00060{left:700.500000px;}
.xbb_c00060{left:708.420000px;}
.x2_c00060{left:712.500000px;}
.x46_c00060{left:715.500000px;}
.xa4_c00060{left:718.500000px;}
.x10a_c00060{left:720.000000px;}
.x99_c00060{left:721.500000px;}
.x3_c00060{left:726.000000px;}
@media print{
.v0_c00060{vertical-align:0.000000pt;}
.ls0_c00060{letter-spacing:0.000000pt;}
.ws1_c00060{word-spacing:-4.588102pt;}
.ws0_c00060{word-spacing:-4.267959pt;}
.ws2_c00060{word-spacing:0.000000pt;}
.fs3_c00060{font-size:3.040000pt;}
.fs0_c00060{font-size:16.640000pt;}
.fs7_c00060{font-size:18.133333pt;}
.fs1_c00060{font-size:22.666667pt;}
.fs5_c00060{font-size:25.706667pt;}
.fs4_c00060{font-size:28.746667pt;}
.fs2_c00060{font-size:31.733333pt;}
.fs6_c00060{font-size:34.773333pt;}
.fs8_c00060{font-size:37.813333pt;}
.y0_c00060{bottom:0.000000pt;}
.y3_c00060{bottom:203.226667pt;}
.yf6_c00060{bottom:226.066667pt;}
.yf5_c00060{bottom:226.440000pt;}
.yf4_c00060{bottom:228.360000pt;}
.yf7_c00060{bottom:229.693333pt;}
.yf3_c00060{bottom:230.066667pt;}
.yef_c00060{bottom:241.693333pt;}
.yec_c00060{bottom:243.026667pt;}
.yed_c00060{bottom:243.040000pt;}
.yf0_c00060{bottom:243.773333pt;}
.yee_c00060{bottom:244.360000pt;}
.yf1_c00060{bottom:245.306667pt;}
.yeb_c00060{bottom:245.693333pt;}
.yf2_c00060{bottom:246.640000pt;}
.ye7_c00060{bottom:259.773333pt;}
.ye6_c00060{bottom:261.893333pt;}
.ye5_c00060{bottom:262.640000pt;}
.ye3_c00060{bottom:262.826667pt;}
.ye4_c00060{bottom:263.026667pt;}
.ye8_c00060{bottom:263.226667pt;}
.yea_c00060{bottom:264.360000pt;}
.ye9_c00060{bottom:265.306667pt;}
.ye1_c00060{bottom:278.440000pt;}
.ye0_c00060{bottom:279.226667pt;}
.ye2_c00060{bottom:279.773333pt;}
.yde_c00060{bottom:280.360000pt;}
.ydd_c00060{bottom:280.733333pt;}
.ydf_c00060{bottom:281.306667pt;}
.ydc_c00060{bottom:283.026667pt;}
.ydb_c00060{bottom:285.306667pt;}
.yd6_c00060{bottom:295.773333pt;}
.yd8_c00060{bottom:296.360000pt;}
.yd4_c00060{bottom:296.560000pt;}
.yd9_c00060{bottom:296.733333pt;}
.yda_c00060{bottom:297.106667pt;}
.yd7_c00060{bottom:297.693333pt;}
.yd5_c00060{bottom:298.640000pt;}
.yd3_c00060{bottom:299.400000pt;}
.ycf_c00060{bottom:313.106667pt;}
.yd0_c00060{bottom:313.893333pt;}
.yd1_c00060{bottom:314.266667pt;}
.yce_c00060{bottom:315.026667pt;}
.yd2_c00060{bottom:315.226667pt;}
.ycd_c00060{bottom:329.693333pt;}
.yca_c00060{bottom:330.440000pt;}
.ycb_c00060{bottom:331.400000pt;}
.yc7_c00060{bottom:332.160000pt;}
.yc9_c00060{bottom:332.360000pt;}
.ycc_c00060{bottom:332.560000pt;}
.yc8_c00060{bottom:333.693333pt;}
.yc3_c00060{bottom:349.106667pt;}
.yc2_c00060{bottom:349.493333pt;}
.yc5_c00060{bottom:349.693333pt;}
.yc6_c00060{bottom:349.893333pt;}
.yc4_c00060{bottom:351.026667pt;}
.ybf_c00060{bottom:364.360000pt;}
.ybe_c00060{bottom:365.106667pt;}
.ybd_c00060{bottom:367.026667pt;}
.yc0_c00060{bottom:367.226667pt;}
.ybc_c00060{bottom:367.400000pt;}
.yc1_c00060{bottom:367.973333pt;}
.ybb_c00060{bottom:370.066667pt;}
.yba_c00060{bottom:382.440000pt;}
.yb7_c00060{bottom:383.773333pt;}
.yb6_c00060{bottom:384.160000pt;}
.yb8_c00060{bottom:384.360000pt;}
.yb9_c00060{bottom:384.560000pt;}
.yb3_c00060{bottom:401.106667pt;}
.yb5_c00060{bottom:401.893333pt;}
.yb4_c00060{bottom:403.026667pt;}
.yb2_c00060{bottom:404.733333pt;}
.yae_c00060{bottom:417.693333pt;}
.yb1_c00060{bottom:418.440000pt;}
.yad_c00060{bottom:418.826667pt;}
.yb0_c00060{bottom:419.973333pt;}
.yaf_c00060{bottom:420.360000pt;}
.ya8_c00060{bottom:435.773333pt;}
.yaa_c00060{bottom:436.560000pt;}
.yab_c00060{bottom:436.733333pt;}
.ya9_c00060{bottom:437.693333pt;}
.yac_c00060{bottom:438.640000pt;}
.ya7_c00060{bottom:440.360000pt;}
.ya5_c00060{bottom:452.160000pt;}
.ya4_c00060{bottom:453.106667pt;}
.ya6_c00060{bottom:454.066667pt;}
.ya1_c00060{bottom:454.266667pt;}
.ya2_c00060{bottom:455.026667pt;}
.ya3_c00060{bottom:455.226667pt;}
.ya0_c00060{bottom:456.360000pt;}
.y9f_c00060{bottom:457.893333pt;}
.y9d_c00060{bottom:470.440000pt;}
.y9b_c00060{bottom:470.640000pt;}
.y9e_c00060{bottom:471.400000pt;}
.y9a_c00060{bottom:472.360000pt;}
.y9c_c00060{bottom:472.560000pt;}
.y99_c00060{bottom:473.306667pt;}
.y98_c00060{bottom:473.693333pt;}
.y97_c00060{bottom:475.026667pt;}
.y96_c00060{bottom:489.106667pt;}
.y94_c00060{bottom:490.066667pt;}
.y95_c00060{bottom:491.026667pt;}
.y93_c00060{bottom:492.733333pt;}
.y90_c00060{bottom:505.106667pt;}
.y8c_c00060{bottom:506.066667pt;}
.y8d_c00060{bottom:506.266667pt;}
.y92_c00060{bottom:506.440000pt;}
.y8f_c00060{bottom:507.026667pt;}
.y8e_c00060{bottom:507.973333pt;}
.y91_c00060{bottom:508.360000pt;}
.y8b_c00060{bottom:521.693333pt;}
.y8a_c00060{bottom:522.826667pt;}
.y88_c00060{bottom:523.773333pt;}
.y89_c00060{bottom:524.560000pt;}
.y87_c00060{bottom:525.693333pt;}
.y86_c00060{bottom:527.026667pt;}
.y85_c00060{bottom:528.360000pt;}
.y82_c00060{bottom:541.106667pt;}
.y84_c00060{bottom:543.026667pt;}
.y83_c00060{bottom:543.226667pt;}
.y81_c00060{bottom:544.360000pt;}
.y7c_c00060{bottom:557.306667pt;}
.y7e_c00060{bottom:558.440000pt;}
.y80_c00060{bottom:559.400000pt;}
.y7f_c00060{bottom:559.973333pt;}
.y7b_c00060{bottom:560.360000pt;}
.y7d_c00060{bottom:561.306667pt;}
.y7a_c00060{bottom:561.693333pt;}
.y76_c00060{bottom:575.026667pt;}
.y75_c00060{bottom:575.773333pt;}
.y74_c00060{bottom:576.560000pt;}
.y77_c00060{bottom:577.106667pt;}
.y73_c00060{bottom:577.693333pt;}
.y78_c00060{bottom:577.893333pt;}
.y72_c00060{bottom:578.640000pt;}
.y79_c00060{bottom:579.026667pt;}
.y71_c00060{bottom:593.106667pt;}
.y70_c00060{bottom:593.306667pt;}
.y6f_c00060{bottom:594.066667pt;}
.y6d_c00060{bottom:594.440000pt;}
.y6e_c00060{bottom:595.226667pt;}
.y6b_c00060{bottom:595.400000pt;}
.y6c_c00060{bottom:596.360000pt;}
.y69_c00060{bottom:611.026667pt;}
.y66_c00060{bottom:611.400000pt;}
.y64_c00060{bottom:611.773333pt;}
.y65_c00060{bottom:612.560000pt;}
.y68_c00060{bottom:613.306667pt;}
.y67_c00060{bottom:613.693333pt;}
.y6a_c00060{bottom:613.893333pt;}
.y63_c00060{bottom:628.360000pt;}
.y60_c00060{bottom:629.106667pt;}
.y62_c00060{bottom:630.066667pt;}
.y61_c00060{bottom:631.026667pt;}
.y5d_c00060{bottom:646.440000pt;}
.y5f_c00060{bottom:647.226667pt;}
.y5e_c00060{bottom:648.360000pt;}
.y5b_c00060{bottom:663.773333pt;}
.y5a_c00060{bottom:665.693333pt;}
.y5c_c00060{bottom:665.893333pt;}
.y59_c00060{bottom:667.026667pt;}
.y57_c00060{bottom:682.066667pt;}
.y55_c00060{bottom:683.026667pt;}
.y56_c00060{bottom:683.226667pt;}
.y58_c00060{bottom:683.973333pt;}
.y54_c00060{bottom:684.360000pt;}
.y53_c00060{bottom:698.440000pt;}
.y50_c00060{bottom:699.400000pt;}
.y51_c00060{bottom:700.360000pt;}
.y52_c00060{bottom:700.560000pt;}
.y4b_c00060{bottom:715.773333pt;}
.y4c_c00060{bottom:716.733333pt;}
.y49_c00060{bottom:716.933333pt;}
.y4f_c00060{bottom:717.106667pt;}
.y4a_c00060{bottom:717.693333pt;}
.y4e_c00060{bottom:718.066667pt;}
.y4d_c00060{bottom:719.026667pt;}
.y48_c00060{bottom:720.360000pt;}
.y47_c00060{bottom:732.360000pt;}
.y42_c00060{bottom:733.106667pt;}
.y45_c00060{bottom:734.440000pt;}
.y41_c00060{bottom:735.026667pt;}
.y44_c00060{bottom:735.400000pt;}
.y46_c00060{bottom:735.973333pt;}
.y40_c00060{bottom:736.360000pt;}
.y43_c00060{bottom:737.306667pt;}
.y3f_c00060{bottom:737.693333pt;}
.y3b_c00060{bottom:751.773333pt;}
.y3e_c00060{bottom:752.560000pt;}
.y3c_c00060{bottom:753.306667pt;}
.y3a_c00060{bottom:753.693333pt;}
.y3d_c00060{bottom:754.640000pt;}
.y37_c00060{bottom:769.106667pt;}
.y35_c00060{bottom:769.693333pt;}
.y39_c00060{bottom:769.893333pt;}
.y33_c00060{bottom:770.066667pt;}
.y34_c00060{bottom:770.640000pt;}
.y38_c00060{bottom:771.026667pt;}
.y36_c00060{bottom:771.040000pt;}
.y32_c00060{bottom:787.400000pt;}
.y31_c00060{bottom:788.360000pt;}
.y2d_c00060{bottom:804.733333pt;}
.y2e_c00060{bottom:805.693333pt;}
.y30_c00060{bottom:805.893333pt;}
.y2c_c00060{bottom:806.066667pt;}
.y2f_c00060{bottom:807.026667pt;}
.y26_c00060{bottom:820.360000pt;}
.y27_c00060{bottom:821.106667pt;}
.y25_c00060{bottom:821.493333pt;}
.y2a_c00060{bottom:822.440000pt;}
.y29_c00060{bottom:823.026667pt;}
.y28_c00060{bottom:823.973333pt;}
.y2b_c00060{bottom:824.360000pt;}
.y23_c00060{bottom:838.440000pt;}
.y20_c00060{bottom:839.226667pt;}
.y21_c00060{bottom:839.400000pt;}
.y24_c00060{bottom:839.773333pt;}
.y1f_c00060{bottom:840.360000pt;}
.y22_c00060{bottom:841.306667pt;}
.y1c_c00060{bottom:855.026667pt;}
.y19_c00060{bottom:856.160000pt;}
.y1b_c00060{bottom:856.733333pt;}
.y1d_c00060{bottom:857.106667pt;}
.y1a_c00060{bottom:857.693333pt;}
.y1e_c00060{bottom:859.026667pt;}
.y18_c00060{bottom:872.360000pt;}
.y17_c00060{bottom:874.440000pt;}
.y15_c00060{bottom:876.360000pt;}
.y16_c00060{bottom:876.373333pt;}
.y14_c00060{bottom:890.440000pt;}
.y13_c00060{bottom:891.773333pt;}
.yf_c00060{bottom:907.773333pt;}
.y11_c00060{bottom:909.106667pt;}
.y10_c00060{bottom:909.693333pt;}
.yd_c00060{bottom:909.893333pt;}
.y12_c00060{bottom:910.640000pt;}
.yc_c00060{bottom:911.026667pt;}
.ye_c00060{bottom:911.040000pt;}
.yb_c00060{bottom:924.360000pt;}
.ya_c00060{bottom:925.106667pt;}
.y9_c00060{bottom:927.400000pt;}
.y7_c00060{bottom:943.026667pt;}
.y4_c00060{bottom:943.773333pt;}
.y6_c00060{bottom:944.733333pt;}
.y8_c00060{bottom:945.693333pt;}
.y5_c00060{bottom:945.706667pt;}
.y2_c00060{bottom:978.640000pt;}
.y1_c00060{bottom:980.560000pt;}
.h4_c00060{height:3.739141pt;}
.h1_c00060{height:20.466875pt;}
.h8_c00060{height:22.303646pt;}
.h2_c00060{height:27.879557pt;}
.h6_c00060{height:31.618698pt;}
.h5_c00060{height:35.357839pt;}
.h3_c00060{height:39.031380pt;}
.h7_c00060{height:42.770521pt;}
.h9_c00060{height:46.509661pt;}
.h0_c00060{height:1186.666667pt;}
.w0_c00060{width:782.666667pt;}
.x0_c00060{left:0.000000pt;}
.x19_c00060{left:134.293333pt;}
.x8e_c00060{left:135.626667pt;}
.xe_c00060{left:136.760000pt;}
.xc6_c00060{left:138.666667pt;}
.xc7_c00060{left:145.333333pt;}
.x4_c00060{left:149.333333pt;}
.x79_c00060{left:150.666667pt;}
.xb6_c00060{left:152.373333pt;}
.x5d_c00060{left:153.906667pt;}
.x73_c00060{left:160.373333pt;}
.xc8_c00060{left:163.040000pt;}
.xc4_c00060{left:165.333333pt;}
.x7a_c00060{left:167.040000pt;}
.x87_c00060{left:168.373333pt;}
.x3f_c00060{left:170.666667pt;}
.x2d_c00060{left:172.000000pt;}
.xf_c00060{left:173.333333pt;}
.xd1_c00060{left:176.373333pt;}
.xb7_c00060{left:177.333333pt;}
.x9a_c00060{left:178.666667pt;}
.x10b_c00060{left:180.373333pt;}
.x6c_c00060{left:185.333333pt;}
.x7b_c00060{left:189.333333pt;}
.xc9_c00060{left:190.293333pt;}
.x2e_c00060{left:192.373333pt;}
.x47_c00060{left:193.333333pt;}
.x37_c00060{left:194.666667pt;}
.x9b_c00060{left:196.000000pt;}
.xf5_c00060{left:197.333333pt;}
.xb0_c00060{left:198.666667pt;}
.x53_c00060{left:199.626667pt;}
.x1a_c00060{left:203.626667pt;}
.x74_c00060{left:204.960000pt;}
.x8f_c00060{left:206.666667pt;}
.xfb_c00060{left:207.626667pt;}
.xef_c00060{left:209.706667pt;}
.xbc_c00060{left:211.626667pt;}
.x23_c00060{left:214.666667pt;}
.x81_c00060{left:215.626667pt;}
.x54_c00060{left:217.706667pt;}
.x90_c00060{left:218.666667pt;}
.xb1_c00060{left:220.373333pt;}
.x38_c00060{left:221.333333pt;}
.x1b_c00060{left:224.000000pt;}
.x11_c00060{left:226.666667pt;}
.x66_c00060{left:228.000000pt;}
.x5_c00060{left:229.333333pt;}
.x10_c00060{left:230.293333pt;}
.xf6_c00060{left:231.626667pt;}
.x88_c00060{left:233.706667pt;}
.x2f_c00060{left:234.666667pt;}
.xbd_c00060{left:236.373333pt;}
.x40_c00060{left:237.333333pt;}
.x48_c00060{left:238.293333pt;}
.xd6_c00060{left:240.373333pt;}
.xea_c00060{left:241.333333pt;}
.x55_c00060{left:242.666667pt;}
.x4c_c00060{left:243.626667pt;}
.x5e_c00060{left:245.333333pt;}
.xfc_c00060{left:246.666667pt;}
.x39_c00060{left:248.000000pt;}
.x6_c00060{left:249.333333pt;}
.x9c_c00060{left:252.000000pt;}
.xa5_c00060{left:253.706667pt;}
.x67_c00060{left:255.040000pt;}
.x107_c00060{left:256.000000pt;}
.xbe_c00060{left:257.706667pt;}
.xf7_c00060{left:258.666667pt;}
.x5f_c00060{left:260.000000pt;}
.xca_c00060{left:261.706667pt;}
.x24_c00060{left:263.626667pt;}
.xd7_c00060{left:265.333333pt;}
.xdd_c00060{left:268.000000pt;}
.x1c_c00060{left:268.960000pt;}
.x12_c00060{left:272.000000pt;}
.x101_c00060{left:273.333333pt;}
.xa6_c00060{left:278.666667pt;}
.x1d_c00060{left:280.000000pt;}
.x75_c00060{left:281.333333pt;}
.x7c_c00060{left:284.000000pt;}
.xf0_c00060{left:284.960000pt;}
.x9d_c00060{left:286.666667pt;}
.x30_c00060{left:289.333333pt;}
.x56_c00060{left:290.293333pt;}
.x13_c00060{left:291.626667pt;}
.xcb_c00060{left:293.333333pt;}
.x49_c00060{left:295.626667pt;}
.x102_c00060{left:298.666667pt;}
.x10c_c00060{left:301.333333pt;}
.xcc_c00060{left:302.293333pt;}
.xd8_c00060{left:304.000000pt;}
.xe2_c00060{left:304.960000pt;}
.x7_c00060{left:306.466667pt;}
.x3a_c00060{left:308.000000pt;}
.x4d_c00060{left:309.333333pt;}
.xd2_c00060{left:311.626667pt;}
.xa7_c00060{left:314.666667pt;}
.x91_c00060{left:318.666667pt;}
.x89_c00060{left:319.626667pt;}
.x14_c00060{left:320.960000pt;}
.x4a_c00060{left:322.666667pt;}
.xec_c00060{left:324.960000pt;}
.x1e_c00060{left:327.626667pt;}
.xad_c00060{left:329.333333pt;}
.x76_c00060{left:330.666667pt;}
.x92_c00060{left:332.373333pt;}
.x57_c00060{left:334.293333pt;}
.xe7_c00060{left:335.626667pt;}
.x10d_c00060{left:337.333333pt;}
.x60_c00060{left:338.666667pt;}
.xde_c00060{left:340.000000pt;}
.x8_c00060{left:342.666667pt;}
.x7d_c00060{left:343.626667pt;}
.x6d_c00060{left:346.666667pt;}
.x31_c00060{left:348.000000pt;}
.x1_c00060{left:350.666667pt;}
.x58_c00060{left:351.626667pt;}
.xb2_c00060{left:352.960000pt;}
.xfd_c00060{left:354.666667pt;}
.x61_c00060{left:356.000000pt;}
.xa8_c00060{left:356.960000pt;}
.xf1_c00060{left:359.040000pt;}
.x6e_c00060{left:360.960000pt;}
.x9e_c00060{left:364.960000pt;}
.x77_c00060{left:366.293333pt;}
.xeb_c00060{left:368.000000pt;}
.xdf_c00060{left:370.293333pt;}
.x41_c00060{left:372.373333pt;}
.x3b_c00060{left:374.666667pt;}
.xf8_c00060{left:375.626667pt;}
.x93_c00060{left:379.040000pt;}
.x4b_c00060{left:380.573333pt;}
.x9f_c00060{left:382.293333pt;}
.x78_c00060{left:383.626667pt;}
.x9_c00060{left:384.573333pt;}
.x25_c00060{left:388.000000pt;}
.x1f_c00060{left:392.000000pt;}
.x3c_c00060{left:393.333333pt;}
.xae_c00060{left:394.293333pt;}
.xb3_c00060{left:396.000000pt;}
.x42_c00060{left:397.333333pt;}
.xe8_c00060{left:398.666667pt;}
.xfe_c00060{left:400.000000pt;}
.xbf_c00060{left:402.666667pt;}
.x68_c00060{left:404.000000pt;}
.xe0_c00060{left:406.293333pt;}
.x26_c00060{left:407.626667pt;}
.x103_c00060{left:409.333333pt;}
.xd3_c00060{left:410.293333pt;}
.x108_c00060{left:413.333333pt;}
.xff_c00060{left:414.293333pt;}
.x32_c00060{left:415.626667pt;}
.xb4_c00060{left:417.333333pt;}
.xf2_c00060{left:418.293333pt;}
.xda_c00060{left:420.373333pt;}
.x82_c00060{left:421.333333pt;}
.xa0_c00060{left:424.373333pt;}
.xe3_c00060{left:425.333333pt;}
.x94_c00060{left:428.373333pt;}
.xcd_c00060{left:431.626667pt;}
.x59_c00060{left:432.960000pt;}
.x27_c00060{left:436.373333pt;}
.xd4_c00060{left:437.333333pt;}
.xc0_c00060{left:439.626667pt;}
.xa9_c00060{left:441.333333pt;}
.xa1_c00060{left:443.040000pt;}
.xb8_c00060{left:444.000000pt;}
.x33_c00060{left:444.960000pt;}
.xce_c00060{left:447.040000pt;}
.x6f_c00060{left:449.706667pt;}
.x43_c00060{left:452.960000pt;}
.xed_c00060{left:454.093333pt;}
.x15_c00060{left:455.626667pt;}
.xc5_c00060{left:460.000000pt;}
.x28_c00060{left:461.133333pt;}
.x95_c00060{left:463.626667pt;}
.x83_c00060{left:465.333333pt;}
.xa_c00060{left:467.040000pt;}
.xe4_c00060{left:468.373333pt;}
.x4e_c00060{left:469.333333pt;}
.xa2_c00060{left:470.293333pt;}
.xc1_c00060{left:472.000000pt;}
.xf3_c00060{left:473.333333pt;}
.x70_c00060{left:474.666667pt;}
.xf9_c00060{left:476.000000pt;}
.x44_c00060{left:481.706667pt;}
.x7e_c00060{left:483.040000pt;}
.x29_c00060{left:484.000000pt;}
.x4f_c00060{left:485.333333pt;}
.x16_c00060{left:486.666667pt;}
.x104_c00060{left:487.626667pt;}
.xb9_c00060{left:489.333333pt;}
.x69_c00060{left:490.293333pt;}
.xaf_c00060{left:492.373333pt;}
.x5a_c00060{left:494.666667pt;}
.x34_c00060{left:495.626667pt;}
.x62_c00060{left:497.333333pt;}
.x96_c00060{left:498.666667pt;}
.xc2_c00060{left:500.373333pt;}
.x8a_c00060{left:501.706667pt;}
.xe1_c00060{left:502.666667pt;}
.xb5_c00060{left:506.666667pt;}
.xee_c00060{left:509.133333pt;}
.xb_c00060{left:510.293333pt;}
.x7f_c00060{left:512.000000pt;}
.x2a_c00060{left:512.960000pt;}
.x50_c00060{left:514.293333pt;}
.x45_c00060{left:516.373333pt;}
.x97_c00060{left:517.333333pt;}
.x10e_c00060{left:519.626667pt;}
.xaa_c00060{left:521.333333pt;}
.xc3_c00060{left:524.000000pt;}
.x5b_c00060{left:526.666667pt;}
.xfa_c00060{left:528.000000pt;}
.xe5_c00060{left:529.333333pt;}
.xdb_c00060{left:531.626667pt;}
.x51_c00060{left:533.706667pt;}
.x20_c00060{left:535.800000pt;}
.x84_c00060{left:538.293333pt;}
.x35_c00060{left:539.626667pt;}
.xe6_c00060{left:540.760000pt;}
.x17_c00060{left:543.626667pt;}
.x71_c00060{left:544.960000pt;}
.x8b_c00060{left:546.293333pt;}
.x105_c00060{left:547.626667pt;}
.xc_c00060{left:550.666667pt;}
.x2b_c00060{left:553.333333pt;}
.x63_c00060{left:556.000000pt;}
.x6a_c00060{left:557.333333pt;}
.x85_c00060{left:558.666667pt;}
.x52_c00060{left:560.000000pt;}
.xcf_c00060{left:561.706667pt;}
.x3d_c00060{left:563.626667pt;}
.xe9_c00060{left:565.333333pt;}
.xba_c00060{left:568.000000pt;}
.x36_c00060{left:569.333333pt;}
.x21_c00060{left:572.000000pt;}
.x64_c00060{left:572.960000pt;}
.x5c_c00060{left:574.666667pt;}
.xab_c00060{left:576.000000pt;}
.x106_c00060{left:577.333333pt;}
.xd9_c00060{left:580.000000pt;}
.xdc_c00060{left:584.000000pt;}
.x8c_c00060{left:586.293333pt;}
.x72_c00060{left:588.000000pt;}
.x80_c00060{left:590.293333pt;}
.xd5_c00060{left:592.000000pt;}
.xd0_c00060{left:593.333333pt;}
.xd_c00060{left:594.666667pt;}
.x3e_c00060{left:595.626667pt;}
.x6b_c00060{left:597.333333pt;}
.xa3_c00060{left:600.373333pt;}
.x109_c00060{left:602.666667pt;}
.xac_c00060{left:606.293333pt;}
.x2c_c00060{left:609.333333pt;}
.x86_c00060{left:610.293333pt;}
.x100_c00060{left:611.626667pt;}
.x18_c00060{left:613.333333pt;}
.x98_c00060{left:614.666667pt;}
.x65_c00060{left:616.373333pt;}
.x8d_c00060{left:617.706667pt;}
.x22_c00060{left:619.040000pt;}
.xf4_c00060{left:622.666667pt;}
.xbb_c00060{left:629.706667pt;}
.x2_c00060{left:633.333333pt;}
.x46_c00060{left:636.000000pt;}
.xa4_c00060{left:638.666667pt;}
.x10a_c00060{left:640.000000pt;}
.x99_c00060{left:641.333333pt;}
.x3_c00060{left:645.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_16fa210820a24f4a5945fdf2.woff2')format("woff");}.ff1_c00061{font-family:ff1_c00061;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md3_c00061{transform:matrix(0.278293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278293,0.000000,0.000000,0.250000,0,0);}
.me6_c00061{transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);}
.m6c_c00061{transform:matrix(0.348794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348794,0.000000,0.000000,0.250000,0,0);}
.m61_c00061{transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);}
.m4f_c00061{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m91_c00061{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.ma8_c00061{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.md9_c00061{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m43_c00061{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m35_c00061{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.me4_c00061{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m6f_c00061{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.me0_c00061{transform:matrix(0.389187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389187,0.000000,0.000000,0.250000,0,0);}
.mee_c00061{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.mac_c00061{transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);}
.me_c00061{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m15_c00061{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m78_c00061{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m48_c00061{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.me9_c00061{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.mc5_c00061{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.mdf_c00061{transform:matrix(0.402607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402607,0.000000,0.000000,0.250000,0,0);}
.ma6_c00061{transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);}
.m13_c00061{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m3d_c00061{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.mff_c00061{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m2c_c00061{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m9c_c00061{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m3c_c00061{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mda_c00061{transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);}
.m23_c00061{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m52_c00061{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.med_c00061{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m16_c00061{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.maa_c00061{transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);}
.mc0_c00061{transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);}
.mcc_c00061{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.md1_c00061{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m40_c00061{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m5c_c00061{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m90_c00061{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.m64_c00061{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m65_c00061{transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);}
.m5d_c00061{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m59_c00061{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.mdd_c00061{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m3b_c00061{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m75_c00061{transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);}
.m8f_c00061{transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);}
.ma0_c00061{transform:matrix(0.429979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429979,0.000000,0.000000,0.250000,0,0);}
.ma7_c00061{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m66_c00061{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.ma_c00061{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m36_c00061{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.mc2_c00061{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m2_c00061{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m92_c00061{transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);}
.mb_c00061{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m33_c00061{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m3f_c00061{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m72_c00061{transform:matrix(0.436722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436722,0.000000,0.000000,0.250000,0,0);}
.m77_c00061{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m85_c00061{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.m95_c00061{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m8e_c00061{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m84_c00061{transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);}
.mf3_c00061{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m32_c00061{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.md7_c00061{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.m100_c00061{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.mba_c00061{transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);}
.m31_c00061{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m97_c00061{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m20_c00061{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m34_c00061{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.me8_c00061{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mfd_c00061{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m5a_c00061{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m76_c00061{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m4c_c00061{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m62_c00061{transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);}
.mfe_c00061{transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);}
.m69_c00061{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.mc7_c00061{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.mdb_c00061{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.m104_c00061{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m55_c00061{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mbc_c00061{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m80_c00061{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m1c_c00061{transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);}
.md6_c00061{transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);}
.m82_c00061{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m71_c00061{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.me1_c00061{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m50_c00061{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.md0_c00061{transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);}
.m1_c00061{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m2b_c00061{transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);}
.m60_c00061{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.ma5_c00061{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.mf5_c00061{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m9b_c00061{transform:matrix(0.488824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488824,0.000000,0.000000,0.250000,0,0);}
.m8b_c00061{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);}
.m11_c00061{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m8_c00061{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m4a_c00061{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m103_c00061{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mca_c00061{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m101_c00061{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m42_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.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mf2_c00061{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m7a_c00061{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m94_c00061{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m6e_c00061{transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);}
.mb6_c00061{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.mb8_c00061{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m3a_c00061{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m19_c00061{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.ma4_c00061{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.m7_c00061{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mb9_c00061{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.m22_c00061{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m5e_c00061{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.mfb_c00061{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m73_c00061{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);}
.m57_c00061{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m2f_c00061{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m6d_c00061{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_c00061{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mb7_c00061{transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);}
.me7_c00061{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mc6_c00061{transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);}
.me2_c00061{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mbb_c00061{transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);}
.m56_c00061{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.maf_c00061{transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);}
.mab_c00061{transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);}
.m24_c00061{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.me3_c00061{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m98_c00061{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m10_c00061{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m46_c00061{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m63_c00061{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.me5_c00061{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m1d_c00061{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m45_c00061{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mf6_c00061{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m81_c00061{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.md5_c00061{transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);}
.m38_c00061{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mbf_c00061{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.mf0_c00061{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m2e_c00061{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.mf9_c00061{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m7e_c00061{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m27_c00061{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m89_c00061{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m12_c00061{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m30_c00061{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m99_c00061{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.mea_c00061{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mb3_c00061{transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);}
.m5f_c00061{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.mf7_c00061{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mb1_c00061{transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);}
.mec_c00061{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m26_c00061{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m54_c00061{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.mcb_c00061{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m6_c00061{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m28_c00061{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m3e_c00061{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mf4_c00061{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m14_c00061{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m21_c00061{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.md4_c00061{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.mef_c00061{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m58_c00061{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.mcd_c00061{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m39_c00061{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m93_c00061{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.mc8_c00061{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);}
.m53_c00061{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m70_c00061{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m8c_c00061{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.mc1_c00061{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.mf8_c00061{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m8d_c00061{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m7c_c00061{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.mfa_c00061{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.m4_c00061{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m41_c00061{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m1e_c00061{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m9_c00061{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.m5b_c00061{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.mf1_c00061{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.mf_c00061{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mc4_c00061{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.mcf_c00061{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m4e_c00061{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m9e_c00061{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m18_c00061{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_c00061{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m83_c00061{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.mdc_c00061{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m7b_c00061{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m7d_c00061{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.mc_c00061{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m96_c00061{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m6b_c00061{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.ma1_c00061{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.mb0_c00061{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m0_c00061{transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);}
.m6a_c00061{transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);}
.ma3_c00061{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.m49_c00061{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.mb5_c00061{transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);}
.mce_c00061{transform:matrix(0.650641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650641,0.000000,0.000000,0.250000,0,0);}
.m87_c00061{transform:matrix(0.651471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651471,0.000000,0.000000,0.250000,0,0);}
.mbd_c00061{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.md2_c00061{transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);}
.ma2_c00061{transform:matrix(0.655147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655147,0.000000,0.000000,0.250000,0,0);}
.mbe_c00061{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.mc3_c00061{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m7f_c00061{transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);}
.m4b_c00061{transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);}
.m68_c00061{transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);}
.m2d_c00061{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m79_c00061{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m37_c00061{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m86_c00061{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.m51_c00061{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.mc9_c00061{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.m74_c00061{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.md_c00061{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.mb4_c00061{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m44_c00061{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m88_c00061{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);}
.m25_c00061{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.meb_c00061{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m8a_c00061{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mfc_c00061{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m1a_c00061{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m102_c00061{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m1f_c00061{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m1b_c00061{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.ma9_c00061{transform:matrix(0.794872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.794872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.794872,0.000000,0.000000,0.250000,0,0);}
.m29_c00061{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m9a_c00061{transform:matrix(0.814103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.814103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.814103,0.000000,0.000000,0.250000,0,0);}
.m9f_c00061{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m9d_c00061{transform:matrix(0.915198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.915198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.915198,0.000000,0.000000,0.250000,0,0);}
.md8_c00061{transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);}
.mb2_c00061{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m67_c00061{transform:matrix(1.066079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.066079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.066079,0.000000,0.000000,0.250000,0,0);}
.mae_c00061{transform:matrix(1.249199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.249199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.249199,0.000000,0.000000,0.250000,0,0);}
.m47_c00061{transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);}
.mad_c00061{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m4d_c00061{transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);}
.m17_c00061{transform:matrix(3.811404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.811404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.811404,0.000000,0.000000,0.250000,0,0);}
.mde_c00061{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00061{vertical-align:0.000000px;}
.v1_c00061{vertical-align:7.680000px;}
.ls1_c00061{letter-spacing:0.000000px;}
.ls0_c00061{letter-spacing:11.817600px;}
.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;}
}
.ws1_c00061{word-spacing:-6.454845px;}
.ws0_c00061{word-spacing:-2.923710px;}
.ws3_c00061{word-spacing:0.000000px;}
.ws2_c00061{word-spacing:0.308050px;}
.fc0_c00061{color:transparent;}
.fs5_c00061{font-size:3.420000px;}
.fs7_c00061{font-size:13.620000px;}
.fs4_c00061{font-size:18.720000px;}
.fs0_c00061{font-size:20.400000px;}
.fs3_c00061{font-size:25.500000px;}
.fs1_c00061{font-size:28.920000px;}
.fs6_c00061{font-size:32.340000px;}
.fs2_c00061{font-size:35.700000px;}
.fs8_c00061{font-size:39.120000px;}
.y0_c00061{bottom:0.000000px;}
.y10b_c00061{bottom:253.245000px;}
.y10a_c00061{bottom:254.130000px;}
.y10e_c00061{bottom:254.325000px;}
.y10d_c00061{bottom:254.970000px;}
.y109_c00061{bottom:255.405000px;}
.y10c_c00061{bottom:255.630000px;}
.y106_c00061{bottom:272.745000px;}
.y105_c00061{bottom:273.630000px;}
.y108_c00061{bottom:273.825000px;}
.y104_c00061{bottom:274.905000px;}
.y107_c00061{bottom:276.405000px;}
.y103_c00061{bottom:291.405000px;}
.y100_c00061{bottom:293.550000px;}
.yff_c00061{bottom:294.405000px;}
.y102_c00061{bottom:294.630000px;}
.y101_c00061{bottom:295.905000px;}
.yfd_c00061{bottom:311.745000px;}
.yfc_c00061{bottom:313.245000px;}
.yfa_c00061{bottom:313.905000px;}
.yfe_c00061{bottom:314.970000px;}
.yfb_c00061{bottom:315.405000px;}
.yf3_c00061{bottom:331.245000px;}
.yf5_c00061{bottom:331.680000px;}
.yf7_c00061{bottom:332.745000px;}
.yf4_c00061{bottom:333.405000px;}
.yf9_c00061{bottom:333.630000px;}
.yf8_c00061{bottom:333.825000px;}
.yf6_c00061{bottom:334.905000px;}
.yf1_c00061{bottom:351.180000px;}
.yed_c00061{bottom:352.245000px;}
.yf0_c00061{bottom:352.680000px;}
.yf2_c00061{bottom:353.130000px;}
.yef_c00061{bottom:354.405000px;}
.yee_c00061{bottom:354.420000px;}
.yeb_c00061{bottom:388.905000px;}
.yec_c00061{bottom:389.325000px;}
.yea_c00061{bottom:389.550000px;}
.ye6_c00061{bottom:389.970000px;}
.ye8_c00061{bottom:390.405000px;}
.ye9_c00061{bottom:390.630000px;}
.ye7_c00061{bottom:391.470000px;}
.ye1_c00061{bottom:402.825000px;}
.ye5_c00061{bottom:403.470000px;}
.ye4_c00061{bottom:403.905000px;}
.ye2_c00061{bottom:404.130000px;}
.ye3_c00061{bottom:406.050000px;}
.yde_c00061{bottom:417.825000px;}
.ydf_c00061{bottom:418.905000px;}
.ye0_c00061{bottom:419.130000px;}
.ydc_c00061{bottom:419.325000px;}
.ydb_c00061{bottom:419.970000px;}
.ydd_c00061{bottom:420.195000px;}
.yda_c00061{bottom:421.050000px;}
.yd5_c00061{bottom:432.825000px;}
.yd9_c00061{bottom:434.325000px;}
.yd6_c00061{bottom:435.405000px;}
.yd7_c00061{bottom:436.695000px;}
.yd8_c00061{bottom:437.550000px;}
.yd3_c00061{bottom:446.970000px;}
.ycf_c00061{bottom:448.050000px;}
.yd1_c00061{bottom:448.905000px;}
.yd0_c00061{bottom:449.970000px;}
.yd2_c00061{bottom:450.630000px;}
.yd4_c00061{bottom:451.050000px;}
.ycd_c00061{bottom:461.970000px;}
.ycc_c00061{bottom:462.825000px;}
.yca_c00061{bottom:463.905000px;}
.yce_c00061{bottom:464.970000px;}
.ycb_c00061{bottom:465.195000px;}
.yc9_c00061{bottom:466.050000px;}
.yc2_c00061{bottom:477.825000px;}
.yc6_c00061{bottom:478.470000px;}
.yc8_c00061{bottom:478.905000px;}
.yc4_c00061{bottom:479.130000px;}
.yc1_c00061{bottom:479.550000px;}
.yc3_c00061{bottom:479.970000px;}
.yc5_c00061{bottom:480.195000px;}
.yc7_c00061{bottom:481.050000px;}
.ybc_c00061{bottom:491.970000px;}
.yc0_c00061{bottom:492.825000px;}
.ybd_c00061{bottom:493.905000px;}
.ybf_c00061{bottom:494.970000px;}
.ybe_c00061{bottom:495.195000px;}
.ybb_c00061{bottom:507.405000px;}
.yb9_c00061{bottom:508.050000px;}
.yb8_c00061{bottom:508.905000px;}
.yba_c00061{bottom:509.550000px;}
.yb6_c00061{bottom:509.970000px;}
.yb7_c00061{bottom:510.195000px;}
.yb0_c00061{bottom:521.550000px;}
.yb4_c00061{bottom:522.825000px;}
.yb2_c00061{bottom:523.905000px;}
.yb3_c00061{bottom:524.550000px;}
.yb5_c00061{bottom:524.970000px;}
.yb1_c00061{bottom:526.050000px;}
.yac_c00061{bottom:535.470000px;}
.yaa_c00061{bottom:536.325000px;}
.yab_c00061{bottom:536.550000px;}
.yad_c00061{bottom:537.405000px;}
.ya8_c00061{bottom:537.630000px;}
.yaf_c00061{bottom:538.470000px;}
.yae_c00061{bottom:538.695000px;}
.ya9_c00061{bottom:539.550000px;}
.ya7_c00061{bottom:551.325000px;}
.ya3_c00061{bottom:551.550000px;}
.ya4_c00061{bottom:552.405000px;}
.ya5_c00061{bottom:553.470000px;}
.ya6_c00061{bottom:554.550000px;}
.ya2_c00061{bottom:566.325000px;}
.ya0_c00061{bottom:567.405000px;}
.ya1_c00061{bottom:568.470000px;}
.y9f_c00061{bottom:581.325000px;}
.y9d_c00061{bottom:581.550000px;}
.y9c_c00061{bottom:582.405000px;}
.y9a_c00061{bottom:582.630000px;}
.y9b_c00061{bottom:583.470000px;}
.y9e_c00061{bottom:583.695000px;}
.y94_c00061{bottom:595.470000px;}
.y98_c00061{bottom:596.325000px;}
.y96_c00061{bottom:597.405000px;}
.y97_c00061{bottom:597.630000px;}
.y99_c00061{bottom:598.470000px;}
.y95_c00061{bottom:599.550000px;}
.y8e_c00061{bottom:610.905000px;}
.y8f_c00061{bottom:611.550000px;}
.y90_c00061{bottom:611.970000px;}
.y8d_c00061{bottom:612.630000px;}
.y91_c00061{bottom:613.050000px;}
.y92_c00061{bottom:613.470000px;}
.y93_c00061{bottom:613.695000px;}
.y8c_c00061{bottom:624.825000px;}
.y89_c00061{bottom:625.050000px;}
.y8a_c00061{bottom:626.970000px;}
.y8b_c00061{bottom:628.050000px;}
.y86_c00061{bottom:639.825000px;}
.y87_c00061{bottom:640.905000px;}
.y84_c00061{bottom:641.130000px;}
.y85_c00061{bottom:641.970000px;}
.y88_c00061{bottom:642.195000px;}
.y81_c00061{bottom:654.825000px;}
.y83_c00061{bottom:655.470000px;}
.y82_c00061{bottom:655.905000px;}
.y80_c00061{bottom:668.970000px;}
.y7c_c00061{bottom:669.825000px;}
.y7f_c00061{bottom:670.050000px;}
.y7d_c00061{bottom:670.905000px;}
.y7a_c00061{bottom:671.130000px;}
.y7e_c00061{bottom:671.970000px;}
.y7b_c00061{bottom:673.050000px;}
.y73_c00061{bottom:683.970000px;}
.y77_c00061{bottom:684.825000px;}
.y74_c00061{bottom:685.050000px;}
.y79_c00061{bottom:685.905000px;}
.y75_c00061{bottom:686.130000px;}
.y78_c00061{bottom:687.195000px;}
.y76_c00061{bottom:688.050000px;}
.y6a_c00061{bottom:698.550000px;}
.y72_c00061{bottom:698.970000px;}
.y71_c00061{bottom:699.405000px;}
.y70_c00061{bottom:699.825000px;}
.y6f_c00061{bottom:700.050000px;}
.y6e_c00061{bottom:700.470000px;}
.y6b_c00061{bottom:700.905000px;}
.y6c_c00061{bottom:701.970000px;}
.y6d_c00061{bottom:703.050000px;}
.y62_c00061{bottom:713.550000px;}
.y66_c00061{bottom:713.970000px;}
.y69_c00061{bottom:714.405000px;}
.y65_c00061{bottom:714.825000px;}
.y63_c00061{bottom:715.470000px;}
.y68_c00061{bottom:715.905000px;}
.y64_c00061{bottom:716.550000px;}
.y67_c00061{bottom:716.970000px;}
.y61_c00061{bottom:729.405000px;}
.y5e_c00061{bottom:729.825000px;}
.y5f_c00061{bottom:730.905000px;}
.y60_c00061{bottom:731.130000px;}
.y5c_c00061{bottom:731.550000px;}
.y5d_c00061{bottom:731.970000px;}
.y5b_c00061{bottom:744.405000px;}
.y5a_c00061{bottom:746.550000px;}
.y53_c00061{bottom:757.470000px;}
.y59_c00061{bottom:758.970000px;}
.y54_c00061{bottom:759.405000px;}
.y57_c00061{bottom:759.630000px;}
.y56_c00061{bottom:760.470000px;}
.y58_c00061{bottom:761.130000px;}
.y55_c00061{bottom:761.550000px;}
.y52_c00061{bottom:773.970000px;}
.y51_c00061{bottom:774.405000px;}
.y4f_c00061{bottom:774.630000px;}
.y50_c00061{bottom:776.550000px;}
.y4c_c00061{bottom:789.405000px;}
.y4d_c00061{bottom:789.630000px;}
.y4a_c00061{bottom:790.050000px;}
.y4b_c00061{bottom:790.470000px;}
.y4e_c00061{bottom:791.550000px;}
.y43_c00061{bottom:802.470000px;}
.y44_c00061{bottom:803.325000px;}
.y47_c00061{bottom:804.405000px;}
.y45_c00061{bottom:804.630000px;}
.y46_c00061{bottom:805.470000px;}
.y48_c00061{bottom:805.695000px;}
.y49_c00061{bottom:806.550000px;}
.y42_c00061{bottom:819.405000px;}
.y41_c00061{bottom:820.470000px;}
.y39_c00061{bottom:832.050000px;}
.y3d_c00061{bottom:832.905000px;}
.y3b_c00061{bottom:833.325000px;}
.y3a_c00061{bottom:833.970000px;}
.y3e_c00061{bottom:834.405000px;}
.y40_c00061{bottom:835.050000px;}
.y3c_c00061{bottom:835.470000px;}
.y3f_c00061{bottom:835.695000px;}
.y38_c00061{bottom:846.825000px;}
.y37_c00061{bottom:847.905000px;}
.y32_c00061{bottom:861.825000px;}
.y31_c00061{bottom:862.050000px;}
.y33_c00061{bottom:862.905000px;}
.y36_c00061{bottom:863.130000px;}
.y34_c00061{bottom:864.195000px;}
.y35_c00061{bottom:865.050000px;}
.y30_c00061{bottom:876.825000px;}
.y2d_c00061{bottom:877.905000px;}
.y2e_c00061{bottom:878.130000px;}
.y2f_c00061{bottom:878.970000px;}
.y2b_c00061{bottom:891.825000px;}
.y2a_c00061{bottom:892.905000px;}
.y28_c00061{bottom:893.130000px;}
.y29_c00061{bottom:893.970000px;}
.y2c_c00061{bottom:895.050000px;}
.y27_c00061{bottom:905.970000px;}
.y23_c00061{bottom:906.825000px;}
.y25_c00061{bottom:907.905000px;}
.y26_c00061{bottom:908.130000px;}
.y22_c00061{bottom:909.195000px;}
.y24_c00061{bottom:910.050000px;}
.y21_c00061{bottom:943.245000px;}
.y20_c00061{bottom:945.405000px;}
.y1f_c00061{bottom:961.905000px;}
.y1c_c00061{bottom:962.745000px;}
.y1e_c00061{bottom:962.970000px;}
.y1d_c00061{bottom:963.825000px;}
.y1b_c00061{bottom:964.905000px;}
.y14_c00061{bottom:982.245000px;}
.y17_c00061{bottom:982.905000px;}
.y16_c00061{bottom:983.745000px;}
.y15_c00061{bottom:984.405000px;}
.y18_c00061{bottom:984.630000px;}
.y19_c00061{bottom:985.470000px;}
.y1a_c00061{bottom:985.905000px;}
.y12_c00061{bottom:1001.745000px;}
.y10_c00061{bottom:1003.905000px;}
.y11_c00061{bottom:1004.130000px;}
.y13_c00061{bottom:1004.970000px;}
.yf_c00061{bottom:1021.245000px;}
.yd_c00061{bottom:1023.405000px;}
.ye_c00061{bottom:1023.630000px;}
.yb_c00061{bottom:1041.420000px;}
.ya_c00061{bottom:1042.245000px;}
.y8_c00061{bottom:1042.905000px;}
.yc_c00061{bottom:1043.130000px;}
.y9_c00061{bottom:1044.405000px;}
.y6_c00061{bottom:1059.405000px;}
.y5_c00061{bottom:1060.470000px;}
.y3_c00061{bottom:1061.745000px;}
.y7_c00061{bottom:1062.630000px;}
.y4_c00061{bottom:1063.905000px;}
.y2_c00061{bottom:1098.405000px;}
.y1_c00061{bottom:1102.050000px;}
.h6_c00061{height:4.206533px;}
.h8_c00061{height:16.752334px;}
.h5_c00061{height:23.025234px;}
.h1_c00061{height:25.091602px;}
.h4_c00061{height:31.364502px;}
.h2_c00061{height:35.571035px;}
.h9_c00061{height:39.044502px;}
.h7_c00061{height:39.777568px;}
.h3_c00061{height:43.910303px;}
.ha_c00061{height:48.116836px;}
.h0_c00061{height:1335.000000px;}
.w0_c00061{width:880.500000px;}
.x0_c00061{left:0.000000px;}
.x2_c00061{left:149.580000px;}
.x3_c00061{left:151.080000px;}
.x6a_c00061{left:153.000000px;}
.xd1_c00061{left:163.500000px;}
.x86_c00061{left:165.000000px;}
.x4b_c00061{left:166.080000px;}
.xcd_c00061{left:167.355000px;}
.x3e_c00061{left:169.920000px;}
.x11_c00061{left:171.420000px;}
.xab_c00061{left:175.500000px;}
.x90_c00061{left:178.500000px;}
.x6b_c00061{left:180.855000px;}
.x4c_c00061{left:183.000000px;}
.x53_c00061{left:184.080000px;}
.xb3_c00061{left:190.500000px;}
.x61_c00061{left:192.420000px;}
.x2c_c00061{left:194.580000px;}
.x106_c00061{left:196.080000px;}
.x4_c00061{left:198.645000px;}
.x35_c00061{left:204.420000px;}
.x87_c00061{left:205.500000px;}
.x75_c00061{left:208.500000px;}
.xed_c00061{left:211.500000px;}
.x20_c00061{left:214.080000px;}
.xff_c00061{left:216.000000px;}
.xdb_c00061{left:220.500000px;}
.x54_c00061{left:222.645000px;}
.x48_c00061{left:223.920000px;}
.xc3_c00061{left:225.420000px;}
.xbc_c00061{left:226.920000px;}
.x96_c00061{left:231.420000px;}
.x36_c00061{left:232.500000px;}
.x8a_c00061{left:235.500000px;}
.xac_c00061{left:236.580000px;}
.x88_c00061{left:238.080000px;}
.x6c_c00061{left:240.420000px;}
.x2d_c00061{left:241.500000px;}
.x21_c00061{left:244.500000px;}
.x107_c00061{left:246.000000px;}
.x5_c00061{left:249.420000px;}
.x12_c00061{left:250.500000px;}
.x49_c00061{left:252.420000px;}
.xbd_c00061{left:253.500000px;}
.x76_c00061{left:255.000000px;}
.xe7_c00061{left:256.080000px;}
.x97_c00061{left:258.000000px;}
.x108_c00061{left:259.500000px;}
.xb4_c00061{left:261.000000px;}
.x91_c00061{left:262.080000px;}
.x9d_c00061{left:264.420000px;}
.x2e_c00061{left:265.500000px;}
.x4d_c00061{left:267.000000px;}
.xad_c00061{left:270.420000px;}
.x77_c00061{left:274.500000px;}
.xf3_c00061{left:276.000000px;}
.xe9_c00061{left:277.500000px;}
.x62_c00061{left:279.420000px;}
.x89_c00061{left:281.580000px;}
.x6_c00061{left:283.920000px;}
.x6d_c00061{left:287.580000px;}
.xfa_c00061{left:289.920000px;}
.x100_c00061{left:291.000000px;}
.xdc_c00061{left:294.420000px;}
.x13_c00061{left:295.920000px;}
.x63_c00061{left:299.580000px;}
.xf1_c00061{left:301.500000px;}
.xcc_c00061{left:303.000000px;}
.xe5_c00061{left:304.500000px;}
.x6e_c00061{left:306.420000px;}
.xf4_c00061{left:309.000000px;}
.xc6_c00061{left:310.500000px;}
.x22_c00061{left:312.000000px;}
.x55_c00061{left:313.080000px;}
.x37_c00061{left:315.000000px;}
.x98_c00061{left:316.500000px;}
.x80_c00061{left:318.000000px;}
.x2f_c00061{left:321.000000px;}
.x14_c00061{left:322.920000px;}
.xa3_c00061{left:324.000000px;}
.x7_c00061{left:325.500000px;}
.xbe_c00061{left:328.920000px;}
.x64_c00061{left:330.000000px;}
.x56_c00061{left:331.500000px;}
.x3f_c00061{left:332.580000px;}
.xd8_c00061{left:337.500000px;}
.x81_c00061{left:339.000000px;}
.xb5_c00061{left:340.080000px;}
.x23_c00061{left:341.580000px;}
.x78_c00061{left:342.645000px;}
.x8b_c00061{left:345.420000px;}
.xbf_c00061{left:346.500000px;}
.xc7_c00061{left:349.500000px;}
.xea_c00061{left:351.000000px;}
.xc4_c00061{left:352.080000px;}
.xae_c00061{left:354.000000px;}
.x57_c00061{left:357.000000px;}
.xa4_c00061{left:358.920000px;}
.xd2_c00061{left:360.420000px;}
.x15_c00061{left:362.580000px;}
.x99_c00061{left:367.500000px;}
.x8_c00061{left:370.920000px;}
.x9e_c00061{left:372.000000px;}
.xf2_c00061{left:373.080000px;}
.x4e_c00061{left:376.500000px;}
.x24_c00061{left:379.080000px;}
.xc5_c00061{left:381.420000px;}
.x16_c00061{left:382.500000px;}
.xa5_c00061{left:384.000000px;}
.x79_c00061{left:385.500000px;}
.xd3_c00061{left:387.000000px;}
.x9f_c00061{left:388.500000px;}
.x40_c00061{left:389.580000px;}
.x65_c00061{left:391.080000px;}
.x4a_c00061{left:393.000000px;}
.x38_c00061{left:394.920000px;}
.x1_c00061{left:396.000000px;}
.xdd_c00061{left:397.500000px;}
.xb6_c00061{left:398.580000px;}
.x101_c00061{left:400.500000px;}
.x9a_c00061{left:402.420000px;}
.x82_c00061{left:403.500000px;}
.x41_c00061{left:405.420000px;}
.x9_c00061{left:408.000000px;}
.xdf_c00061{left:409.500000px;}
.xde_c00061{left:411.000000px;}
.x25_c00061{left:412.500000px;}
.xaf_c00061{left:415.500000px;}
.x58_c00061{left:417.645000px;}
.x17_c00061{left:418.920000px;}
.xe6_c00061{left:420.000000px;}
.x39_c00061{left:423.000000px;}
.x103_c00061{left:424.920000px;}
.xd9_c00061{left:426.000000px;}
.xa0_c00061{left:429.420000px;}
.xe0_c00061{left:430.500000px;}
.xa6_c00061{left:433.080000px;}
.xd4_c00061{left:435.000000px;}
.x92_c00061{left:436.500000px;}
.x66_c00061{left:439.920000px;}
.xa7_c00061{left:442.500000px;}
.xc0_c00061{left:443.580000px;}
.x8c_c00061{left:445.500000px;}
.x30_c00061{left:446.580000px;}
.x6f_c00061{left:450.000000px;}
.xf6_c00061{left:453.000000px;}
.x7a_c00061{left:454.080000px;}
.xe1_c00061{left:456.420000px;}
.xa_c00061{left:460.500000px;}
.x59_c00061{left:462.000000px;}
.xfb_c00061{left:463.500000px;}
.x4f_c00061{left:464.580000px;}
.x8d_c00061{left:468.000000px;}
.x18_c00061{left:469.500000px;}
.x5a_c00061{left:474.000000px;}
.xf7_c00061{left:475.920000px;}
.xc1_c00061{left:477.000000px;}
.x31_c00061{left:478.080000px;}
.xb7_c00061{left:479.145000px;}
.xa1_c00061{left:481.080000px;}
.xb_c00061{left:484.920000px;}
.xfc_c00061{left:486.000000px;}
.x9b_c00061{left:487.080000px;}
.xd5_c00061{left:490.080000px;}
.x67_c00061{left:492.000000px;}
.x93_c00061{left:494.145000px;}
.x19_c00061{left:496.500000px;}
.x32_c00061{left:498.645000px;}
.xce_c00061{left:499.920000px;}
.x70_c00061{left:502.080000px;}
.xeb_c00061{left:504.000000px;}
.x26_c00061{left:507.000000px;}
.x42_c00061{left:510.000000px;}
.x7b_c00061{left:511.500000px;}
.xb0_c00061{left:512.580000px;}
.x5b_c00061{left:514.500000px;}
.x83_c00061{left:515.580000px;}
.x1a_c00061{left:517.920000px;}
.xc8_c00061{left:519.000000px;}
.xda_c00061{left:520.500000px;}
.x7c_c00061{left:522.000000px;}
.xb8_c00061{left:523.500000px;}
.xc_c00061{left:525.420000px;}
.xe2_c00061{left:529.920000px;}
.x9c_c00061{left:531.000000px;}
.x3a_c00061{left:532.080000px;}
.x84_c00061{left:533.145000px;}
.x27_c00061{left:537.000000px;}
.xe8_c00061{left:541.080000px;}
.x43_c00061{left:543.000000px;}
.xb1_c00061{left:544.080000px;}
.x1b_c00061{left:546.420000px;}
.xe3_c00061{left:547.500000px;}
.x5c_c00061{left:549.420000px;}
.xa8_c00061{left:558.000000px;}
.x71_c00061{left:559.500000px;}
.xd6_c00061{left:561.000000px;}
.xd_c00061{left:562.500000px;}
.x28_c00061{left:564.000000px;}
.x7d_c00061{left:566.580000px;}
.xcf_c00061{left:569.580000px;}
.x72_c00061{left:571.920000px;}
.xee_c00061{left:573.420000px;}
.x102_c00061{left:574.500000px;}
.xf5_c00061{left:575.580000px;}
.x50_c00061{left:577.080000px;}
.x68_c00061{left:579.000000px;}
.xc9_c00061{left:580.080000px;}
.x44_c00061{left:581.580000px;}
.xfd_c00061{left:583.500000px;}
.xd0_c00061{left:584.580000px;}
.xa9_c00061{left:586.920000px;}
.xb2_c00061{left:588.420000px;}
.x1c_c00061{left:589.920000px;}
.x94_c00061{left:591.000000px;}
.x5d_c00061{left:592.500000px;}
.x7e_c00061{left:594.420000px;}
.x3b_c00061{left:597.000000px;}
.xe_c00061{left:598.080000px;}
.x51_c00061{left:604.080000px;}
.xc2_c00061{left:607.500000px;}
.xe4_c00061{left:610.920000px;}
.xaa_c00061{left:612.000000px;}
.x3c_c00061{left:615.000000px;}
.x33_c00061{left:616.920000px;}
.xd7_c00061{left:618.000000px;}
.xf_c00061{left:619.920000px;}
.x5e_c00061{left:622.080000px;}
.xec_c00061{left:625.920000px;}
.x1d_c00061{left:627.000000px;}
.x8e_c00061{left:630.000000px;}
.x95_c00061{left:631.080000px;}
.x29_c00061{left:633.420000px;}
.x45_c00061{left:635.775000px;}
.xca_c00061{left:637.500000px;}
.x104_c00061{left:642.000000px;}
.x109_c00061{left:644.355000px;}
.x34_c00061{left:646.080000px;}
.xa2_c00061{left:648.420000px;}
.x5f_c00061{left:651.000000px;}
.x1e_c00061{left:654.000000px;}
.x10_c00061{left:655.500000px;}
.xf8_c00061{left:657.420000px;}
.xef_c00061{left:658.500000px;}
.xb9_c00061{left:659.580000px;}
.x73_c00061{left:661.080000px;}
.x7f_c00061{left:666.420000px;}
.x2a_c00061{left:669.420000px;}
.xba_c00061{left:672.000000px;}
.x46_c00061{left:673.500000px;}
.x105_c00061{left:678.000000px;}
.x85_c00061{left:679.080000px;}
.x52_c00061{left:681.000000px;}
.x47_c00061{left:684.000000px;}
.xfe_c00061{left:685.500000px;}
.x3d_c00061{left:690.000000px;}
.x74_c00061{left:691.080000px;}
.x60_c00061{left:692.355000px;}
.xf0_c00061{left:693.420000px;}
.x1f_c00061{left:694.920000px;}
.xf9_c00061{left:697.500000px;}
.x69_c00061{left:700.500000px;}
.xcb_c00061{left:701.580000px;}
.x8f_c00061{left:705.000000px;}
.xbb_c00061{left:706.080000px;}
.x2b_c00061{left:708.000000px;}
@media print{
.v0_c00061{vertical-align:0.000000pt;}
.v1_c00061{vertical-align:6.826667pt;}
.ls1_c00061{letter-spacing:0.000000pt;}
.ls0_c00061{letter-spacing:10.504533pt;}
.ws1_c00061{word-spacing:-5.737640pt;}
.ws0_c00061{word-spacing:-2.598853pt;}
.ws3_c00061{word-spacing:0.000000pt;}
.ws2_c00061{word-spacing:0.273822pt;}
.fs5_c00061{font-size:3.040000pt;}
.fs7_c00061{font-size:12.106667pt;}
.fs4_c00061{font-size:16.640000pt;}
.fs0_c00061{font-size:18.133333pt;}
.fs3_c00061{font-size:22.666667pt;}
.fs1_c00061{font-size:25.706667pt;}
.fs6_c00061{font-size:28.746667pt;}
.fs2_c00061{font-size:31.733333pt;}
.fs8_c00061{font-size:34.773333pt;}
.y0_c00061{bottom:0.000000pt;}
.y10b_c00061{bottom:225.106667pt;}
.y10a_c00061{bottom:225.893333pt;}
.y10e_c00061{bottom:226.066667pt;}
.y10d_c00061{bottom:226.640000pt;}
.y109_c00061{bottom:227.026667pt;}
.y10c_c00061{bottom:227.226667pt;}
.y106_c00061{bottom:242.440000pt;}
.y105_c00061{bottom:243.226667pt;}
.y108_c00061{bottom:243.400000pt;}
.y104_c00061{bottom:244.360000pt;}
.y107_c00061{bottom:245.693333pt;}
.y103_c00061{bottom:259.026667pt;}
.y100_c00061{bottom:260.933333pt;}
.yff_c00061{bottom:261.693333pt;}
.y102_c00061{bottom:261.893333pt;}
.y101_c00061{bottom:263.026667pt;}
.yfd_c00061{bottom:277.106667pt;}
.yfc_c00061{bottom:278.440000pt;}
.yfa_c00061{bottom:279.026667pt;}
.yfe_c00061{bottom:279.973333pt;}
.yfb_c00061{bottom:280.360000pt;}
.yf3_c00061{bottom:294.440000pt;}
.yf5_c00061{bottom:294.826667pt;}
.yf7_c00061{bottom:295.773333pt;}
.yf4_c00061{bottom:296.360000pt;}
.yf9_c00061{bottom:296.560000pt;}
.yf8_c00061{bottom:296.733333pt;}
.yf6_c00061{bottom:297.693333pt;}
.yf1_c00061{bottom:312.160000pt;}
.yed_c00061{bottom:313.106667pt;}
.yf0_c00061{bottom:313.493333pt;}
.yf2_c00061{bottom:313.893333pt;}
.yef_c00061{bottom:315.026667pt;}
.yee_c00061{bottom:315.040000pt;}
.yeb_c00061{bottom:345.693333pt;}
.yec_c00061{bottom:346.066667pt;}
.yea_c00061{bottom:346.266667pt;}
.ye6_c00061{bottom:346.640000pt;}
.ye8_c00061{bottom:347.026667pt;}
.ye9_c00061{bottom:347.226667pt;}
.ye7_c00061{bottom:347.973333pt;}
.ye1_c00061{bottom:358.066667pt;}
.ye5_c00061{bottom:358.640000pt;}
.ye4_c00061{bottom:359.026667pt;}
.ye2_c00061{bottom:359.226667pt;}
.ye3_c00061{bottom:360.933333pt;}
.yde_c00061{bottom:371.400000pt;}
.ydf_c00061{bottom:372.360000pt;}
.ye0_c00061{bottom:372.560000pt;}
.ydc_c00061{bottom:372.733333pt;}
.ydb_c00061{bottom:373.306667pt;}
.ydd_c00061{bottom:373.506667pt;}
.yda_c00061{bottom:374.266667pt;}
.yd5_c00061{bottom:384.733333pt;}
.yd9_c00061{bottom:386.066667pt;}
.yd6_c00061{bottom:387.026667pt;}
.yd7_c00061{bottom:388.173333pt;}
.yd8_c00061{bottom:388.933333pt;}
.yd3_c00061{bottom:397.306667pt;}
.ycf_c00061{bottom:398.266667pt;}
.yd1_c00061{bottom:399.026667pt;}
.yd0_c00061{bottom:399.973333pt;}
.yd2_c00061{bottom:400.560000pt;}
.yd4_c00061{bottom:400.933333pt;}
.ycd_c00061{bottom:410.640000pt;}
.ycc_c00061{bottom:411.400000pt;}
.yca_c00061{bottom:412.360000pt;}
.yce_c00061{bottom:413.306667pt;}
.ycb_c00061{bottom:413.506667pt;}
.yc9_c00061{bottom:414.266667pt;}
.yc2_c00061{bottom:424.733333pt;}
.yc6_c00061{bottom:425.306667pt;}
.yc8_c00061{bottom:425.693333pt;}
.yc4_c00061{bottom:425.893333pt;}
.yc1_c00061{bottom:426.266667pt;}
.yc3_c00061{bottom:426.640000pt;}
.yc5_c00061{bottom:426.840000pt;}
.yc7_c00061{bottom:427.600000pt;}
.ybc_c00061{bottom:437.306667pt;}
.yc0_c00061{bottom:438.066667pt;}
.ybd_c00061{bottom:439.026667pt;}
.ybf_c00061{bottom:439.973333pt;}
.ybe_c00061{bottom:440.173333pt;}
.ybb_c00061{bottom:451.026667pt;}
.yb9_c00061{bottom:451.600000pt;}
.yb8_c00061{bottom:452.360000pt;}
.yba_c00061{bottom:452.933333pt;}
.yb6_c00061{bottom:453.306667pt;}
.yb7_c00061{bottom:453.506667pt;}
.yb0_c00061{bottom:463.600000pt;}
.yb4_c00061{bottom:464.733333pt;}
.yb2_c00061{bottom:465.693333pt;}
.yb3_c00061{bottom:466.266667pt;}
.yb5_c00061{bottom:466.640000pt;}
.yb1_c00061{bottom:467.600000pt;}
.yac_c00061{bottom:475.973333pt;}
.yaa_c00061{bottom:476.733333pt;}
.yab_c00061{bottom:476.933333pt;}
.yad_c00061{bottom:477.693333pt;}
.ya8_c00061{bottom:477.893333pt;}
.yaf_c00061{bottom:478.640000pt;}
.yae_c00061{bottom:478.840000pt;}
.ya9_c00061{bottom:479.600000pt;}
.ya7_c00061{bottom:490.066667pt;}
.ya3_c00061{bottom:490.266667pt;}
.ya4_c00061{bottom:491.026667pt;}
.ya5_c00061{bottom:491.973333pt;}
.ya6_c00061{bottom:492.933333pt;}
.ya2_c00061{bottom:503.400000pt;}
.ya0_c00061{bottom:504.360000pt;}
.ya1_c00061{bottom:505.306667pt;}
.y9f_c00061{bottom:516.733333pt;}
.y9d_c00061{bottom:516.933333pt;}
.y9c_c00061{bottom:517.693333pt;}
.y9a_c00061{bottom:517.893333pt;}
.y9b_c00061{bottom:518.640000pt;}
.y9e_c00061{bottom:518.840000pt;}
.y94_c00061{bottom:529.306667pt;}
.y98_c00061{bottom:530.066667pt;}
.y96_c00061{bottom:531.026667pt;}
.y97_c00061{bottom:531.226667pt;}
.y99_c00061{bottom:531.973333pt;}
.y95_c00061{bottom:532.933333pt;}
.y8e_c00061{bottom:543.026667pt;}
.y8f_c00061{bottom:543.600000pt;}
.y90_c00061{bottom:543.973333pt;}
.y8d_c00061{bottom:544.560000pt;}
.y91_c00061{bottom:544.933333pt;}
.y92_c00061{bottom:545.306667pt;}
.y93_c00061{bottom:545.506667pt;}
.y8c_c00061{bottom:555.400000pt;}
.y89_c00061{bottom:555.600000pt;}
.y8a_c00061{bottom:557.306667pt;}
.y8b_c00061{bottom:558.266667pt;}
.y86_c00061{bottom:568.733333pt;}
.y87_c00061{bottom:569.693333pt;}
.y84_c00061{bottom:569.893333pt;}
.y85_c00061{bottom:570.640000pt;}
.y88_c00061{bottom:570.840000pt;}
.y81_c00061{bottom:582.066667pt;}
.y83_c00061{bottom:582.640000pt;}
.y82_c00061{bottom:583.026667pt;}
.y80_c00061{bottom:594.640000pt;}
.y7c_c00061{bottom:595.400000pt;}
.y7f_c00061{bottom:595.600000pt;}
.y7d_c00061{bottom:596.360000pt;}
.y7a_c00061{bottom:596.560000pt;}
.y7e_c00061{bottom:597.306667pt;}
.y7b_c00061{bottom:598.266667pt;}
.y73_c00061{bottom:607.973333pt;}
.y77_c00061{bottom:608.733333pt;}
.y74_c00061{bottom:608.933333pt;}
.y79_c00061{bottom:609.693333pt;}
.y75_c00061{bottom:609.893333pt;}
.y78_c00061{bottom:610.840000pt;}
.y76_c00061{bottom:611.600000pt;}
.y6a_c00061{bottom:620.933333pt;}
.y72_c00061{bottom:621.306667pt;}
.y71_c00061{bottom:621.693333pt;}
.y70_c00061{bottom:622.066667pt;}
.y6f_c00061{bottom:622.266667pt;}
.y6e_c00061{bottom:622.640000pt;}
.y6b_c00061{bottom:623.026667pt;}
.y6c_c00061{bottom:623.973333pt;}
.y6d_c00061{bottom:624.933333pt;}
.y62_c00061{bottom:634.266667pt;}
.y66_c00061{bottom:634.640000pt;}
.y69_c00061{bottom:635.026667pt;}
.y65_c00061{bottom:635.400000pt;}
.y63_c00061{bottom:635.973333pt;}
.y68_c00061{bottom:636.360000pt;}
.y64_c00061{bottom:636.933333pt;}
.y67_c00061{bottom:637.306667pt;}
.y61_c00061{bottom:648.360000pt;}
.y5e_c00061{bottom:648.733333pt;}
.y5f_c00061{bottom:649.693333pt;}
.y60_c00061{bottom:649.893333pt;}
.y5c_c00061{bottom:650.266667pt;}
.y5d_c00061{bottom:650.640000pt;}
.y5b_c00061{bottom:661.693333pt;}
.y5a_c00061{bottom:663.600000pt;}
.y53_c00061{bottom:673.306667pt;}
.y59_c00061{bottom:674.640000pt;}
.y54_c00061{bottom:675.026667pt;}
.y57_c00061{bottom:675.226667pt;}
.y56_c00061{bottom:675.973333pt;}
.y58_c00061{bottom:676.560000pt;}
.y55_c00061{bottom:676.933333pt;}
.y52_c00061{bottom:687.973333pt;}
.y51_c00061{bottom:688.360000pt;}
.y4f_c00061{bottom:688.560000pt;}
.y50_c00061{bottom:690.266667pt;}
.y4c_c00061{bottom:701.693333pt;}
.y4d_c00061{bottom:701.893333pt;}
.y4a_c00061{bottom:702.266667pt;}
.y4b_c00061{bottom:702.640000pt;}
.y4e_c00061{bottom:703.600000pt;}
.y43_c00061{bottom:713.306667pt;}
.y44_c00061{bottom:714.066667pt;}
.y47_c00061{bottom:715.026667pt;}
.y45_c00061{bottom:715.226667pt;}
.y46_c00061{bottom:715.973333pt;}
.y48_c00061{bottom:716.173333pt;}
.y49_c00061{bottom:716.933333pt;}
.y42_c00061{bottom:728.360000pt;}
.y41_c00061{bottom:729.306667pt;}
.y39_c00061{bottom:739.600000pt;}
.y3d_c00061{bottom:740.360000pt;}
.y3b_c00061{bottom:740.733333pt;}
.y3a_c00061{bottom:741.306667pt;}
.y3e_c00061{bottom:741.693333pt;}
.y40_c00061{bottom:742.266667pt;}
.y3c_c00061{bottom:742.640000pt;}
.y3f_c00061{bottom:742.840000pt;}
.y38_c00061{bottom:752.733333pt;}
.y37_c00061{bottom:753.693333pt;}
.y32_c00061{bottom:766.066667pt;}
.y31_c00061{bottom:766.266667pt;}
.y33_c00061{bottom:767.026667pt;}
.y36_c00061{bottom:767.226667pt;}
.y34_c00061{bottom:768.173333pt;}
.y35_c00061{bottom:768.933333pt;}
.y30_c00061{bottom:779.400000pt;}
.y2d_c00061{bottom:780.360000pt;}
.y2e_c00061{bottom:780.560000pt;}
.y2f_c00061{bottom:781.306667pt;}
.y2b_c00061{bottom:792.733333pt;}
.y2a_c00061{bottom:793.693333pt;}
.y28_c00061{bottom:793.893333pt;}
.y29_c00061{bottom:794.640000pt;}
.y2c_c00061{bottom:795.600000pt;}
.y27_c00061{bottom:805.306667pt;}
.y23_c00061{bottom:806.066667pt;}
.y25_c00061{bottom:807.026667pt;}
.y26_c00061{bottom:807.226667pt;}
.y22_c00061{bottom:808.173333pt;}
.y24_c00061{bottom:808.933333pt;}
.y21_c00061{bottom:838.440000pt;}
.y20_c00061{bottom:840.360000pt;}
.y1f_c00061{bottom:855.026667pt;}
.y1c_c00061{bottom:855.773333pt;}
.y1e_c00061{bottom:855.973333pt;}
.y1d_c00061{bottom:856.733333pt;}
.y1b_c00061{bottom:857.693333pt;}
.y14_c00061{bottom:873.106667pt;}
.y17_c00061{bottom:873.693333pt;}
.y16_c00061{bottom:874.440000pt;}
.y15_c00061{bottom:875.026667pt;}
.y18_c00061{bottom:875.226667pt;}
.y19_c00061{bottom:875.973333pt;}
.y1a_c00061{bottom:876.360000pt;}
.y12_c00061{bottom:890.440000pt;}
.y10_c00061{bottom:892.360000pt;}
.y11_c00061{bottom:892.560000pt;}
.y13_c00061{bottom:893.306667pt;}
.yf_c00061{bottom:907.773333pt;}
.yd_c00061{bottom:909.693333pt;}
.ye_c00061{bottom:909.893333pt;}
.yb_c00061{bottom:925.706667pt;}
.ya_c00061{bottom:926.440000pt;}
.y8_c00061{bottom:927.026667pt;}
.yc_c00061{bottom:927.226667pt;}
.y9_c00061{bottom:928.360000pt;}
.y6_c00061{bottom:941.693333pt;}
.y5_c00061{bottom:942.640000pt;}
.y3_c00061{bottom:943.773333pt;}
.y7_c00061{bottom:944.560000pt;}
.y4_c00061{bottom:945.693333pt;}
.y2_c00061{bottom:976.360000pt;}
.y1_c00061{bottom:979.600000pt;}
.h6_c00061{height:3.739141pt;}
.h8_c00061{height:14.890964pt;}
.h5_c00061{height:20.466875pt;}
.h1_c00061{height:22.303646pt;}
.h4_c00061{height:27.879557pt;}
.h2_c00061{height:31.618698pt;}
.h9_c00061{height:34.706224pt;}
.h7_c00061{height:35.357839pt;}
.h3_c00061{height:39.031380pt;}
.ha_c00061{height:42.770521pt;}
.h0_c00061{height:1186.666667pt;}
.w0_c00061{width:782.666667pt;}
.x0_c00061{left:0.000000pt;}
.x2_c00061{left:132.960000pt;}
.x3_c00061{left:134.293333pt;}
.x6a_c00061{left:136.000000pt;}
.xd1_c00061{left:145.333333pt;}
.x86_c00061{left:146.666667pt;}
.x4b_c00061{left:147.626667pt;}
.xcd_c00061{left:148.760000pt;}
.x3e_c00061{left:151.040000pt;}
.x11_c00061{left:152.373333pt;}
.xab_c00061{left:156.000000pt;}
.x90_c00061{left:158.666667pt;}
.x6b_c00061{left:160.760000pt;}
.x4c_c00061{left:162.666667pt;}
.x53_c00061{left:163.626667pt;}
.xb3_c00061{left:169.333333pt;}
.x61_c00061{left:171.040000pt;}
.x2c_c00061{left:172.960000pt;}
.x106_c00061{left:174.293333pt;}
.x4_c00061{left:176.573333pt;}
.x35_c00061{left:181.706667pt;}
.x87_c00061{left:182.666667pt;}
.x75_c00061{left:185.333333pt;}
.xed_c00061{left:188.000000pt;}
.x20_c00061{left:190.293333pt;}
.xff_c00061{left:192.000000pt;}
.xdb_c00061{left:196.000000pt;}
.x54_c00061{left:197.906667pt;}
.x48_c00061{left:199.040000pt;}
.xc3_c00061{left:200.373333pt;}
.xbc_c00061{left:201.706667pt;}
.x96_c00061{left:205.706667pt;}
.x36_c00061{left:206.666667pt;}
.x8a_c00061{left:209.333333pt;}
.xac_c00061{left:210.293333pt;}
.x88_c00061{left:211.626667pt;}
.x6c_c00061{left:213.706667pt;}
.x2d_c00061{left:214.666667pt;}
.x21_c00061{left:217.333333pt;}
.x107_c00061{left:218.666667pt;}
.x5_c00061{left:221.706667pt;}
.x12_c00061{left:222.666667pt;}
.x49_c00061{left:224.373333pt;}
.xbd_c00061{left:225.333333pt;}
.x76_c00061{left:226.666667pt;}
.xe7_c00061{left:227.626667pt;}
.x97_c00061{left:229.333333pt;}
.x108_c00061{left:230.666667pt;}
.xb4_c00061{left:232.000000pt;}
.x91_c00061{left:232.960000pt;}
.x9d_c00061{left:235.040000pt;}
.x2e_c00061{left:236.000000pt;}
.x4d_c00061{left:237.333333pt;}
.xad_c00061{left:240.373333pt;}
.x77_c00061{left:244.000000pt;}
.xf3_c00061{left:245.333333pt;}
.xe9_c00061{left:246.666667pt;}
.x62_c00061{left:248.373333pt;}
.x89_c00061{left:250.293333pt;}
.x6_c00061{left:252.373333pt;}
.x6d_c00061{left:255.626667pt;}
.xfa_c00061{left:257.706667pt;}
.x100_c00061{left:258.666667pt;}
.xdc_c00061{left:261.706667pt;}
.x13_c00061{left:263.040000pt;}
.x63_c00061{left:266.293333pt;}
.xf1_c00061{left:268.000000pt;}
.xcc_c00061{left:269.333333pt;}
.xe5_c00061{left:270.666667pt;}
.x6e_c00061{left:272.373333pt;}
.xf4_c00061{left:274.666667pt;}
.xc6_c00061{left:276.000000pt;}
.x22_c00061{left:277.333333pt;}
.x55_c00061{left:278.293333pt;}
.x37_c00061{left:280.000000pt;}
.x98_c00061{left:281.333333pt;}
.x80_c00061{left:282.666667pt;}
.x2f_c00061{left:285.333333pt;}
.x14_c00061{left:287.040000pt;}
.xa3_c00061{left:288.000000pt;}
.x7_c00061{left:289.333333pt;}
.xbe_c00061{left:292.373333pt;}
.x64_c00061{left:293.333333pt;}
.x56_c00061{left:294.666667pt;}
.x3f_c00061{left:295.626667pt;}
.xd8_c00061{left:300.000000pt;}
.x81_c00061{left:301.333333pt;}
.xb5_c00061{left:302.293333pt;}
.x23_c00061{left:303.626667pt;}
.x78_c00061{left:304.573333pt;}
.x8b_c00061{left:307.040000pt;}
.xbf_c00061{left:308.000000pt;}
.xc7_c00061{left:310.666667pt;}
.xea_c00061{left:312.000000pt;}
.xc4_c00061{left:312.960000pt;}
.xae_c00061{left:314.666667pt;}
.x57_c00061{left:317.333333pt;}
.xa4_c00061{left:319.040000pt;}
.xd2_c00061{left:320.373333pt;}
.x15_c00061{left:322.293333pt;}
.x99_c00061{left:326.666667pt;}
.x8_c00061{left:329.706667pt;}
.x9e_c00061{left:330.666667pt;}
.xf2_c00061{left:331.626667pt;}
.x4e_c00061{left:334.666667pt;}
.x24_c00061{left:336.960000pt;}
.xc5_c00061{left:339.040000pt;}
.x16_c00061{left:340.000000pt;}
.xa5_c00061{left:341.333333pt;}
.x79_c00061{left:342.666667pt;}
.xd3_c00061{left:344.000000pt;}
.x9f_c00061{left:345.333333pt;}
.x40_c00061{left:346.293333pt;}
.x65_c00061{left:347.626667pt;}
.x4a_c00061{left:349.333333pt;}
.x38_c00061{left:351.040000pt;}
.x1_c00061{left:352.000000pt;}
.xdd_c00061{left:353.333333pt;}
.xb6_c00061{left:354.293333pt;}
.x101_c00061{left:356.000000pt;}
.x9a_c00061{left:357.706667pt;}
.x82_c00061{left:358.666667pt;}
.x41_c00061{left:360.373333pt;}
.x9_c00061{left:362.666667pt;}
.xdf_c00061{left:364.000000pt;}
.xde_c00061{left:365.333333pt;}
.x25_c00061{left:366.666667pt;}
.xaf_c00061{left:369.333333pt;}
.x58_c00061{left:371.240000pt;}
.x17_c00061{left:372.373333pt;}
.xe6_c00061{left:373.333333pt;}
.x39_c00061{left:376.000000pt;}
.x103_c00061{left:377.706667pt;}
.xd9_c00061{left:378.666667pt;}
.xa0_c00061{left:381.706667pt;}
.xe0_c00061{left:382.666667pt;}
.xa6_c00061{left:384.960000pt;}
.xd4_c00061{left:386.666667pt;}
.x92_c00061{left:388.000000pt;}
.x66_c00061{left:391.040000pt;}
.xa7_c00061{left:393.333333pt;}
.xc0_c00061{left:394.293333pt;}
.x8c_c00061{left:396.000000pt;}
.x30_c00061{left:396.960000pt;}
.x6f_c00061{left:400.000000pt;}
.xf6_c00061{left:402.666667pt;}
.x7a_c00061{left:403.626667pt;}
.xe1_c00061{left:405.706667pt;}
.xa_c00061{left:409.333333pt;}
.x59_c00061{left:410.666667pt;}
.xfb_c00061{left:412.000000pt;}
.x4f_c00061{left:412.960000pt;}
.x8d_c00061{left:416.000000pt;}
.x18_c00061{left:417.333333pt;}
.x5a_c00061{left:421.333333pt;}
.xf7_c00061{left:423.040000pt;}
.xc1_c00061{left:424.000000pt;}
.x31_c00061{left:424.960000pt;}
.xb7_c00061{left:425.906667pt;}
.xa1_c00061{left:427.626667pt;}
.xb_c00061{left:431.040000pt;}
.xfc_c00061{left:432.000000pt;}
.x9b_c00061{left:432.960000pt;}
.xd5_c00061{left:435.626667pt;}
.x67_c00061{left:437.333333pt;}
.x93_c00061{left:439.240000pt;}
.x19_c00061{left:441.333333pt;}
.x32_c00061{left:443.240000pt;}
.xce_c00061{left:444.373333pt;}
.x70_c00061{left:446.293333pt;}
.xeb_c00061{left:448.000000pt;}
.x26_c00061{left:450.666667pt;}
.x42_c00061{left:453.333333pt;}
.x7b_c00061{left:454.666667pt;}
.xb0_c00061{left:455.626667pt;}
.x5b_c00061{left:457.333333pt;}
.x83_c00061{left:458.293333pt;}
.x1a_c00061{left:460.373333pt;}
.xc8_c00061{left:461.333333pt;}
.xda_c00061{left:462.666667pt;}
.x7c_c00061{left:464.000000pt;}
.xb8_c00061{left:465.333333pt;}
.xc_c00061{left:467.040000pt;}
.xe2_c00061{left:471.040000pt;}
.x9c_c00061{left:472.000000pt;}
.x3a_c00061{left:472.960000pt;}
.x84_c00061{left:473.906667pt;}
.x27_c00061{left:477.333333pt;}
.xe8_c00061{left:480.960000pt;}
.x43_c00061{left:482.666667pt;}
.xb1_c00061{left:483.626667pt;}
.x1b_c00061{left:485.706667pt;}
.xe3_c00061{left:486.666667pt;}
.x5c_c00061{left:488.373333pt;}
.xa8_c00061{left:496.000000pt;}
.x71_c00061{left:497.333333pt;}
.xd6_c00061{left:498.666667pt;}
.xd_c00061{left:500.000000pt;}
.x28_c00061{left:501.333333pt;}
.x7d_c00061{left:503.626667pt;}
.xcf_c00061{left:506.293333pt;}
.x72_c00061{left:508.373333pt;}
.xee_c00061{left:509.706667pt;}
.x102_c00061{left:510.666667pt;}
.xf5_c00061{left:511.626667pt;}
.x50_c00061{left:512.960000pt;}
.x68_c00061{left:514.666667pt;}
.xc9_c00061{left:515.626667pt;}
.x44_c00061{left:516.960000pt;}
.xfd_c00061{left:518.666667pt;}
.xd0_c00061{left:519.626667pt;}
.xa9_c00061{left:521.706667pt;}
.xb2_c00061{left:523.040000pt;}
.x1c_c00061{left:524.373333pt;}
.x94_c00061{left:525.333333pt;}
.x5d_c00061{left:526.666667pt;}
.x7e_c00061{left:528.373333pt;}
.x3b_c00061{left:530.666667pt;}
.xe_c00061{left:531.626667pt;}
.x51_c00061{left:536.960000pt;}
.xc2_c00061{left:540.000000pt;}
.xe4_c00061{left:543.040000pt;}
.xaa_c00061{left:544.000000pt;}
.x3c_c00061{left:546.666667pt;}
.x33_c00061{left:548.373333pt;}
.xd7_c00061{left:549.333333pt;}
.xf_c00061{left:551.040000pt;}
.x5e_c00061{left:552.960000pt;}
.xec_c00061{left:556.373333pt;}
.x1d_c00061{left:557.333333pt;}
.x8e_c00061{left:560.000000pt;}
.x95_c00061{left:560.960000pt;}
.x29_c00061{left:563.040000pt;}
.x45_c00061{left:565.133333pt;}
.xca_c00061{left:566.666667pt;}
.x104_c00061{left:570.666667pt;}
.x109_c00061{left:572.760000pt;}
.x34_c00061{left:574.293333pt;}
.xa2_c00061{left:576.373333pt;}
.x5f_c00061{left:578.666667pt;}
.x1e_c00061{left:581.333333pt;}
.x10_c00061{left:582.666667pt;}
.xf8_c00061{left:584.373333pt;}
.xef_c00061{left:585.333333pt;}
.xb9_c00061{left:586.293333pt;}
.x73_c00061{left:587.626667pt;}
.x7f_c00061{left:592.373333pt;}
.x2a_c00061{left:595.040000pt;}
.xba_c00061{left:597.333333pt;}
.x46_c00061{left:598.666667pt;}
.x105_c00061{left:602.666667pt;}
.x85_c00061{left:603.626667pt;}
.x52_c00061{left:605.333333pt;}
.x47_c00061{left:608.000000pt;}
.xfe_c00061{left:609.333333pt;}
.x3d_c00061{left:613.333333pt;}
.x74_c00061{left:614.293333pt;}
.x60_c00061{left:615.426667pt;}
.xf0_c00061{left:616.373333pt;}
.x1f_c00061{left:617.706667pt;}
.xf9_c00061{left:620.000000pt;}
.x69_c00061{left:622.666667pt;}
.xcb_c00061{left:623.626667pt;}
.x8f_c00061{left:626.666667pt;}
.xbb_c00061{left:627.626667pt;}
.x2b_c00061{left:629.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eadad3f5a173ddb66a6770a1.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me8_c00062{transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);}
.m4e_c00062{transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);}
.mef_c00062{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.mc8_c00062{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);}
.mb9_c00062{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.me7_c00062{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mf0_c00062{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.m9b_c00062{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m81_c00062{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mda_c00062{transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);}
.mbb_c00062{transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);}
.mc9_c00062{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m2b_c00062{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m45_c00062{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.mdb_c00062{transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);}
.m8a_c00062{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mc6_c00062{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m79_c00062{transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);}
.m92_c00062{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m85_c00062{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.mcf_c00062{transform:matrix(0.394555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394555,0.000000,0.000000,0.250000,0,0);}
.m39_c00062{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.md6_c00062{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mce_c00062{transform:matrix(0.399156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399156,0.000000,0.000000,0.250000,0,0);}
.m50_c00062{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_c00062{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m94_c00062{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m31_c00062{transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);}
.md0_c00062{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m96_c00062{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m3a_c00062{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m70_c00062{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m5a_c00062{transform:matrix(0.407975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407975,0.000000,0.000000,0.250000,0,0);}
.m63_c00062{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.me_c00062{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mc1_c00062{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m6f_c00062{transform:matrix(0.412960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412960,0.000000,0.000000,0.250000,0,0);}
.m84_c00062{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m1a_c00062{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m55_c00062{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m1d_c00062{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.mc3_c00062{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.mb3_c00062{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m24_c00062{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.md9_c00062{transform:matrix(0.419862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419862,0.000000,0.000000,0.250000,0,0);}
.ma1_c00062{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m38_c00062{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m40_c00062{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m9c_c00062{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.me1_c00062{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m64_c00062{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m5b_c00062{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m9d_c00062{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.me9_c00062{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m65_c00062{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m68_c00062{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.md7_c00062{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m17_c00062{transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);}
.maf_c00062{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.m6_c00062{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.ma7_c00062{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mdd_c00062{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mc4_c00062{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.meb_c00062{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m49_c00062{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m9e_c00062{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.me0_c00062{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m4b_c00062{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mab_c00062{transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);}
.m76_c00062{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.ma4_c00062{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m11_c00062{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m83_c00062{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.ma2_c00062{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m14_c00062{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mac_c00062{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m9f_c00062{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.me5_c00062{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.ma0_c00062{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m34_c00062{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.mbc_c00062{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.me4_c00062{transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);}
.m8c_c00062{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m2d_c00062{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m82_c00062{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m3e_c00062{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m46_c00062{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.mc_c00062{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mee_c00062{transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);}
.m97_c00062{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mbd_c00062{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m20_c00062{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m71_c00062{transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);}
.mb0_c00062{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.m7d_c00062{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.mf_c00062{transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);}
.m6b_c00062{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.md4_c00062{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m67_c00062{transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);}
.md5_c00062{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m3f_c00062{transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);}
.m88_c00062{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m51_c00062{transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);}
.m90_c00062{transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);}
.mcc_c00062{transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);}
.m9_c00062{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mca_c00062{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.ma_c00062{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m75_c00062{transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);}
.mdc_c00062{transform:matrix(0.483896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483896,0.000000,0.000000,0.250000,0,0);}
.mb1_c00062{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m95_c00062{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m0_c00062{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.md3_c00062{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.ma8_c00062{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mae_c00062{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m7a_c00062{transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);}
.m25_c00062{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m4d_c00062{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mde_c00062{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m36_c00062{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m1b_c00062{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);}
.ma6_c00062{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m72_c00062{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m73_c00062{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.ma3_c00062{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m21_c00062{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m6c_c00062{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mc7_c00062{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m8b_c00062{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.maa_c00062{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mad_c00062{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m1c_c00062{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m5f_c00062{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m47_c00062{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m41_c00062{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m5d_c00062{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m15_c00062{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mb2_c00062{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m53_c00062{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mb4_c00062{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mb5_c00062{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m7e_c00062{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m6d_c00062{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m1f_c00062{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m28_c00062{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m48_c00062{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m43_c00062{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m57_c00062{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.me6_c00062{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m2_c00062{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m13_c00062{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m7c_c00062{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m66_c00062{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m7_c00062{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m5c_c00062{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m37_c00062{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m62_c00062{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m4a_c00062{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.md2_c00062{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m60_c00062{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mb_c00062{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.md1_c00062{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m93_c00062{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m58_c00062{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mec_c00062{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m5_c00062{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mbe_c00062{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m61_c00062{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m10_c00062{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m8d_c00062{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m87_c00062{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m78_c00062{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m4c_c00062{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m3b_c00062{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m89_c00062{transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);}
.m35_c00062{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mc2_c00062{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m80_c00062{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);}
.m54_c00062{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m5e_c00062{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m52_c00062{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.md8_c00062{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m74_c00062{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m3c_c00062{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m6e_c00062{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m2e_c00062{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m9a_c00062{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m99_c00062{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.ma9_c00062{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m4_c00062{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m7f_c00062{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m22_c00062{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.me2_c00062{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m23_c00062{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m42_c00062{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m18_c00062{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.med_c00062{transform:matrix(0.593880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593880,0.000000,0.000000,0.250000,0,0);}
.m33_c00062{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mbf_c00062{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.me3_c00062{transform:matrix(0.603529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603529,0.000000,0.000000,0.250000,0,0);}
.m2c_c00062{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m2a_c00062{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m30_c00062{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m2f_c00062{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m8_c00062{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m3_c00062{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mcd_c00062{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m8f_c00062{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.m69_c00062{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m29_c00062{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);}
.m6a_c00062{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mea_c00062{transform:matrix(0.628235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628235,0.000000,0.000000,0.250000,0,0);}
.m1_c00062{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.mb6_c00062{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mba_c00062{transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);}
.mc5_c00062{transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);}
.ma5_c00062{transform:matrix(0.659412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659412,0.000000,0.000000,0.250000,0,0);}
.m32_c00062{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m12_c00062{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m86_c00062{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m4f_c00062{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);}
.mdf_c00062{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m3d_c00062{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m1e_c00062{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mcb_c00062{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m91_c00062{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.mc0_c00062{transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);}
.m77_c00062{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m98_c00062{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m44_c00062{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m7b_c00062{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m16_c00062{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m27_c00062{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mb7_c00062{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.md_c00062{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m56_c00062{transform:matrix(0.780449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780449,0.000000,0.000000,0.250000,0,0);}
.m19_c00062{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mb8_c00062{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m59_c00062{transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);}
.m8e_c00062{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.v0_c00062{vertical-align:0.000000px;}
.ls0_c00062{letter-spacing:0.000000px;}
.sc__c00062{text-shadow:none;}
.sc0_c00062{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00062{-webkit-text-stroke:0px transparent;}
.sc0_c00062{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00062{word-spacing:-3.089552px;}
.ws1_c00062{word-spacing:0.000000px;}
.fc0_c00062{color:transparent;}
.fs4_c00062{font-size:18.720000px;}
.fs1_c00062{font-size:20.400000px;}
.fs5_c00062{font-size:25.500000px;}
.fs0_c00062{font-size:28.920000px;}
.fs3_c00062{font-size:32.340000px;}
.fs2_c00062{font-size:35.700000px;}
.fs6_c00062{font-size:39.120000px;}
.y0_c00062{bottom:0.000000px;}
.y10d_c00062{bottom:252.405000px;}
.y10c_c00062{bottom:253.245000px;}
.y10b_c00062{bottom:253.905000px;}
.y10f_c00062{bottom:254.745000px;}
.y10a_c00062{bottom:255.825000px;}
.y10e_c00062{bottom:256.905000px;}
.y105_c00062{bottom:271.245000px;}
.y107_c00062{bottom:273.630000px;}
.y104_c00062{bottom:274.470000px;}
.y106_c00062{bottom:274.905000px;}
.y108_c00062{bottom:275.130000px;}
.y109_c00062{bottom:276.405000px;}
.y103_c00062{bottom:279.825000px;}
.yff_c00062{bottom:292.245000px;}
.y102_c00062{bottom:292.680000px;}
.yfd_c00062{bottom:292.905000px;}
.yfb_c00062{bottom:293.130000px;}
.y101_c00062{bottom:293.745000px;}
.yfe_c00062{bottom:293.970000px;}
.yfc_c00062{bottom:294.405000px;}
.y100_c00062{bottom:294.825000px;}
.yfa_c00062{bottom:296.325000px;}
.yf7_c00062{bottom:311.745000px;}
.yf9_c00062{bottom:312.630000px;}
.yf8_c00062{bottom:313.905000px;}
.yf6_c00062{bottom:314.970000px;}
.yf5_c00062{bottom:315.405000px;}
.yf4_c00062{bottom:317.745000px;}
.yf1_c00062{bottom:331.245000px;}
.yf3_c00062{bottom:332.745000px;}
.yf2_c00062{bottom:333.405000px;}
.yf0_c00062{bottom:334.905000px;}
.yef_c00062{bottom:336.825000px;}
.yeb_c00062{bottom:349.680000px;}
.yec_c00062{bottom:350.745000px;}
.yed_c00062{bottom:351.825000px;}
.yea_c00062{bottom:352.905000px;}
.yee_c00062{bottom:354.405000px;}
.ye9_c00062{bottom:355.245000px;}
.ye7_c00062{bottom:370.245000px;}
.ye8_c00062{bottom:372.405000px;}
.ye6_c00062{bottom:372.630000px;}
.ye5_c00062{bottom:373.905000px;}
.ye4_c00062{bottom:376.245000px;}
.yde_c00062{bottom:389.325000px;}
.ydf_c00062{bottom:389.745000px;}
.ye1_c00062{bottom:391.245000px;}
.ydd_c00062{bottom:391.905000px;}
.ye0_c00062{bottom:392.130000px;}
.ye3_c00062{bottom:392.970000px;}
.ydc_c00062{bottom:393.405000px;}
.ye2_c00062{bottom:393.630000px;}
.ydb_c00062{bottom:394.905000px;}
.yda_c00062{bottom:397.905000px;}
.yd7_c00062{bottom:408.825000px;}
.yd5_c00062{bottom:409.245000px;}
.yd4_c00062{bottom:409.680000px;}
.yd9_c00062{bottom:410.745000px;}
.yd6_c00062{bottom:411.405000px;}
.yd3_c00062{bottom:412.680000px;}
.yd8_c00062{bottom:412.905000px;}
.yd2_c00062{bottom:429.825000px;}
.yd0_c00062{bottom:430.245000px;}
.yd1_c00062{bottom:431.130000px;}
.ycf_c00062{bottom:431.970000px;}
.yce_c00062{bottom:432.405000px;}
.ycd_c00062{bottom:433.050000px;}
.ycc_c00062{bottom:437.325000px;}
.yc7_c00062{bottom:447.405000px;}
.yc9_c00062{bottom:449.745000px;}
.yc8_c00062{bottom:450.825000px;}
.yc5_c00062{bottom:451.245000px;}
.yca_c00062{bottom:451.470000px;}
.yc6_c00062{bottom:451.905000px;}
.ycb_c00062{bottom:452.130000px;}
.yc4_c00062{bottom:454.905000px;}
.yc3_c00062{bottom:455.970000px;}
.yc2_c00062{bottom:467.745000px;}
.yc0_c00062{bottom:469.245000px;}
.yc1_c00062{bottom:471.405000px;}
.ybf_c00062{bottom:472.905000px;}
.ybe_c00062{bottom:475.050000px;}
.ybd_c00062{bottom:488.325000px;}
.yba_c00062{bottom:488.745000px;}
.yb8_c00062{bottom:489.180000px;}
.ybc_c00062{bottom:489.630000px;}
.ybb_c00062{bottom:490.470000px;}
.yb9_c00062{bottom:490.905000px;}
.yb7_c00062{bottom:495.825000px;}
.yb6_c00062{bottom:508.245000px;}
.yb3_c00062{bottom:509.745000px;}
.yb4_c00062{bottom:510.405000px;}
.yb5_c00062{bottom:511.470000px;}
.yb2_c00062{bottom:511.905000px;}
.yb1_c00062{bottom:513.405000px;}
.yae_c00062{bottom:529.905000px;}
.yb0_c00062{bottom:530.130000px;}
.yac_c00062{bottom:530.745000px;}
.yaf_c00062{bottom:530.970000px;}
.yad_c00062{bottom:531.405000px;}
.yab_c00062{bottom:534.825000px;}
.ya8_c00062{bottom:548.325000px;}
.yaa_c00062{bottom:548.745000px;}
.ya9_c00062{bottom:549.825000px;}
.ya7_c00062{bottom:550.905000px;}
.ya6_c00062{bottom:552.405000px;}
.ya5_c00062{bottom:554.325000px;}
.ya2_c00062{bottom:565.905000px;}
.ya4_c00062{bottom:566.745000px;}
.ya3_c00062{bottom:568.245000px;}
.ya1_c00062{bottom:570.405000px;}
.ya0_c00062{bottom:572.325000px;}
.y9e_c00062{bottom:587.745000px;}
.y9d_c00062{bottom:589.905000px;}
.y9f_c00062{bottom:590.130000px;}
.y9c_c00062{bottom:591.405000px;}
.y9b_c00062{bottom:592.905000px;}
.y9a_c00062{bottom:594.405000px;}
.y98_c00062{bottom:607.245000px;}
.y99_c00062{bottom:608.325000px;}
.y96_c00062{bottom:609.405000px;}
.y97_c00062{bottom:610.470000px;}
.y95_c00062{bottom:611.325000px;}
.y90_c00062{bottom:626.325000px;}
.y93_c00062{bottom:626.745000px;}
.y91_c00062{bottom:627.825000px;}
.y92_c00062{bottom:628.905000px;}
.y8f_c00062{bottom:629.130000px;}
.y8e_c00062{bottom:629.745000px;}
.y94_c00062{bottom:630.405000px;}
.y8a_c00062{bottom:647.745000px;}
.y8c_c00062{bottom:648.405000px;}
.y88_c00062{bottom:648.825000px;}
.y89_c00062{bottom:649.245000px;}
.y8d_c00062{bottom:649.470000px;}
.y8b_c00062{bottom:649.905000px;}
.y86_c00062{bottom:667.245000px;}
.y84_c00062{bottom:669.405000px;}
.y87_c00062{bottom:669.630000px;}
.y85_c00062{bottom:670.470000px;}
.y83_c00062{bottom:672.825000px;}
.y80_c00062{bottom:686.745000px;}
.y7f_c00062{bottom:687.630000px;}
.y81_c00062{bottom:687.825000px;}
.y7e_c00062{bottom:688.905000px;}
.y82_c00062{bottom:689.130000px;}
.y78_c00062{bottom:703.905000px;}
.y7a_c00062{bottom:706.245000px;}
.y79_c00062{bottom:707.550000px;}
.y77_c00062{bottom:708.405000px;}
.y7b_c00062{bottom:708.630000px;}
.y76_c00062{bottom:709.245000px;}
.y7c_c00062{bottom:709.470000px;}
.y7d_c00062{bottom:709.905000px;}
.y71_c00062{bottom:724.905000px;}
.y70_c00062{bottom:727.050000px;}
.y74_c00062{bottom:727.245000px;}
.y72_c00062{bottom:727.905000px;}
.y73_c00062{bottom:728.130000px;}
.y6f_c00062{bottom:728.745000px;}
.y75_c00062{bottom:728.970000px;}
.y6e_c00062{bottom:745.245000px;}
.y6b_c00062{bottom:747.405000px;}
.y6c_c00062{bottom:747.630000px;}
.y6d_c00062{bottom:748.470000px;}
.y6a_c00062{bottom:748.905000px;}
.y69_c00062{bottom:749.745000px;}
.y67_c00062{bottom:763.905000px;}
.y65_c00062{bottom:766.905000px;}
.y66_c00062{bottom:767.130000px;}
.y64_c00062{bottom:767.325000px;}
.y68_c00062{bottom:767.970000px;}
.y62_c00062{bottom:768.180000px;}
.y63_c00062{bottom:768.405000px;}
.y5d_c00062{bottom:784.245000px;}
.y60_c00062{bottom:785.745000px;}
.y5f_c00062{bottom:786.405000px;}
.y61_c00062{bottom:786.630000px;}
.y5e_c00062{bottom:786.825000px;}
.y5c_c00062{bottom:787.905000px;}
.y5b_c00062{bottom:788.325000px;}
.y5a_c00062{bottom:803.745000px;}
.y58_c00062{bottom:805.245000px;}
.y59_c00062{bottom:806.130000px;}
.y56_c00062{bottom:807.180000px;}
.y57_c00062{bottom:807.405000px;}
.y53_c00062{bottom:824.745000px;}
.y55_c00062{bottom:825.630000px;}
.y54_c00062{bottom:826.470000px;}
.y52_c00062{bottom:826.905000px;}
.y51_c00062{bottom:828.825000px;}
.y4c_c00062{bottom:843.825000px;}
.y4e_c00062{bottom:844.245000px;}
.y4b_c00062{bottom:845.325000px;}
.y4d_c00062{bottom:846.405000px;}
.y4f_c00062{bottom:846.630000px;}
.y50_c00062{bottom:847.470000px;}
.y4a_c00062{bottom:847.905000px;}
.y49_c00062{bottom:848.970000px;}
.y45_c00062{bottom:863.745000px;}
.y47_c00062{bottom:864.825000px;}
.y46_c00062{bottom:865.905000px;}
.y48_c00062{bottom:866.130000px;}
.y44_c00062{bottom:867.405000px;}
.y41_c00062{bottom:883.245000px;}
.y40_c00062{bottom:885.180000px;}
.y42_c00062{bottom:885.405000px;}
.y43_c00062{bottom:886.905000px;}
.y3e_c00062{bottom:903.825000px;}
.y3c_c00062{bottom:904.245000px;}
.y3b_c00062{bottom:904.905000px;}
.y3f_c00062{bottom:905.130000px;}
.y3d_c00062{bottom:906.405000px;}
.y3a_c00062{bottom:908.130000px;}
.y37_c00062{bottom:922.245000px;}
.y35_c00062{bottom:923.745000px;}
.y36_c00062{bottom:925.470000px;}
.y38_c00062{bottom:925.905000px;}
.y34_c00062{bottom:926.550000px;}
.y39_c00062{bottom:926.970000px;}
.y31_c00062{bottom:941.745000px;}
.y33_c00062{bottom:943.245000px;}
.y32_c00062{bottom:944.130000px;}
.y30_c00062{bottom:945.405000px;}
.y2f_c00062{bottom:946.905000px;}
.y2e_c00062{bottom:947.130000px;}
.y2d_c00062{bottom:961.245000px;}
.y29_c00062{bottom:962.745000px;}
.y2a_c00062{bottom:963.630000px;}
.y28_c00062{bottom:963.825000px;}
.y2b_c00062{bottom:964.905000px;}
.y2c_c00062{bottom:965.130000px;}
.y27_c00062{bottom:965.550000px;}
.y24_c00062{bottom:981.405000px;}
.y25_c00062{bottom:982.245000px;}
.y23_c00062{bottom:984.405000px;}
.y22_c00062{bottom:984.825000px;}
.y26_c00062{bottom:985.470000px;}
.y1d_c00062{bottom:1001.325000px;}
.y1a_c00062{bottom:1001.745000px;}
.y1f_c00062{bottom:1001.970000px;}
.y1e_c00062{bottom:1002.630000px;}
.y20_c00062{bottom:1002.825000px;}
.y1c_c00062{bottom:1003.470000px;}
.y1b_c00062{bottom:1003.905000px;}
.y21_c00062{bottom:1004.130000px;}
.y19_c00062{bottom:1004.970000px;}
.y18_c00062{bottom:1005.405000px;}
.y15_c00062{bottom:1020.825000px;}
.y17_c00062{bottom:1021.245000px;}
.y12_c00062{bottom:1022.745000px;}
.y14_c00062{bottom:1023.405000px;}
.y13_c00062{bottom:1023.630000px;}
.y16_c00062{bottom:1024.470000px;}
.ye_c00062{bottom:1040.745000px;}
.y10_c00062{bottom:1042.245000px;}
.yd_c00062{bottom:1042.905000px;}
.yf_c00062{bottom:1043.130000px;}
.yc_c00062{bottom:1043.970000px;}
.y11_c00062{bottom:1044.405000px;}
.yb_c00062{bottom:1044.825000px;}
.y5_c00062{bottom:1060.245000px;}
.y7_c00062{bottom:1061.325000px;}
.y8_c00062{bottom:1061.745000px;}
.y6_c00062{bottom:1062.405000px;}
.y9_c00062{bottom:1062.630000px;}
.ya_c00062{bottom:1062.825000px;}
.y4_c00062{bottom:1063.905000px;}
.y3_c00062{bottom:1065.405000px;}
.y1_c00062{bottom:1099.905000px;}
.y2_c00062{bottom:1100.550000px;}
.h5_c00062{height:23.025234px;}
.h2_c00062{height:25.091602px;}
.h6_c00062{height:31.364502px;}
.h1_c00062{height:35.571035px;}
.h4_c00062{height:39.777568px;}
.h3_c00062{height:43.910303px;}
.h7_c00062{height:48.116836px;}
.h0_c00062{height:1335.000000px;}
.w0_c00062{width:880.500000px;}
.x0_c00062{left:0.000000px;}
.x3_c00062{left:152.580000px;}
.x12_c00062{left:154.500000px;}
.x102_c00062{left:156.000000px;}
.xf2_c00062{left:171.000000px;}
.x4f_c00062{left:172.080000px;}
.x2e_c00062{left:175.500000px;}
.xf6_c00062{left:178.920000px;}
.xd5_c00062{left:181.920000px;}
.x79_c00062{left:186.420000px;}
.xe3_c00062{left:187.500000px;}
.xc3_c00062{left:190.920000px;}
.x5b_c00062{left:192.420000px;}
.x50_c00062{left:194.580000px;}
.x4_c00062{left:196.500000px;}
.x83_c00062{left:198.000000px;}
.x48_c00062{left:201.000000px;}
.x9e_c00062{left:202.500000px;}
.xbc_c00062{left:204.000000px;}
.xe7_c00062{left:205.920000px;}
.x22_c00062{left:207.000000px;}
.x91_c00062{left:208.080000px;}
.x97_c00062{left:211.500000px;}
.x13_c00062{left:212.580000px;}
.x2f_c00062{left:214.500000px;}
.x5_c00062{left:216.420000px;}
.x3c_c00062{left:217.500000px;}
.xb1_c00062{left:218.580000px;}
.xb6_c00062{left:220.500000px;}
.x106_c00062{left:222.000000px;}
.xd6_c00062{left:223.500000px;}
.x5c_c00062{left:225.000000px;}
.xa7_c00062{left:226.920000px;}
.x7a_c00062{left:229.080000px;}
.x14_c00062{left:231.420000px;}
.xc4_c00062{left:232.500000px;}
.x10c_c00062{left:234.000000px;}
.x8a_c00062{left:235.080000px;}
.x103_c00062{left:238.920000px;}
.x51_c00062{left:240.000000px;}
.x70_c00062{left:241.920000px;}
.x6_c00062{left:246.420000px;}
.x7b_c00062{left:249.420000px;}
.x5d_c00062{left:250.920000px;}
.xb7_c00062{left:252.000000px;}
.xdb_c00062{left:255.420000px;}
.x15_c00062{left:256.920000px;}
.x98_c00062{left:259.500000px;}
.x92_c00062{left:261.420000px;}
.x84_c00062{left:262.500000px;}
.xae_c00062{left:265.080000px;}
.x67_c00062{left:267.000000px;}
.x49_c00062{left:268.920000px;}
.xf7_c00062{left:273.420000px;}
.x23_c00062{left:274.920000px;}
.x52_c00062{left:278.580000px;}
.xf9_c00062{left:280.500000px;}
.x3d_c00062{left:283.500000px;}
.x16_c00062{left:284.580000px;}
.xaf_c00062{left:286.920000px;}
.x30_c00062{left:288.420000px;}
.x7_c00062{left:289.500000px;}
.x10f_c00062{left:292.500000px;}
.x7c_c00062{left:294.420000px;}
.xdc_c00062{left:295.500000px;}
.x53_c00062{left:297.420000px;}
.x24_c00062{left:298.920000px;}
.xe4_c00062{left:300.420000px;}
.x9f_c00062{left:301.500000px;}
.xfc_c00062{left:304.500000px;}
.x71_c00062{left:306.420000px;}
.xd2_c00062{left:307.500000px;}
.x68_c00062{left:310.920000px;}
.x107_c00062{left:312.000000px;}
.x17_c00062{left:313.500000px;}
.xc5_c00062{left:315.000000px;}
.x31_c00062{left:316.500000px;}
.xfe_c00062{left:319.500000px;}
.x4a_c00062{left:321.000000px;}
.x7d_c00062{left:322.920000px;}
.xfd_c00062{left:324.420000px;}
.x25_c00062{left:325.920000px;}
.x5e_c00062{left:328.080000px;}
.x8_c00062{left:330.000000px;}
.x3e_c00062{left:331.920000px;}
.xa8_c00062{left:334.920000px;}
.xa0_c00062{left:337.080000px;}
.x18_c00062{left:339.000000px;}
.x69_c00062{left:340.500000px;}
.x4b_c00062{left:342.420000px;}
.x72_c00062{left:343.500000px;}
.x5f_c00062{left:345.420000px;}
.x32_c00062{left:348.000000px;}
.x93_c00062{left:351.000000px;}
.xc6_c00062{left:352.920000px;}
.xb8_c00062{left:354.000000px;}
.x104_c00062{left:355.500000px;}
.xcd_c00062{left:357.000000px;}
.x99_c00062{left:359.580000px;}
.x8b_c00062{left:361.500000px;}
.x9_c00062{left:363.420000px;}
.x54_c00062{left:364.920000px;}
.xdd_c00062{left:366.000000px;}
.xb2_c00062{left:367.920000px;}
.x3f_c00062{left:369.000000px;}
.x7e_c00062{left:370.500000px;}
.x19_c00062{left:373.920000px;}
.xe8_c00062{left:376.920000px;}
.x26_c00062{left:378.000000px;}
.x85_c00062{left:379.500000px;}
.x110_c00062{left:380.580000px;}
.x60_c00062{left:384.000000px;}
.xd7_c00062{left:388.080000px;}
.x33_c00062{left:391.080000px;}
.x6a_c00062{left:394.080000px;}
.x2_c00062{left:396.000000px;}
.x8c_c00062{left:397.500000px;}
.x55_c00062{left:400.500000px;}
.xe5_c00062{left:401.580000px;}
.xa_c00062{left:405.000000px;}
.xd3_c00062{left:406.500000px;}
.x34_c00062{left:409.080000px;}
.xff_c00062{left:411.000000px;}
.x1a_c00062{left:412.500000px;}
.x6b_c00062{left:414.420000px;}
.xde_c00062{left:415.500000px;}
.xe0_c00062{left:416.580000px;}
.xa1_c00062{left:418.080000px;}
.xbd_c00062{left:420.000000px;}
.x40_c00062{left:421.080000px;}
.x61_c00062{left:425.580000px;}
.x56_c00062{left:427.920000px;}
.x27_c00062{left:429.420000px;}
.xd8_c00062{left:430.500000px;}
.xb3_c00062{left:432.000000px;}
.xce_c00062{left:433.500000px;}
.x111_c00062{left:435.420000px;}
.xf0_c00062{left:438.000000px;}
.xb_c00062{left:441.000000px;}
.x6c_c00062{left:442.500000px;}
.x1b_c00062{left:444.420000px;}
.x9a_c00062{left:445.500000px;}
.x73_c00062{left:446.580000px;}
.xa9_c00062{left:449.580000px;}
.x41_c00062{left:453.420000px;}
.x8d_c00062{left:456.420000px;}
.xc_c00062{left:459.420000px;}
.xcf_c00062{left:461.580000px;}
.x7f_c00062{left:463.080000px;}
.x35_c00062{left:465.000000px;}
.x28_c00062{left:466.920000px;}
.x9b_c00062{left:468.420000px;}
.xa2_c00062{left:469.500000px;}
.x108_c00062{left:471.000000px;}
.x4c_c00062{left:472.500000px;}
.x57_c00062{left:474.000000px;}
.xc7_c00062{left:475.500000px;}
.xf3_c00062{left:481.920000px;}
.xed_c00062{left:483.420000px;}
.x1c_c00062{left:484.500000px;}
.xdf_c00062{left:486.000000px;}
.x62_c00062{left:487.080000px;}
.x86_c00062{left:490.500000px;}
.x36_c00062{left:492.000000px;}
.x42_c00062{left:493.920000px;}
.xbe_c00062{left:496.080000px;}
.xb9_c00062{left:498.420000px;}
.x109_c00062{left:499.920000px;}
.x1d_c00062{left:501.000000px;}
.x74_c00062{left:504.420000px;}
.x8e_c00062{left:505.500000px;}
.xd0_c00062{left:507.000000px;}
.x4d_c00062{left:509.580000px;}
.xd9_c00062{left:511.920000px;}
.xd_c00062{left:513.000000px;}
.x29_c00062{left:519.420000px;}
.x37_c00062{left:520.920000px;}
.x43_c00062{left:522.420000px;}
.xe9_c00062{left:523.500000px;}
.x87_c00062{left:528.420000px;}
.xe1_c00062{left:529.920000px;}
.x9c_c00062{left:532.500000px;}
.xbf_c00062{left:535.920000px;}
.x58_c00062{left:537.420000px;}
.xe_c00062{left:538.500000px;}
.x1e_c00062{left:540.000000px;}
.xfa_c00062{left:541.500000px;}
.x63_c00062{left:543.000000px;}
.x6d_c00062{left:544.080000px;}
.x2a_c00062{left:545.580000px;}
.x80_c00062{left:547.920000px;}
.x100_c00062{left:550.500000px;}
.xaa_c00062{left:551.580000px;}
.x94_c00062{left:553.500000px;}
.xee_c00062{left:555.000000px;}
.xc8_c00062{left:556.920000px;}
.x38_c00062{left:558.855000px;}
.xb4_c00062{left:564.420000px;}
.xda_c00062{left:565.500000px;}
.x101_c00062{left:568.500000px;}
.x64_c00062{left:570.420000px;}
.x10d_c00062{left:573.000000px;}
.x81_c00062{left:577.080000px;}
.xf_c00062{left:579.420000px;}
.x2b_c00062{left:580.500000px;}
.xab_c00062{left:583.500000px;}
.x88_c00062{left:585.000000px;}
.xfb_c00062{left:586.500000px;}
.x6e_c00062{left:588.000000px;}
.x75_c00062{left:589.500000px;}
.x1f_c00062{left:591.000000px;}
.xa3_c00062{left:592.920000px;}
.x10a_c00062{left:595.500000px;}
.xf4_c00062{left:598.275000px;}
.x44_c00062{left:601.920000px;}
.xac_c00062{left:603.000000px;}
.x39_c00062{left:606.420000px;}
.x95_c00062{left:607.920000px;}
.x82_c00062{left:609.420000px;}
.xef_c00062{left:612.000000px;}
.xba_c00062{left:613.920000px;}
.xea_c00062{left:615.420000px;}
.xb0_c00062{left:618.000000px;}
.x112_c00062{left:619.080000px;}
.x2c_c00062{left:621.420000px;}
.x8f_c00062{left:622.500000px;}
.xc9_c00062{left:623.580000px;}
.x3a_c00062{left:625.920000px;}
.x10_c00062{left:627.000000px;}
.x76_c00062{left:628.500000px;}
.xa4_c00062{left:630.420000px;}
.x105_c00062{left:632.580000px;}
.x20_c00062{left:634.920000px;}
.x45_c00062{left:637.920000px;}
.xc0_c00062{left:639.000000px;}
.xeb_c00062{left:640.080000px;}
.xe6_c00062{left:642.000000px;}
.xca_c00062{left:643.920000px;}
.x96_c00062{left:646.080000px;}
.xf1_c00062{left:647.580000px;}
.xbb_c00062{left:649.500000px;}
.x59_c00062{left:651.420000px;}
.xd1_c00062{left:652.500000px;}
.x10e_c00062{left:654.000000px;}
.x9d_c00062{left:655.080000px;}
.xad_c00062{left:657.000000px;}
.xa5_c00062{left:658.080000px;}
.xe2_c00062{left:659.580000px;}
.x3b_c00062{left:661.920000px;}
.x46_c00062{left:665.580000px;}
.x2d_c00062{left:667.500000px;}
.x65_c00062{left:669.420000px;}
.xcb_c00062{left:670.920000px;}
.x6f_c00062{left:672.000000px;}
.x113_c00062{left:673.500000px;}
.x77_c00062{left:675.420000px;}
.xc1_c00062{left:676.920000px;}
.xd4_c00062{left:678.420000px;}
.x21_c00062{left:680.580000px;}
.x89_c00062{left:682.500000px;}
.xec_c00062{left:683.580000px;}
.x11_c00062{left:688.500000px;}
.x90_c00062{left:690.000000px;}
.x5a_c00062{left:691.500000px;}
.xf8_c00062{left:694.500000px;}
.x66_c00062{left:696.000000px;}
.xf5_c00062{left:697.920000px;}
.x4e_c00062{left:700.500000px;}
.x78_c00062{left:702.420000px;}
.xcc_c00062{left:705.000000px;}
.xa6_c00062{left:708.420000px;}
.xc2_c00062{left:709.500000px;}
.x1_c00062{left:712.080000px;}
.x10b_c00062{left:713.580000px;}
.xb5_c00062{left:717.000000px;}
.x47_c00062{left:718.500000px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.ls0_c00062{letter-spacing:0.000000pt;}
.ws0_c00062{word-spacing:-2.746269pt;}
.ws1_c00062{word-spacing:0.000000pt;}
.fs4_c00062{font-size:16.640000pt;}
.fs1_c00062{font-size:18.133333pt;}
.fs5_c00062{font-size:22.666667pt;}
.fs0_c00062{font-size:25.706667pt;}
.fs3_c00062{font-size:28.746667pt;}
.fs2_c00062{font-size:31.733333pt;}
.fs6_c00062{font-size:34.773333pt;}
.y0_c00062{bottom:0.000000pt;}
.y10d_c00062{bottom:224.360000pt;}
.y10c_c00062{bottom:225.106667pt;}
.y10b_c00062{bottom:225.693333pt;}
.y10f_c00062{bottom:226.440000pt;}
.y10a_c00062{bottom:227.400000pt;}
.y10e_c00062{bottom:228.360000pt;}
.y105_c00062{bottom:241.106667pt;}
.y107_c00062{bottom:243.226667pt;}
.y104_c00062{bottom:243.973333pt;}
.y106_c00062{bottom:244.360000pt;}
.y108_c00062{bottom:244.560000pt;}
.y109_c00062{bottom:245.693333pt;}
.y103_c00062{bottom:248.733333pt;}
.yff_c00062{bottom:259.773333pt;}
.y102_c00062{bottom:260.160000pt;}
.yfd_c00062{bottom:260.360000pt;}
.yfb_c00062{bottom:260.560000pt;}
.y101_c00062{bottom:261.106667pt;}
.yfe_c00062{bottom:261.306667pt;}
.yfc_c00062{bottom:261.693333pt;}
.y100_c00062{bottom:262.066667pt;}
.yfa_c00062{bottom:263.400000pt;}
.yf7_c00062{bottom:277.106667pt;}
.yf9_c00062{bottom:277.893333pt;}
.yf8_c00062{bottom:279.026667pt;}
.yf6_c00062{bottom:279.973333pt;}
.yf5_c00062{bottom:280.360000pt;}
.yf4_c00062{bottom:282.440000pt;}
.yf1_c00062{bottom:294.440000pt;}
.yf3_c00062{bottom:295.773333pt;}
.yf2_c00062{bottom:296.360000pt;}
.yf0_c00062{bottom:297.693333pt;}
.yef_c00062{bottom:299.400000pt;}
.yeb_c00062{bottom:310.826667pt;}
.yec_c00062{bottom:311.773333pt;}
.yed_c00062{bottom:312.733333pt;}
.yea_c00062{bottom:313.693333pt;}
.yee_c00062{bottom:315.026667pt;}
.ye9_c00062{bottom:315.773333pt;}
.ye7_c00062{bottom:329.106667pt;}
.ye8_c00062{bottom:331.026667pt;}
.ye6_c00062{bottom:331.226667pt;}
.ye5_c00062{bottom:332.360000pt;}
.ye4_c00062{bottom:334.440000pt;}
.yde_c00062{bottom:346.066667pt;}
.ydf_c00062{bottom:346.440000pt;}
.ye1_c00062{bottom:347.773333pt;}
.ydd_c00062{bottom:348.360000pt;}
.ye0_c00062{bottom:348.560000pt;}
.ye3_c00062{bottom:349.306667pt;}
.ydc_c00062{bottom:349.693333pt;}
.ye2_c00062{bottom:349.893333pt;}
.ydb_c00062{bottom:351.026667pt;}
.yda_c00062{bottom:353.693333pt;}
.yd7_c00062{bottom:363.400000pt;}
.yd5_c00062{bottom:363.773333pt;}
.yd4_c00062{bottom:364.160000pt;}
.yd9_c00062{bottom:365.106667pt;}
.yd6_c00062{bottom:365.693333pt;}
.yd3_c00062{bottom:366.826667pt;}
.yd8_c00062{bottom:367.026667pt;}
.yd2_c00062{bottom:382.066667pt;}
.yd0_c00062{bottom:382.440000pt;}
.yd1_c00062{bottom:383.226667pt;}
.ycf_c00062{bottom:383.973333pt;}
.yce_c00062{bottom:384.360000pt;}
.ycd_c00062{bottom:384.933333pt;}
.ycc_c00062{bottom:388.733333pt;}
.yc7_c00062{bottom:397.693333pt;}
.yc9_c00062{bottom:399.773333pt;}
.yc8_c00062{bottom:400.733333pt;}
.yc5_c00062{bottom:401.106667pt;}
.yca_c00062{bottom:401.306667pt;}
.yc6_c00062{bottom:401.693333pt;}
.ycb_c00062{bottom:401.893333pt;}
.yc4_c00062{bottom:404.360000pt;}
.yc3_c00062{bottom:405.306667pt;}
.yc2_c00062{bottom:415.773333pt;}
.yc0_c00062{bottom:417.106667pt;}
.yc1_c00062{bottom:419.026667pt;}
.ybf_c00062{bottom:420.360000pt;}
.ybe_c00062{bottom:422.266667pt;}
.ybd_c00062{bottom:434.066667pt;}
.yba_c00062{bottom:434.440000pt;}
.yb8_c00062{bottom:434.826667pt;}
.ybc_c00062{bottom:435.226667pt;}
.ybb_c00062{bottom:435.973333pt;}
.yb9_c00062{bottom:436.360000pt;}
.yb7_c00062{bottom:440.733333pt;}
.yb6_c00062{bottom:451.773333pt;}
.yb3_c00062{bottom:453.106667pt;}
.yb4_c00062{bottom:453.693333pt;}
.yb5_c00062{bottom:454.640000pt;}
.yb2_c00062{bottom:455.026667pt;}
.yb1_c00062{bottom:456.360000pt;}
.yae_c00062{bottom:471.026667pt;}
.yb0_c00062{bottom:471.226667pt;}
.yac_c00062{bottom:471.773333pt;}
.yaf_c00062{bottom:471.973333pt;}
.yad_c00062{bottom:472.360000pt;}
.yab_c00062{bottom:475.400000pt;}
.ya8_c00062{bottom:487.400000pt;}
.yaa_c00062{bottom:487.773333pt;}
.ya9_c00062{bottom:488.733333pt;}
.ya7_c00062{bottom:489.693333pt;}
.ya6_c00062{bottom:491.026667pt;}
.ya5_c00062{bottom:492.733333pt;}
.ya2_c00062{bottom:503.026667pt;}
.ya4_c00062{bottom:503.773333pt;}
.ya3_c00062{bottom:505.106667pt;}
.ya1_c00062{bottom:507.026667pt;}
.ya0_c00062{bottom:508.733333pt;}
.y9e_c00062{bottom:522.440000pt;}
.y9d_c00062{bottom:524.360000pt;}
.y9f_c00062{bottom:524.560000pt;}
.y9c_c00062{bottom:525.693333pt;}
.y9b_c00062{bottom:527.026667pt;}
.y9a_c00062{bottom:528.360000pt;}
.y98_c00062{bottom:539.773333pt;}
.y99_c00062{bottom:540.733333pt;}
.y96_c00062{bottom:541.693333pt;}
.y97_c00062{bottom:542.640000pt;}
.y95_c00062{bottom:543.400000pt;}
.y90_c00062{bottom:556.733333pt;}
.y93_c00062{bottom:557.106667pt;}
.y91_c00062{bottom:558.066667pt;}
.y92_c00062{bottom:559.026667pt;}
.y8f_c00062{bottom:559.226667pt;}
.y8e_c00062{bottom:559.773333pt;}
.y94_c00062{bottom:560.360000pt;}
.y8a_c00062{bottom:575.773333pt;}
.y8c_c00062{bottom:576.360000pt;}
.y88_c00062{bottom:576.733333pt;}
.y89_c00062{bottom:577.106667pt;}
.y8d_c00062{bottom:577.306667pt;}
.y8b_c00062{bottom:577.693333pt;}
.y86_c00062{bottom:593.106667pt;}
.y84_c00062{bottom:595.026667pt;}
.y87_c00062{bottom:595.226667pt;}
.y85_c00062{bottom:595.973333pt;}
.y83_c00062{bottom:598.066667pt;}
.y80_c00062{bottom:610.440000pt;}
.y7f_c00062{bottom:611.226667pt;}
.y81_c00062{bottom:611.400000pt;}
.y7e_c00062{bottom:612.360000pt;}
.y82_c00062{bottom:612.560000pt;}
.y78_c00062{bottom:625.693333pt;}
.y7a_c00062{bottom:627.773333pt;}
.y79_c00062{bottom:628.933333pt;}
.y77_c00062{bottom:629.693333pt;}
.y7b_c00062{bottom:629.893333pt;}
.y76_c00062{bottom:630.440000pt;}
.y7c_c00062{bottom:630.640000pt;}
.y7d_c00062{bottom:631.026667pt;}
.y71_c00062{bottom:644.360000pt;}
.y70_c00062{bottom:646.266667pt;}
.y74_c00062{bottom:646.440000pt;}
.y72_c00062{bottom:647.026667pt;}
.y73_c00062{bottom:647.226667pt;}
.y6f_c00062{bottom:647.773333pt;}
.y75_c00062{bottom:647.973333pt;}
.y6e_c00062{bottom:662.440000pt;}
.y6b_c00062{bottom:664.360000pt;}
.y6c_c00062{bottom:664.560000pt;}
.y6d_c00062{bottom:665.306667pt;}
.y6a_c00062{bottom:665.693333pt;}
.y69_c00062{bottom:666.440000pt;}
.y67_c00062{bottom:679.026667pt;}
.y65_c00062{bottom:681.693333pt;}
.y66_c00062{bottom:681.893333pt;}
.y64_c00062{bottom:682.066667pt;}
.y68_c00062{bottom:682.640000pt;}
.y62_c00062{bottom:682.826667pt;}
.y63_c00062{bottom:683.026667pt;}
.y5d_c00062{bottom:697.106667pt;}
.y60_c00062{bottom:698.440000pt;}
.y5f_c00062{bottom:699.026667pt;}
.y61_c00062{bottom:699.226667pt;}
.y5e_c00062{bottom:699.400000pt;}
.y5c_c00062{bottom:700.360000pt;}
.y5b_c00062{bottom:700.733333pt;}
.y5a_c00062{bottom:714.440000pt;}
.y58_c00062{bottom:715.773333pt;}
.y59_c00062{bottom:716.560000pt;}
.y56_c00062{bottom:717.493333pt;}
.y57_c00062{bottom:717.693333pt;}
.y53_c00062{bottom:733.106667pt;}
.y55_c00062{bottom:733.893333pt;}
.y54_c00062{bottom:734.640000pt;}
.y52_c00062{bottom:735.026667pt;}
.y51_c00062{bottom:736.733333pt;}
.y4c_c00062{bottom:750.066667pt;}
.y4e_c00062{bottom:750.440000pt;}
.y4b_c00062{bottom:751.400000pt;}
.y4d_c00062{bottom:752.360000pt;}
.y4f_c00062{bottom:752.560000pt;}
.y50_c00062{bottom:753.306667pt;}
.y4a_c00062{bottom:753.693333pt;}
.y49_c00062{bottom:754.640000pt;}
.y45_c00062{bottom:767.773333pt;}
.y47_c00062{bottom:768.733333pt;}
.y46_c00062{bottom:769.693333pt;}
.y48_c00062{bottom:769.893333pt;}
.y44_c00062{bottom:771.026667pt;}
.y41_c00062{bottom:785.106667pt;}
.y40_c00062{bottom:786.826667pt;}
.y42_c00062{bottom:787.026667pt;}
.y43_c00062{bottom:788.360000pt;}
.y3e_c00062{bottom:803.400000pt;}
.y3c_c00062{bottom:803.773333pt;}
.y3b_c00062{bottom:804.360000pt;}
.y3f_c00062{bottom:804.560000pt;}
.y3d_c00062{bottom:805.693333pt;}
.y3a_c00062{bottom:807.226667pt;}
.y37_c00062{bottom:819.773333pt;}
.y35_c00062{bottom:821.106667pt;}
.y36_c00062{bottom:822.640000pt;}
.y38_c00062{bottom:823.026667pt;}
.y34_c00062{bottom:823.600000pt;}
.y39_c00062{bottom:823.973333pt;}
.y31_c00062{bottom:837.106667pt;}
.y33_c00062{bottom:838.440000pt;}
.y32_c00062{bottom:839.226667pt;}
.y30_c00062{bottom:840.360000pt;}
.y2f_c00062{bottom:841.693333pt;}
.y2e_c00062{bottom:841.893333pt;}
.y2d_c00062{bottom:854.440000pt;}
.y29_c00062{bottom:855.773333pt;}
.y2a_c00062{bottom:856.560000pt;}
.y28_c00062{bottom:856.733333pt;}
.y2b_c00062{bottom:857.693333pt;}
.y2c_c00062{bottom:857.893333pt;}
.y27_c00062{bottom:858.266667pt;}
.y24_c00062{bottom:872.360000pt;}
.y25_c00062{bottom:873.106667pt;}
.y23_c00062{bottom:875.026667pt;}
.y22_c00062{bottom:875.400000pt;}
.y26_c00062{bottom:875.973333pt;}
.y1d_c00062{bottom:890.066667pt;}
.y1a_c00062{bottom:890.440000pt;}
.y1f_c00062{bottom:890.640000pt;}
.y1e_c00062{bottom:891.226667pt;}
.y20_c00062{bottom:891.400000pt;}
.y1c_c00062{bottom:891.973333pt;}
.y1b_c00062{bottom:892.360000pt;}
.y21_c00062{bottom:892.560000pt;}
.y19_c00062{bottom:893.306667pt;}
.y18_c00062{bottom:893.693333pt;}
.y15_c00062{bottom:907.400000pt;}
.y17_c00062{bottom:907.773333pt;}
.y12_c00062{bottom:909.106667pt;}
.y14_c00062{bottom:909.693333pt;}
.y13_c00062{bottom:909.893333pt;}
.y16_c00062{bottom:910.640000pt;}
.ye_c00062{bottom:925.106667pt;}
.y10_c00062{bottom:926.440000pt;}
.yd_c00062{bottom:927.026667pt;}
.yf_c00062{bottom:927.226667pt;}
.yc_c00062{bottom:927.973333pt;}
.y11_c00062{bottom:928.360000pt;}
.yb_c00062{bottom:928.733333pt;}
.y5_c00062{bottom:942.440000pt;}
.y7_c00062{bottom:943.400000pt;}
.y8_c00062{bottom:943.773333pt;}
.y6_c00062{bottom:944.360000pt;}
.y9_c00062{bottom:944.560000pt;}
.ya_c00062{bottom:944.733333pt;}
.y4_c00062{bottom:945.693333pt;}
.y3_c00062{bottom:947.026667pt;}
.y1_c00062{bottom:977.693333pt;}
.y2_c00062{bottom:978.266667pt;}
.h5_c00062{height:20.466875pt;}
.h2_c00062{height:22.303646pt;}
.h6_c00062{height:27.879557pt;}
.h1_c00062{height:31.618698pt;}
.h4_c00062{height:35.357839pt;}
.h3_c00062{height:39.031380pt;}
.h7_c00062{height:42.770521pt;}
.h0_c00062{height:1186.666667pt;}
.w0_c00062{width:782.666667pt;}
.x0_c00062{left:0.000000pt;}
.x3_c00062{left:135.626667pt;}
.x12_c00062{left:137.333333pt;}
.x102_c00062{left:138.666667pt;}
.xf2_c00062{left:152.000000pt;}
.x4f_c00062{left:152.960000pt;}
.x2e_c00062{left:156.000000pt;}
.xf6_c00062{left:159.040000pt;}
.xd5_c00062{left:161.706667pt;}
.x79_c00062{left:165.706667pt;}
.xe3_c00062{left:166.666667pt;}
.xc3_c00062{left:169.706667pt;}
.x5b_c00062{left:171.040000pt;}
.x50_c00062{left:172.960000pt;}
.x4_c00062{left:174.666667pt;}
.x83_c00062{left:176.000000pt;}
.x48_c00062{left:178.666667pt;}
.x9e_c00062{left:180.000000pt;}
.xbc_c00062{left:181.333333pt;}
.xe7_c00062{left:183.040000pt;}
.x22_c00062{left:184.000000pt;}
.x91_c00062{left:184.960000pt;}
.x97_c00062{left:188.000000pt;}
.x13_c00062{left:188.960000pt;}
.x2f_c00062{left:190.666667pt;}
.x5_c00062{left:192.373333pt;}
.x3c_c00062{left:193.333333pt;}
.xb1_c00062{left:194.293333pt;}
.xb6_c00062{left:196.000000pt;}
.x106_c00062{left:197.333333pt;}
.xd6_c00062{left:198.666667pt;}
.x5c_c00062{left:200.000000pt;}
.xa7_c00062{left:201.706667pt;}
.x7a_c00062{left:203.626667pt;}
.x14_c00062{left:205.706667pt;}
.xc4_c00062{left:206.666667pt;}
.x10c_c00062{left:208.000000pt;}
.x8a_c00062{left:208.960000pt;}
.x103_c00062{left:212.373333pt;}
.x51_c00062{left:213.333333pt;}
.x70_c00062{left:215.040000pt;}
.x6_c00062{left:219.040000pt;}
.x7b_c00062{left:221.706667pt;}
.x5d_c00062{left:223.040000pt;}
.xb7_c00062{left:224.000000pt;}
.xdb_c00062{left:227.040000pt;}
.x15_c00062{left:228.373333pt;}
.x98_c00062{left:230.666667pt;}
.x92_c00062{left:232.373333pt;}
.x84_c00062{left:233.333333pt;}
.xae_c00062{left:235.626667pt;}
.x67_c00062{left:237.333333pt;}
.x49_c00062{left:239.040000pt;}
.xf7_c00062{left:243.040000pt;}
.x23_c00062{left:244.373333pt;}
.x52_c00062{left:247.626667pt;}
.xf9_c00062{left:249.333333pt;}
.x3d_c00062{left:252.000000pt;}
.x16_c00062{left:252.960000pt;}
.xaf_c00062{left:255.040000pt;}
.x30_c00062{left:256.373333pt;}
.x7_c00062{left:257.333333pt;}
.x10f_c00062{left:260.000000pt;}
.x7c_c00062{left:261.706667pt;}
.xdc_c00062{left:262.666667pt;}
.x53_c00062{left:264.373333pt;}
.x24_c00062{left:265.706667pt;}
.xe4_c00062{left:267.040000pt;}
.x9f_c00062{left:268.000000pt;}
.xfc_c00062{left:270.666667pt;}
.x71_c00062{left:272.373333pt;}
.xd2_c00062{left:273.333333pt;}
.x68_c00062{left:276.373333pt;}
.x107_c00062{left:277.333333pt;}
.x17_c00062{left:278.666667pt;}
.xc5_c00062{left:280.000000pt;}
.x31_c00062{left:281.333333pt;}
.xfe_c00062{left:284.000000pt;}
.x4a_c00062{left:285.333333pt;}
.x7d_c00062{left:287.040000pt;}
.xfd_c00062{left:288.373333pt;}
.x25_c00062{left:289.706667pt;}
.x5e_c00062{left:291.626667pt;}
.x8_c00062{left:293.333333pt;}
.x3e_c00062{left:295.040000pt;}
.xa8_c00062{left:297.706667pt;}
.xa0_c00062{left:299.626667pt;}
.x18_c00062{left:301.333333pt;}
.x69_c00062{left:302.666667pt;}
.x4b_c00062{left:304.373333pt;}
.x72_c00062{left:305.333333pt;}
.x5f_c00062{left:307.040000pt;}
.x32_c00062{left:309.333333pt;}
.x93_c00062{left:312.000000pt;}
.xc6_c00062{left:313.706667pt;}
.xb8_c00062{left:314.666667pt;}
.x104_c00062{left:316.000000pt;}
.xcd_c00062{left:317.333333pt;}
.x99_c00062{left:319.626667pt;}
.x8b_c00062{left:321.333333pt;}
.x9_c00062{left:323.040000pt;}
.x54_c00062{left:324.373333pt;}
.xdd_c00062{left:325.333333pt;}
.xb2_c00062{left:327.040000pt;}
.x3f_c00062{left:328.000000pt;}
.x7e_c00062{left:329.333333pt;}
.x19_c00062{left:332.373333pt;}
.xe8_c00062{left:335.040000pt;}
.x26_c00062{left:336.000000pt;}
.x85_c00062{left:337.333333pt;}
.x110_c00062{left:338.293333pt;}
.x60_c00062{left:341.333333pt;}
.xd7_c00062{left:344.960000pt;}
.x33_c00062{left:347.626667pt;}
.x6a_c00062{left:350.293333pt;}
.x2_c00062{left:352.000000pt;}
.x8c_c00062{left:353.333333pt;}
.x55_c00062{left:356.000000pt;}
.xe5_c00062{left:356.960000pt;}
.xa_c00062{left:360.000000pt;}
.xd3_c00062{left:361.333333pt;}
.x34_c00062{left:363.626667pt;}
.xff_c00062{left:365.333333pt;}
.x1a_c00062{left:366.666667pt;}
.x6b_c00062{left:368.373333pt;}
.xde_c00062{left:369.333333pt;}
.xe0_c00062{left:370.293333pt;}
.xa1_c00062{left:371.626667pt;}
.xbd_c00062{left:373.333333pt;}
.x40_c00062{left:374.293333pt;}
.x61_c00062{left:378.293333pt;}
.x56_c00062{left:380.373333pt;}
.x27_c00062{left:381.706667pt;}
.xd8_c00062{left:382.666667pt;}
.xb3_c00062{left:384.000000pt;}
.xce_c00062{left:385.333333pt;}
.x111_c00062{left:387.040000pt;}
.xf0_c00062{left:389.333333pt;}
.xb_c00062{left:392.000000pt;}
.x6c_c00062{left:393.333333pt;}
.x1b_c00062{left:395.040000pt;}
.x9a_c00062{left:396.000000pt;}
.x73_c00062{left:396.960000pt;}
.xa9_c00062{left:399.626667pt;}
.x41_c00062{left:403.040000pt;}
.x8d_c00062{left:405.706667pt;}
.xc_c00062{left:408.373333pt;}
.xcf_c00062{left:410.293333pt;}
.x7f_c00062{left:411.626667pt;}
.x35_c00062{left:413.333333pt;}
.x28_c00062{left:415.040000pt;}
.x9b_c00062{left:416.373333pt;}
.xa2_c00062{left:417.333333pt;}
.x108_c00062{left:418.666667pt;}
.x4c_c00062{left:420.000000pt;}
.x57_c00062{left:421.333333pt;}
.xc7_c00062{left:422.666667pt;}
.xf3_c00062{left:428.373333pt;}
.xed_c00062{left:429.706667pt;}
.x1c_c00062{left:430.666667pt;}
.xdf_c00062{left:432.000000pt;}
.x62_c00062{left:432.960000pt;}
.x86_c00062{left:436.000000pt;}
.x36_c00062{left:437.333333pt;}
.x42_c00062{left:439.040000pt;}
.xbe_c00062{left:440.960000pt;}
.xb9_c00062{left:443.040000pt;}
.x109_c00062{left:444.373333pt;}
.x1d_c00062{left:445.333333pt;}
.x74_c00062{left:448.373333pt;}
.x8e_c00062{left:449.333333pt;}
.xd0_c00062{left:450.666667pt;}
.x4d_c00062{left:452.960000pt;}
.xd9_c00062{left:455.040000pt;}
.xd_c00062{left:456.000000pt;}
.x29_c00062{left:461.706667pt;}
.x37_c00062{left:463.040000pt;}
.x43_c00062{left:464.373333pt;}
.xe9_c00062{left:465.333333pt;}
.x87_c00062{left:469.706667pt;}
.xe1_c00062{left:471.040000pt;}
.x9c_c00062{left:473.333333pt;}
.xbf_c00062{left:476.373333pt;}
.x58_c00062{left:477.706667pt;}
.xe_c00062{left:478.666667pt;}
.x1e_c00062{left:480.000000pt;}
.xfa_c00062{left:481.333333pt;}
.x63_c00062{left:482.666667pt;}
.x6d_c00062{left:483.626667pt;}
.x2a_c00062{left:484.960000pt;}
.x80_c00062{left:487.040000pt;}
.x100_c00062{left:489.333333pt;}
.xaa_c00062{left:490.293333pt;}
.x94_c00062{left:492.000000pt;}
.xee_c00062{left:493.333333pt;}
.xc8_c00062{left:495.040000pt;}
.x38_c00062{left:496.760000pt;}
.xb4_c00062{left:501.706667pt;}
.xda_c00062{left:502.666667pt;}
.x101_c00062{left:505.333333pt;}
.x64_c00062{left:507.040000pt;}
.x10d_c00062{left:509.333333pt;}
.x81_c00062{left:512.960000pt;}
.xf_c00062{left:515.040000pt;}
.x2b_c00062{left:516.000000pt;}
.xab_c00062{left:518.666667pt;}
.x88_c00062{left:520.000000pt;}
.xfb_c00062{left:521.333333pt;}
.x6e_c00062{left:522.666667pt;}
.x75_c00062{left:524.000000pt;}
.x1f_c00062{left:525.333333pt;}
.xa3_c00062{left:527.040000pt;}
.x10a_c00062{left:529.333333pt;}
.xf4_c00062{left:531.800000pt;}
.x44_c00062{left:535.040000pt;}
.xac_c00062{left:536.000000pt;}
.x39_c00062{left:539.040000pt;}
.x95_c00062{left:540.373333pt;}
.x82_c00062{left:541.706667pt;}
.xef_c00062{left:544.000000pt;}
.xba_c00062{left:545.706667pt;}
.xea_c00062{left:547.040000pt;}
.xb0_c00062{left:549.333333pt;}
.x112_c00062{left:550.293333pt;}
.x2c_c00062{left:552.373333pt;}
.x8f_c00062{left:553.333333pt;}
.xc9_c00062{left:554.293333pt;}
.x3a_c00062{left:556.373333pt;}
.x10_c00062{left:557.333333pt;}
.x76_c00062{left:558.666667pt;}
.xa4_c00062{left:560.373333pt;}
.x105_c00062{left:562.293333pt;}
.x20_c00062{left:564.373333pt;}
.x45_c00062{left:567.040000pt;}
.xc0_c00062{left:568.000000pt;}
.xeb_c00062{left:568.960000pt;}
.xe6_c00062{left:570.666667pt;}
.xca_c00062{left:572.373333pt;}
.x96_c00062{left:574.293333pt;}
.xf1_c00062{left:575.626667pt;}
.xbb_c00062{left:577.333333pt;}
.x59_c00062{left:579.040000pt;}
.xd1_c00062{left:580.000000pt;}
.x10e_c00062{left:581.333333pt;}
.x9d_c00062{left:582.293333pt;}
.xad_c00062{left:584.000000pt;}
.xa5_c00062{left:584.960000pt;}
.xe2_c00062{left:586.293333pt;}
.x3b_c00062{left:588.373333pt;}
.x46_c00062{left:591.626667pt;}
.x2d_c00062{left:593.333333pt;}
.x65_c00062{left:595.040000pt;}
.xcb_c00062{left:596.373333pt;}
.x6f_c00062{left:597.333333pt;}
.x113_c00062{left:598.666667pt;}
.x77_c00062{left:600.373333pt;}
.xc1_c00062{left:601.706667pt;}
.xd4_c00062{left:603.040000pt;}
.x21_c00062{left:604.960000pt;}
.x89_c00062{left:606.666667pt;}
.xec_c00062{left:607.626667pt;}
.x11_c00062{left:612.000000pt;}
.x90_c00062{left:613.333333pt;}
.x5a_c00062{left:614.666667pt;}
.xf8_c00062{left:617.333333pt;}
.x66_c00062{left:618.666667pt;}
.xf5_c00062{left:620.373333pt;}
.x4e_c00062{left:622.666667pt;}
.x78_c00062{left:624.373333pt;}
.xcc_c00062{left:626.666667pt;}
.xa6_c00062{left:629.706667pt;}
.xc2_c00062{left:630.666667pt;}
.x1_c00062{left:632.960000pt;}
.x10b_c00062{left:634.293333pt;}
.xb5_c00062{left:637.333333pt;}
.x47_c00062{left:638.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_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_8c64f1e90d9fd98cbcb4e4a6.woff2')format("woff");}.ff1_c00063{font-family:ff1_c00063;line-height:1.688965;font-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_c00063{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.mc4_c00063{transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);}
.md0_c00063{transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);}
.m2d_c00063{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.mc7_c00063{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m72_c00063{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.maa_c00063{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m9f_c00063{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.me0_c00063{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m58_c00063{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m6a_c00063{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m9e_c00063{transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);}
.m7d_c00063{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.me1_c00063{transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);}
.mc0_c00063{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.mc3_c00063{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m99_c00063{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mb0_c00063{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m8e_c00063{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.ma4_c00063{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m75_c00063{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.md2_c00063{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.mc_c00063{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.ma_c00063{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.mbc_c00063{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.m89_c00063{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m5e_c00063{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.ma1_c00063{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m80_c00063{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m33_c00063{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m64_c00063{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m57_c00063{transform:matrix(0.404141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404141,0.000000,0.000000,0.250000,0,0);}
.m90_c00063{transform:matrix(0.404525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404525,0.000000,0.000000,0.250000,0,0);}
.m66_c00063{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m2e_c00063{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m26_c00063{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m4b_c00063{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m86_c00063{transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);}
.mbb_c00063{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mb5_c00063{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m37_c00063{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m48_c00063{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.ma7_c00063{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.m4c_c00063{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.mc5_c00063{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m2a_c00063{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m7e_c00063{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m13_c00063{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m53_c00063{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.mb3_c00063{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mad_c00063{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.md7_c00063{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m2c_c00063{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m60_c00063{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m73_c00063{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mdd_c00063{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m70_c00063{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m81_c00063{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m35_c00063{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m12_c00063{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.ma9_c00063{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m8f_c00063{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.md1_c00063{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m8b_c00063{transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);}
.mb4_c00063{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.mdb_c00063{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m4a_c00063{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m5f_c00063{transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);}
.m61_c00063{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.mb8_c00063{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m9d_c00063{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m9c_c00063{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.m29_c00063{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.ma8_c00063{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.ma6_c00063{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m1c_c00063{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m46_c00063{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.ma3_c00063{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mf_c00063{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m30_c00063{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.ma5_c00063{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m7f_c00063{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m4d_c00063{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.mbf_c00063{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m44_c00063{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m5a_c00063{transform:matrix(0.480672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480672,0.000000,0.000000,0.250000,0,0);}
.md_c00063{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.md6_c00063{transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);}
.m3a_c00063{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m27_c00063{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.md5_c00063{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m6_c00063{transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);}
.m5b_c00063{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mcc_c00063{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m49_c00063{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m88_c00063{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m23_c00063{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m34_c00063{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_c00063{transform:matrix(0.505102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505102,0.000000,0.000000,0.250000,0,0);}
.mdf_c00063{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mc9_c00063{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m74_c00063{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m40_c00063{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m84_c00063{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mb7_c00063{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m87_c00063{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.mb6_c00063{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m1f_c00063{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m65_c00063{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m42_c00063{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m14_c00063{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m21_c00063{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m82_c00063{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m19_c00063{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.mb1_c00063{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m1a_c00063{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mca_c00063{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m85_c00063{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m4e_c00063{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m32_c00063{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.md4_c00063{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m16_c00063{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m1e_c00063{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.maf_c00063{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m2_c00063{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mbd_c00063{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mba_c00063{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m17_c00063{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mab_c00063{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m91_c00063{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m98_c00063{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m4f_c00063{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mc6_c00063{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m77_c00063{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m36_c00063{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mc1_c00063{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m7_c00063{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m93_c00063{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m3e_c00063{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m1_c00063{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m76_c00063{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m52_c00063{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m22_c00063{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m15_c00063{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m10_c00063{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m7b_c00063{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m4_c00063{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.ma2_c00063{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.ma0_c00063{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m11_c00063{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m8a_c00063{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m69_c00063{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mc8_c00063{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m47_c00063{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);}
.m39_c00063{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m9_c00063{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.md9_c00063{transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);}
.m6d_c00063{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m8c_c00063{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m62_c00063{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.mc2_c00063{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m1d_c00063{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m6f_c00063{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m43_c00063{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m55_c00063{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.md8_c00063{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m92_c00063{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m79_c00063{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.mbe_c00063{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m7a_c00063{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m6c_c00063{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m3f_c00063{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.md3_c00063{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m9b_c00063{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m45_c00063{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m71_c00063{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m94_c00063{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m67_c00063{transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);}
.m3c_c00063{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m8d_c00063{transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);}
.mde_c00063{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.mcb_c00063{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mac_c00063{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m9a_c00063{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.me_c00063{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m28_c00063{transform:matrix(0.612552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612552,0.000000,0.000000,0.250000,0,0);}
.m50_c00063{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m68_c00063{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m1b_c00063{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m5d_c00063{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.m20_c00063{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m83_c00063{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_c00063{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m78_c00063{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.mda_c00063{transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);}
.m31_c00063{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m0_c00063{transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);}
.m51_c00063{transform:matrix(0.648235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648235,0.000000,0.000000,0.250000,0,0);}
.m24_c00063{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m3d_c00063{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m56_c00063{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m2f_c00063{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m5c_c00063{transform:matrix(0.675481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675481,0.000000,0.000000,0.250000,0,0);}
.m38_c00063{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mb2_c00063{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m97_c00063{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.m5_c00063{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mae_c00063{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mce_c00063{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m2b_c00063{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m7c_c00063{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m96_c00063{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m18_c00063{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mdc_c00063{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.m25_c00063{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mcd_c00063{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mcf_c00063{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m41_c00063{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.m6b_c00063{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.mb9_c00063{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m59_c00063{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m6e_c00063{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m3b_c00063{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m54_c00063{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m95_c00063{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.m63_c00063{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-3.584672px;}
.ws2_c00063{word-spacing:0.000000px;}
.ws1_c00063{word-spacing:5.075342px;}
.fc0_c00063{color:transparent;}
.fs7_c00063{font-size:3.420000px;}
.fs4_c00063{font-size:18.720000px;}
.fs0_c00063{font-size:20.400000px;}
.fs1_c00063{font-size:25.500000px;}
.fs2_c00063{font-size:28.920000px;}
.fs3_c00063{font-size:32.340000px;}
.fs5_c00063{font-size:35.700000px;}
.fs6_c00063{font-size:39.120000px;}
.y0_c00063{bottom:0.000000px;}
.ye4_c00063{bottom:250.905000px;}
.ye2_c00063{bottom:253.245000px;}
.ye3_c00063{bottom:255.405000px;}
.ydf_c00063{bottom:270.405000px;}
.ydb_c00063{bottom:272.550000px;}
.ye0_c00063{bottom:272.745000px;}
.ye1_c00063{bottom:273.630000px;}
.ydc_c00063{bottom:274.470000px;}
.ydd_c00063{bottom:274.905000px;}
.yde_c00063{bottom:275.970000px;}
.yd9_c00063{bottom:289.905000px;}
.yd8_c00063{bottom:292.245000px;}
.yda_c00063{bottom:293.130000px;}
.yd7_c00063{bottom:294.405000px;}
.yd5_c00063{bottom:310.905000px;}
.yd1_c00063{bottom:311.745000px;}
.yd6_c00063{bottom:312.825000px;}
.yd4_c00063{bottom:313.050000px;}
.yd2_c00063{bottom:313.905000px;}
.yd3_c00063{bottom:314.970000px;}
.ycb_c00063{bottom:331.245000px;}
.ycc_c00063{bottom:331.680000px;}
.ycf_c00063{bottom:332.745000px;}
.ycd_c00063{bottom:333.405000px;}
.yd0_c00063{bottom:333.630000px;}
.yce_c00063{bottom:334.905000px;}
.yc6_c00063{bottom:349.905000px;}
.yc9_c00063{bottom:350.745000px;}
.yc5_c00063{bottom:351.405000px;}
.yc4_c00063{bottom:352.905000px;}
.yc8_c00063{bottom:353.130000px;}
.yca_c00063{bottom:353.970000px;}
.yc7_c00063{bottom:354.405000px;}
.yc0_c00063{bottom:369.405000px;}
.yc2_c00063{bottom:370.245000px;}
.ybc_c00063{bottom:370.470000px;}
.yc3_c00063{bottom:372.405000px;}
.ybd_c00063{bottom:372.630000px;}
.yc1_c00063{bottom:373.470000px;}
.ybe_c00063{bottom:373.905000px;}
.ybf_c00063{bottom:374.970000px;}
.ybb_c00063{bottom:388.905000px;}
.yba_c00063{bottom:390.405000px;}
.yb9_c00063{bottom:391.245000px;}
.yb7_c00063{bottom:392.130000px;}
.yb8_c00063{bottom:393.405000px;}
.yb5_c00063{bottom:408.405000px;}
.yb2_c00063{bottom:409.905000px;}
.yb4_c00063{bottom:410.745000px;}
.yb6_c00063{bottom:411.630000px;}
.yb1_c00063{bottom:412.905000px;}
.yb3_c00063{bottom:413.130000px;}
.yaf_c00063{bottom:429.405000px;}
.yab_c00063{bottom:430.245000px;}
.yad_c00063{bottom:430.905000px;}
.yb0_c00063{bottom:431.130000px;}
.yaa_c00063{bottom:432.405000px;}
.yae_c00063{bottom:432.630000px;}
.yac_c00063{bottom:433.905000px;}
.ya9_c00063{bottom:451.905000px;}
.ya8_c00063{bottom:469.245000px;}
.ya5_c00063{bottom:470.745000px;}
.ya2_c00063{bottom:471.405000px;}
.ya4_c00063{bottom:471.630000px;}
.ya3_c00063{bottom:471.825000px;}
.ya7_c00063{bottom:472.470000px;}
.ya6_c00063{bottom:472.905000px;}
.ya1_c00063{bottom:488.745000px;}
.y9e_c00063{bottom:490.245000px;}
.ya0_c00063{bottom:491.130000px;}
.y9f_c00063{bottom:492.405000px;}
.y9d_c00063{bottom:507.405000px;}
.y99_c00063{bottom:509.745000px;}
.y9b_c00063{bottom:511.470000px;}
.y9a_c00063{bottom:511.905000px;}
.y9c_c00063{bottom:512.130000px;}
.y97_c00063{bottom:529.245000px;}
.y98_c00063{bottom:530.325000px;}
.y96_c00063{bottom:531.405000px;}
.y92_c00063{bottom:548.745000px;}
.y91_c00063{bottom:550.245000px;}
.y94_c00063{bottom:550.470000px;}
.y93_c00063{bottom:550.905000px;}
.y95_c00063{bottom:551.130000px;}
.y90_c00063{bottom:568.245000px;}
.y8e_c00063{bottom:569.745000px;}
.y8f_c00063{bottom:570.405000px;}
.y8b_c00063{bottom:570.630000px;}
.y8d_c00063{bottom:571.470000px;}
.y8c_c00063{bottom:571.905000px;}
.y89_c00063{bottom:588.180000px;}
.y87_c00063{bottom:588.825000px;}
.y88_c00063{bottom:589.245000px;}
.y8a_c00063{bottom:590.130000px;}
.y86_c00063{bottom:591.405000px;}
.y83_c00063{bottom:608.745000px;}
.y85_c00063{bottom:609.630000px;}
.y84_c00063{bottom:610.905000px;}
.y82_c00063{bottom:627.405000px;}
.y80_c00063{bottom:627.825000px;}
.y81_c00063{bottom:629.130000px;}
.y7e_c00063{bottom:630.405000px;}
.y7f_c00063{bottom:630.420000px;}
.y7a_c00063{bottom:646.905000px;}
.y7d_c00063{bottom:647.745000px;}
.y7c_c00063{bottom:648.630000px;}
.y7b_c00063{bottom:649.470000px;}
.y79_c00063{bottom:649.905000px;}
.y73_c00063{bottom:664.905000px;}
.y75_c00063{bottom:667.245000px;}
.y76_c00063{bottom:668.130000px;}
.y74_c00063{bottom:668.325000px;}
.y72_c00063{bottom:669.405000px;}
.y78_c00063{bottom:669.630000px;}
.y77_c00063{bottom:670.470000px;}
.y6e_c00063{bottom:686.745000px;}
.y6f_c00063{bottom:687.405000px;}
.y70_c00063{bottom:687.825000px;}
.y71_c00063{bottom:688.905000px;}
.y6a_c00063{bottom:708.405000px;}
.y6d_c00063{bottom:708.630000px;}
.y6b_c00063{bottom:709.470000px;}
.y6c_c00063{bottom:709.905000px;}
.y67_c00063{bottom:725.970000px;}
.y66_c00063{bottom:727.245000px;}
.y69_c00063{bottom:728.130000px;}
.y68_c00063{bottom:728.325000px;}
.y65_c00063{bottom:729.405000px;}
.y64_c00063{bottom:745.245000px;}
.y60_c00063{bottom:745.905000px;}
.y63_c00063{bottom:746.325000px;}
.y5f_c00063{bottom:746.745000px;}
.y62_c00063{bottom:748.905000px;}
.y61_c00063{bottom:748.920000px;}
.y5e_c00063{bottom:764.970000px;}
.y5c_c00063{bottom:765.405000px;}
.y5b_c00063{bottom:766.245000px;}
.y5d_c00063{bottom:767.325000px;}
.y59_c00063{bottom:767.970000px;}
.y5a_c00063{bottom:768.405000px;}
.y57_c00063{bottom:785.745000px;}
.y54_c00063{bottom:786.825000px;}
.y56_c00063{bottom:787.050000px;}
.y53_c00063{bottom:787.905000px;}
.y55_c00063{bottom:788.130000px;}
.y58_c00063{bottom:788.970000px;}
.y50_c00063{bottom:804.405000px;}
.y4e_c00063{bottom:805.245000px;}
.y51_c00063{bottom:806.325000px;}
.y4d_c00063{bottom:807.405000px;}
.y52_c00063{bottom:807.630000px;}
.y4f_c00063{bottom:808.470000px;}
.y4a_c00063{bottom:823.905000px;}
.y49_c00063{bottom:824.745000px;}
.y46_c00063{bottom:824.970000px;}
.y45_c00063{bottom:825.405000px;}
.y4c_c00063{bottom:825.630000px;}
.y4b_c00063{bottom:825.825000px;}
.y48_c00063{bottom:826.905000px;}
.y47_c00063{bottom:828.420000px;}
.y44_c00063{bottom:844.245000px;}
.y43_c00063{bottom:844.470000px;}
.y41_c00063{bottom:845.745000px;}
.y3f_c00063{bottom:846.405000px;}
.y42_c00063{bottom:846.825000px;}
.y3e_c00063{bottom:847.470000px;}
.y40_c00063{bottom:847.905000px;}
.y3d_c00063{bottom:864.180000px;}
.y3b_c00063{bottom:865.245000px;}
.y3c_c00063{bottom:866.130000px;}
.y3a_c00063{bottom:866.325000px;}
.y39_c00063{bottom:867.405000px;}
.y35_c00063{bottom:882.405000px;}
.y37_c00063{bottom:882.825000px;}
.y32_c00063{bottom:884.745000px;}
.y38_c00063{bottom:885.630000px;}
.y36_c00063{bottom:885.825000px;}
.y33_c00063{bottom:886.905000px;}
.y34_c00063{bottom:887.970000px;}
.y2e_c00063{bottom:902.325000px;}
.y30_c00063{bottom:903.405000px;}
.y2d_c00063{bottom:904.245000px;}
.y2f_c00063{bottom:905.325000px;}
.y31_c00063{bottom:906.405000px;}
.y2c_c00063{bottom:922.470000px;}
.y2a_c00063{bottom:922.905000px;}
.y29_c00063{bottom:923.745000px;}
.y2b_c00063{bottom:924.825000px;}
.y28_c00063{bottom:925.905000px;}
.y25_c00063{bottom:943.470000px;}
.y24_c00063{bottom:943.905000px;}
.y27_c00063{bottom:944.130000px;}
.y23_c00063{bottom:945.405000px;}
.y26_c00063{bottom:946.470000px;}
.y1f_c00063{bottom:961.905000px;}
.y21_c00063{bottom:962.745000px;}
.y1e_c00063{bottom:964.245000px;}
.y1d_c00063{bottom:964.905000px;}
.y22_c00063{bottom:965.130000px;}
.y1c_c00063{bottom:965.970000px;}
.y20_c00063{bottom:966.405000px;}
.y18_c00063{bottom:982.245000px;}
.y1a_c00063{bottom:982.470000px;}
.y17_c00063{bottom:983.325000px;}
.y16_c00063{bottom:984.405000px;}
.y19_c00063{bottom:984.630000px;}
.y1b_c00063{bottom:985.470000px;}
.y12_c00063{bottom:1001.970000px;}
.y15_c00063{bottom:1003.245000px;}
.y11_c00063{bottom:1003.905000px;}
.y13_c00063{bottom:1004.130000px;}
.y14_c00063{bottom:1005.405000px;}
.ye_c00063{bottom:1023.405000px;}
.y10_c00063{bottom:1023.630000px;}
.yf_c00063{bottom:1024.905000px;}
.y9_c00063{bottom:1040.970000px;}
.yb_c00063{bottom:1042.245000px;}
.y8_c00063{bottom:1042.905000px;}
.ya_c00063{bottom:1043.325000px;}
.yd_c00063{bottom:1043.970000px;}
.yc_c00063{bottom:1044.405000px;}
.y7_c00063{bottom:1061.745000px;}
.y4_c00063{bottom:1062.825000px;}
.y3_c00063{bottom:1063.905000px;}
.y5_c00063{bottom:1064.130000px;}
.y6_c00063{bottom:1064.970000px;}
.y2_c00063{bottom:1099.470000px;}
.y1_c00063{bottom:1102.050000px;}
.h8_c00063{height:4.206533px;}
.h5_c00063{height:23.025234px;}
.h1_c00063{height:25.091602px;}
.h2_c00063{height:31.364502px;}
.h3_c00063{height:35.571035px;}
.h4_c00063{height:39.777568px;}
.h6_c00063{height:43.910303px;}
.h7_c00063{height:48.116836px;}
.h0_c00063{height:1335.000000px;}
.w0_c00063{width:880.500000px;}
.x0_c00063{left:0.000000px;}
.x2_c00063{left:150.000000px;}
.x3_c00063{left:151.920000px;}
.x72_c00063{left:153.000000px;}
.xff_c00063{left:154.275000px;}
.x1c_c00063{left:166.500000px;}
.x10_c00063{left:168.420000px;}
.xcf_c00063{left:169.500000px;}
.xf0_c00063{left:172.080000px;}
.x4_c00063{left:177.000000px;}
.xd6_c00063{left:180.420000px;}
.xe7_c00063{left:182.145000px;}
.x103_c00063{left:183.420000px;}
.x4a_c00063{left:184.920000px;}
.x2b_c00063{left:186.000000px;}
.xc5_c00063{left:189.000000px;}
.x57_c00063{left:190.080000px;}
.x6d_c00063{left:191.580000px;}
.x33_c00063{left:194.580000px;}
.x84_c00063{left:196.920000px;}
.x108_c00063{left:199.500000px;}
.x68_c00063{left:200.580000px;}
.xdb_c00063{left:202.500000px;}
.x11_c00063{left:204.000000px;}
.x9d_c00063{left:208.080000px;}
.xa6_c00063{left:210.000000px;}
.xf4_c00063{left:211.500000px;}
.x1d_c00063{left:213.000000px;}
.xd9_c00063{left:215.580000px;}
.xd7_c00063{left:217.500000px;}
.xfb_c00063{left:218.775000px;}
.x4b_c00063{left:220.080000px;}
.x58_c00063{left:222.000000px;}
.xdc_c00063{left:223.080000px;}
.x5_c00063{left:225.000000px;}
.xa3_c00063{left:226.920000px;}
.xc1_c00063{left:229.920000px;}
.x1e_c00063{left:231.000000px;}
.x3e_c00063{left:234.000000px;}
.x8b_c00063{left:235.920000px;}
.x34_c00063{left:237.000000px;}
.x7c_c00063{left:238.500000px;}
.x4c_c00063{left:240.420000px;}
.xc6_c00063{left:241.500000px;}
.x73_c00063{left:242.580000px;}
.xb9_c00063{left:244.920000px;}
.x1f_c00063{left:246.000000px;}
.x69_c00063{left:247.920000px;}
.x104_c00063{left:249.000000px;}
.x12_c00063{left:250.080000px;}
.xf8_c00063{left:255.000000px;}
.xb2_c00063{left:256.920000px;}
.x7d_c00063{left:259.080000px;}
.x95_c00063{left:261.000000px;}
.xf1_c00063{left:264.000000px;}
.x59_c00063{left:267.000000px;}
.x4d_c00063{left:268.920000px;}
.x6_c00063{left:271.500000px;}
.x63_c00063{left:273.000000px;}
.x13_c00063{left:274.920000px;}
.x8c_c00063{left:277.500000px;}
.x3f_c00063{left:282.420000px;}
.x6e_c00063{left:283.500000px;}
.x2c_c00063{left:285.000000px;}
.x6a_c00063{left:287.580000px;}
.xfc_c00063{left:292.500000px;}
.x35_c00063{left:294.000000px;}
.x85_c00063{left:295.500000px;}
.x7_c00063{left:297.000000px;}
.x4e_c00063{left:298.080000px;}
.x14_c00063{left:300.000000px;}
.xab_c00063{left:301.920000px;}
.x5a_c00063{left:303.000000px;}
.xf5_c00063{left:307.080000px;}
.x7e_c00063{left:309.000000px;}
.xba_c00063{left:310.080000px;}
.x2d_c00063{left:312.420000px;}
.x8d_c00063{left:313.920000px;}
.x74_c00063{left:315.000000px;}
.x9e_c00063{left:317.580000px;}
.x109_c00063{left:321.000000px;}
.xec_c00063{left:323.355000px;}
.xc7_c00063{left:324.420000px;}
.xf6_c00063{left:325.920000px;}
.x96_c00063{left:328.500000px;}
.x40_c00063{left:329.580000px;}
.xa7_c00063{left:333.000000px;}
.x15_c00063{left:334.920000px;}
.x86_c00063{left:337.080000px;}
.x20_c00063{left:339.420000px;}
.x8_c00063{left:343.500000px;}
.x4f_c00063{left:344.580000px;}
.x36_c00063{left:348.000000px;}
.xe8_c00063{left:349.500000px;}
.x75_c00063{left:351.000000px;}
.xa8_c00063{left:355.500000px;}
.xe1_c00063{left:357.000000px;}
.xc8_c00063{left:360.000000px;}
.x8e_c00063{left:363.000000px;}
.x9f_c00063{left:364.500000px;}
.x50_c00063{left:366.000000px;}
.xa4_c00063{left:367.080000px;}
.x5b_c00063{left:370.500000px;}
.x37_c00063{left:371.580000px;}
.xf2_c00063{left:374.775000px;}
.xc9_c00063{left:376.920000px;}
.xd0_c00063{left:379.500000px;}
.x9_c00063{left:380.580000px;}
.x76_c00063{left:382.500000px;}
.x8f_c00063{left:386.355000px;}
.xdd_c00063{left:387.420000px;}
.x100_c00063{left:388.500000px;}
.x2e_c00063{left:391.080000px;}
.x6b_c00063{left:393.420000px;}
.x1_c00063{left:394.500000px;}
.x41_c00063{left:396.420000px;}
.x87_c00063{left:397.500000px;}
.x105_c00063{left:399.000000px;}
.xfd_c00063{left:400.080000px;}
.xb3_c00063{left:402.000000px;}
.x51_c00063{left:405.420000px;}
.x97_c00063{left:406.500000px;}
.x16_c00063{left:407.580000px;}
.xa_c00063{left:411.000000px;}
.x21_c00063{left:412.500000px;}
.xc2_c00063{left:413.580000px;}
.x77_c00063{left:417.000000px;}
.x10a_c00063{left:420.000000px;}
.xb4_c00063{left:421.500000px;}
.x42_c00063{left:423.420000px;}
.xac_c00063{left:424.500000px;}
.xed_c00063{left:427.500000px;}
.x64_c00063{left:429.000000px;}
.x22_c00063{left:432.420000px;}
.x2f_c00063{left:435.420000px;}
.x17_c00063{left:438.420000px;}
.xe9_c00063{left:440.580000px;}
.xde_c00063{left:442.920000px;}
.x88_c00063{left:444.420000px;}
.x5c_c00063{left:445.500000px;}
.xca_c00063{left:447.000000px;}
.x6c_c00063{left:449.355000px;}
.x78_c00063{left:453.000000px;}
.xa0_c00063{left:457.920000px;}
.xb_c00063{left:459.420000px;}
.x7f_c00063{left:460.920000px;}
.x23_c00063{left:462.000000px;}
.xf9_c00063{left:463.500000px;}
.xe2_c00063{left:466.500000px;}
.xa9_c00063{left:469.500000px;}
.xd1_c00063{left:471.420000px;}
.x18_c00063{left:472.500000px;}
.x43_c00063{left:473.580000px;}
.x30_c00063{left:475.500000px;}
.x90_c00063{left:476.775000px;}
.x5d_c00063{left:481.500000px;}
.xdf_c00063{left:483.000000px;}
.xad_c00063{left:487.500000px;}
.x79_c00063{left:489.000000px;}
.x44_c00063{left:492.000000px;}
.x24_c00063{left:493.080000px;}
.xb5_c00063{left:496.920000px;}
.x52_c00063{left:498.000000px;}
.xd2_c00063{left:499.080000px;}
.x38_c00063{left:501.000000px;}
.x89_c00063{left:502.275000px;}
.x31_c00063{left:504.420000px;}
.xe3_c00063{left:505.500000px;}
.x6f_c00063{left:506.580000px;}
.x98_c00063{left:508.500000px;}
.x80_c00063{left:510.000000px;}
.x25_c00063{left:513.420000px;}
.x91_c00063{left:515.580000px;}
.xc3_c00063{left:517.500000px;}
.xe4_c00063{left:519.000000px;}
.x39_c00063{left:522.000000px;}
.x5e_c00063{left:523.500000px;}
.x7a_c00063{left:525.000000px;}
.xb6_c00063{left:526.500000px;}
.xae_c00063{left:528.000000px;}
.x19_c00063{left:529.080000px;}
.x45_c00063{left:530.580000px;}
.x8a_c00063{left:534.000000px;}
.x92_c00063{left:535.080000px;}
.x3a_c00063{left:537.420000px;}
.xee_c00063{left:538.920000px;}
.x26_c00063{left:542.580000px;}
.x99_c00063{left:544.500000px;}
.x101_c00063{left:546.420000px;}
.x32_c00063{left:547.500000px;}
.xcb_c00063{left:549.000000px;}
.x5f_c00063{left:550.080000px;}
.x65_c00063{left:552.000000px;}
.xbf_c00063{left:553.080000px;}
.xa1_c00063{left:558.000000px;}
.x1a_c00063{left:559.500000px;}
.xfe_c00063{left:561.000000px;}
.x46_c00063{left:562.500000px;}
.xc_c00063{left:563.580000px;}
.xa5_c00063{left:565.500000px;}
.xd3_c00063{left:566.580000px;}
.xbb_c00063{left:570.000000px;}
.xda_c00063{left:573.000000px;}
.x9a_c00063{left:580.500000px;}
.x60_c00063{left:581.580000px;}
.x27_c00063{left:584.580000px;}
.xd_c00063{left:586.920000px;}
.x81_c00063{left:588.000000px;}
.x3b_c00063{left:590.580000px;}
.xbc_c00063{left:592.920000px;}
.xb7_c00063{left:597.000000px;}
.xaf_c00063{left:598.920000px;}
.x53_c00063{left:601.080000px;}
.x47_c00063{left:603.000000px;}
.x106_c00063{left:604.920000px;}
.xcc_c00063{left:606.000000px;}
.x70_c00063{left:607.080000px;}
.xe5_c00063{left:610.500000px;}
.x3c_c00063{left:611.580000px;}
.xe_c00063{left:613.500000px;}
.xea_c00063{left:618.000000px;}
.x66_c00063{left:619.080000px;}
.x54_c00063{left:621.420000px;}
.xaa_c00063{left:623.580000px;}
.x93_c00063{left:625.500000px;}
.xe6_c00063{left:630.420000px;}
.xa2_c00063{left:633.000000px;}
.x48_c00063{left:634.080000px;}
.xbd_c00063{left:637.920000px;}
.x102_c00063{left:639.000000px;}
.x1b_c00063{left:640.920000px;}
.x61_c00063{left:642.000000px;}
.xcd_c00063{left:643.080000px;}
.x28_c00063{left:645.000000px;}
.x9b_c00063{left:646.080000px;}
.xb0_c00063{left:647.580000px;}
.x55_c00063{left:649.920000px;}
.xc4_c00063{left:652.920000px;}
.x82_c00063{left:654.000000px;}
.xd4_c00063{left:655.500000px;}
.xd8_c00063{left:656.580000px;}
.xc0_c00063{left:658.920000px;}
.x67_c00063{left:663.000000px;}
.x29_c00063{left:664.500000px;}
.xb1_c00063{left:666.420000px;}
.x71_c00063{left:667.500000px;}
.xbe_c00063{left:668.580000px;}
.x107_c00063{left:670.080000px;}
.x94_c00063{left:673.080000px;}
.xce_c00063{left:675.000000px;}
.x9c_c00063{left:676.500000px;}
.x7b_c00063{left:679.500000px;}
.x49_c00063{left:680.580000px;}
.xe0_c00063{left:684.000000px;}
.xf_c00063{left:687.000000px;}
.xb8_c00063{left:690.420000px;}
.xef_c00063{left:691.500000px;}
.x10b_c00063{left:692.580000px;}
.x83_c00063{left:696.420000px;}
.x62_c00063{left:697.920000px;}
.xd5_c00063{left:699.000000px;}
.x56_c00063{left:702.000000px;}
.x3d_c00063{left:703.500000px;}
.xf7_c00063{left:705.000000px;}
.x2a_c00063{left:712.080000px;}
.xf3_c00063{left:715.500000px;}
.xfa_c00063{left:717.000000px;}
.xeb_c00063{left:723.000000px;}
@media print{
.v0_c00063{vertical-align:0.000000pt;}
.ls0_c00063{letter-spacing:0.000000pt;}
.ws0_c00063{word-spacing:-3.186375pt;}
.ws2_c00063{word-spacing:0.000000pt;}
.ws1_c00063{word-spacing:4.511416pt;}
.fs7_c00063{font-size:3.040000pt;}
.fs4_c00063{font-size:16.640000pt;}
.fs0_c00063{font-size:18.133333pt;}
.fs1_c00063{font-size:22.666667pt;}
.fs2_c00063{font-size:25.706667pt;}
.fs3_c00063{font-size:28.746667pt;}
.fs5_c00063{font-size:31.733333pt;}
.fs6_c00063{font-size:34.773333pt;}
.y0_c00063{bottom:0.000000pt;}
.ye4_c00063{bottom:223.026667pt;}
.ye2_c00063{bottom:225.106667pt;}
.ye3_c00063{bottom:227.026667pt;}
.ydf_c00063{bottom:240.360000pt;}
.ydb_c00063{bottom:242.266667pt;}
.ye0_c00063{bottom:242.440000pt;}
.ye1_c00063{bottom:243.226667pt;}
.ydc_c00063{bottom:243.973333pt;}
.ydd_c00063{bottom:244.360000pt;}
.yde_c00063{bottom:245.306667pt;}
.yd9_c00063{bottom:257.693333pt;}
.yd8_c00063{bottom:259.773333pt;}
.yda_c00063{bottom:260.560000pt;}
.yd7_c00063{bottom:261.693333pt;}
.yd5_c00063{bottom:276.360000pt;}
.yd1_c00063{bottom:277.106667pt;}
.yd6_c00063{bottom:278.066667pt;}
.yd4_c00063{bottom:278.266667pt;}
.yd2_c00063{bottom:279.026667pt;}
.yd3_c00063{bottom:279.973333pt;}
.ycb_c00063{bottom:294.440000pt;}
.ycc_c00063{bottom:294.826667pt;}
.ycf_c00063{bottom:295.773333pt;}
.ycd_c00063{bottom:296.360000pt;}
.yd0_c00063{bottom:296.560000pt;}
.yce_c00063{bottom:297.693333pt;}
.yc6_c00063{bottom:311.026667pt;}
.yc9_c00063{bottom:311.773333pt;}
.yc5_c00063{bottom:312.360000pt;}
.yc4_c00063{bottom:313.693333pt;}
.yc8_c00063{bottom:313.893333pt;}
.yca_c00063{bottom:314.640000pt;}
.yc7_c00063{bottom:315.026667pt;}
.yc0_c00063{bottom:328.360000pt;}
.yc2_c00063{bottom:329.106667pt;}
.ybc_c00063{bottom:329.306667pt;}
.yc3_c00063{bottom:331.026667pt;}
.ybd_c00063{bottom:331.226667pt;}
.yc1_c00063{bottom:331.973333pt;}
.ybe_c00063{bottom:332.360000pt;}
.ybf_c00063{bottom:333.306667pt;}
.ybb_c00063{bottom:345.693333pt;}
.yba_c00063{bottom:347.026667pt;}
.yb9_c00063{bottom:347.773333pt;}
.yb7_c00063{bottom:348.560000pt;}
.yb8_c00063{bottom:349.693333pt;}
.yb5_c00063{bottom:363.026667pt;}
.yb2_c00063{bottom:364.360000pt;}
.yb4_c00063{bottom:365.106667pt;}
.yb6_c00063{bottom:365.893333pt;}
.yb1_c00063{bottom:367.026667pt;}
.yb3_c00063{bottom:367.226667pt;}
.yaf_c00063{bottom:381.693333pt;}
.yab_c00063{bottom:382.440000pt;}
.yad_c00063{bottom:383.026667pt;}
.yb0_c00063{bottom:383.226667pt;}
.yaa_c00063{bottom:384.360000pt;}
.yae_c00063{bottom:384.560000pt;}
.yac_c00063{bottom:385.693333pt;}
.ya9_c00063{bottom:401.693333pt;}
.ya8_c00063{bottom:417.106667pt;}
.ya5_c00063{bottom:418.440000pt;}
.ya2_c00063{bottom:419.026667pt;}
.ya4_c00063{bottom:419.226667pt;}
.ya3_c00063{bottom:419.400000pt;}
.ya7_c00063{bottom:419.973333pt;}
.ya6_c00063{bottom:420.360000pt;}
.ya1_c00063{bottom:434.440000pt;}
.y9e_c00063{bottom:435.773333pt;}
.ya0_c00063{bottom:436.560000pt;}
.y9f_c00063{bottom:437.693333pt;}
.y9d_c00063{bottom:451.026667pt;}
.y99_c00063{bottom:453.106667pt;}
.y9b_c00063{bottom:454.640000pt;}
.y9a_c00063{bottom:455.026667pt;}
.y9c_c00063{bottom:455.226667pt;}
.y97_c00063{bottom:470.440000pt;}
.y98_c00063{bottom:471.400000pt;}
.y96_c00063{bottom:472.360000pt;}
.y92_c00063{bottom:487.773333pt;}
.y91_c00063{bottom:489.106667pt;}
.y94_c00063{bottom:489.306667pt;}
.y93_c00063{bottom:489.693333pt;}
.y95_c00063{bottom:489.893333pt;}
.y90_c00063{bottom:505.106667pt;}
.y8e_c00063{bottom:506.440000pt;}
.y8f_c00063{bottom:507.026667pt;}
.y8b_c00063{bottom:507.226667pt;}
.y8d_c00063{bottom:507.973333pt;}
.y8c_c00063{bottom:508.360000pt;}
.y89_c00063{bottom:522.826667pt;}
.y87_c00063{bottom:523.400000pt;}
.y88_c00063{bottom:523.773333pt;}
.y8a_c00063{bottom:524.560000pt;}
.y86_c00063{bottom:525.693333pt;}
.y83_c00063{bottom:541.106667pt;}
.y85_c00063{bottom:541.893333pt;}
.y84_c00063{bottom:543.026667pt;}
.y82_c00063{bottom:557.693333pt;}
.y80_c00063{bottom:558.066667pt;}
.y81_c00063{bottom:559.226667pt;}
.y7e_c00063{bottom:560.360000pt;}
.y7f_c00063{bottom:560.373333pt;}
.y7a_c00063{bottom:575.026667pt;}
.y7d_c00063{bottom:575.773333pt;}
.y7c_c00063{bottom:576.560000pt;}
.y7b_c00063{bottom:577.306667pt;}
.y79_c00063{bottom:577.693333pt;}
.y73_c00063{bottom:591.026667pt;}
.y75_c00063{bottom:593.106667pt;}
.y76_c00063{bottom:593.893333pt;}
.y74_c00063{bottom:594.066667pt;}
.y72_c00063{bottom:595.026667pt;}
.y78_c00063{bottom:595.226667pt;}
.y77_c00063{bottom:595.973333pt;}
.y6e_c00063{bottom:610.440000pt;}
.y6f_c00063{bottom:611.026667pt;}
.y70_c00063{bottom:611.400000pt;}
.y71_c00063{bottom:612.360000pt;}
.y6a_c00063{bottom:629.693333pt;}
.y6d_c00063{bottom:629.893333pt;}
.y6b_c00063{bottom:630.640000pt;}
.y6c_c00063{bottom:631.026667pt;}
.y67_c00063{bottom:645.306667pt;}
.y66_c00063{bottom:646.440000pt;}
.y69_c00063{bottom:647.226667pt;}
.y68_c00063{bottom:647.400000pt;}
.y65_c00063{bottom:648.360000pt;}
.y64_c00063{bottom:662.440000pt;}
.y60_c00063{bottom:663.026667pt;}
.y63_c00063{bottom:663.400000pt;}
.y5f_c00063{bottom:663.773333pt;}
.y62_c00063{bottom:665.693333pt;}
.y61_c00063{bottom:665.706667pt;}
.y5e_c00063{bottom:679.973333pt;}
.y5c_c00063{bottom:680.360000pt;}
.y5b_c00063{bottom:681.106667pt;}
.y5d_c00063{bottom:682.066667pt;}
.y59_c00063{bottom:682.640000pt;}
.y5a_c00063{bottom:683.026667pt;}
.y57_c00063{bottom:698.440000pt;}
.y54_c00063{bottom:699.400000pt;}
.y56_c00063{bottom:699.600000pt;}
.y53_c00063{bottom:700.360000pt;}
.y55_c00063{bottom:700.560000pt;}
.y58_c00063{bottom:701.306667pt;}
.y50_c00063{bottom:715.026667pt;}
.y4e_c00063{bottom:715.773333pt;}
.y51_c00063{bottom:716.733333pt;}
.y4d_c00063{bottom:717.693333pt;}
.y52_c00063{bottom:717.893333pt;}
.y4f_c00063{bottom:718.640000pt;}
.y4a_c00063{bottom:732.360000pt;}
.y49_c00063{bottom:733.106667pt;}
.y46_c00063{bottom:733.306667pt;}
.y45_c00063{bottom:733.693333pt;}
.y4c_c00063{bottom:733.893333pt;}
.y4b_c00063{bottom:734.066667pt;}
.y48_c00063{bottom:735.026667pt;}
.y47_c00063{bottom:736.373333pt;}
.y44_c00063{bottom:750.440000pt;}
.y43_c00063{bottom:750.640000pt;}
.y41_c00063{bottom:751.773333pt;}
.y3f_c00063{bottom:752.360000pt;}
.y42_c00063{bottom:752.733333pt;}
.y3e_c00063{bottom:753.306667pt;}
.y40_c00063{bottom:753.693333pt;}
.y3d_c00063{bottom:768.160000pt;}
.y3b_c00063{bottom:769.106667pt;}
.y3c_c00063{bottom:769.893333pt;}
.y3a_c00063{bottom:770.066667pt;}
.y39_c00063{bottom:771.026667pt;}
.y35_c00063{bottom:784.360000pt;}
.y37_c00063{bottom:784.733333pt;}
.y32_c00063{bottom:786.440000pt;}
.y38_c00063{bottom:787.226667pt;}
.y36_c00063{bottom:787.400000pt;}
.y33_c00063{bottom:788.360000pt;}
.y34_c00063{bottom:789.306667pt;}
.y2e_c00063{bottom:802.066667pt;}
.y30_c00063{bottom:803.026667pt;}
.y2d_c00063{bottom:803.773333pt;}
.y2f_c00063{bottom:804.733333pt;}
.y31_c00063{bottom:805.693333pt;}
.y2c_c00063{bottom:819.973333pt;}
.y2a_c00063{bottom:820.360000pt;}
.y29_c00063{bottom:821.106667pt;}
.y2b_c00063{bottom:822.066667pt;}
.y28_c00063{bottom:823.026667pt;}
.y25_c00063{bottom:838.640000pt;}
.y24_c00063{bottom:839.026667pt;}
.y27_c00063{bottom:839.226667pt;}
.y23_c00063{bottom:840.360000pt;}
.y26_c00063{bottom:841.306667pt;}
.y1f_c00063{bottom:855.026667pt;}
.y21_c00063{bottom:855.773333pt;}
.y1e_c00063{bottom:857.106667pt;}
.y1d_c00063{bottom:857.693333pt;}
.y22_c00063{bottom:857.893333pt;}
.y1c_c00063{bottom:858.640000pt;}
.y20_c00063{bottom:859.026667pt;}
.y18_c00063{bottom:873.106667pt;}
.y1a_c00063{bottom:873.306667pt;}
.y17_c00063{bottom:874.066667pt;}
.y16_c00063{bottom:875.026667pt;}
.y19_c00063{bottom:875.226667pt;}
.y1b_c00063{bottom:875.973333pt;}
.y12_c00063{bottom:890.640000pt;}
.y15_c00063{bottom:891.773333pt;}
.y11_c00063{bottom:892.360000pt;}
.y13_c00063{bottom:892.560000pt;}
.y14_c00063{bottom:893.693333pt;}
.ye_c00063{bottom:909.693333pt;}
.y10_c00063{bottom:909.893333pt;}
.yf_c00063{bottom:911.026667pt;}
.y9_c00063{bottom:925.306667pt;}
.yb_c00063{bottom:926.440000pt;}
.y8_c00063{bottom:927.026667pt;}
.ya_c00063{bottom:927.400000pt;}
.yd_c00063{bottom:927.973333pt;}
.yc_c00063{bottom:928.360000pt;}
.y7_c00063{bottom:943.773333pt;}
.y4_c00063{bottom:944.733333pt;}
.y3_c00063{bottom:945.693333pt;}
.y5_c00063{bottom:945.893333pt;}
.y6_c00063{bottom:946.640000pt;}
.y2_c00063{bottom:977.306667pt;}
.y1_c00063{bottom:979.600000pt;}
.h8_c00063{height:3.739141pt;}
.h5_c00063{height:20.466875pt;}
.h1_c00063{height:22.303646pt;}
.h2_c00063{height:27.879557pt;}
.h3_c00063{height:31.618698pt;}
.h4_c00063{height:35.357839pt;}
.h6_c00063{height:39.031380pt;}
.h7_c00063{height:42.770521pt;}
.h0_c00063{height:1186.666667pt;}
.w0_c00063{width:782.666667pt;}
.x0_c00063{left:0.000000pt;}
.x2_c00063{left:133.333333pt;}
.x3_c00063{left:135.040000pt;}
.x72_c00063{left:136.000000pt;}
.xff_c00063{left:137.133333pt;}
.x1c_c00063{left:148.000000pt;}
.x10_c00063{left:149.706667pt;}
.xcf_c00063{left:150.666667pt;}
.xf0_c00063{left:152.960000pt;}
.x4_c00063{left:157.333333pt;}
.xd6_c00063{left:160.373333pt;}
.xe7_c00063{left:161.906667pt;}
.x103_c00063{left:163.040000pt;}
.x4a_c00063{left:164.373333pt;}
.x2b_c00063{left:165.333333pt;}
.xc5_c00063{left:168.000000pt;}
.x57_c00063{left:168.960000pt;}
.x6d_c00063{left:170.293333pt;}
.x33_c00063{left:172.960000pt;}
.x84_c00063{left:175.040000pt;}
.x108_c00063{left:177.333333pt;}
.x68_c00063{left:178.293333pt;}
.xdb_c00063{left:180.000000pt;}
.x11_c00063{left:181.333333pt;}
.x9d_c00063{left:184.960000pt;}
.xa6_c00063{left:186.666667pt;}
.xf4_c00063{left:188.000000pt;}
.x1d_c00063{left:189.333333pt;}
.xd9_c00063{left:191.626667pt;}
.xd7_c00063{left:193.333333pt;}
.xfb_c00063{left:194.466667pt;}
.x4b_c00063{left:195.626667pt;}
.x58_c00063{left:197.333333pt;}
.xdc_c00063{left:198.293333pt;}
.x5_c00063{left:200.000000pt;}
.xa3_c00063{left:201.706667pt;}
.xc1_c00063{left:204.373333pt;}
.x1e_c00063{left:205.333333pt;}
.x3e_c00063{left:208.000000pt;}
.x8b_c00063{left:209.706667pt;}
.x34_c00063{left:210.666667pt;}
.x7c_c00063{left:212.000000pt;}
.x4c_c00063{left:213.706667pt;}
.xc6_c00063{left:214.666667pt;}
.x73_c00063{left:215.626667pt;}
.xb9_c00063{left:217.706667pt;}
.x1f_c00063{left:218.666667pt;}
.x69_c00063{left:220.373333pt;}
.x104_c00063{left:221.333333pt;}
.x12_c00063{left:222.293333pt;}
.xf8_c00063{left:226.666667pt;}
.xb2_c00063{left:228.373333pt;}
.x7d_c00063{left:230.293333pt;}
.x95_c00063{left:232.000000pt;}
.xf1_c00063{left:234.666667pt;}
.x59_c00063{left:237.333333pt;}
.x4d_c00063{left:239.040000pt;}
.x6_c00063{left:241.333333pt;}
.x63_c00063{left:242.666667pt;}
.x13_c00063{left:244.373333pt;}
.x8c_c00063{left:246.666667pt;}
.x3f_c00063{left:251.040000pt;}
.x6e_c00063{left:252.000000pt;}
.x2c_c00063{left:253.333333pt;}
.x6a_c00063{left:255.626667pt;}
.xfc_c00063{left:260.000000pt;}
.x35_c00063{left:261.333333pt;}
.x85_c00063{left:262.666667pt;}
.x7_c00063{left:264.000000pt;}
.x4e_c00063{left:264.960000pt;}
.x14_c00063{left:266.666667pt;}
.xab_c00063{left:268.373333pt;}
.x5a_c00063{left:269.333333pt;}
.xf5_c00063{left:272.960000pt;}
.x7e_c00063{left:274.666667pt;}
.xba_c00063{left:275.626667pt;}
.x2d_c00063{left:277.706667pt;}
.x8d_c00063{left:279.040000pt;}
.x74_c00063{left:280.000000pt;}
.x9e_c00063{left:282.293333pt;}
.x109_c00063{left:285.333333pt;}
.xec_c00063{left:287.426667pt;}
.xc7_c00063{left:288.373333pt;}
.xf6_c00063{left:289.706667pt;}
.x96_c00063{left:292.000000pt;}
.x40_c00063{left:292.960000pt;}
.xa7_c00063{left:296.000000pt;}
.x15_c00063{left:297.706667pt;}
.x86_c00063{left:299.626667pt;}
.x20_c00063{left:301.706667pt;}
.x8_c00063{left:305.333333pt;}
.x4f_c00063{left:306.293333pt;}
.x36_c00063{left:309.333333pt;}
.xe8_c00063{left:310.666667pt;}
.x75_c00063{left:312.000000pt;}
.xa8_c00063{left:316.000000pt;}
.xe1_c00063{left:317.333333pt;}
.xc8_c00063{left:320.000000pt;}
.x8e_c00063{left:322.666667pt;}
.x9f_c00063{left:324.000000pt;}
.x50_c00063{left:325.333333pt;}
.xa4_c00063{left:326.293333pt;}
.x5b_c00063{left:329.333333pt;}
.x37_c00063{left:330.293333pt;}
.xf2_c00063{left:333.133333pt;}
.xc9_c00063{left:335.040000pt;}
.xd0_c00063{left:337.333333pt;}
.x9_c00063{left:338.293333pt;}
.x76_c00063{left:340.000000pt;}
.x8f_c00063{left:343.426667pt;}
.xdd_c00063{left:344.373333pt;}
.x100_c00063{left:345.333333pt;}
.x2e_c00063{left:347.626667pt;}
.x6b_c00063{left:349.706667pt;}
.x1_c00063{left:350.666667pt;}
.x41_c00063{left:352.373333pt;}
.x87_c00063{left:353.333333pt;}
.x105_c00063{left:354.666667pt;}
.xfd_c00063{left:355.626667pt;}
.xb3_c00063{left:357.333333pt;}
.x51_c00063{left:360.373333pt;}
.x97_c00063{left:361.333333pt;}
.x16_c00063{left:362.293333pt;}
.xa_c00063{left:365.333333pt;}
.x21_c00063{left:366.666667pt;}
.xc2_c00063{left:367.626667pt;}
.x77_c00063{left:370.666667pt;}
.x10a_c00063{left:373.333333pt;}
.xb4_c00063{left:374.666667pt;}
.x42_c00063{left:376.373333pt;}
.xac_c00063{left:377.333333pt;}
.xed_c00063{left:380.000000pt;}
.x64_c00063{left:381.333333pt;}
.x22_c00063{left:384.373333pt;}
.x2f_c00063{left:387.040000pt;}
.x17_c00063{left:389.706667pt;}
.xe9_c00063{left:391.626667pt;}
.xde_c00063{left:393.706667pt;}
.x88_c00063{left:395.040000pt;}
.x5c_c00063{left:396.000000pt;}
.xca_c00063{left:397.333333pt;}
.x6c_c00063{left:399.426667pt;}
.x78_c00063{left:402.666667pt;}
.xa0_c00063{left:407.040000pt;}
.xb_c00063{left:408.373333pt;}
.x7f_c00063{left:409.706667pt;}
.x23_c00063{left:410.666667pt;}
.xf9_c00063{left:412.000000pt;}
.xe2_c00063{left:414.666667pt;}
.xa9_c00063{left:417.333333pt;}
.xd1_c00063{left:419.040000pt;}
.x18_c00063{left:420.000000pt;}
.x43_c00063{left:420.960000pt;}
.x30_c00063{left:422.666667pt;}
.x90_c00063{left:423.800000pt;}
.x5d_c00063{left:428.000000pt;}
.xdf_c00063{left:429.333333pt;}
.xad_c00063{left:433.333333pt;}
.x79_c00063{left:434.666667pt;}
.x44_c00063{left:437.333333pt;}
.x24_c00063{left:438.293333pt;}
.xb5_c00063{left:441.706667pt;}
.x52_c00063{left:442.666667pt;}
.xd2_c00063{left:443.626667pt;}
.x38_c00063{left:445.333333pt;}
.x89_c00063{left:446.466667pt;}
.x31_c00063{left:448.373333pt;}
.xe3_c00063{left:449.333333pt;}
.x6f_c00063{left:450.293333pt;}
.x98_c00063{left:452.000000pt;}
.x80_c00063{left:453.333333pt;}
.x25_c00063{left:456.373333pt;}
.x91_c00063{left:458.293333pt;}
.xc3_c00063{left:460.000000pt;}
.xe4_c00063{left:461.333333pt;}
.x39_c00063{left:464.000000pt;}
.x5e_c00063{left:465.333333pt;}
.x7a_c00063{left:466.666667pt;}
.xb6_c00063{left:468.000000pt;}
.xae_c00063{left:469.333333pt;}
.x19_c00063{left:470.293333pt;}
.x45_c00063{left:471.626667pt;}
.x8a_c00063{left:474.666667pt;}
.x92_c00063{left:475.626667pt;}
.x3a_c00063{left:477.706667pt;}
.xee_c00063{left:479.040000pt;}
.x26_c00063{left:482.293333pt;}
.x99_c00063{left:484.000000pt;}
.x101_c00063{left:485.706667pt;}
.x32_c00063{left:486.666667pt;}
.xcb_c00063{left:488.000000pt;}
.x5f_c00063{left:488.960000pt;}
.x65_c00063{left:490.666667pt;}
.xbf_c00063{left:491.626667pt;}
.xa1_c00063{left:496.000000pt;}
.x1a_c00063{left:497.333333pt;}
.xfe_c00063{left:498.666667pt;}
.x46_c00063{left:500.000000pt;}
.xc_c00063{left:500.960000pt;}
.xa5_c00063{left:502.666667pt;}
.xd3_c00063{left:503.626667pt;}
.xbb_c00063{left:506.666667pt;}
.xda_c00063{left:509.333333pt;}
.x9a_c00063{left:516.000000pt;}
.x60_c00063{left:516.960000pt;}
.x27_c00063{left:519.626667pt;}
.xd_c00063{left:521.706667pt;}
.x81_c00063{left:522.666667pt;}
.x3b_c00063{left:524.960000pt;}
.xbc_c00063{left:527.040000pt;}
.xb7_c00063{left:530.666667pt;}
.xaf_c00063{left:532.373333pt;}
.x53_c00063{left:534.293333pt;}
.x47_c00063{left:536.000000pt;}
.x106_c00063{left:537.706667pt;}
.xcc_c00063{left:538.666667pt;}
.x70_c00063{left:539.626667pt;}
.xe5_c00063{left:542.666667pt;}
.x3c_c00063{left:543.626667pt;}
.xe_c00063{left:545.333333pt;}
.xea_c00063{left:549.333333pt;}
.x66_c00063{left:550.293333pt;}
.x54_c00063{left:552.373333pt;}
.xaa_c00063{left:554.293333pt;}
.x93_c00063{left:556.000000pt;}
.xe6_c00063{left:560.373333pt;}
.xa2_c00063{left:562.666667pt;}
.x48_c00063{left:563.626667pt;}
.xbd_c00063{left:567.040000pt;}
.x102_c00063{left:568.000000pt;}
.x1b_c00063{left:569.706667pt;}
.x61_c00063{left:570.666667pt;}
.xcd_c00063{left:571.626667pt;}
.x28_c00063{left:573.333333pt;}
.x9b_c00063{left:574.293333pt;}
.xb0_c00063{left:575.626667pt;}
.x55_c00063{left:577.706667pt;}
.xc4_c00063{left:580.373333pt;}
.x82_c00063{left:581.333333pt;}
.xd4_c00063{left:582.666667pt;}
.xd8_c00063{left:583.626667pt;}
.xc0_c00063{left:585.706667pt;}
.x67_c00063{left:589.333333pt;}
.x29_c00063{left:590.666667pt;}
.xb1_c00063{left:592.373333pt;}
.x71_c00063{left:593.333333pt;}
.xbe_c00063{left:594.293333pt;}
.x107_c00063{left:595.626667pt;}
.x94_c00063{left:598.293333pt;}
.xce_c00063{left:600.000000pt;}
.x9c_c00063{left:601.333333pt;}
.x7b_c00063{left:604.000000pt;}
.x49_c00063{left:604.960000pt;}
.xe0_c00063{left:608.000000pt;}
.xf_c00063{left:610.666667pt;}
.xb8_c00063{left:613.706667pt;}
.xef_c00063{left:614.666667pt;}
.x10b_c00063{left:615.626667pt;}
.x83_c00063{left:619.040000pt;}
.x62_c00063{left:620.373333pt;}
.xd5_c00063{left:621.333333pt;}
.x56_c00063{left:624.000000pt;}
.x3d_c00063{left:625.333333pt;}
.xf7_c00063{left:626.666667pt;}
.x2a_c00063{left:632.960000pt;}
.xf3_c00063{left:636.000000pt;}
.xfa_c00063{left:637.333333pt;}
.xeb_c00063{left:642.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_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_75f66c4222edf8a04f6878c0.woff2')format("woff");}.ff1_c00064{font-family:ff1_c00064;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me8_c00064{transform:matrix(0.330395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330395,0.000000,0.000000,0.250000,0,0);}
.md2_c00064{transform:matrix(0.333024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333024,0.000000,0.000000,0.250000,0,0);}
.m71_c00064{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m28_c00064{transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);}
.md7_c00064{transform:matrix(0.344499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344499,0.000000,0.000000,0.250000,0,0);}
.m35_c00064{transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);}
.mbb_c00064{transform:matrix(0.354294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354294,0.000000,0.000000,0.250000,0,0);}
.m63_c00064{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m82_c00064{transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);}
.m20_c00064{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m9f_c00064{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mf4_c00064{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m2a_c00064{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mf1_c00064{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.mb9_c00064{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mb2_c00064{transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);}
.m73_c00064{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mcb_c00064{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m103_c00064{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.mba_c00064{transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);}
.m51_c00064{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.me9_c00064{transform:matrix(0.385353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385353,0.000000,0.000000,0.250000,0,0);}
.mff_c00064{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.m109_c00064{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m34_c00064{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mf2_c00064{transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);}
.m24_c00064{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.me1_c00064{transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);}
.ma4_c00064{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.mfb_c00064{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.maf_c00064{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m96_c00064{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m94_c00064{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m17_c00064{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.ma0_c00064{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m4f_c00064{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m2c_c00064{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mfe_c00064{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.med_c00064{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mef_c00064{transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);}
.m100_c00064{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m83_c00064{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.mf0_c00064{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.mf7_c00064{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m76_c00064{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m8b_c00064{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m106_c00064{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m99_c00064{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m2b_c00064{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mfd_c00064{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m31_c00064{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.md3_c00064{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.mbd_c00064{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.m29_c00064{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.maa_c00064{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.ma8_c00064{transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);}
.m3f_c00064{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m45_c00064{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m80_c00064{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.me4_c00064{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.ma9_c00064{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.mdb_c00064{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m108_c00064{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.m9d_c00064{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m4a_c00064{transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);}
.m5a_c00064{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mc4_c00064{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m5f_c00064{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m66_c00064{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.mda_c00064{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m37_c00064{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mac_c00064{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mdc_c00064{transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);}
.md8_c00064{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m98_c00064{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.mea_c00064{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m4_c00064{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m9b_c00064{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m1c_c00064{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.me2_c00064{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.m53_c00064{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m74_c00064{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.mc9_c00064{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.mad_c00064{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.mf5_c00064{transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);}
.m33_c00064{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m41_c00064{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.m89_c00064{transform:matrix(0.443252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443252,0.000000,0.000000,0.250000,0,0);}
.mcc_c00064{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.md4_c00064{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m9e_c00064{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m8d_c00064{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m91_c00064{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.m26_c00064{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.mb6_c00064{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.mc8_c00064{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m58_c00064{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.me_c00064{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mb5_c00064{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.me3_c00064{transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);}
.m1b_c00064{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m2_c00064{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m6f_c00064{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m23_c00064{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.ma5_c00064{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.md5_c00064{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m68_c00064{transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);}
.mb3_c00064{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m9a_c00064{transform:matrix(0.465546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465546,0.000000,0.000000,0.250000,0,0);}
.md6_c00064{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m19_c00064{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m3d_c00064{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.mce_c00064{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.mae_c00064{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m56_c00064{transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);}
.m32_c00064{transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);}
.m7b_c00064{transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);}
.mec_c00064{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m3a_c00064{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m9c_c00064{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m59_c00064{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m81_c00064{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m1d_c00064{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m1f_c00064{transform:matrix(0.482353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482353,0.000000,0.000000,0.250000,0,0);}
.m72_c00064{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.m60_c00064{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mbe_c00064{transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);}
.m1_c00064{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m7d_c00064{transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);}
.m18_c00064{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m6a_c00064{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m90_c00064{transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);}
.me0_c00064{transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);}
.m47_c00064{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m95_c00064{transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);}
.ma7_c00064{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.meb_c00064{transform:matrix(0.493506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493506,0.000000,0.000000,0.250000,0,0);}
.m107_c00064{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m92_c00064{transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);}
.mf8_c00064{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m79_c00064{transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);}
.mc6_c00064{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.md_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);}
.m4d_c00064{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m3c_c00064{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m62_c00064{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m70_c00064{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mb1_c00064{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mc2_c00064{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m104_c00064{transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);}
.mfc_c00064{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m6b_c00064{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m4e_c00064{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m36_c00064{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m42_c00064{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mde_c00064{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.mc_c00064{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m64_c00064{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.m55_c00064{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mc5_c00064{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m86_c00064{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m16_c00064{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.mb7_c00064{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.ma2_c00064{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m43_c00064{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m8_c00064{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.ma_c00064{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mc7_c00064{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m1a_c00064{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m5_c00064{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mcf_c00064{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m27_c00064{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.mdd_c00064{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m78_c00064{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m13_c00064{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m3_c00064{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m7f_c00064{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m6_c00064{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m69_c00064{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mc0_c00064{transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);}
.m3e_c00064{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m4b_c00064{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m61_c00064{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m7c_c00064{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mca_c00064{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m105_c00064{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m8e_c00064{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m5b_c00064{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m11_c00064{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.me5_c00064{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.me6_c00064{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m54_c00064{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.ma1_c00064{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m14_c00064{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m6c_c00064{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m1e_c00064{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m87_c00064{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m97_c00064{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m5c_c00064{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.md9_c00064{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m65_c00064{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m77_c00064{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m40_c00064{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m52_c00064{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mdf_c00064{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.mb8_c00064{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m12_c00064{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m15_c00064{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m67_c00064{transform:matrix(0.572356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572356,0.000000,0.000000,0.250000,0,0);}
.m8c_c00064{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m44_c00064{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m30_c00064{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mf_c00064{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.me7_c00064{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.ma6_c00064{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);}
.m50_c00064{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mee_c00064{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.mf3_c00064{transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);}
.m6e_c00064{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.mb0_c00064{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m9_c00064{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.md1_c00064{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m10_c00064{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m57_c00064{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.mf6_c00064{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m5e_c00064{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m93_c00064{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m8f_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);}
.m5d_c00064{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m48_c00064{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m2d_c00064{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m3b_c00064{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mbc_c00064{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m38_c00064{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.m39_c00064{transform:matrix(0.619295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619295,0.000000,0.000000,0.250000,0,0);}
.m102_c00064{transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);}
.m8a_c00064{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m75_c00064{transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);}
.ma3_c00064{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m7a_c00064{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.m101_c00064{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m7e_c00064{transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);}
.mb4_c00064{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m0_c00064{transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);}
.m2e_c00064{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mfa_c00064{transform:matrix(0.666494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666494,0.000000,0.000000,0.250000,0,0);}
.m25_c00064{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m85_c00064{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mc1_c00064{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m22_c00064{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.m49_c00064{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m21_c00064{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mb_c00064{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m2f_c00064{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m7_c00064{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mc3_c00064{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.mbf_c00064{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mab_c00064{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.md0_c00064{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m46_c00064{transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);}
.m4c_c00064{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mcd_c00064{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m6d_c00064{transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);}
.mf9_c00064{transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);}
.m84_c00064{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m88_c00064{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00064{vertical-align:0.000000px;}
.ls0_c00064{letter-spacing:0.000000px;}
.sc__c00064{text-shadow:none;}
.sc0_c00064{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00064{-webkit-text-stroke:0px transparent;}
.sc0_c00064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00064{word-spacing:-16.889280px;}
.ws1_c00064{word-spacing:-5.978246px;}
.ws2_c00064{word-spacing:0.000000px;}
._0_c00064{width:6.888531px;}
.fc0_c00064{color:transparent;}
.fs7_c00064{font-size:3.420000px;}
.fs4_c00064{font-size:18.720000px;}
.fs0_c00064{font-size:20.400000px;}
.fs5_c00064{font-size:25.500000px;}
.fs1_c00064{font-size:28.920000px;}
.fs2_c00064{font-size:32.340000px;}
.fs3_c00064{font-size:35.700000px;}
.fs6_c00064{font-size:39.120000px;}
.fs8_c00064{font-size:42.540000px;}
.y0_c00064{bottom:0.000000px;}
.y103_c00064{bottom:250.905000px;}
.y102_c00064{bottom:253.245000px;}
.y106_c00064{bottom:254.745000px;}
.y101_c00064{bottom:255.405000px;}
.y105_c00064{bottom:255.630000px;}
.y104_c00064{bottom:256.905000px;}
.y100_c00064{bottom:257.325000px;}
.yfa_c00064{bottom:271.245000px;}
.yfc_c00064{bottom:273.405000px;}
.yfd_c00064{bottom:273.630000px;}
.yfe_c00064{bottom:273.825000px;}
.yff_c00064{bottom:274.245000px;}
.yfb_c00064{bottom:274.470000px;}
.yf9_c00064{bottom:274.905000px;}
.yf8_c00064{bottom:276.405000px;}
.yf4_c00064{bottom:292.245000px;}
.yf3_c00064{bottom:293.130000px;}
.yf7_c00064{bottom:293.745000px;}
.yf6_c00064{bottom:293.970000px;}
.yf5_c00064{bottom:294.405000px;}
.yf2_c00064{bottom:295.905000px;}
.yf1_c00064{bottom:296.745000px;}
.yee_c00064{bottom:311.745000px;}
.yef_c00064{bottom:312.825000px;}
.yed_c00064{bottom:313.905000px;}
.yf0_c00064{bottom:314.130000px;}
.yec_c00064{bottom:315.405000px;}
.yeb_c00064{bottom:318.825000px;}
.ye9_c00064{bottom:331.245000px;}
.ye6_c00064{bottom:332.325000px;}
.ye8_c00064{bottom:333.405000px;}
.ye7_c00064{bottom:333.630000px;}
.yea_c00064{bottom:333.825000px;}
.ye5_c00064{bottom:334.905000px;}
.ye4_c00064{bottom:336.405000px;}
.ydf_c00064{bottom:349.905000px;}
.ye0_c00064{bottom:350.745000px;}
.ydd_c00064{bottom:352.245000px;}
.ye1_c00064{bottom:352.470000px;}
.yde_c00064{bottom:352.905000px;}
.ye2_c00064{bottom:354.405000px;}
.ye3_c00064{bottom:355.470000px;}
.ydc_c00064{bottom:356.325000px;}
.ydb_c00064{bottom:370.245000px;}
.yd8_c00064{bottom:371.325000px;}
.yd7_c00064{bottom:372.405000px;}
.yda_c00064{bottom:372.630000px;}
.yd6_c00064{bottom:373.245000px;}
.yd9_c00064{bottom:373.470000px;}
.yd5_c00064{bottom:375.825000px;}
.yd4_c00064{bottom:378.630000px;}
.yd0_c00064{bottom:388.905000px;}
.yd3_c00064{bottom:389.745000px;}
.ycd_c00064{bottom:390.180000px;}
.yce_c00064{bottom:391.245000px;}
.yd2_c00064{bottom:391.905000px;}
.ycf_c00064{bottom:392.325000px;}
.ycc_c00064{bottom:393.180000px;}
.yd1_c00064{bottom:393.405000px;}
.yca_c00064{bottom:410.745000px;}
.yc7_c00064{bottom:411.180000px;}
.ycb_c00064{bottom:411.630000px;}
.yc9_c00064{bottom:411.825000px;}
.yc8_c00064{bottom:412.905000px;}
.yc6_c00064{bottom:414.825000px;}
.yc5_c00064{bottom:429.825000px;}
.yc2_c00064{bottom:430.905000px;}
.yc3_c00064{bottom:431.970000px;}
.yc4_c00064{bottom:432.405000px;}
.yc1_c00064{bottom:435.825000px;}
.yc0_c00064{bottom:449.325000px;}
.ybf_c00064{bottom:449.745000px;}
.ybd_c00064{bottom:450.180000px;}
.ybe_c00064{bottom:451.905000px;}
.ybc_c00064{bottom:456.405000px;}
.yba_c00064{bottom:468.825000px;}
.yb9_c00064{bottom:469.245000px;}
.yb7_c00064{bottom:470.745000px;}
.yb8_c00064{bottom:471.405000px;}
.ybb_c00064{bottom:472.470000px;}
.yb6_c00064{bottom:472.905000px;}
.yb5_c00064{bottom:474.825000px;}
.yb2_c00064{bottom:487.905000px;}
.yaf_c00064{bottom:490.245000px;}
.yb4_c00064{bottom:490.470000px;}
.yb1_c00064{bottom:490.905000px;}
.yb3_c00064{bottom:491.130000px;}
.yb0_c00064{bottom:492.405000px;}
.yae_c00064{bottom:494.745000px;}
.yac_c00064{bottom:507.405000px;}
.ya9_c00064{bottom:509.745000px;}
.yad_c00064{bottom:510.405000px;}
.yaa_c00064{bottom:510.630000px;}
.yab_c00064{bottom:511.470000px;}
.ya8_c00064{bottom:513.825000px;}
.ya7_c00064{bottom:533.325000px;}
.ya5_c00064{bottom:548.745000px;}
.ya2_c00064{bottom:549.405000px;}
.ya4_c00064{bottom:549.630000px;}
.ya6_c00064{bottom:549.825000px;}
.ya3_c00064{bottom:550.905000px;}
.ya1_c00064{bottom:553.050000px;}
.ya0_c00064{bottom:556.470000px;}
.y9e_c00064{bottom:565.905000px;}
.y9f_c00064{bottom:569.130000px;}
.y9d_c00064{bottom:570.405000px;}
.y9c_c00064{bottom:572.325000px;}
.y9b_c00064{bottom:574.050000px;}
.y97_c00064{bottom:587.745000px;}
.y99_c00064{bottom:588.180000px;}
.y96_c00064{bottom:589.245000px;}
.y9a_c00064{bottom:589.905000px;}
.y98_c00064{bottom:590.970000px;}
.y95_c00064{bottom:591.180000px;}
.y92_c00064{bottom:606.405000px;}
.y93_c00064{bottom:607.245000px;}
.y94_c00064{bottom:608.325000px;}
.y8c_c00064{bottom:609.180000px;}
.y90_c00064{bottom:609.405000px;}
.y8f_c00064{bottom:609.630000px;}
.y91_c00064{bottom:610.470000px;}
.y8d_c00064{bottom:610.905000px;}
.y8e_c00064{bottom:610.920000px;}
.y8b_c00064{bottom:625.905000px;}
.y8a_c00064{bottom:628.245000px;}
.y89_c00064{bottom:629.130000px;}
.y87_c00064{bottom:629.325000px;}
.y88_c00064{bottom:630.405000px;}
.y86_c00064{bottom:630.825000px;}
.y85_c00064{bottom:633.405000px;}
.y81_c00064{bottom:647.745000px;}
.y83_c00064{bottom:648.630000px;}
.y82_c00064{bottom:648.825000px;}
.y84_c00064{bottom:649.470000px;}
.y80_c00064{bottom:649.905000px;}
.y7f_c00064{bottom:650.970000px;}
.y7e_c00064{bottom:666.405000px;}
.y79_c00064{bottom:666.825000px;}
.y7a_c00064{bottom:667.245000px;}
.y7b_c00064{bottom:668.325000px;}
.y7d_c00064{bottom:668.550000px;}
.y7c_c00064{bottom:669.405000px;}
.y78_c00064{bottom:671.970000px;}
.y74_c00064{bottom:686.745000px;}
.y77_c00064{bottom:688.245000px;}
.y75_c00064{bottom:688.905000px;}
.y76_c00064{bottom:689.130000px;}
.y73_c00064{bottom:690.405000px;}
.y72_c00064{bottom:692.325000px;}
.y70_c00064{bottom:705.405000px;}
.y6d_c00064{bottom:706.245000px;}
.y6e_c00064{bottom:708.405000px;}
.y71_c00064{bottom:708.630000px;}
.y6f_c00064{bottom:709.470000px;}
.y6c_c00064{bottom:709.905000px;}
.y6b_c00064{bottom:710.325000px;}
.y69_c00064{bottom:724.905000px;}
.y64_c00064{bottom:725.745000px;}
.y68_c00064{bottom:726.825000px;}
.y65_c00064{bottom:727.905000px;}
.y67_c00064{bottom:728.130000px;}
.y6a_c00064{bottom:728.970000px;}
.y62_c00064{bottom:729.180000px;}
.y66_c00064{bottom:729.405000px;}
.y63_c00064{bottom:730.470000px;}
.y5f_c00064{bottom:746.745000px;}
.y61_c00064{bottom:747.630000px;}
.y5e_c00064{bottom:748.905000px;}
.y60_c00064{bottom:748.920000px;}
.y5d_c00064{bottom:750.405000px;}
.y5b_c00064{bottom:766.245000px;}
.y5c_c00064{bottom:766.680000px;}
.y5a_c00064{bottom:767.130000px;}
.y59_c00064{bottom:768.405000px;}
.y58_c00064{bottom:769.905000px;}
.y57_c00064{bottom:770.550000px;}
.y52_c00064{bottom:785.745000px;}
.y55_c00064{bottom:786.825000px;}
.y56_c00064{bottom:787.470000px;}
.y53_c00064{bottom:787.905000px;}
.y51_c00064{bottom:788.745000px;}
.y54_c00064{bottom:788.970000px;}
.y4e_c00064{bottom:804.405000px;}
.y4f_c00064{bottom:805.245000px;}
.y4d_c00064{bottom:807.405000px;}
.y50_c00064{bottom:808.470000px;}
.y4c_c00064{bottom:809.325000px;}
.y4a_c00064{bottom:823.905000px;}
.y48_c00064{bottom:824.745000px;}
.y4b_c00064{bottom:825.825000px;}
.y47_c00064{bottom:826.470000px;}
.y49_c00064{bottom:826.905000px;}
.y46_c00064{bottom:827.130000px;}
.y45_c00064{bottom:828.405000px;}
.y43_c00064{bottom:843.405000px;}
.y41_c00064{bottom:845.745000px;}
.y44_c00064{bottom:846.405000px;}
.y40_c00064{bottom:846.630000px;}
.y42_c00064{bottom:846.825000px;}
.y3f_c00064{bottom:847.905000px;}
.y3e_c00064{bottom:849.825000px;}
.y3d_c00064{bottom:863.745000px;}
.y37_c00064{bottom:865.245000px;}
.y3c_c00064{bottom:865.905000px;}
.y39_c00064{bottom:866.130000px;}
.y3b_c00064{bottom:866.325000px;}
.y3a_c00064{bottom:866.970000px;}
.y38_c00064{bottom:867.405000px;}
.y36_c00064{bottom:868.905000px;}
.y35_c00064{bottom:884.325000px;}
.y34_c00064{bottom:884.745000px;}
.y31_c00064{bottom:886.245000px;}
.y33_c00064{bottom:886.470000px;}
.y32_c00064{bottom:886.905000px;}
.y2e_c00064{bottom:904.245000px;}
.y30_c00064{bottom:905.130000px;}
.y2f_c00064{bottom:905.325000px;}
.y2d_c00064{bottom:906.405000px;}
.y2c_c00064{bottom:908.325000px;}
.y2b_c00064{bottom:923.745000px;}
.y2a_c00064{bottom:924.630000px;}
.y28_c00064{bottom:924.825000px;}
.y29_c00064{bottom:925.905000px;}
.y27_c00064{bottom:927.630000px;}
.y25_c00064{bottom:941.970000px;}
.y26_c00064{bottom:943.245000px;}
.y23_c00064{bottom:944.130000px;}
.y22_c00064{bottom:944.745000px;}
.y24_c00064{bottom:945.405000px;}
.y21_c00064{bottom:946.905000px;}
.y1e_c00064{bottom:961.905000px;}
.y1d_c00064{bottom:962.745000px;}
.y1c_c00064{bottom:964.245000px;}
.y1f_c00064{bottom:964.905000px;}
.y20_c00064{bottom:965.970000px;}
.y1b_c00064{bottom:966.405000px;}
.y17_c00064{bottom:982.245000px;}
.y16_c00064{bottom:983.745000px;}
.y15_c00064{bottom:984.180000px;}
.y1a_c00064{bottom:984.405000px;}
.y19_c00064{bottom:984.630000px;}
.y18_c00064{bottom:985.470000px;}
.y13_c00064{bottom:1001.325000px;}
.y11_c00064{bottom:1001.745000px;}
.y10_c00064{bottom:1003.905000px;}
.y12_c00064{bottom:1004.130000px;}
.y14_c00064{bottom:1004.970000px;}
.yf_c00064{bottom:1005.405000px;}
.yd_c00064{bottom:1021.245000px;}
.ye_c00064{bottom:1022.325000px;}
.yc_c00064{bottom:1023.405000px;}
.yb_c00064{bottom:1024.905000px;}
.ya_c00064{bottom:1039.905000px;}
.y9_c00064{bottom:1044.405000px;}
.y8_c00064{bottom:1045.905000px;}
.y6_c00064{bottom:1059.405000px;}
.y5_c00064{bottom:1061.745000px;}
.y7_c00064{bottom:1062.630000px;}
.y4_c00064{bottom:1063.905000px;}
.y3_c00064{bottom:1064.325000px;}
.y2_c00064{bottom:1099.905000px;}
.y1_c00064{bottom:1102.050000px;}
.h8_c00064{height:4.206533px;}
.h5_c00064{height:23.025234px;}
.h1_c00064{height:25.091602px;}
.h6_c00064{height:31.364502px;}
.h2_c00064{height:35.571035px;}
.h3_c00064{height:39.777568px;}
.h4_c00064{height:43.910303px;}
.h7_c00064{height:48.116836px;}
.h9_c00064{height:52.323369px;}
.h0_c00064{height:1335.000000px;}
.w0_c00064{width:880.500000px;}
.x0_c00064{left:0.000000px;}
.x3_c00064{left:150.000000px;}
.x29_c00064{left:151.080000px;}
.x5f_c00064{left:152.775000px;}
.xf7_c00064{left:154.080000px;}
.x98_c00064{left:160.500000px;}
.x13_c00064{left:165.000000px;}
.x84_c00064{left:166.920000px;}
.xd7_c00064{left:168.420000px;}
.xf0_c00064{left:171.000000px;}
.x4c_c00064{left:172.500000px;}
.x68_c00064{left:178.500000px;}
.x8f_c00064{left:180.000000px;}
.xb4_c00064{left:181.920000px;}
.x42_c00064{left:184.080000px;}
.x10_c00064{left:187.500000px;}
.x74_c00064{left:189.000000px;}
.x99_c00064{left:190.080000px;}
.x36_c00064{left:191.145000px;}
.x2a_c00064{left:193.080000px;}
.x1e_c00064{left:194.580000px;}
.x104_c00064{left:196.920000px;}
.xa9_c00064{left:198.000000px;}
.x14_c00064{left:199.920000px;}
.x90_c00064{left:201.420000px;}
.x4_c00064{left:202.920000px;}
.x85_c00064{left:205.080000px;}
.xfb_c00064{left:206.580000px;}
.xb0_c00064{left:208.500000px;}
.x10a_c00064{left:211.920000px;}
.x57_c00064{left:216.000000px;}
.xb5_c00064{left:217.500000px;}
.x7c_c00064{left:220.080000px;}
.x11_c00064{left:222.420000px;}
.x2b_c00064{left:223.500000px;}
.x4d_c00064{left:225.420000px;}
.xcd_c00064{left:226.500000px;}
.xe8_c00064{left:227.580000px;}
.x75_c00064{left:229.500000px;}
.x1f_c00064{left:231.420000px;}
.x9a_c00064{left:232.500000px;}
.x69_c00064{left:234.000000px;}
.x15_c00064{left:236.580000px;}
.xbb_c00064{left:238.920000px;}
.x76_c00064{left:244.920000px;}
.xdd_c00064{left:246.000000px;}
.x9b_c00064{left:247.080000px;}
.x5_c00064{left:249.420000px;}
.xd8_c00064{left:252.420000px;}
.x37_c00064{left:254.580000px;}
.xc7_c00064{left:256.275000px;}
.x16_c00064{left:258.420000px;}
.x2c_c00064{left:259.500000px;}
.xd3_c00064{left:261.000000px;}
.x7d_c00064{left:262.500000px;}
.x4e_c00064{left:264.420000px;}
.xee_c00064{left:265.500000px;}
.xce_c00064{left:267.420000px;}
.xfd_c00064{left:268.920000px;}
.x12_c00064{left:270.000000px;}
.x91_c00064{left:271.920000px;}
.x10d_c00064{left:273.000000px;}
.x43_c00064{left:274.500000px;}
.x20_c00064{left:275.580000px;}
.x8c_c00064{left:277.500000px;}
.x6a_c00064{left:279.420000px;}
.xa2_c00064{left:280.500000px;}
.xd4_c00064{left:282.420000px;}
.x60_c00064{left:284.580000px;}
.x17_c00064{left:289.080000px;}
.xe0_c00064{left:291.000000px;}
.xc8_c00064{left:292.500000px;}
.x4f_c00064{left:295.920000px;}
.xb6_c00064{left:297.000000px;}
.x86_c00064{left:300.420000px;}
.x38_c00064{left:304.275000px;}
.xe9_c00064{left:305.580000px;}
.x6b_c00064{left:307.920000px;}
.x77_c00064{left:309.000000px;}
.x21_c00064{left:310.920000px;}
.x92_c00064{left:312.000000px;}
.x7e_c00064{left:313.080000px;}
.x2d_c00064{left:316.080000px;}
.x9c_c00064{left:317.580000px;}
.x8d_c00064{left:319.500000px;}
.xf1_c00064{left:321.420000px;}
.x108_c00064{left:324.000000px;}
.x44_c00064{left:325.500000px;}
.x50_c00064{left:327.645000px;}
.x6c_c00064{left:330.000000px;}
.xd9_c00064{left:331.500000px;}
.x6_c00064{left:333.420000px;}
.x39_c00064{left:336.420000px;}
.xaa_c00064{left:340.080000px;}
.x22_c00064{left:343.500000px;}
.x93_c00064{left:344.580000px;}
.xf2_c00064{left:346.500000px;}
.x45_c00064{left:347.580000px;}
.x78_c00064{left:349.500000px;}
.x58_c00064{left:350.580000px;}
.x102_c00064{left:352.500000px;}
.xea_c00064{left:354.000000px;}
.x18_c00064{left:356.580000px;}
.xe1_c00064{left:361.500000px;}
.x7_c00064{left:363.420000px;}
.xb7_c00064{left:367.275000px;}
.x10e_c00064{left:369.420000px;}
.xab_c00064{left:372.420000px;}
.x3a_c00064{left:373.920000px;}
.x87_c00064{left:375.420000px;}
.x7f_c00064{left:377.580000px;}
.xc9_c00064{left:379.080000px;}
.x46_c00064{left:381.420000px;}
.x2e_c00064{left:382.500000px;}
.x105_c00064{left:385.500000px;}
.xd5_c00064{left:386.580000px;}
.x51_c00064{left:390.420000px;}
.x1_c00064{left:393.000000px;}
.xef_c00064{left:397.080000px;}
.x8_c00064{left:399.000000px;}
.x3b_c00064{left:400.920000px;}
.x94_c00064{left:403.920000px;}
.x61_c00064{left:405.000000px;}
.x80_c00064{left:407.580000px;}
.xf3_c00064{left:409.500000px;}
.x2f_c00064{left:411.000000px;}
.x88_c00064{left:412.500000px;}
.x59_c00064{left:414.645000px;}
.xf8_c00064{left:417.420000px;}
.x6d_c00064{left:418.500000px;}
.xbc_c00064{left:420.000000px;}
.xa3_c00064{left:421.080000px;}
.x9d_c00064{left:423.000000px;}
.x10f_c00064{left:426.420000px;}
.x19_c00064{left:427.500000px;}
.x47_c00064{left:428.580000px;}
.x23_c00064{left:432.420000px;}
.xc2_c00064{left:434.580000px;}
.xda_c00064{left:436.500000px;}
.x9_c00064{left:438.000000px;}
.xbd_c00064{left:439.920000px;}
.x81_c00064{left:441.000000px;}
.x62_c00064{left:444.420000px;}
.x79_c00064{left:445.500000px;}
.x10b_c00064{left:448.500000px;}
.x52_c00064{left:451.500000px;}
.xc0_c00064{left:453.855000px;}
.xac_c00064{left:456.000000px;}
.x6e_c00064{left:459.000000px;}
.x89_c00064{left:460.080000px;}
.x30_c00064{left:465.000000px;}
.xde_c00064{left:466.500000px;}
.x3c_c00064{left:467.580000px;}
.x5a_c00064{left:470.580000px;}
.xeb_c00064{left:474.420000px;}
.xca_c00064{left:475.500000px;}
.x24_c00064{left:477.420000px;}
.x6f_c00064{left:478.500000px;}
.x63_c00064{left:480.000000px;}
.xe2_c00064{left:481.920000px;}
.xb1_c00064{left:483.420000px;}
.x31_c00064{left:486.000000px;}
.x1a_c00064{left:487.080000px;}
.xdb_c00064{left:489.000000px;}
.xa4_c00064{left:490.080000px;}
.xf9_c00064{left:492.000000px;}
.xfe_c00064{left:495.000000px;}
.xb8_c00064{left:496.500000px;}
.x32_c00064{left:501.000000px;}
.x109_c00064{left:502.920000px;}
.x95_c00064{left:504.420000px;}
.x8a_c00064{left:505.920000px;}
.xa_c00064{left:508.500000px;}
.x5b_c00064{left:510.000000px;}
.xec_c00064{left:511.500000px;}
.x48_c00064{left:512.580000px;}
.xfc_c00064{left:513.855000px;}
.xe3_c00064{left:515.580000px;}
.xc3_c00064{left:517.080000px;}
.x110_c00064{left:519.000000px;}
.x25_c00064{left:520.920000px;}
.x10c_c00064{left:522.000000px;}
.xad_c00064{left:523.920000px;}
.x9e_c00064{left:525.000000px;}
.xf4_c00064{left:526.080000px;}
.x64_c00064{left:527.580000px;}
.x53_c00064{left:531.000000px;}
.x8b_c00064{left:532.080000px;}
.x3d_c00064{left:534.000000px;}
.xe4_c00064{left:535.500000px;}
.xcf_c00064{left:536.580000px;}
.x49_c00064{left:540.420000px;}
.xa5_c00064{left:543.000000px;}
.x7a_c00064{left:544.920000px;}
.xb_c00064{left:546.420000px;}
.x70_c00064{left:547.920000px;}
.xc4_c00064{left:549.420000px;}
.xb9_c00064{left:550.500000px;}
.xae_c00064{left:552.420000px;}
.x82_c00064{left:553.500000px;}
.x1b_c00064{left:555.000000px;}
.x9f_c00064{left:556.920000px;}
.xe5_c00064{left:559.500000px;}
.x65_c00064{left:561.420000px;}
.xa6_c00064{left:562.500000px;}
.x111_c00064{left:563.580000px;}
.x96_c00064{left:565.080000px;}
.x8e_c00064{left:570.000000px;}
.x33_c00064{left:573.420000px;}
.x71_c00064{left:575.580000px;}
.xa7_c00064{left:577.920000px;}
.x83_c00064{left:579.000000px;}
.x26_c00064{left:580.500000px;}
.xcb_c00064{left:583.920000px;}
.xd6_c00064{left:585.000000px;}
.x3e_c00064{left:586.500000px;}
.xbe_c00064{left:588.000000px;}
.x54_c00064{left:589.500000px;}
.xf5_c00064{left:592.920000px;}
.xc5_c00064{left:595.920000px;}
.x1c_c00064{left:598.920000px;}
.xd0_c00064{left:600.000000px;}
.xc_c00064{left:601.500000px;}
.x27_c00064{left:603.000000px;}
.xff_c00064{left:604.500000px;}
.x106_c00064{left:607.500000px;}
.x3f_c00064{left:609.000000px;}
.xcc_c00064{left:612.000000px;}
.xb2_c00064{left:613.500000px;}
.xe6_c00064{left:614.580000px;}
.x5c_c00064{left:616.080000px;}
.xd1_c00064{left:619.920000px;}
.xdf_c00064{left:623.580000px;}
.xed_c00064{left:625.500000px;}
.xdc_c00064{left:627.000000px;}
.x40_c00064{left:628.080000px;}
.x100_c00064{left:630.000000px;}
.x72_c00064{left:633.420000px;}
.x55_c00064{left:634.500000px;}
.xa8_c00064{left:635.580000px;}
.xbf_c00064{left:637.500000px;}
.xd_c00064{left:639.420000px;}
.x4a_c00064{left:640.500000px;}
.x34_c00064{left:643.080000px;}
.x5d_c00064{left:649.920000px;}
.xfa_c00064{left:651.420000px;}
.xa0_c00064{left:652.500000px;}
.x66_c00064{left:654.420000px;}
.xb3_c00064{left:656.580000px;}
.x112_c00064{left:658.920000px;}
.xc1_c00064{left:661.500000px;}
.x35_c00064{left:663.000000px;}
.xf6_c00064{left:664.500000px;}
.x28_c00064{left:665.580000px;}
.xba_c00064{left:667.080000px;}
.x41_c00064{left:669.000000px;}
.xd2_c00064{left:670.080000px;}
.x5e_c00064{left:671.355000px;}
.xa1_c00064{left:673.500000px;}
.x1d_c00064{left:676.500000px;}
.x107_c00064{left:679.920000px;}
.xe7_c00064{left:681.000000px;}
.xe_c00064{left:682.080000px;}
.x103_c00064{left:688.500000px;}
.x73_c00064{left:689.580000px;}
.x97_c00064{left:693.000000px;}
.x4b_c00064{left:697.080000px;}
.x7b_c00064{left:699.420000px;}
.x101_c00064{left:702.000000px;}
.xf_c00064{left:703.500000px;}
.x56_c00064{left:707.580000px;}
.x2_c00064{left:709.080000px;}
.x67_c00064{left:715.080000px;}
.xc6_c00064{left:716.580000px;}
.xaf_c00064{left:720.000000px;}
@media print{
.v0_c00064{vertical-align:0.000000pt;}
.ls0_c00064{letter-spacing:0.000000pt;}
.ws0_c00064{word-spacing:-15.012693pt;}
.ws1_c00064{word-spacing:-5.313996pt;}
.ws2_c00064{word-spacing:0.000000pt;}
._0_c00064{width:6.123139pt;}
.fs7_c00064{font-size:3.040000pt;}
.fs4_c00064{font-size:16.640000pt;}
.fs0_c00064{font-size:18.133333pt;}
.fs5_c00064{font-size:22.666667pt;}
.fs1_c00064{font-size:25.706667pt;}
.fs2_c00064{font-size:28.746667pt;}
.fs3_c00064{font-size:31.733333pt;}
.fs6_c00064{font-size:34.773333pt;}
.fs8_c00064{font-size:37.813333pt;}
.y0_c00064{bottom:0.000000pt;}
.y103_c00064{bottom:223.026667pt;}
.y102_c00064{bottom:225.106667pt;}
.y106_c00064{bottom:226.440000pt;}
.y101_c00064{bottom:227.026667pt;}
.y105_c00064{bottom:227.226667pt;}
.y104_c00064{bottom:228.360000pt;}
.y100_c00064{bottom:228.733333pt;}
.yfa_c00064{bottom:241.106667pt;}
.yfc_c00064{bottom:243.026667pt;}
.yfd_c00064{bottom:243.226667pt;}
.yfe_c00064{bottom:243.400000pt;}
.yff_c00064{bottom:243.773333pt;}
.yfb_c00064{bottom:243.973333pt;}
.yf9_c00064{bottom:244.360000pt;}
.yf8_c00064{bottom:245.693333pt;}
.yf4_c00064{bottom:259.773333pt;}
.yf3_c00064{bottom:260.560000pt;}
.yf7_c00064{bottom:261.106667pt;}
.yf6_c00064{bottom:261.306667pt;}
.yf5_c00064{bottom:261.693333pt;}
.yf2_c00064{bottom:263.026667pt;}
.yf1_c00064{bottom:263.773333pt;}
.yee_c00064{bottom:277.106667pt;}
.yef_c00064{bottom:278.066667pt;}
.yed_c00064{bottom:279.026667pt;}
.yf0_c00064{bottom:279.226667pt;}
.yec_c00064{bottom:280.360000pt;}
.yeb_c00064{bottom:283.400000pt;}
.ye9_c00064{bottom:294.440000pt;}
.ye6_c00064{bottom:295.400000pt;}
.ye8_c00064{bottom:296.360000pt;}
.ye7_c00064{bottom:296.560000pt;}
.yea_c00064{bottom:296.733333pt;}
.ye5_c00064{bottom:297.693333pt;}
.ye4_c00064{bottom:299.026667pt;}
.ydf_c00064{bottom:311.026667pt;}
.ye0_c00064{bottom:311.773333pt;}
.ydd_c00064{bottom:313.106667pt;}
.ye1_c00064{bottom:313.306667pt;}
.yde_c00064{bottom:313.693333pt;}
.ye2_c00064{bottom:315.026667pt;}
.ye3_c00064{bottom:315.973333pt;}
.ydc_c00064{bottom:316.733333pt;}
.ydb_c00064{bottom:329.106667pt;}
.yd8_c00064{bottom:330.066667pt;}
.yd7_c00064{bottom:331.026667pt;}
.yda_c00064{bottom:331.226667pt;}
.yd6_c00064{bottom:331.773333pt;}
.yd9_c00064{bottom:331.973333pt;}
.yd5_c00064{bottom:334.066667pt;}
.yd4_c00064{bottom:336.560000pt;}
.yd0_c00064{bottom:345.693333pt;}
.yd3_c00064{bottom:346.440000pt;}
.ycd_c00064{bottom:346.826667pt;}
.yce_c00064{bottom:347.773333pt;}
.yd2_c00064{bottom:348.360000pt;}
.ycf_c00064{bottom:348.733333pt;}
.ycc_c00064{bottom:349.493333pt;}
.yd1_c00064{bottom:349.693333pt;}
.yca_c00064{bottom:365.106667pt;}
.yc7_c00064{bottom:365.493333pt;}
.ycb_c00064{bottom:365.893333pt;}
.yc9_c00064{bottom:366.066667pt;}
.yc8_c00064{bottom:367.026667pt;}
.yc6_c00064{bottom:368.733333pt;}
.yc5_c00064{bottom:382.066667pt;}
.yc2_c00064{bottom:383.026667pt;}
.yc3_c00064{bottom:383.973333pt;}
.yc4_c00064{bottom:384.360000pt;}
.yc1_c00064{bottom:387.400000pt;}
.yc0_c00064{bottom:399.400000pt;}
.ybf_c00064{bottom:399.773333pt;}
.ybd_c00064{bottom:400.160000pt;}
.ybe_c00064{bottom:401.693333pt;}
.ybc_c00064{bottom:405.693333pt;}
.yba_c00064{bottom:416.733333pt;}
.yb9_c00064{bottom:417.106667pt;}
.yb7_c00064{bottom:418.440000pt;}
.yb8_c00064{bottom:419.026667pt;}
.ybb_c00064{bottom:419.973333pt;}
.yb6_c00064{bottom:420.360000pt;}
.yb5_c00064{bottom:422.066667pt;}
.yb2_c00064{bottom:433.693333pt;}
.yaf_c00064{bottom:435.773333pt;}
.yb4_c00064{bottom:435.973333pt;}
.yb1_c00064{bottom:436.360000pt;}
.yb3_c00064{bottom:436.560000pt;}
.yb0_c00064{bottom:437.693333pt;}
.yae_c00064{bottom:439.773333pt;}
.yac_c00064{bottom:451.026667pt;}
.ya9_c00064{bottom:453.106667pt;}
.yad_c00064{bottom:453.693333pt;}
.yaa_c00064{bottom:453.893333pt;}
.yab_c00064{bottom:454.640000pt;}
.ya8_c00064{bottom:456.733333pt;}
.ya7_c00064{bottom:474.066667pt;}
.ya5_c00064{bottom:487.773333pt;}
.ya2_c00064{bottom:488.360000pt;}
.ya4_c00064{bottom:488.560000pt;}
.ya6_c00064{bottom:488.733333pt;}
.ya3_c00064{bottom:489.693333pt;}
.ya1_c00064{bottom:491.600000pt;}
.ya0_c00064{bottom:494.640000pt;}
.y9e_c00064{bottom:503.026667pt;}
.y9f_c00064{bottom:505.893333pt;}
.y9d_c00064{bottom:507.026667pt;}
.y9c_c00064{bottom:508.733333pt;}
.y9b_c00064{bottom:510.266667pt;}
.y97_c00064{bottom:522.440000pt;}
.y99_c00064{bottom:522.826667pt;}
.y96_c00064{bottom:523.773333pt;}
.y9a_c00064{bottom:524.360000pt;}
.y98_c00064{bottom:525.306667pt;}
.y95_c00064{bottom:525.493333pt;}
.y92_c00064{bottom:539.026667pt;}
.y93_c00064{bottom:539.773333pt;}
.y94_c00064{bottom:540.733333pt;}
.y8c_c00064{bottom:541.493333pt;}
.y90_c00064{bottom:541.693333pt;}
.y8f_c00064{bottom:541.893333pt;}
.y91_c00064{bottom:542.640000pt;}
.y8d_c00064{bottom:543.026667pt;}
.y8e_c00064{bottom:543.040000pt;}
.y8b_c00064{bottom:556.360000pt;}
.y8a_c00064{bottom:558.440000pt;}
.y89_c00064{bottom:559.226667pt;}
.y87_c00064{bottom:559.400000pt;}
.y88_c00064{bottom:560.360000pt;}
.y86_c00064{bottom:560.733333pt;}
.y85_c00064{bottom:563.026667pt;}
.y81_c00064{bottom:575.773333pt;}
.y83_c00064{bottom:576.560000pt;}
.y82_c00064{bottom:576.733333pt;}
.y84_c00064{bottom:577.306667pt;}
.y80_c00064{bottom:577.693333pt;}
.y7f_c00064{bottom:578.640000pt;}
.y7e_c00064{bottom:592.360000pt;}
.y79_c00064{bottom:592.733333pt;}
.y7a_c00064{bottom:593.106667pt;}
.y7b_c00064{bottom:594.066667pt;}
.y7d_c00064{bottom:594.266667pt;}
.y7c_c00064{bottom:595.026667pt;}
.y78_c00064{bottom:597.306667pt;}
.y74_c00064{bottom:610.440000pt;}
.y77_c00064{bottom:611.773333pt;}
.y75_c00064{bottom:612.360000pt;}
.y76_c00064{bottom:612.560000pt;}
.y73_c00064{bottom:613.693333pt;}
.y72_c00064{bottom:615.400000pt;}
.y70_c00064{bottom:627.026667pt;}
.y6d_c00064{bottom:627.773333pt;}
.y6e_c00064{bottom:629.693333pt;}
.y71_c00064{bottom:629.893333pt;}
.y6f_c00064{bottom:630.640000pt;}
.y6c_c00064{bottom:631.026667pt;}
.y6b_c00064{bottom:631.400000pt;}
.y69_c00064{bottom:644.360000pt;}
.y64_c00064{bottom:645.106667pt;}
.y68_c00064{bottom:646.066667pt;}
.y65_c00064{bottom:647.026667pt;}
.y67_c00064{bottom:647.226667pt;}
.y6a_c00064{bottom:647.973333pt;}
.y62_c00064{bottom:648.160000pt;}
.y66_c00064{bottom:648.360000pt;}
.y63_c00064{bottom:649.306667pt;}
.y5f_c00064{bottom:663.773333pt;}
.y61_c00064{bottom:664.560000pt;}
.y5e_c00064{bottom:665.693333pt;}
.y60_c00064{bottom:665.706667pt;}
.y5d_c00064{bottom:667.026667pt;}
.y5b_c00064{bottom:681.106667pt;}
.y5c_c00064{bottom:681.493333pt;}
.y5a_c00064{bottom:681.893333pt;}
.y59_c00064{bottom:683.026667pt;}
.y58_c00064{bottom:684.360000pt;}
.y57_c00064{bottom:684.933333pt;}
.y52_c00064{bottom:698.440000pt;}
.y55_c00064{bottom:699.400000pt;}
.y56_c00064{bottom:699.973333pt;}
.y53_c00064{bottom:700.360000pt;}
.y51_c00064{bottom:701.106667pt;}
.y54_c00064{bottom:701.306667pt;}
.y4e_c00064{bottom:715.026667pt;}
.y4f_c00064{bottom:715.773333pt;}
.y4d_c00064{bottom:717.693333pt;}
.y50_c00064{bottom:718.640000pt;}
.y4c_c00064{bottom:719.400000pt;}
.y4a_c00064{bottom:732.360000pt;}
.y48_c00064{bottom:733.106667pt;}
.y4b_c00064{bottom:734.066667pt;}
.y47_c00064{bottom:734.640000pt;}
.y49_c00064{bottom:735.026667pt;}
.y46_c00064{bottom:735.226667pt;}
.y45_c00064{bottom:736.360000pt;}
.y43_c00064{bottom:749.693333pt;}
.y41_c00064{bottom:751.773333pt;}
.y44_c00064{bottom:752.360000pt;}
.y40_c00064{bottom:752.560000pt;}
.y42_c00064{bottom:752.733333pt;}
.y3f_c00064{bottom:753.693333pt;}
.y3e_c00064{bottom:755.400000pt;}
.y3d_c00064{bottom:767.773333pt;}
.y37_c00064{bottom:769.106667pt;}
.y3c_c00064{bottom:769.693333pt;}
.y39_c00064{bottom:769.893333pt;}
.y3b_c00064{bottom:770.066667pt;}
.y3a_c00064{bottom:770.640000pt;}
.y38_c00064{bottom:771.026667pt;}
.y36_c00064{bottom:772.360000pt;}
.y35_c00064{bottom:786.066667pt;}
.y34_c00064{bottom:786.440000pt;}
.y31_c00064{bottom:787.773333pt;}
.y33_c00064{bottom:787.973333pt;}
.y32_c00064{bottom:788.360000pt;}
.y2e_c00064{bottom:803.773333pt;}
.y30_c00064{bottom:804.560000pt;}
.y2f_c00064{bottom:804.733333pt;}
.y2d_c00064{bottom:805.693333pt;}
.y2c_c00064{bottom:807.400000pt;}
.y2b_c00064{bottom:821.106667pt;}
.y2a_c00064{bottom:821.893333pt;}
.y28_c00064{bottom:822.066667pt;}
.y29_c00064{bottom:823.026667pt;}
.y27_c00064{bottom:824.560000pt;}
.y25_c00064{bottom:837.306667pt;}
.y26_c00064{bottom:838.440000pt;}
.y23_c00064{bottom:839.226667pt;}
.y22_c00064{bottom:839.773333pt;}
.y24_c00064{bottom:840.360000pt;}
.y21_c00064{bottom:841.693333pt;}
.y1e_c00064{bottom:855.026667pt;}
.y1d_c00064{bottom:855.773333pt;}
.y1c_c00064{bottom:857.106667pt;}
.y1f_c00064{bottom:857.693333pt;}
.y20_c00064{bottom:858.640000pt;}
.y1b_c00064{bottom:859.026667pt;}
.y17_c00064{bottom:873.106667pt;}
.y16_c00064{bottom:874.440000pt;}
.y15_c00064{bottom:874.826667pt;}
.y1a_c00064{bottom:875.026667pt;}
.y19_c00064{bottom:875.226667pt;}
.y18_c00064{bottom:875.973333pt;}
.y13_c00064{bottom:890.066667pt;}
.y11_c00064{bottom:890.440000pt;}
.y10_c00064{bottom:892.360000pt;}
.y12_c00064{bottom:892.560000pt;}
.y14_c00064{bottom:893.306667pt;}
.yf_c00064{bottom:893.693333pt;}
.yd_c00064{bottom:907.773333pt;}
.ye_c00064{bottom:908.733333pt;}
.yc_c00064{bottom:909.693333pt;}
.yb_c00064{bottom:911.026667pt;}
.ya_c00064{bottom:924.360000pt;}
.y9_c00064{bottom:928.360000pt;}
.y8_c00064{bottom:929.693333pt;}
.y6_c00064{bottom:941.693333pt;}
.y5_c00064{bottom:943.773333pt;}
.y7_c00064{bottom:944.560000pt;}
.y4_c00064{bottom:945.693333pt;}
.y3_c00064{bottom:946.066667pt;}
.y2_c00064{bottom:977.693333pt;}
.y1_c00064{bottom:979.600000pt;}
.h8_c00064{height:3.739141pt;}
.h5_c00064{height:20.466875pt;}
.h1_c00064{height:22.303646pt;}
.h6_c00064{height:27.879557pt;}
.h2_c00064{height:31.618698pt;}
.h3_c00064{height:35.357839pt;}
.h4_c00064{height:39.031380pt;}
.h7_c00064{height:42.770521pt;}
.h9_c00064{height:46.509661pt;}
.h0_c00064{height:1186.666667pt;}
.w0_c00064{width:782.666667pt;}
.x0_c00064{left:0.000000pt;}
.x3_c00064{left:133.333333pt;}
.x29_c00064{left:134.293333pt;}
.x5f_c00064{left:135.800000pt;}
.xf7_c00064{left:136.960000pt;}
.x98_c00064{left:142.666667pt;}
.x13_c00064{left:146.666667pt;}
.x84_c00064{left:148.373333pt;}
.xd7_c00064{left:149.706667pt;}
.xf0_c00064{left:152.000000pt;}
.x4c_c00064{left:153.333333pt;}
.x68_c00064{left:158.666667pt;}
.x8f_c00064{left:160.000000pt;}
.xb4_c00064{left:161.706667pt;}
.x42_c00064{left:163.626667pt;}
.x10_c00064{left:166.666667pt;}
.x74_c00064{left:168.000000pt;}
.x99_c00064{left:168.960000pt;}
.x36_c00064{left:169.906667pt;}
.x2a_c00064{left:171.626667pt;}
.x1e_c00064{left:172.960000pt;}
.x104_c00064{left:175.040000pt;}
.xa9_c00064{left:176.000000pt;}
.x14_c00064{left:177.706667pt;}
.x90_c00064{left:179.040000pt;}
.x4_c00064{left:180.373333pt;}
.x85_c00064{left:182.293333pt;}
.xfb_c00064{left:183.626667pt;}
.xb0_c00064{left:185.333333pt;}
.x10a_c00064{left:188.373333pt;}
.x57_c00064{left:192.000000pt;}
.xb5_c00064{left:193.333333pt;}
.x7c_c00064{left:195.626667pt;}
.x11_c00064{left:197.706667pt;}
.x2b_c00064{left:198.666667pt;}
.x4d_c00064{left:200.373333pt;}
.xcd_c00064{left:201.333333pt;}
.xe8_c00064{left:202.293333pt;}
.x75_c00064{left:204.000000pt;}
.x1f_c00064{left:205.706667pt;}
.x9a_c00064{left:206.666667pt;}
.x69_c00064{left:208.000000pt;}
.x15_c00064{left:210.293333pt;}
.xbb_c00064{left:212.373333pt;}
.x76_c00064{left:217.706667pt;}
.xdd_c00064{left:218.666667pt;}
.x9b_c00064{left:219.626667pt;}
.x5_c00064{left:221.706667pt;}
.xd8_c00064{left:224.373333pt;}
.x37_c00064{left:226.293333pt;}
.xc7_c00064{left:227.800000pt;}
.x16_c00064{left:229.706667pt;}
.x2c_c00064{left:230.666667pt;}
.xd3_c00064{left:232.000000pt;}
.x7d_c00064{left:233.333333pt;}
.x4e_c00064{left:235.040000pt;}
.xee_c00064{left:236.000000pt;}
.xce_c00064{left:237.706667pt;}
.xfd_c00064{left:239.040000pt;}
.x12_c00064{left:240.000000pt;}
.x91_c00064{left:241.706667pt;}
.x10d_c00064{left:242.666667pt;}
.x43_c00064{left:244.000000pt;}
.x20_c00064{left:244.960000pt;}
.x8c_c00064{left:246.666667pt;}
.x6a_c00064{left:248.373333pt;}
.xa2_c00064{left:249.333333pt;}
.xd4_c00064{left:251.040000pt;}
.x60_c00064{left:252.960000pt;}
.x17_c00064{left:256.960000pt;}
.xe0_c00064{left:258.666667pt;}
.xc8_c00064{left:260.000000pt;}
.x4f_c00064{left:263.040000pt;}
.xb6_c00064{left:264.000000pt;}
.x86_c00064{left:267.040000pt;}
.x38_c00064{left:270.466667pt;}
.xe9_c00064{left:271.626667pt;}
.x6b_c00064{left:273.706667pt;}
.x77_c00064{left:274.666667pt;}
.x21_c00064{left:276.373333pt;}
.x92_c00064{left:277.333333pt;}
.x7e_c00064{left:278.293333pt;}
.x2d_c00064{left:280.960000pt;}
.x9c_c00064{left:282.293333pt;}
.x8d_c00064{left:284.000000pt;}
.xf1_c00064{left:285.706667pt;}
.x108_c00064{left:288.000000pt;}
.x44_c00064{left:289.333333pt;}
.x50_c00064{left:291.240000pt;}
.x6c_c00064{left:293.333333pt;}
.xd9_c00064{left:294.666667pt;}
.x6_c00064{left:296.373333pt;}
.x39_c00064{left:299.040000pt;}
.xaa_c00064{left:302.293333pt;}
.x22_c00064{left:305.333333pt;}
.x93_c00064{left:306.293333pt;}
.xf2_c00064{left:308.000000pt;}
.x45_c00064{left:308.960000pt;}
.x78_c00064{left:310.666667pt;}
.x58_c00064{left:311.626667pt;}
.x102_c00064{left:313.333333pt;}
.xea_c00064{left:314.666667pt;}
.x18_c00064{left:316.960000pt;}
.xe1_c00064{left:321.333333pt;}
.x7_c00064{left:323.040000pt;}
.xb7_c00064{left:326.466667pt;}
.x10e_c00064{left:328.373333pt;}
.xab_c00064{left:331.040000pt;}
.x3a_c00064{left:332.373333pt;}
.x87_c00064{left:333.706667pt;}
.x7f_c00064{left:335.626667pt;}
.xc9_c00064{left:336.960000pt;}
.x46_c00064{left:339.040000pt;}
.x2e_c00064{left:340.000000pt;}
.x105_c00064{left:342.666667pt;}
.xd5_c00064{left:343.626667pt;}
.x51_c00064{left:347.040000pt;}
.x1_c00064{left:349.333333pt;}
.xef_c00064{left:352.960000pt;}
.x8_c00064{left:354.666667pt;}
.x3b_c00064{left:356.373333pt;}
.x94_c00064{left:359.040000pt;}
.x61_c00064{left:360.000000pt;}
.x80_c00064{left:362.293333pt;}
.xf3_c00064{left:364.000000pt;}
.x2f_c00064{left:365.333333pt;}
.x88_c00064{left:366.666667pt;}
.x59_c00064{left:368.573333pt;}
.xf8_c00064{left:371.040000pt;}
.x6d_c00064{left:372.000000pt;}
.xbc_c00064{left:373.333333pt;}
.xa3_c00064{left:374.293333pt;}
.x9d_c00064{left:376.000000pt;}
.x10f_c00064{left:379.040000pt;}
.x19_c00064{left:380.000000pt;}
.x47_c00064{left:380.960000pt;}
.x23_c00064{left:384.373333pt;}
.xc2_c00064{left:386.293333pt;}
.xda_c00064{left:388.000000pt;}
.x9_c00064{left:389.333333pt;}
.xbd_c00064{left:391.040000pt;}
.x81_c00064{left:392.000000pt;}
.x62_c00064{left:395.040000pt;}
.x79_c00064{left:396.000000pt;}
.x10b_c00064{left:398.666667pt;}
.x52_c00064{left:401.333333pt;}
.xc0_c00064{left:403.426667pt;}
.xac_c00064{left:405.333333pt;}
.x6e_c00064{left:408.000000pt;}
.x89_c00064{left:408.960000pt;}
.x30_c00064{left:413.333333pt;}
.xde_c00064{left:414.666667pt;}
.x3c_c00064{left:415.626667pt;}
.x5a_c00064{left:418.293333pt;}
.xeb_c00064{left:421.706667pt;}
.xca_c00064{left:422.666667pt;}
.x24_c00064{left:424.373333pt;}
.x6f_c00064{left:425.333333pt;}
.x63_c00064{left:426.666667pt;}
.xe2_c00064{left:428.373333pt;}
.xb1_c00064{left:429.706667pt;}
.x31_c00064{left:432.000000pt;}
.x1a_c00064{left:432.960000pt;}
.xdb_c00064{left:434.666667pt;}
.xa4_c00064{left:435.626667pt;}
.xf9_c00064{left:437.333333pt;}
.xfe_c00064{left:440.000000pt;}
.xb8_c00064{left:441.333333pt;}
.x32_c00064{left:445.333333pt;}
.x109_c00064{left:447.040000pt;}
.x95_c00064{left:448.373333pt;}
.x8a_c00064{left:449.706667pt;}
.xa_c00064{left:452.000000pt;}
.x5b_c00064{left:453.333333pt;}
.xec_c00064{left:454.666667pt;}
.x48_c00064{left:455.626667pt;}
.xfc_c00064{left:456.760000pt;}
.xe3_c00064{left:458.293333pt;}
.xc3_c00064{left:459.626667pt;}
.x110_c00064{left:461.333333pt;}
.x25_c00064{left:463.040000pt;}
.x10c_c00064{left:464.000000pt;}
.xad_c00064{left:465.706667pt;}
.x9e_c00064{left:466.666667pt;}
.xf4_c00064{left:467.626667pt;}
.x64_c00064{left:468.960000pt;}
.x53_c00064{left:472.000000pt;}
.x8b_c00064{left:472.960000pt;}
.x3d_c00064{left:474.666667pt;}
.xe4_c00064{left:476.000000pt;}
.xcf_c00064{left:476.960000pt;}
.x49_c00064{left:480.373333pt;}
.xa5_c00064{left:482.666667pt;}
.x7a_c00064{left:484.373333pt;}
.xb_c00064{left:485.706667pt;}
.x70_c00064{left:487.040000pt;}
.xc4_c00064{left:488.373333pt;}
.xb9_c00064{left:489.333333pt;}
.xae_c00064{left:491.040000pt;}
.x82_c00064{left:492.000000pt;}
.x1b_c00064{left:493.333333pt;}
.x9f_c00064{left:495.040000pt;}
.xe5_c00064{left:497.333333pt;}
.x65_c00064{left:499.040000pt;}
.xa6_c00064{left:500.000000pt;}
.x111_c00064{left:500.960000pt;}
.x96_c00064{left:502.293333pt;}
.x8e_c00064{left:506.666667pt;}
.x33_c00064{left:509.706667pt;}
.x71_c00064{left:511.626667pt;}
.xa7_c00064{left:513.706667pt;}
.x83_c00064{left:514.666667pt;}
.x26_c00064{left:516.000000pt;}
.xcb_c00064{left:519.040000pt;}
.xd6_c00064{left:520.000000pt;}
.x3e_c00064{left:521.333333pt;}
.xbe_c00064{left:522.666667pt;}
.x54_c00064{left:524.000000pt;}
.xf5_c00064{left:527.040000pt;}
.xc5_c00064{left:529.706667pt;}
.x1c_c00064{left:532.373333pt;}
.xd0_c00064{left:533.333333pt;}
.xc_c00064{left:534.666667pt;}
.x27_c00064{left:536.000000pt;}
.xff_c00064{left:537.333333pt;}
.x106_c00064{left:540.000000pt;}
.x3f_c00064{left:541.333333pt;}
.xcc_c00064{left:544.000000pt;}
.xb2_c00064{left:545.333333pt;}
.xe6_c00064{left:546.293333pt;}
.x5c_c00064{left:547.626667pt;}
.xd1_c00064{left:551.040000pt;}
.xdf_c00064{left:554.293333pt;}
.xed_c00064{left:556.000000pt;}
.xdc_c00064{left:557.333333pt;}
.x40_c00064{left:558.293333pt;}
.x100_c00064{left:560.000000pt;}
.x72_c00064{left:563.040000pt;}
.x55_c00064{left:564.000000pt;}
.xa8_c00064{left:564.960000pt;}
.xbf_c00064{left:566.666667pt;}
.xd_c00064{left:568.373333pt;}
.x4a_c00064{left:569.333333pt;}
.x34_c00064{left:571.626667pt;}
.x5d_c00064{left:577.706667pt;}
.xfa_c00064{left:579.040000pt;}
.xa0_c00064{left:580.000000pt;}
.x66_c00064{left:581.706667pt;}
.xb3_c00064{left:583.626667pt;}
.x112_c00064{left:585.706667pt;}
.xc1_c00064{left:588.000000pt;}
.x35_c00064{left:589.333333pt;}
.xf6_c00064{left:590.666667pt;}
.x28_c00064{left:591.626667pt;}
.xba_c00064{left:592.960000pt;}
.x41_c00064{left:594.666667pt;}
.xd2_c00064{left:595.626667pt;}
.x5e_c00064{left:596.760000pt;}
.xa1_c00064{left:598.666667pt;}
.x1d_c00064{left:601.333333pt;}
.x107_c00064{left:604.373333pt;}
.xe7_c00064{left:605.333333pt;}
.xe_c00064{left:606.293333pt;}
.x103_c00064{left:612.000000pt;}
.x73_c00064{left:612.960000pt;}
.x97_c00064{left:616.000000pt;}
.x4b_c00064{left:619.626667pt;}
.x7b_c00064{left:621.706667pt;}
.x101_c00064{left:624.000000pt;}
.xf_c00064{left:625.333333pt;}
.x56_c00064{left:628.960000pt;}
.x2_c00064{left:630.293333pt;}
.x67_c00064{left:635.626667pt;}
.xc6_c00064{left:636.960000pt;}
.xaf_c00064{left:640.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_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_bf521ee18043b23ee177e80c.woff2')format("woff");}.ff1_c00065{font-family:ff1_c00065;line-height:1.688965;font-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_c00065{transform:matrix(0.331288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331288,0.000000,0.000000,0.250000,0,0);}
.m90_c00065{transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);}
.mc7_c00065{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.mc4_c00065{transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);}
.m74_c00065{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mae_c00065{transform:matrix(0.365414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365414,0.000000,0.000000,0.250000,0,0);}
.m59_c00065{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m2f_c00065{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m49_c00065{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m70_c00065{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mda_c00065{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m26_c00065{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m7b_c00065{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m8b_c00065{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.ma0_c00065{transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);}
.m5c_c00065{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.mbf_c00065{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.mad_c00065{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m7a_c00065{transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);}
.m86_c00065{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m72_c00065{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m48_c00065{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.mbd_c00065{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.me9_c00065{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m54_c00065{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m0_c00065{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m1e_c00065{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m18_c00065{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mbe_c00065{transform:matrix(0.402607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402607,0.000000,0.000000,0.250000,0,0);}
.mbc_c00065{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mb_c00065{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.mb7_c00065{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m4e_c00065{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m82_c00065{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m33_c00065{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mbb_c00065{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m22_c00065{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.ma6_c00065{transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);}
.mc3_c00065{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m13_c00065{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m4a_c00065{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.md7_c00065{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m96_c00065{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m75_c00065{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m99_c00065{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.mea_c00065{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m77_c00065{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.mb2_c00065{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mcf_c00065{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m34_c00065{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m8d_c00065{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m43_c00065{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m19_c00065{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m4c_c00065{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m1b_c00065{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.mcb_c00065{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m14_c00065{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m2e_c00065{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m25_c00065{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.m87_c00065{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m69_c00065{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m95_c00065{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.md2_c00065{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.mc5_c00065{transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);}
.m41_c00065{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.md8_c00065{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m9f_c00065{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m5b_c00065{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m83_c00065{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.me8_c00065{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m37_c00065{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m88_c00065{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m66_c00065{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m3a_c00065{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.ma3_c00065{transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);}
.m24_c00065{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.md5_c00065{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m8f_c00065{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.ma9_c00065{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m73_c00065{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m68_c00065{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m58_c00065{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mb8_c00065{transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);}
.md3_c00065{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m45_c00065{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.md4_c00065{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.mab_c00065{transform:matrix(0.466387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466387,0.000000,0.000000,0.250000,0,0);}
.mdb_c00065{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.m3b_c00065{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.mb1_c00065{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m27_c00065{transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);}
.ma2_c00065{transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);}
.m6e_c00065{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m9e_c00065{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.mc8_c00065{transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);}
.m39_c00065{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.me1_c00065{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m28_c00065{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m97_c00065{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mb6_c00065{transform:matrix(0.486134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486134,0.000000,0.000000,0.250000,0,0);}
.m6a_c00065{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.maf_c00065{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m8_c00065{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.mdc_c00065{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m3e_c00065{transform:matrix(0.493257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493257,0.000000,0.000000,0.250000,0,0);}
.m3d_c00065{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m4b_c00065{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m5d_c00065{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.md6_c00065{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m23_c00065{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_c00065{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m6f_c00065{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.ma1_c00065{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m1f_c00065{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m7_c00065{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m65_c00065{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mdf_c00065{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.mc6_c00065{transform:matrix(0.512059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512059,0.000000,0.000000,0.250000,0,0);}
.m11_c00065{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m8c_c00065{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m8a_c00065{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m31_c00065{transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);}
.m16_c00065{transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);}
.m84_c00065{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m89_c00065{transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);}
.m50_c00065{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mde_c00065{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.me3_c00065{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m10_c00065{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m1d_c00065{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m79_c00065{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.md0_c00065{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.ma7_c00065{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.mc0_c00065{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m80_c00065{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m4_c00065{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m6_c00065{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mcd_c00065{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m7d_c00065{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.mce_c00065{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m44_c00065{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m1c_c00065{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mc_c00065{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.me2_c00065{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m5_c00065{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m5f_c00065{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m6c_c00065{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m5e_c00065{transform:matrix(0.540816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540816,0.000000,0.000000,0.250000,0,0);}
.m30_c00065{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.me0_c00065{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m2a_c00065{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m91_c00065{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.md9_c00065{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mba_c00065{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m4f_c00065{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m7f_c00065{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m6d_c00065{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m9b_c00065{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.mca_c00065{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m47_c00065{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m64_c00065{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mac_c00065{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m62_c00065{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.mdd_c00065{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m17_c00065{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mb4_c00065{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mb3_c00065{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.mb0_c00065{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m2d_c00065{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m2b_c00065{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m3c_c00065{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m40_c00065{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mb9_c00065{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m56_c00065{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m46_c00065{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m81_c00065{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mc9_c00065{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.ma_c00065{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m21_c00065{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m20_c00065{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m71_c00065{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.me7_c00065{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.md_c00065{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.mf_c00065{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m6b_c00065{transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);}
.m9d_c00065{transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);}
.m78_c00065{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m7e_c00065{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.m8e_c00065{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m15_c00065{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m98_c00065{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m67_c00065{transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);}
.m60_c00065{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m9_c00065{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.me4_c00065{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.me5_c00065{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m2_c00065{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m57_c00065{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m52_c00065{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m61_c00065{transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);}
.m92_c00065{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m76_c00065{transform:matrix(0.608921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608921,0.000000,0.000000,0.250000,0,0);}
.m32_c00065{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m85_c00065{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m35_c00065{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m29_c00065{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m7c_c00065{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);}
.m63_c00065{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.ma4_c00065{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m1_c00065{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m1a_c00065{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.ma5_c00065{transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);}
.m53_c00065{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m36_c00065{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.ma8_c00065{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.md1_c00065{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m9a_c00065{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m51_c00065{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m4d_c00065{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m5a_c00065{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.m9c_c00065{transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);}
.mcc_c00065{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m42_c00065{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m3_c00065{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m94_c00065{transform:matrix(0.736471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736471,0.000000,0.000000,0.250000,0,0);}
.me_c00065{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m93_c00065{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.mc2_c00065{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m3f_c00065{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.me6_c00065{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m2c_c00065{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m12_c00065{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m38_c00065{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.mc1_c00065{transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);}
.maa_c00065{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-7.665879px;}
.ws1_c00065{word-spacing:-4.029520px;}
.ws2_c00065{word-spacing:0.000000px;}
.fc0_c00065{color:transparent;}
.fs7_c00065{font-size:3.420000px;}
.fs3_c00065{font-size:18.720000px;}
.fs1_c00065{font-size:20.400000px;}
.fs5_c00065{font-size:25.500000px;}
.fs2_c00065{font-size:28.920000px;}
.fs0_c00065{font-size:32.340000px;}
.fs4_c00065{font-size:35.700000px;}
.fs6_c00065{font-size:39.120000px;}
.y0_c00065{bottom:0.000000px;}
.ybe_c00065{bottom:247.905000px;}
.ybb_c00065{bottom:250.245000px;}
.ybd_c00065{bottom:251.130000px;}
.ybc_c00065{bottom:252.405000px;}
.yba_c00065{bottom:268.905000px;}
.yb6_c00065{bottom:269.745000px;}
.yb4_c00065{bottom:270.630000px;}
.yb9_c00065{bottom:271.245000px;}
.yb7_c00065{bottom:271.470000px;}
.yb5_c00065{bottom:271.905000px;}
.yb8_c00065{bottom:272.970000px;}
.yaf_c00065{bottom:291.405000px;}
.yb3_c00065{bottom:291.630000px;}
.yb2_c00065{bottom:292.470000px;}
.yb1_c00065{bottom:292.905000px;}
.yb0_c00065{bottom:292.920000px;}
.yae_c00065{bottom:310.245000px;}
.yad_c00065{bottom:312.405000px;}
.ya9_c00065{bottom:329.745000px;}
.yac_c00065{bottom:330.825000px;}
.yab_c00065{bottom:331.470000px;}
.yaa_c00065{bottom:331.905000px;}
.ya7_c00065{bottom:349.245000px;}
.ya6_c00065{bottom:351.405000px;}
.ya8_c00065{bottom:352.470000px;}
.ya5_c00065{bottom:368.745000px;}
.ya3_c00065{bottom:369.825000px;}
.ya2_c00065{bottom:370.905000px;}
.ya4_c00065{bottom:371.325000px;}
.ya0_c00065{bottom:389.745000px;}
.y9e_c00065{bottom:390.405000px;}
.ya1_c00065{bottom:391.470000px;}
.y9f_c00065{bottom:391.905000px;}
.y9c_c00065{bottom:407.745000px;}
.y9a_c00065{bottom:409.245000px;}
.y9b_c00065{bottom:409.905000px;}
.y9d_c00065{bottom:410.130000px;}
.y98_c00065{bottom:411.405000px;}
.y99_c00065{bottom:411.420000px;}
.y97_c00065{bottom:428.745000px;}
.y96_c00065{bottom:429.825000px;}
.y95_c00065{bottom:430.905000px;}
.y94_c00065{bottom:447.180000px;}
.y93_c00065{bottom:448.245000px;}
.y90_c00065{bottom:450.405000px;}
.y92_c00065{bottom:450.420000px;}
.y91_c00065{bottom:450.630000px;}
.y8e_c00065{bottom:466.905000px;}
.y8f_c00065{bottom:468.420000px;}
.y8b_c00065{bottom:486.405000px;}
.y8a_c00065{bottom:487.245000px;}
.y8c_c00065{bottom:487.680000px;}
.y88_c00065{bottom:488.745000px;}
.y8d_c00065{bottom:489.405000px;}
.y89_c00065{bottom:490.920000px;}
.y87_c00065{bottom:506.745000px;}
.y84_c00065{bottom:507.405000px;}
.y85_c00065{bottom:508.245000px;}
.y86_c00065{bottom:508.905000px;}
.y83_c00065{bottom:525.405000px;}
.y82_c00065{bottom:526.680000px;}
.y80_c00065{bottom:527.745000px;}
.y81_c00065{bottom:528.630000px;}
.y7f_c00065{bottom:529.905000px;}
.y7e_c00065{bottom:546.180000px;}
.y7a_c00065{bottom:547.245000px;}
.y7d_c00065{bottom:548.970000px;}
.y7c_c00065{bottom:549.405000px;}
.y7b_c00065{bottom:549.420000px;}
.y79_c00065{bottom:569.970000px;}
.y76_c00065{bottom:570.825000px;}
.y78_c00065{bottom:572.130000px;}
.y77_c00065{bottom:572.970000px;}
.y75_c00065{bottom:574.050000px;}
.y70_c00065{bottom:584.970000px;}
.y73_c00065{bottom:585.405000px;}
.y74_c00065{bottom:585.825000px;}
.y6f_c00065{bottom:586.905000px;}
.y71_c00065{bottom:587.550000px;}
.y72_c00065{bottom:587.970000px;}
.y6e_c00065{bottom:589.050000px;}
.y6b_c00065{bottom:605.325000px;}
.y6a_c00065{bottom:605.550000px;}
.y6c_c00065{bottom:606.405000px;}
.y6d_c00065{bottom:606.630000px;}
.y69_c00065{bottom:608.550000px;}
.y68_c00065{bottom:629.745000px;}
.y67_c00065{bottom:631.470000px;}
.y66_c00065{bottom:631.905000px;}
.y61_c00065{bottom:664.245000px;}
.y65_c00065{bottom:665.745000px;}
.y62_c00065{bottom:666.405000px;}
.y64_c00065{bottom:666.630000px;}
.y63_c00065{bottom:667.470000px;}
.y5e_c00065{bottom:683.745000px;}
.y60_c00065{bottom:684.180000px;}
.y5a_c00065{bottom:684.825000px;}
.y5d_c00065{bottom:685.245000px;}
.y5b_c00065{bottom:685.905000px;}
.y5c_c00065{bottom:686.130000px;}
.y5f_c00065{bottom:686.970000px;}
.y53_c00065{bottom:702.405000px;}
.y57_c00065{bottom:702.825000px;}
.y59_c00065{bottom:703.245000px;}
.y56_c00065{bottom:704.325000px;}
.y58_c00065{bottom:704.745000px;}
.y55_c00065{bottom:705.405000px;}
.y54_c00065{bottom:706.905000px;}
.y52_c00065{bottom:722.325000px;}
.y51_c00065{bottom:724.245000px;}
.y50_c00065{bottom:725.130000px;}
.y4f_c00065{bottom:726.405000px;}
.y4c_c00065{bottom:741.405000px;}
.y4e_c00065{bottom:742.905000px;}
.y4d_c00065{bottom:743.745000px;}
.y4b_c00065{bottom:745.905000px;}
.y49_c00065{bottom:762.825000px;}
.y47_c00065{bottom:763.245000px;}
.y48_c00065{bottom:764.970000px;}
.y46_c00065{bottom:765.405000px;}
.y4a_c00065{bottom:765.630000px;}
.y44_c00065{bottom:782.745000px;}
.y45_c00065{bottom:783.825000px;}
.y43_c00065{bottom:784.905000px;}
.y42_c00065{bottom:785.970000px;}
.y3e_c00065{bottom:801.405000px;}
.y3f_c00065{bottom:802.245000px;}
.y40_c00065{bottom:804.405000px;}
.y41_c00065{bottom:805.470000px;}
.y3a_c00065{bottom:821.745000px;}
.y3d_c00065{bottom:822.180000px;}
.y38_c00065{bottom:823.245000px;}
.y3b_c00065{bottom:823.905000px;}
.y39_c00065{bottom:824.970000px;}
.y3c_c00065{bottom:825.405000px;}
.y35_c00065{bottom:841.245000px;}
.y36_c00065{bottom:843.405000px;}
.y37_c00065{bottom:843.825000px;}
.y34_c00065{bottom:844.905000px;}
.y32_c00065{bottom:862.245000px;}
.y33_c00065{bottom:863.130000px;}
.y31_c00065{bottom:863.970000px;}
.y30_c00065{bottom:864.405000px;}
.y2f_c00065{bottom:879.405000px;}
.y2e_c00065{bottom:881.745000px;}
.y2d_c00065{bottom:882.630000px;}
.y2c_c00065{bottom:883.905000px;}
.y2b_c00065{bottom:901.245000px;}
.y2a_c00065{bottom:903.405000px;}
.y26_c00065{bottom:918.825000px;}
.y27_c00065{bottom:919.905000px;}
.y25_c00065{bottom:920.745000px;}
.y28_c00065{bottom:921.630000px;}
.y29_c00065{bottom:922.905000px;}
.y22_c00065{bottom:940.245000px;}
.y21_c00065{bottom:941.970000px;}
.y20_c00065{bottom:942.405000px;}
.y23_c00065{bottom:942.630000px;}
.y24_c00065{bottom:943.470000px;}
.y1e_c00065{bottom:958.905000px;}
.y1a_c00065{bottom:959.745000px;}
.y1d_c00065{bottom:960.825000px;}
.y1c_c00065{bottom:961.905000px;}
.y1f_c00065{bottom:962.130000px;}
.y1b_c00065{bottom:962.970000px;}
.y16_c00065{bottom:979.245000px;}
.y19_c00065{bottom:979.470000px;}
.y12_c00065{bottom:980.325000px;}
.y17_c00065{bottom:980.745000px;}
.y13_c00065{bottom:981.405000px;}
.y15_c00065{bottom:981.630000px;}
.y14_c00065{bottom:982.470000px;}
.y18_c00065{bottom:982.905000px;}
.yd_c00065{bottom:998.745000px;}
.y11_c00065{bottom:999.825000px;}
.yc_c00065{bottom:1000.905000px;}
.ye_c00065{bottom:1001.130000px;}
.yf_c00065{bottom:1001.970000px;}
.y10_c00065{bottom:1002.405000px;}
.yb_c00065{bottom:1018.245000px;}
.ya_c00065{bottom:1021.470000px;}
.y9_c00065{bottom:1039.245000px;}
.y8_c00065{bottom:1040.130000px;}
.y7_c00065{bottom:1041.405000px;}
.y6_c00065{bottom:1057.470000px;}
.y5_c00065{bottom:1058.745000px;}
.y4_c00065{bottom:1059.630000px;}
.y3_c00065{bottom:1060.905000px;}
.y1_c00065{bottom:1098.825000px;}
.y2_c00065{bottom:1099.050000px;}
.h8_c00065{height:4.206533px;}
.h4_c00065{height:23.025234px;}
.h2_c00065{height:25.091602px;}
.h6_c00065{height:31.364502px;}
.h3_c00065{height:35.571035px;}
.h1_c00065{height:39.777568px;}
.h5_c00065{height:43.910303px;}
.h7_c00065{height:48.116836px;}
.h0_c00065{height:1335.000000px;}
.w0_c00065{width:880.500000px;}
.x0_c00065{left:0.000000px;}
.xee_c00065{left:150.000000px;}
.xa8_c00065{left:151.500000px;}
.x1_c00065{left:153.000000px;}
.xb3_c00065{left:165.000000px;}
.xe8_c00065{left:166.080000px;}
.xbc_c00065{left:168.420000px;}
.x1e_c00065{left:169.500000px;}
.x59_c00065{left:172.920000px;}
.xef_c00065{left:175.920000px;}
.x81_c00065{left:181.080000px;}
.x10_c00065{left:183.420000px;}
.x9a_c00065{left:186.000000px;}
.x1d_c00065{left:187.500000px;}
.x3_c00065{left:189.000000px;}
.x94_c00065{left:192.000000px;}
.xa0_c00065{left:193.500000px;}
.x8b_c00065{left:194.580000px;}
.x45_c00065{left:196.080000px;}
.x2b_c00065{left:197.580000px;}
.x5a_c00065{left:201.000000px;}
.x1f_c00065{left:202.080000px;}
.xb8_c00065{left:204.420000px;}
.x5c_c00065{left:207.000000px;}
.x11_c00065{left:208.920000px;}
.xc8_c00065{left:210.000000px;}
.xbd_c00065{left:213.420000px;}
.x46_c00065{left:214.920000px;}
.xe4_c00065{left:216.420000px;}
.x4_c00065{left:217.500000px;}
.x5d_c00065{left:220.920000px;}
.x6e_c00065{left:225.000000px;}
.x77_c00065{left:228.000000px;}
.x51_c00065{left:230.580000px;}
.x2c_c00065{left:232.500000px;}
.x3a_c00065{left:238.080000px;}
.x8c_c00065{left:240.000000px;}
.x5b_c00065{left:241.500000px;}
.x9b_c00065{left:242.580000px;}
.x82_c00065{left:245.145000px;}
.x12_c00065{left:247.500000px;}
.xce_c00065{left:249.000000px;}
.x92_c00065{left:250.920000px;}
.xe0_c00065{left:252.000000px;}
.x2d_c00065{left:253.500000px;}
.xe5_c00065{left:255.420000px;}
.x47_c00065{left:256.500000px;}
.x3b_c00065{left:259.920000px;}
.x5_c00065{left:261.000000px;}
.xb4_c00065{left:265.500000px;}
.xd7_c00065{left:266.580000px;}
.x64_c00065{left:268.500000px;}
.x20_c00065{left:269.580000px;}
.x13_c00065{left:271.920000px;}
.xbe_c00065{left:273.000000px;}
.x48_c00065{left:277.920000px;}
.xb9_c00065{left:280.500000px;}
.xa9_c00065{left:283.500000px;}
.xa1_c00065{left:286.500000px;}
.x65_c00065{left:288.420000px;}
.x8d_c00065{left:292.500000px;}
.xbf_c00065{left:294.000000px;}
.x6_c00065{left:297.420000px;}
.x14_c00065{left:298.920000px;}
.x9c_c00065{left:300.855000px;}
.x83_c00065{left:302.580000px;}
.x2e_c00065{left:304.500000px;}
.x6f_c00065{left:305.580000px;}
.xb5_c00065{left:309.000000px;}
.x8e_c00065{left:313.920000px;}
.x66_c00065{left:315.420000px;}
.xaa_c00065{left:316.920000px;}
.xd4_c00065{left:318.000000px;}
.x5e_c00065{left:319.080000px;}
.x52_c00065{left:322.080000px;}
.xcf_c00065{left:323.580000px;}
.x7_c00065{left:325.080000px;}
.xba_c00065{left:328.500000px;}
.x3c_c00065{left:330.000000px;}
.xe1_c00065{left:331.500000px;}
.xd8_c00065{left:336.420000px;}
.x21_c00065{left:337.500000px;}
.xc9_c00065{left:340.920000px;}
.x84_c00065{left:342.000000px;}
.x2f_c00065{left:343.500000px;}
.xbb_c00065{left:345.000000px;}
.xe9_c00065{left:346.500000px;}
.x3d_c00065{left:348.000000px;}
.x67_c00065{left:349.500000px;}
.x5f_c00065{left:351.000000px;}
.x95_c00065{left:354.000000px;}
.xdb_c00065{left:355.080000px;}
.xae_c00065{left:357.000000px;}
.x15_c00065{left:358.080000px;}
.x78_c00065{left:361.500000px;}
.xab_c00065{left:363.000000px;}
.x30_c00065{left:364.080000px;}
.x3e_c00065{left:366.000000px;}
.xea_c00065{left:367.500000px;}
.x8_c00065{left:370.500000px;}
.x49_c00065{left:373.080000px;}
.xc0_c00065{left:376.500000px;}
.xaf_c00065{left:379.500000px;}
.xf0_c00065{left:381.000000px;}
.x70_c00065{left:382.500000px;}
.xca_c00065{left:384.420000px;}
.x60_c00065{left:385.500000px;}
.x16_c00065{left:388.920000px;}
.x4a_c00065{left:391.080000px;}
.xeb_c00065{left:395.580000px;}
.x2_c00065{left:397.500000px;}
.x22_c00065{left:401.580000px;}
.x96_c00065{left:403.500000px;}
.xc1_c00065{left:404.580000px;}
.x31_c00065{left:406.920000px;}
.x7c_c00065{left:408.000000px;}
.x61_c00065{left:409.920000px;}
.xa2_c00065{left:411.000000px;}
.xac_c00065{left:417.000000px;}
.x9_c00065{left:418.500000px;}
.x3f_c00065{left:421.920000px;}
.xc6_c00065{left:424.080000px;}
.x53_c00065{left:426.000000px;}
.xdc_c00065{left:427.080000px;}
.x68_c00065{left:429.420000px;}
.xc2_c00065{left:430.500000px;}
.xe6_c00065{left:432.000000px;}
.x85_c00065{left:433.080000px;}
.xe2_c00065{left:436.500000px;}
.x71_c00065{left:437.580000px;}
.x23_c00065{left:439.080000px;}
.xcb_c00065{left:441.645000px;}
.x17_c00065{left:444.000000px;}
.xb0_c00065{left:448.080000px;}
.x86_c00065{left:449.355000px;}
.x79_c00065{left:453.420000px;}
.x54_c00065{left:454.500000px;}
.x32_c00065{left:456.000000px;}
.xd0_c00065{left:457.080000px;}
.x24_c00065{left:459.000000px;}
.xa_c00065{left:460.920000px;}
.x18_c00065{left:462.000000px;}
.x7d_c00065{left:466.080000px;}
.xf1_c00065{left:468.645000px;}
.xb1_c00065{left:469.920000px;}
.xdd_c00065{left:472.920000px;}
.x62_c00065{left:474.000000px;}
.x97_c00065{left:477.000000px;}
.x72_c00065{left:481.080000px;}
.xb6_c00065{left:483.420000px;}
.x4b_c00065{left:484.500000px;}
.x69_c00065{left:485.580000px;}
.xb2_c00065{left:488.580000px;}
.x93_c00065{left:492.000000px;}
.x25_c00065{left:493.500000px;}
.xb_c00065{left:495.420000px;}
.x40_c00065{left:497.580000px;}
.xa3_c00065{left:499.500000px;}
.x7a_c00065{left:501.000000px;}
.x73_c00065{left:502.500000px;}
.x6a_c00065{left:505.920000px;}
.xc3_c00065{left:507.000000px;}
.x33_c00065{left:508.500000px;}
.x4c_c00065{left:510.420000px;}
.xe7_c00065{left:513.000000px;}
.x87_c00065{left:514.275000px;}
.xa4_c00065{left:515.580000px;}
.x9d_c00065{left:520.080000px;}
.xc_c00065{left:523.500000px;}
.xf2_c00065{left:524.580000px;}
.x8f_c00065{left:526.920000px;}
.x41_c00065{left:529.500000px;}
.xc4_c00065{left:531.000000px;}
.xd1_c00065{left:532.080000px;}
.x19_c00065{left:533.580000px;}
.x6b_c00065{left:535.500000px;}
.xcc_c00065{left:536.775000px;}
.x34_c00065{left:547.500000px;}
.x63_c00065{left:550.080000px;}
.x55_c00065{left:552.420000px;}
.x88_c00065{left:554.580000px;}
.x90_c00065{left:556.500000px;}
.xec_c00065{left:559.080000px;}
.x7e_c00065{left:561.000000px;}
.xa5_c00065{left:562.500000px;}
.x35_c00065{left:563.580000px;}
.x26_c00065{left:568.080000px;}
.x74_c00065{left:571.500000px;}
.xde_c00065{left:574.500000px;}
.x42_c00065{left:575.580000px;}
.x7b_c00065{left:580.500000px;}
.xd_c00065{left:585.000000px;}
.x27_c00065{left:588.420000px;}
.x9e_c00065{left:590.580000px;}
.x43_c00065{left:595.920000px;}
.x1a_c00065{left:597.420000px;}
.x56_c00065{left:598.500000px;}
.xd9_c00065{left:600.000000px;}
.xad_c00065{left:601.275000px;}
.x4d_c00065{left:604.080000px;}
.xa6_c00065{left:606.000000px;}
.x98_c00065{left:608.580000px;}
.xd2_c00065{left:610.080000px;}
.x36_c00065{left:613.500000px;}
.x28_c00065{left:618.000000px;}
.x4e_c00065{left:622.920000px;}
.x99_c00065{left:627.645000px;}
.xdf_c00065{left:629.580000px;}
.x6c_c00065{left:631.920000px;}
.x75_c00065{left:633.000000px;}
.x44_c00065{left:637.080000px;}
.xe_c00065{left:640.080000px;}
.xd5_c00065{left:641.775000px;}
.x57_c00065{left:643.920000px;}
.xda_c00065{left:648.000000px;}
.x4f_c00065{left:649.080000px;}
.x37_c00065{left:653.580000px;}
.xcd_c00065{left:655.920000px;}
.x9f_c00065{left:661.920000px;}
.x7f_c00065{left:663.000000px;}
.x89_c00065{left:665.580000px;}
.xb7_c00065{left:667.500000px;}
.x29_c00065{left:670.500000px;}
.x38_c00065{left:672.420000px;}
.x58_c00065{left:673.920000px;}
.x6d_c00065{left:675.420000px;}
.xc5_c00065{left:677.580000px;}
.x76_c00065{left:681.000000px;}
.xd3_c00065{left:684.000000px;}
.x1b_c00065{left:685.500000px;}
.xd6_c00065{left:687.000000px;}
.xa7_c00065{left:689.580000px;}
.x91_c00065{left:691.920000px;}
.x50_c00065{left:694.500000px;}
.xe3_c00065{left:697.080000px;}
.x39_c00065{left:700.920000px;}
.xf_c00065{left:705.000000px;}
.x1c_c00065{left:709.920000px;}
.x80_c00065{left:712.500000px;}
.x8a_c00065{left:713.580000px;}
.xed_c00065{left:715.500000px;}
.xc7_c00065{left:716.580000px;}
.x2a_c00065{left:718.080000px;}
@media print{
.v0_c00065{vertical-align:0.000000pt;}
.ls0_c00065{letter-spacing:0.000000pt;}
.ws0_c00065{word-spacing:-6.814115pt;}
.ws1_c00065{word-spacing:-3.581796pt;}
.ws2_c00065{word-spacing:0.000000pt;}
.fs7_c00065{font-size:3.040000pt;}
.fs3_c00065{font-size:16.640000pt;}
.fs1_c00065{font-size:18.133333pt;}
.fs5_c00065{font-size:22.666667pt;}
.fs2_c00065{font-size:25.706667pt;}
.fs0_c00065{font-size:28.746667pt;}
.fs4_c00065{font-size:31.733333pt;}
.fs6_c00065{font-size:34.773333pt;}
.y0_c00065{bottom:0.000000pt;}
.ybe_c00065{bottom:220.360000pt;}
.ybb_c00065{bottom:222.440000pt;}
.ybd_c00065{bottom:223.226667pt;}
.ybc_c00065{bottom:224.360000pt;}
.yba_c00065{bottom:239.026667pt;}
.yb6_c00065{bottom:239.773333pt;}
.yb4_c00065{bottom:240.560000pt;}
.yb9_c00065{bottom:241.106667pt;}
.yb7_c00065{bottom:241.306667pt;}
.yb5_c00065{bottom:241.693333pt;}
.yb8_c00065{bottom:242.640000pt;}
.yaf_c00065{bottom:259.026667pt;}
.yb3_c00065{bottom:259.226667pt;}
.yb2_c00065{bottom:259.973333pt;}
.yb1_c00065{bottom:260.360000pt;}
.yb0_c00065{bottom:260.373333pt;}
.yae_c00065{bottom:275.773333pt;}
.yad_c00065{bottom:277.693333pt;}
.ya9_c00065{bottom:293.106667pt;}
.yac_c00065{bottom:294.066667pt;}
.yab_c00065{bottom:294.640000pt;}
.yaa_c00065{bottom:295.026667pt;}
.ya7_c00065{bottom:310.440000pt;}
.ya6_c00065{bottom:312.360000pt;}
.ya8_c00065{bottom:313.306667pt;}
.ya5_c00065{bottom:327.773333pt;}
.ya3_c00065{bottom:328.733333pt;}
.ya2_c00065{bottom:329.693333pt;}
.ya4_c00065{bottom:330.066667pt;}
.ya0_c00065{bottom:346.440000pt;}
.y9e_c00065{bottom:347.026667pt;}
.ya1_c00065{bottom:347.973333pt;}
.y9f_c00065{bottom:348.360000pt;}
.y9c_c00065{bottom:362.440000pt;}
.y9a_c00065{bottom:363.773333pt;}
.y9b_c00065{bottom:364.360000pt;}
.y9d_c00065{bottom:364.560000pt;}
.y98_c00065{bottom:365.693333pt;}
.y99_c00065{bottom:365.706667pt;}
.y97_c00065{bottom:381.106667pt;}
.y96_c00065{bottom:382.066667pt;}
.y95_c00065{bottom:383.026667pt;}
.y94_c00065{bottom:397.493333pt;}
.y93_c00065{bottom:398.440000pt;}
.y90_c00065{bottom:400.360000pt;}
.y92_c00065{bottom:400.373333pt;}
.y91_c00065{bottom:400.560000pt;}
.y8e_c00065{bottom:415.026667pt;}
.y8f_c00065{bottom:416.373333pt;}
.y8b_c00065{bottom:432.360000pt;}
.y8a_c00065{bottom:433.106667pt;}
.y8c_c00065{bottom:433.493333pt;}
.y88_c00065{bottom:434.440000pt;}
.y8d_c00065{bottom:435.026667pt;}
.y89_c00065{bottom:436.373333pt;}
.y87_c00065{bottom:450.440000pt;}
.y84_c00065{bottom:451.026667pt;}
.y85_c00065{bottom:451.773333pt;}
.y86_c00065{bottom:452.360000pt;}
.y83_c00065{bottom:467.026667pt;}
.y82_c00065{bottom:468.160000pt;}
.y80_c00065{bottom:469.106667pt;}
.y81_c00065{bottom:469.893333pt;}
.y7f_c00065{bottom:471.026667pt;}
.y7e_c00065{bottom:485.493333pt;}
.y7a_c00065{bottom:486.440000pt;}
.y7d_c00065{bottom:487.973333pt;}
.y7c_c00065{bottom:488.360000pt;}
.y7b_c00065{bottom:488.373333pt;}
.y79_c00065{bottom:506.640000pt;}
.y76_c00065{bottom:507.400000pt;}
.y78_c00065{bottom:508.560000pt;}
.y77_c00065{bottom:509.306667pt;}
.y75_c00065{bottom:510.266667pt;}
.y70_c00065{bottom:519.973333pt;}
.y73_c00065{bottom:520.360000pt;}
.y74_c00065{bottom:520.733333pt;}
.y6f_c00065{bottom:521.693333pt;}
.y71_c00065{bottom:522.266667pt;}
.y72_c00065{bottom:522.640000pt;}
.y6e_c00065{bottom:523.600000pt;}
.y6b_c00065{bottom:538.066667pt;}
.y6a_c00065{bottom:538.266667pt;}
.y6c_c00065{bottom:539.026667pt;}
.y6d_c00065{bottom:539.226667pt;}
.y69_c00065{bottom:540.933333pt;}
.y68_c00065{bottom:559.773333pt;}
.y67_c00065{bottom:561.306667pt;}
.y66_c00065{bottom:561.693333pt;}
.y61_c00065{bottom:590.440000pt;}
.y65_c00065{bottom:591.773333pt;}
.y62_c00065{bottom:592.360000pt;}
.y64_c00065{bottom:592.560000pt;}
.y63_c00065{bottom:593.306667pt;}
.y5e_c00065{bottom:607.773333pt;}
.y60_c00065{bottom:608.160000pt;}
.y5a_c00065{bottom:608.733333pt;}
.y5d_c00065{bottom:609.106667pt;}
.y5b_c00065{bottom:609.693333pt;}
.y5c_c00065{bottom:609.893333pt;}
.y5f_c00065{bottom:610.640000pt;}
.y53_c00065{bottom:624.360000pt;}
.y57_c00065{bottom:624.733333pt;}
.y59_c00065{bottom:625.106667pt;}
.y56_c00065{bottom:626.066667pt;}
.y58_c00065{bottom:626.440000pt;}
.y55_c00065{bottom:627.026667pt;}
.y54_c00065{bottom:628.360000pt;}
.y52_c00065{bottom:642.066667pt;}
.y51_c00065{bottom:643.773333pt;}
.y50_c00065{bottom:644.560000pt;}
.y4f_c00065{bottom:645.693333pt;}
.y4c_c00065{bottom:659.026667pt;}
.y4e_c00065{bottom:660.360000pt;}
.y4d_c00065{bottom:661.106667pt;}
.y4b_c00065{bottom:663.026667pt;}
.y49_c00065{bottom:678.066667pt;}
.y47_c00065{bottom:678.440000pt;}
.y48_c00065{bottom:679.973333pt;}
.y46_c00065{bottom:680.360000pt;}
.y4a_c00065{bottom:680.560000pt;}
.y44_c00065{bottom:695.773333pt;}
.y45_c00065{bottom:696.733333pt;}
.y43_c00065{bottom:697.693333pt;}
.y42_c00065{bottom:698.640000pt;}
.y3e_c00065{bottom:712.360000pt;}
.y3f_c00065{bottom:713.106667pt;}
.y40_c00065{bottom:715.026667pt;}
.y41_c00065{bottom:715.973333pt;}
.y3a_c00065{bottom:730.440000pt;}
.y3d_c00065{bottom:730.826667pt;}
.y38_c00065{bottom:731.773333pt;}
.y3b_c00065{bottom:732.360000pt;}
.y39_c00065{bottom:733.306667pt;}
.y3c_c00065{bottom:733.693333pt;}
.y35_c00065{bottom:747.773333pt;}
.y36_c00065{bottom:749.693333pt;}
.y37_c00065{bottom:750.066667pt;}
.y34_c00065{bottom:751.026667pt;}
.y32_c00065{bottom:766.440000pt;}
.y33_c00065{bottom:767.226667pt;}
.y31_c00065{bottom:767.973333pt;}
.y30_c00065{bottom:768.360000pt;}
.y2f_c00065{bottom:781.693333pt;}
.y2e_c00065{bottom:783.773333pt;}
.y2d_c00065{bottom:784.560000pt;}
.y2c_c00065{bottom:785.693333pt;}
.y2b_c00065{bottom:801.106667pt;}
.y2a_c00065{bottom:803.026667pt;}
.y26_c00065{bottom:816.733333pt;}
.y27_c00065{bottom:817.693333pt;}
.y25_c00065{bottom:818.440000pt;}
.y28_c00065{bottom:819.226667pt;}
.y29_c00065{bottom:820.360000pt;}
.y22_c00065{bottom:835.773333pt;}
.y21_c00065{bottom:837.306667pt;}
.y20_c00065{bottom:837.693333pt;}
.y23_c00065{bottom:837.893333pt;}
.y24_c00065{bottom:838.640000pt;}
.y1e_c00065{bottom:852.360000pt;}
.y1a_c00065{bottom:853.106667pt;}
.y1d_c00065{bottom:854.066667pt;}
.y1c_c00065{bottom:855.026667pt;}
.y1f_c00065{bottom:855.226667pt;}
.y1b_c00065{bottom:855.973333pt;}
.y16_c00065{bottom:870.440000pt;}
.y19_c00065{bottom:870.640000pt;}
.y12_c00065{bottom:871.400000pt;}
.y17_c00065{bottom:871.773333pt;}
.y13_c00065{bottom:872.360000pt;}
.y15_c00065{bottom:872.560000pt;}
.y14_c00065{bottom:873.306667pt;}
.y18_c00065{bottom:873.693333pt;}
.yd_c00065{bottom:887.773333pt;}
.y11_c00065{bottom:888.733333pt;}
.yc_c00065{bottom:889.693333pt;}
.ye_c00065{bottom:889.893333pt;}
.yf_c00065{bottom:890.640000pt;}
.y10_c00065{bottom:891.026667pt;}
.yb_c00065{bottom:905.106667pt;}
.ya_c00065{bottom:907.973333pt;}
.y9_c00065{bottom:923.773333pt;}
.y8_c00065{bottom:924.560000pt;}
.y7_c00065{bottom:925.693333pt;}
.y6_c00065{bottom:939.973333pt;}
.y5_c00065{bottom:941.106667pt;}
.y4_c00065{bottom:941.893333pt;}
.y3_c00065{bottom:943.026667pt;}
.y1_c00065{bottom:976.733333pt;}
.y2_c00065{bottom:976.933333pt;}
.h8_c00065{height:3.739141pt;}
.h4_c00065{height:20.466875pt;}
.h2_c00065{height:22.303646pt;}
.h6_c00065{height:27.879557pt;}
.h3_c00065{height:31.618698pt;}
.h1_c00065{height:35.357839pt;}
.h5_c00065{height:39.031380pt;}
.h7_c00065{height:42.770521pt;}
.h0_c00065{height:1186.666667pt;}
.w0_c00065{width:782.666667pt;}
.x0_c00065{left:0.000000pt;}
.xee_c00065{left:133.333333pt;}
.xa8_c00065{left:134.666667pt;}
.x1_c00065{left:136.000000pt;}
.xb3_c00065{left:146.666667pt;}
.xe8_c00065{left:147.626667pt;}
.xbc_c00065{left:149.706667pt;}
.x1e_c00065{left:150.666667pt;}
.x59_c00065{left:153.706667pt;}
.xef_c00065{left:156.373333pt;}
.x81_c00065{left:160.960000pt;}
.x10_c00065{left:163.040000pt;}
.x9a_c00065{left:165.333333pt;}
.x1d_c00065{left:166.666667pt;}
.x3_c00065{left:168.000000pt;}
.x94_c00065{left:170.666667pt;}
.xa0_c00065{left:172.000000pt;}
.x8b_c00065{left:172.960000pt;}
.x45_c00065{left:174.293333pt;}
.x2b_c00065{left:175.626667pt;}
.x5a_c00065{left:178.666667pt;}
.x1f_c00065{left:179.626667pt;}
.xb8_c00065{left:181.706667pt;}
.x5c_c00065{left:184.000000pt;}
.x11_c00065{left:185.706667pt;}
.xc8_c00065{left:186.666667pt;}
.xbd_c00065{left:189.706667pt;}
.x46_c00065{left:191.040000pt;}
.xe4_c00065{left:192.373333pt;}
.x4_c00065{left:193.333333pt;}
.x5d_c00065{left:196.373333pt;}
.x6e_c00065{left:200.000000pt;}
.x77_c00065{left:202.666667pt;}
.x51_c00065{left:204.960000pt;}
.x2c_c00065{left:206.666667pt;}
.x3a_c00065{left:211.626667pt;}
.x8c_c00065{left:213.333333pt;}
.x5b_c00065{left:214.666667pt;}
.x9b_c00065{left:215.626667pt;}
.x82_c00065{left:217.906667pt;}
.x12_c00065{left:220.000000pt;}
.xce_c00065{left:221.333333pt;}
.x92_c00065{left:223.040000pt;}
.xe0_c00065{left:224.000000pt;}
.x2d_c00065{left:225.333333pt;}
.xe5_c00065{left:227.040000pt;}
.x47_c00065{left:228.000000pt;}
.x3b_c00065{left:231.040000pt;}
.x5_c00065{left:232.000000pt;}
.xb4_c00065{left:236.000000pt;}
.xd7_c00065{left:236.960000pt;}
.x64_c00065{left:238.666667pt;}
.x20_c00065{left:239.626667pt;}
.x13_c00065{left:241.706667pt;}
.xbe_c00065{left:242.666667pt;}
.x48_c00065{left:247.040000pt;}
.xb9_c00065{left:249.333333pt;}
.xa9_c00065{left:252.000000pt;}
.xa1_c00065{left:254.666667pt;}
.x65_c00065{left:256.373333pt;}
.x8d_c00065{left:260.000000pt;}
.xbf_c00065{left:261.333333pt;}
.x6_c00065{left:264.373333pt;}
.x14_c00065{left:265.706667pt;}
.x9c_c00065{left:267.426667pt;}
.x83_c00065{left:268.960000pt;}
.x2e_c00065{left:270.666667pt;}
.x6f_c00065{left:271.626667pt;}
.xb5_c00065{left:274.666667pt;}
.x8e_c00065{left:279.040000pt;}
.x66_c00065{left:280.373333pt;}
.xaa_c00065{left:281.706667pt;}
.xd4_c00065{left:282.666667pt;}
.x5e_c00065{left:283.626667pt;}
.x52_c00065{left:286.293333pt;}
.xcf_c00065{left:287.626667pt;}
.x7_c00065{left:288.960000pt;}
.xba_c00065{left:292.000000pt;}
.x3c_c00065{left:293.333333pt;}
.xe1_c00065{left:294.666667pt;}
.xd8_c00065{left:299.040000pt;}
.x21_c00065{left:300.000000pt;}
.xc9_c00065{left:303.040000pt;}
.x84_c00065{left:304.000000pt;}
.x2f_c00065{left:305.333333pt;}
.xbb_c00065{left:306.666667pt;}
.xe9_c00065{left:308.000000pt;}
.x3d_c00065{left:309.333333pt;}
.x67_c00065{left:310.666667pt;}
.x5f_c00065{left:312.000000pt;}
.x95_c00065{left:314.666667pt;}
.xdb_c00065{left:315.626667pt;}
.xae_c00065{left:317.333333pt;}
.x15_c00065{left:318.293333pt;}
.x78_c00065{left:321.333333pt;}
.xab_c00065{left:322.666667pt;}
.x30_c00065{left:323.626667pt;}
.x3e_c00065{left:325.333333pt;}
.xea_c00065{left:326.666667pt;}
.x8_c00065{left:329.333333pt;}
.x49_c00065{left:331.626667pt;}
.xc0_c00065{left:334.666667pt;}
.xaf_c00065{left:337.333333pt;}
.xf0_c00065{left:338.666667pt;}
.x70_c00065{left:340.000000pt;}
.xca_c00065{left:341.706667pt;}
.x60_c00065{left:342.666667pt;}
.x16_c00065{left:345.706667pt;}
.x4a_c00065{left:347.626667pt;}
.xeb_c00065{left:351.626667pt;}
.x2_c00065{left:353.333333pt;}
.x22_c00065{left:356.960000pt;}
.x96_c00065{left:358.666667pt;}
.xc1_c00065{left:359.626667pt;}
.x31_c00065{left:361.706667pt;}
.x7c_c00065{left:362.666667pt;}
.x61_c00065{left:364.373333pt;}
.xa2_c00065{left:365.333333pt;}
.xac_c00065{left:370.666667pt;}
.x9_c00065{left:372.000000pt;}
.x3f_c00065{left:375.040000pt;}
.xc6_c00065{left:376.960000pt;}
.x53_c00065{left:378.666667pt;}
.xdc_c00065{left:379.626667pt;}
.x68_c00065{left:381.706667pt;}
.xc2_c00065{left:382.666667pt;}
.xe6_c00065{left:384.000000pt;}
.x85_c00065{left:384.960000pt;}
.xe2_c00065{left:388.000000pt;}
.x71_c00065{left:388.960000pt;}
.x23_c00065{left:390.293333pt;}
.xcb_c00065{left:392.573333pt;}
.x17_c00065{left:394.666667pt;}
.xb0_c00065{left:398.293333pt;}
.x86_c00065{left:399.426667pt;}
.x79_c00065{left:403.040000pt;}
.x54_c00065{left:404.000000pt;}
.x32_c00065{left:405.333333pt;}
.xd0_c00065{left:406.293333pt;}
.x24_c00065{left:408.000000pt;}
.xa_c00065{left:409.706667pt;}
.x18_c00065{left:410.666667pt;}
.x7d_c00065{left:414.293333pt;}
.xf1_c00065{left:416.573333pt;}
.xb1_c00065{left:417.706667pt;}
.xdd_c00065{left:420.373333pt;}
.x62_c00065{left:421.333333pt;}
.x97_c00065{left:424.000000pt;}
.x72_c00065{left:427.626667pt;}
.xb6_c00065{left:429.706667pt;}
.x4b_c00065{left:430.666667pt;}
.x69_c00065{left:431.626667pt;}
.xb2_c00065{left:434.293333pt;}
.x93_c00065{left:437.333333pt;}
.x25_c00065{left:438.666667pt;}
.xb_c00065{left:440.373333pt;}
.x40_c00065{left:442.293333pt;}
.xa3_c00065{left:444.000000pt;}
.x7a_c00065{left:445.333333pt;}
.x73_c00065{left:446.666667pt;}
.x6a_c00065{left:449.706667pt;}
.xc3_c00065{left:450.666667pt;}
.x33_c00065{left:452.000000pt;}
.x4c_c00065{left:453.706667pt;}
.xe7_c00065{left:456.000000pt;}
.x87_c00065{left:457.133333pt;}
.xa4_c00065{left:458.293333pt;}
.x9d_c00065{left:462.293333pt;}
.xc_c00065{left:465.333333pt;}
.xf2_c00065{left:466.293333pt;}
.x8f_c00065{left:468.373333pt;}
.x41_c00065{left:470.666667pt;}
.xc4_c00065{left:472.000000pt;}
.xd1_c00065{left:472.960000pt;}
.x19_c00065{left:474.293333pt;}
.x6b_c00065{left:476.000000pt;}
.xcc_c00065{left:477.133333pt;}
.x34_c00065{left:486.666667pt;}
.x63_c00065{left:488.960000pt;}
.x55_c00065{left:491.040000pt;}
.x88_c00065{left:492.960000pt;}
.x90_c00065{left:494.666667pt;}
.xec_c00065{left:496.960000pt;}
.x7e_c00065{left:498.666667pt;}
.xa5_c00065{left:500.000000pt;}
.x35_c00065{left:500.960000pt;}
.x26_c00065{left:504.960000pt;}
.x74_c00065{left:508.000000pt;}
.xde_c00065{left:510.666667pt;}
.x42_c00065{left:511.626667pt;}
.x7b_c00065{left:516.000000pt;}
.xd_c00065{left:520.000000pt;}
.x27_c00065{left:523.040000pt;}
.x9e_c00065{left:524.960000pt;}
.x43_c00065{left:529.706667pt;}
.x1a_c00065{left:531.040000pt;}
.x56_c00065{left:532.000000pt;}
.xd9_c00065{left:533.333333pt;}
.xad_c00065{left:534.466667pt;}
.x4d_c00065{left:536.960000pt;}
.xa6_c00065{left:538.666667pt;}
.x98_c00065{left:540.960000pt;}
.xd2_c00065{left:542.293333pt;}
.x36_c00065{left:545.333333pt;}
.x28_c00065{left:549.333333pt;}
.x4e_c00065{left:553.706667pt;}
.x99_c00065{left:557.906667pt;}
.xdf_c00065{left:559.626667pt;}
.x6c_c00065{left:561.706667pt;}
.x75_c00065{left:562.666667pt;}
.x44_c00065{left:566.293333pt;}
.xe_c00065{left:568.960000pt;}
.xd5_c00065{left:570.466667pt;}
.x57_c00065{left:572.373333pt;}
.xda_c00065{left:576.000000pt;}
.x4f_c00065{left:576.960000pt;}
.x37_c00065{left:580.960000pt;}
.xcd_c00065{left:583.040000pt;}
.x9f_c00065{left:588.373333pt;}
.x7f_c00065{left:589.333333pt;}
.x89_c00065{left:591.626667pt;}
.xb7_c00065{left:593.333333pt;}
.x29_c00065{left:596.000000pt;}
.x38_c00065{left:597.706667pt;}
.x58_c00065{left:599.040000pt;}
.x6d_c00065{left:600.373333pt;}
.xc5_c00065{left:602.293333pt;}
.x76_c00065{left:605.333333pt;}
.xd3_c00065{left:608.000000pt;}
.x1b_c00065{left:609.333333pt;}
.xd6_c00065{left:610.666667pt;}
.xa7_c00065{left:612.960000pt;}
.x91_c00065{left:615.040000pt;}
.x50_c00065{left:617.333333pt;}
.xe3_c00065{left:619.626667pt;}
.x39_c00065{left:623.040000pt;}
.xf_c00065{left:626.666667pt;}
.x1c_c00065{left:631.040000pt;}
.x80_c00065{left:633.333333pt;}
.x8a_c00065{left:634.293333pt;}
.xed_c00065{left:636.000000pt;}
.xc7_c00065{left:636.960000pt;}
.x2a_c00065{left:638.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_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_144269a60bd7173b32d449da.woff2')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m87_c00066{transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);}
.maa_c00066{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.m3f_c00066{transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);}
.m4a_c00066{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m96_c00066{transform:matrix(0.360719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360719,0.000000,0.000000,0.250000,0,0);}
.m52_c00066{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.me9_c00066{transform:matrix(0.363497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363497,0.000000,0.000000,0.250000,0,0);}
.mc2_c00066{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m4d_c00066{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m2_c00066{transform:matrix(0.365414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365414,0.000000,0.000000,0.250000,0,0);}
.m74_c00066{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mf9_c00066{transform:matrix(0.368865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368865,0.000000,0.000000,0.250000,0,0);}
.m58_c00066{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.md_c00066{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m66_c00066{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mea_c00066{transform:matrix(0.376534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376534,0.000000,0.000000,0.250000,0,0);}
.m67_c00066{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m7e_c00066{transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);}
.m37_c00066{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m38_c00066{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m5c_c00066{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m45_c00066{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.m92_c00066{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m20_c00066{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m70_c00066{transform:matrix(0.388037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388037,0.000000,0.000000,0.250000,0,0);}
.me6_c00066{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.mc_c00066{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m97_c00066{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m61_c00066{transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);}
.ma2_c00066{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m76_c00066{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.mb0_c00066{transform:matrix(0.393405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393405,0.000000,0.000000,0.250000,0,0);}
.m62_c00066{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m21_c00066{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m6a_c00066{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m9d_c00066{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.mdc_c00066{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.mc8_c00066{transform:matrix(0.396856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396856,0.000000,0.000000,0.250000,0,0);}
.md8_c00066{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mcb_c00066{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);}
.m29_c00066{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.mbe_c00066{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m26_c00066{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.me5_c00066{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.md1_c00066{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.mcc_c00066{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m55_c00066{transform:matrix(0.408359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408359,0.000000,0.000000,0.250000,0,0);}
.m43_c00066{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m81_c00066{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.ma_c00066{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.me4_c00066{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m9a_c00066{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mcd_c00066{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m28_c00066{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mb2_c00066{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m7a_c00066{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m84_c00066{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mde_c00066{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m31_c00066{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.mba_c00066{transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);}
.mfc_c00066{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.m57_c00066{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m22_c00066{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m8d_c00066{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m65_c00066{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.mf1_c00066{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m5b_c00066{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m94_c00066{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m24_c00066{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m90_c00066{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.md2_c00066{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mb8_c00066{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.m83_c00066{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.maf_c00066{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m16_c00066{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m73_c00066{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m1a_c00066{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m17_c00066{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mc5_c00066{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m25_c00066{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m89_c00066{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.md3_c00066{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.me1_c00066{transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);}
.m5a_c00066{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.meb_c00066{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m78_c00066{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m13_c00066{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m49_c00066{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m4f_c00066{transform:matrix(0.447614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447614,0.000000,0.000000,0.250000,0,0);}
.m2c_c00066{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m1b_c00066{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m33_c00066{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.mf4_c00066{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);}
.ma5_c00066{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m2f_c00066{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.mdf_c00066{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.mbf_c00066{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m3e_c00066{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m3b_c00066{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mf8_c00066{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.md6_c00066{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mb5_c00066{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mf3_c00066{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.mb4_c00066{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.m9e_c00066{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.ma4_c00066{transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);}
.m23_c00066{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.med_c00066{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m2d_c00066{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m6c_c00066{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.mfe_c00066{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.mbc_c00066{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m6d_c00066{transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);}
.m1_c00066{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mc1_c00066{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.md4_c00066{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.ma7_c00066{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.mc3_c00066{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m6e_c00066{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mf7_c00066{transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);}
.m44_c00066{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_c00066{transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);}
.me0_c00066{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m15_c00066{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.md9_c00066{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m100_c00066{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m51_c00066{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mb1_c00066{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m3d_c00066{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m85_c00066{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.ma6_c00066{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m1d_c00066{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m80_c00066{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m59_c00066{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mda_c00066{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m27_c00066{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m5d_c00066{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.mf6_c00066{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mbb_c00066{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m42_c00066{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m91_c00066{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mca_c00066{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.ma1_c00066{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m7c_c00066{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m1e_c00066{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m7_c00066{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m69_c00066{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m95_c00066{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m7f_c00066{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mfd_c00066{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m10_c00066{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m5f_c00066{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mc7_c00066{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.me_c00066{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m82_c00066{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m79_c00066{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.ma9_c00066{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m7b_c00066{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m14_c00066{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m36_c00066{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m99_c00066{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m53_c00066{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.me2_c00066{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m3c_c00066{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mbd_c00066{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m8b_c00066{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m2e_c00066{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m34_c00066{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m3a_c00066{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m48_c00066{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m60_c00066{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m6f_c00066{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m12_c00066{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m41_c00066{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m68_c00066{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m72_c00066{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m9b_c00066{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m5_c00066{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m11_c00066{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m6b_c00066{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mee_c00066{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mff_c00066{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m77_c00066{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m56_c00066{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.mb_c00066{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mc4_c00066{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m88_c00066{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mf5_c00066{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mec_c00066{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.mf2_c00066{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.mf_c00066{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m4c_c00066{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m30_c00066{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m19_c00066{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m93_c00066{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.md5_c00066{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.mc9_c00066{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m98_c00066{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mb7_c00066{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.m54_c00066{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m7d_c00066{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.me3_c00066{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m5e_c00066{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m4e_c00066{transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);}
.m2b_c00066{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m8c_c00066{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m9_c00066{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.me8_c00066{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.mce_c00066{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);}
.mae_c00066{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m75_c00066{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m50_c00066{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m9c_c00066{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.md7_c00066{transform:matrix(0.611765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611765,0.000000,0.000000,0.250000,0,0);}
.m3_c00066{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mcf_c00066{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m39_c00066{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m63_c00066{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.ma0_c00066{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);}
.mfa_c00066{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m6_c00066{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m47_c00066{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m8f_c00066{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m64_c00066{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.m4_c00066{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m0_c00066{transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);}
.mc0_c00066{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.mb9_c00066{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m35_c00066{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mdb_c00066{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mfb_c00066{transform:matrix(0.696471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696471,0.000000,0.000000,0.250000,0,0);}
.mb6_c00066{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m46_c00066{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m8_c00066{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.mef_c00066{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.mc6_c00066{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m9f_c00066{transform:matrix(0.733824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733824,0.000000,0.000000,0.250000,0,0);}
.me7_c00066{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.mdd_c00066{transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);}
.mb3_c00066{transform:matrix(0.744118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.744118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.744118,0.000000,0.000000,0.250000,0,0);}
.m1f_c00066{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mab_c00066{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);}
.mad_c00066{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m8a_c00066{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m4b_c00066{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m32_c00066{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m2a_c00066{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mac_c00066{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m8e_c00066{transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);}
.md0_c00066{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.ma3_c00066{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m86_c00066{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.ma8_c00066{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.m40_c00066{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m1c_c00066{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m18_c00066{transform:matrix(3.811404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.811404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.811404,0.000000,0.000000,0.250000,0,0);}
.m71_c00066{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00066{vertical-align:0.000000px;}
.v1_c00066{vertical-align:6.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;}
}
.ws1_c00066{word-spacing:-10.932480px;}
.ws2_c00066{word-spacing:-6.988015px;}
.ws3_c00066{word-spacing:-3.089552px;}
.ws0_c00066{word-spacing:-2.161806px;}
.ws4_c00066{word-spacing:0.000000px;}
._0_c00066{width:3.730909px;}
.fc0_c00066{color:transparent;}
.fs7_c00066{font-size:3.420000px;}
.fs4_c00066{font-size:18.720000px;}
.fs0_c00066{font-size:20.400000px;}
.fs3_c00066{font-size:25.500000px;}
.fs1_c00066{font-size:28.920000px;}
.fs6_c00066{font-size:32.340000px;}
.fs5_c00066{font-size:35.700000px;}
.fs2_c00066{font-size:39.120000px;}
.fs8_c00066{font-size:42.540000px;}
.y0_c00066{bottom:0.000000px;}
.y110_c00066{bottom:250.905000px;}
.y10b_c00066{bottom:252.405000px;}
.y10c_c00066{bottom:253.905000px;}
.y10f_c00066{bottom:254.130000px;}
.y10d_c00066{bottom:254.970000px;}
.y10e_c00066{bottom:255.405000px;}
.y111_c00066{bottom:256.905000px;}
.y10a_c00066{bottom:257.130000px;}
.y109_c00066{bottom:258.825000px;}
.y103_c00066{bottom:273.180000px;}
.y105_c00066{bottom:273.405000px;}
.y108_c00066{bottom:273.825000px;}
.y106_c00066{bottom:274.470000px;}
.y104_c00066{bottom:274.905000px;}
.y107_c00066{bottom:276.405000px;}
.y102_c00066{bottom:279.405000px;}
.yfe_c00066{bottom:292.245000px;}
.yfd_c00066{bottom:293.130000px;}
.y100_c00066{bottom:293.325000px;}
.yff_c00066{bottom:293.970000px;}
.yfc_c00066{bottom:294.405000px;}
.yfb_c00066{bottom:294.630000px;}
.y101_c00066{bottom:294.825000px;}
.yfa_c00066{bottom:295.905000px;}
.yf7_c00066{bottom:296.970000px;}
.yf9_c00066{bottom:297.405000px;}
.yf8_c00066{bottom:297.630000px;}
.yf6_c00066{bottom:300.825000px;}
.yf3_c00066{bottom:311.745000px;}
.yf5_c00066{bottom:312.825000px;}
.yf4_c00066{bottom:313.470000px;}
.yf0_c00066{bottom:313.680000px;}
.yf2_c00066{bottom:313.905000px;}
.yf1_c00066{bottom:315.405000px;}
.yef_c00066{bottom:318.825000px;}
.yeb_c00066{bottom:331.245000px;}
.yec_c00066{bottom:333.405000px;}
.yed_c00066{bottom:333.630000px;}
.yee_c00066{bottom:334.470000px;}
.yea_c00066{bottom:334.905000px;}
.ye9_c00066{bottom:336.405000px;}
.ye8_c00066{bottom:338.325000px;}
.ye5_c00066{bottom:348.405000px;}
.ye4_c00066{bottom:350.745000px;}
.ye3_c00066{bottom:351.630000px;}
.ye7_c00066{bottom:351.825000px;}
.ye2_c00066{bottom:352.905000px;}
.ye6_c00066{bottom:353.130000px;}
.ye1_c00066{bottom:354.405000px;}
.ydf_c00066{bottom:355.905000px;}
.ye0_c00066{bottom:356.970000px;}
.ydc_c00066{bottom:370.245000px;}
.ydb_c00066{bottom:372.180000px;}
.ydd_c00066{bottom:372.405000px;}
.yde_c00066{bottom:372.630000px;}
.yd8_c00066{bottom:389.745000px;}
.yda_c00066{bottom:390.180000px;}
.yd7_c00066{bottom:392.130000px;}
.yd9_c00066{bottom:392.970000px;}
.yd6_c00066{bottom:393.405000px;}
.yd5_c00066{bottom:394.905000px;}
.yd4_c00066{bottom:396.825000px;}
.yd3_c00066{bottom:409.245000px;}
.yd0_c00066{bottom:410.325000px;}
.ycf_c00066{bottom:410.745000px;}
.yd2_c00066{bottom:411.630000px;}
.yd1_c00066{bottom:412.470000px;}
.ycd_c00066{bottom:412.905000px;}
.yce_c00066{bottom:413.130000px;}
.ycb_c00066{bottom:414.405000px;}
.ycc_c00066{bottom:414.825000px;}
.yca_c00066{bottom:417.630000px;}
.yc9_c00066{bottom:430.245000px;}
.yc7_c00066{bottom:431.130000px;}
.yc8_c00066{bottom:431.970000px;}
.yc6_c00066{bottom:432.405000px;}
.yc5_c00066{bottom:434.325000px;}
.yc4_c00066{bottom:435.825000px;}
.yc1_c00066{bottom:448.245000px;}
.yc0_c00066{bottom:449.745000px;}
.yc3_c00066{bottom:451.470000px;}
.yc2_c00066{bottom:451.905000px;}
.ybf_c00066{bottom:453.405000px;}
.ybe_c00066{bottom:455.550000px;}
.ybc_c00066{bottom:469.245000px;}
.ybd_c00066{bottom:470.325000px;}
.ybb_c00066{bottom:471.405000px;}
.yba_c00066{bottom:472.470000px;}
.yb9_c00066{bottom:474.405000px;}
.yb8_c00066{bottom:476.130000px;}
.yb7_c00066{bottom:488.745000px;}
.yb5_c00066{bottom:490.245000px;}
.yb6_c00066{bottom:490.905000px;}
.yb4_c00066{bottom:492.405000px;}
.yb3_c00066{bottom:492.630000px;}
.yb2_c00066{bottom:493.905000px;}
.yb1_c00066{bottom:495.405000px;}
.yb0_c00066{bottom:507.405000px;}
.yad_c00066{bottom:508.245000px;}
.yaf_c00066{bottom:510.405000px;}
.yac_c00066{bottom:510.630000px;}
.yab_c00066{bottom:510.825000px;}
.yae_c00066{bottom:511.470000px;}
.yaa_c00066{bottom:511.905000px;}
.ya9_c00066{bottom:513.825000px;}
.ya7_c00066{bottom:527.745000px;}
.ya4_c00066{bottom:528.180000px;}
.ya6_c00066{bottom:529.245000px;}
.ya8_c00066{bottom:530.970000px;}
.ya5_c00066{bottom:531.405000px;}
.ya3_c00066{bottom:532.905000px;}
.ya1_c00066{bottom:548.745000px;}
.ya2_c00066{bottom:549.630000px;}
.ya0_c00066{bottom:550.905000px;}
.y9f_c00066{bottom:551.970000px;}
.y9e_c00066{bottom:554.325000px;}
.y9d_c00066{bottom:568.245000px;}
.y9c_c00066{bottom:569.130000px;}
.y9b_c00066{bottom:570.405000px;}
.y9a_c00066{bottom:571.905000px;}
.y99_c00066{bottom:572.325000px;}
.y98_c00066{bottom:574.905000px;}
.y93_c00066{bottom:586.905000px;}
.y97_c00066{bottom:588.630000px;}
.y96_c00066{bottom:588.825000px;}
.y95_c00066{bottom:589.470000px;}
.y94_c00066{bottom:589.905000px;}
.y92_c00066{bottom:590.130000px;}
.y91_c00066{bottom:590.325000px;}
.y90_c00066{bottom:593.325000px;}
.y8d_c00066{bottom:607.245000px;}
.y89_c00066{bottom:607.680000px;}
.y8b_c00066{bottom:608.325000px;}
.y8e_c00066{bottom:608.550000px;}
.y8a_c00066{bottom:609.405000px;}
.y8c_c00066{bottom:610.470000px;}
.y8f_c00066{bottom:610.905000px;}
.y88_c00066{bottom:612.405000px;}
.y87_c00066{bottom:613.905000px;}
.y86_c00066{bottom:627.825000px;}
.y83_c00066{bottom:628.245000px;}
.y85_c00066{bottom:628.905000px;}
.y84_c00066{bottom:629.130000px;}
.y82_c00066{bottom:630.405000px;}
.y81_c00066{bottom:630.630000px;}
.y80_c00066{bottom:631.050000px;}
.y7f_c00066{bottom:632.745000px;}
.y7c_c00066{bottom:645.405000px;}
.y7d_c00066{bottom:646.245000px;}
.y7e_c00066{bottom:648.630000px;}
.y7b_c00066{bottom:649.905000px;}
.y7a_c00066{bottom:651.825000px;}
.y77_c00066{bottom:665.745000px;}
.y78_c00066{bottom:667.245000px;}
.y75_c00066{bottom:668.550000px;}
.y76_c00066{bottom:669.405000px;}
.y79_c00066{bottom:669.630000px;}
.y74_c00066{bottom:671.325000px;}
.y72_c00066{bottom:685.905000px;}
.y71_c00066{bottom:686.745000px;}
.y6e_c00066{bottom:687.180000px;}
.y6f_c00066{bottom:688.905000px;}
.y70_c00066{bottom:689.130000px;}
.y73_c00066{bottom:689.970000px;}
.y6a_c00066{bottom:705.405000px;}
.y6b_c00066{bottom:706.245000px;}
.y6d_c00066{bottom:707.745000px;}
.y69_c00066{bottom:708.405000px;}
.y6c_c00066{bottom:709.470000px;}
.y68_c00066{bottom:710.745000px;}
.y65_c00066{bottom:725.745000px;}
.y67_c00066{bottom:727.905000px;}
.y66_c00066{bottom:728.970000px;}
.y63_c00066{bottom:730.050000px;}
.y64_c00066{bottom:730.905000px;}
.y61_c00066{bottom:744.405000px;}
.y62_c00066{bottom:745.245000px;}
.y5f_c00066{bottom:746.325000px;}
.y5e_c00066{bottom:747.405000px;}
.y60_c00066{bottom:747.630000px;}
.y5c_c00066{bottom:748.470000px;}
.y5d_c00066{bottom:748.905000px;}
.y58_c00066{bottom:763.905000px;}
.y5a_c00066{bottom:766.245000px;}
.y57_c00066{bottom:766.680000px;}
.y5b_c00066{bottom:767.130000px;}
.y59_c00066{bottom:768.405000px;}
.y56_c00066{bottom:784.245000px;}
.y55_c00066{bottom:785.745000px;}
.y54_c00066{bottom:787.905000px;}
.y53_c00066{bottom:789.825000px;}
.y52_c00066{bottom:802.905000px;}
.y50_c00066{bottom:805.245000px;}
.y4d_c00066{bottom:805.680000px;}
.y51_c00066{bottom:806.970000px;}
.y4f_c00066{bottom:807.405000px;}
.y4e_c00066{bottom:807.420000px;}
.y4b_c00066{bottom:825.825000px;}
.y4a_c00066{bottom:826.680000px;}
.y4c_c00066{bottom:826.905000px;}
.y47_c00066{bottom:842.745000px;}
.y44_c00066{bottom:844.245000px;}
.y48_c00066{bottom:845.130000px;}
.y49_c00066{bottom:845.325000px;}
.y45_c00066{bottom:846.405000px;}
.y46_c00066{bottom:847.470000px;}
.y40_c00066{bottom:863.745000px;}
.y42_c00066{bottom:864.630000px;}
.y43_c00066{bottom:864.825000px;}
.y3f_c00066{bottom:865.905000px;}
.y3e_c00066{bottom:866.745000px;}
.y41_c00066{bottom:866.970000px;}
.y3b_c00066{bottom:883.245000px;}
.y3c_c00066{bottom:884.130000px;}
.y3d_c00066{bottom:884.970000px;}
.y39_c00066{bottom:885.180000px;}
.y3a_c00066{bottom:885.405000px;}
.y35_c00066{bottom:901.905000px;}
.y38_c00066{bottom:902.745000px;}
.y37_c00066{bottom:904.905000px;}
.y36_c00066{bottom:905.130000px;}
.y34_c00066{bottom:905.970000px;}
.y30_c00066{bottom:921.405000px;}
.y2d_c00066{bottom:922.245000px;}
.y32_c00066{bottom:922.470000px;}
.y2f_c00066{bottom:922.680000px;}
.y2e_c00066{bottom:923.745000px;}
.y33_c00066{bottom:924.405000px;}
.y31_c00066{bottom:924.630000px;}
.y2c_c00066{bottom:925.905000px;}
.y2b_c00066{bottom:926.550000px;}
.y27_c00066{bottom:941.745000px;}
.y28_c00066{bottom:943.245000px;}
.y25_c00066{bottom:943.680000px;}
.y2a_c00066{bottom:943.905000px;}
.y26_c00066{bottom:944.130000px;}
.y29_c00066{bottom:945.405000px;}
.y24_c00066{bottom:961.245000px;}
.y20_c00066{bottom:962.745000px;}
.y21_c00066{bottom:963.405000px;}
.y23_c00066{bottom:963.630000px;}
.y1f_c00066{bottom:964.245000px;}
.y22_c00066{bottom:964.905000px;}
.y1b_c00066{bottom:982.245000px;}
.y1d_c00066{bottom:983.130000px;}
.y1e_c00066{bottom:983.970000px;}
.y1c_c00066{bottom:984.405000px;}
.y1a_c00066{bottom:986.325000px;}
.y16_c00066{bottom:1001.745000px;}
.y18_c00066{bottom:1002.630000px;}
.y19_c00066{bottom:1003.470000px;}
.y17_c00066{bottom:1003.905000px;}
.y15_c00066{bottom:1004.325000px;}
.y13_c00066{bottom:1021.245000px;}
.y12_c00066{bottom:1022.130000px;}
.y14_c00066{bottom:1022.325000px;}
.y10_c00066{bottom:1023.405000px;}
.yf_c00066{bottom:1023.825000px;}
.y11_c00066{bottom:1024.470000px;}
.yc_c00066{bottom:1040.325000px;}
.yd_c00066{bottom:1040.745000px;}
.ye_c00066{bottom:1041.420000px;}
.yb_c00066{bottom:1042.905000px;}
.ya_c00066{bottom:1044.405000px;}
.y7_c00066{bottom:1059.405000px;}
.y9_c00066{bottom:1060.245000px;}
.y3_c00066{bottom:1060.680000px;}
.y5_c00066{bottom:1061.970000px;}
.y6_c00066{bottom:1062.405000px;}
.y8_c00066{bottom:1062.630000px;}
.y4_c00066{bottom:1063.470000px;}
.y2_c00066{bottom:1098.405000px;}
.y1_c00066{bottom:1100.550000px;}
.h8_c00066{height:4.206533px;}
.h5_c00066{height:23.025234px;}
.h1_c00066{height:25.091602px;}
.h4_c00066{height:31.364502px;}
.h2_c00066{height:35.571035px;}
.h7_c00066{height:39.777568px;}
.ha_c00066{height:41.571035px;}
.h6_c00066{height:43.910303px;}
.h3_c00066{height:48.116836px;}
.h9_c00066{height:52.323369px;}
.h0_c00066{height:1335.000000px;}
.w0_c00066{width:880.500000px;}
.x0_c00066{left:0.000000px;}
.x3_c00066{left:152.580000px;}
.x3b_c00066{left:154.080000px;}
.x78_c00066{left:155.775000px;}
.xf6_c00066{left:162.420000px;}
.x10c_c00066{left:166.500000px;}
.x83_c00066{left:169.500000px;}
.xa0_c00066{left:171.420000px;}
.xc2_c00066{left:172.500000px;}
.x10d_c00066{left:175.920000px;}
.xd7_c00066{left:181.080000px;}
.x50_c00066{left:183.000000px;}
.x3c_c00066{left:184.500000px;}
.x10e_c00066{left:186.000000px;}
.x10_c00066{left:187.920000px;}
.x31_c00066{left:190.500000px;}
.xb2_c00066{left:192.000000px;}
.x97_c00066{left:193.500000px;}
.x79_c00066{left:195.000000px;}
.xa1_c00066{left:196.500000px;}
.xe2_c00066{left:198.420000px;}
.x4_c00066{left:199.500000px;}
.x47_c00066{left:201.420000px;}
.x1c_c00066{left:205.500000px;}
.x103_c00066{left:207.420000px;}
.x63_c00066{left:208.500000px;}
.x98_c00066{left:210.420000px;}
.xfc_c00066{left:213.420000px;}
.x70_c00066{left:214.500000px;}
.x11_c00066{left:217.080000px;}
.xee_c00066{left:219.000000px;}
.xf7_c00066{left:220.500000px;}
.xa8_c00066{left:222.000000px;}
.xb9_c00066{left:223.080000px;}
.xc3_c00066{left:225.000000px;}
.x5_c00066{left:226.500000px;}
.x10f_c00066{left:229.500000px;}
.x7a_c00066{left:230.580000px;}
.xad_c00066{left:232.500000px;}
.xf3_c00066{left:233.580000px;}
.x3d_c00066{left:235.080000px;}
.x99_c00066{left:236.580000px;}
.xfd_c00066{left:243.000000px;}
.x26_c00066{left:245.580000px;}
.xf8_c00066{left:247.920000px;}
.x7b_c00066{left:249.000000px;}
.x51_c00066{left:251.355000px;}
.xf4_c00066{left:252.420000px;}
.xa9_c00066{left:255.420000px;}
.x84_c00066{left:256.500000px;}
.xd3_c00066{left:257.580000px;}
.x109_c00066{left:259.920000px;}
.x32_c00066{left:261.000000px;}
.xcb_c00066{left:262.080000px;}
.x118_c00066{left:264.000000px;}
.x107_c00066{left:265.500000px;}
.x3e_c00066{left:267.000000px;}
.xa2_c00066{left:268.500000px;}
.xe3_c00066{left:270.000000px;}
.x6_c00066{left:271.080000px;}
.xba_c00066{left:272.580000px;}
.xd8_c00066{left:274.080000px;}
.x27_c00066{left:277.500000px;}
.xae_c00066{left:279.420000px;}
.x33_c00066{left:280.500000px;}
.x64_c00066{left:281.580000px;}
.x1d_c00066{left:283.500000px;}
.xb3_c00066{left:285.000000px;}
.x3f_c00066{left:286.500000px;}
.x80_c00066{left:287.580000px;}
.x71_c00066{left:289.080000px;}
.xc7_c00066{left:291.420000px;}
.xd9_c00066{left:292.920000px;}
.x1e_c00066{left:294.000000px;}
.xaa_c00066{left:295.920000px;}
.x12_c00066{left:297.000000px;}
.xdc_c00066{left:298.080000px;}
.x8b_c00066{left:300.000000px;}
.x7c_c00066{left:301.500000px;}
.x7_c00066{left:303.000000px;}
.xa3_c00066{left:304.080000px;}
.xcc_c00066{left:306.000000px;}
.x119_c00066{left:307.500000px;}
.x52_c00066{left:310.080000px;}
.x10a_c00066{left:311.580000px;}
.xe5_c00066{left:313.500000px;}
.xaf_c00066{left:315.000000px;}
.x85_c00066{left:316.500000px;}
.x34_c00066{left:318.000000px;}
.x94_c00066{left:319.500000px;}
.x8_c00066{left:321.000000px;}
.x40_c00066{left:324.000000px;}
.x72_c00066{left:327.000000px;}
.x8c_c00066{left:328.500000px;}
.x1f_c00066{left:331.080000px;}
.xb4_c00066{left:333.000000px;}
.xbb_c00066{left:334.920000px;}
.xef_c00066{left:340.920000px;}
.x35_c00066{left:343.920000px;}
.xfe_c00066{left:345.000000px;}
.x28_c00066{left:346.500000px;}
.x48_c00066{left:350.580000px;}
.x11a_c00066{left:352.500000px;}
.x13_c00066{left:354.000000px;}
.x41_c00066{left:355.080000px;}
.x53_c00066{left:356.580000px;}
.xda_c00066{left:358.920000px;}
.x5d_c00066{left:360.000000px;}
.x7d_c00066{left:363.000000px;}
.xb0_c00066{left:364.920000px;}
.x73_c00066{left:367.500000px;}
.xf0_c00066{left:368.580000px;}
.x65_c00066{left:370.275000px;}
.xa4_c00066{left:371.580000px;}
.x14_c00066{left:373.920000px;}
.xbc_c00066{left:375.000000px;}
.x86_c00066{left:376.500000px;}
.x7e_c00066{left:378.000000px;}
.x49_c00066{left:379.500000px;}
.xcd_c00066{left:381.000000px;}
.x9_c00066{left:382.500000px;}
.xdd_c00066{left:385.500000px;}
.xe6_c00066{left:386.580000px;}
.xf9_c00066{left:388.500000px;}
.x54_c00066{left:391.500000px;}
.x8d_c00066{left:393.000000px;}
.x1_c00066{left:394.500000px;}
.x110_c00066{left:396.000000px;}
.x114_c00066{left:397.080000px;}
.x9a_c00066{left:399.000000px;}
.x20_c00066{left:400.500000px;}
.x5e_c00066{left:401.580000px;}
.x15_c00066{left:403.500000px;}
.x66_c00066{left:405.420000px;}
.xbd_c00066{left:408.420000px;}
.x81_c00066{left:409.920000px;}
.xf1_c00066{left:411.000000px;}
.x21_c00066{left:412.500000px;}
.x29_c00066{left:415.080000px;}
.xc8_c00066{left:417.000000px;}
.xf5_c00066{left:420.420000px;}
.xa_c00066{left:421.500000px;}
.x9b_c00066{left:424.920000px;}
.x104_c00066{left:427.500000px;}
.x115_c00066{left:429.000000px;}
.x87_c00066{left:430.920000px;}
.x95_c00066{left:435.420000px;}
.x2a_c00066{left:436.500000px;}
.xa5_c00066{left:438.000000px;}
.x4a_c00066{left:439.500000px;}
.x67_c00066{left:441.420000px;}
.x105_c00066{left:442.500000px;}
.x42_c00066{left:444.420000px;}
.xbe_c00066{left:445.500000px;}
.xd4_c00066{left:446.580000px;}
.x82_c00066{left:447.645000px;}
.xeb_c00066{left:450.420000px;}
.x5f_c00066{left:454.500000px;}
.x22_c00066{left:455.580000px;}
.xb_c00066{left:457.920000px;}
.x55_c00066{left:459.000000px;}
.xde_c00066{left:462.420000px;}
.x111_c00066{left:465.420000px;}
.xc4_c00066{left:466.920000px;}
.x68_c00066{left:468.420000px;}
.xb1_c00066{left:469.920000px;}
.x43_c00066{left:472.500000px;}
.x10b_c00066{left:473.580000px;}
.x36_c00066{left:475.920000px;}
.xce_c00066{left:477.420000px;}
.xab_c00066{left:478.500000px;}
.xfa_c00066{left:480.000000px;}
.x74_c00066{left:481.275000px;}
.x2b_c00066{left:484.500000px;}
.x56_c00066{left:485.580000px;}
.xdf_c00066{left:487.500000px;}
.x16_c00066{left:494.580000px;}
.xcf_c00066{left:496.500000px;}
.x4b_c00066{left:497.580000px;}
.x2c_c00066{left:499.500000px;}
.xe7_c00066{left:500.580000px;}
.x8e_c00066{left:503.580000px;}
.xff_c00066{left:505.500000px;}
.x57_c00066{left:507.420000px;}
.xb5_c00066{left:508.500000px;}
.x37_c00066{left:509.580000px;}
.x60_c00066{left:511.500000px;}
.xf2_c00066{left:513.000000px;}
.x69_c00066{left:514.500000px;}
.xd0_c00066{left:515.580000px;}
.x4c_c00066{left:517.500000px;}
.xe8_c00066{left:520.920000px;}
.x75_c00066{left:522.000000px;}
.x23_c00066{left:525.000000px;}
.x9c_c00066{left:526.920000px;}
.x17_c00066{left:528.000000px;}
.xdb_c00066{left:529.500000px;}
.x88_c00066{left:530.580000px;}
.xd5_c00066{left:532.920000px;}
.x6a_c00066{left:534.000000px;}
.x44_c00066{left:535.920000px;}
.xec_c00066{left:537.420000px;}
.x8f_c00066{left:538.500000px;}
.x2d_c00066{left:541.080000px;}
.x61_c00066{left:543.000000px;}
.xc_c00066{left:544.500000px;}
.xe9_c00066{left:547.500000px;}
.x58_c00066{left:550.080000px;}
.xfb_c00066{left:553.500000px;}
.x6b_c00066{left:554.580000px;}
.x100_c00066{left:558.000000px;}
.xe0_c00066{left:559.500000px;}
.x112_c00066{left:561.000000px;}
.xbf_c00066{left:562.080000px;}
.x9d_c00066{left:564.000000px;}
.x7f_c00066{left:567.000000px;}
.xd1_c00066{left:568.500000px;}
.x11b_c00066{left:570.420000px;}
.x76_c00066{left:571.920000px;}
.x45_c00066{left:574.920000px;}
.xb6_c00066{left:577.920000px;}
.xc9_c00066{left:579.000000px;}
.xa6_c00066{left:580.500000px;}
.xd_c00066{left:581.580000px;}
.x59_c00066{left:583.500000px;}
.x2e_c00066{left:585.420000px;}
.x116_c00066{left:586.920000px;}
.x106_c00066{left:588.000000px;}
.x24_c00066{left:591.000000px;}
.x4d_c00066{left:592.920000px;}
.x18_c00066{left:594.000000px;}
.xc0_c00066{left:595.500000px;}
.x38_c00066{left:597.000000px;}
.x90_c00066{left:598.500000px;}
.x46_c00066{left:603.000000px;}
.x6c_c00066{left:607.080000px;}
.x101_c00066{left:608.580000px;}
.x9e_c00066{left:610.500000px;}
.xd2_c00066{left:612.000000px;}
.xed_c00066{left:613.080000px;}
.xd6_c00066{left:616.920000px;}
.xea_c00066{left:618.000000px;}
.x89_c00066{left:621.000000px;}
.x19_c00066{left:622.080000px;}
.x4e_c00066{left:625.920000px;}
.xca_c00066{left:628.500000px;}
.xe_c00066{left:631.275000px;}
.xb7_c00066{left:633.000000px;}
.xe4_c00066{left:634.920000px;}
.x6d_c00066{left:636.000000px;}
.x91_c00066{left:639.420000px;}
.x2f_c00066{left:643.500000px;}
.x1a_c00066{left:645.420000px;}
.xa7_c00066{left:649.500000px;}
.xc1_c00066{left:651.000000px;}
.x5a_c00066{left:652.500000px;}
.xac_c00066{left:654.000000px;}
.x117_c00066{left:655.920000px;}
.x77_c00066{left:657.000000px;}
.x39_c00066{left:659.580000px;}
.x30_c00066{left:661.500000px;}
.xf_c00066{left:663.000000px;}
.x6e_c00066{left:664.500000px;}
.x4f_c00066{left:666.000000px;}
.x102_c00066{left:667.920000px;}
.x9f_c00066{left:670.500000px;}
.xc5_c00066{left:672.420000px;}
.x92_c00066{left:673.500000px;}
.x25_c00066{left:675.855000px;}
.xe1_c00066{left:678.420000px;}
.x5b_c00066{left:679.500000px;}
.xb8_c00066{left:681.000000px;}
.x3a_c00066{left:682.080000px;}
.x96_c00066{left:691.500000px;}
.x8a_c00066{left:694.080000px;}
.x113_c00066{left:696.000000px;}
.x6f_c00066{left:697.920000px;}
.xc6_c00066{left:699.000000px;}
.x5c_c00066{left:703.500000px;}
.x1b_c00066{left:706.920000px;}
.x2_c00066{left:712.080000px;}
.x93_c00066{left:720.000000px;}
.x108_c00066{left:721.080000px;}
.x62_c00066{left:723.000000px;}
@media print{
.v0_c00066{vertical-align:0.000000pt;}
.v1_c00066{vertical-align:5.333333pt;}
.ls0_c00066{letter-spacing:0.000000pt;}
.ws1_c00066{word-spacing:-9.717760pt;}
.ws2_c00066{word-spacing:-6.211569pt;}
.ws3_c00066{word-spacing:-2.746269pt;}
.ws0_c00066{word-spacing:-1.921606pt;}
.ws4_c00066{word-spacing:0.000000pt;}
._0_c00066{width:3.316364pt;}
.fs7_c00066{font-size:3.040000pt;}
.fs4_c00066{font-size:16.640000pt;}
.fs0_c00066{font-size:18.133333pt;}
.fs3_c00066{font-size:22.666667pt;}
.fs1_c00066{font-size:25.706667pt;}
.fs6_c00066{font-size:28.746667pt;}
.fs5_c00066{font-size:31.733333pt;}
.fs2_c00066{font-size:34.773333pt;}
.fs8_c00066{font-size:37.813333pt;}
.y0_c00066{bottom:0.000000pt;}
.y110_c00066{bottom:223.026667pt;}
.y10b_c00066{bottom:224.360000pt;}
.y10c_c00066{bottom:225.693333pt;}
.y10f_c00066{bottom:225.893333pt;}
.y10d_c00066{bottom:226.640000pt;}
.y10e_c00066{bottom:227.026667pt;}
.y111_c00066{bottom:228.360000pt;}
.y10a_c00066{bottom:228.560000pt;}
.y109_c00066{bottom:230.066667pt;}
.y103_c00066{bottom:242.826667pt;}
.y105_c00066{bottom:243.026667pt;}
.y108_c00066{bottom:243.400000pt;}
.y106_c00066{bottom:243.973333pt;}
.y104_c00066{bottom:244.360000pt;}
.y107_c00066{bottom:245.693333pt;}
.y102_c00066{bottom:248.360000pt;}
.yfe_c00066{bottom:259.773333pt;}
.yfd_c00066{bottom:260.560000pt;}
.y100_c00066{bottom:260.733333pt;}
.yff_c00066{bottom:261.306667pt;}
.yfc_c00066{bottom:261.693333pt;}
.yfb_c00066{bottom:261.893333pt;}
.y101_c00066{bottom:262.066667pt;}
.yfa_c00066{bottom:263.026667pt;}
.yf7_c00066{bottom:263.973333pt;}
.yf9_c00066{bottom:264.360000pt;}
.yf8_c00066{bottom:264.560000pt;}
.yf6_c00066{bottom:267.400000pt;}
.yf3_c00066{bottom:277.106667pt;}
.yf5_c00066{bottom:278.066667pt;}
.yf4_c00066{bottom:278.640000pt;}
.yf0_c00066{bottom:278.826667pt;}
.yf2_c00066{bottom:279.026667pt;}
.yf1_c00066{bottom:280.360000pt;}
.yef_c00066{bottom:283.400000pt;}
.yeb_c00066{bottom:294.440000pt;}
.yec_c00066{bottom:296.360000pt;}
.yed_c00066{bottom:296.560000pt;}
.yee_c00066{bottom:297.306667pt;}
.yea_c00066{bottom:297.693333pt;}
.ye9_c00066{bottom:299.026667pt;}
.ye8_c00066{bottom:300.733333pt;}
.ye5_c00066{bottom:309.693333pt;}
.ye4_c00066{bottom:311.773333pt;}
.ye3_c00066{bottom:312.560000pt;}
.ye7_c00066{bottom:312.733333pt;}
.ye2_c00066{bottom:313.693333pt;}
.ye6_c00066{bottom:313.893333pt;}
.ye1_c00066{bottom:315.026667pt;}
.ydf_c00066{bottom:316.360000pt;}
.ye0_c00066{bottom:317.306667pt;}
.ydc_c00066{bottom:329.106667pt;}
.ydb_c00066{bottom:330.826667pt;}
.ydd_c00066{bottom:331.026667pt;}
.yde_c00066{bottom:331.226667pt;}
.yd8_c00066{bottom:346.440000pt;}
.yda_c00066{bottom:346.826667pt;}
.yd7_c00066{bottom:348.560000pt;}
.yd9_c00066{bottom:349.306667pt;}
.yd6_c00066{bottom:349.693333pt;}
.yd5_c00066{bottom:351.026667pt;}
.yd4_c00066{bottom:352.733333pt;}
.yd3_c00066{bottom:363.773333pt;}
.yd0_c00066{bottom:364.733333pt;}
.ycf_c00066{bottom:365.106667pt;}
.yd2_c00066{bottom:365.893333pt;}
.yd1_c00066{bottom:366.640000pt;}
.ycd_c00066{bottom:367.026667pt;}
.yce_c00066{bottom:367.226667pt;}
.ycb_c00066{bottom:368.360000pt;}
.ycc_c00066{bottom:368.733333pt;}
.yca_c00066{bottom:371.226667pt;}
.yc9_c00066{bottom:382.440000pt;}
.yc7_c00066{bottom:383.226667pt;}
.yc8_c00066{bottom:383.973333pt;}
.yc6_c00066{bottom:384.360000pt;}
.yc5_c00066{bottom:386.066667pt;}
.yc4_c00066{bottom:387.400000pt;}
.yc1_c00066{bottom:398.440000pt;}
.yc0_c00066{bottom:399.773333pt;}
.yc3_c00066{bottom:401.306667pt;}
.yc2_c00066{bottom:401.693333pt;}
.ybf_c00066{bottom:403.026667pt;}
.ybe_c00066{bottom:404.933333pt;}
.ybc_c00066{bottom:417.106667pt;}
.ybd_c00066{bottom:418.066667pt;}
.ybb_c00066{bottom:419.026667pt;}
.yba_c00066{bottom:419.973333pt;}
.yb9_c00066{bottom:421.693333pt;}
.yb8_c00066{bottom:423.226667pt;}
.yb7_c00066{bottom:434.440000pt;}
.yb5_c00066{bottom:435.773333pt;}
.yb6_c00066{bottom:436.360000pt;}
.yb4_c00066{bottom:437.693333pt;}
.yb3_c00066{bottom:437.893333pt;}
.yb2_c00066{bottom:439.026667pt;}
.yb1_c00066{bottom:440.360000pt;}
.yb0_c00066{bottom:451.026667pt;}
.yad_c00066{bottom:451.773333pt;}
.yaf_c00066{bottom:453.693333pt;}
.yac_c00066{bottom:453.893333pt;}
.yab_c00066{bottom:454.066667pt;}
.yae_c00066{bottom:454.640000pt;}
.yaa_c00066{bottom:455.026667pt;}
.ya9_c00066{bottom:456.733333pt;}
.ya7_c00066{bottom:469.106667pt;}
.ya4_c00066{bottom:469.493333pt;}
.ya6_c00066{bottom:470.440000pt;}
.ya8_c00066{bottom:471.973333pt;}
.ya5_c00066{bottom:472.360000pt;}
.ya3_c00066{bottom:473.693333pt;}
.ya1_c00066{bottom:487.773333pt;}
.ya2_c00066{bottom:488.560000pt;}
.ya0_c00066{bottom:489.693333pt;}
.y9f_c00066{bottom:490.640000pt;}
.y9e_c00066{bottom:492.733333pt;}
.y9d_c00066{bottom:505.106667pt;}
.y9c_c00066{bottom:505.893333pt;}
.y9b_c00066{bottom:507.026667pt;}
.y9a_c00066{bottom:508.360000pt;}
.y99_c00066{bottom:508.733333pt;}
.y98_c00066{bottom:511.026667pt;}
.y93_c00066{bottom:521.693333pt;}
.y97_c00066{bottom:523.226667pt;}
.y96_c00066{bottom:523.400000pt;}
.y95_c00066{bottom:523.973333pt;}
.y94_c00066{bottom:524.360000pt;}
.y92_c00066{bottom:524.560000pt;}
.y91_c00066{bottom:524.733333pt;}
.y90_c00066{bottom:527.400000pt;}
.y8d_c00066{bottom:539.773333pt;}
.y89_c00066{bottom:540.160000pt;}
.y8b_c00066{bottom:540.733333pt;}
.y8e_c00066{bottom:540.933333pt;}
.y8a_c00066{bottom:541.693333pt;}
.y8c_c00066{bottom:542.640000pt;}
.y8f_c00066{bottom:543.026667pt;}
.y88_c00066{bottom:544.360000pt;}
.y87_c00066{bottom:545.693333pt;}
.y86_c00066{bottom:558.066667pt;}
.y83_c00066{bottom:558.440000pt;}
.y85_c00066{bottom:559.026667pt;}
.y84_c00066{bottom:559.226667pt;}
.y82_c00066{bottom:560.360000pt;}
.y81_c00066{bottom:560.560000pt;}
.y80_c00066{bottom:560.933333pt;}
.y7f_c00066{bottom:562.440000pt;}
.y7c_c00066{bottom:573.693333pt;}
.y7d_c00066{bottom:574.440000pt;}
.y7e_c00066{bottom:576.560000pt;}
.y7b_c00066{bottom:577.693333pt;}
.y7a_c00066{bottom:579.400000pt;}
.y77_c00066{bottom:591.773333pt;}
.y78_c00066{bottom:593.106667pt;}
.y75_c00066{bottom:594.266667pt;}
.y76_c00066{bottom:595.026667pt;}
.y79_c00066{bottom:595.226667pt;}
.y74_c00066{bottom:596.733333pt;}
.y72_c00066{bottom:609.693333pt;}
.y71_c00066{bottom:610.440000pt;}
.y6e_c00066{bottom:610.826667pt;}
.y6f_c00066{bottom:612.360000pt;}
.y70_c00066{bottom:612.560000pt;}
.y73_c00066{bottom:613.306667pt;}
.y6a_c00066{bottom:627.026667pt;}
.y6b_c00066{bottom:627.773333pt;}
.y6d_c00066{bottom:629.106667pt;}
.y69_c00066{bottom:629.693333pt;}
.y6c_c00066{bottom:630.640000pt;}
.y68_c00066{bottom:631.773333pt;}
.y65_c00066{bottom:645.106667pt;}
.y67_c00066{bottom:647.026667pt;}
.y66_c00066{bottom:647.973333pt;}
.y63_c00066{bottom:648.933333pt;}
.y64_c00066{bottom:649.693333pt;}
.y61_c00066{bottom:661.693333pt;}
.y62_c00066{bottom:662.440000pt;}
.y5f_c00066{bottom:663.400000pt;}
.y5e_c00066{bottom:664.360000pt;}
.y60_c00066{bottom:664.560000pt;}
.y5c_c00066{bottom:665.306667pt;}
.y5d_c00066{bottom:665.693333pt;}
.y58_c00066{bottom:679.026667pt;}
.y5a_c00066{bottom:681.106667pt;}
.y57_c00066{bottom:681.493333pt;}
.y5b_c00066{bottom:681.893333pt;}
.y59_c00066{bottom:683.026667pt;}
.y56_c00066{bottom:697.106667pt;}
.y55_c00066{bottom:698.440000pt;}
.y54_c00066{bottom:700.360000pt;}
.y53_c00066{bottom:702.066667pt;}
.y52_c00066{bottom:713.693333pt;}
.y50_c00066{bottom:715.773333pt;}
.y4d_c00066{bottom:716.160000pt;}
.y51_c00066{bottom:717.306667pt;}
.y4f_c00066{bottom:717.693333pt;}
.y4e_c00066{bottom:717.706667pt;}
.y4b_c00066{bottom:734.066667pt;}
.y4a_c00066{bottom:734.826667pt;}
.y4c_c00066{bottom:735.026667pt;}
.y47_c00066{bottom:749.106667pt;}
.y44_c00066{bottom:750.440000pt;}
.y48_c00066{bottom:751.226667pt;}
.y49_c00066{bottom:751.400000pt;}
.y45_c00066{bottom:752.360000pt;}
.y46_c00066{bottom:753.306667pt;}
.y40_c00066{bottom:767.773333pt;}
.y42_c00066{bottom:768.560000pt;}
.y43_c00066{bottom:768.733333pt;}
.y3f_c00066{bottom:769.693333pt;}
.y3e_c00066{bottom:770.440000pt;}
.y41_c00066{bottom:770.640000pt;}
.y3b_c00066{bottom:785.106667pt;}
.y3c_c00066{bottom:785.893333pt;}
.y3d_c00066{bottom:786.640000pt;}
.y39_c00066{bottom:786.826667pt;}
.y3a_c00066{bottom:787.026667pt;}
.y35_c00066{bottom:801.693333pt;}
.y38_c00066{bottom:802.440000pt;}
.y37_c00066{bottom:804.360000pt;}
.y36_c00066{bottom:804.560000pt;}
.y34_c00066{bottom:805.306667pt;}
.y30_c00066{bottom:819.026667pt;}
.y2d_c00066{bottom:819.773333pt;}
.y32_c00066{bottom:819.973333pt;}
.y2f_c00066{bottom:820.160000pt;}
.y2e_c00066{bottom:821.106667pt;}
.y33_c00066{bottom:821.693333pt;}
.y31_c00066{bottom:821.893333pt;}
.y2c_c00066{bottom:823.026667pt;}
.y2b_c00066{bottom:823.600000pt;}
.y27_c00066{bottom:837.106667pt;}
.y28_c00066{bottom:838.440000pt;}
.y25_c00066{bottom:838.826667pt;}
.y2a_c00066{bottom:839.026667pt;}
.y26_c00066{bottom:839.226667pt;}
.y29_c00066{bottom:840.360000pt;}
.y24_c00066{bottom:854.440000pt;}
.y20_c00066{bottom:855.773333pt;}
.y21_c00066{bottom:856.360000pt;}
.y23_c00066{bottom:856.560000pt;}
.y1f_c00066{bottom:857.106667pt;}
.y22_c00066{bottom:857.693333pt;}
.y1b_c00066{bottom:873.106667pt;}
.y1d_c00066{bottom:873.893333pt;}
.y1e_c00066{bottom:874.640000pt;}
.y1c_c00066{bottom:875.026667pt;}
.y1a_c00066{bottom:876.733333pt;}
.y16_c00066{bottom:890.440000pt;}
.y18_c00066{bottom:891.226667pt;}
.y19_c00066{bottom:891.973333pt;}
.y17_c00066{bottom:892.360000pt;}
.y15_c00066{bottom:892.733333pt;}
.y13_c00066{bottom:907.773333pt;}
.y12_c00066{bottom:908.560000pt;}
.y14_c00066{bottom:908.733333pt;}
.y10_c00066{bottom:909.693333pt;}
.yf_c00066{bottom:910.066667pt;}
.y11_c00066{bottom:910.640000pt;}
.yc_c00066{bottom:924.733333pt;}
.yd_c00066{bottom:925.106667pt;}
.ye_c00066{bottom:925.706667pt;}
.yb_c00066{bottom:927.026667pt;}
.ya_c00066{bottom:928.360000pt;}
.y7_c00066{bottom:941.693333pt;}
.y9_c00066{bottom:942.440000pt;}
.y3_c00066{bottom:942.826667pt;}
.y5_c00066{bottom:943.973333pt;}
.y6_c00066{bottom:944.360000pt;}
.y8_c00066{bottom:944.560000pt;}
.y4_c00066{bottom:945.306667pt;}
.y2_c00066{bottom:976.360000pt;}
.y1_c00066{bottom:978.266667pt;}
.h8_c00066{height:3.739141pt;}
.h5_c00066{height:20.466875pt;}
.h1_c00066{height:22.303646pt;}
.h4_c00066{height:27.879557pt;}
.h2_c00066{height:31.618698pt;}
.h7_c00066{height:35.357839pt;}
.ha_c00066{height:36.952031pt;}
.h6_c00066{height:39.031380pt;}
.h3_c00066{height:42.770521pt;}
.h9_c00066{height:46.509661pt;}
.h0_c00066{height:1186.666667pt;}
.w0_c00066{width:782.666667pt;}
.x0_c00066{left:0.000000pt;}
.x3_c00066{left:135.626667pt;}
.x3b_c00066{left:136.960000pt;}
.x78_c00066{left:138.466667pt;}
.xf6_c00066{left:144.373333pt;}
.x10c_c00066{left:148.000000pt;}
.x83_c00066{left:150.666667pt;}
.xa0_c00066{left:152.373333pt;}
.xc2_c00066{left:153.333333pt;}
.x10d_c00066{left:156.373333pt;}
.xd7_c00066{left:160.960000pt;}
.x50_c00066{left:162.666667pt;}
.x3c_c00066{left:164.000000pt;}
.x10e_c00066{left:165.333333pt;}
.x10_c00066{left:167.040000pt;}
.x31_c00066{left:169.333333pt;}
.xb2_c00066{left:170.666667pt;}
.x97_c00066{left:172.000000pt;}
.x79_c00066{left:173.333333pt;}
.xa1_c00066{left:174.666667pt;}
.xe2_c00066{left:176.373333pt;}
.x4_c00066{left:177.333333pt;}
.x47_c00066{left:179.040000pt;}
.x1c_c00066{left:182.666667pt;}
.x103_c00066{left:184.373333pt;}
.x63_c00066{left:185.333333pt;}
.x98_c00066{left:187.040000pt;}
.xfc_c00066{left:189.706667pt;}
.x70_c00066{left:190.666667pt;}
.x11_c00066{left:192.960000pt;}
.xee_c00066{left:194.666667pt;}
.xf7_c00066{left:196.000000pt;}
.xa8_c00066{left:197.333333pt;}
.xb9_c00066{left:198.293333pt;}
.xc3_c00066{left:200.000000pt;}
.x5_c00066{left:201.333333pt;}
.x10f_c00066{left:204.000000pt;}
.x7a_c00066{left:204.960000pt;}
.xad_c00066{left:206.666667pt;}
.xf3_c00066{left:207.626667pt;}
.x3d_c00066{left:208.960000pt;}
.x99_c00066{left:210.293333pt;}
.xfd_c00066{left:216.000000pt;}
.x26_c00066{left:218.293333pt;}
.xf8_c00066{left:220.373333pt;}
.x7b_c00066{left:221.333333pt;}
.x51_c00066{left:223.426667pt;}
.xf4_c00066{left:224.373333pt;}
.xa9_c00066{left:227.040000pt;}
.x84_c00066{left:228.000000pt;}
.xd3_c00066{left:228.960000pt;}
.x109_c00066{left:231.040000pt;}
.x32_c00066{left:232.000000pt;}
.xcb_c00066{left:232.960000pt;}
.x118_c00066{left:234.666667pt;}
.x107_c00066{left:236.000000pt;}
.x3e_c00066{left:237.333333pt;}
.xa2_c00066{left:238.666667pt;}
.xe3_c00066{left:240.000000pt;}
.x6_c00066{left:240.960000pt;}
.xba_c00066{left:242.293333pt;}
.xd8_c00066{left:243.626667pt;}
.x27_c00066{left:246.666667pt;}
.xae_c00066{left:248.373333pt;}
.x33_c00066{left:249.333333pt;}
.x64_c00066{left:250.293333pt;}
.x1d_c00066{left:252.000000pt;}
.xb3_c00066{left:253.333333pt;}
.x3f_c00066{left:254.666667pt;}
.x80_c00066{left:255.626667pt;}
.x71_c00066{left:256.960000pt;}
.xc7_c00066{left:259.040000pt;}
.xd9_c00066{left:260.373333pt;}
.x1e_c00066{left:261.333333pt;}
.xaa_c00066{left:263.040000pt;}
.x12_c00066{left:264.000000pt;}
.xdc_c00066{left:264.960000pt;}
.x8b_c00066{left:266.666667pt;}
.x7c_c00066{left:268.000000pt;}
.x7_c00066{left:269.333333pt;}
.xa3_c00066{left:270.293333pt;}
.xcc_c00066{left:272.000000pt;}
.x119_c00066{left:273.333333pt;}
.x52_c00066{left:275.626667pt;}
.x10a_c00066{left:276.960000pt;}
.xe5_c00066{left:278.666667pt;}
.xaf_c00066{left:280.000000pt;}
.x85_c00066{left:281.333333pt;}
.x34_c00066{left:282.666667pt;}
.x94_c00066{left:284.000000pt;}
.x8_c00066{left:285.333333pt;}
.x40_c00066{left:288.000000pt;}
.x72_c00066{left:290.666667pt;}
.x8c_c00066{left:292.000000pt;}
.x1f_c00066{left:294.293333pt;}
.xb4_c00066{left:296.000000pt;}
.xbb_c00066{left:297.706667pt;}
.xef_c00066{left:303.040000pt;}
.x35_c00066{left:305.706667pt;}
.xfe_c00066{left:306.666667pt;}
.x28_c00066{left:308.000000pt;}
.x48_c00066{left:311.626667pt;}
.x11a_c00066{left:313.333333pt;}
.x13_c00066{left:314.666667pt;}
.x41_c00066{left:315.626667pt;}
.x53_c00066{left:316.960000pt;}
.xda_c00066{left:319.040000pt;}
.x5d_c00066{left:320.000000pt;}
.x7d_c00066{left:322.666667pt;}
.xb0_c00066{left:324.373333pt;}
.x73_c00066{left:326.666667pt;}
.xf0_c00066{left:327.626667pt;}
.x65_c00066{left:329.133333pt;}
.xa4_c00066{left:330.293333pt;}
.x14_c00066{left:332.373333pt;}
.xbc_c00066{left:333.333333pt;}
.x86_c00066{left:334.666667pt;}
.x7e_c00066{left:336.000000pt;}
.x49_c00066{left:337.333333pt;}
.xcd_c00066{left:338.666667pt;}
.x9_c00066{left:340.000000pt;}
.xdd_c00066{left:342.666667pt;}
.xe6_c00066{left:343.626667pt;}
.xf9_c00066{left:345.333333pt;}
.x54_c00066{left:348.000000pt;}
.x8d_c00066{left:349.333333pt;}
.x1_c00066{left:350.666667pt;}
.x110_c00066{left:352.000000pt;}
.x114_c00066{left:352.960000pt;}
.x9a_c00066{left:354.666667pt;}
.x20_c00066{left:356.000000pt;}
.x5e_c00066{left:356.960000pt;}
.x15_c00066{left:358.666667pt;}
.x66_c00066{left:360.373333pt;}
.xbd_c00066{left:363.040000pt;}
.x81_c00066{left:364.373333pt;}
.xf1_c00066{left:365.333333pt;}
.x21_c00066{left:366.666667pt;}
.x29_c00066{left:368.960000pt;}
.xc8_c00066{left:370.666667pt;}
.xf5_c00066{left:373.706667pt;}
.xa_c00066{left:374.666667pt;}
.x9b_c00066{left:377.706667pt;}
.x104_c00066{left:380.000000pt;}
.x115_c00066{left:381.333333pt;}
.x87_c00066{left:383.040000pt;}
.x95_c00066{left:387.040000pt;}
.x2a_c00066{left:388.000000pt;}
.xa5_c00066{left:389.333333pt;}
.x4a_c00066{left:390.666667pt;}
.x67_c00066{left:392.373333pt;}
.x105_c00066{left:393.333333pt;}
.x42_c00066{left:395.040000pt;}
.xbe_c00066{left:396.000000pt;}
.xd4_c00066{left:396.960000pt;}
.x82_c00066{left:397.906667pt;}
.xeb_c00066{left:400.373333pt;}
.x5f_c00066{left:404.000000pt;}
.x22_c00066{left:404.960000pt;}
.xb_c00066{left:407.040000pt;}
.x55_c00066{left:408.000000pt;}
.xde_c00066{left:411.040000pt;}
.x111_c00066{left:413.706667pt;}
.xc4_c00066{left:415.040000pt;}
.x68_c00066{left:416.373333pt;}
.xb1_c00066{left:417.706667pt;}
.x43_c00066{left:420.000000pt;}
.x10b_c00066{left:420.960000pt;}
.x36_c00066{left:423.040000pt;}
.xce_c00066{left:424.373333pt;}
.xab_c00066{left:425.333333pt;}
.xfa_c00066{left:426.666667pt;}
.x74_c00066{left:427.800000pt;}
.x2b_c00066{left:430.666667pt;}
.x56_c00066{left:431.626667pt;}
.xdf_c00066{left:433.333333pt;}
.x16_c00066{left:439.626667pt;}
.xcf_c00066{left:441.333333pt;}
.x4b_c00066{left:442.293333pt;}
.x2c_c00066{left:444.000000pt;}
.xe7_c00066{left:444.960000pt;}
.x8e_c00066{left:447.626667pt;}
.xff_c00066{left:449.333333pt;}
.x57_c00066{left:451.040000pt;}
.xb5_c00066{left:452.000000pt;}
.x37_c00066{left:452.960000pt;}
.x60_c00066{left:454.666667pt;}
.xf2_c00066{left:456.000000pt;}
.x69_c00066{left:457.333333pt;}
.xd0_c00066{left:458.293333pt;}
.x4c_c00066{left:460.000000pt;}
.xe8_c00066{left:463.040000pt;}
.x75_c00066{left:464.000000pt;}
.x23_c00066{left:466.666667pt;}
.x9c_c00066{left:468.373333pt;}
.x17_c00066{left:469.333333pt;}
.xdb_c00066{left:470.666667pt;}
.x88_c00066{left:471.626667pt;}
.xd5_c00066{left:473.706667pt;}
.x6a_c00066{left:474.666667pt;}
.x44_c00066{left:476.373333pt;}
.xec_c00066{left:477.706667pt;}
.x8f_c00066{left:478.666667pt;}
.x2d_c00066{left:480.960000pt;}
.x61_c00066{left:482.666667pt;}
.xc_c00066{left:484.000000pt;}
.xe9_c00066{left:486.666667pt;}
.x58_c00066{left:488.960000pt;}
.xfb_c00066{left:492.000000pt;}
.x6b_c00066{left:492.960000pt;}
.x100_c00066{left:496.000000pt;}
.xe0_c00066{left:497.333333pt;}
.x112_c00066{left:498.666667pt;}
.xbf_c00066{left:499.626667pt;}
.x9d_c00066{left:501.333333pt;}
.x7f_c00066{left:504.000000pt;}
.xd1_c00066{left:505.333333pt;}
.x11b_c00066{left:507.040000pt;}
.x76_c00066{left:508.373333pt;}
.x45_c00066{left:511.040000pt;}
.xb6_c00066{left:513.706667pt;}
.xc9_c00066{left:514.666667pt;}
.xa6_c00066{left:516.000000pt;}
.xd_c00066{left:516.960000pt;}
.x59_c00066{left:518.666667pt;}
.x2e_c00066{left:520.373333pt;}
.x116_c00066{left:521.706667pt;}
.x106_c00066{left:522.666667pt;}
.x24_c00066{left:525.333333pt;}
.x4d_c00066{left:527.040000pt;}
.x18_c00066{left:528.000000pt;}
.xc0_c00066{left:529.333333pt;}
.x38_c00066{left:530.666667pt;}
.x90_c00066{left:532.000000pt;}
.x46_c00066{left:536.000000pt;}
.x6c_c00066{left:539.626667pt;}
.x101_c00066{left:540.960000pt;}
.x9e_c00066{left:542.666667pt;}
.xd2_c00066{left:544.000000pt;}
.xed_c00066{left:544.960000pt;}
.xd6_c00066{left:548.373333pt;}
.xea_c00066{left:549.333333pt;}
.x89_c00066{left:552.000000pt;}
.x19_c00066{left:552.960000pt;}
.x4e_c00066{left:556.373333pt;}
.xca_c00066{left:558.666667pt;}
.xe_c00066{left:561.133333pt;}
.xb7_c00066{left:562.666667pt;}
.xe4_c00066{left:564.373333pt;}
.x6d_c00066{left:565.333333pt;}
.x91_c00066{left:568.373333pt;}
.x2f_c00066{left:572.000000pt;}
.x1a_c00066{left:573.706667pt;}
.xa7_c00066{left:577.333333pt;}
.xc1_c00066{left:578.666667pt;}
.x5a_c00066{left:580.000000pt;}
.xac_c00066{left:581.333333pt;}
.x117_c00066{left:583.040000pt;}
.x77_c00066{left:584.000000pt;}
.x39_c00066{left:586.293333pt;}
.x30_c00066{left:588.000000pt;}
.xf_c00066{left:589.333333pt;}
.x6e_c00066{left:590.666667pt;}
.x4f_c00066{left:592.000000pt;}
.x102_c00066{left:593.706667pt;}
.x9f_c00066{left:596.000000pt;}
.xc5_c00066{left:597.706667pt;}
.x92_c00066{left:598.666667pt;}
.x25_c00066{left:600.760000pt;}
.xe1_c00066{left:603.040000pt;}
.x5b_c00066{left:604.000000pt;}
.xb8_c00066{left:605.333333pt;}
.x3a_c00066{left:606.293333pt;}
.x96_c00066{left:614.666667pt;}
.x8a_c00066{left:616.960000pt;}
.x113_c00066{left:618.666667pt;}
.x6f_c00066{left:620.373333pt;}
.xc6_c00066{left:621.333333pt;}
.x5c_c00066{left:625.333333pt;}
.x1b_c00066{left:628.373333pt;}
.x2_c00066{left:632.960000pt;}
.x93_c00066{left:640.000000pt;}
.x108_c00066{left:640.960000pt;}
.x62_c00066{left:642.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_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_0bf6c11d7575052bbf1269fd.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf1_c00067{transform:matrix(0.348926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348926,0.000000,0.000000,0.250000,0,0);}
.m34_c00067{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_c00067{transform:matrix(0.367227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367227,0.000000,0.000000,0.250000,0,0);}
.me8_c00067{transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);}
.mad_c00067{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m4b_c00067{transform:matrix(0.370588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370588,0.000000,0.000000,0.250000,0,0);}
.mef_c00067{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m80_c00067{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mf0_c00067{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mf7_c00067{transform:matrix(0.376150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376150,0.000000,0.000000,0.250000,0,0);}
.m99_c00067{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mc7_c00067{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m9f_c00067{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m50_c00067{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m7f_c00067{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m20_c00067{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.mf6_c00067{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m22_c00067{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m45_c00067{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.md_c00067{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.mba_c00067{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.mce_c00067{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m0_c00067{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m5c_c00067{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m2a_c00067{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m5d_c00067{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m38_c00067{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m69_c00067{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m49_c00067{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m75_c00067{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m79_c00067{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m91_c00067{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m5_c00067{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m68_c00067{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m18_c00067{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m17_c00067{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m90_c00067{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m76_c00067{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m25_c00067{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.mcb_c00067{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.md8_c00067{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.mf3_c00067{transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);}
.m29_c00067{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.ma2_c00067{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m5a_c00067{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.mea_c00067{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m4e_c00067{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mf9_c00067{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m39_c00067{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.meb_c00067{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m9c_c00067{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m6b_c00067{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m92_c00067{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m1c_c00067{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m59_c00067{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m5e_c00067{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.ma0_c00067{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.mb_c00067{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.me1_c00067{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.m73_c00067{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mb4_c00067{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m2b_c00067{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.mf4_c00067{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.me0_c00067{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m70_c00067{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m12_c00067{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.ma1_c00067{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m7c_c00067{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.me3_c00067{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m36_c00067{transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);}
.m32_c00067{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mac_c00067{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m3a_c00067{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m78_c00067{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.m4_c00067{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.mc4_c00067{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.mb1_c00067{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.ma_c00067{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m6e_c00067{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);}
.mda_c00067{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m66_c00067{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m4a_c00067{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m48_c00067{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m26_c00067{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m54_c00067{transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);}
.m61_c00067{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m43_c00067{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.maf_c00067{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m94_c00067{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m13_c00067{transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);}
.m6c_c00067{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m1d_c00067{transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);}
.m7b_c00067{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m2e_c00067{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m93_c00067{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m6a_c00067{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m4c_c00067{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.mdf_c00067{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.m8a_c00067{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m9e_c00067{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.mb6_c00067{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.m16_c00067{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.me4_c00067{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m8b_c00067{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m6d_c00067{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.mf2_c00067{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mdb_c00067{transform:matrix(0.489796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489796,0.000000,0.000000,0.250000,0,0);}
.m60_c00067{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m7_c00067{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.ma4_c00067{transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);}
.mcf_c00067{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m8_c00067{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_c00067{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.md3_c00067{transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);}
.md4_c00067{transform:matrix(0.503711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503711,0.000000,0.000000,0.250000,0,0);}
.mbf_c00067{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m33_c00067{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m3e_c00067{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.md2_c00067{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m31_c00067{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.md5_c00067{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m55_c00067{transform:matrix(0.509664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509664,0.000000,0.000000,0.250000,0,0);}
.me7_c00067{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m77_c00067{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.md1_c00067{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mf_c00067{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.mb8_c00067{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m3d_c00067{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m88_c00067{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m56_c00067{transform:matrix(0.517647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517647,0.000000,0.000000,0.250000,0,0);}
.m37_c00067{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mcc_c00067{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m63_c00067{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.me6_c00067{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.mf8_c00067{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.mb9_c00067{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m87_c00067{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mbe_c00067{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mc9_c00067{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m7d_c00067{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m23_c00067{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m2d_c00067{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.me_c00067{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m8d_c00067{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m7e_c00067{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m85_c00067{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mbc_c00067{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.mde_c00067{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m9_c00067{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mbd_c00067{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mab_c00067{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m2f_c00067{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m81_c00067{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mbb_c00067{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m3c_c00067{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m7a_c00067{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.md9_c00067{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mb5_c00067{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m1a_c00067{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m5f_c00067{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m82_c00067{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mc5_c00067{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m58_c00067{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m71_c00067{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m46_c00067{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m57_c00067{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mca_c00067{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.me2_c00067{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.mc8_c00067{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mdd_c00067{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m1b_c00067{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.md6_c00067{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m96_c00067{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mc0_c00067{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m4f_c00067{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mec_c00067{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m98_c00067{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.md7_c00067{transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);}
.m3f_c00067{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mee_c00067{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m52_c00067{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mf5_c00067{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m40_c00067{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m51_c00067{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.med_c00067{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m1f_c00067{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m27_c00067{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m11_c00067{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.me9_c00067{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m86_c00067{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m30_c00067{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mb2_c00067{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m6_c00067{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m19_c00067{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m9d_c00067{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mae_c00067{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m83_c00067{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.mb0_c00067{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m53_c00067{transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);}
.m6f_c00067{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m8e_c00067{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m21_c00067{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.md0_c00067{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m2c_c00067{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m89_c00067{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.ma9_c00067{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m14_c00067{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_c00067{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.me5_c00067{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.mb7_c00067{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m10_c00067{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m64_c00067{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m41_c00067{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m42_c00067{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m47_c00067{transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);}
.m1_c00067{transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);}
.ma3_c00067{transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);}
.m28_c00067{transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);}
.m4d_c00067{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m67_c00067{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m2_c00067{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m65_c00067{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);}
.m97_c00067{transform:matrix(0.675481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675481,0.000000,0.000000,0.250000,0,0);}
.mb3_c00067{transform:matrix(0.692647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692647,0.000000,0.000000,0.250000,0,0);}
.m5b_c00067{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mc3_c00067{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.mcd_c00067{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m74_c00067{transform:matrix(0.711765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.711765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.711765,0.000000,0.000000,0.250000,0,0);}
.m9b_c00067{transform:matrix(0.714706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.714706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.714706,0.000000,0.000000,0.250000,0,0);}
.m44_c00067{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m8f_c00067{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.maa_c00067{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m15_c00067{transform:matrix(0.736471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736471,0.000000,0.000000,0.250000,0,0);}
.m3b_c00067{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m24_c00067{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mc_c00067{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mc1_c00067{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mdc_c00067{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.mc2_c00067{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.mc6_c00067{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.ma5_c00067{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.m8c_c00067{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m3_c00067{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m84_c00067{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m72_c00067{transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);}
.m62_c00067{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.ma7_c00067{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.ma6_c00067{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.m1e_c00067{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.ma8_c00067{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-6.349757px;}
.ws1_c00067{word-spacing:-0.389272px;}
.ws2_c00067{word-spacing:0.000000px;}
.fc0_c00067{color:transparent;}
.fs7_c00067{font-size:3.420000px;}
.fs6_c00067{font-size:11.880000px;}
.fs3_c00067{font-size:18.720000px;}
.fs1_c00067{font-size:20.400000px;}
.fs2_c00067{font-size:25.500000px;}
.fs5_c00067{font-size:28.920000px;}
.fs0_c00067{font-size:32.340000px;}
.fs4_c00067{font-size:35.700000px;}
.fs8_c00067{font-size:39.120000px;}
.y0_c00067{bottom:0.000000px;}
.ye5_c00067{bottom:250.245000px;}
.ye6_c00067{bottom:251.745000px;}
.ye4_c00067{bottom:252.405000px;}
.ydf_c00067{bottom:269.745000px;}
.ye3_c00067{bottom:270.180000px;}
.ye2_c00067{bottom:271.245000px;}
.ye0_c00067{bottom:271.905000px;}
.ye1_c00067{bottom:273.405000px;}
.yd8_c00067{bottom:289.245000px;}
.yda_c00067{bottom:289.680000px;}
.ydb_c00067{bottom:289.905000px;}
.yd9_c00067{bottom:290.745000px;}
.yde_c00067{bottom:291.825000px;}
.ydd_c00067{bottom:292.905000px;}
.ydc_c00067{bottom:293.130000px;}
.yd5_c00067{bottom:310.245000px;}
.yd6_c00067{bottom:311.130000px;}
.yd7_c00067{bottom:312.405000px;}
.yd4_c00067{bottom:329.745000px;}
.yd0_c00067{bottom:331.905000px;}
.yd2_c00067{bottom:332.130000px;}
.yd3_c00067{bottom:332.970000px;}
.yd1_c00067{bottom:333.405000px;}
.ycc_c00067{bottom:348.405000px;}
.yce_c00067{bottom:349.245000px;}
.ycd_c00067{bottom:349.680000px;}
.yca_c00067{bottom:351.405000px;}
.ycf_c00067{bottom:351.630000px;}
.ycb_c00067{bottom:352.905000px;}
.yc9_c00067{bottom:368.745000px;}
.yc3_c00067{bottom:369.825000px;}
.yc6_c00067{bottom:370.245000px;}
.yc2_c00067{bottom:370.905000px;}
.yc8_c00067{bottom:371.130000px;}
.yc4_c00067{bottom:371.325000px;}
.yc5_c00067{bottom:371.970000px;}
.yc7_c00067{bottom:372.405000px;}
.yc0_c00067{bottom:389.325000px;}
.ybd_c00067{bottom:389.745000px;}
.ybb_c00067{bottom:390.405000px;}
.yc1_c00067{bottom:391.470000px;}
.ybc_c00067{bottom:391.905000px;}
.ybf_c00067{bottom:392.130000px;}
.ybe_c00067{bottom:393.405000px;}
.yba_c00067{bottom:408.405000px;}
.yb7_c00067{bottom:409.245000px;}
.yb9_c00067{bottom:410.325000px;}
.yb6_c00067{bottom:411.405000px;}
.yb8_c00067{bottom:412.905000px;}
.yb5_c00067{bottom:428.745000px;}
.yaf_c00067{bottom:429.630000px;}
.yb1_c00067{bottom:429.825000px;}
.yb0_c00067{bottom:430.905000px;}
.yb2_c00067{bottom:431.130000px;}
.yb3_c00067{bottom:431.970000px;}
.yb4_c00067{bottom:432.405000px;}
.yad_c00067{bottom:447.405000px;}
.ya8_c00067{bottom:448.245000px;}
.yab_c00067{bottom:448.470000px;}
.yac_c00067{bottom:449.745000px;}
.ya7_c00067{bottom:450.405000px;}
.yae_c00067{bottom:450.630000px;}
.yaa_c00067{bottom:450.825000px;}
.ya9_c00067{bottom:451.905000px;}
.ya6_c00067{bottom:469.245000px;}
.ya3_c00067{bottom:469.905000px;}
.ya4_c00067{bottom:470.970000px;}
.ya5_c00067{bottom:471.405000px;}
.ya2_c00067{bottom:488.745000px;}
.y9f_c00067{bottom:489.405000px;}
.ya0_c00067{bottom:489.630000px;}
.ya1_c00067{bottom:490.905000px;}
.y9b_c00067{bottom:508.245000px;}
.y9a_c00067{bottom:509.130000px;}
.y9e_c00067{bottom:509.325000px;}
.y99_c00067{bottom:510.405000px;}
.y9c_c00067{bottom:510.630000px;}
.y9d_c00067{bottom:511.470000px;}
.y98_c00067{bottom:526.905000px;}
.y96_c00067{bottom:527.745000px;}
.y95_c00067{bottom:529.905000px;}
.y97_c00067{bottom:530.970000px;}
.y93_c00067{bottom:546.405000px;}
.y90_c00067{bottom:547.245000px;}
.y8f_c00067{bottom:549.405000px;}
.y94_c00067{bottom:549.630000px;}
.y91_c00067{bottom:550.470000px;}
.y92_c00067{bottom:550.905000px;}
.y8b_c00067{bottom:565.905000px;}
.y8a_c00067{bottom:566.745000px;}
.y8e_c00067{bottom:568.050000px;}
.y89_c00067{bottom:568.905000px;}
.y8c_c00067{bottom:569.130000px;}
.y8d_c00067{bottom:570.405000px;}
.y82_c00067{bottom:586.245000px;}
.y86_c00067{bottom:587.745000px;}
.y83_c00067{bottom:588.405000px;}
.y85_c00067{bottom:588.630000px;}
.y87_c00067{bottom:588.825000px;}
.y88_c00067{bottom:589.470000px;}
.y84_c00067{bottom:589.905000px;}
.y81_c00067{bottom:606.825000px;}
.y7e_c00067{bottom:607.245000px;}
.y7f_c00067{bottom:608.130000px;}
.y7c_c00067{bottom:609.405000px;}
.y7d_c00067{bottom:609.420000px;}
.y80_c00067{bottom:610.470000px;}
.y79_c00067{bottom:623.775000px;}
.y73_c00067{bottom:624.405000px;}
.y74_c00067{bottom:625.245000px;}
.y76_c00067{bottom:625.470000px;}
.y7a_c00067{bottom:625.905000px;}
.y72_c00067{bottom:626.325000px;}
.y75_c00067{bottom:627.405000px;}
.y77_c00067{bottom:627.630000px;}
.y7b_c00067{bottom:628.905000px;}
.y78_c00067{bottom:632.130000px;}
.y6d_c00067{bottom:643.905000px;}
.y71_c00067{bottom:645.405000px;}
.y70_c00067{bottom:646.245000px;}
.y6f_c00067{bottom:647.325000px;}
.y6e_c00067{bottom:648.405000px;}
.y6b_c00067{bottom:665.745000px;}
.y69_c00067{bottom:666.405000px;}
.y6c_c00067{bottom:667.050000px;}
.y68_c00067{bottom:667.470000px;}
.y6a_c00067{bottom:667.905000px;}
.y66_c00067{bottom:682.275000px;}
.y64_c00067{bottom:684.405000px;}
.y61_c00067{bottom:685.245000px;}
.y67_c00067{bottom:686.130000px;}
.y63_c00067{bottom:686.325000px;}
.y62_c00067{bottom:687.405000px;}
.y65_c00067{bottom:690.630000px;}
.y5e_c00067{bottom:704.745000px;}
.y60_c00067{bottom:705.630000px;}
.y5f_c00067{bottom:706.470000px;}
.y5d_c00067{bottom:706.905000px;}
.y5a_c00067{bottom:723.405000px;}
.y59_c00067{bottom:724.245000px;}
.y5b_c00067{bottom:725.325000px;}
.y58_c00067{bottom:726.405000px;}
.y5c_c00067{bottom:726.630000px;}
.y54_c00067{bottom:743.745000px;}
.y53_c00067{bottom:745.905000px;}
.y57_c00067{bottom:746.130000px;}
.y56_c00067{bottom:746.970000px;}
.y55_c00067{bottom:747.405000px;}
.y52_c00067{bottom:765.405000px;}
.y50_c00067{bottom:781.905000px;}
.y4f_c00067{bottom:782.745000px;}
.y4e_c00067{bottom:784.245000px;}
.y4d_c00067{bottom:784.905000px;}
.y51_c00067{bottom:786.405000px;}
.y4c_c00067{bottom:801.405000px;}
.y49_c00067{bottom:803.745000px;}
.y4a_c00067{bottom:805.050000px;}
.y4b_c00067{bottom:805.470000px;}
.y48_c00067{bottom:805.905000px;}
.y44_c00067{bottom:823.245000px;}
.y46_c00067{bottom:824.130000px;}
.y45_c00067{bottom:825.405000px;}
.y47_c00067{bottom:825.630000px;}
.y43_c00067{bottom:840.405000px;}
.y42_c00067{bottom:842.745000px;}
.y40_c00067{bottom:843.630000px;}
.y41_c00067{bottom:843.825000px;}
.y3f_c00067{bottom:844.905000px;}
.y37_c00067{bottom:861.405000px;}
.y38_c00067{bottom:862.245000px;}
.y39_c00067{bottom:863.130000px;}
.y3e_c00067{bottom:863.550000px;}
.y3c_c00067{bottom:863.745000px;}
.y3a_c00067{bottom:864.405000px;}
.y3b_c00067{bottom:864.630000px;}
.y3d_c00067{bottom:865.905000px;}
.y33_c00067{bottom:881.745000px;}
.y32_c00067{bottom:882.825000px;}
.y34_c00067{bottom:883.245000px;}
.y31_c00067{bottom:883.905000px;}
.y36_c00067{bottom:884.970000px;}
.y35_c00067{bottom:885.405000px;}
.y2f_c00067{bottom:900.405000px;}
.y2e_c00067{bottom:901.245000px;}
.y30_c00067{bottom:902.745000px;}
.y2d_c00067{bottom:904.905000px;}
.y2a_c00067{bottom:922.245000px;}
.y2c_c00067{bottom:923.970000px;}
.y2b_c00067{bottom:924.405000px;}
.y28_c00067{bottom:941.745000px;}
.y29_c00067{bottom:942.825000px;}
.y27_c00067{bottom:943.905000px;}
.y24_c00067{bottom:960.825000px;}
.y25_c00067{bottom:961.245000px;}
.y23_c00067{bottom:963.405000px;}
.y26_c00067{bottom:964.470000px;}
.y20_c00067{bottom:980.745000px;}
.y1d_c00067{bottom:981.630000px;}
.y1e_c00067{bottom:981.825000px;}
.y1f_c00067{bottom:982.905000px;}
.y22_c00067{bottom:983.130000px;}
.y21_c00067{bottom:984.405000px;}
.y18_c00067{bottom:997.905000px;}
.y19_c00067{bottom:1000.245000px;}
.y1c_c00067{bottom:1001.745000px;}
.y16_c00067{bottom:1001.970000px;}
.y17_c00067{bottom:1002.405000px;}
.y1a_c00067{bottom:1002.630000px;}
.y1b_c00067{bottom:1003.905000px;}
.y11_c00067{bottom:1019.745000px;}
.y15_c00067{bottom:1021.245000px;}
.y10_c00067{bottom:1021.905000px;}
.y12_c00067{bottom:1022.130000px;}
.y14_c00067{bottom:1022.970000px;}
.y13_c00067{bottom:1023.405000px;}
.ya_c00067{bottom:1039.245000px;}
.ye_c00067{bottom:1040.745000px;}
.yc_c00067{bottom:1041.405000px;}
.yf_c00067{bottom:1041.825000px;}
.yb_c00067{bottom:1042.470000px;}
.yd_c00067{bottom:1042.905000px;}
.y5_c00067{bottom:1058.745000px;}
.y4_c00067{bottom:1059.630000px;}
.y7_c00067{bottom:1059.825000px;}
.y3_c00067{bottom:1060.470000px;}
.y6_c00067{bottom:1060.905000px;}
.y8_c00067{bottom:1061.130000px;}
.y9_c00067{bottom:1061.970000px;}
.y1_c00067{bottom:1098.825000px;}
.y2_c00067{bottom:1099.050000px;}
.h8_c00067{height:4.206533px;}
.h7_c00067{height:14.612168px;}
.h4_c00067{height:23.025234px;}
.h2_c00067{height:25.091602px;}
.h3_c00067{height:31.364502px;}
.h6_c00067{height:35.571035px;}
.h1_c00067{height:39.777568px;}
.h5_c00067{height:43.910303px;}
.h9_c00067{height:48.116836px;}
.h0_c00067{height:1335.000000px;}
.w0_c00067{width:880.500000px;}
.x0_c00067{left:0.000000px;}
.xf8_c00067{left:150.000000px;}
.x1_c00067{left:151.500000px;}
.x3_c00067{left:153.000000px;}
.x13_c00067{left:154.080000px;}
.xf3_c00067{left:166.500000px;}
.x66_c00067{left:167.580000px;}
.x98_c00067{left:169.920000px;}
.x4_c00067{left:171.000000px;}
.xd5_c00067{left:172.920000px;}
.x2d_c00067{left:174.420000px;}
.x5f_c00067{left:177.000000px;}
.xfd_c00067{left:178.500000px;}
.xe1_c00067{left:181.500000px;}
.x84_c00067{left:183.000000px;}
.xec_c00067{left:186.000000px;}
.xe8_c00067{left:188.580000px;}
.x5_c00067{left:190.500000px;}
.x14_c00067{left:192.000000px;}
.x60_c00067{left:193.500000px;}
.xe2_c00067{left:195.420000px;}
.x7a_c00067{left:196.500000px;}
.xa8_c00067{left:198.420000px;}
.x10b_c00067{left:199.920000px;}
.x48_c00067{left:201.000000px;}
.x2e_c00067{left:202.500000px;}
.xf9_c00067{left:205.920000px;}
.x3d_c00067{left:207.420000px;}
.xd6_c00067{left:208.500000px;}
.x99_c00067{left:210.000000px;}
.xcf_c00067{left:211.920000px;}
.x15_c00067{left:213.420000px;}
.x70_c00067{left:219.000000px;}
.xb6_c00067{left:220.920000px;}
.x61_c00067{left:222.000000px;}
.x67_c00067{left:225.420000px;}
.x85_c00067{left:226.500000px;}
.xa1_c00067{left:232.080000px;}
.x54_c00067{left:234.000000px;}
.xc7_c00067{left:237.000000px;}
.x3e_c00067{left:238.920000px;}
.x102_c00067{left:240.420000px;}
.xe9_c00067{left:241.500000px;}
.x6_c00067{left:246.000000px;}
.x2f_c00067{left:248.580000px;}
.xb7_c00067{left:250.080000px;}
.x16_c00067{left:258.000000px;}
.xef_c00067{left:259.920000px;}
.x7b_c00067{left:262.500000px;}
.x3f_c00067{left:264.000000px;}
.x23_c00067{left:265.500000px;}
.xc0_c00067{left:267.420000px;}
.x103_c00067{left:268.500000px;}
.xf4_c00067{left:270.000000px;}
.x62_c00067{left:273.000000px;}
.xe3_c00067{left:274.500000px;}
.x71_c00067{left:276.000000px;}
.x10c_c00067{left:277.920000px;}
.x40_c00067{left:279.420000px;}
.x86_c00067{left:280.500000px;}
.xdc_c00067{left:282.420000px;}
.x30_c00067{left:283.500000px;}
.x9a_c00067{left:285.000000px;}
.x49_c00067{left:288.420000px;}
.x10d_c00067{left:289.920000px;}
.x17_c00067{left:291.000000px;}
.x72_c00067{left:292.500000px;}
.x68_c00067{left:294.000000px;}
.xd0_c00067{left:295.500000px;}
.x7c_c00067{left:297.420000px;}
.x87_c00067{left:298.500000px;}
.x7_c00067{left:300.420000px;}
.xa9_c00067{left:303.000000px;}
.xfe_c00067{left:306.420000px;}
.x24_c00067{left:307.500000px;}
.x73_c00067{left:309.000000px;}
.xaf_c00067{left:312.000000px;}
.xed_c00067{left:313.500000px;}
.xc1_c00067{left:314.580000px;}
.x31_c00067{left:316.920000px;}
.x4a_c00067{left:318.000000px;}
.x18_c00067{left:319.500000px;}
.xa2_c00067{left:321.000000px;}
.x55_c00067{left:325.920000px;}
.x8_c00067{left:328.080000px;}
.xf5_c00067{left:331.500000px;}
.xb8_c00067{left:333.420000px;}
.x4b_c00067{left:336.000000px;}
.x19_c00067{left:337.500000px;}
.xf0_c00067{left:340.500000px;}
.x32_c00067{left:341.580000px;}
.x25_c00067{left:345.420000px;}
.x63_c00067{left:348.000000px;}
.xdd_c00067{left:349.500000px;}
.x7d_c00067{left:352.080000px;}
.x88_c00067{left:354.420000px;}
.x9b_c00067{left:357.420000px;}
.xa6_c00067{left:358.500000px;}
.x74_c00067{left:360.000000px;}
.x9_c00067{left:362.580000px;}
.xf6_c00067{left:363.645000px;}
.x56_c00067{left:367.920000px;}
.xb9_c00067{left:372.000000px;}
.x26_c00067{left:373.920000px;}
.x41_c00067{left:375.420000px;}
.x69_c00067{left:377.580000px;}
.x7e_c00067{left:379.500000px;}
.xa_c00067{left:381.420000px;}
.xd1_c00067{left:382.500000px;}
.x4c_c00067{left:385.500000px;}
.x9c_c00067{left:387.000000px;}
.xb0_c00067{left:388.500000px;}
.x1a_c00067{left:390.420000px;}
.x33_c00067{left:391.500000px;}
.xe4_c00067{left:392.580000px;}
.x64_c00067{left:394.080000px;}
.x91_c00067{left:396.000000px;}
.x2_c00067{left:399.000000px;}
.x57_c00067{left:400.500000px;}
.xa7_c00067{left:401.580000px;}
.xaa_c00067{left:404.580000px;}
.xfa_c00067{left:406.500000px;}
.xb_c00067{left:408.420000px;}
.x107_c00067{left:411.000000px;}
.xe5_c00067{left:412.920000px;}
.x6a_c00067{left:414.000000px;}
.x58_c00067{left:415.920000px;}
.xcb_c00067{left:417.420000px;}
.xab_c00067{left:424.500000px;}
.x27_c00067{left:429.000000px;}
.xbd_c00067{left:430.500000px;}
.x34_c00067{left:431.580000px;}
.x42_c00067{left:434.580000px;}
.x65_c00067{left:436.500000px;}
.x1b_c00067{left:438.420000px;}
.xe6_c00067{left:440.580000px;}
.xba_c00067{left:442.920000px;}
.x75_c00067{left:444.000000px;}
.xac_c00067{left:445.080000px;}
.x4d_c00067{left:447.000000px;}
.xc_c00067{left:448.920000px;}
.xb1_c00067{left:451.500000px;}
.xc2_c00067{left:454.920000px;}
.x92_c00067{left:456.420000px;}
.xd7_c00067{left:457.500000px;}
.x8c_c00067{left:459.000000px;}
.xd9_c00067{left:462.000000px;}
.x28_c00067{left:466.080000px;}
.x4e_c00067{left:468.000000px;}
.x9d_c00067{left:469.080000px;}
.x104_c00067{left:472.500000px;}
.x1c_c00067{left:475.500000px;}
.xc3_c00067{left:480.000000px;}
.xf7_c00067{left:481.080000px;}
.xd_c00067{left:483.000000px;}
.x6b_c00067{left:484.500000px;}
.x29_c00067{left:486.000000px;}
.x35_c00067{left:490.500000px;}
.xb2_c00067{left:492.000000px;}
.x108_c00067{left:493.920000px;}
.xc4_c00067{left:496.080000px;}
.x76_c00067{left:497.580000px;}
.x89_c00067{left:499.500000px;}
.xbb_c00067{left:500.580000px;}
.x7f_c00067{left:502.500000px;}
.xc8_c00067{left:504.000000px;}
.xff_c00067{left:507.000000px;}
.x105_c00067{left:508.500000px;}
.xe_c00067{left:510.000000px;}
.xe7_c00067{left:511.920000px;}
.x1d_c00067{left:514.080000px;}
.xcc_c00067{left:516.420000px;}
.xbe_c00067{left:517.500000px;}
.x4f_c00067{left:519.420000px;}
.x59_c00067{left:520.920000px;}
.xad_c00067{left:522.000000px;}
.xd8_c00067{left:523.500000px;}
.xd2_c00067{left:526.920000px;}
.x36_c00067{left:528.000000px;}
.x77_c00067{left:529.500000px;}
.x6c_c00067{left:532.500000px;}
.xa3_c00067{left:534.000000px;}
.x109_c00067{left:535.500000px;}
.xbc_c00067{left:536.775000px;}
.x43_c00067{left:538.500000px;}
.xc5_c00067{left:540.000000px;}
.xde_c00067{left:541.500000px;}
.x9e_c00067{left:543.000000px;}
.xb3_c00067{left:544.920000px;}
.x1e_c00067{left:546.000000px;}
.xae_c00067{left:549.420000px;}
.x93_c00067{left:550.500000px;}
.xf1_c00067{left:553.500000px;}
.xd3_c00067{left:555.420000px;}
.x5a_c00067{left:556.920000px;}
.x100_c00067{left:558.000000px;}
.xda_c00067{left:561.000000px;}
.x8d_c00067{left:562.500000px;}
.x37_c00067{left:564.420000px;}
.x2a_c00067{left:565.500000px;}
.xdf_c00067{left:569.580000px;}
.x80_c00067{left:571.500000px;}
.xee_c00067{left:573.420000px;}
.x44_c00067{left:574.500000px;}
.x9f_c00067{left:575.580000px;}
.x50_c00067{left:580.080000px;}
.x5b_c00067{left:581.580000px;}
.xfc_c00067{left:583.500000px;}
.xcd_c00067{left:585.000000px;}
.x1f_c00067{left:586.500000px;}
.x45_c00067{left:588.420000px;}
.x38_c00067{left:592.080000px;}
.xf_c00067{left:595.080000px;}
.x94_c00067{left:596.580000px;}
.x106_c00067{left:598.500000px;}
.xb4_c00067{left:600.000000px;}
.x6d_c00067{left:603.000000px;}
.xdb_c00067{left:604.920000px;}
.x2b_c00067{left:609.000000px;}
.xe0_c00067{left:610.920000px;}
.x51_c00067{left:612.420000px;}
.x5c_c00067{left:614.580000px;}
.xea_c00067{left:616.080000px;}
.x10a_c00067{left:618.000000px;}
.x78_c00067{left:619.920000px;}
.x6e_c00067{left:622.500000px;}
.x46_c00067{left:624.420000px;}
.xc9_c00067{left:625.500000px;}
.xc6_c00067{left:627.000000px;}
.x8e_c00067{left:628.920000px;}
.x95_c00067{left:630.000000px;}
.xb5_c00067{left:631.500000px;}
.xd4_c00067{left:634.080000px;}
.x39_c00067{left:635.775000px;}
.x81_c00067{left:637.500000px;}
.xa4_c00067{left:640.920000px;}
.x5d_c00067{left:643.920000px;}
.x8a_c00067{left:646.080000px;}
.xa0_c00067{left:648.000000px;}
.xf2_c00067{left:651.000000px;}
.x82_c00067{left:652.080000px;}
.x10_c00067{left:656.580000px;}
.x96_c00067{left:658.920000px;}
.xeb_c00067{left:660.000000px;}
.x3a_c00067{left:661.080000px;}
.x20_c00067{left:663.000000px;}
.xfb_c00067{left:664.500000px;}
.x8f_c00067{left:666.420000px;}
.x83_c00067{left:669.420000px;}
.x5e_c00067{left:672.000000px;}
.x8b_c00067{left:675.855000px;}
.x11_c00067{left:678.000000px;}
.x3b_c00067{left:679.920000px;}
.x21_c00067{left:681.000000px;}
.x6f_c00067{left:682.500000px;}
.xca_c00067{left:684.000000px;}
.x79_c00067{left:685.500000px;}
.x52_c00067{left:688.500000px;}
.x2c_c00067{left:690.000000px;}
.x90_c00067{left:693.000000px;}
.xa5_c00067{left:694.080000px;}
.x97_c00067{left:696.420000px;}
.x22_c00067{left:697.500000px;}
.xce_c00067{left:702.420000px;}
.x12_c00067{left:703.500000px;}
.x47_c00067{left:705.000000px;}
.x3c_c00067{left:708.420000px;}
.x53_c00067{left:709.500000px;}
.x101_c00067{left:714.000000px;}
.xbf_c00067{left:716.580000px;}
@media print{
.v0_c00067{vertical-align:0.000000pt;}
.ls0_c00067{letter-spacing:0.000000pt;}
.ws0_c00067{word-spacing:-5.644228pt;}
.ws1_c00067{word-spacing:-0.346020pt;}
.ws2_c00067{word-spacing:0.000000pt;}
.fs7_c00067{font-size:3.040000pt;}
.fs6_c00067{font-size:10.560000pt;}
.fs3_c00067{font-size:16.640000pt;}
.fs1_c00067{font-size:18.133333pt;}
.fs2_c00067{font-size:22.666667pt;}
.fs5_c00067{font-size:25.706667pt;}
.fs0_c00067{font-size:28.746667pt;}
.fs4_c00067{font-size:31.733333pt;}
.fs8_c00067{font-size:34.773333pt;}
.y0_c00067{bottom:0.000000pt;}
.ye5_c00067{bottom:222.440000pt;}
.ye6_c00067{bottom:223.773333pt;}
.ye4_c00067{bottom:224.360000pt;}
.ydf_c00067{bottom:239.773333pt;}
.ye3_c00067{bottom:240.160000pt;}
.ye2_c00067{bottom:241.106667pt;}
.ye0_c00067{bottom:241.693333pt;}
.ye1_c00067{bottom:243.026667pt;}
.yd8_c00067{bottom:257.106667pt;}
.yda_c00067{bottom:257.493333pt;}
.ydb_c00067{bottom:257.693333pt;}
.yd9_c00067{bottom:258.440000pt;}
.yde_c00067{bottom:259.400000pt;}
.ydd_c00067{bottom:260.360000pt;}
.ydc_c00067{bottom:260.560000pt;}
.yd5_c00067{bottom:275.773333pt;}
.yd6_c00067{bottom:276.560000pt;}
.yd7_c00067{bottom:277.693333pt;}
.yd4_c00067{bottom:293.106667pt;}
.yd0_c00067{bottom:295.026667pt;}
.yd2_c00067{bottom:295.226667pt;}
.yd3_c00067{bottom:295.973333pt;}
.yd1_c00067{bottom:296.360000pt;}
.ycc_c00067{bottom:309.693333pt;}
.yce_c00067{bottom:310.440000pt;}
.ycd_c00067{bottom:310.826667pt;}
.yca_c00067{bottom:312.360000pt;}
.ycf_c00067{bottom:312.560000pt;}
.ycb_c00067{bottom:313.693333pt;}
.yc9_c00067{bottom:327.773333pt;}
.yc3_c00067{bottom:328.733333pt;}
.yc6_c00067{bottom:329.106667pt;}
.yc2_c00067{bottom:329.693333pt;}
.yc8_c00067{bottom:329.893333pt;}
.yc4_c00067{bottom:330.066667pt;}
.yc5_c00067{bottom:330.640000pt;}
.yc7_c00067{bottom:331.026667pt;}
.yc0_c00067{bottom:346.066667pt;}
.ybd_c00067{bottom:346.440000pt;}
.ybb_c00067{bottom:347.026667pt;}
.yc1_c00067{bottom:347.973333pt;}
.ybc_c00067{bottom:348.360000pt;}
.ybf_c00067{bottom:348.560000pt;}
.ybe_c00067{bottom:349.693333pt;}
.yba_c00067{bottom:363.026667pt;}
.yb7_c00067{bottom:363.773333pt;}
.yb9_c00067{bottom:364.733333pt;}
.yb6_c00067{bottom:365.693333pt;}
.yb8_c00067{bottom:367.026667pt;}
.yb5_c00067{bottom:381.106667pt;}
.yaf_c00067{bottom:381.893333pt;}
.yb1_c00067{bottom:382.066667pt;}
.yb0_c00067{bottom:383.026667pt;}
.yb2_c00067{bottom:383.226667pt;}
.yb3_c00067{bottom:383.973333pt;}
.yb4_c00067{bottom:384.360000pt;}
.yad_c00067{bottom:397.693333pt;}
.ya8_c00067{bottom:398.440000pt;}
.yab_c00067{bottom:398.640000pt;}
.yac_c00067{bottom:399.773333pt;}
.ya7_c00067{bottom:400.360000pt;}
.yae_c00067{bottom:400.560000pt;}
.yaa_c00067{bottom:400.733333pt;}
.ya9_c00067{bottom:401.693333pt;}
.ya6_c00067{bottom:417.106667pt;}
.ya3_c00067{bottom:417.693333pt;}
.ya4_c00067{bottom:418.640000pt;}
.ya5_c00067{bottom:419.026667pt;}
.ya2_c00067{bottom:434.440000pt;}
.y9f_c00067{bottom:435.026667pt;}
.ya0_c00067{bottom:435.226667pt;}
.ya1_c00067{bottom:436.360000pt;}
.y9b_c00067{bottom:451.773333pt;}
.y9a_c00067{bottom:452.560000pt;}
.y9e_c00067{bottom:452.733333pt;}
.y99_c00067{bottom:453.693333pt;}
.y9c_c00067{bottom:453.893333pt;}
.y9d_c00067{bottom:454.640000pt;}
.y98_c00067{bottom:468.360000pt;}
.y96_c00067{bottom:469.106667pt;}
.y95_c00067{bottom:471.026667pt;}
.y97_c00067{bottom:471.973333pt;}
.y93_c00067{bottom:485.693333pt;}
.y90_c00067{bottom:486.440000pt;}
.y8f_c00067{bottom:488.360000pt;}
.y94_c00067{bottom:488.560000pt;}
.y91_c00067{bottom:489.306667pt;}
.y92_c00067{bottom:489.693333pt;}
.y8b_c00067{bottom:503.026667pt;}
.y8a_c00067{bottom:503.773333pt;}
.y8e_c00067{bottom:504.933333pt;}
.y89_c00067{bottom:505.693333pt;}
.y8c_c00067{bottom:505.893333pt;}
.y8d_c00067{bottom:507.026667pt;}
.y82_c00067{bottom:521.106667pt;}
.y86_c00067{bottom:522.440000pt;}
.y83_c00067{bottom:523.026667pt;}
.y85_c00067{bottom:523.226667pt;}
.y87_c00067{bottom:523.400000pt;}
.y88_c00067{bottom:523.973333pt;}
.y84_c00067{bottom:524.360000pt;}
.y81_c00067{bottom:539.400000pt;}
.y7e_c00067{bottom:539.773333pt;}
.y7f_c00067{bottom:540.560000pt;}
.y7c_c00067{bottom:541.693333pt;}
.y7d_c00067{bottom:541.706667pt;}
.y80_c00067{bottom:542.640000pt;}
.y79_c00067{bottom:554.466667pt;}
.y73_c00067{bottom:555.026667pt;}
.y74_c00067{bottom:555.773333pt;}
.y76_c00067{bottom:555.973333pt;}
.y7a_c00067{bottom:556.360000pt;}
.y72_c00067{bottom:556.733333pt;}
.y75_c00067{bottom:557.693333pt;}
.y77_c00067{bottom:557.893333pt;}
.y7b_c00067{bottom:559.026667pt;}
.y78_c00067{bottom:561.893333pt;}
.y6d_c00067{bottom:572.360000pt;}
.y71_c00067{bottom:573.693333pt;}
.y70_c00067{bottom:574.440000pt;}
.y6f_c00067{bottom:575.400000pt;}
.y6e_c00067{bottom:576.360000pt;}
.y6b_c00067{bottom:591.773333pt;}
.y69_c00067{bottom:592.360000pt;}
.y6c_c00067{bottom:592.933333pt;}
.y68_c00067{bottom:593.306667pt;}
.y6a_c00067{bottom:593.693333pt;}
.y66_c00067{bottom:606.466667pt;}
.y64_c00067{bottom:608.360000pt;}
.y61_c00067{bottom:609.106667pt;}
.y67_c00067{bottom:609.893333pt;}
.y63_c00067{bottom:610.066667pt;}
.y62_c00067{bottom:611.026667pt;}
.y65_c00067{bottom:613.893333pt;}
.y5e_c00067{bottom:626.440000pt;}
.y60_c00067{bottom:627.226667pt;}
.y5f_c00067{bottom:627.973333pt;}
.y5d_c00067{bottom:628.360000pt;}
.y5a_c00067{bottom:643.026667pt;}
.y59_c00067{bottom:643.773333pt;}
.y5b_c00067{bottom:644.733333pt;}
.y58_c00067{bottom:645.693333pt;}
.y5c_c00067{bottom:645.893333pt;}
.y54_c00067{bottom:661.106667pt;}
.y53_c00067{bottom:663.026667pt;}
.y57_c00067{bottom:663.226667pt;}
.y56_c00067{bottom:663.973333pt;}
.y55_c00067{bottom:664.360000pt;}
.y52_c00067{bottom:680.360000pt;}
.y50_c00067{bottom:695.026667pt;}
.y4f_c00067{bottom:695.773333pt;}
.y4e_c00067{bottom:697.106667pt;}
.y4d_c00067{bottom:697.693333pt;}
.y51_c00067{bottom:699.026667pt;}
.y4c_c00067{bottom:712.360000pt;}
.y49_c00067{bottom:714.440000pt;}
.y4a_c00067{bottom:715.600000pt;}
.y4b_c00067{bottom:715.973333pt;}
.y48_c00067{bottom:716.360000pt;}
.y44_c00067{bottom:731.773333pt;}
.y46_c00067{bottom:732.560000pt;}
.y45_c00067{bottom:733.693333pt;}
.y47_c00067{bottom:733.893333pt;}
.y43_c00067{bottom:747.026667pt;}
.y42_c00067{bottom:749.106667pt;}
.y40_c00067{bottom:749.893333pt;}
.y41_c00067{bottom:750.066667pt;}
.y3f_c00067{bottom:751.026667pt;}
.y37_c00067{bottom:765.693333pt;}
.y38_c00067{bottom:766.440000pt;}
.y39_c00067{bottom:767.226667pt;}
.y3e_c00067{bottom:767.600000pt;}
.y3c_c00067{bottom:767.773333pt;}
.y3a_c00067{bottom:768.360000pt;}
.y3b_c00067{bottom:768.560000pt;}
.y3d_c00067{bottom:769.693333pt;}
.y33_c00067{bottom:783.773333pt;}
.y32_c00067{bottom:784.733333pt;}
.y34_c00067{bottom:785.106667pt;}
.y31_c00067{bottom:785.693333pt;}
.y36_c00067{bottom:786.640000pt;}
.y35_c00067{bottom:787.026667pt;}
.y2f_c00067{bottom:800.360000pt;}
.y2e_c00067{bottom:801.106667pt;}
.y30_c00067{bottom:802.440000pt;}
.y2d_c00067{bottom:804.360000pt;}
.y2a_c00067{bottom:819.773333pt;}
.y2c_c00067{bottom:821.306667pt;}
.y2b_c00067{bottom:821.693333pt;}
.y28_c00067{bottom:837.106667pt;}
.y29_c00067{bottom:838.066667pt;}
.y27_c00067{bottom:839.026667pt;}
.y24_c00067{bottom:854.066667pt;}
.y25_c00067{bottom:854.440000pt;}
.y23_c00067{bottom:856.360000pt;}
.y26_c00067{bottom:857.306667pt;}
.y20_c00067{bottom:871.773333pt;}
.y1d_c00067{bottom:872.560000pt;}
.y1e_c00067{bottom:872.733333pt;}
.y1f_c00067{bottom:873.693333pt;}
.y22_c00067{bottom:873.893333pt;}
.y21_c00067{bottom:875.026667pt;}
.y18_c00067{bottom:887.026667pt;}
.y19_c00067{bottom:889.106667pt;}
.y1c_c00067{bottom:890.440000pt;}
.y16_c00067{bottom:890.640000pt;}
.y17_c00067{bottom:891.026667pt;}
.y1a_c00067{bottom:891.226667pt;}
.y1b_c00067{bottom:892.360000pt;}
.y11_c00067{bottom:906.440000pt;}
.y15_c00067{bottom:907.773333pt;}
.y10_c00067{bottom:908.360000pt;}
.y12_c00067{bottom:908.560000pt;}
.y14_c00067{bottom:909.306667pt;}
.y13_c00067{bottom:909.693333pt;}
.ya_c00067{bottom:923.773333pt;}
.ye_c00067{bottom:925.106667pt;}
.yc_c00067{bottom:925.693333pt;}
.yf_c00067{bottom:926.066667pt;}
.yb_c00067{bottom:926.640000pt;}
.yd_c00067{bottom:927.026667pt;}
.y5_c00067{bottom:941.106667pt;}
.y4_c00067{bottom:941.893333pt;}
.y7_c00067{bottom:942.066667pt;}
.y3_c00067{bottom:942.640000pt;}
.y6_c00067{bottom:943.026667pt;}
.y8_c00067{bottom:943.226667pt;}
.y9_c00067{bottom:943.973333pt;}
.y1_c00067{bottom:976.733333pt;}
.y2_c00067{bottom:976.933333pt;}
.h8_c00067{height:3.739141pt;}
.h7_c00067{height:12.988594pt;}
.h4_c00067{height:20.466875pt;}
.h2_c00067{height:22.303646pt;}
.h3_c00067{height:27.879557pt;}
.h6_c00067{height:31.618698pt;}
.h1_c00067{height:35.357839pt;}
.h5_c00067{height:39.031380pt;}
.h9_c00067{height:42.770521pt;}
.h0_c00067{height:1186.666667pt;}
.w0_c00067{width:782.666667pt;}
.x0_c00067{left:0.000000pt;}
.xf8_c00067{left:133.333333pt;}
.x1_c00067{left:134.666667pt;}
.x3_c00067{left:136.000000pt;}
.x13_c00067{left:136.960000pt;}
.xf3_c00067{left:148.000000pt;}
.x66_c00067{left:148.960000pt;}
.x98_c00067{left:151.040000pt;}
.x4_c00067{left:152.000000pt;}
.xd5_c00067{left:153.706667pt;}
.x2d_c00067{left:155.040000pt;}
.x5f_c00067{left:157.333333pt;}
.xfd_c00067{left:158.666667pt;}
.xe1_c00067{left:161.333333pt;}
.x84_c00067{left:162.666667pt;}
.xec_c00067{left:165.333333pt;}
.xe8_c00067{left:167.626667pt;}
.x5_c00067{left:169.333333pt;}
.x14_c00067{left:170.666667pt;}
.x60_c00067{left:172.000000pt;}
.xe2_c00067{left:173.706667pt;}
.x7a_c00067{left:174.666667pt;}
.xa8_c00067{left:176.373333pt;}
.x10b_c00067{left:177.706667pt;}
.x48_c00067{left:178.666667pt;}
.x2e_c00067{left:180.000000pt;}
.xf9_c00067{left:183.040000pt;}
.x3d_c00067{left:184.373333pt;}
.xd6_c00067{left:185.333333pt;}
.x99_c00067{left:186.666667pt;}
.xcf_c00067{left:188.373333pt;}
.x15_c00067{left:189.706667pt;}
.x70_c00067{left:194.666667pt;}
.xb6_c00067{left:196.373333pt;}
.x61_c00067{left:197.333333pt;}
.x67_c00067{left:200.373333pt;}
.x85_c00067{left:201.333333pt;}
.xa1_c00067{left:206.293333pt;}
.x54_c00067{left:208.000000pt;}
.xc7_c00067{left:210.666667pt;}
.x3e_c00067{left:212.373333pt;}
.x102_c00067{left:213.706667pt;}
.xe9_c00067{left:214.666667pt;}
.x6_c00067{left:218.666667pt;}
.x2f_c00067{left:220.960000pt;}
.xb7_c00067{left:222.293333pt;}
.x16_c00067{left:229.333333pt;}
.xef_c00067{left:231.040000pt;}
.x7b_c00067{left:233.333333pt;}
.x3f_c00067{left:234.666667pt;}
.x23_c00067{left:236.000000pt;}
.xc0_c00067{left:237.706667pt;}
.x103_c00067{left:238.666667pt;}
.xf4_c00067{left:240.000000pt;}
.x62_c00067{left:242.666667pt;}
.xe3_c00067{left:244.000000pt;}
.x71_c00067{left:245.333333pt;}
.x10c_c00067{left:247.040000pt;}
.x40_c00067{left:248.373333pt;}
.x86_c00067{left:249.333333pt;}
.xdc_c00067{left:251.040000pt;}
.x30_c00067{left:252.000000pt;}
.x9a_c00067{left:253.333333pt;}
.x49_c00067{left:256.373333pt;}
.x10d_c00067{left:257.706667pt;}
.x17_c00067{left:258.666667pt;}
.x72_c00067{left:260.000000pt;}
.x68_c00067{left:261.333333pt;}
.xd0_c00067{left:262.666667pt;}
.x7c_c00067{left:264.373333pt;}
.x87_c00067{left:265.333333pt;}
.x7_c00067{left:267.040000pt;}
.xa9_c00067{left:269.333333pt;}
.xfe_c00067{left:272.373333pt;}
.x24_c00067{left:273.333333pt;}
.x73_c00067{left:274.666667pt;}
.xaf_c00067{left:277.333333pt;}
.xed_c00067{left:278.666667pt;}
.xc1_c00067{left:279.626667pt;}
.x31_c00067{left:281.706667pt;}
.x4a_c00067{left:282.666667pt;}
.x18_c00067{left:284.000000pt;}
.xa2_c00067{left:285.333333pt;}
.x55_c00067{left:289.706667pt;}
.x8_c00067{left:291.626667pt;}
.xf5_c00067{left:294.666667pt;}
.xb8_c00067{left:296.373333pt;}
.x4b_c00067{left:298.666667pt;}
.x19_c00067{left:300.000000pt;}
.xf0_c00067{left:302.666667pt;}
.x32_c00067{left:303.626667pt;}
.x25_c00067{left:307.040000pt;}
.x63_c00067{left:309.333333pt;}
.xdd_c00067{left:310.666667pt;}
.x7d_c00067{left:312.960000pt;}
.x88_c00067{left:315.040000pt;}
.x9b_c00067{left:317.706667pt;}
.xa6_c00067{left:318.666667pt;}
.x74_c00067{left:320.000000pt;}
.x9_c00067{left:322.293333pt;}
.xf6_c00067{left:323.240000pt;}
.x56_c00067{left:327.040000pt;}
.xb9_c00067{left:330.666667pt;}
.x26_c00067{left:332.373333pt;}
.x41_c00067{left:333.706667pt;}
.x69_c00067{left:335.626667pt;}
.x7e_c00067{left:337.333333pt;}
.xa_c00067{left:339.040000pt;}
.xd1_c00067{left:340.000000pt;}
.x4c_c00067{left:342.666667pt;}
.x9c_c00067{left:344.000000pt;}
.xb0_c00067{left:345.333333pt;}
.x1a_c00067{left:347.040000pt;}
.x33_c00067{left:348.000000pt;}
.xe4_c00067{left:348.960000pt;}
.x64_c00067{left:350.293333pt;}
.x91_c00067{left:352.000000pt;}
.x2_c00067{left:354.666667pt;}
.x57_c00067{left:356.000000pt;}
.xa7_c00067{left:356.960000pt;}
.xaa_c00067{left:359.626667pt;}
.xfa_c00067{left:361.333333pt;}
.xb_c00067{left:363.040000pt;}
.x107_c00067{left:365.333333pt;}
.xe5_c00067{left:367.040000pt;}
.x6a_c00067{left:368.000000pt;}
.x58_c00067{left:369.706667pt;}
.xcb_c00067{left:371.040000pt;}
.xab_c00067{left:377.333333pt;}
.x27_c00067{left:381.333333pt;}
.xbd_c00067{left:382.666667pt;}
.x34_c00067{left:383.626667pt;}
.x42_c00067{left:386.293333pt;}
.x65_c00067{left:388.000000pt;}
.x1b_c00067{left:389.706667pt;}
.xe6_c00067{left:391.626667pt;}
.xba_c00067{left:393.706667pt;}
.x75_c00067{left:394.666667pt;}
.xac_c00067{left:395.626667pt;}
.x4d_c00067{left:397.333333pt;}
.xc_c00067{left:399.040000pt;}
.xb1_c00067{left:401.333333pt;}
.xc2_c00067{left:404.373333pt;}
.x92_c00067{left:405.706667pt;}
.xd7_c00067{left:406.666667pt;}
.x8c_c00067{left:408.000000pt;}
.xd9_c00067{left:410.666667pt;}
.x28_c00067{left:414.293333pt;}
.x4e_c00067{left:416.000000pt;}
.x9d_c00067{left:416.960000pt;}
.x104_c00067{left:420.000000pt;}
.x1c_c00067{left:422.666667pt;}
.xc3_c00067{left:426.666667pt;}
.xf7_c00067{left:427.626667pt;}
.xd_c00067{left:429.333333pt;}
.x6b_c00067{left:430.666667pt;}
.x29_c00067{left:432.000000pt;}
.x35_c00067{left:436.000000pt;}
.xb2_c00067{left:437.333333pt;}
.x108_c00067{left:439.040000pt;}
.xc4_c00067{left:440.960000pt;}
.x76_c00067{left:442.293333pt;}
.x89_c00067{left:444.000000pt;}
.xbb_c00067{left:444.960000pt;}
.x7f_c00067{left:446.666667pt;}
.xc8_c00067{left:448.000000pt;}
.xff_c00067{left:450.666667pt;}
.x105_c00067{left:452.000000pt;}
.xe_c00067{left:453.333333pt;}
.xe7_c00067{left:455.040000pt;}
.x1d_c00067{left:456.960000pt;}
.xcc_c00067{left:459.040000pt;}
.xbe_c00067{left:460.000000pt;}
.x4f_c00067{left:461.706667pt;}
.x59_c00067{left:463.040000pt;}
.xad_c00067{left:464.000000pt;}
.xd8_c00067{left:465.333333pt;}
.xd2_c00067{left:468.373333pt;}
.x36_c00067{left:469.333333pt;}
.x77_c00067{left:470.666667pt;}
.x6c_c00067{left:473.333333pt;}
.xa3_c00067{left:474.666667pt;}
.x109_c00067{left:476.000000pt;}
.xbc_c00067{left:477.133333pt;}
.x43_c00067{left:478.666667pt;}
.xc5_c00067{left:480.000000pt;}
.xde_c00067{left:481.333333pt;}
.x9e_c00067{left:482.666667pt;}
.xb3_c00067{left:484.373333pt;}
.x1e_c00067{left:485.333333pt;}
.xae_c00067{left:488.373333pt;}
.x93_c00067{left:489.333333pt;}
.xf1_c00067{left:492.000000pt;}
.xd3_c00067{left:493.706667pt;}
.x5a_c00067{left:495.040000pt;}
.x100_c00067{left:496.000000pt;}
.xda_c00067{left:498.666667pt;}
.x8d_c00067{left:500.000000pt;}
.x37_c00067{left:501.706667pt;}
.x2a_c00067{left:502.666667pt;}
.xdf_c00067{left:506.293333pt;}
.x80_c00067{left:508.000000pt;}
.xee_c00067{left:509.706667pt;}
.x44_c00067{left:510.666667pt;}
.x9f_c00067{left:511.626667pt;}
.x50_c00067{left:515.626667pt;}
.x5b_c00067{left:516.960000pt;}
.xfc_c00067{left:518.666667pt;}
.xcd_c00067{left:520.000000pt;}
.x1f_c00067{left:521.333333pt;}
.x45_c00067{left:523.040000pt;}
.x38_c00067{left:526.293333pt;}
.xf_c00067{left:528.960000pt;}
.x94_c00067{left:530.293333pt;}
.x106_c00067{left:532.000000pt;}
.xb4_c00067{left:533.333333pt;}
.x6d_c00067{left:536.000000pt;}
.xdb_c00067{left:537.706667pt;}
.x2b_c00067{left:541.333333pt;}
.xe0_c00067{left:543.040000pt;}
.x51_c00067{left:544.373333pt;}
.x5c_c00067{left:546.293333pt;}
.xea_c00067{left:547.626667pt;}
.x10a_c00067{left:549.333333pt;}
.x78_c00067{left:551.040000pt;}
.x6e_c00067{left:553.333333pt;}
.x46_c00067{left:555.040000pt;}
.xc9_c00067{left:556.000000pt;}
.xc6_c00067{left:557.333333pt;}
.x8e_c00067{left:559.040000pt;}
.x95_c00067{left:560.000000pt;}
.xb5_c00067{left:561.333333pt;}
.xd4_c00067{left:563.626667pt;}
.x39_c00067{left:565.133333pt;}
.x81_c00067{left:566.666667pt;}
.xa4_c00067{left:569.706667pt;}
.x5d_c00067{left:572.373333pt;}
.x8a_c00067{left:574.293333pt;}
.xa0_c00067{left:576.000000pt;}
.xf2_c00067{left:578.666667pt;}
.x82_c00067{left:579.626667pt;}
.x10_c00067{left:583.626667pt;}
.x96_c00067{left:585.706667pt;}
.xeb_c00067{left:586.666667pt;}
.x3a_c00067{left:587.626667pt;}
.x20_c00067{left:589.333333pt;}
.xfb_c00067{left:590.666667pt;}
.x8f_c00067{left:592.373333pt;}
.x83_c00067{left:595.040000pt;}
.x5e_c00067{left:597.333333pt;}
.x8b_c00067{left:600.760000pt;}
.x11_c00067{left:602.666667pt;}
.x3b_c00067{left:604.373333pt;}
.x21_c00067{left:605.333333pt;}
.x6f_c00067{left:606.666667pt;}
.xca_c00067{left:608.000000pt;}
.x79_c00067{left:609.333333pt;}
.x52_c00067{left:612.000000pt;}
.x2c_c00067{left:613.333333pt;}
.x90_c00067{left:616.000000pt;}
.xa5_c00067{left:616.960000pt;}
.x97_c00067{left:619.040000pt;}
.x22_c00067{left:620.000000pt;}
.xce_c00067{left:624.373333pt;}
.x12_c00067{left:625.333333pt;}
.x47_c00067{left:626.666667pt;}
.x3c_c00067{left:629.706667pt;}
.x53_c00067{left:630.666667pt;}
.x101_c00067{left:634.666667pt;}
.xbf_c00067{left:636.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_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_4ed3365c5d84d4d0781e6f8a.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc3_c00068{transform:matrix(0.125163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125163,0.000000,0.000000,0.250000,0,0);}
.mcf_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);}
.m3d_c00068{transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);}
.md9_c00068{transform:matrix(0.336742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336742,0.000000,0.000000,0.250000,0,0);}
.m9f_c00068{transform:matrix(0.337040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337040,0.000000,0.000000,0.250000,0,0);}
.mc2_c00068{transform:matrix(0.337447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337447,0.000000,0.000000,0.250000,0,0);}
.mf_c00068{transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);}
.mf0_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);}
.m56_c00068{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m63_c00068{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m91_c00068{transform:matrix(0.367331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367331,0.000000,0.000000,0.250000,0,0);}
.m6_c00068{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.md1_c00068{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m18_c00068{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m7a_c00068{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m75_c00068{transform:matrix(0.376234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376234,0.000000,0.000000,0.250000,0,0);}
.m97_c00068{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.md6_c00068{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m23_c00068{transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);}
.m29_c00068{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.mba_c00068{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mf1_c00068{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.m17_c00068{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m12_c00068{transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);}
.m78_c00068{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m33_c00068{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.mc6_c00068{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m25_c00068{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m47_c00068{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.md4_c00068{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m31_c00068{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.med_c00068{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m3f_c00068{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.ma1_c00068{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m30_c00068{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m9d_c00068{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m6d_c00068{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m20_c00068{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m6b_c00068{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m4d_c00068{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m95_c00068{transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);}
.mb6_c00068{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m22_c00068{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.ma_c00068{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m7_c00068{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.mf3_c00068{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m2e_c00068{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m94_c00068{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.mf2_c00068{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m99_c00068{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.mcd_c00068{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m96_c00068{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m8c_c00068{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m72_c00068{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.me5_c00068{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m5_c00068{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.ma2_c00068{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.meb_c00068{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mc0_c00068{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m66_c00068{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.me3_c00068{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m8a_c00068{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.mb5_c00068{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m4f_c00068{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m4e_c00068{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.maa_c00068{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m13_c00068{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m34_c00068{transform:matrix(0.435529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435529,0.000000,0.000000,0.250000,0,0);}
.m89_c00068{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.mef_c00068{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);}
.m80_c00068{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.m88_c00068{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.mb0_c00068{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m7d_c00068{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.mdc_c00068{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.ma6_c00068{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.ma8_c00068{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m90_c00068{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m4c_c00068{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m24_c00068{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.ma0_c00068{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.ma7_c00068{transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);}
.ma3_c00068{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.m61_c00068{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m4b_c00068{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m27_c00068{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.mc_c00068{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.mec_c00068{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m87_c00068{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mb8_c00068{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mbd_c00068{transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);}
.m4a_c00068{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.mae_c00068{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m82_c00068{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m5d_c00068{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m2b_c00068{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m81_c00068{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.md8_c00068{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m1c_c00068{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m67_c00068{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m6c_c00068{transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);}
.m1_c00068{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m1e_c00068{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.mb3_c00068{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m40_c00068{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m84_c00068{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m64_c00068{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m2a_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);}
.me1_c00068{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.mee_c00068{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m15_c00068{transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);}
.m83_c00068{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.me4_c00068{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m5b_c00068{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m7f_c00068{transform:matrix(0.510668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510668,0.000000,0.000000,0.250000,0,0);}
.mea_c00068{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m7c_c00068{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mce_c00068{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m68_c00068{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m43_c00068{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mdd_c00068{transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);}
.m65_c00068{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.mdb_c00068{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m44_c00068{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m57_c00068{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m28_c00068{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m36_c00068{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.me8_c00068{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m6f_c00068{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m26_c00068{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m76_c00068{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.ma5_c00068{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mb_c00068{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m16_c00068{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m85_c00068{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m1b_c00068{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mc1_c00068{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.mbb_c00068{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m49_c00068{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.md5_c00068{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.me6_c00068{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mad_c00068{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m86_c00068{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m52_c00068{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m5c_c00068{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.mb4_c00068{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m41_c00068{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.me7_c00068{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m48_c00068{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.md2_c00068{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.mbc_c00068{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mcb_c00068{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m21_c00068{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m54_c00068{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m62_c00068{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m11_c00068{transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);}
.m5a_c00068{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m8e_c00068{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m3b_c00068{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m79_c00068{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mdf_c00068{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mab_c00068{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m2f_c00068{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m32_c00068{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m77_c00068{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m9_c00068{transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);}
.m19_c00068{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m58_c00068{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.me9_c00068{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m3c_c00068{transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);}
.m59_c00068{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.me_c00068{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.mc4_c00068{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m7e_c00068{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m50_c00068{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m60_c00068{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m9a_c00068{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m8_c00068{transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);}
.m9c_c00068{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m71_c00068{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.ma9_c00068{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.mb9_c00068{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mda_c00068{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m8d_c00068{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m46_c00068{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m69_c00068{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mc7_c00068{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m53_c00068{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m37_c00068{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.md7_c00068{transform:matrix(0.596471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596471,0.000000,0.000000,0.250000,0,0);}
.m1a_c00068{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mc9_c00068{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m6a_c00068{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.ma4_c00068{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m1f_c00068{transform:matrix(0.602697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602697,0.000000,0.000000,0.250000,0,0);}
.maf_c00068{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m5e_c00068{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mc5_c00068{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m42_c00068{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m8b_c00068{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m35_c00068{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.me0_c00068{transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);}
.m0_c00068{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.md3_c00068{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m8f_c00068{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mac_c00068{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.mbe_c00068{transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);}
.m2_c00068{transform:matrix(0.640041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640041,0.000000,0.000000,0.250000,0,0);}
.me2_c00068{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m93_c00068{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.mca_c00068{transform:matrix(0.657059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657059,0.000000,0.000000,0.250000,0,0);}
.m3_c00068{transform:matrix(0.660588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660588,0.000000,0.000000,0.250000,0,0);}
.m98_c00068{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m55_c00068{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m45_c00068{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mde_c00068{transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);}
.md_c00068{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.m9b_c00068{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m3e_c00068{transform:matrix(0.696324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696324,0.000000,0.000000,0.250000,0,0);}
.m3a_c00068{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m10_c00068{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);}
.mb7_c00068{transform:matrix(0.713235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713235,0.000000,0.000000,0.250000,0,0);}
.m7b_c00068{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m38_c00068{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m73_c00068{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.mcc_c00068{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m9e_c00068{transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);}
.m5f_c00068{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m39_c00068{transform:matrix(0.742788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742788,0.000000,0.000000,0.250000,0,0);}
.m1d_c00068{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m2c_c00068{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m74_c00068{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m4_c00068{transform:matrix(0.774706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.774706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.774706,0.000000,0.000000,0.250000,0,0);}
.mc8_c00068{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m70_c00068{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m92_c00068{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.mbf_c00068{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mb1_c00068{transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);}
.m6e_c00068{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m51_c00068{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mb2_c00068{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.md0_c00068{transform:matrix(1.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.749199,0.000000,0.000000,0.250000,0,0);}
.m2d_c00068{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m14_c00068{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00068{vertical-align:0.000000px;}
.ls0_c00068{letter-spacing:0.000000px;}
.sc__c00068{text-shadow:none;}
.sc0_c00068{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00068{-webkit-text-stroke:0px transparent;}
.sc0_c00068{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00068{word-spacing:0.000000px;}
.fc0_c00068{color:transparent;}
.fs6_c00068{font-size:3.420000px;}
.fsa_c00068{font-size:11.880000px;}
.fs7_c00068{font-size:18.720000px;}
.fs0_c00068{font-size:20.400000px;}
.fs2_c00068{font-size:25.500000px;}
.fs1_c00068{font-size:28.920000px;}
.fs4_c00068{font-size:32.340000px;}
.fs3_c00068{font-size:35.700000px;}
.fs5_c00068{font-size:39.120000px;}
.fs8_c00068{font-size:42.540000px;}
.fs9_c00068{font-size:45.900000px;}
.y0_c00068{bottom:0.000000px;}
.yc7_c00068{bottom:399.405000px;}
.yc6_c00068{bottom:401.745000px;}
.yc8_c00068{bottom:402.630000px;}
.yc4_c00068{bottom:403.245000px;}
.yc9_c00068{bottom:403.470000px;}
.yc5_c00068{bottom:403.905000px;}
.yc3_c00068{bottom:405.180000px;}
.ybe_c00068{bottom:418.905000px;}
.yc0_c00068{bottom:419.745000px;}
.yc2_c00068{bottom:420.405000px;}
.yc1_c00068{bottom:421.245000px;}
.ybd_c00068{bottom:421.905000px;}
.ybf_c00068{bottom:422.130000px;}
.ybc_c00068{bottom:423.405000px;}
.ybb_c00068{bottom:426.405000px;}
.yb9_c00068{bottom:441.405000px;}
.yba_c00068{bottom:442.470000px;}
.yb8_c00068{bottom:442.905000px;}
.yb6_c00068{bottom:457.905000px;}
.yb5_c00068{bottom:460.245000px;}
.yb2_c00068{bottom:460.275000px;}
.yb4_c00068{bottom:461.550000px;}
.yb7_c00068{bottom:462.405000px;}
.yb3_c00068{bottom:462.630000px;}
.yb1_c00068{bottom:464.970000px;}
.yaa_c00068{bottom:478.905000px;}
.yad_c00068{bottom:479.745000px;}
.yae_c00068{bottom:479.970000px;}
.yb0_c00068{bottom:480.630000px;}
.yaf_c00068{bottom:481.470000px;}
.ya9_c00068{bottom:481.680000px;}
.yac_c00068{bottom:481.905000px;}
.yab_c00068{bottom:482.130000px;}
.ya6_c00068{bottom:498.405000px;}
.ya5_c00068{bottom:499.245000px;}
.ya4_c00068{bottom:499.470000px;}
.ya2_c00068{bottom:500.745000px;}
.ya3_c00068{bottom:501.405000px;}
.ya8_c00068{bottom:501.630000px;}
.ya7_c00068{bottom:502.470000px;}
.ya1_c00068{bottom:503.325000px;}
.y9f_c00068{bottom:503.745000px;}
.ya0_c00068{bottom:506.130000px;}
.y9e_c00068{bottom:518.745000px;}
.y9d_c00068{bottom:520.905000px;}
.y9b_c00068{bottom:521.550000px;}
.y9c_c00068{bottom:521.970000px;}
.y9a_c00068{bottom:523.470000px;}
.y99_c00068{bottom:538.470000px;}
.y95_c00068{bottom:539.745000px;}
.y96_c00068{bottom:540.405000px;}
.y94_c00068{bottom:540.600000px;}
.y97_c00068{bottom:540.630000px;}
.y98_c00068{bottom:541.470000px;}
.y93_c00068{bottom:541.680000px;}
.y92_c00068{bottom:557.745000px;}
.y8e_c00068{bottom:559.050000px;}
.y90_c00068{bottom:559.905000px;}
.y91_c00068{bottom:560.130000px;}
.y8c_c00068{bottom:560.745000px;}
.y8f_c00068{bottom:560.970000px;}
.y8d_c00068{bottom:561.405000px;}
.y8b_c00068{bottom:578.745000px;}
.y8a_c00068{bottom:579.630000px;}
.y88_c00068{bottom:579.825000px;}
.y89_c00068{bottom:580.905000px;}
.y87_c00068{bottom:581.550000px;}
.y86_c00068{bottom:583.050000px;}
.y85_c00068{bottom:598.245000px;}
.y84_c00068{bottom:599.130000px;}
.y83_c00068{bottom:600.405000px;}
.y82_c00068{bottom:602.550000px;}
.y7f_c00068{bottom:617.745000px;}
.y7e_c00068{bottom:619.905000px;}
.y80_c00068{bottom:620.130000px;}
.y81_c00068{bottom:620.970000px;}
.y7d_c00068{bottom:621.825000px;}
.y79_c00068{bottom:637.245000px;}
.y7a_c00068{bottom:638.745000px;}
.y78_c00068{bottom:639.405000px;}
.y7b_c00068{bottom:639.630000px;}
.y7c_c00068{bottom:639.825000px;}
.y77_c00068{bottom:640.905000px;}
.y76_c00068{bottom:641.745000px;}
.y75_c00068{bottom:658.245000px;}
.y73_c00068{bottom:658.905000px;}
.y72_c00068{bottom:659.970000px;}
.y74_c00068{bottom:660.405000px;}
.y71_c00068{bottom:660.825000px;}
.y6f_c00068{bottom:676.680000px;}
.y70_c00068{bottom:677.745000px;}
.y6d_c00068{bottom:679.050000px;}
.y6e_c00068{bottom:679.905000px;}
.y6c_c00068{bottom:681.825000px;}
.y68_c00068{bottom:695.745000px;}
.y67_c00068{bottom:697.245000px;}
.y69_c00068{bottom:699.405000px;}
.y66_c00068{bottom:699.825000px;}
.y6a_c00068{bottom:700.470000px;}
.y6b_c00068{bottom:700.905000px;}
.y65_c00068{bottom:716.745000px;}
.y62_c00068{bottom:717.180000px;}
.y63_c00068{bottom:718.905000px;}
.y64_c00068{bottom:719.130000px;}
.y61_c00068{bottom:719.970000px;}
.y5d_c00068{bottom:736.245000px;}
.y5f_c00068{bottom:737.130000px;}
.y60_c00068{bottom:738.405000px;}
.y5b_c00068{bottom:738.825000px;}
.y5e_c00068{bottom:739.470000px;}
.y5c_c00068{bottom:739.905000px;}
.y59_c00068{bottom:756.825000px;}
.y5a_c00068{bottom:757.245000px;}
.y57_c00068{bottom:757.905000px;}
.y58_c00068{bottom:758.130000px;}
.y56_c00068{bottom:759.405000px;}
.y55_c00068{bottom:774.405000px;}
.y52_c00068{bottom:776.745000px;}
.y54_c00068{bottom:777.630000px;}
.y53_c00068{bottom:777.825000px;}
.y51_c00068{bottom:778.905000px;}
.y50_c00068{bottom:780.825000px;}
.y4c_c00068{bottom:795.180000px;}
.y4e_c00068{bottom:796.245000px;}
.y4f_c00068{bottom:797.130000px;}
.y4d_c00068{bottom:798.405000px;}
.y48_c00068{bottom:815.745000px;}
.y4b_c00068{bottom:816.630000px;}
.y49_c00068{bottom:816.825000px;}
.y4a_c00068{bottom:817.905000px;}
.y44_c00068{bottom:835.245000px;}
.y47_c00068{bottom:836.130000px;}
.y46_c00068{bottom:836.325000px;}
.y45_c00068{bottom:837.405000px;}
.y43_c00068{bottom:837.825000px;}
.y42_c00068{bottom:838.905000px;}
.y3f_c00068{bottom:853.245000px;}
.y41_c00068{bottom:853.905000px;}
.y3b_c00068{bottom:854.745000px;}
.y3c_c00068{bottom:856.470000px;}
.y3d_c00068{bottom:856.905000px;}
.y3e_c00068{bottom:857.130000px;}
.y3a_c00068{bottom:857.325000px;}
.y40_c00068{bottom:857.970000px;}
.y39_c00068{bottom:874.245000px;}
.y37_c00068{bottom:876.405000px;}
.y38_c00068{bottom:876.630000px;}
.y36_c00068{bottom:877.905000px;}
.y35_c00068{bottom:879.405000px;}
.y30_c00068{bottom:892.905000px;}
.y31_c00068{bottom:893.745000px;}
.y2f_c00068{bottom:894.825000px;}
.y34_c00068{bottom:895.245000px;}
.y32_c00068{bottom:895.905000px;}
.y33_c00068{bottom:896.130000px;}
.y2e_c00068{bottom:897.825000px;}
.y2b_c00068{bottom:912.405000px;}
.y2c_c00068{bottom:913.245000px;}
.y28_c00068{bottom:914.745000px;}
.y29_c00068{bottom:915.405000px;}
.y27_c00068{bottom:916.050000px;}
.y2a_c00068{bottom:916.470000px;}
.y2d_c00068{bottom:916.905000px;}
.y26_c00068{bottom:934.245000px;}
.y23_c00068{bottom:934.905000px;}
.y25_c00068{bottom:935.130000px;}
.y21_c00068{bottom:935.325000px;}
.y22_c00068{bottom:936.405000px;}
.y24_c00068{bottom:936.420000px;}
.y1f_c00068{bottom:953.745000px;}
.y1d_c00068{bottom:954.630000px;}
.y1c_c00068{bottom:954.825000px;}
.y20_c00068{bottom:955.905000px;}
.y1e_c00068{bottom:955.920000px;}
.y16_c00068{bottom:972.180000px;}
.y1a_c00068{bottom:972.405000px;}
.y19_c00068{bottom:973.245000px;}
.y18_c00068{bottom:974.325000px;}
.y1b_c00068{bottom:975.405000px;}
.y17_c00068{bottom:975.420000px;}
.y15_c00068{bottom:992.745000px;}
.y14_c00068{bottom:994.905000px;}
.y13_c00068{bottom:995.325000px;}
.y11_c00068{bottom:1011.825000px;}
.yd_c00068{bottom:1012.245000px;}
.yc_c00068{bottom:1012.680000px;}
.yf_c00068{bottom:1013.325000px;}
.y10_c00068{bottom:1014.405000px;}
.ye_c00068{bottom:1014.420000px;}
.y12_c00068{bottom:1014.630000px;}
.ya_c00068{bottom:1038.825000px;}
.yb_c00068{bottom:1039.050000px;}
.y8_c00068{bottom:1039.905000px;}
.y6_c00068{bottom:1040.325000px;}
.y7_c00068{bottom:1040.970000px;}
.y9_c00068{bottom:1042.050000px;}
.y5_c00068{bottom:1061.745000px;}
.y3_c00068{bottom:1062.405000px;}
.y4_c00068{bottom:1063.470000px;}
.y2_c00068{bottom:1099.905000px;}
.y1_c00068{bottom:1102.050000px;}
.h7_c00068{height:4.206533px;}
.hb_c00068{height:14.612168px;}
.h8_c00068{height:23.025234px;}
.h1_c00068{height:25.091602px;}
.h3_c00068{height:31.364502px;}
.h2_c00068{height:35.571035px;}
.h5_c00068{height:39.777568px;}
.h4_c00068{height:43.910303px;}
.h6_c00068{height:48.116836px;}
.h9_c00068{height:52.323369px;}
.ha_c00068{height:56.456104px;}
.h0_c00068{height:1335.000000px;}
.w0_c00068{width:880.500000px;}
.x0_c00068{left:0.000000px;}
.x1c_c00068{left:151.500000px;}
.xce_c00068{left:153.000000px;}
.xc4_c00068{left:154.080000px;}
.xd3_c00068{left:158.580000px;}
.x8_c00068{left:163.080000px;}
.x12_c00068{left:166.500000px;}
.xa5_c00068{left:168.420000px;}
.x4f_c00068{left:169.500000px;}
.xba_c00068{left:171.000000px;}
.x63_c00068{left:178.920000px;}
.x83_c00068{left:181.920000px;}
.x3a_c00068{left:184.920000px;}
.xcf_c00068{left:186.000000px;}
.x1d_c00068{left:189.000000px;}
.xae_c00068{left:190.500000px;}
.xc5_c00068{left:191.580000px;}
.x94_c00068{left:193.080000px;}
.x8d_c00068{left:199.500000px;}
.x50_c00068{left:200.580000px;}
.xc6_c00068{left:203.775000px;}
.x9b_c00068{left:205.500000px;}
.x13_c00068{left:208.920000px;}
.x47_c00068{left:212.580000px;}
.xa1_c00068{left:214.920000px;}
.x8e_c00068{left:216.000000px;}
.x74_c00068{left:220.500000px;}
.x3b_c00068{left:223.080000px;}
.xd9_c00068{left:225.420000px;}
.x9_c00068{left:226.500000px;}
.xaa_c00068{left:231.420000px;}
.xbb_c00068{left:234.000000px;}
.xc7_c00068{left:235.500000px;}
.xda_c00068{left:238.500000px;}
.xdf_c00068{left:244.500000px;}
.x1e_c00068{left:245.580000px;}
.x31_c00068{left:249.000000px;}
.x29_c00068{left:250.500000px;}
.x69_c00068{left:252.000000px;}
.x3_c00068{left:256.080000px;}
.x21_c00068{left:258.000000px;}
.x95_c00068{left:259.080000px;}
.x84_c00068{left:261.000000px;}
.xa6_c00068{left:262.080000px;}
.xaf_c00068{left:265.920000px;}
.x14_c00068{left:268.500000px;}
.x48_c00068{left:271.920000px;}
.x75_c00068{left:274.920000px;}
.xa_c00068{left:276.000000px;}
.x22_c00068{left:280.500000px;}
.x3c_c00068{left:282.000000px;}
.x51_c00068{left:284.580000px;}
.x85_c00068{left:286.500000px;}
.xd0_c00068{left:287.580000px;}
.x96_c00068{left:289.500000px;}
.x15_c00068{left:291.000000px;}
.x1f_c00068{left:292.080000px;}
.x3d_c00068{left:294.000000px;}
.xe4_c00068{left:300.420000px;}
.xb0_c00068{left:301.500000px;}
.x2a_c00068{left:303.000000px;}
.xd4_c00068{left:304.500000px;}
.x97_c00068{left:309.420000px;}
.x6a_c00068{left:310.500000px;}
.x76_c00068{left:312.420000px;}
.xbc_c00068{left:315.000000px;}
.x52_c00068{left:321.855000px;}
.x2b_c00068{left:325.080000px;}
.xc8_c00068{left:327.000000px;}
.xb1_c00068{left:330.000000px;}
.x3e_c00068{left:333.000000px;}
.xd5_c00068{left:336.000000px;}
.xb_c00068{left:337.920000px;}
.x49_c00068{left:339.420000px;}
.x4_c00068{left:342.420000px;}
.x5b_c00068{left:343.500000px;}
.x9c_c00068{left:344.580000px;}
.x23_c00068{left:346.275000px;}
.xe3_c00068{left:348.000000px;}
.xe0_c00068{left:351.000000px;}
.x6b_c00068{left:352.920000px;}
.x2c_c00068{left:354.000000px;}
.x86_c00068{left:358.500000px;}
.x3f_c00068{left:359.580000px;}
.xdb_c00068{left:361.080000px;}
.x32_c00068{left:363.000000px;}
.x77_c00068{left:370.920000px;}
.xc_c00068{left:372.000000px;}
.xe8_c00068{left:373.500000px;}
.x20_c00068{left:376.080000px;}
.x9d_c00068{left:377.580000px;}
.xc9_c00068{left:380.580000px;}
.x53_c00068{left:383.775000px;}
.xc0_c00068{left:387.000000px;}
.x16_c00068{left:388.500000px;}
.x24_c00068{left:390.000000px;}
.xab_c00068{left:391.500000px;}
.x1_c00068{left:394.500000px;}
.x78_c00068{left:395.580000px;}
.x40_c00068{left:397.080000px;}
.x4a_c00068{left:398.580000px;}
.x6c_c00068{left:400.500000px;}
.xe1_c00068{left:401.580000px;}
.x33_c00068{left:403.920000px;}
.x5c_c00068{left:406.500000px;}
.xb2_c00068{left:409.500000px;}
.xdc_c00068{left:412.500000px;}
.xca_c00068{left:415.500000px;}
.xa2_c00068{left:417.000000px;}
.xd_c00068{left:418.500000px;}
.x54_c00068{left:421.920000px;}
.xa7_c00068{left:423.420000px;}
.xe5_c00068{left:424.500000px;}
.xb3_c00068{left:425.580000px;}
.x87_c00068{left:427.920000px;}
.xd1_c00068{left:429.000000px;}
.x41_c00068{left:432.000000px;}
.xb9_c00068{left:433.920000px;}
.x6d_c00068{left:435.420000px;}
.xe9_c00068{left:436.500000px;}
.x79_c00068{left:437.580000px;}
.x25_c00068{left:439.920000px;}
.x34_c00068{left:443.580000px;}
.x2d_c00068{left:446.580000px;}
.x55_c00068{left:448.920000px;}
.xea_c00068{left:450.000000px;}
.x42_c00068{left:451.500000px;}
.x5_c00068{left:453.000000px;}
.x88_c00068{left:454.500000px;}
.x8f_c00068{left:456.000000px;}
.xe6_c00068{left:457.920000px;}
.x64_c00068{left:460.500000px;}
.xb4_c00068{left:466.920000px;}
.xbd_c00068{left:471.000000px;}
.xa3_c00068{left:472.080000px;}
.x56_c00068{left:477.420000px;}
.xe_c00068{left:480.000000px;}
.x89_c00068{left:481.500000px;}
.xd6_c00068{left:486.000000px;}
.x43_c00068{left:490.080000px;}
.x5d_c00068{left:493.080000px;}
.x8a_c00068{left:494.580000px;}
.x35_c00068{left:498.000000px;}
.x6e_c00068{left:499.920000px;}
.x7e_c00068{left:501.000000px;}
.x17_c00068{left:504.000000px;}
.x26_c00068{left:507.420000px;}
.x98_c00068{left:508.920000px;}
.x36_c00068{left:510.000000px;}
.x9e_c00068{left:511.500000px;}
.x6_c00068{left:512.580000px;}
.x7f_c00068{left:516.420000px;}
.x44_c00068{left:522.000000px;}
.x2e_c00068{left:524.580000px;}
.xe7_c00068{left:525.645000px;}
.xb5_c00068{left:532.500000px;}
.x90_c00068{left:533.580000px;}
.x6f_c00068{left:537.000000px;}
.x18_c00068{left:540.000000px;}
.x5e_c00068{left:541.920000px;}
.xbe_c00068{left:544.920000px;}
.x4b_c00068{left:547.500000px;}
.x27_c00068{left:550.500000px;}
.xf_c00068{left:553.080000px;}
.x2f_c00068{left:554.580000px;}
.x57_c00068{left:556.080000px;}
.xcb_c00068{left:557.580000px;}
.xc1_c00068{left:561.000000px;}
.xa4_c00068{left:562.500000px;}
.xa8_c00068{left:563.580000px;}
.x7a_c00068{left:567.000000px;}
.x70_c00068{left:568.500000px;}
.x5f_c00068{left:569.580000px;}
.x37_c00068{left:571.920000px;}
.x10_c00068{left:573.420000px;}
.xd2_c00068{left:574.920000px;}
.xac_c00068{left:579.420000px;}
.xdd_c00068{left:580.500000px;}
.xc2_c00068{left:582.420000px;}
.x8b_c00068{left:583.500000px;}
.x7_c00068{left:586.275000px;}
.x11_c00068{left:590.355000px;}
.x71_c00068{left:591.420000px;}
.xcc_c00068{left:595.500000px;}
.x38_c00068{left:600.000000px;}
.xde_c00068{left:602.580000px;}
.x7b_c00068{left:604.080000px;}
.x65_c00068{left:606.000000px;}
.xad_c00068{left:607.080000px;}
.x60_c00068{left:609.000000px;}
.x9f_c00068{left:610.080000px;}
.x28_c00068{left:614.580000px;}
.x80_c00068{left:616.500000px;}
.x58_c00068{left:618.000000px;}
.x8c_c00068{left:619.500000px;}
.xb6_c00068{left:622.080000px;}
.x19_c00068{left:624.420000px;}
.x45_c00068{left:628.080000px;}
.x30_c00068{left:629.580000px;}
.x4c_c00068{left:633.000000px;}
.x7c_c00068{left:634.920000px;}
.x99_c00068{left:636.000000px;}
.x66_c00068{left:642.000000px;}
.x61_c00068{left:643.920000px;}
.xa9_c00068{left:646.500000px;}
.x91_c00068{left:651.000000px;}
.xd7_c00068{left:652.500000px;}
.x1a_c00068{left:654.000000px;}
.x4d_c00068{left:655.920000px;}
.x59_c00068{left:658.500000px;}
.xa0_c00068{left:660.000000px;}
.xcd_c00068{left:663.000000px;}
.x7d_c00068{left:664.500000px;}
.x9a_c00068{left:666.420000px;}
.x92_c00068{left:669.000000px;}
.x81_c00068{left:672.420000px;}
.xd8_c00068{left:673.500000px;}
.x5a_c00068{left:675.420000px;}
.x72_c00068{left:676.500000px;}
.x62_c00068{left:678.000000px;}
.xbf_c00068{left:680.580000px;}
.x4e_c00068{left:682.500000px;}
.x67_c00068{left:684.420000px;}
.x39_c00068{left:689.580000px;}
.xb7_c00068{left:691.500000px;}
.x1b_c00068{left:693.420000px;}
.x93_c00068{left:697.080000px;}
.xc3_c00068{left:699.000000px;}
.x82_c00068{left:700.080000px;}
.x46_c00068{left:703.500000px;}
.xb8_c00068{left:708.000000px;}
.x73_c00068{left:709.500000px;}
.x2_c00068{left:710.580000px;}
.x68_c00068{left:718.500000px;}
.xe2_c00068{left:719.580000px;}
@media print{
.v0_c00068{vertical-align:0.000000pt;}
.ls0_c00068{letter-spacing:0.000000pt;}
.ws0_c00068{word-spacing:0.000000pt;}
.fs6_c00068{font-size:3.040000pt;}
.fsa_c00068{font-size:10.560000pt;}
.fs7_c00068{font-size:16.640000pt;}
.fs0_c00068{font-size:18.133333pt;}
.fs2_c00068{font-size:22.666667pt;}
.fs1_c00068{font-size:25.706667pt;}
.fs4_c00068{font-size:28.746667pt;}
.fs3_c00068{font-size:31.733333pt;}
.fs5_c00068{font-size:34.773333pt;}
.fs8_c00068{font-size:37.813333pt;}
.fs9_c00068{font-size:40.800000pt;}
.y0_c00068{bottom:0.000000pt;}
.yc7_c00068{bottom:355.026667pt;}
.yc6_c00068{bottom:357.106667pt;}
.yc8_c00068{bottom:357.893333pt;}
.yc4_c00068{bottom:358.440000pt;}
.yc9_c00068{bottom:358.640000pt;}
.yc5_c00068{bottom:359.026667pt;}
.yc3_c00068{bottom:360.160000pt;}
.ybe_c00068{bottom:372.360000pt;}
.yc0_c00068{bottom:373.106667pt;}
.yc2_c00068{bottom:373.693333pt;}
.yc1_c00068{bottom:374.440000pt;}
.ybd_c00068{bottom:375.026667pt;}
.ybf_c00068{bottom:375.226667pt;}
.ybc_c00068{bottom:376.360000pt;}
.ybb_c00068{bottom:379.026667pt;}
.yb9_c00068{bottom:392.360000pt;}
.yba_c00068{bottom:393.306667pt;}
.yb8_c00068{bottom:393.693333pt;}
.yb6_c00068{bottom:407.026667pt;}
.yb5_c00068{bottom:409.106667pt;}
.yb2_c00068{bottom:409.133333pt;}
.yb4_c00068{bottom:410.266667pt;}
.yb7_c00068{bottom:411.026667pt;}
.yb3_c00068{bottom:411.226667pt;}
.yb1_c00068{bottom:413.306667pt;}
.yaa_c00068{bottom:425.693333pt;}
.yad_c00068{bottom:426.440000pt;}
.yae_c00068{bottom:426.640000pt;}
.yb0_c00068{bottom:427.226667pt;}
.yaf_c00068{bottom:427.973333pt;}
.ya9_c00068{bottom:428.160000pt;}
.yac_c00068{bottom:428.360000pt;}
.yab_c00068{bottom:428.560000pt;}
.ya6_c00068{bottom:443.026667pt;}
.ya5_c00068{bottom:443.773333pt;}
.ya4_c00068{bottom:443.973333pt;}
.ya2_c00068{bottom:445.106667pt;}
.ya3_c00068{bottom:445.693333pt;}
.ya8_c00068{bottom:445.893333pt;}
.ya7_c00068{bottom:446.640000pt;}
.ya1_c00068{bottom:447.400000pt;}
.y9f_c00068{bottom:447.773333pt;}
.ya0_c00068{bottom:449.893333pt;}
.y9e_c00068{bottom:461.106667pt;}
.y9d_c00068{bottom:463.026667pt;}
.y9b_c00068{bottom:463.600000pt;}
.y9c_c00068{bottom:463.973333pt;}
.y9a_c00068{bottom:465.306667pt;}
.y99_c00068{bottom:478.640000pt;}
.y95_c00068{bottom:479.773333pt;}
.y96_c00068{bottom:480.360000pt;}
.y94_c00068{bottom:480.533333pt;}
.y97_c00068{bottom:480.560000pt;}
.y98_c00068{bottom:481.306667pt;}
.y93_c00068{bottom:481.493333pt;}
.y92_c00068{bottom:495.773333pt;}
.y8e_c00068{bottom:496.933333pt;}
.y90_c00068{bottom:497.693333pt;}
.y91_c00068{bottom:497.893333pt;}
.y8c_c00068{bottom:498.440000pt;}
.y8f_c00068{bottom:498.640000pt;}
.y8d_c00068{bottom:499.026667pt;}
.y8b_c00068{bottom:514.440000pt;}
.y8a_c00068{bottom:515.226667pt;}
.y88_c00068{bottom:515.400000pt;}
.y89_c00068{bottom:516.360000pt;}
.y87_c00068{bottom:516.933333pt;}
.y86_c00068{bottom:518.266667pt;}
.y85_c00068{bottom:531.773333pt;}
.y84_c00068{bottom:532.560000pt;}
.y83_c00068{bottom:533.693333pt;}
.y82_c00068{bottom:535.600000pt;}
.y7f_c00068{bottom:549.106667pt;}
.y7e_c00068{bottom:551.026667pt;}
.y80_c00068{bottom:551.226667pt;}
.y81_c00068{bottom:551.973333pt;}
.y7d_c00068{bottom:552.733333pt;}
.y79_c00068{bottom:566.440000pt;}
.y7a_c00068{bottom:567.773333pt;}
.y78_c00068{bottom:568.360000pt;}
.y7b_c00068{bottom:568.560000pt;}
.y7c_c00068{bottom:568.733333pt;}
.y77_c00068{bottom:569.693333pt;}
.y76_c00068{bottom:570.440000pt;}
.y75_c00068{bottom:585.106667pt;}
.y73_c00068{bottom:585.693333pt;}
.y72_c00068{bottom:586.640000pt;}
.y74_c00068{bottom:587.026667pt;}
.y71_c00068{bottom:587.400000pt;}
.y6f_c00068{bottom:601.493333pt;}
.y70_c00068{bottom:602.440000pt;}
.y6d_c00068{bottom:603.600000pt;}
.y6e_c00068{bottom:604.360000pt;}
.y6c_c00068{bottom:606.066667pt;}
.y68_c00068{bottom:618.440000pt;}
.y67_c00068{bottom:619.773333pt;}
.y69_c00068{bottom:621.693333pt;}
.y66_c00068{bottom:622.066667pt;}
.y6a_c00068{bottom:622.640000pt;}
.y6b_c00068{bottom:623.026667pt;}
.y65_c00068{bottom:637.106667pt;}
.y62_c00068{bottom:637.493333pt;}
.y63_c00068{bottom:639.026667pt;}
.y64_c00068{bottom:639.226667pt;}
.y61_c00068{bottom:639.973333pt;}
.y5d_c00068{bottom:654.440000pt;}
.y5f_c00068{bottom:655.226667pt;}
.y60_c00068{bottom:656.360000pt;}
.y5b_c00068{bottom:656.733333pt;}
.y5e_c00068{bottom:657.306667pt;}
.y5c_c00068{bottom:657.693333pt;}
.y59_c00068{bottom:672.733333pt;}
.y5a_c00068{bottom:673.106667pt;}
.y57_c00068{bottom:673.693333pt;}
.y58_c00068{bottom:673.893333pt;}
.y56_c00068{bottom:675.026667pt;}
.y55_c00068{bottom:688.360000pt;}
.y52_c00068{bottom:690.440000pt;}
.y54_c00068{bottom:691.226667pt;}
.y53_c00068{bottom:691.400000pt;}
.y51_c00068{bottom:692.360000pt;}
.y50_c00068{bottom:694.066667pt;}
.y4c_c00068{bottom:706.826667pt;}
.y4e_c00068{bottom:707.773333pt;}
.y4f_c00068{bottom:708.560000pt;}
.y4d_c00068{bottom:709.693333pt;}
.y48_c00068{bottom:725.106667pt;}
.y4b_c00068{bottom:725.893333pt;}
.y49_c00068{bottom:726.066667pt;}
.y4a_c00068{bottom:727.026667pt;}
.y44_c00068{bottom:742.440000pt;}
.y47_c00068{bottom:743.226667pt;}
.y46_c00068{bottom:743.400000pt;}
.y45_c00068{bottom:744.360000pt;}
.y43_c00068{bottom:744.733333pt;}
.y42_c00068{bottom:745.693333pt;}
.y3f_c00068{bottom:758.440000pt;}
.y41_c00068{bottom:759.026667pt;}
.y3b_c00068{bottom:759.773333pt;}
.y3c_c00068{bottom:761.306667pt;}
.y3d_c00068{bottom:761.693333pt;}
.y3e_c00068{bottom:761.893333pt;}
.y3a_c00068{bottom:762.066667pt;}
.y40_c00068{bottom:762.640000pt;}
.y39_c00068{bottom:777.106667pt;}
.y37_c00068{bottom:779.026667pt;}
.y38_c00068{bottom:779.226667pt;}
.y36_c00068{bottom:780.360000pt;}
.y35_c00068{bottom:781.693333pt;}
.y30_c00068{bottom:793.693333pt;}
.y31_c00068{bottom:794.440000pt;}
.y2f_c00068{bottom:795.400000pt;}
.y34_c00068{bottom:795.773333pt;}
.y32_c00068{bottom:796.360000pt;}
.y33_c00068{bottom:796.560000pt;}
.y2e_c00068{bottom:798.066667pt;}
.y2b_c00068{bottom:811.026667pt;}
.y2c_c00068{bottom:811.773333pt;}
.y28_c00068{bottom:813.106667pt;}
.y29_c00068{bottom:813.693333pt;}
.y27_c00068{bottom:814.266667pt;}
.y2a_c00068{bottom:814.640000pt;}
.y2d_c00068{bottom:815.026667pt;}
.y26_c00068{bottom:830.440000pt;}
.y23_c00068{bottom:831.026667pt;}
.y25_c00068{bottom:831.226667pt;}
.y21_c00068{bottom:831.400000pt;}
.y22_c00068{bottom:832.360000pt;}
.y24_c00068{bottom:832.373333pt;}
.y1f_c00068{bottom:847.773333pt;}
.y1d_c00068{bottom:848.560000pt;}
.y1c_c00068{bottom:848.733333pt;}
.y20_c00068{bottom:849.693333pt;}
.y1e_c00068{bottom:849.706667pt;}
.y16_c00068{bottom:864.160000pt;}
.y1a_c00068{bottom:864.360000pt;}
.y19_c00068{bottom:865.106667pt;}
.y18_c00068{bottom:866.066667pt;}
.y1b_c00068{bottom:867.026667pt;}
.y17_c00068{bottom:867.040000pt;}
.y15_c00068{bottom:882.440000pt;}
.y14_c00068{bottom:884.360000pt;}
.y13_c00068{bottom:884.733333pt;}
.y11_c00068{bottom:899.400000pt;}
.yd_c00068{bottom:899.773333pt;}
.yc_c00068{bottom:900.160000pt;}
.yf_c00068{bottom:900.733333pt;}
.y10_c00068{bottom:901.693333pt;}
.ye_c00068{bottom:901.706667pt;}
.y12_c00068{bottom:901.893333pt;}
.ya_c00068{bottom:923.400000pt;}
.yb_c00068{bottom:923.600000pt;}
.y8_c00068{bottom:924.360000pt;}
.y6_c00068{bottom:924.733333pt;}
.y7_c00068{bottom:925.306667pt;}
.y9_c00068{bottom:926.266667pt;}
.y5_c00068{bottom:943.773333pt;}
.y3_c00068{bottom:944.360000pt;}
.y4_c00068{bottom:945.306667pt;}
.y2_c00068{bottom:977.693333pt;}
.y1_c00068{bottom:979.600000pt;}
.h7_c00068{height:3.739141pt;}
.hb_c00068{height:12.988594pt;}
.h8_c00068{height:20.466875pt;}
.h1_c00068{height:22.303646pt;}
.h3_c00068{height:27.879557pt;}
.h2_c00068{height:31.618698pt;}
.h5_c00068{height:35.357839pt;}
.h4_c00068{height:39.031380pt;}
.h6_c00068{height:42.770521pt;}
.h9_c00068{height:46.509661pt;}
.ha_c00068{height:50.183203pt;}
.h0_c00068{height:1186.666667pt;}
.w0_c00068{width:782.666667pt;}
.x0_c00068{left:0.000000pt;}
.x1c_c00068{left:134.666667pt;}
.xce_c00068{left:136.000000pt;}
.xc4_c00068{left:136.960000pt;}
.xd3_c00068{left:140.960000pt;}
.x8_c00068{left:144.960000pt;}
.x12_c00068{left:148.000000pt;}
.xa5_c00068{left:149.706667pt;}
.x4f_c00068{left:150.666667pt;}
.xba_c00068{left:152.000000pt;}
.x63_c00068{left:159.040000pt;}
.x83_c00068{left:161.706667pt;}
.x3a_c00068{left:164.373333pt;}
.xcf_c00068{left:165.333333pt;}
.x1d_c00068{left:168.000000pt;}
.xae_c00068{left:169.333333pt;}
.xc5_c00068{left:170.293333pt;}
.x94_c00068{left:171.626667pt;}
.x8d_c00068{left:177.333333pt;}
.x50_c00068{left:178.293333pt;}
.xc6_c00068{left:181.133333pt;}
.x9b_c00068{left:182.666667pt;}
.x13_c00068{left:185.706667pt;}
.x47_c00068{left:188.960000pt;}
.xa1_c00068{left:191.040000pt;}
.x8e_c00068{left:192.000000pt;}
.x74_c00068{left:196.000000pt;}
.x3b_c00068{left:198.293333pt;}
.xd9_c00068{left:200.373333pt;}
.x9_c00068{left:201.333333pt;}
.xaa_c00068{left:205.706667pt;}
.xbb_c00068{left:208.000000pt;}
.xc7_c00068{left:209.333333pt;}
.xda_c00068{left:212.000000pt;}
.xdf_c00068{left:217.333333pt;}
.x1e_c00068{left:218.293333pt;}
.x31_c00068{left:221.333333pt;}
.x29_c00068{left:222.666667pt;}
.x69_c00068{left:224.000000pt;}
.x3_c00068{left:227.626667pt;}
.x21_c00068{left:229.333333pt;}
.x95_c00068{left:230.293333pt;}
.x84_c00068{left:232.000000pt;}
.xa6_c00068{left:232.960000pt;}
.xaf_c00068{left:236.373333pt;}
.x14_c00068{left:238.666667pt;}
.x48_c00068{left:241.706667pt;}
.x75_c00068{left:244.373333pt;}
.xa_c00068{left:245.333333pt;}
.x22_c00068{left:249.333333pt;}
.x3c_c00068{left:250.666667pt;}
.x51_c00068{left:252.960000pt;}
.x85_c00068{left:254.666667pt;}
.xd0_c00068{left:255.626667pt;}
.x96_c00068{left:257.333333pt;}
.x15_c00068{left:258.666667pt;}
.x1f_c00068{left:259.626667pt;}
.x3d_c00068{left:261.333333pt;}
.xe4_c00068{left:267.040000pt;}
.xb0_c00068{left:268.000000pt;}
.x2a_c00068{left:269.333333pt;}
.xd4_c00068{left:270.666667pt;}
.x97_c00068{left:275.040000pt;}
.x6a_c00068{left:276.000000pt;}
.x76_c00068{left:277.706667pt;}
.xbc_c00068{left:280.000000pt;}
.x52_c00068{left:286.093333pt;}
.x2b_c00068{left:288.960000pt;}
.xc8_c00068{left:290.666667pt;}
.xb1_c00068{left:293.333333pt;}
.x3e_c00068{left:296.000000pt;}
.xd5_c00068{left:298.666667pt;}
.xb_c00068{left:300.373333pt;}
.x49_c00068{left:301.706667pt;}
.x4_c00068{left:304.373333pt;}
.x5b_c00068{left:305.333333pt;}
.x9c_c00068{left:306.293333pt;}
.x23_c00068{left:307.800000pt;}
.xe3_c00068{left:309.333333pt;}
.xe0_c00068{left:312.000000pt;}
.x6b_c00068{left:313.706667pt;}
.x2c_c00068{left:314.666667pt;}
.x86_c00068{left:318.666667pt;}
.x3f_c00068{left:319.626667pt;}
.xdb_c00068{left:320.960000pt;}
.x32_c00068{left:322.666667pt;}
.x77_c00068{left:329.706667pt;}
.xc_c00068{left:330.666667pt;}
.xe8_c00068{left:332.000000pt;}
.x20_c00068{left:334.293333pt;}
.x9d_c00068{left:335.626667pt;}
.xc9_c00068{left:338.293333pt;}
.x53_c00068{left:341.133333pt;}
.xc0_c00068{left:344.000000pt;}
.x16_c00068{left:345.333333pt;}
.x24_c00068{left:346.666667pt;}
.xab_c00068{left:348.000000pt;}
.x1_c00068{left:350.666667pt;}
.x78_c00068{left:351.626667pt;}
.x40_c00068{left:352.960000pt;}
.x4a_c00068{left:354.293333pt;}
.x6c_c00068{left:356.000000pt;}
.xe1_c00068{left:356.960000pt;}
.x33_c00068{left:359.040000pt;}
.x5c_c00068{left:361.333333pt;}
.xb2_c00068{left:364.000000pt;}
.xdc_c00068{left:366.666667pt;}
.xca_c00068{left:369.333333pt;}
.xa2_c00068{left:370.666667pt;}
.xd_c00068{left:372.000000pt;}
.x54_c00068{left:375.040000pt;}
.xa7_c00068{left:376.373333pt;}
.xe5_c00068{left:377.333333pt;}
.xb3_c00068{left:378.293333pt;}
.x87_c00068{left:380.373333pt;}
.xd1_c00068{left:381.333333pt;}
.x41_c00068{left:384.000000pt;}
.xb9_c00068{left:385.706667pt;}
.x6d_c00068{left:387.040000pt;}
.xe9_c00068{left:388.000000pt;}
.x79_c00068{left:388.960000pt;}
.x25_c00068{left:391.040000pt;}
.x34_c00068{left:394.293333pt;}
.x2d_c00068{left:396.960000pt;}
.x55_c00068{left:399.040000pt;}
.xea_c00068{left:400.000000pt;}
.x42_c00068{left:401.333333pt;}
.x5_c00068{left:402.666667pt;}
.x88_c00068{left:404.000000pt;}
.x8f_c00068{left:405.333333pt;}
.xe6_c00068{left:407.040000pt;}
.x64_c00068{left:409.333333pt;}
.xb4_c00068{left:415.040000pt;}
.xbd_c00068{left:418.666667pt;}
.xa3_c00068{left:419.626667pt;}
.x56_c00068{left:424.373333pt;}
.xe_c00068{left:426.666667pt;}
.x89_c00068{left:428.000000pt;}
.xd6_c00068{left:432.000000pt;}
.x43_c00068{left:435.626667pt;}
.x5d_c00068{left:438.293333pt;}
.x8a_c00068{left:439.626667pt;}
.x35_c00068{left:442.666667pt;}
.x6e_c00068{left:444.373333pt;}
.x7e_c00068{left:445.333333pt;}
.x17_c00068{left:448.000000pt;}
.x26_c00068{left:451.040000pt;}
.x98_c00068{left:452.373333pt;}
.x36_c00068{left:453.333333pt;}
.x9e_c00068{left:454.666667pt;}
.x6_c00068{left:455.626667pt;}
.x7f_c00068{left:459.040000pt;}
.x44_c00068{left:464.000000pt;}
.x2e_c00068{left:466.293333pt;}
.xe7_c00068{left:467.240000pt;}
.xb5_c00068{left:473.333333pt;}
.x90_c00068{left:474.293333pt;}
.x6f_c00068{left:477.333333pt;}
.x18_c00068{left:480.000000pt;}
.x5e_c00068{left:481.706667pt;}
.xbe_c00068{left:484.373333pt;}
.x4b_c00068{left:486.666667pt;}
.x27_c00068{left:489.333333pt;}
.xf_c00068{left:491.626667pt;}
.x2f_c00068{left:492.960000pt;}
.x57_c00068{left:494.293333pt;}
.xcb_c00068{left:495.626667pt;}
.xc1_c00068{left:498.666667pt;}
.xa4_c00068{left:500.000000pt;}
.xa8_c00068{left:500.960000pt;}
.x7a_c00068{left:504.000000pt;}
.x70_c00068{left:505.333333pt;}
.x5f_c00068{left:506.293333pt;}
.x37_c00068{left:508.373333pt;}
.x10_c00068{left:509.706667pt;}
.xd2_c00068{left:511.040000pt;}
.xac_c00068{left:515.040000pt;}
.xdd_c00068{left:516.000000pt;}
.xc2_c00068{left:517.706667pt;}
.x8b_c00068{left:518.666667pt;}
.x7_c00068{left:521.133333pt;}
.x11_c00068{left:524.760000pt;}
.x71_c00068{left:525.706667pt;}
.xcc_c00068{left:529.333333pt;}
.x38_c00068{left:533.333333pt;}
.xde_c00068{left:535.626667pt;}
.x7b_c00068{left:536.960000pt;}
.x65_c00068{left:538.666667pt;}
.xad_c00068{left:539.626667pt;}
.x60_c00068{left:541.333333pt;}
.x9f_c00068{left:542.293333pt;}
.x28_c00068{left:546.293333pt;}
.x80_c00068{left:548.000000pt;}
.x58_c00068{left:549.333333pt;}
.x8c_c00068{left:550.666667pt;}
.xb6_c00068{left:552.960000pt;}
.x19_c00068{left:555.040000pt;}
.x45_c00068{left:558.293333pt;}
.x30_c00068{left:559.626667pt;}
.x4c_c00068{left:562.666667pt;}
.x7c_c00068{left:564.373333pt;}
.x99_c00068{left:565.333333pt;}
.x66_c00068{left:570.666667pt;}
.x61_c00068{left:572.373333pt;}
.xa9_c00068{left:574.666667pt;}
.x91_c00068{left:578.666667pt;}
.xd7_c00068{left:580.000000pt;}
.x1a_c00068{left:581.333333pt;}
.x4d_c00068{left:583.040000pt;}
.x59_c00068{left:585.333333pt;}
.xa0_c00068{left:586.666667pt;}
.xcd_c00068{left:589.333333pt;}
.x7d_c00068{left:590.666667pt;}
.x9a_c00068{left:592.373333pt;}
.x92_c00068{left:594.666667pt;}
.x81_c00068{left:597.706667pt;}
.xd8_c00068{left:598.666667pt;}
.x5a_c00068{left:600.373333pt;}
.x72_c00068{left:601.333333pt;}
.x62_c00068{left:602.666667pt;}
.xbf_c00068{left:604.960000pt;}
.x4e_c00068{left:606.666667pt;}
.x67_c00068{left:608.373333pt;}
.x39_c00068{left:612.960000pt;}
.xb7_c00068{left:614.666667pt;}
.x1b_c00068{left:616.373333pt;}
.x93_c00068{left:619.626667pt;}
.xc3_c00068{left:621.333333pt;}
.x82_c00068{left:622.293333pt;}
.x46_c00068{left:625.333333pt;}
.xb8_c00068{left:629.333333pt;}
.x73_c00068{left:630.666667pt;}
.x2_c00068{left:631.626667pt;}
.x68_c00068{left:638.666667pt;}
.xe2_c00068{left:639.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_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_19f3398b4318710086fb9672.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;line-height:1.688965;font-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_c00069{transform:matrix(0.339518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339518,0.000000,0.000000,0.250000,0,0);}
.m43_c00069{transform:matrix(0.350104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350104,0.000000,0.000000,0.250000,0,0);}
.m20_c00069{transform:matrix(0.354360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354360,0.000000,0.000000,0.250000,0,0);}
.m5b_c00069{transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);}
.m5d_c00069{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m17_c00069{transform:matrix(0.385900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385900,0.000000,0.000000,0.250000,0,0);}
.m55_c00069{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m11_c00069{transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);}
.m1c_c00069{transform:matrix(0.403525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403525,0.000000,0.000000,0.250000,0,0);}
.m35_c00069{transform:matrix(0.409232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409232,0.000000,0.000000,0.250000,0,0);}
.m48_c00069{transform:matrix(0.417440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417440,0.000000,0.000000,0.250000,0,0);}
.m1d_c00069{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.m3e_c00069{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m4e_c00069{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.m16_c00069{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.m3f_c00069{transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);}
.m7_c00069{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m52_c00069{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m10_c00069{transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);}
.m6_c00069{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m63_c00069{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);}
.m4a_c00069{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m12_c00069{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m41_c00069{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.m32_c00069{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.m37_c00069{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m51_c00069{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m2a_c00069{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.m54_c00069{transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);}
.md_c00069{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m2d_c00069{transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);}
.m50_c00069{transform:matrix(0.474706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474706,0.000000,0.000000,0.250000,0,0);}
.m9_c00069{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m5e_c00069{transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);}
.ma_c00069{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m38_c00069{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m3d_c00069{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m42_c00069{transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);}
.m5f_c00069{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m2_c00069{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_c00069{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m64_c00069{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m62_c00069{transform:matrix(0.506471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506471,0.000000,0.000000,0.250000,0,0);}
.m4f_c00069{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m5c_c00069{transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);}
.m56_c00069{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_c00069{transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);}
.m2b_c00069{transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);}
.m1b_c00069{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.m45_c00069{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m46_c00069{transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);}
.me_c00069{transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);}
.m59_c00069{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.m24_c00069{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m5_c00069{transform:matrix(0.539889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539889,0.000000,0.000000,0.250000,0,0);}
.m31_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);}
.m19_c00069{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m5a_c00069{transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);}
.m4b_c00069{transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);}
.m26_c00069{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.mb_c00069{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.m4c_c00069{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m3c_c00069{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m3_c00069{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m53_c00069{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m1e_c00069{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m21_c00069{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m28_c00069{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.m14_c00069{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.m27_c00069{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m40_c00069{transform:matrix(0.607353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607353,0.000000,0.000000,0.250000,0,0);}
.m57_c00069{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m34_c00069{transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);}
.m36_c00069{transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);}
.m22_c00069{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.mf_c00069{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m58_c00069{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);}
.m47_c00069{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m33_c00069{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.mc_c00069{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m0_c00069{transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);}
.m1a_c00069{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m65_c00069{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m30_c00069{transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);}
.m44_c00069{transform:matrix(0.657051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657051,0.000000,0.000000,0.250000,0,0);}
.m3b_c00069{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m49_c00069{transform:matrix(0.661859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661859,0.000000,0.000000,0.250000,0,0);}
.m25_c00069{transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);}
.m8_c00069{transform:matrix(0.680147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680147,0.000000,0.000000,0.250000,0,0);}
.m66_c00069{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m23_c00069{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m29_c00069{transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);}
.m1f_c00069{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m2e_c00069{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);}
.m2f_c00069{transform:matrix(0.734559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.734559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.734559,0.000000,0.000000,0.250000,0,0);}
.m3a_c00069{transform:matrix(0.740441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.740441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.740441,0.000000,0.000000,0.250000,0,0);}
.m60_c00069{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);}
.m4d_c00069{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.m4_c00069{transform:matrix(0.775294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.775294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.775294,0.000000,0.000000,0.250000,0,0);}
.m1_c00069{transform:matrix(0.860996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.860996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.860996,0.000000,0.000000,0.250000,0,0);}
.m2c_c00069{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m61_c00069{transform:matrix(1.123348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.123348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.123348,0.000000,0.000000,0.250000,0,0);}
.m13_c00069{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.v0_c00069{vertical-align:0.000000px;}
.ls0_c00069{letter-spacing:0.000000px;}
.sc__c00069{text-shadow:none;}
.sc0_c00069{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00069{-webkit-text-stroke:0px transparent;}
.sc0_c00069{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00069{word-spacing:0.000000px;}
.fc0_c00069{color:transparent;}
.fs5_c00069{font-size:3.420000px;}
.fs7_c00069{font-size:13.620000px;}
.fs6_c00069{font-size:18.720000px;}
.fs4_c00069{font-size:20.400000px;}
.fs1_c00069{font-size:25.500000px;}
.fs0_c00069{font-size:28.920000px;}
.fs2_c00069{font-size:32.340000px;}
.fs3_c00069{font-size:35.700000px;}
.y0_c00069{bottom:0.000000px;}
.y31_c00069{bottom:775.905000px;}
.y33_c00069{bottom:776.130000px;}
.y32_c00069{bottom:776.550000px;}
.y34_c00069{bottom:776.970000px;}
.y2c_c00069{bottom:789.405000px;}
.y2d_c00069{bottom:789.825000px;}
.y2b_c00069{bottom:790.905000px;}
.y30_c00069{bottom:791.130000px;}
.y2a_c00069{bottom:791.550000px;}
.y29_c00069{bottom:791.970000px;}
.y2f_c00069{bottom:792.195000px;}
.y2e_c00069{bottom:793.050000px;}
.y23_c00069{bottom:803.325000px;}
.y26_c00069{bottom:804.405000px;}
.y28_c00069{bottom:804.825000px;}
.y22_c00069{bottom:805.470000px;}
.y25_c00069{bottom:805.905000px;}
.y24_c00069{bottom:806.130000px;}
.y27_c00069{bottom:806.970000px;}
.y21_c00069{bottom:819.825000px;}
.y1e_c00069{bottom:821.130000px;}
.y1f_c00069{bottom:821.550000px;}
.y20_c00069{bottom:821.970000px;}
.y1d_c00069{bottom:833.970000px;}
.y1b_c00069{bottom:835.050000px;}
.y19_c00069{bottom:835.905000px;}
.y1c_c00069{bottom:836.970000px;}
.y1a_c00069{bottom:838.050000px;}
.y17_c00069{bottom:849.405000px;}
.y16_c00069{bottom:850.470000px;}
.y18_c00069{bottom:851.130000px;}
.y15_c00069{bottom:851.550000px;}
.y13_c00069{bottom:864.405000px;}
.y12_c00069{bottom:865.470000px;}
.y14_c00069{bottom:865.695000px;}
.y11_c00069{bottom:866.550000px;}
.yf_c00069{bottom:878.325000px;}
.y10_c00069{bottom:879.630000px;}
.yd_c00069{bottom:880.470000px;}
.ye_c00069{bottom:880.920000px;}
.ya_c00069{bottom:893.325000px;}
.yc_c00069{bottom:895.470000px;}
.yb_c00069{bottom:895.920000px;}
.y8_c00069{bottom:917.550000px;}
.y7_c00069{bottom:918.405000px;}
.y9_c00069{bottom:919.470000px;}
.y6_c00069{bottom:920.550000px;}
.y5_c00069{bottom:944.745000px;}
.y4_c00069{bottom:945.825000px;}
.y3_c00069{bottom:947.970000px;}
.y2_c00069{bottom:975.405000px;}
.y1_c00069{bottom:1005.405000px;}
.h6_c00069{height:4.206533px;}
.h8_c00069{height:16.752334px;}
.h7_c00069{height:23.025234px;}
.h5_c00069{height:25.091602px;}
.h2_c00069{height:31.364502px;}
.h1_c00069{height:35.571035px;}
.h3_c00069{height:39.777568px;}
.h4_c00069{height:43.910303px;}
.h0_c00069{height:1335.000000px;}
.w0_c00069{width:880.500000px;}
.x0_c00069{left:0.000000px;}
.x21_c00069{left:151.500000px;}
.x9_c00069{left:165.000000px;}
.x15_c00069{left:166.500000px;}
.x2d_c00069{left:168.000000px;}
.x3a_c00069{left:173.355000px;}
.x5a_c00069{left:179.580000px;}
.x46_c00069{left:187.500000px;}
.x22_c00069{left:189.000000px;}
.x2e_c00069{left:191.580000px;}
.x5b_c00069{left:196.500000px;}
.x12_c00069{left:201.000000px;}
.x47_c00069{left:205.500000px;}
.xa_c00069{left:214.080000px;}
.x23_c00069{left:222.000000px;}
.x3b_c00069{left:223.500000px;}
.x16_c00069{left:226.500000px;}
.x48_c00069{left:231.420000px;}
.x67_c00069{left:234.000000px;}
.x52_c00069{left:241.080000px;}
.x3c_c00069{left:242.355000px;}
.x17_c00069{left:246.855000px;}
.x13_c00069{left:253.500000px;}
.x2f_c00069{left:256.920000px;}
.x14_c00069{left:271.080000px;}
.x3d_c00069{left:277.500000px;}
.xb_c00069{left:284.355000px;}
.x5c_c00069{left:288.000000px;}
.x18_c00069{left:296.580000px;}
.x30_c00069{left:300.000000px;}
.x53_c00069{left:304.500000px;}
.x5_c00069{left:306.000000px;}
.x3e_c00069{left:313.920000px;}
.x24_c00069{left:324.000000px;}
.x5d_c00069{left:327.000000px;}
.x49_c00069{left:332.355000px;}
.xc_c00069{left:339.855000px;}
.x25_c00069{left:342.000000px;}
.x31_c00069{left:345.420000px;}
.x1_c00069{left:352.080000px;}
.x3_c00069{left:363.645000px;}
.x19_c00069{left:366.000000px;}
.xd_c00069{left:375.000000px;}
.x6_c00069{left:378.000000px;}
.x26_c00069{left:384.000000px;}
.x54_c00069{left:391.080000px;}
.x3f_c00069{left:393.420000px;}
.x32_c00069{left:396.000000px;}
.x2_c00069{left:408.000000px;}
.x5e_c00069{left:409.500000px;}
.x40_c00069{left:411.000000px;}
.xe_c00069{left:413.580000px;}
.x4a_c00069{left:421.500000px;}
.x4_c00069{left:425.580000px;}
.x27_c00069{left:431.580000px;}
.x1a_c00069{left:433.500000px;}
.x41_c00069{left:435.000000px;}
.x1b_c00069{left:450.000000px;}
.x55_c00069{left:456.420000px;}
.x33_c00069{left:457.500000px;}
.xf_c00069{left:462.000000px;}
.x5f_c00069{left:466.920000px;}
.x4b_c00069{left:468.000000px;}
.x7_c00069{left:470.355000px;}
.x34_c00069{left:486.420000px;}
.x56_c00069{left:492.000000px;}
.x42_c00069{left:493.500000px;}
.x4c_c00069{left:496.500000px;}
.x28_c00069{left:501.000000px;}
.x60_c00069{left:504.000000px;}
.x10_c00069{left:522.420000px;}
.x57_c00069{left:524.580000px;}
.x8_c00069{left:535.275000px;}
.x1c_c00069{left:541.500000px;}
.x11_c00069{left:546.420000px;}
.x61_c00069{left:549.000000px;}
.x29_c00069{left:550.920000px;}
.x35_c00069{left:556.920000px;}
.x62_c00069{left:562.500000px;}
.x43_c00069{left:565.500000px;}
.x4d_c00069{left:567.000000px;}
.x36_c00069{left:573.000000px;}
.x58_c00069{left:577.500000px;}
.x2a_c00069{left:595.500000px;}
.x44_c00069{left:616.500000px;}
.x4e_c00069{left:619.500000px;}
.x37_c00069{left:624.000000px;}
.x63_c00069{left:630.000000px;}
.x1d_c00069{left:634.500000px;}
.x4f_c00069{left:637.500000px;}
.x1e_c00069{left:645.000000px;}
.x2b_c00069{left:652.500000px;}
.x50_c00069{left:655.500000px;}
.x45_c00069{left:657.000000px;}
.x64_c00069{left:660.000000px;}
.x2c_c00069{left:663.420000px;}
.x38_c00069{left:669.000000px;}
.x65_c00069{left:672.000000px;}
.x1f_c00069{left:673.500000px;}
.x59_c00069{left:678.420000px;}
.x51_c00069{left:679.500000px;}
.x39_c00069{left:696.420000px;}
.x66_c00069{left:711.000000px;}
.x20_c00069{left:718.080000px;}
@media print{
.v0_c00069{vertical-align:0.000000pt;}
.ls0_c00069{letter-spacing:0.000000pt;}
.ws0_c00069{word-spacing:0.000000pt;}
.fs5_c00069{font-size:3.040000pt;}
.fs7_c00069{font-size:12.106667pt;}
.fs6_c00069{font-size:16.640000pt;}
.fs4_c00069{font-size:18.133333pt;}
.fs1_c00069{font-size:22.666667pt;}
.fs0_c00069{font-size:25.706667pt;}
.fs2_c00069{font-size:28.746667pt;}
.fs3_c00069{font-size:31.733333pt;}
.y0_c00069{bottom:0.000000pt;}
.y31_c00069{bottom:689.693333pt;}
.y33_c00069{bottom:689.893333pt;}
.y32_c00069{bottom:690.266667pt;}
.y34_c00069{bottom:690.640000pt;}
.y2c_c00069{bottom:701.693333pt;}
.y2d_c00069{bottom:702.066667pt;}
.y2b_c00069{bottom:703.026667pt;}
.y30_c00069{bottom:703.226667pt;}
.y2a_c00069{bottom:703.600000pt;}
.y29_c00069{bottom:703.973333pt;}
.y2f_c00069{bottom:704.173333pt;}
.y2e_c00069{bottom:704.933333pt;}
.y23_c00069{bottom:714.066667pt;}
.y26_c00069{bottom:715.026667pt;}
.y28_c00069{bottom:715.400000pt;}
.y22_c00069{bottom:715.973333pt;}
.y25_c00069{bottom:716.360000pt;}
.y24_c00069{bottom:716.560000pt;}
.y27_c00069{bottom:717.306667pt;}
.y21_c00069{bottom:728.733333pt;}
.y1e_c00069{bottom:729.893333pt;}
.y1f_c00069{bottom:730.266667pt;}
.y20_c00069{bottom:730.640000pt;}
.y1d_c00069{bottom:741.306667pt;}
.y1b_c00069{bottom:742.266667pt;}
.y19_c00069{bottom:743.026667pt;}
.y1c_c00069{bottom:743.973333pt;}
.y1a_c00069{bottom:744.933333pt;}
.y17_c00069{bottom:755.026667pt;}
.y16_c00069{bottom:755.973333pt;}
.y18_c00069{bottom:756.560000pt;}
.y15_c00069{bottom:756.933333pt;}
.y13_c00069{bottom:768.360000pt;}
.y12_c00069{bottom:769.306667pt;}
.y14_c00069{bottom:769.506667pt;}
.y11_c00069{bottom:770.266667pt;}
.yf_c00069{bottom:780.733333pt;}
.y10_c00069{bottom:781.893333pt;}
.yd_c00069{bottom:782.640000pt;}
.ye_c00069{bottom:783.040000pt;}
.ya_c00069{bottom:794.066667pt;}
.yc_c00069{bottom:795.973333pt;}
.yb_c00069{bottom:796.373333pt;}
.y8_c00069{bottom:815.600000pt;}
.y7_c00069{bottom:816.360000pt;}
.y9_c00069{bottom:817.306667pt;}
.y6_c00069{bottom:818.266667pt;}
.y5_c00069{bottom:839.773333pt;}
.y4_c00069{bottom:840.733333pt;}
.y3_c00069{bottom:842.640000pt;}
.y2_c00069{bottom:867.026667pt;}
.y1_c00069{bottom:893.693333pt;}
.h6_c00069{height:3.739141pt;}
.h8_c00069{height:14.890964pt;}
.h7_c00069{height:20.466875pt;}
.h5_c00069{height:22.303646pt;}
.h2_c00069{height:27.879557pt;}
.h1_c00069{height:31.618698pt;}
.h3_c00069{height:35.357839pt;}
.h4_c00069{height:39.031380pt;}
.h0_c00069{height:1186.666667pt;}
.w0_c00069{width:782.666667pt;}
.x0_c00069{left:0.000000pt;}
.x21_c00069{left:134.666667pt;}
.x9_c00069{left:146.666667pt;}
.x15_c00069{left:148.000000pt;}
.x2d_c00069{left:149.333333pt;}
.x3a_c00069{left:154.093333pt;}
.x5a_c00069{left:159.626667pt;}
.x46_c00069{left:166.666667pt;}
.x22_c00069{left:168.000000pt;}
.x2e_c00069{left:170.293333pt;}
.x5b_c00069{left:174.666667pt;}
.x12_c00069{left:178.666667pt;}
.x47_c00069{left:182.666667pt;}
.xa_c00069{left:190.293333pt;}
.x23_c00069{left:197.333333pt;}
.x3b_c00069{left:198.666667pt;}
.x16_c00069{left:201.333333pt;}
.x48_c00069{left:205.706667pt;}
.x67_c00069{left:208.000000pt;}
.x52_c00069{left:214.293333pt;}
.x3c_c00069{left:215.426667pt;}
.x17_c00069{left:219.426667pt;}
.x13_c00069{left:225.333333pt;}
.x2f_c00069{left:228.373333pt;}
.x14_c00069{left:240.960000pt;}
.x3d_c00069{left:246.666667pt;}
.xb_c00069{left:252.760000pt;}
.x5c_c00069{left:256.000000pt;}
.x18_c00069{left:263.626667pt;}
.x30_c00069{left:266.666667pt;}
.x53_c00069{left:270.666667pt;}
.x5_c00069{left:272.000000pt;}
.x3e_c00069{left:279.040000pt;}
.x24_c00069{left:288.000000pt;}
.x5d_c00069{left:290.666667pt;}
.x49_c00069{left:295.426667pt;}
.xc_c00069{left:302.093333pt;}
.x25_c00069{left:304.000000pt;}
.x31_c00069{left:307.040000pt;}
.x1_c00069{left:312.960000pt;}
.x3_c00069{left:323.240000pt;}
.x19_c00069{left:325.333333pt;}
.xd_c00069{left:333.333333pt;}
.x6_c00069{left:336.000000pt;}
.x26_c00069{left:341.333333pt;}
.x54_c00069{left:347.626667pt;}
.x3f_c00069{left:349.706667pt;}
.x32_c00069{left:352.000000pt;}
.x2_c00069{left:362.666667pt;}
.x5e_c00069{left:364.000000pt;}
.x40_c00069{left:365.333333pt;}
.xe_c00069{left:367.626667pt;}
.x4a_c00069{left:374.666667pt;}
.x4_c00069{left:378.293333pt;}
.x27_c00069{left:383.626667pt;}
.x1a_c00069{left:385.333333pt;}
.x41_c00069{left:386.666667pt;}
.x1b_c00069{left:400.000000pt;}
.x55_c00069{left:405.706667pt;}
.x33_c00069{left:406.666667pt;}
.xf_c00069{left:410.666667pt;}
.x5f_c00069{left:415.040000pt;}
.x4b_c00069{left:416.000000pt;}
.x7_c00069{left:418.093333pt;}
.x34_c00069{left:432.373333pt;}
.x56_c00069{left:437.333333pt;}
.x42_c00069{left:438.666667pt;}
.x4c_c00069{left:441.333333pt;}
.x28_c00069{left:445.333333pt;}
.x60_c00069{left:448.000000pt;}
.x10_c00069{left:464.373333pt;}
.x57_c00069{left:466.293333pt;}
.x8_c00069{left:475.800000pt;}
.x1c_c00069{left:481.333333pt;}
.x11_c00069{left:485.706667pt;}
.x61_c00069{left:488.000000pt;}
.x29_c00069{left:489.706667pt;}
.x35_c00069{left:495.040000pt;}
.x62_c00069{left:500.000000pt;}
.x43_c00069{left:502.666667pt;}
.x4d_c00069{left:504.000000pt;}
.x36_c00069{left:509.333333pt;}
.x58_c00069{left:513.333333pt;}
.x2a_c00069{left:529.333333pt;}
.x44_c00069{left:548.000000pt;}
.x4e_c00069{left:550.666667pt;}
.x37_c00069{left:554.666667pt;}
.x63_c00069{left:560.000000pt;}
.x1d_c00069{left:564.000000pt;}
.x4f_c00069{left:566.666667pt;}
.x1e_c00069{left:573.333333pt;}
.x2b_c00069{left:580.000000pt;}
.x50_c00069{left:582.666667pt;}
.x45_c00069{left:584.000000pt;}
.x64_c00069{left:586.666667pt;}
.x2c_c00069{left:589.706667pt;}
.x38_c00069{left:594.666667pt;}
.x65_c00069{left:597.333333pt;}
.x1f_c00069{left:598.666667pt;}
.x59_c00069{left:603.040000pt;}
.x51_c00069{left:604.000000pt;}
.x39_c00069{left:619.040000pt;}
.x66_c00069{left:632.000000pt;}
.x20_c00069{left:638.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_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_5d12c1e654281e95544207d0.woff2')format("woff");}.ff1_c00070{font-family:ff1_c00070;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb9_c00070{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.mc3_c00070{transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);}
.m6e_c00070{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m45_c00070{transform:matrix(0.363025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363025,0.000000,0.000000,0.250000,0,0);}
.m32_c00070{transform:matrix(0.365798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365798,0.000000,0.000000,0.250000,0,0);}
.m50_c00070{transform:matrix(0.366948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366948,0.000000,0.000000,0.250000,0,0);}
.maf_c00070{transform:matrix(0.368482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368482,0.000000,0.000000,0.250000,0,0);}
.me_c00070{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m9d_c00070{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mc8_c00070{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m19_c00070{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m30_c00070{transform:matrix(0.376534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376534,0.000000,0.000000,0.250000,0,0);}
.m6c_c00070{transform:matrix(0.376917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376917,0.000000,0.000000,0.250000,0,0);}
.m90_c00070{transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);}
.m77_c00070{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.mb0_c00070{transform:matrix(0.388420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388420,0.000000,0.000000,0.250000,0,0);}
.mcd_c00070{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m9c_c00070{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.mb6_c00070{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mc4_c00070{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.mc6_c00070{transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);}
.m34_c00070{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m47_c00070{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m44_c00070{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m73_c00070{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m93_c00070{transform:matrix(0.394555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394555,0.000000,0.000000,0.250000,0,0);}
.m1c_c00070{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m11_c00070{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.mb1_c00070{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m1d_c00070{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m6a_c00070{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);}
.m7f_c00070{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m67_c00070{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m35_c00070{transform:matrix(0.406825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406825,0.000000,0.000000,0.250000,0,0);}
.mc0_c00070{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.mae_c00070{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m89_c00070{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m87_c00070{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m40_c00070{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.m6d_c00070{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m62_c00070{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m97_c00070{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m53_c00070{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m8e_c00070{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m20_c00070{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m28_c00070{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m2d_c00070{transform:matrix(0.419605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419605,0.000000,0.000000,0.250000,0,0);}
.m49_c00070{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m4e_c00070{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m54_c00070{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m4_c00070{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m98_c00070{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m2f_c00070{transform:matrix(0.425997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425997,0.000000,0.000000,0.250000,0,0);}
.m69_c00070{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m3d_c00070{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m9e_c00070{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.ma7_c00070{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m4f_c00070{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m26_c00070{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m81_c00070{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.mc7_c00070{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m23_c00070{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.maa_c00070{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mb2_c00070{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.mc5_c00070{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.ma9_c00070{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.mad_c00070{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m72_c00070{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m91_c00070{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m31_c00070{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m76_c00070{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m83_c00070{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.ma4_c00070{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m92_c00070{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.mc1_c00070{transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);}
.mca_c00070{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m3b_c00070{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mbc_c00070{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m25_c00070{transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);}
.mb5_c00070{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00070{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.mba_c00070{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.m74_c00070{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.ma2_c00070{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m99_c00070{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.ma1_c00070{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m5_c00070{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m84_c00070{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m8a_c00070{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m8d_c00070{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m9f_c00070{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m7d_c00070{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m1f_c00070{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mac_c00070{transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);}
.m9_c00070{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_c00070{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mbe_c00070{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m6b_c00070{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m88_c00070{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m18_c00070{transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);}
.m71_c00070{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m8b_c00070{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m9a_c00070{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m75_c00070{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m7a_c00070{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m82_c00070{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m14_c00070{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.mcb_c00070{transform:matrix(0.522263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522263,0.000000,0.000000,0.250000,0,0);}
.m51_c00070{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m64_c00070{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.ma8_c00070{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.ma_c00070{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m24_c00070{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m15_c00070{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m7b_c00070{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m21_c00070{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m29_c00070{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m8_c00070{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m3c_c00070{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m12_c00070{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m52_c00070{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m2_c00070{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m70_c00070{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m39_c00070{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m2e_c00070{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m63_c00070{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.md_c00070{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m5f_c00070{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m3_c00070{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m79_c00070{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m56_c00070{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m2c_c00070{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m5d_c00070{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m10_c00070{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m65_c00070{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m13_c00070{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mb_c00070{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m17_c00070{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m9b_c00070{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mbd_c00070{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);}
.m4a_c00070{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m3f_c00070{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mc9_c00070{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m5e_c00070{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m7_c00070{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m16_c00070{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m66_c00070{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m6f_c00070{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m61_c00070{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m3a_c00070{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.mb3_c00070{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.ma0_c00070{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m78_c00070{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m94_c00070{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m7c_c00070{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m8f_c00070{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m96_c00070{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m1e_c00070{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.m5b_c00070{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m5c_c00070{transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);}
.mc_c00070{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.mcc_c00070{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m85_c00070{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m2b_c00070{transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);}
.m36_c00070{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m1b_c00070{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m38_c00070{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m7e_c00070{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m5a_c00070{transform:matrix(0.617059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617059,0.000000,0.000000,0.250000,0,0);}
.m55_c00070{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m86_c00070{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m4d_c00070{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_c00070{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m0_c00070{transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);}
.m59_c00070{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mb4_c00070{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.ma6_c00070{transform:matrix(0.649412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649412,0.000000,0.000000,0.250000,0,0);}
.ma5_c00070{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m22_c00070{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);}
.m41_c00070{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m2a_c00070{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m57_c00070{transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);}
.m80_c00070{transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);}
.m3e_c00070{transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);}
.m58_c00070{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m95_c00070{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.m68_c00070{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m48_c00070{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);}
.m27_c00070{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m42_c00070{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mbb_c00070{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m37_c00070{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m6_c00070{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mbf_c00070{transform:matrix(0.736471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736471,0.000000,0.000000,0.250000,0,0);}
.mab_c00070{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.mf_c00070{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m46_c00070{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);}
.m43_c00070{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m8c_c00070{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m60_c00070{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mb7_c00070{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.ma3_c00070{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m33_c00070{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m4c_c00070{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m1_c00070{transform:matrix(0.871369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.871369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.871369,0.000000,0.000000,0.250000,0,0);}
.m4b_c00070{transform:matrix(0.947059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.947059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.947059,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;}
.fs2_c00070{font-size:18.720000px;}
.fs5_c00070{font-size:20.400000px;}
.fs4_c00070{font-size:25.500000px;}
.fs0_c00070{font-size:28.920000px;}
.fs3_c00070{font-size:32.340000px;}
.fs1_c00070{font-size:35.700000px;}
.fs7_c00070{font-size:39.120000px;}
.fs6_c00070{font-size:42.540000px;}
.y0_c00070{bottom:0.000000px;}
.ycb_c00070{bottom:230.745000px;}
.ycc_c00070{bottom:231.405000px;}
.yc8_c00070{bottom:232.245000px;}
.yc9_c00070{bottom:232.905000px;}
.yca_c00070{bottom:233.970000px;}
.yc7_c00070{bottom:234.825000px;}
.yc6_c00070{bottom:235.905000px;}
.yc3_c00070{bottom:250.245000px;}
.yc4_c00070{bottom:251.745000px;}
.yc2_c00070{bottom:251.970000px;}
.ybf_c00070{bottom:252.180000px;}
.yc1_c00070{bottom:252.405000px;}
.yc0_c00070{bottom:253.905000px;}
.yc5_c00070{bottom:254.970000px;}
.ybb_c00070{bottom:270.825000px;}
.ybc_c00070{bottom:271.245000px;}
.ybd_c00070{bottom:271.905000px;}
.yba_c00070{bottom:273.405000px;}
.ybe_c00070{bottom:273.630000px;}
.yb9_c00070{bottom:274.245000px;}
.yb8_c00070{bottom:276.825000px;}
.yb6_c00070{bottom:290.745000px;}
.yb7_c00070{bottom:291.405000px;}
.yb5_c00070{bottom:292.680000px;}
.yb1_c00070{bottom:310.245000px;}
.yb0_c00070{bottom:311.745000px;}
.yb3_c00070{bottom:311.970000px;}
.yb2_c00070{bottom:312.405000px;}
.yb4_c00070{bottom:313.905000px;}
.yae_c00070{bottom:329.325000px;}
.yab_c00070{bottom:329.745000px;}
.yac_c00070{bottom:331.905000px;}
.yad_c00070{bottom:332.970000px;}
.yaf_c00070{bottom:333.405000px;}
.ya9_c00070{bottom:334.470000px;}
.yaa_c00070{bottom:334.905000px;}
.ya8_c00070{bottom:348.405000px;}
.ya7_c00070{bottom:349.245000px;}
.ya6_c00070{bottom:349.680000px;}
.ya5_c00070{bottom:351.180000px;}
.ya0_c00070{bottom:368.745000px;}
.ya3_c00070{bottom:369.825000px;}
.ya4_c00070{bottom:370.905000px;}
.ya2_c00070{bottom:371.130000px;}
.ya1_c00070{bottom:371.970000px;}
.y9f_c00070{bottom:372.405000px;}
.y9e_c00070{bottom:372.825000px;}
.y9d_c00070{bottom:375.825000px;}
.y9b_c00070{bottom:387.405000px;}
.y9c_c00070{bottom:387.825000px;}
.y9a_c00070{bottom:388.680000px;}
.y99_c00070{bottom:389.745000px;}
.y98_c00070{bottom:390.180000px;}
.y97_c00070{bottom:407.745000px;}
.y96_c00070{bottom:408.825000px;}
.y93_c00070{bottom:409.245000px;}
.y95_c00070{bottom:409.905000px;}
.y94_c00070{bottom:410.130000px;}
.y92_c00070{bottom:411.405000px;}
.y91_c00070{bottom:411.825000px;}
.y90_c00070{bottom:413.970000px;}
.y8f_c00070{bottom:427.245000px;}
.y8e_c00070{bottom:429.405000px;}
.y8c_c00070{bottom:429.630000px;}
.y8d_c00070{bottom:430.470000px;}
.y8b_c00070{bottom:430.905000px;}
.y8a_c00070{bottom:431.325000px;}
.y87_c00070{bottom:448.245000px;}
.y85_c00070{bottom:449.745000px;}
.y88_c00070{bottom:449.970000px;}
.y89_c00070{bottom:450.405000px;}
.y86_c00070{bottom:451.905000px;}
.y84_c00070{bottom:454.905000px;}
.y82_c00070{bottom:466.470000px;}
.y81_c00070{bottom:468.825000px;}
.y83_c00070{bottom:469.905000px;}
.y7f_c00070{bottom:487.245000px;}
.y7e_c00070{bottom:489.405000px;}
.y80_c00070{bottom:490.470000px;}
.y7d_c00070{bottom:491.325000px;}
.y7c_c00070{bottom:506.745000px;}
.y7a_c00070{bottom:508.245000px;}
.y7b_c00070{bottom:508.905000px;}
.y79_c00070{bottom:510.405000px;}
.y78_c00070{bottom:511.905000px;}
.y77_c00070{bottom:513.630000px;}
.y76_c00070{bottom:514.050000px;}
.y75_c00070{bottom:531.180000px;}
.y72_c00070{bottom:532.245000px;}
.y74_c00070{bottom:534.405000px;}
.y73_c00070{bottom:535.470000px;}
.y71_c00070{bottom:566.745000px;}
.y70_c00070{bottom:568.905000px;}
.y6e_c00070{bottom:570.180000px;}
.y6f_c00070{bottom:570.405000px;}
.y6c_c00070{bottom:586.245000px;}
.y6d_c00070{bottom:587.130000px;}
.y6b_c00070{bottom:588.405000px;}
.y6a_c00070{bottom:589.905000px;}
.y69_c00070{bottom:590.325000px;}
.y66_c00070{bottom:605.745000px;}
.y68_c00070{bottom:605.970000px;}
.y65_c00070{bottom:607.905000px;}
.y67_c00070{bottom:608.130000px;}
.y62_c00070{bottom:624.405000px;}
.y5f_c00070{bottom:625.470000px;}
.y60_c00070{bottom:625.905000px;}
.y5e_c00070{bottom:626.745000px;}
.y63_c00070{bottom:626.970000px;}
.y61_c00070{bottom:627.405000px;}
.y64_c00070{bottom:627.630000px;}
.y5c_c00070{bottom:627.825000px;}
.y5d_c00070{bottom:628.905000px;}
.y5b_c00070{bottom:631.050000px;}
.y5a_c00070{bottom:643.905000px;}
.y59_c00070{bottom:644.745000px;}
.y58_c00070{bottom:646.245000px;}
.y57_c00070{bottom:647.970000px;}
.y56_c00070{bottom:648.405000px;}
.y55_c00070{bottom:649.905000px;}
.y53_c00070{bottom:665.745000px;}
.y52_c00070{bottom:668.745000px;}
.y54_c00070{bottom:668.970000px;}
.y4f_c00070{bottom:684.825000px;}
.y4c_c00070{bottom:685.245000px;}
.y4b_c00070{bottom:685.680000px;}
.y51_c00070{bottom:686.325000px;}
.y4d_c00070{bottom:686.970000px;}
.y4e_c00070{bottom:687.405000px;}
.y50_c00070{bottom:688.470000px;}
.y4a_c00070{bottom:689.130000px;}
.y47_c00070{bottom:704.745000px;}
.y48_c00070{bottom:705.630000px;}
.y49_c00070{bottom:706.470000px;}
.y46_c00070{bottom:706.905000px;}
.y45_c00070{bottom:708.405000px;}
.y44_c00070{bottom:722.745000px;}
.y42_c00070{bottom:724.245000px;}
.y43_c00070{bottom:725.130000px;}
.y41_c00070{bottom:726.405000px;}
.y40_c00070{bottom:727.905000px;}
.y3f_c00070{bottom:729.405000px;}
.y3b_c00070{bottom:743.745000px;}
.y3d_c00070{bottom:745.245000px;}
.y3a_c00070{bottom:745.905000px;}
.y3c_c00070{bottom:746.130000px;}
.y3e_c00070{bottom:747.405000px;}
.y39_c00070{bottom:748.905000px;}
.y38_c00070{bottom:763.470000px;}
.y37_c00070{bottom:765.405000px;}
.y36_c00070{bottom:765.630000px;}
.y34_c00070{bottom:766.245000px;}
.y35_c00070{bottom:766.470000px;}
.y33_c00070{bottom:781.905000px;}
.y30_c00070{bottom:782.745000px;}
.y31_c00070{bottom:783.180000px;}
.y2f_c00070{bottom:784.245000px;}
.y32_c00070{bottom:784.905000px;}
.y2e_c00070{bottom:785.130000px;}
.y2d_c00070{bottom:787.905000px;}
.y29_c00070{bottom:803.550000px;}
.y28_c00070{bottom:803.745000px;}
.y2c_c00070{bottom:804.405000px;}
.y2b_c00070{bottom:804.630000px;}
.y2a_c00070{bottom:805.905000px;}
.y27_c00070{bottom:806.550000px;}
.y26_c00070{bottom:820.905000px;}
.y23_c00070{bottom:823.245000px;}
.y25_c00070{bottom:824.130000px;}
.y22_c00070{bottom:825.405000px;}
.y24_c00070{bottom:825.630000px;}
.y21_c00070{bottom:826.050000px;}
.y20_c00070{bottom:828.405000px;}
.y1f_c00070{bottom:842.745000px;}
.y1e_c00070{bottom:844.905000px;}
.y1d_c00070{bottom:845.970000px;}
.y1c_c00070{bottom:847.470000px;}
.y1b_c00070{bottom:865.470000px;}
.y18_c00070{bottom:880.680000px;}
.y1a_c00070{bottom:881.745000px;}
.y16_c00070{bottom:882.180000px;}
.y19_c00070{bottom:882.630000px;}
.y17_c00070{bottom:883.905000px;}
.y15_c00070{bottom:902.550000px;}
.y10_c00070{bottom:902.745000px;}
.y14_c00070{bottom:903.405000px;}
.y12_c00070{bottom:903.630000px;}
.y13_c00070{bottom:904.470000px;}
.y11_c00070{bottom:904.905000px;}
.yf_c00070{bottom:905.550000px;}
.ye_c00070{bottom:920.970000px;}
.yb_c00070{bottom:922.245000px;}
.yd_c00070{bottom:924.405000px;}
.ya_c00070{bottom:924.825000px;}
.yc_c00070{bottom:925.470000px;}
.y7_c00070{bottom:941.745000px;}
.y9_c00070{bottom:942.630000px;}
.y8_c00070{bottom:943.905000px;}
.y6_c00070{bottom:945.405000px;}
.y4_c00070{bottom:961.245000px;}
.y5_c00070{bottom:962.130000px;}
.y3_c00070{bottom:963.405000px;}
.y2_c00070{bottom:964.905000px;}
.y1_c00070{bottom:1002.405000px;}
.h3_c00070{height:23.025234px;}
.h6_c00070{height:25.091602px;}
.h5_c00070{height:31.364502px;}
.h1_c00070{height:35.571035px;}
.h4_c00070{height:39.777568px;}
.h2_c00070{height:43.910303px;}
.h8_c00070{height:48.116836px;}
.h7_c00070{height:52.323369px;}
.h0_c00070{height:1335.000000px;}
.w0_c00070{width:880.500000px;}
.x0_c00070{left:0.000000px;}
.xf_c00070{left:151.500000px;}
.x8b_c00070{left:152.580000px;}
.xcb_c00070{left:154.500000px;}
.xaa_c00070{left:160.500000px;}
.x82_c00070{left:165.000000px;}
.x3_c00070{left:166.500000px;}
.x3b_c00070{left:168.000000px;}
.x8d_c00070{left:169.500000px;}
.x8c_c00070{left:172.920000px;}
.x10_c00070{left:174.000000px;}
.x47_c00070{left:178.500000px;}
.x26_c00070{left:180.000000px;}
.xab_c00070{left:183.000000px;}
.x55_c00070{left:184.500000px;}
.xc6_c00070{left:185.580000px;}
.x5f_c00070{left:187.500000px;}
.x3c_c00070{left:189.000000px;}
.x1c_c00070{left:192.420000px;}
.x60_c00070{left:198.000000px;}
.x4_c00070{left:200.580000px;}
.xa3_c00070{left:205.920000px;}
.x83_c00070{left:209.580000px;}
.x68_c00070{left:213.000000px;}
.x30_c00070{left:214.500000px;}
.x75_c00070{left:217.500000px;}
.x48_c00070{left:218.580000px;}
.xb9_c00070{left:222.000000px;}
.xd4_c00070{left:223.500000px;}
.x11_c00070{left:226.500000px;}
.xdc_c00070{left:229.920000px;}
.xa4_c00070{left:234.420000px;}
.x49_c00070{left:237.000000px;}
.x69_c00070{left:238.500000px;}
.xbe_c00070{left:240.000000px;}
.x27_c00070{left:241.080000px;}
.x5_c00070{left:246.000000px;}
.x56_c00070{left:249.000000px;}
.x3d_c00070{left:250.500000px;}
.x9d_c00070{left:255.420000px;}
.xb2_c00070{left:256.920000px;}
.x1d_c00070{left:259.080000px;}
.x61_c00070{left:261.000000px;}
.x8e_c00070{left:265.080000px;}
.x12_c00070{left:267.000000px;}
.xcc_c00070{left:268.080000px;}
.x9e_c00070{left:271.080000px;}
.xa6_c00070{left:273.645000px;}
.x76_c00070{left:275.580000px;}
.x57_c00070{left:277.080000px;}
.x6d_c00070{left:279.000000px;}
.x13_c00070{left:280.500000px;}
.x4a_c00070{left:282.000000px;}
.x84_c00070{left:283.500000px;}
.xb3_c00070{left:285.000000px;}
.x31_c00070{left:288.000000px;}
.x28_c00070{left:289.920000px;}
.xac_c00070{left:292.920000px;}
.x77_c00070{left:294.000000px;}
.x4b_c00070{left:297.000000px;}
.x8f_c00070{left:298.500000px;}
.x3e_c00070{left:300.420000px;}
.xdd_c00070{left:301.500000px;}
.xa5_c00070{left:302.580000px;}
.xd5_c00070{left:304.500000px;}
.xa7_c00070{left:307.500000px;}
.x14_c00070{left:315.420000px;}
.x7d_c00070{left:316.500000px;}
.x32_c00070{left:319.500000px;}
.x1e_c00070{left:322.920000px;}
.x58_c00070{left:324.000000px;}
.x6_c00070{left:325.500000px;}
.x3f_c00070{left:326.580000px;}
.x94_c00070{left:329.580000px;}
.xde_c00070{left:331.500000px;}
.x29_c00070{left:332.580000px;}
.x59_c00070{left:337.920000px;}
.x6a_c00070{left:339.000000px;}
.x85_c00070{left:341.580000px;}
.x4c_c00070{left:343.500000px;}
.x7_c00070{left:345.000000px;}
.xda_c00070{left:347.580000px;}
.x6e_c00070{left:352.080000px;}
.x1_c00070{left:353.580000px;}
.x78_c00070{left:358.500000px;}
.x95_c00070{left:361.080000px;}
.x2a_c00070{left:364.920000px;}
.x40_c00070{left:367.500000px;}
.x86_c00070{left:370.500000px;}
.xba_c00070{left:372.000000px;}
.x7e_c00070{left:374.580000px;}
.x8_c00070{left:376.080000px;}
.x96_c00070{left:379.500000px;}
.x41_c00070{left:382.080000px;}
.x6f_c00070{left:386.580000px;}
.x15_c00070{left:390.000000px;}
.x1f_c00070{left:391.500000px;}
.x7f_c00070{left:393.000000px;}
.x5a_c00070{left:394.920000px;}
.xb4_c00070{left:396.000000px;}
.x97_c00070{left:397.500000px;}
.x9_c00070{left:399.420000px;}
.x2b_c00070{left:402.000000px;}
.xc2_c00070{left:403.920000px;}
.xdf_c00070{left:405.000000px;}
.xad_c00070{left:406.920000px;}
.x2_c00070{left:409.080000px;}
.x79_c00070{left:411.420000px;}
.x9f_c00070{left:418.920000px;}
.x4d_c00070{left:420.000000px;}
.xbb_c00070{left:421.080000px;}
.xa8_c00070{left:424.920000px;}
.x87_c00070{left:426.000000px;}
.xa_c00070{left:427.080000px;}
.x33_c00070{left:430.500000px;}
.xae_c00070{left:433.080000px;}
.x4e_c00070{left:439.920000px;}
.x6b_c00070{left:441.000000px;}
.x5b_c00070{left:442.080000px;}
.x90_c00070{left:443.580000px;}
.x98_c00070{left:445.080000px;}
.x62_c00070{left:447.420000px;}
.xd6_c00070{left:451.920000px;}
.x7a_c00070{left:454.080000px;}
.x20_c00070{left:456.420000px;}
.x34_c00070{left:457.500000px;}
.x5c_c00070{left:461.580000px;}
.xb_c00070{left:465.000000px;}
.x42_c00070{left:466.500000px;}
.x16_c00070{left:468.000000px;}
.x63_c00070{left:472.080000px;}
.xc3_c00070{left:474.420000px;}
.x4f_c00070{left:476.580000px;}
.x70_c00070{left:478.080000px;}
.xd7_c00070{left:481.500000px;}
.xa9_c00070{left:482.580000px;}
.xb5_c00070{left:487.500000px;}
.x2c_c00070{left:492.000000px;}
.x35_c00070{left:493.500000px;}
.x50_c00070{left:495.420000px;}
.x43_c00070{left:501.000000px;}
.x7b_c00070{left:505.920000px;}
.x5d_c00070{left:507.000000px;}
.xaf_c00070{left:511.500000px;}
.xbf_c00070{left:513.000000px;}
.x21_c00070{left:514.500000px;}
.x17_c00070{left:515.580000px;}
.x51_c00070{left:520.500000px;}
.x64_c00070{left:523.080000px;}
.x44_c00070{left:525.420000px;}
.x88_c00070{left:527.580000px;}
.xc0_c00070{left:532.920000px;}
.x5e_c00070{left:534.000000px;}
.x6c_c00070{left:535.920000px;}
.xc4_c00070{left:541.920000px;}
.x7c_c00070{left:544.920000px;}
.xdb_c00070{left:546.000000px;}
.x80_c00070{left:547.080000px;}
.x45_c00070{left:550.500000px;}
.x36_c00070{left:551.580000px;}
.xd0_c00070{left:553.500000px;}
.xa0_c00070{left:554.580000px;}
.x22_c00070{left:558.420000px;}
.xcd_c00070{left:561.420000px;}
.x99_c00070{left:562.500000px;}
.xc_c00070{left:564.000000px;}
.x89_c00070{left:565.500000px;}
.xb6_c00070{left:566.580000px;}
.x37_c00070{left:571.500000px;}
.xd8_c00070{left:573.000000px;}
.x18_c00070{left:574.080000px;}
.xc5_c00070{left:576.000000px;}
.xa1_c00070{left:577.920000px;}
.x71_c00070{left:582.000000px;}
.x91_c00070{left:583.500000px;}
.xb0_c00070{left:585.000000px;}
.x38_c00070{left:586.500000px;}
.x8a_c00070{left:589.500000px;}
.x65_c00070{left:592.500000px;}
.xbc_c00070{left:595.080000px;}
.x52_c00070{left:597.420000px;}
.x23_c00070{left:600.000000px;}
.xb7_c00070{left:603.420000px;}
.x92_c00070{left:604.920000px;}
.x9a_c00070{left:607.500000px;}
.xd1_c00070{left:608.580000px;}
.x46_c00070{left:616.080000px;}
.x66_c00070{left:618.420000px;}
.x2d_c00070{left:622.500000px;}
.x39_c00070{left:627.000000px;}
.xd2_c00070{left:630.420000px;}
.x53_c00070{left:633.420000px;}
.x9b_c00070{left:634.500000px;}
.x19_c00070{left:637.920000px;}
.xc9_c00070{left:639.000000px;}
.x72_c00070{left:640.920000px;}
.x2e_c00070{left:642.420000px;}
.x24_c00070{left:646.920000px;}
.x67_c00070{left:652.500000px;}
.xd_c00070{left:653.580000px;}
.xce_c00070{left:658.080000px;}
.xd3_c00070{left:660.000000px;}
.x1a_c00070{left:666.000000px;}
.xb1_c00070{left:670.500000px;}
.xa2_c00070{left:672.000000px;}
.x54_c00070{left:674.580000px;}
.x25_c00070{left:676.080000px;}
.x73_c00070{left:678.000000px;}
.xcf_c00070{left:679.920000px;}
.x3a_c00070{left:682.920000px;}
.xca_c00070{left:684.000000px;}
.xd9_c00070{left:687.000000px;}
.xb8_c00070{left:688.080000px;}
.x2f_c00070{left:689.580000px;}
.x93_c00070{left:691.080000px;}
.xbd_c00070{left:693.000000px;}
.xc7_c00070{left:697.080000px;}
.x81_c00070{left:700.500000px;}
.x1b_c00070{left:703.080000px;}
.xe_c00070{left:708.000000px;}
.x9c_c00070{left:709.500000px;}
.xc8_c00070{left:715.500000px;}
.x74_c00070{left:716.580000px;}
.xc1_c00070{left:723.000000px;}
@media print{
.v0_c00070{vertical-align:0.000000pt;}
.ls0_c00070{letter-spacing:0.000000pt;}
.ws0_c00070{word-spacing:0.000000pt;}
.fs2_c00070{font-size:16.640000pt;}
.fs5_c00070{font-size:18.133333pt;}
.fs4_c00070{font-size:22.666667pt;}
.fs0_c00070{font-size:25.706667pt;}
.fs3_c00070{font-size:28.746667pt;}
.fs1_c00070{font-size:31.733333pt;}
.fs7_c00070{font-size:34.773333pt;}
.fs6_c00070{font-size:37.813333pt;}
.y0_c00070{bottom:0.000000pt;}
.ycb_c00070{bottom:205.106667pt;}
.ycc_c00070{bottom:205.693333pt;}
.yc8_c00070{bottom:206.440000pt;}
.yc9_c00070{bottom:207.026667pt;}
.yca_c00070{bottom:207.973333pt;}
.yc7_c00070{bottom:208.733333pt;}
.yc6_c00070{bottom:209.693333pt;}
.yc3_c00070{bottom:222.440000pt;}
.yc4_c00070{bottom:223.773333pt;}
.yc2_c00070{bottom:223.973333pt;}
.ybf_c00070{bottom:224.160000pt;}
.yc1_c00070{bottom:224.360000pt;}
.yc0_c00070{bottom:225.693333pt;}
.yc5_c00070{bottom:226.640000pt;}
.ybb_c00070{bottom:240.733333pt;}
.ybc_c00070{bottom:241.106667pt;}
.ybd_c00070{bottom:241.693333pt;}
.yba_c00070{bottom:243.026667pt;}
.ybe_c00070{bottom:243.226667pt;}
.yb9_c00070{bottom:243.773333pt;}
.yb8_c00070{bottom:246.066667pt;}
.yb6_c00070{bottom:258.440000pt;}
.yb7_c00070{bottom:259.026667pt;}
.yb5_c00070{bottom:260.160000pt;}
.yb1_c00070{bottom:275.773333pt;}
.yb0_c00070{bottom:277.106667pt;}
.yb3_c00070{bottom:277.306667pt;}
.yb2_c00070{bottom:277.693333pt;}
.yb4_c00070{bottom:279.026667pt;}
.yae_c00070{bottom:292.733333pt;}
.yab_c00070{bottom:293.106667pt;}
.yac_c00070{bottom:295.026667pt;}
.yad_c00070{bottom:295.973333pt;}
.yaf_c00070{bottom:296.360000pt;}
.ya9_c00070{bottom:297.306667pt;}
.yaa_c00070{bottom:297.693333pt;}
.ya8_c00070{bottom:309.693333pt;}
.ya7_c00070{bottom:310.440000pt;}
.ya6_c00070{bottom:310.826667pt;}
.ya5_c00070{bottom:312.160000pt;}
.ya0_c00070{bottom:327.773333pt;}
.ya3_c00070{bottom:328.733333pt;}
.ya4_c00070{bottom:329.693333pt;}
.ya2_c00070{bottom:329.893333pt;}
.ya1_c00070{bottom:330.640000pt;}
.y9f_c00070{bottom:331.026667pt;}
.y9e_c00070{bottom:331.400000pt;}
.y9d_c00070{bottom:334.066667pt;}
.y9b_c00070{bottom:344.360000pt;}
.y9c_c00070{bottom:344.733333pt;}
.y9a_c00070{bottom:345.493333pt;}
.y99_c00070{bottom:346.440000pt;}
.y98_c00070{bottom:346.826667pt;}
.y97_c00070{bottom:362.440000pt;}
.y96_c00070{bottom:363.400000pt;}
.y93_c00070{bottom:363.773333pt;}
.y95_c00070{bottom:364.360000pt;}
.y94_c00070{bottom:364.560000pt;}
.y92_c00070{bottom:365.693333pt;}
.y91_c00070{bottom:366.066667pt;}
.y90_c00070{bottom:367.973333pt;}
.y8f_c00070{bottom:379.773333pt;}
.y8e_c00070{bottom:381.693333pt;}
.y8c_c00070{bottom:381.893333pt;}
.y8d_c00070{bottom:382.640000pt;}
.y8b_c00070{bottom:383.026667pt;}
.y8a_c00070{bottom:383.400000pt;}
.y87_c00070{bottom:398.440000pt;}
.y85_c00070{bottom:399.773333pt;}
.y88_c00070{bottom:399.973333pt;}
.y89_c00070{bottom:400.360000pt;}
.y86_c00070{bottom:401.693333pt;}
.y84_c00070{bottom:404.360000pt;}
.y82_c00070{bottom:414.640000pt;}
.y81_c00070{bottom:416.733333pt;}
.y83_c00070{bottom:417.693333pt;}
.y7f_c00070{bottom:433.106667pt;}
.y7e_c00070{bottom:435.026667pt;}
.y80_c00070{bottom:435.973333pt;}
.y7d_c00070{bottom:436.733333pt;}
.y7c_c00070{bottom:450.440000pt;}
.y7a_c00070{bottom:451.773333pt;}
.y7b_c00070{bottom:452.360000pt;}
.y79_c00070{bottom:453.693333pt;}
.y78_c00070{bottom:455.026667pt;}
.y77_c00070{bottom:456.560000pt;}
.y76_c00070{bottom:456.933333pt;}
.y75_c00070{bottom:472.160000pt;}
.y72_c00070{bottom:473.106667pt;}
.y74_c00070{bottom:475.026667pt;}
.y73_c00070{bottom:475.973333pt;}
.y71_c00070{bottom:503.773333pt;}
.y70_c00070{bottom:505.693333pt;}
.y6e_c00070{bottom:506.826667pt;}
.y6f_c00070{bottom:507.026667pt;}
.y6c_c00070{bottom:521.106667pt;}
.y6d_c00070{bottom:521.893333pt;}
.y6b_c00070{bottom:523.026667pt;}
.y6a_c00070{bottom:524.360000pt;}
.y69_c00070{bottom:524.733333pt;}
.y66_c00070{bottom:538.440000pt;}
.y68_c00070{bottom:538.640000pt;}
.y65_c00070{bottom:540.360000pt;}
.y67_c00070{bottom:540.560000pt;}
.y62_c00070{bottom:555.026667pt;}
.y5f_c00070{bottom:555.973333pt;}
.y60_c00070{bottom:556.360000pt;}
.y5e_c00070{bottom:557.106667pt;}
.y63_c00070{bottom:557.306667pt;}
.y61_c00070{bottom:557.693333pt;}
.y64_c00070{bottom:557.893333pt;}
.y5c_c00070{bottom:558.066667pt;}
.y5d_c00070{bottom:559.026667pt;}
.y5b_c00070{bottom:560.933333pt;}
.y5a_c00070{bottom:572.360000pt;}
.y59_c00070{bottom:573.106667pt;}
.y58_c00070{bottom:574.440000pt;}
.y57_c00070{bottom:575.973333pt;}
.y56_c00070{bottom:576.360000pt;}
.y55_c00070{bottom:577.693333pt;}
.y53_c00070{bottom:591.773333pt;}
.y52_c00070{bottom:594.440000pt;}
.y54_c00070{bottom:594.640000pt;}
.y4f_c00070{bottom:608.733333pt;}
.y4c_c00070{bottom:609.106667pt;}
.y4b_c00070{bottom:609.493333pt;}
.y51_c00070{bottom:610.066667pt;}
.y4d_c00070{bottom:610.640000pt;}
.y4e_c00070{bottom:611.026667pt;}
.y50_c00070{bottom:611.973333pt;}
.y4a_c00070{bottom:612.560000pt;}
.y47_c00070{bottom:626.440000pt;}
.y48_c00070{bottom:627.226667pt;}
.y49_c00070{bottom:627.973333pt;}
.y46_c00070{bottom:628.360000pt;}
.y45_c00070{bottom:629.693333pt;}
.y44_c00070{bottom:642.440000pt;}
.y42_c00070{bottom:643.773333pt;}
.y43_c00070{bottom:644.560000pt;}
.y41_c00070{bottom:645.693333pt;}
.y40_c00070{bottom:647.026667pt;}
.y3f_c00070{bottom:648.360000pt;}
.y3b_c00070{bottom:661.106667pt;}
.y3d_c00070{bottom:662.440000pt;}
.y3a_c00070{bottom:663.026667pt;}
.y3c_c00070{bottom:663.226667pt;}
.y3e_c00070{bottom:664.360000pt;}
.y39_c00070{bottom:665.693333pt;}
.y38_c00070{bottom:678.640000pt;}
.y37_c00070{bottom:680.360000pt;}
.y36_c00070{bottom:680.560000pt;}
.y34_c00070{bottom:681.106667pt;}
.y35_c00070{bottom:681.306667pt;}
.y33_c00070{bottom:695.026667pt;}
.y30_c00070{bottom:695.773333pt;}
.y31_c00070{bottom:696.160000pt;}
.y2f_c00070{bottom:697.106667pt;}
.y32_c00070{bottom:697.693333pt;}
.y2e_c00070{bottom:697.893333pt;}
.y2d_c00070{bottom:700.360000pt;}
.y29_c00070{bottom:714.266667pt;}
.y28_c00070{bottom:714.440000pt;}
.y2c_c00070{bottom:715.026667pt;}
.y2b_c00070{bottom:715.226667pt;}
.y2a_c00070{bottom:716.360000pt;}
.y27_c00070{bottom:716.933333pt;}
.y26_c00070{bottom:729.693333pt;}
.y23_c00070{bottom:731.773333pt;}
.y25_c00070{bottom:732.560000pt;}
.y22_c00070{bottom:733.693333pt;}
.y24_c00070{bottom:733.893333pt;}
.y21_c00070{bottom:734.266667pt;}
.y20_c00070{bottom:736.360000pt;}
.y1f_c00070{bottom:749.106667pt;}
.y1e_c00070{bottom:751.026667pt;}
.y1d_c00070{bottom:751.973333pt;}
.y1c_c00070{bottom:753.306667pt;}
.y1b_c00070{bottom:769.306667pt;}
.y18_c00070{bottom:782.826667pt;}
.y1a_c00070{bottom:783.773333pt;}
.y16_c00070{bottom:784.160000pt;}
.y19_c00070{bottom:784.560000pt;}
.y17_c00070{bottom:785.693333pt;}
.y15_c00070{bottom:802.266667pt;}
.y10_c00070{bottom:802.440000pt;}
.y14_c00070{bottom:803.026667pt;}
.y12_c00070{bottom:803.226667pt;}
.y13_c00070{bottom:803.973333pt;}
.y11_c00070{bottom:804.360000pt;}
.yf_c00070{bottom:804.933333pt;}
.ye_c00070{bottom:818.640000pt;}
.yb_c00070{bottom:819.773333pt;}
.yd_c00070{bottom:821.693333pt;}
.ya_c00070{bottom:822.066667pt;}
.yc_c00070{bottom:822.640000pt;}
.y7_c00070{bottom:837.106667pt;}
.y9_c00070{bottom:837.893333pt;}
.y8_c00070{bottom:839.026667pt;}
.y6_c00070{bottom:840.360000pt;}
.y4_c00070{bottom:854.440000pt;}
.y5_c00070{bottom:855.226667pt;}
.y3_c00070{bottom:856.360000pt;}
.y2_c00070{bottom:857.693333pt;}
.y1_c00070{bottom:891.026667pt;}
.h3_c00070{height:20.466875pt;}
.h6_c00070{height:22.303646pt;}
.h5_c00070{height:27.879557pt;}
.h1_c00070{height:31.618698pt;}
.h4_c00070{height:35.357839pt;}
.h2_c00070{height:39.031380pt;}
.h8_c00070{height:42.770521pt;}
.h7_c00070{height:46.509661pt;}
.h0_c00070{height:1186.666667pt;}
.w0_c00070{width:782.666667pt;}
.x0_c00070{left:0.000000pt;}
.xf_c00070{left:134.666667pt;}
.x8b_c00070{left:135.626667pt;}
.xcb_c00070{left:137.333333pt;}
.xaa_c00070{left:142.666667pt;}
.x82_c00070{left:146.666667pt;}
.x3_c00070{left:148.000000pt;}
.x3b_c00070{left:149.333333pt;}
.x8d_c00070{left:150.666667pt;}
.x8c_c00070{left:153.706667pt;}
.x10_c00070{left:154.666667pt;}
.x47_c00070{left:158.666667pt;}
.x26_c00070{left:160.000000pt;}
.xab_c00070{left:162.666667pt;}
.x55_c00070{left:164.000000pt;}
.xc6_c00070{left:164.960000pt;}
.x5f_c00070{left:166.666667pt;}
.x3c_c00070{left:168.000000pt;}
.x1c_c00070{left:171.040000pt;}
.x60_c00070{left:176.000000pt;}
.x4_c00070{left:178.293333pt;}
.xa3_c00070{left:183.040000pt;}
.x83_c00070{left:186.293333pt;}
.x68_c00070{left:189.333333pt;}
.x30_c00070{left:190.666667pt;}
.x75_c00070{left:193.333333pt;}
.x48_c00070{left:194.293333pt;}
.xb9_c00070{left:197.333333pt;}
.xd4_c00070{left:198.666667pt;}
.x11_c00070{left:201.333333pt;}
.xdc_c00070{left:204.373333pt;}
.xa4_c00070{left:208.373333pt;}
.x49_c00070{left:210.666667pt;}
.x69_c00070{left:212.000000pt;}
.xbe_c00070{left:213.333333pt;}
.x27_c00070{left:214.293333pt;}
.x5_c00070{left:218.666667pt;}
.x56_c00070{left:221.333333pt;}
.x3d_c00070{left:222.666667pt;}
.x9d_c00070{left:227.040000pt;}
.xb2_c00070{left:228.373333pt;}
.x1d_c00070{left:230.293333pt;}
.x61_c00070{left:232.000000pt;}
.x8e_c00070{left:235.626667pt;}
.x12_c00070{left:237.333333pt;}
.xcc_c00070{left:238.293333pt;}
.x9e_c00070{left:240.960000pt;}
.xa6_c00070{left:243.240000pt;}
.x76_c00070{left:244.960000pt;}
.x57_c00070{left:246.293333pt;}
.x6d_c00070{left:248.000000pt;}
.x13_c00070{left:249.333333pt;}
.x4a_c00070{left:250.666667pt;}
.x84_c00070{left:252.000000pt;}
.xb3_c00070{left:253.333333pt;}
.x31_c00070{left:256.000000pt;}
.x28_c00070{left:257.706667pt;}
.xac_c00070{left:260.373333pt;}
.x77_c00070{left:261.333333pt;}
.x4b_c00070{left:264.000000pt;}
.x8f_c00070{left:265.333333pt;}
.x3e_c00070{left:267.040000pt;}
.xdd_c00070{left:268.000000pt;}
.xa5_c00070{left:268.960000pt;}
.xd5_c00070{left:270.666667pt;}
.xa7_c00070{left:273.333333pt;}
.x14_c00070{left:280.373333pt;}
.x7d_c00070{left:281.333333pt;}
.x32_c00070{left:284.000000pt;}
.x1e_c00070{left:287.040000pt;}
.x58_c00070{left:288.000000pt;}
.x6_c00070{left:289.333333pt;}
.x3f_c00070{left:290.293333pt;}
.x94_c00070{left:292.960000pt;}
.xde_c00070{left:294.666667pt;}
.x29_c00070{left:295.626667pt;}
.x59_c00070{left:300.373333pt;}
.x6a_c00070{left:301.333333pt;}
.x85_c00070{left:303.626667pt;}
.x4c_c00070{left:305.333333pt;}
.x7_c00070{left:306.666667pt;}
.xda_c00070{left:308.960000pt;}
.x6e_c00070{left:312.960000pt;}
.x1_c00070{left:314.293333pt;}
.x78_c00070{left:318.666667pt;}
.x95_c00070{left:320.960000pt;}
.x2a_c00070{left:324.373333pt;}
.x40_c00070{left:326.666667pt;}
.x86_c00070{left:329.333333pt;}
.xba_c00070{left:330.666667pt;}
.x7e_c00070{left:332.960000pt;}
.x8_c00070{left:334.293333pt;}
.x96_c00070{left:337.333333pt;}
.x41_c00070{left:339.626667pt;}
.x6f_c00070{left:343.626667pt;}
.x15_c00070{left:346.666667pt;}
.x1f_c00070{left:348.000000pt;}
.x7f_c00070{left:349.333333pt;}
.x5a_c00070{left:351.040000pt;}
.xb4_c00070{left:352.000000pt;}
.x97_c00070{left:353.333333pt;}
.x9_c00070{left:355.040000pt;}
.x2b_c00070{left:357.333333pt;}
.xc2_c00070{left:359.040000pt;}
.xdf_c00070{left:360.000000pt;}
.xad_c00070{left:361.706667pt;}
.x2_c00070{left:363.626667pt;}
.x79_c00070{left:365.706667pt;}
.x9f_c00070{left:372.373333pt;}
.x4d_c00070{left:373.333333pt;}
.xbb_c00070{left:374.293333pt;}
.xa8_c00070{left:377.706667pt;}
.x87_c00070{left:378.666667pt;}
.xa_c00070{left:379.626667pt;}
.x33_c00070{left:382.666667pt;}
.xae_c00070{left:384.960000pt;}
.x4e_c00070{left:391.040000pt;}
.x6b_c00070{left:392.000000pt;}
.x5b_c00070{left:392.960000pt;}
.x90_c00070{left:394.293333pt;}
.x98_c00070{left:395.626667pt;}
.x62_c00070{left:397.706667pt;}
.xd6_c00070{left:401.706667pt;}
.x7a_c00070{left:403.626667pt;}
.x20_c00070{left:405.706667pt;}
.x34_c00070{left:406.666667pt;}
.x5c_c00070{left:410.293333pt;}
.xb_c00070{left:413.333333pt;}
.x42_c00070{left:414.666667pt;}
.x16_c00070{left:416.000000pt;}
.x63_c00070{left:419.626667pt;}
.xc3_c00070{left:421.706667pt;}
.x4f_c00070{left:423.626667pt;}
.x70_c00070{left:424.960000pt;}
.xd7_c00070{left:428.000000pt;}
.xa9_c00070{left:428.960000pt;}
.xb5_c00070{left:433.333333pt;}
.x2c_c00070{left:437.333333pt;}
.x35_c00070{left:438.666667pt;}
.x50_c00070{left:440.373333pt;}
.x43_c00070{left:445.333333pt;}
.x7b_c00070{left:449.706667pt;}
.x5d_c00070{left:450.666667pt;}
.xaf_c00070{left:454.666667pt;}
.xbf_c00070{left:456.000000pt;}
.x21_c00070{left:457.333333pt;}
.x17_c00070{left:458.293333pt;}
.x51_c00070{left:462.666667pt;}
.x64_c00070{left:464.960000pt;}
.x44_c00070{left:467.040000pt;}
.x88_c00070{left:468.960000pt;}
.xc0_c00070{left:473.706667pt;}
.x5e_c00070{left:474.666667pt;}
.x6c_c00070{left:476.373333pt;}
.xc4_c00070{left:481.706667pt;}
.x7c_c00070{left:484.373333pt;}
.xdb_c00070{left:485.333333pt;}
.x80_c00070{left:486.293333pt;}
.x45_c00070{left:489.333333pt;}
.x36_c00070{left:490.293333pt;}
.xd0_c00070{left:492.000000pt;}
.xa0_c00070{left:492.960000pt;}
.x22_c00070{left:496.373333pt;}
.xcd_c00070{left:499.040000pt;}
.x99_c00070{left:500.000000pt;}
.xc_c00070{left:501.333333pt;}
.x89_c00070{left:502.666667pt;}
.xb6_c00070{left:503.626667pt;}
.x37_c00070{left:508.000000pt;}
.xd8_c00070{left:509.333333pt;}
.x18_c00070{left:510.293333pt;}
.xc5_c00070{left:512.000000pt;}
.xa1_c00070{left:513.706667pt;}
.x71_c00070{left:517.333333pt;}
.x91_c00070{left:518.666667pt;}
.xb0_c00070{left:520.000000pt;}
.x38_c00070{left:521.333333pt;}
.x8a_c00070{left:524.000000pt;}
.x65_c00070{left:526.666667pt;}
.xbc_c00070{left:528.960000pt;}
.x52_c00070{left:531.040000pt;}
.x23_c00070{left:533.333333pt;}
.xb7_c00070{left:536.373333pt;}
.x92_c00070{left:537.706667pt;}
.x9a_c00070{left:540.000000pt;}
.xd1_c00070{left:540.960000pt;}
.x46_c00070{left:547.626667pt;}
.x66_c00070{left:549.706667pt;}
.x2d_c00070{left:553.333333pt;}
.x39_c00070{left:557.333333pt;}
.xd2_c00070{left:560.373333pt;}
.x53_c00070{left:563.040000pt;}
.x9b_c00070{left:564.000000pt;}
.x19_c00070{left:567.040000pt;}
.xc9_c00070{left:568.000000pt;}
.x72_c00070{left:569.706667pt;}
.x2e_c00070{left:571.040000pt;}
.x24_c00070{left:575.040000pt;}
.x67_c00070{left:580.000000pt;}
.xd_c00070{left:580.960000pt;}
.xce_c00070{left:584.960000pt;}
.xd3_c00070{left:586.666667pt;}
.x1a_c00070{left:592.000000pt;}
.xb1_c00070{left:596.000000pt;}
.xa2_c00070{left:597.333333pt;}
.x54_c00070{left:599.626667pt;}
.x25_c00070{left:600.960000pt;}
.x73_c00070{left:602.666667pt;}
.xcf_c00070{left:604.373333pt;}
.x3a_c00070{left:607.040000pt;}
.xca_c00070{left:608.000000pt;}
.xd9_c00070{left:610.666667pt;}
.xb8_c00070{left:611.626667pt;}
.x2f_c00070{left:612.960000pt;}
.x93_c00070{left:614.293333pt;}
.xbd_c00070{left:616.000000pt;}
.xc7_c00070{left:619.626667pt;}
.x81_c00070{left:622.666667pt;}
.x1b_c00070{left:624.960000pt;}
.xe_c00070{left:629.333333pt;}
.x9c_c00070{left:630.666667pt;}
.xc8_c00070{left:636.000000pt;}
.x74_c00070{left:636.960000pt;}
.xc1_c00070{left:642.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_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_9e64987260d39a489e3aa6f0.woff2')format("woff");}.ff1_c00071{font-family:ff1_c00071;line-height:1.688965;font-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_c00071{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00071{transform:matrix(0.001046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.001046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.001046,0.000000,0.000000,0.250000,0,0);}
.m9_c00071{transform:matrix(0.001522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.001522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.001522,0.000000,0.000000,0.250000,0,0);}
.mc_c00071{transform:matrix(0.004706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.004706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.004706,0.000000,0.000000,0.250000,0,0);}
.m22_c00071{transform:matrix(0.006053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.006053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.006053,0.000000,0.000000,0.250000,0,0);}
.m2f_c00071{transform:matrix(0.007870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007870,0.000000,0.000000,0.250000,0,0);}
.m31_c00071{transform:matrix(0.009067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009067,0.000000,0.000000,0.250000,0,0);}
.m2d_c00071{transform:matrix(0.010250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00071{transform:matrix(0.011364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011364,0.000000,0.000000,0.250000,0,0);}
.m14_c00071{transform:matrix(0.011679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011679,0.000000,0.000000,0.250000,0,0);}
.m1f_c00071{transform:matrix(0.012054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012054,0.000000,0.000000,0.250000,0,0);}
.m32_c00071{transform:matrix(0.012712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012712,0.000000,0.000000,0.250000,0,0);}
.m16_c00071{transform:matrix(0.013316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013316,0.000000,0.000000,0.250000,0,0);}
.m3b_c00071{transform:matrix(0.014815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014815,0.000000,0.000000,0.250000,0,0);}
.m18_c00071{transform:matrix(0.016041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016041,0.000000,0.000000,0.250000,0,0);}
.m27_c00071{transform:matrix(0.018982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018982,0.000000,0.000000,0.250000,0,0);}
.m26_c00071{transform:matrix(0.022958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022958,0.000000,0.000000,0.250000,0,0);}
.m1b_c00071{transform:matrix(0.024459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024459,0.000000,0.000000,0.250000,0,0);}
.me_c00071{transform:matrix(0.029835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029835,0.000000,0.000000,0.250000,0,0);}
.m4_c00071{transform:matrix(0.030521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030521,0.000000,0.000000,0.250000,0,0);}
.m1d_c00071{transform:matrix(0.034657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034657,0.000000,0.000000,0.250000,0,0);}
.m21_c00071{transform:matrix(0.037965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037965,0.000000,0.000000,0.250000,0,0);}
.m2c_c00071{transform:matrix(0.038507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038507,0.000000,0.000000,0.250000,0,0);}
.m38_c00071{transform:matrix(0.038726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038726,0.000000,0.000000,0.250000,0,0);}
.m25_c00071{transform:matrix(0.039067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039067,0.000000,0.000000,0.250000,0,0);}
.m10_c00071{transform:matrix(0.045232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045232,0.000000,0.000000,0.250000,0,0);}
.m28_c00071{transform:matrix(0.046311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046311,0.000000,0.000000,0.250000,0,0);}
.m13_c00071{transform:matrix(0.055575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055575,0.000000,0.000000,0.250000,0,0);}
.mf_c00071{transform:matrix(0.060583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060583,0.000000,0.000000,0.250000,0,0);}
.m36_c00071{transform:matrix(0.063842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063842,0.000000,0.000000,0.250000,0,0);}
.m8_c00071{transform:matrix(0.064973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064973,0.000000,0.000000,0.250000,0,0);}
.m29_c00071{transform:matrix(0.076196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076196,0.000000,0.000000,0.250000,0,0);}
.m5_c00071{transform:matrix(0.078042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078042,0.000000,0.000000,0.250000,0,0);}
.m23_c00071{transform:matrix(0.080481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080481,0.000000,0.000000,0.250000,0,0);}
.m12_c00071{transform:matrix(0.084726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084726,0.000000,0.000000,0.250000,0,0);}
.m1a_c00071{transform:matrix(0.090441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090441,0.000000,0.000000,0.250000,0,0);}
.m2b_c00071{transform:matrix(0.098976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098976,0.000000,0.000000,0.250000,0,0);}
.m11_c00071{transform:matrix(0.102958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102958,0.000000,0.000000,0.250000,0,0);}
.m2e_c00071{transform:matrix(0.109489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109489,0.000000,0.000000,0.250000,0,0);}
.m34_c00071{transform:matrix(0.125134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125134,0.000000,0.000000,0.250000,0,0);}
.m2_c00071{transform:matrix(0.134528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134528,0.000000,0.000000,0.250000,0,0);}
.m1e_c00071{transform:matrix(0.169479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169479,0.000000,0.000000,0.250000,0,0);}
.m2a_c00071{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m17_c00071{transform:matrix(0.260504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260504,0.000000,0.000000,0.250000,0,0);}
.m20_c00071{transform:matrix(0.264378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264378,0.000000,0.000000,0.250000,0,0);}
.m24_c00071{transform:matrix(0.297310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297310,0.000000,0.000000,0.250000,0,0);}
.m30_c00071{transform:matrix(0.333206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333206,0.000000,0.000000,0.250000,0,0);}
.m39_c00071{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m6_c00071{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00071{transform:matrix(0.375294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375294,0.000000,0.000000,0.250000,0,0);}
.m37_c00071{transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);}
.m3_c00071{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m35_c00071{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m1_c00071{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m19_c00071{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.md_c00071{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);}
.m7_c00071{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m1c_c00071{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m0_c00071{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m33_c00071{transform:matrix(1.041912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.041912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.041912,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;}
.fs6_c00071{font-size:18.720000px;}
.fs0_c00071{font-size:20.400000px;}
.fs3_c00071{font-size:25.500000px;}
.fs1_c00071{font-size:28.920000px;}
.fs17_c00071{font-size:32.340000px;}
.fs10_c00071{font-size:35.700000px;}
.fs15_c00071{font-size:39.120000px;}
.fs1e_c00071{font-size:49.320000px;}
.fs2_c00071{font-size:52.740000px;}
.fs7_c00071{font-size:56.100000px;}
.fs12_c00071{font-size:61.200000px;}
.fsc_c00071{font-size:64.620000px;}
.fs5_c00071{font-size:68.040000px;}
.fs1c_c00071{font-size:71.460000px;}
.fs1b_c00071{font-size:74.820000px;}
.fsa_c00071{font-size:78.240000px;}
.fsd_c00071{font-size:85.020000px;}
.fsb_c00071{font-size:91.860000px;}
.fs14_c00071{font-size:95.220000px;}
.fs22_c00071{font-size:100.320000px;}
.fs9_c00071{font-size:102.060000px;}
.fs4_c00071{font-size:110.580000px;}
.fs19_c00071{font-size:124.140000px;}
.fs13_c00071{font-size:127.560000px;}
.fs1a_c00071{font-size:134.340000px;}
.fs16_c00071{font-size:153.060000px;}
.fs11_c00071{font-size:159.900000px;}
.fsf_c00071{font-size:170.100000px;}
.fs21_c00071{font-size:173.460000px;}
.fs23_c00071{font-size:176.880000px;}
.fs20_c00071{font-size:181.980000px;}
.fse_c00071{font-size:183.660000px;}
.fs1d_c00071{font-size:199.020000px;}
.fs1f_c00071{font-size:221.100000px;}
.fs18_c00071{font-size:260.220000px;}
.fs8_c00071{font-size:1950.780000px;}
.y0_c00071{bottom:0.000000px;}
.y18_c00071{bottom:253.470000px;}
.y3_c00071{bottom:256.455000px;}
.y2e_c00071{bottom:257.085000px;}
.y19_c00071{bottom:274.230000px;}
.y4_c00071{bottom:281.970000px;}
.y2f_c00071{bottom:289.245000px;}
.y5_c00071{bottom:309.750000px;}
.y1a_c00071{bottom:311.460000px;}
.y30_c00071{bottom:313.455000px;}
.y31_c00071{bottom:346.410000px;}
.y6_c00071{bottom:354.150000px;}
.y1b_c00071{bottom:359.550000px;}
.y7_c00071{bottom:381.405000px;}
.y1c_c00071{bottom:383.055000px;}
.y32_c00071{bottom:387.405000px;}
.y8_c00071{bottom:395.130000px;}
.y9_c00071{bottom:409.875000px;}
.y33_c00071{bottom:423.465000px;}
.y1d_c00071{bottom:432.960000px;}
.ya_c00071{bottom:472.650000px;}
.y1e_c00071{bottom:483.180000px;}
.y34_c00071{bottom:496.035000px;}
.y1f_c00071{bottom:518.430000px;}
.y41_c00071{bottom:527.970000px;}
.y35_c00071{bottom:544.515000px;}
.yb_c00071{bottom:545.970000px;}
.yc_c00071{bottom:562.050000px;}
.y42_c00071{bottom:562.755000px;}
.y20_c00071{bottom:573.825000px;}
.yd_c00071{bottom:584.910000px;}
.y21_c00071{bottom:599.055000px;}
.y36_c00071{bottom:620.970000px;}
.y43_c00071{bottom:629.745000px;}
.ye_c00071{bottom:631.425000px;}
.y22_c00071{bottom:637.470000px;}
.y37_c00071{bottom:657.255000px;}
.y44_c00071{bottom:668.415000px;}
.yf_c00071{bottom:672.135000px;}
.y23_c00071{bottom:679.260000px;}
.y10_c00071{bottom:710.955000px;}
.y38_c00071{bottom:724.680000px;}
.y11_c00071{bottom:739.230000px;}
.y45_c00071{bottom:748.560000px;}
.y39_c00071{bottom:766.335000px;}
.y24_c00071{bottom:767.550000px;}
.y12_c00071{bottom:774.780000px;}
.y25_c00071{bottom:784.875000px;}
.y26_c00071{bottom:810.825000px;}
.y13_c00071{bottom:825.255000px;}
.y27_c00071{bottom:836.055000px;}
.y3a_c00071{bottom:846.480000px;}
.y28_c00071{bottom:872.745000px;}
.y14_c00071{bottom:890.970000px;}
.y29_c00071{bottom:903.960000px;}
.y3b_c00071{bottom:908.550000px;}
.y15_c00071{bottom:925.560000px;}
.y3c_c00071{bottom:928.875000px;}
.y2a_c00071{bottom:949.470000px;}
.y3d_c00071{bottom:955.905000px;}
.y2b_c00071{bottom:975.300000px;}
.y3e_c00071{bottom:979.425000px;}
.y16_c00071{bottom:988.245000px;}
.y3f_c00071{bottom:1014.825000px;}
.y17_c00071{bottom:1023.285000px;}
.y2c_c00071{bottom:1027.245000px;}
.y40_c00071{bottom:1041.975000px;}
.y2d_c00071{bottom:1051.005000px;}
.y2_c00071{bottom:1099.905000px;}
.y1_c00071{bottom:1102.050000px;}
.h7_c00071{height:23.025234px;}
.h1_c00071{height:25.091602px;}
.h4_c00071{height:31.364502px;}
.h2_c00071{height:35.571035px;}
.h18_c00071{height:39.777568px;}
.h11_c00071{height:43.910303px;}
.h16_c00071{height:48.116836px;}
.h1f_c00071{height:60.662637px;}
.h3_c00071{height:64.869170px;}
.h8_c00071{height:69.001904px;}
.h13_c00071{height:75.274805px;}
.hd_c00071{height:79.481338px;}
.h6_c00071{height:83.687871px;}
.h1d_c00071{height:87.894404px;}
.h1c_c00071{height:92.027139px;}
.hb_c00071{height:96.233672px;}
.he_c00071{height:104.572939px;}
.hc_c00071{height:112.986006px;}
.h15_c00071{height:117.118740px;}
.h23_c00071{height:123.391641px;}
.ha_c00071{height:125.531807px;}
.h5_c00071{height:136.011240px;}
.h1a_c00071{height:152.689775px;}
.h14_c00071{height:156.896309px;}
.h1b_c00071{height:165.235576px;}
.h17_c00071{height:188.260811px;}
.h12_c00071{height:196.673877px;}
.h10_c00071{height:209.219678px;}
.h22_c00071{height:213.352412px;}
.h24_c00071{height:217.558945px;}
.h21_c00071{height:223.831846px;}
.hf_c00071{height:225.898213px;}
.h1e_c00071{height:244.790713px;}
.h20_c00071{height:271.948682px;}
.h19_c00071{height:320.065518px;}
.h0_c00071{height:1335.000000px;}
.h9_c00071{height:2399.421299px;}
.w0_c00071{width:880.500000px;}
.x0_c00071{left:0.000000px;}
.x2_c00071{left:151.500000px;}
.x1_c00071{left:399.000000px;}
.xb_c00071{left:601.950000px;}
.x3_c00071{left:603.645000px;}
.x5_c00071{left:604.920000px;}
.xc_c00071{left:606.000000px;}
.x4_c00071{left:607.080000px;}
.x9_c00071{left:612.600000px;}
.x6_c00071{left:615.825000px;}
.xd_c00071{left:619.080000px;}
.x8_c00071{left:620.100000px;}
.xe_c00071{left:622.500000px;}
.xa_c00071{left:625.005000px;}
.xf_c00071{left:634.500000px;}
.x10_c00071{left:636.000000px;}
.x12_c00071{left:648.420000px;}
.x11_c00071{left:652.500000px;}
.x7_c00071{left:656.370000px;}
@media print{
.v0_c00071{vertical-align:0.000000pt;}
.ls0_c00071{letter-spacing:0.000000pt;}
.ws0_c00071{word-spacing:0.000000pt;}
.fs6_c00071{font-size:16.640000pt;}
.fs0_c00071{font-size:18.133333pt;}
.fs3_c00071{font-size:22.666667pt;}
.fs1_c00071{font-size:25.706667pt;}
.fs17_c00071{font-size:28.746667pt;}
.fs10_c00071{font-size:31.733333pt;}
.fs15_c00071{font-size:34.773333pt;}
.fs1e_c00071{font-size:43.840000pt;}
.fs2_c00071{font-size:46.880000pt;}
.fs7_c00071{font-size:49.866667pt;}
.fs12_c00071{font-size:54.400000pt;}
.fsc_c00071{font-size:57.440000pt;}
.fs5_c00071{font-size:60.480000pt;}
.fs1c_c00071{font-size:63.520000pt;}
.fs1b_c00071{font-size:66.506667pt;}
.fsa_c00071{font-size:69.546667pt;}
.fsd_c00071{font-size:75.573333pt;}
.fsb_c00071{font-size:81.653333pt;}
.fs14_c00071{font-size:84.640000pt;}
.fs22_c00071{font-size:89.173333pt;}
.fs9_c00071{font-size:90.720000pt;}
.fs4_c00071{font-size:98.293333pt;}
.fs19_c00071{font-size:110.346667pt;}
.fs13_c00071{font-size:113.386667pt;}
.fs1a_c00071{font-size:119.413333pt;}
.fs16_c00071{font-size:136.053333pt;}
.fs11_c00071{font-size:142.133333pt;}
.fsf_c00071{font-size:151.200000pt;}
.fs21_c00071{font-size:154.186667pt;}
.fs23_c00071{font-size:157.226667pt;}
.fs20_c00071{font-size:161.760000pt;}
.fse_c00071{font-size:163.253333pt;}
.fs1d_c00071{font-size:176.906667pt;}
.fs1f_c00071{font-size:196.533333pt;}
.fs18_c00071{font-size:231.306667pt;}
.fs8_c00071{font-size:1734.026667pt;}
.y0_c00071{bottom:0.000000pt;}
.y18_c00071{bottom:225.306667pt;}
.y3_c00071{bottom:227.960000pt;}
.y2e_c00071{bottom:228.520000pt;}
.y19_c00071{bottom:243.760000pt;}
.y4_c00071{bottom:250.640000pt;}
.y2f_c00071{bottom:257.106667pt;}
.y5_c00071{bottom:275.333333pt;}
.y1a_c00071{bottom:276.853333pt;}
.y30_c00071{bottom:278.626667pt;}
.y31_c00071{bottom:307.920000pt;}
.y6_c00071{bottom:314.800000pt;}
.y1b_c00071{bottom:319.600000pt;}
.y7_c00071{bottom:339.026667pt;}
.y1c_c00071{bottom:340.493333pt;}
.y32_c00071{bottom:344.360000pt;}
.y8_c00071{bottom:351.226667pt;}
.y9_c00071{bottom:364.333333pt;}
.y33_c00071{bottom:376.413333pt;}
.y1d_c00071{bottom:384.853333pt;}
.ya_c00071{bottom:420.133333pt;}
.y1e_c00071{bottom:429.493333pt;}
.y34_c00071{bottom:440.920000pt;}
.y1f_c00071{bottom:460.826667pt;}
.y41_c00071{bottom:469.306667pt;}
.y35_c00071{bottom:484.013333pt;}
.yb_c00071{bottom:485.306667pt;}
.yc_c00071{bottom:499.600000pt;}
.y42_c00071{bottom:500.226667pt;}
.y20_c00071{bottom:510.066667pt;}
.yd_c00071{bottom:519.920000pt;}
.y21_c00071{bottom:532.493333pt;}
.y36_c00071{bottom:551.973333pt;}
.y43_c00071{bottom:559.773333pt;}
.ye_c00071{bottom:561.266667pt;}
.y22_c00071{bottom:566.640000pt;}
.y37_c00071{bottom:584.226667pt;}
.y44_c00071{bottom:594.146667pt;}
.yf_c00071{bottom:597.453333pt;}
.y23_c00071{bottom:603.786667pt;}
.y10_c00071{bottom:631.960000pt;}
.y38_c00071{bottom:644.160000pt;}
.y11_c00071{bottom:657.093333pt;}
.y45_c00071{bottom:665.386667pt;}
.y39_c00071{bottom:681.186667pt;}
.y24_c00071{bottom:682.266667pt;}
.y12_c00071{bottom:688.693333pt;}
.y25_c00071{bottom:697.666667pt;}
.y26_c00071{bottom:720.733333pt;}
.y13_c00071{bottom:733.560000pt;}
.y27_c00071{bottom:743.160000pt;}
.y3a_c00071{bottom:752.426667pt;}
.y28_c00071{bottom:775.773333pt;}
.y14_c00071{bottom:791.973333pt;}
.y29_c00071{bottom:803.520000pt;}
.y3b_c00071{bottom:807.600000pt;}
.y15_c00071{bottom:822.720000pt;}
.y3c_c00071{bottom:825.666667pt;}
.y2a_c00071{bottom:843.973333pt;}
.y3d_c00071{bottom:849.693333pt;}
.y2b_c00071{bottom:866.933333pt;}
.y3e_c00071{bottom:870.600000pt;}
.y16_c00071{bottom:878.440000pt;}
.y3f_c00071{bottom:902.066667pt;}
.y17_c00071{bottom:909.586667pt;}
.y2c_c00071{bottom:913.106667pt;}
.y40_c00071{bottom:926.200000pt;}
.y2d_c00071{bottom:934.226667pt;}
.y2_c00071{bottom:977.693333pt;}
.y1_c00071{bottom:979.600000pt;}
.h7_c00071{height:20.466875pt;}
.h1_c00071{height:22.303646pt;}
.h4_c00071{height:27.879557pt;}
.h2_c00071{height:31.618698pt;}
.h18_c00071{height:35.357839pt;}
.h11_c00071{height:39.031380pt;}
.h16_c00071{height:42.770521pt;}
.h1f_c00071{height:53.922344pt;}
.h3_c00071{height:57.661484pt;}
.h8_c00071{height:61.335026pt;}
.h13_c00071{height:66.910937pt;}
.hd_c00071{height:70.650078pt;}
.h6_c00071{height:74.389219pt;}
.h1d_c00071{height:78.128359pt;}
.h1c_c00071{height:81.801901pt;}
.hb_c00071{height:85.541042pt;}
.he_c00071{height:92.953724pt;}
.hc_c00071{height:100.432005pt;}
.h15_c00071{height:104.105547pt;}
.h23_c00071{height:109.681458pt;}
.ha_c00071{height:111.583828pt;}
.h5_c00071{height:120.898880pt;}
.h1a_c00071{height:135.724245pt;}
.h14_c00071{height:139.463385pt;}
.h1b_c00071{height:146.876068pt;}
.h17_c00071{height:167.342943pt;}
.h12_c00071{height:174.821224pt;}
.h10_c00071{height:185.973047pt;}
.h22_c00071{height:189.646589pt;}
.h24_c00071{height:193.385729pt;}
.h21_c00071{height:198.961641pt;}
.hf_c00071{height:200.798411pt;}
.h1e_c00071{height:217.591745pt;}
.h20_c00071{height:241.732161pt;}
.h19_c00071{height:284.502682pt;}
.h0_c00071{height:1186.666667pt;}
.h9_c00071{height:2132.818932pt;}
.w0_c00071{width:782.666667pt;}
.x0_c00071{left:0.000000pt;}
.x2_c00071{left:134.666667pt;}
.x1_c00071{left:354.666667pt;}
.xb_c00071{left:535.066667pt;}
.x3_c00071{left:536.573333pt;}
.x5_c00071{left:537.706667pt;}
.xc_c00071{left:538.666667pt;}
.x4_c00071{left:539.626667pt;}
.x9_c00071{left:544.533333pt;}
.x6_c00071{left:547.400000pt;}
.xd_c00071{left:550.293333pt;}
.x8_c00071{left:551.200000pt;}
.xe_c00071{left:553.333333pt;}
.xa_c00071{left:555.560000pt;}
.xf_c00071{left:564.000000pt;}
.x10_c00071{left:565.333333pt;}
.x12_c00071{left:576.373333pt;}
.x11_c00071{left:580.000000pt;}
.x7_c00071{left:583.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_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_3b8ed9bb677852c5e39eef2b.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:1.688965;font-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_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);}
.m20_c00072{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m2a_c00072{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m23_c00072{transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);}
.m1d_c00072{transform:matrix(0.404453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404453,0.000000,0.000000,0.250000,0,0);}
.m2f_c00072{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.m39_c00072{transform:matrix(0.413265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413265,0.000000,0.000000,0.250000,0,0);}
.m21_c00072{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m35_c00072{transform:matrix(0.417059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417059,0.000000,0.000000,0.250000,0,0);}
.m1e_c00072{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m2e_c00072{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m2c_c00072{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m33_c00072{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m1b_c00072{transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);}
.m1f_c00072{transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);}
.m25_c00072{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.ma_c00072{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m18_c00072{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m8_c00072{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m1_c00072{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m28_c00072{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m30_c00072{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.m31_c00072{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m12_c00072{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);}
.m2b_c00072{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m5_c00072{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m2_c00072{transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);}
.m3_c00072{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);}
.m13_c00072{transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);}
.mb_c00072{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m37_c00072{transform:matrix(0.542941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542941,0.000000,0.000000,0.250000,0,0);}
.m4_c00072{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m2d_c00072{transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);}
.m34_c00072{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m38_c00072{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m15_c00072{transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);}
.m22_c00072{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m19_c00072{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mc_c00072{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m14_c00072{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.m1c_c00072{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.m0_c00072{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.mf_c00072{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);}
.m1a_c00072{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m10_c00072{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m9_c00072{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);}
.m16_c00072{transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);}
.m29_c00072{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m32_c00072{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.md_c00072{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m26_c00072{transform:matrix(0.644231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644231,0.000000,0.000000,0.250000,0,0);}
.m36_c00072{transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);}
.m11_c00072{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m7_c00072{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m17_c00072{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.me_c00072{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);}
.m24_c00072{transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);}
.m6_c00072{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,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;}
.fs4_c00072{font-size:13.620000px;}
.fs5_c00072{font-size:18.720000px;}
.fs0_c00072{font-size:20.400000px;}
.fs3_c00072{font-size:25.500000px;}
.fs1_c00072{font-size:28.920000px;}
.fs2_c00072{font-size:32.340000px;}
.fs7_c00072{font-size:35.700000px;}
.fs6_c00072{font-size:39.120000px;}
.y0_c00072{bottom:0.000000px;}
.y2b_c00072{bottom:271.905000px;}
.y2f_c00072{bottom:272.325000px;}
.y2c_c00072{bottom:272.970000px;}
.y2d_c00072{bottom:274.050000px;}
.y2e_c00072{bottom:274.470000px;}
.y29_c00072{bottom:275.325000px;}
.y2a_c00072{bottom:275.550000px;}
.y28_c00072{bottom:277.905000px;}
.y22_c00072{bottom:285.825000px;}
.y24_c00072{bottom:286.905000px;}
.y26_c00072{bottom:287.325000px;}
.y23_c00072{bottom:287.970000px;}
.y27_c00072{bottom:288.405000px;}
.y25_c00072{bottom:289.050000px;}
.y21_c00072{bottom:289.470000px;}
.y20_c00072{bottom:290.745000px;}
.y1a_c00072{bottom:300.825000px;}
.y19_c00072{bottom:301.905000px;}
.y1c_c00072{bottom:302.130000px;}
.y1f_c00072{bottom:302.550000px;}
.y1b_c00072{bottom:302.970000px;}
.y1d_c00072{bottom:303.180000px;}
.y16_c00072{bottom:303.405000px;}
.y18_c00072{bottom:304.050000px;}
.y17_c00072{bottom:304.470000px;}
.y15_c00072{bottom:305.325000px;}
.y1e_c00072{bottom:305.550000px;}
.y10_c00072{bottom:316.050000px;}
.y12_c00072{bottom:316.905000px;}
.y11_c00072{bottom:317.130000px;}
.yf_c00072{bottom:317.970000px;}
.y13_c00072{bottom:318.630000px;}
.ye_c00072{bottom:319.050000px;}
.yd_c00072{bottom:319.470000px;}
.y14_c00072{bottom:320.550000px;}
.yb_c00072{bottom:323.130000px;}
.yc_c00072{bottom:323.550000px;}
.y8_c00072{bottom:331.905000px;}
.y3_c00072{bottom:332.325000px;}
.ya_c00072{bottom:332.550000px;}
.y9_c00072{bottom:332.970000px;}
.y6_c00072{bottom:333.195000px;}
.y7_c00072{bottom:334.050000px;}
.y5_c00072{bottom:334.470000px;}
.y4_c00072{bottom:335.550000px;}
.y2_c00072{bottom:1098.405000px;}
.y1_c00072{bottom:1100.550000px;}
.h5_c00072{height:16.752334px;}
.h6_c00072{height:23.025234px;}
.h1_c00072{height:25.091602px;}
.h4_c00072{height:31.364502px;}
.h2_c00072{height:35.571035px;}
.h3_c00072{height:39.777568px;}
.h8_c00072{height:43.910303px;}
.h7_c00072{height:48.116836px;}
.h0_c00072{height:1335.000000px;}
.w0_c00072{width:880.500000px;}
.x0_c00072{left:0.000000px;}
.x3_c00072{left:149.580000px;}
.x25_c00072{left:153.420000px;}
.x14_c00072{left:154.500000px;}
.x15_c00072{left:168.420000px;}
.x3d_c00072{left:174.000000px;}
.x16_c00072{left:181.500000px;}
.x4_c00072{left:184.500000px;}
.x5_c00072{left:202.500000px;}
.x3e_c00072{left:217.920000px;}
.x17_c00072{left:220.500000px;}
.x35_c00072{left:222.000000px;}
.x26_c00072{left:223.500000px;}
.x3f_c00072{left:233.580000px;}
.x6_c00072{left:239.580000px;}
.x18_c00072{left:253.500000px;}
.x7_c00072{left:256.500000px;}
.x27_c00072{left:262.920000px;}
.x8_c00072{left:268.500000px;}
.x19_c00072{left:271.500000px;}
.x28_c00072{left:278.580000px;}
.x36_c00072{left:280.080000px;}
.x40_c00072{left:283.500000px;}
.x9_c00072{left:293.580000px;}
.x37_c00072{left:296.580000px;}
.x1a_c00072{left:298.500000px;}
.x41_c00072{left:301.920000px;}
.x1b_c00072{left:342.420000px;}
.x29_c00072{left:345.000000px;}
.xa_c00072{left:349.500000px;}
.x42_c00072{left:355.500000px;}
.x1c_c00072{left:358.500000px;}
.x2a_c00072{left:363.000000px;}
.xb_c00072{left:367.920000px;}
.x38_c00072{left:382.500000px;}
.x43_c00072{left:397.920000px;}
.x1_c00072{left:399.000000px;}
.x2b_c00072{left:405.000000px;}
.x44_c00072{left:415.500000px;}
.xc_c00072{left:418.920000px;}
.x39_c00072{left:421.080000px;}
.x2c_c00072{left:438.000000px;}
.x1d_c00072{left:441.000000px;}
.x45_c00072{left:454.500000px;}
.xd_c00072{left:462.420000px;}
.x1e_c00072{left:466.500000px;}
.x46_c00072{left:472.920000px;}
.xe_c00072{left:489.000000px;}
.x2d_c00072{left:505.500000px;}
.x3a_c00072{left:510.420000px;}
.x1f_c00072{left:514.080000px;}
.x47_c00072{left:522.000000px;}
.xf_c00072{left:532.500000px;}
.x48_c00072{left:537.000000px;}
.x2e_c00072{left:538.080000px;}
.x2f_c00072{left:555.000000px;}
.x20_c00072{left:558.000000px;}
.x10_c00072{left:567.000000px;}
.x11_c00072{left:583.500000px;}
.x49_c00072{left:588.000000px;}
.x3b_c00072{left:591.420000px;}
.x30_c00072{left:603.420000px;}
.x4a_c00072{left:609.000000px;}
.x21_c00072{left:611.580000px;}
.x12_c00072{left:619.500000px;}
.x31_c00072{left:625.920000px;}
.x22_c00072{left:630.000000px;}
.x32_c00072{left:637.500000px;}
.x13_c00072{left:643.500000px;}
.x4b_c00072{left:654.000000px;}
.x23_c00072{left:669.000000px;}
.x4c_c00072{left:672.000000px;}
.x3c_c00072{left:677.580000px;}
.x33_c00072{left:679.920000px;}
.x34_c00072{left:696.000000px;}
.x24_c00072{left:711.000000px;}
.x2_c00072{left:712.500000px;}
@media print{
.v0_c00072{vertical-align:0.000000pt;}
.ls0_c00072{letter-spacing:0.000000pt;}
.ws0_c00072{word-spacing:0.000000pt;}
.fs4_c00072{font-size:12.106667pt;}
.fs5_c00072{font-size:16.640000pt;}
.fs0_c00072{font-size:18.133333pt;}
.fs3_c00072{font-size:22.666667pt;}
.fs1_c00072{font-size:25.706667pt;}
.fs2_c00072{font-size:28.746667pt;}
.fs7_c00072{font-size:31.733333pt;}
.fs6_c00072{font-size:34.773333pt;}
.y0_c00072{bottom:0.000000pt;}
.y2b_c00072{bottom:241.693333pt;}
.y2f_c00072{bottom:242.066667pt;}
.y2c_c00072{bottom:242.640000pt;}
.y2d_c00072{bottom:243.600000pt;}
.y2e_c00072{bottom:243.973333pt;}
.y29_c00072{bottom:244.733333pt;}
.y2a_c00072{bottom:244.933333pt;}
.y28_c00072{bottom:247.026667pt;}
.y22_c00072{bottom:254.066667pt;}
.y24_c00072{bottom:255.026667pt;}
.y26_c00072{bottom:255.400000pt;}
.y23_c00072{bottom:255.973333pt;}
.y27_c00072{bottom:256.360000pt;}
.y25_c00072{bottom:256.933333pt;}
.y21_c00072{bottom:257.306667pt;}
.y20_c00072{bottom:258.440000pt;}
.y1a_c00072{bottom:267.400000pt;}
.y19_c00072{bottom:268.360000pt;}
.y1c_c00072{bottom:268.560000pt;}
.y1f_c00072{bottom:268.933333pt;}
.y1b_c00072{bottom:269.306667pt;}
.y1d_c00072{bottom:269.493333pt;}
.y16_c00072{bottom:269.693333pt;}
.y18_c00072{bottom:270.266667pt;}
.y17_c00072{bottom:270.640000pt;}
.y15_c00072{bottom:271.400000pt;}
.y1e_c00072{bottom:271.600000pt;}
.y10_c00072{bottom:280.933333pt;}
.y12_c00072{bottom:281.693333pt;}
.y11_c00072{bottom:281.893333pt;}
.yf_c00072{bottom:282.640000pt;}
.y13_c00072{bottom:283.226667pt;}
.ye_c00072{bottom:283.600000pt;}
.yd_c00072{bottom:283.973333pt;}
.y14_c00072{bottom:284.933333pt;}
.yb_c00072{bottom:287.226667pt;}
.yc_c00072{bottom:287.600000pt;}
.y8_c00072{bottom:295.026667pt;}
.y3_c00072{bottom:295.400000pt;}
.ya_c00072{bottom:295.600000pt;}
.y9_c00072{bottom:295.973333pt;}
.y6_c00072{bottom:296.173333pt;}
.y7_c00072{bottom:296.933333pt;}
.y5_c00072{bottom:297.306667pt;}
.y4_c00072{bottom:298.266667pt;}
.y2_c00072{bottom:976.360000pt;}
.y1_c00072{bottom:978.266667pt;}
.h5_c00072{height:14.890964pt;}
.h6_c00072{height:20.466875pt;}
.h1_c00072{height:22.303646pt;}
.h4_c00072{height:27.879557pt;}
.h2_c00072{height:31.618698pt;}
.h3_c00072{height:35.357839pt;}
.h8_c00072{height:39.031380pt;}
.h7_c00072{height:42.770521pt;}
.h0_c00072{height:1186.666667pt;}
.w0_c00072{width:782.666667pt;}
.x0_c00072{left:0.000000pt;}
.x3_c00072{left:132.960000pt;}
.x25_c00072{left:136.373333pt;}
.x14_c00072{left:137.333333pt;}
.x15_c00072{left:149.706667pt;}
.x3d_c00072{left:154.666667pt;}
.x16_c00072{left:161.333333pt;}
.x4_c00072{left:164.000000pt;}
.x5_c00072{left:180.000000pt;}
.x3e_c00072{left:193.706667pt;}
.x17_c00072{left:196.000000pt;}
.x35_c00072{left:197.333333pt;}
.x26_c00072{left:198.666667pt;}
.x3f_c00072{left:207.626667pt;}
.x6_c00072{left:212.960000pt;}
.x18_c00072{left:225.333333pt;}
.x7_c00072{left:228.000000pt;}
.x27_c00072{left:233.706667pt;}
.x8_c00072{left:238.666667pt;}
.x19_c00072{left:241.333333pt;}
.x28_c00072{left:247.626667pt;}
.x36_c00072{left:248.960000pt;}
.x40_c00072{left:252.000000pt;}
.x9_c00072{left:260.960000pt;}
.x37_c00072{left:263.626667pt;}
.x1a_c00072{left:265.333333pt;}
.x41_c00072{left:268.373333pt;}
.x1b_c00072{left:304.373333pt;}
.x29_c00072{left:306.666667pt;}
.xa_c00072{left:310.666667pt;}
.x42_c00072{left:316.000000pt;}
.x1c_c00072{left:318.666667pt;}
.x2a_c00072{left:322.666667pt;}
.xb_c00072{left:327.040000pt;}
.x38_c00072{left:340.000000pt;}
.x43_c00072{left:353.706667pt;}
.x1_c00072{left:354.666667pt;}
.x2b_c00072{left:360.000000pt;}
.x44_c00072{left:369.333333pt;}
.xc_c00072{left:372.373333pt;}
.x39_c00072{left:374.293333pt;}
.x2c_c00072{left:389.333333pt;}
.x1d_c00072{left:392.000000pt;}
.x45_c00072{left:404.000000pt;}
.xd_c00072{left:411.040000pt;}
.x1e_c00072{left:414.666667pt;}
.x46_c00072{left:420.373333pt;}
.xe_c00072{left:434.666667pt;}
.x2d_c00072{left:449.333333pt;}
.x3a_c00072{left:453.706667pt;}
.x1f_c00072{left:456.960000pt;}
.x47_c00072{left:464.000000pt;}
.xf_c00072{left:473.333333pt;}
.x48_c00072{left:477.333333pt;}
.x2e_c00072{left:478.293333pt;}
.x2f_c00072{left:493.333333pt;}
.x20_c00072{left:496.000000pt;}
.x10_c00072{left:504.000000pt;}
.x11_c00072{left:518.666667pt;}
.x49_c00072{left:522.666667pt;}
.x3b_c00072{left:525.706667pt;}
.x30_c00072{left:536.373333pt;}
.x4a_c00072{left:541.333333pt;}
.x21_c00072{left:543.626667pt;}
.x12_c00072{left:550.666667pt;}
.x31_c00072{left:556.373333pt;}
.x22_c00072{left:560.000000pt;}
.x32_c00072{left:566.666667pt;}
.x13_c00072{left:572.000000pt;}
.x4b_c00072{left:581.333333pt;}
.x23_c00072{left:594.666667pt;}
.x4c_c00072{left:597.333333pt;}
.x3c_c00072{left:602.293333pt;}
.x33_c00072{left:604.373333pt;}
.x34_c00072{left:618.666667pt;}
.x24_c00072{left:632.000000pt;}
.x2_c00072{left:633.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f87cf7543d159089dce93bb3.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:1.688965;font-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_c00073{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);}
.m17_c00073{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m86_c00073{transform:matrix(0.367739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367739,0.000000,0.000000,0.250000,0,0);}
.m4a_c00073{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m11_c00073{transform:matrix(0.368482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368482,0.000000,0.000000,0.250000,0,0);}
.m48_c00073{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m2c_c00073{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m4e_c00073{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m35_c00073{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m72_c00073{transform:matrix(0.398390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398390,0.000000,0.000000,0.250000,0,0);}
.m7_c00073{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m1b_c00073{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m30_c00073{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_c00073{transform:matrix(0.403374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403374,0.000000,0.000000,0.250000,0,0);}
.m57_c00073{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m2b_c00073{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m42_c00073{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m51_c00073{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mb_c00073{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m10_c00073{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m22_c00073{transform:matrix(0.410276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410276,0.000000,0.000000,0.250000,0,0);}
.m4c_c00073{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m1c_c00073{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m32_c00073{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m70_c00073{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m12_c00073{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m23_c00073{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m75_c00073{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m15_c00073{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m8a_c00073{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m71_c00073{transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);}
.m6a_c00073{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m13_c00073{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m14_c00073{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.mc_c00073{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m19_c00073{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m29_c00073{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m33_c00073{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m28_c00073{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m61_c00073{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m37_c00073{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m55_c00073{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m8c_c00073{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m77_c00073{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m49_c00073{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.m6f_c00073{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.m36_c00073{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m38_c00073{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m1a_c00073{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m4_c00073{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m84_c00073{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m5a_c00073{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m60_c00073{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.m50_c00073{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m3b_c00073{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m5d_c00073{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m18_c00073{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m67_c00073{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m73_c00073{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m1f_c00073{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m31_c00073{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m89_c00073{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m40_c00073{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.m2e_c00073{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.m8d_c00073{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.m87_c00073{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m76_c00073{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m59_c00073{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m1_c00073{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m80_c00073{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m8b_c00073{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.m85_c00073{transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);}
.m62_c00073{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m3d_c00073{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m2_c00073{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_c00073{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m45_c00073{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m4d_c00073{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m26_c00073{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m58_c00073{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m3c_c00073{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m3f_c00073{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m69_c00073{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.me_c00073{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m6_c00073{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.ma_c00073{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m47_c00073{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m56_c00073{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m3a_c00073{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m8_c00073{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m64_c00073{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m53_c00073{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m5c_c00073{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mf_c00073{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m63_c00073{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m44_c00073{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m24_c00073{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m65_c00073{transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);}
.m52_c00073{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m7b_c00073{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m21_c00073{transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);}
.m5b_c00073{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m46_c00073{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m39_c00073{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m6e_c00073{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m6b_c00073{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m88_c00073{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m3e_c00073{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m54_c00073{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m27_c00073{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m5e_c00073{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m9_c00073{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m7a_c00073{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m16_c00073{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m83_c00073{transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);}
.m5_c00073{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m5f_c00073{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m6d_c00073{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m1d_c00073{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.md_c00073{transform:matrix(0.601765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601765,0.000000,0.000000,0.250000,0,0);}
.m41_c00073{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m3_c00073{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.m34_c00073{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m2a_c00073{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m0_c00073{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.m79_c00073{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_c00073{transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);}
.m7d_c00073{transform:matrix(0.644231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644231,0.000000,0.000000,0.250000,0,0);}
.m82_c00073{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);}
.m78_c00073{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m25_c00073{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m7e_c00073{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m68_c00073{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m81_c00073{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);}
.m43_c00073{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m2d_c00073{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m6c_c00073{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m1e_c00073{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m74_c00073{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.m4f_c00073{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m66_c00073{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.m7f_c00073{transform:matrix(1.756637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.756637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.756637,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;}
.fs8_c00073{font-size:6.780000px;}
.fs7_c00073{font-size:13.620000px;}
.fs5_c00073{font-size:18.720000px;}
.fs0_c00073{font-size:20.400000px;}
.fs3_c00073{font-size:25.500000px;}
.fs1_c00073{font-size:28.920000px;}
.fs6_c00073{font-size:32.340000px;}
.fs2_c00073{font-size:35.700000px;}
.fs4_c00073{font-size:39.120000px;}
.y0_c00073{bottom:0.000000px;}
.y69_c00073{bottom:252.405000px;}
.y68_c00073{bottom:254.745000px;}
.y67_c00073{bottom:256.905000px;}
.y66_c00073{bottom:274.245000px;}
.y64_c00073{bottom:275.325000px;}
.y63_c00073{bottom:276.405000px;}
.y65_c00073{bottom:277.470000px;}
.y62_c00073{bottom:292.680000px;}
.y5d_c00073{bottom:293.325000px;}
.y5e_c00073{bottom:293.745000px;}
.y61_c00073{bottom:294.180000px;}
.y5b_c00073{bottom:294.405000px;}
.y5f_c00073{bottom:295.470000px;}
.y5c_c00073{bottom:295.905000px;}
.y60_c00073{bottom:296.130000px;}
.y5a_c00073{bottom:312.405000px;}
.y59_c00073{bottom:313.245000px;}
.y55_c00073{bottom:334.245000px;}
.y57_c00073{bottom:335.130000px;}
.y58_c00073{bottom:335.970000px;}
.y56_c00073{bottom:336.405000px;}
.y51_c00073{bottom:354.405000px;}
.y54_c00073{bottom:354.630000px;}
.y53_c00073{bottom:354.825000px;}
.y52_c00073{bottom:355.905000px;}
.y4e_c00073{bottom:373.245000px;}
.y4c_c00073{bottom:373.905000px;}
.y50_c00073{bottom:374.130000px;}
.y4f_c00073{bottom:374.970000px;}
.y4d_c00073{bottom:375.405000px;}
.y4a_c00073{bottom:390.405000px;}
.y49_c00073{bottom:392.745000px;}
.y4b_c00073{bottom:394.905000px;}
.y48_c00073{bottom:411.405000px;}
.y47_c00073{bottom:412.245000px;}
.y45_c00073{bottom:413.970000px;}
.y44_c00073{bottom:414.405000px;}
.y46_c00073{bottom:415.905000px;}
.y3d_c00073{bottom:430.905000px;}
.y41_c00073{bottom:431.325000px;}
.y3f_c00073{bottom:433.245000px;}
.y42_c00073{bottom:433.470000px;}
.y3e_c00073{bottom:433.905000px;}
.y43_c00073{bottom:434.970000px;}
.y40_c00073{bottom:435.405000px;}
.y3c_c00073{bottom:450.405000px;}
.y3b_c00073{bottom:452.745000px;}
.y3a_c00073{bottom:454.905000px;}
.y34_c00073{bottom:472.245000px;}
.y39_c00073{bottom:472.905000px;}
.y37_c00073{bottom:473.130000px;}
.y36_c00073{bottom:473.970000px;}
.y38_c00073{bottom:474.405000px;}
.y35_c00073{bottom:474.630000px;}
.y33_c00073{bottom:490.680000px;}
.y31_c00073{bottom:491.745000px;}
.y2f_c00073{bottom:492.405000px;}
.y32_c00073{bottom:493.470000px;}
.y30_c00073{bottom:493.905000px;}
.y2e_c00073{bottom:509.970000px;}
.y2d_c00073{bottom:511.245000px;}
.y2c_c00073{bottom:530.325000px;}
.y29_c00073{bottom:530.745000px;}
.y2b_c00073{bottom:532.905000px;}
.y2a_c00073{bottom:533.970000px;}
.y25_c00073{bottom:550.245000px;}
.y26_c00073{bottom:551.325000px;}
.y27_c00073{bottom:552.405000px;}
.y28_c00073{bottom:553.470000px;}
.y22_c00073{bottom:571.245000px;}
.y20_c00073{bottom:571.905000px;}
.y24_c00073{bottom:572.325000px;}
.y23_c00073{bottom:572.970000px;}
.y21_c00073{bottom:573.405000px;}
.y1f_c00073{bottom:588.405000px;}
.y1e_c00073{bottom:590.745000px;}
.y18_c00073{bottom:608.745000px;}
.y19_c00073{bottom:610.245000px;}
.y17_c00073{bottom:610.905000px;}
.y1c_c00073{bottom:611.325000px;}
.y1a_c00073{bottom:611.970000px;}
.y1d_c00073{bottom:612.405000px;}
.y1b_c00073{bottom:612.630000px;}
.y15_c00073{bottom:627.405000px;}
.y16_c00073{bottom:628.905000px;}
.y12_c00073{bottom:629.745000px;}
.y14_c00073{bottom:631.470000px;}
.y13_c00073{bottom:631.905000px;}
.y11_c00073{bottom:648.180000px;}
.yc_c00073{bottom:648.405000px;}
.yd_c00073{bottom:649.245000px;}
.y10_c00073{bottom:650.325000px;}
.ye_c00073{bottom:651.405000px;}
.yf_c00073{bottom:651.630000px;}
.yb_c00073{bottom:667.470000px;}
.ya_c00073{bottom:668.745000px;}
.y6_c00073{bottom:688.470000px;}
.y9_c00073{bottom:688.680000px;}
.y8_c00073{bottom:689.745000px;}
.y7_c00073{bottom:691.905000px;}
.y5_c00073{bottom:709.245000px;}
.y3_c00073{bottom:709.905000px;}
.y4_c00073{bottom:711.405000px;}
.y71_c00073{bottom:738.405000px;}
.y72_c00073{bottom:739.470000px;}
.y6f_c00073{bottom:750.195000px;}
.y70_c00073{bottom:750.855000px;}
.y6b_c00073{bottom:751.470000px;}
.y6a_c00073{bottom:751.905000px;}
.y6e_c00073{bottom:752.970000px;}
.y6d_c00073{bottom:753.630000px;}
.y6c_c00073{bottom:754.050000px;}
.y2_c00073{bottom:1099.905000px;}
.y1_c00073{bottom:1102.050000px;}
.h9_c00073{height:8.339268px;}
.h8_c00073{height:16.752334px;}
.h6_c00073{height:23.025234px;}
.h1_c00073{height:25.091602px;}
.h4_c00073{height:31.364502px;}
.h2_c00073{height:35.571035px;}
.h7_c00073{height:39.777568px;}
.h3_c00073{height:43.910303px;}
.h5_c00073{height:48.116836px;}
.h0_c00073{height:1335.000000px;}
.w0_c00073{width:880.500000px;}
.x0_c00073{left:0.000000px;}
.x67_c00073{left:149.580000px;}
.x2_c00073{left:151.500000px;}
.x57_c00073{left:157.080000px;}
.x3_c00073{left:158.580000px;}
.x10_c00073{left:180.000000px;}
.x3d_c00073{left:181.500000px;}
.x4_c00073{left:183.000000px;}
.x68_c00073{left:198.000000px;}
.x7d_c00073{left:207.000000px;}
.x83_c00073{left:209.580000px;}
.x5f_c00073{left:214.500000px;}
.x8f_c00073{left:216.000000px;}
.x74_c00073{left:218.580000px;}
.x44_c00073{left:223.920000px;}
.x27_c00073{left:226.080000px;}
.x5_c00073{left:228.420000px;}
.x1b_c00073{left:229.920000px;}
.x58_c00073{left:231.420000px;}
.x30_c00073{left:232.920000px;}
.x4e_c00073{left:234.000000px;}
.x9b_c00073{left:235.920000px;}
.x75_c00073{left:240.420000px;}
.x99_c00073{left:246.000000px;}
.x1c_c00073{left:252.420000px;}
.x9c_c00073{left:255.000000px;}
.x31_c00073{left:258.000000px;}
.x11_c00073{left:259.500000px;}
.x6_c00073{left:265.500000px;}
.x9d_c00073{left:268.080000px;}
.x59_c00073{left:271.500000px;}
.x94_c00073{left:273.420000px;}
.x69_c00073{left:274.500000px;}
.x89_c00073{left:277.080000px;}
.x4f_c00073{left:280.920000px;}
.x32_c00073{left:286.920000px;}
.x28_c00073{left:291.000000px;}
.x9e_c00073{left:300.000000px;}
.x1d_c00073{left:301.920000px;}
.x12_c00073{left:303.000000px;}
.x7_c00073{left:304.920000px;}
.x45_c00073{left:307.080000px;}
.x29_c00073{left:310.920000px;}
.x50_c00073{left:322.500000px;}
.x6a_c00073{left:330.000000px;}
.x76_c00073{left:331.920000px;}
.x3e_c00073{left:334.500000px;}
.x2a_c00073{left:337.080000px;}
.x46_c00073{left:340.500000px;}
.x90_c00073{left:343.500000px;}
.x8_c00073{left:345.000000px;}
.x60_c00073{left:346.500000px;}
.x8a_c00073{left:349.500000px;}
.x65_c00073{left:350.580000px;}
.x5a_c00073{left:355.500000px;}
.x51_c00073{left:356.580000px;}
.x77_c00073{left:361.500000px;}
.x1e_c00073{left:364.080000px;}
.x13_c00073{left:367.500000px;}
.xa6_c00073{left:370.500000px;}
.x7e_c00073{left:374.580000px;}
.x2b_c00073{left:376.080000px;}
.x16_c00073{left:382.080000px;}
.x91_c00073{left:385.500000px;}
.x61_c00073{left:387.000000px;}
.x9f_c00073{left:390.000000px;}
.x47_c00073{left:392.580000px;}
.x2c_c00073{left:394.920000px;}
.x1_c00073{left:399.000000px;}
.x52_c00073{left:402.000000px;}
.x84_c00073{left:403.500000px;}
.xa0_c00073{left:405.000000px;}
.x3f_c00073{left:409.500000px;}
.x48_c00073{left:414.420000px;}
.x78_c00073{left:417.420000px;}
.x6b_c00073{left:418.500000px;}
.x7f_c00073{left:420.000000px;}
.x2d_c00073{left:421.500000px;}
.x9_c00073{left:426.000000px;}
.x14_c00073{left:428.580000px;}
.x33_c00073{left:430.920000px;}
.x6c_c00073{left:433.500000px;}
.xa7_c00073{left:435.000000px;}
.x5b_c00073{left:438.420000px;}
.x1f_c00073{left:442.920000px;}
.x62_c00073{left:445.500000px;}
.x79_c00073{left:447.000000px;}
.x8b_c00073{left:448.920000px;}
.x34_c00073{left:451.080000px;}
.xa8_c00073{left:454.500000px;}
.x80_c00073{left:459.000000px;}
.x95_c00073{left:460.500000px;}
.xa_c00073{left:462.000000px;}
.x15_c00073{left:463.920000px;}
.xa1_c00073{left:469.500000px;}
.x35_c00073{left:472.275000px;}
.x20_c00073{left:475.080000px;}
.x81_c00073{left:478.920000px;}
.x49_c00073{left:482.580000px;}
.x7a_c00073{left:486.420000px;}
.x6d_c00073{left:488.580000px;}
.x53_c00073{left:492.000000px;}
.x21_c00073{left:493.500000px;}
.x17_c00073{left:496.080000px;}
.xa9_c00073{left:498.645000px;}
.xb_c00073{left:499.920000px;}
.x92_c00073{left:501.420000px;}
.x63_c00073{left:502.920000px;}
.x40_c00073{left:504.420000px;}
.x22_c00073{left:505.920000px;}
.x6e_c00073{left:507.420000px;}
.xa2_c00073{left:510.000000px;}
.xaa_c00073{left:517.080000px;}
.x7b_c00073{left:521.580000px;}
.x5c_c00073{left:525.420000px;}
.x93_c00073{left:529.500000px;}
.xc_c00073{left:531.420000px;}
.x4a_c00073{left:532.500000px;}
.x6f_c00073{left:533.580000px;}
.x36_c00073{left:536.580000px;}
.x85_c00073{left:539.580000px;}
.x96_c00073{left:544.500000px;}
.x23_c00073{left:546.000000px;}
.x41_c00073{left:557.580000px;}
.x9a_c00073{left:566.580000px;}
.x70_c00073{left:568.080000px;}
.x54_c00073{left:569.580000px;}
.x18_c00073{left:573.000000px;}
.x8c_c00073{left:574.080000px;}
.x3c_c00073{left:575.580000px;}
.x7c_c00073{left:579.420000px;}
.xa3_c00073{left:580.500000px;}
.xd_c00073{left:583.500000px;}
.x71_c00073{left:586.500000px;}
.x4b_c00073{left:589.500000px;}
.x55_c00073{left:590.580000px;}
.x8e_c00073{left:593.580000px;}
.x2e_c00073{left:596.580000px;}
.x24_c00073{left:598.920000px;}
.x37_c00073{left:603.000000px;}
.xa4_c00073{left:604.500000px;}
.x8d_c00073{left:606.000000px;}
.x72_c00073{left:612.420000px;}
.x97_c00073{left:616.500000px;}
.x86_c00073{left:619.500000px;}
.x38_c00073{left:622.920000px;}
.x42_c00073{left:624.000000px;}
.x4c_c00073{left:629.580000px;}
.xe_c00073{left:631.500000px;}
.x87_c00073{left:637.500000px;}
.xa5_c00073{left:648.420000px;}
.x39_c00073{left:649.500000px;}
.x5d_c00073{left:652.920000px;}
.x4d_c00073{left:664.920000px;}
.x73_c00073{left:667.500000px;}
.x25_c00073{left:668.580000px;}
.x98_c00073{left:672.420000px;}
.x5e_c00073{left:683.580000px;}
.x56_c00073{left:686.580000px;}
.x3a_c00073{left:688.080000px;}
.x19_c00073{left:694.080000px;}
.x2f_c00073{left:695.580000px;}
.x64_c00073{left:697.500000px;}
.xf_c00073{left:699.000000px;}
.x26_c00073{left:700.500000px;}
.x3b_c00073{left:706.920000px;}
.x43_c00073{left:708.420000px;}
.x88_c00073{left:709.500000px;}
.x1a_c00073{left:714.000000px;}
.x66_c00073{left:721.080000px;}
.x82_c00073{left:722.580000px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.ls0_c00073{letter-spacing:0.000000pt;}
.ws0_c00073{word-spacing:0.000000pt;}
.fs8_c00073{font-size:6.026667pt;}
.fs7_c00073{font-size:12.106667pt;}
.fs5_c00073{font-size:16.640000pt;}
.fs0_c00073{font-size:18.133333pt;}
.fs3_c00073{font-size:22.666667pt;}
.fs1_c00073{font-size:25.706667pt;}
.fs6_c00073{font-size:28.746667pt;}
.fs2_c00073{font-size:31.733333pt;}
.fs4_c00073{font-size:34.773333pt;}
.y0_c00073{bottom:0.000000pt;}
.y69_c00073{bottom:224.360000pt;}
.y68_c00073{bottom:226.440000pt;}
.y67_c00073{bottom:228.360000pt;}
.y66_c00073{bottom:243.773333pt;}
.y64_c00073{bottom:244.733333pt;}
.y63_c00073{bottom:245.693333pt;}
.y65_c00073{bottom:246.640000pt;}
.y62_c00073{bottom:260.160000pt;}
.y5d_c00073{bottom:260.733333pt;}
.y5e_c00073{bottom:261.106667pt;}
.y61_c00073{bottom:261.493333pt;}
.y5b_c00073{bottom:261.693333pt;}
.y5f_c00073{bottom:262.640000pt;}
.y5c_c00073{bottom:263.026667pt;}
.y60_c00073{bottom:263.226667pt;}
.y5a_c00073{bottom:277.693333pt;}
.y59_c00073{bottom:278.440000pt;}
.y55_c00073{bottom:297.106667pt;}
.y57_c00073{bottom:297.893333pt;}
.y58_c00073{bottom:298.640000pt;}
.y56_c00073{bottom:299.026667pt;}
.y51_c00073{bottom:315.026667pt;}
.y54_c00073{bottom:315.226667pt;}
.y53_c00073{bottom:315.400000pt;}
.y52_c00073{bottom:316.360000pt;}
.y4e_c00073{bottom:331.773333pt;}
.y4c_c00073{bottom:332.360000pt;}
.y50_c00073{bottom:332.560000pt;}
.y4f_c00073{bottom:333.306667pt;}
.y4d_c00073{bottom:333.693333pt;}
.y4a_c00073{bottom:347.026667pt;}
.y49_c00073{bottom:349.106667pt;}
.y4b_c00073{bottom:351.026667pt;}
.y48_c00073{bottom:365.693333pt;}
.y47_c00073{bottom:366.440000pt;}
.y45_c00073{bottom:367.973333pt;}
.y44_c00073{bottom:368.360000pt;}
.y46_c00073{bottom:369.693333pt;}
.y3d_c00073{bottom:383.026667pt;}
.y41_c00073{bottom:383.400000pt;}
.y3f_c00073{bottom:385.106667pt;}
.y42_c00073{bottom:385.306667pt;}
.y3e_c00073{bottom:385.693333pt;}
.y43_c00073{bottom:386.640000pt;}
.y40_c00073{bottom:387.026667pt;}
.y3c_c00073{bottom:400.360000pt;}
.y3b_c00073{bottom:402.440000pt;}
.y3a_c00073{bottom:404.360000pt;}
.y34_c00073{bottom:419.773333pt;}
.y39_c00073{bottom:420.360000pt;}
.y37_c00073{bottom:420.560000pt;}
.y36_c00073{bottom:421.306667pt;}
.y38_c00073{bottom:421.693333pt;}
.y35_c00073{bottom:421.893333pt;}
.y33_c00073{bottom:436.160000pt;}
.y31_c00073{bottom:437.106667pt;}
.y2f_c00073{bottom:437.693333pt;}
.y32_c00073{bottom:438.640000pt;}
.y30_c00073{bottom:439.026667pt;}
.y2e_c00073{bottom:453.306667pt;}
.y2d_c00073{bottom:454.440000pt;}
.y2c_c00073{bottom:471.400000pt;}
.y29_c00073{bottom:471.773333pt;}
.y2b_c00073{bottom:473.693333pt;}
.y2a_c00073{bottom:474.640000pt;}
.y25_c00073{bottom:489.106667pt;}
.y26_c00073{bottom:490.066667pt;}
.y27_c00073{bottom:491.026667pt;}
.y28_c00073{bottom:491.973333pt;}
.y22_c00073{bottom:507.773333pt;}
.y20_c00073{bottom:508.360000pt;}
.y24_c00073{bottom:508.733333pt;}
.y23_c00073{bottom:509.306667pt;}
.y21_c00073{bottom:509.693333pt;}
.y1f_c00073{bottom:523.026667pt;}
.y1e_c00073{bottom:525.106667pt;}
.y18_c00073{bottom:541.106667pt;}
.y19_c00073{bottom:542.440000pt;}
.y17_c00073{bottom:543.026667pt;}
.y1c_c00073{bottom:543.400000pt;}
.y1a_c00073{bottom:543.973333pt;}
.y1d_c00073{bottom:544.360000pt;}
.y1b_c00073{bottom:544.560000pt;}
.y15_c00073{bottom:557.693333pt;}
.y16_c00073{bottom:559.026667pt;}
.y12_c00073{bottom:559.773333pt;}
.y14_c00073{bottom:561.306667pt;}
.y13_c00073{bottom:561.693333pt;}
.y11_c00073{bottom:576.160000pt;}
.yc_c00073{bottom:576.360000pt;}
.yd_c00073{bottom:577.106667pt;}
.y10_c00073{bottom:578.066667pt;}
.ye_c00073{bottom:579.026667pt;}
.yf_c00073{bottom:579.226667pt;}
.yb_c00073{bottom:593.306667pt;}
.ya_c00073{bottom:594.440000pt;}
.y6_c00073{bottom:611.973333pt;}
.y9_c00073{bottom:612.160000pt;}
.y8_c00073{bottom:613.106667pt;}
.y7_c00073{bottom:615.026667pt;}
.y5_c00073{bottom:630.440000pt;}
.y3_c00073{bottom:631.026667pt;}
.y4_c00073{bottom:632.360000pt;}
.y71_c00073{bottom:656.360000pt;}
.y72_c00073{bottom:657.306667pt;}
.y6f_c00073{bottom:666.840000pt;}
.y70_c00073{bottom:667.426667pt;}
.y6b_c00073{bottom:667.973333pt;}
.y6a_c00073{bottom:668.360000pt;}
.y6e_c00073{bottom:669.306667pt;}
.y6d_c00073{bottom:669.893333pt;}
.y6c_c00073{bottom:670.266667pt;}
.y2_c00073{bottom:977.693333pt;}
.y1_c00073{bottom:979.600000pt;}
.h9_c00073{height:7.412682pt;}
.h8_c00073{height:14.890964pt;}
.h6_c00073{height:20.466875pt;}
.h1_c00073{height:22.303646pt;}
.h4_c00073{height:27.879557pt;}
.h2_c00073{height:31.618698pt;}
.h7_c00073{height:35.357839pt;}
.h3_c00073{height:39.031380pt;}
.h5_c00073{height:42.770521pt;}
.h0_c00073{height:1186.666667pt;}
.w0_c00073{width:782.666667pt;}
.x0_c00073{left:0.000000pt;}
.x67_c00073{left:132.960000pt;}
.x2_c00073{left:134.666667pt;}
.x57_c00073{left:139.626667pt;}
.x3_c00073{left:140.960000pt;}
.x10_c00073{left:160.000000pt;}
.x3d_c00073{left:161.333333pt;}
.x4_c00073{left:162.666667pt;}
.x68_c00073{left:176.000000pt;}
.x7d_c00073{left:184.000000pt;}
.x83_c00073{left:186.293333pt;}
.x5f_c00073{left:190.666667pt;}
.x8f_c00073{left:192.000000pt;}
.x74_c00073{left:194.293333pt;}
.x44_c00073{left:199.040000pt;}
.x27_c00073{left:200.960000pt;}
.x5_c00073{left:203.040000pt;}
.x1b_c00073{left:204.373333pt;}
.x58_c00073{left:205.706667pt;}
.x30_c00073{left:207.040000pt;}
.x4e_c00073{left:208.000000pt;}
.x9b_c00073{left:209.706667pt;}
.x75_c00073{left:213.706667pt;}
.x99_c00073{left:218.666667pt;}
.x1c_c00073{left:224.373333pt;}
.x9c_c00073{left:226.666667pt;}
.x31_c00073{left:229.333333pt;}
.x11_c00073{left:230.666667pt;}
.x6_c00073{left:236.000000pt;}
.x9d_c00073{left:238.293333pt;}
.x59_c00073{left:241.333333pt;}
.x94_c00073{left:243.040000pt;}
.x69_c00073{left:244.000000pt;}
.x89_c00073{left:246.293333pt;}
.x4f_c00073{left:249.706667pt;}
.x32_c00073{left:255.040000pt;}
.x28_c00073{left:258.666667pt;}
.x9e_c00073{left:266.666667pt;}
.x1d_c00073{left:268.373333pt;}
.x12_c00073{left:269.333333pt;}
.x7_c00073{left:271.040000pt;}
.x45_c00073{left:272.960000pt;}
.x29_c00073{left:276.373333pt;}
.x50_c00073{left:286.666667pt;}
.x6a_c00073{left:293.333333pt;}
.x76_c00073{left:295.040000pt;}
.x3e_c00073{left:297.333333pt;}
.x2a_c00073{left:299.626667pt;}
.x46_c00073{left:302.666667pt;}
.x90_c00073{left:305.333333pt;}
.x8_c00073{left:306.666667pt;}
.x60_c00073{left:308.000000pt;}
.x8a_c00073{left:310.666667pt;}
.x65_c00073{left:311.626667pt;}
.x5a_c00073{left:316.000000pt;}
.x51_c00073{left:316.960000pt;}
.x77_c00073{left:321.333333pt;}
.x1e_c00073{left:323.626667pt;}
.x13_c00073{left:326.666667pt;}
.xa6_c00073{left:329.333333pt;}
.x7e_c00073{left:332.960000pt;}
.x2b_c00073{left:334.293333pt;}
.x16_c00073{left:339.626667pt;}
.x91_c00073{left:342.666667pt;}
.x61_c00073{left:344.000000pt;}
.x9f_c00073{left:346.666667pt;}
.x47_c00073{left:348.960000pt;}
.x2c_c00073{left:351.040000pt;}
.x1_c00073{left:354.666667pt;}
.x52_c00073{left:357.333333pt;}
.x84_c00073{left:358.666667pt;}
.xa0_c00073{left:360.000000pt;}
.x3f_c00073{left:364.000000pt;}
.x48_c00073{left:368.373333pt;}
.x78_c00073{left:371.040000pt;}
.x6b_c00073{left:372.000000pt;}
.x7f_c00073{left:373.333333pt;}
.x2d_c00073{left:374.666667pt;}
.x9_c00073{left:378.666667pt;}
.x14_c00073{left:380.960000pt;}
.x33_c00073{left:383.040000pt;}
.x6c_c00073{left:385.333333pt;}
.xa7_c00073{left:386.666667pt;}
.x5b_c00073{left:389.706667pt;}
.x1f_c00073{left:393.706667pt;}
.x62_c00073{left:396.000000pt;}
.x79_c00073{left:397.333333pt;}
.x8b_c00073{left:399.040000pt;}
.x34_c00073{left:400.960000pt;}
.xa8_c00073{left:404.000000pt;}
.x80_c00073{left:408.000000pt;}
.x95_c00073{left:409.333333pt;}
.xa_c00073{left:410.666667pt;}
.x15_c00073{left:412.373333pt;}
.xa1_c00073{left:417.333333pt;}
.x35_c00073{left:419.800000pt;}
.x20_c00073{left:422.293333pt;}
.x81_c00073{left:425.706667pt;}
.x49_c00073{left:428.960000pt;}
.x7a_c00073{left:432.373333pt;}
.x6d_c00073{left:434.293333pt;}
.x53_c00073{left:437.333333pt;}
.x21_c00073{left:438.666667pt;}
.x17_c00073{left:440.960000pt;}
.xa9_c00073{left:443.240000pt;}
.xb_c00073{left:444.373333pt;}
.x92_c00073{left:445.706667pt;}
.x63_c00073{left:447.040000pt;}
.x40_c00073{left:448.373333pt;}
.x22_c00073{left:449.706667pt;}
.x6e_c00073{left:451.040000pt;}
.xa2_c00073{left:453.333333pt;}
.xaa_c00073{left:459.626667pt;}
.x7b_c00073{left:463.626667pt;}
.x5c_c00073{left:467.040000pt;}
.x93_c00073{left:470.666667pt;}
.xc_c00073{left:472.373333pt;}
.x4a_c00073{left:473.333333pt;}
.x6f_c00073{left:474.293333pt;}
.x36_c00073{left:476.960000pt;}
.x85_c00073{left:479.626667pt;}
.x96_c00073{left:484.000000pt;}
.x23_c00073{left:485.333333pt;}
.x41_c00073{left:495.626667pt;}
.x9a_c00073{left:503.626667pt;}
.x70_c00073{left:504.960000pt;}
.x54_c00073{left:506.293333pt;}
.x18_c00073{left:509.333333pt;}
.x8c_c00073{left:510.293333pt;}
.x3c_c00073{left:511.626667pt;}
.x7c_c00073{left:515.040000pt;}
.xa3_c00073{left:516.000000pt;}
.xd_c00073{left:518.666667pt;}
.x71_c00073{left:521.333333pt;}
.x4b_c00073{left:524.000000pt;}
.x55_c00073{left:524.960000pt;}
.x8e_c00073{left:527.626667pt;}
.x2e_c00073{left:530.293333pt;}
.x24_c00073{left:532.373333pt;}
.x37_c00073{left:536.000000pt;}
.xa4_c00073{left:537.333333pt;}
.x8d_c00073{left:538.666667pt;}
.x72_c00073{left:544.373333pt;}
.x97_c00073{left:548.000000pt;}
.x86_c00073{left:550.666667pt;}
.x38_c00073{left:553.706667pt;}
.x42_c00073{left:554.666667pt;}
.x4c_c00073{left:559.626667pt;}
.xe_c00073{left:561.333333pt;}
.x87_c00073{left:566.666667pt;}
.xa5_c00073{left:576.373333pt;}
.x39_c00073{left:577.333333pt;}
.x5d_c00073{left:580.373333pt;}
.x4d_c00073{left:591.040000pt;}
.x73_c00073{left:593.333333pt;}
.x25_c00073{left:594.293333pt;}
.x98_c00073{left:597.706667pt;}
.x5e_c00073{left:607.626667pt;}
.x56_c00073{left:610.293333pt;}
.x3a_c00073{left:611.626667pt;}
.x19_c00073{left:616.960000pt;}
.x2f_c00073{left:618.293333pt;}
.x64_c00073{left:620.000000pt;}
.xf_c00073{left:621.333333pt;}
.x26_c00073{left:622.666667pt;}
.x3b_c00073{left:628.373333pt;}
.x43_c00073{left:629.706667pt;}
.x88_c00073{left:630.666667pt;}
.x1a_c00073{left:634.666667pt;}
.x66_c00073{left:640.960000pt;}
.x82_c00073{left:642.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_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_1b6be67d0295d6e3819bf844.woff2')format("woff");}.ff1_c00074{font-family:ff1_c00074;line-height:1.688965;font-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_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);}
.m5b_c00074{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m59_c00074{transform:matrix(0.291794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291794,0.000000,0.000000,0.250000,0,0);}
.m4e_c00074{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m1c_c00074{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m9b_c00074{transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);}
.ma4_c00074{transform:matrix(0.345557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345557,0.000000,0.000000,0.250000,0,0);}
.me0_c00074{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m38_c00074{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mbe_c00074{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.m99_c00074{transform:matrix(0.376150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376150,0.000000,0.000000,0.250000,0,0);}
.m51_c00074{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m7b_c00074{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m41_c00074{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m73_c00074{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m4b_c00074{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m50_c00074{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.mdd_c00074{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m14_c00074{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m89_c00074{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m8d_c00074{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.mb3_c00074{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);}
.mcb_c00074{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m6b_c00074{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m3d_c00074{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m60_c00074{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.md2_c00074{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m44_c00074{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.ma5_c00074{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mb2_c00074{transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);}
.ma7_c00074{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m46_c00074{transform:matrix(0.408359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408359,0.000000,0.000000,0.250000,0,0);}
.m95_c00074{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mcf_c00074{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m3e_c00074{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m19_c00074{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m6c_c00074{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m2a_c00074{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.ma8_c00074{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m2f_c00074{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mf_c00074{transform:matrix(0.416794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416794,0.000000,0.000000,0.250000,0,0);}
.m82_c00074{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m22_c00074{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m4a_c00074{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m3b_c00074{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.ma0_c00074{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.ma1_c00074{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m8a_c00074{transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);}
.m3f_c00074{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m15_c00074{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m65_c00074{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.mdb_c00074{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m30_c00074{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.md3_c00074{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m92_c00074{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.ma3_c00074{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m6d_c00074{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m45_c00074{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.mbf_c00074{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m49_c00074{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m26_c00074{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m58_c00074{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.md5_c00074{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.mbd_c00074{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m80_c00074{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m2e_c00074{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m9e_c00074{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.ma2_c00074{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m42_c00074{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m11_c00074{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m0_c00074{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m4f_c00074{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.md0_c00074{transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);}
.m25_c00074{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m9a_c00074{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.mc7_c00074{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.mc0_c00074{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m79_c00074{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m5e_c00074{transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);}
.m74_c00074{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m8e_c00074{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m85_c00074{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m7e_c00074{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.mc1_c00074{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m2d_c00074{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m57_c00074{transform:matrix(0.460123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460123,0.000000,0.000000,0.250000,0,0);}
.m97_c00074{transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);}
.m9d_c00074{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.maf_c00074{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m61_c00074{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.md1_c00074{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m1b_c00074{transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);}
.m6e_c00074{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.m5a_c00074{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m9c_c00074{transform:matrix(0.477273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477273,0.000000,0.000000,0.250000,0,0);}
.mce_c00074{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m17_c00074{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m7a_c00074{transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);}
.ma9_c00074{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m63_c00074{transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);}
.md6_c00074{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.mc5_c00074{transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);}
.m90_c00074{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mcc_c00074{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.md7_c00074{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m12_c00074{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m62_c00074{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m91_c00074{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m34_c00074{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);}
.m78_c00074{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.ma6_c00074{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.mcd_c00074{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mc3_c00074{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m35_c00074{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.m7_c00074{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m3a_c00074{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m8c_c00074{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m48_c00074{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m72_c00074{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m1e_c00074{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m2c_c00074{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m76_c00074{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m40_c00074{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m53_c00074{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mb5_c00074{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m9f_c00074{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m84_c00074{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mb7_c00074{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m27_c00074{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.mca_c00074{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mb6_c00074{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m94_c00074{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m71_c00074{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.md4_c00074{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m68_c00074{transform:matrix(0.531076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531076,0.000000,0.000000,0.250000,0,0);}
.mc8_c00074{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mb0_c00074{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m9_c00074{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m96_c00074{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.mac_c00074{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.ma_c00074{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m4_c00074{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m18_c00074{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mad_c00074{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m87_c00074{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m6f_c00074{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mb9_c00074{transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);}
.me_c00074{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.mae_c00074{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m5_c00074{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mde_c00074{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m23_c00074{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m8b_c00074{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m6_c00074{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m81_c00074{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m98_c00074{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m5d_c00074{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mbc_c00074{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m55_c00074{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m43_c00074{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m7d_c00074{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m16_c00074{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m4c_c00074{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m1a_c00074{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m21_c00074{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m24_c00074{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mc9_c00074{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m67_c00074{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mb1_c00074{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.mb_c00074{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m7c_c00074{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m86_c00074{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m56_c00074{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mb8_c00074{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.mab_c00074{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.mb4_c00074{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m8_c00074{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m83_c00074{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m88_c00074{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m32_c00074{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m2_c00074{transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);}
.mdf_c00074{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m4d_c00074{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.mbb_c00074{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m66_c00074{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m33_c00074{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m64_c00074{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m1f_c00074{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m29_c00074{transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);}
.m3_c00074{transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);}
.m52_c00074{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.m13_c00074{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m37_c00074{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m1d_c00074{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m10_c00074{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m1_c00074{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.m36_c00074{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m93_c00074{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);}
.mba_c00074{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m6a_c00074{transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);}
.mc4_c00074{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mda_c00074{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m20_c00074{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.mc6_c00074{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m69_c00074{transform:matrix(0.648235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648235,0.000000,0.000000,0.250000,0,0);}
.m54_c00074{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);}
.m75_c00074{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.md_c00074{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m28_c00074{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m3c_c00074{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m5f_c00074{transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);}
.mc2_c00074{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.m70_c00074{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.maa_c00074{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.md8_c00074{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m39_c00074{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mdc_c00074{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);}
.m77_c00074{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.mc_c00074{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m8f_c00074{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m7f_c00074{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m31_c00074{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m47_c00074{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m2b_c00074{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.md9_c00074{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,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:-1.057382px;}
.ws1_c00074{word-spacing:0.000000px;}
.fc0_c00074{color:transparent;}
.fs8_c00074{font-size:11.880000px;}
.fs3_c00074{font-size:18.720000px;}
.fs1_c00074{font-size:20.400000px;}
.fs2_c00074{font-size:25.500000px;}
.fs0_c00074{font-size:28.920000px;}
.fs6_c00074{font-size:32.340000px;}
.fs5_c00074{font-size:35.700000px;}
.fs4_c00074{font-size:39.120000px;}
.fs7_c00074{font-size:42.540000px;}
.y0_c00074{bottom:0.000000px;}
.yd2_c00074{bottom:252.825000px;}
.yd3_c00074{bottom:253.050000px;}
.yd4_c00074{bottom:253.245000px;}
.yd5_c00074{bottom:253.470000px;}
.yd6_c00074{bottom:254.745000px;}
.ycf_c00074{bottom:269.775000px;}
.yc9_c00074{bottom:270.405000px;}
.ycb_c00074{bottom:271.245000px;}
.yca_c00074{bottom:271.470000px;}
.yc6_c00074{bottom:271.905000px;}
.ycc_c00074{bottom:272.325000px;}
.yd0_c00074{bottom:272.745000px;}
.yc8_c00074{bottom:273.405000px;}
.ycd_c00074{bottom:273.630000px;}
.yc7_c00074{bottom:274.470000px;}
.yd1_c00074{bottom:275.970000px;}
.yce_c00074{bottom:278.130000px;}
.yc3_c00074{bottom:290.745000px;}
.yc0_c00074{bottom:292.905000px;}
.yc2_c00074{bottom:293.130000px;}
.yc4_c00074{bottom:293.745000px;}
.yc1_c00074{bottom:294.405000px;}
.yc5_c00074{bottom:295.905000px;}
.ybf_c00074{bottom:310.905000px;}
.ybd_c00074{bottom:311.745000px;}
.ybe_c00074{bottom:312.630000px;}
.ybb_c00074{bottom:312.825000px;}
.yba_c00074{bottom:313.905000px;}
.ybc_c00074{bottom:314.970000px;}
.yb7_c00074{bottom:329.745000px;}
.yb8_c00074{bottom:331.245000px;}
.yb6_c00074{bottom:332.130000px;}
.yb4_c00074{bottom:332.325000px;}
.yb5_c00074{bottom:333.405000px;}
.yb3_c00074{bottom:334.050000px;}
.yb9_c00074{bottom:334.905000px;}
.yaf_c00074{bottom:350.745000px;}
.yb1_c00074{bottom:351.825000px;}
.yb2_c00074{bottom:352.245000px;}
.yae_c00074{bottom:352.905000px;}
.yb0_c00074{bottom:353.970000px;}
.yad_c00074{bottom:354.405000px;}
.yac_c00074{bottom:356.130000px;}
.yab_c00074{bottom:357.630000px;}
.ya8_c00074{bottom:374.745000px;}
.ya9_c00074{bottom:376.470000px;}
.yaa_c00074{bottom:378.405000px;}
.ya7_c00074{bottom:410.745000px;}
.ya6_c00074{bottom:412.905000px;}
.ya5_c00074{bottom:413.130000px;}
.ya4_c00074{bottom:415.245000px;}
.ya1_c00074{bottom:427.905000px;}
.ya0_c00074{bottom:429.825000px;}
.ya3_c00074{bottom:430.245000px;}
.ya2_c00074{bottom:431.130000px;}
.y9f_c00074{bottom:431.970000px;}
.y9d_c00074{bottom:432.405000px;}
.y9e_c00074{bottom:433.470000px;}
.y9c_c00074{bottom:433.905000px;}
.y9b_c00074{bottom:436.470000px;}
.y9a_c00074{bottom:447.405000px;}
.y98_c00074{bottom:449.745000px;}
.y99_c00074{bottom:450.630000px;}
.y97_c00074{bottom:451.905000px;}
.y96_c00074{bottom:453.405000px;}
.y95_c00074{bottom:469.245000px;}
.y94_c00074{bottom:471.405000px;}
.y92_c00074{bottom:471.825000px;}
.y93_c00074{bottom:472.905000px;}
.y90_c00074{bottom:490.470000px;}
.y8f_c00074{bottom:490.905000px;}
.y91_c00074{bottom:491.130000px;}
.y8e_c00074{bottom:492.405000px;}
.y8d_c00074{bottom:494.325000px;}
.y8b_c00074{bottom:509.745000px;}
.y8c_c00074{bottom:510.405000px;}
.y89_c00074{bottom:510.630000px;}
.y8a_c00074{bottom:511.905000px;}
.y88_c00074{bottom:513.825000px;}
.y86_c00074{bottom:527.745000px;}
.y85_c00074{bottom:529.245000px;}
.y83_c00074{bottom:529.680000px;}
.y87_c00074{bottom:530.130000px;}
.y84_c00074{bottom:531.405000px;}
.y81_c00074{bottom:547.245000px;}
.y7f_c00074{bottom:548.745000px;}
.y82_c00074{bottom:549.405000px;}
.y80_c00074{bottom:550.470000px;}
.y7e_c00074{bottom:550.905000px;}
.y7d_c00074{bottom:551.325000px;}
.y7c_c00074{bottom:551.550000px;}
.y7a_c00074{bottom:567.180000px;}
.y79_c00074{bottom:568.245000px;}
.y78_c00074{bottom:569.130000px;}
.y7b_c00074{bottom:569.325000px;}
.y77_c00074{bottom:570.405000px;}
.y76_c00074{bottom:571.245000px;}
.y75_c00074{bottom:585.405000px;}
.y72_c00074{bottom:587.325000px;}
.y73_c00074{bottom:587.745000px;}
.y74_c00074{bottom:589.905000px;}
.y71_c00074{bottom:591.405000px;}
.y6f_c00074{bottom:617.745000px;}
.y70_c00074{bottom:619.905000px;}
.y6e_c00074{bottom:655.905000px;}
.y6b_c00074{bottom:658.905000px;}
.y6d_c00074{bottom:659.130000px;}
.y6c_c00074{bottom:660.405000px;}
.y6a_c00074{bottom:677.745000px;}
.y66_c00074{bottom:678.405000px;}
.y67_c00074{bottom:678.825000px;}
.y68_c00074{bottom:679.470000px;}
.y69_c00074{bottom:679.905000px;}
.y65_c00074{bottom:680.325000px;}
.y64_c00074{bottom:697.245000px;}
.y63_c00074{bottom:697.905000px;}
.y62_c00074{bottom:699.405000px;}
.y61_c00074{bottom:700.905000px;}
.y5e_c00074{bottom:716.745000px;}
.y5d_c00074{bottom:717.630000px;}
.y60_c00074{bottom:718.905000px;}
.y5f_c00074{bottom:719.970000px;}
.y5c_c00074{bottom:720.825000px;}
.y5b_c00074{bottom:736.245000px;}
.y5a_c00074{bottom:737.325000px;}
.y59_c00074{bottom:738.405000px;}
.y58_c00074{bottom:738.825000px;}
.y54_c00074{bottom:755.745000px;}
.y56_c00074{bottom:756.630000px;}
.y55_c00074{bottom:757.470000px;}
.y53_c00074{bottom:757.905000px;}
.y57_c00074{bottom:758.970000px;}
.y52_c00074{bottom:759.405000px;}
.y4d_c00074{bottom:774.405000px;}
.y51_c00074{bottom:775.245000px;}
.y50_c00074{bottom:776.130000px;}
.y4f_c00074{bottom:776.970000px;}
.y4e_c00074{bottom:777.405000px;}
.y4c_c00074{bottom:778.050000px;}
.y4b_c00074{bottom:780.405000px;}
.y49_c00074{bottom:793.905000px;}
.y47_c00074{bottom:794.745000px;}
.y4a_c00074{bottom:795.825000px;}
.y46_c00074{bottom:796.905000px;}
.y45_c00074{bottom:797.970000px;}
.y48_c00074{bottom:798.405000px;}
.y44_c00074{bottom:799.905000px;}
.y3f_c00074{bottom:814.245000px;}
.y43_c00074{bottom:815.325000px;}
.y42_c00074{bottom:816.405000px;}
.y40_c00074{bottom:816.630000px;}
.y41_c00074{bottom:817.470000px;}
.y3e_c00074{bottom:817.905000px;}
.y3c_c00074{bottom:832.905000px;}
.y39_c00074{bottom:833.745000px;}
.y3d_c00074{bottom:834.825000px;}
.y3b_c00074{bottom:835.905000px;}
.y3a_c00074{bottom:836.130000px;}
.y38_c00074{bottom:836.550000px;}
.y36_c00074{bottom:853.245000px;}
.y34_c00074{bottom:853.680000px;}
.y31_c00074{bottom:853.905000px;}
.y35_c00074{bottom:854.745000px;}
.y37_c00074{bottom:855.825000px;}
.y33_c00074{bottom:856.050000px;}
.y32_c00074{bottom:856.905000px;}
.y30_c00074{bottom:858.405000px;}
.y2f_c00074{bottom:873.405000px;}
.y2d_c00074{bottom:874.245000px;}
.y2e_c00074{bottom:875.325000px;}
.y2c_c00074{bottom:875.970000px;}
.y2b_c00074{bottom:893.745000px;}
.y25_c00074{bottom:894.180000px;}
.y26_c00074{bottom:894.630000px;}
.y28_c00074{bottom:894.825000px;}
.y2a_c00074{bottom:895.470000px;}
.y27_c00074{bottom:895.905000px;}
.y29_c00074{bottom:896.130000px;}
.y23_c00074{bottom:911.970000px;}
.y21_c00074{bottom:913.245000px;}
.y24_c00074{bottom:914.325000px;}
.y22_c00074{bottom:915.405000px;}
.y1e_c00074{bottom:932.745000px;}
.y1c_c00074{bottom:933.825000px;}
.y1d_c00074{bottom:934.905000px;}
.y20_c00074{bottom:935.130000px;}
.y1f_c00074{bottom:935.970000px;}
.y1b_c00074{bottom:936.405000px;}
.y1a_c00074{bottom:937.905000px;}
.y16_c00074{bottom:953.745000px;}
.y18_c00074{bottom:954.630000px;}
.y15_c00074{bottom:954.825000px;}
.y17_c00074{bottom:955.470000px;}
.y14_c00074{bottom:955.905000px;}
.y19_c00074{bottom:956.970000px;}
.y10_c00074{bottom:973.245000px;}
.y13_c00074{bottom:974.130000px;}
.yf_c00074{bottom:974.325000px;}
.y12_c00074{bottom:974.970000px;}
.y11_c00074{bottom:975.405000px;}
.yd_c00074{bottom:992.745000px;}
.ye_c00074{bottom:994.470000px;}
.yc_c00074{bottom:994.905000px;}
.ya_c00074{bottom:1012.245000px;}
.y8_c00074{bottom:1012.680000px;}
.yb_c00074{bottom:1013.970000px;}
.y9_c00074{bottom:1014.405000px;}
.y7_c00074{bottom:1032.630000px;}
.y6_c00074{bottom:1033.905000px;}
.y5_c00074{bottom:1035.405000px;}
.y3_c00074{bottom:1063.470000px;}
.y4_c00074{bottom:1063.905000px;}
.y1_c00074{bottom:1099.905000px;}
.y2_c00074{bottom:1102.050000px;}
.h9_c00074{height:14.612168px;}
.h4_c00074{height:23.025234px;}
.h2_c00074{height:25.091602px;}
.h3_c00074{height:31.364502px;}
.h1_c00074{height:35.571035px;}
.h7_c00074{height:39.777568px;}
.h6_c00074{height:43.910303px;}
.h5_c00074{height:48.116836px;}
.h8_c00074{height:52.323369px;}
.h0_c00074{height:1335.000000px;}
.w0_c00074{width:880.500000px;}
.x0_c00074{left:0.000000px;}
.x9e_c00074{left:153.000000px;}
.x10_c00074{left:154.080000px;}
.xdb_c00074{left:162.000000px;}
.x5_c00074{left:169.500000px;}
.x3e_c00074{left:171.420000px;}
.xd4_c00074{left:172.920000px;}
.x85_c00074{left:174.000000px;}
.x11_c00074{left:177.420000px;}
.x7c_c00074{left:179.580000px;}
.xbb_c00074{left:181.080000px;}
.x1d_c00074{left:183.420000px;}
.xa8_c00074{left:184.500000px;}
.x75_c00074{left:186.420000px;}
.x8a_c00074{left:190.920000px;}
.xac_c00074{left:192.420000px;}
.x9f_c00074{left:195.000000px;}
.x61_c00074{left:196.920000px;}
.x3f_c00074{left:198.000000px;}
.xd5_c00074{left:199.080000px;}
.x32_c00074{left:201.000000px;}
.x6_c00074{left:204.000000px;}
.x5d_c00074{left:205.080000px;}
.xf3_c00074{left:210.000000px;}
.x76_c00074{left:211.500000px;}
.x86_c00074{left:214.920000px;}
.x8b_c00074{left:217.920000px;}
.xec_c00074{left:220.500000px;}
.xad_c00074{left:222.000000px;}
.x1e_c00074{left:224.580000px;}
.x97_c00074{left:226.920000px;}
.x91_c00074{left:231.420000px;}
.xbc_c00074{left:234.000000px;}
.xc3_c00074{left:235.500000px;}
.x40_c00074{left:236.580000px;}
.x29_c00074{left:238.500000px;}
.x7d_c00074{left:239.580000px;}
.xca_c00074{left:241.080000px;}
.xa0_c00074{left:242.580000px;}
.x7_c00074{left:245.580000px;}
.xb3_c00074{left:247.500000px;}
.x1f_c00074{left:249.000000px;}
.xe6_c00074{left:253.920000px;}
.xc4_c00074{left:255.000000px;}
.x6b_c00074{left:256.500000px;}
.xa1_c00074{left:259.500000px;}
.xd6_c00074{left:260.580000px;}
.x92_c00074{left:262.080000px;}
.x33_c00074{left:263.580000px;}
.x4c_c00074{left:265.500000px;}
.x41_c00074{left:268.080000px;}
.xa9_c00074{left:270.000000px;}
.x56_c00074{left:271.080000px;}
.xcb_c00074{left:272.145000px;}
.xb4_c00074{left:274.080000px;}
.x20_c00074{left:277.500000px;}
.x12_c00074{left:280.500000px;}
.xe0_c00074{left:282.000000px;}
.x87_c00074{left:283.500000px;}
.xcc_c00074{left:285.000000px;}
.x34_c00074{left:288.000000px;}
.x42_c00074{left:289.500000px;}
.x7e_c00074{left:290.580000px;}
.xd0_c00074{left:292.500000px;}
.x6c_c00074{left:295.500000px;}
.x88_c00074{left:300.000000px;}
.xcd_c00074{left:303.420000px;}
.x5e_c00074{left:306.420000px;}
.x43_c00074{left:307.500000px;}
.x8_c00074{left:309.000000px;}
.x77_c00074{left:312.000000px;}
.xc2_c00074{left:313.080000px;}
.x35_c00074{left:316.500000px;}
.x62_c00074{left:318.000000px;}
.x2a_c00074{left:322.920000px;}
.x57_c00074{left:325.500000px;}
.x4d_c00074{left:328.080000px;}
.xce_c00074{left:330.420000px;}
.xd7_c00074{left:331.500000px;}
.x3_c00074{left:334.080000px;}
.x7f_c00074{left:336.000000px;}
.x78_c00074{left:337.500000px;}
.x13_c00074{left:339.000000px;}
.xbd_c00074{left:340.920000px;}
.xaa_c00074{left:342.000000px;}
.x44_c00074{left:345.000000px;}
.xd9_c00074{left:346.500000px;}
.x58_c00074{left:348.000000px;}
.x5f_c00074{left:349.080000px;}
.xed_c00074{left:351.420000px;}
.xb5_c00074{left:354.420000px;}
.xae_c00074{left:355.920000px;}
.x2b_c00074{left:357.000000px;}
.x4e_c00074{left:360.420000px;}
.xe7_c00074{left:361.500000px;}
.x21_c00074{left:363.000000px;}
.x36_c00074{left:364.500000px;}
.xd1_c00074{left:366.000000px;}
.x98_c00074{left:370.920000px;}
.xe8_c00074{left:376.500000px;}
.x6d_c00074{left:378.420000px;}
.x8c_c00074{left:379.500000px;}
.x22_c00074{left:380.580000px;}
.x80_c00074{left:384.000000px;}
.xaf_c00074{left:385.500000px;}
.x9_c00074{left:386.580000px;}
.x4f_c00074{left:388.500000px;}
.xc5_c00074{left:390.000000px;}
.x4_c00074{left:391.080000px;}
.xda_c00074{left:392.580000px;}
.x93_c00074{left:394.500000px;}
.x45_c00074{left:396.000000px;}
.xcf_c00074{left:397.080000px;}
.x81_c00074{left:399.000000px;}
.x2_c00074{left:400.500000px;}
.xee_c00074{left:401.580000px;}
.xb6_c00074{left:405.000000px;}
.x60_c00074{left:406.500000px;}
.xa_c00074{left:408.420000px;}
.x63_c00074{left:409.920000px;}
.x14_c00074{left:412.500000px;}
.xc6_c00074{left:414.420000px;}
.x6e_c00074{left:416.580000px;}
.xab_c00074{left:418.080000px;}
.xdd_c00074{left:420.000000px;}
.xa2_c00074{left:421.500000px;}
.xef_c00074{left:423.000000px;}
.xb0_c00074{left:426.000000px;}
.xe9_c00074{left:432.000000px;}
.x50_c00074{left:433.080000px;}
.x2c_c00074{left:436.080000px;}
.xb_c00074{left:437.580000px;}
.xd2_c00074{left:439.500000px;}
.x59_c00074{left:442.500000px;}
.xc7_c00074{left:444.000000px;}
.x79_c00074{left:445.080000px;}
.x23_c00074{left:447.000000px;}
.xe1_c00074{left:448.080000px;}
.x15_c00074{left:451.080000px;}
.x37_c00074{left:453.420000px;}
.x51_c00074{left:454.920000px;}
.xb1_c00074{left:456.420000px;}
.x2d_c00074{left:458.580000px;}
.xd3_c00074{left:463.080000px;}
.xe2_c00074{left:465.000000px;}
.x99_c00074{left:466.920000px;}
.x16_c00074{left:469.500000px;}
.x46_c00074{left:471.000000px;}
.xa5_c00074{left:474.000000px;}
.xb7_c00074{left:475.080000px;}
.x64_c00074{left:478.275000px;}
.x24_c00074{left:480.420000px;}
.xde_c00074{left:484.500000px;}
.x52_c00074{left:486.000000px;}
.x89_c00074{left:487.500000px;}
.x8d_c00074{left:490.500000px;}
.x7a_c00074{left:491.580000px;}
.x38_c00074{left:493.920000px;}
.x94_c00074{left:497.580000px;}
.x65_c00074{left:502.080000px;}
.x6f_c00074{left:504.420000px;}
.x2e_c00074{left:505.500000px;}
.x47_c00074{left:507.420000px;}
.xc_c00074{left:509.580000px;}
.xd8_c00074{left:511.500000px;}
.xbe_c00074{left:514.500000px;}
.x17_c00074{left:516.420000px;}
.x82_c00074{left:517.920000px;}
.x95_c00074{left:520.920000px;}
.x5a_c00074{left:522.000000px;}
.x53_c00074{left:526.500000px;}
.x2f_c00074{left:529.920000px;}
.x8e_c00074{left:531.000000px;}
.x48_c00074{left:532.500000px;}
.x9a_c00074{left:535.080000px;}
.x70_c00074{left:537.000000px;}
.xdc_c00074{left:538.920000px;}
.x18_c00074{left:541.500000px;}
.xf4_c00074{left:542.580000px;}
.xbf_c00074{left:544.920000px;}
.x39_c00074{left:546.000000px;}
.x49_c00074{left:547.500000px;}
.x8f_c00074{left:548.580000px;}
.x83_c00074{left:550.500000px;}
.x54_c00074{left:558.000000px;}
.x25_c00074{left:559.080000px;}
.x66_c00074{left:561.000000px;}
.xea_c00074{left:563.580000px;}
.xa3_c00074{left:565.080000px;}
.x7b_c00074{left:573.000000px;}
.xb8_c00074{left:574.080000px;}
.xe3_c00074{left:576.000000px;}
.x67_c00074{left:577.500000px;}
.x26_c00074{left:579.420000px;}
.x71_c00074{left:580.500000px;}
.xc8_c00074{left:583.080000px;}
.xe4_c00074{left:586.920000px;}
.x3a_c00074{left:588.420000px;}
.xf0_c00074{left:591.420000px;}
.x19_c00074{left:592.500000px;}
.xb9_c00074{left:594.420000px;}
.x68_c00074{left:595.500000px;}
.x72_c00074{left:598.500000px;}
.x4a_c00074{left:601.500000px;}
.x27_c00074{left:607.500000px;}
.x1a_c00074{left:609.000000px;}
.x30_c00074{left:613.500000px;}
.xc9_c00074{left:617.580000px;}
.x4b_c00074{left:619.920000px;}
.xba_c00074{left:622.080000px;}
.x90_c00074{left:624.000000px;}
.x3b_c00074{left:625.500000px;}
.xd_c00074{left:627.000000px;}
.x5b_c00074{left:628.500000px;}
.x69_c00074{left:633.000000px;}
.xc0_c00074{left:634.080000px;}
.xeb_c00074{left:640.920000px;}
.x96_c00074{left:643.080000px;}
.x28_c00074{left:646.500000px;}
.x9b_c00074{left:649.080000px;}
.x1b_c00074{left:651.420000px;}
.xe_c00074{left:655.500000px;}
.x3c_c00074{left:658.500000px;}
.x84_c00074{left:661.500000px;}
.xa4_c00074{left:665.580000px;}
.x55_c00074{left:667.500000px;}
.xb2_c00074{left:668.580000px;}
.xa6_c00074{left:670.920000px;}
.x73_c00074{left:675.420000px;}
.xf_c00074{left:678.420000px;}
.x6a_c00074{left:679.500000px;}
.xe5_c00074{left:680.580000px;}
.x5c_c00074{left:684.000000px;}
.x9c_c00074{left:685.500000px;}
.x3d_c00074{left:687.420000px;}
.x31_c00074{left:688.500000px;}
.xf1_c00074{left:690.000000px;}
.xdf_c00074{left:691.920000px;}
.xa7_c00074{left:697.500000px;}
.x1c_c00074{left:699.420000px;}
.xc1_c00074{left:700.920000px;}
.x74_c00074{left:705.420000px;}
.x9d_c00074{left:709.920000px;}
.x1_c00074{left:714.000000px;}
.xf5_c00074{left:715.500000px;}
.xf2_c00074{left:718.500000px;}
@media print{
.v0_c00074{vertical-align:0.000000pt;}
.ls0_c00074{letter-spacing:0.000000pt;}
.ws0_c00074{word-spacing:-0.939895pt;}
.ws1_c00074{word-spacing:0.000000pt;}
.fs8_c00074{font-size:10.560000pt;}
.fs3_c00074{font-size:16.640000pt;}
.fs1_c00074{font-size:18.133333pt;}
.fs2_c00074{font-size:22.666667pt;}
.fs0_c00074{font-size:25.706667pt;}
.fs6_c00074{font-size:28.746667pt;}
.fs5_c00074{font-size:31.733333pt;}
.fs4_c00074{font-size:34.773333pt;}
.fs7_c00074{font-size:37.813333pt;}
.y0_c00074{bottom:0.000000pt;}
.yd2_c00074{bottom:224.733333pt;}
.yd3_c00074{bottom:224.933333pt;}
.yd4_c00074{bottom:225.106667pt;}
.yd5_c00074{bottom:225.306667pt;}
.yd6_c00074{bottom:226.440000pt;}
.ycf_c00074{bottom:239.800000pt;}
.yc9_c00074{bottom:240.360000pt;}
.ycb_c00074{bottom:241.106667pt;}
.yca_c00074{bottom:241.306667pt;}
.yc6_c00074{bottom:241.693333pt;}
.ycc_c00074{bottom:242.066667pt;}
.yd0_c00074{bottom:242.440000pt;}
.yc8_c00074{bottom:243.026667pt;}
.ycd_c00074{bottom:243.226667pt;}
.yc7_c00074{bottom:243.973333pt;}
.yd1_c00074{bottom:245.306667pt;}
.yce_c00074{bottom:247.226667pt;}
.yc3_c00074{bottom:258.440000pt;}
.yc0_c00074{bottom:260.360000pt;}
.yc2_c00074{bottom:260.560000pt;}
.yc4_c00074{bottom:261.106667pt;}
.yc1_c00074{bottom:261.693333pt;}
.yc5_c00074{bottom:263.026667pt;}
.ybf_c00074{bottom:276.360000pt;}
.ybd_c00074{bottom:277.106667pt;}
.ybe_c00074{bottom:277.893333pt;}
.ybb_c00074{bottom:278.066667pt;}
.yba_c00074{bottom:279.026667pt;}
.ybc_c00074{bottom:279.973333pt;}
.yb7_c00074{bottom:293.106667pt;}
.yb8_c00074{bottom:294.440000pt;}
.yb6_c00074{bottom:295.226667pt;}
.yb4_c00074{bottom:295.400000pt;}
.yb5_c00074{bottom:296.360000pt;}
.yb3_c00074{bottom:296.933333pt;}
.yb9_c00074{bottom:297.693333pt;}
.yaf_c00074{bottom:311.773333pt;}
.yb1_c00074{bottom:312.733333pt;}
.yb2_c00074{bottom:313.106667pt;}
.yae_c00074{bottom:313.693333pt;}
.yb0_c00074{bottom:314.640000pt;}
.yad_c00074{bottom:315.026667pt;}
.yac_c00074{bottom:316.560000pt;}
.yab_c00074{bottom:317.893333pt;}
.ya8_c00074{bottom:333.106667pt;}
.ya9_c00074{bottom:334.640000pt;}
.yaa_c00074{bottom:336.360000pt;}
.ya7_c00074{bottom:365.106667pt;}
.ya6_c00074{bottom:367.026667pt;}
.ya5_c00074{bottom:367.226667pt;}
.ya4_c00074{bottom:369.106667pt;}
.ya1_c00074{bottom:380.360000pt;}
.ya0_c00074{bottom:382.066667pt;}
.ya3_c00074{bottom:382.440000pt;}
.ya2_c00074{bottom:383.226667pt;}
.y9f_c00074{bottom:383.973333pt;}
.y9d_c00074{bottom:384.360000pt;}
.y9e_c00074{bottom:385.306667pt;}
.y9c_c00074{bottom:385.693333pt;}
.y9b_c00074{bottom:387.973333pt;}
.y9a_c00074{bottom:397.693333pt;}
.y98_c00074{bottom:399.773333pt;}
.y99_c00074{bottom:400.560000pt;}
.y97_c00074{bottom:401.693333pt;}
.y96_c00074{bottom:403.026667pt;}
.y95_c00074{bottom:417.106667pt;}
.y94_c00074{bottom:419.026667pt;}
.y92_c00074{bottom:419.400000pt;}
.y93_c00074{bottom:420.360000pt;}
.y90_c00074{bottom:435.973333pt;}
.y8f_c00074{bottom:436.360000pt;}
.y91_c00074{bottom:436.560000pt;}
.y8e_c00074{bottom:437.693333pt;}
.y8d_c00074{bottom:439.400000pt;}
.y8b_c00074{bottom:453.106667pt;}
.y8c_c00074{bottom:453.693333pt;}
.y89_c00074{bottom:453.893333pt;}
.y8a_c00074{bottom:455.026667pt;}
.y88_c00074{bottom:456.733333pt;}
.y86_c00074{bottom:469.106667pt;}
.y85_c00074{bottom:470.440000pt;}
.y83_c00074{bottom:470.826667pt;}
.y87_c00074{bottom:471.226667pt;}
.y84_c00074{bottom:472.360000pt;}
.y81_c00074{bottom:486.440000pt;}
.y7f_c00074{bottom:487.773333pt;}
.y82_c00074{bottom:488.360000pt;}
.y80_c00074{bottom:489.306667pt;}
.y7e_c00074{bottom:489.693333pt;}
.y7d_c00074{bottom:490.066667pt;}
.y7c_c00074{bottom:490.266667pt;}
.y7a_c00074{bottom:504.160000pt;}
.y79_c00074{bottom:505.106667pt;}
.y78_c00074{bottom:505.893333pt;}
.y7b_c00074{bottom:506.066667pt;}
.y77_c00074{bottom:507.026667pt;}
.y76_c00074{bottom:507.773333pt;}
.y75_c00074{bottom:520.360000pt;}
.y72_c00074{bottom:522.066667pt;}
.y73_c00074{bottom:522.440000pt;}
.y74_c00074{bottom:524.360000pt;}
.y71_c00074{bottom:525.693333pt;}
.y6f_c00074{bottom:549.106667pt;}
.y70_c00074{bottom:551.026667pt;}
.y6e_c00074{bottom:583.026667pt;}
.y6b_c00074{bottom:585.693333pt;}
.y6d_c00074{bottom:585.893333pt;}
.y6c_c00074{bottom:587.026667pt;}
.y6a_c00074{bottom:602.440000pt;}
.y66_c00074{bottom:603.026667pt;}
.y67_c00074{bottom:603.400000pt;}
.y68_c00074{bottom:603.973333pt;}
.y69_c00074{bottom:604.360000pt;}
.y65_c00074{bottom:604.733333pt;}
.y64_c00074{bottom:619.773333pt;}
.y63_c00074{bottom:620.360000pt;}
.y62_c00074{bottom:621.693333pt;}
.y61_c00074{bottom:623.026667pt;}
.y5e_c00074{bottom:637.106667pt;}
.y5d_c00074{bottom:637.893333pt;}
.y60_c00074{bottom:639.026667pt;}
.y5f_c00074{bottom:639.973333pt;}
.y5c_c00074{bottom:640.733333pt;}
.y5b_c00074{bottom:654.440000pt;}
.y5a_c00074{bottom:655.400000pt;}
.y59_c00074{bottom:656.360000pt;}
.y58_c00074{bottom:656.733333pt;}
.y54_c00074{bottom:671.773333pt;}
.y56_c00074{bottom:672.560000pt;}
.y55_c00074{bottom:673.306667pt;}
.y53_c00074{bottom:673.693333pt;}
.y57_c00074{bottom:674.640000pt;}
.y52_c00074{bottom:675.026667pt;}
.y4d_c00074{bottom:688.360000pt;}
.y51_c00074{bottom:689.106667pt;}
.y50_c00074{bottom:689.893333pt;}
.y4f_c00074{bottom:690.640000pt;}
.y4e_c00074{bottom:691.026667pt;}
.y4c_c00074{bottom:691.600000pt;}
.y4b_c00074{bottom:693.693333pt;}
.y49_c00074{bottom:705.693333pt;}
.y47_c00074{bottom:706.440000pt;}
.y4a_c00074{bottom:707.400000pt;}
.y46_c00074{bottom:708.360000pt;}
.y45_c00074{bottom:709.306667pt;}
.y48_c00074{bottom:709.693333pt;}
.y44_c00074{bottom:711.026667pt;}
.y3f_c00074{bottom:723.773333pt;}
.y43_c00074{bottom:724.733333pt;}
.y42_c00074{bottom:725.693333pt;}
.y40_c00074{bottom:725.893333pt;}
.y41_c00074{bottom:726.640000pt;}
.y3e_c00074{bottom:727.026667pt;}
.y3c_c00074{bottom:740.360000pt;}
.y39_c00074{bottom:741.106667pt;}
.y3d_c00074{bottom:742.066667pt;}
.y3b_c00074{bottom:743.026667pt;}
.y3a_c00074{bottom:743.226667pt;}
.y38_c00074{bottom:743.600000pt;}
.y36_c00074{bottom:758.440000pt;}
.y34_c00074{bottom:758.826667pt;}
.y31_c00074{bottom:759.026667pt;}
.y35_c00074{bottom:759.773333pt;}
.y37_c00074{bottom:760.733333pt;}
.y33_c00074{bottom:760.933333pt;}
.y32_c00074{bottom:761.693333pt;}
.y30_c00074{bottom:763.026667pt;}
.y2f_c00074{bottom:776.360000pt;}
.y2d_c00074{bottom:777.106667pt;}
.y2e_c00074{bottom:778.066667pt;}
.y2c_c00074{bottom:778.640000pt;}
.y2b_c00074{bottom:794.440000pt;}
.y25_c00074{bottom:794.826667pt;}
.y26_c00074{bottom:795.226667pt;}
.y28_c00074{bottom:795.400000pt;}
.y2a_c00074{bottom:795.973333pt;}
.y27_c00074{bottom:796.360000pt;}
.y29_c00074{bottom:796.560000pt;}
.y23_c00074{bottom:810.640000pt;}
.y21_c00074{bottom:811.773333pt;}
.y24_c00074{bottom:812.733333pt;}
.y22_c00074{bottom:813.693333pt;}
.y1e_c00074{bottom:829.106667pt;}
.y1c_c00074{bottom:830.066667pt;}
.y1d_c00074{bottom:831.026667pt;}
.y20_c00074{bottom:831.226667pt;}
.y1f_c00074{bottom:831.973333pt;}
.y1b_c00074{bottom:832.360000pt;}
.y1a_c00074{bottom:833.693333pt;}
.y16_c00074{bottom:847.773333pt;}
.y18_c00074{bottom:848.560000pt;}
.y15_c00074{bottom:848.733333pt;}
.y17_c00074{bottom:849.306667pt;}
.y14_c00074{bottom:849.693333pt;}
.y19_c00074{bottom:850.640000pt;}
.y10_c00074{bottom:865.106667pt;}
.y13_c00074{bottom:865.893333pt;}
.yf_c00074{bottom:866.066667pt;}
.y12_c00074{bottom:866.640000pt;}
.y11_c00074{bottom:867.026667pt;}
.yd_c00074{bottom:882.440000pt;}
.ye_c00074{bottom:883.973333pt;}
.yc_c00074{bottom:884.360000pt;}
.ya_c00074{bottom:899.773333pt;}
.y8_c00074{bottom:900.160000pt;}
.yb_c00074{bottom:901.306667pt;}
.y9_c00074{bottom:901.693333pt;}
.y7_c00074{bottom:917.893333pt;}
.y6_c00074{bottom:919.026667pt;}
.y5_c00074{bottom:920.360000pt;}
.y3_c00074{bottom:945.306667pt;}
.y4_c00074{bottom:945.693333pt;}
.y1_c00074{bottom:977.693333pt;}
.y2_c00074{bottom:979.600000pt;}
.h9_c00074{height:12.988594pt;}
.h4_c00074{height:20.466875pt;}
.h2_c00074{height:22.303646pt;}
.h3_c00074{height:27.879557pt;}
.h1_c00074{height:31.618698pt;}
.h7_c00074{height:35.357839pt;}
.h6_c00074{height:39.031380pt;}
.h5_c00074{height:42.770521pt;}
.h8_c00074{height:46.509661pt;}
.h0_c00074{height:1186.666667pt;}
.w0_c00074{width:782.666667pt;}
.x0_c00074{left:0.000000pt;}
.x9e_c00074{left:136.000000pt;}
.x10_c00074{left:136.960000pt;}
.xdb_c00074{left:144.000000pt;}
.x5_c00074{left:150.666667pt;}
.x3e_c00074{left:152.373333pt;}
.xd4_c00074{left:153.706667pt;}
.x85_c00074{left:154.666667pt;}
.x11_c00074{left:157.706667pt;}
.x7c_c00074{left:159.626667pt;}
.xbb_c00074{left:160.960000pt;}
.x1d_c00074{left:163.040000pt;}
.xa8_c00074{left:164.000000pt;}
.x75_c00074{left:165.706667pt;}
.x8a_c00074{left:169.706667pt;}
.xac_c00074{left:171.040000pt;}
.x9f_c00074{left:173.333333pt;}
.x61_c00074{left:175.040000pt;}
.x3f_c00074{left:176.000000pt;}
.xd5_c00074{left:176.960000pt;}
.x32_c00074{left:178.666667pt;}
.x6_c00074{left:181.333333pt;}
.x5d_c00074{left:182.293333pt;}
.xf3_c00074{left:186.666667pt;}
.x76_c00074{left:188.000000pt;}
.x86_c00074{left:191.040000pt;}
.x8b_c00074{left:193.706667pt;}
.xec_c00074{left:196.000000pt;}
.xad_c00074{left:197.333333pt;}
.x1e_c00074{left:199.626667pt;}
.x97_c00074{left:201.706667pt;}
.x91_c00074{left:205.706667pt;}
.xbc_c00074{left:208.000000pt;}
.xc3_c00074{left:209.333333pt;}
.x40_c00074{left:210.293333pt;}
.x29_c00074{left:212.000000pt;}
.x7d_c00074{left:212.960000pt;}
.xca_c00074{left:214.293333pt;}
.xa0_c00074{left:215.626667pt;}
.x7_c00074{left:218.293333pt;}
.xb3_c00074{left:220.000000pt;}
.x1f_c00074{left:221.333333pt;}
.xe6_c00074{left:225.706667pt;}
.xc4_c00074{left:226.666667pt;}
.x6b_c00074{left:228.000000pt;}
.xa1_c00074{left:230.666667pt;}
.xd6_c00074{left:231.626667pt;}
.x92_c00074{left:232.960000pt;}
.x33_c00074{left:234.293333pt;}
.x4c_c00074{left:236.000000pt;}
.x41_c00074{left:238.293333pt;}
.xa9_c00074{left:240.000000pt;}
.x56_c00074{left:240.960000pt;}
.xcb_c00074{left:241.906667pt;}
.xb4_c00074{left:243.626667pt;}
.x20_c00074{left:246.666667pt;}
.x12_c00074{left:249.333333pt;}
.xe0_c00074{left:250.666667pt;}
.x87_c00074{left:252.000000pt;}
.xcc_c00074{left:253.333333pt;}
.x34_c00074{left:256.000000pt;}
.x42_c00074{left:257.333333pt;}
.x7e_c00074{left:258.293333pt;}
.xd0_c00074{left:260.000000pt;}
.x6c_c00074{left:262.666667pt;}
.x88_c00074{left:266.666667pt;}
.xcd_c00074{left:269.706667pt;}
.x5e_c00074{left:272.373333pt;}
.x43_c00074{left:273.333333pt;}
.x8_c00074{left:274.666667pt;}
.x77_c00074{left:277.333333pt;}
.xc2_c00074{left:278.293333pt;}
.x35_c00074{left:281.333333pt;}
.x62_c00074{left:282.666667pt;}
.x2a_c00074{left:287.040000pt;}
.x57_c00074{left:289.333333pt;}
.x4d_c00074{left:291.626667pt;}
.xce_c00074{left:293.706667pt;}
.xd7_c00074{left:294.666667pt;}
.x3_c00074{left:296.960000pt;}
.x7f_c00074{left:298.666667pt;}
.x78_c00074{left:300.000000pt;}
.x13_c00074{left:301.333333pt;}
.xbd_c00074{left:303.040000pt;}
.xaa_c00074{left:304.000000pt;}
.x44_c00074{left:306.666667pt;}
.xd9_c00074{left:308.000000pt;}
.x58_c00074{left:309.333333pt;}
.x5f_c00074{left:310.293333pt;}
.xed_c00074{left:312.373333pt;}
.xb5_c00074{left:315.040000pt;}
.xae_c00074{left:316.373333pt;}
.x2b_c00074{left:317.333333pt;}
.x4e_c00074{left:320.373333pt;}
.xe7_c00074{left:321.333333pt;}
.x21_c00074{left:322.666667pt;}
.x36_c00074{left:324.000000pt;}
.xd1_c00074{left:325.333333pt;}
.x98_c00074{left:329.706667pt;}
.xe8_c00074{left:334.666667pt;}
.x6d_c00074{left:336.373333pt;}
.x8c_c00074{left:337.333333pt;}
.x22_c00074{left:338.293333pt;}
.x80_c00074{left:341.333333pt;}
.xaf_c00074{left:342.666667pt;}
.x9_c00074{left:343.626667pt;}
.x4f_c00074{left:345.333333pt;}
.xc5_c00074{left:346.666667pt;}
.x4_c00074{left:347.626667pt;}
.xda_c00074{left:348.960000pt;}
.x93_c00074{left:350.666667pt;}
.x45_c00074{left:352.000000pt;}
.xcf_c00074{left:352.960000pt;}
.x81_c00074{left:354.666667pt;}
.x2_c00074{left:356.000000pt;}
.xee_c00074{left:356.960000pt;}
.xb6_c00074{left:360.000000pt;}
.x60_c00074{left:361.333333pt;}
.xa_c00074{left:363.040000pt;}
.x63_c00074{left:364.373333pt;}
.x14_c00074{left:366.666667pt;}
.xc6_c00074{left:368.373333pt;}
.x6e_c00074{left:370.293333pt;}
.xab_c00074{left:371.626667pt;}
.xdd_c00074{left:373.333333pt;}
.xa2_c00074{left:374.666667pt;}
.xef_c00074{left:376.000000pt;}
.xb0_c00074{left:378.666667pt;}
.xe9_c00074{left:384.000000pt;}
.x50_c00074{left:384.960000pt;}
.x2c_c00074{left:387.626667pt;}
.xb_c00074{left:388.960000pt;}
.xd2_c00074{left:390.666667pt;}
.x59_c00074{left:393.333333pt;}
.xc7_c00074{left:394.666667pt;}
.x79_c00074{left:395.626667pt;}
.x23_c00074{left:397.333333pt;}
.xe1_c00074{left:398.293333pt;}
.x15_c00074{left:400.960000pt;}
.x37_c00074{left:403.040000pt;}
.x51_c00074{left:404.373333pt;}
.xb1_c00074{left:405.706667pt;}
.x2d_c00074{left:407.626667pt;}
.xd3_c00074{left:411.626667pt;}
.xe2_c00074{left:413.333333pt;}
.x99_c00074{left:415.040000pt;}
.x16_c00074{left:417.333333pt;}
.x46_c00074{left:418.666667pt;}
.xa5_c00074{left:421.333333pt;}
.xb7_c00074{left:422.293333pt;}
.x64_c00074{left:425.133333pt;}
.x24_c00074{left:427.040000pt;}
.xde_c00074{left:430.666667pt;}
.x52_c00074{left:432.000000pt;}
.x89_c00074{left:433.333333pt;}
.x8d_c00074{left:436.000000pt;}
.x7a_c00074{left:436.960000pt;}
.x38_c00074{left:439.040000pt;}
.x94_c00074{left:442.293333pt;}
.x65_c00074{left:446.293333pt;}
.x6f_c00074{left:448.373333pt;}
.x2e_c00074{left:449.333333pt;}
.x47_c00074{left:451.040000pt;}
.xc_c00074{left:452.960000pt;}
.xd8_c00074{left:454.666667pt;}
.xbe_c00074{left:457.333333pt;}
.x17_c00074{left:459.040000pt;}
.x82_c00074{left:460.373333pt;}
.x95_c00074{left:463.040000pt;}
.x5a_c00074{left:464.000000pt;}
.x53_c00074{left:468.000000pt;}
.x2f_c00074{left:471.040000pt;}
.x8e_c00074{left:472.000000pt;}
.x48_c00074{left:473.333333pt;}
.x9a_c00074{left:475.626667pt;}
.x70_c00074{left:477.333333pt;}
.xdc_c00074{left:479.040000pt;}
.x18_c00074{left:481.333333pt;}
.xf4_c00074{left:482.293333pt;}
.xbf_c00074{left:484.373333pt;}
.x39_c00074{left:485.333333pt;}
.x49_c00074{left:486.666667pt;}
.x8f_c00074{left:487.626667pt;}
.x83_c00074{left:489.333333pt;}
.x54_c00074{left:496.000000pt;}
.x25_c00074{left:496.960000pt;}
.x66_c00074{left:498.666667pt;}
.xea_c00074{left:500.960000pt;}
.xa3_c00074{left:502.293333pt;}
.x7b_c00074{left:509.333333pt;}
.xb8_c00074{left:510.293333pt;}
.xe3_c00074{left:512.000000pt;}
.x67_c00074{left:513.333333pt;}
.x26_c00074{left:515.040000pt;}
.x71_c00074{left:516.000000pt;}
.xc8_c00074{left:518.293333pt;}
.xe4_c00074{left:521.706667pt;}
.x3a_c00074{left:523.040000pt;}
.xf0_c00074{left:525.706667pt;}
.x19_c00074{left:526.666667pt;}
.xb9_c00074{left:528.373333pt;}
.x68_c00074{left:529.333333pt;}
.x72_c00074{left:532.000000pt;}
.x4a_c00074{left:534.666667pt;}
.x27_c00074{left:540.000000pt;}
.x1a_c00074{left:541.333333pt;}
.x30_c00074{left:545.333333pt;}
.xc9_c00074{left:548.960000pt;}
.x4b_c00074{left:551.040000pt;}
.xba_c00074{left:552.960000pt;}
.x90_c00074{left:554.666667pt;}
.x3b_c00074{left:556.000000pt;}
.xd_c00074{left:557.333333pt;}
.x5b_c00074{left:558.666667pt;}
.x69_c00074{left:562.666667pt;}
.xc0_c00074{left:563.626667pt;}
.xeb_c00074{left:569.706667pt;}
.x96_c00074{left:571.626667pt;}
.x28_c00074{left:574.666667pt;}
.x9b_c00074{left:576.960000pt;}
.x1b_c00074{left:579.040000pt;}
.xe_c00074{left:582.666667pt;}
.x3c_c00074{left:585.333333pt;}
.x84_c00074{left:588.000000pt;}
.xa4_c00074{left:591.626667pt;}
.x55_c00074{left:593.333333pt;}
.xb2_c00074{left:594.293333pt;}
.xa6_c00074{left:596.373333pt;}
.x73_c00074{left:600.373333pt;}
.xf_c00074{left:603.040000pt;}
.x6a_c00074{left:604.000000pt;}
.xe5_c00074{left:604.960000pt;}
.x5c_c00074{left:608.000000pt;}
.x9c_c00074{left:609.333333pt;}
.x3d_c00074{left:611.040000pt;}
.x31_c00074{left:612.000000pt;}
.xf1_c00074{left:613.333333pt;}
.xdf_c00074{left:615.040000pt;}
.xa7_c00074{left:620.000000pt;}
.x1c_c00074{left:621.706667pt;}
.xc1_c00074{left:623.040000pt;}
.x74_c00074{left:627.040000pt;}
.x9d_c00074{left:631.040000pt;}
.x1_c00074{left:634.666667pt;}
.xf5_c00074{left:636.000000pt;}
.xf2_c00074{left:638.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_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_617431022efd5854712da4ff.woff2')format("woff");}.ff1_c00075{font-family:ff1_c00075;line-height:1.688965;font-style: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.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m13_c00075{transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);}
.m12_c00075{transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);}
.m16_c00075{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.m2f_c00075{transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);}
.m2_c00075{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.m6_c00075{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.m2c_c00075{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m17_c00075{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.mb_c00075{transform:matrix(0.418831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418831,0.000000,0.000000,0.250000,0,0);}
.m2a_c00075{transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);}
.m18_c00075{transform:matrix(0.421150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421150,0.000000,0.000000,0.250000,0,0);}
.m3_c00075{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.m10_c00075{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m28_c00075{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.m4_c00075{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m9_c00075{transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);}
.m1d_c00075{transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);}
.m2e_c00075{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.m20_c00075{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m26_c00075{transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);}
.m15_c00075{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m2b_c00075{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.mf_c00075{transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);}
.m27_c00075{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.mc_c00075{transform:matrix(0.485882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485882,0.000000,0.000000,0.250000,0,0);}
.m1b_c00075{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m1c_c00075{transform:matrix(0.495294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495294,0.000000,0.000000,0.250000,0,0);}
.m22_c00075{transform:matrix(0.497407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497407,0.000000,0.000000,0.250000,0,0);}
.m24_c00075{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);}
.m34_c00075{transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);}
.me_c00075{transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);}
.m29_c00075{transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);}
.m38_c00075{transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);}
.m25_c00075{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m21_c00075{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m37_c00075{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.m30_c00075{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.md_c00075{transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);}
.m32_c00075{transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);}
.m31_c00075{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m11_c00075{transform:matrix(0.532353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532353,0.000000,0.000000,0.250000,0,0);}
.m36_c00075{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m14_c00075{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.ma_c00075{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m7_c00075{transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);}
.m2d_c00075{transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);}
.m5_c00075{transform:matrix(0.571176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571176,0.000000,0.000000,0.250000,0,0);}
.m19_c00075{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m1e_c00075{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m1_c00075{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m35_c00075{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_c00075{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.m23_c00075{transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);}
.m1f_c00075{transform:matrix(0.655882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655882,0.000000,0.000000,0.250000,0,0);}
.m1a_c00075{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m33_c00075{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);}
.v2_c00075{vertical-align:-6.000000px;}
.v0_c00075{vertical-align:0.000000px;}
.v1_c00075{vertical-align:6.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;}
}
.ws2_c00075{word-spacing:-2.207539px;}
.ws0_c00075{word-spacing:-1.858846px;}
.ws3_c00075{word-spacing:0.000000px;}
.ws1_c00075{word-spacing:0.526176px;}
.fc0_c00075{color:transparent;}
.fs5_c00075{font-size:18.720000px;}
.fs1_c00075{font-size:20.400000px;}
.fs4_c00075{font-size:25.500000px;}
.fs3_c00075{font-size:28.920000px;}
.fs2_c00075{font-size:32.340000px;}
.fs0_c00075{font-size:35.700000px;}
.y0_c00075{bottom:0.000000px;}
.y3_c00075{bottom:273.825000px;}
.y4_c00075{bottom:274.905000px;}
.y6_c00075{bottom:275.325000px;}
.y5_c00075{bottom:275.970000px;}
.ya_c00075{bottom:287.970000px;}
.y7_c00075{bottom:288.825000px;}
.y9_c00075{bottom:289.905000px;}
.y8_c00075{bottom:290.970000px;}
.yd_c00075{bottom:303.825000px;}
.y13_c00075{bottom:304.470000px;}
.yc_c00075{bottom:304.905000px;}
.ye_c00075{bottom:305.130000px;}
.yb_c00075{bottom:305.970000px;}
.yf_c00075{bottom:307.050000px;}
.y10_c00075{bottom:318.405000px;}
.y11_c00075{bottom:319.050000px;}
.y14_c00075{bottom:319.470000px;}
.y15_c00075{bottom:319.905000px;}
.y12_c00075{bottom:320.550000px;}
.y16_c00075{bottom:333.405000px;}
.y21_c00075{bottom:333.630000px;}
.y18_c00075{bottom:333.825000px;}
.y17_c00075{bottom:334.470000px;}
.y20_c00075{bottom:335.550000px;}
.y22_c00075{bottom:335.970000px;}
.y1b_c00075{bottom:347.325000px;}
.y19_c00075{bottom:348.405000px;}
.y1e_c00075{bottom:348.825000px;}
.y1a_c00075{bottom:349.470000px;}
.y1d_c00075{bottom:349.905000px;}
.y1f_c00075{bottom:350.550000px;}
.y1c_c00075{bottom:350.970000px;}
.y2_c00075{bottom:1097.550000px;}
.y1_c00075{bottom:1097.745000px;}
.h7_c00075{height:23.025234px;}
.h2_c00075{height:25.091602px;}
.h5_c00075{height:31.364502px;}
.h4_c00075{height:35.571035px;}
.h6_c00075{height:37.364502px;}
.h3_c00075{height:39.777568px;}
.h1_c00075{height:43.910303px;}
.h0_c00075{height:1335.000000px;}
.w0_c00075{width:880.500000px;}
.x0_c00075{left:0.000000px;}
.xb_c00075{left:152.580000px;}
.x1_c00075{left:154.500000px;}
.x21_c00075{left:170.145000px;}
.x2a_c00075{left:181.080000px;}
.xc_c00075{left:186.000000px;}
.xd_c00075{left:199.500000px;}
.xf_c00075{left:212.580000px;}
.x34_c00075{left:214.500000px;}
.x35_c00075{left:234.000000px;}
.x1b_c00075{left:257.145000px;}
.x22_c00075{left:262.920000px;}
.x3_c00075{left:274.080000px;}
.x2b_c00075{left:282.000000px;}
.x4_c00075{left:295.920000px;}
.x36_c00075{left:299.580000px;}
.x13_c00075{left:303.000000px;}
.x1d_c00075{left:316.500000px;}
.x1c_c00075{left:328.500000px;}
.x37_c00075{left:339.000000px;}
.x38_c00075{left:357.000000px;}
.x2c_c00075{left:363.000000px;}
.x5_c00075{left:367.500000px;}
.x1e_c00075{left:376.500000px;}
.x18_c00075{left:378.000000px;}
.x14_c00075{left:383.580000px;}
.x6_c00075{left:388.500000px;}
.x1f_c00075{left:394.500000px;}
.x19_c00075{left:399.000000px;}
.x2_c00075{left:402.000000px;}
.x25_c00075{left:436.080000px;}
.x2d_c00075{left:441.420000px;}
.x1a_c00075{left:456.000000px;}
.x9_c00075{left:471.000000px;}
.x2e_c00075{left:490.920000px;}
.x26_c00075{left:492.420000px;}
.x23_c00075{left:503.145000px;}
.x10_c00075{left:516.000000px;}
.x2f_c00075{left:528.000000px;}
.xa_c00075{left:529.500000px;}
.x27_c00075{left:550.500000px;}
.x15_c00075{left:564.000000px;}
.x11_c00075{left:573.420000px;}
.x24_c00075{left:575.580000px;}
.x30_c00075{left:583.500000px;}
.x12_c00075{left:589.500000px;}
.x28_c00075{left:608.580000px;}
.x16_c00075{left:616.500000px;}
.x7_c00075{left:619.080000px;}
.x29_c00075{left:628.500000px;}
.x8_c00075{left:642.420000px;}
.x31_c00075{left:660.000000px;}
.xe_c00075{left:672.000000px;}
.x17_c00075{left:678.000000px;}
.x20_c00075{left:687.645000px;}
.x32_c00075{left:699.000000px;}
.x33_c00075{left:718.080000px;}
@media print{
.v2_c00075{vertical-align:-5.333333pt;}
.v0_c00075{vertical-align:0.000000pt;}
.v1_c00075{vertical-align:5.333333pt;}
.ls0_c00075{letter-spacing:0.000000pt;}
.ws2_c00075{word-spacing:-1.962257pt;}
.ws0_c00075{word-spacing:-1.652307pt;}
.ws3_c00075{word-spacing:0.000000pt;}
.ws1_c00075{word-spacing:0.467712pt;}
.fs5_c00075{font-size:16.640000pt;}
.fs1_c00075{font-size:18.133333pt;}
.fs4_c00075{font-size:22.666667pt;}
.fs3_c00075{font-size:25.706667pt;}
.fs2_c00075{font-size:28.746667pt;}
.fs0_c00075{font-size:31.733333pt;}
.y0_c00075{bottom:0.000000pt;}
.y3_c00075{bottom:243.400000pt;}
.y4_c00075{bottom:244.360000pt;}
.y6_c00075{bottom:244.733333pt;}
.y5_c00075{bottom:245.306667pt;}
.ya_c00075{bottom:255.973333pt;}
.y7_c00075{bottom:256.733333pt;}
.y9_c00075{bottom:257.693333pt;}
.y8_c00075{bottom:258.640000pt;}
.yd_c00075{bottom:270.066667pt;}
.y13_c00075{bottom:270.640000pt;}
.yc_c00075{bottom:271.026667pt;}
.ye_c00075{bottom:271.226667pt;}
.yb_c00075{bottom:271.973333pt;}
.yf_c00075{bottom:272.933333pt;}
.y10_c00075{bottom:283.026667pt;}
.y11_c00075{bottom:283.600000pt;}
.y14_c00075{bottom:283.973333pt;}
.y15_c00075{bottom:284.360000pt;}
.y12_c00075{bottom:284.933333pt;}
.y16_c00075{bottom:296.360000pt;}
.y21_c00075{bottom:296.560000pt;}
.y18_c00075{bottom:296.733333pt;}
.y17_c00075{bottom:297.306667pt;}
.y20_c00075{bottom:298.266667pt;}
.y22_c00075{bottom:298.640000pt;}
.y1b_c00075{bottom:308.733333pt;}
.y19_c00075{bottom:309.693333pt;}
.y1e_c00075{bottom:310.066667pt;}
.y1a_c00075{bottom:310.640000pt;}
.y1d_c00075{bottom:311.026667pt;}
.y1f_c00075{bottom:311.600000pt;}
.y1c_c00075{bottom:311.973333pt;}
.y2_c00075{bottom:975.600000pt;}
.y1_c00075{bottom:975.773333pt;}
.h7_c00075{height:20.466875pt;}
.h2_c00075{height:22.303646pt;}
.h5_c00075{height:27.879557pt;}
.h4_c00075{height:31.618698pt;}
.h6_c00075{height:33.212891pt;}
.h3_c00075{height:35.357839pt;}
.h1_c00075{height:39.031380pt;}
.h0_c00075{height:1186.666667pt;}
.w0_c00075{width:782.666667pt;}
.x0_c00075{left:0.000000pt;}
.xb_c00075{left:135.626667pt;}
.x1_c00075{left:137.333333pt;}
.x21_c00075{left:151.240000pt;}
.x2a_c00075{left:160.960000pt;}
.xc_c00075{left:165.333333pt;}
.xd_c00075{left:177.333333pt;}
.xf_c00075{left:188.960000pt;}
.x34_c00075{left:190.666667pt;}
.x35_c00075{left:208.000000pt;}
.x1b_c00075{left:228.573333pt;}
.x22_c00075{left:233.706667pt;}
.x3_c00075{left:243.626667pt;}
.x2b_c00075{left:250.666667pt;}
.x4_c00075{left:263.040000pt;}
.x36_c00075{left:266.293333pt;}
.x13_c00075{left:269.333333pt;}
.x1d_c00075{left:281.333333pt;}
.x1c_c00075{left:292.000000pt;}
.x37_c00075{left:301.333333pt;}
.x38_c00075{left:317.333333pt;}
.x2c_c00075{left:322.666667pt;}
.x5_c00075{left:326.666667pt;}
.x1e_c00075{left:334.666667pt;}
.x18_c00075{left:336.000000pt;}
.x14_c00075{left:340.960000pt;}
.x6_c00075{left:345.333333pt;}
.x1f_c00075{left:350.666667pt;}
.x19_c00075{left:354.666667pt;}
.x2_c00075{left:357.333333pt;}
.x25_c00075{left:387.626667pt;}
.x2d_c00075{left:392.373333pt;}
.x1a_c00075{left:405.333333pt;}
.x9_c00075{left:418.666667pt;}
.x2e_c00075{left:436.373333pt;}
.x26_c00075{left:437.706667pt;}
.x23_c00075{left:447.240000pt;}
.x10_c00075{left:458.666667pt;}
.x2f_c00075{left:469.333333pt;}
.xa_c00075{left:470.666667pt;}
.x27_c00075{left:489.333333pt;}
.x15_c00075{left:501.333333pt;}
.x11_c00075{left:509.706667pt;}
.x24_c00075{left:511.626667pt;}
.x30_c00075{left:518.666667pt;}
.x12_c00075{left:524.000000pt;}
.x28_c00075{left:540.960000pt;}
.x16_c00075{left:548.000000pt;}
.x7_c00075{left:550.293333pt;}
.x29_c00075{left:558.666667pt;}
.x8_c00075{left:571.040000pt;}
.x31_c00075{left:586.666667pt;}
.xe_c00075{left:597.333333pt;}
.x17_c00075{left:602.666667pt;}
.x20_c00075{left:611.240000pt;}
.x32_c00075{left:621.333333pt;}
.x33_c00075{left:638.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_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_88acc95de759149c59e9bb53.woff2')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:1.688965;font-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_c00076{transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);}
.m27_c00076{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.m44_c00076{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_c00076{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m72_c00076{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.ma2_c00076{transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);}
.m3b_c00076{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m73_c00076{transform:matrix(0.381513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381513,0.000000,0.000000,0.250000,0,0);}
.ma1_c00076{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.mb0_c00076{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.m7a_c00076{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m94_c00076{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m5_c00076{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m91_c00076{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m28_c00076{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m26_c00076{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m2d_c00076{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m56_c00076{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.mb2_c00076{transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);}
.m46_c00076{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mc2_c00076{transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);}
.maa_c00076{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m14_c00076{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mb8_c00076{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mb9_c00076{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m5e_c00076{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m71_c00076{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m8b_c00076{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mbb_c00076{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m8d_c00076{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.ma5_c00076{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.ma7_c00076{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m30_c00076{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m9b_c00076{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m34_c00076{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m7_c00076{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m4a_c00076{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m18_c00076{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m9e_c00076{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m65_c00076{transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);}
.m4e_c00076{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m59_c00076{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mb7_c00076{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m1a_c00076{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m38_c00076{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m62_c00076{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m33_c00076{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.ma3_c00076{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m1d_c00076{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m84_c00076{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.mbf_c00076{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mc3_c00076{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m3a_c00076{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m9c_c00076{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m4c_c00076{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m32_c00076{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m1b_c00076{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.ma9_c00076{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.maf_c00076{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.m3_c00076{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m5f_c00076{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m48_c00076{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m79_c00076{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.m82_c00076{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m86_c00076{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m2c_c00076{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m7d_c00076{transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);}
.m54_c00076{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m78_c00076{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.ma6_c00076{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.ma4_c00076{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.m41_c00076{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m67_c00076{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m88_c00076{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m36_c00076{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.m92_c00076{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.m35_c00076{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.mc0_c00076{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.mac_c00076{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m9f_c00076{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.m8f_c00076{transform:matrix(0.473562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473562,0.000000,0.000000,0.250000,0,0);}
.mb6_c00076{transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);}
.mc_c00076{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m24_c00076{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m99_c00076{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m17_c00076{transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);}
.m1_c00076{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m7e_c00076{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.ma8_c00076{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m97_c00076{transform:matrix(0.487477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487477,0.000000,0.000000,0.250000,0,0);}
.m3f_c00076{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m20_c00076{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m66_c00076{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m4b_c00076{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m8_c00076{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);}
.m6d_c00076{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m16_c00076{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m4_c00076{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m76_c00076{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mc4_c00076{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);}
.m60_c00076{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m52_c00076{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m15_c00076{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m63_c00076{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mbc_c00076{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m98_c00076{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m8a_c00076{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m75_c00076{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m2f_c00076{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m90_c00076{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m77_c00076{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m13_c00076{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m25_c00076{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m61_c00076{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m58_c00076{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m39_c00076{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m55_c00076{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.me_c00076{transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);}
.m51_c00076{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m9_c00076{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m29_c00076{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mbe_c00076{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m7c_c00076{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m64_c00076{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mba_c00076{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m2a_c00076{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m85_c00076{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m74_c00076{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m4d_c00076{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m53_c00076{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m2b_c00076{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m6a_c00076{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m9d_c00076{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mb1_c00076{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m83_c00076{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m69_c00076{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m50_c00076{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m12_c00076{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m5b_c00076{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m68_c00076{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m5c_c00076{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m6e_c00076{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mc1_c00076{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.mbd_c00076{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m11_c00076{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m23_c00076{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m6_c00076{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mab_c00076{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.m47_c00076{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.md_c00076{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m2_c00076{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m57_c00076{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mb4_c00076{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m10_c00076{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m7f_c00076{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.ma_c00076{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m6b_c00076{transform:matrix(0.597756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597756,0.000000,0.000000,0.250000,0,0);}
.ma0_c00076{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m0_c00076{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m8c_c00076{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m80_c00076{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m1e_c00076{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m22_c00076{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m31_c00076{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m9a_c00076{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m1c_c00076{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m3e_c00076{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.mae_c00076{transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);}
.mb3_c00076{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m93_c00076{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m1f_c00076{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m43_c00076{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.mad_c00076{transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);}
.m21_c00076{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.mb5_c00076{transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);}
.m3d_c00076{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m3c_c00076{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m87_c00076{transform:matrix(0.669412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669412,0.000000,0.000000,0.250000,0,0);}
.m8e_c00076{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m19_c00076{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m5d_c00076{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m7b_c00076{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m37_c00076{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m6c_c00076{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m5a_c00076{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m89_c00076{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m81_c00076{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m40_c00076{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.mb_c00076{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m4f_c00076{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m96_c00076{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.mf_c00076{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m45_c00076{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m95_c00076{transform:matrix(0.842949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.842949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.842949,0.000000,0.000000,0.250000,0,0);}
.m42_c00076{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.m70_c00076{transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);}
.m2e_c00076{transform:matrix(1.741228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.741228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.741228,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;}
}
.ws1_c00076{word-spacing:-4.199201px;}
.ws2_c00076{word-spacing:0.000000px;}
.ws0_c00076{word-spacing:10.582953px;}
.fc0_c00076{color:transparent;}
.fs6_c00076{font-size:3.420000px;}
.fs8_c00076{font-size:6.780000px;}
.fs7_c00076{font-size:11.880000px;}
.fs2_c00076{font-size:18.720000px;}
.fs0_c00076{font-size:20.400000px;}
.fs5_c00076{font-size:25.500000px;}
.fs1_c00076{font-size:28.920000px;}
.fs4_c00076{font-size:32.340000px;}
.fs3_c00076{font-size:35.700000px;}
.fs9_c00076{font-size:39.120000px;}
.y0_c00076{bottom:0.000000px;}
.y3_c00076{bottom:207.630000px;}
.y10a_c00076{bottom:232.245000px;}
.y10c_c00076{bottom:232.905000px;}
.y109_c00076{bottom:233.130000px;}
.y108_c00076{bottom:233.325000px;}
.y10b_c00076{bottom:233.970000px;}
.y107_c00076{bottom:235.470000px;}
.yff_c00076{bottom:250.275000px;}
.y103_c00076{bottom:250.905000px;}
.y100_c00076{bottom:251.745000px;}
.y104_c00076{bottom:251.970000px;}
.y106_c00076{bottom:252.405000px;}
.yfc_c00076{bottom:253.245000px;}
.y101_c00076{bottom:253.905000px;}
.yfd_c00076{bottom:254.130000px;}
.y102_c00076{bottom:254.970000px;}
.y105_c00076{bottom:255.405000px;}
.yfe_c00076{bottom:257.130000px;}
.yf9_c00076{bottom:271.470000px;}
.yfb_c00076{bottom:271.905000px;}
.yf6_c00076{bottom:272.745000px;}
.yf5_c00076{bottom:273.180000px;}
.yf8_c00076{bottom:274.470000px;}
.yf7_c00076{bottom:274.905000px;}
.yfa_c00076{bottom:276.405000px;}
.yf2_c00076{bottom:289.905000px;}
.yf1_c00076{bottom:292.245000px;}
.yf3_c00076{bottom:293.130000px;}
.yf0_c00076{bottom:294.405000px;}
.yf4_c00076{bottom:295.905000px;}
.yee_c00076{bottom:310.905000px;}
.yec_c00076{bottom:311.745000px;}
.yed_c00076{bottom:312.630000px;}
.yeb_c00076{bottom:313.905000px;}
.yea_c00076{bottom:314.325000px;}
.yef_c00076{bottom:315.405000px;}
.ye9_c00076{bottom:316.905000px;}
.ye7_c00076{bottom:331.245000px;}
.ye3_c00076{bottom:331.470000px;}
.ye6_c00076{bottom:332.130000px;}
.ye5_c00076{bottom:332.325000px;}
.ye4_c00076{bottom:332.970000px;}
.ye8_c00076{bottom:334.470000px;}
.ye2_c00076{bottom:334.905000px;}
.ydb_c00076{bottom:349.275000px;}
.ydf_c00076{bottom:349.470000px;}
.ydd_c00076{bottom:349.905000px;}
.ydc_c00076{bottom:350.745000px;}
.yd6_c00076{bottom:351.180000px;}
.yd8_c00076{bottom:351.825000px;}
.ye0_c00076{bottom:352.050000px;}
.yd7_c00076{bottom:352.905000px;}
.yd9_c00076{bottom:353.130000px;}
.yde_c00076{bottom:353.970000px;}
.ye1_c00076{bottom:354.405000px;}
.yda_c00076{bottom:356.130000px;}
.yd3_c00076{bottom:369.405000px;}
.yd2_c00076{bottom:370.245000px;}
.yd5_c00076{bottom:370.470000px;}
.yd0_c00076{bottom:371.745000px;}
.yd1_c00076{bottom:372.405000px;}
.yd4_c00076{bottom:373.470000px;}
.ycf_c00076{bottom:373.905000px;}
.ycb_c00076{bottom:389.745000px;}
.ycd_c00076{bottom:390.825000px;}
.ycc_c00076{bottom:391.245000px;}
.yce_c00076{bottom:392.130000px;}
.yca_c00076{bottom:392.970000px;}
.yc9_c00076{bottom:393.405000px;}
.yc3_c00076{bottom:407.775000px;}
.yc8_c00076{bottom:408.405000px;}
.yc7_c00076{bottom:409.905000px;}
.yc4_c00076{bottom:410.745000px;}
.yc1_c00076{bottom:411.630000px;}
.yc0_c00076{bottom:411.825000px;}
.yc6_c00076{bottom:412.470000px;}
.yc5_c00076{bottom:412.905000px;}
.yc2_c00076{bottom:414.630000px;}
.ybe_c00076{bottom:427.905000px;}
.ybf_c00076{bottom:428.970000px;}
.ybc_c00076{bottom:430.245000px;}
.ybd_c00076{bottom:432.405000px;}
.yb8_c00076{bottom:449.745000px;}
.yb9_c00076{bottom:450.630000px;}
.yba_c00076{bottom:450.825000px;}
.ybb_c00076{bottom:451.470000px;}
.yb7_c00076{bottom:451.905000px;}
.yb6_c00076{bottom:454.905000px;}
.yb4_c00076{bottom:466.905000px;}
.yb5_c00076{bottom:468.405000px;}
.yb2_c00076{bottom:469.245000px;}
.yb3_c00076{bottom:470.325000px;}
.yac_c00076{bottom:487.275000px;}
.yb0_c00076{bottom:487.905000px;}
.yad_c00076{bottom:488.745000px;}
.yb1_c00076{bottom:489.180000px;}
.ya9_c00076{bottom:490.470000px;}
.yae_c00076{bottom:490.905000px;}
.yaa_c00076{bottom:491.130000px;}
.yaf_c00076{bottom:491.970000px;}
.yab_c00076{bottom:494.130000px;}
.ya4_c00076{bottom:507.405000px;}
.ya6_c00076{bottom:507.825000px;}
.ya7_c00076{bottom:508.470000px;}
.ya2_c00076{bottom:509.745000px;}
.ya8_c00076{bottom:510.405000px;}
.ya3_c00076{bottom:510.630000px;}
.ya5_c00076{bottom:511.470000px;}
.ya1_c00076{bottom:511.905000px;}
.ya0_c00076{bottom:527.745000px;}
.y9e_c00076{bottom:527.970000px;}
.y9b_c00076{bottom:529.245000px;}
.y9d_c00076{bottom:530.325000px;}
.y9f_c00076{bottom:530.970000px;}
.y9c_c00076{bottom:531.405000px;}
.y99_c00076{bottom:547.245000px;}
.y97_c00076{bottom:548.325000px;}
.y96_c00076{bottom:548.745000px;}
.y95_c00076{bottom:549.405000px;}
.y9a_c00076{bottom:549.630000px;}
.y98_c00076{bottom:550.470000px;}
.y94_c00076{bottom:550.905000px;}
.y93_c00076{bottom:551.325000px;}
.y92_c00076{bottom:570.405000px;}
.y8f_c00076{bottom:587.745000px;}
.y90_c00076{bottom:589.050000px;}
.y8e_c00076{bottom:589.245000px;}
.y8d_c00076{bottom:589.905000px;}
.y91_c00076{bottom:590.325000px;}
.y8c_c00076{bottom:591.405000px;}
.y8b_c00076{bottom:592.905000px;}
.y89_c00076{bottom:609.405000px;}
.y88_c00076{bottom:609.630000px;}
.y8a_c00076{bottom:610.905000px;}
.y85_c00076{bottom:626.745000px;}
.y87_c00076{bottom:626.970000px;}
.y84_c00076{bottom:628.905000px;}
.y83_c00076{bottom:629.130000px;}
.y86_c00076{bottom:629.970000px;}
.y82_c00076{bottom:645.405000px;}
.y7d_c00076{bottom:646.245000px;}
.y81_c00076{bottom:647.745000px;}
.y7b_c00076{bottom:648.405000px;}
.y7f_c00076{bottom:648.630000px;}
.y7c_c00076{bottom:648.825000px;}
.y7e_c00076{bottom:649.470000px;}
.y80_c00076{bottom:649.905000px;}
.y7a_c00076{bottom:666.405000px;}
.y79_c00076{bottom:668.130000px;}
.y77_c00076{bottom:668.970000px;}
.y78_c00076{bottom:669.405000px;}
.y74_c00076{bottom:686.745000px;}
.y76_c00076{bottom:687.825000px;}
.y73_c00076{bottom:688.905000px;}
.y75_c00076{bottom:689.130000px;}
.y72_c00076{bottom:689.970000px;}
.y6b_c00076{bottom:704.775000px;}
.y6f_c00076{bottom:705.855000px;}
.y6c_c00076{bottom:706.245000px;}
.y70_c00076{bottom:706.470000px;}
.y71_c00076{bottom:707.970000px;}
.y6d_c00076{bottom:708.405000px;}
.y69_c00076{bottom:708.630000px;}
.y6e_c00076{bottom:709.470000px;}
.y6a_c00076{bottom:711.630000px;}
.y66_c00076{bottom:724.905000px;}
.y63_c00076{bottom:725.745000px;}
.y67_c00076{bottom:725.970000px;}
.y65_c00076{bottom:727.905000px;}
.y68_c00076{bottom:728.325000px;}
.y64_c00076{bottom:728.970000px;}
.y62_c00076{bottom:729.405000px;}
.y5f_c00076{bottom:746.325000px;}
.y60_c00076{bottom:747.405000px;}
.y5e_c00076{bottom:747.630000px;}
.y61_c00076{bottom:748.905000px;}
.y5a_c00076{bottom:766.245000px;}
.y59_c00076{bottom:766.905000px;}
.y5b_c00076{bottom:767.130000px;}
.y5d_c00076{bottom:767.325000px;}
.y5c_c00076{bottom:767.970000px;}
.y58_c00076{bottom:768.405000px;}
.y54_c00076{bottom:785.745000px;}
.y52_c00076{bottom:786.405000px;}
.y55_c00076{bottom:786.630000px;}
.y56_c00076{bottom:786.825000px;}
.y57_c00076{bottom:787.470000px;}
.y53_c00076{bottom:787.905000px;}
.y51_c00076{bottom:803.970000px;}
.y50_c00076{bottom:805.245000px;}
.y4f_c00076{bottom:806.130000px;}
.y4e_c00076{bottom:806.970000px;}
.y4d_c00076{bottom:807.405000px;}
.y48_c00076{bottom:822.405000px;}
.y4c_c00076{bottom:823.275000px;}
.y47_c00076{bottom:823.470000px;}
.y45_c00076{bottom:823.905000px;}
.y43_c00076{bottom:824.745000px;}
.y4a_c00076{bottom:825.630000px;}
.y49_c00076{bottom:825.825000px;}
.y46_c00076{bottom:826.470000px;}
.y44_c00076{bottom:826.905000px;}
.y4b_c00076{bottom:830.130000px;}
.y42_c00076{bottom:844.245000px;}
.y41_c00076{bottom:845.130000px;}
.y40_c00076{bottom:845.970000px;}
.y3f_c00076{bottom:846.405000px;}
.y3c_c00076{bottom:863.745000px;}
.y3d_c00076{bottom:864.630000px;}
.y3b_c00076{bottom:864.825000px;}
.y3a_c00076{bottom:865.905000px;}
.y3e_c00076{bottom:866.970000px;}
.y36_c00076{bottom:883.245000px;}
.y39_c00076{bottom:884.325000px;}
.y37_c00076{bottom:885.405000px;}
.y38_c00076{bottom:886.470000px;}
.y35_c00076{bottom:886.905000px;}
.y33_c00076{bottom:901.905000px;}
.y34_c00076{bottom:902.745000px;}
.y31_c00076{bottom:904.245000px;}
.y32_c00076{bottom:906.405000px;}
.y2f_c00076{bottom:920.775000px;}
.y2a_c00076{bottom:922.470000px;}
.y29_c00076{bottom:922.905000px;}
.y27_c00076{bottom:923.745000px;}
.y2d_c00076{bottom:924.630000px;}
.y2c_c00076{bottom:924.825000px;}
.y28_c00076{bottom:925.470000px;}
.y2b_c00076{bottom:925.905000px;}
.y30_c00076{bottom:926.970000px;}
.y2e_c00076{bottom:929.130000px;}
.y24_c00076{bottom:942.825000px;}
.y26_c00076{bottom:943.245000px;}
.y22_c00076{bottom:943.905000px;}
.y25_c00076{bottom:944.130000px;}
.y23_c00076{bottom:944.970000px;}
.y21_c00076{bottom:945.405000px;}
.y1d_c00076{bottom:962.745000px;}
.y1c_c00076{bottom:962.970000px;}
.y20_c00076{bottom:963.825000px;}
.y1e_c00076{bottom:964.905000px;}
.y1f_c00076{bottom:965.970000px;}
.y1b_c00076{bottom:981.405000px;}
.y18_c00076{bottom:982.245000px;}
.y1a_c00076{bottom:982.920000px;}
.y17_c00076{bottom:984.405000px;}
.y19_c00076{bottom:984.630000px;}
.y16_c00076{bottom:1000.905000px;}
.y15_c00076{bottom:1001.745000px;}
.y13_c00076{bottom:1003.905000px;}
.y14_c00076{bottom:1004.970000px;}
.yf_c00076{bottom:1021.245000px;}
.y11_c00076{bottom:1023.405000px;}
.y12_c00076{bottom:1023.630000px;}
.ye_c00076{bottom:1024.050000px;}
.y10_c00076{bottom:1024.470000px;}
.ya_c00076{bottom:1040.745000px;}
.yb_c00076{bottom:1041.825000px;}
.yd_c00076{bottom:1042.050000px;}
.y9_c00076{bottom:1042.905000px;}
.yc_c00076{bottom:1043.130000px;}
.y6_c00076{bottom:1060.245000px;}
.y5_c00076{bottom:1062.405000px;}
.y7_c00076{bottom:1062.630000px;}
.y8_c00076{bottom:1062.825000px;}
.y4_c00076{bottom:1063.905000px;}
.y2_c00076{bottom:1099.905000px;}
.y1_c00076{bottom:1102.050000px;}
.h7_c00076{height:4.206533px;}
.h9_c00076{height:8.339268px;}
.h8_c00076{height:14.612168px;}
.h3_c00076{height:23.025234px;}
.h1_c00076{height:25.091602px;}
.h6_c00076{height:31.364502px;}
.h2_c00076{height:35.571035px;}
.h5_c00076{height:39.777568px;}
.h4_c00076{height:43.910303px;}
.ha_c00076{height:48.116836px;}
.h0_c00076{height:1335.000000px;}
.w0_c00076{width:880.500000px;}
.x0_c00076{left:0.000000px;}
.x22_c00076{left:153.420000px;}
.x4_c00076{left:160.080000px;}
.xaf_c00076{left:183.000000px;}
.x5_c00076{left:184.080000px;}
.xb0_c00076{left:198.000000px;}
.xcd_c00076{left:202.920000px;}
.x7f_c00076{left:210.000000px;}
.x90_c00076{left:211.500000px;}
.x68_c00076{left:214.500000px;}
.x9f_c00076{left:215.580000px;}
.x4e_c00076{left:220.080000px;}
.xc4_c00076{left:222.000000px;}
.x83_c00076{left:223.500000px;}
.xa0_c00076{left:225.420000px;}
.x39_c00076{left:226.500000px;}
.x23_c00076{left:228.000000px;}
.x31_c00076{left:229.920000px;}
.xa8_c00076{left:231.420000px;}
.xb6_c00076{left:232.500000px;}
.x6_c00076{left:234.000000px;}
.x99_c00076{left:235.080000px;}
.x6f_c00076{left:236.580000px;}
.x15_c00076{left:238.500000px;}
.x58_c00076{left:240.000000px;}
.x4f_c00076{left:241.920000px;}
.x76_c00076{left:243.420000px;}
.xd5_c00076{left:244.500000px;}
.xa4_c00076{left:246.000000px;}
.xf0_c00076{left:247.500000px;}
.x69_c00076{left:248.580000px;}
.xd6_c00076{left:250.080000px;}
.x80_c00076{left:255.000000px;}
.x32_c00076{left:256.080000px;}
.x70_c00076{left:258.420000px;}
.xd7_c00076{left:259.920000px;}
.xce_c00076{left:261.420000px;}
.xe0_c00076{left:262.920000px;}
.x43_c00076{left:265.080000px;}
.xf1_c00076{left:267.000000px;}
.xb7_c00076{left:268.500000px;}
.x50_c00076{left:269.580000px;}
.x59_c00076{left:274.500000px;}
.x16_c00076{left:276.000000px;}
.xb1_c00076{left:277.500000px;}
.x77_c00076{left:280.500000px;}
.x7_c00076{left:283.920000px;}
.x44_c00076{left:285.420000px;}
.x71_c00076{left:287.580000px;}
.xbd_c00076{left:289.080000px;}
.xf2_c00076{left:291.000000px;}
.x33_c00076{left:292.080000px;}
.xe1_c00076{left:293.580000px;}
.xf9_c00076{left:295.080000px;}
.x84_c00076{left:297.000000px;}
.x6a_c00076{left:300.000000px;}
.x3a_c00076{left:303.420000px;}
.xa9_c00076{left:304.500000px;}
.xc5_c00076{left:306.000000px;}
.x24_c00076{left:307.500000px;}
.x63_c00076{left:309.420000px;}
.x34_c00076{left:310.920000px;}
.x45_c00076{left:312.420000px;}
.x8_c00076{left:313.920000px;}
.x78_c00076{left:315.000000px;}
.x17_c00076{left:316.920000px;}
.xcf_c00076{left:318.420000px;}
.xa5_c00076{left:319.500000px;}
.x91_c00076{left:321.420000px;}
.x85_c00076{left:322.500000px;}
.xf7_c00076{left:330.420000px;}
.xeb_c00076{left:333.420000px;}
.x79_c00076{left:334.500000px;}
.x86_c00076{left:336.000000px;}
.x35_c00076{left:338.580000px;}
.xa6_c00076{left:340.500000px;}
.x18_c00076{left:342.420000px;}
.xaa_c00076{left:345.000000px;}
.x25_c00076{left:348.420000px;}
.xbe_c00076{left:349.500000px;}
.x46_c00076{left:352.920000px;}
.x51_c00076{left:354.000000px;}
.xc6_c00076{left:355.500000px;}
.xd0_c00076{left:357.000000px;}
.xec_c00076{left:358.500000px;}
.xb8_c00076{left:360.000000px;}
.x8b_c00076{left:361.500000px;}
.x9_c00076{left:362.580000px;}
.x5a_c00076{left:364.080000px;}
.x3b_c00076{left:366.420000px;}
.x7a_c00076{left:369.000000px;}
.xb2_c00076{left:370.920000px;}
.x26_c00076{left:376.080000px;}
.xf4_c00076{left:378.000000px;}
.x36_c00076{left:379.500000px;}
.xd8_c00076{left:381.000000px;}
.xa_c00076{left:382.920000px;}
.x5b_c00076{left:384.000000px;}
.x19_c00076{left:385.500000px;}
.x47_c00076{left:390.000000px;}
.xf8_c00076{left:391.920000px;}
.x8c_c00076{left:393.420000px;}
.xd1_c00076{left:396.420000px;}
.xbf_c00076{left:397.500000px;}
.x1_c00076{left:399.000000px;}
.x92_c00076{left:400.080000px;}
.xfa_c00076{left:406.500000px;}
.x37_c00076{left:407.580000px;}
.x6b_c00076{left:409.920000px;}
.xb_c00076{left:411.420000px;}
.xe3_c00076{left:414.000000px;}
.x52_c00076{left:417.420000px;}
.x93_c00076{left:418.920000px;}
.xde_c00076{left:420.420000px;}
.xa1_c00076{left:424.500000px;}
.xc7_c00076{left:425.580000px;}
.xdb_c00076{left:428.580000px;}
.x5c_c00076{left:430.500000px;}
.x27_c00076{left:433.920000px;}
.x9a_c00076{left:436.500000px;}
.x1a_c00076{left:437.580000px;}
.x38_c00076{left:439.500000px;}
.x3c_c00076{left:442.080000px;}
.x53_c00076{left:443.580000px;}
.x94_c00076{left:445.080000px;}
.xab_c00076{left:448.500000px;}
.xc_c00076{left:450.000000px;}
.xe8_c00076{left:453.420000px;}
.x1b_c00076{left:454.920000px;}
.x87_c00076{left:456.420000px;}
.x3d_c00076{left:459.420000px;}
.x28_c00076{left:461.580000px;}
.x48_c00076{left:465.420000px;}
.xe4_c00076{left:466.920000px;}
.xac_c00076{left:468.000000px;}
.xe2_c00076{left:469.500000px;}
.xd_c00076{left:471.000000px;}
.x64_c00076{left:475.500000px;}
.x1c_c00076{left:480.000000px;}
.x72_c00076{left:481.500000px;}
.xc8_c00076{left:483.000000px;}
.x88_c00076{left:484.920000px;}
.x3e_c00076{left:486.420000px;}
.xe_c00076{left:487.500000px;}
.xa7_c00076{left:490.500000px;}
.xb9_c00076{left:491.580000px;}
.x6c_c00076{left:493.500000px;}
.xad_c00076{left:496.920000px;}
.x9b_c00076{left:499.500000px;}
.x54_c00076{left:500.580000px;}
.xc9_c00076{left:502.920000px;}
.x29_c00076{left:504.000000px;}
.x95_c00076{left:505.080000px;}
.x8d_c00076{left:509.580000px;}
.x5d_c00076{left:511.920000px;}
.x49_c00076{left:514.080000px;}
.x60_c00076{left:516.000000px;}
.xd9_c00076{left:517.500000px;}
.x73_c00076{left:519.420000px;}
.x7b_c00076{left:520.500000px;}
.x3f_c00076{left:522.000000px;}
.xed_c00076{left:524.580000px;}
.x65_c00076{left:528.420000px;}
.xc0_c00076{left:529.500000px;}
.x2a_c00076{left:532.500000px;}
.x4a_c00076{left:534.420000px;}
.xa2_c00076{left:535.920000px;}
.x5e_c00076{left:537.000000px;}
.xd2_c00076{left:538.500000px;}
.x40_c00076{left:541.920000px;}
.xf_c00076{left:543.420000px;}
.x1d_c00076{left:544.500000px;}
.x9c_c00076{left:546.000000px;}
.x74_c00076{left:548.580000px;}
.xba_c00076{left:550.080000px;}
.xca_c00076{left:551.580000px;}
.x2b_c00076{left:553.920000px;}
.x89_c00076{left:556.500000px;}
.x55_c00076{left:557.580000px;}
.xb3_c00076{left:559.920000px;}
.x4b_c00076{left:561.000000px;}
.x66_c00076{left:564.000000px;}
.x6d_c00076{left:568.920000px;}
.xc1_c00076{left:570.000000px;}
.xe5_c00076{left:573.000000px;}
.x96_c00076{left:574.920000px;}
.xf5_c00076{left:576.420000px;}
.x8e_c00076{left:577.920000px;}
.x1e_c00076{left:579.420000px;}
.x10_c00076{left:580.920000px;}
.xe6_c00076{left:585.000000px;}
.x9d_c00076{left:586.920000px;}
.xb4_c00076{left:588.000000px;}
.xee_c00076{left:589.500000px;}
.x67_c00076{left:591.000000px;}
.x2c_c00076{left:592.920000px;}
.x8a_c00076{left:595.920000px;}
.x75_c00076{left:599.580000px;}
.x5f_c00076{left:601.500000px;}
.x97_c00076{left:602.580000px;}
.x1f_c00076{left:604.920000px;}
.xda_c00076{left:607.500000px;}
.x11_c00076{left:609.000000px;}
.xe9_c00076{left:610.080000px;}
.x81_c00076{left:612.000000px;}
.xa3_c00076{left:613.920000px;}
.xdc_c00076{left:615.000000px;}
.xbb_c00076{left:618.420000px;}
.xc2_c00076{left:619.500000px;}
.x2d_c00076{left:621.000000px;}
.xe7_c00076{left:622.920000px;}
.x7c_c00076{left:624.000000px;}
.x4c_c00076{left:625.500000px;}
.xb5_c00076{left:627.000000px;}
.x7d_c00076{left:629.580000px;}
.xf6_c00076{left:633.000000px;}
.xcb_c00076{left:636.420000px;}
.x56_c00076{left:637.920000px;}
.x7e_c00076{left:640.920000px;}
.xf3_c00076{left:642.420000px;}
.xd3_c00076{left:643.500000px;}
.xbc_c00076{left:645.000000px;}
.x6e_c00076{left:646.500000px;}
.x8f_c00076{left:648.420000px;}
.x12_c00076{left:654.000000px;}
.x2e_c00076{left:655.080000px;}
.x20_c00076{left:657.000000px;}
.x9e_c00076{left:658.500000px;}
.xc3_c00076{left:661.500000px;}
.xea_c00076{left:664.500000px;}
.x4d_c00076{left:670.920000px;}
.x2f_c00076{left:675.420000px;}
.x13_c00076{left:678.420000px;}
.xcc_c00076{left:680.580000px;}
.xae_c00076{left:682.500000px;}
.x41_c00076{left:684.000000px;}
.xef_c00076{left:685.500000px;}
.xd4_c00076{left:688.920000px;}
.xdf_c00076{left:691.500000px;}
.x98_c00076{left:693.000000px;}
.x61_c00076{left:695.580000px;}
.x82_c00076{left:697.080000px;}
.x57_c00076{left:699.420000px;}
.x30_c00076{left:703.920000px;}
.x42_c00076{left:709.500000px;}
.xfb_c00076{left:710.580000px;}
.xdd_c00076{left:712.080000px;}
.x2_c00076{left:714.000000px;}
.x62_c00076{left:715.500000px;}
.x14_c00076{left:716.580000px;}
.x21_c00076{left:723.420000px;}
.x3_c00076{left:726.000000px;}
@media print{
.v0_c00076{vertical-align:0.000000pt;}
.ls0_c00076{letter-spacing:0.000000pt;}
.ws1_c00076{word-spacing:-3.732623pt;}
.ws2_c00076{word-spacing:0.000000pt;}
.ws0_c00076{word-spacing:9.407069pt;}
.fs6_c00076{font-size:3.040000pt;}
.fs8_c00076{font-size:6.026667pt;}
.fs7_c00076{font-size:10.560000pt;}
.fs2_c00076{font-size:16.640000pt;}
.fs0_c00076{font-size:18.133333pt;}
.fs5_c00076{font-size:22.666667pt;}
.fs1_c00076{font-size:25.706667pt;}
.fs4_c00076{font-size:28.746667pt;}
.fs3_c00076{font-size:31.733333pt;}
.fs9_c00076{font-size:34.773333pt;}
.y0_c00076{bottom:0.000000pt;}
.y3_c00076{bottom:184.560000pt;}
.y10a_c00076{bottom:206.440000pt;}
.y10c_c00076{bottom:207.026667pt;}
.y109_c00076{bottom:207.226667pt;}
.y108_c00076{bottom:207.400000pt;}
.y10b_c00076{bottom:207.973333pt;}
.y107_c00076{bottom:209.306667pt;}
.yff_c00076{bottom:222.466667pt;}
.y103_c00076{bottom:223.026667pt;}
.y100_c00076{bottom:223.773333pt;}
.y104_c00076{bottom:223.973333pt;}
.y106_c00076{bottom:224.360000pt;}
.yfc_c00076{bottom:225.106667pt;}
.y101_c00076{bottom:225.693333pt;}
.yfd_c00076{bottom:225.893333pt;}
.y102_c00076{bottom:226.640000pt;}
.y105_c00076{bottom:227.026667pt;}
.yfe_c00076{bottom:228.560000pt;}
.yf9_c00076{bottom:241.306667pt;}
.yfb_c00076{bottom:241.693333pt;}
.yf6_c00076{bottom:242.440000pt;}
.yf5_c00076{bottom:242.826667pt;}
.yf8_c00076{bottom:243.973333pt;}
.yf7_c00076{bottom:244.360000pt;}
.yfa_c00076{bottom:245.693333pt;}
.yf2_c00076{bottom:257.693333pt;}
.yf1_c00076{bottom:259.773333pt;}
.yf3_c00076{bottom:260.560000pt;}
.yf0_c00076{bottom:261.693333pt;}
.yf4_c00076{bottom:263.026667pt;}
.yee_c00076{bottom:276.360000pt;}
.yec_c00076{bottom:277.106667pt;}
.yed_c00076{bottom:277.893333pt;}
.yeb_c00076{bottom:279.026667pt;}
.yea_c00076{bottom:279.400000pt;}
.yef_c00076{bottom:280.360000pt;}
.ye9_c00076{bottom:281.693333pt;}
.ye7_c00076{bottom:294.440000pt;}
.ye3_c00076{bottom:294.640000pt;}
.ye6_c00076{bottom:295.226667pt;}
.ye5_c00076{bottom:295.400000pt;}
.ye4_c00076{bottom:295.973333pt;}
.ye8_c00076{bottom:297.306667pt;}
.ye2_c00076{bottom:297.693333pt;}
.ydb_c00076{bottom:310.466667pt;}
.ydf_c00076{bottom:310.640000pt;}
.ydd_c00076{bottom:311.026667pt;}
.ydc_c00076{bottom:311.773333pt;}
.yd6_c00076{bottom:312.160000pt;}
.yd8_c00076{bottom:312.733333pt;}
.ye0_c00076{bottom:312.933333pt;}
.yd7_c00076{bottom:313.693333pt;}
.yd9_c00076{bottom:313.893333pt;}
.yde_c00076{bottom:314.640000pt;}
.ye1_c00076{bottom:315.026667pt;}
.yda_c00076{bottom:316.560000pt;}
.yd3_c00076{bottom:328.360000pt;}
.yd2_c00076{bottom:329.106667pt;}
.yd5_c00076{bottom:329.306667pt;}
.yd0_c00076{bottom:330.440000pt;}
.yd1_c00076{bottom:331.026667pt;}
.yd4_c00076{bottom:331.973333pt;}
.ycf_c00076{bottom:332.360000pt;}
.ycb_c00076{bottom:346.440000pt;}
.ycd_c00076{bottom:347.400000pt;}
.ycc_c00076{bottom:347.773333pt;}
.yce_c00076{bottom:348.560000pt;}
.yca_c00076{bottom:349.306667pt;}
.yc9_c00076{bottom:349.693333pt;}
.yc3_c00076{bottom:362.466667pt;}
.yc8_c00076{bottom:363.026667pt;}
.yc7_c00076{bottom:364.360000pt;}
.yc4_c00076{bottom:365.106667pt;}
.yc1_c00076{bottom:365.893333pt;}
.yc0_c00076{bottom:366.066667pt;}
.yc6_c00076{bottom:366.640000pt;}
.yc5_c00076{bottom:367.026667pt;}
.yc2_c00076{bottom:368.560000pt;}
.ybe_c00076{bottom:380.360000pt;}
.ybf_c00076{bottom:381.306667pt;}
.ybc_c00076{bottom:382.440000pt;}
.ybd_c00076{bottom:384.360000pt;}
.yb8_c00076{bottom:399.773333pt;}
.yb9_c00076{bottom:400.560000pt;}
.yba_c00076{bottom:400.733333pt;}
.ybb_c00076{bottom:401.306667pt;}
.yb7_c00076{bottom:401.693333pt;}
.yb6_c00076{bottom:404.360000pt;}
.yb4_c00076{bottom:415.026667pt;}
.yb5_c00076{bottom:416.360000pt;}
.yb2_c00076{bottom:417.106667pt;}
.yb3_c00076{bottom:418.066667pt;}
.yac_c00076{bottom:433.133333pt;}
.yb0_c00076{bottom:433.693333pt;}
.yad_c00076{bottom:434.440000pt;}
.yb1_c00076{bottom:434.826667pt;}
.ya9_c00076{bottom:435.973333pt;}
.yae_c00076{bottom:436.360000pt;}
.yaa_c00076{bottom:436.560000pt;}
.yaf_c00076{bottom:437.306667pt;}
.yab_c00076{bottom:439.226667pt;}
.ya4_c00076{bottom:451.026667pt;}
.ya6_c00076{bottom:451.400000pt;}
.ya7_c00076{bottom:451.973333pt;}
.ya2_c00076{bottom:453.106667pt;}
.ya8_c00076{bottom:453.693333pt;}
.ya3_c00076{bottom:453.893333pt;}
.ya5_c00076{bottom:454.640000pt;}
.ya1_c00076{bottom:455.026667pt;}
.ya0_c00076{bottom:469.106667pt;}
.y9e_c00076{bottom:469.306667pt;}
.y9b_c00076{bottom:470.440000pt;}
.y9d_c00076{bottom:471.400000pt;}
.y9f_c00076{bottom:471.973333pt;}
.y9c_c00076{bottom:472.360000pt;}
.y99_c00076{bottom:486.440000pt;}
.y97_c00076{bottom:487.400000pt;}
.y96_c00076{bottom:487.773333pt;}
.y95_c00076{bottom:488.360000pt;}
.y9a_c00076{bottom:488.560000pt;}
.y98_c00076{bottom:489.306667pt;}
.y94_c00076{bottom:489.693333pt;}
.y93_c00076{bottom:490.066667pt;}
.y92_c00076{bottom:507.026667pt;}
.y8f_c00076{bottom:522.440000pt;}
.y90_c00076{bottom:523.600000pt;}
.y8e_c00076{bottom:523.773333pt;}
.y8d_c00076{bottom:524.360000pt;}
.y91_c00076{bottom:524.733333pt;}
.y8c_c00076{bottom:525.693333pt;}
.y8b_c00076{bottom:527.026667pt;}
.y89_c00076{bottom:541.693333pt;}
.y88_c00076{bottom:541.893333pt;}
.y8a_c00076{bottom:543.026667pt;}
.y85_c00076{bottom:557.106667pt;}
.y87_c00076{bottom:557.306667pt;}
.y84_c00076{bottom:559.026667pt;}
.y83_c00076{bottom:559.226667pt;}
.y86_c00076{bottom:559.973333pt;}
.y82_c00076{bottom:573.693333pt;}
.y7d_c00076{bottom:574.440000pt;}
.y81_c00076{bottom:575.773333pt;}
.y7b_c00076{bottom:576.360000pt;}
.y7f_c00076{bottom:576.560000pt;}
.y7c_c00076{bottom:576.733333pt;}
.y7e_c00076{bottom:577.306667pt;}
.y80_c00076{bottom:577.693333pt;}
.y7a_c00076{bottom:592.360000pt;}
.y79_c00076{bottom:593.893333pt;}
.y77_c00076{bottom:594.640000pt;}
.y78_c00076{bottom:595.026667pt;}
.y74_c00076{bottom:610.440000pt;}
.y76_c00076{bottom:611.400000pt;}
.y73_c00076{bottom:612.360000pt;}
.y75_c00076{bottom:612.560000pt;}
.y72_c00076{bottom:613.306667pt;}
.y6b_c00076{bottom:626.466667pt;}
.y6f_c00076{bottom:627.426667pt;}
.y6c_c00076{bottom:627.773333pt;}
.y70_c00076{bottom:627.973333pt;}
.y71_c00076{bottom:629.306667pt;}
.y6d_c00076{bottom:629.693333pt;}
.y69_c00076{bottom:629.893333pt;}
.y6e_c00076{bottom:630.640000pt;}
.y6a_c00076{bottom:632.560000pt;}
.y66_c00076{bottom:644.360000pt;}
.y63_c00076{bottom:645.106667pt;}
.y67_c00076{bottom:645.306667pt;}
.y65_c00076{bottom:647.026667pt;}
.y68_c00076{bottom:647.400000pt;}
.y64_c00076{bottom:647.973333pt;}
.y62_c00076{bottom:648.360000pt;}
.y5f_c00076{bottom:663.400000pt;}
.y60_c00076{bottom:664.360000pt;}
.y5e_c00076{bottom:664.560000pt;}
.y61_c00076{bottom:665.693333pt;}
.y5a_c00076{bottom:681.106667pt;}
.y59_c00076{bottom:681.693333pt;}
.y5b_c00076{bottom:681.893333pt;}
.y5d_c00076{bottom:682.066667pt;}
.y5c_c00076{bottom:682.640000pt;}
.y58_c00076{bottom:683.026667pt;}
.y54_c00076{bottom:698.440000pt;}
.y52_c00076{bottom:699.026667pt;}
.y55_c00076{bottom:699.226667pt;}
.y56_c00076{bottom:699.400000pt;}
.y57_c00076{bottom:699.973333pt;}
.y53_c00076{bottom:700.360000pt;}
.y51_c00076{bottom:714.640000pt;}
.y50_c00076{bottom:715.773333pt;}
.y4f_c00076{bottom:716.560000pt;}
.y4e_c00076{bottom:717.306667pt;}
.y4d_c00076{bottom:717.693333pt;}
.y48_c00076{bottom:731.026667pt;}
.y4c_c00076{bottom:731.800000pt;}
.y47_c00076{bottom:731.973333pt;}
.y45_c00076{bottom:732.360000pt;}
.y43_c00076{bottom:733.106667pt;}
.y4a_c00076{bottom:733.893333pt;}
.y49_c00076{bottom:734.066667pt;}
.y46_c00076{bottom:734.640000pt;}
.y44_c00076{bottom:735.026667pt;}
.y4b_c00076{bottom:737.893333pt;}
.y42_c00076{bottom:750.440000pt;}
.y41_c00076{bottom:751.226667pt;}
.y40_c00076{bottom:751.973333pt;}
.y3f_c00076{bottom:752.360000pt;}
.y3c_c00076{bottom:767.773333pt;}
.y3d_c00076{bottom:768.560000pt;}
.y3b_c00076{bottom:768.733333pt;}
.y3a_c00076{bottom:769.693333pt;}
.y3e_c00076{bottom:770.640000pt;}
.y36_c00076{bottom:785.106667pt;}
.y39_c00076{bottom:786.066667pt;}
.y37_c00076{bottom:787.026667pt;}
.y38_c00076{bottom:787.973333pt;}
.y35_c00076{bottom:788.360000pt;}
.y33_c00076{bottom:801.693333pt;}
.y34_c00076{bottom:802.440000pt;}
.y31_c00076{bottom:803.773333pt;}
.y32_c00076{bottom:805.693333pt;}
.y2f_c00076{bottom:818.466667pt;}
.y2a_c00076{bottom:819.973333pt;}
.y29_c00076{bottom:820.360000pt;}
.y27_c00076{bottom:821.106667pt;}
.y2d_c00076{bottom:821.893333pt;}
.y2c_c00076{bottom:822.066667pt;}
.y28_c00076{bottom:822.640000pt;}
.y2b_c00076{bottom:823.026667pt;}
.y30_c00076{bottom:823.973333pt;}
.y2e_c00076{bottom:825.893333pt;}
.y24_c00076{bottom:838.066667pt;}
.y26_c00076{bottom:838.440000pt;}
.y22_c00076{bottom:839.026667pt;}
.y25_c00076{bottom:839.226667pt;}
.y23_c00076{bottom:839.973333pt;}
.y21_c00076{bottom:840.360000pt;}
.y1d_c00076{bottom:855.773333pt;}
.y1c_c00076{bottom:855.973333pt;}
.y20_c00076{bottom:856.733333pt;}
.y1e_c00076{bottom:857.693333pt;}
.y1f_c00076{bottom:858.640000pt;}
.y1b_c00076{bottom:872.360000pt;}
.y18_c00076{bottom:873.106667pt;}
.y1a_c00076{bottom:873.706667pt;}
.y17_c00076{bottom:875.026667pt;}
.y19_c00076{bottom:875.226667pt;}
.y16_c00076{bottom:889.693333pt;}
.y15_c00076{bottom:890.440000pt;}
.y13_c00076{bottom:892.360000pt;}
.y14_c00076{bottom:893.306667pt;}
.yf_c00076{bottom:907.773333pt;}
.y11_c00076{bottom:909.693333pt;}
.y12_c00076{bottom:909.893333pt;}
.ye_c00076{bottom:910.266667pt;}
.y10_c00076{bottom:910.640000pt;}
.ya_c00076{bottom:925.106667pt;}
.yb_c00076{bottom:926.066667pt;}
.yd_c00076{bottom:926.266667pt;}
.y9_c00076{bottom:927.026667pt;}
.yc_c00076{bottom:927.226667pt;}
.y6_c00076{bottom:942.440000pt;}
.y5_c00076{bottom:944.360000pt;}
.y7_c00076{bottom:944.560000pt;}
.y8_c00076{bottom:944.733333pt;}
.y4_c00076{bottom:945.693333pt;}
.y2_c00076{bottom:977.693333pt;}
.y1_c00076{bottom:979.600000pt;}
.h7_c00076{height:3.739141pt;}
.h9_c00076{height:7.412682pt;}
.h8_c00076{height:12.988594pt;}
.h3_c00076{height:20.466875pt;}
.h1_c00076{height:22.303646pt;}
.h6_c00076{height:27.879557pt;}
.h2_c00076{height:31.618698pt;}
.h5_c00076{height:35.357839pt;}
.h4_c00076{height:39.031380pt;}
.ha_c00076{height:42.770521pt;}
.h0_c00076{height:1186.666667pt;}
.w0_c00076{width:782.666667pt;}
.x0_c00076{left:0.000000pt;}
.x22_c00076{left:136.373333pt;}
.x4_c00076{left:142.293333pt;}
.xaf_c00076{left:162.666667pt;}
.x5_c00076{left:163.626667pt;}
.xb0_c00076{left:176.000000pt;}
.xcd_c00076{left:180.373333pt;}
.x7f_c00076{left:186.666667pt;}
.x90_c00076{left:188.000000pt;}
.x68_c00076{left:190.666667pt;}
.x9f_c00076{left:191.626667pt;}
.x4e_c00076{left:195.626667pt;}
.xc4_c00076{left:197.333333pt;}
.x83_c00076{left:198.666667pt;}
.xa0_c00076{left:200.373333pt;}
.x39_c00076{left:201.333333pt;}
.x23_c00076{left:202.666667pt;}
.x31_c00076{left:204.373333pt;}
.xa8_c00076{left:205.706667pt;}
.xb6_c00076{left:206.666667pt;}
.x6_c00076{left:208.000000pt;}
.x99_c00076{left:208.960000pt;}
.x6f_c00076{left:210.293333pt;}
.x15_c00076{left:212.000000pt;}
.x58_c00076{left:213.333333pt;}
.x4f_c00076{left:215.040000pt;}
.x76_c00076{left:216.373333pt;}
.xd5_c00076{left:217.333333pt;}
.xa4_c00076{left:218.666667pt;}
.xf0_c00076{left:220.000000pt;}
.x69_c00076{left:220.960000pt;}
.xd6_c00076{left:222.293333pt;}
.x80_c00076{left:226.666667pt;}
.x32_c00076{left:227.626667pt;}
.x70_c00076{left:229.706667pt;}
.xd7_c00076{left:231.040000pt;}
.xce_c00076{left:232.373333pt;}
.xe0_c00076{left:233.706667pt;}
.x43_c00076{left:235.626667pt;}
.xf1_c00076{left:237.333333pt;}
.xb7_c00076{left:238.666667pt;}
.x50_c00076{left:239.626667pt;}
.x59_c00076{left:244.000000pt;}
.x16_c00076{left:245.333333pt;}
.xb1_c00076{left:246.666667pt;}
.x77_c00076{left:249.333333pt;}
.x7_c00076{left:252.373333pt;}
.x44_c00076{left:253.706667pt;}
.x71_c00076{left:255.626667pt;}
.xbd_c00076{left:256.960000pt;}
.xf2_c00076{left:258.666667pt;}
.x33_c00076{left:259.626667pt;}
.xe1_c00076{left:260.960000pt;}
.xf9_c00076{left:262.293333pt;}
.x84_c00076{left:264.000000pt;}
.x6a_c00076{left:266.666667pt;}
.x3a_c00076{left:269.706667pt;}
.xa9_c00076{left:270.666667pt;}
.xc5_c00076{left:272.000000pt;}
.x24_c00076{left:273.333333pt;}
.x63_c00076{left:275.040000pt;}
.x34_c00076{left:276.373333pt;}
.x45_c00076{left:277.706667pt;}
.x8_c00076{left:279.040000pt;}
.x78_c00076{left:280.000000pt;}
.x17_c00076{left:281.706667pt;}
.xcf_c00076{left:283.040000pt;}
.xa5_c00076{left:284.000000pt;}
.x91_c00076{left:285.706667pt;}
.x85_c00076{left:286.666667pt;}
.xf7_c00076{left:293.706667pt;}
.xeb_c00076{left:296.373333pt;}
.x79_c00076{left:297.333333pt;}
.x86_c00076{left:298.666667pt;}
.x35_c00076{left:300.960000pt;}
.xa6_c00076{left:302.666667pt;}
.x18_c00076{left:304.373333pt;}
.xaa_c00076{left:306.666667pt;}
.x25_c00076{left:309.706667pt;}
.xbe_c00076{left:310.666667pt;}
.x46_c00076{left:313.706667pt;}
.x51_c00076{left:314.666667pt;}
.xc6_c00076{left:316.000000pt;}
.xd0_c00076{left:317.333333pt;}
.xec_c00076{left:318.666667pt;}
.xb8_c00076{left:320.000000pt;}
.x8b_c00076{left:321.333333pt;}
.x9_c00076{left:322.293333pt;}
.x5a_c00076{left:323.626667pt;}
.x3b_c00076{left:325.706667pt;}
.x7a_c00076{left:328.000000pt;}
.xb2_c00076{left:329.706667pt;}
.x26_c00076{left:334.293333pt;}
.xf4_c00076{left:336.000000pt;}
.x36_c00076{left:337.333333pt;}
.xd8_c00076{left:338.666667pt;}
.xa_c00076{left:340.373333pt;}
.x5b_c00076{left:341.333333pt;}
.x19_c00076{left:342.666667pt;}
.x47_c00076{left:346.666667pt;}
.xf8_c00076{left:348.373333pt;}
.x8c_c00076{left:349.706667pt;}
.xd1_c00076{left:352.373333pt;}
.xbf_c00076{left:353.333333pt;}
.x1_c00076{left:354.666667pt;}
.x92_c00076{left:355.626667pt;}
.xfa_c00076{left:361.333333pt;}
.x37_c00076{left:362.293333pt;}
.x6b_c00076{left:364.373333pt;}
.xb_c00076{left:365.706667pt;}
.xe3_c00076{left:368.000000pt;}
.x52_c00076{left:371.040000pt;}
.x93_c00076{left:372.373333pt;}
.xde_c00076{left:373.706667pt;}
.xa1_c00076{left:377.333333pt;}
.xc7_c00076{left:378.293333pt;}
.xdb_c00076{left:380.960000pt;}
.x5c_c00076{left:382.666667pt;}
.x27_c00076{left:385.706667pt;}
.x9a_c00076{left:388.000000pt;}
.x1a_c00076{left:388.960000pt;}
.x38_c00076{left:390.666667pt;}
.x3c_c00076{left:392.960000pt;}
.x53_c00076{left:394.293333pt;}
.x94_c00076{left:395.626667pt;}
.xab_c00076{left:398.666667pt;}
.xc_c00076{left:400.000000pt;}
.xe8_c00076{left:403.040000pt;}
.x1b_c00076{left:404.373333pt;}
.x87_c00076{left:405.706667pt;}
.x3d_c00076{left:408.373333pt;}
.x28_c00076{left:410.293333pt;}
.x48_c00076{left:413.706667pt;}
.xe4_c00076{left:415.040000pt;}
.xac_c00076{left:416.000000pt;}
.xe2_c00076{left:417.333333pt;}
.xd_c00076{left:418.666667pt;}
.x64_c00076{left:422.666667pt;}
.x1c_c00076{left:426.666667pt;}
.x72_c00076{left:428.000000pt;}
.xc8_c00076{left:429.333333pt;}
.x88_c00076{left:431.040000pt;}
.x3e_c00076{left:432.373333pt;}
.xe_c00076{left:433.333333pt;}
.xa7_c00076{left:436.000000pt;}
.xb9_c00076{left:436.960000pt;}
.x6c_c00076{left:438.666667pt;}
.xad_c00076{left:441.706667pt;}
.x9b_c00076{left:444.000000pt;}
.x54_c00076{left:444.960000pt;}
.xc9_c00076{left:447.040000pt;}
.x29_c00076{left:448.000000pt;}
.x95_c00076{left:448.960000pt;}
.x8d_c00076{left:452.960000pt;}
.x5d_c00076{left:455.040000pt;}
.x49_c00076{left:456.960000pt;}
.x60_c00076{left:458.666667pt;}
.xd9_c00076{left:460.000000pt;}
.x73_c00076{left:461.706667pt;}
.x7b_c00076{left:462.666667pt;}
.x3f_c00076{left:464.000000pt;}
.xed_c00076{left:466.293333pt;}
.x65_c00076{left:469.706667pt;}
.xc0_c00076{left:470.666667pt;}
.x2a_c00076{left:473.333333pt;}
.x4a_c00076{left:475.040000pt;}
.xa2_c00076{left:476.373333pt;}
.x5e_c00076{left:477.333333pt;}
.xd2_c00076{left:478.666667pt;}
.x40_c00076{left:481.706667pt;}
.xf_c00076{left:483.040000pt;}
.x1d_c00076{left:484.000000pt;}
.x9c_c00076{left:485.333333pt;}
.x74_c00076{left:487.626667pt;}
.xba_c00076{left:488.960000pt;}
.xca_c00076{left:490.293333pt;}
.x2b_c00076{left:492.373333pt;}
.x89_c00076{left:494.666667pt;}
.x55_c00076{left:495.626667pt;}
.xb3_c00076{left:497.706667pt;}
.x4b_c00076{left:498.666667pt;}
.x66_c00076{left:501.333333pt;}
.x6d_c00076{left:505.706667pt;}
.xc1_c00076{left:506.666667pt;}
.xe5_c00076{left:509.333333pt;}
.x96_c00076{left:511.040000pt;}
.xf5_c00076{left:512.373333pt;}
.x8e_c00076{left:513.706667pt;}
.x1e_c00076{left:515.040000pt;}
.x10_c00076{left:516.373333pt;}
.xe6_c00076{left:520.000000pt;}
.x9d_c00076{left:521.706667pt;}
.xb4_c00076{left:522.666667pt;}
.xee_c00076{left:524.000000pt;}
.x67_c00076{left:525.333333pt;}
.x2c_c00076{left:527.040000pt;}
.x8a_c00076{left:529.706667pt;}
.x75_c00076{left:532.960000pt;}
.x5f_c00076{left:534.666667pt;}
.x97_c00076{left:535.626667pt;}
.x1f_c00076{left:537.706667pt;}
.xda_c00076{left:540.000000pt;}
.x11_c00076{left:541.333333pt;}
.xe9_c00076{left:542.293333pt;}
.x81_c00076{left:544.000000pt;}
.xa3_c00076{left:545.706667pt;}
.xdc_c00076{left:546.666667pt;}
.xbb_c00076{left:549.706667pt;}
.xc2_c00076{left:550.666667pt;}
.x2d_c00076{left:552.000000pt;}
.xe7_c00076{left:553.706667pt;}
.x7c_c00076{left:554.666667pt;}
.x4c_c00076{left:556.000000pt;}
.xb5_c00076{left:557.333333pt;}
.x7d_c00076{left:559.626667pt;}
.xf6_c00076{left:562.666667pt;}
.xcb_c00076{left:565.706667pt;}
.x56_c00076{left:567.040000pt;}
.x7e_c00076{left:569.706667pt;}
.xf3_c00076{left:571.040000pt;}
.xd3_c00076{left:572.000000pt;}
.xbc_c00076{left:573.333333pt;}
.x6e_c00076{left:574.666667pt;}
.x8f_c00076{left:576.373333pt;}
.x12_c00076{left:581.333333pt;}
.x2e_c00076{left:582.293333pt;}
.x20_c00076{left:584.000000pt;}
.x9e_c00076{left:585.333333pt;}
.xc3_c00076{left:588.000000pt;}
.xea_c00076{left:590.666667pt;}
.x4d_c00076{left:596.373333pt;}
.x2f_c00076{left:600.373333pt;}
.x13_c00076{left:603.040000pt;}
.xcc_c00076{left:604.960000pt;}
.xae_c00076{left:606.666667pt;}
.x41_c00076{left:608.000000pt;}
.xef_c00076{left:609.333333pt;}
.xd4_c00076{left:612.373333pt;}
.xdf_c00076{left:614.666667pt;}
.x98_c00076{left:616.000000pt;}
.x61_c00076{left:618.293333pt;}
.x82_c00076{left:619.626667pt;}
.x57_c00076{left:621.706667pt;}
.x30_c00076{left:625.706667pt;}
.x42_c00076{left:630.666667pt;}
.xfb_c00076{left:631.626667pt;}
.xdd_c00076{left:632.960000pt;}
.x2_c00076{left:634.666667pt;}
.x62_c00076{left:636.000000pt;}
.x14_c00076{left:636.960000pt;}
.x21_c00076{left:643.040000pt;}
.x3_c00076{left:645.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_93e30d2e66a49a4c45259286.woff2')format("woff");}.ff1_c00077{font-family:ff1_c00077;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m78_c00077{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m1d_c00077{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_c00077{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m28_c00077{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m23_c00077{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m3c_c00077{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.m33_c00077{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.me1_c00077{transform:matrix(0.370130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370130,0.000000,0.000000,0.250000,0,0);}
.me4_c00077{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.mf5_c00077{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m38_c00077{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.mfe_c00077{transform:matrix(0.377087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377087,0.000000,0.000000,0.250000,0,0);}
.m91_c00077{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.meb_c00077{transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);}
.m80_c00077{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.ma_c00077{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m18_c00077{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m99_c00077{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m90_c00077{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mc3_c00077{transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);}
.m40_c00077{transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);}
.m59_c00077{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mbb_c00077{transform:matrix(0.395176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395176,0.000000,0.000000,0.250000,0,0);}
.mb9_c00077{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m0_c00077{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m36_c00077{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m88_c00077{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m82_c00077{transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);}
.m55_c00077{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m1f_c00077{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mc_c00077{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m2f_c00077{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m7c_c00077{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m54_c00077{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m3a_c00077{transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);}
.m5f_c00077{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m5d_c00077{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m32_c00077{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.md8_c00077{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m3f_c00077{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.md_c00077{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m52_c00077{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.m21_c00077{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mc5_c00077{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.ma8_c00077{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m4a_c00077{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m61_c00077{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m6a_c00077{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.ma9_c00077{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.mf9_c00077{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m35_c00077{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.ma7_c00077{transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);}
.m3_c00077{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m71_c00077{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m20_c00077{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mc8_c00077{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m9a_c00077{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m11_c00077{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m43_c00077{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.ma4_c00077{transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);}
.mb7_c00077{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m4b_c00077{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m58_c00077{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m2b_c00077{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m3e_c00077{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mf0_c00077{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.m6_c00077{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.mc6_c00077{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m5a_c00077{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.md6_c00077{transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);}
.m27_c00077{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m79_c00077{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.me0_c00077{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m25_c00077{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m4f_c00077{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.mf2_c00077{transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);}
.m2_c00077{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m8e_c00077{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m50_c00077{transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);}
.m16_c00077{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mab_c00077{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m30_c00077{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m42_c00077{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.mc0_c00077{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mf3_c00077{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.mae_c00077{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.ma5_c00077{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.mbd_c00077{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m84_c00077{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mb5_c00077{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.me8_c00077{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m8a_c00077{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m8_c00077{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mfd_c00077{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m14_c00077{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.ma1_c00077{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m66_c00077{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mb3_c00077{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mad_c00077{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mf7_c00077{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m7f_c00077{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m4_c00077{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);}
.m2d_c00077{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m2e_c00077{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m6c_c00077{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mcf_c00077{transform:matrix(0.506471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506471,0.000000,0.000000,0.250000,0,0);}
.me9_c00077{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m41_c00077{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.mb8_c00077{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m73_c00077{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m97_c00077{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m8b_c00077{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.mb1_c00077{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m56_c00077{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mef_c00077{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m1b_c00077{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mc4_c00077{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);}
.m93_c00077{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.me6_c00077{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m60_c00077{transform:matrix(0.521800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521800,0.000000,0.000000,0.250000,0,0);}
.mdf_c00077{transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);}
.m81_c00077{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m57_c00077{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m68_c00077{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mba_c00077{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);}
.m51_c00077{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mde_c00077{transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);}
.mf4_c00077{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.mf_c00077{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m24_c00077{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mb0_c00077{transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);}
.m53_c00077{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m12_c00077{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m92_c00077{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.md0_c00077{transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);}
.m62_c00077{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m89_c00077{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mee_c00077{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m64_c00077{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m6d_c00077{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mb2_c00077{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m98_c00077{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m6e_c00077{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mb4_c00077{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m8f_c00077{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m6b_c00077{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.md3_c00077{transform:matrix(0.542353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542353,0.000000,0.000000,0.250000,0,0);}
.m5b_c00077{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m7_c00077{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mec_c00077{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m46_c00077{transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);}
.m5_c00077{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.md5_c00077{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m2a_c00077{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m3b_c00077{transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);}
.m74_c00077{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m8c_c00077{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m48_c00077{transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);}
.md7_c00077{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m77_c00077{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m4e_c00077{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m76_c00077{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m75_c00077{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m5e_c00077{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mca_c00077{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.mc9_c00077{transform:matrix(0.561765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561765,0.000000,0.000000,0.250000,0,0);}
.mcd_c00077{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.med_c00077{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.m7e_c00077{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m63_c00077{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.mf1_c00077{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);}
.m69_c00077{transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);}
.me_c00077{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m34_c00077{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.mf6_c00077{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.m1c_c00077{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.md1_c00077{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.md9_c00077{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.m7d_c00077{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m44_c00077{transform:matrix(0.578676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578676,0.000000,0.000000,0.250000,0,0);}
.mdd_c00077{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.me2_c00077{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);}
.m29_c00077{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m22_c00077{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m3d_c00077{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m72_c00077{transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);}
.m19_c00077{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.mea_c00077{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.mcc_c00077{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m4d_c00077{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m8d_c00077{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m7a_c00077{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m1_c00077{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m86_c00077{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mfc_c00077{transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);}
.m7b_c00077{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.md2_c00077{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.m45_c00077{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m13_c00077{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.me5_c00077{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);}
.mb6_c00077{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.mdb_c00077{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m10_c00077{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mc7_c00077{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.md4_c00077{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.maa_c00077{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.mce_c00077{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.maf_c00077{transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);}
.m9f_c00077{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.mf8_c00077{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.mc2_c00077{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);}
.ma3_c00077{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m49_c00077{transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);}
.mc1_c00077{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.mbc_c00077{transform:matrix(0.658824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.658824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.658824,0.000000,0.000000,0.250000,0,0);}
.mb_c00077{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m26_c00077{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m9_c00077{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.me7_c00077{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.ma2_c00077{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.mbf_c00077{transform:matrix(0.680147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680147,0.000000,0.000000,0.250000,0,0);}
.mcb_c00077{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mda_c00077{transform:matrix(0.683088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683088,0.000000,0.000000,0.250000,0,0);}
.m9c_c00077{transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);}
.me3_c00077{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m9d_c00077{transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);}
.m47_c00077{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.m6f_c00077{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m37_c00077{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m1a_c00077{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m96_c00077{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.ma0_c00077{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);}
.mfa_c00077{transform:matrix(0.711765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.711765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.711765,0.000000,0.000000,0.250000,0,0);}
.mac_c00077{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m70_c00077{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m85_c00077{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m15_c00077{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m83_c00077{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m67_c00077{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m31_c00077{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_c00077{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m95_c00077{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m2c_c00077{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.m87_c00077{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m94_c00077{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m1e_c00077{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m9b_c00077{transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);}
.mdc_c00077{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m17_c00077{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.m9e_c00077{transform:matrix(0.886765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.886765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.886765,0.000000,0.000000,0.250000,0,0);}
.m39_c00077{transform:matrix(1.040865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.040865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.040865,0.000000,0.000000,0.250000,0,0);}
.mfb_c00077{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.mbe_c00077{transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);}
.ma6_c00077{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m4c_c00077{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00077{vertical-align:0.000000px;}
.v1_c00077{vertical-align:7.680000px;}
.ls2_c00077{letter-spacing:0.000000px;}
.ls1_c00077{letter-spacing:8.817600px;}
.ls0_c00077{letter-spacing:11.817600px;}
.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;}
}
.ws1_c00077{word-spacing:-8.144007px;}
.ws0_c00077{word-spacing:-7.014128px;}
.ws2_c00077{word-spacing:-5.871000px;}
.ws3_c00077{word-spacing:-5.749019px;}
.ws4_c00077{word-spacing:0.000000px;}
.fc0_c00077{color:transparent;}
.fs8_c00077{font-size:3.420000px;}
.fs6_c00077{font-size:11.880000px;}
.fs9_c00077{font-size:13.620000px;}
.fs5_c00077{font-size:18.720000px;}
.fs1_c00077{font-size:20.400000px;}
.fs4_c00077{font-size:25.500000px;}
.fs2_c00077{font-size:28.920000px;}
.fs0_c00077{font-size:32.340000px;}
.fs3_c00077{font-size:35.700000px;}
.fs7_c00077{font-size:39.120000px;}
.y0_c00077{bottom:0.000000px;}
.y10d_c00077{bottom:233.325000px;}
.y10a_c00077{bottom:234.405000px;}
.y110_c00077{bottom:234.825000px;}
.y10c_c00077{bottom:235.470000px;}
.y10b_c00077{bottom:235.695000px;}
.y10e_c00077{bottom:236.550000px;}
.y10f_c00077{bottom:236.970000px;}
.y109_c00077{bottom:249.405000px;}
.y101_c00077{bottom:249.630000px;}
.y104_c00077{bottom:249.825000px;}
.y106_c00077{bottom:250.050000px;}
.y103_c00077{bottom:250.470000px;}
.y108_c00077{bottom:250.905000px;}
.y102_c00077{bottom:251.550000px;}
.y107_c00077{bottom:251.970000px;}
.y105_c00077{bottom:253.050000px;}
.yfa_c00077{bottom:262.905000px;}
.y100_c00077{bottom:263.325000px;}
.yfd_c00077{bottom:264.405000px;}
.yfb_c00077{bottom:265.050000px;}
.yff_c00077{bottom:265.470000px;}
.yfc_c00077{bottom:265.695000px;}
.yfe_c00077{bottom:266.550000px;}
.yf9_c00077{bottom:277.470000px;}
.yf6_c00077{bottom:278.325000px;}
.yf8_c00077{bottom:278.550000px;}
.yf4_c00077{bottom:279.405000px;}
.yf3_c00077{bottom:279.630000px;}
.yf5_c00077{bottom:280.470000px;}
.yf7_c00077{bottom:281.550000px;}
.yeb_c00077{bottom:290.970000px;}
.yee_c00077{bottom:293.325000px;}
.yef_c00077{bottom:293.550000px;}
.yec_c00077{bottom:293.970000px;}
.yf1_c00077{bottom:294.405000px;}
.yf0_c00077{bottom:294.825000px;}
.yed_c00077{bottom:295.470000px;}
.yf2_c00077{bottom:296.970000px;}
.yea_c00077{bottom:307.470000px;}
.ye1_c00077{bottom:308.130000px;}
.ye4_c00077{bottom:308.325000px;}
.ye8_c00077{bottom:308.970000px;}
.ye2_c00077{bottom:309.405000px;}
.ye9_c00077{bottom:310.050000px;}
.ye3_c00077{bottom:310.470000px;}
.ye6_c00077{bottom:310.905000px;}
.ye5_c00077{bottom:311.550000px;}
.ye7_c00077{bottom:311.970000px;}
.ydb_c00077{bottom:322.050000px;}
.ydc_c00077{bottom:323.325000px;}
.ydf_c00077{bottom:324.405000px;}
.ydd_c00077{bottom:325.470000px;}
.yde_c00077{bottom:325.695000px;}
.ye0_c00077{bottom:326.550000px;}
.yd9_c00077{bottom:338.325000px;}
.yd7_c00077{bottom:338.550000px;}
.yd5_c00077{bottom:338.970000px;}
.yda_c00077{bottom:339.405000px;}
.yd6_c00077{bottom:340.470000px;}
.yd8_c00077{bottom:341.550000px;}
.yd4_c00077{bottom:351.825000px;}
.yd3_c00077{bottom:352.905000px;}
.yd2_c00077{bottom:354.405000px;}
.ycf_c00077{bottom:355.050000px;}
.yd0_c00077{bottom:355.470000px;}
.yd1_c00077{bottom:356.550000px;}
.yc8_c00077{bottom:366.825000px;}
.ycc_c00077{bottom:368.325000px;}
.yc9_c00077{bottom:368.970000px;}
.ycd_c00077{bottom:369.405000px;}
.yca_c00077{bottom:370.470000px;}
.ycb_c00077{bottom:370.695000px;}
.yce_c00077{bottom:371.550000px;}
.yc2_c00077{bottom:380.970000px;}
.yc7_c00077{bottom:381.825000px;}
.yc3_c00077{bottom:382.905000px;}
.yc6_c00077{bottom:383.970000px;}
.yc5_c00077{bottom:384.405000px;}
.yc4_c00077{bottom:385.470000px;}
.yc1_c00077{bottom:396.825000px;}
.yc0_c00077{bottom:410.970000px;}
.ybf_c00077{bottom:412.905000px;}
.ybb_c00077{bottom:413.550000px;}
.yba_c00077{bottom:413.970000px;}
.ybd_c00077{bottom:414.405000px;}
.yb9_c00077{bottom:415.050000px;}
.ybc_c00077{bottom:415.470000px;}
.ybe_c00077{bottom:415.695000px;}
.yb6_c00077{bottom:425.970000px;}
.yb8_c00077{bottom:428.325000px;}
.yb7_c00077{bottom:428.970000px;}
.yb5_c00077{bottom:439.470000px;}
.yab_c00077{bottom:440.970000px;}
.yb4_c00077{bottom:441.405000px;}
.yae_c00077{bottom:442.470000px;}
.yb2_c00077{bottom:442.905000px;}
.yb3_c00077{bottom:443.130000px;}
.yac_c00077{bottom:443.970000px;}
.yb0_c00077{bottom:444.405000px;}
.yb1_c00077{bottom:444.630000px;}
.yaf_c00077{bottom:445.050000px;}
.yad_c00077{bottom:445.470000px;}
.ya7_c00077{bottom:457.050000px;}
.ya8_c00077{bottom:457.905000px;}
.yaa_c00077{bottom:458.970000px;}
.ya9_c00077{bottom:460.050000px;}
.ya6_c00077{bottom:470.325000px;}
.ya1_c00077{bottom:472.050000px;}
.ya2_c00077{bottom:472.905000px;}
.ya4_c00077{bottom:473.130000px;}
.ya3_c00077{bottom:473.970000px;}
.ya5_c00077{bottom:475.050000px;}
.y9c_c00077{bottom:485.550000px;}
.y9e_c00077{bottom:486.405000px;}
.y9d_c00077{bottom:487.470000px;}
.y9f_c00077{bottom:487.905000px;}
.ya0_c00077{bottom:490.050000px;}
.y9b_c00077{bottom:500.325000px;}
.y93_c00077{bottom:500.550000px;}
.y94_c00077{bottom:501.825000px;}
.y9a_c00077{bottom:502.470000px;}
.y96_c00077{bottom:502.905000px;}
.y98_c00077{bottom:503.130000px;}
.y99_c00077{bottom:503.550000px;}
.y97_c00077{bottom:504.195000px;}
.y95_c00077{bottom:505.050000px;}
.y92_c00077{bottom:515.325000px;}
.y8d_c00077{bottom:515.970000px;}
.y8c_c00077{bottom:516.405000px;}
.y8a_c00077{bottom:516.630000px;}
.y8f_c00077{bottom:517.050000px;}
.y8b_c00077{bottom:517.470000px;}
.y90_c00077{bottom:517.905000px;}
.y8e_c00077{bottom:518.550000px;}
.y91_c00077{bottom:518.970000px;}
.y85_c00077{bottom:530.325000px;}
.y88_c00077{bottom:531.405000px;}
.y84_c00077{bottom:531.630000px;}
.y89_c00077{bottom:532.470000px;}
.y87_c00077{bottom:533.130000px;}
.y86_c00077{bottom:533.550000px;}
.y83_c00077{bottom:546.405000px;}
.y82_c00077{bottom:548.550000px;}
.y81_c00077{bottom:560.325000px;}
.y80_c00077{bottom:561.195000px;}
.y7e_c00077{bottom:561.405000px;}
.y7c_c00077{bottom:561.630000px;}
.y7f_c00077{bottom:562.050000px;}
.y7d_c00077{bottom:563.550000px;}
.y7a_c00077{bottom:587.745000px;}
.y79_c00077{bottom:588.405000px;}
.y7b_c00077{bottom:589.905000px;}
.y78_c00077{bottom:607.245000px;}
.y76_c00077{bottom:608.130000px;}
.y77_c00077{bottom:609.405000px;}
.y74_c00077{bottom:626.745000px;}
.y75_c00077{bottom:627.630000px;}
.y73_c00077{bottom:628.905000px;}
.y71_c00077{bottom:646.245000px;}
.y72_c00077{bottom:648.405000px;}
.y6e_c00077{bottom:665.745000px;}
.y6f_c00077{bottom:666.630000px;}
.y70_c00077{bottom:667.470000px;}
.y6c_c00077{bottom:667.905000px;}
.y6d_c00077{bottom:667.920000px;}
.y68_c00077{bottom:684.405000px;}
.y66_c00077{bottom:685.245000px;}
.y6a_c00077{bottom:685.470000px;}
.y67_c00077{bottom:686.325000px;}
.y69_c00077{bottom:686.745000px;}
.y65_c00077{bottom:687.405000px;}
.y6b_c00077{bottom:688.905000px;}
.y64_c00077{bottom:706.905000px;}
.y61_c00077{bottom:707.325000px;}
.y63_c00077{bottom:707.970000px;}
.y62_c00077{bottom:708.405000px;}
.y5e_c00077{bottom:725.745000px;}
.y5c_c00077{bottom:726.405000px;}
.y60_c00077{bottom:726.630000px;}
.y5f_c00077{bottom:727.470000px;}
.y5d_c00077{bottom:727.905000px;}
.y5b_c00077{bottom:742.905000px;}
.y59_c00077{bottom:745.245000px;}
.y5a_c00077{bottom:746.130000px;}
.y57_c00077{bottom:747.405000px;}
.y58_c00077{bottom:747.420000px;}
.y55_c00077{bottom:764.745000px;}
.y53_c00077{bottom:765.630000px;}
.y56_c00077{bottom:765.825000px;}
.y52_c00077{bottom:766.905000px;}
.y54_c00077{bottom:766.920000px;}
.y50_c00077{bottom:783.405000px;}
.y4e_c00077{bottom:784.245000px;}
.y51_c00077{bottom:785.325000px;}
.y4f_c00077{bottom:786.420000px;}
.y48_c00077{bottom:803.745000px;}
.y49_c00077{bottom:805.245000px;}
.y4b_c00077{bottom:805.905000px;}
.y4c_c00077{bottom:806.325000px;}
.y4d_c00077{bottom:807.405000px;}
.y4a_c00077{bottom:807.420000px;}
.y42_c00077{bottom:827.325000px;}
.y47_c00077{bottom:827.550000px;}
.y44_c00077{bottom:828.405000px;}
.y46_c00077{bottom:828.630000px;}
.y43_c00077{bottom:829.470000px;}
.y45_c00077{bottom:830.550000px;}
.y40_c00077{bottom:845.970000px;}
.y41_c00077{bottom:846.825000px;}
.y3f_c00077{bottom:847.905000px;}
.y3b_c00077{bottom:861.825000px;}
.y3a_c00077{bottom:862.050000px;}
.y39_c00077{bottom:862.905000px;}
.y3d_c00077{bottom:863.130000px;}
.y3e_c00077{bottom:863.550000px;}
.y3c_c00077{bottom:865.050000px;}
.y37_c00077{bottom:887.745000px;}
.y38_c00077{bottom:889.050000px;}
.y35_c00077{bottom:922.245000px;}
.y36_c00077{bottom:924.405000px;}
.y34_c00077{bottom:940.905000px;}
.y30_c00077{bottom:941.745000px;}
.y32_c00077{bottom:941.970000px;}
.y2f_c00077{bottom:943.905000px;}
.y33_c00077{bottom:944.130000px;}
.y31_c00077{bottom:944.970000px;}
.y2e_c00077{bottom:958.275000px;}
.y2a_c00077{bottom:960.180000px;}
.y2b_c00077{bottom:960.405000px;}
.y25_c00077{bottom:961.245000px;}
.y29_c00077{bottom:961.905000px;}
.y2c_c00077{bottom:962.130000px;}
.y26_c00077{bottom:963.405000px;}
.y27_c00077{bottom:963.630000px;}
.y28_c00077{bottom:964.470000px;}
.y2d_c00077{bottom:966.630000px;}
.y1f_c00077{bottom:980.745000px;}
.y23_c00077{bottom:980.970000px;}
.y24_c00077{bottom:981.825000px;}
.y21_c00077{bottom:982.245000px;}
.y1e_c00077{bottom:982.905000px;}
.y22_c00077{bottom:983.970000px;}
.y20_c00077{bottom:984.405000px;}
.y1d_c00077{bottom:998.970000px;}
.y1b_c00077{bottom:1000.245000px;}
.y1c_c00077{bottom:1001.745000px;}
.y18_c00077{bottom:1018.905000px;}
.y1a_c00077{bottom:1021.245000px;}
.y15_c00077{bottom:1021.905000px;}
.y16_c00077{bottom:1022.130000px;}
.y19_c00077{bottom:1022.970000px;}
.y17_c00077{bottom:1023.405000px;}
.y13_c00077{bottom:1037.775000px;}
.y14_c00077{bottom:1037.970000px;}
.yc_c00077{bottom:1039.245000px;}
.yd_c00077{bottom:1039.470000px;}
.y10_c00077{bottom:1040.325000px;}
.ye_c00077{bottom:1040.745000px;}
.ya_c00077{bottom:1041.405000px;}
.y11_c00077{bottom:1041.630000px;}
.yb_c00077{bottom:1042.470000px;}
.yf_c00077{bottom:1042.905000px;}
.y12_c00077{bottom:1044.630000px;}
.y4_c00077{bottom:1058.745000px;}
.y9_c00077{bottom:1058.970000px;}
.y7_c00077{bottom:1059.405000px;}
.y6_c00077{bottom:1060.245000px;}
.y3_c00077{bottom:1060.905000px;}
.y8_c00077{bottom:1061.970000px;}
.y5_c00077{bottom:1062.405000px;}
.y1_c00077{bottom:1098.825000px;}
.y2_c00077{bottom:1099.050000px;}
.h9_c00077{height:4.206533px;}
.h7_c00077{height:14.612168px;}
.ha_c00077{height:16.752334px;}
.h6_c00077{height:23.025234px;}
.h2_c00077{height:25.091602px;}
.h5_c00077{height:31.364502px;}
.h3_c00077{height:35.571035px;}
.hb_c00077{height:39.044502px;}
.h1_c00077{height:39.777568px;}
.h4_c00077{height:43.910303px;}
.h8_c00077{height:48.116836px;}
.h0_c00077{height:1335.000000px;}
.w0_c00077{width:880.500000px;}
.x0_c00077{left:0.000000px;}
.x1_c00077{left:150.000000px;}
.x3_c00077{left:152.580000px;}
.x52_c00077{left:154.500000px;}
.xaf_c00077{left:156.000000px;}
.xf6_c00077{left:157.920000px;}
.x2f_c00077{left:160.080000px;}
.xb9_c00077{left:166.500000px;}
.xcb_c00077{left:168.000000px;}
.x5a_c00077{left:169.500000px;}
.x67_c00077{left:171.000000px;}
.x9a_c00077{left:174.420000px;}
.x23_c00077{left:183.000000px;}
.x4_c00077{left:184.080000px;}
.xa8_c00077{left:187.080000px;}
.xb0_c00077{left:190.500000px;}
.xef_c00077{left:192.000000px;}
.xa6_c00077{left:193.920000px;}
.xf8_c00077{left:195.000000px;}
.xa2_c00077{left:200.580000px;}
.x88_c00077{left:202.080000px;}
.x96_c00077{left:208.080000px;}
.x62_c00077{left:211.920000px;}
.xde_c00077{left:214.500000px;}
.xc4_c00077{left:217.500000px;}
.xb1_c00077{left:219.420000px;}
.x53_c00077{left:220.920000px;}
.x12_c00077{left:222.420000px;}
.x42_c00077{left:223.500000px;}
.xe0_c00077{left:225.420000px;}
.xe5_c00077{left:226.500000px;}
.xc6_c00077{left:228.000000px;}
.x24_c00077{left:229.500000px;}
.xd9_c00077{left:232.500000px;}
.x5b_c00077{left:235.500000px;}
.x82_c00077{left:237.000000px;}
.x5_c00077{left:238.080000px;}
.x30_c00077{left:241.080000px;}
.x13_c00077{left:243.000000px;}
.xed_c00077{left:244.500000px;}
.x43_c00077{left:250.500000px;}
.xb3_c00077{left:252.000000px;}
.x6f_c00077{left:253.500000px;}
.x6_c00077{left:255.420000px;}
.xfc_c00077{left:257.580000px;}
.xb2_c00077{left:261.000000px;}
.x68_c00077{left:262.500000px;}
.x14_c00077{left:263.775000px;}
.x97_c00077{left:267.000000px;}
.x5c_c00077{left:270.000000px;}
.x44_c00077{left:271.080000px;}
.x7a_c00077{left:274.920000px;}
.x25_c00077{left:276.000000px;}
.x8e_c00077{left:277.080000px;}
.xe6_c00077{left:282.420000px;}
.x38_c00077{left:283.920000px;}
.x75_c00077{left:285.000000px;}
.xcf_c00077{left:286.500000px;}
.xa7_c00077{left:287.580000px;}
.xda_c00077{left:289.500000px;}
.xa9_c00077{left:291.000000px;}
.xe7_c00077{left:292.500000px;}
.x63_c00077{left:294.000000px;}
.x15_c00077{left:295.500000px;}
.x45_c00077{left:297.000000px;}
.xba_c00077{left:301.920000px;}
.xf0_c00077{left:303.420000px;}
.x39_c00077{left:304.500000px;}
.x70_c00077{left:306.000000px;}
.xcc_c00077{left:307.080000px;}
.xf9_c00077{left:309.000000px;}
.x4f_c00077{left:311.580000px;}
.x7_c00077{left:313.920000px;}
.xf1_c00077{left:315.000000px;}
.xe1_c00077{left:316.500000px;}
.x9b_c00077{left:319.080000px;}
.x76_c00077{left:321.000000px;}
.xb4_c00077{left:322.080000px;}
.x26_c00077{left:325.920000px;}
.xdf_c00077{left:327.000000px;}
.x71_c00077{left:328.080000px;}
.x16_c00077{left:331.920000px;}
.xee_c00077{left:333.420000px;}
.x46_c00077{left:334.500000px;}
.x7b_c00077{left:335.580000px;}
.xc5_c00077{left:337.500000px;}
.x83_c00077{left:340.920000px;}
.xfa_c00077{left:342.000000px;}
.xf7_c00077{left:343.080000px;}
.xd0_c00077{left:345.000000px;}
.xaa_c00077{left:346.500000px;}
.x3a_c00077{left:348.000000px;}
.x8f_c00077{left:351.000000px;}
.x69_c00077{left:352.920000px;}
.xfd_c00077{left:356.580000px;}
.x72_c00077{left:358.080000px;}
.xe8_c00077{left:359.580000px;}
.xab_c00077{left:362.580000px;}
.x27_c00077{left:364.080000px;}
.xbf_c00077{left:366.000000px;}
.x9c_c00077{left:367.500000px;}
.x64_c00077{left:369.420000px;}
.x8_c00077{left:370.920000px;}
.x90_c00077{left:373.080000px;}
.x28_c00077{left:376.500000px;}
.x3b_c00077{left:379.080000px;}
.x17_c00077{left:380.580000px;}
.xc7_c00077{left:382.500000px;}
.x5d_c00077{left:384.000000px;}
.x31_c00077{left:385.920000px;}
.xc0_c00077{left:388.500000px;}
.xa3_c00077{left:389.580000px;}
.x7c_c00077{left:391.500000px;}
.x6a_c00077{left:394.080000px;}
.x29_c00077{left:396.000000px;}
.x2_c00077{left:399.000000px;}
.x18_c00077{left:400.920000px;}
.xd1_c00077{left:402.000000px;}
.xe9_c00077{left:403.500000px;}
.x54_c00077{left:404.580000px;}
.x9_c00077{left:408.000000px;}
.x9d_c00077{left:409.500000px;}
.x98_c00077{left:414.000000px;}
.x5e_c00077{left:417.000000px;}
.x2a_c00077{left:421.500000px;}
.xe2_c00077{left:423.420000px;}
.x77_c00077{left:424.500000px;}
.x58_c00077{left:426.420000px;}
.x19_c00077{left:427.500000px;}
.xa_c00077{left:429.000000px;}
.xcd_c00077{left:430.920000px;}
.x6b_c00077{left:432.000000px;}
.x84_c00077{left:435.000000px;}
.xf4_c00077{left:436.080000px;}
.xb5_c00077{left:439.920000px;}
.xc8_c00077{left:442.080000px;}
.x59_c00077{left:443.580000px;}
.x50_c00077{left:445.500000px;}
.xb_c00077{left:447.000000px;}
.xe3_c00077{left:453.000000px;}
.x7d_c00077{left:454.500000px;}
.xbb_c00077{left:456.000000px;}
.xce_c00077{left:457.500000px;}
.xd2_c00077{left:458.580000px;}
.x3c_c00077{left:462.000000px;}
.x32_c00077{left:463.500000px;}
.x65_c00077{left:465.000000px;}
.xea_c00077{left:466.500000px;}
.x4c_c00077{left:467.580000px;}
.x1a_c00077{left:472.500000px;}
.x7e_c00077{left:473.580000px;}
.xdb_c00077{left:476.580000px;}
.xc_c00077{left:478.500000px;}
.x5f_c00077{left:480.420000px;}
.x47_c00077{left:481.920000px;}
.xbc_c00077{left:484.920000px;}
.x33_c00077{left:486.000000px;}
.xeb_c00077{left:487.080000px;}
.x2b_c00077{left:490.080000px;}
.xb6_c00077{left:493.500000px;}
.x60_c00077{left:496.920000px;}
.x55_c00077{left:499.080000px;}
.x3d_c00077{left:501.420000px;}
.x89_c00077{left:504.000000px;}
.xf5_c00077{left:505.500000px;}
.xc1_c00077{left:507.420000px;}
.xf2_c00077{left:508.500000px;}
.x66_c00077{left:511.920000px;}
.xd_c00077{left:516.420000px;}
.xac_c00077{left:518.580000px;}
.x48_c00077{left:520.080000px;}
.x34_c00077{left:522.000000px;}
.x61_c00077{left:525.000000px;}
.xbd_c00077{left:526.500000px;}
.x91_c00077{left:529.500000px;}
.x78_c00077{left:534.420000px;}
.x51_c00077{left:538.275000px;}
.x6c_c00077{left:540.000000px;}
.xd3_c00077{left:541.500000px;}
.x8a_c00077{left:542.580000px;}
.x4d_c00077{left:546.000000px;}
.x49_c00077{left:547.500000px;}
.x92_c00077{left:549.000000px;}
.x1b_c00077{left:550.920000px;}
.xd7_c00077{left:553.500000px;}
.xd4_c00077{left:555.000000px;}
.x73_c00077{left:556.080000px;}
.x8b_c00077{left:557.580000px;}
.xec_c00077{left:559.500000px;}
.xbe_c00077{left:560.580000px;}
.x35_c00077{left:562.920000px;}
.xc9_c00077{left:565.500000px;}
.x2c_c00077{left:566.580000px;}
.x4a_c00077{left:568.080000px;}
.x3e_c00077{left:570.000000px;}
.xf3_c00077{left:571.500000px;}
.xe_c00077{left:574.920000px;}
.x1c_c00077{left:576.000000px;}
.x1d_c00077{left:580.080000px;}
.xca_c00077{left:583.500000px;}
.x74_c00077{left:585.645000px;}
.x7f_c00077{left:588.000000px;}
.xa4_c00077{left:589.080000px;}
.x1e_c00077{left:591.420000px;}
.x4b_c00077{left:595.500000px;}
.xd5_c00077{left:598.500000px;}
.x93_c00077{left:603.420000px;}
.x9e_c00077{left:604.500000px;}
.x85_c00077{left:606.645000px;}
.xb7_c00077{left:610.920000px;}
.x3f_c00077{left:616.920000px;}
.xad_c00077{left:620.580000px;}
.xf_c00077{left:622.080000px;}
.x36_c00077{left:624.420000px;}
.x9f_c00077{left:627.000000px;}
.x1f_c00077{left:628.500000px;}
.x6d_c00077{left:631.275000px;}
.x94_c00077{left:633.000000px;}
.x80_c00077{left:634.500000px;}
.xc2_c00077{left:635.580000px;}
.x10_c00077{left:640.500000px;}
.x86_c00077{left:647.580000px;}
.x56_c00077{left:649.920000px;}
.x81_c00077{left:651.000000px;}
.xdc_c00077{left:652.080000px;}
.x20_c00077{left:654.000000px;}
.xc3_c00077{left:655.500000px;}
.x8c_c00077{left:657.000000px;}
.xd6_c00077{left:661.500000px;}
.xa0_c00077{left:663.000000px;}
.xa5_c00077{left:664.500000px;}
.x4e_c00077{left:667.080000px;}
.x6e_c00077{left:671.580000px;}
.x21_c00077{left:673.500000px;}
.x95_c00077{left:675.420000px;}
.x11_c00077{left:676.920000px;}
.x57_c00077{left:678.000000px;}
.xe4_c00077{left:681.000000px;}
.x87_c00077{left:682.080000px;}
.xb8_c00077{left:683.580000px;}
.xae_c00077{left:685.920000px;}
.x99_c00077{left:690.000000px;}
.x8d_c00077{left:691.500000px;}
.xdd_c00077{left:694.500000px;}
.x2d_c00077{left:695.580000px;}
.x37_c00077{left:697.500000px;}
.x22_c00077{left:699.000000px;}
.x79_c00077{left:700.920000px;}
.xa1_c00077{left:711.420000px;}
.xd8_c00077{left:712.920000px;}
.x2e_c00077{left:714.000000px;}
.x40_c00077{left:720.000000px;}
.x41_c00077{left:725.580000px;}
.xfb_c00077{left:729.000000px;}
@media print{
.v0_c00077{vertical-align:0.000000pt;}
.v1_c00077{vertical-align:6.826667pt;}
.ls2_c00077{letter-spacing:0.000000pt;}
.ls1_c00077{letter-spacing:7.837867pt;}
.ls0_c00077{letter-spacing:10.504533pt;}
.ws1_c00077{word-spacing:-7.239117pt;}
.ws0_c00077{word-spacing:-6.234780pt;}
.ws2_c00077{word-spacing:-5.218667pt;}
.ws3_c00077{word-spacing:-5.110239pt;}
.ws4_c00077{word-spacing:0.000000pt;}
.fs8_c00077{font-size:3.040000pt;}
.fs6_c00077{font-size:10.560000pt;}
.fs9_c00077{font-size:12.106667pt;}
.fs5_c00077{font-size:16.640000pt;}
.fs1_c00077{font-size:18.133333pt;}
.fs4_c00077{font-size:22.666667pt;}
.fs2_c00077{font-size:25.706667pt;}
.fs0_c00077{font-size:28.746667pt;}
.fs3_c00077{font-size:31.733333pt;}
.fs7_c00077{font-size:34.773333pt;}
.y0_c00077{bottom:0.000000pt;}
.y10d_c00077{bottom:207.400000pt;}
.y10a_c00077{bottom:208.360000pt;}
.y110_c00077{bottom:208.733333pt;}
.y10c_c00077{bottom:209.306667pt;}
.y10b_c00077{bottom:209.506667pt;}
.y10e_c00077{bottom:210.266667pt;}
.y10f_c00077{bottom:210.640000pt;}
.y109_c00077{bottom:221.693333pt;}
.y101_c00077{bottom:221.893333pt;}
.y104_c00077{bottom:222.066667pt;}
.y106_c00077{bottom:222.266667pt;}
.y103_c00077{bottom:222.640000pt;}
.y108_c00077{bottom:223.026667pt;}
.y102_c00077{bottom:223.600000pt;}
.y107_c00077{bottom:223.973333pt;}
.y105_c00077{bottom:224.933333pt;}
.yfa_c00077{bottom:233.693333pt;}
.y100_c00077{bottom:234.066667pt;}
.yfd_c00077{bottom:235.026667pt;}
.yfb_c00077{bottom:235.600000pt;}
.yff_c00077{bottom:235.973333pt;}
.yfc_c00077{bottom:236.173333pt;}
.yfe_c00077{bottom:236.933333pt;}
.yf9_c00077{bottom:246.640000pt;}
.yf6_c00077{bottom:247.400000pt;}
.yf8_c00077{bottom:247.600000pt;}
.yf4_c00077{bottom:248.360000pt;}
.yf3_c00077{bottom:248.560000pt;}
.yf5_c00077{bottom:249.306667pt;}
.yf7_c00077{bottom:250.266667pt;}
.yeb_c00077{bottom:258.640000pt;}
.yee_c00077{bottom:260.733333pt;}
.yef_c00077{bottom:260.933333pt;}
.yec_c00077{bottom:261.306667pt;}
.yf1_c00077{bottom:261.693333pt;}
.yf0_c00077{bottom:262.066667pt;}
.yed_c00077{bottom:262.640000pt;}
.yf2_c00077{bottom:263.973333pt;}
.yea_c00077{bottom:273.306667pt;}
.ye1_c00077{bottom:273.893333pt;}
.ye4_c00077{bottom:274.066667pt;}
.ye8_c00077{bottom:274.640000pt;}
.ye2_c00077{bottom:275.026667pt;}
.ye9_c00077{bottom:275.600000pt;}
.ye3_c00077{bottom:275.973333pt;}
.ye6_c00077{bottom:276.360000pt;}
.ye5_c00077{bottom:276.933333pt;}
.ye7_c00077{bottom:277.306667pt;}
.ydb_c00077{bottom:286.266667pt;}
.ydc_c00077{bottom:287.400000pt;}
.ydf_c00077{bottom:288.360000pt;}
.ydd_c00077{bottom:289.306667pt;}
.yde_c00077{bottom:289.506667pt;}
.ye0_c00077{bottom:290.266667pt;}
.yd9_c00077{bottom:300.733333pt;}
.yd7_c00077{bottom:300.933333pt;}
.yd5_c00077{bottom:301.306667pt;}
.yda_c00077{bottom:301.693333pt;}
.yd6_c00077{bottom:302.640000pt;}
.yd8_c00077{bottom:303.600000pt;}
.yd4_c00077{bottom:312.733333pt;}
.yd3_c00077{bottom:313.693333pt;}
.yd2_c00077{bottom:315.026667pt;}
.ycf_c00077{bottom:315.600000pt;}
.yd0_c00077{bottom:315.973333pt;}
.yd1_c00077{bottom:316.933333pt;}
.yc8_c00077{bottom:326.066667pt;}
.ycc_c00077{bottom:327.400000pt;}
.yc9_c00077{bottom:327.973333pt;}
.ycd_c00077{bottom:328.360000pt;}
.yca_c00077{bottom:329.306667pt;}
.ycb_c00077{bottom:329.506667pt;}
.yce_c00077{bottom:330.266667pt;}
.yc2_c00077{bottom:338.640000pt;}
.yc7_c00077{bottom:339.400000pt;}
.yc3_c00077{bottom:340.360000pt;}
.yc6_c00077{bottom:341.306667pt;}
.yc5_c00077{bottom:341.693333pt;}
.yc4_c00077{bottom:342.640000pt;}
.yc1_c00077{bottom:352.733333pt;}
.yc0_c00077{bottom:365.306667pt;}
.ybf_c00077{bottom:367.026667pt;}
.ybb_c00077{bottom:367.600000pt;}
.yba_c00077{bottom:367.973333pt;}
.ybd_c00077{bottom:368.360000pt;}
.yb9_c00077{bottom:368.933333pt;}
.ybc_c00077{bottom:369.306667pt;}
.ybe_c00077{bottom:369.506667pt;}
.yb6_c00077{bottom:378.640000pt;}
.yb8_c00077{bottom:380.733333pt;}
.yb7_c00077{bottom:381.306667pt;}
.yb5_c00077{bottom:390.640000pt;}
.yab_c00077{bottom:391.973333pt;}
.yb4_c00077{bottom:392.360000pt;}
.yae_c00077{bottom:393.306667pt;}
.yb2_c00077{bottom:393.693333pt;}
.yb3_c00077{bottom:393.893333pt;}
.yac_c00077{bottom:394.640000pt;}
.yb0_c00077{bottom:395.026667pt;}
.yb1_c00077{bottom:395.226667pt;}
.yaf_c00077{bottom:395.600000pt;}
.yad_c00077{bottom:395.973333pt;}
.ya7_c00077{bottom:406.266667pt;}
.ya8_c00077{bottom:407.026667pt;}
.yaa_c00077{bottom:407.973333pt;}
.ya9_c00077{bottom:408.933333pt;}
.ya6_c00077{bottom:418.066667pt;}
.ya1_c00077{bottom:419.600000pt;}
.ya2_c00077{bottom:420.360000pt;}
.ya4_c00077{bottom:420.560000pt;}
.ya3_c00077{bottom:421.306667pt;}
.ya5_c00077{bottom:422.266667pt;}
.y9c_c00077{bottom:431.600000pt;}
.y9e_c00077{bottom:432.360000pt;}
.y9d_c00077{bottom:433.306667pt;}
.y9f_c00077{bottom:433.693333pt;}
.ya0_c00077{bottom:435.600000pt;}
.y9b_c00077{bottom:444.733333pt;}
.y93_c00077{bottom:444.933333pt;}
.y94_c00077{bottom:446.066667pt;}
.y9a_c00077{bottom:446.640000pt;}
.y96_c00077{bottom:447.026667pt;}
.y98_c00077{bottom:447.226667pt;}
.y99_c00077{bottom:447.600000pt;}
.y97_c00077{bottom:448.173333pt;}
.y95_c00077{bottom:448.933333pt;}
.y92_c00077{bottom:458.066667pt;}
.y8d_c00077{bottom:458.640000pt;}
.y8c_c00077{bottom:459.026667pt;}
.y8a_c00077{bottom:459.226667pt;}
.y8f_c00077{bottom:459.600000pt;}
.y8b_c00077{bottom:459.973333pt;}
.y90_c00077{bottom:460.360000pt;}
.y8e_c00077{bottom:460.933333pt;}
.y91_c00077{bottom:461.306667pt;}
.y85_c00077{bottom:471.400000pt;}
.y88_c00077{bottom:472.360000pt;}
.y84_c00077{bottom:472.560000pt;}
.y89_c00077{bottom:473.306667pt;}
.y87_c00077{bottom:473.893333pt;}
.y86_c00077{bottom:474.266667pt;}
.y83_c00077{bottom:485.693333pt;}
.y82_c00077{bottom:487.600000pt;}
.y81_c00077{bottom:498.066667pt;}
.y80_c00077{bottom:498.840000pt;}
.y7e_c00077{bottom:499.026667pt;}
.y7c_c00077{bottom:499.226667pt;}
.y7f_c00077{bottom:499.600000pt;}
.y7d_c00077{bottom:500.933333pt;}
.y7a_c00077{bottom:522.440000pt;}
.y79_c00077{bottom:523.026667pt;}
.y7b_c00077{bottom:524.360000pt;}
.y78_c00077{bottom:539.773333pt;}
.y76_c00077{bottom:540.560000pt;}
.y77_c00077{bottom:541.693333pt;}
.y74_c00077{bottom:557.106667pt;}
.y75_c00077{bottom:557.893333pt;}
.y73_c00077{bottom:559.026667pt;}
.y71_c00077{bottom:574.440000pt;}
.y72_c00077{bottom:576.360000pt;}
.y6e_c00077{bottom:591.773333pt;}
.y6f_c00077{bottom:592.560000pt;}
.y70_c00077{bottom:593.306667pt;}
.y6c_c00077{bottom:593.693333pt;}
.y6d_c00077{bottom:593.706667pt;}
.y68_c00077{bottom:608.360000pt;}
.y66_c00077{bottom:609.106667pt;}
.y6a_c00077{bottom:609.306667pt;}
.y67_c00077{bottom:610.066667pt;}
.y69_c00077{bottom:610.440000pt;}
.y65_c00077{bottom:611.026667pt;}
.y6b_c00077{bottom:612.360000pt;}
.y64_c00077{bottom:628.360000pt;}
.y61_c00077{bottom:628.733333pt;}
.y63_c00077{bottom:629.306667pt;}
.y62_c00077{bottom:629.693333pt;}
.y5e_c00077{bottom:645.106667pt;}
.y5c_c00077{bottom:645.693333pt;}
.y60_c00077{bottom:645.893333pt;}
.y5f_c00077{bottom:646.640000pt;}
.y5d_c00077{bottom:647.026667pt;}
.y5b_c00077{bottom:660.360000pt;}
.y59_c00077{bottom:662.440000pt;}
.y5a_c00077{bottom:663.226667pt;}
.y57_c00077{bottom:664.360000pt;}
.y58_c00077{bottom:664.373333pt;}
.y55_c00077{bottom:679.773333pt;}
.y53_c00077{bottom:680.560000pt;}
.y56_c00077{bottom:680.733333pt;}
.y52_c00077{bottom:681.693333pt;}
.y54_c00077{bottom:681.706667pt;}
.y50_c00077{bottom:696.360000pt;}
.y4e_c00077{bottom:697.106667pt;}
.y51_c00077{bottom:698.066667pt;}
.y4f_c00077{bottom:699.040000pt;}
.y48_c00077{bottom:714.440000pt;}
.y49_c00077{bottom:715.773333pt;}
.y4b_c00077{bottom:716.360000pt;}
.y4c_c00077{bottom:716.733333pt;}
.y4d_c00077{bottom:717.693333pt;}
.y4a_c00077{bottom:717.706667pt;}
.y42_c00077{bottom:735.400000pt;}
.y47_c00077{bottom:735.600000pt;}
.y44_c00077{bottom:736.360000pt;}
.y46_c00077{bottom:736.560000pt;}
.y43_c00077{bottom:737.306667pt;}
.y45_c00077{bottom:738.266667pt;}
.y40_c00077{bottom:751.973333pt;}
.y41_c00077{bottom:752.733333pt;}
.y3f_c00077{bottom:753.693333pt;}
.y3b_c00077{bottom:766.066667pt;}
.y3a_c00077{bottom:766.266667pt;}
.y39_c00077{bottom:767.026667pt;}
.y3d_c00077{bottom:767.226667pt;}
.y3e_c00077{bottom:767.600000pt;}
.y3c_c00077{bottom:768.933333pt;}
.y37_c00077{bottom:789.106667pt;}
.y38_c00077{bottom:790.266667pt;}
.y35_c00077{bottom:819.773333pt;}
.y36_c00077{bottom:821.693333pt;}
.y34_c00077{bottom:836.360000pt;}
.y30_c00077{bottom:837.106667pt;}
.y32_c00077{bottom:837.306667pt;}
.y2f_c00077{bottom:839.026667pt;}
.y33_c00077{bottom:839.226667pt;}
.y31_c00077{bottom:839.973333pt;}
.y2e_c00077{bottom:851.800000pt;}
.y2a_c00077{bottom:853.493333pt;}
.y2b_c00077{bottom:853.693333pt;}
.y25_c00077{bottom:854.440000pt;}
.y29_c00077{bottom:855.026667pt;}
.y2c_c00077{bottom:855.226667pt;}
.y26_c00077{bottom:856.360000pt;}
.y27_c00077{bottom:856.560000pt;}
.y28_c00077{bottom:857.306667pt;}
.y2d_c00077{bottom:859.226667pt;}
.y1f_c00077{bottom:871.773333pt;}
.y23_c00077{bottom:871.973333pt;}
.y24_c00077{bottom:872.733333pt;}
.y21_c00077{bottom:873.106667pt;}
.y1e_c00077{bottom:873.693333pt;}
.y22_c00077{bottom:874.640000pt;}
.y20_c00077{bottom:875.026667pt;}
.y1d_c00077{bottom:887.973333pt;}
.y1b_c00077{bottom:889.106667pt;}
.y1c_c00077{bottom:890.440000pt;}
.y18_c00077{bottom:905.693333pt;}
.y1a_c00077{bottom:907.773333pt;}
.y15_c00077{bottom:908.360000pt;}
.y16_c00077{bottom:908.560000pt;}
.y19_c00077{bottom:909.306667pt;}
.y17_c00077{bottom:909.693333pt;}
.y13_c00077{bottom:922.466667pt;}
.y14_c00077{bottom:922.640000pt;}
.yc_c00077{bottom:923.773333pt;}
.yd_c00077{bottom:923.973333pt;}
.y10_c00077{bottom:924.733333pt;}
.ye_c00077{bottom:925.106667pt;}
.ya_c00077{bottom:925.693333pt;}
.y11_c00077{bottom:925.893333pt;}
.yb_c00077{bottom:926.640000pt;}
.yf_c00077{bottom:927.026667pt;}
.y12_c00077{bottom:928.560000pt;}
.y4_c00077{bottom:941.106667pt;}
.y9_c00077{bottom:941.306667pt;}
.y7_c00077{bottom:941.693333pt;}
.y6_c00077{bottom:942.440000pt;}
.y3_c00077{bottom:943.026667pt;}
.y8_c00077{bottom:943.973333pt;}
.y5_c00077{bottom:944.360000pt;}
.y1_c00077{bottom:976.733333pt;}
.y2_c00077{bottom:976.933333pt;}
.h9_c00077{height:3.739141pt;}
.h7_c00077{height:12.988594pt;}
.ha_c00077{height:14.890964pt;}
.h6_c00077{height:20.466875pt;}
.h2_c00077{height:22.303646pt;}
.h5_c00077{height:27.879557pt;}
.h3_c00077{height:31.618698pt;}
.hb_c00077{height:34.706224pt;}
.h1_c00077{height:35.357839pt;}
.h4_c00077{height:39.031380pt;}
.h8_c00077{height:42.770521pt;}
.h0_c00077{height:1186.666667pt;}
.w0_c00077{width:782.666667pt;}
.x0_c00077{left:0.000000pt;}
.x1_c00077{left:133.333333pt;}
.x3_c00077{left:135.626667pt;}
.x52_c00077{left:137.333333pt;}
.xaf_c00077{left:138.666667pt;}
.xf6_c00077{left:140.373333pt;}
.x2f_c00077{left:142.293333pt;}
.xb9_c00077{left:148.000000pt;}
.xcb_c00077{left:149.333333pt;}
.x5a_c00077{left:150.666667pt;}
.x67_c00077{left:152.000000pt;}
.x9a_c00077{left:155.040000pt;}
.x23_c00077{left:162.666667pt;}
.x4_c00077{left:163.626667pt;}
.xa8_c00077{left:166.293333pt;}
.xb0_c00077{left:169.333333pt;}
.xef_c00077{left:170.666667pt;}
.xa6_c00077{left:172.373333pt;}
.xf8_c00077{left:173.333333pt;}
.xa2_c00077{left:178.293333pt;}
.x88_c00077{left:179.626667pt;}
.x96_c00077{left:184.960000pt;}
.x62_c00077{left:188.373333pt;}
.xde_c00077{left:190.666667pt;}
.xc4_c00077{left:193.333333pt;}
.xb1_c00077{left:195.040000pt;}
.x53_c00077{left:196.373333pt;}
.x12_c00077{left:197.706667pt;}
.x42_c00077{left:198.666667pt;}
.xe0_c00077{left:200.373333pt;}
.xe5_c00077{left:201.333333pt;}
.xc6_c00077{left:202.666667pt;}
.x24_c00077{left:204.000000pt;}
.xd9_c00077{left:206.666667pt;}
.x5b_c00077{left:209.333333pt;}
.x82_c00077{left:210.666667pt;}
.x5_c00077{left:211.626667pt;}
.x30_c00077{left:214.293333pt;}
.x13_c00077{left:216.000000pt;}
.xed_c00077{left:217.333333pt;}
.x43_c00077{left:222.666667pt;}
.xb3_c00077{left:224.000000pt;}
.x6f_c00077{left:225.333333pt;}
.x6_c00077{left:227.040000pt;}
.xfc_c00077{left:228.960000pt;}
.xb2_c00077{left:232.000000pt;}
.x68_c00077{left:233.333333pt;}
.x14_c00077{left:234.466667pt;}
.x97_c00077{left:237.333333pt;}
.x5c_c00077{left:240.000000pt;}
.x44_c00077{left:240.960000pt;}
.x7a_c00077{left:244.373333pt;}
.x25_c00077{left:245.333333pt;}
.x8e_c00077{left:246.293333pt;}
.xe6_c00077{left:251.040000pt;}
.x38_c00077{left:252.373333pt;}
.x75_c00077{left:253.333333pt;}
.xcf_c00077{left:254.666667pt;}
.xa7_c00077{left:255.626667pt;}
.xda_c00077{left:257.333333pt;}
.xa9_c00077{left:258.666667pt;}
.xe7_c00077{left:260.000000pt;}
.x63_c00077{left:261.333333pt;}
.x15_c00077{left:262.666667pt;}
.x45_c00077{left:264.000000pt;}
.xba_c00077{left:268.373333pt;}
.xf0_c00077{left:269.706667pt;}
.x39_c00077{left:270.666667pt;}
.x70_c00077{left:272.000000pt;}
.xcc_c00077{left:272.960000pt;}
.xf9_c00077{left:274.666667pt;}
.x4f_c00077{left:276.960000pt;}
.x7_c00077{left:279.040000pt;}
.xf1_c00077{left:280.000000pt;}
.xe1_c00077{left:281.333333pt;}
.x9b_c00077{left:283.626667pt;}
.x76_c00077{left:285.333333pt;}
.xb4_c00077{left:286.293333pt;}
.x26_c00077{left:289.706667pt;}
.xdf_c00077{left:290.666667pt;}
.x71_c00077{left:291.626667pt;}
.x16_c00077{left:295.040000pt;}
.xee_c00077{left:296.373333pt;}
.x46_c00077{left:297.333333pt;}
.x7b_c00077{left:298.293333pt;}
.xc5_c00077{left:300.000000pt;}
.x83_c00077{left:303.040000pt;}
.xfa_c00077{left:304.000000pt;}
.xf7_c00077{left:304.960000pt;}
.xd0_c00077{left:306.666667pt;}
.xaa_c00077{left:308.000000pt;}
.x3a_c00077{left:309.333333pt;}
.x8f_c00077{left:312.000000pt;}
.x69_c00077{left:313.706667pt;}
.xfd_c00077{left:316.960000pt;}
.x72_c00077{left:318.293333pt;}
.xe8_c00077{left:319.626667pt;}
.xab_c00077{left:322.293333pt;}
.x27_c00077{left:323.626667pt;}
.xbf_c00077{left:325.333333pt;}
.x9c_c00077{left:326.666667pt;}
.x64_c00077{left:328.373333pt;}
.x8_c00077{left:329.706667pt;}
.x90_c00077{left:331.626667pt;}
.x28_c00077{left:334.666667pt;}
.x3b_c00077{left:336.960000pt;}
.x17_c00077{left:338.293333pt;}
.xc7_c00077{left:340.000000pt;}
.x5d_c00077{left:341.333333pt;}
.x31_c00077{left:343.040000pt;}
.xc0_c00077{left:345.333333pt;}
.xa3_c00077{left:346.293333pt;}
.x7c_c00077{left:348.000000pt;}
.x6a_c00077{left:350.293333pt;}
.x29_c00077{left:352.000000pt;}
.x2_c00077{left:354.666667pt;}
.x18_c00077{left:356.373333pt;}
.xd1_c00077{left:357.333333pt;}
.xe9_c00077{left:358.666667pt;}
.x54_c00077{left:359.626667pt;}
.x9_c00077{left:362.666667pt;}
.x9d_c00077{left:364.000000pt;}
.x98_c00077{left:368.000000pt;}
.x5e_c00077{left:370.666667pt;}
.x2a_c00077{left:374.666667pt;}
.xe2_c00077{left:376.373333pt;}
.x77_c00077{left:377.333333pt;}
.x58_c00077{left:379.040000pt;}
.x19_c00077{left:380.000000pt;}
.xa_c00077{left:381.333333pt;}
.xcd_c00077{left:383.040000pt;}
.x6b_c00077{left:384.000000pt;}
.x84_c00077{left:386.666667pt;}
.xf4_c00077{left:387.626667pt;}
.xb5_c00077{left:391.040000pt;}
.xc8_c00077{left:392.960000pt;}
.x59_c00077{left:394.293333pt;}
.x50_c00077{left:396.000000pt;}
.xb_c00077{left:397.333333pt;}
.xe3_c00077{left:402.666667pt;}
.x7d_c00077{left:404.000000pt;}
.xbb_c00077{left:405.333333pt;}
.xce_c00077{left:406.666667pt;}
.xd2_c00077{left:407.626667pt;}
.x3c_c00077{left:410.666667pt;}
.x32_c00077{left:412.000000pt;}
.x65_c00077{left:413.333333pt;}
.xea_c00077{left:414.666667pt;}
.x4c_c00077{left:415.626667pt;}
.x1a_c00077{left:420.000000pt;}
.x7e_c00077{left:420.960000pt;}
.xdb_c00077{left:423.626667pt;}
.xc_c00077{left:425.333333pt;}
.x5f_c00077{left:427.040000pt;}
.x47_c00077{left:428.373333pt;}
.xbc_c00077{left:431.040000pt;}
.x33_c00077{left:432.000000pt;}
.xeb_c00077{left:432.960000pt;}
.x2b_c00077{left:435.626667pt;}
.xb6_c00077{left:438.666667pt;}
.x60_c00077{left:441.706667pt;}
.x55_c00077{left:443.626667pt;}
.x3d_c00077{left:445.706667pt;}
.x89_c00077{left:448.000000pt;}
.xf5_c00077{left:449.333333pt;}
.xc1_c00077{left:451.040000pt;}
.xf2_c00077{left:452.000000pt;}
.x66_c00077{left:455.040000pt;}
.xd_c00077{left:459.040000pt;}
.xac_c00077{left:460.960000pt;}
.x48_c00077{left:462.293333pt;}
.x34_c00077{left:464.000000pt;}
.x61_c00077{left:466.666667pt;}
.xbd_c00077{left:468.000000pt;}
.x91_c00077{left:470.666667pt;}
.x78_c00077{left:475.040000pt;}
.x51_c00077{left:478.466667pt;}
.x6c_c00077{left:480.000000pt;}
.xd3_c00077{left:481.333333pt;}
.x8a_c00077{left:482.293333pt;}
.x4d_c00077{left:485.333333pt;}
.x49_c00077{left:486.666667pt;}
.x92_c00077{left:488.000000pt;}
.x1b_c00077{left:489.706667pt;}
.xd7_c00077{left:492.000000pt;}
.xd4_c00077{left:493.333333pt;}
.x73_c00077{left:494.293333pt;}
.x8b_c00077{left:495.626667pt;}
.xec_c00077{left:497.333333pt;}
.xbe_c00077{left:498.293333pt;}
.x35_c00077{left:500.373333pt;}
.xc9_c00077{left:502.666667pt;}
.x2c_c00077{left:503.626667pt;}
.x4a_c00077{left:504.960000pt;}
.x3e_c00077{left:506.666667pt;}
.xf3_c00077{left:508.000000pt;}
.xe_c00077{left:511.040000pt;}
.x1c_c00077{left:512.000000pt;}
.x1d_c00077{left:515.626667pt;}
.xca_c00077{left:518.666667pt;}
.x74_c00077{left:520.573333pt;}
.x7f_c00077{left:522.666667pt;}
.xa4_c00077{left:523.626667pt;}
.x1e_c00077{left:525.706667pt;}
.x4b_c00077{left:529.333333pt;}
.xd5_c00077{left:532.000000pt;}
.x93_c00077{left:536.373333pt;}
.x9e_c00077{left:537.333333pt;}
.x85_c00077{left:539.240000pt;}
.xb7_c00077{left:543.040000pt;}
.x3f_c00077{left:548.373333pt;}
.xad_c00077{left:551.626667pt;}
.xf_c00077{left:552.960000pt;}
.x36_c00077{left:555.040000pt;}
.x9f_c00077{left:557.333333pt;}
.x1f_c00077{left:558.666667pt;}
.x6d_c00077{left:561.133333pt;}
.x94_c00077{left:562.666667pt;}
.x80_c00077{left:564.000000pt;}
.xc2_c00077{left:564.960000pt;}
.x10_c00077{left:569.333333pt;}
.x86_c00077{left:575.626667pt;}
.x56_c00077{left:577.706667pt;}
.x81_c00077{left:578.666667pt;}
.xdc_c00077{left:579.626667pt;}
.x20_c00077{left:581.333333pt;}
.xc3_c00077{left:582.666667pt;}
.x8c_c00077{left:584.000000pt;}
.xd6_c00077{left:588.000000pt;}
.xa0_c00077{left:589.333333pt;}
.xa5_c00077{left:590.666667pt;}
.x4e_c00077{left:592.960000pt;}
.x6e_c00077{left:596.960000pt;}
.x21_c00077{left:598.666667pt;}
.x95_c00077{left:600.373333pt;}
.x11_c00077{left:601.706667pt;}
.x57_c00077{left:602.666667pt;}
.xe4_c00077{left:605.333333pt;}
.x87_c00077{left:606.293333pt;}
.xb8_c00077{left:607.626667pt;}
.xae_c00077{left:609.706667pt;}
.x99_c00077{left:613.333333pt;}
.x8d_c00077{left:614.666667pt;}
.xdd_c00077{left:617.333333pt;}
.x2d_c00077{left:618.293333pt;}
.x37_c00077{left:620.000000pt;}
.x22_c00077{left:621.333333pt;}
.x79_c00077{left:623.040000pt;}
.xa1_c00077{left:632.373333pt;}
.xd8_c00077{left:633.706667pt;}
.x2e_c00077{left:634.666667pt;}
.x40_c00077{left:640.000000pt;}
.x41_c00077{left:644.960000pt;}
.xfb_c00077{left:648.000000pt;}
}





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

.ir_c00078:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00078{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00078;src:url('chunks/assets/font_9abd2561e5493bd291e6cfbf.woff2')format("woff");}.ff1_c00078{font-family:ff1_c00078;line-height:1.688965;font-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_c00078{transform:matrix(0.355462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355462,0.000000,0.000000,0.250000,0,0);}
.mc_c00078{transform:matrix(0.365955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365955,0.000000,0.000000,0.250000,0,0);}
.m15_c00078{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m1f_c00078{transform:matrix(0.382653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382653,0.000000,0.000000,0.250000,0,0);}
.m8_c00078{transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);}
.m1c_c00078{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.mb_c00078{transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);}
.m20_c00078{transform:matrix(0.403525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403525,0.000000,0.000000,0.250000,0,0);}
.m2c_c00078{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m2_c00078{transform:matrix(0.403989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403989,0.000000,0.000000,0.250000,0,0);}
.ma_c00078{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.md_c00078{transform:matrix(0.425311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425311,0.000000,0.000000,0.250000,0,0);}
.m19_c00078{transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);}
.m2a_c00078{transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);}
.m1e_c00078{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m10_c00078{transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);}
.m24_c00078{transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);}
.m1a_c00078{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.m17_c00078{transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);}
.m1d_c00078{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.mf_c00078{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m3_c00078{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m23_c00078{transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);}
.m11_c00078{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);}
.me_c00078{transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);}
.m7_c00078{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m14_c00078{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);}
.m1_c00078{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m1b_c00078{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m5_c00078{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m6_c00078{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m2b_c00078{transform:matrix(0.563529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563529,0.000000,0.000000,0.250000,0,0);}
.m21_c00078{transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);}
.m29_c00078{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m13_c00078{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m18_c00078{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m9_c00078{transform:matrix(0.595294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595294,0.000000,0.000000,0.250000,0,0);}
.m16_c00078{transform:matrix(0.605769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605769,0.000000,0.000000,0.250000,0,0);}
.m25_c00078{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m4_c00078{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);}
.m26_c00078{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);}
.m27_c00078{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_c00078{transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);}
.m22_c00078{transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);}
.m28_c00078{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);}
.v1_c00078{vertical-align:-6.000000px;}
.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:-7.416569px;}
.ws1_c00078{word-spacing:0.000000px;}
.fc0_c00078{color:transparent;}
.fs0_c00078{font-size:18.720000px;}
.fs3_c00078{font-size:20.400000px;}
.fs1_c00078{font-size:25.500000px;}
.fs4_c00078{font-size:28.920000px;}
.fs2_c00078{font-size:32.340000px;}
.fs5_c00078{font-size:35.700000px;}
.y0_c00078{bottom:0.000000px;}
.y3_c00078{bottom:272.325000px;}
.y7_c00078{bottom:273.825000px;}
.y4_c00078{bottom:274.470000px;}
.y6_c00078{bottom:275.970000px;}
.y5_c00078{bottom:277.050000px;}
.y8_c00078{bottom:287.325000px;}
.yd_c00078{bottom:288.630000px;}
.yc_c00078{bottom:289.245000px;}
.y9_c00078{bottom:289.470000px;}
.ya_c00078{bottom:289.905000px;}
.yb_c00078{bottom:290.970000px;}
.yf_c00078{bottom:302.325000px;}
.y11_c00078{bottom:303.405000px;}
.y10_c00078{bottom:303.630000px;}
.y14_c00078{bottom:303.825000px;}
.y12_c00078{bottom:304.050000px;}
.ye_c00078{bottom:304.470000px;}
.y13_c00078{bottom:304.905000px;}
.y18_c00078{bottom:307.905000px;}
.y21_c00078{bottom:317.325000px;}
.y23_c00078{bottom:318.405000px;}
.y24_c00078{bottom:318.630000px;}
.y15_c00078{bottom:318.825000px;}
.y22_c00078{bottom:319.470000px;}
.y17_c00078{bottom:319.905000px;}
.y16_c00078{bottom:320.130000px;}
.y20_c00078{bottom:320.550000px;}
.y1f_c00078{bottom:321.405000px;}
.y1b_c00078{bottom:332.325000px;}
.y1e_c00078{bottom:333.405000px;}
.y1a_c00078{bottom:334.050000px;}
.y1d_c00078{bottom:334.470000px;}
.y19_c00078{bottom:335.325000px;}
.y1c_c00078{bottom:335.550000px;}
.y2_c00078{bottom:1100.970000px;}
.y1_c00078{bottom:1103.130000px;}
.h1_c00078{height:23.025234px;}
.h4_c00078{height:25.091602px;}
.h2_c00078{height:31.364502px;}
.h5_c00078{height:35.571035px;}
.h3_c00078{height:39.777568px;}
.h6_c00078{height:43.910303px;}
.h0_c00078{height:1335.000000px;}
.w0_c00078{width:880.500000px;}
.x0_c00078{left:0.000000px;}
.x13_c00078{left:153.420000px;}
.x9_c00078{left:169.500000px;}
.x1c_c00078{left:171.000000px;}
.x21_c00078{left:181.920000px;}
.x22_c00078{left:199.080000px;}
.x2e_c00078{left:214.500000px;}
.x14_c00078{left:228.000000px;}
.x2f_c00078{left:235.500000px;}
.x10_c00078{left:244.500000px;}
.x1d_c00078{left:245.580000px;}
.xa_c00078{left:258.000000px;}
.x23_c00078{left:264.420000px;}
.x24_c00078{left:282.000000px;}
.x18_c00078{left:303.000000px;}
.x11_c00078{left:304.080000px;}
.x30_c00078{left:340.080000px;}
.x25_c00078{left:361.500000px;}
.xb_c00078{left:376.080000px;}
.x19_c00078{left:385.500000px;}
.x1_c00078{left:399.000000px;}
.x16_c00078{left:402.000000px;}
.x31_c00078{left:408.000000px;}
.x3_c00078{left:416.580000px;}
.x26_c00078{left:441.000000px;}
.xc_c00078{left:445.500000px;}
.xd_c00078{left:460.080000px;}
.x17_c00078{left:477.420000px;}
.x4_c00078{left:480.000000px;}
.x27_c00078{left:490.920000px;}
.x6_c00078{left:498.000000px;}
.x32_c00078{left:525.000000px;}
.x28_c00078{left:528.000000px;}
.xe_c00078{left:535.500000px;}
.x15_c00078{left:538.500000px;}
.x1e_c00078{left:544.080000px;}
.x7_c00078{left:549.000000px;}
.x29_c00078{left:582.000000px;}
.x8_c00078{left:596.580000px;}
.xf_c00078{left:606.000000px;}
.x2a_c00078{left:607.500000px;}
.x1a_c00078{left:614.580000px;}
.x1f_c00078{left:649.500000px;}
.x2b_c00078{left:658.500000px;}
.x5_c00078{left:663.000000px;}
.x12_c00078{left:679.500000px;}
.x20_c00078{left:685.500000px;}
.x1b_c00078{left:690.000000px;}
.x2c_c00078{left:699.000000px;}
.x2_c00078{left:712.500000px;}
.x2d_c00078{left:717.000000px;}
@media print{
.v1_c00078{vertical-align:-5.333333pt;}
.v0_c00078{vertical-align:0.000000pt;}
.ls0_c00078{letter-spacing:0.000000pt;}
.ws0_c00078{word-spacing:-6.592506pt;}
.ws1_c00078{word-spacing:0.000000pt;}
.fs0_c00078{font-size:16.640000pt;}
.fs3_c00078{font-size:18.133333pt;}
.fs1_c00078{font-size:22.666667pt;}
.fs4_c00078{font-size:25.706667pt;}
.fs2_c00078{font-size:28.746667pt;}
.fs5_c00078{font-size:31.733333pt;}
.y0_c00078{bottom:0.000000pt;}
.y3_c00078{bottom:242.066667pt;}
.y7_c00078{bottom:243.400000pt;}
.y4_c00078{bottom:243.973333pt;}
.y6_c00078{bottom:245.306667pt;}
.y5_c00078{bottom:246.266667pt;}
.y8_c00078{bottom:255.400000pt;}
.yd_c00078{bottom:256.560000pt;}
.yc_c00078{bottom:257.106667pt;}
.y9_c00078{bottom:257.306667pt;}
.ya_c00078{bottom:257.693333pt;}
.yb_c00078{bottom:258.640000pt;}
.yf_c00078{bottom:268.733333pt;}
.y11_c00078{bottom:269.693333pt;}
.y10_c00078{bottom:269.893333pt;}
.y14_c00078{bottom:270.066667pt;}
.y12_c00078{bottom:270.266667pt;}
.ye_c00078{bottom:270.640000pt;}
.y13_c00078{bottom:271.026667pt;}
.y18_c00078{bottom:273.693333pt;}
.y21_c00078{bottom:282.066667pt;}
.y23_c00078{bottom:283.026667pt;}
.y24_c00078{bottom:283.226667pt;}
.y15_c00078{bottom:283.400000pt;}
.y22_c00078{bottom:283.973333pt;}
.y17_c00078{bottom:284.360000pt;}
.y16_c00078{bottom:284.560000pt;}
.y20_c00078{bottom:284.933333pt;}
.y1f_c00078{bottom:285.693333pt;}
.y1b_c00078{bottom:295.400000pt;}
.y1e_c00078{bottom:296.360000pt;}
.y1a_c00078{bottom:296.933333pt;}
.y1d_c00078{bottom:297.306667pt;}
.y19_c00078{bottom:298.066667pt;}
.y1c_c00078{bottom:298.266667pt;}
.y2_c00078{bottom:978.640000pt;}
.y1_c00078{bottom:980.560000pt;}
.h1_c00078{height:20.466875pt;}
.h4_c00078{height:22.303646pt;}
.h2_c00078{height:27.879557pt;}
.h5_c00078{height:31.618698pt;}
.h3_c00078{height:35.357839pt;}
.h6_c00078{height:39.031380pt;}
.h0_c00078{height:1186.666667pt;}
.w0_c00078{width:782.666667pt;}
.x0_c00078{left:0.000000pt;}
.x13_c00078{left:136.373333pt;}
.x9_c00078{left:150.666667pt;}
.x1c_c00078{left:152.000000pt;}
.x21_c00078{left:161.706667pt;}
.x22_c00078{left:176.960000pt;}
.x2e_c00078{left:190.666667pt;}
.x14_c00078{left:202.666667pt;}
.x2f_c00078{left:209.333333pt;}
.x10_c00078{left:217.333333pt;}
.x1d_c00078{left:218.293333pt;}
.xa_c00078{left:229.333333pt;}
.x23_c00078{left:235.040000pt;}
.x24_c00078{left:250.666667pt;}
.x18_c00078{left:269.333333pt;}
.x11_c00078{left:270.293333pt;}
.x30_c00078{left:302.293333pt;}
.x25_c00078{left:321.333333pt;}
.xb_c00078{left:334.293333pt;}
.x19_c00078{left:342.666667pt;}
.x1_c00078{left:354.666667pt;}
.x16_c00078{left:357.333333pt;}
.x31_c00078{left:362.666667pt;}
.x3_c00078{left:370.293333pt;}
.x26_c00078{left:392.000000pt;}
.xc_c00078{left:396.000000pt;}
.xd_c00078{left:408.960000pt;}
.x17_c00078{left:424.373333pt;}
.x4_c00078{left:426.666667pt;}
.x27_c00078{left:436.373333pt;}
.x6_c00078{left:442.666667pt;}
.x32_c00078{left:466.666667pt;}
.x28_c00078{left:469.333333pt;}
.xe_c00078{left:476.000000pt;}
.x15_c00078{left:478.666667pt;}
.x1e_c00078{left:483.626667pt;}
.x7_c00078{left:488.000000pt;}
.x29_c00078{left:517.333333pt;}
.x8_c00078{left:530.293333pt;}
.xf_c00078{left:538.666667pt;}
.x2a_c00078{left:540.000000pt;}
.x1a_c00078{left:546.293333pt;}
.x1f_c00078{left:577.333333pt;}
.x2b_c00078{left:585.333333pt;}
.x5_c00078{left:589.333333pt;}
.x12_c00078{left:604.000000pt;}
.x20_c00078{left:609.333333pt;}
.x1b_c00078{left:613.333333pt;}
.x2c_c00078{left:621.333333pt;}
.x2_c00078{left:633.333333pt;}
.x2d_c00078{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a06e15ac029d6324629f6220.woff2')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb1_c00079{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m67_c00079{transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);}
.m2b_c00079{transform:matrix(0.364108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364108,0.000000,0.000000,0.250000,0,0);}
.m1d_c00079{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.md_c00079{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m34_c00079{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.mc0_c00079{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m69_c00079{transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);}
.md4_c00079{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m9c_c00079{transform:matrix(0.382653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382653,0.000000,0.000000,0.250000,0,0);}
.mde_c00079{transform:matrix(0.386120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386120,0.000000,0.000000,0.250000,0,0);}
.m10b_c00079{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.mef_c00079{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m114_c00079{transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);}
.m4a_c00079{transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);}
.m89_c00079{transform:matrix(0.394710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394710,0.000000,0.000000,0.250000,0,0);}
.m11_c00079{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m99_c00079{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m85_c00079{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.mbb_c00079{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.ma8_c00079{transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);}
.mdb_c00079{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m104_c00079{transform:matrix(0.405291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405291,0.000000,0.000000,0.250000,0,0);}
.mf8_c00079{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m1a_c00079{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.m70_c00079{transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);}
.m5e_c00079{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m90_c00079{transform:matrix(0.408627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408627,0.000000,0.000000,0.250000,0,0);}
.me4_c00079{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.me8_c00079{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m15_c00079{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.mf7_c00079{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m105_c00079{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m55_c00079{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m109_c00079{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mc5_c00079{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m100_c00079{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.mf5_c00079{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.md9_c00079{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m113_c00079{transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);}
.mfa_c00079{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m7d_c00079{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m10d_c00079{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m5a_c00079{transform:matrix(0.420643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420643,0.000000,0.000000,0.250000,0,0);}
.m44_c00079{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m83_c00079{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.mf2_c00079{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.ma6_c00079{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mbe_c00079{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m2e_c00079{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m84_c00079{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m9f_c00079{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m43_c00079{transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);}
.mca_c00079{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m6a_c00079{transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);}
.me1_c00079{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m3a_c00079{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.mc1_c00079{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m38_c00079{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.mf6_c00079{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m10f_c00079{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.m107_c00079{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.mfd_c00079{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m4b_c00079{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m7e_c00079{transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);}
.m3b_c00079{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mcc_c00079{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m1e_c00079{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m73_c00079{transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);}
.m75_c00079{transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);}
.meb_c00079{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.mf9_c00079{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m58_c00079{transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);}
.ma3_c00079{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.mc2_c00079{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.mf3_c00079{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m103_c00079{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m48_c00079{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m9a_c00079{transform:matrix(0.449170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449170,0.000000,0.000000,0.250000,0,0);}
.m63_c00079{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.med_c00079{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m35_c00079{transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);}
.m111_c00079{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m3_c00079{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.m6b_c00079{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m79_c00079{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m66_c00079{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mfe_c00079{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m20_c00079{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m13_c00079{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m93_c00079{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.mf4_c00079{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.m82_c00079{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.m9_c00079{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m5c_c00079{transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);}
.m7f_c00079{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.m6_c00079{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mea_c00079{transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);}
.m101_c00079{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m8e_c00079{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m3f_c00079{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.me7_c00079{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.m2a_c00079{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m65_c00079{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.mc4_c00079{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m74_c00079{transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);}
.m108_c00079{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m22_c00079{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.mb2_c00079{transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);}
.m1_c00079{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m88_c00079{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m6c_c00079{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m8a_c00079{transform:matrix(0.488824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488824,0.000000,0.000000,0.250000,0,0);}
.m2d_c00079{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);}
.ma_c00079{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m56_c00079{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m71_c00079{transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);}
.mc_c00079{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);}
.m77_c00079{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.me2_c00079{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m4c_c00079{transform:matrix(0.505882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505882,0.000000,0.000000,0.250000,0,0);}
.m5_c00079{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m92_c00079{transform:matrix(0.507353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507353,0.000000,0.000000,0.250000,0,0);}
.m14_c00079{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.md2_c00079{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m78_c00079{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m2f_c00079{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.mce_c00079{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m2_c00079{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.mbd_c00079{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m52_c00079{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.m61_c00079{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.mbf_c00079{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m98_c00079{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m10e_c00079{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.me_c00079{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);}
.m8b_c00079{transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);}
.m7c_c00079{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m116_c00079{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m3d_c00079{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.m49_c00079{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.maa_c00079{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mb8_c00079{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m29_c00079{transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);}
.m87_c00079{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mf1_c00079{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mcb_c00079{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mb4_c00079{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m8d_c00079{transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);}
.mc9_c00079{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m72_c00079{transform:matrix(0.532353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532353,0.000000,0.000000,0.250000,0,0);}
.mbc_c00079{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m7a_c00079{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.ma7_c00079{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mae_c00079{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m5d_c00079{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.ma1_c00079{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m5f_c00079{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m60_c00079{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);}
.m26_c00079{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m10a_c00079{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m33_c00079{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.mcf_c00079{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mf0_c00079{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m19_c00079{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.ma4_c00079{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m8f_c00079{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.me6_c00079{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m102_c00079{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m4e_c00079{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);}
.mee_c00079{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m4d_c00079{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.mc3_c00079{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mda_c00079{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mba_c00079{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mb9_c00079{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mb7_c00079{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m62_c00079{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m97_c00079{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.mb5_c00079{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m46_c00079{transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);}
.me3_c00079{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m53_c00079{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mb6_c00079{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m8c_c00079{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m9d_c00079{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.m80_c00079{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.md3_c00079{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.me9_c00079{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mc6_c00079{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m9e_c00079{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m6d_c00079{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.md8_c00079{transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);}
.mb_c00079{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m32_c00079{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m10_c00079{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m16_c00079{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.m31_c00079{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.mfb_c00079{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.ma5_c00079{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m68_c00079{transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);}
.m112_c00079{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.mc8_c00079{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.mc7_c00079{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m50_c00079{transform:matrix(0.602206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602206,0.000000,0.000000,0.250000,0,0);}
.m0_c00079{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.ma2_c00079{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m3c_c00079{transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);}
.me5_c00079{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m6f_c00079{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);}
.mac_c00079{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m18_c00079{transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);}
.m12_c00079{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.m28_c00079{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m3e_c00079{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m1c_c00079{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m25_c00079{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);}
.m96_c00079{transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);}
.m57_c00079{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m39_c00079{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m47_c00079{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m4_c00079{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m86_c00079{transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);}
.md1_c00079{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mf_c00079{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m1f_c00079{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.mab_c00079{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.mdf_c00079{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m23_c00079{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m64_c00079{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m21_c00079{transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);}
.mad_c00079{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.maf_c00079{transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);}
.m51_c00079{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m41_c00079{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_c00079{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m40_c00079{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m24_c00079{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m91_c00079{transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);}
.mfc_c00079{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mb3_c00079{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m5b_c00079{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.m9b_c00079{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m27_c00079{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.m42_c00079{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.mec_c00079{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m7b_c00079{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m2c_c00079{transform:matrix(0.685096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685096,0.000000,0.000000,0.250000,0,0);}
.m1b_c00079{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m115_c00079{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m76_c00079{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.ma9_c00079{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m94_c00079{transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);}
.m4f_c00079{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m7_c00079{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);}
.m81_c00079{transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);}
.m36_c00079{transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);}
.md0_c00079{transform:matrix(0.718824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.718824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.718824,0.000000,0.000000,0.250000,0,0);}
.m54_c00079{transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);}
.mdc_c00079{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.mcd_c00079{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.md7_c00079{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m6e_c00079{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mff_c00079{transform:matrix(0.736471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736471,0.000000,0.000000,0.250000,0,0);}
.m10c_c00079{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);}
.md6_c00079{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.md5_c00079{transform:matrix(0.772059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772059,0.000000,0.000000,0.250000,0,0);}
.mb0_c00079{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.m110_c00079{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m106_c00079{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mdd_c00079{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.me0_c00079{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m45_c00079{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m59_c00079{transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);}
.m95_c00079{transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);}
.m17_c00079{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m37_c00079{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.m30_c00079{transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);}
.ma0_c00079{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00079{vertical-align:-4.320000px;}
.v0_c00079{vertical-align:0.000000px;}
.v2_c00079{vertical-align:7.680000px;}
.ls2_c00079{letter-spacing:0.000000px;}
.ls0_c00079{letter-spacing:12.657600px;}
.ls1_c00079{letter-spacing:17.817600px;}
.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:-14.892000px;}
.ws5_c00079{word-spacing:-2.917437px;}
.ws1_c00079{word-spacing:-0.356557px;}
.ws3_c00079{word-spacing:-0.308400px;}
.ws6_c00079{word-spacing:0.000000px;}
.ws4_c00079{word-spacing:4.067980px;}
.ws2_c00079{word-spacing:6.413938px;}
._0_c00079{width:6.021000px;}
.fc0_c00079{color:transparent;}
.fs7_c00079{font-size:3.420000px;}
.fs5_c00079{font-size:13.620000px;}
.fs3_c00079{font-size:18.720000px;}
.fs0_c00079{font-size:20.400000px;}
.fs2_c00079{font-size:25.500000px;}
.fs1_c00079{font-size:28.920000px;}
.fs4_c00079{font-size:32.340000px;}
.fs6_c00079{font-size:35.700000px;}
.fs8_c00079{font-size:39.120000px;}
.y0_c00079{bottom:0.000000px;}
.y133_c00079{bottom:251.745000px;}
.y137_c00079{bottom:252.180000px;}
.y132_c00079{bottom:253.245000px;}
.y138_c00079{bottom:253.905000px;}
.y139_c00079{bottom:254.130000px;}
.y136_c00079{bottom:254.325000px;}
.y135_c00079{bottom:254.970000px;}
.y134_c00079{bottom:255.405000px;}
.y12a_c00079{bottom:271.905000px;}
.y129_c00079{bottom:272.745000px;}
.y12c_c00079{bottom:273.405000px;}
.y131_c00079{bottom:273.630000px;}
.y12d_c00079{bottom:274.050000px;}
.y12e_c00079{bottom:274.245000px;}
.y128_c00079{bottom:274.905000px;}
.y130_c00079{bottom:275.325000px;}
.y12b_c00079{bottom:275.970000px;}
.y12f_c00079{bottom:276.405000px;}
.y124_c00079{bottom:292.680000px;}
.y123_c00079{bottom:293.325000px;}
.y125_c00079{bottom:293.745000px;}
.y127_c00079{bottom:294.405000px;}
.y126_c00079{bottom:294.630000px;}
.y122_c00079{bottom:295.905000px;}
.y11c_c00079{bottom:311.745000px;}
.y11d_c00079{bottom:313.905000px;}
.y11f_c00079{bottom:314.325000px;}
.y121_c00079{bottom:314.970000px;}
.y11e_c00079{bottom:315.405000px;}
.y120_c00079{bottom:316.470000px;}
.y116_c00079{bottom:331.245000px;}
.y11a_c00079{bottom:332.745000px;}
.y119_c00079{bottom:333.405000px;}
.y11b_c00079{bottom:333.630000px;}
.y117_c00079{bottom:334.470000px;}
.y118_c00079{bottom:334.905000px;}
.y115_c00079{bottom:351.405000px;}
.y113_c00079{bottom:351.825000px;}
.y114_c00079{bottom:352.245000px;}
.y112_c00079{bottom:354.405000px;}
.y111_c00079{bottom:371.745000px;}
.y110_c00079{bottom:373.245000px;}
.y10e_c00079{bottom:373.905000px;}
.y10f_c00079{bottom:375.405000px;}
.y109_c00079{bottom:390.405000px;}
.y10b_c00079{bottom:391.245000px;}
.y108_c00079{bottom:391.470000px;}
.y10d_c00079{bottom:392.325000px;}
.y10a_c00079{bottom:392.745000px;}
.y107_c00079{bottom:393.405000px;}
.y10c_c00079{bottom:393.630000px;}
.y106_c00079{bottom:410.745000px;}
.y102_c00079{bottom:411.180000px;}
.y104_c00079{bottom:412.050000px;}
.yff_c00079{bottom:412.245000px;}
.y105_c00079{bottom:412.905000px;}
.y100_c00079{bottom:413.130000px;}
.y103_c00079{bottom:413.970000px;}
.y101_c00079{bottom:414.405000px;}
.yfe_c00079{bottom:430.245000px;}
.yf5_c00079{bottom:430.470000px;}
.yfa_c00079{bottom:430.905000px;}
.yfb_c00079{bottom:431.550000px;}
.yf8_c00079{bottom:431.745000px;}
.yfc_c00079{bottom:432.405000px;}
.yfd_c00079{bottom:432.630000px;}
.yf9_c00079{bottom:433.470000px;}
.yf7_c00079{bottom:433.905000px;}
.yf6_c00079{bottom:434.970000px;}
.yf3_c00079{bottom:448.905000px;}
.yf1_c00079{bottom:449.745000px;}
.yef_c00079{bottom:451.245000px;}
.yf4_c00079{bottom:451.470000px;}
.yee_c00079{bottom:451.905000px;}
.yf2_c00079{bottom:452.970000px;}
.yf0_c00079{bottom:453.405000px;}
.yec_c00079{bottom:469.245000px;}
.ye8_c00079{bottom:470.745000px;}
.yea_c00079{bottom:471.825000px;}
.yed_c00079{bottom:472.470000px;}
.ye9_c00079{bottom:472.905000px;}
.yeb_c00079{bottom:474.405000px;}
.ye7_c00079{bottom:490.245000px;}
.ye5_c00079{bottom:492.405000px;}
.ye6_c00079{bottom:493.905000px;}
.ye4_c00079{bottom:508.905000px;}
.ye3_c00079{bottom:509.745000px;}
.ye2_c00079{bottom:511.905000px;}
.yde_c00079{bottom:512.130000px;}
.ye1_c00079{bottom:512.970000px;}
.ydf_c00079{bottom:513.405000px;}
.ye0_c00079{bottom:514.470000px;}
.yd9_c00079{bottom:529.245000px;}
.ydc_c00079{bottom:530.970000px;}
.ydb_c00079{bottom:531.405000px;}
.ydd_c00079{bottom:532.470000px;}
.yda_c00079{bottom:532.920000px;}
.yd4_c00079{bottom:561.825000px;}
.yd5_c00079{bottom:562.050000px;}
.yd8_c00079{bottom:562.905000px;}
.yd7_c00079{bottom:563.130000px;}
.yd6_c00079{bottom:563.970000px;}
.yd0_c00079{bottom:575.970000px;}
.yce_c00079{bottom:576.825000px;}
.yd1_c00079{bottom:577.050000px;}
.ycf_c00079{bottom:577.905000px;}
.yd2_c00079{bottom:578.130000px;}
.ycd_c00079{bottom:578.970000px;}
.yd3_c00079{bottom:580.050000px;}
.ycb_c00079{bottom:591.405000px;}
.yc7_c00079{bottom:592.050000px;}
.yc8_c00079{bottom:592.905000px;}
.ycc_c00079{bottom:593.550000px;}
.yca_c00079{bottom:594.195000px;}
.yc9_c00079{bottom:595.050000px;}
.yc6_c00079{bottom:606.405000px;}
.yc4_c00079{bottom:607.050000px;}
.yc5_c00079{bottom:608.550000px;}
.yc3_c00079{bottom:609.195000px;}
.yc2_c00079{bottom:620.325000px;}
.ybd_c00079{bottom:620.550000px;}
.ybf_c00079{bottom:621.405000px;}
.yc0_c00079{bottom:622.470000px;}
.yc1_c00079{bottom:622.695000px;}
.ybe_c00079{bottom:623.550000px;}
.ybc_c00079{bottom:635.325000px;}
.yba_c00079{bottom:635.550000px;}
.ybb_c00079{bottom:637.470000px;}
.yb8_c00079{bottom:649.470000px;}
.yb7_c00079{bottom:650.325000px;}
.yb6_c00079{bottom:651.405000px;}
.yb9_c00079{bottom:651.630000px;}
.yb5_c00079{bottom:652.470000px;}
.yb4_c00079{bottom:653.550000px;}
.yb3_c00079{bottom:664.905000px;}
.yae_c00079{bottom:665.325000px;}
.yb1_c00079{bottom:665.550000px;}
.yac_c00079{bottom:666.405000px;}
.yaf_c00079{bottom:666.630000px;}
.yb2_c00079{bottom:667.050000px;}
.yb0_c00079{bottom:667.470000px;}
.yad_c00079{bottom:668.550000px;}
.yab_c00079{bottom:677.970000px;}
.ya9_c00079{bottom:679.905000px;}
.ya5_c00079{bottom:680.325000px;}
.ya4_c00079{bottom:680.550000px;}
.yaa_c00079{bottom:680.970000px;}
.ya8_c00079{bottom:681.405000px;}
.ya7_c00079{bottom:682.050000px;}
.ya6_c00079{bottom:682.470000px;}
.ya2_c00079{bottom:692.970000px;}
.ya3_c00079{bottom:693.825000px;}
.y9f_c00079{bottom:694.905000px;}
.ya1_c00079{bottom:695.970000px;}
.ya0_c00079{bottom:696.195000px;}
.y9d_c00079{bottom:697.050000px;}
.y9e_c00079{bottom:697.470000px;}
.y98_c00079{bottom:708.825000px;}
.y9c_c00079{bottom:709.470000px;}
.y99_c00079{bottom:709.905000px;}
.y9a_c00079{bottom:710.970000px;}
.y9b_c00079{bottom:711.630000px;}
.y91_c00079{bottom:722.970000px;}
.y95_c00079{bottom:723.825000px;}
.y97_c00079{bottom:724.050000px;}
.y96_c00079{bottom:724.905000px;}
.y93_c00079{bottom:725.130000px;}
.y92_c00079{bottom:725.970000px;}
.y94_c00079{bottom:727.050000px;}
.y8e_c00079{bottom:738.825000px;}
.y8f_c00079{bottom:739.905000px;}
.y90_c00079{bottom:740.970000px;}
.y89_c00079{bottom:752.970000px;}
.y8d_c00079{bottom:753.405000px;}
.y8a_c00079{bottom:754.905000px;}
.y8c_c00079{bottom:755.130000px;}
.y8b_c00079{bottom:757.050000px;}
.y87_c00079{bottom:768.825000px;}
.y86_c00079{bottom:769.905000px;}
.y88_c00079{bottom:772.050000px;}
.y7f_c00079{bottom:782.970000px;}
.y83_c00079{bottom:783.825000px;}
.y82_c00079{bottom:784.050000px;}
.y85_c00079{bottom:784.695000px;}
.y84_c00079{bottom:784.905000px;}
.y81_c00079{bottom:785.130000px;}
.y80_c00079{bottom:785.970000px;}
.y7b_c00079{bottom:798.405000px;}
.y7a_c00079{bottom:798.825000px;}
.y7d_c00079{bottom:799.905000px;}
.y78_c00079{bottom:800.130000px;}
.y7e_c00079{bottom:800.970000px;}
.y7c_c00079{bottom:801.195000px;}
.y79_c00079{bottom:802.050000px;}
.y75_c00079{bottom:813.405000px;}
.y72_c00079{bottom:813.825000px;}
.y77_c00079{bottom:814.470000px;}
.y74_c00079{bottom:814.905000px;}
.y71_c00079{bottom:815.130000px;}
.y76_c00079{bottom:815.550000px;}
.y73_c00079{bottom:815.970000px;}
.y6e_c00079{bottom:828.405000px;}
.y70_c00079{bottom:828.825000px;}
.y6d_c00079{bottom:830.130000px;}
.y6f_c00079{bottom:832.050000px;}
.y6c_c00079{bottom:842.325000px;}
.y6a_c00079{bottom:843.405000px;}
.y6b_c00079{bottom:844.470000px;}
.y68_c00079{bottom:844.695000px;}
.y69_c00079{bottom:845.550000px;}
.y67_c00079{bottom:856.470000px;}
.y66_c00079{bottom:856.905000px;}
.y64_c00079{bottom:858.405000px;}
.y65_c00079{bottom:858.630000px;}
.y63_c00079{bottom:860.550000px;}
.y62_c00079{bottom:871.470000px;}
.y61_c00079{bottom:872.130000px;}
.y60_c00079{bottom:872.325000px;}
.y5d_c00079{bottom:872.550000px;}
.y5e_c00079{bottom:873.405000px;}
.y5a_c00079{bottom:873.630000px;}
.y5b_c00079{bottom:874.470000px;}
.y5f_c00079{bottom:874.695000px;}
.y5c_c00079{bottom:875.550000px;}
.y57_c00079{bottom:886.470000px;}
.y55_c00079{bottom:887.130000px;}
.y56_c00079{bottom:887.325000px;}
.y59_c00079{bottom:889.050000px;}
.y58_c00079{bottom:889.470000px;}
.y54_c00079{bottom:900.825000px;}
.y53_c00079{bottom:901.905000px;}
.y4e_c00079{bottom:902.550000px;}
.y50_c00079{bottom:903.405000px;}
.y52_c00079{bottom:903.630000px;}
.y4f_c00079{bottom:904.050000px;}
.y51_c00079{bottom:904.470000px;}
.y4b_c00079{bottom:916.470000px;}
.y4a_c00079{bottom:916.905000px;}
.y4d_c00079{bottom:919.470000px;}
.y4c_c00079{bottom:920.550000px;}
.y49_c00079{bottom:931.050000px;}
.y48_c00079{bottom:931.905000px;}
.y46_c00079{bottom:932.325000px;}
.y47_c00079{bottom:932.970000px;}
.y45_c00079{bottom:933.195000px;}
.y44_c00079{bottom:933.405000px;}
.y40_c00079{bottom:934.050000px;}
.y41_c00079{bottom:934.470000px;}
.y42_c00079{bottom:934.695000px;}
.y43_c00079{bottom:935.550000px;}
.y3d_c00079{bottom:944.970000px;}
.y3f_c00079{bottom:945.825000px;}
.y3c_c00079{bottom:946.050000px;}
.y3b_c00079{bottom:948.195000px;}
.y3e_c00079{bottom:949.050000px;}
.y34_c00079{bottom:959.970000px;}
.y3a_c00079{bottom:960.405000px;}
.y38_c00079{bottom:961.050000px;}
.y37_c00079{bottom:961.905000px;}
.y39_c00079{bottom:962.130000px;}
.y36_c00079{bottom:962.970000px;}
.y35_c00079{bottom:964.050000px;}
.y2f_c00079{bottom:975.405000px;}
.y33_c00079{bottom:977.550000px;}
.y32_c00079{bottom:977.970000px;}
.y31_c00079{bottom:978.195000px;}
.y30_c00079{bottom:979.050000px;}
.y2d_c00079{bottom:989.325000px;}
.y2e_c00079{bottom:990.405000px;}
.y27_c00079{bottom:990.825000px;}
.y2c_c00079{bottom:991.050000px;}
.y2b_c00079{bottom:991.470000px;}
.y2a_c00079{bottom:991.905000px;}
.y26_c00079{bottom:992.550000px;}
.y29_c00079{bottom:992.970000px;}
.y28_c00079{bottom:993.195000px;}
.y23_c00079{bottom:1005.405000px;}
.y25_c00079{bottom:1005.825000px;}
.y22_c00079{bottom:1006.470000px;}
.y21_c00079{bottom:1007.130000px;}
.y24_c00079{bottom:1007.970000px;}
.y20_c00079{bottom:1018.905000px;}
.y1b_c00079{bottom:1019.550000px;}
.y1e_c00079{bottom:1020.405000px;}
.y1d_c00079{bottom:1021.470000px;}
.y1f_c00079{bottom:1021.695000px;}
.y1c_c00079{bottom:1022.550000px;}
.y19_c00079{bottom:1033.905000px;}
.y17_c00079{bottom:1034.325000px;}
.y13_c00079{bottom:1034.550000px;}
.y18_c00079{bottom:1035.405000px;}
.y1a_c00079{bottom:1036.050000px;}
.y14_c00079{bottom:1036.470000px;}
.y15_c00079{bottom:1036.695000px;}
.y16_c00079{bottom:1037.550000px;}
.y12_c00079{bottom:1047.825000px;}
.yb_c00079{bottom:1048.470000px;}
.yf_c00079{bottom:1048.905000px;}
.yd_c00079{bottom:1049.325000px;}
.ye_c00079{bottom:1049.550000px;}
.y10_c00079{bottom:1049.970000px;}
.y11_c00079{bottom:1051.050000px;}
.yc_c00079{bottom:1052.550000px;}
.ya_c00079{bottom:1062.825000px;}
.y6_c00079{bottom:1063.905000px;}
.y8_c00079{bottom:1064.130000px;}
.y3_c00079{bottom:1064.550000px;}
.y9_c00079{bottom:1064.970000px;}
.y4_c00079{bottom:1065.405000px;}
.y7_c00079{bottom:1066.050000px;}
.y5_c00079{bottom:1066.470000px;}
.y2_c00079{bottom:1099.905000px;}
.y1_c00079{bottom:1102.050000px;}
.ha_c00079{height:4.206533px;}
.h6_c00079{height:16.752334px;}
.h4_c00079{height:23.025234px;}
.h1_c00079{height:25.091602px;}
.h7_c00079{height:27.044502px;}
.h3_c00079{height:31.364502px;}
.h2_c00079{height:35.571035px;}
.h8_c00079{height:39.044502px;}
.h5_c00079{height:39.777568px;}
.h9_c00079{height:43.910303px;}
.hb_c00079{height:48.116836px;}
.h0_c00079{height:1335.000000px;}
.w0_c00079{width:880.500000px;}
.x0_c00079{left:0.000000px;}
.x2_c00079{left:151.080000px;}
.x2f_c00079{left:153.000000px;}
.x10_c00079{left:154.920000px;}
.x4f_c00079{left:160.920000px;}
.x8c_c00079{left:163.500000px;}
.x67_c00079{left:165.000000px;}
.x95_c00079{left:167.580000px;}
.x3_c00079{left:168.855000px;}
.x84_c00079{left:178.920000px;}
.x112_c00079{left:180.420000px;}
.xff_c00079{left:181.500000px;}
.x79_c00079{left:183.420000px;}
.xf8_c00079{left:186.000000px;}
.x5b_c00079{left:187.080000px;}
.xa6_c00079{left:189.420000px;}
.x30_c00079{left:190.500000px;}
.x4_c00079{left:192.000000px;}
.x106_c00079{left:196.500000px;}
.x50_c00079{left:197.580000px;}
.xe2_c00079{left:200.580000px;}
.xf5_c00079{left:202.500000px;}
.xf2_c00079{left:205.920000px;}
.xde_c00079{left:208.500000px;}
.x7a_c00079{left:210.000000px;}
.x85_c00079{left:214.500000px;}
.x43_c00079{left:216.420000px;}
.x31_c00079{left:219.420000px;}
.x100_c00079{left:222.000000px;}
.xcf_c00079{left:223.080000px;}
.x8d_c00079{left:224.355000px;}
.x10b_c00079{left:225.420000px;}
.x6d_c00079{left:226.500000px;}
.xeb_c00079{left:227.580000px;}
.x5f_c00079{left:229.080000px;}
.x68_c00079{left:232.080000px;}
.x86_c00079{left:234.000000px;}
.x11_c00079{left:235.500000px;}
.x3e_c00079{left:237.000000px;}
.x96_c00079{left:238.920000px;}
.x113_c00079{left:240.000000px;}
.x51_c00079{left:241.500000px;}
.x9b_c00079{left:243.420000px;}
.xec_c00079{left:244.920000px;}
.xe3_c00079{left:246.000000px;}
.xd2_c00079{left:247.920000px;}
.xab_c00079{left:249.000000px;}
.x1b_c00079{left:250.500000px;}
.x24_c00079{left:252.000000px;}
.x53_c00079{left:255.000000px;}
.x9e_c00079{left:256.080000px;}
.xcc_c00079{left:258.000000px;}
.xbb_c00079{left:259.500000px;}
.xc6_c00079{left:261.000000px;}
.x32_c00079{left:262.500000px;}
.x69_c00079{left:265.080000px;}
.x87_c00079{left:267.645000px;}
.x12_c00079{left:268.920000px;}
.x5c_c00079{left:270.000000px;}
.xa7_c00079{left:271.500000px;}
.x34_c00079{left:273.000000px;}
.xda_c00079{left:274.500000px;}
.xa2_c00079{left:276.000000px;}
.x5_c00079{left:277.500000px;}
.x8e_c00079{left:280.500000px;}
.xc7_c00079{left:283.500000px;}
.x44_c00079{left:285.000000px;}
.x10e_c00079{left:289.500000px;}
.xa1_c00079{left:291.000000px;}
.x35_c00079{left:292.500000px;}
.x13_c00079{left:294.000000px;}
.x3f_c00079{left:296.580000px;}
.x33_c00079{left:298.080000px;}
.xf3_c00079{left:300.000000px;}
.xdf_c00079{left:301.080000px;}
.x45_c00079{left:302.580000px;}
.x52_c00079{left:304.500000px;}
.x5d_c00079{left:305.580000px;}
.xbc_c00079{left:307.920000px;}
.xa3_c00079{left:309.000000px;}
.xd7_c00079{left:310.500000px;}
.x6e_c00079{left:312.855000px;}
.x6_c00079{left:315.000000px;}
.x9c_c00079{left:316.920000px;}
.x101_c00079{left:319.920000px;}
.xd3_c00079{left:321.000000px;}
.x60_c00079{left:322.080000px;}
.xbd_c00079{left:324.000000px;}
.x25_c00079{left:325.500000px;}
.x107_c00079{left:326.580000px;}
.x8f_c00079{left:329.580000px;}
.x6f_c00079{left:331.920000px;}
.x40_c00079{left:333.000000px;}
.x5e_c00079{left:334.500000px;}
.xc8_c00079{left:336.420000px;}
.xac_c00079{left:337.920000px;}
.x14_c00079{left:339.420000px;}
.x61_c00079{left:340.500000px;}
.xe4_c00079{left:342.000000px;}
.x9d_c00079{left:343.500000px;}
.xd4_c00079{left:344.580000px;}
.x108_c00079{left:346.920000px;}
.x15_c00079{left:348.000000px;}
.x7e_c00079{left:349.500000px;}
.x6a_c00079{left:351.000000px;}
.x97_c00079{left:352.920000px;}
.x36_c00079{left:354.645000px;}
.xe5_c00079{left:357.420000px;}
.x26_c00079{left:360.420000px;}
.x70_c00079{left:361.920000px;}
.x9f_c00079{left:364.080000px;}
.x41_c00079{left:367.920000px;}
.x54_c00079{left:370.500000px;}
.x10f_c00079{left:372.420000px;}
.xbe_c00079{left:374.580000px;}
.x27_c00079{left:376.500000px;}
.x102_c00079{left:378.000000px;}
.x1c_c00079{left:379.500000px;}
.x71_c00079{left:380.580000px;}
.x7_c00079{left:381.645000px;}
.x46_c00079{left:383.580000px;}
.x6b_c00079{left:385.920000px;}
.x114_c00079{left:387.000000px;}
.xed_c00079{left:388.080000px;}
.xc2_c00079{left:390.000000px;}
.xad_c00079{left:392.580000px;}
.x42_c00079{left:394.500000px;}
.x16_c00079{left:397.080000px;}
.x37_c00079{left:399.000000px;}
.x1_c00079{left:400.500000px;}
.x62_c00079{left:402.645000px;}
.x90_c00079{left:405.855000px;}
.x72_c00079{left:408.000000px;}
.xa8_c00079{left:409.920000px;}
.xe6_c00079{left:411.420000px;}
.x6c_c00079{left:412.500000px;}
.xdb_c00079{left:414.000000px;}
.xc9_c00079{left:417.000000px;}
.x98_c00079{left:418.500000px;}
.x55_c00079{left:419.580000px;}
.x103_c00079{left:421.920000px;}
.xe0_c00079{left:423.420000px;}
.x8_c00079{left:424.920000px;}
.x17_c00079{left:427.920000px;}
.xb4_c00079{left:429.420000px;}
.xee_c00079{left:432.420000px;}
.xc3_c00079{left:433.920000px;}
.xa0_c00079{left:435.000000px;}
.x38_c00079{left:436.080000px;}
.x28_c00079{left:438.000000px;}
.x9_c00079{left:439.920000px;}
.xd5_c00079{left:443.580000px;}
.xb5_c00079{left:445.500000px;}
.x63_c00079{left:447.000000px;}
.x56_c00079{left:448.920000px;}
.x7b_c00079{left:451.080000px;}
.xa9_c00079{left:453.420000px;}
.x39_c00079{left:454.500000px;}
.x7f_c00079{left:456.000000px;}
.x1d_c00079{left:458.580000px;}
.x64_c00079{left:460.500000px;}
.xf6_c00079{left:463.080000px;}
.x47_c00079{left:465.420000px;}
.xd6_c00079{left:471.000000px;}
.xd8_c00079{left:472.920000px;}
.x29_c00079{left:475.500000px;}
.xa_c00079{left:477.000000px;}
.x48_c00079{left:478.080000px;}
.xfe_c00079{left:480.000000px;}
.xe7_c00079{left:482.580000px;}
.x10c_c00079{left:484.080000px;}
.xca_c00079{left:486.645000px;}
.x99_c00079{left:489.000000px;}
.xef_c00079{left:490.920000px;}
.x115_c00079{left:494.580000px;}
.xaa_c00079{left:496.500000px;}
.xae_c00079{left:498.000000px;}
.x57_c00079{left:499.080000px;}
.x88_c00079{left:502.080000px;}
.x49_c00079{left:504.000000px;}
.xf9_c00079{left:505.920000px;}
.xaf_c00079{left:508.500000px;}
.x110_c00079{left:510.000000px;}
.x65_c00079{left:511.500000px;}
.x1e_c00079{left:513.000000px;}
.xb6_c00079{left:514.500000px;}
.xc4_c00079{left:516.645000px;}
.x109_c00079{left:517.920000px;}
.x58_c00079{left:519.000000px;}
.x91_c00079{left:520.080000px;}
.xb_c00079{left:523.080000px;}
.xd0_c00079{left:524.580000px;}
.x116_c00079{left:527.355000px;}
.xe8_c00079{left:528.420000px;}
.xcd_c00079{left:529.500000px;}
.x2a_c00079{left:531.000000px;}
.x3a_c00079{left:533.580000px;}
.xfa_c00079{left:535.500000px;}
.x104_c00079{left:537.420000px;}
.x4a_c00079{left:543.420000px;}
.x89_c00079{left:544.500000px;}
.x73_c00079{left:547.920000px;}
.xd9_c00079{left:550.500000px;}
.xb0_c00079{left:553.500000px;}
.x7c_c00079{left:555.420000px;}
.xb7_c00079{left:558.420000px;}
.xf7_c00079{left:559.920000px;}
.x4b_c00079{left:561.000000px;}
.xc5_c00079{left:564.420000px;}
.xf0_c00079{left:565.500000px;}
.x1f_c00079{left:568.080000px;}
.xb8_c00079{left:570.000000px;}
.xf4_c00079{left:571.080000px;}
.xbf_c00079{left:573.000000px;}
.x3b_c00079{left:575.355000px;}
.x117_c00079{left:576.420000px;}
.x2b_c00079{left:577.920000px;}
.xfb_c00079{left:580.920000px;}
.x7d_c00079{left:582.000000px;}
.x111_c00079{left:583.500000px;}
.x74_c00079{left:585.000000px;}
.x4c_c00079{left:586.920000px;}
.x92_c00079{left:591.000000px;}
.x3c_c00079{left:592.500000px;}
.x80_c00079{left:594.000000px;}
.x20_c00079{left:595.080000px;}
.x75_c00079{left:597.000000px;}
.xc_c00079{left:601.080000px;}
.x8a_c00079{left:602.580000px;}
.x2c_c00079{left:604.080000px;}
.x81_c00079{left:606.000000px;}
.xc0_c00079{left:609.420000px;}
.xb9_c00079{left:610.500000px;}
.xfc_c00079{left:612.000000px;}
.x93_c00079{left:613.500000px;}
.xa4_c00079{left:614.580000px;}
.x66_c00079{left:616.500000px;}
.x59_c00079{left:620.580000px;}
.x4d_c00079{left:622.500000px;}
.xb1_c00079{left:624.000000px;}
.x105_c00079{left:627.420000px;}
.x94_c00079{left:628.500000px;}
.x18_c00079{left:630.000000px;}
.x76_c00079{left:632.580000px;}
.xc1_c00079{left:634.500000px;}
.x4e_c00079{left:636.000000px;}
.x21_c00079{left:637.500000px;}
.xe9_c00079{left:643.500000px;}
.x82_c00079{left:645.000000px;}
.xba_c00079{left:646.920000px;}
.xfd_c00079{left:651.420000px;}
.xb2_c00079{left:652.920000px;}
.x83_c00079{left:654.000000px;}
.xd_c00079{left:655.500000px;}
.x10a_c00079{left:658.500000px;}
.x3d_c00079{left:659.580000px;}
.x19_c00079{left:663.420000px;}
.xe_c00079{left:664.500000px;}
.x10d_c00079{left:666.420000px;}
.x22_c00079{left:667.920000px;}
.x5a_c00079{left:670.500000px;}
.xa5_c00079{left:672.420000px;}
.x77_c00079{left:673.500000px;}
.xdc_c00079{left:676.080000px;}
.xf1_c00079{left:678.000000px;}
.xb3_c00079{left:679.500000px;}
.x8b_c00079{left:680.580000px;}
.x2d_c00079{left:685.920000px;}
.x1a_c00079{left:688.500000px;}
.xce_c00079{left:691.500000px;}
.x23_c00079{left:693.000000px;}
.xdd_c00079{left:696.000000px;}
.x2e_c00079{left:697.500000px;}
.x78_c00079{left:698.580000px;}
.xf_c00079{left:703.080000px;}
.xea_c00079{left:705.000000px;}
.xd1_c00079{left:706.500000px;}
.xcb_c00079{left:707.580000px;}
.xe1_c00079{left:709.920000px;}
.x118_c00079{left:714.000000px;}
.x9a_c00079{left:726.000000px;}
@media print{
.v1_c00079{vertical-align:-3.840000pt;}
.v0_c00079{vertical-align:0.000000pt;}
.v2_c00079{vertical-align:6.826667pt;}
.ls2_c00079{letter-spacing:0.000000pt;}
.ls0_c00079{letter-spacing:11.251200pt;}
.ls1_c00079{letter-spacing:15.837867pt;}
.ws0_c00079{word-spacing:-13.237333pt;}
.ws5_c00079{word-spacing:-2.593277pt;}
.ws1_c00079{word-spacing:-0.316939pt;}
.ws3_c00079{word-spacing:-0.274133pt;}
.ws6_c00079{word-spacing:0.000000pt;}
.ws4_c00079{word-spacing:3.615982pt;}
.ws2_c00079{word-spacing:5.701278pt;}
._0_c00079{width:5.352000pt;}
.fs7_c00079{font-size:3.040000pt;}
.fs5_c00079{font-size:12.106667pt;}
.fs3_c00079{font-size:16.640000pt;}
.fs0_c00079{font-size:18.133333pt;}
.fs2_c00079{font-size:22.666667pt;}
.fs1_c00079{font-size:25.706667pt;}
.fs4_c00079{font-size:28.746667pt;}
.fs6_c00079{font-size:31.733333pt;}
.fs8_c00079{font-size:34.773333pt;}
.y0_c00079{bottom:0.000000pt;}
.y133_c00079{bottom:223.773333pt;}
.y137_c00079{bottom:224.160000pt;}
.y132_c00079{bottom:225.106667pt;}
.y138_c00079{bottom:225.693333pt;}
.y139_c00079{bottom:225.893333pt;}
.y136_c00079{bottom:226.066667pt;}
.y135_c00079{bottom:226.640000pt;}
.y134_c00079{bottom:227.026667pt;}
.y12a_c00079{bottom:241.693333pt;}
.y129_c00079{bottom:242.440000pt;}
.y12c_c00079{bottom:243.026667pt;}
.y131_c00079{bottom:243.226667pt;}
.y12d_c00079{bottom:243.600000pt;}
.y12e_c00079{bottom:243.773333pt;}
.y128_c00079{bottom:244.360000pt;}
.y130_c00079{bottom:244.733333pt;}
.y12b_c00079{bottom:245.306667pt;}
.y12f_c00079{bottom:245.693333pt;}
.y124_c00079{bottom:260.160000pt;}
.y123_c00079{bottom:260.733333pt;}
.y125_c00079{bottom:261.106667pt;}
.y127_c00079{bottom:261.693333pt;}
.y126_c00079{bottom:261.893333pt;}
.y122_c00079{bottom:263.026667pt;}
.y11c_c00079{bottom:277.106667pt;}
.y11d_c00079{bottom:279.026667pt;}
.y11f_c00079{bottom:279.400000pt;}
.y121_c00079{bottom:279.973333pt;}
.y11e_c00079{bottom:280.360000pt;}
.y120_c00079{bottom:281.306667pt;}
.y116_c00079{bottom:294.440000pt;}
.y11a_c00079{bottom:295.773333pt;}
.y119_c00079{bottom:296.360000pt;}
.y11b_c00079{bottom:296.560000pt;}
.y117_c00079{bottom:297.306667pt;}
.y118_c00079{bottom:297.693333pt;}
.y115_c00079{bottom:312.360000pt;}
.y113_c00079{bottom:312.733333pt;}
.y114_c00079{bottom:313.106667pt;}
.y112_c00079{bottom:315.026667pt;}
.y111_c00079{bottom:330.440000pt;}
.y110_c00079{bottom:331.773333pt;}
.y10e_c00079{bottom:332.360000pt;}
.y10f_c00079{bottom:333.693333pt;}
.y109_c00079{bottom:347.026667pt;}
.y10b_c00079{bottom:347.773333pt;}
.y108_c00079{bottom:347.973333pt;}
.y10d_c00079{bottom:348.733333pt;}
.y10a_c00079{bottom:349.106667pt;}
.y107_c00079{bottom:349.693333pt;}
.y10c_c00079{bottom:349.893333pt;}
.y106_c00079{bottom:365.106667pt;}
.y102_c00079{bottom:365.493333pt;}
.y104_c00079{bottom:366.266667pt;}
.yff_c00079{bottom:366.440000pt;}
.y105_c00079{bottom:367.026667pt;}
.y100_c00079{bottom:367.226667pt;}
.y103_c00079{bottom:367.973333pt;}
.y101_c00079{bottom:368.360000pt;}
.yfe_c00079{bottom:382.440000pt;}
.yf5_c00079{bottom:382.640000pt;}
.yfa_c00079{bottom:383.026667pt;}
.yfb_c00079{bottom:383.600000pt;}
.yf8_c00079{bottom:383.773333pt;}
.yfc_c00079{bottom:384.360000pt;}
.yfd_c00079{bottom:384.560000pt;}
.yf9_c00079{bottom:385.306667pt;}
.yf7_c00079{bottom:385.693333pt;}
.yf6_c00079{bottom:386.640000pt;}
.yf3_c00079{bottom:399.026667pt;}
.yf1_c00079{bottom:399.773333pt;}
.yef_c00079{bottom:401.106667pt;}
.yf4_c00079{bottom:401.306667pt;}
.yee_c00079{bottom:401.693333pt;}
.yf2_c00079{bottom:402.640000pt;}
.yf0_c00079{bottom:403.026667pt;}
.yec_c00079{bottom:417.106667pt;}
.ye8_c00079{bottom:418.440000pt;}
.yea_c00079{bottom:419.400000pt;}
.yed_c00079{bottom:419.973333pt;}
.ye9_c00079{bottom:420.360000pt;}
.yeb_c00079{bottom:421.693333pt;}
.ye7_c00079{bottom:435.773333pt;}
.ye5_c00079{bottom:437.693333pt;}
.ye6_c00079{bottom:439.026667pt;}
.ye4_c00079{bottom:452.360000pt;}
.ye3_c00079{bottom:453.106667pt;}
.ye2_c00079{bottom:455.026667pt;}
.yde_c00079{bottom:455.226667pt;}
.ye1_c00079{bottom:455.973333pt;}
.ydf_c00079{bottom:456.360000pt;}
.ye0_c00079{bottom:457.306667pt;}
.yd9_c00079{bottom:470.440000pt;}
.ydc_c00079{bottom:471.973333pt;}
.ydb_c00079{bottom:472.360000pt;}
.ydd_c00079{bottom:473.306667pt;}
.yda_c00079{bottom:473.706667pt;}
.yd4_c00079{bottom:499.400000pt;}
.yd5_c00079{bottom:499.600000pt;}
.yd8_c00079{bottom:500.360000pt;}
.yd7_c00079{bottom:500.560000pt;}
.yd6_c00079{bottom:501.306667pt;}
.yd0_c00079{bottom:511.973333pt;}
.yce_c00079{bottom:512.733333pt;}
.yd1_c00079{bottom:512.933333pt;}
.ycf_c00079{bottom:513.693333pt;}
.yd2_c00079{bottom:513.893333pt;}
.ycd_c00079{bottom:514.640000pt;}
.yd3_c00079{bottom:515.600000pt;}
.ycb_c00079{bottom:525.693333pt;}
.yc7_c00079{bottom:526.266667pt;}
.yc8_c00079{bottom:527.026667pt;}
.ycc_c00079{bottom:527.600000pt;}
.yca_c00079{bottom:528.173333pt;}
.yc9_c00079{bottom:528.933333pt;}
.yc6_c00079{bottom:539.026667pt;}
.yc4_c00079{bottom:539.600000pt;}
.yc5_c00079{bottom:540.933333pt;}
.yc3_c00079{bottom:541.506667pt;}
.yc2_c00079{bottom:551.400000pt;}
.ybd_c00079{bottom:551.600000pt;}
.ybf_c00079{bottom:552.360000pt;}
.yc0_c00079{bottom:553.306667pt;}
.yc1_c00079{bottom:553.506667pt;}
.ybe_c00079{bottom:554.266667pt;}
.ybc_c00079{bottom:564.733333pt;}
.yba_c00079{bottom:564.933333pt;}
.ybb_c00079{bottom:566.640000pt;}
.yb8_c00079{bottom:577.306667pt;}
.yb7_c00079{bottom:578.066667pt;}
.yb6_c00079{bottom:579.026667pt;}
.yb9_c00079{bottom:579.226667pt;}
.yb5_c00079{bottom:579.973333pt;}
.yb4_c00079{bottom:580.933333pt;}
.yb3_c00079{bottom:591.026667pt;}
.yae_c00079{bottom:591.400000pt;}
.yb1_c00079{bottom:591.600000pt;}
.yac_c00079{bottom:592.360000pt;}
.yaf_c00079{bottom:592.560000pt;}
.yb2_c00079{bottom:592.933333pt;}
.yb0_c00079{bottom:593.306667pt;}
.yad_c00079{bottom:594.266667pt;}
.yab_c00079{bottom:602.640000pt;}
.ya9_c00079{bottom:604.360000pt;}
.ya5_c00079{bottom:604.733333pt;}
.ya4_c00079{bottom:604.933333pt;}
.yaa_c00079{bottom:605.306667pt;}
.ya8_c00079{bottom:605.693333pt;}
.ya7_c00079{bottom:606.266667pt;}
.ya6_c00079{bottom:606.640000pt;}
.ya2_c00079{bottom:615.973333pt;}
.ya3_c00079{bottom:616.733333pt;}
.y9f_c00079{bottom:617.693333pt;}
.ya1_c00079{bottom:618.640000pt;}
.ya0_c00079{bottom:618.840000pt;}
.y9d_c00079{bottom:619.600000pt;}
.y9e_c00079{bottom:619.973333pt;}
.y98_c00079{bottom:630.066667pt;}
.y9c_c00079{bottom:630.640000pt;}
.y99_c00079{bottom:631.026667pt;}
.y9a_c00079{bottom:631.973333pt;}
.y9b_c00079{bottom:632.560000pt;}
.y91_c00079{bottom:642.640000pt;}
.y95_c00079{bottom:643.400000pt;}
.y97_c00079{bottom:643.600000pt;}
.y96_c00079{bottom:644.360000pt;}
.y93_c00079{bottom:644.560000pt;}
.y92_c00079{bottom:645.306667pt;}
.y94_c00079{bottom:646.266667pt;}
.y8e_c00079{bottom:656.733333pt;}
.y8f_c00079{bottom:657.693333pt;}
.y90_c00079{bottom:658.640000pt;}
.y89_c00079{bottom:669.306667pt;}
.y8d_c00079{bottom:669.693333pt;}
.y8a_c00079{bottom:671.026667pt;}
.y8c_c00079{bottom:671.226667pt;}
.y8b_c00079{bottom:672.933333pt;}
.y87_c00079{bottom:683.400000pt;}
.y86_c00079{bottom:684.360000pt;}
.y88_c00079{bottom:686.266667pt;}
.y7f_c00079{bottom:695.973333pt;}
.y83_c00079{bottom:696.733333pt;}
.y82_c00079{bottom:696.933333pt;}
.y85_c00079{bottom:697.506667pt;}
.y84_c00079{bottom:697.693333pt;}
.y81_c00079{bottom:697.893333pt;}
.y80_c00079{bottom:698.640000pt;}
.y7b_c00079{bottom:709.693333pt;}
.y7a_c00079{bottom:710.066667pt;}
.y7d_c00079{bottom:711.026667pt;}
.y78_c00079{bottom:711.226667pt;}
.y7e_c00079{bottom:711.973333pt;}
.y7c_c00079{bottom:712.173333pt;}
.y79_c00079{bottom:712.933333pt;}
.y75_c00079{bottom:723.026667pt;}
.y72_c00079{bottom:723.400000pt;}
.y77_c00079{bottom:723.973333pt;}
.y74_c00079{bottom:724.360000pt;}
.y71_c00079{bottom:724.560000pt;}
.y76_c00079{bottom:724.933333pt;}
.y73_c00079{bottom:725.306667pt;}
.y6e_c00079{bottom:736.360000pt;}
.y70_c00079{bottom:736.733333pt;}
.y6d_c00079{bottom:737.893333pt;}
.y6f_c00079{bottom:739.600000pt;}
.y6c_c00079{bottom:748.733333pt;}
.y6a_c00079{bottom:749.693333pt;}
.y6b_c00079{bottom:750.640000pt;}
.y68_c00079{bottom:750.840000pt;}
.y69_c00079{bottom:751.600000pt;}
.y67_c00079{bottom:761.306667pt;}
.y66_c00079{bottom:761.693333pt;}
.y64_c00079{bottom:763.026667pt;}
.y65_c00079{bottom:763.226667pt;}
.y63_c00079{bottom:764.933333pt;}
.y62_c00079{bottom:774.640000pt;}
.y61_c00079{bottom:775.226667pt;}
.y60_c00079{bottom:775.400000pt;}
.y5d_c00079{bottom:775.600000pt;}
.y5e_c00079{bottom:776.360000pt;}
.y5a_c00079{bottom:776.560000pt;}
.y5b_c00079{bottom:777.306667pt;}
.y5f_c00079{bottom:777.506667pt;}
.y5c_c00079{bottom:778.266667pt;}
.y57_c00079{bottom:787.973333pt;}
.y55_c00079{bottom:788.560000pt;}
.y56_c00079{bottom:788.733333pt;}
.y59_c00079{bottom:790.266667pt;}
.y58_c00079{bottom:790.640000pt;}
.y54_c00079{bottom:800.733333pt;}
.y53_c00079{bottom:801.693333pt;}
.y4e_c00079{bottom:802.266667pt;}
.y50_c00079{bottom:803.026667pt;}
.y52_c00079{bottom:803.226667pt;}
.y4f_c00079{bottom:803.600000pt;}
.y51_c00079{bottom:803.973333pt;}
.y4b_c00079{bottom:814.640000pt;}
.y4a_c00079{bottom:815.026667pt;}
.y4d_c00079{bottom:817.306667pt;}
.y4c_c00079{bottom:818.266667pt;}
.y49_c00079{bottom:827.600000pt;}
.y48_c00079{bottom:828.360000pt;}
.y46_c00079{bottom:828.733333pt;}
.y47_c00079{bottom:829.306667pt;}
.y45_c00079{bottom:829.506667pt;}
.y44_c00079{bottom:829.693333pt;}
.y40_c00079{bottom:830.266667pt;}
.y41_c00079{bottom:830.640000pt;}
.y42_c00079{bottom:830.840000pt;}
.y43_c00079{bottom:831.600000pt;}
.y3d_c00079{bottom:839.973333pt;}
.y3f_c00079{bottom:840.733333pt;}
.y3c_c00079{bottom:840.933333pt;}
.y3b_c00079{bottom:842.840000pt;}
.y3e_c00079{bottom:843.600000pt;}
.y34_c00079{bottom:853.306667pt;}
.y3a_c00079{bottom:853.693333pt;}
.y38_c00079{bottom:854.266667pt;}
.y37_c00079{bottom:855.026667pt;}
.y39_c00079{bottom:855.226667pt;}
.y36_c00079{bottom:855.973333pt;}
.y35_c00079{bottom:856.933333pt;}
.y2f_c00079{bottom:867.026667pt;}
.y33_c00079{bottom:868.933333pt;}
.y32_c00079{bottom:869.306667pt;}
.y31_c00079{bottom:869.506667pt;}
.y30_c00079{bottom:870.266667pt;}
.y2d_c00079{bottom:879.400000pt;}
.y2e_c00079{bottom:880.360000pt;}
.y27_c00079{bottom:880.733333pt;}
.y2c_c00079{bottom:880.933333pt;}
.y2b_c00079{bottom:881.306667pt;}
.y2a_c00079{bottom:881.693333pt;}
.y26_c00079{bottom:882.266667pt;}
.y29_c00079{bottom:882.640000pt;}
.y28_c00079{bottom:882.840000pt;}
.y23_c00079{bottom:893.693333pt;}
.y25_c00079{bottom:894.066667pt;}
.y22_c00079{bottom:894.640000pt;}
.y21_c00079{bottom:895.226667pt;}
.y24_c00079{bottom:895.973333pt;}
.y20_c00079{bottom:905.693333pt;}
.y1b_c00079{bottom:906.266667pt;}
.y1e_c00079{bottom:907.026667pt;}
.y1d_c00079{bottom:907.973333pt;}
.y1f_c00079{bottom:908.173333pt;}
.y1c_c00079{bottom:908.933333pt;}
.y19_c00079{bottom:919.026667pt;}
.y17_c00079{bottom:919.400000pt;}
.y13_c00079{bottom:919.600000pt;}
.y18_c00079{bottom:920.360000pt;}
.y1a_c00079{bottom:920.933333pt;}
.y14_c00079{bottom:921.306667pt;}
.y15_c00079{bottom:921.506667pt;}
.y16_c00079{bottom:922.266667pt;}
.y12_c00079{bottom:931.400000pt;}
.yb_c00079{bottom:931.973333pt;}
.yf_c00079{bottom:932.360000pt;}
.yd_c00079{bottom:932.733333pt;}
.ye_c00079{bottom:932.933333pt;}
.y10_c00079{bottom:933.306667pt;}
.y11_c00079{bottom:934.266667pt;}
.yc_c00079{bottom:935.600000pt;}
.ya_c00079{bottom:944.733333pt;}
.y6_c00079{bottom:945.693333pt;}
.y8_c00079{bottom:945.893333pt;}
.y3_c00079{bottom:946.266667pt;}
.y9_c00079{bottom:946.640000pt;}
.y4_c00079{bottom:947.026667pt;}
.y7_c00079{bottom:947.600000pt;}
.y5_c00079{bottom:947.973333pt;}
.y2_c00079{bottom:977.693333pt;}
.y1_c00079{bottom:979.600000pt;}
.ha_c00079{height:3.739141pt;}
.h6_c00079{height:14.890964pt;}
.h4_c00079{height:20.466875pt;}
.h1_c00079{height:22.303646pt;}
.h7_c00079{height:24.039557pt;}
.h3_c00079{height:27.879557pt;}
.h2_c00079{height:31.618698pt;}
.h8_c00079{height:34.706224pt;}
.h5_c00079{height:35.357839pt;}
.h9_c00079{height:39.031380pt;}
.hb_c00079{height:42.770521pt;}
.h0_c00079{height:1186.666667pt;}
.w0_c00079{width:782.666667pt;}
.x0_c00079{left:0.000000pt;}
.x2_c00079{left:134.293333pt;}
.x2f_c00079{left:136.000000pt;}
.x10_c00079{left:137.706667pt;}
.x4f_c00079{left:143.040000pt;}
.x8c_c00079{left:145.333333pt;}
.x67_c00079{left:146.666667pt;}
.x95_c00079{left:148.960000pt;}
.x3_c00079{left:150.093333pt;}
.x84_c00079{left:159.040000pt;}
.x112_c00079{left:160.373333pt;}
.xff_c00079{left:161.333333pt;}
.x79_c00079{left:163.040000pt;}
.xf8_c00079{left:165.333333pt;}
.x5b_c00079{left:166.293333pt;}
.xa6_c00079{left:168.373333pt;}
.x30_c00079{left:169.333333pt;}
.x4_c00079{left:170.666667pt;}
.x106_c00079{left:174.666667pt;}
.x50_c00079{left:175.626667pt;}
.xe2_c00079{left:178.293333pt;}
.xf5_c00079{left:180.000000pt;}
.xf2_c00079{left:183.040000pt;}
.xde_c00079{left:185.333333pt;}
.x7a_c00079{left:186.666667pt;}
.x85_c00079{left:190.666667pt;}
.x43_c00079{left:192.373333pt;}
.x31_c00079{left:195.040000pt;}
.x100_c00079{left:197.333333pt;}
.xcf_c00079{left:198.293333pt;}
.x8d_c00079{left:199.426667pt;}
.x10b_c00079{left:200.373333pt;}
.x6d_c00079{left:201.333333pt;}
.xeb_c00079{left:202.293333pt;}
.x5f_c00079{left:203.626667pt;}
.x68_c00079{left:206.293333pt;}
.x86_c00079{left:208.000000pt;}
.x11_c00079{left:209.333333pt;}
.x3e_c00079{left:210.666667pt;}
.x96_c00079{left:212.373333pt;}
.x113_c00079{left:213.333333pt;}
.x51_c00079{left:214.666667pt;}
.x9b_c00079{left:216.373333pt;}
.xec_c00079{left:217.706667pt;}
.xe3_c00079{left:218.666667pt;}
.xd2_c00079{left:220.373333pt;}
.xab_c00079{left:221.333333pt;}
.x1b_c00079{left:222.666667pt;}
.x24_c00079{left:224.000000pt;}
.x53_c00079{left:226.666667pt;}
.x9e_c00079{left:227.626667pt;}
.xcc_c00079{left:229.333333pt;}
.xbb_c00079{left:230.666667pt;}
.xc6_c00079{left:232.000000pt;}
.x32_c00079{left:233.333333pt;}
.x69_c00079{left:235.626667pt;}
.x87_c00079{left:237.906667pt;}
.x12_c00079{left:239.040000pt;}
.x5c_c00079{left:240.000000pt;}
.xa7_c00079{left:241.333333pt;}
.x34_c00079{left:242.666667pt;}
.xda_c00079{left:244.000000pt;}
.xa2_c00079{left:245.333333pt;}
.x5_c00079{left:246.666667pt;}
.x8e_c00079{left:249.333333pt;}
.xc7_c00079{left:252.000000pt;}
.x44_c00079{left:253.333333pt;}
.x10e_c00079{left:257.333333pt;}
.xa1_c00079{left:258.666667pt;}
.x35_c00079{left:260.000000pt;}
.x13_c00079{left:261.333333pt;}
.x3f_c00079{left:263.626667pt;}
.x33_c00079{left:264.960000pt;}
.xf3_c00079{left:266.666667pt;}
.xdf_c00079{left:267.626667pt;}
.x45_c00079{left:268.960000pt;}
.x52_c00079{left:270.666667pt;}
.x5d_c00079{left:271.626667pt;}
.xbc_c00079{left:273.706667pt;}
.xa3_c00079{left:274.666667pt;}
.xd7_c00079{left:276.000000pt;}
.x6e_c00079{left:278.093333pt;}
.x6_c00079{left:280.000000pt;}
.x9c_c00079{left:281.706667pt;}
.x101_c00079{left:284.373333pt;}
.xd3_c00079{left:285.333333pt;}
.x60_c00079{left:286.293333pt;}
.xbd_c00079{left:288.000000pt;}
.x25_c00079{left:289.333333pt;}
.x107_c00079{left:290.293333pt;}
.x8f_c00079{left:292.960000pt;}
.x6f_c00079{left:295.040000pt;}
.x40_c00079{left:296.000000pt;}
.x5e_c00079{left:297.333333pt;}
.xc8_c00079{left:299.040000pt;}
.xac_c00079{left:300.373333pt;}
.x14_c00079{left:301.706667pt;}
.x61_c00079{left:302.666667pt;}
.xe4_c00079{left:304.000000pt;}
.x9d_c00079{left:305.333333pt;}
.xd4_c00079{left:306.293333pt;}
.x108_c00079{left:308.373333pt;}
.x15_c00079{left:309.333333pt;}
.x7e_c00079{left:310.666667pt;}
.x6a_c00079{left:312.000000pt;}
.x97_c00079{left:313.706667pt;}
.x36_c00079{left:315.240000pt;}
.xe5_c00079{left:317.706667pt;}
.x26_c00079{left:320.373333pt;}
.x70_c00079{left:321.706667pt;}
.x9f_c00079{left:323.626667pt;}
.x41_c00079{left:327.040000pt;}
.x54_c00079{left:329.333333pt;}
.x10f_c00079{left:331.040000pt;}
.xbe_c00079{left:332.960000pt;}
.x27_c00079{left:334.666667pt;}
.x102_c00079{left:336.000000pt;}
.x1c_c00079{left:337.333333pt;}
.x71_c00079{left:338.293333pt;}
.x7_c00079{left:339.240000pt;}
.x46_c00079{left:340.960000pt;}
.x6b_c00079{left:343.040000pt;}
.x114_c00079{left:344.000000pt;}
.xed_c00079{left:344.960000pt;}
.xc2_c00079{left:346.666667pt;}
.xad_c00079{left:348.960000pt;}
.x42_c00079{left:350.666667pt;}
.x16_c00079{left:352.960000pt;}
.x37_c00079{left:354.666667pt;}
.x1_c00079{left:356.000000pt;}
.x62_c00079{left:357.906667pt;}
.x90_c00079{left:360.760000pt;}
.x72_c00079{left:362.666667pt;}
.xa8_c00079{left:364.373333pt;}
.xe6_c00079{left:365.706667pt;}
.x6c_c00079{left:366.666667pt;}
.xdb_c00079{left:368.000000pt;}
.xc9_c00079{left:370.666667pt;}
.x98_c00079{left:372.000000pt;}
.x55_c00079{left:372.960000pt;}
.x103_c00079{left:375.040000pt;}
.xe0_c00079{left:376.373333pt;}
.x8_c00079{left:377.706667pt;}
.x17_c00079{left:380.373333pt;}
.xb4_c00079{left:381.706667pt;}
.xee_c00079{left:384.373333pt;}
.xc3_c00079{left:385.706667pt;}
.xa0_c00079{left:386.666667pt;}
.x38_c00079{left:387.626667pt;}
.x28_c00079{left:389.333333pt;}
.x9_c00079{left:391.040000pt;}
.xd5_c00079{left:394.293333pt;}
.xb5_c00079{left:396.000000pt;}
.x63_c00079{left:397.333333pt;}
.x56_c00079{left:399.040000pt;}
.x7b_c00079{left:400.960000pt;}
.xa9_c00079{left:403.040000pt;}
.x39_c00079{left:404.000000pt;}
.x7f_c00079{left:405.333333pt;}
.x1d_c00079{left:407.626667pt;}
.x64_c00079{left:409.333333pt;}
.xf6_c00079{left:411.626667pt;}
.x47_c00079{left:413.706667pt;}
.xd6_c00079{left:418.666667pt;}
.xd8_c00079{left:420.373333pt;}
.x29_c00079{left:422.666667pt;}
.xa_c00079{left:424.000000pt;}
.x48_c00079{left:424.960000pt;}
.xfe_c00079{left:426.666667pt;}
.xe7_c00079{left:428.960000pt;}
.x10c_c00079{left:430.293333pt;}
.xca_c00079{left:432.573333pt;}
.x99_c00079{left:434.666667pt;}
.xef_c00079{left:436.373333pt;}
.x115_c00079{left:439.626667pt;}
.xaa_c00079{left:441.333333pt;}
.xae_c00079{left:442.666667pt;}
.x57_c00079{left:443.626667pt;}
.x88_c00079{left:446.293333pt;}
.x49_c00079{left:448.000000pt;}
.xf9_c00079{left:449.706667pt;}
.xaf_c00079{left:452.000000pt;}
.x110_c00079{left:453.333333pt;}
.x65_c00079{left:454.666667pt;}
.x1e_c00079{left:456.000000pt;}
.xb6_c00079{left:457.333333pt;}
.xc4_c00079{left:459.240000pt;}
.x109_c00079{left:460.373333pt;}
.x58_c00079{left:461.333333pt;}
.x91_c00079{left:462.293333pt;}
.xb_c00079{left:464.960000pt;}
.xd0_c00079{left:466.293333pt;}
.x116_c00079{left:468.760000pt;}
.xe8_c00079{left:469.706667pt;}
.xcd_c00079{left:470.666667pt;}
.x2a_c00079{left:472.000000pt;}
.x3a_c00079{left:474.293333pt;}
.xfa_c00079{left:476.000000pt;}
.x104_c00079{left:477.706667pt;}
.x4a_c00079{left:483.040000pt;}
.x89_c00079{left:484.000000pt;}
.x73_c00079{left:487.040000pt;}
.xd9_c00079{left:489.333333pt;}
.xb0_c00079{left:492.000000pt;}
.x7c_c00079{left:493.706667pt;}
.xb7_c00079{left:496.373333pt;}
.xf7_c00079{left:497.706667pt;}
.x4b_c00079{left:498.666667pt;}
.xc5_c00079{left:501.706667pt;}
.xf0_c00079{left:502.666667pt;}
.x1f_c00079{left:504.960000pt;}
.xb8_c00079{left:506.666667pt;}
.xf4_c00079{left:507.626667pt;}
.xbf_c00079{left:509.333333pt;}
.x3b_c00079{left:511.426667pt;}
.x117_c00079{left:512.373333pt;}
.x2b_c00079{left:513.706667pt;}
.xfb_c00079{left:516.373333pt;}
.x7d_c00079{left:517.333333pt;}
.x111_c00079{left:518.666667pt;}
.x74_c00079{left:520.000000pt;}
.x4c_c00079{left:521.706667pt;}
.x92_c00079{left:525.333333pt;}
.x3c_c00079{left:526.666667pt;}
.x80_c00079{left:528.000000pt;}
.x20_c00079{left:528.960000pt;}
.x75_c00079{left:530.666667pt;}
.xc_c00079{left:534.293333pt;}
.x8a_c00079{left:535.626667pt;}
.x2c_c00079{left:536.960000pt;}
.x81_c00079{left:538.666667pt;}
.xc0_c00079{left:541.706667pt;}
.xb9_c00079{left:542.666667pt;}
.xfc_c00079{left:544.000000pt;}
.x93_c00079{left:545.333333pt;}
.xa4_c00079{left:546.293333pt;}
.x66_c00079{left:548.000000pt;}
.x59_c00079{left:551.626667pt;}
.x4d_c00079{left:553.333333pt;}
.xb1_c00079{left:554.666667pt;}
.x105_c00079{left:557.706667pt;}
.x94_c00079{left:558.666667pt;}
.x18_c00079{left:560.000000pt;}
.x76_c00079{left:562.293333pt;}
.xc1_c00079{left:564.000000pt;}
.x4e_c00079{left:565.333333pt;}
.x21_c00079{left:566.666667pt;}
.xe9_c00079{left:572.000000pt;}
.x82_c00079{left:573.333333pt;}
.xba_c00079{left:575.040000pt;}
.xfd_c00079{left:579.040000pt;}
.xb2_c00079{left:580.373333pt;}
.x83_c00079{left:581.333333pt;}
.xd_c00079{left:582.666667pt;}
.x10a_c00079{left:585.333333pt;}
.x3d_c00079{left:586.293333pt;}
.x19_c00079{left:589.706667pt;}
.xe_c00079{left:590.666667pt;}
.x10d_c00079{left:592.373333pt;}
.x22_c00079{left:593.706667pt;}
.x5a_c00079{left:596.000000pt;}
.xa5_c00079{left:597.706667pt;}
.x77_c00079{left:598.666667pt;}
.xdc_c00079{left:600.960000pt;}
.xf1_c00079{left:602.666667pt;}
.xb3_c00079{left:604.000000pt;}
.x8b_c00079{left:604.960000pt;}
.x2d_c00079{left:609.706667pt;}
.x1a_c00079{left:612.000000pt;}
.xce_c00079{left:614.666667pt;}
.x23_c00079{left:616.000000pt;}
.xdd_c00079{left:618.666667pt;}
.x2e_c00079{left:620.000000pt;}
.x78_c00079{left:620.960000pt;}
.xf_c00079{left:624.960000pt;}
.xea_c00079{left:626.666667pt;}
.xd1_c00079{left:628.000000pt;}
.xcb_c00079{left:628.960000pt;}
.xe1_c00079{left:631.040000pt;}
.x118_c00079{left:634.666667pt;}
.x9a_c00079{left:645.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_66bdefc9caabd66a2dd5a12c.woff2')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:1.688965;font-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_c00080{transform:matrix(0.353361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353361,0.000000,0.000000,0.250000,0,0);}
.m49_c00080{transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);}
.m27_c00080{transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);}
.m20_c00080{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m3e_c00080{transform:matrix(0.383581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383581,0.000000,0.000000,0.250000,0,0);}
.m29_c00080{transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);}
.m3a_c00080{transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);}
.m48_c00080{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m28_c00080{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m22_c00080{transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);}
.m46_c00080{transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);}
.m2e_c00080{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.m24_c00080{transform:matrix(0.395176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395176,0.000000,0.000000,0.250000,0,0);}
.m13_c00080{transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);}
.m36_c00080{transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);}
.m45_c00080{transform:matrix(0.406772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406772,0.000000,0.000000,0.250000,0,0);}
.m4b_c00080{transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);}
.m26_c00080{transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);}
.m4d_c00080{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.m35_c00080{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.m2b_c00080{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m30_c00080{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m40_c00080{transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);}
.m2a_c00080{transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);}
.m37_c00080{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m4a_c00080{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m25_c00080{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m32_c00080{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.m16_c00080{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m42_c00080{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.m3b_c00080{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.m23_c00080{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m9_c00080{transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);}
.m43_c00080{transform:matrix(0.448235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448235,0.000000,0.000000,0.250000,0,0);}
.m34_c00080{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m19_c00080{transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);}
.m3c_c00080{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m2_c00080{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m39_c00080{transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);}
.me_c00080{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m44_c00080{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m2f_c00080{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m1_c00080{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_c00080{transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);}
.m41_c00080{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m1a_c00080{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_c00080{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.mf_c00080{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);}
.m21_c00080{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m3f_c00080{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m11_c00080{transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);}
.m10_c00080{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m1b_c00080{transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);}
.m1e_c00080{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m17_c00080{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m2d_c00080{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.md_c00080{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m4c_c00080{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m12_c00080{transform:matrix(0.588971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588971,0.000000,0.000000,0.250000,0,0);}
.m31_c00080{transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);}
.m3d_c00080{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m6_c00080{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);}
.m1c_c00080{transform:matrix(0.627206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627206,0.000000,0.000000,0.250000,0,0);}
.ma_c00080{transform:matrix(0.642628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642628,0.000000,0.000000,0.250000,0,0);}
.m18_c00080{transform:matrix(0.657051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657051,0.000000,0.000000,0.250000,0,0);}
.m2c_c00080{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m0_c00080{transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);}
.m14_c00080{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mb_c00080{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m7_c00080{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m1d_c00080{transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);}
.m15_c00080{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.m38_c00080{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m4_c00080{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mc_c00080{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);}
.m47_c00080{transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);}
.m8_c00080{transform:matrix(0.932819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.932819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.932819,0.000000,0.000000,0.250000,0,0);}
.m33_c00080{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,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:-14.892000px;}
.ws2_c00080{word-spacing:0.000000px;}
.ws1_c00080{word-spacing:3.469577px;}
._0_c00080{width:5.449871px;}
.fc0_c00080{color:transparent;}
.fs4_c00080{font-size:13.620000px;}
.fs0_c00080{font-size:18.720000px;}
.fs3_c00080{font-size:20.400000px;}
.fs1_c00080{font-size:25.500000px;}
.fs2_c00080{font-size:28.920000px;}
.fs5_c00080{font-size:32.340000px;}
.fs6_c00080{font-size:35.700000px;}
.y0_c00080{bottom:0.000000px;}
.y7_c00080{bottom:227.550000px;}
.y6_c00080{bottom:227.970000px;}
.y3_c00080{bottom:228.405000px;}
.y5_c00080{bottom:228.630000px;}
.y4_c00080{bottom:229.470000px;}
.y9_c00080{bottom:229.695000px;}
.ye_c00080{bottom:229.905000px;}
.ya_c00080{bottom:230.130000px;}
.y8_c00080{bottom:230.550000px;}
.yc_c00080{bottom:230.970000px;}
.yd_c00080{bottom:231.195000px;}
.yb_c00080{bottom:232.050000px;}
.y10_c00080{bottom:232.470000px;}
.y1c_c00080{bottom:242.550000px;}
.y1b_c00080{bottom:243.405000px;}
.y21_c00080{bottom:244.050000px;}
.y1d_c00080{bottom:244.470000px;}
.y1f_c00080{bottom:244.695000px;}
.yf_c00080{bottom:244.905000px;}
.y1a_c00080{bottom:245.130000px;}
.y1e_c00080{bottom:245.550000px;}
.y20_c00080{bottom:245.970000px;}
.y19_c00080{bottom:248.550000px;}
.y15_c00080{bottom:256.470000px;}
.y13_c00080{bottom:257.325000px;}
.y17_c00080{bottom:258.405000px;}
.y14_c00080{bottom:258.630000px;}
.y12_c00080{bottom:259.050000px;}
.y22_c00080{bottom:259.245000px;}
.y11_c00080{bottom:259.470000px;}
.y16_c00080{bottom:259.695000px;}
.y18_c00080{bottom:260.970000px;}
.y2a_c00080{bottom:262.905000px;}
.y26_c00080{bottom:271.470000px;}
.y23_c00080{bottom:272.325000px;}
.y27_c00080{bottom:273.405000px;}
.y25_c00080{bottom:273.630000px;}
.y28_c00080{bottom:273.825000px;}
.y24_c00080{bottom:274.470000px;}
.y29_c00080{bottom:275.130000px;}
.y31_c00080{bottom:275.325000px;}
.y30_c00080{bottom:278.130000px;}
.y2b_c00080{bottom:287.325000px;}
.y2c_c00080{bottom:288.405000px;}
.y3b_c00080{bottom:288.630000px;}
.y2d_c00080{bottom:288.825000px;}
.y39_c00080{bottom:289.905000px;}
.y2f_c00080{bottom:290.130000px;}
.y3a_c00080{bottom:290.550000px;}
.y2e_c00080{bottom:292.050000px;}
.y38_c00080{bottom:293.550000px;}
.y32_c00080{bottom:302.325000px;}
.y34_c00080{bottom:303.405000px;}
.y36_c00080{bottom:303.630000px;}
.y37_c00080{bottom:304.050000px;}
.y35_c00080{bottom:304.695000px;}
.y33_c00080{bottom:305.550000px;}
.y44_c00080{bottom:306.405000px;}
.y40_c00080{bottom:316.905000px;}
.y3f_c00080{bottom:317.325000px;}
.y3c_c00080{bottom:318.405000px;}
.y42_c00080{bottom:318.630000px;}
.y45_c00080{bottom:318.825000px;}
.y41_c00080{bottom:319.050000px;}
.y43_c00080{bottom:319.470000px;}
.y3e_c00080{bottom:319.695000px;}
.y3d_c00080{bottom:320.550000px;}
.y47_c00080{bottom:332.325000px;}
.y49_c00080{bottom:333.195000px;}
.y46_c00080{bottom:333.405000px;}
.y4b_c00080{bottom:333.630000px;}
.y48_c00080{bottom:334.050000px;}
.y4a_c00080{bottom:335.325000px;}
.y2_c00080{bottom:1100.970000px;}
.y1_c00080{bottom:1101.630000px;}
.h5_c00080{height:16.752334px;}
.h1_c00080{height:23.025234px;}
.h4_c00080{height:25.091602px;}
.h2_c00080{height:31.364502px;}
.h3_c00080{height:35.571035px;}
.h6_c00080{height:39.777568px;}
.h7_c00080{height:43.910303px;}
.h0_c00080{height:1335.000000px;}
.w0_c00080{width:880.500000px;}
.x0_c00080{left:0.000000px;}
.x13_c00080{left:153.000000px;}
.x20_c00080{left:154.920000px;}
.x3a_c00080{left:160.500000px;}
.x2a_c00080{left:166.080000px;}
.x21_c00080{left:171.420000px;}
.x5c_c00080{left:183.420000px;}
.x3b_c00080{left:190.920000px;}
.x14_c00080{left:198.000000px;}
.x32_c00080{left:202.080000px;}
.x22_c00080{left:207.000000px;}
.x53_c00080{left:212.580000px;}
.x54_c00080{left:225.000000px;}
.x3_c00080{left:242.580000px;}
.x3d_c00080{left:252.000000px;}
.x2b_c00080{left:268.500000px;}
.x4a_c00080{left:270.000000px;}
.x33_c00080{left:272.580000px;}
.x23_c00080{left:274.920000px;}
.x4_c00080{left:277.500000px;}
.x24_c00080{left:291.000000px;}
.x17_c00080{left:301.080000px;}
.x3e_c00080{left:308.580000px;}
.x5_c00080{left:310.500000px;}
.x2e_c00080{left:317.580000px;}
.x3f_c00080{left:333.420000px;}
.x6_c00080{left:334.920000px;}
.x18_c00080{left:351.000000px;}
.x47_c00080{left:352.920000px;}
.x4b_c00080{left:357.000000px;}
.x25_c00080{left:372.000000px;}
.x19_c00080{left:375.420000px;}
.x40_c00080{left:376.920000px;}
.x2f_c00080{left:379.500000px;}
.x7_c00080{left:382.920000px;}
.x48_c00080{left:388.500000px;}
.x3c_c00080{left:389.580000px;}
.x4c_c00080{left:391.080000px;}
.x55_c00080{left:395.580000px;}
.x8_c00080{left:397.500000px;}
.x1_c00080{left:399.000000px;}
.x30_c00080{left:403.920000px;}
.x4d_c00080{left:414.000000px;}
.x1a_c00080{left:418.500000px;}
.x15_c00080{left:439.500000px;}
.x9_c00080{left:441.420000px;}
.x31_c00080{left:445.080000px;}
.x49_c00080{left:454.500000px;}
.xa_c00080{left:456.000000px;}
.x26_c00080{left:459.000000px;}
.x2c_c00080{left:462.000000px;}
.x36_c00080{left:467.580000px;}
.xb_c00080{left:489.000000px;}
.x56_c00080{left:490.920000px;}
.x4e_c00080{left:492.420000px;}
.x27_c00080{left:495.000000px;}
.x16_c00080{left:507.000000px;}
.x41_c00080{left:508.500000px;}
.x57_c00080{left:516.000000px;}
.x37_c00080{left:529.500000px;}
.x2d_c00080{left:533.580000px;}
.x4f_c00080{left:550.920000px;}
.xc_c00080{left:553.080000px;}
.x1b_c00080{left:559.500000px;}
.xd_c00080{left:565.500000px;}
.x58_c00080{left:571.500000px;}
.x42_c00080{left:583.500000px;}
.x34_c00080{left:587.580000px;}
.xe_c00080{left:597.000000px;}
.x50_c00080{left:600.000000px;}
.x1c_c00080{left:606.000000px;}
.x28_c00080{left:609.420000px;}
.x38_c00080{left:611.580000px;}
.x59_c00080{left:615.000000px;}
.x43_c00080{left:618.000000px;}
.xf_c00080{left:623.580000px;}
.x1d_c00080{left:630.420000px;}
.x5a_c00080{left:634.500000px;}
.x10_c00080{left:639.000000px;}
.x44_c00080{left:643.080000px;}
.x29_c00080{left:648.000000px;}
.x51_c00080{left:664.500000px;}
.x12_c00080{left:666.000000px;}
.x35_c00080{left:669.000000px;}
.x5b_c00080{left:670.500000px;}
.x11_c00080{left:672.000000px;}
.x1e_c00080{left:673.500000px;}
.x45_c00080{left:675.420000px;}
.x39_c00080{left:676.500000px;}
.x52_c00080{left:677.580000px;}
.x46_c00080{left:690.000000px;}
.x1f_c00080{left:691.500000px;}
.x2_c00080{left:712.080000px;}
@media print{
.v0_c00080{vertical-align:0.000000pt;}
.ls0_c00080{letter-spacing:0.000000pt;}
.ws0_c00080{word-spacing:-13.237333pt;}
.ws2_c00080{word-spacing:0.000000pt;}
.ws1_c00080{word-spacing:3.084069pt;}
._0_c00080{width:4.844330pt;}
.fs4_c00080{font-size:12.106667pt;}
.fs0_c00080{font-size:16.640000pt;}
.fs3_c00080{font-size:18.133333pt;}
.fs1_c00080{font-size:22.666667pt;}
.fs2_c00080{font-size:25.706667pt;}
.fs5_c00080{font-size:28.746667pt;}
.fs6_c00080{font-size:31.733333pt;}
.y0_c00080{bottom:0.000000pt;}
.y7_c00080{bottom:202.266667pt;}
.y6_c00080{bottom:202.640000pt;}
.y3_c00080{bottom:203.026667pt;}
.y5_c00080{bottom:203.226667pt;}
.y4_c00080{bottom:203.973333pt;}
.y9_c00080{bottom:204.173333pt;}
.ye_c00080{bottom:204.360000pt;}
.ya_c00080{bottom:204.560000pt;}
.y8_c00080{bottom:204.933333pt;}
.yc_c00080{bottom:205.306667pt;}
.yd_c00080{bottom:205.506667pt;}
.yb_c00080{bottom:206.266667pt;}
.y10_c00080{bottom:206.640000pt;}
.y1c_c00080{bottom:215.600000pt;}
.y1b_c00080{bottom:216.360000pt;}
.y21_c00080{bottom:216.933333pt;}
.y1d_c00080{bottom:217.306667pt;}
.y1f_c00080{bottom:217.506667pt;}
.yf_c00080{bottom:217.693333pt;}
.y1a_c00080{bottom:217.893333pt;}
.y1e_c00080{bottom:218.266667pt;}
.y20_c00080{bottom:218.640000pt;}
.y19_c00080{bottom:220.933333pt;}
.y15_c00080{bottom:227.973333pt;}
.y13_c00080{bottom:228.733333pt;}
.y17_c00080{bottom:229.693333pt;}
.y14_c00080{bottom:229.893333pt;}
.y12_c00080{bottom:230.266667pt;}
.y22_c00080{bottom:230.440000pt;}
.y11_c00080{bottom:230.640000pt;}
.y16_c00080{bottom:230.840000pt;}
.y18_c00080{bottom:231.973333pt;}
.y2a_c00080{bottom:233.693333pt;}
.y26_c00080{bottom:241.306667pt;}
.y23_c00080{bottom:242.066667pt;}
.y27_c00080{bottom:243.026667pt;}
.y25_c00080{bottom:243.226667pt;}
.y28_c00080{bottom:243.400000pt;}
.y24_c00080{bottom:243.973333pt;}
.y29_c00080{bottom:244.560000pt;}
.y31_c00080{bottom:244.733333pt;}
.y30_c00080{bottom:247.226667pt;}
.y2b_c00080{bottom:255.400000pt;}
.y2c_c00080{bottom:256.360000pt;}
.y3b_c00080{bottom:256.560000pt;}
.y2d_c00080{bottom:256.733333pt;}
.y39_c00080{bottom:257.693333pt;}
.y2f_c00080{bottom:257.893333pt;}
.y3a_c00080{bottom:258.266667pt;}
.y2e_c00080{bottom:259.600000pt;}
.y38_c00080{bottom:260.933333pt;}
.y32_c00080{bottom:268.733333pt;}
.y34_c00080{bottom:269.693333pt;}
.y36_c00080{bottom:269.893333pt;}
.y37_c00080{bottom:270.266667pt;}
.y35_c00080{bottom:270.840000pt;}
.y33_c00080{bottom:271.600000pt;}
.y44_c00080{bottom:272.360000pt;}
.y40_c00080{bottom:281.693333pt;}
.y3f_c00080{bottom:282.066667pt;}
.y3c_c00080{bottom:283.026667pt;}
.y42_c00080{bottom:283.226667pt;}
.y45_c00080{bottom:283.400000pt;}
.y41_c00080{bottom:283.600000pt;}
.y43_c00080{bottom:283.973333pt;}
.y3e_c00080{bottom:284.173333pt;}
.y3d_c00080{bottom:284.933333pt;}
.y47_c00080{bottom:295.400000pt;}
.y49_c00080{bottom:296.173333pt;}
.y46_c00080{bottom:296.360000pt;}
.y4b_c00080{bottom:296.560000pt;}
.y48_c00080{bottom:296.933333pt;}
.y4a_c00080{bottom:298.066667pt;}
.y2_c00080{bottom:978.640000pt;}
.y1_c00080{bottom:979.226667pt;}
.h5_c00080{height:14.890964pt;}
.h1_c00080{height:20.466875pt;}
.h4_c00080{height:22.303646pt;}
.h2_c00080{height:27.879557pt;}
.h3_c00080{height:31.618698pt;}
.h6_c00080{height:35.357839pt;}
.h7_c00080{height:39.031380pt;}
.h0_c00080{height:1186.666667pt;}
.w0_c00080{width:782.666667pt;}
.x0_c00080{left:0.000000pt;}
.x13_c00080{left:136.000000pt;}
.x20_c00080{left:137.706667pt;}
.x3a_c00080{left:142.666667pt;}
.x2a_c00080{left:147.626667pt;}
.x21_c00080{left:152.373333pt;}
.x5c_c00080{left:163.040000pt;}
.x3b_c00080{left:169.706667pt;}
.x14_c00080{left:176.000000pt;}
.x32_c00080{left:179.626667pt;}
.x22_c00080{left:184.000000pt;}
.x53_c00080{left:188.960000pt;}
.x54_c00080{left:200.000000pt;}
.x3_c00080{left:215.626667pt;}
.x3d_c00080{left:224.000000pt;}
.x2b_c00080{left:238.666667pt;}
.x4a_c00080{left:240.000000pt;}
.x33_c00080{left:242.293333pt;}
.x23_c00080{left:244.373333pt;}
.x4_c00080{left:246.666667pt;}
.x24_c00080{left:258.666667pt;}
.x17_c00080{left:267.626667pt;}
.x3e_c00080{left:274.293333pt;}
.x5_c00080{left:276.000000pt;}
.x2e_c00080{left:282.293333pt;}
.x3f_c00080{left:296.373333pt;}
.x6_c00080{left:297.706667pt;}
.x18_c00080{left:312.000000pt;}
.x47_c00080{left:313.706667pt;}
.x4b_c00080{left:317.333333pt;}
.x25_c00080{left:330.666667pt;}
.x19_c00080{left:333.706667pt;}
.x40_c00080{left:335.040000pt;}
.x2f_c00080{left:337.333333pt;}
.x7_c00080{left:340.373333pt;}
.x48_c00080{left:345.333333pt;}
.x3c_c00080{left:346.293333pt;}
.x4c_c00080{left:347.626667pt;}
.x55_c00080{left:351.626667pt;}
.x8_c00080{left:353.333333pt;}
.x1_c00080{left:354.666667pt;}
.x30_c00080{left:359.040000pt;}
.x4d_c00080{left:368.000000pt;}
.x1a_c00080{left:372.000000pt;}
.x15_c00080{left:390.666667pt;}
.x9_c00080{left:392.373333pt;}
.x31_c00080{left:395.626667pt;}
.x49_c00080{left:404.000000pt;}
.xa_c00080{left:405.333333pt;}
.x26_c00080{left:408.000000pt;}
.x2c_c00080{left:410.666667pt;}
.x36_c00080{left:415.626667pt;}
.xb_c00080{left:434.666667pt;}
.x56_c00080{left:436.373333pt;}
.x4e_c00080{left:437.706667pt;}
.x27_c00080{left:440.000000pt;}
.x16_c00080{left:450.666667pt;}
.x41_c00080{left:452.000000pt;}
.x57_c00080{left:458.666667pt;}
.x37_c00080{left:470.666667pt;}
.x2d_c00080{left:474.293333pt;}
.x4f_c00080{left:489.706667pt;}
.xc_c00080{left:491.626667pt;}
.x1b_c00080{left:497.333333pt;}
.xd_c00080{left:502.666667pt;}
.x58_c00080{left:508.000000pt;}
.x42_c00080{left:518.666667pt;}
.x34_c00080{left:522.293333pt;}
.xe_c00080{left:530.666667pt;}
.x50_c00080{left:533.333333pt;}
.x1c_c00080{left:538.666667pt;}
.x28_c00080{left:541.706667pt;}
.x38_c00080{left:543.626667pt;}
.x59_c00080{left:546.666667pt;}
.x43_c00080{left:549.333333pt;}
.xf_c00080{left:554.293333pt;}
.x1d_c00080{left:560.373333pt;}
.x5a_c00080{left:564.000000pt;}
.x10_c00080{left:568.000000pt;}
.x44_c00080{left:571.626667pt;}
.x29_c00080{left:576.000000pt;}
.x51_c00080{left:590.666667pt;}
.x12_c00080{left:592.000000pt;}
.x35_c00080{left:594.666667pt;}
.x5b_c00080{left:596.000000pt;}
.x11_c00080{left:597.333333pt;}
.x1e_c00080{left:598.666667pt;}
.x45_c00080{left:600.373333pt;}
.x39_c00080{left:601.333333pt;}
.x52_c00080{left:602.293333pt;}
.x46_c00080{left:613.333333pt;}
.x1f_c00080{left:614.666667pt;}
.x2_c00080{left:632.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_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_ac788aa9770072d28af107f3.woff2')format("woff");}.ff1_c00081{font-family:ff1_c00081;line-height:1.688965;font-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_c00081{transform:matrix(0.376050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376050,0.000000,0.000000,0.250000,0,0);}
.m37_c00081{transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);}
.m12_c00081{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m5e_c00081{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m0_c00081{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m29_c00081{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m42_c00081{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m2b_c00081{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m5a_c00081{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m68_c00081{transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);}
.m5b_c00081{transform:matrix(0.405675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405675,0.000000,0.000000,0.250000,0,0);}
.m22_c00081{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m59_c00081{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m39_c00081{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m75_c00081{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m6c_c00081{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.m4b_c00081{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m50_c00081{transform:matrix(0.424080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424080,0.000000,0.000000,0.250000,0,0);}
.m58_c00081{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m3f_c00081{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m52_c00081{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m25_c00081{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m3e_c00081{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m28_c00081{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m4a_c00081{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m3_c00081{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.mc_c00081{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m67_c00081{transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);}
.m47_c00081{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m21_c00081{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m38_c00081{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m43_c00081{transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);}
.m3a_c00081{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m65_c00081{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m41_c00081{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m2c_c00081{transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);}
.m56_c00081{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m1c_c00081{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m4d_c00081{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);}
.m2e_c00081{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m1b_c00081{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m54_c00081{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m40_c00081{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m64_c00081{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m34_c00081{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m5f_c00081{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m2d_c00081{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m27_c00081{transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);}
.m15_c00081{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m73_c00081{transform:matrix(0.518235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518235,0.000000,0.000000,0.250000,0,0);}
.m61_c00081{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m4_c00081{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m6b_c00081{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m3c_c00081{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m45_c00081{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m49_c00081{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m6_c00081{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m6d_c00081{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m1e_c00081{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m14_c00081{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m3d_c00081{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m33_c00081{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m24_c00081{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mb_c00081{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m69_c00081{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.m74_c00081{transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);}
.m44_c00081{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m30_c00081{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m55_c00081{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m4c_c00081{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m53_c00081{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m8_c00081{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.ma_c00081{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m63_c00081{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m26_c00081{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m4f_c00081{transform:matrix(0.546846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546846,0.000000,0.000000,0.250000,0,0);}
.m1a_c00081{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mf_c00081{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m9_c00081{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m76_c00081{transform:matrix(0.551176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551176,0.000000,0.000000,0.250000,0,0);}
.m31_c00081{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m51_c00081{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m16_c00081{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m19_c00081{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m1d_c00081{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m60_c00081{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m18_c00081{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m36_c00081{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m2f_c00081{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.m46_c00081{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.me_c00081{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m32_c00081{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m4e_c00081{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m2_c00081{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m66_c00081{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.md_c00081{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m35_c00081{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m71_c00081{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m17_c00081{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m5c_c00081{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m1_c00081{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m62_c00081{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m48_c00081{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m6e_c00081{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m23_c00081{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m6a_c00081{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m5_c00081{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m70_c00081{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m11_c00081{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m13_c00081{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m57_c00081{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m5d_c00081{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m7_c00081{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m2a_c00081{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m20_c00081{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m1f_c00081{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m10_c00081{transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);}
.m6f_c00081{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m72_c00081{transform:matrix(1.123348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.123348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.123348,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;}
.fs7_c00081{font-size:13.620000px;}
.fs4_c00081{font-size:18.720000px;}
.fs1_c00081{font-size:20.400000px;}
.fs5_c00081{font-size:25.500000px;}
.fs2_c00081{font-size:28.920000px;}
.fs0_c00081{font-size:32.340000px;}
.fs3_c00081{font-size:35.700000px;}
.fs6_c00081{font-size:39.120000px;}
.y0_c00081{bottom:0.000000px;}
.y49_c00081{bottom:252.405000px;}
.y48_c00081{bottom:254.745000px;}
.y47_c00081{bottom:255.630000px;}
.y4a_c00081{bottom:256.470000px;}
.y46_c00081{bottom:256.905000px;}
.y45_c00081{bottom:271.905000px;}
.y43_c00081{bottom:273.180000px;}
.y41_c00081{bottom:274.245000px;}
.y42_c00081{bottom:275.130000px;}
.y44_c00081{bottom:275.970000px;}
.y40_c00081{bottom:276.405000px;}
.y3b_c00081{bottom:291.405000px;}
.y3d_c00081{bottom:293.745000px;}
.y3e_c00081{bottom:294.630000px;}
.y3f_c00081{bottom:295.470000px;}
.y3c_c00081{bottom:295.905000px;}
.y3a_c00081{bottom:313.245000px;}
.y39_c00081{bottom:315.405000px;}
.y36_c00081{bottom:332.745000px;}
.y38_c00081{bottom:333.180000px;}
.y33_c00081{bottom:334.905000px;}
.y32_c00081{bottom:335.130000px;}
.y37_c00081{bottom:335.325000px;}
.y35_c00081{bottom:335.970000px;}
.y34_c00081{bottom:336.405000px;}
.y31_c00081{bottom:353.745000px;}
.y2d_c00081{bottom:354.405000px;}
.y2e_c00081{bottom:354.630000px;}
.y2f_c00081{bottom:354.825000px;}
.y30_c00081{bottom:355.905000px;}
.y2c_c00081{bottom:371.745000px;}
.y2a_c00081{bottom:374.325000px;}
.y2b_c00081{bottom:374.970000px;}
.y29_c00081{bottom:375.405000px;}
.y27_c00081{bottom:392.325000px;}
.y26_c00081{bottom:392.745000px;}
.y28_c00081{bottom:393.405000px;}
.y24_c00081{bottom:393.825000px;}
.y25_c00081{bottom:394.905000px;}
.y20_c00081{bottom:412.245000px;}
.y23_c00081{bottom:412.905000px;}
.y1f_c00081{bottom:413.130000px;}
.y21_c00081{bottom:413.325000px;}
.y22_c00081{bottom:413.970000px;}
.y1e_c00081{bottom:414.405000px;}
.y1d_c00081{bottom:430.680000px;}
.y1c_c00081{bottom:432.630000px;}
.y19_c00081{bottom:433.905000px;}
.y1b_c00081{bottom:434.130000px;}
.y1a_c00081{bottom:435.405000px;}
.y17_c00081{bottom:451.245000px;}
.y18_c00081{bottom:452.325000px;}
.y14_c00081{bottom:452.745000px;}
.y16_c00081{bottom:453.405000px;}
.y15_c00081{bottom:453.630000px;}
.y13_c00081{bottom:453.825000px;}
.y12_c00081{bottom:454.905000px;}
.y10_c00081{bottom:470.745000px;}
.y11_c00081{bottom:470.970000px;}
.yc_c00081{bottom:472.905000px;}
.yf_c00081{bottom:473.130000px;}
.yd_c00081{bottom:473.970000px;}
.ye_c00081{bottom:474.405000px;}
.yb_c00081{bottom:491.550000px;}
.ya_c00081{bottom:491.745000px;}
.y8_c00081{bottom:493.470000px;}
.y9_c00081{bottom:493.905000px;}
.y7_c00081{bottom:508.905000px;}
.y4_c00081{bottom:511.245000px;}
.y6_c00081{bottom:512.130000px;}
.y3_c00081{bottom:513.405000px;}
.y5_c00081{bottom:514.905000px;}
.y56_c00081{bottom:546.825000px;}
.y55_c00081{bottom:548.970000px;}
.y54_c00081{bottom:549.195000px;}
.y53_c00081{bottom:550.470000px;}
.y4e_c00081{bottom:561.825000px;}
.y50_c00081{bottom:562.050000px;}
.y4b_c00081{bottom:562.905000px;}
.y4d_c00081{bottom:563.130000px;}
.y4f_c00081{bottom:563.970000px;}
.y51_c00081{bottom:564.195000px;}
.y4c_c00081{bottom:564.630000px;}
.y52_c00081{bottom:565.050000px;}
.y1_c00081{bottom:1098.825000px;}
.y2_c00081{bottom:1100.550000px;}
.h8_c00081{height:16.752334px;}
.h5_c00081{height:23.025234px;}
.h2_c00081{height:25.091602px;}
.h6_c00081{height:31.364502px;}
.h3_c00081{height:35.571035px;}
.h1_c00081{height:39.777568px;}
.h4_c00081{height:43.910303px;}
.h7_c00081{height:48.116836px;}
.h0_c00081{height:1335.000000px;}
.w0_c00081{width:880.500000px;}
.x0_c00081{left:0.000000px;}
.x8a_c00081{left:148.080000px;}
.x66_c00081{left:150.420000px;}
.x3_c00081{left:151.920000px;}
.x1_c00081{left:154.500000px;}
.x94_c00081{left:168.420000px;}
.x70_c00081{left:169.920000px;}
.x14_c00081{left:171.420000px;}
.x4_c00081{left:178.500000px;}
.x9e_c00081{left:181.920000px;}
.x81_c00081{left:187.500000px;}
.x71_c00081{left:193.500000px;}
.x15_c00081{left:197.580000px;}
.x2f_c00081{left:204.000000px;}
.x51_c00081{left:205.920000px;}
.x95_c00081{left:208.500000px;}
.x23_c00081{left:210.000000px;}
.x72_c00081{left:213.000000px;}
.x5_c00081{left:216.000000px;}
.x73_c00081{left:225.000000px;}
.x24_c00081{left:229.920000px;}
.x45_c00081{left:231.420000px;}
.x52_c00081{left:235.080000px;}
.x16_c00081{left:238.920000px;}
.x67_c00081{left:240.000000px;}
.x3b_c00081{left:241.500000px;}
.x30_c00081{left:246.420000px;}
.x7a_c00081{left:253.500000px;}
.x25_c00081{left:256.080000px;}
.x5d_c00081{left:259.920000px;}
.x8b_c00081{left:262.920000px;}
.x17_c00081{left:265.920000px;}
.x68_c00081{left:267.000000px;}
.x46_c00081{left:271.920000px;}
.x96_c00081{left:283.920000px;}
.x82_c00081{left:286.500000px;}
.x5e_c00081{left:287.580000px;}
.x6_c00081{left:298.500000px;}
.x74_c00081{left:303.420000px;}
.x26_c00081{left:304.500000px;}
.x9f_c00081{left:309.000000px;}
.x53_c00081{left:312.000000px;}
.x7_c00081{left:316.920000px;}
.x8c_c00081{left:318.000000px;}
.x3c_c00081{left:319.500000px;}
.x31_c00081{left:322.500000px;}
.x47_c00081{left:328.920000px;}
.x83_c00081{left:331.500000px;}
.x3d_c00081{left:337.500000px;}
.x8_c00081{left:340.500000px;}
.x8d_c00081{left:342.000000px;}
.x7b_c00081{left:345.000000px;}
.x54_c00081{left:347.580000px;}
.x27_c00081{left:349.500000px;}
.x69_c00081{left:354.420000px;}
.x32_c00081{left:357.000000px;}
.x9_c00081{left:358.500000px;}
.x18_c00081{left:360.420000px;}
.x84_c00081{left:366.000000px;}
.x55_c00081{left:367.920000px;}
.xa_c00081{left:370.500000px;}
.x48_c00081{left:373.920000px;}
.x5f_c00081{left:378.000000px;}
.x6a_c00081{left:381.000000px;}
.x33_c00081{left:384.420000px;}
.x28_c00081{left:388.500000px;}
.x19_c00081{left:390.000000px;}
.x97_c00081{left:392.580000px;}
.x56_c00081{left:396.000000px;}
.xb_c00081{left:400.920000px;}
.x2_c00081{left:402.000000px;}
.x49_c00081{left:406.500000px;}
.x75_c00081{left:411.000000px;}
.x8e_c00081{left:414.420000px;}
.x3e_c00081{left:417.000000px;}
.x1a_c00081{left:419.580000px;}
.x7c_c00081{left:424.500000px;}
.x85_c00081{left:426.420000px;}
.x34_c00081{left:429.000000px;}
.x76_c00081{left:430.920000px;}
.x7d_c00081{left:442.500000px;}
.x29_c00081{left:444.000000px;}
.xc_c00081{left:447.420000px;}
.x1b_c00081{left:450.420000px;}
.x3f_c00081{left:452.580000px;}
.x60_c00081{left:454.500000px;}
.x86_c00081{left:456.420000px;}
.x77_c00081{left:457.500000px;}
.x35_c00081{left:471.420000px;}
.x8f_c00081{left:472.920000px;}
.x57_c00081{left:475.500000px;}
.xa4_c00081{left:478.500000px;}
.x2a_c00081{left:481.500000px;}
.x1c_c00081{left:483.420000px;}
.xd_c00081{left:484.920000px;}
.x4a_c00081{left:490.080000px;}
.x58_c00081{left:493.920000px;}
.x98_c00081{left:496.500000px;}
.x36_c00081{left:498.000000px;}
.x87_c00081{left:504.000000px;}
.xe_c00081{left:510.000000px;}
.xa0_c00081{left:512.580000px;}
.x6b_c00081{left:516.000000px;}
.x90_c00081{left:519.420000px;}
.x2b_c00081{left:520.500000px;}
.x78_c00081{left:523.500000px;}
.xa1_c00081{left:529.080000px;}
.x1d_c00081{left:531.420000px;}
.x40_c00081{left:534.000000px;}
.x99_c00081{left:535.500000px;}
.x2c_c00081{left:538.500000px;}
.x91_c00081{left:544.920000px;}
.x59_c00081{left:547.080000px;}
.x61_c00081{left:549.420000px;}
.x4b_c00081{left:550.500000px;}
.x7e_c00081{left:559.080000px;}
.x41_c00081{left:561.000000px;}
.x37_c00081{left:562.920000px;}
.x9a_c00081{left:567.000000px;}
.x1e_c00081{left:568.080000px;}
.x6c_c00081{left:571.500000px;}
.x4c_c00081{left:572.580000px;}
.xf_c00081{left:577.920000px;}
.x5a_c00081{left:579.420000px;}
.x62_c00081{left:581.580000px;}
.xa2_c00081{left:586.500000px;}
.x92_c00081{left:589.920000px;}
.x38_c00081{left:591.420000px;}
.x7f_c00081{left:592.920000px;}
.x63_c00081{left:600.000000px;}
.x79_c00081{left:607.500000px;}
.x6d_c00081{left:609.000000px;}
.x9b_c00081{left:610.500000px;}
.x1f_c00081{left:612.420000px;}
.x10_c00081{left:614.580000px;}
.x42_c00081{left:618.000000px;}
.x4d_c00081{left:619.920000px;}
.x5b_c00081{left:627.000000px;}
.x11_c00081{left:633.420000px;}
.x39_c00081{left:636.000000px;}
.x20_c00081{left:639.000000px;}
.x6e_c00081{left:640.500000px;}
.x93_c00081{left:646.080000px;}
.x4e_c00081{left:649.500000px;}
.x2d_c00081{left:651.000000px;}
.x43_c00081{left:654.000000px;}
.x64_c00081{left:655.500000px;}
.x12_c00081{left:660.000000px;}
.x9c_c00081{left:666.000000px;}
.xa3_c00081{left:671.580000px;}
.x88_c00081{left:678.420000px;}
.x9d_c00081{left:681.000000px;}
.x5c_c00081{left:682.080000px;}
.x4f_c00081{left:688.080000px;}
.x3a_c00081{left:689.580000px;}
.x21_c00081{left:691.080000px;}
.x65_c00081{left:694.500000px;}
.x6f_c00081{left:697.500000px;}
.x80_c00081{left:699.000000px;}
.x44_c00081{left:700.080000px;}
.x13_c00081{left:703.500000px;}
.x22_c00081{left:708.420000px;}
.x50_c00081{left:709.920000px;}
.x89_c00081{left:717.000000px;}
.x2e_c00081{left:725.580000px;}
@media print{
.v0_c00081{vertical-align:0.000000pt;}
.ls0_c00081{letter-spacing:0.000000pt;}
.ws0_c00081{word-spacing:0.000000pt;}
.fs7_c00081{font-size:12.106667pt;}
.fs4_c00081{font-size:16.640000pt;}
.fs1_c00081{font-size:18.133333pt;}
.fs5_c00081{font-size:22.666667pt;}
.fs2_c00081{font-size:25.706667pt;}
.fs0_c00081{font-size:28.746667pt;}
.fs3_c00081{font-size:31.733333pt;}
.fs6_c00081{font-size:34.773333pt;}
.y0_c00081{bottom:0.000000pt;}
.y49_c00081{bottom:224.360000pt;}
.y48_c00081{bottom:226.440000pt;}
.y47_c00081{bottom:227.226667pt;}
.y4a_c00081{bottom:227.973333pt;}
.y46_c00081{bottom:228.360000pt;}
.y45_c00081{bottom:241.693333pt;}
.y43_c00081{bottom:242.826667pt;}
.y41_c00081{bottom:243.773333pt;}
.y42_c00081{bottom:244.560000pt;}
.y44_c00081{bottom:245.306667pt;}
.y40_c00081{bottom:245.693333pt;}
.y3b_c00081{bottom:259.026667pt;}
.y3d_c00081{bottom:261.106667pt;}
.y3e_c00081{bottom:261.893333pt;}
.y3f_c00081{bottom:262.640000pt;}
.y3c_c00081{bottom:263.026667pt;}
.y3a_c00081{bottom:278.440000pt;}
.y39_c00081{bottom:280.360000pt;}
.y36_c00081{bottom:295.773333pt;}
.y38_c00081{bottom:296.160000pt;}
.y33_c00081{bottom:297.693333pt;}
.y32_c00081{bottom:297.893333pt;}
.y37_c00081{bottom:298.066667pt;}
.y35_c00081{bottom:298.640000pt;}
.y34_c00081{bottom:299.026667pt;}
.y31_c00081{bottom:314.440000pt;}
.y2d_c00081{bottom:315.026667pt;}
.y2e_c00081{bottom:315.226667pt;}
.y2f_c00081{bottom:315.400000pt;}
.y30_c00081{bottom:316.360000pt;}
.y2c_c00081{bottom:330.440000pt;}
.y2a_c00081{bottom:332.733333pt;}
.y2b_c00081{bottom:333.306667pt;}
.y29_c00081{bottom:333.693333pt;}
.y27_c00081{bottom:348.733333pt;}
.y26_c00081{bottom:349.106667pt;}
.y28_c00081{bottom:349.693333pt;}
.y24_c00081{bottom:350.066667pt;}
.y25_c00081{bottom:351.026667pt;}
.y20_c00081{bottom:366.440000pt;}
.y23_c00081{bottom:367.026667pt;}
.y1f_c00081{bottom:367.226667pt;}
.y21_c00081{bottom:367.400000pt;}
.y22_c00081{bottom:367.973333pt;}
.y1e_c00081{bottom:368.360000pt;}
.y1d_c00081{bottom:382.826667pt;}
.y1c_c00081{bottom:384.560000pt;}
.y19_c00081{bottom:385.693333pt;}
.y1b_c00081{bottom:385.893333pt;}
.y1a_c00081{bottom:387.026667pt;}
.y17_c00081{bottom:401.106667pt;}
.y18_c00081{bottom:402.066667pt;}
.y14_c00081{bottom:402.440000pt;}
.y16_c00081{bottom:403.026667pt;}
.y15_c00081{bottom:403.226667pt;}
.y13_c00081{bottom:403.400000pt;}
.y12_c00081{bottom:404.360000pt;}
.y10_c00081{bottom:418.440000pt;}
.y11_c00081{bottom:418.640000pt;}
.yc_c00081{bottom:420.360000pt;}
.yf_c00081{bottom:420.560000pt;}
.yd_c00081{bottom:421.306667pt;}
.ye_c00081{bottom:421.693333pt;}
.yb_c00081{bottom:436.933333pt;}
.ya_c00081{bottom:437.106667pt;}
.y8_c00081{bottom:438.640000pt;}
.y9_c00081{bottom:439.026667pt;}
.y7_c00081{bottom:452.360000pt;}
.y4_c00081{bottom:454.440000pt;}
.y6_c00081{bottom:455.226667pt;}
.y3_c00081{bottom:456.360000pt;}
.y5_c00081{bottom:457.693333pt;}
.y56_c00081{bottom:486.066667pt;}
.y55_c00081{bottom:487.973333pt;}
.y54_c00081{bottom:488.173333pt;}
.y53_c00081{bottom:489.306667pt;}
.y4e_c00081{bottom:499.400000pt;}
.y50_c00081{bottom:499.600000pt;}
.y4b_c00081{bottom:500.360000pt;}
.y4d_c00081{bottom:500.560000pt;}
.y4f_c00081{bottom:501.306667pt;}
.y51_c00081{bottom:501.506667pt;}
.y4c_c00081{bottom:501.893333pt;}
.y52_c00081{bottom:502.266667pt;}
.y1_c00081{bottom:976.733333pt;}
.y2_c00081{bottom:978.266667pt;}
.h8_c00081{height:14.890964pt;}
.h5_c00081{height:20.466875pt;}
.h2_c00081{height:22.303646pt;}
.h6_c00081{height:27.879557pt;}
.h3_c00081{height:31.618698pt;}
.h1_c00081{height:35.357839pt;}
.h4_c00081{height:39.031380pt;}
.h7_c00081{height:42.770521pt;}
.h0_c00081{height:1186.666667pt;}
.w0_c00081{width:782.666667pt;}
.x0_c00081{left:0.000000pt;}
.x8a_c00081{left:131.626667pt;}
.x66_c00081{left:133.706667pt;}
.x3_c00081{left:135.040000pt;}
.x1_c00081{left:137.333333pt;}
.x94_c00081{left:149.706667pt;}
.x70_c00081{left:151.040000pt;}
.x14_c00081{left:152.373333pt;}
.x4_c00081{left:158.666667pt;}
.x9e_c00081{left:161.706667pt;}
.x81_c00081{left:166.666667pt;}
.x71_c00081{left:172.000000pt;}
.x15_c00081{left:175.626667pt;}
.x2f_c00081{left:181.333333pt;}
.x51_c00081{left:183.040000pt;}
.x95_c00081{left:185.333333pt;}
.x23_c00081{left:186.666667pt;}
.x72_c00081{left:189.333333pt;}
.x5_c00081{left:192.000000pt;}
.x73_c00081{left:200.000000pt;}
.x24_c00081{left:204.373333pt;}
.x45_c00081{left:205.706667pt;}
.x52_c00081{left:208.960000pt;}
.x16_c00081{left:212.373333pt;}
.x67_c00081{left:213.333333pt;}
.x3b_c00081{left:214.666667pt;}
.x30_c00081{left:219.040000pt;}
.x7a_c00081{left:225.333333pt;}
.x25_c00081{left:227.626667pt;}
.x5d_c00081{left:231.040000pt;}
.x8b_c00081{left:233.706667pt;}
.x17_c00081{left:236.373333pt;}
.x68_c00081{left:237.333333pt;}
.x46_c00081{left:241.706667pt;}
.x96_c00081{left:252.373333pt;}
.x82_c00081{left:254.666667pt;}
.x5e_c00081{left:255.626667pt;}
.x6_c00081{left:265.333333pt;}
.x74_c00081{left:269.706667pt;}
.x26_c00081{left:270.666667pt;}
.x9f_c00081{left:274.666667pt;}
.x53_c00081{left:277.333333pt;}
.x7_c00081{left:281.706667pt;}
.x8c_c00081{left:282.666667pt;}
.x3c_c00081{left:284.000000pt;}
.x31_c00081{left:286.666667pt;}
.x47_c00081{left:292.373333pt;}
.x83_c00081{left:294.666667pt;}
.x3d_c00081{left:300.000000pt;}
.x8_c00081{left:302.666667pt;}
.x8d_c00081{left:304.000000pt;}
.x7b_c00081{left:306.666667pt;}
.x54_c00081{left:308.960000pt;}
.x27_c00081{left:310.666667pt;}
.x69_c00081{left:315.040000pt;}
.x32_c00081{left:317.333333pt;}
.x9_c00081{left:318.666667pt;}
.x18_c00081{left:320.373333pt;}
.x84_c00081{left:325.333333pt;}
.x55_c00081{left:327.040000pt;}
.xa_c00081{left:329.333333pt;}
.x48_c00081{left:332.373333pt;}
.x5f_c00081{left:336.000000pt;}
.x6a_c00081{left:338.666667pt;}
.x33_c00081{left:341.706667pt;}
.x28_c00081{left:345.333333pt;}
.x19_c00081{left:346.666667pt;}
.x97_c00081{left:348.960000pt;}
.x56_c00081{left:352.000000pt;}
.xb_c00081{left:356.373333pt;}
.x2_c00081{left:357.333333pt;}
.x49_c00081{left:361.333333pt;}
.x75_c00081{left:365.333333pt;}
.x8e_c00081{left:368.373333pt;}
.x3e_c00081{left:370.666667pt;}
.x1a_c00081{left:372.960000pt;}
.x7c_c00081{left:377.333333pt;}
.x85_c00081{left:379.040000pt;}
.x34_c00081{left:381.333333pt;}
.x76_c00081{left:383.040000pt;}
.x7d_c00081{left:393.333333pt;}
.x29_c00081{left:394.666667pt;}
.xc_c00081{left:397.706667pt;}
.x1b_c00081{left:400.373333pt;}
.x3f_c00081{left:402.293333pt;}
.x60_c00081{left:404.000000pt;}
.x86_c00081{left:405.706667pt;}
.x77_c00081{left:406.666667pt;}
.x35_c00081{left:419.040000pt;}
.x8f_c00081{left:420.373333pt;}
.x57_c00081{left:422.666667pt;}
.xa4_c00081{left:425.333333pt;}
.x2a_c00081{left:428.000000pt;}
.x1c_c00081{left:429.706667pt;}
.xd_c00081{left:431.040000pt;}
.x4a_c00081{left:435.626667pt;}
.x58_c00081{left:439.040000pt;}
.x98_c00081{left:441.333333pt;}
.x36_c00081{left:442.666667pt;}
.x87_c00081{left:448.000000pt;}
.xe_c00081{left:453.333333pt;}
.xa0_c00081{left:455.626667pt;}
.x6b_c00081{left:458.666667pt;}
.x90_c00081{left:461.706667pt;}
.x2b_c00081{left:462.666667pt;}
.x78_c00081{left:465.333333pt;}
.xa1_c00081{left:470.293333pt;}
.x1d_c00081{left:472.373333pt;}
.x40_c00081{left:474.666667pt;}
.x99_c00081{left:476.000000pt;}
.x2c_c00081{left:478.666667pt;}
.x91_c00081{left:484.373333pt;}
.x59_c00081{left:486.293333pt;}
.x61_c00081{left:488.373333pt;}
.x4b_c00081{left:489.333333pt;}
.x7e_c00081{left:496.960000pt;}
.x41_c00081{left:498.666667pt;}
.x37_c00081{left:500.373333pt;}
.x9a_c00081{left:504.000000pt;}
.x1e_c00081{left:504.960000pt;}
.x6c_c00081{left:508.000000pt;}
.x4c_c00081{left:508.960000pt;}
.xf_c00081{left:513.706667pt;}
.x5a_c00081{left:515.040000pt;}
.x62_c00081{left:516.960000pt;}
.xa2_c00081{left:521.333333pt;}
.x92_c00081{left:524.373333pt;}
.x38_c00081{left:525.706667pt;}
.x7f_c00081{left:527.040000pt;}
.x63_c00081{left:533.333333pt;}
.x79_c00081{left:540.000000pt;}
.x6d_c00081{left:541.333333pt;}
.x9b_c00081{left:542.666667pt;}
.x1f_c00081{left:544.373333pt;}
.x10_c00081{left:546.293333pt;}
.x42_c00081{left:549.333333pt;}
.x4d_c00081{left:551.040000pt;}
.x5b_c00081{left:557.333333pt;}
.x11_c00081{left:563.040000pt;}
.x39_c00081{left:565.333333pt;}
.x20_c00081{left:568.000000pt;}
.x6e_c00081{left:569.333333pt;}
.x93_c00081{left:574.293333pt;}
.x4e_c00081{left:577.333333pt;}
.x2d_c00081{left:578.666667pt;}
.x43_c00081{left:581.333333pt;}
.x64_c00081{left:582.666667pt;}
.x12_c00081{left:586.666667pt;}
.x9c_c00081{left:592.000000pt;}
.xa3_c00081{left:596.960000pt;}
.x88_c00081{left:603.040000pt;}
.x9d_c00081{left:605.333333pt;}
.x5c_c00081{left:606.293333pt;}
.x4f_c00081{left:611.626667pt;}
.x3a_c00081{left:612.960000pt;}
.x21_c00081{left:614.293333pt;}
.x65_c00081{left:617.333333pt;}
.x6f_c00081{left:620.000000pt;}
.x80_c00081{left:621.333333pt;}
.x44_c00081{left:622.293333pt;}
.x13_c00081{left:625.333333pt;}
.x22_c00081{left:629.706667pt;}
.x50_c00081{left:631.040000pt;}
.x89_c00081{left:637.333333pt;}
.x2e_c00081{left:644.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_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_ec9f8a275bb7b1377df49ca9.woff2')format("woff");}.ff1_c00082{font-family:ff1_c00082;line-height:1.688965;font-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_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);}
.mbe_c00082{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m79_c00082{transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);}
.m30_c00082{transform:matrix(0.362185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362185,0.000000,0.000000,0.250000,0,0);}
.m78_c00082{transform:matrix(0.371549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371549,0.000000,0.000000,0.250000,0,0);}
.m7c_c00082{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.mb0_c00082{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m98_c00082{transform:matrix(0.379808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379808,0.000000,0.000000,0.250000,0,0);}
.m8_c00082{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m5_c00082{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m6a_c00082{transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);}
.m70_c00082{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m46_c00082{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m7d_c00082{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m39_c00082{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m9f_c00082{transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00082{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m9c_c00082{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m77_c00082{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m33_c00082{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m51_c00082{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.mb_c00082{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m22_c00082{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m2_c00082{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m2f_c00082{transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);}
.ma5_c00082{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.m97_c00082{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m55_c00082{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m90_c00082{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.m6d_c00082{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m4d_c00082{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m3a_c00082{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m5f_c00082{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m36_c00082{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m25_c00082{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m44_c00082{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m6e_c00082{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m53_c00082{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mc8_c00082{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m8e_c00082{transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);}
.m5e_c00082{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m86_c00082{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m13_c00082{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m5b_c00082{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.ma3_c00082{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m31_c00082{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.mb2_c00082{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);}
.mc5_c00082{transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);}
.m4e_c00082{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m7b_c00082{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m69_c00082{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m42_c00082{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m88_c00082{transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);}
.m59_c00082{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_c00082{transform:matrix(0.454327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454327,0.000000,0.000000,0.250000,0,0);}
.m26_c00082{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m3b_c00082{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.ma2_c00082{transform:matrix(0.458150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458150,0.000000,0.000000,0.250000,0,0);}
.ma0_c00082{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.md9_c00082{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.m45_c00082{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m89_c00082{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m9a_c00082{transform:matrix(0.462340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462340,0.000000,0.000000,0.250000,0,0);}
.ma_c00082{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m75_c00082{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.ma6_c00082{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.mc7_c00082{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.mb5_c00082{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.m1e_c00082{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m96_c00082{transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);}
.mb8_c00082{transform:matrix(0.471955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471955,0.000000,0.000000,0.250000,0,0);}
.m56_c00082{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m6c_c00082{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m38_c00082{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.mbc_c00082{transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);}
.m8f_c00082{transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);}
.mc4_c00082{transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);}
.m12_c00082{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m1_c00082{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mae_c00082{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.mab_c00082{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m4c_c00082{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m37_c00082{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m3d_c00082{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mcb_c00082{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.m5c_c00082{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m6b_c00082{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m18_c00082{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);}
.m1c_c00082{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m16_c00082{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m64_c00082{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m2b_c00082{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m2c_c00082{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m29_c00082{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mdb_c00082{transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);}
.m49_c00082{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m87_c00082{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.md4_c00082{transform:matrix(0.521635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521635,0.000000,0.000000,0.250000,0,0);}
.m4_c00082{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m2d_c00082{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m62_c00082{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m19_c00082{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m68_c00082{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m50_c00082{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mc1_c00082{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.m9_c00082{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mb4_c00082{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m95_c00082{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.m66_c00082{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m28_c00082{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m11_c00082{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m3_c00082{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m27_c00082{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m72_c00082{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m74_c00082{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m41_c00082{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m76_c00082{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m93_c00082{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m43_c00082{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mcd_c00082{transform:matrix(0.548878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548878,0.000000,0.000000,0.250000,0,0);}
.m1f_c00082{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mc2_c00082{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m3f_c00082{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m2e_c00082{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m81_c00082{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.md_c00082{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m1b_c00082{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m17_c00082{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m54_c00082{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m20_c00082{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m82_c00082{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m3e_c00082{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m1d_c00082{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mac_c00082{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m58_c00082{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m7a_c00082{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.md0_c00082{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m80_c00082{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);}
.m1a_c00082{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m10_c00082{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m3c_c00082{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m5a_c00082{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m65_c00082{transform:matrix(0.574675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574675,0.000000,0.000000,0.250000,0,0);}
.m7e_c00082{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m6f_c00082{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mbb_c00082{transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);}
.m24_c00082{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m4a_c00082{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m71_c00082{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mcf_c00082{transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);}
.maf_c00082{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.m34_c00082{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m8c_c00082{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m6_c00082{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mf_c00082{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m23_c00082{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m15_c00082{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);}
.m7f_c00082{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m9e_c00082{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m5d_c00082{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m0_c00082{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.m99_c00082{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m40_c00082{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.ma4_c00082{transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);}
.m85_c00082{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m63_c00082{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m14_c00082{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.m83_c00082{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mc6_c00082{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m84_c00082{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);}
.m32_c00082{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m92_c00082{transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);}
.m8a_c00082{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.mcc_c00082{transform:matrix(0.634615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634615,0.000000,0.000000,0.250000,0,0);}
.mda_c00082{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.md8_c00082{transform:matrix(0.649780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649780,0.000000,0.000000,0.250000,0,0);}
.m9b_c00082{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m60_c00082{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m73_c00082{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m52_c00082{transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);}
.me_c00082{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.md3_c00082{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m48_c00082{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m94_c00082{transform:matrix(0.674265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674265,0.000000,0.000000,0.250000,0,0);}
.ma9_c00082{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.maa_c00082{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.md5_c00082{transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);}
.mdc_c00082{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.ma1_c00082{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mc3_c00082{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m8b_c00082{transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);}
.mbf_c00082{transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);}
.ma8_c00082{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.md6_c00082{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.mad_c00082{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m91_c00082{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);}
.mb9_c00082{transform:matrix(0.702020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702020,0.000000,0.000000,0.250000,0,0);}
.m47_c00082{transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);}
.mc_c00082{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mca_c00082{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.mb1_c00082{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.md2_c00082{transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);}
.md1_c00082{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.mc9_c00082{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.ma7_c00082{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m57_c00082{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m2a_c00082{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mc0_c00082{transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);}
.m61_c00082{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.mb3_c00082{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m21_c00082{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mbd_c00082{transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);}
.m4f_c00082{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mb7_c00082{transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);}
.md7_c00082{transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);}
.m67_c00082{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m7_c00082{transform:matrix(0.842949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.842949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.842949,0.000000,0.000000,0.250000,0,0);}
.mba_c00082{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m8d_c00082{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.mce_c00082{transform:matrix(1.741228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.741228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.741228,0.000000,0.000000,0.250000,0,0);}
.mb6_c00082{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.v2_c00082{vertical-align:-6.000000px;}
.v0_c00082{vertical-align:0.000000px;}
.v1_c00082{vertical-align:6.000000px;}
.ls1_c00082{letter-spacing:0.000000px;}
.ls0_c00082{letter-spacing:44.811895px;}
.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;}
}
.ws1e_c00082{word-spacing:0.000000px;}
.ws12_c00082{word-spacing:13.611988px;}
.ws5_c00082{word-spacing:15.614929px;}
.ws1a_c00082{word-spacing:17.262919px;}
.ws14_c00082{word-spacing:18.138913px;}
.ws7_c00082{word-spacing:19.620812px;}
.wsf_c00082{word-spacing:20.014946px;}
.ws3_c00082{word-spacing:23.560082px;}
.ws19_c00082{word-spacing:23.728109px;}
.ws1b_c00082{word-spacing:23.767013px;}
.ws6_c00082{word-spacing:24.638400px;}
.ws15_c00082{word-spacing:25.643046px;}
.ws11_c00082{word-spacing:29.395112px;}
.wsb_c00082{word-spacing:30.234255px;}
.ws18_c00082{word-spacing:30.607622px;}
.ws1c_c00082{word-spacing:31.025931px;}
.ws9_c00082{word-spacing:34.127371px;}
.ws4_c00082{word-spacing:36.857815px;}
.wsd_c00082{word-spacing:38.705522px;}
.ws1_c00082{word-spacing:39.846793px;}
.wsa_c00082{word-spacing:40.994598px;}
.ws16_c00082{word-spacing:41.223200px;}
.ws8_c00082{word-spacing:43.665186px;}
.ws2_c00082{word-spacing:44.144422px;}
.ws1d_c00082{word-spacing:47.497848px;}
.ws0_c00082{word-spacing:47.719225px;}
.wsc_c00082{word-spacing:49.006362px;}
.ws13_c00082{word-spacing:51.676951px;}
.ws17_c00082{word-spacing:64.250880px;}
.wse_c00082{word-spacing:77.102923px;}
.ws10_c00082{word-spacing:80.533653px;}
._7_c00082{width:26.092993px;}
._9_c00082{width:29.845060px;}
._6_c00082{width:31.721093px;}
._8_c00082{width:49.985215px;}
._0_c00082{width:51.359972px;}
._2_c00082{width:53.542665px;}
._4_c00082{width:58.430328px;}
._1_c00082{width:60.565699px;}
._5_c00082{width:64.972207px;}
._3_c00082{width:87.183360px;}
.fc0_c00082{color:transparent;}
.fs8_c00082{font-size:3.420000px;}
.fs9_c00082{font-size:11.880000px;}
.fs7_c00082{font-size:13.620000px;}
.fs3_c00082{font-size:18.720000px;}
.fs0_c00082{font-size:20.400000px;}
.fs4_c00082{font-size:25.500000px;}
.fs1_c00082{font-size:28.920000px;}
.fs5_c00082{font-size:32.340000px;}
.fs2_c00082{font-size:35.700000px;}
.fs6_c00082{font-size:39.120000px;}
.y0_c00082{bottom:0.000000px;}
.y60_c00082{bottom:253.245000px;}
.y5d_c00082{bottom:253.680000px;}
.y61_c00082{bottom:254.130000px;}
.y64_c00082{bottom:254.745000px;}
.y5e_c00082{bottom:254.970000px;}
.y5f_c00082{bottom:255.405000px;}
.y62_c00082{bottom:256.905000px;}
.y63_c00082{bottom:257.970000px;}
.y65_c00082{bottom:258.405000px;}
.y57_c00082{bottom:272.745000px;}
.y59_c00082{bottom:274.245000px;}
.y5a_c00082{bottom:274.680000px;}
.y55_c00082{bottom:274.905000px;}
.y56_c00082{bottom:275.130000px;}
.y53_c00082{bottom:275.325000px;}
.y5b_c00082{bottom:275.745000px;}
.y58_c00082{bottom:275.970000px;}
.y54_c00082{bottom:276.405000px;}
.y5c_c00082{bottom:276.630000px;}
.y4a_c00082{bottom:292.905000px;}
.y4d_c00082{bottom:293.745000px;}
.y4c_c00082{bottom:294.405000px;}
.y4f_c00082{bottom:294.630000px;}
.y4e_c00082{bottom:295.470000px;}
.y4b_c00082{bottom:295.905000px;}
.y50_c00082{bottom:296.130000px;}
.y51_c00082{bottom:297.405000px;}
.y52_c00082{bottom:298.470000px;}
.y46_c00082{bottom:310.905000px;}
.y45_c00082{bottom:313.245000px;}
.y43_c00082{bottom:314.325000px;}
.y47_c00082{bottom:314.745000px;}
.y44_c00082{bottom:315.405000px;}
.y49_c00082{bottom:316.905000px;}
.y48_c00082{bottom:317.130000px;}
.y41_c00082{bottom:333.180000px;}
.y3f_c00082{bottom:333.630000px;}
.y40_c00082{bottom:333.825000px;}
.y3e_c00082{bottom:334.905000px;}
.y42_c00082{bottom:336.405000px;}
.y37_c00082{bottom:353.745000px;}
.y3a_c00082{bottom:354.405000px;}
.y39_c00082{bottom:354.630000px;}
.y3c_c00082{bottom:354.825000px;}
.y38_c00082{bottom:355.470000px;}
.y3b_c00082{bottom:355.905000px;}
.y3d_c00082{bottom:356.130000px;}
.y34_c00082{bottom:370.905000px;}
.y33_c00082{bottom:371.745000px;}
.y31_c00082{bottom:373.245000px;}
.y32_c00082{bottom:373.905000px;}
.y35_c00082{bottom:374.970000px;}
.y36_c00082{bottom:375.405000px;}
.y2e_c00082{bottom:390.405000px;}
.y2d_c00082{bottom:391.245000px;}
.y2a_c00082{bottom:392.745000px;}
.y2c_c00082{bottom:393.405000px;}
.y2f_c00082{bottom:393.630000px;}
.y2b_c00082{bottom:394.470000px;}
.y30_c00082{bottom:394.905000px;}
.y28_c00082{bottom:412.245000px;}
.y27_c00082{bottom:412.905000px;}
.y29_c00082{bottom:413.130000px;}
.y24_c00082{bottom:413.550000px;}
.y25_c00082{bottom:413.970000px;}
.y26_c00082{bottom:414.405000px;}
.y1d_c00082{bottom:430.905000px;}
.y20_c00082{bottom:431.550000px;}
.y1f_c00082{bottom:432.630000px;}
.y21_c00082{bottom:432.825000px;}
.y22_c00082{bottom:433.245000px;}
.y1e_c00082{bottom:433.905000px;}
.y23_c00082{bottom:434.325000px;}
.y19_c00082{bottom:449.745000px;}
.y17_c00082{bottom:451.245000px;}
.y16_c00082{bottom:451.680000px;}
.y1a_c00082{bottom:452.325000px;}
.y1b_c00082{bottom:452.745000px;}
.y15_c00082{bottom:453.405000px;}
.y18_c00082{bottom:454.470000px;}
.y1c_c00082{bottom:454.905000px;}
.yd7_c00082{bottom:479.130000px;}
.yd8_c00082{bottom:480.195000px;}
.yd9_c00082{bottom:480.420000px;}
.yda_c00082{bottom:480.630000px;}
.yd5_c00082{bottom:489.195000px;}
.yd6_c00082{bottom:492.630000px;}
.yd3_c00082{bottom:493.275000px;}
.yd1_c00082{bottom:493.695000px;}
.yd2_c00082{bottom:494.130000px;}
.yd4_c00082{bottom:495.420000px;}
.ycb_c00082{bottom:507.195000px;}
.ycf_c00082{bottom:507.630000px;}
.ycd_c00082{bottom:508.275000px;}
.ycc_c00082{bottom:508.695000px;}
.yce_c00082{bottom:508.920000px;}
.yd0_c00082{bottom:509.130000px;}
.yc8_c00082{bottom:521.130000px;}
.yc7_c00082{bottom:521.775000px;}
.yc6_c00082{bottom:522.195000px;}
.yc9_c00082{bottom:522.420000px;}
.yca_c00082{bottom:522.630000px;}
.yc4_c00082{bottom:534.630000px;}
.yc3_c00082{bottom:535.275000px;}
.yc2_c00082{bottom:535.695000px;}
.yc5_c00082{bottom:537.195000px;}
.yc1_c00082{bottom:548.130000px;}
.yc0_c00082{bottom:549.195000px;}
.ybf_c00082{bottom:549.630000px;}
.ybd_c00082{bottom:561.630000px;}
.ybb_c00082{bottom:562.695000px;}
.yba_c00082{bottom:563.130000px;}
.ybe_c00082{bottom:564.195000px;}
.ybc_c00082{bottom:564.420000px;}
.yb8_c00082{bottom:576.630000px;}
.yb9_c00082{bottom:577.695000px;}
.yb4_c00082{bottom:590.130000px;}
.yb5_c00082{bottom:591.195000px;}
.yb7_c00082{bottom:591.420000px;}
.yb6_c00082{bottom:592.695000px;}
.yb2_c00082{bottom:604.695000px;}
.yb3_c00082{bottom:605.130000px;}
.yae_c00082{bottom:617.550000px;}
.yaf_c00082{bottom:618.195000px;}
.yb0_c00082{bottom:618.420000px;}
.yb1_c00082{bottom:618.630000px;}
.yac_c00082{bottom:632.130000px;}
.yad_c00082{bottom:632.775000px;}
.yab_c00082{bottom:633.195000px;}
.ya8_c00082{bottom:645.630000px;}
.yaa_c00082{bottom:646.275000px;}
.ya9_c00082{bottom:646.695000px;}
.ya4_c00082{bottom:659.130000px;}
.ya6_c00082{bottom:659.775000px;}
.ya5_c00082{bottom:660.195000px;}
.ya7_c00082{bottom:660.630000px;}
.ya3_c00082{bottom:673.695000px;}
.ya1_c00082{bottom:687.195000px;}
.ya0_c00082{bottom:688.695000px;}
.ya2_c00082{bottom:688.920000px;}
.y9f_c00082{bottom:700.695000px;}
.y9d_c00082{bottom:701.130000px;}
.y9e_c00082{bottom:702.195000px;}
.y9b_c00082{bottom:714.630000px;}
.y9c_c00082{bottom:715.695000px;}
.y99_c00082{bottom:728.130000px;}
.y98_c00082{bottom:729.195000px;}
.y9a_c00082{bottom:729.630000px;}
.y95_c00082{bottom:741.630000px;}
.y96_c00082{bottom:742.695000px;}
.y94_c00082{bottom:743.775000px;}
.y97_c00082{bottom:744.195000px;}
.y92_c00082{bottom:755.130000px;}
.y93_c00082{bottom:756.195000px;}
.y91_c00082{bottom:756.630000px;}
.y90_c00082{bottom:757.695000px;}
.y8e_c00082{bottom:769.695000px;}
.y8d_c00082{bottom:770.130000px;}
.y8c_c00082{bottom:771.195000px;}
.y8f_c00082{bottom:771.420000px;}
.y8b_c00082{bottom:783.630000px;}
.y8a_c00082{bottom:784.695000px;}
.y88_c00082{bottom:797.130000px;}
.y87_c00082{bottom:798.195000px;}
.y89_c00082{bottom:799.695000px;}
.y84_c00082{bottom:810.630000px;}
.y83_c00082{bottom:811.695000px;}
.y85_c00082{bottom:812.130000px;}
.y86_c00082{bottom:813.195000px;}
.y80_c00082{bottom:825.195000px;}
.y81_c00082{bottom:825.630000px;}
.y82_c00082{bottom:826.695000px;}
.y7f_c00082{bottom:839.130000px;}
.y7e_c00082{bottom:840.195000px;}
.y7b_c00082{bottom:852.195000px;}
.y7c_c00082{bottom:852.630000px;}
.y7d_c00082{bottom:853.695000px;}
.y78_c00082{bottom:871.695000px;}
.y79_c00082{bottom:872.130000px;}
.y7a_c00082{bottom:873.195000px;}
.y75_c00082{bottom:884.130000px;}
.y76_c00082{bottom:885.195000px;}
.y77_c00082{bottom:885.630000px;}
.y73_c00082{bottom:898.695000px;}
.y74_c00082{bottom:900.195000px;}
.y6f_c00082{bottom:919.905000px;}
.y71_c00082{bottom:920.325000px;}
.y6d_c00082{bottom:920.550000px;}
.y6c_c00082{bottom:922.050000px;}
.y70_c00082{bottom:922.470000px;}
.y6e_c00082{bottom:922.695000px;}
.y72_c00082{bottom:923.550000px;}
.y6a_c00082{bottom:934.905000px;}
.y68_c00082{bottom:935.970000px;}
.y6b_c00082{bottom:936.630000px;}
.y69_c00082{bottom:937.050000px;}
.y67_c00082{bottom:956.550000px;}
.y66_c00082{bottom:959.550000px;}
.y14_c00082{bottom:984.405000px;}
.y11_c00082{bottom:1001.745000px;}
.y10_c00082{bottom:1003.905000px;}
.y12_c00082{bottom:1004.130000px;}
.yf_c00082{bottom:1004.970000px;}
.y13_c00082{bottom:1005.405000px;}
.yd_c00082{bottom:1021.245000px;}
.yb_c00082{bottom:1022.325000px;}
.ya_c00082{bottom:1023.405000px;}
.yc_c00082{bottom:1023.630000px;}
.ye_c00082{bottom:1024.470000px;}
.y9_c00082{bottom:1042.245000px;}
.y7_c00082{bottom:1042.905000px;}
.y6_c00082{bottom:1043.970000px;}
.y8_c00082{bottom:1044.405000px;}
.y3_c00082{bottom:1061.745000px;}
.y5_c00082{bottom:1062.630000px;}
.y4_c00082{bottom:1063.905000px;}
.y2_c00082{bottom:1099.905000px;}
.y1_c00082{bottom:1102.050000px;}
.ha_c00082{height:4.206533px;}
.hb_c00082{height:14.612168px;}
.h8_c00082{height:16.752334px;}
.h9_c00082{height:22.752334px;}
.h4_c00082{height:23.025234px;}
.h1_c00082{height:25.091602px;}
.hc_c00082{height:29.025234px;}
.h5_c00082{height:31.364502px;}
.h2_c00082{height:35.571035px;}
.h6_c00082{height:39.777568px;}
.h3_c00082{height:43.910303px;}
.h7_c00082{height:48.116836px;}
.h0_c00082{height:1335.000000px;}
.w0_c00082{width:880.500000px;}
.x0_c00082{left:0.000000px;}
.x3_c00082{left:150.420000px;}
.x13_c00082{left:151.920000px;}
.x48_c00082{left:156.000000px;}
.x5f_c00082{left:157.500000px;}
.x3a_c00082{left:172.080000px;}
.xa0_c00082{left:177.000000px;}
.xb2_c00082{left:178.500000px;}
.x30_c00082{left:186.000000px;}
.x14_c00082{left:187.500000px;}
.xcc_c00082{left:192.420000px;}
.x4_c00082{left:196.500000px;}
.x38_c00082{left:197.580000px;}
.xb3_c00082{left:199.080000px;}
.x8c_c00082{left:201.420000px;}
.x22_c00082{left:204.000000px;}
.x49_c00082{left:205.920000px;}
.x55_c00082{left:207.000000px;}
.x60_c00082{left:208.500000px;}
.x85_c00082{left:214.080000px;}
.x5_c00082{left:217.080000px;}
.xd0_c00082{left:218.580000px;}
.x23_c00082{left:220.920000px;}
.xd2_c00082{left:223.500000px;}
.x3b_c00082{left:226.500000px;}
.x39_c00082{left:227.580000px;}
.x56_c00082{left:229.920000px;}
.x6a_c00082{left:231.420000px;}
.xa1_c00082{left:235.080000px;}
.x15_c00082{left:237.000000px;}
.xbe_c00082{left:240.000000px;}
.x7d_c00082{left:241.080000px;}
.xa7_c00082{left:244.500000px;}
.x6_c00082{left:246.000000px;}
.x73_c00082{left:247.500000px;}
.x61_c00082{left:250.500000px;}
.x16_c00082{left:255.000000px;}
.x24_c00082{left:256.500000px;}
.x57_c00082{left:258.000000px;}
.x94_c00082{left:259.920000px;}
.xa2_c00082{left:262.500000px;}
.xcd_c00082{left:264.000000px;}
.x8d_c00082{left:268.500000px;}
.xd1_c00082{left:273.420000px;}
.x6b_c00082{left:274.500000px;}
.x7e_c00082{left:275.580000px;}
.x74_c00082{left:277.920000px;}
.x4a_c00082{left:281.580000px;}
.xce_c00082{left:286.920000px;}
.x62_c00082{left:288.000000px;}
.xd4_c00082{left:291.000000px;}
.xa3_c00082{left:295.500000px;}
.x3c_c00082{left:296.775000px;}
.x95_c00082{left:300.000000px;}
.xcf_c00082{left:304.920000px;}
.x86_c00082{left:306.000000px;}
.x25_c00082{left:309.420000px;}
.x6c_c00082{left:310.500000px;}
.x96_c00082{left:319.920000px;}
.x7_c00082{left:321.000000px;}
.x3d_c00082{left:322.080000px;}
.xa8_c00082{left:323.580000px;}
.x4b_c00082{left:325.500000px;}
.xb4_c00082{left:330.000000px;}
.xbf_c00082{left:334.500000px;}
.x17_c00082{left:336.420000px;}
.xca_c00082{left:337.500000px;}
.x63_c00082{left:339.000000px;}
.x7f_c00082{left:340.920000px;}
.xb9_c00082{left:343.500000px;}
.x4c_c00082{left:345.000000px;}
.x75_c00082{left:346.920000px;}
.x58_c00082{left:348.000000px;}
.xa9_c00082{left:351.420000px;}
.x3e_c00082{left:354.000000px;}
.x8_c00082{left:360.000000px;}
.x3f_c00082{left:367.500000px;}
.x59_c00082{left:369.420000px;}
.x80_c00082{left:372.000000px;}
.x18_c00082{left:373.080000px;}
.xaf_c00082{left:375.000000px;}
.x76_c00082{left:376.920000px;}
.x26_c00082{left:378.000000px;}
.x4d_c00082{left:379.920000px;}
.xc9_c00082{left:381.000000px;}
.x40_c00082{left:384.000000px;}
.x6d_c00082{left:387.000000px;}
.xaa_c00082{left:390.000000px;}
.x8e_c00082{left:393.000000px;}
.x1_c00082{left:397.500000px;}
.x4e_c00082{left:399.420000px;}
.x9_c00082{left:400.500000px;}
.x41_c00082{left:402.000000px;}
.xab_c00082{left:406.500000px;}
.x27_c00082{left:408.000000px;}
.x77_c00082{left:412.500000px;}
.x9f_c00082{left:414.000000px;}
.x31_c00082{left:415.500000px;}
.xcb_c00082{left:417.000000px;}
.x42_c00082{left:418.080000px;}
.x8f_c00082{left:421.500000px;}
.xa4_c00082{left:424.500000px;}
.x97_c00082{left:427.500000px;}
.x19_c00082{left:429.000000px;}
.xac_c00082{left:432.000000px;}
.x32_c00082{left:436.500000px;}
.x4f_c00082{left:438.420000px;}
.x5a_c00082{left:439.500000px;}
.xa_c00082{left:451.920000px;}
.xb5_c00082{left:453.420000px;}
.x98_c00082{left:454.920000px;}
.xbd_c00082{left:456.000000px;}
.xc1_c00082{left:457.500000px;}
.x9d_c00082{left:459.000000px;}
.x1a_c00082{left:461.580000px;}
.x28_c00082{left:463.500000px;}
.x50_c00082{left:466.500000px;}
.x43_c00082{left:468.000000px;}
.x64_c00082{left:469.080000px;}
.xb_c00082{left:480.420000px;}
.x29_c00082{left:481.920000px;}
.x87_c00082{left:483.420000px;}
.x99_c00082{left:487.500000px;}
.x81_c00082{left:489.000000px;}
.x5b_c00082{left:492.000000px;}
.x9e_c00082{left:493.500000px;}
.xc6_c00082{left:495.420000px;}
.xb0_c00082{left:496.500000px;}
.xc3_c00082{left:498.000000px;}
.x33_c00082{left:499.500000px;}
.x65_c00082{left:501.000000px;}
.x1b_c00082{left:504.000000px;}
.x88_c00082{left:510.000000px;}
.xad_c00082{left:511.500000px;}
.x78_c00082{left:513.000000px;}
.x2a_c00082{left:519.420000px;}
.xc_c00082{left:520.920000px;}
.x6e_c00082{left:522.000000px;}
.x44_c00082{left:525.420000px;}
.xb6_c00082{left:528.000000px;}
.x51_c00082{left:529.500000px;}
.x34_c00082{left:532.500000px;}
.xc7_c00082{left:534.000000px;}
.xd3_c00082{left:535.500000px;}
.x1c_c00082{left:538.080000px;}
.x6f_c00082{left:550.500000px;}
.x82_c00082{left:552.420000px;}
.xd_c00082{left:553.500000px;}
.x9a_c00082{left:558.000000px;}
.x1d_c00082{left:559.920000px;}
.x89_c00082{left:563.580000px;}
.x5c_c00082{left:565.920000px;}
.xb7_c00082{left:567.000000px;}
.x66_c00082{left:568.500000px;}
.xb1_c00082{left:570.000000px;}
.x79_c00082{left:571.500000px;}
.x2b_c00082{left:573.420000px;}
.x52_c00082{left:576.000000px;}
.xba_c00082{left:579.000000px;}
.xe_c00082{left:580.500000px;}
.x45_c00082{left:585.000000px;}
.x90_c00082{left:588.000000px;}
.x1e_c00082{left:589.500000px;}
.x9b_c00082{left:591.000000px;}
.x2c_c00082{left:592.920000px;}
.x70_c00082{left:601.500000px;}
.xa5_c00082{left:603.000000px;}
.x91_c00082{left:609.420000px;}
.xc2_c00082{left:610.920000px;}
.x67_c00082{left:612.000000px;}
.xc4_c00082{left:615.000000px;}
.x35_c00082{left:618.000000px;}
.x7a_c00082{left:619.500000px;}
.xf_c00082{left:622.080000px;}
.x2d_c00082{left:625.920000px;}
.x1f_c00082{left:629.580000px;}
.x68_c00082{left:633.000000px;}
.x83_c00082{left:634.500000px;}
.xae_c00082{left:636.000000px;}
.x92_c00082{left:637.920000px;}
.xb8_c00082{left:640.500000px;}
.x53_c00082{left:643.500000px;}
.xc0_c00082{left:645.000000px;}
.x36_c00082{left:646.920000px;}
.x10_c00082{left:648.420000px;}
.x20_c00082{left:649.920000px;}
.xc8_c00082{left:651.000000px;}
.x2e_c00082{left:652.920000px;}
.xbb_c00082{left:654.000000px;}
.x46_c00082{left:658.500000px;}
.x8a_c00082{left:663.000000px;}
.x5d_c00082{left:664.500000px;}
.x7b_c00082{left:666.420000px;}
.x71_c00082{left:667.500000px;}
.x11_c00082{left:670.920000px;}
.xa6_c00082{left:676.500000px;}
.x21_c00082{left:679.920000px;}
.x47_c00082{left:682.920000px;}
.x72_c00082{left:684.000000px;}
.x37_c00082{left:685.080000px;}
.x2f_c00082{left:687.000000px;}
.x5e_c00082{left:688.080000px;}
.x54_c00082{left:690.000000px;}
.xc5_c00082{left:691.500000px;}
.x69_c00082{left:694.080000px;}
.xbc_c00082{left:695.580000px;}
.x8b_c00082{left:699.000000px;}
.x84_c00082{left:703.500000px;}
.x12_c00082{left:706.920000px;}
.x2_c00082{left:710.580000px;}
.x9c_c00082{left:715.500000px;}
.x93_c00082{left:718.500000px;}
.x7c_c00082{left:727.500000px;}
@media print{
.v2_c00082{vertical-align:-5.333333pt;}
.v0_c00082{vertical-align:0.000000pt;}
.v1_c00082{vertical-align:5.333333pt;}
.ls1_c00082{letter-spacing:0.000000pt;}
.ls0_c00082{letter-spacing:39.832796pt;}
.ws1e_c00082{word-spacing:0.000000pt;}
.ws12_c00082{word-spacing:12.099545pt;}
.ws5_c00082{word-spacing:13.879937pt;}
.ws1a_c00082{word-spacing:15.344817pt;}
.ws14_c00082{word-spacing:16.123479pt;}
.ws7_c00082{word-spacing:17.440722pt;}
.wsf_c00082{word-spacing:17.791064pt;}
.ws3_c00082{word-spacing:20.942295pt;}
.ws19_c00082{word-spacing:21.091652pt;}
.ws1b_c00082{word-spacing:21.126233pt;}
.ws6_c00082{word-spacing:21.900800pt;}
.ws15_c00082{word-spacing:22.793818pt;}
.ws11_c00082{word-spacing:26.128988pt;}
.wsb_c00082{word-spacing:26.874893pt;}
.ws18_c00082{word-spacing:27.206775pt;}
.ws1c_c00082{word-spacing:27.578605pt;}
.ws9_c00082{word-spacing:30.335441pt;}
.ws4_c00082{word-spacing:32.762503pt;}
.wsd_c00082{word-spacing:34.404908pt;}
.ws1_c00082{word-spacing:35.419372pt;}
.wsa_c00082{word-spacing:36.439642pt;}
.ws16_c00082{word-spacing:36.642844pt;}
.ws8_c00082{word-spacing:38.813499pt;}
.ws2_c00082{word-spacing:39.239486pt;}
.ws1d_c00082{word-spacing:42.220309pt;}
.ws0_c00082{word-spacing:42.417089pt;}
.wsc_c00082{word-spacing:43.561211pt;}
.ws13_c00082{word-spacing:45.935067pt;}
.ws17_c00082{word-spacing:57.111893pt;}
.wse_c00082{word-spacing:68.535931pt;}
.ws10_c00082{word-spacing:71.585470pt;}
._7_c00082{width:23.193772pt;}
._9_c00082{width:26.528942pt;}
._6_c00082{width:28.196527pt;}
._8_c00082{width:44.431302pt;}
._0_c00082{width:45.653309pt;}
._2_c00082{width:47.593480pt;}
._4_c00082{width:51.938069pt;}
._1_c00082{width:53.836177pt;}
._5_c00082{width:57.753073pt;}
._3_c00082{width:77.496320pt;}
.fs8_c00082{font-size:3.040000pt;}
.fs9_c00082{font-size:10.560000pt;}
.fs7_c00082{font-size:12.106667pt;}
.fs3_c00082{font-size:16.640000pt;}
.fs0_c00082{font-size:18.133333pt;}
.fs4_c00082{font-size:22.666667pt;}
.fs1_c00082{font-size:25.706667pt;}
.fs5_c00082{font-size:28.746667pt;}
.fs2_c00082{font-size:31.733333pt;}
.fs6_c00082{font-size:34.773333pt;}
.y0_c00082{bottom:0.000000pt;}
.y60_c00082{bottom:225.106667pt;}
.y5d_c00082{bottom:225.493333pt;}
.y61_c00082{bottom:225.893333pt;}
.y64_c00082{bottom:226.440000pt;}
.y5e_c00082{bottom:226.640000pt;}
.y5f_c00082{bottom:227.026667pt;}
.y62_c00082{bottom:228.360000pt;}
.y63_c00082{bottom:229.306667pt;}
.y65_c00082{bottom:229.693333pt;}
.y57_c00082{bottom:242.440000pt;}
.y59_c00082{bottom:243.773333pt;}
.y5a_c00082{bottom:244.160000pt;}
.y55_c00082{bottom:244.360000pt;}
.y56_c00082{bottom:244.560000pt;}
.y53_c00082{bottom:244.733333pt;}
.y5b_c00082{bottom:245.106667pt;}
.y58_c00082{bottom:245.306667pt;}
.y54_c00082{bottom:245.693333pt;}
.y5c_c00082{bottom:245.893333pt;}
.y4a_c00082{bottom:260.360000pt;}
.y4d_c00082{bottom:261.106667pt;}
.y4c_c00082{bottom:261.693333pt;}
.y4f_c00082{bottom:261.893333pt;}
.y4e_c00082{bottom:262.640000pt;}
.y4b_c00082{bottom:263.026667pt;}
.y50_c00082{bottom:263.226667pt;}
.y51_c00082{bottom:264.360000pt;}
.y52_c00082{bottom:265.306667pt;}
.y46_c00082{bottom:276.360000pt;}
.y45_c00082{bottom:278.440000pt;}
.y43_c00082{bottom:279.400000pt;}
.y47_c00082{bottom:279.773333pt;}
.y44_c00082{bottom:280.360000pt;}
.y49_c00082{bottom:281.693333pt;}
.y48_c00082{bottom:281.893333pt;}
.y41_c00082{bottom:296.160000pt;}
.y3f_c00082{bottom:296.560000pt;}
.y40_c00082{bottom:296.733333pt;}
.y3e_c00082{bottom:297.693333pt;}
.y42_c00082{bottom:299.026667pt;}
.y37_c00082{bottom:314.440000pt;}
.y3a_c00082{bottom:315.026667pt;}
.y39_c00082{bottom:315.226667pt;}
.y3c_c00082{bottom:315.400000pt;}
.y38_c00082{bottom:315.973333pt;}
.y3b_c00082{bottom:316.360000pt;}
.y3d_c00082{bottom:316.560000pt;}
.y34_c00082{bottom:329.693333pt;}
.y33_c00082{bottom:330.440000pt;}
.y31_c00082{bottom:331.773333pt;}
.y32_c00082{bottom:332.360000pt;}
.y35_c00082{bottom:333.306667pt;}
.y36_c00082{bottom:333.693333pt;}
.y2e_c00082{bottom:347.026667pt;}
.y2d_c00082{bottom:347.773333pt;}
.y2a_c00082{bottom:349.106667pt;}
.y2c_c00082{bottom:349.693333pt;}
.y2f_c00082{bottom:349.893333pt;}
.y2b_c00082{bottom:350.640000pt;}
.y30_c00082{bottom:351.026667pt;}
.y28_c00082{bottom:366.440000pt;}
.y27_c00082{bottom:367.026667pt;}
.y29_c00082{bottom:367.226667pt;}
.y24_c00082{bottom:367.600000pt;}
.y25_c00082{bottom:367.973333pt;}
.y26_c00082{bottom:368.360000pt;}
.y1d_c00082{bottom:383.026667pt;}
.y20_c00082{bottom:383.600000pt;}
.y1f_c00082{bottom:384.560000pt;}
.y21_c00082{bottom:384.733333pt;}
.y22_c00082{bottom:385.106667pt;}
.y1e_c00082{bottom:385.693333pt;}
.y23_c00082{bottom:386.066667pt;}
.y19_c00082{bottom:399.773333pt;}
.y17_c00082{bottom:401.106667pt;}
.y16_c00082{bottom:401.493333pt;}
.y1a_c00082{bottom:402.066667pt;}
.y1b_c00082{bottom:402.440000pt;}
.y15_c00082{bottom:403.026667pt;}
.y18_c00082{bottom:403.973333pt;}
.y1c_c00082{bottom:404.360000pt;}
.yd7_c00082{bottom:425.893333pt;}
.yd8_c00082{bottom:426.840000pt;}
.yd9_c00082{bottom:427.040000pt;}
.yda_c00082{bottom:427.226667pt;}
.yd5_c00082{bottom:434.840000pt;}
.yd6_c00082{bottom:437.893333pt;}
.yd3_c00082{bottom:438.466667pt;}
.yd1_c00082{bottom:438.840000pt;}
.yd2_c00082{bottom:439.226667pt;}
.yd4_c00082{bottom:440.373333pt;}
.ycb_c00082{bottom:450.840000pt;}
.ycf_c00082{bottom:451.226667pt;}
.ycd_c00082{bottom:451.800000pt;}
.ycc_c00082{bottom:452.173333pt;}
.yce_c00082{bottom:452.373333pt;}
.yd0_c00082{bottom:452.560000pt;}
.yc8_c00082{bottom:463.226667pt;}
.yc7_c00082{bottom:463.800000pt;}
.yc6_c00082{bottom:464.173333pt;}
.yc9_c00082{bottom:464.373333pt;}
.yca_c00082{bottom:464.560000pt;}
.yc4_c00082{bottom:475.226667pt;}
.yc3_c00082{bottom:475.800000pt;}
.yc2_c00082{bottom:476.173333pt;}
.yc5_c00082{bottom:477.506667pt;}
.yc1_c00082{bottom:487.226667pt;}
.yc0_c00082{bottom:488.173333pt;}
.ybf_c00082{bottom:488.560000pt;}
.ybd_c00082{bottom:499.226667pt;}
.ybb_c00082{bottom:500.173333pt;}
.yba_c00082{bottom:500.560000pt;}
.ybe_c00082{bottom:501.506667pt;}
.ybc_c00082{bottom:501.706667pt;}
.yb8_c00082{bottom:512.560000pt;}
.yb9_c00082{bottom:513.506667pt;}
.yb4_c00082{bottom:524.560000pt;}
.yb5_c00082{bottom:525.506667pt;}
.yb7_c00082{bottom:525.706667pt;}
.yb6_c00082{bottom:526.840000pt;}
.yb2_c00082{bottom:537.506667pt;}
.yb3_c00082{bottom:537.893333pt;}
.yae_c00082{bottom:548.933333pt;}
.yaf_c00082{bottom:549.506667pt;}
.yb0_c00082{bottom:549.706667pt;}
.yb1_c00082{bottom:549.893333pt;}
.yac_c00082{bottom:561.893333pt;}
.yad_c00082{bottom:562.466667pt;}
.yab_c00082{bottom:562.840000pt;}
.ya8_c00082{bottom:573.893333pt;}
.yaa_c00082{bottom:574.466667pt;}
.ya9_c00082{bottom:574.840000pt;}
.ya4_c00082{bottom:585.893333pt;}
.ya6_c00082{bottom:586.466667pt;}
.ya5_c00082{bottom:586.840000pt;}
.ya7_c00082{bottom:587.226667pt;}
.ya3_c00082{bottom:598.840000pt;}
.ya1_c00082{bottom:610.840000pt;}
.ya0_c00082{bottom:612.173333pt;}
.ya2_c00082{bottom:612.373333pt;}
.y9f_c00082{bottom:622.840000pt;}
.y9d_c00082{bottom:623.226667pt;}
.y9e_c00082{bottom:624.173333pt;}
.y9b_c00082{bottom:635.226667pt;}
.y9c_c00082{bottom:636.173333pt;}
.y99_c00082{bottom:647.226667pt;}
.y98_c00082{bottom:648.173333pt;}
.y9a_c00082{bottom:648.560000pt;}
.y95_c00082{bottom:659.226667pt;}
.y96_c00082{bottom:660.173333pt;}
.y94_c00082{bottom:661.133333pt;}
.y97_c00082{bottom:661.506667pt;}
.y92_c00082{bottom:671.226667pt;}
.y93_c00082{bottom:672.173333pt;}
.y91_c00082{bottom:672.560000pt;}
.y90_c00082{bottom:673.506667pt;}
.y8e_c00082{bottom:684.173333pt;}
.y8d_c00082{bottom:684.560000pt;}
.y8c_c00082{bottom:685.506667pt;}
.y8f_c00082{bottom:685.706667pt;}
.y8b_c00082{bottom:696.560000pt;}
.y8a_c00082{bottom:697.506667pt;}
.y88_c00082{bottom:708.560000pt;}
.y87_c00082{bottom:709.506667pt;}
.y89_c00082{bottom:710.840000pt;}
.y84_c00082{bottom:720.560000pt;}
.y83_c00082{bottom:721.506667pt;}
.y85_c00082{bottom:721.893333pt;}
.y86_c00082{bottom:722.840000pt;}
.y80_c00082{bottom:733.506667pt;}
.y81_c00082{bottom:733.893333pt;}
.y82_c00082{bottom:734.840000pt;}
.y7f_c00082{bottom:745.893333pt;}
.y7e_c00082{bottom:746.840000pt;}
.y7b_c00082{bottom:757.506667pt;}
.y7c_c00082{bottom:757.893333pt;}
.y7d_c00082{bottom:758.840000pt;}
.y78_c00082{bottom:774.840000pt;}
.y79_c00082{bottom:775.226667pt;}
.y7a_c00082{bottom:776.173333pt;}
.y75_c00082{bottom:785.893333pt;}
.y76_c00082{bottom:786.840000pt;}
.y77_c00082{bottom:787.226667pt;}
.y73_c00082{bottom:798.840000pt;}
.y74_c00082{bottom:800.173333pt;}
.y6f_c00082{bottom:817.693333pt;}
.y71_c00082{bottom:818.066667pt;}
.y6d_c00082{bottom:818.266667pt;}
.y6c_c00082{bottom:819.600000pt;}
.y70_c00082{bottom:819.973333pt;}
.y6e_c00082{bottom:820.173333pt;}
.y72_c00082{bottom:820.933333pt;}
.y6a_c00082{bottom:831.026667pt;}
.y68_c00082{bottom:831.973333pt;}
.y6b_c00082{bottom:832.560000pt;}
.y69_c00082{bottom:832.933333pt;}
.y67_c00082{bottom:850.266667pt;}
.y66_c00082{bottom:852.933333pt;}
.y14_c00082{bottom:875.026667pt;}
.y11_c00082{bottom:890.440000pt;}
.y10_c00082{bottom:892.360000pt;}
.y12_c00082{bottom:892.560000pt;}
.yf_c00082{bottom:893.306667pt;}
.y13_c00082{bottom:893.693333pt;}
.yd_c00082{bottom:907.773333pt;}
.yb_c00082{bottom:908.733333pt;}
.ya_c00082{bottom:909.693333pt;}
.yc_c00082{bottom:909.893333pt;}
.ye_c00082{bottom:910.640000pt;}
.y9_c00082{bottom:926.440000pt;}
.y7_c00082{bottom:927.026667pt;}
.y6_c00082{bottom:927.973333pt;}
.y8_c00082{bottom:928.360000pt;}
.y3_c00082{bottom:943.773333pt;}
.y5_c00082{bottom:944.560000pt;}
.y4_c00082{bottom:945.693333pt;}
.y2_c00082{bottom:977.693333pt;}
.y1_c00082{bottom:979.600000pt;}
.ha_c00082{height:3.739141pt;}
.hb_c00082{height:12.988594pt;}
.h8_c00082{height:14.890964pt;}
.h9_c00082{height:20.224297pt;}
.h4_c00082{height:20.466875pt;}
.h1_c00082{height:22.303646pt;}
.hc_c00082{height:25.800208pt;}
.h5_c00082{height:27.879557pt;}
.h2_c00082{height:31.618698pt;}
.h6_c00082{height:35.357839pt;}
.h3_c00082{height:39.031380pt;}
.h7_c00082{height:42.770521pt;}
.h0_c00082{height:1186.666667pt;}
.w0_c00082{width:782.666667pt;}
.x0_c00082{left:0.000000pt;}
.x3_c00082{left:133.706667pt;}
.x13_c00082{left:135.040000pt;}
.x48_c00082{left:138.666667pt;}
.x5f_c00082{left:140.000000pt;}
.x3a_c00082{left:152.960000pt;}
.xa0_c00082{left:157.333333pt;}
.xb2_c00082{left:158.666667pt;}
.x30_c00082{left:165.333333pt;}
.x14_c00082{left:166.666667pt;}
.xcc_c00082{left:171.040000pt;}
.x4_c00082{left:174.666667pt;}
.x38_c00082{left:175.626667pt;}
.xb3_c00082{left:176.960000pt;}
.x8c_c00082{left:179.040000pt;}
.x22_c00082{left:181.333333pt;}
.x49_c00082{left:183.040000pt;}
.x55_c00082{left:184.000000pt;}
.x60_c00082{left:185.333333pt;}
.x85_c00082{left:190.293333pt;}
.x5_c00082{left:192.960000pt;}
.xd0_c00082{left:194.293333pt;}
.x23_c00082{left:196.373333pt;}
.xd2_c00082{left:198.666667pt;}
.x3b_c00082{left:201.333333pt;}
.x39_c00082{left:202.293333pt;}
.x56_c00082{left:204.373333pt;}
.x6a_c00082{left:205.706667pt;}
.xa1_c00082{left:208.960000pt;}
.x15_c00082{left:210.666667pt;}
.xbe_c00082{left:213.333333pt;}
.x7d_c00082{left:214.293333pt;}
.xa7_c00082{left:217.333333pt;}
.x6_c00082{left:218.666667pt;}
.x73_c00082{left:220.000000pt;}
.x61_c00082{left:222.666667pt;}
.x16_c00082{left:226.666667pt;}
.x24_c00082{left:228.000000pt;}
.x57_c00082{left:229.333333pt;}
.x94_c00082{left:231.040000pt;}
.xa2_c00082{left:233.333333pt;}
.xcd_c00082{left:234.666667pt;}
.x8d_c00082{left:238.666667pt;}
.xd1_c00082{left:243.040000pt;}
.x6b_c00082{left:244.000000pt;}
.x7e_c00082{left:244.960000pt;}
.x74_c00082{left:247.040000pt;}
.x4a_c00082{left:250.293333pt;}
.xce_c00082{left:255.040000pt;}
.x62_c00082{left:256.000000pt;}
.xd4_c00082{left:258.666667pt;}
.xa3_c00082{left:262.666667pt;}
.x3c_c00082{left:263.800000pt;}
.x95_c00082{left:266.666667pt;}
.xcf_c00082{left:271.040000pt;}
.x86_c00082{left:272.000000pt;}
.x25_c00082{left:275.040000pt;}
.x6c_c00082{left:276.000000pt;}
.x96_c00082{left:284.373333pt;}
.x7_c00082{left:285.333333pt;}
.x3d_c00082{left:286.293333pt;}
.xa8_c00082{left:287.626667pt;}
.x4b_c00082{left:289.333333pt;}
.xb4_c00082{left:293.333333pt;}
.xbf_c00082{left:297.333333pt;}
.x17_c00082{left:299.040000pt;}
.xca_c00082{left:300.000000pt;}
.x63_c00082{left:301.333333pt;}
.x7f_c00082{left:303.040000pt;}
.xb9_c00082{left:305.333333pt;}
.x4c_c00082{left:306.666667pt;}
.x75_c00082{left:308.373333pt;}
.x58_c00082{left:309.333333pt;}
.xa9_c00082{left:312.373333pt;}
.x3e_c00082{left:314.666667pt;}
.x8_c00082{left:320.000000pt;}
.x3f_c00082{left:326.666667pt;}
.x59_c00082{left:328.373333pt;}
.x80_c00082{left:330.666667pt;}
.x18_c00082{left:331.626667pt;}
.xaf_c00082{left:333.333333pt;}
.x76_c00082{left:335.040000pt;}
.x26_c00082{left:336.000000pt;}
.x4d_c00082{left:337.706667pt;}
.xc9_c00082{left:338.666667pt;}
.x40_c00082{left:341.333333pt;}
.x6d_c00082{left:344.000000pt;}
.xaa_c00082{left:346.666667pt;}
.x8e_c00082{left:349.333333pt;}
.x1_c00082{left:353.333333pt;}
.x4e_c00082{left:355.040000pt;}
.x9_c00082{left:356.000000pt;}
.x41_c00082{left:357.333333pt;}
.xab_c00082{left:361.333333pt;}
.x27_c00082{left:362.666667pt;}
.x77_c00082{left:366.666667pt;}
.x9f_c00082{left:368.000000pt;}
.x31_c00082{left:369.333333pt;}
.xcb_c00082{left:370.666667pt;}
.x42_c00082{left:371.626667pt;}
.x8f_c00082{left:374.666667pt;}
.xa4_c00082{left:377.333333pt;}
.x97_c00082{left:380.000000pt;}
.x19_c00082{left:381.333333pt;}
.xac_c00082{left:384.000000pt;}
.x32_c00082{left:388.000000pt;}
.x4f_c00082{left:389.706667pt;}
.x5a_c00082{left:390.666667pt;}
.xa_c00082{left:401.706667pt;}
.xb5_c00082{left:403.040000pt;}
.x98_c00082{left:404.373333pt;}
.xbd_c00082{left:405.333333pt;}
.xc1_c00082{left:406.666667pt;}
.x9d_c00082{left:408.000000pt;}
.x1a_c00082{left:410.293333pt;}
.x28_c00082{left:412.000000pt;}
.x50_c00082{left:414.666667pt;}
.x43_c00082{left:416.000000pt;}
.x64_c00082{left:416.960000pt;}
.xb_c00082{left:427.040000pt;}
.x29_c00082{left:428.373333pt;}
.x87_c00082{left:429.706667pt;}
.x99_c00082{left:433.333333pt;}
.x81_c00082{left:434.666667pt;}
.x5b_c00082{left:437.333333pt;}
.x9e_c00082{left:438.666667pt;}
.xc6_c00082{left:440.373333pt;}
.xb0_c00082{left:441.333333pt;}
.xc3_c00082{left:442.666667pt;}
.x33_c00082{left:444.000000pt;}
.x65_c00082{left:445.333333pt;}
.x1b_c00082{left:448.000000pt;}
.x88_c00082{left:453.333333pt;}
.xad_c00082{left:454.666667pt;}
.x78_c00082{left:456.000000pt;}
.x2a_c00082{left:461.706667pt;}
.xc_c00082{left:463.040000pt;}
.x6e_c00082{left:464.000000pt;}
.x44_c00082{left:467.040000pt;}
.xb6_c00082{left:469.333333pt;}
.x51_c00082{left:470.666667pt;}
.x34_c00082{left:473.333333pt;}
.xc7_c00082{left:474.666667pt;}
.xd3_c00082{left:476.000000pt;}
.x1c_c00082{left:478.293333pt;}
.x6f_c00082{left:489.333333pt;}
.x82_c00082{left:491.040000pt;}
.xd_c00082{left:492.000000pt;}
.x9a_c00082{left:496.000000pt;}
.x1d_c00082{left:497.706667pt;}
.x89_c00082{left:500.960000pt;}
.x5c_c00082{left:503.040000pt;}
.xb7_c00082{left:504.000000pt;}
.x66_c00082{left:505.333333pt;}
.xb1_c00082{left:506.666667pt;}
.x79_c00082{left:508.000000pt;}
.x2b_c00082{left:509.706667pt;}
.x52_c00082{left:512.000000pt;}
.xba_c00082{left:514.666667pt;}
.xe_c00082{left:516.000000pt;}
.x45_c00082{left:520.000000pt;}
.x90_c00082{left:522.666667pt;}
.x1e_c00082{left:524.000000pt;}
.x9b_c00082{left:525.333333pt;}
.x2c_c00082{left:527.040000pt;}
.x70_c00082{left:534.666667pt;}
.xa5_c00082{left:536.000000pt;}
.x91_c00082{left:541.706667pt;}
.xc2_c00082{left:543.040000pt;}
.x67_c00082{left:544.000000pt;}
.xc4_c00082{left:546.666667pt;}
.x35_c00082{left:549.333333pt;}
.x7a_c00082{left:550.666667pt;}
.xf_c00082{left:552.960000pt;}
.x2d_c00082{left:556.373333pt;}
.x1f_c00082{left:559.626667pt;}
.x68_c00082{left:562.666667pt;}
.x83_c00082{left:564.000000pt;}
.xae_c00082{left:565.333333pt;}
.x92_c00082{left:567.040000pt;}
.xb8_c00082{left:569.333333pt;}
.x53_c00082{left:572.000000pt;}
.xc0_c00082{left:573.333333pt;}
.x36_c00082{left:575.040000pt;}
.x10_c00082{left:576.373333pt;}
.x20_c00082{left:577.706667pt;}
.xc8_c00082{left:578.666667pt;}
.x2e_c00082{left:580.373333pt;}
.xbb_c00082{left:581.333333pt;}
.x46_c00082{left:585.333333pt;}
.x8a_c00082{left:589.333333pt;}
.x5d_c00082{left:590.666667pt;}
.x7b_c00082{left:592.373333pt;}
.x71_c00082{left:593.333333pt;}
.x11_c00082{left:596.373333pt;}
.xa6_c00082{left:601.333333pt;}
.x21_c00082{left:604.373333pt;}
.x47_c00082{left:607.040000pt;}
.x72_c00082{left:608.000000pt;}
.x37_c00082{left:608.960000pt;}
.x2f_c00082{left:610.666667pt;}
.x5e_c00082{left:611.626667pt;}
.x54_c00082{left:613.333333pt;}
.xc5_c00082{left:614.666667pt;}
.x69_c00082{left:616.960000pt;}
.xbc_c00082{left:618.293333pt;}
.x8b_c00082{left:621.333333pt;}
.x84_c00082{left:625.333333pt;}
.x12_c00082{left:628.373333pt;}
.x2_c00082{left:631.626667pt;}
.x9c_c00082{left:636.000000pt;}
.x93_c00082{left:638.666667pt;}
.x7c_c00082{left:646.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_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_8d9eec301c584902be78465b.woff2')format("woff");}.ff1_c00083{font-family:ff1_c00083;line-height:1.688965;font-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_c00083{transform:matrix(0.336618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336618,0.000000,0.000000,0.250000,0,0);}
.mee_c00083{transform:matrix(0.348794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348794,0.000000,0.000000,0.250000,0,0);}
.mb4_c00083{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);}
.m99_c00083{transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);}
.m83_c00083{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m92_c00083{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.mbd_c00083{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.ma2_c00083{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.m1f_c00083{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mfb_c00083{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m108_c00083{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.md0_c00083{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m76_c00083{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m9f_c00083{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m42_c00083{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.mb0_c00083{transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);}
.mcf_c00083{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mbe_c00083{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m1d_c00083{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m12_c00083{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.mc7_c00083{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m67_c00083{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mbf_c00083{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m3f_c00083{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m78_c00083{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.md6_c00083{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m4c_c00083{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m5e_c00083{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m9d_c00083{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.mb1_c00083{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.mf2_c00083{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.md1_c00083{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mf4_c00083{transform:matrix(0.401452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401452,0.000000,0.000000,0.250000,0,0);}
.mc5_c00083{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.mac_c00083{transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);}
.m72_c00083{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m68_c00083{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mcd_c00083{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m39_c00083{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.md9_c00083{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.ma5_c00083{transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);}
.ma8_c00083{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m2a_c00083{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mb8_c00083{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m10a_c00083{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.mcb_c00083{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.ma4_c00083{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m82_c00083{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.md4_c00083{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.ma9_c00083{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m98_c00083{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.mae_c00083{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mce_c00083{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.maa_c00083{transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);}
.m3e_c00083{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mfd_c00083{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m24_c00083{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.ma1_c00083{transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);}
.m9_c00083{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.md_c00083{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m100_c00083{transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);}
.m23_c00083{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m5b_c00083{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.me2_c00083{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m14_c00083{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m53_c00083{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.med_c00083{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.maf_c00083{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mef_c00083{transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);}
.m5_c00083{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mdb_c00083{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m3b_c00083{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.m5a_c00083{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.mfc_c00083{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.mb3_c00083{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m48_c00083{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.mde_c00083{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m9b_c00083{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m109_c00083{transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);}
.m1e_c00083{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mb2_c00083{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m2c_c00083{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m6c_c00083{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m63_c00083{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.mf1_c00083{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.mff_c00083{transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);}
.mc6_c00083{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.m30_c00083{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m8e_c00083{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.ma0_c00083{transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);}
.m91_c00083{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m80_c00083{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.mf9_c00083{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m7a_c00083{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m96_c00083{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.m56_c00083{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m28_c00083{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m94_c00083{transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);}
.mda_c00083{transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);}
.m52_c00083{transform:matrix(0.467069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467069,0.000000,0.000000,0.250000,0,0);}
.m22_c00083{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m33_c00083{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.m9a_c00083{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.m7f_c00083{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.me9_c00083{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.md3_c00083{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.m54_c00083{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.ma7_c00083{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m5f_c00083{transform:matrix(0.478992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478992,0.000000,0.000000,0.250000,0,0);}
.m31_c00083{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m3_c00083{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m9c_c00083{transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);}
.mca_c00083{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m93_c00083{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m0_c00083{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m59_c00083{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.mab_c00083{transform:matrix(0.488824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488824,0.000000,0.000000,0.250000,0,0);}
.m44_c00083{transform:matrix(0.489796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489796,0.000000,0.000000,0.250000,0,0);}
.m87_c00083{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.meb_c00083{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m104_c00083{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m62_c00083{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mad_c00083{transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);}
.m8f_c00083{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m8a_c00083{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m25_c00083{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);}
.mc4_c00083{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m66_c00083{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m34_c00083{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m3d_c00083{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mf0_c00083{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m8d_c00083{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.ma3_c00083{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m4d_c00083{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m6a_c00083{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m3a_c00083{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m19_c00083{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m105_c00083{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m11_c00083{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m107_c00083{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);}
.m27_c00083{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m50_c00083{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m60_c00083{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m38_c00083{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m75_c00083{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mfe_c00083{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_c00083{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m74_c00083{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.md2_c00083{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m1a_c00083{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m45_c00083{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mc3_c00083{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m6_c00083{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m70_c00083{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.md7_c00083{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.mc8_c00083{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m7_c00083{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m17_c00083{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m4e_c00083{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.ma6_c00083{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m41_c00083{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m40_c00083{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m26_c00083{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m103_c00083{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m61_c00083{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m79_c00083{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m69_c00083{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.mb5_c00083{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m20_c00083{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m5c_c00083{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m7b_c00083{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m18_c00083{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mb_c00083{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m57_c00083{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m102_c00083{transform:matrix(0.549559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549559,0.000000,0.000000,0.250000,0,0);}
.m36_c00083{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.me7_c00083{transform:matrix(0.551176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551176,0.000000,0.000000,0.250000,0,0);}
.mdf_c00083{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m106_c00083{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m51_c00083{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m16_c00083{transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);}
.m58_c00083{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m37_c00083{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m5d_c00083{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m77_c00083{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mbb_c00083{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.me6_c00083{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.me_c00083{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m3c_c00083{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m8_c00083{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m95_c00083{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mc9_c00083{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m101_c00083{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.m8c_c00083{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mba_c00083{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.me3_c00083{transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);}
.mbc_c00083{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m1c_c00083{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m4a_c00083{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mdc_c00083{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.md5_c00083{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mcc_c00083{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.me0_c00083{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m88_c00083{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m89_c00083{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.m35_c00083{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m1b_c00083{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m32_c00083{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m8b_c00083{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mc1_c00083{transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);}
.mf_c00083{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m7e_c00083{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mc2_c00083{transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);}
.me5_c00083{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m6b_c00083{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m7c_c00083{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m2e_c00083{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);}
.m2f_c00083{transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);}
.m84_c00083{transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);}
.m1_c00083{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m85_c00083{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m55_c00083{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.m65_c00083{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m73_c00083{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m4_c00083{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m9e_c00083{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);}
.m13_c00083{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m71_c00083{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m2b_c00083{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m6f_c00083{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.mfa_c00083{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m97_c00083{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);}
.m49_c00083{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mea_c00083{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.mf7_c00083{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m47_c00083{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m86_c00083{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m6e_c00083{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.ma_c00083{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m15_c00083{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mf6_c00083{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.mf5_c00083{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mb6_c00083{transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);}
.mdd_c00083{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mf8_c00083{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m10_c00083{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m90_c00083{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.md8_c00083{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.me8_c00083{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);}
.m64_c00083{transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);}
.mc_c00083{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mf3_c00083{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.mc0_c00083{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m4f_c00083{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m46_c00083{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m7d_c00083{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m4b_c00083{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.me1_c00083{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m29_c00083{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m81_c00083{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m2_c00083{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m6d_c00083{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m43_c00083{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.mec_c00083{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.me4_c00083{transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);}
.mb7_c00083{transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);}
.m2d_c00083{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws1_c00083{word-spacing:-14.892000px;}
.ws0_c00083{word-spacing:-2.008560px;}
.ws2_c00083{word-spacing:0.000000px;}
._0_c00083{width:5.546393px;}
.fc0_c00083{color:transparent;}
.fs6_c00083{font-size:3.420000px;}
.fs8_c00083{font-size:13.620000px;}
.fs2_c00083{font-size:18.720000px;}
.fs1_c00083{font-size:20.400000px;}
.fs3_c00083{font-size:25.500000px;}
.fs0_c00083{font-size:28.920000px;}
.fs5_c00083{font-size:32.340000px;}
.fs4_c00083{font-size:35.700000px;}
.fs7_c00083{font-size:39.120000px;}
.y0_c00083{bottom:0.000000px;}
.yc0_c00083{bottom:248.970000px;}
.ybc_c00083{bottom:249.825000px;}
.ybd_c00083{bottom:250.050000px;}
.ybf_c00083{bottom:250.905000px;}
.ybe_c00083{bottom:251.970000px;}
.yb5_c00083{bottom:264.825000px;}
.yb4_c00083{bottom:265.050000px;}
.ybb_c00083{bottom:265.470000px;}
.yb7_c00083{bottom:265.905000px;}
.yba_c00083{bottom:266.325000px;}
.yb6_c00083{bottom:266.970000px;}
.yb8_c00083{bottom:267.195000px;}
.yb9_c00083{bottom:268.470000px;}
.yaf_c00083{bottom:279.825000px;}
.yb0_c00083{bottom:280.905000px;}
.yae_c00083{bottom:281.130000px;}
.yb3_c00083{bottom:281.325000px;}
.yb2_c00083{bottom:281.970000px;}
.yb1_c00083{bottom:283.050000px;}
.yab_c00083{bottom:294.405000px;}
.yad_c00083{bottom:295.905000px;}
.yac_c00083{bottom:296.970000px;}
.yaa_c00083{bottom:309.825000px;}
.ya8_c00083{bottom:310.905000px;}
.ya7_c00083{bottom:311.970000px;}
.ya6_c00083{bottom:312.195000px;}
.ya9_c00083{bottom:313.050000px;}
.ya5_c00083{bottom:337.245000px;}
.ya4_c00083{bottom:339.405000px;}
.ya2_c00083{bottom:356.745000px;}
.ya1_c00083{bottom:358.470000px;}
.ya0_c00083{bottom:358.905000px;}
.ya3_c00083{bottom:359.130000px;}
.y9f_c00083{bottom:376.245000px;}
.y9e_c00083{bottom:378.405000px;}
.y9d_c00083{bottom:395.745000px;}
.y9c_c00083{bottom:396.825000px;}
.y9b_c00083{bottom:397.905000px;}
.y99_c00083{bottom:415.245000px;}
.y9a_c00083{bottom:416.745000px;}
.y95_c00083{bottom:417.405000px;}
.y96_c00083{bottom:418.470000px;}
.y97_c00083{bottom:418.905000px;}
.y98_c00083{bottom:418.920000px;}
.y92_c00083{bottom:433.905000px;}
.y94_c00083{bottom:436.245000px;}
.y93_c00083{bottom:438.405000px;}
.y91_c00083{bottom:454.905000px;}
.y90_c00083{bottom:455.745000px;}
.y8f_c00083{bottom:457.905000px;}
.y8b_c00083{bottom:475.245000px;}
.y8c_c00083{bottom:476.325000px;}
.y8e_c00083{bottom:476.970000px;}
.y8a_c00083{bottom:477.405000px;}
.y8d_c00083{bottom:478.470000px;}
.y87_c00083{bottom:494.745000px;}
.y88_c00083{bottom:495.630000px;}
.y85_c00083{bottom:496.905000px;}
.y86_c00083{bottom:496.920000px;}
.y89_c00083{bottom:497.130000px;}
.y84_c00083{bottom:514.245000px;}
.y82_c00083{bottom:515.550000px;}
.y81_c00083{bottom:516.405000px;}
.y83_c00083{bottom:516.420000px;}
.y7d_c00083{bottom:532.905000px;}
.y7e_c00083{bottom:533.745000px;}
.y7a_c00083{bottom:534.180000px;}
.y7c_c00083{bottom:534.825000px;}
.y7f_c00083{bottom:535.245000px;}
.y80_c00083{bottom:536.325000px;}
.y7b_c00083{bottom:537.420000px;}
.y77_c00083{bottom:553.245000px;}
.y79_c00083{bottom:555.405000px;}
.y78_c00083{bottom:556.920000px;}
.y75_c00083{bottom:575.325000px;}
.y74_c00083{bottom:575.970000px;}
.y76_c00083{bottom:576.630000px;}
.y73_c00083{bottom:577.050000px;}
.y70_c00083{bottom:590.325000px;}
.y72_c00083{bottom:591.405000px;}
.y71_c00083{bottom:592.470000px;}
.y6f_c00083{bottom:609.825000px;}
.y6e_c00083{bottom:610.050000px;}
.y6d_c00083{bottom:610.905000px;}
.y69_c00083{bottom:624.825000px;}
.y68_c00083{bottom:625.905000px;}
.y6b_c00083{bottom:626.130000px;}
.y6c_c00083{bottom:626.970000px;}
.y6a_c00083{bottom:628.050000px;}
.y66_c00083{bottom:649.245000px;}
.y67_c00083{bottom:651.405000px;}
.y65_c00083{bottom:685.470000px;}
.y64_c00083{bottom:686.745000px;}
.y62_c00083{bottom:688.470000px;}
.y63_c00083{bottom:688.905000px;}
.y61_c00083{bottom:705.180000px;}
.y60_c00083{bottom:706.245000px;}
.y5f_c00083{bottom:707.130000px;}
.y5e_c00083{bottom:708.405000px;}
.y5b_c00083{bottom:725.745000px;}
.y5c_c00083{bottom:726.825000px;}
.y5a_c00083{bottom:727.905000px;}
.y5d_c00083{bottom:728.130000px;}
.y59_c00083{bottom:745.245000px;}
.y58_c00083{bottom:746.325000px;}
.y55_c00083{bottom:747.405000px;}
.y56_c00083{bottom:747.630000px;}
.y57_c00083{bottom:748.470000px;}
.y4e_c00083{bottom:763.905000px;}
.y51_c00083{bottom:764.745000px;}
.y52_c00083{bottom:765.825000px;}
.y4f_c00083{bottom:766.905000px;}
.y50_c00083{bottom:767.130000px;}
.y53_c00083{bottom:767.970000px;}
.y54_c00083{bottom:768.405000px;}
.y4d_c00083{bottom:784.470000px;}
.y49_c00083{bottom:785.745000px;}
.y4c_c00083{bottom:786.630000px;}
.y4b_c00083{bottom:786.825000px;}
.y4a_c00083{bottom:787.905000px;}
.y47_c00083{bottom:804.405000px;}
.y46_c00083{bottom:805.245000px;}
.y44_c00083{bottom:806.970000px;}
.y45_c00083{bottom:807.405000px;}
.y48_c00083{bottom:807.630000px;}
.y43_c00083{bottom:823.905000px;}
.y40_c00083{bottom:824.745000px;}
.y41_c00083{bottom:825.630000px;}
.y3e_c00083{bottom:825.825000px;}
.y42_c00083{bottom:826.470000px;}
.y3f_c00083{bottom:826.905000px;}
.y3b_c00083{bottom:844.245000px;}
.y3d_c00083{bottom:845.130000px;}
.y3c_c00083{bottom:845.970000px;}
.y39_c00083{bottom:846.405000px;}
.y3a_c00083{bottom:847.470000px;}
.y36_c00083{bottom:863.745000px;}
.y38_c00083{bottom:864.630000px;}
.y37_c00083{bottom:865.905000px;}
.y33_c00083{bottom:883.245000px;}
.y31_c00083{bottom:884.325000px;}
.y34_c00083{bottom:884.970000px;}
.y32_c00083{bottom:885.405000px;}
.y35_c00083{bottom:885.630000px;}
.y2b_c00083{bottom:902.745000px;}
.y2c_c00083{bottom:902.970000px;}
.y2e_c00083{bottom:904.905000px;}
.y2f_c00083{bottom:905.130000px;}
.y2a_c00083{bottom:905.325000px;}
.y2d_c00083{bottom:905.970000px;}
.y30_c00083{bottom:906.405000px;}
.y28_c00083{bottom:923.745000px;}
.y27_c00083{bottom:924.630000px;}
.y25_c00083{bottom:924.825000px;}
.y24_c00083{bottom:925.470000px;}
.y26_c00083{bottom:925.905000px;}
.y29_c00083{bottom:926.970000px;}
.y1f_c00083{bottom:941.745000px;}
.y23_c00083{bottom:942.825000px;}
.y21_c00083{bottom:943.245000px;}
.y1e_c00083{bottom:943.905000px;}
.y22_c00083{bottom:944.130000px;}
.y20_c00083{bottom:945.405000px;}
.y1c_c00083{bottom:962.745000px;}
.y1d_c00083{bottom:963.630000px;}
.y1b_c00083{bottom:964.905000px;}
.y18_c00083{bottom:982.245000px;}
.y19_c00083{bottom:983.325000px;}
.y15_c00083{bottom:984.405000px;}
.y16_c00083{bottom:984.420000px;}
.y1a_c00083{bottom:984.630000px;}
.y17_c00083{bottom:985.470000px;}
.y14_c00083{bottom:1000.905000px;}
.y11_c00083{bottom:1001.745000px;}
.y10_c00083{bottom:1002.825000px;}
.y12_c00083{bottom:1003.905000px;}
.y13_c00083{bottom:1004.130000px;}
.ye_c00083{bottom:1021.245000px;}
.yf_c00083{bottom:1022.325000px;}
.yc_c00083{bottom:1023.405000px;}
.yd_c00083{bottom:1024.470000px;}
.ya_c00083{bottom:1040.745000px;}
.y9_c00083{bottom:1041.630000px;}
.y8_c00083{bottom:1042.905000px;}
.yb_c00083{bottom:1043.970000px;}
.y5_c00083{bottom:1058.970000px;}
.y6_c00083{bottom:1060.245000px;}
.y3_c00083{bottom:1061.130000px;}
.y4_c00083{bottom:1062.405000px;}
.y7_c00083{bottom:1062.630000px;}
.y1_c00083{bottom:1099.905000px;}
.y2_c00083{bottom:1100.550000px;}
.h7_c00083{height:4.206533px;}
.h9_c00083{height:16.752334px;}
.h3_c00083{height:23.025234px;}
.h2_c00083{height:25.091602px;}
.h4_c00083{height:31.364502px;}
.h1_c00083{height:35.571035px;}
.h6_c00083{height:39.777568px;}
.h5_c00083{height:43.910303px;}
.h8_c00083{height:48.116836px;}
.h0_c00083{height:1335.000000px;}
.w0_c00083{width:880.500000px;}
.x0_c00083{left:0.000000px;}
.x107_c00083{left:147.000000px;}
.xe5_c00083{left:148.080000px;}
.xd8_c00083{left:150.000000px;}
.xb4_c00083{left:151.920000px;}
.x3b_c00083{left:153.000000px;}
.x1_c00083{left:154.080000px;}
.x5c_c00083{left:155.355000px;}
.xfb_c00083{left:162.000000px;}
.xf3_c00083{left:163.080000px;}
.xc6_c00083{left:166.500000px;}
.xae_c00083{left:168.000000px;}
.x1b_c00083{left:169.500000px;}
.xf4_c00083{left:180.000000px;}
.x11_c00083{left:181.500000px;}
.xe2_c00083{left:184.500000px;}
.x4f_c00083{left:186.000000px;}
.x45_c00083{left:189.000000px;}
.x3_c00083{left:190.500000px;}
.xb5_c00083{left:192.000000px;}
.x8a_c00083{left:195.000000px;}
.xe6_c00083{left:196.080000px;}
.x93_c00083{left:198.000000px;}
.x1c_c00083{left:199.080000px;}
.x108_c00083{left:201.000000px;}
.x9b_c00083{left:202.080000px;}
.xbb_c00083{left:204.420000px;}
.x4_c00083{left:205.920000px;}
.xca_c00083{left:207.000000px;}
.xe8_c00083{left:208.500000px;}
.x29_c00083{left:210.420000px;}
.x8b_c00083{left:211.500000px;}
.x46_c00083{left:213.000000px;}
.x79_c00083{left:214.500000px;}
.xc1_c00083{left:215.580000px;}
.xd9_c00083{left:217.080000px;}
.xea_c00083{left:218.580000px;}
.x7f_c00083{left:223.920000px;}
.xf2_c00083{left:225.000000px;}
.x12_c00083{left:226.500000px;}
.xcb_c00083{left:228.000000px;}
.x5d_c00083{left:229.920000px;}
.xbc_c00083{left:231.000000px;}
.xa6_c00083{left:232.500000px;}
.xaf_c00083{left:236.580000px;}
.x94_c00083{left:237.855000px;}
.x5_c00083{left:240.000000px;}
.xeb_c00083{left:241.920000px;}
.x3c_c00083{left:243.000000px;}
.xb6_c00083{left:246.000000px;}
.xcf_c00083{left:247.500000px;}
.xda_c00083{left:249.000000px;}
.xf5_c00083{left:250.500000px;}
.x8c_c00083{left:252.000000px;}
.x50_c00083{left:256.080000px;}
.xdf_c00083{left:257.580000px;}
.x1d_c00083{left:259.080000px;}
.xcc_c00083{left:265.500000px;}
.x5e_c00083{left:267.420000px;}
.x9c_c00083{left:270.420000px;}
.xfc_c00083{left:271.500000px;}
.x13_c00083{left:273.420000px;}
.x2a_c00083{left:276.420000px;}
.xb7_c00083{left:277.920000px;}
.xd2_c00083{left:279.000000px;}
.xbd_c00083{left:283.080000px;}
.x109_c00083{left:284.580000px;}
.x51_c00083{left:286.920000px;}
.x1e_c00083{left:288.000000px;}
.xbf_c00083{left:289.500000px;}
.x5f_c00083{left:290.580000px;}
.x34_c00083{left:292.080000px;}
.xfa_c00083{left:294.000000px;}
.x69_c00083{left:295.500000px;}
.xdb_c00083{left:297.000000px;}
.x70_c00083{left:298.500000px;}
.x14_c00083{left:300.000000px;}
.x6_c00083{left:301.920000px;}
.xfd_c00083{left:303.000000px;}
.x47_c00083{left:307.920000px;}
.x3d_c00083{left:312.420000px;}
.xa7_c00083{left:314.580000px;}
.x9d_c00083{left:316.080000px;}
.x71_c00083{left:318.420000px;}
.xe9_c00083{left:319.500000px;}
.xb0_c00083{left:321.000000px;}
.x1f_c00083{left:322.500000px;}
.x52_c00083{left:325.500000px;}
.x7_c00083{left:327.000000px;}
.x7a_c00083{left:328.500000px;}
.x60_c00083{left:334.500000px;}
.xe0_c00083{left:336.000000px;}
.xec_c00083{left:337.080000px;}
.x53_c00083{left:339.420000px;}
.xb8_c00083{left:340.500000px;}
.xbe_c00083{left:342.420000px;}
.x48_c00083{left:343.500000px;}
.x3e_c00083{left:345.000000px;}
.xd0_c00083{left:346.500000px;}
.x72_c00083{left:348.000000px;}
.x9e_c00083{left:349.275000px;}
.x15_c00083{left:351.000000px;}
.x8d_c00083{left:352.920000px;}
.x61_c00083{left:354.000000px;}
.x10a_c00083{left:355.080000px;}
.x35_c00083{left:357.000000px;}
.x6a_c00083{left:360.420000px;}
.xfe_c00083{left:363.000000px;}
.xdc_c00083{left:364.500000px;}
.x2b_c00083{left:367.080000px;}
.x8_c00083{left:370.500000px;}
.xd3_c00083{left:373.500000px;}
.xc7_c00083{left:376.920000px;}
.x8e_c00083{left:378.420000px;}
.x9f_c00083{left:379.500000px;}
.xa8_c00083{left:381.000000px;}
.x2c_c00083{left:383.580000px;}
.x9_c00083{left:385.080000px;}
.x80_c00083{left:387.000000px;}
.x49_c00083{left:390.000000px;}
.xc0_c00083{left:391.080000px;}
.xf6_c00083{left:394.920000px;}
.xb1_c00083{left:396.420000px;}
.x3f_c00083{left:397.500000px;}
.x16_c00083{left:399.000000px;}
.x54_c00083{left:400.080000px;}
.x2_c00083{left:402.000000px;}
.xd1_c00083{left:403.500000px;}
.x8f_c00083{left:406.500000px;}
.xa9_c00083{left:407.580000px;}
.x95_c00083{left:410.580000px;}
.x36_c00083{left:412.080000px;}
.xc8_c00083{left:414.420000px;}
.xff_c00083{left:416.145000px;}
.xe1_c00083{left:417.645000px;}
.x40_c00083{left:418.920000px;}
.x20_c00083{left:422.580000px;}
.xc5_c00083{left:423.855000px;}
.x17_c00083{left:424.920000px;}
.x10b_c00083{left:427.080000px;}
.xa0_c00083{left:428.355000px;}
.xa_c00083{left:429.420000px;}
.xe7_c00083{left:434.580000px;}
.x62_c00083{left:436.500000px;}
.xe3_c00083{left:437.580000px;}
.x21_c00083{left:439.500000px;}
.x55_c00083{left:441.000000px;}
.xb9_c00083{left:444.000000px;}
.x6b_c00083{left:445.920000px;}
.x96_c00083{left:448.500000px;}
.x37_c00083{left:451.500000px;}
.x73_c00083{left:452.580000px;}
.x81_c00083{left:454.080000px;}
.xed_c00083{left:456.000000px;}
.x63_c00083{left:460.500000px;}
.x22_c00083{left:462.000000px;}
.x90_c00083{left:466.500000px;}
.xd4_c00083{left:471.000000px;}
.x2d_c00083{left:472.500000px;}
.x18_c00083{left:473.580000px;}
.x97_c00083{left:478.500000px;}
.x82_c00083{left:481.080000px;}
.x74_c00083{left:482.580000px;}
.x64_c00083{left:484.080000px;}
.x91_c00083{left:486.420000px;}
.xcd_c00083{left:488.775000px;}
.x56_c00083{left:490.500000px;}
.x19_c00083{left:492.420000px;}
.xf7_c00083{left:493.500000px;}
.xb_c00083{left:495.000000px;}
.x100_c00083{left:496.920000px;}
.x41_c00083{left:498.420000px;}
.x83_c00083{left:499.920000px;}
.xc2_c00083{left:501.000000px;}
.x4a_c00083{left:502.500000px;}
.xa1_c00083{left:504.420000px;}
.x101_c00083{left:507.000000px;}
.xaa_c00083{left:508.500000px;}
.xee_c00083{left:509.580000px;}
.xc_c00083{left:513.420000px;}
.x1a_c00083{left:519.420000px;}
.x2e_c00083{left:520.920000px;}
.x6c_c00083{left:522.000000px;}
.x84_c00083{left:526.500000px;}
.x7b_c00083{left:528.000000px;}
.x42_c00083{left:531.420000px;}
.x23_c00083{left:533.580000px;}
.x4b_c00083{left:535.920000px;}
.xd_c00083{left:538.920000px;}
.x38_c00083{left:541.500000px;}
.x65_c00083{left:543.000000px;}
.x75_c00083{left:547.920000px;}
.x24_c00083{left:549.420000px;}
.xd5_c00083{left:550.500000px;}
.x39_c00083{left:555.000000px;}
.x57_c00083{left:556.080000px;}
.x6d_c00083{left:558.420000px;}
.x7c_c00083{left:559.920000px;}
.xc3_c00083{left:561.420000px;}
.x4c_c00083{left:563.580000px;}
.xa2_c00083{left:566.580000px;}
.x102_c00083{left:568.080000px;}
.x25_c00083{left:573.000000px;}
.x85_c00083{left:574.500000px;}
.x103_c00083{left:577.500000px;}
.xd6_c00083{left:578.580000px;}
.x66_c00083{left:580.500000px;}
.x98_c00083{left:585.420000px;}
.x6e_c00083{left:586.500000px;}
.x76_c00083{left:588.000000px;}
.xc4_c00083{left:589.080000px;}
.xef_c00083{left:591.420000px;}
.xab_c00083{left:594.000000px;}
.x92_c00083{left:595.920000px;}
.x3a_c00083{left:598.275000px;}
.x58_c00083{left:600.000000px;}
.x2f_c00083{left:601.500000px;}
.x86_c00083{left:604.500000px;}
.xa3_c00083{left:609.000000px;}
.x7d_c00083{left:610.080000px;}
.xe4_c00083{left:612.000000px;}
.x99_c00083{left:613.080000px;}
.xf8_c00083{left:615.000000px;}
.xe_c00083{left:616.500000px;}
.x59_c00083{left:618.420000px;}
.xf0_c00083{left:619.920000px;}
.x4d_c00083{left:621.420000px;}
.x67_c00083{left:622.920000px;}
.x30_c00083{left:624.420000px;}
.x26_c00083{left:625.500000px;}
.xdd_c00083{left:627.000000px;}
.x77_c00083{left:628.500000px;}
.xa4_c00083{left:630.000000px;}
.xf9_c00083{left:633.000000px;}
.xba_c00083{left:634.920000px;}
.x87_c00083{left:637.500000px;}
.x104_c00083{left:639.000000px;}
.xf_c00083{left:640.500000px;}
.xb2_c00083{left:643.920000px;}
.x5a_c00083{left:645.000000px;}
.xac_c00083{left:649.080000px;}
.x88_c00083{left:655.500000px;}
.xc9_c00083{left:656.580000px;}
.xce_c00083{left:658.500000px;}
.x43_c00083{left:660.645000px;}
.x31_c00083{left:663.000000px;}
.xd7_c00083{left:664.500000px;}
.xad_c00083{left:665.580000px;}
.xde_c00083{left:670.500000px;}
.x6f_c00083{left:672.000000px;}
.x78_c00083{left:673.080000px;}
.x27_c00083{left:675.420000px;}
.x105_c00083{left:676.500000px;}
.x32_c00083{left:678.000000px;}
.xf1_c00083{left:681.000000px;}
.x5b_c00083{left:690.000000px;}
.x9a_c00083{left:693.000000px;}
.x10_c00083{left:696.000000px;}
.x7e_c00083{left:699.420000px;}
.x89_c00083{left:700.920000px;}
.x106_c00083{left:704.580000px;}
.x44_c00083{left:706.080000px;}
.x28_c00083{left:709.080000px;}
.xa5_c00083{left:714.000000px;}
.x4e_c00083{left:715.500000px;}
.xb3_c00083{left:716.580000px;}
.x68_c00083{left:718.080000px;}
.x33_c00083{left:720.000000px;}
@media print{
.v0_c00083{vertical-align:0.000000pt;}
.ls0_c00083{letter-spacing:0.000000pt;}
.ws1_c00083{word-spacing:-13.237333pt;}
.ws0_c00083{word-spacing:-1.785387pt;}
.ws2_c00083{word-spacing:0.000000pt;}
._0_c00083{width:4.930127pt;}
.fs6_c00083{font-size:3.040000pt;}
.fs8_c00083{font-size:12.106667pt;}
.fs2_c00083{font-size:16.640000pt;}
.fs1_c00083{font-size:18.133333pt;}
.fs3_c00083{font-size:22.666667pt;}
.fs0_c00083{font-size:25.706667pt;}
.fs5_c00083{font-size:28.746667pt;}
.fs4_c00083{font-size:31.733333pt;}
.fs7_c00083{font-size:34.773333pt;}
.y0_c00083{bottom:0.000000pt;}
.yc0_c00083{bottom:221.306667pt;}
.ybc_c00083{bottom:222.066667pt;}
.ybd_c00083{bottom:222.266667pt;}
.ybf_c00083{bottom:223.026667pt;}
.ybe_c00083{bottom:223.973333pt;}
.yb5_c00083{bottom:235.400000pt;}
.yb4_c00083{bottom:235.600000pt;}
.ybb_c00083{bottom:235.973333pt;}
.yb7_c00083{bottom:236.360000pt;}
.yba_c00083{bottom:236.733333pt;}
.yb6_c00083{bottom:237.306667pt;}
.yb8_c00083{bottom:237.506667pt;}
.yb9_c00083{bottom:238.640000pt;}
.yaf_c00083{bottom:248.733333pt;}
.yb0_c00083{bottom:249.693333pt;}
.yae_c00083{bottom:249.893333pt;}
.yb3_c00083{bottom:250.066667pt;}
.yb2_c00083{bottom:250.640000pt;}
.yb1_c00083{bottom:251.600000pt;}
.yab_c00083{bottom:261.693333pt;}
.yad_c00083{bottom:263.026667pt;}
.yac_c00083{bottom:263.973333pt;}
.yaa_c00083{bottom:275.400000pt;}
.ya8_c00083{bottom:276.360000pt;}
.ya7_c00083{bottom:277.306667pt;}
.ya6_c00083{bottom:277.506667pt;}
.ya9_c00083{bottom:278.266667pt;}
.ya5_c00083{bottom:299.773333pt;}
.ya4_c00083{bottom:301.693333pt;}
.ya2_c00083{bottom:317.106667pt;}
.ya1_c00083{bottom:318.640000pt;}
.ya0_c00083{bottom:319.026667pt;}
.ya3_c00083{bottom:319.226667pt;}
.y9f_c00083{bottom:334.440000pt;}
.y9e_c00083{bottom:336.360000pt;}
.y9d_c00083{bottom:351.773333pt;}
.y9c_c00083{bottom:352.733333pt;}
.y9b_c00083{bottom:353.693333pt;}
.y99_c00083{bottom:369.106667pt;}
.y9a_c00083{bottom:370.440000pt;}
.y95_c00083{bottom:371.026667pt;}
.y96_c00083{bottom:371.973333pt;}
.y97_c00083{bottom:372.360000pt;}
.y98_c00083{bottom:372.373333pt;}
.y92_c00083{bottom:385.693333pt;}
.y94_c00083{bottom:387.773333pt;}
.y93_c00083{bottom:389.693333pt;}
.y91_c00083{bottom:404.360000pt;}
.y90_c00083{bottom:405.106667pt;}
.y8f_c00083{bottom:407.026667pt;}
.y8b_c00083{bottom:422.440000pt;}
.y8c_c00083{bottom:423.400000pt;}
.y8e_c00083{bottom:423.973333pt;}
.y8a_c00083{bottom:424.360000pt;}
.y8d_c00083{bottom:425.306667pt;}
.y87_c00083{bottom:439.773333pt;}
.y88_c00083{bottom:440.560000pt;}
.y85_c00083{bottom:441.693333pt;}
.y86_c00083{bottom:441.706667pt;}
.y89_c00083{bottom:441.893333pt;}
.y84_c00083{bottom:457.106667pt;}
.y82_c00083{bottom:458.266667pt;}
.y81_c00083{bottom:459.026667pt;}
.y83_c00083{bottom:459.040000pt;}
.y7d_c00083{bottom:473.693333pt;}
.y7e_c00083{bottom:474.440000pt;}
.y7a_c00083{bottom:474.826667pt;}
.y7c_c00083{bottom:475.400000pt;}
.y7f_c00083{bottom:475.773333pt;}
.y80_c00083{bottom:476.733333pt;}
.y7b_c00083{bottom:477.706667pt;}
.y77_c00083{bottom:491.773333pt;}
.y79_c00083{bottom:493.693333pt;}
.y78_c00083{bottom:495.040000pt;}
.y75_c00083{bottom:511.400000pt;}
.y74_c00083{bottom:511.973333pt;}
.y76_c00083{bottom:512.560000pt;}
.y73_c00083{bottom:512.933333pt;}
.y70_c00083{bottom:524.733333pt;}
.y72_c00083{bottom:525.693333pt;}
.y71_c00083{bottom:526.640000pt;}
.y6f_c00083{bottom:542.066667pt;}
.y6e_c00083{bottom:542.266667pt;}
.y6d_c00083{bottom:543.026667pt;}
.y69_c00083{bottom:555.400000pt;}
.y68_c00083{bottom:556.360000pt;}
.y6b_c00083{bottom:556.560000pt;}
.y6c_c00083{bottom:557.306667pt;}
.y6a_c00083{bottom:558.266667pt;}
.y66_c00083{bottom:577.106667pt;}
.y67_c00083{bottom:579.026667pt;}
.y65_c00083{bottom:609.306667pt;}
.y64_c00083{bottom:610.440000pt;}
.y62_c00083{bottom:611.973333pt;}
.y63_c00083{bottom:612.360000pt;}
.y61_c00083{bottom:626.826667pt;}
.y60_c00083{bottom:627.773333pt;}
.y5f_c00083{bottom:628.560000pt;}
.y5e_c00083{bottom:629.693333pt;}
.y5b_c00083{bottom:645.106667pt;}
.y5c_c00083{bottom:646.066667pt;}
.y5a_c00083{bottom:647.026667pt;}
.y5d_c00083{bottom:647.226667pt;}
.y59_c00083{bottom:662.440000pt;}
.y58_c00083{bottom:663.400000pt;}
.y55_c00083{bottom:664.360000pt;}
.y56_c00083{bottom:664.560000pt;}
.y57_c00083{bottom:665.306667pt;}
.y4e_c00083{bottom:679.026667pt;}
.y51_c00083{bottom:679.773333pt;}
.y52_c00083{bottom:680.733333pt;}
.y4f_c00083{bottom:681.693333pt;}
.y50_c00083{bottom:681.893333pt;}
.y53_c00083{bottom:682.640000pt;}
.y54_c00083{bottom:683.026667pt;}
.y4d_c00083{bottom:697.306667pt;}
.y49_c00083{bottom:698.440000pt;}
.y4c_c00083{bottom:699.226667pt;}
.y4b_c00083{bottom:699.400000pt;}
.y4a_c00083{bottom:700.360000pt;}
.y47_c00083{bottom:715.026667pt;}
.y46_c00083{bottom:715.773333pt;}
.y44_c00083{bottom:717.306667pt;}
.y45_c00083{bottom:717.693333pt;}
.y48_c00083{bottom:717.893333pt;}
.y43_c00083{bottom:732.360000pt;}
.y40_c00083{bottom:733.106667pt;}
.y41_c00083{bottom:733.893333pt;}
.y3e_c00083{bottom:734.066667pt;}
.y42_c00083{bottom:734.640000pt;}
.y3f_c00083{bottom:735.026667pt;}
.y3b_c00083{bottom:750.440000pt;}
.y3d_c00083{bottom:751.226667pt;}
.y3c_c00083{bottom:751.973333pt;}
.y39_c00083{bottom:752.360000pt;}
.y3a_c00083{bottom:753.306667pt;}
.y36_c00083{bottom:767.773333pt;}
.y38_c00083{bottom:768.560000pt;}
.y37_c00083{bottom:769.693333pt;}
.y33_c00083{bottom:785.106667pt;}
.y31_c00083{bottom:786.066667pt;}
.y34_c00083{bottom:786.640000pt;}
.y32_c00083{bottom:787.026667pt;}
.y35_c00083{bottom:787.226667pt;}
.y2b_c00083{bottom:802.440000pt;}
.y2c_c00083{bottom:802.640000pt;}
.y2e_c00083{bottom:804.360000pt;}
.y2f_c00083{bottom:804.560000pt;}
.y2a_c00083{bottom:804.733333pt;}
.y2d_c00083{bottom:805.306667pt;}
.y30_c00083{bottom:805.693333pt;}
.y28_c00083{bottom:821.106667pt;}
.y27_c00083{bottom:821.893333pt;}
.y25_c00083{bottom:822.066667pt;}
.y24_c00083{bottom:822.640000pt;}
.y26_c00083{bottom:823.026667pt;}
.y29_c00083{bottom:823.973333pt;}
.y1f_c00083{bottom:837.106667pt;}
.y23_c00083{bottom:838.066667pt;}
.y21_c00083{bottom:838.440000pt;}
.y1e_c00083{bottom:839.026667pt;}
.y22_c00083{bottom:839.226667pt;}
.y20_c00083{bottom:840.360000pt;}
.y1c_c00083{bottom:855.773333pt;}
.y1d_c00083{bottom:856.560000pt;}
.y1b_c00083{bottom:857.693333pt;}
.y18_c00083{bottom:873.106667pt;}
.y19_c00083{bottom:874.066667pt;}
.y15_c00083{bottom:875.026667pt;}
.y16_c00083{bottom:875.040000pt;}
.y1a_c00083{bottom:875.226667pt;}
.y17_c00083{bottom:875.973333pt;}
.y14_c00083{bottom:889.693333pt;}
.y11_c00083{bottom:890.440000pt;}
.y10_c00083{bottom:891.400000pt;}
.y12_c00083{bottom:892.360000pt;}
.y13_c00083{bottom:892.560000pt;}
.ye_c00083{bottom:907.773333pt;}
.yf_c00083{bottom:908.733333pt;}
.yc_c00083{bottom:909.693333pt;}
.yd_c00083{bottom:910.640000pt;}
.ya_c00083{bottom:925.106667pt;}
.y9_c00083{bottom:925.893333pt;}
.y8_c00083{bottom:927.026667pt;}
.yb_c00083{bottom:927.973333pt;}
.y5_c00083{bottom:941.306667pt;}
.y6_c00083{bottom:942.440000pt;}
.y3_c00083{bottom:943.226667pt;}
.y4_c00083{bottom:944.360000pt;}
.y7_c00083{bottom:944.560000pt;}
.y1_c00083{bottom:977.693333pt;}
.y2_c00083{bottom:978.266667pt;}
.h7_c00083{height:3.739141pt;}
.h9_c00083{height:14.890964pt;}
.h3_c00083{height:20.466875pt;}
.h2_c00083{height:22.303646pt;}
.h4_c00083{height:27.879557pt;}
.h1_c00083{height:31.618698pt;}
.h6_c00083{height:35.357839pt;}
.h5_c00083{height:39.031380pt;}
.h8_c00083{height:42.770521pt;}
.h0_c00083{height:1186.666667pt;}
.w0_c00083{width:782.666667pt;}
.x0_c00083{left:0.000000pt;}
.x107_c00083{left:130.666667pt;}
.xe5_c00083{left:131.626667pt;}
.xd8_c00083{left:133.333333pt;}
.xb4_c00083{left:135.040000pt;}
.x3b_c00083{left:136.000000pt;}
.x1_c00083{left:136.960000pt;}
.x5c_c00083{left:138.093333pt;}
.xfb_c00083{left:144.000000pt;}
.xf3_c00083{left:144.960000pt;}
.xc6_c00083{left:148.000000pt;}
.xae_c00083{left:149.333333pt;}
.x1b_c00083{left:150.666667pt;}
.xf4_c00083{left:160.000000pt;}
.x11_c00083{left:161.333333pt;}
.xe2_c00083{left:164.000000pt;}
.x4f_c00083{left:165.333333pt;}
.x45_c00083{left:168.000000pt;}
.x3_c00083{left:169.333333pt;}
.xb5_c00083{left:170.666667pt;}
.x8a_c00083{left:173.333333pt;}
.xe6_c00083{left:174.293333pt;}
.x93_c00083{left:176.000000pt;}
.x1c_c00083{left:176.960000pt;}
.x108_c00083{left:178.666667pt;}
.x9b_c00083{left:179.626667pt;}
.xbb_c00083{left:181.706667pt;}
.x4_c00083{left:183.040000pt;}
.xca_c00083{left:184.000000pt;}
.xe8_c00083{left:185.333333pt;}
.x29_c00083{left:187.040000pt;}
.x8b_c00083{left:188.000000pt;}
.x46_c00083{left:189.333333pt;}
.x79_c00083{left:190.666667pt;}
.xc1_c00083{left:191.626667pt;}
.xd9_c00083{left:192.960000pt;}
.xea_c00083{left:194.293333pt;}
.x7f_c00083{left:199.040000pt;}
.xf2_c00083{left:200.000000pt;}
.x12_c00083{left:201.333333pt;}
.xcb_c00083{left:202.666667pt;}
.x5d_c00083{left:204.373333pt;}
.xbc_c00083{left:205.333333pt;}
.xa6_c00083{left:206.666667pt;}
.xaf_c00083{left:210.293333pt;}
.x94_c00083{left:211.426667pt;}
.x5_c00083{left:213.333333pt;}
.xeb_c00083{left:215.040000pt;}
.x3c_c00083{left:216.000000pt;}
.xb6_c00083{left:218.666667pt;}
.xcf_c00083{left:220.000000pt;}
.xda_c00083{left:221.333333pt;}
.xf5_c00083{left:222.666667pt;}
.x8c_c00083{left:224.000000pt;}
.x50_c00083{left:227.626667pt;}
.xdf_c00083{left:228.960000pt;}
.x1d_c00083{left:230.293333pt;}
.xcc_c00083{left:236.000000pt;}
.x5e_c00083{left:237.706667pt;}
.x9c_c00083{left:240.373333pt;}
.xfc_c00083{left:241.333333pt;}
.x13_c00083{left:243.040000pt;}
.x2a_c00083{left:245.706667pt;}
.xb7_c00083{left:247.040000pt;}
.xd2_c00083{left:248.000000pt;}
.xbd_c00083{left:251.626667pt;}
.x109_c00083{left:252.960000pt;}
.x51_c00083{left:255.040000pt;}
.x1e_c00083{left:256.000000pt;}
.xbf_c00083{left:257.333333pt;}
.x5f_c00083{left:258.293333pt;}
.x34_c00083{left:259.626667pt;}
.xfa_c00083{left:261.333333pt;}
.x69_c00083{left:262.666667pt;}
.xdb_c00083{left:264.000000pt;}
.x70_c00083{left:265.333333pt;}
.x14_c00083{left:266.666667pt;}
.x6_c00083{left:268.373333pt;}
.xfd_c00083{left:269.333333pt;}
.x47_c00083{left:273.706667pt;}
.x3d_c00083{left:277.706667pt;}
.xa7_c00083{left:279.626667pt;}
.x9d_c00083{left:280.960000pt;}
.x71_c00083{left:283.040000pt;}
.xe9_c00083{left:284.000000pt;}
.xb0_c00083{left:285.333333pt;}
.x1f_c00083{left:286.666667pt;}
.x52_c00083{left:289.333333pt;}
.x7_c00083{left:290.666667pt;}
.x7a_c00083{left:292.000000pt;}
.x60_c00083{left:297.333333pt;}
.xe0_c00083{left:298.666667pt;}
.xec_c00083{left:299.626667pt;}
.x53_c00083{left:301.706667pt;}
.xb8_c00083{left:302.666667pt;}
.xbe_c00083{left:304.373333pt;}
.x48_c00083{left:305.333333pt;}
.x3e_c00083{left:306.666667pt;}
.xd0_c00083{left:308.000000pt;}
.x72_c00083{left:309.333333pt;}
.x9e_c00083{left:310.466667pt;}
.x15_c00083{left:312.000000pt;}
.x8d_c00083{left:313.706667pt;}
.x61_c00083{left:314.666667pt;}
.x10a_c00083{left:315.626667pt;}
.x35_c00083{left:317.333333pt;}
.x6a_c00083{left:320.373333pt;}
.xfe_c00083{left:322.666667pt;}
.xdc_c00083{left:324.000000pt;}
.x2b_c00083{left:326.293333pt;}
.x8_c00083{left:329.333333pt;}
.xd3_c00083{left:332.000000pt;}
.xc7_c00083{left:335.040000pt;}
.x8e_c00083{left:336.373333pt;}
.x9f_c00083{left:337.333333pt;}
.xa8_c00083{left:338.666667pt;}
.x2c_c00083{left:340.960000pt;}
.x9_c00083{left:342.293333pt;}
.x80_c00083{left:344.000000pt;}
.x49_c00083{left:346.666667pt;}
.xc0_c00083{left:347.626667pt;}
.xf6_c00083{left:351.040000pt;}
.xb1_c00083{left:352.373333pt;}
.x3f_c00083{left:353.333333pt;}
.x16_c00083{left:354.666667pt;}
.x54_c00083{left:355.626667pt;}
.x2_c00083{left:357.333333pt;}
.xd1_c00083{left:358.666667pt;}
.x8f_c00083{left:361.333333pt;}
.xa9_c00083{left:362.293333pt;}
.x95_c00083{left:364.960000pt;}
.x36_c00083{left:366.293333pt;}
.xc8_c00083{left:368.373333pt;}
.xff_c00083{left:369.906667pt;}
.xe1_c00083{left:371.240000pt;}
.x40_c00083{left:372.373333pt;}
.x20_c00083{left:375.626667pt;}
.xc5_c00083{left:376.760000pt;}
.x17_c00083{left:377.706667pt;}
.x10b_c00083{left:379.626667pt;}
.xa0_c00083{left:380.760000pt;}
.xa_c00083{left:381.706667pt;}
.xe7_c00083{left:386.293333pt;}
.x62_c00083{left:388.000000pt;}
.xe3_c00083{left:388.960000pt;}
.x21_c00083{left:390.666667pt;}
.x55_c00083{left:392.000000pt;}
.xb9_c00083{left:394.666667pt;}
.x6b_c00083{left:396.373333pt;}
.x96_c00083{left:398.666667pt;}
.x37_c00083{left:401.333333pt;}
.x73_c00083{left:402.293333pt;}
.x81_c00083{left:403.626667pt;}
.xed_c00083{left:405.333333pt;}
.x63_c00083{left:409.333333pt;}
.x22_c00083{left:410.666667pt;}
.x90_c00083{left:414.666667pt;}
.xd4_c00083{left:418.666667pt;}
.x2d_c00083{left:420.000000pt;}
.x18_c00083{left:420.960000pt;}
.x97_c00083{left:425.333333pt;}
.x82_c00083{left:427.626667pt;}
.x74_c00083{left:428.960000pt;}
.x64_c00083{left:430.293333pt;}
.x91_c00083{left:432.373333pt;}
.xcd_c00083{left:434.466667pt;}
.x56_c00083{left:436.000000pt;}
.x19_c00083{left:437.706667pt;}
.xf7_c00083{left:438.666667pt;}
.xb_c00083{left:440.000000pt;}
.x100_c00083{left:441.706667pt;}
.x41_c00083{left:443.040000pt;}
.x83_c00083{left:444.373333pt;}
.xc2_c00083{left:445.333333pt;}
.x4a_c00083{left:446.666667pt;}
.xa1_c00083{left:448.373333pt;}
.x101_c00083{left:450.666667pt;}
.xaa_c00083{left:452.000000pt;}
.xee_c00083{left:452.960000pt;}
.xc_c00083{left:456.373333pt;}
.x1a_c00083{left:461.706667pt;}
.x2e_c00083{left:463.040000pt;}
.x6c_c00083{left:464.000000pt;}
.x84_c00083{left:468.000000pt;}
.x7b_c00083{left:469.333333pt;}
.x42_c00083{left:472.373333pt;}
.x23_c00083{left:474.293333pt;}
.x4b_c00083{left:476.373333pt;}
.xd_c00083{left:479.040000pt;}
.x38_c00083{left:481.333333pt;}
.x65_c00083{left:482.666667pt;}
.x75_c00083{left:487.040000pt;}
.x24_c00083{left:488.373333pt;}
.xd5_c00083{left:489.333333pt;}
.x39_c00083{left:493.333333pt;}
.x57_c00083{left:494.293333pt;}
.x6d_c00083{left:496.373333pt;}
.x7c_c00083{left:497.706667pt;}
.xc3_c00083{left:499.040000pt;}
.x4c_c00083{left:500.960000pt;}
.xa2_c00083{left:503.626667pt;}
.x102_c00083{left:504.960000pt;}
.x25_c00083{left:509.333333pt;}
.x85_c00083{left:510.666667pt;}
.x103_c00083{left:513.333333pt;}
.xd6_c00083{left:514.293333pt;}
.x66_c00083{left:516.000000pt;}
.x98_c00083{left:520.373333pt;}
.x6e_c00083{left:521.333333pt;}
.x76_c00083{left:522.666667pt;}
.xc4_c00083{left:523.626667pt;}
.xef_c00083{left:525.706667pt;}
.xab_c00083{left:528.000000pt;}
.x92_c00083{left:529.706667pt;}
.x3a_c00083{left:531.800000pt;}
.x58_c00083{left:533.333333pt;}
.x2f_c00083{left:534.666667pt;}
.x86_c00083{left:537.333333pt;}
.xa3_c00083{left:541.333333pt;}
.x7d_c00083{left:542.293333pt;}
.xe4_c00083{left:544.000000pt;}
.x99_c00083{left:544.960000pt;}
.xf8_c00083{left:546.666667pt;}
.xe_c00083{left:548.000000pt;}
.x59_c00083{left:549.706667pt;}
.xf0_c00083{left:551.040000pt;}
.x4d_c00083{left:552.373333pt;}
.x67_c00083{left:553.706667pt;}
.x30_c00083{left:555.040000pt;}
.x26_c00083{left:556.000000pt;}
.xdd_c00083{left:557.333333pt;}
.x77_c00083{left:558.666667pt;}
.xa4_c00083{left:560.000000pt;}
.xf9_c00083{left:562.666667pt;}
.xba_c00083{left:564.373333pt;}
.x87_c00083{left:566.666667pt;}
.x104_c00083{left:568.000000pt;}
.xf_c00083{left:569.333333pt;}
.xb2_c00083{left:572.373333pt;}
.x5a_c00083{left:573.333333pt;}
.xac_c00083{left:576.960000pt;}
.x88_c00083{left:582.666667pt;}
.xc9_c00083{left:583.626667pt;}
.xce_c00083{left:585.333333pt;}
.x43_c00083{left:587.240000pt;}
.x31_c00083{left:589.333333pt;}
.xd7_c00083{left:590.666667pt;}
.xad_c00083{left:591.626667pt;}
.xde_c00083{left:596.000000pt;}
.x6f_c00083{left:597.333333pt;}
.x78_c00083{left:598.293333pt;}
.x27_c00083{left:600.373333pt;}
.x105_c00083{left:601.333333pt;}
.x32_c00083{left:602.666667pt;}
.xf1_c00083{left:605.333333pt;}
.x5b_c00083{left:613.333333pt;}
.x9a_c00083{left:616.000000pt;}
.x10_c00083{left:618.666667pt;}
.x7e_c00083{left:621.706667pt;}
.x89_c00083{left:623.040000pt;}
.x106_c00083{left:626.293333pt;}
.x44_c00083{left:627.626667pt;}
.x28_c00083{left:630.293333pt;}
.xa5_c00083{left:634.666667pt;}
.x4e_c00083{left:636.000000pt;}
.xb3_c00083{left:636.960000pt;}
.x68_c00083{left:638.293333pt;}
.x33_c00083{left:640.000000pt;}
}





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

.ir_c00084:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00084{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00084;src:url('chunks/assets/font_7c55fc716d2413a8ab2899a2.woff2')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:1.688965;font-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_c00084{transform:matrix(0.166512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166512,0.000000,0.000000,0.250000,0,0);}
.m16_c00084{transform:matrix(0.199907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199907,0.000000,0.000000,0.250000,0,0);}
.m10f_c00084{transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);}
.m6d_c00084{transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);}
.m33_c00084{transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);}
.m42_c00084{transform:matrix(0.364108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364108,0.000000,0.000000,0.250000,0,0);}
.m13_c00084{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.m1e_c00084{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.ma_c00084{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.mf1_c00084{transform:matrix(0.372699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372699,0.000000,0.000000,0.250000,0,0);}
.ma9_c00084{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00084{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m6b_c00084{transform:matrix(0.382653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382653,0.000000,0.000000,0.250000,0,0);}
.m87_c00084{transform:matrix(0.384202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384202,0.000000,0.000000,0.250000,0,0);}
.m3_c00084{transform:matrix(0.386364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386364,0.000000,0.000000,0.250000,0,0);}
.m47_c00084{transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);}
.mc5_c00084{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m110_c00084{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.ma6_c00084{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m44_c00084{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.mb4_c00084{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m9e_c00084{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.mdc_c00084{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.md8_c00084{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.med_c00084{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mac_c00084{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.mc1_c00084{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mb9_c00084{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m34_c00084{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.m93_c00084{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.md9_c00084{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mbc_c00084{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m57_c00084{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.m4f_c00084{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.mde_c00084{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.mc4_c00084{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m3c_c00084{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m67_c00084{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m82_c00084{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m10c_c00084{transform:matrix(0.416794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416794,0.000000,0.000000,0.250000,0,0);}
.mef_c00084{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m6f_c00084{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.mcf_c00084{transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);}
.m103_c00084{transform:matrix(0.419862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419862,0.000000,0.000000,0.250000,0,0);}
.m96_c00084{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m7d_c00084{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m54_c00084{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.mf0_c00084{transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);}
.m29_c00084{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.mb7_c00084{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.md0_c00084{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m1f_c00084{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m21_c00084{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.mec_c00084{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m71_c00084{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m53_c00084{transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);}
.m91_c00084{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m12_c00084{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.md_c00084{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m5d_c00084{transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);}
.m86_c00084{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m4a_c00084{transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);}
.mc3_c00084{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m76_c00084{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m2a_c00084{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m24_c00084{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.mf9_c00084{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m9d_c00084{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.md6_c00084{transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);}
.m90_c00084{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m10b_c00084{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m1_c00084{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m8e_c00084{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m106_c00084{transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);}
.mb1_c00084{transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);}
.m92_c00084{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.mc2_c00084{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m65_c00084{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.mfb_c00084{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m4b_c00084{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.me8_c00084{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.mf2_c00084{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.mfe_c00084{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.mf6_c00084{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.mf4_c00084{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m19_c00084{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m5e_c00084{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mae_c00084{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m2c_c00084{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m9b_c00084{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.me5_c00084{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m61_c00084{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.mb8_c00084{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.m30_c00084{transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);}
.mf8_c00084{transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);}
.m58_c00084{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m95_c00084{transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);}
.m10d_c00084{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m1c_c00084{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m45_c00084{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m49_c00084{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m2d_c00084{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mee_c00084{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m55_c00084{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m23_c00084{transform:matrix(0.484118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484118,0.000000,0.000000,0.250000,0,0);}
.m78_c00084{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m48_c00084{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mdd_c00084{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mea_c00084{transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);}
.m32_c00084{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m100_c00084{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mc_c00084{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m108_c00084{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m6_c00084{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m9_c00084{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_c00084{transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);}
.ma1_c00084{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mc7_c00084{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.maf_c00084{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.me6_c00084{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m109_c00084{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m40_c00084{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m7b_c00084{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m5_c00084{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m41_c00084{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m75_c00084{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.me7_c00084{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.mc9_c00084{transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);}
.m10a_c00084{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m3a_c00084{transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);}
.ma0_c00084{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m66_c00084{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.m101_c00084{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.mbe_c00084{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.maa_c00084{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.ma4_c00084{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m2b_c00084{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.mc6_c00084{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mff_c00084{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m1b_c00084{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.md2_c00084{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m8a_c00084{transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);}
.m4d_c00084{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.m17_c00084{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_c00084{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m107_c00084{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mca_c00084{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mf5_c00084{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m1a_c00084{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.mb6_c00084{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m73_c00084{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m94_c00084{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m18_c00084{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.m4e_c00084{transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);}
.mda_c00084{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m1d_c00084{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.mcd_c00084{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mad_c00084{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m102_c00084{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m8c_c00084{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m26_c00084{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.ma7_c00084{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m50_c00084{transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);}
.m77_c00084{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mb5_c00084{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mfd_c00084{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m84_c00084{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m22_c00084{transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);}
.mcb_c00084{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m8_c00084{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m89_c00084{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.me_c00084{transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);}
.m8d_c00084{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mb3_c00084{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mfc_c00084{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.ma3_c00084{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m105_c00084{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m9a_c00084{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.mdb_c00084{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mbf_c00084{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m7_c00084{transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);}
.mc0_c00084{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.me9_c00084{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m37_c00084{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.mb2_c00084{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m6e_c00084{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.mdf_c00084{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m80_c00084{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mcc_c00084{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mfa_c00084{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m27_c00084{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.m2_c00084{transform:matrix(0.568382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568382,0.000000,0.000000,0.250000,0,0);}
.mab_c00084{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m72_c00084{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mbd_c00084{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.mbb_c00084{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.mb_c00084{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.m60_c00084{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m7c_c00084{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.md3_c00084{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m52_c00084{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m104_c00084{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mba_c00084{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m3e_c00084{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m39_c00084{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m11_c00084{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m59_c00084{transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);}
.me4_c00084{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m46_c00084{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m83_c00084{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m62_c00084{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m5f_c00084{transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);}
.me2_c00084{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mf3_c00084{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.mf7_c00084{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m99_c00084{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m98_c00084{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.md4_c00084{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m74_c00084{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.me0_c00084{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m3b_c00084{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m8f_c00084{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m28_c00084{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m4_c00084{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);}
.m6a_c00084{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m36_c00084{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m7a_c00084{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m10_c00084{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m20_c00084{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m5a_c00084{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.me1_c00084{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m85_c00084{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m31_c00084{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m6c_c00084{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m25_c00084{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);}
.m5c_c00084{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m2e_c00084{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m43_c00084{transform:matrix(0.657051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657051,0.000000,0.000000,0.250000,0,0);}
.m56_c00084{transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);}
.m7e_c00084{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m0_c00084{transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);}
.m68_c00084{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m79_c00084{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m69_c00084{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m5b_c00084{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.mce_c00084{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.m97_c00084{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m15_c00084{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.md1_c00084{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m38_c00084{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m51_c00084{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m3d_c00084{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m2f_c00084{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);}
.meb_c00084{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.m63_c00084{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m3f_c00084{transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);}
.m7f_c00084{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m9f_c00084{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m10e_c00084{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.ma8_c00084{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m88_c00084{transform:matrix(0.755609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.755609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.755609,0.000000,0.000000,0.250000,0,0);}
.md5_c00084{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);}
.me3_c00084{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mb0_c00084{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m111_c00084{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m8b_c00084{transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);}
.m4c_c00084{transform:matrix(0.794872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.794872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.794872,0.000000,0.000000,0.250000,0,0);}
.mc8_c00084{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m9c_c00084{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.md7_c00084{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.ma2_c00084{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m81_c00084{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m35_c00084{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m70_c00084{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00084{vertical-align:0.000000px;}
.v1_c00084{vertical-align:7.680000px;}
.ls2_c00084{letter-spacing:0.000000px;}
.ls1_c00084{letter-spacing:11.817600px;}
.ls0_c00084{letter-spacing:17.817600px;}
.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;}
}
.ws2_c00084{word-spacing:-2.709687px;}
.ws1_c00084{word-spacing:-0.104593px;}
.ws4_c00084{word-spacing:0.000000px;}
.ws0_c00084{word-spacing:2.691600px;}
.ws3_c00084{word-spacing:4.067980px;}
._0_c00084{width:14.427749px;}
.fc0_c00084{color:transparent;}
.fs7_c00084{font-size:3.420000px;}
.fs5_c00084{font-size:13.620000px;}
.fs0_c00084{font-size:18.720000px;}
.fs2_c00084{font-size:20.400000px;}
.fs4_c00084{font-size:25.500000px;}
.fs1_c00084{font-size:28.920000px;}
.fs3_c00084{font-size:32.340000px;}
.fs6_c00084{font-size:35.700000px;}
.fs8_c00084{font-size:39.120000px;}
.y0_c00084{bottom:0.000000px;}
.y107_c00084{bottom:252.180000px;}
.y10a_c00084{bottom:253.245000px;}
.y109_c00084{bottom:254.130000px;}
.y105_c00084{bottom:254.325000px;}
.y10b_c00084{bottom:254.970000px;}
.y104_c00084{bottom:255.180000px;}
.y108_c00084{bottom:255.405000px;}
.y106_c00084{bottom:256.470000px;}
.y101_c00084{bottom:270.405000px;}
.y103_c00084{bottom:272.745000px;}
.y102_c00084{bottom:273.630000px;}
.yff_c00084{bottom:274.680000px;}
.y100_c00084{bottom:274.905000px;}
.yfc_c00084{bottom:291.405000px;}
.yfe_c00084{bottom:293.325000px;}
.yfa_c00084{bottom:293.970000px;}
.yfb_c00084{bottom:294.405000px;}
.yfd_c00084{bottom:294.630000px;}
.yf9_c00084{bottom:295.905000px;}
.yf8_c00084{bottom:296.325000px;}
.yf6_c00084{bottom:311.745000px;}
.yf2_c00084{bottom:312.825000px;}
.yf3_c00084{bottom:313.245000px;}
.yf4_c00084{bottom:313.905000px;}
.yf5_c00084{bottom:314.130000px;}
.yf7_c00084{bottom:315.405000px;}
.yed_c00084{bottom:331.245000px;}
.yf0_c00084{bottom:332.325000px;}
.yee_c00084{bottom:333.405000px;}
.yef_c00084{bottom:333.630000px;}
.yf1_c00084{bottom:334.470000px;}
.yec_c00084{bottom:334.905000px;}
.yeb_c00084{bottom:337.470000px;}
.ye7_c00084{bottom:351.180000px;}
.ye8_c00084{bottom:352.245000px;}
.yea_c00084{bottom:352.470000px;}
.ye9_c00084{bottom:352.905000px;}
.ye6_c00084{bottom:354.405000px;}
.ye5_c00084{bottom:354.825000px;}
.ye2_c00084{bottom:370.245000px;}
.ye4_c00084{bottom:371.745000px;}
.ye3_c00084{bottom:372.405000px;}
.ye1_c00084{bottom:372.630000px;}
.ye0_c00084{bottom:372.825000px;}
.ydf_c00084{bottom:373.905000px;}
.yde_c00084{bottom:374.325000px;}
.ydd_c00084{bottom:390.825000px;}
.ydc_c00084{bottom:392.130000px;}
.ydb_c00084{bottom:393.405000px;}
.yda_c00084{bottom:393.630000px;}
.yd8_c00084{bottom:394.050000px;}
.yd9_c00084{bottom:394.470000px;}
.yd6_c00084{bottom:410.745000px;}
.yd5_c00084{bottom:412.905000px;}
.yd4_c00084{bottom:413.325000px;}
.yd7_c00084{bottom:413.970000px;}
.yd3_c00084{bottom:415.905000px;}
.yd2_c00084{bottom:430.245000px;}
.yd0_c00084{bottom:432.405000px;}
.yd1_c00084{bottom:433.470000px;}
.ycf_c00084{bottom:449.745000px;}
.ycc_c00084{bottom:450.825000px;}
.ycd_c00084{bottom:451.905000px;}
.yce_c00084{bottom:452.130000px;}
.yc9_c00084{bottom:452.550000px;}
.yca_c00084{bottom:452.970000px;}
.ycb_c00084{bottom:453.405000px;}
.yc8_c00084{bottom:468.405000px;}
.yc7_c00084{bottom:469.245000px;}
.yc4_c00084{bottom:470.745000px;}
.yc5_c00084{bottom:471.405000px;}
.yc6_c00084{bottom:471.630000px;}
.yc3_c00084{bottom:472.905000px;}
.yc2_c00084{bottom:473.130000px;}
.yc1_c00084{bottom:488.745000px;}
.yc0_c00084{bottom:489.825000px;}
.ybb_c00084{bottom:490.245000px;}
.ybe_c00084{bottom:490.905000px;}
.ybd_c00084{bottom:491.130000px;}
.ybf_c00084{bottom:491.970000px;}
.ybc_c00084{bottom:492.405000px;}
.yba_c00084{bottom:492.825000px;}
.yb7_c00084{bottom:507.405000px;}
.yb5_c00084{bottom:509.745000px;}
.yb9_c00084{bottom:510.630000px;}
.yb8_c00084{bottom:511.470000px;}
.yb6_c00084{bottom:511.905000px;}
.yb3_c00084{bottom:529.245000px;}
.yb4_c00084{bottom:530.130000px;}
.yb2_c00084{bottom:530.325000px;}
.yb1_c00084{bottom:531.405000px;}
.yb0_c00084{bottom:532.905000px;}
.yab_c00084{bottom:548.745000px;}
.yad_c00084{bottom:549.825000px;}
.yae_c00084{bottom:550.470000px;}
.yac_c00084{bottom:550.905000px;}
.yaf_c00084{bottom:551.970000px;}
.yaa_c00084{bottom:552.405000px;}
.ya6_c00084{bottom:568.245000px;}
.ya4_c00084{bottom:568.905000px;}
.ya8_c00084{bottom:569.550000px;}
.ya9_c00084{bottom:569.970000px;}
.ya7_c00084{bottom:570.405000px;}
.ya5_c00084{bottom:570.630000px;}
.ya3_c00084{bottom:587.325000px;}
.ya0_c00084{bottom:589.245000px;}
.ya1_c00084{bottom:589.470000px;}
.ya2_c00084{bottom:589.905000px;}
.y9f_c00084{bottom:591.405000px;}
.y9d_c00084{bottom:608.745000px;}
.y9e_c00084{bottom:609.405000px;}
.y9c_c00084{bottom:609.630000px;}
.y9b_c00084{bottom:609.825000px;}
.y9a_c00084{bottom:610.905000px;}
.y97_c00084{bottom:625.905000px;}
.y96_c00084{bottom:628.245000px;}
.y94_c00084{bottom:628.680000px;}
.y99_c00084{bottom:628.905000px;}
.y98_c00084{bottom:629.130000px;}
.y95_c00084{bottom:630.405000px;}
.y93_c00084{bottom:646.245000px;}
.y90_c00084{bottom:647.745000px;}
.y91_c00084{bottom:648.630000px;}
.y92_c00084{bottom:649.905000px;}
.y8f_c00084{bottom:667.245000px;}
.y8e_c00084{bottom:668.325000px;}
.y8b_c00084{bottom:669.405000px;}
.y8d_c00084{bottom:669.630000px;}
.y8c_c00084{bottom:670.470000px;}
.y8a_c00084{bottom:670.905000px;}
.y86_c00084{bottom:686.745000px;}
.y85_c00084{bottom:688.245000px;}
.y87_c00084{bottom:688.905000px;}
.y88_c00084{bottom:689.130000px;}
.y89_c00084{bottom:689.970000px;}
.y81_c00084{bottom:705.405000px;}
.y83_c00084{bottom:706.245000px;}
.y84_c00084{bottom:706.470000px;}
.y7e_c00084{bottom:706.680000px;}
.y82_c00084{bottom:707.325000px;}
.y80_c00084{bottom:708.405000px;}
.y7f_c00084{bottom:708.630000px;}
.y77_c00084{bottom:724.905000px;}
.y79_c00084{bottom:725.325000px;}
.y7a_c00084{bottom:725.970000px;}
.y7c_c00084{bottom:726.405000px;}
.y7d_c00084{bottom:727.245000px;}
.y7b_c00084{bottom:728.130000px;}
.y78_c00084{bottom:728.970000px;}
.y76_c00084{bottom:729.405000px;}
.y75_c00084{bottom:745.470000px;}
.y73_c00084{bottom:745.905000px;}
.y70_c00084{bottom:746.745000px;}
.y74_c00084{bottom:748.470000px;}
.y72_c00084{bottom:748.905000px;}
.y71_c00084{bottom:748.920000px;}
.y6d_c00084{bottom:782.325000px;}
.y6c_c00084{bottom:783.630000px;}
.y6f_c00084{bottom:784.470000px;}
.y6e_c00084{bottom:784.695000px;}
.y6b_c00084{bottom:785.970000px;}
.y69_c00084{bottom:796.470000px;}
.y6a_c00084{bottom:797.325000px;}
.y65_c00084{bottom:797.550000px;}
.y66_c00084{bottom:798.405000px;}
.y68_c00084{bottom:798.630000px;}
.y62_c00084{bottom:798.825000px;}
.y64_c00084{bottom:799.470000px;}
.y63_c00084{bottom:800.130000px;}
.y67_c00084{bottom:800.550000px;}
.y61_c00084{bottom:800.970000px;}
.y5f_c00084{bottom:812.325000px;}
.y5b_c00084{bottom:812.550000px;}
.y5c_c00084{bottom:813.405000px;}
.y5e_c00084{bottom:813.630000px;}
.y5d_c00084{bottom:814.470000px;}
.y60_c00084{bottom:814.695000px;}
.y59_c00084{bottom:827.325000px;}
.y5a_c00084{bottom:827.550000px;}
.y57_c00084{bottom:828.405000px;}
.y58_c00084{bottom:830.550000px;}
.y54_c00084{bottom:842.970000px;}
.y56_c00084{bottom:843.405000px;}
.y52_c00084{bottom:843.630000px;}
.y53_c00084{bottom:844.050000px;}
.y55_c00084{bottom:844.470000px;}
.y4f_c00084{bottom:856.905000px;}
.y4e_c00084{bottom:857.325000px;}
.y51_c00084{bottom:857.970000px;}
.y50_c00084{bottom:858.195000px;}
.y4b_c00084{bottom:858.630000px;}
.y4c_c00084{bottom:859.050000px;}
.y4d_c00084{bottom:859.470000px;}
.y47_c00084{bottom:871.470000px;}
.y4a_c00084{bottom:872.325000px;}
.y48_c00084{bottom:873.405000px;}
.y49_c00084{bottom:874.470000px;}
.y46_c00084{bottom:886.905000px;}
.y44_c00084{bottom:887.325000px;}
.y43_c00084{bottom:887.970000px;}
.y42_c00084{bottom:888.630000px;}
.y45_c00084{bottom:889.050000px;}
.y41_c00084{bottom:901.905000px;}
.y40_c00084{bottom:904.050000px;}
.y3f_c00084{bottom:915.405000px;}
.y3e_c00084{bottom:915.825000px;}
.y3a_c00084{bottom:916.050000px;}
.y3b_c00084{bottom:916.905000px;}
.y3c_c00084{bottom:917.970000px;}
.y3d_c00084{bottom:919.050000px;}
.y39_c00084{bottom:930.825000px;}
.y37_c00084{bottom:931.905000px;}
.y36_c00084{bottom:932.130000px;}
.y38_c00084{bottom:934.050000px;}
.y35_c00084{bottom:944.970000px;}
.y2f_c00084{bottom:945.825000px;}
.y31_c00084{bottom:946.470000px;}
.y33_c00084{bottom:946.905000px;}
.y30_c00084{bottom:947.130000px;}
.y34_c00084{bottom:947.970000px;}
.y32_c00084{bottom:949.050000px;}
.y2a_c00084{bottom:960.825000px;}
.y2d_c00084{bottom:961.470000px;}
.y2e_c00084{bottom:961.905000px;}
.y2c_c00084{bottom:962.970000px;}
.y2b_c00084{bottom:963.195000px;}
.y29_c00084{bottom:964.050000px;}
.y27_c00084{bottom:974.325000px;}
.y22_c00084{bottom:974.970000px;}
.y21_c00084{bottom:975.405000px;}
.y28_c00084{bottom:975.825000px;}
.y20_c00084{bottom:976.050000px;}
.y26_c00084{bottom:976.470000px;}
.y25_c00084{bottom:976.695000px;}
.y24_c00084{bottom:976.905000px;}
.y23_c00084{bottom:977.550000px;}
.y1f_c00084{bottom:990.405000px;}
.y1e_c00084{bottom:992.550000px;}
.y1a_c00084{bottom:1003.470000px;}
.y1b_c00084{bottom:1004.325000px;}
.y1c_c00084{bottom:1005.405000px;}
.y19_c00084{bottom:1006.470000px;}
.y1d_c00084{bottom:1006.695000px;}
.y18_c00084{bottom:1007.550000px;}
.y16_c00084{bottom:1019.325000px;}
.y12_c00084{bottom:1019.550000px;}
.y14_c00084{bottom:1020.405000px;}
.y13_c00084{bottom:1021.470000px;}
.y15_c00084{bottom:1021.695000px;}
.y17_c00084{bottom:1022.550000px;}
.y11_c00084{bottom:1035.405000px;}
.y10_c00084{bottom:1037.550000px;}
.yc_c00084{bottom:1048.050000px;}
.y9_c00084{bottom:1048.470000px;}
.yb_c00084{bottom:1048.905000px;}
.ye_c00084{bottom:1049.325000px;}
.ya_c00084{bottom:1049.550000px;}
.yd_c00084{bottom:1051.050000px;}
.yf_c00084{bottom:1051.695000px;}
.y3_c00084{bottom:1063.050000px;}
.y6_c00084{bottom:1063.905000px;}
.y4_c00084{bottom:1064.325000px;}
.y8_c00084{bottom:1064.550000px;}
.y7_c00084{bottom:1064.970000px;}
.y5_c00084{bottom:1066.050000px;}
.y2_c00084{bottom:1099.905000px;}
.y1_c00084{bottom:1103.130000px;}
.h9_c00084{height:4.206533px;}
.h7_c00084{height:16.752334px;}
.h1_c00084{height:23.025234px;}
.h3_c00084{height:25.091602px;}
.h5_c00084{height:31.364502px;}
.h2_c00084{height:35.571035px;}
.h6_c00084{height:39.044502px;}
.h4_c00084{height:39.777568px;}
.h8_c00084{height:43.910303px;}
.ha_c00084{height:48.116836px;}
.h0_c00084{height:1335.000000px;}
.w0_c00084{width:880.500000px;}
.x0_c00084{left:0.000000px;}
.xd_c00084{left:151.500000px;}
.x6e_c00084{left:153.420000px;}
.x3_c00084{left:165.420000px;}
.x1d_c00084{left:166.920000px;}
.xad_c00084{left:168.000000px;}
.xfc_c00084{left:171.000000px;}
.xce_c00084{left:172.500000px;}
.xeb_c00084{left:174.420000px;}
.x33_c00084{left:178.500000px;}
.x7d_c00084{left:180.420000px;}
.x4_c00084{left:183.000000px;}
.xfe_c00084{left:184.500000px;}
.x1b_c00084{left:186.420000px;}
.x91_c00084{left:187.500000px;}
.xe_c00084{left:189.420000px;}
.x48_c00084{left:190.500000px;}
.xbb_c00084{left:192.000000px;}
.x9b_c00084{left:193.500000px;}
.x6f_c00084{left:195.420000px;}
.xfb_c00084{left:198.420000px;}
.xec_c00084{left:201.000000px;}
.x107_c00084{left:202.500000px;}
.xcf_c00084{left:204.420000px;}
.x5b_c00084{left:206.580000px;}
.xf2_c00084{left:208.920000px;}
.xda_c00084{left:211.920000px;}
.x1c_c00084{left:213.000000px;}
.x49_c00084{left:214.080000px;}
.x57_c00084{left:215.580000px;}
.x1e_c00084{left:223.080000px;}
.xf_c00084{left:224.580000px;}
.x73_c00084{left:227.580000px;}
.x9c_c00084{left:229.500000px;}
.xb4_c00084{left:234.000000px;}
.x70_c00084{left:237.000000px;}
.xed_c00084{left:238.500000px;}
.xdb_c00084{left:240.420000px;}
.x5_c00084{left:241.500000px;}
.x74_c00084{left:243.420000px;}
.x61_c00084{left:244.500000px;}
.xe0_c00084{left:245.580000px;}
.x112_c00084{left:247.500000px;}
.xbc_c00084{left:249.000000px;}
.x4a_c00084{left:250.500000px;}
.x34_c00084{left:252.000000px;}
.xf7_c00084{left:253.500000px;}
.x93_c00084{left:255.000000px;}
.xb5_c00084{left:256.920000px;}
.x83_c00084{left:258.000000px;}
.x58_c00084{left:259.500000px;}
.xa4_c00084{left:261.420000px;}
.x10_c00084{left:262.920000px;}
.x1f_c00084{left:267.000000px;}
.xd5_c00084{left:268.080000px;}
.x35_c00084{left:269.580000px;}
.x71_c00084{left:271.080000px;}
.x28_c00084{left:274.920000px;}
.x62_c00084{left:277.080000px;}
.x7e_c00084{left:279.000000px;}
.x4b_c00084{left:280.920000px;}
.x40_c00084{left:282.000000px;}
.x11_c00084{left:283.920000px;}
.xae_c00084{left:285.000000px;}
.xa5_c00084{left:286.500000px;}
.xa1_c00084{left:288.000000px;}
.x6_c00084{left:289.500000px;}
.xe1_c00084{left:291.420000px;}
.x36_c00084{left:294.000000px;}
.x59_c00084{left:295.920000px;}
.x72_c00084{left:297.000000px;}
.x12_c00084{left:298.500000px;}
.xf3_c00084{left:300.000000px;}
.x10e_c00084{left:301.500000px;}
.xdc_c00084{left:303.000000px;}
.x92_c00084{left:304.080000px;}
.x29_c00084{left:306.000000px;}
.x78_c00084{left:309.000000px;}
.x75_c00084{left:311.145000px;}
.x63_c00084{left:313.920000px;}
.x8a_c00084{left:315.855000px;}
.x7f_c00084{left:321.420000px;}
.x5a_c00084{left:322.500000px;}
.x10f_c00084{left:324.420000px;}
.xa6_c00084{left:327.420000px;}
.x94_c00084{left:329.580000px;}
.x37_c00084{left:331.920000px;}
.x13_c00084{left:333.420000px;}
.x20_c00084{left:335.580000px;}
.xb6_c00084{left:337.500000px;}
.x79_c00084{left:341.580000px;}
.x41_c00084{left:343.500000px;}
.x2a_c00084{left:344.580000px;}
.x38_c00084{left:345.645000px;}
.x104_c00084{left:346.920000px;}
.x4c_c00084{left:348.000000px;}
.x84_c00084{left:349.500000px;}
.x21_c00084{left:351.645000px;}
.x76_c00084{left:354.000000px;}
.x7a_c00084{left:357.000000px;}
.xf4_c00084{left:358.920000px;}
.x14_c00084{left:360.000000px;}
.xbd_c00084{left:362.580000px;}
.x2b_c00084{left:363.645000px;}
.xee_c00084{left:366.000000px;}
.x64_c00084{left:367.500000px;}
.x7_c00084{left:370.080000px;}
.xa7_c00084{left:372.420000px;}
.x105_c00084{left:373.920000px;}
.x113_c00084{left:375.420000px;}
.xff_c00084{left:378.420000px;}
.xe2_c00084{left:381.420000px;}
.x42_c00084{left:382.500000px;}
.xbe_c00084{left:383.580000px;}
.x8b_c00084{left:385.080000px;}
.xb7_c00084{left:389.580000px;}
.xdd_c00084{left:391.080000px;}
.x5c_c00084{left:394.500000px;}
.x1_c00084{left:397.500000px;}
.x65_c00084{left:400.500000px;}
.xc7_c00084{left:402.420000px;}
.x9d_c00084{left:405.420000px;}
.xaf_c00084{left:406.500000px;}
.x15_c00084{left:408.855000px;}
.x4d_c00084{left:411.000000px;}
.xf5_c00084{left:412.500000px;}
.x106_c00084{left:413.580000px;}
.x8c_c00084{left:415.920000px;}
.x80_c00084{left:417.420000px;}
.x43_c00084{left:419.580000px;}
.xe3_c00084{left:421.500000px;}
.x100_c00084{left:423.000000px;}
.x39_c00084{left:424.500000px;}
.x66_c00084{left:426.420000px;}
.xef_c00084{left:427.920000px;}
.xc8_c00084{left:429.000000px;}
.xbf_c00084{left:430.080000px;}
.x22_c00084{left:433.500000px;}
.xde_c00084{left:435.420000px;}
.x44_c00084{left:436.500000px;}
.x4e_c00084{left:438.420000px;}
.xa8_c00084{left:439.920000px;}
.x110_c00084{left:441.420000px;}
.xc0_c00084{left:442.500000px;}
.x23_c00084{left:444.000000px;}
.x2c_c00084{left:445.500000px;}
.x85_c00084{left:448.500000px;}
.x67_c00084{left:450.000000px;}
.xf8_c00084{left:451.500000px;}
.xe4_c00084{left:453.000000px;}
.x108_c00084{left:454.500000px;}
.x3a_c00084{left:457.080000px;}
.x8d_c00084{left:459.000000px;}
.x8_c00084{left:462.000000px;}
.x5d_c00084{left:463.080000px;}
.xa9_c00084{left:465.000000px;}
.xc9_c00084{left:467.580000px;}
.x95_c00084{left:469.920000px;}
.xc1_c00084{left:474.420000px;}
.x10d_c00084{left:475.500000px;}
.x16_c00084{left:476.580000px;}
.xe5_c00084{left:478.500000px;}
.x4f_c00084{left:480.000000px;}
.x77_c00084{left:481.500000px;}
.xb0_c00084{left:483.000000px;}
.xf9_c00084{left:484.920000px;}
.xca_c00084{left:486.420000px;}
.x24_c00084{left:488.580000px;}
.x68_c00084{left:492.000000px;}
.xe6_c00084{left:493.500000px;}
.xfd_c00084{left:495.000000px;}
.x8e_c00084{left:496.500000px;}
.x81_c00084{left:498.000000px;}
.x9e_c00084{left:499.500000px;}
.xaa_c00084{left:501.420000px;}
.xa2_c00084{left:504.420000px;}
.x101_c00084{left:507.420000px;}
.x2d_c00084{left:510.000000px;}
.x3b_c00084{left:513.000000px;}
.x50_c00084{left:514.500000px;}
.x25_c00084{left:515.580000px;}
.x9_c00084{left:517.500000px;}
.x5e_c00084{left:519.420000px;}
.x86_c00084{left:520.500000px;}
.xd6_c00084{left:522.000000px;}
.x3c_c00084{left:523.500000px;}
.xe7_c00084{left:524.580000px;}
.x8f_c00084{left:526.080000px;}
.x69_c00084{left:530.580000px;}
.x82_c00084{left:532.920000px;}
.x87_c00084{left:534.000000px;}
.x9f_c00084{left:537.000000px;}
.x51_c00084{left:538.080000px;}
.xf0_c00084{left:540.000000px;}
.xb1_c00084{left:541.500000px;}
.xab_c00084{left:544.500000px;}
.x109_c00084{left:546.000000px;}
.x6a_c00084{left:547.500000px;}
.xc6_c00084{left:549.000000px;}
.xd0_c00084{left:550.500000px;}
.x17_c00084{left:553.500000px;}
.xcb_c00084{left:556.080000px;}
.x111_c00084{left:558.000000px;}
.x26_c00084{left:559.500000px;}
.xb2_c00084{left:562.920000px;}
.x96_c00084{left:564.000000px;}
.x3d_c00084{left:566.580000px;}
.x2e_c00084{left:568.500000px;}
.x88_c00084{left:570.420000px;}
.xd7_c00084{left:573.000000px;}
.x52_c00084{left:574.500000px;}
.xcc_c00084{left:576.420000px;}
.xb8_c00084{left:579.420000px;}
.x2f_c00084{left:580.500000px;}
.x5f_c00084{left:581.580000px;}
.x10a_c00084{left:583.920000px;}
.x97_c00084{left:586.500000px;}
.xa3_c00084{left:588.000000px;}
.x27_c00084{left:589.920000px;}
.x3e_c00084{left:594.000000px;}
.x102_c00084{left:595.920000px;}
.xdf_c00084{left:600.420000px;}
.xa_c00084{left:601.920000px;}
.xe8_c00084{left:603.420000px;}
.x98_c00084{left:604.500000px;}
.x18_c00084{left:607.500000px;}
.x53_c00084{left:608.580000px;}
.xd1_c00084{left:612.420000px;}
.xfa_c00084{left:613.500000px;}
.x19_c00084{left:614.580000px;}
.x60_c00084{left:616.920000px;}
.x1a_c00084{left:622.920000px;}
.xc2_c00084{left:624.420000px;}
.x99_c00084{left:625.500000px;}
.x114_c00084{left:627.420000px;}
.x30_c00084{left:628.500000px;}
.x89_c00084{left:630.000000px;}
.xd2_c00084{left:631.500000px;}
.x45_c00084{left:632.580000px;}
.x7b_c00084{left:634.080000px;}
.x54_c00084{left:636.000000px;}
.x6b_c00084{left:637.500000px;}
.x90_c00084{left:639.420000px;}
.xcd_c00084{left:643.500000px;}
.xd8_c00084{left:645.000000px;}
.xf1_c00084{left:646.080000px;}
.x6c_c00084{left:649.500000px;}
.xc3_c00084{left:652.500000px;}
.x31_c00084{left:656.580000px;}
.xac_c00084{left:658.500000px;}
.xb_c00084{left:659.580000px;}
.xe9_c00084{left:663.000000px;}
.xb9_c00084{left:664.500000px;}
.xd9_c00084{left:667.500000px;}
.xd3_c00084{left:673.500000px;}
.xea_c00084{left:677.580000px;}
.x9a_c00084{left:679.920000px;}
.xa0_c00084{left:681.000000px;}
.x55_c00084{left:682.500000px;}
.x3f_c00084{left:684.000000px;}
.x10b_c00084{left:685.080000px;}
.x46_c00084{left:688.500000px;}
.x7c_c00084{left:690.420000px;}
.xc4_c00084{left:691.920000px;}
.x56_c00084{left:694.500000px;}
.xc_c00084{left:696.420000px;}
.x47_c00084{left:699.000000px;}
.x6d_c00084{left:700.500000px;}
.x32_c00084{left:703.500000px;}
.xf6_c00084{left:704.580000px;}
.x10c_c00084{left:706.500000px;}
.xb3_c00084{left:708.420000px;}
.x2_c00084{left:710.580000px;}
.xd4_c00084{left:717.000000px;}
.x103_c00084{left:718.080000px;}
.xc5_c00084{left:720.000000px;}
.xba_c00084{left:723.000000px;}
@media print{
.v0_c00084{vertical-align:0.000000pt;}
.v1_c00084{vertical-align:6.826667pt;}
.ls2_c00084{letter-spacing:0.000000pt;}
.ls1_c00084{letter-spacing:10.504533pt;}
.ls0_c00084{letter-spacing:15.837867pt;}
.ws2_c00084{word-spacing:-2.408610pt;}
.ws1_c00084{word-spacing:-0.092971pt;}
.ws4_c00084{word-spacing:0.000000pt;}
.ws0_c00084{word-spacing:2.392533pt;}
.ws3_c00084{word-spacing:3.615982pt;}
._0_c00084{width:12.824666pt;}
.fs7_c00084{font-size:3.040000pt;}
.fs5_c00084{font-size:12.106667pt;}
.fs0_c00084{font-size:16.640000pt;}
.fs2_c00084{font-size:18.133333pt;}
.fs4_c00084{font-size:22.666667pt;}
.fs1_c00084{font-size:25.706667pt;}
.fs3_c00084{font-size:28.746667pt;}
.fs6_c00084{font-size:31.733333pt;}
.fs8_c00084{font-size:34.773333pt;}
.y0_c00084{bottom:0.000000pt;}
.y107_c00084{bottom:224.160000pt;}
.y10a_c00084{bottom:225.106667pt;}
.y109_c00084{bottom:225.893333pt;}
.y105_c00084{bottom:226.066667pt;}
.y10b_c00084{bottom:226.640000pt;}
.y104_c00084{bottom:226.826667pt;}
.y108_c00084{bottom:227.026667pt;}
.y106_c00084{bottom:227.973333pt;}
.y101_c00084{bottom:240.360000pt;}
.y103_c00084{bottom:242.440000pt;}
.y102_c00084{bottom:243.226667pt;}
.yff_c00084{bottom:244.160000pt;}
.y100_c00084{bottom:244.360000pt;}
.yfc_c00084{bottom:259.026667pt;}
.yfe_c00084{bottom:260.733333pt;}
.yfa_c00084{bottom:261.306667pt;}
.yfb_c00084{bottom:261.693333pt;}
.yfd_c00084{bottom:261.893333pt;}
.yf9_c00084{bottom:263.026667pt;}
.yf8_c00084{bottom:263.400000pt;}
.yf6_c00084{bottom:277.106667pt;}
.yf2_c00084{bottom:278.066667pt;}
.yf3_c00084{bottom:278.440000pt;}
.yf4_c00084{bottom:279.026667pt;}
.yf5_c00084{bottom:279.226667pt;}
.yf7_c00084{bottom:280.360000pt;}
.yed_c00084{bottom:294.440000pt;}
.yf0_c00084{bottom:295.400000pt;}
.yee_c00084{bottom:296.360000pt;}
.yef_c00084{bottom:296.560000pt;}
.yf1_c00084{bottom:297.306667pt;}
.yec_c00084{bottom:297.693333pt;}
.yeb_c00084{bottom:299.973333pt;}
.ye7_c00084{bottom:312.160000pt;}
.ye8_c00084{bottom:313.106667pt;}
.yea_c00084{bottom:313.306667pt;}
.ye9_c00084{bottom:313.693333pt;}
.ye6_c00084{bottom:315.026667pt;}
.ye5_c00084{bottom:315.400000pt;}
.ye2_c00084{bottom:329.106667pt;}
.ye4_c00084{bottom:330.440000pt;}
.ye3_c00084{bottom:331.026667pt;}
.ye1_c00084{bottom:331.226667pt;}
.ye0_c00084{bottom:331.400000pt;}
.ydf_c00084{bottom:332.360000pt;}
.yde_c00084{bottom:332.733333pt;}
.ydd_c00084{bottom:347.400000pt;}
.ydc_c00084{bottom:348.560000pt;}
.ydb_c00084{bottom:349.693333pt;}
.yda_c00084{bottom:349.893333pt;}
.yd8_c00084{bottom:350.266667pt;}
.yd9_c00084{bottom:350.640000pt;}
.yd6_c00084{bottom:365.106667pt;}
.yd5_c00084{bottom:367.026667pt;}
.yd4_c00084{bottom:367.400000pt;}
.yd7_c00084{bottom:367.973333pt;}
.yd3_c00084{bottom:369.693333pt;}
.yd2_c00084{bottom:382.440000pt;}
.yd0_c00084{bottom:384.360000pt;}
.yd1_c00084{bottom:385.306667pt;}
.ycf_c00084{bottom:399.773333pt;}
.ycc_c00084{bottom:400.733333pt;}
.ycd_c00084{bottom:401.693333pt;}
.yce_c00084{bottom:401.893333pt;}
.yc9_c00084{bottom:402.266667pt;}
.yca_c00084{bottom:402.640000pt;}
.ycb_c00084{bottom:403.026667pt;}
.yc8_c00084{bottom:416.360000pt;}
.yc7_c00084{bottom:417.106667pt;}
.yc4_c00084{bottom:418.440000pt;}
.yc5_c00084{bottom:419.026667pt;}
.yc6_c00084{bottom:419.226667pt;}
.yc3_c00084{bottom:420.360000pt;}
.yc2_c00084{bottom:420.560000pt;}
.yc1_c00084{bottom:434.440000pt;}
.yc0_c00084{bottom:435.400000pt;}
.ybb_c00084{bottom:435.773333pt;}
.ybe_c00084{bottom:436.360000pt;}
.ybd_c00084{bottom:436.560000pt;}
.ybf_c00084{bottom:437.306667pt;}
.ybc_c00084{bottom:437.693333pt;}
.yba_c00084{bottom:438.066667pt;}
.yb7_c00084{bottom:451.026667pt;}
.yb5_c00084{bottom:453.106667pt;}
.yb9_c00084{bottom:453.893333pt;}
.yb8_c00084{bottom:454.640000pt;}
.yb6_c00084{bottom:455.026667pt;}
.yb3_c00084{bottom:470.440000pt;}
.yb4_c00084{bottom:471.226667pt;}
.yb2_c00084{bottom:471.400000pt;}
.yb1_c00084{bottom:472.360000pt;}
.yb0_c00084{bottom:473.693333pt;}
.yab_c00084{bottom:487.773333pt;}
.yad_c00084{bottom:488.733333pt;}
.yae_c00084{bottom:489.306667pt;}
.yac_c00084{bottom:489.693333pt;}
.yaf_c00084{bottom:490.640000pt;}
.yaa_c00084{bottom:491.026667pt;}
.ya6_c00084{bottom:505.106667pt;}
.ya4_c00084{bottom:505.693333pt;}
.ya8_c00084{bottom:506.266667pt;}
.ya9_c00084{bottom:506.640000pt;}
.ya7_c00084{bottom:507.026667pt;}
.ya5_c00084{bottom:507.226667pt;}
.ya3_c00084{bottom:522.066667pt;}
.ya0_c00084{bottom:523.773333pt;}
.ya1_c00084{bottom:523.973333pt;}
.ya2_c00084{bottom:524.360000pt;}
.y9f_c00084{bottom:525.693333pt;}
.y9d_c00084{bottom:541.106667pt;}
.y9e_c00084{bottom:541.693333pt;}
.y9c_c00084{bottom:541.893333pt;}
.y9b_c00084{bottom:542.066667pt;}
.y9a_c00084{bottom:543.026667pt;}
.y97_c00084{bottom:556.360000pt;}
.y96_c00084{bottom:558.440000pt;}
.y94_c00084{bottom:558.826667pt;}
.y99_c00084{bottom:559.026667pt;}
.y98_c00084{bottom:559.226667pt;}
.y95_c00084{bottom:560.360000pt;}
.y93_c00084{bottom:574.440000pt;}
.y90_c00084{bottom:575.773333pt;}
.y91_c00084{bottom:576.560000pt;}
.y92_c00084{bottom:577.693333pt;}
.y8f_c00084{bottom:593.106667pt;}
.y8e_c00084{bottom:594.066667pt;}
.y8b_c00084{bottom:595.026667pt;}
.y8d_c00084{bottom:595.226667pt;}
.y8c_c00084{bottom:595.973333pt;}
.y8a_c00084{bottom:596.360000pt;}
.y86_c00084{bottom:610.440000pt;}
.y85_c00084{bottom:611.773333pt;}
.y87_c00084{bottom:612.360000pt;}
.y88_c00084{bottom:612.560000pt;}
.y89_c00084{bottom:613.306667pt;}
.y81_c00084{bottom:627.026667pt;}
.y83_c00084{bottom:627.773333pt;}
.y84_c00084{bottom:627.973333pt;}
.y7e_c00084{bottom:628.160000pt;}
.y82_c00084{bottom:628.733333pt;}
.y80_c00084{bottom:629.693333pt;}
.y7f_c00084{bottom:629.893333pt;}
.y77_c00084{bottom:644.360000pt;}
.y79_c00084{bottom:644.733333pt;}
.y7a_c00084{bottom:645.306667pt;}
.y7c_c00084{bottom:645.693333pt;}
.y7d_c00084{bottom:646.440000pt;}
.y7b_c00084{bottom:647.226667pt;}
.y78_c00084{bottom:647.973333pt;}
.y76_c00084{bottom:648.360000pt;}
.y75_c00084{bottom:662.640000pt;}
.y73_c00084{bottom:663.026667pt;}
.y70_c00084{bottom:663.773333pt;}
.y74_c00084{bottom:665.306667pt;}
.y72_c00084{bottom:665.693333pt;}
.y71_c00084{bottom:665.706667pt;}
.y6d_c00084{bottom:695.400000pt;}
.y6c_c00084{bottom:696.560000pt;}
.y6f_c00084{bottom:697.306667pt;}
.y6e_c00084{bottom:697.506667pt;}
.y6b_c00084{bottom:698.640000pt;}
.y69_c00084{bottom:707.973333pt;}
.y6a_c00084{bottom:708.733333pt;}
.y65_c00084{bottom:708.933333pt;}
.y66_c00084{bottom:709.693333pt;}
.y68_c00084{bottom:709.893333pt;}
.y62_c00084{bottom:710.066667pt;}
.y64_c00084{bottom:710.640000pt;}
.y63_c00084{bottom:711.226667pt;}
.y67_c00084{bottom:711.600000pt;}
.y61_c00084{bottom:711.973333pt;}
.y5f_c00084{bottom:722.066667pt;}
.y5b_c00084{bottom:722.266667pt;}
.y5c_c00084{bottom:723.026667pt;}
.y5e_c00084{bottom:723.226667pt;}
.y5d_c00084{bottom:723.973333pt;}
.y60_c00084{bottom:724.173333pt;}
.y59_c00084{bottom:735.400000pt;}
.y5a_c00084{bottom:735.600000pt;}
.y57_c00084{bottom:736.360000pt;}
.y58_c00084{bottom:738.266667pt;}
.y54_c00084{bottom:749.306667pt;}
.y56_c00084{bottom:749.693333pt;}
.y52_c00084{bottom:749.893333pt;}
.y53_c00084{bottom:750.266667pt;}
.y55_c00084{bottom:750.640000pt;}
.y4f_c00084{bottom:761.693333pt;}
.y4e_c00084{bottom:762.066667pt;}
.y51_c00084{bottom:762.640000pt;}
.y50_c00084{bottom:762.840000pt;}
.y4b_c00084{bottom:763.226667pt;}
.y4c_c00084{bottom:763.600000pt;}
.y4d_c00084{bottom:763.973333pt;}
.y47_c00084{bottom:774.640000pt;}
.y4a_c00084{bottom:775.400000pt;}
.y48_c00084{bottom:776.360000pt;}
.y49_c00084{bottom:777.306667pt;}
.y46_c00084{bottom:788.360000pt;}
.y44_c00084{bottom:788.733333pt;}
.y43_c00084{bottom:789.306667pt;}
.y42_c00084{bottom:789.893333pt;}
.y45_c00084{bottom:790.266667pt;}
.y41_c00084{bottom:801.693333pt;}
.y40_c00084{bottom:803.600000pt;}
.y3f_c00084{bottom:813.693333pt;}
.y3e_c00084{bottom:814.066667pt;}
.y3a_c00084{bottom:814.266667pt;}
.y3b_c00084{bottom:815.026667pt;}
.y3c_c00084{bottom:815.973333pt;}
.y3d_c00084{bottom:816.933333pt;}
.y39_c00084{bottom:827.400000pt;}
.y37_c00084{bottom:828.360000pt;}
.y36_c00084{bottom:828.560000pt;}
.y38_c00084{bottom:830.266667pt;}
.y35_c00084{bottom:839.973333pt;}
.y2f_c00084{bottom:840.733333pt;}
.y31_c00084{bottom:841.306667pt;}
.y33_c00084{bottom:841.693333pt;}
.y30_c00084{bottom:841.893333pt;}
.y34_c00084{bottom:842.640000pt;}
.y32_c00084{bottom:843.600000pt;}
.y2a_c00084{bottom:854.066667pt;}
.y2d_c00084{bottom:854.640000pt;}
.y2e_c00084{bottom:855.026667pt;}
.y2c_c00084{bottom:855.973333pt;}
.y2b_c00084{bottom:856.173333pt;}
.y29_c00084{bottom:856.933333pt;}
.y27_c00084{bottom:866.066667pt;}
.y22_c00084{bottom:866.640000pt;}
.y21_c00084{bottom:867.026667pt;}
.y28_c00084{bottom:867.400000pt;}
.y20_c00084{bottom:867.600000pt;}
.y26_c00084{bottom:867.973333pt;}
.y25_c00084{bottom:868.173333pt;}
.y24_c00084{bottom:868.360000pt;}
.y23_c00084{bottom:868.933333pt;}
.y1f_c00084{bottom:880.360000pt;}
.y1e_c00084{bottom:882.266667pt;}
.y1a_c00084{bottom:891.973333pt;}
.y1b_c00084{bottom:892.733333pt;}
.y1c_c00084{bottom:893.693333pt;}
.y19_c00084{bottom:894.640000pt;}
.y1d_c00084{bottom:894.840000pt;}
.y18_c00084{bottom:895.600000pt;}
.y16_c00084{bottom:906.066667pt;}
.y12_c00084{bottom:906.266667pt;}
.y14_c00084{bottom:907.026667pt;}
.y13_c00084{bottom:907.973333pt;}
.y15_c00084{bottom:908.173333pt;}
.y17_c00084{bottom:908.933333pt;}
.y11_c00084{bottom:920.360000pt;}
.y10_c00084{bottom:922.266667pt;}
.yc_c00084{bottom:931.600000pt;}
.y9_c00084{bottom:931.973333pt;}
.yb_c00084{bottom:932.360000pt;}
.ye_c00084{bottom:932.733333pt;}
.ya_c00084{bottom:932.933333pt;}
.yd_c00084{bottom:934.266667pt;}
.yf_c00084{bottom:934.840000pt;}
.y3_c00084{bottom:944.933333pt;}
.y6_c00084{bottom:945.693333pt;}
.y4_c00084{bottom:946.066667pt;}
.y8_c00084{bottom:946.266667pt;}
.y7_c00084{bottom:946.640000pt;}
.y5_c00084{bottom:947.600000pt;}
.y2_c00084{bottom:977.693333pt;}
.y1_c00084{bottom:980.560000pt;}
.h9_c00084{height:3.739141pt;}
.h7_c00084{height:14.890964pt;}
.h1_c00084{height:20.466875pt;}
.h3_c00084{height:22.303646pt;}
.h5_c00084{height:27.879557pt;}
.h2_c00084{height:31.618698pt;}
.h6_c00084{height:34.706224pt;}
.h4_c00084{height:35.357839pt;}
.h8_c00084{height:39.031380pt;}
.ha_c00084{height:42.770521pt;}
.h0_c00084{height:1186.666667pt;}
.w0_c00084{width:782.666667pt;}
.x0_c00084{left:0.000000pt;}
.xd_c00084{left:134.666667pt;}
.x6e_c00084{left:136.373333pt;}
.x3_c00084{left:147.040000pt;}
.x1d_c00084{left:148.373333pt;}
.xad_c00084{left:149.333333pt;}
.xfc_c00084{left:152.000000pt;}
.xce_c00084{left:153.333333pt;}
.xeb_c00084{left:155.040000pt;}
.x33_c00084{left:158.666667pt;}
.x7d_c00084{left:160.373333pt;}
.x4_c00084{left:162.666667pt;}
.xfe_c00084{left:164.000000pt;}
.x1b_c00084{left:165.706667pt;}
.x91_c00084{left:166.666667pt;}
.xe_c00084{left:168.373333pt;}
.x48_c00084{left:169.333333pt;}
.xbb_c00084{left:170.666667pt;}
.x9b_c00084{left:172.000000pt;}
.x6f_c00084{left:173.706667pt;}
.xfb_c00084{left:176.373333pt;}
.xec_c00084{left:178.666667pt;}
.x107_c00084{left:180.000000pt;}
.xcf_c00084{left:181.706667pt;}
.x5b_c00084{left:183.626667pt;}
.xf2_c00084{left:185.706667pt;}
.xda_c00084{left:188.373333pt;}
.x1c_c00084{left:189.333333pt;}
.x49_c00084{left:190.293333pt;}
.x57_c00084{left:191.626667pt;}
.x1e_c00084{left:198.293333pt;}
.xf_c00084{left:199.626667pt;}
.x73_c00084{left:202.293333pt;}
.x9c_c00084{left:204.000000pt;}
.xb4_c00084{left:208.000000pt;}
.x70_c00084{left:210.666667pt;}
.xed_c00084{left:212.000000pt;}
.xdb_c00084{left:213.706667pt;}
.x5_c00084{left:214.666667pt;}
.x74_c00084{left:216.373333pt;}
.x61_c00084{left:217.333333pt;}
.xe0_c00084{left:218.293333pt;}
.x112_c00084{left:220.000000pt;}
.xbc_c00084{left:221.333333pt;}
.x4a_c00084{left:222.666667pt;}
.x34_c00084{left:224.000000pt;}
.xf7_c00084{left:225.333333pt;}
.x93_c00084{left:226.666667pt;}
.xb5_c00084{left:228.373333pt;}
.x83_c00084{left:229.333333pt;}
.x58_c00084{left:230.666667pt;}
.xa4_c00084{left:232.373333pt;}
.x10_c00084{left:233.706667pt;}
.x1f_c00084{left:237.333333pt;}
.xd5_c00084{left:238.293333pt;}
.x35_c00084{left:239.626667pt;}
.x71_c00084{left:240.960000pt;}
.x28_c00084{left:244.373333pt;}
.x62_c00084{left:246.293333pt;}
.x7e_c00084{left:248.000000pt;}
.x4b_c00084{left:249.706667pt;}
.x40_c00084{left:250.666667pt;}
.x11_c00084{left:252.373333pt;}
.xae_c00084{left:253.333333pt;}
.xa5_c00084{left:254.666667pt;}
.xa1_c00084{left:256.000000pt;}
.x6_c00084{left:257.333333pt;}
.xe1_c00084{left:259.040000pt;}
.x36_c00084{left:261.333333pt;}
.x59_c00084{left:263.040000pt;}
.x72_c00084{left:264.000000pt;}
.x12_c00084{left:265.333333pt;}
.xf3_c00084{left:266.666667pt;}
.x10e_c00084{left:268.000000pt;}
.xdc_c00084{left:269.333333pt;}
.x92_c00084{left:270.293333pt;}
.x29_c00084{left:272.000000pt;}
.x78_c00084{left:274.666667pt;}
.x75_c00084{left:276.573333pt;}
.x63_c00084{left:279.040000pt;}
.x8a_c00084{left:280.760000pt;}
.x7f_c00084{left:285.706667pt;}
.x5a_c00084{left:286.666667pt;}
.x10f_c00084{left:288.373333pt;}
.xa6_c00084{left:291.040000pt;}
.x94_c00084{left:292.960000pt;}
.x37_c00084{left:295.040000pt;}
.x13_c00084{left:296.373333pt;}
.x20_c00084{left:298.293333pt;}
.xb6_c00084{left:300.000000pt;}
.x79_c00084{left:303.626667pt;}
.x41_c00084{left:305.333333pt;}
.x2a_c00084{left:306.293333pt;}
.x38_c00084{left:307.240000pt;}
.x104_c00084{left:308.373333pt;}
.x4c_c00084{left:309.333333pt;}
.x84_c00084{left:310.666667pt;}
.x21_c00084{left:312.573333pt;}
.x76_c00084{left:314.666667pt;}
.x7a_c00084{left:317.333333pt;}
.xf4_c00084{left:319.040000pt;}
.x14_c00084{left:320.000000pt;}
.xbd_c00084{left:322.293333pt;}
.x2b_c00084{left:323.240000pt;}
.xee_c00084{left:325.333333pt;}
.x64_c00084{left:326.666667pt;}
.x7_c00084{left:328.960000pt;}
.xa7_c00084{left:331.040000pt;}
.x105_c00084{left:332.373333pt;}
.x113_c00084{left:333.706667pt;}
.xff_c00084{left:336.373333pt;}
.xe2_c00084{left:339.040000pt;}
.x42_c00084{left:340.000000pt;}
.xbe_c00084{left:340.960000pt;}
.x8b_c00084{left:342.293333pt;}
.xb7_c00084{left:346.293333pt;}
.xdd_c00084{left:347.626667pt;}
.x5c_c00084{left:350.666667pt;}
.x1_c00084{left:353.333333pt;}
.x65_c00084{left:356.000000pt;}
.xc7_c00084{left:357.706667pt;}
.x9d_c00084{left:360.373333pt;}
.xaf_c00084{left:361.333333pt;}
.x15_c00084{left:363.426667pt;}
.x4d_c00084{left:365.333333pt;}
.xf5_c00084{left:366.666667pt;}
.x106_c00084{left:367.626667pt;}
.x8c_c00084{left:369.706667pt;}
.x80_c00084{left:371.040000pt;}
.x43_c00084{left:372.960000pt;}
.xe3_c00084{left:374.666667pt;}
.x100_c00084{left:376.000000pt;}
.x39_c00084{left:377.333333pt;}
.x66_c00084{left:379.040000pt;}
.xef_c00084{left:380.373333pt;}
.xc8_c00084{left:381.333333pt;}
.xbf_c00084{left:382.293333pt;}
.x22_c00084{left:385.333333pt;}
.xde_c00084{left:387.040000pt;}
.x44_c00084{left:388.000000pt;}
.x4e_c00084{left:389.706667pt;}
.xa8_c00084{left:391.040000pt;}
.x110_c00084{left:392.373333pt;}
.xc0_c00084{left:393.333333pt;}
.x23_c00084{left:394.666667pt;}
.x2c_c00084{left:396.000000pt;}
.x85_c00084{left:398.666667pt;}
.x67_c00084{left:400.000000pt;}
.xf8_c00084{left:401.333333pt;}
.xe4_c00084{left:402.666667pt;}
.x108_c00084{left:404.000000pt;}
.x3a_c00084{left:406.293333pt;}
.x8d_c00084{left:408.000000pt;}
.x8_c00084{left:410.666667pt;}
.x5d_c00084{left:411.626667pt;}
.xa9_c00084{left:413.333333pt;}
.xc9_c00084{left:415.626667pt;}
.x95_c00084{left:417.706667pt;}
.xc1_c00084{left:421.706667pt;}
.x10d_c00084{left:422.666667pt;}
.x16_c00084{left:423.626667pt;}
.xe5_c00084{left:425.333333pt;}
.x4f_c00084{left:426.666667pt;}
.x77_c00084{left:428.000000pt;}
.xb0_c00084{left:429.333333pt;}
.xf9_c00084{left:431.040000pt;}
.xca_c00084{left:432.373333pt;}
.x24_c00084{left:434.293333pt;}
.x68_c00084{left:437.333333pt;}
.xe6_c00084{left:438.666667pt;}
.xfd_c00084{left:440.000000pt;}
.x8e_c00084{left:441.333333pt;}
.x81_c00084{left:442.666667pt;}
.x9e_c00084{left:444.000000pt;}
.xaa_c00084{left:445.706667pt;}
.xa2_c00084{left:448.373333pt;}
.x101_c00084{left:451.040000pt;}
.x2d_c00084{left:453.333333pt;}
.x3b_c00084{left:456.000000pt;}
.x50_c00084{left:457.333333pt;}
.x25_c00084{left:458.293333pt;}
.x9_c00084{left:460.000000pt;}
.x5e_c00084{left:461.706667pt;}
.x86_c00084{left:462.666667pt;}
.xd6_c00084{left:464.000000pt;}
.x3c_c00084{left:465.333333pt;}
.xe7_c00084{left:466.293333pt;}
.x8f_c00084{left:467.626667pt;}
.x69_c00084{left:471.626667pt;}
.x82_c00084{left:473.706667pt;}
.x87_c00084{left:474.666667pt;}
.x9f_c00084{left:477.333333pt;}
.x51_c00084{left:478.293333pt;}
.xf0_c00084{left:480.000000pt;}
.xb1_c00084{left:481.333333pt;}
.xab_c00084{left:484.000000pt;}
.x109_c00084{left:485.333333pt;}
.x6a_c00084{left:486.666667pt;}
.xc6_c00084{left:488.000000pt;}
.xd0_c00084{left:489.333333pt;}
.x17_c00084{left:492.000000pt;}
.xcb_c00084{left:494.293333pt;}
.x111_c00084{left:496.000000pt;}
.x26_c00084{left:497.333333pt;}
.xb2_c00084{left:500.373333pt;}
.x96_c00084{left:501.333333pt;}
.x3d_c00084{left:503.626667pt;}
.x2e_c00084{left:505.333333pt;}
.x88_c00084{left:507.040000pt;}
.xd7_c00084{left:509.333333pt;}
.x52_c00084{left:510.666667pt;}
.xcc_c00084{left:512.373333pt;}
.xb8_c00084{left:515.040000pt;}
.x2f_c00084{left:516.000000pt;}
.x5f_c00084{left:516.960000pt;}
.x10a_c00084{left:519.040000pt;}
.x97_c00084{left:521.333333pt;}
.xa3_c00084{left:522.666667pt;}
.x27_c00084{left:524.373333pt;}
.x3e_c00084{left:528.000000pt;}
.x102_c00084{left:529.706667pt;}
.xdf_c00084{left:533.706667pt;}
.xa_c00084{left:535.040000pt;}
.xe8_c00084{left:536.373333pt;}
.x98_c00084{left:537.333333pt;}
.x18_c00084{left:540.000000pt;}
.x53_c00084{left:540.960000pt;}
.xd1_c00084{left:544.373333pt;}
.xfa_c00084{left:545.333333pt;}
.x19_c00084{left:546.293333pt;}
.x60_c00084{left:548.373333pt;}
.x1a_c00084{left:553.706667pt;}
.xc2_c00084{left:555.040000pt;}
.x99_c00084{left:556.000000pt;}
.x114_c00084{left:557.706667pt;}
.x30_c00084{left:558.666667pt;}
.x89_c00084{left:560.000000pt;}
.xd2_c00084{left:561.333333pt;}
.x45_c00084{left:562.293333pt;}
.x7b_c00084{left:563.626667pt;}
.x54_c00084{left:565.333333pt;}
.x6b_c00084{left:566.666667pt;}
.x90_c00084{left:568.373333pt;}
.xcd_c00084{left:572.000000pt;}
.xd8_c00084{left:573.333333pt;}
.xf1_c00084{left:574.293333pt;}
.x6c_c00084{left:577.333333pt;}
.xc3_c00084{left:580.000000pt;}
.x31_c00084{left:583.626667pt;}
.xac_c00084{left:585.333333pt;}
.xb_c00084{left:586.293333pt;}
.xe9_c00084{left:589.333333pt;}
.xb9_c00084{left:590.666667pt;}
.xd9_c00084{left:593.333333pt;}
.xd3_c00084{left:598.666667pt;}
.xea_c00084{left:602.293333pt;}
.x9a_c00084{left:604.373333pt;}
.xa0_c00084{left:605.333333pt;}
.x55_c00084{left:606.666667pt;}
.x3f_c00084{left:608.000000pt;}
.x10b_c00084{left:608.960000pt;}
.x46_c00084{left:612.000000pt;}
.x7c_c00084{left:613.706667pt;}
.xc4_c00084{left:615.040000pt;}
.x56_c00084{left:617.333333pt;}
.xc_c00084{left:619.040000pt;}
.x47_c00084{left:621.333333pt;}
.x6d_c00084{left:622.666667pt;}
.x32_c00084{left:625.333333pt;}
.xf6_c00084{left:626.293333pt;}
.x10c_c00084{left:628.000000pt;}
.xb3_c00084{left:629.706667pt;}
.x2_c00084{left:631.626667pt;}
.xd4_c00084{left:637.333333pt;}
.x103_c00084{left:638.293333pt;}
.xc5_c00084{left:640.000000pt;}
.xba_c00084{left:642.666667pt;}
}





    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00085 {
      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_c00085 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00085 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00085 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_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_6d2521686ed47e2ff7430dd0.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb7_c00086{transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);}
.m22_c00086{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_c00086{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m84_c00086{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00086{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m36_c00086{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m65_c00086{transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);}
.m3b_c00086{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m44_c00086{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m19_c00086{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m3d_c00086{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m62_c00086{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m25_c00086{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m78_c00086{transform:matrix(0.411029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411029,0.000000,0.000000,0.250000,0,0);}
.m35_c00086{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m6f_c00086{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.ma_c00086{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mf_c00086{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m9d_c00086{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.m73_c00086{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m39_c00086{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m40_c00086{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m4c_c00086{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m75_c00086{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m61_c00086{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m26_c00086{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m6e_c00086{transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);}
.m33_c00086{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m47_c00086{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m5b_c00086{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.ma3_c00086{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m32_c00086{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m87_c00086{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m23_c00086{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m77_c00086{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_c00086{transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);}
.m4f_c00086{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.ma7_c00086{transform:matrix(0.447794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447794,0.000000,0.000000,0.250000,0,0);}
.m59_c00086{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m53_c00086{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m45_c00086{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m4a_c00086{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m29_c00086{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m7c_c00086{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m28_c00086{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m8e_c00086{transform:matrix(0.459936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459936,0.000000,0.000000,0.250000,0,0);}
.m48_c00086{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.m9a_c00086{transform:matrix(0.460177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460177,0.000000,0.000000,0.250000,0,0);}
.mb1_c00086{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);}
.m7f_c00086{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m54_c00086{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.ma1_c00086{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.mb2_c00086{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.m1c_c00086{transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);}
.m16_c00086{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.mb6_c00086{transform:matrix(0.471154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471154,0.000000,0.000000,0.250000,0,0);}
.m3f_c00086{transform:matrix(0.471176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471176,0.000000,0.000000,0.250000,0,0);}
.m3a_c00086{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m8_c00086{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m41_c00086{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m0_c00086{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m86_c00086{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m7_c00086{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mb_c00086{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m83_c00086{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m3e_c00086{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m27_c00086{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m2d_c00086{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mb8_c00086{transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);}
.ma6_c00086{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.m97_c00086{transform:matrix(0.495994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495994,0.000000,0.000000,0.250000,0,0);}
.m58_c00086{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);}
.m57_c00086{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mc_c00086{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m4d_c00086{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m52_c00086{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m20_c00086{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m2b_c00086{transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);}
.m3_c00086{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m98_c00086{transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);}
.m63_c00086{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m1f_c00086{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mb4_c00086{transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);}
.m3c_c00086{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.md_c00086{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m15_c00086{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.maf_c00086{transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);}
.m10_c00086{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m5_c00086{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m8d_c00086{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m72_c00086{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.m50_c00086{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m1e_c00086{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m5e_c00086{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m13_c00086{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m1d_c00086{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m43_c00086{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.ma8_c00086{transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);}
.m2c_c00086{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m17_c00086{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m4e_c00086{transform:matrix(0.549629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549629,0.000000,0.000000,0.250000,0,0);}
.m1a_c00086{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m94_c00086{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m30_c00086{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m55_c00086{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m6_c00086{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m5a_c00086{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m2a_c00086{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m38_c00086{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m11_c00086{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m89_c00086{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.mae_c00086{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m4_c00086{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m90_c00086{transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);}
.m92_c00086{transform:matrix(0.576923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576923,0.000000,0.000000,0.250000,0,0);}
.m5d_c00086{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mad_c00086{transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);}
.m37_c00086{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.ma5_c00086{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m6a_c00086{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m67_c00086{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m21_c00086{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m42_c00086{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m9f_c00086{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.m46_c00086{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m2_c00086{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_c00086{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m64_c00086{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m60_c00086{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m79_c00086{transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);}
.m5f_c00086{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m31_c00086{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m18_c00086{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m76_c00086{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.mab_c00086{transform:matrix(0.614583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614583,0.000000,0.000000,0.250000,0,0);}
.m7d_c00086{transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);}
.m71_c00086{transform:matrix(0.616176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616176,0.000000,0.000000,0.250000,0,0);}
.m6b_c00086{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m69_c00086{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m95_c00086{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m6d_c00086{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);}
.m24_c00086{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m8f_c00086{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m5c_c00086{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.m2e_c00086{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m7a_c00086{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m4b_c00086{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m2f_c00086{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m8a_c00086{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m70_c00086{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m14_c00086{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m68_c00086{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m9e_c00086{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.m82_c00086{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m66_c00086{transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);}
.maa_c00086{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.m7b_c00086{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mb5_c00086{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m91_c00086{transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);}
.m80_c00086{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.mb3_c00086{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m8c_c00086{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.me_c00086{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m8b_c00086{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.mb0_c00086{transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);}
.m81_c00086{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.ma4_c00086{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.m7e_c00086{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m34_c00086{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m9b_c00086{transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);}
.m49_c00086{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m12_c00086{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m51_c00086{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m9_c00086{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m93_c00086{transform:matrix(0.786344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786344,0.000000,0.000000,0.250000,0,0);}
.m88_c00086{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m1b_c00086{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mac_c00086{transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);}
.ma9_c00086{transform:matrix(0.829545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.829545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.829545,0.000000,0.000000,0.250000,0,0);}
.m85_c00086{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m9c_c00086{transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);}
.m99_c00086{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.ma0_c00086{transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);}
.m96_c00086{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.ma2_c00086{transform:matrix(2.758850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.758850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.758850,0.000000,0.000000,0.250000,0,0);}
.v1_c00086{vertical-align:-6.000000px;}
.v0_c00086{vertical-align:0.000000px;}
.ls1_c00086{letter-spacing:0.000000px;}
.ls0_c00086{letter-spacing:77.955316px;}
.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;}
}
.ws6_c00086{word-spacing:-88.887796px;}
.ws0_c00086{word-spacing:-7.489932px;}
.ws1a_c00086{word-spacing:0.000000px;}
.wsc_c00086{word-spacing:18.138913px;}
.ws7_c00086{word-spacing:19.620812px;}
.wsd_c00086{word-spacing:21.623753px;}
.ws4_c00086{word-spacing:23.560082px;}
.wse_c00086{word-spacing:23.728109px;}
.wsf_c00086{word-spacing:23.767013px;}
.ws14_c00086{word-spacing:25.883172px;}
.ws17_c00086{word-spacing:28.881049px;}
.ws12_c00086{word-spacing:30.398543px;}
.ws15_c00086{word-spacing:31.025931px;}
.wsb_c00086{word-spacing:31.838295px;}
.ws8_c00086{word-spacing:33.638400px;}
.ws2_c00086{word-spacing:36.577097px;}
.ws5_c00086{word-spacing:36.857815px;}
.ws9_c00086{word-spacing:38.705522px;}
.ws16_c00086{word-spacing:39.052735px;}
.ws13_c00086{word-spacing:39.933737px;}
.ws3_c00086{word-spacing:40.005669px;}
.ws19_c00086{word-spacing:41.867773px;}
.ws18_c00086{word-spacing:46.675586px;}
.ws1_c00086{word-spacing:47.719225px;}
.wsa_c00086{word-spacing:49.006362px;}
.ws10_c00086{word-spacing:69.530203px;}
.ws11_c00086{word-spacing:76.250880px;}
._4_c00086{margin-left:-77.955316px;}
._3_c00086{width:3.272727px;}
._8_c00086{width:25.216999px;}
._5_c00086{width:31.721093px;}
._7_c00086{width:33.837252px;}
._a_c00086{width:44.399896px;}
._1_c00086{width:49.177280px;}
._2_c00086{width:50.535917px;}
._9_c00086{width:52.800253px;}
._0_c00086{width:54.366720px;}
._6_c00086{width:59.631031px;}
.fc0_c00086{color:transparent;}
.fs7_c00086{font-size:3.420000px;}
.fs8_c00086{font-size:6.780000px;}
.fs9_c00086{font-size:11.880000px;}
.fs6_c00086{font-size:13.620000px;}
.fs3_c00086{font-size:18.720000px;}
.fs1_c00086{font-size:20.400000px;}
.fs2_c00086{font-size:25.500000px;}
.fs0_c00086{font-size:28.920000px;}
.fs5_c00086{font-size:32.340000px;}
.fs4_c00086{font-size:35.700000px;}
.y0_c00086{bottom:0.000000px;}
.ye1_c00086{bottom:257.130000px;}
.ye0_c00086{bottom:258.195000px;}
.ydf_c00086{bottom:258.630000px;}
.ydc_c00086{bottom:269.550000px;}
.yde_c00086{bottom:270.630000px;}
.ydd_c00086{bottom:271.695000px;}
.yd9_c00086{bottom:272.130000px;}
.yda_c00086{bottom:272.775000px;}
.yd8_c00086{bottom:273.630000px;}
.ydb_c00086{bottom:274.920000px;}
.yd7_c00086{bottom:285.195000px;}
.yd6_c00086{bottom:285.630000px;}
.yd4_c00086{bottom:286.275000px;}
.yd2_c00086{bottom:286.695000px;}
.yd3_c00086{bottom:287.130000px;}
.yd5_c00086{bottom:288.420000px;}
.yd1_c00086{bottom:298.695000px;}
.yd0_c00086{bottom:299.130000px;}
.yce_c00086{bottom:299.550000px;}
.ycf_c00086{bottom:300.195000px;}
.ycc_c00086{bottom:300.630000px;}
.ycd_c00086{bottom:301.275000px;}
.ycb_c00086{bottom:312.195000px;}
.yc9_c00086{bottom:312.630000px;}
.yca_c00086{bottom:313.695000px;}
.yc6_c00086{bottom:314.130000px;}
.yc7_c00086{bottom:314.775000px;}
.yc8_c00086{bottom:315.195000px;}
.yc5_c00086{bottom:326.130000px;}
.yc4_c00086{bottom:327.195000px;}
.yc3_c00086{bottom:327.630000px;}
.yc2_c00086{bottom:339.630000px;}
.yc1_c00086{bottom:340.695000px;}
.yc0_c00086{bottom:342.195000px;}
.ybf_c00086{bottom:342.630000px;}
.ybe_c00086{bottom:353.130000px;}
.ybd_c00086{bottom:354.195000px;}
.ybc_c00086{bottom:355.695000px;}
.ybb_c00086{bottom:357.195000px;}
.yba_c00086{bottom:367.695000px;}
.yb8_c00086{bottom:368.130000px;}
.yb6_c00086{bottom:368.550000px;}
.yb9_c00086{bottom:369.195000px;}
.yb4_c00086{bottom:369.630000px;}
.yb7_c00086{bottom:370.275000px;}
.yb5_c00086{bottom:370.695000px;}
.yb3_c00086{bottom:381.630000px;}
.yb2_c00086{bottom:382.695000px;}
.yb1_c00086{bottom:383.130000px;}
.yaf_c00086{bottom:395.130000px;}
.yb0_c00086{bottom:396.195000px;}
.yad_c00086{bottom:397.050000px;}
.yae_c00086{bottom:397.695000px;}
.yac_c00086{bottom:408.630000px;}
.yaa_c00086{bottom:409.695000px;}
.ya8_c00086{bottom:410.130000px;}
.yab_c00086{bottom:410.355000px;}
.ya9_c00086{bottom:411.195000px;}
.ya7_c00086{bottom:422.130000px;}
.ya6_c00086{bottom:423.195000px;}
.ya3_c00086{bottom:423.630000px;}
.ya4_c00086{bottom:424.695000px;}
.ya5_c00086{bottom:424.920000px;}
.ya2_c00086{bottom:426.195000px;}
.ya1_c00086{bottom:436.695000px;}
.ya0_c00086{bottom:437.130000px;}
.y9e_c00086{bottom:438.195000px;}
.y9c_c00086{bottom:438.630000px;}
.y9d_c00086{bottom:439.275000px;}
.y9f_c00086{bottom:439.695000px;}
.y9b_c00086{bottom:450.195000px;}
.y99_c00086{bottom:450.630000px;}
.y9a_c00086{bottom:450.855000px;}
.y98_c00086{bottom:451.695000px;}
.y96_c00086{bottom:452.130000px;}
.y97_c00086{bottom:453.195000px;}
.y94_c00086{bottom:464.130000px;}
.y92_c00086{bottom:465.195000px;}
.y93_c00086{bottom:465.630000px;}
.y95_c00086{bottom:466.920000px;}
.y91_c00086{bottom:480.630000px;}
.y8f_c00086{bottom:491.130000px;}
.y90_c00086{bottom:492.195000px;}
.y8d_c00086{bottom:492.630000px;}
.y8e_c00086{bottom:493.695000px;}
.y8c_c00086{bottom:495.195000px;}
.y8b_c00086{bottom:505.695000px;}
.y8a_c00086{bottom:506.130000px;}
.y89_c00086{bottom:507.195000px;}
.y88_c00086{bottom:508.695000px;}
.y87_c00086{bottom:519.630000px;}
.y86_c00086{bottom:520.695000px;}
.y84_c00086{bottom:521.130000px;}
.y85_c00086{bottom:522.195000px;}
.y83_c00086{bottom:534.195000px;}
.y82_c00086{bottom:534.630000px;}
.y81_c00086{bottom:535.695000px;}
.y80_c00086{bottom:546.630000px;}
.y7f_c00086{bottom:547.695000px;}
.y7e_c00086{bottom:548.130000px;}
.y7d_c00086{bottom:549.195000px;}
.y7c_c00086{bottom:561.195000px;}
.y7a_c00086{bottom:561.630000px;}
.y7b_c00086{bottom:562.695000px;}
.y79_c00086{bottom:563.130000px;}
.y78_c00086{bottom:574.695000px;}
.y77_c00086{bottom:575.130000px;}
.y76_c00086{bottom:576.195000px;}
.y75_c00086{bottom:588.195000px;}
.y73_c00086{bottom:588.630000px;}
.y74_c00086{bottom:589.695000px;}
.y72_c00086{bottom:590.130000px;}
.y71_c00086{bottom:591.195000px;}
.y6f_c00086{bottom:602.130000px;}
.y70_c00086{bottom:603.195000px;}
.y6e_c00086{bottom:603.630000px;}
.y6c_c00086{bottom:604.695000px;}
.y6d_c00086{bottom:605.130000px;}
.y6b_c00086{bottom:616.695000px;}
.y6a_c00086{bottom:617.130000px;}
.y69_c00086{bottom:618.195000px;}
.y68_c00086{bottom:618.630000px;}
.y67_c00086{bottom:619.695000px;}
.y66_c00086{bottom:630.195000px;}
.y65_c00086{bottom:630.630000px;}
.y64_c00086{bottom:631.695000px;}
.y63_c00086{bottom:632.130000px;}
.y62_c00086{bottom:633.195000px;}
.y60_c00086{bottom:644.130000px;}
.y61_c00086{bottom:645.195000px;}
.y5f_c00086{bottom:645.630000px;}
.y5e_c00086{bottom:646.695000px;}
.y5d_c00086{bottom:657.630000px;}
.y5c_c00086{bottom:658.695000px;}
.y5b_c00086{bottom:660.195000px;}
.y5a_c00086{bottom:677.130000px;}
.y59_c00086{bottom:678.195000px;}
.y58_c00086{bottom:689.130000px;}
.y56_c00086{bottom:689.550000px;}
.y57_c00086{bottom:690.195000px;}
.y55_c00086{bottom:690.630000px;}
.y53_c00086{bottom:692.130000px;}
.y54_c00086{bottom:693.195000px;}
.y52_c00086{bottom:705.195000px;}
.y51_c00086{bottom:706.695000px;}
.y50_c00086{bottom:731.550000px;}
.y4e_c00086{bottom:743.325000px;}
.y4f_c00086{bottom:744.405000px;}
.y4b_c00086{bottom:745.050000px;}
.y4d_c00086{bottom:745.470000px;}
.y4c_c00086{bottom:746.550000px;}
.y4a_c00086{bottom:767.550000px;}
.y49_c00086{bottom:770.550000px;}
.y47_c00086{bottom:803.970000px;}
.y46_c00086{bottom:805.245000px;}
.y48_c00086{bottom:806.970000px;}
.y45_c00086{bottom:807.405000px;}
.y40_c00086{bottom:823.245000px;}
.y43_c00086{bottom:824.745000px;}
.y3f_c00086{bottom:825.405000px;}
.y41_c00086{bottom:826.470000px;}
.y42_c00086{bottom:826.905000px;}
.y44_c00086{bottom:827.970000px;}
.y3e_c00086{bottom:844.245000px;}
.y3c_c00086{bottom:845.130000px;}
.y3d_c00086{bottom:846.405000px;}
.y3b_c00086{bottom:863.745000px;}
.y3a_c00086{bottom:864.630000px;}
.y39_c00086{bottom:865.905000px;}
.y34_c00086{bottom:883.245000px;}
.y33_c00086{bottom:884.325000px;}
.y36_c00086{bottom:885.405000px;}
.y35_c00086{bottom:885.630000px;}
.y38_c00086{bottom:885.825000px;}
.y37_c00086{bottom:886.905000px;}
.y30_c00086{bottom:902.745000px;}
.y32_c00086{bottom:904.245000px;}
.y2f_c00086{bottom:904.905000px;}
.y2e_c00086{bottom:905.970000px;}
.y31_c00086{bottom:906.405000px;}
.y2a_c00086{bottom:922.245000px;}
.y29_c00086{bottom:923.325000px;}
.y28_c00086{bottom:924.405000px;}
.y2d_c00086{bottom:924.630000px;}
.y2c_c00086{bottom:925.470000px;}
.y2b_c00086{bottom:925.905000px;}
.y23_c00086{bottom:941.745000px;}
.y24_c00086{bottom:942.825000px;}
.y26_c00086{bottom:943.245000px;}
.y22_c00086{bottom:943.905000px;}
.y27_c00086{bottom:944.130000px;}
.y25_c00086{bottom:945.405000px;}
.y20_c00086{bottom:960.405000px;}
.y21_c00086{bottom:961.470000px;}
.y1f_c00086{bottom:962.745000px;}
.y1e_c00086{bottom:964.905000px;}
.y1c_c00086{bottom:982.245000px;}
.y1a_c00086{bottom:983.130000px;}
.y1b_c00086{bottom:983.325000px;}
.y18_c00086{bottom:984.405000px;}
.y1d_c00086{bottom:984.630000px;}
.y19_c00086{bottom:985.470000px;}
.y15_c00086{bottom:1000.245000px;}
.y17_c00086{bottom:1000.470000px;}
.y13_c00086{bottom:1001.745000px;}
.y16_c00086{bottom:1002.825000px;}
.y12_c00086{bottom:1003.905000px;}
.y14_c00086{bottom:1004.970000px;}
.y11_c00086{bottom:1021.245000px;}
.y10_c00086{bottom:1022.130000px;}
.yf_c00086{bottom:1023.405000px;}
.yd_c00086{bottom:1039.905000px;}
.ye_c00086{bottom:1040.745000px;}
.yc_c00086{bottom:1041.825000px;}
.yb_c00086{bottom:1042.470000px;}
.y9_c00086{bottom:1042.905000px;}
.ya_c00086{bottom:1043.130000px;}
.y7_c00086{bottom:1061.745000px;}
.y4_c00086{bottom:1062.405000px;}
.y6_c00086{bottom:1062.630000px;}
.y8_c00086{bottom:1062.825000px;}
.y3_c00086{bottom:1063.470000px;}
.y5_c00086{bottom:1063.905000px;}
.y1_c00086{bottom:1099.905000px;}
.y2_c00086{bottom:1100.550000px;}
.h8_c00086{height:4.206533px;}
.h9_c00086{height:8.339268px;}
.ha_c00086{height:14.612168px;}
.h7_c00086{height:16.752334px;}
.h4_c00086{height:23.025234px;}
.h2_c00086{height:25.091602px;}
.h3_c00086{height:31.364502px;}
.h1_c00086{height:35.571035px;}
.h6_c00086{height:39.777568px;}
.h5_c00086{height:43.910303px;}
.h0_c00086{height:1335.000000px;}
.w0_c00086{width:880.500000px;}
.x0_c00086{left:0.000000px;}
.x3_c00086{left:151.500000px;}
.x55_c00086{left:152.580000px;}
.x90_c00086{left:154.500000px;}
.x98_c00086{left:156.000000px;}
.x25_c00086{left:167.580000px;}
.xb5_c00086{left:169.500000px;}
.x56_c00086{left:171.420000px;}
.x77_c00086{left:172.500000px;}
.x60_c00086{left:174.000000px;}
.x9b_c00086{left:178.080000px;}
.x12_c00086{left:179.580000px;}
.x4_c00086{left:183.000000px;}
.x82_c00086{left:186.420000px;}
.x33_c00086{left:188.580000px;}
.x6d_c00086{left:190.500000px;}
.xba_c00086{left:196.080000px;}
.x4c_c00086{left:198.000000px;}
.x57_c00086{left:199.500000px;}
.x1f_c00086{left:201.000000px;}
.x61_c00086{left:202.500000px;}
.x6e_c00086{left:203.580000px;}
.x78_c00086{left:205.500000px;}
.xb6_c00086{left:209.580000px;}
.x40_c00086{left:212.580000px;}
.xbe_c00086{left:214.500000px;}
.x20_c00086{left:219.000000px;}
.x13_c00086{left:222.420000px;}
.x9f_c00086{left:223.500000px;}
.x34_c00086{left:224.580000px;}
.x5_c00086{left:227.580000px;}
.xb7_c00086{left:229.080000px;}
.xbb_c00086{left:237.000000px;}
.x91_c00086{left:240.000000px;}
.xa0_c00086{left:241.080000px;}
.x41_c00086{left:244.500000px;}
.x6_c00086{left:246.420000px;}
.x26_c00086{left:250.275000px;}
.x58_c00086{left:252.000000px;}
.xc2_c00086{left:255.000000px;}
.x4d_c00086{left:256.920000px;}
.xb8_c00086{left:259.500000px;}
.x21_c00086{left:261.000000px;}
.x83_c00086{left:262.080000px;}
.xc0_c00086{left:264.000000px;}
.x35_c00086{left:267.000000px;}
.x7_c00086{left:271.920000px;}
.x59_c00086{left:274.500000px;}
.x27_c00086{left:277.080000px;}
.x84_c00086{left:282.420000px;}
.x36_c00086{left:285.000000px;}
.x6f_c00086{left:286.500000px;}
.x89_c00086{left:292.500000px;}
.x14_c00086{left:300.000000px;}
.x66_c00086{left:303.000000px;}
.x28_c00086{left:307.500000px;}
.x22_c00086{left:309.000000px;}
.x42_c00086{left:312.000000px;}
.x5a_c00086{left:313.500000px;}
.x67_c00086{left:316.500000px;}
.x37_c00086{left:318.000000px;}
.x29_c00086{left:322.500000px;}
.x8_c00086{left:324.000000px;}
.x15_c00086{left:328.920000px;}
.x70_c00086{left:334.500000px;}
.x85_c00086{left:336.000000px;}
.x38_c00086{left:337.920000px;}
.x2a_c00086{left:339.000000px;}
.x23_c00086{left:340.500000px;}
.xaf_c00086{left:347.580000px;}
.x99_c00086{left:349.500000px;}
.xa1_c00086{left:351.000000px;}
.xa5_c00086{left:354.000000px;}
.x2b_c00086{left:355.500000px;}
.x43_c00086{left:358.500000px;}
.x86_c00086{left:364.500000px;}
.x92_c00086{left:365.580000px;}
.x16_c00086{left:367.500000px;}
.x2c_c00086{left:373.080000px;}
.x9_c00086{left:375.000000px;}
.x8a_c00086{left:379.500000px;}
.x71_c00086{left:382.920000px;}
.x93_c00086{left:384.000000px;}
.x17_c00086{left:388.080000px;}
.xa_c00086{left:390.000000px;}
.xae_c00086{left:391.500000px;}
.xa2_c00086{left:394.500000px;}
.xbc_c00086{left:396.000000px;}
.x2_c00086{left:397.500000px;}
.x79_c00086{left:400.500000px;}
.x39_c00086{left:402.000000px;}
.x44_c00086{left:409.080000px;}
.x97_c00086{left:412.500000px;}
.x62_c00086{left:414.000000px;}
.x87_c00086{left:415.500000px;}
.x8f_c00086{left:417.000000px;}
.x72_c00086{left:418.080000px;}
.x2d_c00086{left:423.000000px;}
.x24_c00086{left:424.500000px;}
.x4e_c00086{left:426.000000px;}
.xb_c00086{left:427.920000px;}
.x9d_c00086{left:430.500000px;}
.xab_c00086{left:432.000000px;}
.xa6_c00086{left:435.000000px;}
.x8b_c00086{left:436.920000px;}
.x73_c00086{left:438.420000px;}
.x7a_c00086{left:440.580000px;}
.x18_c00086{left:450.000000px;}
.x5b_c00086{left:451.920000px;}
.x7b_c00086{left:459.420000px;}
.x3a_c00086{left:462.420000px;}
.x74_c00086{left:466.500000px;}
.x45_c00086{left:471.420000px;}
.xb0_c00086{left:472.920000px;}
.x94_c00086{left:475.920000px;}
.xbd_c00086{left:477.000000px;}
.x5c_c00086{left:478.920000px;}
.xc_c00086{left:480.000000px;}
.x2e_c00086{left:481.500000px;}
.x7c_c00086{left:486.420000px;}
.x88_c00086{left:487.500000px;}
.x68_c00086{left:490.920000px;}
.x4f_c00086{left:493.500000px;}
.x3b_c00086{left:495.000000px;}
.x46_c00086{left:499.500000px;}
.x63_c00086{left:501.000000px;}
.x19_c00086{left:504.420000px;}
.x9a_c00086{left:507.000000px;}
.xac_c00086{left:508.500000px;}
.xb3_c00086{left:513.000000px;}
.x69_c00086{left:519.000000px;}
.x7d_c00086{left:520.500000px;}
.x2f_c00086{left:528.000000px;}
.x50_c00086{left:529.500000px;}
.xd_c00086{left:532.500000px;}
.x1a_c00086{left:534.000000px;}
.x5d_c00086{left:546.420000px;}
.x9e_c00086{left:547.500000px;}
.xb1_c00086{left:549.000000px;}
.x47_c00086{left:550.080000px;}
.x51_c00086{left:551.580000px;}
.xa7_c00086{left:553.500000px;}
.x64_c00086{left:555.000000px;}
.x3c_c00086{left:562.500000px;}
.xe_c00086{left:565.920000px;}
.x95_c00086{left:567.000000px;}
.x6a_c00086{left:573.000000px;}
.x3d_c00086{left:574.500000px;}
.x1b_c00086{left:580.920000px;}
.x48_c00086{left:582.420000px;}
.xb9_c00086{left:583.920000px;}
.x7e_c00086{left:586.500000px;}
.x52_c00086{left:587.580000px;}
.xa3_c00086{left:589.500000px;}
.xf_c00086{left:591.000000px;}
.xa8_c00086{left:592.500000px;}
.xbf_c00086{left:594.000000px;}
.x5e_c00086{left:600.000000px;}
.x30_c00086{left:601.500000px;}
.x7f_c00086{left:603.000000px;}
.x8c_c00086{left:604.500000px;}
.x53_c00086{left:607.500000px;}
.x49_c00086{left:610.920000px;}
.x1c_c00086{left:621.000000px;}
.x3e_c00086{left:624.000000px;}
.x31_c00086{left:627.420000px;}
.x10_c00086{left:628.500000px;}
.xa4_c00086{left:630.000000px;}
.xa9_c00086{left:633.000000px;}
.x6b_c00086{left:634.920000px;}
.x1d_c00086{left:637.500000px;}
.x4a_c00086{left:649.500000px;}
.x11_c00086{left:652.500000px;}
.x75_c00086{left:658.920000px;}
.x80_c00086{left:660.000000px;}
.x8d_c00086{left:661.080000px;}
.x6c_c00086{left:669.000000px;}
.xb2_c00086{left:670.500000px;}
.xad_c00086{left:672.420000px;}
.x3f_c00086{left:675.000000px;}
.x65_c00086{left:678.000000px;}
.x1e_c00086{left:679.920000px;}
.x54_c00086{left:681.000000px;}
.x5f_c00086{left:682.920000px;}
.x32_c00086{left:685.500000px;}
.x76_c00086{left:687.000000px;}
.x8e_c00086{left:691.080000px;}
.x81_c00086{left:699.420000px;}
.x4b_c00086{left:701.580000px;}
.x96_c00086{left:703.500000px;}
.x9c_c00086{left:709.500000px;}
.x1_c00086{left:710.580000px;}
.xb4_c00086{left:712.500000px;}
.xaa_c00086{left:715.500000px;}
.xc1_c00086{left:717.000000px;}
@media print{
.v1_c00086{vertical-align:-5.333333pt;}
.v0_c00086{vertical-align:0.000000pt;}
.ls1_c00086{letter-spacing:0.000000pt;}
.ls0_c00086{letter-spacing:69.293615pt;}
.ws6_c00086{word-spacing:-79.011375pt;}
.ws0_c00086{word-spacing:-6.657718pt;}
.ws1a_c00086{word-spacing:0.000000pt;}
.wsc_c00086{word-spacing:16.123479pt;}
.ws7_c00086{word-spacing:17.440722pt;}
.wsd_c00086{word-spacing:19.221114pt;}
.ws4_c00086{word-spacing:20.942295pt;}
.wse_c00086{word-spacing:21.091652pt;}
.wsf_c00086{word-spacing:21.126233pt;}
.ws14_c00086{word-spacing:23.007264pt;}
.ws17_c00086{word-spacing:25.672044pt;}
.ws12_c00086{word-spacing:27.020927pt;}
.ws15_c00086{word-spacing:27.578605pt;}
.wsb_c00086{word-spacing:28.300707pt;}
.ws8_c00086{word-spacing:29.900800pt;}
.ws2_c00086{word-spacing:32.512975pt;}
.ws5_c00086{word-spacing:32.762503pt;}
.ws9_c00086{word-spacing:34.404908pt;}
.ws16_c00086{word-spacing:34.713542pt;}
.ws13_c00086{word-spacing:35.496655pt;}
.ws3_c00086{word-spacing:35.560594pt;}
.ws19_c00086{word-spacing:37.215798pt;}
.ws18_c00086{word-spacing:41.489410pt;}
.ws1_c00086{word-spacing:42.417089pt;}
.wsa_c00086{word-spacing:43.561211pt;}
.ws10_c00086{word-spacing:61.804625pt;}
.ws11_c00086{word-spacing:67.778560pt;}
._4_c00086{margin-left:-69.293615pt;}
._3_c00086{width:2.909091pt;}
._8_c00086{width:22.415110pt;}
._5_c00086{width:28.196527pt;}
._7_c00086{width:30.077557pt;}
._a_c00086{width:39.466574pt;}
._1_c00086{width:43.713138pt;}
._2_c00086{width:44.920815pt;}
._9_c00086{width:46.933558pt;}
._0_c00086{width:48.325973pt;}
._6_c00086{width:53.005361pt;}
.fs7_c00086{font-size:3.040000pt;}
.fs8_c00086{font-size:6.026667pt;}
.fs9_c00086{font-size:10.560000pt;}
.fs6_c00086{font-size:12.106667pt;}
.fs3_c00086{font-size:16.640000pt;}
.fs1_c00086{font-size:18.133333pt;}
.fs2_c00086{font-size:22.666667pt;}
.fs0_c00086{font-size:25.706667pt;}
.fs5_c00086{font-size:28.746667pt;}
.fs4_c00086{font-size:31.733333pt;}
.y0_c00086{bottom:0.000000pt;}
.ye1_c00086{bottom:228.560000pt;}
.ye0_c00086{bottom:229.506667pt;}
.ydf_c00086{bottom:229.893333pt;}
.ydc_c00086{bottom:239.600000pt;}
.yde_c00086{bottom:240.560000pt;}
.ydd_c00086{bottom:241.506667pt;}
.yd9_c00086{bottom:241.893333pt;}
.yda_c00086{bottom:242.466667pt;}
.yd8_c00086{bottom:243.226667pt;}
.ydb_c00086{bottom:244.373333pt;}
.yd7_c00086{bottom:253.506667pt;}
.yd6_c00086{bottom:253.893333pt;}
.yd4_c00086{bottom:254.466667pt;}
.yd2_c00086{bottom:254.840000pt;}
.yd3_c00086{bottom:255.226667pt;}
.yd5_c00086{bottom:256.373333pt;}
.yd1_c00086{bottom:265.506667pt;}
.yd0_c00086{bottom:265.893333pt;}
.yce_c00086{bottom:266.266667pt;}
.ycf_c00086{bottom:266.840000pt;}
.ycc_c00086{bottom:267.226667pt;}
.ycd_c00086{bottom:267.800000pt;}
.ycb_c00086{bottom:277.506667pt;}
.yc9_c00086{bottom:277.893333pt;}
.yca_c00086{bottom:278.840000pt;}
.yc6_c00086{bottom:279.226667pt;}
.yc7_c00086{bottom:279.800000pt;}
.yc8_c00086{bottom:280.173333pt;}
.yc5_c00086{bottom:289.893333pt;}
.yc4_c00086{bottom:290.840000pt;}
.yc3_c00086{bottom:291.226667pt;}
.yc2_c00086{bottom:301.893333pt;}
.yc1_c00086{bottom:302.840000pt;}
.yc0_c00086{bottom:304.173333pt;}
.ybf_c00086{bottom:304.560000pt;}
.ybe_c00086{bottom:313.893333pt;}
.ybd_c00086{bottom:314.840000pt;}
.ybc_c00086{bottom:316.173333pt;}
.ybb_c00086{bottom:317.506667pt;}
.yba_c00086{bottom:326.840000pt;}
.yb8_c00086{bottom:327.226667pt;}
.yb6_c00086{bottom:327.600000pt;}
.yb9_c00086{bottom:328.173333pt;}
.yb4_c00086{bottom:328.560000pt;}
.yb7_c00086{bottom:329.133333pt;}
.yb5_c00086{bottom:329.506667pt;}
.yb3_c00086{bottom:339.226667pt;}
.yb2_c00086{bottom:340.173333pt;}
.yb1_c00086{bottom:340.560000pt;}
.yaf_c00086{bottom:351.226667pt;}
.yb0_c00086{bottom:352.173333pt;}
.yad_c00086{bottom:352.933333pt;}
.yae_c00086{bottom:353.506667pt;}
.yac_c00086{bottom:363.226667pt;}
.yaa_c00086{bottom:364.173333pt;}
.ya8_c00086{bottom:364.560000pt;}
.yab_c00086{bottom:364.760000pt;}
.ya9_c00086{bottom:365.506667pt;}
.ya7_c00086{bottom:375.226667pt;}
.ya6_c00086{bottom:376.173333pt;}
.ya3_c00086{bottom:376.560000pt;}
.ya4_c00086{bottom:377.506667pt;}
.ya5_c00086{bottom:377.706667pt;}
.ya2_c00086{bottom:378.840000pt;}
.ya1_c00086{bottom:388.173333pt;}
.ya0_c00086{bottom:388.560000pt;}
.y9e_c00086{bottom:389.506667pt;}
.y9c_c00086{bottom:389.893333pt;}
.y9d_c00086{bottom:390.466667pt;}
.y9f_c00086{bottom:390.840000pt;}
.y9b_c00086{bottom:400.173333pt;}
.y99_c00086{bottom:400.560000pt;}
.y9a_c00086{bottom:400.760000pt;}
.y98_c00086{bottom:401.506667pt;}
.y96_c00086{bottom:401.893333pt;}
.y97_c00086{bottom:402.840000pt;}
.y94_c00086{bottom:412.560000pt;}
.y92_c00086{bottom:413.506667pt;}
.y93_c00086{bottom:413.893333pt;}
.y95_c00086{bottom:415.040000pt;}
.y91_c00086{bottom:427.226667pt;}
.y8f_c00086{bottom:436.560000pt;}
.y90_c00086{bottom:437.506667pt;}
.y8d_c00086{bottom:437.893333pt;}
.y8e_c00086{bottom:438.840000pt;}
.y8c_c00086{bottom:440.173333pt;}
.y8b_c00086{bottom:449.506667pt;}
.y8a_c00086{bottom:449.893333pt;}
.y89_c00086{bottom:450.840000pt;}
.y88_c00086{bottom:452.173333pt;}
.y87_c00086{bottom:461.893333pt;}
.y86_c00086{bottom:462.840000pt;}
.y84_c00086{bottom:463.226667pt;}
.y85_c00086{bottom:464.173333pt;}
.y83_c00086{bottom:474.840000pt;}
.y82_c00086{bottom:475.226667pt;}
.y81_c00086{bottom:476.173333pt;}
.y80_c00086{bottom:485.893333pt;}
.y7f_c00086{bottom:486.840000pt;}
.y7e_c00086{bottom:487.226667pt;}
.y7d_c00086{bottom:488.173333pt;}
.y7c_c00086{bottom:498.840000pt;}
.y7a_c00086{bottom:499.226667pt;}
.y7b_c00086{bottom:500.173333pt;}
.y79_c00086{bottom:500.560000pt;}
.y78_c00086{bottom:510.840000pt;}
.y77_c00086{bottom:511.226667pt;}
.y76_c00086{bottom:512.173333pt;}
.y75_c00086{bottom:522.840000pt;}
.y73_c00086{bottom:523.226667pt;}
.y74_c00086{bottom:524.173333pt;}
.y72_c00086{bottom:524.560000pt;}
.y71_c00086{bottom:525.506667pt;}
.y6f_c00086{bottom:535.226667pt;}
.y70_c00086{bottom:536.173333pt;}
.y6e_c00086{bottom:536.560000pt;}
.y6c_c00086{bottom:537.506667pt;}
.y6d_c00086{bottom:537.893333pt;}
.y6b_c00086{bottom:548.173333pt;}
.y6a_c00086{bottom:548.560000pt;}
.y69_c00086{bottom:549.506667pt;}
.y68_c00086{bottom:549.893333pt;}
.y67_c00086{bottom:550.840000pt;}
.y66_c00086{bottom:560.173333pt;}
.y65_c00086{bottom:560.560000pt;}
.y64_c00086{bottom:561.506667pt;}
.y63_c00086{bottom:561.893333pt;}
.y62_c00086{bottom:562.840000pt;}
.y60_c00086{bottom:572.560000pt;}
.y61_c00086{bottom:573.506667pt;}
.y5f_c00086{bottom:573.893333pt;}
.y5e_c00086{bottom:574.840000pt;}
.y5d_c00086{bottom:584.560000pt;}
.y5c_c00086{bottom:585.506667pt;}
.y5b_c00086{bottom:586.840000pt;}
.y5a_c00086{bottom:601.893333pt;}
.y59_c00086{bottom:602.840000pt;}
.y58_c00086{bottom:612.560000pt;}
.y56_c00086{bottom:612.933333pt;}
.y57_c00086{bottom:613.506667pt;}
.y55_c00086{bottom:613.893333pt;}
.y53_c00086{bottom:615.226667pt;}
.y54_c00086{bottom:616.173333pt;}
.y52_c00086{bottom:626.840000pt;}
.y51_c00086{bottom:628.173333pt;}
.y50_c00086{bottom:650.266667pt;}
.y4e_c00086{bottom:660.733333pt;}
.y4f_c00086{bottom:661.693333pt;}
.y4b_c00086{bottom:662.266667pt;}
.y4d_c00086{bottom:662.640000pt;}
.y4c_c00086{bottom:663.600000pt;}
.y4a_c00086{bottom:682.266667pt;}
.y49_c00086{bottom:684.933333pt;}
.y47_c00086{bottom:714.640000pt;}
.y46_c00086{bottom:715.773333pt;}
.y48_c00086{bottom:717.306667pt;}
.y45_c00086{bottom:717.693333pt;}
.y40_c00086{bottom:731.773333pt;}
.y43_c00086{bottom:733.106667pt;}
.y3f_c00086{bottom:733.693333pt;}
.y41_c00086{bottom:734.640000pt;}
.y42_c00086{bottom:735.026667pt;}
.y44_c00086{bottom:735.973333pt;}
.y3e_c00086{bottom:750.440000pt;}
.y3c_c00086{bottom:751.226667pt;}
.y3d_c00086{bottom:752.360000pt;}
.y3b_c00086{bottom:767.773333pt;}
.y3a_c00086{bottom:768.560000pt;}
.y39_c00086{bottom:769.693333pt;}
.y34_c00086{bottom:785.106667pt;}
.y33_c00086{bottom:786.066667pt;}
.y36_c00086{bottom:787.026667pt;}
.y35_c00086{bottom:787.226667pt;}
.y38_c00086{bottom:787.400000pt;}
.y37_c00086{bottom:788.360000pt;}
.y30_c00086{bottom:802.440000pt;}
.y32_c00086{bottom:803.773333pt;}
.y2f_c00086{bottom:804.360000pt;}
.y2e_c00086{bottom:805.306667pt;}
.y31_c00086{bottom:805.693333pt;}
.y2a_c00086{bottom:819.773333pt;}
.y29_c00086{bottom:820.733333pt;}
.y28_c00086{bottom:821.693333pt;}
.y2d_c00086{bottom:821.893333pt;}
.y2c_c00086{bottom:822.640000pt;}
.y2b_c00086{bottom:823.026667pt;}
.y23_c00086{bottom:837.106667pt;}
.y24_c00086{bottom:838.066667pt;}
.y26_c00086{bottom:838.440000pt;}
.y22_c00086{bottom:839.026667pt;}
.y27_c00086{bottom:839.226667pt;}
.y25_c00086{bottom:840.360000pt;}
.y20_c00086{bottom:853.693333pt;}
.y21_c00086{bottom:854.640000pt;}
.y1f_c00086{bottom:855.773333pt;}
.y1e_c00086{bottom:857.693333pt;}
.y1c_c00086{bottom:873.106667pt;}
.y1a_c00086{bottom:873.893333pt;}
.y1b_c00086{bottom:874.066667pt;}
.y18_c00086{bottom:875.026667pt;}
.y1d_c00086{bottom:875.226667pt;}
.y19_c00086{bottom:875.973333pt;}
.y15_c00086{bottom:889.106667pt;}
.y17_c00086{bottom:889.306667pt;}
.y13_c00086{bottom:890.440000pt;}
.y16_c00086{bottom:891.400000pt;}
.y12_c00086{bottom:892.360000pt;}
.y14_c00086{bottom:893.306667pt;}
.y11_c00086{bottom:907.773333pt;}
.y10_c00086{bottom:908.560000pt;}
.yf_c00086{bottom:909.693333pt;}
.yd_c00086{bottom:924.360000pt;}
.ye_c00086{bottom:925.106667pt;}
.yc_c00086{bottom:926.066667pt;}
.yb_c00086{bottom:926.640000pt;}
.y9_c00086{bottom:927.026667pt;}
.ya_c00086{bottom:927.226667pt;}
.y7_c00086{bottom:943.773333pt;}
.y4_c00086{bottom:944.360000pt;}
.y6_c00086{bottom:944.560000pt;}
.y8_c00086{bottom:944.733333pt;}
.y3_c00086{bottom:945.306667pt;}
.y5_c00086{bottom:945.693333pt;}
.y1_c00086{bottom:977.693333pt;}
.y2_c00086{bottom:978.266667pt;}
.h8_c00086{height:3.739141pt;}
.h9_c00086{height:7.412682pt;}
.ha_c00086{height:12.988594pt;}
.h7_c00086{height:14.890964pt;}
.h4_c00086{height:20.466875pt;}
.h2_c00086{height:22.303646pt;}
.h3_c00086{height:27.879557pt;}
.h1_c00086{height:31.618698pt;}
.h6_c00086{height:35.357839pt;}
.h5_c00086{height:39.031380pt;}
.h0_c00086{height:1186.666667pt;}
.w0_c00086{width:782.666667pt;}
.x0_c00086{left:0.000000pt;}
.x3_c00086{left:134.666667pt;}
.x55_c00086{left:135.626667pt;}
.x90_c00086{left:137.333333pt;}
.x98_c00086{left:138.666667pt;}
.x25_c00086{left:148.960000pt;}
.xb5_c00086{left:150.666667pt;}
.x56_c00086{left:152.373333pt;}
.x77_c00086{left:153.333333pt;}
.x60_c00086{left:154.666667pt;}
.x9b_c00086{left:158.293333pt;}
.x12_c00086{left:159.626667pt;}
.x4_c00086{left:162.666667pt;}
.x82_c00086{left:165.706667pt;}
.x33_c00086{left:167.626667pt;}
.x6d_c00086{left:169.333333pt;}
.xba_c00086{left:174.293333pt;}
.x4c_c00086{left:176.000000pt;}
.x57_c00086{left:177.333333pt;}
.x1f_c00086{left:178.666667pt;}
.x61_c00086{left:180.000000pt;}
.x6e_c00086{left:180.960000pt;}
.x78_c00086{left:182.666667pt;}
.xb6_c00086{left:186.293333pt;}
.x40_c00086{left:188.960000pt;}
.xbe_c00086{left:190.666667pt;}
.x20_c00086{left:194.666667pt;}
.x13_c00086{left:197.706667pt;}
.x9f_c00086{left:198.666667pt;}
.x34_c00086{left:199.626667pt;}
.x5_c00086{left:202.293333pt;}
.xb7_c00086{left:203.626667pt;}
.xbb_c00086{left:210.666667pt;}
.x91_c00086{left:213.333333pt;}
.xa0_c00086{left:214.293333pt;}
.x41_c00086{left:217.333333pt;}
.x6_c00086{left:219.040000pt;}
.x26_c00086{left:222.466667pt;}
.x58_c00086{left:224.000000pt;}
.xc2_c00086{left:226.666667pt;}
.x4d_c00086{left:228.373333pt;}
.xb8_c00086{left:230.666667pt;}
.x21_c00086{left:232.000000pt;}
.x83_c00086{left:232.960000pt;}
.xc0_c00086{left:234.666667pt;}
.x35_c00086{left:237.333333pt;}
.x7_c00086{left:241.706667pt;}
.x59_c00086{left:244.000000pt;}
.x27_c00086{left:246.293333pt;}
.x84_c00086{left:251.040000pt;}
.x36_c00086{left:253.333333pt;}
.x6f_c00086{left:254.666667pt;}
.x89_c00086{left:260.000000pt;}
.x14_c00086{left:266.666667pt;}
.x66_c00086{left:269.333333pt;}
.x28_c00086{left:273.333333pt;}
.x22_c00086{left:274.666667pt;}
.x42_c00086{left:277.333333pt;}
.x5a_c00086{left:278.666667pt;}
.x67_c00086{left:281.333333pt;}
.x37_c00086{left:282.666667pt;}
.x29_c00086{left:286.666667pt;}
.x8_c00086{left:288.000000pt;}
.x15_c00086{left:292.373333pt;}
.x70_c00086{left:297.333333pt;}
.x85_c00086{left:298.666667pt;}
.x38_c00086{left:300.373333pt;}
.x2a_c00086{left:301.333333pt;}
.x23_c00086{left:302.666667pt;}
.xaf_c00086{left:308.960000pt;}
.x99_c00086{left:310.666667pt;}
.xa1_c00086{left:312.000000pt;}
.xa5_c00086{left:314.666667pt;}
.x2b_c00086{left:316.000000pt;}
.x43_c00086{left:318.666667pt;}
.x86_c00086{left:324.000000pt;}
.x92_c00086{left:324.960000pt;}
.x16_c00086{left:326.666667pt;}
.x2c_c00086{left:331.626667pt;}
.x9_c00086{left:333.333333pt;}
.x8a_c00086{left:337.333333pt;}
.x71_c00086{left:340.373333pt;}
.x93_c00086{left:341.333333pt;}
.x17_c00086{left:344.960000pt;}
.xa_c00086{left:346.666667pt;}
.xae_c00086{left:348.000000pt;}
.xa2_c00086{left:350.666667pt;}
.xbc_c00086{left:352.000000pt;}
.x2_c00086{left:353.333333pt;}
.x79_c00086{left:356.000000pt;}
.x39_c00086{left:357.333333pt;}
.x44_c00086{left:363.626667pt;}
.x97_c00086{left:366.666667pt;}
.x62_c00086{left:368.000000pt;}
.x87_c00086{left:369.333333pt;}
.x8f_c00086{left:370.666667pt;}
.x72_c00086{left:371.626667pt;}
.x2d_c00086{left:376.000000pt;}
.x24_c00086{left:377.333333pt;}
.x4e_c00086{left:378.666667pt;}
.xb_c00086{left:380.373333pt;}
.x9d_c00086{left:382.666667pt;}
.xab_c00086{left:384.000000pt;}
.xa6_c00086{left:386.666667pt;}
.x8b_c00086{left:388.373333pt;}
.x73_c00086{left:389.706667pt;}
.x7a_c00086{left:391.626667pt;}
.x18_c00086{left:400.000000pt;}
.x5b_c00086{left:401.706667pt;}
.x7b_c00086{left:408.373333pt;}
.x3a_c00086{left:411.040000pt;}
.x74_c00086{left:414.666667pt;}
.x45_c00086{left:419.040000pt;}
.xb0_c00086{left:420.373333pt;}
.x94_c00086{left:423.040000pt;}
.xbd_c00086{left:424.000000pt;}
.x5c_c00086{left:425.706667pt;}
.xc_c00086{left:426.666667pt;}
.x2e_c00086{left:428.000000pt;}
.x7c_c00086{left:432.373333pt;}
.x88_c00086{left:433.333333pt;}
.x68_c00086{left:436.373333pt;}
.x4f_c00086{left:438.666667pt;}
.x3b_c00086{left:440.000000pt;}
.x46_c00086{left:444.000000pt;}
.x63_c00086{left:445.333333pt;}
.x19_c00086{left:448.373333pt;}
.x9a_c00086{left:450.666667pt;}
.xac_c00086{left:452.000000pt;}
.xb3_c00086{left:456.000000pt;}
.x69_c00086{left:461.333333pt;}
.x7d_c00086{left:462.666667pt;}
.x2f_c00086{left:469.333333pt;}
.x50_c00086{left:470.666667pt;}
.xd_c00086{left:473.333333pt;}
.x1a_c00086{left:474.666667pt;}
.x5d_c00086{left:485.706667pt;}
.x9e_c00086{left:486.666667pt;}
.xb1_c00086{left:488.000000pt;}
.x47_c00086{left:488.960000pt;}
.x51_c00086{left:490.293333pt;}
.xa7_c00086{left:492.000000pt;}
.x64_c00086{left:493.333333pt;}
.x3c_c00086{left:500.000000pt;}
.xe_c00086{left:503.040000pt;}
.x95_c00086{left:504.000000pt;}
.x6a_c00086{left:509.333333pt;}
.x3d_c00086{left:510.666667pt;}
.x1b_c00086{left:516.373333pt;}
.x48_c00086{left:517.706667pt;}
.xb9_c00086{left:519.040000pt;}
.x7e_c00086{left:521.333333pt;}
.x52_c00086{left:522.293333pt;}
.xa3_c00086{left:524.000000pt;}
.xf_c00086{left:525.333333pt;}
.xa8_c00086{left:526.666667pt;}
.xbf_c00086{left:528.000000pt;}
.x5e_c00086{left:533.333333pt;}
.x30_c00086{left:534.666667pt;}
.x7f_c00086{left:536.000000pt;}
.x8c_c00086{left:537.333333pt;}
.x53_c00086{left:540.000000pt;}
.x49_c00086{left:543.040000pt;}
.x1c_c00086{left:552.000000pt;}
.x3e_c00086{left:554.666667pt;}
.x31_c00086{left:557.706667pt;}
.x10_c00086{left:558.666667pt;}
.xa4_c00086{left:560.000000pt;}
.xa9_c00086{left:562.666667pt;}
.x6b_c00086{left:564.373333pt;}
.x1d_c00086{left:566.666667pt;}
.x4a_c00086{left:577.333333pt;}
.x11_c00086{left:580.000000pt;}
.x75_c00086{left:585.706667pt;}
.x80_c00086{left:586.666667pt;}
.x8d_c00086{left:587.626667pt;}
.x6c_c00086{left:594.666667pt;}
.xb2_c00086{left:596.000000pt;}
.xad_c00086{left:597.706667pt;}
.x3f_c00086{left:600.000000pt;}
.x65_c00086{left:602.666667pt;}
.x1e_c00086{left:604.373333pt;}
.x54_c00086{left:605.333333pt;}
.x5f_c00086{left:607.040000pt;}
.x32_c00086{left:609.333333pt;}
.x76_c00086{left:610.666667pt;}
.x8e_c00086{left:614.293333pt;}
.x81_c00086{left:621.706667pt;}
.x4b_c00086{left:623.626667pt;}
.x96_c00086{left:625.333333pt;}
.x9c_c00086{left:630.666667pt;}
.x1_c00086{left:631.626667pt;}
.xb4_c00086{left:633.333333pt;}
.xaa_c00086{left:636.000000pt;}
.xc1_c00086{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_095e4340fcd08581ed85d14b.woff2')format("woff");}.ff1_c00087{font-family:ff1_c00087;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00087{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m1e_c00087{transform:matrix(0.371176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371176,0.000000,0.000000,0.250000,0,0);}
.m1c_c00087{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m7_c00087{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m10_c00087{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.m15_c00087{transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);}
.m19_c00087{transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);}
.m2_c00087{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m8_c00087{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m1f_c00087{transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);}
.m14_c00087{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.md_c00087{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m21_c00087{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m18_c00087{transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);}
.m4_c00087{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m13_c00087{transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);}
.mc_c00087{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m1b_c00087{transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);}
.m22_c00087{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.m24_c00087{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);}
.m27_c00087{transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);}
.mb_c00087{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);}
.m20_c00087{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m11_c00087{transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);}
.mf_c00087{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.me_c00087{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m12_c00087{transform:matrix(0.588971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588971,0.000000,0.000000,0.250000,0,0);}
.m23_c00087{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.m1_c00087{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.m25_c00087{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_c00087{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m9_c00087{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);}
.m16_c00087{transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);}
.m26_c00087{transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);}
.m5_c00087{transform:matrix(0.741912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741912,0.000000,0.000000,0.250000,0,0);}
.ma_c00087{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m6_c00087{transform:matrix(0.922907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.922907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.922907,0.000000,0.000000,0.250000,0,0);}
.m1d_c00087{transform:matrix(0.936123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.936123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.936123,0.000000,0.000000,0.250000,0,0);}
.m1a_c00087{transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);}
.m17_c00087{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,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.713497px;}
.ws1_c00087{word-spacing:0.000000px;}
.fc0_c00087{color:transparent;}
.fs5_c00087{font-size:13.620000px;}
.fs3_c00087{font-size:18.720000px;}
.fs1_c00087{font-size:20.400000px;}
.fs4_c00087{font-size:25.500000px;}
.fs6_c00087{font-size:28.920000px;}
.fs2_c00087{font-size:32.340000px;}
.fs0_c00087{font-size:35.700000px;}
.y0_c00087{bottom:0.000000px;}
.yd_c00087{bottom:220.470000px;}
.yc_c00087{bottom:221.550000px;}
.yb_c00087{bottom:221.970000px;}
.ya_c00087{bottom:222.405000px;}
.y5_c00087{bottom:235.470000px;}
.y13_c00087{bottom:235.905000px;}
.y3_c00087{bottom:236.325000px;}
.y9_c00087{bottom:236.550000px;}
.ye_c00087{bottom:236.970000px;}
.y8_c00087{bottom:237.405000px;}
.y4_c00087{bottom:237.630000px;}
.y7_c00087{bottom:238.695000px;}
.y6_c00087{bottom:239.550000px;}
.y12_c00087{bottom:250.905000px;}
.y14_c00087{bottom:251.325000px;}
.y18_c00087{bottom:251.550000px;}
.y1f_c00087{bottom:251.970000px;}
.y17_c00087{bottom:252.405000px;}
.y11_c00087{bottom:252.630000px;}
.y10_c00087{bottom:253.050000px;}
.yf_c00087{bottom:253.470000px;}
.y16_c00087{bottom:253.695000px;}
.y15_c00087{bottom:254.550000px;}
.y21_c00087{bottom:265.050000px;}
.y1b_c00087{bottom:265.470000px;}
.y20_c00087{bottom:265.905000px;}
.y19_c00087{bottom:266.325000px;}
.y25_c00087{bottom:266.550000px;}
.y23_c00087{bottom:266.970000px;}
.y1d_c00087{bottom:267.195000px;}
.y1c_c00087{bottom:267.405000px;}
.y22_c00087{bottom:268.050000px;}
.y1e_c00087{bottom:268.470000px;}
.y1a_c00087{bottom:268.695000px;}
.y24_c00087{bottom:269.550000px;}
.y1_c00087{bottom:1097.745000px;}
.y2_c00087{bottom:1099.050000px;}
.h6_c00087{height:16.752334px;}
.h4_c00087{height:23.025234px;}
.h2_c00087{height:25.091602px;}
.h5_c00087{height:31.364502px;}
.h7_c00087{height:35.571035px;}
.h3_c00087{height:39.777568px;}
.h1_c00087{height:43.910303px;}
.h0_c00087{height:1335.000000px;}
.w0_c00087{width:880.500000px;}
.x0_c00087{left:0.000000px;}
.x28_c00087{left:150.645000px;}
.x1a_c00087{left:151.920000px;}
.x1_c00087{left:154.500000px;}
.x13_c00087{left:169.500000px;}
.x29_c00087{left:182.355000px;}
.x2a_c00087{left:205.500000px;}
.x27_c00087{left:208.080000px;}
.x14_c00087{left:223.500000px;}
.x2b_c00087{left:257.580000px;}
.x1b_c00087{left:268.080000px;}
.x2c_c00087{left:285.000000px;}
.x2d_c00087{left:336.000000px;}
.x3_c00087{left:344.580000px;}
.x1c_c00087{left:352.500000px;}
.x4_c00087{left:378.000000px;}
.xd_c00087{left:379.080000px;}
.x2e_c00087{left:388.920000px;}
.x1d_c00087{left:391.080000px;}
.xe_c00087{left:396.000000px;}
.x2_c00087{left:400.500000px;}
.x1e_c00087{left:412.500000px;}
.xf_c00087{left:423.000000px;}
.x2f_c00087{left:426.420000px;}
.x10_c00087{left:438.000000px;}
.x24_c00087{left:442.080000px;}
.x5_c00087{left:445.500000px;}
.x11_c00087{left:466.920000px;}
.x1f_c00087{left:475.500000px;}
.x12_c00087{left:481.080000px;}
.x6_c00087{left:490.500000px;}
.x15_c00087{left:493.500000px;}
.x7_c00087{left:532.500000px;}
.x25_c00087{left:544.080000px;}
.x16_c00087{left:564.000000px;}
.x20_c00087{left:577.080000px;}
.x8_c00087{left:583.500000px;}
.x17_c00087{left:618.000000px;}
.x21_c00087{left:626.580000px;}
.x9_c00087{left:637.500000px;}
.x22_c00087{left:649.500000px;}
.xa_c00087{left:655.500000px;}
.x18_c00087{left:667.500000px;}
.x23_c00087{left:688.080000px;}
.xb_c00087{left:690.420000px;}
.x19_c00087{left:691.920000px;}
.x26_c00087{left:705.000000px;}
.xc_c00087{left:708.000000px;}
@media print{
.v0_c00087{vertical-align:0.000000pt;}
.ls0_c00087{letter-spacing:0.000000pt;}
.ws0_c00087{word-spacing:-0.634219pt;}
.ws1_c00087{word-spacing:0.000000pt;}
.fs5_c00087{font-size:12.106667pt;}
.fs3_c00087{font-size:16.640000pt;}
.fs1_c00087{font-size:18.133333pt;}
.fs4_c00087{font-size:22.666667pt;}
.fs6_c00087{font-size:25.706667pt;}
.fs2_c00087{font-size:28.746667pt;}
.fs0_c00087{font-size:31.733333pt;}
.y0_c00087{bottom:0.000000pt;}
.yd_c00087{bottom:195.973333pt;}
.yc_c00087{bottom:196.933333pt;}
.yb_c00087{bottom:197.306667pt;}
.ya_c00087{bottom:197.693333pt;}
.y5_c00087{bottom:209.306667pt;}
.y13_c00087{bottom:209.693333pt;}
.y3_c00087{bottom:210.066667pt;}
.y9_c00087{bottom:210.266667pt;}
.ye_c00087{bottom:210.640000pt;}
.y8_c00087{bottom:211.026667pt;}
.y4_c00087{bottom:211.226667pt;}
.y7_c00087{bottom:212.173333pt;}
.y6_c00087{bottom:212.933333pt;}
.y12_c00087{bottom:223.026667pt;}
.y14_c00087{bottom:223.400000pt;}
.y18_c00087{bottom:223.600000pt;}
.y1f_c00087{bottom:223.973333pt;}
.y17_c00087{bottom:224.360000pt;}
.y11_c00087{bottom:224.560000pt;}
.y10_c00087{bottom:224.933333pt;}
.yf_c00087{bottom:225.306667pt;}
.y16_c00087{bottom:225.506667pt;}
.y15_c00087{bottom:226.266667pt;}
.y21_c00087{bottom:235.600000pt;}
.y1b_c00087{bottom:235.973333pt;}
.y20_c00087{bottom:236.360000pt;}
.y19_c00087{bottom:236.733333pt;}
.y25_c00087{bottom:236.933333pt;}
.y23_c00087{bottom:237.306667pt;}
.y1d_c00087{bottom:237.506667pt;}
.y1c_c00087{bottom:237.693333pt;}
.y22_c00087{bottom:238.266667pt;}
.y1e_c00087{bottom:238.640000pt;}
.y1a_c00087{bottom:238.840000pt;}
.y24_c00087{bottom:239.600000pt;}
.y1_c00087{bottom:975.773333pt;}
.y2_c00087{bottom:976.933333pt;}
.h6_c00087{height:14.890964pt;}
.h4_c00087{height:20.466875pt;}
.h2_c00087{height:22.303646pt;}
.h5_c00087{height:27.879557pt;}
.h7_c00087{height:31.618698pt;}
.h3_c00087{height:35.357839pt;}
.h1_c00087{height:39.031380pt;}
.h0_c00087{height:1186.666667pt;}
.w0_c00087{width:782.666667pt;}
.x0_c00087{left:0.000000pt;}
.x28_c00087{left:133.906667pt;}
.x1a_c00087{left:135.040000pt;}
.x1_c00087{left:137.333333pt;}
.x13_c00087{left:150.666667pt;}
.x29_c00087{left:162.093333pt;}
.x2a_c00087{left:182.666667pt;}
.x27_c00087{left:184.960000pt;}
.x14_c00087{left:198.666667pt;}
.x2b_c00087{left:228.960000pt;}
.x1b_c00087{left:238.293333pt;}
.x2c_c00087{left:253.333333pt;}
.x2d_c00087{left:298.666667pt;}
.x3_c00087{left:306.293333pt;}
.x1c_c00087{left:313.333333pt;}
.x4_c00087{left:336.000000pt;}
.xd_c00087{left:336.960000pt;}
.x2e_c00087{left:345.706667pt;}
.x1d_c00087{left:347.626667pt;}
.xe_c00087{left:352.000000pt;}
.x2_c00087{left:356.000000pt;}
.x1e_c00087{left:366.666667pt;}
.xf_c00087{left:376.000000pt;}
.x2f_c00087{left:379.040000pt;}
.x10_c00087{left:389.333333pt;}
.x24_c00087{left:392.960000pt;}
.x5_c00087{left:396.000000pt;}
.x11_c00087{left:415.040000pt;}
.x1f_c00087{left:422.666667pt;}
.x12_c00087{left:427.626667pt;}
.x6_c00087{left:436.000000pt;}
.x15_c00087{left:438.666667pt;}
.x7_c00087{left:473.333333pt;}
.x25_c00087{left:483.626667pt;}
.x16_c00087{left:501.333333pt;}
.x20_c00087{left:512.960000pt;}
.x8_c00087{left:518.666667pt;}
.x17_c00087{left:549.333333pt;}
.x21_c00087{left:556.960000pt;}
.x9_c00087{left:566.666667pt;}
.x22_c00087{left:577.333333pt;}
.xa_c00087{left:582.666667pt;}
.x18_c00087{left:593.333333pt;}
.x23_c00087{left:611.626667pt;}
.xb_c00087{left:613.706667pt;}
.x19_c00087{left:615.040000pt;}
.x26_c00087{left:626.666667pt;}
.xc_c00087{left:629.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b0ab5315f0e47a41a37f2e15.woff2')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:1.688965;font-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_c00088{transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);}
.m32_c00088{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m3e_c00088{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m35_c00088{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m7a_c00088{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m94_c00088{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.mc_c00088{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.ma8_c00088{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m8f_c00088{transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);}
.m6b_c00088{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mb1_c00088{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.me2_c00088{transform:matrix(0.381518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381518,0.000000,0.000000,0.250000,0,0);}
.mad_c00088{transform:matrix(0.384508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384508,0.000000,0.000000,0.250000,0,0);}
.m27_c00088{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m37_c00088{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m5a_c00088{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m1e_c00088{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m1_c00088{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.mc8_c00088{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.md4_c00088{transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);}
.m31_c00088{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.meb_c00088{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m69_c00088{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.mf7_c00088{transform:matrix(0.404908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404908,0.000000,0.000000,0.250000,0,0);}
.mf9_c00088{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.mc0_c00088{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m19_c00088{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m2a_c00088{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.md7_c00088{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.ma3_c00088{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.mfb_c00088{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m76_c00088{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.me6_c00088{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.me_c00088{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.mbb_c00088{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m84_c00088{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m72_c00088{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m14_c00088{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m5_c00088{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m3d_c00088{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mdc_c00088{transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);}
.m70_c00088{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m51_c00088{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m6a_c00088{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mb8_c00088{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m6e_c00088{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.maf_c00088{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m53_c00088{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m44_c00088{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.mf4_c00088{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m71_c00088{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m46_c00088{transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);}
.m6d_c00088{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.mab_c00088{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m8a_c00088{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m2_c00088{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.mbd_c00088{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mf_c00088{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.me1_c00088{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m52_c00088{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m55_c00088{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m82_c00088{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.ma4_c00088{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m7d_c00088{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.m12_c00088{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.mb_c00088{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m41_c00088{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m1f_c00088{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.md5_c00088{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.mcd_c00088{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.mf5_c00088{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mbc_c00088{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m20_c00088{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m57_c00088{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m50_c00088{transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);}
.m59_c00088{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m2d_c00088{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.mbe_c00088{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.mb5_c00088{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.ma9_c00088{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.mee_c00088{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m6c_c00088{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m6_c00088{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mc1_c00088{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.mf1_c00088{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m4b_c00088{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.mb7_c00088{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m45_c00088{transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);}
.m5b_c00088{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m1a_c00088{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mcc_c00088{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m97_c00088{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m75_c00088{transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);}
.mc4_c00088{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.ma5_c00088{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.mb9_c00088{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.m3_c00088{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.mf6_c00088{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.mf3_c00088{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.mdd_c00088{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.m49_c00088{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.md2_c00088{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.m30_c00088{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.m74_c00088{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mc3_c00088{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m91_c00088{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m10_c00088{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m39_c00088{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m33_c00088{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m11_c00088{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.mef_c00088{transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);}
.m3a_c00088{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m86_c00088{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m42_c00088{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m16_c00088{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);}
.med_c00088{transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);}
.mca_c00088{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m7f_c00088{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mcf_c00088{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.mf2_c00088{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m3f_c00088{transform:matrix(0.506494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506494,0.000000,0.000000,0.250000,0,0);}
.md1_c00088{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m90_c00088{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.ma1_c00088{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m34_c00088{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mae_c00088{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.md6_c00088{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.me0_c00088{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m88_c00088{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mba_c00088{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.me7_c00088{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m23_c00088{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.me4_c00088{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.mce_c00088{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m2e_c00088{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m4f_c00088{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m83_c00088{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m8e_c00088{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m48_c00088{transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);}
.mf0_c00088{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m8d_c00088{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m4a_c00088{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m6f_c00088{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.mb0_c00088{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mdb_c00088{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m56_c00088{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.ma_c00088{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m38_c00088{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m62_c00088{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.mc6_c00088{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m28_c00088{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m93_c00088{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m18_c00088{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m65_c00088{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m61_c00088{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m67_c00088{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m89_c00088{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m13_c00088{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m77_c00088{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m9a_c00088{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.me3_c00088{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m66_c00088{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m15_c00088{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mb6_c00088{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m22_c00088{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mcb_c00088{transform:matrix(0.546474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546474,0.000000,0.000000,0.250000,0,0);}
.m99_c00088{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.mfa_c00088{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.md9_c00088{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m1d_c00088{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m85_c00088{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.ma2_c00088{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m7_c00088{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mde_c00088{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m68_c00088{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mc7_c00088{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mb4_c00088{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m24_c00088{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mea_c00088{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m95_c00088{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.m2c_c00088{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m3c_c00088{transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);}
.m1b_c00088{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.me8_c00088{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m80_c00088{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m79_c00088{transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);}
.m5c_c00088{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m7c_c00088{transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);}
.m21_c00088{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mbf_c00088{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m4d_c00088{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.md3_c00088{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mf8_c00088{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m7b_c00088{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m78_c00088{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.ma0_c00088{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m9b_c00088{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_c00088{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.me5_c00088{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m98_c00088{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m64_c00088{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m36_c00088{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m9d_c00088{transform:matrix(0.584559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584559,0.000000,0.000000,0.250000,0,0);}
.m47_c00088{transform:matrix(0.587340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587340,0.000000,0.000000,0.250000,0,0);}
.mda_c00088{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.mdf_c00088{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m8_c00088{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.ma6_c00088{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.mfc_c00088{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.m63_c00088{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m58_c00088{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m4_c00088{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);}
.m60_c00088{transform:matrix(0.607059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607059,0.000000,0.000000,0.250000,0,0);}
.m26_c00088{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m0_c00088{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.m2b_c00088{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mfd_c00088{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.m7e_c00088{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m9c_c00088{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.mb3_c00088{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.md8_c00088{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m96_c00088{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m9_c00088{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.mc2_c00088{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.m5f_c00088{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.maa_c00088{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.me9_c00088{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.mb2_c00088{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m43_c00088{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.md_c00088{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m8c_c00088{transform:matrix(0.675294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675294,0.000000,0.000000,0.250000,0,0);}
.m4c_c00088{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.m9e_c00088{transform:matrix(0.683088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683088,0.000000,0.000000,0.250000,0,0);}
.m5e_c00088{transform:matrix(0.698824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698824,0.000000,0.000000,0.250000,0,0);}
.m9f_c00088{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.ma7_c00088{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.mac_c00088{transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);}
.mec_c00088{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m73_c00088{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m54_c00088{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m81_c00088{transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);}
.m1c_c00088{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m29_c00088{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m3b_c00088{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m17_c00088{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.md0_c00088{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mc5_c00088{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.mc9_c00088{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m40_c00088{transform:matrix(0.814103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.814103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.814103,0.000000,0.000000,0.250000,0,0);}
.m87_c00088{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m8b_c00088{transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);}
.m92_c00088{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m5d_c00088{transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);}
.m2f_c00088{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00088{vertical-align:0.000000px;}
.v1_c00088{vertical-align:1.680000px;}
.ls1_c00088{letter-spacing:0.000000px;}
.ls0_c00088{letter-spacing:14.817600px;}
.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;}
}
.ws1_c00088{word-spacing:-8.811328px;}
.ws0_c00088{word-spacing:-5.256022px;}
.ws2_c00088{word-spacing:0.000000px;}
.fc0_c00088{color:transparent;}
.fs6_c00088{font-size:3.420000px;}
.fs7_c00088{font-size:13.620000px;}
.fs5_c00088{font-size:18.720000px;}
.fs0_c00088{font-size:20.400000px;}
.fs4_c00088{font-size:25.500000px;}
.fs3_c00088{font-size:28.920000px;}
.fs1_c00088{font-size:32.340000px;}
.fs2_c00088{font-size:35.700000px;}
.fs8_c00088{font-size:39.120000px;}
.y0_c00088{bottom:0.000000px;}
.ycb_c00088{bottom:250.905000px;}
.ycd_c00088{bottom:251.745000px;}
.ycc_c00088{bottom:253.905000px;}
.yce_c00088{bottom:254.130000px;}
.ycf_c00088{bottom:254.970000px;}
.yca_c00088{bottom:256.905000px;}
.yc7_c00088{bottom:272.325000px;}
.yc9_c00088{bottom:272.745000px;}
.yc5_c00088{bottom:273.180000px;}
.yc6_c00088{bottom:273.405000px;}
.yc8_c00088{bottom:274.470000px;}
.yc2_c00088{bottom:292.245000px;}
.yc4_c00088{bottom:293.130000px;}
.yc1_c00088{bottom:293.745000px;}
.yc3_c00088{bottom:294.405000px;}
.ybe_c00088{bottom:312.630000px;}
.ybf_c00088{bottom:312.825000px;}
.yc0_c00088{bottom:313.245000px;}
.ybd_c00088{bottom:313.905000px;}
.ybc_c00088{bottom:315.405000px;}
.yb8_c00088{bottom:331.245000px;}
.yb9_c00088{bottom:332.325000px;}
.yb5_c00088{bottom:332.745000px;}
.yb6_c00088{bottom:333.405000px;}
.yb7_c00088{bottom:333.630000px;}
.yba_c00088{bottom:334.470000px;}
.ybb_c00088{bottom:334.905000px;}
.yb1_c00088{bottom:349.905000px;}
.yb3_c00088{bottom:350.745000px;}
.yb2_c00088{bottom:352.905000px;}
.yb0_c00088{bottom:353.325000px;}
.yb4_c00088{bottom:353.970000px;}
.yad_c00088{bottom:370.680000px;}
.yab_c00088{bottom:371.745000px;}
.yac_c00088{bottom:372.405000px;}
.yaf_c00088{bottom:372.630000px;}
.yae_c00088{bottom:373.470000px;}
.yaa_c00088{bottom:391.245000px;}
.ya9_c00088{bottom:393.405000px;}
.ya7_c00088{bottom:410.325000px;}
.ya8_c00088{bottom:410.745000px;}
.ya6_c00088{bottom:412.470000px;}
.ya5_c00088{bottom:412.905000px;}
.ya4_c00088{bottom:413.130000px;}
.y9e_c00088{bottom:430.245000px;}
.y9f_c00088{bottom:431.130000px;}
.ya3_c00088{bottom:431.325000px;}
.ya2_c00088{bottom:431.970000px;}
.ya0_c00088{bottom:432.405000px;}
.ya1_c00088{bottom:433.470000px;}
.y9a_c00088{bottom:449.325000px;}
.y9c_c00088{bottom:449.745000px;}
.y9d_c00088{bottom:450.630000px;}
.y9b_c00088{bottom:450.825000px;}
.y99_c00088{bottom:451.905000px;}
.y98_c00088{bottom:452.970000px;}
.y97_c00088{bottom:468.825000px;}
.y95_c00088{bottom:469.245000px;}
.y94_c00088{bottom:470.325000px;}
.y93_c00088{bottom:471.405000px;}
.y96_c00088{bottom:471.630000px;}
.y92_c00088{bottom:490.245000px;}
.y8f_c00088{bottom:490.470000px;}
.y90_c00088{bottom:490.905000px;}
.y91_c00088{bottom:491.130000px;}
.y8e_c00088{bottom:492.405000px;}
.y88_c00088{bottom:508.245000px;}
.y89_c00088{bottom:508.905000px;}
.y8d_c00088{bottom:509.325000px;}
.y8b_c00088{bottom:509.745000px;}
.y8a_c00088{bottom:510.405000px;}
.y8c_c00088{bottom:510.630000px;}
.y87_c00088{bottom:511.905000px;}
.y83_c00088{bottom:527.970000px;}
.y86_c00088{bottom:528.825000px;}
.y85_c00088{bottom:529.245000px;}
.y82_c00088{bottom:530.130000px;}
.y84_c00088{bottom:530.325000px;}
.y81_c00088{bottom:531.405000px;}
.y7f_c00088{bottom:547.470000px;}
.y7d_c00088{bottom:547.905000px;}
.y7a_c00088{bottom:548.745000px;}
.y80_c00088{bottom:549.630000px;}
.y7e_c00088{bottom:550.470000px;}
.y7c_c00088{bottom:550.905000px;}
.y7b_c00088{bottom:550.920000px;}
.y78_c00088{bottom:573.825000px;}
.y79_c00088{bottom:575.970000px;}
.y72_c00088{bottom:587.970000px;}
.y76_c00088{bottom:588.825000px;}
.y73_c00088{bottom:589.905000px;}
.y75_c00088{bottom:590.130000px;}
.y74_c00088{bottom:590.970000px;}
.y77_c00088{bottom:592.050000px;}
.y71_c00088{bottom:603.825000px;}
.y70_c00088{bottom:605.970000px;}
.y6d_c00088{bottom:619.050000px;}
.y6c_c00088{bottom:619.470000px;}
.y6e_c00088{bottom:619.905000px;}
.y6b_c00088{bottom:620.130000px;}
.y6f_c00088{bottom:622.050000px;}
.y6a_c00088{bottom:633.405000px;}
.y69_c00088{bottom:635.550000px;}
.y66_c00088{bottom:647.325000px;}
.y68_c00088{bottom:647.550000px;}
.y65_c00088{bottom:648.405000px;}
.y63_c00088{bottom:648.630000px;}
.y64_c00088{bottom:649.470000px;}
.y67_c00088{bottom:649.695000px;}
.y62_c00088{bottom:671.745000px;}
.y61_c00088{bottom:673.905000px;}
.y5f_c00088{bottom:691.245000px;}
.y5d_c00088{bottom:693.405000px;}
.y5e_c00088{bottom:693.630000px;}
.y5c_c00088{bottom:694.470000px;}
.y60_c00088{bottom:694.905000px;}
.y56_c00088{bottom:710.745000px;}
.y59_c00088{bottom:710.970000px;}
.y5b_c00088{bottom:711.825000px;}
.y57_c00088{bottom:712.905000px;}
.y5a_c00088{bottom:713.130000px;}
.y58_c00088{bottom:713.970000px;}
.y53_c00088{bottom:730.245000px;}
.y55_c00088{bottom:731.325000px;}
.y52_c00088{bottom:732.405000px;}
.y54_c00088{bottom:732.630000px;}
.y51_c00088{bottom:749.745000px;}
.y4e_c00088{bottom:751.245000px;}
.y4b_c00088{bottom:751.905000px;}
.y4f_c00088{bottom:752.130000px;}
.y4c_c00088{bottom:752.325000px;}
.y50_c00088{bottom:753.405000px;}
.y4d_c00088{bottom:753.420000px;}
.y4a_c00088{bottom:768.405000px;}
.y49_c00088{bottom:769.905000px;}
.y48_c00088{bottom:770.745000px;}
.y46_c00088{bottom:771.405000px;}
.y45_c00088{bottom:772.470000px;}
.y47_c00088{bottom:772.905000px;}
.y44_c00088{bottom:790.245000px;}
.y42_c00088{bottom:791.970000px;}
.y40_c00088{bottom:792.405000px;}
.y41_c00088{bottom:792.420000px;}
.y43_c00088{bottom:793.470000px;}
.y3b_c00088{bottom:807.405000px;}
.y38_c00088{bottom:808.245000px;}
.y3c_c00088{bottom:808.470000px;}
.y3f_c00088{bottom:808.905000px;}
.y3a_c00088{bottom:809.325000px;}
.y3d_c00088{bottom:809.745000px;}
.y3e_c00088{bottom:810.825000px;}
.y39_c00088{bottom:811.920000px;}
.y33_c00088{bottom:827.745000px;}
.y34_c00088{bottom:829.245000px;}
.y36_c00088{bottom:830.130000px;}
.y37_c00088{bottom:831.405000px;}
.y35_c00088{bottom:831.420000px;}
.y32_c00088{bottom:856.470000px;}
.y2d_c00088{bottom:856.905000px;}
.y2e_c00088{bottom:857.130000px;}
.y31_c00088{bottom:857.325000px;}
.y2f_c00088{bottom:857.970000px;}
.y30_c00088{bottom:859.050000px;}
.y2c_c00088{bottom:875.325000px;}
.y2a_c00088{bottom:876.405000px;}
.y2b_c00088{bottom:876.630000px;}
.y29_c00088{bottom:901.905000px;}
.y27_c00088{bottom:903.825000px;}
.y28_c00088{bottom:905.130000px;}
.y25_c00088{bottom:940.905000px;}
.y23_c00088{bottom:941.745000px;}
.y24_c00088{bottom:943.905000px;}
.y26_c00088{bottom:944.130000px;}
.y1e_c00088{bottom:961.245000px;}
.y1d_c00088{bottom:962.325000px;}
.y22_c00088{bottom:962.550000px;}
.y1f_c00088{bottom:962.745000px;}
.y1b_c00088{bottom:963.405000px;}
.y20_c00088{bottom:963.630000px;}
.y21_c00088{bottom:964.905000px;}
.y1c_c00088{bottom:964.920000px;}
.y1a_c00088{bottom:981.405000px;}
.y19_c00088{bottom:984.405000px;}
.y17_c00088{bottom:1001.745000px;}
.y13_c00088{bottom:1002.405000px;}
.y18_c00088{bottom:1002.630000px;}
.y15_c00088{bottom:1003.470000px;}
.y14_c00088{bottom:1003.905000px;}
.y16_c00088{bottom:1004.970000px;}
.y12_c00088{bottom:1020.825000px;}
.yf_c00088{bottom:1021.245000px;}
.y11_c00088{bottom:1022.130000px;}
.y10_c00088{bottom:1023.405000px;}
.yd_c00088{bottom:1039.905000px;}
.yb_c00088{bottom:1040.745000px;}
.yc_c00088{bottom:1041.825000px;}
.y9_c00088{bottom:1042.470000px;}
.ya_c00088{bottom:1042.905000px;}
.ye_c00088{bottom:1043.130000px;}
.y4_c00088{bottom:1057.905000px;}
.y6_c00088{bottom:1059.825000px;}
.y3_c00088{bottom:1060.245000px;}
.y8_c00088{bottom:1061.745000px;}
.y7_c00088{bottom:1062.405000px;}
.y5_c00088{bottom:1063.470000px;}
.y2_c00088{bottom:1098.825000px;}
.y1_c00088{bottom:1100.550000px;}
.h7_c00088{height:4.206533px;}
.h8_c00088{height:16.752334px;}
.h6_c00088{height:23.025234px;}
.h1_c00088{height:25.091602px;}
.h5_c00088{height:31.364502px;}
.h9_c00088{height:33.044502px;}
.h4_c00088{height:35.571035px;}
.h2_c00088{height:39.777568px;}
.h3_c00088{height:43.910303px;}
.ha_c00088{height:48.116836px;}
.h0_c00088{height:1335.000000px;}
.w0_c00088{width:880.500000px;}
.x0_c00088{left:0.000000px;}
.x3_c00088{left:151.500000px;}
.xb8_c00088{left:153.000000px;}
.x25_c00088{left:166.500000px;}
.x55_c00088{left:168.420000px;}
.x67_c00088{left:170.145000px;}
.xcf_c00088{left:171.420000px;}
.xe_c00088{left:172.920000px;}
.xd7_c00088{left:175.920000px;}
.x89_c00088{left:178.500000px;}
.xe0_c00088{left:180.420000px;}
.x9e_c00088{left:181.920000px;}
.x95_c00088{left:183.000000px;}
.xa3_c00088{left:187.080000px;}
.xc1_c00088{left:192.000000px;}
.x31_c00088{left:194.580000px;}
.x84_c00088{left:196.500000px;}
.x26_c00088{left:197.580000px;}
.xb9_c00088{left:199.080000px;}
.xf_c00088{left:201.000000px;}
.x3e_c00088{left:202.500000px;}
.xd8_c00088{left:205.920000px;}
.x56_c00088{left:208.920000px;}
.xa8_c00088{left:210.000000px;}
.xf8_c00088{left:211.920000px;}
.x7a_c00088{left:214.080000px;}
.xa4_c00088{left:216.000000px;}
.xb5_c00088{left:217.500000px;}
.x96_c00088{left:222.645000px;}
.x91_c00088{left:223.920000px;}
.x68_c00088{left:225.000000px;}
.xcb_c00088{left:228.420000px;}
.x4_c00088{left:230.580000px;}
.xf5_c00088{left:232.500000px;}
.xe1_c00088{left:234.000000px;}
.xd1_c00088{left:235.920000px;}
.x32_c00088{left:237.000000px;}
.xff_c00088{left:238.920000px;}
.x4d_c00088{left:240.420000px;}
.xc2_c00088{left:241.920000px;}
.xa9_c00088{left:245.580000px;}
.xf9_c00088{left:247.920000px;}
.xba_c00088{left:249.420000px;}
.x92_c00088{left:250.920000px;}
.x71_c00088{left:252.000000px;}
.xd9_c00088{left:253.500000px;}
.xab_c00088{left:255.000000px;}
.x33_c00088{left:256.500000px;}
.x27_c00088{left:257.580000px;}
.x62_c00088{left:259.500000px;}
.x97_c00088{left:265.920000px;}
.x57_c00088{left:267.000000px;}
.x3f_c00088{left:268.920000px;}
.x7b_c00088{left:271.500000px;}
.xaa_c00088{left:273.000000px;}
.xee_c00088{left:274.920000px;}
.x72_c00088{left:276.000000px;}
.xd2_c00088{left:277.500000px;}
.x69_c00088{left:278.580000px;}
.x5a_c00088{left:280.500000px;}
.x63_c00088{left:281.580000px;}
.x1c_c00088{left:283.500000px;}
.x28_c00088{left:288.000000px;}
.x34_c00088{left:289.500000px;}
.xe5_c00088{left:291.420000px;}
.x7c_c00088{left:294.420000px;}
.xeb_c00088{left:295.500000px;}
.x4e_c00088{left:298.500000px;}
.x47_c00088{left:300.000000px;}
.xc3_c00088{left:301.500000px;}
.x10_c00088{left:303.000000px;}
.x5_c00088{left:304.500000px;}
.x40_c00088{left:306.000000px;}
.xda_c00088{left:307.080000px;}
.x1d_c00088{left:309.000000px;}
.xcc_c00088{left:310.500000px;}
.xef_c00088{left:313.500000px;}
.xfa_c00088{left:314.580000px;}
.xe6_c00088{left:316.920000px;}
.x93_c00088{left:318.000000px;}
.xd3_c00088{left:319.920000px;}
.x7d_c00088{left:322.500000px;}
.x1e_c00088{left:324.420000px;}
.x29_c00088{left:325.500000px;}
.x4a_c00088{left:327.000000px;}
.x8a_c00088{left:328.080000px;}
.x9f_c00088{left:330.000000px;}
.xac_c00088{left:332.580000px;}
.x64_c00088{left:334.500000px;}
.x6_c00088{left:336.000000px;}
.xc4_c00088{left:339.420000px;}
.xa5_c00088{left:340.500000px;}
.x98_c00088{left:342.000000px;}
.x41_c00088{left:345.000000px;}
.x11_c00088{left:346.500000px;}
.x73_c00088{left:348.000000px;}
.x8b_c00088{left:349.920000px;}
.xad_c00088{left:352.920000px;}
.x58_c00088{left:354.000000px;}
.xdb_c00088{left:355.500000px;}
.x4f_c00088{left:357.420000px;}
.xbb_c00088{left:361.500000px;}
.x35_c00088{left:362.580000px;}
.x12_c00088{left:363.855000px;}
.x99_c00088{left:366.000000px;}
.xc5_c00088{left:367.080000px;}
.x74_c00088{left:369.000000px;}
.x8c_c00088{left:372.420000px;}
.x59_c00088{left:376.920000px;}
.xec_c00088{left:378.420000px;}
.x36_c00088{left:379.920000px;}
.x1f_c00088{left:381.000000px;}
.x7e_c00088{left:382.920000px;}
.x4b_c00088{left:384.000000px;}
.x5b_c00088{left:388.500000px;}
.x7_c00088{left:393.000000px;}
.x6a_c00088{left:395.580000px;}
.x1_c00088{left:397.500000px;}
.x50_c00088{left:399.000000px;}
.x48_c00088{left:400.920000px;}
.x20_c00088{left:403.500000px;}
.x75_c00088{left:405.000000px;}
.x37_c00088{left:406.500000px;}
.xf6_c00088{left:409.920000px;}
.xae_c00088{left:412.920000px;}
.xbc_c00088{left:415.920000px;}
.x21_c00088{left:417.000000px;}
.x94_c00088{left:418.080000px;}
.xe2_c00088{left:421.500000px;}
.x5c_c00088{left:423.000000px;}
.x13_c00088{left:424.920000px;}
.xb6_c00088{left:427.500000px;}
.xfb_c00088{left:429.420000px;}
.x42_c00088{left:431.580000px;}
.xcd_c00088{left:433.920000px;}
.x8_c00088{left:435.000000px;}
.xf7_c00088{left:439.080000px;}
.x9a_c00088{left:440.145000px;}
.x101_c00088{left:442.500000px;}
.x2a_c00088{left:444.000000px;}
.x51_c00088{left:445.500000px;}
.x6b_c00088{left:446.580000px;}
.x22_c00088{left:450.420000px;}
.xbd_c00088{left:451.920000px;}
.x85_c00088{left:453.420000px;}
.xfc_c00088{left:454.500000px;}
.xa0_c00088{left:456.000000px;}
.x76_c00088{left:459.000000px;}
.x38_c00088{left:460.500000px;}
.xe7_c00088{left:462.420000px;}
.x7f_c00088{left:464.580000px;}
.x8d_c00088{left:466.500000px;}
.xb7_c00088{left:468.000000px;}
.x2b_c00088{left:471.000000px;}
.xaf_c00088{left:472.920000px;}
.xd4_c00088{left:474.420000px;}
.x43_c00088{left:477.420000px;}
.xbe_c00088{left:478.920000px;}
.x9_c00088{left:481.080000px;}
.x9b_c00088{left:483.000000px;}
.x14_c00088{left:484.500000px;}
.x4c_c00088{left:486.000000px;}
.x5d_c00088{left:488.775000px;}
.x77_c00088{left:493.920000px;}
.xf0_c00088{left:496.080000px;}
.x8e_c00088{left:499.080000px;}
.xfd_c00088{left:502.080000px;}
.x15_c00088{left:504.420000px;}
.xc6_c00088{left:505.500000px;}
.x52_c00088{left:507.000000px;}
.xa1_c00088{left:510.000000px;}
.x39_c00088{left:511.500000px;}
.x80_c00088{left:514.500000px;}
.x65_c00088{left:516.420000px;}
.x6c_c00088{left:519.420000px;}
.x23_c00088{left:523.920000px;}
.xdc_c00088{left:525.000000px;}
.x5e_c00088{left:528.000000px;}
.xd5_c00088{left:529.500000px;}
.x78_c00088{left:530.580000px;}
.x86_c00088{left:535.080000px;}
.x100_c00088{left:537.000000px;}
.x53_c00088{left:538.500000px;}
.xa_c00088{left:540.000000px;}
.x3a_c00088{left:541.920000px;}
.x2c_c00088{left:543.420000px;}
.xf1_c00088{left:544.920000px;}
.xdd_c00088{left:546.420000px;}
.xb0_c00088{left:547.500000px;}
.xce_c00088{left:549.000000px;}
.x8f_c00088{left:550.500000px;}
.x49_c00088{left:552.420000px;}
.x16_c00088{left:553.920000px;}
.x5f_c00088{left:556.500000px;}
.xc7_c00088{left:558.420000px;}
.x6d_c00088{left:560.580000px;}
.xa6_c00088{left:563.580000px;}
.xbf_c00088{left:565.920000px;}
.xb1_c00088{left:567.000000px;}
.x44_c00088{left:569.580000px;}
.x81_c00088{left:573.420000px;}
.xde_c00088{left:574.920000px;}
.xe3_c00088{left:576.000000px;}
.xb_c00088{left:577.920000px;}
.x2d_c00088{left:580.080000px;}
.xc0_c00088{left:585.000000px;}
.x45_c00088{left:588.420000px;}
.x17_c00088{left:592.080000px;}
.xed_c00088{left:595.500000px;}
.x54_c00088{left:598.080000px;}
.xb2_c00088{left:600.000000px;}
.xe8_c00088{left:601.500000px;}
.xc_c00088{left:604.500000px;}
.xc8_c00088{left:606.000000px;}
.x9c_c00088{left:607.080000px;}
.x3b_c00088{left:609.000000px;}
.x24_c00088{left:610.500000px;}
.x87_c00088{left:611.580000px;}
.x102_c00088{left:613.080000px;}
.x46_c00088{left:615.000000px;}
.x60_c00088{left:617.775000px;}
.x18_c00088{left:619.500000px;}
.xe9_c00088{left:620.580000px;}
.x90_c00088{left:627.000000px;}
.x6e_c00088{left:628.500000px;}
.xe4_c00088{left:630.000000px;}
.x3c_c00088{left:631.500000px;}
.x82_c00088{left:634.500000px;}
.xd6_c00088{left:637.500000px;}
.x79_c00088{left:638.580000px;}
.x19_c00088{left:640.080000px;}
.x6f_c00088{left:646.920000px;}
.x2e_c00088{left:649.500000px;}
.xf2_c00088{left:651.000000px;}
.xfe_c00088{left:652.500000px;}
.xdf_c00088{left:653.580000px;}
.x61_c00088{left:658.500000px;}
.xc9_c00088{left:661.080000px;}
.x83_c00088{left:663.000000px;}
.x1a_c00088{left:664.500000px;}
.xa2_c00088{left:666.000000px;}
.x66_c00088{left:670.080000px;}
.x70_c00088{left:672.000000px;}
.x2f_c00088{left:673.920000px;}
.xa7_c00088{left:675.000000px;}
.xf3_c00088{left:679.500000px;}
.xca_c00088{left:681.420000px;}
.xd_c00088{left:686.580000px;}
.xb3_c00088{left:689.580000px;}
.x9d_c00088{left:692.355000px;}
.x88_c00088{left:697.500000px;}
.x1b_c00088{left:702.000000px;}
.xd0_c00088{left:706.080000px;}
.xb4_c00088{left:709.500000px;}
.x2_c00088{left:712.500000px;}
.x30_c00088{left:715.500000px;}
.xf4_c00088{left:718.080000px;}
.xea_c00088{left:723.000000px;}
.x3d_c00088{left:724.080000px;}
@media print{
.v0_c00088{vertical-align:0.000000pt;}
.v1_c00088{vertical-align:1.493333pt;}
.ls1_c00088{letter-spacing:0.000000pt;}
.ls0_c00088{letter-spacing:13.171200pt;}
.ws1_c00088{word-spacing:-7.832291pt;}
.ws0_c00088{word-spacing:-4.672020pt;}
.ws2_c00088{word-spacing:0.000000pt;}
.fs6_c00088{font-size:3.040000pt;}
.fs7_c00088{font-size:12.106667pt;}
.fs5_c00088{font-size:16.640000pt;}
.fs0_c00088{font-size:18.133333pt;}
.fs4_c00088{font-size:22.666667pt;}
.fs3_c00088{font-size:25.706667pt;}
.fs1_c00088{font-size:28.746667pt;}
.fs2_c00088{font-size:31.733333pt;}
.fs8_c00088{font-size:34.773333pt;}
.y0_c00088{bottom:0.000000pt;}
.ycb_c00088{bottom:223.026667pt;}
.ycd_c00088{bottom:223.773333pt;}
.ycc_c00088{bottom:225.693333pt;}
.yce_c00088{bottom:225.893333pt;}
.ycf_c00088{bottom:226.640000pt;}
.yca_c00088{bottom:228.360000pt;}
.yc7_c00088{bottom:242.066667pt;}
.yc9_c00088{bottom:242.440000pt;}
.yc5_c00088{bottom:242.826667pt;}
.yc6_c00088{bottom:243.026667pt;}
.yc8_c00088{bottom:243.973333pt;}
.yc2_c00088{bottom:259.773333pt;}
.yc4_c00088{bottom:260.560000pt;}
.yc1_c00088{bottom:261.106667pt;}
.yc3_c00088{bottom:261.693333pt;}
.ybe_c00088{bottom:277.893333pt;}
.ybf_c00088{bottom:278.066667pt;}
.yc0_c00088{bottom:278.440000pt;}
.ybd_c00088{bottom:279.026667pt;}
.ybc_c00088{bottom:280.360000pt;}
.yb8_c00088{bottom:294.440000pt;}
.yb9_c00088{bottom:295.400000pt;}
.yb5_c00088{bottom:295.773333pt;}
.yb6_c00088{bottom:296.360000pt;}
.yb7_c00088{bottom:296.560000pt;}
.yba_c00088{bottom:297.306667pt;}
.ybb_c00088{bottom:297.693333pt;}
.yb1_c00088{bottom:311.026667pt;}
.yb3_c00088{bottom:311.773333pt;}
.yb2_c00088{bottom:313.693333pt;}
.yb0_c00088{bottom:314.066667pt;}
.yb4_c00088{bottom:314.640000pt;}
.yad_c00088{bottom:329.493333pt;}
.yab_c00088{bottom:330.440000pt;}
.yac_c00088{bottom:331.026667pt;}
.yaf_c00088{bottom:331.226667pt;}
.yae_c00088{bottom:331.973333pt;}
.yaa_c00088{bottom:347.773333pt;}
.ya9_c00088{bottom:349.693333pt;}
.ya7_c00088{bottom:364.733333pt;}
.ya8_c00088{bottom:365.106667pt;}
.ya6_c00088{bottom:366.640000pt;}
.ya5_c00088{bottom:367.026667pt;}
.ya4_c00088{bottom:367.226667pt;}
.y9e_c00088{bottom:382.440000pt;}
.y9f_c00088{bottom:383.226667pt;}
.ya3_c00088{bottom:383.400000pt;}
.ya2_c00088{bottom:383.973333pt;}
.ya0_c00088{bottom:384.360000pt;}
.ya1_c00088{bottom:385.306667pt;}
.y9a_c00088{bottom:399.400000pt;}
.y9c_c00088{bottom:399.773333pt;}
.y9d_c00088{bottom:400.560000pt;}
.y9b_c00088{bottom:400.733333pt;}
.y99_c00088{bottom:401.693333pt;}
.y98_c00088{bottom:402.640000pt;}
.y97_c00088{bottom:416.733333pt;}
.y95_c00088{bottom:417.106667pt;}
.y94_c00088{bottom:418.066667pt;}
.y93_c00088{bottom:419.026667pt;}
.y96_c00088{bottom:419.226667pt;}
.y92_c00088{bottom:435.773333pt;}
.y8f_c00088{bottom:435.973333pt;}
.y90_c00088{bottom:436.360000pt;}
.y91_c00088{bottom:436.560000pt;}
.y8e_c00088{bottom:437.693333pt;}
.y88_c00088{bottom:451.773333pt;}
.y89_c00088{bottom:452.360000pt;}
.y8d_c00088{bottom:452.733333pt;}
.y8b_c00088{bottom:453.106667pt;}
.y8a_c00088{bottom:453.693333pt;}
.y8c_c00088{bottom:453.893333pt;}
.y87_c00088{bottom:455.026667pt;}
.y83_c00088{bottom:469.306667pt;}
.y86_c00088{bottom:470.066667pt;}
.y85_c00088{bottom:470.440000pt;}
.y82_c00088{bottom:471.226667pt;}
.y84_c00088{bottom:471.400000pt;}
.y81_c00088{bottom:472.360000pt;}
.y7f_c00088{bottom:486.640000pt;}
.y7d_c00088{bottom:487.026667pt;}
.y7a_c00088{bottom:487.773333pt;}
.y80_c00088{bottom:488.560000pt;}
.y7e_c00088{bottom:489.306667pt;}
.y7c_c00088{bottom:489.693333pt;}
.y7b_c00088{bottom:489.706667pt;}
.y78_c00088{bottom:510.066667pt;}
.y79_c00088{bottom:511.973333pt;}
.y72_c00088{bottom:522.640000pt;}
.y76_c00088{bottom:523.400000pt;}
.y73_c00088{bottom:524.360000pt;}
.y75_c00088{bottom:524.560000pt;}
.y74_c00088{bottom:525.306667pt;}
.y77_c00088{bottom:526.266667pt;}
.y71_c00088{bottom:536.733333pt;}
.y70_c00088{bottom:538.640000pt;}
.y6d_c00088{bottom:550.266667pt;}
.y6c_c00088{bottom:550.640000pt;}
.y6e_c00088{bottom:551.026667pt;}
.y6b_c00088{bottom:551.226667pt;}
.y6f_c00088{bottom:552.933333pt;}
.y6a_c00088{bottom:563.026667pt;}
.y69_c00088{bottom:564.933333pt;}
.y66_c00088{bottom:575.400000pt;}
.y68_c00088{bottom:575.600000pt;}
.y65_c00088{bottom:576.360000pt;}
.y63_c00088{bottom:576.560000pt;}
.y64_c00088{bottom:577.306667pt;}
.y67_c00088{bottom:577.506667pt;}
.y62_c00088{bottom:597.106667pt;}
.y61_c00088{bottom:599.026667pt;}
.y5f_c00088{bottom:614.440000pt;}
.y5d_c00088{bottom:616.360000pt;}
.y5e_c00088{bottom:616.560000pt;}
.y5c_c00088{bottom:617.306667pt;}
.y60_c00088{bottom:617.693333pt;}
.y56_c00088{bottom:631.773333pt;}
.y59_c00088{bottom:631.973333pt;}
.y5b_c00088{bottom:632.733333pt;}
.y57_c00088{bottom:633.693333pt;}
.y5a_c00088{bottom:633.893333pt;}
.y58_c00088{bottom:634.640000pt;}
.y53_c00088{bottom:649.106667pt;}
.y55_c00088{bottom:650.066667pt;}
.y52_c00088{bottom:651.026667pt;}
.y54_c00088{bottom:651.226667pt;}
.y51_c00088{bottom:666.440000pt;}
.y4e_c00088{bottom:667.773333pt;}
.y4b_c00088{bottom:668.360000pt;}
.y4f_c00088{bottom:668.560000pt;}
.y4c_c00088{bottom:668.733333pt;}
.y50_c00088{bottom:669.693333pt;}
.y4d_c00088{bottom:669.706667pt;}
.y4a_c00088{bottom:683.026667pt;}
.y49_c00088{bottom:684.360000pt;}
.y48_c00088{bottom:685.106667pt;}
.y46_c00088{bottom:685.693333pt;}
.y45_c00088{bottom:686.640000pt;}
.y47_c00088{bottom:687.026667pt;}
.y44_c00088{bottom:702.440000pt;}
.y42_c00088{bottom:703.973333pt;}
.y40_c00088{bottom:704.360000pt;}
.y41_c00088{bottom:704.373333pt;}
.y43_c00088{bottom:705.306667pt;}
.y3b_c00088{bottom:717.693333pt;}
.y38_c00088{bottom:718.440000pt;}
.y3c_c00088{bottom:718.640000pt;}
.y3f_c00088{bottom:719.026667pt;}
.y3a_c00088{bottom:719.400000pt;}
.y3d_c00088{bottom:719.773333pt;}
.y3e_c00088{bottom:720.733333pt;}
.y39_c00088{bottom:721.706667pt;}
.y33_c00088{bottom:735.773333pt;}
.y34_c00088{bottom:737.106667pt;}
.y36_c00088{bottom:737.893333pt;}
.y37_c00088{bottom:739.026667pt;}
.y35_c00088{bottom:739.040000pt;}
.y32_c00088{bottom:761.306667pt;}
.y2d_c00088{bottom:761.693333pt;}
.y2e_c00088{bottom:761.893333pt;}
.y31_c00088{bottom:762.066667pt;}
.y2f_c00088{bottom:762.640000pt;}
.y30_c00088{bottom:763.600000pt;}
.y2c_c00088{bottom:778.066667pt;}
.y2a_c00088{bottom:779.026667pt;}
.y2b_c00088{bottom:779.226667pt;}
.y29_c00088{bottom:801.693333pt;}
.y27_c00088{bottom:803.400000pt;}
.y28_c00088{bottom:804.560000pt;}
.y25_c00088{bottom:836.360000pt;}
.y23_c00088{bottom:837.106667pt;}
.y24_c00088{bottom:839.026667pt;}
.y26_c00088{bottom:839.226667pt;}
.y1e_c00088{bottom:854.440000pt;}
.y1d_c00088{bottom:855.400000pt;}
.y22_c00088{bottom:855.600000pt;}
.y1f_c00088{bottom:855.773333pt;}
.y1b_c00088{bottom:856.360000pt;}
.y20_c00088{bottom:856.560000pt;}
.y21_c00088{bottom:857.693333pt;}
.y1c_c00088{bottom:857.706667pt;}
.y1a_c00088{bottom:872.360000pt;}
.y19_c00088{bottom:875.026667pt;}
.y17_c00088{bottom:890.440000pt;}
.y13_c00088{bottom:891.026667pt;}
.y18_c00088{bottom:891.226667pt;}
.y15_c00088{bottom:891.973333pt;}
.y14_c00088{bottom:892.360000pt;}
.y16_c00088{bottom:893.306667pt;}
.y12_c00088{bottom:907.400000pt;}
.yf_c00088{bottom:907.773333pt;}
.y11_c00088{bottom:908.560000pt;}
.y10_c00088{bottom:909.693333pt;}
.yd_c00088{bottom:924.360000pt;}
.yb_c00088{bottom:925.106667pt;}
.yc_c00088{bottom:926.066667pt;}
.y9_c00088{bottom:926.640000pt;}
.ya_c00088{bottom:927.026667pt;}
.ye_c00088{bottom:927.226667pt;}
.y4_c00088{bottom:940.360000pt;}
.y6_c00088{bottom:942.066667pt;}
.y3_c00088{bottom:942.440000pt;}
.y8_c00088{bottom:943.773333pt;}
.y7_c00088{bottom:944.360000pt;}
.y5_c00088{bottom:945.306667pt;}
.y2_c00088{bottom:976.733333pt;}
.y1_c00088{bottom:978.266667pt;}
.h7_c00088{height:3.739141pt;}
.h8_c00088{height:14.890964pt;}
.h6_c00088{height:20.466875pt;}
.h1_c00088{height:22.303646pt;}
.h5_c00088{height:27.879557pt;}
.h9_c00088{height:29.372891pt;}
.h4_c00088{height:31.618698pt;}
.h2_c00088{height:35.357839pt;}
.h3_c00088{height:39.031380pt;}
.ha_c00088{height:42.770521pt;}
.h0_c00088{height:1186.666667pt;}
.w0_c00088{width:782.666667pt;}
.x0_c00088{left:0.000000pt;}
.x3_c00088{left:134.666667pt;}
.xb8_c00088{left:136.000000pt;}
.x25_c00088{left:148.000000pt;}
.x55_c00088{left:149.706667pt;}
.x67_c00088{left:151.240000pt;}
.xcf_c00088{left:152.373333pt;}
.xe_c00088{left:153.706667pt;}
.xd7_c00088{left:156.373333pt;}
.x89_c00088{left:158.666667pt;}
.xe0_c00088{left:160.373333pt;}
.x9e_c00088{left:161.706667pt;}
.x95_c00088{left:162.666667pt;}
.xa3_c00088{left:166.293333pt;}
.xc1_c00088{left:170.666667pt;}
.x31_c00088{left:172.960000pt;}
.x84_c00088{left:174.666667pt;}
.x26_c00088{left:175.626667pt;}
.xb9_c00088{left:176.960000pt;}
.xf_c00088{left:178.666667pt;}
.x3e_c00088{left:180.000000pt;}
.xd8_c00088{left:183.040000pt;}
.x56_c00088{left:185.706667pt;}
.xa8_c00088{left:186.666667pt;}
.xf8_c00088{left:188.373333pt;}
.x7a_c00088{left:190.293333pt;}
.xa4_c00088{left:192.000000pt;}
.xb5_c00088{left:193.333333pt;}
.x96_c00088{left:197.906667pt;}
.x91_c00088{left:199.040000pt;}
.x68_c00088{left:200.000000pt;}
.xcb_c00088{left:203.040000pt;}
.x4_c00088{left:204.960000pt;}
.xf5_c00088{left:206.666667pt;}
.xe1_c00088{left:208.000000pt;}
.xd1_c00088{left:209.706667pt;}
.x32_c00088{left:210.666667pt;}
.xff_c00088{left:212.373333pt;}
.x4d_c00088{left:213.706667pt;}
.xc2_c00088{left:215.040000pt;}
.xa9_c00088{left:218.293333pt;}
.xf9_c00088{left:220.373333pt;}
.xba_c00088{left:221.706667pt;}
.x92_c00088{left:223.040000pt;}
.x71_c00088{left:224.000000pt;}
.xd9_c00088{left:225.333333pt;}
.xab_c00088{left:226.666667pt;}
.x33_c00088{left:228.000000pt;}
.x27_c00088{left:228.960000pt;}
.x62_c00088{left:230.666667pt;}
.x97_c00088{left:236.373333pt;}
.x57_c00088{left:237.333333pt;}
.x3f_c00088{left:239.040000pt;}
.x7b_c00088{left:241.333333pt;}
.xaa_c00088{left:242.666667pt;}
.xee_c00088{left:244.373333pt;}
.x72_c00088{left:245.333333pt;}
.xd2_c00088{left:246.666667pt;}
.x69_c00088{left:247.626667pt;}
.x5a_c00088{left:249.333333pt;}
.x63_c00088{left:250.293333pt;}
.x1c_c00088{left:252.000000pt;}
.x28_c00088{left:256.000000pt;}
.x34_c00088{left:257.333333pt;}
.xe5_c00088{left:259.040000pt;}
.x7c_c00088{left:261.706667pt;}
.xeb_c00088{left:262.666667pt;}
.x4e_c00088{left:265.333333pt;}
.x47_c00088{left:266.666667pt;}
.xc3_c00088{left:268.000000pt;}
.x10_c00088{left:269.333333pt;}
.x5_c00088{left:270.666667pt;}
.x40_c00088{left:272.000000pt;}
.xda_c00088{left:272.960000pt;}
.x1d_c00088{left:274.666667pt;}
.xcc_c00088{left:276.000000pt;}
.xef_c00088{left:278.666667pt;}
.xfa_c00088{left:279.626667pt;}
.xe6_c00088{left:281.706667pt;}
.x93_c00088{left:282.666667pt;}
.xd3_c00088{left:284.373333pt;}
.x7d_c00088{left:286.666667pt;}
.x1e_c00088{left:288.373333pt;}
.x29_c00088{left:289.333333pt;}
.x4a_c00088{left:290.666667pt;}
.x8a_c00088{left:291.626667pt;}
.x9f_c00088{left:293.333333pt;}
.xac_c00088{left:295.626667pt;}
.x64_c00088{left:297.333333pt;}
.x6_c00088{left:298.666667pt;}
.xc4_c00088{left:301.706667pt;}
.xa5_c00088{left:302.666667pt;}
.x98_c00088{left:304.000000pt;}
.x41_c00088{left:306.666667pt;}
.x11_c00088{left:308.000000pt;}
.x73_c00088{left:309.333333pt;}
.x8b_c00088{left:311.040000pt;}
.xad_c00088{left:313.706667pt;}
.x58_c00088{left:314.666667pt;}
.xdb_c00088{left:316.000000pt;}
.x4f_c00088{left:317.706667pt;}
.xbb_c00088{left:321.333333pt;}
.x35_c00088{left:322.293333pt;}
.x12_c00088{left:323.426667pt;}
.x99_c00088{left:325.333333pt;}
.xc5_c00088{left:326.293333pt;}
.x74_c00088{left:328.000000pt;}
.x8c_c00088{left:331.040000pt;}
.x59_c00088{left:335.040000pt;}
.xec_c00088{left:336.373333pt;}
.x36_c00088{left:337.706667pt;}
.x1f_c00088{left:338.666667pt;}
.x7e_c00088{left:340.373333pt;}
.x4b_c00088{left:341.333333pt;}
.x5b_c00088{left:345.333333pt;}
.x7_c00088{left:349.333333pt;}
.x6a_c00088{left:351.626667pt;}
.x1_c00088{left:353.333333pt;}
.x50_c00088{left:354.666667pt;}
.x48_c00088{left:356.373333pt;}
.x20_c00088{left:358.666667pt;}
.x75_c00088{left:360.000000pt;}
.x37_c00088{left:361.333333pt;}
.xf6_c00088{left:364.373333pt;}
.xae_c00088{left:367.040000pt;}
.xbc_c00088{left:369.706667pt;}
.x21_c00088{left:370.666667pt;}
.x94_c00088{left:371.626667pt;}
.xe2_c00088{left:374.666667pt;}
.x5c_c00088{left:376.000000pt;}
.x13_c00088{left:377.706667pt;}
.xb6_c00088{left:380.000000pt;}
.xfb_c00088{left:381.706667pt;}
.x42_c00088{left:383.626667pt;}
.xcd_c00088{left:385.706667pt;}
.x8_c00088{left:386.666667pt;}
.xf7_c00088{left:390.293333pt;}
.x9a_c00088{left:391.240000pt;}
.x101_c00088{left:393.333333pt;}
.x2a_c00088{left:394.666667pt;}
.x51_c00088{left:396.000000pt;}
.x6b_c00088{left:396.960000pt;}
.x22_c00088{left:400.373333pt;}
.xbd_c00088{left:401.706667pt;}
.x85_c00088{left:403.040000pt;}
.xfc_c00088{left:404.000000pt;}
.xa0_c00088{left:405.333333pt;}
.x76_c00088{left:408.000000pt;}
.x38_c00088{left:409.333333pt;}
.xe7_c00088{left:411.040000pt;}
.x7f_c00088{left:412.960000pt;}
.x8d_c00088{left:414.666667pt;}
.xb7_c00088{left:416.000000pt;}
.x2b_c00088{left:418.666667pt;}
.xaf_c00088{left:420.373333pt;}
.xd4_c00088{left:421.706667pt;}
.x43_c00088{left:424.373333pt;}
.xbe_c00088{left:425.706667pt;}
.x9_c00088{left:427.626667pt;}
.x9b_c00088{left:429.333333pt;}
.x14_c00088{left:430.666667pt;}
.x4c_c00088{left:432.000000pt;}
.x5d_c00088{left:434.466667pt;}
.x77_c00088{left:439.040000pt;}
.xf0_c00088{left:440.960000pt;}
.x8e_c00088{left:443.626667pt;}
.xfd_c00088{left:446.293333pt;}
.x15_c00088{left:448.373333pt;}
.xc6_c00088{left:449.333333pt;}
.x52_c00088{left:450.666667pt;}
.xa1_c00088{left:453.333333pt;}
.x39_c00088{left:454.666667pt;}
.x80_c00088{left:457.333333pt;}
.x65_c00088{left:459.040000pt;}
.x6c_c00088{left:461.706667pt;}
.x23_c00088{left:465.706667pt;}
.xdc_c00088{left:466.666667pt;}
.x5e_c00088{left:469.333333pt;}
.xd5_c00088{left:470.666667pt;}
.x78_c00088{left:471.626667pt;}
.x86_c00088{left:475.626667pt;}
.x100_c00088{left:477.333333pt;}
.x53_c00088{left:478.666667pt;}
.xa_c00088{left:480.000000pt;}
.x3a_c00088{left:481.706667pt;}
.x2c_c00088{left:483.040000pt;}
.xf1_c00088{left:484.373333pt;}
.xdd_c00088{left:485.706667pt;}
.xb0_c00088{left:486.666667pt;}
.xce_c00088{left:488.000000pt;}
.x8f_c00088{left:489.333333pt;}
.x49_c00088{left:491.040000pt;}
.x16_c00088{left:492.373333pt;}
.x5f_c00088{left:494.666667pt;}
.xc7_c00088{left:496.373333pt;}
.x6d_c00088{left:498.293333pt;}
.xa6_c00088{left:500.960000pt;}
.xbf_c00088{left:503.040000pt;}
.xb1_c00088{left:504.000000pt;}
.x44_c00088{left:506.293333pt;}
.x81_c00088{left:509.706667pt;}
.xde_c00088{left:511.040000pt;}
.xe3_c00088{left:512.000000pt;}
.xb_c00088{left:513.706667pt;}
.x2d_c00088{left:515.626667pt;}
.xc0_c00088{left:520.000000pt;}
.x45_c00088{left:523.040000pt;}
.x17_c00088{left:526.293333pt;}
.xed_c00088{left:529.333333pt;}
.x54_c00088{left:531.626667pt;}
.xb2_c00088{left:533.333333pt;}
.xe8_c00088{left:534.666667pt;}
.xc_c00088{left:537.333333pt;}
.xc8_c00088{left:538.666667pt;}
.x9c_c00088{left:539.626667pt;}
.x3b_c00088{left:541.333333pt;}
.x24_c00088{left:542.666667pt;}
.x87_c00088{left:543.626667pt;}
.x102_c00088{left:544.960000pt;}
.x46_c00088{left:546.666667pt;}
.x60_c00088{left:549.133333pt;}
.x18_c00088{left:550.666667pt;}
.xe9_c00088{left:551.626667pt;}
.x90_c00088{left:557.333333pt;}
.x6e_c00088{left:558.666667pt;}
.xe4_c00088{left:560.000000pt;}
.x3c_c00088{left:561.333333pt;}
.x82_c00088{left:564.000000pt;}
.xd6_c00088{left:566.666667pt;}
.x79_c00088{left:567.626667pt;}
.x19_c00088{left:568.960000pt;}
.x6f_c00088{left:575.040000pt;}
.x2e_c00088{left:577.333333pt;}
.xf2_c00088{left:578.666667pt;}
.xfe_c00088{left:580.000000pt;}
.xdf_c00088{left:580.960000pt;}
.x61_c00088{left:585.333333pt;}
.xc9_c00088{left:587.626667pt;}
.x83_c00088{left:589.333333pt;}
.x1a_c00088{left:590.666667pt;}
.xa2_c00088{left:592.000000pt;}
.x66_c00088{left:595.626667pt;}
.x70_c00088{left:597.333333pt;}
.x2f_c00088{left:599.040000pt;}
.xa7_c00088{left:600.000000pt;}
.xf3_c00088{left:604.000000pt;}
.xca_c00088{left:605.706667pt;}
.xd_c00088{left:610.293333pt;}
.xb3_c00088{left:612.960000pt;}
.x9d_c00088{left:615.426667pt;}
.x88_c00088{left:620.000000pt;}
.x1b_c00088{left:624.000000pt;}
.xd0_c00088{left:627.626667pt;}
.xb4_c00088{left:630.666667pt;}
.x2_c00088{left:633.333333pt;}
.x30_c00088{left:636.000000pt;}
.xf4_c00088{left:638.293333pt;}
.xea_c00088{left:642.666667pt;}
.x3d_c00088{left:643.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_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_5f5f8fb25f94377a1745a4ad.woff2')format("woff");}.ff1_c00089{font-family:ff1_c00089;line-height:1.688965;font-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_c00089{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.mcf_c00089{transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);}
.m41_c00089{transform:matrix(0.358129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358129,0.000000,0.000000,0.250000,0,0);}
.md_c00089{transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);}
.m70_c00089{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m2f_c00089{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m29_c00089{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m81_c00089{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.mae_c00089{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00089{transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);}
.m25_c00089{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m7b_c00089{transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);}
.m1b_c00089{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m57_c00089{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m58_c00089{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m5b_c00089{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m3f_c00089{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mb_c00089{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m92_c00089{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m1d_c00089{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m39_c00089{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m6c_c00089{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m62_c00089{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m54_c00089{transform:matrix(0.414494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414494,0.000000,0.000000,0.250000,0,0);}
.m6a_c00089{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m23_c00089{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m8d_c00089{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m35_c00089{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m8f_c00089{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m6e_c00089{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m48_c00089{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.m22_c00089{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m59_c00089{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m79_c00089{transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);}
.m3d_c00089{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m63_c00089{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m50_c00089{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m46_c00089{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m78_c00089{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.ma9_c00089{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m6_c00089{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.ma1_c00089{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_c00089{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m5d_c00089{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m8b_c00089{transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);}
.m5c_c00089{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m1f_c00089{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m4f_c00089{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.m36_c00089{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.m4e_c00089{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m91_c00089{transform:matrix(0.454327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454327,0.000000,0.000000,0.250000,0,0);}
.m2e_c00089{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m5f_c00089{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.me_c00089{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.m52_c00089{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m97_c00089{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mce_c00089{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.mbe_c00089{transform:matrix(0.459936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459936,0.000000,0.000000,0.250000,0,0);}
.m95_c00089{transform:matrix(0.462340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462340,0.000000,0.000000,0.250000,0,0);}
.maf_c00089{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m7a_c00089{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.mab_c00089{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.mca_c00089{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.m8c_c00089{transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);}
.m69_c00089{transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);}
.mb0_c00089{transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);}
.mb6_c00089{transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);}
.m3e_c00089{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m2d_c00089{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m93_c00089{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m65_c00089{transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);}
.m2c_c00089{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.ma7_c00089{transform:matrix(0.486029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486029,0.000000,0.000000,0.250000,0,0);}
.ma4_c00089{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m45_c00089{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m9f_c00089{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m28_c00089{transform:matrix(0.491597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491597,0.000000,0.000000,0.250000,0,0);}
.mc0_c00089{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.m4d_c00089{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m8_c00089{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);}
.m3c_c00089{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m55_c00089{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mc5_c00089{transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);}
.m26_c00089{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);}
.m14_c00089{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m4a_c00089{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m11_c00089{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m3b_c00089{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m12_c00089{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.ma_c00089{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m61_c00089{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m33_c00089{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mcc_c00089{transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);}
.m5e_c00089{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m31_c00089{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m89_c00089{transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);}
.m64_c00089{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m6d_c00089{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m37_c00089{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m56_c00089{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m18_c00089{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m27_c00089{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.mc6_c00089{transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);}
.mb4_c00089{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.m21_c00089{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mac_c00089{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m8a_c00089{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.m8e_c00089{transform:matrix(0.534091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534091,0.000000,0.000000,0.250000,0,0);}
.m34_c00089{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m15_c00089{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m13_c00089{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m6b_c00089{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m2a_c00089{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mc_c00089{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mc9_c00089{transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);}
.m30_c00089{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m16_c00089{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m0_c00089{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m9_c00089{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mb5_c00089{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m1a_c00089{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m17_c00089{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m53_c00089{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m68_c00089{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m42_c00089{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m1e_c00089{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m9c_c00089{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m84_c00089{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.m3_c00089{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m2_c00089{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m7_c00089{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m44_c00089{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m2b_c00089{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m32_c00089{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.mbd_c00089{transform:matrix(0.572115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572115,0.000000,0.000000,0.250000,0,0);}
.m40_c00089{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mf_c00089{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mad_c00089{transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);}
.m85_c00089{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.m88_c00089{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m4b_c00089{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m76_c00089{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m3a_c00089{transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);}
.m5a_c00089{transform:matrix(0.587059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587059,0.000000,0.000000,0.250000,0,0);}
.m82_c00089{transform:matrix(0.587340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587340,0.000000,0.000000,0.250000,0,0);}
.m19_c00089{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m49_c00089{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m4c_c00089{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m38_c00089{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_c00089{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m71_c00089{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m6f_c00089{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m94_c00089{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m43_c00089{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m90_c00089{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m10_c00089{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m86_c00089{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m99_c00089{transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);}
.m75_c00089{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m7d_c00089{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_c00089{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m73_c00089{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m51_c00089{transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);}
.m83_c00089{transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);}
.m77_c00089{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);}
.mb2_c00089{transform:matrix(0.651982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651982,0.000000,0.000000,0.250000,0,0);}
.ma0_c00089{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m96_c00089{transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);}
.ma5_c00089{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m80_c00089{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m24_c00089{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m74_c00089{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m87_c00089{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m66_c00089{transform:matrix(0.679487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679487,0.000000,0.000000,0.250000,0,0);}
.m9d_c00089{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.m7e_c00089{transform:matrix(0.680147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680147,0.000000,0.000000,0.250000,0,0);}
.mba_c00089{transform:matrix(0.680617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680617,0.000000,0.000000,0.250000,0,0);}
.m9e_c00089{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mc8_c00089{transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);}
.m72_c00089{transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);}
.mc2_c00089{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.m98_c00089{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m4_c00089{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.mcd_c00089{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m9b_c00089{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.mcb_c00089{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.ma3_c00089{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m7f_c00089{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);}
.m1c_c00089{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m7c_c00089{transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);}
.mc1_c00089{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.ma6_c00089{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.mc7_c00089{transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);}
.m20_c00089{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.mbb_c00089{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.mbf_c00089{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.m9a_c00089{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.mb3_c00089{transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);}
.ma8_c00089{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m47_c00089{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.mb1_c00089{transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);}
.mc4_c00089{transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);}
.mb8_c00089{transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);}
.mc3_c00089{transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);}
.mb9_c00089{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mb7_c00089{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.mbc_c00089{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.ma2_c00089{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.v2_c00089{vertical-align:-6.000000px;}
.v0_c00089{vertical-align:0.000000px;}
.v1_c00089{vertical-align:6.000000px;}
.ls1_c00089{letter-spacing:0.000000px;}
.ls0_c00089{letter-spacing:42.629203px;}
.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:-1.760609px;}
.ws23_c00089{word-spacing:0.000000px;}
.ws1e_c00089{word-spacing:8.373475px;}
.ws1f_c00089{word-spacing:12.510814px;}
.ws5_c00089{word-spacing:13.611988px;}
.ws14_c00089{word-spacing:15.107856px;}
.ws4_c00089{word-spacing:15.614929px;}
.ws10_c00089{word-spacing:17.262919px;}
.wsb_c00089{word-spacing:18.138913px;}
.ws7_c00089{word-spacing:19.417982px;}
.ws1d_c00089{word-spacing:20.014946px;}
.ws13_c00089{word-spacing:23.728109px;}
.ws1c_c00089{word-spacing:23.767013px;}
.ws17_c00089{word-spacing:24.591285px;}
.ws22_c00089{word-spacing:24.977547px;}
.wsa_c00089{word-spacing:25.629635px;}
.ws11_c00089{word-spacing:25.883172px;}
.ws1b_c00089{word-spacing:27.519079px;}
.ws20_c00089{word-spacing:29.395112px;}
.ws12_c00089{word-spacing:30.193299px;}
.ws16_c00089{word-spacing:30.607622px;}
.ws1_c00089{word-spacing:30.869379px;}
.ws9_c00089{word-spacing:31.838295px;}
.ws19_c00089{word-spacing:33.422660px;}
.wsf_c00089{word-spacing:36.857815px;}
.ws15_c00089{word-spacing:38.223297px;}
.wsd_c00089{word-spacing:38.324009px;}
.ws21_c00089{word-spacing:39.052735px;}
.ws1a_c00089{word-spacing:40.242596px;}
.ws6_c00089{word-spacing:40.994598px;}
.ws8_c00089{word-spacing:45.572749px;}
.ws3_c00089{word-spacing:45.588585px;}
.ws18_c00089{word-spacing:47.497848px;}
.wse_c00089{word-spacing:49.953969px;}
.wsc_c00089{word-spacing:51.676951px;}
.ws2_c00089{word-spacing:57.204655px;}
._a_c00089{width:19.347167px;}
._d_c00089{width:20.464894px;}
._9_c00089{width:23.061936px;}
._2_c00089{width:25.571951px;}
._1_c00089{width:27.574892px;}
._e_c00089{width:30.557478px;}
._5_c00089{width:31.721093px;}
._0_c00089{width:33.583715px;}
._8_c00089{width:34.596535px;}
._6_c00089{width:37.349192px;}
._b_c00089{width:38.512807px;}
._4_c00089{width:48.948678px;}
._c_c00089{width:49.985215px;}
._7_c00089{width:56.960442px;}
._3_c00089{width:59.631031px;}
.fc0_c00089{color:transparent;}
.fs9_c00089{font-size:3.420000px;}
.fs8_c00089{font-size:11.880000px;}
.fs7_c00089{font-size:13.620000px;}
.fs6_c00089{font-size:18.720000px;}
.fs1_c00089{font-size:20.400000px;}
.fs0_c00089{font-size:25.500000px;}
.fs2_c00089{font-size:28.920000px;}
.fs5_c00089{font-size:32.340000px;}
.fs3_c00089{font-size:35.700000px;}
.fs4_c00089{font-size:39.120000px;}
.y0_c00089{bottom:0.000000px;}
.y4c_c00089{bottom:251.745000px;}
.y50_c00089{bottom:252.405000px;}
.y4e_c00089{bottom:253.245000px;}
.y4b_c00089{bottom:253.905000px;}
.y4d_c00089{bottom:255.405000px;}
.y4f_c00089{bottom:256.470000px;}
.y51_c00089{bottom:256.905000px;}
.y45_c00089{bottom:272.745000px;}
.y4a_c00089{bottom:274.245000px;}
.y44_c00089{bottom:274.905000px;}
.y49_c00089{bottom:275.130000px;}
.y47_c00089{bottom:275.325000px;}
.y46_c00089{bottom:275.970000px;}
.y48_c00089{bottom:276.405000px;}
.y40_c00089{bottom:292.245000px;}
.y41_c00089{bottom:292.680000px;}
.y43_c00089{bottom:293.745000px;}
.y3f_c00089{bottom:294.405000px;}
.y42_c00089{bottom:295.905000px;}
.y3c_c00089{bottom:311.745000px;}
.y3d_c00089{bottom:313.245000px;}
.y3b_c00089{bottom:313.905000px;}
.y3e_c00089{bottom:314.970000px;}
.y39_c00089{bottom:330.405000px;}
.y3a_c00089{bottom:331.245000px;}
.y37_c00089{bottom:331.680000px;}
.y35_c00089{bottom:331.905000px;}
.y36_c00089{bottom:333.405000px;}
.y38_c00089{bottom:334.905000px;}
.y30_c00089{bottom:349.905000px;}
.y2e_c00089{bottom:351.825000px;}
.y2f_c00089{bottom:352.905000px;}
.y33_c00089{bottom:353.970000px;}
.y31_c00089{bottom:354.405000px;}
.y32_c00089{bottom:354.825000px;}
.y34_c00089{bottom:355.905000px;}
.y27_c00089{bottom:370.245000px;}
.y29_c00089{bottom:370.680000px;}
.y2c_c00089{bottom:371.745000px;}
.y28_c00089{bottom:373.905000px;}
.y2d_c00089{bottom:374.130000px;}
.y2a_c00089{bottom:375.405000px;}
.y2b_c00089{bottom:376.470000px;}
.y22_c00089{bottom:389.745000px;}
.y25_c00089{bottom:391.245000px;}
.y26_c00089{bottom:391.470000px;}
.y23_c00089{bottom:393.405000px;}
.y24_c00089{bottom:394.470000px;}
.y1e_c00089{bottom:409.905000px;}
.y20_c00089{bottom:410.745000px;}
.y1c_c00089{bottom:412.905000px;}
.y21_c00089{bottom:413.325000px;}
.y1f_c00089{bottom:413.970000px;}
.y1d_c00089{bottom:414.405000px;}
.y1a_c00089{bottom:431.745000px;}
.y17_c00089{bottom:432.405000px;}
.y18_c00089{bottom:432.825000px;}
.y1b_c00089{bottom:433.470000px;}
.y19_c00089{bottom:433.905000px;}
.y15_c00089{bottom:449.970000px;}
.y13_c00089{bottom:451.245000px;}
.y12_c00089{bottom:451.905000px;}
.y11_c00089{bottom:452.970000px;}
.y16_c00089{bottom:453.405000px;}
.y14_c00089{bottom:454.470000px;}
.yf_c00089{bottom:470.745000px;}
.yc_c00089{bottom:471.405000px;}
.y10_c00089{bottom:471.630000px;}
.yd_c00089{bottom:472.905000px;}
.ye_c00089{bottom:473.970000px;}
.y9_c00089{bottom:491.325000px;}
.ya_c00089{bottom:492.405000px;}
.yb_c00089{bottom:493.905000px;}
.y5_c00089{bottom:509.745000px;}
.y8_c00089{bottom:510.180000px;}
.y7_c00089{bottom:511.245000px;}
.y3_c00089{bottom:511.905000px;}
.y4_c00089{bottom:512.970000px;}
.y6_c00089{bottom:513.405000px;}
.yc9_c00089{bottom:537.630000px;}
.yca_c00089{bottom:538.695000px;}
.ycb_c00089{bottom:540.195000px;}
.yc8_c00089{bottom:548.550000px;}
.yc5_c00089{bottom:552.630000px;}
.yc6_c00089{bottom:553.275000px;}
.yc4_c00089{bottom:553.695000px;}
.yc7_c00089{bottom:553.920000px;}
.ybf_c00089{bottom:565.695000px;}
.yc0_c00089{bottom:566.130000px;}
.yc1_c00089{bottom:566.775000px;}
.yc3_c00089{bottom:567.195000px;}
.yc2_c00089{bottom:568.920000px;}
.ybe_c00089{bottom:579.630000px;}
.ybc_c00089{bottom:580.275000px;}
.ybd_c00089{bottom:580.695000px;}
.ybb_c00089{bottom:581.130000px;}
.yb8_c00089{bottom:593.775000px;}
.yb9_c00089{bottom:594.195000px;}
.yb7_c00089{bottom:594.630000px;}
.yba_c00089{bottom:595.695000px;}
.yb2_c00089{bottom:607.050000px;}
.yb4_c00089{bottom:607.695000px;}
.yb5_c00089{bottom:608.130000px;}
.yb3_c00089{bottom:609.195000px;}
.yb6_c00089{bottom:609.420000px;}
.yb0_c00089{bottom:621.195000px;}
.yaf_c00089{bottom:622.695000px;}
.yb1_c00089{bottom:622.920000px;}
.yae_c00089{bottom:635.130000px;}
.yad_c00089{bottom:636.195000px;}
.yab_c00089{bottom:648.630000px;}
.yac_c00089{bottom:649.695000px;}
.yaa_c00089{bottom:662.130000px;}
.ya8_c00089{bottom:663.195000px;}
.ya9_c00089{bottom:663.630000px;}
.ya7_c00089{bottom:664.695000px;}
.ya6_c00089{bottom:676.695000px;}
.ya3_c00089{bottom:677.130000px;}
.ya4_c00089{bottom:678.195000px;}
.ya5_c00089{bottom:678.420000px;}
.ya1_c00089{bottom:690.630000px;}
.ya2_c00089{bottom:691.695000px;}
.y9f_c00089{bottom:704.130000px;}
.y9e_c00089{bottom:705.195000px;}
.ya0_c00089{bottom:706.695000px;}
.y9a_c00089{bottom:717.630000px;}
.y9c_c00089{bottom:718.695000px;}
.y9b_c00089{bottom:719.775000px;}
.y9d_c00089{bottom:720.195000px;}
.y98_c00089{bottom:731.130000px;}
.y99_c00089{bottom:732.195000px;}
.y94_c00089{bottom:744.630000px;}
.y96_c00089{bottom:745.695000px;}
.y95_c00089{bottom:746.130000px;}
.y97_c00089{bottom:747.195000px;}
.y93_c00089{bottom:760.695000px;}
.y91_c00089{bottom:774.195000px;}
.y92_c00089{bottom:775.920000px;}
.y8f_c00089{bottom:786.630000px;}
.y8e_c00089{bottom:787.695000px;}
.y8d_c00089{bottom:788.130000px;}
.y90_c00089{bottom:789.420000px;}
.y8a_c00089{bottom:801.195000px;}
.y89_c00089{bottom:801.630000px;}
.y8b_c00089{bottom:802.695000px;}
.y8c_c00089{bottom:802.920000px;}
.y87_c00089{bottom:815.130000px;}
.y86_c00089{bottom:816.195000px;}
.y88_c00089{bottom:816.420000px;}
.y83_c00089{bottom:828.630000px;}
.y84_c00089{bottom:829.695000px;}
.y85_c00089{bottom:829.920000px;}
.y80_c00089{bottom:842.130000px;}
.y81_c00089{bottom:843.195000px;}
.y82_c00089{bottom:843.420000px;}
.y7f_c00089{bottom:843.630000px;}
.y7d_c00089{bottom:856.695000px;}
.y7c_c00089{bottom:857.130000px;}
.y7b_c00089{bottom:858.195000px;}
.y7e_c00089{bottom:858.420000px;}
.y79_c00089{bottom:870.195000px;}
.y78_c00089{bottom:870.630000px;}
.y77_c00089{bottom:871.695000px;}
.y7a_c00089{bottom:871.920000px;}
.y74_c00089{bottom:883.050000px;}
.y75_c00089{bottom:884.130000px;}
.y73_c00089{bottom:885.195000px;}
.y76_c00089{bottom:885.420000px;}
.y70_c00089{bottom:897.630000px;}
.y71_c00089{bottom:898.695000px;}
.y6f_c00089{bottom:900.195000px;}
.y72_c00089{bottom:900.420000px;}
.y6c_c00089{bottom:912.195000px;}
.y6d_c00089{bottom:912.630000px;}
.y6e_c00089{bottom:913.920000px;}
.y6a_c00089{bottom:925.695000px;}
.y69_c00089{bottom:926.130000px;}
.y68_c00089{bottom:927.195000px;}
.y6b_c00089{bottom:927.420000px;}
.y66_c00089{bottom:939.195000px;}
.y67_c00089{bottom:940.695000px;}
.y63_c00089{bottom:958.695000px;}
.y64_c00089{bottom:959.130000px;}
.y65_c00089{bottom:960.195000px;}
.y61_c00089{bottom:971.130000px;}
.y62_c00089{bottom:972.195000px;}
.y5f_c00089{bottom:985.695000px;}
.y60_c00089{bottom:986.775000px;}
.y5d_c00089{bottom:1007.325000px;}
.y5b_c00089{bottom:1009.470000px;}
.y5c_c00089{bottom:1010.550000px;}
.y5e_c00089{bottom:1010.970000px;}
.y59_c00089{bottom:1022.325000px;}
.y58_c00089{bottom:1023.405000px;}
.y5a_c00089{bottom:1023.630000px;}
.y57_c00089{bottom:1025.550000px;}
.y56_c00089{bottom:1037.325000px;}
.y55_c00089{bottom:1038.405000px;}
.y54_c00089{bottom:1039.470000px;}
.y53_c00089{bottom:1040.550000px;}
.y52_c00089{bottom:1064.550000px;}
.y2_c00089{bottom:1099.050000px;}
.y1_c00089{bottom:1100.970000px;}
.hb_c00089{height:4.206533px;}
.h9_c00089{height:14.612168px;}
.h8_c00089{height:16.752334px;}
.ha_c00089{height:22.752334px;}
.h7_c00089{height:23.025234px;}
.h2_c00089{height:25.091602px;}
.hc_c00089{height:29.025234px;}
.h1_c00089{height:31.364502px;}
.h3_c00089{height:35.571035px;}
.h6_c00089{height:39.777568px;}
.h4_c00089{height:43.910303px;}
.h5_c00089{height:48.116836px;}
.h0_c00089{height:1335.000000px;}
.w0_c00089{width:880.500000px;}
.x0_c00089{left:0.000000px;}
.x1_c00089{left:151.080000px;}
.x12_c00089{left:153.000000px;}
.x18_c00089{left:168.000000px;}
.x3_c00089{left:169.080000px;}
.x5c_c00089{left:171.420000px;}
.x8f_c00089{left:180.000000px;}
.x7c_c00089{left:181.500000px;}
.x2c_c00089{left:186.000000px;}
.x6c_c00089{left:189.645000px;}
.x23_c00089{left:190.920000px;}
.xab_c00089{left:193.920000px;}
.xb3_c00089{left:195.420000px;}
.x5d_c00089{left:198.000000px;}
.x19_c00089{left:199.080000px;}
.x97_c00089{left:202.080000px;}
.x2d_c00089{left:205.080000px;}
.x4b_c00089{left:207.000000px;}
.x54_c00089{left:208.500000px;}
.xa4_c00089{left:211.920000px;}
.x38_c00089{left:215.580000px;}
.x13_c00089{left:218.580000px;}
.xb8_c00089{left:220.500000px;}
.xb0_c00089{left:221.580000px;}
.x4_c00089{left:223.920000px;}
.x83_c00089{left:225.000000px;}
.x75_c00089{left:226.500000px;}
.x40_c00089{left:227.580000px;}
.xad_c00089{left:229.500000px;}
.x63_c00089{left:230.580000px;}
.xac_c00089{left:233.580000px;}
.x2e_c00089{left:237.000000px;}
.x9c_c00089{left:238.500000px;}
.x7d_c00089{left:240.420000px;}
.xae_c00089{left:243.000000px;}
.x55_c00089{left:244.920000px;}
.x4c_c00089{left:246.000000px;}
.xb6_c00089{left:247.500000px;}
.x14_c00089{left:249.000000px;}
.xb5_c00089{left:252.000000px;}
.x5e_c00089{left:253.080000px;}
.xa9_c00089{left:256.080000px;}
.xa0_c00089{left:257.580000px;}
.x1a_c00089{left:260.580000px;}
.xb2_c00089{left:262.500000px;}
.x15_c00089{left:266.580000px;}
.x39_c00089{left:268.080000px;}
.xaf_c00089{left:270.000000px;}
.xbb_c00089{left:271.920000px;}
.x84_c00089{left:276.000000px;}
.x24_c00089{left:277.920000px;}
.xba_c00089{left:279.000000px;}
.x56_c00089{left:285.420000px;}
.xb9_c00089{left:288.420000px;}
.x5_c00089{left:289.500000px;}
.x1b_c00089{left:292.500000px;}
.x6_c00089{left:300.000000px;}
.x76_c00089{left:303.420000px;}
.x41_c00089{left:304.500000px;}
.x85_c00089{left:307.920000px;}
.x2f_c00089{left:309.000000px;}
.x67_c00089{left:311.580000px;}
.x7_c00089{left:316.080000px;}
.x4d_c00089{left:322.500000px;}
.x6d_c00089{left:328.080000px;}
.x1c_c00089{left:330.000000px;}
.xb7_c00089{left:333.000000px;}
.x90_c00089{left:334.500000px;}
.x86_c00089{left:336.420000px;}
.x42_c00089{left:337.920000px;}
.x3a_c00089{left:340.080000px;}
.x5f_c00089{left:342.420000px;}
.x8_c00089{left:345.645000px;}
.x8b_c00089{left:349.500000px;}
.x6e_c00089{left:351.000000px;}
.x87_c00089{left:352.500000px;}
.x25_c00089{left:358.080000px;}
.x9_c00089{left:360.000000px;}
.x4e_c00089{left:363.000000px;}
.x16_c00089{left:369.000000px;}
.x9d_c00089{left:373.500000px;}
.xa1_c00089{left:375.000000px;}
.xa_c00089{left:376.500000px;}
.x26_c00089{left:378.000000px;}
.x91_c00089{left:379.500000px;}
.x8c_c00089{left:381.420000px;}
.x64_c00089{left:382.500000px;}
.x30_c00089{left:387.420000px;}
.x60_c00089{left:388.500000px;}
.x4f_c00089{left:390.000000px;}
.xb_c00089{left:393.000000px;}
.x43_c00089{left:397.080000px;}
.x2_c00089{left:400.500000px;}
.x57_c00089{left:405.855000px;}
.xc_c00089{left:409.080000px;}
.x7e_c00089{left:411.000000px;}
.x17_c00089{left:412.500000px;}
.x31_c00089{left:414.000000px;}
.x6f_c00089{left:415.500000px;}
.xb4_c00089{left:418.500000px;}
.xa5_c00089{left:420.000000px;}
.x61_c00089{left:423.420000px;}
.x68_c00089{left:424.920000px;}
.x77_c00089{left:429.420000px;}
.x1d_c00089{left:431.580000px;}
.x50_c00089{left:436.080000px;}
.x65_c00089{left:447.420000px;}
.x88_c00089{left:448.920000px;}
.xa3_c00089{left:450.000000px;}
.xd_c00089{left:451.080000px;}
.x51_c00089{left:453.420000px;}
.x78_c00089{left:456.000000px;}
.x3b_c00089{left:458.580000px;}
.x62_c00089{left:460.500000px;}
.x27_c00089{left:463.920000px;}
.x32_c00089{left:465.420000px;}
.x70_c00089{left:471.420000px;}
.x44_c00089{left:479.580000px;}
.xe_c00089{left:483.420000px;}
.x79_c00089{left:487.500000px;}
.x8d_c00089{left:489.000000px;}
.x9e_c00089{left:490.500000px;}
.x92_c00089{left:492.000000px;}
.xb1_c00089{left:493.500000px;}
.xa6_c00089{left:496.500000px;}
.x7f_c00089{left:497.580000px;}
.x45_c00089{left:499.920000px;}
.xaa_c00089{left:501.000000px;}
.x33_c00089{left:502.080000px;}
.x58_c00089{left:510.000000px;}
.x3c_c00089{left:511.500000px;}
.x80_c00089{left:515.580000px;}
.x8e_c00089{left:523.500000px;}
.xf_c00089{left:525.000000px;}
.x9b_c00089{left:528.000000px;}
.x46_c00089{left:529.920000px;}
.x93_c00089{left:532.500000px;}
.x3d_c00089{left:533.580000px;}
.x28_c00089{left:535.500000px;}
.x59_c00089{left:542.580000px;}
.x71_c00089{left:544.080000px;}
.x1e_c00089{left:558.000000px;}
.x7a_c00089{left:564.000000px;}
.x94_c00089{left:568.500000px;}
.x72_c00089{left:573.000000px;}
.x34_c00089{left:576.000000px;}
.x69_c00089{left:578.580000px;}
.x1f_c00089{left:583.920000px;}
.x52_c00089{left:586.500000px;}
.x81_c00089{left:589.500000px;}
.x5a_c00089{left:592.080000px;}
.x29_c00089{left:598.080000px;}
.x98_c00089{left:600.000000px;}
.x10_c00089{left:601.500000px;}
.x95_c00089{left:604.500000px;}
.xa7_c00089{left:606.000000px;}
.x35_c00089{left:607.920000px;}
.x5b_c00089{left:624.420000px;}
.x20_c00089{left:625.500000px;}
.x47_c00089{left:631.080000px;}
.x73_c00089{left:634.920000px;}
.x82_c00089{left:637.080000px;}
.x36_c00089{left:640.500000px;}
.x21_c00089{left:643.500000px;}
.x6a_c00089{left:645.000000px;}
.x3e_c00089{left:646.500000px;}
.x9f_c00089{left:649.500000px;}
.x48_c00089{left:651.420000px;}
.x11_c00089{left:652.500000px;}
.x2a_c00089{left:654.000000px;}
.x89_c00089{left:655.500000px;}
.x7b_c00089{left:663.000000px;}
.x66_c00089{left:666.000000px;}
.x6b_c00089{left:670.500000px;}
.x74_c00089{left:672.000000px;}
.x99_c00089{left:676.500000px;}
.xa2_c00089{left:678.000000px;}
.x49_c00089{left:679.500000px;}
.x96_c00089{left:681.000000px;}
.xa8_c00089{left:682.500000px;}
.x9a_c00089{left:685.500000px;}
.x22_c00089{left:686.580000px;}
.x2b_c00089{left:688.500000px;}
.x8a_c00089{left:690.420000px;}
.x53_c00089{left:697.500000px;}
.x37_c00089{left:705.420000px;}
.x3f_c00089{left:709.920000px;}
.x4a_c00089{left:720.000000px;}
@media print{
.v2_c00089{vertical-align:-5.333333pt;}
.v0_c00089{vertical-align:0.000000pt;}
.v1_c00089{vertical-align:5.333333pt;}
.ls1_c00089{letter-spacing:0.000000pt;}
.ls0_c00089{letter-spacing:37.892625pt;}
.ws0_c00089{word-spacing:-1.564986pt;}
.ws23_c00089{word-spacing:0.000000pt;}
.ws1e_c00089{word-spacing:7.443089pt;}
.ws1f_c00089{word-spacing:11.120724pt;}
.ws5_c00089{word-spacing:12.099545pt;}
.ws14_c00089{word-spacing:13.429205pt;}
.ws4_c00089{word-spacing:13.879937pt;}
.ws10_c00089{word-spacing:15.344817pt;}
.wsb_c00089{word-spacing:16.123479pt;}
.ws7_c00089{word-spacing:17.260429pt;}
.ws1d_c00089{word-spacing:17.791064pt;}
.ws13_c00089{word-spacing:21.091652pt;}
.ws1c_c00089{word-spacing:21.126233pt;}
.ws17_c00089{word-spacing:21.858920pt;}
.ws22_c00089{word-spacing:22.202264pt;}
.wsa_c00089{word-spacing:22.781898pt;}
.ws11_c00089{word-spacing:23.007264pt;}
.ws1b_c00089{word-spacing:24.461403pt;}
.ws20_c00089{word-spacing:26.128988pt;}
.ws12_c00089{word-spacing:26.838488pt;}
.ws16_c00089{word-spacing:27.206775pt;}
.ws1_c00089{word-spacing:27.439448pt;}
.ws9_c00089{word-spacing:28.300707pt;}
.ws19_c00089{word-spacing:29.709031pt;}
.wsf_c00089{word-spacing:32.762503pt;}
.ws15_c00089{word-spacing:33.976264pt;}
.wsd_c00089{word-spacing:34.065786pt;}
.ws21_c00089{word-spacing:34.713542pt;}
.ws1a_c00089{word-spacing:35.771197pt;}
.ws6_c00089{word-spacing:36.439642pt;}
.ws8_c00089{word-spacing:40.509110pt;}
.ws3_c00089{word-spacing:40.523186pt;}
.ws18_c00089{word-spacing:42.220309pt;}
.wse_c00089{word-spacing:44.403528pt;}
.wsc_c00089{word-spacing:45.935067pt;}
.ws2_c00089{word-spacing:50.848582pt;}
._a_c00089{width:17.197481pt;}
._d_c00089{width:18.191017pt;}
._9_c00089{width:20.499498pt;}
._2_c00089{width:22.730623pt;}
._1_c00089{width:24.511015pt;}
._e_c00089{width:27.162202pt;}
._5_c00089{width:28.196527pt;}
._0_c00089{width:29.852191pt;}
._8_c00089{width:30.752476pt;}
._6_c00089{width:33.199282pt;}
._b_c00089{width:34.233606pt;}
._4_c00089{width:43.509936pt;}
._c_c00089{width:44.431302pt;}
._7_c00089{width:50.631504pt;}
._3_c00089{width:53.005361pt;}
.fs9_c00089{font-size:3.040000pt;}
.fs8_c00089{font-size:10.560000pt;}
.fs7_c00089{font-size:12.106667pt;}
.fs6_c00089{font-size:16.640000pt;}
.fs1_c00089{font-size:18.133333pt;}
.fs0_c00089{font-size:22.666667pt;}
.fs2_c00089{font-size:25.706667pt;}
.fs5_c00089{font-size:28.746667pt;}
.fs3_c00089{font-size:31.733333pt;}
.fs4_c00089{font-size:34.773333pt;}
.y0_c00089{bottom:0.000000pt;}
.y4c_c00089{bottom:223.773333pt;}
.y50_c00089{bottom:224.360000pt;}
.y4e_c00089{bottom:225.106667pt;}
.y4b_c00089{bottom:225.693333pt;}
.y4d_c00089{bottom:227.026667pt;}
.y4f_c00089{bottom:227.973333pt;}
.y51_c00089{bottom:228.360000pt;}
.y45_c00089{bottom:242.440000pt;}
.y4a_c00089{bottom:243.773333pt;}
.y44_c00089{bottom:244.360000pt;}
.y49_c00089{bottom:244.560000pt;}
.y47_c00089{bottom:244.733333pt;}
.y46_c00089{bottom:245.306667pt;}
.y48_c00089{bottom:245.693333pt;}
.y40_c00089{bottom:259.773333pt;}
.y41_c00089{bottom:260.160000pt;}
.y43_c00089{bottom:261.106667pt;}
.y3f_c00089{bottom:261.693333pt;}
.y42_c00089{bottom:263.026667pt;}
.y3c_c00089{bottom:277.106667pt;}
.y3d_c00089{bottom:278.440000pt;}
.y3b_c00089{bottom:279.026667pt;}
.y3e_c00089{bottom:279.973333pt;}
.y39_c00089{bottom:293.693333pt;}
.y3a_c00089{bottom:294.440000pt;}
.y37_c00089{bottom:294.826667pt;}
.y35_c00089{bottom:295.026667pt;}
.y36_c00089{bottom:296.360000pt;}
.y38_c00089{bottom:297.693333pt;}
.y30_c00089{bottom:311.026667pt;}
.y2e_c00089{bottom:312.733333pt;}
.y2f_c00089{bottom:313.693333pt;}
.y33_c00089{bottom:314.640000pt;}
.y31_c00089{bottom:315.026667pt;}
.y32_c00089{bottom:315.400000pt;}
.y34_c00089{bottom:316.360000pt;}
.y27_c00089{bottom:329.106667pt;}
.y29_c00089{bottom:329.493333pt;}
.y2c_c00089{bottom:330.440000pt;}
.y28_c00089{bottom:332.360000pt;}
.y2d_c00089{bottom:332.560000pt;}
.y2a_c00089{bottom:333.693333pt;}
.y2b_c00089{bottom:334.640000pt;}
.y22_c00089{bottom:346.440000pt;}
.y25_c00089{bottom:347.773333pt;}
.y26_c00089{bottom:347.973333pt;}
.y23_c00089{bottom:349.693333pt;}
.y24_c00089{bottom:350.640000pt;}
.y1e_c00089{bottom:364.360000pt;}
.y20_c00089{bottom:365.106667pt;}
.y1c_c00089{bottom:367.026667pt;}
.y21_c00089{bottom:367.400000pt;}
.y1f_c00089{bottom:367.973333pt;}
.y1d_c00089{bottom:368.360000pt;}
.y1a_c00089{bottom:383.773333pt;}
.y17_c00089{bottom:384.360000pt;}
.y18_c00089{bottom:384.733333pt;}
.y1b_c00089{bottom:385.306667pt;}
.y19_c00089{bottom:385.693333pt;}
.y15_c00089{bottom:399.973333pt;}
.y13_c00089{bottom:401.106667pt;}
.y12_c00089{bottom:401.693333pt;}
.y11_c00089{bottom:402.640000pt;}
.y16_c00089{bottom:403.026667pt;}
.y14_c00089{bottom:403.973333pt;}
.yf_c00089{bottom:418.440000pt;}
.yc_c00089{bottom:419.026667pt;}
.y10_c00089{bottom:419.226667pt;}
.yd_c00089{bottom:420.360000pt;}
.ye_c00089{bottom:421.306667pt;}
.y9_c00089{bottom:436.733333pt;}
.ya_c00089{bottom:437.693333pt;}
.yb_c00089{bottom:439.026667pt;}
.y5_c00089{bottom:453.106667pt;}
.y8_c00089{bottom:453.493333pt;}
.y7_c00089{bottom:454.440000pt;}
.y3_c00089{bottom:455.026667pt;}
.y4_c00089{bottom:455.973333pt;}
.y6_c00089{bottom:456.360000pt;}
.yc9_c00089{bottom:477.893333pt;}
.yca_c00089{bottom:478.840000pt;}
.ycb_c00089{bottom:480.173333pt;}
.yc8_c00089{bottom:487.600000pt;}
.yc5_c00089{bottom:491.226667pt;}
.yc6_c00089{bottom:491.800000pt;}
.yc4_c00089{bottom:492.173333pt;}
.yc7_c00089{bottom:492.373333pt;}
.ybf_c00089{bottom:502.840000pt;}
.yc0_c00089{bottom:503.226667pt;}
.yc1_c00089{bottom:503.800000pt;}
.yc3_c00089{bottom:504.173333pt;}
.yc2_c00089{bottom:505.706667pt;}
.ybe_c00089{bottom:515.226667pt;}
.ybc_c00089{bottom:515.800000pt;}
.ybd_c00089{bottom:516.173333pt;}
.ybb_c00089{bottom:516.560000pt;}
.yb8_c00089{bottom:527.800000pt;}
.yb9_c00089{bottom:528.173333pt;}
.yb7_c00089{bottom:528.560000pt;}
.yba_c00089{bottom:529.506667pt;}
.yb2_c00089{bottom:539.600000pt;}
.yb4_c00089{bottom:540.173333pt;}
.yb5_c00089{bottom:540.560000pt;}
.yb3_c00089{bottom:541.506667pt;}
.yb6_c00089{bottom:541.706667pt;}
.yb0_c00089{bottom:552.173333pt;}
.yaf_c00089{bottom:553.506667pt;}
.yb1_c00089{bottom:553.706667pt;}
.yae_c00089{bottom:564.560000pt;}
.yad_c00089{bottom:565.506667pt;}
.yab_c00089{bottom:576.560000pt;}
.yac_c00089{bottom:577.506667pt;}
.yaa_c00089{bottom:588.560000pt;}
.ya8_c00089{bottom:589.506667pt;}
.ya9_c00089{bottom:589.893333pt;}
.ya7_c00089{bottom:590.840000pt;}
.ya6_c00089{bottom:601.506667pt;}
.ya3_c00089{bottom:601.893333pt;}
.ya4_c00089{bottom:602.840000pt;}
.ya5_c00089{bottom:603.040000pt;}
.ya1_c00089{bottom:613.893333pt;}
.ya2_c00089{bottom:614.840000pt;}
.y9f_c00089{bottom:625.893333pt;}
.y9e_c00089{bottom:626.840000pt;}
.ya0_c00089{bottom:628.173333pt;}
.y9a_c00089{bottom:637.893333pt;}
.y9c_c00089{bottom:638.840000pt;}
.y9b_c00089{bottom:639.800000pt;}
.y9d_c00089{bottom:640.173333pt;}
.y98_c00089{bottom:649.893333pt;}
.y99_c00089{bottom:650.840000pt;}
.y94_c00089{bottom:661.893333pt;}
.y96_c00089{bottom:662.840000pt;}
.y95_c00089{bottom:663.226667pt;}
.y97_c00089{bottom:664.173333pt;}
.y93_c00089{bottom:676.173333pt;}
.y91_c00089{bottom:688.173333pt;}
.y92_c00089{bottom:689.706667pt;}
.y8f_c00089{bottom:699.226667pt;}
.y8e_c00089{bottom:700.173333pt;}
.y8d_c00089{bottom:700.560000pt;}
.y90_c00089{bottom:701.706667pt;}
.y8a_c00089{bottom:712.173333pt;}
.y89_c00089{bottom:712.560000pt;}
.y8b_c00089{bottom:713.506667pt;}
.y8c_c00089{bottom:713.706667pt;}
.y87_c00089{bottom:724.560000pt;}
.y86_c00089{bottom:725.506667pt;}
.y88_c00089{bottom:725.706667pt;}
.y83_c00089{bottom:736.560000pt;}
.y84_c00089{bottom:737.506667pt;}
.y85_c00089{bottom:737.706667pt;}
.y80_c00089{bottom:748.560000pt;}
.y81_c00089{bottom:749.506667pt;}
.y82_c00089{bottom:749.706667pt;}
.y7f_c00089{bottom:749.893333pt;}
.y7d_c00089{bottom:761.506667pt;}
.y7c_c00089{bottom:761.893333pt;}
.y7b_c00089{bottom:762.840000pt;}
.y7e_c00089{bottom:763.040000pt;}
.y79_c00089{bottom:773.506667pt;}
.y78_c00089{bottom:773.893333pt;}
.y77_c00089{bottom:774.840000pt;}
.y7a_c00089{bottom:775.040000pt;}
.y74_c00089{bottom:784.933333pt;}
.y75_c00089{bottom:785.893333pt;}
.y73_c00089{bottom:786.840000pt;}
.y76_c00089{bottom:787.040000pt;}
.y70_c00089{bottom:797.893333pt;}
.y71_c00089{bottom:798.840000pt;}
.y6f_c00089{bottom:800.173333pt;}
.y72_c00089{bottom:800.373333pt;}
.y6c_c00089{bottom:810.840000pt;}
.y6d_c00089{bottom:811.226667pt;}
.y6e_c00089{bottom:812.373333pt;}
.y6a_c00089{bottom:822.840000pt;}
.y69_c00089{bottom:823.226667pt;}
.y68_c00089{bottom:824.173333pt;}
.y6b_c00089{bottom:824.373333pt;}
.y66_c00089{bottom:834.840000pt;}
.y67_c00089{bottom:836.173333pt;}
.y63_c00089{bottom:852.173333pt;}
.y64_c00089{bottom:852.560000pt;}
.y65_c00089{bottom:853.506667pt;}
.y61_c00089{bottom:863.226667pt;}
.y62_c00089{bottom:864.173333pt;}
.y5f_c00089{bottom:876.173333pt;}
.y60_c00089{bottom:877.133333pt;}
.y5d_c00089{bottom:895.400000pt;}
.y5b_c00089{bottom:897.306667pt;}
.y5c_c00089{bottom:898.266667pt;}
.y5e_c00089{bottom:898.640000pt;}
.y59_c00089{bottom:908.733333pt;}
.y58_c00089{bottom:909.693333pt;}
.y5a_c00089{bottom:909.893333pt;}
.y57_c00089{bottom:911.600000pt;}
.y56_c00089{bottom:922.066667pt;}
.y55_c00089{bottom:923.026667pt;}
.y54_c00089{bottom:923.973333pt;}
.y53_c00089{bottom:924.933333pt;}
.y52_c00089{bottom:946.266667pt;}
.y2_c00089{bottom:976.933333pt;}
.y1_c00089{bottom:978.640000pt;}
.hb_c00089{height:3.739141pt;}
.h9_c00089{height:12.988594pt;}
.h8_c00089{height:14.890964pt;}
.ha_c00089{height:20.224297pt;}
.h7_c00089{height:20.466875pt;}
.h2_c00089{height:22.303646pt;}
.hc_c00089{height:25.800208pt;}
.h1_c00089{height:27.879557pt;}
.h3_c00089{height:31.618698pt;}
.h6_c00089{height:35.357839pt;}
.h4_c00089{height:39.031380pt;}
.h5_c00089{height:42.770521pt;}
.h0_c00089{height:1186.666667pt;}
.w0_c00089{width:782.666667pt;}
.x0_c00089{left:0.000000pt;}
.x1_c00089{left:134.293333pt;}
.x12_c00089{left:136.000000pt;}
.x18_c00089{left:149.333333pt;}
.x3_c00089{left:150.293333pt;}
.x5c_c00089{left:152.373333pt;}
.x8f_c00089{left:160.000000pt;}
.x7c_c00089{left:161.333333pt;}
.x2c_c00089{left:165.333333pt;}
.x6c_c00089{left:168.573333pt;}
.x23_c00089{left:169.706667pt;}
.xab_c00089{left:172.373333pt;}
.xb3_c00089{left:173.706667pt;}
.x5d_c00089{left:176.000000pt;}
.x19_c00089{left:176.960000pt;}
.x97_c00089{left:179.626667pt;}
.x2d_c00089{left:182.293333pt;}
.x4b_c00089{left:184.000000pt;}
.x54_c00089{left:185.333333pt;}
.xa4_c00089{left:188.373333pt;}
.x38_c00089{left:191.626667pt;}
.x13_c00089{left:194.293333pt;}
.xb8_c00089{left:196.000000pt;}
.xb0_c00089{left:196.960000pt;}
.x4_c00089{left:199.040000pt;}
.x83_c00089{left:200.000000pt;}
.x75_c00089{left:201.333333pt;}
.x40_c00089{left:202.293333pt;}
.xad_c00089{left:204.000000pt;}
.x63_c00089{left:204.960000pt;}
.xac_c00089{left:207.626667pt;}
.x2e_c00089{left:210.666667pt;}
.x9c_c00089{left:212.000000pt;}
.x7d_c00089{left:213.706667pt;}
.xae_c00089{left:216.000000pt;}
.x55_c00089{left:217.706667pt;}
.x4c_c00089{left:218.666667pt;}
.xb6_c00089{left:220.000000pt;}
.x14_c00089{left:221.333333pt;}
.xb5_c00089{left:224.000000pt;}
.x5e_c00089{left:224.960000pt;}
.xa9_c00089{left:227.626667pt;}
.xa0_c00089{left:228.960000pt;}
.x1a_c00089{left:231.626667pt;}
.xb2_c00089{left:233.333333pt;}
.x15_c00089{left:236.960000pt;}
.x39_c00089{left:238.293333pt;}
.xaf_c00089{left:240.000000pt;}
.xbb_c00089{left:241.706667pt;}
.x84_c00089{left:245.333333pt;}
.x24_c00089{left:247.040000pt;}
.xba_c00089{left:248.000000pt;}
.x56_c00089{left:253.706667pt;}
.xb9_c00089{left:256.373333pt;}
.x5_c00089{left:257.333333pt;}
.x1b_c00089{left:260.000000pt;}
.x6_c00089{left:266.666667pt;}
.x76_c00089{left:269.706667pt;}
.x41_c00089{left:270.666667pt;}
.x85_c00089{left:273.706667pt;}
.x2f_c00089{left:274.666667pt;}
.x67_c00089{left:276.960000pt;}
.x7_c00089{left:280.960000pt;}
.x4d_c00089{left:286.666667pt;}
.x6d_c00089{left:291.626667pt;}
.x1c_c00089{left:293.333333pt;}
.xb7_c00089{left:296.000000pt;}
.x90_c00089{left:297.333333pt;}
.x86_c00089{left:299.040000pt;}
.x42_c00089{left:300.373333pt;}
.x3a_c00089{left:302.293333pt;}
.x5f_c00089{left:304.373333pt;}
.x8_c00089{left:307.240000pt;}
.x8b_c00089{left:310.666667pt;}
.x6e_c00089{left:312.000000pt;}
.x87_c00089{left:313.333333pt;}
.x25_c00089{left:318.293333pt;}
.x9_c00089{left:320.000000pt;}
.x4e_c00089{left:322.666667pt;}
.x16_c00089{left:328.000000pt;}
.x9d_c00089{left:332.000000pt;}
.xa1_c00089{left:333.333333pt;}
.xa_c00089{left:334.666667pt;}
.x26_c00089{left:336.000000pt;}
.x91_c00089{left:337.333333pt;}
.x8c_c00089{left:339.040000pt;}
.x64_c00089{left:340.000000pt;}
.x30_c00089{left:344.373333pt;}
.x60_c00089{left:345.333333pt;}
.x4f_c00089{left:346.666667pt;}
.xb_c00089{left:349.333333pt;}
.x43_c00089{left:352.960000pt;}
.x2_c00089{left:356.000000pt;}
.x57_c00089{left:360.760000pt;}
.xc_c00089{left:363.626667pt;}
.x7e_c00089{left:365.333333pt;}
.x17_c00089{left:366.666667pt;}
.x31_c00089{left:368.000000pt;}
.x6f_c00089{left:369.333333pt;}
.xb4_c00089{left:372.000000pt;}
.xa5_c00089{left:373.333333pt;}
.x61_c00089{left:376.373333pt;}
.x68_c00089{left:377.706667pt;}
.x77_c00089{left:381.706667pt;}
.x1d_c00089{left:383.626667pt;}
.x50_c00089{left:387.626667pt;}
.x65_c00089{left:397.706667pt;}
.x88_c00089{left:399.040000pt;}
.xa3_c00089{left:400.000000pt;}
.xd_c00089{left:400.960000pt;}
.x51_c00089{left:403.040000pt;}
.x78_c00089{left:405.333333pt;}
.x3b_c00089{left:407.626667pt;}
.x62_c00089{left:409.333333pt;}
.x27_c00089{left:412.373333pt;}
.x32_c00089{left:413.706667pt;}
.x70_c00089{left:419.040000pt;}
.x44_c00089{left:426.293333pt;}
.xe_c00089{left:429.706667pt;}
.x79_c00089{left:433.333333pt;}
.x8d_c00089{left:434.666667pt;}
.x9e_c00089{left:436.000000pt;}
.x92_c00089{left:437.333333pt;}
.xb1_c00089{left:438.666667pt;}
.xa6_c00089{left:441.333333pt;}
.x7f_c00089{left:442.293333pt;}
.x45_c00089{left:444.373333pt;}
.xaa_c00089{left:445.333333pt;}
.x33_c00089{left:446.293333pt;}
.x58_c00089{left:453.333333pt;}
.x3c_c00089{left:454.666667pt;}
.x80_c00089{left:458.293333pt;}
.x8e_c00089{left:465.333333pt;}
.xf_c00089{left:466.666667pt;}
.x9b_c00089{left:469.333333pt;}
.x46_c00089{left:471.040000pt;}
.x93_c00089{left:473.333333pt;}
.x3d_c00089{left:474.293333pt;}
.x28_c00089{left:476.000000pt;}
.x59_c00089{left:482.293333pt;}
.x71_c00089{left:483.626667pt;}
.x1e_c00089{left:496.000000pt;}
.x7a_c00089{left:501.333333pt;}
.x94_c00089{left:505.333333pt;}
.x72_c00089{left:509.333333pt;}
.x34_c00089{left:512.000000pt;}
.x69_c00089{left:514.293333pt;}
.x1f_c00089{left:519.040000pt;}
.x52_c00089{left:521.333333pt;}
.x81_c00089{left:524.000000pt;}
.x5a_c00089{left:526.293333pt;}
.x29_c00089{left:531.626667pt;}
.x98_c00089{left:533.333333pt;}
.x10_c00089{left:534.666667pt;}
.x95_c00089{left:537.333333pt;}
.xa7_c00089{left:538.666667pt;}
.x35_c00089{left:540.373333pt;}
.x5b_c00089{left:555.040000pt;}
.x20_c00089{left:556.000000pt;}
.x47_c00089{left:560.960000pt;}
.x73_c00089{left:564.373333pt;}
.x82_c00089{left:566.293333pt;}
.x36_c00089{left:569.333333pt;}
.x21_c00089{left:572.000000pt;}
.x6a_c00089{left:573.333333pt;}
.x3e_c00089{left:574.666667pt;}
.x9f_c00089{left:577.333333pt;}
.x48_c00089{left:579.040000pt;}
.x11_c00089{left:580.000000pt;}
.x2a_c00089{left:581.333333pt;}
.x89_c00089{left:582.666667pt;}
.x7b_c00089{left:589.333333pt;}
.x66_c00089{left:592.000000pt;}
.x6b_c00089{left:596.000000pt;}
.x74_c00089{left:597.333333pt;}
.x99_c00089{left:601.333333pt;}
.xa2_c00089{left:602.666667pt;}
.x49_c00089{left:604.000000pt;}
.x96_c00089{left:605.333333pt;}
.xa8_c00089{left:606.666667pt;}
.x9a_c00089{left:609.333333pt;}
.x22_c00089{left:610.293333pt;}
.x2b_c00089{left:612.000000pt;}
.x8a_c00089{left:613.706667pt;}
.x53_c00089{left:620.000000pt;}
.x37_c00089{left:627.040000pt;}
.x3f_c00089{left:631.040000pt;}
.x4a_c00089{left:640.000000pt;}
}





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

.ir_c00090:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00090{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00090;src:url('chunks/assets/font_cbcbe47b399e6c6b8155a1e7.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mcc_c00090{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.md9_c00090{transform:matrix(0.344118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344118,0.000000,0.000000,0.250000,0,0);}
.md7_c00090{transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);}
.m6a_c00090{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m32_c00090{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m2f_c00090{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m94_c00090{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.md5_c00090{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.me7_c00090{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m7d_c00090{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mec_c00090{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m67_c00090{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mcf_c00090{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m2e_c00090{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m41_c00090{transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);}
.m5d_c00090{transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);}
.m3c_c00090{transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);}
.m102_c00090{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.mcd_c00090{transform:matrix(0.393321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393321,0.000000,0.000000,0.250000,0,0);}
.mee_c00090{transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);}
.m4c_c00090{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.md8_c00090{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m33_c00090{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m36_c00090{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.me9_c00090{transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);}
.m1b_c00090{transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);}
.m64_c00090{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.mc4_c00090{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.mb8_c00090{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.ma5_c00090{transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);}
.mf2_c00090{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.mf_c00090{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m81_c00090{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m52_c00090{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.me6_c00090{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.mc5_c00090{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m73_c00090{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.md3_c00090{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.ma1_c00090{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m44_c00090{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m21_c00090{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m104_c00090{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mdd_c00090{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.m10_c00090{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m7a_c00090{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.md6_c00090{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.ma4_c00090{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m38_c00090{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.mf3_c00090{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.mfb_c00090{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mae_c00090{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m85_c00090{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m3_c00090{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mbf_c00090{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m30_c00090{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m3e_c00090{transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);}
.m45_c00090{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m14_c00090{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m42_c00090{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m43_c00090{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mf5_c00090{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.ma2_c00090{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m4d_c00090{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m27_c00090{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.mc0_c00090{transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);}
.m2c_c00090{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m6b_c00090{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m5e_c00090{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m90_c00090{transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);}
.m26_c00090{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m0_c00090{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m48_c00090{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m4b_c00090{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m69_c00090{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.mfa_c00090{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.med_c00090{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.mdb_c00090{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m6d_c00090{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m3b_c00090{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.m20_c00090{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m9d_c00090{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.m4e_c00090{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m7b_c00090{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m29_c00090{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m22_c00090{transform:matrix(0.457563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457563,0.000000,0.000000,0.250000,0,0);}
.ma0_c00090{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.md4_c00090{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.m34_c00090{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.m39_c00090{transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);}
.m97_c00090{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m1d_c00090{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.md2_c00090{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.m9a_c00090{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m3d_c00090{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.mfd_c00090{transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);}
.m74_c00090{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.ma7_c00090{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.mc7_c00090{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mb0_c00090{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.me5_c00090{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m1c_c00090{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m35_c00090{transform:matrix(0.481092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481092,0.000000,0.000000,0.250000,0,0);}
.me3_c00090{transform:matrix(0.482365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482365,0.000000,0.000000,0.250000,0,0);}
.mbc_c00090{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m37_c00090{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m53_c00090{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m3a_c00090{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mc9_c00090{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mf8_c00090{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m6e_c00090{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mf6_c00090{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m70_c00090{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m9f_c00090{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m6f_c00090{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m3f_c00090{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m71_c00090{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.mc_c00090{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);}
.m7f_c00090{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m9e_c00090{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.me8_c00090{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m25_c00090{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m7c_c00090{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m15_c00090{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);}
.md0_c00090{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m5a_c00090{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m2d_c00090{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m72_c00090{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mcb_c00090{transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);}
.m8_c00090{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m49_c00090{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m95_c00090{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.mef_c00090{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_c00090{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.ma6_c00090{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m68_c00090{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m40_c00090{transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);}
.m4a_c00090{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m12_c00090{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.maf_c00090{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);}
.m5b_c00090{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mce_c00090{transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);}
.m9b_c00090{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m103_c00090{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m8a_c00090{transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);}
.mf4_c00090{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m80_c00090{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.mfc_c00090{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m89_c00090{transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);}
.m5_c00090{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m5c_c00090{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m1a_c00090{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m57_c00090{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m62_c00090{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m1f_c00090{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m8c_c00090{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m60_c00090{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m86_c00090{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m66_c00090{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m11_c00090{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m93_c00090{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.mb5_c00090{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m4f_c00090{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m59_c00090{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m28_c00090{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.me1_c00090{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m6_c00090{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.ma9_c00090{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);}
.mb1_c00090{transform:matrix(0.551176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551176,0.000000,0.000000,0.250000,0,0);}
.m75_c00090{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m18_c00090{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m61_c00090{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m23_c00090{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mc2_c00090{transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);}
.m101_c00090{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m84_c00090{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mba_c00090{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m55_c00090{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m16_c00090{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m24_c00090{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m83_c00090{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mdf_c00090{transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);}
.mb2_c00090{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.md1_c00090{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.md_c00090{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m7_c00090{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m54_c00090{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m56_c00090{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m4_c00090{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m65_c00090{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.mb3_c00090{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.me2_c00090{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.mbd_c00090{transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);}
.ma8_c00090{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.mb4_c00090{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m2_c00090{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m47_c00090{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mab_c00090{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m91_c00090{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);}
.m98_c00090{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m9c_c00090{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m96_c00090{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.mc3_c00090{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m9_c00090{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.mea_c00090{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.mb_c00090{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.m63_c00090{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.mf7_c00090{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m1_c00090{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m82_c00090{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m31_c00090{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mff_c00090{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.ma_c00090{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m19_c00090{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mb7_c00090{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mc6_c00090{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.mc1_c00090{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_c00090{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.mad_c00090{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.mb9_c00090{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m8b_c00090{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.mac_c00090{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.ma3_c00090{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m77_c00090{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m13_c00090{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m99_c00090{transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);}
.m8f_c00090{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.mf0_c00090{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.mf9_c00090{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m2b_c00090{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.me_c00090{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m5f_c00090{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mdc_c00090{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m8d_c00090{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.me0_c00090{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.me4_c00090{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mb6_c00090{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m78_c00090{transform:matrix(0.689412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689412,0.000000,0.000000,0.250000,0,0);}
.mde_c00090{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.mbb_c00090{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m17_c00090{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.mbe_c00090{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m8e_c00090{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);}
.meb_c00090{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.mf1_c00090{transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);}
.mfe_c00090{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m58_c00090{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m1e_c00090{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m50_c00090{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m79_c00090{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m87_c00090{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m76_c00090{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m7e_c00090{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m100_c00090{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m2a_c00090{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.mda_c00090{transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);}
.mca_c00090{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.mc8_c00090{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.m88_c00090{transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);}
.m92_c00090{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m51_c00090{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m46_c00090{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00090{vertical-align:0.000000px;}
.v3_c00090{vertical-align:1.680000px;}
.v2_c00090{vertical-align:6.000000px;}
.v1_c00090{vertical-align:7.680000px;}
.ls2_c00090{letter-spacing:0.000000px;}
.ls0_c00090{letter-spacing:8.817600px;}
.ls1_c00090{letter-spacing:12.657600px;}
.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;}
}
.ws1_c00090{word-spacing:-7.305001px;}
.ws2_c00090{word-spacing:-6.454845px;}
.ws4_c00090{word-spacing:-5.053163px;}
.ws5_c00090{word-spacing:0.000000px;}
.ws0_c00090{word-spacing:0.779342px;}
.ws3_c00090{word-spacing:5.135151px;}
.fc0_c00090{color:transparent;}
.fs6_c00090{font-size:3.420000px;}
.fs7_c00090{font-size:13.620000px;}
.fs4_c00090{font-size:18.720000px;}
.fs1_c00090{font-size:20.400000px;}
.fs3_c00090{font-size:25.500000px;}
.fs0_c00090{font-size:28.920000px;}
.fs5_c00090{font-size:32.340000px;}
.fs2_c00090{font-size:35.700000px;}
.y0_c00090{bottom:0.000000px;}
.ye5_c00090{bottom:251.745000px;}
.ye4_c00090{bottom:252.630000px;}
.ye3_c00090{bottom:253.050000px;}
.ye2_c00090{bottom:253.905000px;}
.ydd_c00090{bottom:269.970000px;}
.ydb_c00090{bottom:270.405000px;}
.ydf_c00090{bottom:271.245000px;}
.ye1_c00090{bottom:271.470000px;}
.ydc_c00090{bottom:272.970000px;}
.yde_c00090{bottom:273.405000px;}
.ye0_c00090{bottom:273.630000px;}
.yda_c00090{bottom:273.825000px;}
.yd6_c00090{bottom:289.905000px;}
.yd3_c00090{bottom:290.745000px;}
.yd8_c00090{bottom:290.970000px;}
.yd5_c00090{bottom:292.905000px;}
.yd7_c00090{bottom:293.970000px;}
.yd9_c00090{bottom:294.405000px;}
.yd4_c00090{bottom:294.420000px;}
.yd1_c00090{bottom:325.050000px;}
.ycd_c00090{bottom:325.470000px;}
.yd0_c00090{bottom:325.905000px;}
.ycf_c00090{bottom:326.130000px;}
.yd2_c00090{bottom:327.405000px;}
.yce_c00090{bottom:328.050000px;}
.yc5_c00090{bottom:339.825000px;}
.ycb_c00090{bottom:340.050000px;}
.ycc_c00090{bottom:340.470000px;}
.yc8_c00090{bottom:340.905000px;}
.yc7_c00090{bottom:341.130000px;}
.yc9_c00090{bottom:341.550000px;}
.yc6_c00090{bottom:341.970000px;}
.yc4_c00090{bottom:342.630000px;}
.yca_c00090{bottom:343.050000px;}
.yc2_c00090{bottom:354.825000px;}
.yc1_c00090{bottom:356.325000px;}
.yc3_c00090{bottom:356.970000px;}
.yc0_c00090{bottom:359.130000px;}
.yba_c00090{bottom:370.905000px;}
.ybd_c00090{bottom:371.325000px;}
.ybf_c00090{bottom:371.970000px;}
.ybe_c00090{bottom:372.405000px;}
.yb9_c00090{bottom:372.630000px;}
.ybb_c00090{bottom:373.050000px;}
.ybc_c00090{bottom:373.470000px;}
.yb7_c00090{bottom:384.825000px;}
.yb8_c00090{bottom:385.050000px;}
.yb5_c00090{bottom:385.905000px;}
.yb2_c00090{bottom:386.130000px;}
.yb3_c00090{bottom:386.970000px;}
.yb6_c00090{bottom:387.195000px;}
.yb4_c00090{bottom:388.050000px;}
.yaf_c00090{bottom:400.905000px;}
.yae_c00090{bottom:401.130000px;}
.yb1_c00090{bottom:402.195000px;}
.yb0_c00090{bottom:403.050000px;}
.yad_c00090{bottom:413.325000px;}
.ya8_c00090{bottom:413.970000px;}
.yaa_c00090{bottom:414.825000px;}
.ya9_c00090{bottom:415.905000px;}
.ya7_c00090{bottom:416.325000px;}
.yac_c00090{bottom:416.970000px;}
.yab_c00090{bottom:418.050000px;}
.ya5_c00090{bottom:427.470000px;}
.ya3_c00090{bottom:429.825000px;}
.ya6_c00090{bottom:430.470000px;}
.ya4_c00090{bottom:430.905000px;}
.ya2_c00090{bottom:431.970000px;}
.ya1_c00090{bottom:445.050000px;}
.ya0_c00090{bottom:445.905000px;}
.y9e_c00090{bottom:446.130000px;}
.y9f_c00090{bottom:448.050000px;}
.y9a_c00090{bottom:459.405000px;}
.y9d_c00090{bottom:459.630000px;}
.y99_c00090{bottom:460.050000px;}
.y9c_c00090{bottom:460.470000px;}
.y9b_c00090{bottom:460.695000px;}
.y96_c00090{bottom:474.405000px;}
.y98_c00090{bottom:475.695000px;}
.y97_c00090{bottom:476.550000px;}
.y95_c00090{bottom:487.470000px;}
.y94_c00090{bottom:488.325000px;}
.y93_c00090{bottom:489.405000px;}
.y92_c00090{bottom:489.630000px;}
.y91_c00090{bottom:490.470000px;}
.y90_c00090{bottom:491.550000px;}
.y8d_c00090{bottom:502.470000px;}
.y8f_c00090{bottom:503.325000px;}
.y8c_c00090{bottom:504.405000px;}
.y8b_c00090{bottom:504.630000px;}
.y8a_c00090{bottom:505.470000px;}
.y8e_c00090{bottom:506.550000px;}
.y89_c00090{bottom:517.905000px;}
.y83_c00090{bottom:518.325000px;}
.y82_c00090{bottom:518.550000px;}
.y88_c00090{bottom:518.970000px;}
.y87_c00090{bottom:519.405000px;}
.y84_c00090{bottom:519.630000px;}
.y86_c00090{bottom:520.470000px;}
.y85_c00090{bottom:521.550000px;}
.y81_c00090{bottom:533.325000px;}
.y7e_c00090{bottom:534.405000px;}
.y7f_c00090{bottom:535.695000px;}
.y80_c00090{bottom:536.550000px;}
.y7d_c00090{bottom:547.905000px;}
.y79_c00090{bottom:548.550000px;}
.y7a_c00090{bottom:549.405000px;}
.y7b_c00090{bottom:550.470000px;}
.y7c_c00090{bottom:551.550000px;}
.y76_c00090{bottom:562.050000px;}
.y78_c00090{bottom:562.905000px;}
.y75_c00090{bottom:564.630000px;}
.y77_c00090{bottom:565.050000px;}
.y73_c00090{bottom:576.825000px;}
.y72_c00090{bottom:577.050000px;}
.y6c_c00090{bottom:577.470000px;}
.y71_c00090{bottom:577.905000px;}
.y6d_c00090{bottom:578.325000px;}
.y70_c00090{bottom:578.970000px;}
.y6f_c00090{bottom:579.405000px;}
.y74_c00090{bottom:580.050000px;}
.y6e_c00090{bottom:580.470000px;}
.y6b_c00090{bottom:591.825000px;}
.y6a_c00090{bottom:595.050000px;}
.y69_c00090{bottom:607.905000px;}
.y67_c00090{bottom:608.130000px;}
.y68_c00090{bottom:608.970000px;}
.y66_c00090{bottom:622.905000px;}
.y64_c00090{bottom:623.970000px;}
.y65_c00090{bottom:625.050000px;}
.y63_c00090{bottom:636.825000px;}
.y60_c00090{bottom:637.050000px;}
.y62_c00090{bottom:637.905000px;}
.y5f_c00090{bottom:638.970000px;}
.y5e_c00090{bottom:639.195000px;}
.y61_c00090{bottom:640.050000px;}
.y59_c00090{bottom:668.745000px;}
.y5b_c00090{bottom:670.245000px;}
.y5d_c00090{bottom:671.130000px;}
.y5a_c00090{bottom:672.405000px;}
.y5c_c00090{bottom:673.905000px;}
.y54_c00090{bottom:689.745000px;}
.y58_c00090{bottom:691.245000px;}
.y53_c00090{bottom:691.905000px;}
.y56_c00090{bottom:692.130000px;}
.y55_c00090{bottom:692.970000px;}
.y57_c00090{bottom:693.405000px;}
.y4f_c00090{bottom:709.245000px;}
.y51_c00090{bottom:710.745000px;}
.y4d_c00090{bottom:711.405000px;}
.y4e_c00090{bottom:711.630000px;}
.y50_c00090{bottom:712.470000px;}
.y52_c00090{bottom:712.905000px;}
.y4b_c00090{bottom:727.905000px;}
.y4c_c00090{bottom:728.745000px;}
.y49_c00090{bottom:729.825000px;}
.y4a_c00090{bottom:730.905000px;}
.y45_c00090{bottom:748.245000px;}
.y47_c00090{bottom:749.745000px;}
.y46_c00090{bottom:750.405000px;}
.y48_c00090{bottom:750.630000px;}
.y43_c00090{bottom:751.905000px;}
.y44_c00090{bottom:751.920000px;}
.y41_c00090{bottom:768.405000px;}
.y40_c00090{bottom:769.245000px;}
.y42_c00090{bottom:769.470000px;}
.y3d_c00090{bottom:770.970000px;}
.y3e_c00090{bottom:771.405000px;}
.y3f_c00090{bottom:772.470000px;}
.y39_c00090{bottom:788.745000px;}
.y3b_c00090{bottom:789.825000px;}
.y3a_c00090{bottom:790.905000px;}
.y3c_c00090{bottom:791.970000px;}
.y36_c00090{bottom:808.245000px;}
.y34_c00090{bottom:810.405000px;}
.y37_c00090{bottom:810.630000px;}
.y38_c00090{bottom:811.470000px;}
.y35_c00090{bottom:811.920000px;}
.y33_c00090{bottom:827.745000px;}
.y30_c00090{bottom:829.905000px;}
.y31_c00090{bottom:830.130000px;}
.y32_c00090{bottom:831.420000px;}
.y2e_c00090{bottom:846.405000px;}
.y2b_c00090{bottom:847.245000px;}
.y2f_c00090{bottom:847.905000px;}
.y2d_c00090{bottom:848.325000px;}
.y2c_c00090{bottom:849.420000px;}
.y27_c00090{bottom:866.745000px;}
.y28_c00090{bottom:868.245000px;}
.y2a_c00090{bottom:870.405000px;}
.y29_c00090{bottom:870.420000px;}
.y25_c00090{bottom:893.970000px;}
.y23_c00090{bottom:894.825000px;}
.y24_c00090{bottom:895.905000px;}
.y26_c00090{bottom:896.970000px;}
.y21_c00090{bottom:914.325000px;}
.y22_c00090{bottom:914.550000px;}
.y20_c00090{bottom:915.405000px;}
.y1e_c00090{bottom:940.245000px;}
.y1f_c00090{bottom:941.745000px;}
.y1b_c00090{bottom:980.745000px;}
.y1d_c00090{bottom:982.470000px;}
.y1c_c00090{bottom:982.905000px;}
.y1a_c00090{bottom:998.745000px;}
.y15_c00090{bottom:999.825000px;}
.y17_c00090{bottom:1000.245000px;}
.y16_c00090{bottom:1000.905000px;}
.y19_c00090{bottom:1001.970000px;}
.y14_c00090{bottom:1002.405000px;}
.y18_c00090{bottom:1003.470000px;}
.y13_c00090{bottom:1019.325000px;}
.yf_c00090{bottom:1019.745000px;}
.y12_c00090{bottom:1020.630000px;}
.y11_c00090{bottom:1020.825000px;}
.y10_c00090{bottom:1021.905000px;}
.ye_c00090{bottom:1039.245000px;}
.yb_c00090{bottom:1039.470000px;}
.ya_c00090{bottom:1040.970000px;}
.y9_c00090{bottom:1041.405000px;}
.yd_c00090{bottom:1041.630000px;}
.yc_c00090{bottom:1042.470000px;}
.y5_c00090{bottom:1057.905000px;}
.y4_c00090{bottom:1058.745000px;}
.y7_c00090{bottom:1058.970000px;}
.y3_c00090{bottom:1060.905000px;}
.y8_c00090{bottom:1061.130000px;}
.y6_c00090{bottom:1061.970000px;}
.y2_c00090{bottom:1099.050000px;}
.y1_c00090{bottom:1099.905000px;}
.h7_c00090{height:4.206533px;}
.h8_c00090{height:16.752334px;}
.h5_c00090{height:23.025234px;}
.h2_c00090{height:25.091602px;}
.h4_c00090{height:31.364502px;}
.hb_c00090{height:33.044502px;}
.h1_c00090{height:35.571035px;}
.h9_c00090{height:39.044502px;}
.h6_c00090{height:39.777568px;}
.h3_c00090{height:43.910303px;}
.ha_c00090{height:45.777568px;}
.h0_c00090{height:1335.000000px;}
.w0_c00090{width:880.500000px;}
.x0_c00090{left:0.000000px;}
.x3_c00090{left:151.920000px;}
.x7a_c00090{left:153.000000px;}
.xa4_c00090{left:154.080000px;}
.xdc_c00090{left:160.080000px;}
.xd4_c00090{left:165.000000px;}
.xad_c00090{left:166.500000px;}
.x46_c00090{left:168.000000px;}
.x73_c00090{left:169.080000px;}
.x6d_c00090{left:171.000000px;}
.x4_c00090{left:180.420000px;}
.xac_c00090{left:183.420000px;}
.x8b_c00090{left:184.500000px;}
.xa7_c00090{left:186.000000px;}
.x82_c00090{left:187.500000px;}
.xcc_c00090{left:190.500000px;}
.xe4_c00090{left:191.580000px;}
.xa5_c00090{left:198.000000px;}
.x37_c00090{left:199.500000px;}
.x4c_c00090{left:208.920000px;}
.xd5_c00090{left:210.000000px;}
.xc2_c00090{left:211.080000px;}
.x12_c00090{left:214.920000px;}
.x93_c00090{left:216.420000px;}
.xf8_c00090{left:217.500000px;}
.xbc_c00090{left:220.500000px;}
.xf4_c00090{left:223.500000px;}
.x38_c00090{left:225.000000px;}
.x83_c00090{left:228.000000px;}
.x7b_c00090{left:229.080000px;}
.x5_c00090{left:230.580000px;}
.x2c_c00090{left:234.000000px;}
.xd6_c00090{left:237.420000px;}
.x8c_c00090{left:238.500000px;}
.xdd_c00090{left:240.000000px;}
.x13_c00090{left:241.920000px;}
.x21_c00090{left:246.000000px;}
.x2d_c00090{left:247.500000px;}
.x57_c00090{left:249.000000px;}
.x6_c00090{left:250.920000px;}
.x74_c00090{left:252.000000px;}
.xcd_c00090{left:253.500000px;}
.xa6_c00090{left:255.000000px;}
.x39_c00090{left:256.080000px;}
.x4f_c00090{left:258.000000px;}
.x94_c00090{left:259.500000px;}
.x5b_c00090{left:261.000000px;}
.x22_c00090{left:262.500000px;}
.xbe_c00090{left:264.000000px;}
.x4d_c00090{left:267.000000px;}
.x14_c00090{left:270.000000px;}
.xb6_c00090{left:271.500000px;}
.x6e_c00090{left:273.000000px;}
.x2e_c00090{left:274.080000px;}
.xde_c00090{left:276.420000px;}
.x95_c00090{left:277.920000px;}
.x7_c00090{left:279.000000px;}
.x5c_c00090{left:280.500000px;}
.xae_c00090{left:281.580000px;}
.x64_c00090{left:284.580000px;}
.x41_c00090{left:286.500000px;}
.x4e_c00090{left:288.000000px;}
.xe0_c00090{left:289.500000px;}
.x47_c00090{left:290.580000px;}
.x3a_c00090{left:292.920000px;}
.xaf_c00090{left:296.145000px;}
.x58_c00090{left:300.000000px;}
.x3e_c00090{left:301.500000px;}
.xdf_c00090{left:303.000000px;}
.x15_c00090{left:304.080000px;}
.xb7_c00090{left:307.920000px;}
.x8d_c00090{left:309.000000px;}
.x5d_c00090{left:310.500000px;}
.x23_c00090{left:312.000000px;}
.xce_c00090{left:313.500000px;}
.x65_c00090{left:315.420000px;}
.xda_c00090{left:317.355000px;}
.x3b_c00090{left:319.500000px;}
.x16_c00090{left:321.420000px;}
.xc5_c00090{left:323.145000px;}
.x8_c00090{left:325.920000px;}
.xbd_c00090{left:327.000000px;}
.x96_c00090{left:328.500000px;}
.xf0_c00090{left:331.080000px;}
.x9e_c00090{left:334.500000px;}
.xa8_c00090{left:335.580000px;}
.x84_c00090{left:337.500000px;}
.x7c_c00090{left:339.000000px;}
.x42_c00090{left:343.080000px;}
.xd1_c00090{left:345.645000px;}
.x50_c00090{left:346.920000px;}
.xbf_c00090{left:348.000000px;}
.x3c_c00090{left:349.500000px;}
.xec_c00090{left:351.420000px;}
.x24_c00090{left:352.500000px;}
.x8e_c00090{left:353.580000px;}
.xa9_c00090{left:355.080000px;}
.xc3_c00090{left:357.000000px;}
.xcf_c00090{left:358.500000px;}
.x2f_c00090{left:360.000000px;}
.x5e_c00090{left:361.500000px;}
.x43_c00090{left:362.580000px;}
.xf5_c00090{left:364.500000px;}
.x25_c00090{left:366.000000px;}
.x7d_c00090{left:369.000000px;}
.xf9_c00090{left:373.500000px;}
.x85_c00090{left:375.000000px;}
.xb0_c00090{left:376.500000px;}
.xe5_c00090{left:380.580000px;}
.x66_c00090{left:382.080000px;}
.xed_c00090{left:385.500000px;}
.x8f_c00090{left:387.000000px;}
.x48_c00090{left:388.500000px;}
.x17_c00090{left:393.000000px;}
.xe7_c00090{left:394.500000px;}
.x59_c00090{left:396.000000px;}
.x2_c00090{left:397.500000px;}
.x9_c00090{left:399.420000px;}
.xe1_c00090{left:400.500000px;}
.x3d_c00090{left:402.000000px;}
.xc6_c00090{left:405.000000px;}
.x90_c00090{left:406.920000px;}
.x5f_c00090{left:408.420000px;}
.xe2_c00090{left:411.000000px;}
.x67_c00090{left:412.920000px;}
.x49_c00090{left:414.000000px;}
.xd2_c00090{left:417.420000px;}
.x97_c00090{left:418.920000px;}
.xee_c00090{left:420.000000px;}
.x26_c00090{left:421.500000px;}
.x51_c00090{left:423.000000px;}
.x6f_c00090{left:424.500000px;}
.x86_c00090{left:426.000000px;}
.xd7_c00090{left:427.080000px;}
.xa_c00090{left:433.500000px;}
.x18_c00090{left:435.000000px;}
.xb1_c00090{left:436.080000px;}
.x75_c00090{left:438.420000px;}
.x68_c00090{left:439.920000px;}
.xc0_c00090{left:442.500000px;}
.x60_c00090{left:444.000000px;}
.x44_c00090{left:445.500000px;}
.xfa_c00090{left:448.500000px;}
.xef_c00090{left:450.420000px;}
.x9f_c00090{left:453.420000px;}
.x30_c00090{left:456.420000px;}
.x70_c00090{left:457.500000px;}
.xc7_c00090{left:459.000000px;}
.xb8_c00090{left:460.920000px;}
.xf1_c00090{left:462.000000px;}
.x19_c00090{left:463.920000px;}
.xdb_c00090{left:465.000000px;}
.x3f_c00090{left:466.080000px;}
.x76_c00090{left:468.000000px;}
.x61_c00090{left:470.145000px;}
.x27_c00090{left:476.580000px;}
.xaa_c00090{left:478.500000px;}
.x5a_c00090{left:481.080000px;}
.xb9_c00090{left:482.580000px;}
.xb_c00090{left:484.500000px;}
.x98_c00090{left:486.000000px;}
.x4a_c00090{left:487.500000px;}
.x52_c00090{left:488.775000px;}
.xb2_c00090{left:492.420000px;}
.x71_c00090{left:493.500000px;}
.xf6_c00090{left:495.000000px;}
.x28_c00090{left:496.920000px;}
.x69_c00090{left:501.000000px;}
.x1a_c00090{left:504.000000px;}
.x4b_c00090{left:506.580000px;}
.xba_c00090{left:510.000000px;}
.xd8_c00090{left:511.080000px;}
.xc_c00090{left:512.580000px;}
.xe8_c00090{left:514.500000px;}
.xd0_c00090{left:516.000000px;}
.xc4_c00090{left:517.920000px;}
.x6a_c00090{left:520.500000px;}
.x31_c00090{left:522.000000px;}
.x29_c00090{left:523.500000px;}
.x53_c00090{left:527.580000px;}
.x62_c00090{left:530.580000px;}
.x87_c00090{left:535.500000px;}
.x72_c00090{left:537.000000px;}
.xc8_c00090{left:538.080000px;}
.xa0_c00090{left:541.500000px;}
.x40_c00090{left:544.275000px;}
.x99_c00090{left:547.500000px;}
.x1b_c00090{left:549.420000px;}
.xb3_c00090{left:551.580000px;}
.x77_c00090{left:553.500000px;}
.x54_c00090{left:555.000000px;}
.xfb_c00090{left:556.500000px;}
.xd_c00090{left:557.580000px;}
.x45_c00090{left:561.000000px;}
.xd3_c00090{left:563.580000px;}
.x32_c00090{left:565.500000px;}
.xe9_c00090{left:567.420000px;}
.x7e_c00090{left:568.920000px;}
.x63_c00090{left:573.000000px;}
.x9a_c00090{left:574.080000px;}
.xf7_c00090{left:576.000000px;}
.xe_c00090{left:577.920000px;}
.x33_c00090{left:579.000000px;}
.x1c_c00090{left:585.000000px;}
.xc9_c00090{left:589.500000px;}
.xb4_c00090{left:594.000000px;}
.xea_c00090{left:595.500000px;}
.xa1_c00090{left:598.500000px;}
.xe3_c00090{left:600.000000px;}
.x88_c00090{left:601.500000px;}
.x34_c00090{left:606.000000px;}
.x7f_c00090{left:607.920000px;}
.x1d_c00090{left:609.000000px;}
.x9b_c00090{left:610.080000px;}
.xe6_c00090{left:612.420000px;}
.x2a_c00090{left:616.500000px;}
.x55_c00090{left:617.775000px;}
.xab_c00090{left:624.000000px;}
.x78_c00090{left:625.920000px;}
.x89_c00090{left:627.000000px;}
.xf2_c00090{left:628.500000px;}
.xca_c00090{left:629.580000px;}
.x1e_c00090{left:639.000000px;}
.x35_c00090{left:640.500000px;}
.x80_c00090{left:643.500000px;}
.xf_c00090{left:646.500000px;}
.x91_c00090{left:647.580000px;}
.x2b_c00090{left:649.500000px;}
.xbb_c00090{left:655.080000px;}
.xa2_c00090{left:656.580000px;}
.x56_c00090{left:658.500000px;}
.x1f_c00090{left:660.000000px;}
.x6b_c00090{left:661.080000px;}
.xf3_c00090{left:663.000000px;}
.x10_c00090{left:666.420000px;}
.xcb_c00090{left:669.000000px;}
.xa3_c00090{left:670.500000px;}
.x36_c00090{left:674.580000px;}
.x92_c00090{left:678.000000px;}
.x9c_c00090{left:681.000000px;}
.xd9_c00090{left:682.080000px;}
.x8a_c00090{left:683.580000px;}
.xb5_c00090{left:688.500000px;}
.x6c_c00090{left:691.500000px;}
.xeb_c00090{left:693.420000px;}
.xc1_c00090{left:696.000000px;}
.x79_c00090{left:697.920000px;}
.x9d_c00090{left:703.500000px;}
.x20_c00090{left:706.920000px;}
.x81_c00090{left:708.420000px;}
.x11_c00090{left:709.500000px;}
.x1_c00090{left:710.580000px;}
@media print{
.v0_c00090{vertical-align:0.000000pt;}
.v3_c00090{vertical-align:1.493333pt;}
.v2_c00090{vertical-align:5.333333pt;}
.v1_c00090{vertical-align:6.826667pt;}
.ls2_c00090{letter-spacing:0.000000pt;}
.ls0_c00090{letter-spacing:7.837867pt;}
.ls1_c00090{letter-spacing:11.251200pt;}
.ws1_c00090{word-spacing:-6.493334pt;}
.ws2_c00090{word-spacing:-5.737640pt;}
.ws4_c00090{word-spacing:-4.491701pt;}
.ws5_c00090{word-spacing:0.000000pt;}
.ws0_c00090{word-spacing:0.692749pt;}
.ws3_c00090{word-spacing:4.564579pt;}
.fs6_c00090{font-size:3.040000pt;}
.fs7_c00090{font-size:12.106667pt;}
.fs4_c00090{font-size:16.640000pt;}
.fs1_c00090{font-size:18.133333pt;}
.fs3_c00090{font-size:22.666667pt;}
.fs0_c00090{font-size:25.706667pt;}
.fs5_c00090{font-size:28.746667pt;}
.fs2_c00090{font-size:31.733333pt;}
.y0_c00090{bottom:0.000000pt;}
.ye5_c00090{bottom:223.773333pt;}
.ye4_c00090{bottom:224.560000pt;}
.ye3_c00090{bottom:224.933333pt;}
.ye2_c00090{bottom:225.693333pt;}
.ydd_c00090{bottom:239.973333pt;}
.ydb_c00090{bottom:240.360000pt;}
.ydf_c00090{bottom:241.106667pt;}
.ye1_c00090{bottom:241.306667pt;}
.ydc_c00090{bottom:242.640000pt;}
.yde_c00090{bottom:243.026667pt;}
.ye0_c00090{bottom:243.226667pt;}
.yda_c00090{bottom:243.400000pt;}
.yd6_c00090{bottom:257.693333pt;}
.yd3_c00090{bottom:258.440000pt;}
.yd8_c00090{bottom:258.640000pt;}
.yd5_c00090{bottom:260.360000pt;}
.yd7_c00090{bottom:261.306667pt;}
.yd9_c00090{bottom:261.693333pt;}
.yd4_c00090{bottom:261.706667pt;}
.yd1_c00090{bottom:288.933333pt;}
.ycd_c00090{bottom:289.306667pt;}
.yd0_c00090{bottom:289.693333pt;}
.ycf_c00090{bottom:289.893333pt;}
.yd2_c00090{bottom:291.026667pt;}
.yce_c00090{bottom:291.600000pt;}
.yc5_c00090{bottom:302.066667pt;}
.ycb_c00090{bottom:302.266667pt;}
.ycc_c00090{bottom:302.640000pt;}
.yc8_c00090{bottom:303.026667pt;}
.yc7_c00090{bottom:303.226667pt;}
.yc9_c00090{bottom:303.600000pt;}
.yc6_c00090{bottom:303.973333pt;}
.yc4_c00090{bottom:304.560000pt;}
.yca_c00090{bottom:304.933333pt;}
.yc2_c00090{bottom:315.400000pt;}
.yc1_c00090{bottom:316.733333pt;}
.yc3_c00090{bottom:317.306667pt;}
.yc0_c00090{bottom:319.226667pt;}
.yba_c00090{bottom:329.693333pt;}
.ybd_c00090{bottom:330.066667pt;}
.ybf_c00090{bottom:330.640000pt;}
.ybe_c00090{bottom:331.026667pt;}
.yb9_c00090{bottom:331.226667pt;}
.ybb_c00090{bottom:331.600000pt;}
.ybc_c00090{bottom:331.973333pt;}
.yb7_c00090{bottom:342.066667pt;}
.yb8_c00090{bottom:342.266667pt;}
.yb5_c00090{bottom:343.026667pt;}
.yb2_c00090{bottom:343.226667pt;}
.yb3_c00090{bottom:343.973333pt;}
.yb6_c00090{bottom:344.173333pt;}
.yb4_c00090{bottom:344.933333pt;}
.yaf_c00090{bottom:356.360000pt;}
.yae_c00090{bottom:356.560000pt;}
.yb1_c00090{bottom:357.506667pt;}
.yb0_c00090{bottom:358.266667pt;}
.yad_c00090{bottom:367.400000pt;}
.ya8_c00090{bottom:367.973333pt;}
.yaa_c00090{bottom:368.733333pt;}
.ya9_c00090{bottom:369.693333pt;}
.ya7_c00090{bottom:370.066667pt;}
.yac_c00090{bottom:370.640000pt;}
.yab_c00090{bottom:371.600000pt;}
.ya5_c00090{bottom:379.973333pt;}
.ya3_c00090{bottom:382.066667pt;}
.ya6_c00090{bottom:382.640000pt;}
.ya4_c00090{bottom:383.026667pt;}
.ya2_c00090{bottom:383.973333pt;}
.ya1_c00090{bottom:395.600000pt;}
.ya0_c00090{bottom:396.360000pt;}
.y9e_c00090{bottom:396.560000pt;}
.y9f_c00090{bottom:398.266667pt;}
.y9a_c00090{bottom:408.360000pt;}
.y9d_c00090{bottom:408.560000pt;}
.y99_c00090{bottom:408.933333pt;}
.y9c_c00090{bottom:409.306667pt;}
.y9b_c00090{bottom:409.506667pt;}
.y96_c00090{bottom:421.693333pt;}
.y98_c00090{bottom:422.840000pt;}
.y97_c00090{bottom:423.600000pt;}
.y95_c00090{bottom:433.306667pt;}
.y94_c00090{bottom:434.066667pt;}
.y93_c00090{bottom:435.026667pt;}
.y92_c00090{bottom:435.226667pt;}
.y91_c00090{bottom:435.973333pt;}
.y90_c00090{bottom:436.933333pt;}
.y8d_c00090{bottom:446.640000pt;}
.y8f_c00090{bottom:447.400000pt;}
.y8c_c00090{bottom:448.360000pt;}
.y8b_c00090{bottom:448.560000pt;}
.y8a_c00090{bottom:449.306667pt;}
.y8e_c00090{bottom:450.266667pt;}
.y89_c00090{bottom:460.360000pt;}
.y83_c00090{bottom:460.733333pt;}
.y82_c00090{bottom:460.933333pt;}
.y88_c00090{bottom:461.306667pt;}
.y87_c00090{bottom:461.693333pt;}
.y84_c00090{bottom:461.893333pt;}
.y86_c00090{bottom:462.640000pt;}
.y85_c00090{bottom:463.600000pt;}
.y81_c00090{bottom:474.066667pt;}
.y7e_c00090{bottom:475.026667pt;}
.y7f_c00090{bottom:476.173333pt;}
.y80_c00090{bottom:476.933333pt;}
.y7d_c00090{bottom:487.026667pt;}
.y79_c00090{bottom:487.600000pt;}
.y7a_c00090{bottom:488.360000pt;}
.y7b_c00090{bottom:489.306667pt;}
.y7c_c00090{bottom:490.266667pt;}
.y76_c00090{bottom:499.600000pt;}
.y78_c00090{bottom:500.360000pt;}
.y75_c00090{bottom:501.893333pt;}
.y77_c00090{bottom:502.266667pt;}
.y73_c00090{bottom:512.733333pt;}
.y72_c00090{bottom:512.933333pt;}
.y6c_c00090{bottom:513.306667pt;}
.y71_c00090{bottom:513.693333pt;}
.y6d_c00090{bottom:514.066667pt;}
.y70_c00090{bottom:514.640000pt;}
.y6f_c00090{bottom:515.026667pt;}
.y74_c00090{bottom:515.600000pt;}
.y6e_c00090{bottom:515.973333pt;}
.y6b_c00090{bottom:526.066667pt;}
.y6a_c00090{bottom:528.933333pt;}
.y69_c00090{bottom:540.360000pt;}
.y67_c00090{bottom:540.560000pt;}
.y68_c00090{bottom:541.306667pt;}
.y66_c00090{bottom:553.693333pt;}
.y64_c00090{bottom:554.640000pt;}
.y65_c00090{bottom:555.600000pt;}
.y63_c00090{bottom:566.066667pt;}
.y60_c00090{bottom:566.266667pt;}
.y62_c00090{bottom:567.026667pt;}
.y5f_c00090{bottom:567.973333pt;}
.y5e_c00090{bottom:568.173333pt;}
.y61_c00090{bottom:568.933333pt;}
.y59_c00090{bottom:594.440000pt;}
.y5b_c00090{bottom:595.773333pt;}
.y5d_c00090{bottom:596.560000pt;}
.y5a_c00090{bottom:597.693333pt;}
.y5c_c00090{bottom:599.026667pt;}
.y54_c00090{bottom:613.106667pt;}
.y58_c00090{bottom:614.440000pt;}
.y53_c00090{bottom:615.026667pt;}
.y56_c00090{bottom:615.226667pt;}
.y55_c00090{bottom:615.973333pt;}
.y57_c00090{bottom:616.360000pt;}
.y4f_c00090{bottom:630.440000pt;}
.y51_c00090{bottom:631.773333pt;}
.y4d_c00090{bottom:632.360000pt;}
.y4e_c00090{bottom:632.560000pt;}
.y50_c00090{bottom:633.306667pt;}
.y52_c00090{bottom:633.693333pt;}
.y4b_c00090{bottom:647.026667pt;}
.y4c_c00090{bottom:647.773333pt;}
.y49_c00090{bottom:648.733333pt;}
.y4a_c00090{bottom:649.693333pt;}
.y45_c00090{bottom:665.106667pt;}
.y47_c00090{bottom:666.440000pt;}
.y46_c00090{bottom:667.026667pt;}
.y48_c00090{bottom:667.226667pt;}
.y43_c00090{bottom:668.360000pt;}
.y44_c00090{bottom:668.373333pt;}
.y41_c00090{bottom:683.026667pt;}
.y40_c00090{bottom:683.773333pt;}
.y42_c00090{bottom:683.973333pt;}
.y3d_c00090{bottom:685.306667pt;}
.y3e_c00090{bottom:685.693333pt;}
.y3f_c00090{bottom:686.640000pt;}
.y39_c00090{bottom:701.106667pt;}
.y3b_c00090{bottom:702.066667pt;}
.y3a_c00090{bottom:703.026667pt;}
.y3c_c00090{bottom:703.973333pt;}
.y36_c00090{bottom:718.440000pt;}
.y34_c00090{bottom:720.360000pt;}
.y37_c00090{bottom:720.560000pt;}
.y38_c00090{bottom:721.306667pt;}
.y35_c00090{bottom:721.706667pt;}
.y33_c00090{bottom:735.773333pt;}
.y30_c00090{bottom:737.693333pt;}
.y31_c00090{bottom:737.893333pt;}
.y32_c00090{bottom:739.040000pt;}
.y2e_c00090{bottom:752.360000pt;}
.y2b_c00090{bottom:753.106667pt;}
.y2f_c00090{bottom:753.693333pt;}
.y2d_c00090{bottom:754.066667pt;}
.y2c_c00090{bottom:755.040000pt;}
.y27_c00090{bottom:770.440000pt;}
.y28_c00090{bottom:771.773333pt;}
.y2a_c00090{bottom:773.693333pt;}
.y29_c00090{bottom:773.706667pt;}
.y25_c00090{bottom:794.640000pt;}
.y23_c00090{bottom:795.400000pt;}
.y24_c00090{bottom:796.360000pt;}
.y26_c00090{bottom:797.306667pt;}
.y21_c00090{bottom:812.733333pt;}
.y22_c00090{bottom:812.933333pt;}
.y20_c00090{bottom:813.693333pt;}
.y1e_c00090{bottom:835.773333pt;}
.y1f_c00090{bottom:837.106667pt;}
.y1b_c00090{bottom:871.773333pt;}
.y1d_c00090{bottom:873.306667pt;}
.y1c_c00090{bottom:873.693333pt;}
.y1a_c00090{bottom:887.773333pt;}
.y15_c00090{bottom:888.733333pt;}
.y17_c00090{bottom:889.106667pt;}
.y16_c00090{bottom:889.693333pt;}
.y19_c00090{bottom:890.640000pt;}
.y14_c00090{bottom:891.026667pt;}
.y18_c00090{bottom:891.973333pt;}
.y13_c00090{bottom:906.066667pt;}
.yf_c00090{bottom:906.440000pt;}
.y12_c00090{bottom:907.226667pt;}
.y11_c00090{bottom:907.400000pt;}
.y10_c00090{bottom:908.360000pt;}
.ye_c00090{bottom:923.773333pt;}
.yb_c00090{bottom:923.973333pt;}
.ya_c00090{bottom:925.306667pt;}
.y9_c00090{bottom:925.693333pt;}
.yd_c00090{bottom:925.893333pt;}
.yc_c00090{bottom:926.640000pt;}
.y5_c00090{bottom:940.360000pt;}
.y4_c00090{bottom:941.106667pt;}
.y7_c00090{bottom:941.306667pt;}
.y3_c00090{bottom:943.026667pt;}
.y8_c00090{bottom:943.226667pt;}
.y6_c00090{bottom:943.973333pt;}
.y2_c00090{bottom:976.933333pt;}
.y1_c00090{bottom:977.693333pt;}
.h7_c00090{height:3.739141pt;}
.h8_c00090{height:14.890964pt;}
.h5_c00090{height:20.466875pt;}
.h2_c00090{height:22.303646pt;}
.h4_c00090{height:27.879557pt;}
.hb_c00090{height:29.372891pt;}
.h1_c00090{height:31.618698pt;}
.h9_c00090{height:34.706224pt;}
.h6_c00090{height:35.357839pt;}
.h3_c00090{height:39.031380pt;}
.ha_c00090{height:40.691172pt;}
.h0_c00090{height:1186.666667pt;}
.w0_c00090{width:782.666667pt;}
.x0_c00090{left:0.000000pt;}
.x3_c00090{left:135.040000pt;}
.x7a_c00090{left:136.000000pt;}
.xa4_c00090{left:136.960000pt;}
.xdc_c00090{left:142.293333pt;}
.xd4_c00090{left:146.666667pt;}
.xad_c00090{left:148.000000pt;}
.x46_c00090{left:149.333333pt;}
.x73_c00090{left:150.293333pt;}
.x6d_c00090{left:152.000000pt;}
.x4_c00090{left:160.373333pt;}
.xac_c00090{left:163.040000pt;}
.x8b_c00090{left:164.000000pt;}
.xa7_c00090{left:165.333333pt;}
.x82_c00090{left:166.666667pt;}
.xcc_c00090{left:169.333333pt;}
.xe4_c00090{left:170.293333pt;}
.xa5_c00090{left:176.000000pt;}
.x37_c00090{left:177.333333pt;}
.x4c_c00090{left:185.706667pt;}
.xd5_c00090{left:186.666667pt;}
.xc2_c00090{left:187.626667pt;}
.x12_c00090{left:191.040000pt;}
.x93_c00090{left:192.373333pt;}
.xf8_c00090{left:193.333333pt;}
.xbc_c00090{left:196.000000pt;}
.xf4_c00090{left:198.666667pt;}
.x38_c00090{left:200.000000pt;}
.x83_c00090{left:202.666667pt;}
.x7b_c00090{left:203.626667pt;}
.x5_c00090{left:204.960000pt;}
.x2c_c00090{left:208.000000pt;}
.xd6_c00090{left:211.040000pt;}
.x8c_c00090{left:212.000000pt;}
.xdd_c00090{left:213.333333pt;}
.x13_c00090{left:215.040000pt;}
.x21_c00090{left:218.666667pt;}
.x2d_c00090{left:220.000000pt;}
.x57_c00090{left:221.333333pt;}
.x6_c00090{left:223.040000pt;}
.x74_c00090{left:224.000000pt;}
.xcd_c00090{left:225.333333pt;}
.xa6_c00090{left:226.666667pt;}
.x39_c00090{left:227.626667pt;}
.x4f_c00090{left:229.333333pt;}
.x94_c00090{left:230.666667pt;}
.x5b_c00090{left:232.000000pt;}
.x22_c00090{left:233.333333pt;}
.xbe_c00090{left:234.666667pt;}
.x4d_c00090{left:237.333333pt;}
.x14_c00090{left:240.000000pt;}
.xb6_c00090{left:241.333333pt;}
.x6e_c00090{left:242.666667pt;}
.x2e_c00090{left:243.626667pt;}
.xde_c00090{left:245.706667pt;}
.x95_c00090{left:247.040000pt;}
.x7_c00090{left:248.000000pt;}
.x5c_c00090{left:249.333333pt;}
.xae_c00090{left:250.293333pt;}
.x64_c00090{left:252.960000pt;}
.x41_c00090{left:254.666667pt;}
.x4e_c00090{left:256.000000pt;}
.xe0_c00090{left:257.333333pt;}
.x47_c00090{left:258.293333pt;}
.x3a_c00090{left:260.373333pt;}
.xaf_c00090{left:263.240000pt;}
.x58_c00090{left:266.666667pt;}
.x3e_c00090{left:268.000000pt;}
.xdf_c00090{left:269.333333pt;}
.x15_c00090{left:270.293333pt;}
.xb7_c00090{left:273.706667pt;}
.x8d_c00090{left:274.666667pt;}
.x5d_c00090{left:276.000000pt;}
.x23_c00090{left:277.333333pt;}
.xce_c00090{left:278.666667pt;}
.x65_c00090{left:280.373333pt;}
.xda_c00090{left:282.093333pt;}
.x3b_c00090{left:284.000000pt;}
.x16_c00090{left:285.706667pt;}
.xc5_c00090{left:287.240000pt;}
.x8_c00090{left:289.706667pt;}
.xbd_c00090{left:290.666667pt;}
.x96_c00090{left:292.000000pt;}
.xf0_c00090{left:294.293333pt;}
.x9e_c00090{left:297.333333pt;}
.xa8_c00090{left:298.293333pt;}
.x84_c00090{left:300.000000pt;}
.x7c_c00090{left:301.333333pt;}
.x42_c00090{left:304.960000pt;}
.xd1_c00090{left:307.240000pt;}
.x50_c00090{left:308.373333pt;}
.xbf_c00090{left:309.333333pt;}
.x3c_c00090{left:310.666667pt;}
.xec_c00090{left:312.373333pt;}
.x24_c00090{left:313.333333pt;}
.x8e_c00090{left:314.293333pt;}
.xa9_c00090{left:315.626667pt;}
.xc3_c00090{left:317.333333pt;}
.xcf_c00090{left:318.666667pt;}
.x2f_c00090{left:320.000000pt;}
.x5e_c00090{left:321.333333pt;}
.x43_c00090{left:322.293333pt;}
.xf5_c00090{left:324.000000pt;}
.x25_c00090{left:325.333333pt;}
.x7d_c00090{left:328.000000pt;}
.xf9_c00090{left:332.000000pt;}
.x85_c00090{left:333.333333pt;}
.xb0_c00090{left:334.666667pt;}
.xe5_c00090{left:338.293333pt;}
.x66_c00090{left:339.626667pt;}
.xed_c00090{left:342.666667pt;}
.x8f_c00090{left:344.000000pt;}
.x48_c00090{left:345.333333pt;}
.x17_c00090{left:349.333333pt;}
.xe7_c00090{left:350.666667pt;}
.x59_c00090{left:352.000000pt;}
.x2_c00090{left:353.333333pt;}
.x9_c00090{left:355.040000pt;}
.xe1_c00090{left:356.000000pt;}
.x3d_c00090{left:357.333333pt;}
.xc6_c00090{left:360.000000pt;}
.x90_c00090{left:361.706667pt;}
.x5f_c00090{left:363.040000pt;}
.xe2_c00090{left:365.333333pt;}
.x67_c00090{left:367.040000pt;}
.x49_c00090{left:368.000000pt;}
.xd2_c00090{left:371.040000pt;}
.x97_c00090{left:372.373333pt;}
.xee_c00090{left:373.333333pt;}
.x26_c00090{left:374.666667pt;}
.x51_c00090{left:376.000000pt;}
.x6f_c00090{left:377.333333pt;}
.x86_c00090{left:378.666667pt;}
.xd7_c00090{left:379.626667pt;}
.xa_c00090{left:385.333333pt;}
.x18_c00090{left:386.666667pt;}
.xb1_c00090{left:387.626667pt;}
.x75_c00090{left:389.706667pt;}
.x68_c00090{left:391.040000pt;}
.xc0_c00090{left:393.333333pt;}
.x60_c00090{left:394.666667pt;}
.x44_c00090{left:396.000000pt;}
.xfa_c00090{left:398.666667pt;}
.xef_c00090{left:400.373333pt;}
.x9f_c00090{left:403.040000pt;}
.x30_c00090{left:405.706667pt;}
.x70_c00090{left:406.666667pt;}
.xc7_c00090{left:408.000000pt;}
.xb8_c00090{left:409.706667pt;}
.xf1_c00090{left:410.666667pt;}
.x19_c00090{left:412.373333pt;}
.xdb_c00090{left:413.333333pt;}
.x3f_c00090{left:414.293333pt;}
.x76_c00090{left:416.000000pt;}
.x61_c00090{left:417.906667pt;}
.x27_c00090{left:423.626667pt;}
.xaa_c00090{left:425.333333pt;}
.x5a_c00090{left:427.626667pt;}
.xb9_c00090{left:428.960000pt;}
.xb_c00090{left:430.666667pt;}
.x98_c00090{left:432.000000pt;}
.x4a_c00090{left:433.333333pt;}
.x52_c00090{left:434.466667pt;}
.xb2_c00090{left:437.706667pt;}
.x71_c00090{left:438.666667pt;}
.xf6_c00090{left:440.000000pt;}
.x28_c00090{left:441.706667pt;}
.x69_c00090{left:445.333333pt;}
.x1a_c00090{left:448.000000pt;}
.x4b_c00090{left:450.293333pt;}
.xba_c00090{left:453.333333pt;}
.xd8_c00090{left:454.293333pt;}
.xc_c00090{left:455.626667pt;}
.xe8_c00090{left:457.333333pt;}
.xd0_c00090{left:458.666667pt;}
.xc4_c00090{left:460.373333pt;}
.x6a_c00090{left:462.666667pt;}
.x31_c00090{left:464.000000pt;}
.x29_c00090{left:465.333333pt;}
.x53_c00090{left:468.960000pt;}
.x62_c00090{left:471.626667pt;}
.x87_c00090{left:476.000000pt;}
.x72_c00090{left:477.333333pt;}
.xc8_c00090{left:478.293333pt;}
.xa0_c00090{left:481.333333pt;}
.x40_c00090{left:483.800000pt;}
.x99_c00090{left:486.666667pt;}
.x1b_c00090{left:488.373333pt;}
.xb3_c00090{left:490.293333pt;}
.x77_c00090{left:492.000000pt;}
.x54_c00090{left:493.333333pt;}
.xfb_c00090{left:494.666667pt;}
.xd_c00090{left:495.626667pt;}
.x45_c00090{left:498.666667pt;}
.xd3_c00090{left:500.960000pt;}
.x32_c00090{left:502.666667pt;}
.xe9_c00090{left:504.373333pt;}
.x7e_c00090{left:505.706667pt;}
.x63_c00090{left:509.333333pt;}
.x9a_c00090{left:510.293333pt;}
.xf7_c00090{left:512.000000pt;}
.xe_c00090{left:513.706667pt;}
.x33_c00090{left:514.666667pt;}
.x1c_c00090{left:520.000000pt;}
.xc9_c00090{left:524.000000pt;}
.xb4_c00090{left:528.000000pt;}
.xea_c00090{left:529.333333pt;}
.xa1_c00090{left:532.000000pt;}
.xe3_c00090{left:533.333333pt;}
.x88_c00090{left:534.666667pt;}
.x34_c00090{left:538.666667pt;}
.x7f_c00090{left:540.373333pt;}
.x1d_c00090{left:541.333333pt;}
.x9b_c00090{left:542.293333pt;}
.xe6_c00090{left:544.373333pt;}
.x2a_c00090{left:548.000000pt;}
.x55_c00090{left:549.133333pt;}
.xab_c00090{left:554.666667pt;}
.x78_c00090{left:556.373333pt;}
.x89_c00090{left:557.333333pt;}
.xf2_c00090{left:558.666667pt;}
.xca_c00090{left:559.626667pt;}
.x1e_c00090{left:568.000000pt;}
.x35_c00090{left:569.333333pt;}
.x80_c00090{left:572.000000pt;}
.xf_c00090{left:574.666667pt;}
.x91_c00090{left:575.626667pt;}
.x2b_c00090{left:577.333333pt;}
.xbb_c00090{left:582.293333pt;}
.xa2_c00090{left:583.626667pt;}
.x56_c00090{left:585.333333pt;}
.x1f_c00090{left:586.666667pt;}
.x6b_c00090{left:587.626667pt;}
.xf3_c00090{left:589.333333pt;}
.x10_c00090{left:592.373333pt;}
.xcb_c00090{left:594.666667pt;}
.xa3_c00090{left:596.000000pt;}
.x36_c00090{left:599.626667pt;}
.x92_c00090{left:602.666667pt;}
.x9c_c00090{left:605.333333pt;}
.xd9_c00090{left:606.293333pt;}
.x8a_c00090{left:607.626667pt;}
.xb5_c00090{left:612.000000pt;}
.x6c_c00090{left:614.666667pt;}
.xeb_c00090{left:616.373333pt;}
.xc1_c00090{left:618.666667pt;}
.x79_c00090{left:620.373333pt;}
.x9d_c00090{left:625.333333pt;}
.x20_c00090{left:628.373333pt;}
.x81_c00090{left:629.706667pt;}
.x11_c00090{left:630.666667pt;}
.x1_c00090{left:631.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_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_5184b8411ba758f247b90f05.woff2')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8a_c00091{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.me5_c00091{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);}
.md7_c00091{transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);}
.mb6_c00091{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.ma9_c00091{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m9b_c00091{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m8d_c00091{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.ma7_c00091{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mc3_c00091{transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);}
.mc_c00091{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.md6_c00091{transform:matrix(0.397032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397032,0.000000,0.000000,0.250000,0,0);}
.m73_c00091{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.me0_c00091{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.md0_c00091{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.me2_c00091{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m2c_c00091{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.md1_c00091{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m9c_c00091{transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);}
.m67_c00091{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mb2_c00091{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.me9_c00091{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.m5c_c00091{transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);}
.m34_c00091{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.mae_c00091{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.md9_c00091{transform:matrix(0.403989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403989,0.000000,0.000000,0.250000,0,0);}
.m9f_c00091{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m8e_c00091{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m99_c00091{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m8c_c00091{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m7_c00091{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m4d_c00091{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mda_c00091{transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);}
.me8_c00091{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m79_c00091{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m3d_c00091{transform:matrix(0.411810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411810,0.000000,0.000000,0.250000,0,0);}
.mcc_c00091{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m7d_c00091{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m93_c00091{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m61_c00091{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.md3_c00091{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m84_c00091{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m41_c00091{transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);}
.m9a_c00091{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mb5_c00091{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m38_c00091{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m95_c00091{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m4c_c00091{transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);}
.mdc_c00091{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mdb_c00091{transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);}
.m96_c00091{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mcf_c00091{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.m56_c00091{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mc0_c00091{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mb8_c00091{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m77_c00091{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.mc7_c00091{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m19_c00091{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mdd_c00091{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.me3_c00091{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m6a_c00091{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.md2_c00091{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mbb_c00091{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.me4_c00091{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.me1_c00091{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m70_c00091{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m29_c00091{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.mc1_c00091{transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);}
.m82_c00091{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m36_c00091{transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);}
.mcd_c00091{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.ma8_c00091{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.maa_c00091{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m9_c00091{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.mad_c00091{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.m7f_c00091{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m5b_c00091{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m37_c00091{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m3e_c00091{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m9d_c00091{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m6b_c00091{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m1b_c00091{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m25_c00091{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m7c_c00091{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.mb7_c00091{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m6c_c00091{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m4e_c00091{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m8b_c00091{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.m8_c00091{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m55_c00091{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m18_c00091{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m64_c00091{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m21_c00091{transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);}
.m0_c00091{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m1f_c00091{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m80_c00091{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mdf_c00091{transform:matrix(0.489796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489796,0.000000,0.000000,0.250000,0,0);}
.m33_c00091{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m76_c00091{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mc2_c00091{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m2b_c00091{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_c00091{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m3b_c00091{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m12_c00091{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.m83_c00091{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.md5_c00091{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m45_c00091{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mab_c00091{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m5e_c00091{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m60_c00091{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m90_c00091{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m91_c00091{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m43_c00091{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m28_c00091{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m6f_c00091{transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);}
.m16_c00091{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m39_c00091{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m74_c00091{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.ma5_c00091{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m88_c00091{transform:matrix(0.524583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524583,0.000000,0.000000,0.250000,0,0);}
.m46_c00091{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m89_c00091{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m50_c00091{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m7a_c00091{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m85_c00091{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m26_c00091{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m48_c00091{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m4_c00091{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m23_c00091{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.ma6_c00091{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m24_c00091{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m4f_c00091{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m8f_c00091{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m94_c00091{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m69_c00091{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m32_c00091{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mbc_c00091{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mbe_c00091{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.me6_c00091{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.md4_c00091{transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);}
.m3c_c00091{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m57_c00091{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.ma1_c00091{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mb3_c00091{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m78_c00091{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m65_c00091{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m47_c00091{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m62_c00091{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m1e_c00091{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m11_c00091{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m22_c00091{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m13_c00091{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m1a_c00091{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mc8_c00091{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.ma3_c00091{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m71_c00091{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mea_c00091{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m5d_c00091{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m9e_c00091{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m92_c00091{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.ma_c00091{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m68_c00091{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m1d_c00091{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.m4a_c00091{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.md8_c00091{transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);}
.mba_c00091{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m35_c00091{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m7e_c00091{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.mc6_c00091{transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);}
.m20_c00091{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m5_c00091{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.mce_c00091{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m44_c00091{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m75_c00091{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m51_c00091{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m59_c00091{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mc4_c00091{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.mc9_c00091{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_c00091{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.ma2_c00091{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m87_c00091{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m10_c00091{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.ma4_c00091{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m49_c00091{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m5f_c00091{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m15_c00091{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m2f_c00091{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m3f_c00091{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.m58_c00091{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mac_c00091{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m40_c00091{transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);}
.m1_c00091{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m72_c00091{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.m6e_c00091{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mb4_c00091{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.maf_c00091{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.mf_c00091{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m31_c00091{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m81_c00091{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.me_c00091{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.mb0_c00091{transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);}
.m1c_c00091{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m86_c00091{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.mbd_c00091{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mca_c00091{transform:matrix(0.622925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622925,0.000000,0.000000,0.250000,0,0);}
.mcb_c00091{transform:matrix(0.623444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623444,0.000000,0.000000,0.250000,0,0);}
.mb9_c00091{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m97_c00091{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m53_c00091{transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);}
.m3a_c00091{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m3_c00091{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.ma0_c00091{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m52_c00091{transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);}
.md_c00091{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.me7_c00091{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);}
.m2e_c00091{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m17_c00091{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m2_c00091{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mbf_c00091{transform:matrix(0.670673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670673,0.000000,0.000000,0.250000,0,0);}
.m54_c00091{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.m2a_c00091{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m6d_c00091{transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);}
.m98_c00091{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m7b_c00091{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m2d_c00091{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mb1_c00091{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m66_c00091{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m14_c00091{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m27_c00091{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m63_c00091{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m6_c00091{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m42_c00091{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mb_c00091{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m4b_c00091{transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);}
.mde_c00091{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.mc5_c00091{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00091{vertical-align:0.000000px;}
.v1_c00091{vertical-align:18.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:-4.137720px;}
.ws1_c00091{word-spacing:0.000000px;}
.fc0_c00091{color:transparent;}
.fs7_c00091{font-size:3.420000px;}
.fs3_c00091{font-size:18.720000px;}
.fs1_c00091{font-size:20.400000px;}
.fs2_c00091{font-size:25.500000px;}
.fs0_c00091{font-size:28.920000px;}
.fs5_c00091{font-size:32.340000px;}
.fs4_c00091{font-size:35.700000px;}
.fs6_c00091{font-size:39.120000px;}
.y0_c00091{bottom:0.000000px;}
.yc8_c00091{bottom:250.245000px;}
.yc6_c00091{bottom:251.550000px;}
.yc9_c00091{bottom:251.745000px;}
.yc5_c00091{bottom:252.405000px;}
.yc7_c00091{bottom:252.420000px;}
.ybf_c00091{bottom:269.745000px;}
.yc2_c00091{bottom:270.405000px;}
.yc1_c00091{bottom:270.825000px;}
.yc3_c00091{bottom:271.245000px;}
.yc4_c00091{bottom:272.325000px;}
.yc0_c00091{bottom:273.420000px;}
.yb9_c00091{bottom:289.245000px;}
.ybe_c00091{bottom:290.325000px;}
.ybd_c00091{bottom:290.745000px;}
.yba_c00091{bottom:291.420000px;}
.ybb_c00091{bottom:291.825000px;}
.ybc_c00091{bottom:292.905000px;}
.yb6_c00091{bottom:317.325000px;}
.yb7_c00091{bottom:317.550000px;}
.yb4_c00091{bottom:317.970000px;}
.yb8_c00091{bottom:318.405000px;}
.yb5_c00091{bottom:319.470000px;}
.yb2_c00091{bottom:336.825000px;}
.yb3_c00091{bottom:337.470000px;}
.yb0_c00091{bottom:338.325000px;}
.yb1_c00091{bottom:338.550000px;}
.yaf_c00091{bottom:364.245000px;}
.yae_c00091{bottom:366.405000px;}
.yac_c00091{bottom:407.745000px;}
.yad_c00091{bottom:411.405000px;}
.yaa_c00091{bottom:428.745000px;}
.ya7_c00091{bottom:429.405000px;}
.yab_c00091{bottom:430.470000px;}
.ya8_c00091{bottom:430.920000px;}
.ya9_c00091{bottom:431.970000px;}
.ya6_c00091{bottom:446.745000px;}
.ya2_c00091{bottom:465.405000px;}
.ya5_c00091{bottom:466.245000px;}
.ya3_c00091{bottom:466.680000px;}
.ya4_c00091{bottom:468.405000px;}
.ya0_c00091{bottom:468.825000px;}
.ya1_c00091{bottom:469.905000px;}
.y9c_c00091{bottom:487.245000px;}
.y9d_c00091{bottom:489.405000px;}
.y9f_c00091{bottom:489.630000px;}
.y9e_c00091{bottom:490.470000px;}
.y99_c00091{bottom:506.745000px;}
.y9a_c00091{bottom:508.905000px;}
.y9b_c00091{bottom:509.970000px;}
.y95_c00091{bottom:524.970000px;}
.y98_c00091{bottom:525.825000px;}
.y93_c00091{bottom:526.245000px;}
.y91_c00091{bottom:527.130000px;}
.y97_c00091{bottom:527.325000px;}
.y96_c00091{bottom:527.970000px;}
.y94_c00091{bottom:528.405000px;}
.y92_c00091{bottom:529.470000px;}
.y8e_c00091{bottom:545.745000px;}
.y8f_c00091{bottom:546.825000px;}
.y90_c00091{bottom:547.050000px;}
.y8d_c00091{bottom:547.905000px;}
.y8c_c00091{bottom:548.970000px;}
.y8b_c00091{bottom:549.405000px;}
.y88_c00091{bottom:566.745000px;}
.y89_c00091{bottom:567.630000px;}
.y8a_c00091{bottom:568.905000px;}
.y87_c00091{bottom:584.325000px;}
.y86_c00091{bottom:584.745000px;}
.y85_c00091{bottom:586.905000px;}
.y83_c00091{bottom:587.970000px;}
.y84_c00091{bottom:588.405000px;}
.y82_c00091{bottom:604.245000px;}
.y80_c00091{bottom:625.245000px;}
.y81_c00091{bottom:626.130000px;}
.y7e_c00091{bottom:626.970000px;}
.y7f_c00091{bottom:627.405000px;}
.y7d_c00091{bottom:642.405000px;}
.y76_c00091{bottom:644.745000px;}
.y7c_c00091{bottom:645.405000px;}
.y7a_c00091{bottom:645.630000px;}
.y7b_c00091{bottom:646.470000px;}
.y77_c00091{bottom:646.905000px;}
.y79_c00091{bottom:647.130000px;}
.y78_c00091{bottom:647.970000px;}
.y74_c00091{bottom:664.245000px;}
.y75_c00091{bottom:665.970000px;}
.y73_c00091{bottom:666.405000px;}
.y72_c00091{bottom:683.745000px;}
.y70_c00091{bottom:684.825000px;}
.y6f_c00091{bottom:685.905000px;}
.y71_c00091{bottom:686.970000px;}
.y6b_c00091{bottom:703.245000px;}
.y6a_c00091{bottom:705.405000px;}
.y6c_c00091{bottom:705.630000px;}
.y6e_c00091{bottom:706.470000px;}
.y6d_c00091{bottom:706.905000px;}
.y68_c00091{bottom:722.745000px;}
.y69_c00091{bottom:723.825000px;}
.y67_c00091{bottom:724.245000px;}
.y66_c00091{bottom:724.905000px;}
.y65_c00091{bottom:725.970000px;}
.y63_c00091{bottom:743.745000px;}
.y64_c00091{bottom:744.405000px;}
.y62_c00091{bottom:745.905000px;}
.y5c_c00091{bottom:760.905000px;}
.y5f_c00091{bottom:763.245000px;}
.y61_c00091{bottom:763.905000px;}
.y5d_c00091{bottom:764.325000px;}
.y5e_c00091{bottom:765.405000px;}
.y60_c00091{bottom:765.630000px;}
.y59_c00091{bottom:781.905000px;}
.y5b_c00091{bottom:783.630000px;}
.y5a_c00091{bottom:783.825000px;}
.y57_c00091{bottom:784.905000px;}
.y58_c00091{bottom:785.970000px;}
.y56_c00091{bottom:800.970000px;}
.y51_c00091{bottom:802.245000px;}
.y53_c00091{bottom:803.325000px;}
.y55_c00091{bottom:803.970000px;}
.y54_c00091{bottom:804.405000px;}
.y52_c00091{bottom:805.470000px;}
.y4c_c00091{bottom:820.905000px;}
.y4f_c00091{bottom:821.745000px;}
.y4b_c00091{bottom:822.630000px;}
.y50_c00091{bottom:823.905000px;}
.y4d_c00091{bottom:824.130000px;}
.y4e_c00091{bottom:825.405000px;}
.y49_c00091{bottom:842.745000px;}
.y4a_c00091{bottom:843.405000px;}
.y48_c00091{bottom:844.905000px;}
.y47_c00091{bottom:861.825000px;}
.y45_c00091{bottom:862.245000px;}
.y46_c00091{bottom:862.905000px;}
.y42_c00091{bottom:863.970000px;}
.y43_c00091{bottom:864.405000px;}
.y44_c00091{bottom:865.470000px;}
.y41_c00091{bottom:882.405000px;}
.y3f_c00091{bottom:882.630000px;}
.y40_c00091{bottom:883.470000px;}
.y3d_c00091{bottom:883.905000px;}
.y3e_c00091{bottom:884.970000px;}
.y36_c00091{bottom:898.905000px;}
.y3b_c00091{bottom:901.245000px;}
.y3c_c00091{bottom:901.905000px;}
.y37_c00091{bottom:902.130000px;}
.y3a_c00091{bottom:902.325000px;}
.y38_c00091{bottom:902.970000px;}
.y39_c00091{bottom:903.405000px;}
.y32_c00091{bottom:920.745000px;}
.y35_c00091{bottom:921.405000px;}
.y34_c00091{bottom:921.630000px;}
.y33_c00091{bottom:922.905000px;}
.y2a_c00091{bottom:939.180000px;}
.y2b_c00091{bottom:940.245000px;}
.y31_c00091{bottom:940.905000px;}
.y2e_c00091{bottom:941.325000px;}
.y30_c00091{bottom:941.970000px;}
.y2c_c00091{bottom:942.405000px;}
.y2f_c00091{bottom:942.630000px;}
.y2d_c00091{bottom:943.470000px;}
.y25_c00091{bottom:959.745000px;}
.y29_c00091{bottom:960.630000px;}
.y28_c00091{bottom:960.825000px;}
.y24_c00091{bottom:961.905000px;}
.y27_c00091{bottom:962.130000px;}
.y26_c00091{bottom:962.970000px;}
.y21_c00091{bottom:979.245000px;}
.y23_c00091{bottom:979.905000px;}
.y1d_c00091{bottom:980.130000px;}
.y22_c00091{bottom:980.325000px;}
.y1e_c00091{bottom:981.405000px;}
.y20_c00091{bottom:981.630000px;}
.y1f_c00091{bottom:982.470000px;}
.y1c_c00091{bottom:998.745000px;}
.y1b_c00091{bottom:999.630000px;}
.y18_c00091{bottom:1000.905000px;}
.y1a_c00091{bottom:1001.130000px;}
.y19_c00091{bottom:1001.970000px;}
.y13_c00091{bottom:1018.245000px;}
.y16_c00091{bottom:1019.325000px;}
.y17_c00091{bottom:1019.970000px;}
.y15_c00091{bottom:1020.405000px;}
.y14_c00091{bottom:1021.470000px;}
.y10_c00091{bottom:1037.745000px;}
.y11_c00091{bottom:1038.630000px;}
.yb_c00091{bottom:1039.470000px;}
.y12_c00091{bottom:1039.905000px;}
.yf_c00091{bottom:1040.130000px;}
.yd_c00091{bottom:1040.325000px;}
.ye_c00091{bottom:1040.970000px;}
.yc_c00091{bottom:1041.405000px;}
.y9_c00091{bottom:1056.405000px;}
.ya_c00091{bottom:1058.130000px;}
.y7_c00091{bottom:1058.745000px;}
.y3_c00091{bottom:1058.970000px;}
.y6_c00091{bottom:1059.630000px;}
.y8_c00091{bottom:1059.825000px;}
.y4_c00091{bottom:1060.470000px;}
.y5_c00091{bottom:1060.905000px;}
.y2_c00091{bottom:1097.550000px;}
.y1_c00091{bottom:1099.905000px;}
.h9_c00091{height:4.206533px;}
.h4_c00091{height:23.025234px;}
.h2_c00091{height:25.091602px;}
.h3_c00091{height:31.364502px;}
.h1_c00091{height:35.571035px;}
.h6_c00091{height:39.777568px;}
.h5_c00091{height:43.910303px;}
.h7_c00091{height:48.116836px;}
.h8_c00091{height:53.571035px;}
.h0_c00091{height:1335.000000px;}
.w0_c00091{width:880.500000px;}
.x0_c00091{left:0.000000px;}
.xbe_c00091{left:151.080000px;}
.x1_c00091{left:152.580000px;}
.x3_c00091{left:154.500000px;}
.xf7_c00091{left:165.000000px;}
.xfd_c00091{left:166.500000px;}
.xb8_c00091{left:167.580000px;}
.xaf_c00091{left:171.000000px;}
.x4_c00091{left:173.580000px;}
.xdc_c00091{left:178.500000px;}
.x39_c00091{left:179.580000px;}
.xbf_c00091{left:183.000000px;}
.x46_c00091{left:184.500000px;}
.xa2_c00091{left:187.500000px;}
.x5b_c00091{left:192.000000px;}
.x85_c00091{left:193.920000px;}
.xcf_c00091{left:195.000000px;}
.x3a_c00091{left:197.580000px;}
.x65_c00091{left:199.500000px;}
.xd4_c00091{left:200.580000px;}
.x79_c00091{left:203.580000px;}
.x14_c00091{left:205.500000px;}
.x22_c00091{left:206.580000px;}
.xa9_c00091{left:208.500000px;}
.x70_c00091{left:211.500000px;}
.x2f_c00091{left:214.500000px;}
.xe2_c00091{left:217.500000px;}
.x5_c00091{left:219.420000px;}
.x52_c00091{left:220.500000px;}
.x7a_c00091{left:223.500000px;}
.x23_c00091{left:226.920000px;}
.x8d_c00091{left:228.000000px;}
.xb6_c00091{left:229.500000px;}
.x47_c00091{left:231.000000px;}
.x66_c00091{left:234.000000px;}
.xc5_c00091{left:235.500000px;}
.xd0_c00091{left:237.000000px;}
.x97_c00091{left:238.500000px;}
.x3b_c00091{left:241.080000px;}
.xe9_c00091{left:243.420000px;}
.xe3_c00091{left:244.920000px;}
.x6_c00091{left:246.000000px;}
.x48_c00091{left:247.080000px;}
.x9d_c00091{left:249.420000px;}
.x8e_c00091{left:250.500000px;}
.x24_c00091{left:252.000000px;}
.x3c_c00091{left:255.000000px;}
.x53_c00091{left:256.080000px;}
.xf0_c00091{left:258.000000px;}
.x15_c00091{left:261.420000px;}
.x86_c00091{left:263.580000px;}
.xf9_c00091{left:267.000000px;}
.xb9_c00091{left:268.080000px;}
.x5c_c00091{left:270.420000px;}
.xc6_c00091{left:271.500000px;}
.xdd_c00091{left:274.500000px;}
.x54_c00091{left:276.420000px;}
.x7b_c00091{left:277.500000px;}
.x7_c00091{left:279.000000px;}
.x87_c00091{left:280.920000px;}
.xc0_c00091{left:282.000000px;}
.x67_c00091{left:283.080000px;}
.x3d_c00091{left:285.420000px;}
.xfa_c00091{left:288.000000px;}
.xa3_c00091{left:289.920000px;}
.x30_c00091{left:291.000000px;}
.x7c_c00091{left:294.420000px;}
.xd5_c00091{left:295.500000px;}
.x5d_c00091{left:297.420000px;}
.x8_c00091{left:298.500000px;}
.xe4_c00091{left:301.080000px;}
.xc1_c00091{left:302.580000px;}
.x55_c00091{left:304.500000px;}
.xb0_c00091{left:306.420000px;}
.x88_c00091{left:307.500000px;}
.x8f_c00091{left:309.420000px;}
.xaa_c00091{left:310.500000px;}
.x71_c00091{left:312.420000px;}
.xb7_c00091{left:316.080000px;}
.xf1_c00091{left:317.580000px;}
.xa4_c00091{left:319.080000px;}
.xff_c00091{left:320.580000px;}
.x3e_c00091{left:324.000000px;}
.x68_c00091{left:325.080000px;}
.x16_c00091{left:327.000000px;}
.xc7_c00091{left:328.920000px;}
.xe5_c00091{left:331.500000px;}
.xd6_c00091{left:334.500000px;}
.x7d_c00091{left:336.000000px;}
.x31_c00091{left:337.500000px;}
.x49_c00091{left:339.000000px;}
.xba_c00091{left:340.500000px;}
.x25_c00091{left:342.420000px;}
.x90_c00091{left:346.500000px;}
.xab_c00091{left:351.000000px;}
.x98_c00091{left:352.500000px;}
.x9_c00091{left:354.420000px;}
.x4a_c00091{left:358.500000px;}
.x72_c00091{left:360.420000px;}
.x9e_c00091{left:364.500000px;}
.xac_c00091{left:366.420000px;}
.x17_c00091{left:368.580000px;}
.xde_c00091{left:372.420000px;}
.x32_c00091{left:375.000000px;}
.xf3_c00091{left:376.080000px;}
.xe6_c00091{left:381.420000px;}
.xa_c00091{left:382.500000px;}
.xc8_c00091{left:386.580000px;}
.x73_c00091{left:388.080000px;}
.x56_c00091{left:389.145000px;}
.xda_c00091{left:393.000000px;}
.x33_c00091{left:394.920000px;}
.x89_c00091{left:396.000000px;}
.xfb_c00091{left:399.645000px;}
.x2_c00091{left:402.000000px;}
.x3f_c00091{left:403.500000px;}
.xc9_c00091{left:406.080000px;}
.x7e_c00091{left:409.920000px;}
.x69_c00091{left:411.420000px;}
.x4b_c00091{left:415.500000px;}
.x91_c00091{left:417.420000px;}
.xb_c00091{left:418.500000px;}
.x34_c00091{left:421.920000px;}
.xbb_c00091{left:423.420000px;}
.x26_c00091{left:426.000000px;}
.x5e_c00091{left:427.500000px;}
.xa5_c00091{left:429.000000px;}
.xfc_c00091{left:430.080000px;}
.x40_c00091{left:432.420000px;}
.x9f_c00091{left:433.500000px;}
.xd7_c00091{left:437.580000px;}
.x99_c00091{left:441.000000px;}
.x27_c00091{left:444.420000px;}
.x18_c00091{left:447.000000px;}
.xdf_c00091{left:450.420000px;}
.xa0_c00091{left:451.500000px;}
.x4c_c00091{left:453.000000px;}
.x74_c00091{left:457.080000px;}
.x6a_c00091{left:459.000000px;}
.x5f_c00091{left:460.500000px;}
.xb1_c00091{left:462.420000px;}
.x7f_c00091{left:463.920000px;}
.xca_c00091{left:468.000000px;}
.xc_c00091{left:469.080000px;}
.x9a_c00091{left:471.000000px;}
.x28_c00091{left:472.500000px;}
.xf4_c00091{left:476.580000px;}
.x19_c00091{left:478.080000px;}
.x41_c00091{left:480.000000px;}
.x35_c00091{left:481.500000px;}
.xa6_c00091{left:484.500000px;}
.x57_c00091{left:486.855000px;}
.xb2_c00091{left:488.580000px;}
.x60_c00091{left:490.920000px;}
.x80_c00091{left:492.420000px;}
.xcb_c00091{left:495.420000px;}
.xe7_c00091{left:496.500000px;}
.xd1_c00091{left:499.500000px;}
.xc2_c00091{left:501.420000px;}
.xa7_c00091{left:502.920000px;}
.x75_c00091{left:507.420000px;}
.xad_c00091{left:510.420000px;}
.x1a_c00091{left:511.500000px;}
.x9b_c00091{left:513.420000px;}
.xd_c00091{left:514.920000px;}
.x29_c00091{left:516.420000px;}
.xee_c00091{left:517.920000px;}
.xf6_c00091{left:520.500000px;}
.x1b_c00091{left:525.000000px;}
.xa1_c00091{left:526.500000px;}
.xb3_c00091{left:529.920000px;}
.xe_c00091{left:532.500000px;}
.x6b_c00091{left:534.420000px;}
.x58_c00091{left:535.500000px;}
.x4d_c00091{left:537.000000px;}
.x92_c00091{left:538.080000px;}
.x61_c00091{left:540.420000px;}
.x76_c00091{left:541.500000px;}
.x2a_c00091{left:543.420000px;}
.x8a_c00091{left:544.500000px;}
.xef_c00091{left:546.420000px;}
.xf5_c00091{left:548.775000px;}
.x42_c00091{left:552.000000px;}
.xea_c00091{left:553.080000px;}
.xd8_c00091{left:555.000000px;}
.xfe_c00091{left:556.500000px;}
.x1c_c00091{left:558.420000px;}
.xcc_c00091{left:561.000000px;}
.x6c_c00091{left:562.920000px;}
.xf8_c00091{left:564.420000px;}
.xf_c00091{left:565.920000px;}
.xbc_c00091{left:567.000000px;}
.x77_c00091{left:568.500000px;}
.xeb_c00091{left:573.420000px;}
.x4e_c00091{left:574.920000px;}
.xe8_c00091{left:576.420000px;}
.x62_c00091{left:577.920000px;}
.x43_c00091{left:579.420000px;}
.xd2_c00091{left:580.500000px;}
.xbd_c00091{left:583.500000px;}
.x93_c00091{left:585.420000px;}
.x59_c00091{left:586.920000px;}
.x36_c00091{left:588.000000px;}
.x81_c00091{left:593.580000px;}
.x2b_c00091{left:597.000000px;}
.x9c_c00091{left:600.000000px;}
.x1d_c00091{left:601.500000px;}
.x4f_c00091{left:602.580000px;}
.x10_c00091{left:604.500000px;}
.x63_c00091{left:606.420000px;}
.x6d_c00091{left:611.580000px;}
.xc3_c00091{left:615.420000px;}
.xd3_c00091{left:618.000000px;}
.x8b_c00091{left:619.920000px;}
.x1e_c00091{left:621.420000px;}
.x82_c00091{left:624.000000px;}
.xcd_c00091{left:625.920000px;}
.xd9_c00091{left:631.080000px;}
.x94_c00091{left:633.000000px;}
.x11_c00091{left:634.500000px;}
.xe0_c00091{left:639.000000px;}
.x83_c00091{left:640.500000px;}
.xec_c00091{left:642.000000px;}
.x37_c00091{left:643.500000px;}
.xb4_c00091{left:646.920000px;}
.x8c_c00091{left:648.420000px;}
.x2c_c00091{left:650.580000px;}
.xae_c00091{left:652.920000px;}
.x78_c00091{left:654.000000px;}
.x12_c00091{left:655.500000px;}
.x1f_c00091{left:657.000000px;}
.x84_c00091{left:658.500000px;}
.x44_c00091{left:661.500000px;}
.xed_c00091{left:663.420000px;}
.x6e_c00091{left:664.920000px;}
.xdb_c00091{left:667.500000px;}
.x2d_c00091{left:669.420000px;}
.x50_c00091{left:670.920000px;}
.xce_c00091{left:672.000000px;}
.x20_c00091{left:678.420000px;}
.x45_c00091{left:679.920000px;}
.xe1_c00091{left:681.420000px;}
.xb5_c00091{left:683.580000px;}
.x95_c00091{left:687.000000px;}
.x5a_c00091{left:688.080000px;}
.x64_c00091{left:689.580000px;}
.xa8_c00091{left:691.080000px;}
.x6f_c00091{left:693.000000px;}
.x13_c00091{left:694.500000px;}
.x2e_c00091{left:695.580000px;}
.x38_c00091{left:697.500000px;}
.xc4_c00091{left:702.420000px;}
.x96_c00091{left:703.500000px;}
.xf2_c00091{left:705.420000px;}
.x21_c00091{left:706.920000px;}
.x51_c00091{left:709.920000px;}
@media print{
.v0_c00091{vertical-align:0.000000pt;}
.v1_c00091{vertical-align:16.000000pt;}
.ls0_c00091{letter-spacing:0.000000pt;}
.ws0_c00091{word-spacing:-3.677973pt;}
.ws1_c00091{word-spacing:0.000000pt;}
.fs7_c00091{font-size:3.040000pt;}
.fs3_c00091{font-size:16.640000pt;}
.fs1_c00091{font-size:18.133333pt;}
.fs2_c00091{font-size:22.666667pt;}
.fs0_c00091{font-size:25.706667pt;}
.fs5_c00091{font-size:28.746667pt;}
.fs4_c00091{font-size:31.733333pt;}
.fs6_c00091{font-size:34.773333pt;}
.y0_c00091{bottom:0.000000pt;}
.yc8_c00091{bottom:222.440000pt;}
.yc6_c00091{bottom:223.600000pt;}
.yc9_c00091{bottom:223.773333pt;}
.yc5_c00091{bottom:224.360000pt;}
.yc7_c00091{bottom:224.373333pt;}
.ybf_c00091{bottom:239.773333pt;}
.yc2_c00091{bottom:240.360000pt;}
.yc1_c00091{bottom:240.733333pt;}
.yc3_c00091{bottom:241.106667pt;}
.yc4_c00091{bottom:242.066667pt;}
.yc0_c00091{bottom:243.040000pt;}
.yb9_c00091{bottom:257.106667pt;}
.ybe_c00091{bottom:258.066667pt;}
.ybd_c00091{bottom:258.440000pt;}
.yba_c00091{bottom:259.040000pt;}
.ybb_c00091{bottom:259.400000pt;}
.ybc_c00091{bottom:260.360000pt;}
.yb6_c00091{bottom:282.066667pt;}
.yb7_c00091{bottom:282.266667pt;}
.yb4_c00091{bottom:282.640000pt;}
.yb8_c00091{bottom:283.026667pt;}
.yb5_c00091{bottom:283.973333pt;}
.yb2_c00091{bottom:299.400000pt;}
.yb3_c00091{bottom:299.973333pt;}
.yb0_c00091{bottom:300.733333pt;}
.yb1_c00091{bottom:300.933333pt;}
.yaf_c00091{bottom:323.773333pt;}
.yae_c00091{bottom:325.693333pt;}
.yac_c00091{bottom:362.440000pt;}
.yad_c00091{bottom:365.693333pt;}
.yaa_c00091{bottom:381.106667pt;}
.ya7_c00091{bottom:381.693333pt;}
.yab_c00091{bottom:382.640000pt;}
.ya8_c00091{bottom:383.040000pt;}
.ya9_c00091{bottom:383.973333pt;}
.ya6_c00091{bottom:397.106667pt;}
.ya2_c00091{bottom:413.693333pt;}
.ya5_c00091{bottom:414.440000pt;}
.ya3_c00091{bottom:414.826667pt;}
.ya4_c00091{bottom:416.360000pt;}
.ya0_c00091{bottom:416.733333pt;}
.ya1_c00091{bottom:417.693333pt;}
.y9c_c00091{bottom:433.106667pt;}
.y9d_c00091{bottom:435.026667pt;}
.y9f_c00091{bottom:435.226667pt;}
.y9e_c00091{bottom:435.973333pt;}
.y99_c00091{bottom:450.440000pt;}
.y9a_c00091{bottom:452.360000pt;}
.y9b_c00091{bottom:453.306667pt;}
.y95_c00091{bottom:466.640000pt;}
.y98_c00091{bottom:467.400000pt;}
.y93_c00091{bottom:467.773333pt;}
.y91_c00091{bottom:468.560000pt;}
.y97_c00091{bottom:468.733333pt;}
.y96_c00091{bottom:469.306667pt;}
.y94_c00091{bottom:469.693333pt;}
.y92_c00091{bottom:470.640000pt;}
.y8e_c00091{bottom:485.106667pt;}
.y8f_c00091{bottom:486.066667pt;}
.y90_c00091{bottom:486.266667pt;}
.y8d_c00091{bottom:487.026667pt;}
.y8c_c00091{bottom:487.973333pt;}
.y8b_c00091{bottom:488.360000pt;}
.y88_c00091{bottom:503.773333pt;}
.y89_c00091{bottom:504.560000pt;}
.y8a_c00091{bottom:505.693333pt;}
.y87_c00091{bottom:519.400000pt;}
.y86_c00091{bottom:519.773333pt;}
.y85_c00091{bottom:521.693333pt;}
.y83_c00091{bottom:522.640000pt;}
.y84_c00091{bottom:523.026667pt;}
.y82_c00091{bottom:537.106667pt;}
.y80_c00091{bottom:555.773333pt;}
.y81_c00091{bottom:556.560000pt;}
.y7e_c00091{bottom:557.306667pt;}
.y7f_c00091{bottom:557.693333pt;}
.y7d_c00091{bottom:571.026667pt;}
.y76_c00091{bottom:573.106667pt;}
.y7c_c00091{bottom:573.693333pt;}
.y7a_c00091{bottom:573.893333pt;}
.y7b_c00091{bottom:574.640000pt;}
.y77_c00091{bottom:575.026667pt;}
.y79_c00091{bottom:575.226667pt;}
.y78_c00091{bottom:575.973333pt;}
.y74_c00091{bottom:590.440000pt;}
.y75_c00091{bottom:591.973333pt;}
.y73_c00091{bottom:592.360000pt;}
.y72_c00091{bottom:607.773333pt;}
.y70_c00091{bottom:608.733333pt;}
.y6f_c00091{bottom:609.693333pt;}
.y71_c00091{bottom:610.640000pt;}
.y6b_c00091{bottom:625.106667pt;}
.y6a_c00091{bottom:627.026667pt;}
.y6c_c00091{bottom:627.226667pt;}
.y6e_c00091{bottom:627.973333pt;}
.y6d_c00091{bottom:628.360000pt;}
.y68_c00091{bottom:642.440000pt;}
.y69_c00091{bottom:643.400000pt;}
.y67_c00091{bottom:643.773333pt;}
.y66_c00091{bottom:644.360000pt;}
.y65_c00091{bottom:645.306667pt;}
.y63_c00091{bottom:661.106667pt;}
.y64_c00091{bottom:661.693333pt;}
.y62_c00091{bottom:663.026667pt;}
.y5c_c00091{bottom:676.360000pt;}
.y5f_c00091{bottom:678.440000pt;}
.y61_c00091{bottom:679.026667pt;}
.y5d_c00091{bottom:679.400000pt;}
.y5e_c00091{bottom:680.360000pt;}
.y60_c00091{bottom:680.560000pt;}
.y59_c00091{bottom:695.026667pt;}
.y5b_c00091{bottom:696.560000pt;}
.y5a_c00091{bottom:696.733333pt;}
.y57_c00091{bottom:697.693333pt;}
.y58_c00091{bottom:698.640000pt;}
.y56_c00091{bottom:711.973333pt;}
.y51_c00091{bottom:713.106667pt;}
.y53_c00091{bottom:714.066667pt;}
.y55_c00091{bottom:714.640000pt;}
.y54_c00091{bottom:715.026667pt;}
.y52_c00091{bottom:715.973333pt;}
.y4c_c00091{bottom:729.693333pt;}
.y4f_c00091{bottom:730.440000pt;}
.y4b_c00091{bottom:731.226667pt;}
.y50_c00091{bottom:732.360000pt;}
.y4d_c00091{bottom:732.560000pt;}
.y4e_c00091{bottom:733.693333pt;}
.y49_c00091{bottom:749.106667pt;}
.y4a_c00091{bottom:749.693333pt;}
.y48_c00091{bottom:751.026667pt;}
.y47_c00091{bottom:766.066667pt;}
.y45_c00091{bottom:766.440000pt;}
.y46_c00091{bottom:767.026667pt;}
.y42_c00091{bottom:767.973333pt;}
.y43_c00091{bottom:768.360000pt;}
.y44_c00091{bottom:769.306667pt;}
.y41_c00091{bottom:784.360000pt;}
.y3f_c00091{bottom:784.560000pt;}
.y40_c00091{bottom:785.306667pt;}
.y3d_c00091{bottom:785.693333pt;}
.y3e_c00091{bottom:786.640000pt;}
.y36_c00091{bottom:799.026667pt;}
.y3b_c00091{bottom:801.106667pt;}
.y3c_c00091{bottom:801.693333pt;}
.y37_c00091{bottom:801.893333pt;}
.y3a_c00091{bottom:802.066667pt;}
.y38_c00091{bottom:802.640000pt;}
.y39_c00091{bottom:803.026667pt;}
.y32_c00091{bottom:818.440000pt;}
.y35_c00091{bottom:819.026667pt;}
.y34_c00091{bottom:819.226667pt;}
.y33_c00091{bottom:820.360000pt;}
.y2a_c00091{bottom:834.826667pt;}
.y2b_c00091{bottom:835.773333pt;}
.y31_c00091{bottom:836.360000pt;}
.y2e_c00091{bottom:836.733333pt;}
.y30_c00091{bottom:837.306667pt;}
.y2c_c00091{bottom:837.693333pt;}
.y2f_c00091{bottom:837.893333pt;}
.y2d_c00091{bottom:838.640000pt;}
.y25_c00091{bottom:853.106667pt;}
.y29_c00091{bottom:853.893333pt;}
.y28_c00091{bottom:854.066667pt;}
.y24_c00091{bottom:855.026667pt;}
.y27_c00091{bottom:855.226667pt;}
.y26_c00091{bottom:855.973333pt;}
.y21_c00091{bottom:870.440000pt;}
.y23_c00091{bottom:871.026667pt;}
.y1d_c00091{bottom:871.226667pt;}
.y22_c00091{bottom:871.400000pt;}
.y1e_c00091{bottom:872.360000pt;}
.y20_c00091{bottom:872.560000pt;}
.y1f_c00091{bottom:873.306667pt;}
.y1c_c00091{bottom:887.773333pt;}
.y1b_c00091{bottom:888.560000pt;}
.y18_c00091{bottom:889.693333pt;}
.y1a_c00091{bottom:889.893333pt;}
.y19_c00091{bottom:890.640000pt;}
.y13_c00091{bottom:905.106667pt;}
.y16_c00091{bottom:906.066667pt;}
.y17_c00091{bottom:906.640000pt;}
.y15_c00091{bottom:907.026667pt;}
.y14_c00091{bottom:907.973333pt;}
.y10_c00091{bottom:922.440000pt;}
.y11_c00091{bottom:923.226667pt;}
.yb_c00091{bottom:923.973333pt;}
.y12_c00091{bottom:924.360000pt;}
.yf_c00091{bottom:924.560000pt;}
.yd_c00091{bottom:924.733333pt;}
.ye_c00091{bottom:925.306667pt;}
.yc_c00091{bottom:925.693333pt;}
.y9_c00091{bottom:939.026667pt;}
.ya_c00091{bottom:940.560000pt;}
.y7_c00091{bottom:941.106667pt;}
.y3_c00091{bottom:941.306667pt;}
.y6_c00091{bottom:941.893333pt;}
.y8_c00091{bottom:942.066667pt;}
.y4_c00091{bottom:942.640000pt;}
.y5_c00091{bottom:943.026667pt;}
.y2_c00091{bottom:975.600000pt;}
.y1_c00091{bottom:977.693333pt;}
.h9_c00091{height:3.739141pt;}
.h4_c00091{height:20.466875pt;}
.h2_c00091{height:22.303646pt;}
.h3_c00091{height:27.879557pt;}
.h1_c00091{height:31.618698pt;}
.h6_c00091{height:35.357839pt;}
.h5_c00091{height:39.031380pt;}
.h7_c00091{height:42.770521pt;}
.h8_c00091{height:47.618698pt;}
.h0_c00091{height:1186.666667pt;}
.w0_c00091{width:782.666667pt;}
.x0_c00091{left:0.000000pt;}
.xbe_c00091{left:134.293333pt;}
.x1_c00091{left:135.626667pt;}
.x3_c00091{left:137.333333pt;}
.xf7_c00091{left:146.666667pt;}
.xfd_c00091{left:148.000000pt;}
.xb8_c00091{left:148.960000pt;}
.xaf_c00091{left:152.000000pt;}
.x4_c00091{left:154.293333pt;}
.xdc_c00091{left:158.666667pt;}
.x39_c00091{left:159.626667pt;}
.xbf_c00091{left:162.666667pt;}
.x46_c00091{left:164.000000pt;}
.xa2_c00091{left:166.666667pt;}
.x5b_c00091{left:170.666667pt;}
.x85_c00091{left:172.373333pt;}
.xcf_c00091{left:173.333333pt;}
.x3a_c00091{left:175.626667pt;}
.x65_c00091{left:177.333333pt;}
.xd4_c00091{left:178.293333pt;}
.x79_c00091{left:180.960000pt;}
.x14_c00091{left:182.666667pt;}
.x22_c00091{left:183.626667pt;}
.xa9_c00091{left:185.333333pt;}
.x70_c00091{left:188.000000pt;}
.x2f_c00091{left:190.666667pt;}
.xe2_c00091{left:193.333333pt;}
.x5_c00091{left:195.040000pt;}
.x52_c00091{left:196.000000pt;}
.x7a_c00091{left:198.666667pt;}
.x23_c00091{left:201.706667pt;}
.x8d_c00091{left:202.666667pt;}
.xb6_c00091{left:204.000000pt;}
.x47_c00091{left:205.333333pt;}
.x66_c00091{left:208.000000pt;}
.xc5_c00091{left:209.333333pt;}
.xd0_c00091{left:210.666667pt;}
.x97_c00091{left:212.000000pt;}
.x3b_c00091{left:214.293333pt;}
.xe9_c00091{left:216.373333pt;}
.xe3_c00091{left:217.706667pt;}
.x6_c00091{left:218.666667pt;}
.x48_c00091{left:219.626667pt;}
.x9d_c00091{left:221.706667pt;}
.x8e_c00091{left:222.666667pt;}
.x24_c00091{left:224.000000pt;}
.x3c_c00091{left:226.666667pt;}
.x53_c00091{left:227.626667pt;}
.xf0_c00091{left:229.333333pt;}
.x15_c00091{left:232.373333pt;}
.x86_c00091{left:234.293333pt;}
.xf9_c00091{left:237.333333pt;}
.xb9_c00091{left:238.293333pt;}
.x5c_c00091{left:240.373333pt;}
.xc6_c00091{left:241.333333pt;}
.xdd_c00091{left:244.000000pt;}
.x54_c00091{left:245.706667pt;}
.x7b_c00091{left:246.666667pt;}
.x7_c00091{left:248.000000pt;}
.x87_c00091{left:249.706667pt;}
.xc0_c00091{left:250.666667pt;}
.x67_c00091{left:251.626667pt;}
.x3d_c00091{left:253.706667pt;}
.xfa_c00091{left:256.000000pt;}
.xa3_c00091{left:257.706667pt;}
.x30_c00091{left:258.666667pt;}
.x7c_c00091{left:261.706667pt;}
.xd5_c00091{left:262.666667pt;}
.x5d_c00091{left:264.373333pt;}
.x8_c00091{left:265.333333pt;}
.xe4_c00091{left:267.626667pt;}
.xc1_c00091{left:268.960000pt;}
.x55_c00091{left:270.666667pt;}
.xb0_c00091{left:272.373333pt;}
.x88_c00091{left:273.333333pt;}
.x8f_c00091{left:275.040000pt;}
.xaa_c00091{left:276.000000pt;}
.x71_c00091{left:277.706667pt;}
.xb7_c00091{left:280.960000pt;}
.xf1_c00091{left:282.293333pt;}
.xa4_c00091{left:283.626667pt;}
.xff_c00091{left:284.960000pt;}
.x3e_c00091{left:288.000000pt;}
.x68_c00091{left:288.960000pt;}
.x16_c00091{left:290.666667pt;}
.xc7_c00091{left:292.373333pt;}
.xe5_c00091{left:294.666667pt;}
.xd6_c00091{left:297.333333pt;}
.x7d_c00091{left:298.666667pt;}
.x31_c00091{left:300.000000pt;}
.x49_c00091{left:301.333333pt;}
.xba_c00091{left:302.666667pt;}
.x25_c00091{left:304.373333pt;}
.x90_c00091{left:308.000000pt;}
.xab_c00091{left:312.000000pt;}
.x98_c00091{left:313.333333pt;}
.x9_c00091{left:315.040000pt;}
.x4a_c00091{left:318.666667pt;}
.x72_c00091{left:320.373333pt;}
.x9e_c00091{left:324.000000pt;}
.xac_c00091{left:325.706667pt;}
.x17_c00091{left:327.626667pt;}
.xde_c00091{left:331.040000pt;}
.x32_c00091{left:333.333333pt;}
.xf3_c00091{left:334.293333pt;}
.xe6_c00091{left:339.040000pt;}
.xa_c00091{left:340.000000pt;}
.xc8_c00091{left:343.626667pt;}
.x73_c00091{left:344.960000pt;}
.x56_c00091{left:345.906667pt;}
.xda_c00091{left:349.333333pt;}
.x33_c00091{left:351.040000pt;}
.x89_c00091{left:352.000000pt;}
.xfb_c00091{left:355.240000pt;}
.x2_c00091{left:357.333333pt;}
.x3f_c00091{left:358.666667pt;}
.xc9_c00091{left:360.960000pt;}
.x7e_c00091{left:364.373333pt;}
.x69_c00091{left:365.706667pt;}
.x4b_c00091{left:369.333333pt;}
.x91_c00091{left:371.040000pt;}
.xb_c00091{left:372.000000pt;}
.x34_c00091{left:375.040000pt;}
.xbb_c00091{left:376.373333pt;}
.x26_c00091{left:378.666667pt;}
.x5e_c00091{left:380.000000pt;}
.xa5_c00091{left:381.333333pt;}
.xfc_c00091{left:382.293333pt;}
.x40_c00091{left:384.373333pt;}
.x9f_c00091{left:385.333333pt;}
.xd7_c00091{left:388.960000pt;}
.x99_c00091{left:392.000000pt;}
.x27_c00091{left:395.040000pt;}
.x18_c00091{left:397.333333pt;}
.xdf_c00091{left:400.373333pt;}
.xa0_c00091{left:401.333333pt;}
.x4c_c00091{left:402.666667pt;}
.x74_c00091{left:406.293333pt;}
.x6a_c00091{left:408.000000pt;}
.x5f_c00091{left:409.333333pt;}
.xb1_c00091{left:411.040000pt;}
.x7f_c00091{left:412.373333pt;}
.xca_c00091{left:416.000000pt;}
.xc_c00091{left:416.960000pt;}
.x9a_c00091{left:418.666667pt;}
.x28_c00091{left:420.000000pt;}
.xf4_c00091{left:423.626667pt;}
.x19_c00091{left:424.960000pt;}
.x41_c00091{left:426.666667pt;}
.x35_c00091{left:428.000000pt;}
.xa6_c00091{left:430.666667pt;}
.x57_c00091{left:432.760000pt;}
.xb2_c00091{left:434.293333pt;}
.x60_c00091{left:436.373333pt;}
.x80_c00091{left:437.706667pt;}
.xcb_c00091{left:440.373333pt;}
.xe7_c00091{left:441.333333pt;}
.xd1_c00091{left:444.000000pt;}
.xc2_c00091{left:445.706667pt;}
.xa7_c00091{left:447.040000pt;}
.x75_c00091{left:451.040000pt;}
.xad_c00091{left:453.706667pt;}
.x1a_c00091{left:454.666667pt;}
.x9b_c00091{left:456.373333pt;}
.xd_c00091{left:457.706667pt;}
.x29_c00091{left:459.040000pt;}
.xee_c00091{left:460.373333pt;}
.xf6_c00091{left:462.666667pt;}
.x1b_c00091{left:466.666667pt;}
.xa1_c00091{left:468.000000pt;}
.xb3_c00091{left:471.040000pt;}
.xe_c00091{left:473.333333pt;}
.x6b_c00091{left:475.040000pt;}
.x58_c00091{left:476.000000pt;}
.x4d_c00091{left:477.333333pt;}
.x92_c00091{left:478.293333pt;}
.x61_c00091{left:480.373333pt;}
.x76_c00091{left:481.333333pt;}
.x2a_c00091{left:483.040000pt;}
.x8a_c00091{left:484.000000pt;}
.xef_c00091{left:485.706667pt;}
.xf5_c00091{left:487.800000pt;}
.x42_c00091{left:490.666667pt;}
.xea_c00091{left:491.626667pt;}
.xd8_c00091{left:493.333333pt;}
.xfe_c00091{left:494.666667pt;}
.x1c_c00091{left:496.373333pt;}
.xcc_c00091{left:498.666667pt;}
.x6c_c00091{left:500.373333pt;}
.xf8_c00091{left:501.706667pt;}
.xf_c00091{left:503.040000pt;}
.xbc_c00091{left:504.000000pt;}
.x77_c00091{left:505.333333pt;}
.xeb_c00091{left:509.706667pt;}
.x4e_c00091{left:511.040000pt;}
.xe8_c00091{left:512.373333pt;}
.x62_c00091{left:513.706667pt;}
.x43_c00091{left:515.040000pt;}
.xd2_c00091{left:516.000000pt;}
.xbd_c00091{left:518.666667pt;}
.x93_c00091{left:520.373333pt;}
.x59_c00091{left:521.706667pt;}
.x36_c00091{left:522.666667pt;}
.x81_c00091{left:527.626667pt;}
.x2b_c00091{left:530.666667pt;}
.x9c_c00091{left:533.333333pt;}
.x1d_c00091{left:534.666667pt;}
.x4f_c00091{left:535.626667pt;}
.x10_c00091{left:537.333333pt;}
.x63_c00091{left:539.040000pt;}
.x6d_c00091{left:543.626667pt;}
.xc3_c00091{left:547.040000pt;}
.xd3_c00091{left:549.333333pt;}
.x8b_c00091{left:551.040000pt;}
.x1e_c00091{left:552.373333pt;}
.x82_c00091{left:554.666667pt;}
.xcd_c00091{left:556.373333pt;}
.xd9_c00091{left:560.960000pt;}
.x94_c00091{left:562.666667pt;}
.x11_c00091{left:564.000000pt;}
.xe0_c00091{left:568.000000pt;}
.x83_c00091{left:569.333333pt;}
.xec_c00091{left:570.666667pt;}
.x37_c00091{left:572.000000pt;}
.xb4_c00091{left:575.040000pt;}
.x8c_c00091{left:576.373333pt;}
.x2c_c00091{left:578.293333pt;}
.xae_c00091{left:580.373333pt;}
.x78_c00091{left:581.333333pt;}
.x12_c00091{left:582.666667pt;}
.x1f_c00091{left:584.000000pt;}
.x84_c00091{left:585.333333pt;}
.x44_c00091{left:588.000000pt;}
.xed_c00091{left:589.706667pt;}
.x6e_c00091{left:591.040000pt;}
.xdb_c00091{left:593.333333pt;}
.x2d_c00091{left:595.040000pt;}
.x50_c00091{left:596.373333pt;}
.xce_c00091{left:597.333333pt;}
.x20_c00091{left:603.040000pt;}
.x45_c00091{left:604.373333pt;}
.xe1_c00091{left:605.706667pt;}
.xb5_c00091{left:607.626667pt;}
.x95_c00091{left:610.666667pt;}
.x5a_c00091{left:611.626667pt;}
.x64_c00091{left:612.960000pt;}
.xa8_c00091{left:614.293333pt;}
.x6f_c00091{left:616.000000pt;}
.x13_c00091{left:617.333333pt;}
.x2e_c00091{left:618.293333pt;}
.x38_c00091{left:620.000000pt;}
.xc4_c00091{left:624.373333pt;}
.x96_c00091{left:625.333333pt;}
.xf2_c00091{left:627.040000pt;}
.x21_c00091{left:628.373333pt;}
.x51_c00091{left:631.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_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_8c498e013898dfc5ad76600e.woff2')format("woff");}.ff1_c00092{font-family:ff1_c00092;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m10b_c00092{transform:matrix(0.305498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305498,0.000000,0.000000,0.250000,0,0);}
.m44_c00092{transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);}
.m6a_c00092{transform:matrix(0.344118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344118,0.000000,0.000000,0.250000,0,0);}
.m3e_c00092{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m36_c00092{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mfd_c00092{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m0_c00092{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.me5_c00092{transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);}
.mbd_c00092{transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);}
.m7_c00092{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m119_c00092{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m6b_c00092{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m1c_c00092{transform:matrix(0.372699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372699,0.000000,0.000000,0.250000,0,0);}
.m10d_c00092{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00092{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m20_c00092{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m1d_c00092{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.ma0_c00092{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m10e_c00092{transform:matrix(0.386887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386887,0.000000,0.000000,0.250000,0,0);}
.m2e_c00092{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.md1_c00092{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m64_c00092{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m2b_c00092{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m42_c00092{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m110_c00092{transform:matrix(0.391488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391488,0.000000,0.000000,0.250000,0,0);}
.mef_c00092{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m3d_c00092{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m40_c00092{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m70_c00092{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m5f_c00092{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.mc1_c00092{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m58_c00092{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);}
.m9b_c00092{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.m3f_c00092{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mc4_c00092{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mbf_c00092{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m105_c00092{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m62_c00092{transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);}
.mab_c00092{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m8c_c00092{transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);}
.mbb_c00092{transform:matrix(0.408359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408359,0.000000,0.000000,0.250000,0,0);}
.mc6_c00092{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mac_c00092{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mcc_c00092{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m89_c00092{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m104_c00092{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mc_c00092{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m106_c00092{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.ma_c00092{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.ma3_c00092{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m118_c00092{transform:matrix(0.419862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419862,0.000000,0.000000,0.250000,0,0);}
.m68_c00092{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.mb1_c00092{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.ma1_c00092{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m38_c00092{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m71_c00092{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m111_c00092{transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);}
.m80_c00092{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m1f_c00092{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mb5_c00092{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mf4_c00092{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m72_c00092{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m82_c00092{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m9c_c00092{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.ma9_c00092{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.md2_c00092{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m41_c00092{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.m4a_c00092{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m10f_c00092{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m115_c00092{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m11a_c00092{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m12_c00092{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m30_c00092{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m75_c00092{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m5e_c00092{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m116_c00092{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.mda_c00092{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m9a_c00092{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.md3_c00092{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mcf_c00092{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m59_c00092{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mca_c00092{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m49_c00092{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m9d_c00092{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m11_c00092{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.mf8_c00092{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m37_c00092{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mb9_c00092{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.mf_c00092{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.me6_c00092{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m4d_c00092{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.ma5_c00092{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m6d_c00092{transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);}
.m6_c00092{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m103_c00092{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.mf5_c00092{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.mc5_c00092{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.mec_c00092{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m16_c00092{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m87_c00092{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m8b_c00092{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.md8_c00092{transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);}
.m13_c00092{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m10_c00092{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mae_c00092{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.md6_c00092{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m29_c00092{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m2_c00092{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.md7_c00092{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.me_c00092{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m91_c00092{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m19_c00092{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m93_c00092{transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);}
.mff_c00092{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.mfa_c00092{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m67_c00092{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.m7d_c00092{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.ma8_c00092{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m96_c00092{transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);}
.m10c_c00092{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m90_c00092{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.md9_c00092{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m77_c00092{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m28_c00092{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m8f_c00092{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m6c_c00092{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m11b_c00092{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.md0_c00092{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m7c_c00092{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mfc_c00092{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.mf2_c00092{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m8e_c00092{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m8_c00092{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m69_c00092{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.me1_c00092{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m4c_c00092{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.mc8_c00092{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.md_c00092{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);}
.m4f_c00092{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.md4_c00092{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.m2d_c00092{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m6e_c00092{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m54_c00092{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m114_c00092{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m61_c00092{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);}
.m6f_c00092{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m34_c00092{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mf0_c00092{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m9_c00092{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mce_c00092{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m17_c00092{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m8d_c00092{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m21_c00092{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mdf_c00092{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.me7_c00092{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m83_c00092{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_c00092{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m2f_c00092{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.mf9_c00092{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m63_c00092{transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);}
.m107_c00092{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mc3_c00092{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m108_c00092{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m4b_c00092{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.mdb_c00092{transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);}
.m3b_c00092{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m14_c00092{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m2c_c00092{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m53_c00092{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.mb8_c00092{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m27_c00092{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m94_c00092{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m5_c00092{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.maf_c00092{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m15_c00092{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m9f_c00092{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m57_c00092{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m113_c00092{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);}
.meb_c00092{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m45_c00092{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m26_c00092{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mc2_c00092{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.maa_c00092{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m18_c00092{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m50_c00092{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mdd_c00092{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m22_c00092{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m4e_c00092{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m65_c00092{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m1b_c00092{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.med_c00092{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m1e_c00092{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m23_c00092{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m25_c00092{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mc0_c00092{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mb7_c00092{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mf1_c00092{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m48_c00092{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.mfb_c00092{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m97_c00092{transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);}
.me4_c00092{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m2a_c00092{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m10a_c00092{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m109_c00092{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m101_c00092{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.mfe_c00092{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m43_c00092{transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);}
.m3_c00092{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m47_c00092{transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);}
.m24_c00092{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.ma6_c00092{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.mc7_c00092{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m92_c00092{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.mb_c00092{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.md5_c00092{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mee_c00092{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.mbe_c00092{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m39_c00092{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mb4_c00092{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m66_c00092{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);}
.m88_c00092{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.me3_c00092{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m74_c00092{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m73_c00092{transform:matrix(0.584559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584559,0.000000,0.000000,0.250000,0,0);}
.m46_c00092{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mde_c00092{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m5b_c00092{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m84_c00092{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m102_c00092{transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);}
.m98_c00092{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.mb0_c00092{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);}
.mf3_c00092{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m1_c00092{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m52_c00092{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m112_c00092{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mb3_c00092{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m56_c00092{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m1a_c00092{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m5d_c00092{transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);}
.m100_c00092{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.m7f_c00092{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.me9_c00092{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m95_c00092{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_c00092{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m8a_c00092{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.me8_c00092{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m81_c00092{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.me2_c00092{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m79_c00092{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.ma2_c00092{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m117_c00092{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m31_c00092{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mf7_c00092{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m3c_c00092{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.me0_c00092{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m7b_c00092{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.mb2_c00092{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.ma4_c00092{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m7e_c00092{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mcb_c00092{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m7a_c00092{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);}
.m85_c00092{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m55_c00092{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mf6_c00092{transform:matrix(0.719853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719853,0.000000,0.000000,0.250000,0,0);}
.m9e_c00092{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.mcd_c00092{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mc9_c00092{transform:matrix(0.736471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736471,0.000000,0.000000,0.250000,0,0);}
.m32_c00092{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m5a_c00092{transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);}
.m51_c00092{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.ma7_c00092{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m78_c00092{transform:matrix(0.766176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766176,0.000000,0.000000,0.250000,0,0);}
.m3a_c00092{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mad_c00092{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m33_c00092{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mb6_c00092{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.mbc_c00092{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.mba_c00092{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mea_c00092{transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);}
.m76_c00092{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m5c_c00092{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m60_c00092{transform:matrix(0.899840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.899840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.899840,0.000000,0.000000,0.250000,0,0);}
.m99_c00092{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.m4_c00092{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00092{vertical-align:0.000000px;}
.v1_c00092{vertical-align:13.680000px;}
.ls1_c00092{letter-spacing:0.000000px;}
.ls0_c00092{letter-spacing:14.817600px;}
.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;}
}
.ws1_c00092{word-spacing:-2.573948px;}
.ws2_c00092{word-spacing:0.000000px;}
.ws0_c00092{word-spacing:0.308050px;}
.fc0_c00092{color:transparent;}
.fs4_c00092{font-size:3.420000px;}
.fs8_c00092{font-size:13.620000px;}
.fs2_c00092{font-size:18.720000px;}
.fs1_c00092{font-size:20.400000px;}
.fs7_c00092{font-size:25.500000px;}
.fs3_c00092{font-size:28.920000px;}
.fs5_c00092{font-size:32.340000px;}
.fs0_c00092{font-size:35.700000px;}
.fs6_c00092{font-size:39.120000px;}
.y0_c00092{bottom:0.000000px;}
.y3_c00092{bottom:225.630000px;}
.yda_c00092{bottom:249.405000px;}
.ydb_c00092{bottom:251.745000px;}
.yd7_c00092{bottom:252.180000px;}
.yd8_c00092{bottom:252.630000px;}
.ydc_c00092{bottom:253.470000px;}
.yd9_c00092{bottom:253.905000px;}
.yd1_c00092{bottom:269.745000px;}
.yd2_c00092{bottom:269.970000px;}
.yd6_c00092{bottom:271.245000px;}
.yd3_c00092{bottom:272.130000px;}
.yd4_c00092{bottom:272.325000px;}
.yd0_c00092{bottom:272.970000px;}
.ycf_c00092{bottom:273.405000px;}
.yd5_c00092{bottom:274.470000px;}
.ycc_c00092{bottom:289.245000px;}
.ycd_c00092{bottom:289.470000px;}
.yc9_c00092{bottom:290.325000px;}
.yc8_c00092{bottom:290.745000px;}
.yce_c00092{bottom:291.825000px;}
.ycb_c00092{bottom:292.470000px;}
.yca_c00092{bottom:292.905000px;}
.yc6_c00092{bottom:309.180000px;}
.yc7_c00092{bottom:310.245000px;}
.yc5_c00092{bottom:312.405000px;}
.yc2_c00092{bottom:329.745000px;}
.yc3_c00092{bottom:330.630000px;}
.yc4_c00092{bottom:331.470000px;}
.yc1_c00092{bottom:331.905000px;}
.yc0_c00092{bottom:333.405000px;}
.ybd_c00092{bottom:349.245000px;}
.ybf_c00092{bottom:350.970000px;}
.ybc_c00092{bottom:351.405000px;}
.ybe_c00092{bottom:352.470000px;}
.yb6_c00092{bottom:368.745000px;}
.yba_c00092{bottom:369.405000px;}
.yb8_c00092{bottom:369.630000px;}
.yb9_c00092{bottom:369.825000px;}
.ybb_c00092{bottom:370.470000px;}
.yb7_c00092{bottom:370.905000px;}
.yb1_c00092{bottom:388.245000px;}
.yb5_c00092{bottom:389.130000px;}
.yb4_c00092{bottom:389.325000px;}
.yb2_c00092{bottom:389.550000px;}
.yb3_c00092{bottom:390.405000px;}
.yb0_c00092{bottom:390.825000px;}
.yaf_c00092{bottom:407.745000px;}
.yae_c00092{bottom:409.905000px;}
.yac_c00092{bottom:410.325000px;}
.yad_c00092{bottom:410.970000px;}
.yab_c00092{bottom:411.405000px;}
.yaa_c00092{bottom:427.245000px;}
.ya8_c00092{bottom:429.405000px;}
.ya9_c00092{bottom:430.470000px;}
.ya7_c00092{bottom:430.905000px;}
.ya0_c00092{bottom:446.745000px;}
.ya4_c00092{bottom:446.970000px;}
.ya5_c00092{bottom:447.630000px;}
.ya6_c00092{bottom:448.470000px;}
.ya1_c00092{bottom:448.905000px;}
.ya2_c00092{bottom:449.130000px;}
.ya3_c00092{bottom:449.970000px;}
.y9f_c00092{bottom:450.405000px;}
.y9d_c00092{bottom:466.245000px;}
.y9c_c00092{bottom:467.745000px;}
.y9e_c00092{bottom:468.630000px;}
.y99_c00092{bottom:469.050000px;}
.y9b_c00092{bottom:469.470000px;}
.y9a_c00092{bottom:469.905000px;}
.y96_c00092{bottom:487.245000px;}
.y98_c00092{bottom:487.905000px;}
.y97_c00092{bottom:488.325000px;}
.y95_c00092{bottom:489.405000px;}
.y94_c00092{bottom:490.905000px;}
.y91_c00092{bottom:506.745000px;}
.y93_c00092{bottom:507.825000px;}
.y92_c00092{bottom:508.905000px;}
.y8f_c00092{bottom:526.245000px;}
.y90_c00092{bottom:527.325000px;}
.y8e_c00092{bottom:528.405000px;}
.y8c_c00092{bottom:544.905000px;}
.y8a_c00092{bottom:545.745000px;}
.y8d_c00092{bottom:545.970000px;}
.y85_c00092{bottom:547.245000px;}
.y8b_c00092{bottom:547.470000px;}
.y89_c00092{bottom:547.905000px;}
.y86_c00092{bottom:548.130000px;}
.y88_c00092{bottom:548.325000px;}
.y87_c00092{bottom:549.405000px;}
.y81_c00092{bottom:566.745000px;}
.y84_c00092{bottom:567.405000px;}
.y83_c00092{bottom:567.825000px;}
.y80_c00092{bottom:568.470000px;}
.y82_c00092{bottom:568.905000px;}
.y7f_c00092{bottom:569.970000px;}
.y7c_c00092{bottom:584.745000px;}
.y7e_c00092{bottom:585.825000px;}
.y7b_c00092{bottom:586.245000px;}
.y7d_c00092{bottom:586.905000px;}
.y7a_c00092{bottom:588.405000px;}
.y78_c00092{bottom:604.680000px;}
.y74_c00092{bottom:604.905000px;}
.y77_c00092{bottom:605.745000px;}
.y76_c00092{bottom:606.630000px;}
.y75_c00092{bottom:607.470000px;}
.y79_c00092{bottom:607.905000px;}
.y71_c00092{bottom:625.245000px;}
.y73_c00092{bottom:626.325000px;}
.y70_c00092{bottom:627.405000px;}
.y6f_c00092{bottom:627.630000px;}
.y72_c00092{bottom:628.470000px;}
.y6e_c00092{bottom:628.905000px;}
.y69_c00092{bottom:643.470000px;}
.y6a_c00092{bottom:644.745000px;}
.y6b_c00092{bottom:645.630000px;}
.y6d_c00092{bottom:645.825000px;}
.y6c_c00092{bottom:646.470000px;}
.y67_c00092{bottom:646.905000px;}
.y68_c00092{bottom:647.970000px;}
.y64_c00092{bottom:664.245000px;}
.y65_c00092{bottom:666.405000px;}
.y66_c00092{bottom:666.630000px;}
.y5e_c00092{bottom:682.905000px;}
.y5c_c00092{bottom:683.325000px;}
.y5f_c00092{bottom:683.970000px;}
.y62_c00092{bottom:684.825000px;}
.y63_c00092{bottom:685.050000px;}
.y60_c00092{bottom:685.245000px;}
.y61_c00092{bottom:686.130000px;}
.y5d_c00092{bottom:686.970000px;}
.y5b_c00092{bottom:687.405000px;}
.y57_c00092{bottom:704.745000px;}
.y59_c00092{bottom:706.905000px;}
.y58_c00092{bottom:706.920000px;}
.y5a_c00092{bottom:707.970000px;}
.y54_c00092{bottom:729.825000px;}
.y56_c00092{bottom:730.905000px;}
.y55_c00092{bottom:732.195000px;}
.y53_c00092{bottom:733.470000px;}
.y4e_c00092{bottom:745.905000px;}
.y51_c00092{bottom:746.550000px;}
.y50_c00092{bottom:746.970000px;}
.y52_c00092{bottom:747.195000px;}
.y4d_c00092{bottom:747.405000px;}
.y4f_c00092{bottom:748.050000px;}
.y4b_c00092{bottom:760.905000px;}
.y4a_c00092{bottom:761.325000px;}
.y46_c00092{bottom:761.550000px;}
.y4c_c00092{bottom:761.970000px;}
.y47_c00092{bottom:762.405000px;}
.y49_c00092{bottom:762.630000px;}
.y48_c00092{bottom:763.470000px;}
.y45_c00092{bottom:774.825000px;}
.y43_c00092{bottom:775.470000px;}
.y44_c00092{bottom:778.050000px;}
.y41_c00092{bottom:790.905000px;}
.y40_c00092{bottom:792.195000px;}
.y42_c00092{bottom:793.050000px;}
.y3f_c00092{bottom:804.405000px;}
.y3e_c00092{bottom:806.550000px;}
.y3d_c00092{bottom:818.550000px;}
.y3a_c00092{bottom:818.970000px;}
.y3b_c00092{bottom:819.405000px;}
.y39_c00092{bottom:819.825000px;}
.y3c_c00092{bottom:820.470000px;}
.y37_c00092{bottom:833.970000px;}
.y35_c00092{bottom:834.825000px;}
.y38_c00092{bottom:835.470000px;}
.y36_c00092{bottom:835.905000px;}
.y33_c00092{bottom:836.130000px;}
.y34_c00092{bottom:836.970000px;}
.y31_c00092{bottom:862.245000px;}
.y32_c00092{bottom:864.405000px;}
.y30_c00092{bottom:865.470000px;}
.y2a_c00092{bottom:881.745000px;}
.y2f_c00092{bottom:882.405000px;}
.y2b_c00092{bottom:882.630000px;}
.y2e_c00092{bottom:883.470000px;}
.y2c_c00092{bottom:883.905000px;}
.y2d_c00092{bottom:884.970000px;}
.y27_c00092{bottom:902.130000px;}
.y28_c00092{bottom:902.325000px;}
.y29_c00092{bottom:902.970000px;}
.y26_c00092{bottom:903.405000px;}
.y25_c00092{bottom:920.745000px;}
.y24_c00092{bottom:922.905000px;}
.y1c_c00092{bottom:939.825000px;}
.y1d_c00092{bottom:940.245000px;}
.y22_c00092{bottom:940.680000px;}
.y1e_c00092{bottom:940.905000px;}
.y1f_c00092{bottom:941.325000px;}
.y20_c00092{bottom:941.745000px;}
.y23_c00092{bottom:942.405000px;}
.y21_c00092{bottom:943.470000px;}
.y18_c00092{bottom:959.745000px;}
.y1a_c00092{bottom:960.825000px;}
.y19_c00092{bottom:961.905000px;}
.y1b_c00092{bottom:962.130000px;}
.y17_c00092{bottom:962.970000px;}
.y16_c00092{bottom:978.405000px;}
.y14_c00092{bottom:979.245000px;}
.y13_c00092{bottom:981.405000px;}
.y15_c00092{bottom:981.630000px;}
.y12_c00092{bottom:998.745000px;}
.y10_c00092{bottom:1000.905000px;}
.y11_c00092{bottom:1002.420000px;}
.yd_c00092{bottom:1017.405000px;}
.ye_c00092{bottom:1018.245000px;}
.yc_c00092{bottom:1018.680000px;}
.yf_c00092{bottom:1019.745000px;}
.ya_c00092{bottom:1020.405000px;}
.yb_c00092{bottom:1021.905000px;}
.y8_c00092{bottom:1040.325000px;}
.y9_c00092{bottom:1041.405000px;}
.y6_c00092{bottom:1058.325000px;}
.y7_c00092{bottom:1058.745000px;}
.y4_c00092{bottom:1060.905000px;}
.y5_c00092{bottom:1060.920000px;}
.y2_c00092{bottom:1097.550000px;}
.y1_c00092{bottom:1097.745000px;}
.h5_c00092{height:4.206533px;}
.ha_c00092{height:16.752334px;}
.h3_c00092{height:23.025234px;}
.h2_c00092{height:25.091602px;}
.h8_c00092{height:31.364502px;}
.h4_c00092{height:35.571035px;}
.h6_c00092{height:39.777568px;}
.h1_c00092{height:43.910303px;}
.h9_c00092{height:45.044502px;}
.h7_c00092{height:48.116836px;}
.h0_c00092{height:1335.000000px;}
.w0_c00092{width:880.500000px;}
.x0_c00092{left:0.000000px;}
.x101_c00092{left:151.080000px;}
.xf_c00092{left:152.580000px;}
.x74_c00092{left:154.080000px;}
.x7c_c00092{left:166.500000px;}
.x6d_c00092{left:167.580000px;}
.x4_c00092{left:169.080000px;}
.xa8_c00092{left:172.500000px;}
.x103_c00092{left:174.000000px;}
.xb8_c00092{left:177.000000px;}
.x7b_c00092{left:180.000000px;}
.xc2_c00092{left:183.000000px;}
.x6e_c00092{left:184.500000px;}
.x39_c00092{left:186.000000px;}
.xdd_c00092{left:187.920000px;}
.x5f_c00092{left:189.000000px;}
.x56_c00092{left:190.920000px;}
.x9c_c00092{left:192.000000px;}
.x98_c00092{left:193.080000px;}
.x1a_c00092{left:195.000000px;}
.x10_c00092{left:196.080000px;}
.x2f_c00092{left:197.580000px;}
.xef_c00092{left:199.500000px;}
.xa9_c00092{left:200.580000px;}
.x60_c00092{left:204.000000px;}
.xe7_c00092{left:205.080000px;}
.x43_c00092{left:208.500000px;}
.xb9_c00092{left:210.000000px;}
.xc3_c00092{left:211.080000px;}
.xde_c00092{left:214.080000px;}
.x57_c00092{left:217.500000px;}
.xf4_c00092{left:219.000000px;}
.xfa_c00092{left:222.420000px;}
.x69_c00092{left:223.500000px;}
.x9d_c00092{left:225.000000px;}
.x4d_c00092{left:226.080000px;}
.x91_c00092{left:227.580000px;}
.x7d_c00092{left:229.500000px;}
.xbf_c00092{left:231.000000px;}
.x99_c00092{left:232.080000px;}
.xaa_c00092{left:234.000000px;}
.x6f_c00092{left:235.080000px;}
.x3a_c00092{left:242.580000px;}
.x1b_c00092{left:244.500000px;}
.x9e_c00092{left:246.000000px;}
.xec_c00092{left:247.500000px;}
.x87_c00092{left:249.000000px;}
.x23_c00092{left:250.500000px;}
.x6a_c00092{left:252.420000px;}
.xe8_c00092{left:253.920000px;}
.xf5_c00092{left:255.000000px;}
.x7e_c00092{left:256.500000px;}
.x5_c00092{left:261.000000px;}
.x44_c00092{left:262.080000px;}
.x1c_c00092{left:263.580000px;}
.x11_c00092{left:265.080000px;}
.xf7_c00092{left:267.000000px;}
.x24_c00092{left:268.080000px;}
.x58_c00092{left:270.000000px;}
.xc8_c00092{left:271.920000px;}
.x30_c00092{left:273.000000px;}
.x75_c00092{left:277.920000px;}
.x70_c00092{left:280.080000px;}
.x6_c00092{left:282.000000px;}
.xba_c00092{left:283.500000px;}
.x104_c00092{left:285.420000px;}
.xed_c00092{left:288.000000px;}
.x7f_c00092{left:292.920000px;}
.x4e_c00092{left:294.000000px;}
.xdf_c00092{left:295.080000px;}
.xab_c00092{left:299.580000px;}
.x88_c00092{left:301.500000px;}
.xe9_c00092{left:303.000000px;}
.x31_c00092{left:306.420000px;}
.xd6_c00092{left:307.500000px;}
.xb1_c00092{left:308.580000px;}
.x80_c00092{left:310.500000px;}
.x1d_c00092{left:311.580000px;}
.x92_c00092{left:313.500000px;}
.xcf_c00092{left:315.000000px;}
.x7_c00092{left:316.500000px;}
.x61_c00092{left:317.580000px;}
.x6b_c00092{left:319.080000px;}
.x105_c00092{left:322.920000px;}
.xc4_c00092{left:327.000000px;}
.x3b_c00092{left:328.500000px;}
.x45_c00092{left:332.775000px;}
.x12_c00092{left:334.080000px;}
.x89_c00092{left:336.000000px;}
.x62_c00092{left:339.420000px;}
.x25_c00092{left:342.000000px;}
.x93_c00092{left:343.080000px;}
.xac_c00092{left:345.000000px;}
.xd2_c00092{left:348.420000px;}
.xf1_c00092{left:349.920000px;}
.xd7_c00092{left:351.000000px;}
.x4f_c00092{left:353.580000px;}
.xe4_c00092{left:357.000000px;}
.xb2_c00092{left:358.080000px;}
.xfb_c00092{left:360.000000px;}
.x76_c00092{left:361.500000px;}
.x26_c00092{left:363.000000px;}
.xad_c00092{left:364.500000px;}
.x9f_c00092{left:365.580000px;}
.xe0_c00092{left:366.645000px;}
.x63_c00092{left:369.000000px;}
.x94_c00092{left:370.500000px;}
.x46_c00092{left:371.580000px;}
.x32_c00092{left:373.920000px;}
.xfc_c00092{left:375.000000px;}
.x8_c00092{left:376.500000px;}
.xf2_c00092{left:378.420000px;}
.x13_c00092{left:379.500000px;}
.x8a_c00092{left:381.000000px;}
.x3c_c00092{left:382.080000px;}
.x1e_c00092{left:384.420000px;}
.xa0_c00092{left:385.500000px;}
.x6c_c00092{left:388.500000px;}
.xd8_c00092{left:390.000000px;}
.xae_c00092{left:393.420000px;}
.x27_c00092{left:394.920000px;}
.x77_c00092{left:397.080000px;}
.x47_c00092{left:400.500000px;}
.x2_c00092{left:402.000000px;}
.xc9_c00092{left:403.920000px;}
.x33_c00092{left:405.000000px;}
.xf8_c00092{left:406.500000px;}
.xfd_c00092{left:408.000000px;}
.x9a_c00092{left:411.420000px;}
.x95_c00092{left:412.920000px;}
.xa1_c00092{left:418.920000px;}
.x81_c00092{left:423.000000px;}
.xa5_c00092{left:424.500000px;}
.x3d_c00092{left:426.000000px;}
.x1f_c00092{left:427.500000px;}
.xc5_c00092{left:429.000000px;}
.x9_c00092{left:430.500000px;}
.xb3_c00092{left:433.500000px;}
.xd0_c00092{left:439.500000px;}
.xaf_c00092{left:440.580000px;}
.x106_c00092{left:444.000000px;}
.x96_c00092{left:448.500000px;}
.x50_c00092{left:449.580000px;}
.xca_c00092{left:452.580000px;}
.xa6_c00092{left:454.080000px;}
.x59_c00092{left:455.580000px;}
.xbb_c00092{left:457.500000px;}
.xe1_c00092{left:459.420000px;}
.x14_c00092{left:460.500000px;}
.xa_c00092{left:461.580000px;}
.x48_c00092{left:463.275000px;}
.xd9_c00092{left:468.420000px;}
.x51_c00092{left:469.920000px;}
.x64_c00092{left:471.000000px;}
.xcb_c00092{left:472.500000px;}
.x78_c00092{left:474.420000px;}
.xbc_c00092{left:478.500000px;}
.x34_c00092{left:481.500000px;}
.x3e_c00092{left:483.000000px;}
.x5a_c00092{left:484.920000px;}
.xf9_c00092{left:487.080000px;}
.x28_c00092{left:488.580000px;}
.x82_c00092{left:491.145000px;}
.xcc_c00092{left:493.920000px;}
.x20_c00092{left:496.500000px;}
.x52_c00092{left:497.580000px;}
.x65_c00092{left:499.500000px;}
.xb_c00092{left:502.080000px;}
.xb4_c00092{left:504.420000px;}
.x29_c00092{left:507.420000px;}
.x71_c00092{left:509.580000px;}
.x8b_c00092{left:511.500000px;}
.x5b_c00092{left:512.580000px;}
.x21_c00092{left:514.920000px;}
.x107_c00092{left:516.000000px;}
.x9b_c00092{left:518.580000px;}
.xc6_c00092{left:520.920000px;}
.xbd_c00092{left:523.920000px;}
.x3f_c00092{left:526.500000px;}
.xb5_c00092{left:529.500000px;}
.x108_c00092{left:531.000000px;}
.xda_c00092{left:532.920000px;}
.x83_c00092{left:535.500000px;}
.x15_c00092{left:537.420000px;}
.x2a_c00092{left:538.500000px;}
.x22_c00092{left:543.000000px;}
.x35_c00092{left:544.500000px;}
.xee_c00092{left:547.500000px;}
.x8c_c00092{left:550.080000px;}
.x66_c00092{left:553.500000px;}
.x49_c00092{left:555.000000px;}
.xf6_c00092{left:556.500000px;}
.x53_c00092{left:559.080000px;}
.xa2_c00092{left:561.855000px;}
.x16_c00092{left:565.500000px;}
.xc_c00092{left:568.920000px;}
.x79_c00092{left:573.420000px;}
.xfe_c00092{left:574.500000px;}
.xc0_c00092{left:576.000000px;}
.xd3_c00092{left:577.500000px;}
.x5c_c00092{left:579.000000px;}
.xa3_c00092{left:580.500000px;}
.xbe_c00092{left:582.420000px;}
.xe5_c00092{left:585.000000px;}
.xd1_c00092{left:586.920000px;}
.x8d_c00092{left:588.000000px;}
.x2b_c00092{left:589.920000px;}
.xf3_c00092{left:591.420000px;}
.x84_c00092{left:604.080000px;}
.x67_c00092{left:605.580000px;}
.xb6_c00092{left:607.500000px;}
.xdb_c00092{left:608.580000px;}
.xd_c00092{left:610.080000px;}
.xe6_c00092{left:612.000000px;}
.x4a_c00092{left:613.080000px;}
.x40_c00092{left:615.000000px;}
.x8e_c00092{left:617.580000px;}
.x7a_c00092{left:618.855000px;}
.x72_c00092{left:623.580000px;}
.xb7_c00092{left:625.500000px;}
.x2c_c00092{left:626.580000px;}
.x17_c00092{left:630.000000px;}
.x36_c00092{left:631.500000px;}
.xc1_c00092{left:633.420000px;}
.x5d_c00092{left:634.500000px;}
.x41_c00092{left:636.000000px;}
.xe2_c00092{left:640.500000px;}
.xff_c00092{left:642.420000px;}
.xa4_c00092{left:646.500000px;}
.x37_c00092{left:649.500000px;}
.x54_c00092{left:651.000000px;}
.xcd_c00092{left:654.420000px;}
.xdc_c00092{left:655.500000px;}
.x8f_c00092{left:656.580000px;}
.xea_c00092{left:658.500000px;}
.x4b_c00092{left:660.420000px;}
.x38_c00092{left:661.500000px;}
.xb0_c00092{left:663.000000px;}
.x102_c00092{left:664.500000px;}
.xce_c00092{left:666.000000px;}
.xd4_c00092{left:667.500000px;}
.x85_c00092{left:673.500000px;}
.xeb_c00092{left:675.000000px;}
.x18_c00092{left:676.080000px;}
.x100_c00092{left:679.920000px;}
.xf0_c00092{left:681.000000px;}
.x73_c00092{left:682.080000px;}
.x68_c00092{left:684.000000px;}
.x55_c00092{left:685.080000px;}
.xa7_c00092{left:687.420000px;}
.x42_c00092{left:688.500000px;}
.xe_c00092{left:692.580000px;}
.x97_c00092{left:694.080000px;}
.x2d_c00092{left:697.500000px;}
.xd5_c00092{left:699.420000px;}
.x4c_c00092{left:700.500000px;}
.xc7_c00092{left:704.580000px;}
.x86_c00092{left:708.000000px;}
.x19_c00092{left:709.920000px;}
.x2e_c00092{left:712.500000px;}
.xe3_c00092{left:714.000000px;}
.x1_c00092{left:715.500000px;}
.x5e_c00092{left:717.000000px;}
.x90_c00092{left:718.080000px;}
.x3_c00092{left:726.000000px;}
@media print{
.v0_c00092{vertical-align:0.000000pt;}
.v1_c00092{vertical-align:12.160000pt;}
.ls1_c00092{letter-spacing:0.000000pt;}
.ls0_c00092{letter-spacing:13.171200pt;}
.ws1_c00092{word-spacing:-2.287954pt;}
.ws2_c00092{word-spacing:0.000000pt;}
.ws0_c00092{word-spacing:0.273822pt;}
.fs4_c00092{font-size:3.040000pt;}
.fs8_c00092{font-size:12.106667pt;}
.fs2_c00092{font-size:16.640000pt;}
.fs1_c00092{font-size:18.133333pt;}
.fs7_c00092{font-size:22.666667pt;}
.fs3_c00092{font-size:25.706667pt;}
.fs5_c00092{font-size:28.746667pt;}
.fs0_c00092{font-size:31.733333pt;}
.fs6_c00092{font-size:34.773333pt;}
.y0_c00092{bottom:0.000000pt;}
.y3_c00092{bottom:200.560000pt;}
.yda_c00092{bottom:221.693333pt;}
.ydb_c00092{bottom:223.773333pt;}
.yd7_c00092{bottom:224.160000pt;}
.yd8_c00092{bottom:224.560000pt;}
.ydc_c00092{bottom:225.306667pt;}
.yd9_c00092{bottom:225.693333pt;}
.yd1_c00092{bottom:239.773333pt;}
.yd2_c00092{bottom:239.973333pt;}
.yd6_c00092{bottom:241.106667pt;}
.yd3_c00092{bottom:241.893333pt;}
.yd4_c00092{bottom:242.066667pt;}
.yd0_c00092{bottom:242.640000pt;}
.ycf_c00092{bottom:243.026667pt;}
.yd5_c00092{bottom:243.973333pt;}
.ycc_c00092{bottom:257.106667pt;}
.ycd_c00092{bottom:257.306667pt;}
.yc9_c00092{bottom:258.066667pt;}
.yc8_c00092{bottom:258.440000pt;}
.yce_c00092{bottom:259.400000pt;}
.ycb_c00092{bottom:259.973333pt;}
.yca_c00092{bottom:260.360000pt;}
.yc6_c00092{bottom:274.826667pt;}
.yc7_c00092{bottom:275.773333pt;}
.yc5_c00092{bottom:277.693333pt;}
.yc2_c00092{bottom:293.106667pt;}
.yc3_c00092{bottom:293.893333pt;}
.yc4_c00092{bottom:294.640000pt;}
.yc1_c00092{bottom:295.026667pt;}
.yc0_c00092{bottom:296.360000pt;}
.ybd_c00092{bottom:310.440000pt;}
.ybf_c00092{bottom:311.973333pt;}
.ybc_c00092{bottom:312.360000pt;}
.ybe_c00092{bottom:313.306667pt;}
.yb6_c00092{bottom:327.773333pt;}
.yba_c00092{bottom:328.360000pt;}
.yb8_c00092{bottom:328.560000pt;}
.yb9_c00092{bottom:328.733333pt;}
.ybb_c00092{bottom:329.306667pt;}
.yb7_c00092{bottom:329.693333pt;}
.yb1_c00092{bottom:345.106667pt;}
.yb5_c00092{bottom:345.893333pt;}
.yb4_c00092{bottom:346.066667pt;}
.yb2_c00092{bottom:346.266667pt;}
.yb3_c00092{bottom:347.026667pt;}
.yb0_c00092{bottom:347.400000pt;}
.yaf_c00092{bottom:362.440000pt;}
.yae_c00092{bottom:364.360000pt;}
.yac_c00092{bottom:364.733333pt;}
.yad_c00092{bottom:365.306667pt;}
.yab_c00092{bottom:365.693333pt;}
.yaa_c00092{bottom:379.773333pt;}
.ya8_c00092{bottom:381.693333pt;}
.ya9_c00092{bottom:382.640000pt;}
.ya7_c00092{bottom:383.026667pt;}
.ya0_c00092{bottom:397.106667pt;}
.ya4_c00092{bottom:397.306667pt;}
.ya5_c00092{bottom:397.893333pt;}
.ya6_c00092{bottom:398.640000pt;}
.ya1_c00092{bottom:399.026667pt;}
.ya2_c00092{bottom:399.226667pt;}
.ya3_c00092{bottom:399.973333pt;}
.y9f_c00092{bottom:400.360000pt;}
.y9d_c00092{bottom:414.440000pt;}
.y9c_c00092{bottom:415.773333pt;}
.y9e_c00092{bottom:416.560000pt;}
.y99_c00092{bottom:416.933333pt;}
.y9b_c00092{bottom:417.306667pt;}
.y9a_c00092{bottom:417.693333pt;}
.y96_c00092{bottom:433.106667pt;}
.y98_c00092{bottom:433.693333pt;}
.y97_c00092{bottom:434.066667pt;}
.y95_c00092{bottom:435.026667pt;}
.y94_c00092{bottom:436.360000pt;}
.y91_c00092{bottom:450.440000pt;}
.y93_c00092{bottom:451.400000pt;}
.y92_c00092{bottom:452.360000pt;}
.y8f_c00092{bottom:467.773333pt;}
.y90_c00092{bottom:468.733333pt;}
.y8e_c00092{bottom:469.693333pt;}
.y8c_c00092{bottom:484.360000pt;}
.y8a_c00092{bottom:485.106667pt;}
.y8d_c00092{bottom:485.306667pt;}
.y85_c00092{bottom:486.440000pt;}
.y8b_c00092{bottom:486.640000pt;}
.y89_c00092{bottom:487.026667pt;}
.y86_c00092{bottom:487.226667pt;}
.y88_c00092{bottom:487.400000pt;}
.y87_c00092{bottom:488.360000pt;}
.y81_c00092{bottom:503.773333pt;}
.y84_c00092{bottom:504.360000pt;}
.y83_c00092{bottom:504.733333pt;}
.y80_c00092{bottom:505.306667pt;}
.y82_c00092{bottom:505.693333pt;}
.y7f_c00092{bottom:506.640000pt;}
.y7c_c00092{bottom:519.773333pt;}
.y7e_c00092{bottom:520.733333pt;}
.y7b_c00092{bottom:521.106667pt;}
.y7d_c00092{bottom:521.693333pt;}
.y7a_c00092{bottom:523.026667pt;}
.y78_c00092{bottom:537.493333pt;}
.y74_c00092{bottom:537.693333pt;}
.y77_c00092{bottom:538.440000pt;}
.y76_c00092{bottom:539.226667pt;}
.y75_c00092{bottom:539.973333pt;}
.y79_c00092{bottom:540.360000pt;}
.y71_c00092{bottom:555.773333pt;}
.y73_c00092{bottom:556.733333pt;}
.y70_c00092{bottom:557.693333pt;}
.y6f_c00092{bottom:557.893333pt;}
.y72_c00092{bottom:558.640000pt;}
.y6e_c00092{bottom:559.026667pt;}
.y69_c00092{bottom:571.973333pt;}
.y6a_c00092{bottom:573.106667pt;}
.y6b_c00092{bottom:573.893333pt;}
.y6d_c00092{bottom:574.066667pt;}
.y6c_c00092{bottom:574.640000pt;}
.y67_c00092{bottom:575.026667pt;}
.y68_c00092{bottom:575.973333pt;}
.y64_c00092{bottom:590.440000pt;}
.y65_c00092{bottom:592.360000pt;}
.y66_c00092{bottom:592.560000pt;}
.y5e_c00092{bottom:607.026667pt;}
.y5c_c00092{bottom:607.400000pt;}
.y5f_c00092{bottom:607.973333pt;}
.y62_c00092{bottom:608.733333pt;}
.y63_c00092{bottom:608.933333pt;}
.y60_c00092{bottom:609.106667pt;}
.y61_c00092{bottom:609.893333pt;}
.y5d_c00092{bottom:610.640000pt;}
.y5b_c00092{bottom:611.026667pt;}
.y57_c00092{bottom:626.440000pt;}
.y59_c00092{bottom:628.360000pt;}
.y58_c00092{bottom:628.373333pt;}
.y5a_c00092{bottom:629.306667pt;}
.y54_c00092{bottom:648.733333pt;}
.y56_c00092{bottom:649.693333pt;}
.y55_c00092{bottom:650.840000pt;}
.y53_c00092{bottom:651.973333pt;}
.y4e_c00092{bottom:663.026667pt;}
.y51_c00092{bottom:663.600000pt;}
.y50_c00092{bottom:663.973333pt;}
.y52_c00092{bottom:664.173333pt;}
.y4d_c00092{bottom:664.360000pt;}
.y4f_c00092{bottom:664.933333pt;}
.y4b_c00092{bottom:676.360000pt;}
.y4a_c00092{bottom:676.733333pt;}
.y46_c00092{bottom:676.933333pt;}
.y4c_c00092{bottom:677.306667pt;}
.y47_c00092{bottom:677.693333pt;}
.y49_c00092{bottom:677.893333pt;}
.y48_c00092{bottom:678.640000pt;}
.y45_c00092{bottom:688.733333pt;}
.y43_c00092{bottom:689.306667pt;}
.y44_c00092{bottom:691.600000pt;}
.y41_c00092{bottom:703.026667pt;}
.y40_c00092{bottom:704.173333pt;}
.y42_c00092{bottom:704.933333pt;}
.y3f_c00092{bottom:715.026667pt;}
.y3e_c00092{bottom:716.933333pt;}
.y3d_c00092{bottom:727.600000pt;}
.y3a_c00092{bottom:727.973333pt;}
.y3b_c00092{bottom:728.360000pt;}
.y39_c00092{bottom:728.733333pt;}
.y3c_c00092{bottom:729.306667pt;}
.y37_c00092{bottom:741.306667pt;}
.y35_c00092{bottom:742.066667pt;}
.y38_c00092{bottom:742.640000pt;}
.y36_c00092{bottom:743.026667pt;}
.y33_c00092{bottom:743.226667pt;}
.y34_c00092{bottom:743.973333pt;}
.y31_c00092{bottom:766.440000pt;}
.y32_c00092{bottom:768.360000pt;}
.y30_c00092{bottom:769.306667pt;}
.y2a_c00092{bottom:783.773333pt;}
.y2f_c00092{bottom:784.360000pt;}
.y2b_c00092{bottom:784.560000pt;}
.y2e_c00092{bottom:785.306667pt;}
.y2c_c00092{bottom:785.693333pt;}
.y2d_c00092{bottom:786.640000pt;}
.y27_c00092{bottom:801.893333pt;}
.y28_c00092{bottom:802.066667pt;}
.y29_c00092{bottom:802.640000pt;}
.y26_c00092{bottom:803.026667pt;}
.y25_c00092{bottom:818.440000pt;}
.y24_c00092{bottom:820.360000pt;}
.y1c_c00092{bottom:835.400000pt;}
.y1d_c00092{bottom:835.773333pt;}
.y22_c00092{bottom:836.160000pt;}
.y1e_c00092{bottom:836.360000pt;}
.y1f_c00092{bottom:836.733333pt;}
.y20_c00092{bottom:837.106667pt;}
.y23_c00092{bottom:837.693333pt;}
.y21_c00092{bottom:838.640000pt;}
.y18_c00092{bottom:853.106667pt;}
.y1a_c00092{bottom:854.066667pt;}
.y19_c00092{bottom:855.026667pt;}
.y1b_c00092{bottom:855.226667pt;}
.y17_c00092{bottom:855.973333pt;}
.y16_c00092{bottom:869.693333pt;}
.y14_c00092{bottom:870.440000pt;}
.y13_c00092{bottom:872.360000pt;}
.y15_c00092{bottom:872.560000pt;}
.y12_c00092{bottom:887.773333pt;}
.y10_c00092{bottom:889.693333pt;}
.y11_c00092{bottom:891.040000pt;}
.yd_c00092{bottom:904.360000pt;}
.ye_c00092{bottom:905.106667pt;}
.yc_c00092{bottom:905.493333pt;}
.yf_c00092{bottom:906.440000pt;}
.ya_c00092{bottom:907.026667pt;}
.yb_c00092{bottom:908.360000pt;}
.y8_c00092{bottom:924.733333pt;}
.y9_c00092{bottom:925.693333pt;}
.y6_c00092{bottom:940.733333pt;}
.y7_c00092{bottom:941.106667pt;}
.y4_c00092{bottom:943.026667pt;}
.y5_c00092{bottom:943.040000pt;}
.y2_c00092{bottom:975.600000pt;}
.y1_c00092{bottom:975.773333pt;}
.h5_c00092{height:3.739141pt;}
.ha_c00092{height:14.890964pt;}
.h3_c00092{height:20.466875pt;}
.h2_c00092{height:22.303646pt;}
.h8_c00092{height:27.879557pt;}
.h4_c00092{height:31.618698pt;}
.h6_c00092{height:35.357839pt;}
.h1_c00092{height:39.031380pt;}
.h9_c00092{height:40.039557pt;}
.h7_c00092{height:42.770521pt;}
.h0_c00092{height:1186.666667pt;}
.w0_c00092{width:782.666667pt;}
.x0_c00092{left:0.000000pt;}
.x101_c00092{left:134.293333pt;}
.xf_c00092{left:135.626667pt;}
.x74_c00092{left:136.960000pt;}
.x7c_c00092{left:148.000000pt;}
.x6d_c00092{left:148.960000pt;}
.x4_c00092{left:150.293333pt;}
.xa8_c00092{left:153.333333pt;}
.x103_c00092{left:154.666667pt;}
.xb8_c00092{left:157.333333pt;}
.x7b_c00092{left:160.000000pt;}
.xc2_c00092{left:162.666667pt;}
.x6e_c00092{left:164.000000pt;}
.x39_c00092{left:165.333333pt;}
.xdd_c00092{left:167.040000pt;}
.x5f_c00092{left:168.000000pt;}
.x56_c00092{left:169.706667pt;}
.x9c_c00092{left:170.666667pt;}
.x98_c00092{left:171.626667pt;}
.x1a_c00092{left:173.333333pt;}
.x10_c00092{left:174.293333pt;}
.x2f_c00092{left:175.626667pt;}
.xef_c00092{left:177.333333pt;}
.xa9_c00092{left:178.293333pt;}
.x60_c00092{left:181.333333pt;}
.xe7_c00092{left:182.293333pt;}
.x43_c00092{left:185.333333pt;}
.xb9_c00092{left:186.666667pt;}
.xc3_c00092{left:187.626667pt;}
.xde_c00092{left:190.293333pt;}
.x57_c00092{left:193.333333pt;}
.xf4_c00092{left:194.666667pt;}
.xfa_c00092{left:197.706667pt;}
.x69_c00092{left:198.666667pt;}
.x9d_c00092{left:200.000000pt;}
.x4d_c00092{left:200.960000pt;}
.x91_c00092{left:202.293333pt;}
.x7d_c00092{left:204.000000pt;}
.xbf_c00092{left:205.333333pt;}
.x99_c00092{left:206.293333pt;}
.xaa_c00092{left:208.000000pt;}
.x6f_c00092{left:208.960000pt;}
.x3a_c00092{left:215.626667pt;}
.x1b_c00092{left:217.333333pt;}
.x9e_c00092{left:218.666667pt;}
.xec_c00092{left:220.000000pt;}
.x87_c00092{left:221.333333pt;}
.x23_c00092{left:222.666667pt;}
.x6a_c00092{left:224.373333pt;}
.xe8_c00092{left:225.706667pt;}
.xf5_c00092{left:226.666667pt;}
.x7e_c00092{left:228.000000pt;}
.x5_c00092{left:232.000000pt;}
.x44_c00092{left:232.960000pt;}
.x1c_c00092{left:234.293333pt;}
.x11_c00092{left:235.626667pt;}
.xf7_c00092{left:237.333333pt;}
.x24_c00092{left:238.293333pt;}
.x58_c00092{left:240.000000pt;}
.xc8_c00092{left:241.706667pt;}
.x30_c00092{left:242.666667pt;}
.x75_c00092{left:247.040000pt;}
.x70_c00092{left:248.960000pt;}
.x6_c00092{left:250.666667pt;}
.xba_c00092{left:252.000000pt;}
.x104_c00092{left:253.706667pt;}
.xed_c00092{left:256.000000pt;}
.x7f_c00092{left:260.373333pt;}
.x4e_c00092{left:261.333333pt;}
.xdf_c00092{left:262.293333pt;}
.xab_c00092{left:266.293333pt;}
.x88_c00092{left:268.000000pt;}
.xe9_c00092{left:269.333333pt;}
.x31_c00092{left:272.373333pt;}
.xd6_c00092{left:273.333333pt;}
.xb1_c00092{left:274.293333pt;}
.x80_c00092{left:276.000000pt;}
.x1d_c00092{left:276.960000pt;}
.x92_c00092{left:278.666667pt;}
.xcf_c00092{left:280.000000pt;}
.x7_c00092{left:281.333333pt;}
.x61_c00092{left:282.293333pt;}
.x6b_c00092{left:283.626667pt;}
.x105_c00092{left:287.040000pt;}
.xc4_c00092{left:290.666667pt;}
.x3b_c00092{left:292.000000pt;}
.x45_c00092{left:295.800000pt;}
.x12_c00092{left:296.960000pt;}
.x89_c00092{left:298.666667pt;}
.x62_c00092{left:301.706667pt;}
.x25_c00092{left:304.000000pt;}
.x93_c00092{left:304.960000pt;}
.xac_c00092{left:306.666667pt;}
.xd2_c00092{left:309.706667pt;}
.xf1_c00092{left:311.040000pt;}
.xd7_c00092{left:312.000000pt;}
.x4f_c00092{left:314.293333pt;}
.xe4_c00092{left:317.333333pt;}
.xb2_c00092{left:318.293333pt;}
.xfb_c00092{left:320.000000pt;}
.x76_c00092{left:321.333333pt;}
.x26_c00092{left:322.666667pt;}
.xad_c00092{left:324.000000pt;}
.x9f_c00092{left:324.960000pt;}
.xe0_c00092{left:325.906667pt;}
.x63_c00092{left:328.000000pt;}
.x94_c00092{left:329.333333pt;}
.x46_c00092{left:330.293333pt;}
.x32_c00092{left:332.373333pt;}
.xfc_c00092{left:333.333333pt;}
.x8_c00092{left:334.666667pt;}
.xf2_c00092{left:336.373333pt;}
.x13_c00092{left:337.333333pt;}
.x8a_c00092{left:338.666667pt;}
.x3c_c00092{left:339.626667pt;}
.x1e_c00092{left:341.706667pt;}
.xa0_c00092{left:342.666667pt;}
.x6c_c00092{left:345.333333pt;}
.xd8_c00092{left:346.666667pt;}
.xae_c00092{left:349.706667pt;}
.x27_c00092{left:351.040000pt;}
.x77_c00092{left:352.960000pt;}
.x47_c00092{left:356.000000pt;}
.x2_c00092{left:357.333333pt;}
.xc9_c00092{left:359.040000pt;}
.x33_c00092{left:360.000000pt;}
.xf8_c00092{left:361.333333pt;}
.xfd_c00092{left:362.666667pt;}
.x9a_c00092{left:365.706667pt;}
.x95_c00092{left:367.040000pt;}
.xa1_c00092{left:372.373333pt;}
.x81_c00092{left:376.000000pt;}
.xa5_c00092{left:377.333333pt;}
.x3d_c00092{left:378.666667pt;}
.x1f_c00092{left:380.000000pt;}
.xc5_c00092{left:381.333333pt;}
.x9_c00092{left:382.666667pt;}
.xb3_c00092{left:385.333333pt;}
.xd0_c00092{left:390.666667pt;}
.xaf_c00092{left:391.626667pt;}
.x106_c00092{left:394.666667pt;}
.x96_c00092{left:398.666667pt;}
.x50_c00092{left:399.626667pt;}
.xca_c00092{left:402.293333pt;}
.xa6_c00092{left:403.626667pt;}
.x59_c00092{left:404.960000pt;}
.xbb_c00092{left:406.666667pt;}
.xe1_c00092{left:408.373333pt;}
.x14_c00092{left:409.333333pt;}
.xa_c00092{left:410.293333pt;}
.x48_c00092{left:411.800000pt;}
.xd9_c00092{left:416.373333pt;}
.x51_c00092{left:417.706667pt;}
.x64_c00092{left:418.666667pt;}
.xcb_c00092{left:420.000000pt;}
.x78_c00092{left:421.706667pt;}
.xbc_c00092{left:425.333333pt;}
.x34_c00092{left:428.000000pt;}
.x3e_c00092{left:429.333333pt;}
.x5a_c00092{left:431.040000pt;}
.xf9_c00092{left:432.960000pt;}
.x28_c00092{left:434.293333pt;}
.x82_c00092{left:436.573333pt;}
.xcc_c00092{left:439.040000pt;}
.x20_c00092{left:441.333333pt;}
.x52_c00092{left:442.293333pt;}
.x65_c00092{left:444.000000pt;}
.xb_c00092{left:446.293333pt;}
.xb4_c00092{left:448.373333pt;}
.x29_c00092{left:451.040000pt;}
.x71_c00092{left:452.960000pt;}
.x8b_c00092{left:454.666667pt;}
.x5b_c00092{left:455.626667pt;}
.x21_c00092{left:457.706667pt;}
.x107_c00092{left:458.666667pt;}
.x9b_c00092{left:460.960000pt;}
.xc6_c00092{left:463.040000pt;}
.xbd_c00092{left:465.706667pt;}
.x3f_c00092{left:468.000000pt;}
.xb5_c00092{left:470.666667pt;}
.x108_c00092{left:472.000000pt;}
.xda_c00092{left:473.706667pt;}
.x83_c00092{left:476.000000pt;}
.x15_c00092{left:477.706667pt;}
.x2a_c00092{left:478.666667pt;}
.x22_c00092{left:482.666667pt;}
.x35_c00092{left:484.000000pt;}
.xee_c00092{left:486.666667pt;}
.x8c_c00092{left:488.960000pt;}
.x66_c00092{left:492.000000pt;}
.x49_c00092{left:493.333333pt;}
.xf6_c00092{left:494.666667pt;}
.x53_c00092{left:496.960000pt;}
.xa2_c00092{left:499.426667pt;}
.x16_c00092{left:502.666667pt;}
.xc_c00092{left:505.706667pt;}
.x79_c00092{left:509.706667pt;}
.xfe_c00092{left:510.666667pt;}
.xc0_c00092{left:512.000000pt;}
.xd3_c00092{left:513.333333pt;}
.x5c_c00092{left:514.666667pt;}
.xa3_c00092{left:516.000000pt;}
.xbe_c00092{left:517.706667pt;}
.xe5_c00092{left:520.000000pt;}
.xd1_c00092{left:521.706667pt;}
.x8d_c00092{left:522.666667pt;}
.x2b_c00092{left:524.373333pt;}
.xf3_c00092{left:525.706667pt;}
.x84_c00092{left:536.960000pt;}
.x67_c00092{left:538.293333pt;}
.xb6_c00092{left:540.000000pt;}
.xdb_c00092{left:540.960000pt;}
.xd_c00092{left:542.293333pt;}
.xe6_c00092{left:544.000000pt;}
.x4a_c00092{left:544.960000pt;}
.x40_c00092{left:546.666667pt;}
.x8e_c00092{left:548.960000pt;}
.x7a_c00092{left:550.093333pt;}
.x72_c00092{left:554.293333pt;}
.xb7_c00092{left:556.000000pt;}
.x2c_c00092{left:556.960000pt;}
.x17_c00092{left:560.000000pt;}
.x36_c00092{left:561.333333pt;}
.xc1_c00092{left:563.040000pt;}
.x5d_c00092{left:564.000000pt;}
.x41_c00092{left:565.333333pt;}
.xe2_c00092{left:569.333333pt;}
.xff_c00092{left:571.040000pt;}
.xa4_c00092{left:574.666667pt;}
.x37_c00092{left:577.333333pt;}
.x54_c00092{left:578.666667pt;}
.xcd_c00092{left:581.706667pt;}
.xdc_c00092{left:582.666667pt;}
.x8f_c00092{left:583.626667pt;}
.xea_c00092{left:585.333333pt;}
.x4b_c00092{left:587.040000pt;}
.x38_c00092{left:588.000000pt;}
.xb0_c00092{left:589.333333pt;}
.x102_c00092{left:590.666667pt;}
.xce_c00092{left:592.000000pt;}
.xd4_c00092{left:593.333333pt;}
.x85_c00092{left:598.666667pt;}
.xeb_c00092{left:600.000000pt;}
.x18_c00092{left:600.960000pt;}
.x100_c00092{left:604.373333pt;}
.xf0_c00092{left:605.333333pt;}
.x73_c00092{left:606.293333pt;}
.x68_c00092{left:608.000000pt;}
.x55_c00092{left:608.960000pt;}
.xa7_c00092{left:611.040000pt;}
.x42_c00092{left:612.000000pt;}
.xe_c00092{left:615.626667pt;}
.x97_c00092{left:616.960000pt;}
.x2d_c00092{left:620.000000pt;}
.xd5_c00092{left:621.706667pt;}
.x4c_c00092{left:622.666667pt;}
.xc7_c00092{left:626.293333pt;}
.x86_c00092{left:629.333333pt;}
.x19_c00092{left:631.040000pt;}
.x2e_c00092{left:633.333333pt;}
.xe3_c00092{left:634.666667pt;}
.x1_c00092{left:636.000000pt;}
.x5e_c00092{left:637.333333pt;}
.x90_c00092{left:638.293333pt;}
.x3_c00092{left:645.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5f094233eeac02fd3326a011.woff2')format("woff");}.ff1_c00093{font-family:ff1_c00093;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mbe_c00093{transform:matrix(0.218824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218824,0.000000,0.000000,0.250000,0,0);}
.m9e_c00093{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m98_c00093{transform:matrix(0.350160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350160,0.000000,0.000000,0.250000,0,0);}
.m0_c00093{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m62_c00093{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m6d_c00093{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m93_c00093{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00093{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m59_c00093{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m5e_c00093{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m88_c00093{transform:matrix(0.395588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395588,0.000000,0.000000,0.250000,0,0);}
.m6f_c00093{transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);}
.m3a_c00093{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m11_c00093{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m50_c00093{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m9_c00093{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m86_c00093{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m2d_c00093{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m13_c00093{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m46_c00093{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m53_c00093{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m3b_c00093{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.ma6_c00093{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.m4f_c00093{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m7e_c00093{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m5_c00093{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m38_c00093{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m6_c00093{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m36_c00093{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m80_c00093{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m4a_c00093{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m43_c00093{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m2b_c00093{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.mb_c00093{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m32_c00093{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m42_c00093{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m1b_c00093{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m3e_c00093{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.m30_c00093{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m9a_c00093{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m82_c00093{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_c00093{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m64_c00093{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m83_c00093{transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);}
.m22_c00093{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m54_c00093{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m75_c00093{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m5b_c00093{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m2f_c00093{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m8_c00093{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m12_c00093{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m55_c00093{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m8a_c00093{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m19_c00093{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m26_c00093{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m63_c00093{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.mb9_c00093{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_c00093{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.mad_c00093{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.me_c00093{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.ma8_c00093{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.m7d_c00093{transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);}
.mae_c00093{transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);}
.m60_c00093{transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);}
.m76_c00093{transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);}
.ma7_c00093{transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);}
.m2c_c00093{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m4e_c00093{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m7a_c00093{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m95_c00093{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m78_c00093{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m65_c00093{transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);}
.m90_c00093{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.ma_c00093{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m18_c00093{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m4c_c00093{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mc2_c00093{transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);}
.m4_c00093{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_c00093{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m6e_c00093{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m5d_c00093{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mb6_c00093{transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);}
.m21_c00093{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m44_c00093{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m51_c00093{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m28_c00093{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mc_c00093{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m48_c00093{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m10_c00093{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mb8_c00093{transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);}
.ma4_c00093{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.m2_c00093{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m99_c00093{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m7c_c00093{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.m1d_c00093{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m7f_c00093{transform:matrix(0.534091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534091,0.000000,0.000000,0.250000,0,0);}
.m71_c00093{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m47_c00093{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m37_c00093{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m27_c00093{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m61_c00093{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mf_c00093{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m41_c00093{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m57_c00093{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mb3_c00093{transform:matrix(0.549559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549559,0.000000,0.000000,0.250000,0,0);}
.m17_c00093{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.ma5_c00093{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.md_c00093{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m68_c00093{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m16_c00093{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m24_c00093{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m3_c00093{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.maa_c00093{transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);}
.m25_c00093{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m39_c00093{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m34_c00093{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m92_c00093{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.mb5_c00093{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m67_c00093{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);}
.m7_c00093{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m1a_c00093{transform:matrix(0.574675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574675,0.000000,0.000000,0.250000,0,0);}
.m9f_c00093{transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);}
.m4d_c00093{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m14_c00093{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m7b_c00093{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m58_c00093{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m6b_c00093{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m73_c00093{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m23_c00093{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m35_c00093{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m1f_c00093{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.mac_c00093{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.m56_c00093{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_c00093{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.ma0_c00093{transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);}
.m3c_c00093{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m85_c00093{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m20_c00093{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m81_c00093{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m3f_c00093{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m8b_c00093{transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);}
.m77_c00093{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m6a_c00093{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mc3_c00093{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m45_c00093{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);}
.m74_c00093{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m87_c00093{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.mc0_c00093{transform:matrix(0.657828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657828,0.000000,0.000000,0.250000,0,0);}
.m84_c00093{transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);}
.m29_c00093{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m96_c00093{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m31_c00093{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m69_c00093{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m6c_c00093{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.mbc_c00093{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.m8f_c00093{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m89_c00093{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mbd_c00093{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m40_c00093{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.ma2_c00093{transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);}
.m8c_c00093{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.m49_c00093{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.mba_c00093{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m70_c00093{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m94_c00093{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m79_c00093{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);}
.m72_c00093{transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);}
.m5a_c00093{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mb0_c00093{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.mb2_c00093{transform:matrix(0.720264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720264,0.000000,0.000000,0.250000,0,0);}
.m97_c00093{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m3d_c00093{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.mb7_c00093{transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);}
.m8e_c00093{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.maf_c00093{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.m8d_c00093{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m1c_c00093{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.ma9_c00093{transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);}
.mbb_c00093{transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);}
.m4b_c00093{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mb1_c00093{transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);}
.ma3_c00093{transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);}
.m15_c00093{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.m9c_c00093{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m2e_c00093{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.ma1_c00093{transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);}
.m52_c00093{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mbf_c00093{transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);}
.m1e_c00093{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mb4_c00093{transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);}
.mab_c00093{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m9d_c00093{transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);}
.m33_c00093{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.m9b_c00093{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.mc1_c00093{transform:matrix(2.758850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.758850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.758850,0.000000,0.000000,0.250000,0,0);}
.m5c_c00093{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v2_c00093{vertical-align:-6.000000px;}
.v0_c00093{vertical-align:0.000000px;}
.v1_c00093{vertical-align:6.000000px;}
.ls2_c00093{letter-spacing:0.000000px;}
.ls1_c00093{letter-spacing:13.659217px;}
.ls0_c00093{letter-spacing:42.629203px;}
.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;}
}
.ws19_c00093{word-spacing:-15.656497px;}
.ws0_c00093{word-spacing:-0.799200px;}
.ws23_c00093{word-spacing:0.000000px;}
.ws1a_c00093{word-spacing:10.017706px;}
.ws1e_c00093{word-spacing:11.113860px;}
.ws1d_c00093{word-spacing:11.586697px;}
.ws18_c00093{word-spacing:11.661937px;}
.ws8_c00093{word-spacing:13.611988px;}
.ws12_c00093{word-spacing:17.617871px;}
.ws1b_c00093{word-spacing:19.620812px;}
.ws3_c00093{word-spacing:20.322608px;}
.ws9_c00093{word-spacing:21.623753px;}
.ws1c_c00093{word-spacing:23.728109px;}
.ws11_c00093{word-spacing:23.767013px;}
.ws20_c00093{word-spacing:25.643046px;}
.ws2_c00093{word-spacing:28.757317px;}
.ws6_c00093{word-spacing:30.638400px;}
.ws1f_c00093{word-spacing:31.025931px;}
.ws13_c00093{word-spacing:31.838295px;}
.ws22_c00093{word-spacing:33.467416px;}
.ws7_c00093{word-spacing:33.638400px;}
.wsc_c00093{word-spacing:38.324009px;}
.wsa_c00093{word-spacing:38.705522px;}
.ws10_c00093{word-spacing:39.052735px;}
.ws21_c00093{word-spacing:39.933737px;}
.wsf_c00093{word-spacing:40.994598px;}
.ws4_c00093{word-spacing:43.405892px;}
.ws17_c00093{word-spacing:46.335774px;}
.ws1_c00093{word-spacing:47.719225px;}
.wse_c00093{word-spacing:49.006362px;}
.wsb_c00093{word-spacing:51.676951px;}
.ws5_c00093{word-spacing:57.204655px;}
.wsd_c00093{word-spacing:60.822309px;}
.ws16_c00093{word-spacing:66.810731px;}
.ws14_c00093{word-spacing:69.530203px;}
.ws15_c00093{word-spacing:70.241462px;}
._4_c00093{margin-left:-13.734457px;}
._3_c00093{width:29.577833px;}
._5_c00093{width:33.597126px;}
._2_c00093{width:47.570880px;}
._0_c00093{width:59.248108px;}
._1_c00093{width:77.955316px;}
.fc0_c00093{color:transparent;}
.fs6_c00093{font-size:3.420000px;}
.fs9_c00093{font-size:6.780000px;}
.fs8_c00093{font-size:11.880000px;}
.fs7_c00093{font-size:13.620000px;}
.fs4_c00093{font-size:18.720000px;}
.fs1_c00093{font-size:20.400000px;}
.fs5_c00093{font-size:25.500000px;}
.fs2_c00093{font-size:28.920000px;}
.fs3_c00093{font-size:32.340000px;}
.fs0_c00093{font-size:35.700000px;}
.y0_c00093{bottom:0.000000px;}
.ye5_c00093{bottom:243.630000px;}
.ye7_c00093{bottom:246.195000px;}
.ye6_c00093{bottom:246.420000px;}
.ye8_c00093{bottom:246.630000px;}
.ye9_c00093{bottom:247.920000px;}
.yde_c00093{bottom:256.695000px;}
.ydf_c00093{bottom:257.775000px;}
.ydd_c00093{bottom:258.195000px;}
.ye1_c00093{bottom:259.695000px;}
.ye0_c00093{bottom:259.920000px;}
.ye2_c00093{bottom:260.130000px;}
.ye3_c00093{bottom:261.195000px;}
.ye4_c00093{bottom:261.855000px;}
.yd4_c00093{bottom:270.195000px;}
.yd6_c00093{bottom:271.275000px;}
.yd5_c00093{bottom:271.695000px;}
.yd7_c00093{bottom:273.420000px;}
.ydc_c00093{bottom:273.630000px;}
.yd8_c00093{bottom:274.470000px;}
.yda_c00093{bottom:274.695000px;}
.yd9_c00093{bottom:274.920000px;}
.ydb_c00093{bottom:276.420000px;}
.yd0_c00093{bottom:284.550000px;}
.yce_c00093{bottom:285.630000px;}
.ycf_c00093{bottom:286.275000px;}
.yd2_c00093{bottom:288.195000px;}
.yd1_c00093{bottom:288.420000px;}
.yd3_c00093{bottom:289.920000px;}
.yc8_c00093{bottom:299.775000px;}
.yc7_c00093{bottom:300.195000px;}
.ycb_c00093{bottom:300.630000px;}
.ycc_c00093{bottom:301.695000px;}
.yc9_c00093{bottom:301.920000px;}
.ycd_c00093{bottom:303.195000px;}
.yca_c00093{bottom:303.420000px;}
.yc2_c00093{bottom:313.050000px;}
.yc3_c00093{bottom:314.130000px;}
.yc5_c00093{bottom:315.195000px;}
.yc6_c00093{bottom:316.695000px;}
.yc4_c00093{bottom:316.920000px;}
.ybe_c00093{bottom:327.630000px;}
.ybd_c00093{bottom:328.695000px;}
.yc1_c00093{bottom:330.195000px;}
.ybf_c00093{bottom:330.420000px;}
.yc0_c00093{bottom:331.920000px;}
.ybb_c00093{bottom:340.695000px;}
.yb6_c00093{bottom:341.130000px;}
.yb7_c00093{bottom:342.195000px;}
.yb9_c00093{bottom:342.630000px;}
.yba_c00093{bottom:343.695000px;}
.yb8_c00093{bottom:343.920000px;}
.ybc_c00093{bottom:345.420000px;}
.yb0_c00093{bottom:354.630000px;}
.yb1_c00093{bottom:355.695000px;}
.yb2_c00093{bottom:356.130000px;}
.yb3_c00093{bottom:357.195000px;}
.yb4_c00093{bottom:357.420000px;}
.yb5_c00093{bottom:358.920000px;}
.yac_c00093{bottom:369.195000px;}
.yad_c00093{bottom:370.695000px;}
.yaf_c00093{bottom:372.195000px;}
.yae_c00093{bottom:372.420000px;}
.yaa_c00093{bottom:382.695000px;}
.ya7_c00093{bottom:383.130000px;}
.ya8_c00093{bottom:384.195000px;}
.yab_c00093{bottom:384.630000px;}
.ya9_c00093{bottom:385.920000px;}
.ya1_c00093{bottom:396.630000px;}
.ya3_c00093{bottom:397.695000px;}
.ya5_c00093{bottom:398.130000px;}
.ya4_c00093{bottom:399.195000px;}
.ya2_c00093{bottom:399.420000px;}
.ya6_c00093{bottom:400.920000px;}
.y9d_c00093{bottom:410.130000px;}
.y9c_c00093{bottom:411.195000px;}
.y9f_c00093{bottom:412.695000px;}
.y9e_c00093{bottom:412.920000px;}
.ya0_c00093{bottom:414.420000px;}
.y97_c00093{bottom:425.130000px;}
.y98_c00093{bottom:425.775000px;}
.y99_c00093{bottom:426.195000px;}
.y9a_c00093{bottom:426.420000px;}
.y9b_c00093{bottom:427.920000px;}
.y96_c00093{bottom:437.130000px;}
.y93_c00093{bottom:438.630000px;}
.y94_c00093{bottom:439.920000px;}
.y95_c00093{bottom:441.420000px;}
.y8f_c00093{bottom:450.630000px;}
.y90_c00093{bottom:452.130000px;}
.y92_c00093{bottom:454.695000px;}
.y91_c00093{bottom:454.920000px;}
.y8e_c00093{bottom:466.695000px;}
.y8c_c00093{bottom:480.195000px;}
.y8d_c00093{bottom:481.695000px;}
.y8a_c00093{bottom:493.695000px;}
.y89_c00093{bottom:495.195000px;}
.y8b_c00093{bottom:495.420000px;}
.y85_c00093{bottom:507.630000px;}
.y86_c00093{bottom:508.695000px;}
.y87_c00093{bottom:509.130000px;}
.y88_c00093{bottom:510.195000px;}
.y81_c00093{bottom:521.130000px;}
.y82_c00093{bottom:522.195000px;}
.y84_c00093{bottom:522.630000px;}
.y80_c00093{bottom:523.695000px;}
.y83_c00093{bottom:523.920000px;}
.y7d_c00093{bottom:535.695000px;}
.y7e_c00093{bottom:536.130000px;}
.y7f_c00093{bottom:537.195000px;}
.y7b_c00093{bottom:549.630000px;}
.y7a_c00093{bottom:550.695000px;}
.y7c_c00093{bottom:552.195000px;}
.y78_c00093{bottom:563.130000px;}
.y77_c00093{bottom:564.195000px;}
.y79_c00093{bottom:564.420000px;}
.y74_c00093{bottom:576.630000px;}
.y73_c00093{bottom:577.695000px;}
.y75_c00093{bottom:578.130000px;}
.y76_c00093{bottom:579.195000px;}
.y71_c00093{bottom:590.130000px;}
.y6f_c00093{bottom:591.195000px;}
.y70_c00093{bottom:591.630000px;}
.y72_c00093{bottom:592.695000px;}
.y6c_c00093{bottom:603.630000px;}
.y6b_c00093{bottom:604.695000px;}
.y6e_c00093{bottom:605.130000px;}
.y6d_c00093{bottom:606.195000px;}
.y66_c00093{bottom:618.195000px;}
.y67_c00093{bottom:618.630000px;}
.y68_c00093{bottom:619.695000px;}
.y69_c00093{bottom:620.130000px;}
.y6a_c00093{bottom:621.195000px;}
.y63_c00093{bottom:632.130000px;}
.y62_c00093{bottom:633.195000px;}
.y65_c00093{bottom:633.630000px;}
.y64_c00093{bottom:634.695000px;}
.y5f_c00093{bottom:645.630000px;}
.y5e_c00093{bottom:646.695000px;}
.y60_c00093{bottom:647.130000px;}
.y61_c00093{bottom:648.195000px;}
.y5a_c00093{bottom:664.695000px;}
.y5c_c00093{bottom:665.130000px;}
.y5b_c00093{bottom:666.195000px;}
.y5d_c00093{bottom:666.630000px;}
.y55_c00093{bottom:677.130000px;}
.y56_c00093{bottom:678.195000px;}
.y57_c00093{bottom:678.630000px;}
.y59_c00093{bottom:679.050000px;}
.y58_c00093{bottom:679.695000px;}
.y52_c00093{bottom:691.695000px;}
.y53_c00093{bottom:693.195000px;}
.y54_c00093{bottom:694.275000px;}
.y50_c00093{bottom:708.405000px;}
.y4e_c00093{bottom:709.050000px;}
.y51_c00093{bottom:709.905000px;}
.y4f_c00093{bottom:710.130000px;}
.y4c_c00093{bottom:710.970000px;}
.y4d_c00093{bottom:712.050000px;}
.y4b_c00093{bottom:723.825000px;}
.y4a_c00093{bottom:725.550000px;}
.y48_c00093{bottom:725.970000px;}
.y49_c00093{bottom:727.050000px;}
.y47_c00093{bottom:746.970000px;}
.y46_c00093{bottom:749.970000px;}
.y44_c00093{bottom:782.745000px;}
.y45_c00093{bottom:784.905000px;}
.y41_c00093{bottom:801.405000px;}
.y40_c00093{bottom:802.245000px;}
.y43_c00093{bottom:803.745000px;}
.y3e_c00093{bottom:804.405000px;}
.y42_c00093{bottom:805.905000px;}
.y3f_c00093{bottom:805.920000px;}
.y3d_c00093{bottom:822.405000px;}
.y3c_c00093{bottom:825.405000px;}
.y3a_c00093{bottom:842.745000px;}
.y3b_c00093{bottom:843.630000px;}
.y39_c00093{bottom:844.470000px;}
.y38_c00093{bottom:844.905000px;}
.y37_c00093{bottom:845.970000px;}
.y34_c00093{bottom:862.245000px;}
.y35_c00093{bottom:864.405000px;}
.y36_c00093{bottom:864.630000px;}
.y30_c00093{bottom:881.745000px;}
.y31_c00093{bottom:883.905000px;}
.y33_c00093{bottom:884.325000px;}
.y32_c00093{bottom:885.405000px;}
.y2f_c00093{bottom:901.245000px;}
.y2c_c00093{bottom:902.745000px;}
.y2b_c00093{bottom:903.405000px;}
.y2e_c00093{bottom:903.630000px;}
.y2a_c00093{bottom:904.470000px;}
.y2d_c00093{bottom:904.905000px;}
.y25_c00093{bottom:919.905000px;}
.y29_c00093{bottom:922.245000px;}
.y26_c00093{bottom:923.130000px;}
.y27_c00093{bottom:923.325000px;}
.y24_c00093{bottom:923.970000px;}
.y28_c00093{bottom:924.405000px;}
.y1e_c00093{bottom:940.245000px;}
.y23_c00093{bottom:940.470000px;}
.y22_c00093{bottom:941.745000px;}
.y1f_c00093{bottom:942.630000px;}
.y20_c00093{bottom:943.470000px;}
.y21_c00093{bottom:943.905000px;}
.y17_c00093{bottom:959.745000px;}
.y1a_c00093{bottom:961.245000px;}
.y18_c00093{bottom:961.905000px;}
.y1d_c00093{bottom:962.130000px;}
.y1c_c00093{bottom:962.325000px;}
.y19_c00093{bottom:963.405000px;}
.y1b_c00093{bottom:964.470000px;}
.y16_c00093{bottom:980.745000px;}
.y14_c00093{bottom:981.630000px;}
.y13_c00093{bottom:982.905000px;}
.y15_c00093{bottom:983.970000px;}
.y12_c00093{bottom:997.905000px;}
.y11_c00093{bottom:1000.245000px;}
.y10_c00093{bottom:1002.405000px;}
.yd_c00093{bottom:1019.745000px;}
.ya_c00093{bottom:1020.405000px;}
.ye_c00093{bottom:1020.630000px;}
.yc_c00093{bottom:1020.825000px;}
.yb_c00093{bottom:1021.905000px;}
.yf_c00093{bottom:1022.970000px;}
.y8_c00093{bottom:1039.245000px;}
.y7_c00093{bottom:1040.325000px;}
.y6_c00093{bottom:1041.405000px;}
.y9_c00093{bottom:1041.630000px;}
.y4_c00093{bottom:1058.745000px;}
.y5_c00093{bottom:1059.825000px;}
.y3_c00093{bottom:1060.905000px;}
.y1_c00093{bottom:1097.745000px;}
.y2_c00093{bottom:1099.050000px;}
.h7_c00093{height:4.206533px;}
.hb_c00093{height:8.339268px;}
.h9_c00093{height:14.612168px;}
.h8_c00093{height:16.752334px;}
.ha_c00093{height:22.752334px;}
.h5_c00093{height:23.025234px;}
.h2_c00093{height:25.091602px;}
.h6_c00093{height:31.364502px;}
.h3_c00093{height:35.571035px;}
.h4_c00093{height:39.777568px;}
.h1_c00093{height:43.910303px;}
.h0_c00093{height:1335.000000px;}
.w0_c00093{width:880.500000px;}
.x0_c00093{left:0.000000px;}
.x1_c00093{left:151.500000px;}
.x7f_c00093{left:152.580000px;}
.xa8_c00093{left:154.500000px;}
.xcb_c00093{left:166.500000px;}
.x84_c00093{left:168.000000px;}
.x5d_c00093{left:170.580000px;}
.x6a_c00093{left:172.920000px;}
.xaa_c00093{left:176.580000px;}
.x34_c00093{left:178.500000px;}
.x3_c00093{left:180.000000px;}
.xb2_c00093{left:181.920000px;}
.x29_c00093{left:183.000000px;}
.xb6_c00093{left:186.420000px;}
.x50_c00093{left:187.500000px;}
.xc5_c00093{left:194.580000px;}
.x5e_c00093{left:196.500000px;}
.x6b_c00093{left:199.500000px;}
.x1e_c00093{left:201.000000px;}
.xc2_c00093{left:204.000000px;}
.x51_c00093{left:205.500000px;}
.xbd_c00093{left:208.080000px;}
.x11_c00093{left:210.420000px;}
.xc8_c00093{left:213.000000px;}
.x8e_c00093{left:214.080000px;}
.xa0_c00093{left:217.500000px;}
.x74_c00093{left:219.000000px;}
.xb3_c00093{left:222.000000px;}
.x2a_c00093{left:223.500000px;}
.x5f_c00093{left:226.500000px;}
.x35_c00093{left:228.000000px;}
.x96_c00093{left:229.080000px;}
.x52_c00093{left:232.500000px;}
.x4_c00093{left:233.580000px;}
.x12_c00093{left:237.420000px;}
.x44_c00093{left:240.420000px;}
.x9a_c00093{left:244.500000px;}
.x36_c00093{left:246.000000px;}
.x5_c00093{left:253.920000px;}
.x1f_c00093{left:256.500000px;}
.xc3_c00093{left:258.420000px;}
.x8f_c00093{left:259.500000px;}
.x85_c00093{left:262.080000px;}
.x45_c00093{left:268.080000px;}
.x13_c00093{left:270.420000px;}
.x75_c00093{left:272.580000px;}
.x37_c00093{left:279.000000px;}
.x6_c00093{left:280.920000px;}
.x53_c00093{left:282.000000px;}
.xa1_c00093{left:283.500000px;}
.x2b_c00093{left:288.420000px;}
.x76_c00093{left:291.420000px;}
.x60_c00093{left:292.500000px;}
.x86_c00093{left:294.000000px;}
.x38_c00093{left:297.000000px;}
.xca_c00093{left:300.000000px;}
.x6c_c00093{left:301.080000px;}
.x20_c00093{left:303.000000px;}
.x97_c00093{left:313.500000px;}
.x90_c00093{left:314.580000px;}
.x61_c00093{left:316.500000px;}
.x14_c00093{left:318.000000px;}
.x77_c00093{left:319.500000px;}
.x39_c00093{left:324.000000px;}
.x46_c00093{left:328.500000px;}
.x7_c00093{left:329.580000px;}
.x87_c00093{left:333.000000px;}
.x62_c00093{left:334.080000px;}
.x15_c00093{left:339.000000px;}
.xab_c00093{left:343.500000px;}
.x6d_c00093{left:345.000000px;}
.x21_c00093{left:348.420000px;}
.x8_c00093{left:349.920000px;}
.x54_c00093{left:352.500000px;}
.xbe_c00093{left:354.000000px;}
.x63_c00093{left:358.500000px;}
.x2c_c00093{left:360.000000px;}
.x91_c00093{left:361.500000px;}
.x6e_c00093{left:366.420000px;}
.x9b_c00093{left:373.080000px;}
.x3a_c00093{left:375.000000px;}
.x9_c00093{left:378.000000px;}
.xac_c00093{left:379.920000px;}
.x47_c00093{left:383.580000px;}
.x80_c00093{left:385.500000px;}
.x64_c00093{left:390.000000px;}
.x6f_c00093{left:393.420000px;}
.xcc_c00093{left:394.500000px;}
.x2d_c00093{left:396.420000px;}
.x2_c00093{left:399.000000px;}
.xa2_c00093{left:400.500000px;}
.x48_c00093{left:403.920000px;}
.x22_c00093{left:406.500000px;}
.x65_c00093{left:408.000000px;}
.xa3_c00093{left:414.000000px;}
.x98_c00093{left:415.500000px;}
.x16_c00093{left:418.920000px;}
.x23_c00093{left:420.000000px;}
.x70_c00093{left:424.920000px;}
.xb8_c00093{left:426.000000px;}
.xbf_c00093{left:427.920000px;}
.xc6_c00093{left:430.500000px;}
.x49_c00093{left:432.000000px;}
.xae_c00093{left:433.500000px;}
.xbb_c00093{left:435.000000px;}
.x88_c00093{left:436.080000px;}
.xa4_c00093{left:438.000000px;}
.x55_c00093{left:439.920000px;}
.xa_c00093{left:445.080000px;}
.x3b_c00093{left:447.420000px;}
.x2e_c00093{left:449.580000px;}
.x89_c00093{left:454.500000px;}
.x99_c00093{left:460.080000px;}
.x81_c00093{left:462.420000px;}
.xb_c00093{left:465.420000px;}
.xb5_c00093{left:466.920000px;}
.xba_c00093{left:468.000000px;}
.x66_c00093{left:471.000000px;}
.x78_c00093{left:472.080000px;}
.x3c_c00093{left:474.420000px;}
.x92_c00093{left:475.920000px;}
.x56_c00093{left:477.000000px;}
.x8a_c00093{left:483.000000px;}
.x67_c00093{left:485.580000px;}
.x17_c00093{left:487.920000px;}
.x9c_c00093{left:489.420000px;}
.x57_c00093{left:492.000000px;}
.xc_c00093{left:493.500000px;}
.xa5_c00093{left:496.920000px;}
.x24_c00093{left:499.080000px;}
.x4a_c00093{left:500.580000px;}
.x93_c00093{left:502.500000px;}
.x3d_c00093{left:507.000000px;}
.x2f_c00093{left:508.080000px;}
.x71_c00093{left:509.580000px;}
.xa6_c00093{left:511.500000px;}
.xce_c00093{left:513.000000px;}
.xaf_c00093{left:514.920000px;}
.xc0_c00093{left:516.000000px;}
.x4b_c00093{left:520.500000px;}
.x82_c00093{left:523.920000px;}
.x58_c00093{left:525.420000px;}
.x79_c00093{left:526.920000px;}
.x25_c00093{left:530.580000px;}
.x18_c00093{left:535.920000px;}
.x30_c00093{left:538.500000px;}
.x68_c00093{left:544.920000px;}
.xb4_c00093{left:547.500000px;}
.xd_c00093{left:549.420000px;}
.x83_c00093{left:550.500000px;}
.x7a_c00093{left:553.500000px;}
.x8b_c00093{left:556.920000px;}
.x9d_c00093{left:565.080000px;}
.x19_c00093{left:571.920000px;}
.x3e_c00093{left:573.000000px;}
.xe_c00093{left:577.920000px;}
.x69_c00093{left:580.920000px;}
.x7b_c00093{left:583.920000px;}
.xbc_c00093{left:585.000000px;}
.xa7_c00093{left:586.080000px;}
.x3f_c00093{left:588.000000px;}
.x26_c00093{left:592.500000px;}
.xc9_c00093{left:594.000000px;}
.x8c_c00093{left:595.080000px;}
.x94_c00093{left:597.420000px;}
.x1a_c00093{left:598.920000px;}
.x59_c00093{left:601.500000px;}
.x31_c00093{left:603.000000px;}
.x40_c00093{left:607.920000px;}
.xf_c00093{left:616.500000px;}
.x27_c00093{left:619.500000px;}
.x4c_c00093{left:621.000000px;}
.x5a_c00093{left:622.920000px;}
.x72_c00093{left:624.420000px;}
.xb9_c00093{left:625.500000px;}
.x95_c00093{left:627.000000px;}
.xb7_c00093{left:628.500000px;}
.xc7_c00093{left:630.000000px;}
.xb0_c00093{left:633.420000px;}
.x7c_c00093{left:634.920000px;}
.x4d_c00093{left:637.080000px;}
.x9e_c00093{left:638.580000px;}
.x41_c00093{left:642.000000px;}
.x1b_c00093{left:643.080000px;}
.x32_c00093{left:646.500000px;}
.x42_c00093{left:660.000000px;}
.x1c_c00093{left:661.920000px;}
.xb1_c00093{left:664.500000px;}
.x7d_c00093{left:666.000000px;}
.x10_c00093{left:669.000000px;}
.x5b_c00093{left:670.500000px;}
.x28_c00093{left:673.500000px;}
.x43_c00093{left:678.000000px;}
.x4e_c00093{left:682.500000px;}
.x1d_c00093{left:687.000000px;}
.x33_c00093{left:691.920000px;}
.x8d_c00093{left:693.420000px;}
.xad_c00093{left:700.920000px;}
.x9f_c00093{left:702.000000px;}
.xa9_c00093{left:705.000000px;}
.xcd_c00093{left:706.500000px;}
.x73_c00093{left:708.420000px;}
.xc1_c00093{left:709.500000px;}
.xc4_c00093{left:711.000000px;}
.x5c_c00093{left:712.500000px;}
.x4f_c00093{left:715.500000px;}
.x7e_c00093{left:720.000000px;}
@media print{
.v2_c00093{vertical-align:-5.333333pt;}
.v0_c00093{vertical-align:0.000000pt;}
.v1_c00093{vertical-align:5.333333pt;}
.ls2_c00093{letter-spacing:0.000000pt;}
.ls1_c00093{letter-spacing:12.141526pt;}
.ls0_c00093{letter-spacing:37.892625pt;}
.ws19_c00093{word-spacing:-13.916886pt;}
.ws0_c00093{word-spacing:-0.710400pt;}
.ws23_c00093{word-spacing:0.000000pt;}
.ws1a_c00093{word-spacing:8.904628pt;}
.ws1e_c00093{word-spacing:9.878987pt;}
.ws1d_c00093{word-spacing:10.299286pt;}
.ws18_c00093{word-spacing:10.366166pt;}
.ws8_c00093{word-spacing:12.099545pt;}
.ws12_c00093{word-spacing:15.660329pt;}
.ws1b_c00093{word-spacing:17.440722pt;}
.ws3_c00093{word-spacing:18.064540pt;}
.ws9_c00093{word-spacing:19.221114pt;}
.ws1c_c00093{word-spacing:21.091652pt;}
.ws11_c00093{word-spacing:21.126233pt;}
.ws20_c00093{word-spacing:22.793818pt;}
.ws2_c00093{word-spacing:25.562060pt;}
.ws6_c00093{word-spacing:27.234133pt;}
.ws1f_c00093{word-spacing:27.578605pt;}
.ws13_c00093{word-spacing:28.300707pt;}
.ws22_c00093{word-spacing:29.748814pt;}
.ws7_c00093{word-spacing:29.900800pt;}
.wsc_c00093{word-spacing:34.065786pt;}
.wsa_c00093{word-spacing:34.404908pt;}
.ws10_c00093{word-spacing:34.713542pt;}
.ws21_c00093{word-spacing:35.496655pt;}
.wsf_c00093{word-spacing:36.439642pt;}
.ws4_c00093{word-spacing:38.583015pt;}
.ws17_c00093{word-spacing:41.187355pt;}
.ws1_c00093{word-spacing:42.417089pt;}
.wse_c00093{word-spacing:43.561211pt;}
.wsb_c00093{word-spacing:45.935067pt;}
.ws5_c00093{word-spacing:50.848582pt;}
.wsd_c00093{word-spacing:54.064274pt;}
.ws16_c00093{word-spacing:59.387317pt;}
.ws14_c00093{word-spacing:61.804625pt;}
.ws15_c00093{word-spacing:62.436855pt;}
._4_c00093{margin-left:-12.208406pt;}
._3_c00093{width:26.291407pt;}
._5_c00093{width:29.864112pt;}
._2_c00093{width:42.285227pt;}
._0_c00093{width:52.664985pt;}
._1_c00093{width:69.293615pt;}
.fs6_c00093{font-size:3.040000pt;}
.fs9_c00093{font-size:6.026667pt;}
.fs8_c00093{font-size:10.560000pt;}
.fs7_c00093{font-size:12.106667pt;}
.fs4_c00093{font-size:16.640000pt;}
.fs1_c00093{font-size:18.133333pt;}
.fs5_c00093{font-size:22.666667pt;}
.fs2_c00093{font-size:25.706667pt;}
.fs3_c00093{font-size:28.746667pt;}
.fs0_c00093{font-size:31.733333pt;}
.y0_c00093{bottom:0.000000pt;}
.ye5_c00093{bottom:216.560000pt;}
.ye7_c00093{bottom:218.840000pt;}
.ye6_c00093{bottom:219.040000pt;}
.ye8_c00093{bottom:219.226667pt;}
.ye9_c00093{bottom:220.373333pt;}
.yde_c00093{bottom:228.173333pt;}
.ydf_c00093{bottom:229.133333pt;}
.ydd_c00093{bottom:229.506667pt;}
.ye1_c00093{bottom:230.840000pt;}
.ye0_c00093{bottom:231.040000pt;}
.ye2_c00093{bottom:231.226667pt;}
.ye3_c00093{bottom:232.173333pt;}
.ye4_c00093{bottom:232.760000pt;}
.yd4_c00093{bottom:240.173333pt;}
.yd6_c00093{bottom:241.133333pt;}
.yd5_c00093{bottom:241.506667pt;}
.yd7_c00093{bottom:243.040000pt;}
.ydc_c00093{bottom:243.226667pt;}
.yd8_c00093{bottom:243.973333pt;}
.yda_c00093{bottom:244.173333pt;}
.yd9_c00093{bottom:244.373333pt;}
.ydb_c00093{bottom:245.706667pt;}
.yd0_c00093{bottom:252.933333pt;}
.yce_c00093{bottom:253.893333pt;}
.ycf_c00093{bottom:254.466667pt;}
.yd2_c00093{bottom:256.173333pt;}
.yd1_c00093{bottom:256.373333pt;}
.yd3_c00093{bottom:257.706667pt;}
.yc8_c00093{bottom:266.466667pt;}
.yc7_c00093{bottom:266.840000pt;}
.ycb_c00093{bottom:267.226667pt;}
.ycc_c00093{bottom:268.173333pt;}
.yc9_c00093{bottom:268.373333pt;}
.ycd_c00093{bottom:269.506667pt;}
.yca_c00093{bottom:269.706667pt;}
.yc2_c00093{bottom:278.266667pt;}
.yc3_c00093{bottom:279.226667pt;}
.yc5_c00093{bottom:280.173333pt;}
.yc6_c00093{bottom:281.506667pt;}
.yc4_c00093{bottom:281.706667pt;}
.ybe_c00093{bottom:291.226667pt;}
.ybd_c00093{bottom:292.173333pt;}
.yc1_c00093{bottom:293.506667pt;}
.ybf_c00093{bottom:293.706667pt;}
.yc0_c00093{bottom:295.040000pt;}
.ybb_c00093{bottom:302.840000pt;}
.yb6_c00093{bottom:303.226667pt;}
.yb7_c00093{bottom:304.173333pt;}
.yb9_c00093{bottom:304.560000pt;}
.yba_c00093{bottom:305.506667pt;}
.yb8_c00093{bottom:305.706667pt;}
.ybc_c00093{bottom:307.040000pt;}
.yb0_c00093{bottom:315.226667pt;}
.yb1_c00093{bottom:316.173333pt;}
.yb2_c00093{bottom:316.560000pt;}
.yb3_c00093{bottom:317.506667pt;}
.yb4_c00093{bottom:317.706667pt;}
.yb5_c00093{bottom:319.040000pt;}
.yac_c00093{bottom:328.173333pt;}
.yad_c00093{bottom:329.506667pt;}
.yaf_c00093{bottom:330.840000pt;}
.yae_c00093{bottom:331.040000pt;}
.yaa_c00093{bottom:340.173333pt;}
.ya7_c00093{bottom:340.560000pt;}
.ya8_c00093{bottom:341.506667pt;}
.yab_c00093{bottom:341.893333pt;}
.ya9_c00093{bottom:343.040000pt;}
.ya1_c00093{bottom:352.560000pt;}
.ya3_c00093{bottom:353.506667pt;}
.ya5_c00093{bottom:353.893333pt;}
.ya4_c00093{bottom:354.840000pt;}
.ya2_c00093{bottom:355.040000pt;}
.ya6_c00093{bottom:356.373333pt;}
.y9d_c00093{bottom:364.560000pt;}
.y9c_c00093{bottom:365.506667pt;}
.y9f_c00093{bottom:366.840000pt;}
.y9e_c00093{bottom:367.040000pt;}
.ya0_c00093{bottom:368.373333pt;}
.y97_c00093{bottom:377.893333pt;}
.y98_c00093{bottom:378.466667pt;}
.y99_c00093{bottom:378.840000pt;}
.y9a_c00093{bottom:379.040000pt;}
.y9b_c00093{bottom:380.373333pt;}
.y96_c00093{bottom:388.560000pt;}
.y93_c00093{bottom:389.893333pt;}
.y94_c00093{bottom:391.040000pt;}
.y95_c00093{bottom:392.373333pt;}
.y8f_c00093{bottom:400.560000pt;}
.y90_c00093{bottom:401.893333pt;}
.y92_c00093{bottom:404.173333pt;}
.y91_c00093{bottom:404.373333pt;}
.y8e_c00093{bottom:414.840000pt;}
.y8c_c00093{bottom:426.840000pt;}
.y8d_c00093{bottom:428.173333pt;}
.y8a_c00093{bottom:438.840000pt;}
.y89_c00093{bottom:440.173333pt;}
.y8b_c00093{bottom:440.373333pt;}
.y85_c00093{bottom:451.226667pt;}
.y86_c00093{bottom:452.173333pt;}
.y87_c00093{bottom:452.560000pt;}
.y88_c00093{bottom:453.506667pt;}
.y81_c00093{bottom:463.226667pt;}
.y82_c00093{bottom:464.173333pt;}
.y84_c00093{bottom:464.560000pt;}
.y80_c00093{bottom:465.506667pt;}
.y83_c00093{bottom:465.706667pt;}
.y7d_c00093{bottom:476.173333pt;}
.y7e_c00093{bottom:476.560000pt;}
.y7f_c00093{bottom:477.506667pt;}
.y7b_c00093{bottom:488.560000pt;}
.y7a_c00093{bottom:489.506667pt;}
.y7c_c00093{bottom:490.840000pt;}
.y78_c00093{bottom:500.560000pt;}
.y77_c00093{bottom:501.506667pt;}
.y79_c00093{bottom:501.706667pt;}
.y74_c00093{bottom:512.560000pt;}
.y73_c00093{bottom:513.506667pt;}
.y75_c00093{bottom:513.893333pt;}
.y76_c00093{bottom:514.840000pt;}
.y71_c00093{bottom:524.560000pt;}
.y6f_c00093{bottom:525.506667pt;}
.y70_c00093{bottom:525.893333pt;}
.y72_c00093{bottom:526.840000pt;}
.y6c_c00093{bottom:536.560000pt;}
.y6b_c00093{bottom:537.506667pt;}
.y6e_c00093{bottom:537.893333pt;}
.y6d_c00093{bottom:538.840000pt;}
.y66_c00093{bottom:549.506667pt;}
.y67_c00093{bottom:549.893333pt;}
.y68_c00093{bottom:550.840000pt;}
.y69_c00093{bottom:551.226667pt;}
.y6a_c00093{bottom:552.173333pt;}
.y63_c00093{bottom:561.893333pt;}
.y62_c00093{bottom:562.840000pt;}
.y65_c00093{bottom:563.226667pt;}
.y64_c00093{bottom:564.173333pt;}
.y5f_c00093{bottom:573.893333pt;}
.y5e_c00093{bottom:574.840000pt;}
.y60_c00093{bottom:575.226667pt;}
.y61_c00093{bottom:576.173333pt;}
.y5a_c00093{bottom:590.840000pt;}
.y5c_c00093{bottom:591.226667pt;}
.y5b_c00093{bottom:592.173333pt;}
.y5d_c00093{bottom:592.560000pt;}
.y55_c00093{bottom:601.893333pt;}
.y56_c00093{bottom:602.840000pt;}
.y57_c00093{bottom:603.226667pt;}
.y59_c00093{bottom:603.600000pt;}
.y58_c00093{bottom:604.173333pt;}
.y52_c00093{bottom:614.840000pt;}
.y53_c00093{bottom:616.173333pt;}
.y54_c00093{bottom:617.133333pt;}
.y50_c00093{bottom:629.693333pt;}
.y4e_c00093{bottom:630.266667pt;}
.y51_c00093{bottom:631.026667pt;}
.y4f_c00093{bottom:631.226667pt;}
.y4c_c00093{bottom:631.973333pt;}
.y4d_c00093{bottom:632.933333pt;}
.y4b_c00093{bottom:643.400000pt;}
.y4a_c00093{bottom:644.933333pt;}
.y48_c00093{bottom:645.306667pt;}
.y49_c00093{bottom:646.266667pt;}
.y47_c00093{bottom:663.973333pt;}
.y46_c00093{bottom:666.640000pt;}
.y44_c00093{bottom:695.773333pt;}
.y45_c00093{bottom:697.693333pt;}
.y41_c00093{bottom:712.360000pt;}
.y40_c00093{bottom:713.106667pt;}
.y43_c00093{bottom:714.440000pt;}
.y3e_c00093{bottom:715.026667pt;}
.y42_c00093{bottom:716.360000pt;}
.y3f_c00093{bottom:716.373333pt;}
.y3d_c00093{bottom:731.026667pt;}
.y3c_c00093{bottom:733.693333pt;}
.y3a_c00093{bottom:749.106667pt;}
.y3b_c00093{bottom:749.893333pt;}
.y39_c00093{bottom:750.640000pt;}
.y38_c00093{bottom:751.026667pt;}
.y37_c00093{bottom:751.973333pt;}
.y34_c00093{bottom:766.440000pt;}
.y35_c00093{bottom:768.360000pt;}
.y36_c00093{bottom:768.560000pt;}
.y30_c00093{bottom:783.773333pt;}
.y31_c00093{bottom:785.693333pt;}
.y33_c00093{bottom:786.066667pt;}
.y32_c00093{bottom:787.026667pt;}
.y2f_c00093{bottom:801.106667pt;}
.y2c_c00093{bottom:802.440000pt;}
.y2b_c00093{bottom:803.026667pt;}
.y2e_c00093{bottom:803.226667pt;}
.y2a_c00093{bottom:803.973333pt;}
.y2d_c00093{bottom:804.360000pt;}
.y25_c00093{bottom:817.693333pt;}
.y29_c00093{bottom:819.773333pt;}
.y26_c00093{bottom:820.560000pt;}
.y27_c00093{bottom:820.733333pt;}
.y24_c00093{bottom:821.306667pt;}
.y28_c00093{bottom:821.693333pt;}
.y1e_c00093{bottom:835.773333pt;}
.y23_c00093{bottom:835.973333pt;}
.y22_c00093{bottom:837.106667pt;}
.y1f_c00093{bottom:837.893333pt;}
.y20_c00093{bottom:838.640000pt;}
.y21_c00093{bottom:839.026667pt;}
.y17_c00093{bottom:853.106667pt;}
.y1a_c00093{bottom:854.440000pt;}
.y18_c00093{bottom:855.026667pt;}
.y1d_c00093{bottom:855.226667pt;}
.y1c_c00093{bottom:855.400000pt;}
.y19_c00093{bottom:856.360000pt;}
.y1b_c00093{bottom:857.306667pt;}
.y16_c00093{bottom:871.773333pt;}
.y14_c00093{bottom:872.560000pt;}
.y13_c00093{bottom:873.693333pt;}
.y15_c00093{bottom:874.640000pt;}
.y12_c00093{bottom:887.026667pt;}
.y11_c00093{bottom:889.106667pt;}
.y10_c00093{bottom:891.026667pt;}
.yd_c00093{bottom:906.440000pt;}
.ya_c00093{bottom:907.026667pt;}
.ye_c00093{bottom:907.226667pt;}
.yc_c00093{bottom:907.400000pt;}
.yb_c00093{bottom:908.360000pt;}
.yf_c00093{bottom:909.306667pt;}
.y8_c00093{bottom:923.773333pt;}
.y7_c00093{bottom:924.733333pt;}
.y6_c00093{bottom:925.693333pt;}
.y9_c00093{bottom:925.893333pt;}
.y4_c00093{bottom:941.106667pt;}
.y5_c00093{bottom:942.066667pt;}
.y3_c00093{bottom:943.026667pt;}
.y1_c00093{bottom:975.773333pt;}
.y2_c00093{bottom:976.933333pt;}
.h7_c00093{height:3.739141pt;}
.hb_c00093{height:7.412682pt;}
.h9_c00093{height:12.988594pt;}
.h8_c00093{height:14.890964pt;}
.ha_c00093{height:20.224297pt;}
.h5_c00093{height:20.466875pt;}
.h2_c00093{height:22.303646pt;}
.h6_c00093{height:27.879557pt;}
.h3_c00093{height:31.618698pt;}
.h4_c00093{height:35.357839pt;}
.h1_c00093{height:39.031380pt;}
.h0_c00093{height:1186.666667pt;}
.w0_c00093{width:782.666667pt;}
.x0_c00093{left:0.000000pt;}
.x1_c00093{left:134.666667pt;}
.x7f_c00093{left:135.626667pt;}
.xa8_c00093{left:137.333333pt;}
.xcb_c00093{left:148.000000pt;}
.x84_c00093{left:149.333333pt;}
.x5d_c00093{left:151.626667pt;}
.x6a_c00093{left:153.706667pt;}
.xaa_c00093{left:156.960000pt;}
.x34_c00093{left:158.666667pt;}
.x3_c00093{left:160.000000pt;}
.xb2_c00093{left:161.706667pt;}
.x29_c00093{left:162.666667pt;}
.xb6_c00093{left:165.706667pt;}
.x50_c00093{left:166.666667pt;}
.xc5_c00093{left:172.960000pt;}
.x5e_c00093{left:174.666667pt;}
.x6b_c00093{left:177.333333pt;}
.x1e_c00093{left:178.666667pt;}
.xc2_c00093{left:181.333333pt;}
.x51_c00093{left:182.666667pt;}
.xbd_c00093{left:184.960000pt;}
.x11_c00093{left:187.040000pt;}
.xc8_c00093{left:189.333333pt;}
.x8e_c00093{left:190.293333pt;}
.xa0_c00093{left:193.333333pt;}
.x74_c00093{left:194.666667pt;}
.xb3_c00093{left:197.333333pt;}
.x2a_c00093{left:198.666667pt;}
.x5f_c00093{left:201.333333pt;}
.x35_c00093{left:202.666667pt;}
.x96_c00093{left:203.626667pt;}
.x52_c00093{left:206.666667pt;}
.x4_c00093{left:207.626667pt;}
.x12_c00093{left:211.040000pt;}
.x44_c00093{left:213.706667pt;}
.x9a_c00093{left:217.333333pt;}
.x36_c00093{left:218.666667pt;}
.x5_c00093{left:225.706667pt;}
.x1f_c00093{left:228.000000pt;}
.xc3_c00093{left:229.706667pt;}
.x8f_c00093{left:230.666667pt;}
.x85_c00093{left:232.960000pt;}
.x45_c00093{left:238.293333pt;}
.x13_c00093{left:240.373333pt;}
.x75_c00093{left:242.293333pt;}
.x37_c00093{left:248.000000pt;}
.x6_c00093{left:249.706667pt;}
.x53_c00093{left:250.666667pt;}
.xa1_c00093{left:252.000000pt;}
.x2b_c00093{left:256.373333pt;}
.x76_c00093{left:259.040000pt;}
.x60_c00093{left:260.000000pt;}
.x86_c00093{left:261.333333pt;}
.x38_c00093{left:264.000000pt;}
.xca_c00093{left:266.666667pt;}
.x6c_c00093{left:267.626667pt;}
.x20_c00093{left:269.333333pt;}
.x97_c00093{left:278.666667pt;}
.x90_c00093{left:279.626667pt;}
.x61_c00093{left:281.333333pt;}
.x14_c00093{left:282.666667pt;}
.x77_c00093{left:284.000000pt;}
.x39_c00093{left:288.000000pt;}
.x46_c00093{left:292.000000pt;}
.x7_c00093{left:292.960000pt;}
.x87_c00093{left:296.000000pt;}
.x62_c00093{left:296.960000pt;}
.x15_c00093{left:301.333333pt;}
.xab_c00093{left:305.333333pt;}
.x6d_c00093{left:306.666667pt;}
.x21_c00093{left:309.706667pt;}
.x8_c00093{left:311.040000pt;}
.x54_c00093{left:313.333333pt;}
.xbe_c00093{left:314.666667pt;}
.x63_c00093{left:318.666667pt;}
.x2c_c00093{left:320.000000pt;}
.x91_c00093{left:321.333333pt;}
.x6e_c00093{left:325.706667pt;}
.x9b_c00093{left:331.626667pt;}
.x3a_c00093{left:333.333333pt;}
.x9_c00093{left:336.000000pt;}
.xac_c00093{left:337.706667pt;}
.x47_c00093{left:340.960000pt;}
.x80_c00093{left:342.666667pt;}
.x64_c00093{left:346.666667pt;}
.x6f_c00093{left:349.706667pt;}
.xcc_c00093{left:350.666667pt;}
.x2d_c00093{left:352.373333pt;}
.x2_c00093{left:354.666667pt;}
.xa2_c00093{left:356.000000pt;}
.x48_c00093{left:359.040000pt;}
.x22_c00093{left:361.333333pt;}
.x65_c00093{left:362.666667pt;}
.xa3_c00093{left:368.000000pt;}
.x98_c00093{left:369.333333pt;}
.x16_c00093{left:372.373333pt;}
.x23_c00093{left:373.333333pt;}
.x70_c00093{left:377.706667pt;}
.xb8_c00093{left:378.666667pt;}
.xbf_c00093{left:380.373333pt;}
.xc6_c00093{left:382.666667pt;}
.x49_c00093{left:384.000000pt;}
.xae_c00093{left:385.333333pt;}
.xbb_c00093{left:386.666667pt;}
.x88_c00093{left:387.626667pt;}
.xa4_c00093{left:389.333333pt;}
.x55_c00093{left:391.040000pt;}
.xa_c00093{left:395.626667pt;}
.x3b_c00093{left:397.706667pt;}
.x2e_c00093{left:399.626667pt;}
.x89_c00093{left:404.000000pt;}
.x99_c00093{left:408.960000pt;}
.x81_c00093{left:411.040000pt;}
.xb_c00093{left:413.706667pt;}
.xb5_c00093{left:415.040000pt;}
.xba_c00093{left:416.000000pt;}
.x66_c00093{left:418.666667pt;}
.x78_c00093{left:419.626667pt;}
.x3c_c00093{left:421.706667pt;}
.x92_c00093{left:423.040000pt;}
.x56_c00093{left:424.000000pt;}
.x8a_c00093{left:429.333333pt;}
.x67_c00093{left:431.626667pt;}
.x17_c00093{left:433.706667pt;}
.x9c_c00093{left:435.040000pt;}
.x57_c00093{left:437.333333pt;}
.xc_c00093{left:438.666667pt;}
.xa5_c00093{left:441.706667pt;}
.x24_c00093{left:443.626667pt;}
.x4a_c00093{left:444.960000pt;}
.x93_c00093{left:446.666667pt;}
.x3d_c00093{left:450.666667pt;}
.x2f_c00093{left:451.626667pt;}
.x71_c00093{left:452.960000pt;}
.xa6_c00093{left:454.666667pt;}
.xce_c00093{left:456.000000pt;}
.xaf_c00093{left:457.706667pt;}
.xc0_c00093{left:458.666667pt;}
.x4b_c00093{left:462.666667pt;}
.x82_c00093{left:465.706667pt;}
.x58_c00093{left:467.040000pt;}
.x79_c00093{left:468.373333pt;}
.x25_c00093{left:471.626667pt;}
.x18_c00093{left:476.373333pt;}
.x30_c00093{left:478.666667pt;}
.x68_c00093{left:484.373333pt;}
.xb4_c00093{left:486.666667pt;}
.xd_c00093{left:488.373333pt;}
.x83_c00093{left:489.333333pt;}
.x7a_c00093{left:492.000000pt;}
.x8b_c00093{left:495.040000pt;}
.x9d_c00093{left:502.293333pt;}
.x19_c00093{left:508.373333pt;}
.x3e_c00093{left:509.333333pt;}
.xe_c00093{left:513.706667pt;}
.x69_c00093{left:516.373333pt;}
.x7b_c00093{left:519.040000pt;}
.xbc_c00093{left:520.000000pt;}
.xa7_c00093{left:520.960000pt;}
.x3f_c00093{left:522.666667pt;}
.x26_c00093{left:526.666667pt;}
.xc9_c00093{left:528.000000pt;}
.x8c_c00093{left:528.960000pt;}
.x94_c00093{left:531.040000pt;}
.x1a_c00093{left:532.373333pt;}
.x59_c00093{left:534.666667pt;}
.x31_c00093{left:536.000000pt;}
.x40_c00093{left:540.373333pt;}
.xf_c00093{left:548.000000pt;}
.x27_c00093{left:550.666667pt;}
.x4c_c00093{left:552.000000pt;}
.x5a_c00093{left:553.706667pt;}
.x72_c00093{left:555.040000pt;}
.xb9_c00093{left:556.000000pt;}
.x95_c00093{left:557.333333pt;}
.xb7_c00093{left:558.666667pt;}
.xc7_c00093{left:560.000000pt;}
.xb0_c00093{left:563.040000pt;}
.x7c_c00093{left:564.373333pt;}
.x4d_c00093{left:566.293333pt;}
.x9e_c00093{left:567.626667pt;}
.x41_c00093{left:570.666667pt;}
.x1b_c00093{left:571.626667pt;}
.x32_c00093{left:574.666667pt;}
.x42_c00093{left:586.666667pt;}
.x1c_c00093{left:588.373333pt;}
.xb1_c00093{left:590.666667pt;}
.x7d_c00093{left:592.000000pt;}
.x10_c00093{left:594.666667pt;}
.x5b_c00093{left:596.000000pt;}
.x28_c00093{left:598.666667pt;}
.x43_c00093{left:602.666667pt;}
.x4e_c00093{left:606.666667pt;}
.x1d_c00093{left:610.666667pt;}
.x33_c00093{left:615.040000pt;}
.x8d_c00093{left:616.373333pt;}
.xad_c00093{left:623.040000pt;}
.x9f_c00093{left:624.000000pt;}
.xa9_c00093{left:626.666667pt;}
.xcd_c00093{left:628.000000pt;}
.x73_c00093{left:629.706667pt;}
.xc1_c00093{left:630.666667pt;}
.xc4_c00093{left:632.000000pt;}
.x5c_c00093{left:633.333333pt;}
.x4f_c00093{left:636.000000pt;}
.x7e_c00093{left:640.000000pt;}
}





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

.ir_c00094:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00094{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00094;src:url('chunks/assets/font_e529b92684262354398ac01d.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:1.688965;font-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_c00094{transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);}
.m9f_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);}
.m84_c00094{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m0_c00094{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m9c_c00094{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);}
.m4a_c00094{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m5_c00094{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m40_c00094{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m87_c00094{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m26_c00094{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m65_c00094{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m8b_c00094{transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);}
.mb0_c00094{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m77_c00094{transform:matrix(0.386503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386503,0.000000,0.000000,0.250000,0,0);}
.m9_c00094{transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);}
.mef_c00094{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.mac_c00094{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.mf2_c00094{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m20_c00094{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m48_c00094{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m78_c00094{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.mb5_c00094{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m44_c00094{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.mb9_c00094{transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);}
.mb4_c00094{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m1a_c00094{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.mc1_c00094{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.ma3_c00094{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m43_c00094{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.me3_c00094{transform:matrix(0.405675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405675,0.000000,0.000000,0.250000,0,0);}
.m7c_c00094{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.mc3_c00094{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mae_c00094{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m36_c00094{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m7f_c00094{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.me4_c00094{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.md4_c00094{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mb7_c00094{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.me6_c00094{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.mcf_c00094{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m6f_c00094{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m3d_c00094{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m41_c00094{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m62_c00094{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.mb6_c00094{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m98_c00094{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.mc2_c00094{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m16_c00094{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m57_c00094{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.ma4_c00094{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.md8_c00094{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.mf4_c00094{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m28_c00094{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m60_c00094{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.mb2_c00094{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m51_c00094{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m7d_c00094{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m55_c00094{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.maa_c00094{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m68_c00094{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.md_c00094{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m79_c00094{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m4_c00094{transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);}
.m81_c00094{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m17_c00094{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m5b_c00094{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m34_c00094{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m64_c00094{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.mc_c00094{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.ma0_c00094{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.md6_c00094{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m22_c00094{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.mee_c00094{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.mca_c00094{transform:matrix(0.442353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442353,0.000000,0.000000,0.250000,0,0);}
.m71_c00094{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m47_c00094{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mb8_c00094{transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);}
.mba_c00094{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m1c_c00094{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m1f_c00094{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.md0_c00094{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.m52_c00094{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m6c_c00094{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m14_c00094{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.mc6_c00094{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m6e_c00094{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.mab_c00094{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m59_c00094{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m73_c00094{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m85_c00094{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m75_c00094{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.ma2_c00094{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.me1_c00094{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.m8d_c00094{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.ma_c00094{transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);}
.m9a_c00094{transform:matrix(0.465546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465546,0.000000,0.000000,0.250000,0,0);}
.m82_c00094{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.meb_c00094{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.me7_c00094{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m97_c00094{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.mf5_c00094{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.ma5_c00094{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m5d_c00094{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m9e_c00094{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.m13_c00094{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.mc9_c00094{transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);}
.m4f_c00094{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m8_c00094{transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);}
.m80_c00094{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m6_c00094{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m6a_c00094{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m3_c00094{transform:matrix(0.486975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486975,0.000000,0.000000,0.250000,0,0);}
.m3b_c00094{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.ma1_c00094{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.ma6_c00094{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mdf_c00094{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m70_c00094{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m23_c00094{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_c00094{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m35_c00094{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.me0_c00094{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.mdd_c00094{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.me5_c00094{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mc0_c00094{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mda_c00094{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m3c_c00094{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mf_c00094{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m76_c00094{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m1d_c00094{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m42_c00094{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m83_c00094{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mec_c00094{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m46_c00094{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m1e_c00094{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m4c_c00094{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mb3_c00094{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m58_c00094{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m2_c00094{transform:matrix(0.525974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525974,0.000000,0.000000,0.250000,0,0);}
.m27_c00094{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m38_c00094{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m61_c00094{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m32_c00094{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m2b_c00094{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m63_c00094{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m93_c00094{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mcd_c00094{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m9d_c00094{transform:matrix(0.532004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532004,0.000000,0.000000,0.250000,0,0);}
.m21_c00094{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mbc_c00094{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m4e_c00094{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m37_c00094{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m7e_c00094{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m31_c00094{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m8a_c00094{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.maf_c00094{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m7_c00094{transform:matrix(0.538971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538971,0.000000,0.000000,0.250000,0,0);}
.m53_c00094{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m30_c00094{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mc4_c00094{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.md2_c00094{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m24_c00094{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m3a_c00094{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m6d_c00094{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mc8_c00094{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mdb_c00094{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m5a_c00094{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.mad_c00094{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.ma9_c00094{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mbf_c00094{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m39_c00094{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m8f_c00094{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.ma8_c00094{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m4b_c00094{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mf1_c00094{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m2c_c00094{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m7a_c00094{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m90_c00094{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m6b_c00094{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.md9_c00094{transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);}
.m2e_c00094{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m74_c00094{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m94_c00094{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m29_c00094{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.ma7_c00094{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m69_c00094{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m9b_c00094{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m2a_c00094{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.mce_c00094{transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);}
.m49_c00094{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m7b_c00094{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m4d_c00094{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m5e_c00094{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m15_c00094{transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);}
.m19_c00094{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m88_c00094{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.mdc_c00094{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.mcc_c00094{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.md3_c00094{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m54_c00094{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.mf3_c00094{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.md5_c00094{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mbe_c00094{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m2d_c00094{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.mbd_c00094{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.me8_c00094{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.med_c00094{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.m10_c00094{transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);}
.m1_c00094{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m2f_c00094{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m89_c00094{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.md7_c00094{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m50_c00094{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m12_c00094{transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);}
.mea_c00094{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m45_c00094{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mde_c00094{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m95_c00094{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.m92_c00094{transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);}
.mb1_c00094{transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);}
.me9_c00094{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m91_c00094{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m8e_c00094{transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);}
.me_c00094{transform:matrix(0.652206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652206,0.000000,0.000000,0.250000,0,0);}
.m66_c00094{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.mc5_c00094{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m3e_c00094{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m33_c00094{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m72_c00094{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m11_c00094{transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);}
.mcb_c00094{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.mbb_c00094{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.me2_c00094{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.md1_c00094{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m99_c00094{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mc7_c00094{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m96_c00094{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m8c_c00094{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m3f_c00094{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m25_c00094{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m67_c00094{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m56_c00094{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mf0_c00094{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m5c_c00094{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m5f_c00094{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m1b_c00094{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m18_c00094{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00094{vertical-align:0.000000px;}
.v1_c00094{vertical-align:6.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;}
}
.ws1_c00094{word-spacing:0.000000px;}
.ws0_c00094{word-spacing:2.017096px;}
.fc0_c00094{color:transparent;}
.fs4_c00094{font-size:3.420000px;}
.fs5_c00094{font-size:18.720000px;}
.fs1_c00094{font-size:20.400000px;}
.fs6_c00094{font-size:25.500000px;}
.fs3_c00094{font-size:28.920000px;}
.fs2_c00094{font-size:32.340000px;}
.fs0_c00094{font-size:35.700000px;}
.fs7_c00094{font-size:39.120000px;}
.y0_c00094{bottom:0.000000px;}
.yc8_c00094{bottom:263.745000px;}
.ycc_c00094{bottom:265.245000px;}
.yc6_c00094{bottom:265.470000px;}
.yca_c00094{bottom:265.905000px;}
.ycb_c00094{bottom:266.130000px;}
.ycd_c00094{bottom:266.325000px;}
.yc9_c00094{bottom:266.970000px;}
.yc7_c00094{bottom:267.405000px;}
.yc3_c00094{bottom:284.745000px;}
.yc1_c00094{bottom:285.405000px;}
.yc0_c00094{bottom:285.825000px;}
.yc4_c00094{bottom:286.470000px;}
.yc2_c00094{bottom:286.905000px;}
.yc5_c00094{bottom:287.130000px;}
.ybe_c00094{bottom:304.245000px;}
.ybd_c00094{bottom:305.970000px;}
.ybc_c00094{bottom:306.405000px;}
.ybf_c00094{bottom:307.905000px;}
.yb7_c00094{bottom:323.745000px;}
.yba_c00094{bottom:324.825000px;}
.yb8_c00094{bottom:325.905000px;}
.yb9_c00094{bottom:326.970000px;}
.ybb_c00094{bottom:327.405000px;}
.yb5_c00094{bottom:343.245000px;}
.yb6_c00094{bottom:344.130000px;}
.yb4_c00094{bottom:345.405000px;}
.yb2_c00094{bottom:345.825000px;}
.yb3_c00094{bottom:346.470000px;}
.yac_c00094{bottom:362.745000px;}
.yae_c00094{bottom:362.970000px;}
.yaf_c00094{bottom:364.905000px;}
.yad_c00094{bottom:365.130000px;}
.yab_c00094{bottom:365.325000px;}
.yb0_c00094{bottom:365.970000px;}
.yb1_c00094{bottom:366.405000px;}
.ya7_c00094{bottom:382.245000px;}
.ya6_c00094{bottom:382.680000px;}
.yaa_c00094{bottom:383.745000px;}
.ya8_c00094{bottom:384.405000px;}
.ya9_c00094{bottom:385.470000px;}
.ya3_c00094{bottom:401.745000px;}
.ya2_c00094{bottom:403.905000px;}
.ya5_c00094{bottom:404.130000px;}
.ya1_c00094{bottom:404.550000px;}
.ya4_c00094{bottom:404.970000px;}
.ya0_c00094{bottom:420.405000px;}
.y9e_c00094{bottom:421.245000px;}
.y9d_c00094{bottom:422.325000px;}
.y9b_c00094{bottom:423.405000px;}
.y9f_c00094{bottom:423.630000px;}
.y9c_c00094{bottom:424.470000px;}
.y9a_c00094{bottom:424.905000px;}
.y95_c00094{bottom:442.245000px;}
.y99_c00094{bottom:443.130000px;}
.y98_c00094{bottom:443.325000px;}
.y97_c00094{bottom:443.970000px;}
.y96_c00094{bottom:444.405000px;}
.y91_c00094{bottom:461.745000px;}
.y94_c00094{bottom:463.905000px;}
.y93_c00094{bottom:464.130000px;}
.y92_c00094{bottom:464.970000px;}
.y8c_c00094{bottom:481.245000px;}
.y8f_c00094{bottom:481.470000px;}
.y90_c00094{bottom:482.325000px;}
.y8b_c00094{bottom:482.970000px;}
.y8a_c00094{bottom:483.405000px;}
.y8d_c00094{bottom:483.630000px;}
.y8e_c00094{bottom:484.470000px;}
.y87_c00094{bottom:500.745000px;}
.y89_c00094{bottom:500.970000px;}
.y85_c00094{bottom:501.825000px;}
.y86_c00094{bottom:502.905000px;}
.y88_c00094{bottom:503.130000px;}
.y84_c00094{bottom:503.970000px;}
.y82_c00094{bottom:521.745000px;}
.y83_c00094{bottom:522.405000px;}
.y81_c00094{bottom:523.905000px;}
.y7e_c00094{bottom:539.970000px;}
.y7f_c00094{bottom:541.245000px;}
.y80_c00094{bottom:543.405000px;}
.y7d_c00094{bottom:544.470000px;}
.y7c_c00094{bottom:560.325000px;}
.y78_c00094{bottom:560.745000px;}
.y7b_c00094{bottom:561.630000px;}
.y7a_c00094{bottom:562.470000px;}
.y79_c00094{bottom:562.905000px;}
.y75_c00094{bottom:580.245000px;}
.y77_c00094{bottom:581.970000px;}
.y76_c00094{bottom:582.405000px;}
.y72_c00094{bottom:599.745000px;}
.y73_c00094{bottom:601.470000px;}
.y71_c00094{bottom:601.905000px;}
.y74_c00094{bottom:602.130000px;}
.y6d_c00094{bottom:618.405000px;}
.y6b_c00094{bottom:619.245000px;}
.y6f_c00094{bottom:620.745000px;}
.y6e_c00094{bottom:621.405000px;}
.y6c_c00094{bottom:621.630000px;}
.y70_c00094{bottom:622.905000px;}
.y65_c00094{bottom:637.905000px;}
.y6a_c00094{bottom:640.245000px;}
.y66_c00094{bottom:640.905000px;}
.y67_c00094{bottom:641.130000px;}
.y69_c00094{bottom:641.325000px;}
.y68_c00094{bottom:642.405000px;}
.y63_c00094{bottom:658.245000px;}
.y61_c00094{bottom:659.745000px;}
.y64_c00094{bottom:660.630000px;}
.y62_c00094{bottom:660.825000px;}
.y60_c00094{bottom:661.905000px;}
.y5e_c00094{bottom:679.245000px;}
.y5a_c00094{bottom:680.130000px;}
.y5d_c00094{bottom:680.325000px;}
.y5b_c00094{bottom:680.970000px;}
.y59_c00094{bottom:681.405000px;}
.y5f_c00094{bottom:681.630000px;}
.y5c_c00094{bottom:682.470000px;}
.y54_c00094{bottom:696.405000px;}
.y57_c00094{bottom:697.470000px;}
.y52_c00094{bottom:698.745000px;}
.y53_c00094{bottom:699.630000px;}
.y56_c00094{bottom:700.470000px;}
.y55_c00094{bottom:700.905000px;}
.y58_c00094{bottom:701.970000px;}
.y50_c00094{bottom:718.245000px;}
.y4f_c00094{bottom:719.325000px;}
.y51_c00094{bottom:719.970000px;}
.y4e_c00094{bottom:720.405000px;}
.y4c_c00094{bottom:736.905000px;}
.y4b_c00094{bottom:737.745000px;}
.y4a_c00094{bottom:739.905000px;}
.y4d_c00094{bottom:740.130000px;}
.y49_c00094{bottom:756.825000px;}
.y46_c00094{bottom:757.245000px;}
.y48_c00094{bottom:757.680000px;}
.y43_c00094{bottom:758.325000px;}
.y45_c00094{bottom:759.405000px;}
.y44_c00094{bottom:759.630000px;}
.y47_c00094{bottom:760.905000px;}
.y40_c00094{bottom:776.745000px;}
.y3e_c00094{bottom:776.970000px;}
.y3f_c00094{bottom:777.825000px;}
.y3d_c00094{bottom:778.905000px;}
.y42_c00094{bottom:779.130000px;}
.y41_c00094{bottom:779.970000px;}
.y39_c00094{bottom:795.825000px;}
.y3b_c00094{bottom:796.470000px;}
.y36_c00094{bottom:797.745000px;}
.y3c_c00094{bottom:798.630000px;}
.y3a_c00094{bottom:799.470000px;}
.y38_c00094{bottom:799.905000px;}
.y37_c00094{bottom:799.920000px;}
.y32_c00094{bottom:817.245000px;}
.y34_c00094{bottom:818.130000px;}
.y35_c00094{bottom:818.970000px;}
.y33_c00094{bottom:819.405000px;}
.y2f_c00094{bottom:836.745000px;}
.y30_c00094{bottom:837.825000px;}
.y2d_c00094{bottom:838.905000px;}
.y31_c00094{bottom:839.130000px;}
.y2e_c00094{bottom:839.970000px;}
.y2b_c00094{bottom:856.245000px;}
.y2c_c00094{bottom:857.130000px;}
.y29_c00094{bottom:858.405000px;}
.y2a_c00094{bottom:858.420000px;}
.y26_c00094{bottom:875.325000px;}
.y24_c00094{bottom:875.745000px;}
.y27_c00094{bottom:877.245000px;}
.y23_c00094{bottom:877.905000px;}
.y25_c00094{bottom:878.130000px;}
.y28_c00094{bottom:879.405000px;}
.y22_c00094{bottom:896.745000px;}
.y1f_c00094{bottom:897.405000px;}
.y21_c00094{bottom:898.470000px;}
.y20_c00094{bottom:898.905000px;}
.y1e_c00094{bottom:916.245000px;}
.y1b_c00094{bottom:918.405000px;}
.y1c_c00094{bottom:918.420000px;}
.y1d_c00094{bottom:919.470000px;}
.y1a_c00094{bottom:935.745000px;}
.y17_c00094{bottom:936.405000px;}
.y18_c00094{bottom:936.630000px;}
.y19_c00094{bottom:937.920000px;}
.y15_c00094{bottom:952.905000px;}
.y16_c00094{bottom:954.405000px;}
.y12_c00094{bottom:955.245000px;}
.y14_c00094{bottom:956.325000px;}
.y13_c00094{bottom:957.420000px;}
.yf_c00094{bottom:974.745000px;}
.y11_c00094{bottom:976.905000px;}
.y10_c00094{bottom:976.920000px;}
.yd_c00094{bottom:996.405000px;}
.ye_c00094{bottom:997.050000px;}
.yc_c00094{bottom:997.905000px;}
.y9_c00094{bottom:1011.405000px;}
.ya_c00094{bottom:1012.905000px;}
.yb_c00094{bottom:1015.050000px;}
.y8_c00094{bottom:1032.825000px;}
.y6_c00094{bottom:1033.905000px;}
.y7_c00094{bottom:1036.050000px;}
.y4_c00094{bottom:1057.245000px;}
.y3_c00094{bottom:1058.325000px;}
.y5_c00094{bottom:1058.745000px;}
.y1_c00094{bottom:1097.745000px;}
.y2_c00094{bottom:1099.050000px;}
.h6_c00094{height:4.206533px;}
.h7_c00094{height:23.025234px;}
.h2_c00094{height:25.091602px;}
.h8_c00094{height:31.364502px;}
.h5_c00094{height:35.571035px;}
.h3_c00094{height:39.777568px;}
.h1_c00094{height:43.910303px;}
.h9_c00094{height:48.116836px;}
.h4_c00094{height:49.910303px;}
.h0_c00094{height:1335.000000px;}
.w0_c00094{width:880.500000px;}
.x0_c00094{left:0.000000px;}
.x14_c00094{left:151.080000px;}
.x89_c00094{left:153.000000px;}
.x8a_c00094{left:157.920000px;}
.xb_c00094{left:164.145000px;}
.x17_c00094{left:166.920000px;}
.x1b_c00094{left:168.000000px;}
.x6a_c00094{left:171.000000px;}
.x56_c00094{left:174.000000px;}
.x96_c00094{left:180.000000px;}
.x34_c00094{left:182.580000px;}
.xca_c00094{left:189.000000px;}
.x3e_c00094{left:190.920000px;}
.x8b_c00094{left:192.000000px;}
.xb7_c00094{left:193.080000px;}
.x57_c00094{left:194.145000px;}
.x73_c00094{left:196.500000px;}
.x15_c00094{left:198.420000px;}
.x8c_c00094{left:199.500000px;}
.xd7_c00094{left:201.000000px;}
.xe3_c00094{left:205.500000px;}
.x18_c00094{left:207.420000px;}
.x6b_c00094{left:211.500000px;}
.x102_c00094{left:214.920000px;}
.xd8_c00094{left:216.420000px;}
.x97_c00094{left:217.920000px;}
.x74_c00094{left:219.420000px;}
.x4e_c00094{left:220.500000px;}
.xfd_c00094{left:222.420000px;}
.x9f_c00094{left:223.920000px;}
.xc0_c00094{left:226.920000px;}
.xa7_c00094{left:229.080000px;}
.x16_c00094{left:234.420000px;}
.x4f_c00094{left:235.500000px;}
.x35_c00094{left:237.000000px;}
.xc_c00094{left:238.080000px;}
.xe0_c00094{left:241.500000px;}
.x84_c00094{left:243.420000px;}
.xc7_c00094{left:244.500000px;}
.x7b_c00094{left:246.420000px;}
.x26_c00094{left:247.500000px;}
.x46_c00094{left:249.000000px;}
.xc1_c00094{left:253.920000px;}
.x5d_c00094{left:255.000000px;}
.x1c_c00094{left:258.000000px;}
.x2b_c00094{left:259.500000px;}
.x50_c00094{left:262.920000px;}
.x19_c00094{left:265.500000px;}
.xef_c00094{left:267.000000px;}
.x47_c00094{left:268.080000px;}
.xe4_c00094{left:269.580000px;}
.xff_c00094{left:271.080000px;}
.x5e_c00094{left:274.080000px;}
.xd9_c00094{left:276.000000px;}
.x3_c00094{left:277.080000px;}
.x1d_c00094{left:279.000000px;}
.x2c_c00094{left:280.080000px;}
.x8d_c00094{left:282.000000px;}
.xf2_c00094{left:283.080000px;}
.xc8_c00094{left:285.000000px;}
.x3f_c00094{left:286.500000px;}
.x1a_c00094{left:288.000000px;}
.xa0_c00094{left:290.775000px;}
.xda_c00094{left:294.420000px;}
.xb8_c00094{left:296.580000px;}
.xd_c00094{left:299.145000px;}
.xf8_c00094{left:302.580000px;}
.x98_c00094{left:303.645000px;}
.x6c_c00094{left:304.920000px;}
.xf3_c00094{left:306.420000px;}
.x40_c00094{left:307.500000px;}
.x75_c00094{left:309.000000px;}
.xd2_c00094{left:312.420000px;}
.xaf_c00094{left:313.500000px;}
.x7c_c00094{left:314.580000px;}
.xa1_c00094{left:316.500000px;}
.xa8_c00094{left:319.500000px;}
.x27_c00094{left:320.580000px;}
.x41_c00094{left:322.500000px;}
.x7_c00094{left:325.500000px;}
.x51_c00094{left:327.000000px;}
.x85_c00094{left:328.500000px;}
.x5f_c00094{left:329.580000px;}
.xe5_c00094{left:331.500000px;}
.x100_c00094{left:333.420000px;}
.xe1_c00094{left:334.920000px;}
.xf4_c00094{left:336.000000px;}
.x8e_c00094{left:339.000000px;}
.x36_c00094{left:342.000000px;}
.x1e_c00094{left:345.420000px;}
.x28_c00094{left:346.500000px;}
.x60_c00094{left:348.420000px;}
.xa9_c00094{left:351.000000px;}
.xe_c00094{left:352.920000px;}
.xb0_c00094{left:355.920000px;}
.xf5_c00094{left:357.000000px;}
.x99_c00094{left:358.080000px;}
.x58_c00094{left:360.000000px;}
.x37_c00094{left:361.080000px;}
.xdb_c00094{left:363.000000px;}
.x76_c00094{left:364.920000px;}
.x7d_c00094{left:367.920000px;}
.xc9_c00094{left:369.000000px;}
.x4_c00094{left:370.080000px;}
.xc2_c00094{left:372.420000px;}
.xf0_c00094{left:375.000000px;}
.xa2_c00094{left:378.000000px;}
.x38_c00094{left:379.500000px;}
.x2d_c00094{left:380.580000px;}
.x8_c00094{left:382.920000px;}
.x59_c00094{left:385.500000px;}
.x1f_c00094{left:386.580000px;}
.x6d_c00094{left:388.500000px;}
.x77_c00094{left:391.080000px;}
.xf_c00094{left:393.000000px;}
.x48_c00094{left:394.500000px;}
.xb9_c00094{left:395.580000px;}
.x2_c00094{left:399.000000px;}
.x9_c00094{left:402.000000px;}
.x29_c00094{left:403.080000px;}
.xaa_c00094{left:405.420000px;}
.x61_c00094{left:406.920000px;}
.x9a_c00094{left:411.000000px;}
.xcb_c00094{left:412.920000px;}
.xd3_c00094{left:414.420000px;}
.xb1_c00094{left:418.500000px;}
.x20_c00094{left:421.500000px;}
.xea_c00094{left:423.000000px;}
.xdc_c00094{left:426.000000px;}
.x2e_c00094{left:427.080000px;}
.x49_c00094{left:430.500000px;}
.x6e_c00094{left:432.000000px;}
.x39_c00094{left:433.080000px;}
.xf6_c00094{left:435.000000px;}
.x52_c00094{left:438.000000px;}
.x8f_c00094{left:439.500000px;}
.xd4_c00094{left:441.000000px;}
.x7e_c00094{left:442.080000px;}
.x5a_c00094{left:445.500000px;}
.xcc_c00094{left:447.420000px;}
.xeb_c00094{left:448.920000px;}
.x86_c00094{left:453.420000px;}
.xdf_c00094{left:456.000000px;}
.xba_c00094{left:457.500000px;}
.xc3_c00094{left:459.000000px;}
.x2f_c00094{left:460.500000px;}
.x2a_c00094{left:461.580000px;}
.x42_c00094{left:462.645000px;}
.x103_c00094{left:463.920000px;}
.x62_c00094{left:465.420000px;}
.x90_c00094{left:466.500000px;}
.xcd_c00094{left:467.580000px;}
.xb2_c00094{left:469.500000px;}
.x9b_c00094{left:471.420000px;}
.xbb_c00094{left:474.000000px;}
.xc4_c00094{left:475.920000px;}
.xe6_c00094{left:478.500000px;}
.x91_c00094{left:480.000000px;}
.x78_c00094{left:483.420000px;}
.xa_c00094{left:484.920000px;}
.x21_c00094{left:487.275000px;}
.x7f_c00094{left:489.000000px;}
.xab_c00094{left:490.920000px;}
.x87_c00094{left:492.420000px;}
.x10_c00094{left:496.080000px;}
.x30_c00094{left:498.420000px;}
.x63_c00094{left:501.000000px;}
.xfe_c00094{left:504.000000px;}
.x6f_c00094{left:506.580000px;}
.x80_c00094{left:510.420000px;}
.xf9_c00094{left:511.920000px;}
.xf7_c00094{left:513.000000px;}
.x5_c00094{left:514.080000px;}
.x4a_c00094{left:516.420000px;}
.x5b_c00094{left:519.420000px;}
.xac_c00094{left:522.000000px;}
.x64_c00094{left:523.500000px;}
.xc5_c00094{left:525.000000px;}
.x22_c00094{left:526.080000px;}
.xce_c00094{left:527.145000px;}
.xbc_c00094{left:531.000000px;}
.x92_c00094{left:532.500000px;}
.xe7_c00094{left:534.000000px;}
.x101_c00094{left:535.500000px;}
.xb3_c00094{left:541.080000px;}
.x65_c00094{left:543.000000px;}
.x3a_c00094{left:546.000000px;}
.x43_c00094{left:547.500000px;}
.xec_c00094{left:549.420000px;}
.xfa_c00094{left:552.420000px;}
.xd5_c00094{left:553.920000px;}
.x23_c00094{left:555.000000px;}
.xbd_c00094{left:556.080000px;}
.x31_c00094{left:558.000000px;}
.x53_c00094{left:561.000000px;}
.xdd_c00094{left:562.500000px;}
.x11_c00094{left:564.000000px;}
.xa3_c00094{left:565.500000px;}
.x79_c00094{left:567.000000px;}
.x6_c00094{left:571.275000px;}
.x70_c00094{left:573.000000px;}
.x88_c00094{left:574.500000px;}
.x66_c00094{left:576.000000px;}
.x9c_c00094{left:577.500000px;}
.xbe_c00094{left:580.500000px;}
.x54_c00094{left:586.500000px;}
.xb4_c00094{left:588.420000px;}
.xfb_c00094{left:589.920000px;}
.x93_c00094{left:592.080000px;}
.x71_c00094{left:595.920000px;}
.x81_c00094{left:597.420000px;}
.x4b_c00094{left:599.580000px;}
.x3b_c00094{left:600.645000px;}
.xe8_c00094{left:601.920000px;}
.x9d_c00094{left:603.000000px;}
.xbf_c00094{left:604.500000px;}
.xed_c00094{left:610.080000px;}
.xcf_c00094{left:612.000000px;}
.x67_c00094{left:613.500000px;}
.x12_c00094{left:615.000000px;}
.x24_c00094{left:616.275000px;}
.xfc_c00094{left:619.080000px;}
.x5c_c00094{left:621.645000px;}
.x44_c00094{left:624.000000px;}
.x32_c00094{left:625.500000px;}
.x55_c00094{left:627.000000px;}
.xb5_c00094{left:628.500000px;}
.x82_c00094{left:630.000000px;}
.xad_c00094{left:631.500000px;}
.x104_c00094{left:633.000000px;}
.xa4_c00094{left:637.500000px;}
.x68_c00094{left:639.420000px;}
.xde_c00094{left:640.500000px;}
.xae_c00094{left:643.500000px;}
.xe9_c00094{left:645.000000px;}
.xf1_c00094{left:646.500000px;}
.x4c_c00094{left:651.420000px;}
.x25_c00094{left:656.580000px;}
.x9e_c00094{left:658.920000px;}
.x13_c00094{left:661.500000px;}
.xa5_c00094{left:663.000000px;}
.x72_c00094{left:666.000000px;}
.x94_c00094{left:667.500000px;}
.x3c_c00094{left:669.420000px;}
.xd6_c00094{left:670.500000px;}
.x33_c00094{left:672.000000px;}
.xa6_c00094{left:678.420000px;}
.xd0_c00094{left:679.500000px;}
.x83_c00094{left:686.580000px;}
.x69_c00094{left:688.080000px;}
.xee_c00094{left:690.420000px;}
.x95_c00094{left:692.580000px;}
.x45_c00094{left:693.855000px;}
.x4d_c00094{left:696.420000px;}
.x7a_c00094{left:697.500000px;}
.xe2_c00094{left:700.920000px;}
.x105_c00094{left:702.000000px;}
.xb6_c00094{left:703.500000px;}
.x3d_c00094{left:706.500000px;}
.xc6_c00094{left:708.420000px;}
.x1_c00094{left:712.500000px;}
.xd1_c00094{left:718.500000px;}
@media print{
.v0_c00094{vertical-align:0.000000pt;}
.v1_c00094{vertical-align:5.333333pt;}
.ls0_c00094{letter-spacing:0.000000pt;}
.ws1_c00094{word-spacing:0.000000pt;}
.ws0_c00094{word-spacing:1.792974pt;}
.fs4_c00094{font-size:3.040000pt;}
.fs5_c00094{font-size:16.640000pt;}
.fs1_c00094{font-size:18.133333pt;}
.fs6_c00094{font-size:22.666667pt;}
.fs3_c00094{font-size:25.706667pt;}
.fs2_c00094{font-size:28.746667pt;}
.fs0_c00094{font-size:31.733333pt;}
.fs7_c00094{font-size:34.773333pt;}
.y0_c00094{bottom:0.000000pt;}
.yc8_c00094{bottom:234.440000pt;}
.ycc_c00094{bottom:235.773333pt;}
.yc6_c00094{bottom:235.973333pt;}
.yca_c00094{bottom:236.360000pt;}
.ycb_c00094{bottom:236.560000pt;}
.ycd_c00094{bottom:236.733333pt;}
.yc9_c00094{bottom:237.306667pt;}
.yc7_c00094{bottom:237.693333pt;}
.yc3_c00094{bottom:253.106667pt;}
.yc1_c00094{bottom:253.693333pt;}
.yc0_c00094{bottom:254.066667pt;}
.yc4_c00094{bottom:254.640000pt;}
.yc2_c00094{bottom:255.026667pt;}
.yc5_c00094{bottom:255.226667pt;}
.ybe_c00094{bottom:270.440000pt;}
.ybd_c00094{bottom:271.973333pt;}
.ybc_c00094{bottom:272.360000pt;}
.ybf_c00094{bottom:273.693333pt;}
.yb7_c00094{bottom:287.773333pt;}
.yba_c00094{bottom:288.733333pt;}
.yb8_c00094{bottom:289.693333pt;}
.yb9_c00094{bottom:290.640000pt;}
.ybb_c00094{bottom:291.026667pt;}
.yb5_c00094{bottom:305.106667pt;}
.yb6_c00094{bottom:305.893333pt;}
.yb4_c00094{bottom:307.026667pt;}
.yb2_c00094{bottom:307.400000pt;}
.yb3_c00094{bottom:307.973333pt;}
.yac_c00094{bottom:322.440000pt;}
.yae_c00094{bottom:322.640000pt;}
.yaf_c00094{bottom:324.360000pt;}
.yad_c00094{bottom:324.560000pt;}
.yab_c00094{bottom:324.733333pt;}
.yb0_c00094{bottom:325.306667pt;}
.yb1_c00094{bottom:325.693333pt;}
.ya7_c00094{bottom:339.773333pt;}
.ya6_c00094{bottom:340.160000pt;}
.yaa_c00094{bottom:341.106667pt;}
.ya8_c00094{bottom:341.693333pt;}
.ya9_c00094{bottom:342.640000pt;}
.ya3_c00094{bottom:357.106667pt;}
.ya2_c00094{bottom:359.026667pt;}
.ya5_c00094{bottom:359.226667pt;}
.ya1_c00094{bottom:359.600000pt;}
.ya4_c00094{bottom:359.973333pt;}
.ya0_c00094{bottom:373.693333pt;}
.y9e_c00094{bottom:374.440000pt;}
.y9d_c00094{bottom:375.400000pt;}
.y9b_c00094{bottom:376.360000pt;}
.y9f_c00094{bottom:376.560000pt;}
.y9c_c00094{bottom:377.306667pt;}
.y9a_c00094{bottom:377.693333pt;}
.y95_c00094{bottom:393.106667pt;}
.y99_c00094{bottom:393.893333pt;}
.y98_c00094{bottom:394.066667pt;}
.y97_c00094{bottom:394.640000pt;}
.y96_c00094{bottom:395.026667pt;}
.y91_c00094{bottom:410.440000pt;}
.y94_c00094{bottom:412.360000pt;}
.y93_c00094{bottom:412.560000pt;}
.y92_c00094{bottom:413.306667pt;}
.y8c_c00094{bottom:427.773333pt;}
.y8f_c00094{bottom:427.973333pt;}
.y90_c00094{bottom:428.733333pt;}
.y8b_c00094{bottom:429.306667pt;}
.y8a_c00094{bottom:429.693333pt;}
.y8d_c00094{bottom:429.893333pt;}
.y8e_c00094{bottom:430.640000pt;}
.y87_c00094{bottom:445.106667pt;}
.y89_c00094{bottom:445.306667pt;}
.y85_c00094{bottom:446.066667pt;}
.y86_c00094{bottom:447.026667pt;}
.y88_c00094{bottom:447.226667pt;}
.y84_c00094{bottom:447.973333pt;}
.y82_c00094{bottom:463.773333pt;}
.y83_c00094{bottom:464.360000pt;}
.y81_c00094{bottom:465.693333pt;}
.y7e_c00094{bottom:479.973333pt;}
.y7f_c00094{bottom:481.106667pt;}
.y80_c00094{bottom:483.026667pt;}
.y7d_c00094{bottom:483.973333pt;}
.y7c_c00094{bottom:498.066667pt;}
.y78_c00094{bottom:498.440000pt;}
.y7b_c00094{bottom:499.226667pt;}
.y7a_c00094{bottom:499.973333pt;}
.y79_c00094{bottom:500.360000pt;}
.y75_c00094{bottom:515.773333pt;}
.y77_c00094{bottom:517.306667pt;}
.y76_c00094{bottom:517.693333pt;}
.y72_c00094{bottom:533.106667pt;}
.y73_c00094{bottom:534.640000pt;}
.y71_c00094{bottom:535.026667pt;}
.y74_c00094{bottom:535.226667pt;}
.y6d_c00094{bottom:549.693333pt;}
.y6b_c00094{bottom:550.440000pt;}
.y6f_c00094{bottom:551.773333pt;}
.y6e_c00094{bottom:552.360000pt;}
.y6c_c00094{bottom:552.560000pt;}
.y70_c00094{bottom:553.693333pt;}
.y65_c00094{bottom:567.026667pt;}
.y6a_c00094{bottom:569.106667pt;}
.y66_c00094{bottom:569.693333pt;}
.y67_c00094{bottom:569.893333pt;}
.y69_c00094{bottom:570.066667pt;}
.y68_c00094{bottom:571.026667pt;}
.y63_c00094{bottom:585.106667pt;}
.y61_c00094{bottom:586.440000pt;}
.y64_c00094{bottom:587.226667pt;}
.y62_c00094{bottom:587.400000pt;}
.y60_c00094{bottom:588.360000pt;}
.y5e_c00094{bottom:603.773333pt;}
.y5a_c00094{bottom:604.560000pt;}
.y5d_c00094{bottom:604.733333pt;}
.y5b_c00094{bottom:605.306667pt;}
.y59_c00094{bottom:605.693333pt;}
.y5f_c00094{bottom:605.893333pt;}
.y5c_c00094{bottom:606.640000pt;}
.y54_c00094{bottom:619.026667pt;}
.y57_c00094{bottom:619.973333pt;}
.y52_c00094{bottom:621.106667pt;}
.y53_c00094{bottom:621.893333pt;}
.y56_c00094{bottom:622.640000pt;}
.y55_c00094{bottom:623.026667pt;}
.y58_c00094{bottom:623.973333pt;}
.y50_c00094{bottom:638.440000pt;}
.y4f_c00094{bottom:639.400000pt;}
.y51_c00094{bottom:639.973333pt;}
.y4e_c00094{bottom:640.360000pt;}
.y4c_c00094{bottom:655.026667pt;}
.y4b_c00094{bottom:655.773333pt;}
.y4a_c00094{bottom:657.693333pt;}
.y4d_c00094{bottom:657.893333pt;}
.y49_c00094{bottom:672.733333pt;}
.y46_c00094{bottom:673.106667pt;}
.y48_c00094{bottom:673.493333pt;}
.y43_c00094{bottom:674.066667pt;}
.y45_c00094{bottom:675.026667pt;}
.y44_c00094{bottom:675.226667pt;}
.y47_c00094{bottom:676.360000pt;}
.y40_c00094{bottom:690.440000pt;}
.y3e_c00094{bottom:690.640000pt;}
.y3f_c00094{bottom:691.400000pt;}
.y3d_c00094{bottom:692.360000pt;}
.y42_c00094{bottom:692.560000pt;}
.y41_c00094{bottom:693.306667pt;}
.y39_c00094{bottom:707.400000pt;}
.y3b_c00094{bottom:707.973333pt;}
.y36_c00094{bottom:709.106667pt;}
.y3c_c00094{bottom:709.893333pt;}
.y3a_c00094{bottom:710.640000pt;}
.y38_c00094{bottom:711.026667pt;}
.y37_c00094{bottom:711.040000pt;}
.y32_c00094{bottom:726.440000pt;}
.y34_c00094{bottom:727.226667pt;}
.y35_c00094{bottom:727.973333pt;}
.y33_c00094{bottom:728.360000pt;}
.y2f_c00094{bottom:743.773333pt;}
.y30_c00094{bottom:744.733333pt;}
.y2d_c00094{bottom:745.693333pt;}
.y31_c00094{bottom:745.893333pt;}
.y2e_c00094{bottom:746.640000pt;}
.y2b_c00094{bottom:761.106667pt;}
.y2c_c00094{bottom:761.893333pt;}
.y29_c00094{bottom:763.026667pt;}
.y2a_c00094{bottom:763.040000pt;}
.y26_c00094{bottom:778.066667pt;}
.y24_c00094{bottom:778.440000pt;}
.y27_c00094{bottom:779.773333pt;}
.y23_c00094{bottom:780.360000pt;}
.y25_c00094{bottom:780.560000pt;}
.y28_c00094{bottom:781.693333pt;}
.y22_c00094{bottom:797.106667pt;}
.y1f_c00094{bottom:797.693333pt;}
.y21_c00094{bottom:798.640000pt;}
.y20_c00094{bottom:799.026667pt;}
.y1e_c00094{bottom:814.440000pt;}
.y1b_c00094{bottom:816.360000pt;}
.y1c_c00094{bottom:816.373333pt;}
.y1d_c00094{bottom:817.306667pt;}
.y1a_c00094{bottom:831.773333pt;}
.y17_c00094{bottom:832.360000pt;}
.y18_c00094{bottom:832.560000pt;}
.y19_c00094{bottom:833.706667pt;}
.y15_c00094{bottom:847.026667pt;}
.y16_c00094{bottom:848.360000pt;}
.y12_c00094{bottom:849.106667pt;}
.y14_c00094{bottom:850.066667pt;}
.y13_c00094{bottom:851.040000pt;}
.yf_c00094{bottom:866.440000pt;}
.y11_c00094{bottom:868.360000pt;}
.y10_c00094{bottom:868.373333pt;}
.yd_c00094{bottom:885.693333pt;}
.ye_c00094{bottom:886.266667pt;}
.yc_c00094{bottom:887.026667pt;}
.y9_c00094{bottom:899.026667pt;}
.ya_c00094{bottom:900.360000pt;}
.yb_c00094{bottom:902.266667pt;}
.y8_c00094{bottom:918.066667pt;}
.y6_c00094{bottom:919.026667pt;}
.y7_c00094{bottom:920.933333pt;}
.y4_c00094{bottom:939.773333pt;}
.y3_c00094{bottom:940.733333pt;}
.y5_c00094{bottom:941.106667pt;}
.y1_c00094{bottom:975.773333pt;}
.y2_c00094{bottom:976.933333pt;}
.h6_c00094{height:3.739141pt;}
.h7_c00094{height:20.466875pt;}
.h2_c00094{height:22.303646pt;}
.h8_c00094{height:27.879557pt;}
.h5_c00094{height:31.618698pt;}
.h3_c00094{height:35.357839pt;}
.h1_c00094{height:39.031380pt;}
.h9_c00094{height:42.770521pt;}
.h4_c00094{height:44.364714pt;}
.h0_c00094{height:1186.666667pt;}
.w0_c00094{width:782.666667pt;}
.x0_c00094{left:0.000000pt;}
.x14_c00094{left:134.293333pt;}
.x89_c00094{left:136.000000pt;}
.x8a_c00094{left:140.373333pt;}
.xb_c00094{left:145.906667pt;}
.x17_c00094{left:148.373333pt;}
.x1b_c00094{left:149.333333pt;}
.x6a_c00094{left:152.000000pt;}
.x56_c00094{left:154.666667pt;}
.x96_c00094{left:160.000000pt;}
.x34_c00094{left:162.293333pt;}
.xca_c00094{left:168.000000pt;}
.x3e_c00094{left:169.706667pt;}
.x8b_c00094{left:170.666667pt;}
.xb7_c00094{left:171.626667pt;}
.x57_c00094{left:172.573333pt;}
.x73_c00094{left:174.666667pt;}
.x15_c00094{left:176.373333pt;}
.x8c_c00094{left:177.333333pt;}
.xd7_c00094{left:178.666667pt;}
.xe3_c00094{left:182.666667pt;}
.x18_c00094{left:184.373333pt;}
.x6b_c00094{left:188.000000pt;}
.x102_c00094{left:191.040000pt;}
.xd8_c00094{left:192.373333pt;}
.x97_c00094{left:193.706667pt;}
.x74_c00094{left:195.040000pt;}
.x4e_c00094{left:196.000000pt;}
.xfd_c00094{left:197.706667pt;}
.x9f_c00094{left:199.040000pt;}
.xc0_c00094{left:201.706667pt;}
.xa7_c00094{left:203.626667pt;}
.x16_c00094{left:208.373333pt;}
.x4f_c00094{left:209.333333pt;}
.x35_c00094{left:210.666667pt;}
.xc_c00094{left:211.626667pt;}
.xe0_c00094{left:214.666667pt;}
.x84_c00094{left:216.373333pt;}
.xc7_c00094{left:217.333333pt;}
.x7b_c00094{left:219.040000pt;}
.x26_c00094{left:220.000000pt;}
.x46_c00094{left:221.333333pt;}
.xc1_c00094{left:225.706667pt;}
.x5d_c00094{left:226.666667pt;}
.x1c_c00094{left:229.333333pt;}
.x2b_c00094{left:230.666667pt;}
.x50_c00094{left:233.706667pt;}
.x19_c00094{left:236.000000pt;}
.xef_c00094{left:237.333333pt;}
.x47_c00094{left:238.293333pt;}
.xe4_c00094{left:239.626667pt;}
.xff_c00094{left:240.960000pt;}
.x5e_c00094{left:243.626667pt;}
.xd9_c00094{left:245.333333pt;}
.x3_c00094{left:246.293333pt;}
.x1d_c00094{left:248.000000pt;}
.x2c_c00094{left:248.960000pt;}
.x8d_c00094{left:250.666667pt;}
.xf2_c00094{left:251.626667pt;}
.xc8_c00094{left:253.333333pt;}
.x3f_c00094{left:254.666667pt;}
.x1a_c00094{left:256.000000pt;}
.xa0_c00094{left:258.466667pt;}
.xda_c00094{left:261.706667pt;}
.xb8_c00094{left:263.626667pt;}
.xd_c00094{left:265.906667pt;}
.xf8_c00094{left:268.960000pt;}
.x98_c00094{left:269.906667pt;}
.x6c_c00094{left:271.040000pt;}
.xf3_c00094{left:272.373333pt;}
.x40_c00094{left:273.333333pt;}
.x75_c00094{left:274.666667pt;}
.xd2_c00094{left:277.706667pt;}
.xaf_c00094{left:278.666667pt;}
.x7c_c00094{left:279.626667pt;}
.xa1_c00094{left:281.333333pt;}
.xa8_c00094{left:284.000000pt;}
.x27_c00094{left:284.960000pt;}
.x41_c00094{left:286.666667pt;}
.x7_c00094{left:289.333333pt;}
.x51_c00094{left:290.666667pt;}
.x85_c00094{left:292.000000pt;}
.x5f_c00094{left:292.960000pt;}
.xe5_c00094{left:294.666667pt;}
.x100_c00094{left:296.373333pt;}
.xe1_c00094{left:297.706667pt;}
.xf4_c00094{left:298.666667pt;}
.x8e_c00094{left:301.333333pt;}
.x36_c00094{left:304.000000pt;}
.x1e_c00094{left:307.040000pt;}
.x28_c00094{left:308.000000pt;}
.x60_c00094{left:309.706667pt;}
.xa9_c00094{left:312.000000pt;}
.xe_c00094{left:313.706667pt;}
.xb0_c00094{left:316.373333pt;}
.xf5_c00094{left:317.333333pt;}
.x99_c00094{left:318.293333pt;}
.x58_c00094{left:320.000000pt;}
.x37_c00094{left:320.960000pt;}
.xdb_c00094{left:322.666667pt;}
.x76_c00094{left:324.373333pt;}
.x7d_c00094{left:327.040000pt;}
.xc9_c00094{left:328.000000pt;}
.x4_c00094{left:328.960000pt;}
.xc2_c00094{left:331.040000pt;}
.xf0_c00094{left:333.333333pt;}
.xa2_c00094{left:336.000000pt;}
.x38_c00094{left:337.333333pt;}
.x2d_c00094{left:338.293333pt;}
.x8_c00094{left:340.373333pt;}
.x59_c00094{left:342.666667pt;}
.x1f_c00094{left:343.626667pt;}
.x6d_c00094{left:345.333333pt;}
.x77_c00094{left:347.626667pt;}
.xf_c00094{left:349.333333pt;}
.x48_c00094{left:350.666667pt;}
.xb9_c00094{left:351.626667pt;}
.x2_c00094{left:354.666667pt;}
.x9_c00094{left:357.333333pt;}
.x29_c00094{left:358.293333pt;}
.xaa_c00094{left:360.373333pt;}
.x61_c00094{left:361.706667pt;}
.x9a_c00094{left:365.333333pt;}
.xcb_c00094{left:367.040000pt;}
.xd3_c00094{left:368.373333pt;}
.xb1_c00094{left:372.000000pt;}
.x20_c00094{left:374.666667pt;}
.xea_c00094{left:376.000000pt;}
.xdc_c00094{left:378.666667pt;}
.x2e_c00094{left:379.626667pt;}
.x49_c00094{left:382.666667pt;}
.x6e_c00094{left:384.000000pt;}
.x39_c00094{left:384.960000pt;}
.xf6_c00094{left:386.666667pt;}
.x52_c00094{left:389.333333pt;}
.x8f_c00094{left:390.666667pt;}
.xd4_c00094{left:392.000000pt;}
.x7e_c00094{left:392.960000pt;}
.x5a_c00094{left:396.000000pt;}
.xcc_c00094{left:397.706667pt;}
.xeb_c00094{left:399.040000pt;}
.x86_c00094{left:403.040000pt;}
.xdf_c00094{left:405.333333pt;}
.xba_c00094{left:406.666667pt;}
.xc3_c00094{left:408.000000pt;}
.x2f_c00094{left:409.333333pt;}
.x2a_c00094{left:410.293333pt;}
.x42_c00094{left:411.240000pt;}
.x103_c00094{left:412.373333pt;}
.x62_c00094{left:413.706667pt;}
.x90_c00094{left:414.666667pt;}
.xcd_c00094{left:415.626667pt;}
.xb2_c00094{left:417.333333pt;}
.x9b_c00094{left:419.040000pt;}
.xbb_c00094{left:421.333333pt;}
.xc4_c00094{left:423.040000pt;}
.xe6_c00094{left:425.333333pt;}
.x91_c00094{left:426.666667pt;}
.x78_c00094{left:429.706667pt;}
.xa_c00094{left:431.040000pt;}
.x21_c00094{left:433.133333pt;}
.x7f_c00094{left:434.666667pt;}
.xab_c00094{left:436.373333pt;}
.x87_c00094{left:437.706667pt;}
.x10_c00094{left:440.960000pt;}
.x30_c00094{left:443.040000pt;}
.x63_c00094{left:445.333333pt;}
.xfe_c00094{left:448.000000pt;}
.x6f_c00094{left:450.293333pt;}
.x80_c00094{left:453.706667pt;}
.xf9_c00094{left:455.040000pt;}
.xf7_c00094{left:456.000000pt;}
.x5_c00094{left:456.960000pt;}
.x4a_c00094{left:459.040000pt;}
.x5b_c00094{left:461.706667pt;}
.xac_c00094{left:464.000000pt;}
.x64_c00094{left:465.333333pt;}
.xc5_c00094{left:466.666667pt;}
.x22_c00094{left:467.626667pt;}
.xce_c00094{left:468.573333pt;}
.xbc_c00094{left:472.000000pt;}
.x92_c00094{left:473.333333pt;}
.xe7_c00094{left:474.666667pt;}
.x101_c00094{left:476.000000pt;}
.xb3_c00094{left:480.960000pt;}
.x65_c00094{left:482.666667pt;}
.x3a_c00094{left:485.333333pt;}
.x43_c00094{left:486.666667pt;}
.xec_c00094{left:488.373333pt;}
.xfa_c00094{left:491.040000pt;}
.xd5_c00094{left:492.373333pt;}
.x23_c00094{left:493.333333pt;}
.xbd_c00094{left:494.293333pt;}
.x31_c00094{left:496.000000pt;}
.x53_c00094{left:498.666667pt;}
.xdd_c00094{left:500.000000pt;}
.x11_c00094{left:501.333333pt;}
.xa3_c00094{left:502.666667pt;}
.x79_c00094{left:504.000000pt;}
.x6_c00094{left:507.800000pt;}
.x70_c00094{left:509.333333pt;}
.x88_c00094{left:510.666667pt;}
.x66_c00094{left:512.000000pt;}
.x9c_c00094{left:513.333333pt;}
.xbe_c00094{left:516.000000pt;}
.x54_c00094{left:521.333333pt;}
.xb4_c00094{left:523.040000pt;}
.xfb_c00094{left:524.373333pt;}
.x93_c00094{left:526.293333pt;}
.x71_c00094{left:529.706667pt;}
.x81_c00094{left:531.040000pt;}
.x4b_c00094{left:532.960000pt;}
.x3b_c00094{left:533.906667pt;}
.xe8_c00094{left:535.040000pt;}
.x9d_c00094{left:536.000000pt;}
.xbf_c00094{left:537.333333pt;}
.xed_c00094{left:542.293333pt;}
.xcf_c00094{left:544.000000pt;}
.x67_c00094{left:545.333333pt;}
.x12_c00094{left:546.666667pt;}
.x24_c00094{left:547.800000pt;}
.xfc_c00094{left:550.293333pt;}
.x5c_c00094{left:552.573333pt;}
.x44_c00094{left:554.666667pt;}
.x32_c00094{left:556.000000pt;}
.x55_c00094{left:557.333333pt;}
.xb5_c00094{left:558.666667pt;}
.x82_c00094{left:560.000000pt;}
.xad_c00094{left:561.333333pt;}
.x104_c00094{left:562.666667pt;}
.xa4_c00094{left:566.666667pt;}
.x68_c00094{left:568.373333pt;}
.xde_c00094{left:569.333333pt;}
.xae_c00094{left:572.000000pt;}
.xe9_c00094{left:573.333333pt;}
.xf1_c00094{left:574.666667pt;}
.x4c_c00094{left:579.040000pt;}
.x25_c00094{left:583.626667pt;}
.x9e_c00094{left:585.706667pt;}
.x13_c00094{left:588.000000pt;}
.xa5_c00094{left:589.333333pt;}
.x72_c00094{left:592.000000pt;}
.x94_c00094{left:593.333333pt;}
.x3c_c00094{left:595.040000pt;}
.xd6_c00094{left:596.000000pt;}
.x33_c00094{left:597.333333pt;}
.xa6_c00094{left:603.040000pt;}
.xd0_c00094{left:604.000000pt;}
.x83_c00094{left:610.293333pt;}
.x69_c00094{left:611.626667pt;}
.xee_c00094{left:613.706667pt;}
.x95_c00094{left:615.626667pt;}
.x45_c00094{left:616.760000pt;}
.x4d_c00094{left:619.040000pt;}
.x7a_c00094{left:620.000000pt;}
.xe2_c00094{left:623.040000pt;}
.x105_c00094{left:624.000000pt;}
.xb6_c00094{left:625.333333pt;}
.x3d_c00094{left:628.000000pt;}
.xc6_c00094{left:629.706667pt;}
.x1_c00094{left:633.333333pt;}
.xd1_c00094{left:638.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_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_22988ffd1bf8432934a9d39f.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:1.688965;font-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_c00095{transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);}
.ma1_c00095{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.mbb_c00095{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m74_c00095{transform:matrix(0.336618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336618,0.000000,0.000000,0.250000,0,0);}
.m9d_c00095{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m3e_c00095{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m70_c00095{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m23_c00095{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.me_c00095{transform:matrix(0.369632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369632,0.000000,0.000000,0.250000,0,0);}
.mdd_c00095{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m76_c00095{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.me5_c00095{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.me4_c00095{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.md1_c00095{transform:matrix(0.377087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377087,0.000000,0.000000,0.250000,0,0);}
.m90_c00095{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.md4_c00095{transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);}
.me3_c00095{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mb4_c00095{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.ma8_c00095{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.mb9_c00095{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m72_c00095{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.mea_c00095{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mc3_c00095{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.mbf_c00095{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m43_c00095{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mc6_c00095{transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);}
.mf8_c00095{transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);}
.md8_c00095{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m6e_c00095{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m41_c00095{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.md7_c00095{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m5a_c00095{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.mb0_c00095{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m46_c00095{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m18_c00095{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m4e_c00095{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);}
.mf5_c00095{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.mfc_c00095{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mde_c00095{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m2_c00095{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.me1_c00095{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m13_c00095{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.ma4_c00095{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m5e_c00095{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m93_c00095{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m3b_c00095{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m44_c00095{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.ma2_c00095{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m3f_c00095{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.mef_c00095{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.mb6_c00095{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m6_c00095{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.maf_c00095{transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);}
.m4b_c00095{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m9c_c00095{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m42_c00095{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m3_c00095{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m73_c00095{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.md_c00095{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m8_c00095{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.md2_c00095{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m75_c00095{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m3c_c00095{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m48_c00095{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m45_c00095{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m47_c00095{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.mc8_c00095{transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);}
.m5f_c00095{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m7d_c00095{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m35_c00095{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mb_c00095{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mca_c00095{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.mb1_c00095{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m31_c00095{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.md3_c00095{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m92_c00095{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.me9_c00095{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.mb3_c00095{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.mae_c00095{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.md6_c00095{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.mad_c00095{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m96_c00095{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m97_c00095{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m80_c00095{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.mf9_c00095{transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);}
.m83_c00095{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m9_c00095{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m16_c00095{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.md5_c00095{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m1e_c00095{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.m8e_c00095{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.mbd_c00095{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m8b_c00095{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.m49_c00095{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.mf2_c00095{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.md9_c00095{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mee_c00095{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m58_c00095{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m64_c00095{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m53_c00095{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.m19_c00095{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.mc7_c00095{transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);}
.mb2_c00095{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.mc0_c00095{transform:matrix(0.465546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465546,0.000000,0.000000,0.250000,0,0);}
.m4d_c00095{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.mfd_c00095{transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);}
.m33_c00095{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.mf1_c00095{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m1d_c00095{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.md0_c00095{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m50_c00095{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m7f_c00095{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.m27_c00095{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mc5_c00095{transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);}
.m86_c00095{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m40_c00095{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m28_c00095{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m95_c00095{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mba_c00095{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.mcd_c00095{transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);}
.m0_c00095{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mf6_c00095{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m56_c00095{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m99_c00095{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.ma_c00095{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m8f_c00095{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mcf_c00095{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.mfa_c00095{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.mfe_c00095{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.mc4_c00095{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m4_c00095{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_c00095{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m9a_c00095{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.mc9_c00095{transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);}
.m1a_c00095{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.me0_c00095{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mc1_c00095{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.mcc_c00095{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mf7_c00095{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m54_c00095{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m7a_c00095{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m9e_c00095{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m9f_c00095{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m7b_c00095{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mc2_c00095{transform:matrix(0.514378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514378,0.000000,0.000000,0.250000,0,0);}
.med_c00095{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m30_c00095{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m78_c00095{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m6f_c00095{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m5c_c00095{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mfb_c00095{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m2e_c00095{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m88_c00095{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m34_c00095{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m9b_c00095{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.ma6_c00095{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m82_c00095{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m3d_c00095{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m38_c00095{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.ma7_c00095{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m2d_c00095{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m68_c00095{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m25_c00095{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mdf_c00095{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m4c_c00095{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m63_c00095{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m81_c00095{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m8a_c00095{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mb7_c00095{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m21_c00095{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m17_c00095{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m7c_c00095{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mcb_c00095{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m55_c00095{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m4a_c00095{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m7_c00095{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.me7_c00095{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mf_c00095{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.meb_c00095{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m94_c00095{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m6d_c00095{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m85_c00095{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mab_c00095{transform:matrix(0.556303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556303,0.000000,0.000000,0.250000,0,0);}
.m6a_c00095{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mdc_c00095{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.mce_c00095{transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);}
.m2a_c00095{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m67_c00095{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m22_c00095{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m98_c00095{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m37_c00095{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.mb8_c00095{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mda_c00095{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m32_c00095{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m12_c00095{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m1c_c00095{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m15_c00095{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m29_c00095{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m71_c00095{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m79_c00095{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m2f_c00095{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m4f_c00095{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mf3_c00095{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m1f_c00095{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.maa_c00095{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m51_c00095{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m39_c00095{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m5_c00095{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.mc_c00095{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.mbc_c00095{transform:matrix(0.597756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597756,0.000000,0.000000,0.250000,0,0);}
.m11_c00095{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mac_c00095{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.me6_c00095{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.m20_c00095{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m1_c00095{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m77_c00095{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m91_c00095{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.me8_c00095{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m10_c00095{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);}
.ma0_c00095{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mbe_c00095{transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);}
.me2_c00095{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m8d_c00095{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m6c_c00095{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.m2b_c00095{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.m2c_c00095{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m6b_c00095{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m3a_c00095{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m61_c00095{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mb5_c00095{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m65_c00095{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m8c_c00095{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m60_c00095{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m52_c00095{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m69_c00095{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m7e_c00095{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.m36_c00095{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m87_c00095{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m1b_c00095{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m84_c00095{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m57_c00095{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m26_c00095{transform:matrix(0.736471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736471,0.000000,0.000000,0.250000,0,0);}
.m66_c00095{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m14_c00095{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mf4_c00095{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mec_c00095{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m89_c00095{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.m5b_c00095{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m62_c00095{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mf0_c00095{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.ma3_c00095{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m24_c00095{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.ma5_c00095{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.mdb_c00095{transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);}
.m5d_c00095{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00095{vertical-align:0.000000px;}
.ls0_c00095{letter-spacing:0.000000px;}
.sc__c00095{text-shadow:none;}
.sc0_c00095{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00095{-webkit-text-stroke:0px transparent;}
.sc0_c00095{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00095{word-spacing:-3.173681px;}
.ws2_c00095{word-spacing:-3.083722px;}
.ws1_c00095{word-spacing:-0.508680px;}
.ws3_c00095{word-spacing:0.000000px;}
.fc0_c00095{color:transparent;}
.fs8_c00095{font-size:3.420000px;}
.fs7_c00095{font-size:11.880000px;}
.fs6_c00095{font-size:18.720000px;}
.fs1_c00095{font-size:20.400000px;}
.fs5_c00095{font-size:25.500000px;}
.fs0_c00095{font-size:28.920000px;}
.fs3_c00095{font-size:32.340000px;}
.fs2_c00095{font-size:35.700000px;}
.fs4_c00095{font-size:39.120000px;}
.y0_c00095{bottom:0.000000px;}
.yd9_c00095{bottom:267.405000px;}
.yda_c00095{bottom:268.245000px;}
.yd8_c00095{bottom:269.325000px;}
.yd7_c00095{bottom:270.405000px;}
.yd5_c00095{bottom:286.905000px;}
.ycf_c00095{bottom:287.745000px;}
.yd6_c00095{bottom:287.970000px;}
.yd2_c00095{bottom:288.180000px;}
.yd4_c00095{bottom:288.825000px;}
.yd0_c00095{bottom:289.905000px;}
.yd3_c00095{bottom:290.130000px;}
.yd1_c00095{bottom:291.405000px;}
.ycc_c00095{bottom:306.825000px;}
.yce_c00095{bottom:307.245000px;}
.yc8_c00095{bottom:308.130000px;}
.yc9_c00095{bottom:308.745000px;}
.yc7_c00095{bottom:309.405000px;}
.ycd_c00095{bottom:309.630000px;}
.yca_c00095{bottom:310.905000px;}
.ycb_c00095{bottom:311.970000px;}
.yc1_c00095{bottom:326.745000px;}
.yc5_c00095{bottom:328.245000px;}
.yc6_c00095{bottom:328.470000px;}
.yc3_c00095{bottom:328.905000px;}
.yc2_c00095{bottom:329.130000px;}
.yc4_c00095{bottom:330.405000px;}
.yc0_c00095{bottom:347.745000px;}
.ybd_c00095{bottom:348.405000px;}
.ybe_c00095{bottom:349.905000px;}
.ybf_c00095{bottom:349.920000px;}
.yba_c00095{bottom:367.245000px;}
.ybb_c00095{bottom:369.405000px;}
.ybc_c00095{bottom:370.470000px;}
.yb8_c00095{bottom:385.245000px;}
.yb6_c00095{bottom:385.470000px;}
.yb5_c00095{bottom:385.905000px;}
.yb9_c00095{bottom:387.405000px;}
.yb1_c00095{bottom:387.825000px;}
.yb4_c00095{bottom:388.245000px;}
.yb7_c00095{bottom:388.470000px;}
.yb2_c00095{bottom:388.905000px;}
.yb3_c00095{bottom:390.405000px;}
.yaf_c00095{bottom:406.245000px;}
.yb0_c00095{bottom:406.905000px;}
.yae_c00095{bottom:407.745000px;}
.yab_c00095{bottom:408.405000px;}
.yac_c00095{bottom:408.420000px;}
.yad_c00095{bottom:409.905000px;}
.yaa_c00095{bottom:424.905000px;}
.ya6_c00095{bottom:425.325000px;}
.ya8_c00095{bottom:425.745000px;}
.ya2_c00095{bottom:426.180000px;}
.ya5_c00095{bottom:426.405000px;}
.ya9_c00095{bottom:426.825000px;}
.ya7_c00095{bottom:427.245000px;}
.ya4_c00095{bottom:428.325000px;}
.ya3_c00095{bottom:429.420000px;}
.y9e_c00095{bottom:445.245000px;}
.y9f_c00095{bottom:446.745000px;}
.ya1_c00095{bottom:448.905000px;}
.ya0_c00095{bottom:448.920000px;}
.y9d_c00095{bottom:467.970000px;}
.y9b_c00095{bottom:468.405000px;}
.y9c_c00095{bottom:468.825000px;}
.y99_c00095{bottom:483.405000px;}
.y9a_c00095{bottom:484.470000px;}
.y96_c00095{bottom:504.405000px;}
.y98_c00095{bottom:504.825000px;}
.y97_c00095{bottom:505.905000px;}
.y94_c00095{bottom:530.745000px;}
.y95_c00095{bottom:531.825000px;}
.y93_c00095{bottom:565.905000px;}
.y92_c00095{bottom:566.745000px;}
.y8f_c00095{bottom:567.825000px;}
.y91_c00095{bottom:568.905000px;}
.y90_c00095{bottom:569.970000px;}
.y8c_c00095{bottom:586.245000px;}
.y8b_c00095{bottom:586.680000px;}
.y8e_c00095{bottom:587.325000px;}
.y88_c00095{bottom:587.745000px;}
.y89_c00095{bottom:588.405000px;}
.y8d_c00095{bottom:588.630000px;}
.y8a_c00095{bottom:589.905000px;}
.y82_c00095{bottom:604.905000px;}
.y81_c00095{bottom:605.325000px;}
.y85_c00095{bottom:605.745000px;}
.y86_c00095{bottom:606.825000px;}
.y87_c00095{bottom:607.050000px;}
.y80_c00095{bottom:607.245000px;}
.y84_c00095{bottom:607.905000px;}
.y83_c00095{bottom:608.325000px;}
.y7f_c00095{bottom:609.405000px;}
.y7c_c00095{bottom:624.405000px;}
.y7d_c00095{bottom:625.245000px;}
.y7e_c00095{bottom:625.470000px;}
.y7b_c00095{bottom:625.905000px;}
.y7a_c00095{bottom:626.745000px;}
.y79_c00095{bottom:628.905000px;}
.y77_c00095{bottom:643.905000px;}
.y75_c00095{bottom:645.180000px;}
.y74_c00095{bottom:646.245000px;}
.y76_c00095{bottom:647.130000px;}
.y78_c00095{bottom:647.970000px;}
.y72_c00095{bottom:648.405000px;}
.y73_c00095{bottom:649.470000px;}
.y71_c00095{bottom:663.405000px;}
.y70_c00095{bottom:665.745000px;}
.y6d_c00095{bottom:666.630000px;}
.y6f_c00095{bottom:667.470000px;}
.y6e_c00095{bottom:667.905000px;}
.y6b_c00095{bottom:685.245000px;}
.y6c_c00095{bottom:687.405000px;}
.y6a_c00095{bottom:702.405000px;}
.y67_c00095{bottom:703.470000px;}
.y68_c00095{bottom:704.745000px;}
.y69_c00095{bottom:706.470000px;}
.y66_c00095{bottom:706.905000px;}
.y60_c00095{bottom:724.245000px;}
.y61_c00095{bottom:725.130000px;}
.y65_c00095{bottom:725.325000px;}
.y62_c00095{bottom:726.405000px;}
.y64_c00095{bottom:726.630000px;}
.y63_c00095{bottom:727.470000px;}
.y5c_c00095{bottom:742.905000px;}
.y5b_c00095{bottom:743.745000px;}
.y5a_c00095{bottom:745.905000px;}
.y5e_c00095{bottom:746.130000px;}
.y5f_c00095{bottom:746.325000px;}
.y5d_c00095{bottom:747.405000px;}
.y59_c00095{bottom:762.405000px;}
.y56_c00095{bottom:764.745000px;}
.y57_c00095{bottom:766.470000px;}
.y58_c00095{bottom:766.905000px;}
.y54_c00095{bottom:783.825000px;}
.y52_c00095{bottom:784.245000px;}
.y55_c00095{bottom:785.970000px;}
.y53_c00095{bottom:786.405000px;}
.y51_c00095{bottom:801.405000px;}
.y4f_c00095{bottom:802.245000px;}
.y4e_c00095{bottom:804.630000px;}
.y50_c00095{bottom:805.470000px;}
.y4d_c00095{bottom:805.905000px;}
.y4c_c00095{bottom:806.970000px;}
.y48_c00095{bottom:823.245000px;}
.y4b_c00095{bottom:824.325000px;}
.y4a_c00095{bottom:824.970000px;}
.y46_c00095{bottom:825.405000px;}
.y47_c00095{bottom:825.420000px;}
.y49_c00095{bottom:825.630000px;}
.y45_c00095{bottom:839.775000px;}
.y43_c00095{bottom:841.905000px;}
.y41_c00095{bottom:842.745000px;}
.y42_c00095{bottom:843.825000px;}
.y3f_c00095{bottom:844.905000px;}
.y40_c00095{bottom:845.130000px;}
.y44_c00095{bottom:848.130000px;}
.y3d_c00095{bottom:862.245000px;}
.y3e_c00095{bottom:863.130000px;}
.y3c_c00095{bottom:863.325000px;}
.y3b_c00095{bottom:864.405000px;}
.y39_c00095{bottom:879.825000px;}
.y38_c00095{bottom:881.745000px;}
.y3a_c00095{bottom:883.905000px;}
.y37_c00095{bottom:901.245000px;}
.y34_c00095{bottom:901.680000px;}
.y35_c00095{bottom:902.745000px;}
.y36_c00095{bottom:903.825000px;}
.y33_c00095{bottom:904.905000px;}
.y30_c00095{bottom:919.905000px;}
.y32_c00095{bottom:920.745000px;}
.y2e_c00095{bottom:922.245000px;}
.y2f_c00095{bottom:923.130000px;}
.y31_c00095{bottom:923.970000px;}
.y2d_c00095{bottom:924.405000px;}
.y2c_c00095{bottom:943.905000px;}
.y29_c00095{bottom:959.970000px;}
.y2a_c00095{bottom:961.245000px;}
.y2b_c00095{bottom:961.905000px;}
.y28_c00095{bottom:962.550000px;}
.y27_c00095{bottom:963.405000px;}
.y1d_c00095{bottom:978.825000px;}
.y23_c00095{bottom:979.470000px;}
.y20_c00095{bottom:979.905000px;}
.y1e_c00095{bottom:980.745000px;}
.y26_c00095{bottom:981.405000px;}
.y24_c00095{bottom:981.630000px;}
.y1f_c00095{bottom:981.825000px;}
.y25_c00095{bottom:982.470000px;}
.y22_c00095{bottom:982.905000px;}
.y21_c00095{bottom:983.970000px;}
.y15_c00095{bottom:997.905000px;}
.y1c_c00095{bottom:999.180000px;}
.y19_c00095{bottom:999.825000px;}
.y16_c00095{bottom:1000.245000px;}
.y1a_c00095{bottom:1000.470000px;}
.y18_c00095{bottom:1001.130000px;}
.y1b_c00095{bottom:1001.325000px;}
.y17_c00095{bottom:1002.405000px;}
.y14_c00095{bottom:1018.245000px;}
.y11_c00095{bottom:1018.905000px;}
.ye_c00095{bottom:1019.550000px;}
.yf_c00095{bottom:1019.745000px;}
.y13_c00095{bottom:1020.405000px;}
.y12_c00095{bottom:1021.050000px;}
.y10_c00095{bottom:1021.905000px;}
.y9_c00095{bottom:1037.325000px;}
.ya_c00095{bottom:1038.180000px;}
.yb_c00095{bottom:1038.405000px;}
.y7_c00095{bottom:1039.245000px;}
.yc_c00095{bottom:1039.680000px;}
.y8_c00095{bottom:1041.405000px;}
.yd_c00095{bottom:1042.470000px;}
.y6_c00095{bottom:1056.405000px;}
.y5_c00095{bottom:1057.905000px;}
.y3_c00095{bottom:1058.745000px;}
.y4_c00095{bottom:1060.905000px;}
.y2_c00095{bottom:1099.050000px;}
.y1_c00095{bottom:1099.905000px;}
.h9_c00095{height:4.206533px;}
.h8_c00095{height:14.612168px;}
.h7_c00095{height:23.025234px;}
.h2_c00095{height:25.091602px;}
.h6_c00095{height:31.364502px;}
.h1_c00095{height:35.571035px;}
.h4_c00095{height:39.777568px;}
.h3_c00095{height:43.910303px;}
.h5_c00095{height:48.116836px;}
.h0_c00095{height:1335.000000px;}
.w0_c00095{width:880.500000px;}
.x0_c00095{left:0.000000px;}
.x1_c00095{left:149.580000px;}
.x3_c00095{left:151.080000px;}
.x1d_c00095{left:152.355000px;}
.x29_c00095{left:164.580000px;}
.x4e_c00095{left:166.500000px;}
.x9c_c00095{left:168.000000px;}
.xb4_c00095{left:169.920000px;}
.x1e_c00095{left:172.080000px;}
.x9d_c00095{left:183.420000px;}
.x37_c00095{left:185.580000px;}
.x11_c00095{left:187.920000px;}
.x4_c00095{left:189.420000px;}
.xd3_c00095{left:194.580000px;}
.x6f_c00095{left:196.500000px;}
.x44_c00095{left:198.420000px;}
.x4f_c00095{left:199.920000px;}
.xe8_c00095{left:201.000000px;}
.xe0_c00095{left:202.500000px;}
.x2a_c00095{left:204.420000px;}
.x60_c00095{left:205.920000px;}
.xc5_c00095{left:207.420000px;}
.x1f_c00095{left:208.920000px;}
.x66_c00095{left:210.000000px;}
.x45_c00095{left:213.000000px;}
.x58_c00095{left:214.080000px;}
.x96_c00095{left:218.580000px;}
.x85_c00095{left:220.080000px;}
.xe9_c00095{left:222.420000px;}
.x38_c00095{left:223.500000px;}
.xa6_c00095{left:226.500000px;}
.xe1_c00095{left:228.420000px;}
.x8c_c00095{left:230.580000px;}
.xc4_c00095{left:234.000000px;}
.x12_c00095{left:235.080000px;}
.x5_c00095{left:236.580000px;}
.xc1_c00095{left:238.500000px;}
.x86_c00095{left:240.420000px;}
.x70_c00095{left:243.000000px;}
.xa1_c00095{left:246.420000px;}
.xaa_c00095{left:247.500000px;}
.xea_c00095{left:248.580000px;}
.x7c_c00095{left:250.500000px;}
.x13_c00095{left:252.420000px;}
.x6_c00095{left:255.420000px;}
.x92_c00095{left:256.920000px;}
.xc8_c00095{left:258.000000px;}
.xbb_c00095{left:259.080000px;}
.x59_c00095{left:261.000000px;}
.xd4_c00095{left:262.080000px;}
.x9e_c00095{left:264.420000px;}
.xda_c00095{left:265.500000px;}
.xc6_c00095{left:267.000000px;}
.x50_c00095{left:268.500000px;}
.x2b_c00095{left:270.000000px;}
.xab_c00095{left:271.080000px;}
.x67_c00095{left:273.000000px;}
.x20_c00095{left:274.920000px;}
.xc9_c00095{left:279.000000px;}
.xd1_c00095{left:280.500000px;}
.x46_c00095{left:283.500000px;}
.xc7_c00095{left:288.000000px;}
.xbc_c00095{left:291.000000px;}
.xd5_c00095{left:292.920000px;}
.x7_c00095{left:294.000000px;}
.x39_c00095{left:296.580000px;}
.x14_c00095{left:300.000000px;}
.x5a_c00095{left:301.500000px;}
.xc2_c00095{left:304.500000px;}
.x21_c00095{left:309.000000px;}
.xb9_c00095{left:312.000000px;}
.x97_c00095{left:315.000000px;}
.x68_c00095{left:316.500000px;}
.xd6_c00095{left:318.000000px;}
.x61_c00095{left:319.500000px;}
.xb5_c00095{left:320.580000px;}
.x51_c00095{left:322.500000px;}
.xeb_c00095{left:324.645000px;}
.xa2_c00095{left:325.920000px;}
.xc0_c00095{left:327.000000px;}
.x87_c00095{left:330.000000px;}
.x2c_c00095{left:331.920000px;}
.x3a_c00095{left:334.920000px;}
.x77_c00095{left:337.080000px;}
.x7d_c00095{left:340.500000px;}
.x8d_c00095{left:342.000000px;}
.x5b_c00095{left:343.920000px;}
.xca_c00095{left:345.420000px;}
.xe2_c00095{left:346.500000px;}
.x47_c00095{left:349.500000px;}
.x71_c00095{left:357.000000px;}
.xa7_c00095{left:358.920000px;}
.xdd_c00095{left:365.580000px;}
.xac_c00095{left:367.920000px;}
.x52_c00095{left:371.580000px;}
.x88_c00095{left:373.920000px;}
.x8e_c00095{left:376.500000px;}
.xd7_c00095{left:377.580000px;}
.xdb_c00095{left:379.500000px;}
.x8_c00095{left:381.000000px;}
.xba_c00095{left:382.080000px;}
.x3b_c00095{left:383.580000px;}
.x15_c00095{left:385.500000px;}
.xcb_c00095{left:387.000000px;}
.x2d_c00095{left:390.420000px;}
.x22_c00095{left:392.580000px;}
.xad_c00095{left:395.580000px;}
.x2_c00095{left:397.500000px;}
.x69_c00095{left:399.000000px;}
.x7e_c00095{left:400.080000px;}
.x9_c00095{left:401.580000px;}
.x98_c00095{left:406.080000px;}
.xa3_c00095{left:408.000000px;}
.x2e_c00095{left:410.580000px;}
.x89_c00095{left:412.920000px;}
.x72_c00095{left:414.000000px;}
.xde_c00095{left:415.920000px;}
.x16_c00095{left:418.080000px;}
.xbd_c00095{left:421.080000px;}
.xcc_c00095{left:423.000000px;}
.x48_c00095{left:426.000000px;}
.x23_c00095{left:427.080000px;}
.xae_c00095{left:429.000000px;}
.x3c_c00095{left:430.920000px;}
.xbe_c00095{left:433.920000px;}
.x93_c00095{left:438.000000px;}
.xa_c00095{left:439.920000px;}
.x99_c00095{left:441.000000px;}
.xdf_c00095{left:445.500000px;}
.x9f_c00095{left:446.580000px;}
.xe3_c00095{left:448.500000px;}
.x17_c00095{left:453.420000px;}
.xf0_c00095{left:454.920000px;}
.x5c_c00095{left:457.275000px;}
.x2f_c00095{left:459.000000px;}
.x53_c00095{left:460.080000px;}
.xa4_c00095{left:461.580000px;}
.x24_c00095{left:463.920000px;}
.x3d_c00095{left:469.080000px;}
.xe4_c00095{left:471.000000px;}
.xb_c00095{left:472.500000px;}
.xa8_c00095{left:474.000000px;}
.x54_c00095{left:478.920000px;}
.x49_c00095{left:481.920000px;}
.x9a_c00095{left:484.500000px;}
.x18_c00095{left:486.000000px;}
.x8a_c00095{left:487.500000px;}
.x6a_c00095{left:489.000000px;}
.x7f_c00095{left:490.080000px;}
.xaf_c00095{left:492.000000px;}
.xf1_c00095{left:495.000000px;}
.x25_c00095{left:496.500000px;}
.x94_c00095{left:499.500000px;}
.x8f_c00095{left:501.420000px;}
.x55_c00095{left:507.000000px;}
.x30_c00095{left:509.580000px;}
.x3e_c00095{left:511.920000px;}
.xec_c00095{left:514.500000px;}
.x5d_c00095{left:516.000000px;}
.xdc_c00095{left:518.145000px;}
.x4a_c00095{left:522.420000px;}
.x31_c00095{left:524.580000px;}
.x78_c00095{left:526.080000px;}
.xcd_c00095{left:527.580000px;}
.x62_c00095{left:530.580000px;}
.x3f_c00095{left:533.580000px;}
.x73_c00095{left:535.920000px;}
.xc_c00095{left:538.920000px;}
.xa5_c00095{left:541.500000px;}
.x6b_c00095{left:544.500000px;}
.x56_c00095{left:546.000000px;}
.xf2_c00095{left:547.080000px;}
.x79_c00095{left:548.580000px;}
.x19_c00095{left:550.920000px;}
.xb0_c00095{left:553.500000px;}
.xa9_c00095{left:555.000000px;}
.xce_c00095{left:556.500000px;}
.xd_c00095{left:559.080000px;}
.x26_c00095{left:561.855000px;}
.x32_c00095{left:564.000000px;}
.x74_c00095{left:566.580000px;}
.xb6_c00095{left:569.580000px;}
.xed_c00095{left:571.500000px;}
.x75_c00095{left:576.000000px;}
.xb1_c00095{left:579.420000px;}
.x27_c00095{left:581.580000px;}
.x1a_c00095{left:583.080000px;}
.x4b_c00095{left:585.000000px;}
.xd2_c00095{left:586.920000px;}
.x6c_c00095{left:589.500000px;}
.x63_c00095{left:592.080000px;}
.xe_c00095{left:595.500000px;}
.xd8_c00095{left:597.000000px;}
.xbf_c00095{left:599.775000px;}
.x40_c00095{left:601.500000px;}
.x7a_c00095{left:603.000000px;}
.x33_c00095{left:604.500000px;}
.x80_c00095{left:607.500000px;}
.x5e_c00095{left:609.420000px;}
.x64_c00095{left:613.500000px;}
.xe5_c00095{left:615.000000px;}
.x1b_c00095{left:618.000000px;}
.xcf_c00095{left:619.275000px;}
.x81_c00095{left:621.420000px;}
.x95_c00095{left:623.580000px;}
.x34_c00095{left:625.080000px;}
.x76_c00095{left:627.000000px;}
.x41_c00095{left:633.000000px;}
.x6d_c00095{left:634.920000px;}
.x4c_c00095{left:640.080000px;}
.xb3_c00095{left:645.000000px;}
.xf_c00095{left:646.500000px;}
.x82_c00095{left:648.000000px;}
.x57_c00095{left:649.500000px;}
.x90_c00095{left:655.500000px;}
.xee_c00095{left:657.000000px;}
.xd0_c00095{left:658.080000px;}
.x35_c00095{left:661.500000px;}
.x5f_c00095{left:662.775000px;}
.xc3_c00095{left:664.500000px;}
.x9b_c00095{left:666.000000px;}
.x28_c00095{left:667.500000px;}
.x1c_c00095{left:669.000000px;}
.xf3_c00095{left:670.500000px;}
.xe6_c00095{left:675.000000px;}
.x83_c00095{left:676.920000px;}
.x42_c00095{left:678.420000px;}
.x7b_c00095{left:681.420000px;}
.xef_c00095{left:682.500000px;}
.xd9_c00095{left:684.000000px;}
.xb7_c00095{left:685.500000px;}
.x65_c00095{left:688.500000px;}
.x6e_c00095{left:690.000000px;}
.x4d_c00095{left:691.500000px;}
.x91_c00095{left:694.080000px;}
.x36_c00095{left:697.500000px;}
.xa0_c00095{left:700.500000px;}
.x84_c00095{left:703.080000px;}
.x8b_c00095{left:705.000000px;}
.xb8_c00095{left:708.855000px;}
.x43_c00095{left:709.920000px;}
.x10_c00095{left:712.080000px;}
.xb2_c00095{left:715.500000px;}
.xe7_c00095{left:716.580000px;}
@media print{
.v0_c00095{vertical-align:0.000000pt;}
.ls0_c00095{letter-spacing:0.000000pt;}
.ws0_c00095{word-spacing:-2.821050pt;}
.ws2_c00095{word-spacing:-2.741086pt;}
.ws1_c00095{word-spacing:-0.452160pt;}
.ws3_c00095{word-spacing:0.000000pt;}
.fs8_c00095{font-size:3.040000pt;}
.fs7_c00095{font-size:10.560000pt;}
.fs6_c00095{font-size:16.640000pt;}
.fs1_c00095{font-size:18.133333pt;}
.fs5_c00095{font-size:22.666667pt;}
.fs0_c00095{font-size:25.706667pt;}
.fs3_c00095{font-size:28.746667pt;}
.fs2_c00095{font-size:31.733333pt;}
.fs4_c00095{font-size:34.773333pt;}
.y0_c00095{bottom:0.000000pt;}
.yd9_c00095{bottom:237.693333pt;}
.yda_c00095{bottom:238.440000pt;}
.yd8_c00095{bottom:239.400000pt;}
.yd7_c00095{bottom:240.360000pt;}
.yd5_c00095{bottom:255.026667pt;}
.ycf_c00095{bottom:255.773333pt;}
.yd6_c00095{bottom:255.973333pt;}
.yd2_c00095{bottom:256.160000pt;}
.yd4_c00095{bottom:256.733333pt;}
.yd0_c00095{bottom:257.693333pt;}
.yd3_c00095{bottom:257.893333pt;}
.yd1_c00095{bottom:259.026667pt;}
.ycc_c00095{bottom:272.733333pt;}
.yce_c00095{bottom:273.106667pt;}
.yc8_c00095{bottom:273.893333pt;}
.yc9_c00095{bottom:274.440000pt;}
.yc7_c00095{bottom:275.026667pt;}
.ycd_c00095{bottom:275.226667pt;}
.yca_c00095{bottom:276.360000pt;}
.ycb_c00095{bottom:277.306667pt;}
.yc1_c00095{bottom:290.440000pt;}
.yc5_c00095{bottom:291.773333pt;}
.yc6_c00095{bottom:291.973333pt;}
.yc3_c00095{bottom:292.360000pt;}
.yc2_c00095{bottom:292.560000pt;}
.yc4_c00095{bottom:293.693333pt;}
.yc0_c00095{bottom:309.106667pt;}
.ybd_c00095{bottom:309.693333pt;}
.ybe_c00095{bottom:311.026667pt;}
.ybf_c00095{bottom:311.040000pt;}
.yba_c00095{bottom:326.440000pt;}
.ybb_c00095{bottom:328.360000pt;}
.ybc_c00095{bottom:329.306667pt;}
.yb8_c00095{bottom:342.440000pt;}
.yb6_c00095{bottom:342.640000pt;}
.yb5_c00095{bottom:343.026667pt;}
.yb9_c00095{bottom:344.360000pt;}
.yb1_c00095{bottom:344.733333pt;}
.yb4_c00095{bottom:345.106667pt;}
.yb7_c00095{bottom:345.306667pt;}
.yb2_c00095{bottom:345.693333pt;}
.yb3_c00095{bottom:347.026667pt;}
.yaf_c00095{bottom:361.106667pt;}
.yb0_c00095{bottom:361.693333pt;}
.yae_c00095{bottom:362.440000pt;}
.yab_c00095{bottom:363.026667pt;}
.yac_c00095{bottom:363.040000pt;}
.yad_c00095{bottom:364.360000pt;}
.yaa_c00095{bottom:377.693333pt;}
.ya6_c00095{bottom:378.066667pt;}
.ya8_c00095{bottom:378.440000pt;}
.ya2_c00095{bottom:378.826667pt;}
.ya5_c00095{bottom:379.026667pt;}
.ya9_c00095{bottom:379.400000pt;}
.ya7_c00095{bottom:379.773333pt;}
.ya4_c00095{bottom:380.733333pt;}
.ya3_c00095{bottom:381.706667pt;}
.y9e_c00095{bottom:395.773333pt;}
.y9f_c00095{bottom:397.106667pt;}
.ya1_c00095{bottom:399.026667pt;}
.ya0_c00095{bottom:399.040000pt;}
.y9d_c00095{bottom:415.973333pt;}
.y9b_c00095{bottom:416.360000pt;}
.y9c_c00095{bottom:416.733333pt;}
.y99_c00095{bottom:429.693333pt;}
.y9a_c00095{bottom:430.640000pt;}
.y96_c00095{bottom:448.360000pt;}
.y98_c00095{bottom:448.733333pt;}
.y97_c00095{bottom:449.693333pt;}
.y94_c00095{bottom:471.773333pt;}
.y95_c00095{bottom:472.733333pt;}
.y93_c00095{bottom:503.026667pt;}
.y92_c00095{bottom:503.773333pt;}
.y8f_c00095{bottom:504.733333pt;}
.y91_c00095{bottom:505.693333pt;}
.y90_c00095{bottom:506.640000pt;}
.y8c_c00095{bottom:521.106667pt;}
.y8b_c00095{bottom:521.493333pt;}
.y8e_c00095{bottom:522.066667pt;}
.y88_c00095{bottom:522.440000pt;}
.y89_c00095{bottom:523.026667pt;}
.y8d_c00095{bottom:523.226667pt;}
.y8a_c00095{bottom:524.360000pt;}
.y82_c00095{bottom:537.693333pt;}
.y81_c00095{bottom:538.066667pt;}
.y85_c00095{bottom:538.440000pt;}
.y86_c00095{bottom:539.400000pt;}
.y87_c00095{bottom:539.600000pt;}
.y80_c00095{bottom:539.773333pt;}
.y84_c00095{bottom:540.360000pt;}
.y83_c00095{bottom:540.733333pt;}
.y7f_c00095{bottom:541.693333pt;}
.y7c_c00095{bottom:555.026667pt;}
.y7d_c00095{bottom:555.773333pt;}
.y7e_c00095{bottom:555.973333pt;}
.y7b_c00095{bottom:556.360000pt;}
.y7a_c00095{bottom:557.106667pt;}
.y79_c00095{bottom:559.026667pt;}
.y77_c00095{bottom:572.360000pt;}
.y75_c00095{bottom:573.493333pt;}
.y74_c00095{bottom:574.440000pt;}
.y76_c00095{bottom:575.226667pt;}
.y78_c00095{bottom:575.973333pt;}
.y72_c00095{bottom:576.360000pt;}
.y73_c00095{bottom:577.306667pt;}
.y71_c00095{bottom:589.693333pt;}
.y70_c00095{bottom:591.773333pt;}
.y6d_c00095{bottom:592.560000pt;}
.y6f_c00095{bottom:593.306667pt;}
.y6e_c00095{bottom:593.693333pt;}
.y6b_c00095{bottom:609.106667pt;}
.y6c_c00095{bottom:611.026667pt;}
.y6a_c00095{bottom:624.360000pt;}
.y67_c00095{bottom:625.306667pt;}
.y68_c00095{bottom:626.440000pt;}
.y69_c00095{bottom:627.973333pt;}
.y66_c00095{bottom:628.360000pt;}
.y60_c00095{bottom:643.773333pt;}
.y61_c00095{bottom:644.560000pt;}
.y65_c00095{bottom:644.733333pt;}
.y62_c00095{bottom:645.693333pt;}
.y64_c00095{bottom:645.893333pt;}
.y63_c00095{bottom:646.640000pt;}
.y5c_c00095{bottom:660.360000pt;}
.y5b_c00095{bottom:661.106667pt;}
.y5a_c00095{bottom:663.026667pt;}
.y5e_c00095{bottom:663.226667pt;}
.y5f_c00095{bottom:663.400000pt;}
.y5d_c00095{bottom:664.360000pt;}
.y59_c00095{bottom:677.693333pt;}
.y56_c00095{bottom:679.773333pt;}
.y57_c00095{bottom:681.306667pt;}
.y58_c00095{bottom:681.693333pt;}
.y54_c00095{bottom:696.733333pt;}
.y52_c00095{bottom:697.106667pt;}
.y55_c00095{bottom:698.640000pt;}
.y53_c00095{bottom:699.026667pt;}
.y51_c00095{bottom:712.360000pt;}
.y4f_c00095{bottom:713.106667pt;}
.y4e_c00095{bottom:715.226667pt;}
.y50_c00095{bottom:715.973333pt;}
.y4d_c00095{bottom:716.360000pt;}
.y4c_c00095{bottom:717.306667pt;}
.y48_c00095{bottom:731.773333pt;}
.y4b_c00095{bottom:732.733333pt;}
.y4a_c00095{bottom:733.306667pt;}
.y46_c00095{bottom:733.693333pt;}
.y47_c00095{bottom:733.706667pt;}
.y49_c00095{bottom:733.893333pt;}
.y45_c00095{bottom:746.466667pt;}
.y43_c00095{bottom:748.360000pt;}
.y41_c00095{bottom:749.106667pt;}
.y42_c00095{bottom:750.066667pt;}
.y3f_c00095{bottom:751.026667pt;}
.y40_c00095{bottom:751.226667pt;}
.y44_c00095{bottom:753.893333pt;}
.y3d_c00095{bottom:766.440000pt;}
.y3e_c00095{bottom:767.226667pt;}
.y3c_c00095{bottom:767.400000pt;}
.y3b_c00095{bottom:768.360000pt;}
.y39_c00095{bottom:782.066667pt;}
.y38_c00095{bottom:783.773333pt;}
.y3a_c00095{bottom:785.693333pt;}
.y37_c00095{bottom:801.106667pt;}
.y34_c00095{bottom:801.493333pt;}
.y35_c00095{bottom:802.440000pt;}
.y36_c00095{bottom:803.400000pt;}
.y33_c00095{bottom:804.360000pt;}
.y30_c00095{bottom:817.693333pt;}
.y32_c00095{bottom:818.440000pt;}
.y2e_c00095{bottom:819.773333pt;}
.y2f_c00095{bottom:820.560000pt;}
.y31_c00095{bottom:821.306667pt;}
.y2d_c00095{bottom:821.693333pt;}
.y2c_c00095{bottom:839.026667pt;}
.y29_c00095{bottom:853.306667pt;}
.y2a_c00095{bottom:854.440000pt;}
.y2b_c00095{bottom:855.026667pt;}
.y28_c00095{bottom:855.600000pt;}
.y27_c00095{bottom:856.360000pt;}
.y1d_c00095{bottom:870.066667pt;}
.y23_c00095{bottom:870.640000pt;}
.y20_c00095{bottom:871.026667pt;}
.y1e_c00095{bottom:871.773333pt;}
.y26_c00095{bottom:872.360000pt;}
.y24_c00095{bottom:872.560000pt;}
.y1f_c00095{bottom:872.733333pt;}
.y25_c00095{bottom:873.306667pt;}
.y22_c00095{bottom:873.693333pt;}
.y21_c00095{bottom:874.640000pt;}
.y15_c00095{bottom:887.026667pt;}
.y1c_c00095{bottom:888.160000pt;}
.y19_c00095{bottom:888.733333pt;}
.y16_c00095{bottom:889.106667pt;}
.y1a_c00095{bottom:889.306667pt;}
.y18_c00095{bottom:889.893333pt;}
.y1b_c00095{bottom:890.066667pt;}
.y17_c00095{bottom:891.026667pt;}
.y14_c00095{bottom:905.106667pt;}
.y11_c00095{bottom:905.693333pt;}
.ye_c00095{bottom:906.266667pt;}
.yf_c00095{bottom:906.440000pt;}
.y13_c00095{bottom:907.026667pt;}
.y12_c00095{bottom:907.600000pt;}
.y10_c00095{bottom:908.360000pt;}
.y9_c00095{bottom:922.066667pt;}
.ya_c00095{bottom:922.826667pt;}
.yb_c00095{bottom:923.026667pt;}
.y7_c00095{bottom:923.773333pt;}
.yc_c00095{bottom:924.160000pt;}
.y8_c00095{bottom:925.693333pt;}
.yd_c00095{bottom:926.640000pt;}
.y6_c00095{bottom:939.026667pt;}
.y5_c00095{bottom:940.360000pt;}
.y3_c00095{bottom:941.106667pt;}
.y4_c00095{bottom:943.026667pt;}
.y2_c00095{bottom:976.933333pt;}
.y1_c00095{bottom:977.693333pt;}
.h9_c00095{height:3.739141pt;}
.h8_c00095{height:12.988594pt;}
.h7_c00095{height:20.466875pt;}
.h2_c00095{height:22.303646pt;}
.h6_c00095{height:27.879557pt;}
.h1_c00095{height:31.618698pt;}
.h4_c00095{height:35.357839pt;}
.h3_c00095{height:39.031380pt;}
.h5_c00095{height:42.770521pt;}
.h0_c00095{height:1186.666667pt;}
.w0_c00095{width:782.666667pt;}
.x0_c00095{left:0.000000pt;}
.x1_c00095{left:132.960000pt;}
.x3_c00095{left:134.293333pt;}
.x1d_c00095{left:135.426667pt;}
.x29_c00095{left:146.293333pt;}
.x4e_c00095{left:148.000000pt;}
.x9c_c00095{left:149.333333pt;}
.xb4_c00095{left:151.040000pt;}
.x1e_c00095{left:152.960000pt;}
.x9d_c00095{left:163.040000pt;}
.x37_c00095{left:164.960000pt;}
.x11_c00095{left:167.040000pt;}
.x4_c00095{left:168.373333pt;}
.xd3_c00095{left:172.960000pt;}
.x6f_c00095{left:174.666667pt;}
.x44_c00095{left:176.373333pt;}
.x4f_c00095{left:177.706667pt;}
.xe8_c00095{left:178.666667pt;}
.xe0_c00095{left:180.000000pt;}
.x2a_c00095{left:181.706667pt;}
.x60_c00095{left:183.040000pt;}
.xc5_c00095{left:184.373333pt;}
.x1f_c00095{left:185.706667pt;}
.x66_c00095{left:186.666667pt;}
.x45_c00095{left:189.333333pt;}
.x58_c00095{left:190.293333pt;}
.x96_c00095{left:194.293333pt;}
.x85_c00095{left:195.626667pt;}
.xe9_c00095{left:197.706667pt;}
.x38_c00095{left:198.666667pt;}
.xa6_c00095{left:201.333333pt;}
.xe1_c00095{left:203.040000pt;}
.x8c_c00095{left:204.960000pt;}
.xc4_c00095{left:208.000000pt;}
.x12_c00095{left:208.960000pt;}
.x5_c00095{left:210.293333pt;}
.xc1_c00095{left:212.000000pt;}
.x86_c00095{left:213.706667pt;}
.x70_c00095{left:216.000000pt;}
.xa1_c00095{left:219.040000pt;}
.xaa_c00095{left:220.000000pt;}
.xea_c00095{left:220.960000pt;}
.x7c_c00095{left:222.666667pt;}
.x13_c00095{left:224.373333pt;}
.x6_c00095{left:227.040000pt;}
.x92_c00095{left:228.373333pt;}
.xc8_c00095{left:229.333333pt;}
.xbb_c00095{left:230.293333pt;}
.x59_c00095{left:232.000000pt;}
.xd4_c00095{left:232.960000pt;}
.x9e_c00095{left:235.040000pt;}
.xda_c00095{left:236.000000pt;}
.xc6_c00095{left:237.333333pt;}
.x50_c00095{left:238.666667pt;}
.x2b_c00095{left:240.000000pt;}
.xab_c00095{left:240.960000pt;}
.x67_c00095{left:242.666667pt;}
.x20_c00095{left:244.373333pt;}
.xc9_c00095{left:248.000000pt;}
.xd1_c00095{left:249.333333pt;}
.x46_c00095{left:252.000000pt;}
.xc7_c00095{left:256.000000pt;}
.xbc_c00095{left:258.666667pt;}
.xd5_c00095{left:260.373333pt;}
.x7_c00095{left:261.333333pt;}
.x39_c00095{left:263.626667pt;}
.x14_c00095{left:266.666667pt;}
.x5a_c00095{left:268.000000pt;}
.xc2_c00095{left:270.666667pt;}
.x21_c00095{left:274.666667pt;}
.xb9_c00095{left:277.333333pt;}
.x97_c00095{left:280.000000pt;}
.x68_c00095{left:281.333333pt;}
.xd6_c00095{left:282.666667pt;}
.x61_c00095{left:284.000000pt;}
.xb5_c00095{left:284.960000pt;}
.x51_c00095{left:286.666667pt;}
.xeb_c00095{left:288.573333pt;}
.xa2_c00095{left:289.706667pt;}
.xc0_c00095{left:290.666667pt;}
.x87_c00095{left:293.333333pt;}
.x2c_c00095{left:295.040000pt;}
.x3a_c00095{left:297.706667pt;}
.x77_c00095{left:299.626667pt;}
.x7d_c00095{left:302.666667pt;}
.x8d_c00095{left:304.000000pt;}
.x5b_c00095{left:305.706667pt;}
.xca_c00095{left:307.040000pt;}
.xe2_c00095{left:308.000000pt;}
.x47_c00095{left:310.666667pt;}
.x71_c00095{left:317.333333pt;}
.xa7_c00095{left:319.040000pt;}
.xdd_c00095{left:324.960000pt;}
.xac_c00095{left:327.040000pt;}
.x52_c00095{left:330.293333pt;}
.x88_c00095{left:332.373333pt;}
.x8e_c00095{left:334.666667pt;}
.xd7_c00095{left:335.626667pt;}
.xdb_c00095{left:337.333333pt;}
.x8_c00095{left:338.666667pt;}
.xba_c00095{left:339.626667pt;}
.x3b_c00095{left:340.960000pt;}
.x15_c00095{left:342.666667pt;}
.xcb_c00095{left:344.000000pt;}
.x2d_c00095{left:347.040000pt;}
.x22_c00095{left:348.960000pt;}
.xad_c00095{left:351.626667pt;}
.x2_c00095{left:353.333333pt;}
.x69_c00095{left:354.666667pt;}
.x7e_c00095{left:355.626667pt;}
.x9_c00095{left:356.960000pt;}
.x98_c00095{left:360.960000pt;}
.xa3_c00095{left:362.666667pt;}
.x2e_c00095{left:364.960000pt;}
.x89_c00095{left:367.040000pt;}
.x72_c00095{left:368.000000pt;}
.xde_c00095{left:369.706667pt;}
.x16_c00095{left:371.626667pt;}
.xbd_c00095{left:374.293333pt;}
.xcc_c00095{left:376.000000pt;}
.x48_c00095{left:378.666667pt;}
.x23_c00095{left:379.626667pt;}
.xae_c00095{left:381.333333pt;}
.x3c_c00095{left:383.040000pt;}
.xbe_c00095{left:385.706667pt;}
.x93_c00095{left:389.333333pt;}
.xa_c00095{left:391.040000pt;}
.x99_c00095{left:392.000000pt;}
.xdf_c00095{left:396.000000pt;}
.x9f_c00095{left:396.960000pt;}
.xe3_c00095{left:398.666667pt;}
.x17_c00095{left:403.040000pt;}
.xf0_c00095{left:404.373333pt;}
.x5c_c00095{left:406.466667pt;}
.x2f_c00095{left:408.000000pt;}
.x53_c00095{left:408.960000pt;}
.xa4_c00095{left:410.293333pt;}
.x24_c00095{left:412.373333pt;}
.x3d_c00095{left:416.960000pt;}
.xe4_c00095{left:418.666667pt;}
.xb_c00095{left:420.000000pt;}
.xa8_c00095{left:421.333333pt;}
.x54_c00095{left:425.706667pt;}
.x49_c00095{left:428.373333pt;}
.x9a_c00095{left:430.666667pt;}
.x18_c00095{left:432.000000pt;}
.x8a_c00095{left:433.333333pt;}
.x6a_c00095{left:434.666667pt;}
.x7f_c00095{left:435.626667pt;}
.xaf_c00095{left:437.333333pt;}
.xf1_c00095{left:440.000000pt;}
.x25_c00095{left:441.333333pt;}
.x94_c00095{left:444.000000pt;}
.x8f_c00095{left:445.706667pt;}
.x55_c00095{left:450.666667pt;}
.x30_c00095{left:452.960000pt;}
.x3e_c00095{left:455.040000pt;}
.xec_c00095{left:457.333333pt;}
.x5d_c00095{left:458.666667pt;}
.xdc_c00095{left:460.573333pt;}
.x4a_c00095{left:464.373333pt;}
.x31_c00095{left:466.293333pt;}
.x78_c00095{left:467.626667pt;}
.xcd_c00095{left:468.960000pt;}
.x62_c00095{left:471.626667pt;}
.x3f_c00095{left:474.293333pt;}
.x73_c00095{left:476.373333pt;}
.xc_c00095{left:479.040000pt;}
.xa5_c00095{left:481.333333pt;}
.x6b_c00095{left:484.000000pt;}
.x56_c00095{left:485.333333pt;}
.xf2_c00095{left:486.293333pt;}
.x79_c00095{left:487.626667pt;}
.x19_c00095{left:489.706667pt;}
.xb0_c00095{left:492.000000pt;}
.xa9_c00095{left:493.333333pt;}
.xce_c00095{left:494.666667pt;}
.xd_c00095{left:496.960000pt;}
.x26_c00095{left:499.426667pt;}
.x32_c00095{left:501.333333pt;}
.x74_c00095{left:503.626667pt;}
.xb6_c00095{left:506.293333pt;}
.xed_c00095{left:508.000000pt;}
.x75_c00095{left:512.000000pt;}
.xb1_c00095{left:515.040000pt;}
.x27_c00095{left:516.960000pt;}
.x1a_c00095{left:518.293333pt;}
.x4b_c00095{left:520.000000pt;}
.xd2_c00095{left:521.706667pt;}
.x6c_c00095{left:524.000000pt;}
.x63_c00095{left:526.293333pt;}
.xe_c00095{left:529.333333pt;}
.xd8_c00095{left:530.666667pt;}
.xbf_c00095{left:533.133333pt;}
.x40_c00095{left:534.666667pt;}
.x7a_c00095{left:536.000000pt;}
.x33_c00095{left:537.333333pt;}
.x80_c00095{left:540.000000pt;}
.x5e_c00095{left:541.706667pt;}
.x64_c00095{left:545.333333pt;}
.xe5_c00095{left:546.666667pt;}
.x1b_c00095{left:549.333333pt;}
.xcf_c00095{left:550.466667pt;}
.x81_c00095{left:552.373333pt;}
.x95_c00095{left:554.293333pt;}
.x34_c00095{left:555.626667pt;}
.x76_c00095{left:557.333333pt;}
.x41_c00095{left:562.666667pt;}
.x6d_c00095{left:564.373333pt;}
.x4c_c00095{left:568.960000pt;}
.xb3_c00095{left:573.333333pt;}
.xf_c00095{left:574.666667pt;}
.x82_c00095{left:576.000000pt;}
.x57_c00095{left:577.333333pt;}
.x90_c00095{left:582.666667pt;}
.xee_c00095{left:584.000000pt;}
.xd0_c00095{left:584.960000pt;}
.x35_c00095{left:588.000000pt;}
.x5f_c00095{left:589.133333pt;}
.xc3_c00095{left:590.666667pt;}
.x9b_c00095{left:592.000000pt;}
.x28_c00095{left:593.333333pt;}
.x1c_c00095{left:594.666667pt;}
.xf3_c00095{left:596.000000pt;}
.xe6_c00095{left:600.000000pt;}
.x83_c00095{left:601.706667pt;}
.x42_c00095{left:603.040000pt;}
.x7b_c00095{left:605.706667pt;}
.xef_c00095{left:606.666667pt;}
.xd9_c00095{left:608.000000pt;}
.xb7_c00095{left:609.333333pt;}
.x65_c00095{left:612.000000pt;}
.x6e_c00095{left:613.333333pt;}
.x4d_c00095{left:614.666667pt;}
.x91_c00095{left:616.960000pt;}
.x36_c00095{left:620.000000pt;}
.xa0_c00095{left:622.666667pt;}
.x84_c00095{left:624.960000pt;}
.x8b_c00095{left:626.666667pt;}
.xb8_c00095{left:630.093333pt;}
.x43_c00095{left:631.040000pt;}
.x10_c00095{left:632.960000pt;}
.xb2_c00095{left:636.000000pt;}
.xe7_c00095{left:636.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_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_71d5a35e107713a0d1d1e6c8.woff2')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:1.688965;font-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_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);}
.m8b_c00096{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.mf_c00096{transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);}
.mae_c00096{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m23_c00096{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);}
.mc2_c00096{transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);}
.m0_c00096{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.mda_c00096{transform:matrix(0.366181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366181,0.000000,0.000000,0.250000,0,0);}
.mb_c00096{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m24_c00096{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m8f_c00096{transform:matrix(0.372699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372699,0.000000,0.000000,0.250000,0,0);}
.m19_c00096{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.md9_c00096{transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);}
.mb0_c00096{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mcc_c00096{transform:matrix(0.384045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384045,0.000000,0.000000,0.250000,0,0);}
.ma8_c00096{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.mb5_c00096{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.ma2_c00096{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mc9_c00096{transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);}
.mdc_c00096{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.md2_c00096{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.mc6_c00096{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m38_c00096{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.mc7_c00096{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m25_c00096{transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);}
.m4a_c00096{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m65_c00096{transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);}
.m4f_c00096{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m2c_c00096{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.ma6_c00096{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m9d_c00096{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m54_c00096{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.me1_c00096{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mad_c00096{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m6d_c00096{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m28_c00096{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m1a_c00096{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.mc8_c00096{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m48_c00096{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m2_c00096{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m96_c00096{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.md8_c00096{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m1e_c00096{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m98_c00096{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m6c_c00096{transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);}
.m7e_c00096{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.maf_c00096{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m46_c00096{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mbb_c00096{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m15_c00096{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m8c_c00096{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.mc5_c00096{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.m32_c00096{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m9e_c00096{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m51_c00096{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m7c_c00096{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.m93_c00096{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m49_c00096{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m76_c00096{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m71_c00096{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m56_c00096{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m5a_c00096{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m2d_c00096{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.mdb_c00096{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m88_c00096{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m34_c00096{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m47_c00096{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.mde_c00096{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m2e_c00096{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m67_c00096{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m50_c00096{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.ma_c00096{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m6_c00096{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.mb8_c00096{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m94_c00096{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.m4c_c00096{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m18_c00096{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m6e_c00096{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m1b_c00096{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.mdd_c00096{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m7f_c00096{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.md7_c00096{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m45_c00096{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.mbe_c00096{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m26_c00096{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.me_c00096{transform:matrix(0.457563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457563,0.000000,0.000000,0.250000,0,0);}
.m5d_c00096{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m8e_c00096{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m42_c00096{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m57_c00096{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.mdf_c00096{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.md_c00096{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.mbf_c00096{transform:matrix(0.469748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469748,0.000000,0.000000,0.250000,0,0);}
.m81_c00096{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m90_c00096{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m5b_c00096{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.m21_c00096{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m97_c00096{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m8a_c00096{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m20_c00096{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mc3_c00096{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m3c_c00096{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mbc_c00096{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m9f_c00096{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.md5_c00096{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m36_c00096{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m2a_c00096{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m3b_c00096{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m91_c00096{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mcb_c00096{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.mce_c00096{transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);}
.m89_c00096{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m31_c00096{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);}
.maa_c00096{transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);}
.m66_c00096{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.ma4_c00096{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m59_c00096{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m79_c00096{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m7_c00096{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m75_c00096{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.mbd_c00096{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.md4_c00096{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m68_c00096{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m8d_c00096{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m83_c00096{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m12_c00096{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m55_c00096{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m22_c00096{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m1f_c00096{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m9c_c00096{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m72_c00096{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m7d_c00096{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m69_c00096{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m61_c00096{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.ma9_c00096{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.ma3_c00096{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.me2_c00096{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m9b_c00096{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mb2_c00096{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m85_c00096{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m14_c00096{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m80_c00096{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m9_c00096{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m58_c00096{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mb6_c00096{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m4_c00096{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mb7_c00096{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m78_c00096{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m7b_c00096{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m3a_c00096{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.md3_c00096{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m2f_c00096{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m37_c00096{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m44_c00096{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.ma7_c00096{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mb1_c00096{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.ma5_c00096{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m60_c00096{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mba_c00096{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m6a_c00096{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m92_c00096{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m6f_c00096{transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);}
.m86_c00096{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m4d_c00096{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m5e_c00096{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m29_c00096{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m43_c00096{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m30_c00096{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.me3_c00096{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m77_c00096{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m17_c00096{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m41_c00096{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m3f_c00096{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m82_c00096{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m87_c00096{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mab_c00096{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.m3e_c00096{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m70_c00096{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m27_c00096{transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);}
.mcd_c00096{transform:matrix(0.570588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570588,0.000000,0.000000,0.250000,0,0);}
.m8_c00096{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m7a_c00096{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.mc4_c00096{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m64_c00096{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m62_c00096{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.ma0_c00096{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m9a_c00096{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m95_c00096{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.mb3_c00096{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m74_c00096{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m40_c00096{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m4e_c00096{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.ma1_c00096{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m2b_c00096{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m5_c00096{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m1d_c00096{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m33_c00096{transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);}
.m84_c00096{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.mca_c00096{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);}
.m39_c00096{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m35_c00096{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m63_c00096{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.mc0_c00096{transform:matrix(0.651452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651452,0.000000,0.000000,0.250000,0,0);}
.mac_c00096{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m1_c00096{transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);}
.m53_c00096{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m1c_c00096{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m5c_c00096{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m10_c00096{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m13_c00096{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.md0_c00096{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m11_c00096{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.md6_c00096{transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);}
.m3d_c00096{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m99_c00096{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m5f_c00096{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mb4_c00096{transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);}
.m52_c00096{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m16_c00096{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.me0_c00096{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.mc_c00096{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mc1_c00096{transform:matrix(0.771765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.771765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.771765,0.000000,0.000000,0.250000,0,0);}
.m4b_c00096{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.md1_c00096{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m73_c00096{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m6b_c00096{transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);}
.mb9_c00096{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.mcf_c00096{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws1_c00096{word-spacing:-6.184625px;}
.ws0_c00096{word-spacing:-4.814632px;}
.ws2_c00096{word-spacing:0.000000px;}
.fc0_c00096{color:transparent;}
.fs7_c00096{font-size:3.420000px;}
.fs1_c00096{font-size:18.720000px;}
.fs8_c00096{font-size:20.400000px;}
.fs2_c00096{font-size:22.140000px;}
.fs4_c00096{font-size:25.500000px;}
.fs3_c00096{font-size:28.920000px;}
.fs5_c00096{font-size:32.340000px;}
.fs0_c00096{font-size:35.700000px;}
.fs6_c00096{font-size:39.120000px;}
.y0_c00096{bottom:0.000000px;}
.yd9_c00096{bottom:251.745000px;}
.yd7_c00096{bottom:252.630000px;}
.yda_c00096{bottom:253.905000px;}
.yd8_c00096{bottom:253.920000px;}
.yd6_c00096{bottom:254.325000px;}
.yd4_c00096{bottom:269.325000px;}
.yd3_c00096{bottom:271.245000px;}
.yd0_c00096{bottom:271.680000px;}
.yd2_c00096{bottom:272.325000px;}
.yd5_c00096{bottom:272.745000px;}
.yd1_c00096{bottom:274.920000px;}
.ycd_c00096{bottom:290.745000px;}
.ycf_c00096{bottom:292.245000px;}
.yce_c00096{bottom:292.905000px;}
.ycb_c00096{bottom:293.550000px;}
.ycc_c00096{bottom:294.405000px;}
.yc8_c00096{bottom:310.245000px;}
.yc7_c00096{bottom:311.745000px;}
.yca_c00096{bottom:312.630000px;}
.yc9_c00096{bottom:313.905000px;}
.yc5_c00096{bottom:329.745000px;}
.yc1_c00096{bottom:331.245000px;}
.yc4_c00096{bottom:332.130000px;}
.yc3_c00096{bottom:333.405000px;}
.yc2_c00096{bottom:333.420000px;}
.yc6_c00096{bottom:333.630000px;}
.yc0_c00096{bottom:352.470000px;}
.ybc_c00096{bottom:353.325000px;}
.ybf_c00096{bottom:353.970000px;}
.ybe_c00096{bottom:354.405000px;}
.ybd_c00096{bottom:355.470000px;}
.yb9_c00096{bottom:378.825000px;}
.yb8_c00096{bottom:379.050000px;}
.yb7_c00096{bottom:379.905000px;}
.yba_c00096{bottom:380.325000px;}
.ybb_c00096{bottom:382.050000px;}
.yb4_c00096{bottom:401.745000px;}
.yb5_c00096{bottom:403.905000px;}
.yb6_c00096{bottom:404.970000px;}
.yb3_c00096{bottom:445.245000px;}
.yb2_c00096{bottom:445.905000px;}
.yb1_c00096{bottom:446.745000px;}
.yb0_c00096{bottom:448.905000px;}
.yac_c00096{bottom:464.745000px;}
.yad_c00096{bottom:465.825000px;}
.yaf_c00096{bottom:466.245000px;}
.yaa_c00096{bottom:466.905000px;}
.yae_c00096{bottom:468.405000px;}
.yab_c00096{bottom:468.420000px;}
.ya9_c00096{bottom:487.905000px;}
.ya8_c00096{bottom:489.405000px;}
.ya7_c00096{bottom:505.245000px;}
.ya6_c00096{bottom:506.130000px;}
.ya5_c00096{bottom:506.970000px;}
.ya4_c00096{bottom:507.405000px;}
.ya2_c00096{bottom:523.905000px;}
.y9f_c00096{bottom:524.745000px;}
.ya1_c00096{bottom:525.825000px;}
.ya3_c00096{bottom:526.245000px;}
.y9e_c00096{bottom:526.470000px;}
.ya0_c00096{bottom:526.905000px;}
.y9d_c00096{bottom:527.130000px;}
.y9c_c00096{bottom:528.405000px;}
.y98_c00096{bottom:544.245000px;}
.y9b_c00096{bottom:545.745000px;}
.y97_c00096{bottom:546.405000px;}
.y9a_c00096{bottom:546.630000px;}
.y99_c00096{bottom:547.470000px;}
.y96_c00096{bottom:547.905000px;}
.y92_c00096{bottom:563.745000px;}
.y93_c00096{bottom:565.245000px;}
.y90_c00096{bottom:565.905000px;}
.y91_c00096{bottom:566.130000px;}
.y95_c00096{bottom:566.970000px;}
.y94_c00096{bottom:567.405000px;}
.y8f_c00096{bottom:584.745000px;}
.y8e_c00096{bottom:585.405000px;}
.y8d_c00096{bottom:586.905000px;}
.y8b_c00096{bottom:601.905000px;}
.y8c_c00096{bottom:604.245000px;}
.y8a_c00096{bottom:605.970000px;}
.y89_c00096{bottom:606.405000px;}
.y87_c00096{bottom:622.905000px;}
.y86_c00096{bottom:623.745000px;}
.y84_c00096{bottom:624.630000px;}
.y85_c00096{bottom:624.825000px;}
.y83_c00096{bottom:625.905000px;}
.y88_c00096{bottom:626.970000px;}
.y7e_c00096{bottom:642.405000px;}
.y81_c00096{bottom:643.245000px;}
.y7f_c00096{bottom:644.130000px;}
.y80_c00096{bottom:644.325000px;}
.y7d_c00096{bottom:645.405000px;}
.y82_c00096{bottom:645.825000px;}
.y76_c00096{bottom:662.745000px;}
.y7a_c00096{bottom:663.180000px;}
.y77_c00096{bottom:663.825000px;}
.y7b_c00096{bottom:664.245000px;}
.y75_c00096{bottom:664.905000px;}
.y79_c00096{bottom:665.325000px;}
.y78_c00096{bottom:666.405000px;}
.y7c_c00096{bottom:666.630000px;}
.y74_c00096{bottom:684.630000px;}
.y73_c00096{bottom:685.905000px;}
.y6f_c00096{bottom:704.130000px;}
.y72_c00096{bottom:704.325000px;}
.y71_c00096{bottom:704.970000px;}
.y70_c00096{bottom:705.405000px;}
.y6e_c00096{bottom:722.325000px;}
.y6d_c00096{bottom:722.745000px;}
.y6c_c00096{bottom:723.825000px;}
.y6b_c00096{bottom:724.905000px;}
.y68_c00096{bottom:744.405000px;}
.y69_c00096{bottom:745.470000px;}
.y6a_c00096{bottom:745.905000px;}
.y62_c00096{bottom:760.905000px;}
.y65_c00096{bottom:761.325000px;}
.y61_c00096{bottom:761.745000px;}
.y66_c00096{bottom:763.245000px;}
.y64_c00096{bottom:763.470000px;}
.y60_c00096{bottom:763.905000px;}
.y63_c00096{bottom:764.130000px;}
.y67_c00096{bottom:765.405000px;}
.y5e_c00096{bottom:781.245000px;}
.y59_c00096{bottom:782.130000px;}
.y5b_c00096{bottom:782.325000px;}
.y5a_c00096{bottom:783.405000px;}
.y5d_c00096{bottom:783.630000px;}
.y5c_c00096{bottom:784.470000px;}
.y5f_c00096{bottom:784.905000px;}
.y54_c00096{bottom:800.745000px;}
.y51_c00096{bottom:801.825000px;}
.y56_c00096{bottom:802.245000px;}
.y52_c00096{bottom:802.905000px;}
.y53_c00096{bottom:803.130000px;}
.y58_c00096{bottom:803.325000px;}
.y55_c00096{bottom:803.970000px;}
.y57_c00096{bottom:804.405000px;}
.y4f_c00096{bottom:819.405000px;}
.y4e_c00096{bottom:822.405000px;}
.y4d_c00096{bottom:822.630000px;}
.y50_c00096{bottom:823.470000px;}
.y4c_c00096{bottom:823.905000px;}
.y46_c00096{bottom:838.905000px;}
.y47_c00096{bottom:839.970000px;}
.y48_c00096{bottom:840.825000px;}
.y49_c00096{bottom:841.245000px;}
.y44_c00096{bottom:841.905000px;}
.y4a_c00096{bottom:842.130000px;}
.y45_c00096{bottom:842.970000px;}
.y4b_c00096{bottom:843.405000px;}
.y40_c00096{bottom:858.405000px;}
.y41_c00096{bottom:860.745000px;}
.y3e_c00096{bottom:861.630000px;}
.y3f_c00096{bottom:862.905000px;}
.y42_c00096{bottom:863.970000px;}
.y43_c00096{bottom:864.405000px;}
.y39_c00096{bottom:878.745000px;}
.y3b_c00096{bottom:879.825000px;}
.y38_c00096{bottom:880.245000px;}
.y37_c00096{bottom:881.130000px;}
.y3d_c00096{bottom:881.325000px;}
.y36_c00096{bottom:882.405000px;}
.y3c_c00096{bottom:882.630000px;}
.y3a_c00096{bottom:883.470000px;}
.y33_c00096{bottom:899.745000px;}
.y34_c00096{bottom:900.825000px;}
.y31_c00096{bottom:901.905000px;}
.y32_c00096{bottom:902.130000px;}
.y35_c00096{bottom:903.405000px;}
.y2a_c00096{bottom:918.405000px;}
.y2b_c00096{bottom:919.245000px;}
.y2f_c00096{bottom:919.905000px;}
.y2c_c00096{bottom:920.970000px;}
.y2e_c00096{bottom:921.405000px;}
.y2d_c00096{bottom:921.630000px;}
.y30_c00096{bottom:922.905000px;}
.y26_c00096{bottom:938.745000px;}
.y24_c00096{bottom:939.825000px;}
.y29_c00096{bottom:940.245000px;}
.y25_c00096{bottom:940.905000px;}
.y27_c00096{bottom:941.970000px;}
.y28_c00096{bottom:942.405000px;}
.y1f_c00096{bottom:957.405000px;}
.y20_c00096{bottom:958.470000px;}
.y23_c00096{bottom:959.745000px;}
.y21_c00096{bottom:960.630000px;}
.y1e_c00096{bottom:961.470000px;}
.y22_c00096{bottom:961.905000px;}
.y1d_c00096{bottom:977.970000px;}
.y1b_c00096{bottom:978.405000px;}
.y18_c00096{bottom:979.245000px;}
.y1c_c00096{bottom:980.970000px;}
.y19_c00096{bottom:981.405000px;}
.y1a_c00096{bottom:982.470000px;}
.y14_c00096{bottom:998.745000px;}
.y15_c00096{bottom:999.630000px;}
.y17_c00096{bottom:1000.470000px;}
.y16_c00096{bottom:1000.905000px;}
.yf_c00096{bottom:1016.745000px;}
.y11_c00096{bottom:1018.245000px;}
.y13_c00096{bottom:1019.325000px;}
.y12_c00096{bottom:1020.405000px;}
.y10_c00096{bottom:1021.470000px;}
.yb_c00096{bottom:1036.680000px;}
.ya_c00096{bottom:1037.745000px;}
.yd_c00096{bottom:1038.630000px;}
.ye_c00096{bottom:1038.825000px;}
.yc_c00096{bottom:1039.905000px;}
.y7_c00096{bottom:1056.825000px;}
.y3_c00096{bottom:1057.245000px;}
.y6_c00096{bottom:1058.970000px;}
.y5_c00096{bottom:1059.405000px;}
.y8_c00096{bottom:1059.630000px;}
.y9_c00096{bottom:1060.905000px;}
.y4_c00096{bottom:1061.775000px;}
.y1_c00096{bottom:1097.745000px;}
.y2_c00096{bottom:1098.630000px;}
.h8_c00096{height:4.206533px;}
.h2_c00096{height:23.025234px;}
.h9_c00096{height:25.091602px;}
.h3_c00096{height:27.231768px;}
.h5_c00096{height:31.364502px;}
.h4_c00096{height:35.571035px;}
.h6_c00096{height:39.777568px;}
.h1_c00096{height:43.910303px;}
.h7_c00096{height:48.116836px;}
.h0_c00096{height:1335.000000px;}
.w0_c00096{width:880.500000px;}
.x0_c00096{left:0.000000px;}
.x10_c00096{left:151.920000px;}
.x5a_c00096{left:153.420000px;}
.xa2_c00096{left:154.500000px;}
.xed_c00096{left:156.420000px;}
.x100_c00096{left:157.500000px;}
.x3_c00096{left:167.580000px;}
.xcd_c00096{left:169.080000px;}
.x45_c00096{left:171.000000px;}
.x5b_c00096{left:172.500000px;}
.xfb_c00096{left:174.000000px;}
.x2c_c00096{left:175.500000px;}
.xc3_c00096{left:180.000000px;}
.xc9_c00096{left:181.500000px;}
.x67_c00096{left:183.420000px;}
.x11_c00096{left:185.580000px;}
.x2d_c00096{left:189.000000px;}
.x46_c00096{left:192.000000px;}
.x98_c00096{left:194.580000px;}
.xee_c00096{left:196.080000px;}
.xd9_c00096{left:199.920000px;}
.x80_c00096{left:201.000000px;}
.xf8_c00096{left:202.080000px;}
.x1f_c00096{left:204.000000px;}
.x12_c00096{left:210.420000px;}
.x101_c00096{left:212.580000px;}
.x71_c00096{left:214.080000px;}
.x109_c00096{left:216.420000px;}
.xf4_c00096{left:217.500000px;}
.xfc_c00096{left:218.580000px;}
.xa9_c00096{left:220.500000px;}
.xe4_c00096{left:221.580000px;}
.x38_c00096{left:223.080000px;}
.x68_c00096{left:225.000000px;}
.x99_c00096{left:226.500000px;}
.x20_c00096{left:229.500000px;}
.x103_c00096{left:231.000000px;}
.x2e_c00096{left:232.080000px;}
.x8b_c00096{left:237.000000px;}
.x13_c00096{left:238.500000px;}
.x39_c00096{left:241.500000px;}
.x69_c00096{left:243.420000px;}
.x81_c00096{left:245.580000px;}
.x7a_c00096{left:249.000000px;}
.xd3_c00096{left:250.920000px;}
.x5c_c00096{left:252.000000px;}
.x4_c00096{left:255.000000px;}
.x10d_c00096{left:257.355000px;}
.x8c_c00096{left:258.420000px;}
.xda_c00096{left:259.500000px;}
.x2f_c00096{left:262.500000px;}
.xf9_c00096{left:263.580000px;}
.x110_c00096{left:265.500000px;}
.x21_c00096{left:267.000000px;}
.xe5_c00096{left:270.000000px;}
.x14_c00096{left:271.500000px;}
.x5_c00096{left:274.500000px;}
.x9a_c00096{left:276.000000px;}
.x6a_c00096{left:277.500000px;}
.xe9_c00096{left:279.000000px;}
.x72_c00096{left:280.920000px;}
.x8d_c00096{left:283.500000px;}
.x102_c00096{left:285.000000px;}
.x7b_c00096{left:286.080000px;}
.xaa_c00096{left:288.420000px;}
.x105_c00096{left:289.500000px;}
.x30_c00096{left:291.000000px;}
.x52_c00096{left:294.420000px;}
.x6b_c00096{left:295.920000px;}
.xdb_c00096{left:297.000000px;}
.xef_c00096{left:298.080000px;}
.x15_c00096{left:300.000000px;}
.x3a_c00096{left:301.920000px;}
.x8e_c00096{left:303.000000px;}
.x7c_c00096{left:304.920000px;}
.x6_c00096{left:307.500000px;}
.x47_c00096{left:312.000000px;}
.x73_c00096{left:316.920000px;}
.x107_c00096{left:318.645000px;}
.xd4_c00096{left:320.580000px;}
.x31_c00096{left:322.920000px;}
.xde_c00096{left:324.000000px;}
.xce_c00096{left:325.500000px;}
.xab_c00096{left:326.580000px;}
.x113_c00096{left:328.080000px;}
.xf5_c00096{left:330.000000px;}
.x10b_c00096{left:331.500000px;}
.x7d_c00096{left:332.580000px;}
.xea_c00096{left:336.000000px;}
.xa3_c00096{left:337.920000px;}
.xcf_c00096{left:339.645000px;}
.x74_c00096{left:342.000000px;}
.x82_c00096{left:343.080000px;}
.x7_c00096{left:345.000000px;}
.xac_c00096{left:346.920000px;}
.x5d_c00096{left:348.000000px;}
.x22_c00096{left:349.500000px;}
.x6c_c00096{left:351.000000px;}
.xc4_c00096{left:352.920000px;}
.xca_c00096{left:354.000000px;}
.x48_c00096{left:358.920000px;}
.x3b_c00096{left:360.000000px;}
.x32_c00096{left:361.500000px;}
.xa4_c00096{left:362.580000px;}
.x23_c00096{left:364.920000px;}
.x9b_c00096{left:366.000000px;}
.xdf_c00096{left:367.080000px;}
.xbd_c00096{left:369.000000px;}
.xb5_c00096{left:370.500000px;}
.x108_c00096{left:372.420000px;}
.x16_c00096{left:373.500000px;}
.x83_c00096{left:375.855000px;}
.x3c_c00096{left:379.500000px;}
.xcb_c00096{left:381.420000px;}
.xd0_c00096{left:385.500000px;}
.x49_c00096{left:387.420000px;}
.xb6_c00096{left:388.500000px;}
.xe6_c00096{left:390.000000px;}
.x111_c00096{left:394.500000px;}
.x8f_c00096{left:396.420000px;}
.x2_c00096{left:397.500000px;}
.xc5_c00096{left:399.420000px;}
.x5e_c00096{left:402.420000px;}
.x8_c00096{left:403.500000px;}
.x6d_c00096{left:404.580000px;}
.x75_c00096{left:408.000000px;}
.xbe_c00096{left:411.000000px;}
.x24_c00096{left:412.080000px;}
.x53_c00096{left:414.000000px;}
.xcc_c00096{left:416.580000px;}
.xad_c00096{left:418.500000px;}
.xa5_c00096{left:420.000000px;}
.x17_c00096{left:421.920000px;}
.x84_c00096{left:423.000000px;}
.x3d_c00096{left:424.920000px;}
.xd5_c00096{left:427.920000px;}
.xe0_c00096{left:430.920000px;}
.x33_c00096{left:432.000000px;}
.xfd_c00096{left:433.080000px;}
.x90_c00096{left:434.580000px;}
.xc6_c00096{left:436.920000px;}
.x5f_c00096{left:439.920000px;}
.xa6_c00096{left:441.420000px;}
.x25_c00096{left:443.580000px;}
.xb7_c00096{left:445.500000px;}
.xd1_c00096{left:447.000000px;}
.x6e_c00096{left:448.500000px;}
.x18_c00096{left:450.420000px;}
.xae_c00096{left:451.500000px;}
.x104_c00096{left:454.500000px;}
.x76_c00096{left:457.500000px;}
.xe1_c00096{left:459.000000px;}
.x3e_c00096{left:462.000000px;}
.x34_c00096{left:463.080000px;}
.x26_c00096{left:465.420000px;}
.x60_c00096{left:466.920000px;}
.xaf_c00096{left:471.420000px;}
.x4a_c00096{left:474.000000px;}
.x9_c00096{left:478.080000px;}
.x91_c00096{left:481.920000px;}
.x35_c00096{left:483.000000px;}
.x54_c00096{left:486.000000px;}
.x4b_c00096{left:487.500000px;}
.x10e_c00096{left:488.580000px;}
.xd6_c00096{left:490.500000px;}
.x27_c00096{left:492.420000px;}
.x112_c00096{left:494.775000px;}
.xa_c00096{left:496.920000px;}
.xb0_c00096{left:499.080000px;}
.xe7_c00096{left:501.420000px;}
.x7e_c00096{left:502.500000px;}
.x61_c00096{left:503.580000px;}
.x36_c00096{left:505.080000px;}
.x92_c00096{left:508.500000px;}
.xf0_c00096{left:511.500000px;}
.x19_c00096{left:514.500000px;}
.x3f_c00096{left:516.000000px;}
.x4c_c00096{left:517.080000px;}
.x85_c00096{left:519.420000px;}
.xbf_c00096{left:522.000000px;}
.xb_c00096{left:523.500000px;}
.xb8_c00096{left:525.420000px;}
.x28_c00096{left:528.000000px;}
.x10f_c00096{left:531.420000px;}
.xfe_c00096{left:532.500000px;}
.x9c_c00096{left:535.920000px;}
.x6f_c00096{left:537.420000px;}
.x1a_c00096{left:538.500000px;}
.xb1_c00096{left:540.000000px;}
.xdc_c00096{left:541.500000px;}
.x106_c00096{left:545.355000px;}
.xeb_c00096{left:546.420000px;}
.x86_c00096{left:547.920000px;}
.x40_c00096{left:549.000000px;}
.xc7_c00096{left:550.080000px;}
.x1b_c00096{left:552.000000px;}
.x62_c00096{left:555.420000px;}
.x4d_c00096{left:556.500000px;}
.x55_c00096{left:558.000000px;}
.x93_c00096{left:560.580000px;}
.x9d_c00096{left:562.500000px;}
.xc0_c00096{left:563.580000px;}
.x37_c00096{left:565.080000px;}
.x77_c00096{left:568.500000px;}
.x63_c00096{left:574.500000px;}
.x56_c00096{left:576.000000px;}
.xc_c00096{left:577.500000px;}
.xf6_c00096{left:579.000000px;}
.x94_c00096{left:580.920000px;}
.x1c_c00096{left:582.000000px;}
.xc1_c00096{left:585.420000px;}
.x41_c00096{left:586.500000px;}
.xec_c00096{left:588.000000px;}
.xc8_c00096{left:591.420000px;}
.x4e_c00096{left:592.500000px;}
.xb2_c00096{left:594.420000px;}
.x87_c00096{left:595.500000px;}
.xf1_c00096{left:597.420000px;}
.xb9_c00096{left:601.500000px;}
.x57_c00096{left:603.000000px;}
.x9e_c00096{left:604.080000px;}
.x42_c00096{left:606.420000px;}
.x4f_c00096{left:607.920000px;}
.x95_c00096{left:609.000000px;}
.xe2_c00096{left:612.000000px;}
.xc2_c00096{left:613.500000px;}
.x64_c00096{left:616.080000px;}
.x29_c00096{left:621.000000px;}
.x9f_c00096{left:623.580000px;}
.xd7_c00096{left:625.500000px;}
.x1d_c00096{left:626.580000px;}
.xd_c00096{left:628.500000px;}
.x78_c00096{left:631.500000px;}
.xba_c00096{left:636.420000px;}
.x10a_c00096{left:637.500000px;}
.x58_c00096{left:640.500000px;}
.x2a_c00096{left:643.500000px;}
.xa7_c00096{left:646.500000px;}
.x88_c00096{left:649.080000px;}
.x1e_c00096{left:652.920000px;}
.x96_c00096{left:654.000000px;}
.xe_c00096{left:655.920000px;}
.x70_c00096{left:657.000000px;}
.xa8_c00096{left:658.500000px;}
.x2b_c00096{left:660.000000px;}
.x43_c00096{left:661.920000px;}
.x10c_c00096{left:663.420000px;}
.xe3_c00096{left:664.500000px;}
.xb3_c00096{left:666.000000px;}
.x89_c00096{left:669.420000px;}
.xbb_c00096{left:672.000000px;}
.xa0_c00096{left:673.920000px;}
.x79_c00096{left:675.000000px;}
.xf2_c00096{left:678.000000px;}
.xf_c00096{left:681.420000px;}
.xf7_c00096{left:682.920000px;}
.x7f_c00096{left:684.000000px;}
.x59_c00096{left:685.080000px;}
.x50_c00096{left:687.000000px;}
.x65_c00096{left:689.580000px;}
.xd8_c00096{left:691.500000px;}
.xf3_c00096{left:693.000000px;}
.xfa_c00096{left:696.420000px;}
.x8a_c00096{left:697.500000px;}
.xe8_c00096{left:699.000000px;}
.x44_c00096{left:700.500000px;}
.xa1_c00096{left:702.000000px;}
.x51_c00096{left:706.920000px;}
.x97_c00096{left:708.420000px;}
.xb4_c00096{left:709.920000px;}
.x1_c00096{left:711.000000px;}
.xff_c00096{left:717.000000px;}
.xdd_c00096{left:718.500000px;}
.xbc_c00096{left:720.000000px;}
.x66_c00096{left:721.500000px;}
.xd2_c00096{left:723.000000px;}
@media print{
.v0_c00096{vertical-align:0.000000pt;}
.ls0_c00096{letter-spacing:0.000000pt;}
.ws1_c00096{word-spacing:-5.497444pt;}
.ws0_c00096{word-spacing:-4.279673pt;}
.ws2_c00096{word-spacing:0.000000pt;}
.fs7_c00096{font-size:3.040000pt;}
.fs1_c00096{font-size:16.640000pt;}
.fs8_c00096{font-size:18.133333pt;}
.fs2_c00096{font-size:19.680000pt;}
.fs4_c00096{font-size:22.666667pt;}
.fs3_c00096{font-size:25.706667pt;}
.fs5_c00096{font-size:28.746667pt;}
.fs0_c00096{font-size:31.733333pt;}
.fs6_c00096{font-size:34.773333pt;}
.y0_c00096{bottom:0.000000pt;}
.yd9_c00096{bottom:223.773333pt;}
.yd7_c00096{bottom:224.560000pt;}
.yda_c00096{bottom:225.693333pt;}
.yd8_c00096{bottom:225.706667pt;}
.yd6_c00096{bottom:226.066667pt;}
.yd4_c00096{bottom:239.400000pt;}
.yd3_c00096{bottom:241.106667pt;}
.yd0_c00096{bottom:241.493333pt;}
.yd2_c00096{bottom:242.066667pt;}
.yd5_c00096{bottom:242.440000pt;}
.yd1_c00096{bottom:244.373333pt;}
.ycd_c00096{bottom:258.440000pt;}
.ycf_c00096{bottom:259.773333pt;}
.yce_c00096{bottom:260.360000pt;}
.ycb_c00096{bottom:260.933333pt;}
.ycc_c00096{bottom:261.693333pt;}
.yc8_c00096{bottom:275.773333pt;}
.yc7_c00096{bottom:277.106667pt;}
.yca_c00096{bottom:277.893333pt;}
.yc9_c00096{bottom:279.026667pt;}
.yc5_c00096{bottom:293.106667pt;}
.yc1_c00096{bottom:294.440000pt;}
.yc4_c00096{bottom:295.226667pt;}
.yc3_c00096{bottom:296.360000pt;}
.yc2_c00096{bottom:296.373333pt;}
.yc6_c00096{bottom:296.560000pt;}
.yc0_c00096{bottom:313.306667pt;}
.ybc_c00096{bottom:314.066667pt;}
.ybf_c00096{bottom:314.640000pt;}
.ybe_c00096{bottom:315.026667pt;}
.ybd_c00096{bottom:315.973333pt;}
.yb9_c00096{bottom:336.733333pt;}
.yb8_c00096{bottom:336.933333pt;}
.yb7_c00096{bottom:337.693333pt;}
.yba_c00096{bottom:338.066667pt;}
.ybb_c00096{bottom:339.600000pt;}
.yb4_c00096{bottom:357.106667pt;}
.yb5_c00096{bottom:359.026667pt;}
.yb6_c00096{bottom:359.973333pt;}
.yb3_c00096{bottom:395.773333pt;}
.yb2_c00096{bottom:396.360000pt;}
.yb1_c00096{bottom:397.106667pt;}
.yb0_c00096{bottom:399.026667pt;}
.yac_c00096{bottom:413.106667pt;}
.yad_c00096{bottom:414.066667pt;}
.yaf_c00096{bottom:414.440000pt;}
.yaa_c00096{bottom:415.026667pt;}
.yae_c00096{bottom:416.360000pt;}
.yab_c00096{bottom:416.373333pt;}
.ya9_c00096{bottom:433.693333pt;}
.ya8_c00096{bottom:435.026667pt;}
.ya7_c00096{bottom:449.106667pt;}
.ya6_c00096{bottom:449.893333pt;}
.ya5_c00096{bottom:450.640000pt;}
.ya4_c00096{bottom:451.026667pt;}
.ya2_c00096{bottom:465.693333pt;}
.y9f_c00096{bottom:466.440000pt;}
.ya1_c00096{bottom:467.400000pt;}
.ya3_c00096{bottom:467.773333pt;}
.y9e_c00096{bottom:467.973333pt;}
.ya0_c00096{bottom:468.360000pt;}
.y9d_c00096{bottom:468.560000pt;}
.y9c_c00096{bottom:469.693333pt;}
.y98_c00096{bottom:483.773333pt;}
.y9b_c00096{bottom:485.106667pt;}
.y97_c00096{bottom:485.693333pt;}
.y9a_c00096{bottom:485.893333pt;}
.y99_c00096{bottom:486.640000pt;}
.y96_c00096{bottom:487.026667pt;}
.y92_c00096{bottom:501.106667pt;}
.y93_c00096{bottom:502.440000pt;}
.y90_c00096{bottom:503.026667pt;}
.y91_c00096{bottom:503.226667pt;}
.y95_c00096{bottom:503.973333pt;}
.y94_c00096{bottom:504.360000pt;}
.y8f_c00096{bottom:519.773333pt;}
.y8e_c00096{bottom:520.360000pt;}
.y8d_c00096{bottom:521.693333pt;}
.y8b_c00096{bottom:535.026667pt;}
.y8c_c00096{bottom:537.106667pt;}
.y8a_c00096{bottom:538.640000pt;}
.y89_c00096{bottom:539.026667pt;}
.y87_c00096{bottom:553.693333pt;}
.y86_c00096{bottom:554.440000pt;}
.y84_c00096{bottom:555.226667pt;}
.y85_c00096{bottom:555.400000pt;}
.y83_c00096{bottom:556.360000pt;}
.y88_c00096{bottom:557.306667pt;}
.y7e_c00096{bottom:571.026667pt;}
.y81_c00096{bottom:571.773333pt;}
.y7f_c00096{bottom:572.560000pt;}
.y80_c00096{bottom:572.733333pt;}
.y7d_c00096{bottom:573.693333pt;}
.y82_c00096{bottom:574.066667pt;}
.y76_c00096{bottom:589.106667pt;}
.y7a_c00096{bottom:589.493333pt;}
.y77_c00096{bottom:590.066667pt;}
.y7b_c00096{bottom:590.440000pt;}
.y75_c00096{bottom:591.026667pt;}
.y79_c00096{bottom:591.400000pt;}
.y78_c00096{bottom:592.360000pt;}
.y7c_c00096{bottom:592.560000pt;}
.y74_c00096{bottom:608.560000pt;}
.y73_c00096{bottom:609.693333pt;}
.y6f_c00096{bottom:625.893333pt;}
.y72_c00096{bottom:626.066667pt;}
.y71_c00096{bottom:626.640000pt;}
.y70_c00096{bottom:627.026667pt;}
.y6e_c00096{bottom:642.066667pt;}
.y6d_c00096{bottom:642.440000pt;}
.y6c_c00096{bottom:643.400000pt;}
.y6b_c00096{bottom:644.360000pt;}
.y68_c00096{bottom:661.693333pt;}
.y69_c00096{bottom:662.640000pt;}
.y6a_c00096{bottom:663.026667pt;}
.y62_c00096{bottom:676.360000pt;}
.y65_c00096{bottom:676.733333pt;}
.y61_c00096{bottom:677.106667pt;}
.y66_c00096{bottom:678.440000pt;}
.y64_c00096{bottom:678.640000pt;}
.y60_c00096{bottom:679.026667pt;}
.y63_c00096{bottom:679.226667pt;}
.y67_c00096{bottom:680.360000pt;}
.y5e_c00096{bottom:694.440000pt;}
.y59_c00096{bottom:695.226667pt;}
.y5b_c00096{bottom:695.400000pt;}
.y5a_c00096{bottom:696.360000pt;}
.y5d_c00096{bottom:696.560000pt;}
.y5c_c00096{bottom:697.306667pt;}
.y5f_c00096{bottom:697.693333pt;}
.y54_c00096{bottom:711.773333pt;}
.y51_c00096{bottom:712.733333pt;}
.y56_c00096{bottom:713.106667pt;}
.y52_c00096{bottom:713.693333pt;}
.y53_c00096{bottom:713.893333pt;}
.y58_c00096{bottom:714.066667pt;}
.y55_c00096{bottom:714.640000pt;}
.y57_c00096{bottom:715.026667pt;}
.y4f_c00096{bottom:728.360000pt;}
.y4e_c00096{bottom:731.026667pt;}
.y4d_c00096{bottom:731.226667pt;}
.y50_c00096{bottom:731.973333pt;}
.y4c_c00096{bottom:732.360000pt;}
.y46_c00096{bottom:745.693333pt;}
.y47_c00096{bottom:746.640000pt;}
.y48_c00096{bottom:747.400000pt;}
.y49_c00096{bottom:747.773333pt;}
.y44_c00096{bottom:748.360000pt;}
.y4a_c00096{bottom:748.560000pt;}
.y45_c00096{bottom:749.306667pt;}
.y4b_c00096{bottom:749.693333pt;}
.y40_c00096{bottom:763.026667pt;}
.y41_c00096{bottom:765.106667pt;}
.y3e_c00096{bottom:765.893333pt;}
.y3f_c00096{bottom:767.026667pt;}
.y42_c00096{bottom:767.973333pt;}
.y43_c00096{bottom:768.360000pt;}
.y39_c00096{bottom:781.106667pt;}
.y3b_c00096{bottom:782.066667pt;}
.y38_c00096{bottom:782.440000pt;}
.y37_c00096{bottom:783.226667pt;}
.y3d_c00096{bottom:783.400000pt;}
.y36_c00096{bottom:784.360000pt;}
.y3c_c00096{bottom:784.560000pt;}
.y3a_c00096{bottom:785.306667pt;}
.y33_c00096{bottom:799.773333pt;}
.y34_c00096{bottom:800.733333pt;}
.y31_c00096{bottom:801.693333pt;}
.y32_c00096{bottom:801.893333pt;}
.y35_c00096{bottom:803.026667pt;}
.y2a_c00096{bottom:816.360000pt;}
.y2b_c00096{bottom:817.106667pt;}
.y2f_c00096{bottom:817.693333pt;}
.y2c_c00096{bottom:818.640000pt;}
.y2e_c00096{bottom:819.026667pt;}
.y2d_c00096{bottom:819.226667pt;}
.y30_c00096{bottom:820.360000pt;}
.y26_c00096{bottom:834.440000pt;}
.y24_c00096{bottom:835.400000pt;}
.y29_c00096{bottom:835.773333pt;}
.y25_c00096{bottom:836.360000pt;}
.y27_c00096{bottom:837.306667pt;}
.y28_c00096{bottom:837.693333pt;}
.y1f_c00096{bottom:851.026667pt;}
.y20_c00096{bottom:851.973333pt;}
.y23_c00096{bottom:853.106667pt;}
.y21_c00096{bottom:853.893333pt;}
.y1e_c00096{bottom:854.640000pt;}
.y22_c00096{bottom:855.026667pt;}
.y1d_c00096{bottom:869.306667pt;}
.y1b_c00096{bottom:869.693333pt;}
.y18_c00096{bottom:870.440000pt;}
.y1c_c00096{bottom:871.973333pt;}
.y19_c00096{bottom:872.360000pt;}
.y1a_c00096{bottom:873.306667pt;}
.y14_c00096{bottom:887.773333pt;}
.y15_c00096{bottom:888.560000pt;}
.y17_c00096{bottom:889.306667pt;}
.y16_c00096{bottom:889.693333pt;}
.yf_c00096{bottom:903.773333pt;}
.y11_c00096{bottom:905.106667pt;}
.y13_c00096{bottom:906.066667pt;}
.y12_c00096{bottom:907.026667pt;}
.y10_c00096{bottom:907.973333pt;}
.yb_c00096{bottom:921.493333pt;}
.ya_c00096{bottom:922.440000pt;}
.yd_c00096{bottom:923.226667pt;}
.ye_c00096{bottom:923.400000pt;}
.yc_c00096{bottom:924.360000pt;}
.y7_c00096{bottom:939.400000pt;}
.y3_c00096{bottom:939.773333pt;}
.y6_c00096{bottom:941.306667pt;}
.y5_c00096{bottom:941.693333pt;}
.y8_c00096{bottom:941.893333pt;}
.y9_c00096{bottom:943.026667pt;}
.y4_c00096{bottom:943.800000pt;}
.y1_c00096{bottom:975.773333pt;}
.y2_c00096{bottom:976.560000pt;}
.h8_c00096{height:3.739141pt;}
.h2_c00096{height:20.466875pt;}
.h9_c00096{height:22.303646pt;}
.h3_c00096{height:24.206016pt;}
.h5_c00096{height:27.879557pt;}
.h4_c00096{height:31.618698pt;}
.h6_c00096{height:35.357839pt;}
.h1_c00096{height:39.031380pt;}
.h7_c00096{height:42.770521pt;}
.h0_c00096{height:1186.666667pt;}
.w0_c00096{width:782.666667pt;}
.x0_c00096{left:0.000000pt;}
.x10_c00096{left:135.040000pt;}
.x5a_c00096{left:136.373333pt;}
.xa2_c00096{left:137.333333pt;}
.xed_c00096{left:139.040000pt;}
.x100_c00096{left:140.000000pt;}
.x3_c00096{left:148.960000pt;}
.xcd_c00096{left:150.293333pt;}
.x45_c00096{left:152.000000pt;}
.x5b_c00096{left:153.333333pt;}
.xfb_c00096{left:154.666667pt;}
.x2c_c00096{left:156.000000pt;}
.xc3_c00096{left:160.000000pt;}
.xc9_c00096{left:161.333333pt;}
.x67_c00096{left:163.040000pt;}
.x11_c00096{left:164.960000pt;}
.x2d_c00096{left:168.000000pt;}
.x46_c00096{left:170.666667pt;}
.x98_c00096{left:172.960000pt;}
.xee_c00096{left:174.293333pt;}
.xd9_c00096{left:177.706667pt;}
.x80_c00096{left:178.666667pt;}
.xf8_c00096{left:179.626667pt;}
.x1f_c00096{left:181.333333pt;}
.x12_c00096{left:187.040000pt;}
.x101_c00096{left:188.960000pt;}
.x71_c00096{left:190.293333pt;}
.x109_c00096{left:192.373333pt;}
.xf4_c00096{left:193.333333pt;}
.xfc_c00096{left:194.293333pt;}
.xa9_c00096{left:196.000000pt;}
.xe4_c00096{left:196.960000pt;}
.x38_c00096{left:198.293333pt;}
.x68_c00096{left:200.000000pt;}
.x99_c00096{left:201.333333pt;}
.x20_c00096{left:204.000000pt;}
.x103_c00096{left:205.333333pt;}
.x2e_c00096{left:206.293333pt;}
.x8b_c00096{left:210.666667pt;}
.x13_c00096{left:212.000000pt;}
.x39_c00096{left:214.666667pt;}
.x69_c00096{left:216.373333pt;}
.x81_c00096{left:218.293333pt;}
.x7a_c00096{left:221.333333pt;}
.xd3_c00096{left:223.040000pt;}
.x5c_c00096{left:224.000000pt;}
.x4_c00096{left:226.666667pt;}
.x10d_c00096{left:228.760000pt;}
.x8c_c00096{left:229.706667pt;}
.xda_c00096{left:230.666667pt;}
.x2f_c00096{left:233.333333pt;}
.xf9_c00096{left:234.293333pt;}
.x110_c00096{left:236.000000pt;}
.x21_c00096{left:237.333333pt;}
.xe5_c00096{left:240.000000pt;}
.x14_c00096{left:241.333333pt;}
.x5_c00096{left:244.000000pt;}
.x9a_c00096{left:245.333333pt;}
.x6a_c00096{left:246.666667pt;}
.xe9_c00096{left:248.000000pt;}
.x72_c00096{left:249.706667pt;}
.x8d_c00096{left:252.000000pt;}
.x102_c00096{left:253.333333pt;}
.x7b_c00096{left:254.293333pt;}
.xaa_c00096{left:256.373333pt;}
.x105_c00096{left:257.333333pt;}
.x30_c00096{left:258.666667pt;}
.x52_c00096{left:261.706667pt;}
.x6b_c00096{left:263.040000pt;}
.xdb_c00096{left:264.000000pt;}
.xef_c00096{left:264.960000pt;}
.x15_c00096{left:266.666667pt;}
.x3a_c00096{left:268.373333pt;}
.x8e_c00096{left:269.333333pt;}
.x7c_c00096{left:271.040000pt;}
.x6_c00096{left:273.333333pt;}
.x47_c00096{left:277.333333pt;}
.x73_c00096{left:281.706667pt;}
.x107_c00096{left:283.240000pt;}
.xd4_c00096{left:284.960000pt;}
.x31_c00096{left:287.040000pt;}
.xde_c00096{left:288.000000pt;}
.xce_c00096{left:289.333333pt;}
.xab_c00096{left:290.293333pt;}
.x113_c00096{left:291.626667pt;}
.xf5_c00096{left:293.333333pt;}
.x10b_c00096{left:294.666667pt;}
.x7d_c00096{left:295.626667pt;}
.xea_c00096{left:298.666667pt;}
.xa3_c00096{left:300.373333pt;}
.xcf_c00096{left:301.906667pt;}
.x74_c00096{left:304.000000pt;}
.x82_c00096{left:304.960000pt;}
.x7_c00096{left:306.666667pt;}
.xac_c00096{left:308.373333pt;}
.x5d_c00096{left:309.333333pt;}
.x22_c00096{left:310.666667pt;}
.x6c_c00096{left:312.000000pt;}
.xc4_c00096{left:313.706667pt;}
.xca_c00096{left:314.666667pt;}
.x48_c00096{left:319.040000pt;}
.x3b_c00096{left:320.000000pt;}
.x32_c00096{left:321.333333pt;}
.xa4_c00096{left:322.293333pt;}
.x23_c00096{left:324.373333pt;}
.x9b_c00096{left:325.333333pt;}
.xdf_c00096{left:326.293333pt;}
.xbd_c00096{left:328.000000pt;}
.xb5_c00096{left:329.333333pt;}
.x108_c00096{left:331.040000pt;}
.x16_c00096{left:332.000000pt;}
.x83_c00096{left:334.093333pt;}
.x3c_c00096{left:337.333333pt;}
.xcb_c00096{left:339.040000pt;}
.xd0_c00096{left:342.666667pt;}
.x49_c00096{left:344.373333pt;}
.xb6_c00096{left:345.333333pt;}
.xe6_c00096{left:346.666667pt;}
.x111_c00096{left:350.666667pt;}
.x8f_c00096{left:352.373333pt;}
.x2_c00096{left:353.333333pt;}
.xc5_c00096{left:355.040000pt;}
.x5e_c00096{left:357.706667pt;}
.x8_c00096{left:358.666667pt;}
.x6d_c00096{left:359.626667pt;}
.x75_c00096{left:362.666667pt;}
.xbe_c00096{left:365.333333pt;}
.x24_c00096{left:366.293333pt;}
.x53_c00096{left:368.000000pt;}
.xcc_c00096{left:370.293333pt;}
.xad_c00096{left:372.000000pt;}
.xa5_c00096{left:373.333333pt;}
.x17_c00096{left:375.040000pt;}
.x84_c00096{left:376.000000pt;}
.x3d_c00096{left:377.706667pt;}
.xd5_c00096{left:380.373333pt;}
.xe0_c00096{left:383.040000pt;}
.x33_c00096{left:384.000000pt;}
.xfd_c00096{left:384.960000pt;}
.x90_c00096{left:386.293333pt;}
.xc6_c00096{left:388.373333pt;}
.x5f_c00096{left:391.040000pt;}
.xa6_c00096{left:392.373333pt;}
.x25_c00096{left:394.293333pt;}
.xb7_c00096{left:396.000000pt;}
.xd1_c00096{left:397.333333pt;}
.x6e_c00096{left:398.666667pt;}
.x18_c00096{left:400.373333pt;}
.xae_c00096{left:401.333333pt;}
.x104_c00096{left:404.000000pt;}
.x76_c00096{left:406.666667pt;}
.xe1_c00096{left:408.000000pt;}
.x3e_c00096{left:410.666667pt;}
.x34_c00096{left:411.626667pt;}
.x26_c00096{left:413.706667pt;}
.x60_c00096{left:415.040000pt;}
.xaf_c00096{left:419.040000pt;}
.x4a_c00096{left:421.333333pt;}
.x9_c00096{left:424.960000pt;}
.x91_c00096{left:428.373333pt;}
.x35_c00096{left:429.333333pt;}
.x54_c00096{left:432.000000pt;}
.x4b_c00096{left:433.333333pt;}
.x10e_c00096{left:434.293333pt;}
.xd6_c00096{left:436.000000pt;}
.x27_c00096{left:437.706667pt;}
.x112_c00096{left:439.800000pt;}
.xa_c00096{left:441.706667pt;}
.xb0_c00096{left:443.626667pt;}
.xe7_c00096{left:445.706667pt;}
.x7e_c00096{left:446.666667pt;}
.x61_c00096{left:447.626667pt;}
.x36_c00096{left:448.960000pt;}
.x92_c00096{left:452.000000pt;}
.xf0_c00096{left:454.666667pt;}
.x19_c00096{left:457.333333pt;}
.x3f_c00096{left:458.666667pt;}
.x4c_c00096{left:459.626667pt;}
.x85_c00096{left:461.706667pt;}
.xbf_c00096{left:464.000000pt;}
.xb_c00096{left:465.333333pt;}
.xb8_c00096{left:467.040000pt;}
.x28_c00096{left:469.333333pt;}
.x10f_c00096{left:472.373333pt;}
.xfe_c00096{left:473.333333pt;}
.x9c_c00096{left:476.373333pt;}
.x6f_c00096{left:477.706667pt;}
.x1a_c00096{left:478.666667pt;}
.xb1_c00096{left:480.000000pt;}
.xdc_c00096{left:481.333333pt;}
.x106_c00096{left:484.760000pt;}
.xeb_c00096{left:485.706667pt;}
.x86_c00096{left:487.040000pt;}
.x40_c00096{left:488.000000pt;}
.xc7_c00096{left:488.960000pt;}
.x1b_c00096{left:490.666667pt;}
.x62_c00096{left:493.706667pt;}
.x4d_c00096{left:494.666667pt;}
.x55_c00096{left:496.000000pt;}
.x93_c00096{left:498.293333pt;}
.x9d_c00096{left:500.000000pt;}
.xc0_c00096{left:500.960000pt;}
.x37_c00096{left:502.293333pt;}
.x77_c00096{left:505.333333pt;}
.x63_c00096{left:510.666667pt;}
.x56_c00096{left:512.000000pt;}
.xc_c00096{left:513.333333pt;}
.xf6_c00096{left:514.666667pt;}
.x94_c00096{left:516.373333pt;}
.x1c_c00096{left:517.333333pt;}
.xc1_c00096{left:520.373333pt;}
.x41_c00096{left:521.333333pt;}
.xec_c00096{left:522.666667pt;}
.xc8_c00096{left:525.706667pt;}
.x4e_c00096{left:526.666667pt;}
.xb2_c00096{left:528.373333pt;}
.x87_c00096{left:529.333333pt;}
.xf1_c00096{left:531.040000pt;}
.xb9_c00096{left:534.666667pt;}
.x57_c00096{left:536.000000pt;}
.x9e_c00096{left:536.960000pt;}
.x42_c00096{left:539.040000pt;}
.x4f_c00096{left:540.373333pt;}
.x95_c00096{left:541.333333pt;}
.xe2_c00096{left:544.000000pt;}
.xc2_c00096{left:545.333333pt;}
.x64_c00096{left:547.626667pt;}
.x29_c00096{left:552.000000pt;}
.x9f_c00096{left:554.293333pt;}
.xd7_c00096{left:556.000000pt;}
.x1d_c00096{left:556.960000pt;}
.xd_c00096{left:558.666667pt;}
.x78_c00096{left:561.333333pt;}
.xba_c00096{left:565.706667pt;}
.x10a_c00096{left:566.666667pt;}
.x58_c00096{left:569.333333pt;}
.x2a_c00096{left:572.000000pt;}
.xa7_c00096{left:574.666667pt;}
.x88_c00096{left:576.960000pt;}
.x1e_c00096{left:580.373333pt;}
.x96_c00096{left:581.333333pt;}
.xe_c00096{left:583.040000pt;}
.x70_c00096{left:584.000000pt;}
.xa8_c00096{left:585.333333pt;}
.x2b_c00096{left:586.666667pt;}
.x43_c00096{left:588.373333pt;}
.x10c_c00096{left:589.706667pt;}
.xe3_c00096{left:590.666667pt;}
.xb3_c00096{left:592.000000pt;}
.x89_c00096{left:595.040000pt;}
.xbb_c00096{left:597.333333pt;}
.xa0_c00096{left:599.040000pt;}
.x79_c00096{left:600.000000pt;}
.xf2_c00096{left:602.666667pt;}
.xf_c00096{left:605.706667pt;}
.xf7_c00096{left:607.040000pt;}
.x7f_c00096{left:608.000000pt;}
.x59_c00096{left:608.960000pt;}
.x50_c00096{left:610.666667pt;}
.x65_c00096{left:612.960000pt;}
.xd8_c00096{left:614.666667pt;}
.xf3_c00096{left:616.000000pt;}
.xfa_c00096{left:619.040000pt;}
.x8a_c00096{left:620.000000pt;}
.xe8_c00096{left:621.333333pt;}
.x44_c00096{left:622.666667pt;}
.xa1_c00096{left:624.000000pt;}
.x51_c00096{left:628.373333pt;}
.x97_c00096{left:629.706667pt;}
.xb4_c00096{left:631.040000pt;}
.x1_c00096{left:632.000000pt;}
.xff_c00096{left:637.333333pt;}
.xdd_c00096{left:638.666667pt;}
.xbc_c00096{left:640.000000pt;}
.x66_c00096{left:641.333333pt;}
.xd2_c00096{left:642.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_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_61529ac79ca68dfbebafdc8d.woff2')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc0_c00097{transform:matrix(0.218824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218824,0.000000,0.000000,0.250000,0,0);}
.m20_c00097{transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);}
.mc2_c00097{transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);}
.m1a_c00097{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m19_c00097{transform:matrix(0.357362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357362,0.000000,0.000000,0.250000,0,0);}
.m7e_c00097{transform:matrix(0.365955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365955,0.000000,0.000000,0.250000,0,0);}
.m5_c00097{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m12_c00097{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m18_c00097{transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);}
.m1d_c00097{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m31_c00097{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m3e_c00097{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m85_c00097{transform:matrix(0.379808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379808,0.000000,0.000000,0.250000,0,0);}
.m7f_c00097{transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);}
.m51_c00097{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m45_c00097{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m3c_c00097{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m16_c00097{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m4b_c00097{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m1f_c00097{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m6c_c00097{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m72_c00097{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m4f_c00097{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m1e_c00097{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m41_c00097{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m2a_c00097{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.me_c00097{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m4c_c00097{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m15_c00097{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m11_c00097{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m6e_c00097{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m7d_c00097{transform:matrix(0.425311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425311,0.000000,0.000000,0.250000,0,0);}
.m48_c00097{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m55_c00097{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m33_c00097{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m63_c00097{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m60_c00097{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m64_c00097{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m7a_c00097{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m5a_c00097{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m9c_c00097{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m4a_c00097{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m65_c00097{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m62_c00097{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m89_c00097{transform:matrix(0.440705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440705,0.000000,0.000000,0.250000,0,0);}
.m87_c00097{transform:matrix(0.443109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443109,0.000000,0.000000,0.250000,0,0);}
.m66_c00097{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m44_c00097{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m5c_c00097{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m9b_c00097{transform:matrix(0.449339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449339,0.000000,0.000000,0.250000,0,0);}
.m71_c00097{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m8b_c00097{transform:matrix(0.454327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454327,0.000000,0.000000,0.250000,0,0);}
.m7c_c00097{transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);}
.m2f_c00097{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m8f_c00097{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mbc_c00097{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_c00097{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m6d_c00097{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m67_c00097{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.mb5_c00097{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.ma0_c00097{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.m69_c00097{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.mb0_c00097{transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);}
.mb1_c00097{transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);}
.m3b_c00097{transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);}
.m3a_c00097{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.mab_c00097{transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);}
.m43_c00097{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m8c_c00097{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m47_c00097{transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);}
.m9a_c00097{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m96_c00097{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m21_c00097{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m22_c00097{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m3d_c00097{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m27_c00097{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);}
.m70_c00097{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mc_c00097{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m37_c00097{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m14_c00097{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m40_c00097{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mac_c00097{transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);}
.m5d_c00097{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m5e_c00097{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mbe_c00097{transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);}
.m28_c00097{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m2b_c00097{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m24_c00097{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m23_c00097{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m84_c00097{transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);}
.mba_c00097{transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);}
.m35_c00097{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m46_c00097{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m1b_c00097{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.ma3_c00097{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m32_c00097{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m57_c00097{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m2e_c00097{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m4_c00097{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m3f_c00097{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_c00097{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m81_c00097{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m5b_c00097{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m7_c00097{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m58_c00097{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m0_c00097{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m88_c00097{transform:matrix(0.549559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549559,0.000000,0.000000,0.250000,0,0);}
.ma9_c00097{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m2c_c00097{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m8a_c00097{transform:matrix(0.551768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551768,0.000000,0.000000,0.250000,0,0);}
.m9_c00097{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mf_c00097{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m13_c00097{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m56_c00097{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m1c_c00097{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m52_c00097{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m97_c00097{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m6b_c00097{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m5f_c00097{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mb7_c00097{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m30_c00097{transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);}
.m2_c00097{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m74_c00097{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);}
.ma_c00097{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.maf_c00097{transform:matrix(0.572115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572115,0.000000,0.000000,0.250000,0,0);}
.m2d_c00097{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m6a_c00097{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m83_c00097{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m42_c00097{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m8_c00097{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.m50_c00097{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m26_c00097{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mb8_c00097{transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);}
.m8d_c00097{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.m75_c00097{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m25_c00097{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m59_c00097{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m1_c00097{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m73_c00097{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m17_c00097{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m34_c00097{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m77_c00097{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m86_c00097{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.mb6_c00097{transform:matrix(0.614583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614583,0.000000,0.000000,0.250000,0,0);}
.m10_c00097{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m90_c00097{transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);}
.m93_c00097{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m7b_c00097{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);}
.m4d_c00097{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m39_c00097{transform:matrix(0.638485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638485,0.000000,0.000000,0.250000,0,0);}
.m68_c00097{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.mc1_c00097{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.m79_c00097{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m98_c00097{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m61_c00097{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m9d_c00097{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.mb_c00097{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m76_c00097{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m82_c00097{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m95_c00097{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mbb_c00097{transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);}
.mb4_c00097{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.m8e_c00097{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mbf_c00097{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.ma6_c00097{transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);}
.m91_c00097{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.mbd_c00097{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m80_c00097{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m99_c00097{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m78_c00097{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);}
.mb3_c00097{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.m4e_c00097{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m9e_c00097{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m6_c00097{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m94_c00097{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.mb2_c00097{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.m92_c00097{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m29_c00097{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.ma4_c00097{transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);}
.m36_c00097{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.ma8_c00097{transform:matrix(0.786344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786344,0.000000,0.000000,0.250000,0,0);}
.ma7_c00097{transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);}
.m9f_c00097{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m38_c00097{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m6f_c00097{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mb9_c00097{transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);}
.mae_c00097{transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);}
.m54_c00097{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.ma5_c00097{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mad_c00097{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.ma2_c00097{transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);}
.m53_c00097{transform:matrix(1.050735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.050735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.050735,0.000000,0.000000,0.250000,0,0);}
.ma1_c00097{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m49_c00097{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m3_c00097{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00097{vertical-align:-6.000000px;}
.v0_c00097{vertical-align:0.000000px;}
.ls2_c00097{letter-spacing:0.000000px;}
.ls0_c00097{letter-spacing:38.263818px;}
.ls1_c00097{letter-spacing:85.057003px;}
.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:-33.121745px;}
.ws18_c00097{word-spacing:0.000000px;}
.wse_c00097{word-spacing:4.332539px;}
.ws17_c00097{word-spacing:5.006682px;}
.ws15_c00097{word-spacing:6.882715px;}
.ws1_c00097{word-spacing:7.603165px;}
.ws10_c00097{word-spacing:8.642666px;}
.wsd_c00097{word-spacing:10.797729px;}
.ws11_c00097{word-spacing:11.721994px;}
.ws12_c00097{word-spacing:12.510814px;}
.wsa_c00097{word-spacing:12.952792px;}
.ws13_c00097{word-spacing:16.262880px;}
.wsc_c00097{word-spacing:18.103841px;}
.wsb_c00097{word-spacing:18.138913px;}
.wsf_c00097{word-spacing:20.534773px;}
.ws2_c00097{word-spacing:23.728109px;}
.ws14_c00097{word-spacing:24.591285px;}
.ws6_c00097{word-spacing:24.971068px;}
.ws16_c00097{word-spacing:24.977547px;}
.ws9_c00097{word-spacing:25.643046px;}
.ws3_c00097{word-spacing:27.641656px;}
.ws8_c00097{word-spacing:31.838295px;}
.ws4_c00097{word-spacing:32.982833px;}
.ws7_c00097{word-spacing:46.335774px;}
.ws5_c00097{word-spacing:49.006362px;}
._0_c00097{margin-left:-38.263818px;}
._4_c00097{width:15.712789px;}
._3_c00097{width:18.751809px;}
._2_c00097{width:20.906872px;}
._5_c00097{width:23.216922px;}
._1_c00097{width:25.216999px;}
.fc0_c00097{color:transparent;}
.fs3_c00097{font-size:3.420000px;}
.fs9_c00097{font-size:11.880000px;}
.fs8_c00097{font-size:13.620000px;}
.fs5_c00097{font-size:18.720000px;}
.fs1_c00097{font-size:20.400000px;}
.fs0_c00097{font-size:25.500000px;}
.fs2_c00097{font-size:28.920000px;}
.fs7_c00097{font-size:32.340000px;}
.fs4_c00097{font-size:35.700000px;}
.fs6_c00097{font-size:39.120000px;}
.y0_c00097{bottom:0.000000px;}
.y4a_c00097{bottom:251.745000px;}
.y49_c00097{bottom:252.825000px;}
.y4d_c00097{bottom:253.245000px;}
.y48_c00097{bottom:253.905000px;}
.y4b_c00097{bottom:254.130000px;}
.y4c_c00097{bottom:255.405000px;}
.y43_c00097{bottom:271.245000px;}
.y46_c00097{bottom:272.325000px;}
.y47_c00097{bottom:272.745000px;}
.y42_c00097{bottom:273.405000px;}
.y45_c00097{bottom:274.470000px;}
.y44_c00097{bottom:274.905000px;}
.y41_c00097{bottom:292.245000px;}
.y40_c00097{bottom:293.130000px;}
.y3f_c00097{bottom:294.405000px;}
.y3c_c00097{bottom:311.970000px;}
.y3b_c00097{bottom:312.825000px;}
.y3e_c00097{bottom:313.245000px;}
.y3a_c00097{bottom:313.470000px;}
.y39_c00097{bottom:313.905000px;}
.y3d_c00097{bottom:314.130000px;}
.y35_c00097{bottom:331.245000px;}
.y37_c00097{bottom:331.905000px;}
.y38_c00097{bottom:332.745000px;}
.y34_c00097{bottom:333.405000px;}
.y36_c00097{bottom:334.905000px;}
.y2e_c00097{bottom:350.745000px;}
.y31_c00097{bottom:351.405000px;}
.y30_c00097{bottom:352.050000px;}
.y2f_c00097{bottom:352.905000px;}
.y32_c00097{bottom:353.130000px;}
.y33_c00097{bottom:354.405000px;}
.y2b_c00097{bottom:369.825000px;}
.y25_c00097{bottom:370.245000px;}
.y2c_c00097{bottom:370.470000px;}
.y27_c00097{bottom:371.745000px;}
.y29_c00097{bottom:372.405000px;}
.y2d_c00097{bottom:372.630000px;}
.y2a_c00097{bottom:373.470000px;}
.y28_c00097{bottom:373.905000px;}
.y26_c00097{bottom:373.920000px;}
.y23_c00097{bottom:391.245000px;}
.y24_c00097{bottom:392.325000px;}
.y22_c00097{bottom:393.405000px;}
.y20_c00097{bottom:410.745000px;}
.y21_c00097{bottom:410.970000px;}
.y1f_c00097{bottom:411.825000px;}
.y1e_c00097{bottom:412.905000px;}
.y1b_c00097{bottom:428.970000px;}
.y19_c00097{bottom:430.245000px;}
.y1c_c00097{bottom:431.130000px;}
.y18_c00097{bottom:432.405000px;}
.y1d_c00097{bottom:432.630000px;}
.y1a_c00097{bottom:433.470000px;}
.y16_c00097{bottom:449.745000px;}
.y17_c00097{bottom:450.630000px;}
.y14_c00097{bottom:451.905000px;}
.y15_c00097{bottom:453.420000px;}
.y12_c00097{bottom:469.680000px;}
.y13_c00097{bottom:472.470000px;}
.y11_c00097{bottom:472.905000px;}
.yd_c00097{bottom:489.180000px;}
.ye_c00097{bottom:490.245000px;}
.y10_c00097{bottom:491.970000px;}
.yf_c00097{bottom:492.405000px;}
.yb_c00097{bottom:507.405000px;}
.ya_c00097{bottom:509.745000px;}
.yc_c00097{bottom:511.470000px;}
.y9_c00097{bottom:511.905000px;}
.y5_c00097{bottom:529.245000px;}
.y6_c00097{bottom:530.130000px;}
.y7_c00097{bottom:530.970000px;}
.y3_c00097{bottom:531.405000px;}
.y8_c00097{bottom:532.470000px;}
.y4_c00097{bottom:532.920000px;}
.ye6_c00097{bottom:553.695000px;}
.ye3_c00097{bottom:555.195000px;}
.ye5_c00097{bottom:555.420000px;}
.ye2_c00097{bottom:555.630000px;}
.ye4_c00097{bottom:556.695000px;}
.yde_c00097{bottom:565.050000px;}
.ye1_c00097{bottom:566.130000px;}
.ydc_c00097{bottom:568.275000px;}
.ydf_c00097{bottom:568.695000px;}
.ye0_c00097{bottom:568.920000px;}
.ydb_c00097{bottom:569.130000px;}
.yda_c00097{bottom:570.195000px;}
.ydd_c00097{bottom:570.420000px;}
.yd8_c00097{bottom:581.130000px;}
.yd3_c00097{bottom:582.195000px;}
.yd9_c00097{bottom:582.420000px;}
.yd4_c00097{bottom:582.630000px;}
.yd5_c00097{bottom:583.275000px;}
.yd6_c00097{bottom:583.920000px;}
.yd7_c00097{bottom:584.970000px;}
.yd1_c00097{bottom:595.695000px;}
.yd2_c00097{bottom:595.920000px;}
.yd0_c00097{bottom:596.130000px;}
.ycf_c00097{bottom:596.550000px;}
.yce_c00097{bottom:596.775000px;}
.ycd_c00097{bottom:597.630000px;}
.ycc_c00097{bottom:609.195000px;}
.ycb_c00097{bottom:609.420000px;}
.yc9_c00097{bottom:610.275000px;}
.yca_c00097{bottom:610.695000px;}
.yc8_c00097{bottom:611.130000px;}
.yc5_c00097{bottom:622.695000px;}
.yc7_c00097{bottom:622.920000px;}
.yc4_c00097{bottom:623.130000px;}
.yc3_c00097{bottom:624.195000px;}
.yc6_c00097{bottom:624.420000px;}
.yc2_c00097{bottom:624.630000px;}
.ybf_c00097{bottom:636.195000px;}
.yc1_c00097{bottom:636.420000px;}
.ybe_c00097{bottom:636.630000px;}
.ybd_c00097{bottom:637.695000px;}
.yc0_c00097{bottom:637.920000px;}
.ybc_c00097{bottom:638.130000px;}
.ybb_c00097{bottom:649.695000px;}
.yb9_c00097{bottom:651.195000px;}
.yba_c00097{bottom:651.420000px;}
.yb8_c00097{bottom:651.630000px;}
.yb7_c00097{bottom:652.695000px;}
.yb5_c00097{bottom:664.695000px;}
.yb6_c00097{bottom:664.920000px;}
.yb4_c00097{bottom:666.195000px;}
.yb3_c00097{bottom:666.630000px;}
.yb1_c00097{bottom:678.195000px;}
.yb2_c00097{bottom:678.420000px;}
.yb0_c00097{bottom:679.695000px;}
.yaf_c00097{bottom:690.630000px;}
.yad_c00097{bottom:691.695000px;}
.yac_c00097{bottom:693.195000px;}
.yae_c00097{bottom:693.420000px;}
.yaa_c00097{bottom:693.630000px;}
.yab_c00097{bottom:694.695000px;}
.ya9_c00097{bottom:704.130000px;}
.ya6_c00097{bottom:706.050000px;}
.ya7_c00097{bottom:706.695000px;}
.ya8_c00097{bottom:706.920000px;}
.ya5_c00097{bottom:707.130000px;}
.ya4_c00097{bottom:718.695000px;}
.ya2_c00097{bottom:719.130000px;}
.ya1_c00097{bottom:720.195000px;}
.ya3_c00097{bottom:720.420000px;}
.ya0_c00097{bottom:720.630000px;}
.y9f_c00097{bottom:721.695000px;}
.y9e_c00097{bottom:733.695000px;}
.y9d_c00097{bottom:733.920000px;}
.y9c_c00097{bottom:735.195000px;}
.y9a_c00097{bottom:735.630000px;}
.y9b_c00097{bottom:736.275000px;}
.y99_c00097{bottom:747.195000px;}
.y97_c00097{bottom:747.630000px;}
.y96_c00097{bottom:748.695000px;}
.y98_c00097{bottom:748.920000px;}
.y95_c00097{bottom:749.130000px;}
.y94_c00097{bottom:760.695000px;}
.y93_c00097{bottom:760.920000px;}
.y92_c00097{bottom:761.130000px;}
.y90_c00097{bottom:762.195000px;}
.y91_c00097{bottom:762.630000px;}
.y8f_c00097{bottom:777.195000px;}
.y8e_c00097{bottom:789.195000px;}
.y8d_c00097{bottom:790.695000px;}
.y8c_c00097{bottom:802.695000px;}
.y8b_c00097{bottom:804.195000px;}
.y8a_c00097{bottom:805.695000px;}
.y89_c00097{bottom:816.195000px;}
.y88_c00097{bottom:817.695000px;}
.y87_c00097{bottom:819.195000px;}
.y86_c00097{bottom:828.630000px;}
.y85_c00097{bottom:829.695000px;}
.y84_c00097{bottom:830.130000px;}
.y83_c00097{bottom:831.195000px;}
.y82_c00097{bottom:843.195000px;}
.y81_c00097{bottom:844.695000px;}
.y80_c00097{bottom:845.130000px;}
.y7f_c00097{bottom:846.195000px;}
.y7e_c00097{bottom:856.695000px;}
.y7c_c00097{bottom:857.130000px;}
.y7d_c00097{bottom:858.195000px;}
.y7b_c00097{bottom:858.630000px;}
.y7a_c00097{bottom:859.695000px;}
.y78_c00097{bottom:871.695000px;}
.y79_c00097{bottom:871.920000px;}
.y77_c00097{bottom:872.130000px;}
.y76_c00097{bottom:873.195000px;}
.y75_c00097{bottom:883.695000px;}
.y74_c00097{bottom:885.195000px;}
.y73_c00097{bottom:885.630000px;}
.y72_c00097{bottom:886.695000px;}
.y71_c00097{bottom:898.695000px;}
.y6f_c00097{bottom:899.130000px;}
.y70_c00097{bottom:900.195000px;}
.y6e_c00097{bottom:900.630000px;}
.y6d_c00097{bottom:901.695000px;}
.y6c_c00097{bottom:912.195000px;}
.y6b_c00097{bottom:913.695000px;}
.y6a_c00097{bottom:914.130000px;}
.y69_c00097{bottom:915.195000px;}
.y68_c00097{bottom:927.195000px;}
.y67_c00097{bottom:927.630000px;}
.y66_c00097{bottom:928.695000px;}
.y65_c00097{bottom:940.695000px;}
.y64_c00097{bottom:941.130000px;}
.y63_c00097{bottom:942.195000px;}
.y62_c00097{bottom:954.195000px;}
.y61_c00097{bottom:955.695000px;}
.y60_c00097{bottom:972.630000px;}
.y5f_c00097{bottom:973.695000px;}
.y5e_c00097{bottom:984.630000px;}
.y5c_c00097{bottom:985.695000px;}
.y5a_c00097{bottom:986.130000px;}
.y5d_c00097{bottom:986.775000px;}
.y5b_c00097{bottom:988.695000px;}
.y59_c00097{bottom:1009.470000px;}
.y58_c00097{bottom:1010.550000px;}
.y55_c00097{bottom:1022.325000px;}
.y54_c00097{bottom:1023.405000px;}
.y57_c00097{bottom:1024.470000px;}
.y56_c00097{bottom:1025.550000px;}
.y53_c00097{bottom:1038.405000px;}
.y52_c00097{bottom:1038.630000px;}
.y51_c00097{bottom:1039.050000px;}
.y4f_c00097{bottom:1039.470000px;}
.y50_c00097{bottom:1040.550000px;}
.y4e_c00097{bottom:1064.550000px;}
.y2_c00097{bottom:1099.050000px;}
.y1_c00097{bottom:1100.970000px;}
.h4_c00097{height:4.206533px;}
.ha_c00097{height:14.612168px;}
.h9_c00097{height:16.752334px;}
.h6_c00097{height:23.025234px;}
.h2_c00097{height:25.091602px;}
.h1_c00097{height:31.364502px;}
.h3_c00097{height:35.571035px;}
.h8_c00097{height:39.777568px;}
.h5_c00097{height:43.910303px;}
.h7_c00097{height:48.116836px;}
.h0_c00097{height:1335.000000px;}
.w0_c00097{width:880.500000px;}
.x0_c00097{left:0.000000px;}
.x7b_c00097{left:149.580000px;}
.x3b_c00097{left:151.080000px;}
.xe_c00097{left:152.580000px;}
.x1_c00097{left:154.080000px;}
.x2f_c00097{left:167.580000px;}
.x3_c00097{left:169.080000px;}
.x88_c00097{left:181.500000px;}
.x4d_c00097{left:183.000000px;}
.x25_c00097{left:184.080000px;}
.x67_c00097{left:192.000000px;}
.x45_c00097{left:197.580000px;}
.x5f_c00097{left:199.920000px;}
.x26_c00097{left:206.580000px;}
.x1a_c00097{left:214.080000px;}
.x89_c00097{left:217.500000px;}
.xf_c00097{left:218.580000px;}
.x3c_c00097{left:222.000000px;}
.x7c_c00097{left:226.920000px;}
.x70_c00097{left:229.080000px;}
.x4e_c00097{left:231.420000px;}
.x60_c00097{left:237.420000px;}
.x1b_c00097{left:238.920000px;}
.x27_c00097{left:244.500000px;}
.xab_c00097{left:247.500000px;}
.x46_c00097{left:249.420000px;}
.x99_c00097{left:250.500000px;}
.x90_c00097{left:252.000000px;}
.x30_c00097{left:255.000000px;}
.x54_c00097{left:256.500000px;}
.x68_c00097{left:259.080000px;}
.x4_c00097{left:261.000000px;}
.x61_c00097{left:264.420000px;}
.x1c_c00097{left:267.000000px;}
.x7d_c00097{left:268.920000px;}
.xac_c00097{left:271.500000px;}
.x9a_c00097{left:272.580000px;}
.x55_c00097{left:275.580000px;}
.x31_c00097{left:277.080000px;}
.xa5_c00097{left:280.920000px;}
.x5_c00097{left:282.000000px;}
.xb2_c00097{left:283.080000px;}
.xbb_c00097{left:286.500000px;}
.xb3_c00097{left:288.000000px;}
.x4f_c00097{left:292.500000px;}
.x71_c00097{left:295.500000px;}
.xae_c00097{left:296.580000px;}
.xbc_c00097{left:300.000000px;}
.x10_c00097{left:301.500000px;}
.x28_c00097{left:304.500000px;}
.xb0_c00097{left:306.000000px;}
.x62_c00097{left:307.080000px;}
.x50_c00097{left:309.420000px;}
.xb6_c00097{left:310.500000px;}
.xb8_c00097{left:313.500000px;}
.x8a_c00097{left:315.420000px;}
.x6_c00097{left:316.500000px;}
.xa3_c00097{left:318.000000px;}
.x72_c00097{left:319.500000px;}
.x47_c00097{left:320.580000px;}
.x69_c00097{left:322.080000px;}
.x95_c00097{left:325.500000px;}
.x56_c00097{left:331.080000px;}
.xa4_c00097{left:334.080000px;}
.x51_c00097{left:336.000000px;}
.x1d_c00097{left:337.500000px;}
.x11_c00097{left:339.000000px;}
.x48_c00097{left:342.000000px;}
.xb1_c00097{left:348.000000px;}
.x32_c00097{left:349.500000px;}
.x3d_c00097{left:351.000000px;}
.x63_c00097{left:354.000000px;}
.x12_c00097{left:361.920000px;}
.x29_c00097{left:364.920000px;}
.x6a_c00097{left:367.920000px;}
.x7e_c00097{left:369.420000px;}
.x33_c00097{left:370.500000px;}
.x73_c00097{left:372.420000px;}
.x7_c00097{left:373.500000px;}
.x8b_c00097{left:382.500000px;}
.x3e_c00097{left:383.580000px;}
.x64_c00097{left:385.500000px;}
.x13_c00097{left:387.000000px;}
.x91_c00097{left:390.000000px;}
.x6b_c00097{left:393.000000px;}
.x83_c00097{left:396.420000px;}
.x96_c00097{left:397.500000px;}
.x74_c00097{left:400.920000px;}
.x2_c00097{left:402.000000px;}
.x34_c00097{left:406.500000px;}
.x98_c00097{left:408.000000px;}
.x57_c00097{left:409.920000px;}
.xa1_c00097{left:411.000000px;}
.x7f_c00097{left:412.920000px;}
.xb4_c00097{left:414.000000px;}
.x1e_c00097{left:415.500000px;}
.x14_c00097{left:416.580000px;}
.x8c_c00097{left:418.080000px;}
.x9e_c00097{left:420.000000px;}
.x8_c00097{left:424.920000px;}
.x49_c00097{left:428.580000px;}
.x6c_c00097{left:430.080000px;}
.x75_c00097{left:431.580000px;}
.x84_c00097{left:435.420000px;}
.x8d_c00097{left:436.920000px;}
.x2a_c00097{left:439.080000px;}
.x80_c00097{left:441.420000px;}
.x3f_c00097{left:447.000000px;}
.x15_c00097{left:449.580000px;}
.xad_c00097{left:451.500000px;}
.x9b_c00097{left:453.000000px;}
.xba_c00097{left:454.500000px;}
.x65_c00097{left:457.500000px;}
.x35_c00097{left:460.500000px;}
.x76_c00097{left:461.580000px;}
.x85_c00097{left:464.580000px;}
.x9_c00097{left:466.080000px;}
.x58_c00097{left:468.420000px;}
.x2b_c00097{left:471.000000px;}
.x81_c00097{left:472.500000px;}
.x6d_c00097{left:474.420000px;}
.xa0_c00097{left:475.500000px;}
.xb9_c00097{left:477.000000px;}
.x4a_c00097{left:478.080000px;}
.x77_c00097{left:481.920000px;}
.xa7_c00097{left:483.000000px;}
.x1f_c00097{left:486.000000px;}
.x92_c00097{left:487.920000px;}
.x52_c00097{left:489.420000px;}
.x36_c00097{left:496.080000px;}
.x40_c00097{left:498.420000px;}
.x86_c00097{left:500.580000px;}
.x59_c00097{left:505.500000px;}
.x20_c00097{left:506.580000px;}
.xb5_c00097{left:508.500000px;}
.x78_c00097{left:510.420000px;}
.x16_c00097{left:512.580000px;}
.x9c_c00097{left:516.000000px;}
.x87_c00097{left:520.920000px;}
.xa_c00097{left:524.580000px;}
.x2c_c00097{left:527.580000px;}
.xa2_c00097{left:537.000000px;}
.x5a_c00097{left:538.500000px;}
.xb7_c00097{left:540.000000px;}
.x82_c00097{left:541.500000px;}
.x41_c00097{left:547.920000px;}
.x93_c00097{left:553.500000px;}
.x53_c00097{left:555.000000px;}
.x5b_c00097{left:558.000000px;}
.x97_c00097{left:559.500000px;}
.x4b_c00097{left:560.580000px;}
.x21_c00097{left:562.080000px;}
.xb_c00097{left:576.000000px;}
.xa6_c00097{left:577.500000px;}
.x9d_c00097{left:579.000000px;}
.xa9_c00097{left:582.000000px;}
.xa8_c00097{left:583.500000px;}
.x42_c00097{left:585.000000px;}
.xaf_c00097{left:586.500000px;}
.x17_c00097{left:587.580000px;}
.x37_c00097{left:591.420000px;}
.x5c_c00097{left:592.500000px;}
.x43_c00097{left:597.420000px;}
.x22_c00097{left:610.080000px;}
.x2d_c00097{left:618.000000px;}
.x6e_c00097{left:619.920000px;}
.x38_c00097{left:621.420000px;}
.xaa_c00097{left:622.500000px;}
.x94_c00097{left:624.420000px;}
.x66_c00097{left:625.500000px;}
.x9f_c00097{left:627.000000px;}
.x5d_c00097{left:630.000000px;}
.x2e_c00097{left:637.500000px;}
.x23_c00097{left:643.920000px;}
.x6f_c00097{left:646.500000px;}
.x4c_c00097{left:652.920000px;}
.xc_c00097{left:655.500000px;}
.x39_c00097{left:658.920000px;}
.x5e_c00097{left:663.000000px;}
.x18_c00097{left:669.000000px;}
.x79_c00097{left:670.500000px;}
.x24_c00097{left:672.000000px;}
.xd_c00097{left:679.500000px;}
.x8e_c00097{left:684.420000px;}
.x3a_c00097{left:697.920000px;}
.x44_c00097{left:700.500000px;}
.x19_c00097{left:702.000000px;}
.x8f_c00097{left:708.420000px;}
.x7a_c00097{left:716.580000px;}
@media print{
.v1_c00097{vertical-align:-5.333333pt;}
.v0_c00097{vertical-align:0.000000pt;}
.ls2_c00097{letter-spacing:0.000000pt;}
.ls0_c00097{letter-spacing:34.012283pt;}
.ls1_c00097{letter-spacing:75.606225pt;}
.ws0_c00097{word-spacing:-29.441551pt;}
.ws18_c00097{word-spacing:0.000000pt;}
.wse_c00097{word-spacing:3.851146pt;}
.ws17_c00097{word-spacing:4.450384pt;}
.ws15_c00097{word-spacing:6.117969pt;}
.ws1_c00097{word-spacing:6.758369pt;}
.ws10_c00097{word-spacing:7.682370pt;}
.wsd_c00097{word-spacing:9.597981pt;}
.ws11_c00097{word-spacing:10.419550pt;}
.ws12_c00097{word-spacing:11.120724pt;}
.wsa_c00097{word-spacing:11.513593pt;}
.ws13_c00097{word-spacing:14.455894pt;}
.wsc_c00097{word-spacing:16.092303pt;}
.wsb_c00097{word-spacing:16.123479pt;}
.wsf_c00097{word-spacing:18.253132pt;}
.ws2_c00097{word-spacing:21.091652pt;}
.ws14_c00097{word-spacing:21.858920pt;}
.ws6_c00097{word-spacing:22.196505pt;}
.ws16_c00097{word-spacing:22.202264pt;}
.ws9_c00097{word-spacing:22.793818pt;}
.ws3_c00097{word-spacing:24.570361pt;}
.ws8_c00097{word-spacing:28.300707pt;}
.ws4_c00097{word-spacing:29.318074pt;}
.ws7_c00097{word-spacing:41.187355pt;}
.ws5_c00097{word-spacing:43.561211pt;}
._0_c00097{margin-left:-34.012283pt;}
._4_c00097{width:13.966924pt;}
._3_c00097{width:16.668275pt;}
._2_c00097{width:18.583887pt;}
._5_c00097{width:20.637264pt;}
._1_c00097{width:22.415110pt;}
.fs3_c00097{font-size:3.040000pt;}
.fs9_c00097{font-size:10.560000pt;}
.fs8_c00097{font-size:12.106667pt;}
.fs5_c00097{font-size:16.640000pt;}
.fs1_c00097{font-size:18.133333pt;}
.fs0_c00097{font-size:22.666667pt;}
.fs2_c00097{font-size:25.706667pt;}
.fs7_c00097{font-size:28.746667pt;}
.fs4_c00097{font-size:31.733333pt;}
.fs6_c00097{font-size:34.773333pt;}
.y0_c00097{bottom:0.000000pt;}
.y4a_c00097{bottom:223.773333pt;}
.y49_c00097{bottom:224.733333pt;}
.y4d_c00097{bottom:225.106667pt;}
.y48_c00097{bottom:225.693333pt;}
.y4b_c00097{bottom:225.893333pt;}
.y4c_c00097{bottom:227.026667pt;}
.y43_c00097{bottom:241.106667pt;}
.y46_c00097{bottom:242.066667pt;}
.y47_c00097{bottom:242.440000pt;}
.y42_c00097{bottom:243.026667pt;}
.y45_c00097{bottom:243.973333pt;}
.y44_c00097{bottom:244.360000pt;}
.y41_c00097{bottom:259.773333pt;}
.y40_c00097{bottom:260.560000pt;}
.y3f_c00097{bottom:261.693333pt;}
.y3c_c00097{bottom:277.306667pt;}
.y3b_c00097{bottom:278.066667pt;}
.y3e_c00097{bottom:278.440000pt;}
.y3a_c00097{bottom:278.640000pt;}
.y39_c00097{bottom:279.026667pt;}
.y3d_c00097{bottom:279.226667pt;}
.y35_c00097{bottom:294.440000pt;}
.y37_c00097{bottom:295.026667pt;}
.y38_c00097{bottom:295.773333pt;}
.y34_c00097{bottom:296.360000pt;}
.y36_c00097{bottom:297.693333pt;}
.y2e_c00097{bottom:311.773333pt;}
.y31_c00097{bottom:312.360000pt;}
.y30_c00097{bottom:312.933333pt;}
.y2f_c00097{bottom:313.693333pt;}
.y32_c00097{bottom:313.893333pt;}
.y33_c00097{bottom:315.026667pt;}
.y2b_c00097{bottom:328.733333pt;}
.y25_c00097{bottom:329.106667pt;}
.y2c_c00097{bottom:329.306667pt;}
.y27_c00097{bottom:330.440000pt;}
.y29_c00097{bottom:331.026667pt;}
.y2d_c00097{bottom:331.226667pt;}
.y2a_c00097{bottom:331.973333pt;}
.y28_c00097{bottom:332.360000pt;}
.y26_c00097{bottom:332.373333pt;}
.y23_c00097{bottom:347.773333pt;}
.y24_c00097{bottom:348.733333pt;}
.y22_c00097{bottom:349.693333pt;}
.y20_c00097{bottom:365.106667pt;}
.y21_c00097{bottom:365.306667pt;}
.y1f_c00097{bottom:366.066667pt;}
.y1e_c00097{bottom:367.026667pt;}
.y1b_c00097{bottom:381.306667pt;}
.y19_c00097{bottom:382.440000pt;}
.y1c_c00097{bottom:383.226667pt;}
.y18_c00097{bottom:384.360000pt;}
.y1d_c00097{bottom:384.560000pt;}
.y1a_c00097{bottom:385.306667pt;}
.y16_c00097{bottom:399.773333pt;}
.y17_c00097{bottom:400.560000pt;}
.y14_c00097{bottom:401.693333pt;}
.y15_c00097{bottom:403.040000pt;}
.y12_c00097{bottom:417.493333pt;}
.y13_c00097{bottom:419.973333pt;}
.y11_c00097{bottom:420.360000pt;}
.yd_c00097{bottom:434.826667pt;}
.ye_c00097{bottom:435.773333pt;}
.y10_c00097{bottom:437.306667pt;}
.yf_c00097{bottom:437.693333pt;}
.yb_c00097{bottom:451.026667pt;}
.ya_c00097{bottom:453.106667pt;}
.yc_c00097{bottom:454.640000pt;}
.y9_c00097{bottom:455.026667pt;}
.y5_c00097{bottom:470.440000pt;}
.y6_c00097{bottom:471.226667pt;}
.y7_c00097{bottom:471.973333pt;}
.y3_c00097{bottom:472.360000pt;}
.y8_c00097{bottom:473.306667pt;}
.y4_c00097{bottom:473.706667pt;}
.ye6_c00097{bottom:492.173333pt;}
.ye3_c00097{bottom:493.506667pt;}
.ye5_c00097{bottom:493.706667pt;}
.ye2_c00097{bottom:493.893333pt;}
.ye4_c00097{bottom:494.840000pt;}
.yde_c00097{bottom:502.266667pt;}
.ye1_c00097{bottom:503.226667pt;}
.ydc_c00097{bottom:505.133333pt;}
.ydf_c00097{bottom:505.506667pt;}
.ye0_c00097{bottom:505.706667pt;}
.ydb_c00097{bottom:505.893333pt;}
.yda_c00097{bottom:506.840000pt;}
.ydd_c00097{bottom:507.040000pt;}
.yd8_c00097{bottom:516.560000pt;}
.yd3_c00097{bottom:517.506667pt;}
.yd9_c00097{bottom:517.706667pt;}
.yd4_c00097{bottom:517.893333pt;}
.yd5_c00097{bottom:518.466667pt;}
.yd6_c00097{bottom:519.040000pt;}
.yd7_c00097{bottom:519.973333pt;}
.yd1_c00097{bottom:529.506667pt;}
.yd2_c00097{bottom:529.706667pt;}
.yd0_c00097{bottom:529.893333pt;}
.ycf_c00097{bottom:530.266667pt;}
.yce_c00097{bottom:530.466667pt;}
.ycd_c00097{bottom:531.226667pt;}
.ycc_c00097{bottom:541.506667pt;}
.ycb_c00097{bottom:541.706667pt;}
.yc9_c00097{bottom:542.466667pt;}
.yca_c00097{bottom:542.840000pt;}
.yc8_c00097{bottom:543.226667pt;}
.yc5_c00097{bottom:553.506667pt;}
.yc7_c00097{bottom:553.706667pt;}
.yc4_c00097{bottom:553.893333pt;}
.yc3_c00097{bottom:554.840000pt;}
.yc6_c00097{bottom:555.040000pt;}
.yc2_c00097{bottom:555.226667pt;}
.ybf_c00097{bottom:565.506667pt;}
.yc1_c00097{bottom:565.706667pt;}
.ybe_c00097{bottom:565.893333pt;}
.ybd_c00097{bottom:566.840000pt;}
.yc0_c00097{bottom:567.040000pt;}
.ybc_c00097{bottom:567.226667pt;}
.ybb_c00097{bottom:577.506667pt;}
.yb9_c00097{bottom:578.840000pt;}
.yba_c00097{bottom:579.040000pt;}
.yb8_c00097{bottom:579.226667pt;}
.yb7_c00097{bottom:580.173333pt;}
.yb5_c00097{bottom:590.840000pt;}
.yb6_c00097{bottom:591.040000pt;}
.yb4_c00097{bottom:592.173333pt;}
.yb3_c00097{bottom:592.560000pt;}
.yb1_c00097{bottom:602.840000pt;}
.yb2_c00097{bottom:603.040000pt;}
.yb0_c00097{bottom:604.173333pt;}
.yaf_c00097{bottom:613.893333pt;}
.yad_c00097{bottom:614.840000pt;}
.yac_c00097{bottom:616.173333pt;}
.yae_c00097{bottom:616.373333pt;}
.yaa_c00097{bottom:616.560000pt;}
.yab_c00097{bottom:617.506667pt;}
.ya9_c00097{bottom:625.893333pt;}
.ya6_c00097{bottom:627.600000pt;}
.ya7_c00097{bottom:628.173333pt;}
.ya8_c00097{bottom:628.373333pt;}
.ya5_c00097{bottom:628.560000pt;}
.ya4_c00097{bottom:638.840000pt;}
.ya2_c00097{bottom:639.226667pt;}
.ya1_c00097{bottom:640.173333pt;}
.ya3_c00097{bottom:640.373333pt;}
.ya0_c00097{bottom:640.560000pt;}
.y9f_c00097{bottom:641.506667pt;}
.y9e_c00097{bottom:652.173333pt;}
.y9d_c00097{bottom:652.373333pt;}
.y9c_c00097{bottom:653.506667pt;}
.y9a_c00097{bottom:653.893333pt;}
.y9b_c00097{bottom:654.466667pt;}
.y99_c00097{bottom:664.173333pt;}
.y97_c00097{bottom:664.560000pt;}
.y96_c00097{bottom:665.506667pt;}
.y98_c00097{bottom:665.706667pt;}
.y95_c00097{bottom:665.893333pt;}
.y94_c00097{bottom:676.173333pt;}
.y93_c00097{bottom:676.373333pt;}
.y92_c00097{bottom:676.560000pt;}
.y90_c00097{bottom:677.506667pt;}
.y91_c00097{bottom:677.893333pt;}
.y8f_c00097{bottom:690.840000pt;}
.y8e_c00097{bottom:701.506667pt;}
.y8d_c00097{bottom:702.840000pt;}
.y8c_c00097{bottom:713.506667pt;}
.y8b_c00097{bottom:714.840000pt;}
.y8a_c00097{bottom:716.173333pt;}
.y89_c00097{bottom:725.506667pt;}
.y88_c00097{bottom:726.840000pt;}
.y87_c00097{bottom:728.173333pt;}
.y86_c00097{bottom:736.560000pt;}
.y85_c00097{bottom:737.506667pt;}
.y84_c00097{bottom:737.893333pt;}
.y83_c00097{bottom:738.840000pt;}
.y82_c00097{bottom:749.506667pt;}
.y81_c00097{bottom:750.840000pt;}
.y80_c00097{bottom:751.226667pt;}
.y7f_c00097{bottom:752.173333pt;}
.y7e_c00097{bottom:761.506667pt;}
.y7c_c00097{bottom:761.893333pt;}
.y7d_c00097{bottom:762.840000pt;}
.y7b_c00097{bottom:763.226667pt;}
.y7a_c00097{bottom:764.173333pt;}
.y78_c00097{bottom:774.840000pt;}
.y79_c00097{bottom:775.040000pt;}
.y77_c00097{bottom:775.226667pt;}
.y76_c00097{bottom:776.173333pt;}
.y75_c00097{bottom:785.506667pt;}
.y74_c00097{bottom:786.840000pt;}
.y73_c00097{bottom:787.226667pt;}
.y72_c00097{bottom:788.173333pt;}
.y71_c00097{bottom:798.840000pt;}
.y6f_c00097{bottom:799.226667pt;}
.y70_c00097{bottom:800.173333pt;}
.y6e_c00097{bottom:800.560000pt;}
.y6d_c00097{bottom:801.506667pt;}
.y6c_c00097{bottom:810.840000pt;}
.y6b_c00097{bottom:812.173333pt;}
.y6a_c00097{bottom:812.560000pt;}
.y69_c00097{bottom:813.506667pt;}
.y68_c00097{bottom:824.173333pt;}
.y67_c00097{bottom:824.560000pt;}
.y66_c00097{bottom:825.506667pt;}
.y65_c00097{bottom:836.173333pt;}
.y64_c00097{bottom:836.560000pt;}
.y63_c00097{bottom:837.506667pt;}
.y62_c00097{bottom:848.173333pt;}
.y61_c00097{bottom:849.506667pt;}
.y60_c00097{bottom:864.560000pt;}
.y5f_c00097{bottom:865.506667pt;}
.y5e_c00097{bottom:875.226667pt;}
.y5c_c00097{bottom:876.173333pt;}
.y5a_c00097{bottom:876.560000pt;}
.y5d_c00097{bottom:877.133333pt;}
.y5b_c00097{bottom:878.840000pt;}
.y59_c00097{bottom:897.306667pt;}
.y58_c00097{bottom:898.266667pt;}
.y55_c00097{bottom:908.733333pt;}
.y54_c00097{bottom:909.693333pt;}
.y57_c00097{bottom:910.640000pt;}
.y56_c00097{bottom:911.600000pt;}
.y53_c00097{bottom:923.026667pt;}
.y52_c00097{bottom:923.226667pt;}
.y51_c00097{bottom:923.600000pt;}
.y4f_c00097{bottom:923.973333pt;}
.y50_c00097{bottom:924.933333pt;}
.y4e_c00097{bottom:946.266667pt;}
.y2_c00097{bottom:976.933333pt;}
.y1_c00097{bottom:978.640000pt;}
.h4_c00097{height:3.739141pt;}
.ha_c00097{height:12.988594pt;}
.h9_c00097{height:14.890964pt;}
.h6_c00097{height:20.466875pt;}
.h2_c00097{height:22.303646pt;}
.h1_c00097{height:27.879557pt;}
.h3_c00097{height:31.618698pt;}
.h8_c00097{height:35.357839pt;}
.h5_c00097{height:39.031380pt;}
.h7_c00097{height:42.770521pt;}
.h0_c00097{height:1186.666667pt;}
.w0_c00097{width:782.666667pt;}
.x0_c00097{left:0.000000pt;}
.x7b_c00097{left:132.960000pt;}
.x3b_c00097{left:134.293333pt;}
.xe_c00097{left:135.626667pt;}
.x1_c00097{left:136.960000pt;}
.x2f_c00097{left:148.960000pt;}
.x3_c00097{left:150.293333pt;}
.x88_c00097{left:161.333333pt;}
.x4d_c00097{left:162.666667pt;}
.x25_c00097{left:163.626667pt;}
.x67_c00097{left:170.666667pt;}
.x45_c00097{left:175.626667pt;}
.x5f_c00097{left:177.706667pt;}
.x26_c00097{left:183.626667pt;}
.x1a_c00097{left:190.293333pt;}
.x89_c00097{left:193.333333pt;}
.xf_c00097{left:194.293333pt;}
.x3c_c00097{left:197.333333pt;}
.x7c_c00097{left:201.706667pt;}
.x70_c00097{left:203.626667pt;}
.x4e_c00097{left:205.706667pt;}
.x60_c00097{left:211.040000pt;}
.x1b_c00097{left:212.373333pt;}
.x27_c00097{left:217.333333pt;}
.xab_c00097{left:220.000000pt;}
.x46_c00097{left:221.706667pt;}
.x99_c00097{left:222.666667pt;}
.x90_c00097{left:224.000000pt;}
.x30_c00097{left:226.666667pt;}
.x54_c00097{left:228.000000pt;}
.x68_c00097{left:230.293333pt;}
.x4_c00097{left:232.000000pt;}
.x61_c00097{left:235.040000pt;}
.x1c_c00097{left:237.333333pt;}
.x7d_c00097{left:239.040000pt;}
.xac_c00097{left:241.333333pt;}
.x9a_c00097{left:242.293333pt;}
.x55_c00097{left:244.960000pt;}
.x31_c00097{left:246.293333pt;}
.xa5_c00097{left:249.706667pt;}
.x5_c00097{left:250.666667pt;}
.xb2_c00097{left:251.626667pt;}
.xbb_c00097{left:254.666667pt;}
.xb3_c00097{left:256.000000pt;}
.x4f_c00097{left:260.000000pt;}
.x71_c00097{left:262.666667pt;}
.xae_c00097{left:263.626667pt;}
.xbc_c00097{left:266.666667pt;}
.x10_c00097{left:268.000000pt;}
.x28_c00097{left:270.666667pt;}
.xb0_c00097{left:272.000000pt;}
.x62_c00097{left:272.960000pt;}
.x50_c00097{left:275.040000pt;}
.xb6_c00097{left:276.000000pt;}
.xb8_c00097{left:278.666667pt;}
.x8a_c00097{left:280.373333pt;}
.x6_c00097{left:281.333333pt;}
.xa3_c00097{left:282.666667pt;}
.x72_c00097{left:284.000000pt;}
.x47_c00097{left:284.960000pt;}
.x69_c00097{left:286.293333pt;}
.x95_c00097{left:289.333333pt;}
.x56_c00097{left:294.293333pt;}
.xa4_c00097{left:296.960000pt;}
.x51_c00097{left:298.666667pt;}
.x1d_c00097{left:300.000000pt;}
.x11_c00097{left:301.333333pt;}
.x48_c00097{left:304.000000pt;}
.xb1_c00097{left:309.333333pt;}
.x32_c00097{left:310.666667pt;}
.x3d_c00097{left:312.000000pt;}
.x63_c00097{left:314.666667pt;}
.x12_c00097{left:321.706667pt;}
.x29_c00097{left:324.373333pt;}
.x6a_c00097{left:327.040000pt;}
.x7e_c00097{left:328.373333pt;}
.x33_c00097{left:329.333333pt;}
.x73_c00097{left:331.040000pt;}
.x7_c00097{left:332.000000pt;}
.x8b_c00097{left:340.000000pt;}
.x3e_c00097{left:340.960000pt;}
.x64_c00097{left:342.666667pt;}
.x13_c00097{left:344.000000pt;}
.x91_c00097{left:346.666667pt;}
.x6b_c00097{left:349.333333pt;}
.x83_c00097{left:352.373333pt;}
.x96_c00097{left:353.333333pt;}
.x74_c00097{left:356.373333pt;}
.x2_c00097{left:357.333333pt;}
.x34_c00097{left:361.333333pt;}
.x98_c00097{left:362.666667pt;}
.x57_c00097{left:364.373333pt;}
.xa1_c00097{left:365.333333pt;}
.x7f_c00097{left:367.040000pt;}
.xb4_c00097{left:368.000000pt;}
.x1e_c00097{left:369.333333pt;}
.x14_c00097{left:370.293333pt;}
.x8c_c00097{left:371.626667pt;}
.x9e_c00097{left:373.333333pt;}
.x8_c00097{left:377.706667pt;}
.x49_c00097{left:380.960000pt;}
.x6c_c00097{left:382.293333pt;}
.x75_c00097{left:383.626667pt;}
.x84_c00097{left:387.040000pt;}
.x8d_c00097{left:388.373333pt;}
.x2a_c00097{left:390.293333pt;}
.x80_c00097{left:392.373333pt;}
.x3f_c00097{left:397.333333pt;}
.x15_c00097{left:399.626667pt;}
.xad_c00097{left:401.333333pt;}
.x9b_c00097{left:402.666667pt;}
.xba_c00097{left:404.000000pt;}
.x65_c00097{left:406.666667pt;}
.x35_c00097{left:409.333333pt;}
.x76_c00097{left:410.293333pt;}
.x85_c00097{left:412.960000pt;}
.x9_c00097{left:414.293333pt;}
.x58_c00097{left:416.373333pt;}
.x2b_c00097{left:418.666667pt;}
.x81_c00097{left:420.000000pt;}
.x6d_c00097{left:421.706667pt;}
.xa0_c00097{left:422.666667pt;}
.xb9_c00097{left:424.000000pt;}
.x4a_c00097{left:424.960000pt;}
.x77_c00097{left:428.373333pt;}
.xa7_c00097{left:429.333333pt;}
.x1f_c00097{left:432.000000pt;}
.x92_c00097{left:433.706667pt;}
.x52_c00097{left:435.040000pt;}
.x36_c00097{left:440.960000pt;}
.x40_c00097{left:443.040000pt;}
.x86_c00097{left:444.960000pt;}
.x59_c00097{left:449.333333pt;}
.x20_c00097{left:450.293333pt;}
.xb5_c00097{left:452.000000pt;}
.x78_c00097{left:453.706667pt;}
.x16_c00097{left:455.626667pt;}
.x9c_c00097{left:458.666667pt;}
.x87_c00097{left:463.040000pt;}
.xa_c00097{left:466.293333pt;}
.x2c_c00097{left:468.960000pt;}
.xa2_c00097{left:477.333333pt;}
.x5a_c00097{left:478.666667pt;}
.xb7_c00097{left:480.000000pt;}
.x82_c00097{left:481.333333pt;}
.x41_c00097{left:487.040000pt;}
.x93_c00097{left:492.000000pt;}
.x53_c00097{left:493.333333pt;}
.x5b_c00097{left:496.000000pt;}
.x97_c00097{left:497.333333pt;}
.x4b_c00097{left:498.293333pt;}
.x21_c00097{left:499.626667pt;}
.xb_c00097{left:512.000000pt;}
.xa6_c00097{left:513.333333pt;}
.x9d_c00097{left:514.666667pt;}
.xa9_c00097{left:517.333333pt;}
.xa8_c00097{left:518.666667pt;}
.x42_c00097{left:520.000000pt;}
.xaf_c00097{left:521.333333pt;}
.x17_c00097{left:522.293333pt;}
.x37_c00097{left:525.706667pt;}
.x5c_c00097{left:526.666667pt;}
.x43_c00097{left:531.040000pt;}
.x22_c00097{left:542.293333pt;}
.x2d_c00097{left:549.333333pt;}
.x6e_c00097{left:551.040000pt;}
.x38_c00097{left:552.373333pt;}
.xaa_c00097{left:553.333333pt;}
.x94_c00097{left:555.040000pt;}
.x66_c00097{left:556.000000pt;}
.x9f_c00097{left:557.333333pt;}
.x5d_c00097{left:560.000000pt;}
.x2e_c00097{left:566.666667pt;}
.x23_c00097{left:572.373333pt;}
.x6f_c00097{left:574.666667pt;}
.x4c_c00097{left:580.373333pt;}
.xc_c00097{left:582.666667pt;}
.x39_c00097{left:585.706667pt;}
.x5e_c00097{left:589.333333pt;}
.x18_c00097{left:594.666667pt;}
.x79_c00097{left:596.000000pt;}
.x24_c00097{left:597.333333pt;}
.xd_c00097{left:604.000000pt;}
.x8e_c00097{left:608.373333pt;}
.x3a_c00097{left:620.373333pt;}
.x44_c00097{left:622.666667pt;}
.x19_c00097{left:624.000000pt;}
.x8f_c00097{left:629.706667pt;}
.x7a_c00097{left:636.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_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_3aee8cf5390b722b780128ad.woff2')format("woff");}.ff1_c00098{font-family:ff1_c00098;line-height:1.688965;font-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_c00098{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m37_c00098{transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);}
.m0_c00098{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m71_c00098{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m7c_c00098{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m69_c00098{transform:matrix(0.369248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369248,0.000000,0.000000,0.250000,0,0);}
.mab_c00098{transform:matrix(0.370015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370015,0.000000,0.000000,0.250000,0,0);}
.mb0_c00098{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m9c_c00098{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.ma1_c00098{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.mb6_c00098{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m66_c00098{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m68_c00098{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.md4_c00098{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m95_c00098{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m5d_c00098{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m21_c00098{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m58_c00098{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m65_c00098{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.md0_c00098{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m57_c00098{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m72_c00098{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m45_c00098{transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);}
.mac_c00098{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m2c_c00098{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m73_c00098{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m2f_c00098{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m7f_c00098{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m24_c00098{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m5_c00098{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m1d_c00098{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m12_c00098{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.md7_c00098{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m5b_c00098{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mc0_c00098{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.mad_c00098{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m70_c00098{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m31_c00098{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m97_c00098{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m1a_c00098{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m41_c00098{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m6d_c00098{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m22_c00098{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m4e_c00098{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mb4_c00098{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m46_c00098{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.md3_c00098{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.mba_c00098{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.m19_c00098{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.maf_c00098{transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);}
.m83_c00098{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.m44_c00098{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.ma2_c00098{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mdc_c00098{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m3e_c00098{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m81_c00098{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m62_c00098{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mcb_c00098{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m50_c00098{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m64_c00098{transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);}
.m4a_c00098{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mcd_c00098{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mc6_c00098{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.ma4_c00098{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m38_c00098{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m87_c00098{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.mbf_c00098{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.m89_c00098{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.mf_c00098{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.ma6_c00098{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m6e_c00098{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.ma_c00098{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mb3_c00098{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m7b_c00098{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.mbd_c00098{transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);}
.m30_c00098{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.mda_c00098{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m98_c00098{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m93_c00098{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m90_c00098{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.mbb_c00098{transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);}
.m27_c00098{transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);}
.m67_c00098{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.m51_c00098{transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);}
.mc4_c00098{transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);}
.m4_c00098{transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);}
.m8a_c00098{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m86_c00098{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m42_c00098{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m96_c00098{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.m49_c00098{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.mb8_c00098{transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);}
.m39_c00098{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m7a_c00098{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mca_c00098{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m8c_c00098{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m3_c00098{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mcf_c00098{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.ma9_c00098{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.ma3_c00098{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m6b_c00098{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m9d_c00098{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m91_c00098{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m43_c00098{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mc9_c00098{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m4c_c00098{transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);}
.m3b_c00098{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);}
.m94_c00098{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m74_c00098{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m5c_c00098{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.mc3_c00098{transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);}
.m78_c00098{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.m84_c00098{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.md9_c00098{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m15_c00098{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m9b_c00098{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m56_c00098{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mbe_c00098{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m2d_c00098{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mdb_c00098{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mdd_c00098{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m1b_c00098{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.ma0_c00098{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m63_c00098{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m9a_c00098{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m5e_c00098{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m17_c00098{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m60_c00098{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mbc_c00098{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);}
.m8_c00098{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mc_c00098{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m54_c00098{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m61_c00098{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.me_c00098{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m6_c00098{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.md8_c00098{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.maa_c00098{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m26_c00098{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m52_c00098{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m48_c00098{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mc5_c00098{transform:matrix(0.537647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537647,0.000000,0.000000,0.250000,0,0);}
.m29_c00098{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m13_c00098{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m9e_c00098{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mae_c00098{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.md5_c00098{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m80_c00098{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m33_c00098{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m53_c00098{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m25_c00098{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m3d_c00098{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m88_c00098{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.ma8_c00098{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.md_c00098{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m6c_c00098{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m34_c00098{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m10_c00098{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.ma7_c00098{transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);}
.m2e_c00098{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m16_c00098{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m40_c00098{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mc1_c00098{transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);}
.mc8_c00098{transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);}
.m4b_c00098{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m32_c00098{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mce_c00098{transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);}
.ma5_c00098{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m77_c00098{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m35_c00098{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m23_c00098{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.md1_c00098{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m7_c00098{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m79_c00098{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m3c_c00098{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m1c_c00098{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m6f_c00098{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.mcc_c00098{transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);}
.m2b_c00098{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m85_c00098{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m14_c00098{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.m8b_c00098{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m55_c00098{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m8d_c00098{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m8e_c00098{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m5a_c00098{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m6a_c00098{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m3f_c00098{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m9f_c00098{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m76_c00098{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m28_c00098{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m2_c00098{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);}
.mc7_c00098{transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);}
.mc2_c00098{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m4d_c00098{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m1f_c00098{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.mb1_c00098{transform:matrix(0.623444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623444,0.000000,0.000000,0.250000,0,0);}
.m18_c00098{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_c00098{transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);}
.m59_c00098{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);}
.m4f_c00098{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m5f_c00098{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.mb2_c00098{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m1e_c00098{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m82_c00098{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m8f_c00098{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.mb5_c00098{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m36_c00098{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m11_c00098{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mb_c00098{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m92_c00098{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m47_c00098{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.md6_c00098{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m9_c00098{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m2a_c00098{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m99_c00098{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m20_c00098{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m7d_c00098{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.mb9_c00098{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mb7_c00098{transform:matrix(1.148678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.148678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.148678,0.000000,0.000000,0.250000,0,0);}
.m75_c00098{transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);}
.md2_c00098{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m7e_c00098{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-4.230502px;}
.ws1_c00098{word-spacing:0.000000px;}
.fc0_c00098{color:transparent;}
.fs7_c00098{font-size:3.420000px;}
.fs8_c00098{font-size:11.880000px;}
.fs9_c00098{font-size:13.620000px;}
.fs4_c00098{font-size:18.720000px;}
.fs1_c00098{font-size:20.400000px;}
.fs2_c00098{font-size:25.500000px;}
.fs3_c00098{font-size:28.920000px;}
.fs5_c00098{font-size:32.340000px;}
.fs0_c00098{font-size:35.700000px;}
.fs6_c00098{font-size:39.120000px;}
.y0_c00098{bottom:0.000000px;}
.yb3_c00098{bottom:253.905000px;}
.yb2_c00098{bottom:255.405000px;}
.yb0_c00098{bottom:271.245000px;}
.yb1_c00098{bottom:272.325000px;}
.yaf_c00098{bottom:273.405000px;}
.yad_c00098{bottom:273.825000px;}
.yae_c00098{bottom:274.920000px;}
.yab_c00098{bottom:290.745000px;}
.yac_c00098{bottom:292.905000px;}
.ya9_c00098{bottom:293.130000px;}
.ya8_c00098{bottom:294.405000px;}
.yaa_c00098{bottom:294.420000px;}
.ya7_c00098{bottom:309.825000px;}
.ya4_c00098{bottom:311.745000px;}
.ya6_c00098{bottom:312.825000px;}
.ya5_c00098{bottom:313.920000px;}
.ya2_c00098{bottom:332.745000px;}
.ya3_c00098{bottom:333.405000px;}
.y9c_c00098{bottom:350.745000px;}
.ya0_c00098{bottom:351.825000px;}
.y9f_c00098{bottom:352.470000px;}
.y9e_c00098{bottom:352.905000px;}
.y9d_c00098{bottom:352.920000px;}
.ya1_c00098{bottom:353.970000px;}
.y9b_c00098{bottom:373.050000px;}
.y9a_c00098{bottom:373.905000px;}
.y97_c00098{bottom:387.825000px;}
.y99_c00098{bottom:388.905000px;}
.y96_c00098{bottom:389.550000px;}
.y95_c00098{bottom:389.970000px;}
.y98_c00098{bottom:391.050000px;}
.y94_c00098{bottom:411.825000px;}
.y92_c00098{bottom:412.905000px;}
.y93_c00098{bottom:415.050000px;}
.y8e_c00098{bottom:426.825000px;}
.y90_c00098{bottom:427.050000px;}
.y8f_c00098{bottom:427.905000px;}
.y8c_c00098{bottom:428.325000px;}
.y91_c00098{bottom:428.970000px;}
.y8d_c00098{bottom:429.195000px;}
.y8b_c00098{bottom:454.245000px;}
.y8a_c00098{bottom:455.325000px;}
.y89_c00098{bottom:455.970000px;}
.y88_c00098{bottom:456.405000px;}
.y87_c00098{bottom:494.745000px;}
.y86_c00098{bottom:512.325000px;}
.y85_c00098{bottom:512.745000px;}
.y80_c00098{bottom:513.180000px;}
.y82_c00098{bottom:514.245000px;}
.y83_c00098{bottom:514.905000px;}
.y84_c00098{bottom:515.130000px;}
.y81_c00098{bottom:516.405000px;}
.y7f_c00098{bottom:531.405000px;}
.y7e_c00098{bottom:533.745000px;}
.y7d_c00098{bottom:534.405000px;}
.y7c_c00098{bottom:535.470000px;}
.y7b_c00098{bottom:535.905000px;}
.y7a_c00098{bottom:553.245000px;}
.y79_c00098{bottom:555.405000px;}
.y77_c00098{bottom:583.245000px;}
.y78_c00098{bottom:583.905000px;}
.y75_c00098{bottom:626.745000px;}
.y73_c00098{bottom:628.905000px;}
.y76_c00098{bottom:629.970000px;}
.y74_c00098{bottom:630.420000px;}
.y71_c00098{bottom:645.405000px;}
.y6f_c00098{bottom:646.245000px;}
.y6e_c00098{bottom:646.470000px;}
.y70_c00098{bottom:648.405000px;}
.y72_c00098{bottom:648.630000px;}
.y6b_c00098{bottom:663.630000px;}
.y68_c00098{bottom:664.275000px;}
.y66_c00098{bottom:664.905000px;}
.y6c_c00098{bottom:665.325000px;}
.y69_c00098{bottom:665.745000px;}
.y65_c00098{bottom:666.825000px;}
.y6a_c00098{bottom:667.905000px;}
.y64_c00098{bottom:668.130000px;}
.y6d_c00098{bottom:668.325000px;}
.y67_c00098{bottom:671.130000px;}
.y60_c00098{bottom:684.405000px;}
.y5c_c00098{bottom:685.245000px;}
.y63_c00098{bottom:685.470000px;}
.y5f_c00098{bottom:685.905000px;}
.y5e_c00098{bottom:686.325000px;}
.y5d_c00098{bottom:687.405000px;}
.y62_c00098{bottom:687.825000px;}
.y61_c00098{bottom:688.905000px;}
.y59_c00098{bottom:704.970000px;}
.y56_c00098{bottom:705.825000px;}
.y58_c00098{bottom:706.245000px;}
.y57_c00098{bottom:706.905000px;}
.y5a_c00098{bottom:707.325000px;}
.y5b_c00098{bottom:708.405000px;}
.y54_c00098{bottom:723.405000px;}
.y53_c00098{bottom:724.245000px;}
.y50_c00098{bottom:725.745000px;}
.y51_c00098{bottom:726.630000px;}
.y4e_c00098{bottom:726.825000px;}
.y55_c00098{bottom:727.470000px;}
.y4f_c00098{bottom:727.905000px;}
.y52_c00098{bottom:727.920000px;}
.y4d_c00098{bottom:744.405000px;}
.y49_c00098{bottom:745.245000px;}
.y4a_c00098{bottom:746.130000px;}
.y4c_c00098{bottom:746.325000px;}
.y48_c00098{bottom:747.405000px;}
.y4b_c00098{bottom:748.470000px;}
.y43_c00098{bottom:763.245000px;}
.y47_c00098{bottom:763.905000px;}
.y45_c00098{bottom:764.745000px;}
.y44_c00098{bottom:765.630000px;}
.y46_c00098{bottom:766.905000px;}
.y42_c00098{bottom:783.405000px;}
.y41_c00098{bottom:784.245000px;}
.y40_c00098{bottom:786.405000px;}
.y3d_c00098{bottom:802.680000px;}
.y3f_c00098{bottom:802.905000px;}
.y3b_c00098{bottom:803.745000px;}
.y3c_c00098{bottom:804.825000px;}
.y3e_c00098{bottom:805.905000px;}
.y36_c00098{bottom:822.405000px;}
.y34_c00098{bottom:823.245000px;}
.y3a_c00098{bottom:824.325000px;}
.y39_c00098{bottom:824.745000px;}
.y35_c00098{bottom:825.405000px;}
.y37_c00098{bottom:825.630000px;}
.y38_c00098{bottom:826.905000px;}
.y31_c00098{bottom:842.745000px;}
.y30_c00098{bottom:844.905000px;}
.y32_c00098{bottom:845.130000px;}
.y33_c00098{bottom:845.970000px;}
.y2d_c00098{bottom:862.245000px;}
.y2c_c00098{bottom:864.405000px;}
.y2e_c00098{bottom:864.630000px;}
.y2f_c00098{bottom:865.470000px;}
.y2b_c00098{bottom:883.905000px;}
.y2a_c00098{bottom:900.405000px;}
.y25_c00098{bottom:902.325000px;}
.y26_c00098{bottom:902.745000px;}
.y28_c00098{bottom:903.825000px;}
.y27_c00098{bottom:904.470000px;}
.y29_c00098{bottom:904.905000px;}
.y22_c00098{bottom:919.905000px;}
.y21_c00098{bottom:922.245000px;}
.y24_c00098{bottom:923.130000px;}
.y23_c00098{bottom:924.405000px;}
.y20_c00098{bottom:940.905000px;}
.y1f_c00098{bottom:941.745000px;}
.y1e_c00098{bottom:943.905000px;}
.y1d_c00098{bottom:961.905000px;}
.y1a_c00098{bottom:980.745000px;}
.y19_c00098{bottom:981.630000px;}
.y1c_c00098{bottom:981.825000px;}
.y1b_c00098{bottom:982.470000px;}
.y18_c00098{bottom:982.905000px;}
.y15_c00098{bottom:998.745000px;}
.y12_c00098{bottom:1000.245000px;}
.y13_c00098{bottom:1001.130000px;}
.y16_c00098{bottom:1001.325000px;}
.y17_c00098{bottom:1001.970000px;}
.y14_c00098{bottom:1002.405000px;}
.ye_c00098{bottom:1019.745000px;}
.y10_c00098{bottom:1020.630000px;}
.yf_c00098{bottom:1021.905000px;}
.y11_c00098{bottom:1022.970000px;}
.y8_c00098{bottom:1038.825000px;}
.yb_c00098{bottom:1039.245000px;}
.yc_c00098{bottom:1040.970000px;}
.y9_c00098{bottom:1041.405000px;}
.ya_c00098{bottom:1041.630000px;}
.yd_c00098{bottom:1042.905000px;}
.y5_c00098{bottom:1058.745000px;}
.y7_c00098{bottom:1059.825000px;}
.y3_c00098{bottom:1060.470000px;}
.y4_c00098{bottom:1060.905000px;}
.y6_c00098{bottom:1061.130000px;}
.y1_c00098{bottom:1097.745000px;}
.y2_c00098{bottom:1099.050000px;}
.h8_c00098{height:4.206533px;}
.h9_c00098{height:14.612168px;}
.ha_c00098{height:16.752334px;}
.h5_c00098{height:23.025234px;}
.h2_c00098{height:25.091602px;}
.h3_c00098{height:31.364502px;}
.h4_c00098{height:35.571035px;}
.h6_c00098{height:39.777568px;}
.h1_c00098{height:43.910303px;}
.h7_c00098{height:48.116836px;}
.h0_c00098{height:1335.000000px;}
.w0_c00098{width:880.500000px;}
.x0_c00098{left:0.000000px;}
.x3_c00098{left:151.080000px;}
.x5f_c00098{left:152.580000px;}
.x9a_c00098{left:154.500000px;}
.x79_c00098{left:155.775000px;}
.xdc_c00098{left:157.920000px;}
.x42_c00098{left:167.580000px;}
.xbd_c00098{left:168.645000px;}
.x60_c00098{left:171.420000px;}
.xe1_c00098{left:172.500000px;}
.x82_c00098{left:178.080000px;}
.xe9_c00098{left:183.000000px;}
.x4_c00098{left:184.500000px;}
.x91_c00098{left:189.000000px;}
.xba_c00098{left:192.420000px;}
.xdd_c00098{left:193.920000px;}
.x7a_c00098{left:195.000000px;}
.x11_c00098{left:196.500000px;}
.x61_c00098{left:198.420000px;}
.xb3_c00098{left:199.920000px;}
.x5_c00098{left:201.420000px;}
.x36_c00098{left:202.500000px;}
.x9b_c00098{left:204.420000px;}
.x6a_c00098{left:205.500000px;}
.xa4_c00098{left:209.355000px;}
.x1d_c00098{left:210.420000px;}
.x56_c00098{left:213.000000px;}
.x83_c00098{left:217.500000px;}
.x4e_c00098{left:219.000000px;}
.x37_c00098{left:220.500000px;}
.xad_c00098{left:222.000000px;}
.xce_c00098{left:223.080000px;}
.x9c_c00098{left:226.080000px;}
.xc5_c00098{left:232.500000px;}
.x7b_c00098{left:233.580000px;}
.xd9_c00098{left:237.000000px;}
.xbe_c00098{left:238.500000px;}
.xbb_c00098{left:241.080000px;}
.x12_c00098{left:243.000000px;}
.x8b_c00098{left:244.080000px;}
.xa5_c00098{left:247.080000px;}
.x6_c00098{left:249.000000px;}
.x2b_c00098{left:250.500000px;}
.xe5_c00098{left:252.000000px;}
.xb4_c00098{left:253.500000px;}
.xcf_c00098{left:254.580000px;}
.x92_c00098{left:256.920000px;}
.xbc_c00098{left:259.500000px;}
.x4f_c00098{left:261.000000px;}
.xe2_c00098{left:262.500000px;}
.x38_c00098{left:264.420000px;}
.x13_c00098{left:268.500000px;}
.x57_c00098{left:270.420000px;}
.x62_c00098{left:271.500000px;}
.x2c_c00098{left:273.420000px;}
.x93_c00098{left:278.580000px;}
.x6b_c00098{left:282.000000px;}
.xc6_c00098{left:283.080000px;}
.xb5_c00098{left:285.000000px;}
.x43_c00098{left:286.500000px;}
.xa6_c00098{left:288.420000px;}
.x9d_c00098{left:291.000000px;}
.x1e_c00098{left:292.920000px;}
.xae_c00098{left:295.080000px;}
.x44_c00098{left:297.855000px;}
.x39_c00098{left:298.920000px;}
.xc7_c00098{left:300.420000px;}
.x2d_c00098{left:301.920000px;}
.x6c_c00098{left:303.000000px;}
.xe6_c00098{left:304.500000px;}
.x58_c00098{left:307.500000px;}
.x45_c00098{left:311.580000px;}
.x9e_c00098{left:313.080000px;}
.xbf_c00098{left:316.080000px;}
.x94_c00098{left:318.000000px;}
.x50_c00098{left:319.920000px;}
.x1f_c00098{left:322.500000px;}
.xc8_c00098{left:325.500000px;}
.xaf_c00098{left:328.500000px;}
.x7_c00098{left:330.000000px;}
.x14_c00098{left:334.500000px;}
.x7c_c00098{left:337.080000px;}
.x84_c00098{left:338.580000px;}
.x46_c00098{left:339.645000px;}
.xa7_c00098{left:342.420000px;}
.xe3_c00098{left:346.275000px;}
.xd0_c00098{left:352.500000px;}
.x15_c00098{left:354.000000px;}
.x3a_c00098{left:355.080000px;}
.x2e_c00098{left:357.000000px;}
.x9f_c00098{left:360.420000px;}
.x63_c00098{left:364.080000px;}
.x51_c00098{left:366.000000px;}
.x47_c00098{left:369.000000px;}
.x20_c00098{left:370.080000px;}
.x8_c00098{left:372.000000px;}
.x85_c00098{left:374.580000px;}
.xa8_c00098{left:381.000000px;}
.x59_c00098{left:382.500000px;}
.xcb_c00098{left:384.000000px;}
.x7d_c00098{left:385.920000px;}
.xe4_c00098{left:387.000000px;}
.xb0_c00098{left:388.500000px;}
.xc0_c00098{left:390.420000px;}
.x21_c00098{left:391.920000px;}
.x64_c00098{left:396.000000px;}
.x2_c00098{left:399.000000px;}
.x48_c00098{left:401.145000px;}
.x2f_c00098{left:403.500000px;}
.x9_c00098{left:405.000000px;}
.x3b_c00098{left:407.580000px;}
.xd3_c00098{left:409.500000px;}
.x5a_c00098{left:411.000000px;}
.xd5_c00098{left:412.080000px;}
.x86_c00098{left:414.420000px;}
.x52_c00098{left:418.500000px;}
.x22_c00098{left:420.420000px;}
.x6d_c00098{left:421.920000px;}
.x30_c00098{left:424.920000px;}
.xd1_c00098{left:426.000000px;}
.x16_c00098{left:429.000000px;}
.x8c_c00098{left:430.080000px;}
.xc4_c00098{left:433.080000px;}
.x7e_c00098{left:434.580000px;}
.x65_c00098{left:436.500000px;}
.x95_c00098{left:437.580000px;}
.x49_c00098{left:441.000000px;}
.xa_c00098{left:445.500000px;}
.x23_c00098{left:447.000000px;}
.xe7_c00098{left:448.080000px;}
.x6e_c00098{left:451.080000px;}
.x31_c00098{left:453.420000px;}
.xcc_c00098{left:456.000000px;}
.xa9_c00098{left:457.500000px;}
.xc1_c00098{left:459.420000px;}
.x24_c00098{left:463.920000px;}
.x17_c00098{left:465.000000px;}
.x87_c00098{left:466.080000px;}
.x8d_c00098{left:468.420000px;}
.xb_c00098{left:472.500000px;}
.xb6_c00098{left:475.500000px;}
.xd4_c00098{left:481.080000px;}
.x5b_c00098{left:482.580000px;}
.x4a_c00098{left:484.500000px;}
.x3c_c00098{left:486.000000px;}
.x18_c00098{left:487.920000px;}
.x53_c00098{left:492.000000px;}
.x32_c00098{left:493.080000px;}
.xde_c00098{left:495.000000px;}
.x96_c00098{left:496.500000px;}
.xe8_c00098{left:502.920000px;}
.x73_c00098{left:504.420000px;}
.xa0_c00098{left:507.000000px;}
.x25_c00098{left:508.500000px;}
.x19_c00098{left:514.500000px;}
.x6f_c00098{left:516.000000px;}
.x5c_c00098{left:519.420000px;}
.xaa_c00098{left:520.500000px;}
.x3d_c00098{left:526.500000px;}
.x26_c00098{left:528.000000px;}
.xc_c00098{left:529.500000px;}
.x74_c00098{left:531.420000px;}
.xc9_c00098{left:532.500000px;}
.x88_c00098{left:537.000000px;}
.x8e_c00098{left:538.920000px;}
.x66_c00098{left:541.080000px;}
.x5d_c00098{left:546.000000px;}
.xd2_c00098{left:549.000000px;}
.xdf_c00098{left:550.080000px;}
.xd_c00098{left:552.420000px;}
.xa1_c00098{left:561.420000px;}
.x67_c00098{left:562.920000px;}
.x33_c00098{left:565.500000px;}
.xb1_c00098{left:568.500000px;}
.xcd_c00098{left:572.580000px;}
.xd6_c00098{left:573.855000px;}
.x8f_c00098{left:576.000000px;}
.x7f_c00098{left:577.500000px;}
.xe_c00098{left:580.080000px;}
.x75_c00098{left:581.580000px;}
.x27_c00098{left:584.580000px;}
.x4b_c00098{left:588.420000px;}
.x68_c00098{left:590.580000px;}
.xb7_c00098{left:592.920000px;}
.x3e_c00098{left:595.920000px;}
.xd7_c00098{left:597.000000px;}
.xe0_c00098{left:598.500000px;}
.xa2_c00098{left:600.000000px;}
.x76_c00098{left:601.920000px;}
.x1a_c00098{left:604.500000px;}
.xc2_c00098{left:608.580000px;}
.xab_c00098{left:611.580000px;}
.xb8_c00098{left:618.000000px;}
.x70_c00098{left:620.580000px;}
.xda_c00098{left:622.500000px;}
.x3f_c00098{left:624.000000px;}
.x89_c00098{left:627.000000px;}
.x77_c00098{left:630.000000px;}
.xca_c00098{left:631.920000px;}
.xb9_c00098{left:633.000000px;}
.x28_c00098{left:634.500000px;}
.x80_c00098{left:637.920000px;}
.x97_c00098{left:640.500000px;}
.xf_c00098{left:641.580000px;}
.x4c_c00098{left:644.580000px;}
.x8a_c00098{left:650.580000px;}
.xd8_c00098{left:652.080000px;}
.xc3_c00098{left:657.000000px;}
.x29_c00098{left:658.920000px;}
.xb2_c00098{left:660.000000px;}
.x90_c00098{left:662.580000px;}
.x69_c00098{left:664.080000px;}
.x54_c00098{left:666.000000px;}
.x5e_c00098{left:667.080000px;}
.x40_c00098{left:669.000000px;}
.x81_c00098{left:670.500000px;}
.x34_c00098{left:672.420000px;}
.x71_c00098{left:673.920000px;}
.x98_c00098{left:677.580000px;}
.x55_c00098{left:679.500000px;}
.x78_c00098{left:683.580000px;}
.x1b_c00098{left:687.000000px;}
.x2a_c00098{left:688.920000px;}
.x10_c00098{left:691.500000px;}
.xdb_c00098{left:692.580000px;}
.x99_c00098{left:694.080000px;}
.x41_c00098{left:697.920000px;}
.x35_c00098{left:700.920000px;}
.x4d_c00098{left:703.080000px;}
.xac_c00098{left:705.000000px;}
.x1c_c00098{left:706.920000px;}
.x1_c00098{left:712.500000px;}
.x72_c00098{left:715.500000px;}
.xa3_c00098{left:718.080000px;}
@media print{
.v0_c00098{vertical-align:0.000000pt;}
.ls0_c00098{letter-spacing:0.000000pt;}
.ws0_c00098{word-spacing:-3.760447pt;}
.ws1_c00098{word-spacing:0.000000pt;}
.fs7_c00098{font-size:3.040000pt;}
.fs8_c00098{font-size:10.560000pt;}
.fs9_c00098{font-size:12.106667pt;}
.fs4_c00098{font-size:16.640000pt;}
.fs1_c00098{font-size:18.133333pt;}
.fs2_c00098{font-size:22.666667pt;}
.fs3_c00098{font-size:25.706667pt;}
.fs5_c00098{font-size:28.746667pt;}
.fs0_c00098{font-size:31.733333pt;}
.fs6_c00098{font-size:34.773333pt;}
.y0_c00098{bottom:0.000000pt;}
.yb3_c00098{bottom:225.693333pt;}
.yb2_c00098{bottom:227.026667pt;}
.yb0_c00098{bottom:241.106667pt;}
.yb1_c00098{bottom:242.066667pt;}
.yaf_c00098{bottom:243.026667pt;}
.yad_c00098{bottom:243.400000pt;}
.yae_c00098{bottom:244.373333pt;}
.yab_c00098{bottom:258.440000pt;}
.yac_c00098{bottom:260.360000pt;}
.ya9_c00098{bottom:260.560000pt;}
.ya8_c00098{bottom:261.693333pt;}
.yaa_c00098{bottom:261.706667pt;}
.ya7_c00098{bottom:275.400000pt;}
.ya4_c00098{bottom:277.106667pt;}
.ya6_c00098{bottom:278.066667pt;}
.ya5_c00098{bottom:279.040000pt;}
.ya2_c00098{bottom:295.773333pt;}
.ya3_c00098{bottom:296.360000pt;}
.y9c_c00098{bottom:311.773333pt;}
.ya0_c00098{bottom:312.733333pt;}
.y9f_c00098{bottom:313.306667pt;}
.y9e_c00098{bottom:313.693333pt;}
.y9d_c00098{bottom:313.706667pt;}
.ya1_c00098{bottom:314.640000pt;}
.y9b_c00098{bottom:331.600000pt;}
.y9a_c00098{bottom:332.360000pt;}
.y97_c00098{bottom:344.733333pt;}
.y99_c00098{bottom:345.693333pt;}
.y96_c00098{bottom:346.266667pt;}
.y95_c00098{bottom:346.640000pt;}
.y98_c00098{bottom:347.600000pt;}
.y94_c00098{bottom:366.066667pt;}
.y92_c00098{bottom:367.026667pt;}
.y93_c00098{bottom:368.933333pt;}
.y8e_c00098{bottom:379.400000pt;}
.y90_c00098{bottom:379.600000pt;}
.y8f_c00098{bottom:380.360000pt;}
.y8c_c00098{bottom:380.733333pt;}
.y91_c00098{bottom:381.306667pt;}
.y8d_c00098{bottom:381.506667pt;}
.y8b_c00098{bottom:403.773333pt;}
.y8a_c00098{bottom:404.733333pt;}
.y89_c00098{bottom:405.306667pt;}
.y88_c00098{bottom:405.693333pt;}
.y87_c00098{bottom:439.773333pt;}
.y86_c00098{bottom:455.400000pt;}
.y85_c00098{bottom:455.773333pt;}
.y80_c00098{bottom:456.160000pt;}
.y82_c00098{bottom:457.106667pt;}
.y83_c00098{bottom:457.693333pt;}
.y84_c00098{bottom:457.893333pt;}
.y81_c00098{bottom:459.026667pt;}
.y7f_c00098{bottom:472.360000pt;}
.y7e_c00098{bottom:474.440000pt;}
.y7d_c00098{bottom:475.026667pt;}
.y7c_c00098{bottom:475.973333pt;}
.y7b_c00098{bottom:476.360000pt;}
.y7a_c00098{bottom:491.773333pt;}
.y79_c00098{bottom:493.693333pt;}
.y77_c00098{bottom:518.440000pt;}
.y78_c00098{bottom:519.026667pt;}
.y75_c00098{bottom:557.106667pt;}
.y73_c00098{bottom:559.026667pt;}
.y76_c00098{bottom:559.973333pt;}
.y74_c00098{bottom:560.373333pt;}
.y71_c00098{bottom:573.693333pt;}
.y6f_c00098{bottom:574.440000pt;}
.y6e_c00098{bottom:574.640000pt;}
.y70_c00098{bottom:576.360000pt;}
.y72_c00098{bottom:576.560000pt;}
.y6b_c00098{bottom:589.893333pt;}
.y68_c00098{bottom:590.466667pt;}
.y66_c00098{bottom:591.026667pt;}
.y6c_c00098{bottom:591.400000pt;}
.y69_c00098{bottom:591.773333pt;}
.y65_c00098{bottom:592.733333pt;}
.y6a_c00098{bottom:593.693333pt;}
.y64_c00098{bottom:593.893333pt;}
.y6d_c00098{bottom:594.066667pt;}
.y67_c00098{bottom:596.560000pt;}
.y60_c00098{bottom:608.360000pt;}
.y5c_c00098{bottom:609.106667pt;}
.y63_c00098{bottom:609.306667pt;}
.y5f_c00098{bottom:609.693333pt;}
.y5e_c00098{bottom:610.066667pt;}
.y5d_c00098{bottom:611.026667pt;}
.y62_c00098{bottom:611.400000pt;}
.y61_c00098{bottom:612.360000pt;}
.y59_c00098{bottom:626.640000pt;}
.y56_c00098{bottom:627.400000pt;}
.y58_c00098{bottom:627.773333pt;}
.y57_c00098{bottom:628.360000pt;}
.y5a_c00098{bottom:628.733333pt;}
.y5b_c00098{bottom:629.693333pt;}
.y54_c00098{bottom:643.026667pt;}
.y53_c00098{bottom:643.773333pt;}
.y50_c00098{bottom:645.106667pt;}
.y51_c00098{bottom:645.893333pt;}
.y4e_c00098{bottom:646.066667pt;}
.y55_c00098{bottom:646.640000pt;}
.y4f_c00098{bottom:647.026667pt;}
.y52_c00098{bottom:647.040000pt;}
.y4d_c00098{bottom:661.693333pt;}
.y49_c00098{bottom:662.440000pt;}
.y4a_c00098{bottom:663.226667pt;}
.y4c_c00098{bottom:663.400000pt;}
.y48_c00098{bottom:664.360000pt;}
.y4b_c00098{bottom:665.306667pt;}
.y43_c00098{bottom:678.440000pt;}
.y47_c00098{bottom:679.026667pt;}
.y45_c00098{bottom:679.773333pt;}
.y44_c00098{bottom:680.560000pt;}
.y46_c00098{bottom:681.693333pt;}
.y42_c00098{bottom:696.360000pt;}
.y41_c00098{bottom:697.106667pt;}
.y40_c00098{bottom:699.026667pt;}
.y3d_c00098{bottom:713.493333pt;}
.y3f_c00098{bottom:713.693333pt;}
.y3b_c00098{bottom:714.440000pt;}
.y3c_c00098{bottom:715.400000pt;}
.y3e_c00098{bottom:716.360000pt;}
.y36_c00098{bottom:731.026667pt;}
.y34_c00098{bottom:731.773333pt;}
.y3a_c00098{bottom:732.733333pt;}
.y39_c00098{bottom:733.106667pt;}
.y35_c00098{bottom:733.693333pt;}
.y37_c00098{bottom:733.893333pt;}
.y38_c00098{bottom:735.026667pt;}
.y31_c00098{bottom:749.106667pt;}
.y30_c00098{bottom:751.026667pt;}
.y32_c00098{bottom:751.226667pt;}
.y33_c00098{bottom:751.973333pt;}
.y2d_c00098{bottom:766.440000pt;}
.y2c_c00098{bottom:768.360000pt;}
.y2e_c00098{bottom:768.560000pt;}
.y2f_c00098{bottom:769.306667pt;}
.y2b_c00098{bottom:785.693333pt;}
.y2a_c00098{bottom:800.360000pt;}
.y25_c00098{bottom:802.066667pt;}
.y26_c00098{bottom:802.440000pt;}
.y28_c00098{bottom:803.400000pt;}
.y27_c00098{bottom:803.973333pt;}
.y29_c00098{bottom:804.360000pt;}
.y22_c00098{bottom:817.693333pt;}
.y21_c00098{bottom:819.773333pt;}
.y24_c00098{bottom:820.560000pt;}
.y23_c00098{bottom:821.693333pt;}
.y20_c00098{bottom:836.360000pt;}
.y1f_c00098{bottom:837.106667pt;}
.y1e_c00098{bottom:839.026667pt;}
.y1d_c00098{bottom:855.026667pt;}
.y1a_c00098{bottom:871.773333pt;}
.y19_c00098{bottom:872.560000pt;}
.y1c_c00098{bottom:872.733333pt;}
.y1b_c00098{bottom:873.306667pt;}
.y18_c00098{bottom:873.693333pt;}
.y15_c00098{bottom:887.773333pt;}
.y12_c00098{bottom:889.106667pt;}
.y13_c00098{bottom:889.893333pt;}
.y16_c00098{bottom:890.066667pt;}
.y17_c00098{bottom:890.640000pt;}
.y14_c00098{bottom:891.026667pt;}
.ye_c00098{bottom:906.440000pt;}
.y10_c00098{bottom:907.226667pt;}
.yf_c00098{bottom:908.360000pt;}
.y11_c00098{bottom:909.306667pt;}
.y8_c00098{bottom:923.400000pt;}
.yb_c00098{bottom:923.773333pt;}
.yc_c00098{bottom:925.306667pt;}
.y9_c00098{bottom:925.693333pt;}
.ya_c00098{bottom:925.893333pt;}
.yd_c00098{bottom:927.026667pt;}
.y5_c00098{bottom:941.106667pt;}
.y7_c00098{bottom:942.066667pt;}
.y3_c00098{bottom:942.640000pt;}
.y4_c00098{bottom:943.026667pt;}
.y6_c00098{bottom:943.226667pt;}
.y1_c00098{bottom:975.773333pt;}
.y2_c00098{bottom:976.933333pt;}
.h8_c00098{height:3.739141pt;}
.h9_c00098{height:12.988594pt;}
.ha_c00098{height:14.890964pt;}
.h5_c00098{height:20.466875pt;}
.h2_c00098{height:22.303646pt;}
.h3_c00098{height:27.879557pt;}
.h4_c00098{height:31.618698pt;}
.h6_c00098{height:35.357839pt;}
.h1_c00098{height:39.031380pt;}
.h7_c00098{height:42.770521pt;}
.h0_c00098{height:1186.666667pt;}
.w0_c00098{width:782.666667pt;}
.x0_c00098{left:0.000000pt;}
.x3_c00098{left:134.293333pt;}
.x5f_c00098{left:135.626667pt;}
.x9a_c00098{left:137.333333pt;}
.x79_c00098{left:138.466667pt;}
.xdc_c00098{left:140.373333pt;}
.x42_c00098{left:148.960000pt;}
.xbd_c00098{left:149.906667pt;}
.x60_c00098{left:152.373333pt;}
.xe1_c00098{left:153.333333pt;}
.x82_c00098{left:158.293333pt;}
.xe9_c00098{left:162.666667pt;}
.x4_c00098{left:164.000000pt;}
.x91_c00098{left:168.000000pt;}
.xba_c00098{left:171.040000pt;}
.xdd_c00098{left:172.373333pt;}
.x7a_c00098{left:173.333333pt;}
.x11_c00098{left:174.666667pt;}
.x61_c00098{left:176.373333pt;}
.xb3_c00098{left:177.706667pt;}
.x5_c00098{left:179.040000pt;}
.x36_c00098{left:180.000000pt;}
.x9b_c00098{left:181.706667pt;}
.x6a_c00098{left:182.666667pt;}
.xa4_c00098{left:186.093333pt;}
.x1d_c00098{left:187.040000pt;}
.x56_c00098{left:189.333333pt;}
.x83_c00098{left:193.333333pt;}
.x4e_c00098{left:194.666667pt;}
.x37_c00098{left:196.000000pt;}
.xad_c00098{left:197.333333pt;}
.xce_c00098{left:198.293333pt;}
.x9c_c00098{left:200.960000pt;}
.xc5_c00098{left:206.666667pt;}
.x7b_c00098{left:207.626667pt;}
.xd9_c00098{left:210.666667pt;}
.xbe_c00098{left:212.000000pt;}
.xbb_c00098{left:214.293333pt;}
.x12_c00098{left:216.000000pt;}
.x8b_c00098{left:216.960000pt;}
.xa5_c00098{left:219.626667pt;}
.x6_c00098{left:221.333333pt;}
.x2b_c00098{left:222.666667pt;}
.xe5_c00098{left:224.000000pt;}
.xb4_c00098{left:225.333333pt;}
.xcf_c00098{left:226.293333pt;}
.x92_c00098{left:228.373333pt;}
.xbc_c00098{left:230.666667pt;}
.x4f_c00098{left:232.000000pt;}
.xe2_c00098{left:233.333333pt;}
.x38_c00098{left:235.040000pt;}
.x13_c00098{left:238.666667pt;}
.x57_c00098{left:240.373333pt;}
.x62_c00098{left:241.333333pt;}
.x2c_c00098{left:243.040000pt;}
.x93_c00098{left:247.626667pt;}
.x6b_c00098{left:250.666667pt;}
.xc6_c00098{left:251.626667pt;}
.xb5_c00098{left:253.333333pt;}
.x43_c00098{left:254.666667pt;}
.xa6_c00098{left:256.373333pt;}
.x9d_c00098{left:258.666667pt;}
.x1e_c00098{left:260.373333pt;}
.xae_c00098{left:262.293333pt;}
.x44_c00098{left:264.760000pt;}
.x39_c00098{left:265.706667pt;}
.xc7_c00098{left:267.040000pt;}
.x2d_c00098{left:268.373333pt;}
.x6c_c00098{left:269.333333pt;}
.xe6_c00098{left:270.666667pt;}
.x58_c00098{left:273.333333pt;}
.x45_c00098{left:276.960000pt;}
.x9e_c00098{left:278.293333pt;}
.xbf_c00098{left:280.960000pt;}
.x94_c00098{left:282.666667pt;}
.x50_c00098{left:284.373333pt;}
.x1f_c00098{left:286.666667pt;}
.xc8_c00098{left:289.333333pt;}
.xaf_c00098{left:292.000000pt;}
.x7_c00098{left:293.333333pt;}
.x14_c00098{left:297.333333pt;}
.x7c_c00098{left:299.626667pt;}
.x84_c00098{left:300.960000pt;}
.x46_c00098{left:301.906667pt;}
.xa7_c00098{left:304.373333pt;}
.xe3_c00098{left:307.800000pt;}
.xd0_c00098{left:313.333333pt;}
.x15_c00098{left:314.666667pt;}
.x3a_c00098{left:315.626667pt;}
.x2e_c00098{left:317.333333pt;}
.x9f_c00098{left:320.373333pt;}
.x63_c00098{left:323.626667pt;}
.x51_c00098{left:325.333333pt;}
.x47_c00098{left:328.000000pt;}
.x20_c00098{left:328.960000pt;}
.x8_c00098{left:330.666667pt;}
.x85_c00098{left:332.960000pt;}
.xa8_c00098{left:338.666667pt;}
.x59_c00098{left:340.000000pt;}
.xcb_c00098{left:341.333333pt;}
.x7d_c00098{left:343.040000pt;}
.xe4_c00098{left:344.000000pt;}
.xb0_c00098{left:345.333333pt;}
.xc0_c00098{left:347.040000pt;}
.x21_c00098{left:348.373333pt;}
.x64_c00098{left:352.000000pt;}
.x2_c00098{left:354.666667pt;}
.x48_c00098{left:356.573333pt;}
.x2f_c00098{left:358.666667pt;}
.x9_c00098{left:360.000000pt;}
.x3b_c00098{left:362.293333pt;}
.xd3_c00098{left:364.000000pt;}
.x5a_c00098{left:365.333333pt;}
.xd5_c00098{left:366.293333pt;}
.x86_c00098{left:368.373333pt;}
.x52_c00098{left:372.000000pt;}
.x22_c00098{left:373.706667pt;}
.x6d_c00098{left:375.040000pt;}
.x30_c00098{left:377.706667pt;}
.xd1_c00098{left:378.666667pt;}
.x16_c00098{left:381.333333pt;}
.x8c_c00098{left:382.293333pt;}
.xc4_c00098{left:384.960000pt;}
.x7e_c00098{left:386.293333pt;}
.x65_c00098{left:388.000000pt;}
.x95_c00098{left:388.960000pt;}
.x49_c00098{left:392.000000pt;}
.xa_c00098{left:396.000000pt;}
.x23_c00098{left:397.333333pt;}
.xe7_c00098{left:398.293333pt;}
.x6e_c00098{left:400.960000pt;}
.x31_c00098{left:403.040000pt;}
.xcc_c00098{left:405.333333pt;}
.xa9_c00098{left:406.666667pt;}
.xc1_c00098{left:408.373333pt;}
.x24_c00098{left:412.373333pt;}
.x17_c00098{left:413.333333pt;}
.x87_c00098{left:414.293333pt;}
.x8d_c00098{left:416.373333pt;}
.xb_c00098{left:420.000000pt;}
.xb6_c00098{left:422.666667pt;}
.xd4_c00098{left:427.626667pt;}
.x5b_c00098{left:428.960000pt;}
.x4a_c00098{left:430.666667pt;}
.x3c_c00098{left:432.000000pt;}
.x18_c00098{left:433.706667pt;}
.x53_c00098{left:437.333333pt;}
.x32_c00098{left:438.293333pt;}
.xde_c00098{left:440.000000pt;}
.x96_c00098{left:441.333333pt;}
.xe8_c00098{left:447.040000pt;}
.x73_c00098{left:448.373333pt;}
.xa0_c00098{left:450.666667pt;}
.x25_c00098{left:452.000000pt;}
.x19_c00098{left:457.333333pt;}
.x6f_c00098{left:458.666667pt;}
.x5c_c00098{left:461.706667pt;}
.xaa_c00098{left:462.666667pt;}
.x3d_c00098{left:468.000000pt;}
.x26_c00098{left:469.333333pt;}
.xc_c00098{left:470.666667pt;}
.x74_c00098{left:472.373333pt;}
.xc9_c00098{left:473.333333pt;}
.x88_c00098{left:477.333333pt;}
.x8e_c00098{left:479.040000pt;}
.x66_c00098{left:480.960000pt;}
.x5d_c00098{left:485.333333pt;}
.xd2_c00098{left:488.000000pt;}
.xdf_c00098{left:488.960000pt;}
.xd_c00098{left:491.040000pt;}
.xa1_c00098{left:499.040000pt;}
.x67_c00098{left:500.373333pt;}
.x33_c00098{left:502.666667pt;}
.xb1_c00098{left:505.333333pt;}
.xcd_c00098{left:508.960000pt;}
.xd6_c00098{left:510.093333pt;}
.x8f_c00098{left:512.000000pt;}
.x7f_c00098{left:513.333333pt;}
.xe_c00098{left:515.626667pt;}
.x75_c00098{left:516.960000pt;}
.x27_c00098{left:519.626667pt;}
.x4b_c00098{left:523.040000pt;}
.x68_c00098{left:524.960000pt;}
.xb7_c00098{left:527.040000pt;}
.x3e_c00098{left:529.706667pt;}
.xd7_c00098{left:530.666667pt;}
.xe0_c00098{left:532.000000pt;}
.xa2_c00098{left:533.333333pt;}
.x76_c00098{left:535.040000pt;}
.x1a_c00098{left:537.333333pt;}
.xc2_c00098{left:540.960000pt;}
.xab_c00098{left:543.626667pt;}
.xb8_c00098{left:549.333333pt;}
.x70_c00098{left:551.626667pt;}
.xda_c00098{left:553.333333pt;}
.x3f_c00098{left:554.666667pt;}
.x89_c00098{left:557.333333pt;}
.x77_c00098{left:560.000000pt;}
.xca_c00098{left:561.706667pt;}
.xb9_c00098{left:562.666667pt;}
.x28_c00098{left:564.000000pt;}
.x80_c00098{left:567.040000pt;}
.x97_c00098{left:569.333333pt;}
.xf_c00098{left:570.293333pt;}
.x4c_c00098{left:572.960000pt;}
.x8a_c00098{left:578.293333pt;}
.xd8_c00098{left:579.626667pt;}
.xc3_c00098{left:584.000000pt;}
.x29_c00098{left:585.706667pt;}
.xb2_c00098{left:586.666667pt;}
.x90_c00098{left:588.960000pt;}
.x69_c00098{left:590.293333pt;}
.x54_c00098{left:592.000000pt;}
.x5e_c00098{left:592.960000pt;}
.x40_c00098{left:594.666667pt;}
.x81_c00098{left:596.000000pt;}
.x34_c00098{left:597.706667pt;}
.x71_c00098{left:599.040000pt;}
.x98_c00098{left:602.293333pt;}
.x55_c00098{left:604.000000pt;}
.x78_c00098{left:607.626667pt;}
.x1b_c00098{left:610.666667pt;}
.x2a_c00098{left:612.373333pt;}
.x10_c00098{left:614.666667pt;}
.xdb_c00098{left:615.626667pt;}
.x99_c00098{left:616.960000pt;}
.x41_c00098{left:620.373333pt;}
.x35_c00098{left:623.040000pt;}
.x4d_c00098{left:624.960000pt;}
.xac_c00098{left:626.666667pt;}
.x1c_c00098{left:628.373333pt;}
.x1_c00098{left:633.333333pt;}
.x72_c00098{left:636.000000pt;}
.xa3_c00098{left:638.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_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_aa77100f86482d24c1774f20.woff2')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb8_c00099{transform:matrix(0.276457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276457,0.000000,0.000000,0.250000,0,0);}
.m53_c00099{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m39_c00099{transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);}
.m2f_c00099{transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);}
.mcc_c00099{transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);}
.md_c00099{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.md0_c00099{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m38_c00099{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m6c_c00099{transform:matrix(0.371166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371166,0.000000,0.000000,0.250000,0,0);}
.m1b_c00099{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mdb_c00099{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m96_c00099{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m1a_c00099{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mbb_c00099{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m6e_c00099{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.mdf_c00099{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m4d_c00099{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m9a_c00099{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m86_c00099{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m95_c00099{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m68_c00099{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m6d_c00099{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m1c_c00099{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m24_c00099{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.m91_c00099{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.mb6_c00099{transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);}
.md9_c00099{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m56_c00099{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m9c_c00099{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mb2_c00099{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.ma4_c00099{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m3e_c00099{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.me_c00099{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.maf_c00099{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m94_c00099{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mbe_c00099{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m2e_c00099{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.ma2_c00099{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m3f_c00099{transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);}
.m18_c00099{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m41_c00099{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m3c_c00099{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m4c_c00099{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mb5_c00099{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.mba_c00099{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m73_c00099{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m57_c00099{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m22_c00099{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m59_c00099{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mb0_c00099{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m46_c00099{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m51_c00099{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m8a_c00099{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m4a_c00099{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.md3_c00099{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m93_c00099{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m99_c00099{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m17_c00099{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mde_c00099{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mbc_c00099{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m75_c00099{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.mdd_c00099{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m81_c00099{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m7f_c00099{transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);}
.m67_c00099{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m7_c00099{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m7e_c00099{transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);}
.ma8_c00099{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.mc4_c00099{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m5b_c00099{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m47_c00099{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.mbf_c00099{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m9d_c00099{transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);}
.m64_c00099{transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);}
.m84_c00099{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.ma0_c00099{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m8c_c00099{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m6b_c00099{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m62_c00099{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m79_c00099{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m4b_c00099{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.mb1_c00099{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m82_c00099{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.ma3_c00099{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m27_c00099{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m2a_c00099{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mae_c00099{transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);}
.mb9_c00099{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.m5d_c00099{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m20_c00099{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m7a_c00099{transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);}
.mca_c00099{transform:matrix(0.482773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482773,0.000000,0.000000,0.250000,0,0);}
.m78_c00099{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m1_c00099{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.md1_c00099{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.md6_c00099{transform:matrix(0.489496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489496,0.000000,0.000000,0.250000,0,0);}
.m5f_c00099{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m2b_c00099{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m8d_c00099{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mab_c00099{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mac_c00099{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.mc0_c00099{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.ma_c00099{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m2_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);}
.m90_c00099{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mcf_c00099{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.ma1_c00099{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mc1_c00099{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m80_c00099{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m3b_c00099{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m4e_c00099{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m8f_c00099{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m98_c00099{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m52_c00099{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m11_c00099{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mcd_c00099{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m4_c00099{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m61_c00099{transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);}
.m50_c00099{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m3d_c00099{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);}
.md4_c00099{transform:matrix(0.525882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525882,0.000000,0.000000,0.250000,0,0);}
.m19_c00099{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m9e_c00099{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m1e_c00099{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.md8_c00099{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m88_c00099{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m63_c00099{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m9b_c00099{transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);}
.mc6_c00099{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.md7_c00099{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.mc_c00099{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m43_c00099{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m8_c00099{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m83_c00099{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m9_c00099{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m37_c00099{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m6_c00099{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m6f_c00099{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mc8_c00099{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m54_c00099{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m77_c00099{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.mcb_c00099{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m32_c00099{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.ma6_c00099{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m35_c00099{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.mdc_c00099{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m15_c00099{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m87_c00099{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m1d_c00099{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m74_c00099{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mc5_c00099{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mc3_c00099{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m14_c00099{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m85_c00099{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m65_c00099{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.md2_c00099{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m5e_c00099{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.maa_c00099{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m5a_c00099{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m6a_c00099{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m89_c00099{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m71_c00099{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mf_c00099{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m2d_c00099{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m4f_c00099{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m7c_c00099{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m9f_c00099{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mb4_c00099{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mb3_c00099{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.mb7_c00099{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.ma7_c00099{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m48_c00099{transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);}
.m33_c00099{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);}
.m55_c00099{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mad_c00099{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m12_c00099{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m58_c00099{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m16_c00099{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m7b_c00099{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m70_c00099{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.md5_c00099{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.m40_c00099{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);}
.m30_c00099{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m34_c00099{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m42_c00099{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.mda_c00099{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.mc9_c00099{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m7d_c00099{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m66_c00099{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m44_c00099{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m8b_c00099{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.mc7_c00099{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m5c_c00099{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m21_c00099{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m0_c00099{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.m3_c00099{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m26_c00099{transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);}
.m13_c00099{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m29_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);}
.m3a_c00099{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m92_c00099{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.ma9_c00099{transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);}
.mbd_c00099{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m76_c00099{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.mce_c00099{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mb_c00099{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m36_c00099{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m28_c00099{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m45_c00099{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m72_c00099{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.m10_c00099{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m69_c00099{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m31_c00099{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mc2_c00099{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m60_c00099{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.ma5_c00099{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m1f_c00099{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m8e_c00099{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m97_c00099{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m23_c00099{transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);}
.m49_c00099{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.m25_c00099{transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);}
.m2c_c00099{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m5_c00099{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00099{vertical-align:0.000000px;}
.v1_c00099{vertical-align:6.000000px;}
.ls0_c00099{letter-spacing:0.000000px;}
.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:-8.988101px;}
.ws1_c00099{word-spacing:0.000000px;}
.fc0_c00099{color:transparent;}
.fs2_c00099{font-size:3.420000px;}
.fs7_c00099{font-size:13.620000px;}
.fs5_c00099{font-size:18.720000px;}
.fs0_c00099{font-size:20.400000px;}
.fs4_c00099{font-size:25.500000px;}
.fs1_c00099{font-size:28.920000px;}
.fs6_c00099{font-size:32.340000px;}
.fs3_c00099{font-size:35.700000px;}
.fs8_c00099{font-size:39.120000px;}
.y0_c00099{bottom:0.000000px;}
.ye1_c00099{bottom:252.405000px;}
.ye2_c00099{bottom:253.245000px;}
.ye0_c00099{bottom:253.470000px;}
.ydc_c00099{bottom:255.405000px;}
.yde_c00099{bottom:255.825000px;}
.ydd_c00099{bottom:256.905000px;}
.ydf_c00099{bottom:257.970000px;}
.yd7_c00099{bottom:272.745000px;}
.ydb_c00099{bottom:274.245000px;}
.yd6_c00099{bottom:274.905000px;}
.yd8_c00099{bottom:275.130000px;}
.yda_c00099{bottom:275.970000px;}
.yd9_c00099{bottom:276.405000px;}
.yd5_c00099{bottom:293.745000px;}
.yd3_c00099{bottom:294.405000px;}
.yd4_c00099{bottom:295.905000px;}
.yd2_c00099{bottom:310.905000px;}
.yd1_c00099{bottom:314.325000px;}
.yd0_c00099{bottom:314.745000px;}
.ycf_c00099{bottom:315.405000px;}
.yce_c00099{bottom:331.470000px;}
.ycb_c00099{bottom:331.905000px;}
.yc8_c00099{bottom:332.745000px;}
.yc6_c00099{bottom:333.405000px;}
.yc7_c00099{bottom:334.905000px;}
.yc9_c00099{bottom:335.130000px;}
.ycd_c00099{bottom:335.970000px;}
.yca_c00099{bottom:336.405000px;}
.ycc_c00099{bottom:337.470000px;}
.yc5_c00099{bottom:352.245000px;}
.yc0_c00099{bottom:353.130000px;}
.yc2_c00099{bottom:353.745000px;}
.yc1_c00099{bottom:354.405000px;}
.yc4_c00099{bottom:354.630000px;}
.yc3_c00099{bottom:355.905000px;}
.ybb_c00099{bottom:370.905000px;}
.yba_c00099{bottom:371.745000px;}
.ybc_c00099{bottom:373.245000px;}
.yb9_c00099{bottom:373.905000px;}
.ybd_c00099{bottom:374.130000px;}
.ybe_c00099{bottom:374.325000px;}
.ybf_c00099{bottom:375.405000px;}
.yb5_c00099{bottom:390.405000px;}
.yb3_c00099{bottom:393.405000px;}
.yb7_c00099{bottom:393.630000px;}
.yb4_c00099{bottom:393.825000px;}
.yb8_c00099{bottom:394.470000px;}
.yb6_c00099{bottom:394.905000px;}
.yb1_c00099{bottom:412.245000px;}
.yb0_c00099{bottom:412.470000px;}
.yac_c00099{bottom:412.905000px;}
.yb2_c00099{bottom:413.130000px;}
.yaf_c00099{bottom:413.325000px;}
.yad_c00099{bottom:414.405000px;}
.yae_c00099{bottom:415.470000px;}
.ya6_c00099{bottom:429.405000px;}
.yaa_c00099{bottom:431.745000px;}
.yab_c00099{bottom:432.630000px;}
.ya7_c00099{bottom:433.470000px;}
.ya8_c00099{bottom:433.905000px;}
.ya9_c00099{bottom:435.405000px;}
.ya2_c00099{bottom:450.180000px;}
.ya3_c00099{bottom:451.245000px;}
.ya5_c00099{bottom:452.130000px;}
.ya0_c00099{bottom:452.325000px;}
.ya4_c00099{bottom:452.745000px;}
.y9f_c00099{bottom:453.405000px;}
.ya1_c00099{bottom:454.905000px;}
.y9e_c00099{bottom:470.745000px;}
.y98_c00099{bottom:489.405000px;}
.y9d_c00099{bottom:490.245000px;}
.y9c_c00099{bottom:491.745000px;}
.y97_c00099{bottom:492.405000px;}
.y9a_c00099{bottom:492.630000px;}
.y9b_c00099{bottom:492.825000px;}
.y99_c00099{bottom:493.905000px;}
.y94_c00099{bottom:510.825000px;}
.y95_c00099{bottom:511.050000px;}
.y96_c00099{bottom:511.245000px;}
.y91_c00099{bottom:511.905000px;}
.y92_c00099{bottom:512.130000px;}
.y93_c00099{bottom:513.405000px;}
.y8a_c00099{bottom:529.245000px;}
.y8c_c00099{bottom:530.745000px;}
.y90_c00099{bottom:531.405000px;}
.y8f_c00099{bottom:531.630000px;}
.y8d_c00099{bottom:531.825000px;}
.y8b_c00099{bottom:532.905000px;}
.y8e_c00099{bottom:533.130000px;}
.y88_c00099{bottom:550.245000px;}
.y87_c00099{bottom:551.325000px;}
.y86_c00099{bottom:552.405000px;}
.y89_c00099{bottom:552.630000px;}
.y84_c00099{bottom:569.745000px;}
.y85_c00099{bottom:570.825000px;}
.y83_c00099{bottom:571.905000px;}
.y82_c00099{bottom:572.970000px;}
.y80_c00099{bottom:588.405000px;}
.y7e_c00099{bottom:589.245000px;}
.y81_c00099{bottom:590.130000px;}
.y7d_c00099{bottom:591.405000px;}
.y7f_c00099{bottom:592.470000px;}
.y7a_c00099{bottom:608.745000px;}
.y78_c00099{bottom:609.630000px;}
.y79_c00099{bottom:610.905000px;}
.y7b_c00099{bottom:611.130000px;}
.y7c_c00099{bottom:611.970000px;}
.y71_c00099{bottom:628.245000px;}
.y73_c00099{bottom:629.325000px;}
.y75_c00099{bottom:629.745000px;}
.y72_c00099{bottom:630.405000px;}
.y76_c00099{bottom:630.630000px;}
.y74_c00099{bottom:631.470000px;}
.y77_c00099{bottom:631.905000px;}
.y6c_c00099{bottom:647.745000px;}
.y6e_c00099{bottom:649.245000px;}
.y6b_c00099{bottom:649.905000px;}
.y70_c00099{bottom:650.325000px;}
.y6f_c00099{bottom:650.970000px;}
.y6d_c00099{bottom:651.405000px;}
.y66_c00099{bottom:667.245000px;}
.y67_c00099{bottom:668.325000px;}
.y68_c00099{bottom:668.745000px;}
.y65_c00099{bottom:669.405000px;}
.y6a_c00099{bottom:669.825000px;}
.y69_c00099{bottom:670.905000px;}
.y60_c00099{bottom:685.905000px;}
.y5f_c00099{bottom:687.825000px;}
.y63_c00099{bottom:688.245000px;}
.y5e_c00099{bottom:688.905000px;}
.y62_c00099{bottom:689.130000px;}
.y64_c00099{bottom:689.325000px;}
.y61_c00099{bottom:690.405000px;}
.y56_c00099{bottom:706.245000px;}
.y5c_c00099{bottom:706.470000px;}
.y5a_c00099{bottom:706.905000px;}
.y5d_c00099{bottom:707.325000px;}
.y58_c00099{bottom:707.745000px;}
.y57_c00099{bottom:708.405000px;}
.y5b_c00099{bottom:709.470000px;}
.y59_c00099{bottom:709.905000px;}
.y53_c00099{bottom:727.905000px;}
.y55_c00099{bottom:728.130000px;}
.y54_c00099{bottom:729.405000px;}
.y4e_c00099{bottom:745.680000px;}
.y50_c00099{bottom:746.745000px;}
.y51_c00099{bottom:747.630000px;}
.y4f_c00099{bottom:748.905000px;}
.y52_c00099{bottom:749.130000px;}
.y49_c00099{bottom:765.405000px;}
.y47_c00099{bottom:766.245000px;}
.y4d_c00099{bottom:767.325000px;}
.y4a_c00099{bottom:768.405000px;}
.y4b_c00099{bottom:768.630000px;}
.y48_c00099{bottom:769.470000px;}
.y4c_c00099{bottom:769.905000px;}
.y40_c00099{bottom:785.325000px;}
.y43_c00099{bottom:785.745000px;}
.y41_c00099{bottom:786.825000px;}
.y45_c00099{bottom:787.245000px;}
.y42_c00099{bottom:787.905000px;}
.y46_c00099{bottom:788.325000px;}
.y44_c00099{bottom:789.405000px;}
.y3a_c00099{bottom:805.245000px;}
.y3c_c00099{bottom:805.470000px;}
.y3b_c00099{bottom:806.325000px;}
.y39_c00099{bottom:807.405000px;}
.y3f_c00099{bottom:807.630000px;}
.y3e_c00099{bottom:807.825000px;}
.y3d_c00099{bottom:808.905000px;}
.y36_c00099{bottom:824.745000px;}
.y37_c00099{bottom:826.245000px;}
.y35_c00099{bottom:826.905000px;}
.y38_c00099{bottom:828.405000px;}
.y34_c00099{bottom:844.245000px;}
.y31_c00099{bottom:845.745000px;}
.y33_c00099{bottom:847.905000px;}
.y32_c00099{bottom:847.920000px;}
.y30_c00099{bottom:880.905000px;}
.y2d_c00099{bottom:894.825000px;}
.y29_c00099{bottom:895.050000px;}
.y2c_c00099{bottom:895.905000px;}
.y2b_c00099{bottom:896.130000px;}
.y2a_c00099{bottom:896.970000px;}
.y2e_c00099{bottom:897.195000px;}
.y2f_c00099{bottom:898.050000px;}
.y24_c00099{bottom:909.825000px;}
.y23_c00099{bottom:910.050000px;}
.y26_c00099{bottom:910.905000px;}
.y27_c00099{bottom:911.970000px;}
.y28_c00099{bottom:912.195000px;}
.y25_c00099{bottom:913.050000px;}
.y22_c00099{bottom:924.825000px;}
.y20_c00099{bottom:926.550000px;}
.y21_c00099{bottom:926.970000px;}
.y1e_c00099{bottom:939.825000px;}
.y1c_c00099{bottom:940.905000px;}
.y1b_c00099{bottom:941.130000px;}
.y1d_c00099{bottom:941.970000px;}
.y1f_c00099{bottom:942.195000px;}
.y19_c00099{bottom:954.405000px;}
.y1a_c00099{bottom:954.825000px;}
.y18_c00099{bottom:956.970000px;}
.y13_c00099{bottom:968.325000px;}
.y16_c00099{bottom:969.405000px;}
.y12_c00099{bottom:969.630000px;}
.y14_c00099{bottom:970.695000px;}
.y17_c00099{bottom:970.905000px;}
.y15_c00099{bottom:971.550000px;}
.y11_c00099{bottom:1001.745000px;}
.y10_c00099{bottom:1004.970000px;}
.yb_c00099{bottom:1021.245000px;}
.yd_c00099{bottom:1022.745000px;}
.yc_c00099{bottom:1023.405000px;}
.yf_c00099{bottom:1023.630000px;}
.ye_c00099{bottom:1024.905000px;}
.ya_c00099{bottom:1040.970000px;}
.y7_c00099{bottom:1042.245000px;}
.y9_c00099{bottom:1043.130000px;}
.y8_c00099{bottom:1044.405000px;}
.y5_c00099{bottom:1061.745000px;}
.y3_c00099{bottom:1063.905000px;}
.y4_c00099{bottom:1063.920000px;}
.y6_c00099{bottom:1064.970000px;}
.y2_c00099{bottom:1098.405000px;}
.y1_c00099{bottom:1102.050000px;}
.h3_c00099{height:4.206533px;}
.h8_c00099{height:16.752334px;}
.h6_c00099{height:23.025234px;}
.h1_c00099{height:25.091602px;}
.h5_c00099{height:31.364502px;}
.h2_c00099{height:35.571035px;}
.h7_c00099{height:39.777568px;}
.ha_c00099{height:41.571035px;}
.h4_c00099{height:43.910303px;}
.h9_c00099{height:48.116836px;}
.h0_c00099{height:1335.000000px;}
.w0_c00099{width:880.500000px;}
.x0_c00099{left:0.000000px;}
.xfd_c00099{left:150.000000px;}
.xa1_c00099{left:151.500000px;}
.x34_c00099{left:153.000000px;}
.x2_c00099{left:154.080000px;}
.xae_c00099{left:165.000000px;}
.x100_c00099{left:166.500000px;}
.x29_c00099{left:168.000000px;}
.x56_c00099{left:169.080000px;}
.x3_c00099{left:170.580000px;}
.x67_c00099{left:172.920000px;}
.x7d_c00099{left:177.000000px;}
.xf0_c00099{left:178.920000px;}
.xea_c00099{left:180.000000px;}
.x28_c00099{left:181.920000px;}
.x37_c00099{left:184.500000px;}
.x2a_c00099{left:186.000000px;}
.x35_c00099{left:187.500000px;}
.x73_c00099{left:189.000000px;}
.x8f_c00099{left:190.920000px;}
.xbb_c00099{left:192.420000px;}
.xc6_c00099{left:196.080000px;}
.x68_c00099{left:198.000000px;}
.x85_c00099{left:199.500000px;}
.xa6_c00099{left:200.580000px;}
.x7e_c00099{left:202.080000px;}
.xf4_c00099{left:205.500000px;}
.xdb_c00099{left:208.920000px;}
.x43_c00099{left:210.000000px;}
.x36_c00099{left:215.355000px;}
.x90_c00099{left:217.080000px;}
.xc7_c00099{left:219.420000px;}
.x1a_c00099{left:220.500000px;}
.xd8_c00099{left:222.420000px;}
.xe1_c00099{left:223.500000px;}
.x91_c00099{left:224.580000px;}
.xf_c00099{left:226.920000px;}
.xce_c00099{left:228.000000px;}
.x103_c00099{left:229.080000px;}
.x74_c00099{left:230.580000px;}
.xdc_c00099{left:235.080000px;}
.x69_c00099{left:238.080000px;}
.xb4_c00099{left:240.420000px;}
.x1b_c00099{left:241.500000px;}
.xeb_c00099{left:243.000000px;}
.x5f_c00099{left:244.080000px;}
.x38_c00099{left:246.000000px;}
.xa7_c00099{left:247.500000px;}
.xc8_c00099{left:249.000000px;}
.x4c_c00099{left:252.000000px;}
.xc0_c00099{left:253.500000px;}
.x4_c00099{left:256.500000px;}
.x104_c00099{left:259.920000px;}
.x75_c00099{left:262.500000px;}
.x60_c00099{left:264.420000px;}
.x2b_c00099{left:267.000000px;}
.x6a_c00099{left:268.080000px;}
.xf7_c00099{left:271.500000px;}
.xe2_c00099{left:275.580000px;}
.x57_c00099{left:277.500000px;}
.x5_c00099{left:278.580000px;}
.x10_c00099{left:282.000000px;}
.x7f_c00099{left:283.500000px;}
.x86_c00099{left:285.000000px;}
.x44_c00099{left:287.145000px;}
.x6b_c00099{left:288.420000px;}
.xec_c00099{left:289.500000px;}
.x2c_c00099{left:291.000000px;}
.xc9_c00099{left:292.920000px;}
.xe3_c00099{left:294.420000px;}
.x80_c00099{left:295.500000px;}
.x1c_c00099{left:298.080000px;}
.xbc_c00099{left:299.580000px;}
.x92_c00099{left:303.420000px;}
.x4d_c00099{left:306.000000px;}
.xb5_c00099{left:307.500000px;}
.x11_c00099{left:309.420000px;}
.x58_c00099{left:310.500000px;}
.x6c_c00099{left:313.920000px;}
.xd5_c00099{left:315.420000px;}
.xbd_c00099{left:316.920000px;}
.x87_c00099{left:321.420000px;}
.xe4_c00099{left:322.500000px;}
.x76_c00099{left:328.080000px;}
.x39_c00099{left:329.145000px;}
.xcf_c00099{left:334.500000px;}
.xb6_c00099{left:336.000000px;}
.xa8_c00099{left:337.920000px;}
.x4e_c00099{left:343.080000px;}
.x1d_c00099{left:345.000000px;}
.xc1_c00099{left:348.420000px;}
.xca_c00099{left:349.500000px;}
.x12_c00099{left:351.420000px;}
.x6_c00099{left:352.500000px;}
.x2d_c00099{left:354.645000px;}
.xdd_c00099{left:357.000000px;}
.x61_c00099{left:358.500000px;}
.x93_c00099{left:363.420000px;}
.xfe_c00099{left:367.080000px;}
.xe5_c00099{left:370.500000px;}
.x7_c00099{left:372.000000px;}
.x3a_c00099{left:373.500000px;}
.x1e_c00099{left:375.000000px;}
.x88_c00099{left:376.500000px;}
.x77_c00099{left:379.500000px;}
.x9c_c00099{left:381.000000px;}
.xed_c00099{left:382.500000px;}
.xc2_c00099{left:384.000000px;}
.xff_c00099{left:385.920000px;}
.x45_c00099{left:387.000000px;}
.x101_c00099{left:390.000000px;}
.x13_c00099{left:391.920000px;}
.xd0_c00099{left:394.500000px;}
.x81_c00099{left:396.000000px;}
.xf5_c00099{left:397.500000px;}
.xaf_c00099{left:399.000000px;}
.x2e_c00099{left:400.500000px;}
.x1_c00099{left:402.000000px;}
.x6d_c00099{left:403.080000px;}
.xcb_c00099{left:405.420000px;}
.x1f_c00099{left:406.500000px;}
.x8_c00099{left:408.000000px;}
.xd6_c00099{left:411.000000px;}
.x99_c00099{left:412.500000px;}
.x82_c00099{left:414.420000px;}
.xe6_c00099{left:415.500000px;}
.xf9_c00099{left:417.000000px;}
.x14_c00099{left:418.500000px;}
.xb0_c00099{left:420.000000px;}
.x94_c00099{left:421.500000px;}
.xc3_c00099{left:424.500000px;}
.x6e_c00099{left:426.420000px;}
.x59_c00099{left:427.920000px;}
.x3b_c00099{left:430.500000px;}
.x78_c00099{left:432.000000px;}
.xb1_c00099{left:433.920000px;}
.x89_c00099{left:436.920000px;}
.xf6_c00099{left:438.000000px;}
.x2f_c00099{left:441.420000px;}
.x4f_c00099{left:442.500000px;}
.xa2_c00099{left:444.000000px;}
.x9_c00099{left:447.000000px;}
.xf1_c00099{left:448.500000px;}
.x6f_c00099{left:453.420000px;}
.x105_c00099{left:454.500000px;}
.xd9_c00099{left:456.000000px;}
.x9d_c00099{left:457.920000px;}
.x30_c00099{left:460.080000px;}
.xf8_c00099{left:462.000000px;}
.x15_c00099{left:464.580000px;}
.xc4_c00099{left:466.080000px;}
.x3c_c00099{left:467.580000px;}
.xbe_c00099{left:469.500000px;}
.xe7_c00099{left:471.000000px;}
.x20_c00099{left:472.500000px;}
.x95_c00099{left:475.500000px;}
.xd1_c00099{left:476.580000px;}
.x5a_c00099{left:478.920000px;}
.x8a_c00099{left:484.500000px;}
.x3d_c00099{left:486.000000px;}
.xb2_c00099{left:487.500000px;}
.x70_c00099{left:489.000000px;}
.x62_c00099{left:490.500000px;}
.x83_c00099{left:491.580000px;}
.x9e_c00099{left:493.920000px;}
.xd2_c00099{left:496.500000px;}
.x21_c00099{left:499.080000px;}
.xa_c00099{left:502.080000px;}
.xb7_c00099{left:504.000000px;}
.x79_c00099{left:505.500000px;}
.xa9_c00099{left:507.420000px;}
.x84_c00099{left:508.920000px;}
.xd3_c00099{left:511.080000px;}
.xc5_c00099{left:512.580000px;}
.x50_c00099{left:514.500000px;}
.x22_c00099{left:516.420000px;}
.xa3_c00099{left:517.920000px;}
.x46_c00099{left:519.000000px;}
.x51_c00099{left:526.500000px;}
.x47_c00099{left:528.000000px;}
.xd7_c00099{left:531.000000px;}
.xaa_c00099{left:532.080000px;}
.x16_c00099{left:534.645000px;}
.xf2_c00099{left:538.275000px;}
.x5b_c00099{left:539.580000px;}
.x23_c00099{left:543.000000px;}
.xa4_c00099{left:546.000000px;}
.x63_c00099{left:547.500000px;}
.x96_c00099{left:551.580000px;}
.x7a_c00099{left:555.420000px;}
.xb8_c00099{left:556.500000px;}
.xde_c00099{left:558.000000px;}
.x9a_c00099{left:560.580000px;}
.xee_c00099{left:562.080000px;}
.x3e_c00099{left:565.080000px;}
.xfa_c00099{left:567.000000px;}
.xab_c00099{left:568.500000px;}
.x9f_c00099{left:571.500000px;}
.x48_c00099{left:572.580000px;}
.x52_c00099{left:574.080000px;}
.xb_c00099{left:576.000000px;}
.x17_c00099{left:580.080000px;}
.xb3_c00099{left:582.000000px;}
.x5c_c00099{left:583.080000px;}
.x31_c00099{left:584.580000px;}
.x8b_c00099{left:586.500000px;}
.xac_c00099{left:591.420000px;}
.x64_c00099{left:593.580000px;}
.x49_c00099{left:598.920000px;}
.xcc_c00099{left:600.000000px;}
.x24_c00099{left:604.080000px;}
.x3f_c00099{left:606.000000px;}
.xe8_c00099{left:608.580000px;}
.x18_c00099{left:612.420000px;}
.x53_c00099{left:614.580000px;}
.xdf_c00099{left:616.920000px;}
.x40_c00099{left:618.000000px;}
.x102_c00099{left:622.500000px;}
.x7b_c00099{left:624.420000px;}
.x71_c00099{left:628.500000px;}
.x8c_c00099{left:630.000000px;}
.x106_c00099{left:631.500000px;}
.xc_c00099{left:632.580000px;}
.x4a_c00099{left:640.500000px;}
.x97_c00099{left:643.500000px;}
.x8d_c00099{left:646.500000px;}
.x107_c00099{left:649.500000px;}
.x19_c00099{left:651.000000px;}
.x5d_c00099{left:653.580000px;}
.xd_c00099{left:655.920000px;}
.x72_c00099{left:657.000000px;}
.xef_c00099{left:658.920000px;}
.xa0_c00099{left:660.000000px;}
.xfb_c00099{left:661.500000px;}
.x41_c00099{left:662.580000px;}
.x9b_c00099{left:664.500000px;}
.x32_c00099{left:665.580000px;}
.xe9_c00099{left:667.080000px;}
.x4b_c00099{left:669.420000px;}
.x65_c00099{left:673.500000px;}
.x25_c00099{left:675.000000px;}
.xa5_c00099{left:676.500000px;}
.x54_c00099{left:678.000000px;}
.xda_c00099{left:679.920000px;}
.xd4_c00099{left:682.080000px;}
.xcd_c00099{left:684.000000px;}
.xe_c00099{left:685.500000px;}
.xf3_c00099{left:687.000000px;}
.x8e_c00099{left:688.920000px;}
.x5e_c00099{left:690.000000px;}
.xb9_c00099{left:692.580000px;}
.x42_c00099{left:693.855000px;}
.x98_c00099{left:696.000000px;}
.x26_c00099{left:697.500000px;}
.xbf_c00099{left:699.420000px;}
.xfc_c00099{left:703.080000px;}
.xba_c00099{left:705.000000px;}
.x7c_c00099{left:706.080000px;}
.x55_c00099{left:709.920000px;}
.x66_c00099{left:712.920000px;}
.xe0_c00099{left:716.580000px;}
.xad_c00099{left:718.080000px;}
.x27_c00099{left:721.500000px;}
.x33_c00099{left:725.580000px;}
@media print{
.v0_c00099{vertical-align:0.000000pt;}
.v1_c00099{vertical-align:5.333333pt;}
.ls0_c00099{letter-spacing:0.000000pt;}
.ws0_c00099{word-spacing:-7.989423pt;}
.ws1_c00099{word-spacing:0.000000pt;}
.fs2_c00099{font-size:3.040000pt;}
.fs7_c00099{font-size:12.106667pt;}
.fs5_c00099{font-size:16.640000pt;}
.fs0_c00099{font-size:18.133333pt;}
.fs4_c00099{font-size:22.666667pt;}
.fs1_c00099{font-size:25.706667pt;}
.fs6_c00099{font-size:28.746667pt;}
.fs3_c00099{font-size:31.733333pt;}
.fs8_c00099{font-size:34.773333pt;}
.y0_c00099{bottom:0.000000pt;}
.ye1_c00099{bottom:224.360000pt;}
.ye2_c00099{bottom:225.106667pt;}
.ye0_c00099{bottom:225.306667pt;}
.ydc_c00099{bottom:227.026667pt;}
.yde_c00099{bottom:227.400000pt;}
.ydd_c00099{bottom:228.360000pt;}
.ydf_c00099{bottom:229.306667pt;}
.yd7_c00099{bottom:242.440000pt;}
.ydb_c00099{bottom:243.773333pt;}
.yd6_c00099{bottom:244.360000pt;}
.yd8_c00099{bottom:244.560000pt;}
.yda_c00099{bottom:245.306667pt;}
.yd9_c00099{bottom:245.693333pt;}
.yd5_c00099{bottom:261.106667pt;}
.yd3_c00099{bottom:261.693333pt;}
.yd4_c00099{bottom:263.026667pt;}
.yd2_c00099{bottom:276.360000pt;}
.yd1_c00099{bottom:279.400000pt;}
.yd0_c00099{bottom:279.773333pt;}
.ycf_c00099{bottom:280.360000pt;}
.yce_c00099{bottom:294.640000pt;}
.ycb_c00099{bottom:295.026667pt;}
.yc8_c00099{bottom:295.773333pt;}
.yc6_c00099{bottom:296.360000pt;}
.yc7_c00099{bottom:297.693333pt;}
.yc9_c00099{bottom:297.893333pt;}
.ycd_c00099{bottom:298.640000pt;}
.yca_c00099{bottom:299.026667pt;}
.ycc_c00099{bottom:299.973333pt;}
.yc5_c00099{bottom:313.106667pt;}
.yc0_c00099{bottom:313.893333pt;}
.yc2_c00099{bottom:314.440000pt;}
.yc1_c00099{bottom:315.026667pt;}
.yc4_c00099{bottom:315.226667pt;}
.yc3_c00099{bottom:316.360000pt;}
.ybb_c00099{bottom:329.693333pt;}
.yba_c00099{bottom:330.440000pt;}
.ybc_c00099{bottom:331.773333pt;}
.yb9_c00099{bottom:332.360000pt;}
.ybd_c00099{bottom:332.560000pt;}
.ybe_c00099{bottom:332.733333pt;}
.ybf_c00099{bottom:333.693333pt;}
.yb5_c00099{bottom:347.026667pt;}
.yb3_c00099{bottom:349.693333pt;}
.yb7_c00099{bottom:349.893333pt;}
.yb4_c00099{bottom:350.066667pt;}
.yb8_c00099{bottom:350.640000pt;}
.yb6_c00099{bottom:351.026667pt;}
.yb1_c00099{bottom:366.440000pt;}
.yb0_c00099{bottom:366.640000pt;}
.yac_c00099{bottom:367.026667pt;}
.yb2_c00099{bottom:367.226667pt;}
.yaf_c00099{bottom:367.400000pt;}
.yad_c00099{bottom:368.360000pt;}
.yae_c00099{bottom:369.306667pt;}
.ya6_c00099{bottom:381.693333pt;}
.yaa_c00099{bottom:383.773333pt;}
.yab_c00099{bottom:384.560000pt;}
.ya7_c00099{bottom:385.306667pt;}
.ya8_c00099{bottom:385.693333pt;}
.ya9_c00099{bottom:387.026667pt;}
.ya2_c00099{bottom:400.160000pt;}
.ya3_c00099{bottom:401.106667pt;}
.ya5_c00099{bottom:401.893333pt;}
.ya0_c00099{bottom:402.066667pt;}
.ya4_c00099{bottom:402.440000pt;}
.y9f_c00099{bottom:403.026667pt;}
.ya1_c00099{bottom:404.360000pt;}
.y9e_c00099{bottom:418.440000pt;}
.y98_c00099{bottom:435.026667pt;}
.y9d_c00099{bottom:435.773333pt;}
.y9c_c00099{bottom:437.106667pt;}
.y97_c00099{bottom:437.693333pt;}
.y9a_c00099{bottom:437.893333pt;}
.y9b_c00099{bottom:438.066667pt;}
.y99_c00099{bottom:439.026667pt;}
.y94_c00099{bottom:454.066667pt;}
.y95_c00099{bottom:454.266667pt;}
.y96_c00099{bottom:454.440000pt;}
.y91_c00099{bottom:455.026667pt;}
.y92_c00099{bottom:455.226667pt;}
.y93_c00099{bottom:456.360000pt;}
.y8a_c00099{bottom:470.440000pt;}
.y8c_c00099{bottom:471.773333pt;}
.y90_c00099{bottom:472.360000pt;}
.y8f_c00099{bottom:472.560000pt;}
.y8d_c00099{bottom:472.733333pt;}
.y8b_c00099{bottom:473.693333pt;}
.y8e_c00099{bottom:473.893333pt;}
.y88_c00099{bottom:489.106667pt;}
.y87_c00099{bottom:490.066667pt;}
.y86_c00099{bottom:491.026667pt;}
.y89_c00099{bottom:491.226667pt;}
.y84_c00099{bottom:506.440000pt;}
.y85_c00099{bottom:507.400000pt;}
.y83_c00099{bottom:508.360000pt;}
.y82_c00099{bottom:509.306667pt;}
.y80_c00099{bottom:523.026667pt;}
.y7e_c00099{bottom:523.773333pt;}
.y81_c00099{bottom:524.560000pt;}
.y7d_c00099{bottom:525.693333pt;}
.y7f_c00099{bottom:526.640000pt;}
.y7a_c00099{bottom:541.106667pt;}
.y78_c00099{bottom:541.893333pt;}
.y79_c00099{bottom:543.026667pt;}
.y7b_c00099{bottom:543.226667pt;}
.y7c_c00099{bottom:543.973333pt;}
.y71_c00099{bottom:558.440000pt;}
.y73_c00099{bottom:559.400000pt;}
.y75_c00099{bottom:559.773333pt;}
.y72_c00099{bottom:560.360000pt;}
.y76_c00099{bottom:560.560000pt;}
.y74_c00099{bottom:561.306667pt;}
.y77_c00099{bottom:561.693333pt;}
.y6c_c00099{bottom:575.773333pt;}
.y6e_c00099{bottom:577.106667pt;}
.y6b_c00099{bottom:577.693333pt;}
.y70_c00099{bottom:578.066667pt;}
.y6f_c00099{bottom:578.640000pt;}
.y6d_c00099{bottom:579.026667pt;}
.y66_c00099{bottom:593.106667pt;}
.y67_c00099{bottom:594.066667pt;}
.y68_c00099{bottom:594.440000pt;}
.y65_c00099{bottom:595.026667pt;}
.y6a_c00099{bottom:595.400000pt;}
.y69_c00099{bottom:596.360000pt;}
.y60_c00099{bottom:609.693333pt;}
.y5f_c00099{bottom:611.400000pt;}
.y63_c00099{bottom:611.773333pt;}
.y5e_c00099{bottom:612.360000pt;}
.y62_c00099{bottom:612.560000pt;}
.y64_c00099{bottom:612.733333pt;}
.y61_c00099{bottom:613.693333pt;}
.y56_c00099{bottom:627.773333pt;}
.y5c_c00099{bottom:627.973333pt;}
.y5a_c00099{bottom:628.360000pt;}
.y5d_c00099{bottom:628.733333pt;}
.y58_c00099{bottom:629.106667pt;}
.y57_c00099{bottom:629.693333pt;}
.y5b_c00099{bottom:630.640000pt;}
.y59_c00099{bottom:631.026667pt;}
.y53_c00099{bottom:647.026667pt;}
.y55_c00099{bottom:647.226667pt;}
.y54_c00099{bottom:648.360000pt;}
.y4e_c00099{bottom:662.826667pt;}
.y50_c00099{bottom:663.773333pt;}
.y51_c00099{bottom:664.560000pt;}
.y4f_c00099{bottom:665.693333pt;}
.y52_c00099{bottom:665.893333pt;}
.y49_c00099{bottom:680.360000pt;}
.y47_c00099{bottom:681.106667pt;}
.y4d_c00099{bottom:682.066667pt;}
.y4a_c00099{bottom:683.026667pt;}
.y4b_c00099{bottom:683.226667pt;}
.y48_c00099{bottom:683.973333pt;}
.y4c_c00099{bottom:684.360000pt;}
.y40_c00099{bottom:698.066667pt;}
.y43_c00099{bottom:698.440000pt;}
.y41_c00099{bottom:699.400000pt;}
.y45_c00099{bottom:699.773333pt;}
.y42_c00099{bottom:700.360000pt;}
.y46_c00099{bottom:700.733333pt;}
.y44_c00099{bottom:701.693333pt;}
.y3a_c00099{bottom:715.773333pt;}
.y3c_c00099{bottom:715.973333pt;}
.y3b_c00099{bottom:716.733333pt;}
.y39_c00099{bottom:717.693333pt;}
.y3f_c00099{bottom:717.893333pt;}
.y3e_c00099{bottom:718.066667pt;}
.y3d_c00099{bottom:719.026667pt;}
.y36_c00099{bottom:733.106667pt;}
.y37_c00099{bottom:734.440000pt;}
.y35_c00099{bottom:735.026667pt;}
.y38_c00099{bottom:736.360000pt;}
.y34_c00099{bottom:750.440000pt;}
.y31_c00099{bottom:751.773333pt;}
.y33_c00099{bottom:753.693333pt;}
.y32_c00099{bottom:753.706667pt;}
.y30_c00099{bottom:783.026667pt;}
.y2d_c00099{bottom:795.400000pt;}
.y29_c00099{bottom:795.600000pt;}
.y2c_c00099{bottom:796.360000pt;}
.y2b_c00099{bottom:796.560000pt;}
.y2a_c00099{bottom:797.306667pt;}
.y2e_c00099{bottom:797.506667pt;}
.y2f_c00099{bottom:798.266667pt;}
.y24_c00099{bottom:808.733333pt;}
.y23_c00099{bottom:808.933333pt;}
.y26_c00099{bottom:809.693333pt;}
.y27_c00099{bottom:810.640000pt;}
.y28_c00099{bottom:810.840000pt;}
.y25_c00099{bottom:811.600000pt;}
.y22_c00099{bottom:822.066667pt;}
.y20_c00099{bottom:823.600000pt;}
.y21_c00099{bottom:823.973333pt;}
.y1e_c00099{bottom:835.400000pt;}
.y1c_c00099{bottom:836.360000pt;}
.y1b_c00099{bottom:836.560000pt;}
.y1d_c00099{bottom:837.306667pt;}
.y1f_c00099{bottom:837.506667pt;}
.y19_c00099{bottom:848.360000pt;}
.y1a_c00099{bottom:848.733333pt;}
.y18_c00099{bottom:850.640000pt;}
.y13_c00099{bottom:860.733333pt;}
.y16_c00099{bottom:861.693333pt;}
.y12_c00099{bottom:861.893333pt;}
.y14_c00099{bottom:862.840000pt;}
.y17_c00099{bottom:863.026667pt;}
.y15_c00099{bottom:863.600000pt;}
.y11_c00099{bottom:890.440000pt;}
.y10_c00099{bottom:893.306667pt;}
.yb_c00099{bottom:907.773333pt;}
.yd_c00099{bottom:909.106667pt;}
.yc_c00099{bottom:909.693333pt;}
.yf_c00099{bottom:909.893333pt;}
.ye_c00099{bottom:911.026667pt;}
.ya_c00099{bottom:925.306667pt;}
.y7_c00099{bottom:926.440000pt;}
.y9_c00099{bottom:927.226667pt;}
.y8_c00099{bottom:928.360000pt;}
.y5_c00099{bottom:943.773333pt;}
.y3_c00099{bottom:945.693333pt;}
.y4_c00099{bottom:945.706667pt;}
.y6_c00099{bottom:946.640000pt;}
.y2_c00099{bottom:976.360000pt;}
.y1_c00099{bottom:979.600000pt;}
.h3_c00099{height:3.739141pt;}
.h8_c00099{height:14.890964pt;}
.h6_c00099{height:20.466875pt;}
.h1_c00099{height:22.303646pt;}
.h5_c00099{height:27.879557pt;}
.h2_c00099{height:31.618698pt;}
.h7_c00099{height:35.357839pt;}
.ha_c00099{height:36.952031pt;}
.h4_c00099{height:39.031380pt;}
.h9_c00099{height:42.770521pt;}
.h0_c00099{height:1186.666667pt;}
.w0_c00099{width:782.666667pt;}
.x0_c00099{left:0.000000pt;}
.xfd_c00099{left:133.333333pt;}
.xa1_c00099{left:134.666667pt;}
.x34_c00099{left:136.000000pt;}
.x2_c00099{left:136.960000pt;}
.xae_c00099{left:146.666667pt;}
.x100_c00099{left:148.000000pt;}
.x29_c00099{left:149.333333pt;}
.x56_c00099{left:150.293333pt;}
.x3_c00099{left:151.626667pt;}
.x67_c00099{left:153.706667pt;}
.x7d_c00099{left:157.333333pt;}
.xf0_c00099{left:159.040000pt;}
.xea_c00099{left:160.000000pt;}
.x28_c00099{left:161.706667pt;}
.x37_c00099{left:164.000000pt;}
.x2a_c00099{left:165.333333pt;}
.x35_c00099{left:166.666667pt;}
.x73_c00099{left:168.000000pt;}
.x8f_c00099{left:169.706667pt;}
.xbb_c00099{left:171.040000pt;}
.xc6_c00099{left:174.293333pt;}
.x68_c00099{left:176.000000pt;}
.x85_c00099{left:177.333333pt;}
.xa6_c00099{left:178.293333pt;}
.x7e_c00099{left:179.626667pt;}
.xf4_c00099{left:182.666667pt;}
.xdb_c00099{left:185.706667pt;}
.x43_c00099{left:186.666667pt;}
.x36_c00099{left:191.426667pt;}
.x90_c00099{left:192.960000pt;}
.xc7_c00099{left:195.040000pt;}
.x1a_c00099{left:196.000000pt;}
.xd8_c00099{left:197.706667pt;}
.xe1_c00099{left:198.666667pt;}
.x91_c00099{left:199.626667pt;}
.xf_c00099{left:201.706667pt;}
.xce_c00099{left:202.666667pt;}
.x103_c00099{left:203.626667pt;}
.x74_c00099{left:204.960000pt;}
.xdc_c00099{left:208.960000pt;}
.x69_c00099{left:211.626667pt;}
.xb4_c00099{left:213.706667pt;}
.x1b_c00099{left:214.666667pt;}
.xeb_c00099{left:216.000000pt;}
.x5f_c00099{left:216.960000pt;}
.x38_c00099{left:218.666667pt;}
.xa7_c00099{left:220.000000pt;}
.xc8_c00099{left:221.333333pt;}
.x4c_c00099{left:224.000000pt;}
.xc0_c00099{left:225.333333pt;}
.x4_c00099{left:228.000000pt;}
.x104_c00099{left:231.040000pt;}
.x75_c00099{left:233.333333pt;}
.x60_c00099{left:235.040000pt;}
.x2b_c00099{left:237.333333pt;}
.x6a_c00099{left:238.293333pt;}
.xf7_c00099{left:241.333333pt;}
.xe2_c00099{left:244.960000pt;}
.x57_c00099{left:246.666667pt;}
.x5_c00099{left:247.626667pt;}
.x10_c00099{left:250.666667pt;}
.x7f_c00099{left:252.000000pt;}
.x86_c00099{left:253.333333pt;}
.x44_c00099{left:255.240000pt;}
.x6b_c00099{left:256.373333pt;}
.xec_c00099{left:257.333333pt;}
.x2c_c00099{left:258.666667pt;}
.xc9_c00099{left:260.373333pt;}
.xe3_c00099{left:261.706667pt;}
.x80_c00099{left:262.666667pt;}
.x1c_c00099{left:264.960000pt;}
.xbc_c00099{left:266.293333pt;}
.x92_c00099{left:269.706667pt;}
.x4d_c00099{left:272.000000pt;}
.xb5_c00099{left:273.333333pt;}
.x11_c00099{left:275.040000pt;}
.x58_c00099{left:276.000000pt;}
.x6c_c00099{left:279.040000pt;}
.xd5_c00099{left:280.373333pt;}
.xbd_c00099{left:281.706667pt;}
.x87_c00099{left:285.706667pt;}
.xe4_c00099{left:286.666667pt;}
.x76_c00099{left:291.626667pt;}
.x39_c00099{left:292.573333pt;}
.xcf_c00099{left:297.333333pt;}
.xb6_c00099{left:298.666667pt;}
.xa8_c00099{left:300.373333pt;}
.x4e_c00099{left:304.960000pt;}
.x1d_c00099{left:306.666667pt;}
.xc1_c00099{left:309.706667pt;}
.xca_c00099{left:310.666667pt;}
.x12_c00099{left:312.373333pt;}
.x6_c00099{left:313.333333pt;}
.x2d_c00099{left:315.240000pt;}
.xdd_c00099{left:317.333333pt;}
.x61_c00099{left:318.666667pt;}
.x93_c00099{left:323.040000pt;}
.xfe_c00099{left:326.293333pt;}
.xe5_c00099{left:329.333333pt;}
.x7_c00099{left:330.666667pt;}
.x3a_c00099{left:332.000000pt;}
.x1e_c00099{left:333.333333pt;}
.x88_c00099{left:334.666667pt;}
.x77_c00099{left:337.333333pt;}
.x9c_c00099{left:338.666667pt;}
.xed_c00099{left:340.000000pt;}
.xc2_c00099{left:341.333333pt;}
.xff_c00099{left:343.040000pt;}
.x45_c00099{left:344.000000pt;}
.x101_c00099{left:346.666667pt;}
.x13_c00099{left:348.373333pt;}
.xd0_c00099{left:350.666667pt;}
.x81_c00099{left:352.000000pt;}
.xf5_c00099{left:353.333333pt;}
.xaf_c00099{left:354.666667pt;}
.x2e_c00099{left:356.000000pt;}
.x1_c00099{left:357.333333pt;}
.x6d_c00099{left:358.293333pt;}
.xcb_c00099{left:360.373333pt;}
.x1f_c00099{left:361.333333pt;}
.x8_c00099{left:362.666667pt;}
.xd6_c00099{left:365.333333pt;}
.x99_c00099{left:366.666667pt;}
.x82_c00099{left:368.373333pt;}
.xe6_c00099{left:369.333333pt;}
.xf9_c00099{left:370.666667pt;}
.x14_c00099{left:372.000000pt;}
.xb0_c00099{left:373.333333pt;}
.x94_c00099{left:374.666667pt;}
.xc3_c00099{left:377.333333pt;}
.x6e_c00099{left:379.040000pt;}
.x59_c00099{left:380.373333pt;}
.x3b_c00099{left:382.666667pt;}
.x78_c00099{left:384.000000pt;}
.xb1_c00099{left:385.706667pt;}
.x89_c00099{left:388.373333pt;}
.xf6_c00099{left:389.333333pt;}
.x2f_c00099{left:392.373333pt;}
.x4f_c00099{left:393.333333pt;}
.xa2_c00099{left:394.666667pt;}
.x9_c00099{left:397.333333pt;}
.xf1_c00099{left:398.666667pt;}
.x6f_c00099{left:403.040000pt;}
.x105_c00099{left:404.000000pt;}
.xd9_c00099{left:405.333333pt;}
.x9d_c00099{left:407.040000pt;}
.x30_c00099{left:408.960000pt;}
.xf8_c00099{left:410.666667pt;}
.x15_c00099{left:412.960000pt;}
.xc4_c00099{left:414.293333pt;}
.x3c_c00099{left:415.626667pt;}
.xbe_c00099{left:417.333333pt;}
.xe7_c00099{left:418.666667pt;}
.x20_c00099{left:420.000000pt;}
.x95_c00099{left:422.666667pt;}
.xd1_c00099{left:423.626667pt;}
.x5a_c00099{left:425.706667pt;}
.x8a_c00099{left:430.666667pt;}
.x3d_c00099{left:432.000000pt;}
.xb2_c00099{left:433.333333pt;}
.x70_c00099{left:434.666667pt;}
.x62_c00099{left:436.000000pt;}
.x83_c00099{left:436.960000pt;}
.x9e_c00099{left:439.040000pt;}
.xd2_c00099{left:441.333333pt;}
.x21_c00099{left:443.626667pt;}
.xa_c00099{left:446.293333pt;}
.xb7_c00099{left:448.000000pt;}
.x79_c00099{left:449.333333pt;}
.xa9_c00099{left:451.040000pt;}
.x84_c00099{left:452.373333pt;}
.xd3_c00099{left:454.293333pt;}
.xc5_c00099{left:455.626667pt;}
.x50_c00099{left:457.333333pt;}
.x22_c00099{left:459.040000pt;}
.xa3_c00099{left:460.373333pt;}
.x46_c00099{left:461.333333pt;}
.x51_c00099{left:468.000000pt;}
.x47_c00099{left:469.333333pt;}
.xd7_c00099{left:472.000000pt;}
.xaa_c00099{left:472.960000pt;}
.x16_c00099{left:475.240000pt;}
.xf2_c00099{left:478.466667pt;}
.x5b_c00099{left:479.626667pt;}
.x23_c00099{left:482.666667pt;}
.xa4_c00099{left:485.333333pt;}
.x63_c00099{left:486.666667pt;}
.x96_c00099{left:490.293333pt;}
.x7a_c00099{left:493.706667pt;}
.xb8_c00099{left:494.666667pt;}
.xde_c00099{left:496.000000pt;}
.x9a_c00099{left:498.293333pt;}
.xee_c00099{left:499.626667pt;}
.x3e_c00099{left:502.293333pt;}
.xfa_c00099{left:504.000000pt;}
.xab_c00099{left:505.333333pt;}
.x9f_c00099{left:508.000000pt;}
.x48_c00099{left:508.960000pt;}
.x52_c00099{left:510.293333pt;}
.xb_c00099{left:512.000000pt;}
.x17_c00099{left:515.626667pt;}
.xb3_c00099{left:517.333333pt;}
.x5c_c00099{left:518.293333pt;}
.x31_c00099{left:519.626667pt;}
.x8b_c00099{left:521.333333pt;}
.xac_c00099{left:525.706667pt;}
.x64_c00099{left:527.626667pt;}
.x49_c00099{left:532.373333pt;}
.xcc_c00099{left:533.333333pt;}
.x24_c00099{left:536.960000pt;}
.x3f_c00099{left:538.666667pt;}
.xe8_c00099{left:540.960000pt;}
.x18_c00099{left:544.373333pt;}
.x53_c00099{left:546.293333pt;}
.xdf_c00099{left:548.373333pt;}
.x40_c00099{left:549.333333pt;}
.x102_c00099{left:553.333333pt;}
.x7b_c00099{left:555.040000pt;}
.x71_c00099{left:558.666667pt;}
.x8c_c00099{left:560.000000pt;}
.x106_c00099{left:561.333333pt;}
.xc_c00099{left:562.293333pt;}
.x4a_c00099{left:569.333333pt;}
.x97_c00099{left:572.000000pt;}
.x8d_c00099{left:574.666667pt;}
.x107_c00099{left:577.333333pt;}
.x19_c00099{left:578.666667pt;}
.x5d_c00099{left:580.960000pt;}
.xd_c00099{left:583.040000pt;}
.x72_c00099{left:584.000000pt;}
.xef_c00099{left:585.706667pt;}
.xa0_c00099{left:586.666667pt;}
.xfb_c00099{left:588.000000pt;}
.x41_c00099{left:588.960000pt;}
.x9b_c00099{left:590.666667pt;}
.x32_c00099{left:591.626667pt;}
.xe9_c00099{left:592.960000pt;}
.x4b_c00099{left:595.040000pt;}
.x65_c00099{left:598.666667pt;}
.x25_c00099{left:600.000000pt;}
.xa5_c00099{left:601.333333pt;}
.x54_c00099{left:602.666667pt;}
.xda_c00099{left:604.373333pt;}
.xd4_c00099{left:606.293333pt;}
.xcd_c00099{left:608.000000pt;}
.xe_c00099{left:609.333333pt;}
.xf3_c00099{left:610.666667pt;}
.x8e_c00099{left:612.373333pt;}
.x5e_c00099{left:613.333333pt;}
.xb9_c00099{left:615.626667pt;}
.x42_c00099{left:616.760000pt;}
.x98_c00099{left:618.666667pt;}
.x26_c00099{left:620.000000pt;}
.xbf_c00099{left:621.706667pt;}
.xfc_c00099{left:624.960000pt;}
.xba_c00099{left:626.666667pt;}
.x7c_c00099{left:627.626667pt;}
.x55_c00099{left:631.040000pt;}
.x66_c00099{left:633.706667pt;}
.xe0_c00099{left:636.960000pt;}
.xad_c00099{left:638.293333pt;}
.x27_c00099{left:641.333333pt;}
.x33_c00099{left:644.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_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_2c4b5ef878e6105af75b7f9f.woff2')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5a_c00100{transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);}
.m7f_c00100{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00100{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.mb6_c00100{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m1d_c00100{transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);}
.m77_c00100{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m6e_c00100{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m88_c00100{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m2b_c00100{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m62_c00100{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m13_c00100{transform:matrix(0.369632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369632,0.000000,0.000000,0.250000,0,0);}
.m29_c00100{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.maa_c00100{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mb8_c00100{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.m89_c00100{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00100{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m9e_c00100{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m38_c00100{transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);}
.m83_c00100{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m91_c00100{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m34_c00100{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.ma6_c00100{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m35_c00100{transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);}
.mc3_c00100{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.mfc_c00100{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m94_c00100{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mf1_c00100{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.mb5_c00100{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m7e_c00100{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m18_c00100{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m21_c00100{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m24_c00100{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.md8_c00100{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.me9_c00100{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m27_c00100{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m9_c00100{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m50_c00100{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m3e_c00100{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mbf_c00100{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mbc_c00100{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m37_c00100{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m2c_c00100{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mc4_c00100{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.ma8_c00100{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.mb1_c00100{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.mb_c00100{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m16_c00100{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.mb7_c00100{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m76_c00100{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m2e_c00100{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m14_c00100{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m79_c00100{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.mfd_c00100{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m51_c00100{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m1a_c00100{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m95_c00100{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mc_c00100{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m44_c00100{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m8b_c00100{transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);}
.mbe_c00100{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m11_c00100{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.m8c_c00100{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m98_c00100{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m40_c00100{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m5c_c00100{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mfa_c00100{transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);}
.mc6_c00100{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mb3_c00100{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.ma9_c00100{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.mee_c00100{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m48_c00100{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.mf3_c00100{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m9d_c00100{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m47_c00100{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.me8_c00100{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mbb_c00100{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.mef_c00100{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m1_c00100{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.mcb_c00100{transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);}
.mdb_c00100{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.me3_c00100{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m68_c00100{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m3c_c00100{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m93_c00100{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.maf_c00100{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m1f_c00100{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m7b_c00100{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mc9_c00100{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m54_c00100{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m4f_c00100{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.m30_c00100{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m43_c00100{transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);}
.me6_c00100{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m10_c00100{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.mdf_c00100{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.mcd_c00100{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.mcf_c00100{transform:matrix(0.468067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468067,0.000000,0.000000,0.250000,0,0);}
.m6d_c00100{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m69_c00100{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m57_c00100{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.m46_c00100{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.mda_c00100{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m5b_c00100{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m6a_c00100{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.mce_c00100{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m7_c00100{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mca_c00100{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m23_c00100{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m26_c00100{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);}
.m4c_c00100{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m75_c00100{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mfb_c00100{transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);}
.mf9_c00100{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.me4_c00100{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m65_c00100{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m6c_c00100{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m52_c00100{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.mf8_c00100{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m8e_c00100{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m1e_c00100{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.ma7_c00100{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m99_c00100{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.mbd_c00100{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m12_c00100{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);}
.me5_c00100{transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);}
.m55_c00100{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.me7_c00100{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mba_c00100{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m32_c00100{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.m42_c00100{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.md3_c00100{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m8d_c00100{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mac_c00100{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m97_c00100{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m74_c00100{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m7a_c00100{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m36_c00100{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mde_c00100{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m9a_c00100{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mdc_c00100{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m5f_c00100{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m70_c00100{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m72_c00100{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m96_c00100{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m6b_c00100{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m1b_c00100{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m73_c00100{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m3d_c00100{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.md5_c00100{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m86_c00100{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mc8_c00100{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m4_c00100{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.ma5_c00100{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m8f_c00100{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m9b_c00100{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m49_c00100{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m8a_c00100{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m87_c00100{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m41_c00100{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m4a_c00100{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mc7_c00100{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.ma0_c00100{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mc1_c00100{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m7c_c00100{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m92_c00100{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m71_c00100{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mab_c00100{transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);}
.mb4_c00100{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.mfe_c00100{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m3b_c00100{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.md6_c00100{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m56_c00100{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.md9_c00100{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m19_c00100{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.md4_c00100{transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);}
.mb0_c00100{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m2a_c00100{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m6f_c00100{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mb9_c00100{transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);}
.m64_c00100{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m84_c00100{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.me2_c00100{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.meb_c00100{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mf7_c00100{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m2f_c00100{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);}
.m66_c00100{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mcc_c00100{transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);}
.mec_c00100{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m61_c00100{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m60_c00100{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.m90_c00100{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m45_c00100{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m7d_c00100{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m6_c00100{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.med_c00100{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m3f_c00100{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.md0_c00100{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m20_c00100{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m31_c00100{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m63_c00100{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.md_c00100{transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);}
.m78_c00100{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m4b_c00100{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m5_c00100{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m3_c00100{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.ma3_c00100{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.m4d_c00100{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.ma4_c00100{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m15_c00100{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.mc0_c00100{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mc2_c00100{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.mea_c00100{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m25_c00100{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mad_c00100{transform:matrix(0.603734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603734,0.000000,0.000000,0.250000,0,0);}
.m0_c00100{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.mae_c00100{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mc5_c00100{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m9f_c00100{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mf2_c00100{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.mdd_c00100{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m67_c00100{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.md7_c00100{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m82_c00100{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m80_c00100{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m85_c00100{transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);}
.mf0_c00100{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m33_c00100{transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);}
.me1_c00100{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.ma_c00100{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m2d_c00100{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m28_c00100{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m59_c00100{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.me0_c00100{transform:matrix(0.695882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695882,0.000000,0.000000,0.250000,0,0);}
.m4e_c00100{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.ma1_c00100{transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);}
.m5d_c00100{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.ma2_c00100{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m2_c00100{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.me_c00100{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.md1_c00100{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m58_c00100{transform:matrix(0.728676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728676,0.000000,0.000000,0.250000,0,0);}
.mb2_c00100{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m53_c00100{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m17_c00100{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m8_c00100{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mf5_c00100{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.md2_c00100{transform:matrix(0.793269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.793269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.793269,0.000000,0.000000,0.250000,0,0);}
.m39_c00100{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.mf4_c00100{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mf6_c00100{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m1c_c00100{transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);}
.m81_c00100{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m5e_c00100{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m22_c00100{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m3a_c00100{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws2_c00100{word-spacing:-4.530080px;}
.ws1_c00100{word-spacing:-2.127840px;}
.ws3_c00100{word-spacing:0.000000px;}
.ws0_c00100{word-spacing:1.062776px;}
.fc0_c00100{color:transparent;}
.fs7_c00100{font-size:3.420000px;}
.fs8_c00100{font-size:11.880000px;}
.fs9_c00100{font-size:13.620000px;}
.fs2_c00100{font-size:18.720000px;}
.fs0_c00100{font-size:20.400000px;}
.fs3_c00100{font-size:25.500000px;}
.fs1_c00100{font-size:28.920000px;}
.fs4_c00100{font-size:32.340000px;}
.fs5_c00100{font-size:35.700000px;}
.fs6_c00100{font-size:39.120000px;}
.y0_c00100{bottom:0.000000px;}
.yc9_c00100{bottom:272.745000px;}
.yca_c00100{bottom:273.630000px;}
.ycb_c00100{bottom:274.470000px;}
.yc8_c00100{bottom:274.905000px;}
.yc7_c00100{bottom:275.325000px;}
.yc4_c00100{bottom:292.470000px;}
.yc3_c00100{bottom:292.905000px;}
.yc1_c00100{bottom:293.745000px;}
.yc2_c00100{bottom:294.630000px;}
.yc5_c00100{bottom:294.825000px;}
.yc0_c00100{bottom:295.905000px;}
.yc6_c00100{bottom:296.970000px;}
.ybe_c00100{bottom:313.245000px;}
.ybf_c00100{bottom:314.130000px;}
.ybd_c00100{bottom:315.405000px;}
.yba_c00100{bottom:332.745000px;}
.ybb_c00100{bottom:333.630000px;}
.ybc_c00100{bottom:334.470000px;}
.yb9_c00100{bottom:334.905000px;}
.yb7_c00100{bottom:352.245000px;}
.yb8_c00100{bottom:352.905000px;}
.yb6_c00100{bottom:353.325000px;}
.yb5_c00100{bottom:354.405000px;}
.yad_c00100{bottom:370.905000px;}
.yb4_c00100{bottom:371.325000px;}
.yb3_c00100{bottom:371.745000px;}
.yb2_c00100{bottom:372.630000px;}
.yaf_c00100{bottom:372.825000px;}
.yb0_c00100{bottom:373.050000px;}
.yb1_c00100{bottom:373.470000px;}
.yae_c00100{bottom:373.905000px;}
.ya8_c00100{bottom:391.245000px;}
.yaa_c00100{bottom:392.325000px;}
.ya9_c00100{bottom:393.405000px;}
.yac_c00100{bottom:393.630000px;}
.yab_c00100{bottom:394.905000px;}
.ya3_c00100{bottom:410.745000px;}
.ya7_c00100{bottom:411.825000px;}
.ya4_c00100{bottom:412.905000px;}
.ya5_c00100{bottom:413.130000px;}
.ya6_c00100{bottom:413.970000px;}
.y9e_c00100{bottom:430.470000px;}
.y9d_c00100{bottom:430.905000px;}
.y9f_c00100{bottom:431.745000px;}
.ya0_c00100{bottom:432.405000px;}
.ya1_c00100{bottom:432.630000px;}
.ya2_c00100{bottom:433.470000px;}
.y9a_c00100{bottom:452.130000px;}
.y9b_c00100{bottom:452.325000px;}
.y9c_c00100{bottom:452.970000px;}
.y99_c00100{bottom:453.405000px;}
.y95_c00100{bottom:469.905000px;}
.y93_c00100{bottom:470.745000px;}
.y98_c00100{bottom:471.630000px;}
.y97_c00100{bottom:471.825000px;}
.y94_c00100{bottom:472.905000px;}
.y96_c00100{bottom:473.970000px;}
.y91_c00100{bottom:488.970000px;}
.y92_c00100{bottom:489.825000px;}
.y8f_c00100{bottom:490.245000px;}
.y8e_c00100{bottom:491.970000px;}
.y90_c00100{bottom:492.405000px;}
.y8b_c00100{bottom:509.745000px;}
.y8c_c00100{bottom:511.905000px;}
.y8d_c00100{bottom:512.130000px;}
.y8a_c00100{bottom:528.405000px;}
.y87_c00100{bottom:529.245000px;}
.y88_c00100{bottom:530.745000px;}
.y89_c00100{bottom:531.405000px;}
.y86_c00100{bottom:532.470000px;}
.y84_c00100{bottom:550.245000px;}
.y85_c00100{bottom:551.130000px;}
.y83_c00100{bottom:551.970000px;}
.y82_c00100{bottom:552.405000px;}
.y81_c00100{bottom:585.405000px;}
.y80_c00100{bottom:629.970000px;}
.y7f_c00100{bottom:630.405000px;}
.y7b_c00100{bottom:646.905000px;}
.y7a_c00100{bottom:647.745000px;}
.y7c_c00100{bottom:648.405000px;}
.y7d_c00100{bottom:648.825000px;}
.y7e_c00100{bottom:649.245000px;}
.y79_c00100{bottom:649.905000px;}
.y78_c00100{bottom:668.745000px;}
.y76_c00100{bottom:669.405000px;}
.y77_c00100{bottom:670.905000px;}
.y6f_c00100{bottom:686.745000px;}
.y72_c00100{bottom:687.825000px;}
.y74_c00100{bottom:688.245000px;}
.y73_c00100{bottom:689.130000px;}
.y70_c00100{bottom:689.970000px;}
.y71_c00100{bottom:690.405000px;}
.y75_c00100{bottom:691.470000px;}
.y6d_c00100{bottom:707.745000px;}
.y6e_c00100{bottom:708.825000px;}
.y6c_c00100{bottom:709.905000px;}
.y6a_c00100{bottom:727.245000px;}
.y6b_c00100{bottom:728.325000px;}
.y69_c00100{bottom:729.405000px;}
.y66_c00100{bottom:745.680000px;}
.y68_c00100{bottom:746.325000px;}
.y64_c00100{bottom:746.745000px;}
.y67_c00100{bottom:748.470000px;}
.y62_c00100{bottom:748.905000px;}
.y65_c00100{bottom:749.130000px;}
.y63_c00100{bottom:749.970000px;}
.y5d_c00100{bottom:765.405000px;}
.y5e_c00100{bottom:766.245000px;}
.y5c_c00100{bottom:768.405000px;}
.y61_c00100{bottom:768.630000px;}
.y60_c00100{bottom:769.470000px;}
.y5f_c00100{bottom:771.630000px;}
.y59_c00100{bottom:785.745000px;}
.y5b_c00100{bottom:786.825000px;}
.y57_c00100{bottom:787.470000px;}
.y56_c00100{bottom:787.905000px;}
.y58_c00100{bottom:788.130000px;}
.y5a_c00100{bottom:788.970000px;}
.y55_c00100{bottom:804.405000px;}
.y53_c00100{bottom:805.245000px;}
.y54_c00100{bottom:806.130000px;}
.y52_c00100{bottom:806.325000px;}
.y51_c00100{bottom:807.405000px;}
.y4f_c00100{bottom:823.905000px;}
.y4e_c00100{bottom:824.745000px;}
.y50_c00100{bottom:825.825000px;}
.y4c_c00100{bottom:826.905000px;}
.y4d_c00100{bottom:826.920000px;}
.y46_c00100{bottom:843.195000px;}
.y48_c00100{bottom:843.405000px;}
.y44_c00100{bottom:844.050000px;}
.y4b_c00100{bottom:844.905000px;}
.y47_c00100{bottom:845.745000px;}
.y45_c00100{bottom:846.630000px;}
.y4a_c00100{bottom:846.825000px;}
.y49_c00100{bottom:847.905000px;}
.y43_c00100{bottom:862.275000px;}
.y41_c00100{bottom:862.905000px;}
.y40_c00100{bottom:864.405000px;}
.y3e_c00100{bottom:865.245000px;}
.y3d_c00100{bottom:866.130000px;}
.y3f_c00100{bottom:866.325000px;}
.y3c_c00100{bottom:867.405000px;}
.y42_c00100{bottom:870.630000px;}
.y38_c00100{bottom:882.405000px;}
.y3a_c00100{bottom:883.905000px;}
.y3b_c00100{bottom:885.630000px;}
.y37_c00100{bottom:885.825000px;}
.y39_c00100{bottom:886.905000px;}
.y32_c00100{bottom:903.405000px;}
.y35_c00100{bottom:904.245000px;}
.y33_c00100{bottom:905.325000px;}
.y34_c00100{bottom:906.405000px;}
.y36_c00100{bottom:907.470000px;}
.y2f_c00100{bottom:922.905000px;}
.y31_c00100{bottom:923.745000px;}
.y2e_c00100{bottom:924.825000px;}
.y30_c00100{bottom:925.905000px;}
.y28_c00100{bottom:942.825000px;}
.y29_c00100{bottom:943.245000px;}
.y2c_c00100{bottom:943.905000px;}
.y2a_c00100{bottom:944.130000px;}
.y2d_c00100{bottom:944.970000px;}
.y27_c00100{bottom:945.405000px;}
.y2b_c00100{bottom:946.920000px;}
.y23_c00100{bottom:961.905000px;}
.y22_c00100{bottom:962.745000px;}
.y24_c00100{bottom:962.970000px;}
.y25_c00100{bottom:963.825000px;}
.y26_c00100{bottom:965.970000px;}
.y1e_c00100{bottom:981.405000px;}
.y1d_c00100{bottom:982.245000px;}
.y20_c00100{bottom:982.905000px;}
.y21_c00100{bottom:983.550000px;}
.y1f_c00100{bottom:985.470000px;}
.y1b_c00100{bottom:1000.905000px;}
.y19_c00100{bottom:1001.745000px;}
.y1a_c00100{bottom:1001.970000px;}
.y18_c00100{bottom:1003.905000px;}
.y1c_c00100{bottom:1004.970000px;}
.y11_c00100{bottom:1019.130000px;}
.y12_c00100{bottom:1020.180000px;}
.y15_c00100{bottom:1020.405000px;}
.y16_c00100{bottom:1020.630000px;}
.y14_c00100{bottom:1021.245000px;}
.y10_c00100{bottom:1021.470000px;}
.y17_c00100{bottom:1022.745000px;}
.y13_c00100{bottom:1023.405000px;}
.yf_c00100{bottom:1040.130000px;}
.ya_c00100{bottom:1040.325000px;}
.yc_c00100{bottom:1041.180000px;}
.yb_c00100{bottom:1041.405000px;}
.y9_c00100{bottom:1041.825000px;}
.yd_c00100{bottom:1042.245000px;}
.ye_c00100{bottom:1044.405000px;}
.y6_c00100{bottom:1061.325000px;}
.y7_c00100{bottom:1061.745000px;}
.y3_c00100{bottom:1062.630000px;}
.y4_c00100{bottom:1063.470000px;}
.y5_c00100{bottom:1063.905000px;}
.y8_c00100{bottom:1064.970000px;}
.y2_c00100{bottom:1099.905000px;}
.y1_c00100{bottom:1102.050000px;}
.h8_c00100{height:4.206533px;}
.h9_c00100{height:14.612168px;}
.ha_c00100{height:16.752334px;}
.h3_c00100{height:23.025234px;}
.h1_c00100{height:25.091602px;}
.h4_c00100{height:31.364502px;}
.h2_c00100{height:35.571035px;}
.h5_c00100{height:39.777568px;}
.h6_c00100{height:43.910303px;}
.h7_c00100{height:48.116836px;}
.h0_c00100{height:1335.000000px;}
.w0_c00100{width:880.500000px;}
.x0_c00100{left:0.000000px;}
.x3_c00100{left:153.420000px;}
.x1e_c00100{left:154.920000px;}
.xb0_c00100{left:156.000000px;}
.xc9_c00100{left:157.080000px;}
.x7a_c00100{left:170.145000px;}
.xbd_c00100{left:177.000000px;}
.x1f_c00100{left:178.500000px;}
.x91_c00100{left:183.420000px;}
.xa4_c00100{left:186.000000px;}
.x9b_c00100{left:187.500000px;}
.x2a_c00100{left:189.000000px;}
.x73_c00100{left:190.920000px;}
.x4_c00100{left:194.580000px;}
.x5f_c00100{left:195.855000px;}
.x83_c00100{left:199.080000px;}
.x4d_c00100{left:200.355000px;}
.xd4_c00100{left:202.500000px;}
.x20_c00100{left:205.080000px;}
.x41_c00100{left:208.920000px;}
.xfc_c00100{left:213.420000px;}
.x5_c00100{left:214.920000px;}
.x74_c00100{left:216.000000px;}
.x67_c00100{left:218.580000px;}
.x8b_c00100{left:220.080000px;}
.x12_c00100{left:222.000000px;}
.x36_c00100{left:230.580000px;}
.xea_c00100{left:232.500000px;}
.x21_c00100{left:234.000000px;}
.xf6_c00100{left:235.080000px;}
.x60_c00100{left:236.580000px;}
.x4e_c00100{left:238.275000px;}
.x7b_c00100{left:240.000000px;}
.x6_c00100{left:243.000000px;}
.x6a_c00100{left:246.000000px;}
.x92_c00100{left:247.500000px;}
.xb1_c00100{left:249.420000px;}
.xc3_c00100{left:253.500000px;}
.x2b_c00100{left:255.420000px;}
.x13_c00100{left:259.080000px;}
.x42_c00100{left:262.080000px;}
.xe2_c00100{left:264.000000px;}
.x9c_c00100{left:265.920000px;}
.x93_c00100{left:270.000000px;}
.x4f_c00100{left:274.080000px;}
.x5b_c00100{left:277.080000px;}
.xeb_c00100{left:279.000000px;}
.xa5_c00100{left:281.580000px;}
.x22_c00100{left:283.500000px;}
.xb2_c00100{left:286.500000px;}
.x84_c00100{left:289.275000px;}
.x75_c00100{left:291.420000px;}
.xdf_c00100{left:292.500000px;}
.x43_c00100{left:294.000000px;}
.x37_c00100{left:297.000000px;}
.x14_c00100{left:298.080000px;}
.xc4_c00100{left:300.420000px;}
.x6b_c00100{left:301.500000px;}
.xa6_c00100{left:302.580000px;}
.xba_c00100{left:304.500000px;}
.xee_c00100{left:305.580000px;}
.xb3_c00100{left:307.275000px;}
.x2c_c00100{left:308.580000px;}
.xd1_c00100{left:310.080000px;}
.x9d_c00100{left:312.000000px;}
.x94_c00100{left:315.420000px;}
.x50_c00100{left:316.500000px;}
.xf1_c00100{left:317.580000px;}
.x61_c00100{left:319.500000px;}
.x7c_c00100{left:322.500000px;}
.xbf_c00100{left:324.420000px;}
.xca_c00100{left:325.500000px;}
.x9e_c00100{left:326.580000px;}
.x38_c00100{left:330.000000px;}
.xad_c00100{left:331.080000px;}
.x15_c00100{left:334.920000px;}
.xcb_c00100{left:336.000000px;}
.xf7_c00100{left:337.500000px;}
.x76_c00100{left:340.080000px;}
.x8c_c00100{left:341.580000px;}
.x85_c00100{left:345.000000px;}
.xe0_c00100{left:346.500000px;}
.x7_c00100{left:347.580000px;}
.x51_c00100{left:351.000000px;}
.xf8_c00100{left:352.500000px;}
.xe3_c00100{left:354.420000px;}
.xa7_c00100{left:357.420000px;}
.x2d_c00100{left:358.500000px;}
.x6c_c00100{left:359.580000px;}
.xda_c00100{left:363.000000px;}
.x7d_c00100{left:364.500000px;}
.x8_c00100{left:367.920000px;}
.x9f_c00100{left:369.000000px;}
.x52_c00100{left:371.580000px;}
.x23_c00100{left:373.500000px;}
.xb4_c00100{left:378.420000px;}
.xe6_c00100{left:381.000000px;}
.x16_c00100{left:382.080000px;}
.x44_c00100{left:385.920000px;}
.x95_c00100{left:388.080000px;}
.xdb_c00100{left:389.580000px;}
.x6d_c00100{left:391.500000px;}
.x9_c00100{left:396.000000px;}
.xe7_c00100{left:397.920000px;}
.x1_c00100{left:399.000000px;}
.x17_c00100{left:400.920000px;}
.x86_c00100{left:402.420000px;}
.xb5_c00100{left:404.580000px;}
.xf2_c00100{left:406.920000px;}
.xbe_c00100{left:408.000000px;}
.xbb_c00100{left:409.500000px;}
.x2e_c00100{left:411.000000px;}
.x45_c00100{left:412.500000px;}
.x53_c00100{left:417.420000px;}
.x8d_c00100{left:418.500000px;}
.xa0_c00100{left:419.580000px;}
.xa8_c00100{left:421.080000px;}
.x39_c00100{left:422.775000px;}
.x96_c00100{left:424.920000px;}
.x62_c00100{left:427.500000px;}
.xc5_c00100{left:428.580000px;}
.x87_c00100{left:430.500000px;}
.x77_c00100{left:432.420000px;}
.xa_c00100{left:433.500000px;}
.x7e_c00100{left:434.580000px;}
.xcc_c00100{left:436.500000px;}
.x18_c00100{left:439.500000px;}
.xa1_c00100{left:440.580000px;}
.xa9_c00100{left:447.000000px;}
.x24_c00100{left:448.920000px;}
.xae_c00100{left:450.420000px;}
.x46_c00100{left:454.080000px;}
.xdc_c00100{left:456.000000px;}
.x68_c00100{left:459.000000px;}
.x3a_c00100{left:460.080000px;}
.xb_c00100{left:462.420000px;}
.xfd_c00100{left:463.920000px;}
.xe4_c00100{left:466.920000px;}
.x6e_c00100{left:468.000000px;}
.x78_c00100{left:469.920000px;}
.xf3_c00100{left:471.000000px;}
.xe8_c00100{left:472.920000px;}
.xc6_c00100{left:474.420000px;}
.x54_c00100{left:475.920000px;}
.x2f_c00100{left:478.500000px;}
.xcf_c00100{left:481.080000px;}
.xb6_c00100{left:487.500000px;}
.x5c_c00100{left:490.920000px;}
.x47_c00100{left:493.080000px;}
.x88_c00100{left:495.000000px;}
.x25_c00100{left:496.080000px;}
.x3b_c00100{left:498.000000px;}
.x79_c00100{left:501.000000px;}
.x30_c00100{left:504.420000px;}
.xc_c00100{left:505.500000px;}
.x97_c00100{left:508.500000px;}
.x63_c00100{left:512.580000px;}
.x26_c00100{left:514.920000px;}
.xb7_c00100{left:516.000000px;}
.xa2_c00100{left:517.500000px;}
.x48_c00100{left:520.080000px;}
.xf9_c00100{left:522.420000px;}
.x19_c00100{left:524.580000px;}
.xd_c00100{left:526.500000px;}
.x55_c00100{left:528.420000px;}
.xaa_c00100{left:529.920000px;}
.xe1_c00100{left:532.080000px;}
.x64_c00100{left:534.000000px;}
.xc0_c00100{left:535.500000px;}
.xe9_c00100{left:538.080000px;}
.x5d_c00100{left:541.500000px;}
.x31_c00100{left:542.580000px;}
.x6f_c00100{left:544.920000px;}
.x3c_c00100{left:549.000000px;}
.xcd_c00100{left:550.500000px;}
.xc1_c00100{left:553.080000px;}
.xec_c00100{left:555.420000px;}
.xd5_c00100{left:559.500000px;}
.x1a_c00100{left:562.500000px;}
.x7f_c00100{left:564.000000px;}
.x56_c00100{left:565.920000px;}
.xe5_c00100{left:567.420000px;}
.x49_c00100{left:570.000000px;}
.x98_c00100{left:571.500000px;}
.xdd_c00100{left:574.500000px;}
.x70_c00100{left:575.580000px;}
.xd6_c00100{left:580.080000px;}
.x80_c00100{left:583.500000px;}
.x32_c00100{left:585.420000px;}
.x71_c00100{left:586.500000px;}
.x1b_c00100{left:589.080000px;}
.xf4_c00100{left:590.580000px;}
.xc7_c00100{left:596.580000px;}
.xe_c00100{left:598.500000px;}
.x5e_c00100{left:600.000000px;}
.x89_c00100{left:601.920000px;}
.x57_c00100{left:603.000000px;}
.x4a_c00100{left:607.500000px;}
.x65_c00100{left:610.500000px;}
.xf5_c00100{left:612.420000px;}
.x3d_c00100{left:615.000000px;}
.xd2_c00100{left:616.920000px;}
.x69_c00100{left:618.420000px;}
.x99_c00100{left:621.000000px;}
.xf_c00100{left:624.000000px;}
.xc8_c00100{left:626.580000px;}
.xef_c00100{left:630.000000px;}
.xd0_c00100{left:631.080000px;}
.xce_c00100{left:633.000000px;}
.x33_c00100{left:634.080000px;}
.xfa_c00100{left:635.580000px;}
.x1c_c00100{left:637.920000px;}
.xd7_c00100{left:639.000000px;}
.x8a_c00100{left:640.500000px;}
.x66_c00100{left:641.580000px;}
.x9a_c00100{left:643.500000px;}
.x3e_c00100{left:644.580000px;}
.x27_c00100{left:646.500000px;}
.x8e_c00100{left:648.000000px;}
.xc2_c00100{left:649.920000px;}
.xde_c00100{left:652.500000px;}
.xed_c00100{left:654.420000px;}
.x34_c00100{left:655.920000px;}
.x81_c00100{left:657.420000px;}
.xf0_c00100{left:658.920000px;}
.x58_c00100{left:661.500000px;}
.x8f_c00100{left:666.000000px;}
.xd3_c00100{left:667.920000px;}
.xa3_c00100{left:669.000000px;}
.x1d_c00100{left:670.500000px;}
.x28_c00100{left:672.000000px;}
.x10_c00100{left:673.500000px;}
.x4b_c00100{left:675.000000px;}
.x3f_c00100{left:676.080000px;}
.x59_c00100{left:679.920000px;}
.xab_c00100{left:681.420000px;}
.xb8_c00100{left:682.500000px;}
.x72_c00100{left:690.420000px;}
.x35_c00100{left:691.500000px;}
.x82_c00100{left:692.580000px;}
.x4c_c00100{left:694.080000px;}
.x11_c00100{left:695.775000px;}
.xaf_c00100{left:697.275000px;}
.x29_c00100{left:698.580000px;}
.xd8_c00100{left:700.920000px;}
.x40_c00100{left:705.420000px;}
.xbc_c00100{left:707.580000px;}
.xac_c00100{left:709.275000px;}
.x2_c00100{left:712.080000px;}
.x90_c00100{left:715.500000px;}
.x5a_c00100{left:716.580000px;}
.xd9_c00100{left:720.000000px;}
.xfb_c00100{left:721.080000px;}
.xb9_c00100{left:726.000000px;}
@media print{
.v0_c00100{vertical-align:0.000000pt;}
.ls0_c00100{letter-spacing:0.000000pt;}
.ws2_c00100{word-spacing:-4.026738pt;}
.ws1_c00100{word-spacing:-1.891413pt;}
.ws3_c00100{word-spacing:0.000000pt;}
.ws0_c00100{word-spacing:0.944690pt;}
.fs7_c00100{font-size:3.040000pt;}
.fs8_c00100{font-size:10.560000pt;}
.fs9_c00100{font-size:12.106667pt;}
.fs2_c00100{font-size:16.640000pt;}
.fs0_c00100{font-size:18.133333pt;}
.fs3_c00100{font-size:22.666667pt;}
.fs1_c00100{font-size:25.706667pt;}
.fs4_c00100{font-size:28.746667pt;}
.fs5_c00100{font-size:31.733333pt;}
.fs6_c00100{font-size:34.773333pt;}
.y0_c00100{bottom:0.000000pt;}
.yc9_c00100{bottom:242.440000pt;}
.yca_c00100{bottom:243.226667pt;}
.ycb_c00100{bottom:243.973333pt;}
.yc8_c00100{bottom:244.360000pt;}
.yc7_c00100{bottom:244.733333pt;}
.yc4_c00100{bottom:259.973333pt;}
.yc3_c00100{bottom:260.360000pt;}
.yc1_c00100{bottom:261.106667pt;}
.yc2_c00100{bottom:261.893333pt;}
.yc5_c00100{bottom:262.066667pt;}
.yc0_c00100{bottom:263.026667pt;}
.yc6_c00100{bottom:263.973333pt;}
.ybe_c00100{bottom:278.440000pt;}
.ybf_c00100{bottom:279.226667pt;}
.ybd_c00100{bottom:280.360000pt;}
.yba_c00100{bottom:295.773333pt;}
.ybb_c00100{bottom:296.560000pt;}
.ybc_c00100{bottom:297.306667pt;}
.yb9_c00100{bottom:297.693333pt;}
.yb7_c00100{bottom:313.106667pt;}
.yb8_c00100{bottom:313.693333pt;}
.yb6_c00100{bottom:314.066667pt;}
.yb5_c00100{bottom:315.026667pt;}
.yad_c00100{bottom:329.693333pt;}
.yb4_c00100{bottom:330.066667pt;}
.yb3_c00100{bottom:330.440000pt;}
.yb2_c00100{bottom:331.226667pt;}
.yaf_c00100{bottom:331.400000pt;}
.yb0_c00100{bottom:331.600000pt;}
.yb1_c00100{bottom:331.973333pt;}
.yae_c00100{bottom:332.360000pt;}
.ya8_c00100{bottom:347.773333pt;}
.yaa_c00100{bottom:348.733333pt;}
.ya9_c00100{bottom:349.693333pt;}
.yac_c00100{bottom:349.893333pt;}
.yab_c00100{bottom:351.026667pt;}
.ya3_c00100{bottom:365.106667pt;}
.ya7_c00100{bottom:366.066667pt;}
.ya4_c00100{bottom:367.026667pt;}
.ya5_c00100{bottom:367.226667pt;}
.ya6_c00100{bottom:367.973333pt;}
.y9e_c00100{bottom:382.640000pt;}
.y9d_c00100{bottom:383.026667pt;}
.y9f_c00100{bottom:383.773333pt;}
.ya0_c00100{bottom:384.360000pt;}
.ya1_c00100{bottom:384.560000pt;}
.ya2_c00100{bottom:385.306667pt;}
.y9a_c00100{bottom:401.893333pt;}
.y9b_c00100{bottom:402.066667pt;}
.y9c_c00100{bottom:402.640000pt;}
.y99_c00100{bottom:403.026667pt;}
.y95_c00100{bottom:417.693333pt;}
.y93_c00100{bottom:418.440000pt;}
.y98_c00100{bottom:419.226667pt;}
.y97_c00100{bottom:419.400000pt;}
.y94_c00100{bottom:420.360000pt;}
.y96_c00100{bottom:421.306667pt;}
.y91_c00100{bottom:434.640000pt;}
.y92_c00100{bottom:435.400000pt;}
.y8f_c00100{bottom:435.773333pt;}
.y8e_c00100{bottom:437.306667pt;}
.y90_c00100{bottom:437.693333pt;}
.y8b_c00100{bottom:453.106667pt;}
.y8c_c00100{bottom:455.026667pt;}
.y8d_c00100{bottom:455.226667pt;}
.y8a_c00100{bottom:469.693333pt;}
.y87_c00100{bottom:470.440000pt;}
.y88_c00100{bottom:471.773333pt;}
.y89_c00100{bottom:472.360000pt;}
.y86_c00100{bottom:473.306667pt;}
.y84_c00100{bottom:489.106667pt;}
.y85_c00100{bottom:489.893333pt;}
.y83_c00100{bottom:490.640000pt;}
.y82_c00100{bottom:491.026667pt;}
.y81_c00100{bottom:520.360000pt;}
.y80_c00100{bottom:559.973333pt;}
.y7f_c00100{bottom:560.360000pt;}
.y7b_c00100{bottom:575.026667pt;}
.y7a_c00100{bottom:575.773333pt;}
.y7c_c00100{bottom:576.360000pt;}
.y7d_c00100{bottom:576.733333pt;}
.y7e_c00100{bottom:577.106667pt;}
.y79_c00100{bottom:577.693333pt;}
.y78_c00100{bottom:594.440000pt;}
.y76_c00100{bottom:595.026667pt;}
.y77_c00100{bottom:596.360000pt;}
.y6f_c00100{bottom:610.440000pt;}
.y72_c00100{bottom:611.400000pt;}
.y74_c00100{bottom:611.773333pt;}
.y73_c00100{bottom:612.560000pt;}
.y70_c00100{bottom:613.306667pt;}
.y71_c00100{bottom:613.693333pt;}
.y75_c00100{bottom:614.640000pt;}
.y6d_c00100{bottom:629.106667pt;}
.y6e_c00100{bottom:630.066667pt;}
.y6c_c00100{bottom:631.026667pt;}
.y6a_c00100{bottom:646.440000pt;}
.y6b_c00100{bottom:647.400000pt;}
.y69_c00100{bottom:648.360000pt;}
.y66_c00100{bottom:662.826667pt;}
.y68_c00100{bottom:663.400000pt;}
.y64_c00100{bottom:663.773333pt;}
.y67_c00100{bottom:665.306667pt;}
.y62_c00100{bottom:665.693333pt;}
.y65_c00100{bottom:665.893333pt;}
.y63_c00100{bottom:666.640000pt;}
.y5d_c00100{bottom:680.360000pt;}
.y5e_c00100{bottom:681.106667pt;}
.y5c_c00100{bottom:683.026667pt;}
.y61_c00100{bottom:683.226667pt;}
.y60_c00100{bottom:683.973333pt;}
.y5f_c00100{bottom:685.893333pt;}
.y59_c00100{bottom:698.440000pt;}
.y5b_c00100{bottom:699.400000pt;}
.y57_c00100{bottom:699.973333pt;}
.y56_c00100{bottom:700.360000pt;}
.y58_c00100{bottom:700.560000pt;}
.y5a_c00100{bottom:701.306667pt;}
.y55_c00100{bottom:715.026667pt;}
.y53_c00100{bottom:715.773333pt;}
.y54_c00100{bottom:716.560000pt;}
.y52_c00100{bottom:716.733333pt;}
.y51_c00100{bottom:717.693333pt;}
.y4f_c00100{bottom:732.360000pt;}
.y4e_c00100{bottom:733.106667pt;}
.y50_c00100{bottom:734.066667pt;}
.y4c_c00100{bottom:735.026667pt;}
.y4d_c00100{bottom:735.040000pt;}
.y46_c00100{bottom:749.506667pt;}
.y48_c00100{bottom:749.693333pt;}
.y44_c00100{bottom:750.266667pt;}
.y4b_c00100{bottom:751.026667pt;}
.y47_c00100{bottom:751.773333pt;}
.y45_c00100{bottom:752.560000pt;}
.y4a_c00100{bottom:752.733333pt;}
.y49_c00100{bottom:753.693333pt;}
.y43_c00100{bottom:766.466667pt;}
.y41_c00100{bottom:767.026667pt;}
.y40_c00100{bottom:768.360000pt;}
.y3e_c00100{bottom:769.106667pt;}
.y3d_c00100{bottom:769.893333pt;}
.y3f_c00100{bottom:770.066667pt;}
.y3c_c00100{bottom:771.026667pt;}
.y42_c00100{bottom:773.893333pt;}
.y38_c00100{bottom:784.360000pt;}
.y3a_c00100{bottom:785.693333pt;}
.y3b_c00100{bottom:787.226667pt;}
.y37_c00100{bottom:787.400000pt;}
.y39_c00100{bottom:788.360000pt;}
.y32_c00100{bottom:803.026667pt;}
.y35_c00100{bottom:803.773333pt;}
.y33_c00100{bottom:804.733333pt;}
.y34_c00100{bottom:805.693333pt;}
.y36_c00100{bottom:806.640000pt;}
.y2f_c00100{bottom:820.360000pt;}
.y31_c00100{bottom:821.106667pt;}
.y2e_c00100{bottom:822.066667pt;}
.y30_c00100{bottom:823.026667pt;}
.y28_c00100{bottom:838.066667pt;}
.y29_c00100{bottom:838.440000pt;}
.y2c_c00100{bottom:839.026667pt;}
.y2a_c00100{bottom:839.226667pt;}
.y2d_c00100{bottom:839.973333pt;}
.y27_c00100{bottom:840.360000pt;}
.y2b_c00100{bottom:841.706667pt;}
.y23_c00100{bottom:855.026667pt;}
.y22_c00100{bottom:855.773333pt;}
.y24_c00100{bottom:855.973333pt;}
.y25_c00100{bottom:856.733333pt;}
.y26_c00100{bottom:858.640000pt;}
.y1e_c00100{bottom:872.360000pt;}
.y1d_c00100{bottom:873.106667pt;}
.y20_c00100{bottom:873.693333pt;}
.y21_c00100{bottom:874.266667pt;}
.y1f_c00100{bottom:875.973333pt;}
.y1b_c00100{bottom:889.693333pt;}
.y19_c00100{bottom:890.440000pt;}
.y1a_c00100{bottom:890.640000pt;}
.y18_c00100{bottom:892.360000pt;}
.y1c_c00100{bottom:893.306667pt;}
.y11_c00100{bottom:905.893333pt;}
.y12_c00100{bottom:906.826667pt;}
.y15_c00100{bottom:907.026667pt;}
.y16_c00100{bottom:907.226667pt;}
.y14_c00100{bottom:907.773333pt;}
.y10_c00100{bottom:907.973333pt;}
.y17_c00100{bottom:909.106667pt;}
.y13_c00100{bottom:909.693333pt;}
.yf_c00100{bottom:924.560000pt;}
.ya_c00100{bottom:924.733333pt;}
.yc_c00100{bottom:925.493333pt;}
.yb_c00100{bottom:925.693333pt;}
.y9_c00100{bottom:926.066667pt;}
.yd_c00100{bottom:926.440000pt;}
.ye_c00100{bottom:928.360000pt;}
.y6_c00100{bottom:943.400000pt;}
.y7_c00100{bottom:943.773333pt;}
.y3_c00100{bottom:944.560000pt;}
.y4_c00100{bottom:945.306667pt;}
.y5_c00100{bottom:945.693333pt;}
.y8_c00100{bottom:946.640000pt;}
.y2_c00100{bottom:977.693333pt;}
.y1_c00100{bottom:979.600000pt;}
.h8_c00100{height:3.739141pt;}
.h9_c00100{height:12.988594pt;}
.ha_c00100{height:14.890964pt;}
.h3_c00100{height:20.466875pt;}
.h1_c00100{height:22.303646pt;}
.h4_c00100{height:27.879557pt;}
.h2_c00100{height:31.618698pt;}
.h5_c00100{height:35.357839pt;}
.h6_c00100{height:39.031380pt;}
.h7_c00100{height:42.770521pt;}
.h0_c00100{height:1186.666667pt;}
.w0_c00100{width:782.666667pt;}
.x0_c00100{left:0.000000pt;}
.x3_c00100{left:136.373333pt;}
.x1e_c00100{left:137.706667pt;}
.xb0_c00100{left:138.666667pt;}
.xc9_c00100{left:139.626667pt;}
.x7a_c00100{left:151.240000pt;}
.xbd_c00100{left:157.333333pt;}
.x1f_c00100{left:158.666667pt;}
.x91_c00100{left:163.040000pt;}
.xa4_c00100{left:165.333333pt;}
.x9b_c00100{left:166.666667pt;}
.x2a_c00100{left:168.000000pt;}
.x73_c00100{left:169.706667pt;}
.x4_c00100{left:172.960000pt;}
.x5f_c00100{left:174.093333pt;}
.x83_c00100{left:176.960000pt;}
.x4d_c00100{left:178.093333pt;}
.xd4_c00100{left:180.000000pt;}
.x20_c00100{left:182.293333pt;}
.x41_c00100{left:185.706667pt;}
.xfc_c00100{left:189.706667pt;}
.x5_c00100{left:191.040000pt;}
.x74_c00100{left:192.000000pt;}
.x67_c00100{left:194.293333pt;}
.x8b_c00100{left:195.626667pt;}
.x12_c00100{left:197.333333pt;}
.x36_c00100{left:204.960000pt;}
.xea_c00100{left:206.666667pt;}
.x21_c00100{left:208.000000pt;}
.xf6_c00100{left:208.960000pt;}
.x60_c00100{left:210.293333pt;}
.x4e_c00100{left:211.800000pt;}
.x7b_c00100{left:213.333333pt;}
.x6_c00100{left:216.000000pt;}
.x6a_c00100{left:218.666667pt;}
.x92_c00100{left:220.000000pt;}
.xb1_c00100{left:221.706667pt;}
.xc3_c00100{left:225.333333pt;}
.x2b_c00100{left:227.040000pt;}
.x13_c00100{left:230.293333pt;}
.x42_c00100{left:232.960000pt;}
.xe2_c00100{left:234.666667pt;}
.x9c_c00100{left:236.373333pt;}
.x93_c00100{left:240.000000pt;}
.x4f_c00100{left:243.626667pt;}
.x5b_c00100{left:246.293333pt;}
.xeb_c00100{left:248.000000pt;}
.xa5_c00100{left:250.293333pt;}
.x22_c00100{left:252.000000pt;}
.xb2_c00100{left:254.666667pt;}
.x84_c00100{left:257.133333pt;}
.x75_c00100{left:259.040000pt;}
.xdf_c00100{left:260.000000pt;}
.x43_c00100{left:261.333333pt;}
.x37_c00100{left:264.000000pt;}
.x14_c00100{left:264.960000pt;}
.xc4_c00100{left:267.040000pt;}
.x6b_c00100{left:268.000000pt;}
.xa6_c00100{left:268.960000pt;}
.xba_c00100{left:270.666667pt;}
.xee_c00100{left:271.626667pt;}
.xb3_c00100{left:273.133333pt;}
.x2c_c00100{left:274.293333pt;}
.xd1_c00100{left:275.626667pt;}
.x9d_c00100{left:277.333333pt;}
.x94_c00100{left:280.373333pt;}
.x50_c00100{left:281.333333pt;}
.xf1_c00100{left:282.293333pt;}
.x61_c00100{left:284.000000pt;}
.x7c_c00100{left:286.666667pt;}
.xbf_c00100{left:288.373333pt;}
.xca_c00100{left:289.333333pt;}
.x9e_c00100{left:290.293333pt;}
.x38_c00100{left:293.333333pt;}
.xad_c00100{left:294.293333pt;}
.x15_c00100{left:297.706667pt;}
.xcb_c00100{left:298.666667pt;}
.xf7_c00100{left:300.000000pt;}
.x76_c00100{left:302.293333pt;}
.x8c_c00100{left:303.626667pt;}
.x85_c00100{left:306.666667pt;}
.xe0_c00100{left:308.000000pt;}
.x7_c00100{left:308.960000pt;}
.x51_c00100{left:312.000000pt;}
.xf8_c00100{left:313.333333pt;}
.xe3_c00100{left:315.040000pt;}
.xa7_c00100{left:317.706667pt;}
.x2d_c00100{left:318.666667pt;}
.x6c_c00100{left:319.626667pt;}
.xda_c00100{left:322.666667pt;}
.x7d_c00100{left:324.000000pt;}
.x8_c00100{left:327.040000pt;}
.x9f_c00100{left:328.000000pt;}
.x52_c00100{left:330.293333pt;}
.x23_c00100{left:332.000000pt;}
.xb4_c00100{left:336.373333pt;}
.xe6_c00100{left:338.666667pt;}
.x16_c00100{left:339.626667pt;}
.x44_c00100{left:343.040000pt;}
.x95_c00100{left:344.960000pt;}
.xdb_c00100{left:346.293333pt;}
.x6d_c00100{left:348.000000pt;}
.x9_c00100{left:352.000000pt;}
.xe7_c00100{left:353.706667pt;}
.x1_c00100{left:354.666667pt;}
.x17_c00100{left:356.373333pt;}
.x86_c00100{left:357.706667pt;}
.xb5_c00100{left:359.626667pt;}
.xf2_c00100{left:361.706667pt;}
.xbe_c00100{left:362.666667pt;}
.xbb_c00100{left:364.000000pt;}
.x2e_c00100{left:365.333333pt;}
.x45_c00100{left:366.666667pt;}
.x53_c00100{left:371.040000pt;}
.x8d_c00100{left:372.000000pt;}
.xa0_c00100{left:372.960000pt;}
.xa8_c00100{left:374.293333pt;}
.x39_c00100{left:375.800000pt;}
.x96_c00100{left:377.706667pt;}
.x62_c00100{left:380.000000pt;}
.xc5_c00100{left:380.960000pt;}
.x87_c00100{left:382.666667pt;}
.x77_c00100{left:384.373333pt;}
.xa_c00100{left:385.333333pt;}
.x7e_c00100{left:386.293333pt;}
.xcc_c00100{left:388.000000pt;}
.x18_c00100{left:390.666667pt;}
.xa1_c00100{left:391.626667pt;}
.xa9_c00100{left:397.333333pt;}
.x24_c00100{left:399.040000pt;}
.xae_c00100{left:400.373333pt;}
.x46_c00100{left:403.626667pt;}
.xdc_c00100{left:405.333333pt;}
.x68_c00100{left:408.000000pt;}
.x3a_c00100{left:408.960000pt;}
.xb_c00100{left:411.040000pt;}
.xfd_c00100{left:412.373333pt;}
.xe4_c00100{left:415.040000pt;}
.x6e_c00100{left:416.000000pt;}
.x78_c00100{left:417.706667pt;}
.xf3_c00100{left:418.666667pt;}
.xe8_c00100{left:420.373333pt;}
.xc6_c00100{left:421.706667pt;}
.x54_c00100{left:423.040000pt;}
.x2f_c00100{left:425.333333pt;}
.xcf_c00100{left:427.626667pt;}
.xb6_c00100{left:433.333333pt;}
.x5c_c00100{left:436.373333pt;}
.x47_c00100{left:438.293333pt;}
.x88_c00100{left:440.000000pt;}
.x25_c00100{left:440.960000pt;}
.x3b_c00100{left:442.666667pt;}
.x79_c00100{left:445.333333pt;}
.x30_c00100{left:448.373333pt;}
.xc_c00100{left:449.333333pt;}
.x97_c00100{left:452.000000pt;}
.x63_c00100{left:455.626667pt;}
.x26_c00100{left:457.706667pt;}
.xb7_c00100{left:458.666667pt;}
.xa2_c00100{left:460.000000pt;}
.x48_c00100{left:462.293333pt;}
.xf9_c00100{left:464.373333pt;}
.x19_c00100{left:466.293333pt;}
.xd_c00100{left:468.000000pt;}
.x55_c00100{left:469.706667pt;}
.xaa_c00100{left:471.040000pt;}
.xe1_c00100{left:472.960000pt;}
.x64_c00100{left:474.666667pt;}
.xc0_c00100{left:476.000000pt;}
.xe9_c00100{left:478.293333pt;}
.x5d_c00100{left:481.333333pt;}
.x31_c00100{left:482.293333pt;}
.x6f_c00100{left:484.373333pt;}
.x3c_c00100{left:488.000000pt;}
.xcd_c00100{left:489.333333pt;}
.xc1_c00100{left:491.626667pt;}
.xec_c00100{left:493.706667pt;}
.xd5_c00100{left:497.333333pt;}
.x1a_c00100{left:500.000000pt;}
.x7f_c00100{left:501.333333pt;}
.x56_c00100{left:503.040000pt;}
.xe5_c00100{left:504.373333pt;}
.x49_c00100{left:506.666667pt;}
.x98_c00100{left:508.000000pt;}
.xdd_c00100{left:510.666667pt;}
.x70_c00100{left:511.626667pt;}
.xd6_c00100{left:515.626667pt;}
.x80_c00100{left:518.666667pt;}
.x32_c00100{left:520.373333pt;}
.x71_c00100{left:521.333333pt;}
.x1b_c00100{left:523.626667pt;}
.xf4_c00100{left:524.960000pt;}
.xc7_c00100{left:530.293333pt;}
.xe_c00100{left:532.000000pt;}
.x5e_c00100{left:533.333333pt;}
.x89_c00100{left:535.040000pt;}
.x57_c00100{left:536.000000pt;}
.x4a_c00100{left:540.000000pt;}
.x65_c00100{left:542.666667pt;}
.xf5_c00100{left:544.373333pt;}
.x3d_c00100{left:546.666667pt;}
.xd2_c00100{left:548.373333pt;}
.x69_c00100{left:549.706667pt;}
.x99_c00100{left:552.000000pt;}
.xf_c00100{left:554.666667pt;}
.xc8_c00100{left:556.960000pt;}
.xef_c00100{left:560.000000pt;}
.xd0_c00100{left:560.960000pt;}
.xce_c00100{left:562.666667pt;}
.x33_c00100{left:563.626667pt;}
.xfa_c00100{left:564.960000pt;}
.x1c_c00100{left:567.040000pt;}
.xd7_c00100{left:568.000000pt;}
.x8a_c00100{left:569.333333pt;}
.x66_c00100{left:570.293333pt;}
.x9a_c00100{left:572.000000pt;}
.x3e_c00100{left:572.960000pt;}
.x27_c00100{left:574.666667pt;}
.x8e_c00100{left:576.000000pt;}
.xc2_c00100{left:577.706667pt;}
.xde_c00100{left:580.000000pt;}
.xed_c00100{left:581.706667pt;}
.x34_c00100{left:583.040000pt;}
.x81_c00100{left:584.373333pt;}
.xf0_c00100{left:585.706667pt;}
.x58_c00100{left:588.000000pt;}
.x8f_c00100{left:592.000000pt;}
.xd3_c00100{left:593.706667pt;}
.xa3_c00100{left:594.666667pt;}
.x1d_c00100{left:596.000000pt;}
.x28_c00100{left:597.333333pt;}
.x10_c00100{left:598.666667pt;}
.x4b_c00100{left:600.000000pt;}
.x3f_c00100{left:600.960000pt;}
.x59_c00100{left:604.373333pt;}
.xab_c00100{left:605.706667pt;}
.xb8_c00100{left:606.666667pt;}
.x72_c00100{left:613.706667pt;}
.x35_c00100{left:614.666667pt;}
.x82_c00100{left:615.626667pt;}
.x4c_c00100{left:616.960000pt;}
.x11_c00100{left:618.466667pt;}
.xaf_c00100{left:619.800000pt;}
.x29_c00100{left:620.960000pt;}
.xd8_c00100{left:623.040000pt;}
.x40_c00100{left:627.040000pt;}
.xbc_c00100{left:628.960000pt;}
.xac_c00100{left:630.466667pt;}
.x2_c00100{left:632.960000pt;}
.x90_c00100{left:636.000000pt;}
.x5a_c00100{left:636.960000pt;}
.xd9_c00100{left:640.000000pt;}
.xfb_c00100{left:640.960000pt;}
.xb9_c00100{left:645.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b9190dbd093503892b696c8b.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc7_c00101{transform:matrix(0.333206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333206,0.000000,0.000000,0.250000,0,0);}
.m52_c00101{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.m30_c00101{transform:matrix(0.347510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347510,0.000000,0.000000,0.250000,0,0);}
.m5c_c00101{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);}
.mc5_c00101{transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);}
.m5f_c00101{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m41_c00101{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m6c_c00101{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.mb2_c00101{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m6f_c00101{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.m34_c00101{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m4d_c00101{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mc8_c00101{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m51_c00101{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m86_c00101{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m5a_c00101{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m80_c00101{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mb6_c00101{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m7e_c00101{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m32_c00101{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.me0_c00101{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.mbc_c00101{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.m6b_c00101{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m4c_c00101{transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);}
.mf5_c00101{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m9f_c00101{transform:matrix(0.404453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404453,0.000000,0.000000,0.250000,0,0);}
.m1b_c00101{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m6d_c00101{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m28_c00101{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mca_c00101{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m85_c00101{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m58_c00101{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m1a_c00101{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.mb7_c00101{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.mde_c00101{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.md7_c00101{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m37_c00101{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.md3_c00101{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m10_c00101{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mf8_c00101{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m94_c00101{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m44_c00101{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m2f_c00101{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.ma5_c00101{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.mc6_c00101{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mf7_c00101{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m31_c00101{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.mdb_c00101{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m8_c00101{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m43_c00101{transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);}
.mee_c00101{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m79_c00101{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m8b_c00101{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m17_c00101{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.me3_c00101{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m45_c00101{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m99_c00101{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.mcf_c00101{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m35_c00101{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m36_c00101{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m1f_c00101{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.ma4_c00101{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m4a_c00101{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m5b_c00101{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.mf2_c00101{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m9e_c00101{transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);}
.me5_c00101{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m2d_c00101{transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);}
.m81_c00101{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m1_c00101{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m59_c00101{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m1e_c00101{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.md8_c00101{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.mc2_c00101{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m55_c00101{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m48_c00101{transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);}
.m20_c00101{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m40_c00101{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.m2_c00101{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.med_c00101{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m33_c00101{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.me2_c00101{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m4f_c00101{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mfa_c00101{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mcc_c00101{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mc4_c00101{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mcd_c00101{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mad_c00101{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m97_c00101{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m56_c00101{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.mbe_c00101{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m3b_c00101{transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);}
.m1c_c00101{transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);}
.m8e_c00101{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.mae_c00101{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.ma1_c00101{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.ma8_c00101{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m83_c00101{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m54_c00101{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m87_c00101{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mea_c00101{transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);}
.md_c00101{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mc3_c00101{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m3f_c00101{transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);}
.m91_c00101{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m2e_c00101{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.me4_c00101{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m22_c00101{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);}
.mdc_c00101{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mb4_c00101{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m84_c00101{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m3a_c00101{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_c00101{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.maf_c00101{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.mf3_c00101{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m50_c00101{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m49_c00101{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m74_c00101{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.md1_c00101{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m24_c00101{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mbd_c00101{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.mf9_c00101{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mb1_c00101{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);}
.mf0_c00101{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mba_c00101{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m70_c00101{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m76_c00101{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.me9_c00101{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m69_c00101{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m67_c00101{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.md9_c00101{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mec_c00101{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m9a_c00101{transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);}
.md6_c00101{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.ma_c00101{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.me8_c00101{transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);}
.m57_c00101{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m4_c00101{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m7f_c00101{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m39_c00101{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m61_c00101{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m63_c00101{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m5_c00101{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.ma3_c00101{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m5e_c00101{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.me1_c00101{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m66_c00101{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m90_c00101{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.mf_c00101{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m4e_c00101{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m64_c00101{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.ma0_c00101{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.mdf_c00101{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m65_c00101{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m9c_c00101{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m27_c00101{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m71_c00101{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.md5_c00101{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m1d_c00101{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.mbb_c00101{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m19_c00101{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.me6_c00101{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m7b_c00101{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m6_c00101{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m38_c00101{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m73_c00101{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m9b_c00101{transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);}
.m14_c00101{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m12_c00101{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.md4_c00101{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m72_c00101{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m4b_c00101{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m8c_c00101{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mac_c00101{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m82_c00101{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mb3_c00101{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.m53_c00101{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.mf1_c00101{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.md0_c00101{transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);}
.mb8_c00101{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m60_c00101{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.mf6_c00101{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m62_c00101{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m5d_c00101{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m9_c00101{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m25_c00101{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m11_c00101{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m7c_c00101{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m7a_c00101{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.me7_c00101{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m7d_c00101{transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);}
.m47_c00101{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.mc_c00101{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.meb_c00101{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mb0_c00101{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m29_c00101{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m96_c00101{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m6e_c00101{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);}
.mce_c00101{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.ma7_c00101{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.md2_c00101{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.m23_c00101{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m16_c00101{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m68_c00101{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);}
.mda_c00101{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m0_c00101{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.ma9_c00101{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m6a_c00101{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mdd_c00101{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m75_c00101{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m26_c00101{transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);}
.m3c_c00101{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m2a_c00101{transform:matrix(0.616183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616183,0.000000,0.000000,0.250000,0,0);}
.m42_c00101{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m2c_c00101{transform:matrix(0.619813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619813,0.000000,0.000000,0.250000,0,0);}
.m93_c00101{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.ma6_c00101{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_c00101{transform:matrix(0.629668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629668,0.000000,0.000000,0.250000,0,0);}
.mb5_c00101{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.mab_c00101{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m21_c00101{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m95_c00101{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.mc1_c00101{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m3d_c00101{transform:matrix(0.655882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655882,0.000000,0.000000,0.250000,0,0);}
.mb9_c00101{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.maa_c00101{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.me_c00101{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.mf4_c00101{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m3_c00101{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m8f_c00101{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.mc9_c00101{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.ma2_c00101{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m3e_c00101{transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);}
.m98_c00101{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.m8a_c00101{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m89_c00101{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m9d_c00101{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);}
.mc0_c00101{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.mbf_c00101{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);}
.m88_c00101{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m78_c00101{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m13_c00101{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mb_c00101{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.mef_c00101{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mcb_c00101{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.m8d_c00101{transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);}
.m7_c00101{transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);}
.m18_c00101{transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);}
.m92_c00101{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m77_c00101{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m46_c00101{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-9.216610px;}
.ws1_c00101{word-spacing:-8.149871px;}
.ws2_c00101{word-spacing:0.000000px;}
.fc0_c00101{color:transparent;}
.fs5_c00101{font-size:3.420000px;}
.fs7_c00101{font-size:13.620000px;}
.fs4_c00101{font-size:18.720000px;}
.fs0_c00101{font-size:20.400000px;}
.fs3_c00101{font-size:25.500000px;}
.fs1_c00101{font-size:28.920000px;}
.fs6_c00101{font-size:32.340000px;}
.fs2_c00101{font-size:35.700000px;}
.fs8_c00101{font-size:39.120000px;}
.y0_c00101{bottom:0.000000px;}
.yc5_c00101{bottom:252.405000px;}
.yc2_c00101{bottom:253.245000px;}
.yc1_c00101{bottom:253.905000px;}
.yc6_c00101{bottom:254.970000px;}
.yc3_c00101{bottom:255.405000px;}
.yc4_c00101{bottom:256.470000px;}
.yba_c00101{bottom:272.745000px;}
.ybd_c00101{bottom:273.630000px;}
.ybe_c00101{bottom:273.825000px;}
.ybf_c00101{bottom:274.245000px;}
.yb9_c00101{bottom:274.905000px;}
.ybb_c00101{bottom:275.130000px;}
.yc0_c00101{bottom:275.970000px;}
.ybc_c00101{bottom:276.405000px;}
.yb8_c00101{bottom:292.470000px;}
.yb7_c00101{bottom:292.905000px;}
.yb4_c00101{bottom:294.405000px;}
.yb6_c00101{bottom:295.470000px;}
.yb5_c00101{bottom:295.905000px;}
.yad_c00101{bottom:310.905000px;}
.yaf_c00101{bottom:311.745000px;}
.yb2_c00101{bottom:313.245000px;}
.yae_c00101{bottom:313.905000px;}
.yb3_c00101{bottom:314.130000px;}
.yb1_c00101{bottom:314.325000px;}
.yb0_c00101{bottom:315.405000px;}
.yac_c00101{bottom:331.905000px;}
.yab_c00101{bottom:332.745000px;}
.ya8_c00101{bottom:333.405000px;}
.yaa_c00101{bottom:333.825000px;}
.ya9_c00101{bottom:334.905000px;}
.ya6_c00101{bottom:349.905000px;}
.ya4_c00101{bottom:352.245000px;}
.ya3_c00101{bottom:352.905000px;}
.ya7_c00101{bottom:353.325000px;}
.ya5_c00101{bottom:354.405000px;}
.ya2_c00101{bottom:370.905000px;}
.y9e_c00101{bottom:371.745000px;}
.y9f_c00101{bottom:372.630000px;}
.ya1_c00101{bottom:373.245000px;}
.ya0_c00101{bottom:373.905000px;}
.y9a_c00101{bottom:391.245000px;}
.y9b_c00101{bottom:393.405000px;}
.y9d_c00101{bottom:393.825000px;}
.y9c_c00101{bottom:394.905000px;}
.y99_c00101{bottom:410.745000px;}
.y97_c00101{bottom:412.245000px;}
.y95_c00101{bottom:412.905000px;}
.y96_c00101{bottom:413.970000px;}
.y98_c00101{bottom:414.405000px;}
.y94_c00101{bottom:429.405000px;}
.y92_c00101{bottom:431.325000px;}
.y91_c00101{bottom:431.745000px;}
.y90_c00101{bottom:432.405000px;}
.y8f_c00101{bottom:432.630000px;}
.y93_c00101{bottom:432.825000px;}
.y8d_c00101{bottom:449.970000px;}
.y8b_c00101{bottom:450.180000px;}
.y88_c00101{bottom:451.245000px;}
.y8e_c00101{bottom:452.130000px;}
.y8c_c00101{bottom:452.970000px;}
.y8a_c00101{bottom:453.405000px;}
.y89_c00101{bottom:454.920000px;}
.y82_c00101{bottom:479.970000px;}
.y86_c00101{bottom:480.825000px;}
.y83_c00101{bottom:481.905000px;}
.y87_c00101{bottom:482.970000px;}
.y85_c00101{bottom:483.630000px;}
.y84_c00101{bottom:484.050000px;}
.y7e_c00101{bottom:494.970000px;}
.y81_c00101{bottom:496.905000px;}
.y7f_c00101{bottom:497.970000px;}
.y80_c00101{bottom:499.050000px;}
.y79_c00101{bottom:509.970000px;}
.y77_c00101{bottom:510.825000px;}
.y76_c00101{bottom:511.050000px;}
.y7c_c00101{bottom:511.905000px;}
.y7b_c00101{bottom:512.550000px;}
.y78_c00101{bottom:512.970000px;}
.y7d_c00101{bottom:513.195000px;}
.y7a_c00101{bottom:514.050000px;}
.y74_c00101{bottom:524.970000px;}
.y71_c00101{bottom:525.825000px;}
.y75_c00101{bottom:526.050000px;}
.y6e_c00101{bottom:526.905000px;}
.y73_c00101{bottom:527.130000px;}
.y70_c00101{bottom:527.970000px;}
.y6f_c00101{bottom:528.195000px;}
.y72_c00101{bottom:529.050000px;}
.y6a_c00101{bottom:541.050000px;}
.y6c_c00101{bottom:541.905000px;}
.y6d_c00101{bottom:542.550000px;}
.y6b_c00101{bottom:542.970000px;}
.y68_c00101{bottom:555.405000px;}
.y67_c00101{bottom:555.825000px;}
.y69_c00101{bottom:559.050000px;}
.y63_c00101{bottom:570.405000px;}
.y5f_c00101{bottom:570.630000px;}
.y60_c00101{bottom:570.825000px;}
.y62_c00101{bottom:571.470000px;}
.y66_c00101{bottom:571.695000px;}
.y65_c00101{bottom:571.905000px;}
.y64_c00101{bottom:572.550000px;}
.y61_c00101{bottom:572.970000px;}
.y5e_c00101{bottom:584.970000px;}
.y5a_c00101{bottom:585.405000px;}
.y5c_c00101{bottom:586.470000px;}
.y5d_c00101{bottom:586.695000px;}
.y59_c00101{bottom:587.130000px;}
.y5b_c00101{bottom:587.550000px;}
.y57_c00101{bottom:613.245000px;}
.y56_c00101{bottom:614.130000px;}
.y58_c00101{bottom:615.405000px;}
.y55_c00101{bottom:631.905000px;}
.y53_c00101{bottom:632.745000px;}
.y54_c00101{bottom:634.245000px;}
.y52_c00101{bottom:634.905000px;}
.y4f_c00101{bottom:652.245000px;}
.y4e_c00101{bottom:654.405000px;}
.y51_c00101{bottom:654.630000px;}
.y50_c00101{bottom:655.470000px;}
.y4c_c00101{bottom:671.745000px;}
.y4a_c00101{bottom:673.905000px;}
.y4d_c00101{bottom:674.130000px;}
.y4b_c00101{bottom:675.420000px;}
.y48_c00101{bottom:692.745000px;}
.y49_c00101{bottom:694.470000px;}
.y47_c00101{bottom:694.905000px;}
.y44_c00101{bottom:710.745000px;}
.y43_c00101{bottom:711.405000px;}
.y45_c00101{bottom:712.245000px;}
.y46_c00101{bottom:713.970000px;}
.y41_c00101{bottom:714.405000px;}
.y42_c00101{bottom:715.470000px;}
.y40_c00101{bottom:731.745000px;}
.y3e_c00101{bottom:733.905000px;}
.y3f_c00101{bottom:733.920000px;}
.y3d_c00101{bottom:750.405000px;}
.y3a_c00101{bottom:751.245000px;}
.y3c_c00101{bottom:752.325000px;}
.y3b_c00101{bottom:754.920000px;}
.y38_c00101{bottom:771.825000px;}
.y39_c00101{bottom:772.905000px;}
.y36_c00101{bottom:790.245000px;}
.y35_c00101{bottom:791.745000px;}
.y37_c00101{bottom:793.470000px;}
.y34_c00101{bottom:793.905000px;}
.y33_c00101{bottom:810.825000px;}
.y30_c00101{bottom:811.245000px;}
.y32_c00101{bottom:813.405000px;}
.y31_c00101{bottom:813.420000px;}
.y2d_c00101{bottom:831.825000px;}
.y2f_c00101{bottom:832.905000px;}
.y2e_c00101{bottom:833.550000px;}
.y2c_c00101{bottom:847.905000px;}
.y2a_c00101{bottom:848.970000px;}
.y2b_c00101{bottom:850.050000px;}
.y29_c00101{bottom:871.470000px;}
.y27_c00101{bottom:872.325000px;}
.y28_c00101{bottom:873.405000px;}
.y26_c00101{bottom:900.825000px;}
.y25_c00101{bottom:901.905000px;}
.y23_c00101{bottom:937.470000px;}
.y24_c00101{bottom:937.905000px;}
.y22_c00101{bottom:938.745000px;}
.y21_c00101{bottom:940.905000px;}
.y1e_c00101{bottom:955.905000px;}
.y1d_c00101{bottom:957.405000px;}
.y20_c00101{bottom:958.245000px;}
.y1f_c00101{bottom:959.970000px;}
.y1c_c00101{bottom:960.405000px;}
.y1b_c00101{bottom:961.470000px;}
.y19_c00101{bottom:976.905000px;}
.y18_c00101{bottom:977.745000px;}
.y1a_c00101{bottom:977.970000px;}
.y17_c00101{bottom:979.905000px;}
.y16_c00101{bottom:995.970000px;}
.y15_c00101{bottom:997.245000px;}
.y14_c00101{bottom:999.405000px;}
.yf_c00101{bottom:1015.905000px;}
.y12_c00101{bottom:1016.745000px;}
.y13_c00101{bottom:1017.420000px;}
.y10_c00101{bottom:1018.470000px;}
.yd_c00101{bottom:1018.905000px;}
.ye_c00101{bottom:1019.130000px;}
.y11_c00101{bottom:1019.970000px;}
.y9_c00101{bottom:1035.405000px;}
.y7_c00101{bottom:1036.245000px;}
.ya_c00101{bottom:1036.470000px;}
.yb_c00101{bottom:1037.745000px;}
.y8_c00101{bottom:1038.405000px;}
.y6_c00101{bottom:1038.630000px;}
.yc_c00101{bottom:1039.470000px;}
.y3_c00101{bottom:1061.745000px;}
.y4_c00101{bottom:1063.470000px;}
.y5_c00101{bottom:1063.905000px;}
.y2_c00101{bottom:1099.905000px;}
.y1_c00101{bottom:1102.050000px;}
.h6_c00101{height:4.206533px;}
.h8_c00101{height:16.752334px;}
.h5_c00101{height:23.025234px;}
.h1_c00101{height:25.091602px;}
.h4_c00101{height:31.364502px;}
.h2_c00101{height:35.571035px;}
.h7_c00101{height:39.777568px;}
.h3_c00101{height:43.910303px;}
.h9_c00101{height:48.116836px;}
.h0_c00101{height:1335.000000px;}
.w0_c00101{width:880.500000px;}
.x0_c00101{left:0.000000px;}
.xf3_c00101{left:148.080000px;}
.xc7_c00101{left:150.000000px;}
.x6d_c00101{left:151.500000px;}
.x2_c00101{left:152.580000px;}
.x8_c00101{left:154.080000px;}
.x25_c00101{left:161.580000px;}
.xa3_c00101{left:165.000000px;}
.x45_c00101{left:166.500000px;}
.x50_c00101{left:168.420000px;}
.x98_c00101{left:175.500000px;}
.xd9_c00101{left:177.420000px;}
.x4e_c00101{left:180.420000px;}
.x8f_c00101{left:183.000000px;}
.x26_c00101{left:184.080000px;}
.x9_c00101{left:185.580000px;}
.x99_c00101{left:187.500000px;}
.x87_c00101{left:188.580000px;}
.xb7_c00101{left:195.000000px;}
.xcd_c00101{left:198.420000px;}
.xec_c00101{left:199.920000px;}
.x4f_c00101{left:204.420000px;}
.xae_c00101{left:207.000000px;}
.xda_c00101{left:208.500000px;}
.xe2_c00101{left:211.920000px;}
.x51_c00101{left:214.920000px;}
.x74_c00101{left:216.000000px;}
.x15_c00101{left:217.500000px;}
.xaf_c00101{left:219.000000px;}
.x46_c00101{left:221.580000px;}
.xaa_c00101{left:223.500000px;}
.xb8_c00101{left:226.920000px;}
.x61_c00101{left:231.000000px;}
.xc8_c00101{left:237.000000px;}
.xe3_c00101{left:238.920000px;}
.xa_c00101{left:241.080000px;}
.xa4_c00101{left:242.580000px;}
.x30_c00101{left:246.420000px;}
.x57_c00101{left:248.580000px;}
.x7d_c00101{left:250.500000px;}
.xb0_c00101{left:253.080000px;}
.xab_c00101{left:255.420000px;}
.x16_c00101{left:256.920000px;}
.xcf_c00101{left:258.420000px;}
.x62_c00101{left:259.500000px;}
.xb_c00101{left:261.420000px;}
.x27_c00101{left:262.920000px;}
.x9d_c00101{left:265.500000px;}
.xb2_c00101{left:266.580000px;}
.xd3_c00101{left:268.920000px;}
.x7e_c00101{left:271.080000px;}
.x52_c00101{left:273.000000px;}
.x3d_c00101{left:274.500000px;}
.x63_c00101{left:280.500000px;}
.x88_c00101{left:282.000000px;}
.x31_c00101{left:283.080000px;}
.xd0_c00101{left:285.420000px;}
.xde_c00101{left:286.500000px;}
.x47_c00101{left:291.000000px;}
.x17_c00101{left:293.580000px;}
.x75_c00101{left:296.580000px;}
.xa5_c00101{left:298.500000px;}
.xb9_c00101{left:301.500000px;}
.xc9_c00101{left:303.000000px;}
.x32_c00101{left:304.080000px;}
.xe4_c00101{left:306.420000px;}
.xdb_c00101{left:307.500000px;}
.x40_c00101{left:308.580000px;}
.xb3_c00101{left:310.920000px;}
.xba_c00101{left:313.500000px;}
.x18_c00101{left:314.580000px;}
.x66_c00101{left:316.500000px;}
.xed_c00101{left:320.580000px;}
.x3_c00101{left:321.645000px;}
.x9e_c00101{left:324.000000px;}
.x90_c00101{left:328.500000px;}
.x41_c00101{left:329.580000px;}
.x33_c00101{left:331.920000px;}
.xe5_c00101{left:333.000000px;}
.xf4_c00101{left:336.000000px;}
.x58_c00101{left:337.920000px;}
.x19_c00101{left:342.420000px;}
.x64_c00101{left:344.775000px;}
.xbb_c00101{left:348.420000px;}
.xc1_c00101{left:351.420000px;}
.x76_c00101{left:352.920000px;}
.x28_c00101{left:355.920000px;}
.x4_c00101{left:357.000000px;}
.x53_c00101{left:361.080000px;}
.xc_c00101{left:363.420000px;}
.x34_c00101{left:365.580000px;}
.x48_c00101{left:367.920000px;}
.x67_c00101{left:370.500000px;}
.x6e_c00101{left:373.500000px;}
.x5_c00101{left:375.420000px;}
.x91_c00101{left:376.500000px;}
.x9f_c00101{left:377.580000px;}
.x59_c00101{left:380.775000px;}
.x35_c00101{left:384.420000px;}
.x89_c00101{left:385.500000px;}
.x77_c00101{left:388.500000px;}
.xee_c00101{left:390.000000px;}
.x92_c00101{left:391.500000px;}
.xf5_c00101{left:393.000000px;}
.x1a_c00101{left:394.920000px;}
.x9a_c00101{left:396.000000px;}
.xe6_c00101{left:397.920000px;}
.x7f_c00101{left:399.000000px;}
.x1_c00101{left:400.500000px;}
.x6_c00101{left:401.580000px;}
.xbc_c00101{left:403.500000px;}
.x3e_c00101{left:406.080000px;}
.x49_c00101{left:408.000000px;}
.x36_c00101{left:411.420000px;}
.x42_c00101{left:412.920000px;}
.x29_c00101{left:414.000000px;}
.xb4_c00101{left:415.080000px;}
.x6f_c00101{left:416.580000px;}
.x5a_c00101{left:417.645000px;}
.xd_c00101{left:420.000000px;}
.x1b_c00101{left:421.920000px;}
.x8a_c00101{left:423.000000px;}
.xef_c00101{left:424.500000px;}
.xac_c00101{left:426.000000px;}
.xe8_c00101{left:427.920000px;}
.x68_c00101{left:433.500000px;}
.x9b_c00101{left:435.420000px;}
.x70_c00101{left:436.500000px;}
.x54_c00101{left:439.500000px;}
.xa0_c00101{left:444.000000px;}
.xf0_c00101{left:445.500000px;}
.xa6_c00101{left:450.420000px;}
.x78_c00101{left:451.500000px;}
.xbd_c00101{left:453.000000px;}
.x2a_c00101{left:454.500000px;}
.x8b_c00101{left:455.580000px;}
.x80_c00101{left:457.500000px;}
.xe_c00101{left:459.000000px;}
.x37_c00101{left:460.080000px;}
.x71_c00101{left:463.500000px;}
.xa7_c00101{left:468.000000px;}
.x4a_c00101{left:469.500000px;}
.x1c_c00101{left:470.580000px;}
.x7_c00101{left:472.500000px;}
.x65_c00101{left:475.275000px;}
.xd1_c00101{left:477.420000px;}
.x38_c00101{left:478.920000px;}
.xf6_c00101{left:481.920000px;}
.x55_c00101{left:483.420000px;}
.xe9_c00101{left:484.500000px;}
.x1d_c00101{left:489.420000px;}
.x43_c00101{left:490.920000px;}
.x5b_c00101{left:495.000000px;}
.x3f_c00101{left:496.080000px;}
.xce_c00101{left:499.920000px;}
.x20_c00101{left:501.000000px;}
.xd2_c00101{left:503.580000px;}
.x39_c00101{left:505.500000px;}
.x3a_c00101{left:508.500000px;}
.x81_c00101{left:510.000000px;}
.xf1_c00101{left:511.920000px;}
.xca_c00101{left:514.920000px;}
.x1e_c00101{left:516.420000px;}
.x93_c00101{left:517.500000px;}
.x5c_c00101{left:520.080000px;}
.xbe_c00101{left:522.420000px;}
.x69_c00101{left:523.500000px;}
.x79_c00101{left:525.420000px;}
.x2b_c00101{left:526.920000px;}
.x8c_c00101{left:528.000000px;}
.xd4_c00101{left:529.920000px;}
.xf_c00101{left:532.920000px;}
.x8d_c00101{left:540.000000px;}
.xc2_c00101{left:541.080000px;}
.x82_c00101{left:542.580000px;}
.x94_c00101{left:544.920000px;}
.xa1_c00101{left:549.000000px;}
.xf7_c00101{left:550.500000px;}
.xf2_c00101{left:552.420000px;}
.x4b_c00101{left:553.920000px;}
.xdc_c00101{left:556.500000px;}
.x21_c00101{left:559.920000px;}
.x44_c00101{left:561.000000px;}
.x9c_c00101{left:564.000000px;}
.x3b_c00101{left:567.000000px;}
.xf8_c00101{left:571.920000px;}
.xd5_c00101{left:573.420000px;}
.xe7_c00101{left:574.500000px;}
.x2c_c00101{left:578.580000px;}
.x5d_c00101{left:580.080000px;}
.x10_c00101{left:581.580000px;}
.x7a_c00101{left:583.080000px;}
.xc3_c00101{left:585.000000px;}
.x95_c00101{left:586.500000px;}
.xcb_c00101{left:587.580000px;}
.xad_c00101{left:590.145000px;}
.x6a_c00101{left:592.080000px;}
.xbf_c00101{left:594.000000px;}
.x72_c00101{left:596.580000px;}
.x2d_c00101{left:598.920000px;}
.xd6_c00101{left:600.420000px;}
.x11_c00101{left:601.920000px;}
.xa2_c00101{left:604.500000px;}
.x8e_c00101{left:607.920000px;}
.x83_c00101{left:609.420000px;}
.xdf_c00101{left:610.920000px;}
.xea_c00101{left:615.000000px;}
.xc4_c00101{left:618.000000px;}
.x3c_c00101{left:619.500000px;}
.x4c_c00101{left:622.500000px;}
.x22_c00101{left:627.420000px;}
.x2e_c00101{left:628.920000px;}
.x12_c00101{left:630.420000px;}
.x84_c00101{left:634.920000px;}
.xc0_c00101{left:637.500000px;}
.x6b_c00101{left:639.000000px;}
.x96_c00101{left:641.580000px;}
.x7b_c00101{left:645.420000px;}
.xd7_c00101{left:647.580000px;}
.x5e_c00101{left:654.000000px;}
.x56_c00101{left:655.920000px;}
.xc5_c00101{left:657.000000px;}
.xb5_c00101{left:658.500000px;}
.xf9_c00101{left:661.920000px;}
.xcc_c00101{left:663.000000px;}
.x85_c00101{left:664.920000px;}
.xb1_c00101{left:666.000000px;}
.x2f_c00101{left:667.080000px;}
.x13_c00101{left:668.580000px;}
.x7c_c00101{left:670.500000px;}
.x97_c00101{left:671.580000px;}
.x5f_c00101{left:674.145000px;}
.xe0_c00101{left:676.920000px;}
.xeb_c00101{left:678.420000px;}
.xa8_c00101{left:679.500000px;}
.xa9_c00101{left:690.000000px;}
.xc6_c00101{left:691.920000px;}
.x4d_c00101{left:693.000000px;}
.xd8_c00101{left:694.920000px;}
.x23_c00101{left:697.500000px;}
.x86_c00101{left:699.420000px;}
.x14_c00101{left:700.500000px;}
.x6c_c00101{left:704.580000px;}
.x60_c00101{left:706.080000px;}
.xb6_c00101{left:707.580000px;}
.xdd_c00101{left:709.920000px;}
.xe1_c00101{left:713.580000px;}
.x24_c00101{left:715.080000px;}
.x73_c00101{left:716.580000px;}
.x1f_c00101{left:726.000000px;}
@media print{
.v0_c00101{vertical-align:0.000000pt;}
.ls0_c00101{letter-spacing:0.000000pt;}
.ws0_c00101{word-spacing:-8.192542pt;}
.ws1_c00101{word-spacing:-7.244330pt;}
.ws2_c00101{word-spacing:0.000000pt;}
.fs5_c00101{font-size:3.040000pt;}
.fs7_c00101{font-size:12.106667pt;}
.fs4_c00101{font-size:16.640000pt;}
.fs0_c00101{font-size:18.133333pt;}
.fs3_c00101{font-size:22.666667pt;}
.fs1_c00101{font-size:25.706667pt;}
.fs6_c00101{font-size:28.746667pt;}
.fs2_c00101{font-size:31.733333pt;}
.fs8_c00101{font-size:34.773333pt;}
.y0_c00101{bottom:0.000000pt;}
.yc5_c00101{bottom:224.360000pt;}
.yc2_c00101{bottom:225.106667pt;}
.yc1_c00101{bottom:225.693333pt;}
.yc6_c00101{bottom:226.640000pt;}
.yc3_c00101{bottom:227.026667pt;}
.yc4_c00101{bottom:227.973333pt;}
.yba_c00101{bottom:242.440000pt;}
.ybd_c00101{bottom:243.226667pt;}
.ybe_c00101{bottom:243.400000pt;}
.ybf_c00101{bottom:243.773333pt;}
.yb9_c00101{bottom:244.360000pt;}
.ybb_c00101{bottom:244.560000pt;}
.yc0_c00101{bottom:245.306667pt;}
.ybc_c00101{bottom:245.693333pt;}
.yb8_c00101{bottom:259.973333pt;}
.yb7_c00101{bottom:260.360000pt;}
.yb4_c00101{bottom:261.693333pt;}
.yb6_c00101{bottom:262.640000pt;}
.yb5_c00101{bottom:263.026667pt;}
.yad_c00101{bottom:276.360000pt;}
.yaf_c00101{bottom:277.106667pt;}
.yb2_c00101{bottom:278.440000pt;}
.yae_c00101{bottom:279.026667pt;}
.yb3_c00101{bottom:279.226667pt;}
.yb1_c00101{bottom:279.400000pt;}
.yb0_c00101{bottom:280.360000pt;}
.yac_c00101{bottom:295.026667pt;}
.yab_c00101{bottom:295.773333pt;}
.ya8_c00101{bottom:296.360000pt;}
.yaa_c00101{bottom:296.733333pt;}
.ya9_c00101{bottom:297.693333pt;}
.ya6_c00101{bottom:311.026667pt;}
.ya4_c00101{bottom:313.106667pt;}
.ya3_c00101{bottom:313.693333pt;}
.ya7_c00101{bottom:314.066667pt;}
.ya5_c00101{bottom:315.026667pt;}
.ya2_c00101{bottom:329.693333pt;}
.y9e_c00101{bottom:330.440000pt;}
.y9f_c00101{bottom:331.226667pt;}
.ya1_c00101{bottom:331.773333pt;}
.ya0_c00101{bottom:332.360000pt;}
.y9a_c00101{bottom:347.773333pt;}
.y9b_c00101{bottom:349.693333pt;}
.y9d_c00101{bottom:350.066667pt;}
.y9c_c00101{bottom:351.026667pt;}
.y99_c00101{bottom:365.106667pt;}
.y97_c00101{bottom:366.440000pt;}
.y95_c00101{bottom:367.026667pt;}
.y96_c00101{bottom:367.973333pt;}
.y98_c00101{bottom:368.360000pt;}
.y94_c00101{bottom:381.693333pt;}
.y92_c00101{bottom:383.400000pt;}
.y91_c00101{bottom:383.773333pt;}
.y90_c00101{bottom:384.360000pt;}
.y8f_c00101{bottom:384.560000pt;}
.y93_c00101{bottom:384.733333pt;}
.y8d_c00101{bottom:399.973333pt;}
.y8b_c00101{bottom:400.160000pt;}
.y88_c00101{bottom:401.106667pt;}
.y8e_c00101{bottom:401.893333pt;}
.y8c_c00101{bottom:402.640000pt;}
.y8a_c00101{bottom:403.026667pt;}
.y89_c00101{bottom:404.373333pt;}
.y82_c00101{bottom:426.640000pt;}
.y86_c00101{bottom:427.400000pt;}
.y83_c00101{bottom:428.360000pt;}
.y87_c00101{bottom:429.306667pt;}
.y85_c00101{bottom:429.893333pt;}
.y84_c00101{bottom:430.266667pt;}
.y7e_c00101{bottom:439.973333pt;}
.y81_c00101{bottom:441.693333pt;}
.y7f_c00101{bottom:442.640000pt;}
.y80_c00101{bottom:443.600000pt;}
.y79_c00101{bottom:453.306667pt;}
.y77_c00101{bottom:454.066667pt;}
.y76_c00101{bottom:454.266667pt;}
.y7c_c00101{bottom:455.026667pt;}
.y7b_c00101{bottom:455.600000pt;}
.y78_c00101{bottom:455.973333pt;}
.y7d_c00101{bottom:456.173333pt;}
.y7a_c00101{bottom:456.933333pt;}
.y74_c00101{bottom:466.640000pt;}
.y71_c00101{bottom:467.400000pt;}
.y75_c00101{bottom:467.600000pt;}
.y6e_c00101{bottom:468.360000pt;}
.y73_c00101{bottom:468.560000pt;}
.y70_c00101{bottom:469.306667pt;}
.y6f_c00101{bottom:469.506667pt;}
.y72_c00101{bottom:470.266667pt;}
.y6a_c00101{bottom:480.933333pt;}
.y6c_c00101{bottom:481.693333pt;}
.y6d_c00101{bottom:482.266667pt;}
.y6b_c00101{bottom:482.640000pt;}
.y68_c00101{bottom:493.693333pt;}
.y67_c00101{bottom:494.066667pt;}
.y69_c00101{bottom:496.933333pt;}
.y63_c00101{bottom:507.026667pt;}
.y5f_c00101{bottom:507.226667pt;}
.y60_c00101{bottom:507.400000pt;}
.y62_c00101{bottom:507.973333pt;}
.y66_c00101{bottom:508.173333pt;}
.y65_c00101{bottom:508.360000pt;}
.y64_c00101{bottom:508.933333pt;}
.y61_c00101{bottom:509.306667pt;}
.y5e_c00101{bottom:519.973333pt;}
.y5a_c00101{bottom:520.360000pt;}
.y5c_c00101{bottom:521.306667pt;}
.y5d_c00101{bottom:521.506667pt;}
.y59_c00101{bottom:521.893333pt;}
.y5b_c00101{bottom:522.266667pt;}
.y57_c00101{bottom:545.106667pt;}
.y56_c00101{bottom:545.893333pt;}
.y58_c00101{bottom:547.026667pt;}
.y55_c00101{bottom:561.693333pt;}
.y53_c00101{bottom:562.440000pt;}
.y54_c00101{bottom:563.773333pt;}
.y52_c00101{bottom:564.360000pt;}
.y4f_c00101{bottom:579.773333pt;}
.y4e_c00101{bottom:581.693333pt;}
.y51_c00101{bottom:581.893333pt;}
.y50_c00101{bottom:582.640000pt;}
.y4c_c00101{bottom:597.106667pt;}
.y4a_c00101{bottom:599.026667pt;}
.y4d_c00101{bottom:599.226667pt;}
.y4b_c00101{bottom:600.373333pt;}
.y48_c00101{bottom:615.773333pt;}
.y49_c00101{bottom:617.306667pt;}
.y47_c00101{bottom:617.693333pt;}
.y44_c00101{bottom:631.773333pt;}
.y43_c00101{bottom:632.360000pt;}
.y45_c00101{bottom:633.106667pt;}
.y46_c00101{bottom:634.640000pt;}
.y41_c00101{bottom:635.026667pt;}
.y42_c00101{bottom:635.973333pt;}
.y40_c00101{bottom:650.440000pt;}
.y3e_c00101{bottom:652.360000pt;}
.y3f_c00101{bottom:652.373333pt;}
.y3d_c00101{bottom:667.026667pt;}
.y3a_c00101{bottom:667.773333pt;}
.y3c_c00101{bottom:668.733333pt;}
.y3b_c00101{bottom:671.040000pt;}
.y38_c00101{bottom:686.066667pt;}
.y39_c00101{bottom:687.026667pt;}
.y36_c00101{bottom:702.440000pt;}
.y35_c00101{bottom:703.773333pt;}
.y37_c00101{bottom:705.306667pt;}
.y34_c00101{bottom:705.693333pt;}
.y33_c00101{bottom:720.733333pt;}
.y30_c00101{bottom:721.106667pt;}
.y32_c00101{bottom:723.026667pt;}
.y31_c00101{bottom:723.040000pt;}
.y2d_c00101{bottom:739.400000pt;}
.y2f_c00101{bottom:740.360000pt;}
.y2e_c00101{bottom:740.933333pt;}
.y2c_c00101{bottom:753.693333pt;}
.y2a_c00101{bottom:754.640000pt;}
.y2b_c00101{bottom:755.600000pt;}
.y29_c00101{bottom:774.640000pt;}
.y27_c00101{bottom:775.400000pt;}
.y28_c00101{bottom:776.360000pt;}
.y26_c00101{bottom:800.733333pt;}
.y25_c00101{bottom:801.693333pt;}
.y23_c00101{bottom:833.306667pt;}
.y24_c00101{bottom:833.693333pt;}
.y22_c00101{bottom:834.440000pt;}
.y21_c00101{bottom:836.360000pt;}
.y1e_c00101{bottom:849.693333pt;}
.y1d_c00101{bottom:851.026667pt;}
.y20_c00101{bottom:851.773333pt;}
.y1f_c00101{bottom:853.306667pt;}
.y1c_c00101{bottom:853.693333pt;}
.y1b_c00101{bottom:854.640000pt;}
.y19_c00101{bottom:868.360000pt;}
.y18_c00101{bottom:869.106667pt;}
.y1a_c00101{bottom:869.306667pt;}
.y17_c00101{bottom:871.026667pt;}
.y16_c00101{bottom:885.306667pt;}
.y15_c00101{bottom:886.440000pt;}
.y14_c00101{bottom:888.360000pt;}
.yf_c00101{bottom:903.026667pt;}
.y12_c00101{bottom:903.773333pt;}
.y13_c00101{bottom:904.373333pt;}
.y10_c00101{bottom:905.306667pt;}
.yd_c00101{bottom:905.693333pt;}
.ye_c00101{bottom:905.893333pt;}
.y11_c00101{bottom:906.640000pt;}
.y9_c00101{bottom:920.360000pt;}
.y7_c00101{bottom:921.106667pt;}
.ya_c00101{bottom:921.306667pt;}
.yb_c00101{bottom:922.440000pt;}
.y8_c00101{bottom:923.026667pt;}
.y6_c00101{bottom:923.226667pt;}
.yc_c00101{bottom:923.973333pt;}
.y3_c00101{bottom:943.773333pt;}
.y4_c00101{bottom:945.306667pt;}
.y5_c00101{bottom:945.693333pt;}
.y2_c00101{bottom:977.693333pt;}
.y1_c00101{bottom:979.600000pt;}
.h6_c00101{height:3.739141pt;}
.h8_c00101{height:14.890964pt;}
.h5_c00101{height:20.466875pt;}
.h1_c00101{height:22.303646pt;}
.h4_c00101{height:27.879557pt;}
.h2_c00101{height:31.618698pt;}
.h7_c00101{height:35.357839pt;}
.h3_c00101{height:39.031380pt;}
.h9_c00101{height:42.770521pt;}
.h0_c00101{height:1186.666667pt;}
.w0_c00101{width:782.666667pt;}
.x0_c00101{left:0.000000pt;}
.xf3_c00101{left:131.626667pt;}
.xc7_c00101{left:133.333333pt;}
.x6d_c00101{left:134.666667pt;}
.x2_c00101{left:135.626667pt;}
.x8_c00101{left:136.960000pt;}
.x25_c00101{left:143.626667pt;}
.xa3_c00101{left:146.666667pt;}
.x45_c00101{left:148.000000pt;}
.x50_c00101{left:149.706667pt;}
.x98_c00101{left:156.000000pt;}
.xd9_c00101{left:157.706667pt;}
.x4e_c00101{left:160.373333pt;}
.x8f_c00101{left:162.666667pt;}
.x26_c00101{left:163.626667pt;}
.x9_c00101{left:164.960000pt;}
.x99_c00101{left:166.666667pt;}
.x87_c00101{left:167.626667pt;}
.xb7_c00101{left:173.333333pt;}
.xcd_c00101{left:176.373333pt;}
.xec_c00101{left:177.706667pt;}
.x4f_c00101{left:181.706667pt;}
.xae_c00101{left:184.000000pt;}
.xda_c00101{left:185.333333pt;}
.xe2_c00101{left:188.373333pt;}
.x51_c00101{left:191.040000pt;}
.x74_c00101{left:192.000000pt;}
.x15_c00101{left:193.333333pt;}
.xaf_c00101{left:194.666667pt;}
.x46_c00101{left:196.960000pt;}
.xaa_c00101{left:198.666667pt;}
.xb8_c00101{left:201.706667pt;}
.x61_c00101{left:205.333333pt;}
.xc8_c00101{left:210.666667pt;}
.xe3_c00101{left:212.373333pt;}
.xa_c00101{left:214.293333pt;}
.xa4_c00101{left:215.626667pt;}
.x30_c00101{left:219.040000pt;}
.x57_c00101{left:220.960000pt;}
.x7d_c00101{left:222.666667pt;}
.xb0_c00101{left:224.960000pt;}
.xab_c00101{left:227.040000pt;}
.x16_c00101{left:228.373333pt;}
.xcf_c00101{left:229.706667pt;}
.x62_c00101{left:230.666667pt;}
.xb_c00101{left:232.373333pt;}
.x27_c00101{left:233.706667pt;}
.x9d_c00101{left:236.000000pt;}
.xb2_c00101{left:236.960000pt;}
.xd3_c00101{left:239.040000pt;}
.x7e_c00101{left:240.960000pt;}
.x52_c00101{left:242.666667pt;}
.x3d_c00101{left:244.000000pt;}
.x63_c00101{left:249.333333pt;}
.x88_c00101{left:250.666667pt;}
.x31_c00101{left:251.626667pt;}
.xd0_c00101{left:253.706667pt;}
.xde_c00101{left:254.666667pt;}
.x47_c00101{left:258.666667pt;}
.x17_c00101{left:260.960000pt;}
.x75_c00101{left:263.626667pt;}
.xa5_c00101{left:265.333333pt;}
.xb9_c00101{left:268.000000pt;}
.xc9_c00101{left:269.333333pt;}
.x32_c00101{left:270.293333pt;}
.xe4_c00101{left:272.373333pt;}
.xdb_c00101{left:273.333333pt;}
.x40_c00101{left:274.293333pt;}
.xb3_c00101{left:276.373333pt;}
.xba_c00101{left:278.666667pt;}
.x18_c00101{left:279.626667pt;}
.x66_c00101{left:281.333333pt;}
.xed_c00101{left:284.960000pt;}
.x3_c00101{left:285.906667pt;}
.x9e_c00101{left:288.000000pt;}
.x90_c00101{left:292.000000pt;}
.x41_c00101{left:292.960000pt;}
.x33_c00101{left:295.040000pt;}
.xe5_c00101{left:296.000000pt;}
.xf4_c00101{left:298.666667pt;}
.x58_c00101{left:300.373333pt;}
.x19_c00101{left:304.373333pt;}
.x64_c00101{left:306.466667pt;}
.xbb_c00101{left:309.706667pt;}
.xc1_c00101{left:312.373333pt;}
.x76_c00101{left:313.706667pt;}
.x28_c00101{left:316.373333pt;}
.x4_c00101{left:317.333333pt;}
.x53_c00101{left:320.960000pt;}
.xc_c00101{left:323.040000pt;}
.x34_c00101{left:324.960000pt;}
.x48_c00101{left:327.040000pt;}
.x67_c00101{left:329.333333pt;}
.x6e_c00101{left:332.000000pt;}
.x5_c00101{left:333.706667pt;}
.x91_c00101{left:334.666667pt;}
.x9f_c00101{left:335.626667pt;}
.x59_c00101{left:338.466667pt;}
.x35_c00101{left:341.706667pt;}
.x89_c00101{left:342.666667pt;}
.x77_c00101{left:345.333333pt;}
.xee_c00101{left:346.666667pt;}
.x92_c00101{left:348.000000pt;}
.xf5_c00101{left:349.333333pt;}
.x1a_c00101{left:351.040000pt;}
.x9a_c00101{left:352.000000pt;}
.xe6_c00101{left:353.706667pt;}
.x7f_c00101{left:354.666667pt;}
.x1_c00101{left:356.000000pt;}
.x6_c00101{left:356.960000pt;}
.xbc_c00101{left:358.666667pt;}
.x3e_c00101{left:360.960000pt;}
.x49_c00101{left:362.666667pt;}
.x36_c00101{left:365.706667pt;}
.x42_c00101{left:367.040000pt;}
.x29_c00101{left:368.000000pt;}
.xb4_c00101{left:368.960000pt;}
.x6f_c00101{left:370.293333pt;}
.x5a_c00101{left:371.240000pt;}
.xd_c00101{left:373.333333pt;}
.x1b_c00101{left:375.040000pt;}
.x8a_c00101{left:376.000000pt;}
.xef_c00101{left:377.333333pt;}
.xac_c00101{left:378.666667pt;}
.xe8_c00101{left:380.373333pt;}
.x68_c00101{left:385.333333pt;}
.x9b_c00101{left:387.040000pt;}
.x70_c00101{left:388.000000pt;}
.x54_c00101{left:390.666667pt;}
.xa0_c00101{left:394.666667pt;}
.xf0_c00101{left:396.000000pt;}
.xa6_c00101{left:400.373333pt;}
.x78_c00101{left:401.333333pt;}
.xbd_c00101{left:402.666667pt;}
.x2a_c00101{left:404.000000pt;}
.x8b_c00101{left:404.960000pt;}
.x80_c00101{left:406.666667pt;}
.xe_c00101{left:408.000000pt;}
.x37_c00101{left:408.960000pt;}
.x71_c00101{left:412.000000pt;}
.xa7_c00101{left:416.000000pt;}
.x4a_c00101{left:417.333333pt;}
.x1c_c00101{left:418.293333pt;}
.x7_c00101{left:420.000000pt;}
.x65_c00101{left:422.466667pt;}
.xd1_c00101{left:424.373333pt;}
.x38_c00101{left:425.706667pt;}
.xf6_c00101{left:428.373333pt;}
.x55_c00101{left:429.706667pt;}
.xe9_c00101{left:430.666667pt;}
.x1d_c00101{left:435.040000pt;}
.x43_c00101{left:436.373333pt;}
.x5b_c00101{left:440.000000pt;}
.x3f_c00101{left:440.960000pt;}
.xce_c00101{left:444.373333pt;}
.x20_c00101{left:445.333333pt;}
.xd2_c00101{left:447.626667pt;}
.x39_c00101{left:449.333333pt;}
.x3a_c00101{left:452.000000pt;}
.x81_c00101{left:453.333333pt;}
.xf1_c00101{left:455.040000pt;}
.xca_c00101{left:457.706667pt;}
.x1e_c00101{left:459.040000pt;}
.x93_c00101{left:460.000000pt;}
.x5c_c00101{left:462.293333pt;}
.xbe_c00101{left:464.373333pt;}
.x69_c00101{left:465.333333pt;}
.x79_c00101{left:467.040000pt;}
.x2b_c00101{left:468.373333pt;}
.x8c_c00101{left:469.333333pt;}
.xd4_c00101{left:471.040000pt;}
.xf_c00101{left:473.706667pt;}
.x8d_c00101{left:480.000000pt;}
.xc2_c00101{left:480.960000pt;}
.x82_c00101{left:482.293333pt;}
.x94_c00101{left:484.373333pt;}
.xa1_c00101{left:488.000000pt;}
.xf7_c00101{left:489.333333pt;}
.xf2_c00101{left:491.040000pt;}
.x4b_c00101{left:492.373333pt;}
.xdc_c00101{left:494.666667pt;}
.x21_c00101{left:497.706667pt;}
.x44_c00101{left:498.666667pt;}
.x9c_c00101{left:501.333333pt;}
.x3b_c00101{left:504.000000pt;}
.xf8_c00101{left:508.373333pt;}
.xd5_c00101{left:509.706667pt;}
.xe7_c00101{left:510.666667pt;}
.x2c_c00101{left:514.293333pt;}
.x5d_c00101{left:515.626667pt;}
.x10_c00101{left:516.960000pt;}
.x7a_c00101{left:518.293333pt;}
.xc3_c00101{left:520.000000pt;}
.x95_c00101{left:521.333333pt;}
.xcb_c00101{left:522.293333pt;}
.xad_c00101{left:524.573333pt;}
.x6a_c00101{left:526.293333pt;}
.xbf_c00101{left:528.000000pt;}
.x72_c00101{left:530.293333pt;}
.x2d_c00101{left:532.373333pt;}
.xd6_c00101{left:533.706667pt;}
.x11_c00101{left:535.040000pt;}
.xa2_c00101{left:537.333333pt;}
.x8e_c00101{left:540.373333pt;}
.x83_c00101{left:541.706667pt;}
.xdf_c00101{left:543.040000pt;}
.xea_c00101{left:546.666667pt;}
.xc4_c00101{left:549.333333pt;}
.x3c_c00101{left:550.666667pt;}
.x4c_c00101{left:553.333333pt;}
.x22_c00101{left:557.706667pt;}
.x2e_c00101{left:559.040000pt;}
.x12_c00101{left:560.373333pt;}
.x84_c00101{left:564.373333pt;}
.xc0_c00101{left:566.666667pt;}
.x6b_c00101{left:568.000000pt;}
.x96_c00101{left:570.293333pt;}
.x7b_c00101{left:573.706667pt;}
.xd7_c00101{left:575.626667pt;}
.x5e_c00101{left:581.333333pt;}
.x56_c00101{left:583.040000pt;}
.xc5_c00101{left:584.000000pt;}
.xb5_c00101{left:585.333333pt;}
.xf9_c00101{left:588.373333pt;}
.xcc_c00101{left:589.333333pt;}
.x85_c00101{left:591.040000pt;}
.xb1_c00101{left:592.000000pt;}
.x2f_c00101{left:592.960000pt;}
.x13_c00101{left:594.293333pt;}
.x7c_c00101{left:596.000000pt;}
.x97_c00101{left:596.960000pt;}
.x5f_c00101{left:599.240000pt;}
.xe0_c00101{left:601.706667pt;}
.xeb_c00101{left:603.040000pt;}
.xa8_c00101{left:604.000000pt;}
.xa9_c00101{left:613.333333pt;}
.xc6_c00101{left:615.040000pt;}
.x4d_c00101{left:616.000000pt;}
.xd8_c00101{left:617.706667pt;}
.x23_c00101{left:620.000000pt;}
.x86_c00101{left:621.706667pt;}
.x14_c00101{left:622.666667pt;}
.x6c_c00101{left:626.293333pt;}
.x60_c00101{left:627.626667pt;}
.xb6_c00101{left:628.960000pt;}
.xdd_c00101{left:631.040000pt;}
.xe1_c00101{left:634.293333pt;}
.x24_c00101{left:635.626667pt;}
.x73_c00101{left:636.960000pt;}
.x1f_c00101{left:645.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dcfea1d9b6c2dba42b09eabd.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.688965;font-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_c00102{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.mb9_c00102{transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);}
.mbf_c00102{transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);}
.mb5_c00102{transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);}
.m9f_c00102{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mc4_c00102{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.mab_c00102{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.ma6_c00102{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m9a_c00102{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mb8_c00102{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.mdf_c00102{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.mcd_c00102{transform:matrix(0.381518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381518,0.000000,0.000000,0.250000,0,0);}
.mc2_c00102{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m7d_c00102{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m9d_c00102{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m82_c00102{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.maf_c00102{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.mbe_c00102{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mc1_c00102{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mb6_c00102{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.m65_c00102{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.mb1_c00102{transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);}
.mc9_c00102{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.mea_c00102{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m1e_c00102{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.ma9_c00102{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.me8_c00102{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m5d_c00102{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mb3_c00102{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.mb2_c00102{transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);}
.m39_c00102{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.md8_c00102{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m67_c00102{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m99_c00102{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m74_c00102{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m3e_c00102{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m7c_c00102{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m7e_c00102{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mc7_c00102{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mdd_c00102{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.mb_c00102{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.md3_c00102{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m20_c00102{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.mad_c00102{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m41_c00102{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m4c_c00102{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m8b_c00102{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m68_c00102{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m2a_c00102{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m7a_c00102{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.ma_c00102{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m5b_c00102{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.m8e_c00102{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m48_c00102{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m6a_c00102{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m3c_c00102{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mda_c00102{transform:matrix(0.422353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422353,0.000000,0.000000,0.250000,0,0);}
.m2b_c00102{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.ma7_c00102{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.mbc_c00102{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m70_c00102{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.maa_c00102{transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);}
.m71_c00102{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m1c_c00102{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.ma8_c00102{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.m4e_c00102{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.md2_c00102{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m52_c00102{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m80_c00102{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m6b_c00102{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m5e_c00102{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m50_c00102{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m4d_c00102{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mbb_c00102{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m89_c00102{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.mb0_c00102{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m17_c00102{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.mc3_c00102{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m18_c00102{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m54_c00102{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.me7_c00102{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.me6_c00102{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.mc0_c00102{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m75_c00102{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.m3a_c00102{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m88_c00102{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m38_c00102{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m12_c00102{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m69_c00102{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m2d_c00102{transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);}
.m77_c00102{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m30_c00102{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m91_c00102{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m3f_c00102{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.m83_c00102{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.me5_c00102{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m1f_c00102{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m66_c00102{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.m24_c00102{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m95_c00102{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.ma4_c00102{transform:matrix(0.471849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471849,0.000000,0.000000,0.250000,0,0);}
.m9e_c00102{transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);}
.m36_c00102{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m6f_c00102{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mb4_c00102{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m8a_c00102{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.mb7_c00102{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.mdb_c00102{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.me2_c00102{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m5a_c00102{transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);}
.m1_c00102{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m8f_c00102{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m56_c00102{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m47_c00102{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m59_c00102{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.me9_c00102{transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);}
.m1a_c00102{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);}
.m94_c00102{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m5f_c00102{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m8_c00102{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m6e_c00102{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.m81_c00102{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m27_c00102{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.mde_c00102{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m1d_c00102{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m98_c00102{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m58_c00102{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.me3_c00102{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m14_c00102{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.md_c00102{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m76_c00102{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.me_c00102{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mcb_c00102{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m13_c00102{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m44_c00102{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.md4_c00102{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.mc8_c00102{transform:matrix(0.521800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521800,0.000000,0.000000,0.250000,0,0);}
.m31_c00102{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.ma2_c00102{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mce_c00102{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.ma5_c00102{transform:matrix(0.525046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525046,0.000000,0.000000,0.250000,0,0);}
.m46_c00102{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m2e_c00102{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m43_c00102{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mbd_c00102{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m51_c00102{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m42_c00102{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m3_c00102{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m72_c00102{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m64_c00102{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m93_c00102{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m40_c00102{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m7_c00102{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.md1_c00102{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m63_c00102{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.me4_c00102{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.ma0_c00102{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mca_c00102{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m4_c00102{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.md7_c00102{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.mc5_c00102{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m9_c00102{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mec_c00102{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m29_c00102{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m49_c00102{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m84_c00102{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m26_c00102{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.meb_c00102{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);}
.md6_c00102{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m45_c00102{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m9c_c00102{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.md5_c00102{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m53_c00102{transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);}
.m2f_c00102{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m33_c00102{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m32_c00102{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m61_c00102{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m6_c00102{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.md9_c00102{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.me1_c00102{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m6d_c00102{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);}
.m23_c00102{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m73_c00102{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m10_c00102{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m19_c00102{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m60_c00102{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.mcc_c00102{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m4f_c00102{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m4a_c00102{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m7f_c00102{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mf_c00102{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m37_c00102{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m5c_c00102{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m87_c00102{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m4b_c00102{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);}
.mcf_c00102{transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);}
.m86_c00102{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mac_c00102{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m15_c00102{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m8c_c00102{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m62_c00102{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m28_c00102{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m35_c00102{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m6c_c00102{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.ma1_c00102{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m55_c00102{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m0_c00102{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m22_c00102{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.mae_c00102{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m9b_c00102{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m7b_c00102{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m25_c00102{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m21_c00102{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.ma3_c00102{transform:matrix(0.616183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616183,0.000000,0.000000,0.250000,0,0);}
.m3b_c00102{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m2c_c00102{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m3d_c00102{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mc_c00102{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.md0_c00102{transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);}
.mba_c00102{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.mdc_c00102{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m8d_c00102{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m16_c00102{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m57_c00102{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.me0_c00102{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m34_c00102{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m90_c00102{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m5_c00102{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mc6_c00102{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m96_c00102{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m11_c00102{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m2_c00102{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m78_c00102{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m92_c00102{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.m85_c00102{transform:matrix(1.050735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.050735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.050735,0.000000,0.000000,0.250000,0,0);}
.m97_c00102{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m79_c00102{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
.fs6_c00102{font-size:3.420000px;}
.fs7_c00102{font-size:11.880000px;}
.fs2_c00102{font-size:18.720000px;}
.fs0_c00102{font-size:20.400000px;}
.fs4_c00102{font-size:25.500000px;}
.fs1_c00102{font-size:28.920000px;}
.fs5_c00102{font-size:32.340000px;}
.fs3_c00102{font-size:35.700000px;}
.fs8_c00102{font-size:39.120000px;}
.y0_c00102{bottom:0.000000px;}
.ybf_c00102{bottom:253.245000px;}
.yc0_c00102{bottom:254.325000px;}
.yc2_c00102{bottom:254.970000px;}
.yc1_c00102{bottom:255.405000px;}
.ybc_c00102{bottom:272.745000px;}
.ybd_c00102{bottom:273.825000px;}
.ybb_c00102{bottom:274.905000px;}
.ybe_c00102{bottom:275.970000px;}
.yba_c00102{bottom:276.405000px;}
.yb4_c00102{bottom:292.245000px;}
.yb7_c00102{bottom:293.745000px;}
.yb8_c00102{bottom:294.405000px;}
.yb9_c00102{bottom:294.630000px;}
.yb6_c00102{bottom:295.470000px;}
.yb5_c00102{bottom:295.905000px;}
.yb1_c00102{bottom:313.245000px;}
.yb2_c00102{bottom:313.905000px;}
.yb3_c00102{bottom:314.970000px;}
.yae_c00102{bottom:331.245000px;}
.yad_c00102{bottom:332.745000px;}
.yaf_c00102{bottom:333.405000px;}
.yb0_c00102{bottom:334.470000px;}
.yac_c00102{bottom:334.905000px;}
.ya8_c00102{bottom:349.905000px;}
.yaa_c00102{bottom:350.745000px;}
.ya6_c00102{bottom:351.180000px;}
.ya9_c00102{bottom:352.905000px;}
.ya7_c00102{bottom:353.130000px;}
.ya4_c00102{bottom:354.405000px;}
.ya5_c00102{bottom:354.420000px;}
.yab_c00102{bottom:355.470000px;}
.ya2_c00102{bottom:370.245000px;}
.ya1_c00102{bottom:371.325000px;}
.ya0_c00102{bottom:371.745000px;}
.ya3_c00102{bottom:372.405000px;}
.y9e_c00102{bottom:372.630000px;}
.y9d_c00102{bottom:373.905000px;}
.y9f_c00102{bottom:373.920000px;}
.y9a_c00102{bottom:391.245000px;}
.y9c_c00102{bottom:392.325000px;}
.y9b_c00102{bottom:394.920000px;}
.y99_c00102{bottom:412.905000px;}
.y94_c00102{bottom:430.245000px;}
.y95_c00102{bottom:431.745000px;}
.y98_c00102{bottom:431.970000px;}
.y97_c00102{bottom:432.405000px;}
.y96_c00102{bottom:433.920000px;}
.y93_c00102{bottom:452.970000px;}
.y90_c00102{bottom:453.825000px;}
.y91_c00102{bottom:454.905000px;}
.y92_c00102{bottom:455.130000px;}
.y8e_c00102{bottom:478.470000px;}
.y8f_c00102{bottom:479.325000px;}
.y8d_c00102{bottom:480.405000px;}
.y8c_c00102{bottom:493.470000px;}
.y88_c00102{bottom:494.325000px;}
.y8b_c00102{bottom:494.550000px;}
.y8a_c00102{bottom:495.405000px;}
.y89_c00102{bottom:497.550000px;}
.y86_c00102{bottom:524.745000px;}
.y87_c00102{bottom:525.825000px;}
.y85_c00102{bottom:526.905000px;}
.y84_c00102{bottom:569.970000px;}
.y83_c00102{bottom:570.405000px;}
.y82_c00102{bottom:587.745000px;}
.y80_c00102{bottom:589.245000px;}
.y81_c00102{bottom:589.905000px;}
.y7f_c00102{bottom:591.405000px;}
.y7c_c00102{bottom:608.745000px;}
.y7e_c00102{bottom:609.405000px;}
.y7d_c00102{bottom:610.470000px;}
.y7a_c00102{bottom:610.905000px;}
.y7b_c00102{bottom:610.920000px;}
.y74_c00102{bottom:624.630000px;}
.y75_c00102{bottom:625.275000px;}
.y79_c00102{bottom:625.905000px;}
.y76_c00102{bottom:628.245000px;}
.y73_c00102{bottom:629.130000px;}
.y78_c00102{bottom:629.325000px;}
.y77_c00102{bottom:630.405000px;}
.y71_c00102{bottom:644.775000px;}
.y6f_c00102{bottom:645.405000px;}
.y6a_c00102{bottom:646.470000px;}
.y72_c00102{bottom:646.905000px;}
.y6d_c00102{bottom:647.745000px;}
.y6c_c00102{bottom:648.630000px;}
.y6e_c00102{bottom:648.825000px;}
.y6b_c00102{bottom:649.905000px;}
.y70_c00102{bottom:653.130000px;}
.y67_c00102{bottom:666.405000px;}
.y64_c00102{bottom:666.825000px;}
.y68_c00102{bottom:667.245000px;}
.y69_c00102{bottom:668.130000px;}
.y65_c00102{bottom:668.325000px;}
.y66_c00102{bottom:669.405000px;}
.y62_c00102{bottom:685.905000px;}
.y5e_c00102{bottom:686.745000px;}
.y5f_c00102{bottom:687.825000px;}
.y61_c00102{bottom:688.050000px;}
.y60_c00102{bottom:688.905000px;}
.y63_c00102{bottom:689.970000px;}
.y5d_c00102{bottom:705.405000px;}
.y59_c00102{bottom:706.245000px;}
.y5c_c00102{bottom:707.325000px;}
.y5a_c00102{bottom:707.970000px;}
.y5b_c00102{bottom:708.405000px;}
.y53_c00102{bottom:724.905000px;}
.y58_c00102{bottom:725.745000px;}
.y51_c00102{bottom:725.970000px;}
.y55_c00102{bottom:726.405000px;}
.y52_c00102{bottom:726.825000px;}
.y54_c00102{bottom:727.905000px;}
.y56_c00102{bottom:728.130000px;}
.y57_c00102{bottom:729.420000px;}
.y50_c00102{bottom:745.245000px;}
.y4e_c00102{bottom:745.470000px;}
.y4d_c00102{bottom:746.325000px;}
.y4f_c00102{bottom:747.405000px;}
.y4c_c00102{bottom:764.970000px;}
.y4b_c00102{bottom:765.405000px;}
.y4a_c00102{bottom:766.245000px;}
.y49_c00102{bottom:768.405000px;}
.y47_c00102{bottom:783.405000px;}
.y44_c00102{bottom:784.905000px;}
.y45_c00102{bottom:785.745000px;}
.y48_c00102{bottom:786.825000px;}
.y46_c00102{bottom:787.905000px;}
.y42_c00102{bottom:803.325000px;}
.y43_c00102{bottom:804.405000px;}
.y40_c00102{bottom:805.245000px;}
.y3f_c00102{bottom:806.325000px;}
.y41_c00102{bottom:807.405000px;}
.y3e_c00102{bottom:824.745000px;}
.y3d_c00102{bottom:826.470000px;}
.y3c_c00102{bottom:826.905000px;}
.y3a_c00102{bottom:844.245000px;}
.y3b_c00102{bottom:845.130000px;}
.y38_c00102{bottom:845.325000px;}
.y39_c00102{bottom:846.405000px;}
.y36_c00102{bottom:863.745000px;}
.y35_c00102{bottom:864.825000px;}
.y34_c00102{bottom:865.470000px;}
.y33_c00102{bottom:865.905000px;}
.y37_c00102{bottom:866.130000px;}
.y30_c00102{bottom:884.325000px;}
.y32_c00102{bottom:884.745000px;}
.y2f_c00102{bottom:884.970000px;}
.y2e_c00102{bottom:885.405000px;}
.y31_c00102{bottom:885.630000px;}
.y2c_c00102{bottom:904.245000px;}
.y2a_c00102{bottom:904.905000px;}
.y2d_c00102{bottom:905.325000px;}
.y29_c00102{bottom:905.970000px;}
.y2b_c00102{bottom:906.405000px;}
.y27_c00102{bottom:922.470000px;}
.y28_c00102{bottom:923.745000px;}
.y24_c00102{bottom:924.405000px;}
.y26_c00102{bottom:924.825000px;}
.y25_c00102{bottom:925.905000px;}
.y20_c00102{bottom:943.245000px;}
.y1f_c00102{bottom:944.130000px;}
.y22_c00102{bottom:944.325000px;}
.y21_c00102{bottom:944.970000px;}
.y23_c00102{bottom:945.405000px;}
.y1e_c00102{bottom:961.470000px;}
.y1d_c00102{bottom:962.745000px;}
.y1c_c00102{bottom:963.825000px;}
.y1a_c00102{bottom:964.470000px;}
.y1b_c00102{bottom:964.905000px;}
.y17_c00102{bottom:982.245000px;}
.y18_c00102{bottom:983.325000px;}
.y16_c00102{bottom:984.405000px;}
.y19_c00102{bottom:985.470000px;}
.y14_c00102{bottom:1001.325000px;}
.y15_c00102{bottom:1001.745000px;}
.y12_c00102{bottom:1002.825000px;}
.y10_c00102{bottom:1003.470000px;}
.y11_c00102{bottom:1003.905000px;}
.y13_c00102{bottom:1004.970000px;}
.yd_c00102{bottom:1021.245000px;}
.ye_c00102{bottom:1022.325000px;}
.yc_c00102{bottom:1023.405000px;}
.yf_c00102{bottom:1024.470000px;}
.yb_c00102{bottom:1041.825000px;}
.y9_c00102{bottom:1042.905000px;}
.ya_c00102{bottom:1043.130000px;}
.y3_c00102{bottom:1061.130000px;}
.y6_c00102{bottom:1061.745000px;}
.y4_c00102{bottom:1062.405000px;}
.y8_c00102{bottom:1062.825000px;}
.y7_c00102{bottom:1063.470000px;}
.y5_c00102{bottom:1063.905000px;}
.y2_c00102{bottom:1099.905000px;}
.y1_c00102{bottom:1102.050000px;}
.h7_c00102{height:4.206533px;}
.h8_c00102{height:14.612168px;}
.h3_c00102{height:23.025234px;}
.h1_c00102{height:25.091602px;}
.h5_c00102{height:31.364502px;}
.h2_c00102{height:35.571035px;}
.h6_c00102{height:39.777568px;}
.h4_c00102{height:43.910303px;}
.h9_c00102{height:48.116836px;}
.h0_c00102{height:1335.000000px;}
.w0_c00102{width:880.500000px;}
.x0_c00102{left:0.000000px;}
.x3_c00102{left:151.500000px;}
.x8c_c00102{left:152.580000px;}
.xdc_c00102{left:154.080000px;}
.x17_c00102{left:167.580000px;}
.xc3_c00102{left:168.645000px;}
.x68_c00102{left:169.920000px;}
.x5c_c00102{left:171.420000px;}
.x4_c00102{left:172.920000px;}
.xbe_c00102{left:178.500000px;}
.x8d_c00102{left:180.420000px;}
.xbf_c00102{left:184.080000px;}
.x12_c00102{left:192.000000px;}
.x9a_c00102{left:193.080000px;}
.xb2_c00102{left:195.000000px;}
.x5d_c00102{left:196.500000px;}
.x5_c00102{left:199.080000px;}
.x52_c00102{left:200.580000px;}
.x3d_c00102{left:205.500000px;}
.xa6_c00102{left:206.775000px;}
.x31_c00102{left:208.500000px;}
.x48_c00102{left:210.000000px;}
.xa0_c00102{left:213.420000px;}
.x26_c00102{left:217.920000px;}
.x9b_c00102{left:219.000000px;}
.x88_c00102{left:220.500000px;}
.xf3_c00102{left:223.500000px;}
.xb3_c00102{left:225.000000px;}
.x72_c00102{left:226.500000px;}
.x8e_c00102{left:229.080000px;}
.x49_c00102{left:231.000000px;}
.x7e_c00102{left:234.000000px;}
.xb9_c00102{left:235.500000px;}
.x6_c00102{left:237.000000px;}
.xc4_c00102{left:238.500000px;}
.xd0_c00102{left:239.580000px;}
.x3e_c00102{left:241.500000px;}
.xee_c00102{left:243.420000px;}
.x18_c00102{left:244.500000px;}
.x27_c00102{left:246.420000px;}
.x7_c00102{left:247.500000px;}
.xe9_c00102{left:250.500000px;}
.xa1_c00102{left:252.420000px;}
.x9c_c00102{left:253.500000px;}
.x19_c00102{left:255.420000px;}
.xc5_c00102{left:258.000000px;}
.x4a_c00102{left:259.920000px;}
.x89_c00102{left:261.420000px;}
.x13_c00102{left:262.500000px;}
.x73_c00102{left:263.580000px;}
.x69_c00102{left:268.500000px;}
.x1a_c00102{left:270.000000px;}
.xef_c00102{left:271.080000px;}
.xd8_c00102{left:273.000000px;}
.xc0_c00102{left:274.080000px;}
.x7f_c00102{left:277.920000px;}
.x32_c00102{left:280.500000px;}
.x14_c00102{left:282.000000px;}
.xe2_c00102{left:283.500000px;}
.x3f_c00102{left:284.580000px;}
.x5e_c00102{left:289.080000px;}
.x93_c00102{left:290.580000px;}
.xc1_c00102{left:292.920000px;}
.xd9_c00102{left:294.000000px;}
.x1b_c00102{left:297.645000px;}
.x74_c00102{left:300.000000px;}
.x53_c00102{left:301.500000px;}
.x8_c00102{left:303.000000px;}
.xdf_c00102{left:304.500000px;}
.x5f_c00102{left:307.920000px;}
.x84_c00102{left:309.000000px;}
.x6a_c00102{left:312.000000px;}
.x40_c00102{left:313.920000px;}
.x4b_c00102{left:316.080000px;}
.xa7_c00102{left:319.920000px;}
.x80_c00102{left:321.000000px;}
.xf4_c00102{left:322.500000px;}
.xd1_c00102{left:325.920000px;}
.x1c_c00102{left:328.500000px;}
.x94_c00102{left:330.420000px;}
.x28_c00102{left:331.920000px;}
.x60_c00102{left:333.000000px;}
.x33_c00102{left:334.920000px;}
.xba_c00102{left:336.000000px;}
.x15_c00102{left:337.500000px;}
.xce_c00102{left:339.420000px;}
.xf7_c00102{left:342.000000px;}
.x1d_c00102{left:345.000000px;}
.x4c_c00102{left:347.580000px;}
.xc9_c00102{left:349.920000px;}
.xf0_c00102{left:351.000000px;}
.xe0_c00102{left:353.580000px;}
.x9_c00102{left:357.000000px;}
.x9d_c00102{left:358.080000px;}
.x1e_c00102{left:359.580000px;}
.xd5_c00102{left:360.855000px;}
.x54_c00102{left:362.580000px;}
.xc2_c00102{left:366.420000px;}
.x8a_c00102{left:367.500000px;}
.xfa_c00102{left:369.420000px;}
.x34_c00102{left:370.920000px;}
.x29_c00102{left:375.000000px;}
.xa8_c00102{left:376.500000px;}
.x6b_c00102{left:379.920000px;}
.x41_c00102{left:382.500000px;}
.x75_c00102{left:383.580000px;}
.xb4_c00102{left:385.500000px;}
.xa2_c00102{left:388.500000px;}
.xf8_c00102{left:391.080000px;}
.x4d_c00102{left:394.500000px;}
.xad_c00102{left:395.580000px;}
.x1_c00102{left:397.500000px;}
.x35_c00102{left:399.000000px;}
.x61_c00102{left:400.080000px;}
.x76_c00102{left:402.420000px;}
.xa_c00102{left:403.920000px;}
.xd2_c00102{left:405.420000px;}
.xe3_c00102{left:406.500000px;}
.x1f_c00102{left:408.000000px;}
.x2a_c00102{left:409.080000px;}
.x6c_c00102{left:412.920000px;}
.xae_c00102{left:415.500000px;}
.x62_c00102{left:418.920000px;}
.xf9_c00102{left:420.000000px;}
.x16_c00102{left:421.080000px;}
.x55_c00102{left:423.420000px;}
.xca_c00102{left:424.920000px;}
.x81_c00102{left:426.420000px;}
.x4e_c00102{left:427.500000px;}
.x2b_c00102{left:429.420000px;}
.xa9_c00102{left:431.775000px;}
.xd3_c00102{left:433.080000px;}
.x85_c00102{left:435.420000px;}
.x77_c00102{left:436.500000px;}
.x6d_c00102{left:438.000000px;}
.xb_c00102{left:439.920000px;}
.x36_c00102{left:442.500000px;}
.xa3_c00102{left:443.580000px;}
.x63_c00102{left:445.500000px;}
.xe4_c00102{left:447.000000px;}
.x20_c00102{left:448.500000px;}
.x56_c00102{left:450.000000px;}
.xd6_c00102{left:451.500000px;}
.x42_c00102{left:453.420000px;}
.xfb_c00102{left:456.420000px;}
.x8f_c00102{left:457.500000px;}
.x82_c00102{left:462.000000px;}
.x9e_c00102{left:463.500000px;}
.x86_c00102{left:464.580000px;}
.x95_c00102{left:466.500000px;}
.x2c_c00102{left:468.000000px;}
.xb5_c00102{left:469.500000px;}
.xdd_c00102{left:476.775000px;}
.x83_c00102{left:481.920000px;}
.xe5_c00102{left:483.000000px;}
.xf5_c00102{left:484.920000px;}
.x43_c00102{left:489.420000px;}
.x4f_c00102{left:490.500000px;}
.x37_c00102{left:492.000000px;}
.xcb_c00102{left:497.580000px;}
.xcf_c00102{left:499.080000px;}
.xf1_c00102{left:501.000000px;}
.x21_c00102{left:504.000000px;}
.x64_c00102{left:505.920000px;}
.x57_c00102{left:507.000000px;}
.x2d_c00102{left:508.500000px;}
.xd7_c00102{left:509.580000px;}
.xaf_c00102{left:511.080000px;}
.x8b_c00102{left:514.500000px;}
.x44_c00102{left:516.000000px;}
.xde_c00102{left:517.500000px;}
.xc6_c00102{left:519.000000px;}
.x90_c00102{left:523.080000px;}
.xe6_c00102{left:526.080000px;}
.xea_c00102{left:527.580000px;}
.xfc_c00102{left:531.000000px;}
.xc_c00102{left:532.080000px;}
.xcc_c00102{left:535.500000px;}
.x65_c00102{left:538.500000px;}
.x58_c00102{left:541.080000px;}
.xe7_c00102{left:543.420000px;}
.xda_c00102{left:544.500000px;}
.xf6_c00102{left:546.000000px;}
.xbb_c00102{left:547.920000px;}
.x78_c00102{left:549.000000px;}
.xe1_c00102{left:550.080000px;}
.x22_c00102{left:553.500000px;}
.x6e_c00102{left:554.580000px;}
.xb6_c00102{left:559.500000px;}
.xaa_c00102{left:561.420000px;}
.x38_c00102{left:565.080000px;}
.xc7_c00102{left:566.580000px;}
.x2e_c00102{left:570.420000px;}
.xbc_c00102{left:571.500000px;}
.xeb_c00102{left:573.000000px;}
.x45_c00102{left:576.000000px;}
.xbd_c00102{left:577.080000px;}
.x66_c00102{left:579.000000px;}
.xd_c00102{left:580.500000px;}
.x96_c00102{left:581.580000px;}
.x6f_c00102{left:583.920000px;}
.x59_c00102{left:586.080000px;}
.xb7_c00102{left:589.500000px;}
.x23_c00102{left:591.420000px;}
.x91_c00102{left:594.000000px;}
.xcd_c00102{left:595.080000px;}
.xe_c00102{left:598.920000px;}
.x79_c00102{left:600.420000px;}
.xb0_c00102{left:601.500000px;}
.xa4_c00102{left:602.580000px;}
.x70_c00102{left:610.500000px;}
.xc8_c00102{left:615.000000px;}
.x9f_c00102{left:616.080000px;}
.x39_c00102{left:618.420000px;}
.x46_c00102{left:619.500000px;}
.x5a_c00102{left:621.420000px;}
.xf_c00102{left:624.000000px;}
.xf2_c00102{left:626.580000px;}
.xe8_c00102{left:628.500000px;}
.x7a_c00102{left:634.500000px;}
.xa5_c00102{left:642.000000px;}
.x2f_c00102{left:643.080000px;}
.x3a_c00102{left:645.000000px;}
.x97_c00102{left:647.580000px;}
.xab_c00102{left:652.920000px;}
.x7b_c00102{left:654.420000px;}
.xec_c00102{left:655.500000px;}
.x10_c00102{left:657.420000px;}
.x24_c00102{left:658.500000px;}
.x92_c00102{left:660.000000px;}
.x87_c00102{left:663.000000px;}
.x98_c00102{left:665.580000px;}
.x50_c00102{left:668.580000px;}
.x5b_c00102{left:670.080000px;}
.xed_c00102{left:673.500000px;}
.xb1_c00102{left:676.500000px;}
.x25_c00102{left:678.420000px;}
.xb8_c00102{left:681.420000px;}
.x71_c00102{left:683.580000px;}
.x3b_c00102{left:685.080000px;}
.x11_c00102{left:687.000000px;}
.x7c_c00102{left:688.080000px;}
.x47_c00102{left:689.580000px;}
.xd4_c00102{left:691.080000px;}
.x30_c00102{left:692.580000px;}
.x99_c00102{left:695.580000px;}
.x51_c00102{left:700.920000px;}
.xac_c00102{left:703.500000px;}
.x67_c00102{left:706.080000px;}
.x7d_c00102{left:708.420000px;}
.x2_c00102{left:712.080000px;}
.x3c_c00102{left:715.500000px;}
.xdb_c00102{left:718.500000px;}
@media print{
.v0_c00102{vertical-align:0.000000pt;}
.ls0_c00102{letter-spacing:0.000000pt;}
.ws0_c00102{word-spacing:0.000000pt;}
.fs6_c00102{font-size:3.040000pt;}
.fs7_c00102{font-size:10.560000pt;}
.fs2_c00102{font-size:16.640000pt;}
.fs0_c00102{font-size:18.133333pt;}
.fs4_c00102{font-size:22.666667pt;}
.fs1_c00102{font-size:25.706667pt;}
.fs5_c00102{font-size:28.746667pt;}
.fs3_c00102{font-size:31.733333pt;}
.fs8_c00102{font-size:34.773333pt;}
.y0_c00102{bottom:0.000000pt;}
.ybf_c00102{bottom:225.106667pt;}
.yc0_c00102{bottom:226.066667pt;}
.yc2_c00102{bottom:226.640000pt;}
.yc1_c00102{bottom:227.026667pt;}
.ybc_c00102{bottom:242.440000pt;}
.ybd_c00102{bottom:243.400000pt;}
.ybb_c00102{bottom:244.360000pt;}
.ybe_c00102{bottom:245.306667pt;}
.yba_c00102{bottom:245.693333pt;}
.yb4_c00102{bottom:259.773333pt;}
.yb7_c00102{bottom:261.106667pt;}
.yb8_c00102{bottom:261.693333pt;}
.yb9_c00102{bottom:261.893333pt;}
.yb6_c00102{bottom:262.640000pt;}
.yb5_c00102{bottom:263.026667pt;}
.yb1_c00102{bottom:278.440000pt;}
.yb2_c00102{bottom:279.026667pt;}
.yb3_c00102{bottom:279.973333pt;}
.yae_c00102{bottom:294.440000pt;}
.yad_c00102{bottom:295.773333pt;}
.yaf_c00102{bottom:296.360000pt;}
.yb0_c00102{bottom:297.306667pt;}
.yac_c00102{bottom:297.693333pt;}
.ya8_c00102{bottom:311.026667pt;}
.yaa_c00102{bottom:311.773333pt;}
.ya6_c00102{bottom:312.160000pt;}
.ya9_c00102{bottom:313.693333pt;}
.ya7_c00102{bottom:313.893333pt;}
.ya4_c00102{bottom:315.026667pt;}
.ya5_c00102{bottom:315.040000pt;}
.yab_c00102{bottom:315.973333pt;}
.ya2_c00102{bottom:329.106667pt;}
.ya1_c00102{bottom:330.066667pt;}
.ya0_c00102{bottom:330.440000pt;}
.ya3_c00102{bottom:331.026667pt;}
.y9e_c00102{bottom:331.226667pt;}
.y9d_c00102{bottom:332.360000pt;}
.y9f_c00102{bottom:332.373333pt;}
.y9a_c00102{bottom:347.773333pt;}
.y9c_c00102{bottom:348.733333pt;}
.y9b_c00102{bottom:351.040000pt;}
.y99_c00102{bottom:367.026667pt;}
.y94_c00102{bottom:382.440000pt;}
.y95_c00102{bottom:383.773333pt;}
.y98_c00102{bottom:383.973333pt;}
.y97_c00102{bottom:384.360000pt;}
.y96_c00102{bottom:385.706667pt;}
.y93_c00102{bottom:402.640000pt;}
.y90_c00102{bottom:403.400000pt;}
.y91_c00102{bottom:404.360000pt;}
.y92_c00102{bottom:404.560000pt;}
.y8e_c00102{bottom:425.306667pt;}
.y8f_c00102{bottom:426.066667pt;}
.y8d_c00102{bottom:427.026667pt;}
.y8c_c00102{bottom:438.640000pt;}
.y88_c00102{bottom:439.400000pt;}
.y8b_c00102{bottom:439.600000pt;}
.y8a_c00102{bottom:440.360000pt;}
.y89_c00102{bottom:442.266667pt;}
.y86_c00102{bottom:466.440000pt;}
.y87_c00102{bottom:467.400000pt;}
.y85_c00102{bottom:468.360000pt;}
.y84_c00102{bottom:506.640000pt;}
.y83_c00102{bottom:507.026667pt;}
.y82_c00102{bottom:522.440000pt;}
.y80_c00102{bottom:523.773333pt;}
.y81_c00102{bottom:524.360000pt;}
.y7f_c00102{bottom:525.693333pt;}
.y7c_c00102{bottom:541.106667pt;}
.y7e_c00102{bottom:541.693333pt;}
.y7d_c00102{bottom:542.640000pt;}
.y7a_c00102{bottom:543.026667pt;}
.y7b_c00102{bottom:543.040000pt;}
.y74_c00102{bottom:555.226667pt;}
.y75_c00102{bottom:555.800000pt;}
.y79_c00102{bottom:556.360000pt;}
.y76_c00102{bottom:558.440000pt;}
.y73_c00102{bottom:559.226667pt;}
.y78_c00102{bottom:559.400000pt;}
.y77_c00102{bottom:560.360000pt;}
.y71_c00102{bottom:573.133333pt;}
.y6f_c00102{bottom:573.693333pt;}
.y6a_c00102{bottom:574.640000pt;}
.y72_c00102{bottom:575.026667pt;}
.y6d_c00102{bottom:575.773333pt;}
.y6c_c00102{bottom:576.560000pt;}
.y6e_c00102{bottom:576.733333pt;}
.y6b_c00102{bottom:577.693333pt;}
.y70_c00102{bottom:580.560000pt;}
.y67_c00102{bottom:592.360000pt;}
.y64_c00102{bottom:592.733333pt;}
.y68_c00102{bottom:593.106667pt;}
.y69_c00102{bottom:593.893333pt;}
.y65_c00102{bottom:594.066667pt;}
.y66_c00102{bottom:595.026667pt;}
.y62_c00102{bottom:609.693333pt;}
.y5e_c00102{bottom:610.440000pt;}
.y5f_c00102{bottom:611.400000pt;}
.y61_c00102{bottom:611.600000pt;}
.y60_c00102{bottom:612.360000pt;}
.y63_c00102{bottom:613.306667pt;}
.y5d_c00102{bottom:627.026667pt;}
.y59_c00102{bottom:627.773333pt;}
.y5c_c00102{bottom:628.733333pt;}
.y5a_c00102{bottom:629.306667pt;}
.y5b_c00102{bottom:629.693333pt;}
.y53_c00102{bottom:644.360000pt;}
.y58_c00102{bottom:645.106667pt;}
.y51_c00102{bottom:645.306667pt;}
.y55_c00102{bottom:645.693333pt;}
.y52_c00102{bottom:646.066667pt;}
.y54_c00102{bottom:647.026667pt;}
.y56_c00102{bottom:647.226667pt;}
.y57_c00102{bottom:648.373333pt;}
.y50_c00102{bottom:662.440000pt;}
.y4e_c00102{bottom:662.640000pt;}
.y4d_c00102{bottom:663.400000pt;}
.y4f_c00102{bottom:664.360000pt;}
.y4c_c00102{bottom:679.973333pt;}
.y4b_c00102{bottom:680.360000pt;}
.y4a_c00102{bottom:681.106667pt;}
.y49_c00102{bottom:683.026667pt;}
.y47_c00102{bottom:696.360000pt;}
.y44_c00102{bottom:697.693333pt;}
.y45_c00102{bottom:698.440000pt;}
.y48_c00102{bottom:699.400000pt;}
.y46_c00102{bottom:700.360000pt;}
.y42_c00102{bottom:714.066667pt;}
.y43_c00102{bottom:715.026667pt;}
.y40_c00102{bottom:715.773333pt;}
.y3f_c00102{bottom:716.733333pt;}
.y41_c00102{bottom:717.693333pt;}
.y3e_c00102{bottom:733.106667pt;}
.y3d_c00102{bottom:734.640000pt;}
.y3c_c00102{bottom:735.026667pt;}
.y3a_c00102{bottom:750.440000pt;}
.y3b_c00102{bottom:751.226667pt;}
.y38_c00102{bottom:751.400000pt;}
.y39_c00102{bottom:752.360000pt;}
.y36_c00102{bottom:767.773333pt;}
.y35_c00102{bottom:768.733333pt;}
.y34_c00102{bottom:769.306667pt;}
.y33_c00102{bottom:769.693333pt;}
.y37_c00102{bottom:769.893333pt;}
.y30_c00102{bottom:786.066667pt;}
.y32_c00102{bottom:786.440000pt;}
.y2f_c00102{bottom:786.640000pt;}
.y2e_c00102{bottom:787.026667pt;}
.y31_c00102{bottom:787.226667pt;}
.y2c_c00102{bottom:803.773333pt;}
.y2a_c00102{bottom:804.360000pt;}
.y2d_c00102{bottom:804.733333pt;}
.y29_c00102{bottom:805.306667pt;}
.y2b_c00102{bottom:805.693333pt;}
.y27_c00102{bottom:819.973333pt;}
.y28_c00102{bottom:821.106667pt;}
.y24_c00102{bottom:821.693333pt;}
.y26_c00102{bottom:822.066667pt;}
.y25_c00102{bottom:823.026667pt;}
.y20_c00102{bottom:838.440000pt;}
.y1f_c00102{bottom:839.226667pt;}
.y22_c00102{bottom:839.400000pt;}
.y21_c00102{bottom:839.973333pt;}
.y23_c00102{bottom:840.360000pt;}
.y1e_c00102{bottom:854.640000pt;}
.y1d_c00102{bottom:855.773333pt;}
.y1c_c00102{bottom:856.733333pt;}
.y1a_c00102{bottom:857.306667pt;}
.y1b_c00102{bottom:857.693333pt;}
.y17_c00102{bottom:873.106667pt;}
.y18_c00102{bottom:874.066667pt;}
.y16_c00102{bottom:875.026667pt;}
.y19_c00102{bottom:875.973333pt;}
.y14_c00102{bottom:890.066667pt;}
.y15_c00102{bottom:890.440000pt;}
.y12_c00102{bottom:891.400000pt;}
.y10_c00102{bottom:891.973333pt;}
.y11_c00102{bottom:892.360000pt;}
.y13_c00102{bottom:893.306667pt;}
.yd_c00102{bottom:907.773333pt;}
.ye_c00102{bottom:908.733333pt;}
.yc_c00102{bottom:909.693333pt;}
.yf_c00102{bottom:910.640000pt;}
.yb_c00102{bottom:926.066667pt;}
.y9_c00102{bottom:927.026667pt;}
.ya_c00102{bottom:927.226667pt;}
.y3_c00102{bottom:943.226667pt;}
.y6_c00102{bottom:943.773333pt;}
.y4_c00102{bottom:944.360000pt;}
.y8_c00102{bottom:944.733333pt;}
.y7_c00102{bottom:945.306667pt;}
.y5_c00102{bottom:945.693333pt;}
.y2_c00102{bottom:977.693333pt;}
.y1_c00102{bottom:979.600000pt;}
.h7_c00102{height:3.739141pt;}
.h8_c00102{height:12.988594pt;}
.h3_c00102{height:20.466875pt;}
.h1_c00102{height:22.303646pt;}
.h5_c00102{height:27.879557pt;}
.h2_c00102{height:31.618698pt;}
.h6_c00102{height:35.357839pt;}
.h4_c00102{height:39.031380pt;}
.h9_c00102{height:42.770521pt;}
.h0_c00102{height:1186.666667pt;}
.w0_c00102{width:782.666667pt;}
.x0_c00102{left:0.000000pt;}
.x3_c00102{left:134.666667pt;}
.x8c_c00102{left:135.626667pt;}
.xdc_c00102{left:136.960000pt;}
.x17_c00102{left:148.960000pt;}
.xc3_c00102{left:149.906667pt;}
.x68_c00102{left:151.040000pt;}
.x5c_c00102{left:152.373333pt;}
.x4_c00102{left:153.706667pt;}
.xbe_c00102{left:158.666667pt;}
.x8d_c00102{left:160.373333pt;}
.xbf_c00102{left:163.626667pt;}
.x12_c00102{left:170.666667pt;}
.x9a_c00102{left:171.626667pt;}
.xb2_c00102{left:173.333333pt;}
.x5d_c00102{left:174.666667pt;}
.x5_c00102{left:176.960000pt;}
.x52_c00102{left:178.293333pt;}
.x3d_c00102{left:182.666667pt;}
.xa6_c00102{left:183.800000pt;}
.x31_c00102{left:185.333333pt;}
.x48_c00102{left:186.666667pt;}
.xa0_c00102{left:189.706667pt;}
.x26_c00102{left:193.706667pt;}
.x9b_c00102{left:194.666667pt;}
.x88_c00102{left:196.000000pt;}
.xf3_c00102{left:198.666667pt;}
.xb3_c00102{left:200.000000pt;}
.x72_c00102{left:201.333333pt;}
.x8e_c00102{left:203.626667pt;}
.x49_c00102{left:205.333333pt;}
.x7e_c00102{left:208.000000pt;}
.xb9_c00102{left:209.333333pt;}
.x6_c00102{left:210.666667pt;}
.xc4_c00102{left:212.000000pt;}
.xd0_c00102{left:212.960000pt;}
.x3e_c00102{left:214.666667pt;}
.xee_c00102{left:216.373333pt;}
.x18_c00102{left:217.333333pt;}
.x27_c00102{left:219.040000pt;}
.x7_c00102{left:220.000000pt;}
.xe9_c00102{left:222.666667pt;}
.xa1_c00102{left:224.373333pt;}
.x9c_c00102{left:225.333333pt;}
.x19_c00102{left:227.040000pt;}
.xc5_c00102{left:229.333333pt;}
.x4a_c00102{left:231.040000pt;}
.x89_c00102{left:232.373333pt;}
.x13_c00102{left:233.333333pt;}
.x73_c00102{left:234.293333pt;}
.x69_c00102{left:238.666667pt;}
.x1a_c00102{left:240.000000pt;}
.xef_c00102{left:240.960000pt;}
.xd8_c00102{left:242.666667pt;}
.xc0_c00102{left:243.626667pt;}
.x7f_c00102{left:247.040000pt;}
.x32_c00102{left:249.333333pt;}
.x14_c00102{left:250.666667pt;}
.xe2_c00102{left:252.000000pt;}
.x3f_c00102{left:252.960000pt;}
.x5e_c00102{left:256.960000pt;}
.x93_c00102{left:258.293333pt;}
.xc1_c00102{left:260.373333pt;}
.xd9_c00102{left:261.333333pt;}
.x1b_c00102{left:264.573333pt;}
.x74_c00102{left:266.666667pt;}
.x53_c00102{left:268.000000pt;}
.x8_c00102{left:269.333333pt;}
.xdf_c00102{left:270.666667pt;}
.x5f_c00102{left:273.706667pt;}
.x84_c00102{left:274.666667pt;}
.x6a_c00102{left:277.333333pt;}
.x40_c00102{left:279.040000pt;}
.x4b_c00102{left:280.960000pt;}
.xa7_c00102{left:284.373333pt;}
.x80_c00102{left:285.333333pt;}
.xf4_c00102{left:286.666667pt;}
.xd1_c00102{left:289.706667pt;}
.x1c_c00102{left:292.000000pt;}
.x94_c00102{left:293.706667pt;}
.x28_c00102{left:295.040000pt;}
.x60_c00102{left:296.000000pt;}
.x33_c00102{left:297.706667pt;}
.xba_c00102{left:298.666667pt;}
.x15_c00102{left:300.000000pt;}
.xce_c00102{left:301.706667pt;}
.xf7_c00102{left:304.000000pt;}
.x1d_c00102{left:306.666667pt;}
.x4c_c00102{left:308.960000pt;}
.xc9_c00102{left:311.040000pt;}
.xf0_c00102{left:312.000000pt;}
.xe0_c00102{left:314.293333pt;}
.x9_c00102{left:317.333333pt;}
.x9d_c00102{left:318.293333pt;}
.x1e_c00102{left:319.626667pt;}
.xd5_c00102{left:320.760000pt;}
.x54_c00102{left:322.293333pt;}
.xc2_c00102{left:325.706667pt;}
.x8a_c00102{left:326.666667pt;}
.xfa_c00102{left:328.373333pt;}
.x34_c00102{left:329.706667pt;}
.x29_c00102{left:333.333333pt;}
.xa8_c00102{left:334.666667pt;}
.x6b_c00102{left:337.706667pt;}
.x41_c00102{left:340.000000pt;}
.x75_c00102{left:340.960000pt;}
.xb4_c00102{left:342.666667pt;}
.xa2_c00102{left:345.333333pt;}
.xf8_c00102{left:347.626667pt;}
.x4d_c00102{left:350.666667pt;}
.xad_c00102{left:351.626667pt;}
.x1_c00102{left:353.333333pt;}
.x35_c00102{left:354.666667pt;}
.x61_c00102{left:355.626667pt;}
.x76_c00102{left:357.706667pt;}
.xa_c00102{left:359.040000pt;}
.xd2_c00102{left:360.373333pt;}
.xe3_c00102{left:361.333333pt;}
.x1f_c00102{left:362.666667pt;}
.x2a_c00102{left:363.626667pt;}
.x6c_c00102{left:367.040000pt;}
.xae_c00102{left:369.333333pt;}
.x62_c00102{left:372.373333pt;}
.xf9_c00102{left:373.333333pt;}
.x16_c00102{left:374.293333pt;}
.x55_c00102{left:376.373333pt;}
.xca_c00102{left:377.706667pt;}
.x81_c00102{left:379.040000pt;}
.x4e_c00102{left:380.000000pt;}
.x2b_c00102{left:381.706667pt;}
.xa9_c00102{left:383.800000pt;}
.xd3_c00102{left:384.960000pt;}
.x85_c00102{left:387.040000pt;}
.x77_c00102{left:388.000000pt;}
.x6d_c00102{left:389.333333pt;}
.xb_c00102{left:391.040000pt;}
.x36_c00102{left:393.333333pt;}
.xa3_c00102{left:394.293333pt;}
.x63_c00102{left:396.000000pt;}
.xe4_c00102{left:397.333333pt;}
.x20_c00102{left:398.666667pt;}
.x56_c00102{left:400.000000pt;}
.xd6_c00102{left:401.333333pt;}
.x42_c00102{left:403.040000pt;}
.xfb_c00102{left:405.706667pt;}
.x8f_c00102{left:406.666667pt;}
.x82_c00102{left:410.666667pt;}
.x9e_c00102{left:412.000000pt;}
.x86_c00102{left:412.960000pt;}
.x95_c00102{left:414.666667pt;}
.x2c_c00102{left:416.000000pt;}
.xb5_c00102{left:417.333333pt;}
.xdd_c00102{left:423.800000pt;}
.x83_c00102{left:428.373333pt;}
.xe5_c00102{left:429.333333pt;}
.xf5_c00102{left:431.040000pt;}
.x43_c00102{left:435.040000pt;}
.x4f_c00102{left:436.000000pt;}
.x37_c00102{left:437.333333pt;}
.xcb_c00102{left:442.293333pt;}
.xcf_c00102{left:443.626667pt;}
.xf1_c00102{left:445.333333pt;}
.x21_c00102{left:448.000000pt;}
.x64_c00102{left:449.706667pt;}
.x57_c00102{left:450.666667pt;}
.x2d_c00102{left:452.000000pt;}
.xd7_c00102{left:452.960000pt;}
.xaf_c00102{left:454.293333pt;}
.x8b_c00102{left:457.333333pt;}
.x44_c00102{left:458.666667pt;}
.xde_c00102{left:460.000000pt;}
.xc6_c00102{left:461.333333pt;}
.x90_c00102{left:464.960000pt;}
.xe6_c00102{left:467.626667pt;}
.xea_c00102{left:468.960000pt;}
.xfc_c00102{left:472.000000pt;}
.xc_c00102{left:472.960000pt;}
.xcc_c00102{left:476.000000pt;}
.x65_c00102{left:478.666667pt;}
.x58_c00102{left:480.960000pt;}
.xe7_c00102{left:483.040000pt;}
.xda_c00102{left:484.000000pt;}
.xf6_c00102{left:485.333333pt;}
.xbb_c00102{left:487.040000pt;}
.x78_c00102{left:488.000000pt;}
.xe1_c00102{left:488.960000pt;}
.x22_c00102{left:492.000000pt;}
.x6e_c00102{left:492.960000pt;}
.xb6_c00102{left:497.333333pt;}
.xaa_c00102{left:499.040000pt;}
.x38_c00102{left:502.293333pt;}
.xc7_c00102{left:503.626667pt;}
.x2e_c00102{left:507.040000pt;}
.xbc_c00102{left:508.000000pt;}
.xeb_c00102{left:509.333333pt;}
.x45_c00102{left:512.000000pt;}
.xbd_c00102{left:512.960000pt;}
.x66_c00102{left:514.666667pt;}
.xd_c00102{left:516.000000pt;}
.x96_c00102{left:516.960000pt;}
.x6f_c00102{left:519.040000pt;}
.x59_c00102{left:520.960000pt;}
.xb7_c00102{left:524.000000pt;}
.x23_c00102{left:525.706667pt;}
.x91_c00102{left:528.000000pt;}
.xcd_c00102{left:528.960000pt;}
.xe_c00102{left:532.373333pt;}
.x79_c00102{left:533.706667pt;}
.xb0_c00102{left:534.666667pt;}
.xa4_c00102{left:535.626667pt;}
.x70_c00102{left:542.666667pt;}
.xc8_c00102{left:546.666667pt;}
.x9f_c00102{left:547.626667pt;}
.x39_c00102{left:549.706667pt;}
.x46_c00102{left:550.666667pt;}
.x5a_c00102{left:552.373333pt;}
.xf_c00102{left:554.666667pt;}
.xf2_c00102{left:556.960000pt;}
.xe8_c00102{left:558.666667pt;}
.x7a_c00102{left:564.000000pt;}
.xa5_c00102{left:570.666667pt;}
.x2f_c00102{left:571.626667pt;}
.x3a_c00102{left:573.333333pt;}
.x97_c00102{left:575.626667pt;}
.xab_c00102{left:580.373333pt;}
.x7b_c00102{left:581.706667pt;}
.xec_c00102{left:582.666667pt;}
.x10_c00102{left:584.373333pt;}
.x24_c00102{left:585.333333pt;}
.x92_c00102{left:586.666667pt;}
.x87_c00102{left:589.333333pt;}
.x98_c00102{left:591.626667pt;}
.x50_c00102{left:594.293333pt;}
.x5b_c00102{left:595.626667pt;}
.xed_c00102{left:598.666667pt;}
.xb1_c00102{left:601.333333pt;}
.x25_c00102{left:603.040000pt;}
.xb8_c00102{left:605.706667pt;}
.x71_c00102{left:607.626667pt;}
.x3b_c00102{left:608.960000pt;}
.x11_c00102{left:610.666667pt;}
.x7c_c00102{left:611.626667pt;}
.x47_c00102{left:612.960000pt;}
.xd4_c00102{left:614.293333pt;}
.x30_c00102{left:615.626667pt;}
.x99_c00102{left:618.293333pt;}
.x51_c00102{left:623.040000pt;}
.xac_c00102{left:625.333333pt;}
.x67_c00102{left:627.626667pt;}
.x7d_c00102{left:629.706667pt;}
.x2_c00102{left:632.960000pt;}
.x3c_c00102{left:636.000000pt;}
.xdb_c00102{left:638.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_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_dc7b85c2d80c0c0a3cdda1bf.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mfa_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);}
.mf_c00103{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.m38_c00103{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m2f_c00103{transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);}
.m19_c00103{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.ma9_c00103{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m27_c00103{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m31_c00103{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m74_c00103{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m8c_c00103{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m92_c00103{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m35_c00103{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m52_c00103{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.me_c00103{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mc3_c00103{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.mff_c00103{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m95_c00103{transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);}
.m25_c00103{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m8e_c00103{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m59_c00103{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m111_c00103{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m9e_c00103{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m10e_c00103{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m20_c00103{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m106_c00103{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m103_c00103{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m3f_c00103{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.mfb_c00103{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.mba_c00103{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.maf_c00103{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mfd_c00103{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.mbc_c00103{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m101_c00103{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.mcb_c00103{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m1d_c00103{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.me2_c00103{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.mc7_c00103{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mbf_c00103{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mc5_c00103{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.md1_c00103{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m61_c00103{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.ma1_c00103{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m48_c00103{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m104_c00103{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m75_c00103{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m65_c00103{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.ma4_c00103{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m22_c00103{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m67_c00103{transform:matrix(0.428108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428108,0.000000,0.000000,0.250000,0,0);}
.ma5_c00103{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m10d_c00103{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m99_c00103{transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);}
.mdd_c00103{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m41_c00103{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m9d_c00103{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m58_c00103{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m96_c00103{transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);}
.md5_c00103{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m1b_c00103{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.mf5_c00103{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.mcf_c00103{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mb3_c00103{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.ma3_c00103{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m79_c00103{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mf8_c00103{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.ma8_c00103{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m8a_c00103{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m39_c00103{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m15_c00103{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.me0_c00103{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m26_c00103{transform:matrix(0.444805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444805,0.000000,0.000000,0.250000,0,0);}
.mc9_c00103{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m62_c00103{transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);}
.m18_c00103{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m2e_c00103{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m51_c00103{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.mc6_c00103{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m93_c00103{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.mf4_c00103{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m24_c00103{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.m1a_c00103{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.mca_c00103{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.mee_c00103{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.mc0_c00103{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m113_c00103{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.me5_c00103{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mb1_c00103{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m9f_c00103{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.me3_c00103{transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);}
.mb2_c00103{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mfe_c00103{transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);}
.m78_c00103{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m5b_c00103{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.md4_c00103{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.mf0_c00103{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m83_c00103{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.m70_c00103{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m49_c00103{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mdb_c00103{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.mb5_c00103{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m7a_c00103{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m9_c00103{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mb0_c00103{transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);}
.m85_c00103{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.mda_c00103{transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);}
.m1_c00103{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m94_c00103{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m6_c00103{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m110_c00103{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m80_c00103{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);}
.ma2_c00103{transform:matrix(0.490588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490588,0.000000,0.000000,0.250000,0,0);}
.m5e_c00103{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m108_c00103{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m3e_c00103{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m2c_c00103{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m5f_c00103{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);}
.mf2_c00103{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m115_c00103{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.meb_c00103{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m71_c00103{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m9c_c00103{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m47_c00103{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m7e_c00103{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.md8_c00103{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m64_c00103{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.mdc_c00103{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m2_c00103{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m56_c00103{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mb7_c00103{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mec_c00103{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.mce_c00103{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m23_c00103{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m76_c00103{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.me4_c00103{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mde_c00103{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m50_c00103{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.me9_c00103{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m4_c00103{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mc8_c00103{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m8f_c00103{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);}
.md2_c00103{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m1e_c00103{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.me8_c00103{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.me1_c00103{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m28_c00103{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mef_c00103{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mbe_c00103{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.ma7_c00103{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mcd_c00103{transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);}
.m11_c00103{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m14_c00103{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m44_c00103{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m4d_c00103{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m46_c00103{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m89_c00103{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m40_c00103{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mf3_c00103{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.me7_c00103{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m57_c00103{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m97_c00103{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.mfc_c00103{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m36_c00103{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.mb6_c00103{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m73_c00103{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m32_c00103{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m30_c00103{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m107_c00103{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m42_c00103{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mbd_c00103{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mf6_c00103{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m7c_c00103{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m4e_c00103{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m16_c00103{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m10b_c00103{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m4c_c00103{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m12_c00103{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.ma_c00103{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mf1_c00103{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.md7_c00103{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m43_c00103{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mbb_c00103{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mc1_c00103{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.md_c00103{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m6b_c00103{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m4a_c00103{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m2d_c00103{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m8d_c00103{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.m10c_c00103{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.mad_c00103{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mb4_c00103{transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);}
.m10f_c00103{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m13_c00103{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.me6_c00103{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.ma6_c00103{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m6d_c00103{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.md6_c00103{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m100_c00103{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m7_c00103{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m3c_c00103{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m86_c00103{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m87_c00103{transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);}
.mcc_c00103{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mb8_c00103{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.m21_c00103{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m5a_c00103{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.mf9_c00103{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m77_c00103{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m37_c00103{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.mb9_c00103{transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);}
.m112_c00103{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m114_c00103{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m10a_c00103{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m33_c00103{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mc4_c00103{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m45_c00103{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m90_c00103{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m60_c00103{transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);}
.m53_c00103{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.m29_c00103{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m4b_c00103{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.md9_c00103{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.mdf_c00103{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.med_c00103{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.md0_c00103{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.ma0_c00103{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.mc2_c00103{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m6a_c00103{transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);}
.md3_c00103{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m3_c00103{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m3a_c00103{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m69_c00103{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m7f_c00103{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m82_c00103{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);}
.m81_c00103{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m63_c00103{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m8b_c00103{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.mea_c00103{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.mf7_c00103{transform:matrix(0.639076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639076,0.000000,0.000000,0.250000,0,0);}
.m6f_c00103{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m7d_c00103{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m5d_c00103{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m98_c00103{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m6c_c00103{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m6e_c00103{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.maa_c00103{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m0_c00103{transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);}
.m8_c00103{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mb_c00103{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m5c_c00103{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.m66_c00103{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.mab_c00103{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m72_c00103{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m55_c00103{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m1c_c00103{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m88_c00103{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m9b_c00103{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m7b_c00103{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);}
.m9a_c00103{transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);}
.m4f_c00103{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.m116_c00103{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m84_c00103{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m2b_c00103{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m54_c00103{transform:matrix(0.728676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728676,0.000000,0.000000,0.250000,0,0);}
.m105_c00103{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m10_c00103{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m17_c00103{transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);}
.m102_c00103{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mc_c00103{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m3b_c00103{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m1f_c00103{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m34_c00103{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m2a_c00103{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m109_c00103{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m3d_c00103{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mac_c00103{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.mae_c00103{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m91_c00103{transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);}
.m68_c00103{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m5_c00103{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00103{vertical-align:0.000000px;}
.v1_c00103{vertical-align:7.680000px;}
.ls1_c00103{letter-spacing:0.000000px;}
.ls0_c00103{letter-spacing:11.817600px;}
.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;}
}
.ws2_c00103{word-spacing:0.000000px;}
.ws1_c00103{word-spacing:0.308050px;}
.ws0_c00103{word-spacing:3.443016px;}
._0_c00103{width:18.037299px;}
.fc0_c00103{color:transparent;}
.fs2_c00103{font-size:3.420000px;}
.fs8_c00103{font-size:13.620000px;}
.fs0_c00103{font-size:18.720000px;}
.fs7_c00103{font-size:20.400000px;}
.fs3_c00103{font-size:25.500000px;}
.fs1_c00103{font-size:28.920000px;}
.fs5_c00103{font-size:32.340000px;}
.fs4_c00103{font-size:35.700000px;}
.fs6_c00103{font-size:39.120000px;}
.y0_c00103{bottom:0.000000px;}
.yef_c00103{bottom:250.905000px;}
.yee_c00103{bottom:255.405000px;}
.yec_c00103{bottom:274.245000px;}
.ye9_c00103{bottom:274.905000px;}
.yed_c00103{bottom:275.130000px;}
.yea_c00103{bottom:275.970000px;}
.yeb_c00103{bottom:276.405000px;}
.ye4_c00103{bottom:292.245000px;}
.ye6_c00103{bottom:292.905000px;}
.ye2_c00103{bottom:293.325000px;}
.ye8_c00103{bottom:293.745000px;}
.ye1_c00103{bottom:294.405000px;}
.ye7_c00103{bottom:294.630000px;}
.ye5_c00103{bottom:295.470000px;}
.ye3_c00103{bottom:295.905000px;}
.ydd_c00103{bottom:313.245000px;}
.ydc_c00103{bottom:313.905000px;}
.ye0_c00103{bottom:314.130000px;}
.yde_c00103{bottom:314.970000px;}
.ydf_c00103{bottom:315.405000px;}
.ydb_c00103{bottom:332.745000px;}
.yda_c00103{bottom:333.630000px;}
.yd9_c00103{bottom:334.905000px;}
.yd7_c00103{bottom:351.405000px;}
.yd6_c00103{bottom:352.245000px;}
.yd5_c00103{bottom:354.405000px;}
.yd8_c00103{bottom:354.630000px;}
.yd0_c00103{bottom:371.745000px;}
.yd1_c00103{bottom:372.825000px;}
.yd2_c00103{bottom:373.470000px;}
.yd3_c00103{bottom:373.905000px;}
.yd4_c00103{bottom:375.405000px;}
.ycd_c00103{bottom:391.245000px;}
.ycc_c00103{bottom:393.405000px;}
.yce_c00103{bottom:394.470000px;}
.ycf_c00103{bottom:394.905000px;}
.yca_c00103{bottom:412.245000px;}
.yc8_c00103{bottom:412.905000px;}
.yc9_c00103{bottom:413.325000px;}
.ycb_c00103{bottom:414.405000px;}
.yc7_c00103{bottom:431.745000px;}
.yc3_c00103{bottom:432.630000px;}
.yc5_c00103{bottom:432.825000px;}
.yc4_c00103{bottom:433.905000px;}
.yc6_c00103{bottom:434.970000px;}
.yc2_c00103{bottom:448.905000px;}
.yc1_c00103{bottom:452.325000px;}
.yc0_c00103{bottom:452.970000px;}
.ybe_c00103{bottom:453.405000px;}
.ybf_c00103{bottom:454.470000px;}
.ybc_c00103{bottom:469.905000px;}
.yb9_c00103{bottom:470.745000px;}
.ybb_c00103{bottom:472.905000px;}
.ybd_c00103{bottom:473.130000px;}
.yba_c00103{bottom:473.970000px;}
.yb3_c00103{bottom:490.245000px;}
.yb6_c00103{bottom:491.325000px;}
.yb4_c00103{bottom:492.405000px;}
.yb5_c00103{bottom:492.630000px;}
.yb7_c00103{bottom:493.470000px;}
.yb8_c00103{bottom:493.905000px;}
.yb2_c00103{bottom:509.745000px;}
.yb1_c00103{bottom:509.970000px;}
.yb0_c00103{bottom:510.405000px;}
.yac_c00103{bottom:511.905000px;}
.yaf_c00103{bottom:512.130000px;}
.yae_c00103{bottom:512.970000px;}
.yad_c00103{bottom:513.405000px;}
.ya7_c00103{bottom:528.405000px;}
.ya8_c00103{bottom:530.325000px;}
.ya9_c00103{bottom:530.745000px;}
.ya5_c00103{bottom:531.405000px;}
.yaa_c00103{bottom:531.630000px;}
.ya6_c00103{bottom:531.825000px;}
.yab_c00103{bottom:532.470000px;}
.ya3_c00103{bottom:547.905000px;}
.ya2_c00103{bottom:549.405000px;}
.ya0_c00103{bottom:550.245000px;}
.ya1_c00103{bottom:551.130000px;}
.ya4_c00103{bottom:551.970000px;}
.y9f_c00103{bottom:552.405000px;}
.y9d_c00103{bottom:569.745000px;}
.y9e_c00103{bottom:570.825000px;}
.y9c_c00103{bottom:571.905000px;}
.y99_c00103{bottom:589.245000px;}
.y9b_c00103{bottom:590.130000px;}
.y96_c00103{bottom:590.325000px;}
.y9a_c00103{bottom:590.970000px;}
.y98_c00103{bottom:591.405000px;}
.y97_c00103{bottom:592.470000px;}
.y93_c00103{bottom:607.905000px;}
.y91_c00103{bottom:608.745000px;}
.y94_c00103{bottom:609.630000px;}
.y95_c00103{bottom:609.825000px;}
.y92_c00103{bottom:610.905000px;}
.y8e_c00103{bottom:628.245000px;}
.y90_c00103{bottom:629.325000px;}
.y8f_c00103{bottom:630.405000px;}
.y8d_c00103{bottom:631.470000px;}
.y8c_c00103{bottom:648.825000px;}
.y89_c00103{bottom:649.245000px;}
.y88_c00103{bottom:649.905000px;}
.y8b_c00103{bottom:650.325000px;}
.y8a_c00103{bottom:651.405000px;}
.y85_c00103{bottom:666.405000px;}
.y87_c00103{bottom:668.745000px;}
.y86_c00103{bottom:670.470000px;}
.y84_c00103{bottom:670.905000px;}
.y7f_c00103{bottom:685.905000px;}
.y83_c00103{bottom:687.825000px;}
.y81_c00103{bottom:688.050000px;}
.y7d_c00103{bottom:688.245000px;}
.y7c_c00103{bottom:688.905000px;}
.y80_c00103{bottom:689.130000px;}
.y82_c00103{bottom:689.325000px;}
.y7e_c00103{bottom:690.405000px;}
.y7a_c00103{bottom:706.470000px;}
.y78_c00103{bottom:706.905000px;}
.y75_c00103{bottom:707.745000px;}
.y7b_c00103{bottom:708.630000px;}
.y79_c00103{bottom:709.470000px;}
.y77_c00103{bottom:709.905000px;}
.y76_c00103{bottom:709.920000px;}
.y74_c00103{bottom:731.970000px;}
.y73_c00103{bottom:732.825000px;}
.y72_c00103{bottom:733.905000px;}
.y71_c00103{bottom:734.130000px;}
.y70_c00103{bottom:736.050000px;}
.y69_c00103{bottom:747.405000px;}
.y6f_c00103{bottom:747.825000px;}
.y6e_c00103{bottom:748.050000px;}
.y6a_c00103{bottom:748.905000px;}
.y6c_c00103{bottom:749.130000px;}
.y6b_c00103{bottom:749.970000px;}
.y6d_c00103{bottom:751.050000px;}
.y68_c00103{bottom:761.970000px;}
.y67_c00103{bottom:762.825000px;}
.y66_c00103{bottom:763.695000px;}
.y64_c00103{bottom:763.905000px;}
.y63_c00103{bottom:764.550000px;}
.y65_c00103{bottom:764.970000px;}
.y5d_c00103{bottom:776.970000px;}
.y61_c00103{bottom:777.825000px;}
.y60_c00103{bottom:778.050000px;}
.y5e_c00103{bottom:778.905000px;}
.y5f_c00103{bottom:779.970000px;}
.y62_c00103{bottom:781.050000px;}
.y5b_c00103{bottom:792.405000px;}
.y5c_c00103{bottom:794.550000px;}
.y5a_c00103{bottom:806.325000px;}
.y54_c00103{bottom:806.550000px;}
.y55_c00103{bottom:807.405000px;}
.y56_c00103{bottom:807.630000px;}
.y57_c00103{bottom:808.470000px;}
.y59_c00103{bottom:808.695000px;}
.y58_c00103{bottom:809.550000px;}
.y53_c00103{bottom:821.325000px;}
.y4f_c00103{bottom:822.405000px;}
.y52_c00103{bottom:823.470000px;}
.y50_c00103{bottom:823.695000px;}
.y51_c00103{bottom:824.550000px;}
.y4a_c00103{bottom:835.470000px;}
.y4b_c00103{bottom:837.405000px;}
.y4d_c00103{bottom:838.050000px;}
.y4e_c00103{bottom:838.470000px;}
.y4c_c00103{bottom:839.550000px;}
.y48_c00103{bottom:850.905000px;}
.y47_c00103{bottom:851.325000px;}
.y44_c00103{bottom:852.405000px;}
.y46_c00103{bottom:853.470000px;}
.y45_c00103{bottom:853.695000px;}
.y49_c00103{bottom:854.550000px;}
.y3f_c00103{bottom:866.325000px;}
.y43_c00103{bottom:867.405000px;}
.y3d_c00103{bottom:867.630000px;}
.y42_c00103{bottom:868.050000px;}
.y41_c00103{bottom:868.470000px;}
.y40_c00103{bottom:868.695000px;}
.y3e_c00103{bottom:869.550000px;}
.y3c_c00103{bottom:879.825000px;}
.y38_c00103{bottom:880.905000px;}
.y3a_c00103{bottom:881.550000px;}
.y3b_c00103{bottom:881.970000px;}
.y37_c00103{bottom:882.630000px;}
.y39_c00103{bottom:883.050000px;}
.y32_c00103{bottom:903.405000px;}
.y36_c00103{bottom:904.245000px;}
.y31_c00103{bottom:904.470000px;}
.y34_c00103{bottom:905.550000px;}
.y33_c00103{bottom:906.405000px;}
.y35_c00103{bottom:907.470000px;}
.y30_c00103{bottom:924.630000px;}
.y2f_c00103{bottom:924.825000px;}
.y2e_c00103{bottom:925.245000px;}
.y2c_c00103{bottom:925.905000px;}
.y2d_c00103{bottom:926.130000px;}
.y2b_c00103{bottom:927.405000px;}
.y2a_c00103{bottom:943.245000px;}
.y29_c00103{bottom:945.405000px;}
.y24_c00103{bottom:962.745000px;}
.y25_c00103{bottom:963.825000px;}
.y22_c00103{bottom:964.245000px;}
.y28_c00103{bottom:964.905000px;}
.y27_c00103{bottom:965.130000px;}
.y26_c00103{bottom:965.970000px;}
.y23_c00103{bottom:966.405000px;}
.y1f_c00103{bottom:982.680000px;}
.y1e_c00103{bottom:983.745000px;}
.y20_c00103{bottom:984.405000px;}
.y21_c00103{bottom:984.630000px;}
.y1c_c00103{bottom:984.825000px;}
.y1d_c00103{bottom:985.905000px;}
.y19_c00103{bottom:1001.745000px;}
.y17_c00103{bottom:1002.405000px;}
.y18_c00103{bottom:1002.825000px;}
.y16_c00103{bottom:1003.245000px;}
.y15_c00103{bottom:1003.905000px;}
.y1b_c00103{bottom:1004.130000px;}
.y1a_c00103{bottom:1005.405000px;}
.y14_c00103{bottom:1021.245000px;}
.y10_c00103{bottom:1022.745000px;}
.y12_c00103{bottom:1023.630000px;}
.yf_c00103{bottom:1023.825000px;}
.y13_c00103{bottom:1024.470000px;}
.y11_c00103{bottom:1024.905000px;}
.yd_c00103{bottom:1040.745000px;}
.yc_c00103{bottom:1041.825000px;}
.y9_c00103{bottom:1042.245000px;}
.ye_c00103{bottom:1042.905000px;}
.ya_c00103{bottom:1043.130000px;}
.y8_c00103{bottom:1044.405000px;}
.yb_c00103{bottom:1045.470000px;}
.y7_c00103{bottom:1061.745000px;}
.y5_c00103{bottom:1062.630000px;}
.y6_c00103{bottom:1063.470000px;}
.y3_c00103{bottom:1063.905000px;}
.y4_c00103{bottom:1063.920000px;}
.y2_c00103{bottom:1099.905000px;}
.y1_c00103{bottom:1103.130000px;}
.h3_c00103{height:4.206533px;}
.h9_c00103{height:16.752334px;}
.h1_c00103{height:23.025234px;}
.h8_c00103{height:25.091602px;}
.h4_c00103{height:31.364502px;}
.h2_c00103{height:35.571035px;}
.ha_c00103{height:39.044502px;}
.h6_c00103{height:39.777568px;}
.h5_c00103{height:43.910303px;}
.h7_c00103{height:48.116836px;}
.h0_c00103{height:1335.000000px;}
.w0_c00103{width:880.500000px;}
.x0_c00103{left:0.000000px;}
.xf6_c00103{left:150.000000px;}
.xab_c00103{left:151.080000px;}
.x2_c00103{left:152.580000px;}
.x66_c00103{left:166.500000px;}
.xa1_c00103{left:167.580000px;}
.x3_c00103{left:169.080000px;}
.x53_c00103{left:170.580000px;}
.xf0_c00103{left:172.920000px;}
.xd5_c00103{left:178.500000px;}
.xca_c00103{left:180.000000px;}
.xb9_c00103{left:183.000000px;}
.x5b_c00103{left:184.500000px;}
.x9f_c00103{left:187.500000px;}
.x54_c00103{left:188.580000px;}
.x13_c00103{left:191.580000px;}
.xc5_c00103{left:193.500000px;}
.x87_c00103{left:195.000000px;}
.x41_c00103{left:196.080000px;}
.xe8_c00103{left:197.580000px;}
.x55_c00103{left:200.580000px;}
.x4a_c00103{left:202.080000px;}
.x94_c00103{left:203.580000px;}
.x107_c00103{left:206.580000px;}
.x7a_c00103{left:208.500000px;}
.x71_c00103{left:210.000000px;}
.x27_c00103{left:212.580000px;}
.xde_c00103{left:214.080000px;}
.x102_c00103{left:215.580000px;}
.x7e_c00103{left:217.500000px;}
.x72_c00103{left:220.500000px;}
.x95_c00103{left:222.000000px;}
.x67_c00103{left:224.580000px;}
.x1e_c00103{left:226.920000px;}
.x3a_c00103{left:229.500000px;}
.x56_c00103{left:230.580000px;}
.xcb_c00103{left:234.000000px;}
.xfb_c00103{left:240.420000px;}
.xd6_c00103{left:243.420000px;}
.x14_c00103{left:246.000000px;}
.x57_c00103{left:249.000000px;}
.x7f_c00103{left:250.500000px;}
.x88_c00103{left:252.000000px;}
.x4_c00103{left:253.500000px;}
.x73_c00103{left:254.580000px;}
.xa2_c00103{left:256.500000px;}
.x96_c00103{left:259.500000px;}
.xdf_c00103{left:261.000000px;}
.x42_c00103{left:262.500000px;}
.x89_c00103{left:264.000000px;}
.x7b_c00103{left:265.500000px;}
.x5c_c00103{left:267.000000px;}
.xd7_c00103{left:268.920000px;}
.x4b_c00103{left:271.500000px;}
.x5_c00103{left:272.580000px;}
.xf2_c00103{left:274.080000px;}
.xa3_c00103{left:277.080000px;}
.x80_c00103{left:280.500000px;}
.xed_c00103{left:282.420000px;}
.x15_c00103{left:283.920000px;}
.x74_c00103{left:285.420000px;}
.x1f_c00103{left:286.920000px;}
.xf3_c00103{left:288.420000px;}
.x31_c00103{left:290.355000px;}
.xd0_c00103{left:291.420000px;}
.xba_c00103{left:292.920000px;}
.x7c_c00103{left:294.420000px;}
.xfe_c00103{left:295.500000px;}
.x28_c00103{left:297.420000px;}
.xc0_c00103{left:298.500000px;}
.x4c_c00103{left:303.000000px;}
.x68_c00103{left:306.000000px;}
.xc6_c00103{left:308.580000px;}
.xc1_c00103{left:310.500000px;}
.x81_c00103{left:312.000000px;}
.x20_c00103{left:313.080000px;}
.xac_c00103{left:315.000000px;}
.xd1_c00103{left:319.920000px;}
.xbb_c00103{left:322.920000px;}
.x58_c00103{left:324.000000px;}
.x5d_c00103{left:325.500000px;}
.x75_c00103{left:327.000000px;}
.x76_c00103{left:328.080000px;}
.x69_c00103{left:331.500000px;}
.x43_c00103{left:332.580000px;}
.xe0_c00103{left:334.500000px;}
.x59_c00103{left:336.000000px;}
.x82_c00103{left:337.500000px;}
.x8f_c00103{left:339.000000px;}
.x29_c00103{left:340.920000px;}
.xb2_c00103{left:343.500000px;}
.x6_c00103{left:345.000000px;}
.xad_c00103{left:348.420000px;}
.xf7_c00103{left:349.500000px;}
.x32_c00103{left:350.580000px;}
.xf4_c00103{left:354.000000px;}
.xc7_c00103{left:355.500000px;}
.x16_c00103{left:357.000000px;}
.x4d_c00103{left:359.580000px;}
.xf1_c00103{left:361.920000px;}
.x97_c00103{left:363.000000px;}
.x7_c00103{left:366.000000px;}
.xc2_c00103{left:367.500000px;}
.xf5_c00103{left:370.500000px;}
.x3b_c00103{left:373.080000px;}
.x103_c00103{left:375.000000px;}
.x77_c00103{left:378.000000px;}
.x5e_c00103{left:379.080000px;}
.x8a_c00103{left:381.420000px;}
.xb5_c00103{left:382.500000px;}
.xb3_c00103{left:384.000000px;}
.x44_c00103{left:385.500000px;}
.x90_c00103{left:387.000000px;}
.x98_c00103{left:388.920000px;}
.x8_c00103{left:390.420000px;}
.xc3_c00103{left:391.920000px;}
.x7d_c00103{left:393.000000px;}
.xbc_c00103{left:394.920000px;}
.x83_c00103{left:397.500000px;}
.xf8_c00103{left:398.580000px;}
.x33_c00103{left:400.275000px;}
.x1_c00103{left:402.000000px;}
.x6a_c00103{left:403.500000px;}
.x21_c00103{left:405.000000px;}
.x4e_c00103{left:406.500000px;}
.xa4_c00103{left:409.920000px;}
.x2a_c00103{left:412.275000px;}
.x78_c00103{left:414.420000px;}
.x9_c00103{left:417.000000px;}
.xae_c00103{left:419.355000px;}
.x45_c00103{left:421.080000px;}
.xd8_c00103{left:423.000000px;}
.xbd_c00103{left:424.500000px;}
.xe9_c00103{left:426.000000px;}
.xee_c00103{left:430.500000px;}
.x5f_c00103{left:433.920000px;}
.xa_c00103{left:436.500000px;}
.x17_c00103{left:438.420000px;}
.x91_c00103{left:439.500000px;}
.x8b_c00103{left:442.080000px;}
.x34_c00103{left:443.580000px;}
.x60_c00103{left:445.500000px;}
.x108_c00103{left:448.080000px;}
.x99_c00103{left:450.000000px;}
.xb6_c00103{left:451.500000px;}
.xb_c00103{left:452.580000px;}
.x2b_c00103{left:454.080000px;}
.xea_c00103{left:455.580000px;}
.xfc_c00103{left:457.500000px;}
.xd2_c00103{left:459.000000px;}
.x4f_c00103{left:460.500000px;}
.xcc_c00103{left:463.920000px;}
.xdb_c00103{left:465.000000px;}
.xa5_c00103{left:468.420000px;}
.x18_c00103{left:469.500000px;}
.x22_c00103{left:471.000000px;}
.xf9_c00103{left:472.500000px;}
.xe1_c00103{left:475.500000px;}
.x35_c00103{left:477.000000px;}
.xe5_c00103{left:478.500000px;}
.xa0_c00103{left:481.920000px;}
.xff_c00103{left:483.000000px;}
.x6b_c00103{left:484.920000px;}
.x46_c00103{left:487.920000px;}
.x104_c00103{left:490.500000px;}
.x109_c00103{left:493.500000px;}
.xe2_c00103{left:495.000000px;}
.x61_c00103{left:496.500000px;}
.xd3_c00103{left:499.920000px;}
.xc4_c00103{left:501.000000px;}
.x10a_c00103{left:502.080000px;}
.x6c_c00103{left:505.080000px;}
.xc_c00103{left:507.000000px;}
.x105_c00103{left:508.080000px;}
.x3c_c00103{left:510.000000px;}
.x23_c00103{left:511.080000px;}
.xb4_c00103{left:513.420000px;}
.x9a_c00103{left:516.000000px;}
.x47_c00103{left:517.500000px;}
.xeb_c00103{left:518.580000px;}
.x50_c00103{left:522.000000px;}
.x92_c00103{left:525.000000px;}
.xd_c00103{left:526.500000px;}
.x62_c00103{left:527.580000px;}
.xdc_c00103{left:529.920000px;}
.x6d_c00103{left:531.000000px;}
.x2c_c00103{left:533.775000px;}
.xd4_c00103{left:535.080000px;}
.xec_c00103{left:537.000000px;}
.x51_c00103{left:538.920000px;}
.x36_c00103{left:545.580000px;}
.xa6_c00103{left:547.500000px;}
.x106_c00103{left:549.000000px;}
.x19_c00103{left:550.080000px;}
.xe3_c00103{left:551.580000px;}
.xe_c00103{left:552.645000px;}
.xcd_c00103{left:553.920000px;}
.x3d_c00103{left:558.000000px;}
.xd9_c00103{left:561.000000px;}
.x6e_c00103{left:565.080000px;}
.xa7_c00103{left:568.500000px;}
.xc8_c00103{left:569.580000px;}
.x48_c00103{left:571.920000px;}
.x1a_c00103{left:573.420000px;}
.xaf_c00103{left:574.500000px;}
.x9b_c00103{left:577.500000px;}
.xb7_c00103{left:580.920000px;}
.x6f_c00103{left:582.645000px;}
.x3e_c00103{left:585.000000px;}
.x24_c00103{left:586.500000px;}
.xfa_c00103{left:588.000000px;}
.x79_c00103{left:589.920000px;}
.xce_c00103{left:592.080000px;}
.x37_c00103{left:594.420000px;}
.x84_c00103{left:596.580000px;}
.x93_c00103{left:601.920000px;}
.x1b_c00103{left:604.500000px;}
.x8c_c00103{left:606.000000px;}
.xa8_c00103{left:607.500000px;}
.x5a_c00103{left:609.000000px;}
.x63_c00103{left:610.500000px;}
.xf_c00103{left:611.580000px;}
.x52_c00103{left:614.580000px;}
.xb0_c00103{left:621.000000px;}
.x2d_c00103{left:622.500000px;}
.xcf_c00103{left:624.420000px;}
.x3f_c00103{left:625.500000px;}
.xc9_c00103{left:628.500000px;}
.x9c_c00103{left:629.580000px;}
.xe6_c00103{left:631.500000px;}
.xdd_c00103{left:633.000000px;}
.x38_c00103{left:636.000000px;}
.x25_c00103{left:637.080000px;}
.xa9_c00103{left:639.420000px;}
.x8d_c00103{left:640.920000px;}
.xfd_c00103{left:642.000000px;}
.x64_c00103{left:646.080000px;}
.x10b_c00103{left:648.000000px;}
.xef_c00103{left:649.920000px;}
.x85_c00103{left:651.000000px;}
.x100_c00103{left:652.920000px;}
.x10_c00103{left:658.500000px;}
.xb1_c00103{left:660.000000px;}
.x2e_c00103{left:661.500000px;}
.x1c_c00103{left:663.000000px;}
.x70_c00103{left:666.000000px;}
.x8e_c00103{left:667.500000px;}
.x9d_c00103{left:669.000000px;}
.x49_c00103{left:670.500000px;}
.x65_c00103{left:672.000000px;}
.x39_c00103{left:673.500000px;}
.x11_c00103{left:676.500000px;}
.x26_c00103{left:678.000000px;}
.x2f_c00103{left:681.000000px;}
.xaa_c00103{left:682.500000px;}
.xda_c00103{left:683.580000px;}
.xbe_c00103{left:687.000000px;}
.xe7_c00103{left:688.920000px;}
.xb8_c00103{left:691.500000px;}
.x9e_c00103{left:694.080000px;}
.xe4_c00103{left:697.920000px;}
.x101_c00103{left:700.500000px;}
.x30_c00103{left:703.500000px;}
.xbf_c00103{left:704.580000px;}
.x86_c00103{left:707.580000px;}
.x12_c00103{left:709.920000px;}
.x40_c00103{left:714.000000px;}
.x1d_c00103{left:717.000000px;}
@media print{
.v0_c00103{vertical-align:0.000000pt;}
.v1_c00103{vertical-align:6.826667pt;}
.ls1_c00103{letter-spacing:0.000000pt;}
.ls0_c00103{letter-spacing:10.504533pt;}
.ws2_c00103{word-spacing:0.000000pt;}
.ws1_c00103{word-spacing:0.273822pt;}
.ws0_c00103{word-spacing:3.060459pt;}
._0_c00103{width:16.033155pt;}
.fs2_c00103{font-size:3.040000pt;}
.fs8_c00103{font-size:12.106667pt;}
.fs0_c00103{font-size:16.640000pt;}
.fs7_c00103{font-size:18.133333pt;}
.fs3_c00103{font-size:22.666667pt;}
.fs1_c00103{font-size:25.706667pt;}
.fs5_c00103{font-size:28.746667pt;}
.fs4_c00103{font-size:31.733333pt;}
.fs6_c00103{font-size:34.773333pt;}
.y0_c00103{bottom:0.000000pt;}
.yef_c00103{bottom:223.026667pt;}
.yee_c00103{bottom:227.026667pt;}
.yec_c00103{bottom:243.773333pt;}
.ye9_c00103{bottom:244.360000pt;}
.yed_c00103{bottom:244.560000pt;}
.yea_c00103{bottom:245.306667pt;}
.yeb_c00103{bottom:245.693333pt;}
.ye4_c00103{bottom:259.773333pt;}
.ye6_c00103{bottom:260.360000pt;}
.ye2_c00103{bottom:260.733333pt;}
.ye8_c00103{bottom:261.106667pt;}
.ye1_c00103{bottom:261.693333pt;}
.ye7_c00103{bottom:261.893333pt;}
.ye5_c00103{bottom:262.640000pt;}
.ye3_c00103{bottom:263.026667pt;}
.ydd_c00103{bottom:278.440000pt;}
.ydc_c00103{bottom:279.026667pt;}
.ye0_c00103{bottom:279.226667pt;}
.yde_c00103{bottom:279.973333pt;}
.ydf_c00103{bottom:280.360000pt;}
.ydb_c00103{bottom:295.773333pt;}
.yda_c00103{bottom:296.560000pt;}
.yd9_c00103{bottom:297.693333pt;}
.yd7_c00103{bottom:312.360000pt;}
.yd6_c00103{bottom:313.106667pt;}
.yd5_c00103{bottom:315.026667pt;}
.yd8_c00103{bottom:315.226667pt;}
.yd0_c00103{bottom:330.440000pt;}
.yd1_c00103{bottom:331.400000pt;}
.yd2_c00103{bottom:331.973333pt;}
.yd3_c00103{bottom:332.360000pt;}
.yd4_c00103{bottom:333.693333pt;}
.ycd_c00103{bottom:347.773333pt;}
.ycc_c00103{bottom:349.693333pt;}
.yce_c00103{bottom:350.640000pt;}
.ycf_c00103{bottom:351.026667pt;}
.yca_c00103{bottom:366.440000pt;}
.yc8_c00103{bottom:367.026667pt;}
.yc9_c00103{bottom:367.400000pt;}
.ycb_c00103{bottom:368.360000pt;}
.yc7_c00103{bottom:383.773333pt;}
.yc3_c00103{bottom:384.560000pt;}
.yc5_c00103{bottom:384.733333pt;}
.yc4_c00103{bottom:385.693333pt;}
.yc6_c00103{bottom:386.640000pt;}
.yc2_c00103{bottom:399.026667pt;}
.yc1_c00103{bottom:402.066667pt;}
.yc0_c00103{bottom:402.640000pt;}
.ybe_c00103{bottom:403.026667pt;}
.ybf_c00103{bottom:403.973333pt;}
.ybc_c00103{bottom:417.693333pt;}
.yb9_c00103{bottom:418.440000pt;}
.ybb_c00103{bottom:420.360000pt;}
.ybd_c00103{bottom:420.560000pt;}
.yba_c00103{bottom:421.306667pt;}
.yb3_c00103{bottom:435.773333pt;}
.yb6_c00103{bottom:436.733333pt;}
.yb4_c00103{bottom:437.693333pt;}
.yb5_c00103{bottom:437.893333pt;}
.yb7_c00103{bottom:438.640000pt;}
.yb8_c00103{bottom:439.026667pt;}
.yb2_c00103{bottom:453.106667pt;}
.yb1_c00103{bottom:453.306667pt;}
.yb0_c00103{bottom:453.693333pt;}
.yac_c00103{bottom:455.026667pt;}
.yaf_c00103{bottom:455.226667pt;}
.yae_c00103{bottom:455.973333pt;}
.yad_c00103{bottom:456.360000pt;}
.ya7_c00103{bottom:469.693333pt;}
.ya8_c00103{bottom:471.400000pt;}
.ya9_c00103{bottom:471.773333pt;}
.ya5_c00103{bottom:472.360000pt;}
.yaa_c00103{bottom:472.560000pt;}
.ya6_c00103{bottom:472.733333pt;}
.yab_c00103{bottom:473.306667pt;}
.ya3_c00103{bottom:487.026667pt;}
.ya2_c00103{bottom:488.360000pt;}
.ya0_c00103{bottom:489.106667pt;}
.ya1_c00103{bottom:489.893333pt;}
.ya4_c00103{bottom:490.640000pt;}
.y9f_c00103{bottom:491.026667pt;}
.y9d_c00103{bottom:506.440000pt;}
.y9e_c00103{bottom:507.400000pt;}
.y9c_c00103{bottom:508.360000pt;}
.y99_c00103{bottom:523.773333pt;}
.y9b_c00103{bottom:524.560000pt;}
.y96_c00103{bottom:524.733333pt;}
.y9a_c00103{bottom:525.306667pt;}
.y98_c00103{bottom:525.693333pt;}
.y97_c00103{bottom:526.640000pt;}
.y93_c00103{bottom:540.360000pt;}
.y91_c00103{bottom:541.106667pt;}
.y94_c00103{bottom:541.893333pt;}
.y95_c00103{bottom:542.066667pt;}
.y92_c00103{bottom:543.026667pt;}
.y8e_c00103{bottom:558.440000pt;}
.y90_c00103{bottom:559.400000pt;}
.y8f_c00103{bottom:560.360000pt;}
.y8d_c00103{bottom:561.306667pt;}
.y8c_c00103{bottom:576.733333pt;}
.y89_c00103{bottom:577.106667pt;}
.y88_c00103{bottom:577.693333pt;}
.y8b_c00103{bottom:578.066667pt;}
.y8a_c00103{bottom:579.026667pt;}
.y85_c00103{bottom:592.360000pt;}
.y87_c00103{bottom:594.440000pt;}
.y86_c00103{bottom:595.973333pt;}
.y84_c00103{bottom:596.360000pt;}
.y7f_c00103{bottom:609.693333pt;}
.y83_c00103{bottom:611.400000pt;}
.y81_c00103{bottom:611.600000pt;}
.y7d_c00103{bottom:611.773333pt;}
.y7c_c00103{bottom:612.360000pt;}
.y80_c00103{bottom:612.560000pt;}
.y82_c00103{bottom:612.733333pt;}
.y7e_c00103{bottom:613.693333pt;}
.y7a_c00103{bottom:627.973333pt;}
.y78_c00103{bottom:628.360000pt;}
.y75_c00103{bottom:629.106667pt;}
.y7b_c00103{bottom:629.893333pt;}
.y79_c00103{bottom:630.640000pt;}
.y77_c00103{bottom:631.026667pt;}
.y76_c00103{bottom:631.040000pt;}
.y74_c00103{bottom:650.640000pt;}
.y73_c00103{bottom:651.400000pt;}
.y72_c00103{bottom:652.360000pt;}
.y71_c00103{bottom:652.560000pt;}
.y70_c00103{bottom:654.266667pt;}
.y69_c00103{bottom:664.360000pt;}
.y6f_c00103{bottom:664.733333pt;}
.y6e_c00103{bottom:664.933333pt;}
.y6a_c00103{bottom:665.693333pt;}
.y6c_c00103{bottom:665.893333pt;}
.y6b_c00103{bottom:666.640000pt;}
.y6d_c00103{bottom:667.600000pt;}
.y68_c00103{bottom:677.306667pt;}
.y67_c00103{bottom:678.066667pt;}
.y66_c00103{bottom:678.840000pt;}
.y64_c00103{bottom:679.026667pt;}
.y63_c00103{bottom:679.600000pt;}
.y65_c00103{bottom:679.973333pt;}
.y5d_c00103{bottom:690.640000pt;}
.y61_c00103{bottom:691.400000pt;}
.y60_c00103{bottom:691.600000pt;}
.y5e_c00103{bottom:692.360000pt;}
.y5f_c00103{bottom:693.306667pt;}
.y62_c00103{bottom:694.266667pt;}
.y5b_c00103{bottom:704.360000pt;}
.y5c_c00103{bottom:706.266667pt;}
.y5a_c00103{bottom:716.733333pt;}
.y54_c00103{bottom:716.933333pt;}
.y55_c00103{bottom:717.693333pt;}
.y56_c00103{bottom:717.893333pt;}
.y57_c00103{bottom:718.640000pt;}
.y59_c00103{bottom:718.840000pt;}
.y58_c00103{bottom:719.600000pt;}
.y53_c00103{bottom:730.066667pt;}
.y4f_c00103{bottom:731.026667pt;}
.y52_c00103{bottom:731.973333pt;}
.y50_c00103{bottom:732.173333pt;}
.y51_c00103{bottom:732.933333pt;}
.y4a_c00103{bottom:742.640000pt;}
.y4b_c00103{bottom:744.360000pt;}
.y4d_c00103{bottom:744.933333pt;}
.y4e_c00103{bottom:745.306667pt;}
.y4c_c00103{bottom:746.266667pt;}
.y48_c00103{bottom:756.360000pt;}
.y47_c00103{bottom:756.733333pt;}
.y44_c00103{bottom:757.693333pt;}
.y46_c00103{bottom:758.640000pt;}
.y45_c00103{bottom:758.840000pt;}
.y49_c00103{bottom:759.600000pt;}
.y3f_c00103{bottom:770.066667pt;}
.y43_c00103{bottom:771.026667pt;}
.y3d_c00103{bottom:771.226667pt;}
.y42_c00103{bottom:771.600000pt;}
.y41_c00103{bottom:771.973333pt;}
.y40_c00103{bottom:772.173333pt;}
.y3e_c00103{bottom:772.933333pt;}
.y3c_c00103{bottom:782.066667pt;}
.y38_c00103{bottom:783.026667pt;}
.y3a_c00103{bottom:783.600000pt;}
.y3b_c00103{bottom:783.973333pt;}
.y37_c00103{bottom:784.560000pt;}
.y39_c00103{bottom:784.933333pt;}
.y32_c00103{bottom:803.026667pt;}
.y36_c00103{bottom:803.773333pt;}
.y31_c00103{bottom:803.973333pt;}
.y34_c00103{bottom:804.933333pt;}
.y33_c00103{bottom:805.693333pt;}
.y35_c00103{bottom:806.640000pt;}
.y30_c00103{bottom:821.893333pt;}
.y2f_c00103{bottom:822.066667pt;}
.y2e_c00103{bottom:822.440000pt;}
.y2c_c00103{bottom:823.026667pt;}
.y2d_c00103{bottom:823.226667pt;}
.y2b_c00103{bottom:824.360000pt;}
.y2a_c00103{bottom:838.440000pt;}
.y29_c00103{bottom:840.360000pt;}
.y24_c00103{bottom:855.773333pt;}
.y25_c00103{bottom:856.733333pt;}
.y22_c00103{bottom:857.106667pt;}
.y28_c00103{bottom:857.693333pt;}
.y27_c00103{bottom:857.893333pt;}
.y26_c00103{bottom:858.640000pt;}
.y23_c00103{bottom:859.026667pt;}
.y1f_c00103{bottom:873.493333pt;}
.y1e_c00103{bottom:874.440000pt;}
.y20_c00103{bottom:875.026667pt;}
.y21_c00103{bottom:875.226667pt;}
.y1c_c00103{bottom:875.400000pt;}
.y1d_c00103{bottom:876.360000pt;}
.y19_c00103{bottom:890.440000pt;}
.y17_c00103{bottom:891.026667pt;}
.y18_c00103{bottom:891.400000pt;}
.y16_c00103{bottom:891.773333pt;}
.y15_c00103{bottom:892.360000pt;}
.y1b_c00103{bottom:892.560000pt;}
.y1a_c00103{bottom:893.693333pt;}
.y14_c00103{bottom:907.773333pt;}
.y10_c00103{bottom:909.106667pt;}
.y12_c00103{bottom:909.893333pt;}
.yf_c00103{bottom:910.066667pt;}
.y13_c00103{bottom:910.640000pt;}
.y11_c00103{bottom:911.026667pt;}
.yd_c00103{bottom:925.106667pt;}
.yc_c00103{bottom:926.066667pt;}
.y9_c00103{bottom:926.440000pt;}
.ye_c00103{bottom:927.026667pt;}
.ya_c00103{bottom:927.226667pt;}
.y8_c00103{bottom:928.360000pt;}
.yb_c00103{bottom:929.306667pt;}
.y7_c00103{bottom:943.773333pt;}
.y5_c00103{bottom:944.560000pt;}
.y6_c00103{bottom:945.306667pt;}
.y3_c00103{bottom:945.693333pt;}
.y4_c00103{bottom:945.706667pt;}
.y2_c00103{bottom:977.693333pt;}
.y1_c00103{bottom:980.560000pt;}
.h3_c00103{height:3.739141pt;}
.h9_c00103{height:14.890964pt;}
.h1_c00103{height:20.466875pt;}
.h8_c00103{height:22.303646pt;}
.h4_c00103{height:27.879557pt;}
.h2_c00103{height:31.618698pt;}
.ha_c00103{height:34.706224pt;}
.h6_c00103{height:35.357839pt;}
.h5_c00103{height:39.031380pt;}
.h7_c00103{height:42.770521pt;}
.h0_c00103{height:1186.666667pt;}
.w0_c00103{width:782.666667pt;}
.x0_c00103{left:0.000000pt;}
.xf6_c00103{left:133.333333pt;}
.xab_c00103{left:134.293333pt;}
.x2_c00103{left:135.626667pt;}
.x66_c00103{left:148.000000pt;}
.xa1_c00103{left:148.960000pt;}
.x3_c00103{left:150.293333pt;}
.x53_c00103{left:151.626667pt;}
.xf0_c00103{left:153.706667pt;}
.xd5_c00103{left:158.666667pt;}
.xca_c00103{left:160.000000pt;}
.xb9_c00103{left:162.666667pt;}
.x5b_c00103{left:164.000000pt;}
.x9f_c00103{left:166.666667pt;}
.x54_c00103{left:167.626667pt;}
.x13_c00103{left:170.293333pt;}
.xc5_c00103{left:172.000000pt;}
.x87_c00103{left:173.333333pt;}
.x41_c00103{left:174.293333pt;}
.xe8_c00103{left:175.626667pt;}
.x55_c00103{left:178.293333pt;}
.x4a_c00103{left:179.626667pt;}
.x94_c00103{left:180.960000pt;}
.x107_c00103{left:183.626667pt;}
.x7a_c00103{left:185.333333pt;}
.x71_c00103{left:186.666667pt;}
.x27_c00103{left:188.960000pt;}
.xde_c00103{left:190.293333pt;}
.x102_c00103{left:191.626667pt;}
.x7e_c00103{left:193.333333pt;}
.x72_c00103{left:196.000000pt;}
.x95_c00103{left:197.333333pt;}
.x67_c00103{left:199.626667pt;}
.x1e_c00103{left:201.706667pt;}
.x3a_c00103{left:204.000000pt;}
.x56_c00103{left:204.960000pt;}
.xcb_c00103{left:208.000000pt;}
.xfb_c00103{left:213.706667pt;}
.xd6_c00103{left:216.373333pt;}
.x14_c00103{left:218.666667pt;}
.x57_c00103{left:221.333333pt;}
.x7f_c00103{left:222.666667pt;}
.x88_c00103{left:224.000000pt;}
.x4_c00103{left:225.333333pt;}
.x73_c00103{left:226.293333pt;}
.xa2_c00103{left:228.000000pt;}
.x96_c00103{left:230.666667pt;}
.xdf_c00103{left:232.000000pt;}
.x42_c00103{left:233.333333pt;}
.x89_c00103{left:234.666667pt;}
.x7b_c00103{left:236.000000pt;}
.x5c_c00103{left:237.333333pt;}
.xd7_c00103{left:239.040000pt;}
.x4b_c00103{left:241.333333pt;}
.x5_c00103{left:242.293333pt;}
.xf2_c00103{left:243.626667pt;}
.xa3_c00103{left:246.293333pt;}
.x80_c00103{left:249.333333pt;}
.xed_c00103{left:251.040000pt;}
.x15_c00103{left:252.373333pt;}
.x74_c00103{left:253.706667pt;}
.x1f_c00103{left:255.040000pt;}
.xf3_c00103{left:256.373333pt;}
.x31_c00103{left:258.093333pt;}
.xd0_c00103{left:259.040000pt;}
.xba_c00103{left:260.373333pt;}
.x7c_c00103{left:261.706667pt;}
.xfe_c00103{left:262.666667pt;}
.x28_c00103{left:264.373333pt;}
.xc0_c00103{left:265.333333pt;}
.x4c_c00103{left:269.333333pt;}
.x68_c00103{left:272.000000pt;}
.xc6_c00103{left:274.293333pt;}
.xc1_c00103{left:276.000000pt;}
.x81_c00103{left:277.333333pt;}
.x20_c00103{left:278.293333pt;}
.xac_c00103{left:280.000000pt;}
.xd1_c00103{left:284.373333pt;}
.xbb_c00103{left:287.040000pt;}
.x58_c00103{left:288.000000pt;}
.x5d_c00103{left:289.333333pt;}
.x75_c00103{left:290.666667pt;}
.x76_c00103{left:291.626667pt;}
.x69_c00103{left:294.666667pt;}
.x43_c00103{left:295.626667pt;}
.xe0_c00103{left:297.333333pt;}
.x59_c00103{left:298.666667pt;}
.x82_c00103{left:300.000000pt;}
.x8f_c00103{left:301.333333pt;}
.x29_c00103{left:303.040000pt;}
.xb2_c00103{left:305.333333pt;}
.x6_c00103{left:306.666667pt;}
.xad_c00103{left:309.706667pt;}
.xf7_c00103{left:310.666667pt;}
.x32_c00103{left:311.626667pt;}
.xf4_c00103{left:314.666667pt;}
.xc7_c00103{left:316.000000pt;}
.x16_c00103{left:317.333333pt;}
.x4d_c00103{left:319.626667pt;}
.xf1_c00103{left:321.706667pt;}
.x97_c00103{left:322.666667pt;}
.x7_c00103{left:325.333333pt;}
.xc2_c00103{left:326.666667pt;}
.xf5_c00103{left:329.333333pt;}
.x3b_c00103{left:331.626667pt;}
.x103_c00103{left:333.333333pt;}
.x77_c00103{left:336.000000pt;}
.x5e_c00103{left:336.960000pt;}
.x8a_c00103{left:339.040000pt;}
.xb5_c00103{left:340.000000pt;}
.xb3_c00103{left:341.333333pt;}
.x44_c00103{left:342.666667pt;}
.x90_c00103{left:344.000000pt;}
.x98_c00103{left:345.706667pt;}
.x8_c00103{left:347.040000pt;}
.xc3_c00103{left:348.373333pt;}
.x7d_c00103{left:349.333333pt;}
.xbc_c00103{left:351.040000pt;}
.x83_c00103{left:353.333333pt;}
.xf8_c00103{left:354.293333pt;}
.x33_c00103{left:355.800000pt;}
.x1_c00103{left:357.333333pt;}
.x6a_c00103{left:358.666667pt;}
.x21_c00103{left:360.000000pt;}
.x4e_c00103{left:361.333333pt;}
.xa4_c00103{left:364.373333pt;}
.x2a_c00103{left:366.466667pt;}
.x78_c00103{left:368.373333pt;}
.x9_c00103{left:370.666667pt;}
.xae_c00103{left:372.760000pt;}
.x45_c00103{left:374.293333pt;}
.xd8_c00103{left:376.000000pt;}
.xbd_c00103{left:377.333333pt;}
.xe9_c00103{left:378.666667pt;}
.xee_c00103{left:382.666667pt;}
.x5f_c00103{left:385.706667pt;}
.xa_c00103{left:388.000000pt;}
.x17_c00103{left:389.706667pt;}
.x91_c00103{left:390.666667pt;}
.x8b_c00103{left:392.960000pt;}
.x34_c00103{left:394.293333pt;}
.x60_c00103{left:396.000000pt;}
.x108_c00103{left:398.293333pt;}
.x99_c00103{left:400.000000pt;}
.xb6_c00103{left:401.333333pt;}
.xb_c00103{left:402.293333pt;}
.x2b_c00103{left:403.626667pt;}
.xea_c00103{left:404.960000pt;}
.xfc_c00103{left:406.666667pt;}
.xd2_c00103{left:408.000000pt;}
.x4f_c00103{left:409.333333pt;}
.xcc_c00103{left:412.373333pt;}
.xdb_c00103{left:413.333333pt;}
.xa5_c00103{left:416.373333pt;}
.x18_c00103{left:417.333333pt;}
.x22_c00103{left:418.666667pt;}
.xf9_c00103{left:420.000000pt;}
.xe1_c00103{left:422.666667pt;}
.x35_c00103{left:424.000000pt;}
.xe5_c00103{left:425.333333pt;}
.xa0_c00103{left:428.373333pt;}
.xff_c00103{left:429.333333pt;}
.x6b_c00103{left:431.040000pt;}
.x46_c00103{left:433.706667pt;}
.x104_c00103{left:436.000000pt;}
.x109_c00103{left:438.666667pt;}
.xe2_c00103{left:440.000000pt;}
.x61_c00103{left:441.333333pt;}
.xd3_c00103{left:444.373333pt;}
.xc4_c00103{left:445.333333pt;}
.x10a_c00103{left:446.293333pt;}
.x6c_c00103{left:448.960000pt;}
.xc_c00103{left:450.666667pt;}
.x105_c00103{left:451.626667pt;}
.x3c_c00103{left:453.333333pt;}
.x23_c00103{left:454.293333pt;}
.xb4_c00103{left:456.373333pt;}
.x9a_c00103{left:458.666667pt;}
.x47_c00103{left:460.000000pt;}
.xeb_c00103{left:460.960000pt;}
.x50_c00103{left:464.000000pt;}
.x92_c00103{left:466.666667pt;}
.xd_c00103{left:468.000000pt;}
.x62_c00103{left:468.960000pt;}
.xdc_c00103{left:471.040000pt;}
.x6d_c00103{left:472.000000pt;}
.x2c_c00103{left:474.466667pt;}
.xd4_c00103{left:475.626667pt;}
.xec_c00103{left:477.333333pt;}
.x51_c00103{left:479.040000pt;}
.x36_c00103{left:484.960000pt;}
.xa6_c00103{left:486.666667pt;}
.x106_c00103{left:488.000000pt;}
.x19_c00103{left:488.960000pt;}
.xe3_c00103{left:490.293333pt;}
.xe_c00103{left:491.240000pt;}
.xcd_c00103{left:492.373333pt;}
.x3d_c00103{left:496.000000pt;}
.xd9_c00103{left:498.666667pt;}
.x6e_c00103{left:502.293333pt;}
.xa7_c00103{left:505.333333pt;}
.xc8_c00103{left:506.293333pt;}
.x48_c00103{left:508.373333pt;}
.x1a_c00103{left:509.706667pt;}
.xaf_c00103{left:510.666667pt;}
.x9b_c00103{left:513.333333pt;}
.xb7_c00103{left:516.373333pt;}
.x6f_c00103{left:517.906667pt;}
.x3e_c00103{left:520.000000pt;}
.x24_c00103{left:521.333333pt;}
.xfa_c00103{left:522.666667pt;}
.x79_c00103{left:524.373333pt;}
.xce_c00103{left:526.293333pt;}
.x37_c00103{left:528.373333pt;}
.x84_c00103{left:530.293333pt;}
.x93_c00103{left:535.040000pt;}
.x1b_c00103{left:537.333333pt;}
.x8c_c00103{left:538.666667pt;}
.xa8_c00103{left:540.000000pt;}
.x5a_c00103{left:541.333333pt;}
.x63_c00103{left:542.666667pt;}
.xf_c00103{left:543.626667pt;}
.x52_c00103{left:546.293333pt;}
.xb0_c00103{left:552.000000pt;}
.x2d_c00103{left:553.333333pt;}
.xcf_c00103{left:555.040000pt;}
.x3f_c00103{left:556.000000pt;}
.xc9_c00103{left:558.666667pt;}
.x9c_c00103{left:559.626667pt;}
.xe6_c00103{left:561.333333pt;}
.xdd_c00103{left:562.666667pt;}
.x38_c00103{left:565.333333pt;}
.x25_c00103{left:566.293333pt;}
.xa9_c00103{left:568.373333pt;}
.x8d_c00103{left:569.706667pt;}
.xfd_c00103{left:570.666667pt;}
.x64_c00103{left:574.293333pt;}
.x10b_c00103{left:576.000000pt;}
.xef_c00103{left:577.706667pt;}
.x85_c00103{left:578.666667pt;}
.x100_c00103{left:580.373333pt;}
.x10_c00103{left:585.333333pt;}
.xb1_c00103{left:586.666667pt;}
.x2e_c00103{left:588.000000pt;}
.x1c_c00103{left:589.333333pt;}
.x70_c00103{left:592.000000pt;}
.x8e_c00103{left:593.333333pt;}
.x9d_c00103{left:594.666667pt;}
.x49_c00103{left:596.000000pt;}
.x65_c00103{left:597.333333pt;}
.x39_c00103{left:598.666667pt;}
.x11_c00103{left:601.333333pt;}
.x26_c00103{left:602.666667pt;}
.x2f_c00103{left:605.333333pt;}
.xaa_c00103{left:606.666667pt;}
.xda_c00103{left:607.626667pt;}
.xbe_c00103{left:610.666667pt;}
.xe7_c00103{left:612.373333pt;}
.xb8_c00103{left:614.666667pt;}
.x9e_c00103{left:616.960000pt;}
.xe4_c00103{left:620.373333pt;}
.x101_c00103{left:622.666667pt;}
.x30_c00103{left:625.333333pt;}
.xbf_c00103{left:626.293333pt;}
.x86_c00103{left:628.960000pt;}
.x12_c00103{left:631.040000pt;}
.x40_c00103{left:634.666667pt;}
.x1d_c00103{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_94f2f5f7343955bf82afef8a.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:1.688965;font-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_c00104{transform:matrix(0.022275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022275,0.000000,0.000000,0.250000,0,0);}
.m5_c00104{transform:matrix(0.026105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026105,0.000000,0.000000,0.250000,0,0);}
.m4_c00104{transform:matrix(0.029436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029436,0.000000,0.000000,0.250000,0,0);}
.ma_c00104{transform:matrix(0.060034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060034,0.000000,0.000000,0.250000,0,0);}
.m9_c00104{transform:matrix(0.061949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061949,0.000000,0.000000,0.250000,0,0);}
.m8_c00104{transform:matrix(0.066358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066358,0.000000,0.000000,0.250000,0,0);}
.m7_c00104{transform:matrix(0.137968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137968,0.000000,0.000000,0.250000,0,0);}
.m2_c00104{transform:matrix(0.153868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153868,0.000000,0.000000,0.250000,0,0);}
.m3_c00104{transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175210,0.000000,0.000000,0.250000,0,0);}
.m0_c00104{transform:matrix(0.482353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482353,0.000000,0.000000,0.250000,0,0);}
.m1_c00104{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,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;}
.fs0_c00104{font-size:25.500000px;}
.fs1_c00104{font-size:28.920000px;}
.fs3_c00104{font-size:35.700000px;}
.fs2_c00104{font-size:52.740000px;}
.fs7_c00104{font-size:56.100000px;}
.fs8_c00104{font-size:68.040000px;}
.fsa_c00104{font-size:71.460000px;}
.fs9_c00104{font-size:74.820000px;}
.fs4_c00104{font-size:110.580000px;}
.fs5_c00104{font-size:127.560000px;}
.fs6_c00104{font-size:132.660000px;}
.y0_c00104{bottom:0.000000px;}
.y3_c00104{bottom:485.955000px;}
.y4_c00104{bottom:514.245000px;}
.y5_c00104{bottom:546.750000px;}
.y6_c00104{bottom:600.960000px;}
.y7_c00104{bottom:660.300000px;}
.y8_c00104{bottom:714.375000px;}
.y9_c00104{bottom:745.650000px;}
.ya_c00104{bottom:779.505000px;}
.yb_c00104{bottom:818.085000px;}
.y2_c00104{bottom:1096.905000px;}
.y1_c00104{bottom:1105.470000px;}
.h1_c00104{height:31.364502px;}
.h2_c00104{height:35.571035px;}
.h4_c00104{height:43.910303px;}
.h3_c00104{height:64.869170px;}
.h8_c00104{height:69.001904px;}
.h9_c00104{height:83.687871px;}
.hb_c00104{height:87.894404px;}
.ha_c00104{height:92.027139px;}
.h5_c00104{height:136.011240px;}
.h6_c00104{height:156.896309px;}
.h7_c00104{height:163.169209px;}
.h0_c00104{height:1335.000000px;}
.w0_c00104{width:880.500000px;}
.x0_c00104{left:0.000000px;}
.x1_c00104{left:402.000000px;}
.x3_c00104{left:636.645000px;}
.x5_c00104{left:639.000000px;}
.x6_c00104{left:640.500000px;}
.x4_c00104{left:641.775000px;}
.x7_c00104{left:643.080000px;}
.x8_c00104{left:649.695000px;}
.x2_c00104{left:715.080000px;}
@media print{
.v0_c00104{vertical-align:0.000000pt;}
.ls0_c00104{letter-spacing:0.000000pt;}
.ws0_c00104{word-spacing:0.000000pt;}
.fs0_c00104{font-size:22.666667pt;}
.fs1_c00104{font-size:25.706667pt;}
.fs3_c00104{font-size:31.733333pt;}
.fs2_c00104{font-size:46.880000pt;}
.fs7_c00104{font-size:49.866667pt;}
.fs8_c00104{font-size:60.480000pt;}
.fsa_c00104{font-size:63.520000pt;}
.fs9_c00104{font-size:66.506667pt;}
.fs4_c00104{font-size:98.293333pt;}
.fs5_c00104{font-size:113.386667pt;}
.fs6_c00104{font-size:117.920000pt;}
.y0_c00104{bottom:0.000000pt;}
.y3_c00104{bottom:431.960000pt;}
.y4_c00104{bottom:457.106667pt;}
.y5_c00104{bottom:486.000000pt;}
.y6_c00104{bottom:534.186667pt;}
.y7_c00104{bottom:586.933333pt;}
.y8_c00104{bottom:635.000000pt;}
.y9_c00104{bottom:662.800000pt;}
.ya_c00104{bottom:692.893333pt;}
.yb_c00104{bottom:727.186667pt;}
.y2_c00104{bottom:975.026667pt;}
.y1_c00104{bottom:982.640000pt;}
.h1_c00104{height:27.879557pt;}
.h2_c00104{height:31.618698pt;}
.h4_c00104{height:39.031380pt;}
.h3_c00104{height:57.661484pt;}
.h8_c00104{height:61.335026pt;}
.h9_c00104{height:74.389219pt;}
.hb_c00104{height:78.128359pt;}
.ha_c00104{height:81.801901pt;}
.h5_c00104{height:120.898880pt;}
.h6_c00104{height:139.463385pt;}
.h7_c00104{height:145.039297pt;}
.h0_c00104{height:1186.666667pt;}
.w0_c00104{width:782.666667pt;}
.x0_c00104{left:0.000000pt;}
.x1_c00104{left:357.333333pt;}
.x3_c00104{left:565.906667pt;}
.x5_c00104{left:568.000000pt;}
.x6_c00104{left:569.333333pt;}
.x4_c00104{left:570.466667pt;}
.x7_c00104{left:571.626667pt;}
.x8_c00104{left:577.506667pt;}
.x2_c00104{left:635.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_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_4b9bb7d6c76e1623baeed509.woff2')format("woff");}.ff1_c00105{font-family:ff1_c00105;line-height:1.688965;font-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_c00105{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m82_c00105{transform:matrix(0.305066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305066,0.000000,0.000000,0.250000,0,0);}
.mbe_c00105{transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);}
.m36_c00105{transform:matrix(0.343558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343558,0.000000,0.000000,0.250000,0,0);}
.mf_c00105{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m5b_c00105{transform:matrix(0.363880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363880,0.000000,0.000000,0.250000,0,0);}
.m0_c00105{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m12_c00105{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m52_c00105{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m7_c00105{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m6f_c00105{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m8e_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);}
.m64_c00105{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m39_c00105{transform:matrix(0.377301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377301,0.000000,0.000000,0.250000,0,0);}
.m57_c00105{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m2f_c00105{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m2e_c00105{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m54_c00105{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m72_c00105{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m5_c00105{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m56_c00105{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m73_c00105{transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);}
.m66_c00105{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m27_c00105{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m42_c00105{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m91_c00105{transform:matrix(0.403676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403676,0.000000,0.000000,0.250000,0,0);}
.m34_c00105{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m30_c00105{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m53_c00105{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m7f_c00105{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m49_c00105{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m4e_c00105{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m5a_c00105{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.mc_c00105{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mb2_c00105{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.m47_c00105{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m77_c00105{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m1a_c00105{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m37_c00105{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m1c_c00105{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.md_c00105{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m7a_c00105{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m31_c00105{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m33_c00105{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m5e_c00105{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m3d_c00105{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m93_c00105{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m8c_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);}
.m55_c00105{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m79_c00105{transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);}
.m3c_c00105{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m80_c00105{transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);}
.m51_c00105{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m6_c00105{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m4d_c00105{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m5f_c00105{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.mbc_c00105{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.ma1_c00105{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.mb9_c00105{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.ma3_c00105{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.m4f_c00105{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m78_c00105{transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);}
.mac_c00105{transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);}
.m3f_c00105{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.m44_c00105{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m46_c00105{transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);}
.maa_c00105{transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);}
.m1d_c00105{transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);}
.m9c_c00105{transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);}
.m65_c00105{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m38_c00105{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.ma2_c00105{transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);}
.m1f_c00105{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m4b_c00105{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m61_c00105{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m8b_c00105{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m8_c00105{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m94_c00105{transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);}
.m13_c00105{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m1b_c00105{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m7e_c00105{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m15_c00105{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mbf_c00105{transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);}
.mab_c00105{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.m14_c00105{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_c00105{transform:matrix(0.505609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505609,0.000000,0.000000,0.250000,0,0);}
.m6b_c00105{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m25_c00105{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m6e_c00105{transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);}
.m4c_c00105{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mb_c00105{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mbb_c00105{transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);}
.m2_c00105{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mad_c00105{transform:matrix(0.521635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521635,0.000000,0.000000,0.250000,0,0);}
.m48_c00105{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m32_c00105{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m20_c00105{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m35_c00105{transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);}
.m9_c00105{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mb5_c00105{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m76_c00105{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.m75_c00105{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m29_c00105{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m10_c00105{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m50_c00105{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m3b_c00105{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m18_c00105{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m21_c00105{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.mb8_c00105{transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);}
.m28_c00105{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m40_c00105{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m4a_c00105{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m3a_c00105{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m95_c00105{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m2a_c00105{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mb0_c00105{transform:matrix(0.552083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552083,0.000000,0.000000,0.250000,0,0);}
.m60_c00105{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m43_c00105{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m11_c00105{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m16_c00105{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m62_c00105{transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);}
.m23_c00105{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m89_c00105{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m17_c00105{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.ma_c00105{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m71_c00105{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m4_c00105{transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);}
.me_c00105{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m3e_c00105{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m67_c00105{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m90_c00105{transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);}
.m92_c00105{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m59_c00105{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m19_c00105{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m5d_c00105{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.ma8_c00105{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.m41_c00105{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m2c_c00105{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m1_c00105{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m69_c00105{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m9b_c00105{transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);}
.m7c_c00105{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m58_c00105{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m7b_c00105{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.mb3_c00105{transform:matrix(0.614583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614583,0.000000,0.000000,0.250000,0,0);}
.m24_c00105{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m83_c00105{transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);}
.m6d_c00105{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.ma9_c00105{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m2b_c00105{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.mbd_c00105{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.m99_c00105{transform:matrix(0.649780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649780,0.000000,0.000000,0.250000,0,0);}
.m88_c00105{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m7d_c00105{transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);}
.m8d_c00105{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m22_c00105{transform:matrix(0.666807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666807,0.000000,0.000000,0.250000,0,0);}
.m74_c00105{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m6c_c00105{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m86_c00105{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.ma7_c00105{transform:matrix(0.680617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680617,0.000000,0.000000,0.250000,0,0);}
.m87_c00105{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m98_c00105{transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);}
.mb6_c00105{transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);}
.m6a_c00105{transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);}
.mb1_c00105{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.m81_c00105{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m96_c00105{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m63_c00105{transform:matrix(0.690441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690441,0.000000,0.000000,0.250000,0,0);}
.m45_c00105{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m9e_c00105{transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);}
.m85_c00105{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.mba_c00105{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m8a_c00105{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m70_c00105{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);}
.m9d_c00105{transform:matrix(0.720264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720264,0.000000,0.000000,0.250000,0,0);}
.m8f_c00105{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m9f_c00105{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.m97_c00105{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.m84_c00105{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m26_c00105{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.ma4_c00105{transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);}
.m68_c00105{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m5c_c00105{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mae_c00105{transform:matrix(0.767677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.767677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.767677,0.000000,0.000000,0.250000,0,0);}
.m1e_c00105{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.maf_c00105{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.mb4_c00105{transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);}
.ma5_c00105{transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);}
.ma6_c00105{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m9a_c00105{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.mb7_c00105{transform:matrix(2.758850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.758850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.758850,0.000000,0.000000,0.250000,0,0);}
.m3_c00105{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00105{vertical-align:-6.000000px;}
.v0_c00105{vertical-align:0.000000px;}
.v2_c00105{vertical-align:6.000000px;}
.ls2_c00105{letter-spacing:0.000000px;}
.ls0_c00105{letter-spacing:44.811895px;}
.ls1_c00105{letter-spacing:53.542665px;}
.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;}
}
.ws4_c00105{word-spacing:-52.765975px;}
.ws1d_c00105{word-spacing:0.000000px;}
.ws0_c00105{word-spacing:0.239023px;}
.ws10_c00105{word-spacing:2.994684px;}
.ws2_c00105{word-spacing:9.334391px;}
.ws11_c00105{word-spacing:11.661937px;}
.ws3_c00105{word-spacing:12.973687px;}
.ws12_c00105{word-spacing:13.611988px;}
.ws6_c00105{word-spacing:15.107856px;}
.ws14_c00105{word-spacing:17.262919px;}
.ws19_c00105{word-spacing:18.138913px;}
.ws1a_c00105{word-spacing:19.417982px;}
.ws8_c00105{word-spacing:19.620812px;}
.ws13_c00105{word-spacing:23.728109px;}
.ws15_c00105{word-spacing:24.638400px;}
.ws7_c00105{word-spacing:25.883172px;}
.ws16_c00105{word-spacing:27.001094px;}
.wsa_c00105{word-spacing:29.549219px;}
.ws17_c00105{word-spacing:30.234255px;}
.ws1b_c00105{word-spacing:30.607622px;}
.ws9_c00105{word-spacing:31.838295px;}
.ws1c_c00105{word-spacing:33.467416px;}
.wsb_c00105{word-spacing:38.324009px;}
.wsf_c00105{word-spacing:38.705522px;}
.ws1_c00105{word-spacing:39.846793px;}
.ws18_c00105{word-spacing:39.933737px;}
.wsd_c00105{word-spacing:40.994598px;}
.ws5_c00105{word-spacing:43.405892px;}
.wsc_c00105{word-spacing:50.536594px;}
.wse_c00105{word-spacing:60.250880px;}
._1_c00105{margin-left:-44.811895px;}
._a_c00105{width:25.216999px;}
._0_c00105{width:28.276688px;}
._b_c00105{width:31.721093px;}
._9_c00105{width:32.932627px;}
._7_c00105{width:41.166735px;}
._2_c00105{width:42.629203px;}
._3_c00105{width:44.811895px;}
._5_c00105{width:46.659602px;}
._8_c00105{width:50.866217px;}
._6_c00105{width:54.099377px;}
._4_c00105{width:56.960442px;}
.fc0_c00105{color:transparent;}
.fs3_c00105{font-size:3.420000px;}
.fsa_c00105{font-size:6.780000px;}
.fs9_c00105{font-size:11.880000px;}
.fs8_c00105{font-size:13.620000px;}
.fs6_c00105{font-size:18.720000px;}
.fs1_c00105{font-size:20.400000px;}
.fs4_c00105{font-size:25.500000px;}
.fs2_c00105{font-size:28.920000px;}
.fs5_c00105{font-size:32.340000px;}
.fs0_c00105{font-size:35.700000px;}
.fs7_c00105{font-size:39.120000px;}
.y0_c00105{bottom:0.000000px;}
.y43_c00105{bottom:251.745000px;}
.y42_c00105{bottom:253.050000px;}
.y44_c00105{bottom:253.245000px;}
.y41_c00105{bottom:253.905000px;}
.y46_c00105{bottom:254.130000px;}
.y45_c00105{bottom:255.405000px;}
.y3b_c00105{bottom:271.680000px;}
.y3c_c00105{bottom:272.745000px;}
.y3a_c00105{bottom:273.405000px;}
.y3d_c00105{bottom:273.630000px;}
.y3f_c00105{bottom:273.825000px;}
.y39_c00105{bottom:274.470000px;}
.y3e_c00105{bottom:274.905000px;}
.y40_c00105{bottom:275.130000px;}
.y37_c00105{bottom:289.905000px;}
.y36_c00105{bottom:290.745000px;}
.y35_c00105{bottom:291.825000px;}
.y38_c00105{bottom:292.245000px;}
.y32_c00105{bottom:311.745000px;}
.y30_c00105{bottom:312.405000px;}
.y33_c00105{bottom:312.825000px;}
.y34_c00105{bottom:313.245000px;}
.y31_c00105{bottom:313.905000px;}
.y2c_c00105{bottom:330.825000px;}
.y2f_c00105{bottom:331.245000px;}
.y2b_c00105{bottom:332.130000px;}
.y2d_c00105{bottom:332.745000px;}
.y2a_c00105{bottom:333.405000px;}
.y2e_c00105{bottom:334.905000px;}
.y25_c00105{bottom:350.745000px;}
.y24_c00105{bottom:352.050000px;}
.y28_c00105{bottom:352.245000px;}
.y26_c00105{bottom:352.905000px;}
.y29_c00105{bottom:353.325000px;}
.y27_c00105{bottom:354.405000px;}
.y1f_c00105{bottom:370.245000px;}
.y20_c00105{bottom:370.680000px;}
.y1e_c00105{bottom:371.130000px;}
.y23_c00105{bottom:371.745000px;}
.y22_c00105{bottom:372.630000px;}
.y21_c00105{bottom:373.905000px;}
.y19_c00105{bottom:389.745000px;}
.y1d_c00105{bottom:390.180000px;}
.y1c_c00105{bottom:391.245000px;}
.y1b_c00105{bottom:392.130000px;}
.y1a_c00105{bottom:393.405000px;}
.y15_c00105{bottom:410.745000px;}
.y17_c00105{bottom:410.970000px;}
.y13_c00105{bottom:411.405000px;}
.y14_c00105{bottom:411.630000px;}
.y16_c00105{bottom:412.905000px;}
.y18_c00105{bottom:413.970000px;}
.yf_c00105{bottom:430.245000px;}
.ye_c00105{bottom:430.905000px;}
.y10_c00105{bottom:431.325000px;}
.y12_c00105{bottom:432.405000px;}
.y11_c00105{bottom:432.630000px;}
.yd_c00105{bottom:449.745000px;}
.yc_c00105{bottom:451.245000px;}
.yb_c00105{bottom:451.905000px;}
.ya_c00105{bottom:469.245000px;}
.y9_c00105{bottom:471.405000px;}
.y7_c00105{bottom:489.405000px;}
.y6_c00105{bottom:490.245000px;}
.y3_c00105{bottom:490.905000px;}
.y8_c00105{bottom:492.405000px;}
.y4_c00105{bottom:492.420000px;}
.y5_c00105{bottom:493.470000px;}
.yd4_c00105{bottom:515.130000px;}
.yd7_c00105{bottom:516.195000px;}
.yd6_c00105{bottom:516.630000px;}
.yd5_c00105{bottom:517.695000px;}
.yd2_c00105{bottom:527.550000px;}
.yd3_c00105{bottom:528.630000px;}
.ycf_c00105{bottom:530.130000px;}
.yd0_c00105{bottom:530.775000px;}
.yce_c00105{bottom:531.195000px;}
.yd1_c00105{bottom:532.920000px;}
.ycd_c00105{bottom:542.130000px;}
.yc7_c00105{bottom:543.195000px;}
.yc8_c00105{bottom:543.630000px;}
.ycb_c00105{bottom:544.275000px;}
.ycc_c00105{bottom:544.695000px;}
.yc9_c00105{bottom:545.775000px;}
.yca_c00105{bottom:546.420000px;}
.yc6_c00105{bottom:557.130000px;}
.yc5_c00105{bottom:558.195000px;}
.yc4_c00105{bottom:558.630000px;}
.yc3_c00105{bottom:572.130000px;}
.yc2_c00105{bottom:572.775000px;}
.yc1_c00105{bottom:573.195000px;}
.yc0_c00105{bottom:584.130000px;}
.ybe_c00105{bottom:585.195000px;}
.ybc_c00105{bottom:585.630000px;}
.ybd_c00105{bottom:585.855000px;}
.ybb_c00105{bottom:586.275000px;}
.yba_c00105{bottom:586.695000px;}
.ybf_c00105{bottom:586.920000px;}
.yb9_c00105{bottom:598.695000px;}
.yb8_c00105{bottom:599.130000px;}
.yb7_c00105{bottom:600.195000px;}
.yb6_c00105{bottom:600.630000px;}
.yb2_c00105{bottom:612.630000px;}
.yb5_c00105{bottom:613.695000px;}
.yb3_c00105{bottom:613.920000px;}
.yb1_c00105{bottom:615.195000px;}
.yb4_c00105{bottom:615.420000px;}
.yb0_c00105{bottom:625.695000px;}
.yaf_c00105{bottom:626.130000px;}
.yae_c00105{bottom:627.195000px;}
.yac_c00105{bottom:627.630000px;}
.yad_c00105{bottom:628.275000px;}
.yab_c00105{bottom:640.695000px;}
.ya8_c00105{bottom:641.130000px;}
.ya9_c00105{bottom:641.775000px;}
.yaa_c00105{bottom:642.195000px;}
.ya5_c00105{bottom:653.550000px;}
.ya7_c00105{bottom:654.630000px;}
.ya6_c00105{bottom:655.695000px;}
.ya4_c00105{bottom:666.630000px;}
.ya2_c00105{bottom:669.195000px;}
.ya3_c00105{bottom:669.630000px;}
.ya1_c00105{bottom:681.195000px;}
.ya0_c00105{bottom:681.630000px;}
.y9f_c00105{bottom:682.695000px;}
.y9e_c00105{bottom:683.130000px;}
.y9c_c00105{bottom:695.130000px;}
.y9d_c00105{bottom:696.195000px;}
.y9b_c00105{bottom:708.630000px;}
.y9a_c00105{bottom:709.695000px;}
.y99_c00105{bottom:710.130000px;}
.y98_c00105{bottom:711.195000px;}
.y97_c00105{bottom:723.195000px;}
.y94_c00105{bottom:723.630000px;}
.y95_c00105{bottom:724.275000px;}
.y96_c00105{bottom:724.695000px;}
.y93_c00105{bottom:736.695000px;}
.y91_c00105{bottom:737.130000px;}
.y92_c00105{bottom:738.195000px;}
.y8f_c00105{bottom:749.130000px;}
.y90_c00105{bottom:750.195000px;}
.y8c_c00105{bottom:750.630000px;}
.y8d_c00105{bottom:751.695000px;}
.y8e_c00105{bottom:751.920000px;}
.y8b_c00105{bottom:766.695000px;}
.y89_c00105{bottom:777.630000px;}
.y88_c00105{bottom:778.695000px;}
.y87_c00105{bottom:780.195000px;}
.y8a_c00105{bottom:780.420000px;}
.y86_c00105{bottom:791.130000px;}
.y85_c00105{bottom:792.195000px;}
.y84_c00105{bottom:792.630000px;}
.y83_c00105{bottom:793.695000px;}
.y82_c00105{bottom:806.130000px;}
.y81_c00105{bottom:807.195000px;}
.y80_c00105{bottom:808.695000px;}
.y7a_c00105{bottom:819.630000px;}
.y7b_c00105{bottom:820.275000px;}
.y7c_c00105{bottom:820.695000px;}
.y7f_c00105{bottom:820.920000px;}
.y7d_c00105{bottom:822.195000px;}
.y7e_c00105{bottom:822.420000px;}
.y79_c00105{bottom:834.195000px;}
.y78_c00105{bottom:834.630000px;}
.y77_c00105{bottom:835.695000px;}
.y76_c00105{bottom:847.695000px;}
.y75_c00105{bottom:848.130000px;}
.y74_c00105{bottom:849.195000px;}
.y73_c00105{bottom:860.130000px;}
.y70_c00105{bottom:860.550000px;}
.y71_c00105{bottom:861.195000px;}
.y6f_c00105{bottom:861.630000px;}
.y72_c00105{bottom:862.695000px;}
.y6e_c00105{bottom:874.695000px;}
.y6d_c00105{bottom:875.130000px;}
.y6c_c00105{bottom:876.195000px;}
.y6a_c00105{bottom:888.630000px;}
.y6b_c00105{bottom:889.050000px;}
.y68_c00105{bottom:889.695000px;}
.y69_c00105{bottom:890.130000px;}
.y67_c00105{bottom:902.130000px;}
.y64_c00105{bottom:902.550000px;}
.y66_c00105{bottom:903.195000px;}
.y65_c00105{bottom:903.630000px;}
.y63_c00105{bottom:904.695000px;}
.y62_c00105{bottom:915.630000px;}
.y61_c00105{bottom:916.695000px;}
.y60_c00105{bottom:917.130000px;}
.y5f_c00105{bottom:918.195000px;}
.y5e_c00105{bottom:930.195000px;}
.y5d_c00105{bottom:930.630000px;}
.y5c_c00105{bottom:931.695000px;}
.y5b_c00105{bottom:943.695000px;}
.y5a_c00105{bottom:944.130000px;}
.y59_c00105{bottom:945.195000px;}
.y58_c00105{bottom:957.195000px;}
.y57_c00105{bottom:958.695000px;}
.y55_c00105{bottom:976.695000px;}
.y56_c00105{bottom:978.195000px;}
.y51_c00105{bottom:989.130000px;}
.y53_c00105{bottom:990.195000px;}
.y54_c00105{bottom:990.630000px;}
.y52_c00105{bottom:991.695000px;}
.y50_c00105{bottom:1003.695000px;}
.y4f_c00105{bottom:1024.470000px;}
.y4e_c00105{bottom:1025.550000px;}
.y4b_c00105{bottom:1037.325000px;}
.y4d_c00105{bottom:1038.825000px;}
.y4a_c00105{bottom:1039.470000px;}
.y49_c00105{bottom:1040.550000px;}
.y4c_c00105{bottom:1040.970000px;}
.y48_c00105{bottom:1061.550000px;}
.y47_c00105{bottom:1064.550000px;}
.y1_c00105{bottom:1097.745000px;}
.y2_c00105{bottom:1099.050000px;}
.h4_c00105{height:4.206533px;}
.hd_c00105{height:8.339268px;}
.hb_c00105{height:14.612168px;}
.h9_c00105{height:16.752334px;}
.ha_c00105{height:22.752334px;}
.h7_c00105{height:23.025234px;}
.h2_c00105{height:25.091602px;}
.hc_c00105{height:29.025234px;}
.h5_c00105{height:31.364502px;}
.h3_c00105{height:35.571035px;}
.h6_c00105{height:39.777568px;}
.h1_c00105{height:43.910303px;}
.h8_c00105{height:48.116836px;}
.h0_c00105{height:1335.000000px;}
.w0_c00105{width:880.500000px;}
.x0_c00105{left:0.000000px;}
.x51_c00105{left:149.580000px;}
.x1_c00105{left:151.500000px;}
.x9d_c00105{left:156.000000px;}
.x7d_c00105{left:157.500000px;}
.x3_c00105{left:165.645000px;}
.xf_c00105{left:169.920000px;}
.xa0_c00105{left:171.420000px;}
.x2a_c00105{left:172.500000px;}
.x20_c00105{left:178.080000px;}
.x83_c00105{left:179.580000px;}
.x52_c00105{left:181.920000px;}
.xa6_c00105{left:183.000000px;}
.x8b_c00105{left:184.920000px;}
.x2b_c00105{left:189.000000px;}
.x41_c00105{left:190.080000px;}
.x10_c00105{left:196.500000px;}
.x11_c00105{left:198.420000px;}
.xa5_c00105{left:201.000000px;}
.x6c_c00105{left:202.500000px;}
.x9e_c00105{left:205.500000px;}
.xa2_c00105{left:207.000000px;}
.x76_c00105{left:208.080000px;}
.x99_c00105{left:211.920000px;}
.x49_c00105{left:214.275000px;}
.xa4_c00105{left:216.000000px;}
.x62_c00105{left:218.580000px;}
.x5b_c00105{left:220.500000px;}
.x8c_c00105{left:223.500000px;}
.x8e_c00105{left:225.000000px;}
.x92_c00105{left:226.500000px;}
.xa7_c00105{left:228.000000px;}
.x36_c00105{left:229.080000px;}
.x12_c00105{left:232.080000px;}
.x21_c00105{left:235.920000px;}
.x4_c00105{left:237.000000px;}
.x8f_c00105{left:242.580000px;}
.xac_c00105{left:246.420000px;}
.x37_c00105{left:247.500000px;}
.x13_c00105{left:252.420000px;}
.x4a_c00105{left:253.500000px;}
.x60_c00105{left:254.580000px;}
.xae_c00105{left:256.500000px;}
.x5_c00105{left:258.000000px;}
.x2c_c00105{left:259.920000px;}
.xa3_c00105{left:261.000000px;}
.xad_c00105{left:264.420000px;}
.x77_c00105{left:268.500000px;}
.x53_c00105{left:270.000000px;}
.x14_c00105{left:277.500000px;}
.x61_c00105{left:279.000000px;}
.x6d_c00105{left:297.000000px;}
.x63_c00105{left:298.500000px;}
.x2d_c00105{left:299.580000px;}
.x38_c00105{left:305.580000px;}
.x42_c00105{left:307.080000px;}
.x6_c00105{left:313.080000px;}
.x22_c00105{left:315.000000px;}
.x54_c00105{left:317.580000px;}
.x9a_c00105{left:319.500000px;}
.x5c_c00105{left:324.000000px;}
.x84_c00105{left:325.500000px;}
.x7e_c00105{left:328.500000px;}
.x15_c00105{left:330.000000px;}
.x96_c00105{left:333.000000px;}
.x88_c00105{left:337.500000px;}
.x43_c00105{left:338.580000px;}
.x4b_c00105{left:348.420000px;}
.x6e_c00105{left:352.500000px;}
.x23_c00105{left:357.000000px;}
.x44_c00105{left:358.500000px;}
.x7_c00105{left:359.580000px;}
.x64_c00105{left:364.500000px;}
.x95_c00105{left:366.000000px;}
.x7f_c00105{left:369.000000px;}
.x45_c00105{left:372.420000px;}
.x24_c00105{left:373.920000px;}
.x2e_c00105{left:375.000000px;}
.x39_c00105{left:376.500000px;}
.x8_c00105{left:385.500000px;}
.x16_c00105{left:388.080000px;}
.x65_c00105{left:391.500000px;}
.x7b_c00105{left:393.000000px;}
.x2_c00105{left:399.000000px;}
.x91_c00105{left:400.500000px;}
.x8d_c00105{left:402.000000px;}
.x17_c00105{left:405.000000px;}
.x55_c00105{left:407.580000px;}
.x9_c00105{left:409.920000px;}
.x74_c00105{left:414.000000px;}
.x78_c00105{left:417.000000px;}
.x7c_c00105{left:427.500000px;}
.x66_c00105{left:429.420000px;}
.x4c_c00105{left:430.500000px;}
.x25_c00105{left:433.500000px;}
.x6f_c00105{left:436.500000px;}
.x97_c00105{left:441.000000px;}
.x80_c00105{left:442.500000px;}
.xa9_c00105{left:445.500000px;}
.x5d_c00105{left:450.000000px;}
.x2f_c00105{left:451.080000px;}
.x18_c00105{left:455.580000px;}
.x67_c00105{left:457.920000px;}
.x75_c00105{left:459.420000px;}
.x9b_c00105{left:468.000000px;}
.x30_c00105{left:472.500000px;}
.x85_c00105{left:474.420000px;}
.xa_c00105{left:477.420000px;}
.x3a_c00105{left:481.080000px;}
.x4d_c00105{left:483.000000px;}
.x70_c00105{left:485.580000px;}
.x19_c00105{left:487.920000px;}
.x79_c00105{left:498.000000px;}
.x3b_c00105{left:499.500000px;}
.x26_c00105{left:500.580000px;}
.xb_c00105{left:502.920000px;}
.x3c_c00105{left:510.000000px;}
.x89_c00105{left:513.000000px;}
.x86_c00105{left:514.500000px;}
.xa1_c00105{left:517.500000px;}
.x31_c00105{left:518.580000px;}
.x1a_c00105{left:521.145000px;}
.x68_c00105{left:525.000000px;}
.x4e_c00105{left:543.000000px;}
.x27_c00105{left:547.920000px;}
.x71_c00105{left:549.000000px;}
.x46_c00105{left:551.145000px;}
.x94_c00105{left:553.500000px;}
.x81_c00105{left:555.000000px;}
.x32_c00105{left:557.580000px;}
.x4f_c00105{left:560.580000px;}
.x33_c00105{left:562.500000px;}
.x1b_c00105{left:564.000000px;}
.x56_c00105{left:566.580000px;}
.xc_c00105{left:569.580000px;}
.x28_c00105{left:582.420000px;}
.x1c_c00105{left:585.000000px;}
.x8a_c00105{left:589.500000px;}
.x93_c00105{left:591.000000px;}
.x50_c00105{left:592.080000px;}
.x9c_c00105{left:594.000000px;}
.x82_c00105{left:595.500000px;}
.x5e_c00105{left:596.580000px;}
.xd_c00105{left:598.500000px;}
.x3d_c00105{left:601.080000px;}
.x3e_c00105{left:604.500000px;}
.x47_c00105{left:607.080000px;}
.x57_c00105{left:611.580000px;}
.x69_c00105{left:615.000000px;}
.x1d_c00105{left:626.580000px;}
.x58_c00105{left:630.420000px;}
.x72_c00105{left:632.145000px;}
.x9f_c00105{left:634.500000px;}
.x34_c00105{left:640.500000px;}
.x1e_c00105{left:645.000000px;}
.x48_c00105{left:646.500000px;}
.x59_c00105{left:655.500000px;}
.xaa_c00105{left:661.080000px;}
.x6a_c00105{left:663.000000px;}
.x7a_c00105{left:665.580000px;}
.xab_c00105{left:667.920000px;}
.xa8_c00105{left:670.500000px;}
.x29_c00105{left:672.000000px;}
.x73_c00105{left:673.500000px;}
.xe_c00105{left:675.000000px;}
.x35_c00105{left:676.500000px;}
.x3f_c00105{left:684.000000px;}
.x1f_c00105{left:691.920000px;}
.x6b_c00105{left:700.920000px;}
.x87_c00105{left:703.500000px;}
.x5a_c00105{left:706.500000px;}
.x90_c00105{left:708.000000px;}
.x5f_c00105{left:709.080000px;}
.x98_c00105{left:711.000000px;}
.x40_c00105{left:716.580000px;}
@media print{
.v1_c00105{vertical-align:-5.333333pt;}
.v0_c00105{vertical-align:0.000000pt;}
.v2_c00105{vertical-align:5.333333pt;}
.ls2_c00105{letter-spacing:0.000000pt;}
.ls0_c00105{letter-spacing:39.832796pt;}
.ls1_c00105{letter-spacing:47.593480pt;}
.ws4_c00105{word-spacing:-46.903089pt;}
.ws1d_c00105{word-spacing:0.000000pt;}
.ws0_c00105{word-spacing:0.212465pt;}
.ws10_c00105{word-spacing:2.661941pt;}
.ws2_c00105{word-spacing:8.297237pt;}
.ws11_c00105{word-spacing:10.366166pt;}
.ws3_c00105{word-spacing:11.532166pt;}
.ws12_c00105{word-spacing:12.099545pt;}
.ws6_c00105{word-spacing:13.429205pt;}
.ws14_c00105{word-spacing:15.344817pt;}
.ws19_c00105{word-spacing:16.123479pt;}
.ws1a_c00105{word-spacing:17.260429pt;}
.ws8_c00105{word-spacing:17.440722pt;}
.ws13_c00105{word-spacing:21.091652pt;}
.ws15_c00105{word-spacing:21.900800pt;}
.ws7_c00105{word-spacing:23.007264pt;}
.ws16_c00105{word-spacing:24.000973pt;}
.wsa_c00105{word-spacing:26.265973pt;}
.ws17_c00105{word-spacing:26.874893pt;}
.ws1b_c00105{word-spacing:27.206775pt;}
.ws9_c00105{word-spacing:28.300707pt;}
.ws1c_c00105{word-spacing:29.748814pt;}
.wsb_c00105{word-spacing:34.065786pt;}
.wsf_c00105{word-spacing:34.404908pt;}
.ws1_c00105{word-spacing:35.419372pt;}
.ws18_c00105{word-spacing:35.496655pt;}
.wsd_c00105{word-spacing:36.439642pt;}
.ws5_c00105{word-spacing:38.583015pt;}
.wsc_c00105{word-spacing:44.921417pt;}
.wse_c00105{word-spacing:53.556338pt;}
._1_c00105{margin-left:-39.832796pt;}
._a_c00105{width:22.415110pt;}
._0_c00105{width:25.134834pt;}
._b_c00105{width:28.196527pt;}
._9_c00105{width:29.273446pt;}
._7_c00105{width:36.592653pt;}
._2_c00105{width:37.892625pt;}
._3_c00105{width:39.832796pt;}
._5_c00105{width:41.475202pt;}
._8_c00105{width:45.214415pt;}
._6_c00105{width:48.088335pt;}
._4_c00105{width:50.631504pt;}
.fs3_c00105{font-size:3.040000pt;}
.fsa_c00105{font-size:6.026667pt;}
.fs9_c00105{font-size:10.560000pt;}
.fs8_c00105{font-size:12.106667pt;}
.fs6_c00105{font-size:16.640000pt;}
.fs1_c00105{font-size:18.133333pt;}
.fs4_c00105{font-size:22.666667pt;}
.fs2_c00105{font-size:25.706667pt;}
.fs5_c00105{font-size:28.746667pt;}
.fs0_c00105{font-size:31.733333pt;}
.fs7_c00105{font-size:34.773333pt;}
.y0_c00105{bottom:0.000000pt;}
.y43_c00105{bottom:223.773333pt;}
.y42_c00105{bottom:224.933333pt;}
.y44_c00105{bottom:225.106667pt;}
.y41_c00105{bottom:225.693333pt;}
.y46_c00105{bottom:225.893333pt;}
.y45_c00105{bottom:227.026667pt;}
.y3b_c00105{bottom:241.493333pt;}
.y3c_c00105{bottom:242.440000pt;}
.y3a_c00105{bottom:243.026667pt;}
.y3d_c00105{bottom:243.226667pt;}
.y3f_c00105{bottom:243.400000pt;}
.y39_c00105{bottom:243.973333pt;}
.y3e_c00105{bottom:244.360000pt;}
.y40_c00105{bottom:244.560000pt;}
.y37_c00105{bottom:257.693333pt;}
.y36_c00105{bottom:258.440000pt;}
.y35_c00105{bottom:259.400000pt;}
.y38_c00105{bottom:259.773333pt;}
.y32_c00105{bottom:277.106667pt;}
.y30_c00105{bottom:277.693333pt;}
.y33_c00105{bottom:278.066667pt;}
.y34_c00105{bottom:278.440000pt;}
.y31_c00105{bottom:279.026667pt;}
.y2c_c00105{bottom:294.066667pt;}
.y2f_c00105{bottom:294.440000pt;}
.y2b_c00105{bottom:295.226667pt;}
.y2d_c00105{bottom:295.773333pt;}
.y2a_c00105{bottom:296.360000pt;}
.y2e_c00105{bottom:297.693333pt;}
.y25_c00105{bottom:311.773333pt;}
.y24_c00105{bottom:312.933333pt;}
.y28_c00105{bottom:313.106667pt;}
.y26_c00105{bottom:313.693333pt;}
.y29_c00105{bottom:314.066667pt;}
.y27_c00105{bottom:315.026667pt;}
.y1f_c00105{bottom:329.106667pt;}
.y20_c00105{bottom:329.493333pt;}
.y1e_c00105{bottom:329.893333pt;}
.y23_c00105{bottom:330.440000pt;}
.y22_c00105{bottom:331.226667pt;}
.y21_c00105{bottom:332.360000pt;}
.y19_c00105{bottom:346.440000pt;}
.y1d_c00105{bottom:346.826667pt;}
.y1c_c00105{bottom:347.773333pt;}
.y1b_c00105{bottom:348.560000pt;}
.y1a_c00105{bottom:349.693333pt;}
.y15_c00105{bottom:365.106667pt;}
.y17_c00105{bottom:365.306667pt;}
.y13_c00105{bottom:365.693333pt;}
.y14_c00105{bottom:365.893333pt;}
.y16_c00105{bottom:367.026667pt;}
.y18_c00105{bottom:367.973333pt;}
.yf_c00105{bottom:382.440000pt;}
.ye_c00105{bottom:383.026667pt;}
.y10_c00105{bottom:383.400000pt;}
.y12_c00105{bottom:384.360000pt;}
.y11_c00105{bottom:384.560000pt;}
.yd_c00105{bottom:399.773333pt;}
.yc_c00105{bottom:401.106667pt;}
.yb_c00105{bottom:401.693333pt;}
.ya_c00105{bottom:417.106667pt;}
.y9_c00105{bottom:419.026667pt;}
.y7_c00105{bottom:435.026667pt;}
.y6_c00105{bottom:435.773333pt;}
.y3_c00105{bottom:436.360000pt;}
.y8_c00105{bottom:437.693333pt;}
.y4_c00105{bottom:437.706667pt;}
.y5_c00105{bottom:438.640000pt;}
.yd4_c00105{bottom:457.893333pt;}
.yd7_c00105{bottom:458.840000pt;}
.yd6_c00105{bottom:459.226667pt;}
.yd5_c00105{bottom:460.173333pt;}
.yd2_c00105{bottom:468.933333pt;}
.yd3_c00105{bottom:469.893333pt;}
.ycf_c00105{bottom:471.226667pt;}
.yd0_c00105{bottom:471.800000pt;}
.yce_c00105{bottom:472.173333pt;}
.yd1_c00105{bottom:473.706667pt;}
.ycd_c00105{bottom:481.893333pt;}
.yc7_c00105{bottom:482.840000pt;}
.yc8_c00105{bottom:483.226667pt;}
.ycb_c00105{bottom:483.800000pt;}
.ycc_c00105{bottom:484.173333pt;}
.yc9_c00105{bottom:485.133333pt;}
.yca_c00105{bottom:485.706667pt;}
.yc6_c00105{bottom:495.226667pt;}
.yc5_c00105{bottom:496.173333pt;}
.yc4_c00105{bottom:496.560000pt;}
.yc3_c00105{bottom:508.560000pt;}
.yc2_c00105{bottom:509.133333pt;}
.yc1_c00105{bottom:509.506667pt;}
.yc0_c00105{bottom:519.226667pt;}
.ybe_c00105{bottom:520.173333pt;}
.ybc_c00105{bottom:520.560000pt;}
.ybd_c00105{bottom:520.760000pt;}
.ybb_c00105{bottom:521.133333pt;}
.yba_c00105{bottom:521.506667pt;}
.ybf_c00105{bottom:521.706667pt;}
.yb9_c00105{bottom:532.173333pt;}
.yb8_c00105{bottom:532.560000pt;}
.yb7_c00105{bottom:533.506667pt;}
.yb6_c00105{bottom:533.893333pt;}
.yb2_c00105{bottom:544.560000pt;}
.yb5_c00105{bottom:545.506667pt;}
.yb3_c00105{bottom:545.706667pt;}
.yb1_c00105{bottom:546.840000pt;}
.yb4_c00105{bottom:547.040000pt;}
.yb0_c00105{bottom:556.173333pt;}
.yaf_c00105{bottom:556.560000pt;}
.yae_c00105{bottom:557.506667pt;}
.yac_c00105{bottom:557.893333pt;}
.yad_c00105{bottom:558.466667pt;}
.yab_c00105{bottom:569.506667pt;}
.ya8_c00105{bottom:569.893333pt;}
.ya9_c00105{bottom:570.466667pt;}
.yaa_c00105{bottom:570.840000pt;}
.ya5_c00105{bottom:580.933333pt;}
.ya7_c00105{bottom:581.893333pt;}
.ya6_c00105{bottom:582.840000pt;}
.ya4_c00105{bottom:592.560000pt;}
.ya2_c00105{bottom:594.840000pt;}
.ya3_c00105{bottom:595.226667pt;}
.ya1_c00105{bottom:605.506667pt;}
.ya0_c00105{bottom:605.893333pt;}
.y9f_c00105{bottom:606.840000pt;}
.y9e_c00105{bottom:607.226667pt;}
.y9c_c00105{bottom:617.893333pt;}
.y9d_c00105{bottom:618.840000pt;}
.y9b_c00105{bottom:629.893333pt;}
.y9a_c00105{bottom:630.840000pt;}
.y99_c00105{bottom:631.226667pt;}
.y98_c00105{bottom:632.173333pt;}
.y97_c00105{bottom:642.840000pt;}
.y94_c00105{bottom:643.226667pt;}
.y95_c00105{bottom:643.800000pt;}
.y96_c00105{bottom:644.173333pt;}
.y93_c00105{bottom:654.840000pt;}
.y91_c00105{bottom:655.226667pt;}
.y92_c00105{bottom:656.173333pt;}
.y8f_c00105{bottom:665.893333pt;}
.y90_c00105{bottom:666.840000pt;}
.y8c_c00105{bottom:667.226667pt;}
.y8d_c00105{bottom:668.173333pt;}
.y8e_c00105{bottom:668.373333pt;}
.y8b_c00105{bottom:681.506667pt;}
.y89_c00105{bottom:691.226667pt;}
.y88_c00105{bottom:692.173333pt;}
.y87_c00105{bottom:693.506667pt;}
.y8a_c00105{bottom:693.706667pt;}
.y86_c00105{bottom:703.226667pt;}
.y85_c00105{bottom:704.173333pt;}
.y84_c00105{bottom:704.560000pt;}
.y83_c00105{bottom:705.506667pt;}
.y82_c00105{bottom:716.560000pt;}
.y81_c00105{bottom:717.506667pt;}
.y80_c00105{bottom:718.840000pt;}
.y7a_c00105{bottom:728.560000pt;}
.y7b_c00105{bottom:729.133333pt;}
.y7c_c00105{bottom:729.506667pt;}
.y7f_c00105{bottom:729.706667pt;}
.y7d_c00105{bottom:730.840000pt;}
.y7e_c00105{bottom:731.040000pt;}
.y79_c00105{bottom:741.506667pt;}
.y78_c00105{bottom:741.893333pt;}
.y77_c00105{bottom:742.840000pt;}
.y76_c00105{bottom:753.506667pt;}
.y75_c00105{bottom:753.893333pt;}
.y74_c00105{bottom:754.840000pt;}
.y73_c00105{bottom:764.560000pt;}
.y70_c00105{bottom:764.933333pt;}
.y71_c00105{bottom:765.506667pt;}
.y6f_c00105{bottom:765.893333pt;}
.y72_c00105{bottom:766.840000pt;}
.y6e_c00105{bottom:777.506667pt;}
.y6d_c00105{bottom:777.893333pt;}
.y6c_c00105{bottom:778.840000pt;}
.y6a_c00105{bottom:789.893333pt;}
.y6b_c00105{bottom:790.266667pt;}
.y68_c00105{bottom:790.840000pt;}
.y69_c00105{bottom:791.226667pt;}
.y67_c00105{bottom:801.893333pt;}
.y64_c00105{bottom:802.266667pt;}
.y66_c00105{bottom:802.840000pt;}
.y65_c00105{bottom:803.226667pt;}
.y63_c00105{bottom:804.173333pt;}
.y62_c00105{bottom:813.893333pt;}
.y61_c00105{bottom:814.840000pt;}
.y60_c00105{bottom:815.226667pt;}
.y5f_c00105{bottom:816.173333pt;}
.y5e_c00105{bottom:826.840000pt;}
.y5d_c00105{bottom:827.226667pt;}
.y5c_c00105{bottom:828.173333pt;}
.y5b_c00105{bottom:838.840000pt;}
.y5a_c00105{bottom:839.226667pt;}
.y59_c00105{bottom:840.173333pt;}
.y58_c00105{bottom:850.840000pt;}
.y57_c00105{bottom:852.173333pt;}
.y55_c00105{bottom:868.173333pt;}
.y56_c00105{bottom:869.506667pt;}
.y51_c00105{bottom:879.226667pt;}
.y53_c00105{bottom:880.173333pt;}
.y54_c00105{bottom:880.560000pt;}
.y52_c00105{bottom:881.506667pt;}
.y50_c00105{bottom:892.173333pt;}
.y4f_c00105{bottom:910.640000pt;}
.y4e_c00105{bottom:911.600000pt;}
.y4b_c00105{bottom:922.066667pt;}
.y4d_c00105{bottom:923.400000pt;}
.y4a_c00105{bottom:923.973333pt;}
.y49_c00105{bottom:924.933333pt;}
.y4c_c00105{bottom:925.306667pt;}
.y48_c00105{bottom:943.600000pt;}
.y47_c00105{bottom:946.266667pt;}
.y1_c00105{bottom:975.773333pt;}
.y2_c00105{bottom:976.933333pt;}
.h4_c00105{height:3.739141pt;}
.hd_c00105{height:7.412682pt;}
.hb_c00105{height:12.988594pt;}
.h9_c00105{height:14.890964pt;}
.ha_c00105{height:20.224297pt;}
.h7_c00105{height:20.466875pt;}
.h2_c00105{height:22.303646pt;}
.hc_c00105{height:25.800208pt;}
.h5_c00105{height:27.879557pt;}
.h3_c00105{height:31.618698pt;}
.h6_c00105{height:35.357839pt;}
.h1_c00105{height:39.031380pt;}
.h8_c00105{height:42.770521pt;}
.h0_c00105{height:1186.666667pt;}
.w0_c00105{width:782.666667pt;}
.x0_c00105{left:0.000000pt;}
.x51_c00105{left:132.960000pt;}
.x1_c00105{left:134.666667pt;}
.x9d_c00105{left:138.666667pt;}
.x7d_c00105{left:140.000000pt;}
.x3_c00105{left:147.240000pt;}
.xf_c00105{left:151.040000pt;}
.xa0_c00105{left:152.373333pt;}
.x2a_c00105{left:153.333333pt;}
.x20_c00105{left:158.293333pt;}
.x83_c00105{left:159.626667pt;}
.x52_c00105{left:161.706667pt;}
.xa6_c00105{left:162.666667pt;}
.x8b_c00105{left:164.373333pt;}
.x2b_c00105{left:168.000000pt;}
.x41_c00105{left:168.960000pt;}
.x10_c00105{left:174.666667pt;}
.x11_c00105{left:176.373333pt;}
.xa5_c00105{left:178.666667pt;}
.x6c_c00105{left:180.000000pt;}
.x9e_c00105{left:182.666667pt;}
.xa2_c00105{left:184.000000pt;}
.x76_c00105{left:184.960000pt;}
.x99_c00105{left:188.373333pt;}
.x49_c00105{left:190.466667pt;}
.xa4_c00105{left:192.000000pt;}
.x62_c00105{left:194.293333pt;}
.x5b_c00105{left:196.000000pt;}
.x8c_c00105{left:198.666667pt;}
.x8e_c00105{left:200.000000pt;}
.x92_c00105{left:201.333333pt;}
.xa7_c00105{left:202.666667pt;}
.x36_c00105{left:203.626667pt;}
.x12_c00105{left:206.293333pt;}
.x21_c00105{left:209.706667pt;}
.x4_c00105{left:210.666667pt;}
.x8f_c00105{left:215.626667pt;}
.xac_c00105{left:219.040000pt;}
.x37_c00105{left:220.000000pt;}
.x13_c00105{left:224.373333pt;}
.x4a_c00105{left:225.333333pt;}
.x60_c00105{left:226.293333pt;}
.xae_c00105{left:228.000000pt;}
.x5_c00105{left:229.333333pt;}
.x2c_c00105{left:231.040000pt;}
.xa3_c00105{left:232.000000pt;}
.xad_c00105{left:235.040000pt;}
.x77_c00105{left:238.666667pt;}
.x53_c00105{left:240.000000pt;}
.x14_c00105{left:246.666667pt;}
.x61_c00105{left:248.000000pt;}
.x6d_c00105{left:264.000000pt;}
.x63_c00105{left:265.333333pt;}
.x2d_c00105{left:266.293333pt;}
.x38_c00105{left:271.626667pt;}
.x42_c00105{left:272.960000pt;}
.x6_c00105{left:278.293333pt;}
.x22_c00105{left:280.000000pt;}
.x54_c00105{left:282.293333pt;}
.x9a_c00105{left:284.000000pt;}
.x5c_c00105{left:288.000000pt;}
.x84_c00105{left:289.333333pt;}
.x7e_c00105{left:292.000000pt;}
.x15_c00105{left:293.333333pt;}
.x96_c00105{left:296.000000pt;}
.x88_c00105{left:300.000000pt;}
.x43_c00105{left:300.960000pt;}
.x4b_c00105{left:309.706667pt;}
.x6e_c00105{left:313.333333pt;}
.x23_c00105{left:317.333333pt;}
.x44_c00105{left:318.666667pt;}
.x7_c00105{left:319.626667pt;}
.x64_c00105{left:324.000000pt;}
.x95_c00105{left:325.333333pt;}
.x7f_c00105{left:328.000000pt;}
.x45_c00105{left:331.040000pt;}
.x24_c00105{left:332.373333pt;}
.x2e_c00105{left:333.333333pt;}
.x39_c00105{left:334.666667pt;}
.x8_c00105{left:342.666667pt;}
.x16_c00105{left:344.960000pt;}
.x65_c00105{left:348.000000pt;}
.x7b_c00105{left:349.333333pt;}
.x2_c00105{left:354.666667pt;}
.x91_c00105{left:356.000000pt;}
.x8d_c00105{left:357.333333pt;}
.x17_c00105{left:360.000000pt;}
.x55_c00105{left:362.293333pt;}
.x9_c00105{left:364.373333pt;}
.x74_c00105{left:368.000000pt;}
.x78_c00105{left:370.666667pt;}
.x7c_c00105{left:380.000000pt;}
.x66_c00105{left:381.706667pt;}
.x4c_c00105{left:382.666667pt;}
.x25_c00105{left:385.333333pt;}
.x6f_c00105{left:388.000000pt;}
.x97_c00105{left:392.000000pt;}
.x80_c00105{left:393.333333pt;}
.xa9_c00105{left:396.000000pt;}
.x5d_c00105{left:400.000000pt;}
.x2f_c00105{left:400.960000pt;}
.x18_c00105{left:404.960000pt;}
.x67_c00105{left:407.040000pt;}
.x75_c00105{left:408.373333pt;}
.x9b_c00105{left:416.000000pt;}
.x30_c00105{left:420.000000pt;}
.x85_c00105{left:421.706667pt;}
.xa_c00105{left:424.373333pt;}
.x3a_c00105{left:427.626667pt;}
.x4d_c00105{left:429.333333pt;}
.x70_c00105{left:431.626667pt;}
.x19_c00105{left:433.706667pt;}
.x79_c00105{left:442.666667pt;}
.x3b_c00105{left:444.000000pt;}
.x26_c00105{left:444.960000pt;}
.xb_c00105{left:447.040000pt;}
.x3c_c00105{left:453.333333pt;}
.x89_c00105{left:456.000000pt;}
.x86_c00105{left:457.333333pt;}
.xa1_c00105{left:460.000000pt;}
.x31_c00105{left:460.960000pt;}
.x1a_c00105{left:463.240000pt;}
.x68_c00105{left:466.666667pt;}
.x4e_c00105{left:482.666667pt;}
.x27_c00105{left:487.040000pt;}
.x71_c00105{left:488.000000pt;}
.x46_c00105{left:489.906667pt;}
.x94_c00105{left:492.000000pt;}
.x81_c00105{left:493.333333pt;}
.x32_c00105{left:495.626667pt;}
.x4f_c00105{left:498.293333pt;}
.x33_c00105{left:500.000000pt;}
.x1b_c00105{left:501.333333pt;}
.x56_c00105{left:503.626667pt;}
.xc_c00105{left:506.293333pt;}
.x28_c00105{left:517.706667pt;}
.x1c_c00105{left:520.000000pt;}
.x8a_c00105{left:524.000000pt;}
.x93_c00105{left:525.333333pt;}
.x50_c00105{left:526.293333pt;}
.x9c_c00105{left:528.000000pt;}
.x82_c00105{left:529.333333pt;}
.x5e_c00105{left:530.293333pt;}
.xd_c00105{left:532.000000pt;}
.x3d_c00105{left:534.293333pt;}
.x3e_c00105{left:537.333333pt;}
.x47_c00105{left:539.626667pt;}
.x57_c00105{left:543.626667pt;}
.x69_c00105{left:546.666667pt;}
.x1d_c00105{left:556.960000pt;}
.x58_c00105{left:560.373333pt;}
.x72_c00105{left:561.906667pt;}
.x9f_c00105{left:564.000000pt;}
.x34_c00105{left:569.333333pt;}
.x1e_c00105{left:573.333333pt;}
.x48_c00105{left:574.666667pt;}
.x59_c00105{left:582.666667pt;}
.xaa_c00105{left:587.626667pt;}
.x6a_c00105{left:589.333333pt;}
.x7a_c00105{left:591.626667pt;}
.xab_c00105{left:593.706667pt;}
.xa8_c00105{left:596.000000pt;}
.x29_c00105{left:597.333333pt;}
.x73_c00105{left:598.666667pt;}
.xe_c00105{left:600.000000pt;}
.x35_c00105{left:601.333333pt;}
.x3f_c00105{left:608.000000pt;}
.x1f_c00105{left:615.040000pt;}
.x6b_c00105{left:623.040000pt;}
.x87_c00105{left:625.333333pt;}
.x5a_c00105{left:628.000000pt;}
.x90_c00105{left:629.333333pt;}
.x5f_c00105{left:630.293333pt;}
.x98_c00105{left:632.000000pt;}
.x40_c00105{left:636.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_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_643d89d2ac5ff485c73cca49.woff2')format("woff");}.ff1_c00106{font-family:ff1_c00106;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc5_c00106{transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);}
.m9f_c00106{transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);}
.m83_c00106{transform:matrix(0.308403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308403,0.000000,0.000000,0.250000,0,0);}
.m9c_c00106{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m59_c00106{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.mb6_c00106{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m4c_c00106{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m67_c00106{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.ma9_c00106{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m7e_c00106{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m84_c00106{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m5f_c00106{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.mc6_c00106{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m1e_c00106{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m5_c00106{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m26_c00106{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.mb9_c00106{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m6f_c00106{transform:matrix(0.398859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398859,0.000000,0.000000,0.250000,0,0);}
.mb0_c00106{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);}
.m25_c00106{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m66_c00106{transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);}
.m51_c00106{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m8f_c00106{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m72_c00106{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m2c_c00106{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m21_c00106{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m13_c00106{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m11_c00106{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mc9_c00106{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m36_c00106{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.mb5_c00106{transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);}
.m60_c00106{transform:matrix(0.416794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416794,0.000000,0.000000,0.250000,0,0);}
.m92_c00106{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m73_c00106{transform:matrix(0.417227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417227,0.000000,0.000000,0.250000,0,0);}
.m5a_c00106{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.ma4_c00106{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m48_c00106{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m6b_c00106{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m7f_c00106{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m5d_c00106{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mbd_c00106{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m69_c00106{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m87_c00106{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.mb4_c00106{transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);}
.m7a_c00106{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m33_c00106{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m91_c00106{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m15_c00106{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m46_c00106{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.ma8_c00106{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.maf_c00106{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.maa_c00106{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m17_c00106{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.me_c00106{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m45_c00106{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m68_c00106{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.mb7_c00106{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.m65_c00106{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m9e_c00106{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.ma_c00106{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.ma1_c00106{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.m47_c00106{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.ma6_c00106{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m78_c00106{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m3f_c00106{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mc8_c00106{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m44_c00106{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m9b_c00106{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m3e_c00106{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.mc2_c00106{transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);}
.m6e_c00106{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mb1_c00106{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.mc7_c00106{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m96_c00106{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m50_c00106{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m61_c00106{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m16_c00106{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m28_c00106{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m9a_c00106{transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);}
.m2b_c00106{transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);}
.mc_c00106{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m2d_c00106{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.mbf_c00106{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.m76_c00106{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m6_c00106{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m8c_c00106{transform:matrix(0.476345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476345,0.000000,0.000000,0.250000,0,0);}
.mad_c00106{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mcb_c00106{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.m79_c00106{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.mca_c00106{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m4d_c00106{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m93_c00106{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m52_c00106{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m1_c00106{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mba_c00106{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m10_c00106{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m8_c00106{transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);}
.mab_c00106{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m8e_c00106{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m89_c00106{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m63_c00106{transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);}
.mc0_c00106{transform:matrix(0.497407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497407,0.000000,0.000000,0.250000,0,0);}
.m3_c00106{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);}
.ma3_c00106{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m7c_c00106{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mc3_c00106{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m27_c00106{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mc1_c00106{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m4f_c00106{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m81_c00106{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m97_c00106{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m64_c00106{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m20_c00106{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mae_c00106{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.mbe_c00106{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m7_c00106{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m53_c00106{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m1b_c00106{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m95_c00106{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m40_c00106{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m86_c00106{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mb2_c00106{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m55_c00106{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m23_c00106{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m4e_c00106{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m4_c00106{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m2f_c00106{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m37_c00106{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m5c_c00106{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m38_c00106{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m74_c00106{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m30_c00106{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m6c_c00106{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.ma5_c00106{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m9_c00106{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m3a_c00106{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m3b_c00106{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m7d_c00106{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m24_c00106{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.mbc_c00106{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m8d_c00106{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m94_c00106{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m77_c00106{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.ma0_c00106{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m8b_c00106{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m2e_c00106{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m1a_c00106{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mf_c00106{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mb_c00106{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m90_c00106{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m85_c00106{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m1d_c00106{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m42_c00106{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m34_c00106{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.m6a_c00106{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m2a_c00106{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m22_c00106{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m5b_c00106{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m41_c00106{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m2_c00106{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m39_c00106{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.mbb_c00106{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m54_c00106{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m4a_c00106{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m49_c00106{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m82_c00106{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.md_c00106{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m57_c00106{transform:matrix(0.591805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591805,0.000000,0.000000,0.250000,0,0);}
.m99_c00106{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m58_c00106{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.m1f_c00106{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.ma7_c00106{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m9d_c00106{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m80_c00106{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.m98_c00106{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m14_c00106{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.m4b_c00106{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m0_c00106{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.m18_c00106{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mb8_c00106{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.ma2_c00106{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m29_c00106{transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);}
.m32_c00106{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m56_c00106{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m62_c00106{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m8a_c00106{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m1c_c00106{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m3c_c00106{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m75_c00106{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m3d_c00106{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m12_c00106{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m43_c00106{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m71_c00106{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m5e_c00106{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m19_c00106{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m31_c00106{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m88_c00106{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m6d_c00106{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m7b_c00106{transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);}
.m70_c00106{transform:matrix(0.793269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.793269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.793269,0.000000,0.000000,0.250000,0,0);}
.m35_c00106{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mb3_c00106{transform:matrix(0.808088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.808088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.808088,0.000000,0.000000,0.250000,0,0);}
.mac_c00106{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.mc4_c00106{transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);}
.mcc_c00106{transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.004425,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;}
}
.ws2_c00106{word-spacing:0.000000px;}
.ws0_c00106{word-spacing:7.831440px;}
.ws1_c00106{word-spacing:13.624647px;}
.fc0_c00106{color:transparent;}
.fs7_c00106{font-size:3.420000px;}
.fs8_c00106{font-size:6.780000px;}
.fs4_c00106{font-size:18.720000px;}
.fs0_c00106{font-size:20.400000px;}
.fs5_c00106{font-size:25.500000px;}
.fs1_c00106{font-size:28.920000px;}
.fs3_c00106{font-size:32.340000px;}
.fs2_c00106{font-size:35.700000px;}
.fs6_c00106{font-size:39.120000px;}
.y0_c00106{bottom:0.000000px;}
.yaa_c00106{bottom:250.905000px;}
.yae_c00106{bottom:251.355000px;}
.yac_c00106{bottom:251.745000px;}
.ya8_c00106{bottom:253.245000px;}
.yad_c00106{bottom:254.130000px;}
.ya9_c00106{bottom:254.325000px;}
.yab_c00106{bottom:254.970000px;}
.ya7_c00106{bottom:255.405000px;}
.ya5_c00106{bottom:271.470000px;}
.ya6_c00106{bottom:271.905000px;}
.ya4_c00106{bottom:271.920000px;}
.ya3_c00106{bottom:272.745000px;}
.ya2_c00106{bottom:273.630000px;}
.ya1_c00106{bottom:274.905000px;}
.y9d_c00106{bottom:291.405000px;}
.y9c_c00106{bottom:292.245000px;}
.ya0_c00106{bottom:292.470000px;}
.y9e_c00106{bottom:293.745000px;}
.y9f_c00106{bottom:294.405000px;}
.y97_c00106{bottom:310.905000px;}
.y96_c00106{bottom:311.745000px;}
.y95_c00106{bottom:313.050000px;}
.y9a_c00106{bottom:313.470000px;}
.y98_c00106{bottom:313.905000px;}
.y9b_c00106{bottom:314.130000px;}
.y99_c00106{bottom:314.970000px;}
.y93_c00106{bottom:331.245000px;}
.y91_c00106{bottom:332.325000px;}
.y94_c00106{bottom:332.550000px;}
.y8f_c00106{bottom:333.405000px;}
.y92_c00106{bottom:333.630000px;}
.y90_c00106{bottom:334.905000px;}
.y8d_c00106{bottom:349.905000px;}
.y8e_c00106{bottom:350.745000px;}
.y8c_c00106{bottom:352.245000px;}
.y8b_c00106{bottom:354.405000px;}
.y88_c00106{bottom:371.745000px;}
.y8a_c00106{bottom:372.405000px;}
.y89_c00106{bottom:372.630000px;}
.y87_c00106{bottom:372.825000px;}
.y85_c00106{bottom:373.050000px;}
.y86_c00106{bottom:373.905000px;}
.y81_c00106{bottom:401.745000px;}
.y82_c00106{bottom:403.470000px;}
.y83_c00106{bottom:403.905000px;}
.y84_c00106{bottom:404.970000px;}
.y80_c00106{bottom:449.745000px;}
.y7e_c00106{bottom:451.905000px;}
.y7f_c00106{bottom:452.130000px;}
.y7a_c00106{bottom:469.905000px;}
.y7c_c00106{bottom:470.745000px;}
.y79_c00106{bottom:471.405000px;}
.y7b_c00106{bottom:471.630000px;}
.y7d_c00106{bottom:472.470000px;}
.y78_c00106{bottom:472.905000px;}
.y77_c00106{bottom:488.745000px;}
.y76_c00106{bottom:488.970000px;}
.y75_c00106{bottom:489.405000px;}
.y72_c00106{bottom:490.245000px;}
.y74_c00106{bottom:492.405000px;}
.y73_c00106{bottom:493.470000px;}
.y6f_c00106{bottom:509.745000px;}
.y71_c00106{bottom:510.825000px;}
.y70_c00106{bottom:511.905000px;}
.y6e_c00106{bottom:529.245000px;}
.y6c_c00106{bottom:530.970000px;}
.y6d_c00106{bottom:531.405000px;}
.y6b_c00106{bottom:548.745000px;}
.y68_c00106{bottom:549.180000px;}
.y67_c00106{bottom:549.825000px;}
.y6a_c00106{bottom:550.245000px;}
.y66_c00106{bottom:550.905000px;}
.y69_c00106{bottom:552.405000px;}
.y63_c00106{bottom:568.245000px;}
.y64_c00106{bottom:569.325000px;}
.y65_c00106{bottom:569.745000px;}
.y62_c00106{bottom:570.405000px;}
.y60_c00106{bottom:586.905000px;}
.y5d_c00106{bottom:589.245000px;}
.y5e_c00106{bottom:589.905000px;}
.y61_c00106{bottom:590.130000px;}
.y5c_c00106{bottom:590.970000px;}
.y5f_c00106{bottom:591.405000px;}
.y5b_c00106{bottom:608.745000px;}
.y5a_c00106{bottom:609.630000px;}
.y59_c00106{bottom:610.905000px;}
.y57_c00106{bottom:628.245000px;}
.y58_c00106{bottom:630.405000px;}
.y54_c00106{bottom:645.405000px;}
.y56_c00106{bottom:647.745000px;}
.y52_c00106{bottom:648.630000px;}
.y51_c00106{bottom:648.825000px;}
.y55_c00106{bottom:649.470000px;}
.y50_c00106{bottom:649.905000px;}
.y53_c00106{bottom:650.970000px;}
.y4c_c00106{bottom:667.245000px;}
.y4f_c00106{bottom:668.130000px;}
.y4d_c00106{bottom:669.405000px;}
.y4e_c00106{bottom:669.630000px;}
.y4b_c00106{bottom:686.745000px;}
.y4a_c00106{bottom:688.905000px;}
.y49_c00106{bottom:706.245000px;}
.y47_c00106{bottom:725.745000px;}
.y45_c00106{bottom:726.825000px;}
.y46_c00106{bottom:727.905000px;}
.y48_c00106{bottom:728.130000px;}
.y42_c00106{bottom:744.405000px;}
.y43_c00106{bottom:746.745000px;}
.y3f_c00106{bottom:747.405000px;}
.y40_c00106{bottom:747.630000px;}
.y41_c00106{bottom:748.470000px;}
.y44_c00106{bottom:748.905000px;}
.y3d_c00106{bottom:766.245000px;}
.y3e_c00106{bottom:767.130000px;}
.y3c_c00106{bottom:768.405000px;}
.y3b_c00106{bottom:785.745000px;}
.y3a_c00106{bottom:786.825000px;}
.y38_c00106{bottom:787.905000px;}
.y39_c00106{bottom:788.970000px;}
.y35_c00106{bottom:804.180000px;}
.y36_c00106{bottom:804.405000px;}
.y32_c00106{bottom:805.245000px;}
.y37_c00106{bottom:806.550000px;}
.y34_c00106{bottom:807.405000px;}
.y33_c00106{bottom:807.630000px;}
.y31_c00106{bottom:824.745000px;}
.y30_c00106{bottom:826.905000px;}
.y2f_c00106{bottom:856.905000px;}
.y2b_c00106{bottom:902.970000px;}
.y2d_c00106{bottom:904.245000px;}
.y2e_c00106{bottom:905.130000px;}
.y2a_c00106{bottom:905.970000px;}
.y2c_c00106{bottom:906.405000px;}
.y29_c00106{bottom:923.325000px;}
.y26_c00106{bottom:923.745000px;}
.y28_c00106{bottom:925.470000px;}
.y25_c00106{bottom:925.905000px;}
.y27_c00106{bottom:926.970000px;}
.y24_c00106{bottom:943.245000px;}
.y22_c00106{bottom:944.130000px;}
.y23_c00106{bottom:944.325000px;}
.y21_c00106{bottom:945.405000px;}
.y1e_c00106{bottom:962.745000px;}
.y20_c00106{bottom:962.970000px;}
.y1d_c00106{bottom:964.470000px;}
.y1c_c00106{bottom:964.905000px;}
.y1f_c00106{bottom:965.130000px;}
.y19_c00106{bottom:982.245000px;}
.y18_c00106{bottom:983.970000px;}
.y17_c00106{bottom:984.405000px;}
.y1b_c00106{bottom:984.630000px;}
.y1a_c00106{bottom:985.470000px;}
.y16_c00106{bottom:1000.905000px;}
.y13_c00106{bottom:1001.325000px;}
.y11_c00106{bottom:1001.745000px;}
.y15_c00106{bottom:1002.825000px;}
.y10_c00106{bottom:1003.905000px;}
.y12_c00106{bottom:1004.130000px;}
.y14_c00106{bottom:1004.970000px;}
.yf_c00106{bottom:1021.245000px;}
.yd_c00106{bottom:1023.405000px;}
.ye_c00106{bottom:1024.470000px;}
.ya_c00106{bottom:1040.745000px;}
.yc_c00106{bottom:1041.825000px;}
.y9_c00106{bottom:1042.905000px;}
.yb_c00106{bottom:1043.130000px;}
.y8_c00106{bottom:1059.405000px;}
.y7_c00106{bottom:1061.325000px;}
.y5_c00106{bottom:1061.745000px;}
.y3_c00106{bottom:1062.405000px;}
.y6_c00106{bottom:1062.825000px;}
.y4_c00106{bottom:1063.905000px;}
.y2_c00106{bottom:1099.905000px;}
.y1_c00106{bottom:1102.050000px;}
.h8_c00106{height:4.206533px;}
.h9_c00106{height:8.339268px;}
.h5_c00106{height:23.025234px;}
.h1_c00106{height:25.091602px;}
.h6_c00106{height:31.364502px;}
.h2_c00106{height:35.571035px;}
.h4_c00106{height:39.777568px;}
.h3_c00106{height:43.910303px;}
.h7_c00106{height:48.116836px;}
.h0_c00106{height:1335.000000px;}
.w0_c00106{width:880.500000px;}
.x0_c00106{left:0.000000px;}
.x3_c00106{left:151.500000px;}
.xb1_c00106{left:153.000000px;}
.xe4_c00106{left:160.080000px;}
.x6c_c00106{left:168.000000px;}
.x2c_c00106{left:180.000000px;}
.x1d_c00106{left:181.920000px;}
.x10_c00106{left:183.420000px;}
.xdc_c00106{left:184.500000px;}
.x8d_c00106{left:188.580000px;}
.xa6_c00106{left:190.920000px;}
.xb2_c00106{left:192.420000px;}
.x93_c00106{left:195.000000px;}
.x4c_c00106{left:198.420000px;}
.x62_c00106{left:199.500000px;}
.xca_c00106{left:200.580000px;}
.x4_c00106{left:202.080000px;}
.x9b_c00106{left:205.500000px;}
.x6d_c00106{left:208.920000px;}
.x91_c00106{left:211.080000px;}
.xd0_c00106{left:213.420000px;}
.x82_c00106{left:214.500000px;}
.x1e_c00106{left:216.000000px;}
.xcb_c00106{left:217.920000px;}
.xa7_c00106{left:219.420000px;}
.x42_c00106{left:220.500000px;}
.x5_c00106{left:222.420000px;}
.xe5_c00106{left:223.500000px;}
.x3a_c00106{left:224.580000px;}
.x11_c00106{left:226.080000px;}
.xd5_c00106{left:227.580000px;}
.x63_c00106{left:229.500000px;}
.x55_c00106{left:231.000000px;}
.x1f_c00106{left:235.080000px;}
.x6e_c00106{left:237.000000px;}
.x2d_c00106{left:241.080000px;}
.x92_c00106{left:243.420000px;}
.xc0_c00106{left:244.500000px;}
.x64_c00106{left:246.000000px;}
.x94_c00106{left:247.080000px;}
.x6_c00106{left:249.000000px;}
.x7a_c00106{left:250.500000px;}
.xe6_c00106{left:253.500000px;}
.xf2_c00106{left:255.000000px;}
.x20_c00106{left:256.500000px;}
.x12_c00106{left:258.000000px;}
.x74_c00106{left:262.920000px;}
.x95_c00106{left:267.420000px;}
.x4d_c00106{left:268.500000px;}
.x56_c00106{left:271.080000px;}
.xc6_c00106{left:273.420000px;}
.xea_c00106{left:276.420000px;}
.xd1_c00106{left:277.500000px;}
.x7b_c00106{left:279.420000px;}
.x83_c00106{left:280.500000px;}
.xba_c00106{left:282.420000px;}
.xd8_c00106{left:283.500000px;}
.x21_c00106{left:286.500000px;}
.x57_c00106{left:288.000000px;}
.x75_c00106{left:291.420000px;}
.x8e_c00106{left:292.920000px;}
.x9c_c00106{left:298.500000px;}
.x4e_c00106{left:300.000000px;}
.xcc_c00106{left:303.000000px;}
.xee_c00106{left:304.500000px;}
.xa8_c00106{left:306.420000px;}
.x2e_c00106{left:307.500000px;}
.x6f_c00106{left:308.580000px;}
.xbb_c00106{left:310.920000px;}
.xe7_c00106{left:312.000000px;}
.x58_c00106{left:313.500000px;}
.xdd_c00106{left:315.000000px;}
.x13_c00106{left:316.500000px;}
.xcd_c00106{left:317.580000px;}
.x2f_c00106{left:319.920000px;}
.x65_c00106{left:321.000000px;}
.x4f_c00106{left:322.920000px;}
.xa9_c00106{left:327.420000px;}
.x3b_c00106{left:328.500000px;}
.xc1_c00106{left:329.580000px;}
.x6a_c00106{left:332.145000px;}
.x7_c00106{left:334.080000px;}
.xaf_c00106{left:337.080000px;}
.x9d_c00106{left:339.420000px;}
.x22_c00106{left:340.920000px;}
.x14_c00106{left:342.000000px;}
.xef_c00106{left:345.000000px;}
.xb3_c00106{left:346.920000px;}
.xc7_c00106{left:348.420000px;}
.x43_c00106{left:352.500000px;}
.xc2_c00106{left:354.420000px;}
.x70_c00106{left:355.500000px;}
.x84_c00106{left:357.000000px;}
.x30_c00106{left:360.000000px;}
.xd6_c00106{left:361.500000px;}
.x50_c00106{left:363.000000px;}
.x59_c00106{left:364.920000px;}
.x9e_c00106{left:367.500000px;}
.x66_c00106{left:372.420000px;}
.x7c_c00106{left:373.500000px;}
.x23_c00106{left:375.420000px;}
.xd2_c00106{left:379.080000px;}
.x3c_c00106{left:381.000000px;}
.x8_c00106{left:382.920000px;}
.xde_c00106{left:385.500000px;}
.x6b_c00106{left:392.145000px;}
.x1_c00106{left:399.000000px;}
.x76_c00106{left:400.080000px;}
.xb4_c00106{left:402.420000px;}
.x24_c00106{left:403.920000px;}
.x44_c00106{left:408.000000px;}
.xd9_c00106{left:410.580000px;}
.x5a_c00106{left:412.500000px;}
.x51_c00106{left:414.000000px;}
.xc8_c00106{left:417.000000px;}
.x31_c00106{left:418.080000px;}
.x15_c00106{left:421.920000px;}
.x3d_c00106{left:424.500000px;}
.x71_c00106{left:427.920000px;}
.xda_c00106{left:429.420000px;}
.x7d_c00106{left:430.500000px;}
.x25_c00106{left:433.500000px;}
.x8f_c00106{left:435.000000px;}
.x32_c00106{left:436.920000px;}
.xaa_c00106{left:438.000000px;}
.x5b_c00106{left:439.500000px;}
.x3e_c00106{left:445.500000px;}
.x7e_c00106{left:447.420000px;}
.xf0_c00106{left:448.500000px;}
.xce_c00106{left:449.580000px;}
.x45_c00106{left:451.500000px;}
.x16_c00106{left:453.000000px;}
.x9_c00106{left:454.500000px;}
.x67_c00106{left:456.000000px;}
.xdb_c00106{left:457.080000px;}
.xf6_c00106{left:459.420000px;}
.xf3_c00106{left:467.580000px;}
.x46_c00106{left:469.500000px;}
.x9f_c00106{left:471.000000px;}
.xd7_c00106{left:473.580000px;}
.x68_c00106{left:475.920000px;}
.x96_c00106{left:477.000000px;}
.x33_c00106{left:478.920000px;}
.xb5_c00106{left:481.080000px;}
.xa_c00106{left:484.500000px;}
.x26_c00106{left:485.580000px;}
.xeb_c00106{left:487.500000px;}
.xc3_c00106{left:490.920000px;}
.xab_c00106{left:496.500000px;}
.x69_c00106{left:498.420000px;}
.xa0_c00106{left:499.920000px;}
.x17_c00106{left:501.000000px;}
.x47_c00106{left:502.920000px;}
.xb_c00106{left:507.420000px;}
.x3f_c00106{left:510.000000px;}
.xe8_c00106{left:511.500000px;}
.x34_c00106{left:516.000000px;}
.x5c_c00106{left:519.420000px;}
.x52_c00106{left:520.920000px;}
.x77_c00106{left:522.420000px;}
.xac_c00106{left:525.000000px;}
.x72_c00106{left:528.000000px;}
.xb6_c00106{left:529.500000px;}
.x27_c00106{left:538.920000px;}
.xd3_c00106{left:540.000000px;}
.xa1_c00106{left:541.500000px;}
.x97_c00106{left:543.420000px;}
.xc_c00106{left:545.580000px;}
.x53_c00106{left:549.420000px;}
.xf4_c00106{left:552.000000px;}
.x48_c00106{left:553.920000px;}
.x35_c00106{left:555.000000px;}
.x5d_c00106{left:556.920000px;}
.x18_c00106{left:558.000000px;}
.xc4_c00106{left:559.920000px;}
.xf7_c00106{left:565.500000px;}
.x28_c00106{left:567.000000px;}
.x89_c00106{left:568.920000px;}
.xec_c00106{left:570.000000px;}
.x85_c00106{left:573.000000px;}
.xf5_c00106{left:574.500000px;}
.x19_c00106{left:576.000000px;}
.xa2_c00106{left:578.580000px;}
.xdf_c00106{left:580.500000px;}
.xb7_c00106{left:582.000000px;}
.x98_c00106{left:583.920000px;}
.x40_c00106{left:586.500000px;}
.x1a_c00106{left:589.920000px;}
.x86_c00106{left:591.000000px;}
.x49_c00106{left:594.000000px;}
.xd_c00106{left:597.420000px;}
.x29_c00106{left:600.000000px;}
.x36_c00106{left:601.920000px;}
.x87_c00106{left:604.500000px;}
.x8a_c00106{left:607.500000px;}
.x5e_c00106{left:608.580000px;}
.x54_c00106{left:610.500000px;}
.x78_c00106{left:611.580000px;}
.xcf_c00106{left:615.000000px;}
.xa3_c00106{left:616.080000px;}
.xe0_c00106{left:619.500000px;}
.x99_c00106{left:621.000000px;}
.x8b_c00106{left:622.500000px;}
.xad_c00106{left:627.000000px;}
.xbc_c00106{left:628.080000px;}
.x79_c00106{left:630.000000px;}
.xb8_c00106{left:633.000000px;}
.x37_c00106{left:634.920000px;}
.x7f_c00106{left:636.420000px;}
.x5f_c00106{left:637.500000px;}
.x73_c00106{left:640.080000px;}
.xc9_c00106{left:641.580000px;}
.x2a_c00106{left:643.080000px;}
.xed_c00106{left:645.420000px;}
.xe_c00106{left:648.000000px;}
.x4a_c00106{left:649.500000px;}
.x60_c00106{left:650.580000px;}
.xbd_c00106{left:652.920000px;}
.xb0_c00106{left:654.000000px;}
.x9a_c00106{left:658.920000px;}
.xa4_c00106{left:660.000000px;}
.xb9_c00106{left:661.920000px;}
.x80_c00106{left:663.000000px;}
.x2b_c00106{left:664.500000px;}
.x38_c00106{left:669.000000px;}
.x1b_c00106{left:671.580000px;}
.x90_c00106{left:673.500000px;}
.xae_c00106{left:674.580000px;}
.x61_c00106{left:681.000000px;}
.x41_c00106{left:682.080000px;}
.xc5_c00106{left:683.580000px;}
.xf_c00106{left:685.920000px;}
.xbe_c00106{left:688.080000px;}
.xf1_c00106{left:690.000000px;}
.x88_c00106{left:693.000000px;}
.xe1_c00106{left:694.500000px;}
.xd4_c00106{left:696.000000px;}
.xe2_c00106{left:697.080000px;}
.x39_c00106{left:699.000000px;}
.x8c_c00106{left:700.500000px;}
.x4b_c00106{left:703.080000px;}
.x81_c00106{left:706.920000px;}
.xbf_c00106{left:708.420000px;}
.x1c_c00106{left:709.920000px;}
.x2_c00106{left:712.080000px;}
.xe3_c00106{left:714.000000px;}
.xa5_c00106{left:715.500000px;}
.xe9_c00106{left:723.420000px;}
@media print{
.v0_c00106{vertical-align:0.000000pt;}
.ls0_c00106{letter-spacing:0.000000pt;}
.ws2_c00106{word-spacing:0.000000pt;}
.ws0_c00106{word-spacing:6.961280pt;}
.ws1_c00106{word-spacing:12.110798pt;}
.fs7_c00106{font-size:3.040000pt;}
.fs8_c00106{font-size:6.026667pt;}
.fs4_c00106{font-size:16.640000pt;}
.fs0_c00106{font-size:18.133333pt;}
.fs5_c00106{font-size:22.666667pt;}
.fs1_c00106{font-size:25.706667pt;}
.fs3_c00106{font-size:28.746667pt;}
.fs2_c00106{font-size:31.733333pt;}
.fs6_c00106{font-size:34.773333pt;}
.y0_c00106{bottom:0.000000pt;}
.yaa_c00106{bottom:223.026667pt;}
.yae_c00106{bottom:223.426667pt;}
.yac_c00106{bottom:223.773333pt;}
.ya8_c00106{bottom:225.106667pt;}
.yad_c00106{bottom:225.893333pt;}
.ya9_c00106{bottom:226.066667pt;}
.yab_c00106{bottom:226.640000pt;}
.ya7_c00106{bottom:227.026667pt;}
.ya5_c00106{bottom:241.306667pt;}
.ya6_c00106{bottom:241.693333pt;}
.ya4_c00106{bottom:241.706667pt;}
.ya3_c00106{bottom:242.440000pt;}
.ya2_c00106{bottom:243.226667pt;}
.ya1_c00106{bottom:244.360000pt;}
.y9d_c00106{bottom:259.026667pt;}
.y9c_c00106{bottom:259.773333pt;}
.ya0_c00106{bottom:259.973333pt;}
.y9e_c00106{bottom:261.106667pt;}
.y9f_c00106{bottom:261.693333pt;}
.y97_c00106{bottom:276.360000pt;}
.y96_c00106{bottom:277.106667pt;}
.y95_c00106{bottom:278.266667pt;}
.y9a_c00106{bottom:278.640000pt;}
.y98_c00106{bottom:279.026667pt;}
.y9b_c00106{bottom:279.226667pt;}
.y99_c00106{bottom:279.973333pt;}
.y93_c00106{bottom:294.440000pt;}
.y91_c00106{bottom:295.400000pt;}
.y94_c00106{bottom:295.600000pt;}
.y8f_c00106{bottom:296.360000pt;}
.y92_c00106{bottom:296.560000pt;}
.y90_c00106{bottom:297.693333pt;}
.y8d_c00106{bottom:311.026667pt;}
.y8e_c00106{bottom:311.773333pt;}
.y8c_c00106{bottom:313.106667pt;}
.y8b_c00106{bottom:315.026667pt;}
.y88_c00106{bottom:330.440000pt;}
.y8a_c00106{bottom:331.026667pt;}
.y89_c00106{bottom:331.226667pt;}
.y87_c00106{bottom:331.400000pt;}
.y85_c00106{bottom:331.600000pt;}
.y86_c00106{bottom:332.360000pt;}
.y81_c00106{bottom:357.106667pt;}
.y82_c00106{bottom:358.640000pt;}
.y83_c00106{bottom:359.026667pt;}
.y84_c00106{bottom:359.973333pt;}
.y80_c00106{bottom:399.773333pt;}
.y7e_c00106{bottom:401.693333pt;}
.y7f_c00106{bottom:401.893333pt;}
.y7a_c00106{bottom:417.693333pt;}
.y7c_c00106{bottom:418.440000pt;}
.y79_c00106{bottom:419.026667pt;}
.y7b_c00106{bottom:419.226667pt;}
.y7d_c00106{bottom:419.973333pt;}
.y78_c00106{bottom:420.360000pt;}
.y77_c00106{bottom:434.440000pt;}
.y76_c00106{bottom:434.640000pt;}
.y75_c00106{bottom:435.026667pt;}
.y72_c00106{bottom:435.773333pt;}
.y74_c00106{bottom:437.693333pt;}
.y73_c00106{bottom:438.640000pt;}
.y6f_c00106{bottom:453.106667pt;}
.y71_c00106{bottom:454.066667pt;}
.y70_c00106{bottom:455.026667pt;}
.y6e_c00106{bottom:470.440000pt;}
.y6c_c00106{bottom:471.973333pt;}
.y6d_c00106{bottom:472.360000pt;}
.y6b_c00106{bottom:487.773333pt;}
.y68_c00106{bottom:488.160000pt;}
.y67_c00106{bottom:488.733333pt;}
.y6a_c00106{bottom:489.106667pt;}
.y66_c00106{bottom:489.693333pt;}
.y69_c00106{bottom:491.026667pt;}
.y63_c00106{bottom:505.106667pt;}
.y64_c00106{bottom:506.066667pt;}
.y65_c00106{bottom:506.440000pt;}
.y62_c00106{bottom:507.026667pt;}
.y60_c00106{bottom:521.693333pt;}
.y5d_c00106{bottom:523.773333pt;}
.y5e_c00106{bottom:524.360000pt;}
.y61_c00106{bottom:524.560000pt;}
.y5c_c00106{bottom:525.306667pt;}
.y5f_c00106{bottom:525.693333pt;}
.y5b_c00106{bottom:541.106667pt;}
.y5a_c00106{bottom:541.893333pt;}
.y59_c00106{bottom:543.026667pt;}
.y57_c00106{bottom:558.440000pt;}
.y58_c00106{bottom:560.360000pt;}
.y54_c00106{bottom:573.693333pt;}
.y56_c00106{bottom:575.773333pt;}
.y52_c00106{bottom:576.560000pt;}
.y51_c00106{bottom:576.733333pt;}
.y55_c00106{bottom:577.306667pt;}
.y50_c00106{bottom:577.693333pt;}
.y53_c00106{bottom:578.640000pt;}
.y4c_c00106{bottom:593.106667pt;}
.y4f_c00106{bottom:593.893333pt;}
.y4d_c00106{bottom:595.026667pt;}
.y4e_c00106{bottom:595.226667pt;}
.y4b_c00106{bottom:610.440000pt;}
.y4a_c00106{bottom:612.360000pt;}
.y49_c00106{bottom:627.773333pt;}
.y47_c00106{bottom:645.106667pt;}
.y45_c00106{bottom:646.066667pt;}
.y46_c00106{bottom:647.026667pt;}
.y48_c00106{bottom:647.226667pt;}
.y42_c00106{bottom:661.693333pt;}
.y43_c00106{bottom:663.773333pt;}
.y3f_c00106{bottom:664.360000pt;}
.y40_c00106{bottom:664.560000pt;}
.y41_c00106{bottom:665.306667pt;}
.y44_c00106{bottom:665.693333pt;}
.y3d_c00106{bottom:681.106667pt;}
.y3e_c00106{bottom:681.893333pt;}
.y3c_c00106{bottom:683.026667pt;}
.y3b_c00106{bottom:698.440000pt;}
.y3a_c00106{bottom:699.400000pt;}
.y38_c00106{bottom:700.360000pt;}
.y39_c00106{bottom:701.306667pt;}
.y35_c00106{bottom:714.826667pt;}
.y36_c00106{bottom:715.026667pt;}
.y32_c00106{bottom:715.773333pt;}
.y37_c00106{bottom:716.933333pt;}
.y34_c00106{bottom:717.693333pt;}
.y33_c00106{bottom:717.893333pt;}
.y31_c00106{bottom:733.106667pt;}
.y30_c00106{bottom:735.026667pt;}
.y2f_c00106{bottom:761.693333pt;}
.y2b_c00106{bottom:802.640000pt;}
.y2d_c00106{bottom:803.773333pt;}
.y2e_c00106{bottom:804.560000pt;}
.y2a_c00106{bottom:805.306667pt;}
.y2c_c00106{bottom:805.693333pt;}
.y29_c00106{bottom:820.733333pt;}
.y26_c00106{bottom:821.106667pt;}
.y28_c00106{bottom:822.640000pt;}
.y25_c00106{bottom:823.026667pt;}
.y27_c00106{bottom:823.973333pt;}
.y24_c00106{bottom:838.440000pt;}
.y22_c00106{bottom:839.226667pt;}
.y23_c00106{bottom:839.400000pt;}
.y21_c00106{bottom:840.360000pt;}
.y1e_c00106{bottom:855.773333pt;}
.y20_c00106{bottom:855.973333pt;}
.y1d_c00106{bottom:857.306667pt;}
.y1c_c00106{bottom:857.693333pt;}
.y1f_c00106{bottom:857.893333pt;}
.y19_c00106{bottom:873.106667pt;}
.y18_c00106{bottom:874.640000pt;}
.y17_c00106{bottom:875.026667pt;}
.y1b_c00106{bottom:875.226667pt;}
.y1a_c00106{bottom:875.973333pt;}
.y16_c00106{bottom:889.693333pt;}
.y13_c00106{bottom:890.066667pt;}
.y11_c00106{bottom:890.440000pt;}
.y15_c00106{bottom:891.400000pt;}
.y10_c00106{bottom:892.360000pt;}
.y12_c00106{bottom:892.560000pt;}
.y14_c00106{bottom:893.306667pt;}
.yf_c00106{bottom:907.773333pt;}
.yd_c00106{bottom:909.693333pt;}
.ye_c00106{bottom:910.640000pt;}
.ya_c00106{bottom:925.106667pt;}
.yc_c00106{bottom:926.066667pt;}
.y9_c00106{bottom:927.026667pt;}
.yb_c00106{bottom:927.226667pt;}
.y8_c00106{bottom:941.693333pt;}
.y7_c00106{bottom:943.400000pt;}
.y5_c00106{bottom:943.773333pt;}
.y3_c00106{bottom:944.360000pt;}
.y6_c00106{bottom:944.733333pt;}
.y4_c00106{bottom:945.693333pt;}
.y2_c00106{bottom:977.693333pt;}
.y1_c00106{bottom:979.600000pt;}
.h8_c00106{height:3.739141pt;}
.h9_c00106{height:7.412682pt;}
.h5_c00106{height:20.466875pt;}
.h1_c00106{height:22.303646pt;}
.h6_c00106{height:27.879557pt;}
.h2_c00106{height:31.618698pt;}
.h4_c00106{height:35.357839pt;}
.h3_c00106{height:39.031380pt;}
.h7_c00106{height:42.770521pt;}
.h0_c00106{height:1186.666667pt;}
.w0_c00106{width:782.666667pt;}
.x0_c00106{left:0.000000pt;}
.x3_c00106{left:134.666667pt;}
.xb1_c00106{left:136.000000pt;}
.xe4_c00106{left:142.293333pt;}
.x6c_c00106{left:149.333333pt;}
.x2c_c00106{left:160.000000pt;}
.x1d_c00106{left:161.706667pt;}
.x10_c00106{left:163.040000pt;}
.xdc_c00106{left:164.000000pt;}
.x8d_c00106{left:167.626667pt;}
.xa6_c00106{left:169.706667pt;}
.xb2_c00106{left:171.040000pt;}
.x93_c00106{left:173.333333pt;}
.x4c_c00106{left:176.373333pt;}
.x62_c00106{left:177.333333pt;}
.xca_c00106{left:178.293333pt;}
.x4_c00106{left:179.626667pt;}
.x9b_c00106{left:182.666667pt;}
.x6d_c00106{left:185.706667pt;}
.x91_c00106{left:187.626667pt;}
.xd0_c00106{left:189.706667pt;}
.x82_c00106{left:190.666667pt;}
.x1e_c00106{left:192.000000pt;}
.xcb_c00106{left:193.706667pt;}
.xa7_c00106{left:195.040000pt;}
.x42_c00106{left:196.000000pt;}
.x5_c00106{left:197.706667pt;}
.xe5_c00106{left:198.666667pt;}
.x3a_c00106{left:199.626667pt;}
.x11_c00106{left:200.960000pt;}
.xd5_c00106{left:202.293333pt;}
.x63_c00106{left:204.000000pt;}
.x55_c00106{left:205.333333pt;}
.x1f_c00106{left:208.960000pt;}
.x6e_c00106{left:210.666667pt;}
.x2d_c00106{left:214.293333pt;}
.x92_c00106{left:216.373333pt;}
.xc0_c00106{left:217.333333pt;}
.x64_c00106{left:218.666667pt;}
.x94_c00106{left:219.626667pt;}
.x6_c00106{left:221.333333pt;}
.x7a_c00106{left:222.666667pt;}
.xe6_c00106{left:225.333333pt;}
.xf2_c00106{left:226.666667pt;}
.x20_c00106{left:228.000000pt;}
.x12_c00106{left:229.333333pt;}
.x74_c00106{left:233.706667pt;}
.x95_c00106{left:237.706667pt;}
.x4d_c00106{left:238.666667pt;}
.x56_c00106{left:240.960000pt;}
.xc6_c00106{left:243.040000pt;}
.xea_c00106{left:245.706667pt;}
.xd1_c00106{left:246.666667pt;}
.x7b_c00106{left:248.373333pt;}
.x83_c00106{left:249.333333pt;}
.xba_c00106{left:251.040000pt;}
.xd8_c00106{left:252.000000pt;}
.x21_c00106{left:254.666667pt;}
.x57_c00106{left:256.000000pt;}
.x75_c00106{left:259.040000pt;}
.x8e_c00106{left:260.373333pt;}
.x9c_c00106{left:265.333333pt;}
.x4e_c00106{left:266.666667pt;}
.xcc_c00106{left:269.333333pt;}
.xee_c00106{left:270.666667pt;}
.xa8_c00106{left:272.373333pt;}
.x2e_c00106{left:273.333333pt;}
.x6f_c00106{left:274.293333pt;}
.xbb_c00106{left:276.373333pt;}
.xe7_c00106{left:277.333333pt;}
.x58_c00106{left:278.666667pt;}
.xdd_c00106{left:280.000000pt;}
.x13_c00106{left:281.333333pt;}
.xcd_c00106{left:282.293333pt;}
.x2f_c00106{left:284.373333pt;}
.x65_c00106{left:285.333333pt;}
.x4f_c00106{left:287.040000pt;}
.xa9_c00106{left:291.040000pt;}
.x3b_c00106{left:292.000000pt;}
.xc1_c00106{left:292.960000pt;}
.x6a_c00106{left:295.240000pt;}
.x7_c00106{left:296.960000pt;}
.xaf_c00106{left:299.626667pt;}
.x9d_c00106{left:301.706667pt;}
.x22_c00106{left:303.040000pt;}
.x14_c00106{left:304.000000pt;}
.xef_c00106{left:306.666667pt;}
.xb3_c00106{left:308.373333pt;}
.xc7_c00106{left:309.706667pt;}
.x43_c00106{left:313.333333pt;}
.xc2_c00106{left:315.040000pt;}
.x70_c00106{left:316.000000pt;}
.x84_c00106{left:317.333333pt;}
.x30_c00106{left:320.000000pt;}
.xd6_c00106{left:321.333333pt;}
.x50_c00106{left:322.666667pt;}
.x59_c00106{left:324.373333pt;}
.x9e_c00106{left:326.666667pt;}
.x66_c00106{left:331.040000pt;}
.x7c_c00106{left:332.000000pt;}
.x23_c00106{left:333.706667pt;}
.xd2_c00106{left:336.960000pt;}
.x3c_c00106{left:338.666667pt;}
.x8_c00106{left:340.373333pt;}
.xde_c00106{left:342.666667pt;}
.x6b_c00106{left:348.573333pt;}
.x1_c00106{left:354.666667pt;}
.x76_c00106{left:355.626667pt;}
.xb4_c00106{left:357.706667pt;}
.x24_c00106{left:359.040000pt;}
.x44_c00106{left:362.666667pt;}
.xd9_c00106{left:364.960000pt;}
.x5a_c00106{left:366.666667pt;}
.x51_c00106{left:368.000000pt;}
.xc8_c00106{left:370.666667pt;}
.x31_c00106{left:371.626667pt;}
.x15_c00106{left:375.040000pt;}
.x3d_c00106{left:377.333333pt;}
.x71_c00106{left:380.373333pt;}
.xda_c00106{left:381.706667pt;}
.x7d_c00106{left:382.666667pt;}
.x25_c00106{left:385.333333pt;}
.x8f_c00106{left:386.666667pt;}
.x32_c00106{left:388.373333pt;}
.xaa_c00106{left:389.333333pt;}
.x5b_c00106{left:390.666667pt;}
.x3e_c00106{left:396.000000pt;}
.x7e_c00106{left:397.706667pt;}
.xf0_c00106{left:398.666667pt;}
.xce_c00106{left:399.626667pt;}
.x45_c00106{left:401.333333pt;}
.x16_c00106{left:402.666667pt;}
.x9_c00106{left:404.000000pt;}
.x67_c00106{left:405.333333pt;}
.xdb_c00106{left:406.293333pt;}
.xf6_c00106{left:408.373333pt;}
.xf3_c00106{left:415.626667pt;}
.x46_c00106{left:417.333333pt;}
.x9f_c00106{left:418.666667pt;}
.xd7_c00106{left:420.960000pt;}
.x68_c00106{left:423.040000pt;}
.x96_c00106{left:424.000000pt;}
.x33_c00106{left:425.706667pt;}
.xb5_c00106{left:427.626667pt;}
.xa_c00106{left:430.666667pt;}
.x26_c00106{left:431.626667pt;}
.xeb_c00106{left:433.333333pt;}
.xc3_c00106{left:436.373333pt;}
.xab_c00106{left:441.333333pt;}
.x69_c00106{left:443.040000pt;}
.xa0_c00106{left:444.373333pt;}
.x17_c00106{left:445.333333pt;}
.x47_c00106{left:447.040000pt;}
.xb_c00106{left:451.040000pt;}
.x3f_c00106{left:453.333333pt;}
.xe8_c00106{left:454.666667pt;}
.x34_c00106{left:458.666667pt;}
.x5c_c00106{left:461.706667pt;}
.x52_c00106{left:463.040000pt;}
.x77_c00106{left:464.373333pt;}
.xac_c00106{left:466.666667pt;}
.x72_c00106{left:469.333333pt;}
.xb6_c00106{left:470.666667pt;}
.x27_c00106{left:479.040000pt;}
.xd3_c00106{left:480.000000pt;}
.xa1_c00106{left:481.333333pt;}
.x97_c00106{left:483.040000pt;}
.xc_c00106{left:484.960000pt;}
.x53_c00106{left:488.373333pt;}
.xf4_c00106{left:490.666667pt;}
.x48_c00106{left:492.373333pt;}
.x35_c00106{left:493.333333pt;}
.x5d_c00106{left:495.040000pt;}
.x18_c00106{left:496.000000pt;}
.xc4_c00106{left:497.706667pt;}
.xf7_c00106{left:502.666667pt;}
.x28_c00106{left:504.000000pt;}
.x89_c00106{left:505.706667pt;}
.xec_c00106{left:506.666667pt;}
.x85_c00106{left:509.333333pt;}
.xf5_c00106{left:510.666667pt;}
.x19_c00106{left:512.000000pt;}
.xa2_c00106{left:514.293333pt;}
.xdf_c00106{left:516.000000pt;}
.xb7_c00106{left:517.333333pt;}
.x98_c00106{left:519.040000pt;}
.x40_c00106{left:521.333333pt;}
.x1a_c00106{left:524.373333pt;}
.x86_c00106{left:525.333333pt;}
.x49_c00106{left:528.000000pt;}
.xd_c00106{left:531.040000pt;}
.x29_c00106{left:533.333333pt;}
.x36_c00106{left:535.040000pt;}
.x87_c00106{left:537.333333pt;}
.x8a_c00106{left:540.000000pt;}
.x5e_c00106{left:540.960000pt;}
.x54_c00106{left:542.666667pt;}
.x78_c00106{left:543.626667pt;}
.xcf_c00106{left:546.666667pt;}
.xa3_c00106{left:547.626667pt;}
.xe0_c00106{left:550.666667pt;}
.x99_c00106{left:552.000000pt;}
.x8b_c00106{left:553.333333pt;}
.xad_c00106{left:557.333333pt;}
.xbc_c00106{left:558.293333pt;}
.x79_c00106{left:560.000000pt;}
.xb8_c00106{left:562.666667pt;}
.x37_c00106{left:564.373333pt;}
.x7f_c00106{left:565.706667pt;}
.x5f_c00106{left:566.666667pt;}
.x73_c00106{left:568.960000pt;}
.xc9_c00106{left:570.293333pt;}
.x2a_c00106{left:571.626667pt;}
.xed_c00106{left:573.706667pt;}
.xe_c00106{left:576.000000pt;}
.x4a_c00106{left:577.333333pt;}
.x60_c00106{left:578.293333pt;}
.xbd_c00106{left:580.373333pt;}
.xb0_c00106{left:581.333333pt;}
.x9a_c00106{left:585.706667pt;}
.xa4_c00106{left:586.666667pt;}
.xb9_c00106{left:588.373333pt;}
.x80_c00106{left:589.333333pt;}
.x2b_c00106{left:590.666667pt;}
.x38_c00106{left:594.666667pt;}
.x1b_c00106{left:596.960000pt;}
.x90_c00106{left:598.666667pt;}
.xae_c00106{left:599.626667pt;}
.x61_c00106{left:605.333333pt;}
.x41_c00106{left:606.293333pt;}
.xc5_c00106{left:607.626667pt;}
.xf_c00106{left:609.706667pt;}
.xbe_c00106{left:611.626667pt;}
.xf1_c00106{left:613.333333pt;}
.x88_c00106{left:616.000000pt;}
.xe1_c00106{left:617.333333pt;}
.xd4_c00106{left:618.666667pt;}
.xe2_c00106{left:619.626667pt;}
.x39_c00106{left:621.333333pt;}
.x8c_c00106{left:622.666667pt;}
.x4b_c00106{left:624.960000pt;}
.x81_c00106{left:628.373333pt;}
.xbf_c00106{left:629.706667pt;}
.x1c_c00106{left:631.040000pt;}
.x2_c00106{left:632.960000pt;}
.xe3_c00106{left:634.666667pt;}
.xa5_c00106{left:636.000000pt;}
.xe9_c00106{left:643.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_c00107 {
    display:none;
  }
  .loading-indicator_c00107.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00107 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00107 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00107" -> "#page-container .classname_c00107")
 */
.pf_c00107 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00107 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00107.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00107 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00107 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00107 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00107 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00107 {overflow:visible;}
  }
}
.c_c00107 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00107 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00107:after { /* webkit #35443 */
  content: '';
}
.t_c00107:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00107 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00107 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00107 { /* info for Javascript */
  display:none;
}
.l_c00107 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00107 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00107 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00107:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00107{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00107;src:url('chunks/assets/font_80d445de24aafe09ade5c055.woff2')format("woff");}.ff1_c00107{font-family:ff1_c00107;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m46_c00107{transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);}
.m0_c00107{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m9c_c00107{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m51_c00107{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m13_c00107{transform:matrix(0.368482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368482,0.000000,0.000000,0.250000,0,0);}
.m79_c00107{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mad_c00107{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.md_c00107{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m14_c00107{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mb5_c00107{transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);}
.m48_c00107{transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);}
.m23_c00107{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m74_c00107{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m3b_c00107{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m38_c00107{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m3e_c00107{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.mb3_c00107{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m1e_c00107{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m4a_c00107{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m26_c00107{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mba_c00107{transform:matrix(0.397032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397032,0.000000,0.000000,0.250000,0,0);}
.m8f_c00107{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m72_c00107{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m2e_c00107{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m73_c00107{transform:matrix(0.398859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398859,0.000000,0.000000,0.250000,0,0);}
.mb1_c00107{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.mb_c00107{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m5c_c00107{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m1c_c00107{transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);}
.m87_c00107{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m86_c00107{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m5e_c00107{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m8b_c00107{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.mc7_c00107{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m3d_c00107{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m85_c00107{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mcc_c00107{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m6f_c00107{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m88_c00107{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.mc5_c00107{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m6d_c00107{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.mb7_c00107{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m5b_c00107{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.mf_c00107{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mc3_c00107{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m6e_c00107{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.mc0_c00107{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m47_c00107{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mae_c00107{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m68_c00107{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m76_c00107{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m2c_c00107{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m27_c00107{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m2d_c00107{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m62_c00107{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.mb0_c00107{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.m4d_c00107{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m7e_c00107{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m12_c00107{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m49_c00107{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m36_c00107{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mbb_c00107{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m18_c00107{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.ma1_c00107{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.mc1_c00107{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m7a_c00107{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mbf_c00107{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m3a_c00107{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m5f_c00107{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.mc8_c00107{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m21_c00107{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m77_c00107{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.mbe_c00107{transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);}
.m66_c00107{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m82_c00107{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m31_c00107{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mc6_c00107{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.mb8_c00107{transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);}
.m52_c00107{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m2f_c00107{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m64_c00107{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m50_c00107{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m4c_c00107{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m5a_c00107{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m93_c00107{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.ma0_c00107{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.mbd_c00107{transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);}
.m3f_c00107{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.m78_c00107{transform:matrix(0.468361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468361,0.000000,0.000000,0.250000,0,0);}
.mb9_c00107{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.m9a_c00107{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.m9e_c00107{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mab_c00107{transform:matrix(0.476050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476050,0.000000,0.000000,0.250000,0,0);}
.m54_c00107{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.mac_c00107{transform:matrix(0.477731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477731,0.000000,0.000000,0.250000,0,0);}
.m70_c00107{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m89_c00107{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m59_c00107{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m7d_c00107{transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);}
.m24_c00107{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m7f_c00107{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m29_c00107{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m58_c00107{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m6b_c00107{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m28_c00107{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);}
.m9f_c00107{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m3c_c00107{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m6a_c00107{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m10_c00107{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.maa_c00107{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m35_c00107{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mb4_c00107{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m90_c00107{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m15_c00107{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m7c_c00107{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m1a_c00107{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m17_c00107{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m20_c00107{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.maf_c00107{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m33_c00107{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m2b_c00107{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.ma9_c00107{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m5_c00107{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m40_c00107{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m37_c00107{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mc_c00107{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m55_c00107{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m4_c00107{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m67_c00107{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m8a_c00107{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m56_c00107{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m8_c00107{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m92_c00107{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m96_c00107{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.ma_c00107{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mc9_c00107{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m60_c00107{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m8e_c00107{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mc4_c00107{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.ma8_c00107{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m25_c00107{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m84_c00107{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m4f_c00107{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m19_c00107{transform:matrix(0.555195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555195,0.000000,0.000000,0.250000,0,0);}
.me_c00107{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m95_c00107{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m2a_c00107{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m7b_c00107{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m61_c00107{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m4b_c00107{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mbc_c00107{transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);}
.m1b_c00107{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m8c_c00107{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m34_c00107{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m3_c00107{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m94_c00107{transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);}
.m11_c00107{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m6c_c00107{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.ma5_c00107{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m2_c00107{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m42_c00107{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m97_c00107{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m1d_c00107{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);}
.m63_c00107{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m22_c00107{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.m16_c00107{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m39_c00107{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.ma7_c00107{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m30_c00107{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m1_c00107{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m69_c00107{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m98_c00107{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.ma2_c00107{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m75_c00107{transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);}
.mb2_c00107{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m65_c00107{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m83_c00107{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m81_c00107{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);}
.mb6_c00107{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m99_c00107{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.m53_c00107{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m9b_c00107{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m5d_c00107{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.ma6_c00107{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m6_c00107{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.ma4_c00107{transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);}
.m91_c00107{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m9d_c00107{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m80_c00107{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m7_c00107{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m71_c00107{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.mca_c00107{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m41_c00107{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m8d_c00107{transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);}
.m1f_c00107{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.m32_c00107{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m4e_c00107{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.ma3_c00107{transform:matrix(0.810096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.810096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.810096,0.000000,0.000000,0.250000,0,0);}
.m57_c00107{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m9_c00107{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.m43_c00107{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m44_c00107{transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);}
.m45_c00107{transform:matrix(1.741228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.741228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.741228,0.000000,0.000000,0.250000,0,0);}
.mcb_c00107{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.mc2_c00107{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00107{vertical-align:0.000000px;}
.ls0_c00107{letter-spacing:0.000000px;}
.sc__c00107{text-shadow:none;}
.sc0_c00107{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00107{-webkit-text-stroke:0px transparent;}
.sc0_c00107{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00107{word-spacing:0.000000px;}
.ws1_c00107{word-spacing:2.857601px;}
.ws0_c00107{word-spacing:5.666570px;}
.fc0_c00107{color:transparent;}
.fs8_c00107{font-size:3.420000px;}
.fs7_c00107{font-size:6.780000px;}
.fs4_c00107{font-size:18.720000px;}
.fs1_c00107{font-size:20.400000px;}
.fs2_c00107{font-size:25.500000px;}
.fs3_c00107{font-size:28.920000px;}
.fs5_c00107{font-size:32.340000px;}
.fs0_c00107{font-size:35.700000px;}
.fs6_c00107{font-size:39.120000px;}
.y0_c00107{bottom:0.000000px;}
.yc2_c00107{bottom:251.745000px;}
.ybf_c00107{bottom:252.405000px;}
.yc1_c00107{bottom:252.420000px;}
.yc0_c00107{bottom:252.630000px;}
.ybe_c00107{bottom:268.905000px;}
.yba_c00107{bottom:269.745000px;}
.ybd_c00107{bottom:271.245000px;}
.ybc_c00107{bottom:272.325000px;}
.ybb_c00107{bottom:273.420000px;}
.yb5_c00107{bottom:289.245000px;}
.yb6_c00107{bottom:290.745000px;}
.yb9_c00107{bottom:291.825000px;}
.yb8_c00107{bottom:292.905000px;}
.yb7_c00107{bottom:292.920000px;}
.yb0_c00107{bottom:310.905000px;}
.yb2_c00107{bottom:311.325000px;}
.yb4_c00107{bottom:311.550000px;}
.yb1_c00107{bottom:312.405000px;}
.yb3_c00107{bottom:313.470000px;}
.yab_c00107{bottom:329.325000px;}
.yad_c00107{bottom:330.825000px;}
.yaf_c00107{bottom:331.905000px;}
.yac_c00107{bottom:332.970000px;}
.yae_c00107{bottom:334.050000px;}
.yaa_c00107{bottom:352.245000px;}
.ya9_c00107{bottom:353.745000px;}
.ya6_c00107{bottom:384.405000px;}
.ya5_c00107{bottom:385.245000px;}
.ya4_c00107{bottom:387.405000px;}
.ya7_c00107{bottom:388.470000px;}
.ya8_c00107{bottom:388.905000px;}
.ya2_c00107{bottom:403.905000px;}
.ya3_c00107{bottom:404.325000px;}
.ya1_c00107{bottom:406.050000px;}
.y9e_c00107{bottom:406.245000px;}
.y9c_c00107{bottom:406.905000px;}
.y9f_c00107{bottom:407.130000px;}
.ya0_c00107{bottom:407.970000px;}
.y9d_c00107{bottom:408.405000px;}
.y9b_c00107{bottom:424.245000px;}
.y98_c00107{bottom:425.745000px;}
.y9a_c00107{bottom:426.405000px;}
.y96_c00107{bottom:427.470000px;}
.y97_c00107{bottom:427.905000px;}
.y99_c00107{bottom:428.970000px;}
.y94_c00107{bottom:445.245000px;}
.y92_c00107{bottom:447.405000px;}
.y95_c00107{bottom:447.630000px;}
.y93_c00107{bottom:448.470000px;}
.y91_c00107{bottom:466.905000px;}
.y90_c00107{bottom:467.970000px;}
.y8d_c00107{bottom:484.470000px;}
.y8b_c00107{bottom:485.325000px;}
.y8c_c00107{bottom:486.405000px;}
.y8e_c00107{bottom:486.630000px;}
.y8f_c00107{bottom:487.470000px;}
.y89_c00107{bottom:502.905000px;}
.y88_c00107{bottom:503.745000px;}
.y8a_c00107{bottom:504.630000px;}
.y86_c00107{bottom:505.905000px;}
.y87_c00107{bottom:506.130000px;}
.y83_c00107{bottom:524.745000px;}
.y85_c00107{bottom:525.405000px;}
.y84_c00107{bottom:526.905000px;}
.y80_c00107{bottom:542.970000px;}
.y82_c00107{bottom:543.825000px;}
.y7f_c00107{bottom:544.245000px;}
.y7e_c00107{bottom:545.130000px;}
.y81_c00107{bottom:545.970000px;}
.y7d_c00107{bottom:546.405000px;}
.y7a_c00107{bottom:561.405000px;}
.y78_c00107{bottom:563.745000px;}
.y7c_c00107{bottom:564.405000px;}
.y7b_c00107{bottom:564.630000px;}
.y79_c00107{bottom:565.905000px;}
.y77_c00107{bottom:583.245000px;}
.y76_c00107{bottom:585.405000px;}
.y74_c00107{bottom:608.745000px;}
.y75_c00107{bottom:610.905000px;}
.y73_c00107{bottom:642.405000px;}
.y72_c00107{bottom:644.745000px;}
.y6f_c00107{bottom:645.405000px;}
.y71_c00107{bottom:645.420000px;}
.y70_c00107{bottom:645.630000px;}
.y6a_c00107{bottom:646.245000px;}
.y6e_c00107{bottom:646.905000px;}
.y6d_c00107{bottom:647.130000px;}
.y6c_c00107{bottom:647.970000px;}
.y6b_c00107{bottom:648.405000px;}
.y67_c00107{bottom:664.245000px;}
.y68_c00107{bottom:665.325000px;}
.y64_c00107{bottom:665.745000px;}
.y63_c00107{bottom:666.405000px;}
.y66_c00107{bottom:666.630000px;}
.y65_c00107{bottom:667.470000px;}
.y69_c00107{bottom:667.905000px;}
.y61_c00107{bottom:682.905000px;}
.y60_c00107{bottom:683.745000px;}
.y5e_c00107{bottom:685.245000px;}
.y62_c00107{bottom:685.905000px;}
.y5f_c00107{bottom:687.405000px;}
.y5a_c00107{bottom:702.405000px;}
.y5d_c00107{bottom:703.470000px;}
.y5c_c00107{bottom:703.905000px;}
.y59_c00107{bottom:704.745000px;}
.y58_c00107{bottom:705.825000px;}
.y5b_c00107{bottom:706.470000px;}
.y57_c00107{bottom:706.905000px;}
.y56_c00107{bottom:722.745000px;}
.y55_c00107{bottom:722.970000px;}
.y54_c00107{bottom:725.325000px;}
.y50_c00107{bottom:743.745000px;}
.y52_c00107{bottom:744.630000px;}
.y53_c00107{bottom:745.470000px;}
.y4e_c00107{bottom:745.905000px;}
.y51_c00107{bottom:746.130000px;}
.y4f_c00107{bottom:746.970000px;}
.y4d_c00107{bottom:761.970000px;}
.y4c_c00107{bottom:763.245000px;}
.y4b_c00107{bottom:765.405000px;}
.y47_c00107{bottom:781.905000px;}
.y45_c00107{bottom:782.745000px;}
.y49_c00107{bottom:783.405000px;}
.y46_c00107{bottom:784.905000px;}
.y4a_c00107{bottom:785.130000px;}
.y48_c00107{bottom:785.970000px;}
.y40_c00107{bottom:801.405000px;}
.y42_c00107{bottom:802.245000px;}
.y41_c00107{bottom:804.405000px;}
.y43_c00107{bottom:804.630000px;}
.y44_c00107{bottom:805.470000px;}
.y3f_c00107{bottom:820.905000px;}
.y3d_c00107{bottom:822.405000px;}
.y3a_c00107{bottom:823.245000px;}
.y39_c00107{bottom:823.905000px;}
.y3e_c00107{bottom:824.130000px;}
.y3b_c00107{bottom:825.405000px;}
.y3c_c00107{bottom:826.470000px;}
.y38_c00107{bottom:840.405000px;}
.y36_c00107{bottom:841.905000px;}
.y33_c00107{bottom:842.745000px;}
.y35_c00107{bottom:843.630000px;}
.y37_c00107{bottom:843.825000px;}
.y32_c00107{bottom:844.905000px;}
.y34_c00107{bottom:845.970000px;}
.y31_c00107{bottom:864.405000px;}
.y30_c00107{bottom:879.405000px;}
.y2e_c00107{bottom:881.745000px;}
.y2f_c00107{bottom:883.905000px;}
.y2b_c00107{bottom:900.405000px;}
.y26_c00107{bottom:900.825000px;}
.y2c_c00107{bottom:900.855000px;}
.y28_c00107{bottom:901.245000px;}
.y2d_c00107{bottom:901.920000px;}
.y2a_c00107{bottom:902.130000px;}
.y27_c00107{bottom:903.405000px;}
.y29_c00107{bottom:903.630000px;}
.y23_c00107{bottom:922.905000px;}
.y25_c00107{bottom:923.970000px;}
.y24_c00107{bottom:924.405000px;}
.y22_c00107{bottom:939.405000px;}
.y1e_c00107{bottom:940.470000px;}
.y21_c00107{bottom:941.745000px;}
.y20_c00107{bottom:942.630000px;}
.y1f_c00107{bottom:943.905000px;}
.y1d_c00107{bottom:958.905000px;}
.y1a_c00107{bottom:960.825000px;}
.y1b_c00107{bottom:962.130000px;}
.y1c_c00107{bottom:962.970000px;}
.y18_c00107{bottom:980.745000px;}
.y16_c00107{bottom:981.405000px;}
.y19_c00107{bottom:982.470000px;}
.y17_c00107{bottom:982.905000px;}
.y15_c00107{bottom:997.905000px;}
.y14_c00107{bottom:1000.245000px;}
.y12_c00107{bottom:1018.470000px;}
.ye_c00107{bottom:1019.745000px;}
.y13_c00107{bottom:1020.405000px;}
.y10_c00107{bottom:1020.630000px;}
.yf_c00107{bottom:1021.470000px;}
.y11_c00107{bottom:1021.905000px;}
.yc_c00107{bottom:1038.180000px;}
.ya_c00107{bottom:1038.825000px;}
.y9_c00107{bottom:1039.245000px;}
.yd_c00107{bottom:1040.325000px;}
.yb_c00107{bottom:1041.405000px;}
.y7_c00107{bottom:1057.905000px;}
.y8_c00107{bottom:1058.745000px;}
.y3_c00107{bottom:1058.970000px;}
.y6_c00107{bottom:1059.630000px;}
.y4_c00107{bottom:1060.905000px;}
.y5_c00107{bottom:1061.970000px;}
.y1_c00107{bottom:1097.745000px;}
.y2_c00107{bottom:1099.050000px;}
.h9_c00107{height:4.206533px;}
.h8_c00107{height:8.339268px;}
.h5_c00107{height:23.025234px;}
.h2_c00107{height:25.091602px;}
.h3_c00107{height:31.364502px;}
.h4_c00107{height:35.571035px;}
.h6_c00107{height:39.777568px;}
.h1_c00107{height:43.910303px;}
.h7_c00107{height:48.116836px;}
.h0_c00107{height:1335.000000px;}
.w0_c00107{width:880.500000px;}
.x0_c00107{left:0.000000px;}
.x97_c00107{left:151.500000px;}
.x1_c00107{left:153.000000px;}
.x2c_c00107{left:160.080000px;}
.xda_c00107{left:164.580000px;}
.xdf_c00107{left:166.920000px;}
.x8f_c00107{left:168.000000px;}
.xd0_c00107{left:169.920000px;}
.x98_c00107{left:175.920000px;}
.xc8_c00107{left:178.500000px;}
.x7c_c00107{left:183.000000px;}
.x10_c00107{left:184.500000px;}
.x3_c00107{left:186.000000px;}
.xb1_c00107{left:189.000000px;}
.xc1_c00107{left:192.000000px;}
.xc2_c00107{left:198.000000px;}
.x90_c00107{left:199.500000px;}
.x99_c00107{left:203.580000px;}
.xe0_c00107{left:207.420000px;}
.xa2_c00107{left:208.500000px;}
.x1e_c00107{left:209.580000px;}
.x61_c00107{left:216.000000px;}
.x39_c00107{left:217.920000px;}
.xb8_c00107{left:228.420000px;}
.x7f_c00107{left:231.000000px;}
.x55_c00107{left:232.920000px;}
.x74_c00107{left:234.000000px;}
.xd7_c00107{left:235.080000px;}
.x3a_c00107{left:237.420000px;}
.x34_c00107{left:240.000000px;}
.xa3_c00107{left:243.000000px;}
.x89_c00107{left:246.420000px;}
.xd5_c00107{left:247.500000px;}
.xe4_c00107{left:249.000000px;}
.x11_c00107{left:250.500000px;}
.x62_c00107{left:255.420000px;}
.x56_c00107{left:256.500000px;}
.x1f_c00107{left:257.580000px;}
.x35_c00107{left:259.080000px;}
.xb2_c00107{left:261.000000px;}
.xe1_c00107{left:267.000000px;}
.x91_c00107{left:268.920000px;}
.x3b_c00107{left:271.080000px;}
.x8a_c00107{left:273.420000px;}
.x80_c00107{left:274.500000px;}
.x4_c00107{left:277.500000px;}
.x37_c00107{left:278.580000px;}
.x2d_c00107{left:280.500000px;}
.x20_c00107{left:282.420000px;}
.x12_c00107{left:284.580000px;}
.x9a_c00107{left:288.000000px;}
.x6e_c00107{left:291.000000px;}
.x81_c00107{left:292.500000px;}
.x57_c00107{left:294.000000px;}
.xd1_c00107{left:295.500000px;}
.x92_c00107{left:297.000000px;}
.xb9_c00107{left:300.000000px;}
.x3c_c00107{left:301.500000px;}
.x13_c00107{left:303.420000px;}
.x6f_c00107{left:304.500000px;}
.xc9_c00107{left:306.000000px;}
.x4c_c00107{left:307.080000px;}
.x58_c00107{left:309.000000px;}
.x82_c00107{left:310.920000px;}
.xd2_c00107{left:313.080000px;}
.x52_c00107{left:315.000000px;}
.x4d_c00107{left:316.500000px;}
.x46_c00107{left:319.080000px;}
.xd8_c00107{left:321.420000px;}
.x63_c00107{left:322.920000px;}
.xa4_c00107{left:324.000000px;}
.xca_c00107{left:325.920000px;}
.xba_c00107{left:327.000000px;}
.x21_c00107{left:328.080000px;}
.x14_c00107{left:330.000000px;}
.xd3_c00107{left:336.000000px;}
.x8d_c00107{left:339.000000px;}
.x8b_c00107{left:340.500000px;}
.x53_c00107{left:345.000000px;}
.x22_c00107{left:346.500000px;}
.x38_c00107{left:348.420000px;}
.x5_c00107{left:355.500000px;}
.x3d_c00107{left:356.580000px;}
.x2e_c00107{left:358.500000px;}
.x75_c00107{left:360.000000px;}
.x59_c00107{left:363.000000px;}
.xb3_c00107{left:364.500000px;}
.xdb_c00107{left:367.920000px;}
.x93_c00107{left:369.000000px;}
.x15_c00107{left:370.080000px;}
.xbb_c00107{left:376.920000px;}
.xab_c00107{left:379.920000px;}
.x64_c00107{left:381.420000px;}
.x54_c00107{left:382.500000px;}
.xe3_c00107{left:385.500000px;}
.x3e_c00107{left:388.920000px;}
.x4e_c00107{left:393.000000px;}
.x70_c00107{left:394.500000px;}
.x23_c00107{left:397.500000px;}
.x76_c00107{left:399.420000px;}
.x16_c00107{left:400.500000px;}
.x2_c00107{left:402.000000px;}
.xdc_c00107{left:403.500000px;}
.xac_c00107{left:405.000000px;}
.xa5_c00107{left:409.080000px;}
.x4f_c00107{left:412.500000px;}
.x6_c00107{left:415.500000px;}
.x8e_c00107{left:416.580000px;}
.xc3_c00107{left:420.420000px;}
.x83_c00107{left:421.500000px;}
.xa6_c00107{left:426.420000px;}
.x3f_c00107{left:427.920000px;}
.xc5_c00107{left:430.920000px;}
.x17_c00107{left:432.000000px;}
.x24_c00107{left:433.500000px;}
.x7_c00107{left:435.000000px;}
.x65_c00107{left:438.420000px;}
.xcb_c00107{left:439.500000px;}
.x2f_c00107{left:441.000000px;}
.x9b_c00107{left:442.500000px;}
.x8_c00107{left:447.420000px;}
.xdd_c00107{left:448.500000px;}
.x77_c00107{left:449.580000px;}
.xe2_c00107{left:452.580000px;}
.xd4_c00107{left:454.500000px;}
.xa7_c00107{left:456.420000px;}
.x5a_c00107{left:459.000000px;}
.xbc_c00107{left:460.500000px;}
.x30_c00107{left:462.420000px;}
.x9c_c00107{left:465.420000px;}
.xad_c00107{left:469.500000px;}
.x78_c00107{left:471.420000px;}
.x84_c00107{left:472.500000px;}
.x66_c00107{left:475.080000px;}
.x40_c00107{left:476.580000px;}
.xbd_c00107{left:478.500000px;}
.x5b_c00107{left:481.080000px;}
.xcc_c00107{left:483.000000px;}
.x9_c00107{left:484.500000px;}
.x47_c00107{left:487.080000px;}
.x18_c00107{left:489.000000px;}
.x9d_c00107{left:492.000000px;}
.x7d_c00107{left:493.080000px;}
.x41_c00107{left:495.420000px;}
.x8c_c00107{left:496.500000px;}
.x71_c00107{left:499.500000px;}
.xa8_c00107{left:500.580000px;}
.x25_c00107{left:504.420000px;}
.xc6_c00107{left:505.500000px;}
.x72_c00107{left:512.580000px;}
.x31_c00107{left:516.420000px;}
.x5c_c00107{left:519.000000px;}
.x67_c00107{left:520.080000px;}
.x94_c00107{left:523.920000px;}
.x19_c00107{left:525.420000px;}
.xae_c00107{left:526.500000px;}
.x85_c00107{left:527.580000px;}
.x79_c00107{left:532.920000px;}
.x9e_c00107{left:535.920000px;}
.xa_c00107{left:538.080000px;}
.x68_c00107{left:541.500000px;}
.x6b_c00107{left:542.580000px;}
.xb4_c00107{left:547.920000px;}
.x5d_c00107{left:550.500000px;}
.xcd_c00107{left:552.420000px;}
.x42_c00107{left:553.500000px;}
.x1a_c00107{left:555.420000px;}
.xc7_c00107{left:557.580000px;}
.x9f_c00107{left:559.080000px;}
.x69_c00107{left:560.580000px;}
.x50_c00107{left:564.000000px;}
.xde_c00107{left:567.000000px;}
.x48_c00107{left:568.080000px;}
.xa9_c00107{left:570.000000px;}
.x7e_c00107{left:572.580000px;}
.x5e_c00107{left:576.000000px;}
.xb_c00107{left:577.500000px;}
.x6a_c00107{left:580.500000px;}
.x86_c00107{left:581.580000px;}
.x95_c00107{left:583.080000px;}
.xbe_c00107{left:586.500000px;}
.x1b_c00107{left:589.500000px;}
.x6c_c00107{left:590.580000px;}
.xb5_c00107{left:591.645000px;}
.x26_c00107{left:592.920000px;}
.x32_c00107{left:595.500000px;}
.xaf_c00107{left:596.580000px;}
.x49_c00107{left:598.500000px;}
.x73_c00107{left:603.000000px;}
.x29_c00107{left:604.500000px;}
.xd6_c00107{left:605.775000px;}
.xa0_c00107{left:615.420000px;}
.xc_c00107{left:619.920000px;}
.x1c_c00107{left:621.000000px;}
.x96_c00107{left:623.580000px;}
.xb0_c00107{left:627.420000px;}
.x43_c00107{left:629.580000px;}
.x7a_c00107{left:633.000000px;}
.x5f_c00107{left:636.000000px;}
.x33_c00107{left:643.920000px;}
.xd_c00107{left:646.920000px;}
.xbf_c00107{left:649.500000px;}
.x44_c00107{left:651.000000px;}
.x7b_c00107{left:655.500000px;}
.xce_c00107{left:657.000000px;}
.xaa_c00107{left:661.500000px;}
.x87_c00107{left:664.080000px;}
.x1d_c00107{left:666.000000px;}
.xb6_c00107{left:669.000000px;}
.xd9_c00107{left:671.580000px;}
.x27_c00107{left:673.080000px;}
.xe_c00107{left:677.580000px;}
.xc4_c00107{left:680.580000px;}
.x51_c00107{left:688.080000px;}
.x2a_c00107{left:689.580000px;}
.xc0_c00107{left:691.080000px;}
.x28_c00107{left:693.000000px;}
.x88_c00107{left:694.080000px;}
.x4a_c00107{left:697.080000px;}
.x60_c00107{left:699.000000px;}
.xcf_c00107{left:700.500000px;}
.xa1_c00107{left:703.080000px;}
.x6d_c00107{left:706.920000px;}
.x2b_c00107{left:708.420000px;}
.xf_c00107{left:709.920000px;}
.x4b_c00107{left:715.080000px;}
.xb7_c00107{left:717.000000px;}
.x36_c00107{left:723.000000px;}
.x45_c00107{left:726.000000px;}
@media print{
.v0_c00107{vertical-align:0.000000pt;}
.ls0_c00107{letter-spacing:0.000000pt;}
.ws2_c00107{word-spacing:0.000000pt;}
.ws1_c00107{word-spacing:2.540090pt;}
.ws0_c00107{word-spacing:5.036951pt;}
.fs8_c00107{font-size:3.040000pt;}
.fs7_c00107{font-size:6.026667pt;}
.fs4_c00107{font-size:16.640000pt;}
.fs1_c00107{font-size:18.133333pt;}
.fs2_c00107{font-size:22.666667pt;}
.fs3_c00107{font-size:25.706667pt;}
.fs5_c00107{font-size:28.746667pt;}
.fs0_c00107{font-size:31.733333pt;}
.fs6_c00107{font-size:34.773333pt;}
.y0_c00107{bottom:0.000000pt;}
.yc2_c00107{bottom:223.773333pt;}
.ybf_c00107{bottom:224.360000pt;}
.yc1_c00107{bottom:224.373333pt;}
.yc0_c00107{bottom:224.560000pt;}
.ybe_c00107{bottom:239.026667pt;}
.yba_c00107{bottom:239.773333pt;}
.ybd_c00107{bottom:241.106667pt;}
.ybc_c00107{bottom:242.066667pt;}
.ybb_c00107{bottom:243.040000pt;}
.yb5_c00107{bottom:257.106667pt;}
.yb6_c00107{bottom:258.440000pt;}
.yb9_c00107{bottom:259.400000pt;}
.yb8_c00107{bottom:260.360000pt;}
.yb7_c00107{bottom:260.373333pt;}
.yb0_c00107{bottom:276.360000pt;}
.yb2_c00107{bottom:276.733333pt;}
.yb4_c00107{bottom:276.933333pt;}
.yb1_c00107{bottom:277.693333pt;}
.yb3_c00107{bottom:278.640000pt;}
.yab_c00107{bottom:292.733333pt;}
.yad_c00107{bottom:294.066667pt;}
.yaf_c00107{bottom:295.026667pt;}
.yac_c00107{bottom:295.973333pt;}
.yae_c00107{bottom:296.933333pt;}
.yaa_c00107{bottom:313.106667pt;}
.ya9_c00107{bottom:314.440000pt;}
.ya6_c00107{bottom:341.693333pt;}
.ya5_c00107{bottom:342.440000pt;}
.ya4_c00107{bottom:344.360000pt;}
.ya7_c00107{bottom:345.306667pt;}
.ya8_c00107{bottom:345.693333pt;}
.ya2_c00107{bottom:359.026667pt;}
.ya3_c00107{bottom:359.400000pt;}
.ya1_c00107{bottom:360.933333pt;}
.y9e_c00107{bottom:361.106667pt;}
.y9c_c00107{bottom:361.693333pt;}
.y9f_c00107{bottom:361.893333pt;}
.ya0_c00107{bottom:362.640000pt;}
.y9d_c00107{bottom:363.026667pt;}
.y9b_c00107{bottom:377.106667pt;}
.y98_c00107{bottom:378.440000pt;}
.y9a_c00107{bottom:379.026667pt;}
.y96_c00107{bottom:379.973333pt;}
.y97_c00107{bottom:380.360000pt;}
.y99_c00107{bottom:381.306667pt;}
.y94_c00107{bottom:395.773333pt;}
.y92_c00107{bottom:397.693333pt;}
.y95_c00107{bottom:397.893333pt;}
.y93_c00107{bottom:398.640000pt;}
.y91_c00107{bottom:415.026667pt;}
.y90_c00107{bottom:415.973333pt;}
.y8d_c00107{bottom:430.640000pt;}
.y8b_c00107{bottom:431.400000pt;}
.y8c_c00107{bottom:432.360000pt;}
.y8e_c00107{bottom:432.560000pt;}
.y8f_c00107{bottom:433.306667pt;}
.y89_c00107{bottom:447.026667pt;}
.y88_c00107{bottom:447.773333pt;}
.y8a_c00107{bottom:448.560000pt;}
.y86_c00107{bottom:449.693333pt;}
.y87_c00107{bottom:449.893333pt;}
.y83_c00107{bottom:466.440000pt;}
.y85_c00107{bottom:467.026667pt;}
.y84_c00107{bottom:468.360000pt;}
.y80_c00107{bottom:482.640000pt;}
.y82_c00107{bottom:483.400000pt;}
.y7f_c00107{bottom:483.773333pt;}
.y7e_c00107{bottom:484.560000pt;}
.y81_c00107{bottom:485.306667pt;}
.y7d_c00107{bottom:485.693333pt;}
.y7a_c00107{bottom:499.026667pt;}
.y78_c00107{bottom:501.106667pt;}
.y7c_c00107{bottom:501.693333pt;}
.y7b_c00107{bottom:501.893333pt;}
.y79_c00107{bottom:503.026667pt;}
.y77_c00107{bottom:518.440000pt;}
.y76_c00107{bottom:520.360000pt;}
.y74_c00107{bottom:541.106667pt;}
.y75_c00107{bottom:543.026667pt;}
.y73_c00107{bottom:571.026667pt;}
.y72_c00107{bottom:573.106667pt;}
.y6f_c00107{bottom:573.693333pt;}
.y71_c00107{bottom:573.706667pt;}
.y70_c00107{bottom:573.893333pt;}
.y6a_c00107{bottom:574.440000pt;}
.y6e_c00107{bottom:575.026667pt;}
.y6d_c00107{bottom:575.226667pt;}
.y6c_c00107{bottom:575.973333pt;}
.y6b_c00107{bottom:576.360000pt;}
.y67_c00107{bottom:590.440000pt;}
.y68_c00107{bottom:591.400000pt;}
.y64_c00107{bottom:591.773333pt;}
.y63_c00107{bottom:592.360000pt;}
.y66_c00107{bottom:592.560000pt;}
.y65_c00107{bottom:593.306667pt;}
.y69_c00107{bottom:593.693333pt;}
.y61_c00107{bottom:607.026667pt;}
.y60_c00107{bottom:607.773333pt;}
.y5e_c00107{bottom:609.106667pt;}
.y62_c00107{bottom:609.693333pt;}
.y5f_c00107{bottom:611.026667pt;}
.y5a_c00107{bottom:624.360000pt;}
.y5d_c00107{bottom:625.306667pt;}
.y5c_c00107{bottom:625.693333pt;}
.y59_c00107{bottom:626.440000pt;}
.y58_c00107{bottom:627.400000pt;}
.y5b_c00107{bottom:627.973333pt;}
.y57_c00107{bottom:628.360000pt;}
.y56_c00107{bottom:642.440000pt;}
.y55_c00107{bottom:642.640000pt;}
.y54_c00107{bottom:644.733333pt;}
.y50_c00107{bottom:661.106667pt;}
.y52_c00107{bottom:661.893333pt;}
.y53_c00107{bottom:662.640000pt;}
.y4e_c00107{bottom:663.026667pt;}
.y51_c00107{bottom:663.226667pt;}
.y4f_c00107{bottom:663.973333pt;}
.y4d_c00107{bottom:677.306667pt;}
.y4c_c00107{bottom:678.440000pt;}
.y4b_c00107{bottom:680.360000pt;}
.y47_c00107{bottom:695.026667pt;}
.y45_c00107{bottom:695.773333pt;}
.y49_c00107{bottom:696.360000pt;}
.y46_c00107{bottom:697.693333pt;}
.y4a_c00107{bottom:697.893333pt;}
.y48_c00107{bottom:698.640000pt;}
.y40_c00107{bottom:712.360000pt;}
.y42_c00107{bottom:713.106667pt;}
.y41_c00107{bottom:715.026667pt;}
.y43_c00107{bottom:715.226667pt;}
.y44_c00107{bottom:715.973333pt;}
.y3f_c00107{bottom:729.693333pt;}
.y3d_c00107{bottom:731.026667pt;}
.y3a_c00107{bottom:731.773333pt;}
.y39_c00107{bottom:732.360000pt;}
.y3e_c00107{bottom:732.560000pt;}
.y3b_c00107{bottom:733.693333pt;}
.y3c_c00107{bottom:734.640000pt;}
.y38_c00107{bottom:747.026667pt;}
.y36_c00107{bottom:748.360000pt;}
.y33_c00107{bottom:749.106667pt;}
.y35_c00107{bottom:749.893333pt;}
.y37_c00107{bottom:750.066667pt;}
.y32_c00107{bottom:751.026667pt;}
.y34_c00107{bottom:751.973333pt;}
.y31_c00107{bottom:768.360000pt;}
.y30_c00107{bottom:781.693333pt;}
.y2e_c00107{bottom:783.773333pt;}
.y2f_c00107{bottom:785.693333pt;}
.y2b_c00107{bottom:800.360000pt;}
.y26_c00107{bottom:800.733333pt;}
.y2c_c00107{bottom:800.760000pt;}
.y28_c00107{bottom:801.106667pt;}
.y2d_c00107{bottom:801.706667pt;}
.y2a_c00107{bottom:801.893333pt;}
.y27_c00107{bottom:803.026667pt;}
.y29_c00107{bottom:803.226667pt;}
.y23_c00107{bottom:820.360000pt;}
.y25_c00107{bottom:821.306667pt;}
.y24_c00107{bottom:821.693333pt;}
.y22_c00107{bottom:835.026667pt;}
.y1e_c00107{bottom:835.973333pt;}
.y21_c00107{bottom:837.106667pt;}
.y20_c00107{bottom:837.893333pt;}
.y1f_c00107{bottom:839.026667pt;}
.y1d_c00107{bottom:852.360000pt;}
.y1a_c00107{bottom:854.066667pt;}
.y1b_c00107{bottom:855.226667pt;}
.y1c_c00107{bottom:855.973333pt;}
.y18_c00107{bottom:871.773333pt;}
.y16_c00107{bottom:872.360000pt;}
.y19_c00107{bottom:873.306667pt;}
.y17_c00107{bottom:873.693333pt;}
.y15_c00107{bottom:887.026667pt;}
.y14_c00107{bottom:889.106667pt;}
.y12_c00107{bottom:905.306667pt;}
.ye_c00107{bottom:906.440000pt;}
.y13_c00107{bottom:907.026667pt;}
.y10_c00107{bottom:907.226667pt;}
.yf_c00107{bottom:907.973333pt;}
.y11_c00107{bottom:908.360000pt;}
.yc_c00107{bottom:922.826667pt;}
.ya_c00107{bottom:923.400000pt;}
.y9_c00107{bottom:923.773333pt;}
.yd_c00107{bottom:924.733333pt;}
.yb_c00107{bottom:925.693333pt;}
.y7_c00107{bottom:940.360000pt;}
.y8_c00107{bottom:941.106667pt;}
.y3_c00107{bottom:941.306667pt;}
.y6_c00107{bottom:941.893333pt;}
.y4_c00107{bottom:943.026667pt;}
.y5_c00107{bottom:943.973333pt;}
.y1_c00107{bottom:975.773333pt;}
.y2_c00107{bottom:976.933333pt;}
.h9_c00107{height:3.739141pt;}
.h8_c00107{height:7.412682pt;}
.h5_c00107{height:20.466875pt;}
.h2_c00107{height:22.303646pt;}
.h3_c00107{height:27.879557pt;}
.h4_c00107{height:31.618698pt;}
.h6_c00107{height:35.357839pt;}
.h1_c00107{height:39.031380pt;}
.h7_c00107{height:42.770521pt;}
.h0_c00107{height:1186.666667pt;}
.w0_c00107{width:782.666667pt;}
.x0_c00107{left:0.000000pt;}
.x97_c00107{left:134.666667pt;}
.x1_c00107{left:136.000000pt;}
.x2c_c00107{left:142.293333pt;}
.xda_c00107{left:146.293333pt;}
.xdf_c00107{left:148.373333pt;}
.x8f_c00107{left:149.333333pt;}
.xd0_c00107{left:151.040000pt;}
.x98_c00107{left:156.373333pt;}
.xc8_c00107{left:158.666667pt;}
.x7c_c00107{left:162.666667pt;}
.x10_c00107{left:164.000000pt;}
.x3_c00107{left:165.333333pt;}
.xb1_c00107{left:168.000000pt;}
.xc1_c00107{left:170.666667pt;}
.xc2_c00107{left:176.000000pt;}
.x90_c00107{left:177.333333pt;}
.x99_c00107{left:180.960000pt;}
.xe0_c00107{left:184.373333pt;}
.xa2_c00107{left:185.333333pt;}
.x1e_c00107{left:186.293333pt;}
.x61_c00107{left:192.000000pt;}
.x39_c00107{left:193.706667pt;}
.xb8_c00107{left:203.040000pt;}
.x7f_c00107{left:205.333333pt;}
.x55_c00107{left:207.040000pt;}
.x74_c00107{left:208.000000pt;}
.xd7_c00107{left:208.960000pt;}
.x3a_c00107{left:211.040000pt;}
.x34_c00107{left:213.333333pt;}
.xa3_c00107{left:216.000000pt;}
.x89_c00107{left:219.040000pt;}
.xd5_c00107{left:220.000000pt;}
.xe4_c00107{left:221.333333pt;}
.x11_c00107{left:222.666667pt;}
.x62_c00107{left:227.040000pt;}
.x56_c00107{left:228.000000pt;}
.x1f_c00107{left:228.960000pt;}
.x35_c00107{left:230.293333pt;}
.xb2_c00107{left:232.000000pt;}
.xe1_c00107{left:237.333333pt;}
.x91_c00107{left:239.040000pt;}
.x3b_c00107{left:240.960000pt;}
.x8a_c00107{left:243.040000pt;}
.x80_c00107{left:244.000000pt;}
.x4_c00107{left:246.666667pt;}
.x37_c00107{left:247.626667pt;}
.x2d_c00107{left:249.333333pt;}
.x20_c00107{left:251.040000pt;}
.x12_c00107{left:252.960000pt;}
.x9a_c00107{left:256.000000pt;}
.x6e_c00107{left:258.666667pt;}
.x81_c00107{left:260.000000pt;}
.x57_c00107{left:261.333333pt;}
.xd1_c00107{left:262.666667pt;}
.x92_c00107{left:264.000000pt;}
.xb9_c00107{left:266.666667pt;}
.x3c_c00107{left:268.000000pt;}
.x13_c00107{left:269.706667pt;}
.x6f_c00107{left:270.666667pt;}
.xc9_c00107{left:272.000000pt;}
.x4c_c00107{left:272.960000pt;}
.x58_c00107{left:274.666667pt;}
.x82_c00107{left:276.373333pt;}
.xd2_c00107{left:278.293333pt;}
.x52_c00107{left:280.000000pt;}
.x4d_c00107{left:281.333333pt;}
.x46_c00107{left:283.626667pt;}
.xd8_c00107{left:285.706667pt;}
.x63_c00107{left:287.040000pt;}
.xa4_c00107{left:288.000000pt;}
.xca_c00107{left:289.706667pt;}
.xba_c00107{left:290.666667pt;}
.x21_c00107{left:291.626667pt;}
.x14_c00107{left:293.333333pt;}
.xd3_c00107{left:298.666667pt;}
.x8d_c00107{left:301.333333pt;}
.x8b_c00107{left:302.666667pt;}
.x53_c00107{left:306.666667pt;}
.x22_c00107{left:308.000000pt;}
.x38_c00107{left:309.706667pt;}
.x5_c00107{left:316.000000pt;}
.x3d_c00107{left:316.960000pt;}
.x2e_c00107{left:318.666667pt;}
.x75_c00107{left:320.000000pt;}
.x59_c00107{left:322.666667pt;}
.xb3_c00107{left:324.000000pt;}
.xdb_c00107{left:327.040000pt;}
.x93_c00107{left:328.000000pt;}
.x15_c00107{left:328.960000pt;}
.xbb_c00107{left:335.040000pt;}
.xab_c00107{left:337.706667pt;}
.x64_c00107{left:339.040000pt;}
.x54_c00107{left:340.000000pt;}
.xe3_c00107{left:342.666667pt;}
.x3e_c00107{left:345.706667pt;}
.x4e_c00107{left:349.333333pt;}
.x70_c00107{left:350.666667pt;}
.x23_c00107{left:353.333333pt;}
.x76_c00107{left:355.040000pt;}
.x16_c00107{left:356.000000pt;}
.x2_c00107{left:357.333333pt;}
.xdc_c00107{left:358.666667pt;}
.xac_c00107{left:360.000000pt;}
.xa5_c00107{left:363.626667pt;}
.x4f_c00107{left:366.666667pt;}
.x6_c00107{left:369.333333pt;}
.x8e_c00107{left:370.293333pt;}
.xc3_c00107{left:373.706667pt;}
.x83_c00107{left:374.666667pt;}
.xa6_c00107{left:379.040000pt;}
.x3f_c00107{left:380.373333pt;}
.xc5_c00107{left:383.040000pt;}
.x17_c00107{left:384.000000pt;}
.x24_c00107{left:385.333333pt;}
.x7_c00107{left:386.666667pt;}
.x65_c00107{left:389.706667pt;}
.xcb_c00107{left:390.666667pt;}
.x2f_c00107{left:392.000000pt;}
.x9b_c00107{left:393.333333pt;}
.x8_c00107{left:397.706667pt;}
.xdd_c00107{left:398.666667pt;}
.x77_c00107{left:399.626667pt;}
.xe2_c00107{left:402.293333pt;}
.xd4_c00107{left:404.000000pt;}
.xa7_c00107{left:405.706667pt;}
.x5a_c00107{left:408.000000pt;}
.xbc_c00107{left:409.333333pt;}
.x30_c00107{left:411.040000pt;}
.x9c_c00107{left:413.706667pt;}
.xad_c00107{left:417.333333pt;}
.x78_c00107{left:419.040000pt;}
.x84_c00107{left:420.000000pt;}
.x66_c00107{left:422.293333pt;}
.x40_c00107{left:423.626667pt;}
.xbd_c00107{left:425.333333pt;}
.x5b_c00107{left:427.626667pt;}
.xcc_c00107{left:429.333333pt;}
.x9_c00107{left:430.666667pt;}
.x47_c00107{left:432.960000pt;}
.x18_c00107{left:434.666667pt;}
.x9d_c00107{left:437.333333pt;}
.x7d_c00107{left:438.293333pt;}
.x41_c00107{left:440.373333pt;}
.x8c_c00107{left:441.333333pt;}
.x71_c00107{left:444.000000pt;}
.xa8_c00107{left:444.960000pt;}
.x25_c00107{left:448.373333pt;}
.xc6_c00107{left:449.333333pt;}
.x72_c00107{left:455.626667pt;}
.x31_c00107{left:459.040000pt;}
.x5c_c00107{left:461.333333pt;}
.x67_c00107{left:462.293333pt;}
.x94_c00107{left:465.706667pt;}
.x19_c00107{left:467.040000pt;}
.xae_c00107{left:468.000000pt;}
.x85_c00107{left:468.960000pt;}
.x79_c00107{left:473.706667pt;}
.x9e_c00107{left:476.373333pt;}
.xa_c00107{left:478.293333pt;}
.x68_c00107{left:481.333333pt;}
.x6b_c00107{left:482.293333pt;}
.xb4_c00107{left:487.040000pt;}
.x5d_c00107{left:489.333333pt;}
.xcd_c00107{left:491.040000pt;}
.x42_c00107{left:492.000000pt;}
.x1a_c00107{left:493.706667pt;}
.xc7_c00107{left:495.626667pt;}
.x9f_c00107{left:496.960000pt;}
.x69_c00107{left:498.293333pt;}
.x50_c00107{left:501.333333pt;}
.xde_c00107{left:504.000000pt;}
.x48_c00107{left:504.960000pt;}
.xa9_c00107{left:506.666667pt;}
.x7e_c00107{left:508.960000pt;}
.x5e_c00107{left:512.000000pt;}
.xb_c00107{left:513.333333pt;}
.x6a_c00107{left:516.000000pt;}
.x86_c00107{left:516.960000pt;}
.x95_c00107{left:518.293333pt;}
.xbe_c00107{left:521.333333pt;}
.x1b_c00107{left:524.000000pt;}
.x6c_c00107{left:524.960000pt;}
.xb5_c00107{left:525.906667pt;}
.x26_c00107{left:527.040000pt;}
.x32_c00107{left:529.333333pt;}
.xaf_c00107{left:530.293333pt;}
.x49_c00107{left:532.000000pt;}
.x73_c00107{left:536.000000pt;}
.x29_c00107{left:537.333333pt;}
.xd6_c00107{left:538.466667pt;}
.xa0_c00107{left:547.040000pt;}
.xc_c00107{left:551.040000pt;}
.x1c_c00107{left:552.000000pt;}
.x96_c00107{left:554.293333pt;}
.xb0_c00107{left:557.706667pt;}
.x43_c00107{left:559.626667pt;}
.x7a_c00107{left:562.666667pt;}
.x5f_c00107{left:565.333333pt;}
.x33_c00107{left:572.373333pt;}
.xd_c00107{left:575.040000pt;}
.xbf_c00107{left:577.333333pt;}
.x44_c00107{left:578.666667pt;}
.x7b_c00107{left:582.666667pt;}
.xce_c00107{left:584.000000pt;}
.xaa_c00107{left:588.000000pt;}
.x87_c00107{left:590.293333pt;}
.x1d_c00107{left:592.000000pt;}
.xb6_c00107{left:594.666667pt;}
.xd9_c00107{left:596.960000pt;}
.x27_c00107{left:598.293333pt;}
.xe_c00107{left:602.293333pt;}
.xc4_c00107{left:604.960000pt;}
.x51_c00107{left:611.626667pt;}
.x2a_c00107{left:612.960000pt;}
.xc0_c00107{left:614.293333pt;}
.x28_c00107{left:616.000000pt;}
.x88_c00107{left:616.960000pt;}
.x4a_c00107{left:619.626667pt;}
.x60_c00107{left:621.333333pt;}
.xcf_c00107{left:622.666667pt;}
.xa1_c00107{left:624.960000pt;}
.x6d_c00107{left:628.373333pt;}
.x2b_c00107{left:629.706667pt;}
.xf_c00107{left:631.040000pt;}
.x4b_c00107{left:635.626667pt;}
.xb7_c00107{left:637.333333pt;}
.x36_c00107{left:642.666667pt;}
.x45_c00107{left:645.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_55a044cda04418f1b01b721e.woff2')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mea_c00108{transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);}
.m9f_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);}
.m9e_c00108{transform:matrix(0.276457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276457,0.000000,0.000000,0.250000,0,0);}
.m48_c00108{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m4c_c00108{transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);}
.m42_c00108{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m4b_c00108{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.mb4_c00108{transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);}
.m8f_c00108{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m5c_c00108{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m6_c00108{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m36_c00108{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m1d_c00108{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m30_c00108{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m4a_c00108{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m2f_c00108{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m96_c00108{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m9c_c00108{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.me4_c00108{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m55_c00108{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m79_c00108{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m46_c00108{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m29_c00108{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m3a_c00108{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.mc3_c00108{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m5b_c00108{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.mfb_c00108{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mb2_c00108{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m9a_c00108{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m7a_c00108{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mfa_c00108{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.mee_c00108{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.mc5_c00108{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.md2_c00108{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.mf3_c00108{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m7e_c00108{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mac_c00108{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.md5_c00108{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.md6_c00108{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mf7_c00108{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m39_c00108{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.m9b_c00108{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m95_c00108{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m17_c00108{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.mf6_c00108{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m47_c00108{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m33_c00108{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m3d_c00108{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.ma7_c00108{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m57_c00108{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.md3_c00108{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m74_c00108{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.ma2_c00108{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.me3_c00108{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.mc6_c00108{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mab_c00108{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m50_c00108{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m37_c00108{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m44_c00108{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m64_c00108{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m76_c00108{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m40_c00108{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m6e_c00108{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m58_c00108{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m62_c00108{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.mad_c00108{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m71_c00108{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m68_c00108{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.mb8_c00108{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.md8_c00108{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m6f_c00108{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mbe_c00108{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.mf4_c00108{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m6c_c00108{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m81_c00108{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m25_c00108{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.me8_c00108{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m5a_c00108{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m91_c00108{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m7c_c00108{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.mdc_c00108{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.mb3_c00108{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m87_c00108{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.mb7_c00108{transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);}
.m27_c00108{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.md1_c00108{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m86_c00108{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.ma1_c00108{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.md0_c00108{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.ma5_c00108{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m83_c00108{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m2c_c00108{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m3e_c00108{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.m5e_c00108{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.mdb_c00108{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m53_c00108{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mf1_c00108{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m6d_c00108{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m66_c00108{transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);}
.m2_c00108{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.me2_c00108{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.mde_c00108{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m13_c00108{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.mc4_c00108{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.mbf_c00108{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.mec_c00108{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.ma9_c00108{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.mf0_c00108{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.mae_c00108{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.mda_c00108{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m7b_c00108{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m77_c00108{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m60_c00108{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.mcf_c00108{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mdf_c00108{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m2a_c00108{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m18_c00108{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m8a_c00108{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m1_c00108{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.me5_c00108{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m7_c00108{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mb0_c00108{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m4f_c00108{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m21_c00108{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);}
.me7_c00108{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m99_c00108{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mcb_c00108{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mfe_c00108{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.mcd_c00108{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.md9_c00108{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m1b_c00108{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m54_c00108{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m2e_c00108{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m61_c00108{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m51_c00108{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mdd_c00108{transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);}
.m38_c00108{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m31_c00108{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mfd_c00108{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m11_c00108{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mba_c00108{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m9_c00108{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m23_c00108{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m4d_c00108{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.ma_c00108{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m84_c00108{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m56_c00108{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m88_c00108{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m92_c00108{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.med_c00108{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.ma4_c00108{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mc0_c00108{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m59_c00108{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m7f_c00108{transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);}
.m8b_c00108{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mbc_c00108{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m15_c00108{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m10_c00108{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mc2_c00108{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m5_c00108{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.ma6_c00108{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m12_c00108{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m8e_c00108{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m22_c00108{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m85_c00108{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m14_c00108{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m16_c00108{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.ma0_c00108{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m52_c00108{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m93_c00108{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m70_c00108{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m2b_c00108{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m1f_c00108{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m67_c00108{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m41_c00108{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m32_c00108{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m82_c00108{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m1c_c00108{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.mbb_c00108{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mcc_c00108{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);}
.m34_c00108{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m1e_c00108{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.m73_c00108{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m63_c00108{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.mf_c00108{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m9d_c00108{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m98_c00108{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m3_c00108{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.mb_c00108{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m8d_c00108{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.md7_c00108{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m89_c00108{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.mb5_c00108{transform:matrix(0.574675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574675,0.000000,0.000000,0.250000,0,0);}
.m26_c00108{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mc8_c00108{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.mc9_c00108{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m97_c00108{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.ma8_c00108{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.meb_c00108{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m19_c00108{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mf5_c00108{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.mc_c00108{transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);}
.m49_c00108{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.me0_c00108{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.mc1_c00108{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m72_c00108{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m45_c00108{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m3f_c00108{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m3b_c00108{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m8c_c00108{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.mca_c00108{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mfc_c00108{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m78_c00108{transform:matrix(0.601765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601765,0.000000,0.000000,0.250000,0,0);}
.m80_c00108{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m0_c00108{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.mb9_c00108{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.m5f_c00108{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.md4_c00108{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.me_c00108{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m75_c00108{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m35_c00108{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.ma3_c00108{transform:matrix(0.617739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617739,0.000000,0.000000,0.250000,0,0);}
.mf2_c00108{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.mef_c00108{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m6a_c00108{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);}
.m20_c00108{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mf8_c00108{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m69_c00108{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.mce_c00108{transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);}
.m5d_c00108{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m7d_c00108{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m1a_c00108{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m2d_c00108{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.me1_c00108{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m43_c00108{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mb6_c00108{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m65_c00108{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.mb1_c00108{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.mbd_c00108{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m28_c00108{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.me9_c00108{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m4e_c00108{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m8_c00108{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mf9_c00108{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.maa_c00108{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m90_c00108{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m3c_c00108{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m94_c00108{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.me6_c00108{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.maf_c00108{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.md_c00108{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m6b_c00108{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mc7_c00108{transform:matrix(0.958824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.958824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.958824,0.000000,0.000000,0.250000,0,0);}
.m24_c00108{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m4_c00108{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-6.312800px;}
.ws1_c00108{word-spacing:0.000000px;}
.fc0_c00108{color:transparent;}
.fs3_c00108{font-size:3.420000px;}
.fs8_c00108{font-size:11.880000px;}
.fs2_c00108{font-size:18.720000px;}
.fs0_c00108{font-size:20.400000px;}
.fs5_c00108{font-size:25.500000px;}
.fs1_c00108{font-size:28.920000px;}
.fs6_c00108{font-size:32.340000px;}
.fs4_c00108{font-size:35.700000px;}
.fs7_c00108{font-size:39.120000px;}
.y0_c00108{bottom:0.000000px;}
.y3_c00108{bottom:227.130000px;}
.yd7_c00108{bottom:250.905000px;}
.yd2_c00108{bottom:253.245000px;}
.yd6_c00108{bottom:253.905000px;}
.yd5_c00108{bottom:254.130000px;}
.yd4_c00108{bottom:254.970000px;}
.yd3_c00108{bottom:255.405000px;}
.ycf_c00108{bottom:271.245000px;}
.yd0_c00108{bottom:271.470000px;}
.ycd_c00108{bottom:272.745000px;}
.yd1_c00108{bottom:274.470000px;}
.yce_c00108{bottom:274.905000px;}
.ycc_c00108{bottom:290.745000px;}
.yca_c00108{bottom:292.245000px;}
.ycb_c00108{bottom:292.905000px;}
.yc9_c00108{bottom:293.130000px;}
.yc8_c00108{bottom:294.405000px;}
.yc7_c00108{bottom:311.325000px;}
.yc3_c00108{bottom:311.745000px;}
.yc4_c00108{bottom:313.905000px;}
.yc6_c00108{bottom:314.130000px;}
.yc5_c00108{bottom:314.970000px;}
.yc2_c00108{bottom:330.825000px;}
.yc0_c00108{bottom:331.245000px;}
.yc1_c00108{bottom:331.470000px;}
.ybf_c00108{bottom:333.405000px;}
.yba_c00108{bottom:348.630000px;}
.ybb_c00108{bottom:350.745000px;}
.ybc_c00108{bottom:350.970000px;}
.ybe_c00108{bottom:351.825000px;}
.ybd_c00108{bottom:352.905000px;}
.yb9_c00108{bottom:353.130000px;}
.yb8_c00108{bottom:368.325000px;}
.yb7_c00108{bottom:368.775000px;}
.yb5_c00108{bottom:369.405000px;}
.yb4_c00108{bottom:371.325000px;}
.yb1_c00108{bottom:371.745000px;}
.yb2_c00108{bottom:372.405000px;}
.yb3_c00108{bottom:372.630000px;}
.yb6_c00108{bottom:375.630000px;}
.yae_c00108{bottom:389.745000px;}
.ya9_c00108{bottom:389.970000px;}
.yad_c00108{bottom:390.825000px;}
.yaa_c00108{bottom:391.245000px;}
.yaf_c00108{bottom:391.905000px;}
.yb0_c00108{bottom:392.130000px;}
.yac_c00108{bottom:392.325000px;}
.yab_c00108{bottom:393.405000px;}
.ya4_c00108{bottom:408.405000px;}
.ya7_c00108{bottom:409.245000px;}
.ya3_c00108{bottom:410.745000px;}
.ya8_c00108{bottom:411.405000px;}
.ya5_c00108{bottom:411.825000px;}
.ya6_c00108{bottom:412.905000px;}
.ya2_c00108{bottom:427.905000px;}
.ya1_c00108{bottom:429.405000px;}
.y9c_c00108{bottom:430.245000px;}
.y9d_c00108{bottom:430.470000px;}
.ya0_c00108{bottom:431.325000px;}
.y9e_c00108{bottom:431.970000px;}
.y9f_c00108{bottom:432.405000px;}
.y99_c00108{bottom:448.245000px;}
.y9b_c00108{bottom:448.470000px;}
.y95_c00108{bottom:448.905000px;}
.y9a_c00108{bottom:449.745000px;}
.y93_c00108{bottom:449.970000px;}
.y96_c00108{bottom:450.630000px;}
.y94_c00108{bottom:450.825000px;}
.y98_c00108{bottom:451.905000px;}
.y97_c00108{bottom:451.920000px;}
.y92_c00108{bottom:452.970000px;}
.y91_c00108{bottom:466.905000px;}
.y8c_c00108{bottom:469.245000px;}
.y90_c00108{bottom:469.470000px;}
.y8f_c00108{bottom:469.905000px;}
.y8d_c00108{bottom:471.405000px;}
.y8e_c00108{bottom:472.905000px;}
.y8b_c00108{bottom:487.905000px;}
.y88_c00108{bottom:488.745000px;}
.y8a_c00108{bottom:488.970000px;}
.y87_c00108{bottom:489.405000px;}
.y89_c00108{bottom:490.905000px;}
.y85_c00108{bottom:507.405000px;}
.y84_c00108{bottom:508.245000px;}
.y86_c00108{bottom:508.470000px;}
.y81_c00108{bottom:509.325000px;}
.y82_c00108{bottom:509.745000px;}
.y83_c00108{bottom:510.405000px;}
.y80_c00108{bottom:527.745000px;}
.y7f_c00108{bottom:530.970000px;}
.y7e_c00108{bottom:531.405000px;}
.y7d_c00108{bottom:548.745000px;}
.y7c_c00108{bottom:549.630000px;}
.y7b_c00108{bottom:550.470000px;}
.y7a_c00108{bottom:550.905000px;}
.y79_c00108{bottom:568.245000px;}
.y78_c00108{bottom:569.130000px;}
.y77_c00108{bottom:570.405000px;}
.y73_c00108{bottom:587.745000px;}
.y75_c00108{bottom:588.825000px;}
.y76_c00108{bottom:589.470000px;}
.y72_c00108{bottom:589.905000px;}
.y74_c00108{bottom:590.130000px;}
.y71_c00108{bottom:607.245000px;}
.y70_c00108{bottom:608.325000px;}
.y6e_c00108{bottom:608.745000px;}
.y6d_c00108{bottom:609.405000px;}
.y6b_c00108{bottom:609.630000px;}
.y6f_c00108{bottom:610.470000px;}
.y6c_c00108{bottom:610.905000px;}
.y66_c00108{bottom:625.905000px;}
.y6a_c00108{bottom:626.745000px;}
.y69_c00108{bottom:627.825000px;}
.y67_c00108{bottom:628.245000px;}
.y68_c00108{bottom:628.905000px;}
.y65_c00108{bottom:630.405000px;}
.y63_c00108{bottom:647.325000px;}
.y62_c00108{bottom:647.745000px;}
.y64_c00108{bottom:648.630000px;}
.y61_c00108{bottom:648.825000px;}
.y60_c00108{bottom:649.905000px;}
.y5e_c00108{bottom:664.905000px;}
.y5c_c00108{bottom:666.180000px;}
.y5b_c00108{bottom:667.245000px;}
.y5f_c00108{bottom:668.325000px;}
.y5a_c00108{bottom:669.405000px;}
.y5d_c00108{bottom:670.470000px;}
.y59_c00108{bottom:686.745000px;}
.y58_c00108{bottom:706.245000px;}
.y55_c00108{bottom:708.405000px;}
.y57_c00108{bottom:708.630000px;}
.y56_c00108{bottom:709.470000px;}
.y53_c00108{bottom:725.745000px;}
.y52_c00108{bottom:727.905000px;}
.y54_c00108{bottom:728.130000px;}
.y51_c00108{bottom:745.245000px;}
.y50_c00108{bottom:746.325000px;}
.y4e_c00108{bottom:746.745000px;}
.y4c_c00108{bottom:747.405000px;}
.y4f_c00108{bottom:747.630000px;}
.y4b_c00108{bottom:748.470000px;}
.y4d_c00108{bottom:748.905000px;}
.y48_c00108{bottom:766.245000px;}
.y47_c00108{bottom:767.130000px;}
.y4a_c00108{bottom:767.325000px;}
.y49_c00108{bottom:768.405000px;}
.y46_c00108{bottom:785.325000px;}
.y45_c00108{bottom:785.745000px;}
.y43_c00108{bottom:787.905000px;}
.y44_c00108{bottom:788.970000px;}
.y40_c00108{bottom:805.245000px;}
.y41_c00108{bottom:807.405000px;}
.y42_c00108{bottom:808.470000px;}
.y3f_c00108{bottom:824.325000px;}
.y3e_c00108{bottom:824.745000px;}
.y3b_c00108{bottom:826.050000px;}
.y3d_c00108{bottom:826.905000px;}
.y3c_c00108{bottom:827.130000px;}
.y3a_c00108{bottom:827.970000px;}
.y36_c00108{bottom:844.245000px;}
.y39_c00108{bottom:845.325000px;}
.y37_c00108{bottom:846.405000px;}
.y38_c00108{bottom:846.630000px;}
.y35_c00108{bottom:847.470000px;}
.y30_c00108{bottom:863.325000px;}
.y2d_c00108{bottom:863.745000px;}
.y32_c00108{bottom:863.970000px;}
.y34_c00108{bottom:864.825000px;}
.y2f_c00108{bottom:865.905000px;}
.y33_c00108{bottom:866.130000px;}
.y31_c00108{bottom:866.970000px;}
.y2e_c00108{bottom:867.420000px;}
.y2b_c00108{bottom:883.245000px;}
.y2c_c00108{bottom:883.470000px;}
.y2a_c00108{bottom:902.745000px;}
.y29_c00108{bottom:904.245000px;}
.y27_c00108{bottom:904.905000px;}
.y28_c00108{bottom:906.405000px;}
.y25_c00108{bottom:921.405000px;}
.y23_c00108{bottom:922.470000px;}
.y24_c00108{bottom:922.680000px;}
.y22_c00108{bottom:923.745000px;}
.y26_c00108{bottom:924.630000px;}
.y21_c00108{bottom:925.905000px;}
.y1e_c00108{bottom:943.245000px;}
.y20_c00108{bottom:944.130000px;}
.y1d_c00108{bottom:944.970000px;}
.y1f_c00108{bottom:945.405000px;}
.y19_c00108{bottom:962.745000px;}
.y1c_c00108{bottom:964.470000px;}
.y1a_c00108{bottom:964.905000px;}
.y1b_c00108{bottom:965.130000px;}
.y18_c00108{bottom:982.245000px;}
.y15_c00108{bottom:983.325000px;}
.y16_c00108{bottom:984.405000px;}
.y17_c00108{bottom:984.630000px;}
.y13_c00108{bottom:1001.745000px;}
.y11_c00108{bottom:1003.905000px;}
.y12_c00108{bottom:1003.920000px;}
.y14_c00108{bottom:1004.130000px;}
.yf_c00108{bottom:1021.245000px;}
.ye_c00108{bottom:1023.405000px;}
.y10_c00108{bottom:1024.470000px;}
.yc_c00108{bottom:1041.825000px;}
.yb_c00108{bottom:1042.905000px;}
.yd_c00108{bottom:1043.970000px;}
.y9_c00108{bottom:1059.405000px;}
.y6_c00108{bottom:1061.745000px;}
.y7_c00108{bottom:1062.405000px;}
.y8_c00108{bottom:1062.630000px;}
.ya_c00108{bottom:1063.470000px;}
.y4_c00108{bottom:1063.905000px;}
.y5_c00108{bottom:1063.920000px;}
.y2_c00108{bottom:1099.905000px;}
.y1_c00108{bottom:1100.550000px;}
.h4_c00108{height:4.206533px;}
.h9_c00108{height:14.612168px;}
.h3_c00108{height:23.025234px;}
.h1_c00108{height:25.091602px;}
.h6_c00108{height:31.364502px;}
.h2_c00108{height:35.571035px;}
.h7_c00108{height:39.777568px;}
.h5_c00108{height:43.910303px;}
.h8_c00108{height:48.116836px;}
.h0_c00108{height:1335.000000px;}
.w0_c00108{width:880.500000px;}
.x0_c00108{left:0.000000px;}
.x47_c00108{left:151.500000px;}
.x12_c00108{left:152.580000px;}
.xad_c00108{left:167.580000px;}
.x4_c00108{left:169.080000px;}
.xe4_c00108{left:170.580000px;}
.x50_c00108{left:172.500000px;}
.x102_c00108{left:177.000000px;}
.x9c_c00108{left:180.000000px;}
.x5b_c00108{left:181.920000px;}
.xfe_c00108{left:183.000000px;}
.x103_c00108{left:184.500000px;}
.xba_c00108{left:186.000000px;}
.xcb_c00108{left:187.920000px;}
.xfa_c00108{left:190.500000px;}
.x6b_c00108{left:193.920000px;}
.x93_c00108{left:198.000000px;}
.x105_c00108{left:199.080000px;}
.x13_c00108{left:200.580000px;}
.xdf_c00108{left:202.080000px;}
.x10e_c00108{left:203.580000px;}
.xf3_c00108{left:205.920000px;}
.x5c_c00108{left:207.000000px;}
.x85_c00108{left:208.500000px;}
.x48_c00108{left:211.080000px;}
.x7d_c00108{left:212.580000px;}
.x6c_c00108{left:214.500000px;}
.xc0_c00108{left:216.000000px;}
.x3d_c00108{left:217.500000px;}
.x74_c00108{left:219.000000px;}
.x111_c00108{left:220.920000px;}
.xd7_c00108{left:222.000000px;}
.x1e_c00108{left:223.500000px;}
.x64_c00108{left:225.000000px;}
.x8e_c00108{left:226.920000px;}
.x51_c00108{left:228.420000px;}
.x30_c00108{left:229.500000px;}
.x94_c00108{left:231.000000px;}
.x14_c00108{left:232.080000px;}
.x3e_c00108{left:237.420000px;}
.xb4_c00108{left:241.500000px;}
.xee_c00108{left:244.920000px;}
.xc7_c00108{left:246.000000px;}
.x31_c00108{left:247.500000px;}
.x23_c00108{left:249.000000px;}
.x75_c00108{left:253.500000px;}
.x65_c00108{left:255.000000px;}
.x7e_c00108{left:258.420000px;}
.x116_c00108{left:259.920000px;}
.x5_c00108{left:261.000000px;}
.x9d_c00108{left:262.080000px;}
.xcc_c00108{left:264.000000px;}
.x32_c00108{left:265.500000px;}
.x24_c00108{left:266.580000px;}
.xd4_c00108{left:268.500000px;}
.xe5_c00108{left:269.580000px;}
.x6d_c00108{left:271.500000px;}
.x76_c00108{left:273.420000px;}
.x5d_c00108{left:275.580000px;}
.xd2_c00108{left:277.920000px;}
.xfb_c00108{left:280.500000px;}
.x6_c00108{left:282.000000px;}
.xcd_c00108{left:283.500000px;}
.x86_c00108{left:285.000000px;}
.xc8_c00108{left:288.000000px;}
.x15_c00108{left:289.920000px;}
.xae_c00108{left:292.275000px;}
.x52_c00108{left:294.000000px;}
.x1f_c00108{left:297.000000px;}
.x49_c00108{left:299.580000px;}
.x95_c00108{left:303.000000px;}
.x6e_c00108{left:306.000000px;}
.x112_c00108{left:307.080000px;}
.x9e_c00108{left:309.420000px;}
.xd8_c00108{left:311.580000px;}
.x7_c00108{left:313.500000px;}
.x10f_c00108{left:315.000000px;}
.x3f_c00108{left:316.920000px;}
.xdc_c00108{left:318.000000px;}
.xf4_c00108{left:322.500000px;}
.x8f_c00108{left:325.500000px;}
.x113_c00108{left:327.420000px;}
.xb5_c00108{left:328.500000px;}
.x77_c00108{left:330.000000px;}
.x5e_c00108{left:331.080000px;}
.xe6_c00108{left:333.000000px;}
.x53_c00108{left:334.080000px;}
.x33_c00108{left:335.580000px;}
.xc1_c00108{left:338.580000px;}
.x25_c00108{left:340.500000px;}
.x9f_c00108{left:346.080000px;}
.xaf_c00108{left:348.645000px;}
.x40_c00108{left:351.000000px;}
.xe0_c00108{left:352.080000px;}
.x96_c00108{left:354.420000px;}
.x16_c00108{left:358.920000px;}
.xc9_c00108{left:360.000000px;}
.x26_c00108{left:361.080000px;}
.x4a_c00108{left:363.000000px;}
.x8_c00108{left:366.000000px;}
.x34_c00108{left:367.275000px;}
.x5f_c00108{left:369.000000px;}
.xce_c00108{left:370.920000px;}
.x104_c00108{left:372.420000px;}
.xd9_c00108{left:373.500000px;}
.xa0_c00108{left:378.420000px;}
.xb0_c00108{left:379.500000px;}
.x27_c00108{left:381.420000px;}
.xc2_c00108{left:382.500000px;}
.x6f_c00108{left:384.000000px;}
.x54_c00108{left:385.275000px;}
.xf5_c00108{left:387.855000px;}
.xa9_c00108{left:390.000000px;}
.xef_c00108{left:391.500000px;}
.x87_c00108{left:392.580000px;}
.x9_c00108{left:394.500000px;}
.xe1_c00108{left:396.420000px;}
.x17_c00108{left:397.920000px;}
.x1_c00108{left:399.000000px;}
.x97_c00108{left:400.500000px;}
.xbb_c00108{left:402.420000px;}
.x20_c00108{left:404.580000px;}
.x90_c00108{left:406.920000px;}
.xa_c00108{left:408.000000px;}
.xe7_c00108{left:409.500000px;}
.x66_c00108{left:411.420000px;}
.xb1_c00108{left:414.000000px;}
.xa1_c00108{left:415.920000px;}
.x35_c00108{left:417.000000px;}
.xff_c00108{left:421.500000px;}
.x55_c00108{left:423.000000px;}
.x106_c00108{left:424.500000px;}
.xf6_c00108{left:425.580000px;}
.x18_c00108{left:427.500000px;}
.x91_c00108{left:433.500000px;}
.x21_c00108{left:435.420000px;}
.xaa_c00108{left:436.920000px;}
.xcf_c00108{left:438.000000px;}
.x28_c00108{left:439.500000px;}
.xb6_c00108{left:441.000000px;}
.xa2_c00108{left:442.500000px;}
.xb_c00108{left:444.000000px;}
.x4b_c00108{left:447.000000px;}
.x7f_c00108{left:448.500000px;}
.x70_c00108{left:450.000000px;}
.x36_c00108{left:452.580000px;}
.x88_c00108{left:455.580000px;}
.x98_c00108{left:460.500000px;}
.x41_c00108{left:462.420000px;}
.x22_c00108{left:463.500000px;}
.x60_c00108{left:465.000000px;}
.xf0_c00108{left:466.500000px;}
.x29_c00108{left:468.000000px;}
.x19_c00108{left:469.920000px;}
.x10b_c00108{left:471.420000px;}
.x80_c00108{left:474.420000px;}
.x4c_c00108{left:477.420000px;}
.xd3_c00108{left:478.500000px;}
.xe8_c00108{left:481.500000px;}
.xb7_c00108{left:484.920000px;}
.x37_c00108{left:486.000000px;}
.xc_c00108{left:487.080000px;}
.xda_c00108{left:489.420000px;}
.x42_c00108{left:490.920000px;}
.x61_c00108{left:492.000000px;}
.xa3_c00108{left:493.500000px;}
.xb2_c00108{left:495.000000px;}
.x78_c00108{left:497.580000px;}
.x89_c00108{left:499.500000px;}
.xe2_c00108{left:502.920000px;}
.x114_c00108{left:504.000000px;}
.xf7_c00108{left:505.500000px;}
.xd_c00108{left:507.420000px;}
.x67_c00108{left:508.500000px;}
.xc3_c00108{left:510.000000px;}
.x110_c00108{left:511.920000px;}
.x71_c00108{left:513.000000px;}
.x107_c00108{left:514.500000px;}
.xe9_c00108{left:516.000000px;}
.xab_c00108{left:517.500000px;}
.x79_c00108{left:519.000000px;}
.x4d_c00108{left:522.420000px;}
.xbc_c00108{left:523.500000px;}
.x8a_c00108{left:524.580000px;}
.x1a_c00108{left:526.500000px;}
.xa4_c00108{left:528.000000px;}
.xb8_c00108{left:529.920000px;}
.x38_c00108{left:531.420000px;}
.x56_c00108{left:532.500000px;}
.x2a_c00108{left:533.580000px;}
.xea_c00108{left:536.580000px;}
.xd5_c00108{left:538.080000px;}
.x81_c00108{left:540.420000px;}
.x108_c00108{left:541.920000px;}
.x10c_c00108{left:543.000000px;}
.x72_c00108{left:544.500000px;}
.x62_c00108{left:545.580000px;}
.xca_c00108{left:549.420000px;}
.x2b_c00108{left:552.420000px;}
.xb3_c00108{left:556.500000px;}
.x57_c00108{left:558.000000px;}
.x43_c00108{left:562.500000px;}
.xc4_c00108{left:564.000000px;}
.x8b_c00108{left:565.080000px;}
.x82_c00108{left:567.420000px;}
.x109_c00108{left:568.500000px;}
.xac_c00108{left:570.000000px;}
.x68_c00108{left:571.500000px;}
.xbd_c00108{left:574.500000px;}
.xa5_c00108{left:576.000000px;}
.x99_c00108{left:577.920000px;}
.x1b_c00108{left:579.000000px;}
.xf8_c00108{left:580.920000px;}
.x2c_c00108{left:582.000000px;}
.xeb_c00108{left:583.920000px;}
.x100_c00108{left:585.000000px;}
.xdd_c00108{left:586.500000px;}
.xe3_c00108{left:588.000000px;}
.xdb_c00108{left:591.000000px;}
.xe_c00108{left:594.000000px;}
.xf1_c00108{left:597.420000px;}
.x10d_c00108{left:598.920000px;}
.x39_c00108{left:601.275000px;}
.x83_c00108{left:606.000000px;}
.x58_c00108{left:607.920000px;}
.x8c_c00108{left:609.000000px;}
.x69_c00108{left:610.500000px;}
.x115_c00108{left:613.500000px;}
.x9a_c00108{left:615.420000px;}
.xf_c00108{left:616.500000px;}
.xd0_c00108{left:618.000000px;}
.xf9_c00108{left:621.420000px;}
.x1c_c00108{left:624.000000px;}
.x4e_c00108{left:625.500000px;}
.xa6_c00108{left:627.000000px;}
.xc5_c00108{left:630.000000px;}
.x2d_c00108{left:633.000000px;}
.xfc_c00108{left:634.500000px;}
.x44_c00108{left:636.000000px;}
.x3a_c00108{left:639.000000px;}
.xbe_c00108{left:640.500000px;}
.xec_c00108{left:642.420000px;}
.x9b_c00108{left:643.500000px;}
.x10_c00108{left:645.000000px;}
.x6a_c00108{left:646.500000px;}
.x2e_c00108{left:647.580000px;}
.x10a_c00108{left:651.000000px;}
.x7a_c00108{left:652.080000px;}
.x45_c00108{left:657.420000px;}
.x101_c00108{left:658.500000px;}
.xbf_c00108{left:660.420000px;}
.x4f_c00108{left:661.500000px;}
.xd6_c00108{left:663.000000px;}
.x3b_c00108{left:664.080000px;}
.xd1_c00108{left:669.000000px;}
.x59_c00108{left:670.920000px;}
.x7b_c00108{left:673.920000px;}
.xa7_c00108{left:675.000000px;}
.xc6_c00108{left:676.920000px;}
.x63_c00108{left:679.500000px;}
.xfd_c00108{left:681.420000px;}
.xf2_c00108{left:682.500000px;}
.x73_c00108{left:685.500000px;}
.x46_c00108{left:687.000000px;}
.xa8_c00108{left:688.500000px;}
.x8d_c00108{left:691.080000px;}
.x84_c00108{left:693.000000px;}
.x3c_c00108{left:694.080000px;}
.xed_c00108{left:695.580000px;}
.x2f_c00108{left:697.920000px;}
.x5a_c00108{left:699.420000px;}
.x7c_c00108{left:702.420000px;}
.x1d_c00108{left:703.500000px;}
.xb9_c00108{left:708.420000px;}
.xde_c00108{left:709.920000px;}
.x92_c00108{left:711.420000px;}
.x2_c00108{left:713.580000px;}
.x11_c00108{left:716.580000px;}
.x3_c00108{left:726.000000px;}
@media print{
.v0_c00108{vertical-align:0.000000pt;}
.ls0_c00108{letter-spacing:0.000000pt;}
.ws0_c00108{word-spacing:-5.611378pt;}
.ws1_c00108{word-spacing:0.000000pt;}
.fs3_c00108{font-size:3.040000pt;}
.fs8_c00108{font-size:10.560000pt;}
.fs2_c00108{font-size:16.640000pt;}
.fs0_c00108{font-size:18.133333pt;}
.fs5_c00108{font-size:22.666667pt;}
.fs1_c00108{font-size:25.706667pt;}
.fs6_c00108{font-size:28.746667pt;}
.fs4_c00108{font-size:31.733333pt;}
.fs7_c00108{font-size:34.773333pt;}
.y0_c00108{bottom:0.000000pt;}
.y3_c00108{bottom:201.893333pt;}
.yd7_c00108{bottom:223.026667pt;}
.yd2_c00108{bottom:225.106667pt;}
.yd6_c00108{bottom:225.693333pt;}
.yd5_c00108{bottom:225.893333pt;}
.yd4_c00108{bottom:226.640000pt;}
.yd3_c00108{bottom:227.026667pt;}
.ycf_c00108{bottom:241.106667pt;}
.yd0_c00108{bottom:241.306667pt;}
.ycd_c00108{bottom:242.440000pt;}
.yd1_c00108{bottom:243.973333pt;}
.yce_c00108{bottom:244.360000pt;}
.ycc_c00108{bottom:258.440000pt;}
.yca_c00108{bottom:259.773333pt;}
.ycb_c00108{bottom:260.360000pt;}
.yc9_c00108{bottom:260.560000pt;}
.yc8_c00108{bottom:261.693333pt;}
.yc7_c00108{bottom:276.733333pt;}
.yc3_c00108{bottom:277.106667pt;}
.yc4_c00108{bottom:279.026667pt;}
.yc6_c00108{bottom:279.226667pt;}
.yc5_c00108{bottom:279.973333pt;}
.yc2_c00108{bottom:294.066667pt;}
.yc0_c00108{bottom:294.440000pt;}
.yc1_c00108{bottom:294.640000pt;}
.ybf_c00108{bottom:296.360000pt;}
.yba_c00108{bottom:309.893333pt;}
.ybb_c00108{bottom:311.773333pt;}
.ybc_c00108{bottom:311.973333pt;}
.ybe_c00108{bottom:312.733333pt;}
.ybd_c00108{bottom:313.693333pt;}
.yb9_c00108{bottom:313.893333pt;}
.yb8_c00108{bottom:327.400000pt;}
.yb7_c00108{bottom:327.800000pt;}
.yb5_c00108{bottom:328.360000pt;}
.yb4_c00108{bottom:330.066667pt;}
.yb1_c00108{bottom:330.440000pt;}
.yb2_c00108{bottom:331.026667pt;}
.yb3_c00108{bottom:331.226667pt;}
.yb6_c00108{bottom:333.893333pt;}
.yae_c00108{bottom:346.440000pt;}
.ya9_c00108{bottom:346.640000pt;}
.yad_c00108{bottom:347.400000pt;}
.yaa_c00108{bottom:347.773333pt;}
.yaf_c00108{bottom:348.360000pt;}
.yb0_c00108{bottom:348.560000pt;}
.yac_c00108{bottom:348.733333pt;}
.yab_c00108{bottom:349.693333pt;}
.ya4_c00108{bottom:363.026667pt;}
.ya7_c00108{bottom:363.773333pt;}
.ya3_c00108{bottom:365.106667pt;}
.ya8_c00108{bottom:365.693333pt;}
.ya5_c00108{bottom:366.066667pt;}
.ya6_c00108{bottom:367.026667pt;}
.ya2_c00108{bottom:380.360000pt;}
.ya1_c00108{bottom:381.693333pt;}
.y9c_c00108{bottom:382.440000pt;}
.y9d_c00108{bottom:382.640000pt;}
.ya0_c00108{bottom:383.400000pt;}
.y9e_c00108{bottom:383.973333pt;}
.y9f_c00108{bottom:384.360000pt;}
.y99_c00108{bottom:398.440000pt;}
.y9b_c00108{bottom:398.640000pt;}
.y95_c00108{bottom:399.026667pt;}
.y9a_c00108{bottom:399.773333pt;}
.y93_c00108{bottom:399.973333pt;}
.y96_c00108{bottom:400.560000pt;}
.y94_c00108{bottom:400.733333pt;}
.y98_c00108{bottom:401.693333pt;}
.y97_c00108{bottom:401.706667pt;}
.y92_c00108{bottom:402.640000pt;}
.y91_c00108{bottom:415.026667pt;}
.y8c_c00108{bottom:417.106667pt;}
.y90_c00108{bottom:417.306667pt;}
.y8f_c00108{bottom:417.693333pt;}
.y8d_c00108{bottom:419.026667pt;}
.y8e_c00108{bottom:420.360000pt;}
.y8b_c00108{bottom:433.693333pt;}
.y88_c00108{bottom:434.440000pt;}
.y8a_c00108{bottom:434.640000pt;}
.y87_c00108{bottom:435.026667pt;}
.y89_c00108{bottom:436.360000pt;}
.y85_c00108{bottom:451.026667pt;}
.y84_c00108{bottom:451.773333pt;}
.y86_c00108{bottom:451.973333pt;}
.y81_c00108{bottom:452.733333pt;}
.y82_c00108{bottom:453.106667pt;}
.y83_c00108{bottom:453.693333pt;}
.y80_c00108{bottom:469.106667pt;}
.y7f_c00108{bottom:471.973333pt;}
.y7e_c00108{bottom:472.360000pt;}
.y7d_c00108{bottom:487.773333pt;}
.y7c_c00108{bottom:488.560000pt;}
.y7b_c00108{bottom:489.306667pt;}
.y7a_c00108{bottom:489.693333pt;}
.y79_c00108{bottom:505.106667pt;}
.y78_c00108{bottom:505.893333pt;}
.y77_c00108{bottom:507.026667pt;}
.y73_c00108{bottom:522.440000pt;}
.y75_c00108{bottom:523.400000pt;}
.y76_c00108{bottom:523.973333pt;}
.y72_c00108{bottom:524.360000pt;}
.y74_c00108{bottom:524.560000pt;}
.y71_c00108{bottom:539.773333pt;}
.y70_c00108{bottom:540.733333pt;}
.y6e_c00108{bottom:541.106667pt;}
.y6d_c00108{bottom:541.693333pt;}
.y6b_c00108{bottom:541.893333pt;}
.y6f_c00108{bottom:542.640000pt;}
.y6c_c00108{bottom:543.026667pt;}
.y66_c00108{bottom:556.360000pt;}
.y6a_c00108{bottom:557.106667pt;}
.y69_c00108{bottom:558.066667pt;}
.y67_c00108{bottom:558.440000pt;}
.y68_c00108{bottom:559.026667pt;}
.y65_c00108{bottom:560.360000pt;}
.y63_c00108{bottom:575.400000pt;}
.y62_c00108{bottom:575.773333pt;}
.y64_c00108{bottom:576.560000pt;}
.y61_c00108{bottom:576.733333pt;}
.y60_c00108{bottom:577.693333pt;}
.y5e_c00108{bottom:591.026667pt;}
.y5c_c00108{bottom:592.160000pt;}
.y5b_c00108{bottom:593.106667pt;}
.y5f_c00108{bottom:594.066667pt;}
.y5a_c00108{bottom:595.026667pt;}
.y5d_c00108{bottom:595.973333pt;}
.y59_c00108{bottom:610.440000pt;}
.y58_c00108{bottom:627.773333pt;}
.y55_c00108{bottom:629.693333pt;}
.y57_c00108{bottom:629.893333pt;}
.y56_c00108{bottom:630.640000pt;}
.y53_c00108{bottom:645.106667pt;}
.y52_c00108{bottom:647.026667pt;}
.y54_c00108{bottom:647.226667pt;}
.y51_c00108{bottom:662.440000pt;}
.y50_c00108{bottom:663.400000pt;}
.y4e_c00108{bottom:663.773333pt;}
.y4c_c00108{bottom:664.360000pt;}
.y4f_c00108{bottom:664.560000pt;}
.y4b_c00108{bottom:665.306667pt;}
.y4d_c00108{bottom:665.693333pt;}
.y48_c00108{bottom:681.106667pt;}
.y47_c00108{bottom:681.893333pt;}
.y4a_c00108{bottom:682.066667pt;}
.y49_c00108{bottom:683.026667pt;}
.y46_c00108{bottom:698.066667pt;}
.y45_c00108{bottom:698.440000pt;}
.y43_c00108{bottom:700.360000pt;}
.y44_c00108{bottom:701.306667pt;}
.y40_c00108{bottom:715.773333pt;}
.y41_c00108{bottom:717.693333pt;}
.y42_c00108{bottom:718.640000pt;}
.y3f_c00108{bottom:732.733333pt;}
.y3e_c00108{bottom:733.106667pt;}
.y3b_c00108{bottom:734.266667pt;}
.y3d_c00108{bottom:735.026667pt;}
.y3c_c00108{bottom:735.226667pt;}
.y3a_c00108{bottom:735.973333pt;}
.y36_c00108{bottom:750.440000pt;}
.y39_c00108{bottom:751.400000pt;}
.y37_c00108{bottom:752.360000pt;}
.y38_c00108{bottom:752.560000pt;}
.y35_c00108{bottom:753.306667pt;}
.y30_c00108{bottom:767.400000pt;}
.y2d_c00108{bottom:767.773333pt;}
.y32_c00108{bottom:767.973333pt;}
.y34_c00108{bottom:768.733333pt;}
.y2f_c00108{bottom:769.693333pt;}
.y33_c00108{bottom:769.893333pt;}
.y31_c00108{bottom:770.640000pt;}
.y2e_c00108{bottom:771.040000pt;}
.y2b_c00108{bottom:785.106667pt;}
.y2c_c00108{bottom:785.306667pt;}
.y2a_c00108{bottom:802.440000pt;}
.y29_c00108{bottom:803.773333pt;}
.y27_c00108{bottom:804.360000pt;}
.y28_c00108{bottom:805.693333pt;}
.y25_c00108{bottom:819.026667pt;}
.y23_c00108{bottom:819.973333pt;}
.y24_c00108{bottom:820.160000pt;}
.y22_c00108{bottom:821.106667pt;}
.y26_c00108{bottom:821.893333pt;}
.y21_c00108{bottom:823.026667pt;}
.y1e_c00108{bottom:838.440000pt;}
.y20_c00108{bottom:839.226667pt;}
.y1d_c00108{bottom:839.973333pt;}
.y1f_c00108{bottom:840.360000pt;}
.y19_c00108{bottom:855.773333pt;}
.y1c_c00108{bottom:857.306667pt;}
.y1a_c00108{bottom:857.693333pt;}
.y1b_c00108{bottom:857.893333pt;}
.y18_c00108{bottom:873.106667pt;}
.y15_c00108{bottom:874.066667pt;}
.y16_c00108{bottom:875.026667pt;}
.y17_c00108{bottom:875.226667pt;}
.y13_c00108{bottom:890.440000pt;}
.y11_c00108{bottom:892.360000pt;}
.y12_c00108{bottom:892.373333pt;}
.y14_c00108{bottom:892.560000pt;}
.yf_c00108{bottom:907.773333pt;}
.ye_c00108{bottom:909.693333pt;}
.y10_c00108{bottom:910.640000pt;}
.yc_c00108{bottom:926.066667pt;}
.yb_c00108{bottom:927.026667pt;}
.yd_c00108{bottom:927.973333pt;}
.y9_c00108{bottom:941.693333pt;}
.y6_c00108{bottom:943.773333pt;}
.y7_c00108{bottom:944.360000pt;}
.y8_c00108{bottom:944.560000pt;}
.ya_c00108{bottom:945.306667pt;}
.y4_c00108{bottom:945.693333pt;}
.y5_c00108{bottom:945.706667pt;}
.y2_c00108{bottom:977.693333pt;}
.y1_c00108{bottom:978.266667pt;}
.h4_c00108{height:3.739141pt;}
.h9_c00108{height:12.988594pt;}
.h3_c00108{height:20.466875pt;}
.h1_c00108{height:22.303646pt;}
.h6_c00108{height:27.879557pt;}
.h2_c00108{height:31.618698pt;}
.h7_c00108{height:35.357839pt;}
.h5_c00108{height:39.031380pt;}
.h8_c00108{height:42.770521pt;}
.h0_c00108{height:1186.666667pt;}
.w0_c00108{width:782.666667pt;}
.x0_c00108{left:0.000000pt;}
.x47_c00108{left:134.666667pt;}
.x12_c00108{left:135.626667pt;}
.xad_c00108{left:148.960000pt;}
.x4_c00108{left:150.293333pt;}
.xe4_c00108{left:151.626667pt;}
.x50_c00108{left:153.333333pt;}
.x102_c00108{left:157.333333pt;}
.x9c_c00108{left:160.000000pt;}
.x5b_c00108{left:161.706667pt;}
.xfe_c00108{left:162.666667pt;}
.x103_c00108{left:164.000000pt;}
.xba_c00108{left:165.333333pt;}
.xcb_c00108{left:167.040000pt;}
.xfa_c00108{left:169.333333pt;}
.x6b_c00108{left:172.373333pt;}
.x93_c00108{left:176.000000pt;}
.x105_c00108{left:176.960000pt;}
.x13_c00108{left:178.293333pt;}
.xdf_c00108{left:179.626667pt;}
.x10e_c00108{left:180.960000pt;}
.xf3_c00108{left:183.040000pt;}
.x5c_c00108{left:184.000000pt;}
.x85_c00108{left:185.333333pt;}
.x48_c00108{left:187.626667pt;}
.x7d_c00108{left:188.960000pt;}
.x6c_c00108{left:190.666667pt;}
.xc0_c00108{left:192.000000pt;}
.x3d_c00108{left:193.333333pt;}
.x74_c00108{left:194.666667pt;}
.x111_c00108{left:196.373333pt;}
.xd7_c00108{left:197.333333pt;}
.x1e_c00108{left:198.666667pt;}
.x64_c00108{left:200.000000pt;}
.x8e_c00108{left:201.706667pt;}
.x51_c00108{left:203.040000pt;}
.x30_c00108{left:204.000000pt;}
.x94_c00108{left:205.333333pt;}
.x14_c00108{left:206.293333pt;}
.x3e_c00108{left:211.040000pt;}
.xb4_c00108{left:214.666667pt;}
.xee_c00108{left:217.706667pt;}
.xc7_c00108{left:218.666667pt;}
.x31_c00108{left:220.000000pt;}
.x23_c00108{left:221.333333pt;}
.x75_c00108{left:225.333333pt;}
.x65_c00108{left:226.666667pt;}
.x7e_c00108{left:229.706667pt;}
.x116_c00108{left:231.040000pt;}
.x5_c00108{left:232.000000pt;}
.x9d_c00108{left:232.960000pt;}
.xcc_c00108{left:234.666667pt;}
.x32_c00108{left:236.000000pt;}
.x24_c00108{left:236.960000pt;}
.xd4_c00108{left:238.666667pt;}
.xe5_c00108{left:239.626667pt;}
.x6d_c00108{left:241.333333pt;}
.x76_c00108{left:243.040000pt;}
.x5d_c00108{left:244.960000pt;}
.xd2_c00108{left:247.040000pt;}
.xfb_c00108{left:249.333333pt;}
.x6_c00108{left:250.666667pt;}
.xcd_c00108{left:252.000000pt;}
.x86_c00108{left:253.333333pt;}
.xc8_c00108{left:256.000000pt;}
.x15_c00108{left:257.706667pt;}
.xae_c00108{left:259.800000pt;}
.x52_c00108{left:261.333333pt;}
.x1f_c00108{left:264.000000pt;}
.x49_c00108{left:266.293333pt;}
.x95_c00108{left:269.333333pt;}
.x6e_c00108{left:272.000000pt;}
.x112_c00108{left:272.960000pt;}
.x9e_c00108{left:275.040000pt;}
.xd8_c00108{left:276.960000pt;}
.x7_c00108{left:278.666667pt;}
.x10f_c00108{left:280.000000pt;}
.x3f_c00108{left:281.706667pt;}
.xdc_c00108{left:282.666667pt;}
.xf4_c00108{left:286.666667pt;}
.x8f_c00108{left:289.333333pt;}
.x113_c00108{left:291.040000pt;}
.xb5_c00108{left:292.000000pt;}
.x77_c00108{left:293.333333pt;}
.x5e_c00108{left:294.293333pt;}
.xe6_c00108{left:296.000000pt;}
.x53_c00108{left:296.960000pt;}
.x33_c00108{left:298.293333pt;}
.xc1_c00108{left:300.960000pt;}
.x25_c00108{left:302.666667pt;}
.x9f_c00108{left:307.626667pt;}
.xaf_c00108{left:309.906667pt;}
.x40_c00108{left:312.000000pt;}
.xe0_c00108{left:312.960000pt;}
.x96_c00108{left:315.040000pt;}
.x16_c00108{left:319.040000pt;}
.xc9_c00108{left:320.000000pt;}
.x26_c00108{left:320.960000pt;}
.x4a_c00108{left:322.666667pt;}
.x8_c00108{left:325.333333pt;}
.x34_c00108{left:326.466667pt;}
.x5f_c00108{left:328.000000pt;}
.xce_c00108{left:329.706667pt;}
.x104_c00108{left:331.040000pt;}
.xd9_c00108{left:332.000000pt;}
.xa0_c00108{left:336.373333pt;}
.xb0_c00108{left:337.333333pt;}
.x27_c00108{left:339.040000pt;}
.xc2_c00108{left:340.000000pt;}
.x6f_c00108{left:341.333333pt;}
.x54_c00108{left:342.466667pt;}
.xf5_c00108{left:344.760000pt;}
.xa9_c00108{left:346.666667pt;}
.xef_c00108{left:348.000000pt;}
.x87_c00108{left:348.960000pt;}
.x9_c00108{left:350.666667pt;}
.xe1_c00108{left:352.373333pt;}
.x17_c00108{left:353.706667pt;}
.x1_c00108{left:354.666667pt;}
.x97_c00108{left:356.000000pt;}
.xbb_c00108{left:357.706667pt;}
.x20_c00108{left:359.626667pt;}
.x90_c00108{left:361.706667pt;}
.xa_c00108{left:362.666667pt;}
.xe7_c00108{left:364.000000pt;}
.x66_c00108{left:365.706667pt;}
.xb1_c00108{left:368.000000pt;}
.xa1_c00108{left:369.706667pt;}
.x35_c00108{left:370.666667pt;}
.xff_c00108{left:374.666667pt;}
.x55_c00108{left:376.000000pt;}
.x106_c00108{left:377.333333pt;}
.xf6_c00108{left:378.293333pt;}
.x18_c00108{left:380.000000pt;}
.x91_c00108{left:385.333333pt;}
.x21_c00108{left:387.040000pt;}
.xaa_c00108{left:388.373333pt;}
.xcf_c00108{left:389.333333pt;}
.x28_c00108{left:390.666667pt;}
.xb6_c00108{left:392.000000pt;}
.xa2_c00108{left:393.333333pt;}
.xb_c00108{left:394.666667pt;}
.x4b_c00108{left:397.333333pt;}
.x7f_c00108{left:398.666667pt;}
.x70_c00108{left:400.000000pt;}
.x36_c00108{left:402.293333pt;}
.x88_c00108{left:404.960000pt;}
.x98_c00108{left:409.333333pt;}
.x41_c00108{left:411.040000pt;}
.x22_c00108{left:412.000000pt;}
.x60_c00108{left:413.333333pt;}
.xf0_c00108{left:414.666667pt;}
.x29_c00108{left:416.000000pt;}
.x19_c00108{left:417.706667pt;}
.x10b_c00108{left:419.040000pt;}
.x80_c00108{left:421.706667pt;}
.x4c_c00108{left:424.373333pt;}
.xd3_c00108{left:425.333333pt;}
.xe8_c00108{left:428.000000pt;}
.xb7_c00108{left:431.040000pt;}
.x37_c00108{left:432.000000pt;}
.xc_c00108{left:432.960000pt;}
.xda_c00108{left:435.040000pt;}
.x42_c00108{left:436.373333pt;}
.x61_c00108{left:437.333333pt;}
.xa3_c00108{left:438.666667pt;}
.xb2_c00108{left:440.000000pt;}
.x78_c00108{left:442.293333pt;}
.x89_c00108{left:444.000000pt;}
.xe2_c00108{left:447.040000pt;}
.x114_c00108{left:448.000000pt;}
.xf7_c00108{left:449.333333pt;}
.xd_c00108{left:451.040000pt;}
.x67_c00108{left:452.000000pt;}
.xc3_c00108{left:453.333333pt;}
.x110_c00108{left:455.040000pt;}
.x71_c00108{left:456.000000pt;}
.x107_c00108{left:457.333333pt;}
.xe9_c00108{left:458.666667pt;}
.xab_c00108{left:460.000000pt;}
.x79_c00108{left:461.333333pt;}
.x4d_c00108{left:464.373333pt;}
.xbc_c00108{left:465.333333pt;}
.x8a_c00108{left:466.293333pt;}
.x1a_c00108{left:468.000000pt;}
.xa4_c00108{left:469.333333pt;}
.xb8_c00108{left:471.040000pt;}
.x38_c00108{left:472.373333pt;}
.x56_c00108{left:473.333333pt;}
.x2a_c00108{left:474.293333pt;}
.xea_c00108{left:476.960000pt;}
.xd5_c00108{left:478.293333pt;}
.x81_c00108{left:480.373333pt;}
.x108_c00108{left:481.706667pt;}
.x10c_c00108{left:482.666667pt;}
.x72_c00108{left:484.000000pt;}
.x62_c00108{left:484.960000pt;}
.xca_c00108{left:488.373333pt;}
.x2b_c00108{left:491.040000pt;}
.xb3_c00108{left:494.666667pt;}
.x57_c00108{left:496.000000pt;}
.x43_c00108{left:500.000000pt;}
.xc4_c00108{left:501.333333pt;}
.x8b_c00108{left:502.293333pt;}
.x82_c00108{left:504.373333pt;}
.x109_c00108{left:505.333333pt;}
.xac_c00108{left:506.666667pt;}
.x68_c00108{left:508.000000pt;}
.xbd_c00108{left:510.666667pt;}
.xa5_c00108{left:512.000000pt;}
.x99_c00108{left:513.706667pt;}
.x1b_c00108{left:514.666667pt;}
.xf8_c00108{left:516.373333pt;}
.x2c_c00108{left:517.333333pt;}
.xeb_c00108{left:519.040000pt;}
.x100_c00108{left:520.000000pt;}
.xdd_c00108{left:521.333333pt;}
.xe3_c00108{left:522.666667pt;}
.xdb_c00108{left:525.333333pt;}
.xe_c00108{left:528.000000pt;}
.xf1_c00108{left:531.040000pt;}
.x10d_c00108{left:532.373333pt;}
.x39_c00108{left:534.466667pt;}
.x83_c00108{left:538.666667pt;}
.x58_c00108{left:540.373333pt;}
.x8c_c00108{left:541.333333pt;}
.x69_c00108{left:542.666667pt;}
.x115_c00108{left:545.333333pt;}
.x9a_c00108{left:547.040000pt;}
.xf_c00108{left:548.000000pt;}
.xd0_c00108{left:549.333333pt;}
.xf9_c00108{left:552.373333pt;}
.x1c_c00108{left:554.666667pt;}
.x4e_c00108{left:556.000000pt;}
.xa6_c00108{left:557.333333pt;}
.xc5_c00108{left:560.000000pt;}
.x2d_c00108{left:562.666667pt;}
.xfc_c00108{left:564.000000pt;}
.x44_c00108{left:565.333333pt;}
.x3a_c00108{left:568.000000pt;}
.xbe_c00108{left:569.333333pt;}
.xec_c00108{left:571.040000pt;}
.x9b_c00108{left:572.000000pt;}
.x10_c00108{left:573.333333pt;}
.x6a_c00108{left:574.666667pt;}
.x2e_c00108{left:575.626667pt;}
.x10a_c00108{left:578.666667pt;}
.x7a_c00108{left:579.626667pt;}
.x45_c00108{left:584.373333pt;}
.x101_c00108{left:585.333333pt;}
.xbf_c00108{left:587.040000pt;}
.x4f_c00108{left:588.000000pt;}
.xd6_c00108{left:589.333333pt;}
.x3b_c00108{left:590.293333pt;}
.xd1_c00108{left:594.666667pt;}
.x59_c00108{left:596.373333pt;}
.x7b_c00108{left:599.040000pt;}
.xa7_c00108{left:600.000000pt;}
.xc6_c00108{left:601.706667pt;}
.x63_c00108{left:604.000000pt;}
.xfd_c00108{left:605.706667pt;}
.xf2_c00108{left:606.666667pt;}
.x73_c00108{left:609.333333pt;}
.x46_c00108{left:610.666667pt;}
.xa8_c00108{left:612.000000pt;}
.x8d_c00108{left:614.293333pt;}
.x84_c00108{left:616.000000pt;}
.x3c_c00108{left:616.960000pt;}
.xed_c00108{left:618.293333pt;}
.x2f_c00108{left:620.373333pt;}
.x5a_c00108{left:621.706667pt;}
.x7c_c00108{left:624.373333pt;}
.x1d_c00108{left:625.333333pt;}
.xb9_c00108{left:629.706667pt;}
.xde_c00108{left:631.040000pt;}
.x92_c00108{left:632.373333pt;}
.x2_c00108{left:634.293333pt;}
.x11_c00108{left:636.960000pt;}
.x3_c00108{left:645.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eb434c7446f216c19fcefcc8.woff2')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc5_c00109{transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);}
.m63_c00109{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.m69_c00109{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.md0_c00109{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m26_c00109{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m94_c00109{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m7b_c00109{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m2d_c00109{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mc_c00109{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m66_c00109{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.maf_c00109{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.mcc_c00109{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.mf_c00109{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mcb_c00109{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.mb_c00109{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m8b_c00109{transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);}
.m50_c00109{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.ma1_c00109{transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);}
.m1b_c00109{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m65_c00109{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.m98_c00109{transform:matrix(0.394712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394712,0.000000,0.000000,0.250000,0,0);}
.mac_c00109{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m89_c00109{transform:matrix(0.396089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396089,0.000000,0.000000,0.250000,0,0);}
.m3a_c00109{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m30_c00109{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m3e_c00109{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m58_c00109{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m9d_c00109{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.m1d_c00109{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.ma3_c00109{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.ma9_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);}
.mab_c00109{transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);}
.md9_c00109{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m3b_c00109{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m34_c00109{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m95_c00109{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m9a_c00109{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m6_c00109{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m81_c00109{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.ma0_c00109{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m8_c00109{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m73_c00109{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mb0_c00109{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m97_c00109{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m7a_c00109{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m8a_c00109{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m59_c00109{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m8e_c00109{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m72_c00109{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mc1_c00109{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m38_c00109{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m93_c00109{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m8d_c00109{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m55_c00109{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m7_c00109{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.md6_c00109{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.me0_c00109{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.m92_c00109{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.mb6_c00109{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m9c_c00109{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m51_c00109{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m85_c00109{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m8c_c00109{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mbc_c00109{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mda_c00109{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m83_c00109{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mcf_c00109{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m96_c00109{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m12_c00109{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m77_c00109{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m8f_c00109{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.md7_c00109{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m4e_c00109{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.mcd_c00109{transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);}
.m25_c00109{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m41_c00109{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m18_c00109{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.me2_c00109{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m61_c00109{transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);}
.m37_c00109{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.mbb_c00109{transform:matrix(0.451681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451681,0.000000,0.000000,0.250000,0,0);}
.mc3_c00109{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mb5_c00109{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.mdf_c00109{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m2c_c00109{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m2a_c00109{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m86_c00109{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m52_c00109{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.md_c00109{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.mce_c00109{transform:matrix(0.468067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468067,0.000000,0.000000,0.250000,0,0);}
.md3_c00109{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.ma5_c00109{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m91_c00109{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.md8_c00109{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m39_c00109{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.m1c_c00109{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.m5c_c00109{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m2f_c00109{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.maa_c00109{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m75_c00109{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m9f_c00109{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m0_c00109{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m29_c00109{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m27_c00109{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.md5_c00109{transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);}
.m28_c00109{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.ma7_c00109{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m64_c00109{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m3d_c00109{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m5d_c00109{transform:matrix(0.497407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497407,0.000000,0.000000,0.250000,0,0);}
.m88_c00109{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);}
.mae_c00109{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m32_c00109{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m99_c00109{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.mca_c00109{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m2b_c00109{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mb9_c00109{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m33_c00109{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m4a_c00109{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m84_c00109{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m45_c00109{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m1a_c00109{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m4c_c00109{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m47_c00109{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m15_c00109{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m7c_c00109{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m14_c00109{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m6c_c00109{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m1e_c00109{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m6e_c00109{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.m53_c00109{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m3c_c00109{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m9b_c00109{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m6f_c00109{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m7e_c00109{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mb2_c00109{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m42_c00109{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.ma4_c00109{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m4b_c00109{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m80_c00109{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m24_c00109{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.ma2_c00109{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m19_c00109{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m7d_c00109{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m20_c00109{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m49_c00109{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m62_c00109{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m40_c00109{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m3f_c00109{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m21_c00109{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.ma8_c00109{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m46_c00109{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m10_c00109{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m9e_c00109{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mdd_c00109{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m9_c00109{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.mb4_c00109{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m79_c00109{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.mc9_c00109{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m74_c00109{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m3_c00109{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mde_c00109{transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);}
.me3_c00109{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m54_c00109{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mad_c00109{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m76_c00109{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m57_c00109{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m6b_c00109{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m13_c00109{transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);}
.m56_c00109{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.ma6_c00109{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m4d_c00109{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mc6_c00109{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mdb_c00109{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m78_c00109{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mb8_c00109{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m87_c00109{transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);}
.m23_c00109{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mc8_c00109{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m68_c00109{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.ma_c00109{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.md4_c00109{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m6d_c00109{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mbe_c00109{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m11_c00109{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.me1_c00109{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m5_c00109{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m4_c00109{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mc0_c00109{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m22_c00109{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m5a_c00109{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m71_c00109{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m1_c00109{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.mc2_c00109{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m2_c00109{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m17_c00109{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m36_c00109{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m70_c00109{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m5b_c00109{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m44_c00109{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mbf_c00109{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.md2_c00109{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.mdc_c00109{transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);}
.md1_c00109{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m43_c00109{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m60_c00109{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m16_c00109{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.me_c00109{transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);}
.m48_c00109{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m6a_c00109{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.mc7_c00109{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m2e_c00109{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m90_c00109{transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);}
.mb1_c00109{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m35_c00109{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.mb3_c00109{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m67_c00109{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m31_c00109{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m5e_c00109{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m7f_c00109{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mbd_c00109{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m5f_c00109{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.mba_c00109{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m82_c00109{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m4f_c00109{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mc4_c00109{transform:matrix(0.880609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.880609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.880609,0.000000,0.000000,0.250000,0,0);}
.mb7_c00109{transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);}
.m1f_c00109{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
.fs6_c00109{font-size:3.420000px;}
.fs4_c00109{font-size:18.720000px;}
.fs1_c00109{font-size:20.400000px;}
.fs2_c00109{font-size:25.500000px;}
.fs0_c00109{font-size:28.920000px;}
.fs5_c00109{font-size:32.340000px;}
.fs3_c00109{font-size:35.700000px;}
.fs7_c00109{font-size:39.120000px;}
.y0_c00109{bottom:0.000000px;}
.yb3_c00109{bottom:247.905000px;}
.yb2_c00109{bottom:250.905000px;}
.yac_c00109{bottom:267.405000px;}
.yaf_c00109{bottom:269.325000px;}
.yb0_c00109{bottom:269.745000px;}
.yad_c00109{bottom:270.405000px;}
.yb1_c00109{bottom:271.470000px;}
.yae_c00109{bottom:271.905000px;}
.yab_c00109{bottom:286.905000px;}
.yaa_c00109{bottom:287.970000px;}
.ya9_c00109{bottom:288.825000px;}
.ya8_c00109{bottom:289.245000px;}
.ya6_c00109{bottom:307.905000px;}
.ya3_c00109{bottom:308.745000px;}
.ya7_c00109{bottom:309.630000px;}
.ya5_c00109{bottom:309.825000px;}
.ya1_c00109{bottom:310.905000px;}
.ya4_c00109{bottom:311.130000px;}
.ya2_c00109{bottom:311.970000px;}
.y9f_c00109{bottom:328.245000px;}
.ya0_c00109{bottom:330.405000px;}
.y9b_c00109{bottom:347.745000px;}
.y9d_c00109{bottom:348.825000px;}
.y9e_c00109{bottom:349.905000px;}
.y9c_c00109{bottom:351.405000px;}
.y97_c00109{bottom:368.325000px;}
.y99_c00109{bottom:368.745000px;}
.y95_c00109{bottom:369.405000px;}
.y9a_c00109{bottom:369.825000px;}
.y96_c00109{bottom:370.470000px;}
.y98_c00109{bottom:370.905000px;}
.y94_c00109{bottom:386.970000px;}
.y92_c00109{bottom:387.405000px;}
.y90_c00109{bottom:388.245000px;}
.y93_c00109{bottom:389.970000px;}
.y91_c00109{bottom:390.405000px;}
.y8f_c00109{bottom:406.905000px;}
.y8e_c00109{bottom:407.745000px;}
.y8c_c00109{bottom:408.630000px;}
.y8d_c00109{bottom:409.905000px;}
.y8b_c00109{bottom:425.970000px;}
.y8a_c00109{bottom:426.180000px;}
.y88_c00109{bottom:426.405000px;}
.y86_c00109{bottom:427.245000px;}
.y89_c00109{bottom:428.130000px;}
.y85_c00109{bottom:429.405000px;}
.y87_c00109{bottom:430.470000px;}
.y83_c00109{bottom:445.905000px;}
.y81_c00109{bottom:446.745000px;}
.y84_c00109{bottom:448.050000px;}
.y82_c00109{bottom:448.905000px;}
.y7f_c00109{bottom:449.130000px;}
.y80_c00109{bottom:450.405000px;}
.y7c_c00109{bottom:472.245000px;}
.y7d_c00109{bottom:473.970000px;}
.y7e_c00109{bottom:474.405000px;}
.y7a_c00109{bottom:506.745000px;}
.y7b_c00109{bottom:507.630000px;}
.y79_c00109{bottom:508.905000px;}
.y76_c00109{bottom:526.245000px;}
.y78_c00109{bottom:527.130000px;}
.y75_c00109{bottom:528.405000px;}
.y77_c00109{bottom:528.630000px;}
.y71_c00109{bottom:545.745000px;}
.y74_c00109{bottom:547.470000px;}
.y72_c00109{bottom:547.905000px;}
.y73_c00109{bottom:548.130000px;}
.y6d_c00109{bottom:564.405000px;}
.y6c_c00109{bottom:565.245000px;}
.y6f_c00109{bottom:566.130000px;}
.y6e_c00109{bottom:566.325000px;}
.y6b_c00109{bottom:567.405000px;}
.y70_c00109{bottom:567.630000px;}
.y67_c00109{bottom:584.745000px;}
.y68_c00109{bottom:584.970000px;}
.y69_c00109{bottom:585.825000px;}
.y6a_c00109{bottom:586.905000px;}
.y64_c00109{bottom:603.405000px;}
.y63_c00109{bottom:604.245000px;}
.y65_c00109{bottom:605.325000px;}
.y66_c00109{bottom:606.405000px;}
.y5d_c00109{bottom:623.745000px;}
.y62_c00109{bottom:624.825000px;}
.y61_c00109{bottom:625.050000px;}
.y5e_c00109{bottom:625.245000px;}
.y5f_c00109{bottom:625.905000px;}
.y60_c00109{bottom:627.405000px;}
.y59_c00109{bottom:643.680000px;}
.y5a_c00109{bottom:644.745000px;}
.y5c_c00109{bottom:646.470000px;}
.y5b_c00109{bottom:646.905000px;}
.y58_c00109{bottom:664.245000px;}
.y57_c00109{bottom:665.325000px;}
.y56_c00109{bottom:666.405000px;}
.y55_c00109{bottom:683.745000px;}
.y53_c00109{bottom:685.905000px;}
.y54_c00109{bottom:686.130000px;}
.y51_c00109{bottom:703.245000px;}
.y50_c00109{bottom:705.405000px;}
.y52_c00109{bottom:705.630000px;}
.y4f_c00109{bottom:706.470000px;}
.y4e_c00109{bottom:721.905000px;}
.y4d_c00109{bottom:722.745000px;}
.y4b_c00109{bottom:724.905000px;}
.y4c_c00109{bottom:725.970000px;}
.y47_c00109{bottom:743.745000px;}
.y4a_c00109{bottom:744.405000px;}
.y49_c00109{bottom:745.470000px;}
.y46_c00109{bottom:745.905000px;}
.y48_c00109{bottom:746.970000px;}
.y44_c00109{bottom:760.905000px;}
.y43_c00109{bottom:763.245000px;}
.y45_c00109{bottom:763.905000px;}
.y42_c00109{bottom:764.130000px;}
.y41_c00109{bottom:765.405000px;}
.y3a_c00109{bottom:781.680000px;}
.y3c_c00109{bottom:781.905000px;}
.y3d_c00109{bottom:782.745000px;}
.y40_c00109{bottom:783.630000px;}
.y3b_c00109{bottom:783.825000px;}
.y3f_c00109{bottom:784.905000px;}
.y3e_c00109{bottom:785.970000px;}
.y36_c00109{bottom:799.905000px;}
.y38_c00109{bottom:802.245000px;}
.y37_c00109{bottom:803.130000px;}
.y39_c00109{bottom:803.970000px;}
.y35_c00109{bottom:804.405000px;}
.y31_c00109{bottom:821.745000px;}
.y34_c00109{bottom:822.825000px;}
.y32_c00109{bottom:823.470000px;}
.y30_c00109{bottom:823.905000px;}
.y33_c00109{bottom:824.970000px;}
.y2f_c00109{bottom:841.245000px;}
.y2d_c00109{bottom:843.405000px;}
.y2e_c00109{bottom:844.905000px;}
.y2b_c00109{bottom:865.245000px;}
.y2c_c00109{bottom:867.405000px;}
.y26_c00109{bottom:898.905000px;}
.y2a_c00109{bottom:899.745000px;}
.y28_c00109{bottom:902.130000px;}
.y27_c00109{bottom:902.970000px;}
.y29_c00109{bottom:903.405000px;}
.y21_c00109{bottom:918.405000px;}
.y25_c00109{bottom:921.405000px;}
.y22_c00109{bottom:922.470000px;}
.y24_c00109{bottom:922.905000px;}
.y23_c00109{bottom:923.970000px;}
.y20_c00109{bottom:937.905000px;}
.y1e_c00109{bottom:938.745000px;}
.y1c_c00109{bottom:940.245000px;}
.y1f_c00109{bottom:941.130000px;}
.y1d_c00109{bottom:942.405000px;}
.y1a_c00109{bottom:958.905000px;}
.y18_c00109{bottom:959.745000px;}
.y19_c00109{bottom:960.630000px;}
.y1b_c00109{bottom:960.825000px;}
.y17_c00109{bottom:961.905000px;}
.y16_c00109{bottom:978.405000px;}
.y15_c00109{bottom:979.245000px;}
.y14_c00109{bottom:981.405000px;}
.y12_c00109{bottom:998.325000px;}
.y13_c00109{bottom:998.745000px;}
.y11_c00109{bottom:1000.470000px;}
.yf_c00109{bottom:1000.905000px;}
.y10_c00109{bottom:1000.920000px;}
.ye_c00109{bottom:1018.245000px;}
.yd_c00109{bottom:1020.405000px;}
.yc_c00109{bottom:1037.745000px;}
.y8_c00109{bottom:1038.825000px;}
.yb_c00109{bottom:1039.470000px;}
.ya_c00109{bottom:1039.905000px;}
.y9_c00109{bottom:1040.970000px;}
.y3_c00109{bottom:1055.970000px;}
.y6_c00109{bottom:1057.245000px;}
.y4_c00109{bottom:1059.405000px;}
.y7_c00109{bottom:1059.630000px;}
.y5_c00109{bottom:1060.470000px;}
.y2_c00109{bottom:1097.550000px;}
.y1_c00109{bottom:1099.905000px;}
.h7_c00109{height:4.206533px;}
.h5_c00109{height:23.025234px;}
.h2_c00109{height:25.091602px;}
.h3_c00109{height:31.364502px;}
.h1_c00109{height:35.571035px;}
.h6_c00109{height:39.777568px;}
.h4_c00109{height:43.910303px;}
.h8_c00109{height:48.116836px;}
.h0_c00109{height:1335.000000px;}
.w0_c00109{width:880.500000px;}
.x0_c00109{left:0.000000px;}
.x1_c00109{left:152.580000px;}
.x71_c00109{left:154.080000px;}
.xfa_c00109{left:157.080000px;}
.xc9_c00109{left:160.080000px;}
.xf3_c00109{left:166.080000px;}
.xd1_c00109{left:167.580000px;}
.x1f_c00109{left:168.645000px;}
.x87_c00109{left:172.500000px;}
.x52_c00109{left:174.000000px;}
.x1e_c00109{left:179.580000px;}
.x5e_c00109{left:184.080000px;}
.x2e_c00109{left:187.500000px;}
.xfb_c00109{left:189.000000px;}
.x8f_c00109{left:190.920000px;}
.x3_c00109{left:192.000000px;}
.x53_c00109{left:193.500000px;}
.x88_c00109{left:198.000000px;}
.x58_c00109{left:201.000000px;}
.x2f_c00109{left:202.500000px;}
.x12_c00109{left:205.080000px;}
.x39_c00109{left:208.080000px;}
.x2b_c00109{left:209.580000px;}
.x54_c00109{left:214.500000px;}
.x5f_c00109{left:218.580000px;}
.x43_c00109{left:220.500000px;}
.xd2_c00109{left:222.000000px;}
.x68_c00109{left:223.080000px;}
.xad_c00109{left:225.420000px;}
.x4_c00109{left:226.500000px;}
.x95_c00109{left:227.580000px;}
.x72_c00109{left:231.420000px;}
.xe9_c00109{left:236.580000px;}
.x20_c00109{left:238.500000px;}
.x44_c00109{left:239.580000px;}
.x89_c00109{left:242.580000px;}
.xa8_c00109{left:244.920000px;}
.x55_c00109{left:246.000000px;}
.x9c_c00109{left:247.920000px;}
.xec_c00109{left:250.500000px;}
.x69_c00109{left:255.000000px;}
.x2c_c00109{left:256.080000px;}
.xae_c00109{left:257.355000px;}
.xca_c00109{left:258.420000px;}
.x13_c00109{left:259.500000px;}
.x45_c00109{left:261.000000px;}
.x30_c00109{left:262.920000px;}
.x5_c00109{left:265.500000px;}
.x7a_c00109{left:267.000000px;}
.xc0_c00109{left:268.920000px;}
.x60_c00109{left:271.920000px;}
.x8a_c00109{left:273.000000px;}
.x73_c00109{left:275.355000px;}
.x9d_c00109{left:277.500000px;}
.x80_c00109{left:279.000000px;}
.x2d_c00109{left:280.500000px;}
.xd3_c00109{left:282.000000px;}
.x56_c00109{left:283.500000px;}
.x46_c00109{left:285.420000px;}
.xed_c00109{left:288.000000px;}
.xaf_c00109{left:289.500000px;}
.x21_c00109{left:292.920000px;}
.x3a_c00109{left:295.500000px;}
.x31_c00109{left:297.000000px;}
.x61_c00109{left:298.500000px;}
.xd4_c00109{left:300.000000px;}
.x7b_c00109{left:303.420000px;}
.x81_c00109{left:305.580000px;}
.x8b_c00109{left:307.080000px;}
.x6_c00109{left:309.420000px;}
.xea_c00109{left:310.920000px;}
.x90_c00109{left:313.080000px;}
.xe4_c00109{left:314.580000px;}
.x96_c00109{left:318.000000px;}
.xfc_c00109{left:319.920000px;}
.xf4_c00109{left:325.080000px;}
.xb0_c00109{left:326.580000px;}
.x8c_c00109{left:328.500000px;}
.xdc_c00109{left:329.580000px;}
.x59_c00109{left:331.500000px;}
.x14_c00109{left:333.000000px;}
.xe5_c00109{left:334.920000px;}
.xcb_c00109{left:336.000000px;}
.x97_c00109{left:340.080000px;}
.x57_c00109{left:342.000000px;}
.x6a_c00109{left:346.500000px;}
.x9e_c00109{left:348.000000px;}
.xb5_c00109{left:349.500000px;}
.xc5_c00109{left:351.000000px;}
.x7_c00109{left:352.500000px;}
.x82_c00109{left:353.580000px;}
.xa2_c00109{left:355.500000px;}
.xf5_c00109{left:357.000000px;}
.x3b_c00109{left:358.500000px;}
.x32_c00109{left:360.000000px;}
.xc1_c00109{left:361.080000px;}
.xdd_c00109{left:362.775000px;}
.x47_c00109{left:364.500000px;}
.xc7_c00109{left:366.420000px;}
.x22_c00109{left:370.500000px;}
.xa3_c00109{left:372.000000px;}
.x6b_c00109{left:373.500000px;}
.x15_c00109{left:376.080000px;}
.x8_c00109{left:378.855000px;}
.x48_c00109{left:381.000000px;}
.x7c_c00109{left:382.080000px;}
.x91_c00109{left:383.580000px;}
.xd5_c00109{left:387.420000px;}
.xb9_c00109{left:389.145000px;}
.x3c_c00109{left:393.000000px;}
.x16_c00109{left:394.500000px;}
.x9_c00109{left:396.000000px;}
.x49_c00109{left:397.500000px;}
.xbd_c00109{left:398.580000px;}
.x2_c00109{left:400.500000px;}
.xde_c00109{left:402.420000px;}
.x5a_c00109{left:404.580000px;}
.xb6_c00109{left:406.080000px;}
.xee_c00109{left:408.000000px;}
.x9f_c00109{left:411.000000px;}
.x33_c00109{left:412.080000px;}
.x74_c00109{left:414.000000px;}
.xa_c00109{left:415.500000px;}
.xf6_c00109{left:416.580000px;}
.x23_c00109{left:418.080000px;}
.xb1_c00109{left:420.420000px;}
.x17_c00109{left:421.500000px;}
.xc6_c00109{left:423.000000px;}
.x83_c00109{left:425.580000px;}
.x34_c00109{left:430.920000px;}
.x98_c00109{left:434.580000px;}
.x6c_c00109{left:436.500000px;}
.x24_c00109{left:438.420000px;}
.x4a_c00109{left:441.000000px;}
.x8d_c00109{left:442.500000px;}
.x3d_c00109{left:445.500000px;}
.xfd_c00109{left:447.420000px;}
.xba_c00109{left:451.080000px;}
.xcc_c00109{left:453.420000px;}
.x99_c00109{left:454.920000px;}
.x7d_c00109{left:456.000000px;}
.xd6_c00109{left:458.580000px;}
.xb_c00109{left:460.080000px;}
.x62_c00109{left:463.080000px;}
.xc8_c00109{left:464.580000px;}
.x25_c00109{left:466.500000px;}
.xa4_c00109{left:469.500000px;}
.xd7_c00109{left:477.420000px;}
.xf0_c00109{left:478.500000px;}
.x63_c00109{left:481.920000px;}
.xb2_c00109{left:483.420000px;}
.x18_c00109{left:484.500000px;}
.x9a_c00109{left:486.000000px;}
.x75_c00109{left:490.500000px;}
.x6d_c00109{left:495.420000px;}
.x4b_c00109{left:499.500000px;}
.xcd_c00109{left:500.580000px;}
.x35_c00109{left:502.500000px;}
.xa9_c00109{left:504.000000px;}
.xb7_c00109{left:505.080000px;}
.xc_c00109{left:507.000000px;}
.xf7_c00109{left:510.420000px;}
.xe6_c00109{left:511.500000px;}
.x92_c00109{left:513.000000px;}
.x3e_c00109{left:515.580000px;}
.xce_c00109{left:520.920000px;}
.x26_c00109{left:522.000000px;}
.x76_c00109{left:523.500000px;}
.xdf_c00109{left:528.000000px;}
.x19_c00109{left:529.500000px;}
.x4c_c00109{left:532.920000px;}
.xfe_c00109{left:534.000000px;}
.x3f_c00109{left:535.080000px;}
.xb8_c00109{left:537.000000px;}
.x93_c00109{left:538.920000px;}
.xa5_c00109{left:543.000000px;}
.xbb_c00109{left:544.500000px;}
.xb3_c00109{left:545.580000px;}
.x84_c00109{left:547.500000px;}
.xaa_c00109{left:550.080000px;}
.xe7_c00109{left:552.000000px;}
.x77_c00109{left:553.500000px;}
.x5b_c00109{left:558.420000px;}
.x9b_c00109{left:559.500000px;}
.xef_c00109{left:564.000000px;}
.xe0_c00109{left:565.080000px;}
.xf1_c00109{left:566.580000px;}
.x1a_c00109{left:570.000000px;}
.xd_c00109{left:571.920000px;}
.xd8_c00109{left:573.000000px;}
.x64_c00109{left:574.080000px;}
.x27_c00109{left:576.000000px;}
.xcf_c00109{left:579.000000px;}
.xe_c00109{left:584.580000px;}
.xa6_c00109{left:586.920000px;}
.xe1_c00109{left:588.420000px;}
.x94_c00109{left:589.500000px;}
.x4d_c00109{left:591.000000px;}
.x65_c00109{left:592.920000px;}
.x36_c00109{left:594.000000px;}
.x5c_c00109{left:596.580000px;}
.xf_c00109{left:598.500000px;}
.xa0_c00109{left:600.420000px;}
.xd9_c00109{left:601.920000px;}
.x78_c00109{left:603.000000px;}
.x28_c00109{left:604.080000px;}
.x8e_c00109{left:606.000000px;}
.x4e_c00109{left:607.500000px;}
.x40_c00109{left:610.500000px;}
.xff_c00109{left:612.000000px;}
.xbe_c00109{left:613.500000px;}
.xc2_c00109{left:615.420000px;}
.x5d_c00109{left:617.580000px;}
.x79_c00109{left:621.420000px;}
.xbc_c00109{left:624.000000px;}
.x85_c00109{left:625.920000px;}
.x41_c00109{left:628.500000px;}
.xf8_c00109{left:632.580000px;}
.x6e_c00109{left:634.500000px;}
.xb4_c00109{left:636.000000px;}
.xab_c00109{left:638.580000px;}
.x4f_c00109{left:640.500000px;}
.x37_c00109{left:642.000000px;}
.x29_c00109{left:643.920000px;}
.x1b_c00109{left:646.500000px;}
.x6f_c00109{left:651.000000px;}
.x86_c00109{left:652.080000px;}
.xc3_c00109{left:654.000000px;}
.x7e_c00109{left:655.080000px;}
.xda_c00109{left:657.000000px;}
.xe2_c00109{left:658.500000px;}
.x50_c00109{left:660.420000px;}
.x38_c00109{left:661.500000px;}
.xbf_c00109{left:663.000000px;}
.x1c_c00109{left:666.000000px;}
.x100_c00109{left:669.000000px;}
.x66_c00109{left:671.580000px;}
.x10_c00109{left:675.420000px;}
.xf2_c00109{left:676.500000px;}
.x42_c00109{left:678.000000px;}
.x70_c00109{left:679.080000px;}
.xeb_c00109{left:682.500000px;}
.xac_c00109{left:685.500000px;}
.xa1_c00109{left:688.080000px;}
.x67_c00109{left:690.000000px;}
.xe3_c00109{left:696.420000px;}
.x51_c00109{left:697.920000px;}
.xe8_c00109{left:700.080000px;}
.xdb_c00109{left:702.000000px;}
.xf9_c00109{left:703.500000px;}
.xa7_c00109{left:708.000000px;}
.x7f_c00109{left:709.920000px;}
.x2a_c00109{left:712.500000px;}
.xc4_c00109{left:714.000000px;}
.x11_c00109{left:715.080000px;}
.x1d_c00109{left:717.000000px;}
.x101_c00109{left:721.500000px;}
.xd0_c00109{left:723.420000px;}
@media print{
.v0_c00109{vertical-align:0.000000pt;}
.ls0_c00109{letter-spacing:0.000000pt;}
.ws0_c00109{word-spacing:0.000000pt;}
.fs6_c00109{font-size:3.040000pt;}
.fs4_c00109{font-size:16.640000pt;}
.fs1_c00109{font-size:18.133333pt;}
.fs2_c00109{font-size:22.666667pt;}
.fs0_c00109{font-size:25.706667pt;}
.fs5_c00109{font-size:28.746667pt;}
.fs3_c00109{font-size:31.733333pt;}
.fs7_c00109{font-size:34.773333pt;}
.y0_c00109{bottom:0.000000pt;}
.yb3_c00109{bottom:220.360000pt;}
.yb2_c00109{bottom:223.026667pt;}
.yac_c00109{bottom:237.693333pt;}
.yaf_c00109{bottom:239.400000pt;}
.yb0_c00109{bottom:239.773333pt;}
.yad_c00109{bottom:240.360000pt;}
.yb1_c00109{bottom:241.306667pt;}
.yae_c00109{bottom:241.693333pt;}
.yab_c00109{bottom:255.026667pt;}
.yaa_c00109{bottom:255.973333pt;}
.ya9_c00109{bottom:256.733333pt;}
.ya8_c00109{bottom:257.106667pt;}
.ya6_c00109{bottom:273.693333pt;}
.ya3_c00109{bottom:274.440000pt;}
.ya7_c00109{bottom:275.226667pt;}
.ya5_c00109{bottom:275.400000pt;}
.ya1_c00109{bottom:276.360000pt;}
.ya4_c00109{bottom:276.560000pt;}
.ya2_c00109{bottom:277.306667pt;}
.y9f_c00109{bottom:291.773333pt;}
.ya0_c00109{bottom:293.693333pt;}
.y9b_c00109{bottom:309.106667pt;}
.y9d_c00109{bottom:310.066667pt;}
.y9e_c00109{bottom:311.026667pt;}
.y9c_c00109{bottom:312.360000pt;}
.y97_c00109{bottom:327.400000pt;}
.y99_c00109{bottom:327.773333pt;}
.y95_c00109{bottom:328.360000pt;}
.y9a_c00109{bottom:328.733333pt;}
.y96_c00109{bottom:329.306667pt;}
.y98_c00109{bottom:329.693333pt;}
.y94_c00109{bottom:343.973333pt;}
.y92_c00109{bottom:344.360000pt;}
.y90_c00109{bottom:345.106667pt;}
.y93_c00109{bottom:346.640000pt;}
.y91_c00109{bottom:347.026667pt;}
.y8f_c00109{bottom:361.693333pt;}
.y8e_c00109{bottom:362.440000pt;}
.y8c_c00109{bottom:363.226667pt;}
.y8d_c00109{bottom:364.360000pt;}
.y8b_c00109{bottom:378.640000pt;}
.y8a_c00109{bottom:378.826667pt;}
.y88_c00109{bottom:379.026667pt;}
.y86_c00109{bottom:379.773333pt;}
.y89_c00109{bottom:380.560000pt;}
.y85_c00109{bottom:381.693333pt;}
.y87_c00109{bottom:382.640000pt;}
.y83_c00109{bottom:396.360000pt;}
.y81_c00109{bottom:397.106667pt;}
.y84_c00109{bottom:398.266667pt;}
.y82_c00109{bottom:399.026667pt;}
.y7f_c00109{bottom:399.226667pt;}
.y80_c00109{bottom:400.360000pt;}
.y7c_c00109{bottom:419.773333pt;}
.y7d_c00109{bottom:421.306667pt;}
.y7e_c00109{bottom:421.693333pt;}
.y7a_c00109{bottom:450.440000pt;}
.y7b_c00109{bottom:451.226667pt;}
.y79_c00109{bottom:452.360000pt;}
.y76_c00109{bottom:467.773333pt;}
.y78_c00109{bottom:468.560000pt;}
.y75_c00109{bottom:469.693333pt;}
.y77_c00109{bottom:469.893333pt;}
.y71_c00109{bottom:485.106667pt;}
.y74_c00109{bottom:486.640000pt;}
.y72_c00109{bottom:487.026667pt;}
.y73_c00109{bottom:487.226667pt;}
.y6d_c00109{bottom:501.693333pt;}
.y6c_c00109{bottom:502.440000pt;}
.y6f_c00109{bottom:503.226667pt;}
.y6e_c00109{bottom:503.400000pt;}
.y6b_c00109{bottom:504.360000pt;}
.y70_c00109{bottom:504.560000pt;}
.y67_c00109{bottom:519.773333pt;}
.y68_c00109{bottom:519.973333pt;}
.y69_c00109{bottom:520.733333pt;}
.y6a_c00109{bottom:521.693333pt;}
.y64_c00109{bottom:536.360000pt;}
.y63_c00109{bottom:537.106667pt;}
.y65_c00109{bottom:538.066667pt;}
.y66_c00109{bottom:539.026667pt;}
.y5d_c00109{bottom:554.440000pt;}
.y62_c00109{bottom:555.400000pt;}
.y61_c00109{bottom:555.600000pt;}
.y5e_c00109{bottom:555.773333pt;}
.y5f_c00109{bottom:556.360000pt;}
.y60_c00109{bottom:557.693333pt;}
.y59_c00109{bottom:572.160000pt;}
.y5a_c00109{bottom:573.106667pt;}
.y5c_c00109{bottom:574.640000pt;}
.y5b_c00109{bottom:575.026667pt;}
.y58_c00109{bottom:590.440000pt;}
.y57_c00109{bottom:591.400000pt;}
.y56_c00109{bottom:592.360000pt;}
.y55_c00109{bottom:607.773333pt;}
.y53_c00109{bottom:609.693333pt;}
.y54_c00109{bottom:609.893333pt;}
.y51_c00109{bottom:625.106667pt;}
.y50_c00109{bottom:627.026667pt;}
.y52_c00109{bottom:627.226667pt;}
.y4f_c00109{bottom:627.973333pt;}
.y4e_c00109{bottom:641.693333pt;}
.y4d_c00109{bottom:642.440000pt;}
.y4b_c00109{bottom:644.360000pt;}
.y4c_c00109{bottom:645.306667pt;}
.y47_c00109{bottom:661.106667pt;}
.y4a_c00109{bottom:661.693333pt;}
.y49_c00109{bottom:662.640000pt;}
.y46_c00109{bottom:663.026667pt;}
.y48_c00109{bottom:663.973333pt;}
.y44_c00109{bottom:676.360000pt;}
.y43_c00109{bottom:678.440000pt;}
.y45_c00109{bottom:679.026667pt;}
.y42_c00109{bottom:679.226667pt;}
.y41_c00109{bottom:680.360000pt;}
.y3a_c00109{bottom:694.826667pt;}
.y3c_c00109{bottom:695.026667pt;}
.y3d_c00109{bottom:695.773333pt;}
.y40_c00109{bottom:696.560000pt;}
.y3b_c00109{bottom:696.733333pt;}
.y3f_c00109{bottom:697.693333pt;}
.y3e_c00109{bottom:698.640000pt;}
.y36_c00109{bottom:711.026667pt;}
.y38_c00109{bottom:713.106667pt;}
.y37_c00109{bottom:713.893333pt;}
.y39_c00109{bottom:714.640000pt;}
.y35_c00109{bottom:715.026667pt;}
.y31_c00109{bottom:730.440000pt;}
.y34_c00109{bottom:731.400000pt;}
.y32_c00109{bottom:731.973333pt;}
.y30_c00109{bottom:732.360000pt;}
.y33_c00109{bottom:733.306667pt;}
.y2f_c00109{bottom:747.773333pt;}
.y2d_c00109{bottom:749.693333pt;}
.y2e_c00109{bottom:751.026667pt;}
.y2b_c00109{bottom:769.106667pt;}
.y2c_c00109{bottom:771.026667pt;}
.y26_c00109{bottom:799.026667pt;}
.y2a_c00109{bottom:799.773333pt;}
.y28_c00109{bottom:801.893333pt;}
.y27_c00109{bottom:802.640000pt;}
.y29_c00109{bottom:803.026667pt;}
.y21_c00109{bottom:816.360000pt;}
.y25_c00109{bottom:819.026667pt;}
.y22_c00109{bottom:819.973333pt;}
.y24_c00109{bottom:820.360000pt;}
.y23_c00109{bottom:821.306667pt;}
.y20_c00109{bottom:833.693333pt;}
.y1e_c00109{bottom:834.440000pt;}
.y1c_c00109{bottom:835.773333pt;}
.y1f_c00109{bottom:836.560000pt;}
.y1d_c00109{bottom:837.693333pt;}
.y1a_c00109{bottom:852.360000pt;}
.y18_c00109{bottom:853.106667pt;}
.y19_c00109{bottom:853.893333pt;}
.y1b_c00109{bottom:854.066667pt;}
.y17_c00109{bottom:855.026667pt;}
.y16_c00109{bottom:869.693333pt;}
.y15_c00109{bottom:870.440000pt;}
.y14_c00109{bottom:872.360000pt;}
.y12_c00109{bottom:887.400000pt;}
.y13_c00109{bottom:887.773333pt;}
.y11_c00109{bottom:889.306667pt;}
.yf_c00109{bottom:889.693333pt;}
.y10_c00109{bottom:889.706667pt;}
.ye_c00109{bottom:905.106667pt;}
.yd_c00109{bottom:907.026667pt;}
.yc_c00109{bottom:922.440000pt;}
.y8_c00109{bottom:923.400000pt;}
.yb_c00109{bottom:923.973333pt;}
.ya_c00109{bottom:924.360000pt;}
.y9_c00109{bottom:925.306667pt;}
.y3_c00109{bottom:938.640000pt;}
.y6_c00109{bottom:939.773333pt;}
.y4_c00109{bottom:941.693333pt;}
.y7_c00109{bottom:941.893333pt;}
.y5_c00109{bottom:942.640000pt;}
.y2_c00109{bottom:975.600000pt;}
.y1_c00109{bottom:977.693333pt;}
.h7_c00109{height:3.739141pt;}
.h5_c00109{height:20.466875pt;}
.h2_c00109{height:22.303646pt;}
.h3_c00109{height:27.879557pt;}
.h1_c00109{height:31.618698pt;}
.h6_c00109{height:35.357839pt;}
.h4_c00109{height:39.031380pt;}
.h8_c00109{height:42.770521pt;}
.h0_c00109{height:1186.666667pt;}
.w0_c00109{width:782.666667pt;}
.x0_c00109{left:0.000000pt;}
.x1_c00109{left:135.626667pt;}
.x71_c00109{left:136.960000pt;}
.xfa_c00109{left:139.626667pt;}
.xc9_c00109{left:142.293333pt;}
.xf3_c00109{left:147.626667pt;}
.xd1_c00109{left:148.960000pt;}
.x1f_c00109{left:149.906667pt;}
.x87_c00109{left:153.333333pt;}
.x52_c00109{left:154.666667pt;}
.x1e_c00109{left:159.626667pt;}
.x5e_c00109{left:163.626667pt;}
.x2e_c00109{left:166.666667pt;}
.xfb_c00109{left:168.000000pt;}
.x8f_c00109{left:169.706667pt;}
.x3_c00109{left:170.666667pt;}
.x53_c00109{left:172.000000pt;}
.x88_c00109{left:176.000000pt;}
.x58_c00109{left:178.666667pt;}
.x2f_c00109{left:180.000000pt;}
.x12_c00109{left:182.293333pt;}
.x39_c00109{left:184.960000pt;}
.x2b_c00109{left:186.293333pt;}
.x54_c00109{left:190.666667pt;}
.x5f_c00109{left:194.293333pt;}
.x43_c00109{left:196.000000pt;}
.xd2_c00109{left:197.333333pt;}
.x68_c00109{left:198.293333pt;}
.xad_c00109{left:200.373333pt;}
.x4_c00109{left:201.333333pt;}
.x95_c00109{left:202.293333pt;}
.x72_c00109{left:205.706667pt;}
.xe9_c00109{left:210.293333pt;}
.x20_c00109{left:212.000000pt;}
.x44_c00109{left:212.960000pt;}
.x89_c00109{left:215.626667pt;}
.xa8_c00109{left:217.706667pt;}
.x55_c00109{left:218.666667pt;}
.x9c_c00109{left:220.373333pt;}
.xec_c00109{left:222.666667pt;}
.x69_c00109{left:226.666667pt;}
.x2c_c00109{left:227.626667pt;}
.xae_c00109{left:228.760000pt;}
.xca_c00109{left:229.706667pt;}
.x13_c00109{left:230.666667pt;}
.x45_c00109{left:232.000000pt;}
.x30_c00109{left:233.706667pt;}
.x5_c00109{left:236.000000pt;}
.x7a_c00109{left:237.333333pt;}
.xc0_c00109{left:239.040000pt;}
.x60_c00109{left:241.706667pt;}
.x8a_c00109{left:242.666667pt;}
.x73_c00109{left:244.760000pt;}
.x9d_c00109{left:246.666667pt;}
.x80_c00109{left:248.000000pt;}
.x2d_c00109{left:249.333333pt;}
.xd3_c00109{left:250.666667pt;}
.x56_c00109{left:252.000000pt;}
.x46_c00109{left:253.706667pt;}
.xed_c00109{left:256.000000pt;}
.xaf_c00109{left:257.333333pt;}
.x21_c00109{left:260.373333pt;}
.x3a_c00109{left:262.666667pt;}
.x31_c00109{left:264.000000pt;}
.x61_c00109{left:265.333333pt;}
.xd4_c00109{left:266.666667pt;}
.x7b_c00109{left:269.706667pt;}
.x81_c00109{left:271.626667pt;}
.x8b_c00109{left:272.960000pt;}
.x6_c00109{left:275.040000pt;}
.xea_c00109{left:276.373333pt;}
.x90_c00109{left:278.293333pt;}
.xe4_c00109{left:279.626667pt;}
.x96_c00109{left:282.666667pt;}
.xfc_c00109{left:284.373333pt;}
.xf4_c00109{left:288.960000pt;}
.xb0_c00109{left:290.293333pt;}
.x8c_c00109{left:292.000000pt;}
.xdc_c00109{left:292.960000pt;}
.x59_c00109{left:294.666667pt;}
.x14_c00109{left:296.000000pt;}
.xe5_c00109{left:297.706667pt;}
.xcb_c00109{left:298.666667pt;}
.x97_c00109{left:302.293333pt;}
.x57_c00109{left:304.000000pt;}
.x6a_c00109{left:308.000000pt;}
.x9e_c00109{left:309.333333pt;}
.xb5_c00109{left:310.666667pt;}
.xc5_c00109{left:312.000000pt;}
.x7_c00109{left:313.333333pt;}
.x82_c00109{left:314.293333pt;}
.xa2_c00109{left:316.000000pt;}
.xf5_c00109{left:317.333333pt;}
.x3b_c00109{left:318.666667pt;}
.x32_c00109{left:320.000000pt;}
.xc1_c00109{left:320.960000pt;}
.xdd_c00109{left:322.466667pt;}
.x47_c00109{left:324.000000pt;}
.xc7_c00109{left:325.706667pt;}
.x22_c00109{left:329.333333pt;}
.xa3_c00109{left:330.666667pt;}
.x6b_c00109{left:332.000000pt;}
.x15_c00109{left:334.293333pt;}
.x8_c00109{left:336.760000pt;}
.x48_c00109{left:338.666667pt;}
.x7c_c00109{left:339.626667pt;}
.x91_c00109{left:340.960000pt;}
.xd5_c00109{left:344.373333pt;}
.xb9_c00109{left:345.906667pt;}
.x3c_c00109{left:349.333333pt;}
.x16_c00109{left:350.666667pt;}
.x9_c00109{left:352.000000pt;}
.x49_c00109{left:353.333333pt;}
.xbd_c00109{left:354.293333pt;}
.x2_c00109{left:356.000000pt;}
.xde_c00109{left:357.706667pt;}
.x5a_c00109{left:359.626667pt;}
.xb6_c00109{left:360.960000pt;}
.xee_c00109{left:362.666667pt;}
.x9f_c00109{left:365.333333pt;}
.x33_c00109{left:366.293333pt;}
.x74_c00109{left:368.000000pt;}
.xa_c00109{left:369.333333pt;}
.xf6_c00109{left:370.293333pt;}
.x23_c00109{left:371.626667pt;}
.xb1_c00109{left:373.706667pt;}
.x17_c00109{left:374.666667pt;}
.xc6_c00109{left:376.000000pt;}
.x83_c00109{left:378.293333pt;}
.x34_c00109{left:383.040000pt;}
.x98_c00109{left:386.293333pt;}
.x6c_c00109{left:388.000000pt;}
.x24_c00109{left:389.706667pt;}
.x4a_c00109{left:392.000000pt;}
.x8d_c00109{left:393.333333pt;}
.x3d_c00109{left:396.000000pt;}
.xfd_c00109{left:397.706667pt;}
.xba_c00109{left:400.960000pt;}
.xcc_c00109{left:403.040000pt;}
.x99_c00109{left:404.373333pt;}
.x7d_c00109{left:405.333333pt;}
.xd6_c00109{left:407.626667pt;}
.xb_c00109{left:408.960000pt;}
.x62_c00109{left:411.626667pt;}
.xc8_c00109{left:412.960000pt;}
.x25_c00109{left:414.666667pt;}
.xa4_c00109{left:417.333333pt;}
.xd7_c00109{left:424.373333pt;}
.xf0_c00109{left:425.333333pt;}
.x63_c00109{left:428.373333pt;}
.xb2_c00109{left:429.706667pt;}
.x18_c00109{left:430.666667pt;}
.x9a_c00109{left:432.000000pt;}
.x75_c00109{left:436.000000pt;}
.x6d_c00109{left:440.373333pt;}
.x4b_c00109{left:444.000000pt;}
.xcd_c00109{left:444.960000pt;}
.x35_c00109{left:446.666667pt;}
.xa9_c00109{left:448.000000pt;}
.xb7_c00109{left:448.960000pt;}
.xc_c00109{left:450.666667pt;}
.xf7_c00109{left:453.706667pt;}
.xe6_c00109{left:454.666667pt;}
.x92_c00109{left:456.000000pt;}
.x3e_c00109{left:458.293333pt;}
.xce_c00109{left:463.040000pt;}
.x26_c00109{left:464.000000pt;}
.x76_c00109{left:465.333333pt;}
.xdf_c00109{left:469.333333pt;}
.x19_c00109{left:470.666667pt;}
.x4c_c00109{left:473.706667pt;}
.xfe_c00109{left:474.666667pt;}
.x3f_c00109{left:475.626667pt;}
.xb8_c00109{left:477.333333pt;}
.x93_c00109{left:479.040000pt;}
.xa5_c00109{left:482.666667pt;}
.xbb_c00109{left:484.000000pt;}
.xb3_c00109{left:484.960000pt;}
.x84_c00109{left:486.666667pt;}
.xaa_c00109{left:488.960000pt;}
.xe7_c00109{left:490.666667pt;}
.x77_c00109{left:492.000000pt;}
.x5b_c00109{left:496.373333pt;}
.x9b_c00109{left:497.333333pt;}
.xef_c00109{left:501.333333pt;}
.xe0_c00109{left:502.293333pt;}
.xf1_c00109{left:503.626667pt;}
.x1a_c00109{left:506.666667pt;}
.xd_c00109{left:508.373333pt;}
.xd8_c00109{left:509.333333pt;}
.x64_c00109{left:510.293333pt;}
.x27_c00109{left:512.000000pt;}
.xcf_c00109{left:514.666667pt;}
.xe_c00109{left:519.626667pt;}
.xa6_c00109{left:521.706667pt;}
.xe1_c00109{left:523.040000pt;}
.x94_c00109{left:524.000000pt;}
.x4d_c00109{left:525.333333pt;}
.x65_c00109{left:527.040000pt;}
.x36_c00109{left:528.000000pt;}
.x5c_c00109{left:530.293333pt;}
.xf_c00109{left:532.000000pt;}
.xa0_c00109{left:533.706667pt;}
.xd9_c00109{left:535.040000pt;}
.x78_c00109{left:536.000000pt;}
.x28_c00109{left:536.960000pt;}
.x8e_c00109{left:538.666667pt;}
.x4e_c00109{left:540.000000pt;}
.x40_c00109{left:542.666667pt;}
.xff_c00109{left:544.000000pt;}
.xbe_c00109{left:545.333333pt;}
.xc2_c00109{left:547.040000pt;}
.x5d_c00109{left:548.960000pt;}
.x79_c00109{left:552.373333pt;}
.xbc_c00109{left:554.666667pt;}
.x85_c00109{left:556.373333pt;}
.x41_c00109{left:558.666667pt;}
.xf8_c00109{left:562.293333pt;}
.x6e_c00109{left:564.000000pt;}
.xb4_c00109{left:565.333333pt;}
.xab_c00109{left:567.626667pt;}
.x4f_c00109{left:569.333333pt;}
.x37_c00109{left:570.666667pt;}
.x29_c00109{left:572.373333pt;}
.x1b_c00109{left:574.666667pt;}
.x6f_c00109{left:578.666667pt;}
.x86_c00109{left:579.626667pt;}
.xc3_c00109{left:581.333333pt;}
.x7e_c00109{left:582.293333pt;}
.xda_c00109{left:584.000000pt;}
.xe2_c00109{left:585.333333pt;}
.x50_c00109{left:587.040000pt;}
.x38_c00109{left:588.000000pt;}
.xbf_c00109{left:589.333333pt;}
.x1c_c00109{left:592.000000pt;}
.x100_c00109{left:594.666667pt;}
.x66_c00109{left:596.960000pt;}
.x10_c00109{left:600.373333pt;}
.xf2_c00109{left:601.333333pt;}
.x42_c00109{left:602.666667pt;}
.x70_c00109{left:603.626667pt;}
.xeb_c00109{left:606.666667pt;}
.xac_c00109{left:609.333333pt;}
.xa1_c00109{left:611.626667pt;}
.x67_c00109{left:613.333333pt;}
.xe3_c00109{left:619.040000pt;}
.x51_c00109{left:620.373333pt;}
.xe8_c00109{left:622.293333pt;}
.xdb_c00109{left:624.000000pt;}
.xf9_c00109{left:625.333333pt;}
.xa7_c00109{left:629.333333pt;}
.x7f_c00109{left:631.040000pt;}
.x2a_c00109{left:633.333333pt;}
.xc4_c00109{left:634.666667pt;}
.x11_c00109{left:635.626667pt;}
.x1d_c00109{left:637.333333pt;}
.x101_c00109{left:641.333333pt;}
.xd0_c00109{left:643.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_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_a98ff9acdc6867159765bbd4.woff2')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:1.688965;font-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_c00110{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m5f_c00110{transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);}
.m16_c00110{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m61_c00110{transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);}
.m45_c00110{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.m55_c00110{transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);}
.me_c00110{transform:matrix(0.401452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401452,0.000000,0.000000,0.250000,0,0);}
.mc_c00110{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m56_c00110{transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);}
.m4e_c00110{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m48_c00110{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m36_c00110{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m50_c00110{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m1f_c00110{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m54_c00110{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m44_c00110{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m31_c00110{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m41_c00110{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m76_c00110{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m1a_c00110{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m39_c00110{transform:matrix(0.427386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427386,0.000000,0.000000,0.250000,0,0);}
.m25_c00110{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m3a_c00110{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m4f_c00110{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m6f_c00110{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m27_c00110{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m63_c00110{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m37_c00110{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m6d_c00110{transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);}
.m3c_c00110{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m2_c00110{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.mb_c00110{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m6a_c00110{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m13_c00110{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m74_c00110{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.m2d_c00110{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m24_c00110{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m1d_c00110{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m4_c00110{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m75_c00110{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m4a_c00110{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m5a_c00110{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m17_c00110{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m20_c00110{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m29_c00110{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m66_c00110{transform:matrix(0.487059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487059,0.000000,0.000000,0.250000,0,0);}
.m7_c00110{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m49_c00110{transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);}
.m0_c00110{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_c00110{transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);}
.m23_c00110{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m5d_c00110{transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);}
.m53_c00110{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m78_c00110{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);}
.m4d_c00110{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m5b_c00110{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.m33_c00110{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m22_c00110{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m1b_c00110{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m14_c00110{transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);}
.m65_c00110{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.mf_c00110{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m59_c00110{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.m6e_c00110{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);}
.m3d_c00110{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m6c_c00110{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m26_c00110{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m3f_c00110{transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);}
.m2c_c00110{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.md_c00110{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m62_c00110{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.m67_c00110{transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);}
.m72_c00110{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m32_c00110{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m11_c00110{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m51_c00110{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m68_c00110{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m28_c00110{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m70_c00110{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m34_c00110{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m2e_c00110{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m3e_c00110{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.ma_c00110{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m19_c00110{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m79_c00110{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.m40_c00110{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m47_c00110{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m71_c00110{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m4b_c00110{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m52_c00110{transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);}
.m10_c00110{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m46_c00110{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m5_c00110{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m77_c00110{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m5c_c00110{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m2f_c00110{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m60_c00110{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m3b_c00110{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m30_c00110{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m3_c00110{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m43_c00110{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m1c_c00110{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.m1e_c00110{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m1_c00110{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m6b_c00110{transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);}
.m9_c00110{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m8_c00110{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m73_c00110{transform:matrix(0.646324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.646324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.646324,0.000000,0.000000,0.250000,0,0);}
.m69_c00110{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m2b_c00110{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m42_c00110{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m2a_c00110{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m58_c00110{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m57_c00110{transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);}
.m15_c00110{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m21_c00110{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m4c_c00110{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m35_c00110{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m38_c00110{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m12_c00110{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m5e_c00110{transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);}
.m64_c00110{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,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;}
}
.ws2_c00110{word-spacing:-14.892000px;}
.ws0_c00110{word-spacing:-3.466645px;}
.ws1_c00110{word-spacing:-2.948244px;}
.ws3_c00110{word-spacing:0.000000px;}
._0_c00110{width:5.882890px;}
.fc0_c00110{color:transparent;}
.fs6_c00110{font-size:13.620000px;}
.fs5_c00110{font-size:18.720000px;}
.fs1_c00110{font-size:20.400000px;}
.fs0_c00110{font-size:25.500000px;}
.fs2_c00110{font-size:28.920000px;}
.fs3_c00110{font-size:32.340000px;}
.fs4_c00110{font-size:35.700000px;}
.y0_c00110{bottom:0.000000px;}
.y2e_c00110{bottom:250.905000px;}
.y2c_c00110{bottom:251.745000px;}
.y2d_c00110{bottom:253.245000px;}
.y2b_c00110{bottom:253.905000px;}
.y2f_c00110{bottom:255.405000px;}
.y26_c00110{bottom:271.245000px;}
.y28_c00110{bottom:272.325000px;}
.y27_c00110{bottom:273.405000px;}
.y2a_c00110{bottom:273.630000px;}
.y29_c00110{bottom:274.905000px;}
.y23_c00110{bottom:290.745000px;}
.y21_c00110{bottom:291.825000px;}
.y25_c00110{bottom:292.245000px;}
.y20_c00110{bottom:292.905000px;}
.y22_c00110{bottom:293.130000px;}
.y24_c00110{bottom:294.405000px;}
.y1d_c00110{bottom:311.745000px;}
.y1f_c00110{bottom:311.970000px;}
.y1c_c00110{bottom:312.630000px;}
.y1e_c00110{bottom:313.905000px;}
.y1b_c00110{bottom:331.245000px;}
.y19_c00110{bottom:333.405000px;}
.y1a_c00110{bottom:334.470000px;}
.y18_c00110{bottom:349.245000px;}
.y13_c00110{bottom:349.905000px;}
.y14_c00110{bottom:350.745000px;}
.y17_c00110{bottom:350.970000px;}
.y16_c00110{bottom:352.470000px;}
.y15_c00110{bottom:352.905000px;}
.y12_c00110{bottom:369.405000px;}
.ye_c00110{bottom:370.245000px;}
.yf_c00110{bottom:371.325000px;}
.y10_c00110{bottom:371.970000px;}
.yd_c00110{bottom:372.405000px;}
.y11_c00110{bottom:372.630000px;}
.yb_c00110{bottom:389.745000px;}
.yc_c00110{bottom:390.825000px;}
.y9_c00110{bottom:391.905000px;}
.ya_c00110{bottom:392.130000px;}
.y4_c00110{bottom:410.325000px;}
.y8_c00110{bottom:410.745000px;}
.y3_c00110{bottom:411.405000px;}
.y5_c00110{bottom:411.825000px;}
.y7_c00110{bottom:412.470000px;}
.y6_c00110{bottom:412.905000px;}
.y4c_c00110{bottom:443.550000px;}
.y4b_c00110{bottom:444.630000px;}
.y47_c00110{bottom:445.470000px;}
.y46_c00110{bottom:457.470000px;}
.y49_c00110{bottom:458.325000px;}
.y4a_c00110{bottom:458.550000px;}
.y44_c00110{bottom:459.405000px;}
.y45_c00110{bottom:459.630000px;}
.y43_c00110{bottom:460.470000px;}
.y48_c00110{bottom:461.550000px;}
.y41_c00110{bottom:473.550000px;}
.y3f_c00110{bottom:474.405000px;}
.y40_c00110{bottom:474.630000px;}
.y3e_c00110{bottom:475.470000px;}
.y42_c00110{bottom:476.550000px;}
.y3d_c00110{bottom:487.470000px;}
.y3b_c00110{bottom:488.325000px;}
.y3c_c00110{bottom:488.550000px;}
.y31_c00110{bottom:489.405000px;}
.y39_c00110{bottom:490.470000px;}
.y3a_c00110{bottom:490.695000px;}
.y35_c00110{bottom:502.470000px;}
.y37_c00110{bottom:502.905000px;}
.y32_c00110{bottom:503.325000px;}
.y38_c00110{bottom:503.550000px;}
.y36_c00110{bottom:504.405000px;}
.y34_c00110{bottom:504.630000px;}
.y30_c00110{bottom:505.470000px;}
.y33_c00110{bottom:506.550000px;}
.y2_c00110{bottom:1099.050000px;}
.y1_c00110{bottom:1100.970000px;}
.h7_c00110{height:16.752334px;}
.h6_c00110{height:23.025234px;}
.h2_c00110{height:25.091602px;}
.h1_c00110{height:31.364502px;}
.h3_c00110{height:35.571035px;}
.h4_c00110{height:39.777568px;}
.h5_c00110{height:43.910303px;}
.h0_c00110{height:1335.000000px;}
.w0_c00110{width:880.500000px;}
.x0_c00110{left:0.000000px;}
.x63_c00110{left:150.420000px;}
.x6b_c00110{left:152.145000px;}
.x2c_c00110{left:160.500000px;}
.x3_c00110{left:169.080000px;}
.x6c_c00110{left:182.355000px;}
.x4_c00110{left:192.000000px;}
.x2d_c00110{left:193.080000px;}
.x6d_c00110{left:205.500000px;}
.x10_c00110{left:217.080000px;}
.x48_c00110{left:220.920000px;}
.x5_c00110{left:222.000000px;}
.x64_c00110{left:225.420000px;}
.x1d_c00110{left:232.500000px;}
.x57_c00110{left:234.420000px;}
.x11_c00110{left:235.920000px;}
.x5e_c00110{left:237.000000px;}
.x6e_c00110{left:239.580000px;}
.x2e_c00110{left:248.580000px;}
.x1e_c00110{left:253.920000px;}
.x7b_c00110{left:255.000000px;}
.x58_c00110{left:261.000000px;}
.x6_c00110{left:262.080000px;}
.x49_c00110{left:264.000000px;}
.x2f_c00110{left:268.920000px;}
.x7d_c00110{left:272.145000px;}
.x1f_c00110{left:277.500000px;}
.x40_c00110{left:283.920000px;}
.x7_c00110{left:290.355000px;}
.x4a_c00110{left:296.580000px;}
.x3a_c00110{left:298.500000px;}
.x6f_c00110{left:307.500000px;}
.x20_c00110{left:309.420000px;}
.x7c_c00110{left:310.920000px;}
.x4b_c00110{left:316.920000px;}
.x80_c00110{left:318.000000px;}
.x65_c00110{left:319.920000px;}
.x70_c00110{left:325.500000px;}
.x30_c00110{left:327.420000px;}
.x21_c00110{left:334.080000px;}
.x12_c00110{left:339.000000px;}
.x7e_c00110{left:343.920000px;}
.x4c_c00110{left:345.000000px;}
.x8_c00110{left:347.580000px;}
.x13_c00110{left:355.080000px;}
.x81_c00110{left:365.580000px;}
.x59_c00110{left:376.500000px;}
.x41_c00110{left:382.500000px;}
.x31_c00110{left:387.420000px;}
.x4d_c00110{left:388.500000px;}
.x3b_c00110{left:390.000000px;}
.x22_c00110{left:393.420000px;}
.x2_c00110{left:397.500000px;}
.x71_c00110{left:399.000000px;}
.x42_c00110{left:400.500000px;}
.x76_c00110{left:402.420000px;}
.x9_c00110{left:406.500000px;}
.x66_c00110{left:407.580000px;}
.x23_c00110{left:413.580000px;}
.x14_c00110{left:417.000000px;}
.xa_c00110{left:423.000000px;}
.x32_c00110{left:424.080000px;}
.x24_c00110{left:430.920000px;}
.x4e_c00110{left:434.580000px;}
.x43_c00110{left:439.500000px;}
.x15_c00110{left:444.000000px;}
.xb_c00110{left:447.000000px;}
.x82_c00110{left:453.000000px;}
.x4f_c00110{left:454.080000px;}
.x25_c00110{left:456.420000px;}
.x44_c00110{left:459.000000px;}
.x67_c00110{left:460.500000px;}
.x5a_c00110{left:462.000000px;}
.x33_c00110{left:467.580000px;}
.x3c_c00110{left:469.500000px;}
.x16_c00110{left:472.500000px;}
.x26_c00110{left:481.500000px;}
.x34_c00110{left:487.500000px;}
.x17_c00110{left:489.420000px;}
.x50_c00110{left:499.920000px;}
.x86_c00110{left:502.500000px;}
.x3d_c00110{left:507.000000px;}
.x83_c00110{left:510.000000px;}
.x72_c00110{left:511.920000px;}
.x68_c00110{left:513.000000px;}
.x5b_c00110{left:516.000000px;}
.x18_c00110{left:526.500000px;}
.x51_c00110{left:528.420000px;}
.xc_c00110{left:534.420000px;}
.x69_c00110{left:535.500000px;}
.x45_c00110{left:542.580000px;}
.x27_c00110{left:553.920000px;}
.x35_c00110{left:555.420000px;}
.x73_c00110{left:556.920000px;}
.x5c_c00110{left:559.500000px;}
.x77_c00110{left:561.000000px;}
.x52_c00110{left:568.920000px;}
.x3e_c00110{left:570.420000px;}
.x74_c00110{left:573.000000px;}
.x19_c00110{left:576.420000px;}
.x28_c00110{left:582.000000px;}
.x46_c00110{left:585.000000px;}
.x5f_c00110{left:592.500000px;}
.x36_c00110{left:598.500000px;}
.x84_c00110{left:600.000000px;}
.x1a_c00110{left:601.500000px;}
.x6a_c00110{left:602.580000px;}
.xd_c00110{left:613.080000px;}
.x53_c00110{left:618.000000px;}
.x78_c00110{left:621.420000px;}
.x47_c00110{left:622.500000px;}
.x3f_c00110{left:624.420000px;}
.x29_c00110{left:627.420000px;}
.x75_c00110{left:630.420000px;}
.x37_c00110{left:634.080000px;}
.x54_c00110{left:637.920000px;}
.x38_c00110{left:654.420000px;}
.x79_c00110{left:655.920000px;}
.x55_c00110{left:666.420000px;}
.x85_c00110{left:667.500000px;}
.x5d_c00110{left:669.000000px;}
.x2a_c00110{left:670.500000px;}
.x7a_c00110{left:672.000000px;}
.xe_c00110{left:673.920000px;}
.x1b_c00110{left:676.500000px;}
.x62_c00110{left:681.000000px;}
.x39_c00110{left:682.920000px;}
.x7f_c00110{left:684.000000px;}
.x1c_c00110{left:690.000000px;}
.x60_c00110{left:697.080000px;}
.xf_c00110{left:699.000000px;}
.x56_c00110{left:704.580000px;}
.x1_c00110{left:710.580000px;}
.x61_c00110{left:715.080000px;}
.x2b_c00110{left:722.580000px;}
@media print{
.v0_c00110{vertical-align:0.000000pt;}
.ls0_c00110{letter-spacing:0.000000pt;}
.ws2_c00110{word-spacing:-13.237333pt;}
.ws0_c00110{word-spacing:-3.081462pt;}
.ws1_c00110{word-spacing:-2.620662pt;}
.ws3_c00110{word-spacing:0.000000pt;}
._0_c00110{width:5.229235pt;}
.fs6_c00110{font-size:12.106667pt;}
.fs5_c00110{font-size:16.640000pt;}
.fs1_c00110{font-size:18.133333pt;}
.fs0_c00110{font-size:22.666667pt;}
.fs2_c00110{font-size:25.706667pt;}
.fs3_c00110{font-size:28.746667pt;}
.fs4_c00110{font-size:31.733333pt;}
.y0_c00110{bottom:0.000000pt;}
.y2e_c00110{bottom:223.026667pt;}
.y2c_c00110{bottom:223.773333pt;}
.y2d_c00110{bottom:225.106667pt;}
.y2b_c00110{bottom:225.693333pt;}
.y2f_c00110{bottom:227.026667pt;}
.y26_c00110{bottom:241.106667pt;}
.y28_c00110{bottom:242.066667pt;}
.y27_c00110{bottom:243.026667pt;}
.y2a_c00110{bottom:243.226667pt;}
.y29_c00110{bottom:244.360000pt;}
.y23_c00110{bottom:258.440000pt;}
.y21_c00110{bottom:259.400000pt;}
.y25_c00110{bottom:259.773333pt;}
.y20_c00110{bottom:260.360000pt;}
.y22_c00110{bottom:260.560000pt;}
.y24_c00110{bottom:261.693333pt;}
.y1d_c00110{bottom:277.106667pt;}
.y1f_c00110{bottom:277.306667pt;}
.y1c_c00110{bottom:277.893333pt;}
.y1e_c00110{bottom:279.026667pt;}
.y1b_c00110{bottom:294.440000pt;}
.y19_c00110{bottom:296.360000pt;}
.y1a_c00110{bottom:297.306667pt;}
.y18_c00110{bottom:310.440000pt;}
.y13_c00110{bottom:311.026667pt;}
.y14_c00110{bottom:311.773333pt;}
.y17_c00110{bottom:311.973333pt;}
.y16_c00110{bottom:313.306667pt;}
.y15_c00110{bottom:313.693333pt;}
.y12_c00110{bottom:328.360000pt;}
.ye_c00110{bottom:329.106667pt;}
.yf_c00110{bottom:330.066667pt;}
.y10_c00110{bottom:330.640000pt;}
.yd_c00110{bottom:331.026667pt;}
.y11_c00110{bottom:331.226667pt;}
.yb_c00110{bottom:346.440000pt;}
.yc_c00110{bottom:347.400000pt;}
.y9_c00110{bottom:348.360000pt;}
.ya_c00110{bottom:348.560000pt;}
.y4_c00110{bottom:364.733333pt;}
.y8_c00110{bottom:365.106667pt;}
.y3_c00110{bottom:365.693333pt;}
.y5_c00110{bottom:366.066667pt;}
.y7_c00110{bottom:366.640000pt;}
.y6_c00110{bottom:367.026667pt;}
.y4c_c00110{bottom:394.266667pt;}
.y4b_c00110{bottom:395.226667pt;}
.y47_c00110{bottom:395.973333pt;}
.y46_c00110{bottom:406.640000pt;}
.y49_c00110{bottom:407.400000pt;}
.y4a_c00110{bottom:407.600000pt;}
.y44_c00110{bottom:408.360000pt;}
.y45_c00110{bottom:408.560000pt;}
.y43_c00110{bottom:409.306667pt;}
.y48_c00110{bottom:410.266667pt;}
.y41_c00110{bottom:420.933333pt;}
.y3f_c00110{bottom:421.693333pt;}
.y40_c00110{bottom:421.893333pt;}
.y3e_c00110{bottom:422.640000pt;}
.y42_c00110{bottom:423.600000pt;}
.y3d_c00110{bottom:433.306667pt;}
.y3b_c00110{bottom:434.066667pt;}
.y3c_c00110{bottom:434.266667pt;}
.y31_c00110{bottom:435.026667pt;}
.y39_c00110{bottom:435.973333pt;}
.y3a_c00110{bottom:436.173333pt;}
.y35_c00110{bottom:446.640000pt;}
.y37_c00110{bottom:447.026667pt;}
.y32_c00110{bottom:447.400000pt;}
.y38_c00110{bottom:447.600000pt;}
.y36_c00110{bottom:448.360000pt;}
.y34_c00110{bottom:448.560000pt;}
.y30_c00110{bottom:449.306667pt;}
.y33_c00110{bottom:450.266667pt;}
.y2_c00110{bottom:976.933333pt;}
.y1_c00110{bottom:978.640000pt;}
.h7_c00110{height:14.890964pt;}
.h6_c00110{height:20.466875pt;}
.h2_c00110{height:22.303646pt;}
.h1_c00110{height:27.879557pt;}
.h3_c00110{height:31.618698pt;}
.h4_c00110{height:35.357839pt;}
.h5_c00110{height:39.031380pt;}
.h0_c00110{height:1186.666667pt;}
.w0_c00110{width:782.666667pt;}
.x0_c00110{left:0.000000pt;}
.x63_c00110{left:133.706667pt;}
.x6b_c00110{left:135.240000pt;}
.x2c_c00110{left:142.666667pt;}
.x3_c00110{left:150.293333pt;}
.x6c_c00110{left:162.093333pt;}
.x4_c00110{left:170.666667pt;}
.x2d_c00110{left:171.626667pt;}
.x6d_c00110{left:182.666667pt;}
.x10_c00110{left:192.960000pt;}
.x48_c00110{left:196.373333pt;}
.x5_c00110{left:197.333333pt;}
.x64_c00110{left:200.373333pt;}
.x1d_c00110{left:206.666667pt;}
.x57_c00110{left:208.373333pt;}
.x11_c00110{left:209.706667pt;}
.x5e_c00110{left:210.666667pt;}
.x6e_c00110{left:212.960000pt;}
.x2e_c00110{left:220.960000pt;}
.x1e_c00110{left:225.706667pt;}
.x7b_c00110{left:226.666667pt;}
.x58_c00110{left:232.000000pt;}
.x6_c00110{left:232.960000pt;}
.x49_c00110{left:234.666667pt;}
.x2f_c00110{left:239.040000pt;}
.x7d_c00110{left:241.906667pt;}
.x1f_c00110{left:246.666667pt;}
.x40_c00110{left:252.373333pt;}
.x7_c00110{left:258.093333pt;}
.x4a_c00110{left:263.626667pt;}
.x3a_c00110{left:265.333333pt;}
.x6f_c00110{left:273.333333pt;}
.x20_c00110{left:275.040000pt;}
.x7c_c00110{left:276.373333pt;}
.x4b_c00110{left:281.706667pt;}
.x80_c00110{left:282.666667pt;}
.x65_c00110{left:284.373333pt;}
.x70_c00110{left:289.333333pt;}
.x30_c00110{left:291.040000pt;}
.x21_c00110{left:296.960000pt;}
.x12_c00110{left:301.333333pt;}
.x7e_c00110{left:305.706667pt;}
.x4c_c00110{left:306.666667pt;}
.x8_c00110{left:308.960000pt;}
.x13_c00110{left:315.626667pt;}
.x81_c00110{left:324.960000pt;}
.x59_c00110{left:334.666667pt;}
.x41_c00110{left:340.000000pt;}
.x31_c00110{left:344.373333pt;}
.x4d_c00110{left:345.333333pt;}
.x3b_c00110{left:346.666667pt;}
.x22_c00110{left:349.706667pt;}
.x2_c00110{left:353.333333pt;}
.x71_c00110{left:354.666667pt;}
.x42_c00110{left:356.000000pt;}
.x76_c00110{left:357.706667pt;}
.x9_c00110{left:361.333333pt;}
.x66_c00110{left:362.293333pt;}
.x23_c00110{left:367.626667pt;}
.x14_c00110{left:370.666667pt;}
.xa_c00110{left:376.000000pt;}
.x32_c00110{left:376.960000pt;}
.x24_c00110{left:383.040000pt;}
.x4e_c00110{left:386.293333pt;}
.x43_c00110{left:390.666667pt;}
.x15_c00110{left:394.666667pt;}
.xb_c00110{left:397.333333pt;}
.x82_c00110{left:402.666667pt;}
.x4f_c00110{left:403.626667pt;}
.x25_c00110{left:405.706667pt;}
.x44_c00110{left:408.000000pt;}
.x67_c00110{left:409.333333pt;}
.x5a_c00110{left:410.666667pt;}
.x33_c00110{left:415.626667pt;}
.x3c_c00110{left:417.333333pt;}
.x16_c00110{left:420.000000pt;}
.x26_c00110{left:428.000000pt;}
.x34_c00110{left:433.333333pt;}
.x17_c00110{left:435.040000pt;}
.x50_c00110{left:444.373333pt;}
.x86_c00110{left:446.666667pt;}
.x3d_c00110{left:450.666667pt;}
.x83_c00110{left:453.333333pt;}
.x72_c00110{left:455.040000pt;}
.x68_c00110{left:456.000000pt;}
.x5b_c00110{left:458.666667pt;}
.x18_c00110{left:468.000000pt;}
.x51_c00110{left:469.706667pt;}
.xc_c00110{left:475.040000pt;}
.x69_c00110{left:476.000000pt;}
.x45_c00110{left:482.293333pt;}
.x27_c00110{left:492.373333pt;}
.x35_c00110{left:493.706667pt;}
.x73_c00110{left:495.040000pt;}
.x5c_c00110{left:497.333333pt;}
.x77_c00110{left:498.666667pt;}
.x52_c00110{left:505.706667pt;}
.x3e_c00110{left:507.040000pt;}
.x74_c00110{left:509.333333pt;}
.x19_c00110{left:512.373333pt;}
.x28_c00110{left:517.333333pt;}
.x46_c00110{left:520.000000pt;}
.x5f_c00110{left:526.666667pt;}
.x36_c00110{left:532.000000pt;}
.x84_c00110{left:533.333333pt;}
.x1a_c00110{left:534.666667pt;}
.x6a_c00110{left:535.626667pt;}
.xd_c00110{left:544.960000pt;}
.x53_c00110{left:549.333333pt;}
.x78_c00110{left:552.373333pt;}
.x47_c00110{left:553.333333pt;}
.x3f_c00110{left:555.040000pt;}
.x29_c00110{left:557.706667pt;}
.x75_c00110{left:560.373333pt;}
.x37_c00110{left:563.626667pt;}
.x54_c00110{left:567.040000pt;}
.x38_c00110{left:581.706667pt;}
.x79_c00110{left:583.040000pt;}
.x55_c00110{left:592.373333pt;}
.x85_c00110{left:593.333333pt;}
.x5d_c00110{left:594.666667pt;}
.x2a_c00110{left:596.000000pt;}
.x7a_c00110{left:597.333333pt;}
.xe_c00110{left:599.040000pt;}
.x1b_c00110{left:601.333333pt;}
.x62_c00110{left:605.333333pt;}
.x39_c00110{left:607.040000pt;}
.x7f_c00110{left:608.000000pt;}
.x1c_c00110{left:613.333333pt;}
.x60_c00110{left:619.626667pt;}
.xf_c00110{left:621.333333pt;}
.x56_c00110{left:626.293333pt;}
.x1_c00110{left:631.626667pt;}
.x61_c00110{left:635.626667pt;}
.x2b_c00110{left:642.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_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_a5f23435cb7f265df1479d10.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m83_c00111{transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);}
.m5e_c00111{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m40_c00111{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m19_c00111{transform:matrix(0.368482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368482,0.000000,0.000000,0.250000,0,0);}
.m60_c00111{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m96_c00111{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m99_c00111{transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);}
.m33_c00111{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m6c_c00111{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m77_c00111{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m84_c00111{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m78_c00111{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m1f_c00111{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m3e_c00111{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m8a_c00111{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m47_c00111{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m8c_c00111{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m98_c00111{transform:matrix(0.394712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394712,0.000000,0.000000,0.250000,0,0);}
.m41_c00111{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m6e_c00111{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.m80_c00111{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m1a_c00111{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m87_c00111{transform:matrix(0.407209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407209,0.000000,0.000000,0.250000,0,0);}
.m1d_c00111{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m62_c00111{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m9a_c00111{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.m12_c00111{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m54_c00111{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m20_c00111{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m17_c00111{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m97_c00111{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m4f_c00111{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.me_c00111{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m7f_c00111{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m28_c00111{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m76_c00111{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m9c_c00111{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m7a_c00111{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m3_c00111{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m70_c00111{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m5d_c00111{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m55_c00111{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m43_c00111{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m5b_c00111{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m6_c00111{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m53_c00111{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m74_c00111{transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);}
.m10_c00111{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m7d_c00111{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m0_c00111{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m5a_c00111{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m58_c00111{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.m18_c00111{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m7b_c00111{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.m51_c00111{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m64_c00111{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m91_c00111{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m8d_c00111{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m45_c00111{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m2c_c00111{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m38_c00111{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m14_c00111{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m75_c00111{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m89_c00111{transform:matrix(0.466807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466807,0.000000,0.000000,0.250000,0,0);}
.m59_c00111{transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);}
.m95_c00111{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m23_c00111{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m9b_c00111{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.m42_c00111{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m49_c00111{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m61_c00111{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m8_c00111{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m21_c00111{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m3b_c00111{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m27_c00111{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m56_c00111{transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);}
.m71_c00111{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m2f_c00111{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m8b_c00111{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m5c_c00111{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m2_c00111{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_c00111{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m7e_c00111{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m90_c00111{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m73_c00111{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m1e_c00111{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m5f_c00111{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mb_c00111{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m1c_c00111{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m44_c00111{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m11_c00111{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m50_c00111{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m32_c00111{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m5_c00111{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m37_c00111{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.mf_c00111{transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);}
.m2e_c00111{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.md_c00111{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m94_c00111{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m8f_c00111{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m52_c00111{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m22_c00111{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m85_c00111{transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);}
.m39_c00111{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m7_c00111{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m3d_c00111{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m81_c00111{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m2b_c00111{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m57_c00111{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m6f_c00111{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m24_c00111{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m65_c00111{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m4c_c00111{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m16_c00111{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m88_c00111{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m34_c00111{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.mc_c00111{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m35_c00111{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m4_c00111{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m92_c00111{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m6b_c00111{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m68_c00111{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m46_c00111{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m3f_c00111{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m9d_c00111{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m7c_c00111{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m4e_c00111{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m15_c00111{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m2d_c00111{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m1_c00111{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m13_c00111{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m8e_c00111{transform:matrix(0.616701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616701,0.000000,0.000000,0.250000,0,0);}
.m86_c00111{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);}
.m48_c00111{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m4d_c00111{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m30_c00111{transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);}
.m4a_c00111{transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);}
.m36_c00111{transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);}
.ma_c00111{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m69_c00111{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m9_c00111{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m6d_c00111{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m72_c00111{transform:matrix(0.696471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696471,0.000000,0.000000,0.250000,0,0);}
.m3a_c00111{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m79_c00111{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m31_c00111{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m1b_c00111{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m26_c00111{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m63_c00111{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);}
.m82_c00111{transform:matrix(0.772059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772059,0.000000,0.000000,0.250000,0,0);}
.m67_c00111{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m93_c00111{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m4b_c00111{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m3c_c00111{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m2a_c00111{transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);}
.m6a_c00111{transform:matrix(0.999199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.999199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.999199,0.000000,0.000000,0.250000,0,0);}
.m29_c00111{transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);}
.m66_c00111{transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.332532,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:-4.814632px;}
.ws2_c00111{word-spacing:0.000000px;}
.ws1_c00111{word-spacing:10.831440px;}
.fc0_c00111{color:transparent;}
.fs8_c00111{font-size:3.420000px;}
.fs7_c00111{font-size:6.780000px;}
.fs6_c00111{font-size:18.720000px;}
.fs1_c00111{font-size:20.400000px;}
.fs3_c00111{font-size:25.500000px;}
.fs0_c00111{font-size:28.920000px;}
.fs4_c00111{font-size:32.340000px;}
.fs2_c00111{font-size:35.700000px;}
.fs5_c00111{font-size:39.120000px;}
.y0_c00111{bottom:0.000000px;}
.yd3_c00111{bottom:248.325000px;}
.yd2_c00111{bottom:248.745000px;}
.yd1_c00111{bottom:250.905000px;}
.yd4_c00111{bottom:251.130000px;}
.ycd_c00111{bottom:268.245000px;}
.ycf_c00111{bottom:268.470000px;}
.yce_c00111{bottom:269.325000px;}
.yd0_c00111{bottom:269.550000px;}
.ycc_c00111{bottom:270.405000px;}
.yc3_c00111{bottom:286.905000px;}
.yc4_c00111{bottom:287.745000px;}
.yca_c00111{bottom:287.970000px;}
.yc8_c00111{bottom:288.405000px;}
.yc7_c00111{bottom:289.245000px;}
.yc5_c00111{bottom:289.905000px;}
.ycb_c00111{bottom:290.130000px;}
.yc9_c00111{bottom:290.970000px;}
.yc6_c00111{bottom:291.405000px;}
.yc2_c00111{bottom:307.905000px;}
.yc1_c00111{bottom:308.745000px;}
.yc0_c00111{bottom:310.905000px;}
.ybc_c00111{bottom:327.405000px;}
.ybb_c00111{bottom:328.245000px;}
.ybe_c00111{bottom:328.470000px;}
.ybd_c00111{bottom:329.970000px;}
.yba_c00111{bottom:330.405000px;}
.ybf_c00111{bottom:331.470000px;}
.yb9_c00111{bottom:347.325000px;}
.yb8_c00111{bottom:347.745000px;}
.yb6_c00111{bottom:349.905000px;}
.yb7_c00111{bottom:350.970000px;}
.yaf_c00111{bottom:366.405000px;}
.yb0_c00111{bottom:367.245000px;}
.yb5_c00111{bottom:367.470000px;}
.yb2_c00111{bottom:368.745000px;}
.yb1_c00111{bottom:369.405000px;}
.yb4_c00111{bottom:370.470000px;}
.yb3_c00111{bottom:370.905000px;}
.yae_c00111{bottom:387.405000px;}
.yac_c00111{bottom:388.245000px;}
.ya9_c00111{bottom:388.905000px;}
.yab_c00111{bottom:389.130000px;}
.yaa_c00111{bottom:390.405000px;}
.yad_c00111{bottom:390.630000px;}
.ya8_c00111{bottom:405.405000px;}
.ya5_c00111{bottom:406.470000px;}
.ya7_c00111{bottom:407.745000px;}
.ya6_c00111{bottom:409.905000px;}
.ya4_c00111{bottom:424.905000px;}
.ya3_c00111{bottom:427.245000px;}
.ya1_c00111{bottom:427.905000px;}
.ya2_c00111{bottom:429.405000px;}
.y9f_c00111{bottom:444.405000px;}
.ya0_c00111{bottom:445.905000px;}
.y9d_c00111{bottom:446.745000px;}
.y9e_c00111{bottom:448.905000px;}
.y9c_c00111{bottom:466.245000px;}
.y9b_c00111{bottom:466.680000px;}
.y97_c00111{bottom:467.550000px;}
.y9a_c00111{bottom:467.745000px;}
.y98_c00111{bottom:468.405000px;}
.y99_c00111{bottom:469.905000px;}
.y96_c00111{bottom:484.470000px;}
.y8f_c00111{bottom:485.745000px;}
.y91_c00111{bottom:486.405000px;}
.y93_c00111{bottom:487.050000px;}
.y94_c00111{bottom:487.245000px;}
.y95_c00111{bottom:487.920000px;}
.y90_c00111{bottom:489.405000px;}
.y92_c00111{bottom:490.470000px;}
.y8e_c00111{bottom:505.245000px;}
.y8b_c00111{bottom:506.745000px;}
.y8d_c00111{bottom:507.405000px;}
.y89_c00111{bottom:507.825000px;}
.y8c_c00111{bottom:508.470000px;}
.y8a_c00111{bottom:508.905000px;}
.y85_c00111{bottom:523.905000px;}
.y86_c00111{bottom:524.970000px;}
.y83_c00111{bottom:526.245000px;}
.y82_c00111{bottom:526.905000px;}
.y87_c00111{bottom:527.130000px;}
.y88_c00111{bottom:527.970000px;}
.y84_c00111{bottom:528.405000px;}
.y81_c00111{bottom:544.470000px;}
.y80_c00111{bottom:545.745000px;}
.y7e_c00111{bottom:566.325000px;}
.y7f_c00111{bottom:567.405000px;}
.y7d_c00111{bottom:568.470000px;}
.y7b_c00111{bottom:584.745000px;}
.y7c_c00111{bottom:586.245000px;}
.y79_c00111{bottom:586.905000px;}
.y7a_c00111{bottom:587.130000px;}
.y73_c00111{bottom:604.245000px;}
.y77_c00111{bottom:604.470000px;}
.y75_c00111{bottom:605.745000px;}
.y74_c00111{bottom:606.405000px;}
.y72_c00111{bottom:606.630000px;}
.y76_c00111{bottom:607.470000px;}
.y78_c00111{bottom:607.905000px;}
.y6f_c00111{bottom:623.745000px;}
.y71_c00111{bottom:624.405000px;}
.y6e_c00111{bottom:625.905000px;}
.y70_c00111{bottom:626.130000px;}
.y69_c00111{bottom:643.245000px;}
.y6c_c00111{bottom:643.905000px;}
.y68_c00111{bottom:644.550000px;}
.y6a_c00111{bottom:645.405000px;}
.y6d_c00111{bottom:645.630000px;}
.y6b_c00111{bottom:646.905000px;}
.y67_c00111{bottom:661.905000px;}
.y64_c00111{bottom:662.325000px;}
.y62_c00111{bottom:663.405000px;}
.y66_c00111{bottom:664.245000px;}
.y65_c00111{bottom:665.130000px;}
.y63_c00111{bottom:665.970000px;}
.y61_c00111{bottom:666.405000px;}
.y5e_c00111{bottom:683.745000px;}
.y5f_c00111{bottom:684.825000px;}
.y5d_c00111{bottom:685.905000px;}
.y60_c00111{bottom:686.970000px;}
.y5b_c00111{bottom:701.970000px;}
.y5c_c00111{bottom:702.405000px;}
.y5a_c00111{bottom:704.325000px;}
.y59_c00111{bottom:705.405000px;}
.y56_c00111{bottom:721.905000px;}
.y53_c00111{bottom:722.745000px;}
.y54_c00111{bottom:723.825000px;}
.y55_c00111{bottom:724.905000px;}
.y58_c00111{bottom:725.130000px;}
.y57_c00111{bottom:725.970000px;}
.y4e_c00111{bottom:741.405000px;}
.y52_c00111{bottom:742.680000px;}
.y51_c00111{bottom:743.745000px;}
.y4f_c00111{bottom:744.405000px;}
.y50_c00111{bottom:745.905000px;}
.y4d_c00111{bottom:760.905000px;}
.y4c_c00111{bottom:764.970000px;}
.y47_c00111{bottom:782.745000px;}
.y46_c00111{bottom:783.405000px;}
.y4b_c00111{bottom:783.630000px;}
.y48_c00111{bottom:784.470000px;}
.y49_c00111{bottom:784.905000px;}
.y4a_c00111{bottom:785.970000px;}
.y45_c00111{bottom:799.905000px;}
.y44_c00111{bottom:800.970000px;}
.y43_c00111{bottom:802.245000px;}
.y42_c00111{bottom:804.405000px;}
.y40_c00111{bottom:820.905000px;}
.y3c_c00111{bottom:821.745000px;}
.y3e_c00111{bottom:822.405000px;}
.y41_c00111{bottom:822.630000px;}
.y3d_c00111{bottom:822.825000px;}
.y3f_c00111{bottom:823.470000px;}
.y3b_c00111{bottom:823.905000px;}
.y3a_c00111{bottom:839.970000px;}
.y36_c00111{bottom:840.825000px;}
.y35_c00111{bottom:841.245000px;}
.y37_c00111{bottom:842.130000px;}
.y39_c00111{bottom:842.325000px;}
.y34_c00111{bottom:843.405000px;}
.y38_c00111{bottom:844.905000px;}
.y32_c00111{bottom:859.470000px;}
.y33_c00111{bottom:860.745000px;}
.y31_c00111{bottom:862.245000px;}
.y2f_c00111{bottom:862.905000px;}
.y30_c00111{bottom:864.405000px;}
.y29_c00111{bottom:879.405000px;}
.y2a_c00111{bottom:880.245000px;}
.y2c_c00111{bottom:881.325000px;}
.y2d_c00111{bottom:881.970000px;}
.y2b_c00111{bottom:882.405000px;}
.y2e_c00111{bottom:882.630000px;}
.y26_c00111{bottom:899.745000px;}
.y24_c00111{bottom:901.905000px;}
.y27_c00111{bottom:902.130000px;}
.y25_c00111{bottom:902.970000px;}
.y28_c00111{bottom:903.405000px;}
.y23_c00111{bottom:918.405000px;}
.y20_c00111{bottom:919.245000px;}
.y22_c00111{bottom:920.550000px;}
.y1e_c00111{bottom:921.405000px;}
.y21_c00111{bottom:921.630000px;}
.y1f_c00111{bottom:922.905000px;}
.y1a_c00111{bottom:940.905000px;}
.y1d_c00111{bottom:941.130000px;}
.y1b_c00111{bottom:941.970000px;}
.y1c_c00111{bottom:942.405000px;}
.y17_c00111{bottom:958.905000px;}
.y19_c00111{bottom:961.905000px;}
.y18_c00111{bottom:962.970000px;}
.y16_c00111{bottom:981.405000px;}
.y15_c00111{bottom:997.920000px;}
.y14_c00111{bottom:998.355000px;}
.y11_c00111{bottom:998.745000px;}
.y12_c00111{bottom:999.825000px;}
.y10_c00111{bottom:1000.905000px;}
.y13_c00111{bottom:1001.130000px;}
.yc_c00111{bottom:1018.245000px;}
.ye_c00111{bottom:1018.680000px;}
.yd_c00111{bottom:1020.405000px;}
.yf_c00111{bottom:1020.630000px;}
.y8_c00111{bottom:1037.745000px;}
.ya_c00111{bottom:1038.825000px;}
.y9_c00111{bottom:1039.905000px;}
.yb_c00111{bottom:1040.970000px;}
.y5_c00111{bottom:1056.405000px;}
.y4_c00111{bottom:1057.245000px;}
.y7_c00111{bottom:1057.470000px;}
.y6_c00111{bottom:1058.970000px;}
.y3_c00111{bottom:1059.405000px;}
.y2_c00111{bottom:1099.050000px;}
.y1_c00111{bottom:1099.905000px;}
.h9_c00111{height:4.206533px;}
.h8_c00111{height:8.339268px;}
.h7_c00111{height:23.025234px;}
.h2_c00111{height:25.091602px;}
.h4_c00111{height:31.364502px;}
.h1_c00111{height:35.571035px;}
.h5_c00111{height:39.777568px;}
.h3_c00111{height:43.910303px;}
.h6_c00111{height:48.116836px;}
.h0_c00111{height:1335.000000px;}
.w0_c00111{width:880.500000px;}
.x0_c00111{left:0.000000px;}
.x1_c00111{left:149.580000px;}
.xcf_c00111{left:151.920000px;}
.x8e_c00111{left:153.000000px;}
.x37_c00111{left:158.580000px;}
.x5a_c00111{left:160.080000px;}
.x3_c00111{left:166.080000px;}
.x57_c00111{left:167.580000px;}
.x4_c00111{left:190.080000px;}
.x5b_c00111{left:192.000000px;}
.xc2_c00111{left:210.000000px;}
.x9c_c00111{left:219.000000px;}
.x38_c00111{left:226.500000px;}
.x3d_c00111{left:228.000000px;}
.x3a_c00111{left:229.500000px;}
.x71_c00111{left:231.000000px;}
.x5c_c00111{left:232.500000px;}
.x67_c00111{left:234.000000px;}
.x95_c00111{left:235.500000px;}
.x89_c00111{left:236.580000px;}
.x10_c00111{left:239.580000px;}
.x1c_c00111{left:241.920000px;}
.x28_c00111{left:244.080000px;}
.x4b_c00111{left:245.580000px;}
.x5_c00111{left:247.080000px;}
.x78_c00111{left:250.920000px;}
.x44_c00111{left:256.500000px;}
.x11_c00111{left:258.420000px;}
.x82_c00111{left:262.500000px;}
.x4c_c00111{left:264.420000px;}
.xbd_c00111{left:265.920000px;}
.x6_c00111{left:268.920000px;}
.x3b_c00111{left:271.500000px;}
.xc3_c00111{left:274.920000px;}
.x8a_c00111{left:276.000000px;}
.x29_c00111{left:277.275000px;}
.x1d_c00111{left:279.420000px;}
.xb9_c00111{left:285.000000px;}
.x12_c00111{left:286.500000px;}
.xb2_c00111{left:291.420000px;}
.x9d_c00111{left:295.080000px;}
.x79_c00111{left:297.420000px;}
.xaa_c00111{left:299.580000px;}
.x72_c00111{left:301.500000px;}
.x3e_c00111{left:303.000000px;}
.xba_c00111{left:304.920000px;}
.x1e_c00111{left:306.000000px;}
.xc4_c00111{left:307.080000px;}
.xb5_c00111{left:309.000000px;}
.x5d_c00111{left:313.920000px;}
.x2a_c00111{left:315.420000px;}
.x96_c00111{left:318.420000px;}
.x68_c00111{left:319.500000px;}
.xc6_c00111{left:321.420000px;}
.x4d_c00111{left:322.920000px;}
.x3f_c00111{left:324.000000px;}
.xbe_c00111{left:325.920000px;}
.x7_c00111{left:328.920000px;}
.x13_c00111{left:330.000000px;}
.xab_c00111{left:331.920000px;}
.x40_c00111{left:337.500000px;}
.xbb_c00111{left:339.000000px;}
.x7a_c00111{left:344.580000px;}
.x5e_c00111{left:351.420000px;}
.x45_c00111{left:352.500000px;}
.x73_c00111{left:356.580000px;}
.x9e_c00111{left:358.500000px;}
.x69_c00111{left:360.000000px;}
.x2b_c00111{left:361.500000px;}
.x90_c00111{left:363.420000px;}
.x46_c00111{left:364.500000px;}
.x41_c00111{left:365.580000px;}
.x14_c00111{left:367.500000px;}
.xb3_c00111{left:370.080000px;}
.x1f_c00111{left:372.000000px;}
.x5f_c00111{left:376.500000px;}
.x74_c00111{left:378.420000px;}
.x4e_c00111{left:379.920000px;}
.xd0_c00111{left:381.420000px;}
.xbf_c00111{left:384.420000px;}
.x97_c00111{left:386.580000px;}
.x8_c00111{left:388.920000px;}
.xaf_c00111{left:390.420000px;}
.x47_c00111{left:394.080000px;}
.x8b_c00111{left:396.000000px;}
.xb6_c00111{left:397.920000px;}
.x2_c00111{left:399.000000px;}
.x9f_c00111{left:400.500000px;}
.x83_c00111{left:405.000000px;}
.x42_c00111{left:406.920000px;}
.x8f_c00111{left:409.500000px;}
.xb4_c00111{left:412.500000px;}
.x2c_c00111{left:414.420000px;}
.xb0_c00111{left:415.500000px;}
.x4f_c00111{left:416.580000px;}
.xa6_c00111{left:418.920000px;}
.x91_c00111{left:420.000000px;}
.x6a_c00111{left:421.080000px;}
.xb7_c00111{left:423.000000px;}
.x7b_c00111{left:424.920000px;}
.x9_c00111{left:427.500000px;}
.x60_c00111{left:429.420000px;}
.x48_c00111{left:433.500000px;}
.x50_c00111{left:438.000000px;}
.xd1_c00111{left:439.500000px;}
.x6b_c00111{left:442.500000px;}
.x20_c00111{left:443.580000px;}
.x15_c00111{left:445.500000px;}
.x2d_c00111{left:450.000000px;}
.xa_c00111{left:451.500000px;}
.x84_c00111{left:453.000000px;}
.x75_c00111{left:454.920000px;}
.xa7_c00111{left:456.000000px;}
.x51_c00111{left:457.080000px;}
.xb8_c00111{left:459.420000px;}
.x21_c00111{left:462.420000px;}
.x92_c00111{left:463.500000px;}
.x6c_c00111{left:471.000000px;}
.xb_c00111{left:472.080000px;}
.x52_c00111{left:477.000000px;}
.xc7_c00111{left:478.500000px;}
.x43_c00111{left:480.420000px;}
.x7c_c00111{left:484.920000px;}
.xac_c00111{left:487.500000px;}
.x22_c00111{left:489.000000px;}
.xc_c00111{left:493.500000px;}
.x61_c00111{left:495.420000px;}
.xc8_c00111{left:496.500000px;}
.x98_c00111{left:499.500000px;}
.x2e_c00111{left:501.420000px;}
.xad_c00111{left:504.000000px;}
.x85_c00111{left:505.920000px;}
.x49_c00111{left:507.420000px;}
.x6d_c00111{left:508.920000px;}
.x53_c00111{left:513.000000px;}
.xc9_c00111{left:516.000000px;}
.x16_c00111{left:517.500000px;}
.x7d_c00111{left:522.000000px;}
.xbc_c00111{left:525.420000px;}
.xd_c00111{left:532.500000px;}
.x23_c00111{left:535.080000px;}
.x6e_c00111{left:541.500000px;}
.x7e_c00111{left:544.500000px;}
.x17_c00111{left:546.000000px;}
.x35_c00111{left:550.080000px;}
.x62_c00111{left:552.420000px;}
.xa8_c00111{left:553.920000px;}
.x2f_c00111{left:555.000000px;}
.x86_c00111{left:556.080000px;}
.xa2_c00111{left:558.000000px;}
.xa0_c00111{left:561.000000px;}
.xb1_c00111{left:562.080000px;}
.x7f_c00111{left:563.580000px;}
.x24_c00111{left:565.500000px;}
.xd5_c00111{left:567.000000px;}
.x54_c00111{left:570.000000px;}
.x58_c00111{left:573.000000px;}
.x66_c00111{left:576.000000px;}
.x87_c00111{left:577.920000px;}
.xe_c00111{left:580.080000px;}
.xcd_c00111{left:582.420000px;}
.x80_c00111{left:585.000000px;}
.xca_c00111{left:589.500000px;}
.x93_c00111{left:591.000000px;}
.xa3_c00111{left:594.000000px;}
.x99_c00111{left:598.500000px;}
.x76_c00111{left:603.000000px;}
.x25_c00111{left:604.500000px;}
.x30_c00111{left:607.500000px;}
.x63_c00111{left:609.420000px;}
.x18_c00111{left:617.580000px;}
.x31_c00111{left:619.500000px;}
.xae_c00111{left:621.000000px;}
.xa4_c00111{left:622.080000px;}
.x81_c00111{left:627.000000px;}
.x55_c00111{left:628.920000px;}
.x59_c00111{left:630.000000px;}
.xc5_c00111{left:634.500000px;}
.xd2_c00111{left:636.420000px;}
.x19_c00111{left:637.920000px;}
.x26_c00111{left:639.000000px;}
.x8c_c00111{left:641.580000px;}
.x6f_c00111{left:643.080000px;}
.x64_c00111{left:644.580000px;}
.x9a_c00111{left:652.500000px;}
.xa5_c00111{left:661.500000px;}
.x32_c00111{left:663.000000px;}
.x65_c00111{left:664.500000px;}
.x1a_c00111{left:666.420000px;}
.x27_c00111{left:669.420000px;}
.xa9_c00111{left:670.500000px;}
.xcb_c00111{left:672.420000px;}
.xd3_c00111{left:673.920000px;}
.xc0_c00111{left:676.920000px;}
.x36_c00111{left:684.000000px;}
.x8d_c00111{left:688.080000px;}
.xd6_c00111{left:689.580000px;}
.x94_c00111{left:691.500000px;}
.x70_c00111{left:692.580000px;}
.x56_c00111{left:695.580000px;}
.xce_c00111{left:696.645000px;}
.x88_c00111{left:697.920000px;}
.x77_c00111{left:699.000000px;}
.xd4_c00111{left:700.500000px;}
.x1b_c00111{left:703.080000px;}
.xc1_c00111{left:705.000000px;}
.xf_c00111{left:706.920000px;}
.x33_c00111{left:708.000000px;}
.xcc_c00111{left:709.500000px;}
.x3c_c00111{left:714.420000px;}
.xa1_c00111{left:715.500000px;}
.x9b_c00111{left:716.580000px;}
.x39_c00111{left:719.580000px;}
.x4a_c00111{left:721.080000px;}
.x34_c00111{left:723.000000px;}
@media print{
.v0_c00111{vertical-align:0.000000pt;}
.ls0_c00111{letter-spacing:0.000000pt;}
.ws0_c00111{word-spacing:-4.279673pt;}
.ws2_c00111{word-spacing:0.000000pt;}
.ws1_c00111{word-spacing:9.627947pt;}
.fs8_c00111{font-size:3.040000pt;}
.fs7_c00111{font-size:6.026667pt;}
.fs6_c00111{font-size:16.640000pt;}
.fs1_c00111{font-size:18.133333pt;}
.fs3_c00111{font-size:22.666667pt;}
.fs0_c00111{font-size:25.706667pt;}
.fs4_c00111{font-size:28.746667pt;}
.fs2_c00111{font-size:31.733333pt;}
.fs5_c00111{font-size:34.773333pt;}
.y0_c00111{bottom:0.000000pt;}
.yd3_c00111{bottom:220.733333pt;}
.yd2_c00111{bottom:221.106667pt;}
.yd1_c00111{bottom:223.026667pt;}
.yd4_c00111{bottom:223.226667pt;}
.ycd_c00111{bottom:238.440000pt;}
.ycf_c00111{bottom:238.640000pt;}
.yce_c00111{bottom:239.400000pt;}
.yd0_c00111{bottom:239.600000pt;}
.ycc_c00111{bottom:240.360000pt;}
.yc3_c00111{bottom:255.026667pt;}
.yc4_c00111{bottom:255.773333pt;}
.yca_c00111{bottom:255.973333pt;}
.yc8_c00111{bottom:256.360000pt;}
.yc7_c00111{bottom:257.106667pt;}
.yc5_c00111{bottom:257.693333pt;}
.ycb_c00111{bottom:257.893333pt;}
.yc9_c00111{bottom:258.640000pt;}
.yc6_c00111{bottom:259.026667pt;}
.yc2_c00111{bottom:273.693333pt;}
.yc1_c00111{bottom:274.440000pt;}
.yc0_c00111{bottom:276.360000pt;}
.ybc_c00111{bottom:291.026667pt;}
.ybb_c00111{bottom:291.773333pt;}
.ybe_c00111{bottom:291.973333pt;}
.ybd_c00111{bottom:293.306667pt;}
.yba_c00111{bottom:293.693333pt;}
.ybf_c00111{bottom:294.640000pt;}
.yb9_c00111{bottom:308.733333pt;}
.yb8_c00111{bottom:309.106667pt;}
.yb6_c00111{bottom:311.026667pt;}
.yb7_c00111{bottom:311.973333pt;}
.yaf_c00111{bottom:325.693333pt;}
.yb0_c00111{bottom:326.440000pt;}
.yb5_c00111{bottom:326.640000pt;}
.yb2_c00111{bottom:327.773333pt;}
.yb1_c00111{bottom:328.360000pt;}
.yb4_c00111{bottom:329.306667pt;}
.yb3_c00111{bottom:329.693333pt;}
.yae_c00111{bottom:344.360000pt;}
.yac_c00111{bottom:345.106667pt;}
.ya9_c00111{bottom:345.693333pt;}
.yab_c00111{bottom:345.893333pt;}
.yaa_c00111{bottom:347.026667pt;}
.yad_c00111{bottom:347.226667pt;}
.ya8_c00111{bottom:360.360000pt;}
.ya5_c00111{bottom:361.306667pt;}
.ya7_c00111{bottom:362.440000pt;}
.ya6_c00111{bottom:364.360000pt;}
.ya4_c00111{bottom:377.693333pt;}
.ya3_c00111{bottom:379.773333pt;}
.ya1_c00111{bottom:380.360000pt;}
.ya2_c00111{bottom:381.693333pt;}
.y9f_c00111{bottom:395.026667pt;}
.ya0_c00111{bottom:396.360000pt;}
.y9d_c00111{bottom:397.106667pt;}
.y9e_c00111{bottom:399.026667pt;}
.y9c_c00111{bottom:414.440000pt;}
.y9b_c00111{bottom:414.826667pt;}
.y97_c00111{bottom:415.600000pt;}
.y9a_c00111{bottom:415.773333pt;}
.y98_c00111{bottom:416.360000pt;}
.y99_c00111{bottom:417.693333pt;}
.y96_c00111{bottom:430.640000pt;}
.y8f_c00111{bottom:431.773333pt;}
.y91_c00111{bottom:432.360000pt;}
.y93_c00111{bottom:432.933333pt;}
.y94_c00111{bottom:433.106667pt;}
.y95_c00111{bottom:433.706667pt;}
.y90_c00111{bottom:435.026667pt;}
.y92_c00111{bottom:435.973333pt;}
.y8e_c00111{bottom:449.106667pt;}
.y8b_c00111{bottom:450.440000pt;}
.y8d_c00111{bottom:451.026667pt;}
.y89_c00111{bottom:451.400000pt;}
.y8c_c00111{bottom:451.973333pt;}
.y8a_c00111{bottom:452.360000pt;}
.y85_c00111{bottom:465.693333pt;}
.y86_c00111{bottom:466.640000pt;}
.y83_c00111{bottom:467.773333pt;}
.y82_c00111{bottom:468.360000pt;}
.y87_c00111{bottom:468.560000pt;}
.y88_c00111{bottom:469.306667pt;}
.y84_c00111{bottom:469.693333pt;}
.y81_c00111{bottom:483.973333pt;}
.y80_c00111{bottom:485.106667pt;}
.y7e_c00111{bottom:503.400000pt;}
.y7f_c00111{bottom:504.360000pt;}
.y7d_c00111{bottom:505.306667pt;}
.y7b_c00111{bottom:519.773333pt;}
.y7c_c00111{bottom:521.106667pt;}
.y79_c00111{bottom:521.693333pt;}
.y7a_c00111{bottom:521.893333pt;}
.y73_c00111{bottom:537.106667pt;}
.y77_c00111{bottom:537.306667pt;}
.y75_c00111{bottom:538.440000pt;}
.y74_c00111{bottom:539.026667pt;}
.y72_c00111{bottom:539.226667pt;}
.y76_c00111{bottom:539.973333pt;}
.y78_c00111{bottom:540.360000pt;}
.y6f_c00111{bottom:554.440000pt;}
.y71_c00111{bottom:555.026667pt;}
.y6e_c00111{bottom:556.360000pt;}
.y70_c00111{bottom:556.560000pt;}
.y69_c00111{bottom:571.773333pt;}
.y6c_c00111{bottom:572.360000pt;}
.y68_c00111{bottom:572.933333pt;}
.y6a_c00111{bottom:573.693333pt;}
.y6d_c00111{bottom:573.893333pt;}
.y6b_c00111{bottom:575.026667pt;}
.y67_c00111{bottom:588.360000pt;}
.y64_c00111{bottom:588.733333pt;}
.y62_c00111{bottom:589.693333pt;}
.y66_c00111{bottom:590.440000pt;}
.y65_c00111{bottom:591.226667pt;}
.y63_c00111{bottom:591.973333pt;}
.y61_c00111{bottom:592.360000pt;}
.y5e_c00111{bottom:607.773333pt;}
.y5f_c00111{bottom:608.733333pt;}
.y5d_c00111{bottom:609.693333pt;}
.y60_c00111{bottom:610.640000pt;}
.y5b_c00111{bottom:623.973333pt;}
.y5c_c00111{bottom:624.360000pt;}
.y5a_c00111{bottom:626.066667pt;}
.y59_c00111{bottom:627.026667pt;}
.y56_c00111{bottom:641.693333pt;}
.y53_c00111{bottom:642.440000pt;}
.y54_c00111{bottom:643.400000pt;}
.y55_c00111{bottom:644.360000pt;}
.y58_c00111{bottom:644.560000pt;}
.y57_c00111{bottom:645.306667pt;}
.y4e_c00111{bottom:659.026667pt;}
.y52_c00111{bottom:660.160000pt;}
.y51_c00111{bottom:661.106667pt;}
.y4f_c00111{bottom:661.693333pt;}
.y50_c00111{bottom:663.026667pt;}
.y4d_c00111{bottom:676.360000pt;}
.y4c_c00111{bottom:679.973333pt;}
.y47_c00111{bottom:695.773333pt;}
.y46_c00111{bottom:696.360000pt;}
.y4b_c00111{bottom:696.560000pt;}
.y48_c00111{bottom:697.306667pt;}
.y49_c00111{bottom:697.693333pt;}
.y4a_c00111{bottom:698.640000pt;}
.y45_c00111{bottom:711.026667pt;}
.y44_c00111{bottom:711.973333pt;}
.y43_c00111{bottom:713.106667pt;}
.y42_c00111{bottom:715.026667pt;}
.y40_c00111{bottom:729.693333pt;}
.y3c_c00111{bottom:730.440000pt;}
.y3e_c00111{bottom:731.026667pt;}
.y41_c00111{bottom:731.226667pt;}
.y3d_c00111{bottom:731.400000pt;}
.y3f_c00111{bottom:731.973333pt;}
.y3b_c00111{bottom:732.360000pt;}
.y3a_c00111{bottom:746.640000pt;}
.y36_c00111{bottom:747.400000pt;}
.y35_c00111{bottom:747.773333pt;}
.y37_c00111{bottom:748.560000pt;}
.y39_c00111{bottom:748.733333pt;}
.y34_c00111{bottom:749.693333pt;}
.y38_c00111{bottom:751.026667pt;}
.y32_c00111{bottom:763.973333pt;}
.y33_c00111{bottom:765.106667pt;}
.y31_c00111{bottom:766.440000pt;}
.y2f_c00111{bottom:767.026667pt;}
.y30_c00111{bottom:768.360000pt;}
.y29_c00111{bottom:781.693333pt;}
.y2a_c00111{bottom:782.440000pt;}
.y2c_c00111{bottom:783.400000pt;}
.y2d_c00111{bottom:783.973333pt;}
.y2b_c00111{bottom:784.360000pt;}
.y2e_c00111{bottom:784.560000pt;}
.y26_c00111{bottom:799.773333pt;}
.y24_c00111{bottom:801.693333pt;}
.y27_c00111{bottom:801.893333pt;}
.y25_c00111{bottom:802.640000pt;}
.y28_c00111{bottom:803.026667pt;}
.y23_c00111{bottom:816.360000pt;}
.y20_c00111{bottom:817.106667pt;}
.y22_c00111{bottom:818.266667pt;}
.y1e_c00111{bottom:819.026667pt;}
.y21_c00111{bottom:819.226667pt;}
.y1f_c00111{bottom:820.360000pt;}
.y1a_c00111{bottom:836.360000pt;}
.y1d_c00111{bottom:836.560000pt;}
.y1b_c00111{bottom:837.306667pt;}
.y1c_c00111{bottom:837.693333pt;}
.y17_c00111{bottom:852.360000pt;}
.y19_c00111{bottom:855.026667pt;}
.y18_c00111{bottom:855.973333pt;}
.y16_c00111{bottom:872.360000pt;}
.y15_c00111{bottom:887.040000pt;}
.y14_c00111{bottom:887.426667pt;}
.y11_c00111{bottom:887.773333pt;}
.y12_c00111{bottom:888.733333pt;}
.y10_c00111{bottom:889.693333pt;}
.y13_c00111{bottom:889.893333pt;}
.yc_c00111{bottom:905.106667pt;}
.ye_c00111{bottom:905.493333pt;}
.yd_c00111{bottom:907.026667pt;}
.yf_c00111{bottom:907.226667pt;}
.y8_c00111{bottom:922.440000pt;}
.ya_c00111{bottom:923.400000pt;}
.y9_c00111{bottom:924.360000pt;}
.yb_c00111{bottom:925.306667pt;}
.y5_c00111{bottom:939.026667pt;}
.y4_c00111{bottom:939.773333pt;}
.y7_c00111{bottom:939.973333pt;}
.y6_c00111{bottom:941.306667pt;}
.y3_c00111{bottom:941.693333pt;}
.y2_c00111{bottom:976.933333pt;}
.y1_c00111{bottom:977.693333pt;}
.h9_c00111{height:3.739141pt;}
.h8_c00111{height:7.412682pt;}
.h7_c00111{height:20.466875pt;}
.h2_c00111{height:22.303646pt;}
.h4_c00111{height:27.879557pt;}
.h1_c00111{height:31.618698pt;}
.h5_c00111{height:35.357839pt;}
.h3_c00111{height:39.031380pt;}
.h6_c00111{height:42.770521pt;}
.h0_c00111{height:1186.666667pt;}
.w0_c00111{width:782.666667pt;}
.x0_c00111{left:0.000000pt;}
.x1_c00111{left:132.960000pt;}
.xcf_c00111{left:135.040000pt;}
.x8e_c00111{left:136.000000pt;}
.x37_c00111{left:140.960000pt;}
.x5a_c00111{left:142.293333pt;}
.x3_c00111{left:147.626667pt;}
.x57_c00111{left:148.960000pt;}
.x4_c00111{left:168.960000pt;}
.x5b_c00111{left:170.666667pt;}
.xc2_c00111{left:186.666667pt;}
.x9c_c00111{left:194.666667pt;}
.x38_c00111{left:201.333333pt;}
.x3d_c00111{left:202.666667pt;}
.x3a_c00111{left:204.000000pt;}
.x71_c00111{left:205.333333pt;}
.x5c_c00111{left:206.666667pt;}
.x67_c00111{left:208.000000pt;}
.x95_c00111{left:209.333333pt;}
.x89_c00111{left:210.293333pt;}
.x10_c00111{left:212.960000pt;}
.x1c_c00111{left:215.040000pt;}
.x28_c00111{left:216.960000pt;}
.x4b_c00111{left:218.293333pt;}
.x5_c00111{left:219.626667pt;}
.x78_c00111{left:223.040000pt;}
.x44_c00111{left:228.000000pt;}
.x11_c00111{left:229.706667pt;}
.x82_c00111{left:233.333333pt;}
.x4c_c00111{left:235.040000pt;}
.xbd_c00111{left:236.373333pt;}
.x6_c00111{left:239.040000pt;}
.x3b_c00111{left:241.333333pt;}
.xc3_c00111{left:244.373333pt;}
.x8a_c00111{left:245.333333pt;}
.x29_c00111{left:246.466667pt;}
.x1d_c00111{left:248.373333pt;}
.xb9_c00111{left:253.333333pt;}
.x12_c00111{left:254.666667pt;}
.xb2_c00111{left:259.040000pt;}
.x9d_c00111{left:262.293333pt;}
.x79_c00111{left:264.373333pt;}
.xaa_c00111{left:266.293333pt;}
.x72_c00111{left:268.000000pt;}
.x3e_c00111{left:269.333333pt;}
.xba_c00111{left:271.040000pt;}
.x1e_c00111{left:272.000000pt;}
.xc4_c00111{left:272.960000pt;}
.xb5_c00111{left:274.666667pt;}
.x5d_c00111{left:279.040000pt;}
.x2a_c00111{left:280.373333pt;}
.x96_c00111{left:283.040000pt;}
.x68_c00111{left:284.000000pt;}
.xc6_c00111{left:285.706667pt;}
.x4d_c00111{left:287.040000pt;}
.x3f_c00111{left:288.000000pt;}
.xbe_c00111{left:289.706667pt;}
.x7_c00111{left:292.373333pt;}
.x13_c00111{left:293.333333pt;}
.xab_c00111{left:295.040000pt;}
.x40_c00111{left:300.000000pt;}
.xbb_c00111{left:301.333333pt;}
.x7a_c00111{left:306.293333pt;}
.x5e_c00111{left:312.373333pt;}
.x45_c00111{left:313.333333pt;}
.x73_c00111{left:316.960000pt;}
.x9e_c00111{left:318.666667pt;}
.x69_c00111{left:320.000000pt;}
.x2b_c00111{left:321.333333pt;}
.x90_c00111{left:323.040000pt;}
.x46_c00111{left:324.000000pt;}
.x41_c00111{left:324.960000pt;}
.x14_c00111{left:326.666667pt;}
.xb3_c00111{left:328.960000pt;}
.x1f_c00111{left:330.666667pt;}
.x5f_c00111{left:334.666667pt;}
.x74_c00111{left:336.373333pt;}
.x4e_c00111{left:337.706667pt;}
.xd0_c00111{left:339.040000pt;}
.xbf_c00111{left:341.706667pt;}
.x97_c00111{left:343.626667pt;}
.x8_c00111{left:345.706667pt;}
.xaf_c00111{left:347.040000pt;}
.x47_c00111{left:350.293333pt;}
.x8b_c00111{left:352.000000pt;}
.xb6_c00111{left:353.706667pt;}
.x2_c00111{left:354.666667pt;}
.x9f_c00111{left:356.000000pt;}
.x83_c00111{left:360.000000pt;}
.x42_c00111{left:361.706667pt;}
.x8f_c00111{left:364.000000pt;}
.xb4_c00111{left:366.666667pt;}
.x2c_c00111{left:368.373333pt;}
.xb0_c00111{left:369.333333pt;}
.x4f_c00111{left:370.293333pt;}
.xa6_c00111{left:372.373333pt;}
.x91_c00111{left:373.333333pt;}
.x6a_c00111{left:374.293333pt;}
.xb7_c00111{left:376.000000pt;}
.x7b_c00111{left:377.706667pt;}
.x9_c00111{left:380.000000pt;}
.x60_c00111{left:381.706667pt;}
.x48_c00111{left:385.333333pt;}
.x50_c00111{left:389.333333pt;}
.xd1_c00111{left:390.666667pt;}
.x6b_c00111{left:393.333333pt;}
.x20_c00111{left:394.293333pt;}
.x15_c00111{left:396.000000pt;}
.x2d_c00111{left:400.000000pt;}
.xa_c00111{left:401.333333pt;}
.x84_c00111{left:402.666667pt;}
.x75_c00111{left:404.373333pt;}
.xa7_c00111{left:405.333333pt;}
.x51_c00111{left:406.293333pt;}
.xb8_c00111{left:408.373333pt;}
.x21_c00111{left:411.040000pt;}
.x92_c00111{left:412.000000pt;}
.x6c_c00111{left:418.666667pt;}
.xb_c00111{left:419.626667pt;}
.x52_c00111{left:424.000000pt;}
.xc7_c00111{left:425.333333pt;}
.x43_c00111{left:427.040000pt;}
.x7c_c00111{left:431.040000pt;}
.xac_c00111{left:433.333333pt;}
.x22_c00111{left:434.666667pt;}
.xc_c00111{left:438.666667pt;}
.x61_c00111{left:440.373333pt;}
.xc8_c00111{left:441.333333pt;}
.x98_c00111{left:444.000000pt;}
.x2e_c00111{left:445.706667pt;}
.xad_c00111{left:448.000000pt;}
.x85_c00111{left:449.706667pt;}
.x49_c00111{left:451.040000pt;}
.x6d_c00111{left:452.373333pt;}
.x53_c00111{left:456.000000pt;}
.xc9_c00111{left:458.666667pt;}
.x16_c00111{left:460.000000pt;}
.x7d_c00111{left:464.000000pt;}
.xbc_c00111{left:467.040000pt;}
.xd_c00111{left:473.333333pt;}
.x23_c00111{left:475.626667pt;}
.x6e_c00111{left:481.333333pt;}
.x7e_c00111{left:484.000000pt;}
.x17_c00111{left:485.333333pt;}
.x35_c00111{left:488.960000pt;}
.x62_c00111{left:491.040000pt;}
.xa8_c00111{left:492.373333pt;}
.x2f_c00111{left:493.333333pt;}
.x86_c00111{left:494.293333pt;}
.xa2_c00111{left:496.000000pt;}
.xa0_c00111{left:498.666667pt;}
.xb1_c00111{left:499.626667pt;}
.x7f_c00111{left:500.960000pt;}
.x24_c00111{left:502.666667pt;}
.xd5_c00111{left:504.000000pt;}
.x54_c00111{left:506.666667pt;}
.x58_c00111{left:509.333333pt;}
.x66_c00111{left:512.000000pt;}
.x87_c00111{left:513.706667pt;}
.xe_c00111{left:515.626667pt;}
.xcd_c00111{left:517.706667pt;}
.x80_c00111{left:520.000000pt;}
.xca_c00111{left:524.000000pt;}
.x93_c00111{left:525.333333pt;}
.xa3_c00111{left:528.000000pt;}
.x99_c00111{left:532.000000pt;}
.x76_c00111{left:536.000000pt;}
.x25_c00111{left:537.333333pt;}
.x30_c00111{left:540.000000pt;}
.x63_c00111{left:541.706667pt;}
.x18_c00111{left:548.960000pt;}
.x31_c00111{left:550.666667pt;}
.xae_c00111{left:552.000000pt;}
.xa4_c00111{left:552.960000pt;}
.x81_c00111{left:557.333333pt;}
.x55_c00111{left:559.040000pt;}
.x59_c00111{left:560.000000pt;}
.xc5_c00111{left:564.000000pt;}
.xd2_c00111{left:565.706667pt;}
.x19_c00111{left:567.040000pt;}
.x26_c00111{left:568.000000pt;}
.x8c_c00111{left:570.293333pt;}
.x6f_c00111{left:571.626667pt;}
.x64_c00111{left:572.960000pt;}
.x9a_c00111{left:580.000000pt;}
.xa5_c00111{left:588.000000pt;}
.x32_c00111{left:589.333333pt;}
.x65_c00111{left:590.666667pt;}
.x1a_c00111{left:592.373333pt;}
.x27_c00111{left:595.040000pt;}
.xa9_c00111{left:596.000000pt;}
.xcb_c00111{left:597.706667pt;}
.xd3_c00111{left:599.040000pt;}
.xc0_c00111{left:601.706667pt;}
.x36_c00111{left:608.000000pt;}
.x8d_c00111{left:611.626667pt;}
.xd6_c00111{left:612.960000pt;}
.x94_c00111{left:614.666667pt;}
.x70_c00111{left:615.626667pt;}
.x56_c00111{left:618.293333pt;}
.xce_c00111{left:619.240000pt;}
.x88_c00111{left:620.373333pt;}
.x77_c00111{left:621.333333pt;}
.xd4_c00111{left:622.666667pt;}
.x1b_c00111{left:624.960000pt;}
.xc1_c00111{left:626.666667pt;}
.xf_c00111{left:628.373333pt;}
.x33_c00111{left:629.333333pt;}
.xcc_c00111{left:630.666667pt;}
.x3c_c00111{left:635.040000pt;}
.xa1_c00111{left:636.000000pt;}
.x9b_c00111{left:636.960000pt;}
.x39_c00111{left:639.626667pt;}
.x4a_c00111{left:640.960000pt;}
.x34_c00111{left:642.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_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_ff71e5b9d92527b116395d8a.woff2')format("woff");}.ff1_c00112{font-family:ff1_c00112;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mdf_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);}
.m17_c00112{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m35_c00112{transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);}
.m1b_c00112{transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);}
.m69_c00112{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m12_c00112{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m21_c00112{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m2e_c00112{transform:matrix(0.370130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370130,0.000000,0.000000,0.250000,0,0);}
.m10_c00112{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m89_c00112{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m6a_c00112{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m71_c00112{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m59_c00112{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.mb3_c00112{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m32_c00112{transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);}
.m3f_c00112{transform:matrix(0.387653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387653,0.000000,0.000000,0.250000,0,0);}
.m70_c00112{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m100_c00112{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m46_c00112{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mb9_c00112{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.m85_c00112{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m40_c00112{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m0_c00112{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.mc4_c00112{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m26_c00112{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.mea_c00112{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.mf_c00112{transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);}
.m114_c00112{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m61_c00112{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.m44_c00112{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.mcf_c00112{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.ma5_c00112{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.mb7_c00112{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m104_c00112{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.maa_c00112{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mff_c00112{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m4b_c00112{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m39_c00112{transform:matrix(0.412193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412193,0.000000,0.000000,0.250000,0,0);}
.m9a_c00112{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.mca_c00112{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.md3_c00112{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.me0_c00112{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m4d_c00112{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m113_c00112{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m73_c00112{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m116_c00112{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mb_c00112{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mf7_c00112{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.md6_c00112{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mfa_c00112{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m38_c00112{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mc7_c00112{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m3d_c00112{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m6e_c00112{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m83_c00112{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.mb4_c00112{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m28_c00112{transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);}
.me4_c00112{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mf5_c00112{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m3_c00112{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.mac_c00112{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m2c_c00112{transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);}
.ma6_c00112{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m91_c00112{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m75_c00112{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m13_c00112{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m30_c00112{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m10f_c00112{transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);}
.mfc_c00112{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m24_c00112{transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);}
.m96_c00112{transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);}
.mc6_c00112{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m1c_c00112{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mf2_c00112{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m2a_c00112{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.m6_c00112{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m95_c00112{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m48_c00112{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m10a_c00112{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mbd_c00112{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.m5c_c00112{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m68_c00112{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.ma8_c00112{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m9_c00112{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m45_c00112{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m94_c00112{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m10b_c00112{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.md1_c00112{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.mbf_c00112{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m42_c00112{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m115_c00112{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m103_c00112{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m47_c00112{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m10c_c00112{transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);}
.mdc_c00112{transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);}
.mc9_c00112{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m5d_c00112{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m67_c00112{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.meb_c00112{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mb8_c00112{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.mc0_c00112{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mae_c00112{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m99_c00112{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.mf8_c00112{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.mec_c00112{transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);}
.m7b_c00112{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m2f_c00112{transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);}
.md9_c00112{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m102_c00112{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.ma3_c00112{transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);}
.md5_c00112{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m109_c00112{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.me1_c00112{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m1f_c00112{transform:matrix(0.470168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470168,0.000000,0.000000,0.250000,0,0);}
.m22_c00112{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.me2_c00112{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mc2_c00112{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.mc1_c00112{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.mfe_c00112{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.mf4_c00112{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.m80_c00112{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m37_c00112{transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);}
.m2d_c00112{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m25_c00112{transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);}
.mb5_c00112{transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);}
.m41_c00112{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m8a_c00112{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m81_c00112{transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);}
.m8_c00112{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m92_c00112{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m1e_c00112{transform:matrix(0.486555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486555,0.000000,0.000000,0.250000,0,0);}
.m34_c00112{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m18_c00112{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mab_c00112{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m58_c00112{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m107_c00112{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m101_c00112{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m2_c00112{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);}
.mb0_c00112{transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);}
.me7_c00112{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m111_c00112{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m84_c00112{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.mf6_c00112{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m6f_c00112{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.me5_c00112{transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);}
.m3e_c00112{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m5f_c00112{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mba_c00112{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m56_c00112{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m5e_c00112{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.mde_c00112{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m63_c00112{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m51_c00112{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m8e_c00112{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);}
.mf3_c00112{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.md7_c00112{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.me3_c00112{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mb1_c00112{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.med_c00112{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m57_c00112{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m1d_c00112{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m20_c00112{transform:matrix(0.529685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529685,0.000000,0.000000,0.250000,0,0);}
.m5_c00112{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m54_c00112{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.mcd_c00112{transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);}
.m43_c00112{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m9f_c00112{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m52_c00112{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m72_c00112{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mc3_c00112{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m65_c00112{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m50_c00112{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mbe_c00112{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m105_c00112{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m3c_c00112{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mf9_c00112{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m7f_c00112{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.mb2_c00112{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m49_c00112{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m11_c00112{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mc5_c00112{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mee_c00112{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mfb_c00112{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m7e_c00112{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m112_c00112{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m23_c00112{transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);}
.me9_c00112{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m31_c00112{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);}
.m64_c00112{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m8d_c00112{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m55_c00112{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m1a_c00112{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.md0_c00112{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m76_c00112{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m108_c00112{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m82_c00112{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.ma9_c00112{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mbb_c00112{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mf0_c00112{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mef_c00112{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.me6_c00112{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m4f_c00112{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m14_c00112{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m9e_c00112{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.md_c00112{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m60_c00112{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m9d_c00112{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00112{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mcb_c00112{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m5b_c00112{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m86_c00112{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);}
.m7a_c00112{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.mc_c00112{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mf1_c00112{transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);}
.m29_c00112{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m6b_c00112{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.ma2_c00112{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m88_c00112{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.mcc_c00112{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m53_c00112{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m117_c00112{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m6c_c00112{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m8f_c00112{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m98_c00112{transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);}
.m77_c00112{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m15_c00112{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.mdd_c00112{transform:matrix(0.597756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597756,0.000000,0.000000,0.250000,0,0);}
.ma4_c00112{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mce_c00112{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m1_c00112{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m106_c00112{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.m110_c00112{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m9b_c00112{transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);}
.m4c_c00112{transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);}
.mdb_c00112{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.mc8_c00112{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.ma7_c00112{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m62_c00112{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.md2_c00112{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.mda_c00112{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m7d_c00112{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);}
.md8_c00112{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m93_c00112{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m19_c00112{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m10d_c00112{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.ma1_c00112{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m97_c00112{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m7_c00112{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m27_c00112{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.m7c_c00112{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.mfd_c00112{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m4e_c00112{transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);}
.m36_c00112{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m9c_c00112{transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);}
.mbc_c00112{transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);}
.ma_c00112{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.maf_c00112{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m16_c00112{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m4_c00112{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m79_c00112{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m33_c00112{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.mad_c00112{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m8c_c00112{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m90_c00112{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m8b_c00112{transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);}
.me8_c00112{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mb6_c00112{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m5a_c00112{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m74_c00112{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m66_c00112{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m4a_c00112{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m6d_c00112{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m78_c00112{transform:matrix(0.783824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.783824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.783824,0.000000,0.000000,0.250000,0,0);}
.m10e_c00112{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.md4_c00112{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.me_c00112{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m87_c00112{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m2b_c00112{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.ma0_c00112{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m3a_c00112{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00112{vertical-align:-4.320000px;}
.v0_c00112{vertical-align:0.000000px;}
.ls1_c00112{letter-spacing:0.000000px;}
.ls0_c00112{letter-spacing:11.817600px;}
.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;}
.fs8_c00112{font-size:3.420000px;}
.fs6_c00112{font-size:13.620000px;}
.fs5_c00112{font-size:18.720000px;}
.fs1_c00112{font-size:20.400000px;}
.fs4_c00112{font-size:25.500000px;}
.fs2_c00112{font-size:28.920000px;}
.fs0_c00112{font-size:32.340000px;}
.fs3_c00112{font-size:35.700000px;}
.fs7_c00112{font-size:39.120000px;}
.y0_c00112{bottom:0.000000px;}
.yd8_c00112{bottom:238.905000px;}
.yd6_c00112{bottom:241.245000px;}
.yd9_c00112{bottom:242.130000px;}
.yd7_c00112{bottom:243.405000px;}
.ycf_c00112{bottom:259.245000px;}
.yd5_c00112{bottom:260.745000px;}
.yd1_c00112{bottom:261.405000px;}
.yd3_c00112{bottom:261.630000px;}
.yd4_c00112{bottom:261.825000px;}
.yd0_c00112{bottom:262.470000px;}
.yd2_c00112{bottom:262.905000px;}
.yca_c00112{bottom:280.245000px;}
.ycd_c00112{bottom:281.325000px;}
.yce_c00112{bottom:281.745000px;}
.ycc_c00112{bottom:281.970000px;}
.ycb_c00112{bottom:282.405000px;}
.yc5_c00112{bottom:299.745000px;}
.yc7_c00112{bottom:300.825000px;}
.yc9_c00112{bottom:301.245000px;}
.yc6_c00112{bottom:301.905000px;}
.yc8_c00112{bottom:302.970000px;}
.yc3_c00112{bottom:319.245000px;}
.yc0_c00112{bottom:320.325000px;}
.ybf_c00112{bottom:321.405000px;}
.yc2_c00112{bottom:321.630000px;}
.yc4_c00112{bottom:321.825000px;}
.yc1_c00112{bottom:322.470000px;}
.ybc_c00112{bottom:338.745000px;}
.ybe_c00112{bottom:339.405000px;}
.ybb_c00112{bottom:340.905000px;}
.ybd_c00112{bottom:341.970000px;}
.yb8_c00112{bottom:360.405000px;}
.yb7_c00112{bottom:360.825000px;}
.yba_c00112{bottom:361.470000px;}
.yb9_c00112{bottom:361.905000px;}
.yb6_c00112{bottom:379.245000px;}
.yb5_c00112{bottom:380.130000px;}
.yb4_c00112{bottom:381.405000px;}
.yb3_c00112{bottom:396.405000px;}
.yb1_c00112{bottom:398.745000px;}
.yb0_c00112{bottom:398.970000px;}
.yb2_c00112{bottom:399.825000px;}
.yaf_c00112{bottom:400.905000px;}
.yad_c00112{bottom:416.970000px;}
.yab_c00112{bottom:418.245000px;}
.yac_c00112{bottom:419.130000px;}
.yaa_c00112{bottom:419.325000px;}
.yae_c00112{bottom:420.405000px;}
.ya9_c00112{bottom:421.470000px;}
.ya8_c00112{bottom:437.745000px;}
.ya5_c00112{bottom:438.630000px;}
.ya7_c00112{bottom:438.825000px;}
.ya6_c00112{bottom:439.905000px;}
.ya4_c00112{bottom:457.245000px;}
.y9f_c00112{bottom:458.325000px;}
.ya1_c00112{bottom:458.745000px;}
.ya2_c00112{bottom:459.405000px;}
.ya3_c00112{bottom:460.470000px;}
.ya0_c00112{bottom:460.905000px;}
.y9e_c00112{bottom:478.245000px;}
.y9d_c00112{bottom:479.325000px;}
.y9b_c00112{bottom:479.970000px;}
.y9c_c00112{bottom:480.405000px;}
.y99_c00112{bottom:497.745000px;}
.y9a_c00112{bottom:499.470000px;}
.y98_c00112{bottom:499.905000px;}
.y97_c00112{bottom:516.825000px;}
.y93_c00112{bottom:517.050000px;}
.y96_c00112{bottom:517.245000px;}
.y95_c00112{bottom:518.325000px;}
.y94_c00112{bottom:519.405000px;}
.y90_c00112{bottom:534.405000px;}
.y92_c00112{bottom:536.325000px;}
.y8d_c00112{bottom:536.745000px;}
.y8c_c00112{bottom:537.630000px;}
.y8f_c00112{bottom:537.825000px;}
.y91_c00112{bottom:538.470000px;}
.y8e_c00112{bottom:538.905000px;}
.y8a_c00112{bottom:555.405000px;}
.y8b_c00112{bottom:555.825000px;}
.y84_c00112{bottom:556.245000px;}
.y87_c00112{bottom:557.325000px;}
.y86_c00112{bottom:558.405000px;}
.y85_c00112{bottom:558.630000px;}
.y88_c00112{bottom:559.470000px;}
.y89_c00112{bottom:559.905000px;}
.y7e_c00112{bottom:575.745000px;}
.y7f_c00112{bottom:576.825000px;}
.y81_c00112{bottom:577.245000px;}
.y80_c00112{bottom:577.905000px;}
.y83_c00112{bottom:578.130000px;}
.y82_c00112{bottom:579.405000px;}
.y78_c00112{bottom:595.245000px;}
.y7d_c00112{bottom:595.470000px;}
.y7b_c00112{bottom:596.745000px;}
.y7a_c00112{bottom:597.405000px;}
.y7c_c00112{bottom:598.470000px;}
.y79_c00112{bottom:598.920000px;}
.y77_c00112{bottom:618.405000px;}
.y75_c00112{bottom:620.130000px;}
.y74_c00112{bottom:620.550000px;}
.y76_c00112{bottom:620.970000px;}
.y73_c00112{bottom:632.325000px;}
.y70_c00112{bottom:633.405000px;}
.y71_c00112{bottom:633.630000px;}
.y72_c00112{bottom:635.550000px;}
.y6c_c00112{bottom:647.325000px;}
.y6a_c00112{bottom:647.550000px;}
.y6f_c00112{bottom:647.970000px;}
.y69_c00112{bottom:648.405000px;}
.y6d_c00112{bottom:648.630000px;}
.y6e_c00112{bottom:649.470000px;}
.y6b_c00112{bottom:650.550000px;}
.y68_c00112{bottom:661.470000px;}
.y67_c00112{bottom:662.325000px;}
.y62_c00112{bottom:662.550000px;}
.y63_c00112{bottom:663.405000px;}
.y65_c00112{bottom:663.630000px;}
.y64_c00112{bottom:664.470000px;}
.y66_c00112{bottom:665.550000px;}
.y60_c00112{bottom:676.470000px;}
.y5f_c00112{bottom:677.325000px;}
.y61_c00112{bottom:678.405000px;}
.y5b_c00112{bottom:678.630000px;}
.y5c_c00112{bottom:679.470000px;}
.y5d_c00112{bottom:679.695000px;}
.y5e_c00112{bottom:680.550000px;}
.y5a_c00112{bottom:692.325000px;}
.y57_c00112{bottom:692.550000px;}
.y58_c00112{bottom:693.405000px;}
.y56_c00112{bottom:694.470000px;}
.y59_c00112{bottom:695.550000px;}
.y54_c00112{bottom:708.405000px;}
.y51_c00112{bottom:708.630000px;}
.y55_c00112{bottom:709.050000px;}
.y52_c00112{bottom:709.470000px;}
.y53_c00112{bottom:710.550000px;}
.y4f_c00112{bottom:728.745000px;}
.y4e_c00112{bottom:730.905000px;}
.y50_c00112{bottom:731.130000px;}
.y4a_c00112{bottom:748.245000px;}
.y49_c00112{bottom:748.680000px;}
.y48_c00112{bottom:749.745000px;}
.y4d_c00112{bottom:750.630000px;}
.y4c_c00112{bottom:751.470000px;}
.y4b_c00112{bottom:751.905000px;}
.y46_c00112{bottom:769.245000px;}
.y47_c00112{bottom:770.130000px;}
.y44_c00112{bottom:771.405000px;}
.y45_c00112{bottom:771.420000px;}
.y43_c00112{bottom:787.245000px;}
.y42_c00112{bottom:789.825000px;}
.y41_c00112{bottom:790.470000px;}
.y40_c00112{bottom:790.905000px;}
.y3e_c00112{bottom:808.245000px;}
.y3f_c00112{bottom:809.130000px;}
.y3c_c00112{bottom:809.970000px;}
.y3d_c00112{bottom:810.405000px;}
.y39_c00112{bottom:826.905000px;}
.y3a_c00112{bottom:827.745000px;}
.y37_c00112{bottom:829.905000px;}
.y38_c00112{bottom:829.920000px;}
.y3b_c00112{bottom:830.970000px;}
.y34_c00112{bottom:847.245000px;}
.y35_c00112{bottom:848.745000px;}
.y31_c00112{bottom:849.405000px;}
.y32_c00112{bottom:849.630000px;}
.y36_c00112{bottom:850.470000px;}
.y33_c00112{bottom:850.920000px;}
.y2f_c00112{bottom:866.325000px;}
.y2c_c00112{bottom:866.745000px;}
.y2e_c00112{bottom:867.825000px;}
.y30_c00112{bottom:868.905000px;}
.y2d_c00112{bottom:870.420000px;}
.y2a_c00112{bottom:887.325000px;}
.y2b_c00112{bottom:888.405000px;}
.y26_c00112{bottom:906.180000px;}
.y25_c00112{bottom:907.245000px;}
.y29_c00112{bottom:908.970000px;}
.y28_c00112{bottom:909.405000px;}
.y27_c00112{bottom:909.420000px;}
.y24_c00112{bottom:928.470000px;}
.y20_c00112{bottom:928.905000px;}
.y1f_c00112{bottom:929.325000px;}
.y1e_c00112{bottom:930.405000px;}
.y23_c00112{bottom:930.630000px;}
.y21_c00112{bottom:931.470000px;}
.y22_c00112{bottom:932.550000px;}
.y1a_c00112{bottom:946.050000px;}
.y18_c00112{bottom:946.905000px;}
.y1b_c00112{bottom:947.325000px;}
.y1d_c00112{bottom:948.195000px;}
.y1c_c00112{bottom:948.630000px;}
.y19_c00112{bottom:949.050000px;}
.y16_c00112{bottom:970.245000px;}
.y17_c00112{bottom:971.325000px;}
.y13_c00112{bottom:997.905000px;}
.y12_c00112{bottom:1000.245000px;}
.y14_c00112{bottom:1001.550000px;}
.y15_c00112{bottom:1002.405000px;}
.yf_c00112{bottom:1018.470000px;}
.y11_c00112{bottom:1018.905000px;}
.yd_c00112{bottom:1019.745000px;}
.y10_c00112{bottom:1020.630000px;}
.ye_c00112{bottom:1021.470000px;}
.yc_c00112{bottom:1021.905000px;}
.yb_c00112{bottom:1038.405000px;}
.y9_c00112{bottom:1039.245000px;}
.ya_c00112{bottom:1039.470000px;}
.y7_c00112{bottom:1057.905000px;}
.y4_c00112{bottom:1058.745000px;}
.y6_c00112{bottom:1058.970000px;}
.y3_c00112{bottom:1060.905000px;}
.y8_c00112{bottom:1061.130000px;}
.y5_c00112{bottom:1061.970000px;}
.y1_c00112{bottom:1098.825000px;}
.y2_c00112{bottom:1099.050000px;}
.h9_c00112{height:4.206533px;}
.h7_c00112{height:16.752334px;}
.h6_c00112{height:23.025234px;}
.h2_c00112{height:25.091602px;}
.ha_c00112{height:27.044502px;}
.h5_c00112{height:31.364502px;}
.h3_c00112{height:35.571035px;}
.h1_c00112{height:39.777568px;}
.h4_c00112{height:43.910303px;}
.h8_c00112{height:48.116836px;}
.h0_c00112{height:1335.000000px;}
.w0_c00112{width:880.500000px;}
.x0_c00112{left:0.000000px;}
.x3_c00112{left:151.920000px;}
.x5e_c00112{left:153.000000px;}
.x7f_c00112{left:154.500000px;}
.xe7_c00112{left:156.000000px;}
.x102_c00112{left:157.920000px;}
.x2c_c00112{left:162.000000px;}
.x36_c00112{left:164.145000px;}
.x19_c00112{left:166.080000px;}
.x41_c00112{left:168.420000px;}
.x4c_c00112{left:169.500000px;}
.x5f_c00112{left:171.000000px;}
.xee_c00112{left:172.080000px;}
.xdb_c00112{left:177.420000px;}
.xcf_c00112{left:183.000000px;}
.x8f_c00112{left:184.500000px;}
.x86_c00112{left:186.000000px;}
.x9d_c00112{left:187.080000px;}
.xa9_c00112{left:189.000000px;}
.x1a_c00112{left:190.080000px;}
.x4_c00112{left:191.580000px;}
.x67_c00112{left:195.000000px;}
.xa6_c00112{left:198.000000px;}
.xb1_c00112{left:202.500000px;}
.x4b_c00112{left:203.580000px;}
.x103_c00112{left:205.920000px;}
.x42_c00112{left:211.080000px;}
.xa7_c00112{left:213.000000px;}
.x68_c00112{left:214.920000px;}
.xaa_c00112{left:217.500000px;}
.xf1_c00112{left:219.420000px;}
.xe0_c00112{left:220.500000px;}
.x20_c00112{left:221.580000px;}
.xbf_c00112{left:224.580000px;}
.x2d_c00112{left:225.855000px;}
.xd5_c00112{left:227.580000px;}
.xc5_c00112{left:229.500000px;}
.x8c_c00112{left:232.920000px;}
.x60_c00112{left:237.000000px;}
.x104_c00112{left:239.580000px;}
.x37_c00112{left:241.920000px;}
.x5_c00112{left:244.080000px;}
.xf2_c00112{left:246.000000px;}
.x2e_c00112{left:249.000000px;}
.x71_c00112{left:250.500000px;}
.x97_c00112{left:252.000000px;}
.x27_c00112{left:254.580000px;}
.x80_c00112{left:256.500000px;}
.x4d_c00112{left:258.000000px;}
.x1b_c00112{left:261.420000px;}
.x6_c00112{left:262.920000px;}
.x90_c00112{left:264.000000px;}
.x21_c00112{left:266.355000px;}
.x72_c00112{left:268.080000px;}
.x43_c00112{left:270.000000px;}
.xd0_c00112{left:271.500000px;}
.xab_c00112{left:273.000000px;}
.x8d_c00112{left:276.000000px;}
.xa8_c00112{left:277.500000px;}
.x4e_c00112{left:280.500000px;}
.xe8_c00112{left:283.920000px;}
.xb8_c00112{left:285.000000px;}
.x9e_c00112{left:286.500000px;}
.x81_c00112{left:288.000000px;}
.xf6_c00112{left:289.920000px;}
.x44_c00112{left:291.000000px;}
.xd6_c00112{left:292.080000px;}
.x22_c00112{left:293.580000px;}
.x2f_c00112{left:296.355000px;}
.xac_c00112{left:298.500000px;}
.x38_c00112{left:300.000000px;}
.x98_c00112{left:303.000000px;}
.xb2_c00112{left:304.920000px;}
.x69_c00112{left:306.000000px;}
.xe5_c00112{left:308.580000px;}
.x8e_c00112{left:312.420000px;}
.x57_c00112{left:313.500000px;}
.xeb_c00112{left:315.420000px;}
.xf7_c00112{left:316.500000px;}
.x1c_c00112{left:318.420000px;}
.x7_c00112{left:319.920000px;}
.x30_c00112{left:321.000000px;}
.x53_c00112{left:322.080000px;}
.x9f_c00112{left:324.420000px;}
.x61_c00112{left:325.500000px;}
.x23_c00112{left:326.775000px;}
.xc6_c00112{left:329.580000px;}
.x7a_c00112{left:331.920000px;}
.xf3_c00112{left:334.500000px;}
.xfc_c00112{left:336.000000px;}
.xfd_c00112{left:337.500000px;}
.x39_c00112{left:339.420000px;}
.xe1_c00112{left:340.500000px;}
.x73_c00112{left:342.000000px;}
.xc0_c00112{left:343.500000px;}
.x4f_c00112{left:344.775000px;}
.x54_c00112{left:347.580000px;}
.xa0_c00112{left:351.000000px;}
.xec_c00112{left:354.000000px;}
.xe9_c00112{left:355.080000px;}
.x58_c00112{left:356.580000px;}
.x87_c00112{left:358.500000px;}
.xb9_c00112{left:360.855000px;}
.x74_c00112{left:363.000000px;}
.x7b_c00112{left:364.080000px;}
.xb3_c00112{left:366.420000px;}
.x45_c00112{left:368.145000px;}
.x28_c00112{left:370.500000px;}
.xd7_c00112{left:372.000000px;}
.x3a_c00112{left:373.500000px;}
.x8_c00112{left:375.000000px;}
.x59_c00112{left:376.920000px;}
.x6a_c00112{left:378.000000px;}
.x91_c00112{left:381.000000px;}
.xc1_c00112{left:382.500000px;}
.x82_c00112{left:384.000000px;}
.x50_c00112{left:385.500000px;}
.xfe_c00112{left:388.500000px;}
.xef_c00112{left:391.500000px;}
.x55_c00112{left:392.580000px;}
.x62_c00112{left:394.500000px;}
.x2_c00112{left:397.500000px;}
.xa1_c00112{left:399.000000px;}
.xb4_c00112{left:400.500000px;}
.x31_c00112{left:403.920000px;}
.x83_c00112{left:406.920000px;}
.xea_c00112{left:408.000000px;}
.x9_c00112{left:412.080000px;}
.xad_c00112{left:414.000000px;}
.x3b_c00112{left:420.420000px;}
.xba_c00112{left:421.500000px;}
.xd8_c00112{left:424.080000px;}
.xf0_c00112{left:425.580000px;}
.x75_c00112{left:427.500000px;}
.x88_c00112{left:429.000000px;}
.xf8_c00112{left:430.500000px;}
.xa_c00112{left:432.000000px;}
.x84_c00112{left:433.920000px;}
.x99_c00112{left:435.000000px;}
.xcb_c00112{left:438.000000px;}
.xc7_c00112{left:439.500000px;}
.xed_c00112{left:440.580000px;}
.x105_c00112{left:442.500000px;}
.xc2_c00112{left:446.580000px;}
.x46_c00112{left:448.500000px;}
.xb_c00112{left:449.580000px;}
.xf4_c00112{left:451.500000px;}
.x29_c00112{left:453.420000px;}
.x5a_c00112{left:455.580000px;}
.x92_c00112{left:459.420000px;}
.xd1_c00112{left:460.500000px;}
.x56_c00112{left:463.500000px;}
.xbb_c00112{left:468.000000px;}
.xc_c00112{left:471.000000px;}
.xdc_c00112{left:472.500000px;}
.x47_c00112{left:473.580000px;}
.x51_c00112{left:475.275000px;}
.x76_c00112{left:476.580000px;}
.x32_c00112{left:480.000000px;}
.x3c_c00112{left:481.500000px;}
.x6b_c00112{left:483.420000px;}
.xff_c00112{left:484.500000px;}
.xbc_c00112{left:490.500000px;}
.x7c_c00112{left:492.000000px;}
.xe6_c00112{left:493.080000px;}
.x77_c00112{left:495.420000px;}
.xd2_c00112{left:498.420000px;}
.x85_c00112{left:499.500000px;}
.x93_c00112{left:501.000000px;}
.x9a_c00112{left:504.420000px;}
.x33_c00112{left:505.500000px;}
.xd_c00112{left:507.420000px;}
.x6c_c00112{left:510.000000px;}
.x100_c00112{left:511.080000px;}
.x3d_c00112{left:513.000000px;}
.x52_c00112{left:514.080000px;}
.x24_c00112{left:515.580000px;}
.xf9_c00112{left:517.500000px;}
.x63_c00112{left:519.420000px;}
.xe2_c00112{left:520.500000px;}
.x78_c00112{left:522.000000px;}
.xb5_c00112{left:525.420000px;}
.xf5_c00112{left:526.920000px;}
.xcc_c00112{left:528.000000px;}
.xae_c00112{left:529.500000px;}
.x15_c00112{left:530.580000px;}
.xbd_c00112{left:534.000000px;}
.x94_c00112{left:535.500000px;}
.x2a_c00112{left:536.580000px;}
.x7d_c00112{left:541.080000px;}
.xc8_c00112{left:546.000000px;}
.xe3_c00112{left:547.080000px;}
.x3e_c00112{left:551.580000px;}
.xe_c00112{left:553.080000px;}
.x1d_c00112{left:554.580000px;}
.x64_c00112{left:556.500000px;}
.x34_c00112{left:558.420000px;}
.xfa_c00112{left:559.500000px;}
.x6d_c00112{left:560.580000px;}
.x89_c00112{left:562.500000px;}
.xa2_c00112{left:565.500000px;}
.xd3_c00112{left:568.500000px;}
.xf_c00112{left:571.920000px;}
.x3f_c00112{left:573.420000px;}
.x79_c00112{left:574.920000px;}
.xd9_c00112{left:578.580000px;}
.x6e_c00112{left:580.500000px;}
.x35_c00112{left:585.000000px;}
.xdd_c00112{left:588.420000px;}
.xc3_c00112{left:589.500000px;}
.x2b_c00112{left:590.775000px;}
.xcd_c00112{left:592.500000px;}
.x40_c00112{left:595.080000px;}
.xe4_c00112{left:597.000000px;}
.xc9_c00112{left:598.500000px;}
.xbe_c00112{left:599.580000px;}
.xa3_c00112{left:601.500000px;}
.x10_c00112{left:607.500000px;}
.xb6_c00112{left:609.000000px;}
.x25_c00112{left:610.920000px;}
.x48_c00112{left:613.500000px;}
.xde_c00112{left:615.000000px;}
.xd4_c00112{left:616.080000px;}
.x5b_c00112{left:619.080000px;}
.x65_c00112{left:620.580000px;}
.x16_c00112{left:624.000000px;}
.x8a_c00112{left:626.580000px;}
.x9b_c00112{left:628.500000px;}
.x95_c00112{left:629.580000px;}
.xa4_c00112{left:631.080000px;}
.xfb_c00112{left:634.080000px;}
.x49_c00112{left:635.580000px;}
.xda_c00112{left:639.420000px;}
.x11_c00112{left:643.080000px;}
.x6f_c00112{left:644.580000px;}
.xca_c00112{left:646.500000px;}
.x7e_c00112{left:648.000000px;}
.x101_c00112{left:649.500000px;}
.xaf_c00112{left:651.420000px;}
.x96_c00112{left:655.500000px;}
.x12_c00112{left:663.000000px;}
.x5c_c00112{left:665.580000px;}
.x66_c00112{left:667.080000px;}
.xdf_c00112{left:670.920000px;}
.x26_c00112{left:673.500000px;}
.x70_c00112{left:675.420000px;}
.xa5_c00112{left:676.500000px;}
.x13_c00112{left:680.580000px;}
.x1e_c00112{left:682.080000px;}
.x8b_c00112{left:684.000000px;}
.xc4_c00112{left:685.500000px;}
.xb7_c00112{left:687.000000px;}
.x106_c00112{left:688.500000px;}
.xb0_c00112{left:691.500000px;}
.x9c_c00112{left:693.000000px;}
.x17_c00112{left:694.080000px;}
.x5d_c00112{left:696.645000px;}
.x14_c00112{left:700.500000px;}
.x1f_c00112{left:702.000000px;}
.x4a_c00112{left:704.580000px;}
.x1_c00112{left:711.000000px;}
.x18_c00112{left:712.080000px;}
.xce_c00112{left:718.500000px;}
.x107_c00112{left:721.500000px;}
@media print{
.v1_c00112{vertical-align:-3.840000pt;}
.v0_c00112{vertical-align:0.000000pt;}
.ls1_c00112{letter-spacing:0.000000pt;}
.ls0_c00112{letter-spacing:10.504533pt;}
.ws0_c00112{word-spacing:0.000000pt;}
.fs8_c00112{font-size:3.040000pt;}
.fs6_c00112{font-size:12.106667pt;}
.fs5_c00112{font-size:16.640000pt;}
.fs1_c00112{font-size:18.133333pt;}
.fs4_c00112{font-size:22.666667pt;}
.fs2_c00112{font-size:25.706667pt;}
.fs0_c00112{font-size:28.746667pt;}
.fs3_c00112{font-size:31.733333pt;}
.fs7_c00112{font-size:34.773333pt;}
.y0_c00112{bottom:0.000000pt;}
.yd8_c00112{bottom:212.360000pt;}
.yd6_c00112{bottom:214.440000pt;}
.yd9_c00112{bottom:215.226667pt;}
.yd7_c00112{bottom:216.360000pt;}
.ycf_c00112{bottom:230.440000pt;}
.yd5_c00112{bottom:231.773333pt;}
.yd1_c00112{bottom:232.360000pt;}
.yd3_c00112{bottom:232.560000pt;}
.yd4_c00112{bottom:232.733333pt;}
.yd0_c00112{bottom:233.306667pt;}
.yd2_c00112{bottom:233.693333pt;}
.yca_c00112{bottom:249.106667pt;}
.ycd_c00112{bottom:250.066667pt;}
.yce_c00112{bottom:250.440000pt;}
.ycc_c00112{bottom:250.640000pt;}
.ycb_c00112{bottom:251.026667pt;}
.yc5_c00112{bottom:266.440000pt;}
.yc7_c00112{bottom:267.400000pt;}
.yc9_c00112{bottom:267.773333pt;}
.yc6_c00112{bottom:268.360000pt;}
.yc8_c00112{bottom:269.306667pt;}
.yc3_c00112{bottom:283.773333pt;}
.yc0_c00112{bottom:284.733333pt;}
.ybf_c00112{bottom:285.693333pt;}
.yc2_c00112{bottom:285.893333pt;}
.yc4_c00112{bottom:286.066667pt;}
.yc1_c00112{bottom:286.640000pt;}
.ybc_c00112{bottom:301.106667pt;}
.ybe_c00112{bottom:301.693333pt;}
.ybb_c00112{bottom:303.026667pt;}
.ybd_c00112{bottom:303.973333pt;}
.yb8_c00112{bottom:320.360000pt;}
.yb7_c00112{bottom:320.733333pt;}
.yba_c00112{bottom:321.306667pt;}
.yb9_c00112{bottom:321.693333pt;}
.yb6_c00112{bottom:337.106667pt;}
.yb5_c00112{bottom:337.893333pt;}
.yb4_c00112{bottom:339.026667pt;}
.yb3_c00112{bottom:352.360000pt;}
.yb1_c00112{bottom:354.440000pt;}
.yb0_c00112{bottom:354.640000pt;}
.yb2_c00112{bottom:355.400000pt;}
.yaf_c00112{bottom:356.360000pt;}
.yad_c00112{bottom:370.640000pt;}
.yab_c00112{bottom:371.773333pt;}
.yac_c00112{bottom:372.560000pt;}
.yaa_c00112{bottom:372.733333pt;}
.yae_c00112{bottom:373.693333pt;}
.ya9_c00112{bottom:374.640000pt;}
.ya8_c00112{bottom:389.106667pt;}
.ya5_c00112{bottom:389.893333pt;}
.ya7_c00112{bottom:390.066667pt;}
.ya6_c00112{bottom:391.026667pt;}
.ya4_c00112{bottom:406.440000pt;}
.y9f_c00112{bottom:407.400000pt;}
.ya1_c00112{bottom:407.773333pt;}
.ya2_c00112{bottom:408.360000pt;}
.ya3_c00112{bottom:409.306667pt;}
.ya0_c00112{bottom:409.693333pt;}
.y9e_c00112{bottom:425.106667pt;}
.y9d_c00112{bottom:426.066667pt;}
.y9b_c00112{bottom:426.640000pt;}
.y9c_c00112{bottom:427.026667pt;}
.y99_c00112{bottom:442.440000pt;}
.y9a_c00112{bottom:443.973333pt;}
.y98_c00112{bottom:444.360000pt;}
.y97_c00112{bottom:459.400000pt;}
.y93_c00112{bottom:459.600000pt;}
.y96_c00112{bottom:459.773333pt;}
.y95_c00112{bottom:460.733333pt;}
.y94_c00112{bottom:461.693333pt;}
.y90_c00112{bottom:475.026667pt;}
.y92_c00112{bottom:476.733333pt;}
.y8d_c00112{bottom:477.106667pt;}
.y8c_c00112{bottom:477.893333pt;}
.y8f_c00112{bottom:478.066667pt;}
.y91_c00112{bottom:478.640000pt;}
.y8e_c00112{bottom:479.026667pt;}
.y8a_c00112{bottom:493.693333pt;}
.y8b_c00112{bottom:494.066667pt;}
.y84_c00112{bottom:494.440000pt;}
.y87_c00112{bottom:495.400000pt;}
.y86_c00112{bottom:496.360000pt;}
.y85_c00112{bottom:496.560000pt;}
.y88_c00112{bottom:497.306667pt;}
.y89_c00112{bottom:497.693333pt;}
.y7e_c00112{bottom:511.773333pt;}
.y7f_c00112{bottom:512.733333pt;}
.y81_c00112{bottom:513.106667pt;}
.y80_c00112{bottom:513.693333pt;}
.y83_c00112{bottom:513.893333pt;}
.y82_c00112{bottom:515.026667pt;}
.y78_c00112{bottom:529.106667pt;}
.y7d_c00112{bottom:529.306667pt;}
.y7b_c00112{bottom:530.440000pt;}
.y7a_c00112{bottom:531.026667pt;}
.y7c_c00112{bottom:531.973333pt;}
.y79_c00112{bottom:532.373333pt;}
.y77_c00112{bottom:549.693333pt;}
.y75_c00112{bottom:551.226667pt;}
.y74_c00112{bottom:551.600000pt;}
.y76_c00112{bottom:551.973333pt;}
.y73_c00112{bottom:562.066667pt;}
.y70_c00112{bottom:563.026667pt;}
.y71_c00112{bottom:563.226667pt;}
.y72_c00112{bottom:564.933333pt;}
.y6c_c00112{bottom:575.400000pt;}
.y6a_c00112{bottom:575.600000pt;}
.y6f_c00112{bottom:575.973333pt;}
.y69_c00112{bottom:576.360000pt;}
.y6d_c00112{bottom:576.560000pt;}
.y6e_c00112{bottom:577.306667pt;}
.y6b_c00112{bottom:578.266667pt;}
.y68_c00112{bottom:587.973333pt;}
.y67_c00112{bottom:588.733333pt;}
.y62_c00112{bottom:588.933333pt;}
.y63_c00112{bottom:589.693333pt;}
.y65_c00112{bottom:589.893333pt;}
.y64_c00112{bottom:590.640000pt;}
.y66_c00112{bottom:591.600000pt;}
.y60_c00112{bottom:601.306667pt;}
.y5f_c00112{bottom:602.066667pt;}
.y61_c00112{bottom:603.026667pt;}
.y5b_c00112{bottom:603.226667pt;}
.y5c_c00112{bottom:603.973333pt;}
.y5d_c00112{bottom:604.173333pt;}
.y5e_c00112{bottom:604.933333pt;}
.y5a_c00112{bottom:615.400000pt;}
.y57_c00112{bottom:615.600000pt;}
.y58_c00112{bottom:616.360000pt;}
.y56_c00112{bottom:617.306667pt;}
.y59_c00112{bottom:618.266667pt;}
.y54_c00112{bottom:629.693333pt;}
.y51_c00112{bottom:629.893333pt;}
.y55_c00112{bottom:630.266667pt;}
.y52_c00112{bottom:630.640000pt;}
.y53_c00112{bottom:631.600000pt;}
.y4f_c00112{bottom:647.773333pt;}
.y4e_c00112{bottom:649.693333pt;}
.y50_c00112{bottom:649.893333pt;}
.y4a_c00112{bottom:665.106667pt;}
.y49_c00112{bottom:665.493333pt;}
.y48_c00112{bottom:666.440000pt;}
.y4d_c00112{bottom:667.226667pt;}
.y4c_c00112{bottom:667.973333pt;}
.y4b_c00112{bottom:668.360000pt;}
.y46_c00112{bottom:683.773333pt;}
.y47_c00112{bottom:684.560000pt;}
.y44_c00112{bottom:685.693333pt;}
.y45_c00112{bottom:685.706667pt;}
.y43_c00112{bottom:699.773333pt;}
.y42_c00112{bottom:702.066667pt;}
.y41_c00112{bottom:702.640000pt;}
.y40_c00112{bottom:703.026667pt;}
.y3e_c00112{bottom:718.440000pt;}
.y3f_c00112{bottom:719.226667pt;}
.y3c_c00112{bottom:719.973333pt;}
.y3d_c00112{bottom:720.360000pt;}
.y39_c00112{bottom:735.026667pt;}
.y3a_c00112{bottom:735.773333pt;}
.y37_c00112{bottom:737.693333pt;}
.y38_c00112{bottom:737.706667pt;}
.y3b_c00112{bottom:738.640000pt;}
.y34_c00112{bottom:753.106667pt;}
.y35_c00112{bottom:754.440000pt;}
.y31_c00112{bottom:755.026667pt;}
.y32_c00112{bottom:755.226667pt;}
.y36_c00112{bottom:755.973333pt;}
.y33_c00112{bottom:756.373333pt;}
.y2f_c00112{bottom:770.066667pt;}
.y2c_c00112{bottom:770.440000pt;}
.y2e_c00112{bottom:771.400000pt;}
.y30_c00112{bottom:772.360000pt;}
.y2d_c00112{bottom:773.706667pt;}
.y2a_c00112{bottom:788.733333pt;}
.y2b_c00112{bottom:789.693333pt;}
.y26_c00112{bottom:805.493333pt;}
.y25_c00112{bottom:806.440000pt;}
.y29_c00112{bottom:807.973333pt;}
.y28_c00112{bottom:808.360000pt;}
.y27_c00112{bottom:808.373333pt;}
.y24_c00112{bottom:825.306667pt;}
.y20_c00112{bottom:825.693333pt;}
.y1f_c00112{bottom:826.066667pt;}
.y1e_c00112{bottom:827.026667pt;}
.y23_c00112{bottom:827.226667pt;}
.y21_c00112{bottom:827.973333pt;}
.y22_c00112{bottom:828.933333pt;}
.y1a_c00112{bottom:840.933333pt;}
.y18_c00112{bottom:841.693333pt;}
.y1b_c00112{bottom:842.066667pt;}
.y1d_c00112{bottom:842.840000pt;}
.y1c_c00112{bottom:843.226667pt;}
.y19_c00112{bottom:843.600000pt;}
.y16_c00112{bottom:862.440000pt;}
.y17_c00112{bottom:863.400000pt;}
.y13_c00112{bottom:887.026667pt;}
.y12_c00112{bottom:889.106667pt;}
.y14_c00112{bottom:890.266667pt;}
.y15_c00112{bottom:891.026667pt;}
.yf_c00112{bottom:905.306667pt;}
.y11_c00112{bottom:905.693333pt;}
.yd_c00112{bottom:906.440000pt;}
.y10_c00112{bottom:907.226667pt;}
.ye_c00112{bottom:907.973333pt;}
.yc_c00112{bottom:908.360000pt;}
.yb_c00112{bottom:923.026667pt;}
.y9_c00112{bottom:923.773333pt;}
.ya_c00112{bottom:923.973333pt;}
.y7_c00112{bottom:940.360000pt;}
.y4_c00112{bottom:941.106667pt;}
.y6_c00112{bottom:941.306667pt;}
.y3_c00112{bottom:943.026667pt;}
.y8_c00112{bottom:943.226667pt;}
.y5_c00112{bottom:943.973333pt;}
.y1_c00112{bottom:976.733333pt;}
.y2_c00112{bottom:976.933333pt;}
.h9_c00112{height:3.739141pt;}
.h7_c00112{height:14.890964pt;}
.h6_c00112{height:20.466875pt;}
.h2_c00112{height:22.303646pt;}
.ha_c00112{height:24.039557pt;}
.h5_c00112{height:27.879557pt;}
.h3_c00112{height:31.618698pt;}
.h1_c00112{height:35.357839pt;}
.h4_c00112{height:39.031380pt;}
.h8_c00112{height:42.770521pt;}
.h0_c00112{height:1186.666667pt;}
.w0_c00112{width:782.666667pt;}
.x0_c00112{left:0.000000pt;}
.x3_c00112{left:135.040000pt;}
.x5e_c00112{left:136.000000pt;}
.x7f_c00112{left:137.333333pt;}
.xe7_c00112{left:138.666667pt;}
.x102_c00112{left:140.373333pt;}
.x2c_c00112{left:144.000000pt;}
.x36_c00112{left:145.906667pt;}
.x19_c00112{left:147.626667pt;}
.x41_c00112{left:149.706667pt;}
.x4c_c00112{left:150.666667pt;}
.x5f_c00112{left:152.000000pt;}
.xee_c00112{left:152.960000pt;}
.xdb_c00112{left:157.706667pt;}
.xcf_c00112{left:162.666667pt;}
.x8f_c00112{left:164.000000pt;}
.x86_c00112{left:165.333333pt;}
.x9d_c00112{left:166.293333pt;}
.xa9_c00112{left:168.000000pt;}
.x1a_c00112{left:168.960000pt;}
.x4_c00112{left:170.293333pt;}
.x67_c00112{left:173.333333pt;}
.xa6_c00112{left:176.000000pt;}
.xb1_c00112{left:180.000000pt;}
.x4b_c00112{left:180.960000pt;}
.x103_c00112{left:183.040000pt;}
.x42_c00112{left:187.626667pt;}
.xa7_c00112{left:189.333333pt;}
.x68_c00112{left:191.040000pt;}
.xaa_c00112{left:193.333333pt;}
.xf1_c00112{left:195.040000pt;}
.xe0_c00112{left:196.000000pt;}
.x20_c00112{left:196.960000pt;}
.xbf_c00112{left:199.626667pt;}
.x2d_c00112{left:200.760000pt;}
.xd5_c00112{left:202.293333pt;}
.xc5_c00112{left:204.000000pt;}
.x8c_c00112{left:207.040000pt;}
.x60_c00112{left:210.666667pt;}
.x104_c00112{left:212.960000pt;}
.x37_c00112{left:215.040000pt;}
.x5_c00112{left:216.960000pt;}
.xf2_c00112{left:218.666667pt;}
.x2e_c00112{left:221.333333pt;}
.x71_c00112{left:222.666667pt;}
.x97_c00112{left:224.000000pt;}
.x27_c00112{left:226.293333pt;}
.x80_c00112{left:228.000000pt;}
.x4d_c00112{left:229.333333pt;}
.x1b_c00112{left:232.373333pt;}
.x6_c00112{left:233.706667pt;}
.x90_c00112{left:234.666667pt;}
.x21_c00112{left:236.760000pt;}
.x72_c00112{left:238.293333pt;}
.x43_c00112{left:240.000000pt;}
.xd0_c00112{left:241.333333pt;}
.xab_c00112{left:242.666667pt;}
.x8d_c00112{left:245.333333pt;}
.xa8_c00112{left:246.666667pt;}
.x4e_c00112{left:249.333333pt;}
.xe8_c00112{left:252.373333pt;}
.xb8_c00112{left:253.333333pt;}
.x9e_c00112{left:254.666667pt;}
.x81_c00112{left:256.000000pt;}
.xf6_c00112{left:257.706667pt;}
.x44_c00112{left:258.666667pt;}
.xd6_c00112{left:259.626667pt;}
.x22_c00112{left:260.960000pt;}
.x2f_c00112{left:263.426667pt;}
.xac_c00112{left:265.333333pt;}
.x38_c00112{left:266.666667pt;}
.x98_c00112{left:269.333333pt;}
.xb2_c00112{left:271.040000pt;}
.x69_c00112{left:272.000000pt;}
.xe5_c00112{left:274.293333pt;}
.x8e_c00112{left:277.706667pt;}
.x57_c00112{left:278.666667pt;}
.xeb_c00112{left:280.373333pt;}
.xf7_c00112{left:281.333333pt;}
.x1c_c00112{left:283.040000pt;}
.x7_c00112{left:284.373333pt;}
.x30_c00112{left:285.333333pt;}
.x53_c00112{left:286.293333pt;}
.x9f_c00112{left:288.373333pt;}
.x61_c00112{left:289.333333pt;}
.x23_c00112{left:290.466667pt;}
.xc6_c00112{left:292.960000pt;}
.x7a_c00112{left:295.040000pt;}
.xf3_c00112{left:297.333333pt;}
.xfc_c00112{left:298.666667pt;}
.xfd_c00112{left:300.000000pt;}
.x39_c00112{left:301.706667pt;}
.xe1_c00112{left:302.666667pt;}
.x73_c00112{left:304.000000pt;}
.xc0_c00112{left:305.333333pt;}
.x4f_c00112{left:306.466667pt;}
.x54_c00112{left:308.960000pt;}
.xa0_c00112{left:312.000000pt;}
.xec_c00112{left:314.666667pt;}
.xe9_c00112{left:315.626667pt;}
.x58_c00112{left:316.960000pt;}
.x87_c00112{left:318.666667pt;}
.xb9_c00112{left:320.760000pt;}
.x74_c00112{left:322.666667pt;}
.x7b_c00112{left:323.626667pt;}
.xb3_c00112{left:325.706667pt;}
.x45_c00112{left:327.240000pt;}
.x28_c00112{left:329.333333pt;}
.xd7_c00112{left:330.666667pt;}
.x3a_c00112{left:332.000000pt;}
.x8_c00112{left:333.333333pt;}
.x59_c00112{left:335.040000pt;}
.x6a_c00112{left:336.000000pt;}
.x91_c00112{left:338.666667pt;}
.xc1_c00112{left:340.000000pt;}
.x82_c00112{left:341.333333pt;}
.x50_c00112{left:342.666667pt;}
.xfe_c00112{left:345.333333pt;}
.xef_c00112{left:348.000000pt;}
.x55_c00112{left:348.960000pt;}
.x62_c00112{left:350.666667pt;}
.x2_c00112{left:353.333333pt;}
.xa1_c00112{left:354.666667pt;}
.xb4_c00112{left:356.000000pt;}
.x31_c00112{left:359.040000pt;}
.x83_c00112{left:361.706667pt;}
.xea_c00112{left:362.666667pt;}
.x9_c00112{left:366.293333pt;}
.xad_c00112{left:368.000000pt;}
.x3b_c00112{left:373.706667pt;}
.xba_c00112{left:374.666667pt;}
.xd8_c00112{left:376.960000pt;}
.xf0_c00112{left:378.293333pt;}
.x75_c00112{left:380.000000pt;}
.x88_c00112{left:381.333333pt;}
.xf8_c00112{left:382.666667pt;}
.xa_c00112{left:384.000000pt;}
.x84_c00112{left:385.706667pt;}
.x99_c00112{left:386.666667pt;}
.xcb_c00112{left:389.333333pt;}
.xc7_c00112{left:390.666667pt;}
.xed_c00112{left:391.626667pt;}
.x105_c00112{left:393.333333pt;}
.xc2_c00112{left:396.960000pt;}
.x46_c00112{left:398.666667pt;}
.xb_c00112{left:399.626667pt;}
.xf4_c00112{left:401.333333pt;}
.x29_c00112{left:403.040000pt;}
.x5a_c00112{left:404.960000pt;}
.x92_c00112{left:408.373333pt;}
.xd1_c00112{left:409.333333pt;}
.x56_c00112{left:412.000000pt;}
.xbb_c00112{left:416.000000pt;}
.xc_c00112{left:418.666667pt;}
.xdc_c00112{left:420.000000pt;}
.x47_c00112{left:420.960000pt;}
.x51_c00112{left:422.466667pt;}
.x76_c00112{left:423.626667pt;}
.x32_c00112{left:426.666667pt;}
.x3c_c00112{left:428.000000pt;}
.x6b_c00112{left:429.706667pt;}
.xff_c00112{left:430.666667pt;}
.xbc_c00112{left:436.000000pt;}
.x7c_c00112{left:437.333333pt;}
.xe6_c00112{left:438.293333pt;}
.x77_c00112{left:440.373333pt;}
.xd2_c00112{left:443.040000pt;}
.x85_c00112{left:444.000000pt;}
.x93_c00112{left:445.333333pt;}
.x9a_c00112{left:448.373333pt;}
.x33_c00112{left:449.333333pt;}
.xd_c00112{left:451.040000pt;}
.x6c_c00112{left:453.333333pt;}
.x100_c00112{left:454.293333pt;}
.x3d_c00112{left:456.000000pt;}
.x52_c00112{left:456.960000pt;}
.x24_c00112{left:458.293333pt;}
.xf9_c00112{left:460.000000pt;}
.x63_c00112{left:461.706667pt;}
.xe2_c00112{left:462.666667pt;}
.x78_c00112{left:464.000000pt;}
.xb5_c00112{left:467.040000pt;}
.xf5_c00112{left:468.373333pt;}
.xcc_c00112{left:469.333333pt;}
.xae_c00112{left:470.666667pt;}
.x15_c00112{left:471.626667pt;}
.xbd_c00112{left:474.666667pt;}
.x94_c00112{left:476.000000pt;}
.x2a_c00112{left:476.960000pt;}
.x7d_c00112{left:480.960000pt;}
.xc8_c00112{left:485.333333pt;}
.xe3_c00112{left:486.293333pt;}
.x3e_c00112{left:490.293333pt;}
.xe_c00112{left:491.626667pt;}
.x1d_c00112{left:492.960000pt;}
.x64_c00112{left:494.666667pt;}
.x34_c00112{left:496.373333pt;}
.xfa_c00112{left:497.333333pt;}
.x6d_c00112{left:498.293333pt;}
.x89_c00112{left:500.000000pt;}
.xa2_c00112{left:502.666667pt;}
.xd3_c00112{left:505.333333pt;}
.xf_c00112{left:508.373333pt;}
.x3f_c00112{left:509.706667pt;}
.x79_c00112{left:511.040000pt;}
.xd9_c00112{left:514.293333pt;}
.x6e_c00112{left:516.000000pt;}
.x35_c00112{left:520.000000pt;}
.xdd_c00112{left:523.040000pt;}
.xc3_c00112{left:524.000000pt;}
.x2b_c00112{left:525.133333pt;}
.xcd_c00112{left:526.666667pt;}
.x40_c00112{left:528.960000pt;}
.xe4_c00112{left:530.666667pt;}
.xc9_c00112{left:532.000000pt;}
.xbe_c00112{left:532.960000pt;}
.xa3_c00112{left:534.666667pt;}
.x10_c00112{left:540.000000pt;}
.xb6_c00112{left:541.333333pt;}
.x25_c00112{left:543.040000pt;}
.x48_c00112{left:545.333333pt;}
.xde_c00112{left:546.666667pt;}
.xd4_c00112{left:547.626667pt;}
.x5b_c00112{left:550.293333pt;}
.x65_c00112{left:551.626667pt;}
.x16_c00112{left:554.666667pt;}
.x8a_c00112{left:556.960000pt;}
.x9b_c00112{left:558.666667pt;}
.x95_c00112{left:559.626667pt;}
.xa4_c00112{left:560.960000pt;}
.xfb_c00112{left:563.626667pt;}
.x49_c00112{left:564.960000pt;}
.xda_c00112{left:568.373333pt;}
.x11_c00112{left:571.626667pt;}
.x6f_c00112{left:572.960000pt;}
.xca_c00112{left:574.666667pt;}
.x7e_c00112{left:576.000000pt;}
.x101_c00112{left:577.333333pt;}
.xaf_c00112{left:579.040000pt;}
.x96_c00112{left:582.666667pt;}
.x12_c00112{left:589.333333pt;}
.x5c_c00112{left:591.626667pt;}
.x66_c00112{left:592.960000pt;}
.xdf_c00112{left:596.373333pt;}
.x26_c00112{left:598.666667pt;}
.x70_c00112{left:600.373333pt;}
.xa5_c00112{left:601.333333pt;}
.x13_c00112{left:604.960000pt;}
.x1e_c00112{left:606.293333pt;}
.x8b_c00112{left:608.000000pt;}
.xc4_c00112{left:609.333333pt;}
.xb7_c00112{left:610.666667pt;}
.x106_c00112{left:612.000000pt;}
.xb0_c00112{left:614.666667pt;}
.x9c_c00112{left:616.000000pt;}
.x17_c00112{left:616.960000pt;}
.x5d_c00112{left:619.240000pt;}
.x14_c00112{left:622.666667pt;}
.x1f_c00112{left:624.000000pt;}
.x4a_c00112{left:626.293333pt;}
.x1_c00112{left:632.000000pt;}
.x18_c00112{left:632.960000pt;}
.xce_c00112{left:638.666667pt;}
.x107_c00112{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aef39a9e5cceb0dcd5addda5.woff2')format("woff");}.ff1_c00113{font-family:ff1_c00113;line-height:1.688965;font-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_c00113{transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);}
.m5e_c00113{transform:matrix(0.361317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361317,0.000000,0.000000,0.250000,0,0);}
.m50_c00113{transform:matrix(0.361580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361580,0.000000,0.000000,0.250000,0,0);}
.m0_c00113{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m58_c00113{transform:matrix(0.370130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370130,0.000000,0.000000,0.250000,0,0);}
.m22_c00113{transform:matrix(0.371166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371166,0.000000,0.000000,0.250000,0,0);}
.m5f_c00113{transform:matrix(0.380798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380798,0.000000,0.000000,0.250000,0,0);}
.m76_c00113{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m3c_c00113{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m27_c00113{transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);}
.m3d_c00113{transform:matrix(0.398390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398390,0.000000,0.000000,0.250000,0,0);}
.m59_c00113{transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);}
.m65_c00113{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.m4b_c00113{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m23_c00113{transform:matrix(0.409509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409509,0.000000,0.000000,0.250000,0,0);}
.m1d_c00113{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m24_c00113{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m1a_c00113{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.m66_c00113{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.m16_c00113{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.md_c00113{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m3a_c00113{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m2d_c00113{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m29_c00113{transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);}
.m7a_c00113{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m18_c00113{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m61_c00113{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m57_c00113{transform:matrix(0.426867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426867,0.000000,0.000000,0.250000,0,0);}
.m7d_c00113{transform:matrix(0.428423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428423,0.000000,0.000000,0.250000,0,0);}
.m49_c00113{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m14_c00113{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m72_c00113{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m2_c00113{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m32_c00113{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m74_c00113{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m5b_c00113{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m64_c00113{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m6e_c00113{transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);}
.m15_c00113{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m5d_c00113{transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);}
.m1e_c00113{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.mf_c00113{transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);}
.m1b_c00113{transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);}
.m6c_c00113{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m11_c00113{transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);}
.m56_c00113{transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);}
.m2a_c00113{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m6f_c00113{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.m6d_c00113{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m26_c00113{transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);}
.m7c_c00113{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m28_c00113{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m37_c00113{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m7b_c00113{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m75_c00113{transform:matrix(0.487059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487059,0.000000,0.000000,0.250000,0,0);}
.m39_c00113{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m3b_c00113{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m25_c00113{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m6b_c00113{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_c00113{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m77_c00113{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m6_c00113{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m63_c00113{transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);}
.m54_c00113{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.m2c_c00113{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m4e_c00113{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m5c_c00113{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m1f_c00113{transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);}
.m71_c00113{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.m55_c00113{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);}
.m1c_c00113{transform:matrix(0.526438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526438,0.000000,0.000000,0.250000,0,0);}
.m40_c00113{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m73_c00113{transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);}
.m9_c00113{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mb_c00113{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m12_c00113{transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);}
.mc_c00113{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m48_c00113{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m20_c00113{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m8_c00113{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m51_c00113{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m3e_c00113{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m42_c00113{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m2f_c00113{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m6a_c00113{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m5_c00113{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m13_c00113{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m69_c00113{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m2e_c00113{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m19_c00113{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m17_c00113{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m44_c00113{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m4c_c00113{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m70_c00113{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m2b_c00113{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m60_c00113{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m62_c00113{transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);}
.m30_c00113{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m68_c00113{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m43_c00113{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m79_c00113{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m45_c00113{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.me_c00113{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m3f_c00113{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m52_c00113{transform:matrix(0.602697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602697,0.000000,0.000000,0.250000,0,0);}
.m1_c00113{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m35_c00113{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.m36_c00113{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m31_c00113{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m34_c00113{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m38_c00113{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m47_c00113{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m21_c00113{transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);}
.m41_c00113{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m78_c00113{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m33_c00113{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m3_c00113{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m46_c00113{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m67_c00113{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m53_c00113{transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);}
.m4d_c00113{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m7_c00113{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m4a_c00113{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.ma_c00113{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m5a_c00113{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.m4f_c00113{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,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:-6.184625px;}
.ws2_c00113{word-spacing:-3.624693px;}
.ws3_c00113{word-spacing:-0.412435px;}
.ws4_c00113{word-spacing:0.000000px;}
.ws1_c00113{word-spacing:2.260500px;}
.fc0_c00113{color:transparent;}
.fs7_c00113{font-size:3.420000px;}
.fs8_c00113{font-size:13.620000px;}
.fs2_c00113{font-size:18.720000px;}
.fs1_c00113{font-size:20.400000px;}
.fs6_c00113{font-size:25.500000px;}
.fs3_c00113{font-size:28.920000px;}
.fs4_c00113{font-size:32.340000px;}
.fs0_c00113{font-size:35.700000px;}
.fs5_c00113{font-size:39.120000px;}
.y0_c00113{bottom:0.000000px;}
.y30_c00113{bottom:250.680000px;}
.y31_c00113{bottom:253.050000px;}
.y2e_c00113{bottom:253.905000px;}
.y32_c00113{bottom:254.130000px;}
.y33_c00113{bottom:254.970000px;}
.y2f_c00113{bottom:255.420000px;}
.y2c_c00113{bottom:273.405000px;}
.y2d_c00113{bottom:273.630000px;}
.y2b_c00113{bottom:290.745000px;}
.y29_c00113{bottom:291.825000px;}
.y28_c00113{bottom:292.905000px;}
.y2a_c00113{bottom:293.130000px;}
.y27_c00113{bottom:293.970000px;}
.y26_c00113{bottom:310.680000px;}
.y25_c00113{bottom:313.905000px;}
.y20_c00113{bottom:331.245000px;}
.y24_c00113{bottom:331.680000px;}
.y1f_c00113{bottom:332.325000px;}
.y22_c00113{bottom:332.745000px;}
.y1e_c00113{bottom:333.405000px;}
.y23_c00113{bottom:333.825000px;}
.y21_c00113{bottom:334.905000px;}
.y19_c00113{bottom:350.745000px;}
.y1c_c00113{bottom:351.825000px;}
.y17_c00113{bottom:352.905000px;}
.y18_c00113{bottom:353.130000px;}
.y1d_c00113{bottom:353.970000px;}
.y1a_c00113{bottom:354.405000px;}
.y1b_c00113{bottom:355.470000px;}
.y15_c00113{bottom:370.245000px;}
.y13_c00113{bottom:370.680000px;}
.y16_c00113{bottom:372.405000px;}
.y12_c00113{bottom:372.825000px;}
.y14_c00113{bottom:373.905000px;}
.y11_c00113{bottom:390.180000px;}
.yb_c00113{bottom:391.245000px;}
.yf_c00113{bottom:391.905000px;}
.yd_c00113{bottom:392.325000px;}
.y10_c00113{bottom:392.550000px;}
.yc_c00113{bottom:393.405000px;}
.ye_c00113{bottom:393.825000px;}
.ya_c00113{bottom:410.745000px;}
.y8_c00113{bottom:411.825000px;}
.y9_c00113{bottom:412.905000px;}
.y3_c00113{bottom:430.245000px;}
.y7_c00113{bottom:431.130000px;}
.y5_c00113{bottom:432.405000px;}
.y4_c00113{bottom:432.630000px;}
.y6_c00113{bottom:433.905000px;}
.y50_c00113{bottom:455.970000px;}
.y4d_c00113{bottom:457.050000px;}
.y51_c00113{bottom:457.905000px;}
.y4f_c00113{bottom:458.130000px;}
.y4a_c00113{bottom:458.325000px;}
.y4e_c00113{bottom:458.970000px;}
.y4c_c00113{bottom:459.630000px;}
.y4b_c00113{bottom:460.470000px;}
.y49_c00113{bottom:472.470000px;}
.y45_c00113{bottom:472.905000px;}
.y44_c00113{bottom:473.130000px;}
.y46_c00113{bottom:473.970000px;}
.y48_c00113{bottom:474.195000px;}
.y47_c00113{bottom:475.470000px;}
.y41_c00113{bottom:487.905000px;}
.y43_c00113{bottom:488.130000px;}
.y40_c00113{bottom:488.970000px;}
.y42_c00113{bottom:490.050000px;}
.y3d_c00113{bottom:500.970000px;}
.y3a_c00113{bottom:501.825000px;}
.y3e_c00113{bottom:502.905000px;}
.y3c_c00113{bottom:503.130000px;}
.y3b_c00113{bottom:503.970000px;}
.y3f_c00113{bottom:505.050000px;}
.y34_c00113{bottom:516.825000px;}
.y36_c00113{bottom:517.050000px;}
.y37_c00113{bottom:517.905000px;}
.y39_c00113{bottom:518.970000px;}
.y38_c00113{bottom:519.195000px;}
.y35_c00113{bottom:520.050000px;}
.y1_c00113{bottom:1097.745000px;}
.y2_c00113{bottom:1099.050000px;}
.h8_c00113{height:4.206533px;}
.h9_c00113{height:16.752334px;}
.h3_c00113{height:23.025234px;}
.h2_c00113{height:25.091602px;}
.h7_c00113{height:31.364502px;}
.h4_c00113{height:35.571035px;}
.h5_c00113{height:39.777568px;}
.h1_c00113{height:43.910303px;}
.h6_c00113{height:48.116836px;}
.h0_c00113{height:1335.000000px;}
.w0_c00113{width:880.500000px;}
.x0_c00113{left:0.000000px;}
.x3c_c00113{left:150.000000px;}
.x3_c00113{left:151.920000px;}
.x1_c00113{left:153.000000px;}
.x4a_c00113{left:165.000000px;}
.x30_c00113{left:167.580000px;}
.x57_c00113{left:169.500000px;}
.x6b_c00113{left:175.920000px;}
.x45_c00113{left:178.500000px;}
.x5e_c00113{left:182.355000px;}
.x25_c00113{left:186.000000px;}
.x4_c00113{left:187.500000px;}
.x3d_c00113{left:195.000000px;}
.x4b_c00113{left:197.580000px;}
.x19_c00113{left:201.420000px;}
.x26_c00113{left:204.000000px;}
.x5f_c00113{left:205.920000px;}
.x5_c00113{left:208.500000px;}
.x31_c00113{left:210.000000px;}
.xf_c00113{left:211.920000px;}
.x58_c00113{left:214.920000px;}
.x75_c00113{left:220.500000px;}
.x32_c00113{left:223.920000px;}
.x60_c00113{left:226.500000px;}
.x27_c00113{left:231.420000px;}
.x1a_c00113{left:237.000000px;}
.x6c_c00113{left:241.500000px;}
.x46_c00113{left:244.500000px;}
.x10_c00113{left:250.500000px;}
.x7c_c00113{left:251.580000px;}
.x59_c00113{left:256.500000px;}
.x4c_c00113{left:257.580000px;}
.x6_c00113{left:262.080000px;}
.x33_c00113{left:264.420000px;}
.x3e_c00113{left:271.920000px;}
.x6d_c00113{left:276.000000px;}
.x28_c00113{left:283.500000px;}
.x4d_c00113{left:288.000000px;}
.x1b_c00113{left:289.500000px;}
.x6e_c00113{left:298.500000px;}
.x11_c00113{left:306.000000px;}
.x7_c00113{left:312.000000px;}
.x34_c00113{left:313.920000px;}
.x61_c00113{left:316.500000px;}
.x1c_c00113{left:321.000000px;}
.x4e_c00113{left:325.500000px;}
.x47_c00113{left:327.000000px;}
.x3f_c00113{left:337.080000px;}
.x7d_c00113{left:340.500000px;}
.x76_c00113{left:342.000000px;}
.x48_c00113{left:345.000000px;}
.x12_c00113{left:349.920000px;}
.x6f_c00113{left:351.000000px;}
.x35_c00113{left:352.500000px;}
.x1d_c00113{left:361.500000px;}
.x5a_c00113{left:363.420000px;}
.x70_c00113{left:364.500000px;}
.x29_c00113{left:366.000000px;}
.x8_c00113{left:370.920000px;}
.x40_c00113{left:372.000000px;}
.x62_c00113{left:379.920000px;}
.x36_c00113{left:381.000000px;}
.x71_c00113{left:387.000000px;}
.x7e_c00113{left:393.000000px;}
.x77_c00113{left:399.000000px;}
.x13_c00113{left:400.500000px;}
.x2_c00113{left:402.000000px;}
.x7f_c00113{left:411.000000px;}
.x41_c00113{left:417.420000px;}
.x2a_c00113{left:421.500000px;}
.x4f_c00113{left:427.080000px;}
.x9_c00113{left:430.500000px;}
.x37_c00113{left:438.000000px;}
.x1e_c00113{left:439.500000px;}
.xa_c00113{left:444.000000px;}
.x50_c00113{left:445.500000px;}
.x72_c00113{left:455.580000px;}
.x66_c00113{left:457.080000px;}
.x5b_c00113{left:459.000000px;}
.x1f_c00113{left:466.500000px;}
.x2b_c00113{left:475.920000px;}
.x67_c00113{left:477.000000px;}
.x14_c00113{left:478.500000px;}
.x51_c00113{left:479.580000px;}
.x78_c00113{left:481.920000px;}
.x52_c00113{left:496.500000px;}
.x49_c00113{left:499.500000px;}
.x42_c00113{left:502.500000px;}
.x38_c00113{left:508.500000px;}
.x20_c00113{left:510.420000px;}
.x2c_c00113{left:511.920000px;}
.x63_c00113{left:519.420000px;}
.x15_c00113{left:522.000000px;}
.x53_c00113{left:523.080000px;}
.xb_c00113{left:525.000000px;}
.x79_c00113{left:528.420000px;}
.x73_c00113{left:540.000000px;}
.x21_c00113{left:541.920000px;}
.x7a_c00113{left:543.645000px;}
.x39_c00113{left:552.000000px;}
.x5c_c00113{left:559.500000px;}
.x2d_c00113{left:564.420000px;}
.x22_c00113{left:568.500000px;}
.x43_c00113{left:570.000000px;}
.x5d_c00113{left:572.580000px;}
.x68_c00113{left:576.000000px;}
.x64_c00113{left:588.645000px;}
.x16_c00113{left:589.920000px;}
.x54_c00113{left:594.000000px;}
.x69_c00113{left:598.500000px;}
.xc_c00113{left:613.080000px;}
.x2e_c00113{left:619.500000px;}
.x3a_c00113{left:625.500000px;}
.x7b_c00113{left:630.000000px;}
.x23_c00113{left:634.500000px;}
.x6a_c00113{left:636.420000px;}
.xd_c00113{left:646.080000px;}
.x44_c00113{left:652.500000px;}
.x24_c00113{left:654.000000px;}
.x17_c00113{left:660.420000px;}
.x55_c00113{left:667.500000px;}
.x3b_c00113{left:670.500000px;}
.x65_c00113{left:678.000000px;}
.x74_c00113{left:679.500000px;}
.x2f_c00113{left:690.000000px;}
.x56_c00113{left:693.420000px;}
.x18_c00113{left:704.580000px;}
.xe_c00113{left:709.920000px;}
@media print{
.v0_c00113{vertical-align:0.000000pt;}
.ls0_c00113{letter-spacing:0.000000pt;}
.ws0_c00113{word-spacing:-5.497444pt;}
.ws2_c00113{word-spacing:-3.221949pt;}
.ws3_c00113{word-spacing:-0.366609pt;}
.ws4_c00113{word-spacing:0.000000pt;}
.ws1_c00113{word-spacing:2.009333pt;}
.fs7_c00113{font-size:3.040000pt;}
.fs8_c00113{font-size:12.106667pt;}
.fs2_c00113{font-size:16.640000pt;}
.fs1_c00113{font-size:18.133333pt;}
.fs6_c00113{font-size:22.666667pt;}
.fs3_c00113{font-size:25.706667pt;}
.fs4_c00113{font-size:28.746667pt;}
.fs0_c00113{font-size:31.733333pt;}
.fs5_c00113{font-size:34.773333pt;}
.y0_c00113{bottom:0.000000pt;}
.y30_c00113{bottom:222.826667pt;}
.y31_c00113{bottom:224.933333pt;}
.y2e_c00113{bottom:225.693333pt;}
.y32_c00113{bottom:225.893333pt;}
.y33_c00113{bottom:226.640000pt;}
.y2f_c00113{bottom:227.040000pt;}
.y2c_c00113{bottom:243.026667pt;}
.y2d_c00113{bottom:243.226667pt;}
.y2b_c00113{bottom:258.440000pt;}
.y29_c00113{bottom:259.400000pt;}
.y28_c00113{bottom:260.360000pt;}
.y2a_c00113{bottom:260.560000pt;}
.y27_c00113{bottom:261.306667pt;}
.y26_c00113{bottom:276.160000pt;}
.y25_c00113{bottom:279.026667pt;}
.y20_c00113{bottom:294.440000pt;}
.y24_c00113{bottom:294.826667pt;}
.y1f_c00113{bottom:295.400000pt;}
.y22_c00113{bottom:295.773333pt;}
.y1e_c00113{bottom:296.360000pt;}
.y23_c00113{bottom:296.733333pt;}
.y21_c00113{bottom:297.693333pt;}
.y19_c00113{bottom:311.773333pt;}
.y1c_c00113{bottom:312.733333pt;}
.y17_c00113{bottom:313.693333pt;}
.y18_c00113{bottom:313.893333pt;}
.y1d_c00113{bottom:314.640000pt;}
.y1a_c00113{bottom:315.026667pt;}
.y1b_c00113{bottom:315.973333pt;}
.y15_c00113{bottom:329.106667pt;}
.y13_c00113{bottom:329.493333pt;}
.y16_c00113{bottom:331.026667pt;}
.y12_c00113{bottom:331.400000pt;}
.y14_c00113{bottom:332.360000pt;}
.y11_c00113{bottom:346.826667pt;}
.yb_c00113{bottom:347.773333pt;}
.yf_c00113{bottom:348.360000pt;}
.yd_c00113{bottom:348.733333pt;}
.y10_c00113{bottom:348.933333pt;}
.yc_c00113{bottom:349.693333pt;}
.ye_c00113{bottom:350.066667pt;}
.ya_c00113{bottom:365.106667pt;}
.y8_c00113{bottom:366.066667pt;}
.y9_c00113{bottom:367.026667pt;}
.y3_c00113{bottom:382.440000pt;}
.y7_c00113{bottom:383.226667pt;}
.y5_c00113{bottom:384.360000pt;}
.y4_c00113{bottom:384.560000pt;}
.y6_c00113{bottom:385.693333pt;}
.y50_c00113{bottom:405.306667pt;}
.y4d_c00113{bottom:406.266667pt;}
.y51_c00113{bottom:407.026667pt;}
.y4f_c00113{bottom:407.226667pt;}
.y4a_c00113{bottom:407.400000pt;}
.y4e_c00113{bottom:407.973333pt;}
.y4c_c00113{bottom:408.560000pt;}
.y4b_c00113{bottom:409.306667pt;}
.y49_c00113{bottom:419.973333pt;}
.y45_c00113{bottom:420.360000pt;}
.y44_c00113{bottom:420.560000pt;}
.y46_c00113{bottom:421.306667pt;}
.y48_c00113{bottom:421.506667pt;}
.y47_c00113{bottom:422.640000pt;}
.y41_c00113{bottom:433.693333pt;}
.y43_c00113{bottom:433.893333pt;}
.y40_c00113{bottom:434.640000pt;}
.y42_c00113{bottom:435.600000pt;}
.y3d_c00113{bottom:445.306667pt;}
.y3a_c00113{bottom:446.066667pt;}
.y3e_c00113{bottom:447.026667pt;}
.y3c_c00113{bottom:447.226667pt;}
.y3b_c00113{bottom:447.973333pt;}
.y3f_c00113{bottom:448.933333pt;}
.y34_c00113{bottom:459.400000pt;}
.y36_c00113{bottom:459.600000pt;}
.y37_c00113{bottom:460.360000pt;}
.y39_c00113{bottom:461.306667pt;}
.y38_c00113{bottom:461.506667pt;}
.y35_c00113{bottom:462.266667pt;}
.y1_c00113{bottom:975.773333pt;}
.y2_c00113{bottom:976.933333pt;}
.h8_c00113{height:3.739141pt;}
.h9_c00113{height:14.890964pt;}
.h3_c00113{height:20.466875pt;}
.h2_c00113{height:22.303646pt;}
.h7_c00113{height:27.879557pt;}
.h4_c00113{height:31.618698pt;}
.h5_c00113{height:35.357839pt;}
.h1_c00113{height:39.031380pt;}
.h6_c00113{height:42.770521pt;}
.h0_c00113{height:1186.666667pt;}
.w0_c00113{width:782.666667pt;}
.x0_c00113{left:0.000000pt;}
.x3c_c00113{left:133.333333pt;}
.x3_c00113{left:135.040000pt;}
.x1_c00113{left:136.000000pt;}
.x4a_c00113{left:146.666667pt;}
.x30_c00113{left:148.960000pt;}
.x57_c00113{left:150.666667pt;}
.x6b_c00113{left:156.373333pt;}
.x45_c00113{left:158.666667pt;}
.x5e_c00113{left:162.093333pt;}
.x25_c00113{left:165.333333pt;}
.x4_c00113{left:166.666667pt;}
.x3d_c00113{left:173.333333pt;}
.x4b_c00113{left:175.626667pt;}
.x19_c00113{left:179.040000pt;}
.x26_c00113{left:181.333333pt;}
.x5f_c00113{left:183.040000pt;}
.x5_c00113{left:185.333333pt;}
.x31_c00113{left:186.666667pt;}
.xf_c00113{left:188.373333pt;}
.x58_c00113{left:191.040000pt;}
.x75_c00113{left:196.000000pt;}
.x32_c00113{left:199.040000pt;}
.x60_c00113{left:201.333333pt;}
.x27_c00113{left:205.706667pt;}
.x1a_c00113{left:210.666667pt;}
.x6c_c00113{left:214.666667pt;}
.x46_c00113{left:217.333333pt;}
.x10_c00113{left:222.666667pt;}
.x7c_c00113{left:223.626667pt;}
.x59_c00113{left:228.000000pt;}
.x4c_c00113{left:228.960000pt;}
.x6_c00113{left:232.960000pt;}
.x33_c00113{left:235.040000pt;}
.x3e_c00113{left:241.706667pt;}
.x6d_c00113{left:245.333333pt;}
.x28_c00113{left:252.000000pt;}
.x4d_c00113{left:256.000000pt;}
.x1b_c00113{left:257.333333pt;}
.x6e_c00113{left:265.333333pt;}
.x11_c00113{left:272.000000pt;}
.x7_c00113{left:277.333333pt;}
.x34_c00113{left:279.040000pt;}
.x61_c00113{left:281.333333pt;}
.x1c_c00113{left:285.333333pt;}
.x4e_c00113{left:289.333333pt;}
.x47_c00113{left:290.666667pt;}
.x3f_c00113{left:299.626667pt;}
.x7d_c00113{left:302.666667pt;}
.x76_c00113{left:304.000000pt;}
.x48_c00113{left:306.666667pt;}
.x12_c00113{left:311.040000pt;}
.x6f_c00113{left:312.000000pt;}
.x35_c00113{left:313.333333pt;}
.x1d_c00113{left:321.333333pt;}
.x5a_c00113{left:323.040000pt;}
.x70_c00113{left:324.000000pt;}
.x29_c00113{left:325.333333pt;}
.x8_c00113{left:329.706667pt;}
.x40_c00113{left:330.666667pt;}
.x62_c00113{left:337.706667pt;}
.x36_c00113{left:338.666667pt;}
.x71_c00113{left:344.000000pt;}
.x7e_c00113{left:349.333333pt;}
.x77_c00113{left:354.666667pt;}
.x13_c00113{left:356.000000pt;}
.x2_c00113{left:357.333333pt;}
.x7f_c00113{left:365.333333pt;}
.x41_c00113{left:371.040000pt;}
.x2a_c00113{left:374.666667pt;}
.x4f_c00113{left:379.626667pt;}
.x9_c00113{left:382.666667pt;}
.x37_c00113{left:389.333333pt;}
.x1e_c00113{left:390.666667pt;}
.xa_c00113{left:394.666667pt;}
.x50_c00113{left:396.000000pt;}
.x72_c00113{left:404.960000pt;}
.x66_c00113{left:406.293333pt;}
.x5b_c00113{left:408.000000pt;}
.x1f_c00113{left:414.666667pt;}
.x2b_c00113{left:423.040000pt;}
.x67_c00113{left:424.000000pt;}
.x14_c00113{left:425.333333pt;}
.x51_c00113{left:426.293333pt;}
.x78_c00113{left:428.373333pt;}
.x52_c00113{left:441.333333pt;}
.x49_c00113{left:444.000000pt;}
.x42_c00113{left:446.666667pt;}
.x38_c00113{left:452.000000pt;}
.x20_c00113{left:453.706667pt;}
.x2c_c00113{left:455.040000pt;}
.x63_c00113{left:461.706667pt;}
.x15_c00113{left:464.000000pt;}
.x53_c00113{left:464.960000pt;}
.xb_c00113{left:466.666667pt;}
.x79_c00113{left:469.706667pt;}
.x73_c00113{left:480.000000pt;}
.x21_c00113{left:481.706667pt;}
.x7a_c00113{left:483.240000pt;}
.x39_c00113{left:490.666667pt;}
.x5c_c00113{left:497.333333pt;}
.x2d_c00113{left:501.706667pt;}
.x22_c00113{left:505.333333pt;}
.x43_c00113{left:506.666667pt;}
.x5d_c00113{left:508.960000pt;}
.x68_c00113{left:512.000000pt;}
.x64_c00113{left:523.240000pt;}
.x16_c00113{left:524.373333pt;}
.x54_c00113{left:528.000000pt;}
.x69_c00113{left:532.000000pt;}
.xc_c00113{left:544.960000pt;}
.x2e_c00113{left:550.666667pt;}
.x3a_c00113{left:556.000000pt;}
.x7b_c00113{left:560.000000pt;}
.x23_c00113{left:564.000000pt;}
.x6a_c00113{left:565.706667pt;}
.xd_c00113{left:574.293333pt;}
.x44_c00113{left:580.000000pt;}
.x24_c00113{left:581.333333pt;}
.x17_c00113{left:587.040000pt;}
.x55_c00113{left:593.333333pt;}
.x3b_c00113{left:596.000000pt;}
.x65_c00113{left:602.666667pt;}
.x74_c00113{left:604.000000pt;}
.x2f_c00113{left:613.333333pt;}
.x56_c00113{left:616.373333pt;}
.x18_c00113{left:626.293333pt;}
.xe_c00113{left:631.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_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_39206d33d8700705a8564e51.woff2')format("woff");}.ff1_c00114{font-family:ff1_c00114;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9d_c00114{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.mbc_c00114{transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);}
.m35_c00114{transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);}
.m26_c00114{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m0_c00114{transform:matrix(0.363173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363173,0.000000,0.000000,0.250000,0,0);}
.m5_c00114{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m53_c00114{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m27_c00114{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m57_c00114{transform:matrix(0.373083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373083,0.000000,0.000000,0.250000,0,0);}
.m94_c00114{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00114{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m2a_c00114{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m54_c00114{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m28_c00114{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m62_c00114{transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);}
.m63_c00114{transform:matrix(0.389954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389954,0.000000,0.000000,0.250000,0,0);}
.m7b_c00114{transform:matrix(0.393321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393321,0.000000,0.000000,0.250000,0,0);}
.m18_c00114{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m6f_c00114{transform:matrix(0.396472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396472,0.000000,0.000000,0.250000,0,0);}
.m4_c00114{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m64_c00114{transform:matrix(0.402607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402607,0.000000,0.000000,0.250000,0,0);}
.m68_c00114{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m14_c00114{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m4f_c00114{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m15_c00114{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m1c_c00114{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m81_c00114{transform:matrix(0.411894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411894,0.000000,0.000000,0.250000,0,0);}
.m7_c00114{transform:matrix(0.415456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415456,0.000000,0.000000,0.250000,0,0);}
.m60_c00114{transform:matrix(0.416028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416028,0.000000,0.000000,0.250000,0,0);}
.m66_c00114{transform:matrix(0.416794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416794,0.000000,0.000000,0.250000,0,0);}
.m7f_c00114{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m10_c00114{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m5c_c00114{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m82_c00114{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m7a_c00114{transform:matrix(0.426867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426867,0.000000,0.000000,0.250000,0,0);}
.m51_c00114{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m13_c00114{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m25_c00114{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m69_c00114{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mad_c00114{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m9_c00114{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m77_c00114{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m11_c00114{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m22_c00114{transform:matrix(0.435529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435529,0.000000,0.000000,0.250000,0,0);}
.m98_c00114{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m4e_c00114{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m9b_c00114{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);}
.m4b_c00114{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m3c_c00114{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m17_c00114{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.me_c00114{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m24_c00114{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m29_c00114{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m58_c00114{transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);}
.m19_c00114{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m34_c00114{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.m65_c00114{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m89_c00114{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m5b_c00114{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.mb6_c00114{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);}
.m93_c00114{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m23_c00114{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.m9c_c00114{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.mc_c00114{transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);}
.m49_c00114{transform:matrix(0.467069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467069,0.000000,0.000000,0.250000,0,0);}
.ma7_c00114{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.m79_c00114{transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);}
.m50_c00114{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m80_c00114{transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);}
.m3b_c00114{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m3_c00114{transform:matrix(0.472269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472269,0.000000,0.000000,0.250000,0,0);}
.m6_c00114{transform:matrix(0.476471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476471,0.000000,0.000000,0.250000,0,0);}
.m59_c00114{transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);}
.mb1_c00114{transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);}
.ma5_c00114{transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);}
.m47_c00114{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m6b_c00114{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m61_c00114{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m92_c00114{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m48_c00114{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m55_c00114{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m8e_c00114{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.md_c00114{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mb0_c00114{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.m6c_c00114{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);}
.ma3_c00114{transform:matrix(0.505609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505609,0.000000,0.000000,0.250000,0,0);}
.ma_c00114{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m43_c00114{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m8_c00114{transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);}
.m21_c00114{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m4a_c00114{transform:matrix(0.515770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515770,0.000000,0.000000,0.250000,0,0);}
.mab_c00114{transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);}
.m56_c00114{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mb8_c00114{transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);}
.mb_c00114{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.m6a_c00114{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m39_c00114{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m99_c00114{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m7e_c00114{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.m7d_c00114{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m20_c00114{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m4c_c00114{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m67_c00114{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m2_c00114{transform:matrix(0.541280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541280,0.000000,0.000000,0.250000,0,0);}
.m1a_c00114{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.ma4_c00114{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.mf_c00114{transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);}
.m32_c00114{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m52_c00114{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m1e_c00114{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m70_c00114{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m8f_c00114{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m1d_c00114{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m44_c00114{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m45_c00114{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.mb2_c00114{transform:matrix(0.564904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564904,0.000000,0.000000,0.250000,0,0);}
.m1f_c00114{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m73_c00114{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_c00114{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mac_c00114{transform:matrix(0.572115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572115,0.000000,0.000000,0.250000,0,0);}
.m3a_c00114{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m2f_c00114{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.ma2_c00114{transform:matrix(0.576923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576923,0.000000,0.000000,0.250000,0,0);}
.m8d_c00114{transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);}
.m3e_c00114{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m37_c00114{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m2c_c00114{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m74_c00114{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.mba_c00114{transform:matrix(0.584596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584596,0.000000,0.000000,0.250000,0,0);}
.m3f_c00114{transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);}
.m31_c00114{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m1_c00114{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m71_c00114{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.m72_c00114{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m85_c00114{transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);}
.m76_c00114{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m84_c00114{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m5a_c00114{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m41_c00114{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m83_c00114{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m2e_c00114{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m8a_c00114{transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);}
.m42_c00114{transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);}
.m87_c00114{transform:matrix(0.616162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616162,0.000000,0.000000,0.250000,0,0);}
.ma9_c00114{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m46_c00114{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);}
.m4d_c00114{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m5f_c00114{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m40_c00114{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.mbb_c00114{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.m2d_c00114{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m90_c00114{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m86_c00114{transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);}
.m5e_c00114{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m95_c00114{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m7c_c00114{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m30_c00114{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m75_c00114{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.maa_c00114{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.m9a_c00114{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mb5_c00114{transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);}
.mbe_c00114{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.m38_c00114{transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);}
.m88_c00114{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m3d_c00114{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.mb9_c00114{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m2b_c00114{transform:matrix(0.692647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692647,0.000000,0.000000,0.250000,0,0);}
.ma1_c00114{transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);}
.m8b_c00114{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.mb7_c00114{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m91_c00114{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m78_c00114{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);}
.m96_c00114{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m33_c00114{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mb4_c00114{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.mae_c00114{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.m8c_c00114{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m6e_c00114{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);}
.ma8_c00114{transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);}
.m1b_c00114{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m9f_c00114{transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);}
.m97_c00114{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.ma0_c00114{transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);}
.mb3_c00114{transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);}
.m6d_c00114{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.maf_c00114{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m9e_c00114{transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);}
.mbd_c00114{transform:matrix(0.971366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.971366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.971366,0.000000,0.000000,0.250000,0,0);}
.ma6_c00114{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m12_c00114{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m16_c00114{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00114{vertical-align:0.000000px;}
.v1_c00114{vertical-align:6.000000px;}
.ls1_c00114{letter-spacing:0.000000px;}
.ls0_c00114{letter-spacing:44.811895px;}
.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;}
}
.ws2_c00114{word-spacing:-52.765975px;}
.ws12_c00114{word-spacing:0.000000px;}
.ws1_c00114{word-spacing:8.571671px;}
.ws5_c00114{word-spacing:13.611988px;}
.wse_c00114{word-spacing:15.107856px;}
.ws4_c00114{word-spacing:15.614929px;}
.wsd_c00114{word-spacing:17.262919px;}
.wsb_c00114{word-spacing:18.138913px;}
.ws11_c00114{word-spacing:20.014946px;}
.wsf_c00114{word-spacing:24.591285px;}
.ws7_c00114{word-spacing:30.234255px;}
.ws10_c00114{word-spacing:30.607622px;}
.wsa_c00114{word-spacing:36.857815px;}
.wsc_c00114{word-spacing:38.324009px;}
.ws0_c00114{word-spacing:39.846793px;}
.ws6_c00114{word-spacing:40.994598px;}
.ws8_c00114{word-spacing:43.665186px;}
.ws3_c00114{word-spacing:57.204655px;}
.ws9_c00114{word-spacing:66.810731px;}
._3_c00114{margin-left:-44.811895px;}
._1_c00114{width:14.259528px;}
._2_c00114{width:18.791974px;}
._4_c00114{width:25.216999px;}
._6_c00114{width:27.372062px;}
._5_c00114{width:44.399896px;}
._0_c00114{width:50.990569px;}
.fc0_c00114{color:transparent;}
.fs5_c00114{font-size:3.420000px;}
.fs9_c00114{font-size:11.880000px;}
.fs8_c00114{font-size:13.620000px;}
.fs6_c00114{font-size:18.720000px;}
.fs1_c00114{font-size:20.400000px;}
.fs3_c00114{font-size:25.500000px;}
.fs4_c00114{font-size:28.920000px;}
.fs0_c00114{font-size:32.340000px;}
.fs2_c00114{font-size:35.700000px;}
.fs7_c00114{font-size:39.120000px;}
.y0_c00114{bottom:0.000000px;}
.y3d_c00114{bottom:250.905000px;}
.y3b_c00114{bottom:251.745000px;}
.y41_c00114{bottom:252.180000px;}
.y40_c00114{bottom:253.050000px;}
.y3e_c00114{bottom:253.470000px;}
.y3c_c00114{bottom:253.905000px;}
.y3f_c00114{bottom:254.130000px;}
.y3a_c00114{bottom:254.970000px;}
.y39_c00114{bottom:271.245000px;}
.y34_c00114{bottom:271.680000px;}
.y37_c00114{bottom:272.325000px;}
.y38_c00114{bottom:273.405000px;}
.y36_c00114{bottom:273.825000px;}
.y35_c00114{bottom:274.905000px;}
.y2f_c00114{bottom:290.745000px;}
.y31_c00114{bottom:290.970000px;}
.y33_c00114{bottom:292.470000px;}
.y32_c00114{bottom:292.905000px;}
.y30_c00114{bottom:293.970000px;}
.y2e_c00114{bottom:310.680000px;}
.y2c_c00114{bottom:311.745000px;}
.y2b_c00114{bottom:312.825000px;}
.y2d_c00114{bottom:313.905000px;}
.y2a_c00114{bottom:331.050000px;}
.y26_c00114{bottom:331.245000px;}
.y29_c00114{bottom:332.325000px;}
.y27_c00114{bottom:332.550000px;}
.y28_c00114{bottom:333.405000px;}
.y24_c00114{bottom:351.405000px;}
.y22_c00114{bottom:351.825000px;}
.y23_c00114{bottom:352.470000px;}
.y25_c00114{bottom:352.905000px;}
.y21_c00114{bottom:353.970000px;}
.y1f_c00114{bottom:369.180000px;}
.y1b_c00114{bottom:370.245000px;}
.y1d_c00114{bottom:371.325000px;}
.y20_c00114{bottom:371.550000px;}
.y1c_c00114{bottom:372.405000px;}
.y1e_c00114{bottom:372.630000px;}
.y1a_c00114{bottom:373.470000px;}
.y17_c00114{bottom:389.745000px;}
.y16_c00114{bottom:390.180000px;}
.y19_c00114{bottom:391.050000px;}
.y18_c00114{bottom:391.245000px;}
.y15_c00114{bottom:391.920000px;}
.y14_c00114{bottom:392.325000px;}
.y12_c00114{bottom:412.905000px;}
.y13_c00114{bottom:412.920000px;}
.y11_c00114{bottom:430.245000px;}
.yf_c00114{bottom:431.130000px;}
.ye_c00114{bottom:432.405000px;}
.y10_c00114{bottom:432.420000px;}
.ya_c00114{bottom:449.745000px;}
.yc_c00114{bottom:450.825000px;}
.yd_c00114{bottom:451.905000px;}
.yb_c00114{bottom:451.920000px;}
.y8_c00114{bottom:469.245000px;}
.y9_c00114{bottom:472.920000px;}
.y6_c00114{bottom:492.405000px;}
.y5_c00114{bottom:493.470000px;}
.y7_c00114{bottom:494.550000px;}
.y4_c00114{bottom:515.745000px;}
.y3_c00114{bottom:516.825000px;}
.ydb_c00114{bottom:549.630000px;}
.ydc_c00114{bottom:550.695000px;}
.yde_c00114{bottom:551.130000px;}
.ydd_c00114{bottom:552.195000px;}
.yd8_c00114{bottom:560.550000px;}
.yd5_c00114{bottom:563.130000px;}
.yd6_c00114{bottom:563.775000px;}
.yd4_c00114{bottom:564.195000px;}
.yd9_c00114{bottom:564.630000px;}
.yda_c00114{bottom:565.695000px;}
.yd7_c00114{bottom:565.920000px;}
.ycd_c00114{bottom:576.195000px;}
.yce_c00114{bottom:576.630000px;}
.ycf_c00114{bottom:577.275000px;}
.yd1_c00114{bottom:578.130000px;}
.yd0_c00114{bottom:579.420000px;}
.yd2_c00114{bottom:579.630000px;}
.yd3_c00114{bottom:580.695000px;}
.ycc_c00114{bottom:582.630000px;}
.yc8_c00114{bottom:590.550000px;}
.yc7_c00114{bottom:590.775000px;}
.yc9_c00114{bottom:591.630000px;}
.yc6_c00114{bottom:592.695000px;}
.yca_c00114{bottom:593.130000px;}
.ycb_c00114{bottom:594.195000px;}
.yc4_c00114{bottom:605.775000px;}
.yc3_c00114{bottom:606.195000px;}
.yc5_c00114{bottom:606.630000px;}
.ybf_c00114{bottom:618.630000px;}
.yc0_c00114{bottom:619.695000px;}
.yc1_c00114{bottom:621.195000px;}
.yc2_c00114{bottom:621.630000px;}
.yba_c00114{bottom:633.195000px;}
.yb9_c00114{bottom:633.630000px;}
.ybb_c00114{bottom:634.695000px;}
.ybd_c00114{bottom:635.130000px;}
.ybe_c00114{bottom:636.195000px;}
.ybc_c00114{bottom:636.420000px;}
.yb4_c00114{bottom:646.695000px;}
.yb3_c00114{bottom:647.130000px;}
.yb5_c00114{bottom:648.195000px;}
.yb6_c00114{bottom:648.630000px;}
.yb7_c00114{bottom:649.695000px;}
.yb8_c00114{bottom:649.920000px;}
.yaf_c00114{bottom:660.630000px;}
.yae_c00114{bottom:661.695000px;}
.yb0_c00114{bottom:662.130000px;}
.yb1_c00114{bottom:663.195000px;}
.yb2_c00114{bottom:664.920000px;}
.ya8_c00114{bottom:673.050000px;}
.ya9_c00114{bottom:675.195000px;}
.yab_c00114{bottom:676.695000px;}
.yaa_c00114{bottom:676.920000px;}
.yad_c00114{bottom:678.195000px;}
.yac_c00114{bottom:678.420000px;}
.ya4_c00114{bottom:687.630000px;}
.ya5_c00114{bottom:690.195000px;}
.ya7_c00114{bottom:691.695000px;}
.ya6_c00114{bottom:691.920000px;}
.y9f_c00114{bottom:701.130000px;}
.y9e_c00114{bottom:702.195000px;}
.ya0_c00114{bottom:703.695000px;}
.ya2_c00114{bottom:705.195000px;}
.ya1_c00114{bottom:705.420000px;}
.ya3_c00114{bottom:706.920000px;}
.y96_c00114{bottom:714.630000px;}
.y98_c00114{bottom:715.695000px;}
.y97_c00114{bottom:716.775000px;}
.y99_c00114{bottom:717.195000px;}
.y9b_c00114{bottom:717.630000px;}
.y9a_c00114{bottom:718.695000px;}
.y9c_c00114{bottom:718.920000px;}
.y9d_c00114{bottom:720.420000px;}
.y92_c00114{bottom:729.630000px;}
.y94_c00114{bottom:731.130000px;}
.y93_c00114{bottom:732.195000px;}
.y95_c00114{bottom:733.920000px;}
.y8d_c00114{bottom:741.630000px;}
.y8e_c00114{bottom:743.130000px;}
.y90_c00114{bottom:744.630000px;}
.y8f_c00114{bottom:745.695000px;}
.y91_c00114{bottom:746.130000px;}
.y8c_c00114{bottom:756.630000px;}
.y8a_c00114{bottom:772.695000px;}
.y8b_c00114{bottom:774.195000px;}
.y88_c00114{bottom:786.195000px;}
.y89_c00114{bottom:787.695000px;}
.y86_c00114{bottom:799.695000px;}
.y87_c00114{bottom:801.195000px;}
.y82_c00114{bottom:812.130000px;}
.y81_c00114{bottom:813.195000px;}
.y83_c00114{bottom:813.630000px;}
.y84_c00114{bottom:814.695000px;}
.y85_c00114{bottom:816.195000px;}
.y7d_c00114{bottom:825.630000px;}
.y7c_c00114{bottom:826.695000px;}
.y7e_c00114{bottom:828.195000px;}
.y7f_c00114{bottom:828.630000px;}
.y80_c00114{bottom:829.695000px;}
.y79_c00114{bottom:839.130000px;}
.y78_c00114{bottom:840.630000px;}
.y77_c00114{bottom:841.695000px;}
.y7b_c00114{bottom:842.130000px;}
.y7a_c00114{bottom:843.195000px;}
.y74_c00114{bottom:854.130000px;}
.y73_c00114{bottom:855.195000px;}
.y76_c00114{bottom:855.630000px;}
.y75_c00114{bottom:856.695000px;}
.y70_c00114{bottom:867.630000px;}
.y71_c00114{bottom:870.195000px;}
.y72_c00114{bottom:870.630000px;}
.y6c_c00114{bottom:882.195000px;}
.y6d_c00114{bottom:882.630000px;}
.y6e_c00114{bottom:884.130000px;}
.y6f_c00114{bottom:885.195000px;}
.y68_c00114{bottom:896.130000px;}
.y67_c00114{bottom:897.195000px;}
.y69_c00114{bottom:898.695000px;}
.y6b_c00114{bottom:899.130000px;}
.y6a_c00114{bottom:900.195000px;}
.y63_c00114{bottom:909.630000px;}
.y62_c00114{bottom:910.695000px;}
.y64_c00114{bottom:912.195000px;}
.y65_c00114{bottom:912.630000px;}
.y66_c00114{bottom:913.695000px;}
.y5e_c00114{bottom:923.130000px;}
.y5d_c00114{bottom:924.195000px;}
.y5f_c00114{bottom:925.695000px;}
.y61_c00114{bottom:926.130000px;}
.y60_c00114{bottom:927.195000px;}
.y5b_c00114{bottom:936.630000px;}
.y5a_c00114{bottom:937.050000px;}
.y59_c00114{bottom:937.695000px;}
.y5c_c00114{bottom:940.695000px;}
.y56_c00114{bottom:951.195000px;}
.y58_c00114{bottom:953.130000px;}
.y57_c00114{bottom:954.195000px;}
.y53_c00114{bottom:970.275000px;}
.y55_c00114{bottom:972.630000px;}
.y54_c00114{bottom:973.695000px;}
.y4f_c00114{bottom:983.130000px;}
.y50_c00114{bottom:984.195000px;}
.y51_c00114{bottom:985.695000px;}
.y52_c00114{bottom:987.195000px;}
.y4c_c00114{bottom:997.695000px;}
.y4d_c00114{bottom:999.195000px;}
.y4e_c00114{bottom:1000.695000px;}
.y49_c00114{bottom:1022.325000px;}
.y48_c00114{bottom:1023.405000px;}
.y4b_c00114{bottom:1024.470000px;}
.y4a_c00114{bottom:1025.550000px;}
.y46_c00114{bottom:1036.905000px;}
.y43_c00114{bottom:1037.970000px;}
.y47_c00114{bottom:1038.405000px;}
.y44_c00114{bottom:1039.050000px;}
.y45_c00114{bottom:1040.550000px;}
.y42_c00114{bottom:1064.550000px;}
.y1_c00114{bottom:1098.825000px;}
.y2_c00114{bottom:1099.050000px;}
.h6_c00114{height:4.206533px;}
.ha_c00114{height:14.612168px;}
.h9_c00114{height:16.752334px;}
.hb_c00114{height:22.752334px;}
.h7_c00114{height:23.025234px;}
.h2_c00114{height:25.091602px;}
.h4_c00114{height:31.364502px;}
.h5_c00114{height:35.571035px;}
.h1_c00114{height:39.777568px;}
.h3_c00114{height:43.910303px;}
.h8_c00114{height:48.116836px;}
.h0_c00114{height:1335.000000px;}
.w0_c00114{width:880.500000px;}
.x0_c00114{left:0.000000px;}
.x2b_c00114{left:154.080000px;}
.x7_c00114{left:168.000000px;}
.x10_c00114{left:169.920000px;}
.x21_c00114{left:171.000000px;}
.x2c_c00114{left:172.500000px;}
.x66_c00114{left:184.920000px;}
.x3a_c00114{left:198.000000px;}
.x2d_c00114{left:201.000000px;}
.x7f_c00114{left:204.000000px;}
.x84_c00114{left:205.500000px;}
.x11_c00114{left:210.420000px;}
.x51_c00114{left:214.080000px;}
.xa0_c00114{left:219.420000px;}
.x47_c00114{left:220.920000px;}
.x85_c00114{left:226.080000px;}
.x9d_c00114{left:228.000000px;}
.x8e_c00114{left:231.420000px;}
.x67_c00114{left:233.580000px;}
.x5e_c00114{left:236.580000px;}
.x3b_c00114{left:240.420000px;}
.x8_c00114{left:242.580000px;}
.xa8_c00114{left:247.080000px;}
.x48_c00114{left:248.580000px;}
.x19_c00114{left:252.000000px;}
.x22_c00114{left:253.500000px;}
.x68_c00114{left:255.000000px;}
.xa4_c00114{left:256.500000px;}
.x5f_c00114{left:258.420000px;}
.x15_c00114{left:261.000000px;}
.x1e_c00114{left:262.500000px;}
.xab_c00114{left:264.000000px;}
.x75_c00114{left:265.920000px;}
.x8f_c00114{left:267.000000px;}
.x2e_c00114{left:268.500000px;}
.x12_c00114{left:270.000000px;}
.x23_c00114{left:273.000000px;}
.xb1_c00114{left:274.500000px;}
.xb2_c00114{left:277.500000px;}
.xa1_c00114{left:278.580000px;}
.x16_c00114{left:282.000000px;}
.x1f_c00114{left:283.500000px;}
.x90_c00114{left:286.080000px;}
.x3_c00114{left:288.420000px;}
.x13_c00114{left:291.000000px;}
.xa5_c00114{left:297.000000px;}
.x9_c00114{left:301.500000px;}
.x1a_c00114{left:303.000000px;}
.xb5_c00114{left:306.000000px;}
.x3c_c00114{left:309.000000px;}
.xa6_c00114{left:310.500000px;}
.xb6_c00114{left:313.920000px;}
.xb3_c00114{left:315.420000px;}
.x20_c00114{left:316.500000px;}
.x56_c00114{left:318.000000px;}
.xb4_c00114{left:319.500000px;}
.x3d_c00114{left:321.000000px;}
.x1b_c00114{left:323.580000px;}
.x2f_c00114{left:341.580000px;}
.x69_c00114{left:343.500000px;}
.x17_c00114{left:346.275000px;}
.x1c_c00114{left:351.000000px;}
.x60_c00114{left:352.500000px;}
.xa_c00114{left:357.420000px;}
.x3e_c00114{left:359.580000px;}
.x52_c00114{left:361.080000px;}
.x86_c00114{left:363.000000px;}
.x80_c00114{left:366.000000px;}
.x24_c00114{left:367.500000px;}
.x9e_c00114{left:369.000000px;}
.x30_c00114{left:370.080000px;}
.x92_c00114{left:372.000000px;}
.x57_c00114{left:373.500000px;}
.x14_c00114{left:375.000000px;}
.xac_c00114{left:376.500000px;}
.x18_c00114{left:386.580000px;}
.x31_c00114{left:388.920000px;}
.xb_c00114{left:393.000000px;}
.x6a_c00114{left:396.000000px;}
.x53_c00114{left:397.500000px;}
.x2_c00114{left:399.000000px;}
.x7c_c00114{left:400.080000px;}
.x4_c00114{left:402.000000px;}
.x87_c00114{left:403.500000px;}
.x99_c00114{left:405.000000px;}
.x81_c00114{left:406.500000px;}
.x93_c00114{left:408.000000px;}
.xa9_c00114{left:409.500000px;}
.x74_c00114{left:411.000000px;}
.x76_c00114{left:412.920000px;}
.xb0_c00114{left:414.000000px;}
.x6b_c00114{left:417.000000px;}
.x32_c00114{left:421.920000px;}
.x3f_c00114{left:423.000000px;}
.x25_c00114{left:424.080000px;}
.x77_c00114{left:427.500000px;}
.xc_c00114{left:430.500000px;}
.x58_c00114{left:432.000000px;}
.x49_c00114{left:433.500000px;}
.x8b_c00114{left:438.000000px;}
.x88_c00114{left:439.500000px;}
.xa7_c00114{left:441.420000px;}
.x7d_c00114{left:444.000000px;}
.xad_c00114{left:445.500000px;}
.x6c_c00114{left:450.000000px;}
.x78_c00114{left:454.500000px;}
.x33_c00114{left:456.000000px;}
.x40_c00114{left:462.000000px;}
.xd_c00114{left:465.000000px;}
.x4a_c00114{left:466.500000px;}
.x1d_c00114{left:467.580000px;}
.x26_c00114{left:472.500000px;}
.x59_c00114{left:474.000000px;}
.x34_c00114{left:475.500000px;}
.x7e_c00114{left:477.000000px;}
.xb9_c00114{left:478.920000px;}
.x82_c00114{left:480.000000px;}
.xae_c00114{left:481.500000px;}
.x6d_c00114{left:484.080000px;}
.x41_c00114{left:490.080000px;}
.x5_c00114{left:493.080000px;}
.x5a_c00114{left:496.080000px;}
.x27_c00114{left:499.500000px;}
.x42_c00114{left:509.580000px;}
.x91_c00114{left:511.500000px;}
.x94_c00114{left:513.000000px;}
.x83_c00114{left:514.500000px;}
.x9a_c00114{left:516.000000px;}
.xaf_c00114{left:517.500000px;}
.x79_c00114{left:519.420000px;}
.x6e_c00114{left:522.000000px;}
.x54_c00114{left:530.580000px;}
.x7a_c00114{left:532.500000px;}
.x35_c00114{left:544.500000px;}
.x61_c00114{left:547.080000px;}
.x9b_c00114{left:549.000000px;}
.xe_c00114{left:550.920000px;}
.x95_c00114{left:552.000000px;}
.x6f_c00114{left:553.500000px;}
.xb7_c00114{left:555.000000px;}
.x4b_c00114{left:556.080000px;}
.xa2_c00114{left:558.000000px;}
.x55_c00114{left:561.000000px;}
.x6_c00114{left:562.275000px;}
.x62_c00114{left:568.500000px;}
.x28_c00114{left:571.500000px;}
.x70_c00114{left:574.920000px;}
.x8c_c00114{left:583.500000px;}
.x63_c00114{left:585.420000px;}
.xf_c00114{left:586.920000px;}
.x96_c00114{left:588.000000px;}
.xaa_c00114{left:589.500000px;}
.x43_c00114{left:593.580000px;}
.x5b_c00114{left:597.000000px;}
.x29_c00114{left:600.000000px;}
.x4c_c00114{left:602.355000px;}
.x44_c00114{left:609.000000px;}
.x64_c00114{left:612.000000px;}
.x36_c00114{left:616.080000px;}
.x7b_c00114{left:618.000000px;}
.x8d_c00114{left:619.500000px;}
.x98_c00114{left:621.000000px;}
.x97_c00114{left:624.000000px;}
.x9f_c00114{left:625.500000px;}
.x8a_c00114{left:627.000000px;}
.x4d_c00114{left:629.580000px;}
.x37_c00114{left:633.000000px;}
.x38_c00114{left:648.000000px;}
.x71_c00114{left:649.500000px;}
.x45_c00114{left:652.500000px;}
.x89_c00114{left:655.500000px;}
.x4e_c00114{left:656.580000px;}
.xba_c00114{left:658.920000px;}
.x2a_c00114{left:660.420000px;}
.x9c_c00114{left:661.500000px;}
.xb8_c00114{left:663.000000px;}
.x65_c00114{left:664.500000px;}
.xa3_c00114{left:666.000000px;}
.x5c_c00114{left:671.580000px;}
.x4f_c00114{left:676.080000px;}
.x39_c00114{left:683.580000px;}
.x72_c00114{left:693.000000px;}
.x50_c00114{left:695.145000px;}
.x5d_c00114{left:703.500000px;}
.x1_c00114{left:712.500000px;}
.x73_c00114{left:714.000000px;}
.x46_c00114{left:719.580000px;}
@media print{
.v0_c00114{vertical-align:0.000000pt;}
.v1_c00114{vertical-align:5.333333pt;}
.ls1_c00114{letter-spacing:0.000000pt;}
.ls0_c00114{letter-spacing:39.832796pt;}
.ws2_c00114{word-spacing:-46.903089pt;}
.ws12_c00114{word-spacing:0.000000pt;}
.ws1_c00114{word-spacing:7.619263pt;}
.ws5_c00114{word-spacing:12.099545pt;}
.wse_c00114{word-spacing:13.429205pt;}
.ws4_c00114{word-spacing:13.879937pt;}
.wsd_c00114{word-spacing:15.344817pt;}
.wsb_c00114{word-spacing:16.123479pt;}
.ws11_c00114{word-spacing:17.791064pt;}
.wsf_c00114{word-spacing:21.858920pt;}
.ws7_c00114{word-spacing:26.874893pt;}
.ws10_c00114{word-spacing:27.206775pt;}
.wsa_c00114{word-spacing:32.762503pt;}
.wsc_c00114{word-spacing:34.065786pt;}
.ws0_c00114{word-spacing:35.419372pt;}
.ws6_c00114{word-spacing:36.439642pt;}
.ws8_c00114{word-spacing:38.813499pt;}
.ws3_c00114{word-spacing:50.848582pt;}
.ws9_c00114{word-spacing:59.387317pt;}
._3_c00114{margin-left:-39.832796pt;}
._1_c00114{width:12.675136pt;}
._2_c00114{width:16.703977pt;}
._4_c00114{width:22.415110pt;}
._6_c00114{width:24.330722pt;}
._5_c00114{width:39.466574pt;}
._0_c00114{width:45.324950pt;}
.fs5_c00114{font-size:3.040000pt;}
.fs9_c00114{font-size:10.560000pt;}
.fs8_c00114{font-size:12.106667pt;}
.fs6_c00114{font-size:16.640000pt;}
.fs1_c00114{font-size:18.133333pt;}
.fs3_c00114{font-size:22.666667pt;}
.fs4_c00114{font-size:25.706667pt;}
.fs0_c00114{font-size:28.746667pt;}
.fs2_c00114{font-size:31.733333pt;}
.fs7_c00114{font-size:34.773333pt;}
.y0_c00114{bottom:0.000000pt;}
.y3d_c00114{bottom:223.026667pt;}
.y3b_c00114{bottom:223.773333pt;}
.y41_c00114{bottom:224.160000pt;}
.y40_c00114{bottom:224.933333pt;}
.y3e_c00114{bottom:225.306667pt;}
.y3c_c00114{bottom:225.693333pt;}
.y3f_c00114{bottom:225.893333pt;}
.y3a_c00114{bottom:226.640000pt;}
.y39_c00114{bottom:241.106667pt;}
.y34_c00114{bottom:241.493333pt;}
.y37_c00114{bottom:242.066667pt;}
.y38_c00114{bottom:243.026667pt;}
.y36_c00114{bottom:243.400000pt;}
.y35_c00114{bottom:244.360000pt;}
.y2f_c00114{bottom:258.440000pt;}
.y31_c00114{bottom:258.640000pt;}
.y33_c00114{bottom:259.973333pt;}
.y32_c00114{bottom:260.360000pt;}
.y30_c00114{bottom:261.306667pt;}
.y2e_c00114{bottom:276.160000pt;}
.y2c_c00114{bottom:277.106667pt;}
.y2b_c00114{bottom:278.066667pt;}
.y2d_c00114{bottom:279.026667pt;}
.y2a_c00114{bottom:294.266667pt;}
.y26_c00114{bottom:294.440000pt;}
.y29_c00114{bottom:295.400000pt;}
.y27_c00114{bottom:295.600000pt;}
.y28_c00114{bottom:296.360000pt;}
.y24_c00114{bottom:312.360000pt;}
.y22_c00114{bottom:312.733333pt;}
.y23_c00114{bottom:313.306667pt;}
.y25_c00114{bottom:313.693333pt;}
.y21_c00114{bottom:314.640000pt;}
.y1f_c00114{bottom:328.160000pt;}
.y1b_c00114{bottom:329.106667pt;}
.y1d_c00114{bottom:330.066667pt;}
.y20_c00114{bottom:330.266667pt;}
.y1c_c00114{bottom:331.026667pt;}
.y1e_c00114{bottom:331.226667pt;}
.y1a_c00114{bottom:331.973333pt;}
.y17_c00114{bottom:346.440000pt;}
.y16_c00114{bottom:346.826667pt;}
.y19_c00114{bottom:347.600000pt;}
.y18_c00114{bottom:347.773333pt;}
.y15_c00114{bottom:348.373333pt;}
.y14_c00114{bottom:348.733333pt;}
.y12_c00114{bottom:367.026667pt;}
.y13_c00114{bottom:367.040000pt;}
.y11_c00114{bottom:382.440000pt;}
.yf_c00114{bottom:383.226667pt;}
.ye_c00114{bottom:384.360000pt;}
.y10_c00114{bottom:384.373333pt;}
.ya_c00114{bottom:399.773333pt;}
.yc_c00114{bottom:400.733333pt;}
.yd_c00114{bottom:401.693333pt;}
.yb_c00114{bottom:401.706667pt;}
.y8_c00114{bottom:417.106667pt;}
.y9_c00114{bottom:420.373333pt;}
.y6_c00114{bottom:437.693333pt;}
.y5_c00114{bottom:438.640000pt;}
.y7_c00114{bottom:439.600000pt;}
.y4_c00114{bottom:458.440000pt;}
.y3_c00114{bottom:459.400000pt;}
.ydb_c00114{bottom:488.560000pt;}
.ydc_c00114{bottom:489.506667pt;}
.yde_c00114{bottom:489.893333pt;}
.ydd_c00114{bottom:490.840000pt;}
.yd8_c00114{bottom:498.266667pt;}
.yd5_c00114{bottom:500.560000pt;}
.yd6_c00114{bottom:501.133333pt;}
.yd4_c00114{bottom:501.506667pt;}
.yd9_c00114{bottom:501.893333pt;}
.yda_c00114{bottom:502.840000pt;}
.yd7_c00114{bottom:503.040000pt;}
.ycd_c00114{bottom:512.173333pt;}
.yce_c00114{bottom:512.560000pt;}
.ycf_c00114{bottom:513.133333pt;}
.yd1_c00114{bottom:513.893333pt;}
.yd0_c00114{bottom:515.040000pt;}
.yd2_c00114{bottom:515.226667pt;}
.yd3_c00114{bottom:516.173333pt;}
.ycc_c00114{bottom:517.893333pt;}
.yc8_c00114{bottom:524.933333pt;}
.yc7_c00114{bottom:525.133333pt;}
.yc9_c00114{bottom:525.893333pt;}
.yc6_c00114{bottom:526.840000pt;}
.yca_c00114{bottom:527.226667pt;}
.ycb_c00114{bottom:528.173333pt;}
.yc4_c00114{bottom:538.466667pt;}
.yc3_c00114{bottom:538.840000pt;}
.yc5_c00114{bottom:539.226667pt;}
.ybf_c00114{bottom:549.893333pt;}
.yc0_c00114{bottom:550.840000pt;}
.yc1_c00114{bottom:552.173333pt;}
.yc2_c00114{bottom:552.560000pt;}
.yba_c00114{bottom:562.840000pt;}
.yb9_c00114{bottom:563.226667pt;}
.ybb_c00114{bottom:564.173333pt;}
.ybd_c00114{bottom:564.560000pt;}
.ybe_c00114{bottom:565.506667pt;}
.ybc_c00114{bottom:565.706667pt;}
.yb4_c00114{bottom:574.840000pt;}
.yb3_c00114{bottom:575.226667pt;}
.yb5_c00114{bottom:576.173333pt;}
.yb6_c00114{bottom:576.560000pt;}
.yb7_c00114{bottom:577.506667pt;}
.yb8_c00114{bottom:577.706667pt;}
.yaf_c00114{bottom:587.226667pt;}
.yae_c00114{bottom:588.173333pt;}
.yb0_c00114{bottom:588.560000pt;}
.yb1_c00114{bottom:589.506667pt;}
.yb2_c00114{bottom:591.040000pt;}
.ya8_c00114{bottom:598.266667pt;}
.ya9_c00114{bottom:600.173333pt;}
.yab_c00114{bottom:601.506667pt;}
.yaa_c00114{bottom:601.706667pt;}
.yad_c00114{bottom:602.840000pt;}
.yac_c00114{bottom:603.040000pt;}
.ya4_c00114{bottom:611.226667pt;}
.ya5_c00114{bottom:613.506667pt;}
.ya7_c00114{bottom:614.840000pt;}
.ya6_c00114{bottom:615.040000pt;}
.y9f_c00114{bottom:623.226667pt;}
.y9e_c00114{bottom:624.173333pt;}
.ya0_c00114{bottom:625.506667pt;}
.ya2_c00114{bottom:626.840000pt;}
.ya1_c00114{bottom:627.040000pt;}
.ya3_c00114{bottom:628.373333pt;}
.y96_c00114{bottom:635.226667pt;}
.y98_c00114{bottom:636.173333pt;}
.y97_c00114{bottom:637.133333pt;}
.y99_c00114{bottom:637.506667pt;}
.y9b_c00114{bottom:637.893333pt;}
.y9a_c00114{bottom:638.840000pt;}
.y9c_c00114{bottom:639.040000pt;}
.y9d_c00114{bottom:640.373333pt;}
.y92_c00114{bottom:648.560000pt;}
.y94_c00114{bottom:649.893333pt;}
.y93_c00114{bottom:650.840000pt;}
.y95_c00114{bottom:652.373333pt;}
.y8d_c00114{bottom:659.226667pt;}
.y8e_c00114{bottom:660.560000pt;}
.y90_c00114{bottom:661.893333pt;}
.y8f_c00114{bottom:662.840000pt;}
.y91_c00114{bottom:663.226667pt;}
.y8c_c00114{bottom:672.560000pt;}
.y8a_c00114{bottom:686.840000pt;}
.y8b_c00114{bottom:688.173333pt;}
.y88_c00114{bottom:698.840000pt;}
.y89_c00114{bottom:700.173333pt;}
.y86_c00114{bottom:710.840000pt;}
.y87_c00114{bottom:712.173333pt;}
.y82_c00114{bottom:721.893333pt;}
.y81_c00114{bottom:722.840000pt;}
.y83_c00114{bottom:723.226667pt;}
.y84_c00114{bottom:724.173333pt;}
.y85_c00114{bottom:725.506667pt;}
.y7d_c00114{bottom:733.893333pt;}
.y7c_c00114{bottom:734.840000pt;}
.y7e_c00114{bottom:736.173333pt;}
.y7f_c00114{bottom:736.560000pt;}
.y80_c00114{bottom:737.506667pt;}
.y79_c00114{bottom:745.893333pt;}
.y78_c00114{bottom:747.226667pt;}
.y77_c00114{bottom:748.173333pt;}
.y7b_c00114{bottom:748.560000pt;}
.y7a_c00114{bottom:749.506667pt;}
.y74_c00114{bottom:759.226667pt;}
.y73_c00114{bottom:760.173333pt;}
.y76_c00114{bottom:760.560000pt;}
.y75_c00114{bottom:761.506667pt;}
.y70_c00114{bottom:771.226667pt;}
.y71_c00114{bottom:773.506667pt;}
.y72_c00114{bottom:773.893333pt;}
.y6c_c00114{bottom:784.173333pt;}
.y6d_c00114{bottom:784.560000pt;}
.y6e_c00114{bottom:785.893333pt;}
.y6f_c00114{bottom:786.840000pt;}
.y68_c00114{bottom:796.560000pt;}
.y67_c00114{bottom:797.506667pt;}
.y69_c00114{bottom:798.840000pt;}
.y6b_c00114{bottom:799.226667pt;}
.y6a_c00114{bottom:800.173333pt;}
.y63_c00114{bottom:808.560000pt;}
.y62_c00114{bottom:809.506667pt;}
.y64_c00114{bottom:810.840000pt;}
.y65_c00114{bottom:811.226667pt;}
.y66_c00114{bottom:812.173333pt;}
.y5e_c00114{bottom:820.560000pt;}
.y5d_c00114{bottom:821.506667pt;}
.y5f_c00114{bottom:822.840000pt;}
.y61_c00114{bottom:823.226667pt;}
.y60_c00114{bottom:824.173333pt;}
.y5b_c00114{bottom:832.560000pt;}
.y5a_c00114{bottom:832.933333pt;}
.y59_c00114{bottom:833.506667pt;}
.y5c_c00114{bottom:836.173333pt;}
.y56_c00114{bottom:845.506667pt;}
.y58_c00114{bottom:847.226667pt;}
.y57_c00114{bottom:848.173333pt;}
.y53_c00114{bottom:862.466667pt;}
.y55_c00114{bottom:864.560000pt;}
.y54_c00114{bottom:865.506667pt;}
.y4f_c00114{bottom:873.893333pt;}
.y50_c00114{bottom:874.840000pt;}
.y51_c00114{bottom:876.173333pt;}
.y52_c00114{bottom:877.506667pt;}
.y4c_c00114{bottom:886.840000pt;}
.y4d_c00114{bottom:888.173333pt;}
.y4e_c00114{bottom:889.506667pt;}
.y49_c00114{bottom:908.733333pt;}
.y48_c00114{bottom:909.693333pt;}
.y4b_c00114{bottom:910.640000pt;}
.y4a_c00114{bottom:911.600000pt;}
.y46_c00114{bottom:921.693333pt;}
.y43_c00114{bottom:922.640000pt;}
.y47_c00114{bottom:923.026667pt;}
.y44_c00114{bottom:923.600000pt;}
.y45_c00114{bottom:924.933333pt;}
.y42_c00114{bottom:946.266667pt;}
.y1_c00114{bottom:976.733333pt;}
.y2_c00114{bottom:976.933333pt;}
.h6_c00114{height:3.739141pt;}
.ha_c00114{height:12.988594pt;}
.h9_c00114{height:14.890964pt;}
.hb_c00114{height:20.224297pt;}
.h7_c00114{height:20.466875pt;}
.h2_c00114{height:22.303646pt;}
.h4_c00114{height:27.879557pt;}
.h5_c00114{height:31.618698pt;}
.h1_c00114{height:35.357839pt;}
.h3_c00114{height:39.031380pt;}
.h8_c00114{height:42.770521pt;}
.h0_c00114{height:1186.666667pt;}
.w0_c00114{width:782.666667pt;}
.x0_c00114{left:0.000000pt;}
.x2b_c00114{left:136.960000pt;}
.x7_c00114{left:149.333333pt;}
.x10_c00114{left:151.040000pt;}
.x21_c00114{left:152.000000pt;}
.x2c_c00114{left:153.333333pt;}
.x66_c00114{left:164.373333pt;}
.x3a_c00114{left:176.000000pt;}
.x2d_c00114{left:178.666667pt;}
.x7f_c00114{left:181.333333pt;}
.x84_c00114{left:182.666667pt;}
.x11_c00114{left:187.040000pt;}
.x51_c00114{left:190.293333pt;}
.xa0_c00114{left:195.040000pt;}
.x47_c00114{left:196.373333pt;}
.x85_c00114{left:200.960000pt;}
.x9d_c00114{left:202.666667pt;}
.x8e_c00114{left:205.706667pt;}
.x67_c00114{left:207.626667pt;}
.x5e_c00114{left:210.293333pt;}
.x3b_c00114{left:213.706667pt;}
.x8_c00114{left:215.626667pt;}
.xa8_c00114{left:219.626667pt;}
.x48_c00114{left:220.960000pt;}
.x19_c00114{left:224.000000pt;}
.x22_c00114{left:225.333333pt;}
.x68_c00114{left:226.666667pt;}
.xa4_c00114{left:228.000000pt;}
.x5f_c00114{left:229.706667pt;}
.x15_c00114{left:232.000000pt;}
.x1e_c00114{left:233.333333pt;}
.xab_c00114{left:234.666667pt;}
.x75_c00114{left:236.373333pt;}
.x8f_c00114{left:237.333333pt;}
.x2e_c00114{left:238.666667pt;}
.x12_c00114{left:240.000000pt;}
.x23_c00114{left:242.666667pt;}
.xb1_c00114{left:244.000000pt;}
.xb2_c00114{left:246.666667pt;}
.xa1_c00114{left:247.626667pt;}
.x16_c00114{left:250.666667pt;}
.x1f_c00114{left:252.000000pt;}
.x90_c00114{left:254.293333pt;}
.x3_c00114{left:256.373333pt;}
.x13_c00114{left:258.666667pt;}
.xa5_c00114{left:264.000000pt;}
.x9_c00114{left:268.000000pt;}
.x1a_c00114{left:269.333333pt;}
.xb5_c00114{left:272.000000pt;}
.x3c_c00114{left:274.666667pt;}
.xa6_c00114{left:276.000000pt;}
.xb6_c00114{left:279.040000pt;}
.xb3_c00114{left:280.373333pt;}
.x20_c00114{left:281.333333pt;}
.x56_c00114{left:282.666667pt;}
.xb4_c00114{left:284.000000pt;}
.x3d_c00114{left:285.333333pt;}
.x1b_c00114{left:287.626667pt;}
.x2f_c00114{left:303.626667pt;}
.x69_c00114{left:305.333333pt;}
.x17_c00114{left:307.800000pt;}
.x1c_c00114{left:312.000000pt;}
.x60_c00114{left:313.333333pt;}
.xa_c00114{left:317.706667pt;}
.x3e_c00114{left:319.626667pt;}
.x52_c00114{left:320.960000pt;}
.x86_c00114{left:322.666667pt;}
.x80_c00114{left:325.333333pt;}
.x24_c00114{left:326.666667pt;}
.x9e_c00114{left:328.000000pt;}
.x30_c00114{left:328.960000pt;}
.x92_c00114{left:330.666667pt;}
.x57_c00114{left:332.000000pt;}
.x14_c00114{left:333.333333pt;}
.xac_c00114{left:334.666667pt;}
.x18_c00114{left:343.626667pt;}
.x31_c00114{left:345.706667pt;}
.xb_c00114{left:349.333333pt;}
.x6a_c00114{left:352.000000pt;}
.x53_c00114{left:353.333333pt;}
.x2_c00114{left:354.666667pt;}
.x7c_c00114{left:355.626667pt;}
.x4_c00114{left:357.333333pt;}
.x87_c00114{left:358.666667pt;}
.x99_c00114{left:360.000000pt;}
.x81_c00114{left:361.333333pt;}
.x93_c00114{left:362.666667pt;}
.xa9_c00114{left:364.000000pt;}
.x74_c00114{left:365.333333pt;}
.x76_c00114{left:367.040000pt;}
.xb0_c00114{left:368.000000pt;}
.x6b_c00114{left:370.666667pt;}
.x32_c00114{left:375.040000pt;}
.x3f_c00114{left:376.000000pt;}
.x25_c00114{left:376.960000pt;}
.x77_c00114{left:380.000000pt;}
.xc_c00114{left:382.666667pt;}
.x58_c00114{left:384.000000pt;}
.x49_c00114{left:385.333333pt;}
.x8b_c00114{left:389.333333pt;}
.x88_c00114{left:390.666667pt;}
.xa7_c00114{left:392.373333pt;}
.x7d_c00114{left:394.666667pt;}
.xad_c00114{left:396.000000pt;}
.x6c_c00114{left:400.000000pt;}
.x78_c00114{left:404.000000pt;}
.x33_c00114{left:405.333333pt;}
.x40_c00114{left:410.666667pt;}
.xd_c00114{left:413.333333pt;}
.x4a_c00114{left:414.666667pt;}
.x1d_c00114{left:415.626667pt;}
.x26_c00114{left:420.000000pt;}
.x59_c00114{left:421.333333pt;}
.x34_c00114{left:422.666667pt;}
.x7e_c00114{left:424.000000pt;}
.xb9_c00114{left:425.706667pt;}
.x82_c00114{left:426.666667pt;}
.xae_c00114{left:428.000000pt;}
.x6d_c00114{left:430.293333pt;}
.x41_c00114{left:435.626667pt;}
.x5_c00114{left:438.293333pt;}
.x5a_c00114{left:440.960000pt;}
.x27_c00114{left:444.000000pt;}
.x42_c00114{left:452.960000pt;}
.x91_c00114{left:454.666667pt;}
.x94_c00114{left:456.000000pt;}
.x83_c00114{left:457.333333pt;}
.x9a_c00114{left:458.666667pt;}
.xaf_c00114{left:460.000000pt;}
.x79_c00114{left:461.706667pt;}
.x6e_c00114{left:464.000000pt;}
.x54_c00114{left:471.626667pt;}
.x7a_c00114{left:473.333333pt;}
.x35_c00114{left:484.000000pt;}
.x61_c00114{left:486.293333pt;}
.x9b_c00114{left:488.000000pt;}
.xe_c00114{left:489.706667pt;}
.x95_c00114{left:490.666667pt;}
.x6f_c00114{left:492.000000pt;}
.xb7_c00114{left:493.333333pt;}
.x4b_c00114{left:494.293333pt;}
.xa2_c00114{left:496.000000pt;}
.x55_c00114{left:498.666667pt;}
.x6_c00114{left:499.800000pt;}
.x62_c00114{left:505.333333pt;}
.x28_c00114{left:508.000000pt;}
.x70_c00114{left:511.040000pt;}
.x8c_c00114{left:518.666667pt;}
.x63_c00114{left:520.373333pt;}
.xf_c00114{left:521.706667pt;}
.x96_c00114{left:522.666667pt;}
.xaa_c00114{left:524.000000pt;}
.x43_c00114{left:527.626667pt;}
.x5b_c00114{left:530.666667pt;}
.x29_c00114{left:533.333333pt;}
.x4c_c00114{left:535.426667pt;}
.x44_c00114{left:541.333333pt;}
.x64_c00114{left:544.000000pt;}
.x36_c00114{left:547.626667pt;}
.x7b_c00114{left:549.333333pt;}
.x8d_c00114{left:550.666667pt;}
.x98_c00114{left:552.000000pt;}
.x97_c00114{left:554.666667pt;}
.x9f_c00114{left:556.000000pt;}
.x8a_c00114{left:557.333333pt;}
.x4d_c00114{left:559.626667pt;}
.x37_c00114{left:562.666667pt;}
.x38_c00114{left:576.000000pt;}
.x71_c00114{left:577.333333pt;}
.x45_c00114{left:580.000000pt;}
.x89_c00114{left:582.666667pt;}
.x4e_c00114{left:583.626667pt;}
.xba_c00114{left:585.706667pt;}
.x2a_c00114{left:587.040000pt;}
.x9c_c00114{left:588.000000pt;}
.xb8_c00114{left:589.333333pt;}
.x65_c00114{left:590.666667pt;}
.xa3_c00114{left:592.000000pt;}
.x5c_c00114{left:596.960000pt;}
.x4f_c00114{left:600.960000pt;}
.x39_c00114{left:607.626667pt;}
.x72_c00114{left:616.000000pt;}
.x50_c00114{left:617.906667pt;}
.x5d_c00114{left:625.333333pt;}
.x1_c00114{left:633.333333pt;}
.x73_c00114{left:634.666667pt;}
.x46_c00114{left:639.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_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_4969fa8779eca8537682760c.woff2')format("woff");}.ff1_c00115{font-family:ff1_c00115;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m95_c00115{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m9_c00115{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m6a_c00115{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);}
.mf0_c00115{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m7d_c00115{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m65_c00115{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m41_c00115{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.m3c_c00115{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m8c_c00115{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m7e_c00115{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m4e_c00115{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.mb0_c00115{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.mc7_c00115{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m6d_c00115{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m3f_c00115{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.me4_c00115{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m7_c00115{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m2_c00115{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m31_c00115{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m75_c00115{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.med_c00115{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.me5_c00115{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m46_c00115{transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);}
.mf9_c00115{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m98_c00115{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m69_c00115{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m3b_c00115{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.mb4_c00115{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.mfc_c00115{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m4f_c00115{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m47_c00115{transform:matrix(0.398423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398423,0.000000,0.000000,0.250000,0,0);}
.m43_c00115{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.ma3_c00115{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_c00115{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m82_c00115{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m6e_c00115{transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);}
.m24_c00115{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m27_c00115{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mc5_c00115{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.ma0_c00115{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m66_c00115{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m5d_c00115{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m100_c00115{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m64_c00115{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.me3_c00115{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m92_c00115{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.mb9_c00115{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m29_c00115{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mf5_c00115{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m50_c00115{transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);}
.mdc_c00115{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m13_c00115{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mea_c00115{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m36_c00115{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.me1_c00115{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m76_c00115{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m1d_c00115{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.me8_c00115{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m28_c00115{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m45_c00115{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m5f_c00115{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mc8_c00115{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.md5_c00115{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m3d_c00115{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m61_c00115{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.md6_c00115{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.me0_c00115{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m40_c00115{transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);}
.m91_c00115{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m20_c00115{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.md8_c00115{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m97_c00115{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m8a_c00115{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.ma7_c00115{transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);}
.m58_c00115{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m52_c00115{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mba_c00115{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.mf1_c00115{transform:matrix(0.436733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436733,0.000000,0.000000,0.250000,0,0);}
.md2_c00115{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mb6_c00115{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.mff_c00115{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.mf3_c00115{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m11_c00115{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.m49_c00115{transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);}
.mcb_c00115{transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);}
.m51_c00115{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m89_c00115{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m23_c00115{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m99_c00115{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.mb7_c00115{transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);}
.me7_c00115{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m68_c00115{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m7b_c00115{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.mc1_c00115{transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);}
.md4_c00115{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m85_c00115{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m4c_c00115{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.md3_c00115{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.md9_c00115{transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);}
.m14_c00115{transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);}
.m101_c00115{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m48_c00115{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.md1_c00115{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m4d_c00115{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.mdd_c00115{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m4_c00115{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m5e_c00115{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m74_c00115{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m0_c00115{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mf2_c00115{transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);}
.m102_c00115{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.mf6_c00115{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m1f_c00115{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m39_c00115{transform:matrix(0.490756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490756,0.000000,0.000000,0.250000,0,0);}
.mc6_c00115{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m9f_c00115{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m4a_c00115{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m5a_c00115{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.meb_c00115{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m3a_c00115{transform:matrix(0.498319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.498319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.498319,0.000000,0.000000,0.250000,0,0);}
.mf4_c00115{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m30_c00115{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);}
.me2_c00115{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mb2_c00115{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m7c_c00115{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mb8_c00115{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m73_c00115{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m8e_c00115{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mec_c00115{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.ma1_c00115{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m33_c00115{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m94_c00115{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m54_c00115{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mf7_c00115{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mdf_c00115{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);}
.m2d_c00115{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mc4_c00115{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m9e_c00115{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m7a_c00115{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mfd_c00115{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mc9_c00115{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);}
.mbf_c00115{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m5c_c00115{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mbb_c00115{transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);}
.mab_c00115{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m2b_c00115{transform:matrix(0.528293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528293,0.000000,0.000000,0.250000,0,0);}
.mf8_c00115{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.me9_c00115{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m62_c00115{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.me_c00115{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.ma5_c00115{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.m9d_c00115{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m79_c00115{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m2c_c00115{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m8f_c00115{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m5b_c00115{transform:matrix(0.535714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535714,0.000000,0.000000,0.250000,0,0);}
.m2f_c00115{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.ma2_c00115{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m26_c00115{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m71_c00115{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.md0_c00115{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m93_c00115{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.mcd_c00115{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m9b_c00115{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m77_c00115{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m6b_c00115{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m72_c00115{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m90_c00115{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m63_c00115{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.mad_c00115{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m3e_c00115{transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);}
.m7f_c00115{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m57_c00115{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m87_c00115{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mc2_c00115{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m83_c00115{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m80_c00115{transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);}
.mbc_c00115{transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);}
.m86_c00115{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mee_c00115{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m9c_c00115{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mbd_c00115{transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);}
.m56_c00115{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m35_c00115{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m1e_c00115{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mfb_c00115{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m84_c00115{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mc_c00115{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.ma8_c00115{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m104_c00115{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mfa_c00115{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m70_c00115{transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);}
.m6f_c00115{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m21_c00115{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mc3_c00115{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m88_c00115{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m12_c00115{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.md_c00115{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m8b_c00115{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m59_c00115{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m2a_c00115{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mb_c00115{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.m78_c00115{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mb1_c00115{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.maf_c00115{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);}
.mfe_c00115{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.ma9_c00115{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.mc0_c00115{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mb3_c00115{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m16_c00115{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.mb5_c00115{transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);}
.mca_c00115{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m81_c00115{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m96_c00115{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_c00115{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m6_c00115{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m15_c00115{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m22_c00115{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m34_c00115{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m103_c00115{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m9a_c00115{transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);}
.m8d_c00115{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m4b_c00115{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_c00115{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);}
.m17_c00115{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m42_c00115{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.mae_c00115{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.ma6_c00115{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m18_c00115{transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);}
.md7_c00115{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m1c_c00115{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m1a_c00115{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.mce_c00115{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.mbe_c00115{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.maa_c00115{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.mcf_c00115{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.mcc_c00115{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mda_c00115{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m5_c00115{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mf_c00115{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mdb_c00115{transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);}
.mde_c00115{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m3_c00115{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m10_c00115{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m53_c00115{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mac_c00115{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);}
.m19_c00115{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.ma_c00115{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m6c_c00115{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m38_c00115{transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);}
.m60_c00115{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m32_c00115{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m8_c00115{transform:matrix(0.772059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772059,0.000000,0.000000,0.250000,0,0);}
.m55_c00115{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m37_c00115{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mef_c00115{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m25_c00115{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.ma4_c00115{transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);}
.m44_c00115{transform:matrix(0.957048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.957048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.957048,0.000000,0.000000,0.250000,0,0);}
.m2e_c00115{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m67_c00115{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00115{vertical-align:0.000000px;}
.v1_c00115{vertical-align:7.680000px;}
.ls1_c00115{letter-spacing:0.000000px;}
.ls0_c00115{letter-spacing:11.817600px;}
.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;}
}
.ws2_c00115{word-spacing:-16.889280px;}
.ws0_c00115{word-spacing:-1.755360px;}
.ws3_c00115{word-spacing:0.000000px;}
.ws1_c00115{word-spacing:0.779342px;}
._0_c00115{width:5.881200px;}
.fc0_c00115{color:transparent;}
.fs6_c00115{font-size:3.420000px;}
.fs7_c00115{font-size:13.620000px;}
.fs4_c00115{font-size:18.720000px;}
.fs1_c00115{font-size:20.400000px;}
.fs3_c00115{font-size:25.500000px;}
.fs0_c00115{font-size:28.920000px;}
.fs5_c00115{font-size:32.340000px;}
.fs2_c00115{font-size:35.700000px;}
.fs8_c00115{font-size:39.120000px;}
.y0_c00115{bottom:0.000000px;}
.yc3_c00115{bottom:249.825000px;}
.yc5_c00115{bottom:250.245000px;}
.yc7_c00115{bottom:251.550000px;}
.yc9_c00115{bottom:251.745000px;}
.yc6_c00115{bottom:251.970000px;}
.yc4_c00115{bottom:252.405000px;}
.yc8_c00115{bottom:252.630000px;}
.yc1_c00115{bottom:269.745000px;}
.yc2_c00115{bottom:271.245000px;}
.ybf_c00115{bottom:271.905000px;}
.ybe_c00115{bottom:272.970000px;}
.yc0_c00115{bottom:273.405000px;}
.ybd_c00115{bottom:290.745000px;}
.yba_c00115{bottom:291.405000px;}
.ybb_c00115{bottom:291.630000px;}
.ybc_c00115{bottom:292.905000px;}
.yb6_c00115{bottom:310.245000px;}
.yb5_c00115{bottom:310.905000px;}
.yb7_c00115{bottom:312.405000px;}
.yb8_c00115{bottom:312.630000px;}
.yb9_c00115{bottom:313.905000px;}
.yae_c00115{bottom:328.680000px;}
.yb4_c00115{bottom:329.745000px;}
.yb3_c00115{bottom:329.970000px;}
.yb2_c00115{bottom:330.630000px;}
.yb1_c00115{bottom:330.825000px;}
.yb0_c00115{bottom:331.470000px;}
.yaf_c00115{bottom:331.905000px;}
.yaa_c00115{bottom:349.245000px;}
.yad_c00115{bottom:350.325000px;}
.ya9_c00115{bottom:350.745000px;}
.ya7_c00115{bottom:351.405000px;}
.ya8_c00115{bottom:351.420000px;}
.yac_c00115{bottom:351.630000px;}
.yab_c00115{bottom:352.470000px;}
.ya1_c00115{bottom:368.745000px;}
.ya4_c00115{bottom:369.825000px;}
.ya0_c00115{bottom:370.470000px;}
.ya6_c00115{bottom:370.905000px;}
.ya2_c00115{bottom:371.130000px;}
.ya3_c00115{bottom:371.970000px;}
.ya5_c00115{bottom:372.405000px;}
.y9f_c00115{bottom:387.405000px;}
.y9c_c00115{bottom:388.245000px;}
.y9e_c00115{bottom:389.325000px;}
.y9d_c00115{bottom:390.405000px;}
.y97_c00115{bottom:409.245000px;}
.y9b_c00115{bottom:409.905000px;}
.y9a_c00115{bottom:410.130000px;}
.y99_c00115{bottom:411.405000px;}
.y98_c00115{bottom:411.420000px;}
.y94_c00115{bottom:440.325000px;}
.y95_c00115{bottom:441.405000px;}
.y93_c00115{bottom:442.470000px;}
.y96_c00115{bottom:443.550000px;}
.y8c_c00115{bottom:454.050000px;}
.y90_c00115{bottom:455.325000px;}
.y92_c00115{bottom:455.550000px;}
.y8d_c00115{bottom:456.405000px;}
.y8f_c00115{bottom:456.630000px;}
.y91_c00115{bottom:457.695000px;}
.y8e_c00115{bottom:458.550000px;}
.y8a_c00115{bottom:469.905000px;}
.y89_c00115{bottom:470.550000px;}
.y86_c00115{bottom:470.970000px;}
.y88_c00115{bottom:471.405000px;}
.y87_c00115{bottom:471.630000px;}
.y8b_c00115{bottom:472.050000px;}
.y7e_c00115{bottom:484.050000px;}
.y84_c00115{bottom:484.470000px;}
.y80_c00115{bottom:485.325000px;}
.y82_c00115{bottom:486.405000px;}
.y81_c00115{bottom:486.630000px;}
.y83_c00115{bottom:487.050000px;}
.y7f_c00115{bottom:487.470000px;}
.y85_c00115{bottom:488.550000px;}
.y7d_c00115{bottom:499.050000px;}
.y7c_c00115{bottom:500.325000px;}
.y7b_c00115{bottom:501.405000px;}
.y7a_c00115{bottom:502.470000px;}
.y75_c00115{bottom:513.825000px;}
.y74_c00115{bottom:515.130000px;}
.y76_c00115{bottom:515.970000px;}
.y79_c00115{bottom:516.405000px;}
.y77_c00115{bottom:517.050000px;}
.y78_c00115{bottom:517.470000px;}
.y73_c00115{bottom:528.825000px;}
.y72_c00115{bottom:530.970000px;}
.y6c_c00115{bottom:542.970000px;}
.y6b_c00115{bottom:543.825000px;}
.y6d_c00115{bottom:544.050000px;}
.y71_c00115{bottom:544.470000px;}
.y70_c00115{bottom:544.905000px;}
.y6e_c00115{bottom:545.970000px;}
.y6f_c00115{bottom:547.050000px;}
.y6a_c00115{bottom:559.050000px;}
.y69_c00115{bottom:559.905000px;}
.y66_c00115{bottom:560.130000px;}
.y67_c00115{bottom:560.970000px;}
.y68_c00115{bottom:562.050000px;}
.y65_c00115{bottom:590.745000px;}
.y64_c00115{bottom:592.905000px;}
.y63_c00115{bottom:609.405000px;}
.y60_c00115{bottom:610.245000px;}
.y61_c00115{bottom:612.405000px;}
.y62_c00115{bottom:613.470000px;}
.y5c_c00115{bottom:628.905000px;}
.y5d_c00115{bottom:629.745000px;}
.y5b_c00115{bottom:631.905000px;}
.y5e_c00115{bottom:632.130000px;}
.y5f_c00115{bottom:632.970000px;}
.y58_c00115{bottom:649.245000px;}
.y59_c00115{bottom:650.745000px;}
.y57_c00115{bottom:651.405000px;}
.y5a_c00115{bottom:651.630000px;}
.y55_c00115{bottom:667.905000px;}
.y52_c00115{bottom:668.745000px;}
.y56_c00115{bottom:668.970000px;}
.y53_c00115{bottom:670.245000px;}
.y51_c00115{bottom:670.905000px;}
.y54_c00115{bottom:672.405000px;}
.y4c_c00115{bottom:688.245000px;}
.y4d_c00115{bottom:689.745000px;}
.y50_c00115{bottom:690.630000px;}
.y4e_c00115{bottom:690.825000px;}
.y4f_c00115{bottom:691.470000px;}
.y4b_c00115{bottom:691.905000px;}
.y4a_c00115{bottom:708.180000px;}
.y49_c00115{bottom:709.245000px;}
.y47_c00115{bottom:711.405000px;}
.y48_c00115{bottom:711.420000px;}
.y46_c00115{bottom:730.470000px;}
.y45_c00115{bottom:730.905000px;}
.y44_c00115{bottom:748.245000px;}
.y42_c00115{bottom:750.405000px;}
.y43_c00115{bottom:750.420000px;}
.y40_c00115{bottom:769.245000px;}
.y3e_c00115{bottom:770.130000px;}
.y41_c00115{bottom:770.970000px;}
.y3d_c00115{bottom:771.405000px;}
.y3f_c00115{bottom:771.420000px;}
.y3a_c00115{bottom:788.745000px;}
.y3c_c00115{bottom:789.825000px;}
.y3b_c00115{bottom:790.920000px;}
.y39_c00115{bottom:808.245000px;}
.y38_c00115{bottom:809.130000px;}
.y37_c00115{bottom:810.405000px;}
.y35_c00115{bottom:827.745000px;}
.y34_c00115{bottom:828.825000px;}
.y33_c00115{bottom:829.905000px;}
.y36_c00115{bottom:830.130000px;}
.y2e_c00115{bottom:847.245000px;}
.y30_c00115{bottom:849.405000px;}
.y2f_c00115{bottom:849.420000px;}
.y31_c00115{bottom:849.630000px;}
.y32_c00115{bottom:850.905000px;}
.y28_c00115{bottom:873.825000px;}
.y29_c00115{bottom:874.905000px;}
.y2d_c00115{bottom:875.325000px;}
.y2a_c00115{bottom:875.970000px;}
.y2c_c00115{bottom:876.405000px;}
.y2b_c00115{bottom:877.050000px;}
.y22_c00115{bottom:893.325000px;}
.y23_c00115{bottom:893.550000px;}
.y24_c00115{bottom:894.405000px;}
.y25_c00115{bottom:894.825000px;}
.y27_c00115{bottom:895.695000px;}
.y26_c00115{bottom:896.550000px;}
.y21_c00115{bottom:920.745000px;}
.y20_c00115{bottom:962.130000px;}
.y1b_c00115{bottom:979.245000px;}
.y1e_c00115{bottom:980.745000px;}
.y19_c00115{bottom:981.405000px;}
.y1c_c00115{bottom:981.630000px;}
.y1f_c00115{bottom:982.470000px;}
.y1d_c00115{bottom:982.905000px;}
.y1a_c00115{bottom:982.920000px;}
.y16_c00115{bottom:997.905000px;}
.y12_c00115{bottom:998.745000px;}
.y14_c00115{bottom:999.825000px;}
.y13_c00115{bottom:1000.905000px;}
.y17_c00115{bottom:1001.130000px;}
.y15_c00115{bottom:1001.970000px;}
.y18_c00115{bottom:1002.405000px;}
.yd_c00115{bottom:1018.245000px;}
.yf_c00115{bottom:1019.745000px;}
.ye_c00115{bottom:1020.405000px;}
.y10_c00115{bottom:1020.630000px;}
.y11_c00115{bottom:1021.905000px;}
.y9_c00115{bottom:1039.245000px;}
.y8_c00115{bottom:1040.325000px;}
.ya_c00115{bottom:1041.405000px;}
.yc_c00115{bottom:1041.630000px;}
.yb_c00115{bottom:1042.470000px;}
.y6_c00115{bottom:1058.550000px;}
.y3_c00115{bottom:1058.745000px;}
.y7_c00115{bottom:1059.630000px;}
.y5_c00115{bottom:1060.470000px;}
.y4_c00115{bottom:1060.905000px;}
.y2_c00115{bottom:1099.050000px;}
.y1_c00115{bottom:1099.905000px;}
.h7_c00115{height:4.206533px;}
.h8_c00115{height:16.752334px;}
.h5_c00115{height:23.025234px;}
.h2_c00115{height:25.091602px;}
.h4_c00115{height:31.364502px;}
.h1_c00115{height:35.571035px;}
.ha_c00115{height:39.044502px;}
.h6_c00115{height:39.777568px;}
.h3_c00115{height:43.910303px;}
.h9_c00115{height:48.116836px;}
.h0_c00115{height:1335.000000px;}
.w0_c00115{width:880.500000px;}
.x0_c00115{left:0.000000px;}
.xe3_c00115{left:149.580000px;}
.xbd_c00115{left:151.080000px;}
.x64_c00115{left:152.145000px;}
.x1_c00115{left:154.080000px;}
.x4a_c00115{left:166.080000px;}
.xbe_c00115{left:167.145000px;}
.x33_c00115{left:168.645000px;}
.x52_c00115{left:169.920000px;}
.xd5_c00115{left:171.000000px;}
.x9e_c00115{left:175.080000px;}
.xe9_c00115{left:178.500000px;}
.xa6_c00115{left:183.000000px;}
.x7e_c00115{left:186.420000px;}
.xed_c00115{left:187.500000px;}
.x5a_c00115{left:189.645000px;}
.xe6_c00115{left:201.000000px;}
.x65_c00115{left:202.500000px;}
.x41_c00115{left:204.420000px;}
.x1c_c00115{left:207.000000px;}
.x95_c00115{left:208.500000px;}
.x53_c00115{left:211.920000px;}
.x7f_c00115{left:213.000000px;}
.xb3_c00115{left:214.500000px;}
.x3_c00115{left:220.500000px;}
.x9f_c00115{left:223.080000px;}
.x76_c00115{left:225.000000px;}
.x96_c00115{left:226.500000px;}
.xaf_c00115{left:229.920000px;}
.xcb_c00115{left:231.420000px;}
.x4_c00115{left:235.500000px;}
.xd9_c00115{left:237.000000px;}
.x34_c00115{left:240.000000px;}
.x11_c00115{left:241.920000px;}
.x87_c00115{left:243.420000px;}
.x4b_c00115{left:244.500000px;}
.x2a_c00115{left:246.420000px;}
.xbf_c00115{left:247.500000px;}
.x1d_c00115{left:249.420000px;}
.x6c_c00115{left:250.500000px;}
.x5_c00115{left:251.580000px;}
.x97_c00115{left:253.500000px;}
.xc1_c00115{left:255.000000px;}
.xdd_c00115{left:256.500000px;}
.xa7_c00115{left:257.580000px;}
.x35_c00115{left:259.500000px;}
.x6f_c00115{left:261.000000px;}
.xc9_c00115{left:262.500000px;}
.xa9_c00115{left:265.500000px;}
.x42_c00115{left:267.855000px;}
.x12_c00115{left:268.920000px;}
.x6_c00115{left:271.500000px;}
.xcc_c00115{left:274.500000px;}
.x1e_c00115{left:277.500000px;}
.x69_c00115{left:280.500000px;}
.x70_c00115{left:282.000000px;}
.xe7_c00115{left:283.920000px;}
.x66_c00115{left:285.420000px;}
.x90_c00115{left:287.580000px;}
.x36_c00115{left:289.500000px;}
.x2b_c00115{left:292.920000px;}
.xb4_c00115{left:297.000000px;}
.xee_c00115{left:300.000000px;}
.x6d_c00115{left:301.500000px;}
.xaa_c00115{left:305.580000px;}
.x91_c00115{left:308.580000px;}
.x7_c00115{left:310.500000px;}
.x5b_c00115{left:312.000000px;}
.xc7_c00115{left:315.000000px;}
.x13_c00115{left:316.500000px;}
.x80_c00115{left:318.000000px;}
.x98_c00115{left:319.080000px;}
.x37_c00115{left:324.000000px;}
.x54_c00115{left:325.920000px;}
.xef_c00115{left:327.000000px;}
.x1f_c00115{left:328.500000px;}
.xd6_c00115{left:329.580000px;}
.xea_c00115{left:331.500000px;}
.x4c_c00115{left:332.580000px;}
.xa0_c00115{left:337.080000px;}
.x43_c00115{left:339.420000px;}
.x77_c00115{left:342.000000px;}
.x8_c00115{left:343.500000px;}
.xf0_c00115{left:344.580000px;}
.x6a_c00115{left:346.275000px;}
.x6e_c00115{left:349.080000px;}
.xa8_c00115{left:352.500000px;}
.x2c_c00115{left:355.500000px;}
.x55_c00115{left:357.000000px;}
.x5c_c00115{left:360.420000px;}
.x78_c00115{left:361.500000px;}
.x81_c00115{left:362.580000px;}
.xda_c00115{left:364.500000px;}
.x44_c00115{left:365.580000px;}
.xab_c00115{left:367.080000px;}
.x99_c00115{left:370.500000px;}
.xb5_c00115{left:372.420000px;}
.xb0_c00115{left:379.500000px;}
.x9_c00115{left:380.580000px;}
.x4d_c00115{left:382.920000px;}
.x82_c00115{left:384.420000px;}
.xc8_c00115{left:385.500000px;}
.x6b_c00115{left:387.000000px;}
.x20_c00115{left:389.580000px;}
.x9a_c00115{left:391.500000px;}
.x2d_c00115{left:393.000000px;}
.x38_c00115{left:394.500000px;}
.x14_c00115{left:399.000000px;}
.x2_c00115{left:402.000000px;}
.xf1_c00115{left:403.920000px;}
.x71_c00115{left:405.000000px;}
.xa1_c00115{left:406.080000px;}
.x21_c00115{left:409.920000px;}
.x15_c00115{left:414.000000px;}
.x5d_c00115{left:417.000000px;}
.x45_c00115{left:418.920000px;}
.x88_c00115{left:420.420000px;}
.x67_c00115{left:422.580000px;}
.xa_c00115{left:424.500000px;}
.xc2_c00115{left:425.580000px;}
.x83_c00115{left:427.500000px;}
.xdb_c00115{left:430.500000px;}
.x79_c00115{left:432.000000px;}
.x39_c00115{left:435.000000px;}
.x22_c00115{left:436.920000px;}
.x2e_c00115{left:438.000000px;}
.xa2_c00115{left:439.500000px;}
.xc3_c00115{left:444.000000px;}
.x46_c00115{left:445.500000px;}
.xe8_c00115{left:446.580000px;}
.x89_c00115{left:448.500000px;}
.xd7_c00115{left:451.500000px;}
.x2f_c00115{left:452.580000px;}
.xb6_c00115{left:454.080000px;}
.x56_c00115{left:457.080000px;}
.xd1_c00115{left:462.420000px;}
.xac_c00115{left:463.920000px;}
.x5e_c00115{left:469.500000px;}
.x72_c00115{left:472.920000px;}
.x68_c00115{left:474.420000px;}
.x16_c00115{left:475.500000px;}
.x23_c00115{left:478.920000px;}
.xad_c00115{left:481.500000px;}
.x4e_c00115{left:484.500000px;}
.x7a_c00115{left:487.080000px;}
.xb1_c00115{left:488.580000px;}
.x9b_c00115{left:490.080000px;}
.xb7_c00115{left:493.500000px;}
.xe4_c00115{left:498.000000px;}
.xb_c00115{left:499.080000px;}
.x3a_c00115{left:501.000000px;}
.x17_c00115{left:502.920000px;}
.x47_c00115{left:504.000000px;}
.xb8_c00115{left:505.080000px;}
.xc4_c00115{left:507.645000px;}
.xd2_c00115{left:511.080000px;}
.x3f_c00115{left:514.080000px;}
.x24_c00115{left:515.580000px;}
.x30_c00115{left:517.500000px;}
.x5f_c00115{left:519.420000px;}
.x3b_c00115{left:520.500000px;}
.x92_c00115{left:521.580000px;}
.xca_c00115{left:523.080000px;}
.xeb_c00115{left:524.580000px;}
.xb9_c00115{left:528.000000px;}
.x48_c00115{left:529.080000px;}
.xa3_c00115{left:530.145000px;}
.x8a_c00115{left:532.080000px;}
.x7b_c00115{left:534.000000px;}
.xd8_c00115{left:535.920000px;}
.x84_c00115{left:537.420000px;}
.x57_c00115{left:538.500000px;}
.xc_c00115{left:540.420000px;}
.xf2_c00115{left:543.000000px;}
.xde_c00115{left:546.420000px;}
.x60_c00115{left:547.920000px;}
.x31_c00115{left:549.000000px;}
.x8b_c00115{left:550.500000px;}
.xc5_c00115{left:551.580000px;}
.x93_c00115{left:553.920000px;}
.x4f_c00115{left:556.080000px;}
.xd3_c00115{left:558.420000px;}
.x7c_c00115{left:561.000000px;}
.xae_c00115{left:562.500000px;}
.x73_c00115{left:564.000000px;}
.x3c_c00115{left:565.920000px;}
.xcd_c00115{left:567.000000px;}
.x25_c00115{left:568.275000px;}
.x18_c00115{left:570.420000px;}
.x58_c00115{left:572.580000px;}
.x40_c00115{left:578.775000px;}
.xec_c00115{left:580.500000px;}
.x8c_c00115{left:581.775000px;}
.x50_c00115{left:584.355000px;}
.xdf_c00115{left:589.275000px;}
.xe5_c00115{left:592.500000px;}
.x32_c00115{left:594.420000px;}
.x26_c00115{left:598.500000px;}
.xd_c00115{left:603.420000px;}
.x51_c00115{left:604.920000px;}
.x19_c00115{left:606.000000px;}
.xc0_c00115{left:607.080000px;}
.xb2_c00115{left:608.580000px;}
.x49_c00115{left:612.420000px;}
.x61_c00115{left:613.500000px;}
.x8d_c00115{left:616.080000px;}
.x74_c00115{left:619.080000px;}
.x94_c00115{left:622.920000px;}
.x59_c00115{left:624.420000px;}
.x85_c00115{left:627.000000px;}
.xba_c00115{left:628.080000px;}
.xe0_c00115{left:630.000000px;}
.xe_c00115{left:631.500000px;}
.x9c_c00115{left:634.500000px;}
.x7d_c00115{left:637.920000px;}
.xc6_c00115{left:639.000000px;}
.xce_c00115{left:643.920000px;}
.x62_c00115{left:646.500000px;}
.x3d_c00115{left:649.500000px;}
.x27_c00115{left:651.420000px;}
.xe1_c00115{left:654.000000px;}
.xbb_c00115{left:655.500000px;}
.x8e_c00115{left:661.500000px;}
.xf_c00115{left:663.000000px;}
.xdc_c00115{left:664.500000px;}
.x9d_c00115{left:670.500000px;}
.x8f_c00115{left:673.500000px;}
.x3e_c00115{left:675.420000px;}
.x1a_c00115{left:676.500000px;}
.x28_c00115{left:678.420000px;}
.xa4_c00115{left:683.580000px;}
.xcf_c00115{left:688.500000px;}
.xbc_c00115{left:697.500000px;}
.x86_c00115{left:699.000000px;}
.xd4_c00115{left:701.580000px;}
.x75_c00115{left:704.580000px;}
.xd0_c00115{left:708.420000px;}
.x10_c00115{left:709.920000px;}
.x63_c00115{left:712.500000px;}
.xa5_c00115{left:715.275000px;}
.xe2_c00115{left:717.000000px;}
.x1b_c00115{left:718.500000px;}
.x29_c00115{left:720.000000px;}
@media print{
.v0_c00115{vertical-align:0.000000pt;}
.v1_c00115{vertical-align:6.826667pt;}
.ls1_c00115{letter-spacing:0.000000pt;}
.ls0_c00115{letter-spacing:10.504533pt;}
.ws2_c00115{word-spacing:-15.012693pt;}
.ws0_c00115{word-spacing:-1.560320pt;}
.ws3_c00115{word-spacing:0.000000pt;}
.ws1_c00115{word-spacing:0.692749pt;}
._0_c00115{width:5.227733pt;}
.fs6_c00115{font-size:3.040000pt;}
.fs7_c00115{font-size:12.106667pt;}
.fs4_c00115{font-size:16.640000pt;}
.fs1_c00115{font-size:18.133333pt;}
.fs3_c00115{font-size:22.666667pt;}
.fs0_c00115{font-size:25.706667pt;}
.fs5_c00115{font-size:28.746667pt;}
.fs2_c00115{font-size:31.733333pt;}
.fs8_c00115{font-size:34.773333pt;}
.y0_c00115{bottom:0.000000pt;}
.yc3_c00115{bottom:222.066667pt;}
.yc5_c00115{bottom:222.440000pt;}
.yc7_c00115{bottom:223.600000pt;}
.yc9_c00115{bottom:223.773333pt;}
.yc6_c00115{bottom:223.973333pt;}
.yc4_c00115{bottom:224.360000pt;}
.yc8_c00115{bottom:224.560000pt;}
.yc1_c00115{bottom:239.773333pt;}
.yc2_c00115{bottom:241.106667pt;}
.ybf_c00115{bottom:241.693333pt;}
.ybe_c00115{bottom:242.640000pt;}
.yc0_c00115{bottom:243.026667pt;}
.ybd_c00115{bottom:258.440000pt;}
.yba_c00115{bottom:259.026667pt;}
.ybb_c00115{bottom:259.226667pt;}
.ybc_c00115{bottom:260.360000pt;}
.yb6_c00115{bottom:275.773333pt;}
.yb5_c00115{bottom:276.360000pt;}
.yb7_c00115{bottom:277.693333pt;}
.yb8_c00115{bottom:277.893333pt;}
.yb9_c00115{bottom:279.026667pt;}
.yae_c00115{bottom:292.160000pt;}
.yb4_c00115{bottom:293.106667pt;}
.yb3_c00115{bottom:293.306667pt;}
.yb2_c00115{bottom:293.893333pt;}
.yb1_c00115{bottom:294.066667pt;}
.yb0_c00115{bottom:294.640000pt;}
.yaf_c00115{bottom:295.026667pt;}
.yaa_c00115{bottom:310.440000pt;}
.yad_c00115{bottom:311.400000pt;}
.ya9_c00115{bottom:311.773333pt;}
.ya7_c00115{bottom:312.360000pt;}
.ya8_c00115{bottom:312.373333pt;}
.yac_c00115{bottom:312.560000pt;}
.yab_c00115{bottom:313.306667pt;}
.ya1_c00115{bottom:327.773333pt;}
.ya4_c00115{bottom:328.733333pt;}
.ya0_c00115{bottom:329.306667pt;}
.ya6_c00115{bottom:329.693333pt;}
.ya2_c00115{bottom:329.893333pt;}
.ya3_c00115{bottom:330.640000pt;}
.ya5_c00115{bottom:331.026667pt;}
.y9f_c00115{bottom:344.360000pt;}
.y9c_c00115{bottom:345.106667pt;}
.y9e_c00115{bottom:346.066667pt;}
.y9d_c00115{bottom:347.026667pt;}
.y97_c00115{bottom:363.773333pt;}
.y9b_c00115{bottom:364.360000pt;}
.y9a_c00115{bottom:364.560000pt;}
.y99_c00115{bottom:365.693333pt;}
.y98_c00115{bottom:365.706667pt;}
.y94_c00115{bottom:391.400000pt;}
.y95_c00115{bottom:392.360000pt;}
.y93_c00115{bottom:393.306667pt;}
.y96_c00115{bottom:394.266667pt;}
.y8c_c00115{bottom:403.600000pt;}
.y90_c00115{bottom:404.733333pt;}
.y92_c00115{bottom:404.933333pt;}
.y8d_c00115{bottom:405.693333pt;}
.y8f_c00115{bottom:405.893333pt;}
.y91_c00115{bottom:406.840000pt;}
.y8e_c00115{bottom:407.600000pt;}
.y8a_c00115{bottom:417.693333pt;}
.y89_c00115{bottom:418.266667pt;}
.y86_c00115{bottom:418.640000pt;}
.y88_c00115{bottom:419.026667pt;}
.y87_c00115{bottom:419.226667pt;}
.y8b_c00115{bottom:419.600000pt;}
.y7e_c00115{bottom:430.266667pt;}
.y84_c00115{bottom:430.640000pt;}
.y80_c00115{bottom:431.400000pt;}
.y82_c00115{bottom:432.360000pt;}
.y81_c00115{bottom:432.560000pt;}
.y83_c00115{bottom:432.933333pt;}
.y7f_c00115{bottom:433.306667pt;}
.y85_c00115{bottom:434.266667pt;}
.y7d_c00115{bottom:443.600000pt;}
.y7c_c00115{bottom:444.733333pt;}
.y7b_c00115{bottom:445.693333pt;}
.y7a_c00115{bottom:446.640000pt;}
.y75_c00115{bottom:456.733333pt;}
.y74_c00115{bottom:457.893333pt;}
.y76_c00115{bottom:458.640000pt;}
.y79_c00115{bottom:459.026667pt;}
.y77_c00115{bottom:459.600000pt;}
.y78_c00115{bottom:459.973333pt;}
.y73_c00115{bottom:470.066667pt;}
.y72_c00115{bottom:471.973333pt;}
.y6c_c00115{bottom:482.640000pt;}
.y6b_c00115{bottom:483.400000pt;}
.y6d_c00115{bottom:483.600000pt;}
.y71_c00115{bottom:483.973333pt;}
.y70_c00115{bottom:484.360000pt;}
.y6e_c00115{bottom:485.306667pt;}
.y6f_c00115{bottom:486.266667pt;}
.y6a_c00115{bottom:496.933333pt;}
.y69_c00115{bottom:497.693333pt;}
.y66_c00115{bottom:497.893333pt;}
.y67_c00115{bottom:498.640000pt;}
.y68_c00115{bottom:499.600000pt;}
.y65_c00115{bottom:525.106667pt;}
.y64_c00115{bottom:527.026667pt;}
.y63_c00115{bottom:541.693333pt;}
.y60_c00115{bottom:542.440000pt;}
.y61_c00115{bottom:544.360000pt;}
.y62_c00115{bottom:545.306667pt;}
.y5c_c00115{bottom:559.026667pt;}
.y5d_c00115{bottom:559.773333pt;}
.y5b_c00115{bottom:561.693333pt;}
.y5e_c00115{bottom:561.893333pt;}
.y5f_c00115{bottom:562.640000pt;}
.y58_c00115{bottom:577.106667pt;}
.y59_c00115{bottom:578.440000pt;}
.y57_c00115{bottom:579.026667pt;}
.y5a_c00115{bottom:579.226667pt;}
.y55_c00115{bottom:593.693333pt;}
.y52_c00115{bottom:594.440000pt;}
.y56_c00115{bottom:594.640000pt;}
.y53_c00115{bottom:595.773333pt;}
.y51_c00115{bottom:596.360000pt;}
.y54_c00115{bottom:597.693333pt;}
.y4c_c00115{bottom:611.773333pt;}
.y4d_c00115{bottom:613.106667pt;}
.y50_c00115{bottom:613.893333pt;}
.y4e_c00115{bottom:614.066667pt;}
.y4f_c00115{bottom:614.640000pt;}
.y4b_c00115{bottom:615.026667pt;}
.y4a_c00115{bottom:629.493333pt;}
.y49_c00115{bottom:630.440000pt;}
.y47_c00115{bottom:632.360000pt;}
.y48_c00115{bottom:632.373333pt;}
.y46_c00115{bottom:649.306667pt;}
.y45_c00115{bottom:649.693333pt;}
.y44_c00115{bottom:665.106667pt;}
.y42_c00115{bottom:667.026667pt;}
.y43_c00115{bottom:667.040000pt;}
.y40_c00115{bottom:683.773333pt;}
.y3e_c00115{bottom:684.560000pt;}
.y41_c00115{bottom:685.306667pt;}
.y3d_c00115{bottom:685.693333pt;}
.y3f_c00115{bottom:685.706667pt;}
.y3a_c00115{bottom:701.106667pt;}
.y3c_c00115{bottom:702.066667pt;}
.y3b_c00115{bottom:703.040000pt;}
.y39_c00115{bottom:718.440000pt;}
.y38_c00115{bottom:719.226667pt;}
.y37_c00115{bottom:720.360000pt;}
.y35_c00115{bottom:735.773333pt;}
.y34_c00115{bottom:736.733333pt;}
.y33_c00115{bottom:737.693333pt;}
.y36_c00115{bottom:737.893333pt;}
.y2e_c00115{bottom:753.106667pt;}
.y30_c00115{bottom:755.026667pt;}
.y2f_c00115{bottom:755.040000pt;}
.y31_c00115{bottom:755.226667pt;}
.y32_c00115{bottom:756.360000pt;}
.y28_c00115{bottom:776.733333pt;}
.y29_c00115{bottom:777.693333pt;}
.y2d_c00115{bottom:778.066667pt;}
.y2a_c00115{bottom:778.640000pt;}
.y2c_c00115{bottom:779.026667pt;}
.y2b_c00115{bottom:779.600000pt;}
.y22_c00115{bottom:794.066667pt;}
.y23_c00115{bottom:794.266667pt;}
.y24_c00115{bottom:795.026667pt;}
.y25_c00115{bottom:795.400000pt;}
.y27_c00115{bottom:796.173333pt;}
.y26_c00115{bottom:796.933333pt;}
.y21_c00115{bottom:818.440000pt;}
.y20_c00115{bottom:855.226667pt;}
.y1b_c00115{bottom:870.440000pt;}
.y1e_c00115{bottom:871.773333pt;}
.y19_c00115{bottom:872.360000pt;}
.y1c_c00115{bottom:872.560000pt;}
.y1f_c00115{bottom:873.306667pt;}
.y1d_c00115{bottom:873.693333pt;}
.y1a_c00115{bottom:873.706667pt;}
.y16_c00115{bottom:887.026667pt;}
.y12_c00115{bottom:887.773333pt;}
.y14_c00115{bottom:888.733333pt;}
.y13_c00115{bottom:889.693333pt;}
.y17_c00115{bottom:889.893333pt;}
.y15_c00115{bottom:890.640000pt;}
.y18_c00115{bottom:891.026667pt;}
.yd_c00115{bottom:905.106667pt;}
.yf_c00115{bottom:906.440000pt;}
.ye_c00115{bottom:907.026667pt;}
.y10_c00115{bottom:907.226667pt;}
.y11_c00115{bottom:908.360000pt;}
.y9_c00115{bottom:923.773333pt;}
.y8_c00115{bottom:924.733333pt;}
.ya_c00115{bottom:925.693333pt;}
.yc_c00115{bottom:925.893333pt;}
.yb_c00115{bottom:926.640000pt;}
.y6_c00115{bottom:940.933333pt;}
.y3_c00115{bottom:941.106667pt;}
.y7_c00115{bottom:941.893333pt;}
.y5_c00115{bottom:942.640000pt;}
.y4_c00115{bottom:943.026667pt;}
.y2_c00115{bottom:976.933333pt;}
.y1_c00115{bottom:977.693333pt;}
.h7_c00115{height:3.739141pt;}
.h8_c00115{height:14.890964pt;}
.h5_c00115{height:20.466875pt;}
.h2_c00115{height:22.303646pt;}
.h4_c00115{height:27.879557pt;}
.h1_c00115{height:31.618698pt;}
.ha_c00115{height:34.706224pt;}
.h6_c00115{height:35.357839pt;}
.h3_c00115{height:39.031380pt;}
.h9_c00115{height:42.770521pt;}
.h0_c00115{height:1186.666667pt;}
.w0_c00115{width:782.666667pt;}
.x0_c00115{left:0.000000pt;}
.xe3_c00115{left:132.960000pt;}
.xbd_c00115{left:134.293333pt;}
.x64_c00115{left:135.240000pt;}
.x1_c00115{left:136.960000pt;}
.x4a_c00115{left:147.626667pt;}
.xbe_c00115{left:148.573333pt;}
.x33_c00115{left:149.906667pt;}
.x52_c00115{left:151.040000pt;}
.xd5_c00115{left:152.000000pt;}
.x9e_c00115{left:155.626667pt;}
.xe9_c00115{left:158.666667pt;}
.xa6_c00115{left:162.666667pt;}
.x7e_c00115{left:165.706667pt;}
.xed_c00115{left:166.666667pt;}
.x5a_c00115{left:168.573333pt;}
.xe6_c00115{left:178.666667pt;}
.x65_c00115{left:180.000000pt;}
.x41_c00115{left:181.706667pt;}
.x1c_c00115{left:184.000000pt;}
.x95_c00115{left:185.333333pt;}
.x53_c00115{left:188.373333pt;}
.x7f_c00115{left:189.333333pt;}
.xb3_c00115{left:190.666667pt;}
.x3_c00115{left:196.000000pt;}
.x9f_c00115{left:198.293333pt;}
.x76_c00115{left:200.000000pt;}
.x96_c00115{left:201.333333pt;}
.xaf_c00115{left:204.373333pt;}
.xcb_c00115{left:205.706667pt;}
.x4_c00115{left:209.333333pt;}
.xd9_c00115{left:210.666667pt;}
.x34_c00115{left:213.333333pt;}
.x11_c00115{left:215.040000pt;}
.x87_c00115{left:216.373333pt;}
.x4b_c00115{left:217.333333pt;}
.x2a_c00115{left:219.040000pt;}
.xbf_c00115{left:220.000000pt;}
.x1d_c00115{left:221.706667pt;}
.x6c_c00115{left:222.666667pt;}
.x5_c00115{left:223.626667pt;}
.x97_c00115{left:225.333333pt;}
.xc1_c00115{left:226.666667pt;}
.xdd_c00115{left:228.000000pt;}
.xa7_c00115{left:228.960000pt;}
.x35_c00115{left:230.666667pt;}
.x6f_c00115{left:232.000000pt;}
.xc9_c00115{left:233.333333pt;}
.xa9_c00115{left:236.000000pt;}
.x42_c00115{left:238.093333pt;}
.x12_c00115{left:239.040000pt;}
.x6_c00115{left:241.333333pt;}
.xcc_c00115{left:244.000000pt;}
.x1e_c00115{left:246.666667pt;}
.x69_c00115{left:249.333333pt;}
.x70_c00115{left:250.666667pt;}
.xe7_c00115{left:252.373333pt;}
.x66_c00115{left:253.706667pt;}
.x90_c00115{left:255.626667pt;}
.x36_c00115{left:257.333333pt;}
.x2b_c00115{left:260.373333pt;}
.xb4_c00115{left:264.000000pt;}
.xee_c00115{left:266.666667pt;}
.x6d_c00115{left:268.000000pt;}
.xaa_c00115{left:271.626667pt;}
.x91_c00115{left:274.293333pt;}
.x7_c00115{left:276.000000pt;}
.x5b_c00115{left:277.333333pt;}
.xc7_c00115{left:280.000000pt;}
.x13_c00115{left:281.333333pt;}
.x80_c00115{left:282.666667pt;}
.x98_c00115{left:283.626667pt;}
.x37_c00115{left:288.000000pt;}
.x54_c00115{left:289.706667pt;}
.xef_c00115{left:290.666667pt;}
.x1f_c00115{left:292.000000pt;}
.xd6_c00115{left:292.960000pt;}
.xea_c00115{left:294.666667pt;}
.x4c_c00115{left:295.626667pt;}
.xa0_c00115{left:299.626667pt;}
.x43_c00115{left:301.706667pt;}
.x77_c00115{left:304.000000pt;}
.x8_c00115{left:305.333333pt;}
.xf0_c00115{left:306.293333pt;}
.x6a_c00115{left:307.800000pt;}
.x6e_c00115{left:310.293333pt;}
.xa8_c00115{left:313.333333pt;}
.x2c_c00115{left:316.000000pt;}
.x55_c00115{left:317.333333pt;}
.x5c_c00115{left:320.373333pt;}
.x78_c00115{left:321.333333pt;}
.x81_c00115{left:322.293333pt;}
.xda_c00115{left:324.000000pt;}
.x44_c00115{left:324.960000pt;}
.xab_c00115{left:326.293333pt;}
.x99_c00115{left:329.333333pt;}
.xb5_c00115{left:331.040000pt;}
.xb0_c00115{left:337.333333pt;}
.x9_c00115{left:338.293333pt;}
.x4d_c00115{left:340.373333pt;}
.x82_c00115{left:341.706667pt;}
.xc8_c00115{left:342.666667pt;}
.x6b_c00115{left:344.000000pt;}
.x20_c00115{left:346.293333pt;}
.x9a_c00115{left:348.000000pt;}
.x2d_c00115{left:349.333333pt;}
.x38_c00115{left:350.666667pt;}
.x14_c00115{left:354.666667pt;}
.x2_c00115{left:357.333333pt;}
.xf1_c00115{left:359.040000pt;}
.x71_c00115{left:360.000000pt;}
.xa1_c00115{left:360.960000pt;}
.x21_c00115{left:364.373333pt;}
.x15_c00115{left:368.000000pt;}
.x5d_c00115{left:370.666667pt;}
.x45_c00115{left:372.373333pt;}
.x88_c00115{left:373.706667pt;}
.x67_c00115{left:375.626667pt;}
.xa_c00115{left:377.333333pt;}
.xc2_c00115{left:378.293333pt;}
.x83_c00115{left:380.000000pt;}
.xdb_c00115{left:382.666667pt;}
.x79_c00115{left:384.000000pt;}
.x39_c00115{left:386.666667pt;}
.x22_c00115{left:388.373333pt;}
.x2e_c00115{left:389.333333pt;}
.xa2_c00115{left:390.666667pt;}
.xc3_c00115{left:394.666667pt;}
.x46_c00115{left:396.000000pt;}
.xe8_c00115{left:396.960000pt;}
.x89_c00115{left:398.666667pt;}
.xd7_c00115{left:401.333333pt;}
.x2f_c00115{left:402.293333pt;}
.xb6_c00115{left:403.626667pt;}
.x56_c00115{left:406.293333pt;}
.xd1_c00115{left:411.040000pt;}
.xac_c00115{left:412.373333pt;}
.x5e_c00115{left:417.333333pt;}
.x72_c00115{left:420.373333pt;}
.x68_c00115{left:421.706667pt;}
.x16_c00115{left:422.666667pt;}
.x23_c00115{left:425.706667pt;}
.xad_c00115{left:428.000000pt;}
.x4e_c00115{left:430.666667pt;}
.x7a_c00115{left:432.960000pt;}
.xb1_c00115{left:434.293333pt;}
.x9b_c00115{left:435.626667pt;}
.xb7_c00115{left:438.666667pt;}
.xe4_c00115{left:442.666667pt;}
.xb_c00115{left:443.626667pt;}
.x3a_c00115{left:445.333333pt;}
.x17_c00115{left:447.040000pt;}
.x47_c00115{left:448.000000pt;}
.xb8_c00115{left:448.960000pt;}
.xc4_c00115{left:451.240000pt;}
.xd2_c00115{left:454.293333pt;}
.x3f_c00115{left:456.960000pt;}
.x24_c00115{left:458.293333pt;}
.x30_c00115{left:460.000000pt;}
.x5f_c00115{left:461.706667pt;}
.x3b_c00115{left:462.666667pt;}
.x92_c00115{left:463.626667pt;}
.xca_c00115{left:464.960000pt;}
.xeb_c00115{left:466.293333pt;}
.xb9_c00115{left:469.333333pt;}
.x48_c00115{left:470.293333pt;}
.xa3_c00115{left:471.240000pt;}
.x8a_c00115{left:472.960000pt;}
.x7b_c00115{left:474.666667pt;}
.xd8_c00115{left:476.373333pt;}
.x84_c00115{left:477.706667pt;}
.x57_c00115{left:478.666667pt;}
.xc_c00115{left:480.373333pt;}
.xf2_c00115{left:482.666667pt;}
.xde_c00115{left:485.706667pt;}
.x60_c00115{left:487.040000pt;}
.x31_c00115{left:488.000000pt;}
.x8b_c00115{left:489.333333pt;}
.xc5_c00115{left:490.293333pt;}
.x93_c00115{left:492.373333pt;}
.x4f_c00115{left:494.293333pt;}
.xd3_c00115{left:496.373333pt;}
.x7c_c00115{left:498.666667pt;}
.xae_c00115{left:500.000000pt;}
.x73_c00115{left:501.333333pt;}
.x3c_c00115{left:503.040000pt;}
.xcd_c00115{left:504.000000pt;}
.x25_c00115{left:505.133333pt;}
.x18_c00115{left:507.040000pt;}
.x58_c00115{left:508.960000pt;}
.x40_c00115{left:514.466667pt;}
.xec_c00115{left:516.000000pt;}
.x8c_c00115{left:517.133333pt;}
.x50_c00115{left:519.426667pt;}
.xdf_c00115{left:523.800000pt;}
.xe5_c00115{left:526.666667pt;}
.x32_c00115{left:528.373333pt;}
.x26_c00115{left:532.000000pt;}
.xd_c00115{left:536.373333pt;}
.x51_c00115{left:537.706667pt;}
.x19_c00115{left:538.666667pt;}
.xc0_c00115{left:539.626667pt;}
.xb2_c00115{left:540.960000pt;}
.x49_c00115{left:544.373333pt;}
.x61_c00115{left:545.333333pt;}
.x8d_c00115{left:547.626667pt;}
.x74_c00115{left:550.293333pt;}
.x94_c00115{left:553.706667pt;}
.x59_c00115{left:555.040000pt;}
.x85_c00115{left:557.333333pt;}
.xba_c00115{left:558.293333pt;}
.xe0_c00115{left:560.000000pt;}
.xe_c00115{left:561.333333pt;}
.x9c_c00115{left:564.000000pt;}
.x7d_c00115{left:567.040000pt;}
.xc6_c00115{left:568.000000pt;}
.xce_c00115{left:572.373333pt;}
.x62_c00115{left:574.666667pt;}
.x3d_c00115{left:577.333333pt;}
.x27_c00115{left:579.040000pt;}
.xe1_c00115{left:581.333333pt;}
.xbb_c00115{left:582.666667pt;}
.x8e_c00115{left:588.000000pt;}
.xf_c00115{left:589.333333pt;}
.xdc_c00115{left:590.666667pt;}
.x9d_c00115{left:596.000000pt;}
.x8f_c00115{left:598.666667pt;}
.x3e_c00115{left:600.373333pt;}
.x1a_c00115{left:601.333333pt;}
.x28_c00115{left:603.040000pt;}
.xa4_c00115{left:607.626667pt;}
.xcf_c00115{left:612.000000pt;}
.xbc_c00115{left:620.000000pt;}
.x86_c00115{left:621.333333pt;}
.xd4_c00115{left:623.626667pt;}
.x75_c00115{left:626.293333pt;}
.xd0_c00115{left:629.706667pt;}
.x10_c00115{left:631.040000pt;}
.x63_c00115{left:633.333333pt;}
.xa5_c00115{left:635.800000pt;}
.xe2_c00115{left:637.333333pt;}
.x1b_c00115{left:638.666667pt;}
.x29_c00115{left:640.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_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_fbbef08f86b21216db390591.woff2')format("woff");}.ff1_c00116{font-family:ff1_c00116;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3e_c00116{transform:matrix(0.171614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171614,0.000000,0.000000,0.250000,0,0);}
.m22_c00116{transform:matrix(0.356212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356212,0.000000,0.000000,0.250000,0,0);}
.m2c_c00116{transform:matrix(0.361580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361580,0.000000,0.000000,0.250000,0,0);}
.m0_c00116{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m26_c00116{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m6_c00116{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m1e_c00116{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m4b_c00116{transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);}
.m35_c00116{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m2b_c00116{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m11_c00116{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m4c_c00116{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m57_c00116{transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);}
.m37_c00116{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m44_c00116{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m46_c00116{transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);}
.m45_c00116{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m10_c00116{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.m25_c00116{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m56_c00116{transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);}
.mf_c00116{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m41_c00116{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m53_c00116{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m59_c00116{transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);}
.m36_c00116{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m52_c00116{transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);}
.m13_c00116{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m2a_c00116{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m29_c00116{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m3_c00116{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m12_c00116{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_c00116{transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);}
.m39_c00116{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m1d_c00116{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m2f_c00116{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m16_c00116{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m3a_c00116{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);}
.m2d_c00116{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m1c_c00116{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m1f_c00116{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m4f_c00116{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);}
.m33_c00116{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m1a_c00116{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.md_c00116{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m15_c00116{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m8_c00116{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m9_c00116{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m3d_c00116{transform:matrix(0.539425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539425,0.000000,0.000000,0.250000,0,0);}
.m3f_c00116{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.mc_c00116{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m23_c00116{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m34_c00116{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m2e_c00116{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m4_c00116{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m40_c00116{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.ma_c00116{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m31_c00116{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m1b_c00116{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m17_c00116{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m4d_c00116{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m2_c00116{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m48_c00116{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.m27_c00116{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m51_c00116{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.mb_c00116{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m38_c00116{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.m18_c00116{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m24_c00116{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m50_c00116{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);}
.m20_c00116{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m32_c00116{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m49_c00116{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m3b_c00116{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);}
.m58_c00116{transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);}
.m1_c00116{transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);}
.m14_c00116{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m7_c00116{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.me_c00116{transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);}
.m55_c00116{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m54_c00116{transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);}
.m3c_c00116{transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);}
.m5_c00116{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m4e_c00116{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m30_c00116{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m21_c00116{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m28_c00116{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m19_c00116{transform:matrix(0.824519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.824519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.824519,0.000000,0.000000,0.250000,0,0);}
.m4a_c00116{transform:matrix(0.922907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.922907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.922907,0.000000,0.000000,0.250000,0,0);}
.m43_c00116{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m47_c00116{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,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:-7.448345px;}
.ws1_c00116{word-spacing:0.000000px;}
.fc0_c00116{color:transparent;}
.fs7_c00116{font-size:13.620000px;}
.fs1_c00116{font-size:18.720000px;}
.fs4_c00116{font-size:20.400000px;}
.fs3_c00116{font-size:25.500000px;}
.fs2_c00116{font-size:28.920000px;}
.fs6_c00116{font-size:32.340000px;}
.fs0_c00116{font-size:35.700000px;}
.fs5_c00116{font-size:39.120000px;}
.y0_c00116{bottom:0.000000px;}
.y19_c00116{bottom:279.405000px;}
.y18_c00116{bottom:280.470000px;}
.y17_c00116{bottom:280.680000px;}
.y1a_c00116{bottom:280.905000px;}
.y1c_c00116{bottom:281.745000px;}
.y1b_c00116{bottom:282.630000px;}
.y16_c00116{bottom:283.905000px;}
.y15_c00116{bottom:301.245000px;}
.y12_c00116{bottom:320.745000px;}
.y14_c00116{bottom:321.630000px;}
.y13_c00116{bottom:322.905000px;}
.y10_c00116{bottom:339.180000px;}
.yd_c00116{bottom:339.405000px;}
.ye_c00116{bottom:340.245000px;}
.y11_c00116{bottom:341.970000px;}
.yb_c00116{bottom:342.405000px;}
.yc_c00116{bottom:342.630000px;}
.yf_c00116{bottom:343.470000px;}
.y8_c00116{bottom:359.745000px;}
.y9_c00116{bottom:361.905000px;}
.ya_c00116{bottom:362.970000px;}
.y5_c00116{bottom:379.245000px;}
.y7_c00116{bottom:380.550000px;}
.y3_c00116{bottom:381.405000px;}
.y4_c00116{bottom:381.630000px;}
.y6_c00116{bottom:382.470000px;}
.y2b_c00116{bottom:425.970000px;}
.y28_c00116{bottom:426.825000px;}
.y26_c00116{bottom:427.050000px;}
.y29_c00116{bottom:427.905000px;}
.y2a_c00116{bottom:428.130000px;}
.y27_c00116{bottom:428.970000px;}
.y25_c00116{bottom:429.195000px;}
.y22_c00116{bottom:441.405000px;}
.y2e_c00116{bottom:442.050000px;}
.y2d_c00116{bottom:443.130000px;}
.y2c_c00116{bottom:443.550000px;}
.y1e_c00116{bottom:455.970000px;}
.y1d_c00116{bottom:456.405000px;}
.y21_c00116{bottom:456.825000px;}
.y23_c00116{bottom:457.470000px;}
.y24_c00116{bottom:457.695000px;}
.y1f_c00116{bottom:458.550000px;}
.y20_c00116{bottom:458.970000px;}
.y1_c00116{bottom:1097.745000px;}
.y2_c00116{bottom:1098.630000px;}
.h8_c00116{height:16.752334px;}
.h2_c00116{height:23.025234px;}
.h5_c00116{height:25.091602px;}
.h4_c00116{height:31.364502px;}
.h3_c00116{height:35.571035px;}
.h7_c00116{height:39.777568px;}
.h1_c00116{height:43.910303px;}
.h6_c00116{height:48.116836px;}
.h0_c00116{height:1335.000000px;}
.w0_c00116{width:880.500000px;}
.x0_c00116{left:0.000000px;}
.x3_c00116{left:151.080000px;}
.x10_c00116{left:153.000000px;}
.x35_c00116{left:169.500000px;}
.x4_c00116{left:171.000000px;}
.x43_c00116{left:181.920000px;}
.x1d_c00116{left:186.000000px;}
.x29_c00116{left:196.500000px;}
.x36_c00116{left:201.000000px;}
.x44_c00116{left:204.000000px;}
.x4e_c00116{left:207.000000px;}
.x5_c00116{left:226.080000px;}
.x11_c00116{left:229.500000px;}
.x54_c00116{left:232.080000px;}
.x1e_c00116{left:233.145000px;}
.x2a_c00116{left:236.580000px;}
.x45_c00116{left:256.080000px;}
.x2b_c00116{left:265.920000px;}
.x6_c00116{left:270.000000px;}
.x37_c00116{left:274.920000px;}
.x1f_c00116{left:282.000000px;}
.x46_c00116{left:283.500000px;}
.x55_c00116{left:291.000000px;}
.x5f_c00116{left:297.000000px;}
.x2c_c00116{left:306.000000px;}
.x38_c00116{left:312.000000px;}
.x7_c00116{left:321.000000px;}
.x2d_c00116{left:322.500000px;}
.x47_c00116{left:334.500000px;}
.x39_c00116{left:341.580000px;}
.x12_c00116{left:343.500000px;}
.x60_c00116{left:348.000000px;}
.x48_c00116{left:351.000000px;}
.x3a_c00116{left:358.080000px;}
.x20_c00116{left:364.500000px;}
.x13_c00116{left:367.080000px;}
.x3b_c00116{left:371.580000px;}
.x56_c00116{left:375.000000px;}
.x8_c00116{left:382.500000px;}
.x49_c00116{left:387.420000px;}
.x2_c00116{left:396.000000px;}
.x21_c00116{left:397.500000px;}
.x9_c00116{left:402.000000px;}
.x3c_c00116{left:415.080000px;}
.x2e_c00116{left:417.000000px;}
.x14_c00116{left:418.500000px;}
.x61_c00116{left:420.420000px;}
.x57_c00116{left:423.000000px;}
.x4a_c00116{left:429.000000px;}
.x15_c00116{left:435.000000px;}
.x3d_c00116{left:436.500000px;}
.x4b_c00116{left:439.080000px;}
.xa_c00116{left:447.000000px;}
.x16_c00116{left:463.500000px;}
.x22_c00116{left:470.580000px;}
.x3e_c00116{left:472.920000px;}
.x58_c00116{left:475.500000px;}
.xb_c00116{left:478.500000px;}
.x62_c00116{left:484.500000px;}
.x2f_c00116{left:486.420000px;}
.x59_c00116{left:492.000000px;}
.x63_c00116{left:499.080000px;}
.x3f_c00116{left:517.500000px;}
.x4c_c00116{left:519.420000px;}
.x30_c00116{left:520.500000px;}
.x5a_c00116{left:526.920000px;}
.x17_c00116{left:532.500000px;}
.x40_c00116{left:535.500000px;}
.x31_c00116{left:541.080000px;}
.x23_c00116{left:550.920000px;}
.xc_c00116{left:552.000000px;}
.x18_c00116{left:553.500000px;}
.x4f_c00116{left:559.500000px;}
.x5b_c00116{left:568.080000px;}
.x32_c00116{left:573.000000px;}
.x24_c00116{left:574.500000px;}
.x64_c00116{left:579.420000px;}
.x5c_c00116{left:586.920000px;}
.x41_c00116{left:594.000000px;}
.x19_c00116{left:595.500000px;}
.x25_c00116{left:601.500000px;}
.x33_c00116{left:602.580000px;}
.x50_c00116{left:605.580000px;}
.x5d_c00116{left:613.500000px;}
.xd_c00116{left:623.580000px;}
.x65_c00116{left:625.920000px;}
.x5e_c00116{left:628.080000px;}
.x51_c00116{left:630.420000px;}
.x1a_c00116{left:637.920000px;}
.x42_c00116{left:639.420000px;}
.x26_c00116{left:643.080000px;}
.xe_c00116{left:663.420000px;}
.x1b_c00116{left:665.580000px;}
.x52_c00116{left:671.580000px;}
.x27_c00116{left:676.500000px;}
.x53_c00116{left:678.000000px;}
.x34_c00116{left:684.420000px;}
.x4d_c00116{left:687.000000px;}
.xf_c00116{left:694.500000px;}
.x28_c00116{left:697.500000px;}
.x1_c00116{left:709.500000px;}
.x1c_c00116{left:716.580000px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.ls0_c00116{letter-spacing:0.000000pt;}
.ws0_c00116{word-spacing:-6.620751pt;}
.ws1_c00116{word-spacing:0.000000pt;}
.fs7_c00116{font-size:12.106667pt;}
.fs1_c00116{font-size:16.640000pt;}
.fs4_c00116{font-size:18.133333pt;}
.fs3_c00116{font-size:22.666667pt;}
.fs2_c00116{font-size:25.706667pt;}
.fs6_c00116{font-size:28.746667pt;}
.fs0_c00116{font-size:31.733333pt;}
.fs5_c00116{font-size:34.773333pt;}
.y0_c00116{bottom:0.000000pt;}
.y19_c00116{bottom:248.360000pt;}
.y18_c00116{bottom:249.306667pt;}
.y17_c00116{bottom:249.493333pt;}
.y1a_c00116{bottom:249.693333pt;}
.y1c_c00116{bottom:250.440000pt;}
.y1b_c00116{bottom:251.226667pt;}
.y16_c00116{bottom:252.360000pt;}
.y15_c00116{bottom:267.773333pt;}
.y12_c00116{bottom:285.106667pt;}
.y14_c00116{bottom:285.893333pt;}
.y13_c00116{bottom:287.026667pt;}
.y10_c00116{bottom:301.493333pt;}
.yd_c00116{bottom:301.693333pt;}
.ye_c00116{bottom:302.440000pt;}
.y11_c00116{bottom:303.973333pt;}
.yb_c00116{bottom:304.360000pt;}
.yc_c00116{bottom:304.560000pt;}
.yf_c00116{bottom:305.306667pt;}
.y8_c00116{bottom:319.773333pt;}
.y9_c00116{bottom:321.693333pt;}
.ya_c00116{bottom:322.640000pt;}
.y5_c00116{bottom:337.106667pt;}
.y7_c00116{bottom:338.266667pt;}
.y3_c00116{bottom:339.026667pt;}
.y4_c00116{bottom:339.226667pt;}
.y6_c00116{bottom:339.973333pt;}
.y2b_c00116{bottom:378.640000pt;}
.y28_c00116{bottom:379.400000pt;}
.y26_c00116{bottom:379.600000pt;}
.y29_c00116{bottom:380.360000pt;}
.y2a_c00116{bottom:380.560000pt;}
.y27_c00116{bottom:381.306667pt;}
.y25_c00116{bottom:381.506667pt;}
.y22_c00116{bottom:392.360000pt;}
.y2e_c00116{bottom:392.933333pt;}
.y2d_c00116{bottom:393.893333pt;}
.y2c_c00116{bottom:394.266667pt;}
.y1e_c00116{bottom:405.306667pt;}
.y1d_c00116{bottom:405.693333pt;}
.y21_c00116{bottom:406.066667pt;}
.y23_c00116{bottom:406.640000pt;}
.y24_c00116{bottom:406.840000pt;}
.y1f_c00116{bottom:407.600000pt;}
.y20_c00116{bottom:407.973333pt;}
.y1_c00116{bottom:975.773333pt;}
.y2_c00116{bottom:976.560000pt;}
.h8_c00116{height:14.890964pt;}
.h2_c00116{height:20.466875pt;}
.h5_c00116{height:22.303646pt;}
.h4_c00116{height:27.879557pt;}
.h3_c00116{height:31.618698pt;}
.h7_c00116{height:35.357839pt;}
.h1_c00116{height:39.031380pt;}
.h6_c00116{height:42.770521pt;}
.h0_c00116{height:1186.666667pt;}
.w0_c00116{width:782.666667pt;}
.x0_c00116{left:0.000000pt;}
.x3_c00116{left:134.293333pt;}
.x10_c00116{left:136.000000pt;}
.x35_c00116{left:150.666667pt;}
.x4_c00116{left:152.000000pt;}
.x43_c00116{left:161.706667pt;}
.x1d_c00116{left:165.333333pt;}
.x29_c00116{left:174.666667pt;}
.x36_c00116{left:178.666667pt;}
.x44_c00116{left:181.333333pt;}
.x4e_c00116{left:184.000000pt;}
.x5_c00116{left:200.960000pt;}
.x11_c00116{left:204.000000pt;}
.x54_c00116{left:206.293333pt;}
.x1e_c00116{left:207.240000pt;}
.x2a_c00116{left:210.293333pt;}
.x45_c00116{left:227.626667pt;}
.x2b_c00116{left:236.373333pt;}
.x6_c00116{left:240.000000pt;}
.x37_c00116{left:244.373333pt;}
.x1f_c00116{left:250.666667pt;}
.x46_c00116{left:252.000000pt;}
.x55_c00116{left:258.666667pt;}
.x5f_c00116{left:264.000000pt;}
.x2c_c00116{left:272.000000pt;}
.x38_c00116{left:277.333333pt;}
.x7_c00116{left:285.333333pt;}
.x2d_c00116{left:286.666667pt;}
.x47_c00116{left:297.333333pt;}
.x39_c00116{left:303.626667pt;}
.x12_c00116{left:305.333333pt;}
.x60_c00116{left:309.333333pt;}
.x48_c00116{left:312.000000pt;}
.x3a_c00116{left:318.293333pt;}
.x20_c00116{left:324.000000pt;}
.x13_c00116{left:326.293333pt;}
.x3b_c00116{left:330.293333pt;}
.x56_c00116{left:333.333333pt;}
.x8_c00116{left:340.000000pt;}
.x49_c00116{left:344.373333pt;}
.x2_c00116{left:352.000000pt;}
.x21_c00116{left:353.333333pt;}
.x9_c00116{left:357.333333pt;}
.x3c_c00116{left:368.960000pt;}
.x2e_c00116{left:370.666667pt;}
.x14_c00116{left:372.000000pt;}
.x61_c00116{left:373.706667pt;}
.x57_c00116{left:376.000000pt;}
.x4a_c00116{left:381.333333pt;}
.x15_c00116{left:386.666667pt;}
.x3d_c00116{left:388.000000pt;}
.x4b_c00116{left:390.293333pt;}
.xa_c00116{left:397.333333pt;}
.x16_c00116{left:412.000000pt;}
.x22_c00116{left:418.293333pt;}
.x3e_c00116{left:420.373333pt;}
.x58_c00116{left:422.666667pt;}
.xb_c00116{left:425.333333pt;}
.x62_c00116{left:430.666667pt;}
.x2f_c00116{left:432.373333pt;}
.x59_c00116{left:437.333333pt;}
.x63_c00116{left:443.626667pt;}
.x3f_c00116{left:460.000000pt;}
.x4c_c00116{left:461.706667pt;}
.x30_c00116{left:462.666667pt;}
.x5a_c00116{left:468.373333pt;}
.x17_c00116{left:473.333333pt;}
.x40_c00116{left:476.000000pt;}
.x31_c00116{left:480.960000pt;}
.x23_c00116{left:489.706667pt;}
.xc_c00116{left:490.666667pt;}
.x18_c00116{left:492.000000pt;}
.x4f_c00116{left:497.333333pt;}
.x5b_c00116{left:504.960000pt;}
.x32_c00116{left:509.333333pt;}
.x24_c00116{left:510.666667pt;}
.x64_c00116{left:515.040000pt;}
.x5c_c00116{left:521.706667pt;}
.x41_c00116{left:528.000000pt;}
.x19_c00116{left:529.333333pt;}
.x25_c00116{left:534.666667pt;}
.x33_c00116{left:535.626667pt;}
.x50_c00116{left:538.293333pt;}
.x5d_c00116{left:545.333333pt;}
.xd_c00116{left:554.293333pt;}
.x65_c00116{left:556.373333pt;}
.x5e_c00116{left:558.293333pt;}
.x51_c00116{left:560.373333pt;}
.x1a_c00116{left:567.040000pt;}
.x42_c00116{left:568.373333pt;}
.x26_c00116{left:571.626667pt;}
.xe_c00116{left:589.706667pt;}
.x1b_c00116{left:591.626667pt;}
.x52_c00116{left:596.960000pt;}
.x27_c00116{left:601.333333pt;}
.x53_c00116{left:602.666667pt;}
.x34_c00116{left:608.373333pt;}
.x4d_c00116{left:610.666667pt;}
.xf_c00116{left:617.333333pt;}
.x28_c00116{left:620.000000pt;}
.x1_c00116{left:630.666667pt;}
.x1c_c00116{left:636.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_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_d62fabf84ba9f27f0d539fe3.woff2')format("woff");}.ff1_c00117{font-family:ff1_c00117;line-height:1.688965;font-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_c00117{transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);}
.mcc_c00117{transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);}
.m31_c00117{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m4_c00117{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m7_c00117{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mb6_c00117{transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);}
.mac_c00117{transform:matrix(0.371933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371933,0.000000,0.000000,0.250000,0,0);}
.mb5_c00117{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m64_c00117{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m55_c00117{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m4b_c00117{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m7f_c00117{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m26_c00117{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m60_c00117{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m87_c00117{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.md_c00117{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m8d_c00117{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.ma7_c00117{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m98_c00117{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m27_c00117{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m23_c00117{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m2b_c00117{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m67_c00117{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m94_c00117{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m9e_c00117{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.mf_c00117{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m51_c00117{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m88_c00117{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m59_c00117{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m5c_c00117{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m8f_c00117{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mbe_c00117{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.ma0_c00117{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m7c_c00117{transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);}
.m1d_c00117{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m6a_c00117{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m1c_c00117{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.mb_c00117{transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);}
.m28_c00117{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.m61_c00117{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.maf_c00117{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m73_c00117{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m3c_c00117{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m5b_c00117{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m9a_c00117{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.ma1_c00117{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m68_c00117{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m75_c00117{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m1e_c00117{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m10_c00117{transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);}
.mb2_c00117{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m25_c00117{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m21_c00117{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m82_c00117{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m33_c00117{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m12_c00117{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m4c_c00117{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.ma_c00117{transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);}
.m97_c00117{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.mba_c00117{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m48_c00117{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m96_c00117{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m70_c00117{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m91_c00117{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m6f_c00117{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.mc6_c00117{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m9f_c00117{transform:matrix(0.462430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462430,0.000000,0.000000,0.250000,0,0);}
.m71_c00117{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m83_c00117{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m77_c00117{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.mb0_c00117{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.mc5_c00117{transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);}
.m63_c00117{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m8_c00117{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.mb9_c00117{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.mc2_c00117{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m72_c00117{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.m86_c00117{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.m6_c00117{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m8b_c00117{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m32_c00117{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mc_c00117{transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);}
.m14_c00117{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m90_c00117{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.mcb_c00117{transform:matrix(0.484706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484706,0.000000,0.000000,0.250000,0,0);}
.m0_c00117{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m1a_c00117{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m45_c00117{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.ma6_c00117{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.ma4_c00117{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m4f_c00117{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mbb_c00117{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.me_c00117{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);}
.ma2_c00117{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m95_c00117{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m3a_c00117{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mbd_c00117{transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);}
.m5d_c00117{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m47_c00117{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mc9_c00117{transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);}
.mc3_c00117{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.m50_c00117{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m7e_c00117{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m36_c00117{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.mca_c00117{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m38_c00117{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.ma8_c00117{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m9_c00117{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_c00117{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m9b_c00117{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.mab_c00117{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.mb8_c00117{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mc0_c00117{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m9d_c00117{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m42_c00117{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m6d_c00117{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m43_c00117{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m3d_c00117{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m76_c00117{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m54_c00117{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m5a_c00117{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m22_c00117{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m5f_c00117{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m8e_c00117{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mb3_c00117{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m15_c00117{transform:matrix(0.540441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540441,0.000000,0.000000,0.250000,0,0);}
.mae_c00117{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m2d_c00117{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m46_c00117{transform:matrix(0.541667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541667,0.000000,0.000000,0.250000,0,0);}
.mb4_c00117{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m29_c00117{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m41_c00117{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m9c_c00117{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m99_c00117{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.m5_c00117{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m74_c00117{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m11_c00117{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m52_c00117{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m85_c00117{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m3f_c00117{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m92_c00117{transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);}
.m34_c00117{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m40_c00117{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m37_c00117{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m2c_c00117{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m17_c00117{transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);}
.mb7_c00117{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.ma9_c00117{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m53_c00117{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m4d_c00117{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m8c_c00117{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.maa_c00117{transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);}
.m6b_c00117{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mc1_c00117{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mbf_c00117{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m69_c00117{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m2f_c00117{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m62_c00117{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.ma3_c00117{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m35_c00117{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m3e_c00117{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m89_c00117{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m49_c00117{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.ma5_c00117{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m6e_c00117{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mad_c00117{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m8a_c00117{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m16_c00117{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.mbc_c00117{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.m30_c00117{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_c00117{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m84_c00117{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m7b_c00117{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m39_c00117{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m2_c00117{transform:matrix(0.627075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627075,0.000000,0.000000,0.250000,0,0);}
.m20_c00117{transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);}
.m80_c00117{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m3_c00117{transform:matrix(0.641079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641079,0.000000,0.000000,0.250000,0,0);}
.mc4_c00117{transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);}
.m78_c00117{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m2e_c00117{transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);}
.m18_c00117{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m65_c00117{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.mb1_c00117{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m57_c00117{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mc7_c00117{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m19_c00117{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.m6c_c00117{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.mc8_c00117{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m56_c00117{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m66_c00117{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m13_c00117{transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);}
.m5e_c00117{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m58_c00117{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m7d_c00117{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m44_c00117{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m2a_c00117{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m4e_c00117{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m93_c00117{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m79_c00117{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m7a_c00117{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m4a_c00117{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m81_c00117{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m24_c00117{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m1f_c00117{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00117{vertical-align:0.000000px;}
.ls0_c00117{letter-spacing:0.000000px;}
.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:-3.557922px;}
.ws1_c00117{word-spacing:0.000000px;}
.fc0_c00117{color:transparent;}
.fs5_c00117{font-size:3.420000px;}
.fs6_c00117{font-size:18.720000px;}
.fs1_c00117{font-size:20.400000px;}
.fs4_c00117{font-size:25.500000px;}
.fs0_c00117{font-size:28.920000px;}
.fs3_c00117{font-size:32.340000px;}
.fs2_c00117{font-size:35.700000px;}
.fs7_c00117{font-size:39.120000px;}
.y0_c00117{bottom:0.000000px;}
.y8b_c00117{bottom:250.905000px;}
.y86_c00117{bottom:251.745000px;}
.y88_c00117{bottom:252.825000px;}
.y8c_c00117{bottom:253.470000px;}
.y87_c00117{bottom:253.905000px;}
.y89_c00117{bottom:254.970000px;}
.y8a_c00117{bottom:255.405000px;}
.y83_c00117{bottom:270.825000px;}
.y84_c00117{bottom:271.245000px;}
.y85_c00117{bottom:272.325000px;}
.y7f_c00117{bottom:273.405000px;}
.y81_c00117{bottom:273.630000px;}
.y80_c00117{bottom:274.470000px;}
.y82_c00117{bottom:274.905000px;}
.y7e_c00117{bottom:290.745000px;}
.y79_c00117{bottom:291.825000px;}
.y7d_c00117{bottom:292.245000px;}
.y78_c00117{bottom:292.470000px;}
.y7b_c00117{bottom:292.905000px;}
.y7a_c00117{bottom:293.130000px;}
.y7c_c00117{bottom:294.405000px;}
.y75_c00117{bottom:310.680000px;}
.y73_c00117{bottom:311.745000px;}
.y71_c00117{bottom:311.970000px;}
.y76_c00117{bottom:312.630000px;}
.y77_c00117{bottom:313.470000px;}
.y72_c00117{bottom:313.905000px;}
.y74_c00117{bottom:314.970000px;}
.y70_c00117{bottom:329.970000px;}
.y6e_c00117{bottom:331.245000px;}
.y6f_c00117{bottom:332.130000px;}
.y6d_c00117{bottom:333.405000px;}
.y6a_c00117{bottom:352.905000px;}
.y6b_c00117{bottom:353.130000px;}
.y6c_c00117{bottom:353.970000px;}
.y69_c00117{bottom:370.245000px;}
.y68_c00117{bottom:371.325000px;}
.y66_c00117{bottom:371.970000px;}
.y67_c00117{bottom:372.405000px;}
.y65_c00117{bottom:389.745000px;}
.y62_c00117{bottom:390.825000px;}
.y64_c00117{bottom:391.245000px;}
.y61_c00117{bottom:391.905000px;}
.y63_c00117{bottom:393.405000px;}
.y5c_c00117{bottom:409.245000px;}
.y5e_c00117{bottom:410.745000px;}
.y60_c00117{bottom:411.405000px;}
.y5d_c00117{bottom:411.825000px;}
.y5f_c00117{bottom:412.470000px;}
.y5a_c00117{bottom:412.905000px;}
.y5b_c00117{bottom:413.970000px;}
.y58_c00117{bottom:429.405000px;}
.y54_c00117{bottom:430.245000px;}
.y59_c00117{bottom:431.130000px;}
.y56_c00117{bottom:431.325000px;}
.y55_c00117{bottom:432.405000px;}
.y57_c00117{bottom:432.630000px;}
.y50_c00117{bottom:449.745000px;}
.y52_c00117{bottom:450.825000px;}
.y53_c00117{bottom:451.470000px;}
.y51_c00117{bottom:451.905000px;}
.y4e_c00117{bottom:468.405000px;}
.y4c_c00117{bottom:469.245000px;}
.y4b_c00117{bottom:470.325000px;}
.y4f_c00117{bottom:470.970000px;}
.y4d_c00117{bottom:471.405000px;}
.y49_c00117{bottom:487.905000px;}
.y43_c00117{bottom:488.745000px;}
.y47_c00117{bottom:489.630000px;}
.y46_c00117{bottom:489.825000px;}
.y4a_c00117{bottom:490.245000px;}
.y48_c00117{bottom:490.905000px;}
.y44_c00117{bottom:491.130000px;}
.y45_c00117{bottom:491.970000px;}
.y3f_c00117{bottom:508.245000px;}
.y3d_c00117{bottom:509.325000px;}
.y42_c00117{bottom:509.970000px;}
.y3e_c00117{bottom:510.405000px;}
.y41_c00117{bottom:510.825000px;}
.y40_c00117{bottom:511.905000px;}
.y3c_c00117{bottom:528.825000px;}
.y3a_c00117{bottom:529.905000px;}
.y3b_c00117{bottom:530.130000px;}
.y37_c00117{bottom:547.470000px;}
.y34_c00117{bottom:548.745000px;}
.y39_c00117{bottom:549.405000px;}
.y38_c00117{bottom:549.630000px;}
.y36_c00117{bottom:549.825000px;}
.y35_c00117{bottom:550.905000px;}
.y30_c00117{bottom:568.245000px;}
.y33_c00117{bottom:569.130000px;}
.y32_c00117{bottom:570.405000px;}
.y31_c00117{bottom:570.420000px;}
.y93_c00117{bottom:599.325000px;}
.y92_c00117{bottom:600.630000px;}
.y90_c00117{bottom:614.550000px;}
.y8e_c00117{bottom:615.405000px;}
.y91_c00117{bottom:615.630000px;}
.y8d_c00117{bottom:616.470000px;}
.y8f_c00117{bottom:617.550000px;}
.y2f_c00117{bottom:848.130000px;}
.y2e_c00117{bottom:848.970000px;}
.y2d_c00117{bottom:849.405000px;}
.y2c_c00117{bottom:865.905000px;}
.y29_c00117{bottom:866.745000px;}
.y2b_c00117{bottom:867.630000px;}
.y2a_c00117{bottom:868.905000px;}
.y28_c00117{bottom:886.245000px;}
.y26_c00117{bottom:887.325000px;}
.y24_c00117{bottom:888.405000px;}
.y25_c00117{bottom:888.630000px;}
.y27_c00117{bottom:889.905000px;}
.y22_c00117{bottom:906.180000px;}
.y23_c00117{bottom:907.245000px;}
.y1f_c00117{bottom:907.905000px;}
.y20_c00117{bottom:909.405000px;}
.y21_c00117{bottom:909.420000px;}
.y1c_c00117{bottom:925.245000px;}
.y1e_c00117{bottom:926.745000px;}
.y19_c00117{bottom:927.405000px;}
.y1b_c00117{bottom:928.470000px;}
.y1d_c00117{bottom:928.905000px;}
.y1a_c00117{bottom:928.920000px;}
.y17_c00117{bottom:946.245000px;}
.y15_c00117{bottom:947.130000px;}
.y14_c00117{bottom:948.405000px;}
.y16_c00117{bottom:948.420000px;}
.y18_c00117{bottom:949.470000px;}
.y11_c00117{bottom:965.745000px;}
.y13_c00117{bottom:966.825000px;}
.y12_c00117{bottom:967.920000px;}
.yd_c00117{bottom:985.245000px;}
.y10_c00117{bottom:986.325000px;}
.yf_c00117{bottom:987.405000px;}
.ye_c00117{bottom:987.420000px;}
.yc_c00117{bottom:1012.050000px;}
.y9_c00117{bottom:1012.905000px;}
.ya_c00117{bottom:1013.970000px;}
.yb_c00117{bottom:1015.050000px;}
.y8_c00117{bottom:1031.325000px;}
.y6_c00117{bottom:1032.405000px;}
.y7_c00117{bottom:1034.550000px;}
.y4_c00117{bottom:1058.745000px;}
.y5_c00117{bottom:1059.825000px;}
.y3_c00117{bottom:1060.905000px;}
.y2_c00117{bottom:1099.050000px;}
.y1_c00117{bottom:1099.905000px;}
.h6_c00117{height:4.206533px;}
.h7_c00117{height:23.025234px;}
.h2_c00117{height:25.091602px;}
.h5_c00117{height:31.364502px;}
.h1_c00117{height:35.571035px;}
.h4_c00117{height:39.777568px;}
.h3_c00117{height:43.910303px;}
.h8_c00117{height:48.116836px;}
.h0_c00117{height:1335.000000px;}
.w0_c00117{width:880.500000px;}
.x0_c00117{left:0.000000px;}
.xbb_c00117{left:150.000000px;}
.x62_c00117{left:151.500000px;}
.x58_c00117{left:152.580000px;}
.x1_c00117{left:154.080000px;}
.xb4_c00117{left:166.500000px;}
.x12_c00117{left:167.580000px;}
.x1e_c00117{left:169.920000px;}
.xa3_c00117{left:171.420000px;}
.xbc_c00117{left:178.080000px;}
.xd2_c00117{left:182.355000px;}
.xc4_c00117{left:184.500000px;}
.x43_c00117{left:190.080000px;}
.x70_c00117{left:195.000000px;}
.xaf_c00117{left:196.500000px;}
.xa4_c00117{left:198.420000px;}
.x59_c00117{left:204.000000px;}
.x86_c00117{left:205.500000px;}
.x7d_c00117{left:207.000000px;}
.x4d_c00117{left:208.500000px;}
.x1f_c00117{left:210.420000px;}
.x98_c00117{left:213.000000px;}
.xd3_c00117{left:221.580000px;}
.x5a_c00117{left:223.500000px;}
.x63_c00117{left:224.580000px;}
.x91_c00117{left:226.920000px;}
.x76_c00117{left:229.920000px;}
.x8b_c00117{left:231.000000px;}
.xb0_c00117{left:234.420000px;}
.xa8_c00117{left:238.500000px;}
.x71_c00117{left:243.420000px;}
.x9_c00117{left:244.500000px;}
.x13_c00117{left:246.420000px;}
.x7e_c00117{left:247.500000px;}
.x2b_c00117{left:250.500000px;}
.x38_c00117{left:252.000000px;}
.x5b_c00117{left:255.000000px;}
.x77_c00117{left:256.500000px;}
.x99_c00117{left:257.580000px;}
.xc5_c00117{left:259.920000px;}
.x24_c00117{left:261.000000px;}
.x2f_c00117{left:262.500000px;}
.x44_c00117{left:264.000000px;}
.xb1_c00117{left:265.500000px;}
.xbd_c00117{left:267.420000px;}
.x20_c00117{left:270.000000px;}
.x39_c00117{left:271.080000px;}
.xa9_c00117{left:274.080000px;}
.x5c_c00117{left:276.000000px;}
.x64_c00117{left:280.080000px;}
.x25_c00117{left:282.000000px;}
.x30_c00117{left:283.500000px;}
.xc6_c00117{left:286.500000px;}
.x21_c00117{left:291.000000px;}
.xaa_c00117{left:294.420000px;}
.x9a_c00117{left:297.000000px;}
.x65_c00117{left:298.500000px;}
.x14_c00117{left:300.855000px;}
.xb2_c00117{left:301.920000px;}
.x3_c00117{left:306.000000px;}
.x8c_c00117{left:307.920000px;}
.xa_c00117{left:309.855000px;}
.x5d_c00117{left:310.920000px;}
.x7f_c00117{left:312.000000px;}
.x31_c00117{left:313.500000px;}
.x15_c00117{left:315.000000px;}
.xab_c00117{left:319.920000px;}
.x2c_c00117{left:323.580000px;}
.xc7_c00117{left:325.080000px;}
.x4e_c00117{left:327.000000px;}
.x22_c00117{left:328.920000px;}
.x9b_c00117{left:331.080000px;}
.xb_c00117{left:333.000000px;}
.x45_c00117{left:337.500000px;}
.xbe_c00117{left:341.580000px;}
.xb5_c00117{left:343.500000px;}
.x3a_c00117{left:345.000000px;}
.x26_c00117{left:346.275000px;}
.x9c_c00117{left:348.000000px;}
.x2d_c00117{left:349.500000px;}
.x4f_c00117{left:351.000000px;}
.x78_c00117{left:354.420000px;}
.xc8_c00117{left:355.500000px;}
.x87_c00117{left:358.920000px;}
.x66_c00117{left:361.500000px;}
.x32_c00117{left:364.500000px;}
.x46_c00117{left:367.080000px;}
.x4_c00117{left:373.500000px;}
.x16_c00117{left:375.855000px;}
.xc_c00117{left:379.920000px;}
.x79_c00117{left:381.000000px;}
.x5e_c00117{left:382.920000px;}
.x23_c00117{left:384.000000px;}
.x27_c00117{left:387.000000px;}
.xbf_c00117{left:388.500000px;}
.x80_c00117{left:390.000000px;}
.x50_c00117{left:391.500000px;}
.x67_c00117{left:394.500000px;}
.xd4_c00117{left:397.500000px;}
.xc9_c00117{left:400.500000px;}
.x2_c00117{left:402.000000px;}
.xd_c00117{left:405.000000px;}
.x17_c00117{left:411.000000px;}
.x28_c00117{left:414.000000px;}
.x33_c00117{left:415.080000px;}
.xcc_c00117{left:417.000000px;}
.xb6_c00117{left:418.080000px;}
.x81_c00117{left:420.000000px;}
.x3b_c00117{left:421.080000px;}
.x7a_c00117{left:423.000000px;}
.x51_c00117{left:424.080000px;}
.xca_c00117{left:427.500000px;}
.x47_c00117{left:430.500000px;}
.x68_c00117{left:433.500000px;}
.x88_c00117{left:435.000000px;}
.xac_c00117{left:441.000000px;}
.x48_c00117{left:442.500000px;}
.x18_c00117{left:444.000000px;}
.x5_c00117{left:449.580000px;}
.xb3_c00117{left:451.500000px;}
.x52_c00117{left:454.500000px;}
.x9d_c00117{left:456.000000px;}
.x8d_c00117{left:457.500000px;}
.x92_c00117{left:459.000000px;}
.x34_c00117{left:465.420000px;}
.x5f_c00117{left:466.500000px;}
.x3c_c00117{left:469.080000px;}
.x6_c00117{left:472.500000px;}
.x29_c00117{left:475.275000px;}
.x7b_c00117{left:478.080000px;}
.x49_c00117{left:480.420000px;}
.xa5_c00117{left:483.420000px;}
.xe_c00117{left:487.920000px;}
.xd5_c00117{left:490.500000px;}
.x7_c00117{left:493.920000px;}
.x2e_c00117{left:495.000000px;}
.x72_c00117{left:496.500000px;}
.xc0_c00117{left:498.420000px;}
.x53_c00117{left:501.000000px;}
.x35_c00117{left:502.500000px;}
.x9e_c00117{left:505.080000px;}
.x19_c00117{left:507.000000px;}
.x69_c00117{left:513.420000px;}
.x2a_c00117{left:516.000000px;}
.xad_c00117{left:517.500000px;}
.x9f_c00117{left:523.080000px;}
.x54_c00117{left:526.080000px;}
.xb7_c00117{left:528.420000px;}
.x89_c00117{left:531.000000px;}
.x3d_c00117{left:532.920000px;}
.x60_c00117{left:535.500000px;}
.x1a_c00117{left:541.500000px;}
.x8e_c00117{left:543.000000px;}
.x8_c00117{left:544.275000px;}
.x73_c00117{left:546.000000px;}
.x6a_c00117{left:550.920000px;}
.x7c_c00117{left:553.920000px;}
.x3e_c00117{left:561.000000px;}
.xf_c00117{left:563.580000px;}
.x55_c00117{left:566.580000px;}
.xd1_c00117{left:568.080000px;}
.x93_c00117{left:569.580000px;}
.x1b_c00117{left:573.000000px;}
.x36_c00117{left:575.580000px;}
.x6b_c00117{left:579.420000px;}
.x10_c00117{left:585.855000px;}
.x4a_c00117{left:589.500000px;}
.x61_c00117{left:590.580000px;}
.xb8_c00117{left:598.500000px;}
.x74_c00117{left:601.500000px;}
.x11_c00117{left:602.580000px;}
.xa6_c00117{left:604.500000px;}
.x37_c00117{left:607.080000px;}
.xb9_c00117{left:610.500000px;}
.x1c_c00117{left:611.580000px;}
.x3f_c00117{left:613.920000px;}
.x94_c00117{left:615.420000px;}
.xcd_c00117{left:616.500000px;}
.x6c_c00117{left:621.000000px;}
.x82_c00117{left:624.420000px;}
.xc1_c00117{left:632.580000px;}
.xcf_c00117{left:634.080000px;}
.x1d_c00117{left:636.420000px;}
.x56_c00117{left:637.500000px;}
.x40_c00117{left:639.420000px;}
.xa0_c00117{left:643.080000px;}
.x4b_c00117{left:646.500000px;}
.x95_c00117{left:648.000000px;}
.xc2_c00117{left:651.420000px;}
.x75_c00117{left:652.500000px;}
.x8a_c00117{left:655.500000px;}
.x83_c00117{left:659.580000px;}
.xa1_c00117{left:661.920000px;}
.x41_c00117{left:666.420000px;}
.xcb_c00117{left:669.000000px;}
.x6d_c00117{left:670.500000px;}
.xa7_c00117{left:671.580000px;}
.xba_c00117{left:673.920000px;}
.x8f_c00117{left:676.920000px;}
.xc3_c00117{left:678.000000px;}
.x96_c00117{left:679.920000px;}
.xae_c00117{left:682.500000px;}
.x4c_c00117{left:684.000000px;}
.xa2_c00117{left:687.420000px;}
.x84_c00117{left:691.080000px;}
.x6e_c00117{left:694.500000px;}
.xce_c00117{left:697.500000px;}
.x42_c00117{left:700.920000px;}
.x85_c00117{left:703.500000px;}
.x90_c00117{left:705.420000px;}
.x6f_c00117{left:706.500000px;}
.x57_c00117{left:711.000000px;}
.xd0_c00117{left:715.500000px;}
.x97_c00117{left:720.000000px;}
@media print{
.v0_c00117{vertical-align:0.000000pt;}
.ls0_c00117{letter-spacing:0.000000pt;}
.ws0_c00117{word-spacing:-3.162597pt;}
.ws1_c00117{word-spacing:0.000000pt;}
.fs5_c00117{font-size:3.040000pt;}
.fs6_c00117{font-size:16.640000pt;}
.fs1_c00117{font-size:18.133333pt;}
.fs4_c00117{font-size:22.666667pt;}
.fs0_c00117{font-size:25.706667pt;}
.fs3_c00117{font-size:28.746667pt;}
.fs2_c00117{font-size:31.733333pt;}
.fs7_c00117{font-size:34.773333pt;}
.y0_c00117{bottom:0.000000pt;}
.y8b_c00117{bottom:223.026667pt;}
.y86_c00117{bottom:223.773333pt;}
.y88_c00117{bottom:224.733333pt;}
.y8c_c00117{bottom:225.306667pt;}
.y87_c00117{bottom:225.693333pt;}
.y89_c00117{bottom:226.640000pt;}
.y8a_c00117{bottom:227.026667pt;}
.y83_c00117{bottom:240.733333pt;}
.y84_c00117{bottom:241.106667pt;}
.y85_c00117{bottom:242.066667pt;}
.y7f_c00117{bottom:243.026667pt;}
.y81_c00117{bottom:243.226667pt;}
.y80_c00117{bottom:243.973333pt;}
.y82_c00117{bottom:244.360000pt;}
.y7e_c00117{bottom:258.440000pt;}
.y79_c00117{bottom:259.400000pt;}
.y7d_c00117{bottom:259.773333pt;}
.y78_c00117{bottom:259.973333pt;}
.y7b_c00117{bottom:260.360000pt;}
.y7a_c00117{bottom:260.560000pt;}
.y7c_c00117{bottom:261.693333pt;}
.y75_c00117{bottom:276.160000pt;}
.y73_c00117{bottom:277.106667pt;}
.y71_c00117{bottom:277.306667pt;}
.y76_c00117{bottom:277.893333pt;}
.y77_c00117{bottom:278.640000pt;}
.y72_c00117{bottom:279.026667pt;}
.y74_c00117{bottom:279.973333pt;}
.y70_c00117{bottom:293.306667pt;}
.y6e_c00117{bottom:294.440000pt;}
.y6f_c00117{bottom:295.226667pt;}
.y6d_c00117{bottom:296.360000pt;}
.y6a_c00117{bottom:313.693333pt;}
.y6b_c00117{bottom:313.893333pt;}
.y6c_c00117{bottom:314.640000pt;}
.y69_c00117{bottom:329.106667pt;}
.y68_c00117{bottom:330.066667pt;}
.y66_c00117{bottom:330.640000pt;}
.y67_c00117{bottom:331.026667pt;}
.y65_c00117{bottom:346.440000pt;}
.y62_c00117{bottom:347.400000pt;}
.y64_c00117{bottom:347.773333pt;}
.y61_c00117{bottom:348.360000pt;}
.y63_c00117{bottom:349.693333pt;}
.y5c_c00117{bottom:363.773333pt;}
.y5e_c00117{bottom:365.106667pt;}
.y60_c00117{bottom:365.693333pt;}
.y5d_c00117{bottom:366.066667pt;}
.y5f_c00117{bottom:366.640000pt;}
.y5a_c00117{bottom:367.026667pt;}
.y5b_c00117{bottom:367.973333pt;}
.y58_c00117{bottom:381.693333pt;}
.y54_c00117{bottom:382.440000pt;}
.y59_c00117{bottom:383.226667pt;}
.y56_c00117{bottom:383.400000pt;}
.y55_c00117{bottom:384.360000pt;}
.y57_c00117{bottom:384.560000pt;}
.y50_c00117{bottom:399.773333pt;}
.y52_c00117{bottom:400.733333pt;}
.y53_c00117{bottom:401.306667pt;}
.y51_c00117{bottom:401.693333pt;}
.y4e_c00117{bottom:416.360000pt;}
.y4c_c00117{bottom:417.106667pt;}
.y4b_c00117{bottom:418.066667pt;}
.y4f_c00117{bottom:418.640000pt;}
.y4d_c00117{bottom:419.026667pt;}
.y49_c00117{bottom:433.693333pt;}
.y43_c00117{bottom:434.440000pt;}
.y47_c00117{bottom:435.226667pt;}
.y46_c00117{bottom:435.400000pt;}
.y4a_c00117{bottom:435.773333pt;}
.y48_c00117{bottom:436.360000pt;}
.y44_c00117{bottom:436.560000pt;}
.y45_c00117{bottom:437.306667pt;}
.y3f_c00117{bottom:451.773333pt;}
.y3d_c00117{bottom:452.733333pt;}
.y42_c00117{bottom:453.306667pt;}
.y3e_c00117{bottom:453.693333pt;}
.y41_c00117{bottom:454.066667pt;}
.y40_c00117{bottom:455.026667pt;}
.y3c_c00117{bottom:470.066667pt;}
.y3a_c00117{bottom:471.026667pt;}
.y3b_c00117{bottom:471.226667pt;}
.y37_c00117{bottom:486.640000pt;}
.y34_c00117{bottom:487.773333pt;}
.y39_c00117{bottom:488.360000pt;}
.y38_c00117{bottom:488.560000pt;}
.y36_c00117{bottom:488.733333pt;}
.y35_c00117{bottom:489.693333pt;}
.y30_c00117{bottom:505.106667pt;}
.y33_c00117{bottom:505.893333pt;}
.y32_c00117{bottom:507.026667pt;}
.y31_c00117{bottom:507.040000pt;}
.y93_c00117{bottom:532.733333pt;}
.y92_c00117{bottom:533.893333pt;}
.y90_c00117{bottom:546.266667pt;}
.y8e_c00117{bottom:547.026667pt;}
.y91_c00117{bottom:547.226667pt;}
.y8d_c00117{bottom:547.973333pt;}
.y8f_c00117{bottom:548.933333pt;}
.y2f_c00117{bottom:753.893333pt;}
.y2e_c00117{bottom:754.640000pt;}
.y2d_c00117{bottom:755.026667pt;}
.y2c_c00117{bottom:769.693333pt;}
.y29_c00117{bottom:770.440000pt;}
.y2b_c00117{bottom:771.226667pt;}
.y2a_c00117{bottom:772.360000pt;}
.y28_c00117{bottom:787.773333pt;}
.y26_c00117{bottom:788.733333pt;}
.y24_c00117{bottom:789.693333pt;}
.y25_c00117{bottom:789.893333pt;}
.y27_c00117{bottom:791.026667pt;}
.y22_c00117{bottom:805.493333pt;}
.y23_c00117{bottom:806.440000pt;}
.y1f_c00117{bottom:807.026667pt;}
.y20_c00117{bottom:808.360000pt;}
.y21_c00117{bottom:808.373333pt;}
.y1c_c00117{bottom:822.440000pt;}
.y1e_c00117{bottom:823.773333pt;}
.y19_c00117{bottom:824.360000pt;}
.y1b_c00117{bottom:825.306667pt;}
.y1d_c00117{bottom:825.693333pt;}
.y1a_c00117{bottom:825.706667pt;}
.y17_c00117{bottom:841.106667pt;}
.y15_c00117{bottom:841.893333pt;}
.y14_c00117{bottom:843.026667pt;}
.y16_c00117{bottom:843.040000pt;}
.y18_c00117{bottom:843.973333pt;}
.y11_c00117{bottom:858.440000pt;}
.y13_c00117{bottom:859.400000pt;}
.y12_c00117{bottom:860.373333pt;}
.yd_c00117{bottom:875.773333pt;}
.y10_c00117{bottom:876.733333pt;}
.yf_c00117{bottom:877.693333pt;}
.ye_c00117{bottom:877.706667pt;}
.yc_c00117{bottom:899.600000pt;}
.y9_c00117{bottom:900.360000pt;}
.ya_c00117{bottom:901.306667pt;}
.yb_c00117{bottom:902.266667pt;}
.y8_c00117{bottom:916.733333pt;}
.y6_c00117{bottom:917.693333pt;}
.y7_c00117{bottom:919.600000pt;}
.y4_c00117{bottom:941.106667pt;}
.y5_c00117{bottom:942.066667pt;}
.y3_c00117{bottom:943.026667pt;}
.y2_c00117{bottom:976.933333pt;}
.y1_c00117{bottom:977.693333pt;}
.h6_c00117{height:3.739141pt;}
.h7_c00117{height:20.466875pt;}
.h2_c00117{height:22.303646pt;}
.h5_c00117{height:27.879557pt;}
.h1_c00117{height:31.618698pt;}
.h4_c00117{height:35.357839pt;}
.h3_c00117{height:39.031380pt;}
.h8_c00117{height:42.770521pt;}
.h0_c00117{height:1186.666667pt;}
.w0_c00117{width:782.666667pt;}
.x0_c00117{left:0.000000pt;}
.xbb_c00117{left:133.333333pt;}
.x62_c00117{left:134.666667pt;}
.x58_c00117{left:135.626667pt;}
.x1_c00117{left:136.960000pt;}
.xb4_c00117{left:148.000000pt;}
.x12_c00117{left:148.960000pt;}
.x1e_c00117{left:151.040000pt;}
.xa3_c00117{left:152.373333pt;}
.xbc_c00117{left:158.293333pt;}
.xd2_c00117{left:162.093333pt;}
.xc4_c00117{left:164.000000pt;}
.x43_c00117{left:168.960000pt;}
.x70_c00117{left:173.333333pt;}
.xaf_c00117{left:174.666667pt;}
.xa4_c00117{left:176.373333pt;}
.x59_c00117{left:181.333333pt;}
.x86_c00117{left:182.666667pt;}
.x7d_c00117{left:184.000000pt;}
.x4d_c00117{left:185.333333pt;}
.x1f_c00117{left:187.040000pt;}
.x98_c00117{left:189.333333pt;}
.xd3_c00117{left:196.960000pt;}
.x5a_c00117{left:198.666667pt;}
.x63_c00117{left:199.626667pt;}
.x91_c00117{left:201.706667pt;}
.x76_c00117{left:204.373333pt;}
.x8b_c00117{left:205.333333pt;}
.xb0_c00117{left:208.373333pt;}
.xa8_c00117{left:212.000000pt;}
.x71_c00117{left:216.373333pt;}
.x9_c00117{left:217.333333pt;}
.x13_c00117{left:219.040000pt;}
.x7e_c00117{left:220.000000pt;}
.x2b_c00117{left:222.666667pt;}
.x38_c00117{left:224.000000pt;}
.x5b_c00117{left:226.666667pt;}
.x77_c00117{left:228.000000pt;}
.x99_c00117{left:228.960000pt;}
.xc5_c00117{left:231.040000pt;}
.x24_c00117{left:232.000000pt;}
.x2f_c00117{left:233.333333pt;}
.x44_c00117{left:234.666667pt;}
.xb1_c00117{left:236.000000pt;}
.xbd_c00117{left:237.706667pt;}
.x20_c00117{left:240.000000pt;}
.x39_c00117{left:240.960000pt;}
.xa9_c00117{left:243.626667pt;}
.x5c_c00117{left:245.333333pt;}
.x64_c00117{left:248.960000pt;}
.x25_c00117{left:250.666667pt;}
.x30_c00117{left:252.000000pt;}
.xc6_c00117{left:254.666667pt;}
.x21_c00117{left:258.666667pt;}
.xaa_c00117{left:261.706667pt;}
.x9a_c00117{left:264.000000pt;}
.x65_c00117{left:265.333333pt;}
.x14_c00117{left:267.426667pt;}
.xb2_c00117{left:268.373333pt;}
.x3_c00117{left:272.000000pt;}
.x8c_c00117{left:273.706667pt;}
.xa_c00117{left:275.426667pt;}
.x5d_c00117{left:276.373333pt;}
.x7f_c00117{left:277.333333pt;}
.x31_c00117{left:278.666667pt;}
.x15_c00117{left:280.000000pt;}
.xab_c00117{left:284.373333pt;}
.x2c_c00117{left:287.626667pt;}
.xc7_c00117{left:288.960000pt;}
.x4e_c00117{left:290.666667pt;}
.x22_c00117{left:292.373333pt;}
.x9b_c00117{left:294.293333pt;}
.xb_c00117{left:296.000000pt;}
.x45_c00117{left:300.000000pt;}
.xbe_c00117{left:303.626667pt;}
.xb5_c00117{left:305.333333pt;}
.x3a_c00117{left:306.666667pt;}
.x26_c00117{left:307.800000pt;}
.x9c_c00117{left:309.333333pt;}
.x2d_c00117{left:310.666667pt;}
.x4f_c00117{left:312.000000pt;}
.x78_c00117{left:315.040000pt;}
.xc8_c00117{left:316.000000pt;}
.x87_c00117{left:319.040000pt;}
.x66_c00117{left:321.333333pt;}
.x32_c00117{left:324.000000pt;}
.x46_c00117{left:326.293333pt;}
.x4_c00117{left:332.000000pt;}
.x16_c00117{left:334.093333pt;}
.xc_c00117{left:337.706667pt;}
.x79_c00117{left:338.666667pt;}
.x5e_c00117{left:340.373333pt;}
.x23_c00117{left:341.333333pt;}
.x27_c00117{left:344.000000pt;}
.xbf_c00117{left:345.333333pt;}
.x80_c00117{left:346.666667pt;}
.x50_c00117{left:348.000000pt;}
.x67_c00117{left:350.666667pt;}
.xd4_c00117{left:353.333333pt;}
.xc9_c00117{left:356.000000pt;}
.x2_c00117{left:357.333333pt;}
.xd_c00117{left:360.000000pt;}
.x17_c00117{left:365.333333pt;}
.x28_c00117{left:368.000000pt;}
.x33_c00117{left:368.960000pt;}
.xcc_c00117{left:370.666667pt;}
.xb6_c00117{left:371.626667pt;}
.x81_c00117{left:373.333333pt;}
.x3b_c00117{left:374.293333pt;}
.x7a_c00117{left:376.000000pt;}
.x51_c00117{left:376.960000pt;}
.xca_c00117{left:380.000000pt;}
.x47_c00117{left:382.666667pt;}
.x68_c00117{left:385.333333pt;}
.x88_c00117{left:386.666667pt;}
.xac_c00117{left:392.000000pt;}
.x48_c00117{left:393.333333pt;}
.x18_c00117{left:394.666667pt;}
.x5_c00117{left:399.626667pt;}
.xb3_c00117{left:401.333333pt;}
.x52_c00117{left:404.000000pt;}
.x9d_c00117{left:405.333333pt;}
.x8d_c00117{left:406.666667pt;}
.x92_c00117{left:408.000000pt;}
.x34_c00117{left:413.706667pt;}
.x5f_c00117{left:414.666667pt;}
.x3c_c00117{left:416.960000pt;}
.x6_c00117{left:420.000000pt;}
.x29_c00117{left:422.466667pt;}
.x7b_c00117{left:424.960000pt;}
.x49_c00117{left:427.040000pt;}
.xa5_c00117{left:429.706667pt;}
.xe_c00117{left:433.706667pt;}
.xd5_c00117{left:436.000000pt;}
.x7_c00117{left:439.040000pt;}
.x2e_c00117{left:440.000000pt;}
.x72_c00117{left:441.333333pt;}
.xc0_c00117{left:443.040000pt;}
.x53_c00117{left:445.333333pt;}
.x35_c00117{left:446.666667pt;}
.x9e_c00117{left:448.960000pt;}
.x19_c00117{left:450.666667pt;}
.x69_c00117{left:456.373333pt;}
.x2a_c00117{left:458.666667pt;}
.xad_c00117{left:460.000000pt;}
.x9f_c00117{left:464.960000pt;}
.x54_c00117{left:467.626667pt;}
.xb7_c00117{left:469.706667pt;}
.x89_c00117{left:472.000000pt;}
.x3d_c00117{left:473.706667pt;}
.x60_c00117{left:476.000000pt;}
.x1a_c00117{left:481.333333pt;}
.x8e_c00117{left:482.666667pt;}
.x8_c00117{left:483.800000pt;}
.x73_c00117{left:485.333333pt;}
.x6a_c00117{left:489.706667pt;}
.x7c_c00117{left:492.373333pt;}
.x3e_c00117{left:498.666667pt;}
.xf_c00117{left:500.960000pt;}
.x55_c00117{left:503.626667pt;}
.xd1_c00117{left:504.960000pt;}
.x93_c00117{left:506.293333pt;}
.x1b_c00117{left:509.333333pt;}
.x36_c00117{left:511.626667pt;}
.x6b_c00117{left:515.040000pt;}
.x10_c00117{left:520.760000pt;}
.x4a_c00117{left:524.000000pt;}
.x61_c00117{left:524.960000pt;}
.xb8_c00117{left:532.000000pt;}
.x74_c00117{left:534.666667pt;}
.x11_c00117{left:535.626667pt;}
.xa6_c00117{left:537.333333pt;}
.x37_c00117{left:539.626667pt;}
.xb9_c00117{left:542.666667pt;}
.x1c_c00117{left:543.626667pt;}
.x3f_c00117{left:545.706667pt;}
.x94_c00117{left:547.040000pt;}
.xcd_c00117{left:548.000000pt;}
.x6c_c00117{left:552.000000pt;}
.x82_c00117{left:555.040000pt;}
.xc1_c00117{left:562.293333pt;}
.xcf_c00117{left:563.626667pt;}
.x1d_c00117{left:565.706667pt;}
.x56_c00117{left:566.666667pt;}
.x40_c00117{left:568.373333pt;}
.xa0_c00117{left:571.626667pt;}
.x4b_c00117{left:574.666667pt;}
.x95_c00117{left:576.000000pt;}
.xc2_c00117{left:579.040000pt;}
.x75_c00117{left:580.000000pt;}
.x8a_c00117{left:582.666667pt;}
.x83_c00117{left:586.293333pt;}
.xa1_c00117{left:588.373333pt;}
.x41_c00117{left:592.373333pt;}
.xcb_c00117{left:594.666667pt;}
.x6d_c00117{left:596.000000pt;}
.xa7_c00117{left:596.960000pt;}
.xba_c00117{left:599.040000pt;}
.x8f_c00117{left:601.706667pt;}
.xc3_c00117{left:602.666667pt;}
.x96_c00117{left:604.373333pt;}
.xae_c00117{left:606.666667pt;}
.x4c_c00117{left:608.000000pt;}
.xa2_c00117{left:611.040000pt;}
.x84_c00117{left:614.293333pt;}
.x6e_c00117{left:617.333333pt;}
.xce_c00117{left:620.000000pt;}
.x42_c00117{left:623.040000pt;}
.x85_c00117{left:625.333333pt;}
.x90_c00117{left:627.040000pt;}
.x6f_c00117{left:628.000000pt;}
.x57_c00117{left:632.000000pt;}
.xd0_c00117{left:636.000000pt;}
.x97_c00117{left:640.000000pt;}
}





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

.ir_c00118:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00118{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00118;src:url('chunks/assets/font_b5f9f8651ca74f4a869e95cf.woff2')format("woff");}.ff1_c00118{font-family:ff1_c00118;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m43_c00118{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00118{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.me3_c00118{transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);}
.mf1_c00118{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);}
.mb7_c00118{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m0_c00118{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.me_c00118{transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);}
.md7_c00118{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.mf5_c00118{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m11_c00118{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m3f_c00118{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m4a_c00118{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.mb5_c00118{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m19_c00118{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.mf9_c00118{transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);}
.ma0_c00118{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.md5_c00118{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.mbd_c00118{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mc6_c00118{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m64_c00118{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.me1_c00118{transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);}
.mb4_c00118{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m79_c00118{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m10_c00118{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m5_c00118{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.md9_c00118{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m61_c00118{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m27_c00118{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mcd_c00118{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.m7b_c00118{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.me8_c00118{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.mef_c00118{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m48_c00118{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m75_c00118{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m98_c00118{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m5c_c00118{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m52_c00118{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m26_c00118{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m89_c00118{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.med_c00118{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m69_c00118{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m3e_c00118{transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);}
.m6f_c00118{transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);}
.mdb_c00118{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m7c_c00118{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.mea_c00118{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m97_c00118{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m4f_c00118{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m66_c00118{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.ma1_c00118{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m7e_c00118{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mce_c00118{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m58_c00118{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mcc_c00118{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m36_c00118{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.md3_c00118{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m49_c00118{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m8d_c00118{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mf0_c00118{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.m9b_c00118{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.md_c00118{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m88_c00118{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.m5e_c00118{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m29_c00118{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mfb_c00118{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m9a_c00118{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m83_c00118{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mdd_c00118{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m6d_c00118{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.me4_c00118{transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);}
.me6_c00118{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m40_c00118{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.mda_c00118{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m9d_c00118{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m6b_c00118{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.me5_c00118{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m93_c00118{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m86_c00118{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m92_c00118{transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);}
.mb3_c00118{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mde_c00118{transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);}
.mee_c00118{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.mc2_c00118{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.m3a_c00118{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m9f_c00118{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m8e_c00118{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m20_c00118{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.mf7_c00118{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.m35_c00118{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m96_c00118{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.md2_c00118{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.mbb_c00118{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.ma3_c00118{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m55_c00118{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.m87_c00118{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.mc7_c00118{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m9_c00118{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m4e_c00118{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m7a_c00118{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.ma5_c00118{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m28_c00118{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m9c_c00118{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.me9_c00118{transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);}
.m42_c00118{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m8c_c00118{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m9e_c00118{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m68_c00118{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.ma9_c00118{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.mc0_c00118{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m1e_c00118{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m25_c00118{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m60_c00118{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m34_c00118{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m1f_c00118{transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);}
.m7f_c00118{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m50_c00118{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m3_c00118{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);}
.ma4_c00118{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.mca_c00118{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m54_c00118{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m8a_c00118{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.m47_c00118{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.meb_c00118{transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);}
.m24_c00118{transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);}
.m5d_c00118{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.md8_c00118{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m37_c00118{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m2f_c00118{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mba_c00118{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m46_c00118{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m3c_c00118{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m21_c00118{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.md1_c00118{transform:matrix(0.519017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519017,0.000000,0.000000,0.250000,0,0);}
.m45_c00118{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.ma7_c00118{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mad_c00118{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m53_c00118{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m7d_c00118{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mac_c00118{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m1d_c00118{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m44_c00118{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m4d_c00118{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.mc4_c00118{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m56_c00118{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m59_c00118{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.mc_c00118{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m22_c00118{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mf8_c00118{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m1a_c00118{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m78_c00118{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m32_c00118{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m62_c00118{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m2c_c00118{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m70_c00118{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m12_c00118{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m51_c00118{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m4b_c00118{transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);}
.m7_c00118{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.maa_c00118{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m14_c00118{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.mbc_c00118{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.mc1_c00118{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m6a_c00118{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.maf_c00118{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mae_c00118{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.ma_c00118{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m17_c00118{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m6e_c00118{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m30_c00118{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.me0_c00118{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);}
.m5a_c00118{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mdc_c00118{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.mc8_c00118{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m2d_c00118{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m63_c00118{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m1b_c00118{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m8_c00118{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m57_c00118{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mf3_c00118{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m85_c00118{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);}
.m67_c00118{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m3b_c00118{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m18_c00118{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m91_c00118{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m2a_c00118{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mf6_c00118{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.mfa_c00118{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.mc9_c00118{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m3d_c00118{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m76_c00118{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.mf4_c00118{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m4_c00118{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m8b_c00118{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.mdf_c00118{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.mec_c00118{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m99_c00118{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mf_c00118{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m33_c00118{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m82_c00118{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m81_c00118{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.mbe_c00118{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m72_c00118{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mc5_c00118{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m77_c00118{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.mb9_c00118{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m41_c00118{transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);}
.m73_c00118{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m5b_c00118{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m2e_c00118{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.mb1_c00118{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.me7_c00118{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.md0_c00118{transform:matrix(0.593880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593880,0.000000,0.000000,0.250000,0,0);}
.mb6_c00118{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m65_c00118{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_c00118{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m1_c00118{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m23_c00118{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m39_c00118{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m80_c00118{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m2_c00118{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m5f_c00118{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mb8_c00118{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);}
.m15_c00118{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mcf_c00118{transform:matrix(0.627075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627075,0.000000,0.000000,0.250000,0,0);}
.m84_c00118{transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);}
.m90_c00118{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.md6_c00118{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.mab_c00118{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m2b_c00118{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.me2_c00118{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.m4c_c00118{transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);}
.mbf_c00118{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m74_c00118{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.md4_c00118{transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);}
.m1c_c00118{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.mb_c00118{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.mf2_c00118{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.ma2_c00118{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.mb2_c00118{transform:matrix(0.742788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742788,0.000000,0.000000,0.250000,0,0);}
.m16_c00118{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m38_c00118{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m13_c00118{transform:matrix(0.797199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797199,0.000000,0.000000,0.250000,0,0);}
.m94_c00118{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m31_c00118{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m6_c00118{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m71_c00118{transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);}
.mc3_c00118{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.m6c_c00118{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.mb0_c00118{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.ma6_c00118{transform:matrix(1.756637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.756637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.756637,0.000000,0.000000,0.250000,0,0);}
.m95_c00118{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.ma8_c00118{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00118{vertical-align:0.000000px;}
.v1_c00118{vertical-align:12.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;}
}
.ws1_c00118{word-spacing:-7.376441px;}
.ws2_c00118{word-spacing:0.000000px;}
.ws0_c00118{word-spacing:5.070100px;}
.fc0_c00118{color:transparent;}
.fs7_c00118{font-size:3.420000px;}
.fs9_c00118{font-size:6.780000px;}
.fs8_c00118{font-size:11.880000px;}
.fs4_c00118{font-size:18.720000px;}
.fs1_c00118{font-size:20.400000px;}
.fs2_c00118{font-size:25.500000px;}
.fs3_c00118{font-size:28.920000px;}
.fs5_c00118{font-size:32.340000px;}
.fs0_c00118{font-size:35.700000px;}
.fs6_c00118{font-size:39.120000px;}
.y0_c00118{bottom:0.000000px;}
.ycc_c00118{bottom:250.245000px;}
.yca_c00118{bottom:252.405000px;}
.yc9_c00118{bottom:252.825000px;}
.ycb_c00118{bottom:253.905000px;}
.yc8_c00118{bottom:269.745000px;}
.yc6_c00118{bottom:271.245000px;}
.yc7_c00118{bottom:271.905000px;}
.yc4_c00118{bottom:273.405000px;}
.yc5_c00118{bottom:273.420000px;}
.yc2_c00118{bottom:290.745000px;}
.yc3_c00118{bottom:291.405000px;}
.yc0_c00118{bottom:291.630000px;}
.ybf_c00118{bottom:292.905000px;}
.yc1_c00118{bottom:292.920000px;}
.ybe_c00118{bottom:308.745000px;}
.ybd_c00118{bottom:309.825000px;}
.yba_c00118{bottom:310.245000px;}
.ybc_c00118{bottom:311.325000px;}
.ybb_c00118{bottom:312.420000px;}
.yb9_c00118{bottom:329.745000px;}
.yb8_c00118{bottom:329.970000px;}
.yb2_c00118{bottom:349.245000px;}
.yb6_c00118{bottom:349.905000px;}
.yb5_c00118{bottom:350.130000px;}
.yb7_c00118{bottom:350.970000px;}
.yb4_c00118{bottom:351.405000px;}
.yb3_c00118{bottom:351.420000px;}
.yb0_c00118{bottom:375.825000px;}
.yae_c00118{bottom:376.050000px;}
.yad_c00118{bottom:376.905000px;}
.yaf_c00118{bottom:377.970000px;}
.yb1_c00118{bottom:379.050000px;}
.yac_c00118{bottom:379.470000px;}
.ya8_c00118{bottom:395.325000px;}
.ya9_c00118{bottom:396.630000px;}
.ya6_c00118{bottom:396.825000px;}
.yaa_c00118{bottom:397.470000px;}
.yab_c00118{bottom:398.550000px;}
.ya7_c00118{bottom:398.970000px;}
.ya5_c00118{bottom:421.905000px;}
.ya4_c00118{bottom:423.825000px;}
.ya3_c00118{bottom:424.905000px;}
.ya1_c00118{bottom:466.680000px;}
.ya0_c00118{bottom:467.745000px;}
.ya2_c00118{bottom:468.825000px;}
.y9f_c00118{bottom:469.905000px;}
.y9c_c00118{bottom:486.825000px;}
.y9e_c00118{bottom:487.245000px;}
.y9d_c00118{bottom:489.405000px;}
.y9a_c00118{bottom:505.470000px;}
.y97_c00118{bottom:506.745000px;}
.y9b_c00118{bottom:507.630000px;}
.y98_c00118{bottom:508.905000px;}
.y99_c00118{bottom:509.130000px;}
.y94_c00118{bottom:525.405000px;}
.y96_c00118{bottom:526.245000px;}
.y92_c00118{bottom:527.745000px;}
.y95_c00118{bottom:528.405000px;}
.y93_c00118{bottom:529.905000px;}
.y91_c00118{bottom:545.745000px;}
.y8f_c00118{bottom:547.245000px;}
.y8e_c00118{bottom:547.905000px;}
.y90_c00118{bottom:549.405000px;}
.y8b_c00118{bottom:566.325000px;}
.y8c_c00118{bottom:566.745000px;}
.y8a_c00118{bottom:567.630000px;}
.y8d_c00118{bottom:568.470000px;}
.y88_c00118{bottom:568.905000px;}
.y89_c00118{bottom:569.970000px;}
.y87_c00118{bottom:583.905000px;}
.y86_c00118{bottom:587.970000px;}
.y84_c00118{bottom:588.405000px;}
.y85_c00118{bottom:588.420000px;}
.y7f_c00118{bottom:603.630000px;}
.y80_c00118{bottom:603.855000px;}
.y81_c00118{bottom:604.905000px;}
.y82_c00118{bottom:605.745000px;}
.y7e_c00118{bottom:606.630000px;}
.y7d_c00118{bottom:606.825000px;}
.y83_c00118{bottom:607.905000px;}
.y7b_c00118{bottom:622.275000px;}
.y79_c00118{bottom:622.905000px;}
.y78_c00118{bottom:624.405000px;}
.y75_c00118{bottom:625.245000px;}
.y77_c00118{bottom:626.130000px;}
.y74_c00118{bottom:626.325000px;}
.y76_c00118{bottom:627.405000px;}
.y7c_c00118{bottom:628.905000px;}
.y7a_c00118{bottom:630.630000px;}
.y6f_c00118{bottom:643.905000px;}
.y72_c00118{bottom:644.745000px;}
.y71_c00118{bottom:645.405000px;}
.y6e_c00118{bottom:645.825000px;}
.y70_c00118{bottom:646.905000px;}
.y73_c00118{bottom:647.130000px;}
.y67_c00118{bottom:663.405000px;}
.y68_c00118{bottom:664.245000px;}
.y69_c00118{bottom:665.325000px;}
.y66_c00118{bottom:665.745000px;}
.y6a_c00118{bottom:666.405000px;}
.y6c_c00118{bottom:666.825000px;}
.y6b_c00118{bottom:667.470000px;}
.y6d_c00118{bottom:667.905000px;}
.y65_c00118{bottom:683.325000px;}
.y61_c00118{bottom:685.245000px;}
.y64_c00118{bottom:686.325000px;}
.y62_c00118{bottom:686.970000px;}
.y63_c00118{bottom:687.405000px;}
.y5d_c00118{bottom:703.470000px;}
.y5a_c00118{bottom:703.905000px;}
.y59_c00118{bottom:704.325000px;}
.y5e_c00118{bottom:704.745000px;}
.y5f_c00118{bottom:705.630000px;}
.y5c_c00118{bottom:706.470000px;}
.y5b_c00118{bottom:706.905000px;}
.y60_c00118{bottom:706.920000px;}
.y57_c00118{bottom:721.905000px;}
.y54_c00118{bottom:722.325000px;}
.y55_c00118{bottom:722.745000px;}
.y52_c00118{bottom:722.970000px;}
.y51_c00118{bottom:723.405000px;}
.y58_c00118{bottom:724.245000px;}
.y53_c00118{bottom:725.325000px;}
.y56_c00118{bottom:726.405000px;}
.y4e_c00118{bottom:742.905000px;}
.y4d_c00118{bottom:743.745000px;}
.y4f_c00118{bottom:743.970000px;}
.y50_c00118{bottom:744.825000px;}
.y4c_c00118{bottom:745.905000px;}
.y4b_c00118{bottom:762.405000px;}
.y49_c00118{bottom:763.245000px;}
.y4a_c00118{bottom:765.405000px;}
.y47_c00118{bottom:781.905000px;}
.y46_c00118{bottom:782.745000px;}
.y48_c00118{bottom:782.970000px;}
.y45_c00118{bottom:784.905000px;}
.y43_c00118{bottom:802.245000px;}
.y44_c00118{bottom:803.325000px;}
.y41_c00118{bottom:804.405000px;}
.y42_c00118{bottom:805.470000px;}
.y40_c00118{bottom:823.245000px;}
.y3e_c00118{bottom:824.130000px;}
.y3d_c00118{bottom:825.405000px;}
.y3f_c00118{bottom:826.470000px;}
.y3a_c00118{bottom:842.745000px;}
.y3b_c00118{bottom:843.630000px;}
.y3c_c00118{bottom:844.470000px;}
.y39_c00118{bottom:844.905000px;}
.y36_c00118{bottom:862.245000px;}
.y35_c00118{bottom:863.325000px;}
.y38_c00118{bottom:863.970000px;}
.y34_c00118{bottom:864.405000px;}
.y37_c00118{bottom:865.470000px;}
.y33_c00118{bottom:881.745000px;}
.y32_c00118{bottom:883.905000px;}
.y30_c00118{bottom:901.245000px;}
.y2e_c00118{bottom:902.130000px;}
.y31_c00118{bottom:902.325000px;}
.y2f_c00118{bottom:903.405000px;}
.y2c_c00118{bottom:919.905000px;}
.y28_c00118{bottom:920.745000px;}
.y2d_c00118{bottom:921.825000px;}
.y29_c00118{bottom:922.905000px;}
.y2b_c00118{bottom:923.130000px;}
.y2a_c00118{bottom:923.970000px;}
.y25_c00118{bottom:939.180000px;}
.y26_c00118{bottom:940.245000px;}
.y27_c00118{bottom:941.325000px;}
.y24_c00118{bottom:942.405000px;}
.y23_c00118{bottom:959.745000px;}
.y20_c00118{bottom:961.905000px;}
.y22_c00118{bottom:962.130000px;}
.y21_c00118{bottom:962.970000px;}
.y1c_c00118{bottom:978.405000px;}
.y1f_c00118{bottom:979.245000px;}
.y1e_c00118{bottom:980.325000px;}
.y1b_c00118{bottom:981.405000px;}
.y1d_c00118{bottom:981.630000px;}
.y16_c00118{bottom:998.745000px;}
.y1a_c00118{bottom:998.970000px;}
.y17_c00118{bottom:999.825000px;}
.y18_c00118{bottom:1000.245000px;}
.y15_c00118{bottom:1000.905000px;}
.y19_c00118{bottom:1001.970000px;}
.y14_c00118{bottom:1018.470000px;}
.y13_c00118{bottom:1019.325000px;}
.y11_c00118{bottom:1020.405000px;}
.y12_c00118{bottom:1020.630000px;}
.y10_c00118{bottom:1021.470000px;}
.y9_c00118{bottom:1037.745000px;}
.yd_c00118{bottom:1037.970000px;}
.yc_c00118{bottom:1039.245000px;}
.ya_c00118{bottom:1039.905000px;}
.yf_c00118{bottom:1040.130000px;}
.yb_c00118{bottom:1041.405000px;}
.ye_c00118{bottom:1042.470000px;}
.y5_c00118{bottom:1057.245000px;}
.y8_c00118{bottom:1058.745000px;}
.y6_c00118{bottom:1059.630000px;}
.y3_c00118{bottom:1060.470000px;}
.y4_c00118{bottom:1060.905000px;}
.y7_c00118{bottom:1061.970000px;}
.y1_c00118{bottom:1097.745000px;}
.y2_c00118{bottom:1099.050000px;}
.h9_c00118{height:4.206533px;}
.hb_c00118{height:8.339268px;}
.ha_c00118{height:14.612168px;}
.h5_c00118{height:23.025234px;}
.h2_c00118{height:25.091602px;}
.h3_c00118{height:31.364502px;}
.h4_c00118{height:35.571035px;}
.h6_c00118{height:39.777568px;}
.h1_c00118{height:43.910303px;}
.h7_c00118{height:47.571035px;}
.h8_c00118{height:48.116836px;}
.h0_c00118{height:1335.000000px;}
.w0_c00118{width:880.500000px;}
.x0_c00118{left:0.000000px;}
.x3_c00118{left:151.080000px;}
.x10_c00118{left:152.355000px;}
.x6e_c00118{left:153.420000px;}
.xb5_c00118{left:154.500000px;}
.x5d_c00118{left:166.500000px;}
.x48_c00118{left:167.580000px;}
.x11_c00118{left:169.500000px;}
.x8a_c00118{left:171.420000px;}
.xea_c00118{left:177.000000px;}
.x6f_c00118{left:178.500000px;}
.x1e_c00118{left:185.580000px;}
.x29_c00118{left:187.080000px;}
.x12_c00118{left:189.000000px;}
.x4_c00118{left:193.080000px;}
.x54_c00118{left:195.000000px;}
.x5e_c00118{left:196.500000px;}
.x3f_c00118{left:197.580000px;}
.xcb_c00118{left:201.000000px;}
.x90_c00118{left:202.080000px;}
.x1f_c00118{left:204.420000px;}
.xa6_c00118{left:207.420000px;}
.xd3_c00118{left:208.500000px;}
.x8b_c00118{left:210.000000px;}
.xaf_c00118{left:211.500000px;}
.x5_c00118{left:214.500000px;}
.x55_c00118{left:216.000000px;}
.x2a_c00118{left:217.080000px;}
.xe1_c00118{left:219.000000px;}
.x49_c00118{left:220.500000px;}
.x99_c00118{left:226.500000px;}
.x40_c00118{left:227.580000px;}
.x78_c00118{left:229.080000px;}
.x13_c00118{left:230.580000px;}
.xbe_c00118{left:232.500000px;}
.x34_c00118{left:234.420000px;}
.x7e_c00118{left:238.500000px;}
.xb9_c00118{left:240.000000px;}
.xc4_c00118{left:241.500000px;}
.xb0_c00118{left:244.500000px;}
.x6_c00118{left:249.000000px;}
.xed_c00118{left:252.000000px;}
.x70_c00118{left:255.000000px;}
.xb6_c00118{left:256.500000px;}
.xa7_c00118{left:257.580000px;}
.x56_c00118{left:260.580000px;}
.x20_c00118{left:262.080000px;}
.x66_c00118{left:267.000000px;}
.xe6_c00118{left:268.500000px;}
.x91_c00118{left:270.000000px;}
.xb7_c00118{left:271.080000px;}
.x41_c00118{left:273.000000px;}
.x79_c00118{left:274.080000px;}
.x5f_c00118{left:276.420000px;}
.x95_c00118{left:277.500000px;}
.x14_c00118{left:278.775000px;}
.xc5_c00118{left:282.420000px;}
.xf0_c00118{left:283.500000px;}
.x4a_c00118{left:285.000000px;}
.xda_c00118{left:286.500000px;}
.xe7_c00118{left:289.500000px;}
.x9a_c00118{left:291.855000px;}
.x2b_c00118{left:295.920000px;}
.x85_c00118{left:298.500000px;}
.x7_c00118{left:301.500000px;}
.xee_c00118{left:303.000000px;}
.x35_c00118{left:304.080000px;}
.xba_c00118{left:306.000000px;}
.x42_c00118{left:307.500000px;}
.xd4_c00118{left:308.580000px;}
.x4b_c00118{left:310.080000px;}
.x15_c00118{left:312.000000px;}
.xf1_c00118{left:315.000000px;}
.x57_c00118{left:317.775000px;}
.xdd_c00118{left:319.500000px;}
.x7f_c00118{left:321.420000px;}
.xcc_c00118{left:322.500000px;}
.x21_c00118{left:324.000000px;}
.x8_c00118{left:325.500000px;}
.x67_c00118{left:328.080000px;}
.xa0_c00118{left:329.580000px;}
.x9b_c00118{left:331.920000px;}
.x43_c00118{left:334.500000px;}
.x8c_c00118{left:336.420000px;}
.x4c_c00118{left:338.145000px;}
.xb1_c00118{left:340.500000px;}
.xe8_c00118{left:342.000000px;}
.xde_c00118{left:343.080000px;}
.x7a_c00118{left:345.000000px;}
.x2c_c00118{left:348.000000px;}
.xa3_c00118{left:349.500000px;}
.xb8_c00118{left:350.580000px;}
.x36_c00118{left:352.500000px;}
.xdb_c00118{left:354.000000px;}
.x92_c00118{left:357.000000px;}
.x80_c00118{left:358.500000px;}
.xc6_c00118{left:361.500000px;}
.x9_c00118{left:362.580000px;}
.xd9_c00118{left:364.920000px;}
.x4d_c00118{left:366.000000px;}
.xe2_c00118{left:367.500000px;}
.x8d_c00118{left:369.000000px;}
.x37_c00118{left:370.080000px;}
.xa1_c00118{left:372.420000px;}
.xc7_c00118{left:376.500000px;}
.x22_c00118{left:378.000000px;}
.x71_c00118{left:379.920000px;}
.xbf_c00118{left:381.420000px;}
.x4e_c00118{left:384.000000px;}
.x81_c00118{left:385.500000px;}
.xeb_c00118{left:388.500000px;}
.xc8_c00118{left:390.000000px;}
.x58_c00118{left:391.080000px;}
.xa_c00118{left:394.500000px;}
.x93_c00118{left:396.420000px;}
.x2_c00118{left:397.500000px;}
.x2d_c00118{left:398.580000px;}
.x16_c00118{left:400.500000px;}
.x44_c00118{left:402.420000px;}
.x9c_c00118{left:406.500000px;}
.xa4_c00118{left:409.500000px;}
.x72_c00118{left:414.420000px;}
.xc0_c00118{left:415.920000px;}
.x86_c00118{left:417.420000px;}
.x68_c00118{left:418.920000px;}
.x38_c00118{left:424.500000px;}
.x60_c00118{left:427.080000px;}
.x4f_c00118{left:429.000000px;}
.x23_c00118{left:430.500000px;}
.xab_c00118{left:433.500000px;}
.xb_c00118{left:434.580000px;}
.xa8_c00118{left:436.275000px;}
.x17_c00118{left:439.500000px;}
.xc1_c00118{left:442.500000px;}
.x87_c00118{left:443.580000px;}
.xef_c00118{left:445.080000px;}
.x61_c00118{left:447.420000px;}
.x73_c00118{left:451.500000px;}
.x69_c00118{left:452.580000px;}
.xc_c00118{left:455.580000px;}
.xb2_c00118{left:457.500000px;}
.x96_c00118{left:459.000000px;}
.x8e_c00118{left:460.500000px;}
.xf5_c00118{left:462.000000px;}
.xcd_c00118{left:463.080000px;}
.x50_c00118{left:466.080000px;}
.xdf_c00118{left:467.580000px;}
.xbb_c00118{left:469.080000px;}
.xd5_c00118{left:471.420000px;}
.x59_c00118{left:472.500000px;}
.x62_c00118{left:474.000000px;}
.x18_c00118{left:475.080000px;}
.x45_c00118{left:476.580000px;}
.x39_c00118{left:478.500000px;}
.x24_c00118{left:481.080000px;}
.x6a_c00118{left:484.920000px;}
.xb3_c00118{left:492.000000px;}
.xe0_c00118{left:495.000000px;}
.x46_c00118{left:496.920000px;}
.x2e_c00118{left:499.500000px;}
.xdc_c00118{left:501.420000px;}
.x82_c00118{left:504.000000px;}
.x19_c00118{left:505.500000px;}
.xe3_c00118{left:507.000000px;}
.x25_c00118{left:511.500000px;}
.xd6_c00118{left:513.420000px;}
.x9d_c00118{left:514.500000px;}
.xa2_c00118{left:516.000000px;}
.xec_c00118{left:517.500000px;}
.x1a_c00118{left:518.580000px;}
.x47_c00118{left:523.500000px;}
.xf6_c00118{left:524.580000px;}
.x63_c00118{left:526.920000px;}
.x5a_c00118{left:534.000000px;}
.x51_c00118{left:535.500000px;}
.x3a_c00118{left:536.580000px;}
.xb4_c00118{left:538.500000px;}
.xd_c00118{left:540.000000px;}
.x2f_c00118{left:541.500000px;}
.xc9_c00118{left:544.500000px;}
.xe4_c00118{left:545.580000px;}
.x3b_c00118{left:553.920000px;}
.xa5_c00118{left:556.275000px;}
.x83_c00118{left:557.580000px;}
.x30_c00118{left:559.920000px;}
.xe_c00118{left:562.920000px;}
.x7b_c00118{left:564.000000px;}
.xe5_c00118{left:567.000000px;}
.xc2_c00118{left:570.000000px;}
.xf2_c00118{left:571.275000px;}
.x74_c00118{left:573.000000px;}
.x52_c00118{left:575.580000px;}
.x84_c00118{left:577.920000px;}
.x26_c00118{left:580.080000px;}
.x64_c00118{left:581.580000px;}
.x7c_c00118{left:583.920000px;}
.x31_c00118{left:585.000000px;}
.x75_c00118{left:588.000000px;}
.x3c_c00118{left:589.500000px;}
.xce_c00118{left:591.000000px;}
.xf_c00118{left:592.500000px;}
.x53_c00118{left:596.580000px;}
.xd1_c00118{left:598.080000px;}
.x6b_c00118{left:601.500000px;}
.x1b_c00118{left:604.500000px;}
.x97_c00118{left:605.580000px;}
.xac_c00118{left:607.080000px;}
.x7d_c00118{left:610.500000px;}
.xf3_c00118{left:612.000000px;}
.x65_c00118{left:613.920000px;}
.xf7_c00118{left:615.645000px;}
.x3d_c00118{left:618.420000px;}
.xd7_c00118{left:621.420000px;}
.xcf_c00118{left:625.500000px;}
.x9e_c00118{left:626.580000px;}
.x5b_c00118{left:630.000000px;}
.xa9_c00118{left:632.580000px;}
.x98_c00118{left:637.920000px;}
.x32_c00118{left:640.920000px;}
.xad_c00118{left:642.000000px;}
.x76_c00118{left:643.920000px;}
.xd2_c00118{left:645.000000px;}
.x9f_c00118{left:646.500000px;}
.x27_c00118{left:647.580000px;}
.x88_c00118{left:649.500000px;}
.x6c_c00118{left:651.000000px;}
.xc3_c00118{left:654.000000px;}
.xbc_c00118{left:655.080000px;}
.xd8_c00118{left:658.080000px;}
.x1c_c00118{left:659.580000px;}
.x3e_c00118{left:661.500000px;}
.xaa_c00118{left:666.420000px;}
.x94_c00118{left:667.920000px;}
.xca_c00118{left:670.500000px;}
.xf4_c00118{left:672.000000px;}
.xe9_c00118{left:673.500000px;}
.x5c_c00118{left:677.580000px;}
.xbd_c00118{left:679.500000px;}
.xd0_c00118{left:680.580000px;}
.x28_c00118{left:684.420000px;}
.x89_c00118{left:687.420000px;}
.xae_c00118{left:690.000000px;}
.x33_c00118{left:692.580000px;}
.x77_c00118{left:697.920000px;}
.x1d_c00118{left:705.420000px;}
.xf8_c00118{left:707.580000px;}
.x8f_c00118{left:709.920000px;}
.x1_c00118{left:712.500000px;}
.x6d_c00118{left:717.000000px;}
@media print{
.v0_c00118{vertical-align:0.000000pt;}
.v1_c00118{vertical-align:10.666667pt;}
.ls0_c00118{letter-spacing:0.000000pt;}
.ws1_c00118{word-spacing:-6.556836pt;}
.ws2_c00118{word-spacing:0.000000pt;}
.ws0_c00118{word-spacing:4.506756pt;}
.fs7_c00118{font-size:3.040000pt;}
.fs9_c00118{font-size:6.026667pt;}
.fs8_c00118{font-size:10.560000pt;}
.fs4_c00118{font-size:16.640000pt;}
.fs1_c00118{font-size:18.133333pt;}
.fs2_c00118{font-size:22.666667pt;}
.fs3_c00118{font-size:25.706667pt;}
.fs5_c00118{font-size:28.746667pt;}
.fs0_c00118{font-size:31.733333pt;}
.fs6_c00118{font-size:34.773333pt;}
.y0_c00118{bottom:0.000000pt;}
.ycc_c00118{bottom:222.440000pt;}
.yca_c00118{bottom:224.360000pt;}
.yc9_c00118{bottom:224.733333pt;}
.ycb_c00118{bottom:225.693333pt;}
.yc8_c00118{bottom:239.773333pt;}
.yc6_c00118{bottom:241.106667pt;}
.yc7_c00118{bottom:241.693333pt;}
.yc4_c00118{bottom:243.026667pt;}
.yc5_c00118{bottom:243.040000pt;}
.yc2_c00118{bottom:258.440000pt;}
.yc3_c00118{bottom:259.026667pt;}
.yc0_c00118{bottom:259.226667pt;}
.ybf_c00118{bottom:260.360000pt;}
.yc1_c00118{bottom:260.373333pt;}
.ybe_c00118{bottom:274.440000pt;}
.ybd_c00118{bottom:275.400000pt;}
.yba_c00118{bottom:275.773333pt;}
.ybc_c00118{bottom:276.733333pt;}
.ybb_c00118{bottom:277.706667pt;}
.yb9_c00118{bottom:293.106667pt;}
.yb8_c00118{bottom:293.306667pt;}
.yb2_c00118{bottom:310.440000pt;}
.yb6_c00118{bottom:311.026667pt;}
.yb5_c00118{bottom:311.226667pt;}
.yb7_c00118{bottom:311.973333pt;}
.yb4_c00118{bottom:312.360000pt;}
.yb3_c00118{bottom:312.373333pt;}
.yb0_c00118{bottom:334.066667pt;}
.yae_c00118{bottom:334.266667pt;}
.yad_c00118{bottom:335.026667pt;}
.yaf_c00118{bottom:335.973333pt;}
.yb1_c00118{bottom:336.933333pt;}
.yac_c00118{bottom:337.306667pt;}
.ya8_c00118{bottom:351.400000pt;}
.ya9_c00118{bottom:352.560000pt;}
.ya6_c00118{bottom:352.733333pt;}
.yaa_c00118{bottom:353.306667pt;}
.yab_c00118{bottom:354.266667pt;}
.ya7_c00118{bottom:354.640000pt;}
.ya5_c00118{bottom:375.026667pt;}
.ya4_c00118{bottom:376.733333pt;}
.ya3_c00118{bottom:377.693333pt;}
.ya1_c00118{bottom:414.826667pt;}
.ya0_c00118{bottom:415.773333pt;}
.ya2_c00118{bottom:416.733333pt;}
.y9f_c00118{bottom:417.693333pt;}
.y9c_c00118{bottom:432.733333pt;}
.y9e_c00118{bottom:433.106667pt;}
.y9d_c00118{bottom:435.026667pt;}
.y9a_c00118{bottom:449.306667pt;}
.y97_c00118{bottom:450.440000pt;}
.y9b_c00118{bottom:451.226667pt;}
.y98_c00118{bottom:452.360000pt;}
.y99_c00118{bottom:452.560000pt;}
.y94_c00118{bottom:467.026667pt;}
.y96_c00118{bottom:467.773333pt;}
.y92_c00118{bottom:469.106667pt;}
.y95_c00118{bottom:469.693333pt;}
.y93_c00118{bottom:471.026667pt;}
.y91_c00118{bottom:485.106667pt;}
.y8f_c00118{bottom:486.440000pt;}
.y8e_c00118{bottom:487.026667pt;}
.y90_c00118{bottom:488.360000pt;}
.y8b_c00118{bottom:503.400000pt;}
.y8c_c00118{bottom:503.773333pt;}
.y8a_c00118{bottom:504.560000pt;}
.y8d_c00118{bottom:505.306667pt;}
.y88_c00118{bottom:505.693333pt;}
.y89_c00118{bottom:506.640000pt;}
.y87_c00118{bottom:519.026667pt;}
.y86_c00118{bottom:522.640000pt;}
.y84_c00118{bottom:523.026667pt;}
.y85_c00118{bottom:523.040000pt;}
.y7f_c00118{bottom:536.560000pt;}
.y80_c00118{bottom:536.760000pt;}
.y81_c00118{bottom:537.693333pt;}
.y82_c00118{bottom:538.440000pt;}
.y7e_c00118{bottom:539.226667pt;}
.y7d_c00118{bottom:539.400000pt;}
.y83_c00118{bottom:540.360000pt;}
.y7b_c00118{bottom:553.133333pt;}
.y79_c00118{bottom:553.693333pt;}
.y78_c00118{bottom:555.026667pt;}
.y75_c00118{bottom:555.773333pt;}
.y77_c00118{bottom:556.560000pt;}
.y74_c00118{bottom:556.733333pt;}
.y76_c00118{bottom:557.693333pt;}
.y7c_c00118{bottom:559.026667pt;}
.y7a_c00118{bottom:560.560000pt;}
.y6f_c00118{bottom:572.360000pt;}
.y72_c00118{bottom:573.106667pt;}
.y71_c00118{bottom:573.693333pt;}
.y6e_c00118{bottom:574.066667pt;}
.y70_c00118{bottom:575.026667pt;}
.y73_c00118{bottom:575.226667pt;}
.y67_c00118{bottom:589.693333pt;}
.y68_c00118{bottom:590.440000pt;}
.y69_c00118{bottom:591.400000pt;}
.y66_c00118{bottom:591.773333pt;}
.y6a_c00118{bottom:592.360000pt;}
.y6c_c00118{bottom:592.733333pt;}
.y6b_c00118{bottom:593.306667pt;}
.y6d_c00118{bottom:593.693333pt;}
.y65_c00118{bottom:607.400000pt;}
.y61_c00118{bottom:609.106667pt;}
.y64_c00118{bottom:610.066667pt;}
.y62_c00118{bottom:610.640000pt;}
.y63_c00118{bottom:611.026667pt;}
.y5d_c00118{bottom:625.306667pt;}
.y5a_c00118{bottom:625.693333pt;}
.y59_c00118{bottom:626.066667pt;}
.y5e_c00118{bottom:626.440000pt;}
.y5f_c00118{bottom:627.226667pt;}
.y5c_c00118{bottom:627.973333pt;}
.y5b_c00118{bottom:628.360000pt;}
.y60_c00118{bottom:628.373333pt;}
.y57_c00118{bottom:641.693333pt;}
.y54_c00118{bottom:642.066667pt;}
.y55_c00118{bottom:642.440000pt;}
.y52_c00118{bottom:642.640000pt;}
.y51_c00118{bottom:643.026667pt;}
.y58_c00118{bottom:643.773333pt;}
.y53_c00118{bottom:644.733333pt;}
.y56_c00118{bottom:645.693333pt;}
.y4e_c00118{bottom:660.360000pt;}
.y4d_c00118{bottom:661.106667pt;}
.y4f_c00118{bottom:661.306667pt;}
.y50_c00118{bottom:662.066667pt;}
.y4c_c00118{bottom:663.026667pt;}
.y4b_c00118{bottom:677.693333pt;}
.y49_c00118{bottom:678.440000pt;}
.y4a_c00118{bottom:680.360000pt;}
.y47_c00118{bottom:695.026667pt;}
.y46_c00118{bottom:695.773333pt;}
.y48_c00118{bottom:695.973333pt;}
.y45_c00118{bottom:697.693333pt;}
.y43_c00118{bottom:713.106667pt;}
.y44_c00118{bottom:714.066667pt;}
.y41_c00118{bottom:715.026667pt;}
.y42_c00118{bottom:715.973333pt;}
.y40_c00118{bottom:731.773333pt;}
.y3e_c00118{bottom:732.560000pt;}
.y3d_c00118{bottom:733.693333pt;}
.y3f_c00118{bottom:734.640000pt;}
.y3a_c00118{bottom:749.106667pt;}
.y3b_c00118{bottom:749.893333pt;}
.y3c_c00118{bottom:750.640000pt;}
.y39_c00118{bottom:751.026667pt;}
.y36_c00118{bottom:766.440000pt;}
.y35_c00118{bottom:767.400000pt;}
.y38_c00118{bottom:767.973333pt;}
.y34_c00118{bottom:768.360000pt;}
.y37_c00118{bottom:769.306667pt;}
.y33_c00118{bottom:783.773333pt;}
.y32_c00118{bottom:785.693333pt;}
.y30_c00118{bottom:801.106667pt;}
.y2e_c00118{bottom:801.893333pt;}
.y31_c00118{bottom:802.066667pt;}
.y2f_c00118{bottom:803.026667pt;}
.y2c_c00118{bottom:817.693333pt;}
.y28_c00118{bottom:818.440000pt;}
.y2d_c00118{bottom:819.400000pt;}
.y29_c00118{bottom:820.360000pt;}
.y2b_c00118{bottom:820.560000pt;}
.y2a_c00118{bottom:821.306667pt;}
.y25_c00118{bottom:834.826667pt;}
.y26_c00118{bottom:835.773333pt;}
.y27_c00118{bottom:836.733333pt;}
.y24_c00118{bottom:837.693333pt;}
.y23_c00118{bottom:853.106667pt;}
.y20_c00118{bottom:855.026667pt;}
.y22_c00118{bottom:855.226667pt;}
.y21_c00118{bottom:855.973333pt;}
.y1c_c00118{bottom:869.693333pt;}
.y1f_c00118{bottom:870.440000pt;}
.y1e_c00118{bottom:871.400000pt;}
.y1b_c00118{bottom:872.360000pt;}
.y1d_c00118{bottom:872.560000pt;}
.y16_c00118{bottom:887.773333pt;}
.y1a_c00118{bottom:887.973333pt;}
.y17_c00118{bottom:888.733333pt;}
.y18_c00118{bottom:889.106667pt;}
.y15_c00118{bottom:889.693333pt;}
.y19_c00118{bottom:890.640000pt;}
.y14_c00118{bottom:905.306667pt;}
.y13_c00118{bottom:906.066667pt;}
.y11_c00118{bottom:907.026667pt;}
.y12_c00118{bottom:907.226667pt;}
.y10_c00118{bottom:907.973333pt;}
.y9_c00118{bottom:922.440000pt;}
.yd_c00118{bottom:922.640000pt;}
.yc_c00118{bottom:923.773333pt;}
.ya_c00118{bottom:924.360000pt;}
.yf_c00118{bottom:924.560000pt;}
.yb_c00118{bottom:925.693333pt;}
.ye_c00118{bottom:926.640000pt;}
.y5_c00118{bottom:939.773333pt;}
.y8_c00118{bottom:941.106667pt;}
.y6_c00118{bottom:941.893333pt;}
.y3_c00118{bottom:942.640000pt;}
.y4_c00118{bottom:943.026667pt;}
.y7_c00118{bottom:943.973333pt;}
.y1_c00118{bottom:975.773333pt;}
.y2_c00118{bottom:976.933333pt;}
.h9_c00118{height:3.739141pt;}
.hb_c00118{height:7.412682pt;}
.ha_c00118{height:12.988594pt;}
.h5_c00118{height:20.466875pt;}
.h2_c00118{height:22.303646pt;}
.h3_c00118{height:27.879557pt;}
.h4_c00118{height:31.618698pt;}
.h6_c00118{height:35.357839pt;}
.h1_c00118{height:39.031380pt;}
.h7_c00118{height:42.285365pt;}
.h8_c00118{height:42.770521pt;}
.h0_c00118{height:1186.666667pt;}
.w0_c00118{width:782.666667pt;}
.x0_c00118{left:0.000000pt;}
.x3_c00118{left:134.293333pt;}
.x10_c00118{left:135.426667pt;}
.x6e_c00118{left:136.373333pt;}
.xb5_c00118{left:137.333333pt;}
.x5d_c00118{left:148.000000pt;}
.x48_c00118{left:148.960000pt;}
.x11_c00118{left:150.666667pt;}
.x8a_c00118{left:152.373333pt;}
.xea_c00118{left:157.333333pt;}
.x6f_c00118{left:158.666667pt;}
.x1e_c00118{left:164.960000pt;}
.x29_c00118{left:166.293333pt;}
.x12_c00118{left:168.000000pt;}
.x4_c00118{left:171.626667pt;}
.x54_c00118{left:173.333333pt;}
.x5e_c00118{left:174.666667pt;}
.x3f_c00118{left:175.626667pt;}
.xcb_c00118{left:178.666667pt;}
.x90_c00118{left:179.626667pt;}
.x1f_c00118{left:181.706667pt;}
.xa6_c00118{left:184.373333pt;}
.xd3_c00118{left:185.333333pt;}
.x8b_c00118{left:186.666667pt;}
.xaf_c00118{left:188.000000pt;}
.x5_c00118{left:190.666667pt;}
.x55_c00118{left:192.000000pt;}
.x2a_c00118{left:192.960000pt;}
.xe1_c00118{left:194.666667pt;}
.x49_c00118{left:196.000000pt;}
.x99_c00118{left:201.333333pt;}
.x40_c00118{left:202.293333pt;}
.x78_c00118{left:203.626667pt;}
.x13_c00118{left:204.960000pt;}
.xbe_c00118{left:206.666667pt;}
.x34_c00118{left:208.373333pt;}
.x7e_c00118{left:212.000000pt;}
.xb9_c00118{left:213.333333pt;}
.xc4_c00118{left:214.666667pt;}
.xb0_c00118{left:217.333333pt;}
.x6_c00118{left:221.333333pt;}
.xed_c00118{left:224.000000pt;}
.x70_c00118{left:226.666667pt;}
.xb6_c00118{left:228.000000pt;}
.xa7_c00118{left:228.960000pt;}
.x56_c00118{left:231.626667pt;}
.x20_c00118{left:232.960000pt;}
.x66_c00118{left:237.333333pt;}
.xe6_c00118{left:238.666667pt;}
.x91_c00118{left:240.000000pt;}
.xb7_c00118{left:240.960000pt;}
.x41_c00118{left:242.666667pt;}
.x79_c00118{left:243.626667pt;}
.x5f_c00118{left:245.706667pt;}
.x95_c00118{left:246.666667pt;}
.x14_c00118{left:247.800000pt;}
.xc5_c00118{left:251.040000pt;}
.xf0_c00118{left:252.000000pt;}
.x4a_c00118{left:253.333333pt;}
.xda_c00118{left:254.666667pt;}
.xe7_c00118{left:257.333333pt;}
.x9a_c00118{left:259.426667pt;}
.x2b_c00118{left:263.040000pt;}
.x85_c00118{left:265.333333pt;}
.x7_c00118{left:268.000000pt;}
.xee_c00118{left:269.333333pt;}
.x35_c00118{left:270.293333pt;}
.xba_c00118{left:272.000000pt;}
.x42_c00118{left:273.333333pt;}
.xd4_c00118{left:274.293333pt;}
.x4b_c00118{left:275.626667pt;}
.x15_c00118{left:277.333333pt;}
.xf1_c00118{left:280.000000pt;}
.x57_c00118{left:282.466667pt;}
.xdd_c00118{left:284.000000pt;}
.x7f_c00118{left:285.706667pt;}
.xcc_c00118{left:286.666667pt;}
.x21_c00118{left:288.000000pt;}
.x8_c00118{left:289.333333pt;}
.x67_c00118{left:291.626667pt;}
.xa0_c00118{left:292.960000pt;}
.x9b_c00118{left:295.040000pt;}
.x43_c00118{left:297.333333pt;}
.x8c_c00118{left:299.040000pt;}
.x4c_c00118{left:300.573333pt;}
.xb1_c00118{left:302.666667pt;}
.xe8_c00118{left:304.000000pt;}
.xde_c00118{left:304.960000pt;}
.x7a_c00118{left:306.666667pt;}
.x2c_c00118{left:309.333333pt;}
.xa3_c00118{left:310.666667pt;}
.xb8_c00118{left:311.626667pt;}
.x36_c00118{left:313.333333pt;}
.xdb_c00118{left:314.666667pt;}
.x92_c00118{left:317.333333pt;}
.x80_c00118{left:318.666667pt;}
.xc6_c00118{left:321.333333pt;}
.x9_c00118{left:322.293333pt;}
.xd9_c00118{left:324.373333pt;}
.x4d_c00118{left:325.333333pt;}
.xe2_c00118{left:326.666667pt;}
.x8d_c00118{left:328.000000pt;}
.x37_c00118{left:328.960000pt;}
.xa1_c00118{left:331.040000pt;}
.xc7_c00118{left:334.666667pt;}
.x22_c00118{left:336.000000pt;}
.x71_c00118{left:337.706667pt;}
.xbf_c00118{left:339.040000pt;}
.x4e_c00118{left:341.333333pt;}
.x81_c00118{left:342.666667pt;}
.xeb_c00118{left:345.333333pt;}
.xc8_c00118{left:346.666667pt;}
.x58_c00118{left:347.626667pt;}
.xa_c00118{left:350.666667pt;}
.x93_c00118{left:352.373333pt;}
.x2_c00118{left:353.333333pt;}
.x2d_c00118{left:354.293333pt;}
.x16_c00118{left:356.000000pt;}
.x44_c00118{left:357.706667pt;}
.x9c_c00118{left:361.333333pt;}
.xa4_c00118{left:364.000000pt;}
.x72_c00118{left:368.373333pt;}
.xc0_c00118{left:369.706667pt;}
.x86_c00118{left:371.040000pt;}
.x68_c00118{left:372.373333pt;}
.x38_c00118{left:377.333333pt;}
.x60_c00118{left:379.626667pt;}
.x4f_c00118{left:381.333333pt;}
.x23_c00118{left:382.666667pt;}
.xab_c00118{left:385.333333pt;}
.xb_c00118{left:386.293333pt;}
.xa8_c00118{left:387.800000pt;}
.x17_c00118{left:390.666667pt;}
.xc1_c00118{left:393.333333pt;}
.x87_c00118{left:394.293333pt;}
.xef_c00118{left:395.626667pt;}
.x61_c00118{left:397.706667pt;}
.x73_c00118{left:401.333333pt;}
.x69_c00118{left:402.293333pt;}
.xc_c00118{left:404.960000pt;}
.xb2_c00118{left:406.666667pt;}
.x96_c00118{left:408.000000pt;}
.x8e_c00118{left:409.333333pt;}
.xf5_c00118{left:410.666667pt;}
.xcd_c00118{left:411.626667pt;}
.x50_c00118{left:414.293333pt;}
.xdf_c00118{left:415.626667pt;}
.xbb_c00118{left:416.960000pt;}
.xd5_c00118{left:419.040000pt;}
.x59_c00118{left:420.000000pt;}
.x62_c00118{left:421.333333pt;}
.x18_c00118{left:422.293333pt;}
.x45_c00118{left:423.626667pt;}
.x39_c00118{left:425.333333pt;}
.x24_c00118{left:427.626667pt;}
.x6a_c00118{left:431.040000pt;}
.xb3_c00118{left:437.333333pt;}
.xe0_c00118{left:440.000000pt;}
.x46_c00118{left:441.706667pt;}
.x2e_c00118{left:444.000000pt;}
.xdc_c00118{left:445.706667pt;}
.x82_c00118{left:448.000000pt;}
.x19_c00118{left:449.333333pt;}
.xe3_c00118{left:450.666667pt;}
.x25_c00118{left:454.666667pt;}
.xd6_c00118{left:456.373333pt;}
.x9d_c00118{left:457.333333pt;}
.xa2_c00118{left:458.666667pt;}
.xec_c00118{left:460.000000pt;}
.x1a_c00118{left:460.960000pt;}
.x47_c00118{left:465.333333pt;}
.xf6_c00118{left:466.293333pt;}
.x63_c00118{left:468.373333pt;}
.x5a_c00118{left:474.666667pt;}
.x51_c00118{left:476.000000pt;}
.x3a_c00118{left:476.960000pt;}
.xb4_c00118{left:478.666667pt;}
.xd_c00118{left:480.000000pt;}
.x2f_c00118{left:481.333333pt;}
.xc9_c00118{left:484.000000pt;}
.xe4_c00118{left:484.960000pt;}
.x3b_c00118{left:492.373333pt;}
.xa5_c00118{left:494.466667pt;}
.x83_c00118{left:495.626667pt;}
.x30_c00118{left:497.706667pt;}
.xe_c00118{left:500.373333pt;}
.x7b_c00118{left:501.333333pt;}
.xe5_c00118{left:504.000000pt;}
.xc2_c00118{left:506.666667pt;}
.xf2_c00118{left:507.800000pt;}
.x74_c00118{left:509.333333pt;}
.x52_c00118{left:511.626667pt;}
.x84_c00118{left:513.706667pt;}
.x26_c00118{left:515.626667pt;}
.x64_c00118{left:516.960000pt;}
.x7c_c00118{left:519.040000pt;}
.x31_c00118{left:520.000000pt;}
.x75_c00118{left:522.666667pt;}
.x3c_c00118{left:524.000000pt;}
.xce_c00118{left:525.333333pt;}
.xf_c00118{left:526.666667pt;}
.x53_c00118{left:530.293333pt;}
.xd1_c00118{left:531.626667pt;}
.x6b_c00118{left:534.666667pt;}
.x1b_c00118{left:537.333333pt;}
.x97_c00118{left:538.293333pt;}
.xac_c00118{left:539.626667pt;}
.x7d_c00118{left:542.666667pt;}
.xf3_c00118{left:544.000000pt;}
.x65_c00118{left:545.706667pt;}
.xf7_c00118{left:547.240000pt;}
.x3d_c00118{left:549.706667pt;}
.xd7_c00118{left:552.373333pt;}
.xcf_c00118{left:556.000000pt;}
.x9e_c00118{left:556.960000pt;}
.x5b_c00118{left:560.000000pt;}
.xa9_c00118{left:562.293333pt;}
.x98_c00118{left:567.040000pt;}
.x32_c00118{left:569.706667pt;}
.xad_c00118{left:570.666667pt;}
.x76_c00118{left:572.373333pt;}
.xd2_c00118{left:573.333333pt;}
.x9f_c00118{left:574.666667pt;}
.x27_c00118{left:575.626667pt;}
.x88_c00118{left:577.333333pt;}
.x6c_c00118{left:578.666667pt;}
.xc3_c00118{left:581.333333pt;}
.xbc_c00118{left:582.293333pt;}
.xd8_c00118{left:584.960000pt;}
.x1c_c00118{left:586.293333pt;}
.x3e_c00118{left:588.000000pt;}
.xaa_c00118{left:592.373333pt;}
.x94_c00118{left:593.706667pt;}
.xca_c00118{left:596.000000pt;}
.xf4_c00118{left:597.333333pt;}
.xe9_c00118{left:598.666667pt;}
.x5c_c00118{left:602.293333pt;}
.xbd_c00118{left:604.000000pt;}
.xd0_c00118{left:604.960000pt;}
.x28_c00118{left:608.373333pt;}
.x89_c00118{left:611.040000pt;}
.xae_c00118{left:613.333333pt;}
.x33_c00118{left:615.626667pt;}
.x77_c00118{left:620.373333pt;}
.x1d_c00118{left:627.040000pt;}
.xf8_c00118{left:628.960000pt;}
.x8f_c00118{left:631.040000pt;}
.x1_c00118{left:633.333333pt;}
.x6d_c00118{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_02e9eb2f5818992eeafa08fd.woff2')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mda_c00119{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m6a_c00119{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m1b_c00119{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m3d_c00119{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m9_c00119{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m54_c00119{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m23_c00119{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mc_c00119{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.md1_c00119{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m69_c00119{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.mb9_c00119{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.md4_c00119{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m68_c00119{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m31_c00119{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m66_c00119{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m86_c00119{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mcc_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);}
.mb8_c00119{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mc6_c00119{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mef_c00119{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m6d_c00119{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mcf_c00119{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m74_c00119{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mc7_c00119{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mfe_c00119{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m7a_c00119{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m56_c00119{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m71_c00119{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.ma6_c00119{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m5b_c00119{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.md3_c00119{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.mfa_c00119{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mf1_c00119{transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);}
.md0_c00119{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.mde_c00119{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.ma1_c00119{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m80_c00119{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.md7_c00119{transform:matrix(0.419862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419862,0.000000,0.000000,0.250000,0,0);}
.mcd_c00119{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mcb_c00119{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m9e_c00119{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.ma4_c00119{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m51_c00119{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m41_c00119{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m85_c00119{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m60_c00119{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.me1_c00119{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.mc4_c00119{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m61_c00119{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m7e_c00119{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.mca_c00119{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mf_c00119{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m59_c00119{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m70_c00119{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.m30_c00119{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mf7_c00119{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mea_c00119{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m72_c00119{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.mee_c00119{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m8c_c00119{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.md8_c00119{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m90_c00119{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m64_c00119{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m3e_c00119{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.mb7_c00119{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m13_c00119{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m92_c00119{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.mbf_c00119{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m65_c00119{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.ma8_c00119{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m2c_c00119{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.mf3_c00119{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.mb1_c00119{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.m7b_c00119{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m5a_c00119{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m6e_c00119{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m6b_c00119{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m8a_c00119{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m9a_c00119{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.mc8_c00119{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m21_c00119{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mc2_c00119{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.ma2_c00119{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.me2_c00119{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.m53_c00119{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.mc9_c00119{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.mae_c00119{transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);}
.mbc_c00119{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.mb3_c00119{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m4b_c00119{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.maf_c00119{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m44_c00119{transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);}
.mb6_c00119{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m33_c00119{transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);}
.me6_c00119{transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);}
.m39_c00119{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mfb_c00119{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.md9_c00119{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m48_c00119{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m3a_c00119{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.mc1_c00119{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m78_c00119{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m75_c00119{transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);}
.ma0_c00119{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.mf9_c00119{transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);}
.m1_c00119{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m4c_c00119{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m89_c00119{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mf6_c00119{transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);}
.m50_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);}
.md_c00119{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mf5_c00119{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.me_c00119{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mff_c00119{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m17_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);}
.mab_c00119{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mb0_c00119{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mbd_c00119{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.mdc_c00119{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m5f_c00119{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.mb2_c00119{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m2e_c00119{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m9b_c00119{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m8f_c00119{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m5e_c00119{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m91_c00119{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.me4_c00119{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m49_c00119{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m99_c00119{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m19_c00119{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m88_c00119{transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);}
.m57_c00119{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);}
.m7_c00119{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.mba_c00119{transform:matrix(0.526438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526438,0.000000,0.000000,0.250000,0,0);}
.m22_c00119{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mb4_c00119{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m7d_c00119{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m83_c00119{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m97_c00119{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m63_c00119{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m82_c00119{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m12_c00119{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.me0_c00119{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.me3_c00119{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m11_c00119{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.ma_c00119{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m29_c00119{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m20_c00119{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m3c_c00119{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m8_c00119{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mdd_c00119{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m3_c00119{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mf0_c00119{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m2f_c00119{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m87_c00119{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.ma9_c00119{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m4_c00119{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m25_c00119{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m2_c00119{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m10_c00119{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m96_c00119{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m6f_c00119{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m2a_c00119{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mdf_c00119{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m28_c00119{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m1e_c00119{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.md5_c00119{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m14_c00119{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mc0_c00119{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m1f_c00119{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m2b_c00119{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m76_c00119{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.me7_c00119{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m27_c00119{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m7f_c00119{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m46_c00119{transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);}
.m84_c00119{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m73_c00119{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m8d_c00119{transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);}
.md2_c00119{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m45_c00119{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.m4d_c00119{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.md6_c00119{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mf2_c00119{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.m6_c00119{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m62_c00119{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m9d_c00119{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m5d_c00119{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.me5_c00119{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m1d_c00119{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mad_c00119{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m9f_c00119{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m9c_c00119{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mbb_c00119{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.mdb_c00119{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mb_c00119{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m15_c00119{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m52_c00119{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.mec_c00119{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m26_c00119{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m4f_c00119{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.m24_c00119{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.mfc_c00119{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.ma3_c00119{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m0_c00119{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.mf8_c00119{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.m7c_c00119{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m47_c00119{transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);}
.m16_c00119{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mfd_c00119{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m18_c00119{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.me9_c00119{transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);}
.m35_c00119{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.ma5_c00119{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.mf4_c00119{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.me8_c00119{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m43_c00119{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_c00119{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.mce_c00119{transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);}
.m55_c00119{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m3f_c00119{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m93_c00119{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m36_c00119{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m8b_c00119{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.mb5_c00119{transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);}
.mbe_c00119{transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);}
.m4a_c00119{transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);}
.m37_c00119{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.med_c00119{transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);}
.m95_c00119{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m94_c00119{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m5_c00119{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m34_c00119{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m4e_c00119{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m98_c00119{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m8e_c00119{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m1c_c00119{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m2d_c00119{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m38_c00119{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);}
.m58_c00119{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m100_c00119{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m6c_c00119{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m81_c00119{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.ma7_c00119{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.meb_c00119{transform:matrix(0.740441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.740441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.740441,0.000000,0.000000,0.250000,0,0);}
.m79_c00119{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mac_c00119{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m77_c00119{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mc3_c00119{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mc5_c00119{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.maa_c00119{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m67_c00119{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m42_c00119{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m5c_c00119{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.m32_c00119{transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);}
.m3b_c00119{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m1a_c00119{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00119{vertical-align:-6.000000px;}
.v0_c00119{vertical-align:0.000000px;}
.ls0_c00119{letter-spacing:0.000000px;}
.sc__c00119{text-shadow:none;}
.sc0_c00119{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00119{-webkit-text-stroke:0px transparent;}
.sc0_c00119{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00119{word-spacing:-8.988101px;}
.ws0_c00119{word-spacing:-7.794860px;}
.ws3_c00119{word-spacing:0.000000px;}
.ws1_c00119{word-spacing:0.607426px;}
.fc0_c00119{color:transparent;}
.fs6_c00119{font-size:3.420000px;}
.fs7_c00119{font-size:13.620000px;}
.fs4_c00119{font-size:18.720000px;}
.fs0_c00119{font-size:20.400000px;}
.fs2_c00119{font-size:25.500000px;}
.fs1_c00119{font-size:28.920000px;}
.fs5_c00119{font-size:32.340000px;}
.fs3_c00119{font-size:35.700000px;}
.fs8_c00119{font-size:39.120000px;}
.y0_c00119{bottom:0.000000px;}
.yca_c00119{bottom:253.245000px;}
.ycc_c00119{bottom:254.745000px;}
.yc9_c00119{bottom:255.405000px;}
.ycb_c00119{bottom:255.630000px;}
.yc8_c00119{bottom:271.905000px;}
.yc2_c00119{bottom:272.745000px;}
.yc4_c00119{bottom:274.245000px;}
.yc3_c00119{bottom:274.905000px;}
.yc7_c00119{bottom:275.130000px;}
.yc6_c00119{bottom:275.325000px;}
.yc5_c00119{bottom:276.405000px;}
.ybf_c00119{bottom:293.745000px;}
.yc1_c00119{bottom:294.825000px;}
.yc0_c00119{bottom:295.470000px;}
.ybe_c00119{bottom:295.905000px;}
.yb8_c00119{bottom:311.745000px;}
.ybb_c00119{bottom:313.245000px;}
.yb7_c00119{bottom:313.905000px;}
.ybd_c00119{bottom:314.325000px;}
.yb9_c00119{bottom:314.970000px;}
.yba_c00119{bottom:315.405000px;}
.ybc_c00119{bottom:316.470000px;}
.yb4_c00119{bottom:332.550000px;}
.yb2_c00119{bottom:332.745000px;}
.yb6_c00119{bottom:334.470000px;}
.yb3_c00119{bottom:334.905000px;}
.yb5_c00119{bottom:335.970000px;}
.yae_c00119{bottom:352.245000px;}
.yac_c00119{bottom:353.550000px;}
.yb0_c00119{bottom:353.745000px;}
.yab_c00119{bottom:354.405000px;}
.yaf_c00119{bottom:354.825000px;}
.yb1_c00119{bottom:355.470000px;}
.yad_c00119{bottom:355.905000px;}
.ya8_c00119{bottom:371.745000px;}
.ya7_c00119{bottom:371.970000px;}
.ya5_c00119{bottom:372.825000px;}
.yaa_c00119{bottom:373.245000px;}
.ya4_c00119{bottom:373.905000px;}
.ya9_c00119{bottom:374.970000px;}
.ya6_c00119{bottom:375.405000px;}
.ya2_c00119{bottom:391.245000px;}
.ya3_c00119{bottom:391.470000px;}
.ya1_c00119{bottom:392.325000px;}
.y9f_c00119{bottom:393.405000px;}
.ya0_c00119{bottom:394.470000px;}
.y9d_c00119{bottom:409.905000px;}
.y9c_c00119{bottom:410.745000px;}
.y9b_c00119{bottom:411.180000px;}
.y9e_c00119{bottom:412.245000px;}
.y99_c00119{bottom:412.905000px;}
.y9a_c00119{bottom:414.405000px;}
.y98_c00119{bottom:431.745000px;}
.y97_c00119{bottom:433.905000px;}
.y93_c00119{bottom:451.245000px;}
.y94_c00119{bottom:452.745000px;}
.y96_c00119{bottom:453.405000px;}
.y95_c00119{bottom:454.470000px;}
.y91_c00119{bottom:470.745000px;}
.y8d_c00119{bottom:471.825000px;}
.y92_c00119{bottom:472.245000px;}
.y90_c00119{bottom:472.905000px;}
.y8e_c00119{bottom:473.970000px;}
.y8f_c00119{bottom:474.405000px;}
.y88_c00119{bottom:490.245000px;}
.y8a_c00119{bottom:491.325000px;}
.y8c_c00119{bottom:491.745000px;}
.y8b_c00119{bottom:492.405000px;}
.y89_c00119{bottom:492.630000px;}
.y83_c00119{bottom:508.905000px;}
.y86_c00119{bottom:511.245000px;}
.y85_c00119{bottom:512.130000px;}
.y87_c00119{bottom:512.325000px;}
.y84_c00119{bottom:513.405000px;}
.y81_c00119{bottom:530.745000px;}
.y82_c00119{bottom:531.825000px;}
.y80_c00119{bottom:532.905000px;}
.y7f_c00119{bottom:533.130000px;}
.y7d_c00119{bottom:549.825000px;}
.y7e_c00119{bottom:550.245000px;}
.y7b_c00119{bottom:552.405000px;}
.y7c_c00119{bottom:552.630000px;}
.y7a_c00119{bottom:553.470000px;}
.y78_c00119{bottom:568.470000px;}
.y79_c00119{bottom:569.745000px;}
.y76_c00119{bottom:570.825000px;}
.y77_c00119{bottom:571.905000px;}
.y73_c00119{bottom:589.245000px;}
.y74_c00119{bottom:590.325000px;}
.y72_c00119{bottom:591.405000px;}
.y75_c00119{bottom:591.630000px;}
.y70_c00119{bottom:608.745000px;}
.y6e_c00119{bottom:609.825000px;}
.y6f_c00119{bottom:610.905000px;}
.y71_c00119{bottom:611.130000px;}
.y6a_c00119{bottom:629.745000px;}
.y6d_c00119{bottom:630.630000px;}
.y6b_c00119{bottom:630.825000px;}
.y6c_c00119{bottom:631.470000px;}
.y69_c00119{bottom:631.905000px;}
.y65_c00119{bottom:647.745000px;}
.y68_c00119{bottom:649.245000px;}
.y67_c00119{bottom:650.325000px;}
.y66_c00119{bottom:650.970000px;}
.y64_c00119{bottom:651.405000px;}
.y63_c00119{bottom:668.745000px;}
.y61_c00119{bottom:669.825000px;}
.y62_c00119{bottom:670.905000px;}
.y5f_c00119{bottom:688.245000px;}
.y60_c00119{bottom:689.970000px;}
.y5e_c00119{bottom:690.405000px;}
.y56_c00119{bottom:705.405000px;}
.y5a_c00119{bottom:706.905000px;}
.y57_c00119{bottom:707.745000px;}
.y5d_c00119{bottom:707.970000px;}
.y59_c00119{bottom:708.630000px;}
.y58_c00119{bottom:709.905000px;}
.y5c_c00119{bottom:710.130000px;}
.y5b_c00119{bottom:710.970000px;}
.y53_c00119{bottom:727.245000px;}
.y55_c00119{bottom:728.130000px;}
.y54_c00119{bottom:729.405000px;}
.y50_c00119{bottom:745.905000px;}
.y4e_c00119{bottom:746.745000px;}
.y51_c00119{bottom:747.825000px;}
.y4f_c00119{bottom:748.905000px;}
.y52_c00119{bottom:749.970000px;}
.y4a_c00119{bottom:766.245000px;}
.y4d_c00119{bottom:766.470000px;}
.y49_c00119{bottom:768.405000px;}
.y4b_c00119{bottom:769.470000px;}
.y4c_c00119{bottom:769.905000px;}
.y43_c00119{bottom:785.745000px;}
.y46_c00119{bottom:786.825000px;}
.y47_c00119{bottom:787.245000px;}
.y44_c00119{bottom:787.905000px;}
.y45_c00119{bottom:788.130000px;}
.y48_c00119{bottom:788.970000px;}
.y42_c00119{bottom:806.325000px;}
.y3d_c00119{bottom:806.745000px;}
.y3f_c00119{bottom:807.405000px;}
.y3e_c00119{bottom:807.630000px;}
.y40_c00119{bottom:807.825000px;}
.y41_c00119{bottom:808.905000px;}
.y3b_c00119{bottom:824.325000px;}
.y39_c00119{bottom:825.405000px;}
.y36_c00119{bottom:826.245000px;}
.y3c_c00119{bottom:827.130000px;}
.y3a_c00119{bottom:827.970000px;}
.y38_c00119{bottom:828.405000px;}
.y37_c00119{bottom:828.420000px;}
.y35_c00119{bottom:861.405000px;}
.y33_c00119{bottom:875.325000px;}
.y2f_c00119{bottom:875.550000px;}
.y30_c00119{bottom:876.405000px;}
.y32_c00119{bottom:876.630000px;}
.y31_c00119{bottom:877.470000px;}
.y34_c00119{bottom:877.695000px;}
.y2e_c00119{bottom:890.325000px;}
.y2d_c00119{bottom:893.550000px;}
.y2c_c00119{bottom:905.325000px;}
.y27_c00119{bottom:906.405000px;}
.y2b_c00119{bottom:906.630000px;}
.y28_c00119{bottom:907.470000px;}
.y29_c00119{bottom:907.695000px;}
.y2a_c00119{bottom:908.550000px;}
.y25_c00119{bottom:921.405000px;}
.y26_c00119{bottom:922.470000px;}
.y23_c00119{bottom:922.695000px;}
.y24_c00119{bottom:923.550000px;}
.y22_c00119{bottom:933.825000px;}
.y20_c00119{bottom:934.905000px;}
.y1f_c00119{bottom:935.325000px;}
.y21_c00119{bottom:937.050000px;}
.y1b_c00119{bottom:949.905000px;}
.y1e_c00119{bottom:950.970000px;}
.y1d_c00119{bottom:951.195000px;}
.y1a_c00119{bottom:951.630000px;}
.y1c_c00119{bottom:952.050000px;}
.y19_c00119{bottom:982.245000px;}
.y18_c00119{bottom:984.405000px;}
.y17_c00119{bottom:1000.905000px;}
.y12_c00119{bottom:1001.745000px;}
.y16_c00119{bottom:1003.050000px;}
.y14_c00119{bottom:1003.245000px;}
.y11_c00119{bottom:1003.905000px;}
.y15_c00119{bottom:1004.970000px;}
.y13_c00119{bottom:1005.405000px;}
.ye_c00119{bottom:1022.745000px;}
.y10_c00119{bottom:1023.405000px;}
.yf_c00119{bottom:1023.630000px;}
.yc_c00119{bottom:1024.905000px;}
.yd_c00119{bottom:1024.920000px;}
.y8_c00119{bottom:1040.745000px;}
.y7_c00119{bottom:1042.905000px;}
.ya_c00119{bottom:1043.325000px;}
.yb_c00119{bottom:1043.970000px;}
.y9_c00119{bottom:1044.405000px;}
.y5_c00119{bottom:1061.745000px;}
.y6_c00119{bottom:1062.630000px;}
.y3_c00119{bottom:1063.905000px;}
.y4_c00119{bottom:1064.970000px;}
.y2_c00119{bottom:1099.905000px;}
.y1_c00119{bottom:1102.050000px;}
.h7_c00119{height:4.206533px;}
.h8_c00119{height:16.752334px;}
.h5_c00119{height:23.025234px;}
.h1_c00119{height:25.091602px;}
.h3_c00119{height:31.364502px;}
.h2_c00119{height:35.571035px;}
.h6_c00119{height:39.777568px;}
.h4_c00119{height:43.910303px;}
.h9_c00119{height:48.116836px;}
.h0_c00119{height:1335.000000px;}
.w0_c00119{width:880.500000px;}
.x0_c00119{left:0.000000px;}
.xfd_c00119{left:150.000000px;}
.x4e_c00119{left:151.500000px;}
.x2_c00119{left:152.580000px;}
.xc_c00119{left:154.500000px;}
.x43_c00119{left:166.500000px;}
.x34_c00119{left:167.580000px;}
.x18_c00119{left:169.080000px;}
.x6b_c00119{left:172.500000px;}
.xcc_c00119{left:174.420000px;}
.x3f_c00119{left:179.580000px;}
.x31_c00119{left:181.500000px;}
.xd_c00119{left:182.580000px;}
.x35_c00119{left:184.080000px;}
.x74_c00119{left:187.080000px;}
.xac_c00119{left:190.920000px;}
.xd4_c00119{left:193.500000px;}
.xfe_c00119{left:196.500000px;}
.x97_c00119{left:198.420000px;}
.x7d_c00119{left:199.920000px;}
.xcd_c00119{left:201.420000px;}
.x86_c00119{left:202.500000px;}
.x90_c00119{left:207.000000px;}
.x104_c00119{left:208.080000px;}
.xb5_c00119{left:211.920000px;}
.x6c_c00119{left:217.500000px;}
.xe_c00119{left:218.580000px;}
.x3_c00119{left:220.080000px;}
.x23_c00119{left:222.000000px;}
.x40_c00119{left:223.500000px;}
.x98_c00119{left:225.420000px;}
.xaf_c00119{left:229.080000px;}
.xbe_c00119{left:231.420000px;}
.x91_c00119{left:235.920000px;}
.xc6_c00119{left:237.420000px;}
.x87_c00119{left:238.920000px;}
.x75_c00119{left:240.000000px;}
.x9f_c00119{left:241.500000px;}
.x44_c00119{left:243.000000px;}
.x24_c00119{left:244.500000px;}
.xd1_c00119{left:246.000000px;}
.x6d_c00119{left:249.420000px;}
.x5a_c00119{left:252.000000px;}
.x41_c00119{left:253.920000px;}
.x19_c00119{left:255.000000px;}
.x62_c00119{left:256.500000px;}
.xeb_c00119{left:259.500000px;}
.xff_c00119{left:262.500000px;}
.x36_c00119{left:264.000000px;}
.x7e_c00119{left:265.080000px;}
.x76_c00119{left:271.500000px;}
.x105_c00119{left:273.420000px;}
.x4_c00119{left:274.500000px;}
.xb6_c00119{left:276.000000px;}
.x1a_c00119{left:277.080000px;}
.xf9_c00119{left:279.000000px;}
.x42_c00119{left:280.500000px;}
.xd9_c00119{left:282.000000px;}
.xf_c00119{left:283.920000px;}
.x99_c00119{left:286.080000px;}
.xe5_c00119{left:287.775000px;}
.x6e_c00119{left:289.080000px;}
.x32_c00119{left:291.420000px;}
.x4f_c00119{left:294.000000px;}
.x37_c00119{left:297.000000px;}
.xdf_c00119{left:298.080000px;}
.x25_c00119{left:301.080000px;}
.x7f_c00119{left:302.580000px;}
.xc3_c00119{left:304.920000px;}
.x5b_c00119{left:306.000000px;}
.xf2_c00119{left:307.920000px;}
.xce_c00119{left:309.420000px;}
.x33_c00119{left:318.420000px;}
.x92_c00119{left:319.920000px;}
.x10_c00119{left:321.420000px;}
.xe6_c00119{left:322.500000px;}
.x38_c00119{left:324.000000px;}
.xa5_c00119{left:327.420000px;}
.x45_c00119{left:328.920000px;}
.x50_c00119{left:330.000000px;}
.xc7_c00119{left:331.080000px;}
.xd2_c00119{left:334.920000px;}
.x5_c00119{left:337.500000px;}
.xbf_c00119{left:339.000000px;}
.x5c_c00119{left:341.580000px;}
.x80_c00119{left:345.420000px;}
.x63_c00119{left:346.920000px;}
.x11_c00119{left:348.000000px;}
.x1b_c00119{left:349.500000px;}
.x26_c00119{left:351.000000px;}
.x46_c00119{left:357.000000px;}
.x39_c00119{left:358.500000px;}
.x51_c00119{left:360.420000px;}
.xcf_c00119{left:362.580000px;}
.xe4_c00119{left:364.500000px;}
.xfa_c00119{left:367.500000px;}
.xb0_c00119{left:369.420000px;}
.x1c_c00119{left:370.500000px;}
.x9a_c00119{left:373.080000px;}
.xd5_c00119{left:374.580000px;}
.x77_c00119{left:376.080000px;}
.xe7_c00119{left:378.000000px;}
.xb7_c00119{left:379.920000px;}
.x47_c00119{left:381.000000px;}
.xc8_c00119{left:384.420000px;}
.x27_c00119{left:385.920000px;}
.xf6_c00119{left:387.420000px;}
.x12_c00119{left:390.000000px;}
.x93_c00119{left:391.500000px;}
.x9b_c00119{left:393.000000px;}
.x81_c00119{left:394.500000px;}
.x3a_c00119{left:396.420000px;}
.xf1_c00119{left:397.500000px;}
.x1_c00119{left:400.500000px;}
.x88_c00119{left:402.000000px;}
.x52_c00119{left:403.500000px;}
.xe0_c00119{left:404.580000px;}
.x1d_c00119{left:406.500000px;}
.xd0_c00119{left:408.000000px;}
.xda_c00119{left:409.080000px;}
.xc9_c00119{left:411.000000px;}
.xa6_c00119{left:412.920000px;}
.x78_c00119{left:414.000000px;}
.x3b_c00119{left:415.080000px;}
.xf3_c00119{left:421.920000px;}
.x28_c00119{left:423.000000px;}
.xf7_c00119{left:424.500000px;}
.x9c_c00119{left:427.500000px;}
.x48_c00119{left:433.500000px;}
.xc0_c00119{left:435.420000px;}
.x53_c00119{left:436.920000px;}
.x79_c00119{left:439.920000px;}
.x5d_c00119{left:442.500000px;}
.xc4_c00119{left:444.000000px;}
.x89_c00119{left:447.000000px;}
.xd6_c00119{left:448.920000px;}
.x100_c00119{left:450.000000px;}
.x13_c00119{left:451.500000px;}
.xb1_c00119{left:453.420000px;}
.x6_c00119{left:454.500000px;}
.x29_c00119{left:459.000000px;}
.x64_c00119{left:460.920000px;}
.x1e_c00119{left:462.000000px;}
.x54_c00119{left:465.000000px;}
.xa0_c00119{left:468.000000px;}
.xdb_c00119{left:472.920000px;}
.xec_c00119{left:474.420000px;}
.x49_c00119{left:475.500000px;}
.xa7_c00119{left:477.420000px;}
.xe1_c00119{left:478.500000px;}
.x94_c00119{left:480.000000px;}
.x7a_c00119{left:481.500000px;}
.x6f_c00119{left:483.420000px;}
.x2a_c00119{left:484.500000px;}
.xd7_c00119{left:487.920000px;}
.x9d_c00119{left:490.500000px;}
.x8a_c00119{left:493.500000px;}
.x82_c00119{left:494.580000px;}
.x14_c00119{left:496.080000px;}
.x7b_c00119{left:498.000000px;}
.xad_c00119{left:499.920000px;}
.xdc_c00119{left:504.000000px;}
.xb8_c00119{left:506.580000px;}
.xd3_c00119{left:508.080000px;}
.x55_c00119{left:510.000000px;}
.x7c_c00119{left:511.500000px;}
.xa8_c00119{left:512.580000px;}
.x5e_c00119{left:514.500000px;}
.x65_c00119{left:516.000000px;}
.xd8_c00119{left:517.920000px;}
.xed_c00119{left:520.920000px;}
.x4a_c00119{left:522.000000px;}
.x56_c00119{left:523.500000px;}
.xb9_c00119{left:525.420000px;}
.x5f_c00119{left:526.500000px;}
.xae_c00119{left:528.000000px;}
.xe8_c00119{left:529.500000px;}
.x7_c00119{left:531.000000px;}
.x66_c00119{left:534.000000px;}
.xa1_c00119{left:535.500000px;}
.x3c_c00119{left:538.080000px;}
.xc1_c00119{left:539.580000px;}
.x8b_c00119{left:541.920000px;}
.xa9_c00119{left:543.000000px;}
.x15_c00119{left:544.080000px;}
.x95_c00119{left:546.000000px;}
.x2b_c00119{left:547.500000px;}
.xca_c00119{left:549.000000px;}
.xee_c00119{left:550.500000px;}
.xa2_c00119{left:551.580000px;}
.x67_c00119{left:553.500000px;}
.xfb_c00119{left:556.500000px;}
.xdd_c00119{left:557.580000px;}
.xc2_c00119{left:559.920000px;}
.x8_c00119{left:562.500000px;}
.x4b_c00119{left:565.080000px;}
.x101_c00119{left:567.000000px;}
.x70_c00119{left:568.920000px;}
.x8c_c00119{left:571.080000px;}
.x60_c00119{left:572.580000px;}
.x16_c00119{left:574.500000px;}
.x57_c00119{left:575.580000px;}
.x96_c00119{left:579.420000px;}
.x4c_c00119{left:583.500000px;}
.x2c_c00119{left:587.580000px;}
.xde_c00119{left:589.920000px;}
.x1f_c00119{left:591.420000px;}
.xef_c00119{left:593.580000px;}
.x71_c00119{left:595.920000px;}
.x17_c00119{left:601.500000px;}
.xfc_c00119{left:603.420000px;}
.x102_c00119{left:604.500000px;}
.x83_c00119{left:607.080000px;}
.xa3_c00119{left:609.000000px;}
.x58_c00119{left:612.420000px;}
.x8d_c00119{left:613.500000px;}
.xe9_c00119{left:615.420000px;}
.xaa_c00119{left:618.000000px;}
.x3d_c00119{left:619.080000px;}
.xba_c00119{left:621.000000px;}
.x20_c00119{left:622.920000px;}
.xe2_c00119{left:624.420000px;}
.xcb_c00119{left:627.000000px;}
.x68_c00119{left:628.080000px;}
.xf8_c00119{left:630.000000px;}
.x9e_c00119{left:631.080000px;}
.x2d_c00119{left:633.000000px;}
.x9_c00119{left:639.000000px;}
.xb2_c00119{left:643.500000px;}
.x69_c00119{left:644.580000px;}
.x8e_c00119{left:649.080000px;}
.xea_c00119{left:651.420000px;}
.x103_c00119{left:652.920000px;}
.xa4_c00119{left:654.000000px;}
.xbb_c00119{left:655.920000px;}
.x6a_c00119{left:657.000000px;}
.xa_c00119{left:658.920000px;}
.x21_c00119{left:660.420000px;}
.xc5_c00119{left:663.000000px;}
.xf4_c00119{left:664.920000px;}
.xb3_c00119{left:666.000000px;}
.x84_c00119{left:669.000000px;}
.x4d_c00119{left:670.080000px;}
.xab_c00119{left:672.420000px;}
.xb_c00119{left:673.920000px;}
.x2e_c00119{left:678.420000px;}
.xbc_c00119{left:682.080000px;}
.x72_c00119{left:683.580000px;}
.xf0_c00119{left:687.000000px;}
.x2f_c00119{left:688.080000px;}
.xb4_c00119{left:690.420000px;}
.x3e_c00119{left:691.500000px;}
.xe3_c00119{left:693.000000px;}
.x8f_c00119{left:694.080000px;}
.x85_c00119{left:697.080000px;}
.x22_c00119{left:699.420000px;}
.x59_c00119{left:700.500000px;}
.xf5_c00119{left:703.500000px;}
.x73_c00119{left:705.000000px;}
.x61_c00119{left:709.080000px;}
.xbd_c00119{left:716.580000px;}
.x30_c00119{left:719.580000px;}
@media print{
.v1_c00119{vertical-align:-5.333333pt;}
.v0_c00119{vertical-align:0.000000pt;}
.ls0_c00119{letter-spacing:0.000000pt;}
.ws2_c00119{word-spacing:-7.989423pt;}
.ws0_c00119{word-spacing:-6.928764pt;}
.ws3_c00119{word-spacing:0.000000pt;}
.ws1_c00119{word-spacing:0.539934pt;}
.fs6_c00119{font-size:3.040000pt;}
.fs7_c00119{font-size:12.106667pt;}
.fs4_c00119{font-size:16.640000pt;}
.fs0_c00119{font-size:18.133333pt;}
.fs2_c00119{font-size:22.666667pt;}
.fs1_c00119{font-size:25.706667pt;}
.fs5_c00119{font-size:28.746667pt;}
.fs3_c00119{font-size:31.733333pt;}
.fs8_c00119{font-size:34.773333pt;}
.y0_c00119{bottom:0.000000pt;}
.yca_c00119{bottom:225.106667pt;}
.ycc_c00119{bottom:226.440000pt;}
.yc9_c00119{bottom:227.026667pt;}
.ycb_c00119{bottom:227.226667pt;}
.yc8_c00119{bottom:241.693333pt;}
.yc2_c00119{bottom:242.440000pt;}
.yc4_c00119{bottom:243.773333pt;}
.yc3_c00119{bottom:244.360000pt;}
.yc7_c00119{bottom:244.560000pt;}
.yc6_c00119{bottom:244.733333pt;}
.yc5_c00119{bottom:245.693333pt;}
.ybf_c00119{bottom:261.106667pt;}
.yc1_c00119{bottom:262.066667pt;}
.yc0_c00119{bottom:262.640000pt;}
.ybe_c00119{bottom:263.026667pt;}
.yb8_c00119{bottom:277.106667pt;}
.ybb_c00119{bottom:278.440000pt;}
.yb7_c00119{bottom:279.026667pt;}
.ybd_c00119{bottom:279.400000pt;}
.yb9_c00119{bottom:279.973333pt;}
.yba_c00119{bottom:280.360000pt;}
.ybc_c00119{bottom:281.306667pt;}
.yb4_c00119{bottom:295.600000pt;}
.yb2_c00119{bottom:295.773333pt;}
.yb6_c00119{bottom:297.306667pt;}
.yb3_c00119{bottom:297.693333pt;}
.yb5_c00119{bottom:298.640000pt;}
.yae_c00119{bottom:313.106667pt;}
.yac_c00119{bottom:314.266667pt;}
.yb0_c00119{bottom:314.440000pt;}
.yab_c00119{bottom:315.026667pt;}
.yaf_c00119{bottom:315.400000pt;}
.yb1_c00119{bottom:315.973333pt;}
.yad_c00119{bottom:316.360000pt;}
.ya8_c00119{bottom:330.440000pt;}
.ya7_c00119{bottom:330.640000pt;}
.ya5_c00119{bottom:331.400000pt;}
.yaa_c00119{bottom:331.773333pt;}
.ya4_c00119{bottom:332.360000pt;}
.ya9_c00119{bottom:333.306667pt;}
.ya6_c00119{bottom:333.693333pt;}
.ya2_c00119{bottom:347.773333pt;}
.ya3_c00119{bottom:347.973333pt;}
.ya1_c00119{bottom:348.733333pt;}
.y9f_c00119{bottom:349.693333pt;}
.ya0_c00119{bottom:350.640000pt;}
.y9d_c00119{bottom:364.360000pt;}
.y9c_c00119{bottom:365.106667pt;}
.y9b_c00119{bottom:365.493333pt;}
.y9e_c00119{bottom:366.440000pt;}
.y99_c00119{bottom:367.026667pt;}
.y9a_c00119{bottom:368.360000pt;}
.y98_c00119{bottom:383.773333pt;}
.y97_c00119{bottom:385.693333pt;}
.y93_c00119{bottom:401.106667pt;}
.y94_c00119{bottom:402.440000pt;}
.y96_c00119{bottom:403.026667pt;}
.y95_c00119{bottom:403.973333pt;}
.y91_c00119{bottom:418.440000pt;}
.y8d_c00119{bottom:419.400000pt;}
.y92_c00119{bottom:419.773333pt;}
.y90_c00119{bottom:420.360000pt;}
.y8e_c00119{bottom:421.306667pt;}
.y8f_c00119{bottom:421.693333pt;}
.y88_c00119{bottom:435.773333pt;}
.y8a_c00119{bottom:436.733333pt;}
.y8c_c00119{bottom:437.106667pt;}
.y8b_c00119{bottom:437.693333pt;}
.y89_c00119{bottom:437.893333pt;}
.y83_c00119{bottom:452.360000pt;}
.y86_c00119{bottom:454.440000pt;}
.y85_c00119{bottom:455.226667pt;}
.y87_c00119{bottom:455.400000pt;}
.y84_c00119{bottom:456.360000pt;}
.y81_c00119{bottom:471.773333pt;}
.y82_c00119{bottom:472.733333pt;}
.y80_c00119{bottom:473.693333pt;}
.y7f_c00119{bottom:473.893333pt;}
.y7d_c00119{bottom:488.733333pt;}
.y7e_c00119{bottom:489.106667pt;}
.y7b_c00119{bottom:491.026667pt;}
.y7c_c00119{bottom:491.226667pt;}
.y7a_c00119{bottom:491.973333pt;}
.y78_c00119{bottom:505.306667pt;}
.y79_c00119{bottom:506.440000pt;}
.y76_c00119{bottom:507.400000pt;}
.y77_c00119{bottom:508.360000pt;}
.y73_c00119{bottom:523.773333pt;}
.y74_c00119{bottom:524.733333pt;}
.y72_c00119{bottom:525.693333pt;}
.y75_c00119{bottom:525.893333pt;}
.y70_c00119{bottom:541.106667pt;}
.y6e_c00119{bottom:542.066667pt;}
.y6f_c00119{bottom:543.026667pt;}
.y71_c00119{bottom:543.226667pt;}
.y6a_c00119{bottom:559.773333pt;}
.y6d_c00119{bottom:560.560000pt;}
.y6b_c00119{bottom:560.733333pt;}
.y6c_c00119{bottom:561.306667pt;}
.y69_c00119{bottom:561.693333pt;}
.y65_c00119{bottom:575.773333pt;}
.y68_c00119{bottom:577.106667pt;}
.y67_c00119{bottom:578.066667pt;}
.y66_c00119{bottom:578.640000pt;}
.y64_c00119{bottom:579.026667pt;}
.y63_c00119{bottom:594.440000pt;}
.y61_c00119{bottom:595.400000pt;}
.y62_c00119{bottom:596.360000pt;}
.y5f_c00119{bottom:611.773333pt;}
.y60_c00119{bottom:613.306667pt;}
.y5e_c00119{bottom:613.693333pt;}
.y56_c00119{bottom:627.026667pt;}
.y5a_c00119{bottom:628.360000pt;}
.y57_c00119{bottom:629.106667pt;}
.y5d_c00119{bottom:629.306667pt;}
.y59_c00119{bottom:629.893333pt;}
.y58_c00119{bottom:631.026667pt;}
.y5c_c00119{bottom:631.226667pt;}
.y5b_c00119{bottom:631.973333pt;}
.y53_c00119{bottom:646.440000pt;}
.y55_c00119{bottom:647.226667pt;}
.y54_c00119{bottom:648.360000pt;}
.y50_c00119{bottom:663.026667pt;}
.y4e_c00119{bottom:663.773333pt;}
.y51_c00119{bottom:664.733333pt;}
.y4f_c00119{bottom:665.693333pt;}
.y52_c00119{bottom:666.640000pt;}
.y4a_c00119{bottom:681.106667pt;}
.y4d_c00119{bottom:681.306667pt;}
.y49_c00119{bottom:683.026667pt;}
.y4b_c00119{bottom:683.973333pt;}
.y4c_c00119{bottom:684.360000pt;}
.y43_c00119{bottom:698.440000pt;}
.y46_c00119{bottom:699.400000pt;}
.y47_c00119{bottom:699.773333pt;}
.y44_c00119{bottom:700.360000pt;}
.y45_c00119{bottom:700.560000pt;}
.y48_c00119{bottom:701.306667pt;}
.y42_c00119{bottom:716.733333pt;}
.y3d_c00119{bottom:717.106667pt;}
.y3f_c00119{bottom:717.693333pt;}
.y3e_c00119{bottom:717.893333pt;}
.y40_c00119{bottom:718.066667pt;}
.y41_c00119{bottom:719.026667pt;}
.y3b_c00119{bottom:732.733333pt;}
.y39_c00119{bottom:733.693333pt;}
.y36_c00119{bottom:734.440000pt;}
.y3c_c00119{bottom:735.226667pt;}
.y3a_c00119{bottom:735.973333pt;}
.y38_c00119{bottom:736.360000pt;}
.y37_c00119{bottom:736.373333pt;}
.y35_c00119{bottom:765.693333pt;}
.y33_c00119{bottom:778.066667pt;}
.y2f_c00119{bottom:778.266667pt;}
.y30_c00119{bottom:779.026667pt;}
.y32_c00119{bottom:779.226667pt;}
.y31_c00119{bottom:779.973333pt;}
.y34_c00119{bottom:780.173333pt;}
.y2e_c00119{bottom:791.400000pt;}
.y2d_c00119{bottom:794.266667pt;}
.y2c_c00119{bottom:804.733333pt;}
.y27_c00119{bottom:805.693333pt;}
.y2b_c00119{bottom:805.893333pt;}
.y28_c00119{bottom:806.640000pt;}
.y29_c00119{bottom:806.840000pt;}
.y2a_c00119{bottom:807.600000pt;}
.y25_c00119{bottom:819.026667pt;}
.y26_c00119{bottom:819.973333pt;}
.y23_c00119{bottom:820.173333pt;}
.y24_c00119{bottom:820.933333pt;}
.y22_c00119{bottom:830.066667pt;}
.y20_c00119{bottom:831.026667pt;}
.y1f_c00119{bottom:831.400000pt;}
.y21_c00119{bottom:832.933333pt;}
.y1b_c00119{bottom:844.360000pt;}
.y1e_c00119{bottom:845.306667pt;}
.y1d_c00119{bottom:845.506667pt;}
.y1a_c00119{bottom:845.893333pt;}
.y1c_c00119{bottom:846.266667pt;}
.y19_c00119{bottom:873.106667pt;}
.y18_c00119{bottom:875.026667pt;}
.y17_c00119{bottom:889.693333pt;}
.y12_c00119{bottom:890.440000pt;}
.y16_c00119{bottom:891.600000pt;}
.y14_c00119{bottom:891.773333pt;}
.y11_c00119{bottom:892.360000pt;}
.y15_c00119{bottom:893.306667pt;}
.y13_c00119{bottom:893.693333pt;}
.ye_c00119{bottom:909.106667pt;}
.y10_c00119{bottom:909.693333pt;}
.yf_c00119{bottom:909.893333pt;}
.yc_c00119{bottom:911.026667pt;}
.yd_c00119{bottom:911.040000pt;}
.y8_c00119{bottom:925.106667pt;}
.y7_c00119{bottom:927.026667pt;}
.ya_c00119{bottom:927.400000pt;}
.yb_c00119{bottom:927.973333pt;}
.y9_c00119{bottom:928.360000pt;}
.y5_c00119{bottom:943.773333pt;}
.y6_c00119{bottom:944.560000pt;}
.y3_c00119{bottom:945.693333pt;}
.y4_c00119{bottom:946.640000pt;}
.y2_c00119{bottom:977.693333pt;}
.y1_c00119{bottom:979.600000pt;}
.h7_c00119{height:3.739141pt;}
.h8_c00119{height:14.890964pt;}
.h5_c00119{height:20.466875pt;}
.h1_c00119{height:22.303646pt;}
.h3_c00119{height:27.879557pt;}
.h2_c00119{height:31.618698pt;}
.h6_c00119{height:35.357839pt;}
.h4_c00119{height:39.031380pt;}
.h9_c00119{height:42.770521pt;}
.h0_c00119{height:1186.666667pt;}
.w0_c00119{width:782.666667pt;}
.x0_c00119{left:0.000000pt;}
.xfd_c00119{left:133.333333pt;}
.x4e_c00119{left:134.666667pt;}
.x2_c00119{left:135.626667pt;}
.xc_c00119{left:137.333333pt;}
.x43_c00119{left:148.000000pt;}
.x34_c00119{left:148.960000pt;}
.x18_c00119{left:150.293333pt;}
.x6b_c00119{left:153.333333pt;}
.xcc_c00119{left:155.040000pt;}
.x3f_c00119{left:159.626667pt;}
.x31_c00119{left:161.333333pt;}
.xd_c00119{left:162.293333pt;}
.x35_c00119{left:163.626667pt;}
.x74_c00119{left:166.293333pt;}
.xac_c00119{left:169.706667pt;}
.xd4_c00119{left:172.000000pt;}
.xfe_c00119{left:174.666667pt;}
.x97_c00119{left:176.373333pt;}
.x7d_c00119{left:177.706667pt;}
.xcd_c00119{left:179.040000pt;}
.x86_c00119{left:180.000000pt;}
.x90_c00119{left:184.000000pt;}
.x104_c00119{left:184.960000pt;}
.xb5_c00119{left:188.373333pt;}
.x6c_c00119{left:193.333333pt;}
.xe_c00119{left:194.293333pt;}
.x3_c00119{left:195.626667pt;}
.x23_c00119{left:197.333333pt;}
.x40_c00119{left:198.666667pt;}
.x98_c00119{left:200.373333pt;}
.xaf_c00119{left:203.626667pt;}
.xbe_c00119{left:205.706667pt;}
.x91_c00119{left:209.706667pt;}
.xc6_c00119{left:211.040000pt;}
.x87_c00119{left:212.373333pt;}
.x75_c00119{left:213.333333pt;}
.x9f_c00119{left:214.666667pt;}
.x44_c00119{left:216.000000pt;}
.x24_c00119{left:217.333333pt;}
.xd1_c00119{left:218.666667pt;}
.x6d_c00119{left:221.706667pt;}
.x5a_c00119{left:224.000000pt;}
.x41_c00119{left:225.706667pt;}
.x19_c00119{left:226.666667pt;}
.x62_c00119{left:228.000000pt;}
.xeb_c00119{left:230.666667pt;}
.xff_c00119{left:233.333333pt;}
.x36_c00119{left:234.666667pt;}
.x7e_c00119{left:235.626667pt;}
.x76_c00119{left:241.333333pt;}
.x105_c00119{left:243.040000pt;}
.x4_c00119{left:244.000000pt;}
.xb6_c00119{left:245.333333pt;}
.x1a_c00119{left:246.293333pt;}
.xf9_c00119{left:248.000000pt;}
.x42_c00119{left:249.333333pt;}
.xd9_c00119{left:250.666667pt;}
.xf_c00119{left:252.373333pt;}
.x99_c00119{left:254.293333pt;}
.xe5_c00119{left:255.800000pt;}
.x6e_c00119{left:256.960000pt;}
.x32_c00119{left:259.040000pt;}
.x4f_c00119{left:261.333333pt;}
.x37_c00119{left:264.000000pt;}
.xdf_c00119{left:264.960000pt;}
.x25_c00119{left:267.626667pt;}
.x7f_c00119{left:268.960000pt;}
.xc3_c00119{left:271.040000pt;}
.x5b_c00119{left:272.000000pt;}
.xf2_c00119{left:273.706667pt;}
.xce_c00119{left:275.040000pt;}
.x33_c00119{left:283.040000pt;}
.x92_c00119{left:284.373333pt;}
.x10_c00119{left:285.706667pt;}
.xe6_c00119{left:286.666667pt;}
.x38_c00119{left:288.000000pt;}
.xa5_c00119{left:291.040000pt;}
.x45_c00119{left:292.373333pt;}
.x50_c00119{left:293.333333pt;}
.xc7_c00119{left:294.293333pt;}
.xd2_c00119{left:297.706667pt;}
.x5_c00119{left:300.000000pt;}
.xbf_c00119{left:301.333333pt;}
.x5c_c00119{left:303.626667pt;}
.x80_c00119{left:307.040000pt;}
.x63_c00119{left:308.373333pt;}
.x11_c00119{left:309.333333pt;}
.x1b_c00119{left:310.666667pt;}
.x26_c00119{left:312.000000pt;}
.x46_c00119{left:317.333333pt;}
.x39_c00119{left:318.666667pt;}
.x51_c00119{left:320.373333pt;}
.xcf_c00119{left:322.293333pt;}
.xe4_c00119{left:324.000000pt;}
.xfa_c00119{left:326.666667pt;}
.xb0_c00119{left:328.373333pt;}
.x1c_c00119{left:329.333333pt;}
.x9a_c00119{left:331.626667pt;}
.xd5_c00119{left:332.960000pt;}
.x77_c00119{left:334.293333pt;}
.xe7_c00119{left:336.000000pt;}
.xb7_c00119{left:337.706667pt;}
.x47_c00119{left:338.666667pt;}
.xc8_c00119{left:341.706667pt;}
.x27_c00119{left:343.040000pt;}
.xf6_c00119{left:344.373333pt;}
.x12_c00119{left:346.666667pt;}
.x93_c00119{left:348.000000pt;}
.x9b_c00119{left:349.333333pt;}
.x81_c00119{left:350.666667pt;}
.x3a_c00119{left:352.373333pt;}
.xf1_c00119{left:353.333333pt;}
.x1_c00119{left:356.000000pt;}
.x88_c00119{left:357.333333pt;}
.x52_c00119{left:358.666667pt;}
.xe0_c00119{left:359.626667pt;}
.x1d_c00119{left:361.333333pt;}
.xd0_c00119{left:362.666667pt;}
.xda_c00119{left:363.626667pt;}
.xc9_c00119{left:365.333333pt;}
.xa6_c00119{left:367.040000pt;}
.x78_c00119{left:368.000000pt;}
.x3b_c00119{left:368.960000pt;}
.xf3_c00119{left:375.040000pt;}
.x28_c00119{left:376.000000pt;}
.xf7_c00119{left:377.333333pt;}
.x9c_c00119{left:380.000000pt;}
.x48_c00119{left:385.333333pt;}
.xc0_c00119{left:387.040000pt;}
.x53_c00119{left:388.373333pt;}
.x79_c00119{left:391.040000pt;}
.x5d_c00119{left:393.333333pt;}
.xc4_c00119{left:394.666667pt;}
.x89_c00119{left:397.333333pt;}
.xd6_c00119{left:399.040000pt;}
.x100_c00119{left:400.000000pt;}
.x13_c00119{left:401.333333pt;}
.xb1_c00119{left:403.040000pt;}
.x6_c00119{left:404.000000pt;}
.x29_c00119{left:408.000000pt;}
.x64_c00119{left:409.706667pt;}
.x1e_c00119{left:410.666667pt;}
.x54_c00119{left:413.333333pt;}
.xa0_c00119{left:416.000000pt;}
.xdb_c00119{left:420.373333pt;}
.xec_c00119{left:421.706667pt;}
.x49_c00119{left:422.666667pt;}
.xa7_c00119{left:424.373333pt;}
.xe1_c00119{left:425.333333pt;}
.x94_c00119{left:426.666667pt;}
.x7a_c00119{left:428.000000pt;}
.x6f_c00119{left:429.706667pt;}
.x2a_c00119{left:430.666667pt;}
.xd7_c00119{left:433.706667pt;}
.x9d_c00119{left:436.000000pt;}
.x8a_c00119{left:438.666667pt;}
.x82_c00119{left:439.626667pt;}
.x14_c00119{left:440.960000pt;}
.x7b_c00119{left:442.666667pt;}
.xad_c00119{left:444.373333pt;}
.xdc_c00119{left:448.000000pt;}
.xb8_c00119{left:450.293333pt;}
.xd3_c00119{left:451.626667pt;}
.x55_c00119{left:453.333333pt;}
.x7c_c00119{left:454.666667pt;}
.xa8_c00119{left:455.626667pt;}
.x5e_c00119{left:457.333333pt;}
.x65_c00119{left:458.666667pt;}
.xd8_c00119{left:460.373333pt;}
.xed_c00119{left:463.040000pt;}
.x4a_c00119{left:464.000000pt;}
.x56_c00119{left:465.333333pt;}
.xb9_c00119{left:467.040000pt;}
.x5f_c00119{left:468.000000pt;}
.xae_c00119{left:469.333333pt;}
.xe8_c00119{left:470.666667pt;}
.x7_c00119{left:472.000000pt;}
.x66_c00119{left:474.666667pt;}
.xa1_c00119{left:476.000000pt;}
.x3c_c00119{left:478.293333pt;}
.xc1_c00119{left:479.626667pt;}
.x8b_c00119{left:481.706667pt;}
.xa9_c00119{left:482.666667pt;}
.x15_c00119{left:483.626667pt;}
.x95_c00119{left:485.333333pt;}
.x2b_c00119{left:486.666667pt;}
.xca_c00119{left:488.000000pt;}
.xee_c00119{left:489.333333pt;}
.xa2_c00119{left:490.293333pt;}
.x67_c00119{left:492.000000pt;}
.xfb_c00119{left:494.666667pt;}
.xdd_c00119{left:495.626667pt;}
.xc2_c00119{left:497.706667pt;}
.x8_c00119{left:500.000000pt;}
.x4b_c00119{left:502.293333pt;}
.x101_c00119{left:504.000000pt;}
.x70_c00119{left:505.706667pt;}
.x8c_c00119{left:507.626667pt;}
.x60_c00119{left:508.960000pt;}
.x16_c00119{left:510.666667pt;}
.x57_c00119{left:511.626667pt;}
.x96_c00119{left:515.040000pt;}
.x4c_c00119{left:518.666667pt;}
.x2c_c00119{left:522.293333pt;}
.xde_c00119{left:524.373333pt;}
.x1f_c00119{left:525.706667pt;}
.xef_c00119{left:527.626667pt;}
.x71_c00119{left:529.706667pt;}
.x17_c00119{left:534.666667pt;}
.xfc_c00119{left:536.373333pt;}
.x102_c00119{left:537.333333pt;}
.x83_c00119{left:539.626667pt;}
.xa3_c00119{left:541.333333pt;}
.x58_c00119{left:544.373333pt;}
.x8d_c00119{left:545.333333pt;}
.xe9_c00119{left:547.040000pt;}
.xaa_c00119{left:549.333333pt;}
.x3d_c00119{left:550.293333pt;}
.xba_c00119{left:552.000000pt;}
.x20_c00119{left:553.706667pt;}
.xe2_c00119{left:555.040000pt;}
.xcb_c00119{left:557.333333pt;}
.x68_c00119{left:558.293333pt;}
.xf8_c00119{left:560.000000pt;}
.x9e_c00119{left:560.960000pt;}
.x2d_c00119{left:562.666667pt;}
.x9_c00119{left:568.000000pt;}
.xb2_c00119{left:572.000000pt;}
.x69_c00119{left:572.960000pt;}
.x8e_c00119{left:576.960000pt;}
.xea_c00119{left:579.040000pt;}
.x103_c00119{left:580.373333pt;}
.xa4_c00119{left:581.333333pt;}
.xbb_c00119{left:583.040000pt;}
.x6a_c00119{left:584.000000pt;}
.xa_c00119{left:585.706667pt;}
.x21_c00119{left:587.040000pt;}
.xc5_c00119{left:589.333333pt;}
.xf4_c00119{left:591.040000pt;}
.xb3_c00119{left:592.000000pt;}
.x84_c00119{left:594.666667pt;}
.x4d_c00119{left:595.626667pt;}
.xab_c00119{left:597.706667pt;}
.xb_c00119{left:599.040000pt;}
.x2e_c00119{left:603.040000pt;}
.xbc_c00119{left:606.293333pt;}
.x72_c00119{left:607.626667pt;}
.xf0_c00119{left:610.666667pt;}
.x2f_c00119{left:611.626667pt;}
.xb4_c00119{left:613.706667pt;}
.x3e_c00119{left:614.666667pt;}
.xe3_c00119{left:616.000000pt;}
.x8f_c00119{left:616.960000pt;}
.x85_c00119{left:619.626667pt;}
.x22_c00119{left:621.706667pt;}
.x59_c00119{left:622.666667pt;}
.xf5_c00119{left:625.333333pt;}
.x73_c00119{left:626.666667pt;}
.x61_c00119{left:630.293333pt;}
.xbd_c00119{left:636.960000pt;}
.x30_c00119{left:639.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_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_708facf0176c70c80fd2e051.woff2')format("woff");}.ff1_c00120{font-family:ff1_c00120;line-height:1.688965;font-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_c00120{transform:matrix(0.311345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311345,0.000000,0.000000,0.250000,0,0);}
.m8a_c00120{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m5e_c00120{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.meb_c00120{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.mc7_c00120{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m3b_c00120{transform:matrix(0.365966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365966,0.000000,0.000000,0.250000,0,0);}
.ma2_c00120{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.m4e_c00120{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.mae_c00120{transform:matrix(0.368275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368275,0.000000,0.000000,0.250000,0,0);}
.m6a_c00120{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mc_c00120{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m2c_c00120{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.md3_c00120{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m73_c00120{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.me3_c00120{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.m14_c00120{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m64_c00120{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.ma0_c00120{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.me2_c00120{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.me8_c00120{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.md0_c00120{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m1d_c00120{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.md9_c00120{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.md1_c00120{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m31_c00120{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m51_c00120{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m5d_c00120{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m7f_c00120{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.me1_c00120{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.mbb_c00120{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m75_c00120{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mc1_c00120{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m67_c00120{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.med_c00120{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.ma4_c00120{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m6d_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);}
.m78_c00120{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m32_c00120{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m30_c00120{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.ma9_c00120{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m1f_c00120{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m2a_c00120{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m3d_c00120{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mbf_c00120{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mb0_c00120{transform:matrix(0.412193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412193,0.000000,0.000000,0.250000,0,0);}
.m2b_c00120{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m95_c00120{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m15_c00120{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.ma8_c00120{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m98_c00120{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.ma5_c00120{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m1c_c00120{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m27_c00120{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.md8_c00120{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m39_c00120{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m19_c00120{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m4f_c00120{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m21_c00120{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.maf_c00120{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m89_c00120{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.me4_c00120{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m2d_c00120{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m41_c00120{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.me5_c00120{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m17_c00120{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.m10_c00120{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m3f_c00120{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m2e_c00120{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m48_c00120{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m8e_c00120{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m50_c00120{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m62_c00120{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.mcf_c00120{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m38_c00120{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.m82_c00120{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.mbc_c00120{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m45_c00120{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m94_c00120{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.m1_c00120{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m63_c00120{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mcb_c00120{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.mba_c00120{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m34_c00120{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.mdc_c00120{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.mb8_c00120{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.ma6_c00120{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.m7b_c00120{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m3a_c00120{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.maa_c00120{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.m1e_c00120{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m90_c00120{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mec_c00120{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m54_c00120{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m70_c00120{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m4d_c00120{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.ma_c00120{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.m59_c00120{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m9e_c00120{transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);}
.m97_c00120{transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);}
.mce_c00120{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m16_c00120{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.m5a_c00120{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m49_c00120{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m43_c00120{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m9b_c00120{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.md2_c00120{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m4a_c00120{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m25_c00120{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m66_c00120{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m9d_c00120{transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);}
.m77_c00120{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.mb7_c00120{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m68_c00120{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m6c_c00120{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.mdd_c00120{transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);}
.m84_c00120{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m71_c00120{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m52_c00120{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m99_c00120{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m24_c00120{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mf_c00120{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m11_c00120{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mc9_c00120{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.me0_c00120{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m6_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);}
.m58_c00120{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m7e_c00120{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mc6_c00120{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m33_c00120{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.m3c_c00120{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mca_c00120{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m5c_c00120{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.ma1_c00120{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m9_c00120{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m8f_c00120{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m3_c00120{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m5b_c00120{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mb2_c00120{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mab_c00120{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.md6_c00120{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m9c_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);}
.m22_c00120{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m18_c00120{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m8_c00120{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mc4_c00120{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m81_c00120{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mb9_c00120{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m61_c00120{transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);}
.m7_c00120{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m7d_c00120{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.md5_c00120{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mcd_c00120{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m47_c00120{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m8b_c00120{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.mc5_c00120{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mb4_c00120{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m5f_c00120{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m72_c00120{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.mbd_c00120{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m83_c00120{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m6b_c00120{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m37_c00120{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m44_c00120{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.ma7_c00120{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m56_c00120{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m20_c00120{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mda_c00120{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m8c_c00120{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m69_c00120{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.mb3_c00120{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m46_c00120{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m12_c00120{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m4_c00120{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mc2_c00120{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.mac_c00120{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m91_c00120{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m79_c00120{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m92_c00120{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mc8_c00120{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m2_c00120{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.mc3_c00120{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m28_c00120{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m29_c00120{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.mb6_c00120{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m86_c00120{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.md4_c00120{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m42_c00120{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m13_c00120{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m5_c00120{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.mde_c00120{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m80_c00120{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m9f_c00120{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m4b_c00120{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.mdf_c00120{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m1b_c00120{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m60_c00120{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m2f_c00120{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.me7_c00120{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.me_c00120{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m40_c00120{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mc0_c00120{transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);}
.m23_c00120{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m26_c00120{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m0_c00120{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.m6f_c00120{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m65_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);}
.md_c00120{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.ma3_c00120{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.mcc_c00120{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.m85_c00120{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m9a_c00120{transform:matrix(0.634855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634855,0.000000,0.000000,0.250000,0,0);}
.m76_c00120{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m93_c00120{transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);}
.me9_c00120{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m96_c00120{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m7c_c00120{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m1a_c00120{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m3e_c00120{transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);}
.m6e_c00120{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);}
.mad_c00120{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.m87_c00120{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m4c_c00120{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.md7_c00120{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m7a_c00120{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mea_c00120{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.mee_c00120{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m88_c00120{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m57_c00120{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.me6_c00120{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m74_c00120{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mbe_c00120{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m8d_c00120{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mb_c00120{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mdb_c00120{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m53_c00120{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.m35_c00120{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.mef_c00120{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m55_c00120{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.m36_c00120{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.mb1_c00120{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00120{vertical-align:0.000000px;}
.v1_c00120{vertical-align:6.000000px;}
.ls0_c00120{letter-spacing:0.000000px;}
.sc__c00120{text-shadow:none;}
.sc0_c00120{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00120{-webkit-text-stroke:0px transparent;}
.sc0_c00120{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00120{word-spacing:-9.207360px;}
.ws1_c00120{word-spacing:-6.171684px;}
.ws4_c00120{word-spacing:-5.765735px;}
.ws3_c00120{word-spacing:-4.000607px;}
.ws2_c00120{word-spacing:-3.045198px;}
.ws5_c00120{word-spacing:0.000000px;}
.fc0_c00120{color:transparent;}
.fs6_c00120{font-size:3.420000px;}
.fs7_c00120{font-size:11.880000px;}
.fs4_c00120{font-size:18.720000px;}
.fs0_c00120{font-size:20.400000px;}
.fs2_c00120{font-size:25.500000px;}
.fs1_c00120{font-size:28.920000px;}
.fs5_c00120{font-size:32.340000px;}
.fs3_c00120{font-size:35.700000px;}
.fs8_c00120{font-size:39.120000px;}
.y0_c00120{bottom:0.000000px;}
.ydc_c00120{bottom:252.405000px;}
.ye1_c00120{bottom:253.245000px;}
.ydf_c00120{bottom:253.470000px;}
.yde_c00120{bottom:253.905000px;}
.ye4_c00120{bottom:254.130000px;}
.ye2_c00120{bottom:254.325000px;}
.ydb_c00120{bottom:254.745000px;}
.ye0_c00120{bottom:255.405000px;}
.ye3_c00120{bottom:255.630000px;}
.ydd_c00120{bottom:256.470000px;}
.yd4_c00120{bottom:271.905000px;}
.yda_c00120{bottom:272.745000px;}
.yd6_c00120{bottom:272.970000px;}
.yd8_c00120{bottom:273.825000px;}
.yd3_c00120{bottom:274.245000px;}
.yd9_c00120{bottom:274.905000px;}
.yd7_c00120{bottom:275.130000px;}
.yd2_c00120{bottom:275.325000px;}
.yd5_c00120{bottom:275.970000px;}
.yd1_c00120{bottom:276.405000px;}
.ycf_c00120{bottom:292.470000px;}
.ycd_c00120{bottom:292.905000px;}
.yca_c00120{bottom:293.745000px;}
.yd0_c00120{bottom:294.630000px;}
.yce_c00120{bottom:295.470000px;}
.ycc_c00120{bottom:295.905000px;}
.ycb_c00120{bottom:295.920000px;}
.yc9_c00120{bottom:312.405000px;}
.yc4_c00120{bottom:313.245000px;}
.yc8_c00120{bottom:314.130000px;}
.yc5_c00120{bottom:314.325000px;}
.yc7_c00120{bottom:315.405000px;}
.yc6_c00120{bottom:315.630000px;}
.yc2_c00120{bottom:332.745000px;}
.yc3_c00120{bottom:333.630000px;}
.yc0_c00120{bottom:334.905000px;}
.yc1_c00120{bottom:335.130000px;}
.ybe_c00120{bottom:352.245000px;}
.ybf_c00120{bottom:353.130000px;}
.ybc_c00120{bottom:353.745000px;}
.ybd_c00120{bottom:354.405000px;}
.ybb_c00120{bottom:355.905000px;}
.yb9_c00120{bottom:371.745000px;}
.yb6_c00120{bottom:373.245000px;}
.yb8_c00120{bottom:373.470000px;}
.yba_c00120{bottom:373.905000px;}
.yb5_c00120{bottom:374.130000px;}
.yb4_c00120{bottom:374.325000px;}
.yb7_c00120{bottom:375.405000px;}
.yb2_c00120{bottom:391.245000px;}
.yb3_c00120{bottom:391.470000px;}
.yaf_c00120{bottom:392.325000px;}
.yb0_c00120{bottom:392.745000px;}
.yb1_c00120{bottom:393.405000px;}
.yae_c00120{bottom:394.470000px;}
.yad_c00120{bottom:410.325000px;}
.ya9_c00120{bottom:411.180000px;}
.yaa_c00120{bottom:412.245000px;}
.ya8_c00120{bottom:412.905000px;}
.yab_c00120{bottom:413.130000px;}
.yac_c00120{bottom:413.970000px;}
.ya6_c00120{bottom:414.405000px;}
.ya7_c00120{bottom:414.420000px;}
.ya4_c00120{bottom:433.905000px;}
.ya5_c00120{bottom:433.920000px;}
.ya3_c00120{bottom:451.245000px;}
.ya0_c00120{bottom:453.405000px;}
.ya1_c00120{bottom:453.630000px;}
.ya2_c00120{bottom:454.920000px;}
.y9f_c00120{bottom:469.905000px;}
.y9c_c00120{bottom:470.745000px;}
.y9e_c00120{bottom:471.825000px;}
.y9d_c00120{bottom:474.420000px;}
.y99_c00120{bottom:490.470000px;}
.y9b_c00120{bottom:491.325000px;}
.y9a_c00120{bottom:492.405000px;}
.y96_c00120{bottom:509.745000px;}
.y93_c00120{bottom:510.180000px;}
.y92_c00120{bottom:511.245000px;}
.y97_c00120{bottom:511.905000px;}
.y98_c00120{bottom:512.970000px;}
.y95_c00120{bottom:513.405000px;}
.y94_c00120{bottom:513.420000px;}
.y90_c00120{bottom:537.825000px;}
.y8e_c00120{bottom:538.905000px;}
.y91_c00120{bottom:539.130000px;}
.y8f_c00120{bottom:539.970000px;}
.y8d_c00120{bottom:555.825000px;}
.y8b_c00120{bottom:556.470000px;}
.y8c_c00120{bottom:556.905000px;}
.y8a_c00120{bottom:557.325000px;}
.y88_c00120{bottom:557.550000px;}
.y87_c00120{bottom:558.405000px;}
.y89_c00120{bottom:560.550000px;}
.y86_c00120{bottom:583.245000px;}
.y85_c00120{bottom:585.405000px;}
.y84_c00120{bottom:627.405000px;}
.y82_c00120{bottom:628.245000px;}
.y80_c00120{bottom:629.325000px;}
.y7f_c00120{bottom:629.970000px;}
.y81_c00120{bottom:630.405000px;}
.y83_c00120{bottom:630.630000px;}
.y79_c00120{bottom:647.745000px;}
.y7d_c00120{bottom:648.825000px;}
.y7c_c00120{bottom:649.050000px;}
.y7e_c00120{bottom:649.245000px;}
.y7b_c00120{bottom:649.905000px;}
.y7a_c00120{bottom:650.130000px;}
.y78_c00120{bottom:651.405000px;}
.y74_c00120{bottom:667.470000px;}
.y73_c00120{bottom:668.745000px;}
.y77_c00120{bottom:668.970000px;}
.y75_c00120{bottom:669.630000px;}
.y76_c00120{bottom:669.825000px;}
.y72_c00120{bottom:670.905000px;}
.y6f_c00120{bottom:686.970000px;}
.y6d_c00120{bottom:687.405000px;}
.y6c_c00120{bottom:688.245000px;}
.y71_c00120{bottom:688.905000px;}
.y70_c00120{bottom:689.130000px;}
.y6e_c00120{bottom:689.970000px;}
.y6b_c00120{bottom:690.405000px;}
.y6a_c00120{bottom:691.470000px;}
.y67_c00120{bottom:707.745000px;}
.y69_c00120{bottom:708.630000px;}
.y68_c00120{bottom:709.905000px;}
.y64_c00120{bottom:724.905000px;}
.y63_c00120{bottom:727.245000px;}
.y65_c00120{bottom:728.130000px;}
.y61_c00120{bottom:728.325000px;}
.y62_c00120{bottom:729.405000px;}
.y66_c00120{bottom:730.470000px;}
.y5f_c00120{bottom:746.745000px;}
.y60_c00120{bottom:748.050000px;}
.y5e_c00120{bottom:748.905000px;}
.y5d_c00120{bottom:766.245000px;}
.y5c_c00120{bottom:767.325000px;}
.y5b_c00120{bottom:785.745000px;}
.y59_c00120{bottom:787.905000px;}
.y5a_c00120{bottom:789.420000px;}
.y57_c00120{bottom:807.405000px;}
.y58_c00120{bottom:807.630000px;}
.y53_c00120{bottom:822.630000px;}
.y54_c00120{bottom:823.275000px;}
.y56_c00120{bottom:823.905000px;}
.y4e_c00120{bottom:824.970000px;}
.y55_c00120{bottom:825.405000px;}
.y51_c00120{bottom:825.825000px;}
.y4f_c00120{bottom:826.245000px;}
.y50_c00120{bottom:826.905000px;}
.y52_c00120{bottom:827.130000px;}
.y4d_c00120{bottom:842.775000px;}
.y46_c00120{bottom:843.405000px;}
.y4b_c00120{bottom:844.905000px;}
.y47_c00120{bottom:845.745000px;}
.y49_c00120{bottom:846.630000px;}
.y4a_c00120{bottom:846.825000px;}
.y48_c00120{bottom:847.905000px;}
.y4c_c00120{bottom:849.630000px;}
.y42_c00120{bottom:864.405000px;}
.y45_c00120{bottom:864.825000px;}
.y41_c00120{bottom:865.245000px;}
.y44_c00120{bottom:866.130000px;}
.y40_c00120{bottom:866.325000px;}
.y43_c00120{bottom:867.405000px;}
.y3e_c00120{bottom:883.905000px;}
.y3f_c00120{bottom:884.745000px;}
.y3d_c00120{bottom:884.970000px;}
.y3c_c00120{bottom:885.825000px;}
.y3b_c00120{bottom:886.905000px;}
.y37_c00120{bottom:903.405000px;}
.y38_c00120{bottom:904.245000px;}
.y39_c00120{bottom:904.470000px;}
.y3a_c00120{bottom:905.325000px;}
.y33_c00120{bottom:922.905000px;}
.y32_c00120{bottom:923.745000px;}
.y36_c00120{bottom:924.825000px;}
.y34_c00120{bottom:925.470000px;}
.y31_c00120{bottom:925.905000px;}
.y35_c00120{bottom:926.970000px;}
.y29_c00120{bottom:942.405000px;}
.y2e_c00120{bottom:942.825000px;}
.y2f_c00120{bottom:943.245000px;}
.y28_c00120{bottom:943.470000px;}
.y2c_c00120{bottom:944.130000px;}
.y2a_c00120{bottom:944.325000px;}
.y2b_c00120{bottom:945.405000px;}
.y30_c00120{bottom:945.825000px;}
.y2d_c00120{bottom:946.920000px;}
.y23_c00120{bottom:961.905000px;}
.y24_c00120{bottom:962.325000px;}
.y22_c00120{bottom:962.745000px;}
.y25_c00120{bottom:963.405000px;}
.y27_c00120{bottom:963.825000px;}
.y26_c00120{bottom:964.905000px;}
.y1e_c00120{bottom:981.405000px;}
.y1f_c00120{bottom:981.825000px;}
.y1d_c00120{bottom:982.245000px;}
.y1b_c00120{bottom:982.905000px;}
.y20_c00120{bottom:983.325000px;}
.y1c_c00120{bottom:984.405000px;}
.y21_c00120{bottom:985.470000px;}
.y19_c00120{bottom:1000.905000px;}
.y1a_c00120{bottom:1001.745000px;}
.y16_c00120{bottom:1001.970000px;}
.y17_c00120{bottom:1002.405000px;}
.y15_c00120{bottom:1003.245000px;}
.y18_c00120{bottom:1005.405000px;}
.y12_c00120{bottom:1020.405000px;}
.y14_c00120{bottom:1021.470000px;}
.ye_c00120{bottom:1021.905000px;}
.yf_c00120{bottom:1022.745000px;}
.y13_c00120{bottom:1023.405000px;}
.y10_c00120{bottom:1024.470000px;}
.y11_c00120{bottom:1024.905000px;}
.yd_c00120{bottom:1040.325000px;}
.yb_c00120{bottom:1041.405000px;}
.y9_c00120{bottom:1042.245000px;}
.ya_c00120{bottom:1043.130000px;}
.yc_c00120{bottom:1043.325000px;}
.y8_c00120{bottom:1043.970000px;}
.y7_c00120{bottom:1044.405000px;}
.y5_c00120{bottom:1061.745000px;}
.y6_c00120{bottom:1062.630000px;}
.y4_c00120{bottom:1063.470000px;}
.y3_c00120{bottom:1063.905000px;}
.y2_c00120{bottom:1099.905000px;}
.y1_c00120{bottom:1102.050000px;}
.h7_c00120{height:4.206533px;}
.h9_c00120{height:14.612168px;}
.h5_c00120{height:23.025234px;}
.h1_c00120{height:25.091602px;}
.h3_c00120{height:31.364502px;}
.h2_c00120{height:35.571035px;}
.h6_c00120{height:39.777568px;}
.h8_c00120{height:41.571035px;}
.h4_c00120{height:43.910303px;}
.ha_c00120{height:48.116836px;}
.h0_c00120{height:1335.000000px;}
.w0_c00120{width:880.500000px;}
.x0_c00120{left:0.000000px;}
.x1c_c00120{left:151.080000px;}
.xf_c00120{left:153.420000px;}
.xd0_c00120{left:165.645000px;}
.x86_c00120{left:167.145000px;}
.x3_c00120{left:169.080000px;}
.xab_c00120{left:171.420000px;}
.x4c_c00120{left:176.580000px;}
.xe4_c00120{left:178.500000px;}
.x10_c00120{left:180.000000px;}
.x100_c00120{left:181.500000px;}
.x75_c00120{left:183.000000px;}
.x85_c00120{left:186.000000px;}
.x91_c00120{left:187.500000px;}
.x1d_c00120{left:188.580000px;}
.x5a_c00120{left:190.920000px;}
.xac_c00120{left:198.420000px;}
.x4d_c00120{left:200.580000px;}
.x40_c00120{left:202.500000px;}
.x92_c00120{left:204.000000px;}
.xf3_c00120{left:205.920000px;}
.x90_c00120{left:208.500000px;}
.x11_c00120{left:210.420000px;}
.x36_c00120{left:214.500000px;}
.x2a_c00120{left:215.580000px;}
.x6f_c00120{left:217.275000px;}
.xca_c00120{left:218.355000px;}
.xe9_c00120{left:222.420000px;}
.x106_c00120{left:225.000000px;}
.x62_c00120{left:226.080000px;}
.x41_c00120{left:228.000000px;}
.x1e_c00120{left:229.920000px;}
.x9b_c00120{left:231.000000px;}
.xf4_c00120{left:232.500000px;}
.xe5_c00120{left:234.000000px;}
.x4_c00120{left:235.080000px;}
.x87_c00120{left:237.000000px;}
.x2b_c00120{left:239.580000px;}
.xd1_c00120{left:241.500000px;}
.x5b_c00120{left:242.580000px;}
.xcb_c00120{left:244.500000px;}
.x76_c00120{left:246.000000px;}
.xbc_c00120{left:249.000000px;}
.x70_c00120{left:253.920000px;}
.x80_c00120{left:255.000000px;}
.xad_c00120{left:256.920000px;}
.x88_c00120{left:259.500000px;}
.xd8_c00120{left:261.000000px;}
.xbd_c00120{left:262.500000px;}
.xed_c00120{left:263.580000px;}
.x12_c00120{left:265.080000px;}
.x5_c00120{left:267.000000px;}
.xf5_c00120{left:268.080000px;}
.xd6_c00120{left:271.500000px;}
.xa0_c00120{left:272.580000px;}
.x9c_c00120{left:274.500000px;}
.xe0_c00120{left:275.580000px;}
.x1f_c00120{left:277.080000px;}
.x4e_c00120{left:278.355000px;}
.x37_c00120{left:279.420000px;}
.xb5_c00120{left:280.500000px;}
.xd9_c00120{left:282.000000px;}
.xdd_c00120{left:283.080000px;}
.xc5_c00120{left:286.500000px;}
.xbe_c00120{left:290.580000px;}
.x42_c00120{left:292.920000px;}
.x20_c00120{left:295.920000px;}
.x81_c00120{left:297.000000px;}
.x101_c00120{left:298.500000px;}
.xd2_c00120{left:300.420000px;}
.x4f_c00120{left:301.920000px;}
.x2c_c00120{left:303.420000px;}
.x68_c00120{left:304.920000px;}
.x6_c00120{left:306.000000px;}
.x13_c00120{left:309.000000px;}
.x5c_c00120{left:313.080000px;}
.x89_c00120{left:314.580000px;}
.x63_c00120{left:316.920000px;}
.xa1_c00120{left:319.500000px;}
.xe6_c00120{left:320.580000px;}
.xdb_c00120{left:322.080000px;}
.x43_c00120{left:325.500000px;}
.x50_c00120{left:327.420000px;}
.xcc_c00120{left:328.500000px;}
.x71_c00120{left:330.000000px;}
.xbf_c00120{left:331.920000px;}
.x14_c00120{left:334.080000px;}
.xfc_c00120{left:335.580000px;}
.xf6_c00120{left:337.500000px;}
.xee_c00120{left:338.580000px;}
.x77_c00120{left:340.500000px;}
.x2d_c00120{left:342.000000px;}
.x9d_c00120{left:343.080000px;}
.x38_c00120{left:344.775000px;}
.x51_c00120{left:346.500000px;}
.xdc_c00120{left:349.080000px;}
.x5d_c00120{left:352.500000px;}
.xa2_c00120{left:353.580000px;}
.xfd_c00120{left:357.420000px;}
.x8a_c00120{left:361.500000px;}
.x93_c00120{left:363.000000px;}
.x102_c00120{left:368.580000px;}
.x64_c00120{left:370.920000px;}
.xae_c00120{left:373.500000px;}
.x15_c00120{left:374.580000px;}
.xc0_c00120{left:378.420000px;}
.x69_c00120{left:379.920000px;}
.x52_c00120{left:381.000000px;}
.x39_c00120{left:382.500000px;}
.xde_c00120{left:383.580000px;}
.x107_c00120{left:385.500000px;}
.x8b_c00120{left:387.420000px;}
.xda_c00120{left:388.500000px;}
.x44_c00120{left:390.855000px;}
.xaf_c00120{left:392.580000px;}
.xe7_c00120{left:394.500000px;}
.x78_c00120{left:395.580000px;}
.xd7_c00120{left:396.645000px;}
.xa3_c00120{left:397.920000px;}
.x1_c00120{left:399.000000px;}
.x2e_c00120{left:400.080000px;}
.x53_c00120{left:401.580000px;}
.x16_c00120{left:404.145000px;}
.xc1_c00120{left:406.500000px;}
.x7_c00120{left:407.580000px;}
.x72_c00120{left:409.500000px;}
.xf7_c00120{left:412.080000px;}
.x45_c00120{left:414.420000px;}
.x79_c00120{left:415.500000px;}
.x94_c00120{left:417.000000px;}
.x21_c00120{left:418.500000px;}
.xa4_c00120{left:424.920000px;}
.x2f_c00120{left:426.420000px;}
.x8_c00120{left:427.920000px;}
.xdf_c00120{left:430.080000px;}
.x3a_c00120{left:433.500000px;}
.xcd_c00120{left:434.580000px;}
.xd3_c00120{left:436.500000px;}
.x108_c00120{left:439.500000px;}
.xb6_c00120{left:441.000000px;}
.xef_c00120{left:442.500000px;}
.x65_c00120{left:445.920000px;}
.x54_c00120{left:447.420000px;}
.x103_c00120{left:448.500000px;}
.x30_c00120{left:449.580000px;}
.x46_c00120{left:452.355000px;}
.xf9_c00120{left:454.080000px;}
.x9_c00120{left:455.580000px;}
.x22_c00120{left:457.500000px;}
.x17_c00120{left:459.000000px;}
.xc6_c00120{left:460.920000px;}
.x8c_c00120{left:462.420000px;}
.xa5_c00120{left:463.500000px;}
.x5e_c00120{left:464.580000px;}
.xc8_c00120{left:466.080000px;}
.x6a_c00120{left:467.580000px;}
.x95_c00120{left:471.000000px;}
.xe1_c00120{left:472.500000px;}
.xc2_c00120{left:473.580000px;}
.x31_c00120{left:475.920000px;}
.x47_c00120{left:477.000000px;}
.xb0_c00120{left:478.500000px;}
.x23_c00120{left:481.500000px;}
.x66_c00120{left:483.000000px;}
.x6b_c00120{left:486.000000px;}
.x18_c00120{left:487.275000px;}
.x104_c00120{left:490.500000px;}
.xa6_c00120{left:493.500000px;}
.x9e_c00120{left:495.000000px;}
.x3b_c00120{left:498.420000px;}
.x73_c00120{left:499.500000px;}
.x55_c00120{left:505.920000px;}
.xd4_c00120{left:507.000000px;}
.x24_c00120{left:508.920000px;}
.xe2_c00120{left:510.000000px;}
.xb7_c00120{left:511.500000px;}
.xa7_c00120{left:513.000000px;}
.xc9_c00120{left:517.275000px;}
.xfe_c00120{left:518.580000px;}
.xea_c00120{left:520.500000px;}
.xd5_c00120{left:522.000000px;}
.x32_c00120{left:523.080000px;}
.x3c_c00120{left:524.775000px;}
.xa_c00120{left:526.500000px;}
.x48_c00120{left:528.000000px;}
.x96_c00120{left:529.080000px;}
.x19_c00120{left:532.080000px;}
.xa8_c00120{left:534.000000px;}
.x7a_c00120{left:538.500000px;}
.x33_c00120{left:540.420000px;}
.x25_c00120{left:541.500000px;}
.xf0_c00120{left:543.420000px;}
.xb1_c00120{left:544.920000px;}
.x9f_c00120{left:555.000000px;}
.x56_c00120{left:557.580000px;}
.x109_c00120{left:559.920000px;}
.x3d_c00120{left:561.855000px;}
.xb8_c00120{left:564.000000px;}
.xe8_c00120{left:565.080000px;}
.xb_c00120{left:566.580000px;}
.xf8_c00120{left:568.080000px;}
.x7b_c00120{left:570.000000px;}
.x82_c00120{left:571.080000px;}
.xfa_c00120{left:574.500000px;}
.x97_c00120{left:577.080000px;}
.xeb_c00120{left:579.000000px;}
.xf1_c00120{left:580.080000px;}
.x8d_c00120{left:584.580000px;}
.x34_c00120{left:588.000000px;}
.xc3_c00120{left:591.000000px;}
.x49_c00120{left:592.920000px;}
.xce_c00120{left:594.000000px;}
.x57_c00120{left:595.500000px;}
.x6c_c00120{left:598.920000px;}
.xfb_c00120{left:600.420000px;}
.x5f_c00120{left:604.080000px;}
.x26_c00120{left:607.080000px;}
.xb9_c00120{left:609.420000px;}
.xc7_c00120{left:612.000000px;}
.x8e_c00120{left:615.420000px;}
.x7c_c00120{left:616.500000px;}
.x4a_c00120{left:619.275000px;}
.x67_c00120{left:621.420000px;}
.x98_c00120{left:625.275000px;}
.xc_c00120{left:627.000000px;}
.x1a_c00120{left:628.080000px;}
.x58_c00120{left:631.500000px;}
.x27_c00120{left:633.420000px;}
.x3e_c00120{left:635.580000px;}
.x6d_c00120{left:636.855000px;}
.xb2_c00120{left:640.920000px;}
.x60_c00120{left:643.080000px;}
.x105_c00120{left:646.080000px;}
.xba_c00120{left:650.580000px;}
.xcf_c00120{left:652.080000px;}
.xd_c00120{left:655.275000px;}
.x28_c00120{left:656.580000px;}
.xa9_c00120{left:660.420000px;}
.x83_c00120{left:662.355000px;}
.xff_c00120{left:664.500000px;}
.xe3_c00120{left:666.000000px;}
.x99_c00120{left:667.920000px;}
.xf2_c00120{left:669.000000px;}
.x59_c00120{left:670.500000px;}
.x35_c00120{left:672.000000px;}
.x6e_c00120{left:675.000000px;}
.xb3_c00120{left:678.420000px;}
.x74_c00120{left:679.920000px;}
.x61_c00120{left:681.420000px;}
.x29_c00120{left:684.000000px;}
.xec_c00120{left:685.080000px;}
.xaa_c00120{left:687.420000px;}
.x3f_c00120{left:690.000000px;}
.x4b_c00120{left:693.000000px;}
.x7d_c00120{left:694.920000px;}
.x1b_c00120{left:696.000000px;}
.x84_c00120{left:697.920000px;}
.xe_c00120{left:703.080000px;}
.xb4_c00120{left:705.000000px;}
.xbb_c00120{left:706.500000px;}
.x8f_c00120{left:708.420000px;}
.x2_c00120{left:712.080000px;}
.x9a_c00120{left:717.000000px;}
.xc4_c00120{left:718.500000px;}
.x7e_c00120{left:720.000000px;}
.x7f_c00120{left:725.580000px;}
@media print{
.v0_c00120{vertical-align:0.000000pt;}
.v1_c00120{vertical-align:5.333333pt;}
.ls0_c00120{letter-spacing:0.000000pt;}
.ws0_c00120{word-spacing:-8.184320pt;}
.ws1_c00120{word-spacing:-5.485942pt;}
.ws4_c00120{word-spacing:-5.125098pt;}
.ws3_c00120{word-spacing:-3.556095pt;}
.ws2_c00120{word-spacing:-2.706843pt;}
.ws5_c00120{word-spacing:0.000000pt;}
.fs6_c00120{font-size:3.040000pt;}
.fs7_c00120{font-size:10.560000pt;}
.fs4_c00120{font-size:16.640000pt;}
.fs0_c00120{font-size:18.133333pt;}
.fs2_c00120{font-size:22.666667pt;}
.fs1_c00120{font-size:25.706667pt;}
.fs5_c00120{font-size:28.746667pt;}
.fs3_c00120{font-size:31.733333pt;}
.fs8_c00120{font-size:34.773333pt;}
.y0_c00120{bottom:0.000000pt;}
.ydc_c00120{bottom:224.360000pt;}
.ye1_c00120{bottom:225.106667pt;}
.ydf_c00120{bottom:225.306667pt;}
.yde_c00120{bottom:225.693333pt;}
.ye4_c00120{bottom:225.893333pt;}
.ye2_c00120{bottom:226.066667pt;}
.ydb_c00120{bottom:226.440000pt;}
.ye0_c00120{bottom:227.026667pt;}
.ye3_c00120{bottom:227.226667pt;}
.ydd_c00120{bottom:227.973333pt;}
.yd4_c00120{bottom:241.693333pt;}
.yda_c00120{bottom:242.440000pt;}
.yd6_c00120{bottom:242.640000pt;}
.yd8_c00120{bottom:243.400000pt;}
.yd3_c00120{bottom:243.773333pt;}
.yd9_c00120{bottom:244.360000pt;}
.yd7_c00120{bottom:244.560000pt;}
.yd2_c00120{bottom:244.733333pt;}
.yd5_c00120{bottom:245.306667pt;}
.yd1_c00120{bottom:245.693333pt;}
.ycf_c00120{bottom:259.973333pt;}
.ycd_c00120{bottom:260.360000pt;}
.yca_c00120{bottom:261.106667pt;}
.yd0_c00120{bottom:261.893333pt;}
.yce_c00120{bottom:262.640000pt;}
.ycc_c00120{bottom:263.026667pt;}
.ycb_c00120{bottom:263.040000pt;}
.yc9_c00120{bottom:277.693333pt;}
.yc4_c00120{bottom:278.440000pt;}
.yc8_c00120{bottom:279.226667pt;}
.yc5_c00120{bottom:279.400000pt;}
.yc7_c00120{bottom:280.360000pt;}
.yc6_c00120{bottom:280.560000pt;}
.yc2_c00120{bottom:295.773333pt;}
.yc3_c00120{bottom:296.560000pt;}
.yc0_c00120{bottom:297.693333pt;}
.yc1_c00120{bottom:297.893333pt;}
.ybe_c00120{bottom:313.106667pt;}
.ybf_c00120{bottom:313.893333pt;}
.ybc_c00120{bottom:314.440000pt;}
.ybd_c00120{bottom:315.026667pt;}
.ybb_c00120{bottom:316.360000pt;}
.yb9_c00120{bottom:330.440000pt;}
.yb6_c00120{bottom:331.773333pt;}
.yb8_c00120{bottom:331.973333pt;}
.yba_c00120{bottom:332.360000pt;}
.yb5_c00120{bottom:332.560000pt;}
.yb4_c00120{bottom:332.733333pt;}
.yb7_c00120{bottom:333.693333pt;}
.yb2_c00120{bottom:347.773333pt;}
.yb3_c00120{bottom:347.973333pt;}
.yaf_c00120{bottom:348.733333pt;}
.yb0_c00120{bottom:349.106667pt;}
.yb1_c00120{bottom:349.693333pt;}
.yae_c00120{bottom:350.640000pt;}
.yad_c00120{bottom:364.733333pt;}
.ya9_c00120{bottom:365.493333pt;}
.yaa_c00120{bottom:366.440000pt;}
.ya8_c00120{bottom:367.026667pt;}
.yab_c00120{bottom:367.226667pt;}
.yac_c00120{bottom:367.973333pt;}
.ya6_c00120{bottom:368.360000pt;}
.ya7_c00120{bottom:368.373333pt;}
.ya4_c00120{bottom:385.693333pt;}
.ya5_c00120{bottom:385.706667pt;}
.ya3_c00120{bottom:401.106667pt;}
.ya0_c00120{bottom:403.026667pt;}
.ya1_c00120{bottom:403.226667pt;}
.ya2_c00120{bottom:404.373333pt;}
.y9f_c00120{bottom:417.693333pt;}
.y9c_c00120{bottom:418.440000pt;}
.y9e_c00120{bottom:419.400000pt;}
.y9d_c00120{bottom:421.706667pt;}
.y99_c00120{bottom:435.973333pt;}
.y9b_c00120{bottom:436.733333pt;}
.y9a_c00120{bottom:437.693333pt;}
.y96_c00120{bottom:453.106667pt;}
.y93_c00120{bottom:453.493333pt;}
.y92_c00120{bottom:454.440000pt;}
.y97_c00120{bottom:455.026667pt;}
.y98_c00120{bottom:455.973333pt;}
.y95_c00120{bottom:456.360000pt;}
.y94_c00120{bottom:456.373333pt;}
.y90_c00120{bottom:478.066667pt;}
.y8e_c00120{bottom:479.026667pt;}
.y91_c00120{bottom:479.226667pt;}
.y8f_c00120{bottom:479.973333pt;}
.y8d_c00120{bottom:494.066667pt;}
.y8b_c00120{bottom:494.640000pt;}
.y8c_c00120{bottom:495.026667pt;}
.y8a_c00120{bottom:495.400000pt;}
.y88_c00120{bottom:495.600000pt;}
.y87_c00120{bottom:496.360000pt;}
.y89_c00120{bottom:498.266667pt;}
.y86_c00120{bottom:518.440000pt;}
.y85_c00120{bottom:520.360000pt;}
.y84_c00120{bottom:557.693333pt;}
.y82_c00120{bottom:558.440000pt;}
.y80_c00120{bottom:559.400000pt;}
.y7f_c00120{bottom:559.973333pt;}
.y81_c00120{bottom:560.360000pt;}
.y83_c00120{bottom:560.560000pt;}
.y79_c00120{bottom:575.773333pt;}
.y7d_c00120{bottom:576.733333pt;}
.y7c_c00120{bottom:576.933333pt;}
.y7e_c00120{bottom:577.106667pt;}
.y7b_c00120{bottom:577.693333pt;}
.y7a_c00120{bottom:577.893333pt;}
.y78_c00120{bottom:579.026667pt;}
.y74_c00120{bottom:593.306667pt;}
.y73_c00120{bottom:594.440000pt;}
.y77_c00120{bottom:594.640000pt;}
.y75_c00120{bottom:595.226667pt;}
.y76_c00120{bottom:595.400000pt;}
.y72_c00120{bottom:596.360000pt;}
.y6f_c00120{bottom:610.640000pt;}
.y6d_c00120{bottom:611.026667pt;}
.y6c_c00120{bottom:611.773333pt;}
.y71_c00120{bottom:612.360000pt;}
.y70_c00120{bottom:612.560000pt;}
.y6e_c00120{bottom:613.306667pt;}
.y6b_c00120{bottom:613.693333pt;}
.y6a_c00120{bottom:614.640000pt;}
.y67_c00120{bottom:629.106667pt;}
.y69_c00120{bottom:629.893333pt;}
.y68_c00120{bottom:631.026667pt;}
.y64_c00120{bottom:644.360000pt;}
.y63_c00120{bottom:646.440000pt;}
.y65_c00120{bottom:647.226667pt;}
.y61_c00120{bottom:647.400000pt;}
.y62_c00120{bottom:648.360000pt;}
.y66_c00120{bottom:649.306667pt;}
.y5f_c00120{bottom:663.773333pt;}
.y60_c00120{bottom:664.933333pt;}
.y5e_c00120{bottom:665.693333pt;}
.y5d_c00120{bottom:681.106667pt;}
.y5c_c00120{bottom:682.066667pt;}
.y5b_c00120{bottom:698.440000pt;}
.y59_c00120{bottom:700.360000pt;}
.y5a_c00120{bottom:701.706667pt;}
.y57_c00120{bottom:717.693333pt;}
.y58_c00120{bottom:717.893333pt;}
.y53_c00120{bottom:731.226667pt;}
.y54_c00120{bottom:731.800000pt;}
.y56_c00120{bottom:732.360000pt;}
.y4e_c00120{bottom:733.306667pt;}
.y55_c00120{bottom:733.693333pt;}
.y51_c00120{bottom:734.066667pt;}
.y4f_c00120{bottom:734.440000pt;}
.y50_c00120{bottom:735.026667pt;}
.y52_c00120{bottom:735.226667pt;}
.y4d_c00120{bottom:749.133333pt;}
.y46_c00120{bottom:749.693333pt;}
.y4b_c00120{bottom:751.026667pt;}
.y47_c00120{bottom:751.773333pt;}
.y49_c00120{bottom:752.560000pt;}
.y4a_c00120{bottom:752.733333pt;}
.y48_c00120{bottom:753.693333pt;}
.y4c_c00120{bottom:755.226667pt;}
.y42_c00120{bottom:768.360000pt;}
.y45_c00120{bottom:768.733333pt;}
.y41_c00120{bottom:769.106667pt;}
.y44_c00120{bottom:769.893333pt;}
.y40_c00120{bottom:770.066667pt;}
.y43_c00120{bottom:771.026667pt;}
.y3e_c00120{bottom:785.693333pt;}
.y3f_c00120{bottom:786.440000pt;}
.y3d_c00120{bottom:786.640000pt;}
.y3c_c00120{bottom:787.400000pt;}
.y3b_c00120{bottom:788.360000pt;}
.y37_c00120{bottom:803.026667pt;}
.y38_c00120{bottom:803.773333pt;}
.y39_c00120{bottom:803.973333pt;}
.y3a_c00120{bottom:804.733333pt;}
.y33_c00120{bottom:820.360000pt;}
.y32_c00120{bottom:821.106667pt;}
.y36_c00120{bottom:822.066667pt;}
.y34_c00120{bottom:822.640000pt;}
.y31_c00120{bottom:823.026667pt;}
.y35_c00120{bottom:823.973333pt;}
.y29_c00120{bottom:837.693333pt;}
.y2e_c00120{bottom:838.066667pt;}
.y2f_c00120{bottom:838.440000pt;}
.y28_c00120{bottom:838.640000pt;}
.y2c_c00120{bottom:839.226667pt;}
.y2a_c00120{bottom:839.400000pt;}
.y2b_c00120{bottom:840.360000pt;}
.y30_c00120{bottom:840.733333pt;}
.y2d_c00120{bottom:841.706667pt;}
.y23_c00120{bottom:855.026667pt;}
.y24_c00120{bottom:855.400000pt;}
.y22_c00120{bottom:855.773333pt;}
.y25_c00120{bottom:856.360000pt;}
.y27_c00120{bottom:856.733333pt;}
.y26_c00120{bottom:857.693333pt;}
.y1e_c00120{bottom:872.360000pt;}
.y1f_c00120{bottom:872.733333pt;}
.y1d_c00120{bottom:873.106667pt;}
.y1b_c00120{bottom:873.693333pt;}
.y20_c00120{bottom:874.066667pt;}
.y1c_c00120{bottom:875.026667pt;}
.y21_c00120{bottom:875.973333pt;}
.y19_c00120{bottom:889.693333pt;}
.y1a_c00120{bottom:890.440000pt;}
.y16_c00120{bottom:890.640000pt;}
.y17_c00120{bottom:891.026667pt;}
.y15_c00120{bottom:891.773333pt;}
.y18_c00120{bottom:893.693333pt;}
.y12_c00120{bottom:907.026667pt;}
.y14_c00120{bottom:907.973333pt;}
.ye_c00120{bottom:908.360000pt;}
.yf_c00120{bottom:909.106667pt;}
.y13_c00120{bottom:909.693333pt;}
.y10_c00120{bottom:910.640000pt;}
.y11_c00120{bottom:911.026667pt;}
.yd_c00120{bottom:924.733333pt;}
.yb_c00120{bottom:925.693333pt;}
.y9_c00120{bottom:926.440000pt;}
.ya_c00120{bottom:927.226667pt;}
.yc_c00120{bottom:927.400000pt;}
.y8_c00120{bottom:927.973333pt;}
.y7_c00120{bottom:928.360000pt;}
.y5_c00120{bottom:943.773333pt;}
.y6_c00120{bottom:944.560000pt;}
.y4_c00120{bottom:945.306667pt;}
.y3_c00120{bottom:945.693333pt;}
.y2_c00120{bottom:977.693333pt;}
.y1_c00120{bottom:979.600000pt;}
.h7_c00120{height:3.739141pt;}
.h9_c00120{height:12.988594pt;}
.h5_c00120{height:20.466875pt;}
.h1_c00120{height:22.303646pt;}
.h3_c00120{height:27.879557pt;}
.h2_c00120{height:31.618698pt;}
.h6_c00120{height:35.357839pt;}
.h8_c00120{height:36.952031pt;}
.h4_c00120{height:39.031380pt;}
.ha_c00120{height:42.770521pt;}
.h0_c00120{height:1186.666667pt;}
.w0_c00120{width:782.666667pt;}
.x0_c00120{left:0.000000pt;}
.x1c_c00120{left:134.293333pt;}
.xf_c00120{left:136.373333pt;}
.xd0_c00120{left:147.240000pt;}
.x86_c00120{left:148.573333pt;}
.x3_c00120{left:150.293333pt;}
.xab_c00120{left:152.373333pt;}
.x4c_c00120{left:156.960000pt;}
.xe4_c00120{left:158.666667pt;}
.x10_c00120{left:160.000000pt;}
.x100_c00120{left:161.333333pt;}
.x75_c00120{left:162.666667pt;}
.x85_c00120{left:165.333333pt;}
.x91_c00120{left:166.666667pt;}
.x1d_c00120{left:167.626667pt;}
.x5a_c00120{left:169.706667pt;}
.xac_c00120{left:176.373333pt;}
.x4d_c00120{left:178.293333pt;}
.x40_c00120{left:180.000000pt;}
.x92_c00120{left:181.333333pt;}
.xf3_c00120{left:183.040000pt;}
.x90_c00120{left:185.333333pt;}
.x11_c00120{left:187.040000pt;}
.x36_c00120{left:190.666667pt;}
.x2a_c00120{left:191.626667pt;}
.x6f_c00120{left:193.133333pt;}
.xca_c00120{left:194.093333pt;}
.xe9_c00120{left:197.706667pt;}
.x106_c00120{left:200.000000pt;}
.x62_c00120{left:200.960000pt;}
.x41_c00120{left:202.666667pt;}
.x1e_c00120{left:204.373333pt;}
.x9b_c00120{left:205.333333pt;}
.xf4_c00120{left:206.666667pt;}
.xe5_c00120{left:208.000000pt;}
.x4_c00120{left:208.960000pt;}
.x87_c00120{left:210.666667pt;}
.x2b_c00120{left:212.960000pt;}
.xd1_c00120{left:214.666667pt;}
.x5b_c00120{left:215.626667pt;}
.xcb_c00120{left:217.333333pt;}
.x76_c00120{left:218.666667pt;}
.xbc_c00120{left:221.333333pt;}
.x70_c00120{left:225.706667pt;}
.x80_c00120{left:226.666667pt;}
.xad_c00120{left:228.373333pt;}
.x88_c00120{left:230.666667pt;}
.xd8_c00120{left:232.000000pt;}
.xbd_c00120{left:233.333333pt;}
.xed_c00120{left:234.293333pt;}
.x12_c00120{left:235.626667pt;}
.x5_c00120{left:237.333333pt;}
.xf5_c00120{left:238.293333pt;}
.xd6_c00120{left:241.333333pt;}
.xa0_c00120{left:242.293333pt;}
.x9c_c00120{left:244.000000pt;}
.xe0_c00120{left:244.960000pt;}
.x1f_c00120{left:246.293333pt;}
.x4e_c00120{left:247.426667pt;}
.x37_c00120{left:248.373333pt;}
.xb5_c00120{left:249.333333pt;}
.xd9_c00120{left:250.666667pt;}
.xdd_c00120{left:251.626667pt;}
.xc5_c00120{left:254.666667pt;}
.xbe_c00120{left:258.293333pt;}
.x42_c00120{left:260.373333pt;}
.x20_c00120{left:263.040000pt;}
.x81_c00120{left:264.000000pt;}
.x101_c00120{left:265.333333pt;}
.xd2_c00120{left:267.040000pt;}
.x4f_c00120{left:268.373333pt;}
.x2c_c00120{left:269.706667pt;}
.x68_c00120{left:271.040000pt;}
.x6_c00120{left:272.000000pt;}
.x13_c00120{left:274.666667pt;}
.x5c_c00120{left:278.293333pt;}
.x89_c00120{left:279.626667pt;}
.x63_c00120{left:281.706667pt;}
.xa1_c00120{left:284.000000pt;}
.xe6_c00120{left:284.960000pt;}
.xdb_c00120{left:286.293333pt;}
.x43_c00120{left:289.333333pt;}
.x50_c00120{left:291.040000pt;}
.xcc_c00120{left:292.000000pt;}
.x71_c00120{left:293.333333pt;}
.xbf_c00120{left:295.040000pt;}
.x14_c00120{left:296.960000pt;}
.xfc_c00120{left:298.293333pt;}
.xf6_c00120{left:300.000000pt;}
.xee_c00120{left:300.960000pt;}
.x77_c00120{left:302.666667pt;}
.x2d_c00120{left:304.000000pt;}
.x9d_c00120{left:304.960000pt;}
.x38_c00120{left:306.466667pt;}
.x51_c00120{left:308.000000pt;}
.xdc_c00120{left:310.293333pt;}
.x5d_c00120{left:313.333333pt;}
.xa2_c00120{left:314.293333pt;}
.xfd_c00120{left:317.706667pt;}
.x8a_c00120{left:321.333333pt;}
.x93_c00120{left:322.666667pt;}
.x102_c00120{left:327.626667pt;}
.x64_c00120{left:329.706667pt;}
.xae_c00120{left:332.000000pt;}
.x15_c00120{left:332.960000pt;}
.xc0_c00120{left:336.373333pt;}
.x69_c00120{left:337.706667pt;}
.x52_c00120{left:338.666667pt;}
.x39_c00120{left:340.000000pt;}
.xde_c00120{left:340.960000pt;}
.x107_c00120{left:342.666667pt;}
.x8b_c00120{left:344.373333pt;}
.xda_c00120{left:345.333333pt;}
.x44_c00120{left:347.426667pt;}
.xaf_c00120{left:348.960000pt;}
.xe7_c00120{left:350.666667pt;}
.x78_c00120{left:351.626667pt;}
.xd7_c00120{left:352.573333pt;}
.xa3_c00120{left:353.706667pt;}
.x1_c00120{left:354.666667pt;}
.x2e_c00120{left:355.626667pt;}
.x53_c00120{left:356.960000pt;}
.x16_c00120{left:359.240000pt;}
.xc1_c00120{left:361.333333pt;}
.x7_c00120{left:362.293333pt;}
.x72_c00120{left:364.000000pt;}
.xf7_c00120{left:366.293333pt;}
.x45_c00120{left:368.373333pt;}
.x79_c00120{left:369.333333pt;}
.x94_c00120{left:370.666667pt;}
.x21_c00120{left:372.000000pt;}
.xa4_c00120{left:377.706667pt;}
.x2f_c00120{left:379.040000pt;}
.x8_c00120{left:380.373333pt;}
.xdf_c00120{left:382.293333pt;}
.x3a_c00120{left:385.333333pt;}
.xcd_c00120{left:386.293333pt;}
.xd3_c00120{left:388.000000pt;}
.x108_c00120{left:390.666667pt;}
.xb6_c00120{left:392.000000pt;}
.xef_c00120{left:393.333333pt;}
.x65_c00120{left:396.373333pt;}
.x54_c00120{left:397.706667pt;}
.x103_c00120{left:398.666667pt;}
.x30_c00120{left:399.626667pt;}
.x46_c00120{left:402.093333pt;}
.xf9_c00120{left:403.626667pt;}
.x9_c00120{left:404.960000pt;}
.x22_c00120{left:406.666667pt;}
.x17_c00120{left:408.000000pt;}
.xc6_c00120{left:409.706667pt;}
.x8c_c00120{left:411.040000pt;}
.xa5_c00120{left:412.000000pt;}
.x5e_c00120{left:412.960000pt;}
.xc8_c00120{left:414.293333pt;}
.x6a_c00120{left:415.626667pt;}
.x95_c00120{left:418.666667pt;}
.xe1_c00120{left:420.000000pt;}
.xc2_c00120{left:420.960000pt;}
.x31_c00120{left:423.040000pt;}
.x47_c00120{left:424.000000pt;}
.xb0_c00120{left:425.333333pt;}
.x23_c00120{left:428.000000pt;}
.x66_c00120{left:429.333333pt;}
.x6b_c00120{left:432.000000pt;}
.x18_c00120{left:433.133333pt;}
.x104_c00120{left:436.000000pt;}
.xa6_c00120{left:438.666667pt;}
.x9e_c00120{left:440.000000pt;}
.x3b_c00120{left:443.040000pt;}
.x73_c00120{left:444.000000pt;}
.x55_c00120{left:449.706667pt;}
.xd4_c00120{left:450.666667pt;}
.x24_c00120{left:452.373333pt;}
.xe2_c00120{left:453.333333pt;}
.xb7_c00120{left:454.666667pt;}
.xa7_c00120{left:456.000000pt;}
.xc9_c00120{left:459.800000pt;}
.xfe_c00120{left:460.960000pt;}
.xea_c00120{left:462.666667pt;}
.xd5_c00120{left:464.000000pt;}
.x32_c00120{left:464.960000pt;}
.x3c_c00120{left:466.466667pt;}
.xa_c00120{left:468.000000pt;}
.x48_c00120{left:469.333333pt;}
.x96_c00120{left:470.293333pt;}
.x19_c00120{left:472.960000pt;}
.xa8_c00120{left:474.666667pt;}
.x7a_c00120{left:478.666667pt;}
.x33_c00120{left:480.373333pt;}
.x25_c00120{left:481.333333pt;}
.xf0_c00120{left:483.040000pt;}
.xb1_c00120{left:484.373333pt;}
.x9f_c00120{left:493.333333pt;}
.x56_c00120{left:495.626667pt;}
.x109_c00120{left:497.706667pt;}
.x3d_c00120{left:499.426667pt;}
.xb8_c00120{left:501.333333pt;}
.xe8_c00120{left:502.293333pt;}
.xb_c00120{left:503.626667pt;}
.xf8_c00120{left:504.960000pt;}
.x7b_c00120{left:506.666667pt;}
.x82_c00120{left:507.626667pt;}
.xfa_c00120{left:510.666667pt;}
.x97_c00120{left:512.960000pt;}
.xeb_c00120{left:514.666667pt;}
.xf1_c00120{left:515.626667pt;}
.x8d_c00120{left:519.626667pt;}
.x34_c00120{left:522.666667pt;}
.xc3_c00120{left:525.333333pt;}
.x49_c00120{left:527.040000pt;}
.xce_c00120{left:528.000000pt;}
.x57_c00120{left:529.333333pt;}
.x6c_c00120{left:532.373333pt;}
.xfb_c00120{left:533.706667pt;}
.x5f_c00120{left:536.960000pt;}
.x26_c00120{left:539.626667pt;}
.xb9_c00120{left:541.706667pt;}
.xc7_c00120{left:544.000000pt;}
.x8e_c00120{left:547.040000pt;}
.x7c_c00120{left:548.000000pt;}
.x4a_c00120{left:550.466667pt;}
.x67_c00120{left:552.373333pt;}
.x98_c00120{left:555.800000pt;}
.xc_c00120{left:557.333333pt;}
.x1a_c00120{left:558.293333pt;}
.x58_c00120{left:561.333333pt;}
.x27_c00120{left:563.040000pt;}
.x3e_c00120{left:564.960000pt;}
.x6d_c00120{left:566.093333pt;}
.xb2_c00120{left:569.706667pt;}
.x60_c00120{left:571.626667pt;}
.x105_c00120{left:574.293333pt;}
.xba_c00120{left:578.293333pt;}
.xcf_c00120{left:579.626667pt;}
.xd_c00120{left:582.466667pt;}
.x28_c00120{left:583.626667pt;}
.xa9_c00120{left:587.040000pt;}
.x83_c00120{left:588.760000pt;}
.xff_c00120{left:590.666667pt;}
.xe3_c00120{left:592.000000pt;}
.x99_c00120{left:593.706667pt;}
.xf2_c00120{left:594.666667pt;}
.x59_c00120{left:596.000000pt;}
.x35_c00120{left:597.333333pt;}
.x6e_c00120{left:600.000000pt;}
.xb3_c00120{left:603.040000pt;}
.x74_c00120{left:604.373333pt;}
.x61_c00120{left:605.706667pt;}
.x29_c00120{left:608.000000pt;}
.xec_c00120{left:608.960000pt;}
.xaa_c00120{left:611.040000pt;}
.x3f_c00120{left:613.333333pt;}
.x4b_c00120{left:616.000000pt;}
.x7d_c00120{left:617.706667pt;}
.x1b_c00120{left:618.666667pt;}
.x84_c00120{left:620.373333pt;}
.xe_c00120{left:624.960000pt;}
.xb4_c00120{left:626.666667pt;}
.xbb_c00120{left:628.000000pt;}
.x8f_c00120{left:629.706667pt;}
.x2_c00120{left:632.960000pt;}
.x9a_c00120{left:637.333333pt;}
.xc4_c00120{left:638.666667pt;}
.x7e_c00120{left:640.000000pt;}
.x7f_c00120{left:644.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_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_c4eae6d8557c824393ef65c5.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:1.688965;font-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_c00121{transform:matrix(0.370130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370130,0.000000,0.000000,0.250000,0,0);}
.m1a_c00121{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m2a_c00121{transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);}
.mf_c00121{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.m24_c00121{transform:matrix(0.403525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403525,0.000000,0.000000,0.250000,0,0);}
.m11_c00121{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.m3_c00121{transform:matrix(0.411874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411874,0.000000,0.000000,0.250000,0,0);}
.m22_c00121{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.m5_c00121{transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);}
.m20_c00121{transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);}
.m16_c00121{transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);}
.m2_c00121{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m1b_c00121{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m12_c00121{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.m10_c00121{transform:matrix(0.426867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426867,0.000000,0.000000,0.250000,0,0);}
.m4_c00121{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.m0_c00121{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m6_c00121{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.ma_c00121{transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);}
.m27_c00121{transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);}
.m29_c00121{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.m1f_c00121{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m8_c00121{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m19_c00121{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.md_c00121{transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);}
.m7_c00121{transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);}
.mc_c00121{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.m23_c00121{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.m25_c00121{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m13_c00121{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);}
.m2b_c00121{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m2d_c00121{transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);}
.m15_c00121{transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);}
.m1e_c00121{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.me_c00121{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m14_c00121{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m26_c00121{transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);}
.m2f_c00121{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m28_c00121{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);}
.m1c_c00121{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.mb_c00121{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.m17_c00121{transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);}
.m18_c00121{transform:matrix(0.601471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601471,0.000000,0.000000,0.250000,0,0);}
.m1_c00121{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m9_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);}
.m30_c00121{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m2c_c00121{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);}
.m1d_c00121{transform:matrix(0.646324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.646324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.646324,0.000000,0.000000,0.250000,0,0);}
.m2e_c00121{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);}
.v1_c00121{vertical-align:-6.000000px;}
.v0_c00121{vertical-align:0.000000px;}
.ls0_c00121{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00121{word-spacing:-5.251155px;}
.ws2_c00121{word-spacing:0.000000px;}
.ws1_c00121{word-spacing:2.091025px;}
.fc0_c00121{color:transparent;}
.fs1_c00121{font-size:20.400000px;}
.fs3_c00121{font-size:25.500000px;}
.fs0_c00121{font-size:28.920000px;}
.fs2_c00121{font-size:32.340000px;}
.y0_c00121{bottom:0.000000px;}
.y4_c00121{bottom:292.905000px;}
.y3_c00121{bottom:293.325000px;}
.y5_c00121{bottom:294.405000px;}
.y7_c00121{bottom:295.470000px;}
.y6_c00121{bottom:307.905000px;}
.yc_c00121{bottom:308.325000px;}
.y9_c00121{bottom:308.550000px;}
.y8_c00121{bottom:309.405000px;}
.yb_c00121{bottom:310.470000px;}
.ya_c00121{bottom:311.550000px;}
.ye_c00121{bottom:322.050000px;}
.yd_c00121{bottom:323.325000px;}
.y12_c00121{bottom:323.550000px;}
.y10_c00121{bottom:324.405000px;}
.yf_c00121{bottom:325.470000px;}
.y11_c00121{bottom:326.550000px;}
.y15_c00121{bottom:338.325000px;}
.y1e_c00121{bottom:338.550000px;}
.y1d_c00121{bottom:338.970000px;}
.y14_c00121{bottom:339.405000px;}
.y13_c00121{bottom:340.050000px;}
.y16_c00121{bottom:351.825000px;}
.y17_c00121{bottom:352.050000px;}
.y18_c00121{bottom:353.325000px;}
.y1b_c00121{bottom:353.970000px;}
.y1a_c00121{bottom:354.405000px;}
.y1c_c00121{bottom:355.050000px;}
.y19_c00121{bottom:355.470000px;}
.y1_c00121{bottom:1099.905000px;}
.y2_c00121{bottom:1102.050000px;}
.h2_c00121{height:25.091602px;}
.h4_c00121{height:31.364502px;}
.h1_c00121{height:35.571035px;}
.h3_c00121{height:39.777568px;}
.h0_c00121{height:1335.000000px;}
.w0_c00121{width:880.500000px;}
.x0_c00121{left:0.000000px;}
.x10_c00121{left:149.580000px;}
.x20_c00121{left:151.920000px;}
.x1_c00121{left:154.080000px;}
.x26_c00121{left:182.355000px;}
.x27_c00121{left:205.080000px;}
.x1b_c00121{left:208.080000px;}
.x32_c00121{left:210.000000px;}
.x33_c00121{left:228.000000px;}
.x1c_c00121{left:231.420000px;}
.x11_c00121{left:235.080000px;}
.x1d_c00121{left:247.920000px;}
.x28_c00121{left:268.080000px;}
.x9_c00121{left:274.920000px;}
.x29_c00121{left:285.000000px;}
.x34_c00121{left:290.580000px;}
.x1e_c00121{left:295.500000px;}
.xe_c00121{left:298.500000px;}
.x19_c00121{left:313.500000px;}
.xf_c00121{left:319.500000px;}
.x1a_c00121{left:364.500000px;}
.x2a_c00121{left:366.000000px;}
.x6_c00121{left:389.580000px;}
.x35_c00121{left:394.920000px;}
.x2_c00121{left:402.000000px;}
.xc_c00121{left:404.145000px;}
.x23_c00121{left:411.420000px;}
.x17_c00121{left:421.080000px;}
.x7_c00121{left:435.000000px;}
.x2b_c00121{left:444.420000px;}
.x4_c00121{left:453.000000px;}
.x18_c00121{left:472.920000px;}
.xd_c00121{left:490.500000px;}
.x15_c00121{left:492.000000px;}
.x2c_c00121{left:493.920000px;}
.x24_c00121{left:498.000000px;}
.x5_c00121{left:523.500000px;}
.x2d_c00121{left:529.500000px;}
.x25_c00121{left:556.920000px;}
.x16_c00121{left:567.420000px;}
.x3_c00121{left:581.580000px;}
.x2e_c00121{left:585.000000px;}
.xa_c00121{left:600.000000px;}
.x2f_c00121{left:609.000000px;}
.x21_c00121{left:616.500000px;}
.x12_c00121{left:628.080000px;}
.x13_c00121{left:651.420000px;}
.xb_c00121{left:658.920000px;}
.x22_c00121{left:665.580000px;}
.x8_c00121{left:676.500000px;}
.x1f_c00121{left:685.500000px;}
.x30_c00121{left:699.000000px;}
.x31_c00121{left:717.000000px;}
.x14_c00121{left:720.420000px;}
@media print{
.v1_c00121{vertical-align:-5.333333pt;}
.v0_c00121{vertical-align:0.000000pt;}
.ls0_c00121{letter-spacing:0.000000pt;}
.ws0_c00121{word-spacing:-4.667694pt;}
.ws2_c00121{word-spacing:0.000000pt;}
.ws1_c00121{word-spacing:1.858689pt;}
.fs1_c00121{font-size:18.133333pt;}
.fs3_c00121{font-size:22.666667pt;}
.fs0_c00121{font-size:25.706667pt;}
.fs2_c00121{font-size:28.746667pt;}
.y0_c00121{bottom:0.000000pt;}
.y4_c00121{bottom:260.360000pt;}
.y3_c00121{bottom:260.733333pt;}
.y5_c00121{bottom:261.693333pt;}
.y7_c00121{bottom:262.640000pt;}
.y6_c00121{bottom:273.693333pt;}
.yc_c00121{bottom:274.066667pt;}
.y9_c00121{bottom:274.266667pt;}
.y8_c00121{bottom:275.026667pt;}
.yb_c00121{bottom:275.973333pt;}
.ya_c00121{bottom:276.933333pt;}
.ye_c00121{bottom:286.266667pt;}
.yd_c00121{bottom:287.400000pt;}
.y12_c00121{bottom:287.600000pt;}
.y10_c00121{bottom:288.360000pt;}
.yf_c00121{bottom:289.306667pt;}
.y11_c00121{bottom:290.266667pt;}
.y15_c00121{bottom:300.733333pt;}
.y1e_c00121{bottom:300.933333pt;}
.y1d_c00121{bottom:301.306667pt;}
.y14_c00121{bottom:301.693333pt;}
.y13_c00121{bottom:302.266667pt;}
.y16_c00121{bottom:312.733333pt;}
.y17_c00121{bottom:312.933333pt;}
.y18_c00121{bottom:314.066667pt;}
.y1b_c00121{bottom:314.640000pt;}
.y1a_c00121{bottom:315.026667pt;}
.y1c_c00121{bottom:315.600000pt;}
.y19_c00121{bottom:315.973333pt;}
.y1_c00121{bottom:977.693333pt;}
.y2_c00121{bottom:979.600000pt;}
.h2_c00121{height:22.303646pt;}
.h4_c00121{height:27.879557pt;}
.h1_c00121{height:31.618698pt;}
.h3_c00121{height:35.357839pt;}
.h0_c00121{height:1186.666667pt;}
.w0_c00121{width:782.666667pt;}
.x0_c00121{left:0.000000pt;}
.x10_c00121{left:132.960000pt;}
.x20_c00121{left:135.040000pt;}
.x1_c00121{left:136.960000pt;}
.x26_c00121{left:162.093333pt;}
.x27_c00121{left:182.293333pt;}
.x1b_c00121{left:184.960000pt;}
.x32_c00121{left:186.666667pt;}
.x33_c00121{left:202.666667pt;}
.x1c_c00121{left:205.706667pt;}
.x11_c00121{left:208.960000pt;}
.x1d_c00121{left:220.373333pt;}
.x28_c00121{left:238.293333pt;}
.x9_c00121{left:244.373333pt;}
.x29_c00121{left:253.333333pt;}
.x34_c00121{left:258.293333pt;}
.x1e_c00121{left:262.666667pt;}
.xe_c00121{left:265.333333pt;}
.x19_c00121{left:278.666667pt;}
.xf_c00121{left:284.000000pt;}
.x1a_c00121{left:324.000000pt;}
.x2a_c00121{left:325.333333pt;}
.x6_c00121{left:346.293333pt;}
.x35_c00121{left:351.040000pt;}
.x2_c00121{left:357.333333pt;}
.xc_c00121{left:359.240000pt;}
.x23_c00121{left:365.706667pt;}
.x17_c00121{left:374.293333pt;}
.x7_c00121{left:386.666667pt;}
.x2b_c00121{left:395.040000pt;}
.x4_c00121{left:402.666667pt;}
.x18_c00121{left:420.373333pt;}
.xd_c00121{left:436.000000pt;}
.x15_c00121{left:437.333333pt;}
.x2c_c00121{left:439.040000pt;}
.x24_c00121{left:442.666667pt;}
.x5_c00121{left:465.333333pt;}
.x2d_c00121{left:470.666667pt;}
.x25_c00121{left:495.040000pt;}
.x16_c00121{left:504.373333pt;}
.x3_c00121{left:516.960000pt;}
.x2e_c00121{left:520.000000pt;}
.xa_c00121{left:533.333333pt;}
.x2f_c00121{left:541.333333pt;}
.x21_c00121{left:548.000000pt;}
.x12_c00121{left:558.293333pt;}
.x13_c00121{left:579.040000pt;}
.xb_c00121{left:585.706667pt;}
.x22_c00121{left:591.626667pt;}
.x8_c00121{left:601.333333pt;}
.x1f_c00121{left:609.333333pt;}
.x30_c00121{left:621.333333pt;}
.x31_c00121{left:637.333333pt;}
.x14_c00121{left:640.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_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_3fe41c059411ca72b64e0972.woff2')format("woff");}.ff1_c00122{font-family:ff1_c00122;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mba_c00122{transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);}
.md8_c00122{transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);}
.mcf_c00122{transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);}
.md7_c00122{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.mbf_c00122{transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);}
.m94_c00122{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.mcc_c00122{transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);}
.m83_c00122{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mdb_c00122{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mf3_c00122{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mfa_c00122{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m10e_c00122{transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);}
.me5_c00122{transform:matrix(0.381902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381902,0.000000,0.000000,0.250000,0,0);}
.mda_c00122{transform:matrix(0.383052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383052,0.000000,0.000000,0.250000,0,0);}
.m8d_c00122{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m85_c00122{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.mf5_c00122{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m99_c00122{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.mf2_c00122{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m59_c00122{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.mf8_c00122{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.me4_c00122{transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);}
.m6_c00122{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mcb_c00122{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m77_c00122{transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);}
.m34_c00122{transform:matrix(0.395322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395322,0.000000,0.000000,0.250000,0,0);}
.m65_c00122{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.mfe_c00122{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.ma8_c00122{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m98_c00122{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m8_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);}
.m8e_c00122{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m29_c00122{transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);}
.mf9_c00122{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.me3_c00122{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.mc4_c00122{transform:matrix(0.403758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403758,0.000000,0.000000,0.250000,0,0);}
.m9f_c00122{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mae_c00122{transform:matrix(0.404141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404141,0.000000,0.000000,0.250000,0,0);}
.m63_c00122{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.ma4_c00122{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m2f_c00122{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m1e_c00122{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m86_c00122{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m27_c00122{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m10d_c00122{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m71_c00122{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m47_c00122{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.ma0_c00122{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.mc7_c00122{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.md2_c00122{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.me6_c00122{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.mac_c00122{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.m10c_c00122{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m10_c00122{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.me9_c00122{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.ma9_c00122{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m7c_c00122{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m8b_c00122{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m13_c00122{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m4d_c00122{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.m3a_c00122{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m40_c00122{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m54_c00122{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mf7_c00122{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m9_c00122{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mf0_c00122{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m78_c00122{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m56_c00122{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m9a_c00122{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m35_c00122{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m37_c00122{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m89_c00122{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.m4e_c00122{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m48_c00122{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m49_c00122{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.ma2_c00122{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.mbb_c00122{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m3e_c00122{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m43_c00122{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m3_c00122{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m104_c00122{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m50_c00122{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m76_c00122{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.mce_c00122{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.me7_c00122{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.maa_c00122{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m22_c00122{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m93_c00122{transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);}
.m95_c00122{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.me1_c00122{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mf1_c00122{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.mc3_c00122{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m88_c00122{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.mdd_c00122{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.md4_c00122{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.mc6_c00122{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.mc1_c00122{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m60_c00122{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m1d_c00122{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m58_c00122{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m4b_c00122{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m7a_c00122{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m2b_c00122{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m25_c00122{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.mc2_c00122{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m7d_c00122{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.md0_c00122{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.mb7_c00122{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m19_c00122{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m38_c00122{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.me_c00122{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.m92_c00122{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.mad_c00122{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m45_c00122{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m2e_c00122{transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);}
.maf_c00122{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m2d_c00122{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m8c_c00122{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.mc_c00122{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mb3_c00122{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m3f_c00122{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m97_c00122{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m79_c00122{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.md1_c00122{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m21_c00122{transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);}
.mf6_c00122{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m107_c00122{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m1_c00122{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mb5_c00122{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.mfc_c00122{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m53_c00122{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m33_c00122{transform:matrix(0.490798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490798,0.000000,0.000000,0.250000,0,0);}
.m6f_c00122{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m74_c00122{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m18_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);}
.mb8_c00122{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.mb2_c00122{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m52_c00122{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m14_c00122{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.ma3_c00122{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m36_c00122{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m108_c00122{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m109_c00122{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m2a_c00122{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mf_c00122{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m9b_c00122{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m6a_c00122{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m5a_c00122{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m106_c00122{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m81_c00122{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m8f_c00122{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m5_c00122{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m80_c00122{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m39_c00122{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m6b_c00122{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m5e_c00122{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mb_c00122{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m101_c00122{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m67_c00122{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mef_c00122{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m5f_c00122{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m6e_c00122{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m8a_c00122{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m1f_c00122{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m5b_c00122{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m1b_c00122{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mff_c00122{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m20_c00122{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m70_c00122{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m7_c00122{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.me8_c00122{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m41_c00122{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m2c_c00122{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.ma7_c00122{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m55_c00122{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m42_c00122{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m30_c00122{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m82_c00122{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.md6_c00122{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.md5_c00122{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m57_c00122{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.ma5_c00122{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.me2_c00122{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m15_c00122{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m4_c00122{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m72_c00122{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m17_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);}
.m11_c00122{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.md3_c00122{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m64_c00122{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mc0_c00122{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m31_c00122{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mea_c00122{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m69_c00122{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.md_c00122{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m96_c00122{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.ma1_c00122{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m26_c00122{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m12_c00122{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m68_c00122{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m5c_c00122{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m16_c00122{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mdc_c00122{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.mab_c00122{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.mca_c00122{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);}
.m6c_c00122{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m4c_c00122{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m102_c00122{transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);}
.m10b_c00122{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.med_c00122{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m7b_c00122{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m51_c00122{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m3c_c00122{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.mbd_c00122{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m1a_c00122{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m0_c00122{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m44_c00122{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.m6d_c00122{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.ma6_c00122{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m23_c00122{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m1c_c00122{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m5d_c00122{transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);}
.m2_c00122{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.me0_c00122{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.m7e_c00122{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.mee_c00122{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m66_c00122{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.m103_c00122{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mb4_c00122{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.mcd_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);}
.m28_c00122{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m84_c00122{transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);}
.mc8_c00122{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mfd_c00122{transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);}
.m62_c00122{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m24_c00122{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m32_c00122{transform:matrix(0.638804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638804,0.000000,0.000000,0.250000,0,0);}
.m4a_c00122{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m3b_c00122{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.mec_c00122{transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);}
.m10f_c00122{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m46_c00122{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m3d_c00122{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.ma_c00122{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m7f_c00122{transform:matrix(0.669412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669412,0.000000,0.000000,0.250000,0,0);}
.mb0_c00122{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.mfb_c00122{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m91_c00122{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.mb1_c00122{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.mde_c00122{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.m100_c00122{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mb6_c00122{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);}
.meb_c00122{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.m105_c00122{transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);}
.mc9_c00122{transform:matrix(0.711765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.711765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.711765,0.000000,0.000000,0.250000,0,0);}
.m10a_c00122{transform:matrix(0.714706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.714706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.714706,0.000000,0.000000,0.250000,0,0);}
.m4f_c00122{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m9c_c00122{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mbe_c00122{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.mb9_c00122{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m75_c00122{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m61_c00122{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m73_c00122{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mf4_c00122{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m9d_c00122{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.mc5_c00122{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.md9_c00122{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.mbc_c00122{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.mdf_c00122{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.m90_c00122{transform:matrix(0.958824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.958824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.958824,0.000000,0.000000,0.250000,0,0);}
.m87_c00122{transform:matrix(1.166912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.166912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.166912,0.000000,0.000000,0.250000,0,0);}
.m9e_c00122{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00122{vertical-align:0.000000px;}
.ls0_c00122{letter-spacing:0.000000px;}
.sc__c00122{text-shadow:none;}
.sc0_c00122{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00122{-webkit-text-stroke:0px transparent;}
.sc0_c00122{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00122{word-spacing:0.000000px;}
.fc0_c00122{color:transparent;}
.fs7_c00122{font-size:3.420000px;}
.fs8_c00122{font-size:11.880000px;}
.fs6_c00122{font-size:18.720000px;}
.fs0_c00122{font-size:20.400000px;}
.fs3_c00122{font-size:25.500000px;}
.fs1_c00122{font-size:28.920000px;}
.fs4_c00122{font-size:32.340000px;}
.fs2_c00122{font-size:35.700000px;}
.fs5_c00122{font-size:39.120000px;}
.y0_c00122{bottom:0.000000px;}
.yf4_c00122{bottom:250.905000px;}
.yf6_c00122{bottom:252.825000px;}
.yf7_c00122{bottom:253.050000px;}
.yf5_c00122{bottom:253.905000px;}
.yf2_c00122{bottom:270.405000px;}
.yf3_c00122{bottom:270.825000px;}
.yf1_c00122{bottom:271.245000px;}
.yee_c00122{bottom:272.550000px;}
.yef_c00122{bottom:273.405000px;}
.yf0_c00122{bottom:273.630000px;}
.yeb_c00122{bottom:291.825000px;}
.ye9_c00122{bottom:292.050000px;}
.yea_c00122{bottom:292.905000px;}
.yec_c00122{bottom:293.970000px;}
.yed_c00122{bottom:294.405000px;}
.ye5_c00122{bottom:309.405000px;}
.ye7_c00122{bottom:311.745000px;}
.ye6_c00122{bottom:313.470000px;}
.ye4_c00122{bottom:313.905000px;}
.ye8_c00122{bottom:314.970000px;}
.ye2_c00122{bottom:331.245000px;}
.ye3_c00122{bottom:332.130000px;}
.ye1_c00122{bottom:332.970000px;}
.ye0_c00122{bottom:333.405000px;}
.ydf_c00122{bottom:349.245000px;}
.ydd_c00122{bottom:349.905000px;}
.ydc_c00122{bottom:350.745000px;}
.yda_c00122{bottom:352.905000px;}
.ydb_c00122{bottom:353.130000px;}
.yde_c00122{bottom:353.970000px;}
.yd8_c00122{bottom:370.245000px;}
.yd7_c00122{bottom:372.405000px;}
.yd9_c00122{bottom:373.470000px;}
.yd5_c00122{bottom:389.745000px;}
.yd6_c00122{bottom:392.130000px;}
.yd4_c00122{bottom:392.970000px;}
.yd3_c00122{bottom:409.245000px;}
.yd0_c00122{bottom:409.680000px;}
.yce_c00122{bottom:410.745000px;}
.yd2_c00122{bottom:411.630000px;}
.ycf_c00122{bottom:411.825000px;}
.yd1_c00122{bottom:412.470000px;}
.ycd_c00122{bottom:412.905000px;}
.yc6_c00122{bottom:428.970000px;}
.yc4_c00122{bottom:429.180000px;}
.ycc_c00122{bottom:429.825000px;}
.yc5_c00122{bottom:430.245000px;}
.yc9_c00122{bottom:431.130000px;}
.yc8_c00122{bottom:431.325000px;}
.ycb_c00122{bottom:431.970000px;}
.yc7_c00122{bottom:432.405000px;}
.yca_c00122{bottom:433.470000px;}
.yc2_c00122{bottom:448.680000px;}
.yc1_c00122{bottom:449.745000px;}
.yc3_c00122{bottom:450.630000px;}
.ybe_c00122{bottom:451.470000px;}
.yc0_c00122{bottom:451.905000px;}
.ybf_c00122{bottom:452.970000px;}
.yba_c00122{bottom:468.180000px;}
.ybd_c00122{bottom:469.245000px;}
.ybc_c00122{bottom:470.325000px;}
.ybb_c00122{bottom:471.405000px;}
.yb7_c00122{bottom:488.745000px;}
.yb6_c00122{bottom:489.630000px;}
.yb9_c00122{bottom:489.825000px;}
.yb8_c00122{bottom:491.970000px;}
.yb2_c00122{bottom:506.745000px;}
.yb3_c00122{bottom:508.680000px;}
.yb1_c00122{bottom:510.405000px;}
.yb5_c00122{bottom:510.825000px;}
.yaf_c00122{bottom:511.470000px;}
.yb4_c00122{bottom:511.905000px;}
.yb0_c00122{bottom:511.920000px;}
.ya9_c00122{bottom:525.630000px;}
.ya5_c00122{bottom:525.825000px;}
.ya4_c00122{bottom:526.275000px;}
.yab_c00122{bottom:526.905000px;}
.yaa_c00122{bottom:528.180000px;}
.yae_c00122{bottom:528.630000px;}
.yac_c00122{bottom:528.825000px;}
.ya2_c00122{bottom:529.050000px;}
.ya7_c00122{bottom:529.245000px;}
.yad_c00122{bottom:529.905000px;}
.ya8_c00122{bottom:530.130000px;}
.ya6_c00122{bottom:531.405000px;}
.ya3_c00122{bottom:533.130000px;}
.y9e_c00122{bottom:546.405000px;}
.ya1_c00122{bottom:547.470000px;}
.ya0_c00122{bottom:547.905000px;}
.y9f_c00122{bottom:548.325000px;}
.y9d_c00122{bottom:549.405000px;}
.y9c_c00122{bottom:549.630000px;}
.y9b_c00122{bottom:550.470000px;}
.y9a_c00122{bottom:564.825000px;}
.y95_c00122{bottom:566.325000px;}
.y96_c00122{bottom:566.970000px;}
.y99_c00122{bottom:567.180000px;}
.y94_c00122{bottom:567.825000px;}
.y98_c00122{bottom:568.245000px;}
.y97_c00122{bottom:569.325000px;}
.y91_c00122{bottom:585.825000px;}
.y90_c00122{bottom:587.745000px;}
.y93_c00122{bottom:588.825000px;}
.y92_c00122{bottom:589.905000px;}
.y8d_c00122{bottom:606.825000px;}
.y8c_c00122{bottom:607.245000px;}
.y8f_c00122{bottom:607.470000px;}
.y8b_c00122{bottom:608.325000px;}
.y8e_c00122{bottom:609.405000px;}
.y84_c00122{bottom:625.905000px;}
.y83_c00122{bottom:626.745000px;}
.y85_c00122{bottom:627.405000px;}
.y82_c00122{bottom:627.825000px;}
.y86_c00122{bottom:628.245000px;}
.y8a_c00122{bottom:628.905000px;}
.y87_c00122{bottom:629.325000px;}
.y88_c00122{bottom:629.970000px;}
.y89_c00122{bottom:630.405000px;}
.y79_c00122{bottom:645.405000px;}
.y7a_c00122{bottom:646.245000px;}
.y7f_c00122{bottom:646.470000px;}
.y78_c00122{bottom:647.325000px;}
.y7c_c00122{bottom:647.745000px;}
.y7b_c00122{bottom:648.405000px;}
.y80_c00122{bottom:648.630000px;}
.y7e_c00122{bottom:648.825000px;}
.y81_c00122{bottom:649.920000px;}
.y7d_c00122{bottom:650.970000px;}
.y71_c00122{bottom:664.905000px;}
.y70_c00122{bottom:665.745000px;}
.y76_c00122{bottom:665.970000px;}
.y75_c00122{bottom:666.405000px;}
.y6f_c00122{bottom:666.825000px;}
.y73_c00122{bottom:667.245000px;}
.y72_c00122{bottom:668.130000px;}
.y74_c00122{bottom:668.325000px;}
.y77_c00122{bottom:669.405000px;}
.y68_c00122{bottom:684.825000px;}
.y69_c00122{bottom:685.470000px;}
.y67_c00122{bottom:685.905000px;}
.y6a_c00122{bottom:686.745000px;}
.y6b_c00122{bottom:686.970000px;}
.y6e_c00122{bottom:687.630000px;}
.y6c_c00122{bottom:687.825000px;}
.y66_c00122{bottom:688.050000px;}
.y6d_c00122{bottom:688.905000px;}
.y62_c00122{bottom:705.405000px;}
.y61_c00122{bottom:706.245000px;}
.y65_c00122{bottom:706.905000px;}
.y64_c00122{bottom:707.745000px;}
.y63_c00122{bottom:708.405000px;}
.y5c_c00122{bottom:724.905000px;}
.y5d_c00122{bottom:725.745000px;}
.y5b_c00122{bottom:725.970000px;}
.y60_c00122{bottom:726.405000px;}
.y5e_c00122{bottom:727.905000px;}
.y5f_c00122{bottom:728.970000px;}
.y58_c00122{bottom:744.405000px;}
.y57_c00122{bottom:745.245000px;}
.y5a_c00122{bottom:747.405000px;}
.y59_c00122{bottom:748.470000px;}
.y50_c00122{bottom:763.905000px;}
.y55_c00122{bottom:764.325000px;}
.y56_c00122{bottom:764.745000px;}
.y52_c00122{bottom:765.180000px;}
.y54_c00122{bottom:765.405000px;}
.y4f_c00122{bottom:765.630000px;}
.y51_c00122{bottom:765.825000px;}
.y53_c00122{bottom:766.245000px;}
.y4e_c00122{bottom:766.905000px;}
.y4d_c00122{bottom:785.745000px;}
.y4c_c00122{bottom:787.470000px;}
.y4b_c00122{bottom:787.905000px;}
.y4a_c00122{bottom:807.405000px;}
.y49_c00122{bottom:823.470000px;}
.y46_c00122{bottom:824.745000px;}
.y43_c00122{bottom:825.405000px;}
.y44_c00122{bottom:825.630000px;}
.y45_c00122{bottom:826.470000px;}
.y48_c00122{bottom:826.905000px;}
.y47_c00122{bottom:827.970000px;}
.y3e_c00122{bottom:842.745000px;}
.y42_c00122{bottom:844.245000px;}
.y3d_c00122{bottom:844.905000px;}
.y3f_c00122{bottom:845.970000px;}
.y40_c00122{bottom:846.405000px;}
.y41_c00122{bottom:847.470000px;}
.y3a_c00122{bottom:863.745000px;}
.y3c_c00122{bottom:864.630000px;}
.y3b_c00122{bottom:864.825000px;}
.y39_c00122{bottom:865.905000px;}
.y33_c00122{bottom:883.245000px;}
.y38_c00122{bottom:884.745000px;}
.y34_c00122{bottom:885.405000px;}
.y37_c00122{bottom:885.630000px;}
.y35_c00122{bottom:886.470000px;}
.y36_c00122{bottom:886.905000px;}
.y2e_c00122{bottom:901.905000px;}
.y2f_c00122{bottom:904.245000px;}
.y32_c00122{bottom:905.325000px;}
.y2d_c00122{bottom:905.970000px;}
.y30_c00122{bottom:906.405000px;}
.y31_c00122{bottom:907.470000px;}
.y27_c00122{bottom:923.325000px;}
.y2c_c00122{bottom:923.745000px;}
.y26_c00122{bottom:924.405000px;}
.y25_c00122{bottom:924.630000px;}
.y2a_c00122{bottom:924.825000px;}
.y28_c00122{bottom:925.470000px;}
.y29_c00122{bottom:925.905000px;}
.y2b_c00122{bottom:926.970000px;}
.y1f_c00122{bottom:942.825000px;}
.y23_c00122{bottom:943.245000px;}
.y1e_c00122{bottom:943.905000px;}
.y22_c00122{bottom:944.130000px;}
.y24_c00122{bottom:944.325000px;}
.y20_c00122{bottom:944.970000px;}
.y21_c00122{bottom:945.405000px;}
.y1d_c00122{bottom:960.405000px;}
.y1b_c00122{bottom:961.680000px;}
.y1c_c00122{bottom:962.745000px;}
.y1a_c00122{bottom:964.905000px;}
.y16_c00122{bottom:981.405000px;}
.y17_c00122{bottom:981.825000px;}
.y19_c00122{bottom:982.245000px;}
.y15_c00122{bottom:983.325000px;}
.y18_c00122{bottom:984.405000px;}
.y14_c00122{bottom:985.470000px;}
.y12_c00122{bottom:1001.745000px;}
.y11_c00122{bottom:1002.825000px;}
.y10_c00122{bottom:1003.905000px;}
.y13_c00122{bottom:1004.970000px;}
.yd_c00122{bottom:1021.245000px;}
.yf_c00122{bottom:1022.325000px;}
.ye_c00122{bottom:1023.405000px;}
.yc_c00122{bottom:1024.470000px;}
.y9_c00122{bottom:1040.325000px;}
.ya_c00122{bottom:1040.745000px;}
.yb_c00122{bottom:1041.825000px;}
.y8_c00122{bottom:1042.905000px;}
.y4_c00122{bottom:1060.245000px;}
.y6_c00122{bottom:1061.745000px;}
.y3_c00122{bottom:1062.405000px;}
.y7_c00122{bottom:1063.470000px;}
.y5_c00122{bottom:1063.905000px;}
.y2_c00122{bottom:1099.905000px;}
.y1_c00122{bottom:1102.050000px;}
.h8_c00122{height:4.206533px;}
.h9_c00122{height:14.612168px;}
.h7_c00122{height:23.025234px;}
.h1_c00122{height:25.091602px;}
.h4_c00122{height:31.364502px;}
.h2_c00122{height:35.571035px;}
.h5_c00122{height:39.777568px;}
.h3_c00122{height:43.910303px;}
.h6_c00122{height:48.116836px;}
.h0_c00122{height:1335.000000px;}
.w0_c00122{width:880.500000px;}
.x0_c00122{left:0.000000px;}
.x3_c00122{left:151.500000px;}
.xa5_c00122{left:152.580000px;}
.xad_c00122{left:154.275000px;}
.xb4_c00122{left:160.080000px;}
.x39_c00122{left:167.580000px;}
.x4_c00122{left:171.420000px;}
.xfb_c00122{left:172.500000px;}
.xa6_c00122{left:177.420000px;}
.xf5_c00122{left:178.920000px;}
.xf_c00122{left:180.000000px;}
.x1d_c00122{left:183.000000px;}
.x118_c00122{left:184.500000px;}
.x114_c00122{left:186.000000px;}
.x5b_c00122{left:187.500000px;}
.xae_c00122{left:189.420000px;}
.x91_c00122{left:192.000000px;}
.xea_c00122{left:193.500000px;}
.xd9_c00122{left:195.000000px;}
.x111_c00122{left:196.920000px;}
.x27_c00122{left:198.000000px;}
.xef_c00122{left:199.500000px;}
.x7f_c00122{left:201.000000px;}
.xa7_c00122{left:204.420000px;}
.x4e_c00122{left:205.500000px;}
.xcb_c00122{left:208.500000px;}
.xec_c00122{left:210.000000px;}
.x42_c00122{left:214.920000px;}
.x28_c00122{left:217.500000px;}
.x10_c00122{left:219.000000px;}
.x105_c00122{left:220.080000px;}
.xde_c00122{left:222.000000px;}
.x4f_c00122{left:225.420000px;}
.x5_c00122{left:226.500000px;}
.x80_c00122{left:228.000000px;}
.x61_c00122{left:229.500000px;}
.x115_c00122{left:231.000000px;}
.xd4_c00122{left:232.920000px;}
.x5c_c00122{left:234.000000px;}
.x89_c00122{left:235.080000px;}
.x9c_c00122{left:237.000000px;}
.x1e_c00122{left:238.080000px;}
.xda_c00122{left:240.000000px;}
.x29_c00122{left:241.920000px;}
.x43_c00122{left:243.000000px;}
.xe5_c00122{left:246.000000px;}
.xcc_c00122{left:247.500000px;}
.x33_c00122{left:249.000000px;}
.x62_c00122{left:250.920000px;}
.x50_c00122{left:252.000000px;}
.x6c_c00122{left:253.920000px;}
.x1f_c00122{left:256.920000px;}
.x108_c00122{left:259.080000px;}
.xd1_c00122{left:260.355000px;}
.xaf_c00122{left:262.080000px;}
.xfc_c00122{left:264.000000px;}
.x11_c00122{left:265.920000px;}
.x8a_c00122{left:267.000000px;}
.xf6_c00122{left:268.500000px;}
.x92_c00122{left:269.580000px;}
.x81_c00122{left:271.500000px;}
.x9d_c00122{left:273.000000px;}
.xe0_c00122{left:274.500000px;}
.xd5_c00122{left:276.420000px;}
.x116_c00122{left:279.000000px;}
.x76_c00122{left:280.080000px;}
.xbd_c00122{left:283.500000px;}
.x20_c00122{left:285.420000px;}
.x6d_c00122{left:288.420000px;}
.xf0_c00122{left:289.920000px;}
.x82_c00122{left:291.000000px;}
.xff_c00122{left:292.080000px;}
.x34_c00122{left:294.000000px;}
.x3a_c00122{left:295.500000px;}
.x9e_c00122{left:298.500000px;}
.x2a_c00122{left:300.000000px;}
.x93_c00122{left:301.500000px;}
.x5d_c00122{left:302.580000px;}
.x12_c00122{left:304.080000px;}
.x63_c00122{left:306.000000px;}
.xb5_c00122{left:307.080000px;}
.x77_c00122{left:309.000000px;}
.xc9_c00122{left:311.580000px;}
.x51_c00122{left:313.500000px;}
.x6_c00122{left:316.500000px;}
.xa8_c00122{left:318.000000px;}
.x10f_c00122{left:319.500000px;}
.x94_c00122{left:320.580000px;}
.xdb_c00122{left:322.080000px;}
.x6e_c00122{left:328.500000px;}
.x9f_c00122{left:330.000000px;}
.x44_c00122{left:331.080000px;}
.xb6_c00122{left:332.580000px;}
.x35_c00122{left:336.000000px;}
.xe1_c00122{left:337.920000px;}
.xd6_c00122{left:339.000000px;}
.x2b_c00122{left:340.500000px;}
.x64_c00122{left:343.920000px;}
.x6f_c00122{left:346.920000px;}
.x13_c00122{left:349.920000px;}
.xe6_c00122{left:351.000000px;}
.xfd_c00122{left:352.080000px;}
.x52_c00122{left:354.000000px;}
.xc4_c00122{left:355.920000px;}
.xf1_c00122{left:357.420000px;}
.xb7_c00122{left:359.580000px;}
.x78_c00122{left:363.000000px;}
.x100_c00122{left:366.000000px;}
.x21_c00122{left:369.420000px;}
.xf7_c00122{left:370.500000px;}
.x45_c00122{left:371.580000px;}
.xe2_c00122{left:373.500000px;}
.x83_c00122{left:376.500000px;}
.x3b_c00122{left:379.080000px;}
.x70_c00122{left:381.000000px;}
.xd2_c00122{left:382.500000px;}
.x5e_c00122{left:384.420000px;}
.x109_c00122{left:385.500000px;}
.xcd_c00122{left:388.275000px;}
.x7_c00122{left:394.920000px;}
.x84_c00122{left:396.000000px;}
.xb0_c00122{left:397.500000px;}
.x1_c00122{left:399.000000px;}
.xfe_c00122{left:400.920000px;}
.xa9_c00122{left:403.500000px;}
.xd7_c00122{left:407.775000px;}
.x8b_c00122{left:409.080000px;}
.x53_c00122{left:411.000000px;}
.x3c_c00122{left:412.080000px;}
.x95_c00122{left:414.420000px;}
.x79_c00122{left:415.920000px;}
.x46_c00122{left:417.000000px;}
.x14_c00122{left:418.920000px;}
.x65_c00122{left:421.500000px;}
.x71_c00122{left:424.500000px;}
.xce_c00122{left:427.275000px;}
.x8c_c00122{left:429.420000px;}
.x54_c00122{left:430.920000px;}
.xb1_c00122{left:433.500000px;}
.x106_c00122{left:435.000000px;}
.xc5_c00122{left:436.500000px;}
.x8_c00122{left:438.000000px;}
.x85_c00122{left:439.080000px;}
.xbe_c00122{left:441.000000px;}
.x66_c00122{left:442.500000px;}
.x36_c00122{left:444.000000px;}
.x15_c00122{left:445.920000px;}
.x112_c00122{left:447.420000px;}
.x47_c00122{left:450.000000px;}
.x7a_c00122{left:451.500000px;}
.xe7_c00122{left:454.080000px;}
.xe3_c00122{left:456.000000px;}
.x8d_c00122{left:457.500000px;}
.x2c_c00122{left:459.000000px;}
.xb2_c00122{left:460.920000px;}
.x22_c00122{left:462.000000px;}
.x96_c00122{left:463.080000px;}
.x3d_c00122{left:465.000000px;}
.xa0_c00122{left:468.000000px;}
.x48_c00122{left:471.420000px;}
.x67_c00122{left:475.500000px;}
.x7b_c00122{left:477.000000px;}
.xf8_c00122{left:478.500000px;}
.x9_c00122{left:480.000000px;}
.x23_c00122{left:481.500000px;}
.x97_c00122{left:483.420000px;}
.x55_c00122{left:486.000000px;}
.x2d_c00122{left:487.500000px;}
.x37_c00122{left:489.000000px;}
.x8e_c00122{left:490.080000px;}
.x72_c00122{left:491.580000px;}
.xed_c00122{left:493.500000px;}
.x16_c00122{left:494.580000px;}
.x68_c00122{left:496.500000px;}
.xbf_c00122{left:499.080000px;}
.xaa_c00122{left:501.000000px;}
.xf2_c00122{left:504.000000px;}
.x56_c00122{left:505.500000px;}
.x49_c00122{left:507.000000px;}
.x73_c00122{left:508.920000px;}
.x24_c00122{left:510.000000px;}
.x10a_c00122{left:511.500000px;}
.xe8_c00122{left:513.420000px;}
.x17_c00122{left:514.920000px;}
.x101_c00122{left:516.000000px;}
.xa1_c00122{left:517.500000px;}
.x117_c00122{left:519.000000px;}
.xf3_c00122{left:520.500000px;}
.xcf_c00122{left:522.420000px;}
.x107_c00122{left:523.920000px;}
.x3e_c00122{left:525.000000px;}
.x4a_c00122{left:526.920000px;}
.x10b_c00122{left:528.000000px;}
.x38_c00122{left:529.500000px;}
.x57_c00122{left:532.920000px;}
.x69_c00122{left:534.420000px;}
.xc0_c00122{left:536.580000px;}
.x86_c00122{left:539.580000px;}
.x18_c00122{left:541.500000px;}
.x110_c00122{left:543.000000px;}
.x2e_c00122{left:544.920000px;}
.x98_c00122{left:547.080000px;}
.xf4_c00122{left:548.580000px;}
.xa_c00122{left:552.000000px;}
.x4b_c00122{left:553.500000px;}
.xc6_c00122{left:555.000000px;}
.xb3_c00122{left:556.920000px;}
.x6a_c00122{left:561.000000px;}
.x8f_c00122{left:562.920000px;}
.xe9_c00122{left:564.000000px;}
.xab_c00122{left:567.000000px;}
.x7c_c00122{left:568.500000px;}
.x2f_c00122{left:570.420000px;}
.xb8_c00122{left:574.080000px;}
.xd0_c00122{left:577.920000px;}
.x113_c00122{left:579.000000px;}
.xa2_c00122{left:580.080000px;}
.xdc_c00122{left:581.580000px;}
.x19_c00122{left:583.080000px;}
.x99_c00122{left:586.500000px;}
.x58_c00122{left:589.500000px;}
.xac_c00122{left:591.420000px;}
.xb9_c00122{left:592.920000px;}
.x74_c00122{left:594.420000px;}
.x87_c00122{left:595.920000px;}
.xc1_c00122{left:597.000000px;}
.xd3_c00122{left:598.500000px;}
.x25_c00122{left:600.420000px;}
.x102_c00122{left:602.580000px;}
.xa3_c00122{left:604.080000px;}
.x30_c00122{left:605.580000px;}
.x3f_c00122{left:610.920000px;}
.xc7_c00122{left:612.000000px;}
.x6b_c00122{left:613.500000px;}
.x1a_c00122{left:615.000000px;}
.x10c_c00122{left:616.500000px;}
.x5f_c00122{left:618.000000px;}
.x90_c00122{left:619.920000px;}
.xb_c00122{left:625.500000px;}
.x59_c00122{left:627.420000px;}
.xdf_c00122{left:629.355000px;}
.xa4_c00122{left:631.920000px;}
.xc2_c00122{left:633.420000px;}
.xee_c00122{left:636.000000px;}
.x7d_c00122{left:637.500000px;}
.x31_c00122{left:639.855000px;}
.x10d_c00122{left:643.500000px;}
.xc_c00122{left:645.420000px;}
.xba_c00122{left:646.920000px;}
.xca_c00122{left:649.500000px;}
.xf9_c00122{left:652.920000px;}
.x103_c00122{left:654.000000px;}
.xe4_c00122{left:655.500000px;}
.xdd_c00122{left:657.000000px;}
.x5a_c00122{left:658.920000px;}
.x40_c00122{left:660.420000px;}
.x88_c00122{left:661.920000px;}
.xeb_c00122{left:664.920000px;}
.x4c_c00122{left:666.420000px;}
.x75_c00122{left:667.500000px;}
.x1b_c00122{left:669.420000px;}
.x7e_c00122{left:670.500000px;}
.xbb_c00122{left:672.000000px;}
.xd_c00122{left:673.080000px;}
.x9a_c00122{left:674.580000px;}
.xfa_c00122{left:678.000000px;}
.x26_c00122{left:682.500000px;}
.xc3_c00122{left:684.000000px;}
.x60_c00122{left:685.500000px;}
.xc8_c00122{left:686.580000px;}
.x32_c00122{left:688.080000px;}
.x104_c00122{left:690.000000px;}
.x41_c00122{left:691.500000px;}
.x4d_c00122{left:693.000000px;}
.x9b_c00122{left:694.920000px;}
.xbc_c00122{left:699.000000px;}
.xd8_c00122{left:703.500000px;}
.x1c_c00122{left:706.920000px;}
.x2_c00122{left:712.080000px;}
.xe_c00122{left:715.080000px;}
.x10e_c00122{left:717.000000px;}
@media print{
.v0_c00122{vertical-align:0.000000pt;}
.ls0_c00122{letter-spacing:0.000000pt;}
.ws0_c00122{word-spacing:0.000000pt;}
.fs7_c00122{font-size:3.040000pt;}
.fs8_c00122{font-size:10.560000pt;}
.fs6_c00122{font-size:16.640000pt;}
.fs0_c00122{font-size:18.133333pt;}
.fs3_c00122{font-size:22.666667pt;}
.fs1_c00122{font-size:25.706667pt;}
.fs4_c00122{font-size:28.746667pt;}
.fs2_c00122{font-size:31.733333pt;}
.fs5_c00122{font-size:34.773333pt;}
.y0_c00122{bottom:0.000000pt;}
.yf4_c00122{bottom:223.026667pt;}
.yf6_c00122{bottom:224.733333pt;}
.yf7_c00122{bottom:224.933333pt;}
.yf5_c00122{bottom:225.693333pt;}
.yf2_c00122{bottom:240.360000pt;}
.yf3_c00122{bottom:240.733333pt;}
.yf1_c00122{bottom:241.106667pt;}
.yee_c00122{bottom:242.266667pt;}
.yef_c00122{bottom:243.026667pt;}
.yf0_c00122{bottom:243.226667pt;}
.yeb_c00122{bottom:259.400000pt;}
.ye9_c00122{bottom:259.600000pt;}
.yea_c00122{bottom:260.360000pt;}
.yec_c00122{bottom:261.306667pt;}
.yed_c00122{bottom:261.693333pt;}
.ye5_c00122{bottom:275.026667pt;}
.ye7_c00122{bottom:277.106667pt;}
.ye6_c00122{bottom:278.640000pt;}
.ye4_c00122{bottom:279.026667pt;}
.ye8_c00122{bottom:279.973333pt;}
.ye2_c00122{bottom:294.440000pt;}
.ye3_c00122{bottom:295.226667pt;}
.ye1_c00122{bottom:295.973333pt;}
.ye0_c00122{bottom:296.360000pt;}
.ydf_c00122{bottom:310.440000pt;}
.ydd_c00122{bottom:311.026667pt;}
.ydc_c00122{bottom:311.773333pt;}
.yda_c00122{bottom:313.693333pt;}
.ydb_c00122{bottom:313.893333pt;}
.yde_c00122{bottom:314.640000pt;}
.yd8_c00122{bottom:329.106667pt;}
.yd7_c00122{bottom:331.026667pt;}
.yd9_c00122{bottom:331.973333pt;}
.yd5_c00122{bottom:346.440000pt;}
.yd6_c00122{bottom:348.560000pt;}
.yd4_c00122{bottom:349.306667pt;}
.yd3_c00122{bottom:363.773333pt;}
.yd0_c00122{bottom:364.160000pt;}
.yce_c00122{bottom:365.106667pt;}
.yd2_c00122{bottom:365.893333pt;}
.ycf_c00122{bottom:366.066667pt;}
.yd1_c00122{bottom:366.640000pt;}
.ycd_c00122{bottom:367.026667pt;}
.yc6_c00122{bottom:381.306667pt;}
.yc4_c00122{bottom:381.493333pt;}
.ycc_c00122{bottom:382.066667pt;}
.yc5_c00122{bottom:382.440000pt;}
.yc9_c00122{bottom:383.226667pt;}
.yc8_c00122{bottom:383.400000pt;}
.ycb_c00122{bottom:383.973333pt;}
.yc7_c00122{bottom:384.360000pt;}
.yca_c00122{bottom:385.306667pt;}
.yc2_c00122{bottom:398.826667pt;}
.yc1_c00122{bottom:399.773333pt;}
.yc3_c00122{bottom:400.560000pt;}
.ybe_c00122{bottom:401.306667pt;}
.yc0_c00122{bottom:401.693333pt;}
.ybf_c00122{bottom:402.640000pt;}
.yba_c00122{bottom:416.160000pt;}
.ybd_c00122{bottom:417.106667pt;}
.ybc_c00122{bottom:418.066667pt;}
.ybb_c00122{bottom:419.026667pt;}
.yb7_c00122{bottom:434.440000pt;}
.yb6_c00122{bottom:435.226667pt;}
.yb9_c00122{bottom:435.400000pt;}
.yb8_c00122{bottom:437.306667pt;}
.yb2_c00122{bottom:450.440000pt;}
.yb3_c00122{bottom:452.160000pt;}
.yb1_c00122{bottom:453.693333pt;}
.yb5_c00122{bottom:454.066667pt;}
.yaf_c00122{bottom:454.640000pt;}
.yb4_c00122{bottom:455.026667pt;}
.yb0_c00122{bottom:455.040000pt;}
.ya9_c00122{bottom:467.226667pt;}
.ya5_c00122{bottom:467.400000pt;}
.ya4_c00122{bottom:467.800000pt;}
.yab_c00122{bottom:468.360000pt;}
.yaa_c00122{bottom:469.493333pt;}
.yae_c00122{bottom:469.893333pt;}
.yac_c00122{bottom:470.066667pt;}
.ya2_c00122{bottom:470.266667pt;}
.ya7_c00122{bottom:470.440000pt;}
.yad_c00122{bottom:471.026667pt;}
.ya8_c00122{bottom:471.226667pt;}
.ya6_c00122{bottom:472.360000pt;}
.ya3_c00122{bottom:473.893333pt;}
.y9e_c00122{bottom:485.693333pt;}
.ya1_c00122{bottom:486.640000pt;}
.ya0_c00122{bottom:487.026667pt;}
.y9f_c00122{bottom:487.400000pt;}
.y9d_c00122{bottom:488.360000pt;}
.y9c_c00122{bottom:488.560000pt;}
.y9b_c00122{bottom:489.306667pt;}
.y9a_c00122{bottom:502.066667pt;}
.y95_c00122{bottom:503.400000pt;}
.y96_c00122{bottom:503.973333pt;}
.y99_c00122{bottom:504.160000pt;}
.y94_c00122{bottom:504.733333pt;}
.y98_c00122{bottom:505.106667pt;}
.y97_c00122{bottom:506.066667pt;}
.y91_c00122{bottom:520.733333pt;}
.y90_c00122{bottom:522.440000pt;}
.y93_c00122{bottom:523.400000pt;}
.y92_c00122{bottom:524.360000pt;}
.y8d_c00122{bottom:539.400000pt;}
.y8c_c00122{bottom:539.773333pt;}
.y8f_c00122{bottom:539.973333pt;}
.y8b_c00122{bottom:540.733333pt;}
.y8e_c00122{bottom:541.693333pt;}
.y84_c00122{bottom:556.360000pt;}
.y83_c00122{bottom:557.106667pt;}
.y85_c00122{bottom:557.693333pt;}
.y82_c00122{bottom:558.066667pt;}
.y86_c00122{bottom:558.440000pt;}
.y8a_c00122{bottom:559.026667pt;}
.y87_c00122{bottom:559.400000pt;}
.y88_c00122{bottom:559.973333pt;}
.y89_c00122{bottom:560.360000pt;}
.y79_c00122{bottom:573.693333pt;}
.y7a_c00122{bottom:574.440000pt;}
.y7f_c00122{bottom:574.640000pt;}
.y78_c00122{bottom:575.400000pt;}
.y7c_c00122{bottom:575.773333pt;}
.y7b_c00122{bottom:576.360000pt;}
.y80_c00122{bottom:576.560000pt;}
.y7e_c00122{bottom:576.733333pt;}
.y81_c00122{bottom:577.706667pt;}
.y7d_c00122{bottom:578.640000pt;}
.y71_c00122{bottom:591.026667pt;}
.y70_c00122{bottom:591.773333pt;}
.y76_c00122{bottom:591.973333pt;}
.y75_c00122{bottom:592.360000pt;}
.y6f_c00122{bottom:592.733333pt;}
.y73_c00122{bottom:593.106667pt;}
.y72_c00122{bottom:593.893333pt;}
.y74_c00122{bottom:594.066667pt;}
.y77_c00122{bottom:595.026667pt;}
.y68_c00122{bottom:608.733333pt;}
.y69_c00122{bottom:609.306667pt;}
.y67_c00122{bottom:609.693333pt;}
.y6a_c00122{bottom:610.440000pt;}
.y6b_c00122{bottom:610.640000pt;}
.y6e_c00122{bottom:611.226667pt;}
.y6c_c00122{bottom:611.400000pt;}
.y66_c00122{bottom:611.600000pt;}
.y6d_c00122{bottom:612.360000pt;}
.y62_c00122{bottom:627.026667pt;}
.y61_c00122{bottom:627.773333pt;}
.y65_c00122{bottom:628.360000pt;}
.y64_c00122{bottom:629.106667pt;}
.y63_c00122{bottom:629.693333pt;}
.y5c_c00122{bottom:644.360000pt;}
.y5d_c00122{bottom:645.106667pt;}
.y5b_c00122{bottom:645.306667pt;}
.y60_c00122{bottom:645.693333pt;}
.y5e_c00122{bottom:647.026667pt;}
.y5f_c00122{bottom:647.973333pt;}
.y58_c00122{bottom:661.693333pt;}
.y57_c00122{bottom:662.440000pt;}
.y5a_c00122{bottom:664.360000pt;}
.y59_c00122{bottom:665.306667pt;}
.y50_c00122{bottom:679.026667pt;}
.y55_c00122{bottom:679.400000pt;}
.y56_c00122{bottom:679.773333pt;}
.y52_c00122{bottom:680.160000pt;}
.y54_c00122{bottom:680.360000pt;}
.y4f_c00122{bottom:680.560000pt;}
.y51_c00122{bottom:680.733333pt;}
.y53_c00122{bottom:681.106667pt;}
.y4e_c00122{bottom:681.693333pt;}
.y4d_c00122{bottom:698.440000pt;}
.y4c_c00122{bottom:699.973333pt;}
.y4b_c00122{bottom:700.360000pt;}
.y4a_c00122{bottom:717.693333pt;}
.y49_c00122{bottom:731.973333pt;}
.y46_c00122{bottom:733.106667pt;}
.y43_c00122{bottom:733.693333pt;}
.y44_c00122{bottom:733.893333pt;}
.y45_c00122{bottom:734.640000pt;}
.y48_c00122{bottom:735.026667pt;}
.y47_c00122{bottom:735.973333pt;}
.y3e_c00122{bottom:749.106667pt;}
.y42_c00122{bottom:750.440000pt;}
.y3d_c00122{bottom:751.026667pt;}
.y3f_c00122{bottom:751.973333pt;}
.y40_c00122{bottom:752.360000pt;}
.y41_c00122{bottom:753.306667pt;}
.y3a_c00122{bottom:767.773333pt;}
.y3c_c00122{bottom:768.560000pt;}
.y3b_c00122{bottom:768.733333pt;}
.y39_c00122{bottom:769.693333pt;}
.y33_c00122{bottom:785.106667pt;}
.y38_c00122{bottom:786.440000pt;}
.y34_c00122{bottom:787.026667pt;}
.y37_c00122{bottom:787.226667pt;}
.y35_c00122{bottom:787.973333pt;}
.y36_c00122{bottom:788.360000pt;}
.y2e_c00122{bottom:801.693333pt;}
.y2f_c00122{bottom:803.773333pt;}
.y32_c00122{bottom:804.733333pt;}
.y2d_c00122{bottom:805.306667pt;}
.y30_c00122{bottom:805.693333pt;}
.y31_c00122{bottom:806.640000pt;}
.y27_c00122{bottom:820.733333pt;}
.y2c_c00122{bottom:821.106667pt;}
.y26_c00122{bottom:821.693333pt;}
.y25_c00122{bottom:821.893333pt;}
.y2a_c00122{bottom:822.066667pt;}
.y28_c00122{bottom:822.640000pt;}
.y29_c00122{bottom:823.026667pt;}
.y2b_c00122{bottom:823.973333pt;}
.y1f_c00122{bottom:838.066667pt;}
.y23_c00122{bottom:838.440000pt;}
.y1e_c00122{bottom:839.026667pt;}
.y22_c00122{bottom:839.226667pt;}
.y24_c00122{bottom:839.400000pt;}
.y20_c00122{bottom:839.973333pt;}
.y21_c00122{bottom:840.360000pt;}
.y1d_c00122{bottom:853.693333pt;}
.y1b_c00122{bottom:854.826667pt;}
.y1c_c00122{bottom:855.773333pt;}
.y1a_c00122{bottom:857.693333pt;}
.y16_c00122{bottom:872.360000pt;}
.y17_c00122{bottom:872.733333pt;}
.y19_c00122{bottom:873.106667pt;}
.y15_c00122{bottom:874.066667pt;}
.y18_c00122{bottom:875.026667pt;}
.y14_c00122{bottom:875.973333pt;}
.y12_c00122{bottom:890.440000pt;}
.y11_c00122{bottom:891.400000pt;}
.y10_c00122{bottom:892.360000pt;}
.y13_c00122{bottom:893.306667pt;}
.yd_c00122{bottom:907.773333pt;}
.yf_c00122{bottom:908.733333pt;}
.ye_c00122{bottom:909.693333pt;}
.yc_c00122{bottom:910.640000pt;}
.y9_c00122{bottom:924.733333pt;}
.ya_c00122{bottom:925.106667pt;}
.yb_c00122{bottom:926.066667pt;}
.y8_c00122{bottom:927.026667pt;}
.y4_c00122{bottom:942.440000pt;}
.y6_c00122{bottom:943.773333pt;}
.y3_c00122{bottom:944.360000pt;}
.y7_c00122{bottom:945.306667pt;}
.y5_c00122{bottom:945.693333pt;}
.y2_c00122{bottom:977.693333pt;}
.y1_c00122{bottom:979.600000pt;}
.h8_c00122{height:3.739141pt;}
.h9_c00122{height:12.988594pt;}
.h7_c00122{height:20.466875pt;}
.h1_c00122{height:22.303646pt;}
.h4_c00122{height:27.879557pt;}
.h2_c00122{height:31.618698pt;}
.h5_c00122{height:35.357839pt;}
.h3_c00122{height:39.031380pt;}
.h6_c00122{height:42.770521pt;}
.h0_c00122{height:1186.666667pt;}
.w0_c00122{width:782.666667pt;}
.x0_c00122{left:0.000000pt;}
.x3_c00122{left:134.666667pt;}
.xa5_c00122{left:135.626667pt;}
.xad_c00122{left:137.133333pt;}
.xb4_c00122{left:142.293333pt;}
.x39_c00122{left:148.960000pt;}
.x4_c00122{left:152.373333pt;}
.xfb_c00122{left:153.333333pt;}
.xa6_c00122{left:157.706667pt;}
.xf5_c00122{left:159.040000pt;}
.xf_c00122{left:160.000000pt;}
.x1d_c00122{left:162.666667pt;}
.x118_c00122{left:164.000000pt;}
.x114_c00122{left:165.333333pt;}
.x5b_c00122{left:166.666667pt;}
.xae_c00122{left:168.373333pt;}
.x91_c00122{left:170.666667pt;}
.xea_c00122{left:172.000000pt;}
.xd9_c00122{left:173.333333pt;}
.x111_c00122{left:175.040000pt;}
.x27_c00122{left:176.000000pt;}
.xef_c00122{left:177.333333pt;}
.x7f_c00122{left:178.666667pt;}
.xa7_c00122{left:181.706667pt;}
.x4e_c00122{left:182.666667pt;}
.xcb_c00122{left:185.333333pt;}
.xec_c00122{left:186.666667pt;}
.x42_c00122{left:191.040000pt;}
.x28_c00122{left:193.333333pt;}
.x10_c00122{left:194.666667pt;}
.x105_c00122{left:195.626667pt;}
.xde_c00122{left:197.333333pt;}
.x4f_c00122{left:200.373333pt;}
.x5_c00122{left:201.333333pt;}
.x80_c00122{left:202.666667pt;}
.x61_c00122{left:204.000000pt;}
.x115_c00122{left:205.333333pt;}
.xd4_c00122{left:207.040000pt;}
.x5c_c00122{left:208.000000pt;}
.x89_c00122{left:208.960000pt;}
.x9c_c00122{left:210.666667pt;}
.x1e_c00122{left:211.626667pt;}
.xda_c00122{left:213.333333pt;}
.x29_c00122{left:215.040000pt;}
.x43_c00122{left:216.000000pt;}
.xe5_c00122{left:218.666667pt;}
.xcc_c00122{left:220.000000pt;}
.x33_c00122{left:221.333333pt;}
.x62_c00122{left:223.040000pt;}
.x50_c00122{left:224.000000pt;}
.x6c_c00122{left:225.706667pt;}
.x1f_c00122{left:228.373333pt;}
.x108_c00122{left:230.293333pt;}
.xd1_c00122{left:231.426667pt;}
.xaf_c00122{left:232.960000pt;}
.xfc_c00122{left:234.666667pt;}
.x11_c00122{left:236.373333pt;}
.x8a_c00122{left:237.333333pt;}
.xf6_c00122{left:238.666667pt;}
.x92_c00122{left:239.626667pt;}
.x81_c00122{left:241.333333pt;}
.x9d_c00122{left:242.666667pt;}
.xe0_c00122{left:244.000000pt;}
.xd5_c00122{left:245.706667pt;}
.x116_c00122{left:248.000000pt;}
.x76_c00122{left:248.960000pt;}
.xbd_c00122{left:252.000000pt;}
.x20_c00122{left:253.706667pt;}
.x6d_c00122{left:256.373333pt;}
.xf0_c00122{left:257.706667pt;}
.x82_c00122{left:258.666667pt;}
.xff_c00122{left:259.626667pt;}
.x34_c00122{left:261.333333pt;}
.x3a_c00122{left:262.666667pt;}
.x9e_c00122{left:265.333333pt;}
.x2a_c00122{left:266.666667pt;}
.x93_c00122{left:268.000000pt;}
.x5d_c00122{left:268.960000pt;}
.x12_c00122{left:270.293333pt;}
.x63_c00122{left:272.000000pt;}
.xb5_c00122{left:272.960000pt;}
.x77_c00122{left:274.666667pt;}
.xc9_c00122{left:276.960000pt;}
.x51_c00122{left:278.666667pt;}
.x6_c00122{left:281.333333pt;}
.xa8_c00122{left:282.666667pt;}
.x10f_c00122{left:284.000000pt;}
.x94_c00122{left:284.960000pt;}
.xdb_c00122{left:286.293333pt;}
.x6e_c00122{left:292.000000pt;}
.x9f_c00122{left:293.333333pt;}
.x44_c00122{left:294.293333pt;}
.xb6_c00122{left:295.626667pt;}
.x35_c00122{left:298.666667pt;}
.xe1_c00122{left:300.373333pt;}
.xd6_c00122{left:301.333333pt;}
.x2b_c00122{left:302.666667pt;}
.x64_c00122{left:305.706667pt;}
.x6f_c00122{left:308.373333pt;}
.x13_c00122{left:311.040000pt;}
.xe6_c00122{left:312.000000pt;}
.xfd_c00122{left:312.960000pt;}
.x52_c00122{left:314.666667pt;}
.xc4_c00122{left:316.373333pt;}
.xf1_c00122{left:317.706667pt;}
.xb7_c00122{left:319.626667pt;}
.x78_c00122{left:322.666667pt;}
.x100_c00122{left:325.333333pt;}
.x21_c00122{left:328.373333pt;}
.xf7_c00122{left:329.333333pt;}
.x45_c00122{left:330.293333pt;}
.xe2_c00122{left:332.000000pt;}
.x83_c00122{left:334.666667pt;}
.x3b_c00122{left:336.960000pt;}
.x70_c00122{left:338.666667pt;}
.xd2_c00122{left:340.000000pt;}
.x5e_c00122{left:341.706667pt;}
.x109_c00122{left:342.666667pt;}
.xcd_c00122{left:345.133333pt;}
.x7_c00122{left:351.040000pt;}
.x84_c00122{left:352.000000pt;}
.xb0_c00122{left:353.333333pt;}
.x1_c00122{left:354.666667pt;}
.xfe_c00122{left:356.373333pt;}
.xa9_c00122{left:358.666667pt;}
.xd7_c00122{left:362.466667pt;}
.x8b_c00122{left:363.626667pt;}
.x53_c00122{left:365.333333pt;}
.x3c_c00122{left:366.293333pt;}
.x95_c00122{left:368.373333pt;}
.x79_c00122{left:369.706667pt;}
.x46_c00122{left:370.666667pt;}
.x14_c00122{left:372.373333pt;}
.x65_c00122{left:374.666667pt;}
.x71_c00122{left:377.333333pt;}
.xce_c00122{left:379.800000pt;}
.x8c_c00122{left:381.706667pt;}
.x54_c00122{left:383.040000pt;}
.xb1_c00122{left:385.333333pt;}
.x106_c00122{left:386.666667pt;}
.xc5_c00122{left:388.000000pt;}
.x8_c00122{left:389.333333pt;}
.x85_c00122{left:390.293333pt;}
.xbe_c00122{left:392.000000pt;}
.x66_c00122{left:393.333333pt;}
.x36_c00122{left:394.666667pt;}
.x15_c00122{left:396.373333pt;}
.x112_c00122{left:397.706667pt;}
.x47_c00122{left:400.000000pt;}
.x7a_c00122{left:401.333333pt;}
.xe7_c00122{left:403.626667pt;}
.xe3_c00122{left:405.333333pt;}
.x8d_c00122{left:406.666667pt;}
.x2c_c00122{left:408.000000pt;}
.xb2_c00122{left:409.706667pt;}
.x22_c00122{left:410.666667pt;}
.x96_c00122{left:411.626667pt;}
.x3d_c00122{left:413.333333pt;}
.xa0_c00122{left:416.000000pt;}
.x48_c00122{left:419.040000pt;}
.x67_c00122{left:422.666667pt;}
.x7b_c00122{left:424.000000pt;}
.xf8_c00122{left:425.333333pt;}
.x9_c00122{left:426.666667pt;}
.x23_c00122{left:428.000000pt;}
.x97_c00122{left:429.706667pt;}
.x55_c00122{left:432.000000pt;}
.x2d_c00122{left:433.333333pt;}
.x37_c00122{left:434.666667pt;}
.x8e_c00122{left:435.626667pt;}
.x72_c00122{left:436.960000pt;}
.xed_c00122{left:438.666667pt;}
.x16_c00122{left:439.626667pt;}
.x68_c00122{left:441.333333pt;}
.xbf_c00122{left:443.626667pt;}
.xaa_c00122{left:445.333333pt;}
.xf2_c00122{left:448.000000pt;}
.x56_c00122{left:449.333333pt;}
.x49_c00122{left:450.666667pt;}
.x73_c00122{left:452.373333pt;}
.x24_c00122{left:453.333333pt;}
.x10a_c00122{left:454.666667pt;}
.xe8_c00122{left:456.373333pt;}
.x17_c00122{left:457.706667pt;}
.x101_c00122{left:458.666667pt;}
.xa1_c00122{left:460.000000pt;}
.x117_c00122{left:461.333333pt;}
.xf3_c00122{left:462.666667pt;}
.xcf_c00122{left:464.373333pt;}
.x107_c00122{left:465.706667pt;}
.x3e_c00122{left:466.666667pt;}
.x4a_c00122{left:468.373333pt;}
.x10b_c00122{left:469.333333pt;}
.x38_c00122{left:470.666667pt;}
.x57_c00122{left:473.706667pt;}
.x69_c00122{left:475.040000pt;}
.xc0_c00122{left:476.960000pt;}
.x86_c00122{left:479.626667pt;}
.x18_c00122{left:481.333333pt;}
.x110_c00122{left:482.666667pt;}
.x2e_c00122{left:484.373333pt;}
.x98_c00122{left:486.293333pt;}
.xf4_c00122{left:487.626667pt;}
.xa_c00122{left:490.666667pt;}
.x4b_c00122{left:492.000000pt;}
.xc6_c00122{left:493.333333pt;}
.xb3_c00122{left:495.040000pt;}
.x6a_c00122{left:498.666667pt;}
.x8f_c00122{left:500.373333pt;}
.xe9_c00122{left:501.333333pt;}
.xab_c00122{left:504.000000pt;}
.x7c_c00122{left:505.333333pt;}
.x2f_c00122{left:507.040000pt;}
.xb8_c00122{left:510.293333pt;}
.xd0_c00122{left:513.706667pt;}
.x113_c00122{left:514.666667pt;}
.xa2_c00122{left:515.626667pt;}
.xdc_c00122{left:516.960000pt;}
.x19_c00122{left:518.293333pt;}
.x99_c00122{left:521.333333pt;}
.x58_c00122{left:524.000000pt;}
.xac_c00122{left:525.706667pt;}
.xb9_c00122{left:527.040000pt;}
.x74_c00122{left:528.373333pt;}
.x87_c00122{left:529.706667pt;}
.xc1_c00122{left:530.666667pt;}
.xd3_c00122{left:532.000000pt;}
.x25_c00122{left:533.706667pt;}
.x102_c00122{left:535.626667pt;}
.xa3_c00122{left:536.960000pt;}
.x30_c00122{left:538.293333pt;}
.x3f_c00122{left:543.040000pt;}
.xc7_c00122{left:544.000000pt;}
.x6b_c00122{left:545.333333pt;}
.x1a_c00122{left:546.666667pt;}
.x10c_c00122{left:548.000000pt;}
.x5f_c00122{left:549.333333pt;}
.x90_c00122{left:551.040000pt;}
.xb_c00122{left:556.000000pt;}
.x59_c00122{left:557.706667pt;}
.xdf_c00122{left:559.426667pt;}
.xa4_c00122{left:561.706667pt;}
.xc2_c00122{left:563.040000pt;}
.xee_c00122{left:565.333333pt;}
.x7d_c00122{left:566.666667pt;}
.x31_c00122{left:568.760000pt;}
.x10d_c00122{left:572.000000pt;}
.xc_c00122{left:573.706667pt;}
.xba_c00122{left:575.040000pt;}
.xca_c00122{left:577.333333pt;}
.xf9_c00122{left:580.373333pt;}
.x103_c00122{left:581.333333pt;}
.xe4_c00122{left:582.666667pt;}
.xdd_c00122{left:584.000000pt;}
.x5a_c00122{left:585.706667pt;}
.x40_c00122{left:587.040000pt;}
.x88_c00122{left:588.373333pt;}
.xeb_c00122{left:591.040000pt;}
.x4c_c00122{left:592.373333pt;}
.x75_c00122{left:593.333333pt;}
.x1b_c00122{left:595.040000pt;}
.x7e_c00122{left:596.000000pt;}
.xbb_c00122{left:597.333333pt;}
.xd_c00122{left:598.293333pt;}
.x9a_c00122{left:599.626667pt;}
.xfa_c00122{left:602.666667pt;}
.x26_c00122{left:606.666667pt;}
.xc3_c00122{left:608.000000pt;}
.x60_c00122{left:609.333333pt;}
.xc8_c00122{left:610.293333pt;}
.x32_c00122{left:611.626667pt;}
.x104_c00122{left:613.333333pt;}
.x41_c00122{left:614.666667pt;}
.x4d_c00122{left:616.000000pt;}
.x9b_c00122{left:617.706667pt;}
.xbc_c00122{left:621.333333pt;}
.xd8_c00122{left:625.333333pt;}
.x1c_c00122{left:628.373333pt;}
.x2_c00122{left:632.960000pt;}
.xe_c00122{left:635.626667pt;}
.x10e_c00122{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_14c1f811caaba38e0b175f95.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:1.688965;font-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_c00123{transform:matrix(0.363173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363173,0.000000,0.000000,0.250000,0,0);}
.m30_c00123{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m31_c00123{transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);}
.m1f_c00123{transform:matrix(0.378479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378479,0.000000,0.000000,0.250000,0,0);}
.m29_c00123{transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);}
.m12_c00123{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.m32_c00123{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.me_c00123{transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);}
.m10_c00123{transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);}
.m21_c00123{transform:matrix(0.408627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408627,0.000000,0.000000,0.250000,0,0);}
.m14_c00123{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m8_c00123{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.m2f_c00123{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m20_c00123{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m16_c00123{transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);}
.mf_c00123{transform:matrix(0.419606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419606,0.000000,0.000000,0.250000,0,0);}
.m4_c00123{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.m1d_c00123{transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);}
.m3_c00123{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.m17_c00123{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m11_c00123{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m15_c00123{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m6_c00123{transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);}
.m26_c00123{transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);}
.m28_c00123{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.m18_c00123{transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);}
.m23_c00123{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.mb_c00123{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.m19_c00123{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m0_c00123{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m9_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);}
.m2_c00123{transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);}
.m2d_c00123{transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);}
.m7_c00123{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m5_c00123{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);}
.mc_c00123{transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);}
.m2b_c00123{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m1e_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);}
.m1b_c00123{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m13_c00123{transform:matrix(0.542941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542941,0.000000,0.000000,0.250000,0,0);}
.ma_c00123{transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);}
.m33_c00123{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m25_c00123{transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);}
.m2c_c00123{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m27_c00123{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);}
.md_c00123{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m1a_c00123{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m1c_c00123{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m2a_c00123{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m2e_c00123{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_c00123{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m1_c00123{transform:matrix(0.673077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673077,0.000000,0.000000,0.250000,0,0);}
.m24_c00123{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);}
.v0_c00123{vertical-align:0.000000px;}
.ls0_c00123{letter-spacing:0.000000px;}
.sc__c00123{text-shadow:none;}
.sc0_c00123{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00123{-webkit-text-stroke:0px transparent;}
.sc0_c00123{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00123{word-spacing:-0.739500px;}
.ws1_c00123{word-spacing:0.000000px;}
.fc0_c00123{color:transparent;}
.fs1_c00123{font-size:18.720000px;}
.fs4_c00123{font-size:20.400000px;}
.fs2_c00123{font-size:25.500000px;}
.fs0_c00123{font-size:28.920000px;}
.fs3_c00123{font-size:32.340000px;}
.y0_c00123{bottom:0.000000px;}
.y4_c00123{bottom:262.905000px;}
.y5_c00123{bottom:263.325000px;}
.y6_c00123{bottom:263.550000px;}
.y7_c00123{bottom:264.405000px;}
.y3_c00123{bottom:265.470000px;}
.yb_c00123{bottom:277.905000px;}
.ya_c00123{bottom:278.325000px;}
.yf_c00123{bottom:278.970000px;}
.yc_c00123{bottom:279.405000px;}
.y9_c00123{bottom:279.630000px;}
.y8_c00123{bottom:280.470000px;}
.yd_c00123{bottom:291.825000px;}
.ye_c00123{bottom:292.905000px;}
.y13_c00123{bottom:293.325000px;}
.y11_c00123{bottom:293.550000px;}
.y10_c00123{bottom:294.405000px;}
.y12_c00123{bottom:295.470000px;}
.y14_c00123{bottom:308.325000px;}
.y20_c00123{bottom:308.550000px;}
.y1c_c00123{bottom:308.970000px;}
.y1d_c00123{bottom:310.050000px;}
.y1f_c00123{bottom:310.470000px;}
.y1e_c00123{bottom:311.550000px;}
.y15_c00123{bottom:322.905000px;}
.y16_c00123{bottom:323.130000px;}
.y1a_c00123{bottom:323.325000px;}
.y19_c00123{bottom:324.405000px;}
.y1b_c00123{bottom:325.050000px;}
.y18_c00123{bottom:325.470000px;}
.y17_c00123{bottom:326.550000px;}
.y1_c00123{bottom:1098.405000px;}
.y2_c00123{bottom:1101.630000px;}
.h2_c00123{height:23.025234px;}
.h5_c00123{height:25.091602px;}
.h3_c00123{height:31.364502px;}
.h1_c00123{height:35.571035px;}
.h4_c00123{height:39.777568px;}
.h0_c00123{height:1335.000000px;}
.w0_c00123{width:880.500000px;}
.x0_c00123{left:0.000000px;}
.x18_c00123{left:151.500000px;}
.x1_c00123{left:152.580000px;}
.x10_c00123{left:169.080000px;}
.x22_c00123{left:181.500000px;}
.x4_c00123{left:205.500000px;}
.x2e_c00123{left:211.500000px;}
.x5_c00123{left:226.920000px;}
.x2f_c00123{left:229.080000px;}
.x19_c00123{left:242.580000px;}
.x11_c00123{left:250.500000px;}
.x23_c00123{left:268.920000px;}
.x24_c00123{left:286.500000px;}
.x6_c00123{left:294.420000px;}
.xe_c00123{left:298.500000px;}
.xb_c00123{left:309.000000px;}
.x1f_c00123{left:310.080000px;}
.x30_c00123{left:328.080000px;}
.xf_c00123{left:348.000000px;}
.xc_c00123{left:360.000000px;}
.x14_c00123{left:364.080000px;}
.x25_c00123{left:366.000000px;}
.x20_c00123{left:391.080000px;}
.x2_c00123{left:400.500000px;}
.xd_c00123{left:436.080000px;}
.x21_c00123{left:438.420000px;}
.x26_c00123{left:444.420000px;}
.x15_c00123{left:448.920000px;}
.x31_c00123{left:463.080000px;}
.x32_c00123{left:487.920000px;}
.x1b_c00123{left:490.500000px;}
.x27_c00123{left:493.920000px;}
.x7_c00123{left:512.580000px;}
.x33_c00123{left:514.500000px;}
.x28_c00123{left:531.000000px;}
.x8_c00123{left:546.000000px;}
.x1c_c00123{left:549.000000px;}
.x12_c00123{left:550.080000px;}
.x9_c00123{left:560.580000px;}
.x1d_c00123{left:563.580000px;}
.x29_c00123{left:585.000000px;}
.x34_c00123{left:586.080000px;}
.x35_c00123{left:606.420000px;}
.x2a_c00123{left:609.420000px;}
.x13_c00123{left:618.420000px;}
.x36_c00123{left:628.920000px;}
.x16_c00123{left:633.000000px;}
.xa_c00123{left:638.580000px;}
.x1e_c00123{left:644.580000px;}
.x2b_c00123{left:660.000000px;}
.x17_c00123{left:684.000000px;}
.x1a_c00123{left:687.000000px;}
.x3_c00123{left:688.500000px;}
.x2c_c00123{left:699.000000px;}
.x2d_c00123{left:717.000000px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.ls0_c00123{letter-spacing:0.000000pt;}
.ws0_c00123{word-spacing:-0.657333pt;}
.ws1_c00123{word-spacing:0.000000pt;}
.fs1_c00123{font-size:16.640000pt;}
.fs4_c00123{font-size:18.133333pt;}
.fs2_c00123{font-size:22.666667pt;}
.fs0_c00123{font-size:25.706667pt;}
.fs3_c00123{font-size:28.746667pt;}
.y0_c00123{bottom:0.000000pt;}
.y4_c00123{bottom:233.693333pt;}
.y5_c00123{bottom:234.066667pt;}
.y6_c00123{bottom:234.266667pt;}
.y7_c00123{bottom:235.026667pt;}
.y3_c00123{bottom:235.973333pt;}
.yb_c00123{bottom:247.026667pt;}
.ya_c00123{bottom:247.400000pt;}
.yf_c00123{bottom:247.973333pt;}
.yc_c00123{bottom:248.360000pt;}
.y9_c00123{bottom:248.560000pt;}
.y8_c00123{bottom:249.306667pt;}
.yd_c00123{bottom:259.400000pt;}
.ye_c00123{bottom:260.360000pt;}
.y13_c00123{bottom:260.733333pt;}
.y11_c00123{bottom:260.933333pt;}
.y10_c00123{bottom:261.693333pt;}
.y12_c00123{bottom:262.640000pt;}
.y14_c00123{bottom:274.066667pt;}
.y20_c00123{bottom:274.266667pt;}
.y1c_c00123{bottom:274.640000pt;}
.y1d_c00123{bottom:275.600000pt;}
.y1f_c00123{bottom:275.973333pt;}
.y1e_c00123{bottom:276.933333pt;}
.y15_c00123{bottom:287.026667pt;}
.y16_c00123{bottom:287.226667pt;}
.y1a_c00123{bottom:287.400000pt;}
.y19_c00123{bottom:288.360000pt;}
.y1b_c00123{bottom:288.933333pt;}
.y18_c00123{bottom:289.306667pt;}
.y17_c00123{bottom:290.266667pt;}
.y1_c00123{bottom:976.360000pt;}
.y2_c00123{bottom:979.226667pt;}
.h2_c00123{height:20.466875pt;}
.h5_c00123{height:22.303646pt;}
.h3_c00123{height:27.879557pt;}
.h1_c00123{height:31.618698pt;}
.h4_c00123{height:35.357839pt;}
.h0_c00123{height:1186.666667pt;}
.w0_c00123{width:782.666667pt;}
.x0_c00123{left:0.000000pt;}
.x18_c00123{left:134.666667pt;}
.x1_c00123{left:135.626667pt;}
.x10_c00123{left:150.293333pt;}
.x22_c00123{left:161.333333pt;}
.x4_c00123{left:182.666667pt;}
.x2e_c00123{left:188.000000pt;}
.x5_c00123{left:201.706667pt;}
.x2f_c00123{left:203.626667pt;}
.x19_c00123{left:215.626667pt;}
.x11_c00123{left:222.666667pt;}
.x23_c00123{left:239.040000pt;}
.x24_c00123{left:254.666667pt;}
.x6_c00123{left:261.706667pt;}
.xe_c00123{left:265.333333pt;}
.xb_c00123{left:274.666667pt;}
.x1f_c00123{left:275.626667pt;}
.x30_c00123{left:291.626667pt;}
.xf_c00123{left:309.333333pt;}
.xc_c00123{left:320.000000pt;}
.x14_c00123{left:323.626667pt;}
.x25_c00123{left:325.333333pt;}
.x20_c00123{left:347.626667pt;}
.x2_c00123{left:356.000000pt;}
.xd_c00123{left:387.626667pt;}
.x21_c00123{left:389.706667pt;}
.x26_c00123{left:395.040000pt;}
.x15_c00123{left:399.040000pt;}
.x31_c00123{left:411.626667pt;}
.x32_c00123{left:433.706667pt;}
.x1b_c00123{left:436.000000pt;}
.x27_c00123{left:439.040000pt;}
.x7_c00123{left:455.626667pt;}
.x33_c00123{left:457.333333pt;}
.x28_c00123{left:472.000000pt;}
.x8_c00123{left:485.333333pt;}
.x1c_c00123{left:488.000000pt;}
.x12_c00123{left:488.960000pt;}
.x9_c00123{left:498.293333pt;}
.x1d_c00123{left:500.960000pt;}
.x29_c00123{left:520.000000pt;}
.x34_c00123{left:520.960000pt;}
.x35_c00123{left:539.040000pt;}
.x2a_c00123{left:541.706667pt;}
.x13_c00123{left:549.706667pt;}
.x36_c00123{left:559.040000pt;}
.x16_c00123{left:562.666667pt;}
.xa_c00123{left:567.626667pt;}
.x1e_c00123{left:572.960000pt;}
.x2b_c00123{left:586.666667pt;}
.x17_c00123{left:608.000000pt;}
.x1a_c00123{left:610.666667pt;}
.x3_c00123{left:612.000000pt;}
.x2c_c00123{left:621.333333pt;}
.x2d_c00123{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1ef6bc58c8188ea150f9df1b.woff2')format("woff");}.ff1_c00124{font-family:ff1_c00124;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m78_c00124{transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);}
.me5_c00124{transform:matrix(0.338574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338574,0.000000,0.000000,0.250000,0,0);}
.m2e_c00124{transform:matrix(0.359440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359440,0.000000,0.000000,0.250000,0,0);}
.m7f_c00124{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mc0_c00124{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m42_c00124{transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);}
.m34_c00124{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.m2c_c00124{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m8e_c00124{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m81_c00124{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mad_c00124{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m16_c00124{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m10d_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);}
.m10e_c00124{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m32_c00124{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m70_c00124{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m52_c00124{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m6_c00124{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m5e_c00124{transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);}
.mc6_c00124{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m2a_c00124{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m15_c00124{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m55_c00124{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.me3_c00124{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m110_c00124{transform:matrix(0.394555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394555,0.000000,0.000000,0.250000,0,0);}
.m25_c00124{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m30_c00124{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m119_c00124{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.mde_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);}
.m73_c00124{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m22_c00124{transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);}
.m7e_c00124{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mdf_c00124{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mbf_c00124{transform:matrix(0.404525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404525,0.000000,0.000000,0.250000,0,0);}
.m8f_c00124{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.m1b_c00124{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mce_c00124{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m20_c00124{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m117_c00124{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m5c_c00124{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m118_c00124{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m36_c00124{transform:matrix(0.411874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411874,0.000000,0.000000,0.250000,0,0);}
.m63_c00124{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m3b_c00124{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.me2_c00124{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m86_c00124{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m37_c00124{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.mc8_c00124{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.mbc_c00124{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.md9_c00124{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.me9_c00124{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m112_c00124{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m2b_c00124{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mb9_c00124{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m45_c00124{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m26_c00124{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mfa_c00124{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m7d_c00124{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.mba_c00124{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m9f_c00124{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m9a_c00124{transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);}
.md5_c00124{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m4b_c00124{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m111_c00124{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.mbd_c00124{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m13_c00124{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.mb5_c00124{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.md1_c00124{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.m8b_c00124{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m87_c00124{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.md7_c00124{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m46_c00124{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m54_c00124{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.md8_c00124{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m43_c00124{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m2_c00124{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m95_c00124{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.mca_c00124{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m9c_c00124{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m57_c00124{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.mf7_c00124{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m106_c00124{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m77_c00124{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m40_c00124{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.m10a_c00124{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m74_c00124{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mc1_c00124{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.mf2_c00124{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m23_c00124{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.m113_c00124{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m7a_c00124{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.mf0_c00124{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.me_c00124{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m38_c00124{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.m7c_c00124{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.mcd_c00124{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m56_c00124{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m94_c00124{transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);}
.m1c_c00124{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m33_c00124{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.mda_c00124{transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);}
.m58_c00124{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m50_c00124{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.ma3_c00124{transform:matrix(0.457059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457059,0.000000,0.000000,0.250000,0,0);}
.m105_c00124{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.md3_c00124{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m98_c00124{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m5d_c00124{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.m1a_c00124{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m49_c00124{transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);}
.m108_c00124{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m4e_c00124{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.mb2_c00124{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.mf8_c00124{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.med_c00124{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.mf9_c00124{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m109_c00124{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.ma1_c00124{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.m2d_c00124{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.m92_c00124{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.ma9_c00124{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m71_c00124{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.me0_c00124{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.me7_c00124{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m4f_c00124{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m2f_c00124{transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);}
.m8c_c00124{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.mc7_c00124{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.mf5_c00124{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m0_c00124{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mb6_c00124{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mfc_c00124{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m1f_c00124{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mcf_c00124{transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);}
.m97_c00124{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m7b_c00124{transform:matrix(0.492857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492857,0.000000,0.000000,0.250000,0,0);}
.m3c_c00124{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m7_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);}
.mea_c00124{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.m115_c00124{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m10f_c00124{transform:matrix(0.509664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509664,0.000000,0.000000,0.250000,0,0);}
.m9e_c00124{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m19_c00124{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m5_c00124{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m8d_c00124{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m51_c00124{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m6c_c00124{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.me1_c00124{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mc4_c00124{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m9d_c00124{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m9_c00124{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m6a_c00124{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mc_c00124{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m3e_c00124{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.mf1_c00124{transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);}
.mb1_c00124{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_c00124{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m14_c00124{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mfd_c00124{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m8a_c00124{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m64_c00124{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m39_c00124{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.mbe_c00124{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m61_c00124{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m12_c00124{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m5f_c00124{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mf3_c00124{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m27_c00124{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mbb_c00124{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m3_c00124{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.md2_c00124{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m62_c00124{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m17_c00124{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m100_c00124{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m4d_c00124{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m75_c00124{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.mef_c00124{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mb8_c00124{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m82_c00124{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m59_c00124{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m6e_c00124{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mdd_c00124{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.md0_c00124{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m4c_c00124{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.m116_c00124{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m11a_c00124{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m79_c00124{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m6b_c00124{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m104_c00124{transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);}
.me8_c00124{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m4_c00124{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mf_c00124{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m3f_c00124{transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);}
.mdb_c00124{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m72_c00124{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m3d_c00124{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m48_c00124{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m11_c00124{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m8_c00124{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m10b_c00124{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mfe_c00124{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.mff_c00124{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m80_c00124{transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);}
.m60_c00124{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m6d_c00124{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m3a_c00124{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.mf6_c00124{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m84_c00124{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mfb_c00124{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m85_c00124{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.ma5_c00124{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m67_c00124{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.m1e_c00124{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m89_c00124{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m68_c00124{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.m76_c00124{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mae_c00124{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.me6_c00124{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m44_c00124{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m66_c00124{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m10c_c00124{transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);}
.mb0_c00124{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m65_c00124{transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);}
.mc9_c00124{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m83_c00124{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m99_c00124{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.mee_c00124{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m24_c00124{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.md4_c00124{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.ma6_c00124{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);}
.mb_c00124{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m1_c00124{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.m114_c00124{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m69_c00124{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m41_c00124{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.mac_c00124{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m10_c00124{transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);}
.ma8_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);}
.m21_c00124{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m18_c00124{transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);}
.m35_c00124{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.maa_c00124{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.maf_c00124{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.mf4_c00124{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m28_c00124{transform:matrix(0.640560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640560,0.000000,0.000000,0.250000,0,0);}
.md6_c00124{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m96_c00124{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m101_c00124{transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);}
.m9b_c00124{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m93_c00124{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.mc2_c00124{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m5a_c00124{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);}
.mec_c00124{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m91_c00124{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.md_c00124{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.ma4_c00124{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mb7_c00124{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m29_c00124{transform:matrix(0.691765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.691765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.691765,0.000000,0.000000,0.250000,0,0);}
.meb_c00124{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.ma7_c00124{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.mb3_c00124{transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);}
.mb4_c00124{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m107_c00124{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.ma2_c00124{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m4a_c00124{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mc3_c00124{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m6f_c00124{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.ma_c00124{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.me4_c00124{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mcb_c00124{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m103_c00124{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.mcc_c00124{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m102_c00124{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m1d_c00124{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mc5_c00124{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.ma0_c00124{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m88_c00124{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m31_c00124{transform:matrix(1.019824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.019824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.019824,0.000000,0.000000,0.250000,0,0);}
.m90_c00124{transform:matrix(1.066079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.066079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.066079,0.000000,0.000000,0.250000,0,0);}
.mab_c00124{transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);}
.m53_c00124{transform:matrix(2.425439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.425439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.425439,0.000000,0.000000,0.250000,0,0);}
.m47_c00124{transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);}
.m5b_c00124{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00124{vertical-align:0.000000px;}
.ls0_c00124{letter-spacing:0.000000px;}
.sc__c00124{text-shadow:none;}
.sc0_c00124{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00124{-webkit-text-stroke:0px transparent;}
.sc0_c00124{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00124{word-spacing:0.000000px;}
.fc0_c00124{color:transparent;}
.fs7_c00124{font-size:3.420000px;}
.fs6_c00124{font-size:13.620000px;}
.fs4_c00124{font-size:18.720000px;}
.fs1_c00124{font-size:20.400000px;}
.fs2_c00124{font-size:25.500000px;}
.fs0_c00124{font-size:28.920000px;}
.fs5_c00124{font-size:32.340000px;}
.fs3_c00124{font-size:35.700000px;}
.fs8_c00124{font-size:39.120000px;}
.y0_c00124{bottom:0.000000px;}
.y3_c00124{bottom:224.970000px;}
.ycc_c00124{bottom:252.405000px;}
.yca_c00124{bottom:253.245000px;}
.yc8_c00124{bottom:254.745000px;}
.ycf_c00124{bottom:254.970000px;}
.yc9_c00124{bottom:255.405000px;}
.ycd_c00124{bottom:255.630000px;}
.ycb_c00124{bottom:256.470000px;}
.yce_c00124{bottom:256.905000px;}
.yc5_c00124{bottom:272.745000px;}
.yc4_c00124{bottom:273.825000px;}
.yc7_c00124{bottom:274.470000px;}
.yc3_c00124{bottom:274.905000px;}
.yc6_c00124{bottom:275.970000px;}
.yc2_c00124{bottom:276.405000px;}
.ybf_c00124{bottom:291.180000px;}
.yc1_c00124{bottom:291.405000px;}
.ybe_c00124{bottom:292.245000px;}
.yc0_c00124{bottom:293.745000px;}
.ybc_c00124{bottom:294.405000px;}
.ybd_c00124{bottom:295.905000px;}
.yba_c00124{bottom:313.245000px;}
.ybb_c00124{bottom:315.405000px;}
.yb6_c00124{bottom:332.745000px;}
.yb8_c00124{bottom:333.630000px;}
.yb5_c00124{bottom:333.825000px;}
.yb7_c00124{bottom:334.905000px;}
.yb9_c00124{bottom:335.130000px;}
.yb1_c00124{bottom:353.130000px;}
.yb4_c00124{bottom:353.970000px;}
.yb2_c00124{bottom:354.405000px;}
.yb3_c00124{bottom:355.470000px;}
.yaf_c00124{bottom:371.745000px;}
.yb0_c00124{bottom:373.470000px;}
.yae_c00124{bottom:373.905000px;}
.yab_c00124{bottom:391.245000px;}
.yad_c00124{bottom:392.325000px;}
.yaa_c00124{bottom:393.405000px;}
.yac_c00124{bottom:394.470000px;}
.ya6_c00124{bottom:410.745000px;}
.ya8_c00124{bottom:411.825000px;}
.ya7_c00124{bottom:412.905000px;}
.ya9_c00124{bottom:413.970000px;}
.ya0_c00124{bottom:430.245000px;}
.ya2_c00124{bottom:431.745000px;}
.ya1_c00124{bottom:432.405000px;}
.ya5_c00124{bottom:432.825000px;}
.ya3_c00124{bottom:433.470000px;}
.ya4_c00124{bottom:433.905000px;}
.y9e_c00124{bottom:451.050000px;}
.y9c_c00124{bottom:451.245000px;}
.y9b_c00124{bottom:451.905000px;}
.y9f_c00124{bottom:452.130000px;}
.y9d_c00124{bottom:452.325000px;}
.y9a_c00124{bottom:453.405000px;}
.y99_c00124{bottom:469.680000px;}
.y95_c00124{bottom:470.745000px;}
.y98_c00124{bottom:471.630000px;}
.y97_c00124{bottom:471.825000px;}
.y96_c00124{bottom:472.905000px;}
.y92_c00124{bottom:490.245000px;}
.y93_c00124{bottom:491.325000px;}
.y94_c00124{bottom:492.405000px;}
.y8c_c00124{bottom:508.905000px;}
.y8f_c00124{bottom:509.325000px;}
.y8a_c00124{bottom:509.745000px;}
.y90_c00124{bottom:509.970000px;}
.y8e_c00124{bottom:510.825000px;}
.y91_c00124{bottom:511.470000px;}
.y8b_c00124{bottom:511.905000px;}
.y8d_c00124{bottom:512.130000px;}
.y86_c00124{bottom:529.245000px;}
.y88_c00124{bottom:530.325000px;}
.y87_c00124{bottom:531.405000px;}
.y89_c00124{bottom:531.630000px;}
.y80_c00124{bottom:547.905000px;}
.y82_c00124{bottom:550.245000px;}
.y81_c00124{bottom:551.130000px;}
.y84_c00124{bottom:551.325000px;}
.y85_c00124{bottom:551.970000px;}
.y83_c00124{bottom:552.405000px;}
.y7e_c00124{bottom:568.470000px;}
.y7b_c00124{bottom:568.680000px;}
.y7d_c00124{bottom:568.905000px;}
.y78_c00124{bottom:569.745000px;}
.y7f_c00124{bottom:570.630000px;}
.y7c_c00124{bottom:571.470000px;}
.y7a_c00124{bottom:571.905000px;}
.y79_c00124{bottom:571.920000px;}
.y76_c00124{bottom:594.405000px;}
.y75_c00124{bottom:594.825000px;}
.y74_c00124{bottom:596.970000px;}
.y73_c00124{bottom:597.195000px;}
.y77_c00124{bottom:598.050000px;}
.y72_c00124{bottom:609.825000px;}
.y6b_c00124{bottom:610.050000px;}
.y6c_c00124{bottom:610.905000px;}
.y6e_c00124{bottom:611.130000px;}
.y6d_c00124{bottom:611.550000px;}
.y70_c00124{bottom:611.970000px;}
.y6f_c00124{bottom:612.195000px;}
.y71_c00124{bottom:613.050000px;}
.y68_c00124{bottom:623.550000px;}
.y6a_c00124{bottom:624.825000px;}
.y69_c00124{bottom:626.550000px;}
.y67_c00124{bottom:638.325000px;}
.y63_c00124{bottom:639.405000px;}
.y65_c00124{bottom:640.470000px;}
.y62_c00124{bottom:640.695000px;}
.y64_c00124{bottom:641.130000px;}
.y66_c00124{bottom:641.550000px;}
.y5e_c00124{bottom:653.325000px;}
.y60_c00124{bottom:654.405000px;}
.y5f_c00124{bottom:654.630000px;}
.y61_c00124{bottom:655.470000px;}
.y5a_c00124{bottom:668.325000px;}
.y5d_c00124{bottom:669.405000px;}
.y59_c00124{bottom:669.630000px;}
.y5b_c00124{bottom:670.695000px;}
.y5c_c00124{bottom:671.550000px;}
.y58_c00124{bottom:691.905000px;}
.y56_c00124{bottom:692.745000px;}
.y57_c00124{bottom:693.825000px;}
.y54_c00124{bottom:694.470000px;}
.y55_c00124{bottom:694.905000px;}
.y52_c00124{bottom:712.245000px;}
.y53_c00124{bottom:714.405000px;}
.y51_c00124{bottom:715.470000px;}
.y4e_c00124{bottom:731.745000px;}
.y4f_c00124{bottom:732.825000px;}
.y4d_c00124{bottom:733.905000px;}
.y50_c00124{bottom:734.970000px;}
.y4c_c00124{bottom:750.180000px;}
.y4b_c00124{bottom:751.245000px;}
.y4a_c00124{bottom:753.405000px;}
.y48_c00124{bottom:770.745000px;}
.y46_c00124{bottom:772.905000px;}
.y47_c00124{bottom:772.920000px;}
.y49_c00124{bottom:773.130000px;}
.y43_c00124{bottom:791.970000px;}
.y44_c00124{bottom:792.405000px;}
.y45_c00124{bottom:793.470000px;}
.y40_c00124{bottom:810.825000px;}
.y41_c00124{bottom:811.245000px;}
.y3d_c00124{bottom:811.905000px;}
.y3f_c00124{bottom:812.325000px;}
.y42_c00124{bottom:813.405000px;}
.y3e_c00124{bottom:813.420000px;}
.y39_c00124{bottom:830.550000px;}
.y3b_c00124{bottom:830.745000px;}
.y38_c00124{bottom:831.405000px;}
.y3c_c00124{bottom:832.905000px;}
.y3a_c00124{bottom:832.920000px;}
.y37_c00124{bottom:849.405000px;}
.y34_c00124{bottom:850.245000px;}
.y36_c00124{bottom:851.325000px;}
.y35_c00124{bottom:852.420000px;}
.y32_c00124{bottom:869.745000px;}
.y31_c00124{bottom:870.825000px;}
.y30_c00124{bottom:871.470000px;}
.y33_c00124{bottom:871.905000px;}
.y2b_c00124{bottom:889.245000px;}
.y2e_c00124{bottom:890.325000px;}
.y2d_c00124{bottom:891.405000px;}
.y2c_c00124{bottom:891.420000px;}
.y2f_c00124{bottom:891.630000px;}
.y28_c00124{bottom:915.825000px;}
.y29_c00124{bottom:916.050000px;}
.y26_c00124{bottom:916.905000px;}
.y2a_c00124{bottom:917.130000px;}
.y27_c00124{bottom:917.970000px;}
.y20_c00124{bottom:935.325000px;}
.y1f_c00124{bottom:936.405000px;}
.y22_c00124{bottom:936.825000px;}
.y25_c00124{bottom:937.050000px;}
.y21_c00124{bottom:937.695000px;}
.y23_c00124{bottom:937.905000px;}
.y24_c00124{bottom:940.050000px;}
.y1e_c00124{bottom:962.745000px;}
.y1c_c00124{bottom:964.905000px;}
.y1d_c00124{bottom:965.970000px;}
.y19_c00124{bottom:1001.745000px;}
.y17_c00124{bottom:1002.825000px;}
.y18_c00124{bottom:1003.905000px;}
.y1a_c00124{bottom:1004.970000px;}
.y1b_c00124{bottom:1005.405000px;}
.y10_c00124{bottom:1021.245000px;}
.yf_c00124{bottom:1022.325000px;}
.y15_c00124{bottom:1022.745000px;}
.y12_c00124{bottom:1023.405000px;}
.y11_c00124{bottom:1023.630000px;}
.y14_c00124{bottom:1023.825000px;}
.y13_c00124{bottom:1024.470000px;}
.y16_c00124{bottom:1024.905000px;}
.y9_c00124{bottom:1039.905000px;}
.yc_c00124{bottom:1040.745000px;}
.ye_c00124{bottom:1042.245000px;}
.yb_c00124{bottom:1042.905000px;}
.ya_c00124{bottom:1043.970000px;}
.yd_c00124{bottom:1044.405000px;}
.y5_c00124{bottom:1061.745000px;}
.y6_c00124{bottom:1062.630000px;}
.y7_c00124{bottom:1063.470000px;}
.y4_c00124{bottom:1063.905000px;}
.y8_c00124{bottom:1064.970000px;}
.y1_c00124{bottom:1099.905000px;}
.y2_c00124{bottom:1102.050000px;}
.h8_c00124{height:4.206533px;}
.h7_c00124{height:16.752334px;}
.h5_c00124{height:23.025234px;}
.h2_c00124{height:25.091602px;}
.h3_c00124{height:31.364502px;}
.h1_c00124{height:35.571035px;}
.h6_c00124{height:39.777568px;}
.h4_c00124{height:43.910303px;}
.h9_c00124{height:48.116836px;}
.h0_c00124{height:1335.000000px;}
.w0_c00124{width:880.500000px;}
.x0_c00124{left:0.000000px;}
.x10_c00124{left:151.080000px;}
.x1c_c00124{left:153.000000px;}
.xa1_c00124{left:163.500000px;}
.x3b_c00124{left:165.645000px;}
.x89_c00124{left:166.920000px;}
.x4_c00124{left:168.000000px;}
.x62_c00124{left:169.080000px;}
.x4d_c00124{left:174.000000px;}
.x5f_c00124{left:175.500000px;}
.x92_c00124{left:183.000000px;}
.x11_c00124{left:184.500000px;}
.xbc_c00124{left:185.580000px;}
.xe7_c00124{left:187.920000px;}
.x74_c00124{left:195.000000px;}
.x99_c00124{left:196.500000px;}
.x5_c00124{left:200.580000px;}
.x81_c00124{left:202.080000px;}
.x8f_c00124{left:204.000000px;}
.xaa_c00124{left:205.920000px;}
.x45_c00124{left:207.420000px;}
.xd9_c00124{left:208.500000px;}
.x7b_c00124{left:209.580000px;}
.x6c_c00124{left:211.080000px;}
.xeb_c00124{left:213.420000px;}
.xf3_c00124{left:214.920000px;}
.x93_c00124{left:216.000000px;}
.x31_c00124{left:217.920000px;}
.x27_c00124{left:220.080000px;}
.xe9_c00124{left:223.500000px;}
.xb5_c00124{left:225.420000px;}
.x4e_c00124{left:226.500000px;}
.x90_c00124{left:227.580000px;}
.xd3_c00124{left:231.420000px;}
.xc0_c00124{left:232.500000px;}
.xa2_c00124{left:235.080000px;}
.xec_c00124{left:240.000000px;}
.x3c_c00124{left:243.420000px;}
.x32_c00124{left:244.500000px;}
.x60_c00124{left:245.580000px;}
.xe2_c00124{left:247.500000px;}
.x6_c00124{left:249.000000px;}
.x63_c00124{left:250.500000px;}
.x28_c00124{left:252.000000px;}
.x9a_c00124{left:253.500000px;}
.xa5_c00124{left:255.000000px;}
.x7c_c00124{left:256.920000px;}
.xd0_c00124{left:259.500000px;}
.x12_c00124{left:260.580000px;}
.x46_c00124{left:265.500000px;}
.xda_c00124{left:266.580000px;}
.x64_c00124{left:268.080000px;}
.x91_c00124{left:271.500000px;}
.xc9_c00124{left:273.420000px;}
.x82_c00124{left:274.920000px;}
.xa3_c00124{left:279.000000px;}
.x1d_c00124{left:280.500000px;}
.x5a_c00124{left:282.000000px;}
.x52_c00124{left:283.500000px;}
.xdb_c00124{left:285.420000px;}
.x47_c00124{left:286.500000px;}
.xab_c00124{left:288.000000px;}
.x2c_c00124{left:289.500000px;}
.x75_c00124{left:291.420000px;}
.xea_c00124{left:294.000000px;}
.x7d_c00124{left:295.500000px;}
.xd4_c00124{left:296.580000px;}
.x83_c00124{left:301.920000px;}
.x6d_c00124{left:303.000000px;}
.x9b_c00124{left:304.500000px;}
.x4f_c00124{left:305.580000px;}
.x13_c00124{left:307.920000px;}
.x7_c00124{left:312.000000px;}
.xb6_c00124{left:315.420000px;}
.xdc_c00124{left:319.920000px;}
.xac_c00124{left:321.000000px;}
.x1e_c00124{left:322.500000px;}
.xf4_c00124{left:324.000000px;}
.x33_c00124{left:328.920000px;}
.x3d_c00124{left:330.420000px;}
.x56_c00124{left:332.580000px;}
.xa4_c00124{left:334.500000px;}
.xe3_c00124{left:335.580000px;}
.x14_c00124{left:337.500000px;}
.x61_c00124{left:340.500000px;}
.x65_c00124{left:342.000000px;}
.x48_c00124{left:344.580000px;}
.xb7_c00124{left:346.500000px;}
.x53_c00124{left:349.275000px;}
.x76_c00124{left:354.420000px;}
.xe4_c00124{left:355.500000px;}
.xdd_c00124{left:357.420000px;}
.xd5_c00124{left:360.420000px;}
.xbd_c00124{left:361.500000px;}
.x94_c00124{left:363.000000px;}
.x57_c00124{left:364.080000px;}
.x50_c00124{left:367.080000px;}
.xf5_c00124{left:369.420000px;}
.x84_c00124{left:370.920000px;}
.xad_c00124{left:373.920000px;}
.xcc_c00124{left:375.000000px;}
.xed_c00124{left:377.580000px;}
.x8a_c00124{left:380.145000px;}
.x2d_c00124{left:382.920000px;}
.x29_c00124{left:385.500000px;}
.x9c_c00124{left:387.000000px;}
.x8_c00124{left:388.080000px;}
.x1f_c00124{left:391.500000px;}
.x77_c00124{left:393.000000px;}
.x6e_c00124{left:394.500000px;}
.x15_c00124{left:396.000000px;}
.x2_c00124{left:399.000000px;}
.xae_c00124{left:402.420000px;}
.xcd_c00124{left:403.500000px;}
.x2a_c00124{left:405.420000px;}
.x9_c00124{left:406.500000px;}
.xde_c00124{left:411.000000px;}
.x58_c00124{left:412.500000px;}
.x20_c00124{left:415.080000px;}
.x51_c00124{left:418.500000px;}
.x54_c00124{left:420.000000px;}
.x49_c00124{left:421.500000px;}
.xee_c00124{left:422.580000px;}
.x8b_c00124{left:426.420000px;}
.x3e_c00124{left:427.500000px;}
.x66_c00124{left:429.000000px;}
.xd6_c00124{left:430.080000px;}
.x2b_c00124{left:432.000000px;}
.x7e_c00124{left:433.500000px;}
.x34_c00124{left:434.580000px;}
.x85_c00124{left:436.500000px;}
.x6f_c00124{left:439.500000px;}
.x4a_c00124{left:441.000000px;}
.x5b_c00124{left:442.920000px;}
.xc1_c00124{left:447.420000px;}
.xdf_c00124{left:448.500000px;}
.x16_c00124{left:449.580000px;}
.x21_c00124{left:456.000000px;}
.xce_c00124{left:457.080000px;}
.xc4_c00124{left:459.000000px;}
.x2e_c00124{left:460.080000px;}
.xa_c00124{left:461.580000px;}
.xa6_c00124{left:463.920000px;}
.x5c_c00124{left:468.000000px;}
.xf6_c00124{left:471.000000px;}
.xbe_c00124{left:472.500000px;}
.x70_c00124{left:475.500000px;}
.x67_c00124{left:476.580000px;}
.x35_c00124{left:481.080000px;}
.x55_c00124{left:482.775000px;}
.xe5_c00124{left:484.920000px;}
.x2f_c00124{left:486.000000px;}
.xd1_c00124{left:487.500000px;}
.xc2_c00124{left:489.000000px;}
.xd7_c00124{left:490.080000px;}
.x3f_c00124{left:495.000000px;}
.xaf_c00124{left:496.080000px;}
.xa7_c00124{left:500.580000px;}
.x59_c00124{left:503.580000px;}
.xc5_c00124{left:505.080000px;}
.xcf_c00124{left:507.000000px;}
.x17_c00124{left:509.580000px;}
.x4b_c00124{left:511.920000px;}
.xb0_c00124{left:516.420000px;}
.x22_c00124{left:519.420000px;}
.x68_c00124{left:522.000000px;}
.x9d_c00124{left:523.500000px;}
.xb_c00124{left:525.000000px;}
.xc6_c00124{left:526.500000px;}
.x40_c00124{left:529.500000px;}
.xa8_c00124{left:531.000000px;}
.xbf_c00124{left:532.080000px;}
.x78_c00124{left:534.000000px;}
.xca_c00124{left:535.500000px;}
.x71_c00124{left:537.000000px;}
.x95_c00124{left:538.500000px;}
.x86_c00124{left:544.500000px;}
.xb1_c00124{left:545.580000px;}
.xc_c00124{left:552.000000px;}
.x7f_c00124{left:553.920000px;}
.x23_c00124{left:556.080000px;}
.x30_c00124{left:557.775000px;}
.x18_c00124{left:559.500000px;}
.xd2_c00124{left:562.500000px;}
.x36_c00124{left:564.420000px;}
.x5d_c00124{left:569.580000px;}
.x8c_c00124{left:571.500000px;}
.x87_c00124{left:572.775000px;}
.x69_c00124{left:574.920000px;}
.xd_c00124{left:580.920000px;}
.xef_c00124{left:585.000000px;}
.xb2_c00124{left:586.500000px;}
.xb8_c00124{left:588.000000px;}
.xe0_c00124{left:589.080000px;}
.x24_c00124{left:590.355000px;}
.x37_c00124{left:592.500000px;}
.xc7_c00124{left:594.000000px;}
.x19_c00124{left:595.500000px;}
.x79_c00124{left:597.000000px;}
.xc3_c00124{left:599.580000px;}
.x96_c00124{left:601.080000px;}
.x41_c00124{left:602.355000px;}
.xf7_c00124{left:604.920000px;}
.x88_c00124{left:607.500000px;}
.x6a_c00124{left:611.580000px;}
.xd8_c00124{left:615.000000px;}
.xf0_c00124{left:616.500000px;}
.x5e_c00124{left:617.580000px;}
.xc8_c00124{left:620.775000px;}
.x72_c00124{left:623.145000px;}
.x42_c00124{left:626.355000px;}
.x8d_c00124{left:628.080000px;}
.x9e_c00124{left:633.000000px;}
.xb9_c00124{left:637.080000px;}
.x25_c00124{left:640.500000px;}
.xb3_c00124{left:643.500000px;}
.xf8_c00124{left:645.000000px;}
.x1a_c00124{left:648.000000px;}
.xe6_c00124{left:649.500000px;}
.xe1_c00124{left:650.580000px;}
.x38_c00124{left:652.080000px;}
.xcb_c00124{left:655.920000px;}
.x4c_c00124{left:659.145000px;}
.xa9_c00124{left:661.500000px;}
.xe_c00124{left:663.000000px;}
.x9f_c00124{left:664.080000px;}
.xf9_c00124{left:666.420000px;}
.xf1_c00124{left:669.420000px;}
.x97_c00124{left:670.500000px;}
.x39_c00124{left:674.355000px;}
.x80_c00124{left:676.500000px;}
.x43_c00124{left:678.000000px;}
.x7a_c00124{left:679.500000px;}
.x6b_c00124{left:681.000000px;}
.xba_c00124{left:682.500000px;}
.xf_c00124{left:684.000000px;}
.xb4_c00124{left:685.500000px;}
.x73_c00124{left:688.080000px;}
.x1b_c00124{left:689.580000px;}
.xa0_c00124{left:691.500000px;}
.x3a_c00124{left:692.580000px;}
.xf2_c00124{left:694.500000px;}
.x44_c00124{left:699.420000px;}
.x8e_c00124{left:700.500000px;}
.xbb_c00124{left:703.500000px;}
.x98_c00124{left:706.080000px;}
.x26_c00124{left:708.420000px;}
.xe8_c00124{left:709.500000px;}
.x1_c00124{left:712.080000px;}
.x3_c00124{left:724.080000px;}
@media print{
.v0_c00124{vertical-align:0.000000pt;}
.ls0_c00124{letter-spacing:0.000000pt;}
.ws0_c00124{word-spacing:0.000000pt;}
.fs7_c00124{font-size:3.040000pt;}
.fs6_c00124{font-size:12.106667pt;}
.fs4_c00124{font-size:16.640000pt;}
.fs1_c00124{font-size:18.133333pt;}
.fs2_c00124{font-size:22.666667pt;}
.fs0_c00124{font-size:25.706667pt;}
.fs5_c00124{font-size:28.746667pt;}
.fs3_c00124{font-size:31.733333pt;}
.fs8_c00124{font-size:34.773333pt;}
.y0_c00124{bottom:0.000000pt;}
.y3_c00124{bottom:199.973333pt;}
.ycc_c00124{bottom:224.360000pt;}
.yca_c00124{bottom:225.106667pt;}
.yc8_c00124{bottom:226.440000pt;}
.ycf_c00124{bottom:226.640000pt;}
.yc9_c00124{bottom:227.026667pt;}
.ycd_c00124{bottom:227.226667pt;}
.ycb_c00124{bottom:227.973333pt;}
.yce_c00124{bottom:228.360000pt;}
.yc5_c00124{bottom:242.440000pt;}
.yc4_c00124{bottom:243.400000pt;}
.yc7_c00124{bottom:243.973333pt;}
.yc3_c00124{bottom:244.360000pt;}
.yc6_c00124{bottom:245.306667pt;}
.yc2_c00124{bottom:245.693333pt;}
.ybf_c00124{bottom:258.826667pt;}
.yc1_c00124{bottom:259.026667pt;}
.ybe_c00124{bottom:259.773333pt;}
.yc0_c00124{bottom:261.106667pt;}
.ybc_c00124{bottom:261.693333pt;}
.ybd_c00124{bottom:263.026667pt;}
.yba_c00124{bottom:278.440000pt;}
.ybb_c00124{bottom:280.360000pt;}
.yb6_c00124{bottom:295.773333pt;}
.yb8_c00124{bottom:296.560000pt;}
.yb5_c00124{bottom:296.733333pt;}
.yb7_c00124{bottom:297.693333pt;}
.yb9_c00124{bottom:297.893333pt;}
.yb1_c00124{bottom:313.893333pt;}
.yb4_c00124{bottom:314.640000pt;}
.yb2_c00124{bottom:315.026667pt;}
.yb3_c00124{bottom:315.973333pt;}
.yaf_c00124{bottom:330.440000pt;}
.yb0_c00124{bottom:331.973333pt;}
.yae_c00124{bottom:332.360000pt;}
.yab_c00124{bottom:347.773333pt;}
.yad_c00124{bottom:348.733333pt;}
.yaa_c00124{bottom:349.693333pt;}
.yac_c00124{bottom:350.640000pt;}
.ya6_c00124{bottom:365.106667pt;}
.ya8_c00124{bottom:366.066667pt;}
.ya7_c00124{bottom:367.026667pt;}
.ya9_c00124{bottom:367.973333pt;}
.ya0_c00124{bottom:382.440000pt;}
.ya2_c00124{bottom:383.773333pt;}
.ya1_c00124{bottom:384.360000pt;}
.ya5_c00124{bottom:384.733333pt;}
.ya3_c00124{bottom:385.306667pt;}
.ya4_c00124{bottom:385.693333pt;}
.y9e_c00124{bottom:400.933333pt;}
.y9c_c00124{bottom:401.106667pt;}
.y9b_c00124{bottom:401.693333pt;}
.y9f_c00124{bottom:401.893333pt;}
.y9d_c00124{bottom:402.066667pt;}
.y9a_c00124{bottom:403.026667pt;}
.y99_c00124{bottom:417.493333pt;}
.y95_c00124{bottom:418.440000pt;}
.y98_c00124{bottom:419.226667pt;}
.y97_c00124{bottom:419.400000pt;}
.y96_c00124{bottom:420.360000pt;}
.y92_c00124{bottom:435.773333pt;}
.y93_c00124{bottom:436.733333pt;}
.y94_c00124{bottom:437.693333pt;}
.y8c_c00124{bottom:452.360000pt;}
.y8f_c00124{bottom:452.733333pt;}
.y8a_c00124{bottom:453.106667pt;}
.y90_c00124{bottom:453.306667pt;}
.y8e_c00124{bottom:454.066667pt;}
.y91_c00124{bottom:454.640000pt;}
.y8b_c00124{bottom:455.026667pt;}
.y8d_c00124{bottom:455.226667pt;}
.y86_c00124{bottom:470.440000pt;}
.y88_c00124{bottom:471.400000pt;}
.y87_c00124{bottom:472.360000pt;}
.y89_c00124{bottom:472.560000pt;}
.y80_c00124{bottom:487.026667pt;}
.y82_c00124{bottom:489.106667pt;}
.y81_c00124{bottom:489.893333pt;}
.y84_c00124{bottom:490.066667pt;}
.y85_c00124{bottom:490.640000pt;}
.y83_c00124{bottom:491.026667pt;}
.y7e_c00124{bottom:505.306667pt;}
.y7b_c00124{bottom:505.493333pt;}
.y7d_c00124{bottom:505.693333pt;}
.y78_c00124{bottom:506.440000pt;}
.y7f_c00124{bottom:507.226667pt;}
.y7c_c00124{bottom:507.973333pt;}
.y7a_c00124{bottom:508.360000pt;}
.y79_c00124{bottom:508.373333pt;}
.y76_c00124{bottom:528.360000pt;}
.y75_c00124{bottom:528.733333pt;}
.y74_c00124{bottom:530.640000pt;}
.y73_c00124{bottom:530.840000pt;}
.y77_c00124{bottom:531.600000pt;}
.y72_c00124{bottom:542.066667pt;}
.y6b_c00124{bottom:542.266667pt;}
.y6c_c00124{bottom:543.026667pt;}
.y6e_c00124{bottom:543.226667pt;}
.y6d_c00124{bottom:543.600000pt;}
.y70_c00124{bottom:543.973333pt;}
.y6f_c00124{bottom:544.173333pt;}
.y71_c00124{bottom:544.933333pt;}
.y68_c00124{bottom:554.266667pt;}
.y6a_c00124{bottom:555.400000pt;}
.y69_c00124{bottom:556.933333pt;}
.y67_c00124{bottom:567.400000pt;}
.y63_c00124{bottom:568.360000pt;}
.y65_c00124{bottom:569.306667pt;}
.y62_c00124{bottom:569.506667pt;}
.y64_c00124{bottom:569.893333pt;}
.y66_c00124{bottom:570.266667pt;}
.y5e_c00124{bottom:580.733333pt;}
.y60_c00124{bottom:581.693333pt;}
.y5f_c00124{bottom:581.893333pt;}
.y61_c00124{bottom:582.640000pt;}
.y5a_c00124{bottom:594.066667pt;}
.y5d_c00124{bottom:595.026667pt;}
.y59_c00124{bottom:595.226667pt;}
.y5b_c00124{bottom:596.173333pt;}
.y5c_c00124{bottom:596.933333pt;}
.y58_c00124{bottom:615.026667pt;}
.y56_c00124{bottom:615.773333pt;}
.y57_c00124{bottom:616.733333pt;}
.y54_c00124{bottom:617.306667pt;}
.y55_c00124{bottom:617.693333pt;}
.y52_c00124{bottom:633.106667pt;}
.y53_c00124{bottom:635.026667pt;}
.y51_c00124{bottom:635.973333pt;}
.y4e_c00124{bottom:650.440000pt;}
.y4f_c00124{bottom:651.400000pt;}
.y4d_c00124{bottom:652.360000pt;}
.y50_c00124{bottom:653.306667pt;}
.y4c_c00124{bottom:666.826667pt;}
.y4b_c00124{bottom:667.773333pt;}
.y4a_c00124{bottom:669.693333pt;}
.y48_c00124{bottom:685.106667pt;}
.y46_c00124{bottom:687.026667pt;}
.y47_c00124{bottom:687.040000pt;}
.y49_c00124{bottom:687.226667pt;}
.y43_c00124{bottom:703.973333pt;}
.y44_c00124{bottom:704.360000pt;}
.y45_c00124{bottom:705.306667pt;}
.y40_c00124{bottom:720.733333pt;}
.y41_c00124{bottom:721.106667pt;}
.y3d_c00124{bottom:721.693333pt;}
.y3f_c00124{bottom:722.066667pt;}
.y42_c00124{bottom:723.026667pt;}
.y3e_c00124{bottom:723.040000pt;}
.y39_c00124{bottom:738.266667pt;}
.y3b_c00124{bottom:738.440000pt;}
.y38_c00124{bottom:739.026667pt;}
.y3c_c00124{bottom:740.360000pt;}
.y3a_c00124{bottom:740.373333pt;}
.y37_c00124{bottom:755.026667pt;}
.y34_c00124{bottom:755.773333pt;}
.y36_c00124{bottom:756.733333pt;}
.y35_c00124{bottom:757.706667pt;}
.y32_c00124{bottom:773.106667pt;}
.y31_c00124{bottom:774.066667pt;}
.y30_c00124{bottom:774.640000pt;}
.y33_c00124{bottom:775.026667pt;}
.y2b_c00124{bottom:790.440000pt;}
.y2e_c00124{bottom:791.400000pt;}
.y2d_c00124{bottom:792.360000pt;}
.y2c_c00124{bottom:792.373333pt;}
.y2f_c00124{bottom:792.560000pt;}
.y28_c00124{bottom:814.066667pt;}
.y29_c00124{bottom:814.266667pt;}
.y26_c00124{bottom:815.026667pt;}
.y2a_c00124{bottom:815.226667pt;}
.y27_c00124{bottom:815.973333pt;}
.y20_c00124{bottom:831.400000pt;}
.y1f_c00124{bottom:832.360000pt;}
.y22_c00124{bottom:832.733333pt;}
.y25_c00124{bottom:832.933333pt;}
.y21_c00124{bottom:833.506667pt;}
.y23_c00124{bottom:833.693333pt;}
.y24_c00124{bottom:835.600000pt;}
.y1e_c00124{bottom:855.773333pt;}
.y1c_c00124{bottom:857.693333pt;}
.y1d_c00124{bottom:858.640000pt;}
.y19_c00124{bottom:890.440000pt;}
.y17_c00124{bottom:891.400000pt;}
.y18_c00124{bottom:892.360000pt;}
.y1a_c00124{bottom:893.306667pt;}
.y1b_c00124{bottom:893.693333pt;}
.y10_c00124{bottom:907.773333pt;}
.yf_c00124{bottom:908.733333pt;}
.y15_c00124{bottom:909.106667pt;}
.y12_c00124{bottom:909.693333pt;}
.y11_c00124{bottom:909.893333pt;}
.y14_c00124{bottom:910.066667pt;}
.y13_c00124{bottom:910.640000pt;}
.y16_c00124{bottom:911.026667pt;}
.y9_c00124{bottom:924.360000pt;}
.yc_c00124{bottom:925.106667pt;}
.ye_c00124{bottom:926.440000pt;}
.yb_c00124{bottom:927.026667pt;}
.ya_c00124{bottom:927.973333pt;}
.yd_c00124{bottom:928.360000pt;}
.y5_c00124{bottom:943.773333pt;}
.y6_c00124{bottom:944.560000pt;}
.y7_c00124{bottom:945.306667pt;}
.y4_c00124{bottom:945.693333pt;}
.y8_c00124{bottom:946.640000pt;}
.y1_c00124{bottom:977.693333pt;}
.y2_c00124{bottom:979.600000pt;}
.h8_c00124{height:3.739141pt;}
.h7_c00124{height:14.890964pt;}
.h5_c00124{height:20.466875pt;}
.h2_c00124{height:22.303646pt;}
.h3_c00124{height:27.879557pt;}
.h1_c00124{height:31.618698pt;}
.h6_c00124{height:35.357839pt;}
.h4_c00124{height:39.031380pt;}
.h9_c00124{height:42.770521pt;}
.h0_c00124{height:1186.666667pt;}
.w0_c00124{width:782.666667pt;}
.x0_c00124{left:0.000000pt;}
.x10_c00124{left:134.293333pt;}
.x1c_c00124{left:136.000000pt;}
.xa1_c00124{left:145.333333pt;}
.x3b_c00124{left:147.240000pt;}
.x89_c00124{left:148.373333pt;}
.x4_c00124{left:149.333333pt;}
.x62_c00124{left:150.293333pt;}
.x4d_c00124{left:154.666667pt;}
.x5f_c00124{left:156.000000pt;}
.x92_c00124{left:162.666667pt;}
.x11_c00124{left:164.000000pt;}
.xbc_c00124{left:164.960000pt;}
.xe7_c00124{left:167.040000pt;}
.x74_c00124{left:173.333333pt;}
.x99_c00124{left:174.666667pt;}
.x5_c00124{left:178.293333pt;}
.x81_c00124{left:179.626667pt;}
.x8f_c00124{left:181.333333pt;}
.xaa_c00124{left:183.040000pt;}
.x45_c00124{left:184.373333pt;}
.xd9_c00124{left:185.333333pt;}
.x7b_c00124{left:186.293333pt;}
.x6c_c00124{left:187.626667pt;}
.xeb_c00124{left:189.706667pt;}
.xf3_c00124{left:191.040000pt;}
.x93_c00124{left:192.000000pt;}
.x31_c00124{left:193.706667pt;}
.x27_c00124{left:195.626667pt;}
.xe9_c00124{left:198.666667pt;}
.xb5_c00124{left:200.373333pt;}
.x4e_c00124{left:201.333333pt;}
.x90_c00124{left:202.293333pt;}
.xd3_c00124{left:205.706667pt;}
.xc0_c00124{left:206.666667pt;}
.xa2_c00124{left:208.960000pt;}
.xec_c00124{left:213.333333pt;}
.x3c_c00124{left:216.373333pt;}
.x32_c00124{left:217.333333pt;}
.x60_c00124{left:218.293333pt;}
.xe2_c00124{left:220.000000pt;}
.x6_c00124{left:221.333333pt;}
.x63_c00124{left:222.666667pt;}
.x28_c00124{left:224.000000pt;}
.x9a_c00124{left:225.333333pt;}
.xa5_c00124{left:226.666667pt;}
.x7c_c00124{left:228.373333pt;}
.xd0_c00124{left:230.666667pt;}
.x12_c00124{left:231.626667pt;}
.x46_c00124{left:236.000000pt;}
.xda_c00124{left:236.960000pt;}
.x64_c00124{left:238.293333pt;}
.x91_c00124{left:241.333333pt;}
.xc9_c00124{left:243.040000pt;}
.x82_c00124{left:244.373333pt;}
.xa3_c00124{left:248.000000pt;}
.x1d_c00124{left:249.333333pt;}
.x5a_c00124{left:250.666667pt;}
.x52_c00124{left:252.000000pt;}
.xdb_c00124{left:253.706667pt;}
.x47_c00124{left:254.666667pt;}
.xab_c00124{left:256.000000pt;}
.x2c_c00124{left:257.333333pt;}
.x75_c00124{left:259.040000pt;}
.xea_c00124{left:261.333333pt;}
.x7d_c00124{left:262.666667pt;}
.xd4_c00124{left:263.626667pt;}
.x83_c00124{left:268.373333pt;}
.x6d_c00124{left:269.333333pt;}
.x9b_c00124{left:270.666667pt;}
.x4f_c00124{left:271.626667pt;}
.x13_c00124{left:273.706667pt;}
.x7_c00124{left:277.333333pt;}
.xb6_c00124{left:280.373333pt;}
.xdc_c00124{left:284.373333pt;}
.xac_c00124{left:285.333333pt;}
.x1e_c00124{left:286.666667pt;}
.xf4_c00124{left:288.000000pt;}
.x33_c00124{left:292.373333pt;}
.x3d_c00124{left:293.706667pt;}
.x56_c00124{left:295.626667pt;}
.xa4_c00124{left:297.333333pt;}
.xe3_c00124{left:298.293333pt;}
.x14_c00124{left:300.000000pt;}
.x61_c00124{left:302.666667pt;}
.x65_c00124{left:304.000000pt;}
.x48_c00124{left:306.293333pt;}
.xb7_c00124{left:308.000000pt;}
.x53_c00124{left:310.466667pt;}
.x76_c00124{left:315.040000pt;}
.xe4_c00124{left:316.000000pt;}
.xdd_c00124{left:317.706667pt;}
.xd5_c00124{left:320.373333pt;}
.xbd_c00124{left:321.333333pt;}
.x94_c00124{left:322.666667pt;}
.x57_c00124{left:323.626667pt;}
.x50_c00124{left:326.293333pt;}
.xf5_c00124{left:328.373333pt;}
.x84_c00124{left:329.706667pt;}
.xad_c00124{left:332.373333pt;}
.xcc_c00124{left:333.333333pt;}
.xed_c00124{left:335.626667pt;}
.x8a_c00124{left:337.906667pt;}
.x2d_c00124{left:340.373333pt;}
.x29_c00124{left:342.666667pt;}
.x9c_c00124{left:344.000000pt;}
.x8_c00124{left:344.960000pt;}
.x1f_c00124{left:348.000000pt;}
.x77_c00124{left:349.333333pt;}
.x6e_c00124{left:350.666667pt;}
.x15_c00124{left:352.000000pt;}
.x2_c00124{left:354.666667pt;}
.xae_c00124{left:357.706667pt;}
.xcd_c00124{left:358.666667pt;}
.x2a_c00124{left:360.373333pt;}
.x9_c00124{left:361.333333pt;}
.xde_c00124{left:365.333333pt;}
.x58_c00124{left:366.666667pt;}
.x20_c00124{left:368.960000pt;}
.x51_c00124{left:372.000000pt;}
.x54_c00124{left:373.333333pt;}
.x49_c00124{left:374.666667pt;}
.xee_c00124{left:375.626667pt;}
.x8b_c00124{left:379.040000pt;}
.x3e_c00124{left:380.000000pt;}
.x66_c00124{left:381.333333pt;}
.xd6_c00124{left:382.293333pt;}
.x2b_c00124{left:384.000000pt;}
.x7e_c00124{left:385.333333pt;}
.x34_c00124{left:386.293333pt;}
.x85_c00124{left:388.000000pt;}
.x6f_c00124{left:390.666667pt;}
.x4a_c00124{left:392.000000pt;}
.x5b_c00124{left:393.706667pt;}
.xc1_c00124{left:397.706667pt;}
.xdf_c00124{left:398.666667pt;}
.x16_c00124{left:399.626667pt;}
.x21_c00124{left:405.333333pt;}
.xce_c00124{left:406.293333pt;}
.xc4_c00124{left:408.000000pt;}
.x2e_c00124{left:408.960000pt;}
.xa_c00124{left:410.293333pt;}
.xa6_c00124{left:412.373333pt;}
.x5c_c00124{left:416.000000pt;}
.xf6_c00124{left:418.666667pt;}
.xbe_c00124{left:420.000000pt;}
.x70_c00124{left:422.666667pt;}
.x67_c00124{left:423.626667pt;}
.x35_c00124{left:427.626667pt;}
.x55_c00124{left:429.133333pt;}
.xe5_c00124{left:431.040000pt;}
.x2f_c00124{left:432.000000pt;}
.xd1_c00124{left:433.333333pt;}
.xc2_c00124{left:434.666667pt;}
.xd7_c00124{left:435.626667pt;}
.x3f_c00124{left:440.000000pt;}
.xaf_c00124{left:440.960000pt;}
.xa7_c00124{left:444.960000pt;}
.x59_c00124{left:447.626667pt;}
.xc5_c00124{left:448.960000pt;}
.xcf_c00124{left:450.666667pt;}
.x17_c00124{left:452.960000pt;}
.x4b_c00124{left:455.040000pt;}
.xb0_c00124{left:459.040000pt;}
.x22_c00124{left:461.706667pt;}
.x68_c00124{left:464.000000pt;}
.x9d_c00124{left:465.333333pt;}
.xb_c00124{left:466.666667pt;}
.xc6_c00124{left:468.000000pt;}
.x40_c00124{left:470.666667pt;}
.xa8_c00124{left:472.000000pt;}
.xbf_c00124{left:472.960000pt;}
.x78_c00124{left:474.666667pt;}
.xca_c00124{left:476.000000pt;}
.x71_c00124{left:477.333333pt;}
.x95_c00124{left:478.666667pt;}
.x86_c00124{left:484.000000pt;}
.xb1_c00124{left:484.960000pt;}
.xc_c00124{left:490.666667pt;}
.x7f_c00124{left:492.373333pt;}
.x23_c00124{left:494.293333pt;}
.x30_c00124{left:495.800000pt;}
.x18_c00124{left:497.333333pt;}
.xd2_c00124{left:500.000000pt;}
.x36_c00124{left:501.706667pt;}
.x5d_c00124{left:506.293333pt;}
.x8c_c00124{left:508.000000pt;}
.x87_c00124{left:509.133333pt;}
.x69_c00124{left:511.040000pt;}
.xd_c00124{left:516.373333pt;}
.xef_c00124{left:520.000000pt;}
.xb2_c00124{left:521.333333pt;}
.xb8_c00124{left:522.666667pt;}
.xe0_c00124{left:523.626667pt;}
.x24_c00124{left:524.760000pt;}
.x37_c00124{left:526.666667pt;}
.xc7_c00124{left:528.000000pt;}
.x19_c00124{left:529.333333pt;}
.x79_c00124{left:530.666667pt;}
.xc3_c00124{left:532.960000pt;}
.x96_c00124{left:534.293333pt;}
.x41_c00124{left:535.426667pt;}
.xf7_c00124{left:537.706667pt;}
.x88_c00124{left:540.000000pt;}
.x6a_c00124{left:543.626667pt;}
.xd8_c00124{left:546.666667pt;}
.xf0_c00124{left:548.000000pt;}
.x5e_c00124{left:548.960000pt;}
.xc8_c00124{left:551.800000pt;}
.x72_c00124{left:553.906667pt;}
.x42_c00124{left:556.760000pt;}
.x8d_c00124{left:558.293333pt;}
.x9e_c00124{left:562.666667pt;}
.xb9_c00124{left:566.293333pt;}
.x25_c00124{left:569.333333pt;}
.xb3_c00124{left:572.000000pt;}
.xf8_c00124{left:573.333333pt;}
.x1a_c00124{left:576.000000pt;}
.xe6_c00124{left:577.333333pt;}
.xe1_c00124{left:578.293333pt;}
.x38_c00124{left:579.626667pt;}
.xcb_c00124{left:583.040000pt;}
.x4c_c00124{left:585.906667pt;}
.xa9_c00124{left:588.000000pt;}
.xe_c00124{left:589.333333pt;}
.x9f_c00124{left:590.293333pt;}
.xf9_c00124{left:592.373333pt;}
.xf1_c00124{left:595.040000pt;}
.x97_c00124{left:596.000000pt;}
.x39_c00124{left:599.426667pt;}
.x80_c00124{left:601.333333pt;}
.x43_c00124{left:602.666667pt;}
.x7a_c00124{left:604.000000pt;}
.x6b_c00124{left:605.333333pt;}
.xba_c00124{left:606.666667pt;}
.xf_c00124{left:608.000000pt;}
.xb4_c00124{left:609.333333pt;}
.x73_c00124{left:611.626667pt;}
.x1b_c00124{left:612.960000pt;}
.xa0_c00124{left:614.666667pt;}
.x3a_c00124{left:615.626667pt;}
.xf2_c00124{left:617.333333pt;}
.x44_c00124{left:621.706667pt;}
.x8e_c00124{left:622.666667pt;}
.xbb_c00124{left:625.333333pt;}
.x98_c00124{left:627.626667pt;}
.x26_c00124{left:629.706667pt;}
.xe8_c00124{left:630.666667pt;}
.x1_c00124{left:632.960000pt;}
.x3_c00124{left:643.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_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_2953bc06a1de1028b3067d47.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m36_c00125{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m73_c00125{transform:matrix(0.357607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357607,0.000000,0.000000,0.250000,0,0);}
.m38_c00125{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m0_c00125{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m28_c00125{transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);}
.m43_c00125{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m6c_c00125{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m46_c00125{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m42_c00125{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m4d_c00125{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m77_c00125{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m50_c00125{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m7b_c00125{transform:matrix(0.393321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393321,0.000000,0.000000,0.250000,0,0);}
.m52_c00125{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m79_c00125{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m3d_c00125{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m5b_c00125{transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);}
.m17_c00125{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m55_c00125{transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);}
.m67_c00125{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.m12_c00125{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mc_c00125{transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);}
.m2d_c00125{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m49_c00125{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m62_c00125{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.m24_c00125{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m39_c00125{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mf_c00125{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m37_c00125{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m3b_c00125{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m14_c00125{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m2b_c00125{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m7d_c00125{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m63_c00125{transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);}
.m5f_c00125{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m7a_c00125{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m57_c00125{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m27_c00125{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m6a_c00125{transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);}
.m54_c00125{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.m3c_c00125{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m3_c00125{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.m32_c00125{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m72_c00125{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m70_c00125{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.me_c00125{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.m3f_c00125{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m19_c00125{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m1c_c00125{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m25_c00125{transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);}
.m6f_c00125{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.m16_c00125{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m30_c00125{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m29_c00125{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m7_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);}
.m6d_c00125{transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);}
.m6b_c00125{transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);}
.m1e_c00125{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m40_c00125{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m4c_c00125{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m35_c00125{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.md_c00125{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m10_c00125{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m58_c00125{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m5_c00125{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m51_c00125{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m76_c00125{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.m61_c00125{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);}
.m5e_c00125{transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);}
.m4f_c00125{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m1b_c00125{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m4_c00125{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m8_c00125{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m74_c00125{transform:matrix(0.534706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534706,0.000000,0.000000,0.250000,0,0);}
.m31_c00125{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m5a_c00125{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m4b_c00125{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m7c_c00125{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m33_c00125{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m23_c00125{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m47_c00125{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m2a_c00125{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m11_c00125{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m6e_c00125{transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);}
.m44_c00125{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m3a_c00125{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m21_c00125{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m75_c00125{transform:matrix(0.564706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564706,0.000000,0.000000,0.250000,0,0);}
.m2_c00125{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m9_c00125{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m13_c00125{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m41_c00125{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m64_c00125{transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);}
.m2f_c00125{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m4e_c00125{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m15_c00125{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m71_c00125{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m5d_c00125{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m45_c00125{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m1f_c00125{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m59_c00125{transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);}
.m2e_c00125{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m1_c00125{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m4a_c00125{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m6_c00125{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m26_c00125{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m1d_c00125{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m66_c00125{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.m18_c00125{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m2c_c00125{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.mb_c00125{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m60_c00125{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m68_c00125{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m65_c00125{transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);}
.m22_c00125{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m56_c00125{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m5c_c00125{transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);}
.m3e_c00125{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m1a_c00125{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m20_c00125{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m34_c00125{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m48_c00125{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m53_c00125{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.ma_c00125{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m78_c00125{transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);}
.m69_c00125{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.v0_c00125{vertical-align:0.000000px;}
.ls0_c00125{letter-spacing:0.000000px;}
.sc__c00125{text-shadow:none;}
.sc0_c00125{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00125{-webkit-text-stroke:0px transparent;}
.sc0_c00125{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00125{word-spacing:-1.749401px;}
.ws1_c00125{word-spacing:0.000000px;}
.fc0_c00125{color:transparent;}
.fs6_c00125{font-size:13.620000px;}
.fs5_c00125{font-size:18.720000px;}
.fs1_c00125{font-size:20.400000px;}
.fs4_c00125{font-size:25.500000px;}
.fs2_c00125{font-size:28.920000px;}
.fs3_c00125{font-size:32.340000px;}
.fs0_c00125{font-size:35.700000px;}
.y0_c00125{bottom:0.000000px;}
.y4d_c00125{bottom:249.825000px;}
.y4f_c00125{bottom:250.905000px;}
.y4e_c00125{bottom:251.130000px;}
.y48_c00125{bottom:251.970000px;}
.y4b_c00125{bottom:263.325000px;}
.y4a_c00125{bottom:263.970000px;}
.y46_c00125{bottom:264.825000px;}
.y42_c00125{bottom:265.470000px;}
.y4c_c00125{bottom:265.695000px;}
.y47_c00125{bottom:266.970000px;}
.y49_c00125{bottom:267.195000px;}
.y3c_c00125{bottom:278.550000px;}
.y3b_c00125{bottom:279.405000px;}
.y40_c00125{bottom:279.825000px;}
.y45_c00125{bottom:280.050000px;}
.y3a_c00125{bottom:280.695000px;}
.y43_c00125{bottom:280.905000px;}
.y44_c00125{bottom:281.130000px;}
.y39_c00125{bottom:281.550000px;}
.y41_c00125{bottom:281.970000px;}
.y33_c00125{bottom:293.550000px;}
.y32_c00125{bottom:294.405000px;}
.y31_c00125{bottom:294.630000px;}
.y37_c00125{bottom:294.825000px;}
.y3f_c00125{bottom:295.905000px;}
.y3e_c00125{bottom:296.130000px;}
.y38_c00125{bottom:296.970000px;}
.y3d_c00125{bottom:298.050000px;}
.y34_c00125{bottom:308.325000px;}
.y36_c00125{bottom:308.550000px;}
.y35_c00125{bottom:309.630000px;}
.y2d_c00125{bottom:309.825000px;}
.y2c_c00125{bottom:310.905000px;}
.y2e_c00125{bottom:311.130000px;}
.y2f_c00125{bottom:311.970000px;}
.y30_c00125{bottom:313.050000px;}
.y2b_c00125{bottom:901.245000px;}
.y28_c00125{bottom:903.405000px;}
.y29_c00125{bottom:903.630000px;}
.y2a_c00125{bottom:904.470000px;}
.y24_c00125{bottom:920.745000px;}
.y26_c00125{bottom:922.470000px;}
.y25_c00125{bottom:922.905000px;}
.y27_c00125{bottom:924.405000px;}
.y20_c00125{bottom:940.245000px;}
.y22_c00125{bottom:941.745000px;}
.y1f_c00125{bottom:942.405000px;}
.y23_c00125{bottom:942.630000px;}
.y21_c00125{bottom:943.470000px;}
.y1b_c00125{bottom:959.745000px;}
.y1c_c00125{bottom:960.825000px;}
.y1e_c00125{bottom:961.905000px;}
.y1d_c00125{bottom:962.130000px;}
.y18_c00125{bottom:979.245000px;}
.y17_c00125{bottom:981.405000px;}
.y19_c00125{bottom:981.630000px;}
.y1a_c00125{bottom:982.470000px;}
.y13_c00125{bottom:998.745000px;}
.y14_c00125{bottom:1000.245000px;}
.y12_c00125{bottom:1000.905000px;}
.y16_c00125{bottom:1001.130000px;}
.y15_c00125{bottom:1001.970000px;}
.y10_c00125{bottom:1017.405000px;}
.yd_c00125{bottom:1018.245000px;}
.yf_c00125{bottom:1020.405000px;}
.ye_c00125{bottom:1020.630000px;}
.y11_c00125{bottom:1021.470000px;}
.y8_c00125{bottom:1037.745000px;}
.yb_c00125{bottom:1039.245000px;}
.y9_c00125{bottom:1039.905000px;}
.ya_c00125{bottom:1040.970000px;}
.yc_c00125{bottom:1041.405000px;}
.y3_c00125{bottom:1056.405000px;}
.y7_c00125{bottom:1059.630000px;}
.y4_c00125{bottom:1059.825000px;}
.y6_c00125{bottom:1060.470000px;}
.y5_c00125{bottom:1060.905000px;}
.y1_c00125{bottom:1097.745000px;}
.y2_c00125{bottom:1099.050000px;}
.h7_c00125{height:16.752334px;}
.h6_c00125{height:23.025234px;}
.h2_c00125{height:25.091602px;}
.h5_c00125{height:31.364502px;}
.h3_c00125{height:35.571035px;}
.h4_c00125{height:39.777568px;}
.h1_c00125{height:43.910303px;}
.h0_c00125{height:1335.000000px;}
.w0_c00125{width:880.500000px;}
.x0_c00125{left:0.000000px;}
.x1_c00125{left:151.500000px;}
.x3_c00125{left:153.000000px;}
.x4d_c00125{left:169.080000px;}
.x1e_c00125{left:175.500000px;}
.x11_c00125{left:178.920000px;}
.x5c_c00125{left:181.920000px;}
.x1f_c00125{left:187.500000px;}
.x74_c00125{left:190.080000px;}
.x2c_c00125{left:193.500000px;}
.x4_c00125{left:198.000000px;}
.x12_c00125{left:205.500000px;}
.x3a_c00125{left:208.500000px;}
.x46_c00125{left:210.855000px;}
.x8a_c00125{left:212.580000px;}
.x75_c00125{left:214.920000px;}
.x6d_c00125{left:219.000000px;}
.x6e_c00125{left:225.000000px;}
.x20_c00125{left:228.000000px;}
.x6f_c00125{left:232.080000px;}
.x4e_c00125{left:238.080000px;}
.x5d_c00125{left:241.080000px;}
.x3b_c00125{left:243.000000px;}
.x2d_c00125{left:247.500000px;}
.x13_c00125{left:253.080000px;}
.x5_c00125{left:258.000000px;}
.x8b_c00125{left:259.080000px;}
.x76_c00125{left:265.920000px;}
.x55_c00125{left:267.420000px;}
.x47_c00125{left:268.500000px;}
.x4f_c00125{left:271.275000px;}
.x21_c00125{left:274.080000px;}
.x14_c00125{left:283.500000px;}
.x2e_c00125{left:295.920000px;}
.x5e_c00125{left:300.000000px;}
.x3c_c00125{left:307.080000px;}
.x70_c00125{left:309.000000px;}
.x15_c00125{left:310.920000px;}
.x6_c00125{left:319.500000px;}
.x22_c00125{left:321.000000px;}
.x56_c00125{left:326.580000px;}
.x5f_c00125{left:328.080000px;}
.x7e_c00125{left:337.500000px;}
.x60_c00125{left:346.500000px;}
.x16_c00125{left:348.000000px;}
.x50_c00125{left:351.000000px;}
.x85_c00125{left:352.920000px;}
.x3d_c00125{left:354.000000px;}
.x2f_c00125{left:356.580000px;}
.x77_c00125{left:358.500000px;}
.x67_c00125{left:361.500000px;}
.x48_c00125{left:366.000000px;}
.x30_c00125{left:373.920000px;}
.x61_c00125{left:375.000000px;}
.x23_c00125{left:376.500000px;}
.x3e_c00125{left:382.920000px;}
.x68_c00125{left:384.420000px;}
.x49_c00125{left:388.920000px;}
.x51_c00125{left:390.000000px;}
.x7_c00125{left:391.080000px;}
.x17_c00125{left:397.500000px;}
.x57_c00125{left:399.000000px;}
.x2_c00125{left:400.500000px;}
.x31_c00125{left:402.420000px;}
.x78_c00125{left:403.500000px;}
.x24_c00125{left:412.920000px;}
.x4a_c00125{left:415.500000px;}
.x7f_c00125{left:416.580000px;}
.x8_c00125{left:418.080000px;}
.x3f_c00125{left:421.080000px;}
.x83_c00125{left:424.500000px;}
.x32_c00125{left:433.500000px;}
.x9_c00125{left:436.920000px;}
.x79_c00125{left:438.000000px;}
.x58_c00125{left:439.500000px;}
.x8c_c00125{left:442.500000px;}
.x4b_c00125{left:443.580000px;}
.x40_c00125{left:453.000000px;}
.x7a_c00125{left:460.080000px;}
.xa_c00125{left:462.420000px;}
.x25_c00125{left:464.580000px;}
.x18_c00125{left:469.500000px;}
.x33_c00125{left:475.500000px;}
.x8d_c00125{left:477.000000px;}
.x4c_c00125{left:488.580000px;}
.x52_c00125{left:493.080000px;}
.x19_c00125{left:496.500000px;}
.x80_c00125{left:498.000000px;}
.x7b_c00125{left:501.420000px;}
.x26_c00125{left:508.500000px;}
.x41_c00125{left:509.580000px;}
.x59_c00125{left:513.420000px;}
.x71_c00125{left:516.000000px;}
.x69_c00125{left:523.080000px;}
.x27_c00125{left:526.500000px;}
.x81_c00125{left:531.000000px;}
.x86_c00125{left:532.080000px;}
.xb_c00125{left:534.000000px;}
.x1a_c00125{left:538.500000px;}
.x34_c00125{left:541.080000px;}
.x1b_c00125{left:553.500000px;}
.xc_c00125{left:555.420000px;}
.x28_c00125{left:562.500000px;}
.x62_c00125{left:565.500000px;}
.x42_c00125{left:566.775000px;}
.x72_c00125{left:570.000000px;}
.x53_c00125{left:574.080000px;}
.xd_c00125{left:581.580000px;}
.x35_c00125{left:586.500000px;}
.x87_c00125{left:587.580000px;}
.x6a_c00125{left:592.080000px;}
.x43_c00125{left:595.500000px;}
.x82_c00125{left:601.920000px;}
.x63_c00125{left:603.000000px;}
.x36_c00125{left:604.920000px;}
.x73_c00125{left:609.000000px;}
.x88_c00125{left:612.420000px;}
.x7c_c00125{left:618.420000px;}
.x29_c00125{left:620.580000px;}
.xe_c00125{left:622.500000px;}
.x1c_c00125{left:624.000000px;}
.x5a_c00125{left:628.500000px;}
.x37_c00125{left:639.000000px;}
.x64_c00125{left:648.000000px;}
.x2a_c00125{left:649.500000px;}
.x6b_c00125{left:650.580000px;}
.xf_c00125{left:656.580000px;}
.x89_c00125{left:658.500000px;}
.x54_c00125{left:660.000000px;}
.x1d_c00125{left:661.500000px;}
.x65_c00125{left:670.920000px;}
.x84_c00125{left:676.500000px;}
.x7d_c00125{left:678.420000px;}
.x44_c00125{left:681.420000px;}
.x2b_c00125{left:685.920000px;}
.x10_c00125{left:687.420000px;}
.x38_c00125{left:691.080000px;}
.x66_c00125{left:697.500000px;}
.x6c_c00125{left:702.000000px;}
.x39_c00125{left:709.920000px;}
.x5b_c00125{left:716.580000px;}
.x45_c00125{left:720.000000px;}
@media print{
.v0_c00125{vertical-align:0.000000pt;}
.ls0_c00125{letter-spacing:0.000000pt;}
.ws0_c00125{word-spacing:-1.555023pt;}
.ws1_c00125{word-spacing:0.000000pt;}
.fs6_c00125{font-size:12.106667pt;}
.fs5_c00125{font-size:16.640000pt;}
.fs1_c00125{font-size:18.133333pt;}
.fs4_c00125{font-size:22.666667pt;}
.fs2_c00125{font-size:25.706667pt;}
.fs3_c00125{font-size:28.746667pt;}
.fs0_c00125{font-size:31.733333pt;}
.y0_c00125{bottom:0.000000pt;}
.y4d_c00125{bottom:222.066667pt;}
.y4f_c00125{bottom:223.026667pt;}
.y4e_c00125{bottom:223.226667pt;}
.y48_c00125{bottom:223.973333pt;}
.y4b_c00125{bottom:234.066667pt;}
.y4a_c00125{bottom:234.640000pt;}
.y46_c00125{bottom:235.400000pt;}
.y42_c00125{bottom:235.973333pt;}
.y4c_c00125{bottom:236.173333pt;}
.y47_c00125{bottom:237.306667pt;}
.y49_c00125{bottom:237.506667pt;}
.y3c_c00125{bottom:247.600000pt;}
.y3b_c00125{bottom:248.360000pt;}
.y40_c00125{bottom:248.733333pt;}
.y45_c00125{bottom:248.933333pt;}
.y3a_c00125{bottom:249.506667pt;}
.y43_c00125{bottom:249.693333pt;}
.y44_c00125{bottom:249.893333pt;}
.y39_c00125{bottom:250.266667pt;}
.y41_c00125{bottom:250.640000pt;}
.y33_c00125{bottom:260.933333pt;}
.y32_c00125{bottom:261.693333pt;}
.y31_c00125{bottom:261.893333pt;}
.y37_c00125{bottom:262.066667pt;}
.y3f_c00125{bottom:263.026667pt;}
.y3e_c00125{bottom:263.226667pt;}
.y38_c00125{bottom:263.973333pt;}
.y3d_c00125{bottom:264.933333pt;}
.y34_c00125{bottom:274.066667pt;}
.y36_c00125{bottom:274.266667pt;}
.y35_c00125{bottom:275.226667pt;}
.y2d_c00125{bottom:275.400000pt;}
.y2c_c00125{bottom:276.360000pt;}
.y2e_c00125{bottom:276.560000pt;}
.y2f_c00125{bottom:277.306667pt;}
.y30_c00125{bottom:278.266667pt;}
.y2b_c00125{bottom:801.106667pt;}
.y28_c00125{bottom:803.026667pt;}
.y29_c00125{bottom:803.226667pt;}
.y2a_c00125{bottom:803.973333pt;}
.y24_c00125{bottom:818.440000pt;}
.y26_c00125{bottom:819.973333pt;}
.y25_c00125{bottom:820.360000pt;}
.y27_c00125{bottom:821.693333pt;}
.y20_c00125{bottom:835.773333pt;}
.y22_c00125{bottom:837.106667pt;}
.y1f_c00125{bottom:837.693333pt;}
.y23_c00125{bottom:837.893333pt;}
.y21_c00125{bottom:838.640000pt;}
.y1b_c00125{bottom:853.106667pt;}
.y1c_c00125{bottom:854.066667pt;}
.y1e_c00125{bottom:855.026667pt;}
.y1d_c00125{bottom:855.226667pt;}
.y18_c00125{bottom:870.440000pt;}
.y17_c00125{bottom:872.360000pt;}
.y19_c00125{bottom:872.560000pt;}
.y1a_c00125{bottom:873.306667pt;}
.y13_c00125{bottom:887.773333pt;}
.y14_c00125{bottom:889.106667pt;}
.y12_c00125{bottom:889.693333pt;}
.y16_c00125{bottom:889.893333pt;}
.y15_c00125{bottom:890.640000pt;}
.y10_c00125{bottom:904.360000pt;}
.yd_c00125{bottom:905.106667pt;}
.yf_c00125{bottom:907.026667pt;}
.ye_c00125{bottom:907.226667pt;}
.y11_c00125{bottom:907.973333pt;}
.y8_c00125{bottom:922.440000pt;}
.yb_c00125{bottom:923.773333pt;}
.y9_c00125{bottom:924.360000pt;}
.ya_c00125{bottom:925.306667pt;}
.yc_c00125{bottom:925.693333pt;}
.y3_c00125{bottom:939.026667pt;}
.y7_c00125{bottom:941.893333pt;}
.y4_c00125{bottom:942.066667pt;}
.y6_c00125{bottom:942.640000pt;}
.y5_c00125{bottom:943.026667pt;}
.y1_c00125{bottom:975.773333pt;}
.y2_c00125{bottom:976.933333pt;}
.h7_c00125{height:14.890964pt;}
.h6_c00125{height:20.466875pt;}
.h2_c00125{height:22.303646pt;}
.h5_c00125{height:27.879557pt;}
.h3_c00125{height:31.618698pt;}
.h4_c00125{height:35.357839pt;}
.h1_c00125{height:39.031380pt;}
.h0_c00125{height:1186.666667pt;}
.w0_c00125{width:782.666667pt;}
.x0_c00125{left:0.000000pt;}
.x1_c00125{left:134.666667pt;}
.x3_c00125{left:136.000000pt;}
.x4d_c00125{left:150.293333pt;}
.x1e_c00125{left:156.000000pt;}
.x11_c00125{left:159.040000pt;}
.x5c_c00125{left:161.706667pt;}
.x1f_c00125{left:166.666667pt;}
.x74_c00125{left:168.960000pt;}
.x2c_c00125{left:172.000000pt;}
.x4_c00125{left:176.000000pt;}
.x12_c00125{left:182.666667pt;}
.x3a_c00125{left:185.333333pt;}
.x46_c00125{left:187.426667pt;}
.x8a_c00125{left:188.960000pt;}
.x75_c00125{left:191.040000pt;}
.x6d_c00125{left:194.666667pt;}
.x6e_c00125{left:200.000000pt;}
.x20_c00125{left:202.666667pt;}
.x6f_c00125{left:206.293333pt;}
.x4e_c00125{left:211.626667pt;}
.x5d_c00125{left:214.293333pt;}
.x3b_c00125{left:216.000000pt;}
.x2d_c00125{left:220.000000pt;}
.x13_c00125{left:224.960000pt;}
.x5_c00125{left:229.333333pt;}
.x8b_c00125{left:230.293333pt;}
.x76_c00125{left:236.373333pt;}
.x55_c00125{left:237.706667pt;}
.x47_c00125{left:238.666667pt;}
.x4f_c00125{left:241.133333pt;}
.x21_c00125{left:243.626667pt;}
.x14_c00125{left:252.000000pt;}
.x2e_c00125{left:263.040000pt;}
.x5e_c00125{left:266.666667pt;}
.x3c_c00125{left:272.960000pt;}
.x70_c00125{left:274.666667pt;}
.x15_c00125{left:276.373333pt;}
.x6_c00125{left:284.000000pt;}
.x22_c00125{left:285.333333pt;}
.x56_c00125{left:290.293333pt;}
.x5f_c00125{left:291.626667pt;}
.x7e_c00125{left:300.000000pt;}
.x60_c00125{left:308.000000pt;}
.x16_c00125{left:309.333333pt;}
.x50_c00125{left:312.000000pt;}
.x85_c00125{left:313.706667pt;}
.x3d_c00125{left:314.666667pt;}
.x2f_c00125{left:316.960000pt;}
.x77_c00125{left:318.666667pt;}
.x67_c00125{left:321.333333pt;}
.x48_c00125{left:325.333333pt;}
.x30_c00125{left:332.373333pt;}
.x61_c00125{left:333.333333pt;}
.x23_c00125{left:334.666667pt;}
.x3e_c00125{left:340.373333pt;}
.x68_c00125{left:341.706667pt;}
.x49_c00125{left:345.706667pt;}
.x51_c00125{left:346.666667pt;}
.x7_c00125{left:347.626667pt;}
.x17_c00125{left:353.333333pt;}
.x57_c00125{left:354.666667pt;}
.x2_c00125{left:356.000000pt;}
.x31_c00125{left:357.706667pt;}
.x78_c00125{left:358.666667pt;}
.x24_c00125{left:367.040000pt;}
.x4a_c00125{left:369.333333pt;}
.x7f_c00125{left:370.293333pt;}
.x8_c00125{left:371.626667pt;}
.x3f_c00125{left:374.293333pt;}
.x83_c00125{left:377.333333pt;}
.x32_c00125{left:385.333333pt;}
.x9_c00125{left:388.373333pt;}
.x79_c00125{left:389.333333pt;}
.x58_c00125{left:390.666667pt;}
.x8c_c00125{left:393.333333pt;}
.x4b_c00125{left:394.293333pt;}
.x40_c00125{left:402.666667pt;}
.x7a_c00125{left:408.960000pt;}
.xa_c00125{left:411.040000pt;}
.x25_c00125{left:412.960000pt;}
.x18_c00125{left:417.333333pt;}
.x33_c00125{left:422.666667pt;}
.x8d_c00125{left:424.000000pt;}
.x4c_c00125{left:434.293333pt;}
.x52_c00125{left:438.293333pt;}
.x19_c00125{left:441.333333pt;}
.x80_c00125{left:442.666667pt;}
.x7b_c00125{left:445.706667pt;}
.x26_c00125{left:452.000000pt;}
.x41_c00125{left:452.960000pt;}
.x59_c00125{left:456.373333pt;}
.x71_c00125{left:458.666667pt;}
.x69_c00125{left:464.960000pt;}
.x27_c00125{left:468.000000pt;}
.x81_c00125{left:472.000000pt;}
.x86_c00125{left:472.960000pt;}
.xb_c00125{left:474.666667pt;}
.x1a_c00125{left:478.666667pt;}
.x34_c00125{left:480.960000pt;}
.x1b_c00125{left:492.000000pt;}
.xc_c00125{left:493.706667pt;}
.x28_c00125{left:500.000000pt;}
.x62_c00125{left:502.666667pt;}
.x42_c00125{left:503.800000pt;}
.x72_c00125{left:506.666667pt;}
.x53_c00125{left:510.293333pt;}
.xd_c00125{left:516.960000pt;}
.x35_c00125{left:521.333333pt;}
.x87_c00125{left:522.293333pt;}
.x6a_c00125{left:526.293333pt;}
.x43_c00125{left:529.333333pt;}
.x82_c00125{left:535.040000pt;}
.x63_c00125{left:536.000000pt;}
.x36_c00125{left:537.706667pt;}
.x73_c00125{left:541.333333pt;}
.x88_c00125{left:544.373333pt;}
.x7c_c00125{left:549.706667pt;}
.x29_c00125{left:551.626667pt;}
.xe_c00125{left:553.333333pt;}
.x1c_c00125{left:554.666667pt;}
.x5a_c00125{left:558.666667pt;}
.x37_c00125{left:568.000000pt;}
.x64_c00125{left:576.000000pt;}
.x2a_c00125{left:577.333333pt;}
.x6b_c00125{left:578.293333pt;}
.xf_c00125{left:583.626667pt;}
.x89_c00125{left:585.333333pt;}
.x54_c00125{left:586.666667pt;}
.x1d_c00125{left:588.000000pt;}
.x65_c00125{left:596.373333pt;}
.x84_c00125{left:601.333333pt;}
.x7d_c00125{left:603.040000pt;}
.x44_c00125{left:605.706667pt;}
.x2b_c00125{left:609.706667pt;}
.x10_c00125{left:611.040000pt;}
.x38_c00125{left:614.293333pt;}
.x66_c00125{left:620.000000pt;}
.x6c_c00125{left:624.000000pt;}
.x39_c00125{left:631.040000pt;}
.x5b_c00125{left:636.960000pt;}
.x45_c00125{left:640.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_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_a934bee465625b3b7fbf9088.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m88_c00126{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_c00126{transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);}
.mae_c00126{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m73_c00126{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.m4e_c00126{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m60_c00126{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.me0_c00126{transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);}
.md4_c00126{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.mad_c00126{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mbf_c00126{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.md1_c00126{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m67_c00126{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m9a_c00126{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m38_c00126{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.me2_c00126{transform:matrix(0.386503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386503,0.000000,0.000000,0.250000,0,0);}
.m41_c00126{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m65_c00126{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mce_c00126{transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);}
.m86_c00126{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m8d_c00126{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m42_c00126{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.maa_c00126{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.mf3_c00126{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m75_c00126{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m105_c00126{transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);}
.mee_c00126{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.mf5_c00126{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m7c_c00126{transform:matrix(0.403989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403989,0.000000,0.000000,0.250000,0,0);}
.m18_c00126{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m84_c00126{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m6_c00126{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m33_c00126{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m35_c00126{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m7d_c00126{transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);}
.m8b_c00126{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m6b_c00126{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.mda_c00126{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m40_c00126{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.mfe_c00126{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m82_c00126{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m107_c00126{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m77_c00126{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m45_c00126{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mc_c00126{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.mdb_c00126{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m31_c00126{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m14_c00126{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m4f_c00126{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m50_c00126{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.mf_c00126{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m7f_c00126{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m27_c00126{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m3c_c00126{transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);}
.m63_c00126{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m2a_c00126{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m3a_c00126{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m87_c00126{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.mef_c00126{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.mdc_c00126{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m9f_c00126{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.ma4_c00126{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.mb7_c00126{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m37_c00126{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m9_c00126{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m7a_c00126{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m48_c00126{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.me7_c00126{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m6e_c00126{transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);}
.m80_c00126{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m106_c00126{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m85_c00126{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.mb4_c00126{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m7e_c00126{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m24_c00126{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m30_c00126{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.mf6_c00126{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.mc0_c00126{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.mde_c00126{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m3f_c00126{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.me4_c00126{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m9e_c00126{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m102_c00126{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m23_c00126{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.mc6_c00126{transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);}
.m5f_c00126{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mac_c00126{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m29_c00126{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.mb2_c00126{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m4d_c00126{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.mfc_c00126{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.md2_c00126{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.me5_c00126{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m81_c00126{transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);}
.m44_c00126{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mf8_c00126{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m9c_c00126{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m12_c00126{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m66_c00126{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.ma8_c00126{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mea_c00126{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m54_c00126{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m101_c00126{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m78_c00126{transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);}
.meb_c00126{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m79_c00126{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m22_c00126{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m71_c00126{transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);}
.m1e_c00126{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.mcf_c00126{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m7_c00126{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.m21_c00126{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00126{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m59_c00126{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.mc9_c00126{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.mb9_c00126{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.m1b_c00126{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m6c_c00126{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.mbd_c00126{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m58_c00126{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.m51_c00126{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m5d_c00126{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.mec_c00126{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.m34_c00126{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m49_c00126{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m70_c00126{transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);}
.me9_c00126{transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);}
.m2b_c00126{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.md5_c00126{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.mab_c00126{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mf0_c00126{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m8c_c00126{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m1_c00126{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m62_c00126{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m52_c00126{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.mba_c00126{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m11_c00126{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mc2_c00126{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m10_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);}
.m57_c00126{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m100_c00126{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m25_c00126{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.m39_c00126{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mcb_c00126{transform:matrix(0.506471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506471,0.000000,0.000000,0.250000,0,0);}
.md8_c00126{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m99_c00126{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m64_c00126{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.md7_c00126{transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);}
.md9_c00126{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.mf7_c00126{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m2c_c00126{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m4_c00126{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mc3_c00126{transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);}
.m103_c00126{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m5a_c00126{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m104_c00126{transform:matrix(0.522263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522263,0.000000,0.000000,0.250000,0,0);}
.ma2_c00126{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m68_c00126{transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);}
.m9d_c00126{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.ma5_c00126{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m1a_c00126{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.ma9_c00126{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m8_c00126{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m96_c00126{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mdd_c00126{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m98_c00126{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.mf9_c00126{transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);}
.m83_c00126{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m5e_c00126{transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);}
.md_c00126{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m92_c00126{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.mf2_c00126{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.ma7_c00126{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m4a_c00126{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m3d_c00126{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mc1_c00126{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m46_c00126{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.ma1_c00126{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mfd_c00126{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m89_c00126{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m91_c00126{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mf4_c00126{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m2f_c00126{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m3e_c00126{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.me_c00126{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mcc_c00126{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m93_c00126{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m108_c00126{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.ma6_c00126{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m32_c00126{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m94_c00126{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mf1_c00126{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mb8_c00126{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m8e_c00126{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.mb1_c00126{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m19_c00126{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);}
.me1_c00126{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m9b_c00126{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.m7b_c00126{transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);}
.m8f_c00126{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.ma_c00126{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mbc_c00126{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.me8_c00126{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m26_c00126{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m36_c00126{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m72_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);}
.m15_c00126{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m16_c00126{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.me6_c00126{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m97_c00126{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mcd_c00126{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m43_c00126{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m76_c00126{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.mc8_c00126{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.ma0_c00126{transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);}
.mb0_c00126{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.m4b_c00126{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.mb_c00126{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.md3_c00126{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.med_c00126{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m95_c00126{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.mb3_c00126{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.mb6_c00126{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.mc4_c00126{transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);}
.m5_c00126{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m5c_c00126{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);}
.mfa_c00126{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m0_c00126{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.mfb_c00126{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m13_c00126{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m1c_c00126{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_c00126{transform:matrix(0.628824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628824,0.000000,0.000000,0.250000,0,0);}
.mc5_c00126{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m74_c00126{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m17_c00126{transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);}
.mc7_c00126{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m6f_c00126{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.m3b_c00126{transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);}
.mbe_c00126{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m1d_c00126{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.mdf_c00126{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m2_c00126{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mbb_c00126{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m6a_c00126{transform:matrix(0.691765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.691765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.691765,0.000000,0.000000,0.250000,0,0);}
.m4c_c00126{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.md0_c00126{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.md6_c00126{transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);}
.m69_c00126{transform:matrix(0.711176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.711176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.711176,0.000000,0.000000,0.250000,0,0);}
.m6d_c00126{transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);}
.me3_c00126{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m90_c00126{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m8a_c00126{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m53_c00126{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m20_c00126{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.ma3_c00126{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m61_c00126{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.maf_c00126{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m2d_c00126{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.mff_c00126{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m47_c00126{transform:matrix(0.812941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812941,0.000000,0.000000,0.250000,0,0);}
.m3_c00126{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m55_c00126{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.mca_c00126{transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);}
.m28_c00126{transform:matrix(0.958824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.958824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.958824,0.000000,0.000000,0.250000,0,0);}
.m5b_c00126{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m2e_c00126{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00126{vertical-align:-12.000000px;}
.v0_c00126{vertical-align:0.000000px;}
.ls0_c00126{letter-spacing:0.000000px;}
.sc__c00126{text-shadow:none;}
.sc0_c00126{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00126{-webkit-text-stroke:0px transparent;}
.sc0_c00126{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00126{word-spacing:-14.892000px;}
.ws2_c00126{word-spacing:-8.988101px;}
.ws0_c00126{word-spacing:-8.924521px;}
.ws3_c00126{word-spacing:0.000000px;}
._0_c00126{width:6.021000px;}
.fc0_c00126{color:transparent;}
.fs6_c00126{font-size:3.420000px;}
.fs7_c00126{font-size:11.880000px;}
.fs9_c00126{font-size:13.620000px;}
.fs3_c00126{font-size:18.720000px;}
.fs0_c00126{font-size:20.400000px;}
.fs2_c00126{font-size:25.500000px;}
.fs1_c00126{font-size:28.920000px;}
.fs5_c00126{font-size:32.340000px;}
.fs4_c00126{font-size:35.700000px;}
.fs8_c00126{font-size:39.120000px;}
.y0_c00126{bottom:0.000000px;}
.ye4_c00126{bottom:254.745000px;}
.ye6_c00126{bottom:255.630000px;}
.ye3_c00126{bottom:255.825000px;}
.ye5_c00126{bottom:256.470000px;}
.ye2_c00126{bottom:256.905000px;}
.ye1_c00126{bottom:257.325000px;}
.ydd_c00126{bottom:274.245000px;}
.yde_c00126{bottom:275.130000px;}
.ye0_c00126{bottom:275.325000px;}
.ydf_c00126{bottom:276.405000px;}
.ydc_c00126{bottom:293.745000px;}
.yda_c00126{bottom:294.825000px;}
.yd9_c00126{bottom:295.905000px;}
.ydb_c00126{bottom:296.970000px;}
.yd8_c00126{bottom:313.245000px;}
.yd7_c00126{bottom:314.325000px;}
.yd6_c00126{bottom:315.405000px;}
.yd5_c00126{bottom:316.470000px;}
.yd4_c00126{bottom:332.745000px;}
.yd2_c00126{bottom:333.825000px;}
.yd0_c00126{bottom:334.245000px;}
.yd3_c00126{bottom:334.905000px;}
.yd1_c00126{bottom:336.405000px;}
.ycf_c00126{bottom:352.245000px;}
.ycd_c00126{bottom:352.470000px;}
.ycc_c00126{bottom:353.745000px;}
.yce_c00126{bottom:354.630000px;}
.ycb_c00126{bottom:355.905000px;}
.yc9_c00126{bottom:372.825000px;}
.yc8_c00126{bottom:373.050000px;}
.yc7_c00126{bottom:373.245000px;}
.yca_c00126{bottom:373.905000px;}
.yc6_c00126{bottom:374.130000px;}
.yc5_c00126{bottom:374.325000px;}
.yc4_c00126{bottom:375.405000px;}
.ybd_c00126{bottom:391.680000px;}
.ybf_c00126{bottom:391.905000px;}
.yc3_c00126{bottom:392.325000px;}
.yc1_c00126{bottom:392.745000px;}
.yc2_c00126{bottom:393.405000px;}
.yc0_c00126{bottom:393.630000px;}
.ybe_c00126{bottom:394.905000px;}
.yb9_c00126{bottom:410.325000px;}
.ybb_c00126{bottom:410.970000px;}
.yb6_c00126{bottom:412.245000px;}
.ybc_c00126{bottom:413.130000px;}
.yba_c00126{bottom:413.970000px;}
.yb8_c00126{bottom:414.405000px;}
.yb7_c00126{bottom:414.420000px;}
.yb5_c00126{bottom:443.325000px;}
.yb3_c00126{bottom:444.405000px;}
.yb4_c00126{bottom:445.470000px;}
.yb2_c00126{bottom:457.470000px;}
.yaf_c00126{bottom:458.325000px;}
.yb0_c00126{bottom:458.550000px;}
.yad_c00126{bottom:459.405000px;}
.yac_c00126{bottom:459.630000px;}
.yae_c00126{bottom:460.470000px;}
.yb1_c00126{bottom:461.550000px;}
.yab_c00126{bottom:473.325000px;}
.ya8_c00126{bottom:487.470000px;}
.ya5_c00126{bottom:488.325000px;}
.ya4_c00126{bottom:488.550000px;}
.ya7_c00126{bottom:489.405000px;}
.ya6_c00126{bottom:489.630000px;}
.yaa_c00126{bottom:490.470000px;}
.ya9_c00126{bottom:490.695000px;}
.ya3_c00126{bottom:491.550000px;}
.ya0_c00126{bottom:503.325000px;}
.ya1_c00126{bottom:503.550000px;}
.ya2_c00126{bottom:503.970000px;}
.y9d_c00126{bottom:504.405000px;}
.y9c_c00126{bottom:504.630000px;}
.y9e_c00126{bottom:505.470000px;}
.y9f_c00126{bottom:506.550000px;}
.y9a_c00126{bottom:534.180000px;}
.y99_c00126{bottom:535.245000px;}
.y98_c00126{bottom:537.405000px;}
.y9b_c00126{bottom:538.470000px;}
.y96_c00126{bottom:554.745000px;}
.y97_c00126{bottom:555.630000px;}
.y93_c00126{bottom:556.905000px;}
.y94_c00126{bottom:557.130000px;}
.y95_c00126{bottom:557.970000px;}
.y90_c00126{bottom:574.245000px;}
.y92_c00126{bottom:575.745000px;}
.y91_c00126{bottom:576.405000px;}
.y8f_c00126{bottom:577.905000px;}
.y8c_c00126{bottom:595.245000px;}
.y8e_c00126{bottom:595.905000px;}
.y8d_c00126{bottom:596.130000px;}
.y8a_c00126{bottom:597.405000px;}
.y8b_c00126{bottom:597.420000px;}
.y87_c00126{bottom:614.325000px;}
.y84_c00126{bottom:614.745000px;}
.y89_c00126{bottom:615.405000px;}
.y88_c00126{bottom:615.825000px;}
.y86_c00126{bottom:616.470000px;}
.y85_c00126{bottom:616.905000px;}
.y83_c00126{bottom:631.905000px;}
.y82_c00126{bottom:632.745000px;}
.y81_c00126{bottom:634.245000px;}
.y80_c00126{bottom:636.405000px;}
.y7d_c00126{bottom:653.745000px;}
.y7f_c00126{bottom:655.470000px;}
.y7b_c00126{bottom:655.905000px;}
.y7c_c00126{bottom:655.920000px;}
.y7e_c00126{bottom:656.130000px;}
.y7a_c00126{bottom:673.245000px;}
.y79_c00126{bottom:674.745000px;}
.y76_c00126{bottom:675.405000px;}
.y77_c00126{bottom:675.630000px;}
.y78_c00126{bottom:676.920000px;}
.y72_c00126{bottom:692.745000px;}
.y74_c00126{bottom:693.825000px;}
.y75_c00126{bottom:694.245000px;}
.y73_c00126{bottom:696.420000px;}
.y6d_c00126{bottom:712.245000px;}
.y6e_c00126{bottom:713.745000px;}
.y71_c00126{bottom:714.825000px;}
.y70_c00126{bottom:715.905000px;}
.y6f_c00126{bottom:715.920000px;}
.y6c_c00126{bottom:739.905000px;}
.y6a_c00126{bottom:740.325000px;}
.y6b_c00126{bottom:740.550000px;}
.y68_c00126{bottom:741.405000px;}
.y69_c00126{bottom:742.470000px;}
.y67_c00126{bottom:759.825000px;}
.y66_c00126{bottom:760.050000px;}
.y63_c00126{bottom:760.905000px;}
.y65_c00126{bottom:761.130000px;}
.y64_c00126{bottom:763.050000px;}
.y61_c00126{bottom:785.745000px;}
.y5f_c00126{bottom:786.825000px;}
.y62_c00126{bottom:787.245000px;}
.y60_c00126{bottom:788.970000px;}
.y5e_c00126{bottom:825.405000px;}
.y5c_c00126{bottom:826.245000px;}
.y5d_c00126{bottom:828.405000px;}
.y59_c00126{bottom:845.325000px;}
.y5a_c00126{bottom:845.745000px;}
.y56_c00126{bottom:847.905000px;}
.y57_c00126{bottom:847.920000px;}
.y5b_c00126{bottom:848.130000px;}
.y58_c00126{bottom:848.970000px;}
.y52_c00126{bottom:861.630000px;}
.y53_c00126{bottom:862.275000px;}
.y55_c00126{bottom:864.405000px;}
.y4e_c00126{bottom:865.245000px;}
.y51_c00126{bottom:866.130000px;}
.y4f_c00126{bottom:866.325000px;}
.y54_c00126{bottom:867.405000px;}
.y50_c00126{bottom:868.470000px;}
.y4d_c00126{bottom:881.775000px;}
.y4b_c00126{bottom:882.405000px;}
.y4a_c00126{bottom:883.905000px;}
.y48_c00126{bottom:884.745000px;}
.y46_c00126{bottom:885.630000px;}
.y47_c00126{bottom:885.825000px;}
.y49_c00126{bottom:886.905000px;}
.y4c_c00126{bottom:890.130000px;}
.y45_c00126{bottom:903.405000px;}
.y40_c00126{bottom:903.825000px;}
.y42_c00126{bottom:904.245000px;}
.y44_c00126{bottom:904.470000px;}
.y41_c00126{bottom:905.325000px;}
.y43_c00126{bottom:906.405000px;}
.y3c_c00126{bottom:922.905000px;}
.y3e_c00126{bottom:923.745000px;}
.y3b_c00126{bottom:923.970000px;}
.y3a_c00126{bottom:924.825000px;}
.y3f_c00126{bottom:925.245000px;}
.y39_c00126{bottom:925.905000px;}
.y3d_c00126{bottom:926.325000px;}
.y35_c00126{bottom:942.405000px;}
.y38_c00126{bottom:943.470000px;}
.y37_c00126{bottom:943.905000px;}
.y36_c00126{bottom:944.745000px;}
.y31_c00126{bottom:944.970000px;}
.y32_c00126{bottom:945.405000px;}
.y34_c00126{bottom:945.825000px;}
.y33_c00126{bottom:946.905000px;}
.y29_c00126{bottom:961.905000px;}
.y2e_c00126{bottom:962.745000px;}
.y2f_c00126{bottom:962.970000px;}
.y30_c00126{bottom:963.405000px;}
.y2d_c00126{bottom:963.825000px;}
.y2c_c00126{bottom:964.905000px;}
.y2a_c00126{bottom:965.130000px;}
.y2b_c00126{bottom:966.420000px;}
.y24_c00126{bottom:981.405000px;}
.y21_c00126{bottom:982.245000px;}
.y27_c00126{bottom:982.470000px;}
.y20_c00126{bottom:983.325000px;}
.y26_c00126{bottom:983.745000px;}
.y22_c00126{bottom:983.970000px;}
.y28_c00126{bottom:984.405000px;}
.y23_c00126{bottom:984.825000px;}
.y25_c00126{bottom:985.905000px;}
.y1c_c00126{bottom:1000.905000px;}
.y1e_c00126{bottom:1001.325000px;}
.y15_c00126{bottom:1001.970000px;}
.y17_c00126{bottom:1002.405000px;}
.y1d_c00126{bottom:1002.825000px;}
.y1a_c00126{bottom:1003.050000px;}
.y14_c00126{bottom:1003.245000px;}
.y18_c00126{bottom:1003.470000px;}
.y1f_c00126{bottom:1004.130000px;}
.y19_c00126{bottom:1004.325000px;}
.y1b_c00126{bottom:1004.550000px;}
.y16_c00126{bottom:1005.405000px;}
.yf_c00126{bottom:1021.905000px;}
.y11_c00126{bottom:1022.745000px;}
.y12_c00126{bottom:1022.970000px;}
.y13_c00126{bottom:1023.405000px;}
.y10_c00126{bottom:1024.905000px;}
.yc_c00126{bottom:1041.405000px;}
.yb_c00126{bottom:1042.245000px;}
.yd_c00126{bottom:1043.325000px;}
.ya_c00126{bottom:1044.405000px;}
.ye_c00126{bottom:1045.470000px;}
.y7_c00126{bottom:1060.470000px;}
.y6_c00126{bottom:1060.905000px;}
.y8_c00126{bottom:1061.745000px;}
.y5_c00126{bottom:1062.630000px;}
.y9_c00126{bottom:1062.825000px;}
.y3_c00126{bottom:1063.470000px;}
.y4_c00126{bottom:1063.905000px;}
.y2_c00126{bottom:1099.905000px;}
.y1_c00126{bottom:1102.050000px;}
.h7_c00126{height:4.206533px;}
.h8_c00126{height:14.612168px;}
.ha_c00126{height:16.752334px;}
.h4_c00126{height:23.025234px;}
.h1_c00126{height:25.091602px;}
.h3_c00126{height:31.364502px;}
.h2_c00126{height:35.571035px;}
.h6_c00126{height:39.777568px;}
.h5_c00126{height:43.910303px;}
.h9_c00126{height:48.116836px;}
.h0_c00126{height:1335.000000px;}
.w0_c00126{width:880.500000px;}
.x0_c00126{left:0.000000px;}
.xb5_c00126{left:151.080000px;}
.x3_c00126{left:153.000000px;}
.x45_c00126{left:166.500000px;}
.x99_c00126{left:167.580000px;}
.x7d_c00126{left:168.645000px;}
.x4_c00126{left:170.580000px;}
.x4c_c00126{left:172.920000px;}
.x85_c00126{left:177.000000px;}
.xca_c00126{left:180.420000px;}
.x1c_c00126{left:183.420000px;}
.x11_c00126{left:184.500000px;}
.x35_c00126{left:186.420000px;}
.xcb_c00126{left:193.500000px;}
.x55_c00126{left:195.000000px;}
.x68_c00126{left:198.420000px;}
.x46_c00126{left:199.500000px;}
.xf7_c00126{left:201.000000px;}
.xe1_c00126{left:207.420000px;}
.x95_c00126{left:210.420000px;}
.x5_c00126{left:211.500000px;}
.x72_c00126{left:214.500000px;}
.x27_c00126{left:217.920000px;}
.x1d_c00126{left:220.500000px;}
.xe6_c00126{left:222.420000px;}
.xb6_c00126{left:223.500000px;}
.x60_c00126{left:225.000000px;}
.x4d_c00126{left:231.000000px;}
.xdc_c00126{left:232.080000px;}
.x86_c00126{left:233.580000px;}
.xd3_c00126{left:236.580000px;}
.x36_c00126{left:238.500000px;}
.x6_c00126{left:241.080000px;}
.x28_c00126{left:243.000000px;}
.xf8_c00126{left:244.920000px;}
.x8c_c00126{left:246.000000px;}
.xb7_c00126{left:247.080000px;}
.x12_c00126{left:249.420000px;}
.xe7_c00126{left:250.920000px;}
.xf0_c00126{left:252.420000px;}
.x69_c00126{left:253.500000px;}
.x37_c00126{left:256.500000px;}
.x56_c00126{left:258.420000px;}
.x7e_c00126{left:259.500000px;}
.xbf_c00126{left:260.580000px;}
.x89_c00126{left:262.080000px;}
.xd4_c00126{left:265.500000px;}
.x47_c00126{left:267.420000px;}
.x7_c00126{left:271.080000px;}
.x13_c00126{left:273.000000px;}
.xe2_c00126{left:274.920000px;}
.xa1_c00126{left:276.000000px;}
.xd5_c00126{left:277.080000px;}
.xf1_c00126{left:279.000000px;}
.x87_c00126{left:280.080000px;}
.x6a_c00126{left:282.000000px;}
.x9a_c00126{left:283.500000px;}
.x4e_c00126{left:285.420000px;}
.xaa_c00126{left:286.500000px;}
.x1e_c00126{left:288.420000px;}
.x7f_c00126{left:289.500000px;}
.x8_c00126{left:291.000000px;}
.x29_c00126{left:292.500000px;}
.x96_c00126{left:294.000000px;}
.x57_c00126{left:295.920000px;}
.xcc_c00126{left:297.000000px;}
.xd1_c00126{left:300.000000px;}
.xe8_c00126{left:301.080000px;}
.x88_c00126{left:306.000000px;}
.xb8_c00126{left:307.080000px;}
.xa2_c00126{left:309.000000px;}
.xc4_c00126{left:310.500000px;}
.x6b_c00126{left:312.000000px;}
.x9b_c00126{left:313.500000px;}
.xfd_c00126{left:315.000000px;}
.x61_c00126{left:316.500000px;}
.x1f_c00126{left:318.000000px;}
.x38_c00126{left:319.920000px;}
.xe9_c00126{left:321.420000px;}
.x14_c00126{left:322.500000px;}
.x4f_c00126{left:323.775000px;}
.x9_c00126{left:325.080000px;}
.x98_c00126{left:328.080000px;}
.x58_c00126{left:332.580000px;}
.x73_c00126{left:334.920000px;}
.x39_c00126{left:343.500000px;}
.xc5_c00126{left:345.000000px;}
.x97_c00126{left:347.775000px;}
.x91_c00126{left:349.920000px;}
.xb9_c00126{left:354.000000px;}
.xd6_c00126{left:355.920000px;}
.x2a_c00126{left:357.420000px;}
.x74_c00126{left:358.500000px;}
.x3a_c00126{left:361.500000px;}
.xec_c00126{left:363.000000px;}
.x75_c00126{left:364.080000px;}
.x9c_c00126{left:366.000000px;}
.xfe_c00126{left:367.080000px;}
.x101_c00126{left:369.000000px;}
.xae_c00126{left:370.500000px;}
.x20_c00126{left:372.000000px;}
.x76_c00126{left:373.500000px;}
.x8a_c00126{left:375.420000px;}
.xa3_c00126{left:378.000000px;}
.x3b_c00126{left:379.500000px;}
.x62_c00126{left:381.420000px;}
.xea_c00126{left:384.000000px;}
.x92_c00126{left:385.500000px;}
.x15_c00126{left:387.000000px;}
.x59_c00126{left:389.580000px;}
.x2b_c00126{left:394.080000px;}
.x1_c00126{left:400.500000px;}
.x6c_c00126{left:402.000000px;}
.x77_c00126{left:403.500000px;}
.x8d_c00126{left:405.000000px;}
.x5a_c00126{left:406.500000px;}
.xcd_c00126{left:407.580000px;}
.x16_c00126{left:411.420000px;}
.xa_c00126{left:415.080000px;}
.xf9_c00126{left:417.420000px;}
.x63_c00126{left:418.500000px;}
.xc0_c00126{left:420.000000px;}
.x3c_c00126{left:421.080000px;}
.x2c_c00126{left:423.420000px;}
.xc6_c00126{left:424.920000px;}
.xba_c00126{left:428.355000px;}
.xf2_c00126{left:430.920000px;}
.x93_c00126{left:432.420000px;}
.xc1_c00126{left:433.920000px;}
.x78_c00126{left:435.420000px;}
.x21_c00126{left:441.420000px;}
.xed_c00126{left:442.500000px;}
.x8b_c00126{left:444.420000px;}
.x3d_c00126{left:448.500000px;}
.x17_c00126{left:450.000000px;}
.xa4_c00126{left:453.000000px;}
.x48_c00126{left:454.500000px;}
.x6d_c00126{left:456.000000px;}
.x64_c00126{left:457.500000px;}
.xaf_c00126{left:460.500000px;}
.xab_c00126{left:465.000000px;}
.xf3_c00126{left:466.920000px;}
.x22_c00126{left:471.420000px;}
.x2d_c00126{left:474.000000px;}
.xd7_c00126{left:475.920000px;}
.xee_c00126{left:478.920000px;}
.x5b_c00126{left:480.000000px;}
.xb_c00126{left:481.500000px;}
.x79_c00126{left:482.580000px;}
.x3e_c00126{left:484.920000px;}
.xbb_c00126{left:487.080000px;}
.xe3_c00126{left:488.355000px;}
.x2e_c00126{left:490.500000px;}
.x50_c00126{left:492.420000px;}
.xce_c00126{left:493.500000px;}
.xb0_c00126{left:494.580000px;}
.xd2_c00126{left:498.420000px;}
.xff_c00126{left:499.500000px;}
.x7a_c00126{left:501.420000px;}
.xdd_c00126{left:504.000000px;}
.xc7_c00126{left:505.080000px;}
.xe4_c00126{left:507.000000px;}
.x80_c00126{left:508.920000px;}
.x5c_c00126{left:510.000000px;}
.x18_c00126{left:514.920000px;}
.xd8_c00126{left:516.000000px;}
.xc_c00126{left:520.920000px;}
.x3f_c00126{left:522.000000px;}
.x102_c00126{left:525.420000px;}
.xcf_c00126{left:528.420000px;}
.xf4_c00126{left:529.920000px;}
.x51_c00126{left:531.000000px;}
.x81_c00126{left:535.500000px;}
.xbc_c00126{left:537.000000px;}
.x19_c00126{left:538.920000px;}
.xa5_c00126{left:541.500000px;}
.xac_c00126{left:543.000000px;}
.x23_c00126{left:544.920000px;}
.x40_c00126{left:547.500000px;}
.x9d_c00126{left:548.580000px;}
.x94_c00126{left:551.580000px;}
.x2f_c00126{left:553.920000px;}
.xef_c00126{left:558.000000px;}
.xb1_c00126{left:562.920000px;}
.x8e_c00126{left:564.420000px;}
.xf5_c00126{left:565.500000px;}
.xd_c00126{left:566.580000px;}
.xbd_c00126{left:573.000000px;}
.x6e_c00126{left:574.500000px;}
.x30_c00126{left:576.000000px;}
.x9e_c00126{left:579.000000px;}
.x24_c00126{left:582.000000px;}
.xe_c00126{left:583.920000px;}
.x5d_c00126{left:586.080000px;}
.x82_c00126{left:589.500000px;}
.xb2_c00126{left:591.420000px;}
.x31_c00126{left:592.920000px;}
.xd9_c00126{left:594.000000px;}
.xd0_c00126{left:598.080000px;}
.x41_c00126{left:599.355000px;}
.x49_c00126{left:601.920000px;}
.x1a_c00126{left:603.420000px;}
.x5e_c00126{left:604.500000px;}
.xfa_c00126{left:606.420000px;}
.xa6_c00126{left:607.500000px;}
.xde_c00126{left:610.500000px;}
.x7b_c00126{left:613.920000px;}
.x32_c00126{left:618.000000px;}
.x100_c00126{left:619.920000px;}
.xb3_c00126{left:621.420000px;}
.xf_c00126{left:622.500000px;}
.x42_c00126{left:624.420000px;}
.x65_c00126{left:628.500000px;}
.xf6_c00126{left:630.000000px;}
.xda_c00126{left:633.000000px;}
.xeb_c00126{left:634.500000px;}
.x52_c00126{left:635.580000px;}
.xad_c00126{left:637.920000px;}
.x4a_c00126{left:639.420000px;}
.x83_c00126{left:640.500000px;}
.xa7_c00126{left:641.580000px;}
.xe5_c00126{left:643.500000px;}
.xc2_c00126{left:645.000000px;}
.x7c_c00126{left:646.500000px;}
.x1b_c00126{left:649.500000px;}
.x8f_c00126{left:652.080000px;}
.xdf_c00126{left:653.580000px;}
.x43_c00126{left:655.080000px;}
.x66_c00126{left:658.500000px;}
.xa8_c00126{left:661.920000px;}
.x53_c00126{left:664.500000px;}
.x84_c00126{left:666.420000px;}
.x33_c00126{left:669.000000px;}
.x25_c00126{left:670.500000px;}
.x90_c00126{left:672.000000px;}
.x9f_c00126{left:673.500000px;}
.x5f_c00126{left:676.500000px;}
.x4b_c00126{left:678.000000px;}
.xbe_c00126{left:679.500000px;}
.xc8_c00126{left:681.420000px;}
.x44_c00126{left:683.580000px;}
.xe0_c00126{left:687.000000px;}
.xfb_c00126{left:688.500000px;}
.x67_c00126{left:690.000000px;}
.xa9_c00126{left:691.500000px;}
.x54_c00126{left:693.000000px;}
.x6f_c00126{left:694.920000px;}
.xc9_c00126{left:696.000000px;}
.xb4_c00126{left:697.920000px;}
.x34_c00126{left:700.500000px;}
.x26_c00126{left:702.420000px;}
.xdb_c00126{left:703.500000px;}
.x10_c00126{left:706.500000px;}
.x103_c00126{left:708.000000px;}
.xfc_c00126{left:711.420000px;}
.xc3_c00126{left:712.500000px;}
.x2_c00126{left:713.580000px;}
.xa0_c00126{left:715.500000px;}
.x70_c00126{left:720.000000px;}
.x71_c00126{left:725.580000px;}
@media print{
.v1_c00126{vertical-align:-10.666667pt;}
.v0_c00126{vertical-align:0.000000pt;}
.ls0_c00126{letter-spacing:0.000000pt;}
.ws1_c00126{word-spacing:-13.237333pt;}
.ws2_c00126{word-spacing:-7.989423pt;}
.ws0_c00126{word-spacing:-7.932907pt;}
.ws3_c00126{word-spacing:0.000000pt;}
._0_c00126{width:5.352000pt;}
.fs6_c00126{font-size:3.040000pt;}
.fs7_c00126{font-size:10.560000pt;}
.fs9_c00126{font-size:12.106667pt;}
.fs3_c00126{font-size:16.640000pt;}
.fs0_c00126{font-size:18.133333pt;}
.fs2_c00126{font-size:22.666667pt;}
.fs1_c00126{font-size:25.706667pt;}
.fs5_c00126{font-size:28.746667pt;}
.fs4_c00126{font-size:31.733333pt;}
.fs8_c00126{font-size:34.773333pt;}
.y0_c00126{bottom:0.000000pt;}
.ye4_c00126{bottom:226.440000pt;}
.ye6_c00126{bottom:227.226667pt;}
.ye3_c00126{bottom:227.400000pt;}
.ye5_c00126{bottom:227.973333pt;}
.ye2_c00126{bottom:228.360000pt;}
.ye1_c00126{bottom:228.733333pt;}
.ydd_c00126{bottom:243.773333pt;}
.yde_c00126{bottom:244.560000pt;}
.ye0_c00126{bottom:244.733333pt;}
.ydf_c00126{bottom:245.693333pt;}
.ydc_c00126{bottom:261.106667pt;}
.yda_c00126{bottom:262.066667pt;}
.yd9_c00126{bottom:263.026667pt;}
.ydb_c00126{bottom:263.973333pt;}
.yd8_c00126{bottom:278.440000pt;}
.yd7_c00126{bottom:279.400000pt;}
.yd6_c00126{bottom:280.360000pt;}
.yd5_c00126{bottom:281.306667pt;}
.yd4_c00126{bottom:295.773333pt;}
.yd2_c00126{bottom:296.733333pt;}
.yd0_c00126{bottom:297.106667pt;}
.yd3_c00126{bottom:297.693333pt;}
.yd1_c00126{bottom:299.026667pt;}
.ycf_c00126{bottom:313.106667pt;}
.ycd_c00126{bottom:313.306667pt;}
.ycc_c00126{bottom:314.440000pt;}
.yce_c00126{bottom:315.226667pt;}
.ycb_c00126{bottom:316.360000pt;}
.yc9_c00126{bottom:331.400000pt;}
.yc8_c00126{bottom:331.600000pt;}
.yc7_c00126{bottom:331.773333pt;}
.yca_c00126{bottom:332.360000pt;}
.yc6_c00126{bottom:332.560000pt;}
.yc5_c00126{bottom:332.733333pt;}
.yc4_c00126{bottom:333.693333pt;}
.ybd_c00126{bottom:348.160000pt;}
.ybf_c00126{bottom:348.360000pt;}
.yc3_c00126{bottom:348.733333pt;}
.yc1_c00126{bottom:349.106667pt;}
.yc2_c00126{bottom:349.693333pt;}
.yc0_c00126{bottom:349.893333pt;}
.ybe_c00126{bottom:351.026667pt;}
.yb9_c00126{bottom:364.733333pt;}
.ybb_c00126{bottom:365.306667pt;}
.yb6_c00126{bottom:366.440000pt;}
.ybc_c00126{bottom:367.226667pt;}
.yba_c00126{bottom:367.973333pt;}
.yb8_c00126{bottom:368.360000pt;}
.yb7_c00126{bottom:368.373333pt;}
.yb5_c00126{bottom:394.066667pt;}
.yb3_c00126{bottom:395.026667pt;}
.yb4_c00126{bottom:395.973333pt;}
.yb2_c00126{bottom:406.640000pt;}
.yaf_c00126{bottom:407.400000pt;}
.yb0_c00126{bottom:407.600000pt;}
.yad_c00126{bottom:408.360000pt;}
.yac_c00126{bottom:408.560000pt;}
.yae_c00126{bottom:409.306667pt;}
.yb1_c00126{bottom:410.266667pt;}
.yab_c00126{bottom:420.733333pt;}
.ya8_c00126{bottom:433.306667pt;}
.ya5_c00126{bottom:434.066667pt;}
.ya4_c00126{bottom:434.266667pt;}
.ya7_c00126{bottom:435.026667pt;}
.ya6_c00126{bottom:435.226667pt;}
.yaa_c00126{bottom:435.973333pt;}
.ya9_c00126{bottom:436.173333pt;}
.ya3_c00126{bottom:436.933333pt;}
.ya0_c00126{bottom:447.400000pt;}
.ya1_c00126{bottom:447.600000pt;}
.ya2_c00126{bottom:447.973333pt;}
.y9d_c00126{bottom:448.360000pt;}
.y9c_c00126{bottom:448.560000pt;}
.y9e_c00126{bottom:449.306667pt;}
.y9f_c00126{bottom:450.266667pt;}
.y9a_c00126{bottom:474.826667pt;}
.y99_c00126{bottom:475.773333pt;}
.y98_c00126{bottom:477.693333pt;}
.y9b_c00126{bottom:478.640000pt;}
.y96_c00126{bottom:493.106667pt;}
.y97_c00126{bottom:493.893333pt;}
.y93_c00126{bottom:495.026667pt;}
.y94_c00126{bottom:495.226667pt;}
.y95_c00126{bottom:495.973333pt;}
.y90_c00126{bottom:510.440000pt;}
.y92_c00126{bottom:511.773333pt;}
.y91_c00126{bottom:512.360000pt;}
.y8f_c00126{bottom:513.693333pt;}
.y8c_c00126{bottom:529.106667pt;}
.y8e_c00126{bottom:529.693333pt;}
.y8d_c00126{bottom:529.893333pt;}
.y8a_c00126{bottom:531.026667pt;}
.y8b_c00126{bottom:531.040000pt;}
.y87_c00126{bottom:546.066667pt;}
.y84_c00126{bottom:546.440000pt;}
.y89_c00126{bottom:547.026667pt;}
.y88_c00126{bottom:547.400000pt;}
.y86_c00126{bottom:547.973333pt;}
.y85_c00126{bottom:548.360000pt;}
.y83_c00126{bottom:561.693333pt;}
.y82_c00126{bottom:562.440000pt;}
.y81_c00126{bottom:563.773333pt;}
.y80_c00126{bottom:565.693333pt;}
.y7d_c00126{bottom:581.106667pt;}
.y7f_c00126{bottom:582.640000pt;}
.y7b_c00126{bottom:583.026667pt;}
.y7c_c00126{bottom:583.040000pt;}
.y7e_c00126{bottom:583.226667pt;}
.y7a_c00126{bottom:598.440000pt;}
.y79_c00126{bottom:599.773333pt;}
.y76_c00126{bottom:600.360000pt;}
.y77_c00126{bottom:600.560000pt;}
.y78_c00126{bottom:601.706667pt;}
.y72_c00126{bottom:615.773333pt;}
.y74_c00126{bottom:616.733333pt;}
.y75_c00126{bottom:617.106667pt;}
.y73_c00126{bottom:619.040000pt;}
.y6d_c00126{bottom:633.106667pt;}
.y6e_c00126{bottom:634.440000pt;}
.y71_c00126{bottom:635.400000pt;}
.y70_c00126{bottom:636.360000pt;}
.y6f_c00126{bottom:636.373333pt;}
.y6c_c00126{bottom:657.693333pt;}
.y6a_c00126{bottom:658.066667pt;}
.y6b_c00126{bottom:658.266667pt;}
.y68_c00126{bottom:659.026667pt;}
.y69_c00126{bottom:659.973333pt;}
.y67_c00126{bottom:675.400000pt;}
.y66_c00126{bottom:675.600000pt;}
.y63_c00126{bottom:676.360000pt;}
.y65_c00126{bottom:676.560000pt;}
.y64_c00126{bottom:678.266667pt;}
.y61_c00126{bottom:698.440000pt;}
.y5f_c00126{bottom:699.400000pt;}
.y62_c00126{bottom:699.773333pt;}
.y60_c00126{bottom:701.306667pt;}
.y5e_c00126{bottom:733.693333pt;}
.y5c_c00126{bottom:734.440000pt;}
.y5d_c00126{bottom:736.360000pt;}
.y59_c00126{bottom:751.400000pt;}
.y5a_c00126{bottom:751.773333pt;}
.y56_c00126{bottom:753.693333pt;}
.y57_c00126{bottom:753.706667pt;}
.y5b_c00126{bottom:753.893333pt;}
.y58_c00126{bottom:754.640000pt;}
.y52_c00126{bottom:765.893333pt;}
.y53_c00126{bottom:766.466667pt;}
.y55_c00126{bottom:768.360000pt;}
.y4e_c00126{bottom:769.106667pt;}
.y51_c00126{bottom:769.893333pt;}
.y4f_c00126{bottom:770.066667pt;}
.y54_c00126{bottom:771.026667pt;}
.y50_c00126{bottom:771.973333pt;}
.y4d_c00126{bottom:783.800000pt;}
.y4b_c00126{bottom:784.360000pt;}
.y4a_c00126{bottom:785.693333pt;}
.y48_c00126{bottom:786.440000pt;}
.y46_c00126{bottom:787.226667pt;}
.y47_c00126{bottom:787.400000pt;}
.y49_c00126{bottom:788.360000pt;}
.y4c_c00126{bottom:791.226667pt;}
.y45_c00126{bottom:803.026667pt;}
.y40_c00126{bottom:803.400000pt;}
.y42_c00126{bottom:803.773333pt;}
.y44_c00126{bottom:803.973333pt;}
.y41_c00126{bottom:804.733333pt;}
.y43_c00126{bottom:805.693333pt;}
.y3c_c00126{bottom:820.360000pt;}
.y3e_c00126{bottom:821.106667pt;}
.y3b_c00126{bottom:821.306667pt;}
.y3a_c00126{bottom:822.066667pt;}
.y3f_c00126{bottom:822.440000pt;}
.y39_c00126{bottom:823.026667pt;}
.y3d_c00126{bottom:823.400000pt;}
.y35_c00126{bottom:837.693333pt;}
.y38_c00126{bottom:838.640000pt;}
.y37_c00126{bottom:839.026667pt;}
.y36_c00126{bottom:839.773333pt;}
.y31_c00126{bottom:839.973333pt;}
.y32_c00126{bottom:840.360000pt;}
.y34_c00126{bottom:840.733333pt;}
.y33_c00126{bottom:841.693333pt;}
.y29_c00126{bottom:855.026667pt;}
.y2e_c00126{bottom:855.773333pt;}
.y2f_c00126{bottom:855.973333pt;}
.y30_c00126{bottom:856.360000pt;}
.y2d_c00126{bottom:856.733333pt;}
.y2c_c00126{bottom:857.693333pt;}
.y2a_c00126{bottom:857.893333pt;}
.y2b_c00126{bottom:859.040000pt;}
.y24_c00126{bottom:872.360000pt;}
.y21_c00126{bottom:873.106667pt;}
.y27_c00126{bottom:873.306667pt;}
.y20_c00126{bottom:874.066667pt;}
.y26_c00126{bottom:874.440000pt;}
.y22_c00126{bottom:874.640000pt;}
.y28_c00126{bottom:875.026667pt;}
.y23_c00126{bottom:875.400000pt;}
.y25_c00126{bottom:876.360000pt;}
.y1c_c00126{bottom:889.693333pt;}
.y1e_c00126{bottom:890.066667pt;}
.y15_c00126{bottom:890.640000pt;}
.y17_c00126{bottom:891.026667pt;}
.y1d_c00126{bottom:891.400000pt;}
.y1a_c00126{bottom:891.600000pt;}
.y14_c00126{bottom:891.773333pt;}
.y18_c00126{bottom:891.973333pt;}
.y1f_c00126{bottom:892.560000pt;}
.y19_c00126{bottom:892.733333pt;}
.y1b_c00126{bottom:892.933333pt;}
.y16_c00126{bottom:893.693333pt;}
.yf_c00126{bottom:908.360000pt;}
.y11_c00126{bottom:909.106667pt;}
.y12_c00126{bottom:909.306667pt;}
.y13_c00126{bottom:909.693333pt;}
.y10_c00126{bottom:911.026667pt;}
.yc_c00126{bottom:925.693333pt;}
.yb_c00126{bottom:926.440000pt;}
.yd_c00126{bottom:927.400000pt;}
.ya_c00126{bottom:928.360000pt;}
.ye_c00126{bottom:929.306667pt;}
.y7_c00126{bottom:942.640000pt;}
.y6_c00126{bottom:943.026667pt;}
.y8_c00126{bottom:943.773333pt;}
.y5_c00126{bottom:944.560000pt;}
.y9_c00126{bottom:944.733333pt;}
.y3_c00126{bottom:945.306667pt;}
.y4_c00126{bottom:945.693333pt;}
.y2_c00126{bottom:977.693333pt;}
.y1_c00126{bottom:979.600000pt;}
.h7_c00126{height:3.739141pt;}
.h8_c00126{height:12.988594pt;}
.ha_c00126{height:14.890964pt;}
.h4_c00126{height:20.466875pt;}
.h1_c00126{height:22.303646pt;}
.h3_c00126{height:27.879557pt;}
.h2_c00126{height:31.618698pt;}
.h6_c00126{height:35.357839pt;}
.h5_c00126{height:39.031380pt;}
.h9_c00126{height:42.770521pt;}
.h0_c00126{height:1186.666667pt;}
.w0_c00126{width:782.666667pt;}
.x0_c00126{left:0.000000pt;}
.xb5_c00126{left:134.293333pt;}
.x3_c00126{left:136.000000pt;}
.x45_c00126{left:148.000000pt;}
.x99_c00126{left:148.960000pt;}
.x7d_c00126{left:149.906667pt;}
.x4_c00126{left:151.626667pt;}
.x4c_c00126{left:153.706667pt;}
.x85_c00126{left:157.333333pt;}
.xca_c00126{left:160.373333pt;}
.x1c_c00126{left:163.040000pt;}
.x11_c00126{left:164.000000pt;}
.x35_c00126{left:165.706667pt;}
.xcb_c00126{left:172.000000pt;}
.x55_c00126{left:173.333333pt;}
.x68_c00126{left:176.373333pt;}
.x46_c00126{left:177.333333pt;}
.xf7_c00126{left:178.666667pt;}
.xe1_c00126{left:184.373333pt;}
.x95_c00126{left:187.040000pt;}
.x5_c00126{left:188.000000pt;}
.x72_c00126{left:190.666667pt;}
.x27_c00126{left:193.706667pt;}
.x1d_c00126{left:196.000000pt;}
.xe6_c00126{left:197.706667pt;}
.xb6_c00126{left:198.666667pt;}
.x60_c00126{left:200.000000pt;}
.x4d_c00126{left:205.333333pt;}
.xdc_c00126{left:206.293333pt;}
.x86_c00126{left:207.626667pt;}
.xd3_c00126{left:210.293333pt;}
.x36_c00126{left:212.000000pt;}
.x6_c00126{left:214.293333pt;}
.x28_c00126{left:216.000000pt;}
.xf8_c00126{left:217.706667pt;}
.x8c_c00126{left:218.666667pt;}
.xb7_c00126{left:219.626667pt;}
.x12_c00126{left:221.706667pt;}
.xe7_c00126{left:223.040000pt;}
.xf0_c00126{left:224.373333pt;}
.x69_c00126{left:225.333333pt;}
.x37_c00126{left:228.000000pt;}
.x56_c00126{left:229.706667pt;}
.x7e_c00126{left:230.666667pt;}
.xbf_c00126{left:231.626667pt;}
.x89_c00126{left:232.960000pt;}
.xd4_c00126{left:236.000000pt;}
.x47_c00126{left:237.706667pt;}
.x7_c00126{left:240.960000pt;}
.x13_c00126{left:242.666667pt;}
.xe2_c00126{left:244.373333pt;}
.xa1_c00126{left:245.333333pt;}
.xd5_c00126{left:246.293333pt;}
.xf1_c00126{left:248.000000pt;}
.x87_c00126{left:248.960000pt;}
.x6a_c00126{left:250.666667pt;}
.x9a_c00126{left:252.000000pt;}
.x4e_c00126{left:253.706667pt;}
.xaa_c00126{left:254.666667pt;}
.x1e_c00126{left:256.373333pt;}
.x7f_c00126{left:257.333333pt;}
.x8_c00126{left:258.666667pt;}
.x29_c00126{left:260.000000pt;}
.x96_c00126{left:261.333333pt;}
.x57_c00126{left:263.040000pt;}
.xcc_c00126{left:264.000000pt;}
.xd1_c00126{left:266.666667pt;}
.xe8_c00126{left:267.626667pt;}
.x88_c00126{left:272.000000pt;}
.xb8_c00126{left:272.960000pt;}
.xa2_c00126{left:274.666667pt;}
.xc4_c00126{left:276.000000pt;}
.x6b_c00126{left:277.333333pt;}
.x9b_c00126{left:278.666667pt;}
.xfd_c00126{left:280.000000pt;}
.x61_c00126{left:281.333333pt;}
.x1f_c00126{left:282.666667pt;}
.x38_c00126{left:284.373333pt;}
.xe9_c00126{left:285.706667pt;}
.x14_c00126{left:286.666667pt;}
.x4f_c00126{left:287.800000pt;}
.x9_c00126{left:288.960000pt;}
.x98_c00126{left:291.626667pt;}
.x58_c00126{left:295.626667pt;}
.x73_c00126{left:297.706667pt;}
.x39_c00126{left:305.333333pt;}
.xc5_c00126{left:306.666667pt;}
.x97_c00126{left:309.133333pt;}
.x91_c00126{left:311.040000pt;}
.xb9_c00126{left:314.666667pt;}
.xd6_c00126{left:316.373333pt;}
.x2a_c00126{left:317.706667pt;}
.x74_c00126{left:318.666667pt;}
.x3a_c00126{left:321.333333pt;}
.xec_c00126{left:322.666667pt;}
.x75_c00126{left:323.626667pt;}
.x9c_c00126{left:325.333333pt;}
.xfe_c00126{left:326.293333pt;}
.x101_c00126{left:328.000000pt;}
.xae_c00126{left:329.333333pt;}
.x20_c00126{left:330.666667pt;}
.x76_c00126{left:332.000000pt;}
.x8a_c00126{left:333.706667pt;}
.xa3_c00126{left:336.000000pt;}
.x3b_c00126{left:337.333333pt;}
.x62_c00126{left:339.040000pt;}
.xea_c00126{left:341.333333pt;}
.x92_c00126{left:342.666667pt;}
.x15_c00126{left:344.000000pt;}
.x59_c00126{left:346.293333pt;}
.x2b_c00126{left:350.293333pt;}
.x1_c00126{left:356.000000pt;}
.x6c_c00126{left:357.333333pt;}
.x77_c00126{left:358.666667pt;}
.x8d_c00126{left:360.000000pt;}
.x5a_c00126{left:361.333333pt;}
.xcd_c00126{left:362.293333pt;}
.x16_c00126{left:365.706667pt;}
.xa_c00126{left:368.960000pt;}
.xf9_c00126{left:371.040000pt;}
.x63_c00126{left:372.000000pt;}
.xc0_c00126{left:373.333333pt;}
.x3c_c00126{left:374.293333pt;}
.x2c_c00126{left:376.373333pt;}
.xc6_c00126{left:377.706667pt;}
.xba_c00126{left:380.760000pt;}
.xf2_c00126{left:383.040000pt;}
.x93_c00126{left:384.373333pt;}
.xc1_c00126{left:385.706667pt;}
.x78_c00126{left:387.040000pt;}
.x21_c00126{left:392.373333pt;}
.xed_c00126{left:393.333333pt;}
.x8b_c00126{left:395.040000pt;}
.x3d_c00126{left:398.666667pt;}
.x17_c00126{left:400.000000pt;}
.xa4_c00126{left:402.666667pt;}
.x48_c00126{left:404.000000pt;}
.x6d_c00126{left:405.333333pt;}
.x64_c00126{left:406.666667pt;}
.xaf_c00126{left:409.333333pt;}
.xab_c00126{left:413.333333pt;}
.xf3_c00126{left:415.040000pt;}
.x22_c00126{left:419.040000pt;}
.x2d_c00126{left:421.333333pt;}
.xd7_c00126{left:423.040000pt;}
.xee_c00126{left:425.706667pt;}
.x5b_c00126{left:426.666667pt;}
.xb_c00126{left:428.000000pt;}
.x79_c00126{left:428.960000pt;}
.x3e_c00126{left:431.040000pt;}
.xbb_c00126{left:432.960000pt;}
.xe3_c00126{left:434.093333pt;}
.x2e_c00126{left:436.000000pt;}
.x50_c00126{left:437.706667pt;}
.xce_c00126{left:438.666667pt;}
.xb0_c00126{left:439.626667pt;}
.xd2_c00126{left:443.040000pt;}
.xff_c00126{left:444.000000pt;}
.x7a_c00126{left:445.706667pt;}
.xdd_c00126{left:448.000000pt;}
.xc7_c00126{left:448.960000pt;}
.xe4_c00126{left:450.666667pt;}
.x80_c00126{left:452.373333pt;}
.x5c_c00126{left:453.333333pt;}
.x18_c00126{left:457.706667pt;}
.xd8_c00126{left:458.666667pt;}
.xc_c00126{left:463.040000pt;}
.x3f_c00126{left:464.000000pt;}
.x102_c00126{left:467.040000pt;}
.xcf_c00126{left:469.706667pt;}
.xf4_c00126{left:471.040000pt;}
.x51_c00126{left:472.000000pt;}
.x81_c00126{left:476.000000pt;}
.xbc_c00126{left:477.333333pt;}
.x19_c00126{left:479.040000pt;}
.xa5_c00126{left:481.333333pt;}
.xac_c00126{left:482.666667pt;}
.x23_c00126{left:484.373333pt;}
.x40_c00126{left:486.666667pt;}
.x9d_c00126{left:487.626667pt;}
.x94_c00126{left:490.293333pt;}
.x2f_c00126{left:492.373333pt;}
.xef_c00126{left:496.000000pt;}
.xb1_c00126{left:500.373333pt;}
.x8e_c00126{left:501.706667pt;}
.xf5_c00126{left:502.666667pt;}
.xd_c00126{left:503.626667pt;}
.xbd_c00126{left:509.333333pt;}
.x6e_c00126{left:510.666667pt;}
.x30_c00126{left:512.000000pt;}
.x9e_c00126{left:514.666667pt;}
.x24_c00126{left:517.333333pt;}
.xe_c00126{left:519.040000pt;}
.x5d_c00126{left:520.960000pt;}
.x82_c00126{left:524.000000pt;}
.xb2_c00126{left:525.706667pt;}
.x31_c00126{left:527.040000pt;}
.xd9_c00126{left:528.000000pt;}
.xd0_c00126{left:531.626667pt;}
.x41_c00126{left:532.760000pt;}
.x49_c00126{left:535.040000pt;}
.x1a_c00126{left:536.373333pt;}
.x5e_c00126{left:537.333333pt;}
.xfa_c00126{left:539.040000pt;}
.xa6_c00126{left:540.000000pt;}
.xde_c00126{left:542.666667pt;}
.x7b_c00126{left:545.706667pt;}
.x32_c00126{left:549.333333pt;}
.x100_c00126{left:551.040000pt;}
.xb3_c00126{left:552.373333pt;}
.xf_c00126{left:553.333333pt;}
.x42_c00126{left:555.040000pt;}
.x65_c00126{left:558.666667pt;}
.xf6_c00126{left:560.000000pt;}
.xda_c00126{left:562.666667pt;}
.xeb_c00126{left:564.000000pt;}
.x52_c00126{left:564.960000pt;}
.xad_c00126{left:567.040000pt;}
.x4a_c00126{left:568.373333pt;}
.x83_c00126{left:569.333333pt;}
.xa7_c00126{left:570.293333pt;}
.xe5_c00126{left:572.000000pt;}
.xc2_c00126{left:573.333333pt;}
.x7c_c00126{left:574.666667pt;}
.x1b_c00126{left:577.333333pt;}
.x8f_c00126{left:579.626667pt;}
.xdf_c00126{left:580.960000pt;}
.x43_c00126{left:582.293333pt;}
.x66_c00126{left:585.333333pt;}
.xa8_c00126{left:588.373333pt;}
.x53_c00126{left:590.666667pt;}
.x84_c00126{left:592.373333pt;}
.x33_c00126{left:594.666667pt;}
.x25_c00126{left:596.000000pt;}
.x90_c00126{left:597.333333pt;}
.x9f_c00126{left:598.666667pt;}
.x5f_c00126{left:601.333333pt;}
.x4b_c00126{left:602.666667pt;}
.xbe_c00126{left:604.000000pt;}
.xc8_c00126{left:605.706667pt;}
.x44_c00126{left:607.626667pt;}
.xe0_c00126{left:610.666667pt;}
.xfb_c00126{left:612.000000pt;}
.x67_c00126{left:613.333333pt;}
.xa9_c00126{left:614.666667pt;}
.x54_c00126{left:616.000000pt;}
.x6f_c00126{left:617.706667pt;}
.xc9_c00126{left:618.666667pt;}
.xb4_c00126{left:620.373333pt;}
.x34_c00126{left:622.666667pt;}
.x26_c00126{left:624.373333pt;}
.xdb_c00126{left:625.333333pt;}
.x10_c00126{left:628.000000pt;}
.x103_c00126{left:629.333333pt;}
.xfc_c00126{left:632.373333pt;}
.xc3_c00126{left:633.333333pt;}
.x2_c00126{left:634.293333pt;}
.xa0_c00126{left:636.000000pt;}
.x70_c00126{left:640.000000pt;}
.x71_c00126{left:644.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_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_26c0e083108d517ba31bc3ea.woff2')format("woff");}.ff1_c00127{font-family:ff1_c00127;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mbb_c00127{transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);}
.m47_c00127{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.mbd_c00127{transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);}
.m0_c00127{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m44_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);}
.m77_c00127{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m95_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);}
.m25_c00127{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m7a_c00127{transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);}
.m51_c00127{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m5_c00127{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m13_c00127{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m32_c00127{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m83_c00127{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m48_c00127{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m1d_c00127{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m28_c00127{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m4_c00127{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m67_c00127{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.mb0_c00127{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.m1f_c00127{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m37_c00127{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m7e_c00127{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m66_c00127{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m60_c00127{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.m4b_c00127{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m53_c00127{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m2b_c00127{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m2d_c00127{transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);}
.m52_c00127{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m80_c00127{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m30_c00127{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m49_c00127{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m2f_c00127{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m43_c00127{transform:matrix(0.427914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427914,0.000000,0.000000,0.250000,0,0);}
.m5d_c00127{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m63_c00127{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m64_c00127{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.ma0_c00127{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m45_c00127{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m98_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);}
.m22_c00127{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m34_c00127{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m82_c00127{transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);}
.m2e_c00127{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m5a_c00127{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m4e_c00127{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m50_c00127{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m79_c00127{transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);}
.m16_c00127{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.ma1_c00127{transform:matrix(0.456731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456731,0.000000,0.000000,0.250000,0,0);}
.m88_c00127{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m2a_c00127{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m4c_c00127{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.m55_c00127{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.mb6_c00127{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);}
.m92_c00127{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.mb7_c00127{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.md_c00127{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m7f_c00127{transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);}
.m10_c00127{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m4d_c00127{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mac_c00127{transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);}
.m9e_c00127{transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);}
.m6_c00127{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m6a_c00127{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.ma7_c00127{transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);}
.m3f_c00127{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m36_c00127{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.m97_c00127{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m3b_c00127{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m90_c00127{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m4a_c00127{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m5b_c00127{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mbe_c00127{transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);}
.m42_c00127{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m33_c00127{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m31_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);}
.m9b_c00127{transform:matrix(0.504006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504006,0.000000,0.000000,0.250000,0,0);}
.m8_c00127{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mf_c00127{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m6c_c00127{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m94_c00127{transform:matrix(0.512821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512821,0.000000,0.000000,0.250000,0,0);}
.m3c_c00127{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m7_c00127{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m65_c00127{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mb9_c00127{transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);}
.m5e_c00127{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m12_c00127{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m38_c00127{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m8e_c00127{transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);}
.ma5_c00127{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.me_c00127{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mb4_c00127{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m6e_c00127{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m3_c00127{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m3a_c00127{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m3d_c00127{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m20_c00127{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mc_c00127{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m26_c00127{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m61_c00127{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m23_c00127{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m39_c00127{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m54_c00127{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m18_c00127{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m15_c00127{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.ma6_c00127{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m5c_c00127{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m3e_c00127{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m2_c00127{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m24_c00127{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.ma2_c00127{transform:matrix(0.556891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556891,0.000000,0.000000,0.250000,0,0);}
.m7d_c00127{transform:matrix(0.557269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557269,0.000000,0.000000,0.250000,0,0);}
.m1b_c00127{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.ma_c00127{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m8a_c00127{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m19_c00127{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m40_c00127{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m6b_c00127{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.mb3_c00127{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m69_c00127{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m46_c00127{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m21_c00127{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m9_c00127{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m59_c00127{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.ma3_c00127{transform:matrix(0.573789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573789,0.000000,0.000000,0.250000,0,0);}
.m68_c00127{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m9d_c00127{transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);}
.m8f_c00127{transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);}
.mb2_c00127{transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);}
.m75_c00127{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.maa_c00127{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.m27_c00127{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m1_c00127{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m58_c00127{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.m6f_c00127{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m62_c00127{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m86_c00127{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m6d_c00127{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m11_c00127{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m81_c00127{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m57_c00127{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m89_c00127{transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);}
.m1c_c00127{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.m74_c00127{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mab_c00127{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m78_c00127{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_c00127{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.m85_c00127{transform:matrix(0.629956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629956,0.000000,0.000000,0.250000,0,0);}
.m9a_c00127{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m72_c00127{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m41_c00127{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m1a_c00127{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m4f_c00127{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.mbc_c00127{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.m14_c00127{transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);}
.m8b_c00127{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m5f_c00127{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m84_c00127{transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);}
.m56_c00127{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m96_c00127{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.mb_c00127{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m73_c00127{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m76_c00127{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m71_c00127{transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);}
.m87_c00127{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mba_c00127{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m9f_c00127{transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);}
.m8c_c00127{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.mb8_c00127{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m7b_c00127{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m93_c00127{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m35_c00127{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.maf_c00127{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.m99_c00127{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m2c_c00127{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mb5_c00127{transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);}
.ma9_c00127{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.mae_c00127{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.m8d_c00127{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m17_c00127{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m1e_c00127{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mad_c00127{transform:matrix(0.779736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779736,0.000000,0.000000,0.250000,0,0);}
.ma4_c00127{transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);}
.m9c_c00127{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m29_c00127{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m70_c00127{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.ma8_c00127{transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);}
.m91_c00127{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.mb1_c00127{transform:matrix(2.758850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.758850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.758850,0.000000,0.000000,0.250000,0,0);}
.v2_c00127{vertical-align:-6.000000px;}
.v0_c00127{vertical-align:0.000000px;}
.v3_c00127{vertical-align:6.000000px;}
.v1_c00127{vertical-align:18.000000px;}
.ls3_c00127{letter-spacing:0.000000px;}
.ls2_c00127{letter-spacing:12.014986px;}
.ls1_c00127{letter-spacing:13.659217px;}
.ls0_c00127{letter-spacing:51.359972px;}
.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;}
}
.ws9_c00127{word-spacing:-59.314052px;}
.ws10_c00127{word-spacing:-15.656497px;}
.ws18_c00127{word-spacing:-14.012266px;}
.ws1e_c00127{word-spacing:-12.368035px;}
.ws1_c00127{word-spacing:-6.312800px;}
.ws0_c00127{word-spacing:-3.201356px;}
.ws27_c00127{word-spacing:0.000000px;}
.ws2_c00127{word-spacing:2.260500px;}
.ws7_c00127{word-spacing:8.571671px;}
.ws1a_c00127{word-spacing:10.017706px;}
.ws12_c00127{word-spacing:11.113860px;}
.wsd_c00127{word-spacing:11.661937px;}
.ws24_c00127{word-spacing:15.107856px;}
.ws23_c00127{word-spacing:16.262880px;}
.ws14_c00127{word-spacing:17.262919px;}
.ws25_c00127{word-spacing:19.417982px;}
.ws17_c00127{word-spacing:19.620812px;}
.ws8_c00127{word-spacing:20.322608px;}
.ws20_c00127{word-spacing:21.573046px;}
.ws26_c00127{word-spacing:23.192194px;}
.ws1c_c00127{word-spacing:23.728109px;}
.ws22_c00127{word-spacing:23.767013px;}
.wsb_c00127{word-spacing:24.638400px;}
.ws1d_c00127{word-spacing:25.594310px;}
.ws1f_c00127{word-spacing:25.883172px;}
.ws11_c00127{word-spacing:31.838295px;}
.wse_c00127{word-spacing:32.982833px;}
.ws13_c00127{word-spacing:34.127371px;}
.ws5_c00127{word-spacing:36.326509px;}
.ws19_c00127{word-spacing:36.638400px;}
.wsa_c00127{word-spacing:36.857815px;}
.ws6_c00127{word-spacing:37.356293px;}
.ws21_c00127{word-spacing:39.052735px;}
.ws4_c00127{word-spacing:39.846793px;}
.ws1b_c00127{word-spacing:39.933737px;}
.wsf_c00127{word-spacing:40.994598px;}
.ws15_c00127{word-spacing:43.665186px;}
.ws3_c00127{word-spacing:47.719225px;}
.wsc_c00127{word-spacing:49.006362px;}
.ws16_c00127{word-spacing:55.807281px;}
._1_c00127{margin-left:-51.359972px;}
._3_c00127{margin-left:-13.659217px;}
._5_c00127{margin-left:-12.014986px;}
._4_c00127{width:14.207294px;}
._6_c00127{width:25.716909px;}
._7_c00127{width:27.969026px;}
._9_c00127{width:31.682189px;}
._8_c00127{width:33.837252px;}
._a_c00127{width:40.754739px;}
._2_c00127{width:46.994588px;}
._0_c00127{width:54.672360px;}
.fc0_c00127{color:transparent;}
.fs8_c00127{font-size:3.420000px;}
.fs9_c00127{font-size:6.780000px;}
.fsa_c00127{font-size:11.880000px;}
.fs7_c00127{font-size:13.620000px;}
.fs5_c00127{font-size:18.720000px;}
.fs1_c00127{font-size:20.400000px;}
.fs4_c00127{font-size:25.500000px;}
.fs2_c00127{font-size:28.920000px;}
.fs3_c00127{font-size:32.340000px;}
.fs0_c00127{font-size:35.700000px;}
.fs6_c00127{font-size:39.120000px;}
.y0_c00127{bottom:0.000000px;}
.yfa_c00127{bottom:252.630000px;}
.yf9_c00127{bottom:253.695000px;}
.yf7_c00127{bottom:254.130000px;}
.yf8_c00127{bottom:255.195000px;}
.yf6_c00127{bottom:265.050000px;}
.yf3_c00127{bottom:267.630000px;}
.yf4_c00127{bottom:268.275000px;}
.yf2_c00127{bottom:268.695000px;}
.yf5_c00127{bottom:270.420000px;}
.yf1_c00127{bottom:281.130000px;}
.yeb_c00127{bottom:282.195000px;}
.yec_c00127{bottom:282.630000px;}
.yed_c00127{bottom:283.275000px;}
.yf0_c00127{bottom:283.695000px;}
.yee_c00127{bottom:283.920000px;}
.yef_c00127{bottom:284.970000px;}
.ye8_c00127{bottom:295.050000px;}
.yea_c00127{bottom:295.695000px;}
.ye6_c00127{bottom:296.130000px;}
.ye7_c00127{bottom:296.775000px;}
.ye9_c00127{bottom:297.195000px;}
.ye5_c00127{bottom:309.195000px;}
.ye2_c00127{bottom:310.275000px;}
.ye3_c00127{bottom:310.695000px;}
.ye1_c00127{bottom:312.195000px;}
.ye4_c00127{bottom:312.420000px;}
.ye0_c00127{bottom:323.130000px;}
.yde_c00127{bottom:324.195000px;}
.ydf_c00127{bottom:324.420000px;}
.ydc_c00127{bottom:324.630000px;}
.ydd_c00127{bottom:325.695000px;}
.ydb_c00127{bottom:336.630000px;}
.yd7_c00127{bottom:337.695000px;}
.yda_c00127{bottom:337.920000px;}
.yd5_c00127{bottom:338.130000px;}
.yd9_c00127{bottom:338.355000px;}
.yd6_c00127{bottom:339.195000px;}
.yd8_c00127{bottom:339.420000px;}
.yd3_c00127{bottom:350.130000px;}
.yd1_c00127{bottom:351.195000px;}
.yd0_c00127{bottom:351.630000px;}
.yd2_c00127{bottom:352.695000px;}
.yd4_c00127{bottom:352.920000px;}
.ycf_c00127{bottom:364.695000px;}
.ycd_c00127{bottom:365.130000px;}
.ycc_c00127{bottom:366.195000px;}
.yce_c00127{bottom:366.420000px;}
.yca_c00127{bottom:378.630000px;}
.yc8_c00127{bottom:379.695000px;}
.ycb_c00127{bottom:379.920000px;}
.yc7_c00127{bottom:380.130000px;}
.yc9_c00127{bottom:381.420000px;}
.yc4_c00127{bottom:393.195000px;}
.yc6_c00127{bottom:393.420000px;}
.yc3_c00127{bottom:393.630000px;}
.yc5_c00127{bottom:394.920000px;}
.yc0_c00127{bottom:406.695000px;}
.yc2_c00127{bottom:406.920000px;}
.ybf_c00127{bottom:407.130000px;}
.ybe_c00127{bottom:408.195000px;}
.yc1_c00127{bottom:408.420000px;}
.ybb_c00127{bottom:420.195000px;}
.ybd_c00127{bottom:420.420000px;}
.yb9_c00127{bottom:421.695000px;}
.ybc_c00127{bottom:421.920000px;}
.yb8_c00127{bottom:422.130000px;}
.yba_c00127{bottom:423.195000px;}
.yb7_c00127{bottom:432.630000px;}
.yb5_c00127{bottom:434.130000px;}
.yb4_c00127{bottom:435.195000px;}
.yb6_c00127{bottom:435.420000px;}
.yb3_c00127{bottom:435.630000px;}
.yaf_c00127{bottom:447.630000px;}
.yb1_c00127{bottom:448.695000px;}
.yb2_c00127{bottom:448.920000px;}
.yb0_c00127{bottom:449.130000px;}
.yae_c00127{bottom:463.695000px;}
.yac_c00127{bottom:474.630000px;}
.yab_c00127{bottom:475.695000px;}
.yad_c00127{bottom:475.920000px;}
.ya7_c00127{bottom:476.130000px;}
.ya8_c00127{bottom:477.195000px;}
.yaa_c00127{bottom:477.420000px;}
.ya9_c00127{bottom:477.630000px;}
.ya6_c00127{bottom:489.195000px;}
.ya4_c00127{bottom:490.695000px;}
.ya5_c00127{bottom:490.920000px;}
.ya3_c00127{bottom:503.130000px;}
.ya2_c00127{bottom:504.195000px;}
.ya1_c00127{bottom:504.420000px;}
.y9f_c00127{bottom:504.630000px;}
.ya0_c00127{bottom:505.695000px;}
.y9e_c00127{bottom:517.695000px;}
.y9d_c00127{bottom:517.920000px;}
.y9b_c00127{bottom:518.130000px;}
.y9c_c00127{bottom:519.420000px;}
.y9a_c00127{bottom:531.195000px;}
.y99_c00127{bottom:531.420000px;}
.y97_c00127{bottom:531.630000px;}
.y96_c00127{bottom:532.695000px;}
.y98_c00127{bottom:532.920000px;}
.y94_c00127{bottom:544.695000px;}
.y95_c00127{bottom:544.920000px;}
.y92_c00127{bottom:545.130000px;}
.y91_c00127{bottom:546.195000px;}
.y93_c00127{bottom:546.420000px;}
.y90_c00127{bottom:558.195000px;}
.y8d_c00127{bottom:558.630000px;}
.y8c_c00127{bottom:559.050000px;}
.y8f_c00127{bottom:559.695000px;}
.y8e_c00127{bottom:559.920000px;}
.y8b_c00127{bottom:560.130000px;}
.y8a_c00127{bottom:572.130000px;}
.y89_c00127{bottom:573.195000px;}
.y88_c00127{bottom:573.420000px;}
.y87_c00127{bottom:573.630000px;}
.y86_c00127{bottom:574.695000px;}
.y84_c00127{bottom:585.630000px;}
.y83_c00127{bottom:586.695000px;}
.y85_c00127{bottom:586.920000px;}
.y81_c00127{bottom:587.130000px;}
.y80_c00127{bottom:588.195000px;}
.y82_c00127{bottom:588.420000px;}
.y7e_c00127{bottom:599.130000px;}
.y7a_c00127{bottom:599.550000px;}
.y7d_c00127{bottom:600.195000px;}
.y7f_c00127{bottom:600.420000px;}
.y7b_c00127{bottom:600.630000px;}
.y79_c00127{bottom:601.695000px;}
.y7c_c00127{bottom:601.920000px;}
.y77_c00127{bottom:613.695000px;}
.y78_c00127{bottom:613.920000px;}
.y75_c00127{bottom:614.130000px;}
.y74_c00127{bottom:615.195000px;}
.y76_c00127{bottom:615.420000px;}
.y73_c00127{bottom:627.195000px;}
.y70_c00127{bottom:627.630000px;}
.y6f_c00127{bottom:628.695000px;}
.y72_c00127{bottom:628.920000px;}
.y71_c00127{bottom:630.420000px;}
.y6d_c00127{bottom:641.130000px;}
.y6e_c00127{bottom:642.195000px;}
.y6c_c00127{bottom:642.420000px;}
.y6a_c00127{bottom:642.630000px;}
.y69_c00127{bottom:643.695000px;}
.y6b_c00127{bottom:643.920000px;}
.y67_c00127{bottom:654.630000px;}
.y64_c00127{bottom:655.050000px;}
.y68_c00127{bottom:655.695000px;}
.y66_c00127{bottom:655.920000px;}
.y63_c00127{bottom:656.130000px;}
.y65_c00127{bottom:657.420000px;}
.y62_c00127{bottom:668.130000px;}
.y61_c00127{bottom:669.195000px;}
.y60_c00127{bottom:670.695000px;}
.y5f_c00127{bottom:687.630000px;}
.y5e_c00127{bottom:688.695000px;}
.y5c_c00127{bottom:699.630000px;}
.y5d_c00127{bottom:700.695000px;}
.y5a_c00127{bottom:701.130000px;}
.y5b_c00127{bottom:703.695000px;}
.y59_c00127{bottom:714.195000px;}
.y58_c00127{bottom:715.695000px;}
.y57_c00127{bottom:717.195000px;}
.y55_c00127{bottom:734.325000px;}
.y56_c00127{bottom:737.550000px;}
.y53_c00127{bottom:749.325000px;}
.y54_c00127{bottom:750.405000px;}
.y52_c00127{bottom:751.470000px;}
.y51_c00127{bottom:752.550000px;}
.y50_c00127{bottom:772.695000px;}
.y4f_c00127{bottom:773.550000px;}
.y4c_c00127{bottom:802.245000px;}
.y4b_c00127{bottom:804.405000px;}
.y4e_c00127{bottom:804.630000px;}
.y4d_c00127{bottom:805.470000px;}
.y4a_c00127{bottom:820.905000px;}
.y46_c00127{bottom:823.245000px;}
.y47_c00127{bottom:824.130000px;}
.y49_c00127{bottom:824.325000px;}
.y48_c00127{bottom:825.405000px;}
.y41_c00127{bottom:840.405000px;}
.y42_c00127{bottom:842.745000px;}
.y45_c00127{bottom:843.630000px;}
.y44_c00127{bottom:843.825000px;}
.y40_c00127{bottom:844.905000px;}
.y43_c00127{bottom:845.970000px;}
.y3d_c00127{bottom:862.245000px;}
.y3e_c00127{bottom:863.970000px;}
.y3c_c00127{bottom:864.405000px;}
.y3f_c00127{bottom:865.470000px;}
.y3b_c00127{bottom:881.745000px;}
.y3a_c00127{bottom:882.630000px;}
.y39_c00127{bottom:882.825000px;}
.y38_c00127{bottom:883.905000px;}
.y36_c00127{bottom:901.245000px;}
.y34_c00127{bottom:902.325000px;}
.y37_c00127{bottom:902.970000px;}
.y33_c00127{bottom:903.405000px;}
.y35_c00127{bottom:904.470000px;}
.y32_c00127{bottom:919.905000px;}
.y2e_c00127{bottom:920.745000px;}
.y2d_c00127{bottom:921.180000px;}
.y31_c00127{bottom:922.245000px;}
.y30_c00127{bottom:922.905000px;}
.y2f_c00127{bottom:924.405000px;}
.y28_c00127{bottom:940.245000px;}
.y29_c00127{bottom:940.470000px;}
.y2a_c00127{bottom:942.405000px;}
.y2b_c00127{bottom:943.470000px;}
.y2c_c00127{bottom:943.905000px;}
.y23_c00127{bottom:959.745000px;}
.y27_c00127{bottom:960.630000px;}
.y25_c00127{bottom:960.825000px;}
.y22_c00127{bottom:961.905000px;}
.y24_c00127{bottom:962.130000px;}
.y26_c00127{bottom:962.970000px;}
.y1d_c00127{bottom:979.245000px;}
.y21_c00127{bottom:980.325000px;}
.y20_c00127{bottom:980.745000px;}
.y1c_c00127{bottom:981.405000px;}
.y1f_c00127{bottom:981.630000px;}
.y1e_c00127{bottom:982.905000px;}
.y1b_c00127{bottom:999.825000px;}
.y17_c00127{bottom:1000.245000px;}
.y15_c00127{bottom:1000.905000px;}
.y19_c00127{bottom:1001.130000px;}
.y1a_c00127{bottom:1001.325000px;}
.y18_c00127{bottom:1001.970000px;}
.y16_c00127{bottom:1002.405000px;}
.y13_c00127{bottom:1018.245000px;}
.ye_c00127{bottom:1019.325000px;}
.y11_c00127{bottom:1019.745000px;}
.yf_c00127{bottom:1020.405000px;}
.y12_c00127{bottom:1020.630000px;}
.y10_c00127{bottom:1021.470000px;}
.y14_c00127{bottom:1021.905000px;}
.y7_c00127{bottom:1038.825000px;}
.ya_c00127{bottom:1039.245000px;}
.yc_c00127{bottom:1039.905000px;}
.yb_c00127{bottom:1040.130000px;}
.yd_c00127{bottom:1040.970000px;}
.y8_c00127{bottom:1041.405000px;}
.y9_c00127{bottom:1042.470000px;}
.y4_c00127{bottom:1058.745000px;}
.y5_c00127{bottom:1059.825000px;}
.y6_c00127{bottom:1060.470000px;}
.y3_c00127{bottom:1060.905000px;}
.y1_c00127{bottom:1097.745000px;}
.y2_c00127{bottom:1099.050000px;}
.hb_c00127{height:4.206533px;}
.hc_c00127{height:8.339268px;}
.hd_c00127{height:14.612168px;}
.h9_c00127{height:16.752334px;}
.ha_c00127{height:22.752334px;}
.h6_c00127{height:23.025234px;}
.h2_c00127{height:25.091602px;}
.h5_c00127{height:31.364502px;}
.h3_c00127{height:35.571035px;}
.h4_c00127{height:39.777568px;}
.h1_c00127{height:43.910303px;}
.h7_c00127{height:48.116836px;}
.h8_c00127{height:53.571035px;}
.h0_c00127{height:1335.000000px;}
.w0_c00127{width:880.500000px;}
.x0_c00127{left:0.000000px;}
.x1_c00127{left:151.500000px;}
.x74_c00127{left:153.420000px;}
.x4d_c00127{left:168.000000px;}
.x8b_c00127{left:172.500000px;}
.x92_c00127{left:175.500000px;}
.x56_c00127{left:180.000000px;}
.x3d_c00127{left:181.920000px;}
.x83_c00127{left:183.000000px;}
.x75_c00127{left:186.000000px;}
.xb2_c00127{left:187.920000px;}
.xae_c00127{left:189.420000px;}
.x31_c00127{left:190.500000px;}
.x46_c00127{left:195.420000px;}
.x94_c00127{left:197.580000px;}
.xa1_c00127{left:202.920000px;}
.x1c_c00127{left:204.000000px;}
.xd_c00127{left:205.920000px;}
.x60_c00127{left:208.080000px;}
.x7c_c00127{left:211.920000px;}
.x3e_c00127{left:214.500000px;}
.xac_c00127{left:215.580000px;}
.xc4_c00127{left:219.000000px;}
.xba_c00127{left:220.500000px;}
.xb3_c00127{left:223.500000px;}
.x27_c00127{left:224.580000px;}
.x3_c00127{left:226.500000px;}
.xaf_c00127{left:229.080000px;}
.xe_c00127{left:230.580000px;}
.x76_c00127{left:232.500000px;}
.xbb_c00127{left:234.000000px;}
.xb4_c00127{left:237.000000px;}
.x61_c00127{left:240.420000px;}
.x57_c00127{left:242.580000px;}
.x1d_c00127{left:244.920000px;}
.xbf_c00127{left:246.000000px;}
.xb0_c00127{left:247.080000px;}
.x32_c00127{left:249.420000px;}
.x28_c00127{left:256.500000px;}
.xa2_c00127{left:260.580000px;}
.x8c_c00127{left:264.000000px;}
.xb5_c00127{left:265.500000px;}
.x47_c00127{left:267.000000px;}
.x1e_c00127{left:269.580000px;}
.x6a_c00127{left:271.920000px;}
.xf_c00127{left:273.000000px;}
.x33_c00127{left:274.500000px;}
.x62_c00127{left:275.580000px;}
.xb6_c00127{left:279.420000px;}
.xc3_c00127{left:282.000000px;}
.xc0_c00127{left:283.920000px;}
.x58_c00127{left:286.500000px;}
.x29_c00127{left:292.080000px;}
.x63_c00127{left:295.920000px;}
.x6b_c00127{left:298.500000px;}
.x48_c00127{left:300.000000px;}
.x4_c00127{left:303.000000px;}
.x84_c00127{left:304.500000px;}
.x10_c00127{left:313.080000px;}
.x4e_c00127{left:318.000000px;}
.x64_c00127{left:322.500000px;}
.x85_c00127{left:325.920000px;}
.x1f_c00127{left:330.420000px;}
.x11_c00127{left:331.500000px;}
.x4f_c00127{left:334.500000px;}
.x34_c00127{left:337.500000px;}
.x6c_c00127{left:340.500000px;}
.x95_c00127{left:342.000000px;}
.x59_c00127{left:343.500000px;}
.x5_c00127{left:346.920000px;}
.x49_c00127{left:348.000000px;}
.x50_c00127{left:351.000000px;}
.x86_c00127{left:352.500000px;}
.x9a_c00127{left:355.500000px;}
.xa4_c00127{left:357.000000px;}
.x7d_c00127{left:358.920000px;}
.x12_c00127{left:360.000000px;}
.x3f_c00127{left:361.920000px;}
.x4a_c00127{left:364.500000px;}
.x51_c00127{left:367.080000px;}
.x77_c00127{left:373.500000px;}
.x96_c00127{left:384.000000px;}
.x20_c00127{left:385.920000px;}
.x7e_c00127{left:387.000000px;}
.x9d_c00127{left:388.500000px;}
.xbc_c00127{left:391.500000px;}
.x8d_c00127{left:394.080000px;}
.x2a_c00127{left:396.000000px;}
.x13_c00127{left:397.500000px;}
.x2_c00127{left:399.000000px;}
.x40_c00127{left:400.500000px;}
.x87_c00127{left:409.080000px;}
.x89_c00127{left:412.500000px;}
.x8e_c00127{left:414.000000px;}
.x2b_c00127{left:417.420000px;}
.x7f_c00127{left:420.000000px;}
.x41_c00127{left:421.080000px;}
.x91_c00127{left:424.500000px;}
.x65_c00127{left:427.500000px;}
.x9e_c00127{left:429.000000px;}
.xc1_c00127{left:432.000000px;}
.xbd_c00127{left:433.500000px;}
.xa3_c00127{left:436.500000px;}
.xaa_c00127{left:438.000000px;}
.x14_c00127{left:439.500000px;}
.x8f_c00127{left:441.000000px;}
.x21_c00127{left:445.500000px;}
.x4b_c00127{left:448.500000px;}
.x6_c00127{left:454.920000px;}
.x8a_c00127{left:457.500000px;}
.x35_c00127{left:459.000000px;}
.x5a_c00127{left:465.000000px;}
.x78_c00127{left:466.920000px;}
.xa6_c00127{left:468.000000px;}
.x4c_c00127{left:469.920000px;}
.x52_c00127{left:474.000000px;}
.x6d_c00127{left:477.420000px;}
.xb8_c00127{left:478.500000px;}
.x36_c00127{left:481.500000px;}
.x42_c00127{left:485.580000px;}
.x22_c00127{left:490.080000px;}
.x37_c00127{left:493.080000px;}
.x15_c00127{left:496.920000px;}
.x7_c00127{left:501.000000px;}
.x97_c00127{left:504.000000px;}
.x9f_c00127{left:505.500000px;}
.x23_c00127{left:508.920000px;}
.x2c_c00127{left:510.000000px;}
.x9b_c00127{left:513.000000px;}
.x80_c00127{left:514.080000px;}
.x6e_c00127{left:516.420000px;}
.x79_c00127{left:519.000000px;}
.x5b_c00127{left:524.580000px;}
.x66_c00127{left:526.080000px;}
.x90_c00127{left:527.145000px;}
.x2d_c00127{left:531.000000px;}
.x24_c00127{left:534.420000px;}
.x38_c00127{left:536.580000px;}
.xad_c00127{left:540.000000px;}
.x43_c00127{left:541.500000px;}
.x6f_c00127{left:543.000000px;}
.xa7_c00127{left:546.000000px;}
.x9c_c00127{left:549.000000px;}
.xb9_c00127{left:550.500000px;}
.x8_c00127{left:556.080000px;}
.x16_c00127{left:558.000000px;}
.x5c_c00127{left:570.000000px;}
.x67_c00127{left:571.500000px;}
.x9_c00127{left:574.500000px;}
.x39_c00127{left:575.580000px;}
.xa0_c00127{left:577.500000px;}
.xab_c00127{left:579.000000px;}
.x17_c00127{left:580.500000px;}
.xa8_c00127{left:582.000000px;}
.xb7_c00127{left:586.500000px;}
.x25_c00127{left:588.000000px;}
.x5d_c00127{left:591.420000px;}
.x3a_c00127{left:592.500000px;}
.x18_c00127{left:593.580000px;}
.x70_c00127{left:595.500000px;}
.x2e_c00127{left:598.500000px;}
.x53_c00127{left:601.920000px;}
.xa5_c00127{left:612.000000px;}
.x98_c00127{left:613.500000px;}
.xa_c00127{left:615.420000px;}
.x71_c00127{left:616.500000px;}
.xa9_c00127{left:618.000000px;}
.x5e_c00127{left:619.500000px;}
.x44_c00127{left:622.500000px;}
.x3b_c00127{left:625.500000px;}
.x54_c00127{left:628.500000px;}
.x81_c00127{left:633.420000px;}
.x68_c00127{left:637.500000px;}
.x19_c00127{left:638.580000px;}
.x26_c00127{left:640.920000px;}
.x3c_c00127{left:643.920000px;}
.x99_c00127{left:649.500000px;}
.xb_c00127{left:652.500000px;}
.x93_c00127{left:654.420000px;}
.x88_c00127{left:655.500000px;}
.x69_c00127{left:657.420000px;}
.xbe_c00127{left:658.500000px;}
.x2f_c00127{left:661.500000px;}
.x45_c00127{left:663.000000px;}
.xc_c00127{left:671.580000px;}
.x55_c00127{left:673.080000px;}
.x1a_c00127{left:679.080000px;}
.x72_c00127{left:680.580000px;}
.x7a_c00127{left:684.000000px;}
.x5f_c00127{left:688.080000px;}
.xb1_c00127{left:694.500000px;}
.x1b_c00127{left:697.920000px;}
.xc2_c00127{left:699.000000px;}
.x30_c00127{left:708.420000px;}
.x82_c00127{left:712.500000px;}
.x7b_c00127{left:715.500000px;}
.x73_c00127{left:716.580000px;}
@media print{
.v2_c00127{vertical-align:-5.333333pt;}
.v0_c00127{vertical-align:0.000000pt;}
.v3_c00127{vertical-align:5.333333pt;}
.v1_c00127{vertical-align:16.000000pt;}
.ls3_c00127{letter-spacing:0.000000pt;}
.ls2_c00127{letter-spacing:10.679988pt;}
.ls1_c00127{letter-spacing:12.141526pt;}
.ls0_c00127{letter-spacing:45.653309pt;}
.ws9_c00127{word-spacing:-52.723602pt;}
.ws10_c00127{word-spacing:-13.916886pt;}
.ws18_c00127{word-spacing:-12.455348pt;}
.ws1e_c00127{word-spacing:-10.993809pt;}
.ws1_c00127{word-spacing:-5.611378pt;}
.ws0_c00127{word-spacing:-2.845650pt;}
.ws27_c00127{word-spacing:0.000000pt;}
.ws2_c00127{word-spacing:2.009333pt;}
.ws7_c00127{word-spacing:7.619263pt;}
.ws1a_c00127{word-spacing:8.904628pt;}
.ws12_c00127{word-spacing:9.878987pt;}
.wsd_c00127{word-spacing:10.366166pt;}
.ws24_c00127{word-spacing:13.429205pt;}
.ws23_c00127{word-spacing:14.455894pt;}
.ws14_c00127{word-spacing:15.344817pt;}
.ws25_c00127{word-spacing:17.260429pt;}
.ws17_c00127{word-spacing:17.440722pt;}
.ws8_c00127{word-spacing:18.064540pt;}
.ws20_c00127{word-spacing:19.176041pt;}
.ws26_c00127{word-spacing:20.615283pt;}
.ws1c_c00127{word-spacing:21.091652pt;}
.ws22_c00127{word-spacing:21.126233pt;}
.wsb_c00127{word-spacing:21.900800pt;}
.ws1d_c00127{word-spacing:22.750498pt;}
.ws1f_c00127{word-spacing:23.007264pt;}
.ws11_c00127{word-spacing:28.300707pt;}
.wse_c00127{word-spacing:29.318074pt;}
.ws13_c00127{word-spacing:30.335441pt;}
.ws5_c00127{word-spacing:32.290231pt;}
.ws19_c00127{word-spacing:32.567467pt;}
.wsa_c00127{word-spacing:32.762503pt;}
.ws6_c00127{word-spacing:33.205594pt;}
.ws21_c00127{word-spacing:34.713542pt;}
.ws4_c00127{word-spacing:35.419372pt;}
.ws1b_c00127{word-spacing:35.496655pt;}
.wsf_c00127{word-spacing:36.439642pt;}
.ws15_c00127{word-spacing:38.813499pt;}
.ws3_c00127{word-spacing:42.417089pt;}
.wsc_c00127{word-spacing:43.561211pt;}
.ws16_c00127{word-spacing:49.606472pt;}
._1_c00127{margin-left:-45.653309pt;}
._3_c00127{margin-left:-12.141526pt;}
._5_c00127{margin-left:-10.679988pt;}
._4_c00127{width:12.628706pt;}
._6_c00127{width:22.859475pt;}
._7_c00127{width:24.861357pt;}
._9_c00127{width:28.161946pt;}
._8_c00127{width:30.077557pt;}
._a_c00127{width:36.226435pt;}
._2_c00127{width:41.772967pt;}
._0_c00127{width:48.597653pt;}
.fs8_c00127{font-size:3.040000pt;}
.fs9_c00127{font-size:6.026667pt;}
.fsa_c00127{font-size:10.560000pt;}
.fs7_c00127{font-size:12.106667pt;}
.fs5_c00127{font-size:16.640000pt;}
.fs1_c00127{font-size:18.133333pt;}
.fs4_c00127{font-size:22.666667pt;}
.fs2_c00127{font-size:25.706667pt;}
.fs3_c00127{font-size:28.746667pt;}
.fs0_c00127{font-size:31.733333pt;}
.fs6_c00127{font-size:34.773333pt;}
.y0_c00127{bottom:0.000000pt;}
.yfa_c00127{bottom:224.560000pt;}
.yf9_c00127{bottom:225.506667pt;}
.yf7_c00127{bottom:225.893333pt;}
.yf8_c00127{bottom:226.840000pt;}
.yf6_c00127{bottom:235.600000pt;}
.yf3_c00127{bottom:237.893333pt;}
.yf4_c00127{bottom:238.466667pt;}
.yf2_c00127{bottom:238.840000pt;}
.yf5_c00127{bottom:240.373333pt;}
.yf1_c00127{bottom:249.893333pt;}
.yeb_c00127{bottom:250.840000pt;}
.yec_c00127{bottom:251.226667pt;}
.yed_c00127{bottom:251.800000pt;}
.yf0_c00127{bottom:252.173333pt;}
.yee_c00127{bottom:252.373333pt;}
.yef_c00127{bottom:253.306667pt;}
.ye8_c00127{bottom:262.266667pt;}
.yea_c00127{bottom:262.840000pt;}
.ye6_c00127{bottom:263.226667pt;}
.ye7_c00127{bottom:263.800000pt;}
.ye9_c00127{bottom:264.173333pt;}
.ye5_c00127{bottom:274.840000pt;}
.ye2_c00127{bottom:275.800000pt;}
.ye3_c00127{bottom:276.173333pt;}
.ye1_c00127{bottom:277.506667pt;}
.ye4_c00127{bottom:277.706667pt;}
.ye0_c00127{bottom:287.226667pt;}
.yde_c00127{bottom:288.173333pt;}
.ydf_c00127{bottom:288.373333pt;}
.ydc_c00127{bottom:288.560000pt;}
.ydd_c00127{bottom:289.506667pt;}
.ydb_c00127{bottom:299.226667pt;}
.yd7_c00127{bottom:300.173333pt;}
.yda_c00127{bottom:300.373333pt;}
.yd5_c00127{bottom:300.560000pt;}
.yd9_c00127{bottom:300.760000pt;}
.yd6_c00127{bottom:301.506667pt;}
.yd8_c00127{bottom:301.706667pt;}
.yd3_c00127{bottom:311.226667pt;}
.yd1_c00127{bottom:312.173333pt;}
.yd0_c00127{bottom:312.560000pt;}
.yd2_c00127{bottom:313.506667pt;}
.yd4_c00127{bottom:313.706667pt;}
.ycf_c00127{bottom:324.173333pt;}
.ycd_c00127{bottom:324.560000pt;}
.ycc_c00127{bottom:325.506667pt;}
.yce_c00127{bottom:325.706667pt;}
.yca_c00127{bottom:336.560000pt;}
.yc8_c00127{bottom:337.506667pt;}
.ycb_c00127{bottom:337.706667pt;}
.yc7_c00127{bottom:337.893333pt;}
.yc9_c00127{bottom:339.040000pt;}
.yc4_c00127{bottom:349.506667pt;}
.yc6_c00127{bottom:349.706667pt;}
.yc3_c00127{bottom:349.893333pt;}
.yc5_c00127{bottom:351.040000pt;}
.yc0_c00127{bottom:361.506667pt;}
.yc2_c00127{bottom:361.706667pt;}
.ybf_c00127{bottom:361.893333pt;}
.ybe_c00127{bottom:362.840000pt;}
.yc1_c00127{bottom:363.040000pt;}
.ybb_c00127{bottom:373.506667pt;}
.ybd_c00127{bottom:373.706667pt;}
.yb9_c00127{bottom:374.840000pt;}
.ybc_c00127{bottom:375.040000pt;}
.yb8_c00127{bottom:375.226667pt;}
.yba_c00127{bottom:376.173333pt;}
.yb7_c00127{bottom:384.560000pt;}
.yb5_c00127{bottom:385.893333pt;}
.yb4_c00127{bottom:386.840000pt;}
.yb6_c00127{bottom:387.040000pt;}
.yb3_c00127{bottom:387.226667pt;}
.yaf_c00127{bottom:397.893333pt;}
.yb1_c00127{bottom:398.840000pt;}
.yb2_c00127{bottom:399.040000pt;}
.yb0_c00127{bottom:399.226667pt;}
.yae_c00127{bottom:412.173333pt;}
.yac_c00127{bottom:421.893333pt;}
.yab_c00127{bottom:422.840000pt;}
.yad_c00127{bottom:423.040000pt;}
.ya7_c00127{bottom:423.226667pt;}
.ya8_c00127{bottom:424.173333pt;}
.yaa_c00127{bottom:424.373333pt;}
.ya9_c00127{bottom:424.560000pt;}
.ya6_c00127{bottom:434.840000pt;}
.ya4_c00127{bottom:436.173333pt;}
.ya5_c00127{bottom:436.373333pt;}
.ya3_c00127{bottom:447.226667pt;}
.ya2_c00127{bottom:448.173333pt;}
.ya1_c00127{bottom:448.373333pt;}
.y9f_c00127{bottom:448.560000pt;}
.ya0_c00127{bottom:449.506667pt;}
.y9e_c00127{bottom:460.173333pt;}
.y9d_c00127{bottom:460.373333pt;}
.y9b_c00127{bottom:460.560000pt;}
.y9c_c00127{bottom:461.706667pt;}
.y9a_c00127{bottom:472.173333pt;}
.y99_c00127{bottom:472.373333pt;}
.y97_c00127{bottom:472.560000pt;}
.y96_c00127{bottom:473.506667pt;}
.y98_c00127{bottom:473.706667pt;}
.y94_c00127{bottom:484.173333pt;}
.y95_c00127{bottom:484.373333pt;}
.y92_c00127{bottom:484.560000pt;}
.y91_c00127{bottom:485.506667pt;}
.y93_c00127{bottom:485.706667pt;}
.y90_c00127{bottom:496.173333pt;}
.y8d_c00127{bottom:496.560000pt;}
.y8c_c00127{bottom:496.933333pt;}
.y8f_c00127{bottom:497.506667pt;}
.y8e_c00127{bottom:497.706667pt;}
.y8b_c00127{bottom:497.893333pt;}
.y8a_c00127{bottom:508.560000pt;}
.y89_c00127{bottom:509.506667pt;}
.y88_c00127{bottom:509.706667pt;}
.y87_c00127{bottom:509.893333pt;}
.y86_c00127{bottom:510.840000pt;}
.y84_c00127{bottom:520.560000pt;}
.y83_c00127{bottom:521.506667pt;}
.y85_c00127{bottom:521.706667pt;}
.y81_c00127{bottom:521.893333pt;}
.y80_c00127{bottom:522.840000pt;}
.y82_c00127{bottom:523.040000pt;}
.y7e_c00127{bottom:532.560000pt;}
.y7a_c00127{bottom:532.933333pt;}
.y7d_c00127{bottom:533.506667pt;}
.y7f_c00127{bottom:533.706667pt;}
.y7b_c00127{bottom:533.893333pt;}
.y79_c00127{bottom:534.840000pt;}
.y7c_c00127{bottom:535.040000pt;}
.y77_c00127{bottom:545.506667pt;}
.y78_c00127{bottom:545.706667pt;}
.y75_c00127{bottom:545.893333pt;}
.y74_c00127{bottom:546.840000pt;}
.y76_c00127{bottom:547.040000pt;}
.y73_c00127{bottom:557.506667pt;}
.y70_c00127{bottom:557.893333pt;}
.y6f_c00127{bottom:558.840000pt;}
.y72_c00127{bottom:559.040000pt;}
.y71_c00127{bottom:560.373333pt;}
.y6d_c00127{bottom:569.893333pt;}
.y6e_c00127{bottom:570.840000pt;}
.y6c_c00127{bottom:571.040000pt;}
.y6a_c00127{bottom:571.226667pt;}
.y69_c00127{bottom:572.173333pt;}
.y6b_c00127{bottom:572.373333pt;}
.y67_c00127{bottom:581.893333pt;}
.y64_c00127{bottom:582.266667pt;}
.y68_c00127{bottom:582.840000pt;}
.y66_c00127{bottom:583.040000pt;}
.y63_c00127{bottom:583.226667pt;}
.y65_c00127{bottom:584.373333pt;}
.y62_c00127{bottom:593.893333pt;}
.y61_c00127{bottom:594.840000pt;}
.y60_c00127{bottom:596.173333pt;}
.y5f_c00127{bottom:611.226667pt;}
.y5e_c00127{bottom:612.173333pt;}
.y5c_c00127{bottom:621.893333pt;}
.y5d_c00127{bottom:622.840000pt;}
.y5a_c00127{bottom:623.226667pt;}
.y5b_c00127{bottom:625.506667pt;}
.y59_c00127{bottom:634.840000pt;}
.y58_c00127{bottom:636.173333pt;}
.y57_c00127{bottom:637.506667pt;}
.y55_c00127{bottom:652.733333pt;}
.y56_c00127{bottom:655.600000pt;}
.y53_c00127{bottom:666.066667pt;}
.y54_c00127{bottom:667.026667pt;}
.y52_c00127{bottom:667.973333pt;}
.y51_c00127{bottom:668.933333pt;}
.y50_c00127{bottom:686.840000pt;}
.y4f_c00127{bottom:687.600000pt;}
.y4c_c00127{bottom:713.106667pt;}
.y4b_c00127{bottom:715.026667pt;}
.y4e_c00127{bottom:715.226667pt;}
.y4d_c00127{bottom:715.973333pt;}
.y4a_c00127{bottom:729.693333pt;}
.y46_c00127{bottom:731.773333pt;}
.y47_c00127{bottom:732.560000pt;}
.y49_c00127{bottom:732.733333pt;}
.y48_c00127{bottom:733.693333pt;}
.y41_c00127{bottom:747.026667pt;}
.y42_c00127{bottom:749.106667pt;}
.y45_c00127{bottom:749.893333pt;}
.y44_c00127{bottom:750.066667pt;}
.y40_c00127{bottom:751.026667pt;}
.y43_c00127{bottom:751.973333pt;}
.y3d_c00127{bottom:766.440000pt;}
.y3e_c00127{bottom:767.973333pt;}
.y3c_c00127{bottom:768.360000pt;}
.y3f_c00127{bottom:769.306667pt;}
.y3b_c00127{bottom:783.773333pt;}
.y3a_c00127{bottom:784.560000pt;}
.y39_c00127{bottom:784.733333pt;}
.y38_c00127{bottom:785.693333pt;}
.y36_c00127{bottom:801.106667pt;}
.y34_c00127{bottom:802.066667pt;}
.y37_c00127{bottom:802.640000pt;}
.y33_c00127{bottom:803.026667pt;}
.y35_c00127{bottom:803.973333pt;}
.y32_c00127{bottom:817.693333pt;}
.y2e_c00127{bottom:818.440000pt;}
.y2d_c00127{bottom:818.826667pt;}
.y31_c00127{bottom:819.773333pt;}
.y30_c00127{bottom:820.360000pt;}
.y2f_c00127{bottom:821.693333pt;}
.y28_c00127{bottom:835.773333pt;}
.y29_c00127{bottom:835.973333pt;}
.y2a_c00127{bottom:837.693333pt;}
.y2b_c00127{bottom:838.640000pt;}
.y2c_c00127{bottom:839.026667pt;}
.y23_c00127{bottom:853.106667pt;}
.y27_c00127{bottom:853.893333pt;}
.y25_c00127{bottom:854.066667pt;}
.y22_c00127{bottom:855.026667pt;}
.y24_c00127{bottom:855.226667pt;}
.y26_c00127{bottom:855.973333pt;}
.y1d_c00127{bottom:870.440000pt;}
.y21_c00127{bottom:871.400000pt;}
.y20_c00127{bottom:871.773333pt;}
.y1c_c00127{bottom:872.360000pt;}
.y1f_c00127{bottom:872.560000pt;}
.y1e_c00127{bottom:873.693333pt;}
.y1b_c00127{bottom:888.733333pt;}
.y17_c00127{bottom:889.106667pt;}
.y15_c00127{bottom:889.693333pt;}
.y19_c00127{bottom:889.893333pt;}
.y1a_c00127{bottom:890.066667pt;}
.y18_c00127{bottom:890.640000pt;}
.y16_c00127{bottom:891.026667pt;}
.y13_c00127{bottom:905.106667pt;}
.ye_c00127{bottom:906.066667pt;}
.y11_c00127{bottom:906.440000pt;}
.yf_c00127{bottom:907.026667pt;}
.y12_c00127{bottom:907.226667pt;}
.y10_c00127{bottom:907.973333pt;}
.y14_c00127{bottom:908.360000pt;}
.y7_c00127{bottom:923.400000pt;}
.ya_c00127{bottom:923.773333pt;}
.yc_c00127{bottom:924.360000pt;}
.yb_c00127{bottom:924.560000pt;}
.yd_c00127{bottom:925.306667pt;}
.y8_c00127{bottom:925.693333pt;}
.y9_c00127{bottom:926.640000pt;}
.y4_c00127{bottom:941.106667pt;}
.y5_c00127{bottom:942.066667pt;}
.y6_c00127{bottom:942.640000pt;}
.y3_c00127{bottom:943.026667pt;}
.y1_c00127{bottom:975.773333pt;}
.y2_c00127{bottom:976.933333pt;}
.hb_c00127{height:3.739141pt;}
.hc_c00127{height:7.412682pt;}
.hd_c00127{height:12.988594pt;}
.h9_c00127{height:14.890964pt;}
.ha_c00127{height:20.224297pt;}
.h6_c00127{height:20.466875pt;}
.h2_c00127{height:22.303646pt;}
.h5_c00127{height:27.879557pt;}
.h3_c00127{height:31.618698pt;}
.h4_c00127{height:35.357839pt;}
.h1_c00127{height:39.031380pt;}
.h7_c00127{height:42.770521pt;}
.h8_c00127{height:47.618698pt;}
.h0_c00127{height:1186.666667pt;}
.w0_c00127{width:782.666667pt;}
.x0_c00127{left:0.000000pt;}
.x1_c00127{left:134.666667pt;}
.x74_c00127{left:136.373333pt;}
.x4d_c00127{left:149.333333pt;}
.x8b_c00127{left:153.333333pt;}
.x92_c00127{left:156.000000pt;}
.x56_c00127{left:160.000000pt;}
.x3d_c00127{left:161.706667pt;}
.x83_c00127{left:162.666667pt;}
.x75_c00127{left:165.333333pt;}
.xb2_c00127{left:167.040000pt;}
.xae_c00127{left:168.373333pt;}
.x31_c00127{left:169.333333pt;}
.x46_c00127{left:173.706667pt;}
.x94_c00127{left:175.626667pt;}
.xa1_c00127{left:180.373333pt;}
.x1c_c00127{left:181.333333pt;}
.xd_c00127{left:183.040000pt;}
.x60_c00127{left:184.960000pt;}
.x7c_c00127{left:188.373333pt;}
.x3e_c00127{left:190.666667pt;}
.xac_c00127{left:191.626667pt;}
.xc4_c00127{left:194.666667pt;}
.xba_c00127{left:196.000000pt;}
.xb3_c00127{left:198.666667pt;}
.x27_c00127{left:199.626667pt;}
.x3_c00127{left:201.333333pt;}
.xaf_c00127{left:203.626667pt;}
.xe_c00127{left:204.960000pt;}
.x76_c00127{left:206.666667pt;}
.xbb_c00127{left:208.000000pt;}
.xb4_c00127{left:210.666667pt;}
.x61_c00127{left:213.706667pt;}
.x57_c00127{left:215.626667pt;}
.x1d_c00127{left:217.706667pt;}
.xbf_c00127{left:218.666667pt;}
.xb0_c00127{left:219.626667pt;}
.x32_c00127{left:221.706667pt;}
.x28_c00127{left:228.000000pt;}
.xa2_c00127{left:231.626667pt;}
.x8c_c00127{left:234.666667pt;}
.xb5_c00127{left:236.000000pt;}
.x47_c00127{left:237.333333pt;}
.x1e_c00127{left:239.626667pt;}
.x6a_c00127{left:241.706667pt;}
.xf_c00127{left:242.666667pt;}
.x33_c00127{left:244.000000pt;}
.x62_c00127{left:244.960000pt;}
.xb6_c00127{left:248.373333pt;}
.xc3_c00127{left:250.666667pt;}
.xc0_c00127{left:252.373333pt;}
.x58_c00127{left:254.666667pt;}
.x29_c00127{left:259.626667pt;}
.x63_c00127{left:263.040000pt;}
.x6b_c00127{left:265.333333pt;}
.x48_c00127{left:266.666667pt;}
.x4_c00127{left:269.333333pt;}
.x84_c00127{left:270.666667pt;}
.x10_c00127{left:278.293333pt;}
.x4e_c00127{left:282.666667pt;}
.x64_c00127{left:286.666667pt;}
.x85_c00127{left:289.706667pt;}
.x1f_c00127{left:293.706667pt;}
.x11_c00127{left:294.666667pt;}
.x4f_c00127{left:297.333333pt;}
.x34_c00127{left:300.000000pt;}
.x6c_c00127{left:302.666667pt;}
.x95_c00127{left:304.000000pt;}
.x59_c00127{left:305.333333pt;}
.x5_c00127{left:308.373333pt;}
.x49_c00127{left:309.333333pt;}
.x50_c00127{left:312.000000pt;}
.x86_c00127{left:313.333333pt;}
.x9a_c00127{left:316.000000pt;}
.xa4_c00127{left:317.333333pt;}
.x7d_c00127{left:319.040000pt;}
.x12_c00127{left:320.000000pt;}
.x3f_c00127{left:321.706667pt;}
.x4a_c00127{left:324.000000pt;}
.x51_c00127{left:326.293333pt;}
.x77_c00127{left:332.000000pt;}
.x96_c00127{left:341.333333pt;}
.x20_c00127{left:343.040000pt;}
.x7e_c00127{left:344.000000pt;}
.x9d_c00127{left:345.333333pt;}
.xbc_c00127{left:348.000000pt;}
.x8d_c00127{left:350.293333pt;}
.x2a_c00127{left:352.000000pt;}
.x13_c00127{left:353.333333pt;}
.x2_c00127{left:354.666667pt;}
.x40_c00127{left:356.000000pt;}
.x87_c00127{left:363.626667pt;}
.x89_c00127{left:366.666667pt;}
.x8e_c00127{left:368.000000pt;}
.x2b_c00127{left:371.040000pt;}
.x7f_c00127{left:373.333333pt;}
.x41_c00127{left:374.293333pt;}
.x91_c00127{left:377.333333pt;}
.x65_c00127{left:380.000000pt;}
.x9e_c00127{left:381.333333pt;}
.xc1_c00127{left:384.000000pt;}
.xbd_c00127{left:385.333333pt;}
.xa3_c00127{left:388.000000pt;}
.xaa_c00127{left:389.333333pt;}
.x14_c00127{left:390.666667pt;}
.x8f_c00127{left:392.000000pt;}
.x21_c00127{left:396.000000pt;}
.x4b_c00127{left:398.666667pt;}
.x6_c00127{left:404.373333pt;}
.x8a_c00127{left:406.666667pt;}
.x35_c00127{left:408.000000pt;}
.x5a_c00127{left:413.333333pt;}
.x78_c00127{left:415.040000pt;}
.xa6_c00127{left:416.000000pt;}
.x4c_c00127{left:417.706667pt;}
.x52_c00127{left:421.333333pt;}
.x6d_c00127{left:424.373333pt;}
.xb8_c00127{left:425.333333pt;}
.x36_c00127{left:428.000000pt;}
.x42_c00127{left:431.626667pt;}
.x22_c00127{left:435.626667pt;}
.x37_c00127{left:438.293333pt;}
.x15_c00127{left:441.706667pt;}
.x7_c00127{left:445.333333pt;}
.x97_c00127{left:448.000000pt;}
.x9f_c00127{left:449.333333pt;}
.x23_c00127{left:452.373333pt;}
.x2c_c00127{left:453.333333pt;}
.x9b_c00127{left:456.000000pt;}
.x80_c00127{left:456.960000pt;}
.x6e_c00127{left:459.040000pt;}
.x79_c00127{left:461.333333pt;}
.x5b_c00127{left:466.293333pt;}
.x66_c00127{left:467.626667pt;}
.x90_c00127{left:468.573333pt;}
.x2d_c00127{left:472.000000pt;}
.x24_c00127{left:475.040000pt;}
.x38_c00127{left:476.960000pt;}
.xad_c00127{left:480.000000pt;}
.x43_c00127{left:481.333333pt;}
.x6f_c00127{left:482.666667pt;}
.xa7_c00127{left:485.333333pt;}
.x9c_c00127{left:488.000000pt;}
.xb9_c00127{left:489.333333pt;}
.x8_c00127{left:494.293333pt;}
.x16_c00127{left:496.000000pt;}
.x5c_c00127{left:506.666667pt;}
.x67_c00127{left:508.000000pt;}
.x9_c00127{left:510.666667pt;}
.x39_c00127{left:511.626667pt;}
.xa0_c00127{left:513.333333pt;}
.xab_c00127{left:514.666667pt;}
.x17_c00127{left:516.000000pt;}
.xa8_c00127{left:517.333333pt;}
.xb7_c00127{left:521.333333pt;}
.x25_c00127{left:522.666667pt;}
.x5d_c00127{left:525.706667pt;}
.x3a_c00127{left:526.666667pt;}
.x18_c00127{left:527.626667pt;}
.x70_c00127{left:529.333333pt;}
.x2e_c00127{left:532.000000pt;}
.x53_c00127{left:535.040000pt;}
.xa5_c00127{left:544.000000pt;}
.x98_c00127{left:545.333333pt;}
.xa_c00127{left:547.040000pt;}
.x71_c00127{left:548.000000pt;}
.xa9_c00127{left:549.333333pt;}
.x5e_c00127{left:550.666667pt;}
.x44_c00127{left:553.333333pt;}
.x3b_c00127{left:556.000000pt;}
.x54_c00127{left:558.666667pt;}
.x81_c00127{left:563.040000pt;}
.x68_c00127{left:566.666667pt;}
.x19_c00127{left:567.626667pt;}
.x26_c00127{left:569.706667pt;}
.x3c_c00127{left:572.373333pt;}
.x99_c00127{left:577.333333pt;}
.xb_c00127{left:580.000000pt;}
.x93_c00127{left:581.706667pt;}
.x88_c00127{left:582.666667pt;}
.x69_c00127{left:584.373333pt;}
.xbe_c00127{left:585.333333pt;}
.x2f_c00127{left:588.000000pt;}
.x45_c00127{left:589.333333pt;}
.xc_c00127{left:596.960000pt;}
.x55_c00127{left:598.293333pt;}
.x1a_c00127{left:603.626667pt;}
.x72_c00127{left:604.960000pt;}
.x7a_c00127{left:608.000000pt;}
.x5f_c00127{left:611.626667pt;}
.xb1_c00127{left:617.333333pt;}
.x1b_c00127{left:620.373333pt;}
.xc2_c00127{left:621.333333pt;}
.x30_c00127{left:629.706667pt;}
.x82_c00127{left:633.333333pt;}
.x7b_c00127{left:636.000000pt;}
.x73_c00127{left:636.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_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_98a300256693d8f27d98c3e4.woff2')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8f_c00128{transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);}
.m82_c00128{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.me_c00128{transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);}
.mfc_c00128{transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);}
.m43_c00128{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.maf_c00128{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.me7_c00128{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m89_c00128{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mcb_c00128{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m92_c00128{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.mbd_c00128{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m83_c00128{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m7f_c00128{transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);}
.mac_c00128{transform:matrix(0.381902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381902,0.000000,0.000000,0.250000,0,0);}
.m78_c00128{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m2c_c00128{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m58_c00128{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m8e_c00128{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m88_c00128{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mee_c00128{transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);}
.m45_c00128{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.mb5_c00128{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mc5_c00128{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.mb4_c00128{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.mfe_c00128{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m95_c00128{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m18_c00128{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mf1_c00128{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.m66_c00128{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m76_c00128{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m5d_c00128{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m36_c00128{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m17_c00128{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m9d_c00128{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.mb6_c00128{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m30_c00128{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m68_c00128{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m53_c00128{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m64_c00128{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m44_c00128{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.ma5_c00128{transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);}
.mfa_c00128{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m84_c00128{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.mb2_c00128{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m50_c00128{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m98_c00128{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.ma9_c00128{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.mc4_c00128{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m40_c00128{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m72_c00128{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m5_c00128{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.mc3_c00128{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m74_c00128{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m25_c00128{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m63_c00128{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m90_c00128{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m80_c00128{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mc9_c00128{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.med_c00128{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.mdb_c00128{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m61_c00128{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m94_c00128{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.meb_c00128{transform:matrix(0.428108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428108,0.000000,0.000000,0.250000,0,0);}
.m13_c00128{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.mf3_c00128{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m77_c00128{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m1d_c00128{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.md8_c00128{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m8_c00128{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m4c_c00128{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.ma4_c00128{transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);}
.m1a_c00128{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.ma7_c00128{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m96_c00128{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.me8_c00128{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m1e_c00128{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.mb7_c00128{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m22_c00128{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.ma2_c00128{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.m59_c00128{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mcf_c00128{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m9a_c00128{transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);}
.mf8_c00128{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m3e_c00128{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.mef_c00128{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.mdd_c00128{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.mbb_c00128{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.md_c00128{transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);}
.mf5_c00128{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m51_c00128{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mf2_c00128{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mb0_c00128{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m99_c00128{transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);}
.mba_c00128{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.mea_c00128{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.me4_c00128{transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);}
.m11_c00128{transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);}
.m9c_c00128{transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);}
.m6f_c00128{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m5c_c00128{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.md2_c00128{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.md6_c00128{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mb_c00128{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m5a_c00128{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m67_c00128{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m5f_c00128{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.m7b_c00128{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m7c_c00128{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mf9_c00128{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.ma3_c00128{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m37_c00128{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m7a_c00128{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mfb_c00128{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m57_c00128{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m71_c00128{transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);}
.m5b_c00128{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m8d_c00128{transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);}
.m23_c00128{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);}
.m56_c00128{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m24_c00128{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m54_c00128{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.maa_c00128{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m3b_c00128{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.mfd_c00128{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m70_c00128{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m6a_c00128{transform:matrix(0.509276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509276,0.000000,0.000000,0.250000,0,0);}
.m91_c00128{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.mae_c00128{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m9_c00128{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m73_c00128{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mbc_c00128{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m4b_c00128{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m28_c00128{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mf4_c00128{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m46_c00128{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m42_c00128{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mbf_c00128{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mce_c00128{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m4f_c00128{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m8c_c00128{transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);}
.m8a_c00128{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m3c_c00128{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.mca_c00128{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m1b_c00128{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m87_c00128{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m3_c00128{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.md3_c00128{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m7d_c00128{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m6b_c00128{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m16_c00128{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m6_c00128{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mbe_c00128{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mcd_c00128{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m2e_c00128{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m26_c00128{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m32_c00128{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m2b_c00128{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m31_c00128{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mad_c00128{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mf0_c00128{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);}
.m81_c00128{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.md5_c00128{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.mcc_c00128{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m85_c00128{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m62_c00128{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m2d_c00128{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m27_c00128{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m1_c00128{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.mb1_c00128{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m6e_c00128{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m4d_c00128{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m1c_c00128{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mc1_c00128{transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);}
.m38_c00128{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m55_c00128{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.ma_c00128{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m39_c00128{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.ma1_c00128{transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);}
.m3a_c00128{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m29_c00128{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.md1_c00128{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.ma0_c00128{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.ma8_c00128{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mc_c00128{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m69_c00128{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m48_c00128{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m86_c00128{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mde_c00128{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.mb9_c00128{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m14_c00128{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m41_c00128{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m12_c00128{transform:matrix(0.574675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574675,0.000000,0.000000,0.250000,0,0);}
.m65_c00128{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mc2_c00128{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.me5_c00128{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);}
.m2a_c00128{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.mf_c00128{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m97_c00128{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m6d_c00128{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.me9_c00128{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m8b_c00128{transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);}
.mc6_c00128{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.m7e_c00128{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m4e_c00128{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.me6_c00128{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.mc7_c00128{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.mf6_c00128{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m34_c00128{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m79_c00128{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m4a_c00128{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m52_c00128{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.m15_c00128{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m4_c00128{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m49_c00128{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mdc_c00128{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m93_c00128{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m6c_c00128{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.ma6_c00128{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);}
.m10_c00128{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);}
.mda_c00128{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.md9_c00128{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.me0_c00128{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.m7_c00128{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m9f_c00128{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.me2_c00128{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);}
.mdf_c00128{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.me1_c00128{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m1f_c00128{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.mab_c00128{transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);}
.m20_c00128{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m3d_c00128{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m9e_c00128{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m0_c00128{transform:matrix(0.673077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673077,0.000000,0.000000,0.250000,0,0);}
.md4_c00128{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.md0_c00128{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.md7_c00128{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m75_c00128{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.me3_c00128{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);}
.mf7_c00128{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.mb8_c00128{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.m2f_c00128{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m19_c00128{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m9b_c00128{transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);}
.m47_c00128{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m3f_c00128{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m60_c00128{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mc8_c00128{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mc0_c00128{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m5e_c00128{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m21_c00128{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.m2_c00128{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mec_c00128{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m33_c00128{transform:matrix(1.165865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.165865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.165865,0.000000,0.000000,0.250000,0,0);}
.m35_c00128{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.mb3_c00128{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00128{vertical-align:0.000000px;}
.ls0_c00128{letter-spacing:0.000000px;}
.sc__c00128{text-shadow:none;}
.sc0_c00128{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00128{-webkit-text-stroke:0px transparent;}
.sc0_c00128{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00128{word-spacing:-3.526072px;}
.ws0_c00128{word-spacing:-1.611816px;}
.ws2_c00128{word-spacing:0.000000px;}
.fc0_c00128{color:transparent;}
.fs5_c00128{font-size:3.420000px;}
.fs8_c00128{font-size:13.620000px;}
.fs0_c00128{font-size:18.720000px;}
.fs7_c00128{font-size:20.400000px;}
.fs1_c00128{font-size:25.500000px;}
.fs2_c00128{font-size:28.920000px;}
.fs3_c00128{font-size:32.340000px;}
.fs4_c00128{font-size:35.700000px;}
.fs6_c00128{font-size:39.120000px;}
.y0_c00128{bottom:0.000000px;}
.yb1_c00128{bottom:249.825000px;}
.yae_c00128{bottom:250.470000px;}
.yaf_c00128{bottom:251.325000px;}
.yb0_c00128{bottom:251.970000px;}
.yad_c00128{bottom:265.470000px;}
.yaa_c00128{bottom:265.905000px;}
.yab_c00128{bottom:266.130000px;}
.ya9_c00128{bottom:266.325000px;}
.ya5_c00128{bottom:266.550000px;}
.yac_c00128{bottom:266.970000px;}
.ya6_c00128{bottom:267.405000px;}
.ya8_c00128{bottom:267.630000px;}
.ya7_c00128{bottom:268.470000px;}
.ya2_c00128{bottom:280.905000px;}
.ya0_c00128{bottom:281.325000px;}
.ya1_c00128{bottom:282.630000px;}
.ya4_c00128{bottom:283.050000px;}
.ya3_c00128{bottom:283.470000px;}
.y9b_c00128{bottom:294.825000px;}
.y9a_c00128{bottom:295.050000px;}
.y9d_c00128{bottom:295.905000px;}
.y9f_c00128{bottom:296.130000px;}
.y9e_c00128{bottom:296.970000px;}
.y9c_c00128{bottom:297.195000px;}
.y98_c00128{bottom:309.825000px;}
.y99_c00128{bottom:310.905000px;}
.y96_c00128{bottom:312.195000px;}
.y97_c00128{bottom:313.050000px;}
.y94_c00128{bottom:325.905000px;}
.y92_c00128{bottom:326.130000px;}
.y95_c00128{bottom:326.970000px;}
.y93_c00128{bottom:328.050000px;}
.y91_c00128{bottom:338.325000px;}
.y8f_c00128{bottom:339.405000px;}
.y8c_c00128{bottom:340.905000px;}
.y8b_c00128{bottom:341.130000px;}
.y90_c00128{bottom:341.550000px;}
.y8d_c00128{bottom:341.970000px;}
.y8e_c00128{bottom:342.195000px;}
.y89_c00128{bottom:369.405000px;}
.y87_c00128{bottom:370.470000px;}
.y88_c00128{bottom:370.905000px;}
.y85_c00128{bottom:371.745000px;}
.y8a_c00128{bottom:372.405000px;}
.y86_c00128{bottom:373.905000px;}
.y84_c00128{bottom:374.970000px;}
.y82_c00128{bottom:391.245000px;}
.y81_c00128{bottom:393.405000px;}
.y83_c00128{bottom:393.630000px;}
.y7f_c00128{bottom:410.745000px;}
.y80_c00128{bottom:412.470000px;}
.y7e_c00128{bottom:412.905000px;}
.y7c_c00128{bottom:430.245000px;}
.y78_c00128{bottom:431.745000px;}
.y7d_c00128{bottom:431.970000px;}
.y7b_c00128{bottom:432.405000px;}
.y7a_c00128{bottom:432.630000px;}
.y79_c00128{bottom:433.905000px;}
.y76_c00128{bottom:449.745000px;}
.y75_c00128{bottom:451.905000px;}
.y77_c00128{bottom:452.130000px;}
.y73_c00128{bottom:453.405000px;}
.y74_c00128{bottom:453.420000px;}
.y72_c00128{bottom:471.825000px;}
.y70_c00128{bottom:472.905000px;}
.y71_c00128{bottom:472.920000px;}
.y6c_c00128{bottom:490.245000px;}
.y6f_c00128{bottom:491.130000px;}
.y6e_c00128{bottom:491.325000px;}
.y6d_c00128{bottom:492.420000px;}
.y69_c00128{bottom:509.745000px;}
.y6b_c00128{bottom:510.825000px;}
.y68_c00128{bottom:511.905000px;}
.y6a_c00128{bottom:512.970000px;}
.y67_c00128{bottom:528.180000px;}
.y61_c00128{bottom:529.245000px;}
.y64_c00128{bottom:530.325000px;}
.y66_c00128{bottom:530.970000px;}
.y63_c00128{bottom:531.405000px;}
.y65_c00128{bottom:531.630000px;}
.y62_c00128{bottom:532.920000px;}
.y5f_c00128{bottom:559.470000px;}
.y5c_c00128{bottom:559.905000px;}
.y60_c00128{bottom:560.550000px;}
.y5e_c00128{bottom:560.970000px;}
.y5b_c00128{bottom:561.405000px;}
.y5d_c00128{bottom:562.050000px;}
.y57_c00128{bottom:582.825000px;}
.y59_c00128{bottom:583.050000px;}
.y5a_c00128{bottom:584.130000px;}
.y58_c00128{bottom:584.970000px;}
.y56_c00128{bottom:614.745000px;}
.y55_c00128{bottom:615.825000px;}
.y54_c00128{bottom:669.405000px;}
.y52_c00128{bottom:685.680000px;}
.y51_c00128{bottom:686.745000px;}
.y53_c00128{bottom:688.905000px;}
.y4f_c00128{bottom:705.180000px;}
.y4e_c00128{bottom:705.405000px;}
.y4c_c00128{bottom:706.245000px;}
.y50_c00128{bottom:706.680000px;}
.y4d_c00128{bottom:708.405000px;}
.y4b_c00128{bottom:725.745000px;}
.y49_c00128{bottom:727.905000px;}
.y4a_c00128{bottom:728.970000px;}
.y46_c00128{bottom:747.405000px;}
.y47_c00128{bottom:747.630000px;}
.y48_c00128{bottom:748.470000px;}
.y44_c00128{bottom:766.245000px;}
.y45_c00128{bottom:768.405000px;}
.y43_c00128{bottom:785.325000px;}
.y42_c00128{bottom:786.405000px;}
.y40_c00128{bottom:786.630000px;}
.y41_c00128{bottom:787.470000px;}
.y3f_c00128{bottom:787.905000px;}
.y3c_c00128{bottom:803.745000px;}
.y3d_c00128{bottom:805.245000px;}
.y3e_c00128{bottom:806.325000px;}
.y3b_c00128{bottom:806.970000px;}
.y3a_c00128{bottom:807.405000px;}
.y38_c00128{bottom:824.745000px;}
.y37_c00128{bottom:825.630000px;}
.y39_c00128{bottom:826.470000px;}
.y36_c00128{bottom:826.905000px;}
.y34_c00128{bottom:844.245000px;}
.y32_c00128{bottom:845.325000px;}
.y33_c00128{bottom:846.405000px;}
.y35_c00128{bottom:846.630000px;}
.y31_c00128{bottom:863.745000px;}
.y30_c00128{bottom:865.470000px;}
.y2e_c00128{bottom:865.905000px;}
.y2f_c00128{bottom:866.970000px;}
.y2b_c00128{bottom:883.245000px;}
.y2a_c00128{bottom:885.405000px;}
.y2d_c00128{bottom:885.630000px;}
.y2c_c00128{bottom:886.470000px;}
.y23_c00128{bottom:902.745000px;}
.y29_c00128{bottom:903.825000px;}
.y24_c00128{bottom:904.245000px;}
.y27_c00128{bottom:904.905000px;}
.y26_c00128{bottom:905.130000px;}
.y28_c00128{bottom:905.970000px;}
.y25_c00128{bottom:906.405000px;}
.y22_c00128{bottom:923.745000px;}
.y20_c00128{bottom:924.630000px;}
.y21_c00128{bottom:925.470000px;}
.y1f_c00128{bottom:925.905000px;}
.y1e_c00128{bottom:943.245000px;}
.y1b_c00128{bottom:944.970000px;}
.y1d_c00128{bottom:945.405000px;}
.y1c_c00128{bottom:945.420000px;}
.y19_c00128{bottom:962.745000px;}
.y18_c00128{bottom:963.630000px;}
.y1a_c00128{bottom:964.905000px;}
.y17_c00128{bottom:982.245000px;}
.y16_c00128{bottom:983.970000px;}
.y15_c00128{bottom:984.405000px;}
.y14_c00128{bottom:1001.745000px;}
.y12_c00128{bottom:1003.905000px;}
.y13_c00128{bottom:1004.130000px;}
.ye_c00128{bottom:1021.245000px;}
.y10_c00128{bottom:1022.970000px;}
.yf_c00128{bottom:1023.405000px;}
.y11_c00128{bottom:1023.630000px;}
.yd_c00128{bottom:1024.470000px;}
.ya_c00128{bottom:1039.470000px;}
.y8_c00128{bottom:1040.745000px;}
.yb_c00128{bottom:1041.825000px;}
.yc_c00128{bottom:1042.470000px;}
.y9_c00128{bottom:1042.905000px;}
.y7_c00128{bottom:1060.245000px;}
.y3_c00128{bottom:1061.130000px;}
.y6_c00128{bottom:1061.325000px;}
.y4_c00128{bottom:1062.405000px;}
.y5_c00128{bottom:1063.470000px;}
.y2_c00128{bottom:1099.470000px;}
.y1_c00128{bottom:1101.630000px;}
.h6_c00128{height:4.206533px;}
.h9_c00128{height:16.752334px;}
.h1_c00128{height:23.025234px;}
.h8_c00128{height:25.091602px;}
.h2_c00128{height:31.364502px;}
.h3_c00128{height:35.571035px;}
.h4_c00128{height:39.777568px;}
.h5_c00128{height:43.910303px;}
.h7_c00128{height:48.116836px;}
.h0_c00128{height:1335.000000px;}
.w0_c00128{width:880.500000px;}
.x0_c00128{left:0.000000px;}
.x3_c00128{left:151.080000px;}
.x54_c00128{left:153.000000px;}
.xca_c00128{left:154.500000px;}
.xef_c00128{left:155.580000px;}
.xeb_c00128{left:157.500000px;}
.x30_c00128{left:166.500000px;}
.x3e_c00128{left:168.000000px;}
.x9e_c00128{left:169.500000px;}
.x1c_c00128{left:171.420000px;}
.x3a_c00128{left:177.420000px;}
.xd6_c00128{left:180.420000px;}
.x29_c00128{left:181.500000px;}
.x4_c00128{left:184.080000px;}
.x60_c00128{left:186.000000px;}
.x55_c00128{left:187.500000px;}
.xf7_c00128{left:192.000000px;}
.x6a_c00128{left:195.000000px;}
.x97_c00128{left:196.920000px;}
.x31_c00128{left:199.080000px;}
.x10_c00128{left:201.000000px;}
.x9f_c00128{left:202.080000px;}
.x91_c00128{left:211.500000px;}
.xd0_c00128{left:213.000000px;}
.x11_c00128{left:216.000000px;}
.x9b_c00128{left:219.000000px;}
.x3b_c00128{left:220.500000px;}
.x75_c00128{left:222.000000px;}
.x86_c00128{left:223.920000px;}
.x1d_c00128{left:228.000000px;}
.x61_c00128{left:229.920000px;}
.xc1_c00128{left:232.500000px;}
.xf8_c00128{left:235.080000px;}
.x2a_c00128{left:237.420000px;}
.x3c_c00128{left:238.500000px;}
.x6b_c00128{left:241.080000px;}
.xb0_c00128{left:244.920000px;}
.x49_c00128{left:246.000000px;}
.x92_c00128{left:247.500000px;}
.x5_c00128{left:249.000000px;}
.x87_c00128{left:250.920000px;}
.xf0_c00128{left:252.000000px;}
.x1e_c00128{left:255.000000px;}
.x3f_c00128{left:256.500000px;}
.x6c_c00128{left:259.500000px;}
.x56_c00128{left:261.000000px;}
.x32_c00128{left:262.080000px;}
.xc7_c00128{left:264.000000px;}
.xd7_c00128{left:265.500000px;}
.x62_c00128{left:267.000000px;}
.x76_c00128{left:268.500000px;}
.x4a_c00128{left:271.080000px;}
.xbf_c00128{left:276.000000px;}
.x6_c00128{left:277.500000px;}
.x12_c00128{left:279.420000px;}
.xab_c00128{left:281.580000px;}
.x3d_c00128{left:283.500000px;}
.x88_c00128{left:285.000000px;}
.x6d_c00128{left:286.080000px;}
.x63_c00128{left:287.580000px;}
.x40_c00128{left:289.500000px;}
.x33_c00128{left:292.500000px;}
.xdb_c00128{left:295.080000px;}
.x1f_c00128{left:296.580000px;}
.x57_c00128{left:300.000000px;}
.xec_c00128{left:301.920000px;}
.xf1_c00128{left:304.500000px;}
.x9c_c00128{left:305.580000px;}
.xb1_c00128{left:307.920000px;}
.xd1_c00128{left:310.500000px;}
.xe6_c00128{left:312.000000px;}
.x2b_c00128{left:313.500000px;}
.x20_c00128{left:316.920000px;}
.x98_c00128{left:318.000000px;}
.x7f_c00128{left:319.080000px;}
.x58_c00128{left:322.500000px;}
.x77_c00128{left:324.000000px;}
.xb5_c00128{left:325.500000px;}
.xe1_c00128{left:328.080000px;}
.x13_c00128{left:331.500000px;}
.x89_c00128{left:332.580000px;}
.xe7_c00128{left:334.080000px;}
.x4b_c00128{left:336.000000px;}
.x7_c00128{left:339.420000px;}
.xa0_c00128{left:340.500000px;}
.x21_c00128{left:345.420000px;}
.x80_c00128{left:348.000000px;}
.x64_c00128{left:350.580000px;}
.x4c_c00128{left:354.000000px;}
.x2c_c00128{left:355.080000px;}
.xa6_c00128{left:358.080000px;}
.xd2_c00128{left:361.500000px;}
.x41_c00128{left:362.580000px;}
.x93_c00128{left:364.920000px;}
.x8_c00128{left:367.080000px;}
.xc8_c00128{left:372.000000px;}
.xa9_c00128{left:373.500000px;}
.x2d_c00128{left:375.420000px;}
.x8a_c00128{left:378.000000px;}
.x14_c00128{left:379.500000px;}
.x42_c00128{left:382.080000px;}
.xdc_c00128{left:384.420000px;}
.xe2_c00128{left:385.500000px;}
.xb6_c00128{left:387.420000px;}
.xd8_c00128{left:388.500000px;}
.xac_c00128{left:391.500000px;}
.x6e_c00128{left:393.420000px;}
.xc5_c00128{left:394.500000px;}
.x59_c00128{left:396.420000px;}
.x1_c00128{left:399.000000px;}
.x65_c00128{left:400.500000px;}
.x9d_c00128{left:401.580000px;}
.x2e_c00128{left:405.000000px;}
.xc9_c00128{left:408.000000px;}
.x9_c00128{left:411.000000px;}
.xdd_c00128{left:412.080000px;}
.xc2_c00128{left:413.145000px;}
.xcb_c00128{left:415.500000px;}
.x6f_c00128{left:420.000000px;}
.x22_c00128{left:421.500000px;}
.x4d_c00128{left:423.000000px;}
.xc6_c00128{left:424.500000px;}
.xd9_c00128{left:426.000000px;}
.xe3_c00128{left:430.500000px;}
.x34_c00128{left:433.080000px;}
.x78_c00128{left:435.420000px;}
.x4e_c00128{left:436.920000px;}
.x66_c00128{left:438.000000px;}
.xde_c00128{left:442.500000px;}
.xc3_c00128{left:444.000000px;}
.xa1_c00128{left:445.080000px;}
.x15_c00128{left:448.080000px;}
.xe8_c00128{left:449.580000px;}
.xd3_c00128{left:451.920000px;}
.x35_c00128{left:453.000000px;}
.xb7_c00128{left:456.000000px;}
.x2f_c00128{left:457.500000px;}
.xdf_c00128{left:459.000000px;}
.x5a_c00128{left:462.000000px;}
.x94_c00128{left:464.580000px;}
.xa2_c00128{left:466.920000px;}
.x16_c00128{left:468.420000px;}
.xa_c00128{left:469.500000px;}
.xad_c00128{left:470.580000px;}
.xc0_c00128{left:472.500000px;}
.x43_c00128{left:475.920000px;}
.x36_c00128{left:479.580000px;}
.x81_c00128{left:481.500000px;}
.x8b_c00128{left:484.500000px;}
.xb2_c00128{left:487.920000px;}
.xb8_c00128{left:489.000000px;}
.x23_c00128{left:490.500000px;}
.x79_c00128{left:492.000000px;}
.x70_c00128{left:493.920000px;}
.x95_c00128{left:495.000000px;}
.x17_c00128{left:496.500000px;}
.xae_c00128{left:498.000000px;}
.x8c_c00128{left:501.000000px;}
.xf2_c00128{left:502.500000px;}
.xc4_c00128{left:504.000000px;}
.x5b_c00128{left:507.420000px;}
.x99_c00128{left:508.920000px;}
.xe9_c00128{left:510.420000px;}
.x7a_c00128{left:513.000000px;}
.xf3_c00128{left:514.500000px;}
.x4f_c00128{left:515.580000px;}
.xa7_c00128{left:517.920000px;}
.xcc_c00128{left:520.920000px;}
.xb9_c00128{left:523.500000px;}
.xb_c00128{left:525.420000px;}
.x67_c00128{left:526.500000px;}
.x18_c00128{left:528.000000px;}
.xe4_c00128{left:529.500000px;}
.x44_c00128{left:532.080000px;}
.x50_c00128{left:534.420000px;}
.xaa_c00128{left:538.080000px;}
.x5c_c00128{left:541.500000px;}
.x71_c00128{left:546.000000px;}
.xcd_c00128{left:549.000000px;}
.x24_c00128{left:550.920000px;}
.x37_c00128{left:552.000000px;}
.xf4_c00128{left:553.080000px;}
.xba_c00128{left:554.145000px;}
.x8d_c00128{left:556.500000px;}
.x82_c00128{left:558.000000px;}
.x51_c00128{left:559.920000px;}
.xc_c00128{left:564.420000px;}
.xaf_c00128{left:568.275000px;}
.xa3_c00128{left:569.580000px;}
.x19_c00128{left:573.000000px;}
.xd4_c00128{left:574.920000px;}
.x8e_c00128{left:576.000000px;}
.x45_c00128{left:577.080000px;}
.xf5_c00128{left:579.000000px;}
.x7b_c00128{left:582.420000px;}
.xb3_c00128{left:583.500000px;}
.xe5_c00128{left:586.500000px;}
.x5d_c00128{left:587.580000px;}
.x68_c00128{left:589.920000px;}
.xf6_c00128{left:591.000000px;}
.xd_c00128{left:592.500000px;}
.xce_c00128{left:594.000000px;}
.xbb_c00128{left:595.920000px;}
.x72_c00128{left:599.580000px;}
.xa8_c00128{left:601.500000px;}
.xb4_c00128{left:602.580000px;}
.x5e_c00128{left:604.920000px;}
.x83_c00128{left:606.420000px;}
.xd5_c00128{left:608.580000px;}
.x7c_c00128{left:612.000000px;}
.x73_c00128{left:616.920000px;}
.xbc_c00128{left:618.420000px;}
.x8f_c00128{left:622.920000px;}
.x46_c00128{left:625.080000px;}
.x38_c00128{left:627.420000px;}
.x25_c00128{left:628.500000px;}
.x5f_c00128{left:631.920000px;}
.xed_c00128{left:634.080000px;}
.xe_c00128{left:640.920000px;}
.xa4_c00128{left:642.000000px;}
.x84_c00128{left:643.920000px;}
.x52_c00128{left:645.000000px;}
.x1a_c00128{left:646.080000px;}
.x9a_c00128{left:649.500000px;}
.x7d_c00128{left:652.500000px;}
.x47_c00128{left:655.920000px;}
.x74_c00128{left:657.000000px;}
.x26_c00128{left:658.920000px;}
.x90_c00128{left:661.920000px;}
.x39_c00128{left:664.080000px;}
.xe0_c00128{left:670.500000px;}
.xbd_c00128{left:673.920000px;}
.x53_c00128{left:675.645000px;}
.x27_c00128{left:678.420000px;}
.xf_c00128{left:679.500000px;}
.x7e_c00128{left:681.420000px;}
.xea_c00128{left:682.500000px;}
.x48_c00128{left:683.580000px;}
.x85_c00128{left:688.500000px;}
.x1b_c00128{left:691.500000px;}
.xcf_c00128{left:694.080000px;}
.x96_c00128{left:700.500000px;}
.xda_c00128{left:702.000000px;}
.xee_c00128{left:705.000000px;}
.x69_c00128{left:708.420000px;}
.x2_c00128{left:712.080000px;}
.x28_c00128{left:715.500000px;}
.xa5_c00128{left:716.580000px;}
.xbe_c00128{left:721.920000px;}
@media print{
.v0_c00128{vertical-align:0.000000pt;}
.ls0_c00128{letter-spacing:0.000000pt;}
.ws1_c00128{word-spacing:-3.134286pt;}
.ws0_c00128{word-spacing:-1.432725pt;}
.ws2_c00128{word-spacing:0.000000pt;}
.fs5_c00128{font-size:3.040000pt;}
.fs8_c00128{font-size:12.106667pt;}
.fs0_c00128{font-size:16.640000pt;}
.fs7_c00128{font-size:18.133333pt;}
.fs1_c00128{font-size:22.666667pt;}
.fs2_c00128{font-size:25.706667pt;}
.fs3_c00128{font-size:28.746667pt;}
.fs4_c00128{font-size:31.733333pt;}
.fs6_c00128{font-size:34.773333pt;}
.y0_c00128{bottom:0.000000pt;}
.yb1_c00128{bottom:222.066667pt;}
.yae_c00128{bottom:222.640000pt;}
.yaf_c00128{bottom:223.400000pt;}
.yb0_c00128{bottom:223.973333pt;}
.yad_c00128{bottom:235.973333pt;}
.yaa_c00128{bottom:236.360000pt;}
.yab_c00128{bottom:236.560000pt;}
.ya9_c00128{bottom:236.733333pt;}
.ya5_c00128{bottom:236.933333pt;}
.yac_c00128{bottom:237.306667pt;}
.ya6_c00128{bottom:237.693333pt;}
.ya8_c00128{bottom:237.893333pt;}
.ya7_c00128{bottom:238.640000pt;}
.ya2_c00128{bottom:249.693333pt;}
.ya0_c00128{bottom:250.066667pt;}
.ya1_c00128{bottom:251.226667pt;}
.ya4_c00128{bottom:251.600000pt;}
.ya3_c00128{bottom:251.973333pt;}
.y9b_c00128{bottom:262.066667pt;}
.y9a_c00128{bottom:262.266667pt;}
.y9d_c00128{bottom:263.026667pt;}
.y9f_c00128{bottom:263.226667pt;}
.y9e_c00128{bottom:263.973333pt;}
.y9c_c00128{bottom:264.173333pt;}
.y98_c00128{bottom:275.400000pt;}
.y99_c00128{bottom:276.360000pt;}
.y96_c00128{bottom:277.506667pt;}
.y97_c00128{bottom:278.266667pt;}
.y94_c00128{bottom:289.693333pt;}
.y92_c00128{bottom:289.893333pt;}
.y95_c00128{bottom:290.640000pt;}
.y93_c00128{bottom:291.600000pt;}
.y91_c00128{bottom:300.733333pt;}
.y8f_c00128{bottom:301.693333pt;}
.y8c_c00128{bottom:303.026667pt;}
.y8b_c00128{bottom:303.226667pt;}
.y90_c00128{bottom:303.600000pt;}
.y8d_c00128{bottom:303.973333pt;}
.y8e_c00128{bottom:304.173333pt;}
.y89_c00128{bottom:328.360000pt;}
.y87_c00128{bottom:329.306667pt;}
.y88_c00128{bottom:329.693333pt;}
.y85_c00128{bottom:330.440000pt;}
.y8a_c00128{bottom:331.026667pt;}
.y86_c00128{bottom:332.360000pt;}
.y84_c00128{bottom:333.306667pt;}
.y82_c00128{bottom:347.773333pt;}
.y81_c00128{bottom:349.693333pt;}
.y83_c00128{bottom:349.893333pt;}
.y7f_c00128{bottom:365.106667pt;}
.y80_c00128{bottom:366.640000pt;}
.y7e_c00128{bottom:367.026667pt;}
.y7c_c00128{bottom:382.440000pt;}
.y78_c00128{bottom:383.773333pt;}
.y7d_c00128{bottom:383.973333pt;}
.y7b_c00128{bottom:384.360000pt;}
.y7a_c00128{bottom:384.560000pt;}
.y79_c00128{bottom:385.693333pt;}
.y76_c00128{bottom:399.773333pt;}
.y75_c00128{bottom:401.693333pt;}
.y77_c00128{bottom:401.893333pt;}
.y73_c00128{bottom:403.026667pt;}
.y74_c00128{bottom:403.040000pt;}
.y72_c00128{bottom:419.400000pt;}
.y70_c00128{bottom:420.360000pt;}
.y71_c00128{bottom:420.373333pt;}
.y6c_c00128{bottom:435.773333pt;}
.y6f_c00128{bottom:436.560000pt;}
.y6e_c00128{bottom:436.733333pt;}
.y6d_c00128{bottom:437.706667pt;}
.y69_c00128{bottom:453.106667pt;}
.y6b_c00128{bottom:454.066667pt;}
.y68_c00128{bottom:455.026667pt;}
.y6a_c00128{bottom:455.973333pt;}
.y67_c00128{bottom:469.493333pt;}
.y61_c00128{bottom:470.440000pt;}
.y64_c00128{bottom:471.400000pt;}
.y66_c00128{bottom:471.973333pt;}
.y63_c00128{bottom:472.360000pt;}
.y65_c00128{bottom:472.560000pt;}
.y62_c00128{bottom:473.706667pt;}
.y5f_c00128{bottom:497.306667pt;}
.y5c_c00128{bottom:497.693333pt;}
.y60_c00128{bottom:498.266667pt;}
.y5e_c00128{bottom:498.640000pt;}
.y5b_c00128{bottom:499.026667pt;}
.y5d_c00128{bottom:499.600000pt;}
.y57_c00128{bottom:518.066667pt;}
.y59_c00128{bottom:518.266667pt;}
.y5a_c00128{bottom:519.226667pt;}
.y58_c00128{bottom:519.973333pt;}
.y56_c00128{bottom:546.440000pt;}
.y55_c00128{bottom:547.400000pt;}
.y54_c00128{bottom:595.026667pt;}
.y52_c00128{bottom:609.493333pt;}
.y51_c00128{bottom:610.440000pt;}
.y53_c00128{bottom:612.360000pt;}
.y4f_c00128{bottom:626.826667pt;}
.y4e_c00128{bottom:627.026667pt;}
.y4c_c00128{bottom:627.773333pt;}
.y50_c00128{bottom:628.160000pt;}
.y4d_c00128{bottom:629.693333pt;}
.y4b_c00128{bottom:645.106667pt;}
.y49_c00128{bottom:647.026667pt;}
.y4a_c00128{bottom:647.973333pt;}
.y46_c00128{bottom:664.360000pt;}
.y47_c00128{bottom:664.560000pt;}
.y48_c00128{bottom:665.306667pt;}
.y44_c00128{bottom:681.106667pt;}
.y45_c00128{bottom:683.026667pt;}
.y43_c00128{bottom:698.066667pt;}
.y42_c00128{bottom:699.026667pt;}
.y40_c00128{bottom:699.226667pt;}
.y41_c00128{bottom:699.973333pt;}
.y3f_c00128{bottom:700.360000pt;}
.y3c_c00128{bottom:714.440000pt;}
.y3d_c00128{bottom:715.773333pt;}
.y3e_c00128{bottom:716.733333pt;}
.y3b_c00128{bottom:717.306667pt;}
.y3a_c00128{bottom:717.693333pt;}
.y38_c00128{bottom:733.106667pt;}
.y37_c00128{bottom:733.893333pt;}
.y39_c00128{bottom:734.640000pt;}
.y36_c00128{bottom:735.026667pt;}
.y34_c00128{bottom:750.440000pt;}
.y32_c00128{bottom:751.400000pt;}
.y33_c00128{bottom:752.360000pt;}
.y35_c00128{bottom:752.560000pt;}
.y31_c00128{bottom:767.773333pt;}
.y30_c00128{bottom:769.306667pt;}
.y2e_c00128{bottom:769.693333pt;}
.y2f_c00128{bottom:770.640000pt;}
.y2b_c00128{bottom:785.106667pt;}
.y2a_c00128{bottom:787.026667pt;}
.y2d_c00128{bottom:787.226667pt;}
.y2c_c00128{bottom:787.973333pt;}
.y23_c00128{bottom:802.440000pt;}
.y29_c00128{bottom:803.400000pt;}
.y24_c00128{bottom:803.773333pt;}
.y27_c00128{bottom:804.360000pt;}
.y26_c00128{bottom:804.560000pt;}
.y28_c00128{bottom:805.306667pt;}
.y25_c00128{bottom:805.693333pt;}
.y22_c00128{bottom:821.106667pt;}
.y20_c00128{bottom:821.893333pt;}
.y21_c00128{bottom:822.640000pt;}
.y1f_c00128{bottom:823.026667pt;}
.y1e_c00128{bottom:838.440000pt;}
.y1b_c00128{bottom:839.973333pt;}
.y1d_c00128{bottom:840.360000pt;}
.y1c_c00128{bottom:840.373333pt;}
.y19_c00128{bottom:855.773333pt;}
.y18_c00128{bottom:856.560000pt;}
.y1a_c00128{bottom:857.693333pt;}
.y17_c00128{bottom:873.106667pt;}
.y16_c00128{bottom:874.640000pt;}
.y15_c00128{bottom:875.026667pt;}
.y14_c00128{bottom:890.440000pt;}
.y12_c00128{bottom:892.360000pt;}
.y13_c00128{bottom:892.560000pt;}
.ye_c00128{bottom:907.773333pt;}
.y10_c00128{bottom:909.306667pt;}
.yf_c00128{bottom:909.693333pt;}
.y11_c00128{bottom:909.893333pt;}
.yd_c00128{bottom:910.640000pt;}
.ya_c00128{bottom:923.973333pt;}
.y8_c00128{bottom:925.106667pt;}
.yb_c00128{bottom:926.066667pt;}
.yc_c00128{bottom:926.640000pt;}
.y9_c00128{bottom:927.026667pt;}
.y7_c00128{bottom:942.440000pt;}
.y3_c00128{bottom:943.226667pt;}
.y6_c00128{bottom:943.400000pt;}
.y4_c00128{bottom:944.360000pt;}
.y5_c00128{bottom:945.306667pt;}
.y2_c00128{bottom:977.306667pt;}
.y1_c00128{bottom:979.226667pt;}
.h6_c00128{height:3.739141pt;}
.h9_c00128{height:14.890964pt;}
.h1_c00128{height:20.466875pt;}
.h8_c00128{height:22.303646pt;}
.h2_c00128{height:27.879557pt;}
.h3_c00128{height:31.618698pt;}
.h4_c00128{height:35.357839pt;}
.h5_c00128{height:39.031380pt;}
.h7_c00128{height:42.770521pt;}
.h0_c00128{height:1186.666667pt;}
.w0_c00128{width:782.666667pt;}
.x0_c00128{left:0.000000pt;}
.x3_c00128{left:134.293333pt;}
.x54_c00128{left:136.000000pt;}
.xca_c00128{left:137.333333pt;}
.xef_c00128{left:138.293333pt;}
.xeb_c00128{left:140.000000pt;}
.x30_c00128{left:148.000000pt;}
.x3e_c00128{left:149.333333pt;}
.x9e_c00128{left:150.666667pt;}
.x1c_c00128{left:152.373333pt;}
.x3a_c00128{left:157.706667pt;}
.xd6_c00128{left:160.373333pt;}
.x29_c00128{left:161.333333pt;}
.x4_c00128{left:163.626667pt;}
.x60_c00128{left:165.333333pt;}
.x55_c00128{left:166.666667pt;}
.xf7_c00128{left:170.666667pt;}
.x6a_c00128{left:173.333333pt;}
.x97_c00128{left:175.040000pt;}
.x31_c00128{left:176.960000pt;}
.x10_c00128{left:178.666667pt;}
.x9f_c00128{left:179.626667pt;}
.x91_c00128{left:188.000000pt;}
.xd0_c00128{left:189.333333pt;}
.x11_c00128{left:192.000000pt;}
.x9b_c00128{left:194.666667pt;}
.x3b_c00128{left:196.000000pt;}
.x75_c00128{left:197.333333pt;}
.x86_c00128{left:199.040000pt;}
.x1d_c00128{left:202.666667pt;}
.x61_c00128{left:204.373333pt;}
.xc1_c00128{left:206.666667pt;}
.xf8_c00128{left:208.960000pt;}
.x2a_c00128{left:211.040000pt;}
.x3c_c00128{left:212.000000pt;}
.x6b_c00128{left:214.293333pt;}
.xb0_c00128{left:217.706667pt;}
.x49_c00128{left:218.666667pt;}
.x92_c00128{left:220.000000pt;}
.x5_c00128{left:221.333333pt;}
.x87_c00128{left:223.040000pt;}
.xf0_c00128{left:224.000000pt;}
.x1e_c00128{left:226.666667pt;}
.x3f_c00128{left:228.000000pt;}
.x6c_c00128{left:230.666667pt;}
.x56_c00128{left:232.000000pt;}
.x32_c00128{left:232.960000pt;}
.xc7_c00128{left:234.666667pt;}
.xd7_c00128{left:236.000000pt;}
.x62_c00128{left:237.333333pt;}
.x76_c00128{left:238.666667pt;}
.x4a_c00128{left:240.960000pt;}
.xbf_c00128{left:245.333333pt;}
.x6_c00128{left:246.666667pt;}
.x12_c00128{left:248.373333pt;}
.xab_c00128{left:250.293333pt;}
.x3d_c00128{left:252.000000pt;}
.x88_c00128{left:253.333333pt;}
.x6d_c00128{left:254.293333pt;}
.x63_c00128{left:255.626667pt;}
.x40_c00128{left:257.333333pt;}
.x33_c00128{left:260.000000pt;}
.xdb_c00128{left:262.293333pt;}
.x1f_c00128{left:263.626667pt;}
.x57_c00128{left:266.666667pt;}
.xec_c00128{left:268.373333pt;}
.xf1_c00128{left:270.666667pt;}
.x9c_c00128{left:271.626667pt;}
.xb1_c00128{left:273.706667pt;}
.xd1_c00128{left:276.000000pt;}
.xe6_c00128{left:277.333333pt;}
.x2b_c00128{left:278.666667pt;}
.x20_c00128{left:281.706667pt;}
.x98_c00128{left:282.666667pt;}
.x7f_c00128{left:283.626667pt;}
.x58_c00128{left:286.666667pt;}
.x77_c00128{left:288.000000pt;}
.xb5_c00128{left:289.333333pt;}
.xe1_c00128{left:291.626667pt;}
.x13_c00128{left:294.666667pt;}
.x89_c00128{left:295.626667pt;}
.xe7_c00128{left:296.960000pt;}
.x4b_c00128{left:298.666667pt;}
.x7_c00128{left:301.706667pt;}
.xa0_c00128{left:302.666667pt;}
.x21_c00128{left:307.040000pt;}
.x80_c00128{left:309.333333pt;}
.x64_c00128{left:311.626667pt;}
.x4c_c00128{left:314.666667pt;}
.x2c_c00128{left:315.626667pt;}
.xa6_c00128{left:318.293333pt;}
.xd2_c00128{left:321.333333pt;}
.x41_c00128{left:322.293333pt;}
.x93_c00128{left:324.373333pt;}
.x8_c00128{left:326.293333pt;}
.xc8_c00128{left:330.666667pt;}
.xa9_c00128{left:332.000000pt;}
.x2d_c00128{left:333.706667pt;}
.x8a_c00128{left:336.000000pt;}
.x14_c00128{left:337.333333pt;}
.x42_c00128{left:339.626667pt;}
.xdc_c00128{left:341.706667pt;}
.xe2_c00128{left:342.666667pt;}
.xb6_c00128{left:344.373333pt;}
.xd8_c00128{left:345.333333pt;}
.xac_c00128{left:348.000000pt;}
.x6e_c00128{left:349.706667pt;}
.xc5_c00128{left:350.666667pt;}
.x59_c00128{left:352.373333pt;}
.x1_c00128{left:354.666667pt;}
.x65_c00128{left:356.000000pt;}
.x9d_c00128{left:356.960000pt;}
.x2e_c00128{left:360.000000pt;}
.xc9_c00128{left:362.666667pt;}
.x9_c00128{left:365.333333pt;}
.xdd_c00128{left:366.293333pt;}
.xc2_c00128{left:367.240000pt;}
.xcb_c00128{left:369.333333pt;}
.x6f_c00128{left:373.333333pt;}
.x22_c00128{left:374.666667pt;}
.x4d_c00128{left:376.000000pt;}
.xc6_c00128{left:377.333333pt;}
.xd9_c00128{left:378.666667pt;}
.xe3_c00128{left:382.666667pt;}
.x34_c00128{left:384.960000pt;}
.x78_c00128{left:387.040000pt;}
.x4e_c00128{left:388.373333pt;}
.x66_c00128{left:389.333333pt;}
.xde_c00128{left:393.333333pt;}
.xc3_c00128{left:394.666667pt;}
.xa1_c00128{left:395.626667pt;}
.x15_c00128{left:398.293333pt;}
.xe8_c00128{left:399.626667pt;}
.xd3_c00128{left:401.706667pt;}
.x35_c00128{left:402.666667pt;}
.xb7_c00128{left:405.333333pt;}
.x2f_c00128{left:406.666667pt;}
.xdf_c00128{left:408.000000pt;}
.x5a_c00128{left:410.666667pt;}
.x94_c00128{left:412.960000pt;}
.xa2_c00128{left:415.040000pt;}
.x16_c00128{left:416.373333pt;}
.xa_c00128{left:417.333333pt;}
.xad_c00128{left:418.293333pt;}
.xc0_c00128{left:420.000000pt;}
.x43_c00128{left:423.040000pt;}
.x36_c00128{left:426.293333pt;}
.x81_c00128{left:428.000000pt;}
.x8b_c00128{left:430.666667pt;}
.xb2_c00128{left:433.706667pt;}
.xb8_c00128{left:434.666667pt;}
.x23_c00128{left:436.000000pt;}
.x79_c00128{left:437.333333pt;}
.x70_c00128{left:439.040000pt;}
.x95_c00128{left:440.000000pt;}
.x17_c00128{left:441.333333pt;}
.xae_c00128{left:442.666667pt;}
.x8c_c00128{left:445.333333pt;}
.xf2_c00128{left:446.666667pt;}
.xc4_c00128{left:448.000000pt;}
.x5b_c00128{left:451.040000pt;}
.x99_c00128{left:452.373333pt;}
.xe9_c00128{left:453.706667pt;}
.x7a_c00128{left:456.000000pt;}
.xf3_c00128{left:457.333333pt;}
.x4f_c00128{left:458.293333pt;}
.xa7_c00128{left:460.373333pt;}
.xcc_c00128{left:463.040000pt;}
.xb9_c00128{left:465.333333pt;}
.xb_c00128{left:467.040000pt;}
.x67_c00128{left:468.000000pt;}
.x18_c00128{left:469.333333pt;}
.xe4_c00128{left:470.666667pt;}
.x44_c00128{left:472.960000pt;}
.x50_c00128{left:475.040000pt;}
.xaa_c00128{left:478.293333pt;}
.x5c_c00128{left:481.333333pt;}
.x71_c00128{left:485.333333pt;}
.xcd_c00128{left:488.000000pt;}
.x24_c00128{left:489.706667pt;}
.x37_c00128{left:490.666667pt;}
.xf4_c00128{left:491.626667pt;}
.xba_c00128{left:492.573333pt;}
.x8d_c00128{left:494.666667pt;}
.x82_c00128{left:496.000000pt;}
.x51_c00128{left:497.706667pt;}
.xc_c00128{left:501.706667pt;}
.xaf_c00128{left:505.133333pt;}
.xa3_c00128{left:506.293333pt;}
.x19_c00128{left:509.333333pt;}
.xd4_c00128{left:511.040000pt;}
.x8e_c00128{left:512.000000pt;}
.x45_c00128{left:512.960000pt;}
.xf5_c00128{left:514.666667pt;}
.x7b_c00128{left:517.706667pt;}
.xb3_c00128{left:518.666667pt;}
.xe5_c00128{left:521.333333pt;}
.x5d_c00128{left:522.293333pt;}
.x68_c00128{left:524.373333pt;}
.xf6_c00128{left:525.333333pt;}
.xd_c00128{left:526.666667pt;}
.xce_c00128{left:528.000000pt;}
.xbb_c00128{left:529.706667pt;}
.x72_c00128{left:532.960000pt;}
.xa8_c00128{left:534.666667pt;}
.xb4_c00128{left:535.626667pt;}
.x5e_c00128{left:537.706667pt;}
.x83_c00128{left:539.040000pt;}
.xd5_c00128{left:540.960000pt;}
.x7c_c00128{left:544.000000pt;}
.x73_c00128{left:548.373333pt;}
.xbc_c00128{left:549.706667pt;}
.x8f_c00128{left:553.706667pt;}
.x46_c00128{left:555.626667pt;}
.x38_c00128{left:557.706667pt;}
.x25_c00128{left:558.666667pt;}
.x5f_c00128{left:561.706667pt;}
.xed_c00128{left:563.626667pt;}
.xe_c00128{left:569.706667pt;}
.xa4_c00128{left:570.666667pt;}
.x84_c00128{left:572.373333pt;}
.x52_c00128{left:573.333333pt;}
.x1a_c00128{left:574.293333pt;}
.x9a_c00128{left:577.333333pt;}
.x7d_c00128{left:580.000000pt;}
.x47_c00128{left:583.040000pt;}
.x74_c00128{left:584.000000pt;}
.x26_c00128{left:585.706667pt;}
.x90_c00128{left:588.373333pt;}
.x39_c00128{left:590.293333pt;}
.xe0_c00128{left:596.000000pt;}
.xbd_c00128{left:599.040000pt;}
.x53_c00128{left:600.573333pt;}
.x27_c00128{left:603.040000pt;}
.xf_c00128{left:604.000000pt;}
.x7e_c00128{left:605.706667pt;}
.xea_c00128{left:606.666667pt;}
.x48_c00128{left:607.626667pt;}
.x85_c00128{left:612.000000pt;}
.x1b_c00128{left:614.666667pt;}
.xcf_c00128{left:616.960000pt;}
.x96_c00128{left:622.666667pt;}
.xda_c00128{left:624.000000pt;}
.xee_c00128{left:626.666667pt;}
.x69_c00128{left:629.706667pt;}
.x2_c00128{left:632.960000pt;}
.x28_c00128{left:636.000000pt;}
.xa5_c00128{left:636.960000pt;}
.xbe_c00128{left:641.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_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_664156dfc299b86f275f9fc4.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:1.688965;font-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_c00129{transform:matrix(0.187395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187395,0.000000,0.000000,0.250000,0,0);}
.m81_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);}
.md4_c00129{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m6f_c00129{transform:matrix(0.333506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333506,0.000000,0.000000,0.250000,0,0);}
.m7c_c00129{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);}
.md5_c00129{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.mdc_c00129{transform:matrix(0.367227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367227,0.000000,0.000000,0.250000,0,0);}
.mb9_c00129{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m9c_c00129{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.mb1_c00129{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mb5_c00129{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.mce_c00129{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.ma9_c00129{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mb4_c00129{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mde_c00129{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m1d_c00129{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mac_c00129{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mb2_c00129{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m11_c00129{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m96_c00129{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m52_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);}
.m94_c00129{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m4f_c00129{transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);}
.m62_c00129{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.md0_c00129{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.mb0_c00129{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mad_c00129{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m14_c00129{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m19_c00129{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mbf_c00129{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.m64_c00129{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m33_c00129{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m31_c00129{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m30_c00129{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mdb_c00129{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m7b_c00129{transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);}
.m2d_c00129{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m74_c00129{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m75_c00129{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m54_c00129{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m8f_c00129{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m8d_c00129{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.m84_c00129{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m47_c00129{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m9_c00129{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m8a_c00129{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m4a_c00129{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m53_c00129{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.me0_c00129{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.mc1_c00129{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mc3_c00129{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m2_c00129{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m16_c00129{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m82_c00129{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m4_c00129{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m3d_c00129{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m44_c00129{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m1f_c00129{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.m8c_c00129{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m27_c00129{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m43_c00129{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m4b_c00129{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.m40_c00129{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m50_c00129{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m3a_c00129{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m7d_c00129{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m7_c00129{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.mc9_c00129{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.mae_c00129{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m89_c00129{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m48_c00129{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m67_c00129{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m4c_c00129{transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);}
.m58_c00129{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m4d_c00129{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m39_c00129{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m12_c00129{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m6b_c00129{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m15_c00129{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m32_c00129{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m72_c00129{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m9b_c00129{transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);}
.mc8_c00129{transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);}
.m2e_c00129{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m3f_c00129{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m24_c00129{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m85_c00129{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.mc5_c00129{transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);}
.m56_c00129{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.mb7_c00129{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m9f_c00129{transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);}
.mdf_c00129{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m87_c00129{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m76_c00129{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m9d_c00129{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m60_c00129{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m7f_c00129{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m80_c00129{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.m6e_c00129{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m73_c00129{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m23_c00129{transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);}
.m3e_c00129{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.me2_c00129{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m22_c00129{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m68_c00129{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.mbd_c00129{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mdd_c00129{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m93_c00129{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m77_c00129{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m9a_c00129{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m36_c00129{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.mc_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);}
.m46_c00129{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m92_c00129{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m90_c00129{transform:matrix(0.505102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505102,0.000000,0.000000,0.250000,0,0);}
.m3c_c00129{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m71_c00129{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m83_c00129{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mc2_c00129{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m6a_c00129{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.md2_c00129{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m5f_c00129{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.md3_c00129{transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);}
.maf_c00129{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m2f_c00129{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.me3_c00129{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.mf_c00129{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mcb_c00129{transform:matrix(0.519017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519017,0.000000,0.000000,0.250000,0,0);}
.m49_c00129{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.maa_c00129{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m65_c00129{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mc6_c00129{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m5b_c00129{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.ma8_c00129{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m5e_c00129{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m2c_c00129{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mb3_c00129{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m6_c00129{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m26_c00129{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m1a_c00129{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m2a_c00129{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m51_c00129{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.ma5_c00129{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m20_c00129{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m69_c00129{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m1b_c00129{transform:matrix(0.538033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538033,0.000000,0.000000,0.250000,0,0);}
.m95_c00129{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m79_c00129{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.mc7_c00129{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m13_c00129{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m41_c00129{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m2b_c00129{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.ma6_c00129{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.md9_c00129{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.ma1_c00129{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m59_c00129{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m99_c00129{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m10_c00129{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m7a_c00129{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m6c_c00129{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m21_c00129{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m29_c00129{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m97_c00129{transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);}
.m37_c00129{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m1e_c00129{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.md7_c00129{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mcf_c00129{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);}
.m25_c00129{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.md1_c00129{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m5c_c00129{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.mb8_c00129{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m55_c00129{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m5_c00129{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mda_c00129{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m35_c00129{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m8_c00129{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m86_c00129{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.ma0_c00129{transform:matrix(0.574675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574675,0.000000,0.000000,0.250000,0,0);}
.m4e_c00129{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mbe_c00129{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m34_c00129{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m88_c00129{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m3b_c00129{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m42_c00129{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m8b_c00129{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mb6_c00129{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.ma7_c00129{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m78_c00129{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mbc_c00129{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.mcc_c00129{transform:matrix(0.591805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591805,0.000000,0.000000,0.250000,0,0);}
.m8e_c00129{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.md8_c00129{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m6d_c00129{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mab_c00129{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m28_c00129{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_c00129{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.mca_c00129{transform:matrix(0.608071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608071,0.000000,0.000000,0.250000,0,0);}
.me1_c00129{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m9e_c00129{transform:matrix(0.610588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610588,0.000000,0.000000,0.250000,0,0);}
.ma3_c00129{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.mbb_c00129{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m57_c00129{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m38_c00129{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m17_c00129{transform:matrix(0.616701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616701,0.000000,0.000000,0.250000,0,0);}
.m63_c00129{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.m1c_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);}
.md6_c00129{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m5a_c00129{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m98_c00129{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.md_c00129{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m91_c00129{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mb_c00129{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m1_c00129{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.mc0_c00129{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m70_c00129{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.me4_c00129{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mba_c00129{transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);}
.mc4_c00129{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.me_c00129{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m18_c00129{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.ma4_c00129{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.ma2_c00129{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mcd_c00129{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m61_c00129{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m5d_c00129{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m66_c00129{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m45_c00129{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.ma_c00129{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m3_c00129{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00129{vertical-align:0.000000px;}
.v1_c00129{vertical-align:6.000000px;}
.ls0_c00129{letter-spacing:0.000000px;}
.sc__c00129{text-shadow:none;}
.sc0_c00129{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00129{-webkit-text-stroke:0px transparent;}
.sc0_c00129{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00129{word-spacing:-3.637499px;}
.ws2_c00129{word-spacing:0.000000px;}
.ws0_c00129{word-spacing:2.644835px;}
.fc0_c00129{color:transparent;}
.fs3_c00129{font-size:3.420000px;}
.fs1_c00129{font-size:18.720000px;}
.fs0_c00129{font-size:20.400000px;}
.fs6_c00129{font-size:25.500000px;}
.fs4_c00129{font-size:28.920000px;}
.fs5_c00129{font-size:32.340000px;}
.fs2_c00129{font-size:35.700000px;}
.fs7_c00129{font-size:39.120000px;}
.y0_c00129{bottom:0.000000px;}
.ye0_c00129{bottom:254.745000px;}
.ye1_c00129{bottom:255.405000px;}
.ye2_c00129{bottom:255.630000px;}
.ye3_c00129{bottom:256.905000px;}
.ydd_c00129{bottom:271.905000px;}
.ydc_c00129{bottom:274.245000px;}
.yde_c00129{bottom:275.325000px;}
.ydf_c00129{bottom:275.970000px;}
.ydb_c00129{bottom:276.405000px;}
.yd6_c00129{bottom:292.470000px;}
.yda_c00129{bottom:293.325000px;}
.yd4_c00129{bottom:293.550000px;}
.yd7_c00129{bottom:293.745000px;}
.yd9_c00129{bottom:294.630000px;}
.yd5_c00129{bottom:295.470000px;}
.yd8_c00129{bottom:295.905000px;}
.ycf_c00129{bottom:311.970000px;}
.yd0_c00129{bottom:312.405000px;}
.ycd_c00129{bottom:313.245000px;}
.yd2_c00129{bottom:313.470000px;}
.yce_c00129{bottom:314.970000px;}
.ycc_c00129{bottom:315.405000px;}
.yd3_c00129{bottom:315.630000px;}
.yd1_c00129{bottom:316.470000px;}
.yca_c00129{bottom:332.745000px;}
.ycb_c00129{bottom:332.970000px;}
.yc7_c00129{bottom:334.245000px;}
.yc6_c00129{bottom:334.905000px;}
.yc9_c00129{bottom:335.970000px;}
.yc8_c00129{bottom:336.405000px;}
.yc1_c00129{bottom:351.405000px;}
.yc3_c00129{bottom:352.245000px;}
.yc2_c00129{bottom:353.745000px;}
.yc0_c00129{bottom:354.405000px;}
.yc5_c00129{bottom:354.630000px;}
.yc4_c00129{bottom:354.825000px;}
.ybb_c00129{bottom:371.745000px;}
.yba_c00129{bottom:372.630000px;}
.ybd_c00129{bottom:373.245000px;}
.ybe_c00129{bottom:373.470000px;}
.yb9_c00129{bottom:373.905000px;}
.ybf_c00129{bottom:374.130000px;}
.ybc_c00129{bottom:375.405000px;}
.yb8_c00129{bottom:391.245000px;}
.yb7_c00129{bottom:392.325000px;}
.yb5_c00129{bottom:392.745000px;}
.yb4_c00129{bottom:393.405000px;}
.yb6_c00129{bottom:394.905000px;}
.yb3_c00129{bottom:410.745000px;}
.yb2_c00129{bottom:412.245000px;}
.yb1_c00129{bottom:412.905000px;}
.yb0_c00129{bottom:413.130000px;}
.yaf_c00129{bottom:414.405000px;}
.ya9_c00129{bottom:430.245000px;}
.yae_c00129{bottom:431.325000px;}
.yab_c00129{bottom:431.745000px;}
.yaa_c00129{bottom:432.405000px;}
.yac_c00129{bottom:432.630000px;}
.yad_c00129{bottom:433.905000px;}
.ya6_c00129{bottom:448.905000px;}
.ya8_c00129{bottom:449.745000px;}
.ya5_c00129{bottom:449.970000px;}
.ya7_c00129{bottom:451.245000px;}
.ya2_c00129{bottom:452.130000px;}
.ya3_c00129{bottom:452.970000px;}
.ya4_c00129{bottom:453.405000px;}
.y9f_c00129{bottom:470.745000px;}
.ya1_c00129{bottom:471.825000px;}
.ya0_c00129{bottom:472.905000px;}
.y9c_c00129{bottom:490.245000px;}
.y9d_c00129{bottom:492.405000px;}
.y9e_c00129{bottom:493.470000px;}
.y9a_c00129{bottom:509.745000px;}
.y98_c00129{bottom:511.245000px;}
.y9b_c00129{bottom:511.905000px;}
.y97_c00129{bottom:512.130000px;}
.y99_c00129{bottom:512.970000px;}
.y96_c00129{bottom:513.405000px;}
.y92_c00129{bottom:529.245000px;}
.y94_c00129{bottom:530.745000px;}
.y90_c00129{bottom:531.405000px;}
.y95_c00129{bottom:531.630000px;}
.y93_c00129{bottom:532.470000px;}
.y91_c00129{bottom:532.920000px;}
.y8e_c00129{bottom:550.245000px;}
.y8d_c00129{bottom:551.130000px;}
.y8f_c00129{bottom:552.405000px;}
.y8c_c00129{bottom:569.745000px;}
.y8b_c00129{bottom:571.470000px;}
.y8a_c00129{bottom:571.905000px;}
.y89_c00129{bottom:589.245000px;}
.y88_c00129{bottom:591.405000px;}
.y87_c00129{bottom:608.745000px;}
.y84_c00129{bottom:609.825000px;}
.y83_c00129{bottom:610.905000px;}
.y85_c00129{bottom:611.130000px;}
.y86_c00129{bottom:611.970000px;}
.y7d_c00129{bottom:628.245000px;}
.y80_c00129{bottom:628.470000px;}
.y7e_c00129{bottom:629.325000px;}
.y7c_c00129{bottom:629.745000px;}
.y82_c00129{bottom:630.405000px;}
.y81_c00129{bottom:630.825000px;}
.y7b_c00129{bottom:631.470000px;}
.y7f_c00129{bottom:631.905000px;}
.y7a_c00129{bottom:647.745000px;}
.y78_c00129{bottom:648.825000px;}
.y77_c00129{bottom:649.905000px;}
.y76_c00129{bottom:650.130000px;}
.y79_c00129{bottom:650.970000px;}
.y75_c00129{bottom:651.405000px;}
.y73_c00129{bottom:668.745000px;}
.y72_c00129{bottom:669.405000px;}
.y70_c00129{bottom:669.630000px;}
.y74_c00129{bottom:669.825000px;}
.y71_c00129{bottom:670.905000px;}
.y6d_c00129{bottom:688.245000px;}
.y6f_c00129{bottom:689.130000px;}
.y6c_c00129{bottom:689.325000px;}
.y6e_c00129{bottom:689.970000px;}
.y6b_c00129{bottom:690.405000px;}
.y6a_c00129{bottom:705.405000px;}
.y66_c00129{bottom:707.745000px;}
.y69_c00129{bottom:708.825000px;}
.y68_c00129{bottom:709.905000px;}
.y67_c00129{bottom:710.970000px;}
.y65_c00129{bottom:726.825000px;}
.y64_c00129{bottom:727.245000px;}
.y63_c00129{bottom:728.325000px;}
.y62_c00129{bottom:729.405000px;}
.y5f_c00129{bottom:745.680000px;}
.y61_c00129{bottom:745.905000px;}
.y60_c00129{bottom:746.745000px;}
.y5e_c00129{bottom:748.905000px;}
.y5d_c00129{bottom:766.245000px;}
.y5c_c00129{bottom:767.325000px;}
.y5a_c00129{bottom:768.405000px;}
.y5b_c00129{bottom:769.470000px;}
.y57_c00129{bottom:785.745000px;}
.y59_c00129{bottom:787.245000px;}
.y56_c00129{bottom:787.905000px;}
.y55_c00129{bottom:788.130000px;}
.y58_c00129{bottom:788.970000px;}
.y53_c00129{bottom:804.405000px;}
.y51_c00129{bottom:805.245000px;}
.y54_c00129{bottom:806.325000px;}
.y4f_c00129{bottom:807.405000px;}
.y50_c00129{bottom:807.630000px;}
.y52_c00129{bottom:808.905000px;}
.y4b_c00129{bottom:824.745000px;}
.y4e_c00129{bottom:825.825000px;}
.y4d_c00129{bottom:826.245000px;}
.y49_c00129{bottom:826.905000px;}
.y4a_c00129{bottom:827.130000px;}
.y4c_c00129{bottom:827.970000px;}
.y48_c00129{bottom:843.405000px;}
.y46_c00129{bottom:845.745000px;}
.y47_c00129{bottom:846.630000px;}
.y45_c00129{bottom:847.905000px;}
.y43_c00129{bottom:864.405000px;}
.y42_c00129{bottom:865.245000px;}
.y44_c00129{bottom:865.470000px;}
.y40_c00129{bottom:867.405000px;}
.y41_c00129{bottom:868.470000px;}
.y3d_c00129{bottom:884.745000px;}
.y3f_c00129{bottom:885.630000px;}
.y3c_c00129{bottom:885.825000px;}
.y3e_c00129{bottom:886.470000px;}
.y3b_c00129{bottom:886.905000px;}
.y39_c00129{bottom:904.245000px;}
.y3a_c00129{bottom:905.130000px;}
.y38_c00129{bottom:905.325000px;}
.y37_c00129{bottom:906.405000px;}
.y32_c00129{bottom:922.905000px;}
.y33_c00129{bottom:923.745000px;}
.y36_c00129{bottom:925.245000px;}
.y31_c00129{bottom:925.470000px;}
.y34_c00129{bottom:925.905000px;}
.y30_c00129{bottom:926.130000px;}
.y35_c00129{bottom:927.405000px;}
.y2e_c00129{bottom:943.245000px;}
.y2d_c00129{bottom:944.745000px;}
.y2f_c00129{bottom:945.405000px;}
.y2c_c00129{bottom:945.825000px;}
.y2b_c00129{bottom:946.905000px;}
.y25_c00129{bottom:961.905000px;}
.y28_c00129{bottom:962.745000px;}
.y27_c00129{bottom:964.245000px;}
.y24_c00129{bottom:964.905000px;}
.y26_c00129{bottom:965.130000px;}
.y2a_c00129{bottom:965.325000px;}
.y29_c00129{bottom:966.405000px;}
.y22_c00129{bottom:983.745000px;}
.y1f_c00129{bottom:984.405000px;}
.y20_c00129{bottom:984.825000px;}
.y23_c00129{bottom:985.470000px;}
.y21_c00129{bottom:985.905000px;}
.y1e_c00129{bottom:1001.970000px;}
.y1c_c00129{bottom:1002.825000px;}
.y1d_c00129{bottom:1003.245000px;}
.y1a_c00129{bottom:1004.130000px;}
.y1b_c00129{bottom:1004.325000px;}
.y19_c00129{bottom:1005.405000px;}
.y16_c00129{bottom:1022.550000px;}
.y14_c00129{bottom:1022.745000px;}
.y18_c00129{bottom:1023.405000px;}
.y13_c00129{bottom:1023.630000px;}
.y15_c00129{bottom:1023.825000px;}
.y17_c00129{bottom:1024.050000px;}
.y12_c00129{bottom:1024.905000px;}
.yd_c00129{bottom:1039.905000px;}
.y11_c00129{bottom:1041.405000px;}
.yb_c00129{bottom:1042.245000px;}
.y10_c00129{bottom:1043.130000px;}
.yc_c00129{bottom:1043.325000px;}
.ye_c00129{bottom:1043.970000px;}
.ya_c00129{bottom:1044.405000px;}
.yf_c00129{bottom:1045.470000px;}
.y9_c00129{bottom:1060.470000px;}
.y3_c00129{bottom:1061.745000px;}
.y7_c00129{bottom:1062.630000px;}
.y6_c00129{bottom:1062.825000px;}
.y8_c00129{bottom:1063.470000px;}
.y5_c00129{bottom:1063.905000px;}
.y4_c00129{bottom:1063.920000px;}
.y1_c00129{bottom:1102.050000px;}
.y2_c00129{bottom:1103.130000px;}
.h4_c00129{height:4.206533px;}
.h2_c00129{height:23.025234px;}
.h1_c00129{height:25.091602px;}
.h7_c00129{height:31.364502px;}
.h5_c00129{height:35.571035px;}
.h6_c00129{height:39.777568px;}
.h3_c00129{height:43.910303px;}
.h8_c00129{height:45.777568px;}
.h9_c00129{height:48.116836px;}
.h0_c00129{height:1335.000000px;}
.w0_c00129{width:880.500000px;}
.x0_c00129{left:0.000000px;}
.xed_c00129{left:150.000000px;}
.xa4_c00129{left:151.080000px;}
.x2_c00129{left:153.420000px;}
.xd7_c00129{left:166.080000px;}
.x54_c00129{left:168.000000px;}
.x3_c00129{left:169.080000px;}
.x2a_c00129{left:174.000000px;}
.xbf_c00129{left:178.500000px;}
.xaf_c00129{left:180.000000px;}
.x71_c00129{left:181.920000px;}
.xc7_c00129{left:184.920000px;}
.xd4_c00129{left:187.500000px;}
.x11_c00129{left:189.420000px;}
.x1e_c00129{left:190.500000px;}
.x5e_c00129{left:192.420000px;}
.x8e_c00129{left:195.000000px;}
.x84_c00129{left:196.500000px;}
.x3e_c00129{left:198.420000px;}
.x55_c00129{left:201.000000px;}
.x7b_c00129{left:202.500000px;}
.xdd_c00129{left:203.775000px;}
.x1f_c00129{left:205.500000px;}
.x2b_c00129{left:207.000000px;}
.xbb_c00129{left:208.080000px;}
.x102_c00129{left:210.000000px;}
.x97_c00129{left:211.080000px;}
.xa5_c00129{left:213.420000px;}
.xee_c00129{left:216.000000px;}
.x3f_c00129{left:217.500000px;}
.xe4_c00129{left:218.580000px;}
.x5f_c00129{left:220.500000px;}
.x68_c00129{left:225.855000px;}
.x108_c00129{left:227.580000px;}
.x72_c00129{left:229.080000px;}
.x34_c00129{left:232.500000px;}
.x85_c00129{left:234.000000px;}
.xb0_c00129{left:235.080000px;}
.xcf_c00129{left:238.500000px;}
.x56_c00129{left:240.000000px;}
.x8f_c00129{left:241.920000px;}
.x4a_c00129{left:243.420000px;}
.xd5_c00129{left:246.000000px;}
.xa9_c00129{left:247.500000px;}
.x40_c00129{left:249.420000px;}
.x103_c00129{left:250.500000px;}
.xe8_c00129{left:251.580000px;}
.xc1_c00129{left:255.000000px;}
.x4_c00129{left:256.500000px;}
.x7c_c00129{left:257.580000px;}
.xd0_c00129{left:259.500000px;}
.x2c_c00129{left:261.000000px;}
.xc8_c00129{left:262.080000px;}
.xd8_c00129{left:264.000000px;}
.xfa_c00129{left:265.920000px;}
.x12_c00129{left:268.500000px;}
.x69_c00129{left:273.000000px;}
.x5_c00129{left:278.580000px;}
.xc9_c00129{left:280.920000px;}
.xef_c00129{left:282.420000px;}
.xce_c00129{left:283.920000px;}
.x35_c00129{left:285.000000px;}
.x104_c00129{left:286.500000px;}
.x41_c00129{left:289.500000px;}
.x20_c00129{left:291.000000px;}
.xca_c00129{left:294.000000px;}
.x9d_c00129{left:295.275000px;}
.xf6_c00129{left:297.000000px;}
.xb1_c00129{left:298.080000px;}
.xa6_c00129{left:300.420000px;}
.xaa_c00129{left:303.420000px;}
.xd6_c00129{left:304.920000px;}
.xfe_c00129{left:306.420000px;}
.x7d_c00129{left:309.000000px;}
.xde_c00129{left:310.920000px;}
.xf7_c00129{left:312.000000px;}
.x57_c00129{left:316.500000px;}
.xe5_c00129{left:318.000000px;}
.x60_c00129{left:319.920000px;}
.x90_c00129{left:322.080000px;}
.x4b_c00129{left:325.500000px;}
.x98_c00129{left:327.420000px;}
.x36_c00129{left:328.500000px;}
.xab_c00129{left:330.000000px;}
.x86_c00129{left:331.920000px;}
.xcb_c00129{left:333.000000px;}
.x6_c00129{left:334.080000px;}
.x9e_c00129{left:336.855000px;}
.x42_c00129{left:340.920000px;}
.xf2_c00129{left:342.000000px;}
.xb2_c00129{left:343.500000px;}
.x21_c00129{left:344.580000px;}
.x61_c00129{left:348.420000px;}
.x13_c00129{left:349.500000px;}
.x6a_c00129{left:351.000000px;}
.x9f_c00129{left:353.145000px;}
.x7_c00129{left:354.420000px;}
.x73_c00129{left:356.580000px;}
.x87_c00129{left:358.080000px;}
.x2d_c00129{left:359.580000px;}
.xf3_c00129{left:363.000000px;}
.xe9_c00129{left:366.000000px;}
.x91_c00129{left:367.920000px;}
.x58_c00129{left:370.920000px;}
.xb3_c00129{left:375.420000px;}
.x74_c00129{left:376.500000px;}
.x22_c00129{left:378.420000px;}
.xd1_c00129{left:382.500000px;}
.x106_c00129{left:384.000000px;}
.x8a_c00129{left:387.000000px;}
.x7e_c00129{left:390.000000px;}
.xf4_c00129{left:391.500000px;}
.x99_c00129{left:393.420000px;}
.xfb_c00129{left:394.500000px;}
.xc2_c00129{left:395.580000px;}
.x37_c00129{left:398.580000px;}
.x1_c00129{left:400.500000px;}
.xb4_c00129{left:402.420000px;}
.xa0_c00129{left:403.500000px;}
.x62_c00129{left:405.000000px;}
.xdf_c00129{left:406.920000px;}
.xf0_c00129{left:408.000000px;}
.x4c_c00129{left:409.500000px;}
.x23_c00129{left:411.420000px;}
.x14_c00129{left:412.500000px;}
.x8_c00129{left:414.420000px;}
.x92_c00129{left:417.420000px;}
.x59_c00129{left:418.500000px;}
.x6b_c00129{left:421.500000px;}
.x4d_c00129{left:424.500000px;}
.x63_c00129{left:426.420000px;}
.xf8_c00129{left:430.500000px;}
.xc3_c00129{left:432.420000px;}
.xcc_c00129{left:436.080000px;}
.x15_c00129{left:438.000000px;}
.x6c_c00129{left:441.420000px;}
.x93_c00129{left:442.500000px;}
.xac_c00129{left:444.000000px;}
.x4e_c00129{left:445.500000px;}
.x7f_c00129{left:446.580000px;}
.xb5_c00129{left:451.080000px;}
.x64_c00129{left:454.920000px;}
.x24_c00129{left:456.000000px;}
.xb9_c00129{left:457.500000px;}
.x43_c00129{left:459.420000px;}
.x16_c00129{left:460.920000px;}
.x38_c00129{left:465.000000px;}
.x4f_c00129{left:467.580000px;}
.xb6_c00129{left:469.920000px;}
.xc4_c00129{left:471.000000px;}
.x9_c00129{left:472.920000px;}
.xf5_c00129{left:475.080000px;}
.xd9_c00129{left:477.645000px;}
.x2e_c00129{left:478.920000px;}
.x17_c00129{left:480.000000px;}
.x94_c00129{left:481.500000px;}
.x39_c00129{left:487.920000px;}
.x105_c00129{left:489.420000px;}
.xe0_c00129{left:491.580000px;}
.xd2_c00129{left:493.920000px;}
.x5a_c00129{left:495.420000px;}
.x44_c00129{left:496.920000px;}
.x80_c00129{left:498.000000px;}
.xad_c00129{left:499.920000px;}
.x65_c00129{left:503.580000px;}
.x75_c00129{left:505.080000px;}
.x109_c00129{left:506.145000px;}
.x9a_c00129{left:507.420000px;}
.x2f_c00129{left:508.920000px;}
.xda_c00129{left:510.420000px;}
.xa_c00129{left:513.000000px;}
.x18_c00129{left:514.920000px;}
.x3a_c00129{left:517.500000px;}
.x25_c00129{left:519.000000px;}
.x81_c00129{left:520.920000px;}
.xbc_c00129{left:522.000000px;}
.x45_c00129{left:523.500000px;}
.x76_c00129{left:525.420000px;}
.x5b_c00129{left:526.500000px;}
.x107_c00129{left:530.580000px;}
.xa1_c00129{left:532.500000px;}
.x6d_c00129{left:534.420000px;}
.xf9_c00129{left:535.500000px;}
.xf1_c00129{left:536.580000px;}
.xff_c00129{left:542.580000px;}
.xb_c00129{left:544.500000px;}
.xe1_c00129{left:547.500000px;}
.x50_c00129{left:549.420000px;}
.xea_c00129{left:550.500000px;}
.x19_c00129{left:551.580000px;}
.xcd_c00129{left:553.500000px;}
.x77_c00129{left:555.000000px;}
.x9b_c00129{left:556.500000px;}
.xc0_c00129{left:558.000000px;}
.x30_c00129{left:559.080000px;}
.x46_c00129{left:561.000000px;}
.x95_c00129{left:563.580000px;}
.x100_c00129{left:565.500000px;}
.x8b_c00129{left:569.580000px;}
.x26_c00129{left:571.080000px;}
.xe6_c00129{left:573.420000px;}
.x3b_c00129{left:574.500000px;}
.x51_c00129{left:576.420000px;}
.xc_c00129{left:577.500000px;}
.xbd_c00129{left:579.000000px;}
.x31_c00129{left:580.920000px;}
.xd3_c00129{left:583.500000px;}
.x1a_c00129{left:584.580000px;}
.xfc_c00129{left:588.000000px;}
.x8c_c00129{left:589.920000px;}
.x9c_c00129{left:594.000000px;}
.x88_c00129{left:595.500000px;}
.x1b_c00129{left:597.000000px;}
.xd_c00129{left:598.080000px;}
.x78_c00129{left:599.580000px;}
.x10a_c00129{left:604.500000px;}
.x6e_c00129{left:606.000000px;}
.x101_c00129{left:607.500000px;}
.xe2_c00129{left:609.000000px;}
.x32_c00129{left:610.080000px;}
.x5c_c00129{left:612.000000px;}
.x89_c00129{left:613.920000px;}
.xa2_c00129{left:615.420000px;}
.x27_c00129{left:616.920000px;}
.x66_c00129{left:618.420000px;}
.x3c_c00129{left:622.500000px;}
.xeb_c00129{left:623.580000px;}
.x47_c00129{left:626.580000px;}
.x1c_c00129{left:630.000000px;}
.xe_c00129{left:631.500000px;}
.x52_c00129{left:634.080000px;}
.x28_c00129{left:636.000000px;}
.x79_c00129{left:640.500000px;}
.xe7_c00129{left:642.420000px;}
.xa7_c00129{left:643.500000px;}
.xc5_c00129{left:644.580000px;}
.x33_c00129{left:646.500000px;}
.xfd_c00129{left:649.500000px;}
.xdb_c00129{left:651.000000px;}
.x5d_c00129{left:652.500000px;}
.x3d_c00129{left:658.920000px;}
.xbe_c00129{left:660.420000px;}
.x8d_c00129{left:663.000000px;}
.x82_c00129{left:664.920000px;}
.xf_c00129{left:669.000000px;}
.xec_c00129{left:670.920000px;}
.xc6_c00129{left:673.500000px;}
.xdc_c00129{left:675.000000px;}
.x6f_c00129{left:678.000000px;}
.x1d_c00129{left:681.420000px;}
.xe3_c00129{left:682.500000px;}
.xb7_c00129{left:684.000000px;}
.xa8_c00129{left:685.920000px;}
.x7a_c00129{left:688.080000px;}
.x48_c00129{left:690.000000px;}
.x96_c00129{left:691.500000px;}
.xa3_c00129{left:693.000000px;}
.x83_c00129{left:694.080000px;}
.x53_c00129{left:697.920000px;}
.xae_c00129{left:699.420000px;}
.xba_c00129{left:700.920000px;}
.xb8_c00129{left:702.000000px;}
.x29_c00129{left:704.580000px;}
.x10_c00129{left:706.500000px;}
.x49_c00129{left:708.420000px;}
.x67_c00129{left:709.920000px;}
.x70_c00129{left:714.000000px;}
.x10b_c00129{left:715.500000px;}
@media print{
.v0_c00129{vertical-align:0.000000pt;}
.v1_c00129{vertical-align:5.333333pt;}
.ls0_c00129{letter-spacing:0.000000pt;}
.ws1_c00129{word-spacing:-3.233333pt;}
.ws2_c00129{word-spacing:0.000000pt;}
.ws0_c00129{word-spacing:2.350965pt;}
.fs3_c00129{font-size:3.040000pt;}
.fs1_c00129{font-size:16.640000pt;}
.fs0_c00129{font-size:18.133333pt;}
.fs6_c00129{font-size:22.666667pt;}
.fs4_c00129{font-size:25.706667pt;}
.fs5_c00129{font-size:28.746667pt;}
.fs2_c00129{font-size:31.733333pt;}
.fs7_c00129{font-size:34.773333pt;}
.y0_c00129{bottom:0.000000pt;}
.ye0_c00129{bottom:226.440000pt;}
.ye1_c00129{bottom:227.026667pt;}
.ye2_c00129{bottom:227.226667pt;}
.ye3_c00129{bottom:228.360000pt;}
.ydd_c00129{bottom:241.693333pt;}
.ydc_c00129{bottom:243.773333pt;}
.yde_c00129{bottom:244.733333pt;}
.ydf_c00129{bottom:245.306667pt;}
.ydb_c00129{bottom:245.693333pt;}
.yd6_c00129{bottom:259.973333pt;}
.yda_c00129{bottom:260.733333pt;}
.yd4_c00129{bottom:260.933333pt;}
.yd7_c00129{bottom:261.106667pt;}
.yd9_c00129{bottom:261.893333pt;}
.yd5_c00129{bottom:262.640000pt;}
.yd8_c00129{bottom:263.026667pt;}
.ycf_c00129{bottom:277.306667pt;}
.yd0_c00129{bottom:277.693333pt;}
.ycd_c00129{bottom:278.440000pt;}
.yd2_c00129{bottom:278.640000pt;}
.yce_c00129{bottom:279.973333pt;}
.ycc_c00129{bottom:280.360000pt;}
.yd3_c00129{bottom:280.560000pt;}
.yd1_c00129{bottom:281.306667pt;}
.yca_c00129{bottom:295.773333pt;}
.ycb_c00129{bottom:295.973333pt;}
.yc7_c00129{bottom:297.106667pt;}
.yc6_c00129{bottom:297.693333pt;}
.yc9_c00129{bottom:298.640000pt;}
.yc8_c00129{bottom:299.026667pt;}
.yc1_c00129{bottom:312.360000pt;}
.yc3_c00129{bottom:313.106667pt;}
.yc2_c00129{bottom:314.440000pt;}
.yc0_c00129{bottom:315.026667pt;}
.yc5_c00129{bottom:315.226667pt;}
.yc4_c00129{bottom:315.400000pt;}
.ybb_c00129{bottom:330.440000pt;}
.yba_c00129{bottom:331.226667pt;}
.ybd_c00129{bottom:331.773333pt;}
.ybe_c00129{bottom:331.973333pt;}
.yb9_c00129{bottom:332.360000pt;}
.ybf_c00129{bottom:332.560000pt;}
.ybc_c00129{bottom:333.693333pt;}
.yb8_c00129{bottom:347.773333pt;}
.yb7_c00129{bottom:348.733333pt;}
.yb5_c00129{bottom:349.106667pt;}
.yb4_c00129{bottom:349.693333pt;}
.yb6_c00129{bottom:351.026667pt;}
.yb3_c00129{bottom:365.106667pt;}
.yb2_c00129{bottom:366.440000pt;}
.yb1_c00129{bottom:367.026667pt;}
.yb0_c00129{bottom:367.226667pt;}
.yaf_c00129{bottom:368.360000pt;}
.ya9_c00129{bottom:382.440000pt;}
.yae_c00129{bottom:383.400000pt;}
.yab_c00129{bottom:383.773333pt;}
.yaa_c00129{bottom:384.360000pt;}
.yac_c00129{bottom:384.560000pt;}
.yad_c00129{bottom:385.693333pt;}
.ya6_c00129{bottom:399.026667pt;}
.ya8_c00129{bottom:399.773333pt;}
.ya5_c00129{bottom:399.973333pt;}
.ya7_c00129{bottom:401.106667pt;}
.ya2_c00129{bottom:401.893333pt;}
.ya3_c00129{bottom:402.640000pt;}
.ya4_c00129{bottom:403.026667pt;}
.y9f_c00129{bottom:418.440000pt;}
.ya1_c00129{bottom:419.400000pt;}
.ya0_c00129{bottom:420.360000pt;}
.y9c_c00129{bottom:435.773333pt;}
.y9d_c00129{bottom:437.693333pt;}
.y9e_c00129{bottom:438.640000pt;}
.y9a_c00129{bottom:453.106667pt;}
.y98_c00129{bottom:454.440000pt;}
.y9b_c00129{bottom:455.026667pt;}
.y97_c00129{bottom:455.226667pt;}
.y99_c00129{bottom:455.973333pt;}
.y96_c00129{bottom:456.360000pt;}
.y92_c00129{bottom:470.440000pt;}
.y94_c00129{bottom:471.773333pt;}
.y90_c00129{bottom:472.360000pt;}
.y95_c00129{bottom:472.560000pt;}
.y93_c00129{bottom:473.306667pt;}
.y91_c00129{bottom:473.706667pt;}
.y8e_c00129{bottom:489.106667pt;}
.y8d_c00129{bottom:489.893333pt;}
.y8f_c00129{bottom:491.026667pt;}
.y8c_c00129{bottom:506.440000pt;}
.y8b_c00129{bottom:507.973333pt;}
.y8a_c00129{bottom:508.360000pt;}
.y89_c00129{bottom:523.773333pt;}
.y88_c00129{bottom:525.693333pt;}
.y87_c00129{bottom:541.106667pt;}
.y84_c00129{bottom:542.066667pt;}
.y83_c00129{bottom:543.026667pt;}
.y85_c00129{bottom:543.226667pt;}
.y86_c00129{bottom:543.973333pt;}
.y7d_c00129{bottom:558.440000pt;}
.y80_c00129{bottom:558.640000pt;}
.y7e_c00129{bottom:559.400000pt;}
.y7c_c00129{bottom:559.773333pt;}
.y82_c00129{bottom:560.360000pt;}
.y81_c00129{bottom:560.733333pt;}
.y7b_c00129{bottom:561.306667pt;}
.y7f_c00129{bottom:561.693333pt;}
.y7a_c00129{bottom:575.773333pt;}
.y78_c00129{bottom:576.733333pt;}
.y77_c00129{bottom:577.693333pt;}
.y76_c00129{bottom:577.893333pt;}
.y79_c00129{bottom:578.640000pt;}
.y75_c00129{bottom:579.026667pt;}
.y73_c00129{bottom:594.440000pt;}
.y72_c00129{bottom:595.026667pt;}
.y70_c00129{bottom:595.226667pt;}
.y74_c00129{bottom:595.400000pt;}
.y71_c00129{bottom:596.360000pt;}
.y6d_c00129{bottom:611.773333pt;}
.y6f_c00129{bottom:612.560000pt;}
.y6c_c00129{bottom:612.733333pt;}
.y6e_c00129{bottom:613.306667pt;}
.y6b_c00129{bottom:613.693333pt;}
.y6a_c00129{bottom:627.026667pt;}
.y66_c00129{bottom:629.106667pt;}
.y69_c00129{bottom:630.066667pt;}
.y68_c00129{bottom:631.026667pt;}
.y67_c00129{bottom:631.973333pt;}
.y65_c00129{bottom:646.066667pt;}
.y64_c00129{bottom:646.440000pt;}
.y63_c00129{bottom:647.400000pt;}
.y62_c00129{bottom:648.360000pt;}
.y5f_c00129{bottom:662.826667pt;}
.y61_c00129{bottom:663.026667pt;}
.y60_c00129{bottom:663.773333pt;}
.y5e_c00129{bottom:665.693333pt;}
.y5d_c00129{bottom:681.106667pt;}
.y5c_c00129{bottom:682.066667pt;}
.y5a_c00129{bottom:683.026667pt;}
.y5b_c00129{bottom:683.973333pt;}
.y57_c00129{bottom:698.440000pt;}
.y59_c00129{bottom:699.773333pt;}
.y56_c00129{bottom:700.360000pt;}
.y55_c00129{bottom:700.560000pt;}
.y58_c00129{bottom:701.306667pt;}
.y53_c00129{bottom:715.026667pt;}
.y51_c00129{bottom:715.773333pt;}
.y54_c00129{bottom:716.733333pt;}
.y4f_c00129{bottom:717.693333pt;}
.y50_c00129{bottom:717.893333pt;}
.y52_c00129{bottom:719.026667pt;}
.y4b_c00129{bottom:733.106667pt;}
.y4e_c00129{bottom:734.066667pt;}
.y4d_c00129{bottom:734.440000pt;}
.y49_c00129{bottom:735.026667pt;}
.y4a_c00129{bottom:735.226667pt;}
.y4c_c00129{bottom:735.973333pt;}
.y48_c00129{bottom:749.693333pt;}
.y46_c00129{bottom:751.773333pt;}
.y47_c00129{bottom:752.560000pt;}
.y45_c00129{bottom:753.693333pt;}
.y43_c00129{bottom:768.360000pt;}
.y42_c00129{bottom:769.106667pt;}
.y44_c00129{bottom:769.306667pt;}
.y40_c00129{bottom:771.026667pt;}
.y41_c00129{bottom:771.973333pt;}
.y3d_c00129{bottom:786.440000pt;}
.y3f_c00129{bottom:787.226667pt;}
.y3c_c00129{bottom:787.400000pt;}
.y3e_c00129{bottom:787.973333pt;}
.y3b_c00129{bottom:788.360000pt;}
.y39_c00129{bottom:803.773333pt;}
.y3a_c00129{bottom:804.560000pt;}
.y38_c00129{bottom:804.733333pt;}
.y37_c00129{bottom:805.693333pt;}
.y32_c00129{bottom:820.360000pt;}
.y33_c00129{bottom:821.106667pt;}
.y36_c00129{bottom:822.440000pt;}
.y31_c00129{bottom:822.640000pt;}
.y34_c00129{bottom:823.026667pt;}
.y30_c00129{bottom:823.226667pt;}
.y35_c00129{bottom:824.360000pt;}
.y2e_c00129{bottom:838.440000pt;}
.y2d_c00129{bottom:839.773333pt;}
.y2f_c00129{bottom:840.360000pt;}
.y2c_c00129{bottom:840.733333pt;}
.y2b_c00129{bottom:841.693333pt;}
.y25_c00129{bottom:855.026667pt;}
.y28_c00129{bottom:855.773333pt;}
.y27_c00129{bottom:857.106667pt;}
.y24_c00129{bottom:857.693333pt;}
.y26_c00129{bottom:857.893333pt;}
.y2a_c00129{bottom:858.066667pt;}
.y29_c00129{bottom:859.026667pt;}
.y22_c00129{bottom:874.440000pt;}
.y1f_c00129{bottom:875.026667pt;}
.y20_c00129{bottom:875.400000pt;}
.y23_c00129{bottom:875.973333pt;}
.y21_c00129{bottom:876.360000pt;}
.y1e_c00129{bottom:890.640000pt;}
.y1c_c00129{bottom:891.400000pt;}
.y1d_c00129{bottom:891.773333pt;}
.y1a_c00129{bottom:892.560000pt;}
.y1b_c00129{bottom:892.733333pt;}
.y19_c00129{bottom:893.693333pt;}
.y16_c00129{bottom:908.933333pt;}
.y14_c00129{bottom:909.106667pt;}
.y18_c00129{bottom:909.693333pt;}
.y13_c00129{bottom:909.893333pt;}
.y15_c00129{bottom:910.066667pt;}
.y17_c00129{bottom:910.266667pt;}
.y12_c00129{bottom:911.026667pt;}
.yd_c00129{bottom:924.360000pt;}
.y11_c00129{bottom:925.693333pt;}
.yb_c00129{bottom:926.440000pt;}
.y10_c00129{bottom:927.226667pt;}
.yc_c00129{bottom:927.400000pt;}
.ye_c00129{bottom:927.973333pt;}
.ya_c00129{bottom:928.360000pt;}
.yf_c00129{bottom:929.306667pt;}
.y9_c00129{bottom:942.640000pt;}
.y3_c00129{bottom:943.773333pt;}
.y7_c00129{bottom:944.560000pt;}
.y6_c00129{bottom:944.733333pt;}
.y8_c00129{bottom:945.306667pt;}
.y5_c00129{bottom:945.693333pt;}
.y4_c00129{bottom:945.706667pt;}
.y1_c00129{bottom:979.600000pt;}
.y2_c00129{bottom:980.560000pt;}
.h4_c00129{height:3.739141pt;}
.h2_c00129{height:20.466875pt;}
.h1_c00129{height:22.303646pt;}
.h7_c00129{height:27.879557pt;}
.h5_c00129{height:31.618698pt;}
.h6_c00129{height:35.357839pt;}
.h3_c00129{height:39.031380pt;}
.h8_c00129{height:40.691172pt;}
.h9_c00129{height:42.770521pt;}
.h0_c00129{height:1186.666667pt;}
.w0_c00129{width:782.666667pt;}
.x0_c00129{left:0.000000pt;}
.xed_c00129{left:133.333333pt;}
.xa4_c00129{left:134.293333pt;}
.x2_c00129{left:136.373333pt;}
.xd7_c00129{left:147.626667pt;}
.x54_c00129{left:149.333333pt;}
.x3_c00129{left:150.293333pt;}
.x2a_c00129{left:154.666667pt;}
.xbf_c00129{left:158.666667pt;}
.xaf_c00129{left:160.000000pt;}
.x71_c00129{left:161.706667pt;}
.xc7_c00129{left:164.373333pt;}
.xd4_c00129{left:166.666667pt;}
.x11_c00129{left:168.373333pt;}
.x1e_c00129{left:169.333333pt;}
.x5e_c00129{left:171.040000pt;}
.x8e_c00129{left:173.333333pt;}
.x84_c00129{left:174.666667pt;}
.x3e_c00129{left:176.373333pt;}
.x55_c00129{left:178.666667pt;}
.x7b_c00129{left:180.000000pt;}
.xdd_c00129{left:181.133333pt;}
.x1f_c00129{left:182.666667pt;}
.x2b_c00129{left:184.000000pt;}
.xbb_c00129{left:184.960000pt;}
.x102_c00129{left:186.666667pt;}
.x97_c00129{left:187.626667pt;}
.xa5_c00129{left:189.706667pt;}
.xee_c00129{left:192.000000pt;}
.x3f_c00129{left:193.333333pt;}
.xe4_c00129{left:194.293333pt;}
.x5f_c00129{left:196.000000pt;}
.x68_c00129{left:200.760000pt;}
.x108_c00129{left:202.293333pt;}
.x72_c00129{left:203.626667pt;}
.x34_c00129{left:206.666667pt;}
.x85_c00129{left:208.000000pt;}
.xb0_c00129{left:208.960000pt;}
.xcf_c00129{left:212.000000pt;}
.x56_c00129{left:213.333333pt;}
.x8f_c00129{left:215.040000pt;}
.x4a_c00129{left:216.373333pt;}
.xd5_c00129{left:218.666667pt;}
.xa9_c00129{left:220.000000pt;}
.x40_c00129{left:221.706667pt;}
.x103_c00129{left:222.666667pt;}
.xe8_c00129{left:223.626667pt;}
.xc1_c00129{left:226.666667pt;}
.x4_c00129{left:228.000000pt;}
.x7c_c00129{left:228.960000pt;}
.xd0_c00129{left:230.666667pt;}
.x2c_c00129{left:232.000000pt;}
.xc8_c00129{left:232.960000pt;}
.xd8_c00129{left:234.666667pt;}
.xfa_c00129{left:236.373333pt;}
.x12_c00129{left:238.666667pt;}
.x69_c00129{left:242.666667pt;}
.x5_c00129{left:247.626667pt;}
.xc9_c00129{left:249.706667pt;}
.xef_c00129{left:251.040000pt;}
.xce_c00129{left:252.373333pt;}
.x35_c00129{left:253.333333pt;}
.x104_c00129{left:254.666667pt;}
.x41_c00129{left:257.333333pt;}
.x20_c00129{left:258.666667pt;}
.xca_c00129{left:261.333333pt;}
.x9d_c00129{left:262.466667pt;}
.xf6_c00129{left:264.000000pt;}
.xb1_c00129{left:264.960000pt;}
.xa6_c00129{left:267.040000pt;}
.xaa_c00129{left:269.706667pt;}
.xd6_c00129{left:271.040000pt;}
.xfe_c00129{left:272.373333pt;}
.x7d_c00129{left:274.666667pt;}
.xde_c00129{left:276.373333pt;}
.xf7_c00129{left:277.333333pt;}
.x57_c00129{left:281.333333pt;}
.xe5_c00129{left:282.666667pt;}
.x60_c00129{left:284.373333pt;}
.x90_c00129{left:286.293333pt;}
.x4b_c00129{left:289.333333pt;}
.x98_c00129{left:291.040000pt;}
.x36_c00129{left:292.000000pt;}
.xab_c00129{left:293.333333pt;}
.x86_c00129{left:295.040000pt;}
.xcb_c00129{left:296.000000pt;}
.x6_c00129{left:296.960000pt;}
.x9e_c00129{left:299.426667pt;}
.x42_c00129{left:303.040000pt;}
.xf2_c00129{left:304.000000pt;}
.xb2_c00129{left:305.333333pt;}
.x21_c00129{left:306.293333pt;}
.x61_c00129{left:309.706667pt;}
.x13_c00129{left:310.666667pt;}
.x6a_c00129{left:312.000000pt;}
.x9f_c00129{left:313.906667pt;}
.x7_c00129{left:315.040000pt;}
.x73_c00129{left:316.960000pt;}
.x87_c00129{left:318.293333pt;}
.x2d_c00129{left:319.626667pt;}
.xf3_c00129{left:322.666667pt;}
.xe9_c00129{left:325.333333pt;}
.x91_c00129{left:327.040000pt;}
.x58_c00129{left:329.706667pt;}
.xb3_c00129{left:333.706667pt;}
.x74_c00129{left:334.666667pt;}
.x22_c00129{left:336.373333pt;}
.xd1_c00129{left:340.000000pt;}
.x106_c00129{left:341.333333pt;}
.x8a_c00129{left:344.000000pt;}
.x7e_c00129{left:346.666667pt;}
.xf4_c00129{left:348.000000pt;}
.x99_c00129{left:349.706667pt;}
.xfb_c00129{left:350.666667pt;}
.xc2_c00129{left:351.626667pt;}
.x37_c00129{left:354.293333pt;}
.x1_c00129{left:356.000000pt;}
.xb4_c00129{left:357.706667pt;}
.xa0_c00129{left:358.666667pt;}
.x62_c00129{left:360.000000pt;}
.xdf_c00129{left:361.706667pt;}
.xf0_c00129{left:362.666667pt;}
.x4c_c00129{left:364.000000pt;}
.x23_c00129{left:365.706667pt;}
.x14_c00129{left:366.666667pt;}
.x8_c00129{left:368.373333pt;}
.x92_c00129{left:371.040000pt;}
.x59_c00129{left:372.000000pt;}
.x6b_c00129{left:374.666667pt;}
.x4d_c00129{left:377.333333pt;}
.x63_c00129{left:379.040000pt;}
.xf8_c00129{left:382.666667pt;}
.xc3_c00129{left:384.373333pt;}
.xcc_c00129{left:387.626667pt;}
.x15_c00129{left:389.333333pt;}
.x6c_c00129{left:392.373333pt;}
.x93_c00129{left:393.333333pt;}
.xac_c00129{left:394.666667pt;}
.x4e_c00129{left:396.000000pt;}
.x7f_c00129{left:396.960000pt;}
.xb5_c00129{left:400.960000pt;}
.x64_c00129{left:404.373333pt;}
.x24_c00129{left:405.333333pt;}
.xb9_c00129{left:406.666667pt;}
.x43_c00129{left:408.373333pt;}
.x16_c00129{left:409.706667pt;}
.x38_c00129{left:413.333333pt;}
.x4f_c00129{left:415.626667pt;}
.xb6_c00129{left:417.706667pt;}
.xc4_c00129{left:418.666667pt;}
.x9_c00129{left:420.373333pt;}
.xf5_c00129{left:422.293333pt;}
.xd9_c00129{left:424.573333pt;}
.x2e_c00129{left:425.706667pt;}
.x17_c00129{left:426.666667pt;}
.x94_c00129{left:428.000000pt;}
.x39_c00129{left:433.706667pt;}
.x105_c00129{left:435.040000pt;}
.xe0_c00129{left:436.960000pt;}
.xd2_c00129{left:439.040000pt;}
.x5a_c00129{left:440.373333pt;}
.x44_c00129{left:441.706667pt;}
.x80_c00129{left:442.666667pt;}
.xad_c00129{left:444.373333pt;}
.x65_c00129{left:447.626667pt;}
.x75_c00129{left:448.960000pt;}
.x109_c00129{left:449.906667pt;}
.x9a_c00129{left:451.040000pt;}
.x2f_c00129{left:452.373333pt;}
.xda_c00129{left:453.706667pt;}
.xa_c00129{left:456.000000pt;}
.x18_c00129{left:457.706667pt;}
.x3a_c00129{left:460.000000pt;}
.x25_c00129{left:461.333333pt;}
.x81_c00129{left:463.040000pt;}
.xbc_c00129{left:464.000000pt;}
.x45_c00129{left:465.333333pt;}
.x76_c00129{left:467.040000pt;}
.x5b_c00129{left:468.000000pt;}
.x107_c00129{left:471.626667pt;}
.xa1_c00129{left:473.333333pt;}
.x6d_c00129{left:475.040000pt;}
.xf9_c00129{left:476.000000pt;}
.xf1_c00129{left:476.960000pt;}
.xff_c00129{left:482.293333pt;}
.xb_c00129{left:484.000000pt;}
.xe1_c00129{left:486.666667pt;}
.x50_c00129{left:488.373333pt;}
.xea_c00129{left:489.333333pt;}
.x19_c00129{left:490.293333pt;}
.xcd_c00129{left:492.000000pt;}
.x77_c00129{left:493.333333pt;}
.x9b_c00129{left:494.666667pt;}
.xc0_c00129{left:496.000000pt;}
.x30_c00129{left:496.960000pt;}
.x46_c00129{left:498.666667pt;}
.x95_c00129{left:500.960000pt;}
.x100_c00129{left:502.666667pt;}
.x8b_c00129{left:506.293333pt;}
.x26_c00129{left:507.626667pt;}
.xe6_c00129{left:509.706667pt;}
.x3b_c00129{left:510.666667pt;}
.x51_c00129{left:512.373333pt;}
.xc_c00129{left:513.333333pt;}
.xbd_c00129{left:514.666667pt;}
.x31_c00129{left:516.373333pt;}
.xd3_c00129{left:518.666667pt;}
.x1a_c00129{left:519.626667pt;}
.xfc_c00129{left:522.666667pt;}
.x8c_c00129{left:524.373333pt;}
.x9c_c00129{left:528.000000pt;}
.x88_c00129{left:529.333333pt;}
.x1b_c00129{left:530.666667pt;}
.xd_c00129{left:531.626667pt;}
.x78_c00129{left:532.960000pt;}
.x10a_c00129{left:537.333333pt;}
.x6e_c00129{left:538.666667pt;}
.x101_c00129{left:540.000000pt;}
.xe2_c00129{left:541.333333pt;}
.x32_c00129{left:542.293333pt;}
.x5c_c00129{left:544.000000pt;}
.x89_c00129{left:545.706667pt;}
.xa2_c00129{left:547.040000pt;}
.x27_c00129{left:548.373333pt;}
.x66_c00129{left:549.706667pt;}
.x3c_c00129{left:553.333333pt;}
.xeb_c00129{left:554.293333pt;}
.x47_c00129{left:556.960000pt;}
.x1c_c00129{left:560.000000pt;}
.xe_c00129{left:561.333333pt;}
.x52_c00129{left:563.626667pt;}
.x28_c00129{left:565.333333pt;}
.x79_c00129{left:569.333333pt;}
.xe7_c00129{left:571.040000pt;}
.xa7_c00129{left:572.000000pt;}
.xc5_c00129{left:572.960000pt;}
.x33_c00129{left:574.666667pt;}
.xfd_c00129{left:577.333333pt;}
.xdb_c00129{left:578.666667pt;}
.x5d_c00129{left:580.000000pt;}
.x3d_c00129{left:585.706667pt;}
.xbe_c00129{left:587.040000pt;}
.x8d_c00129{left:589.333333pt;}
.x82_c00129{left:591.040000pt;}
.xf_c00129{left:594.666667pt;}
.xec_c00129{left:596.373333pt;}
.xc6_c00129{left:598.666667pt;}
.xdc_c00129{left:600.000000pt;}
.x6f_c00129{left:602.666667pt;}
.x1d_c00129{left:605.706667pt;}
.xe3_c00129{left:606.666667pt;}
.xb7_c00129{left:608.000000pt;}
.xa8_c00129{left:609.706667pt;}
.x7a_c00129{left:611.626667pt;}
.x48_c00129{left:613.333333pt;}
.x96_c00129{left:614.666667pt;}
.xa3_c00129{left:616.000000pt;}
.x83_c00129{left:616.960000pt;}
.x53_c00129{left:620.373333pt;}
.xae_c00129{left:621.706667pt;}
.xba_c00129{left:623.040000pt;}
.xb8_c00129{left:624.000000pt;}
.x29_c00129{left:626.293333pt;}
.x10_c00129{left:628.000000pt;}
.x49_c00129{left:629.706667pt;}
.x67_c00129{left:631.040000pt;}
.x70_c00129{left:634.666667pt;}
.x10b_c00129{left:636.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_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_02c517552ce5dfdac790cee0.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mad_c00130{transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);}
.m78_c00130{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m79_c00130{transform:matrix(0.305066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305066,0.000000,0.000000,0.250000,0,0);}
.maf_c00130{transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);}
.m4b_c00130{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m3a_c00130{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m20_c00130{transform:matrix(0.367227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367227,0.000000,0.000000,0.250000,0,0);}
.m30_c00130{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m87_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);}
.m10_c00130{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m2e_c00130{transform:matrix(0.380252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380252,0.000000,0.000000,0.250000,0,0);}
.m28_c00130{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m5b_c00130{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m27_c00130{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m31_c00130{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m4e_c00130{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m5d_c00130{transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);}
.m6c_c00130{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.m36_c00130{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m50_c00130{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m6d_c00130{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m56_c00130{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m19_c00130{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m59_c00130{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.ma1_c00130{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.m23_c00130{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m15_c00130{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m72_c00130{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m12_c00130{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m6b_c00130{transform:matrix(0.426867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426867,0.000000,0.000000,0.250000,0,0);}
.m9_c00130{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m4c_c00130{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m68_c00130{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m3_c00130{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m8b_c00130{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m75_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);}
.m1c_c00130{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m18_c00130{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m6a_c00130{transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);}
.m77_c00130{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m5a_c00130{transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);}
.m1d_c00130{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m7c_c00130{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.ma4_c00130{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.m94_c00130{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.m97_c00130{transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);}
.m52_c00130{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m71_c00130{transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);}
.mb1_c00130{transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);}
.m9a_c00130{transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);}
.m2d_c00130{transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);}
.m93_c00130{transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);}
.md_c00130{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m1b_c00130{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m5_c00130{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m83_c00130{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m3b_c00130{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m7f_c00130{transform:matrix(0.489583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489583,0.000000,0.000000,0.250000,0,0);}
.m1f_c00130{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m81_c00130{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m51_c00130{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m45_c00130{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m9e_c00130{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.m2a_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);}
.mb0_c00130{transform:matrix(0.505609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505609,0.000000,0.000000,0.250000,0,0);}
.m46_c00130{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m5f_c00130{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m9d_c00130{transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);}
.m2c_c00130{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m54_c00130{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.mab_c00130{transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);}
.ma8_c00130{transform:matrix(0.521635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521635,0.000000,0.000000,0.250000,0,0);}
.me_c00130{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m55_c00130{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m8_c00130{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m26_c00130{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m2_c00130{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m49_c00130{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m6_c00130{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.ma5_c00130{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m70_c00130{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.m6f_c00130{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m34_c00130{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m13_c00130{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m38_c00130{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m25_c00130{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m1e_c00130{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m14_c00130{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m2f_c00130{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m22_c00130{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m41_c00130{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m5e_c00130{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.ma3_c00130{transform:matrix(0.548878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548878,0.000000,0.000000,0.250000,0,0);}
.m91_c00130{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m16_c00130{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m63_c00130{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m35_c00130{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m21_c00130{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mb_c00130{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m57_c00130{transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);}
.m53_c00130{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m7_c00130{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m82_c00130{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m44_c00130{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m4_c00130{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m58_c00130{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m62_c00130{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);}
.ma_c00130{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m99_c00130{transform:matrix(0.572115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572115,0.000000,0.000000,0.250000,0,0);}
.m3c_c00130{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m3f_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);}
.m1a_c00130{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m80_c00130{transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);}
.m11_c00130{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m39_c00130{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.ma2_c00130{transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);}
.m88_c00130{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.m4a_c00130{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m1_c00130{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m24_c00130{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mc_c00130{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m29_c00130{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m0_c00130{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m60_c00130{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m17_c00130{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m33_c00130{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m73_c00130{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.mf_c00130{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m7b_c00130{transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);}
.m65_c00130{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m9f_c00130{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m69_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);}
.m40_c00130{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mae_c00130{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.m67_c00130{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);}
.m8f_c00130{transform:matrix(0.651982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651982,0.000000,0.000000,0.250000,0,0);}
.m42_c00130{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m76_c00130{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m74_c00130{transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);}
.m3e_c00130{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);}
.m48_c00130{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m37_c00130{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m84_c00130{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m6e_c00130{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m43_c00130{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m64_c00130{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m86_c00130{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.ma9_c00130{transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);}
.ma7_c00130{transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);}
.ma0_c00130{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.m7a_c00130{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mac_c00130{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m7e_c00130{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.m4d_c00130{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.maa_c00130{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m8a_c00130{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m66_c00130{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_c00130{transform:matrix(0.718062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.718062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.718062,0.000000,0.000000,0.250000,0,0);}
.m9c_c00130{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.m8c_c00130{transform:matrix(0.720264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720264,0.000000,0.000000,0.250000,0,0);}
.m85_c00130{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m98_c00130{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.m2b_c00130{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m9b_c00130{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.m7d_c00130{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m32_c00130{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m95_c00130{transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);}
.m47_c00130{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m90_c00130{transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);}
.ma6_c00130{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m4f_c00130{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m8d_c00130{transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);}
.m96_c00130{transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);}
.m5c_c00130{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.m61_c00130{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m3d_c00130{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m89_c00130{transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);}
.m8e_c00130{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.v1_c00130{vertical-align:-6.000000px;}
.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;}
}
.wsb_c00130{word-spacing:-7.954080px;}
.ws14_c00130{word-spacing:0.000000px;}
.wsc_c00130{word-spacing:11.609047px;}
.ws8_c00130{word-spacing:13.611988px;}
.wse_c00130{word-spacing:15.107856px;}
.ws4_c00130{word-spacing:17.262919px;}
.ws10_c00130{word-spacing:18.138913px;}
.wsd_c00130{word-spacing:19.417982px;}
.ws12_c00130{word-spacing:20.798400px;}
.ws11_c00130{word-spacing:23.192194px;}
.ws5_c00130{word-spacing:24.638400px;}
.ws1_c00130{word-spacing:28.759954px;}
.wsf_c00130{word-spacing:30.234255px;}
.ws13_c00130{word-spacing:30.607622px;}
.ws7_c00130{word-spacing:31.838295px;}
.wsa_c00130{word-spacing:38.324009px;}
.ws0_c00130{word-spacing:39.846793px;}
.ws9_c00130{word-spacing:40.994598px;}
.ws6_c00130{word-spacing:51.496594px;}
.ws2_c00130{word-spacing:60.477382px;}
.ws3_c00130{word-spacing:100.206028px;}
._2_c00130{width:2.521587px;}
._3_c00130{width:23.569009px;}
._4_c00130{width:25.216999px;}
._0_c00130{width:48.948678px;}
._1_c00130{width:51.619266px;}
.fc0_c00130{color:transparent;}
.fs7_c00130{font-size:3.420000px;}
.fs8_c00130{font-size:11.880000px;}
.fs6_c00130{font-size:13.620000px;}
.fs5_c00130{font-size:18.720000px;}
.fs0_c00130{font-size:20.400000px;}
.fs3_c00130{font-size:25.500000px;}
.fs1_c00130{font-size:28.920000px;}
.fs4_c00130{font-size:32.340000px;}
.fs2_c00130{font-size:35.700000px;}
.y0_c00130{bottom:0.000000px;}
.y35_c00130{bottom:273.405000px;}
.y32_c00130{bottom:275.745000px;}
.y34_c00130{bottom:276.405000px;}
.y33_c00130{bottom:277.905000px;}
.y30_c00130{bottom:295.245000px;}
.y31_c00130{bottom:296.130000px;}
.y2f_c00130{bottom:297.405000px;}
.y2c_c00130{bottom:314.745000px;}
.y2a_c00130{bottom:315.825000px;}
.y2d_c00130{bottom:316.470000px;}
.y2b_c00130{bottom:316.905000px;}
.y2e_c00130{bottom:317.130000px;}
.y29_c00130{bottom:333.405000px;}
.y25_c00130{bottom:334.245000px;}
.y26_c00130{bottom:336.405000px;}
.y27_c00130{bottom:336.630000px;}
.y28_c00130{bottom:337.470000px;}
.y21_c00130{bottom:353.745000px;}
.y22_c00130{bottom:354.630000px;}
.y23_c00130{bottom:355.470000px;}
.y1f_c00130{bottom:355.905000px;}
.y24_c00130{bottom:356.130000px;}
.y20_c00130{bottom:356.970000px;}
.y1c_c00130{bottom:373.245000px;}
.y1e_c00130{bottom:374.550000px;}
.y1a_c00130{bottom:374.745000px;}
.y18_c00130{bottom:375.405000px;}
.y1b_c00130{bottom:375.630000px;}
.y1d_c00130{bottom:376.470000px;}
.y19_c00130{bottom:376.905000px;}
.y14_c00130{bottom:392.745000px;}
.y15_c00130{bottom:394.905000px;}
.y16_c00130{bottom:395.130000px;}
.y17_c00130{bottom:395.970000px;}
.y13_c00130{bottom:396.405000px;}
.y10_c00130{bottom:413.745000px;}
.y12_c00130{bottom:414.405000px;}
.y11_c00130{bottom:414.630000px;}
.yf_c00130{bottom:415.905000px;}
.ye_c00130{bottom:433.245000px;}
.yd_c00130{bottom:435.405000px;}
.yc_c00130{bottom:452.325000px;}
.yb_c00130{bottom:452.745000px;}
.ya_c00130{bottom:454.470000px;}
.y9_c00130{bottom:454.905000px;}
.y8_c00130{bottom:472.245000px;}
.y7_c00130{bottom:474.405000px;}
.y5_c00130{bottom:490.905000px;}
.y6_c00130{bottom:491.745000px;}
.y4_c00130{bottom:491.970000px;}
.y3_c00130{bottom:493.245000px;}
.y2_c00130{bottom:493.905000px;}
.ycb_c00130{bottom:534.630000px;}
.yca_c00130{bottom:536.550000px;}
.yc9_c00130{bottom:537.630000px;}
.yc7_c00130{bottom:548.130000px;}
.yc8_c00130{bottom:549.195000px;}
.yc5_c00130{bottom:549.630000px;}
.yc6_c00130{bottom:550.695000px;}
.yc3_c00130{bottom:560.550000px;}
.yc4_c00130{bottom:562.695000px;}
.yc0_c00130{bottom:563.130000px;}
.yc1_c00130{bottom:563.775000px;}
.ybf_c00130{bottom:564.195000px;}
.yc2_c00130{bottom:565.920000px;}
.ybe_c00130{bottom:576.195000px;}
.ybd_c00130{bottom:576.630000px;}
.yba_c00130{bottom:577.275000px;}
.yb8_c00130{bottom:577.695000px;}
.yb9_c00130{bottom:578.130000px;}
.ybc_c00130{bottom:578.970000px;}
.ybb_c00130{bottom:579.420000px;}
.yb7_c00130{bottom:589.695000px;}
.yb6_c00130{bottom:590.130000px;}
.yb5_c00130{bottom:591.195000px;}
.yb4_c00130{bottom:591.630000px;}
.yb3_c00130{bottom:592.275000px;}
.yb2_c00130{bottom:592.695000px;}
.yb1_c00130{bottom:603.630000px;}
.yb0_c00130{bottom:604.695000px;}
.yae_c00130{bottom:605.775000px;}
.yaf_c00130{bottom:606.195000px;}
.yad_c00130{bottom:607.695000px;}
.yac_c00130{bottom:617.130000px;}
.yab_c00130{bottom:618.195000px;}
.yaa_c00130{bottom:618.630000px;}
.ya9_c00130{bottom:620.130000px;}
.ya8_c00130{bottom:630.630000px;}
.ya7_c00130{bottom:632.130000px;}
.ya6_c00130{bottom:633.195000px;}
.ya5_c00130{bottom:634.695000px;}
.ya4_c00130{bottom:645.195000px;}
.ya3_c00130{bottom:645.630000px;}
.ya2_c00130{bottom:646.695000px;}
.ya0_c00130{bottom:647.130000px;}
.ya1_c00130{bottom:648.195000px;}
.y9f_c00130{bottom:658.695000px;}
.y9e_c00130{bottom:659.130000px;}
.y9d_c00130{bottom:660.195000px;}
.y9c_c00130{bottom:661.695000px;}
.y9a_c00130{bottom:672.630000px;}
.y9b_c00130{bottom:673.695000px;}
.y97_c00130{bottom:674.130000px;}
.y98_c00130{bottom:675.195000px;}
.y99_c00130{bottom:675.420000px;}
.y96_c00130{bottom:686.130000px;}
.y95_c00130{bottom:687.195000px;}
.y94_c00130{bottom:687.630000px;}
.y93_c00130{bottom:689.130000px;}
.y92_c00130{bottom:700.920000px;}
.y91_c00130{bottom:702.195000px;}
.y90_c00130{bottom:702.420000px;}
.y8f_c00130{bottom:702.630000px;}
.y8e_c00130{bottom:703.695000px;}
.y8c_c00130{bottom:714.630000px;}
.y8d_c00130{bottom:715.695000px;}
.y89_c00130{bottom:716.130000px;}
.y8a_c00130{bottom:716.775000px;}
.y8b_c00130{bottom:717.195000px;}
.y88_c00130{bottom:728.130000px;}
.y87_c00130{bottom:729.195000px;}
.y86_c00130{bottom:729.630000px;}
.y85_c00130{bottom:742.695000px;}
.y84_c00130{bottom:743.130000px;}
.y83_c00130{bottom:744.195000px;}
.y82_c00130{bottom:759.195000px;}
.y81_c00130{bottom:769.695000px;}
.y80_c00130{bottom:770.130000px;}
.y7f_c00130{bottom:771.195000px;}
.y7e_c00130{bottom:772.695000px;}
.y7b_c00130{bottom:783.630000px;}
.y7c_c00130{bottom:784.695000px;}
.y7d_c00130{bottom:784.920000px;}
.y7a_c00130{bottom:786.195000px;}
.y79_c00130{bottom:797.130000px;}
.y78_c00130{bottom:798.195000px;}
.y77_c00130{bottom:801.195000px;}
.y76_c00130{bottom:810.630000px;}
.y75_c00130{bottom:811.695000px;}
.y74_c00130{bottom:812.130000px;}
.y73_c00130{bottom:813.195000px;}
.y72_c00130{bottom:825.195000px;}
.y71_c00130{bottom:825.630000px;}
.y70_c00130{bottom:826.695000px;}
.y6f_c00130{bottom:838.695000px;}
.y6d_c00130{bottom:839.130000px;}
.y6e_c00130{bottom:840.195000px;}
.y6c_c00130{bottom:840.630000px;}
.y6b_c00130{bottom:843.195000px;}
.y6a_c00130{bottom:852.630000px;}
.y69_c00130{bottom:853.695000px;}
.y68_c00130{bottom:854.130000px;}
.y67_c00130{bottom:855.195000px;}
.y66_c00130{bottom:866.130000px;}
.y65_c00130{bottom:867.195000px;}
.y63_c00130{bottom:867.630000px;}
.y64_c00130{bottom:868.695000px;}
.y62_c00130{bottom:880.695000px;}
.y60_c00130{bottom:881.130000px;}
.y61_c00130{bottom:882.195000px;}
.y5f_c00130{bottom:882.630000px;}
.y5e_c00130{bottom:883.695000px;}
.y5d_c00130{bottom:893.130000px;}
.y5c_c00130{bottom:894.195000px;}
.y5b_c00130{bottom:895.695000px;}
.y5a_c00130{bottom:896.130000px;}
.y59_c00130{bottom:909.195000px;}
.y58_c00130{bottom:909.630000px;}
.y57_c00130{bottom:910.695000px;}
.y56_c00130{bottom:921.630000px;}
.y55_c00130{bottom:922.695000px;}
.y54_c00130{bottom:923.130000px;}
.y53_c00130{bottom:924.195000px;}
.y52_c00130{bottom:935.130000px;}
.y51_c00130{bottom:936.195000px;}
.y50_c00130{bottom:936.630000px;}
.y4f_c00130{bottom:937.050000px;}
.y4e_c00130{bottom:938.130000px;}
.y4d_c00130{bottom:948.630000px;}
.y4c_c00130{bottom:949.695000px;}
.y4a_c00130{bottom:950.130000px;}
.y4b_c00130{bottom:951.195000px;}
.y49_c00130{bottom:952.695000px;}
.y47_c00130{bottom:968.130000px;}
.y48_c00130{bottom:969.195000px;}
.y46_c00130{bottom:969.630000px;}
.y45_c00130{bottom:970.695000px;}
.y44_c00130{bottom:981.630000px;}
.y43_c00130{bottom:982.695000px;}
.y41_c00130{bottom:983.130000px;}
.y42_c00130{bottom:984.195000px;}
.y40_c00130{bottom:996.195000px;}
.y3f_c00130{bottom:997.695000px;}
.y3c_c00130{bottom:1019.325000px;}
.y3b_c00130{bottom:1020.405000px;}
.y3e_c00130{bottom:1021.470000px;}
.y3d_c00130{bottom:1022.550000px;}
.y3a_c00130{bottom:1035.405000px;}
.y38_c00130{bottom:1036.470000px;}
.y39_c00130{bottom:1037.550000px;}
.y37_c00130{bottom:1066.695000px;}
.y36_c00130{bottom:1067.550000px;}
.y1_c00130{bottom:1102.050000px;}
.h8_c00130{height:4.206533px;}
.h9_c00130{height:14.612168px;}
.h7_c00130{height:16.752334px;}
.h6_c00130{height:23.025234px;}
.h1_c00130{height:25.091602px;}
.h4_c00130{height:31.364502px;}
.h2_c00130{height:35.571035px;}
.h5_c00130{height:39.777568px;}
.h3_c00130{height:43.910303px;}
.h0_c00130{height:1335.000000px;}
.w0_c00130{width:880.500000px;}
.x0_c00130{left:0.000000px;}
.x3_c00130{left:153.645000px;}
.x3b_c00130{left:155.580000px;}
.x63_c00130{left:157.080000px;}
.x1f_c00130{left:169.500000px;}
.x30_c00130{left:171.000000px;}
.x64_c00130{left:181.920000px;}
.x54_c00130{left:183.000000px;}
.x4_c00130{left:186.420000px;}
.x20_c00130{left:195.000000px;}
.x29_c00130{left:198.000000px;}
.x70_c00130{left:202.500000px;}
.x48_c00130{left:208.500000px;}
.x13_c00130{left:210.000000px;}
.x3c_c00130{left:214.920000px;}
.x7d_c00130{left:222.420000px;}
.x14_c00130{left:228.645000px;}
.x31_c00130{left:232.080000px;}
.x5_c00130{left:242.580000px;}
.x55_c00130{left:244.080000px;}
.x71_c00130{left:245.580000px;}
.x3d_c00130{left:248.580000px;}
.x15_c00130{left:258.000000px;}
.x6_c00130{left:259.080000px;}
.x56_c00130{left:262.920000px;}
.x3e_c00130{left:267.645000px;}
.x2a_c00130{left:271.500000px;}
.xa5_c00130{left:274.500000px;}
.x9d_c00130{left:276.000000px;}
.x65_c00130{left:279.420000px;}
.x32_c00130{left:284.775000px;}
.x57_c00130{left:289.500000px;}
.x7e_c00130{left:291.000000px;}
.x7_c00130{left:294.420000px;}
.x3f_c00130{left:298.500000px;}
.x72_c00130{left:300.420000px;}
.x21_c00130{left:302.580000px;}
.x66_c00130{left:307.500000px;}
.x2b_c00130{left:309.420000px;}
.xa6_c00130{left:310.500000px;}
.xa0_c00130{left:312.000000px;}
.xad_c00130{left:315.000000px;}
.x9e_c00130{left:316.080000px;}
.x86_c00130{left:317.580000px;}
.x58_c00130{left:319.500000px;}
.xa4_c00130{left:321.000000px;}
.x8_c00130{left:324.000000px;}
.xa1_c00130{left:325.500000px;}
.x88_c00130{left:328.080000px;}
.x97_c00130{left:330.000000px;}
.x22_c00130{left:331.080000px;}
.xab_c00130{left:333.000000px;}
.x9f_c00130{left:334.080000px;}
.x2c_c00130{left:337.920000px;}
.x7f_c00130{left:339.000000px;}
.x67_c00130{left:343.500000px;}
.x33_c00130{left:346.500000px;}
.x49_c00130{left:348.000000px;}
.xa2_c00130{left:352.500000px;}
.x23_c00130{left:359.580000px;}
.x16_c00130{left:361.500000px;}
.x9_c00130{left:364.080000px;}
.xa3_c00130{left:366.420000px;}
.xac_c00130{left:369.000000px;}
.x40_c00130{left:370.080000px;}
.x59_c00130{left:371.580000px;}
.x68_c00130{left:375.000000px;}
.x17_c00130{left:378.645000px;}
.x4a_c00130{left:384.420000px;}
.x73_c00130{left:386.580000px;}
.x2d_c00130{left:388.080000px;}
.x5a_c00130{left:390.000000px;}
.x34_c00130{left:393.420000px;}
.x87_c00130{left:396.420000px;}
.x1_c00130{left:399.000000px;}
.x41_c00130{left:402.420000px;}
.x74_c00130{left:406.920000px;}
.x2e_c00130{left:408.420000px;}
.x18_c00130{left:409.920000px;}
.x80_c00130{left:411.000000px;}
.x9c_c00130{left:418.500000px;}
.x90_c00130{left:420.000000px;}
.x98_c00130{left:421.500000px;}
.x8c_c00130{left:422.580000px;}
.x8f_c00130{left:424.500000px;}
.x93_c00130{left:427.500000px;}
.xa_c00130{left:429.420000px;}
.x5b_c00130{left:430.920000px;}
.x69_c00130{left:432.000000px;}
.x75_c00130{left:435.000000px;}
.x2f_c00130{left:436.500000px;}
.x4b_c00130{left:441.000000px;}
.x8d_c00130{left:445.920000px;}
.x35_c00130{left:456.420000px;}
.xb_c00130{left:457.920000px;}
.x4c_c00130{left:459.420000px;}
.xa7_c00130{left:460.500000px;}
.x5c_c00130{left:469.500000px;}
.x19_c00130{left:478.500000px;}
.x24_c00130{left:481.500000px;}
.x42_c00130{left:484.920000px;}
.x4d_c00130{left:486.000000px;}
.x76_c00130{left:489.000000px;}
.x89_c00130{left:490.920000px;}
.x91_c00130{left:492.000000px;}
.x99_c00130{left:493.500000px;}
.x25_c00130{left:497.145000px;}
.x94_c00130{left:499.500000px;}
.x6a_c00130{left:502.500000px;}
.x36_c00130{left:506.580000px;}
.xc_c00130{left:508.080000px;}
.x1a_c00130{left:510.000000px;}
.x81_c00130{left:511.500000px;}
.x77_c00130{left:515.580000px;}
.x26_c00130{left:525.000000px;}
.x37_c00130{left:526.920000px;}
.x92_c00130{left:528.000000px;}
.xd_c00130{left:529.920000px;}
.xa8_c00130{left:532.500000px;}
.x8a_c00130{left:534.000000px;}
.x78_c00130{left:535.920000px;}
.x43_c00130{left:537.000000px;}
.x8e_c00130{left:540.000000px;}
.x5d_c00130{left:544.500000px;}
.x6b_c00130{left:546.000000px;}
.x38_c00130{left:555.000000px;}
.xe_c00130{left:559.920000px;}
.x79_c00130{left:564.000000px;}
.x9a_c00130{left:565.500000px;}
.x6c_c00130{left:567.420000px;}
.xa9_c00130{left:568.500000px;}
.x5e_c00130{left:570.000000px;}
.x1b_c00130{left:574.920000px;}
.x4e_c00130{left:586.500000px;}
.x27_c00130{left:589.920000px;}
.x39_c00130{left:592.500000px;}
.x6d_c00130{left:595.500000px;}
.x5f_c00130{left:598.080000px;}
.x96_c00130{left:600.000000px;}
.x9b_c00130{left:601.920000px;}
.x8b_c00130{left:603.420000px;}
.xaa_c00130{left:604.500000px;}
.x95_c00130{left:607.500000px;}
.x4f_c00130{left:609.420000px;}
.x7a_c00130{left:612.000000px;}
.x82_c00130{left:613.500000px;}
.x60_c00130{left:616.920000px;}
.xf_c00130{left:620.580000px;}
.x1c_c00130{left:623.580000px;}
.x7b_c00130{left:628.500000px;}
.x50_c00130{left:634.500000px;}
.x83_c00130{left:639.000000px;}
.x28_c00130{left:641.145000px;}
.x1d_c00130{left:642.420000px;}
.x6e_c00130{left:646.500000px;}
.x44_c00130{left:651.000000px;}
.x10_c00130{left:654.420000px;}
.x84_c00130{left:655.500000px;}
.x45_c00130{left:664.500000px;}
.x51_c00130{left:666.000000px;}
.x1e_c00130{left:669.000000px;}
.x3a_c00130{left:673.920000px;}
.x11_c00130{left:682.920000px;}
.x7c_c00130{left:684.000000px;}
.x61_c00130{left:690.420000px;}
.x52_c00130{left:694.500000px;}
.x6f_c00130{left:703.080000px;}
.x46_c00130{left:706.080000px;}
.x2_c00130{left:707.355000px;}
.x85_c00130{left:709.080000px;}
.x53_c00130{left:720.000000px;}
.x12_c00130{left:721.500000px;}
.x47_c00130{left:726.000000px;}
.x62_c00130{left:730.500000px;}
@media print{
.v1_c00130{vertical-align:-5.333333pt;}
.v0_c00130{vertical-align:0.000000pt;}
.ls0_c00130{letter-spacing:0.000000pt;}
.wsb_c00130{word-spacing:-7.070293pt;}
.ws14_c00130{word-spacing:0.000000pt;}
.wsc_c00130{word-spacing:10.319153pt;}
.ws8_c00130{word-spacing:12.099545pt;}
.wse_c00130{word-spacing:13.429205pt;}
.ws4_c00130{word-spacing:15.344817pt;}
.ws10_c00130{word-spacing:16.123479pt;}
.wsd_c00130{word-spacing:17.260429pt;}
.ws12_c00130{word-spacing:18.487467pt;}
.ws11_c00130{word-spacing:20.615283pt;}
.ws5_c00130{word-spacing:21.900800pt;}
.ws1_c00130{word-spacing:25.564404pt;}
.wsf_c00130{word-spacing:26.874893pt;}
.ws13_c00130{word-spacing:27.206775pt;}
.ws7_c00130{word-spacing:28.300707pt;}
.wsa_c00130{word-spacing:34.065786pt;}
.ws0_c00130{word-spacing:35.419372pt;}
.ws9_c00130{word-spacing:36.439642pt;}
.ws6_c00130{word-spacing:45.774750pt;}
.ws2_c00130{word-spacing:53.757673pt;}
.ws3_c00130{word-spacing:89.072025pt;}
._2_c00130{width:2.241411pt;}
._3_c00130{width:20.950231pt;}
._4_c00130{width:22.415110pt;}
._0_c00130{width:43.509936pt;}
._1_c00130{width:45.883792pt;}
.fs7_c00130{font-size:3.040000pt;}
.fs8_c00130{font-size:10.560000pt;}
.fs6_c00130{font-size:12.106667pt;}
.fs5_c00130{font-size:16.640000pt;}
.fs0_c00130{font-size:18.133333pt;}
.fs3_c00130{font-size:22.666667pt;}
.fs1_c00130{font-size:25.706667pt;}
.fs4_c00130{font-size:28.746667pt;}
.fs2_c00130{font-size:31.733333pt;}
.y0_c00130{bottom:0.000000pt;}
.y35_c00130{bottom:243.026667pt;}
.y32_c00130{bottom:245.106667pt;}
.y34_c00130{bottom:245.693333pt;}
.y33_c00130{bottom:247.026667pt;}
.y30_c00130{bottom:262.440000pt;}
.y31_c00130{bottom:263.226667pt;}
.y2f_c00130{bottom:264.360000pt;}
.y2c_c00130{bottom:279.773333pt;}
.y2a_c00130{bottom:280.733333pt;}
.y2d_c00130{bottom:281.306667pt;}
.y2b_c00130{bottom:281.693333pt;}
.y2e_c00130{bottom:281.893333pt;}
.y29_c00130{bottom:296.360000pt;}
.y25_c00130{bottom:297.106667pt;}
.y26_c00130{bottom:299.026667pt;}
.y27_c00130{bottom:299.226667pt;}
.y28_c00130{bottom:299.973333pt;}
.y21_c00130{bottom:314.440000pt;}
.y22_c00130{bottom:315.226667pt;}
.y23_c00130{bottom:315.973333pt;}
.y1f_c00130{bottom:316.360000pt;}
.y24_c00130{bottom:316.560000pt;}
.y20_c00130{bottom:317.306667pt;}
.y1c_c00130{bottom:331.773333pt;}
.y1e_c00130{bottom:332.933333pt;}
.y1a_c00130{bottom:333.106667pt;}
.y18_c00130{bottom:333.693333pt;}
.y1b_c00130{bottom:333.893333pt;}
.y1d_c00130{bottom:334.640000pt;}
.y19_c00130{bottom:335.026667pt;}
.y14_c00130{bottom:349.106667pt;}
.y15_c00130{bottom:351.026667pt;}
.y16_c00130{bottom:351.226667pt;}
.y17_c00130{bottom:351.973333pt;}
.y13_c00130{bottom:352.360000pt;}
.y10_c00130{bottom:367.773333pt;}
.y12_c00130{bottom:368.360000pt;}
.y11_c00130{bottom:368.560000pt;}
.yf_c00130{bottom:369.693333pt;}
.ye_c00130{bottom:385.106667pt;}
.yd_c00130{bottom:387.026667pt;}
.yc_c00130{bottom:402.066667pt;}
.yb_c00130{bottom:402.440000pt;}
.ya_c00130{bottom:403.973333pt;}
.y9_c00130{bottom:404.360000pt;}
.y8_c00130{bottom:419.773333pt;}
.y7_c00130{bottom:421.693333pt;}
.y5_c00130{bottom:436.360000pt;}
.y6_c00130{bottom:437.106667pt;}
.y4_c00130{bottom:437.306667pt;}
.y3_c00130{bottom:438.440000pt;}
.y2_c00130{bottom:439.026667pt;}
.ycb_c00130{bottom:475.226667pt;}
.yca_c00130{bottom:476.933333pt;}
.yc9_c00130{bottom:477.893333pt;}
.yc7_c00130{bottom:487.226667pt;}
.yc8_c00130{bottom:488.173333pt;}
.yc5_c00130{bottom:488.560000pt;}
.yc6_c00130{bottom:489.506667pt;}
.yc3_c00130{bottom:498.266667pt;}
.yc4_c00130{bottom:500.173333pt;}
.yc0_c00130{bottom:500.560000pt;}
.yc1_c00130{bottom:501.133333pt;}
.ybf_c00130{bottom:501.506667pt;}
.yc2_c00130{bottom:503.040000pt;}
.ybe_c00130{bottom:512.173333pt;}
.ybd_c00130{bottom:512.560000pt;}
.yba_c00130{bottom:513.133333pt;}
.yb8_c00130{bottom:513.506667pt;}
.yb9_c00130{bottom:513.893333pt;}
.ybc_c00130{bottom:514.640000pt;}
.ybb_c00130{bottom:515.040000pt;}
.yb7_c00130{bottom:524.173333pt;}
.yb6_c00130{bottom:524.560000pt;}
.yb5_c00130{bottom:525.506667pt;}
.yb4_c00130{bottom:525.893333pt;}
.yb3_c00130{bottom:526.466667pt;}
.yb2_c00130{bottom:526.840000pt;}
.yb1_c00130{bottom:536.560000pt;}
.yb0_c00130{bottom:537.506667pt;}
.yae_c00130{bottom:538.466667pt;}
.yaf_c00130{bottom:538.840000pt;}
.yad_c00130{bottom:540.173333pt;}
.yac_c00130{bottom:548.560000pt;}
.yab_c00130{bottom:549.506667pt;}
.yaa_c00130{bottom:549.893333pt;}
.ya9_c00130{bottom:551.226667pt;}
.ya8_c00130{bottom:560.560000pt;}
.ya7_c00130{bottom:561.893333pt;}
.ya6_c00130{bottom:562.840000pt;}
.ya5_c00130{bottom:564.173333pt;}
.ya4_c00130{bottom:573.506667pt;}
.ya3_c00130{bottom:573.893333pt;}
.ya2_c00130{bottom:574.840000pt;}
.ya0_c00130{bottom:575.226667pt;}
.ya1_c00130{bottom:576.173333pt;}
.y9f_c00130{bottom:585.506667pt;}
.y9e_c00130{bottom:585.893333pt;}
.y9d_c00130{bottom:586.840000pt;}
.y9c_c00130{bottom:588.173333pt;}
.y9a_c00130{bottom:597.893333pt;}
.y9b_c00130{bottom:598.840000pt;}
.y97_c00130{bottom:599.226667pt;}
.y98_c00130{bottom:600.173333pt;}
.y99_c00130{bottom:600.373333pt;}
.y96_c00130{bottom:609.893333pt;}
.y95_c00130{bottom:610.840000pt;}
.y94_c00130{bottom:611.226667pt;}
.y93_c00130{bottom:612.560000pt;}
.y92_c00130{bottom:623.040000pt;}
.y91_c00130{bottom:624.173333pt;}
.y90_c00130{bottom:624.373333pt;}
.y8f_c00130{bottom:624.560000pt;}
.y8e_c00130{bottom:625.506667pt;}
.y8c_c00130{bottom:635.226667pt;}
.y8d_c00130{bottom:636.173333pt;}
.y89_c00130{bottom:636.560000pt;}
.y8a_c00130{bottom:637.133333pt;}
.y8b_c00130{bottom:637.506667pt;}
.y88_c00130{bottom:647.226667pt;}
.y87_c00130{bottom:648.173333pt;}
.y86_c00130{bottom:648.560000pt;}
.y85_c00130{bottom:660.173333pt;}
.y84_c00130{bottom:660.560000pt;}
.y83_c00130{bottom:661.506667pt;}
.y82_c00130{bottom:674.840000pt;}
.y81_c00130{bottom:684.173333pt;}
.y80_c00130{bottom:684.560000pt;}
.y7f_c00130{bottom:685.506667pt;}
.y7e_c00130{bottom:686.840000pt;}
.y7b_c00130{bottom:696.560000pt;}
.y7c_c00130{bottom:697.506667pt;}
.y7d_c00130{bottom:697.706667pt;}
.y7a_c00130{bottom:698.840000pt;}
.y79_c00130{bottom:708.560000pt;}
.y78_c00130{bottom:709.506667pt;}
.y77_c00130{bottom:712.173333pt;}
.y76_c00130{bottom:720.560000pt;}
.y75_c00130{bottom:721.506667pt;}
.y74_c00130{bottom:721.893333pt;}
.y73_c00130{bottom:722.840000pt;}
.y72_c00130{bottom:733.506667pt;}
.y71_c00130{bottom:733.893333pt;}
.y70_c00130{bottom:734.840000pt;}
.y6f_c00130{bottom:745.506667pt;}
.y6d_c00130{bottom:745.893333pt;}
.y6e_c00130{bottom:746.840000pt;}
.y6c_c00130{bottom:747.226667pt;}
.y6b_c00130{bottom:749.506667pt;}
.y6a_c00130{bottom:757.893333pt;}
.y69_c00130{bottom:758.840000pt;}
.y68_c00130{bottom:759.226667pt;}
.y67_c00130{bottom:760.173333pt;}
.y66_c00130{bottom:769.893333pt;}
.y65_c00130{bottom:770.840000pt;}
.y63_c00130{bottom:771.226667pt;}
.y64_c00130{bottom:772.173333pt;}
.y62_c00130{bottom:782.840000pt;}
.y60_c00130{bottom:783.226667pt;}
.y61_c00130{bottom:784.173333pt;}
.y5f_c00130{bottom:784.560000pt;}
.y5e_c00130{bottom:785.506667pt;}
.y5d_c00130{bottom:793.893333pt;}
.y5c_c00130{bottom:794.840000pt;}
.y5b_c00130{bottom:796.173333pt;}
.y5a_c00130{bottom:796.560000pt;}
.y59_c00130{bottom:808.173333pt;}
.y58_c00130{bottom:808.560000pt;}
.y57_c00130{bottom:809.506667pt;}
.y56_c00130{bottom:819.226667pt;}
.y55_c00130{bottom:820.173333pt;}
.y54_c00130{bottom:820.560000pt;}
.y53_c00130{bottom:821.506667pt;}
.y52_c00130{bottom:831.226667pt;}
.y51_c00130{bottom:832.173333pt;}
.y50_c00130{bottom:832.560000pt;}
.y4f_c00130{bottom:832.933333pt;}
.y4e_c00130{bottom:833.893333pt;}
.y4d_c00130{bottom:843.226667pt;}
.y4c_c00130{bottom:844.173333pt;}
.y4a_c00130{bottom:844.560000pt;}
.y4b_c00130{bottom:845.506667pt;}
.y49_c00130{bottom:846.840000pt;}
.y47_c00130{bottom:860.560000pt;}
.y48_c00130{bottom:861.506667pt;}
.y46_c00130{bottom:861.893333pt;}
.y45_c00130{bottom:862.840000pt;}
.y44_c00130{bottom:872.560000pt;}
.y43_c00130{bottom:873.506667pt;}
.y41_c00130{bottom:873.893333pt;}
.y42_c00130{bottom:874.840000pt;}
.y40_c00130{bottom:885.506667pt;}
.y3f_c00130{bottom:886.840000pt;}
.y3c_c00130{bottom:906.066667pt;}
.y3b_c00130{bottom:907.026667pt;}
.y3e_c00130{bottom:907.973333pt;}
.y3d_c00130{bottom:908.933333pt;}
.y3a_c00130{bottom:920.360000pt;}
.y38_c00130{bottom:921.306667pt;}
.y39_c00130{bottom:922.266667pt;}
.y37_c00130{bottom:948.173333pt;}
.y36_c00130{bottom:948.933333pt;}
.y1_c00130{bottom:979.600000pt;}
.h8_c00130{height:3.739141pt;}
.h9_c00130{height:12.988594pt;}
.h7_c00130{height:14.890964pt;}
.h6_c00130{height:20.466875pt;}
.h1_c00130{height:22.303646pt;}
.h4_c00130{height:27.879557pt;}
.h2_c00130{height:31.618698pt;}
.h5_c00130{height:35.357839pt;}
.h3_c00130{height:39.031380pt;}
.h0_c00130{height:1186.666667pt;}
.w0_c00130{width:782.666667pt;}
.x0_c00130{left:0.000000pt;}
.x3_c00130{left:136.573333pt;}
.x3b_c00130{left:138.293333pt;}
.x63_c00130{left:139.626667pt;}
.x1f_c00130{left:150.666667pt;}
.x30_c00130{left:152.000000pt;}
.x64_c00130{left:161.706667pt;}
.x54_c00130{left:162.666667pt;}
.x4_c00130{left:165.706667pt;}
.x20_c00130{left:173.333333pt;}
.x29_c00130{left:176.000000pt;}
.x70_c00130{left:180.000000pt;}
.x48_c00130{left:185.333333pt;}
.x13_c00130{left:186.666667pt;}
.x3c_c00130{left:191.040000pt;}
.x7d_c00130{left:197.706667pt;}
.x14_c00130{left:203.240000pt;}
.x31_c00130{left:206.293333pt;}
.x5_c00130{left:215.626667pt;}
.x55_c00130{left:216.960000pt;}
.x71_c00130{left:218.293333pt;}
.x3d_c00130{left:220.960000pt;}
.x15_c00130{left:229.333333pt;}
.x6_c00130{left:230.293333pt;}
.x56_c00130{left:233.706667pt;}
.x3e_c00130{left:237.906667pt;}
.x2a_c00130{left:241.333333pt;}
.xa5_c00130{left:244.000000pt;}
.x9d_c00130{left:245.333333pt;}
.x65_c00130{left:248.373333pt;}
.x32_c00130{left:253.133333pt;}
.x57_c00130{left:257.333333pt;}
.x7e_c00130{left:258.666667pt;}
.x7_c00130{left:261.706667pt;}
.x3f_c00130{left:265.333333pt;}
.x72_c00130{left:267.040000pt;}
.x21_c00130{left:268.960000pt;}
.x66_c00130{left:273.333333pt;}
.x2b_c00130{left:275.040000pt;}
.xa6_c00130{left:276.000000pt;}
.xa0_c00130{left:277.333333pt;}
.xad_c00130{left:280.000000pt;}
.x9e_c00130{left:280.960000pt;}
.x86_c00130{left:282.293333pt;}
.x58_c00130{left:284.000000pt;}
.xa4_c00130{left:285.333333pt;}
.x8_c00130{left:288.000000pt;}
.xa1_c00130{left:289.333333pt;}
.x88_c00130{left:291.626667pt;}
.x97_c00130{left:293.333333pt;}
.x22_c00130{left:294.293333pt;}
.xab_c00130{left:296.000000pt;}
.x9f_c00130{left:296.960000pt;}
.x2c_c00130{left:300.373333pt;}
.x7f_c00130{left:301.333333pt;}
.x67_c00130{left:305.333333pt;}
.x33_c00130{left:308.000000pt;}
.x49_c00130{left:309.333333pt;}
.xa2_c00130{left:313.333333pt;}
.x23_c00130{left:319.626667pt;}
.x16_c00130{left:321.333333pt;}
.x9_c00130{left:323.626667pt;}
.xa3_c00130{left:325.706667pt;}
.xac_c00130{left:328.000000pt;}
.x40_c00130{left:328.960000pt;}
.x59_c00130{left:330.293333pt;}
.x68_c00130{left:333.333333pt;}
.x17_c00130{left:336.573333pt;}
.x4a_c00130{left:341.706667pt;}
.x73_c00130{left:343.626667pt;}
.x2d_c00130{left:344.960000pt;}
.x5a_c00130{left:346.666667pt;}
.x34_c00130{left:349.706667pt;}
.x87_c00130{left:352.373333pt;}
.x1_c00130{left:354.666667pt;}
.x41_c00130{left:357.706667pt;}
.x74_c00130{left:361.706667pt;}
.x2e_c00130{left:363.040000pt;}
.x18_c00130{left:364.373333pt;}
.x80_c00130{left:365.333333pt;}
.x9c_c00130{left:372.000000pt;}
.x90_c00130{left:373.333333pt;}
.x98_c00130{left:374.666667pt;}
.x8c_c00130{left:375.626667pt;}
.x8f_c00130{left:377.333333pt;}
.x93_c00130{left:380.000000pt;}
.xa_c00130{left:381.706667pt;}
.x5b_c00130{left:383.040000pt;}
.x69_c00130{left:384.000000pt;}
.x75_c00130{left:386.666667pt;}
.x2f_c00130{left:388.000000pt;}
.x4b_c00130{left:392.000000pt;}
.x8d_c00130{left:396.373333pt;}
.x35_c00130{left:405.706667pt;}
.xb_c00130{left:407.040000pt;}
.x4c_c00130{left:408.373333pt;}
.xa7_c00130{left:409.333333pt;}
.x5c_c00130{left:417.333333pt;}
.x19_c00130{left:425.333333pt;}
.x24_c00130{left:428.000000pt;}
.x42_c00130{left:431.040000pt;}
.x4d_c00130{left:432.000000pt;}
.x76_c00130{left:434.666667pt;}
.x89_c00130{left:436.373333pt;}
.x91_c00130{left:437.333333pt;}
.x99_c00130{left:438.666667pt;}
.x25_c00130{left:441.906667pt;}
.x94_c00130{left:444.000000pt;}
.x6a_c00130{left:446.666667pt;}
.x36_c00130{left:450.293333pt;}
.xc_c00130{left:451.626667pt;}
.x1a_c00130{left:453.333333pt;}
.x81_c00130{left:454.666667pt;}
.x77_c00130{left:458.293333pt;}
.x26_c00130{left:466.666667pt;}
.x37_c00130{left:468.373333pt;}
.x92_c00130{left:469.333333pt;}
.xd_c00130{left:471.040000pt;}
.xa8_c00130{left:473.333333pt;}
.x8a_c00130{left:474.666667pt;}
.x78_c00130{left:476.373333pt;}
.x43_c00130{left:477.333333pt;}
.x8e_c00130{left:480.000000pt;}
.x5d_c00130{left:484.000000pt;}
.x6b_c00130{left:485.333333pt;}
.x38_c00130{left:493.333333pt;}
.xe_c00130{left:497.706667pt;}
.x79_c00130{left:501.333333pt;}
.x9a_c00130{left:502.666667pt;}
.x6c_c00130{left:504.373333pt;}
.xa9_c00130{left:505.333333pt;}
.x5e_c00130{left:506.666667pt;}
.x1b_c00130{left:511.040000pt;}
.x4e_c00130{left:521.333333pt;}
.x27_c00130{left:524.373333pt;}
.x39_c00130{left:526.666667pt;}
.x6d_c00130{left:529.333333pt;}
.x5f_c00130{left:531.626667pt;}
.x96_c00130{left:533.333333pt;}
.x9b_c00130{left:535.040000pt;}
.x8b_c00130{left:536.373333pt;}
.xaa_c00130{left:537.333333pt;}
.x95_c00130{left:540.000000pt;}
.x4f_c00130{left:541.706667pt;}
.x7a_c00130{left:544.000000pt;}
.x82_c00130{left:545.333333pt;}
.x60_c00130{left:548.373333pt;}
.xf_c00130{left:551.626667pt;}
.x1c_c00130{left:554.293333pt;}
.x7b_c00130{left:558.666667pt;}
.x50_c00130{left:564.000000pt;}
.x83_c00130{left:568.000000pt;}
.x28_c00130{left:569.906667pt;}
.x1d_c00130{left:571.040000pt;}
.x6e_c00130{left:574.666667pt;}
.x44_c00130{left:578.666667pt;}
.x10_c00130{left:581.706667pt;}
.x84_c00130{left:582.666667pt;}
.x45_c00130{left:590.666667pt;}
.x51_c00130{left:592.000000pt;}
.x1e_c00130{left:594.666667pt;}
.x3a_c00130{left:599.040000pt;}
.x11_c00130{left:607.040000pt;}
.x7c_c00130{left:608.000000pt;}
.x61_c00130{left:613.706667pt;}
.x52_c00130{left:617.333333pt;}
.x6f_c00130{left:624.960000pt;}
.x46_c00130{left:627.626667pt;}
.x2_c00130{left:628.760000pt;}
.x85_c00130{left:630.293333pt;}
.x53_c00130{left:640.000000pt;}
.x12_c00130{left:641.333333pt;}
.x47_c00130{left:645.333333pt;}
.x62_c00130{left:649.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef988b86f5645fbc3e326741.woff2')format("woff");}.ff1_c00131{font-family:ff1_c00131;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m79_c00131{transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);}
.mad_c00131{transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);}
.m7c_c00131{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m5c_c00131{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.md7_c00131{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m6_c00131{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m78_c00131{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m9d_c00131{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.mec_c00131{transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);}
.m41_c00131{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m8e_c00131{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m30_c00131{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mcc_c00131{transform:matrix(0.375696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375696,0.000000,0.000000,0.250000,0,0);}
.m1f_c00131{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m68_c00131{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m82_c00131{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.me1_c00131{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m27_c00131{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m87_c00131{transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);}
.mdc_c00131{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m5_c00131{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.ma7_c00131{transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);}
.m1e_c00131{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m32_c00131{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.maa_c00131{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m73_c00131{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m47_c00131{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.mc0_c00131{transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);}
.m10_c00131{transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);}
.mf2_c00131{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mce_c00131{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m10c_c00131{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.mb3_c00131{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.md3_c00131{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.md1_c00131{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m17_c00131{transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);}
.mc1_c00131{transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);}
.m24_c00131{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m94_c00131{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.mf6_c00131{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m60_c00131{transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);}
.m74_c00131{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m3e_c00131{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.mdf_c00131{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mf_c00131{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m28_c00131{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mfd_c00131{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m51_c00131{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.md4_c00131{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mbf_c00131{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.med_c00131{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.md0_c00131{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.mb5_c00131{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m10a_c00131{transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);}
.m1d_c00131{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m23_c00131{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m7b_c00131{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m8f_c00131{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.ma0_c00131{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.mcd_c00131{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mfa_c00131{transform:matrix(0.426764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426764,0.000000,0.000000,0.250000,0,0);}
.mb_c00131{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.m44_c00131{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.md2_c00131{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.mc5_c00131{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m66_c00131{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mea_c00131{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m13_c00131{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.mf5_c00131{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m5f_c00131{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m9_c00131{transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);}
.m105_c00131{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m77_c00131{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m1a_c00131{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m29_c00131{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m102_c00131{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.ma3_c00131{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mbd_c00131{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.m61_c00131{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.ma8_c00131{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.mf3_c00131{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m2b_c00131{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.mfe_c00131{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m6d_c00131{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m19_c00131{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m108_c00131{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.me4_c00131{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m5d_c00131{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m86_c00131{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.me7_c00131{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m12_c00131{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.m6e_c00131{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m2a_c00131{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m9c_c00131{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.m54_c00131{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m15_c00131{transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);}
.me8_c00131{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mab_c00131{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mda_c00131{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mc_c00131{transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);}
.m37_c00131{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.mb6_c00131{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m1c_c00131{transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);}
.me5_c00131{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.mc2_c00131{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m14_c00131{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m2c_c00131{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.mfb_c00131{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m7_c00131{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.m2_c00131{transform:matrix(0.474790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474790,0.000000,0.000000,0.250000,0,0);}
.m8b_c00131{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.mb4_c00131{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mf8_c00131{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mcf_c00131{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.m42_c00131{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.me2_c00131{transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);}
.m107_c00131{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.ma1_c00131{transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);}
.md_c00131{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mc6_c00131{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m56_c00131{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m10d_c00131{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m4f_c00131{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m8d_c00131{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m5b_c00131{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m81_c00131{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);}
.m80_c00131{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m97_c00131{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m64_c00131{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m10f_c00131{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mb0_c00131{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.mca_c00131{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m10e_c00131{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m58_c00131{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m93_c00131{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m7f_c00131{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m4c_c00131{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mb7_c00131{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m55_c00131{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m50_c00131{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m57_c00131{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.md6_c00131{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m99_c00131{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m4a_c00131{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m9e_c00131{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m85_c00131{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m53_c00131{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m8_c00131{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.maf_c00131{transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);}
.m75_c00131{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m18_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);}
.ma4_c00131{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.mef_c00131{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m20_c00131{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.me0_c00131{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m49_c00131{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mf1_c00131{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.md5_c00131{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m67_c00131{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m4b_c00131{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m48_c00131{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m6c_c00131{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m71_c00131{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m83_c00131{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m22_c00131{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mac_c00131{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m3f_c00131{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m100_c00131{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m3c_c00131{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m89_c00131{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mc7_c00131{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m3d_c00131{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.ma6_c00131{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m104_c00131{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.ma5_c00131{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m2d_c00131{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m40_c00131{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mf0_c00131{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mb1_c00131{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m25_c00131{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m84_c00131{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m6a_c00131{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mc9_c00131{transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);}
.m4e_c00131{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m70_c00131{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m46_c00131{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mee_c00131{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m5a_c00131{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m8a_c00131{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m33_c00131{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m10b_c00131{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.meb_c00131{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);}
.mdd_c00131{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.ma2_c00131{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m63_c00131{transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);}
.m6b_c00131{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m38_c00131{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m34_c00131{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m76_c00131{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mf7_c00131{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m90_c00131{transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);}
.m26_c00131{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m45_c00131{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m62_c00131{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m5e_c00131{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.me6_c00131{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.ma_c00131{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.me_c00131{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m39_c00131{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m9f_c00131{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.md9_c00131{transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);}
.m7d_c00131{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.m101_c00131{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m65_c00131{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m11_c00131{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.m7e_c00131{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m4_c00131{transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);}
.m96_c00131{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.mfc_c00131{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m3a_c00131{transform:matrix(0.597647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597647,0.000000,0.000000,0.250000,0,0);}
.m6f_c00131{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m31_c00131{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);}
.mff_c00131{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.me9_c00131{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m4d_c00131{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m43_c00131{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.mb9_c00131{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m106_c00131{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.mbe_c00131{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m9a_c00131{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);}
.m36_c00131{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mcb_c00131{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.m91_c00131{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.ma9_c00131{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m8c_c00131{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.mf4_c00131{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m92_c00131{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.mae_c00131{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m52_c00131{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m3b_c00131{transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);}
.mba_c00131{transform:matrix(0.651471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651471,0.000000,0.000000,0.250000,0,0);}
.m3_c00131{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m1_c00131{transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);}
.mf9_c00131{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.mb2_c00131{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m21_c00131{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m98_c00131{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.mbb_c00131{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.m0_c00131{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m16_c00131{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mdb_c00131{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.mc3_c00131{transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);}
.m88_c00131{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mbc_c00131{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);}
.mc4_c00131{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m59_c00131{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.me3_c00131{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.mb8_c00131{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m69_c00131{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m2e_c00131{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m7a_c00131{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m72_c00131{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m109_c00131{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m103_c00131{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mde_c00131{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m95_c00131{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.md8_c00131{transform:matrix(0.888622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.888622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.888622,0.000000,0.000000,0.250000,0,0);}
.mc8_c00131{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.m9b_c00131{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m2f_c00131{transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);}
.m35_c00131{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m1b_c00131{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00131{vertical-align:0.000000px;}
.v1_c00131{vertical-align:7.680000px;}
.ls1_c00131{letter-spacing:0.000000px;}
.ls0_c00131{letter-spacing:11.817600px;}
.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:-3.297505px;}
.ws1_c00131{word-spacing:-3.233492px;}
.ws4_c00131{word-spacing:-3.015319px;}
.ws5_c00131{word-spacing:-2.923710px;}
.ws3_c00131{word-spacing:-2.556473px;}
.ws6_c00131{word-spacing:0.000000px;}
.ws2_c00131{word-spacing:0.607426px;}
.fc0_c00131{color:transparent;}
.fs7_c00131{font-size:3.420000px;}
.fs6_c00131{font-size:13.620000px;}
.fs0_c00131{font-size:18.720000px;}
.fs5_c00131{font-size:20.400000px;}
.fs2_c00131{font-size:25.500000px;}
.fs3_c00131{font-size:28.920000px;}
.fs4_c00131{font-size:32.340000px;}
.fs1_c00131{font-size:35.700000px;}
.fs8_c00131{font-size:39.120000px;}
.y0_c00131{bottom:0.000000px;}
.ycc_c00131{bottom:252.180000px;}
.yce_c00131{bottom:253.245000px;}
.ycd_c00131{bottom:255.405000px;}
.yd0_c00131{bottom:256.470000px;}
.ycf_c00131{bottom:256.905000px;}
.yc8_c00131{bottom:271.905000px;}
.yc5_c00131{bottom:272.745000px;}
.yc9_c00131{bottom:272.970000px;}
.yca_c00131{bottom:274.245000px;}
.yc6_c00131{bottom:274.905000px;}
.ycb_c00131{bottom:275.130000px;}
.yc4_c00131{bottom:275.970000px;}
.yc7_c00131{bottom:276.405000px;}
.yc2_c00131{bottom:293.745000px;}
.yc0_c00131{bottom:294.405000px;}
.yc3_c00131{bottom:294.630000px;}
.yc1_c00131{bottom:294.825000px;}
.ybf_c00131{bottom:295.905000px;}
.ybe_c00131{bottom:313.245000px;}
.ybc_c00131{bottom:313.905000px;}
.ybb_c00131{bottom:314.325000px;}
.ybd_c00131{bottom:315.405000px;}
.yba_c00131{bottom:331.680000px;}
.yb5_c00131{bottom:331.905000px;}
.yb4_c00131{bottom:332.325000px;}
.yb7_c00131{bottom:332.745000px;}
.yb6_c00131{bottom:332.970000px;}
.yb8_c00131{bottom:333.825000px;}
.yb3_c00131{bottom:334.905000px;}
.yb9_c00131{bottom:335.970000px;}
.yaf_c00131{bottom:352.245000px;}
.yb2_c00131{bottom:353.970000px;}
.yb1_c00131{bottom:354.405000px;}
.yb0_c00131{bottom:355.905000px;}
.yad_c00131{bottom:371.745000px;}
.yae_c00131{bottom:371.970000px;}
.ya8_c00131{bottom:372.825000px;}
.ya9_c00131{bottom:373.905000px;}
.yab_c00131{bottom:374.325000px;}
.yac_c00131{bottom:374.970000px;}
.yaa_c00131{bottom:375.405000px;}
.ya6_c00131{bottom:390.405000px;}
.ya4_c00131{bottom:391.245000px;}
.ya7_c00131{bottom:392.325000px;}
.ya2_c00131{bottom:393.405000px;}
.ya3_c00131{bottom:393.630000px;}
.ya5_c00131{bottom:394.905000px;}
.y9b_c00131{bottom:410.745000px;}
.ya1_c00131{bottom:411.825000px;}
.y9f_c00131{bottom:412.245000px;}
.ya0_c00131{bottom:412.905000px;}
.y9c_c00131{bottom:413.130000px;}
.y9e_c00131{bottom:413.970000px;}
.y9d_c00131{bottom:414.405000px;}
.y97_c00131{bottom:430.245000px;}
.y99_c00131{bottom:431.745000px;}
.y9a_c00131{bottom:433.470000px;}
.y98_c00131{bottom:433.905000px;}
.y92_c00131{bottom:451.245000px;}
.y96_c00131{bottom:452.325000px;}
.y94_c00131{bottom:452.745000px;}
.y95_c00131{bottom:453.405000px;}
.y93_c00131{bottom:454.920000px;}
.y91_c00131{bottom:476.325000px;}
.y90_c00131{bottom:490.470000px;}
.y8f_c00131{bottom:491.325000px;}
.y8d_c00131{bottom:491.550000px;}
.y8a_c00131{bottom:492.405000px;}
.y8b_c00131{bottom:493.470000px;}
.y8c_c00131{bottom:493.695000px;}
.y8e_c00131{bottom:494.550000px;}
.y83_c00131{bottom:505.470000px;}
.y87_c00131{bottom:505.905000px;}
.y89_c00131{bottom:506.325000px;}
.y88_c00131{bottom:506.550000px;}
.y84_c00131{bottom:507.405000px;}
.y86_c00131{bottom:507.630000px;}
.y85_c00131{bottom:509.550000px;}
.y7f_c00131{bottom:521.325000px;}
.y80_c00131{bottom:522.405000px;}
.y81_c00131{bottom:522.630000px;}
.y82_c00131{bottom:523.470000px;}
.y7e_c00131{bottom:524.550000px;}
.y7c_c00131{bottom:536.325000px;}
.y7d_c00131{bottom:537.405000px;}
.y7a_c00131{bottom:538.695000px;}
.y7b_c00131{bottom:539.550000px;}
.y79_c00131{bottom:550.905000px;}
.y74_c00131{bottom:551.550000px;}
.y76_c00131{bottom:552.405000px;}
.y77_c00131{bottom:552.630000px;}
.y78_c00131{bottom:553.050000px;}
.y75_c00131{bottom:553.470000px;}
.y71_c00131{bottom:565.905000px;}
.y72_c00131{bottom:567.195000px;}
.y73_c00131{bottom:568.050000px;}
.y70_c00131{bottom:579.825000px;}
.y6b_c00131{bottom:580.050000px;}
.y6d_c00131{bottom:580.905000px;}
.y6e_c00131{bottom:581.970000px;}
.y6f_c00131{bottom:583.050000px;}
.y6c_c00131{bottom:583.470000px;}
.y68_c00131{bottom:594.825000px;}
.y66_c00131{bottom:595.905000px;}
.y69_c00131{bottom:596.130000px;}
.y6a_c00131{bottom:596.970000px;}
.y67_c00131{bottom:598.050000px;}
.y63_c00131{bottom:608.970000px;}
.y65_c00131{bottom:609.405000px;}
.y64_c00131{bottom:609.825000px;}
.y60_c00131{bottom:610.050000px;}
.y61_c00131{bottom:610.905000px;}
.y62_c00131{bottom:611.970000px;}
.y5f_c00131{bottom:624.825000px;}
.y5e_c00131{bottom:628.050000px;}
.y5b_c00131{bottom:639.405000px;}
.y5c_c00131{bottom:639.825000px;}
.y5d_c00131{bottom:640.470000px;}
.y59_c00131{bottom:640.905000px;}
.y5a_c00131{bottom:641.550000px;}
.y58_c00131{bottom:641.970000px;}
.y57_c00131{bottom:642.195000px;}
.y56_c00131{bottom:654.825000px;}
.y55_c00131{bottom:656.970000px;}
.y53_c00131{bottom:668.325000px;}
.y52_c00131{bottom:668.550000px;}
.y50_c00131{bottom:669.405000px;}
.y4f_c00131{bottom:669.630000px;}
.y54_c00131{bottom:670.470000px;}
.y51_c00131{bottom:671.550000px;}
.y4e_c00131{bottom:692.745000px;}
.y4d_c00131{bottom:694.905000px;}
.y4b_c00131{bottom:711.405000px;}
.y49_c00131{bottom:712.245000px;}
.y4a_c00131{bottom:712.470000px;}
.y4c_c00131{bottom:713.325000px;}
.y48_c00131{bottom:714.405000px;}
.y47_c00131{bottom:731.745000px;}
.y43_c00131{bottom:732.180000px;}
.y45_c00131{bottom:733.905000px;}
.y44_c00131{bottom:734.130000px;}
.y46_c00131{bottom:734.970000px;}
.y42_c00131{bottom:751.245000px;}
.y40_c00131{bottom:753.405000px;}
.y41_c00131{bottom:753.630000px;}
.y3f_c00131{bottom:754.905000px;}
.y3b_c00131{bottom:770.745000px;}
.y3d_c00131{bottom:771.825000px;}
.y3a_c00131{bottom:772.245000px;}
.y3e_c00131{bottom:772.905000px;}
.y3c_c00131{bottom:773.970000px;}
.y39_c00131{bottom:774.405000px;}
.y37_c00131{bottom:791.745000px;}
.y38_c00131{bottom:792.630000px;}
.y36_c00131{bottom:793.470000px;}
.y35_c00131{bottom:793.905000px;}
.y33_c00131{bottom:810.405000px;}
.y30_c00131{bottom:811.245000px;}
.y32_c00131{bottom:812.325000px;}
.y31_c00131{bottom:813.405000px;}
.y34_c00131{bottom:814.470000px;}
.y2d_c00131{bottom:830.745000px;}
.y2f_c00131{bottom:831.825000px;}
.y2c_c00131{bottom:832.905000px;}
.y2e_c00131{bottom:833.130000px;}
.y2a_c00131{bottom:850.245000px;}
.y28_c00131{bottom:852.405000px;}
.y29_c00131{bottom:852.420000px;}
.y2b_c00131{bottom:853.470000px;}
.y27_c00131{bottom:869.745000px;}
.y26_c00131{bottom:871.905000px;}
.y23_c00131{bottom:890.745000px;}
.y25_c00131{bottom:891.825000px;}
.y24_c00131{bottom:892.470000px;}
.y22_c00131{bottom:892.905000px;}
.y1f_c00131{bottom:909.825000px;}
.y21_c00131{bottom:910.905000px;}
.y1e_c00131{bottom:911.970000px;}
.y1c_c00131{bottom:912.405000px;}
.y1d_c00131{bottom:912.420000px;}
.y20_c00131{bottom:913.470000px;}
.y1a_c00131{bottom:929.745000px;}
.y18_c00131{bottom:930.630000px;}
.y1b_c00131{bottom:931.470000px;}
.y17_c00131{bottom:931.905000px;}
.y19_c00131{bottom:931.920000px;}
.y13_c00131{bottom:949.245000px;}
.y15_c00131{bottom:950.325000px;}
.y16_c00131{bottom:951.405000px;}
.y14_c00131{bottom:951.420000px;}
.y11_c00131{bottom:968.745000px;}
.y12_c00131{bottom:970.905000px;}
.yd_c00131{bottom:988.245000px;}
.y10_c00131{bottom:989.970000px;}
.yf_c00131{bottom:990.405000px;}
.ye_c00131{bottom:991.920000px;}
.y8_c00131{bottom:1014.825000px;}
.yc_c00131{bottom:1015.050000px;}
.ya_c00131{bottom:1015.905000px;}
.yb_c00131{bottom:1017.195000px;}
.y9_c00131{bottom:1018.050000px;}
.y6_c00131{bottom:1034.325000px;}
.y5_c00131{bottom:1035.405000px;}
.y7_c00131{bottom:1035.630000px;}
.y2_c00131{bottom:1061.745000px;}
.y4_c00131{bottom:1063.905000px;}
.y3_c00131{bottom:1064.970000px;}
.y1_c00131{bottom:1103.130000px;}
.h8_c00131{height:4.206533px;}
.h7_c00131{height:16.752334px;}
.h1_c00131{height:23.025234px;}
.h6_c00131{height:25.091602px;}
.h3_c00131{height:31.364502px;}
.h4_c00131{height:35.571035px;}
.ha_c00131{height:39.044502px;}
.h5_c00131{height:39.777568px;}
.h2_c00131{height:43.910303px;}
.h9_c00131{height:48.116836px;}
.h0_c00131{height:1335.000000px;}
.w0_c00131{width:880.500000px;}
.x0_c00131{left:0.000000px;}
.xc3_c00131{left:150.000000px;}
.x5e_c00131{left:151.500000px;}
.x43_c00131{left:152.580000px;}
.x23_c00131{left:153.855000px;}
.x1_c00131{left:154.920000px;}
.xb2_c00131{left:163.500000px;}
.x87_c00131{left:166.920000px;}
.x11_c00131{left:169.500000px;}
.x5f_c00131{left:171.000000px;}
.x24_c00131{left:175.500000px;}
.x8e_c00131{left:178.500000px;}
.xe0_c00131{left:180.000000px;}
.x88_c00131{left:182.145000px;}
.x44_c00131{left:183.420000px;}
.x8f_c00131{left:184.500000px;}
.x69_c00131{left:187.080000px;}
.xbb_c00131{left:195.000000px;}
.x57_c00131{left:196.080000px;}
.x25_c00131{left:199.500000px;}
.x77_c00131{left:201.000000px;}
.xcf_c00131{left:204.420000px;}
.xe8_c00131{left:205.920000px;}
.x4c_c00131{left:208.080000px;}
.x1a_c00131{left:213.420000px;}
.x3b_c00131{left:217.080000px;}
.x7f_c00131{left:220.500000px;}
.xe1_c00131{left:222.000000px;}
.xeb_c00131{left:226.080000px;}
.x58_c00131{left:228.000000px;}
.xa8_c00131{left:230.580000px;}
.x12_c00131{left:235.500000px;}
.xb3_c00131{left:237.420000px;}
.x78_c00131{left:238.920000px;}
.x6a_c00131{left:240.000000px;}
.x26_c00131{left:244.080000px;}
.x8_c00131{left:246.000000px;}
.xb6_c00131{left:249.000000px;}
.x98_c00131{left:250.080000px;}
.xac_c00131{left:252.000000px;}
.x2f_c00131{left:253.500000px;}
.xbc_c00131{left:255.420000px;}
.x60_c00131{left:256.500000px;}
.xd7_c00131{left:258.420000px;}
.xef_c00131{left:259.920000px;}
.x28_c00131{left:261.000000px;}
.x34_c00131{left:262.500000px;}
.x79_c00131{left:265.920000px;}
.x4d_c00131{left:270.000000px;}
.x1b_c00131{left:271.500000px;}
.x3_c00131{left:272.580000px;}
.xec_c00131{left:274.500000px;}
.x46_c00131{left:275.580000px;}
.xa2_c00131{left:277.080000px;}
.x61_c00131{left:280.920000px;}
.x29_c00131{left:283.500000px;}
.x13_c00131{left:285.645000px;}
.x90_c00131{left:288.645000px;}
.x99_c00131{left:292.920000px;}
.x1c_c00131{left:294.000000px;}
.x27_c00131{left:295.500000px;}
.xb4_c00131{left:297.420000px;}
.xa9_c00131{left:298.500000px;}
.x7a_c00131{left:300.000000px;}
.xb7_c00131{left:301.500000px;}
.x73_c00131{left:302.580000px;}
.x30_c00131{left:306.000000px;}
.x9_c00131{left:309.000000px;}
.xcb_c00131{left:312.000000px;}
.x9a_c00131{left:313.080000px;}
.xe9_c00131{left:314.580000px;}
.xe2_c00131{left:317.580000px;}
.x7b_c00131{left:319.080000px;}
.xa3_c00131{left:322.920000px;}
.xd8_c00131{left:325.920000px;}
.x31_c00131{left:328.080000px;}
.x14_c00131{left:331.920000px;}
.xa_c00131{left:334.500000px;}
.xb8_c00131{left:335.580000px;}
.x3c_c00131{left:337.500000px;}
.xd0_c00131{left:338.580000px;}
.x9b_c00131{left:340.500000px;}
.x4e_c00131{left:343.500000px;}
.x6b_c00131{left:344.580000px;}
.xc4_c00131{left:347.580000px;}
.x2a_c00131{left:349.275000px;}
.x9f_c00131{left:351.420000px;}
.x86_c00131{left:352.500000px;}
.x80_c00131{left:353.580000px;}
.x91_c00131{left:358.500000px;}
.x32_c00131{left:360.000000px;}
.xa0_c00131{left:361.500000px;}
.x45_c00131{left:364.080000px;}
.x62_c00131{left:366.000000px;}
.x15_c00131{left:367.080000px;}
.x4f_c00131{left:369.000000px;}
.x47_c00131{left:370.500000px;}
.xd9_c00131{left:372.000000px;}
.x35_c00131{left:373.080000px;}
.xc0_c00131{left:375.000000px;}
.xe3_c00131{left:376.500000px;}
.xf0_c00131{left:377.580000px;}
.xad_c00131{left:379.500000px;}
.xb_c00131{left:381.000000px;}
.x4_c00131{left:382.500000px;}
.x89_c00131{left:384.420000px;}
.x1d_c00131{left:386.580000px;}
.xcc_c00131{left:388.920000px;}
.x2b_c00131{left:391.500000px;}
.x7c_c00131{left:394.500000px;}
.x9c_c00131{left:398.145000px;}
.x2_c00131{left:402.000000px;}
.xc_c00131{left:403.080000px;}
.x63_c00131{left:405.000000px;}
.x3d_c00131{left:408.000000px;}
.xf2_c00131{left:413.580000px;}
.x92_c00131{left:418.080000px;}
.x2c_c00131{left:420.000000px;}
.xda_c00131{left:421.080000px;}
.xc5_c00131{left:423.000000px;}
.xf1_c00131{left:424.080000px;}
.x50_c00131{left:427.080000px;}
.x16_c00131{left:429.000000px;}
.x36_c00131{left:430.080000px;}
.xaa_c00131{left:432.420000px;}
.xa1_c00131{left:435.000000px;}
.x8a_c00131{left:436.080000px;}
.x6c_c00131{left:439.500000px;}
.xdc_c00131{left:444.420000px;}
.x7d_c00131{left:445.920000px;}
.xae_c00131{left:450.000000px;}
.x93_c00131{left:451.920000px;}
.x5_c00131{left:453.000000px;}
.xc6_c00131{left:454.920000px;}
.xab_c00131{left:460.500000px;}
.x37_c00131{left:463.500000px;}
.xb5_c00131{left:466.080000px;}
.xd1_c00131{left:469.080000px;}
.x94_c00131{left:470.145000px;}
.x8b_c00131{left:471.420000px;}
.x81_c00131{left:475.500000px;}
.xa4_c00131{left:477.000000px;}
.x51_c00131{left:478.920000px;}
.x64_c00131{left:481.080000px;}
.x2d_c00131{left:482.775000px;}
.x3e_c00131{left:484.500000px;}
.xd_c00131{left:486.000000px;}
.xaf_c00131{left:487.920000px;}
.xdd_c00131{left:489.000000px;}
.x6d_c00131{left:492.000000px;}
.x48_c00131{left:493.080000px;}
.x17_c00131{left:495.000000px;}
.x1e_c00131{left:498.000000px;}
.x3f_c00131{left:500.580000px;}
.x59_c00131{left:502.920000px;}
.x18_c00131{left:506.580000px;}
.x74_c00131{left:508.500000px;}
.x33_c00131{left:511.080000px;}
.xd2_c00131{left:515.580000px;}
.x52_c00131{left:518.580000px;}
.xa5_c00131{left:522.000000px;}
.x6_c00131{left:523.080000px;}
.xe4_c00131{left:525.420000px;}
.x2e_c00131{left:526.920000px;}
.x19_c00131{left:531.000000px;}
.xde_c00131{left:532.500000px;}
.x49_c00131{left:533.580000px;}
.x5a_c00131{left:535.500000px;}
.x1f_c00131{left:539.145000px;}
.xb0_c00131{left:541.080000px;}
.xcd_c00131{left:543.000000px;}
.x53_c00131{left:547.500000px;}
.xc7_c00131{left:550.920000px;}
.xed_c00131{left:552.000000px;}
.x40_c00131{left:553.920000px;}
.xc1_c00131{left:555.000000px;}
.x65_c00131{left:557.580000px;}
.x8c_c00131{left:559.500000px;}
.xe_c00131{left:562.080000px;}
.x38_c00131{left:564.000000px;}
.x82_c00131{left:565.500000px;}
.x95_c00131{left:567.000000px;}
.xd3_c00131{left:568.920000px;}
.xea_c00131{left:573.000000px;}
.xbd_c00131{left:574.500000px;}
.x7_c00131{left:580.275000px;}
.xf_c00131{left:583.500000px;}
.x41_c00131{left:591.000000px;}
.x5b_c00131{left:592.080000px;}
.xe5_c00131{left:594.000000px;}
.x75_c00131{left:595.080000px;}
.xb1_c00131{left:598.080000px;}
.x4a_c00131{left:600.000000px;}
.x10_c00131{left:601.080000px;}
.x54_c00131{left:602.580000px;}
.x6e_c00131{left:604.080000px;}
.x66_c00131{left:610.275000px;}
.x39_c00131{left:612.000000px;}
.xa6_c00131{left:613.500000px;}
.xbe_c00131{left:614.580000px;}
.x20_c00131{left:618.000000px;}
.x9d_c00131{left:619.500000px;}
.x5c_c00131{left:622.920000px;}
.xb9_c00131{left:624.000000px;}
.x8d_c00131{left:625.920000px;}
.x6f_c00131{left:627.000000px;}
.x96_c00131{left:629.580000px;}
.xe6_c00131{left:632.580000px;}
.xd4_c00131{left:637.080000px;}
.x21_c00131{left:640.080000px;}
.x55_c00131{left:642.000000px;}
.x70_c00131{left:643.920000px;}
.xbf_c00131{left:648.420000px;}
.x5d_c00131{left:649.500000px;}
.xc2_c00131{left:653.580000px;}
.xc8_c00131{left:655.920000px;}
.x7e_c00131{left:661.080000px;}
.xba_c00131{left:663.000000px;}
.xe7_c00131{left:664.920000px;}
.x56_c00131{left:666.000000px;}
.x83_c00131{left:667.500000px;}
.xdf_c00131{left:668.580000px;}
.x42_c00131{left:670.500000px;}
.x67_c00131{left:675.000000px;}
.x71_c00131{left:678.000000px;}
.x76_c00131{left:679.500000px;}
.x3a_c00131{left:680.580000px;}
.xd5_c00131{left:684.420000px;}
.x84_c00131{left:686.580000px;}
.xce_c00131{left:689.580000px;}
.x9e_c00131{left:691.080000px;}
.xc9_c00131{left:694.500000px;}
.xa7_c00131{left:695.580000px;}
.x72_c00131{left:699.000000px;}
.xdb_c00131{left:700.500000px;}
.xd6_c00131{left:703.500000px;}
.x97_c00131{left:705.000000px;}
.xee_c00131{left:706.920000px;}
.x68_c00131{left:709.920000px;}
.x4b_c00131{left:712.500000px;}
.x22_c00131{left:714.000000px;}
.xca_c00131{left:715.500000px;}
.x85_c00131{left:718.080000px;}
@media print{
.v0_c00131{vertical-align:0.000000pt;}
.v1_c00131{vertical-align:6.826667pt;}
.ls1_c00131{letter-spacing:0.000000pt;}
.ls0_c00131{letter-spacing:10.504533pt;}
.ws0_c00131{word-spacing:-2.931116pt;}
.ws1_c00131{word-spacing:-2.874215pt;}
.ws4_c00131{word-spacing:-2.680284pt;}
.ws5_c00131{word-spacing:-2.598853pt;}
.ws3_c00131{word-spacing:-2.272420pt;}
.ws6_c00131{word-spacing:0.000000pt;}
.ws2_c00131{word-spacing:0.539934pt;}
.fs7_c00131{font-size:3.040000pt;}
.fs6_c00131{font-size:12.106667pt;}
.fs0_c00131{font-size:16.640000pt;}
.fs5_c00131{font-size:18.133333pt;}
.fs2_c00131{font-size:22.666667pt;}
.fs3_c00131{font-size:25.706667pt;}
.fs4_c00131{font-size:28.746667pt;}
.fs1_c00131{font-size:31.733333pt;}
.fs8_c00131{font-size:34.773333pt;}
.y0_c00131{bottom:0.000000pt;}
.ycc_c00131{bottom:224.160000pt;}
.yce_c00131{bottom:225.106667pt;}
.ycd_c00131{bottom:227.026667pt;}
.yd0_c00131{bottom:227.973333pt;}
.ycf_c00131{bottom:228.360000pt;}
.yc8_c00131{bottom:241.693333pt;}
.yc5_c00131{bottom:242.440000pt;}
.yc9_c00131{bottom:242.640000pt;}
.yca_c00131{bottom:243.773333pt;}
.yc6_c00131{bottom:244.360000pt;}
.ycb_c00131{bottom:244.560000pt;}
.yc4_c00131{bottom:245.306667pt;}
.yc7_c00131{bottom:245.693333pt;}
.yc2_c00131{bottom:261.106667pt;}
.yc0_c00131{bottom:261.693333pt;}
.yc3_c00131{bottom:261.893333pt;}
.yc1_c00131{bottom:262.066667pt;}
.ybf_c00131{bottom:263.026667pt;}
.ybe_c00131{bottom:278.440000pt;}
.ybc_c00131{bottom:279.026667pt;}
.ybb_c00131{bottom:279.400000pt;}
.ybd_c00131{bottom:280.360000pt;}
.yba_c00131{bottom:294.826667pt;}
.yb5_c00131{bottom:295.026667pt;}
.yb4_c00131{bottom:295.400000pt;}
.yb7_c00131{bottom:295.773333pt;}
.yb6_c00131{bottom:295.973333pt;}
.yb8_c00131{bottom:296.733333pt;}
.yb3_c00131{bottom:297.693333pt;}
.yb9_c00131{bottom:298.640000pt;}
.yaf_c00131{bottom:313.106667pt;}
.yb2_c00131{bottom:314.640000pt;}
.yb1_c00131{bottom:315.026667pt;}
.yb0_c00131{bottom:316.360000pt;}
.yad_c00131{bottom:330.440000pt;}
.yae_c00131{bottom:330.640000pt;}
.ya8_c00131{bottom:331.400000pt;}
.ya9_c00131{bottom:332.360000pt;}
.yab_c00131{bottom:332.733333pt;}
.yac_c00131{bottom:333.306667pt;}
.yaa_c00131{bottom:333.693333pt;}
.ya6_c00131{bottom:347.026667pt;}
.ya4_c00131{bottom:347.773333pt;}
.ya7_c00131{bottom:348.733333pt;}
.ya2_c00131{bottom:349.693333pt;}
.ya3_c00131{bottom:349.893333pt;}
.ya5_c00131{bottom:351.026667pt;}
.y9b_c00131{bottom:365.106667pt;}
.ya1_c00131{bottom:366.066667pt;}
.y9f_c00131{bottom:366.440000pt;}
.ya0_c00131{bottom:367.026667pt;}
.y9c_c00131{bottom:367.226667pt;}
.y9e_c00131{bottom:367.973333pt;}
.y9d_c00131{bottom:368.360000pt;}
.y97_c00131{bottom:382.440000pt;}
.y99_c00131{bottom:383.773333pt;}
.y9a_c00131{bottom:385.306667pt;}
.y98_c00131{bottom:385.693333pt;}
.y92_c00131{bottom:401.106667pt;}
.y96_c00131{bottom:402.066667pt;}
.y94_c00131{bottom:402.440000pt;}
.y95_c00131{bottom:403.026667pt;}
.y93_c00131{bottom:404.373333pt;}
.y91_c00131{bottom:423.400000pt;}
.y90_c00131{bottom:435.973333pt;}
.y8f_c00131{bottom:436.733333pt;}
.y8d_c00131{bottom:436.933333pt;}
.y8a_c00131{bottom:437.693333pt;}
.y8b_c00131{bottom:438.640000pt;}
.y8c_c00131{bottom:438.840000pt;}
.y8e_c00131{bottom:439.600000pt;}
.y83_c00131{bottom:449.306667pt;}
.y87_c00131{bottom:449.693333pt;}
.y89_c00131{bottom:450.066667pt;}
.y88_c00131{bottom:450.266667pt;}
.y84_c00131{bottom:451.026667pt;}
.y86_c00131{bottom:451.226667pt;}
.y85_c00131{bottom:452.933333pt;}
.y7f_c00131{bottom:463.400000pt;}
.y80_c00131{bottom:464.360000pt;}
.y81_c00131{bottom:464.560000pt;}
.y82_c00131{bottom:465.306667pt;}
.y7e_c00131{bottom:466.266667pt;}
.y7c_c00131{bottom:476.733333pt;}
.y7d_c00131{bottom:477.693333pt;}
.y7a_c00131{bottom:478.840000pt;}
.y7b_c00131{bottom:479.600000pt;}
.y79_c00131{bottom:489.693333pt;}
.y74_c00131{bottom:490.266667pt;}
.y76_c00131{bottom:491.026667pt;}
.y77_c00131{bottom:491.226667pt;}
.y78_c00131{bottom:491.600000pt;}
.y75_c00131{bottom:491.973333pt;}
.y71_c00131{bottom:503.026667pt;}
.y72_c00131{bottom:504.173333pt;}
.y73_c00131{bottom:504.933333pt;}
.y70_c00131{bottom:515.400000pt;}
.y6b_c00131{bottom:515.600000pt;}
.y6d_c00131{bottom:516.360000pt;}
.y6e_c00131{bottom:517.306667pt;}
.y6f_c00131{bottom:518.266667pt;}
.y6c_c00131{bottom:518.640000pt;}
.y68_c00131{bottom:528.733333pt;}
.y66_c00131{bottom:529.693333pt;}
.y69_c00131{bottom:529.893333pt;}
.y6a_c00131{bottom:530.640000pt;}
.y67_c00131{bottom:531.600000pt;}
.y63_c00131{bottom:541.306667pt;}
.y65_c00131{bottom:541.693333pt;}
.y64_c00131{bottom:542.066667pt;}
.y60_c00131{bottom:542.266667pt;}
.y61_c00131{bottom:543.026667pt;}
.y62_c00131{bottom:543.973333pt;}
.y5f_c00131{bottom:555.400000pt;}
.y5e_c00131{bottom:558.266667pt;}
.y5b_c00131{bottom:568.360000pt;}
.y5c_c00131{bottom:568.733333pt;}
.y5d_c00131{bottom:569.306667pt;}
.y59_c00131{bottom:569.693333pt;}
.y5a_c00131{bottom:570.266667pt;}
.y58_c00131{bottom:570.640000pt;}
.y57_c00131{bottom:570.840000pt;}
.y56_c00131{bottom:582.066667pt;}
.y55_c00131{bottom:583.973333pt;}
.y53_c00131{bottom:594.066667pt;}
.y52_c00131{bottom:594.266667pt;}
.y50_c00131{bottom:595.026667pt;}
.y4f_c00131{bottom:595.226667pt;}
.y54_c00131{bottom:595.973333pt;}
.y51_c00131{bottom:596.933333pt;}
.y4e_c00131{bottom:615.773333pt;}
.y4d_c00131{bottom:617.693333pt;}
.y4b_c00131{bottom:632.360000pt;}
.y49_c00131{bottom:633.106667pt;}
.y4a_c00131{bottom:633.306667pt;}
.y4c_c00131{bottom:634.066667pt;}
.y48_c00131{bottom:635.026667pt;}
.y47_c00131{bottom:650.440000pt;}
.y43_c00131{bottom:650.826667pt;}
.y45_c00131{bottom:652.360000pt;}
.y44_c00131{bottom:652.560000pt;}
.y46_c00131{bottom:653.306667pt;}
.y42_c00131{bottom:667.773333pt;}
.y40_c00131{bottom:669.693333pt;}
.y41_c00131{bottom:669.893333pt;}
.y3f_c00131{bottom:671.026667pt;}
.y3b_c00131{bottom:685.106667pt;}
.y3d_c00131{bottom:686.066667pt;}
.y3a_c00131{bottom:686.440000pt;}
.y3e_c00131{bottom:687.026667pt;}
.y3c_c00131{bottom:687.973333pt;}
.y39_c00131{bottom:688.360000pt;}
.y37_c00131{bottom:703.773333pt;}
.y38_c00131{bottom:704.560000pt;}
.y36_c00131{bottom:705.306667pt;}
.y35_c00131{bottom:705.693333pt;}
.y33_c00131{bottom:720.360000pt;}
.y30_c00131{bottom:721.106667pt;}
.y32_c00131{bottom:722.066667pt;}
.y31_c00131{bottom:723.026667pt;}
.y34_c00131{bottom:723.973333pt;}
.y2d_c00131{bottom:738.440000pt;}
.y2f_c00131{bottom:739.400000pt;}
.y2c_c00131{bottom:740.360000pt;}
.y2e_c00131{bottom:740.560000pt;}
.y2a_c00131{bottom:755.773333pt;}
.y28_c00131{bottom:757.693333pt;}
.y29_c00131{bottom:757.706667pt;}
.y2b_c00131{bottom:758.640000pt;}
.y27_c00131{bottom:773.106667pt;}
.y26_c00131{bottom:775.026667pt;}
.y23_c00131{bottom:791.773333pt;}
.y25_c00131{bottom:792.733333pt;}
.y24_c00131{bottom:793.306667pt;}
.y22_c00131{bottom:793.693333pt;}
.y1f_c00131{bottom:808.733333pt;}
.y21_c00131{bottom:809.693333pt;}
.y1e_c00131{bottom:810.640000pt;}
.y1c_c00131{bottom:811.026667pt;}
.y1d_c00131{bottom:811.040000pt;}
.y20_c00131{bottom:811.973333pt;}
.y1a_c00131{bottom:826.440000pt;}
.y18_c00131{bottom:827.226667pt;}
.y1b_c00131{bottom:827.973333pt;}
.y17_c00131{bottom:828.360000pt;}
.y19_c00131{bottom:828.373333pt;}
.y13_c00131{bottom:843.773333pt;}
.y15_c00131{bottom:844.733333pt;}
.y16_c00131{bottom:845.693333pt;}
.y14_c00131{bottom:845.706667pt;}
.y11_c00131{bottom:861.106667pt;}
.y12_c00131{bottom:863.026667pt;}
.yd_c00131{bottom:878.440000pt;}
.y10_c00131{bottom:879.973333pt;}
.yf_c00131{bottom:880.360000pt;}
.ye_c00131{bottom:881.706667pt;}
.y8_c00131{bottom:902.066667pt;}
.yc_c00131{bottom:902.266667pt;}
.ya_c00131{bottom:903.026667pt;}
.yb_c00131{bottom:904.173333pt;}
.y9_c00131{bottom:904.933333pt;}
.y6_c00131{bottom:919.400000pt;}
.y5_c00131{bottom:920.360000pt;}
.y7_c00131{bottom:920.560000pt;}
.y2_c00131{bottom:943.773333pt;}
.y4_c00131{bottom:945.693333pt;}
.y3_c00131{bottom:946.640000pt;}
.y1_c00131{bottom:980.560000pt;}
.h8_c00131{height:3.739141pt;}
.h7_c00131{height:14.890964pt;}
.h1_c00131{height:20.466875pt;}
.h6_c00131{height:22.303646pt;}
.h3_c00131{height:27.879557pt;}
.h4_c00131{height:31.618698pt;}
.ha_c00131{height:34.706224pt;}
.h5_c00131{height:35.357839pt;}
.h2_c00131{height:39.031380pt;}
.h9_c00131{height:42.770521pt;}
.h0_c00131{height:1186.666667pt;}
.w0_c00131{width:782.666667pt;}
.x0_c00131{left:0.000000pt;}
.xc3_c00131{left:133.333333pt;}
.x5e_c00131{left:134.666667pt;}
.x43_c00131{left:135.626667pt;}
.x23_c00131{left:136.760000pt;}
.x1_c00131{left:137.706667pt;}
.xb2_c00131{left:145.333333pt;}
.x87_c00131{left:148.373333pt;}
.x11_c00131{left:150.666667pt;}
.x5f_c00131{left:152.000000pt;}
.x24_c00131{left:156.000000pt;}
.x8e_c00131{left:158.666667pt;}
.xe0_c00131{left:160.000000pt;}
.x88_c00131{left:161.906667pt;}
.x44_c00131{left:163.040000pt;}
.x8f_c00131{left:164.000000pt;}
.x69_c00131{left:166.293333pt;}
.xbb_c00131{left:173.333333pt;}
.x57_c00131{left:174.293333pt;}
.x25_c00131{left:177.333333pt;}
.x77_c00131{left:178.666667pt;}
.xcf_c00131{left:181.706667pt;}
.xe8_c00131{left:183.040000pt;}
.x4c_c00131{left:184.960000pt;}
.x1a_c00131{left:189.706667pt;}
.x3b_c00131{left:192.960000pt;}
.x7f_c00131{left:196.000000pt;}
.xe1_c00131{left:197.333333pt;}
.xeb_c00131{left:200.960000pt;}
.x58_c00131{left:202.666667pt;}
.xa8_c00131{left:204.960000pt;}
.x12_c00131{left:209.333333pt;}
.xb3_c00131{left:211.040000pt;}
.x78_c00131{left:212.373333pt;}
.x6a_c00131{left:213.333333pt;}
.x26_c00131{left:216.960000pt;}
.x8_c00131{left:218.666667pt;}
.xb6_c00131{left:221.333333pt;}
.x98_c00131{left:222.293333pt;}
.xac_c00131{left:224.000000pt;}
.x2f_c00131{left:225.333333pt;}
.xbc_c00131{left:227.040000pt;}
.x60_c00131{left:228.000000pt;}
.xd7_c00131{left:229.706667pt;}
.xef_c00131{left:231.040000pt;}
.x28_c00131{left:232.000000pt;}
.x34_c00131{left:233.333333pt;}
.x79_c00131{left:236.373333pt;}
.x4d_c00131{left:240.000000pt;}
.x1b_c00131{left:241.333333pt;}
.x3_c00131{left:242.293333pt;}
.xec_c00131{left:244.000000pt;}
.x46_c00131{left:244.960000pt;}
.xa2_c00131{left:246.293333pt;}
.x61_c00131{left:249.706667pt;}
.x29_c00131{left:252.000000pt;}
.x13_c00131{left:253.906667pt;}
.x90_c00131{left:256.573333pt;}
.x99_c00131{left:260.373333pt;}
.x1c_c00131{left:261.333333pt;}
.x27_c00131{left:262.666667pt;}
.xb4_c00131{left:264.373333pt;}
.xa9_c00131{left:265.333333pt;}
.x7a_c00131{left:266.666667pt;}
.xb7_c00131{left:268.000000pt;}
.x73_c00131{left:268.960000pt;}
.x30_c00131{left:272.000000pt;}
.x9_c00131{left:274.666667pt;}
.xcb_c00131{left:277.333333pt;}
.x9a_c00131{left:278.293333pt;}
.xe9_c00131{left:279.626667pt;}
.xe2_c00131{left:282.293333pt;}
.x7b_c00131{left:283.626667pt;}
.xa3_c00131{left:287.040000pt;}
.xd8_c00131{left:289.706667pt;}
.x31_c00131{left:291.626667pt;}
.x14_c00131{left:295.040000pt;}
.xa_c00131{left:297.333333pt;}
.xb8_c00131{left:298.293333pt;}
.x3c_c00131{left:300.000000pt;}
.xd0_c00131{left:300.960000pt;}
.x9b_c00131{left:302.666667pt;}
.x4e_c00131{left:305.333333pt;}
.x6b_c00131{left:306.293333pt;}
.xc4_c00131{left:308.960000pt;}
.x2a_c00131{left:310.466667pt;}
.x9f_c00131{left:312.373333pt;}
.x86_c00131{left:313.333333pt;}
.x80_c00131{left:314.293333pt;}
.x91_c00131{left:318.666667pt;}
.x32_c00131{left:320.000000pt;}
.xa0_c00131{left:321.333333pt;}
.x45_c00131{left:323.626667pt;}
.x62_c00131{left:325.333333pt;}
.x15_c00131{left:326.293333pt;}
.x4f_c00131{left:328.000000pt;}
.x47_c00131{left:329.333333pt;}
.xd9_c00131{left:330.666667pt;}
.x35_c00131{left:331.626667pt;}
.xc0_c00131{left:333.333333pt;}
.xe3_c00131{left:334.666667pt;}
.xf0_c00131{left:335.626667pt;}
.xad_c00131{left:337.333333pt;}
.xb_c00131{left:338.666667pt;}
.x4_c00131{left:340.000000pt;}
.x89_c00131{left:341.706667pt;}
.x1d_c00131{left:343.626667pt;}
.xcc_c00131{left:345.706667pt;}
.x2b_c00131{left:348.000000pt;}
.x7c_c00131{left:350.666667pt;}
.x9c_c00131{left:353.906667pt;}
.x2_c00131{left:357.333333pt;}
.xc_c00131{left:358.293333pt;}
.x63_c00131{left:360.000000pt;}
.x3d_c00131{left:362.666667pt;}
.xf2_c00131{left:367.626667pt;}
.x92_c00131{left:371.626667pt;}
.x2c_c00131{left:373.333333pt;}
.xda_c00131{left:374.293333pt;}
.xc5_c00131{left:376.000000pt;}
.xf1_c00131{left:376.960000pt;}
.x50_c00131{left:379.626667pt;}
.x16_c00131{left:381.333333pt;}
.x36_c00131{left:382.293333pt;}
.xaa_c00131{left:384.373333pt;}
.xa1_c00131{left:386.666667pt;}
.x8a_c00131{left:387.626667pt;}
.x6c_c00131{left:390.666667pt;}
.xdc_c00131{left:395.040000pt;}
.x7d_c00131{left:396.373333pt;}
.xae_c00131{left:400.000000pt;}
.x93_c00131{left:401.706667pt;}
.x5_c00131{left:402.666667pt;}
.xc6_c00131{left:404.373333pt;}
.xab_c00131{left:409.333333pt;}
.x37_c00131{left:412.000000pt;}
.xb5_c00131{left:414.293333pt;}
.xd1_c00131{left:416.960000pt;}
.x94_c00131{left:417.906667pt;}
.x8b_c00131{left:419.040000pt;}
.x81_c00131{left:422.666667pt;}
.xa4_c00131{left:424.000000pt;}
.x51_c00131{left:425.706667pt;}
.x64_c00131{left:427.626667pt;}
.x2d_c00131{left:429.133333pt;}
.x3e_c00131{left:430.666667pt;}
.xd_c00131{left:432.000000pt;}
.xaf_c00131{left:433.706667pt;}
.xdd_c00131{left:434.666667pt;}
.x6d_c00131{left:437.333333pt;}
.x48_c00131{left:438.293333pt;}
.x17_c00131{left:440.000000pt;}
.x1e_c00131{left:442.666667pt;}
.x3f_c00131{left:444.960000pt;}
.x59_c00131{left:447.040000pt;}
.x18_c00131{left:450.293333pt;}
.x74_c00131{left:452.000000pt;}
.x33_c00131{left:454.293333pt;}
.xd2_c00131{left:458.293333pt;}
.x52_c00131{left:460.960000pt;}
.xa5_c00131{left:464.000000pt;}
.x6_c00131{left:464.960000pt;}
.xe4_c00131{left:467.040000pt;}
.x2e_c00131{left:468.373333pt;}
.x19_c00131{left:472.000000pt;}
.xde_c00131{left:473.333333pt;}
.x49_c00131{left:474.293333pt;}
.x5a_c00131{left:476.000000pt;}
.x1f_c00131{left:479.240000pt;}
.xb0_c00131{left:480.960000pt;}
.xcd_c00131{left:482.666667pt;}
.x53_c00131{left:486.666667pt;}
.xc7_c00131{left:489.706667pt;}
.xed_c00131{left:490.666667pt;}
.x40_c00131{left:492.373333pt;}
.xc1_c00131{left:493.333333pt;}
.x65_c00131{left:495.626667pt;}
.x8c_c00131{left:497.333333pt;}
.xe_c00131{left:499.626667pt;}
.x38_c00131{left:501.333333pt;}
.x82_c00131{left:502.666667pt;}
.x95_c00131{left:504.000000pt;}
.xd3_c00131{left:505.706667pt;}
.xea_c00131{left:509.333333pt;}
.xbd_c00131{left:510.666667pt;}
.x7_c00131{left:515.800000pt;}
.xf_c00131{left:518.666667pt;}
.x41_c00131{left:525.333333pt;}
.x5b_c00131{left:526.293333pt;}
.xe5_c00131{left:528.000000pt;}
.x75_c00131{left:528.960000pt;}
.xb1_c00131{left:531.626667pt;}
.x4a_c00131{left:533.333333pt;}
.x10_c00131{left:534.293333pt;}
.x54_c00131{left:535.626667pt;}
.x6e_c00131{left:536.960000pt;}
.x66_c00131{left:542.466667pt;}
.x39_c00131{left:544.000000pt;}
.xa6_c00131{left:545.333333pt;}
.xbe_c00131{left:546.293333pt;}
.x20_c00131{left:549.333333pt;}
.x9d_c00131{left:550.666667pt;}
.x5c_c00131{left:553.706667pt;}
.xb9_c00131{left:554.666667pt;}
.x8d_c00131{left:556.373333pt;}
.x6f_c00131{left:557.333333pt;}
.x96_c00131{left:559.626667pt;}
.xe6_c00131{left:562.293333pt;}
.xd4_c00131{left:566.293333pt;}
.x21_c00131{left:568.960000pt;}
.x55_c00131{left:570.666667pt;}
.x70_c00131{left:572.373333pt;}
.xbf_c00131{left:576.373333pt;}
.x5d_c00131{left:577.333333pt;}
.xc2_c00131{left:580.960000pt;}
.xc8_c00131{left:583.040000pt;}
.x7e_c00131{left:587.626667pt;}
.xba_c00131{left:589.333333pt;}
.xe7_c00131{left:591.040000pt;}
.x56_c00131{left:592.000000pt;}
.x83_c00131{left:593.333333pt;}
.xdf_c00131{left:594.293333pt;}
.x42_c00131{left:596.000000pt;}
.x67_c00131{left:600.000000pt;}
.x71_c00131{left:602.666667pt;}
.x76_c00131{left:604.000000pt;}
.x3a_c00131{left:604.960000pt;}
.xd5_c00131{left:608.373333pt;}
.x84_c00131{left:610.293333pt;}
.xce_c00131{left:612.960000pt;}
.x9e_c00131{left:614.293333pt;}
.xc9_c00131{left:617.333333pt;}
.xa7_c00131{left:618.293333pt;}
.x72_c00131{left:621.333333pt;}
.xdb_c00131{left:622.666667pt;}
.xd6_c00131{left:625.333333pt;}
.x97_c00131{left:626.666667pt;}
.xee_c00131{left:628.373333pt;}
.x68_c00131{left:631.040000pt;}
.x4b_c00131{left:633.333333pt;}
.x22_c00131{left:634.666667pt;}
.xca_c00131{left:636.000000pt;}
.x85_c00131{left:638.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_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_805f676e781f72e1d57a0c55.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:1.688965;font-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_c00132{transform:matrix(0.371521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371521,0.000000,0.000000,0.250000,0,0);}
.m10_c00132{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m2_c00132{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m12_c00132{transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);}
.m7_c00132{transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);}
.m1e_c00132{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.m15_c00132{transform:matrix(0.426867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426867,0.000000,0.000000,0.250000,0,0);}
.m8_c00132{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.mb_c00132{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m17_c00132{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.mc_c00132{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m18_c00132{transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);}
.m16_c00132{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m14_c00132{transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);}
.m19_c00132{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.m4_c00132{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m1_c00132{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m11_c00132{transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);}
.m1f_c00132{transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);}
.m1c_c00132{transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);}
.mf_c00132{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m20_c00132{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);}
.m23_c00132{transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);}
.m13_c00132{transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);}
.m1a_c00132{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.md_c00132{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m9_c00132{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.me_c00132{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m5_c00132{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.m22_c00132{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m0_c00132{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.m6_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);}
.m1d_c00132{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m3_c00132{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m21_c00132{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);}
.ma_c00132{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,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;}
}
.ws2_c00132{word-spacing:-3.624693px;}
.ws1_c00132{word-spacing:-3.593003px;}
.ws0_c00132{word-spacing:-2.275659px;}
.ws3_c00132{word-spacing:0.000000px;}
.fc0_c00132{color:transparent;}
.fs3_c00132{font-size:18.720000px;}
.fs0_c00132{font-size:20.400000px;}
.fs4_c00132{font-size:25.500000px;}
.fs1_c00132{font-size:28.920000px;}
.fs2_c00132{font-size:32.340000px;}
.y0_c00132{bottom:0.000000px;}
.yc_c00132{bottom:251.970000px;}
.yd_c00132{bottom:252.405000px;}
.ya_c00132{bottom:253.050000px;}
.yb_c00132{bottom:253.470000px;}
.y7_c00132{bottom:253.905000px;}
.y9_c00132{bottom:254.130000px;}
.y8_c00132{bottom:254.970000px;}
.y5_c00132{bottom:266.970000px;}
.y3_c00132{bottom:267.825000px;}
.ye_c00132{bottom:268.905000px;}
.y4_c00132{bottom:269.130000px;}
.y6_c00132{bottom:269.970000px;}
.y11_c00132{bottom:282.405000px;}
.y12_c00132{bottom:283.050000px;}
.yf_c00132{bottom:283.905000px;}
.y10_c00132{bottom:284.130000px;}
.y14_c00132{bottom:297.825000px;}
.y19_c00132{bottom:298.050000px;}
.y15_c00132{bottom:298.470000px;}
.y17_c00132{bottom:298.905000px;}
.y16_c00132{bottom:299.130000px;}
.y13_c00132{bottom:299.970000px;}
.y18_c00132{bottom:301.050000px;}
.y2_c00132{bottom:1099.905000px;}
.y1_c00132{bottom:1102.050000px;}
.h4_c00132{height:23.025234px;}
.h1_c00132{height:25.091602px;}
.h5_c00132{height:31.364502px;}
.h2_c00132{height:35.571035px;}
.h3_c00132{height:39.777568px;}
.h0_c00132{height:1335.000000px;}
.w0_c00132{width:880.500000px;}
.x0_c00132{left:0.000000px;}
.x26_c00132{left:154.080000px;}
.x15_c00132{left:155.580000px;}
.x1f_c00132{left:173.580000px;}
.x27_c00132{left:184.500000px;}
.x16_c00132{left:208.500000px;}
.x17_c00132{left:231.420000px;}
.x20_c00132{left:255.000000px;}
.x28_c00132{left:261.420000px;}
.x18_c00132{left:280.920000px;}
.x29_c00132{left:289.500000px;}
.x13_c00132{left:301.920000px;}
.x9_c00132{left:324.000000px;}
.x2a_c00132{left:340.500000px;}
.x2b_c00132{left:358.500000px;}
.x14_c00132{left:363.420000px;}
.xa_c00132{left:376.500000px;}
.x1b_c00132{left:391.500000px;}
.xb_c00132{left:393.000000px;}
.x2c_c00132{left:394.920000px;}
.x1_c00132{left:399.000000px;}
.xc_c00132{left:427.920000px;}
.x2d_c00132{left:432.420000px;}
.xd_c00132{left:442.080000px;}
.x1c_c00132{left:450.000000px;}
.xe_c00132{left:469.080000px;}
.x1d_c00132{left:472.920000px;}
.x3_c00132{left:482.580000px;}
.xf_c00132{left:485.580000px;}
.x21_c00132{left:502.500000px;}
.x10_c00132{left:514.500000px;}
.x1e_c00132{left:519.000000px;}
.x4_c00132{left:529.500000px;}
.x19_c00132{left:535.500000px;}
.x5_c00132{left:553.920000px;}
.x22_c00132{left:555.000000px;}
.x11_c00132{left:556.920000px;}
.x12_c00132{left:572.580000px;}
.x6_c00132{left:600.000000px;}
.x23_c00132{left:612.000000px;}
.x1a_c00132{left:621.000000px;}
.x7_c00132{left:646.500000px;}
.x24_c00132{left:670.500000px;}
.x8_c00132{left:690.000000px;}
.x25_c00132{left:694.920000px;}
.x2_c00132{left:706.920000px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.ls0_c00132{letter-spacing:0.000000pt;}
.ws2_c00132{word-spacing:-3.221949pt;}
.ws1_c00132{word-spacing:-3.193780pt;}
.ws0_c00132{word-spacing:-2.022808pt;}
.ws3_c00132{word-spacing:0.000000pt;}
.fs3_c00132{font-size:16.640000pt;}
.fs0_c00132{font-size:18.133333pt;}
.fs4_c00132{font-size:22.666667pt;}
.fs1_c00132{font-size:25.706667pt;}
.fs2_c00132{font-size:28.746667pt;}
.y0_c00132{bottom:0.000000pt;}
.yc_c00132{bottom:223.973333pt;}
.yd_c00132{bottom:224.360000pt;}
.ya_c00132{bottom:224.933333pt;}
.yb_c00132{bottom:225.306667pt;}
.y7_c00132{bottom:225.693333pt;}
.y9_c00132{bottom:225.893333pt;}
.y8_c00132{bottom:226.640000pt;}
.y5_c00132{bottom:237.306667pt;}
.y3_c00132{bottom:238.066667pt;}
.ye_c00132{bottom:239.026667pt;}
.y4_c00132{bottom:239.226667pt;}
.y6_c00132{bottom:239.973333pt;}
.y11_c00132{bottom:251.026667pt;}
.y12_c00132{bottom:251.600000pt;}
.yf_c00132{bottom:252.360000pt;}
.y10_c00132{bottom:252.560000pt;}
.y14_c00132{bottom:264.733333pt;}
.y19_c00132{bottom:264.933333pt;}
.y15_c00132{bottom:265.306667pt;}
.y17_c00132{bottom:265.693333pt;}
.y16_c00132{bottom:265.893333pt;}
.y13_c00132{bottom:266.640000pt;}
.y18_c00132{bottom:267.600000pt;}
.y2_c00132{bottom:977.693333pt;}
.y1_c00132{bottom:979.600000pt;}
.h4_c00132{height:20.466875pt;}
.h1_c00132{height:22.303646pt;}
.h5_c00132{height:27.879557pt;}
.h2_c00132{height:31.618698pt;}
.h3_c00132{height:35.357839pt;}
.h0_c00132{height:1186.666667pt;}
.w0_c00132{width:782.666667pt;}
.x0_c00132{left:0.000000pt;}
.x26_c00132{left:136.960000pt;}
.x15_c00132{left:138.293333pt;}
.x1f_c00132{left:154.293333pt;}
.x27_c00132{left:164.000000pt;}
.x16_c00132{left:185.333333pt;}
.x17_c00132{left:205.706667pt;}
.x20_c00132{left:226.666667pt;}
.x28_c00132{left:232.373333pt;}
.x18_c00132{left:249.706667pt;}
.x29_c00132{left:257.333333pt;}
.x13_c00132{left:268.373333pt;}
.x9_c00132{left:288.000000pt;}
.x2a_c00132{left:302.666667pt;}
.x2b_c00132{left:318.666667pt;}
.x14_c00132{left:323.040000pt;}
.xa_c00132{left:334.666667pt;}
.x1b_c00132{left:348.000000pt;}
.xb_c00132{left:349.333333pt;}
.x2c_c00132{left:351.040000pt;}
.x1_c00132{left:354.666667pt;}
.xc_c00132{left:380.373333pt;}
.x2d_c00132{left:384.373333pt;}
.xd_c00132{left:392.960000pt;}
.x1c_c00132{left:400.000000pt;}
.xe_c00132{left:416.960000pt;}
.x1d_c00132{left:420.373333pt;}
.x3_c00132{left:428.960000pt;}
.xf_c00132{left:431.626667pt;}
.x21_c00132{left:446.666667pt;}
.x10_c00132{left:457.333333pt;}
.x1e_c00132{left:461.333333pt;}
.x4_c00132{left:470.666667pt;}
.x19_c00132{left:476.000000pt;}
.x5_c00132{left:492.373333pt;}
.x22_c00132{left:493.333333pt;}
.x11_c00132{left:495.040000pt;}
.x12_c00132{left:508.960000pt;}
.x6_c00132{left:533.333333pt;}
.x23_c00132{left:544.000000pt;}
.x1a_c00132{left:552.000000pt;}
.x7_c00132{left:574.666667pt;}
.x24_c00132{left:596.000000pt;}
.x8_c00132{left:613.333333pt;}
.x25_c00132{left:617.706667pt;}
.x2_c00132{left:628.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_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_08019fdbcbd1594b97c119be.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mcc_c00133{transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);}
.m26_c00133{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m9d_c00133{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00133{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m29_c00133{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m8b_c00133{transform:matrix(0.383013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383013,0.000000,0.000000,0.250000,0,0);}
.m2f_c00133{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m81_c00133{transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);}
.m6d_c00133{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m1f_c00133{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m4c_c00133{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m66_c00133{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m8f_c00133{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m58_c00133{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m6c_c00133{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m6b_c00133{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m23_c00133{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m4e_c00133{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.mb7_c00133{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.m85_c00133{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m5b_c00133{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.ma8_c00133{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m61_c00133{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m70_c00133{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m4a_c00133{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m21_c00133{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m89_c00133{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m59_c00133{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m38_c00133{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m73_c00133{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m7c_c00133{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m97_c00133{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);}
.mc9_c00133{transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);}
.m30_c00133{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m3f_c00133{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m91_c00133{transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);}
.m47_c00133{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m87_c00133{transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);}
.m90_c00133{transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);}
.mbc_c00133{transform:matrix(0.447794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447794,0.000000,0.000000,0.250000,0,0);}
.m5e_c00133{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m43_c00133{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m51_c00133{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m15_c00133{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m7e_c00133{transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);}
.m1_c00133{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m67_c00133{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.me_c00133{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m94_c00133{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m88_c00133{transform:matrix(0.459251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459251,0.000000,0.000000,0.250000,0,0);}
.mca_c00133{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.m69_c00133{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m5c_c00133{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.m71_c00133{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m22_c00133{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m3e_c00133{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.ma5_c00133{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m2d_c00133{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.ma7_c00133{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.m39_c00133{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.mb3_c00133{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.m17_c00133{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m86_c00133{transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);}
.md_c00133{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.m65_c00133{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mb9_c00133{transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);}
.mac_c00133{transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);}
.m57_c00133{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.m12_c00133{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m31_c00133{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.ma0_c00133{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m3c_c00133{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m80_c00133{transform:matrix(0.487059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487059,0.000000,0.000000,0.250000,0,0);}
.m75_c00133{transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);}
.m9c_c00133{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m5a_c00133{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m62_c00133{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m52_c00133{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.mb2_c00133{transform:matrix(0.495994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495994,0.000000,0.000000,0.250000,0,0);}
.m3_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);}
.m36_c00133{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m60_c00133{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m13_c00133{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m3d_c00133{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m35_c00133{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m3a_c00133{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m48_c00133{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mc8_c00133{transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);}
.m45_c00133{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m7a_c00133{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m42_c00133{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m16_c00133{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m9_c00133{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m1c_c00133{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m2b_c00133{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m6e_c00133{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mc5_c00133{transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);}
.m5_c00133{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m68_c00133{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mb0_c00133{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00133{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m4_c00133{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mc2_c00133{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m84_c00133{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.m83_c00133{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m11_c00133{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m46_c00133{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m50_c00133{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m25_c00133{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m64_c00133{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mbd_c00133{transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);}
.m10_c00133{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m5f_c00133{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m1a_c00133{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m2c_c00133{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mb1_c00133{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m74_c00133{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m2a_c00133{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m3b_c00133{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m33_c00133{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m6_c00133{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m8_c00133{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m18_c00133{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m1e_c00133{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m27_c00133{transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);}
.m99_c00133{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m19_c00133{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mab_c00133{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);}
.m54_c00133{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mc0_c00133{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m6f_c00133{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m53_c00133{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m49_c00133{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mc_c00133{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.ma9_c00133{transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);}
.m9b_c00133{transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);}
.m44_c00133{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mbf_c00133{transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);}
.m4f_c00133{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m55_c00133{transform:matrix(0.583206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583206,0.000000,0.000000,0.250000,0,0);}
.m37_c00133{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m77_c00133{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m6a_c00133{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m7f_c00133{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.mb6_c00133{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.m41_c00133{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m8d_c00133{transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);}
.m8c_c00133{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m20_c00133{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.mf_c00133{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m2_c00133{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m8a_c00133{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m4d_c00133{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m95_c00133{transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);}
.m7b_c00133{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m79_c00133{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mb8_c00133{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m32_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);}
.ma6_c00133{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m72_c00133{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.m24_c00133{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m63_c00133{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m98_c00133{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m92_c00133{transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);}
.m0_c00133{transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);}
.m40_c00133{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.ma1_c00133{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.ma_c00133{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m78_c00133{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m8e_c00133{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.m4b_c00133{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.mc6_c00133{transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);}
.m14_c00133{transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);}
.m76_c00133{transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);}
.mcd_c00133{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.m93_c00133{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mcb_c00133{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.mae_c00133{transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);}
.ma3_c00133{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.mc7_c00133{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m82_c00133{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m9f_c00133{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m7d_c00133{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);}
.m1b_c00133{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.mbb_c00133{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.mbe_c00133{transform:matrix(0.720264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720264,0.000000,0.000000,0.250000,0,0);}
.ma2_c00133{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.mc4_c00133{transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);}
.m9a_c00133{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.mb_c00133{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.mba_c00133{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.m96_c00133{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m28_c00133{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mb4_c00133{transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);}
.m1d_c00133{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mc3_c00133{transform:matrix(0.777533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777533,0.000000,0.000000,0.250000,0,0);}
.m2e_c00133{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.maf_c00133{transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);}
.mc1_c00133{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m7_c00133{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mad_c00133{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mb5_c00133{transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);}
.m56_c00133{transform:matrix(1.032158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.032158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.032158,0.000000,0.000000,0.250000,0,0);}
.ma4_c00133{transform:matrix(1.380531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.380531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.380531,0.000000,0.000000,0.250000,0,0);}
.m9e_c00133{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.maa_c00133{transform:matrix(2.758850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.758850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.758850,0.000000,0.000000,0.250000,0,0);}
.v3_c00133{vertical-align:-12.000000px;}
.v1_c00133{vertical-align:-6.000000px;}
.v0_c00133{vertical-align:0.000000px;}
.v2_c00133{vertical-align:6.000000px;}
.ls1_c00133{letter-spacing:0.000000px;}
.ls0_c00133{letter-spacing:51.359972px;}
.sc__c00133{text-shadow:none;}
.sc0_c00133{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00133{-webkit-text-stroke:0px transparent;}
.sc0_c00133{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00133{word-spacing:-6.926196px;}
.ws1a_c00133{word-spacing:0.000000px;}
.ws9_c00133{word-spacing:13.611988px;}
.ws19_c00133{word-spacing:15.614929px;}
.wsb_c00133{word-spacing:17.262919px;}
.ws14_c00133{word-spacing:18.138913px;}
.ws15_c00133{word-spacing:19.417982px;}
.wsd_c00133{word-spacing:19.620812px;}
.wsf_c00133{word-spacing:21.573046px;}
.ws10_c00133{word-spacing:23.728109px;}
.ws13_c00133{word-spacing:23.767013px;}
.ws12_c00133{word-spacing:24.591285px;}
.ws18_c00133{word-spacing:24.638400px;}
.wse_c00133{word-spacing:25.883172px;}
.ws16_c00133{word-spacing:30.234255px;}
.ws11_c00133{word-spacing:31.025931px;}
.ws7_c00133{word-spacing:31.838295px;}
.wsa_c00133{word-spacing:33.638400px;}
.ws4_c00133{word-spacing:36.326509px;}
.ws17_c00133{word-spacing:36.700576px;}
.ws2_c00133{word-spacing:39.846793px;}
.wsc_c00133{word-spacing:39.933737px;}
.ws8_c00133{word-spacing:40.994598px;}
.ws3_c00133{word-spacing:44.144422px;}
.ws1_c00133{word-spacing:47.719225px;}
.ws5_c00133{word-spacing:57.204655px;}
.ws6_c00133{word-spacing:100.510564px;}
._0_c00133{width:6.307270px;}
._3_c00133{width:27.574892px;}
._5_c00133{width:29.527126px;}
._4_c00133{width:31.682189px;}
._6_c00133{width:50.866217px;}
._1_c00133{width:59.248108px;}
._2_c00133{width:77.955316px;}
.fc0_c00133{color:transparent;}
.fs8_c00133{font-size:3.420000px;}
.fs9_c00133{font-size:6.780000px;}
.fsa_c00133{font-size:11.880000px;}
.fs7_c00133{font-size:13.620000px;}
.fs0_c00133{font-size:18.720000px;}
.fs6_c00133{font-size:20.400000px;}
.fs2_c00133{font-size:25.500000px;}
.fs1_c00133{font-size:28.920000px;}
.fs4_c00133{font-size:32.340000px;}
.fs3_c00133{font-size:35.700000px;}
.fs5_c00133{font-size:39.120000px;}
.y0_c00133{bottom:0.000000px;}
.y130_c00133{bottom:256.695000px;}
.y12f_c00133{bottom:257.130000px;}
.y12e_c00133{bottom:258.195000px;}
.y12c_c00133{bottom:259.695000px;}
.y12b_c00133{bottom:260.130000px;}
.y12d_c00133{bottom:261.195000px;}
.y12a_c00133{bottom:269.130000px;}
.y126_c00133{bottom:269.550000px;}
.y129_c00133{bottom:270.630000px;}
.y128_c00133{bottom:271.695000px;}
.y127_c00133{bottom:272.130000px;}
.y124_c00133{bottom:272.775000px;}
.y123_c00133{bottom:273.630000px;}
.y122_c00133{bottom:274.695000px;}
.y125_c00133{bottom:274.920000px;}
.y121_c00133{bottom:282.630000px;}
.y120_c00133{bottom:285.195000px;}
.y11f_c00133{bottom:285.630000px;}
.y11e_c00133{bottom:286.275000px;}
.y11a_c00133{bottom:286.695000px;}
.y11b_c00133{bottom:287.130000px;}
.y11c_c00133{bottom:287.775000px;}
.y11d_c00133{bottom:288.420000px;}
.y119_c00133{bottom:297.195000px;}
.y118_c00133{bottom:297.630000px;}
.y117_c00133{bottom:298.695000px;}
.y116_c00133{bottom:300.195000px;}
.y114_c00133{bottom:300.630000px;}
.y113_c00133{bottom:301.275000px;}
.y115_c00133{bottom:301.695000px;}
.y112_c00133{bottom:302.130000px;}
.y110_c00133{bottom:311.130000px;}
.y111_c00133{bottom:312.195000px;}
.y10e_c00133{bottom:314.775000px;}
.y10f_c00133{bottom:315.195000px;}
.y10d_c00133{bottom:316.695000px;}
.y10c_c00133{bottom:325.695000px;}
.y10b_c00133{bottom:326.130000px;}
.y10a_c00133{bottom:327.195000px;}
.y108_c00133{bottom:327.630000px;}
.y109_c00133{bottom:328.695000px;}
.y107_c00133{bottom:329.130000px;}
.y106_c00133{bottom:339.195000px;}
.y105_c00133{bottom:339.630000px;}
.y104_c00133{bottom:340.695000px;}
.y103_c00133{bottom:342.195000px;}
.y101_c00133{bottom:342.630000px;}
.y102_c00133{bottom:343.695000px;}
.yff_c00133{bottom:353.130000px;}
.y100_c00133{bottom:354.195000px;}
.yfe_c00133{bottom:354.630000px;}
.yfc_c00133{bottom:355.050000px;}
.yfd_c00133{bottom:355.695000px;}
.yfa_c00133{bottom:356.130000px;}
.yfb_c00133{bottom:357.195000px;}
.yf9_c00133{bottom:367.695000px;}
.yf8_c00133{bottom:368.130000px;}
.yf7_c00133{bottom:369.195000px;}
.yf6_c00133{bottom:369.630000px;}
.yf5_c00133{bottom:370.695000px;}
.yf4_c00133{bottom:372.195000px;}
.yf3_c00133{bottom:381.195000px;}
.yf1_c00133{bottom:381.630000px;}
.yf0_c00133{bottom:382.695000px;}
.yf2_c00133{bottom:382.920000px;}
.yef_c00133{bottom:384.195000px;}
.yed_c00133{bottom:384.630000px;}
.yee_c00133{bottom:385.695000px;}
.yec_c00133{bottom:393.630000px;}
.yeb_c00133{bottom:394.695000px;}
.yea_c00133{bottom:395.130000px;}
.ye9_c00133{bottom:396.195000px;}
.ye8_c00133{bottom:396.630000px;}
.ye7_c00133{bottom:398.130000px;}
.ye6_c00133{bottom:407.130000px;}
.ye5_c00133{bottom:408.195000px;}
.ye4_c00133{bottom:408.630000px;}
.ye3_c00133{bottom:410.130000px;}
.ye2_c00133{bottom:411.195000px;}
.ye1_c00133{bottom:411.630000px;}
.ye0_c00133{bottom:412.695000px;}
.ydf_c00133{bottom:423.630000px;}
.yde_c00133{bottom:424.695000px;}
.ydd_c00133{bottom:425.130000px;}
.ydb_c00133{bottom:426.195000px;}
.yd9_c00133{bottom:426.630000px;}
.yda_c00133{bottom:427.275000px;}
.ydc_c00133{bottom:427.695000px;}
.yd8_c00133{bottom:435.630000px;}
.yd7_c00133{bottom:436.695000px;}
.yd6_c00133{bottom:437.130000px;}
.yd5_c00133{bottom:438.195000px;}
.yd4_c00133{bottom:438.630000px;}
.yd3_c00133{bottom:440.130000px;}
.yd2_c00133{bottom:450.195000px;}
.yd1_c00133{bottom:450.630000px;}
.yd0_c00133{bottom:451.695000px;}
.ycd_c00133{bottom:452.130000px;}
.ycf_c00133{bottom:453.195000px;}
.yce_c00133{bottom:453.630000px;}
.ycc_c00133{bottom:469.695000px;}
.ycb_c00133{bottom:478.695000px;}
.yca_c00133{bottom:479.130000px;}
.yc8_c00133{bottom:480.195000px;}
.yc9_c00133{bottom:480.420000px;}
.yc7_c00133{bottom:483.195000px;}
.yc6_c00133{bottom:492.195000px;}
.yc4_c00133{bottom:493.695000px;}
.yc5_c00133{bottom:493.920000px;}
.yc2_c00133{bottom:495.630000px;}
.yc3_c00133{bottom:496.695000px;}
.yc1_c00133{bottom:506.130000px;}
.ybd_c00133{bottom:507.195000px;}
.yc0_c00133{bottom:507.420000px;}
.ybf_c00133{bottom:507.855000px;}
.ybe_c00133{bottom:508.920000px;}
.ybc_c00133{bottom:510.630000px;}
.ybb_c00133{bottom:519.195000px;}
.yba_c00133{bottom:520.695000px;}
.yb9_c00133{bottom:520.920000px;}
.yb8_c00133{bottom:521.130000px;}
.yb6_c00133{bottom:522.195000px;}
.yb7_c00133{bottom:522.420000px;}
.yb5_c00133{bottom:522.630000px;}
.yb4_c00133{bottom:523.695000px;}
.yb3_c00133{bottom:533.130000px;}
.yb0_c00133{bottom:534.195000px;}
.yb2_c00133{bottom:534.420000px;}
.yae_c00133{bottom:534.630000px;}
.yb1_c00133{bottom:535.695000px;}
.yaf_c00133{bottom:535.920000px;}
.yad_c00133{bottom:536.550000px;}
.yac_c00133{bottom:537.630000px;}
.yaa_c00133{bottom:546.630000px;}
.yab_c00133{bottom:546.855000px;}
.ya9_c00133{bottom:548.130000px;}
.ya7_c00133{bottom:549.195000px;}
.ya8_c00133{bottom:549.420000px;}
.ya6_c00133{bottom:549.630000px;}
.ya5_c00133{bottom:550.050000px;}
.ya4_c00133{bottom:551.130000px;}
.ya3_c00133{bottom:560.130000px;}
.ya0_c00133{bottom:561.630000px;}
.ya1_c00133{bottom:562.695000px;}
.ya2_c00133{bottom:562.920000px;}
.y9e_c00133{bottom:563.130000px;}
.y9f_c00133{bottom:564.420000px;}
.y9d_c00133{bottom:564.630000px;}
.y9c_c00133{bottom:565.695000px;}
.y9b_c00133{bottom:573.630000px;}
.y9a_c00133{bottom:574.695000px;}
.y99_c00133{bottom:575.355000px;}
.y97_c00133{bottom:576.195000px;}
.y98_c00133{bottom:576.420000px;}
.y95_c00133{bottom:576.630000px;}
.y96_c00133{bottom:577.920000px;}
.y94_c00133{bottom:578.130000px;}
.y93_c00133{bottom:579.195000px;}
.y92_c00133{bottom:588.195000px;}
.y8f_c00133{bottom:588.630000px;}
.y90_c00133{bottom:589.695000px;}
.y91_c00133{bottom:589.920000px;}
.y8d_c00133{bottom:591.195000px;}
.y8e_c00133{bottom:591.420000px;}
.y8c_c00133{bottom:591.630000px;}
.y8b_c00133{bottom:592.050000px;}
.y8a_c00133{bottom:594.195000px;}
.y89_c00133{bottom:600.630000px;}
.y87_c00133{bottom:603.195000px;}
.y88_c00133{bottom:603.420000px;}
.y85_c00133{bottom:604.695000px;}
.y86_c00133{bottom:604.920000px;}
.y84_c00133{bottom:606.630000px;}
.y83_c00133{bottom:607.695000px;}
.y82_c00133{bottom:616.695000px;}
.y81_c00133{bottom:617.130000px;}
.y7f_c00133{bottom:618.195000px;}
.y80_c00133{bottom:618.420000px;}
.y7e_c00133{bottom:620.130000px;}
.y7d_c00133{bottom:621.195000px;}
.y7b_c00133{bottom:630.195000px;}
.y7c_c00133{bottom:630.420000px;}
.y79_c00133{bottom:630.630000px;}
.y78_c00133{bottom:631.695000px;}
.y7a_c00133{bottom:631.920000px;}
.y76_c00133{bottom:633.195000px;}
.y77_c00133{bottom:633.420000px;}
.y75_c00133{bottom:633.630000px;}
.y74_c00133{bottom:634.695000px;}
.y73_c00133{bottom:643.695000px;}
.y72_c00133{bottom:645.420000px;}
.y6f_c00133{bottom:645.630000px;}
.y71_c00133{bottom:646.695000px;}
.y70_c00133{bottom:646.920000px;}
.y6e_c00133{bottom:647.130000px;}
.y6d_c00133{bottom:647.550000px;}
.y6c_c00133{bottom:649.695000px;}
.y6b_c00133{bottom:657.630000px;}
.y6a_c00133{bottom:658.695000px;}
.y69_c00133{bottom:659.130000px;}
.y68_c00133{bottom:660.195000px;}
.y67_c00133{bottom:663.195000px;}
.y66_c00133{bottom:675.630000px;}
.y65_c00133{bottom:676.695000px;}
.y64_c00133{bottom:677.130000px;}
.y63_c00133{bottom:679.695000px;}
.y62_c00133{bottom:681.195000px;}
.y60_c00133{bottom:689.130000px;}
.y61_c00133{bottom:690.195000px;}
.y5f_c00133{bottom:690.630000px;}
.y5e_c00133{bottom:691.695000px;}
.y5c_c00133{bottom:692.130000px;}
.y5d_c00133{bottom:693.195000px;}
.y5a_c00133{bottom:695.130000px;}
.y5b_c00133{bottom:696.195000px;}
.y59_c00133{bottom:703.695000px;}
.y58_c00133{bottom:705.195000px;}
.y57_c00133{bottom:706.695000px;}
.y56_c00133{bottom:709.695000px;}
.y55_c00133{bottom:731.970000px;}
.y54_c00133{bottom:733.050000px;}
.y50_c00133{bottom:744.405000px;}
.y53_c00133{bottom:744.825000px;}
.y52_c00133{bottom:745.470000px;}
.y51_c00133{bottom:745.905000px;}
.y4e_c00133{bottom:746.550000px;}
.y4f_c00133{bottom:746.970000px;}
.y4d_c00133{bottom:748.050000px;}
.y4c_c00133{bottom:769.050000px;}
.y4b_c00133{bottom:770.970000px;}
.y4a_c00133{bottom:804.405000px;}
.y48_c00133{bottom:805.245000px;}
.y45_c00133{bottom:806.325000px;}
.y47_c00133{bottom:807.405000px;}
.y46_c00133{bottom:808.470000px;}
.y49_c00133{bottom:808.905000px;}
.y44_c00133{bottom:824.745000px;}
.y40_c00133{bottom:826.245000px;}
.y42_c00133{bottom:826.905000px;}
.y41_c00133{bottom:827.970000px;}
.y43_c00133{bottom:828.405000px;}
.y3e_c00133{bottom:843.405000px;}
.y3b_c00133{bottom:845.745000px;}
.y3c_c00133{bottom:846.630000px;}
.y3f_c00133{bottom:847.470000px;}
.y3d_c00133{bottom:847.905000px;}
.y39_c00133{bottom:865.245000px;}
.y38_c00133{bottom:866.325000px;}
.y37_c00133{bottom:867.405000px;}
.y3a_c00133{bottom:868.470000px;}
.y35_c00133{bottom:883.245000px;}
.y36_c00133{bottom:883.470000px;}
.y32_c00133{bottom:883.680000px;}
.y33_c00133{bottom:884.745000px;}
.y31_c00133{bottom:886.905000px;}
.y34_c00133{bottom:887.970000px;}
.y2e_c00133{bottom:904.245000px;}
.y30_c00133{bottom:905.325000px;}
.y2d_c00133{bottom:906.405000px;}
.y2f_c00133{bottom:906.630000px;}
.y2b_c00133{bottom:923.745000px;}
.y2a_c00133{bottom:925.245000px;}
.y29_c00133{bottom:925.905000px;}
.y2c_c00133{bottom:926.130000px;}
.y28_c00133{bottom:927.405000px;}
.y27_c00133{bottom:943.245000px;}
.y26_c00133{bottom:945.405000px;}
.y24_c00133{bottom:945.630000px;}
.y25_c00133{bottom:945.825000px;}
.y22_c00133{bottom:962.745000px;}
.y20_c00133{bottom:963.825000px;}
.y1f_c00133{bottom:964.905000px;}
.y21_c00133{bottom:965.970000px;}
.y23_c00133{bottom:966.405000px;}
.y1e_c00133{bottom:982.245000px;}
.y19_c00133{bottom:983.745000px;}
.y1b_c00133{bottom:984.405000px;}
.y1d_c00133{bottom:984.630000px;}
.y1c_c00133{bottom:984.825000px;}
.y1a_c00133{bottom:985.905000px;}
.y17_c00133{bottom:1001.970000px;}
.y16_c00133{bottom:1003.245000px;}
.y14_c00133{bottom:1003.905000px;}
.y18_c00133{bottom:1004.130000px;}
.y13_c00133{bottom:1004.970000px;}
.y15_c00133{bottom:1005.405000px;}
.y11_c00133{bottom:1020.405000px;}
.y12_c00133{bottom:1021.470000px;}
.yf_c00133{bottom:1022.745000px;}
.yd_c00133{bottom:1023.630000px;}
.y10_c00133{bottom:1024.470000px;}
.yc_c00133{bottom:1024.905000px;}
.ye_c00133{bottom:1025.970000px;}
.y7_c00133{bottom:1042.245000px;}
.yb_c00133{bottom:1042.905000px;}
.ya_c00133{bottom:1043.325000px;}
.y9_c00133{bottom:1044.405000px;}
.y8_c00133{bottom:1045.470000px;}
.y6_c00133{bottom:1061.745000px;}
.y4_c00133{bottom:1062.630000px;}
.y5_c00133{bottom:1063.470000px;}
.y3_c00133{bottom:1063.905000px;}
.y2_c00133{bottom:1099.905000px;}
.y1_c00133{bottom:1103.130000px;}
.h9_c00133{height:4.206533px;}
.ha_c00133{height:8.339268px;}
.hc_c00133{height:14.612168px;}
.h8_c00133{height:16.752334px;}
.hb_c00133{height:22.752334px;}
.h1_c00133{height:23.025234px;}
.h7_c00133{height:25.091602px;}
.h3_c00133{height:31.364502px;}
.h2_c00133{height:35.571035px;}
.h5_c00133{height:39.777568px;}
.h4_c00133{height:43.910303px;}
.h6_c00133{height:48.116836px;}
.h0_c00133{height:1335.000000px;}
.w0_c00133{width:880.500000px;}
.x0_c00133{left:0.000000px;}
.x3_c00133{left:153.420000px;}
.x2_c00133{left:154.920000px;}
.xa8_c00133{left:163.080000px;}
.x97_c00133{left:165.000000px;}
.x5e_c00133{left:169.920000px;}
.x28_c00133{left:174.420000px;}
.xc1_c00133{left:175.500000px;}
.xbb_c00133{left:177.420000px;}
.x4c_c00133{left:181.920000px;}
.xb9_c00133{left:186.000000px;}
.x9d_c00133{left:187.080000px;}
.xb6_c00133{left:190.920000px;}
.x3f_c00133{left:192.000000px;}
.x4_c00133{left:194.580000px;}
.x7e_c00133{left:196.500000px;}
.x1b_c00133{left:202.080000px;}
.x54_c00133{left:205.500000px;}
.xc6_c00133{left:207.000000px;}
.xc5_c00133{left:211.500000px;}
.x8d_c00133{left:213.420000px;}
.x6e_c00133{left:216.420000px;}
.x5_c00133{left:217.920000px;}
.xd1_c00133{left:219.000000px;}
.xc3_c00133{left:220.500000px;}
.x55_c00133{left:222.000000px;}
.x12_c00133{left:223.500000px;}
.x5f_c00133{left:226.920000px;}
.x75_c00133{left:228.000000px;}
.xc7_c00133{left:229.920000px;}
.xae_c00133{left:231.000000px;}
.xb2_c00133{left:232.500000px;}
.xcb_c00133{left:234.000000px;}
.xbe_c00133{left:235.080000px;}
.x40_c00133{left:240.000000px;}
.x8e_c00133{left:241.500000px;}
.x7f_c00133{left:243.000000px;}
.x1c_c00133{left:244.920000px;}
.x6_c00133{left:247.920000px;}
.x34_c00133{left:249.000000px;}
.xb3_c00133{left:250.080000px;}
.x13_c00133{left:253.080000px;}
.x76_c00133{left:255.000000px;}
.x85_c00133{left:256.500000px;}
.x41_c00133{left:259.500000px;}
.xcf_c00133{left:261.000000px;}
.x29_c00133{left:262.080000px;}
.x35_c00133{left:265.080000px;}
.xc0_c00133{left:267.420000px;}
.xd0_c00133{left:268.500000px;}
.xcc_c00133{left:270.000000px;}
.x77_c00133{left:271.500000px;}
.x4d_c00133{left:274.920000px;}
.x8f_c00133{left:276.000000px;}
.x80_c00133{left:280.080000px;}
.x1d_c00133{left:287.580000px;}
.x60_c00133{left:291.000000px;}
.x56_c00133{left:294.420000px;}
.x2a_c00133{left:295.500000px;}
.x81_c00133{left:298.500000px;}
.x1e_c00133{left:306.000000px;}
.x7_c00133{left:307.080000px;}
.x86_c00133{left:313.920000px;}
.x78_c00133{left:316.500000px;}
.x4e_c00133{left:317.580000px;}
.x67_c00133{left:323.580000px;}
.x82_c00133{left:325.500000px;}
.x36_c00133{left:328.920000px;}
.x2b_c00133{left:339.420000px;}
.x8_c00133{left:340.500000px;}
.x57_c00133{left:343.920000px;}
.x14_c00133{left:345.000000px;}
.x6f_c00133{left:348.000000px;}
.x42_c00133{left:349.080000px;}
.x9e_c00133{left:351.420000px;}
.xb8_c00133{left:352.500000px;}
.x98_c00133{left:354.000000px;}
.xc8_c00133{left:357.000000px;}
.x61_c00133{left:361.500000px;}
.xa4_c00133{left:363.000000px;}
.x9_c00133{left:364.920000px;}
.x79_c00133{left:366.420000px;}
.x2c_c00133{left:367.500000px;}
.x4f_c00133{left:369.420000px;}
.x1f_c00133{left:372.420000px;}
.x87_c00133{left:377.580000px;}
.x58_c00133{left:379.920000px;}
.x90_c00133{left:385.500000px;}
.x43_c00133{left:387.000000px;}
.x9f_c00133{left:391.500000px;}
.xa_c00133{left:393.000000px;}
.x95_c00133{left:394.500000px;}
.x83_c00133{left:396.000000px;}
.x1_c00133{left:400.500000px;}
.xb7_c00133{left:402.000000px;}
.xaf_c00133{left:403.500000px;}
.x68_c00133{left:405.000000px;}
.x2d_c00133{left:406.080000px;}
.x7a_c00133{left:408.420000px;}
.x91_c00133{left:411.000000px;}
.x8c_c00133{left:412.500000px;}
.x37_c00133{left:413.580000px;}
.x20_c00133{left:417.000000px;}
.x69_c00133{left:422.580000px;}
.x15_c00133{left:424.500000px;}
.x2e_c00133{left:426.420000px;}
.xd2_c00133{left:427.500000px;}
.x96_c00133{left:429.000000px;}
.xa9_c00133{left:430.500000px;}
.xa0_c00133{left:432.000000px;}
.x99_c00133{left:435.000000px;}
.x44_c00133{left:438.000000px;}
.xa5_c00133{left:439.920000px;}
.x88_c00133{left:441.000000px;}
.x16_c00133{left:442.500000px;}
.x38_c00133{left:445.500000px;}
.x59_c00133{left:453.000000px;}
.x2f_c00133{left:454.500000px;}
.x21_c00133{left:459.000000px;}
.xa1_c00133{left:463.080000px;}
.x45_c00133{left:465.000000px;}
.xaa_c00133{left:466.500000px;}
.x62_c00133{left:469.500000px;}
.x70_c00133{left:472.080000px;}
.x6a_c00133{left:474.000000px;}
.x92_c00133{left:477.420000px;}
.x50_c00133{left:481.500000px;}
.x5a_c00133{left:483.000000px;}
.xb_c00133{left:484.500000px;}
.x22_c00133{left:486.000000px;}
.x39_c00133{left:493.080000px;}
.x93_c00133{left:494.145000px;}
.x30_c00133{left:499.500000px;}
.x17_c00133{left:502.500000px;}
.x46_c00133{left:503.580000px;}
.xbf_c00133{left:505.500000px;}
.x9a_c00133{left:507.000000px;}
.x71_c00133{left:508.080000px;}
.x84_c00133{left:510.000000px;}
.xb0_c00133{left:516.000000px;}
.x5b_c00133{left:519.000000px;}
.x47_c00133{left:522.000000px;}
.x3a_c00133{left:525.000000px;}
.x63_c00133{left:526.500000px;}
.x23_c00133{left:530.580000px;}
.x6b_c00133{left:532.500000px;}
.x31_c00133{left:537.000000px;}
.x3b_c00133{left:538.500000px;}
.x18_c00133{left:541.500000px;}
.xab_c00133{left:543.000000px;}
.xc9_c00133{left:546.000000px;}
.x9b_c00133{left:547.500000px;}
.x48_c00133{left:550.920000px;}
.x64_c00133{left:555.420000px;}
.x51_c00133{left:561.420000px;}
.xc_c00133{left:564.000000px;}
.x24_c00133{left:565.500000px;}
.x7b_c00133{left:567.000000px;}
.x89_c00133{left:568.920000px;}
.x72_c00133{left:570.420000px;}
.x3c_c00133{left:579.000000px;}
.xa2_c00133{left:580.920000px;}
.xbc_c00133{left:582.000000px;}
.xac_c00133{left:583.500000px;}
.xd_c00133{left:585.420000px;}
.xca_c00133{left:586.500000px;}
.xb1_c00133{left:592.500000px;}
.x52_c00133{left:594.420000px;}
.x8a_c00133{left:595.500000px;}
.x49_c00133{left:597.000000px;}
.x73_c00133{left:598.920000px;}
.x5c_c00133{left:600.000000px;}
.x65_c00133{left:612.000000px;}
.xe_c00133{left:615.420000px;}
.x6c_c00133{left:616.920000px;}
.xd3_c00133{left:621.000000px;}
.xba_c00133{left:622.500000px;}
.x5d_c00133{left:623.580000px;}
.xb4_c00133{left:625.500000px;}
.x7c_c00133{left:627.000000px;}
.x66_c00133{left:630.420000px;}
.x94_c00133{left:631.500000px;}
.xa6_c00133{left:633.000000px;}
.x3d_c00133{left:634.500000px;}
.x25_c00133{left:637.500000px;}
.x19_c00133{left:649.920000px;}
.xf_c00133{left:652.080000px;}
.x74_c00133{left:655.920000px;}
.x26_c00133{left:657.000000px;}
.xa3_c00133{left:661.920000px;}
.xc2_c00133{left:663.000000px;}
.x6d_c00133{left:664.920000px;}
.xad_c00133{left:666.000000px;}
.xcd_c00133{left:667.500000px;}
.x4a_c00133{left:669.420000px;}
.xc4_c00133{left:672.000000px;}
.x10_c00133{left:673.920000px;}
.x7d_c00133{left:676.500000px;}
.x3e_c00133{left:678.420000px;}
.x53_c00133{left:682.920000px;}
.x27_c00133{left:684.000000px;}
.x32_c00133{left:685.500000px;}
.x8b_c00133{left:690.000000px;}
.x1a_c00133{left:694.500000px;}
.x4b_c00133{left:696.000000px;}
.x33_c00133{left:700.920000px;}
.x11_c00133{left:702.420000px;}
.xbd_c00133{left:703.500000px;}
.x9c_c00133{left:705.000000px;}
.xb5_c00133{left:706.920000px;}
.xce_c00133{left:708.000000px;}
.xa7_c00133{left:714.000000px;}
@media print{
.v3_c00133{vertical-align:-10.666667pt;}
.v1_c00133{vertical-align:-5.333333pt;}
.v0_c00133{vertical-align:0.000000pt;}
.v2_c00133{vertical-align:5.333333pt;}
.ls1_c00133{letter-spacing:0.000000pt;}
.ls0_c00133{letter-spacing:45.653309pt;}
.ws0_c00133{word-spacing:-6.156618pt;}
.ws1a_c00133{word-spacing:0.000000pt;}
.ws9_c00133{word-spacing:12.099545pt;}
.ws19_c00133{word-spacing:13.879937pt;}
.wsb_c00133{word-spacing:15.344817pt;}
.ws14_c00133{word-spacing:16.123479pt;}
.ws15_c00133{word-spacing:17.260429pt;}
.wsd_c00133{word-spacing:17.440722pt;}
.wsf_c00133{word-spacing:19.176041pt;}
.ws10_c00133{word-spacing:21.091652pt;}
.ws13_c00133{word-spacing:21.126233pt;}
.ws12_c00133{word-spacing:21.858920pt;}
.ws18_c00133{word-spacing:21.900800pt;}
.wse_c00133{word-spacing:23.007264pt;}
.ws16_c00133{word-spacing:26.874893pt;}
.ws11_c00133{word-spacing:27.578605pt;}
.ws7_c00133{word-spacing:28.300707pt;}
.wsa_c00133{word-spacing:29.900800pt;}
.ws4_c00133{word-spacing:32.290231pt;}
.ws17_c00133{word-spacing:32.622734pt;}
.ws2_c00133{word-spacing:35.419372pt;}
.wsc_c00133{word-spacing:35.496655pt;}
.ws8_c00133{word-spacing:36.439642pt;}
.ws3_c00133{word-spacing:39.239486pt;}
.ws1_c00133{word-spacing:42.417089pt;}
.ws5_c00133{word-spacing:50.848582pt;}
.ws6_c00133{word-spacing:89.342724pt;}
._0_c00133{width:5.606462pt;}
._3_c00133{width:24.511015pt;}
._5_c00133{width:26.246334pt;}
._4_c00133{width:28.161946pt;}
._6_c00133{width:45.214415pt;}
._1_c00133{width:52.664985pt;}
._2_c00133{width:69.293615pt;}
.fs8_c00133{font-size:3.040000pt;}
.fs9_c00133{font-size:6.026667pt;}
.fsa_c00133{font-size:10.560000pt;}
.fs7_c00133{font-size:12.106667pt;}
.fs0_c00133{font-size:16.640000pt;}
.fs6_c00133{font-size:18.133333pt;}
.fs2_c00133{font-size:22.666667pt;}
.fs1_c00133{font-size:25.706667pt;}
.fs4_c00133{font-size:28.746667pt;}
.fs3_c00133{font-size:31.733333pt;}
.fs5_c00133{font-size:34.773333pt;}
.y0_c00133{bottom:0.000000pt;}
.y130_c00133{bottom:228.173333pt;}
.y12f_c00133{bottom:228.560000pt;}
.y12e_c00133{bottom:229.506667pt;}
.y12c_c00133{bottom:230.840000pt;}
.y12b_c00133{bottom:231.226667pt;}
.y12d_c00133{bottom:232.173333pt;}
.y12a_c00133{bottom:239.226667pt;}
.y126_c00133{bottom:239.600000pt;}
.y129_c00133{bottom:240.560000pt;}
.y128_c00133{bottom:241.506667pt;}
.y127_c00133{bottom:241.893333pt;}
.y124_c00133{bottom:242.466667pt;}
.y123_c00133{bottom:243.226667pt;}
.y122_c00133{bottom:244.173333pt;}
.y125_c00133{bottom:244.373333pt;}
.y121_c00133{bottom:251.226667pt;}
.y120_c00133{bottom:253.506667pt;}
.y11f_c00133{bottom:253.893333pt;}
.y11e_c00133{bottom:254.466667pt;}
.y11a_c00133{bottom:254.840000pt;}
.y11b_c00133{bottom:255.226667pt;}
.y11c_c00133{bottom:255.800000pt;}
.y11d_c00133{bottom:256.373333pt;}
.y119_c00133{bottom:264.173333pt;}
.y118_c00133{bottom:264.560000pt;}
.y117_c00133{bottom:265.506667pt;}
.y116_c00133{bottom:266.840000pt;}
.y114_c00133{bottom:267.226667pt;}
.y113_c00133{bottom:267.800000pt;}
.y115_c00133{bottom:268.173333pt;}
.y112_c00133{bottom:268.560000pt;}
.y110_c00133{bottom:276.560000pt;}
.y111_c00133{bottom:277.506667pt;}
.y10e_c00133{bottom:279.800000pt;}
.y10f_c00133{bottom:280.173333pt;}
.y10d_c00133{bottom:281.506667pt;}
.y10c_c00133{bottom:289.506667pt;}
.y10b_c00133{bottom:289.893333pt;}
.y10a_c00133{bottom:290.840000pt;}
.y108_c00133{bottom:291.226667pt;}
.y109_c00133{bottom:292.173333pt;}
.y107_c00133{bottom:292.560000pt;}
.y106_c00133{bottom:301.506667pt;}
.y105_c00133{bottom:301.893333pt;}
.y104_c00133{bottom:302.840000pt;}
.y103_c00133{bottom:304.173333pt;}
.y101_c00133{bottom:304.560000pt;}
.y102_c00133{bottom:305.506667pt;}
.yff_c00133{bottom:313.893333pt;}
.y100_c00133{bottom:314.840000pt;}
.yfe_c00133{bottom:315.226667pt;}
.yfc_c00133{bottom:315.600000pt;}
.yfd_c00133{bottom:316.173333pt;}
.yfa_c00133{bottom:316.560000pt;}
.yfb_c00133{bottom:317.506667pt;}
.yf9_c00133{bottom:326.840000pt;}
.yf8_c00133{bottom:327.226667pt;}
.yf7_c00133{bottom:328.173333pt;}
.yf6_c00133{bottom:328.560000pt;}
.yf5_c00133{bottom:329.506667pt;}
.yf4_c00133{bottom:330.840000pt;}
.yf3_c00133{bottom:338.840000pt;}
.yf1_c00133{bottom:339.226667pt;}
.yf0_c00133{bottom:340.173333pt;}
.yf2_c00133{bottom:340.373333pt;}
.yef_c00133{bottom:341.506667pt;}
.yed_c00133{bottom:341.893333pt;}
.yee_c00133{bottom:342.840000pt;}
.yec_c00133{bottom:349.893333pt;}
.yeb_c00133{bottom:350.840000pt;}
.yea_c00133{bottom:351.226667pt;}
.ye9_c00133{bottom:352.173333pt;}
.ye8_c00133{bottom:352.560000pt;}
.ye7_c00133{bottom:353.893333pt;}
.ye6_c00133{bottom:361.893333pt;}
.ye5_c00133{bottom:362.840000pt;}
.ye4_c00133{bottom:363.226667pt;}
.ye3_c00133{bottom:364.560000pt;}
.ye2_c00133{bottom:365.506667pt;}
.ye1_c00133{bottom:365.893333pt;}
.ye0_c00133{bottom:366.840000pt;}
.ydf_c00133{bottom:376.560000pt;}
.yde_c00133{bottom:377.506667pt;}
.ydd_c00133{bottom:377.893333pt;}
.ydb_c00133{bottom:378.840000pt;}
.yd9_c00133{bottom:379.226667pt;}
.yda_c00133{bottom:379.800000pt;}
.ydc_c00133{bottom:380.173333pt;}
.yd8_c00133{bottom:387.226667pt;}
.yd7_c00133{bottom:388.173333pt;}
.yd6_c00133{bottom:388.560000pt;}
.yd5_c00133{bottom:389.506667pt;}
.yd4_c00133{bottom:389.893333pt;}
.yd3_c00133{bottom:391.226667pt;}
.yd2_c00133{bottom:400.173333pt;}
.yd1_c00133{bottom:400.560000pt;}
.yd0_c00133{bottom:401.506667pt;}
.ycd_c00133{bottom:401.893333pt;}
.ycf_c00133{bottom:402.840000pt;}
.yce_c00133{bottom:403.226667pt;}
.ycc_c00133{bottom:417.506667pt;}
.ycb_c00133{bottom:425.506667pt;}
.yca_c00133{bottom:425.893333pt;}
.yc8_c00133{bottom:426.840000pt;}
.yc9_c00133{bottom:427.040000pt;}
.yc7_c00133{bottom:429.506667pt;}
.yc6_c00133{bottom:437.506667pt;}
.yc4_c00133{bottom:438.840000pt;}
.yc5_c00133{bottom:439.040000pt;}
.yc2_c00133{bottom:440.560000pt;}
.yc3_c00133{bottom:441.506667pt;}
.yc1_c00133{bottom:449.893333pt;}
.ybd_c00133{bottom:450.840000pt;}
.yc0_c00133{bottom:451.040000pt;}
.ybf_c00133{bottom:451.426667pt;}
.ybe_c00133{bottom:452.373333pt;}
.ybc_c00133{bottom:453.893333pt;}
.ybb_c00133{bottom:461.506667pt;}
.yba_c00133{bottom:462.840000pt;}
.yb9_c00133{bottom:463.040000pt;}
.yb8_c00133{bottom:463.226667pt;}
.yb6_c00133{bottom:464.173333pt;}
.yb7_c00133{bottom:464.373333pt;}
.yb5_c00133{bottom:464.560000pt;}
.yb4_c00133{bottom:465.506667pt;}
.yb3_c00133{bottom:473.893333pt;}
.yb0_c00133{bottom:474.840000pt;}
.yb2_c00133{bottom:475.040000pt;}
.yae_c00133{bottom:475.226667pt;}
.yb1_c00133{bottom:476.173333pt;}
.yaf_c00133{bottom:476.373333pt;}
.yad_c00133{bottom:476.933333pt;}
.yac_c00133{bottom:477.893333pt;}
.yaa_c00133{bottom:485.893333pt;}
.yab_c00133{bottom:486.093333pt;}
.ya9_c00133{bottom:487.226667pt;}
.ya7_c00133{bottom:488.173333pt;}
.ya8_c00133{bottom:488.373333pt;}
.ya6_c00133{bottom:488.560000pt;}
.ya5_c00133{bottom:488.933333pt;}
.ya4_c00133{bottom:489.893333pt;}
.ya3_c00133{bottom:497.893333pt;}
.ya0_c00133{bottom:499.226667pt;}
.ya1_c00133{bottom:500.173333pt;}
.ya2_c00133{bottom:500.373333pt;}
.y9e_c00133{bottom:500.560000pt;}
.y9f_c00133{bottom:501.706667pt;}
.y9d_c00133{bottom:501.893333pt;}
.y9c_c00133{bottom:502.840000pt;}
.y9b_c00133{bottom:509.893333pt;}
.y9a_c00133{bottom:510.840000pt;}
.y99_c00133{bottom:511.426667pt;}
.y97_c00133{bottom:512.173333pt;}
.y98_c00133{bottom:512.373333pt;}
.y95_c00133{bottom:512.560000pt;}
.y96_c00133{bottom:513.706667pt;}
.y94_c00133{bottom:513.893333pt;}
.y93_c00133{bottom:514.840000pt;}
.y92_c00133{bottom:522.840000pt;}
.y8f_c00133{bottom:523.226667pt;}
.y90_c00133{bottom:524.173333pt;}
.y91_c00133{bottom:524.373333pt;}
.y8d_c00133{bottom:525.506667pt;}
.y8e_c00133{bottom:525.706667pt;}
.y8c_c00133{bottom:525.893333pt;}
.y8b_c00133{bottom:526.266667pt;}
.y8a_c00133{bottom:528.173333pt;}
.y89_c00133{bottom:533.893333pt;}
.y87_c00133{bottom:536.173333pt;}
.y88_c00133{bottom:536.373333pt;}
.y85_c00133{bottom:537.506667pt;}
.y86_c00133{bottom:537.706667pt;}
.y84_c00133{bottom:539.226667pt;}
.y83_c00133{bottom:540.173333pt;}
.y82_c00133{bottom:548.173333pt;}
.y81_c00133{bottom:548.560000pt;}
.y7f_c00133{bottom:549.506667pt;}
.y80_c00133{bottom:549.706667pt;}
.y7e_c00133{bottom:551.226667pt;}
.y7d_c00133{bottom:552.173333pt;}
.y7b_c00133{bottom:560.173333pt;}
.y7c_c00133{bottom:560.373333pt;}
.y79_c00133{bottom:560.560000pt;}
.y78_c00133{bottom:561.506667pt;}
.y7a_c00133{bottom:561.706667pt;}
.y76_c00133{bottom:562.840000pt;}
.y77_c00133{bottom:563.040000pt;}
.y75_c00133{bottom:563.226667pt;}
.y74_c00133{bottom:564.173333pt;}
.y73_c00133{bottom:572.173333pt;}
.y72_c00133{bottom:573.706667pt;}
.y6f_c00133{bottom:573.893333pt;}
.y71_c00133{bottom:574.840000pt;}
.y70_c00133{bottom:575.040000pt;}
.y6e_c00133{bottom:575.226667pt;}
.y6d_c00133{bottom:575.600000pt;}
.y6c_c00133{bottom:577.506667pt;}
.y6b_c00133{bottom:584.560000pt;}
.y6a_c00133{bottom:585.506667pt;}
.y69_c00133{bottom:585.893333pt;}
.y68_c00133{bottom:586.840000pt;}
.y67_c00133{bottom:589.506667pt;}
.y66_c00133{bottom:600.560000pt;}
.y65_c00133{bottom:601.506667pt;}
.y64_c00133{bottom:601.893333pt;}
.y63_c00133{bottom:604.173333pt;}
.y62_c00133{bottom:605.506667pt;}
.y60_c00133{bottom:612.560000pt;}
.y61_c00133{bottom:613.506667pt;}
.y5f_c00133{bottom:613.893333pt;}
.y5e_c00133{bottom:614.840000pt;}
.y5c_c00133{bottom:615.226667pt;}
.y5d_c00133{bottom:616.173333pt;}
.y5a_c00133{bottom:617.893333pt;}
.y5b_c00133{bottom:618.840000pt;}
.y59_c00133{bottom:625.506667pt;}
.y58_c00133{bottom:626.840000pt;}
.y57_c00133{bottom:628.173333pt;}
.y56_c00133{bottom:630.840000pt;}
.y55_c00133{bottom:650.640000pt;}
.y54_c00133{bottom:651.600000pt;}
.y50_c00133{bottom:661.693333pt;}
.y53_c00133{bottom:662.066667pt;}
.y52_c00133{bottom:662.640000pt;}
.y51_c00133{bottom:663.026667pt;}
.y4e_c00133{bottom:663.600000pt;}
.y4f_c00133{bottom:663.973333pt;}
.y4d_c00133{bottom:664.933333pt;}
.y4c_c00133{bottom:683.600000pt;}
.y4b_c00133{bottom:685.306667pt;}
.y4a_c00133{bottom:715.026667pt;}
.y48_c00133{bottom:715.773333pt;}
.y45_c00133{bottom:716.733333pt;}
.y47_c00133{bottom:717.693333pt;}
.y46_c00133{bottom:718.640000pt;}
.y49_c00133{bottom:719.026667pt;}
.y44_c00133{bottom:733.106667pt;}
.y40_c00133{bottom:734.440000pt;}
.y42_c00133{bottom:735.026667pt;}
.y41_c00133{bottom:735.973333pt;}
.y43_c00133{bottom:736.360000pt;}
.y3e_c00133{bottom:749.693333pt;}
.y3b_c00133{bottom:751.773333pt;}
.y3c_c00133{bottom:752.560000pt;}
.y3f_c00133{bottom:753.306667pt;}
.y3d_c00133{bottom:753.693333pt;}
.y39_c00133{bottom:769.106667pt;}
.y38_c00133{bottom:770.066667pt;}
.y37_c00133{bottom:771.026667pt;}
.y3a_c00133{bottom:771.973333pt;}
.y35_c00133{bottom:785.106667pt;}
.y36_c00133{bottom:785.306667pt;}
.y32_c00133{bottom:785.493333pt;}
.y33_c00133{bottom:786.440000pt;}
.y31_c00133{bottom:788.360000pt;}
.y34_c00133{bottom:789.306667pt;}
.y2e_c00133{bottom:803.773333pt;}
.y30_c00133{bottom:804.733333pt;}
.y2d_c00133{bottom:805.693333pt;}
.y2f_c00133{bottom:805.893333pt;}
.y2b_c00133{bottom:821.106667pt;}
.y2a_c00133{bottom:822.440000pt;}
.y29_c00133{bottom:823.026667pt;}
.y2c_c00133{bottom:823.226667pt;}
.y28_c00133{bottom:824.360000pt;}
.y27_c00133{bottom:838.440000pt;}
.y26_c00133{bottom:840.360000pt;}
.y24_c00133{bottom:840.560000pt;}
.y25_c00133{bottom:840.733333pt;}
.y22_c00133{bottom:855.773333pt;}
.y20_c00133{bottom:856.733333pt;}
.y1f_c00133{bottom:857.693333pt;}
.y21_c00133{bottom:858.640000pt;}
.y23_c00133{bottom:859.026667pt;}
.y1e_c00133{bottom:873.106667pt;}
.y19_c00133{bottom:874.440000pt;}
.y1b_c00133{bottom:875.026667pt;}
.y1d_c00133{bottom:875.226667pt;}
.y1c_c00133{bottom:875.400000pt;}
.y1a_c00133{bottom:876.360000pt;}
.y17_c00133{bottom:890.640000pt;}
.y16_c00133{bottom:891.773333pt;}
.y14_c00133{bottom:892.360000pt;}
.y18_c00133{bottom:892.560000pt;}
.y13_c00133{bottom:893.306667pt;}
.y15_c00133{bottom:893.693333pt;}
.y11_c00133{bottom:907.026667pt;}
.y12_c00133{bottom:907.973333pt;}
.yf_c00133{bottom:909.106667pt;}
.yd_c00133{bottom:909.893333pt;}
.y10_c00133{bottom:910.640000pt;}
.yc_c00133{bottom:911.026667pt;}
.ye_c00133{bottom:911.973333pt;}
.y7_c00133{bottom:926.440000pt;}
.yb_c00133{bottom:927.026667pt;}
.ya_c00133{bottom:927.400000pt;}
.y9_c00133{bottom:928.360000pt;}
.y8_c00133{bottom:929.306667pt;}
.y6_c00133{bottom:943.773333pt;}
.y4_c00133{bottom:944.560000pt;}
.y5_c00133{bottom:945.306667pt;}
.y3_c00133{bottom:945.693333pt;}
.y2_c00133{bottom:977.693333pt;}
.y1_c00133{bottom:980.560000pt;}
.h9_c00133{height:3.739141pt;}
.ha_c00133{height:7.412682pt;}
.hc_c00133{height:12.988594pt;}
.h8_c00133{height:14.890964pt;}
.hb_c00133{height:20.224297pt;}
.h1_c00133{height:20.466875pt;}
.h7_c00133{height:22.303646pt;}
.h3_c00133{height:27.879557pt;}
.h2_c00133{height:31.618698pt;}
.h5_c00133{height:35.357839pt;}
.h4_c00133{height:39.031380pt;}
.h6_c00133{height:42.770521pt;}
.h0_c00133{height:1186.666667pt;}
.w0_c00133{width:782.666667pt;}
.x0_c00133{left:0.000000pt;}
.x3_c00133{left:136.373333pt;}
.x2_c00133{left:137.706667pt;}
.xa8_c00133{left:144.960000pt;}
.x97_c00133{left:146.666667pt;}
.x5e_c00133{left:151.040000pt;}
.x28_c00133{left:155.040000pt;}
.xc1_c00133{left:156.000000pt;}
.xbb_c00133{left:157.706667pt;}
.x4c_c00133{left:161.706667pt;}
.xb9_c00133{left:165.333333pt;}
.x9d_c00133{left:166.293333pt;}
.xb6_c00133{left:169.706667pt;}
.x3f_c00133{left:170.666667pt;}
.x4_c00133{left:172.960000pt;}
.x7e_c00133{left:174.666667pt;}
.x1b_c00133{left:179.626667pt;}
.x54_c00133{left:182.666667pt;}
.xc6_c00133{left:184.000000pt;}
.xc5_c00133{left:188.000000pt;}
.x8d_c00133{left:189.706667pt;}
.x6e_c00133{left:192.373333pt;}
.x5_c00133{left:193.706667pt;}
.xd1_c00133{left:194.666667pt;}
.xc3_c00133{left:196.000000pt;}
.x55_c00133{left:197.333333pt;}
.x12_c00133{left:198.666667pt;}
.x5f_c00133{left:201.706667pt;}
.x75_c00133{left:202.666667pt;}
.xc7_c00133{left:204.373333pt;}
.xae_c00133{left:205.333333pt;}
.xb2_c00133{left:206.666667pt;}
.xcb_c00133{left:208.000000pt;}
.xbe_c00133{left:208.960000pt;}
.x40_c00133{left:213.333333pt;}
.x8e_c00133{left:214.666667pt;}
.x7f_c00133{left:216.000000pt;}
.x1c_c00133{left:217.706667pt;}
.x6_c00133{left:220.373333pt;}
.x34_c00133{left:221.333333pt;}
.xb3_c00133{left:222.293333pt;}
.x13_c00133{left:224.960000pt;}
.x76_c00133{left:226.666667pt;}
.x85_c00133{left:228.000000pt;}
.x41_c00133{left:230.666667pt;}
.xcf_c00133{left:232.000000pt;}
.x29_c00133{left:232.960000pt;}
.x35_c00133{left:235.626667pt;}
.xc0_c00133{left:237.706667pt;}
.xd0_c00133{left:238.666667pt;}
.xcc_c00133{left:240.000000pt;}
.x77_c00133{left:241.333333pt;}
.x4d_c00133{left:244.373333pt;}
.x8f_c00133{left:245.333333pt;}
.x80_c00133{left:248.960000pt;}
.x1d_c00133{left:255.626667pt;}
.x60_c00133{left:258.666667pt;}
.x56_c00133{left:261.706667pt;}
.x2a_c00133{left:262.666667pt;}
.x81_c00133{left:265.333333pt;}
.x1e_c00133{left:272.000000pt;}
.x7_c00133{left:272.960000pt;}
.x86_c00133{left:279.040000pt;}
.x78_c00133{left:281.333333pt;}
.x4e_c00133{left:282.293333pt;}
.x67_c00133{left:287.626667pt;}
.x82_c00133{left:289.333333pt;}
.x36_c00133{left:292.373333pt;}
.x2b_c00133{left:301.706667pt;}
.x8_c00133{left:302.666667pt;}
.x57_c00133{left:305.706667pt;}
.x14_c00133{left:306.666667pt;}
.x6f_c00133{left:309.333333pt;}
.x42_c00133{left:310.293333pt;}
.x9e_c00133{left:312.373333pt;}
.xb8_c00133{left:313.333333pt;}
.x98_c00133{left:314.666667pt;}
.xc8_c00133{left:317.333333pt;}
.x61_c00133{left:321.333333pt;}
.xa4_c00133{left:322.666667pt;}
.x9_c00133{left:324.373333pt;}
.x79_c00133{left:325.706667pt;}
.x2c_c00133{left:326.666667pt;}
.x4f_c00133{left:328.373333pt;}
.x1f_c00133{left:331.040000pt;}
.x87_c00133{left:335.626667pt;}
.x58_c00133{left:337.706667pt;}
.x90_c00133{left:342.666667pt;}
.x43_c00133{left:344.000000pt;}
.x9f_c00133{left:348.000000pt;}
.xa_c00133{left:349.333333pt;}
.x95_c00133{left:350.666667pt;}
.x83_c00133{left:352.000000pt;}
.x1_c00133{left:356.000000pt;}
.xb7_c00133{left:357.333333pt;}
.xaf_c00133{left:358.666667pt;}
.x68_c00133{left:360.000000pt;}
.x2d_c00133{left:360.960000pt;}
.x7a_c00133{left:363.040000pt;}
.x91_c00133{left:365.333333pt;}
.x8c_c00133{left:366.666667pt;}
.x37_c00133{left:367.626667pt;}
.x20_c00133{left:370.666667pt;}
.x69_c00133{left:375.626667pt;}
.x15_c00133{left:377.333333pt;}
.x2e_c00133{left:379.040000pt;}
.xd2_c00133{left:380.000000pt;}
.x96_c00133{left:381.333333pt;}
.xa9_c00133{left:382.666667pt;}
.xa0_c00133{left:384.000000pt;}
.x99_c00133{left:386.666667pt;}
.x44_c00133{left:389.333333pt;}
.xa5_c00133{left:391.040000pt;}
.x88_c00133{left:392.000000pt;}
.x16_c00133{left:393.333333pt;}
.x38_c00133{left:396.000000pt;}
.x59_c00133{left:402.666667pt;}
.x2f_c00133{left:404.000000pt;}
.x21_c00133{left:408.000000pt;}
.xa1_c00133{left:411.626667pt;}
.x45_c00133{left:413.333333pt;}
.xaa_c00133{left:414.666667pt;}
.x62_c00133{left:417.333333pt;}
.x70_c00133{left:419.626667pt;}
.x6a_c00133{left:421.333333pt;}
.x92_c00133{left:424.373333pt;}
.x50_c00133{left:428.000000pt;}
.x5a_c00133{left:429.333333pt;}
.xb_c00133{left:430.666667pt;}
.x22_c00133{left:432.000000pt;}
.x39_c00133{left:438.293333pt;}
.x93_c00133{left:439.240000pt;}
.x30_c00133{left:444.000000pt;}
.x17_c00133{left:446.666667pt;}
.x46_c00133{left:447.626667pt;}
.xbf_c00133{left:449.333333pt;}
.x9a_c00133{left:450.666667pt;}
.x71_c00133{left:451.626667pt;}
.x84_c00133{left:453.333333pt;}
.xb0_c00133{left:458.666667pt;}
.x5b_c00133{left:461.333333pt;}
.x47_c00133{left:464.000000pt;}
.x3a_c00133{left:466.666667pt;}
.x63_c00133{left:468.000000pt;}
.x23_c00133{left:471.626667pt;}
.x6b_c00133{left:473.333333pt;}
.x31_c00133{left:477.333333pt;}
.x3b_c00133{left:478.666667pt;}
.x18_c00133{left:481.333333pt;}
.xab_c00133{left:482.666667pt;}
.xc9_c00133{left:485.333333pt;}
.x9b_c00133{left:486.666667pt;}
.x48_c00133{left:489.706667pt;}
.x64_c00133{left:493.706667pt;}
.x51_c00133{left:499.040000pt;}
.xc_c00133{left:501.333333pt;}
.x24_c00133{left:502.666667pt;}
.x7b_c00133{left:504.000000pt;}
.x89_c00133{left:505.706667pt;}
.x72_c00133{left:507.040000pt;}
.x3c_c00133{left:514.666667pt;}
.xa2_c00133{left:516.373333pt;}
.xbc_c00133{left:517.333333pt;}
.xac_c00133{left:518.666667pt;}
.xd_c00133{left:520.373333pt;}
.xca_c00133{left:521.333333pt;}
.xb1_c00133{left:526.666667pt;}
.x52_c00133{left:528.373333pt;}
.x8a_c00133{left:529.333333pt;}
.x49_c00133{left:530.666667pt;}
.x73_c00133{left:532.373333pt;}
.x5c_c00133{left:533.333333pt;}
.x65_c00133{left:544.000000pt;}
.xe_c00133{left:547.040000pt;}
.x6c_c00133{left:548.373333pt;}
.xd3_c00133{left:552.000000pt;}
.xba_c00133{left:553.333333pt;}
.x5d_c00133{left:554.293333pt;}
.xb4_c00133{left:556.000000pt;}
.x7c_c00133{left:557.333333pt;}
.x66_c00133{left:560.373333pt;}
.x94_c00133{left:561.333333pt;}
.xa6_c00133{left:562.666667pt;}
.x3d_c00133{left:564.000000pt;}
.x25_c00133{left:566.666667pt;}
.x19_c00133{left:577.706667pt;}
.xf_c00133{left:579.626667pt;}
.x74_c00133{left:583.040000pt;}
.x26_c00133{left:584.000000pt;}
.xa3_c00133{left:588.373333pt;}
.xc2_c00133{left:589.333333pt;}
.x6d_c00133{left:591.040000pt;}
.xad_c00133{left:592.000000pt;}
.xcd_c00133{left:593.333333pt;}
.x4a_c00133{left:595.040000pt;}
.xc4_c00133{left:597.333333pt;}
.x10_c00133{left:599.040000pt;}
.x7d_c00133{left:601.333333pt;}
.x3e_c00133{left:603.040000pt;}
.x53_c00133{left:607.040000pt;}
.x27_c00133{left:608.000000pt;}
.x32_c00133{left:609.333333pt;}
.x8b_c00133{left:613.333333pt;}
.x1a_c00133{left:617.333333pt;}
.x4b_c00133{left:618.666667pt;}
.x33_c00133{left:623.040000pt;}
.x11_c00133{left:624.373333pt;}
.xbd_c00133{left:625.333333pt;}
.x9c_c00133{left:626.666667pt;}
.xb5_c00133{left:628.373333pt;}
.xce_c00133{left:629.333333pt;}
.xa7_c00133{left:634.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_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_d62fabf84ba9f27f0d539fe3.woff2')format("woff");}.ff1_c00134{font-family:ff1_c00134;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma6_c00134{transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);}
.m9c_c00134{transform:matrix(0.354360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354360,0.000000,0.000000,0.250000,0,0);}
.m29_c00134{transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);}
.m6f_c00134{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mb2_c00134{transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);}
.m92_c00134{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.m8a_c00134{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m67_c00134{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mf4_c00134{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.mc9_c00134{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m75_c00134{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mc2_c00134{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m90_c00134{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.mbc_c00134{transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);}
.maa_c00134{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m64_c00134{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.mbe_c00134{transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);}
.m5b_c00134{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m44_c00134{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m63_c00134{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.me5_c00134{transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);}
.mad_c00134{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.meb_c00134{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m4c_c00134{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m2f_c00134{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m8e_c00134{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m78_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);}
.mfb_c00134{transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);}
.m14_c00134{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.med_c00134{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.mfa_c00134{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.m38_c00134{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.m5e_c00134{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m6_c00134{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.md8_c00134{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m68_c00134{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mb4_c00134{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.m17_c00134{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mf0_c00134{transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);}
.m69_c00134{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m6a_c00134{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.m4d_c00134{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m95_c00134{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.md5_c00134{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m10_c00134{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m43_c00134{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m49_c00134{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m26_c00134{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m7_c00134{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.me7_c00134{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m39_c00134{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mb3_c00134{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m30_c00134{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m8b_c00134{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.mab_c00134{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mf8_c00134{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.mb0_c00134{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.mc4_c00134{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m8d_c00134{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.m32_c00134{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m9e_c00134{transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);}
.mb_c00134{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.mce_c00134{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.mb6_c00134{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m87_c00134{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m2_c00134{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m99_c00134{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m1c_c00134{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m4e_c00134{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m33_c00134{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.ma3_c00134{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mac_c00134{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m100_c00134{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m94_c00134{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.mbf_c00134{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m28_c00134{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m35_c00134{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mcd_c00134{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m81_c00134{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.mcf_c00134{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.ma0_c00134{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m84_c00134{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.me8_c00134{transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);}
.m6e_c00134{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mbd_c00134{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m2d_c00134{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.ma8_c00134{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m7f_c00134{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.m7b_c00134{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m3f_c00134{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m77_c00134{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.ma1_c00134{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.ma5_c00134{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m22_c00134{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.m3d_c00134{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.m66_c00134{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.ma7_c00134{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m96_c00134{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m2a_c00134{transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);}
.m98_c00134{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.mc0_c00134{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m88_c00134{transform:matrix(0.469748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469748,0.000000,0.000000,0.250000,0,0);}
.md6_c00134{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.mf2_c00134{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m2e_c00134{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m52_c00134{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mcc_c00134{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.mf5_c00134{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m70_c00134{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mf9_c00134{transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);}
.m9f_c00134{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m65_c00134{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mee_c00134{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m0_c00134{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m57_c00134{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mc3_c00134{transform:matrix(0.492115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492115,0.000000,0.000000,0.250000,0,0);}
.m3e_c00134{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m48_c00134{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.mde_c00134{transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);}
.mae_c00134{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m1a_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);}
.m97_c00134{transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);}
.m83_c00134{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.me9_c00134{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m20_c00134{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m62_c00134{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m91_c00134{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m13_c00134{transform:matrix(0.510668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510668,0.000000,0.000000,0.250000,0,0);}
.m50_c00134{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mda_c00134{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.maf_c00134{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.mc_c00134{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m51_c00134{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m6b_c00134{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m101_c00134{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.me6_c00134{transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);}
.m8_c00134{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.ma2_c00134{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m5c_c00134{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m85_c00134{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mc6_c00134{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m72_c00134{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m60_c00134{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m1e_c00134{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m3_c00134{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m73_c00134{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mef_c00134{transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);}
.m25_c00134{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m41_c00134{transform:matrix(0.528293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528293,0.000000,0.000000,0.250000,0,0);}
.mba_c00134{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m23_c00134{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mc8_c00134{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m34_c00134{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m79_c00134{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m5_c00134{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m76_c00134{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m7e_c00134{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.md2_c00134{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m45_c00134{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.md3_c00134{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m56_c00134{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.ma4_c00134{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m82_c00134{transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);}
.mb8_c00134{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.me4_c00134{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m42_c00134{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mf1_c00134{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m71_c00134{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m46_c00134{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m7d_c00134{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m4b_c00134{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m1b_c00134{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m59_c00134{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.me3_c00134{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m1d_c00134{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m9b_c00134{transform:matrix(0.548824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548824,0.000000,0.000000,0.250000,0,0);}
.md9_c00134{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.ma_c00134{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m93_c00134{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.ma9_c00134{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m4_c00134{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m12_c00134{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mcb_c00134{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m47_c00134{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mdc_c00134{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m4a_c00134{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m16_c00134{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mdf_c00134{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mca_c00134{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.m37_c00134{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m9a_c00134{transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);}
.m1f_c00134{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.mfd_c00134{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.mc5_c00134{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.md_c00134{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.md4_c00134{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m3b_c00134{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m2b_c00134{transform:matrix(0.574675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574675,0.000000,0.000000,0.250000,0,0);}
.m3c_c00134{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m40_c00134{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mc7_c00134{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mff_c00134{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);}
.md7_c00134{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.me2_c00134{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mf7_c00134{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m5a_c00134{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m27_c00134{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m36_c00134{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m80_c00134{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.mdd_c00134{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m3a_c00134{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m89_c00134{transform:matrix(0.603216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603216,0.000000,0.000000,0.250000,0,0);}
.m1_c00134{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m8c_c00134{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m74_c00134{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.md0_c00134{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.mb9_c00134{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.mf_c00134{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m53_c00134{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.me_c00134{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m4f_c00134{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m54_c00134{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.mea_c00134{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m86_c00134{transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);}
.m55_c00134{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mb1_c00134{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mf6_c00134{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.md1_c00134{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m15_c00134{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m2c_c00134{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.me1_c00134{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);}
.me0_c00134{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m18_c00134{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m9_c00134{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m31_c00134{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mf3_c00134{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m9d_c00134{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m19_c00134{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.mb7_c00134{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mfc_c00134{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);}
.m8f_c00134{transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);}
.m5d_c00134{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mbb_c00134{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m5f_c00134{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m7a_c00134{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m21_c00134{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mc1_c00134{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m11_c00134{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m6c_c00134{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m24_c00134{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m58_c00134{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.mdb_c00134{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m6d_c00134{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m7c_c00134{transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);}
.mb5_c00134{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mec_c00134{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mfe_c00134{transform:matrix(0.957048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.957048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.957048,0.000000,0.000000,0.250000,0,0);}
.m61_c00134{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00134{vertical-align:0.000000px;}
.ls0_c00134{letter-spacing:0.000000px;}
.sc__c00134{text-shadow:none;}
.sc0_c00134{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00134{-webkit-text-stroke:0px transparent;}
.sc0_c00134{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00134{word-spacing:-6.184625px;}
.ws1_c00134{word-spacing:-4.881835px;}
.ws2_c00134{word-spacing:0.000000px;}
.fc0_c00134{color:transparent;}
.fs6_c00134{font-size:3.420000px;}
.fs8_c00134{font-size:13.620000px;}
.fs4_c00134{font-size:18.720000px;}
.fs1_c00134{font-size:20.400000px;}
.fs5_c00134{font-size:25.500000px;}
.fs0_c00134{font-size:28.920000px;}
.fs3_c00134{font-size:32.340000px;}
.fs2_c00134{font-size:35.700000px;}
.fs7_c00134{font-size:39.120000px;}
.y0_c00134{bottom:0.000000px;}
.yba_c00134{bottom:250.470000px;}
.yb9_c00134{bottom:251.325000px;}
.yb8_c00134{bottom:253.470000px;}
.yb7_c00134{bottom:253.695000px;}
.yb1_c00134{bottom:265.470000px;}
.yb3_c00134{bottom:266.325000px;}
.yb6_c00134{bottom:267.405000px;}
.yb2_c00134{bottom:268.470000px;}
.yb5_c00134{bottom:268.695000px;}
.yb4_c00134{bottom:269.550000px;}
.yaf_c00134{bottom:280.470000px;}
.yae_c00134{bottom:281.325000px;}
.yab_c00134{bottom:283.470000px;}
.yad_c00134{bottom:283.695000px;}
.yac_c00134{bottom:283.905000px;}
.yb0_c00134{bottom:284.550000px;}
.ya8_c00134{bottom:295.470000px;}
.ya6_c00134{bottom:296.325000px;}
.ya7_c00134{bottom:298.470000px;}
.ya5_c00134{bottom:298.695000px;}
.yaa_c00134{bottom:298.905000px;}
.ya9_c00134{bottom:299.550000px;}
.ya4_c00134{bottom:311.325000px;}
.ya0_c00134{bottom:311.550000px;}
.ya2_c00134{bottom:312.405000px;}
.ya1_c00134{bottom:313.470000px;}
.ya3_c00134{bottom:314.550000px;}
.y9d_c00134{bottom:327.405000px;}
.y9b_c00134{bottom:327.630000px;}
.y9f_c00134{bottom:328.050000px;}
.y9c_c00134{bottom:328.470000px;}
.y9e_c00134{bottom:329.550000px;}
.y9a_c00134{bottom:350.745000px;}
.y99_c00134{bottom:351.630000px;}
.y98_c00134{bottom:352.905000px;}
.y94_c00134{bottom:370.245000px;}
.y93_c00134{bottom:371.130000px;}
.y96_c00134{bottom:371.325000px;}
.y95_c00134{bottom:372.405000px;}
.y97_c00134{bottom:372.630000px;}
.y91_c00134{bottom:389.745000px;}
.y8f_c00134{bottom:391.905000px;}
.y90_c00134{bottom:391.920000px;}
.y92_c00134{bottom:392.970000px;}
.y8d_c00134{bottom:410.325000px;}
.y8e_c00134{bottom:411.405000px;}
.y8b_c00134{bottom:428.745000px;}
.y8c_c00134{bottom:429.825000px;}
.y8a_c00134{bottom:430.905000px;}
.y86_c00134{bottom:447.405000px;}
.y87_c00134{bottom:448.245000px;}
.y84_c00134{bottom:450.405000px;}
.y89_c00134{bottom:451.470000px;}
.y88_c00134{bottom:451.905000px;}
.y85_c00134{bottom:451.920000px;}
.y82_c00134{bottom:468.825000px;}
.y81_c00134{bottom:469.245000px;}
.y83_c00134{bottom:469.905000px;}
.y7f_c00134{bottom:470.130000px;}
.y7e_c00134{bottom:471.405000px;}
.y80_c00134{bottom:471.420000px;}
.y79_c00134{bottom:487.680000px;}
.y7d_c00134{bottom:487.905000px;}
.y7c_c00134{bottom:488.745000px;}
.y7b_c00134{bottom:489.825000px;}
.y7a_c00134{bottom:490.920000px;}
.y75_c00134{bottom:508.245000px;}
.y77_c00134{bottom:509.130000px;}
.y78_c00134{bottom:509.970000px;}
.y76_c00134{bottom:510.405000px;}
.y72_c00134{bottom:527.745000px;}
.y6f_c00134{bottom:528.630000px;}
.y70_c00134{bottom:528.825000px;}
.y71_c00134{bottom:529.905000px;}
.y74_c00134{bottom:530.130000px;}
.y73_c00134{bottom:530.970000px;}
.y6c_c00134{bottom:547.245000px;}
.y6e_c00134{bottom:548.325000px;}
.y6b_c00134{bottom:549.405000px;}
.y6d_c00134{bottom:550.470000px;}
.y66_c00134{bottom:566.745000px;}
.y6a_c00134{bottom:567.825000px;}
.y68_c00134{bottom:568.905000px;}
.y69_c00134{bottom:569.970000px;}
.y67_c00134{bottom:570.420000px;}
.y65_c00134{bottom:589.470000px;}
.y64_c00134{bottom:589.905000px;}
.y62_c00134{bottom:603.825000px;}
.y60_c00134{bottom:604.905000px;}
.y61_c00134{bottom:605.970000px;}
.y63_c00134{bottom:606.630000px;}
.y5d_c00134{bottom:626.970000px;}
.y5c_c00134{bottom:627.825000px;}
.y5f_c00134{bottom:629.130000px;}
.y5e_c00134{bottom:629.970000px;}
.y5a_c00134{bottom:652.245000px;}
.y5b_c00134{bottom:654.405000px;}
.y59_c00134{bottom:686.745000px;}
.y58_c00134{bottom:688.905000px;}
.y57_c00134{bottom:706.245000px;}
.y56_c00134{bottom:708.825000px;}
.y55_c00134{bottom:709.905000px;}
.y52_c00134{bottom:727.245000px;}
.y53_c00134{bottom:728.130000px;}
.y54_c00134{bottom:728.325000px;}
.y51_c00134{bottom:729.405000px;}
.y50_c00134{bottom:746.745000px;}
.y4d_c00134{bottom:747.405000px;}
.y4e_c00134{bottom:748.470000px;}
.y4f_c00134{bottom:748.905000px;}
.y4b_c00134{bottom:765.825000px;}
.y4c_c00134{bottom:766.245000px;}
.y4a_c00134{bottom:767.130000px;}
.y49_c00134{bottom:768.405000px;}
.y44_c00134{bottom:785.745000px;}
.y46_c00134{bottom:786.825000px;}
.y45_c00134{bottom:787.905000px;}
.y47_c00134{bottom:788.130000px;}
.y48_c00134{bottom:788.970000px;}
.y42_c00134{bottom:805.245000px;}
.y43_c00134{bottom:806.745000px;}
.y40_c00134{bottom:807.405000px;}
.y41_c00134{bottom:808.920000px;}
.y3f_c00134{bottom:824.970000px;}
.y3e_c00134{bottom:826.905000px;}
.y3d_c00134{bottom:827.970000px;}
.y3a_c00134{bottom:844.245000px;}
.y3c_c00134{bottom:845.745000px;}
.y38_c00134{bottom:846.405000px;}
.y3b_c00134{bottom:846.630000px;}
.y39_c00134{bottom:847.470000px;}
.y37_c00134{bottom:847.905000px;}
.y35_c00134{bottom:862.905000px;}
.y32_c00134{bottom:863.970000px;}
.y34_c00134{bottom:865.905000px;}
.y36_c00134{bottom:866.130000px;}
.y33_c00134{bottom:866.550000px;}
.y31_c00134{bottom:866.970000px;}
.y30_c00134{bottom:867.405000px;}
.y2c_c00134{bottom:884.745000px;}
.y2f_c00134{bottom:885.825000px;}
.y2e_c00134{bottom:886.470000px;}
.y2d_c00134{bottom:886.905000px;}
.y28_c00134{bottom:904.245000px;}
.y2a_c00134{bottom:905.130000px;}
.y2b_c00134{bottom:905.970000px;}
.y29_c00134{bottom:906.405000px;}
.y26_c00134{bottom:923.745000px;}
.y25_c00134{bottom:924.825000px;}
.y24_c00134{bottom:925.905000px;}
.y27_c00134{bottom:926.970000px;}
.y22_c00134{bottom:943.245000px;}
.y21_c00134{bottom:944.130000px;}
.y20_c00134{bottom:944.325000px;}
.y1f_c00134{bottom:945.405000px;}
.y23_c00134{bottom:945.630000px;}
.y1a_c00134{bottom:962.745000px;}
.y1d_c00134{bottom:963.825000px;}
.y1b_c00134{bottom:964.470000px;}
.y1c_c00134{bottom:964.905000px;}
.y1e_c00134{bottom:965.130000px;}
.y16_c00134{bottom:982.245000px;}
.y17_c00134{bottom:983.325000px;}
.y18_c00134{bottom:983.970000px;}
.y15_c00134{bottom:984.405000px;}
.y19_c00134{bottom:984.630000px;}
.y12_c00134{bottom:1001.745000px;}
.y14_c00134{bottom:1002.825000px;}
.y11_c00134{bottom:1003.905000px;}
.y13_c00134{bottom:1004.130000px;}
.yd_c00134{bottom:1021.245000px;}
.yc_c00134{bottom:1023.405000px;}
.yf_c00134{bottom:1023.630000px;}
.ye_c00134{bottom:1024.470000px;}
.y10_c00134{bottom:1024.905000px;}
.y9_c00134{bottom:1040.745000px;}
.yb_c00134{bottom:1041.825000px;}
.y7_c00134{bottom:1042.905000px;}
.ya_c00134{bottom:1043.130000px;}
.y8_c00134{bottom:1043.970000px;}
.y3_c00134{bottom:1061.745000px;}
.y6_c00134{bottom:1062.630000px;}
.y5_c00134{bottom:1062.825000px;}
.y4_c00134{bottom:1063.905000px;}
.y1_c00134{bottom:1099.905000px;}
.y2_c00134{bottom:1102.050000px;}
.h7_c00134{height:4.206533px;}
.h9_c00134{height:16.752334px;}
.h5_c00134{height:23.025234px;}
.h2_c00134{height:25.091602px;}
.h6_c00134{height:31.364502px;}
.h1_c00134{height:35.571035px;}
.h4_c00134{height:39.777568px;}
.h3_c00134{height:43.910303px;}
.h8_c00134{height:48.116836px;}
.h0_c00134{height:1335.000000px;}
.w0_c00134{width:880.500000px;}
.x0_c00134{left:0.000000px;}
.x3_c00134{left:151.500000px;}
.x74_c00134{left:153.420000px;}
.xc7_c00134{left:154.500000px;}
.xe7_c00134{left:156.000000px;}
.xff_c00134{left:157.500000px;}
.xab_c00134{left:163.920000px;}
.xf0_c00134{left:166.500000px;}
.x7c_c00134{left:168.000000px;}
.xb2_c00134{left:169.500000px;}
.x81_c00134{left:171.000000px;}
.xe1_c00134{left:172.080000px;}
.x11_c00134{left:178.500000px;}
.x53_c00134{left:180.000000px;}
.x75_c00134{left:183.420000px;}
.x9f_c00134{left:186.420000px;}
.xed_c00134{left:187.500000px;}
.x33_c00134{left:189.000000px;}
.xce_c00134{left:190.080000px;}
.x99_c00134{left:193.500000px;}
.xb7_c00134{left:194.580000px;}
.x90_c00134{left:196.500000px;}
.x48_c00134{left:198.000000px;}
.x5e_c00134{left:201.000000px;}
.x2a_c00134{left:202.500000px;}
.xf1_c00134{left:205.500000px;}
.x3f_c00134{left:209.580000px;}
.xe8_c00134{left:211.500000px;}
.x9a_c00134{left:214.920000px;}
.x82_c00134{left:216.420000px;}
.x4_c00134{left:217.500000px;}
.x1d_c00134{left:222.420000px;}
.x12_c00134{left:224.580000px;}
.x69_c00134{left:226.920000px;}
.x89_c00134{left:228.000000px;}
.x100_c00134{left:229.080000px;}
.xb8_c00134{left:232.920000px;}
.x54_c00134{left:235.080000px;}
.x83_c00134{left:237.000000px;}
.x49_c00134{left:238.080000px;}
.xdf_c00134{left:239.580000px;}
.x34_c00134{left:241.500000px;}
.x13_c00134{left:243.000000px;}
.x91_c00134{left:244.500000px;}
.xeb_c00134{left:245.580000px;}
.x5f_c00134{left:249.420000px;}
.xac_c00134{left:251.580000px;}
.x40_c00134{left:253.500000px;}
.xd4_c00134{left:255.000000px;}
.xb9_c00134{left:256.500000px;}
.xf6_c00134{left:258.000000px;}
.x84_c00134{left:259.500000px;}
.x2b_c00134{left:262.920000px;}
.xd7_c00134{left:264.000000px;}
.x6a_c00134{left:265.500000px;}
.x5_c00134{left:270.420000px;}
.x1e_c00134{left:271.500000px;}
.xe2_c00134{left:272.580000px;}
.xba_c00134{left:274.500000px;}
.xcf_c00134{left:276.420000px;}
.xdb_c00134{left:280.500000px;}
.x60_c00134{left:281.580000px;}
.x76_c00134{left:282.855000px;}
.x35_c00134{left:283.920000px;}
.x4a_c00134{left:285.000000px;}
.x55_c00134{left:289.920000px;}
.xf7_c00134{left:292.080000px;}
.x6b_c00134{left:293.580000px;}
.xbb_c00134{left:295.080000px;}
.xfa_c00134{left:297.420000px;}
.x41_c00134{left:298.500000px;}
.x92_c00134{left:300.000000px;}
.x14_c00134{left:301.500000px;}
.x101_c00134{left:302.580000px;}
.x6_c00134{left:304.920000px;}
.x4b_c00134{left:306.420000px;}
.xc1_c00134{left:307.500000px;}
.x1f_c00134{left:310.500000px;}
.x9b_c00134{left:313.920000px;}
.xdc_c00134{left:315.000000px;}
.x56_c00134{left:316.500000px;}
.xc8_c00134{left:318.000000px;}
.xec_c00134{left:319.920000px;}
.x8a_c00134{left:322.080000px;}
.x2c_c00134{left:324.000000px;}
.x61_c00134{left:327.420000px;}
.x7_c00134{left:330.000000px;}
.xa5_c00134{left:331.500000px;}
.x36_c00134{left:333.000000px;}
.xad_c00134{left:334.920000px;}
.xa0_c00134{left:339.000000px;}
.x2d_c00134{left:340.500000px;}
.x4c_c00134{left:342.000000px;}
.x77_c00134{left:343.500000px;}
.x6c_c00134{left:344.580000px;}
.x9c_c00134{left:346.500000px;}
.x20_c00134{left:347.580000px;}
.xe0_c00134{left:348.645000px;}
.xbc_c00134{left:350.145000px;}
.x8b_c00134{left:354.000000px;}
.x93_c00134{left:355.500000px;}
.xe9_c00134{left:358.080000px;}
.x62_c00134{left:360.000000px;}
.x4d_c00134{left:363.420000px;}
.xf8_c00134{left:364.500000px;}
.x21_c00134{left:367.920000px;}
.xe3_c00134{left:369.000000px;}
.xa1_c00134{left:370.920000px;}
.x15_c00134{left:373.500000px;}
.x37_c00134{left:378.420000px;}
.x94_c00134{left:380.580000px;}
.xd8_c00134{left:382.920000px;}
.x8_c00134{left:384.420000px;}
.xdd_c00134{left:385.500000px;}
.xc2_c00134{left:388.500000px;}
.x4e_c00134{left:391.500000px;}
.x6d_c00134{left:393.000000px;}
.xf9_c00134{left:394.920000px;}
.x2_c00134{left:397.500000px;}
.x16_c00134{left:400.500000px;}
.xa2_c00134{left:402.000000px;}
.x38_c00134{left:404.580000px;}
.xf2_c00134{left:406.080000px;}
.xc3_c00134{left:407.580000px;}
.x63_c00134{left:409.500000px;}
.x42_c00134{left:411.000000px;}
.x95_c00134{left:412.920000px;}
.x6e_c00134{left:414.420000px;}
.x78_c00134{left:418.500000px;}
.xd2_c00134{left:421.500000px;}
.x2e_c00134{left:427.080000px;}
.x85_c00134{left:430.920000px;}
.xbd_c00134{left:432.000000px;}
.x22_c00134{left:433.080000px;}
.xd0_c00134{left:434.145000px;}
.x57_c00134{left:435.420000px;}
.xfb_c00134{left:437.580000px;}
.x17_c00134{left:440.580000px;}
.x79_c00134{left:442.500000px;}
.x39_c00134{left:444.000000px;}
.xea_c00134{left:445.500000px;}
.x9_c00134{left:447.420000px;}
.xb3_c00134{left:448.500000px;}
.x96_c00134{left:450.000000px;}
.xee_c00134{left:451.080000px;}
.x7d_c00134{left:454.500000px;}
.xd5_c00134{left:460.500000px;}
.x7a_c00134{left:461.580000px;}
.xd9_c00134{left:463.080000px;}
.xfc_c00134{left:465.000000px;}
.x23_c00134{left:466.080000px;}
.x8c_c00134{left:468.420000px;}
.x18_c00134{left:471.000000px;}
.xa_c00134{left:472.500000px;}
.xa6_c00134{left:475.500000px;}
.xef_c00134{left:478.500000px;}
.x9d_c00134{left:479.580000px;}
.x2f_c00134{left:481.500000px;}
.x7e_c00134{left:483.000000px;}
.xd3_c00134{left:484.275000px;}
.x7b_c00134{left:486.000000px;}
.x97_c00134{left:487.920000px;}
.x64_c00134{left:489.000000px;}
.xc9_c00134{left:490.275000px;}
.x3a_c00134{left:499.500000px;}
.x86_c00134{left:501.420000px;}
.x43_c00134{left:504.000000px;}
.xe4_c00134{left:505.500000px;}
.x8d_c00134{left:507.000000px;}
.xae_c00134{left:508.080000px;}
.xa7_c00134{left:510.420000px;}
.x24_c00134{left:513.420000px;}
.x19_c00134{left:516.420000px;}
.xb_c00134{left:519.000000px;}
.xaa_c00134{left:520.080000px;}
.xfd_c00134{left:521.145000px;}
.xbe_c00134{left:523.080000px;}
.x3b_c00134{left:525.000000px;}
.x65_c00134{left:526.500000px;}
.x87_c00134{left:529.920000px;}
.x6f_c00134{left:532.500000px;}
.xc_c00134{left:537.000000px;}
.x30_c00134{left:544.080000px;}
.x44_c00134{left:546.000000px;}
.xc4_c00134{left:548.580000px;}
.xb4_c00134{left:550.500000px;}
.x8e_c00134{left:552.000000px;}
.x25_c00134{left:556.500000px;}
.x58_c00134{left:558.420000px;}
.xaf_c00134{left:560.580000px;}
.x9e_c00134{left:567.000000px;}
.xd_c00134{left:568.500000px;}
.x66_c00134{left:571.500000px;}
.xf3_c00134{left:572.580000px;}
.x70_c00134{left:576.000000px;}
.xbf_c00134{left:577.275000px;}
.x26_c00134{left:579.420000px;}
.x3c_c00134{left:580.920000px;}
.x4f_c00134{left:582.420000px;}
.xe_c00134{left:585.420000px;}
.xe5_c00134{left:586.500000px;}
.xb0_c00134{left:588.000000px;}
.x88_c00134{left:589.080000px;}
.xde_c00134{left:592.500000px;}
.x59_c00134{left:594.000000px;}
.x1a_c00134{left:595.500000px;}
.xf4_c00134{left:600.000000px;}
.xd6_c00134{left:601.080000px;}
.xfe_c00134{left:604.080000px;}
.xc5_c00134{left:607.500000px;}
.xca_c00134{left:609.000000px;}
.xf_c00134{left:610.500000px;}
.x45_c00134{left:612.420000px;}
.x27_c00134{left:615.000000px;}
.x50_c00134{left:618.420000px;}
.xa8_c00134{left:619.920000px;}
.xa3_c00134{left:623.580000px;}
.xcb_c00134{left:625.080000px;}
.x3d_c00134{left:627.420000px;}
.x5a_c00134{left:629.580000px;}
.xd1_c00134{left:635.580000px;}
.x28_c00134{left:637.080000px;}
.x71_c00134{left:639.420000px;}
.xb5_c00134{left:640.500000px;}
.x67_c00134{left:642.000000px;}
.x31_c00134{left:643.920000px;}
.xb1_c00134{left:645.000000px;}
.x1b_c00134{left:646.500000px;}
.x5b_c00134{left:648.420000px;}
.x98_c00134{left:655.500000px;}
.xf5_c00134{left:657.645000px;}
.x10_c00134{left:660.000000px;}
.x3e_c00134{left:663.420000px;}
.x7f_c00134{left:666.000000px;}
.x72_c00134{left:667.920000px;}
.xcc_c00134{left:670.500000px;}
.xc6_c00134{left:671.775000px;}
.x32_c00134{left:673.500000px;}
.x5c_c00134{left:675.000000px;}
.xa4_c00134{left:678.000000px;}
.xa9_c00134{left:679.500000px;}
.x51_c00134{left:681.000000px;}
.x29_c00134{left:684.000000px;}
.x46_c00134{left:685.500000px;}
.xc0_c00134{left:686.580000px;}
.x1c_c00134{left:688.080000px;}
.xb6_c00134{left:691.500000px;}
.x80_c00134{left:693.420000px;}
.xe6_c00134{left:696.000000px;}
.x68_c00134{left:697.920000px;}
.x8f_c00134{left:699.000000px;}
.x1_c00134{left:703.920000px;}
.xcd_c00134{left:708.420000px;}
.x5d_c00134{left:712.500000px;}
.x52_c00134{left:715.500000px;}
.x73_c00134{left:716.580000px;}
.xda_c00134{left:720.000000px;}
.x47_c00134{left:721.500000px;}
@media print{
.v0_c00134{vertical-align:0.000000pt;}
.ls0_c00134{letter-spacing:0.000000pt;}
.ws0_c00134{word-spacing:-5.497444pt;}
.ws1_c00134{word-spacing:-4.339409pt;}
.ws2_c00134{word-spacing:0.000000pt;}
.fs6_c00134{font-size:3.040000pt;}
.fs8_c00134{font-size:12.106667pt;}
.fs4_c00134{font-size:16.640000pt;}
.fs1_c00134{font-size:18.133333pt;}
.fs5_c00134{font-size:22.666667pt;}
.fs0_c00134{font-size:25.706667pt;}
.fs3_c00134{font-size:28.746667pt;}
.fs2_c00134{font-size:31.733333pt;}
.fs7_c00134{font-size:34.773333pt;}
.y0_c00134{bottom:0.000000pt;}
.yba_c00134{bottom:222.640000pt;}
.yb9_c00134{bottom:223.400000pt;}
.yb8_c00134{bottom:225.306667pt;}
.yb7_c00134{bottom:225.506667pt;}
.yb1_c00134{bottom:235.973333pt;}
.yb3_c00134{bottom:236.733333pt;}
.yb6_c00134{bottom:237.693333pt;}
.yb2_c00134{bottom:238.640000pt;}
.yb5_c00134{bottom:238.840000pt;}
.yb4_c00134{bottom:239.600000pt;}
.yaf_c00134{bottom:249.306667pt;}
.yae_c00134{bottom:250.066667pt;}
.yab_c00134{bottom:251.973333pt;}
.yad_c00134{bottom:252.173333pt;}
.yac_c00134{bottom:252.360000pt;}
.yb0_c00134{bottom:252.933333pt;}
.ya8_c00134{bottom:262.640000pt;}
.ya6_c00134{bottom:263.400000pt;}
.ya7_c00134{bottom:265.306667pt;}
.ya5_c00134{bottom:265.506667pt;}
.yaa_c00134{bottom:265.693333pt;}
.ya9_c00134{bottom:266.266667pt;}
.ya4_c00134{bottom:276.733333pt;}
.ya0_c00134{bottom:276.933333pt;}
.ya2_c00134{bottom:277.693333pt;}
.ya1_c00134{bottom:278.640000pt;}
.ya3_c00134{bottom:279.600000pt;}
.y9d_c00134{bottom:291.026667pt;}
.y9b_c00134{bottom:291.226667pt;}
.y9f_c00134{bottom:291.600000pt;}
.y9c_c00134{bottom:291.973333pt;}
.y9e_c00134{bottom:292.933333pt;}
.y9a_c00134{bottom:311.773333pt;}
.y99_c00134{bottom:312.560000pt;}
.y98_c00134{bottom:313.693333pt;}
.y94_c00134{bottom:329.106667pt;}
.y93_c00134{bottom:329.893333pt;}
.y96_c00134{bottom:330.066667pt;}
.y95_c00134{bottom:331.026667pt;}
.y97_c00134{bottom:331.226667pt;}
.y91_c00134{bottom:346.440000pt;}
.y8f_c00134{bottom:348.360000pt;}
.y90_c00134{bottom:348.373333pt;}
.y92_c00134{bottom:349.306667pt;}
.y8d_c00134{bottom:364.733333pt;}
.y8e_c00134{bottom:365.693333pt;}
.y8b_c00134{bottom:381.106667pt;}
.y8c_c00134{bottom:382.066667pt;}
.y8a_c00134{bottom:383.026667pt;}
.y86_c00134{bottom:397.693333pt;}
.y87_c00134{bottom:398.440000pt;}
.y84_c00134{bottom:400.360000pt;}
.y89_c00134{bottom:401.306667pt;}
.y88_c00134{bottom:401.693333pt;}
.y85_c00134{bottom:401.706667pt;}
.y82_c00134{bottom:416.733333pt;}
.y81_c00134{bottom:417.106667pt;}
.y83_c00134{bottom:417.693333pt;}
.y7f_c00134{bottom:417.893333pt;}
.y7e_c00134{bottom:419.026667pt;}
.y80_c00134{bottom:419.040000pt;}
.y79_c00134{bottom:433.493333pt;}
.y7d_c00134{bottom:433.693333pt;}
.y7c_c00134{bottom:434.440000pt;}
.y7b_c00134{bottom:435.400000pt;}
.y7a_c00134{bottom:436.373333pt;}
.y75_c00134{bottom:451.773333pt;}
.y77_c00134{bottom:452.560000pt;}
.y78_c00134{bottom:453.306667pt;}
.y76_c00134{bottom:453.693333pt;}
.y72_c00134{bottom:469.106667pt;}
.y6f_c00134{bottom:469.893333pt;}
.y70_c00134{bottom:470.066667pt;}
.y71_c00134{bottom:471.026667pt;}
.y74_c00134{bottom:471.226667pt;}
.y73_c00134{bottom:471.973333pt;}
.y6c_c00134{bottom:486.440000pt;}
.y6e_c00134{bottom:487.400000pt;}
.y6b_c00134{bottom:488.360000pt;}
.y6d_c00134{bottom:489.306667pt;}
.y66_c00134{bottom:503.773333pt;}
.y6a_c00134{bottom:504.733333pt;}
.y68_c00134{bottom:505.693333pt;}
.y69_c00134{bottom:506.640000pt;}
.y67_c00134{bottom:507.040000pt;}
.y65_c00134{bottom:523.973333pt;}
.y64_c00134{bottom:524.360000pt;}
.y62_c00134{bottom:536.733333pt;}
.y60_c00134{bottom:537.693333pt;}
.y61_c00134{bottom:538.640000pt;}
.y63_c00134{bottom:539.226667pt;}
.y5d_c00134{bottom:557.306667pt;}
.y5c_c00134{bottom:558.066667pt;}
.y5f_c00134{bottom:559.226667pt;}
.y5e_c00134{bottom:559.973333pt;}
.y5a_c00134{bottom:579.773333pt;}
.y5b_c00134{bottom:581.693333pt;}
.y59_c00134{bottom:610.440000pt;}
.y58_c00134{bottom:612.360000pt;}
.y57_c00134{bottom:627.773333pt;}
.y56_c00134{bottom:630.066667pt;}
.y55_c00134{bottom:631.026667pt;}
.y52_c00134{bottom:646.440000pt;}
.y53_c00134{bottom:647.226667pt;}
.y54_c00134{bottom:647.400000pt;}
.y51_c00134{bottom:648.360000pt;}
.y50_c00134{bottom:663.773333pt;}
.y4d_c00134{bottom:664.360000pt;}
.y4e_c00134{bottom:665.306667pt;}
.y4f_c00134{bottom:665.693333pt;}
.y4b_c00134{bottom:680.733333pt;}
.y4c_c00134{bottom:681.106667pt;}
.y4a_c00134{bottom:681.893333pt;}
.y49_c00134{bottom:683.026667pt;}
.y44_c00134{bottom:698.440000pt;}
.y46_c00134{bottom:699.400000pt;}
.y45_c00134{bottom:700.360000pt;}
.y47_c00134{bottom:700.560000pt;}
.y48_c00134{bottom:701.306667pt;}
.y42_c00134{bottom:715.773333pt;}
.y43_c00134{bottom:717.106667pt;}
.y40_c00134{bottom:717.693333pt;}
.y41_c00134{bottom:719.040000pt;}
.y3f_c00134{bottom:733.306667pt;}
.y3e_c00134{bottom:735.026667pt;}
.y3d_c00134{bottom:735.973333pt;}
.y3a_c00134{bottom:750.440000pt;}
.y3c_c00134{bottom:751.773333pt;}
.y38_c00134{bottom:752.360000pt;}
.y3b_c00134{bottom:752.560000pt;}
.y39_c00134{bottom:753.306667pt;}
.y37_c00134{bottom:753.693333pt;}
.y35_c00134{bottom:767.026667pt;}
.y32_c00134{bottom:767.973333pt;}
.y34_c00134{bottom:769.693333pt;}
.y36_c00134{bottom:769.893333pt;}
.y33_c00134{bottom:770.266667pt;}
.y31_c00134{bottom:770.640000pt;}
.y30_c00134{bottom:771.026667pt;}
.y2c_c00134{bottom:786.440000pt;}
.y2f_c00134{bottom:787.400000pt;}
.y2e_c00134{bottom:787.973333pt;}
.y2d_c00134{bottom:788.360000pt;}
.y28_c00134{bottom:803.773333pt;}
.y2a_c00134{bottom:804.560000pt;}
.y2b_c00134{bottom:805.306667pt;}
.y29_c00134{bottom:805.693333pt;}
.y26_c00134{bottom:821.106667pt;}
.y25_c00134{bottom:822.066667pt;}
.y24_c00134{bottom:823.026667pt;}
.y27_c00134{bottom:823.973333pt;}
.y22_c00134{bottom:838.440000pt;}
.y21_c00134{bottom:839.226667pt;}
.y20_c00134{bottom:839.400000pt;}
.y1f_c00134{bottom:840.360000pt;}
.y23_c00134{bottom:840.560000pt;}
.y1a_c00134{bottom:855.773333pt;}
.y1d_c00134{bottom:856.733333pt;}
.y1b_c00134{bottom:857.306667pt;}
.y1c_c00134{bottom:857.693333pt;}
.y1e_c00134{bottom:857.893333pt;}
.y16_c00134{bottom:873.106667pt;}
.y17_c00134{bottom:874.066667pt;}
.y18_c00134{bottom:874.640000pt;}
.y15_c00134{bottom:875.026667pt;}
.y19_c00134{bottom:875.226667pt;}
.y12_c00134{bottom:890.440000pt;}
.y14_c00134{bottom:891.400000pt;}
.y11_c00134{bottom:892.360000pt;}
.y13_c00134{bottom:892.560000pt;}
.yd_c00134{bottom:907.773333pt;}
.yc_c00134{bottom:909.693333pt;}
.yf_c00134{bottom:909.893333pt;}
.ye_c00134{bottom:910.640000pt;}
.y10_c00134{bottom:911.026667pt;}
.y9_c00134{bottom:925.106667pt;}
.yb_c00134{bottom:926.066667pt;}
.y7_c00134{bottom:927.026667pt;}
.ya_c00134{bottom:927.226667pt;}
.y8_c00134{bottom:927.973333pt;}
.y3_c00134{bottom:943.773333pt;}
.y6_c00134{bottom:944.560000pt;}
.y5_c00134{bottom:944.733333pt;}
.y4_c00134{bottom:945.693333pt;}
.y1_c00134{bottom:977.693333pt;}
.y2_c00134{bottom:979.600000pt;}
.h7_c00134{height:3.739141pt;}
.h9_c00134{height:14.890964pt;}
.h5_c00134{height:20.466875pt;}
.h2_c00134{height:22.303646pt;}
.h6_c00134{height:27.879557pt;}
.h1_c00134{height:31.618698pt;}
.h4_c00134{height:35.357839pt;}
.h3_c00134{height:39.031380pt;}
.h8_c00134{height:42.770521pt;}
.h0_c00134{height:1186.666667pt;}
.w0_c00134{width:782.666667pt;}
.x0_c00134{left:0.000000pt;}
.x3_c00134{left:134.666667pt;}
.x74_c00134{left:136.373333pt;}
.xc7_c00134{left:137.333333pt;}
.xe7_c00134{left:138.666667pt;}
.xff_c00134{left:140.000000pt;}
.xab_c00134{left:145.706667pt;}
.xf0_c00134{left:148.000000pt;}
.x7c_c00134{left:149.333333pt;}
.xb2_c00134{left:150.666667pt;}
.x81_c00134{left:152.000000pt;}
.xe1_c00134{left:152.960000pt;}
.x11_c00134{left:158.666667pt;}
.x53_c00134{left:160.000000pt;}
.x75_c00134{left:163.040000pt;}
.x9f_c00134{left:165.706667pt;}
.xed_c00134{left:166.666667pt;}
.x33_c00134{left:168.000000pt;}
.xce_c00134{left:168.960000pt;}
.x99_c00134{left:172.000000pt;}
.xb7_c00134{left:172.960000pt;}
.x90_c00134{left:174.666667pt;}
.x48_c00134{left:176.000000pt;}
.x5e_c00134{left:178.666667pt;}
.x2a_c00134{left:180.000000pt;}
.xf1_c00134{left:182.666667pt;}
.x3f_c00134{left:186.293333pt;}
.xe8_c00134{left:188.000000pt;}
.x9a_c00134{left:191.040000pt;}
.x82_c00134{left:192.373333pt;}
.x4_c00134{left:193.333333pt;}
.x1d_c00134{left:197.706667pt;}
.x12_c00134{left:199.626667pt;}
.x69_c00134{left:201.706667pt;}
.x89_c00134{left:202.666667pt;}
.x100_c00134{left:203.626667pt;}
.xb8_c00134{left:207.040000pt;}
.x54_c00134{left:208.960000pt;}
.x83_c00134{left:210.666667pt;}
.x49_c00134{left:211.626667pt;}
.xdf_c00134{left:212.960000pt;}
.x34_c00134{left:214.666667pt;}
.x13_c00134{left:216.000000pt;}
.x91_c00134{left:217.333333pt;}
.xeb_c00134{left:218.293333pt;}
.x5f_c00134{left:221.706667pt;}
.xac_c00134{left:223.626667pt;}
.x40_c00134{left:225.333333pt;}
.xd4_c00134{left:226.666667pt;}
.xb9_c00134{left:228.000000pt;}
.xf6_c00134{left:229.333333pt;}
.x84_c00134{left:230.666667pt;}
.x2b_c00134{left:233.706667pt;}
.xd7_c00134{left:234.666667pt;}
.x6a_c00134{left:236.000000pt;}
.x5_c00134{left:240.373333pt;}
.x1e_c00134{left:241.333333pt;}
.xe2_c00134{left:242.293333pt;}
.xba_c00134{left:244.000000pt;}
.xcf_c00134{left:245.706667pt;}
.xdb_c00134{left:249.333333pt;}
.x60_c00134{left:250.293333pt;}
.x76_c00134{left:251.426667pt;}
.x35_c00134{left:252.373333pt;}
.x4a_c00134{left:253.333333pt;}
.x55_c00134{left:257.706667pt;}
.xf7_c00134{left:259.626667pt;}
.x6b_c00134{left:260.960000pt;}
.xbb_c00134{left:262.293333pt;}
.xfa_c00134{left:264.373333pt;}
.x41_c00134{left:265.333333pt;}
.x92_c00134{left:266.666667pt;}
.x14_c00134{left:268.000000pt;}
.x101_c00134{left:268.960000pt;}
.x6_c00134{left:271.040000pt;}
.x4b_c00134{left:272.373333pt;}
.xc1_c00134{left:273.333333pt;}
.x1f_c00134{left:276.000000pt;}
.x9b_c00134{left:279.040000pt;}
.xdc_c00134{left:280.000000pt;}
.x56_c00134{left:281.333333pt;}
.xc8_c00134{left:282.666667pt;}
.xec_c00134{left:284.373333pt;}
.x8a_c00134{left:286.293333pt;}
.x2c_c00134{left:288.000000pt;}
.x61_c00134{left:291.040000pt;}
.x7_c00134{left:293.333333pt;}
.xa5_c00134{left:294.666667pt;}
.x36_c00134{left:296.000000pt;}
.xad_c00134{left:297.706667pt;}
.xa0_c00134{left:301.333333pt;}
.x2d_c00134{left:302.666667pt;}
.x4c_c00134{left:304.000000pt;}
.x77_c00134{left:305.333333pt;}
.x6c_c00134{left:306.293333pt;}
.x9c_c00134{left:308.000000pt;}
.x20_c00134{left:308.960000pt;}
.xe0_c00134{left:309.906667pt;}
.xbc_c00134{left:311.240000pt;}
.x8b_c00134{left:314.666667pt;}
.x93_c00134{left:316.000000pt;}
.xe9_c00134{left:318.293333pt;}
.x62_c00134{left:320.000000pt;}
.x4d_c00134{left:323.040000pt;}
.xf8_c00134{left:324.000000pt;}
.x21_c00134{left:327.040000pt;}
.xe3_c00134{left:328.000000pt;}
.xa1_c00134{left:329.706667pt;}
.x15_c00134{left:332.000000pt;}
.x37_c00134{left:336.373333pt;}
.x94_c00134{left:338.293333pt;}
.xd8_c00134{left:340.373333pt;}
.x8_c00134{left:341.706667pt;}
.xdd_c00134{left:342.666667pt;}
.xc2_c00134{left:345.333333pt;}
.x4e_c00134{left:348.000000pt;}
.x6d_c00134{left:349.333333pt;}
.xf9_c00134{left:351.040000pt;}
.x2_c00134{left:353.333333pt;}
.x16_c00134{left:356.000000pt;}
.xa2_c00134{left:357.333333pt;}
.x38_c00134{left:359.626667pt;}
.xf2_c00134{left:360.960000pt;}
.xc3_c00134{left:362.293333pt;}
.x63_c00134{left:364.000000pt;}
.x42_c00134{left:365.333333pt;}
.x95_c00134{left:367.040000pt;}
.x6e_c00134{left:368.373333pt;}
.x78_c00134{left:372.000000pt;}
.xd2_c00134{left:374.666667pt;}
.x2e_c00134{left:379.626667pt;}
.x85_c00134{left:383.040000pt;}
.xbd_c00134{left:384.000000pt;}
.x22_c00134{left:384.960000pt;}
.xd0_c00134{left:385.906667pt;}
.x57_c00134{left:387.040000pt;}
.xfb_c00134{left:388.960000pt;}
.x17_c00134{left:391.626667pt;}
.x79_c00134{left:393.333333pt;}
.x39_c00134{left:394.666667pt;}
.xea_c00134{left:396.000000pt;}
.x9_c00134{left:397.706667pt;}
.xb3_c00134{left:398.666667pt;}
.x96_c00134{left:400.000000pt;}
.xee_c00134{left:400.960000pt;}
.x7d_c00134{left:404.000000pt;}
.xd5_c00134{left:409.333333pt;}
.x7a_c00134{left:410.293333pt;}
.xd9_c00134{left:411.626667pt;}
.xfc_c00134{left:413.333333pt;}
.x23_c00134{left:414.293333pt;}
.x8c_c00134{left:416.373333pt;}
.x18_c00134{left:418.666667pt;}
.xa_c00134{left:420.000000pt;}
.xa6_c00134{left:422.666667pt;}
.xef_c00134{left:425.333333pt;}
.x9d_c00134{left:426.293333pt;}
.x2f_c00134{left:428.000000pt;}
.x7e_c00134{left:429.333333pt;}
.xd3_c00134{left:430.466667pt;}
.x7b_c00134{left:432.000000pt;}
.x97_c00134{left:433.706667pt;}
.x64_c00134{left:434.666667pt;}
.xc9_c00134{left:435.800000pt;}
.x3a_c00134{left:444.000000pt;}
.x86_c00134{left:445.706667pt;}
.x43_c00134{left:448.000000pt;}
.xe4_c00134{left:449.333333pt;}
.x8d_c00134{left:450.666667pt;}
.xae_c00134{left:451.626667pt;}
.xa7_c00134{left:453.706667pt;}
.x24_c00134{left:456.373333pt;}
.x19_c00134{left:459.040000pt;}
.xb_c00134{left:461.333333pt;}
.xaa_c00134{left:462.293333pt;}
.xfd_c00134{left:463.240000pt;}
.xbe_c00134{left:464.960000pt;}
.x3b_c00134{left:466.666667pt;}
.x65_c00134{left:468.000000pt;}
.x87_c00134{left:471.040000pt;}
.x6f_c00134{left:473.333333pt;}
.xc_c00134{left:477.333333pt;}
.x30_c00134{left:483.626667pt;}
.x44_c00134{left:485.333333pt;}
.xc4_c00134{left:487.626667pt;}
.xb4_c00134{left:489.333333pt;}
.x8e_c00134{left:490.666667pt;}
.x25_c00134{left:494.666667pt;}
.x58_c00134{left:496.373333pt;}
.xaf_c00134{left:498.293333pt;}
.x9e_c00134{left:504.000000pt;}
.xd_c00134{left:505.333333pt;}
.x66_c00134{left:508.000000pt;}
.xf3_c00134{left:508.960000pt;}
.x70_c00134{left:512.000000pt;}
.xbf_c00134{left:513.133333pt;}
.x26_c00134{left:515.040000pt;}
.x3c_c00134{left:516.373333pt;}
.x4f_c00134{left:517.706667pt;}
.xe_c00134{left:520.373333pt;}
.xe5_c00134{left:521.333333pt;}
.xb0_c00134{left:522.666667pt;}
.x88_c00134{left:523.626667pt;}
.xde_c00134{left:526.666667pt;}
.x59_c00134{left:528.000000pt;}
.x1a_c00134{left:529.333333pt;}
.xf4_c00134{left:533.333333pt;}
.xd6_c00134{left:534.293333pt;}
.xfe_c00134{left:536.960000pt;}
.xc5_c00134{left:540.000000pt;}
.xca_c00134{left:541.333333pt;}
.xf_c00134{left:542.666667pt;}
.x45_c00134{left:544.373333pt;}
.x27_c00134{left:546.666667pt;}
.x50_c00134{left:549.706667pt;}
.xa8_c00134{left:551.040000pt;}
.xa3_c00134{left:554.293333pt;}
.xcb_c00134{left:555.626667pt;}
.x3d_c00134{left:557.706667pt;}
.x5a_c00134{left:559.626667pt;}
.xd1_c00134{left:564.960000pt;}
.x28_c00134{left:566.293333pt;}
.x71_c00134{left:568.373333pt;}
.xb5_c00134{left:569.333333pt;}
.x67_c00134{left:570.666667pt;}
.x31_c00134{left:572.373333pt;}
.xb1_c00134{left:573.333333pt;}
.x1b_c00134{left:574.666667pt;}
.x5b_c00134{left:576.373333pt;}
.x98_c00134{left:582.666667pt;}
.xf5_c00134{left:584.573333pt;}
.x10_c00134{left:586.666667pt;}
.x3e_c00134{left:589.706667pt;}
.x7f_c00134{left:592.000000pt;}
.x72_c00134{left:593.706667pt;}
.xcc_c00134{left:596.000000pt;}
.xc6_c00134{left:597.133333pt;}
.x32_c00134{left:598.666667pt;}
.x5c_c00134{left:600.000000pt;}
.xa4_c00134{left:602.666667pt;}
.xa9_c00134{left:604.000000pt;}
.x51_c00134{left:605.333333pt;}
.x29_c00134{left:608.000000pt;}
.x46_c00134{left:609.333333pt;}
.xc0_c00134{left:610.293333pt;}
.x1c_c00134{left:611.626667pt;}
.xb6_c00134{left:614.666667pt;}
.x80_c00134{left:616.373333pt;}
.xe6_c00134{left:618.666667pt;}
.x68_c00134{left:620.373333pt;}
.x8f_c00134{left:621.333333pt;}
.x1_c00134{left:625.706667pt;}
.xcd_c00134{left:629.706667pt;}
.x5d_c00134{left:633.333333pt;}
.x52_c00134{left:636.000000pt;}
.x73_c00134{left:636.960000pt;}
.xda_c00134{left:640.000000pt;}
.x47_c00134{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fabe36df85bed85f9f93d65c.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:1.688965;font-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_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);}
.m4_c00135{transform:matrix(0.204082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204082,0.000000,0.000000,0.250000,0,0);}
.m3_c00135{transform:matrix(0.231447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231447,0.000000,0.000000,0.250000,0,0);}
.mf_c00135{transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);}
.m1a_c00135{transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);}
.m10_c00135{transform:matrix(0.402490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402490,0.000000,0.000000,0.250000,0,0);}
.m7_c00135{transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);}
.m8_c00135{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m17_c00135{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.md_c00135{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m15_c00135{transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);}
.m19_c00135{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m18_c00135{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m1e_c00135{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m0_c00135{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m16_c00135{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_c00135{transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);}
.mc_c00135{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m21_c00135{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);}
.mb_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);}
.m1d_c00135{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m23_c00135{transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);}
.m1f_c00135{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.me_c00135{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m1c_c00135{transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);}
.m14_c00135{transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);}
.m12_c00135{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m22_c00135{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m1_c00135{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.m6_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);}
.m13_c00135{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);}
.m1b_c00135{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m11_c00135{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m9_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);}
.m5_c00135{transform:matrix(0.741912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741912,0.000000,0.000000,0.250000,0,0);}
.ma_c00135{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.v0_c00135{vertical-align:0.000000px;}
.ls0_c00135{letter-spacing:0.000000px;}
.sc__c00135{text-shadow:none;}
.sc0_c00135{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00135{-webkit-text-stroke:0px transparent;}
.sc0_c00135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00135{word-spacing:0.000000px;}
.ws0_c00135{word-spacing:5.260500px;}
.fc0_c00135{color:transparent;}
.fs3_c00135{font-size:18.720000px;}
.fs1_c00135{font-size:20.400000px;}
.fs4_c00135{font-size:25.500000px;}
.fs0_c00135{font-size:28.920000px;}
.fs2_c00135{font-size:32.340000px;}
.y0_c00135{bottom:0.000000px;}
.y7_c00135{bottom:239.550000px;}
.y8_c00135{bottom:239.970000px;}
.y9_c00135{bottom:240.405000px;}
.y3_c00135{bottom:254.325000px;}
.yb_c00135{bottom:254.550000px;}
.y6_c00135{bottom:255.405000px;}
.y5_c00135{bottom:255.630000px;}
.y4_c00135{bottom:257.550000px;}
.yf_c00135{bottom:269.550000px;}
.ya_c00135{bottom:270.405000px;}
.ye_c00135{bottom:270.630000px;}
.yd_c00135{bottom:271.470000px;}
.yc_c00135{bottom:272.550000px;}
.y10_c00135{bottom:284.325000px;}
.y15_c00135{bottom:284.550000px;}
.y13_c00135{bottom:285.405000px;}
.y12_c00135{bottom:285.630000px;}
.y14_c00135{bottom:286.470000px;}
.y11_c00135{bottom:287.550000px;}
.y2_c00135{bottom:1097.550000px;}
.y1_c00135{bottom:1099.905000px;}
.h4_c00135{height:23.025234px;}
.h2_c00135{height:25.091602px;}
.h5_c00135{height:31.364502px;}
.h1_c00135{height:35.571035px;}
.h3_c00135{height:39.777568px;}
.h0_c00135{height:1335.000000px;}
.w0_c00135{width:880.500000px;}
.x0_c00135{left:0.000000px;}
.x15_c00135{left:151.500000px;}
.x1_c00135{left:157.920000px;}
.x16_c00135{left:176.355000px;}
.x26_c00135{left:181.920000px;}
.x27_c00135{left:205.500000px;}
.x17_c00135{left:222.420000px;}
.x18_c00135{left:229.500000px;}
.x12_c00135{left:241.080000px;}
.x28_c00135{left:259.920000px;}
.x29_c00135{left:288.000000px;}
.x1b_c00135{left:292.500000px;}
.x1c_c00135{left:313.500000px;}
.x13_c00135{left:322.500000px;}
.x2a_c00135{left:342.000000px;}
.x3_c00135{left:358.080000px;}
.x2b_c00135{left:360.000000px;}
.xc_c00135{left:373.080000px;}
.x1d_c00135{left:385.500000px;}
.x2c_c00135{left:397.920000px;}
.xd_c00135{left:400.080000px;}
.x2_c00135{left:403.500000px;}
.x1e_c00135{left:408.420000px;}
.xe_c00135{left:418.080000px;}
.x2d_c00135{left:436.920000px;}
.x4_c00135{left:444.420000px;}
.xf_c00135{left:445.500000px;}
.x24_c00135{left:454.500000px;}
.x1f_c00135{left:457.500000px;}
.x5_c00135{left:459.855000px;}
.x19_c00135{left:474.645000px;}
.x10_c00135{left:487.920000px;}
.x6_c00135{left:489.000000px;}
.x11_c00135{left:503.580000px;}
.x25_c00135{left:505.080000px;}
.x7_c00135{left:535.500000px;}
.x20_c00135{left:562.080000px;}
.x1a_c00135{left:564.420000px;}
.x8_c00135{left:579.000000px;}
.x21_c00135{left:612.000000px;}
.x9_c00135{left:630.000000px;}
.x22_c00135{left:649.500000px;}
.x14_c00135{left:672.000000px;}
.xa_c00135{left:684.000000px;}
.xb_c00135{left:703.500000px;}
.x23_c00135{left:719.580000px;}
@media print{
.v0_c00135{vertical-align:0.000000pt;}
.ls0_c00135{letter-spacing:0.000000pt;}
.ws1_c00135{word-spacing:0.000000pt;}
.ws0_c00135{word-spacing:4.676000pt;}
.fs3_c00135{font-size:16.640000pt;}
.fs1_c00135{font-size:18.133333pt;}
.fs4_c00135{font-size:22.666667pt;}
.fs0_c00135{font-size:25.706667pt;}
.fs2_c00135{font-size:28.746667pt;}
.y0_c00135{bottom:0.000000pt;}
.y7_c00135{bottom:212.933333pt;}
.y8_c00135{bottom:213.306667pt;}
.y9_c00135{bottom:213.693333pt;}
.y3_c00135{bottom:226.066667pt;}
.yb_c00135{bottom:226.266667pt;}
.y6_c00135{bottom:227.026667pt;}
.y5_c00135{bottom:227.226667pt;}
.y4_c00135{bottom:228.933333pt;}
.yf_c00135{bottom:239.600000pt;}
.ya_c00135{bottom:240.360000pt;}
.ye_c00135{bottom:240.560000pt;}
.yd_c00135{bottom:241.306667pt;}
.yc_c00135{bottom:242.266667pt;}
.y10_c00135{bottom:252.733333pt;}
.y15_c00135{bottom:252.933333pt;}
.y13_c00135{bottom:253.693333pt;}
.y12_c00135{bottom:253.893333pt;}
.y14_c00135{bottom:254.640000pt;}
.y11_c00135{bottom:255.600000pt;}
.y2_c00135{bottom:975.600000pt;}
.y1_c00135{bottom:977.693333pt;}
.h4_c00135{height:20.466875pt;}
.h2_c00135{height:22.303646pt;}
.h5_c00135{height:27.879557pt;}
.h1_c00135{height:31.618698pt;}
.h3_c00135{height:35.357839pt;}
.h0_c00135{height:1186.666667pt;}
.w0_c00135{width:782.666667pt;}
.x0_c00135{left:0.000000pt;}
.x15_c00135{left:134.666667pt;}
.x1_c00135{left:140.373333pt;}
.x16_c00135{left:156.760000pt;}
.x26_c00135{left:161.706667pt;}
.x27_c00135{left:182.666667pt;}
.x17_c00135{left:197.706667pt;}
.x18_c00135{left:204.000000pt;}
.x12_c00135{left:214.293333pt;}
.x28_c00135{left:231.040000pt;}
.x29_c00135{left:256.000000pt;}
.x1b_c00135{left:260.000000pt;}
.x1c_c00135{left:278.666667pt;}
.x13_c00135{left:286.666667pt;}
.x2a_c00135{left:304.000000pt;}
.x3_c00135{left:318.293333pt;}
.x2b_c00135{left:320.000000pt;}
.xc_c00135{left:331.626667pt;}
.x1d_c00135{left:342.666667pt;}
.x2c_c00135{left:353.706667pt;}
.xd_c00135{left:355.626667pt;}
.x2_c00135{left:358.666667pt;}
.x1e_c00135{left:363.040000pt;}
.xe_c00135{left:371.626667pt;}
.x2d_c00135{left:388.373333pt;}
.x4_c00135{left:395.040000pt;}
.xf_c00135{left:396.000000pt;}
.x24_c00135{left:404.000000pt;}
.x1f_c00135{left:406.666667pt;}
.x5_c00135{left:408.760000pt;}
.x19_c00135{left:421.906667pt;}
.x10_c00135{left:433.706667pt;}
.x6_c00135{left:434.666667pt;}
.x11_c00135{left:447.626667pt;}
.x25_c00135{left:448.960000pt;}
.x7_c00135{left:476.000000pt;}
.x20_c00135{left:499.626667pt;}
.x1a_c00135{left:501.706667pt;}
.x8_c00135{left:514.666667pt;}
.x21_c00135{left:544.000000pt;}
.x9_c00135{left:560.000000pt;}
.x22_c00135{left:577.333333pt;}
.x14_c00135{left:597.333333pt;}
.xa_c00135{left:608.000000pt;}
.xb_c00135{left:625.333333pt;}
.x23_c00135{left:639.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_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_6fd5f1185f30120f6c54a3b0.woff2')format("woff");}.ff1_c00136{font-family:ff1_c00136;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb1_c00136{transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);}
.m24_c00136{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m17_c00136{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.mcc_c00136{transform:matrix(0.347866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347866,0.000000,0.000000,0.250000,0,0);}
.m6a_c00136{transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);}
.mb7_c00136{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mcb_c00136{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.md5_c00136{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m63_c00136{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mba_c00136{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m26_c00136{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.mc6_c00136{transform:matrix(0.382189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382189,0.000000,0.000000,0.250000,0,0);}
.m40_c00136{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m9_c00136{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.mdc_c00136{transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);}
.mec_c00136{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.md7_c00136{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mc9_c00136{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.meb_c00136{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.md4_c00136{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m74_c00136{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.ma5_c00136{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.mb6_c00136{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mc5_c00136{transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);}
.m6c_c00136{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m1f_c00136{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m39_c00136{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m33_c00136{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m7b_c00136{transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);}
.mc8_c00136{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m2d_c00136{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m65_c00136{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m3b_c00136{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m9d_c00136{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m18_c00136{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.mdb_c00136{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mf4_c00136{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m50_c00136{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mc2_c00136{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m2f_c00136{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mc4_c00136{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.mab_c00136{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m87_c00136{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m10_c00136{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.me2_c00136{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m2_c00136{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m98_c00136{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m47_c00136{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m76_c00136{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.maa_c00136{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m8a_c00136{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m5a_c00136{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.me0_c00136{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m45_c00136{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m38_c00136{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m88_c00136{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.mbf_c00136{transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);}
.ma0_c00136{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.me3_c00136{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m20_c00136{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.ma1_c00136{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.m6d_c00136{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m8d_c00136{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.me_c00136{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m70_c00136{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m9f_c00136{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m1d_c00136{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m79_c00136{transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);}
.m54_c00136{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m36_c00136{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mcf_c00136{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.md6_c00136{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m62_c00136{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.mc3_c00136{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.mc1_c00136{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.m22_c00136{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.ma6_c00136{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.md8_c00136{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.ma3_c00136{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m56_c00136{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m97_c00136{transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);}
.m6_c00136{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.mdf_c00136{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m95_c00136{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.me9_c00136{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.m49_c00136{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m4e_c00136{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m30_c00136{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m29_c00136{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m8f_c00136{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m69_c00136{transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);}
.m1_c00136{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m46_c00136{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m4f_c00136{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m37_c00136{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mae_c00136{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mc_c00136{transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);}
.mb2_c00136{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.mbd_c00136{transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);}
.m2e_c00136{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m15_c00136{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.mca_c00136{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m5c_c00136{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m7e_c00136{transform:matrix(0.471176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471176,0.000000,0.000000,0.250000,0,0);}
.m9a_c00136{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.mb8_c00136{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.m86_c00136{transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);}
.m67_c00136{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.m61_c00136{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.m31_c00136{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.m94_c00136{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mc7_c00136{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.ma7_c00136{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.mf3_c00136{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.me6_c00136{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.mbc_c00136{transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);}
.m34_c00136{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mce_c00136{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.mac_c00136{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m6e_c00136{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m6f_c00136{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m66_c00136{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m41_c00136{transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);}
.mdd_c00136{transform:matrix(0.492115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492115,0.000000,0.000000,0.250000,0,0);}
.ma_c00136{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mf1_c00136{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m13_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);}
.maf_c00136{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.mb4_c00136{transform:matrix(0.502521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502521,0.000000,0.000000,0.250000,0,0);}
.m92_c00136{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.m7_c00136{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m3a_c00136{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m53_c00136{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m96_c00136{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m28_c00136{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m57_c00136{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m3f_c00136{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m85_c00136{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m5b_c00136{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m44_c00136{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m64_c00136{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m3e_c00136{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m12_c00136{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mb5_c00136{transform:matrix(0.527829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527829,0.000000,0.000000,0.250000,0,0);}
.mef_c00136{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.me7_c00136{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.md3_c00136{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m21_c00136{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.me1_c00136{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m4b_c00136{transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);}
.m1c_c00136{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m75_c00136{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.md_c00136{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m7f_c00136{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.med_c00136{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m4_c00136{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mee_c00136{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m1a_c00136{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m4d_c00136{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.md2_c00136{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.md1_c00136{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m52_c00136{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mde_c00136{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.md9_c00136{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m23_c00136{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m78_c00136{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m59_c00136{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mbe_c00136{transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);}
.m3d_c00136{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m7a_c00136{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m60_c00136{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m89_c00136{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m5e_c00136{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m19_c00136{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m16_c00136{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m42_c00136{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mbb_c00136{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m82_c00136{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mf_c00136{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m91_c00136{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);}
.m2a_c00136{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m7d_c00136{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m9b_c00136{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.me5_c00136{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m72_c00136{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m5f_c00136{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m1e_c00136{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.ma2_c00136{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m77_c00136{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m81_c00136{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.me4_c00136{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m8_c00136{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m93_c00136{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m9e_c00136{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mea_c00136{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m8c_c00136{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m90_c00136{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m4a_c00136{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.ma4_c00136{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.me8_c00136{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m83_c00136{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m58_c00136{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mc0_c00136{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.ma8_c00136{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m84_c00136{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m68_c00136{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m1b_c00136{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m80_c00136{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m43_c00136{transform:matrix(0.597756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597756,0.000000,0.000000,0.250000,0,0);}
.m8e_c00136{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m4c_c00136{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m0_c00136{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m7c_c00136{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m5_c00136{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m71_c00136{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m11_c00136{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m8b_c00136{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.md0_c00136{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.m3c_c00136{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mf0_c00136{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_c00136{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m55_c00136{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m73_c00136{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m6b_c00136{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m2b_c00136{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m25_c00136{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mcd_c00136{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.mf2_c00136{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m14_c00136{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.ma9_c00136{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.mb9_c00136{transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);}
.m32_c00136{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m35_c00136{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m51_c00136{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mb0_c00136{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m99_c00136{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.mda_c00136{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.mb_c00136{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m5d_c00136{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mad_c00136{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.mb3_c00136{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m48_c00136{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m2c_c00136{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m9c_c00136{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m3_c00136{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00136{vertical-align:-18.000000px;}
.v0_c00136{vertical-align:0.000000px;}
.ls0_c00136{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00136{word-spacing:-9.030927px;}
.ws0_c00136{word-spacing:-3.637499px;}
.ws2_c00136{word-spacing:0.000000px;}
.fc0_c00136{color:transparent;}
.fs3_c00136{font-size:3.420000px;}
.fs7_c00136{font-size:11.880000px;}
.fs5_c00136{font-size:18.720000px;}
.fs0_c00136{font-size:20.400000px;}
.fs4_c00136{font-size:25.500000px;}
.fs1_c00136{font-size:28.920000px;}
.fs6_c00136{font-size:32.340000px;}
.fs2_c00136{font-size:35.700000px;}
.y0_c00136{bottom:0.000000px;}
.yc7_c00136{bottom:253.905000px;}
.yc9_c00136{bottom:256.245000px;}
.yc8_c00136{bottom:257.970000px;}
.yc6_c00136{bottom:258.405000px;}
.yc5_c00136{bottom:274.245000px;}
.yc4_c00136{bottom:275.745000px;}
.yc2_c00136{bottom:277.905000px;}
.yc3_c00136{bottom:277.920000px;}
.yc0_c00136{bottom:295.245000px;}
.ybf_c00136{bottom:296.325000px;}
.ybe_c00136{bottom:296.970000px;}
.yc1_c00136{bottom:297.405000px;}
.ybd_c00136{bottom:315.825000px;}
.ybc_c00136{bottom:316.905000px;}
.yba_c00136{bottom:318.405000px;}
.ybb_c00136{bottom:318.420000px;}
.yb9_c00136{bottom:334.245000px;}
.yb7_c00136{bottom:335.745000px;}
.yb8_c00136{bottom:336.405000px;}
.yb6_c00136{bottom:354.825000px;}
.yb5_c00136{bottom:355.245000px;}
.yb3_c00136{bottom:356.130000px;}
.yb2_c00136{bottom:357.405000px;}
.yb4_c00136{bottom:357.420000px;}
.yb1_c00136{bottom:373.905000px;}
.yae_c00136{bottom:374.745000px;}
.yb0_c00136{bottom:375.825000px;}
.yaf_c00136{bottom:376.920000px;}
.yab_c00136{bottom:394.245000px;}
.yac_c00136{bottom:395.970000px;}
.yad_c00136{bottom:396.405000px;}
.ya8_c00136{bottom:413.745000px;}
.yaa_c00136{bottom:415.905000px;}
.ya9_c00136{bottom:417.420000px;}
.ya7_c00136{bottom:433.470000px;}
.ya4_c00136{bottom:434.325000px;}
.ya5_c00136{bottom:435.405000px;}
.ya6_c00136{bottom:435.630000px;}
.ya2_c00136{bottom:455.325000px;}
.ya3_c00136{bottom:455.550000px;}
.ya0_c00136{bottom:470.325000px;}
.ya1_c00136{bottom:470.550000px;}
.y9e_c00136{bottom:471.405000px;}
.y9f_c00136{bottom:473.550000px;}
.y9d_c00136{bottom:494.325000px;}
.y9c_c00136{bottom:494.745000px;}
.y97_c00136{bottom:525.630000px;}
.y98_c00136{bottom:527.745000px;}
.y9b_c00136{bottom:528.405000px;}
.y99_c00136{bottom:528.825000px;}
.y9a_c00136{bottom:529.905000px;}
.y96_c00136{bottom:530.130000px;}
.y95_c00136{bottom:545.775000px;}
.y93_c00136{bottom:546.405000px;}
.y92_c00136{bottom:548.745000px;}
.y91_c00136{bottom:549.630000px;}
.y8f_c00136{bottom:549.825000px;}
.y90_c00136{bottom:550.905000px;}
.y94_c00136{bottom:554.130000px;}
.y8b_c00136{bottom:565.905000px;}
.y88_c00136{bottom:566.970000px;}
.y8d_c00136{bottom:567.405000px;}
.y8c_c00136{bottom:568.245000px;}
.y8e_c00136{bottom:569.130000px;}
.y8a_c00136{bottom:569.325000px;}
.y89_c00136{bottom:570.405000px;}
.y85_c00136{bottom:585.825000px;}
.y83_c00136{bottom:587.745000px;}
.y87_c00136{bottom:587.970000px;}
.y84_c00136{bottom:588.825000px;}
.y86_c00136{bottom:589.905000px;}
.y7e_c00136{bottom:606.405000px;}
.y7d_c00136{bottom:607.245000px;}
.y81_c00136{bottom:608.325000px;}
.y82_c00136{bottom:608.745000px;}
.y80_c00136{bottom:609.405000px;}
.y7f_c00136{bottom:610.470000px;}
.y76_c00136{bottom:626.745000px;}
.y77_c00136{bottom:626.970000px;}
.y79_c00136{bottom:627.825000px;}
.y7c_c00136{bottom:628.905000px;}
.y78_c00136{bottom:629.130000px;}
.y7a_c00136{bottom:629.970000px;}
.y7b_c00136{bottom:630.420000px;}
.y73_c00136{bottom:645.405000px;}
.y71_c00136{bottom:646.245000px;}
.y6e_c00136{bottom:646.470000px;}
.y6f_c00136{bottom:647.325000px;}
.y70_c00136{bottom:648.405000px;}
.y75_c00136{bottom:648.630000px;}
.y72_c00136{bottom:648.825000px;}
.y74_c00136{bottom:649.905000px;}
.y6d_c00136{bottom:664.905000px;}
.y6c_c00136{bottom:665.325000px;}
.y69_c00136{bottom:665.970000px;}
.y6a_c00136{bottom:667.245000px;}
.y6b_c00136{bottom:669.405000px;}
.y68_c00136{bottom:685.905000px;}
.y67_c00136{bottom:686.745000px;}
.y66_c00136{bottom:688.905000px;}
.y64_c00136{bottom:704.325000px;}
.y65_c00136{bottom:705.405000px;}
.y62_c00136{bottom:706.245000px;}
.y61_c00136{bottom:707.325000px;}
.y63_c00136{bottom:708.405000px;}
.y60_c00136{bottom:727.470000px;}
.y5f_c00136{bottom:727.905000px;}
.y5d_c00136{bottom:745.245000px;}
.y5e_c00136{bottom:746.970000px;}
.y5c_c00136{bottom:747.405000px;}
.y5b_c00136{bottom:764.970000px;}
.y57_c00136{bottom:765.630000px;}
.y56_c00136{bottom:766.905000px;}
.y58_c00136{bottom:767.325000px;}
.y5a_c00136{bottom:767.970000px;}
.y59_c00136{bottom:768.405000px;}
.y55_c00136{bottom:783.405000px;}
.y51_c00136{bottom:785.745000px;}
.y52_c00136{bottom:786.405000px;}
.y54_c00136{bottom:787.470000px;}
.y53_c00136{bottom:787.905000px;}
.y50_c00136{bottom:803.970000px;}
.y4d_c00136{bottom:805.245000px;}
.y4c_c00136{bottom:806.970000px;}
.y4e_c00136{bottom:807.405000px;}
.y4f_c00136{bottom:808.470000px;}
.y48_c00136{bottom:823.245000px;}
.y49_c00136{bottom:824.745000px;}
.y4b_c00136{bottom:825.825000px;}
.y47_c00136{bottom:826.905000px;}
.y4a_c00136{bottom:827.970000px;}
.y42_c00136{bottom:841.905000px;}
.y43_c00136{bottom:842.745000px;}
.y45_c00136{bottom:844.245000px;}
.y41_c00136{bottom:845.325000px;}
.y44_c00136{bottom:845.970000px;}
.y40_c00136{bottom:846.405000px;}
.y46_c00136{bottom:846.630000px;}
.y3d_c00136{bottom:863.745000px;}
.y3a_c00136{bottom:864.825000px;}
.y3f_c00136{bottom:865.245000px;}
.y39_c00136{bottom:865.905000px;}
.y3c_c00136{bottom:866.130000px;}
.y3b_c00136{bottom:866.970000px;}
.y3e_c00136{bottom:867.405000px;}
.y35_c00136{bottom:884.325000px;}
.y37_c00136{bottom:884.745000px;}
.y34_c00136{bottom:885.405000px;}
.y38_c00136{bottom:885.630000px;}
.y36_c00136{bottom:886.905000px;}
.y2e_c00136{bottom:902.745000px;}
.y30_c00136{bottom:903.825000px;}
.y32_c00136{bottom:904.245000px;}
.y2d_c00136{bottom:904.905000px;}
.y33_c00136{bottom:905.130000px;}
.y2f_c00136{bottom:905.970000px;}
.y31_c00136{bottom:906.405000px;}
.y2a_c00136{bottom:923.745000px;}
.y29_c00136{bottom:924.405000px;}
.y2c_c00136{bottom:924.630000px;}
.y2b_c00136{bottom:924.825000px;}
.y28_c00136{bottom:925.905000px;}
.y26_c00136{bottom:943.245000px;}
.y27_c00136{bottom:945.405000px;}
.y20_c00136{bottom:961.470000px;}
.y22_c00136{bottom:961.905000px;}
.y1f_c00136{bottom:962.325000px;}
.y1d_c00136{bottom:962.745000px;}
.y23_c00136{bottom:963.630000px;}
.y21_c00136{bottom:964.470000px;}
.y1e_c00136{bottom:964.905000px;}
.y25_c00136{bottom:965.130000px;}
.y24_c00136{bottom:965.970000px;}
.y19_c00136{bottom:982.245000px;}
.y1b_c00136{bottom:983.325000px;}
.y1a_c00136{bottom:984.405000px;}
.y18_c00136{bottom:984.630000px;}
.y1c_c00136{bottom:985.470000px;}
.y12_c00136{bottom:1001.745000px;}
.y15_c00136{bottom:1001.970000px;}
.y17_c00136{bottom:1002.825000px;}
.y13_c00136{bottom:1003.905000px;}
.y16_c00136{bottom:1004.130000px;}
.y14_c00136{bottom:1004.970000px;}
.y11_c00136{bottom:1021.245000px;}
.y10_c00136{bottom:1023.405000px;}
.ya_c00136{bottom:1040.745000px;}
.ye_c00136{bottom:1041.825000px;}
.yf_c00136{bottom:1042.245000px;}
.yb_c00136{bottom:1042.905000px;}
.yd_c00136{bottom:1043.130000px;}
.yc_c00136{bottom:1043.970000px;}
.y3_c00136{bottom:1060.245000px;}
.y8_c00136{bottom:1061.745000px;}
.y5_c00136{bottom:1062.405000px;}
.y9_c00136{bottom:1062.630000px;}
.y6_c00136{bottom:1063.470000px;}
.y7_c00136{bottom:1063.905000px;}
.y4_c00136{bottom:1063.920000px;}
.y2_c00136{bottom:1099.905000px;}
.y1_c00136{bottom:1102.050000px;}
.h4_c00136{height:4.206533px;}
.h8_c00136{height:14.612168px;}
.h6_c00136{height:23.025234px;}
.h1_c00136{height:25.091602px;}
.h5_c00136{height:31.364502px;}
.h2_c00136{height:35.571035px;}
.h7_c00136{height:39.777568px;}
.h3_c00136{height:43.910303px;}
.h0_c00136{height:1335.000000px;}
.w0_c00136{width:880.500000px;}
.x0_c00136{left:0.000000px;}
.xe_c00136{left:151.920000px;}
.x2d_c00136{left:153.420000px;}
.xf3_c00136{left:154.500000px;}
.xe8_c00136{left:155.775000px;}
.x3_c00136{left:167.580000px;}
.x74_c00136{left:169.920000px;}
.x2e_c00136{left:172.500000px;}
.xf4_c00136{left:175.920000px;}
.xd9_c00136{left:178.500000px;}
.x84_c00136{left:179.580000px;}
.xba_c00136{left:183.000000px;}
.x42_c00136{left:184.500000px;}
.xe9_c00136{left:187.500000px;}
.xd4_c00136{left:190.500000px;}
.xa9_c00136{left:192.000000px;}
.x3a_c00136{left:193.080000px;}
.x49_c00136{left:195.000000px;}
.x75_c00136{left:196.500000px;}
.xf_c00136{left:198.420000px;}
.x6a_c00136{left:199.500000px;}
.x2f_c00136{left:204.420000px;}
.xc2_c00136{left:207.420000px;}
.x5f_c00136{left:208.920000px;}
.xe6_c00136{left:211.920000px;}
.x1e_c00136{left:214.500000px;}
.x4a_c00136{left:216.000000px;}
.xf9_c00136{left:217.080000px;}
.xa2_c00136{left:220.500000px;}
.x23_c00136{left:221.580000px;}
.x3b_c00136{left:225.000000px;}
.x90_c00136{left:228.000000px;}
.xb0_c00136{left:229.080000px;}
.xda_c00136{left:232.920000px;}
.xc3_c00136{left:234.000000px;}
.xe1_c00136{left:235.500000px;}
.x9a_c00136{left:236.580000px;}
.x24_c00136{left:240.420000px;}
.x85_c00136{left:243.000000px;}
.xb1_c00136{left:247.920000px;}
.x60_c00136{left:249.420000px;}
.x91_c00136{left:250.920000px;}
.x1f_c00136{left:253.500000px;}
.x4_c00136{left:255.000000px;}
.x6b_c00136{left:256.080000px;}
.x10_c00136{left:258.000000px;}
.xa3_c00136{left:259.920000px;}
.x86_c00136{left:261.420000px;}
.xee_c00136{left:262.500000px;}
.xf7_c00136{left:265.080000px;}
.x9b_c00136{left:270.000000px;}
.x30_c00136{left:271.080000px;}
.x54_c00136{left:273.000000px;}
.x4b_c00136{left:274.080000px;}
.x5_c00136{left:277.500000px;}
.x61_c00136{left:279.000000px;}
.xaa_c00136{left:280.920000px;}
.x31_c00136{left:283.500000px;}
.x7c_c00136{left:286.500000px;}
.x43_c00136{left:288.000000px;}
.xe7_c00136{left:291.000000px;}
.x76_c00136{left:292.500000px;}
.xe2_c00136{left:293.580000px;}
.x55_c00136{left:295.080000px;}
.x20_c00136{left:297.000000px;}
.x25_c00136{left:298.920000px;}
.xdb_c00136{left:300.420000px;}
.x6c_c00136{left:301.500000px;}
.x3c_c00136{left:303.000000px;}
.xf5_c00136{left:304.500000px;}
.xa4_c00136{left:305.580000px;}
.x4c_c00136{left:307.500000px;}
.xc9_c00136{left:309.000000px;}
.x9c_c00136{left:310.500000px;}
.x6_c00136{left:312.000000px;}
.xdd_c00136{left:315.000000px;}
.x32_c00136{left:316.500000px;}
.x11_c00136{left:319.080000px;}
.x92_c00136{left:321.000000px;}
.x3d_c00136{left:323.580000px;}
.x7d_c00136{left:325.500000px;}
.x99_c00136{left:328.920000px;}
.xca_c00136{left:330.420000px;}
.xef_c00136{left:331.500000px;}
.x77_c00136{left:333.000000px;}
.xed_c00136{left:338.580000px;}
.x12_c00136{left:340.500000px;}
.x56_c00136{left:342.420000px;}
.x3e_c00136{left:343.500000px;}
.x8a_c00136{left:344.580000px;}
.xab_c00136{left:346.920000px;}
.x44_c00136{left:351.000000px;}
.x7_c00136{left:352.500000px;}
.x6d_c00136{left:354.000000px;}
.x62_c00136{left:355.080000px;}
.x26_c00136{left:357.420000px;}
.xbb_c00136{left:358.500000px;}
.xeb_c00136{left:360.000000px;}
.xa5_c00136{left:361.500000px;}
.x4d_c00136{left:363.420000px;}
.x33_c00136{left:366.000000px;}
.x13_c00136{left:367.500000px;}
.x7e_c00136{left:369.000000px;}
.xf6_c00136{left:370.080000px;}
.x57_c00136{left:372.000000px;}
.x6e_c00136{left:373.500000px;}
.x21_c00136{left:378.000000px;}
.xce_c00136{left:382.080000px;}
.xc4_c00136{left:384.000000px;}
.x8b_c00136{left:388.500000px;}
.x45_c00136{left:390.000000px;}
.xd5_c00136{left:391.500000px;}
.xac_c00136{left:393.000000px;}
.x27_c00136{left:394.500000px;}
.xb2_c00136{left:396.420000px;}
.x3f_c00136{left:397.920000px;}
.x1_c00136{left:399.000000px;}
.x6f_c00136{left:400.500000px;}
.xe0_c00136{left:403.500000px;}
.xdc_c00136{left:405.000000px;}
.xec_c00136{left:409.500000px;}
.x8_c00136{left:414.000000px;}
.x28_c00136{left:415.500000px;}
.x14_c00136{left:416.580000px;}
.xc5_c00136{left:418.500000px;}
.x63_c00136{left:420.000000px;}
.x93_c00136{left:421.920000px;}
.x4e_c00136{left:423.420000px;}
.xf0_c00136{left:424.500000px;}
.xea_c00136{left:426.000000px;}
.x58_c00136{left:427.500000px;}
.xb3_c00136{left:430.500000px;}
.x29_c00136{left:433.500000px;}
.x9d_c00136{left:435.420000px;}
.x8c_c00136{left:436.920000px;}
.x15_c00136{left:438.000000px;}
.xc6_c00136{left:439.080000px;}
.x64_c00136{left:441.420000px;}
.xf8_c00136{left:442.500000px;}
.xcf_c00136{left:445.080000px;}
.x22_c00136{left:447.000000px;}
.x78_c00136{left:448.500000px;}
.xe3_c00136{left:450.000000px;}
.x4f_c00136{left:453.000000px;}
.x34_c00136{left:454.080000px;}
.x87_c00136{left:457.500000px;}
.x94_c00136{left:459.420000px;}
.xbc_c00136{left:463.500000px;}
.x9e_c00136{left:464.580000px;}
.x16_c00136{left:466.500000px;}
.xd0_c00136{left:468.000000px;}
.x65_c00136{left:471.420000px;}
.xa6_c00136{left:472.920000px;}
.x35_c00136{left:474.420000px;}
.xde_c00136{left:475.920000px;}
.xad_c00136{left:478.080000px;}
.xc7_c00136{left:486.420000px;}
.x7f_c00136{left:487.500000px;}
.x46_c00136{left:489.000000px;}
.x70_c00136{left:490.500000px;}
.x9_c00136{left:491.580000px;}
.xf1_c00136{left:493.500000px;}
.x50_c00136{left:494.580000px;}
.xb4_c00136{left:496.920000px;}
.x17_c00136{left:501.000000px;}
.x79_c00136{left:502.500000px;}
.x2a_c00136{left:504.000000px;}
.x8d_c00136{left:505.500000px;}
.xe4_c00136{left:509.580000px;}
.xa_c00136{left:513.420000px;}
.x51_c00136{left:514.920000px;}
.x59_c00136{left:522.000000px;}
.xb5_c00136{left:523.500000px;}
.xbd_c00136{left:528.000000px;}
.x95_c00136{left:529.500000px;}
.xcb_c00136{left:531.420000px;}
.xae_c00136{left:535.500000px;}
.x9f_c00136{left:536.580000px;}
.x18_c00136{left:538.080000px;}
.xd6_c00136{left:541.920000px;}
.x52_c00136{left:543.420000px;}
.x80_c00136{left:544.920000px;}
.xd1_c00136{left:546.420000px;}
.xc8_c00136{left:547.920000px;}
.x36_c00136{left:549.000000px;}
.xdf_c00136{left:553.920000px;}
.x66_c00136{left:555.420000px;}
.x5a_c00136{left:556.920000px;}
.x47_c00136{left:559.500000px;}
.xe5_c00136{left:561.420000px;}
.x96_c00136{left:567.420000px;}
.x2b_c00136{left:568.500000px;}
.xfa_c00136{left:570.000000px;}
.x19_c00136{left:571.080000px;}
.x71_c00136{left:573.420000px;}
.xb6_c00136{left:576.000000px;}
.xbe_c00136{left:579.420000px;}
.x88_c00136{left:580.500000px;}
.xb_c00136{left:582.000000px;}
.x5b_c00136{left:585.420000px;}
.xd2_c00136{left:588.420000px;}
.xf2_c00136{left:590.580000px;}
.x37_c00136{left:592.920000px;}
.xa7_c00136{left:594.000000px;}
.x1a_c00136{left:595.920000px;}
.x7a_c00136{left:598.500000px;}
.x53_c00136{left:600.000000px;}
.x81_c00136{left:601.920000px;}
.xbf_c00136{left:606.000000px;}
.x72_c00136{left:610.920000px;}
.x67_c00136{left:612.000000px;}
.xd7_c00136{left:618.000000px;}
.xa0_c00136{left:621.420000px;}
.x40_c00136{left:622.920000px;}
.xaf_c00136{left:624.000000px;}
.x1b_c00136{left:625.920000px;}
.x97_c00136{left:627.420000px;}
.xcc_c00136{left:628.500000px;}
.xd3_c00136{left:630.000000px;}
.x5c_c00136{left:635.580000px;}
.x38_c00136{left:637.500000px;}
.x82_c00136{left:639.000000px;}
.xb7_c00136{left:640.080000px;}
.xa8_c00136{left:645.000000px;}
.x89_c00136{left:646.920000px;}
.xc_c00136{left:649.500000px;}
.x41_c00136{left:652.500000px;}
.xfb_c00136{left:654.000000px;}
.x8e_c00136{left:655.080000px;}
.x5d_c00136{left:657.000000px;}
.xd8_c00136{left:658.500000px;}
.x1c_c00136{left:660.000000px;}
.xa1_c00136{left:661.080000px;}
.x48_c00136{left:664.500000px;}
.xc0_c00136{left:666.000000px;}
.xb8_c00136{left:667.920000px;}
.x7b_c00136{left:675.420000px;}
.x5e_c00136{left:678.000000px;}
.xd_c00136{left:680.580000px;}
.xcd_c00136{left:682.920000px;}
.x8f_c00136{left:685.080000px;}
.x68_c00136{left:688.500000px;}
.x2c_c00136{left:689.580000px;}
.x83_c00136{left:693.000000px;}
.xc1_c00136{left:700.500000px;}
.x39_c00136{left:702.000000px;}
.x98_c00136{left:703.080000px;}
.x73_c00136{left:704.580000px;}
.x2_c00136{left:706.920000px;}
.x1d_c00136{left:708.000000px;}
.x69_c00136{left:712.500000px;}
.xb9_c00136{left:716.580000px;}
@media print{
.v1_c00136{vertical-align:-16.000000pt;}
.v0_c00136{vertical-align:0.000000pt;}
.ls0_c00136{letter-spacing:0.000000pt;}
.ws1_c00136{word-spacing:-8.027491pt;}
.ws0_c00136{word-spacing:-3.233333pt;}
.ws2_c00136{word-spacing:0.000000pt;}
.fs3_c00136{font-size:3.040000pt;}
.fs7_c00136{font-size:10.560000pt;}
.fs5_c00136{font-size:16.640000pt;}
.fs0_c00136{font-size:18.133333pt;}
.fs4_c00136{font-size:22.666667pt;}
.fs1_c00136{font-size:25.706667pt;}
.fs6_c00136{font-size:28.746667pt;}
.fs2_c00136{font-size:31.733333pt;}
.y0_c00136{bottom:0.000000pt;}
.yc7_c00136{bottom:225.693333pt;}
.yc9_c00136{bottom:227.773333pt;}
.yc8_c00136{bottom:229.306667pt;}
.yc6_c00136{bottom:229.693333pt;}
.yc5_c00136{bottom:243.773333pt;}
.yc4_c00136{bottom:245.106667pt;}
.yc2_c00136{bottom:247.026667pt;}
.yc3_c00136{bottom:247.040000pt;}
.yc0_c00136{bottom:262.440000pt;}
.ybf_c00136{bottom:263.400000pt;}
.ybe_c00136{bottom:263.973333pt;}
.yc1_c00136{bottom:264.360000pt;}
.ybd_c00136{bottom:280.733333pt;}
.ybc_c00136{bottom:281.693333pt;}
.yba_c00136{bottom:283.026667pt;}
.ybb_c00136{bottom:283.040000pt;}
.yb9_c00136{bottom:297.106667pt;}
.yb7_c00136{bottom:298.440000pt;}
.yb8_c00136{bottom:299.026667pt;}
.yb6_c00136{bottom:315.400000pt;}
.yb5_c00136{bottom:315.773333pt;}
.yb3_c00136{bottom:316.560000pt;}
.yb2_c00136{bottom:317.693333pt;}
.yb4_c00136{bottom:317.706667pt;}
.yb1_c00136{bottom:332.360000pt;}
.yae_c00136{bottom:333.106667pt;}
.yb0_c00136{bottom:334.066667pt;}
.yaf_c00136{bottom:335.040000pt;}
.yab_c00136{bottom:350.440000pt;}
.yac_c00136{bottom:351.973333pt;}
.yad_c00136{bottom:352.360000pt;}
.ya8_c00136{bottom:367.773333pt;}
.yaa_c00136{bottom:369.693333pt;}
.ya9_c00136{bottom:371.040000pt;}
.ya7_c00136{bottom:385.306667pt;}
.ya4_c00136{bottom:386.066667pt;}
.ya5_c00136{bottom:387.026667pt;}
.ya6_c00136{bottom:387.226667pt;}
.ya2_c00136{bottom:404.733333pt;}
.ya3_c00136{bottom:404.933333pt;}
.ya0_c00136{bottom:418.066667pt;}
.ya1_c00136{bottom:418.266667pt;}
.y9e_c00136{bottom:419.026667pt;}
.y9f_c00136{bottom:420.933333pt;}
.y9d_c00136{bottom:439.400000pt;}
.y9c_c00136{bottom:439.773333pt;}
.y97_c00136{bottom:467.226667pt;}
.y98_c00136{bottom:469.106667pt;}
.y9b_c00136{bottom:469.693333pt;}
.y99_c00136{bottom:470.066667pt;}
.y9a_c00136{bottom:471.026667pt;}
.y96_c00136{bottom:471.226667pt;}
.y95_c00136{bottom:485.133333pt;}
.y93_c00136{bottom:485.693333pt;}
.y92_c00136{bottom:487.773333pt;}
.y91_c00136{bottom:488.560000pt;}
.y8f_c00136{bottom:488.733333pt;}
.y90_c00136{bottom:489.693333pt;}
.y94_c00136{bottom:492.560000pt;}
.y8b_c00136{bottom:503.026667pt;}
.y88_c00136{bottom:503.973333pt;}
.y8d_c00136{bottom:504.360000pt;}
.y8c_c00136{bottom:505.106667pt;}
.y8e_c00136{bottom:505.893333pt;}
.y8a_c00136{bottom:506.066667pt;}
.y89_c00136{bottom:507.026667pt;}
.y85_c00136{bottom:520.733333pt;}
.y83_c00136{bottom:522.440000pt;}
.y87_c00136{bottom:522.640000pt;}
.y84_c00136{bottom:523.400000pt;}
.y86_c00136{bottom:524.360000pt;}
.y7e_c00136{bottom:539.026667pt;}
.y7d_c00136{bottom:539.773333pt;}
.y81_c00136{bottom:540.733333pt;}
.y82_c00136{bottom:541.106667pt;}
.y80_c00136{bottom:541.693333pt;}
.y7f_c00136{bottom:542.640000pt;}
.y76_c00136{bottom:557.106667pt;}
.y77_c00136{bottom:557.306667pt;}
.y79_c00136{bottom:558.066667pt;}
.y7c_c00136{bottom:559.026667pt;}
.y78_c00136{bottom:559.226667pt;}
.y7a_c00136{bottom:559.973333pt;}
.y7b_c00136{bottom:560.373333pt;}
.y73_c00136{bottom:573.693333pt;}
.y71_c00136{bottom:574.440000pt;}
.y6e_c00136{bottom:574.640000pt;}
.y6f_c00136{bottom:575.400000pt;}
.y70_c00136{bottom:576.360000pt;}
.y75_c00136{bottom:576.560000pt;}
.y72_c00136{bottom:576.733333pt;}
.y74_c00136{bottom:577.693333pt;}
.y6d_c00136{bottom:591.026667pt;}
.y6c_c00136{bottom:591.400000pt;}
.y69_c00136{bottom:591.973333pt;}
.y6a_c00136{bottom:593.106667pt;}
.y6b_c00136{bottom:595.026667pt;}
.y68_c00136{bottom:609.693333pt;}
.y67_c00136{bottom:610.440000pt;}
.y66_c00136{bottom:612.360000pt;}
.y64_c00136{bottom:626.066667pt;}
.y65_c00136{bottom:627.026667pt;}
.y62_c00136{bottom:627.773333pt;}
.y61_c00136{bottom:628.733333pt;}
.y63_c00136{bottom:629.693333pt;}
.y60_c00136{bottom:646.640000pt;}
.y5f_c00136{bottom:647.026667pt;}
.y5d_c00136{bottom:662.440000pt;}
.y5e_c00136{bottom:663.973333pt;}
.y5c_c00136{bottom:664.360000pt;}
.y5b_c00136{bottom:679.973333pt;}
.y57_c00136{bottom:680.560000pt;}
.y56_c00136{bottom:681.693333pt;}
.y58_c00136{bottom:682.066667pt;}
.y5a_c00136{bottom:682.640000pt;}
.y59_c00136{bottom:683.026667pt;}
.y55_c00136{bottom:696.360000pt;}
.y51_c00136{bottom:698.440000pt;}
.y52_c00136{bottom:699.026667pt;}
.y54_c00136{bottom:699.973333pt;}
.y53_c00136{bottom:700.360000pt;}
.y50_c00136{bottom:714.640000pt;}
.y4d_c00136{bottom:715.773333pt;}
.y4c_c00136{bottom:717.306667pt;}
.y4e_c00136{bottom:717.693333pt;}
.y4f_c00136{bottom:718.640000pt;}
.y48_c00136{bottom:731.773333pt;}
.y49_c00136{bottom:733.106667pt;}
.y4b_c00136{bottom:734.066667pt;}
.y47_c00136{bottom:735.026667pt;}
.y4a_c00136{bottom:735.973333pt;}
.y42_c00136{bottom:748.360000pt;}
.y43_c00136{bottom:749.106667pt;}
.y45_c00136{bottom:750.440000pt;}
.y41_c00136{bottom:751.400000pt;}
.y44_c00136{bottom:751.973333pt;}
.y40_c00136{bottom:752.360000pt;}
.y46_c00136{bottom:752.560000pt;}
.y3d_c00136{bottom:767.773333pt;}
.y3a_c00136{bottom:768.733333pt;}
.y3f_c00136{bottom:769.106667pt;}
.y39_c00136{bottom:769.693333pt;}
.y3c_c00136{bottom:769.893333pt;}
.y3b_c00136{bottom:770.640000pt;}
.y3e_c00136{bottom:771.026667pt;}
.y35_c00136{bottom:786.066667pt;}
.y37_c00136{bottom:786.440000pt;}
.y34_c00136{bottom:787.026667pt;}
.y38_c00136{bottom:787.226667pt;}
.y36_c00136{bottom:788.360000pt;}
.y2e_c00136{bottom:802.440000pt;}
.y30_c00136{bottom:803.400000pt;}
.y32_c00136{bottom:803.773333pt;}
.y2d_c00136{bottom:804.360000pt;}
.y33_c00136{bottom:804.560000pt;}
.y2f_c00136{bottom:805.306667pt;}
.y31_c00136{bottom:805.693333pt;}
.y2a_c00136{bottom:821.106667pt;}
.y29_c00136{bottom:821.693333pt;}
.y2c_c00136{bottom:821.893333pt;}
.y2b_c00136{bottom:822.066667pt;}
.y28_c00136{bottom:823.026667pt;}
.y26_c00136{bottom:838.440000pt;}
.y27_c00136{bottom:840.360000pt;}
.y20_c00136{bottom:854.640000pt;}
.y22_c00136{bottom:855.026667pt;}
.y1f_c00136{bottom:855.400000pt;}
.y1d_c00136{bottom:855.773333pt;}
.y23_c00136{bottom:856.560000pt;}
.y21_c00136{bottom:857.306667pt;}
.y1e_c00136{bottom:857.693333pt;}
.y25_c00136{bottom:857.893333pt;}
.y24_c00136{bottom:858.640000pt;}
.y19_c00136{bottom:873.106667pt;}
.y1b_c00136{bottom:874.066667pt;}
.y1a_c00136{bottom:875.026667pt;}
.y18_c00136{bottom:875.226667pt;}
.y1c_c00136{bottom:875.973333pt;}
.y12_c00136{bottom:890.440000pt;}
.y15_c00136{bottom:890.640000pt;}
.y17_c00136{bottom:891.400000pt;}
.y13_c00136{bottom:892.360000pt;}
.y16_c00136{bottom:892.560000pt;}
.y14_c00136{bottom:893.306667pt;}
.y11_c00136{bottom:907.773333pt;}
.y10_c00136{bottom:909.693333pt;}
.ya_c00136{bottom:925.106667pt;}
.ye_c00136{bottom:926.066667pt;}
.yf_c00136{bottom:926.440000pt;}
.yb_c00136{bottom:927.026667pt;}
.yd_c00136{bottom:927.226667pt;}
.yc_c00136{bottom:927.973333pt;}
.y3_c00136{bottom:942.440000pt;}
.y8_c00136{bottom:943.773333pt;}
.y5_c00136{bottom:944.360000pt;}
.y9_c00136{bottom:944.560000pt;}
.y6_c00136{bottom:945.306667pt;}
.y7_c00136{bottom:945.693333pt;}
.y4_c00136{bottom:945.706667pt;}
.y2_c00136{bottom:977.693333pt;}
.y1_c00136{bottom:979.600000pt;}
.h4_c00136{height:3.739141pt;}
.h8_c00136{height:12.988594pt;}
.h6_c00136{height:20.466875pt;}
.h1_c00136{height:22.303646pt;}
.h5_c00136{height:27.879557pt;}
.h2_c00136{height:31.618698pt;}
.h7_c00136{height:35.357839pt;}
.h3_c00136{height:39.031380pt;}
.h0_c00136{height:1186.666667pt;}
.w0_c00136{width:782.666667pt;}
.x0_c00136{left:0.000000pt;}
.xe_c00136{left:135.040000pt;}
.x2d_c00136{left:136.373333pt;}
.xf3_c00136{left:137.333333pt;}
.xe8_c00136{left:138.466667pt;}
.x3_c00136{left:148.960000pt;}
.x74_c00136{left:151.040000pt;}
.x2e_c00136{left:153.333333pt;}
.xf4_c00136{left:156.373333pt;}
.xd9_c00136{left:158.666667pt;}
.x84_c00136{left:159.626667pt;}
.xba_c00136{left:162.666667pt;}
.x42_c00136{left:164.000000pt;}
.xe9_c00136{left:166.666667pt;}
.xd4_c00136{left:169.333333pt;}
.xa9_c00136{left:170.666667pt;}
.x3a_c00136{left:171.626667pt;}
.x49_c00136{left:173.333333pt;}
.x75_c00136{left:174.666667pt;}
.xf_c00136{left:176.373333pt;}
.x6a_c00136{left:177.333333pt;}
.x2f_c00136{left:181.706667pt;}
.xc2_c00136{left:184.373333pt;}
.x5f_c00136{left:185.706667pt;}
.xe6_c00136{left:188.373333pt;}
.x1e_c00136{left:190.666667pt;}
.x4a_c00136{left:192.000000pt;}
.xf9_c00136{left:192.960000pt;}
.xa2_c00136{left:196.000000pt;}
.x23_c00136{left:196.960000pt;}
.x3b_c00136{left:200.000000pt;}
.x90_c00136{left:202.666667pt;}
.xb0_c00136{left:203.626667pt;}
.xda_c00136{left:207.040000pt;}
.xc3_c00136{left:208.000000pt;}
.xe1_c00136{left:209.333333pt;}
.x9a_c00136{left:210.293333pt;}
.x24_c00136{left:213.706667pt;}
.x85_c00136{left:216.000000pt;}
.xb1_c00136{left:220.373333pt;}
.x60_c00136{left:221.706667pt;}
.x91_c00136{left:223.040000pt;}
.x1f_c00136{left:225.333333pt;}
.x4_c00136{left:226.666667pt;}
.x6b_c00136{left:227.626667pt;}
.x10_c00136{left:229.333333pt;}
.xa3_c00136{left:231.040000pt;}
.x86_c00136{left:232.373333pt;}
.xee_c00136{left:233.333333pt;}
.xf7_c00136{left:235.626667pt;}
.x9b_c00136{left:240.000000pt;}
.x30_c00136{left:240.960000pt;}
.x54_c00136{left:242.666667pt;}
.x4b_c00136{left:243.626667pt;}
.x5_c00136{left:246.666667pt;}
.x61_c00136{left:248.000000pt;}
.xaa_c00136{left:249.706667pt;}
.x31_c00136{left:252.000000pt;}
.x7c_c00136{left:254.666667pt;}
.x43_c00136{left:256.000000pt;}
.xe7_c00136{left:258.666667pt;}
.x76_c00136{left:260.000000pt;}
.xe2_c00136{left:260.960000pt;}
.x55_c00136{left:262.293333pt;}
.x20_c00136{left:264.000000pt;}
.x25_c00136{left:265.706667pt;}
.xdb_c00136{left:267.040000pt;}
.x6c_c00136{left:268.000000pt;}
.x3c_c00136{left:269.333333pt;}
.xf5_c00136{left:270.666667pt;}
.xa4_c00136{left:271.626667pt;}
.x4c_c00136{left:273.333333pt;}
.xc9_c00136{left:274.666667pt;}
.x9c_c00136{left:276.000000pt;}
.x6_c00136{left:277.333333pt;}
.xdd_c00136{left:280.000000pt;}
.x32_c00136{left:281.333333pt;}
.x11_c00136{left:283.626667pt;}
.x92_c00136{left:285.333333pt;}
.x3d_c00136{left:287.626667pt;}
.x7d_c00136{left:289.333333pt;}
.x99_c00136{left:292.373333pt;}
.xca_c00136{left:293.706667pt;}
.xef_c00136{left:294.666667pt;}
.x77_c00136{left:296.000000pt;}
.xed_c00136{left:300.960000pt;}
.x12_c00136{left:302.666667pt;}
.x56_c00136{left:304.373333pt;}
.x3e_c00136{left:305.333333pt;}
.x8a_c00136{left:306.293333pt;}
.xab_c00136{left:308.373333pt;}
.x44_c00136{left:312.000000pt;}
.x7_c00136{left:313.333333pt;}
.x6d_c00136{left:314.666667pt;}
.x62_c00136{left:315.626667pt;}
.x26_c00136{left:317.706667pt;}
.xbb_c00136{left:318.666667pt;}
.xeb_c00136{left:320.000000pt;}
.xa5_c00136{left:321.333333pt;}
.x4d_c00136{left:323.040000pt;}
.x33_c00136{left:325.333333pt;}
.x13_c00136{left:326.666667pt;}
.x7e_c00136{left:328.000000pt;}
.xf6_c00136{left:328.960000pt;}
.x57_c00136{left:330.666667pt;}
.x6e_c00136{left:332.000000pt;}
.x21_c00136{left:336.000000pt;}
.xce_c00136{left:339.626667pt;}
.xc4_c00136{left:341.333333pt;}
.x8b_c00136{left:345.333333pt;}
.x45_c00136{left:346.666667pt;}
.xd5_c00136{left:348.000000pt;}
.xac_c00136{left:349.333333pt;}
.x27_c00136{left:350.666667pt;}
.xb2_c00136{left:352.373333pt;}
.x3f_c00136{left:353.706667pt;}
.x1_c00136{left:354.666667pt;}
.x6f_c00136{left:356.000000pt;}
.xe0_c00136{left:358.666667pt;}
.xdc_c00136{left:360.000000pt;}
.xec_c00136{left:364.000000pt;}
.x8_c00136{left:368.000000pt;}
.x28_c00136{left:369.333333pt;}
.x14_c00136{left:370.293333pt;}
.xc5_c00136{left:372.000000pt;}
.x63_c00136{left:373.333333pt;}
.x93_c00136{left:375.040000pt;}
.x4e_c00136{left:376.373333pt;}
.xf0_c00136{left:377.333333pt;}
.xea_c00136{left:378.666667pt;}
.x58_c00136{left:380.000000pt;}
.xb3_c00136{left:382.666667pt;}
.x29_c00136{left:385.333333pt;}
.x9d_c00136{left:387.040000pt;}
.x8c_c00136{left:388.373333pt;}
.x15_c00136{left:389.333333pt;}
.xc6_c00136{left:390.293333pt;}
.x64_c00136{left:392.373333pt;}
.xf8_c00136{left:393.333333pt;}
.xcf_c00136{left:395.626667pt;}
.x22_c00136{left:397.333333pt;}
.x78_c00136{left:398.666667pt;}
.xe3_c00136{left:400.000000pt;}
.x4f_c00136{left:402.666667pt;}
.x34_c00136{left:403.626667pt;}
.x87_c00136{left:406.666667pt;}
.x94_c00136{left:408.373333pt;}
.xbc_c00136{left:412.000000pt;}
.x9e_c00136{left:412.960000pt;}
.x16_c00136{left:414.666667pt;}
.xd0_c00136{left:416.000000pt;}
.x65_c00136{left:419.040000pt;}
.xa6_c00136{left:420.373333pt;}
.x35_c00136{left:421.706667pt;}
.xde_c00136{left:423.040000pt;}
.xad_c00136{left:424.960000pt;}
.xc7_c00136{left:432.373333pt;}
.x7f_c00136{left:433.333333pt;}
.x46_c00136{left:434.666667pt;}
.x70_c00136{left:436.000000pt;}
.x9_c00136{left:436.960000pt;}
.xf1_c00136{left:438.666667pt;}
.x50_c00136{left:439.626667pt;}
.xb4_c00136{left:441.706667pt;}
.x17_c00136{left:445.333333pt;}
.x79_c00136{left:446.666667pt;}
.x2a_c00136{left:448.000000pt;}
.x8d_c00136{left:449.333333pt;}
.xe4_c00136{left:452.960000pt;}
.xa_c00136{left:456.373333pt;}
.x51_c00136{left:457.706667pt;}
.x59_c00136{left:464.000000pt;}
.xb5_c00136{left:465.333333pt;}
.xbd_c00136{left:469.333333pt;}
.x95_c00136{left:470.666667pt;}
.xcb_c00136{left:472.373333pt;}
.xae_c00136{left:476.000000pt;}
.x9f_c00136{left:476.960000pt;}
.x18_c00136{left:478.293333pt;}
.xd6_c00136{left:481.706667pt;}
.x52_c00136{left:483.040000pt;}
.x80_c00136{left:484.373333pt;}
.xd1_c00136{left:485.706667pt;}
.xc8_c00136{left:487.040000pt;}
.x36_c00136{left:488.000000pt;}
.xdf_c00136{left:492.373333pt;}
.x66_c00136{left:493.706667pt;}
.x5a_c00136{left:495.040000pt;}
.x47_c00136{left:497.333333pt;}
.xe5_c00136{left:499.040000pt;}
.x96_c00136{left:504.373333pt;}
.x2b_c00136{left:505.333333pt;}
.xfa_c00136{left:506.666667pt;}
.x19_c00136{left:507.626667pt;}
.x71_c00136{left:509.706667pt;}
.xb6_c00136{left:512.000000pt;}
.xbe_c00136{left:515.040000pt;}
.x88_c00136{left:516.000000pt;}
.xb_c00136{left:517.333333pt;}
.x5b_c00136{left:520.373333pt;}
.xd2_c00136{left:523.040000pt;}
.xf2_c00136{left:524.960000pt;}
.x37_c00136{left:527.040000pt;}
.xa7_c00136{left:528.000000pt;}
.x1a_c00136{left:529.706667pt;}
.x7a_c00136{left:532.000000pt;}
.x53_c00136{left:533.333333pt;}
.x81_c00136{left:535.040000pt;}
.xbf_c00136{left:538.666667pt;}
.x72_c00136{left:543.040000pt;}
.x67_c00136{left:544.000000pt;}
.xd7_c00136{left:549.333333pt;}
.xa0_c00136{left:552.373333pt;}
.x40_c00136{left:553.706667pt;}
.xaf_c00136{left:554.666667pt;}
.x1b_c00136{left:556.373333pt;}
.x97_c00136{left:557.706667pt;}
.xcc_c00136{left:558.666667pt;}
.xd3_c00136{left:560.000000pt;}
.x5c_c00136{left:564.960000pt;}
.x38_c00136{left:566.666667pt;}
.x82_c00136{left:568.000000pt;}
.xb7_c00136{left:568.960000pt;}
.xa8_c00136{left:573.333333pt;}
.x89_c00136{left:575.040000pt;}
.xc_c00136{left:577.333333pt;}
.x41_c00136{left:580.000000pt;}
.xfb_c00136{left:581.333333pt;}
.x8e_c00136{left:582.293333pt;}
.x5d_c00136{left:584.000000pt;}
.xd8_c00136{left:585.333333pt;}
.x1c_c00136{left:586.666667pt;}
.xa1_c00136{left:587.626667pt;}
.x48_c00136{left:590.666667pt;}
.xc0_c00136{left:592.000000pt;}
.xb8_c00136{left:593.706667pt;}
.x7b_c00136{left:600.373333pt;}
.x5e_c00136{left:602.666667pt;}
.xd_c00136{left:604.960000pt;}
.xcd_c00136{left:607.040000pt;}
.x8f_c00136{left:608.960000pt;}
.x68_c00136{left:612.000000pt;}
.x2c_c00136{left:612.960000pt;}
.x83_c00136{left:616.000000pt;}
.xc1_c00136{left:622.666667pt;}
.x39_c00136{left:624.000000pt;}
.x98_c00136{left:624.960000pt;}
.x73_c00136{left:626.293333pt;}
.x2_c00136{left:628.373333pt;}
.x1d_c00136{left:629.333333pt;}
.x69_c00136{left:633.333333pt;}
.xb9_c00136{left:636.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_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_e4f3927751256ab30c296c86.woff2')format("woff");}.ff1_c00137{font-family:ff1_c00137;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m78_c00137{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_c00137{transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);}
.m81_c00137{transform:matrix(0.358129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358129,0.000000,0.000000,0.250000,0,0);}
.m3_c00137{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m77_c00137{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.me_c00137{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m65_c00137{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mc8_c00137{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.meb_c00137{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mca_c00137{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mdf_c00137{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m6d_c00137{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mc9_c00137{transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);}
.mdb_c00137{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m51_c00137{transform:matrix(0.384874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384874,0.000000,0.000000,0.250000,0,0);}
.mc5_c00137{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m41_c00137{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mba_c00137{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m43_c00137{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m7c_c00137{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m66_c00137{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.mb5_c00137{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.mcb_c00137{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m45_c00137{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m94_c00137{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);}
.m80_c00137{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mb3_c00137{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m4c_c00137{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.md1_c00137{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m6f_c00137{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m62_c00137{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.md8_c00137{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.mc_c00137{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m86_c00137{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m91_c00137{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m61_c00137{transform:matrix(0.411810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411810,0.000000,0.000000,0.250000,0,0);}
.mb6_c00137{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m2f_c00137{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m5a_c00137{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m84_c00137{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.md9_c00137{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m37_c00137{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.mb_c00137{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m9a_c00137{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m87_c00137{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m2b_c00137{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m13_c00137{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mb1_c00137{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.md5_c00137{transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);}
.m50_c00137{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m75_c00137{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m7e_c00137{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m26_c00137{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m5f_c00137{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.mbd_c00137{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.me4_c00137{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mea_c00137{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m33_c00137{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.me7_c00137{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.ma_c00137{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.mf_c00137{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m1f_c00137{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m8c_c00137{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.m2c_c00137{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.me5_c00137{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.me2_c00137{transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);}
.m3b_c00137{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m4a_c00137{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m17_c00137{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m6a_c00137{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m95_c00137{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.maa_c00137{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m9b_c00137{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m64_c00137{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.md4_c00137{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.mde_c00137{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mc1_c00137{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.me8_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);}
.m9c_c00137{transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);}
.m11_c00137{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.ma1_c00137{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m93_c00137{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.mbb_c00137{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m10_c00137{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.maf_c00137{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m1e_c00137{transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);}
.mae_c00137{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m90_c00137{transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);}
.m9_c00137{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m12_c00137{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m6b_c00137{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.m73_c00137{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m60_c00137{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m88_c00137{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m82_c00137{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m53_c00137{transform:matrix(0.478992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478992,0.000000,0.000000,0.250000,0,0);}
.m14_c00137{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m5e_c00137{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.md2_c00137{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.mdc_c00137{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m59_c00137{transform:matrix(0.484034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484034,0.000000,0.000000,0.250000,0,0);}
.m5b_c00137{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mb2_c00137{transform:matrix(0.487477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487477,0.000000,0.000000,0.250000,0,0);}
.ma9_c00137{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m83_c00137{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m49_c00137{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m31_c00137{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m34_c00137{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m4_c00137{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m71_c00137{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m28_c00137{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m16_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);}
.m8d_c00137{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.ma2_c00137{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mb7_c00137{transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);}
.m2a_c00137{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m9e_c00137{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m9f_c00137{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m0_c00137{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.mec_c00137{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m18_c00137{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.me6_c00137{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m56_c00137{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.m32_c00137{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mbe_c00137{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.mf0_c00137{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.mb4_c00137{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.ma7_c00137{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m1b_c00137{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m4d_c00137{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m21_c00137{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m1c_c00137{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m47_c00137{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m98_c00137{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m23_c00137{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m7b_c00137{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m36_c00137{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m6c_c00137{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m2_c00137{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m79_c00137{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m6e_c00137{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m3d_c00137{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m1d_c00137{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m38_c00137{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m7d_c00137{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.md7_c00137{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m7a_c00137{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.mac_c00137{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m69_c00137{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m85_c00137{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m6_c00137{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.me3_c00137{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m40_c00137{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.md6_c00137{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m58_c00137{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mda_c00137{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mdd_c00137{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m5_c00137{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mc2_c00137{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m39_c00137{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m3e_c00137{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m27_c00137{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m67_c00137{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m72_c00137{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m8_c00137{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mf1_c00137{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m8e_c00137{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m76_c00137{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mee_c00137{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.mb8_c00137{transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);}
.mc4_c00137{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m55_c00137{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mcc_c00137{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m5c_c00137{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m48_c00137{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.ma5_c00137{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m8a_c00137{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m25_c00137{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.ma3_c00137{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m70_c00137{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m57_c00137{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m74_c00137{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m89_c00137{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.mc6_c00137{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.med_c00137{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.mef_c00137{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.m42_c00137{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.mc3_c00137{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.md0_c00137{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m92_c00137{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m68_c00137{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m30_c00137{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m52_c00137{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.mad_c00137{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m24_c00137{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m3a_c00137{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m8f_c00137{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.me0_c00137{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.m15_c00137{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m8b_c00137{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m1_c00137{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.mc0_c00137{transform:matrix(0.606846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606846,0.000000,0.000000,0.250000,0,0);}
.m46_c00137{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.ma4_c00137{transform:matrix(0.611765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611765,0.000000,0.000000,0.250000,0,0);}
.m99_c00137{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m20_c00137{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m3c_c00137{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mcd_c00137{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.m54_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);}
.m4b_c00137{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.me9_c00137{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m9d_c00137{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.mcf_c00137{transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);}
.mce_c00137{transform:matrix(0.657059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657059,0.000000,0.000000,0.250000,0,0);}
.mbf_c00137{transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);}
.m97_c00137{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);}
.m63_c00137{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m4f_c00137{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.md_c00137{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m5d_c00137{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m2e_c00137{transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);}
.mc7_c00137{transform:matrix(0.692647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692647,0.000000,0.000000,0.250000,0,0);}
.m19_c00137{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mb9_c00137{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m96_c00137{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.md3_c00137{transform:matrix(0.707353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707353,0.000000,0.000000,0.250000,0,0);}
.mb0_c00137{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.m2d_c00137{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m4e_c00137{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m22_c00137{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m7f_c00137{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.ma8_c00137{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.ma0_c00137{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m29_c00137{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m1a_c00137{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m3f_c00137{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mab_c00137{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.ma6_c00137{transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);}
.mbc_c00137{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.me1_c00137{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m35_c00137{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m7_c00137{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.v0_c00137{vertical-align:0.000000px;}
.v1_c00137{vertical-align:6.000000px;}
.ls0_c00137{letter-spacing:0.000000px;}
.sc__c00137{text-shadow:none;}
.sc0_c00137{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00137{-webkit-text-stroke:0px transparent;}
.sc0_c00137{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00137{word-spacing:-8.075851px;}
.ws0_c00137{word-spacing:-7.379166px;}
.ws3_c00137{word-spacing:0.000000px;}
.ws1_c00137{word-spacing:4.145908px;}
.fc0_c00137{color:transparent;}
.fs4_c00137{font-size:18.720000px;}
.fs1_c00137{font-size:20.400000px;}
.fs0_c00137{font-size:25.500000px;}
.fs2_c00137{font-size:28.920000px;}
.fs5_c00137{font-size:32.340000px;}
.fs3_c00137{font-size:35.700000px;}
.fs6_c00137{font-size:39.120000px;}
.y0_c00137{bottom:0.000000px;}
.yfa_c00137{bottom:249.405000px;}
.yf6_c00137{bottom:250.905000px;}
.yf7_c00137{bottom:252.405000px;}
.yf9_c00137{bottom:252.630000px;}
.yfb_c00137{bottom:253.470000px;}
.yf8_c00137{bottom:253.905000px;}
.yee_c00137{bottom:267.405000px;}
.yf1_c00137{bottom:269.745000px;}
.yef_c00137{bottom:270.630000px;}
.yf4_c00137{bottom:271.245000px;}
.yf0_c00137{bottom:271.905000px;}
.yf5_c00137{bottom:272.130000px;}
.yf2_c00137{bottom:273.405000px;}
.yf3_c00137{bottom:273.630000px;}
.yeb_c00137{bottom:290.745000px;}
.ye9_c00137{bottom:291.405000px;}
.yec_c00137{bottom:291.630000px;}
.yea_c00137{bottom:292.905000px;}
.yed_c00137{bottom:293.130000px;}
.ye2_c00137{bottom:308.745000px;}
.ye1_c00137{bottom:308.970000px;}
.ye7_c00137{bottom:310.245000px;}
.ye0_c00137{bottom:311.130000px;}
.ye4_c00137{bottom:311.745000px;}
.ye3_c00137{bottom:311.970000px;}
.ye6_c00137{bottom:312.405000px;}
.ye8_c00137{bottom:312.630000px;}
.ye5_c00137{bottom:313.905000px;}
.yd9_c00137{bottom:328.245000px;}
.yda_c00137{bottom:329.745000px;}
.yd8_c00137{bottom:330.405000px;}
.ydd_c00137{bottom:331.245000px;}
.ydb_c00137{bottom:331.905000px;}
.ydc_c00137{bottom:332.130000px;}
.ydf_c00137{bottom:332.970000px;}
.yde_c00137{bottom:333.405000px;}
.yd4_c00137{bottom:349.245000px;}
.yd2_c00137{bottom:350.130000px;}
.yd6_c00137{bottom:350.745000px;}
.yd3_c00137{bottom:351.405000px;}
.yd7_c00137{bottom:351.630000px;}
.yd5_c00137{bottom:352.905000px;}
.yd1_c00137{bottom:370.245000px;}
.ycd_c00137{bottom:370.905000px;}
.yce_c00137{bottom:371.130000px;}
.yd0_c00137{bottom:371.325000px;}
.ycf_c00137{bottom:372.405000px;}
.yc9_c00137{bottom:388.680000px;}
.ycc_c00137{bottom:389.325000px;}
.yca_c00137{bottom:389.745000px;}
.yc8_c00137{bottom:390.405000px;}
.ycb_c00137{bottom:391.905000px;}
.yc4_c00137{bottom:406.905000px;}
.yc2_c00137{bottom:407.745000px;}
.yc7_c00137{bottom:408.405000px;}
.yc6_c00137{bottom:409.245000px;}
.yc3_c00137{bottom:410.130000px;}
.yc5_c00137{bottom:411.405000px;}
.ybb_c00137{bottom:428.550000px;}
.yc1_c00137{bottom:428.745000px;}
.ybc_c00137{bottom:429.630000px;}
.ybf_c00137{bottom:429.825000px;}
.ybd_c00137{bottom:430.470000px;}
.ybe_c00137{bottom:430.905000px;}
.yc0_c00137{bottom:431.970000px;}
.yba_c00137{bottom:448.245000px;}
.yb8_c00137{bottom:448.470000px;}
.yb5_c00137{bottom:449.325000px;}
.yb7_c00137{bottom:450.405000px;}
.yb9_c00137{bottom:450.630000px;}
.yb6_c00137{bottom:451.470000px;}
.yb1_c00137{bottom:467.745000px;}
.yb0_c00137{bottom:468.630000px;}
.yb2_c00137{bottom:469.905000px;}
.yb3_c00137{bottom:470.130000px;}
.yb4_c00137{bottom:470.970000px;}
.yaf_c00137{bottom:487.680000px;}
.yac_c00137{bottom:488.550000px;}
.yae_c00137{bottom:488.745000px;}
.yab_c00137{bottom:489.405000px;}
.yad_c00137{bottom:490.905000px;}
.yaa_c00137{bottom:506.745000px;}
.ya8_c00137{bottom:508.245000px;}
.ya7_c00137{bottom:508.905000px;}
.ya9_c00137{bottom:510.405000px;}
.ya6_c00137{bottom:526.905000px;}
.ya3_c00137{bottom:527.745000px;}
.ya0_c00137{bottom:528.630000px;}
.ya2_c00137{bottom:528.825000px;}
.y9f_c00137{bottom:529.470000px;}
.ya1_c00137{bottom:529.905000px;}
.ya4_c00137{bottom:530.130000px;}
.ya5_c00137{bottom:530.970000px;}
.y9e_c00137{bottom:546.405000px;}
.y99_c00137{bottom:546.825000px;}
.y9d_c00137{bottom:547.245000px;}
.y9b_c00137{bottom:548.970000px;}
.y9a_c00137{bottom:549.405000px;}
.y9c_c00137{bottom:549.630000px;}
.y98_c00137{bottom:565.905000px;}
.y96_c00137{bottom:566.745000px;}
.y94_c00137{bottom:567.405000px;}
.y95_c00137{bottom:568.905000px;}
.y97_c00137{bottom:569.970000px;}
.y91_c00137{bottom:586.245000px;}
.y8f_c00137{bottom:586.470000px;}
.y92_c00137{bottom:587.325000px;}
.y8d_c00137{bottom:588.405000px;}
.y90_c00137{bottom:588.630000px;}
.y8e_c00137{bottom:589.470000px;}
.y93_c00137{bottom:589.905000px;}
.y8c_c00137{bottom:604.905000px;}
.y87_c00137{bottom:607.905000px;}
.y88_c00137{bottom:608.130000px;}
.y8b_c00137{bottom:608.325000px;}
.y89_c00137{bottom:608.970000px;}
.y8a_c00137{bottom:609.405000px;}
.y81_c00137{bottom:625.245000px;}
.y86_c00137{bottom:626.745000px;}
.y80_c00137{bottom:627.405000px;}
.y84_c00137{bottom:627.630000px;}
.y83_c00137{bottom:627.825000px;}
.y85_c00137{bottom:628.470000px;}
.y82_c00137{bottom:628.905000px;}
.y7a_c00137{bottom:643.905000px;}
.y7e_c00137{bottom:645.825000px;}
.y79_c00137{bottom:646.050000px;}
.y7d_c00137{bottom:646.245000px;}
.y78_c00137{bottom:646.470000px;}
.y7f_c00137{bottom:647.130000px;}
.y7b_c00137{bottom:647.970000px;}
.y7c_c00137{bottom:648.405000px;}
.y75_c00137{bottom:663.405000px;}
.y74_c00137{bottom:665.745000px;}
.y70_c00137{bottom:665.970000px;}
.y71_c00137{bottom:666.405000px;}
.y73_c00137{bottom:666.630000px;}
.y77_c00137{bottom:666.825000px;}
.y76_c00137{bottom:667.470000px;}
.y72_c00137{bottom:667.905000px;}
.y6b_c00137{bottom:683.745000px;}
.y6c_c00137{bottom:685.245000px;}
.y6f_c00137{bottom:686.325000px;}
.y6e_c00137{bottom:686.970000px;}
.y6d_c00137{bottom:687.405000px;}
.y64_c00137{bottom:703.680000px;}
.y6a_c00137{bottom:704.745000px;}
.y65_c00137{bottom:705.825000px;}
.y67_c00137{bottom:706.245000px;}
.y68_c00137{bottom:707.130000px;}
.y66_c00137{bottom:707.325000px;}
.y69_c00137{bottom:708.405000px;}
.y5e_c00137{bottom:724.245000px;}
.y5d_c00137{bottom:724.905000px;}
.y5f_c00137{bottom:725.130000px;}
.y63_c00137{bottom:725.325000px;}
.y61_c00137{bottom:725.745000px;}
.y60_c00137{bottom:726.405000px;}
.y62_c00137{bottom:726.630000px;}
.y57_c00137{bottom:743.745000px;}
.y5c_c00137{bottom:744.180000px;}
.y5b_c00137{bottom:745.245000px;}
.y58_c00137{bottom:745.905000px;}
.y59_c00137{bottom:746.130000px;}
.y5a_c00137{bottom:747.405000px;}
.y55_c00137{bottom:764.745000px;}
.y54_c00137{bottom:765.405000px;}
.y56_c00137{bottom:766.905000px;}
.y51_c00137{bottom:782.745000px;}
.y52_c00137{bottom:784.245000px;}
.y50_c00137{bottom:784.905000px;}
.y53_c00137{bottom:786.405000px;}
.y4f_c00137{bottom:803.745000px;}
.y4a_c00137{bottom:804.405000px;}
.y4e_c00137{bottom:804.630000px;}
.y4d_c00137{bottom:805.470000px;}
.y4b_c00137{bottom:805.905000px;}
.y4c_c00137{bottom:806.970000px;}
.y46_c00137{bottom:822.180000px;}
.y48_c00137{bottom:823.245000px;}
.y47_c00137{bottom:825.405000px;}
.y49_c00137{bottom:826.470000px;}
.y42_c00137{bottom:842.745000px;}
.y3f_c00137{bottom:843.405000px;}
.y44_c00137{bottom:843.825000px;}
.y41_c00137{bottom:844.470000px;}
.y40_c00137{bottom:844.905000px;}
.y43_c00137{bottom:845.130000px;}
.y45_c00137{bottom:845.970000px;}
.y3d_c00137{bottom:862.245000px;}
.y3b_c00137{bottom:864.405000px;}
.y3c_c00137{bottom:864.630000px;}
.y3e_c00137{bottom:865.470000px;}
.y37_c00137{bottom:881.745000px;}
.y3a_c00137{bottom:882.825000px;}
.y36_c00137{bottom:883.905000px;}
.y39_c00137{bottom:884.130000px;}
.y38_c00137{bottom:884.970000px;}
.y2f_c00137{bottom:901.245000px;}
.y30_c00137{bottom:901.470000px;}
.y32_c00137{bottom:901.680000px;}
.y31_c00137{bottom:902.745000px;}
.y35_c00137{bottom:903.630000px;}
.y34_c00137{bottom:904.470000px;}
.y33_c00137{bottom:904.905000px;}
.y2d_c00137{bottom:922.245000px;}
.y2a_c00137{bottom:922.905000px;}
.y2e_c00137{bottom:923.130000px;}
.y2b_c00137{bottom:923.970000px;}
.y2c_c00137{bottom:924.405000px;}
.y29_c00137{bottom:943.905000px;}
.y26_c00137{bottom:960.405000px;}
.y27_c00137{bottom:961.245000px;}
.y23_c00137{bottom:961.905000px;}
.y25_c00137{bottom:962.970000px;}
.y24_c00137{bottom:963.405000px;}
.y28_c00137{bottom:963.630000px;}
.y1d_c00137{bottom:980.745000px;}
.y1c_c00137{bottom:981.405000px;}
.y1e_c00137{bottom:981.630000px;}
.y22_c00137{bottom:982.245000px;}
.y1f_c00137{bottom:982.905000px;}
.y20_c00137{bottom:983.130000px;}
.y21_c00137{bottom:984.405000px;}
.y1a_c00137{bottom:1000.245000px;}
.y1b_c00137{bottom:1001.130000px;}
.y19_c00137{bottom:1001.325000px;}
.y16_c00137{bottom:1001.970000px;}
.y17_c00137{bottom:1002.405000px;}
.y18_c00137{bottom:1003.470000px;}
.y15_c00137{bottom:1019.745000px;}
.yf_c00137{bottom:1020.405000px;}
.y14_c00137{bottom:1021.245000px;}
.y11_c00137{bottom:1021.470000px;}
.y10_c00137{bottom:1021.905000px;}
.y12_c00137{bottom:1022.130000px;}
.y13_c00137{bottom:1023.405000px;}
.yb_c00137{bottom:1039.245000px;}
.yc_c00137{bottom:1040.745000px;}
.y9_c00137{bottom:1040.970000px;}
.ya_c00137{bottom:1041.405000px;}
.ye_c00137{bottom:1041.825000px;}
.yd_c00137{bottom:1042.905000px;}
.y4_c00137{bottom:1058.745000px;}
.y7_c00137{bottom:1060.245000px;}
.y3_c00137{bottom:1060.905000px;}
.y5_c00137{bottom:1061.130000px;}
.y6_c00137{bottom:1061.325000px;}
.y8_c00137{bottom:1062.405000px;}
.y2_c00137{bottom:1099.050000px;}
.y1_c00137{bottom:1100.970000px;}
.h5_c00137{height:23.025234px;}
.h2_c00137{height:25.091602px;}
.h1_c00137{height:31.364502px;}
.h3_c00137{height:35.571035px;}
.h6_c00137{height:39.777568px;}
.h4_c00137{height:43.910303px;}
.h8_c00137{height:48.116836px;}
.h7_c00137{height:49.910303px;}
.h0_c00137{height:1335.000000px;}
.w0_c00137{width:880.500000px;}
.x0_c00137{left:0.000000px;}
.x1_c00137{left:151.920000px;}
.xec_c00137{left:153.000000px;}
.x43_c00137{left:166.500000px;}
.x9c_c00137{left:167.580000px;}
.xf0_c00137{left:169.080000px;}
.xf9_c00137{left:171.420000px;}
.xe_c00137{left:172.920000px;}
.xcc_c00137{left:175.080000px;}
.xb0_c00137{left:177.000000px;}
.x28_c00137{left:178.080000px;}
.x3_c00137{left:180.000000px;}
.x84_c00137{left:182.580000px;}
.xb5_c00137{left:186.000000px;}
.x106_c00137{left:190.500000px;}
.x3c_c00137{left:191.580000px;}
.x64_c00137{left:193.500000px;}
.x34_c00137{left:195.420000px;}
.x1b_c00137{left:197.580000px;}
.xac_c00137{left:199.500000px;}
.x44_c00137{left:201.420000px;}
.xf_c00137{left:202.500000px;}
.xf5_c00137{left:207.000000px;}
.xcd_c00137{left:210.000000px;}
.x59_c00137{left:212.580000px;}
.x102_c00137{left:219.000000px;}
.x7a_c00137{left:221.580000px;}
.x70_c00137{left:225.000000px;}
.x9d_c00137{left:228.000000px;}
.xa1_c00137{left:229.500000px;}
.xfa_c00137{left:230.580000px;}
.x85_c00137{left:232.920000px;}
.x4_c00137{left:234.420000px;}
.x45_c00137{left:236.580000px;}
.xbe_c00137{left:238.080000px;}
.x95_c00137{left:240.420000px;}
.x107_c00137{left:244.920000px;}
.xa2_c00137{left:247.920000px;}
.x8e_c00137{left:250.275000px;}
.xc6_c00137{left:251.580000px;}
.x7b_c00137{left:253.920000px;}
.x3d_c00137{left:255.000000px;}
.x4d_c00137{left:256.275000px;}
.x1c_c00137{left:259.500000px;}
.x105_c00137{left:260.580000px;}
.x10_c00137{left:261.855000px;}
.x65_c00137{left:265.500000px;}
.x29_c00137{left:268.500000px;}
.x103_c00137{left:269.580000px;}
.xe5_c00137{left:271.920000px;}
.x5a_c00137{left:273.420000px;}
.xbb_c00137{left:274.500000px;}
.xd8_c00137{left:276.420000px;}
.x3e_c00137{left:277.920000px;}
.x1d_c00137{left:279.000000px;}
.x7c_c00137{left:280.920000px;}
.xd0_c00137{left:283.920000px;}
.x2a_c00137{left:286.500000px;}
.xc7_c00137{left:288.000000px;}
.xee_c00137{left:291.000000px;}
.x1e_c00137{left:294.000000px;}
.xfb_c00137{left:296.580000px;}
.x46_c00137{left:298.080000px;}
.xf6_c00137{left:300.000000px;}
.x4e_c00137{left:301.275000px;}
.xa3_c00137{left:306.000000px;}
.x5_c00137{left:307.080000px;}
.x96_c00137{left:308.580000px;}
.x5b_c00137{left:310.500000px;}
.x35_c00137{left:312.000000px;}
.x86_c00137{left:313.080000px;}
.x66_c00137{left:316.920000px;}
.xe7_c00137{left:318.000000px;}
.x1f_c00137{left:319.920000px;}
.x11_c00137{left:321.000000px;}
.x71_c00137{left:322.500000px;}
.x108_c00137{left:325.080000px;}
.xfc_c00137{left:327.420000px;}
.x97_c00137{left:328.920000px;}
.x87_c00137{left:331.500000px;}
.xbf_c00137{left:333.000000px;}
.x4f_c00137{left:334.500000px;}
.xb6_c00137{left:336.420000px;}
.x2b_c00137{left:339.000000px;}
.xe1_c00137{left:340.080000px;}
.x8f_c00137{left:341.580000px;}
.xb1_c00137{left:344.580000px;}
.x12_c00137{left:346.920000px;}
.x5c_c00137{left:349.080000px;}
.x10a_c00137{left:351.000000px;}
.x6_c00137{left:352.920000px;}
.x98_c00137{left:354.000000px;}
.x67_c00137{left:355.500000px;}
.x3f_c00137{left:357.000000px;}
.x7d_c00137{left:360.000000px;}
.x20_c00137{left:361.080000px;}
.xc8_c00137{left:363.420000px;}
.x72_c00137{left:367.080000px;}
.xc0_c00137{left:369.000000px;}
.xce_c00137{left:370.500000px;}
.xb7_c00137{left:372.420000px;}
.x68_c00137{left:375.000000px;}
.x7e_c00137{left:376.920000px;}
.x13_c00137{left:378.000000px;}
.x21_c00137{left:379.920000px;}
.xc9_c00137{left:381.420000px;}
.x36_c00137{left:385.500000px;}
.xd1_c00137{left:387.420000px;}
.xd9_c00137{left:388.500000px;}
.x90_c00137{left:389.775000px;}
.x7_c00137{left:391.500000px;}
.x50_c00137{left:393.000000px;}
.x5d_c00137{left:394.080000px;}
.xef_c00137{left:396.420000px;}
.xe8_c00137{left:397.920000px;}
.x2_c00137{left:399.000000px;}
.x88_c00137{left:400.080000px;}
.x69_c00137{left:402.000000px;}
.x47_c00137{left:403.500000px;}
.xd2_c00137{left:405.000000px;}
.x22_c00137{left:406.080000px;}
.xda_c00137{left:408.000000px;}
.x14_c00137{left:409.500000px;}
.x2c_c00137{left:411.000000px;}
.x37_c00137{left:412.920000px;}
.x5e_c00137{left:414.000000px;}
.x40_c00137{left:415.500000px;}
.xbc_c00137{left:418.500000px;}
.x6a_c00137{left:421.080000px;}
.xad_c00137{left:423.000000px;}
.x48_c00137{left:424.080000px;}
.x91_c00137{left:425.580000px;}
.x8_c00137{left:427.080000px;}
.xdb_c00137{left:429.420000px;}
.xfd_c00137{left:432.000000px;}
.x73_c00137{left:435.420000px;}
.x99_c00137{left:436.920000px;}
.xde_c00137{left:439.920000px;}
.xaa_c00137{left:441.000000px;}
.x38_c00137{left:442.920000px;}
.xe6_c00137{left:444.000000px;}
.x51_c00137{left:445.500000px;}
.x2d_c00137{left:447.420000px;}
.xe9_c00137{left:448.920000px;}
.xd3_c00137{left:450.000000px;}
.x5f_c00137{left:451.080000px;}
.x92_c00137{left:455.145000px;}
.x7f_c00137{left:456.420000px;}
.x89_c00137{left:459.000000px;}
.x9_c00137{left:460.500000px;}
.xea_c00137{left:462.000000px;}
.xd4_c00137{left:463.500000px;}
.x41_c00137{left:465.420000px;}
.x52_c00137{left:468.000000px;}
.x9a_c00137{left:471.000000px;}
.x2e_c00137{left:474.000000px;}
.x6b_c00137{left:478.500000px;}
.xa4_c00137{left:480.000000px;}
.xb2_c00137{left:481.920000px;}
.x60_c00137{left:484.500000px;}
.x15_c00137{left:486.000000px;}
.x9b_c00137{left:487.500000px;}
.xc1_c00137{left:489.000000px;}
.x8a_c00137{left:490.500000px;}
.xa5_c00137{left:492.000000px;}
.x39_c00137{left:493.920000px;}
.x49_c00137{left:496.080000px;}
.x23_c00137{left:498.000000px;}
.xd5_c00137{left:499.920000px;}
.x74_c00137{left:501.000000px;}
.xfe_c00137{left:502.080000px;}
.x2f_c00137{left:503.580000px;}
.x9e_c00137{left:506.145000px;}
.xae_c00137{left:508.920000px;}
.x53_c00137{left:510.420000px;}
.xc2_c00137{left:511.920000px;}
.xf1_c00137{left:514.500000px;}
.x75_c00137{left:520.920000px;}
.xd6_c00137{left:523.080000px;}
.xa_c00137{left:525.420000px;}
.xa6_c00137{left:528.420000px;}
.x24_c00137{left:529.920000px;}
.xe2_c00137{left:532.080000px;}
.xdc_c00137{left:534.000000px;}
.x6c_c00137{left:535.920000px;}
.x16_c00137{left:538.500000px;}
.x80_c00137{left:540.000000px;}
.x76_c00137{left:543.420000px;}
.xb3_c00137{left:544.500000px;}
.x54_c00137{left:546.420000px;}
.xa7_c00137{left:547.500000px;}
.x4a_c00137{left:549.000000px;}
.x10b_c00137{left:551.580000px;}
.x100_c00137{left:553.080000px;}
.xca_c00137{left:554.580000px;}
.x17_c00137{left:558.420000px;}
.x3a_c00137{left:561.000000px;}
.xb8_c00137{left:562.080000px;}
.x9f_c00137{left:563.580000px;}
.x8b_c00137{left:568.920000px;}
.x4b_c00137{left:570.000000px;}
.x61_c00137{left:571.080000px;}
.xcf_c00137{left:573.420000px;}
.x55_c00137{left:575.580000px;}
.xdf_c00137{left:577.500000px;}
.xb_c00137{left:579.420000px;}
.xe3_c00137{left:580.500000px;}
.x42_c00137{left:583.500000px;}
.x81_c00137{left:586.500000px;}
.xcb_c00137{left:588.420000px;}
.x104_c00137{left:591.000000px;}
.x6d_c00137{left:592.500000px;}
.xf7_c00137{left:594.000000px;}
.x18_c00137{left:595.080000px;}
.x25_c00137{left:598.500000px;}
.x93_c00137{left:599.580000px;}
.xb4_c00137{left:601.500000px;}
.xd7_c00137{left:603.420000px;}
.xc3_c00137{left:605.580000px;}
.xbd_c00137{left:607.080000px;}
.xc_c00137{left:609.420000px;}
.x30_c00137{left:610.500000px;}
.x56_c00137{left:613.500000px;}
.xa8_c00137{left:614.580000px;}
.x26_c00137{left:616.500000px;}
.x19_c00137{left:617.580000px;}
.x77_c00137{left:619.920000px;}
.x82_c00137{left:622.500000px;}
.xed_c00137{left:624.420000px;}
.x8c_c00137{left:628.500000px;}
.xaf_c00137{left:630.000000px;}
.xb9_c00137{left:631.500000px;}
.xa0_c00137{left:633.000000px;}
.x57_c00137{left:634.080000px;}
.xf2_c00137{left:636.000000px;}
.x94_c00137{left:637.920000px;}
.xdd_c00137{left:639.000000px;}
.x6e_c00137{left:640.080000px;}
.xe0_c00137{left:646.080000px;}
.xeb_c00137{left:649.500000px;}
.x4c_c00137{left:652.500000px;}
.xc4_c00137{left:654.420000px;}
.xff_c00137{left:655.500000px;}
.x31_c00137{left:657.000000px;}
.xa9_c00137{left:658.080000px;}
.x3b_c00137{left:661.500000px;}
.xe4_c00137{left:662.775000px;}
.x62_c00137{left:666.000000px;}
.x83_c00137{left:675.000000px;}
.xc5_c00137{left:676.500000px;}
.x27_c00137{left:677.580000px;}
.xf3_c00137{left:679.080000px;}
.x78_c00137{left:681.000000px;}
.x101_c00137{left:687.000000px;}
.x6f_c00137{left:688.500000px;}
.xd_c00137{left:691.920000px;}
.x109_c00137{left:694.500000px;}
.xf8_c00137{left:697.920000px;}
.xba_c00137{left:699.000000px;}
.x8d_c00137{left:700.500000px;}
.x63_c00137{left:703.920000px;}
.x32_c00137{left:705.000000px;}
.x1a_c00137{left:706.920000px;}
.x58_c00137{left:709.500000px;}
.x79_c00137{left:710.580000px;}
.xab_c00137{left:714.000000px;}
.xf4_c00137{left:718.080000px;}
.x33_c00137{left:721.500000px;}
@media print{
.v0_c00137{vertical-align:0.000000pt;}
.v1_c00137{vertical-align:5.333333pt;}
.ls0_c00137{letter-spacing:0.000000pt;}
.ws2_c00137{word-spacing:-7.178534pt;}
.ws0_c00137{word-spacing:-6.559259pt;}
.ws3_c00137{word-spacing:0.000000pt;}
.ws1_c00137{word-spacing:3.685251pt;}
.fs4_c00137{font-size:16.640000pt;}
.fs1_c00137{font-size:18.133333pt;}
.fs0_c00137{font-size:22.666667pt;}
.fs2_c00137{font-size:25.706667pt;}
.fs5_c00137{font-size:28.746667pt;}
.fs3_c00137{font-size:31.733333pt;}
.fs6_c00137{font-size:34.773333pt;}
.y0_c00137{bottom:0.000000pt;}
.yfa_c00137{bottom:221.693333pt;}
.yf6_c00137{bottom:223.026667pt;}
.yf7_c00137{bottom:224.360000pt;}
.yf9_c00137{bottom:224.560000pt;}
.yfb_c00137{bottom:225.306667pt;}
.yf8_c00137{bottom:225.693333pt;}
.yee_c00137{bottom:237.693333pt;}
.yf1_c00137{bottom:239.773333pt;}
.yef_c00137{bottom:240.560000pt;}
.yf4_c00137{bottom:241.106667pt;}
.yf0_c00137{bottom:241.693333pt;}
.yf5_c00137{bottom:241.893333pt;}
.yf2_c00137{bottom:243.026667pt;}
.yf3_c00137{bottom:243.226667pt;}
.yeb_c00137{bottom:258.440000pt;}
.ye9_c00137{bottom:259.026667pt;}
.yec_c00137{bottom:259.226667pt;}
.yea_c00137{bottom:260.360000pt;}
.yed_c00137{bottom:260.560000pt;}
.ye2_c00137{bottom:274.440000pt;}
.ye1_c00137{bottom:274.640000pt;}
.ye7_c00137{bottom:275.773333pt;}
.ye0_c00137{bottom:276.560000pt;}
.ye4_c00137{bottom:277.106667pt;}
.ye3_c00137{bottom:277.306667pt;}
.ye6_c00137{bottom:277.693333pt;}
.ye8_c00137{bottom:277.893333pt;}
.ye5_c00137{bottom:279.026667pt;}
.yd9_c00137{bottom:291.773333pt;}
.yda_c00137{bottom:293.106667pt;}
.yd8_c00137{bottom:293.693333pt;}
.ydd_c00137{bottom:294.440000pt;}
.ydb_c00137{bottom:295.026667pt;}
.ydc_c00137{bottom:295.226667pt;}
.ydf_c00137{bottom:295.973333pt;}
.yde_c00137{bottom:296.360000pt;}
.yd4_c00137{bottom:310.440000pt;}
.yd2_c00137{bottom:311.226667pt;}
.yd6_c00137{bottom:311.773333pt;}
.yd3_c00137{bottom:312.360000pt;}
.yd7_c00137{bottom:312.560000pt;}
.yd5_c00137{bottom:313.693333pt;}
.yd1_c00137{bottom:329.106667pt;}
.ycd_c00137{bottom:329.693333pt;}
.yce_c00137{bottom:329.893333pt;}
.yd0_c00137{bottom:330.066667pt;}
.ycf_c00137{bottom:331.026667pt;}
.yc9_c00137{bottom:345.493333pt;}
.ycc_c00137{bottom:346.066667pt;}
.yca_c00137{bottom:346.440000pt;}
.yc8_c00137{bottom:347.026667pt;}
.ycb_c00137{bottom:348.360000pt;}
.yc4_c00137{bottom:361.693333pt;}
.yc2_c00137{bottom:362.440000pt;}
.yc7_c00137{bottom:363.026667pt;}
.yc6_c00137{bottom:363.773333pt;}
.yc3_c00137{bottom:364.560000pt;}
.yc5_c00137{bottom:365.693333pt;}
.ybb_c00137{bottom:380.933333pt;}
.yc1_c00137{bottom:381.106667pt;}
.ybc_c00137{bottom:381.893333pt;}
.ybf_c00137{bottom:382.066667pt;}
.ybd_c00137{bottom:382.640000pt;}
.ybe_c00137{bottom:383.026667pt;}
.yc0_c00137{bottom:383.973333pt;}
.yba_c00137{bottom:398.440000pt;}
.yb8_c00137{bottom:398.640000pt;}
.yb5_c00137{bottom:399.400000pt;}
.yb7_c00137{bottom:400.360000pt;}
.yb9_c00137{bottom:400.560000pt;}
.yb6_c00137{bottom:401.306667pt;}
.yb1_c00137{bottom:415.773333pt;}
.yb0_c00137{bottom:416.560000pt;}
.yb2_c00137{bottom:417.693333pt;}
.yb3_c00137{bottom:417.893333pt;}
.yb4_c00137{bottom:418.640000pt;}
.yaf_c00137{bottom:433.493333pt;}
.yac_c00137{bottom:434.266667pt;}
.yae_c00137{bottom:434.440000pt;}
.yab_c00137{bottom:435.026667pt;}
.yad_c00137{bottom:436.360000pt;}
.yaa_c00137{bottom:450.440000pt;}
.ya8_c00137{bottom:451.773333pt;}
.ya7_c00137{bottom:452.360000pt;}
.ya9_c00137{bottom:453.693333pt;}
.ya6_c00137{bottom:468.360000pt;}
.ya3_c00137{bottom:469.106667pt;}
.ya0_c00137{bottom:469.893333pt;}
.ya2_c00137{bottom:470.066667pt;}
.y9f_c00137{bottom:470.640000pt;}
.ya1_c00137{bottom:471.026667pt;}
.ya4_c00137{bottom:471.226667pt;}
.ya5_c00137{bottom:471.973333pt;}
.y9e_c00137{bottom:485.693333pt;}
.y99_c00137{bottom:486.066667pt;}
.y9d_c00137{bottom:486.440000pt;}
.y9b_c00137{bottom:487.973333pt;}
.y9a_c00137{bottom:488.360000pt;}
.y9c_c00137{bottom:488.560000pt;}
.y98_c00137{bottom:503.026667pt;}
.y96_c00137{bottom:503.773333pt;}
.y94_c00137{bottom:504.360000pt;}
.y95_c00137{bottom:505.693333pt;}
.y97_c00137{bottom:506.640000pt;}
.y91_c00137{bottom:521.106667pt;}
.y8f_c00137{bottom:521.306667pt;}
.y92_c00137{bottom:522.066667pt;}
.y8d_c00137{bottom:523.026667pt;}
.y90_c00137{bottom:523.226667pt;}
.y8e_c00137{bottom:523.973333pt;}
.y93_c00137{bottom:524.360000pt;}
.y8c_c00137{bottom:537.693333pt;}
.y87_c00137{bottom:540.360000pt;}
.y88_c00137{bottom:540.560000pt;}
.y8b_c00137{bottom:540.733333pt;}
.y89_c00137{bottom:541.306667pt;}
.y8a_c00137{bottom:541.693333pt;}
.y81_c00137{bottom:555.773333pt;}
.y86_c00137{bottom:557.106667pt;}
.y80_c00137{bottom:557.693333pt;}
.y84_c00137{bottom:557.893333pt;}
.y83_c00137{bottom:558.066667pt;}
.y85_c00137{bottom:558.640000pt;}
.y82_c00137{bottom:559.026667pt;}
.y7a_c00137{bottom:572.360000pt;}
.y7e_c00137{bottom:574.066667pt;}
.y79_c00137{bottom:574.266667pt;}
.y7d_c00137{bottom:574.440000pt;}
.y78_c00137{bottom:574.640000pt;}
.y7f_c00137{bottom:575.226667pt;}
.y7b_c00137{bottom:575.973333pt;}
.y7c_c00137{bottom:576.360000pt;}
.y75_c00137{bottom:589.693333pt;}
.y74_c00137{bottom:591.773333pt;}
.y70_c00137{bottom:591.973333pt;}
.y71_c00137{bottom:592.360000pt;}
.y73_c00137{bottom:592.560000pt;}
.y77_c00137{bottom:592.733333pt;}
.y76_c00137{bottom:593.306667pt;}
.y72_c00137{bottom:593.693333pt;}
.y6b_c00137{bottom:607.773333pt;}
.y6c_c00137{bottom:609.106667pt;}
.y6f_c00137{bottom:610.066667pt;}
.y6e_c00137{bottom:610.640000pt;}
.y6d_c00137{bottom:611.026667pt;}
.y64_c00137{bottom:625.493333pt;}
.y6a_c00137{bottom:626.440000pt;}
.y65_c00137{bottom:627.400000pt;}
.y67_c00137{bottom:627.773333pt;}
.y68_c00137{bottom:628.560000pt;}
.y66_c00137{bottom:628.733333pt;}
.y69_c00137{bottom:629.693333pt;}
.y5e_c00137{bottom:643.773333pt;}
.y5d_c00137{bottom:644.360000pt;}
.y5f_c00137{bottom:644.560000pt;}
.y63_c00137{bottom:644.733333pt;}
.y61_c00137{bottom:645.106667pt;}
.y60_c00137{bottom:645.693333pt;}
.y62_c00137{bottom:645.893333pt;}
.y57_c00137{bottom:661.106667pt;}
.y5c_c00137{bottom:661.493333pt;}
.y5b_c00137{bottom:662.440000pt;}
.y58_c00137{bottom:663.026667pt;}
.y59_c00137{bottom:663.226667pt;}
.y5a_c00137{bottom:664.360000pt;}
.y55_c00137{bottom:679.773333pt;}
.y54_c00137{bottom:680.360000pt;}
.y56_c00137{bottom:681.693333pt;}
.y51_c00137{bottom:695.773333pt;}
.y52_c00137{bottom:697.106667pt;}
.y50_c00137{bottom:697.693333pt;}
.y53_c00137{bottom:699.026667pt;}
.y4f_c00137{bottom:714.440000pt;}
.y4a_c00137{bottom:715.026667pt;}
.y4e_c00137{bottom:715.226667pt;}
.y4d_c00137{bottom:715.973333pt;}
.y4b_c00137{bottom:716.360000pt;}
.y4c_c00137{bottom:717.306667pt;}
.y46_c00137{bottom:730.826667pt;}
.y48_c00137{bottom:731.773333pt;}
.y47_c00137{bottom:733.693333pt;}
.y49_c00137{bottom:734.640000pt;}
.y42_c00137{bottom:749.106667pt;}
.y3f_c00137{bottom:749.693333pt;}
.y44_c00137{bottom:750.066667pt;}
.y41_c00137{bottom:750.640000pt;}
.y40_c00137{bottom:751.026667pt;}
.y43_c00137{bottom:751.226667pt;}
.y45_c00137{bottom:751.973333pt;}
.y3d_c00137{bottom:766.440000pt;}
.y3b_c00137{bottom:768.360000pt;}
.y3c_c00137{bottom:768.560000pt;}
.y3e_c00137{bottom:769.306667pt;}
.y37_c00137{bottom:783.773333pt;}
.y3a_c00137{bottom:784.733333pt;}
.y36_c00137{bottom:785.693333pt;}
.y39_c00137{bottom:785.893333pt;}
.y38_c00137{bottom:786.640000pt;}
.y2f_c00137{bottom:801.106667pt;}
.y30_c00137{bottom:801.306667pt;}
.y32_c00137{bottom:801.493333pt;}
.y31_c00137{bottom:802.440000pt;}
.y35_c00137{bottom:803.226667pt;}
.y34_c00137{bottom:803.973333pt;}
.y33_c00137{bottom:804.360000pt;}
.y2d_c00137{bottom:819.773333pt;}
.y2a_c00137{bottom:820.360000pt;}
.y2e_c00137{bottom:820.560000pt;}
.y2b_c00137{bottom:821.306667pt;}
.y2c_c00137{bottom:821.693333pt;}
.y29_c00137{bottom:839.026667pt;}
.y26_c00137{bottom:853.693333pt;}
.y27_c00137{bottom:854.440000pt;}
.y23_c00137{bottom:855.026667pt;}
.y25_c00137{bottom:855.973333pt;}
.y24_c00137{bottom:856.360000pt;}
.y28_c00137{bottom:856.560000pt;}
.y1d_c00137{bottom:871.773333pt;}
.y1c_c00137{bottom:872.360000pt;}
.y1e_c00137{bottom:872.560000pt;}
.y22_c00137{bottom:873.106667pt;}
.y1f_c00137{bottom:873.693333pt;}
.y20_c00137{bottom:873.893333pt;}
.y21_c00137{bottom:875.026667pt;}
.y1a_c00137{bottom:889.106667pt;}
.y1b_c00137{bottom:889.893333pt;}
.y19_c00137{bottom:890.066667pt;}
.y16_c00137{bottom:890.640000pt;}
.y17_c00137{bottom:891.026667pt;}
.y18_c00137{bottom:891.973333pt;}
.y15_c00137{bottom:906.440000pt;}
.yf_c00137{bottom:907.026667pt;}
.y14_c00137{bottom:907.773333pt;}
.y11_c00137{bottom:907.973333pt;}
.y10_c00137{bottom:908.360000pt;}
.y12_c00137{bottom:908.560000pt;}
.y13_c00137{bottom:909.693333pt;}
.yb_c00137{bottom:923.773333pt;}
.yc_c00137{bottom:925.106667pt;}
.y9_c00137{bottom:925.306667pt;}
.ya_c00137{bottom:925.693333pt;}
.ye_c00137{bottom:926.066667pt;}
.yd_c00137{bottom:927.026667pt;}
.y4_c00137{bottom:941.106667pt;}
.y7_c00137{bottom:942.440000pt;}
.y3_c00137{bottom:943.026667pt;}
.y5_c00137{bottom:943.226667pt;}
.y6_c00137{bottom:943.400000pt;}
.y8_c00137{bottom:944.360000pt;}
.y2_c00137{bottom:976.933333pt;}
.y1_c00137{bottom:978.640000pt;}
.h5_c00137{height:20.466875pt;}
.h2_c00137{height:22.303646pt;}
.h1_c00137{height:27.879557pt;}
.h3_c00137{height:31.618698pt;}
.h6_c00137{height:35.357839pt;}
.h4_c00137{height:39.031380pt;}
.h8_c00137{height:42.770521pt;}
.h7_c00137{height:44.364714pt;}
.h0_c00137{height:1186.666667pt;}
.w0_c00137{width:782.666667pt;}
.x0_c00137{left:0.000000pt;}
.x1_c00137{left:135.040000pt;}
.xec_c00137{left:136.000000pt;}
.x43_c00137{left:148.000000pt;}
.x9c_c00137{left:148.960000pt;}
.xf0_c00137{left:150.293333pt;}
.xf9_c00137{left:152.373333pt;}
.xe_c00137{left:153.706667pt;}
.xcc_c00137{left:155.626667pt;}
.xb0_c00137{left:157.333333pt;}
.x28_c00137{left:158.293333pt;}
.x3_c00137{left:160.000000pt;}
.x84_c00137{left:162.293333pt;}
.xb5_c00137{left:165.333333pt;}
.x106_c00137{left:169.333333pt;}
.x3c_c00137{left:170.293333pt;}
.x64_c00137{left:172.000000pt;}
.x34_c00137{left:173.706667pt;}
.x1b_c00137{left:175.626667pt;}
.xac_c00137{left:177.333333pt;}
.x44_c00137{left:179.040000pt;}
.xf_c00137{left:180.000000pt;}
.xf5_c00137{left:184.000000pt;}
.xcd_c00137{left:186.666667pt;}
.x59_c00137{left:188.960000pt;}
.x102_c00137{left:194.666667pt;}
.x7a_c00137{left:196.960000pt;}
.x70_c00137{left:200.000000pt;}
.x9d_c00137{left:202.666667pt;}
.xa1_c00137{left:204.000000pt;}
.xfa_c00137{left:204.960000pt;}
.x85_c00137{left:207.040000pt;}
.x4_c00137{left:208.373333pt;}
.x45_c00137{left:210.293333pt;}
.xbe_c00137{left:211.626667pt;}
.x95_c00137{left:213.706667pt;}
.x107_c00137{left:217.706667pt;}
.xa2_c00137{left:220.373333pt;}
.x8e_c00137{left:222.466667pt;}
.xc6_c00137{left:223.626667pt;}
.x7b_c00137{left:225.706667pt;}
.x3d_c00137{left:226.666667pt;}
.x4d_c00137{left:227.800000pt;}
.x1c_c00137{left:230.666667pt;}
.x105_c00137{left:231.626667pt;}
.x10_c00137{left:232.760000pt;}
.x65_c00137{left:236.000000pt;}
.x29_c00137{left:238.666667pt;}
.x103_c00137{left:239.626667pt;}
.xe5_c00137{left:241.706667pt;}
.x5a_c00137{left:243.040000pt;}
.xbb_c00137{left:244.000000pt;}
.xd8_c00137{left:245.706667pt;}
.x3e_c00137{left:247.040000pt;}
.x1d_c00137{left:248.000000pt;}
.x7c_c00137{left:249.706667pt;}
.xd0_c00137{left:252.373333pt;}
.x2a_c00137{left:254.666667pt;}
.xc7_c00137{left:256.000000pt;}
.xee_c00137{left:258.666667pt;}
.x1e_c00137{left:261.333333pt;}
.xfb_c00137{left:263.626667pt;}
.x46_c00137{left:264.960000pt;}
.xf6_c00137{left:266.666667pt;}
.x4e_c00137{left:267.800000pt;}
.xa3_c00137{left:272.000000pt;}
.x5_c00137{left:272.960000pt;}
.x96_c00137{left:274.293333pt;}
.x5b_c00137{left:276.000000pt;}
.x35_c00137{left:277.333333pt;}
.x86_c00137{left:278.293333pt;}
.x66_c00137{left:281.706667pt;}
.xe7_c00137{left:282.666667pt;}
.x1f_c00137{left:284.373333pt;}
.x11_c00137{left:285.333333pt;}
.x71_c00137{left:286.666667pt;}
.x108_c00137{left:288.960000pt;}
.xfc_c00137{left:291.040000pt;}
.x97_c00137{left:292.373333pt;}
.x87_c00137{left:294.666667pt;}
.xbf_c00137{left:296.000000pt;}
.x4f_c00137{left:297.333333pt;}
.xb6_c00137{left:299.040000pt;}
.x2b_c00137{left:301.333333pt;}
.xe1_c00137{left:302.293333pt;}
.x8f_c00137{left:303.626667pt;}
.xb1_c00137{left:306.293333pt;}
.x12_c00137{left:308.373333pt;}
.x5c_c00137{left:310.293333pt;}
.x10a_c00137{left:312.000000pt;}
.x6_c00137{left:313.706667pt;}
.x98_c00137{left:314.666667pt;}
.x67_c00137{left:316.000000pt;}
.x3f_c00137{left:317.333333pt;}
.x7d_c00137{left:320.000000pt;}
.x20_c00137{left:320.960000pt;}
.xc8_c00137{left:323.040000pt;}
.x72_c00137{left:326.293333pt;}
.xc0_c00137{left:328.000000pt;}
.xce_c00137{left:329.333333pt;}
.xb7_c00137{left:331.040000pt;}
.x68_c00137{left:333.333333pt;}
.x7e_c00137{left:335.040000pt;}
.x13_c00137{left:336.000000pt;}
.x21_c00137{left:337.706667pt;}
.xc9_c00137{left:339.040000pt;}
.x36_c00137{left:342.666667pt;}
.xd1_c00137{left:344.373333pt;}
.xd9_c00137{left:345.333333pt;}
.x90_c00137{left:346.466667pt;}
.x7_c00137{left:348.000000pt;}
.x50_c00137{left:349.333333pt;}
.x5d_c00137{left:350.293333pt;}
.xef_c00137{left:352.373333pt;}
.xe8_c00137{left:353.706667pt;}
.x2_c00137{left:354.666667pt;}
.x88_c00137{left:355.626667pt;}
.x69_c00137{left:357.333333pt;}
.x47_c00137{left:358.666667pt;}
.xd2_c00137{left:360.000000pt;}
.x22_c00137{left:360.960000pt;}
.xda_c00137{left:362.666667pt;}
.x14_c00137{left:364.000000pt;}
.x2c_c00137{left:365.333333pt;}
.x37_c00137{left:367.040000pt;}
.x5e_c00137{left:368.000000pt;}
.x40_c00137{left:369.333333pt;}
.xbc_c00137{left:372.000000pt;}
.x6a_c00137{left:374.293333pt;}
.xad_c00137{left:376.000000pt;}
.x48_c00137{left:376.960000pt;}
.x91_c00137{left:378.293333pt;}
.x8_c00137{left:379.626667pt;}
.xdb_c00137{left:381.706667pt;}
.xfd_c00137{left:384.000000pt;}
.x73_c00137{left:387.040000pt;}
.x99_c00137{left:388.373333pt;}
.xde_c00137{left:391.040000pt;}
.xaa_c00137{left:392.000000pt;}
.x38_c00137{left:393.706667pt;}
.xe6_c00137{left:394.666667pt;}
.x51_c00137{left:396.000000pt;}
.x2d_c00137{left:397.706667pt;}
.xe9_c00137{left:399.040000pt;}
.xd3_c00137{left:400.000000pt;}
.x5f_c00137{left:400.960000pt;}
.x92_c00137{left:404.573333pt;}
.x7f_c00137{left:405.706667pt;}
.x89_c00137{left:408.000000pt;}
.x9_c00137{left:409.333333pt;}
.xea_c00137{left:410.666667pt;}
.xd4_c00137{left:412.000000pt;}
.x41_c00137{left:413.706667pt;}
.x52_c00137{left:416.000000pt;}
.x9a_c00137{left:418.666667pt;}
.x2e_c00137{left:421.333333pt;}
.x6b_c00137{left:425.333333pt;}
.xa4_c00137{left:426.666667pt;}
.xb2_c00137{left:428.373333pt;}
.x60_c00137{left:430.666667pt;}
.x15_c00137{left:432.000000pt;}
.x9b_c00137{left:433.333333pt;}
.xc1_c00137{left:434.666667pt;}
.x8a_c00137{left:436.000000pt;}
.xa5_c00137{left:437.333333pt;}
.x39_c00137{left:439.040000pt;}
.x49_c00137{left:440.960000pt;}
.x23_c00137{left:442.666667pt;}
.xd5_c00137{left:444.373333pt;}
.x74_c00137{left:445.333333pt;}
.xfe_c00137{left:446.293333pt;}
.x2f_c00137{left:447.626667pt;}
.x9e_c00137{left:449.906667pt;}
.xae_c00137{left:452.373333pt;}
.x53_c00137{left:453.706667pt;}
.xc2_c00137{left:455.040000pt;}
.xf1_c00137{left:457.333333pt;}
.x75_c00137{left:463.040000pt;}
.xd6_c00137{left:464.960000pt;}
.xa_c00137{left:467.040000pt;}
.xa6_c00137{left:469.706667pt;}
.x24_c00137{left:471.040000pt;}
.xe2_c00137{left:472.960000pt;}
.xdc_c00137{left:474.666667pt;}
.x6c_c00137{left:476.373333pt;}
.x16_c00137{left:478.666667pt;}
.x80_c00137{left:480.000000pt;}
.x76_c00137{left:483.040000pt;}
.xb3_c00137{left:484.000000pt;}
.x54_c00137{left:485.706667pt;}
.xa7_c00137{left:486.666667pt;}
.x4a_c00137{left:488.000000pt;}
.x10b_c00137{left:490.293333pt;}
.x100_c00137{left:491.626667pt;}
.xca_c00137{left:492.960000pt;}
.x17_c00137{left:496.373333pt;}
.x3a_c00137{left:498.666667pt;}
.xb8_c00137{left:499.626667pt;}
.x9f_c00137{left:500.960000pt;}
.x8b_c00137{left:505.706667pt;}
.x4b_c00137{left:506.666667pt;}
.x61_c00137{left:507.626667pt;}
.xcf_c00137{left:509.706667pt;}
.x55_c00137{left:511.626667pt;}
.xdf_c00137{left:513.333333pt;}
.xb_c00137{left:515.040000pt;}
.xe3_c00137{left:516.000000pt;}
.x42_c00137{left:518.666667pt;}
.x81_c00137{left:521.333333pt;}
.xcb_c00137{left:523.040000pt;}
.x104_c00137{left:525.333333pt;}
.x6d_c00137{left:526.666667pt;}
.xf7_c00137{left:528.000000pt;}
.x18_c00137{left:528.960000pt;}
.x25_c00137{left:532.000000pt;}
.x93_c00137{left:532.960000pt;}
.xb4_c00137{left:534.666667pt;}
.xd7_c00137{left:536.373333pt;}
.xc3_c00137{left:538.293333pt;}
.xbd_c00137{left:539.626667pt;}
.xc_c00137{left:541.706667pt;}
.x30_c00137{left:542.666667pt;}
.x56_c00137{left:545.333333pt;}
.xa8_c00137{left:546.293333pt;}
.x26_c00137{left:548.000000pt;}
.x19_c00137{left:548.960000pt;}
.x77_c00137{left:551.040000pt;}
.x82_c00137{left:553.333333pt;}
.xed_c00137{left:555.040000pt;}
.x8c_c00137{left:558.666667pt;}
.xaf_c00137{left:560.000000pt;}
.xb9_c00137{left:561.333333pt;}
.xa0_c00137{left:562.666667pt;}
.x57_c00137{left:563.626667pt;}
.xf2_c00137{left:565.333333pt;}
.x94_c00137{left:567.040000pt;}
.xdd_c00137{left:568.000000pt;}
.x6e_c00137{left:568.960000pt;}
.xe0_c00137{left:574.293333pt;}
.xeb_c00137{left:577.333333pt;}
.x4c_c00137{left:580.000000pt;}
.xc4_c00137{left:581.706667pt;}
.xff_c00137{left:582.666667pt;}
.x31_c00137{left:584.000000pt;}
.xa9_c00137{left:584.960000pt;}
.x3b_c00137{left:588.000000pt;}
.xe4_c00137{left:589.133333pt;}
.x62_c00137{left:592.000000pt;}
.x83_c00137{left:600.000000pt;}
.xc5_c00137{left:601.333333pt;}
.x27_c00137{left:602.293333pt;}
.xf3_c00137{left:603.626667pt;}
.x78_c00137{left:605.333333pt;}
.x101_c00137{left:610.666667pt;}
.x6f_c00137{left:612.000000pt;}
.xd_c00137{left:615.040000pt;}
.x109_c00137{left:617.333333pt;}
.xf8_c00137{left:620.373333pt;}
.xba_c00137{left:621.333333pt;}
.x8d_c00137{left:622.666667pt;}
.x63_c00137{left:625.706667pt;}
.x32_c00137{left:626.666667pt;}
.x1a_c00137{left:628.373333pt;}
.x58_c00137{left:630.666667pt;}
.x79_c00137{left:631.626667pt;}
.xab_c00137{left:634.666667pt;}
.xf4_c00137{left:638.293333pt;}
.x33_c00137{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d3735e2ccf593374a1c1e217.woff2')format("woff");}.ff1_c00138{font-family:ff1_c00138;line-height:1.688965;font-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_c00138{transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);}
.m2_c00138{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.m18_c00138{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.m6_c00138{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.m26_c00138{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m1e_c00138{transform:matrix(0.428423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428423,0.000000,0.000000,0.250000,0,0);}
.m12_c00138{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m28_c00138{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m15_c00138{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.mf_c00138{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m27_c00138{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m1c_c00138{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m1_c00138{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m1b_c00138{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.me_c00138{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m1d_c00138{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m9_c00138{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m1f_c00138{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.ma_c00138{transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);}
.m19_c00138{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_c00138{transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);}
.m21_c00138{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);}
.m24_c00138{transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);}
.m25_c00138{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_c00138{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m11_c00138{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m1a_c00138{transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);}
.m13_c00138{transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);}
.m17_c00138{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.md_c00138{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m10_c00138{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m0_c00138{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m23_c00138{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.mc_c00138{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m14_c00138{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.m22_c00138{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m16_c00138{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m5_c00138{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mb_c00138{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);}
.m7_c00138{transform:matrix(0.741912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741912,0.000000,0.000000,0.250000,0,0);}
.m8_c00138{transform:matrix(0.922907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.922907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.922907,0.000000,0.000000,0.250000,0,0);}
.v0_c00138{vertical-align:0.000000px;}
.ls0_c00138{letter-spacing:0.000000px;}
.sc__c00138{text-shadow:none;}
.sc0_c00138{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00138{-webkit-text-stroke:0px transparent;}
.sc0_c00138{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00138{word-spacing:-14.892000px;}
.ws1_c00138{word-spacing:-0.192214px;}
.ws2_c00138{word-spacing:0.000000px;}
._0_c00138{width:3.553600px;}
.fc0_c00138{color:transparent;}
.fs5_c00138{font-size:13.620000px;}
.fs4_c00138{font-size:18.720000px;}
.fs0_c00138{font-size:20.400000px;}
.fs3_c00138{font-size:25.500000px;}
.fs1_c00138{font-size:28.920000px;}
.fs2_c00138{font-size:32.340000px;}
.y0_c00138{bottom:0.000000px;}
.yb_c00138{bottom:251.550000px;}
.yc_c00138{bottom:251.970000px;}
.ya_c00138{bottom:252.405000px;}
.y9_c00138{bottom:252.630000px;}
.y3_c00138{bottom:266.325000px;}
.y6_c00138{bottom:267.405000px;}
.y5_c00138{bottom:267.630000px;}
.y4_c00138{bottom:268.470000px;}
.y8_c00138{bottom:268.695000px;}
.y7_c00138{bottom:269.550000px;}
.y10_c00138{bottom:281.325000px;}
.yf_c00138{bottom:281.550000px;}
.yd_c00138{bottom:282.405000px;}
.ye_c00138{bottom:282.630000px;}
.y11_c00138{bottom:283.470000px;}
.y15_c00138{bottom:295.470000px;}
.y13_c00138{bottom:295.905000px;}
.y14_c00138{bottom:296.325000px;}
.y17_c00138{bottom:296.550000px;}
.y12_c00138{bottom:297.405000px;}
.y18_c00138{bottom:297.630000px;}
.y16_c00138{bottom:298.470000px;}
.y2_c00138{bottom:1099.905000px;}
.y1_c00138{bottom:1100.550000px;}
.h6_c00138{height:16.752334px;}
.h5_c00138{height:23.025234px;}
.h1_c00138{height:25.091602px;}
.h4_c00138{height:31.364502px;}
.h2_c00138{height:35.571035px;}
.h3_c00138{height:39.777568px;}
.h0_c00138{height:1335.000000px;}
.w0_c00138{width:880.500000px;}
.x0_c00138{left:0.000000px;}
.x1a_c00138{left:155.580000px;}
.x15_c00138{left:172.500000px;}
.x22_c00138{left:184.080000px;}
.x23_c00138{left:208.500000px;}
.x16_c00138{left:228.000000px;}
.x1b_c00138{left:235.080000px;}
.x24_c00138{left:262.080000px;}
.x17_c00138{left:287.145000px;}
.x25_c00138{left:291.000000px;}
.x3_c00138{left:308.580000px;}
.x4_c00138{left:331.920000px;}
.x18_c00138{left:337.500000px;}
.x26_c00138{left:343.500000px;}
.xd_c00138{left:361.500000px;}
.xe_c00138{left:376.080000px;}
.x5_c00138{left:396.000000px;}
.x1_c00138{left:399.000000px;}
.xf_c00138{left:403.080000px;}
.x19_c00138{left:406.500000px;}
.x10_c00138{left:420.000000px;}
.x1c_c00138{left:424.500000px;}
.x6_c00138{left:432.000000px;}
.x27_c00138{left:436.920000px;}
.x11_c00138{left:448.500000px;}
.x7_c00138{left:456.420000px;}
.x12_c00138{left:462.000000px;}
.x1d_c00138{left:476.580000px;}
.x13_c00138{left:490.920000px;}
.x8_c00138{left:502.500000px;}
.x14_c00138{left:506.580000px;}
.x21_c00138{left:529.500000px;}
.x9_c00138{left:546.000000px;}
.xa_c00138{left:586.500000px;}
.x28_c00138{left:589.080000px;}
.x29_c00138{left:622.500000px;}
.xb_c00138{left:634.920000px;}
.x1e_c00138{left:637.500000px;}
.x2a_c00138{left:658.500000px;}
.x1f_c00138{left:670.500000px;}
.x2b_c00138{left:682.920000px;}
.xc_c00138{left:688.500000px;}
.x20_c00138{left:694.920000px;}
.x2_c00138{left:705.420000px;}
.x2c_c00138{left:721.080000px;}
@media print{
.v0_c00138{vertical-align:0.000000pt;}
.ls0_c00138{letter-spacing:0.000000pt;}
.ws0_c00138{word-spacing:-13.237333pt;}
.ws1_c00138{word-spacing:-0.170857pt;}
.ws2_c00138{word-spacing:0.000000pt;}
._0_c00138{width:3.158756pt;}
.fs5_c00138{font-size:12.106667pt;}
.fs4_c00138{font-size:16.640000pt;}
.fs0_c00138{font-size:18.133333pt;}
.fs3_c00138{font-size:22.666667pt;}
.fs1_c00138{font-size:25.706667pt;}
.fs2_c00138{font-size:28.746667pt;}
.y0_c00138{bottom:0.000000pt;}
.yb_c00138{bottom:223.600000pt;}
.yc_c00138{bottom:223.973333pt;}
.ya_c00138{bottom:224.360000pt;}
.y9_c00138{bottom:224.560000pt;}
.y3_c00138{bottom:236.733333pt;}
.y6_c00138{bottom:237.693333pt;}
.y5_c00138{bottom:237.893333pt;}
.y4_c00138{bottom:238.640000pt;}
.y8_c00138{bottom:238.840000pt;}
.y7_c00138{bottom:239.600000pt;}
.y10_c00138{bottom:250.066667pt;}
.yf_c00138{bottom:250.266667pt;}
.yd_c00138{bottom:251.026667pt;}
.ye_c00138{bottom:251.226667pt;}
.y11_c00138{bottom:251.973333pt;}
.y15_c00138{bottom:262.640000pt;}
.y13_c00138{bottom:263.026667pt;}
.y14_c00138{bottom:263.400000pt;}
.y17_c00138{bottom:263.600000pt;}
.y12_c00138{bottom:264.360000pt;}
.y18_c00138{bottom:264.560000pt;}
.y16_c00138{bottom:265.306667pt;}
.y2_c00138{bottom:977.693333pt;}
.y1_c00138{bottom:978.266667pt;}
.h6_c00138{height:14.890964pt;}
.h5_c00138{height:20.466875pt;}
.h1_c00138{height:22.303646pt;}
.h4_c00138{height:27.879557pt;}
.h2_c00138{height:31.618698pt;}
.h3_c00138{height:35.357839pt;}
.h0_c00138{height:1186.666667pt;}
.w0_c00138{width:782.666667pt;}
.x0_c00138{left:0.000000pt;}
.x1a_c00138{left:138.293333pt;}
.x15_c00138{left:153.333333pt;}
.x22_c00138{left:163.626667pt;}
.x23_c00138{left:185.333333pt;}
.x16_c00138{left:202.666667pt;}
.x1b_c00138{left:208.960000pt;}
.x24_c00138{left:232.960000pt;}
.x17_c00138{left:255.240000pt;}
.x25_c00138{left:258.666667pt;}
.x3_c00138{left:274.293333pt;}
.x4_c00138{left:295.040000pt;}
.x18_c00138{left:300.000000pt;}
.x26_c00138{left:305.333333pt;}
.xd_c00138{left:321.333333pt;}
.xe_c00138{left:334.293333pt;}
.x5_c00138{left:352.000000pt;}
.x1_c00138{left:354.666667pt;}
.xf_c00138{left:358.293333pt;}
.x19_c00138{left:361.333333pt;}
.x10_c00138{left:373.333333pt;}
.x1c_c00138{left:377.333333pt;}
.x6_c00138{left:384.000000pt;}
.x27_c00138{left:388.373333pt;}
.x11_c00138{left:398.666667pt;}
.x7_c00138{left:405.706667pt;}
.x12_c00138{left:410.666667pt;}
.x1d_c00138{left:423.626667pt;}
.x13_c00138{left:436.373333pt;}
.x8_c00138{left:446.666667pt;}
.x14_c00138{left:450.293333pt;}
.x21_c00138{left:470.666667pt;}
.x9_c00138{left:485.333333pt;}
.xa_c00138{left:521.333333pt;}
.x28_c00138{left:523.626667pt;}
.x29_c00138{left:553.333333pt;}
.xb_c00138{left:564.373333pt;}
.x1e_c00138{left:566.666667pt;}
.x2a_c00138{left:585.333333pt;}
.x1f_c00138{left:596.000000pt;}
.x2b_c00138{left:607.040000pt;}
.xc_c00138{left:612.000000pt;}
.x20_c00138{left:617.706667pt;}
.x2_c00138{left:627.040000pt;}
.x2c_c00138{left:640.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_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_f6a291c86ab8b878fc21ad04.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m90_c00139{transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);}
.md1_c00139{transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);}
.m42_c00139{transform:matrix(0.355042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355042,0.000000,0.000000,0.250000,0,0);}
.m71_c00139{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.mb5_c00139{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m4c_c00139{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mb6_c00139{transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);}
.m56_c00139{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m96_c00139{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mbf_c00139{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.mc8_c00139{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.me7_c00139{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.maf_c00139{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m61_c00139{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.mb3_c00139{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m4f_c00139{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.me5_c00139{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m6c_c00139{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.mdc_c00139{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m43_c00139{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m44_c00139{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m78_c00139{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.mda_c00139{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m6e_c00139{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.mc3_c00139{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m2f_c00139{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m54_c00139{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);}
.mf8_c00139{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mf3_c00139{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.me9_c00139{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.mc5_c00139{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m79_c00139{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m77_c00139{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m45_c00139{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m93_c00139{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m55_c00139{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m3e_c00139{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m7e_c00139{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.mf0_c00139{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m68_c00139{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.ma6_c00139{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m31_c00139{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m66_c00139{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m51_c00139{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m92_c00139{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m85_c00139{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.ma1_c00139{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m57_c00139{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.me4_c00139{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m8a_c00139{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m3a_c00139{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m18_c00139{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mf5_c00139{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.mf1_c00139{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m95_c00139{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m9a_c00139{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.md5_c00139{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m3f_c00139{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.me6_c00139{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.me8_c00139{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m35_c00139{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m9d_c00139{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m32_c00139{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m9_c00139{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m15_c00139{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m88_c00139{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.ma9_c00139{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m6a_c00139{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m27_c00139{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.mdf_c00139{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mac_c00139{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.me0_c00139{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.ma5_c00139{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m1b_c00139{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m7c_c00139{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m8d_c00139{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m2a_c00139{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mf9_c00139{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.med_c00139{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m24_c00139{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_c00139{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m22_c00139{transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);}
.md2_c00139{transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);}
.md9_c00139{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m8f_c00139{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m6d_c00139{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m59_c00139{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.mec_c00139{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m9f_c00139{transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);}
.m25_c00139{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.m7f_c00139{transform:matrix(0.463866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463866,0.000000,0.000000,0.250000,0,0);}
.mcb_c00139{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.me1_c00139{transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);}
.m50_c00139{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.md8_c00139{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m60_c00139{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m6_c00139{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mab_c00139{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m2_c00139{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m65_c00139{transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);}
.m3_c00139{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m46_c00139{transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);}
.m5b_c00139{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m4e_c00139{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m21_c00139{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mde_c00139{transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);}
.ma2_c00139{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.ma4_c00139{transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);}
.ma0_c00139{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mbc_c00139{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m62_c00139{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.md6_c00139{transform:matrix(0.493257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493257,0.000000,0.000000,0.250000,0,0);}
.mb7_c00139{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m89_c00139{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.ma8_c00139{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.mb9_c00139{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.me_c00139{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);}
.m80_c00139{transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);}
.meb_c00139{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m7b_c00139{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m8b_c00139{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m10_c00139{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m70_c00139{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m29_c00139{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.me2_c00139{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mba_c00139{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m99_c00139{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mc7_c00139{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m37_c00139{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.md0_c00139{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.mc1_c00139{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m3d_c00139{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m6b_c00139{transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);}
.m14_c00139{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m97_c00139{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.me3_c00139{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.mc9_c00139{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m67_c00139{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m1d_c00139{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m8e_c00139{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.mca_c00139{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m4_c00139{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m63_c00139{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mbb_c00139{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mc0_c00139{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m2b_c00139{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m47_c00139{transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);}
.m7_c00139{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mb2_c00139{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m19_c00139{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.mee_c00139{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m34_c00139{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mb1_c00139{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m75_c00139{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m7d_c00139{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mbd_c00139{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m1e_c00139{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m72_c00139{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m7a_c00139{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mea_c00139{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m2d_c00139{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m5_c00139{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mf6_c00139{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m94_c00139{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m48_c00139{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m87_c00139{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mef_c00139{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_c00139{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m1a_c00139{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.ma_c00139{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m8c_c00139{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.mcf_c00139{transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);}
.m13_c00139{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mfa_c00139{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m30_c00139{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mcd_c00139{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mdd_c00139{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m6f_c00139{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m5f_c00139{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.md7_c00139{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m5a_c00139{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mb0_c00139{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m39_c00139{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.md4_c00139{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mf4_c00139{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m2e_c00139{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m3b_c00139{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m4b_c00139{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m69_c00139{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mce_c00139{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.mf7_c00139{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m9e_c00139{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.mc_c00139{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m20_c00139{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m73_c00139{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mf2_c00139{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m38_c00139{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mc2_c00139{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m9c_c00139{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mae_c00139{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m74_c00139{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m33_c00139{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m8_c00139{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m3c_c00139{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m64_c00139{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);}
.mdb_c00139{transform:matrix(0.601765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601765,0.000000,0.000000,0.250000,0,0);}
.m0_c00139{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m11_c00139{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.mb4_c00139{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m41_c00139{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.md3_c00139{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.mf_c00139{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m12_c00139{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m2c_c00139{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m76_c00139{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m16_c00139{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m98_c00139{transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);}
.m52_c00139{transform:matrix(0.635892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635892,0.000000,0.000000,0.250000,0,0);}
.mad_c00139{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m53_c00139{transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);}
.m5d_c00139{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m17_c00139{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.mc6_c00139{transform:matrix(0.648824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648824,0.000000,0.000000,0.250000,0,0);}
.m82_c00139{transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);}
.m5c_c00139{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m1c_c00139{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m23_c00139{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m84_c00139{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m26_c00139{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m40_c00139{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m28_c00139{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m86_c00139{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m49_c00139{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mc4_c00139{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m1_c00139{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m5e_c00139{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.md_c00139{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.maa_c00139{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.m4a_c00139{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mcc_c00139{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m83_c00139{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.ma3_c00139{transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);}
.m58_c00139{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m9b_c00139{transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);}
.mb_c00139{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m81_c00139{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.ma7_c00139{transform:matrix(0.840545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840545,0.000000,0.000000,0.250000,0,0);}
.mb8_c00139{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.mbe_c00139{transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);}
.m1f_c00139{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m91_c00139{transform:matrix(3.978070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.978070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.978070,0.000000,0.000000,0.250000,0,0);}
.v2_c00139{vertical-align:-18.000000px;}
.v1_c00139{vertical-align:-6.000000px;}
.v0_c00139{vertical-align:0.000000px;}
.ls0_c00139{letter-spacing:0.000000px;}
.sc__c00139{text-shadow:none;}
.sc0_c00139{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00139{-webkit-text-stroke:0px transparent;}
.sc0_c00139{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00139{word-spacing:-5.956188px;}
.ws1_c00139{word-spacing:-5.135668px;}
.ws2_c00139{word-spacing:-4.457299px;}
.ws3_c00139{word-spacing:0.000000px;}
.fc0_c00139{color:transparent;}
.fs6_c00139{font-size:3.420000px;}
.fs1_c00139{font-size:18.720000px;}
.fs0_c00139{font-size:20.400000px;}
.fs4_c00139{font-size:25.500000px;}
.fs2_c00139{font-size:28.920000px;}
.fs5_c00139{font-size:32.340000px;}
.fs3_c00139{font-size:35.700000px;}
.fs7_c00139{font-size:39.120000px;}
.y0_c00139{bottom:0.000000px;}
.ye3_c00139{bottom:253.245000px;}
.ye1_c00139{bottom:253.905000px;}
.ye2_c00139{bottom:254.130000px;}
.ye4_c00139{bottom:254.325000px;}
.ye6_c00139{bottom:254.970000px;}
.ye5_c00139{bottom:255.405000px;}
.ydd_c00139{bottom:272.325000px;}
.ydf_c00139{bottom:272.745000px;}
.ye0_c00139{bottom:273.630000px;}
.yde_c00139{bottom:274.905000px;}
.yd9_c00139{bottom:292.245000px;}
.ydc_c00139{bottom:293.745000px;}
.yda_c00139{bottom:294.405000px;}
.ydb_c00139{bottom:295.905000px;}
.yd2_c00139{bottom:311.745000px;}
.yd8_c00139{bottom:311.970000px;}
.yd6_c00139{bottom:313.245000px;}
.yd4_c00139{bottom:313.470000px;}
.yd3_c00139{bottom:313.905000px;}
.yd5_c00139{bottom:314.130000px;}
.yd7_c00139{bottom:315.405000px;}
.yd1_c00139{bottom:331.245000px;}
.ycc_c00139{bottom:332.130000px;}
.yce_c00139{bottom:332.745000px;}
.ycd_c00139{bottom:333.405000px;}
.yd0_c00139{bottom:334.470000px;}
.ycf_c00139{bottom:334.905000px;}
.yc7_c00139{bottom:350.745000px;}
.yca_c00139{bottom:352.245000px;}
.yc6_c00139{bottom:352.905000px;}
.yc9_c00139{bottom:353.130000px;}
.ycb_c00139{bottom:353.970000px;}
.yc8_c00139{bottom:354.405000px;}
.yc5_c00139{bottom:371.745000px;}
.yc2_c00139{bottom:372.405000px;}
.yc3_c00139{bottom:372.630000px;}
.yc4_c00139{bottom:373.905000px;}
.ybf_c00139{bottom:391.245000px;}
.ybe_c00139{bottom:393.405000px;}
.yc1_c00139{bottom:393.630000px;}
.yc0_c00139{bottom:394.470000px;}
.yba_c00139{bottom:410.745000px;}
.ybc_c00139{bottom:412.470000px;}
.ybb_c00139{bottom:412.905000px;}
.ybd_c00139{bottom:413.970000px;}
.yb6_c00139{bottom:430.245000px;}
.yb9_c00139{bottom:431.325000px;}
.yb5_c00139{bottom:431.970000px;}
.yb8_c00139{bottom:432.405000px;}
.yb7_c00139{bottom:433.470000px;}
.yae_c00139{bottom:448.905000px;}
.yb4_c00139{bottom:449.745000px;}
.yb2_c00139{bottom:451.245000px;}
.yb3_c00139{bottom:451.905000px;}
.yb1_c00139{bottom:452.130000px;}
.yb0_c00139{bottom:452.325000px;}
.yaf_c00139{bottom:453.405000px;}
.ya8_c00139{bottom:469.680000px;}
.yac_c00139{bottom:469.905000px;}
.yad_c00139{bottom:470.745000px;}
.yaa_c00139{bottom:471.630000px;}
.yab_c00139{bottom:471.825000px;}
.ya9_c00139{bottom:472.905000px;}
.ya4_c00139{bottom:489.405000px;}
.ya1_c00139{bottom:490.905000px;}
.ya2_c00139{bottom:491.130000px;}
.ya7_c00139{bottom:491.970000px;}
.ya3_c00139{bottom:492.405000px;}
.ya5_c00139{bottom:492.630000px;}
.ya6_c00139{bottom:493.470000px;}
.ya0_c00139{bottom:509.745000px;}
.y9e_c00139{bottom:511.905000px;}
.y9f_c00139{bottom:512.970000px;}
.y9c_c00139{bottom:529.245000px;}
.y9b_c00139{bottom:530.130000px;}
.y9a_c00139{bottom:531.405000px;}
.y9d_c00139{bottom:531.630000px;}
.y99_c00139{bottom:547.905000px;}
.y93_c00139{bottom:549.180000px;}
.y92_c00139{bottom:550.470000px;}
.y94_c00139{bottom:550.905000px;}
.y96_c00139{bottom:551.130000px;}
.y97_c00139{bottom:551.325000px;}
.y98_c00139{bottom:551.970000px;}
.y95_c00139{bottom:552.405000px;}
.y90_c00139{bottom:569.745000px;}
.y8e_c00139{bottom:570.405000px;}
.y91_c00139{bottom:570.630000px;}
.y8f_c00139{bottom:571.905000px;}
.y8b_c00139{bottom:589.245000px;}
.y8a_c00139{bottom:589.905000px;}
.y89_c00139{bottom:590.970000px;}
.y8d_c00139{bottom:591.405000px;}
.y8c_c00139{bottom:592.470000px;}
.y88_c00139{bottom:606.405000px;}
.y86_c00139{bottom:608.745000px;}
.y83_c00139{bottom:609.405000px;}
.y87_c00139{bottom:609.825000px;}
.y84_c00139{bottom:610.470000px;}
.y85_c00139{bottom:610.905000px;}
.y81_c00139{bottom:626.745000px;}
.y80_c00139{bottom:628.245000px;}
.y7e_c00139{bottom:628.905000px;}
.y82_c00139{bottom:629.130000px;}
.y7f_c00139{bottom:630.405000px;}
.y7a_c00139{bottom:645.405000px;}
.y7b_c00139{bottom:646.905000px;}
.y7d_c00139{bottom:647.325000px;}
.y79_c00139{bottom:647.745000px;}
.y7c_c00139{bottom:648.630000px;}
.y78_c00139{bottom:649.470000px;}
.y77_c00139{bottom:649.905000px;}
.y75_c00139{bottom:667.245000px;}
.y71_c00139{bottom:667.905000px;}
.y76_c00139{bottom:668.970000px;}
.y72_c00139{bottom:669.405000px;}
.y73_c00139{bottom:669.630000px;}
.y74_c00139{bottom:670.470000px;}
.y70_c00139{bottom:686.325000px;}
.y6b_c00139{bottom:686.745000px;}
.y6c_c00139{bottom:686.970000px;}
.y69_c00139{bottom:687.405000px;}
.y6d_c00139{bottom:688.245000px;}
.y6a_c00139{bottom:688.905000px;}
.y6e_c00139{bottom:689.130000px;}
.y6f_c00139{bottom:689.970000px;}
.y67_c00139{bottom:705.405000px;}
.y63_c00139{bottom:706.245000px;}
.y65_c00139{bottom:706.470000px;}
.y64_c00139{bottom:708.405000px;}
.y66_c00139{bottom:708.420000px;}
.y68_c00139{bottom:709.470000px;}
.y5f_c00139{bottom:725.745000px;}
.y61_c00139{bottom:726.825000px;}
.y5e_c00139{bottom:727.905000px;}
.y62_c00139{bottom:728.130000px;}
.y60_c00139{bottom:729.405000px;}
.y5c_c00139{bottom:746.745000px;}
.y59_c00139{bottom:746.970000px;}
.y58_c00139{bottom:747.405000px;}
.y5a_c00139{bottom:747.630000px;}
.y5d_c00139{bottom:748.470000px;}
.y5b_c00139{bottom:748.905000px;}
.y54_c00139{bottom:763.245000px;}
.y56_c00139{bottom:766.245000px;}
.y57_c00139{bottom:767.130000px;}
.y55_c00139{bottom:768.405000px;}
.y52_c00139{bottom:784.245000px;}
.y53_c00139{bottom:785.745000px;}
.y4f_c00139{bottom:786.405000px;}
.y50_c00139{bottom:787.905000px;}
.y51_c00139{bottom:788.970000px;}
.y4e_c00139{bottom:804.825000px;}
.y4c_c00139{bottom:805.245000px;}
.y4a_c00139{bottom:805.905000px;}
.y4b_c00139{bottom:806.130000px;}
.y4d_c00139{bottom:807.405000px;}
.y44_c00139{bottom:824.325000px;}
.y46_c00139{bottom:824.745000px;}
.y49_c00139{bottom:825.630000px;}
.y48_c00139{bottom:825.825000px;}
.y43_c00139{bottom:826.470000px;}
.y45_c00139{bottom:826.905000px;}
.y47_c00139{bottom:827.130000px;}
.y41_c00139{bottom:844.905000px;}
.y42_c00139{bottom:846.405000px;}
.y3e_c00139{bottom:862.905000px;}
.y3b_c00139{bottom:863.745000px;}
.y40_c00139{bottom:864.825000px;}
.y39_c00139{bottom:865.470000px;}
.y3a_c00139{bottom:865.905000px;}
.y3d_c00139{bottom:866.130000px;}
.y3c_c00139{bottom:866.970000px;}
.y3f_c00139{bottom:867.405000px;}
.y33_c00139{bottom:883.245000px;}
.y34_c00139{bottom:884.745000px;}
.y32_c00139{bottom:885.405000px;}
.y36_c00139{bottom:885.630000px;}
.y38_c00139{bottom:885.825000px;}
.y37_c00139{bottom:886.470000px;}
.y35_c00139{bottom:886.905000px;}
.y2f_c00139{bottom:902.970000px;}
.y2d_c00139{bottom:903.405000px;}
.y2c_c00139{bottom:904.245000px;}
.y2b_c00139{bottom:904.905000px;}
.y30_c00139{bottom:905.130000px;}
.y31_c00139{bottom:905.970000px;}
.y2e_c00139{bottom:906.405000px;}
.y2a_c00139{bottom:923.325000px;}
.y28_c00139{bottom:923.745000px;}
.y25_c00139{bottom:924.405000px;}
.y26_c00139{bottom:924.630000px;}
.y29_c00139{bottom:925.470000px;}
.y27_c00139{bottom:925.905000px;}
.y23_c00139{bottom:943.245000px;}
.y21_c00139{bottom:943.905000px;}
.y24_c00139{bottom:944.970000px;}
.y22_c00139{bottom:945.405000px;}
.y1c_c00139{bottom:961.245000px;}
.y1e_c00139{bottom:962.745000px;}
.y1b_c00139{bottom:963.405000px;}
.y20_c00139{bottom:964.470000px;}
.y1d_c00139{bottom:964.905000px;}
.y1f_c00139{bottom:965.970000px;}
.y17_c00139{bottom:980.745000px;}
.y18_c00139{bottom:982.245000px;}
.y16_c00139{bottom:983.130000px;}
.y19_c00139{bottom:984.405000px;}
.y1a_c00139{bottom:984.630000px;}
.y11_c00139{bottom:1001.325000px;}
.y15_c00139{bottom:1002.825000px;}
.y13_c00139{bottom:1003.470000px;}
.y14_c00139{bottom:1003.905000px;}
.y12_c00139{bottom:1004.970000px;}
.yd_c00139{bottom:1019.745000px;}
.y10_c00139{bottom:1021.245000px;}
.yc_c00139{bottom:1023.405000px;}
.ye_c00139{bottom:1023.630000px;}
.yf_c00139{bottom:1024.470000px;}
.yb_c00139{bottom:1040.745000px;}
.ya_c00139{bottom:1042.470000px;}
.y8_c00139{bottom:1042.905000px;}
.y9_c00139{bottom:1043.970000px;}
.y4_c00139{bottom:1060.245000px;}
.y6_c00139{bottom:1061.130000px;}
.y7_c00139{bottom:1061.970000px;}
.y3_c00139{bottom:1062.405000px;}
.y5_c00139{bottom:1062.630000px;}
.y1_c00139{bottom:1100.550000px;}
.y2_c00139{bottom:1101.630000px;}
.h7_c00139{height:4.206533px;}
.h2_c00139{height:23.025234px;}
.h1_c00139{height:25.091602px;}
.h5_c00139{height:31.364502px;}
.h3_c00139{height:35.571035px;}
.h6_c00139{height:39.777568px;}
.h4_c00139{height:43.910303px;}
.h8_c00139{height:48.116836px;}
.h0_c00139{height:1335.000000px;}
.w0_c00139{width:880.500000px;}
.x0_c00139{left:0.000000px;}
.x3_c00139{left:151.500000px;}
.x2_c00139{left:153.420000px;}
.xae_c00139{left:166.080000px;}
.x4_c00139{left:167.580000px;}
.x83_c00139{left:171.000000px;}
.x3c_c00139{left:172.500000px;}
.xc7_c00139{left:176.580000px;}
.x1e_c00139{left:178.080000px;}
.x4a_c00139{left:180.420000px;}
.x73_c00139{left:181.500000px;}
.xed_c00139{left:183.000000px;}
.x3d_c00139{left:184.920000px;}
.xb6_c00139{left:186.420000px;}
.xf0_c00139{left:187.500000px;}
.x56_c00139{left:189.420000px;}
.xf5_c00139{left:190.500000px;}
.x2d_c00139{left:192.000000px;}
.x100_c00139{left:193.500000px;}
.xc5_c00139{left:195.000000px;}
.x14_c00139{left:196.500000px;}
.x5_c00139{left:199.500000px;}
.x5c_c00139{left:201.420000px;}
.x74_c00139{left:202.500000px;}
.x84_c00139{left:204.000000px;}
.x2e_c00139{left:205.920000px;}
.xdc_c00139{left:207.000000px;}
.xc0_c00139{left:208.920000px;}
.xf8_c00139{left:210.000000px;}
.xce_c00139{left:213.420000px;}
.x8c_c00139{left:214.500000px;}
.xaa_c00139{left:217.080000px;}
.x93_c00139{left:219.000000px;}
.x15_c00139{left:222.000000px;}
.x3e_c00139{left:225.000000px;}
.xaf_c00139{left:226.920000px;}
.x1f_c00139{left:228.000000px;}
.xe2_c00139{left:229.500000px;}
.xfc_c00139{left:230.580000px;}
.x2f_c00139{left:232.080000px;}
.x5d_c00139{left:234.420000px;}
.xe9_c00139{left:235.500000px;}
.x6_c00139{left:237.420000px;}
.xc6_c00139{left:238.500000px;}
.x9c_c00139{left:240.000000px;}
.x69_c00139{left:243.420000px;}
.x62_c00139{left:247.080000px;}
.x20_c00139{left:249.420000px;}
.x16_c00139{left:250.920000px;}
.x4b_c00139{left:255.420000px;}
.x30_c00139{left:256.500000px;}
.x8d_c00139{left:258.420000px;}
.x7d_c00139{left:262.920000px;}
.xcf_c00139{left:267.000000px;}
.x6a_c00139{left:270.420000px;}
.x85_c00139{left:271.500000px;}
.x7_c00139{left:274.500000px;}
.xb7_c00139{left:277.500000px;}
.xbb_c00139{left:278.580000px;}
.x75_c00139{left:280.920000px;}
.x31_c00139{left:282.420000px;}
.x4c_c00139{left:283.920000px;}
.x17_c00139{left:286.500000px;}
.x7e_c00139{left:291.420000px;}
.xa3_c00139{left:292.500000px;}
.x3f_c00139{left:294.000000px;}
.x86_c00139{left:297.000000px;}
.x63_c00139{left:298.920000px;}
.x8_c00139{left:300.000000px;}
.x8e_c00139{left:301.500000px;}
.x21_c00139{left:303.000000px;}
.xd5_c00139{left:305.580000px;}
.x76_c00139{left:307.500000px;}
.xfd_c00139{left:308.580000px;}
.xca_c00139{left:311.580000px;}
.x101_c00139{left:317.580000px;}
.xcc_c00139{left:319.500000px;}
.xdd_c00139{left:321.000000px;}
.x6b_c00139{left:322.500000px;}
.x32_c00139{left:325.500000px;}
.xd9_c00139{left:328.500000px;}
.x40_c00139{left:330.420000px;}
.xbc_c00139{left:331.920000px;}
.x64_c00139{left:334.920000px;}
.x22_c00139{left:337.500000px;}
.x94_c00139{left:339.000000px;}
.x77_c00139{left:342.000000px;}
.xee_c00139{left:343.500000px;}
.x5e_c00139{left:345.420000px;}
.xd0_c00139{left:347.580000px;}
.x23_c00139{left:349.500000px;}
.x9_c00139{left:354.420000px;}
.x41_c00139{left:357.000000px;}
.xe3_c00139{left:360.420000px;}
.x4d_c00139{left:362.580000px;}
.xd6_c00139{left:364.500000px;}
.x87_c00139{left:365.580000px;}
.x9d_c00139{left:367.920000px;}
.xb0_c00139{left:370.080000px;}
.x33_c00139{left:372.000000px;}
.x6c_c00139{left:373.080000px;}
.xf9_c00139{left:375.000000px;}
.xd1_c00139{left:376.080000px;}
.x95_c00139{left:379.500000px;}
.xf1_c00139{left:381.000000px;}
.x4e_c00139{left:382.500000px;}
.x34_c00139{left:384.000000px;}
.xa_c00139{left:387.420000px;}
.x24_c00139{left:388.500000px;}
.x104_c00139{left:390.000000px;}
.x6d_c00139{left:393.000000px;}
.x9e_c00139{left:394.920000px;}
.xcd_c00139{left:396.000000px;}
.x1_c00139{left:399.000000px;}
.xea_c00139{left:400.920000px;}
.x42_c00139{left:402.420000px;}
.x8f_c00139{left:403.920000px;}
.x57_c00139{left:406.080000px;}
.xf3_c00139{left:408.000000px;}
.x4f_c00139{left:409.920000px;}
.xb_c00139{left:414.420000px;}
.x88_c00139{left:415.500000px;}
.xb1_c00139{left:417.000000px;}
.x35_c00139{left:418.500000px;}
.xcb_c00139{left:420.000000px;}
.xda_c00139{left:421.080000px;}
.xa4_c00139{left:424.500000px;}
.x5f_c00139{left:426.000000px;}
.x25_c00139{left:429.000000px;}
.x78_c00139{left:430.500000px;}
.x96_c00139{left:431.580000px;}
.x18_c00139{left:436.080000px;}
.xb2_c00139{left:438.420000px;}
.xc8_c00139{left:439.500000px;}
.xe4_c00139{left:441.000000px;}
.x50_c00139{left:444.000000px;}
.x6e_c00139{left:445.920000px;}
.x43_c00139{left:447.420000px;}
.x9f_c00139{left:451.920000px;}
.xdb_c00139{left:453.000000px;}
.xf4_c00139{left:454.500000px;}
.x89_c00139{left:457.500000px;}
.x79_c00139{left:459.000000px;}
.x26_c00139{left:462.000000px;}
.xb8_c00139{left:463.500000px;}
.xb3_c00139{left:465.000000px;}
.x19_c00139{left:466.500000px;}
.xd2_c00139{left:468.000000px;}
.xc1_c00139{left:470.580000px;}
.xa5_c00139{left:472.500000px;}
.xe5_c00139{left:474.420000px;}
.xc_c00139{left:475.500000px;}
.x97_c00139{left:477.420000px;}
.xfe_c00139{left:483.000000px;}
.xeb_c00139{left:484.500000px;}
.x27_c00139{left:486.000000px;}
.xa0_c00139{left:487.500000px;}
.xc9_c00139{left:490.500000px;}
.x44_c00139{left:491.580000px;}
.x1a_c00139{left:495.000000px;}
.x8a_c00139{left:496.920000px;}
.xd_c00139{left:499.500000px;}
.x65_c00139{left:501.000000px;}
.x58_c00139{left:502.500000px;}
.xfa_c00139{left:504.420000px;}
.xc2_c00139{left:507.420000px;}
.x6f_c00139{left:511.080000px;}
.xa1_c00139{left:512.580000px;}
.xf2_c00139{left:514.500000px;}
.xde_c00139{left:516.000000px;}
.xa6_c00139{left:520.080000px;}
.xe_c00139{left:521.580000px;}
.x36_c00139{left:523.500000px;}
.x90_c00139{left:526.920000px;}
.x7f_c00139{left:528.000000px;}
.x1b_c00139{left:529.920000px;}
.x70_c00139{left:532.500000px;}
.x51_c00139{left:534.000000px;}
.xd7_c00139{left:535.080000px;}
.x45_c00139{left:537.000000px;}
.x60_c00139{left:538.500000px;}
.xb4_c00139{left:540.420000px;}
.x66_c00139{left:543.000000px;}
.xe6_c00139{left:544.500000px;}
.xd3_c00139{left:546.420000px;}
.xbd_c00139{left:547.920000px;}
.x91_c00139{left:549.420000px;}
.x7a_c00139{left:550.920000px;}
.x46_c00139{left:553.500000px;}
.x52_c00139{left:557.580000px;}
.xc3_c00139{left:559.500000px;}
.x102_c00139{left:560.580000px;}
.xf_c00139{left:562.920000px;}
.xef_c00139{left:567.000000px;}
.x98_c00139{left:568.500000px;}
.x59_c00139{left:569.580000px;}
.xe7_c00139{left:571.080000px;}
.x37_c00139{left:573.000000px;}
.x28_c00139{left:574.080000px;}
.xd4_c00139{left:576.420000px;}
.x105_c00139{left:579.000000px;}
.xab_c00139{left:580.500000px;}
.x61_c00139{left:585.000000px;}
.x47_c00139{left:586.500000px;}
.xa7_c00139{left:588.420000px;}
.xff_c00139{left:589.500000px;}
.x38_c00139{left:591.000000px;}
.xf6_c00139{left:592.500000px;}
.x29_c00139{left:593.580000px;}
.x1c_c00139{left:595.080000px;}
.xb9_c00139{left:596.580000px;}
.x10_c00139{left:598.500000px;}
.x8b_c00139{left:601.500000px;}
.x99_c00139{left:603.420000px;}
.x103_c00139{left:606.000000px;}
.xa8_c00139{left:609.645000px;}
.x11_c00139{left:611.580000px;}
.xe0_c00139{left:613.080000px;}
.x39_c00139{left:615.000000px;}
.xfb_c00139{left:616.500000px;}
.x7b_c00139{left:618.000000px;}
.xba_c00139{left:619.920000px;}
.x80_c00139{left:621.000000px;}
.x53_c00139{left:622.500000px;}
.xb5_c00139{left:628.500000px;}
.xe1_c00139{left:633.420000px;}
.xac_c00139{left:634.500000px;}
.x81_c00139{left:636.420000px;}
.x54_c00139{left:639.000000px;}
.x12_c00139{left:640.080000px;}
.x48_c00139{left:642.000000px;}
.xd8_c00139{left:643.500000px;}
.x2a_c00139{left:645.000000px;}
.x92_c00139{left:646.500000px;}
.x5a_c00139{left:648.000000px;}
.x7c_c00139{left:649.500000px;}
.x9a_c00139{left:652.500000px;}
.x106_c00139{left:654.000000px;}
.x55_c00139{left:655.500000px;}
.x13_c00139{left:658.500000px;}
.xf7_c00139{left:660.420000px;}
.x71_c00139{left:661.920000px;}
.x1d_c00139{left:663.000000px;}
.x67_c00139{left:667.080000px;}
.xe8_c00139{left:669.000000px;}
.x3a_c00139{left:670.500000px;}
.x82_c00139{left:672.000000px;}
.x2b_c00139{left:674.580000px;}
.xec_c00139{left:676.500000px;}
.xa2_c00139{left:678.000000px;}
.xbe_c00139{left:679.080000px;}
.x9b_c00139{left:681.420000px;}
.x72_c00139{left:682.920000px;}
.xad_c00139{left:684.000000px;}
.xc4_c00139{left:687.000000px;}
.xa9_c00139{left:688.500000px;}
.xdf_c00139{left:689.580000px;}
.x49_c00139{left:692.145000px;}
.x2c_c00139{left:694.920000px;}
.x3b_c00139{left:704.580000px;}
.xbf_c00139{left:710.580000px;}
.x5b_c00139{left:712.500000px;}
.x68_c00139{left:716.580000px;}
@media print{
.v2_c00139{vertical-align:-16.000000pt;}
.v1_c00139{vertical-align:-5.333333pt;}
.v0_c00139{vertical-align:0.000000pt;}
.ls0_c00139{letter-spacing:0.000000pt;}
.ws0_c00139{word-spacing:-5.294390pt;}
.ws1_c00139{word-spacing:-4.565038pt;}
.ws2_c00139{word-spacing:-3.962043pt;}
.ws3_c00139{word-spacing:0.000000pt;}
.fs6_c00139{font-size:3.040000pt;}
.fs1_c00139{font-size:16.640000pt;}
.fs0_c00139{font-size:18.133333pt;}
.fs4_c00139{font-size:22.666667pt;}
.fs2_c00139{font-size:25.706667pt;}
.fs5_c00139{font-size:28.746667pt;}
.fs3_c00139{font-size:31.733333pt;}
.fs7_c00139{font-size:34.773333pt;}
.y0_c00139{bottom:0.000000pt;}
.ye3_c00139{bottom:225.106667pt;}
.ye1_c00139{bottom:225.693333pt;}
.ye2_c00139{bottom:225.893333pt;}
.ye4_c00139{bottom:226.066667pt;}
.ye6_c00139{bottom:226.640000pt;}
.ye5_c00139{bottom:227.026667pt;}
.ydd_c00139{bottom:242.066667pt;}
.ydf_c00139{bottom:242.440000pt;}
.ye0_c00139{bottom:243.226667pt;}
.yde_c00139{bottom:244.360000pt;}
.yd9_c00139{bottom:259.773333pt;}
.ydc_c00139{bottom:261.106667pt;}
.yda_c00139{bottom:261.693333pt;}
.ydb_c00139{bottom:263.026667pt;}
.yd2_c00139{bottom:277.106667pt;}
.yd8_c00139{bottom:277.306667pt;}
.yd6_c00139{bottom:278.440000pt;}
.yd4_c00139{bottom:278.640000pt;}
.yd3_c00139{bottom:279.026667pt;}
.yd5_c00139{bottom:279.226667pt;}
.yd7_c00139{bottom:280.360000pt;}
.yd1_c00139{bottom:294.440000pt;}
.ycc_c00139{bottom:295.226667pt;}
.yce_c00139{bottom:295.773333pt;}
.ycd_c00139{bottom:296.360000pt;}
.yd0_c00139{bottom:297.306667pt;}
.ycf_c00139{bottom:297.693333pt;}
.yc7_c00139{bottom:311.773333pt;}
.yca_c00139{bottom:313.106667pt;}
.yc6_c00139{bottom:313.693333pt;}
.yc9_c00139{bottom:313.893333pt;}
.ycb_c00139{bottom:314.640000pt;}
.yc8_c00139{bottom:315.026667pt;}
.yc5_c00139{bottom:330.440000pt;}
.yc2_c00139{bottom:331.026667pt;}
.yc3_c00139{bottom:331.226667pt;}
.yc4_c00139{bottom:332.360000pt;}
.ybf_c00139{bottom:347.773333pt;}
.ybe_c00139{bottom:349.693333pt;}
.yc1_c00139{bottom:349.893333pt;}
.yc0_c00139{bottom:350.640000pt;}
.yba_c00139{bottom:365.106667pt;}
.ybc_c00139{bottom:366.640000pt;}
.ybb_c00139{bottom:367.026667pt;}
.ybd_c00139{bottom:367.973333pt;}
.yb6_c00139{bottom:382.440000pt;}
.yb9_c00139{bottom:383.400000pt;}
.yb5_c00139{bottom:383.973333pt;}
.yb8_c00139{bottom:384.360000pt;}
.yb7_c00139{bottom:385.306667pt;}
.yae_c00139{bottom:399.026667pt;}
.yb4_c00139{bottom:399.773333pt;}
.yb2_c00139{bottom:401.106667pt;}
.yb3_c00139{bottom:401.693333pt;}
.yb1_c00139{bottom:401.893333pt;}
.yb0_c00139{bottom:402.066667pt;}
.yaf_c00139{bottom:403.026667pt;}
.ya8_c00139{bottom:417.493333pt;}
.yac_c00139{bottom:417.693333pt;}
.yad_c00139{bottom:418.440000pt;}
.yaa_c00139{bottom:419.226667pt;}
.yab_c00139{bottom:419.400000pt;}
.ya9_c00139{bottom:420.360000pt;}
.ya4_c00139{bottom:435.026667pt;}
.ya1_c00139{bottom:436.360000pt;}
.ya2_c00139{bottom:436.560000pt;}
.ya7_c00139{bottom:437.306667pt;}
.ya3_c00139{bottom:437.693333pt;}
.ya5_c00139{bottom:437.893333pt;}
.ya6_c00139{bottom:438.640000pt;}
.ya0_c00139{bottom:453.106667pt;}
.y9e_c00139{bottom:455.026667pt;}
.y9f_c00139{bottom:455.973333pt;}
.y9c_c00139{bottom:470.440000pt;}
.y9b_c00139{bottom:471.226667pt;}
.y9a_c00139{bottom:472.360000pt;}
.y9d_c00139{bottom:472.560000pt;}
.y99_c00139{bottom:487.026667pt;}
.y93_c00139{bottom:488.160000pt;}
.y92_c00139{bottom:489.306667pt;}
.y94_c00139{bottom:489.693333pt;}
.y96_c00139{bottom:489.893333pt;}
.y97_c00139{bottom:490.066667pt;}
.y98_c00139{bottom:490.640000pt;}
.y95_c00139{bottom:491.026667pt;}
.y90_c00139{bottom:506.440000pt;}
.y8e_c00139{bottom:507.026667pt;}
.y91_c00139{bottom:507.226667pt;}
.y8f_c00139{bottom:508.360000pt;}
.y8b_c00139{bottom:523.773333pt;}
.y8a_c00139{bottom:524.360000pt;}
.y89_c00139{bottom:525.306667pt;}
.y8d_c00139{bottom:525.693333pt;}
.y8c_c00139{bottom:526.640000pt;}
.y88_c00139{bottom:539.026667pt;}
.y86_c00139{bottom:541.106667pt;}
.y83_c00139{bottom:541.693333pt;}
.y87_c00139{bottom:542.066667pt;}
.y84_c00139{bottom:542.640000pt;}
.y85_c00139{bottom:543.026667pt;}
.y81_c00139{bottom:557.106667pt;}
.y80_c00139{bottom:558.440000pt;}
.y7e_c00139{bottom:559.026667pt;}
.y82_c00139{bottom:559.226667pt;}
.y7f_c00139{bottom:560.360000pt;}
.y7a_c00139{bottom:573.693333pt;}
.y7b_c00139{bottom:575.026667pt;}
.y7d_c00139{bottom:575.400000pt;}
.y79_c00139{bottom:575.773333pt;}
.y7c_c00139{bottom:576.560000pt;}
.y78_c00139{bottom:577.306667pt;}
.y77_c00139{bottom:577.693333pt;}
.y75_c00139{bottom:593.106667pt;}
.y71_c00139{bottom:593.693333pt;}
.y76_c00139{bottom:594.640000pt;}
.y72_c00139{bottom:595.026667pt;}
.y73_c00139{bottom:595.226667pt;}
.y74_c00139{bottom:595.973333pt;}
.y70_c00139{bottom:610.066667pt;}
.y6b_c00139{bottom:610.440000pt;}
.y6c_c00139{bottom:610.640000pt;}
.y69_c00139{bottom:611.026667pt;}
.y6d_c00139{bottom:611.773333pt;}
.y6a_c00139{bottom:612.360000pt;}
.y6e_c00139{bottom:612.560000pt;}
.y6f_c00139{bottom:613.306667pt;}
.y67_c00139{bottom:627.026667pt;}
.y63_c00139{bottom:627.773333pt;}
.y65_c00139{bottom:627.973333pt;}
.y64_c00139{bottom:629.693333pt;}
.y66_c00139{bottom:629.706667pt;}
.y68_c00139{bottom:630.640000pt;}
.y5f_c00139{bottom:645.106667pt;}
.y61_c00139{bottom:646.066667pt;}
.y5e_c00139{bottom:647.026667pt;}
.y62_c00139{bottom:647.226667pt;}
.y60_c00139{bottom:648.360000pt;}
.y5c_c00139{bottom:663.773333pt;}
.y59_c00139{bottom:663.973333pt;}
.y58_c00139{bottom:664.360000pt;}
.y5a_c00139{bottom:664.560000pt;}
.y5d_c00139{bottom:665.306667pt;}
.y5b_c00139{bottom:665.693333pt;}
.y54_c00139{bottom:678.440000pt;}
.y56_c00139{bottom:681.106667pt;}
.y57_c00139{bottom:681.893333pt;}
.y55_c00139{bottom:683.026667pt;}
.y52_c00139{bottom:697.106667pt;}
.y53_c00139{bottom:698.440000pt;}
.y4f_c00139{bottom:699.026667pt;}
.y50_c00139{bottom:700.360000pt;}
.y51_c00139{bottom:701.306667pt;}
.y4e_c00139{bottom:715.400000pt;}
.y4c_c00139{bottom:715.773333pt;}
.y4a_c00139{bottom:716.360000pt;}
.y4b_c00139{bottom:716.560000pt;}
.y4d_c00139{bottom:717.693333pt;}
.y44_c00139{bottom:732.733333pt;}
.y46_c00139{bottom:733.106667pt;}
.y49_c00139{bottom:733.893333pt;}
.y48_c00139{bottom:734.066667pt;}
.y43_c00139{bottom:734.640000pt;}
.y45_c00139{bottom:735.026667pt;}
.y47_c00139{bottom:735.226667pt;}
.y41_c00139{bottom:751.026667pt;}
.y42_c00139{bottom:752.360000pt;}
.y3e_c00139{bottom:767.026667pt;}
.y3b_c00139{bottom:767.773333pt;}
.y40_c00139{bottom:768.733333pt;}
.y39_c00139{bottom:769.306667pt;}
.y3a_c00139{bottom:769.693333pt;}
.y3d_c00139{bottom:769.893333pt;}
.y3c_c00139{bottom:770.640000pt;}
.y3f_c00139{bottom:771.026667pt;}
.y33_c00139{bottom:785.106667pt;}
.y34_c00139{bottom:786.440000pt;}
.y32_c00139{bottom:787.026667pt;}
.y36_c00139{bottom:787.226667pt;}
.y38_c00139{bottom:787.400000pt;}
.y37_c00139{bottom:787.973333pt;}
.y35_c00139{bottom:788.360000pt;}
.y2f_c00139{bottom:802.640000pt;}
.y2d_c00139{bottom:803.026667pt;}
.y2c_c00139{bottom:803.773333pt;}
.y2b_c00139{bottom:804.360000pt;}
.y30_c00139{bottom:804.560000pt;}
.y31_c00139{bottom:805.306667pt;}
.y2e_c00139{bottom:805.693333pt;}
.y2a_c00139{bottom:820.733333pt;}
.y28_c00139{bottom:821.106667pt;}
.y25_c00139{bottom:821.693333pt;}
.y26_c00139{bottom:821.893333pt;}
.y29_c00139{bottom:822.640000pt;}
.y27_c00139{bottom:823.026667pt;}
.y23_c00139{bottom:838.440000pt;}
.y21_c00139{bottom:839.026667pt;}
.y24_c00139{bottom:839.973333pt;}
.y22_c00139{bottom:840.360000pt;}
.y1c_c00139{bottom:854.440000pt;}
.y1e_c00139{bottom:855.773333pt;}
.y1b_c00139{bottom:856.360000pt;}
.y20_c00139{bottom:857.306667pt;}
.y1d_c00139{bottom:857.693333pt;}
.y1f_c00139{bottom:858.640000pt;}
.y17_c00139{bottom:871.773333pt;}
.y18_c00139{bottom:873.106667pt;}
.y16_c00139{bottom:873.893333pt;}
.y19_c00139{bottom:875.026667pt;}
.y1a_c00139{bottom:875.226667pt;}
.y11_c00139{bottom:890.066667pt;}
.y15_c00139{bottom:891.400000pt;}
.y13_c00139{bottom:891.973333pt;}
.y14_c00139{bottom:892.360000pt;}
.y12_c00139{bottom:893.306667pt;}
.yd_c00139{bottom:906.440000pt;}
.y10_c00139{bottom:907.773333pt;}
.yc_c00139{bottom:909.693333pt;}
.ye_c00139{bottom:909.893333pt;}
.yf_c00139{bottom:910.640000pt;}
.yb_c00139{bottom:925.106667pt;}
.ya_c00139{bottom:926.640000pt;}
.y8_c00139{bottom:927.026667pt;}
.y9_c00139{bottom:927.973333pt;}
.y4_c00139{bottom:942.440000pt;}
.y6_c00139{bottom:943.226667pt;}
.y7_c00139{bottom:943.973333pt;}
.y3_c00139{bottom:944.360000pt;}
.y5_c00139{bottom:944.560000pt;}
.y1_c00139{bottom:978.266667pt;}
.y2_c00139{bottom:979.226667pt;}
.h7_c00139{height:3.739141pt;}
.h2_c00139{height:20.466875pt;}
.h1_c00139{height:22.303646pt;}
.h5_c00139{height:27.879557pt;}
.h3_c00139{height:31.618698pt;}
.h6_c00139{height:35.357839pt;}
.h4_c00139{height:39.031380pt;}
.h8_c00139{height:42.770521pt;}
.h0_c00139{height:1186.666667pt;}
.w0_c00139{width:782.666667pt;}
.x0_c00139{left:0.000000pt;}
.x3_c00139{left:134.666667pt;}
.x2_c00139{left:136.373333pt;}
.xae_c00139{left:147.626667pt;}
.x4_c00139{left:148.960000pt;}
.x83_c00139{left:152.000000pt;}
.x3c_c00139{left:153.333333pt;}
.xc7_c00139{left:156.960000pt;}
.x1e_c00139{left:158.293333pt;}
.x4a_c00139{left:160.373333pt;}
.x73_c00139{left:161.333333pt;}
.xed_c00139{left:162.666667pt;}
.x3d_c00139{left:164.373333pt;}
.xb6_c00139{left:165.706667pt;}
.xf0_c00139{left:166.666667pt;}
.x56_c00139{left:168.373333pt;}
.xf5_c00139{left:169.333333pt;}
.x2d_c00139{left:170.666667pt;}
.x100_c00139{left:172.000000pt;}
.xc5_c00139{left:173.333333pt;}
.x14_c00139{left:174.666667pt;}
.x5_c00139{left:177.333333pt;}
.x5c_c00139{left:179.040000pt;}
.x74_c00139{left:180.000000pt;}
.x84_c00139{left:181.333333pt;}
.x2e_c00139{left:183.040000pt;}
.xdc_c00139{left:184.000000pt;}
.xc0_c00139{left:185.706667pt;}
.xf8_c00139{left:186.666667pt;}
.xce_c00139{left:189.706667pt;}
.x8c_c00139{left:190.666667pt;}
.xaa_c00139{left:192.960000pt;}
.x93_c00139{left:194.666667pt;}
.x15_c00139{left:197.333333pt;}
.x3e_c00139{left:200.000000pt;}
.xaf_c00139{left:201.706667pt;}
.x1f_c00139{left:202.666667pt;}
.xe2_c00139{left:204.000000pt;}
.xfc_c00139{left:204.960000pt;}
.x2f_c00139{left:206.293333pt;}
.x5d_c00139{left:208.373333pt;}
.xe9_c00139{left:209.333333pt;}
.x6_c00139{left:211.040000pt;}
.xc6_c00139{left:212.000000pt;}
.x9c_c00139{left:213.333333pt;}
.x69_c00139{left:216.373333pt;}
.x62_c00139{left:219.626667pt;}
.x20_c00139{left:221.706667pt;}
.x16_c00139{left:223.040000pt;}
.x4b_c00139{left:227.040000pt;}
.x30_c00139{left:228.000000pt;}
.x8d_c00139{left:229.706667pt;}
.x7d_c00139{left:233.706667pt;}
.xcf_c00139{left:237.333333pt;}
.x6a_c00139{left:240.373333pt;}
.x85_c00139{left:241.333333pt;}
.x7_c00139{left:244.000000pt;}
.xb7_c00139{left:246.666667pt;}
.xbb_c00139{left:247.626667pt;}
.x75_c00139{left:249.706667pt;}
.x31_c00139{left:251.040000pt;}
.x4c_c00139{left:252.373333pt;}
.x17_c00139{left:254.666667pt;}
.x7e_c00139{left:259.040000pt;}
.xa3_c00139{left:260.000000pt;}
.x3f_c00139{left:261.333333pt;}
.x86_c00139{left:264.000000pt;}
.x63_c00139{left:265.706667pt;}
.x8_c00139{left:266.666667pt;}
.x8e_c00139{left:268.000000pt;}
.x21_c00139{left:269.333333pt;}
.xd5_c00139{left:271.626667pt;}
.x76_c00139{left:273.333333pt;}
.xfd_c00139{left:274.293333pt;}
.xca_c00139{left:276.960000pt;}
.x101_c00139{left:282.293333pt;}
.xcc_c00139{left:284.000000pt;}
.xdd_c00139{left:285.333333pt;}
.x6b_c00139{left:286.666667pt;}
.x32_c00139{left:289.333333pt;}
.xd9_c00139{left:292.000000pt;}
.x40_c00139{left:293.706667pt;}
.xbc_c00139{left:295.040000pt;}
.x64_c00139{left:297.706667pt;}
.x22_c00139{left:300.000000pt;}
.x94_c00139{left:301.333333pt;}
.x77_c00139{left:304.000000pt;}
.xee_c00139{left:305.333333pt;}
.x5e_c00139{left:307.040000pt;}
.xd0_c00139{left:308.960000pt;}
.x23_c00139{left:310.666667pt;}
.x9_c00139{left:315.040000pt;}
.x41_c00139{left:317.333333pt;}
.xe3_c00139{left:320.373333pt;}
.x4d_c00139{left:322.293333pt;}
.xd6_c00139{left:324.000000pt;}
.x87_c00139{left:324.960000pt;}
.x9d_c00139{left:327.040000pt;}
.xb0_c00139{left:328.960000pt;}
.x33_c00139{left:330.666667pt;}
.x6c_c00139{left:331.626667pt;}
.xf9_c00139{left:333.333333pt;}
.xd1_c00139{left:334.293333pt;}
.x95_c00139{left:337.333333pt;}
.xf1_c00139{left:338.666667pt;}
.x4e_c00139{left:340.000000pt;}
.x34_c00139{left:341.333333pt;}
.xa_c00139{left:344.373333pt;}
.x24_c00139{left:345.333333pt;}
.x104_c00139{left:346.666667pt;}
.x6d_c00139{left:349.333333pt;}
.x9e_c00139{left:351.040000pt;}
.xcd_c00139{left:352.000000pt;}
.x1_c00139{left:354.666667pt;}
.xea_c00139{left:356.373333pt;}
.x42_c00139{left:357.706667pt;}
.x8f_c00139{left:359.040000pt;}
.x57_c00139{left:360.960000pt;}
.xf3_c00139{left:362.666667pt;}
.x4f_c00139{left:364.373333pt;}
.xb_c00139{left:368.373333pt;}
.x88_c00139{left:369.333333pt;}
.xb1_c00139{left:370.666667pt;}
.x35_c00139{left:372.000000pt;}
.xcb_c00139{left:373.333333pt;}
.xda_c00139{left:374.293333pt;}
.xa4_c00139{left:377.333333pt;}
.x5f_c00139{left:378.666667pt;}
.x25_c00139{left:381.333333pt;}
.x78_c00139{left:382.666667pt;}
.x96_c00139{left:383.626667pt;}
.x18_c00139{left:387.626667pt;}
.xb2_c00139{left:389.706667pt;}
.xc8_c00139{left:390.666667pt;}
.xe4_c00139{left:392.000000pt;}
.x50_c00139{left:394.666667pt;}
.x6e_c00139{left:396.373333pt;}
.x43_c00139{left:397.706667pt;}
.x9f_c00139{left:401.706667pt;}
.xdb_c00139{left:402.666667pt;}
.xf4_c00139{left:404.000000pt;}
.x89_c00139{left:406.666667pt;}
.x79_c00139{left:408.000000pt;}
.x26_c00139{left:410.666667pt;}
.xb8_c00139{left:412.000000pt;}
.xb3_c00139{left:413.333333pt;}
.x19_c00139{left:414.666667pt;}
.xd2_c00139{left:416.000000pt;}
.xc1_c00139{left:418.293333pt;}
.xa5_c00139{left:420.000000pt;}
.xe5_c00139{left:421.706667pt;}
.xc_c00139{left:422.666667pt;}
.x97_c00139{left:424.373333pt;}
.xfe_c00139{left:429.333333pt;}
.xeb_c00139{left:430.666667pt;}
.x27_c00139{left:432.000000pt;}
.xa0_c00139{left:433.333333pt;}
.xc9_c00139{left:436.000000pt;}
.x44_c00139{left:436.960000pt;}
.x1a_c00139{left:440.000000pt;}
.x8a_c00139{left:441.706667pt;}
.xd_c00139{left:444.000000pt;}
.x65_c00139{left:445.333333pt;}
.x58_c00139{left:446.666667pt;}
.xfa_c00139{left:448.373333pt;}
.xc2_c00139{left:451.040000pt;}
.x6f_c00139{left:454.293333pt;}
.xa1_c00139{left:455.626667pt;}
.xf2_c00139{left:457.333333pt;}
.xde_c00139{left:458.666667pt;}
.xa6_c00139{left:462.293333pt;}
.xe_c00139{left:463.626667pt;}
.x36_c00139{left:465.333333pt;}
.x90_c00139{left:468.373333pt;}
.x7f_c00139{left:469.333333pt;}
.x1b_c00139{left:471.040000pt;}
.x70_c00139{left:473.333333pt;}
.x51_c00139{left:474.666667pt;}
.xd7_c00139{left:475.626667pt;}
.x45_c00139{left:477.333333pt;}
.x60_c00139{left:478.666667pt;}
.xb4_c00139{left:480.373333pt;}
.x66_c00139{left:482.666667pt;}
.xe6_c00139{left:484.000000pt;}
.xd3_c00139{left:485.706667pt;}
.xbd_c00139{left:487.040000pt;}
.x91_c00139{left:488.373333pt;}
.x7a_c00139{left:489.706667pt;}
.x46_c00139{left:492.000000pt;}
.x52_c00139{left:495.626667pt;}
.xc3_c00139{left:497.333333pt;}
.x102_c00139{left:498.293333pt;}
.xf_c00139{left:500.373333pt;}
.xef_c00139{left:504.000000pt;}
.x98_c00139{left:505.333333pt;}
.x59_c00139{left:506.293333pt;}
.xe7_c00139{left:507.626667pt;}
.x37_c00139{left:509.333333pt;}
.x28_c00139{left:510.293333pt;}
.xd4_c00139{left:512.373333pt;}
.x105_c00139{left:514.666667pt;}
.xab_c00139{left:516.000000pt;}
.x61_c00139{left:520.000000pt;}
.x47_c00139{left:521.333333pt;}
.xa7_c00139{left:523.040000pt;}
.xff_c00139{left:524.000000pt;}
.x38_c00139{left:525.333333pt;}
.xf6_c00139{left:526.666667pt;}
.x29_c00139{left:527.626667pt;}
.x1c_c00139{left:528.960000pt;}
.xb9_c00139{left:530.293333pt;}
.x10_c00139{left:532.000000pt;}
.x8b_c00139{left:534.666667pt;}
.x99_c00139{left:536.373333pt;}
.x103_c00139{left:538.666667pt;}
.xa8_c00139{left:541.906667pt;}
.x11_c00139{left:543.626667pt;}
.xe0_c00139{left:544.960000pt;}
.x39_c00139{left:546.666667pt;}
.xfb_c00139{left:548.000000pt;}
.x7b_c00139{left:549.333333pt;}
.xba_c00139{left:551.040000pt;}
.x80_c00139{left:552.000000pt;}
.x53_c00139{left:553.333333pt;}
.xb5_c00139{left:558.666667pt;}
.xe1_c00139{left:563.040000pt;}
.xac_c00139{left:564.000000pt;}
.x81_c00139{left:565.706667pt;}
.x54_c00139{left:568.000000pt;}
.x12_c00139{left:568.960000pt;}
.x48_c00139{left:570.666667pt;}
.xd8_c00139{left:572.000000pt;}
.x2a_c00139{left:573.333333pt;}
.x92_c00139{left:574.666667pt;}
.x5a_c00139{left:576.000000pt;}
.x7c_c00139{left:577.333333pt;}
.x9a_c00139{left:580.000000pt;}
.x106_c00139{left:581.333333pt;}
.x55_c00139{left:582.666667pt;}
.x13_c00139{left:585.333333pt;}
.xf7_c00139{left:587.040000pt;}
.x71_c00139{left:588.373333pt;}
.x1d_c00139{left:589.333333pt;}
.x67_c00139{left:592.960000pt;}
.xe8_c00139{left:594.666667pt;}
.x3a_c00139{left:596.000000pt;}
.x82_c00139{left:597.333333pt;}
.x2b_c00139{left:599.626667pt;}
.xec_c00139{left:601.333333pt;}
.xa2_c00139{left:602.666667pt;}
.xbe_c00139{left:603.626667pt;}
.x9b_c00139{left:605.706667pt;}
.x72_c00139{left:607.040000pt;}
.xad_c00139{left:608.000000pt;}
.xc4_c00139{left:610.666667pt;}
.xa9_c00139{left:612.000000pt;}
.xdf_c00139{left:612.960000pt;}
.x49_c00139{left:615.240000pt;}
.x2c_c00139{left:617.706667pt;}
.x3b_c00139{left:626.293333pt;}
.xbf_c00139{left:631.626667pt;}
.x5b_c00139{left:633.333333pt;}
.x68_c00139{left:636.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_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_b1ed6349e8c9ad4bcf75ea35.woff2')format("woff");}.ff1_c00140{font-family:ff1_c00140;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma2_c00140{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.m2f_c00140{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m31_c00140{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.m11_c00140{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.mff_c00140{transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);}
.md1_c00140{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mc4_c00140{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m88_c00140{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.md4_c00140{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m5f_c00140{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.me3_c00140{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.mf3_c00140{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m50_c00140{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m4f_c00140{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m1e_c00140{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m30_c00140{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m9d_c00140{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m4_c00140{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.mb4_c00140{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m75_c00140{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.mc1_c00140{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m19_c00140{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m106_c00140{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m1d_c00140{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mbc_c00140{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mf7_c00140{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m2d_c00140{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.md9_c00140{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m1f_c00140{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m57_c00140{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m6c_c00140{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);}
.m51_c00140{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m67_c00140{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m8b_c00140{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.mad_c00140{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m27_c00140{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mb0_c00140{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m10_c00140{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m10e_c00140{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m102_c00140{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m4b_c00140{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m22_c00140{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.mc2_c00140{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.m42_c00140{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m5_c00140{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mc7_c00140{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.mef_c00140{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.m46_c00140{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m113_c00140{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m100_c00140{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m62_c00140{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.mfe_c00140{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.maa_c00140{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m68_c00140{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m4d_c00140{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.md2_c00140{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mf4_c00140{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m54_c00140{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.m7b_c00140{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m93_c00140{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m78_c00140{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m53_c00140{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.mec_c00140{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.md7_c00140{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mfc_c00140{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m5a_c00140{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mb9_c00140{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mc6_c00140{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.mee_c00140{transform:matrix(0.436722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436722,0.000000,0.000000,0.250000,0,0);}
.m66_c00140{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.me2_c00140{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m103_c00140{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m6b_c00140{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m97_c00140{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m112_c00140{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.mf1_c00140{transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);}
.m7f_c00140{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mcd_c00140{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m8c_c00140{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m107_c00140{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m92_c00140{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m3d_c00140{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.m17_c00140{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m3a_c00140{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.ma0_c00140{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.m84_c00140{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m4c_c00140{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m1a_c00140{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m79_c00140{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m5e_c00140{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m2b_c00140{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m10c_c00140{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.ma4_c00140{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m2_c00140{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mca_c00140{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.me7_c00140{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m29_c00140{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m110_c00140{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.m61_c00140{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.m10d_c00140{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.mde_c00140{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m104_c00140{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m81_c00140{transform:matrix(0.476471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476471,0.000000,0.000000,0.250000,0,0);}
.mae_c00140{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mac_c00140{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m85_c00140{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m49_c00140{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m109_c00140{transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);}
.mf5_c00140{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.mb6_c00140{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m2c_c00140{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m3e_c00140{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m52_c00140{transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);}
.mab_c00140{transform:matrix(0.487477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487477,0.000000,0.000000,0.250000,0,0);}
.m8_c00140{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m64_c00140{transform:matrix(0.490724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490724,0.000000,0.000000,0.250000,0,0);}
.m56_c00140{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.me1_c00140{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m37_c00140{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m8a_c00140{transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);}
.m2e_c00140{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m3c_c00140{transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);}
.m36_c00140{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);}
.mc9_c00140{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mc5_c00140{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m6f_c00140{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mf6_c00140{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m8f_c00140{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m9b_c00140{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m1c_c00140{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.mfd_c00140{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.mc_c00140{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m47_c00140{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.mbf_c00140{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.maf_c00140{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m7e_c00140{transform:matrix(0.516387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516387,0.000000,0.000000,0.250000,0,0);}
.ma5_c00140{transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);}
.m45_c00140{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mb5_c00140{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.mf2_c00140{transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);}
.mf9_c00140{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);}
.m80_c00140{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m23_c00140{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m99_c00140{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.ma6_c00140{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m16_c00140{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m114_c00140{transform:matrix(0.526438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526438,0.000000,0.000000,0.250000,0,0);}
.m87_c00140{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m72_c00140{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m41_c00140{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m44_c00140{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m71_c00140{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m6_c00140{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m8d_c00140{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.mb2_c00140{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m3_c00140{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mc3_c00140{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.me9_c00140{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.ma3_c00140{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m15_c00140{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m89_c00140{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.ma_c00140{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m20_c00140{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m8e_c00140{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m70_c00140{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mfa_c00140{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m25_c00140{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m26_c00140{transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);}
.m82_c00140{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mdf_c00140{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m10b_c00140{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m69_c00140{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m10f_c00140{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m115_c00140{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mcf_c00140{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m83_c00140{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m4e_c00140{transform:matrix(0.548237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548237,0.000000,0.000000,0.250000,0,0);}
.mb3_c00140{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.md3_c00140{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m7c_c00140{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m116_c00140{transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);}
.m96_c00140{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m55_c00140{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m73_c00140{transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);}
.m7_c00140{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m59_c00140{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mdc_c00140{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m34_c00140{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.ma1_c00140{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m77_c00140{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m6e_c00140{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.mbd_c00140{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.me4_c00140{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.ma7_c00140{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m24_c00140{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m1b_c00140{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m90_c00140{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mbe_c00140{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m7a_c00140{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m18_c00140{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.med_c00140{transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);}
.m7d_c00140{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.mb7_c00140{transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);}
.m12_c00140{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m86_c00140{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.md8_c00140{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m91_c00140{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.mbb_c00140{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m5d_c00140{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mc8_c00140{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.md5_c00140{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m65_c00140{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m6a_c00140{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.md6_c00140{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.mda_c00140{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.me0_c00140{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);}
.m2a_c00140{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.me8_c00140{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m3b_c00140{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m1_c00140{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.mdb_c00140{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.m28_c00140{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.ma8_c00140{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m111_c00140{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.md_c00140{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m35_c00140{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.mb1_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);}
.m0_c00140{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m43_c00140{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.mc0_c00140{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m74_c00140{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m58_c00140{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m13_c00140{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m5b_c00140{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m76_c00140{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.md0_c00140{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.me6_c00140{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m14_c00140{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.me5_c00140{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.mf_c00140{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.mf0_c00140{transform:matrix(0.655147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655147,0.000000,0.000000,0.250000,0,0);}
.m38_c00140{transform:matrix(0.656120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656120,0.000000,0.000000,0.250000,0,0);}
.mce_c00140{transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);}
.m105_c00140{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m33_c00140{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m39_c00140{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mb_c00140{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m60_c00140{transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);}
.mb8_c00140{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mcb_c00140{transform:matrix(0.695882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695882,0.000000,0.000000,0.250000,0,0);}
.m94_c00140{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m48_c00140{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.mea_c00140{transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);}
.m32_c00140{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m6d_c00140{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.ma9_c00140{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.meb_c00140{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m9_c00140{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m10a_c00140{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m5c_c00140{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m21_c00140{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m95_c00140{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m3f_c00140{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m40_c00140{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m98_c00140{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.mcc_c00140{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.me_c00140{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m63_c00140{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m9e_c00140{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m9f_c00140{transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);}
.mba_c00140{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m9a_c00140{transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);}
.m108_c00140{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m4a_c00140{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.mdd_c00140{transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);}
.mf8_c00140{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m9c_c00140{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.mfb_c00140{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.m101_c00140{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00140{vertical-align:0.000000px;}
.ls0_c00140{letter-spacing:0.000000px;}
.sc__c00140{text-shadow:none;}
.sc0_c00140{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00140{-webkit-text-stroke:0px transparent;}
.sc0_c00140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00140{word-spacing:0.000000px;}
.ws0_c00140{word-spacing:1.025518px;}
.fc0_c00140{color:transparent;}
.fs7_c00140{font-size:3.420000px;}
.fs6_c00140{font-size:13.620000px;}
.fs1_c00140{font-size:18.720000px;}
.fs0_c00140{font-size:20.400000px;}
.fs4_c00140{font-size:25.500000px;}
.fs2_c00140{font-size:28.920000px;}
.fs5_c00140{font-size:32.340000px;}
.fs3_c00140{font-size:35.700000px;}
.y0_c00140{bottom:0.000000px;}
.y2_c00140{bottom:228.630000px;}
.ydb_c00140{bottom:253.245000px;}
.yde_c00140{bottom:254.130000px;}
.ydd_c00140{bottom:254.325000px;}
.ydc_c00140{bottom:255.405000px;}
.yd9_c00140{bottom:272.325000px;}
.yd7_c00140{bottom:272.745000px;}
.yda_c00140{bottom:273.630000px;}
.yd8_c00140{bottom:274.470000px;}
.yd6_c00140{bottom:274.905000px;}
.yd0_c00140{bottom:291.405000px;}
.yd5_c00140{bottom:291.825000px;}
.yd3_c00140{bottom:293.130000px;}
.yd4_c00140{bottom:293.325000px;}
.ycd_c00140{bottom:293.745000px;}
.yd2_c00140{bottom:294.405000px;}
.ycc_c00140{bottom:294.630000px;}
.ycf_c00140{bottom:294.825000px;}
.yd1_c00140{bottom:295.470000px;}
.yce_c00140{bottom:295.905000px;}
.yca_c00140{bottom:311.745000px;}
.yc7_c00140{bottom:311.970000px;}
.yc6_c00140{bottom:312.405000px;}
.ycb_c00140{bottom:312.825000px;}
.yc9_c00140{bottom:313.245000px;}
.yc3_c00140{bottom:313.905000px;}
.yc4_c00140{bottom:314.130000px;}
.yc5_c00140{bottom:314.970000px;}
.yc8_c00140{bottom:315.405000px;}
.yc2_c00140{bottom:331.245000px;}
.ybd_c00140{bottom:332.745000px;}
.yc0_c00140{bottom:333.405000px;}
.yc1_c00140{bottom:334.470000px;}
.ybf_c00140{bottom:334.905000px;}
.ybe_c00140{bottom:334.920000px;}
.ybc_c00140{bottom:358.470000px;}
.yb8_c00140{bottom:359.325000px;}
.ybb_c00140{bottom:360.405000px;}
.yba_c00140{bottom:361.470000px;}
.yb9_c00140{bottom:361.695000px;}
.yb0_c00140{bottom:373.470000px;}
.yb5_c00140{bottom:373.905000px;}
.yae_c00140{bottom:374.325000px;}
.yb3_c00140{bottom:374.550000px;}
.yb6_c00140{bottom:374.970000px;}
.yb4_c00140{bottom:375.195000px;}
.yaf_c00140{bottom:375.405000px;}
.yac_c00140{bottom:375.630000px;}
.yb7_c00140{bottom:376.050000px;}
.yad_c00140{bottom:376.470000px;}
.yb2_c00140{bottom:376.695000px;}
.yb1_c00140{bottom:377.550000px;}
.yab_c00140{bottom:388.905000px;}
.ya8_c00140{bottom:389.970000px;}
.yaa_c00140{bottom:390.405000px;}
.ya7_c00140{bottom:390.630000px;}
.ya9_c00140{bottom:391.050000px;}
.ya4_c00140{bottom:402.825000px;}
.ya5_c00140{bottom:403.050000px;}
.ya1_c00140{bottom:403.905000px;}
.ya0_c00140{bottom:404.130000px;}
.ya2_c00140{bottom:404.970000px;}
.ya3_c00140{bottom:405.195000px;}
.ya6_c00140{bottom:406.050000px;}
.y9f_c00140{bottom:430.245000px;}
.y9c_c00140{bottom:432.405000px;}
.y9d_c00140{bottom:432.630000px;}
.y9e_c00140{bottom:433.470000px;}
.y98_c00140{bottom:449.745000px;}
.y9b_c00140{bottom:450.825000px;}
.y9a_c00140{bottom:451.470000px;}
.y97_c00140{bottom:451.905000px;}
.y99_c00140{bottom:452.970000px;}
.y94_c00140{bottom:469.245000px;}
.y92_c00140{bottom:470.745000px;}
.y96_c00140{bottom:471.405000px;}
.y95_c00140{bottom:471.630000px;}
.y93_c00140{bottom:472.905000px;}
.y90_c00140{bottom:490.245000px;}
.y8f_c00140{bottom:491.130000px;}
.y8e_c00140{bottom:491.325000px;}
.y91_c00140{bottom:491.970000px;}
.y8c_c00140{bottom:492.405000px;}
.y8d_c00140{bottom:493.470000px;}
.y8b_c00140{bottom:507.405000px;}
.y8a_c00140{bottom:509.745000px;}
.y89_c00140{bottom:511.905000px;}
.y84_c00140{bottom:528.405000px;}
.y86_c00140{bottom:529.245000px;}
.y87_c00140{bottom:530.970000px;}
.y85_c00140{bottom:531.405000px;}
.y88_c00140{bottom:532.470000px;}
.y83_c00140{bottom:547.905000px;}
.y82_c00140{bottom:548.745000px;}
.y81_c00140{bottom:549.630000px;}
.y80_c00140{bottom:550.470000px;}
.y7f_c00140{bottom:550.905000px;}
.y7b_c00140{bottom:568.245000px;}
.y7c_c00140{bottom:570.405000px;}
.y7d_c00140{bottom:570.630000px;}
.y7e_c00140{bottom:571.470000px;}
.y78_c00140{bottom:589.245000px;}
.y7a_c00140{bottom:589.905000px;}
.y79_c00140{bottom:590.130000px;}
.y77_c00140{bottom:590.970000px;}
.y76_c00140{bottom:591.405000px;}
.y74_c00140{bottom:608.745000px;}
.y72_c00140{bottom:609.405000px;}
.y75_c00140{bottom:609.630000px;}
.y71_c00140{bottom:610.470000px;}
.y73_c00140{bottom:610.905000px;}
.y6e_c00140{bottom:628.245000px;}
.y6d_c00140{bottom:629.130000px;}
.y6f_c00140{bottom:629.325000px;}
.y70_c00140{bottom:630.405000px;}
.y69_c00140{bottom:645.405000px;}
.y6b_c00140{bottom:646.470000px;}
.y67_c00140{bottom:647.745000px;}
.y6c_c00140{bottom:648.630000px;}
.y6a_c00140{bottom:649.470000px;}
.y68_c00140{bottom:649.905000px;}
.y65_c00140{bottom:667.245000px;}
.y66_c00140{bottom:668.325000px;}
.y63_c00140{bottom:669.405000px;}
.y62_c00140{bottom:669.630000px;}
.y64_c00140{bottom:670.470000px;}
.y61_c00140{bottom:686.745000px;}
.y5c_c00140{bottom:687.825000px;}
.y5f_c00140{bottom:688.905000px;}
.y5d_c00140{bottom:689.130000px;}
.y5e_c00140{bottom:689.970000px;}
.y60_c00140{bottom:690.405000px;}
.y5a_c00140{bottom:706.245000px;}
.y59_c00140{bottom:708.405000px;}
.y5b_c00140{bottom:709.470000px;}
.y56_c00140{bottom:724.905000px;}
.y58_c00140{bottom:725.970000px;}
.y57_c00140{bottom:727.245000px;}
.y55_c00140{bottom:729.405000px;}
.y54_c00140{bottom:746.325000px;}
.y52_c00140{bottom:746.745000px;}
.y53_c00140{bottom:747.630000px;}
.y4f_c00140{bottom:747.825000px;}
.y50_c00140{bottom:748.050000px;}
.y51_c00140{bottom:748.905000px;}
.y4d_c00140{bottom:766.245000px;}
.y4c_c00140{bottom:767.325000px;}
.y4e_c00140{bottom:767.970000px;}
.y4b_c00140{bottom:768.405000px;}
.y49_c00140{bottom:784.905000px;}
.y47_c00140{bottom:785.745000px;}
.y48_c00140{bottom:786.630000px;}
.y46_c00140{bottom:787.905000px;}
.y4a_c00140{bottom:788.970000px;}
.y45_c00140{bottom:805.245000px;}
.y43_c00140{bottom:807.405000px;}
.y44_c00140{bottom:807.630000px;}
.y42_c00140{bottom:808.470000px;}
.y40_c00140{bottom:824.745000px;}
.y3f_c00140{bottom:826.905000px;}
.y41_c00140{bottom:827.130000px;}
.y3e_c00140{bottom:827.970000px;}
.y3b_c00140{bottom:845.745000px;}
.y3d_c00140{bottom:845.970000px;}
.y3c_c00140{bottom:847.470000px;}
.y3a_c00140{bottom:847.905000px;}
.y39_c00140{bottom:865.245000px;}
.y36_c00140{bottom:865.905000px;}
.y38_c00140{bottom:866.130000px;}
.y37_c00140{bottom:866.970000px;}
.y35_c00140{bottom:867.405000px;}
.y30_c00140{bottom:882.405000px;}
.y2e_c00140{bottom:884.745000px;}
.y34_c00140{bottom:885.405000px;}
.y31_c00140{bottom:885.630000px;}
.y32_c00140{bottom:885.825000px;}
.y33_c00140{bottom:886.905000px;}
.y2f_c00140{bottom:887.970000px;}
.y2a_c00140{bottom:901.905000px;}
.y2c_c00140{bottom:903.405000px;}
.y2b_c00140{bottom:904.245000px;}
.y29_c00140{bottom:905.130000px;}
.y28_c00140{bottom:906.405000px;}
.y2d_c00140{bottom:907.470000px;}
.y27_c00140{bottom:923.325000px;}
.y26_c00140{bottom:923.745000px;}
.y25_c00140{bottom:925.905000px;}
.y22_c00140{bottom:943.245000px;}
.y21_c00140{bottom:944.130000px;}
.y24_c00140{bottom:944.325000px;}
.y23_c00140{bottom:945.405000px;}
.y20_c00140{bottom:961.905000px;}
.y1d_c00140{bottom:962.325000px;}
.y1f_c00140{bottom:962.745000px;}
.y1b_c00140{bottom:962.970000px;}
.y1a_c00140{bottom:964.905000px;}
.y1e_c00140{bottom:965.130000px;}
.y1c_c00140{bottom:965.325000px;}
.y16_c00140{bottom:982.245000px;}
.y18_c00140{bottom:983.970000px;}
.y15_c00140{bottom:984.405000px;}
.y17_c00140{bottom:984.630000px;}
.y19_c00140{bottom:985.470000px;}
.y13_c00140{bottom:1001.745000px;}
.y14_c00140{bottom:1002.825000px;}
.y12_c00140{bottom:1003.905000px;}
.y10_c00140{bottom:1021.245000px;}
.yf_c00140{bottom:1023.405000px;}
.y11_c00140{bottom:1023.630000px;}
.y9_c00140{bottom:1040.745000px;}
.yd_c00140{bottom:1041.825000px;}
.ya_c00140{bottom:1042.245000px;}
.yb_c00140{bottom:1042.905000px;}
.y7_c00140{bottom:1043.130000px;}
.ye_c00140{bottom:1043.325000px;}
.y8_c00140{bottom:1043.970000px;}
.yc_c00140{bottom:1044.405000px;}
.y4_c00140{bottom:1061.745000px;}
.y5_c00140{bottom:1062.630000px;}
.y6_c00140{bottom:1063.470000px;}
.y3_c00140{bottom:1063.905000px;}
.y1_c00140{bottom:1102.050000px;}
.h8_c00140{height:4.206533px;}
.h7_c00140{height:16.752334px;}
.h2_c00140{height:23.025234px;}
.h1_c00140{height:25.091602px;}
.h5_c00140{height:31.364502px;}
.h3_c00140{height:35.571035px;}
.h6_c00140{height:39.777568px;}
.h4_c00140{height:43.910303px;}
.h0_c00140{height:1335.000000px;}
.w0_c00140{width:880.500000px;}
.x0_c00140{left:0.000000px;}
.xed_c00140{left:151.500000px;}
.x81_c00140{left:152.580000px;}
.x4_c00140{left:154.920000px;}
.x100_c00140{left:165.000000px;}
.xf6_c00140{left:166.500000px;}
.x108_c00140{left:167.580000px;}
.x27_c00140{left:174.000000px;}
.x5b_c00140{left:175.500000px;}
.x62_c00140{left:177.000000px;}
.x5_c00140{left:183.000000px;}
.x82_c00140{left:184.500000px;}
.xca_c00140{left:186.000000px;}
.x6b_c00140{left:187.500000px;}
.xe0_c00140{left:188.580000px;}
.x8b_c00140{left:190.080000px;}
.x10_c00140{left:193.500000px;}
.x107_c00140{left:199.500000px;}
.x32_c00140{left:200.580000px;}
.xa2_c00140{left:202.500000px;}
.x71_c00140{left:203.580000px;}
.xd5_c00140{left:205.500000px;}
.xe8_c00140{left:209.580000px;}
.x63_c00140{left:211.080000px;}
.x1c_c00140{left:214.275000px;}
.x83_c00140{left:215.580000px;}
.xae_c00140{left:217.920000px;}
.xe1_c00140{left:220.500000px;}
.xbb_c00140{left:222.000000px;}
.x3e_c00140{left:223.500000px;}
.x11_c00140{left:225.420000px;}
.x5c_c00140{left:226.500000px;}
.xcb_c00140{left:228.000000px;}
.x33_c00140{left:229.080000px;}
.x112_c00140{left:231.420000px;}
.x6c_c00140{left:233.580000px;}
.x64_c00140{left:236.580000px;}
.xaa_c00140{left:238.500000px;}
.xe5_c00140{left:240.000000px;}
.xdb_c00140{left:241.500000px;}
.x7a_c00140{left:243.420000px;}
.x9a_c00140{left:245.355000px;}
.x28_c00140{left:249.420000px;}
.xfc_c00140{left:250.500000px;}
.x6_c00140{left:252.000000px;}
.x109_c00140{left:255.000000px;}
.x84_c00140{left:256.500000px;}
.x1d_c00140{left:258.000000px;}
.x8c_c00140{left:262.500000px;}
.xb5_c00140{left:264.000000px;}
.x12_c00140{left:265.500000px;}
.x4b_c00140{left:268.500000px;}
.x94_c00140{left:271.080000px;}
.xee_c00140{left:273.000000px;}
.x65_c00140{left:274.500000px;}
.x113_c00140{left:276.000000px;}
.xa3_c00140{left:277.080000px;}
.xbc_c00140{left:279.000000px;}
.xd1_c00140{left:280.500000px;}
.x34_c00140{left:281.775000px;}
.xf2_c00140{left:283.275000px;}
.x3f_c00140{left:285.000000px;}
.xcc_c00140{left:286.080000px;}
.x72_c00140{left:289.500000px;}
.x1e_c00140{left:291.000000px;}
.xe6_c00140{left:292.920000px;}
.x114_c00140{left:295.080000px;}
.x7b_c00140{left:296.580000px;}
.x10e_c00140{left:298.500000px;}
.x55_c00140{left:300.000000px;}
.xaf_c00140{left:303.000000px;}
.x29_c00140{left:304.500000px;}
.x95_c00140{left:306.000000px;}
.x10a_c00140{left:309.000000px;}
.x66_c00140{left:310.080000px;}
.x7c_c00140{left:314.580000px;}
.xd6_c00140{left:316.500000px;}
.x13_c00140{left:317.580000px;}
.x10f_c00140{left:319.500000px;}
.x5d_c00140{left:322.500000px;}
.x10b_c00140{left:324.000000px;}
.xf7_c00140{left:325.500000px;}
.x101_c00140{left:327.000000px;}
.x4c_c00140{left:328.500000px;}
.x85_c00140{left:330.000000px;}
.xef_c00140{left:331.500000px;}
.x35_c00140{left:333.000000px;}
.xbd_c00140{left:334.500000px;}
.x14_c00140{left:337.080000px;}
.xe2_c00140{left:339.000000px;}
.xe9_c00140{left:340.500000px;}
.x2a_c00140{left:341.580000px;}
.x1f_c00140{left:343.500000px;}
.x40_c00140{left:346.920000px;}
.x4d_c00140{left:348.000000px;}
.x67_c00140{left:349.920000px;}
.x86_c00140{left:351.000000px;}
.x7_c00140{left:352.500000px;}
.xc2_c00140{left:353.580000px;}
.x73_c00140{left:355.500000px;}
.x5e_c00140{left:358.080000px;}
.x36_c00140{left:360.000000px;}
.x102_c00140{left:363.420000px;}
.xe7_c00140{left:364.920000px;}
.x15_c00140{left:367.500000px;}
.x6d_c00140{left:369.000000px;}
.xe3_c00140{left:370.500000px;}
.xdc_c00140{left:371.580000px;}
.x74_c00140{left:373.500000px;}
.xa4_c00140{left:378.000000px;}
.xd2_c00140{left:379.500000px;}
.x56_c00140{left:381.000000px;}
.xf8_c00140{left:382.920000px;}
.xfd_c00140{left:384.000000px;}
.x41_c00140{left:385.080000px;}
.x16_c00140{left:386.580000px;}
.x7d_c00140{left:389.580000px;}
.x5f_c00140{left:391.080000px;}
.xb6_c00140{left:394.500000px;}
.x68_c00140{left:397.080000px;}
.x20_c00140{left:399.000000px;}
.xf3_c00140{left:400.080000px;}
.x1_c00140{left:402.000000px;}
.xea_c00140{left:403.920000px;}
.x8_c00140{left:405.000000px;}
.x96_c00140{left:408.000000px;}
.x4e_c00140{left:409.920000px;}
.xb7_c00140{left:411.000000px;}
.xa5_c00140{left:414.420000px;}
.x10c_c00140{left:417.420000px;}
.xf9_c00140{left:420.000000px;}
.x21_c00140{left:421.920000px;}
.x37_c00140{left:423.000000px;}
.x8d_c00140{left:424.920000px;}
.xd7_c00140{left:427.500000px;}
.x75_c00140{left:429.000000px;}
.xab_c00140{left:430.080000px;}
.x17_c00140{left:433.500000px;}
.xbe_c00140{left:435.420000px;}
.x6e_c00140{left:436.500000px;}
.x97_c00140{left:439.500000px;}
.x9_c00140{left:441.000000px;}
.xb8_c00140{left:442.500000px;}
.xd8_c00140{left:444.000000px;}
.x57_c00140{left:445.920000px;}
.x22_c00140{left:450.420000px;}
.xf4_c00140{left:451.920000px;}
.xe4_c00140{left:454.500000px;}
.x2b_c00140{left:456.000000px;}
.x38_c00140{left:457.920000px;}
.xc3_c00140{left:459.000000px;}
.x42_c00140{left:460.500000px;}
.x98_c00140{left:461.580000px;}
.x9b_c00140{left:465.420000px;}
.x110_c00140{left:472.500000px;}
.x4f_c00140{left:474.000000px;}
.x43_c00140{left:475.920000px;}
.x58_c00140{left:479.580000px;}
.xa6_c00140{left:481.500000px;}
.x39_c00140{left:482.580000px;}
.xcd_c00140{left:484.500000px;}
.x76_c00140{left:486.420000px;}
.x8e_c00140{left:487.920000px;}
.xa_c00140{left:492.420000px;}
.x87_c00140{left:495.000000px;}
.x9c_c00140{left:496.500000px;}
.x18_c00140{left:501.420000px;}
.xce_c00140{left:502.500000px;}
.x103_c00140{left:503.580000px;}
.xfe_c00140{left:505.920000px;}
.xc4_c00140{left:507.420000px;}
.x69_c00140{left:510.000000px;}
.x7e_c00140{left:513.000000px;}
.xb0_c00140{left:514.080000px;}
.x3a_c00140{left:515.580000px;}
.x88_c00140{left:519.000000px;}
.x44_c00140{left:522.000000px;}
.x2c_c00140{left:523.920000px;}
.x8f_c00140{left:525.000000px;}
.xf0_c00140{left:526.500000px;}
.xcf_c00140{left:531.000000px;}
.xb_c00140{left:532.080000px;}
.x104_c00140{left:533.355000px;}
.xfa_c00140{left:535.500000px;}
.x23_c00140{left:536.580000px;}
.x99_c00140{left:538.500000px;}
.x45_c00140{left:541.920000px;}
.xd9_c00140{left:543.420000px;}
.xc5_c00140{left:544.500000px;}
.xa7_c00140{left:547.500000px;}
.x9d_c00140{left:549.000000px;}
.x10d_c00140{left:550.080000px;}
.x19_c00140{left:553.080000px;}
.xf1_c00140{left:555.000000px;}
.x24_c00140{left:556.500000px;}
.x2d_c00140{left:558.000000px;}
.x50_c00140{left:562.500000px;}
.x90_c00140{left:564.000000px;}
.xdd_c00140{left:565.500000px;}
.xa8_c00140{left:567.420000px;}
.xc6_c00140{left:569.580000px;}
.x3b_c00140{left:572.580000px;}
.xff_c00140{left:574.920000px;}
.x2e_c00140{left:576.000000px;}
.xda_c00140{left:577.920000px;}
.x91_c00140{left:579.420000px;}
.xbf_c00140{left:582.420000px;}
.xac_c00140{left:583.920000px;}
.xf5_c00140{left:586.080000px;}
.x7f_c00140{left:588.420000px;}
.xc_c00140{left:589.500000px;}
.x46_c00140{left:591.000000px;}
.xfb_c00140{left:592.500000px;}
.xa9_c00140{left:595.500000px;}
.x9e_c00140{left:598.500000px;}
.x111_c00140{left:600.000000px;}
.x51_c00140{left:601.920000px;}
.xb1_c00140{left:603.000000px;}
.xc7_c00140{left:604.500000px;}
.x60_c00140{left:606.000000px;}
.x89_c00140{left:607.500000px;}
.xd_c00140{left:608.580000px;}
.x6a_c00140{left:612.000000px;}
.x47_c00140{left:613.920000px;}
.xd3_c00140{left:615.000000px;}
.x9f_c00140{left:618.420000px;}
.x59_c00140{left:619.500000px;}
.x77_c00140{left:621.000000px;}
.x2f_c00140{left:622.080000px;}
.xde_c00140{left:627.420000px;}
.xc8_c00140{left:630.000000px;}
.x52_c00140{left:631.920000px;}
.x3c_c00140{left:634.500000px;}
.x6f_c00140{left:636.420000px;}
.x48_c00140{left:638.580000px;}
.xeb_c00140{left:640.500000px;}
.xb2_c00140{left:642.000000px;}
.x30_c00140{left:643.500000px;}
.xa0_c00140{left:646.920000px;}
.x80_c00140{left:649.500000px;}
.xb9_c00140{left:650.580000px;}
.x92_c00140{left:652.080000px;}
.xad_c00140{left:655.080000px;}
.x78_c00140{left:657.000000px;}
.x25_c00140{left:658.080000px;}
.x1a_c00140{left:660.000000px;}
.xe_c00140{left:661.920000px;}
.xc9_c00140{left:664.500000px;}
.x53_c00140{left:667.500000px;}
.x49_c00140{left:669.000000px;}
.xc0_c00140{left:670.920000px;}
.x105_c00140{left:672.000000px;}
.xb3_c00140{left:673.920000px;}
.x3d_c00140{left:675.000000px;}
.x70_c00140{left:676.920000px;}
.xec_c00140{left:678.000000px;}
.xba_c00140{left:680.145000px;}
.xd4_c00140{left:685.500000px;}
.x61_c00140{left:687.000000px;}
.x54_c00140{left:688.500000px;}
.x1b_c00140{left:689.580000px;}
.x5a_c00140{left:691.500000px;}
.x26_c00140{left:693.420000px;}
.xa1_c00140{left:694.500000px;}
.xf_c00140{left:697.920000px;}
.xb4_c00140{left:699.420000px;}
.x8a_c00140{left:702.000000px;}
.x31_c00140{left:703.920000px;}
.x4a_c00140{left:706.920000px;}
.x106_c00140{left:708.420000px;}
.x2_c00140{left:710.355000px;}
.xd0_c00140{left:714.000000px;}
.xc1_c00140{left:715.920000px;}
.x79_c00140{left:717.000000px;}
.x93_c00140{left:718.500000px;}
.xdf_c00140{left:720.000000px;}
.x3_c00140{left:726.000000px;}
@media print{
.v0_c00140{vertical-align:0.000000pt;}
.ls0_c00140{letter-spacing:0.000000pt;}
.ws1_c00140{word-spacing:0.000000pt;}
.ws0_c00140{word-spacing:0.911571pt;}
.fs7_c00140{font-size:3.040000pt;}
.fs6_c00140{font-size:12.106667pt;}
.fs1_c00140{font-size:16.640000pt;}
.fs0_c00140{font-size:18.133333pt;}
.fs4_c00140{font-size:22.666667pt;}
.fs2_c00140{font-size:25.706667pt;}
.fs5_c00140{font-size:28.746667pt;}
.fs3_c00140{font-size:31.733333pt;}
.y0_c00140{bottom:0.000000pt;}
.y2_c00140{bottom:203.226667pt;}
.ydb_c00140{bottom:225.106667pt;}
.yde_c00140{bottom:225.893333pt;}
.ydd_c00140{bottom:226.066667pt;}
.ydc_c00140{bottom:227.026667pt;}
.yd9_c00140{bottom:242.066667pt;}
.yd7_c00140{bottom:242.440000pt;}
.yda_c00140{bottom:243.226667pt;}
.yd8_c00140{bottom:243.973333pt;}
.yd6_c00140{bottom:244.360000pt;}
.yd0_c00140{bottom:259.026667pt;}
.yd5_c00140{bottom:259.400000pt;}
.yd3_c00140{bottom:260.560000pt;}
.yd4_c00140{bottom:260.733333pt;}
.ycd_c00140{bottom:261.106667pt;}
.yd2_c00140{bottom:261.693333pt;}
.ycc_c00140{bottom:261.893333pt;}
.ycf_c00140{bottom:262.066667pt;}
.yd1_c00140{bottom:262.640000pt;}
.yce_c00140{bottom:263.026667pt;}
.yca_c00140{bottom:277.106667pt;}
.yc7_c00140{bottom:277.306667pt;}
.yc6_c00140{bottom:277.693333pt;}
.ycb_c00140{bottom:278.066667pt;}
.yc9_c00140{bottom:278.440000pt;}
.yc3_c00140{bottom:279.026667pt;}
.yc4_c00140{bottom:279.226667pt;}
.yc5_c00140{bottom:279.973333pt;}
.yc8_c00140{bottom:280.360000pt;}
.yc2_c00140{bottom:294.440000pt;}
.ybd_c00140{bottom:295.773333pt;}
.yc0_c00140{bottom:296.360000pt;}
.yc1_c00140{bottom:297.306667pt;}
.ybf_c00140{bottom:297.693333pt;}
.ybe_c00140{bottom:297.706667pt;}
.ybc_c00140{bottom:318.640000pt;}
.yb8_c00140{bottom:319.400000pt;}
.ybb_c00140{bottom:320.360000pt;}
.yba_c00140{bottom:321.306667pt;}
.yb9_c00140{bottom:321.506667pt;}
.yb0_c00140{bottom:331.973333pt;}
.yb5_c00140{bottom:332.360000pt;}
.yae_c00140{bottom:332.733333pt;}
.yb3_c00140{bottom:332.933333pt;}
.yb6_c00140{bottom:333.306667pt;}
.yb4_c00140{bottom:333.506667pt;}
.yaf_c00140{bottom:333.693333pt;}
.yac_c00140{bottom:333.893333pt;}
.yb7_c00140{bottom:334.266667pt;}
.yad_c00140{bottom:334.640000pt;}
.yb2_c00140{bottom:334.840000pt;}
.yb1_c00140{bottom:335.600000pt;}
.yab_c00140{bottom:345.693333pt;}
.ya8_c00140{bottom:346.640000pt;}
.yaa_c00140{bottom:347.026667pt;}
.ya7_c00140{bottom:347.226667pt;}
.ya9_c00140{bottom:347.600000pt;}
.ya4_c00140{bottom:358.066667pt;}
.ya5_c00140{bottom:358.266667pt;}
.ya1_c00140{bottom:359.026667pt;}
.ya0_c00140{bottom:359.226667pt;}
.ya2_c00140{bottom:359.973333pt;}
.ya3_c00140{bottom:360.173333pt;}
.ya6_c00140{bottom:360.933333pt;}
.y9f_c00140{bottom:382.440000pt;}
.y9c_c00140{bottom:384.360000pt;}
.y9d_c00140{bottom:384.560000pt;}
.y9e_c00140{bottom:385.306667pt;}
.y98_c00140{bottom:399.773333pt;}
.y9b_c00140{bottom:400.733333pt;}
.y9a_c00140{bottom:401.306667pt;}
.y97_c00140{bottom:401.693333pt;}
.y99_c00140{bottom:402.640000pt;}
.y94_c00140{bottom:417.106667pt;}
.y92_c00140{bottom:418.440000pt;}
.y96_c00140{bottom:419.026667pt;}
.y95_c00140{bottom:419.226667pt;}
.y93_c00140{bottom:420.360000pt;}
.y90_c00140{bottom:435.773333pt;}
.y8f_c00140{bottom:436.560000pt;}
.y8e_c00140{bottom:436.733333pt;}
.y91_c00140{bottom:437.306667pt;}
.y8c_c00140{bottom:437.693333pt;}
.y8d_c00140{bottom:438.640000pt;}
.y8b_c00140{bottom:451.026667pt;}
.y8a_c00140{bottom:453.106667pt;}
.y89_c00140{bottom:455.026667pt;}
.y84_c00140{bottom:469.693333pt;}
.y86_c00140{bottom:470.440000pt;}
.y87_c00140{bottom:471.973333pt;}
.y85_c00140{bottom:472.360000pt;}
.y88_c00140{bottom:473.306667pt;}
.y83_c00140{bottom:487.026667pt;}
.y82_c00140{bottom:487.773333pt;}
.y81_c00140{bottom:488.560000pt;}
.y80_c00140{bottom:489.306667pt;}
.y7f_c00140{bottom:489.693333pt;}
.y7b_c00140{bottom:505.106667pt;}
.y7c_c00140{bottom:507.026667pt;}
.y7d_c00140{bottom:507.226667pt;}
.y7e_c00140{bottom:507.973333pt;}
.y78_c00140{bottom:523.773333pt;}
.y7a_c00140{bottom:524.360000pt;}
.y79_c00140{bottom:524.560000pt;}
.y77_c00140{bottom:525.306667pt;}
.y76_c00140{bottom:525.693333pt;}
.y74_c00140{bottom:541.106667pt;}
.y72_c00140{bottom:541.693333pt;}
.y75_c00140{bottom:541.893333pt;}
.y71_c00140{bottom:542.640000pt;}
.y73_c00140{bottom:543.026667pt;}
.y6e_c00140{bottom:558.440000pt;}
.y6d_c00140{bottom:559.226667pt;}
.y6f_c00140{bottom:559.400000pt;}
.y70_c00140{bottom:560.360000pt;}
.y69_c00140{bottom:573.693333pt;}
.y6b_c00140{bottom:574.640000pt;}
.y67_c00140{bottom:575.773333pt;}
.y6c_c00140{bottom:576.560000pt;}
.y6a_c00140{bottom:577.306667pt;}
.y68_c00140{bottom:577.693333pt;}
.y65_c00140{bottom:593.106667pt;}
.y66_c00140{bottom:594.066667pt;}
.y63_c00140{bottom:595.026667pt;}
.y62_c00140{bottom:595.226667pt;}
.y64_c00140{bottom:595.973333pt;}
.y61_c00140{bottom:610.440000pt;}
.y5c_c00140{bottom:611.400000pt;}
.y5f_c00140{bottom:612.360000pt;}
.y5d_c00140{bottom:612.560000pt;}
.y5e_c00140{bottom:613.306667pt;}
.y60_c00140{bottom:613.693333pt;}
.y5a_c00140{bottom:627.773333pt;}
.y59_c00140{bottom:629.693333pt;}
.y5b_c00140{bottom:630.640000pt;}
.y56_c00140{bottom:644.360000pt;}
.y58_c00140{bottom:645.306667pt;}
.y57_c00140{bottom:646.440000pt;}
.y55_c00140{bottom:648.360000pt;}
.y54_c00140{bottom:663.400000pt;}
.y52_c00140{bottom:663.773333pt;}
.y53_c00140{bottom:664.560000pt;}
.y4f_c00140{bottom:664.733333pt;}
.y50_c00140{bottom:664.933333pt;}
.y51_c00140{bottom:665.693333pt;}
.y4d_c00140{bottom:681.106667pt;}
.y4c_c00140{bottom:682.066667pt;}
.y4e_c00140{bottom:682.640000pt;}
.y4b_c00140{bottom:683.026667pt;}
.y49_c00140{bottom:697.693333pt;}
.y47_c00140{bottom:698.440000pt;}
.y48_c00140{bottom:699.226667pt;}
.y46_c00140{bottom:700.360000pt;}
.y4a_c00140{bottom:701.306667pt;}
.y45_c00140{bottom:715.773333pt;}
.y43_c00140{bottom:717.693333pt;}
.y44_c00140{bottom:717.893333pt;}
.y42_c00140{bottom:718.640000pt;}
.y40_c00140{bottom:733.106667pt;}
.y3f_c00140{bottom:735.026667pt;}
.y41_c00140{bottom:735.226667pt;}
.y3e_c00140{bottom:735.973333pt;}
.y3b_c00140{bottom:751.773333pt;}
.y3d_c00140{bottom:751.973333pt;}
.y3c_c00140{bottom:753.306667pt;}
.y3a_c00140{bottom:753.693333pt;}
.y39_c00140{bottom:769.106667pt;}
.y36_c00140{bottom:769.693333pt;}
.y38_c00140{bottom:769.893333pt;}
.y37_c00140{bottom:770.640000pt;}
.y35_c00140{bottom:771.026667pt;}
.y30_c00140{bottom:784.360000pt;}
.y2e_c00140{bottom:786.440000pt;}
.y34_c00140{bottom:787.026667pt;}
.y31_c00140{bottom:787.226667pt;}
.y32_c00140{bottom:787.400000pt;}
.y33_c00140{bottom:788.360000pt;}
.y2f_c00140{bottom:789.306667pt;}
.y2a_c00140{bottom:801.693333pt;}
.y2c_c00140{bottom:803.026667pt;}
.y2b_c00140{bottom:803.773333pt;}
.y29_c00140{bottom:804.560000pt;}
.y28_c00140{bottom:805.693333pt;}
.y2d_c00140{bottom:806.640000pt;}
.y27_c00140{bottom:820.733333pt;}
.y26_c00140{bottom:821.106667pt;}
.y25_c00140{bottom:823.026667pt;}
.y22_c00140{bottom:838.440000pt;}
.y21_c00140{bottom:839.226667pt;}
.y24_c00140{bottom:839.400000pt;}
.y23_c00140{bottom:840.360000pt;}
.y20_c00140{bottom:855.026667pt;}
.y1d_c00140{bottom:855.400000pt;}
.y1f_c00140{bottom:855.773333pt;}
.y1b_c00140{bottom:855.973333pt;}
.y1a_c00140{bottom:857.693333pt;}
.y1e_c00140{bottom:857.893333pt;}
.y1c_c00140{bottom:858.066667pt;}
.y16_c00140{bottom:873.106667pt;}
.y18_c00140{bottom:874.640000pt;}
.y15_c00140{bottom:875.026667pt;}
.y17_c00140{bottom:875.226667pt;}
.y19_c00140{bottom:875.973333pt;}
.y13_c00140{bottom:890.440000pt;}
.y14_c00140{bottom:891.400000pt;}
.y12_c00140{bottom:892.360000pt;}
.y10_c00140{bottom:907.773333pt;}
.yf_c00140{bottom:909.693333pt;}
.y11_c00140{bottom:909.893333pt;}
.y9_c00140{bottom:925.106667pt;}
.yd_c00140{bottom:926.066667pt;}
.ya_c00140{bottom:926.440000pt;}
.yb_c00140{bottom:927.026667pt;}
.y7_c00140{bottom:927.226667pt;}
.ye_c00140{bottom:927.400000pt;}
.y8_c00140{bottom:927.973333pt;}
.yc_c00140{bottom:928.360000pt;}
.y4_c00140{bottom:943.773333pt;}
.y5_c00140{bottom:944.560000pt;}
.y6_c00140{bottom:945.306667pt;}
.y3_c00140{bottom:945.693333pt;}
.y1_c00140{bottom:979.600000pt;}
.h8_c00140{height:3.739141pt;}
.h7_c00140{height:14.890964pt;}
.h2_c00140{height:20.466875pt;}
.h1_c00140{height:22.303646pt;}
.h5_c00140{height:27.879557pt;}
.h3_c00140{height:31.618698pt;}
.h6_c00140{height:35.357839pt;}
.h4_c00140{height:39.031380pt;}
.h0_c00140{height:1186.666667pt;}
.w0_c00140{width:782.666667pt;}
.x0_c00140{left:0.000000pt;}
.xed_c00140{left:134.666667pt;}
.x81_c00140{left:135.626667pt;}
.x4_c00140{left:137.706667pt;}
.x100_c00140{left:146.666667pt;}
.xf6_c00140{left:148.000000pt;}
.x108_c00140{left:148.960000pt;}
.x27_c00140{left:154.666667pt;}
.x5b_c00140{left:156.000000pt;}
.x62_c00140{left:157.333333pt;}
.x5_c00140{left:162.666667pt;}
.x82_c00140{left:164.000000pt;}
.xca_c00140{left:165.333333pt;}
.x6b_c00140{left:166.666667pt;}
.xe0_c00140{left:167.626667pt;}
.x8b_c00140{left:168.960000pt;}
.x10_c00140{left:172.000000pt;}
.x107_c00140{left:177.333333pt;}
.x32_c00140{left:178.293333pt;}
.xa2_c00140{left:180.000000pt;}
.x71_c00140{left:180.960000pt;}
.xd5_c00140{left:182.666667pt;}
.xe8_c00140{left:186.293333pt;}
.x63_c00140{left:187.626667pt;}
.x1c_c00140{left:190.466667pt;}
.x83_c00140{left:191.626667pt;}
.xae_c00140{left:193.706667pt;}
.xe1_c00140{left:196.000000pt;}
.xbb_c00140{left:197.333333pt;}
.x3e_c00140{left:198.666667pt;}
.x11_c00140{left:200.373333pt;}
.x5c_c00140{left:201.333333pt;}
.xcb_c00140{left:202.666667pt;}
.x33_c00140{left:203.626667pt;}
.x112_c00140{left:205.706667pt;}
.x6c_c00140{left:207.626667pt;}
.x64_c00140{left:210.293333pt;}
.xaa_c00140{left:212.000000pt;}
.xe5_c00140{left:213.333333pt;}
.xdb_c00140{left:214.666667pt;}
.x7a_c00140{left:216.373333pt;}
.x9a_c00140{left:218.093333pt;}
.x28_c00140{left:221.706667pt;}
.xfc_c00140{left:222.666667pt;}
.x6_c00140{left:224.000000pt;}
.x109_c00140{left:226.666667pt;}
.x84_c00140{left:228.000000pt;}
.x1d_c00140{left:229.333333pt;}
.x8c_c00140{left:233.333333pt;}
.xb5_c00140{left:234.666667pt;}
.x12_c00140{left:236.000000pt;}
.x4b_c00140{left:238.666667pt;}
.x94_c00140{left:240.960000pt;}
.xee_c00140{left:242.666667pt;}
.x65_c00140{left:244.000000pt;}
.x113_c00140{left:245.333333pt;}
.xa3_c00140{left:246.293333pt;}
.xbc_c00140{left:248.000000pt;}
.xd1_c00140{left:249.333333pt;}
.x34_c00140{left:250.466667pt;}
.xf2_c00140{left:251.800000pt;}
.x3f_c00140{left:253.333333pt;}
.xcc_c00140{left:254.293333pt;}
.x72_c00140{left:257.333333pt;}
.x1e_c00140{left:258.666667pt;}
.xe6_c00140{left:260.373333pt;}
.x114_c00140{left:262.293333pt;}
.x7b_c00140{left:263.626667pt;}
.x10e_c00140{left:265.333333pt;}
.x55_c00140{left:266.666667pt;}
.xaf_c00140{left:269.333333pt;}
.x29_c00140{left:270.666667pt;}
.x95_c00140{left:272.000000pt;}
.x10a_c00140{left:274.666667pt;}
.x66_c00140{left:275.626667pt;}
.x7c_c00140{left:279.626667pt;}
.xd6_c00140{left:281.333333pt;}
.x13_c00140{left:282.293333pt;}
.x10f_c00140{left:284.000000pt;}
.x5d_c00140{left:286.666667pt;}
.x10b_c00140{left:288.000000pt;}
.xf7_c00140{left:289.333333pt;}
.x101_c00140{left:290.666667pt;}
.x4c_c00140{left:292.000000pt;}
.x85_c00140{left:293.333333pt;}
.xef_c00140{left:294.666667pt;}
.x35_c00140{left:296.000000pt;}
.xbd_c00140{left:297.333333pt;}
.x14_c00140{left:299.626667pt;}
.xe2_c00140{left:301.333333pt;}
.xe9_c00140{left:302.666667pt;}
.x2a_c00140{left:303.626667pt;}
.x1f_c00140{left:305.333333pt;}
.x40_c00140{left:308.373333pt;}
.x4d_c00140{left:309.333333pt;}
.x67_c00140{left:311.040000pt;}
.x86_c00140{left:312.000000pt;}
.x7_c00140{left:313.333333pt;}
.xc2_c00140{left:314.293333pt;}
.x73_c00140{left:316.000000pt;}
.x5e_c00140{left:318.293333pt;}
.x36_c00140{left:320.000000pt;}
.x102_c00140{left:323.040000pt;}
.xe7_c00140{left:324.373333pt;}
.x15_c00140{left:326.666667pt;}
.x6d_c00140{left:328.000000pt;}
.xe3_c00140{left:329.333333pt;}
.xdc_c00140{left:330.293333pt;}
.x74_c00140{left:332.000000pt;}
.xa4_c00140{left:336.000000pt;}
.xd2_c00140{left:337.333333pt;}
.x56_c00140{left:338.666667pt;}
.xf8_c00140{left:340.373333pt;}
.xfd_c00140{left:341.333333pt;}
.x41_c00140{left:342.293333pt;}
.x16_c00140{left:343.626667pt;}
.x7d_c00140{left:346.293333pt;}
.x5f_c00140{left:347.626667pt;}
.xb6_c00140{left:350.666667pt;}
.x68_c00140{left:352.960000pt;}
.x20_c00140{left:354.666667pt;}
.xf3_c00140{left:355.626667pt;}
.x1_c00140{left:357.333333pt;}
.xea_c00140{left:359.040000pt;}
.x8_c00140{left:360.000000pt;}
.x96_c00140{left:362.666667pt;}
.x4e_c00140{left:364.373333pt;}
.xb7_c00140{left:365.333333pt;}
.xa5_c00140{left:368.373333pt;}
.x10c_c00140{left:371.040000pt;}
.xf9_c00140{left:373.333333pt;}
.x21_c00140{left:375.040000pt;}
.x37_c00140{left:376.000000pt;}
.x8d_c00140{left:377.706667pt;}
.xd7_c00140{left:380.000000pt;}
.x75_c00140{left:381.333333pt;}
.xab_c00140{left:382.293333pt;}
.x17_c00140{left:385.333333pt;}
.xbe_c00140{left:387.040000pt;}
.x6e_c00140{left:388.000000pt;}
.x97_c00140{left:390.666667pt;}
.x9_c00140{left:392.000000pt;}
.xb8_c00140{left:393.333333pt;}
.xd8_c00140{left:394.666667pt;}
.x57_c00140{left:396.373333pt;}
.x22_c00140{left:400.373333pt;}
.xf4_c00140{left:401.706667pt;}
.xe4_c00140{left:404.000000pt;}
.x2b_c00140{left:405.333333pt;}
.x38_c00140{left:407.040000pt;}
.xc3_c00140{left:408.000000pt;}
.x42_c00140{left:409.333333pt;}
.x98_c00140{left:410.293333pt;}
.x9b_c00140{left:413.706667pt;}
.x110_c00140{left:420.000000pt;}
.x4f_c00140{left:421.333333pt;}
.x43_c00140{left:423.040000pt;}
.x58_c00140{left:426.293333pt;}
.xa6_c00140{left:428.000000pt;}
.x39_c00140{left:428.960000pt;}
.xcd_c00140{left:430.666667pt;}
.x76_c00140{left:432.373333pt;}
.x8e_c00140{left:433.706667pt;}
.xa_c00140{left:437.706667pt;}
.x87_c00140{left:440.000000pt;}
.x9c_c00140{left:441.333333pt;}
.x18_c00140{left:445.706667pt;}
.xce_c00140{left:446.666667pt;}
.x103_c00140{left:447.626667pt;}
.xfe_c00140{left:449.706667pt;}
.xc4_c00140{left:451.040000pt;}
.x69_c00140{left:453.333333pt;}
.x7e_c00140{left:456.000000pt;}
.xb0_c00140{left:456.960000pt;}
.x3a_c00140{left:458.293333pt;}
.x88_c00140{left:461.333333pt;}
.x44_c00140{left:464.000000pt;}
.x2c_c00140{left:465.706667pt;}
.x8f_c00140{left:466.666667pt;}
.xf0_c00140{left:468.000000pt;}
.xcf_c00140{left:472.000000pt;}
.xb_c00140{left:472.960000pt;}
.x104_c00140{left:474.093333pt;}
.xfa_c00140{left:476.000000pt;}
.x23_c00140{left:476.960000pt;}
.x99_c00140{left:478.666667pt;}
.x45_c00140{left:481.706667pt;}
.xd9_c00140{left:483.040000pt;}
.xc5_c00140{left:484.000000pt;}
.xa7_c00140{left:486.666667pt;}
.x9d_c00140{left:488.000000pt;}
.x10d_c00140{left:488.960000pt;}
.x19_c00140{left:491.626667pt;}
.xf1_c00140{left:493.333333pt;}
.x24_c00140{left:494.666667pt;}
.x2d_c00140{left:496.000000pt;}
.x50_c00140{left:500.000000pt;}
.x90_c00140{left:501.333333pt;}
.xdd_c00140{left:502.666667pt;}
.xa8_c00140{left:504.373333pt;}
.xc6_c00140{left:506.293333pt;}
.x3b_c00140{left:508.960000pt;}
.xff_c00140{left:511.040000pt;}
.x2e_c00140{left:512.000000pt;}
.xda_c00140{left:513.706667pt;}
.x91_c00140{left:515.040000pt;}
.xbf_c00140{left:517.706667pt;}
.xac_c00140{left:519.040000pt;}
.xf5_c00140{left:520.960000pt;}
.x7f_c00140{left:523.040000pt;}
.xc_c00140{left:524.000000pt;}
.x46_c00140{left:525.333333pt;}
.xfb_c00140{left:526.666667pt;}
.xa9_c00140{left:529.333333pt;}
.x9e_c00140{left:532.000000pt;}
.x111_c00140{left:533.333333pt;}
.x51_c00140{left:535.040000pt;}
.xb1_c00140{left:536.000000pt;}
.xc7_c00140{left:537.333333pt;}
.x60_c00140{left:538.666667pt;}
.x89_c00140{left:540.000000pt;}
.xd_c00140{left:540.960000pt;}
.x6a_c00140{left:544.000000pt;}
.x47_c00140{left:545.706667pt;}
.xd3_c00140{left:546.666667pt;}
.x9f_c00140{left:549.706667pt;}
.x59_c00140{left:550.666667pt;}
.x77_c00140{left:552.000000pt;}
.x2f_c00140{left:552.960000pt;}
.xde_c00140{left:557.706667pt;}
.xc8_c00140{left:560.000000pt;}
.x52_c00140{left:561.706667pt;}
.x3c_c00140{left:564.000000pt;}
.x6f_c00140{left:565.706667pt;}
.x48_c00140{left:567.626667pt;}
.xeb_c00140{left:569.333333pt;}
.xb2_c00140{left:570.666667pt;}
.x30_c00140{left:572.000000pt;}
.xa0_c00140{left:575.040000pt;}
.x80_c00140{left:577.333333pt;}
.xb9_c00140{left:578.293333pt;}
.x92_c00140{left:579.626667pt;}
.xad_c00140{left:582.293333pt;}
.x78_c00140{left:584.000000pt;}
.x25_c00140{left:584.960000pt;}
.x1a_c00140{left:586.666667pt;}
.xe_c00140{left:588.373333pt;}
.xc9_c00140{left:590.666667pt;}
.x53_c00140{left:593.333333pt;}
.x49_c00140{left:594.666667pt;}
.xc0_c00140{left:596.373333pt;}
.x105_c00140{left:597.333333pt;}
.xb3_c00140{left:599.040000pt;}
.x3d_c00140{left:600.000000pt;}
.x70_c00140{left:601.706667pt;}
.xec_c00140{left:602.666667pt;}
.xba_c00140{left:604.573333pt;}
.xd4_c00140{left:609.333333pt;}
.x61_c00140{left:610.666667pt;}
.x54_c00140{left:612.000000pt;}
.x1b_c00140{left:612.960000pt;}
.x5a_c00140{left:614.666667pt;}
.x26_c00140{left:616.373333pt;}
.xa1_c00140{left:617.333333pt;}
.xf_c00140{left:620.373333pt;}
.xb4_c00140{left:621.706667pt;}
.x8a_c00140{left:624.000000pt;}
.x31_c00140{left:625.706667pt;}
.x4a_c00140{left:628.373333pt;}
.x106_c00140{left:629.706667pt;}
.x2_c00140{left:631.426667pt;}
.xd0_c00140{left:634.666667pt;}
.xc1_c00140{left:636.373333pt;}
.x79_c00140{left:637.333333pt;}
.x93_c00140{left:638.666667pt;}
.xdf_c00140{left:640.000000pt;}
.x3_c00140{left:645.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1b36660cf685b7698bfe6e62.woff2')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:1.688965;font-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_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);}
.m2f_c00141{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.ma8_c00141{transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);}
.m43_c00141{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m6b_c00141{transform:matrix(0.364583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364583,0.000000,0.000000,0.250000,0,0);}
.m79_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);}
.m39_c00141{transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);}
.m2c_c00141{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m49_c00141{transform:matrix(0.384202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384202,0.000000,0.000000,0.250000,0,0);}
.m4f_c00141{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m72_c00141{transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);}
.m1e_c00141{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m38_c00141{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m6a_c00141{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.me_c00141{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m29_c00141{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m3c_c00141{transform:matrix(0.412960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412960,0.000000,0.000000,0.250000,0,0);}
.m1f_c00141{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m48_c00141{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m3e_c00141{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m64_c00141{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m7c_c00141{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m19_c00141{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m13_c00141{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mc_c00141{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m66_c00141{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m42_c00141{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m27_c00141{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m5f_c00141{transform:matrix(0.428423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428423,0.000000,0.000000,0.250000,0,0);}
.m99_c00141{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m5c_c00141{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m92_c00141{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m6f_c00141{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m2d_c00141{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m7a_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);}
.m55_c00141{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.ma_c00141{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m6c_c00141{transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);}
.m2_c00141{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m65_c00141{transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);}
.m73_c00141{transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);}
.m33_c00141{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m11_c00141{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m1c_c00141{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m8e_c00141{transform:matrix(0.455128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455128,0.000000,0.000000,0.250000,0,0);}
.m53_c00141{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m24_c00141{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m6d_c00141{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m60_c00141{transform:matrix(0.458506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458506,0.000000,0.000000,0.250000,0,0);}
.ma7_c00141{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.m45_c00141{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.m36_c00141{transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);}
.ma4_c00141{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_c00141{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m9a_c00141{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m10_c00141{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m93_c00141{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.m1b_c00141{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m96_c00141{transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);}
.m23_c00141{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m88_c00141{transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);}
.m3a_c00141{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m8a_c00141{transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);}
.m5e_c00141{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m12_c00141{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m8d_c00141{transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);}
.m47_c00141{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m17_c00141{transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);}
.m7e_c00141{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m21_c00141{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m84_c00141{transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);}
.m54_c00141{transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);}
.m78_c00141{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.ma9_c00141{transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);}
.m9b_c00141{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.m16_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);}
.m6_c00141{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m40_c00141{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m3_c00141{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.ma6_c00141{transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);}
.m5a_c00141{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m1a_c00141{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m34_c00141{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m76_c00141{transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);}
.m90_c00141{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.m5_c00141{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.ma0_c00141{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m63_c00141{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.m50_c00141{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m31_c00141{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m3d_c00141{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m4e_c00141{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m4_c00141{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m18_c00141{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m85_c00141{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m46_c00141{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m3f_c00141{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mf_c00141{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m15_c00141{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m20_c00141{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m41_c00141{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m83_c00141{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.md_c00141{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m2b_c00141{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m9f_c00141{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m2a_c00141{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m2e_c00141{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m1d_c00141{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m68_c00141{transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);}
.m77_c00141{transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);}
.m61_c00141{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m9e_c00141{transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);}
.m74_c00141{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.m8_c00141{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m57_c00141{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m44_c00141{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m4d_c00141{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m97_c00141{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.m4a_c00141{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);}
.m95_c00141{transform:matrix(0.601763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601763,0.000000,0.000000,0.250000,0,0);}
.m0_c00141{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m26_c00141{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.m32_c00141{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m8c_c00141{transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);}
.m69_c00141{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m37_c00141{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m7_c00141{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m67_c00141{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m70_c00141{transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);}
.m4c_c00141{transform:matrix(0.617059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617059,0.000000,0.000000,0.250000,0,0);}
.m59_c00141{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m22_c00141{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m62_c00141{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.m4b_c00141{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);}
.m82_c00141{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m52_c00141{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m3b_c00141{transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);}
.m9_c00141{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m5b_c00141{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m7f_c00141{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m7d_c00141{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m14_c00141{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m58_c00141{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.mb_c00141{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.m71_c00141{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.m1_c00141{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m56_c00141{transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);}
.m9d_c00141{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.m6e_c00141{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m86_c00141{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m91_c00141{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.ma5_c00141{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m7b_c00141{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m5d_c00141{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);}
.m35_c00141{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m80_c00141{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.ma2_c00141{transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);}
.ma3_c00141{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.m87_c00141{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.m81_c00141{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m51_c00141{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m9c_c00141{transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);}
.m89_c00141{transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);}
.m8f_c00141{transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);}
.ma1_c00141{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m28_c00141{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m8b_c00141{transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);}
.m94_c00141{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m75_c00141{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m98_c00141{transform:matrix(2.758850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.758850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.758850,0.000000,0.000000,0.250000,0,0);}
.v1_c00141{vertical-align:-6.000000px;}
.v0_c00141{vertical-align:0.000000px;}
.ls0_c00141{letter-spacing:0.000000px;}
.sc__c00141{text-shadow:none;}
.sc0_c00141{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00141{-webkit-text-stroke:0px transparent;}
.sc0_c00141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws19_c00141{word-spacing:0.000000px;}
.ws4_c00141{word-spacing:18.238860px;}
.wse_c00141{word-spacing:37.647282px;}
.ws15_c00141{word-spacing:39.650224px;}
.ws16_c00141{word-spacing:40.651310px;}
.ws13_c00141{word-spacing:43.123678px;}
.ws14_c00141{word-spacing:43.656106px;}
.ws12_c00141{word-spacing:49.588868px;}
.wsf_c00141{word-spacing:49.664929px;}
.ws1_c00141{word-spacing:49.718291px;}
.ws18_c00141{word-spacing:64.388073px;}
.ws9_c00141{word-spacing:66.174430px;}
.ws10_c00141{word-spacing:69.638400px;}
.ws17_c00141{word-spacing:72.833186px;}
.wsc_c00141{word-spacing:78.638400px;}
.ws11_c00141{word-spacing:78.731664px;}
.wsb_c00141{word-spacing:81.053421px;}
.ws0_c00141{word-spacing:90.616863px;}
.wsa_c00141{word-spacing:91.679451px;}
.ws2_c00141{word-spacing:96.477382px;}
.ws5_c00141{word-spacing:101.965166px;}
.ws8_c00141{word-spacing:105.393737px;}
.ws3_c00141{word-spacing:108.374519px;}
.ws7_c00141{word-spacing:113.299200px;}
.ws6_c00141{word-spacing:124.250880px;}
.wsd_c00141{word-spacing:245.078400px;}
._4_c00141{width:51.610186px;}
._3_c00141{width:57.619009px;}
._1_c00141{width:67.261283px;}
._2_c00141{width:76.417585px;}
._6_c00141{width:83.765666px;}
._8_c00141{width:86.580704px;}
._7_c00141{width:92.210779px;}
._5_c00141{width:99.363626px;}
._0_c00141{width:117.228044px;}
.fc0_c00141{color:transparent;}
.fs8_c00141{font-size:3.420000px;}
.fsa_c00141{font-size:6.780000px;}
.fs9_c00141{font-size:11.880000px;}
.fs7_c00141{font-size:13.620000px;}
.fs1_c00141{font-size:18.720000px;}
.fs0_c00141{font-size:20.400000px;}
.fs4_c00141{font-size:25.500000px;}
.fs3_c00141{font-size:28.920000px;}
.fs5_c00141{font-size:32.340000px;}
.fs2_c00141{font-size:35.700000px;}
.fs6_c00141{font-size:39.120000px;}
.y0_c00141{bottom:0.000000px;}
.yc5_c00141{bottom:257.130000px;}
.yc6_c00141{bottom:258.195000px;}
.yc8_c00141{bottom:258.630000px;}
.yc7_c00141{bottom:260.130000px;}
.yc3_c00141{bottom:275.550000px;}
.yc1_c00141{bottom:278.775000px;}
.ybf_c00141{bottom:279.195000px;}
.yc0_c00141{bottom:279.630000px;}
.yc4_c00141{bottom:280.695000px;}
.yc2_c00141{bottom:280.920000px;}
.yba_c00141{bottom:291.195000px;}
.ybc_c00141{bottom:292.275000px;}
.ybb_c00141{bottom:293.130000px;}
.ybe_c00141{bottom:294.195000px;}
.ybd_c00141{bottom:294.420000px;}
.yb9_c00141{bottom:298.695000px;}
.yb6_c00141{bottom:306.630000px;}
.yb8_c00141{bottom:307.695000px;}
.yb7_c00141{bottom:308.130000px;}
.yb5_c00141{bottom:319.050000px;}
.yb4_c00141{bottom:320.775000px;}
.yb3_c00141{bottom:321.195000px;}
.yae_c00141{bottom:333.630000px;}
.yaf_c00141{bottom:334.275000px;}
.yb0_c00141{bottom:334.695000px;}
.yb1_c00141{bottom:335.130000px;}
.yb2_c00141{bottom:336.420000px;}
.yab_c00141{bottom:348.630000px;}
.yac_c00141{bottom:349.695000px;}
.yad_c00141{bottom:351.420000px;}
.ya8_c00141{bottom:362.130000px;}
.ya7_c00141{bottom:363.195000px;}
.ya9_c00141{bottom:364.695000px;}
.yaa_c00141{bottom:364.920000px;}
.ya6_c00141{bottom:375.630000px;}
.ya3_c00141{bottom:376.695000px;}
.ya4_c00141{bottom:378.195000px;}
.ya5_c00141{bottom:378.420000px;}
.ya2_c00141{bottom:390.195000px;}
.ya1_c00141{bottom:390.630000px;}
.ya0_c00141{bottom:403.695000px;}
.y9e_c00141{bottom:404.130000px;}
.y9f_c00141{bottom:404.355000px;}
.y9d_c00141{bottom:405.195000px;}
.y99_c00141{bottom:416.550000px;}
.y9b_c00141{bottom:417.630000px;}
.y9a_c00141{bottom:418.695000px;}
.y9c_c00141{bottom:419.355000px;}
.y96_c00141{bottom:431.130000px;}
.y98_c00141{bottom:432.195000px;}
.y97_c00141{bottom:432.855000px;}
.y93_c00141{bottom:445.050000px;}
.y92_c00141{bottom:445.695000px;}
.y94_c00141{bottom:446.130000px;}
.y95_c00141{bottom:447.420000px;}
.y91_c00141{bottom:459.195000px;}
.y8e_c00141{bottom:459.630000px;}
.y8f_c00141{bottom:460.695000px;}
.y90_c00141{bottom:460.920000px;}
.y8c_c00141{bottom:473.130000px;}
.y8d_c00141{bottom:474.195000px;}
.y88_c00141{bottom:485.550000px;}
.y89_c00141{bottom:486.630000px;}
.y8a_c00141{bottom:487.695000px;}
.y8b_c00141{bottom:487.920000px;}
.y84_c00141{bottom:500.130000px;}
.y86_c00141{bottom:501.195000px;}
.y85_c00141{bottom:502.695000px;}
.y87_c00141{bottom:502.920000px;}
.y83_c00141{bottom:514.695000px;}
.y7e_c00141{bottom:528.630000px;}
.y7f_c00141{bottom:529.275000px;}
.y80_c00141{bottom:529.695000px;}
.y81_c00141{bottom:529.920000px;}
.y82_c00141{bottom:530.130000px;}
.y7d_c00141{bottom:542.130000px;}
.y7c_c00141{bottom:543.195000px;}
.y78_c00141{bottom:555.630000px;}
.y79_c00141{bottom:556.695000px;}
.y7a_c00141{bottom:557.130000px;}
.y7b_c00141{bottom:558.420000px;}
.y75_c00141{bottom:570.195000px;}
.y74_c00141{bottom:570.630000px;}
.y76_c00141{bottom:571.695000px;}
.y77_c00141{bottom:571.920000px;}
.y72_c00141{bottom:584.130000px;}
.y71_c00141{bottom:585.195000px;}
.y73_c00141{bottom:585.420000px;}
.y6c_c00141{bottom:596.130000px;}
.y6d_c00141{bottom:597.630000px;}
.y6e_c00141{bottom:598.275000px;}
.y6f_c00141{bottom:598.695000px;}
.y70_c00141{bottom:598.920000px;}
.y6a_c00141{bottom:611.130000px;}
.y69_c00141{bottom:612.195000px;}
.y6b_c00141{bottom:612.420000px;}
.y66_c00141{bottom:624.630000px;}
.y65_c00141{bottom:625.695000px;}
.y68_c00141{bottom:625.920000px;}
.y67_c00141{bottom:627.420000px;}
.y61_c00141{bottom:638.130000px;}
.y60_c00141{bottom:638.550000px;}
.y63_c00141{bottom:639.195000px;}
.y5f_c00141{bottom:639.630000px;}
.y62_c00141{bottom:640.695000px;}
.y64_c00141{bottom:640.920000px;}
.y5d_c00141{bottom:653.130000px;}
.y5c_c00141{bottom:654.195000px;}
.y5e_c00141{bottom:654.420000px;}
.y5a_c00141{bottom:666.630000px;}
.y59_c00141{bottom:667.695000px;}
.y5b_c00141{bottom:667.920000px;}
.y56_c00141{bottom:679.050000px;}
.y57_c00141{bottom:680.130000px;}
.y55_c00141{bottom:681.195000px;}
.y58_c00141{bottom:681.420000px;}
.y52_c00141{bottom:693.630000px;}
.y53_c00141{bottom:694.695000px;}
.y51_c00141{bottom:695.130000px;}
.y54_c00141{bottom:696.420000px;}
.y4f_c00141{bottom:708.630000px;}
.y4e_c00141{bottom:709.695000px;}
.y50_c00141{bottom:709.920000px;}
.y4b_c00141{bottom:721.050000px;}
.y4c_c00141{bottom:722.130000px;}
.y4a_c00141{bottom:723.195000px;}
.y4d_c00141{bottom:723.420000px;}
.y47_c00141{bottom:735.630000px;}
.y46_c00141{bottom:736.050000px;}
.y49_c00141{bottom:736.920000px;}
.y45_c00141{bottom:737.130000px;}
.y48_c00141{bottom:738.420000px;}
.y41_c00141{bottom:750.195000px;}
.y43_c00141{bottom:750.630000px;}
.y42_c00141{bottom:751.695000px;}
.y44_c00141{bottom:751.920000px;}
.y40_c00141{bottom:767.130000px;}
.y3c_c00141{bottom:768.195000px;}
.y3f_c00141{bottom:768.630000px;}
.y3e_c00141{bottom:769.695000px;}
.y3d_c00141{bottom:770.130000px;}
.y3a_c00141{bottom:782.130000px;}
.y3b_c00141{bottom:783.195000px;}
.y39_c00141{bottom:796.695000px;}
.y38_c00141{bottom:821.550000px;}
.y36_c00141{bottom:832.905000px;}
.y37_c00141{bottom:833.970000px;}
.y35_c00141{bottom:834.630000px;}
.y33_c00141{bottom:835.050000px;}
.y34_c00141{bottom:835.470000px;}
.y32_c00141{bottom:860.970000px;}
.y31_c00141{bottom:863.970000px;}
.y30_c00141{bottom:903.405000px;}
.y2d_c00141{bottom:904.245000px;}
.y2f_c00141{bottom:906.405000px;}
.y2c_c00141{bottom:906.630000px;}
.y2e_c00141{bottom:907.470000px;}
.y28_c00141{bottom:921.405000px;}
.y2a_c00141{bottom:923.745000px;}
.y2b_c00141{bottom:924.405000px;}
.y26_c00141{bottom:925.470000px;}
.y29_c00141{bottom:925.905000px;}
.y27_c00141{bottom:926.970000px;}
.y24_c00141{bottom:941.745000px;}
.y25_c00141{bottom:942.180000px;}
.y22_c00141{bottom:943.245000px;}
.y23_c00141{bottom:944.325000px;}
.y21_c00141{bottom:945.405000px;}
.y1f_c00141{bottom:963.180000px;}
.y1e_c00141{bottom:964.050000px;}
.y1c_c00141{bottom:964.245000px;}
.y1d_c00141{bottom:965.325000px;}
.y20_c00141{bottom:966.405000px;}
.y19_c00141{bottom:982.245000px;}
.y18_c00141{bottom:983.745000px;}
.y1b_c00141{bottom:984.630000px;}
.y1a_c00141{bottom:985.470000px;}
.y17_c00141{bottom:985.905000px;}
.y14_c00141{bottom:1001.325000px;}
.y15_c00141{bottom:1001.745000px;}
.y12_c00141{bottom:1002.825000px;}
.y16_c00141{bottom:1004.130000px;}
.y13_c00141{bottom:1004.970000px;}
.y11_c00141{bottom:1021.245000px;}
.yf_c00141{bottom:1022.325000px;}
.y10_c00141{bottom:1023.405000px;}
.yd_c00141{bottom:1039.905000px;}
.ye_c00141{bottom:1040.745000px;}
.y8_c00141{bottom:1041.825000px;}
.y9_c00141{bottom:1042.245000px;}
.ya_c00141{bottom:1043.325000px;}
.yb_c00141{bottom:1043.970000px;}
.yc_c00141{bottom:1044.405000px;}
.y3_c00141{bottom:1061.745000px;}
.y7_c00141{bottom:1062.825000px;}
.y6_c00141{bottom:1063.470000px;}
.y4_c00141{bottom:1063.905000px;}
.y5_c00141{bottom:1064.970000px;}
.y1_c00141{bottom:1100.550000px;}
.y2_c00141{bottom:1101.630000px;}
.h9_c00141{height:4.206533px;}
.hb_c00141{height:8.339268px;}
.ha_c00141{height:14.612168px;}
.h8_c00141{height:16.752334px;}
.h2_c00141{height:23.025234px;}
.h1_c00141{height:25.091602px;}
.h5_c00141{height:31.364502px;}
.h4_c00141{height:35.571035px;}
.h6_c00141{height:39.777568px;}
.h3_c00141{height:43.910303px;}
.h7_c00141{height:48.116836px;}
.h0_c00141{height:1335.000000px;}
.w0_c00141{width:880.500000px;}
.x0_c00141{left:0.000000px;}
.x2_c00141{left:151.920000px;}
.x3_c00141{left:153.000000px;}
.x64_c00141{left:162.000000px;}
.x65_c00141{left:163.500000px;}
.x2d_c00141{left:169.080000px;}
.x7f_c00141{left:172.080000px;}
.x85_c00141{left:177.420000px;}
.x55_c00141{left:180.420000px;}
.x43_c00141{left:184.080000px;}
.x79_c00141{left:185.580000px;}
.x12_c00141{left:189.420000px;}
.x4_c00141{left:190.500000px;}
.x3a_c00141{left:192.000000px;}
.x75_c00141{left:195.420000px;}
.x4b_c00141{left:199.080000px;}
.x80_c00141{left:204.420000px;}
.x1e_c00141{left:207.420000px;}
.x89_c00141{left:208.500000px;}
.x5b_c00141{left:211.920000px;}
.x81_c00141{left:213.000000px;}
.x7a_c00141{left:217.920000px;}
.x8e_c00141{left:220.500000px;}
.x56_c00141{left:222.000000px;}
.x2e_c00141{left:223.920000px;}
.x7b_c00141{left:226.500000px;}
.x76_c00141{left:229.500000px;}
.x6e_c00141{left:231.000000px;}
.x44_c00141{left:232.500000px;}
.x1f_c00141{left:235.080000px;}
.x57_c00141{left:240.000000px;}
.x73_c00141{left:249.000000px;}
.x3b_c00141{left:252.420000px;}
.x27_c00141{left:253.500000px;}
.x13_c00141{left:256.500000px;}
.x4c_c00141{left:260.580000px;}
.x8c_c00141{left:262.500000px;}
.x8d_c00141{left:271.920000px;}
.x5_c00141{left:274.920000px;}
.x20_c00141{left:276.000000px;}
.x45_c00141{left:277.080000px;}
.x58_c00141{left:285.420000px;}
.x2f_c00141{left:290.775000px;}
.x28_c00141{left:294.420000px;}
.x46_c00141{left:295.920000px;}
.x3c_c00141{left:297.420000px;}
.x14_c00141{left:303.000000px;}
.x6_c00141{left:310.920000px;}
.x30_c00141{left:316.080000px;}
.x3d_c00141{left:323.580000px;}
.x4d_c00141{left:327.000000px;}
.x21_c00141{left:331.920000px;}
.x7_c00141{left:337.080000px;}
.x82_c00141{left:340.500000px;}
.x66_c00141{left:343.500000px;}
.x31_c00141{left:345.645000px;}
.x6f_c00141{left:348.000000px;}
.x8a_c00141{left:351.000000px;}
.x6a_c00141{left:355.500000px;}
.x22_c00141{left:360.000000px;}
.x5c_c00141{left:364.080000px;}
.x29_c00141{left:367.920000px;}
.x15_c00141{left:376.500000px;}
.x8_c00141{left:378.420000px;}
.x5d_c00141{left:381.420000px;}
.x32_c00141{left:393.000000px;}
.x16_c00141{left:397.920000px;}
.x1_c00141{left:399.000000px;}
.x67_c00141{left:402.000000px;}
.x2a_c00141{left:404.580000px;}
.x70_c00141{left:406.500000px;}
.x33_c00141{left:409.500000px;}
.x63_c00141{left:412.500000px;}
.x59_c00141{left:414.000000px;}
.x9_c00141{left:416.580000px;}
.x5e_c00141{left:420.000000px;}
.x47_c00141{left:421.500000px;}
.x17_c00141{left:426.000000px;}
.x4e_c00141{left:428.580000px;}
.xa_c00141{left:435.420000px;}
.x3e_c00141{left:436.920000px;}
.x23_c00141{left:442.500000px;}
.x4f_c00141{left:447.000000px;}
.x83_c00141{left:451.920000px;}
.x7c_c00141{left:457.500000px;}
.x5a_c00141{left:459.420000px;}
.xb_c00141{left:461.580000px;}
.x77_c00141{left:463.500000px;}
.x74_c00141{left:465.000000px;}
.x8b_c00141{left:468.000000px;}
.x50_c00141{left:472.080000px;}
.x18_c00141{left:479.580000px;}
.x34_c00141{left:481.500000px;}
.x51_c00141{left:485.580000px;}
.x48_c00141{left:490.920000px;}
.x19_c00141{left:499.920000px;}
.xc_c00141{left:501.000000px;}
.x5f_c00141{left:504.000000px;}
.x2b_c00141{left:510.000000px;}
.x7d_c00141{left:516.000000px;}
.x84_c00141{left:517.920000px;}
.x3f_c00141{left:519.420000px;}
.x78_c00141{left:522.000000px;}
.x71_c00141{left:523.500000px;}
.x49_c00141{left:526.920000px;}
.x1a_c00141{left:528.000000px;}
.x2c_c00141{left:529.920000px;}
.xd_c00141{left:540.000000px;}
.x35_c00141{left:541.500000px;}
.x24_c00141{left:553.920000px;}
.x52_c00141{left:555.000000px;}
.x40_c00141{left:560.580000px;}
.xe_c00141{left:564.420000px;}
.x7e_c00141{left:570.000000px;}
.x6d_c00141{left:573.000000px;}
.x60_c00141{left:576.000000px;}
.x72_c00141{left:577.500000px;}
.x41_c00141{left:578.580000px;}
.x36_c00141{left:580.500000px;}
.x25_c00141{left:582.420000px;}
.x1b_c00141{left:594.000000px;}
.x4a_c00141{left:606.000000px;}
.x42_c00141{left:620.580000px;}
.xf_c00141{left:624.000000px;}
.x53_c00141{left:630.420000px;}
.x61_c00141{left:634.500000px;}
.x68_c00141{left:636.420000px;}
.x1c_c00141{left:639.000000px;}
.x87_c00141{left:640.500000px;}
.x26_c00141{left:645.000000px;}
.x6b_c00141{left:649.080000px;}
.x37_c00141{left:657.000000px;}
.x54_c00141{left:665.580000px;}
.x10_c00141{left:670.920000px;}
.x1d_c00141{left:681.000000px;}
.x38_c00141{left:685.080000px;}
.x69_c00141{left:694.500000px;}
.x86_c00141{left:697.500000px;}
.x88_c00141{left:699.000000px;}
.x62_c00141{left:703.500000px;}
.x11_c00141{left:704.580000px;}
.x6c_c00141{left:707.580000px;}
.x39_c00141{left:709.500000px;}
@media print{
.v1_c00141{vertical-align:-5.333333pt;}
.v0_c00141{vertical-align:0.000000pt;}
.ls0_c00141{letter-spacing:0.000000pt;}
.ws19_c00141{word-spacing:0.000000pt;}
.ws4_c00141{word-spacing:16.212320pt;}
.wse_c00141{word-spacing:33.464251pt;}
.ws15_c00141{word-spacing:35.244643pt;}
.ws16_c00141{word-spacing:36.134498pt;}
.ws13_c00141{word-spacing:38.332159pt;}
.ws14_c00141{word-spacing:38.805427pt;}
.ws12_c00141{word-spacing:44.078994pt;}
.wsf_c00141{word-spacing:44.146604pt;}
.ws1_c00141{word-spacing:44.194037pt;}
.ws18_c00141{word-spacing:57.233843pt;}
.ws9_c00141{word-spacing:58.821715pt;}
.ws10_c00141{word-spacing:61.900800pt;}
.ws17_c00141{word-spacing:64.740610pt;}
.wsc_c00141{word-spacing:69.900800pt;}
.ws11_c00141{word-spacing:69.983702pt;}
.wsb_c00141{word-spacing:72.047485pt;}
.ws0_c00141{word-spacing:80.548323pt;}
.wsa_c00141{word-spacing:81.492846pt;}
.ws2_c00141{word-spacing:85.757673pt;}
.ws5_c00141{word-spacing:90.635703pt;}
.ws8_c00141{word-spacing:93.683322pt;}
.ws3_c00141{word-spacing:96.332906pt;}
.ws7_c00141{word-spacing:100.710400pt;}
.ws6_c00141{word-spacing:110.445227pt;}
.wsd_c00141{word-spacing:217.847467pt;}
._4_c00141{width:45.875721pt;}
._3_c00141{width:51.216897pt;}
._1_c00141{width:59.787807pt;}
._2_c00141{width:67.926742pt;}
._6_c00141{width:74.458370pt;}
._8_c00141{width:76.960626pt;}
._7_c00141{width:81.965137pt;}
._5_c00141{width:88.323223pt;}
._0_c00141{width:104.202705pt;}
.fs8_c00141{font-size:3.040000pt;}
.fsa_c00141{font-size:6.026667pt;}
.fs9_c00141{font-size:10.560000pt;}
.fs7_c00141{font-size:12.106667pt;}
.fs1_c00141{font-size:16.640000pt;}
.fs0_c00141{font-size:18.133333pt;}
.fs4_c00141{font-size:22.666667pt;}
.fs3_c00141{font-size:25.706667pt;}
.fs5_c00141{font-size:28.746667pt;}
.fs2_c00141{font-size:31.733333pt;}
.fs6_c00141{font-size:34.773333pt;}
.y0_c00141{bottom:0.000000pt;}
.yc5_c00141{bottom:228.560000pt;}
.yc6_c00141{bottom:229.506667pt;}
.yc8_c00141{bottom:229.893333pt;}
.yc7_c00141{bottom:231.226667pt;}
.yc3_c00141{bottom:244.933333pt;}
.yc1_c00141{bottom:247.800000pt;}
.ybf_c00141{bottom:248.173333pt;}
.yc0_c00141{bottom:248.560000pt;}
.yc4_c00141{bottom:249.506667pt;}
.yc2_c00141{bottom:249.706667pt;}
.yba_c00141{bottom:258.840000pt;}
.ybc_c00141{bottom:259.800000pt;}
.ybb_c00141{bottom:260.560000pt;}
.ybe_c00141{bottom:261.506667pt;}
.ybd_c00141{bottom:261.706667pt;}
.yb9_c00141{bottom:265.506667pt;}
.yb6_c00141{bottom:272.560000pt;}
.yb8_c00141{bottom:273.506667pt;}
.yb7_c00141{bottom:273.893333pt;}
.yb5_c00141{bottom:283.600000pt;}
.yb4_c00141{bottom:285.133333pt;}
.yb3_c00141{bottom:285.506667pt;}
.yae_c00141{bottom:296.560000pt;}
.yaf_c00141{bottom:297.133333pt;}
.yb0_c00141{bottom:297.506667pt;}
.yb1_c00141{bottom:297.893333pt;}
.yb2_c00141{bottom:299.040000pt;}
.yab_c00141{bottom:309.893333pt;}
.yac_c00141{bottom:310.840000pt;}
.yad_c00141{bottom:312.373333pt;}
.ya8_c00141{bottom:321.893333pt;}
.ya7_c00141{bottom:322.840000pt;}
.ya9_c00141{bottom:324.173333pt;}
.yaa_c00141{bottom:324.373333pt;}
.ya6_c00141{bottom:333.893333pt;}
.ya3_c00141{bottom:334.840000pt;}
.ya4_c00141{bottom:336.173333pt;}
.ya5_c00141{bottom:336.373333pt;}
.ya2_c00141{bottom:346.840000pt;}
.ya1_c00141{bottom:347.226667pt;}
.ya0_c00141{bottom:358.840000pt;}
.y9e_c00141{bottom:359.226667pt;}
.y9f_c00141{bottom:359.426667pt;}
.y9d_c00141{bottom:360.173333pt;}
.y99_c00141{bottom:370.266667pt;}
.y9b_c00141{bottom:371.226667pt;}
.y9a_c00141{bottom:372.173333pt;}
.y9c_c00141{bottom:372.760000pt;}
.y96_c00141{bottom:383.226667pt;}
.y98_c00141{bottom:384.173333pt;}
.y97_c00141{bottom:384.760000pt;}
.y93_c00141{bottom:395.600000pt;}
.y92_c00141{bottom:396.173333pt;}
.y94_c00141{bottom:396.560000pt;}
.y95_c00141{bottom:397.706667pt;}
.y91_c00141{bottom:408.173333pt;}
.y8e_c00141{bottom:408.560000pt;}
.y8f_c00141{bottom:409.506667pt;}
.y90_c00141{bottom:409.706667pt;}
.y8c_c00141{bottom:420.560000pt;}
.y8d_c00141{bottom:421.506667pt;}
.y88_c00141{bottom:431.600000pt;}
.y89_c00141{bottom:432.560000pt;}
.y8a_c00141{bottom:433.506667pt;}
.y8b_c00141{bottom:433.706667pt;}
.y84_c00141{bottom:444.560000pt;}
.y86_c00141{bottom:445.506667pt;}
.y85_c00141{bottom:446.840000pt;}
.y87_c00141{bottom:447.040000pt;}
.y83_c00141{bottom:457.506667pt;}
.y7e_c00141{bottom:469.893333pt;}
.y7f_c00141{bottom:470.466667pt;}
.y80_c00141{bottom:470.840000pt;}
.y81_c00141{bottom:471.040000pt;}
.y82_c00141{bottom:471.226667pt;}
.y7d_c00141{bottom:481.893333pt;}
.y7c_c00141{bottom:482.840000pt;}
.y78_c00141{bottom:493.893333pt;}
.y79_c00141{bottom:494.840000pt;}
.y7a_c00141{bottom:495.226667pt;}
.y7b_c00141{bottom:496.373333pt;}
.y75_c00141{bottom:506.840000pt;}
.y74_c00141{bottom:507.226667pt;}
.y76_c00141{bottom:508.173333pt;}
.y77_c00141{bottom:508.373333pt;}
.y72_c00141{bottom:519.226667pt;}
.y71_c00141{bottom:520.173333pt;}
.y73_c00141{bottom:520.373333pt;}
.y6c_c00141{bottom:529.893333pt;}
.y6d_c00141{bottom:531.226667pt;}
.y6e_c00141{bottom:531.800000pt;}
.y6f_c00141{bottom:532.173333pt;}
.y70_c00141{bottom:532.373333pt;}
.y6a_c00141{bottom:543.226667pt;}
.y69_c00141{bottom:544.173333pt;}
.y6b_c00141{bottom:544.373333pt;}
.y66_c00141{bottom:555.226667pt;}
.y65_c00141{bottom:556.173333pt;}
.y68_c00141{bottom:556.373333pt;}
.y67_c00141{bottom:557.706667pt;}
.y61_c00141{bottom:567.226667pt;}
.y60_c00141{bottom:567.600000pt;}
.y63_c00141{bottom:568.173333pt;}
.y5f_c00141{bottom:568.560000pt;}
.y62_c00141{bottom:569.506667pt;}
.y64_c00141{bottom:569.706667pt;}
.y5d_c00141{bottom:580.560000pt;}
.y5c_c00141{bottom:581.506667pt;}
.y5e_c00141{bottom:581.706667pt;}
.y5a_c00141{bottom:592.560000pt;}
.y59_c00141{bottom:593.506667pt;}
.y5b_c00141{bottom:593.706667pt;}
.y56_c00141{bottom:603.600000pt;}
.y57_c00141{bottom:604.560000pt;}
.y55_c00141{bottom:605.506667pt;}
.y58_c00141{bottom:605.706667pt;}
.y52_c00141{bottom:616.560000pt;}
.y53_c00141{bottom:617.506667pt;}
.y51_c00141{bottom:617.893333pt;}
.y54_c00141{bottom:619.040000pt;}
.y4f_c00141{bottom:629.893333pt;}
.y4e_c00141{bottom:630.840000pt;}
.y50_c00141{bottom:631.040000pt;}
.y4b_c00141{bottom:640.933333pt;}
.y4c_c00141{bottom:641.893333pt;}
.y4a_c00141{bottom:642.840000pt;}
.y4d_c00141{bottom:643.040000pt;}
.y47_c00141{bottom:653.893333pt;}
.y46_c00141{bottom:654.266667pt;}
.y49_c00141{bottom:655.040000pt;}
.y45_c00141{bottom:655.226667pt;}
.y48_c00141{bottom:656.373333pt;}
.y41_c00141{bottom:666.840000pt;}
.y43_c00141{bottom:667.226667pt;}
.y42_c00141{bottom:668.173333pt;}
.y44_c00141{bottom:668.373333pt;}
.y40_c00141{bottom:681.893333pt;}
.y3c_c00141{bottom:682.840000pt;}
.y3f_c00141{bottom:683.226667pt;}
.y3e_c00141{bottom:684.173333pt;}
.y3d_c00141{bottom:684.560000pt;}
.y3a_c00141{bottom:695.226667pt;}
.y3b_c00141{bottom:696.173333pt;}
.y39_c00141{bottom:708.173333pt;}
.y38_c00141{bottom:730.266667pt;}
.y36_c00141{bottom:740.360000pt;}
.y37_c00141{bottom:741.306667pt;}
.y35_c00141{bottom:741.893333pt;}
.y33_c00141{bottom:742.266667pt;}
.y34_c00141{bottom:742.640000pt;}
.y32_c00141{bottom:765.306667pt;}
.y31_c00141{bottom:767.973333pt;}
.y30_c00141{bottom:803.026667pt;}
.y2d_c00141{bottom:803.773333pt;}
.y2f_c00141{bottom:805.693333pt;}
.y2c_c00141{bottom:805.893333pt;}
.y2e_c00141{bottom:806.640000pt;}
.y28_c00141{bottom:819.026667pt;}
.y2a_c00141{bottom:821.106667pt;}
.y2b_c00141{bottom:821.693333pt;}
.y26_c00141{bottom:822.640000pt;}
.y29_c00141{bottom:823.026667pt;}
.y27_c00141{bottom:823.973333pt;}
.y24_c00141{bottom:837.106667pt;}
.y25_c00141{bottom:837.493333pt;}
.y22_c00141{bottom:838.440000pt;}
.y23_c00141{bottom:839.400000pt;}
.y21_c00141{bottom:840.360000pt;}
.y1f_c00141{bottom:856.160000pt;}
.y1e_c00141{bottom:856.933333pt;}
.y1c_c00141{bottom:857.106667pt;}
.y1d_c00141{bottom:858.066667pt;}
.y20_c00141{bottom:859.026667pt;}
.y19_c00141{bottom:873.106667pt;}
.y18_c00141{bottom:874.440000pt;}
.y1b_c00141{bottom:875.226667pt;}
.y1a_c00141{bottom:875.973333pt;}
.y17_c00141{bottom:876.360000pt;}
.y14_c00141{bottom:890.066667pt;}
.y15_c00141{bottom:890.440000pt;}
.y12_c00141{bottom:891.400000pt;}
.y16_c00141{bottom:892.560000pt;}
.y13_c00141{bottom:893.306667pt;}
.y11_c00141{bottom:907.773333pt;}
.yf_c00141{bottom:908.733333pt;}
.y10_c00141{bottom:909.693333pt;}
.yd_c00141{bottom:924.360000pt;}
.ye_c00141{bottom:925.106667pt;}
.y8_c00141{bottom:926.066667pt;}
.y9_c00141{bottom:926.440000pt;}
.ya_c00141{bottom:927.400000pt;}
.yb_c00141{bottom:927.973333pt;}
.yc_c00141{bottom:928.360000pt;}
.y3_c00141{bottom:943.773333pt;}
.y7_c00141{bottom:944.733333pt;}
.y6_c00141{bottom:945.306667pt;}
.y4_c00141{bottom:945.693333pt;}
.y5_c00141{bottom:946.640000pt;}
.y1_c00141{bottom:978.266667pt;}
.y2_c00141{bottom:979.226667pt;}
.h9_c00141{height:3.739141pt;}
.hb_c00141{height:7.412682pt;}
.ha_c00141{height:12.988594pt;}
.h8_c00141{height:14.890964pt;}
.h2_c00141{height:20.466875pt;}
.h1_c00141{height:22.303646pt;}
.h5_c00141{height:27.879557pt;}
.h4_c00141{height:31.618698pt;}
.h6_c00141{height:35.357839pt;}
.h3_c00141{height:39.031380pt;}
.h7_c00141{height:42.770521pt;}
.h0_c00141{height:1186.666667pt;}
.w0_c00141{width:782.666667pt;}
.x0_c00141{left:0.000000pt;}
.x2_c00141{left:135.040000pt;}
.x3_c00141{left:136.000000pt;}
.x64_c00141{left:144.000000pt;}
.x65_c00141{left:145.333333pt;}
.x2d_c00141{left:150.293333pt;}
.x7f_c00141{left:152.960000pt;}
.x85_c00141{left:157.706667pt;}
.x55_c00141{left:160.373333pt;}
.x43_c00141{left:163.626667pt;}
.x79_c00141{left:164.960000pt;}
.x12_c00141{left:168.373333pt;}
.x4_c00141{left:169.333333pt;}
.x3a_c00141{left:170.666667pt;}
.x75_c00141{left:173.706667pt;}
.x4b_c00141{left:176.960000pt;}
.x80_c00141{left:181.706667pt;}
.x1e_c00141{left:184.373333pt;}
.x89_c00141{left:185.333333pt;}
.x5b_c00141{left:188.373333pt;}
.x81_c00141{left:189.333333pt;}
.x7a_c00141{left:193.706667pt;}
.x8e_c00141{left:196.000000pt;}
.x56_c00141{left:197.333333pt;}
.x2e_c00141{left:199.040000pt;}
.x7b_c00141{left:201.333333pt;}
.x76_c00141{left:204.000000pt;}
.x6e_c00141{left:205.333333pt;}
.x44_c00141{left:206.666667pt;}
.x1f_c00141{left:208.960000pt;}
.x57_c00141{left:213.333333pt;}
.x73_c00141{left:221.333333pt;}
.x3b_c00141{left:224.373333pt;}
.x27_c00141{left:225.333333pt;}
.x13_c00141{left:228.000000pt;}
.x4c_c00141{left:231.626667pt;}
.x8c_c00141{left:233.333333pt;}
.x8d_c00141{left:241.706667pt;}
.x5_c00141{left:244.373333pt;}
.x20_c00141{left:245.333333pt;}
.x45_c00141{left:246.293333pt;}
.x58_c00141{left:253.706667pt;}
.x2f_c00141{left:258.466667pt;}
.x28_c00141{left:261.706667pt;}
.x46_c00141{left:263.040000pt;}
.x3c_c00141{left:264.373333pt;}
.x14_c00141{left:269.333333pt;}
.x6_c00141{left:276.373333pt;}
.x30_c00141{left:280.960000pt;}
.x3d_c00141{left:287.626667pt;}
.x4d_c00141{left:290.666667pt;}
.x21_c00141{left:295.040000pt;}
.x7_c00141{left:299.626667pt;}
.x82_c00141{left:302.666667pt;}
.x66_c00141{left:305.333333pt;}
.x31_c00141{left:307.240000pt;}
.x6f_c00141{left:309.333333pt;}
.x8a_c00141{left:312.000000pt;}
.x6a_c00141{left:316.000000pt;}
.x22_c00141{left:320.000000pt;}
.x5c_c00141{left:323.626667pt;}
.x29_c00141{left:327.040000pt;}
.x15_c00141{left:334.666667pt;}
.x8_c00141{left:336.373333pt;}
.x5d_c00141{left:339.040000pt;}
.x32_c00141{left:349.333333pt;}
.x16_c00141{left:353.706667pt;}
.x1_c00141{left:354.666667pt;}
.x67_c00141{left:357.333333pt;}
.x2a_c00141{left:359.626667pt;}
.x70_c00141{left:361.333333pt;}
.x33_c00141{left:364.000000pt;}
.x63_c00141{left:366.666667pt;}
.x59_c00141{left:368.000000pt;}
.x9_c00141{left:370.293333pt;}
.x5e_c00141{left:373.333333pt;}
.x47_c00141{left:374.666667pt;}
.x17_c00141{left:378.666667pt;}
.x4e_c00141{left:380.960000pt;}
.xa_c00141{left:387.040000pt;}
.x3e_c00141{left:388.373333pt;}
.x23_c00141{left:393.333333pt;}
.x4f_c00141{left:397.333333pt;}
.x83_c00141{left:401.706667pt;}
.x7c_c00141{left:406.666667pt;}
.x5a_c00141{left:408.373333pt;}
.xb_c00141{left:410.293333pt;}
.x77_c00141{left:412.000000pt;}
.x74_c00141{left:413.333333pt;}
.x8b_c00141{left:416.000000pt;}
.x50_c00141{left:419.626667pt;}
.x18_c00141{left:426.293333pt;}
.x34_c00141{left:428.000000pt;}
.x51_c00141{left:431.626667pt;}
.x48_c00141{left:436.373333pt;}
.x19_c00141{left:444.373333pt;}
.xc_c00141{left:445.333333pt;}
.x5f_c00141{left:448.000000pt;}
.x2b_c00141{left:453.333333pt;}
.x7d_c00141{left:458.666667pt;}
.x84_c00141{left:460.373333pt;}
.x3f_c00141{left:461.706667pt;}
.x78_c00141{left:464.000000pt;}
.x71_c00141{left:465.333333pt;}
.x49_c00141{left:468.373333pt;}
.x1a_c00141{left:469.333333pt;}
.x2c_c00141{left:471.040000pt;}
.xd_c00141{left:480.000000pt;}
.x35_c00141{left:481.333333pt;}
.x24_c00141{left:492.373333pt;}
.x52_c00141{left:493.333333pt;}
.x40_c00141{left:498.293333pt;}
.xe_c00141{left:501.706667pt;}
.x7e_c00141{left:506.666667pt;}
.x6d_c00141{left:509.333333pt;}
.x60_c00141{left:512.000000pt;}
.x72_c00141{left:513.333333pt;}
.x41_c00141{left:514.293333pt;}
.x36_c00141{left:516.000000pt;}
.x25_c00141{left:517.706667pt;}
.x1b_c00141{left:528.000000pt;}
.x4a_c00141{left:538.666667pt;}
.x42_c00141{left:551.626667pt;}
.xf_c00141{left:554.666667pt;}
.x53_c00141{left:560.373333pt;}
.x61_c00141{left:564.000000pt;}
.x68_c00141{left:565.706667pt;}
.x1c_c00141{left:568.000000pt;}
.x87_c00141{left:569.333333pt;}
.x26_c00141{left:573.333333pt;}
.x6b_c00141{left:576.960000pt;}
.x37_c00141{left:584.000000pt;}
.x54_c00141{left:591.626667pt;}
.x10_c00141{left:596.373333pt;}
.x1d_c00141{left:605.333333pt;}
.x38_c00141{left:608.960000pt;}
.x69_c00141{left:617.333333pt;}
.x86_c00141{left:620.000000pt;}
.x88_c00141{left:621.333333pt;}
.x62_c00141{left:625.333333pt;}
.x11_c00141{left:626.293333pt;}
.x6c_c00141{left:628.960000pt;}
.x39_c00141{left:630.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_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_118f77f528af83376c15ef94.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me3_c00142{transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);}
.m103_c00142{transform:matrix(0.331288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331288,0.000000,0.000000,0.250000,0,0);}
.mef_c00142{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m108_c00142{transform:matrix(0.336618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336618,0.000000,0.000000,0.250000,0,0);}
.mf0_c00142{transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);}
.m8b_c00142{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m9_c00142{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m5b_c00142{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m48_c00142{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m60_c00142{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mb2_c00142{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mfe_c00142{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m5a_c00142{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mf1_c00142{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m65_c00142{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m22_c00142{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.mac_c00142{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.md5_c00142{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.md1_c00142{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.ma7_c00142{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mc1_c00142{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m10a_c00142{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);}
.mb1_c00142{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m62_c00142{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m70_c00142{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m7d_c00142{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.md6_c00142{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m56_c00142{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.mc0_c00142{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.mbd_c00142{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.me2_c00142{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.me4_c00142{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m85_c00142{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m92_c00142{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mb6_c00142{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mff_c00142{transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);}
.m89_c00142{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m61_c00142{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.med_c00142{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m3b_c00142{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m69_c00142{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m7_c00142{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.mf9_c00142{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.ma9_c00142{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m10e_c00142{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.md4_c00142{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.me9_c00142{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.mab_c00142{transform:matrix(0.418568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418568,0.000000,0.000000,0.250000,0,0);}
.m102_c00142{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.mb4_c00142{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m49_c00142{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.md2_c00142{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m9f_c00142{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m47_c00142{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m2c_c00142{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m98_c00142{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m45_c00142{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.ma5_c00142{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m19_c00142{transform:matrix(0.424847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424847,0.000000,0.000000,0.250000,0,0);}
.m111_c00142{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.maf_c00142{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.mad_c00142{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m8f_c00142{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m95_c00142{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m42_c00142{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.mfa_c00142{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m31_c00142{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m21_c00142{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m6a_c00142{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m87_c00142{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m46_c00142{transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);}
.m33_c00142{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m94_c00142{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.m96_c00142{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.me5_c00142{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.mc5_c00142{transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);}
.m5c_c00142{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.maa_c00142{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m110_c00142{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.ma4_c00142{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.mdc_c00142{transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);}
.m9c_c00142{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m3e_c00142{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m77_c00142{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m105_c00142{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.mca_c00142{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m80_c00142{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.me7_c00142{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mde_c00142{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m81_c00142{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.m13_c00142{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m88_c00142{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mb7_c00142{transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);}
.mbe_c00142{transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);}
.m10c_c00142{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m100_c00142{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.mfc_c00142{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.ma6_c00142{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m99_c00142{transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);}
.mba_c00142{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mea_c00142{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.me1_c00142{transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);}
.m107_c00142{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.md9_c00142{transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);}
.m51_c00142{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.ma1_c00142{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m106_c00142{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.mb5_c00142{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m3a_c00142{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mee_c00142{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.m7f_c00142{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mda_c00142{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m8e_c00142{transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);}
.md_c00142{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mc4_c00142{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m76_c00142{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m9a_c00142{transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);}
.m1_c00142{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m4c_c00142{transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);}
.mb8_c00142{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m97_c00142{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.mbf_c00142{transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);}
.m55_c00142{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m8_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);}
.m8c_c00142{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m9d_c00142{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.mdf_c00142{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mfb_c00142{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m10f_c00142{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m10d_c00142{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m24_c00142{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.ma8_c00142{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m90_c00142{transform:matrix(0.513451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513451,0.000000,0.000000,0.250000,0,0);}
.m2e_c00142{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.me6_c00142{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m4e_c00142{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.md7_c00142{transform:matrix(0.515770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515770,0.000000,0.000000,0.250000,0,0);}
.me_c00142{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m68_c00142{transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);}
.mc7_c00142{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m18_c00142{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m2_c00142{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mc9_c00142{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.m63_c00142{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m6b_c00142{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m6f_c00142{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.m2b_c00142{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.md3_c00142{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m1e_c00142{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m1c_c00142{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m9b_c00142{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m53_c00142{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m73_c00142{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mfd_c00142{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.mf7_c00142{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m7b_c00142{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m6_c00142{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m4d_c00142{transform:matrix(0.532931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532931,0.000000,0.000000,0.250000,0,0);}
.m4_c00142{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.ma0_c00142{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m8a_c00142{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m20_c00142{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mdd_c00142{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mc8_c00142{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m4a_c00142{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.ma_c00142{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m25_c00142{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m8d_c00142{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.mcc_c00142{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m84_c00142{transform:matrix(0.541280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541280,0.000000,0.000000,0.250000,0,0);}
.m10_c00142{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m57_c00142{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m5e_c00142{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m4b_c00142{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mc6_c00142{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m6d_c00142{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m7e_c00142{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m64_c00142{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mf6_c00142{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m1a_c00142{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m44_c00142{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m11_c00142{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m14_c00142{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mf8_c00142{transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);}
.ma2_c00142{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m41_c00142{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mc2_c00142{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m15_c00142{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m28_c00142{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.mf_c00142{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mc3_c00142{transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);}
.m43_c00142{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m16_c00142{transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);}
.m83_c00142{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m6c_c00142{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m58_c00142{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m5f_c00142{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m3f_c00142{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m91_c00142{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m52_c00142{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m93_c00142{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m86_c00142{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.mb3_c00142{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.m3c_c00142{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.meb_c00142{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mec_c00142{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m5d_c00142{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m54_c00142{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mb0_c00142{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.mdb_c00142{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m6e_c00142{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.ma3_c00142{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m104_c00142{transform:matrix(0.594398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594398,0.000000,0.000000,0.250000,0,0);}
.m82_c00142{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.m4f_c00142{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mcf_c00142{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.mf2_c00142{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);}
.m2a_c00142{transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);}
.m59_c00142{transform:matrix(0.603529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603529,0.000000,0.000000,0.250000,0,0);}
.m0_c00142{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m74_c00142{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m1b_c00142{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mf4_c00142{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.m78_c00142{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m38_c00142{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m36_c00142{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m109_c00142{transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);}
.m12_c00142{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m2f_c00142{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.m30_c00142{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m79_c00142{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m27_c00142{transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);}
.m1d_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);}
.m29_c00142{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mb_c00142{transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);}
.mbc_c00142{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.m71_c00142{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mbb_c00142{transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);}
.m7c_c00142{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.mae_c00142{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.md8_c00142{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.mcb_c00142{transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);}
.m37_c00142{transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);}
.m3d_c00142{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);}
.m34_c00142{transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);}
.m39_c00142{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.mcd_c00142{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m5_c00142{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m101_c00142{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);}
.m50_c00142{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m40_c00142{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.mf3_c00142{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m35_c00142{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.m23_c00142{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m10b_c00142{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.me0_c00142{transform:matrix(0.714706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.714706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.714706,0.000000,0.000000,0.250000,0,0);}
.mb9_c00142{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.md0_c00142{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m66_c00142{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m26_c00142{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m72_c00142{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m32_c00142{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m1f_c00142{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mf5_c00142{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mc_c00142{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m67_c00142{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.m9e_c00142{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m17_c00142{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m75_c00142{transform:matrix(0.814103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.814103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.814103,0.000000,0.000000,0.250000,0,0);}
.mce_c00142{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.me8_c00142{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.m7a_c00142{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m2d_c00142{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.m3_c00142{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00142{vertical-align:0.000000px;}
.ls0_c00142{letter-spacing:0.000000px;}
.sc__c00142{text-shadow:none;}
.sc0_c00142{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00142{-webkit-text-stroke:0px transparent;}
.sc0_c00142{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00142{word-spacing:0.000000px;}
.fc0_c00142{color:transparent;}
.fs2_c00142{font-size:3.420000px;}
.fs5_c00142{font-size:18.720000px;}
.fs0_c00142{font-size:20.400000px;}
.fs3_c00142{font-size:25.500000px;}
.fs1_c00142{font-size:28.920000px;}
.fs6_c00142{font-size:32.340000px;}
.fs4_c00142{font-size:35.700000px;}
.fs7_c00142{font-size:39.120000px;}
.y0_c00142{bottom:0.000000px;}
.yd1_c00142{bottom:233.745000px;}
.ycf_c00142{bottom:234.630000px;}
.yd0_c00142{bottom:235.905000px;}
.yce_c00142{bottom:253.245000px;}
.ycd_c00142{bottom:254.130000px;}
.ycb_c00142{bottom:254.745000px;}
.yca_c00142{bottom:255.405000px;}
.yc9_c00142{bottom:255.630000px;}
.ycc_c00142{bottom:256.905000px;}
.yc7_c00142{bottom:272.745000px;}
.yc5_c00142{bottom:273.825000px;}
.yc3_c00142{bottom:274.245000px;}
.yc2_c00142{bottom:274.905000px;}
.yc6_c00142{bottom:275.130000px;}
.yc4_c00142{bottom:275.970000px;}
.yc8_c00142{bottom:276.405000px;}
.yc1_c00142{bottom:292.245000px;}
.yc0_c00142{bottom:293.745000px;}
.ybd_c00142{bottom:294.405000px;}
.ybe_c00142{bottom:295.470000px;}
.ybf_c00142{bottom:295.905000px;}
.yb7_c00142{bottom:312.180000px;}
.yba_c00142{bottom:313.245000px;}
.ybb_c00142{bottom:313.905000px;}
.yb9_c00142{bottom:314.325000px;}
.ybc_c00142{bottom:314.970000px;}
.yb8_c00142{bottom:315.405000px;}
.yb6_c00142{bottom:332.745000px;}
.yb3_c00142{bottom:333.825000px;}
.yb4_c00142{bottom:334.050000px;}
.yb5_c00142{bottom:334.905000px;}
.yb2_c00142{bottom:352.245000px;}
.yb0_c00142{bottom:354.405000px;}
.yb1_c00142{bottom:355.470000px;}
.yac_c00142{bottom:371.325000px;}
.yad_c00142{bottom:371.745000px;}
.yae_c00142{bottom:372.630000px;}
.yaf_c00142{bottom:372.825000px;}
.yab_c00142{bottom:373.905000px;}
.ya9_c00142{bottom:391.245000px;}
.ya6_c00142{bottom:392.325000px;}
.ya7_c00142{bottom:393.405000px;}
.ya8_c00142{bottom:393.630000px;}
.yaa_c00142{bottom:394.470000px;}
.ya5_c00142{bottom:410.745000px;}
.ya0_c00142{bottom:411.180000px;}
.y9f_c00142{bottom:411.825000px;}
.ya2_c00142{bottom:412.245000px;}
.ya1_c00142{bottom:412.905000px;}
.ya4_c00142{bottom:413.130000px;}
.ya3_c00142{bottom:414.405000px;}
.y9e_c00142{bottom:430.245000px;}
.y9d_c00142{bottom:431.550000px;}
.y9b_c00142{bottom:431.745000px;}
.y99_c00142{bottom:432.405000px;}
.y9a_c00142{bottom:433.470000px;}
.y9c_c00142{bottom:433.905000px;}
.y97_c00142{bottom:455.745000px;}
.y98_c00142{bottom:457.905000px;}
.y95_c00142{bottom:492.405000px;}
.y96_c00142{bottom:493.470000px;}
.y92_c00142{bottom:508.905000px;}
.y94_c00142{bottom:509.745000px;}
.y90_c00142{bottom:510.825000px;}
.y93_c00142{bottom:511.470000px;}
.y91_c00142{bottom:511.905000px;}
.y8e_c00142{bottom:528.405000px;}
.y8f_c00142{bottom:528.825000px;}
.y8c_c00142{bottom:529.245000px;}
.y8d_c00142{bottom:531.405000px;}
.y89_c00142{bottom:548.325000px;}
.y87_c00142{bottom:550.245000px;}
.y8b_c00142{bottom:551.130000px;}
.y8a_c00142{bottom:551.325000px;}
.y86_c00142{bottom:551.970000px;}
.y88_c00142{bottom:552.405000px;}
.y82_c00142{bottom:568.470000px;}
.y85_c00142{bottom:568.905000px;}
.y81_c00142{bottom:569.745000px;}
.y84_c00142{bottom:570.630000px;}
.y83_c00142{bottom:570.825000px;}
.y80_c00142{bottom:571.905000px;}
.y7f_c00142{bottom:586.905000px;}
.y7d_c00142{bottom:589.245000px;}
.y7b_c00142{bottom:589.905000px;}
.y7c_c00142{bottom:590.130000px;}
.y7e_c00142{bottom:591.405000px;}
.y7a_c00142{bottom:607.245000px;}
.y78_c00142{bottom:608.325000px;}
.y74_c00142{bottom:608.745000px;}
.y76_c00142{bottom:609.630000px;}
.y79_c00142{bottom:609.825000px;}
.y77_c00142{bottom:610.470000px;}
.y75_c00142{bottom:610.905000px;}
.y6f_c00142{bottom:625.905000px;}
.y72_c00142{bottom:628.245000px;}
.y70_c00142{bottom:629.130000px;}
.y73_c00142{bottom:629.970000px;}
.y71_c00142{bottom:630.405000px;}
.y6d_c00142{bottom:646.905000px;}
.y6e_c00142{bottom:649.245000px;}
.y6b_c00142{bottom:649.905000px;}
.y6c_c00142{bottom:651.405000px;}
.y65_c00142{bottom:667.245000px;}
.y67_c00142{bottom:668.325000px;}
.y6a_c00142{bottom:668.970000px;}
.y66_c00142{bottom:669.405000px;}
.y69_c00142{bottom:669.630000px;}
.y68_c00142{bottom:670.470000px;}
.y62_c00142{bottom:686.745000px;}
.y61_c00142{bottom:687.825000px;}
.y60_c00142{bottom:688.905000px;}
.y64_c00142{bottom:689.970000px;}
.y63_c00142{bottom:690.405000px;}
.y5e_c00142{bottom:707.745000px;}
.y5f_c00142{bottom:708.630000px;}
.y5b_c00142{bottom:708.825000px;}
.y5d_c00142{bottom:709.470000px;}
.y5c_c00142{bottom:709.905000px;}
.y57_c00142{bottom:724.905000px;}
.y55_c00142{bottom:726.825000px;}
.y5a_c00142{bottom:727.245000px;}
.y58_c00142{bottom:728.130000px;}
.y59_c00142{bottom:728.325000px;}
.y56_c00142{bottom:729.405000px;}
.y52_c00142{bottom:746.745000px;}
.y51_c00142{bottom:747.630000px;}
.y50_c00142{bottom:747.825000px;}
.y4f_c00142{bottom:748.905000px;}
.y54_c00142{bottom:749.130000px;}
.y53_c00142{bottom:749.970000px;}
.y4e_c00142{bottom:764.970000px;}
.y49_c00142{bottom:765.825000px;}
.y4b_c00142{bottom:766.245000px;}
.y4d_c00142{bottom:767.325000px;}
.y48_c00142{bottom:768.405000px;}
.y4a_c00142{bottom:768.630000px;}
.y4c_c00142{bottom:769.470000px;}
.y47_c00142{bottom:785.745000px;}
.y45_c00142{bottom:786.825000px;}
.y44_c00142{bottom:787.905000px;}
.y46_c00142{bottom:788.130000px;}
.y40_c00142{bottom:805.245000px;}
.y43_c00142{bottom:805.470000px;}
.y41_c00142{bottom:806.325000px;}
.y3f_c00142{bottom:807.405000px;}
.y42_c00142{bottom:807.630000px;}
.y3d_c00142{bottom:824.745000px;}
.y3a_c00142{bottom:826.905000px;}
.y3c_c00142{bottom:827.130000px;}
.y3b_c00142{bottom:827.970000px;}
.y3e_c00142{bottom:828.405000px;}
.y37_c00142{bottom:845.745000px;}
.y34_c00142{bottom:846.405000px;}
.y39_c00142{bottom:846.630000px;}
.y36_c00142{bottom:847.470000px;}
.y35_c00142{bottom:847.905000px;}
.y38_c00142{bottom:848.970000px;}
.y33_c00142{bottom:865.245000px;}
.y31_c00142{bottom:866.130000px;}
.y32_c00142{bottom:867.405000px;}
.y2f_c00142{bottom:884.745000px;}
.y30_c00142{bottom:886.905000px;}
.y2c_c00142{bottom:904.245000px;}
.y2e_c00142{bottom:905.970000px;}
.y2d_c00142{bottom:906.405000px;}
.y2b_c00142{bottom:907.470000px;}
.y29_c00142{bottom:923.325000px;}
.y2a_c00142{bottom:923.745000px;}
.y25_c00142{bottom:924.825000px;}
.y27_c00142{bottom:925.470000px;}
.y26_c00142{bottom:925.905000px;}
.y28_c00142{bottom:926.970000px;}
.y21_c00142{bottom:943.245000px;}
.y20_c00142{bottom:944.325000px;}
.y22_c00142{bottom:945.405000px;}
.y24_c00142{bottom:945.630000px;}
.y23_c00142{bottom:945.825000px;}
.y1d_c00142{bottom:964.050000px;}
.y1e_c00142{bottom:964.245000px;}
.y1f_c00142{bottom:965.550000px;}
.y1c_c00142{bottom:966.405000px;}
.y1b_c00142{bottom:982.470000px;}
.y1a_c00142{bottom:983.745000px;}
.y17_c00142{bottom:985.470000px;}
.y19_c00142{bottom:985.905000px;}
.y18_c00142{bottom:986.970000px;}
.y14_c00142{bottom:1001.745000px;}
.y15_c00142{bottom:1003.905000px;}
.y16_c00142{bottom:1004.130000px;}
.y13_c00142{bottom:1004.970000px;}
.y11_c00142{bottom:1021.245000px;}
.yf_c00142{bottom:1023.405000px;}
.y10_c00142{bottom:1023.630000px;}
.y12_c00142{bottom:1024.470000px;}
.yd_c00142{bottom:1041.180000px;}
.yb_c00142{bottom:1041.405000px;}
.ya_c00142{bottom:1043.325000px;}
.ye_c00142{bottom:1043.970000px;}
.y9_c00142{bottom:1044.405000px;}
.yc_c00142{bottom:1044.630000px;}
.y7_c00142{bottom:1060.905000px;}
.y6_c00142{bottom:1061.745000px;}
.y3_c00142{bottom:1063.905000px;}
.y8_c00142{bottom:1064.130000px;}
.y5_c00142{bottom:1064.970000px;}
.y4_c00142{bottom:1065.420000px;}
.y2_c00142{bottom:1099.905000px;}
.y1_c00142{bottom:1102.050000px;}
.h3_c00142{height:4.206533px;}
.h6_c00142{height:23.025234px;}
.h1_c00142{height:25.091602px;}
.h4_c00142{height:31.364502px;}
.h2_c00142{height:35.571035px;}
.h7_c00142{height:39.777568px;}
.h5_c00142{height:43.910303px;}
.h8_c00142{height:48.116836px;}
.h0_c00142{height:1335.000000px;}
.w0_c00142{width:880.500000px;}
.x0_c00142{left:0.000000px;}
.xf6_c00142{left:151.500000px;}
.x29_c00142{left:153.000000px;}
.x13_c00142{left:154.500000px;}
.xe8_c00142{left:168.000000px;}
.x3_c00142{left:170.145000px;}
.x2a_c00142{left:172.500000px;}
.xa7_c00142{left:179.580000px;}
.x92_c00142{left:181.500000px;}
.x80_c00142{left:184.500000px;}
.x102_c00142{left:186.000000px;}
.xc4_c00142{left:189.000000px;}
.x35_c00142{left:190.500000px;}
.xe5_c00142{left:192.000000px;}
.x40_c00142{left:193.500000px;}
.xa8_c00142{left:198.420000px;}
.x8b_c00142{left:200.580000px;}
.x68_c00142{left:203.775000px;}
.x6f_c00142{left:205.500000px;}
.x77_c00142{left:207.000000px;}
.xae_c00142{left:208.500000px;}
.x41_c00142{left:210.000000px;}
.x81_c00142{left:211.920000px;}
.x93_c00142{left:216.420000px;}
.xcf_c00142{left:217.920000px;}
.x14_c00142{left:219.000000px;}
.x1e_c00142{left:222.000000px;}
.x2b_c00142{left:223.500000px;}
.xb4_c00142{left:225.000000px;}
.x36_c00142{left:226.500000px;}
.x5f_c00142{left:227.580000px;}
.x70_c00142{left:229.500000px;}
.x8c_c00142{left:232.500000px;}
.xeb_c00142{left:234.420000px;}
.xe9_c00142{left:235.500000px;}
.x9d_c00142{left:237.420000px;}
.xba_c00142{left:238.920000px;}
.x4_c00142{left:240.000000px;}
.x42_c00142{left:241.500000px;}
.x1f_c00142{left:243.420000px;}
.xfb_c00142{left:246.000000px;}
.x82_c00142{left:247.080000px;}
.x54_c00142{left:248.580000px;}
.x37_c00142{left:253.080000px;}
.xbf_c00142{left:256.080000px;}
.xcb_c00142{left:257.580000px;}
.xfe_c00142{left:259.500000px;}
.x5_c00142{left:260.580000px;}
.x2c_c00142{left:262.080000px;}
.x83_c00142{left:267.420000px;}
.x55_c00142{left:268.500000px;}
.x20_c00142{left:270.000000px;}
.x94_c00142{left:271.080000px;}
.xe1_c00142{left:273.420000px;}
.x60_c00142{left:274.500000px;}
.x71_c00142{left:276.000000px;}
.x43_c00142{left:280.920000px;}
.xf2_c00142{left:283.500000px;}
.xd2_c00142{left:285.000000px;}
.xdc_c00142{left:286.920000px;}
.xa2_c00142{left:289.500000px;}
.xcc_c00142{left:291.000000px;}
.x6_c00142{left:294.000000px;}
.x56_c00142{left:295.500000px;}
.x38_c00142{left:296.580000px;}
.x103_c00142{left:300.000000px;}
.x95_c00142{left:301.080000px;}
.x78_c00142{left:303.420000px;}
.xb5_c00142{left:306.000000px;}
.x8d_c00142{left:307.920000px;}
.x61_c00142{left:309.000000px;}
.xdd_c00142{left:312.000000px;}
.x7_c00142{left:315.420000px;}
.x39_c00142{left:316.500000px;}
.x15_c00142{left:317.580000px;}
.xc5_c00142{left:320.580000px;}
.xd3_c00142{left:324.420000px;}
.xe2_c00142{left:325.500000px;}
.x4e_c00142{left:328.080000px;}
.x106_c00142{left:329.580000px;}
.x62_c00142{left:334.500000px;}
.x69_c00142{left:336.000000px;}
.x21_c00142{left:337.500000px;}
.x79_c00142{left:339.000000px;}
.xe6_c00142{left:342.000000px;}
.x8_c00142{left:343.500000px;}
.x3a_c00142{left:344.580000px;}
.x44_c00142{left:346.080000px;}
.x96_c00142{left:348.420000px;}
.x107_c00142{left:349.920000px;}
.x16_c00142{left:352.080000px;}
.xd7_c00142{left:355.920000px;}
.xaf_c00142{left:357.000000px;}
.xc0_c00142{left:358.920000px;}
.xee_c00142{left:361.500000px;}
.xc6_c00142{left:362.580000px;}
.xd4_c00142{left:364.500000px;}
.x45_c00142{left:366.000000px;}
.x7a_c00142{left:367.500000px;}
.x3b_c00142{left:371.580000px;}
.x22_c00142{left:373.080000px;}
.x97_c00142{left:375.000000px;}
.x57_c00142{left:376.500000px;}
.xa3_c00142{left:378.420000px;}
.xbb_c00142{left:380.580000px;}
.x4f_c00142{left:382.500000px;}
.x84_c00142{left:384.000000px;}
.x63_c00142{left:385.500000px;}
.x105_c00142{left:388.500000px;}
.x58_c00142{left:393.420000px;}
.x72_c00142{left:394.500000px;}
.x9e_c00142{left:396.000000px;}
.xc1_c00142{left:397.080000px;}
.x1_c00142{left:400.500000px;}
.x9_c00142{left:403.080000px;}
.x98_c00142{left:404.580000px;}
.x8e_c00142{left:408.420000px;}
.x6a_c00142{left:410.580000px;}
.x85_c00142{left:413.580000px;}
.xa9_c00142{left:416.580000px;}
.xe7_c00142{left:418.500000px;}
.x50_c00142{left:419.580000px;}
.x46_c00142{left:421.920000px;}
.xa_c00142{left:423.420000px;}
.x99_c00142{left:424.500000px;}
.xbc_c00142{left:426.000000px;}
.x2d_c00142{left:427.920000px;}
.x17_c00142{left:429.000000px;}
.xc7_c00142{left:430.500000px;}
.xd8_c00142{left:432.000000px;}
.xcd_c00142{left:433.500000px;}
.xd0_c00142{left:435.000000px;}
.x8f_c00142{left:436.500000px;}
.x9a_c00142{left:438.420000px;}
.x73_c00142{left:439.920000px;}
.x23_c00142{left:443.580000px;}
.xbd_c00142{left:445.920000px;}
.xaa_c00142{left:447.420000px;}
.x7b_c00142{left:450.000000px;}
.xb_c00142{left:451.500000px;}
.x59_c00142{left:452.580000px;}
.x6b_c00142{left:456.000000px;}
.xde_c00142{left:458.580000px;}
.xf3_c00142{left:461.580000px;}
.x86_c00142{left:463.500000px;}
.x3c_c00142{left:465.420000px;}
.x51_c00142{left:468.420000px;}
.x74_c00142{left:469.920000px;}
.x7c_c00142{left:472.080000px;}
.xea_c00142{left:477.000000px;}
.x64_c00142{left:478.500000px;}
.xd5_c00142{left:480.000000px;}
.xab_c00142{left:481.920000px;}
.xb6_c00142{left:483.000000px;}
.x47_c00142{left:484.500000px;}
.x2e_c00142{left:486.000000px;}
.xf8_c00142{left:488.580000px;}
.xff_c00142{left:490.500000px;}
.x5a_c00142{left:491.580000px;}
.x3d_c00142{left:496.080000px;}
.xef_c00142{left:497.580000px;}
.x90_c00142{left:499.920000px;}
.x2f_c00142{left:502.500000px;}
.xc_c00142{left:504.420000px;}
.x65_c00142{left:505.500000px;}
.xac_c00142{left:507.000000px;}
.x100_c00142{left:510.420000px;}
.xb0_c00142{left:514.080000px;}
.x18_c00142{left:519.000000px;}
.xa4_c00142{left:520.080000px;}
.x5b_c00142{left:521.580000px;}
.x24_c00142{left:525.000000px;}
.xd9_c00142{left:526.500000px;}
.xec_c00142{left:527.580000px;}
.x87_c00142{left:531.000000px;}
.x30_c00142{left:532.080000px;}
.x101_c00142{left:537.420000px;}
.xb1_c00142{left:538.920000px;}
.x75_c00142{left:540.420000px;}
.xd_c00142{left:541.500000px;}
.x19_c00142{left:544.920000px;}
.xed_c00142{left:550.920000px;}
.xf4_c00142{left:552.000000px;}
.xc8_c00142{left:553.500000px;}
.xf9_c00142{left:554.580000px;}
.xb7_c00142{left:556.080000px;}
.x6c_c00142{left:558.000000px;}
.x48_c00142{left:559.920000px;}
.x9f_c00142{left:561.420000px;}
.xda_c00142{left:562.500000px;}
.x88_c00142{left:564.000000px;}
.x66_c00142{left:567.000000px;}
.xc2_c00142{left:568.080000px;}
.x31_c00142{left:569.580000px;}
.xc9_c00142{left:571.080000px;}
.xad_c00142{left:574.500000px;}
.x9b_c00142{left:576.000000px;}
.x1a_c00142{left:577.500000px;}
.xb8_c00142{left:579.000000px;}
.xe_c00142{left:580.920000px;}
.xf7_c00142{left:583.080000px;}
.x52_c00142{left:585.000000px;}
.x49_c00142{left:586.500000px;}
.x91_c00142{left:588.000000px;}
.x25_c00142{left:589.500000px;}
.xa5_c00142{left:591.420000px;}
.x7d_c00142{left:595.500000px;}
.xdf_c00142{left:596.580000px;}
.x104_c00142{left:601.500000px;}
.xa0_c00142{left:603.420000px;}
.xfa_c00142{left:604.500000px;}
.x6d_c00142{left:605.580000px;}
.xf_c00142{left:610.080000px;}
.x53_c00142{left:611.580000px;}
.xf0_c00142{left:615.000000px;}
.xe3_c00142{left:618.420000px;}
.xfc_c00142{left:619.500000px;}
.x26_c00142{left:620.580000px;}
.x1b_c00142{left:622.500000px;}
.xca_c00142{left:624.000000px;}
.xbe_c00142{left:625.500000px;}
.x4a_c00142{left:627.420000px;}
.x5c_c00142{left:630.000000px;}
.x89_c00142{left:631.080000px;}
.x10_c00142{left:633.000000px;}
.xb2_c00142{left:636.000000px;}
.x7e_c00142{left:639.000000px;}
.x3e_c00142{left:642.000000px;}
.x32_c00142{left:646.920000px;}
.x5d_c00142{left:649.500000px;}
.x9c_c00142{left:652.500000px;}
.xf5_c00142{left:654.000000px;}
.xa1_c00142{left:655.500000px;}
.xb3_c00142{left:658.500000px;}
.x3f_c00142{left:659.580000px;}
.xa6_c00142{left:661.500000px;}
.x4b_c00142{left:662.580000px;}
.x67_c00142{left:664.500000px;}
.x11_c00142{left:667.080000px;}
.xc3_c00142{left:669.000000px;}
.x1c_c00142{left:671.580000px;}
.xe0_c00142{left:675.000000px;}
.xd6_c00142{left:677.580000px;}
.xfd_c00142{left:679.920000px;}
.x4c_c00142{left:681.420000px;}
.x7f_c00142{left:684.000000px;}
.x27_c00142{left:685.500000px;}
.x33_c00142{left:687.000000px;}
.x8a_c00142{left:688.500000px;}
.xb9_c00142{left:691.500000px;}
.xd1_c00142{left:693.420000px;}
.xce_c00142{left:694.500000px;}
.xdb_c00142{left:696.420000px;}
.x1d_c00142{left:697.500000px;}
.xe4_c00142{left:699.420000px;}
.x34_c00142{left:700.920000px;}
.x28_c00142{left:705.000000px;}
.x2_c00142{left:708.420000px;}
.x4d_c00142{left:709.500000px;}
.x6e_c00142{left:712.080000px;}
.x12_c00142{left:714.000000px;}
.x76_c00142{left:717.000000px;}
.x5e_c00142{left:718.080000px;}
.xf1_c00142{left:720.000000px;}
@media print{
.v0_c00142{vertical-align:0.000000pt;}
.ls0_c00142{letter-spacing:0.000000pt;}
.ws0_c00142{word-spacing:0.000000pt;}
.fs2_c00142{font-size:3.040000pt;}
.fs5_c00142{font-size:16.640000pt;}
.fs0_c00142{font-size:18.133333pt;}
.fs3_c00142{font-size:22.666667pt;}
.fs1_c00142{font-size:25.706667pt;}
.fs6_c00142{font-size:28.746667pt;}
.fs4_c00142{font-size:31.733333pt;}
.fs7_c00142{font-size:34.773333pt;}
.y0_c00142{bottom:0.000000pt;}
.yd1_c00142{bottom:207.773333pt;}
.ycf_c00142{bottom:208.560000pt;}
.yd0_c00142{bottom:209.693333pt;}
.yce_c00142{bottom:225.106667pt;}
.ycd_c00142{bottom:225.893333pt;}
.ycb_c00142{bottom:226.440000pt;}
.yca_c00142{bottom:227.026667pt;}
.yc9_c00142{bottom:227.226667pt;}
.ycc_c00142{bottom:228.360000pt;}
.yc7_c00142{bottom:242.440000pt;}
.yc5_c00142{bottom:243.400000pt;}
.yc3_c00142{bottom:243.773333pt;}
.yc2_c00142{bottom:244.360000pt;}
.yc6_c00142{bottom:244.560000pt;}
.yc4_c00142{bottom:245.306667pt;}
.yc8_c00142{bottom:245.693333pt;}
.yc1_c00142{bottom:259.773333pt;}
.yc0_c00142{bottom:261.106667pt;}
.ybd_c00142{bottom:261.693333pt;}
.ybe_c00142{bottom:262.640000pt;}
.ybf_c00142{bottom:263.026667pt;}
.yb7_c00142{bottom:277.493333pt;}
.yba_c00142{bottom:278.440000pt;}
.ybb_c00142{bottom:279.026667pt;}
.yb9_c00142{bottom:279.400000pt;}
.ybc_c00142{bottom:279.973333pt;}
.yb8_c00142{bottom:280.360000pt;}
.yb6_c00142{bottom:295.773333pt;}
.yb3_c00142{bottom:296.733333pt;}
.yb4_c00142{bottom:296.933333pt;}
.yb5_c00142{bottom:297.693333pt;}
.yb2_c00142{bottom:313.106667pt;}
.yb0_c00142{bottom:315.026667pt;}
.yb1_c00142{bottom:315.973333pt;}
.yac_c00142{bottom:330.066667pt;}
.yad_c00142{bottom:330.440000pt;}
.yae_c00142{bottom:331.226667pt;}
.yaf_c00142{bottom:331.400000pt;}
.yab_c00142{bottom:332.360000pt;}
.ya9_c00142{bottom:347.773333pt;}
.ya6_c00142{bottom:348.733333pt;}
.ya7_c00142{bottom:349.693333pt;}
.ya8_c00142{bottom:349.893333pt;}
.yaa_c00142{bottom:350.640000pt;}
.ya5_c00142{bottom:365.106667pt;}
.ya0_c00142{bottom:365.493333pt;}
.y9f_c00142{bottom:366.066667pt;}
.ya2_c00142{bottom:366.440000pt;}
.ya1_c00142{bottom:367.026667pt;}
.ya4_c00142{bottom:367.226667pt;}
.ya3_c00142{bottom:368.360000pt;}
.y9e_c00142{bottom:382.440000pt;}
.y9d_c00142{bottom:383.600000pt;}
.y9b_c00142{bottom:383.773333pt;}
.y99_c00142{bottom:384.360000pt;}
.y9a_c00142{bottom:385.306667pt;}
.y9c_c00142{bottom:385.693333pt;}
.y97_c00142{bottom:405.106667pt;}
.y98_c00142{bottom:407.026667pt;}
.y95_c00142{bottom:437.693333pt;}
.y96_c00142{bottom:438.640000pt;}
.y92_c00142{bottom:452.360000pt;}
.y94_c00142{bottom:453.106667pt;}
.y90_c00142{bottom:454.066667pt;}
.y93_c00142{bottom:454.640000pt;}
.y91_c00142{bottom:455.026667pt;}
.y8e_c00142{bottom:469.693333pt;}
.y8f_c00142{bottom:470.066667pt;}
.y8c_c00142{bottom:470.440000pt;}
.y8d_c00142{bottom:472.360000pt;}
.y89_c00142{bottom:487.400000pt;}
.y87_c00142{bottom:489.106667pt;}
.y8b_c00142{bottom:489.893333pt;}
.y8a_c00142{bottom:490.066667pt;}
.y86_c00142{bottom:490.640000pt;}
.y88_c00142{bottom:491.026667pt;}
.y82_c00142{bottom:505.306667pt;}
.y85_c00142{bottom:505.693333pt;}
.y81_c00142{bottom:506.440000pt;}
.y84_c00142{bottom:507.226667pt;}
.y83_c00142{bottom:507.400000pt;}
.y80_c00142{bottom:508.360000pt;}
.y7f_c00142{bottom:521.693333pt;}
.y7d_c00142{bottom:523.773333pt;}
.y7b_c00142{bottom:524.360000pt;}
.y7c_c00142{bottom:524.560000pt;}
.y7e_c00142{bottom:525.693333pt;}
.y7a_c00142{bottom:539.773333pt;}
.y78_c00142{bottom:540.733333pt;}
.y74_c00142{bottom:541.106667pt;}
.y76_c00142{bottom:541.893333pt;}
.y79_c00142{bottom:542.066667pt;}
.y77_c00142{bottom:542.640000pt;}
.y75_c00142{bottom:543.026667pt;}
.y6f_c00142{bottom:556.360000pt;}
.y72_c00142{bottom:558.440000pt;}
.y70_c00142{bottom:559.226667pt;}
.y73_c00142{bottom:559.973333pt;}
.y71_c00142{bottom:560.360000pt;}
.y6d_c00142{bottom:575.026667pt;}
.y6e_c00142{bottom:577.106667pt;}
.y6b_c00142{bottom:577.693333pt;}
.y6c_c00142{bottom:579.026667pt;}
.y65_c00142{bottom:593.106667pt;}
.y67_c00142{bottom:594.066667pt;}
.y6a_c00142{bottom:594.640000pt;}
.y66_c00142{bottom:595.026667pt;}
.y69_c00142{bottom:595.226667pt;}
.y68_c00142{bottom:595.973333pt;}
.y62_c00142{bottom:610.440000pt;}
.y61_c00142{bottom:611.400000pt;}
.y60_c00142{bottom:612.360000pt;}
.y64_c00142{bottom:613.306667pt;}
.y63_c00142{bottom:613.693333pt;}
.y5e_c00142{bottom:629.106667pt;}
.y5f_c00142{bottom:629.893333pt;}
.y5b_c00142{bottom:630.066667pt;}
.y5d_c00142{bottom:630.640000pt;}
.y5c_c00142{bottom:631.026667pt;}
.y57_c00142{bottom:644.360000pt;}
.y55_c00142{bottom:646.066667pt;}
.y5a_c00142{bottom:646.440000pt;}
.y58_c00142{bottom:647.226667pt;}
.y59_c00142{bottom:647.400000pt;}
.y56_c00142{bottom:648.360000pt;}
.y52_c00142{bottom:663.773333pt;}
.y51_c00142{bottom:664.560000pt;}
.y50_c00142{bottom:664.733333pt;}
.y4f_c00142{bottom:665.693333pt;}
.y54_c00142{bottom:665.893333pt;}
.y53_c00142{bottom:666.640000pt;}
.y4e_c00142{bottom:679.973333pt;}
.y49_c00142{bottom:680.733333pt;}
.y4b_c00142{bottom:681.106667pt;}
.y4d_c00142{bottom:682.066667pt;}
.y48_c00142{bottom:683.026667pt;}
.y4a_c00142{bottom:683.226667pt;}
.y4c_c00142{bottom:683.973333pt;}
.y47_c00142{bottom:698.440000pt;}
.y45_c00142{bottom:699.400000pt;}
.y44_c00142{bottom:700.360000pt;}
.y46_c00142{bottom:700.560000pt;}
.y40_c00142{bottom:715.773333pt;}
.y43_c00142{bottom:715.973333pt;}
.y41_c00142{bottom:716.733333pt;}
.y3f_c00142{bottom:717.693333pt;}
.y42_c00142{bottom:717.893333pt;}
.y3d_c00142{bottom:733.106667pt;}
.y3a_c00142{bottom:735.026667pt;}
.y3c_c00142{bottom:735.226667pt;}
.y3b_c00142{bottom:735.973333pt;}
.y3e_c00142{bottom:736.360000pt;}
.y37_c00142{bottom:751.773333pt;}
.y34_c00142{bottom:752.360000pt;}
.y39_c00142{bottom:752.560000pt;}
.y36_c00142{bottom:753.306667pt;}
.y35_c00142{bottom:753.693333pt;}
.y38_c00142{bottom:754.640000pt;}
.y33_c00142{bottom:769.106667pt;}
.y31_c00142{bottom:769.893333pt;}
.y32_c00142{bottom:771.026667pt;}
.y2f_c00142{bottom:786.440000pt;}
.y30_c00142{bottom:788.360000pt;}
.y2c_c00142{bottom:803.773333pt;}
.y2e_c00142{bottom:805.306667pt;}
.y2d_c00142{bottom:805.693333pt;}
.y2b_c00142{bottom:806.640000pt;}
.y29_c00142{bottom:820.733333pt;}
.y2a_c00142{bottom:821.106667pt;}
.y25_c00142{bottom:822.066667pt;}
.y27_c00142{bottom:822.640000pt;}
.y26_c00142{bottom:823.026667pt;}
.y28_c00142{bottom:823.973333pt;}
.y21_c00142{bottom:838.440000pt;}
.y20_c00142{bottom:839.400000pt;}
.y22_c00142{bottom:840.360000pt;}
.y24_c00142{bottom:840.560000pt;}
.y23_c00142{bottom:840.733333pt;}
.y1d_c00142{bottom:856.933333pt;}
.y1e_c00142{bottom:857.106667pt;}
.y1f_c00142{bottom:858.266667pt;}
.y1c_c00142{bottom:859.026667pt;}
.y1b_c00142{bottom:873.306667pt;}
.y1a_c00142{bottom:874.440000pt;}
.y17_c00142{bottom:875.973333pt;}
.y19_c00142{bottom:876.360000pt;}
.y18_c00142{bottom:877.306667pt;}
.y14_c00142{bottom:890.440000pt;}
.y15_c00142{bottom:892.360000pt;}
.y16_c00142{bottom:892.560000pt;}
.y13_c00142{bottom:893.306667pt;}
.y11_c00142{bottom:907.773333pt;}
.yf_c00142{bottom:909.693333pt;}
.y10_c00142{bottom:909.893333pt;}
.y12_c00142{bottom:910.640000pt;}
.yd_c00142{bottom:925.493333pt;}
.yb_c00142{bottom:925.693333pt;}
.ya_c00142{bottom:927.400000pt;}
.ye_c00142{bottom:927.973333pt;}
.y9_c00142{bottom:928.360000pt;}
.yc_c00142{bottom:928.560000pt;}
.y7_c00142{bottom:943.026667pt;}
.y6_c00142{bottom:943.773333pt;}
.y3_c00142{bottom:945.693333pt;}
.y8_c00142{bottom:945.893333pt;}
.y5_c00142{bottom:946.640000pt;}
.y4_c00142{bottom:947.040000pt;}
.y2_c00142{bottom:977.693333pt;}
.y1_c00142{bottom:979.600000pt;}
.h3_c00142{height:3.739141pt;}
.h6_c00142{height:20.466875pt;}
.h1_c00142{height:22.303646pt;}
.h4_c00142{height:27.879557pt;}
.h2_c00142{height:31.618698pt;}
.h7_c00142{height:35.357839pt;}
.h5_c00142{height:39.031380pt;}
.h8_c00142{height:42.770521pt;}
.h0_c00142{height:1186.666667pt;}
.w0_c00142{width:782.666667pt;}
.x0_c00142{left:0.000000pt;}
.xf6_c00142{left:134.666667pt;}
.x29_c00142{left:136.000000pt;}
.x13_c00142{left:137.333333pt;}
.xe8_c00142{left:149.333333pt;}
.x3_c00142{left:151.240000pt;}
.x2a_c00142{left:153.333333pt;}
.xa7_c00142{left:159.626667pt;}
.x92_c00142{left:161.333333pt;}
.x80_c00142{left:164.000000pt;}
.x102_c00142{left:165.333333pt;}
.xc4_c00142{left:168.000000pt;}
.x35_c00142{left:169.333333pt;}
.xe5_c00142{left:170.666667pt;}
.x40_c00142{left:172.000000pt;}
.xa8_c00142{left:176.373333pt;}
.x8b_c00142{left:178.293333pt;}
.x68_c00142{left:181.133333pt;}
.x6f_c00142{left:182.666667pt;}
.x77_c00142{left:184.000000pt;}
.xae_c00142{left:185.333333pt;}
.x41_c00142{left:186.666667pt;}
.x81_c00142{left:188.373333pt;}
.x93_c00142{left:192.373333pt;}
.xcf_c00142{left:193.706667pt;}
.x14_c00142{left:194.666667pt;}
.x1e_c00142{left:197.333333pt;}
.x2b_c00142{left:198.666667pt;}
.xb4_c00142{left:200.000000pt;}
.x36_c00142{left:201.333333pt;}
.x5f_c00142{left:202.293333pt;}
.x70_c00142{left:204.000000pt;}
.x8c_c00142{left:206.666667pt;}
.xeb_c00142{left:208.373333pt;}
.xe9_c00142{left:209.333333pt;}
.x9d_c00142{left:211.040000pt;}
.xba_c00142{left:212.373333pt;}
.x4_c00142{left:213.333333pt;}
.x42_c00142{left:214.666667pt;}
.x1f_c00142{left:216.373333pt;}
.xfb_c00142{left:218.666667pt;}
.x82_c00142{left:219.626667pt;}
.x54_c00142{left:220.960000pt;}
.x37_c00142{left:224.960000pt;}
.xbf_c00142{left:227.626667pt;}
.xcb_c00142{left:228.960000pt;}
.xfe_c00142{left:230.666667pt;}
.x5_c00142{left:231.626667pt;}
.x2c_c00142{left:232.960000pt;}
.x83_c00142{left:237.706667pt;}
.x55_c00142{left:238.666667pt;}
.x20_c00142{left:240.000000pt;}
.x94_c00142{left:240.960000pt;}
.xe1_c00142{left:243.040000pt;}
.x60_c00142{left:244.000000pt;}
.x71_c00142{left:245.333333pt;}
.x43_c00142{left:249.706667pt;}
.xf2_c00142{left:252.000000pt;}
.xd2_c00142{left:253.333333pt;}
.xdc_c00142{left:255.040000pt;}
.xa2_c00142{left:257.333333pt;}
.xcc_c00142{left:258.666667pt;}
.x6_c00142{left:261.333333pt;}
.x56_c00142{left:262.666667pt;}
.x38_c00142{left:263.626667pt;}
.x103_c00142{left:266.666667pt;}
.x95_c00142{left:267.626667pt;}
.x78_c00142{left:269.706667pt;}
.xb5_c00142{left:272.000000pt;}
.x8d_c00142{left:273.706667pt;}
.x61_c00142{left:274.666667pt;}
.xdd_c00142{left:277.333333pt;}
.x7_c00142{left:280.373333pt;}
.x39_c00142{left:281.333333pt;}
.x15_c00142{left:282.293333pt;}
.xc5_c00142{left:284.960000pt;}
.xd3_c00142{left:288.373333pt;}
.xe2_c00142{left:289.333333pt;}
.x4e_c00142{left:291.626667pt;}
.x106_c00142{left:292.960000pt;}
.x62_c00142{left:297.333333pt;}
.x69_c00142{left:298.666667pt;}
.x21_c00142{left:300.000000pt;}
.x79_c00142{left:301.333333pt;}
.xe6_c00142{left:304.000000pt;}
.x8_c00142{left:305.333333pt;}
.x3a_c00142{left:306.293333pt;}
.x44_c00142{left:307.626667pt;}
.x96_c00142{left:309.706667pt;}
.x107_c00142{left:311.040000pt;}
.x16_c00142{left:312.960000pt;}
.xd7_c00142{left:316.373333pt;}
.xaf_c00142{left:317.333333pt;}
.xc0_c00142{left:319.040000pt;}
.xee_c00142{left:321.333333pt;}
.xc6_c00142{left:322.293333pt;}
.xd4_c00142{left:324.000000pt;}
.x45_c00142{left:325.333333pt;}
.x7a_c00142{left:326.666667pt;}
.x3b_c00142{left:330.293333pt;}
.x22_c00142{left:331.626667pt;}
.x97_c00142{left:333.333333pt;}
.x57_c00142{left:334.666667pt;}
.xa3_c00142{left:336.373333pt;}
.xbb_c00142{left:338.293333pt;}
.x4f_c00142{left:340.000000pt;}
.x84_c00142{left:341.333333pt;}
.x63_c00142{left:342.666667pt;}
.x105_c00142{left:345.333333pt;}
.x58_c00142{left:349.706667pt;}
.x72_c00142{left:350.666667pt;}
.x9e_c00142{left:352.000000pt;}
.xc1_c00142{left:352.960000pt;}
.x1_c00142{left:356.000000pt;}
.x9_c00142{left:358.293333pt;}
.x98_c00142{left:359.626667pt;}
.x8e_c00142{left:363.040000pt;}
.x6a_c00142{left:364.960000pt;}
.x85_c00142{left:367.626667pt;}
.xa9_c00142{left:370.293333pt;}
.xe7_c00142{left:372.000000pt;}
.x50_c00142{left:372.960000pt;}
.x46_c00142{left:375.040000pt;}
.xa_c00142{left:376.373333pt;}
.x99_c00142{left:377.333333pt;}
.xbc_c00142{left:378.666667pt;}
.x2d_c00142{left:380.373333pt;}
.x17_c00142{left:381.333333pt;}
.xc7_c00142{left:382.666667pt;}
.xd8_c00142{left:384.000000pt;}
.xcd_c00142{left:385.333333pt;}
.xd0_c00142{left:386.666667pt;}
.x8f_c00142{left:388.000000pt;}
.x9a_c00142{left:389.706667pt;}
.x73_c00142{left:391.040000pt;}
.x23_c00142{left:394.293333pt;}
.xbd_c00142{left:396.373333pt;}
.xaa_c00142{left:397.706667pt;}
.x7b_c00142{left:400.000000pt;}
.xb_c00142{left:401.333333pt;}
.x59_c00142{left:402.293333pt;}
.x6b_c00142{left:405.333333pt;}
.xde_c00142{left:407.626667pt;}
.xf3_c00142{left:410.293333pt;}
.x86_c00142{left:412.000000pt;}
.x3c_c00142{left:413.706667pt;}
.x51_c00142{left:416.373333pt;}
.x74_c00142{left:417.706667pt;}
.x7c_c00142{left:419.626667pt;}
.xea_c00142{left:424.000000pt;}
.x64_c00142{left:425.333333pt;}
.xd5_c00142{left:426.666667pt;}
.xab_c00142{left:428.373333pt;}
.xb6_c00142{left:429.333333pt;}
.x47_c00142{left:430.666667pt;}
.x2e_c00142{left:432.000000pt;}
.xf8_c00142{left:434.293333pt;}
.xff_c00142{left:436.000000pt;}
.x5a_c00142{left:436.960000pt;}
.x3d_c00142{left:440.960000pt;}
.xef_c00142{left:442.293333pt;}
.x90_c00142{left:444.373333pt;}
.x2f_c00142{left:446.666667pt;}
.xc_c00142{left:448.373333pt;}
.x65_c00142{left:449.333333pt;}
.xac_c00142{left:450.666667pt;}
.x100_c00142{left:453.706667pt;}
.xb0_c00142{left:456.960000pt;}
.x18_c00142{left:461.333333pt;}
.xa4_c00142{left:462.293333pt;}
.x5b_c00142{left:463.626667pt;}
.x24_c00142{left:466.666667pt;}
.xd9_c00142{left:468.000000pt;}
.xec_c00142{left:468.960000pt;}
.x87_c00142{left:472.000000pt;}
.x30_c00142{left:472.960000pt;}
.x101_c00142{left:477.706667pt;}
.xb1_c00142{left:479.040000pt;}
.x75_c00142{left:480.373333pt;}
.xd_c00142{left:481.333333pt;}
.x19_c00142{left:484.373333pt;}
.xed_c00142{left:489.706667pt;}
.xf4_c00142{left:490.666667pt;}
.xc8_c00142{left:492.000000pt;}
.xf9_c00142{left:492.960000pt;}
.xb7_c00142{left:494.293333pt;}
.x6c_c00142{left:496.000000pt;}
.x48_c00142{left:497.706667pt;}
.x9f_c00142{left:499.040000pt;}
.xda_c00142{left:500.000000pt;}
.x88_c00142{left:501.333333pt;}
.x66_c00142{left:504.000000pt;}
.xc2_c00142{left:504.960000pt;}
.x31_c00142{left:506.293333pt;}
.xc9_c00142{left:507.626667pt;}
.xad_c00142{left:510.666667pt;}
.x9b_c00142{left:512.000000pt;}
.x1a_c00142{left:513.333333pt;}
.xb8_c00142{left:514.666667pt;}
.xe_c00142{left:516.373333pt;}
.xf7_c00142{left:518.293333pt;}
.x52_c00142{left:520.000000pt;}
.x49_c00142{left:521.333333pt;}
.x91_c00142{left:522.666667pt;}
.x25_c00142{left:524.000000pt;}
.xa5_c00142{left:525.706667pt;}
.x7d_c00142{left:529.333333pt;}
.xdf_c00142{left:530.293333pt;}
.x104_c00142{left:534.666667pt;}
.xa0_c00142{left:536.373333pt;}
.xfa_c00142{left:537.333333pt;}
.x6d_c00142{left:538.293333pt;}
.xf_c00142{left:542.293333pt;}
.x53_c00142{left:543.626667pt;}
.xf0_c00142{left:546.666667pt;}
.xe3_c00142{left:549.706667pt;}
.xfc_c00142{left:550.666667pt;}
.x26_c00142{left:551.626667pt;}
.x1b_c00142{left:553.333333pt;}
.xca_c00142{left:554.666667pt;}
.xbe_c00142{left:556.000000pt;}
.x4a_c00142{left:557.706667pt;}
.x5c_c00142{left:560.000000pt;}
.x89_c00142{left:560.960000pt;}
.x10_c00142{left:562.666667pt;}
.xb2_c00142{left:565.333333pt;}
.x7e_c00142{left:568.000000pt;}
.x3e_c00142{left:570.666667pt;}
.x32_c00142{left:575.040000pt;}
.x5d_c00142{left:577.333333pt;}
.x9c_c00142{left:580.000000pt;}
.xf5_c00142{left:581.333333pt;}
.xa1_c00142{left:582.666667pt;}
.xb3_c00142{left:585.333333pt;}
.x3f_c00142{left:586.293333pt;}
.xa6_c00142{left:588.000000pt;}
.x4b_c00142{left:588.960000pt;}
.x67_c00142{left:590.666667pt;}
.x11_c00142{left:592.960000pt;}
.xc3_c00142{left:594.666667pt;}
.x1c_c00142{left:596.960000pt;}
.xe0_c00142{left:600.000000pt;}
.xd6_c00142{left:602.293333pt;}
.xfd_c00142{left:604.373333pt;}
.x4c_c00142{left:605.706667pt;}
.x7f_c00142{left:608.000000pt;}
.x27_c00142{left:609.333333pt;}
.x33_c00142{left:610.666667pt;}
.x8a_c00142{left:612.000000pt;}
.xb9_c00142{left:614.666667pt;}
.xd1_c00142{left:616.373333pt;}
.xce_c00142{left:617.333333pt;}
.xdb_c00142{left:619.040000pt;}
.x1d_c00142{left:620.000000pt;}
.xe4_c00142{left:621.706667pt;}
.x34_c00142{left:623.040000pt;}
.x28_c00142{left:626.666667pt;}
.x2_c00142{left:629.706667pt;}
.x4d_c00142{left:630.666667pt;}
.x6e_c00142{left:632.960000pt;}
.x12_c00142{left:634.666667pt;}
.x76_c00142{left:637.333333pt;}
.x5e_c00142{left:638.293333pt;}
.xf1_c00142{left:640.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_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_830f86bca749980a3c762947.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:1.688965;font-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_c00143{transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);}
.m45_c00143{transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);}
.m1a_c00143{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00143{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m16_c00143{transform:matrix(0.341258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341258,0.000000,0.000000,0.250000,0,0);}
.mef_c00143{transform:matrix(0.344709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344709,0.000000,0.000000,0.250000,0,0);}
.m84_c00143{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.md6_c00143{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m1c_c00143{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m9f_c00143{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m5e_c00143{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m3b_c00143{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.ma1_c00143{transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);}
.m55_c00143{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m32_c00143{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m59_c00143{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m15_c00143{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m6_c00143{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m9c_c00143{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m53_c00143{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m44_c00143{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m80_c00143{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.ma2_c00143{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.me9_c00143{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m79_c00143{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m78_c00143{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m48_c00143{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m64_c00143{transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);}
.m5b_c00143{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m88_c00143{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m98_c00143{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m36_c00143{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.maa_c00143{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m7f_c00143{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.mb9_c00143{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m67_c00143{transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);}
.m66_c00143{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m90_c00143{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m47_c00143{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m60_c00143{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.mbd_c00143{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m6a_c00143{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mec_c00143{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m35_c00143{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.ma6_c00143{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m83_c00143{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m81_c00143{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m25_c00143{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.md2_c00143{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m61_c00143{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mb0_c00143{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mb_c00143{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m9d_c00143{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m6b_c00143{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mc2_c00143{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.meb_c00143{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.m5a_c00143{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.ma4_c00143{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.m2a_c00143{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.mad_c00143{transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);}
.m91_c00143{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mf1_c00143{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.md8_c00143{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mc6_c00143{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m2_c00143{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m7a_c00143{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m99_c00143{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.mb1_c00143{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m1b_c00143{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.ma5_c00143{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m56_c00143{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m2c_c00143{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m69_c00143{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.mbc_c00143{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.mbb_c00143{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m5d_c00143{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mdc_c00143{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.me_c00143{transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);}
.mba_c00143{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m68_c00143{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m4c_c00143{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.m72_c00143{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m97_c00143{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.ma9_c00143{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.m9a_c00143{transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);}
.mf4_c00143{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m2f_c00143{transform:matrix(0.451681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451681,0.000000,0.000000,0.250000,0,0);}
.m95_c00143{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m40_c00143{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m1_c00143{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m86_c00143{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m4a_c00143{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mb8_c00143{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m8b_c00143{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.ma7_c00143{transform:matrix(0.458506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458506,0.000000,0.000000,0.250000,0,0);}
.mcc_c00143{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m94_c00143{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m4f_c00143{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m43_c00143{transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);}
.m8f_c00143{transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);}
.mac_c00143{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.mea_c00143{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m30_c00143{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.mae_c00143{transform:matrix(0.475882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475882,0.000000,0.000000,0.250000,0,0);}
.m74_c00143{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m8a_c00143{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.ma3_c00143{transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);}
.m96_c00143{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.mce_c00143{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m76_c00143{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.mcf_c00143{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m3a_c00143{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m75_c00143{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m77_c00143{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m11_c00143{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m62_c00143{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mdd_c00143{transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);}
.m8c_c00143{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m22_c00143{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_c00143{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.md9_c00143{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m82_c00143{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m52_c00143{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mf3_c00143{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mf2_c00143{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m50_c00143{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mb5_c00143{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m37_c00143{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.mdf_c00143{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m12_c00143{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m4d_c00143{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mee_c00143{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m3d_c00143{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.md4_c00143{transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);}
.m8d_c00143{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mde_c00143{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m27_c00143{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.ma8_c00143{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m85_c00143{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.me0_c00143{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mc4_c00143{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.maf_c00143{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);}
.m57_c00143{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m42_c00143{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.mc1_c00143{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.mab_c00143{transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);}
.m89_c00143{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m5f_c00143{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mc7_c00143{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m92_c00143{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m7d_c00143{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m3e_c00143{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m6e_c00143{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m4_c00143{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mf0_c00143{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m7b_c00143{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.mcb_c00143{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m24_c00143{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m5_c00143{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m31_c00143{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m6d_c00143{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.md3_c00143{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mb7_c00143{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mca_c00143{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mdb_c00143{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.mbe_c00143{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m2d_c00143{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m39_c00143{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m10_c00143{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m51_c00143{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m58_c00143{transform:matrix(0.550420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550420,0.000000,0.000000,0.250000,0,0);}
.m71_c00143{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m17_c00143{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m87_c00143{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.mda_c00143{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m33_c00143{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mb6_c00143{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m5c_c00143{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m41_c00143{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mc9_c00143{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m23_c00143{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.md5_c00143{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m6f_c00143{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m26_c00143{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mb3_c00143{transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);}
.m28_c00143{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m18_c00143{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m34_c00143{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.m54_c00143{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m1d_c00143{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mc5_c00143{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.mc3_c00143{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m1f_c00143{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m8e_c00143{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.me4_c00143{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m13_c00143{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mc8_c00143{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mb4_c00143{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m38_c00143{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.ma0_c00143{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.md1_c00143{transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);}
.m2e_c00143{transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);}
.me5_c00143{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m73_c00143{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.me7_c00143{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m9e_c00143{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.me2_c00143{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m9_c00143{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.md_c00143{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m0_c00143{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.m4e_c00143{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m2b_c00143{transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);}
.m29_c00143{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m4b_c00143{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m65_c00143{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mf_c00143{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.m7e_c00143{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.ma_c00143{transform:matrix(0.638824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638824,0.000000,0.000000,0.250000,0,0);}
.mc_c00143{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m14_c00143{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m8_c00143{transform:matrix(0.652941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652941,0.000000,0.000000,0.250000,0,0);}
.m3c_c00143{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m70_c00143{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m3_c00143{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m49_c00143{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m9b_c00143{transform:matrix(0.691765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.691765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.691765,0.000000,0.000000,0.250000,0,0);}
.mcd_c00143{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m19_c00143{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m3f_c00143{transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);}
.md7_c00143{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.md0_c00143{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.me1_c00143{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m6c_c00143{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mbf_c00143{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.med_c00143{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.me8_c00143{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.me6_c00143{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.me3_c00143{transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);}
.m7c_c00143{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m63_c00143{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m7_c00143{transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);}
.m20_c00143{transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);}
.m46_c00143{transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);}
.mc0_c00143{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.mb2_c00143{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00143{vertical-align:-18.000000px;}
.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:-14.892000px;}
.ws1_c00143{word-spacing:-5.162969px;}
.ws2_c00143{word-spacing:-5.161615px;}
.ws3_c00143{word-spacing:0.000000px;}
._0_c00143{width:6.198901px;}
.fc0_c00143{color:transparent;}
.fs7_c00143{font-size:3.420000px;}
.fs8_c00143{font-size:6.780000px;}
.fs4_c00143{font-size:18.720000px;}
.fs0_c00143{font-size:20.400000px;}
.fs3_c00143{font-size:25.500000px;}
.fs1_c00143{font-size:28.920000px;}
.fs5_c00143{font-size:32.340000px;}
.fs2_c00143{font-size:35.700000px;}
.fs6_c00143{font-size:39.120000px;}
.y0_c00143{bottom:0.000000px;}
.ycd_c00143{bottom:253.245000px;}
.ycb_c00143{bottom:254.130000px;}
.yce_c00143{bottom:254.325000px;}
.yca_c00143{bottom:255.405000px;}
.ycc_c00143{bottom:256.470000px;}
.yc9_c00143{bottom:271.680000px;}
.yc7_c00143{bottom:272.745000px;}
.yc6_c00143{bottom:273.630000px;}
.yc8_c00143{bottom:274.905000px;}
.yc1_c00143{bottom:292.245000px;}
.yc0_c00143{bottom:293.325000px;}
.yc5_c00143{bottom:293.745000px;}
.yc3_c00143{bottom:294.405000px;}
.yc2_c00143{bottom:294.630000px;}
.yc4_c00143{bottom:295.905000px;}
.ybe_c00143{bottom:313.245000px;}
.yba_c00143{bottom:313.905000px;}
.ybc_c00143{bottom:314.130000px;}
.ybf_c00143{bottom:314.325000px;}
.ybb_c00143{bottom:314.970000px;}
.ybd_c00143{bottom:315.405000px;}
.yb3_c00143{bottom:331.245000px;}
.yb9_c00143{bottom:331.470000px;}
.yb6_c00143{bottom:332.745000px;}
.yb4_c00143{bottom:333.405000px;}
.yb8_c00143{bottom:333.630000px;}
.yb7_c00143{bottom:334.470000px;}
.yb5_c00143{bottom:334.905000px;}
.yb0_c00143{bottom:352.245000px;}
.yad_c00143{bottom:352.905000px;}
.yb1_c00143{bottom:353.130000px;}
.yb2_c00143{bottom:353.970000px;}
.yae_c00143{bottom:354.405000px;}
.yaf_c00143{bottom:355.920000px;}
.yaa_c00143{bottom:371.745000px;}
.yac_c00143{bottom:372.825000px;}
.ya9_c00143{bottom:373.905000px;}
.yab_c00143{bottom:374.970000px;}
.ya5_c00143{bottom:391.245000px;}
.ya8_c00143{bottom:392.325000px;}
.ya3_c00143{bottom:393.405000px;}
.ya6_c00143{bottom:393.630000px;}
.ya7_c00143{bottom:394.470000px;}
.ya4_c00143{bottom:394.905000px;}
.ya1_c00143{bottom:410.745000px;}
.y9e_c00143{bottom:411.825000px;}
.y9c_c00143{bottom:412.470000px;}
.y9d_c00143{bottom:412.905000px;}
.ya0_c00143{bottom:413.130000px;}
.ya2_c00143{bottom:413.970000px;}
.y9f_c00143{bottom:414.405000px;}
.y97_c00143{bottom:430.245000px;}
.y99_c00143{bottom:431.745000px;}
.y9a_c00143{bottom:432.405000px;}
.y9b_c00143{bottom:433.470000px;}
.y98_c00143{bottom:433.905000px;}
.y92_c00143{bottom:448.905000px;}
.y95_c00143{bottom:449.745000px;}
.y94_c00143{bottom:451.245000px;}
.y96_c00143{bottom:451.905000px;}
.y90_c00143{bottom:453.405000px;}
.y93_c00143{bottom:454.470000px;}
.y91_c00143{bottom:454.920000px;}
.y8f_c00143{bottom:470.745000px;}
.y8c_c00143{bottom:472.905000px;}
.y8d_c00143{bottom:473.130000px;}
.y8e_c00143{bottom:474.420000px;}
.y89_c00143{bottom:490.245000px;}
.y8b_c00143{bottom:491.325000px;}
.y8a_c00143{bottom:493.920000px;}
.y88_c00143{bottom:509.745000px;}
.y87_c00143{bottom:511.905000px;}
.y82_c00143{bottom:529.245000px;}
.y84_c00143{bottom:531.405000px;}
.y85_c00143{bottom:531.630000px;}
.y86_c00143{bottom:532.470000px;}
.y83_c00143{bottom:532.920000px;}
.y81_c00143{bottom:551.550000px;}
.y7f_c00143{bottom:552.405000px;}
.y80_c00143{bottom:553.470000px;}
.y7c_c00143{bottom:569.970000px;}
.y7b_c00143{bottom:570.825000px;}
.y7d_c00143{bottom:571.050000px;}
.y7e_c00143{bottom:572.970000px;}
.y79_c00143{bottom:592.245000px;}
.y7a_c00143{bottom:595.470000px;}
.y77_c00143{bottom:623.970000px;}
.y78_c00143{bottom:624.405000px;}
.y75_c00143{bottom:625.245000px;}
.y76_c00143{bottom:626.325000px;}
.y74_c00143{bottom:627.405000px;}
.y72_c00143{bottom:644.745000px;}
.y73_c00143{bottom:645.825000px;}
.y71_c00143{bottom:646.905000px;}
.y70_c00143{bottom:664.245000px;}
.y6f_c00143{bottom:666.405000px;}
.y6d_c00143{bottom:683.745000px;}
.y6e_c00143{bottom:684.180000px;}
.y6c_c00143{bottom:685.245000px;}
.y69_c00143{bottom:685.905000px;}
.y6b_c00143{bottom:686.970000px;}
.y6a_c00143{bottom:687.405000px;}
.y68_c00143{bottom:702.405000px;}
.y65_c00143{bottom:703.245000px;}
.y66_c00143{bottom:705.405000px;}
.y67_c00143{bottom:705.825000px;}
.y64_c00143{bottom:706.470000px;}
.y61_c00143{bottom:722.745000px;}
.y63_c00143{bottom:722.970000px;}
.y62_c00143{bottom:723.825000px;}
.y60_c00143{bottom:724.905000px;}
.y5f_c00143{bottom:725.970000px;}
.y58_c00143{bottom:742.245000px;}
.y57_c00143{bottom:742.905000px;}
.y5a_c00143{bottom:743.745000px;}
.y5e_c00143{bottom:744.405000px;}
.y5c_c00143{bottom:744.630000px;}
.y5b_c00143{bottom:744.825000px;}
.y5d_c00143{bottom:745.470000px;}
.y59_c00143{bottom:745.905000px;}
.y56_c00143{bottom:760.905000px;}
.y54_c00143{bottom:763.245000px;}
.y55_c00143{bottom:764.325000px;}
.y53_c00143{bottom:765.405000px;}
.y51_c00143{bottom:782.745000px;}
.y50_c00143{bottom:783.825000px;}
.y52_c00143{bottom:784.470000px;}
.y4e_c00143{bottom:784.905000px;}
.y4f_c00143{bottom:785.970000px;}
.y4a_c00143{bottom:802.245000px;}
.y4c_c00143{bottom:802.470000px;}
.y4d_c00143{bottom:803.130000px;}
.y49_c00143{bottom:804.405000px;}
.y4b_c00143{bottom:804.630000px;}
.y48_c00143{bottom:820.470000px;}
.y46_c00143{bottom:821.745000px;}
.y47_c00143{bottom:822.825000px;}
.y45_c00143{bottom:840.420000px;}
.y41_c00143{bottom:841.245000px;}
.y44_c00143{bottom:841.680000px;}
.y43_c00143{bottom:841.920000px;}
.y40_c00143{bottom:842.970000px;}
.y3e_c00143{bottom:843.405000px;}
.y3f_c00143{bottom:844.470000px;}
.y42_c00143{bottom:844.905000px;}
.y39_c00143{bottom:859.905000px;}
.y3a_c00143{bottom:860.745000px;}
.y3c_c00143{bottom:862.245000px;}
.y3d_c00143{bottom:862.905000px;}
.y3b_c00143{bottom:864.405000px;}
.y36_c00143{bottom:880.245000px;}
.y38_c00143{bottom:880.905000px;}
.y34_c00143{bottom:882.405000px;}
.y37_c00143{bottom:883.470000px;}
.y35_c00143{bottom:883.905000px;}
.y30_c00143{bottom:898.905000px;}
.y32_c00143{bottom:902.325000px;}
.y31_c00143{bottom:902.970000px;}
.y33_c00143{bottom:903.405000px;}
.y2e_c00143{bottom:919.470000px;}
.y2d_c00143{bottom:920.355000px;}
.y2c_c00143{bottom:920.745000px;}
.y2f_c00143{bottom:921.630000px;}
.y2b_c00143{bottom:922.905000px;}
.y28_c00143{bottom:939.405000px;}
.y26_c00143{bottom:940.245000px;}
.y29_c00143{bottom:940.470000px;}
.y25_c00143{bottom:941.970000px;}
.y27_c00143{bottom:942.405000px;}
.y2a_c00143{bottom:943.470000px;}
.y23_c00143{bottom:958.905000px;}
.y22_c00143{bottom:959.745000px;}
.y24_c00143{bottom:959.970000px;}
.y21_c00143{bottom:961.905000px;}
.y1f_c00143{bottom:978.405000px;}
.y1b_c00143{bottom:979.245000px;}
.y1e_c00143{bottom:979.905000px;}
.y1a_c00143{bottom:980.550000px;}
.y1d_c00143{bottom:981.405000px;}
.y1c_c00143{bottom:982.470000px;}
.y20_c00143{bottom:982.905000px;}
.y16_c00143{bottom:998.745000px;}
.y19_c00143{bottom:998.970000px;}
.y15_c00143{bottom:1000.905000px;}
.y17_c00143{bottom:1001.970000px;}
.y18_c00143{bottom:1002.405000px;}
.y12_c00143{bottom:1018.245000px;}
.y11_c00143{bottom:1018.680000px;}
.y13_c00143{bottom:1018.920000px;}
.y14_c00143{bottom:1019.550000px;}
.y10_c00143{bottom:1019.745000px;}
.yd_c00143{bottom:1020.405000px;}
.yf_c00143{bottom:1021.470000px;}
.ye_c00143{bottom:1021.905000px;}
.yc_c00143{bottom:1036.905000px;}
.y8_c00143{bottom:1037.970000px;}
.y9_c00143{bottom:1039.245000px;}
.y6_c00143{bottom:1040.130000px;}
.yb_c00143{bottom:1040.325000px;}
.ya_c00143{bottom:1040.970000px;}
.y7_c00143{bottom:1042.470000px;}
.y3_c00143{bottom:1061.745000px;}
.y4_c00143{bottom:1063.470000px;}
.y5_c00143{bottom:1063.905000px;}
.y2_c00143{bottom:1099.905000px;}
.y1_c00143{bottom:1102.050000px;}
.h8_c00143{height:4.206533px;}
.h9_c00143{height:8.339268px;}
.h5_c00143{height:23.025234px;}
.h1_c00143{height:25.091602px;}
.h4_c00143{height:31.364502px;}
.h2_c00143{height:35.571035px;}
.h6_c00143{height:39.777568px;}
.h3_c00143{height:43.910303px;}
.h7_c00143{height:48.116836px;}
.h0_c00143{height:1335.000000px;}
.w0_c00143{width:880.500000px;}
.x0_c00143{left:0.000000px;}
.x2_c00143{left:148.920000px;}
.x2c_c00143{left:150.420000px;}
.xce_c00143{left:151.500000px;}
.x24_c00143{left:157.080000px;}
.x59_c00143{left:158.580000px;}
.xb8_c00143{left:160.920000px;}
.xc0_c00143{left:166.500000px;}
.xe6_c00143{left:167.580000px;}
.xd8_c00143{left:169.500000px;}
.x8_c00143{left:181.500000px;}
.x52_c00143{left:182.580000px;}
.xcf_c00143{left:197.580000px;}
.x99_c00143{left:201.000000px;}
.xeb_c00143{left:205.080000px;}
.xf6_c00143{left:206.145000px;}
.xc6_c00143{left:210.420000px;}
.xf9_c00143{left:211.500000px;}
.xef_c00143{left:214.920000px;}
.xe3_c00143{left:216.000000px;}
.xa4_c00143{left:219.420000px;}
.x85_c00143{left:220.500000px;}
.xb9_c00143{left:223.080000px;}
.xec_c00143{left:224.580000px;}
.xa9_c00143{left:226.080000px;}
.xaf_c00143{left:228.420000px;}
.x53_c00143{left:229.500000px;}
.x62_c00143{left:231.000000px;}
.x8b_c00143{left:232.920000px;}
.x12_c00143{left:235.500000px;}
.x37_c00143{left:237.000000px;}
.x2d_c00143{left:238.080000px;}
.x3f_c00143{left:239.580000px;}
.xaa_c00143{left:243.420000px;}
.x86_c00143{left:246.000000px;}
.x9a_c00143{left:248.580000px;}
.xd1_c00143{left:250.500000px;}
.xa5_c00143{left:255.420000px;}
.x6a_c00143{left:258.420000px;}
.x2e_c00143{left:259.500000px;}
.x40_c00143{left:261.420000px;}
.xab_c00143{left:267.000000px;}
.xc7_c00143{left:268.500000px;}
.x4b_c00143{left:270.000000px;}
.x25_c00143{left:271.500000px;}
.x9_c00143{left:273.000000px;}
.x9b_c00143{left:274.500000px;}
.xb5_c00143{left:276.000000px;}
.xe7_c00143{left:277.080000px;}
.xd0_c00143{left:279.000000px;}
.xd2_c00143{left:280.500000px;}
.x5a_c00143{left:283.500000px;}
.x91_c00143{left:284.580000px;}
.x7d_c00143{left:286.500000px;}
.x13_c00143{left:288.420000px;}
.x63_c00143{left:289.500000px;}
.xf2_c00143{left:291.000000px;}
.xe4_c00143{left:292.080000px;}
.x6b_c00143{left:294.420000px;}
.xd9_c00143{left:295.500000px;}
.x8c_c00143{left:298.275000px;}
.x92_c00143{left:302.580000px;}
.xac_c00143{left:304.920000px;}
.x54_c00143{left:306.000000px;}
.xf7_c00143{left:309.000000px;}
.x3_c00143{left:311.145000px;}
.x38_c00143{left:313.920000px;}
.xd3_c00143{left:318.000000px;}
.x6c_c00143{left:319.080000px;}
.x2f_c00143{left:321.420000px;}
.x41_c00143{left:322.920000px;}
.x14_c00143{left:324.420000px;}
.xb0_c00143{left:327.420000px;}
.x9f_c00143{left:328.500000px;}
.xfa_c00143{left:331.500000px;}
.xdd_c00143{left:333.000000px;}
.xf3_c00143{left:334.500000px;}
.xc1_c00143{left:336.420000px;}
.x55_c00143{left:340.500000px;}
.x5b_c00143{left:341.580000px;}
.x7e_c00143{left:343.500000px;}
.x4_c00143{left:345.000000px;}
.x26_c00143{left:346.920000px;}
.x15_c00143{left:349.080000px;}
.xe8_c00143{left:351.000000px;}
.xf4_c00143{left:352.500000px;}
.x6d_c00143{left:353.580000px;}
.x56_c00143{left:357.000000px;}
.xa6_c00143{left:358.500000px;}
.x8d_c00143{left:361.500000px;}
.x5_c00143{left:364.920000px;}
.x39_c00143{left:367.500000px;}
.xfb_c00143{left:369.000000px;}
.x6e_c00143{left:370.920000px;}
.x64_c00143{left:372.000000px;}
.xba_c00143{left:373.080000px;}
.x8e_c00143{left:375.000000px;}
.xb6_c00143{left:379.500000px;}
.x30_c00143{left:382.920000px;}
.x42_c00143{left:384.420000px;}
.xa_c00143{left:385.500000px;}
.x9c_c00143{left:386.580000px;}
.x93_c00143{left:388.500000px;}
.x16_c00143{left:389.580000px;}
.x6_c00143{left:391.080000px;}
.x5c_c00143{left:393.420000px;}
.x27_c00143{left:394.500000px;}
.x1_c00143{left:396.000000px;}
.xb1_c00143{left:397.920000px;}
.xbb_c00143{left:400.500000px;}
.xc8_c00143{left:404.580000px;}
.x57_c00143{left:407.580000px;}
.xde_c00143{left:411.000000px;}
.xad_c00143{left:414.420000px;}
.x7f_c00143{left:415.500000px;}
.x17_c00143{left:420.000000px;}
.x94_c00143{left:421.920000px;}
.x31_c00143{left:423.000000px;}
.x43_c00143{left:424.080000px;}
.xed_c00143{left:426.000000px;}
.xfc_c00143{left:427.080000px;}
.xa0_c00143{left:429.000000px;}
.x6f_c00143{left:435.000000px;}
.xb2_c00143{left:436.500000px;}
.x80_c00143{left:438.000000px;}
.xb_c00143{left:444.000000px;}
.xc2_c00143{left:447.000000px;}
.x44_c00143{left:448.500000px;}
.x81_c00143{left:451.920000px;}
.xf0_c00143{left:454.500000px;}
.x18_c00143{left:455.580000px;}
.x5d_c00143{left:457.275000px;}
.x32_c00143{left:459.000000px;}
.xbc_c00143{left:460.080000px;}
.x7_c00143{left:462.000000px;}
.x4c_c00143{left:465.000000px;}
.x28_c00143{left:466.500000px;}
.xa7_c00143{left:468.000000px;}
.x45_c00143{left:471.000000px;}
.xd5_c00143{left:472.080000px;}
.x65_c00143{left:473.580000px;}
.xc9_c00143{left:475.500000px;}
.x95_c00143{left:478.500000px;}
.x33_c00143{left:480.000000px;}
.x4d_c00143{left:481.500000px;}
.xdf_c00143{left:483.000000px;}
.x29_c00143{left:484.080000px;}
.xbd_c00143{left:485.580000px;}
.x9d_c00143{left:487.500000px;}
.x96_c00143{left:490.500000px;}
.x5e_c00143{left:493.500000px;}
.x4e_c00143{left:496.500000px;}
.x3a_c00143{left:501.000000px;}
.x46_c00143{left:504.000000px;}
.x19_c00143{left:505.920000px;}
.x5f_c00143{left:507.000000px;}
.x4f_c00143{left:510.000000px;}
.xc3_c00143{left:513.000000px;}
.x70_c00143{left:514.920000px;}
.xc_c00143{left:516.000000px;}
.xd6_c00143{left:519.000000px;}
.xa1_c00143{left:520.920000px;}
.x60_c00143{left:522.000000px;}
.x2a_c00143{left:526.920000px;}
.xf5_c00143{left:529.080000px;}
.x7b_c00143{left:530.580000px;}
.xb4_c00143{left:532.080000px;}
.x61_c00143{left:534.000000px;}
.xd_c00143{left:535.080000px;}
.x66_c00143{left:537.420000px;}
.xca_c00143{left:539.145000px;}
.x34_c00143{left:541.500000px;}
.xe9_c00143{left:543.000000px;}
.x47_c00143{left:544.500000px;}
.xa2_c00143{left:547.500000px;}
.x8f_c00143{left:548.580000px;}
.xee_c00143{left:550.500000px;}
.x2b_c00143{left:551.580000px;}
.xc4_c00143{left:553.080000px;}
.x3b_c00143{left:555.420000px;}
.x87_c00143{left:559.920000px;}
.xe0_c00143{left:561.000000px;}
.x50_c00143{left:564.000000px;}
.x67_c00143{left:565.500000px;}
.xda_c00143{left:568.080000px;}
.x1a_c00143{left:570.000000px;}
.xb7_c00143{left:571.275000px;}
.x9e_c00143{left:573.000000px;}
.xea_c00143{left:575.580000px;}
.x71_c00143{left:577.500000px;}
.xe_c00143{left:579.000000px;}
.x1b_c00143{left:580.500000px;}
.xa8_c00143{left:581.580000px;}
.xd7_c00143{left:583.080000px;}
.x88_c00143{left:584.580000px;}
.x82_c00143{left:586.080000px;}
.x72_c00143{left:588.000000px;}
.x35_c00143{left:589.080000px;}
.x1c_c00143{left:592.080000px;}
.x48_c00143{left:594.000000px;}
.x97_c00143{left:598.080000px;}
.xdb_c00143{left:599.355000px;}
.x73_c00143{left:601.080000px;}
.xf_c00143{left:605.580000px;}
.x1d_c00143{left:607.500000px;}
.xf1_c00143{left:609.000000px;}
.x74_c00143{left:615.000000px;}
.x3c_c00143{left:616.920000px;}
.xcb_c00143{left:618.000000px;}
.xe1_c00143{left:619.080000px;}
.x1e_c00143{left:620.145000px;}
.x51_c00143{left:622.500000px;}
.x7c_c00143{left:625.500000px;}
.x75_c00143{left:628.500000px;}
.xe5_c00143{left:629.580000px;}
.xf8_c00143{left:633.420000px;}
.x1f_c00143{left:634.500000px;}
.x49_c00143{left:638.580000px;}
.xcc_c00143{left:640.080000px;}
.x76_c00143{left:643.500000px;}
.xbe_c00143{left:645.000000px;}
.x10_c00143{left:648.000000px;}
.x98_c00143{left:649.500000px;}
.xc5_c00143{left:653.580000px;}
.x68_c00143{left:655.500000px;}
.xdc_c00143{left:661.080000px;}
.x89_c00143{left:662.580000px;}
.x20_c00143{left:664.500000px;}
.xbf_c00143{left:665.580000px;}
.xe2_c00143{left:667.500000px;}
.xb3_c00143{left:669.420000px;}
.xd4_c00143{left:670.500000px;}
.x4a_c00143{left:672.420000px;}
.x77_c00143{left:673.500000px;}
.xae_c00143{left:675.000000px;}
.x83_c00143{left:682.500000px;}
.x3d_c00143{left:683.580000px;}
.x90_c00143{left:685.080000px;}
.xa3_c00143{left:687.000000px;}
.x11_c00143{left:688.500000px;}
.x36_c00143{left:690.000000px;}
.x21_c00143{left:691.500000px;}
.x78_c00143{left:693.000000px;}
.x69_c00143{left:697.500000px;}
.x8a_c00143{left:703.500000px;}
.x3e_c00143{left:706.920000px;}
.x22_c00143{left:708.000000px;}
.x79_c00143{left:709.500000px;}
.xcd_c00143{left:712.500000px;}
.x84_c00143{left:715.500000px;}
.x23_c00143{left:720.420000px;}
.x58_c00143{left:721.500000px;}
.x7a_c00143{left:724.500000px;}
@media print{
.v1_c00143{vertical-align:-16.000000pt;}
.v0_c00143{vertical-align:0.000000pt;}
.ls0_c00143{letter-spacing:0.000000pt;}
.ws0_c00143{word-spacing:-13.237333pt;}
.ws1_c00143{word-spacing:-4.589306pt;}
.ws2_c00143{word-spacing:-4.588102pt;}
.ws3_c00143{word-spacing:0.000000pt;}
._0_c00143{width:5.510134pt;}
.fs7_c00143{font-size:3.040000pt;}
.fs8_c00143{font-size:6.026667pt;}
.fs4_c00143{font-size:16.640000pt;}
.fs0_c00143{font-size:18.133333pt;}
.fs3_c00143{font-size:22.666667pt;}
.fs1_c00143{font-size:25.706667pt;}
.fs5_c00143{font-size:28.746667pt;}
.fs2_c00143{font-size:31.733333pt;}
.fs6_c00143{font-size:34.773333pt;}
.y0_c00143{bottom:0.000000pt;}
.ycd_c00143{bottom:225.106667pt;}
.ycb_c00143{bottom:225.893333pt;}
.yce_c00143{bottom:226.066667pt;}
.yca_c00143{bottom:227.026667pt;}
.ycc_c00143{bottom:227.973333pt;}
.yc9_c00143{bottom:241.493333pt;}
.yc7_c00143{bottom:242.440000pt;}
.yc6_c00143{bottom:243.226667pt;}
.yc8_c00143{bottom:244.360000pt;}
.yc1_c00143{bottom:259.773333pt;}
.yc0_c00143{bottom:260.733333pt;}
.yc5_c00143{bottom:261.106667pt;}
.yc3_c00143{bottom:261.693333pt;}
.yc2_c00143{bottom:261.893333pt;}
.yc4_c00143{bottom:263.026667pt;}
.ybe_c00143{bottom:278.440000pt;}
.yba_c00143{bottom:279.026667pt;}
.ybc_c00143{bottom:279.226667pt;}
.ybf_c00143{bottom:279.400000pt;}
.ybb_c00143{bottom:279.973333pt;}
.ybd_c00143{bottom:280.360000pt;}
.yb3_c00143{bottom:294.440000pt;}
.yb9_c00143{bottom:294.640000pt;}
.yb6_c00143{bottom:295.773333pt;}
.yb4_c00143{bottom:296.360000pt;}
.yb8_c00143{bottom:296.560000pt;}
.yb7_c00143{bottom:297.306667pt;}
.yb5_c00143{bottom:297.693333pt;}
.yb0_c00143{bottom:313.106667pt;}
.yad_c00143{bottom:313.693333pt;}
.yb1_c00143{bottom:313.893333pt;}
.yb2_c00143{bottom:314.640000pt;}
.yae_c00143{bottom:315.026667pt;}
.yaf_c00143{bottom:316.373333pt;}
.yaa_c00143{bottom:330.440000pt;}
.yac_c00143{bottom:331.400000pt;}
.ya9_c00143{bottom:332.360000pt;}
.yab_c00143{bottom:333.306667pt;}
.ya5_c00143{bottom:347.773333pt;}
.ya8_c00143{bottom:348.733333pt;}
.ya3_c00143{bottom:349.693333pt;}
.ya6_c00143{bottom:349.893333pt;}
.ya7_c00143{bottom:350.640000pt;}
.ya4_c00143{bottom:351.026667pt;}
.ya1_c00143{bottom:365.106667pt;}
.y9e_c00143{bottom:366.066667pt;}
.y9c_c00143{bottom:366.640000pt;}
.y9d_c00143{bottom:367.026667pt;}
.ya0_c00143{bottom:367.226667pt;}
.ya2_c00143{bottom:367.973333pt;}
.y9f_c00143{bottom:368.360000pt;}
.y97_c00143{bottom:382.440000pt;}
.y99_c00143{bottom:383.773333pt;}
.y9a_c00143{bottom:384.360000pt;}
.y9b_c00143{bottom:385.306667pt;}
.y98_c00143{bottom:385.693333pt;}
.y92_c00143{bottom:399.026667pt;}
.y95_c00143{bottom:399.773333pt;}
.y94_c00143{bottom:401.106667pt;}
.y96_c00143{bottom:401.693333pt;}
.y90_c00143{bottom:403.026667pt;}
.y93_c00143{bottom:403.973333pt;}
.y91_c00143{bottom:404.373333pt;}
.y8f_c00143{bottom:418.440000pt;}
.y8c_c00143{bottom:420.360000pt;}
.y8d_c00143{bottom:420.560000pt;}
.y8e_c00143{bottom:421.706667pt;}
.y89_c00143{bottom:435.773333pt;}
.y8b_c00143{bottom:436.733333pt;}
.y8a_c00143{bottom:439.040000pt;}
.y88_c00143{bottom:453.106667pt;}
.y87_c00143{bottom:455.026667pt;}
.y82_c00143{bottom:470.440000pt;}
.y84_c00143{bottom:472.360000pt;}
.y85_c00143{bottom:472.560000pt;}
.y86_c00143{bottom:473.306667pt;}
.y83_c00143{bottom:473.706667pt;}
.y81_c00143{bottom:490.266667pt;}
.y7f_c00143{bottom:491.026667pt;}
.y80_c00143{bottom:491.973333pt;}
.y7c_c00143{bottom:506.640000pt;}
.y7b_c00143{bottom:507.400000pt;}
.y7d_c00143{bottom:507.600000pt;}
.y7e_c00143{bottom:509.306667pt;}
.y79_c00143{bottom:526.440000pt;}
.y7a_c00143{bottom:529.306667pt;}
.y77_c00143{bottom:554.640000pt;}
.y78_c00143{bottom:555.026667pt;}
.y75_c00143{bottom:555.773333pt;}
.y76_c00143{bottom:556.733333pt;}
.y74_c00143{bottom:557.693333pt;}
.y72_c00143{bottom:573.106667pt;}
.y73_c00143{bottom:574.066667pt;}
.y71_c00143{bottom:575.026667pt;}
.y70_c00143{bottom:590.440000pt;}
.y6f_c00143{bottom:592.360000pt;}
.y6d_c00143{bottom:607.773333pt;}
.y6e_c00143{bottom:608.160000pt;}
.y6c_c00143{bottom:609.106667pt;}
.y69_c00143{bottom:609.693333pt;}
.y6b_c00143{bottom:610.640000pt;}
.y6a_c00143{bottom:611.026667pt;}
.y68_c00143{bottom:624.360000pt;}
.y65_c00143{bottom:625.106667pt;}
.y66_c00143{bottom:627.026667pt;}
.y67_c00143{bottom:627.400000pt;}
.y64_c00143{bottom:627.973333pt;}
.y61_c00143{bottom:642.440000pt;}
.y63_c00143{bottom:642.640000pt;}
.y62_c00143{bottom:643.400000pt;}
.y60_c00143{bottom:644.360000pt;}
.y5f_c00143{bottom:645.306667pt;}
.y58_c00143{bottom:659.773333pt;}
.y57_c00143{bottom:660.360000pt;}
.y5a_c00143{bottom:661.106667pt;}
.y5e_c00143{bottom:661.693333pt;}
.y5c_c00143{bottom:661.893333pt;}
.y5b_c00143{bottom:662.066667pt;}
.y5d_c00143{bottom:662.640000pt;}
.y59_c00143{bottom:663.026667pt;}
.y56_c00143{bottom:676.360000pt;}
.y54_c00143{bottom:678.440000pt;}
.y55_c00143{bottom:679.400000pt;}
.y53_c00143{bottom:680.360000pt;}
.y51_c00143{bottom:695.773333pt;}
.y50_c00143{bottom:696.733333pt;}
.y52_c00143{bottom:697.306667pt;}
.y4e_c00143{bottom:697.693333pt;}
.y4f_c00143{bottom:698.640000pt;}
.y4a_c00143{bottom:713.106667pt;}
.y4c_c00143{bottom:713.306667pt;}
.y4d_c00143{bottom:713.893333pt;}
.y49_c00143{bottom:715.026667pt;}
.y4b_c00143{bottom:715.226667pt;}
.y48_c00143{bottom:729.306667pt;}
.y46_c00143{bottom:730.440000pt;}
.y47_c00143{bottom:731.400000pt;}
.y45_c00143{bottom:747.040000pt;}
.y41_c00143{bottom:747.773333pt;}
.y44_c00143{bottom:748.160000pt;}
.y43_c00143{bottom:748.373333pt;}
.y40_c00143{bottom:749.306667pt;}
.y3e_c00143{bottom:749.693333pt;}
.y3f_c00143{bottom:750.640000pt;}
.y42_c00143{bottom:751.026667pt;}
.y39_c00143{bottom:764.360000pt;}
.y3a_c00143{bottom:765.106667pt;}
.y3c_c00143{bottom:766.440000pt;}
.y3d_c00143{bottom:767.026667pt;}
.y3b_c00143{bottom:768.360000pt;}
.y36_c00143{bottom:782.440000pt;}
.y38_c00143{bottom:783.026667pt;}
.y34_c00143{bottom:784.360000pt;}
.y37_c00143{bottom:785.306667pt;}
.y35_c00143{bottom:785.693333pt;}
.y30_c00143{bottom:799.026667pt;}
.y32_c00143{bottom:802.066667pt;}
.y31_c00143{bottom:802.640000pt;}
.y33_c00143{bottom:803.026667pt;}
.y2e_c00143{bottom:817.306667pt;}
.y2d_c00143{bottom:818.093333pt;}
.y2c_c00143{bottom:818.440000pt;}
.y2f_c00143{bottom:819.226667pt;}
.y2b_c00143{bottom:820.360000pt;}
.y28_c00143{bottom:835.026667pt;}
.y26_c00143{bottom:835.773333pt;}
.y29_c00143{bottom:835.973333pt;}
.y25_c00143{bottom:837.306667pt;}
.y27_c00143{bottom:837.693333pt;}
.y2a_c00143{bottom:838.640000pt;}
.y23_c00143{bottom:852.360000pt;}
.y22_c00143{bottom:853.106667pt;}
.y24_c00143{bottom:853.306667pt;}
.y21_c00143{bottom:855.026667pt;}
.y1f_c00143{bottom:869.693333pt;}
.y1b_c00143{bottom:870.440000pt;}
.y1e_c00143{bottom:871.026667pt;}
.y1a_c00143{bottom:871.600000pt;}
.y1d_c00143{bottom:872.360000pt;}
.y1c_c00143{bottom:873.306667pt;}
.y20_c00143{bottom:873.693333pt;}
.y16_c00143{bottom:887.773333pt;}
.y19_c00143{bottom:887.973333pt;}
.y15_c00143{bottom:889.693333pt;}
.y17_c00143{bottom:890.640000pt;}
.y18_c00143{bottom:891.026667pt;}
.y12_c00143{bottom:905.106667pt;}
.y11_c00143{bottom:905.493333pt;}
.y13_c00143{bottom:905.706667pt;}
.y14_c00143{bottom:906.266667pt;}
.y10_c00143{bottom:906.440000pt;}
.yd_c00143{bottom:907.026667pt;}
.yf_c00143{bottom:907.973333pt;}
.ye_c00143{bottom:908.360000pt;}
.yc_c00143{bottom:921.693333pt;}
.y8_c00143{bottom:922.640000pt;}
.y9_c00143{bottom:923.773333pt;}
.y6_c00143{bottom:924.560000pt;}
.yb_c00143{bottom:924.733333pt;}
.ya_c00143{bottom:925.306667pt;}
.y7_c00143{bottom:926.640000pt;}
.y3_c00143{bottom:943.773333pt;}
.y4_c00143{bottom:945.306667pt;}
.y5_c00143{bottom:945.693333pt;}
.y2_c00143{bottom:977.693333pt;}
.y1_c00143{bottom:979.600000pt;}
.h8_c00143{height:3.739141pt;}
.h9_c00143{height:7.412682pt;}
.h5_c00143{height:20.466875pt;}
.h1_c00143{height:22.303646pt;}
.h4_c00143{height:27.879557pt;}
.h2_c00143{height:31.618698pt;}
.h6_c00143{height:35.357839pt;}
.h3_c00143{height:39.031380pt;}
.h7_c00143{height:42.770521pt;}
.h0_c00143{height:1186.666667pt;}
.w0_c00143{width:782.666667pt;}
.x0_c00143{left:0.000000pt;}
.x2_c00143{left:132.373333pt;}
.x2c_c00143{left:133.706667pt;}
.xce_c00143{left:134.666667pt;}
.x24_c00143{left:139.626667pt;}
.x59_c00143{left:140.960000pt;}
.xb8_c00143{left:143.040000pt;}
.xc0_c00143{left:148.000000pt;}
.xe6_c00143{left:148.960000pt;}
.xd8_c00143{left:150.666667pt;}
.x8_c00143{left:161.333333pt;}
.x52_c00143{left:162.293333pt;}
.xcf_c00143{left:175.626667pt;}
.x99_c00143{left:178.666667pt;}
.xeb_c00143{left:182.293333pt;}
.xf6_c00143{left:183.240000pt;}
.xc6_c00143{left:187.040000pt;}
.xf9_c00143{left:188.000000pt;}
.xef_c00143{left:191.040000pt;}
.xe3_c00143{left:192.000000pt;}
.xa4_c00143{left:195.040000pt;}
.x85_c00143{left:196.000000pt;}
.xb9_c00143{left:198.293333pt;}
.xec_c00143{left:199.626667pt;}
.xa9_c00143{left:200.960000pt;}
.xaf_c00143{left:203.040000pt;}
.x53_c00143{left:204.000000pt;}
.x62_c00143{left:205.333333pt;}
.x8b_c00143{left:207.040000pt;}
.x12_c00143{left:209.333333pt;}
.x37_c00143{left:210.666667pt;}
.x2d_c00143{left:211.626667pt;}
.x3f_c00143{left:212.960000pt;}
.xaa_c00143{left:216.373333pt;}
.x86_c00143{left:218.666667pt;}
.x9a_c00143{left:220.960000pt;}
.xd1_c00143{left:222.666667pt;}
.xa5_c00143{left:227.040000pt;}
.x6a_c00143{left:229.706667pt;}
.x2e_c00143{left:230.666667pt;}
.x40_c00143{left:232.373333pt;}
.xab_c00143{left:237.333333pt;}
.xc7_c00143{left:238.666667pt;}
.x4b_c00143{left:240.000000pt;}
.x25_c00143{left:241.333333pt;}
.x9_c00143{left:242.666667pt;}
.x9b_c00143{left:244.000000pt;}
.xb5_c00143{left:245.333333pt;}
.xe7_c00143{left:246.293333pt;}
.xd0_c00143{left:248.000000pt;}
.xd2_c00143{left:249.333333pt;}
.x5a_c00143{left:252.000000pt;}
.x91_c00143{left:252.960000pt;}
.x7d_c00143{left:254.666667pt;}
.x13_c00143{left:256.373333pt;}
.x63_c00143{left:257.333333pt;}
.xf2_c00143{left:258.666667pt;}
.xe4_c00143{left:259.626667pt;}
.x6b_c00143{left:261.706667pt;}
.xd9_c00143{left:262.666667pt;}
.x8c_c00143{left:265.133333pt;}
.x92_c00143{left:268.960000pt;}
.xac_c00143{left:271.040000pt;}
.x54_c00143{left:272.000000pt;}
.xf7_c00143{left:274.666667pt;}
.x3_c00143{left:276.573333pt;}
.x38_c00143{left:279.040000pt;}
.xd3_c00143{left:282.666667pt;}
.x6c_c00143{left:283.626667pt;}
.x2f_c00143{left:285.706667pt;}
.x41_c00143{left:287.040000pt;}
.x14_c00143{left:288.373333pt;}
.xb0_c00143{left:291.040000pt;}
.x9f_c00143{left:292.000000pt;}
.xfa_c00143{left:294.666667pt;}
.xdd_c00143{left:296.000000pt;}
.xf3_c00143{left:297.333333pt;}
.xc1_c00143{left:299.040000pt;}
.x55_c00143{left:302.666667pt;}
.x5b_c00143{left:303.626667pt;}
.x7e_c00143{left:305.333333pt;}
.x4_c00143{left:306.666667pt;}
.x26_c00143{left:308.373333pt;}
.x15_c00143{left:310.293333pt;}
.xe8_c00143{left:312.000000pt;}
.xf4_c00143{left:313.333333pt;}
.x6d_c00143{left:314.293333pt;}
.x56_c00143{left:317.333333pt;}
.xa6_c00143{left:318.666667pt;}
.x8d_c00143{left:321.333333pt;}
.x5_c00143{left:324.373333pt;}
.x39_c00143{left:326.666667pt;}
.xfb_c00143{left:328.000000pt;}
.x6e_c00143{left:329.706667pt;}
.x64_c00143{left:330.666667pt;}
.xba_c00143{left:331.626667pt;}
.x8e_c00143{left:333.333333pt;}
.xb6_c00143{left:337.333333pt;}
.x30_c00143{left:340.373333pt;}
.x42_c00143{left:341.706667pt;}
.xa_c00143{left:342.666667pt;}
.x9c_c00143{left:343.626667pt;}
.x93_c00143{left:345.333333pt;}
.x16_c00143{left:346.293333pt;}
.x6_c00143{left:347.626667pt;}
.x5c_c00143{left:349.706667pt;}
.x27_c00143{left:350.666667pt;}
.x1_c00143{left:352.000000pt;}
.xb1_c00143{left:353.706667pt;}
.xbb_c00143{left:356.000000pt;}
.xc8_c00143{left:359.626667pt;}
.x57_c00143{left:362.293333pt;}
.xde_c00143{left:365.333333pt;}
.xad_c00143{left:368.373333pt;}
.x7f_c00143{left:369.333333pt;}
.x17_c00143{left:373.333333pt;}
.x94_c00143{left:375.040000pt;}
.x31_c00143{left:376.000000pt;}
.x43_c00143{left:376.960000pt;}
.xed_c00143{left:378.666667pt;}
.xfc_c00143{left:379.626667pt;}
.xa0_c00143{left:381.333333pt;}
.x6f_c00143{left:386.666667pt;}
.xb2_c00143{left:388.000000pt;}
.x80_c00143{left:389.333333pt;}
.xb_c00143{left:394.666667pt;}
.xc2_c00143{left:397.333333pt;}
.x44_c00143{left:398.666667pt;}
.x81_c00143{left:401.706667pt;}
.xf0_c00143{left:404.000000pt;}
.x18_c00143{left:404.960000pt;}
.x5d_c00143{left:406.466667pt;}
.x32_c00143{left:408.000000pt;}
.xbc_c00143{left:408.960000pt;}
.x7_c00143{left:410.666667pt;}
.x4c_c00143{left:413.333333pt;}
.x28_c00143{left:414.666667pt;}
.xa7_c00143{left:416.000000pt;}
.x45_c00143{left:418.666667pt;}
.xd5_c00143{left:419.626667pt;}
.x65_c00143{left:420.960000pt;}
.xc9_c00143{left:422.666667pt;}
.x95_c00143{left:425.333333pt;}
.x33_c00143{left:426.666667pt;}
.x4d_c00143{left:428.000000pt;}
.xdf_c00143{left:429.333333pt;}
.x29_c00143{left:430.293333pt;}
.xbd_c00143{left:431.626667pt;}
.x9d_c00143{left:433.333333pt;}
.x96_c00143{left:436.000000pt;}
.x5e_c00143{left:438.666667pt;}
.x4e_c00143{left:441.333333pt;}
.x3a_c00143{left:445.333333pt;}
.x46_c00143{left:448.000000pt;}
.x19_c00143{left:449.706667pt;}
.x5f_c00143{left:450.666667pt;}
.x4f_c00143{left:453.333333pt;}
.xc3_c00143{left:456.000000pt;}
.x70_c00143{left:457.706667pt;}
.xc_c00143{left:458.666667pt;}
.xd6_c00143{left:461.333333pt;}
.xa1_c00143{left:463.040000pt;}
.x60_c00143{left:464.000000pt;}
.x2a_c00143{left:468.373333pt;}
.xf5_c00143{left:470.293333pt;}
.x7b_c00143{left:471.626667pt;}
.xb4_c00143{left:472.960000pt;}
.x61_c00143{left:474.666667pt;}
.xd_c00143{left:475.626667pt;}
.x66_c00143{left:477.706667pt;}
.xca_c00143{left:479.240000pt;}
.x34_c00143{left:481.333333pt;}
.xe9_c00143{left:482.666667pt;}
.x47_c00143{left:484.000000pt;}
.xa2_c00143{left:486.666667pt;}
.x8f_c00143{left:487.626667pt;}
.xee_c00143{left:489.333333pt;}
.x2b_c00143{left:490.293333pt;}
.xc4_c00143{left:491.626667pt;}
.x3b_c00143{left:493.706667pt;}
.x87_c00143{left:497.706667pt;}
.xe0_c00143{left:498.666667pt;}
.x50_c00143{left:501.333333pt;}
.x67_c00143{left:502.666667pt;}
.xda_c00143{left:504.960000pt;}
.x1a_c00143{left:506.666667pt;}
.xb7_c00143{left:507.800000pt;}
.x9e_c00143{left:509.333333pt;}
.xea_c00143{left:511.626667pt;}
.x71_c00143{left:513.333333pt;}
.xe_c00143{left:514.666667pt;}
.x1b_c00143{left:516.000000pt;}
.xa8_c00143{left:516.960000pt;}
.xd7_c00143{left:518.293333pt;}
.x88_c00143{left:519.626667pt;}
.x82_c00143{left:520.960000pt;}
.x72_c00143{left:522.666667pt;}
.x35_c00143{left:523.626667pt;}
.x1c_c00143{left:526.293333pt;}
.x48_c00143{left:528.000000pt;}
.x97_c00143{left:531.626667pt;}
.xdb_c00143{left:532.760000pt;}
.x73_c00143{left:534.293333pt;}
.xf_c00143{left:538.293333pt;}
.x1d_c00143{left:540.000000pt;}
.xf1_c00143{left:541.333333pt;}
.x74_c00143{left:546.666667pt;}
.x3c_c00143{left:548.373333pt;}
.xcb_c00143{left:549.333333pt;}
.xe1_c00143{left:550.293333pt;}
.x1e_c00143{left:551.240000pt;}
.x51_c00143{left:553.333333pt;}
.x7c_c00143{left:556.000000pt;}
.x75_c00143{left:558.666667pt;}
.xe5_c00143{left:559.626667pt;}
.xf8_c00143{left:563.040000pt;}
.x1f_c00143{left:564.000000pt;}
.x49_c00143{left:567.626667pt;}
.xcc_c00143{left:568.960000pt;}
.x76_c00143{left:572.000000pt;}
.xbe_c00143{left:573.333333pt;}
.x10_c00143{left:576.000000pt;}
.x98_c00143{left:577.333333pt;}
.xc5_c00143{left:580.960000pt;}
.x68_c00143{left:582.666667pt;}
.xdc_c00143{left:587.626667pt;}
.x89_c00143{left:588.960000pt;}
.x20_c00143{left:590.666667pt;}
.xbf_c00143{left:591.626667pt;}
.xe2_c00143{left:593.333333pt;}
.xb3_c00143{left:595.040000pt;}
.xd4_c00143{left:596.000000pt;}
.x4a_c00143{left:597.706667pt;}
.x77_c00143{left:598.666667pt;}
.xae_c00143{left:600.000000pt;}
.x83_c00143{left:606.666667pt;}
.x3d_c00143{left:607.626667pt;}
.x90_c00143{left:608.960000pt;}
.xa3_c00143{left:610.666667pt;}
.x11_c00143{left:612.000000pt;}
.x36_c00143{left:613.333333pt;}
.x21_c00143{left:614.666667pt;}
.x78_c00143{left:616.000000pt;}
.x69_c00143{left:620.000000pt;}
.x8a_c00143{left:625.333333pt;}
.x3e_c00143{left:628.373333pt;}
.x22_c00143{left:629.333333pt;}
.x79_c00143{left:630.666667pt;}
.xcd_c00143{left:633.333333pt;}
.x84_c00143{left:636.000000pt;}
.x23_c00143{left:640.373333pt;}
.x58_c00143{left:641.333333pt;}
.x7a_c00143{left:644.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_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_cbcbe47b399e6c6b8155a1e7.woff2')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m96_c00144{transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);}
.mb7_c00144{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.md9_c00144{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m52_c00144{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m30_c00144{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.mb3_c00144{transform:matrix(0.372913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372913,0.000000,0.000000,0.250000,0,0);}
.m9_c00144{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mbd_c00144{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.mc8_c00144{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.mb8_c00144{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.ma0_c00144{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m3_c00144{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m14_c00144{transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);}
.mdf_c00144{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m2b_c00144{transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);}
.m97_c00144{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m1f_c00144{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m9e_c00144{transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);}
.m88_c00144{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.mcd_c00144{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mb0_c00144{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.ma5_c00144{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.m63_c00144{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m7a_c00144{transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);}
.m76_c00144{transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);}
.mb4_c00144{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m81_c00144{transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);}
.md0_c00144{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m61_c00144{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m7c_c00144{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.me2_c00144{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m7_c00144{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m6_c00144{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m53_c00144{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m16_c00144{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.md1_c00144{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m90_c00144{transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);}
.md3_c00144{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m42_c00144{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m1d_c00144{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m6a_c00144{transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);}
.mb9_c00144{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mc7_c00144{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m28_c00144{transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);}
.m70_c00144{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m31_c00144{transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);}
.m9b_c00144{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m12_c00144{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m8f_c00144{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.m68_c00144{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m9c_c00144{transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);}
.m6f_c00144{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.mc3_c00144{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m40_c00144{transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);}
.m15_c00144{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.maf_c00144{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m34_c00144{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m24_c00144{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.md4_c00144{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m1_c00144{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m60_c00144{transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);}
.m8a_c00144{transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);}
.m18_c00144{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mcb_c00144{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.mcf_c00144{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m7f_c00144{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mb2_c00144{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m55_c00144{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.me4_c00144{transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);}
.m57_c00144{transform:matrix(0.462430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462430,0.000000,0.000000,0.250000,0,0);}
.md5_c00144{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.mc9_c00144{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m65_c00144{transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);}
.m3c_c00144{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.m26_c00144{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m7d_c00144{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m58_c00144{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m95_c00144{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m9a_c00144{transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);}
.md6_c00144{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.me6_c00144{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.ma3_c00144{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m37_c00144{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m98_c00144{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m8d_c00144{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m71_c00144{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m25_c00144{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m73_c00144{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m2a_c00144{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m2c_c00144{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);}
.m6b_c00144{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m36_c00144{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.ma9_c00144{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m32_c00144{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m7e_c00144{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m8_c00144{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m9d_c00144{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);}
.m2d_c00144{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m45_c00144{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m1a_c00144{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m91_c00144{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.m94_c00144{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.mc0_c00144{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m54_c00144{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.mda_c00144{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m2f_c00144{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);}
.mb1_c00144{transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);}
.m13_c00144{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m4_c00144{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m43_c00144{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);}
.m72_c00144{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.mc4_c00144{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m9f_c00144{transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);}
.m5a_c00144{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.me1_c00144{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mba_c00144{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mc1_c00144{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.me_c00144{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.ma2_c00144{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.m10_c00144{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m1e_c00144{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m74_c00144{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.mc5_c00144{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m29_c00144{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m1c_c00144{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m80_c00144{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.mdb_c00144{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m4e_c00144{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m78_c00144{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.md_c00144{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.me0_c00144{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m4f_c00144{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m3e_c00144{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m11_c00144{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mb_c00144{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mdc_c00144{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.mf_c00144{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mde_c00144{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m62_c00144{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m48_c00144{transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);}
.m4b_c00144{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m17_c00144{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m21_c00144{transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);}
.mdd_c00144{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m79_c00144{transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);}
.m93_c00144{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.mc_c00144{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m67_c00144{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.md2_c00144{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mab_c00144{transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);}
.m27_c00144{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.ma1_c00144{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.me8_c00144{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.m85_c00144{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.mb6_c00144{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mbb_c00144{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.mad_c00144{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.ma8_c00144{transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);}
.ma4_c00144{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.mc2_c00144{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m22_c00144{transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);}
.m89_c00144{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);}
.m35_c00144{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m5e_c00144{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m3d_c00144{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m5b_c00144{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.me7_c00144{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.me3_c00144{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m66_c00144{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.md7_c00144{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.ma_c00144{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m44_c00144{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.me5_c00144{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m0_c00144{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m59_c00144{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m39_c00144{transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);}
.m84_c00144{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m3f_c00144{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.m3b_c00144{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m51_c00144{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m47_c00144{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_c00144{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m6d_c00144{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m33_c00144{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m5f_c00144{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m41_c00144{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m75_c00144{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m87_c00144{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.mcc_c00144{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m4a_c00144{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m2e_c00144{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.m7b_c00144{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m64_c00144{transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);}
.m38_c00144{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);}
.m86_c00144{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m77_c00144{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m5d_c00144{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m46_c00144{transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);}
.mbe_c00144{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m92_c00144{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m8b_c00144{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.mbc_c00144{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m3a_c00144{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.m4d_c00144{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.maa_c00144{transform:matrix(0.678676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.678676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.678676,0.000000,0.000000,0.250000,0,0);}
.m83_c00144{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m6c_c00144{transform:matrix(0.683088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683088,0.000000,0.000000,0.250000,0,0);}
.m8c_c00144{transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);}
.m50_c00144{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m82_c00144{transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);}
.m56_c00144{transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);}
.m99_c00144{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.mbf_c00144{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.mac_c00144{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m4c_c00144{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);}
.m6e_c00144{transform:matrix(0.703526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.703526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.703526,0.000000,0.000000,0.250000,0,0);}
.mae_c00144{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.ma6_c00144{transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);}
.mca_c00144{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.mce_c00144{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m5_c00144{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.md8_c00144{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m2_c00144{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mc6_c00144{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m1b_c00144{transform:matrix(0.837340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837340,0.000000,0.000000,0.250000,0,0);}
.m20_c00144{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m19_c00144{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.ma7_c00144{transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);}
.m69_c00144{transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);}
.m49_c00144{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m5c_c00144{transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);}
.m8e_c00144{transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);}
.mb5_c00144{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00144{vertical-align:0.000000px;}
.v1_c00144{vertical-align:6.000000px;}
.ls0_c00144{letter-spacing:0.000000px;}
.sc__c00144{text-shadow:none;}
.sc0_c00144{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00144{-webkit-text-stroke:0px transparent;}
.sc0_c00144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00144{word-spacing:-16.889280px;}
.ws4_c00144{word-spacing:-7.305001px;}
.ws2_c00144{word-spacing:-4.925131px;}
.ws3_c00144{word-spacing:-3.015319px;}
.ws5_c00144{word-spacing:-2.554600px;}
.ws8_c00144{word-spacing:0.000000px;}
.ws6_c00144{word-spacing:0.308050px;}
.ws1_c00144{word-spacing:0.607426px;}
.ws0_c00144{word-spacing:4.138561px;}
._0_c00144{width:5.225879px;}
.fc0_c00144{color:transparent;}
.fs7_c00144{font-size:3.420000px;}
.fs6_c00144{font-size:13.620000px;}
.fs2_c00144{font-size:18.720000px;}
.fs0_c00144{font-size:20.400000px;}
.fs4_c00144{font-size:25.500000px;}
.fs1_c00144{font-size:28.920000px;}
.fs5_c00144{font-size:32.340000px;}
.fs3_c00144{font-size:35.700000px;}
.y0_c00144{bottom:0.000000px;}
.y110_c00144{bottom:253.245000px;}
.y10e_c00144{bottom:253.905000px;}
.y111_c00144{bottom:254.325000px;}
.y10f_c00144{bottom:255.405000px;}
.y10b_c00144{bottom:272.745000px;}
.y10c_c00144{bottom:274.470000px;}
.y10a_c00144{bottom:274.905000px;}
.y10d_c00144{bottom:276.405000px;}
.y108_c00144{bottom:289.905000px;}
.y105_c00144{bottom:291.405000px;}
.y106_c00144{bottom:291.825000px;}
.y103_c00144{bottom:292.245000px;}
.y104_c00144{bottom:293.130000px;}
.y109_c00144{bottom:293.325000px;}
.y102_c00144{bottom:294.405000px;}
.y107_c00144{bottom:295.470000px;}
.y100_c00144{bottom:310.905000px;}
.yfc_c00144{bottom:311.745000px;}
.yfe_c00144{bottom:312.405000px;}
.yfb_c00144{bottom:312.825000px;}
.yfd_c00144{bottom:313.905000px;}
.yff_c00144{bottom:314.130000px;}
.y101_c00144{bottom:314.325000px;}
.yfa_c00144{bottom:330.405000px;}
.yf4_c00144{bottom:331.245000px;}
.yf6_c00144{bottom:332.325000px;}
.yf8_c00144{bottom:332.745000px;}
.yf7_c00144{bottom:333.405000px;}
.yf5_c00144{bottom:333.630000px;}
.yf9_c00144{bottom:334.470000px;}
.yf3_c00144{bottom:349.905000px;}
.yef_c00144{bottom:350.745000px;}
.yed_c00144{bottom:350.970000px;}
.yf2_c00144{bottom:352.245000px;}
.yec_c00144{bottom:352.905000px;}
.yf0_c00144{bottom:353.130000px;}
.yee_c00144{bottom:353.970000px;}
.yf1_c00144{bottom:354.405000px;}
.ye8_c00144{bottom:371.745000px;}
.yeb_c00144{bottom:373.470000px;}
.yea_c00144{bottom:373.905000px;}
.ye9_c00144{bottom:373.920000px;}
.ye6_c00144{bottom:401.325000px;}
.ye7_c00144{bottom:403.470000px;}
.ye0_c00144{bottom:415.470000px;}
.ye1_c00144{bottom:415.905000px;}
.ye2_c00144{bottom:416.550000px;}
.ye3_c00144{bottom:417.405000px;}
.ye5_c00144{bottom:417.630000px;}
.ye4_c00144{bottom:418.470000px;}
.ydf_c00144{bottom:430.470000px;}
.yde_c00144{bottom:431.325000px;}
.yda_c00144{bottom:431.550000px;}
.ydb_c00144{bottom:432.405000px;}
.ydd_c00144{bottom:432.630000px;}
.ydc_c00144{bottom:433.470000px;}
.yd9_c00144{bottom:446.325000px;}
.yd7_c00144{bottom:448.470000px;}
.yd8_c00144{bottom:449.550000px;}
.yd3_c00144{bottom:460.905000px;}
.yd6_c00144{bottom:461.550000px;}
.yd4_c00144{bottom:461.970000px;}
.yd2_c00144{bottom:462.195000px;}
.yd5_c00144{bottom:462.630000px;}
.yd1_c00144{bottom:463.050000px;}
.ycf_c00144{bottom:475.905000px;}
.yd0_c00144{bottom:476.130000px;}
.yce_c00144{bottom:476.970000px;}
.yc8_c00144{bottom:489.825000px;}
.ycd_c00144{bottom:490.470000px;}
.ycb_c00144{bottom:490.905000px;}
.yc9_c00144{bottom:491.130000px;}
.yca_c00144{bottom:491.970000px;}
.ycc_c00144{bottom:493.470000px;}
.yc1_c00144{bottom:503.970000px;}
.yc5_c00144{bottom:504.825000px;}
.yc2_c00144{bottom:505.905000px;}
.yc6_c00144{bottom:506.130000px;}
.yc3_c00144{bottom:506.970000px;}
.yc7_c00144{bottom:507.195000px;}
.yc4_c00144{bottom:508.050000px;}
.yc0_c00144{bottom:520.905000px;}
.ybf_c00144{bottom:533.970000px;}
.ybc_c00144{bottom:534.825000px;}
.ybe_c00144{bottom:536.130000px;}
.yba_c00144{bottom:536.550000px;}
.ybb_c00144{bottom:536.970000px;}
.ybd_c00144{bottom:538.050000px;}
.yb6_c00144{bottom:549.405000px;}
.yb7_c00144{bottom:549.825000px;}
.yb8_c00144{bottom:550.905000px;}
.yb5_c00144{bottom:552.195000px;}
.yb9_c00144{bottom:553.050000px;}
.yad_c00144{bottom:563.970000px;}
.yae_c00144{bottom:564.825000px;}
.yb4_c00144{bottom:565.050000px;}
.yaf_c00144{bottom:565.470000px;}
.yb2_c00144{bottom:565.905000px;}
.yb3_c00144{bottom:566.130000px;}
.yb0_c00144{bottom:566.550000px;}
.yb1_c00144{bottom:566.970000px;}
.yac_c00144{bottom:579.405000px;}
.yab_c00144{bottom:579.825000px;}
.ya8_c00144{bottom:580.905000px;}
.ya9_c00144{bottom:581.130000px;}
.yaa_c00144{bottom:581.970000px;}
.ya1_c00144{bottom:593.325000px;}
.ya0_c00144{bottom:593.550000px;}
.ya6_c00144{bottom:594.405000px;}
.ya2_c00144{bottom:594.630000px;}
.ya7_c00144{bottom:594.825000px;}
.ya5_c00144{bottom:595.470000px;}
.ya4_c00144{bottom:595.695000px;}
.ya3_c00144{bottom:596.550000px;}
.y9d_c00144{bottom:607.470000px;}
.y9f_c00144{bottom:609.405000px;}
.y9e_c00144{bottom:611.550000px;}
.y98_c00144{bottom:623.550000px;}
.y99_c00144{bottom:624.405000px;}
.y9a_c00144{bottom:624.630000px;}
.y9b_c00144{bottom:625.470000px;}
.y9c_c00144{bottom:626.550000px;}
.y94_c00144{bottom:638.325000px;}
.y92_c00144{bottom:638.550000px;}
.y95_c00144{bottom:639.405000px;}
.y93_c00144{bottom:640.470000px;}
.y97_c00144{bottom:640.695000px;}
.y96_c00144{bottom:641.550000px;}
.y91_c00144{bottom:653.325000px;}
.y8d_c00144{bottom:654.405000px;}
.y8f_c00144{bottom:654.630000px;}
.y90_c00144{bottom:655.470000px;}
.y8c_c00144{bottom:655.695000px;}
.y8e_c00144{bottom:656.550000px;}
.y86_c00144{bottom:668.325000px;}
.y8a_c00144{bottom:668.550000px;}
.y89_c00144{bottom:669.405000px;}
.y88_c00144{bottom:669.630000px;}
.y87_c00144{bottom:670.470000px;}
.y8b_c00144{bottom:671.550000px;}
.y82_c00144{bottom:683.325000px;}
.y85_c00144{bottom:684.405000px;}
.y80_c00144{bottom:684.630000px;}
.y81_c00144{bottom:685.470000px;}
.y84_c00144{bottom:685.695000px;}
.y83_c00144{bottom:686.550000px;}
.y7e_c00144{bottom:697.470000px;}
.y7d_c00144{bottom:698.325000px;}
.y7b_c00144{bottom:699.195000px;}
.y7c_c00144{bottom:700.470000px;}
.y7f_c00144{bottom:701.550000px;}
.y75_c00144{bottom:712.470000px;}
.y78_c00144{bottom:712.905000px;}
.y7a_c00144{bottom:713.325000px;}
.y73_c00144{bottom:714.195000px;}
.y74_c00144{bottom:714.405000px;}
.y79_c00144{bottom:714.630000px;}
.y76_c00144{bottom:715.050000px;}
.y77_c00144{bottom:715.470000px;}
.y72_c00144{bottom:727.905000px;}
.y71_c00144{bottom:730.050000px;}
.y6d_c00144{bottom:740.970000px;}
.y6b_c00144{bottom:741.825000px;}
.y6a_c00144{bottom:742.050000px;}
.y6f_c00144{bottom:742.905000px;}
.y6c_c00144{bottom:743.970000px;}
.y70_c00144{bottom:744.195000px;}
.y6e_c00144{bottom:745.050000px;}
.y69_c00144{bottom:757.905000px;}
.y68_c00144{bottom:760.050000px;}
.y67_c00144{bottom:771.405000px;}
.y61_c00144{bottom:771.825000px;}
.y62_c00144{bottom:772.050000px;}
.y65_c00144{bottom:772.905000px;}
.y66_c00144{bottom:773.130000px;}
.y60_c00144{bottom:773.550000px;}
.y63_c00144{bottom:773.970000px;}
.y64_c00144{bottom:775.050000px;}
.y5f_c00144{bottom:786.405000px;}
.y5e_c00144{bottom:786.825000px;}
.y59_c00144{bottom:787.050000px;}
.y5b_c00144{bottom:787.905000px;}
.y5a_c00144{bottom:788.970000px;}
.y5d_c00144{bottom:789.195000px;}
.y5c_c00144{bottom:790.050000px;}
.y56_c00144{bottom:801.405000px;}
.y57_c00144{bottom:802.470000px;}
.y58_c00144{bottom:803.550000px;}
.y55_c00144{bottom:815.325000px;}
.y52_c00144{bottom:816.405000px;}
.y54_c00144{bottom:816.630000px;}
.y53_c00144{bottom:818.550000px;}
.y51_c00144{bottom:829.470000px;}
.y4f_c00144{bottom:830.325000px;}
.y50_c00144{bottom:830.970000px;}
.y4c_c00144{bottom:831.405000px;}
.y4e_c00144{bottom:831.630000px;}
.y4a_c00144{bottom:832.470000px;}
.y4b_c00144{bottom:832.695000px;}
.y4d_c00144{bottom:833.550000px;}
.y47_c00144{bottom:844.470000px;}
.y48_c00144{bottom:845.325000px;}
.y49_c00144{bottom:845.550000px;}
.y46_c00144{bottom:846.405000px;}
.y45_c00144{bottom:848.550000px;}
.y42_c00144{bottom:860.325000px;}
.y43_c00144{bottom:861.405000px;}
.y41_c00144{bottom:862.470000px;}
.y44_c00144{bottom:863.550000px;}
.y40_c00144{bottom:874.905000px;}
.y3b_c00144{bottom:875.550000px;}
.y3c_c00144{bottom:876.405000px;}
.y3f_c00144{bottom:876.630000px;}
.y3d_c00144{bottom:877.050000px;}
.y3e_c00144{bottom:877.470000px;}
.y39_c00144{bottom:889.905000px;}
.y38_c00144{bottom:890.325000px;}
.y36_c00144{bottom:890.970000px;}
.y34_c00144{bottom:892.050000px;}
.y35_c00144{bottom:892.470000px;}
.y37_c00144{bottom:892.695000px;}
.y3a_c00144{bottom:893.550000px;}
.y2d_c00144{bottom:904.050000px;}
.y2f_c00144{bottom:905.325000px;}
.y32_c00144{bottom:905.970000px;}
.y33_c00144{bottom:906.195000px;}
.y31_c00144{bottom:906.405000px;}
.y2e_c00144{bottom:907.050000px;}
.y30_c00144{bottom:907.470000px;}
.y2c_c00144{bottom:918.825000px;}
.y29_c00144{bottom:919.905000px;}
.y28_c00144{bottom:920.970000px;}
.y2a_c00144{bottom:921.195000px;}
.y2b_c00144{bottom:922.050000px;}
.y23_c00144{bottom:934.050000px;}
.y25_c00144{bottom:934.905000px;}
.y24_c00144{bottom:935.970000px;}
.y27_c00144{bottom:936.195000px;}
.y26_c00144{bottom:937.050000px;}
.y21_c00144{bottom:948.825000px;}
.y1f_c00144{bottom:949.050000px;}
.y22_c00144{bottom:949.905000px;}
.y20_c00144{bottom:952.050000px;}
.y1c_c00144{bottom:964.905000px;}
.y1b_c00144{bottom:965.130000px;}
.y1d_c00144{bottom:965.970000px;}
.y1e_c00144{bottom:967.050000px;}
.y19_c00144{bottom:977.325000px;}
.y1a_c00144{bottom:978.405000px;}
.y18_c00144{bottom:979.470000px;}
.y17_c00144{bottom:980.550000px;}
.y16_c00144{bottom:992.550000px;}
.y15_c00144{bottom:993.405000px;}
.y14_c00144{bottom:994.470000px;}
.y13_c00144{bottom:994.695000px;}
.y12_c00144{bottom:1021.245000px;}
.y11_c00144{bottom:1023.405000px;}
.yd_c00144{bottom:1039.905000px;}
.ye_c00144{bottom:1040.325000px;}
.yb_c00144{bottom:1040.970000px;}
.yc_c00144{bottom:1041.825000px;}
.ya_c00144{bottom:1042.905000px;}
.y10_c00144{bottom:1043.130000px;}
.yf_c00144{bottom:1043.970000px;}
.y4_c00144{bottom:1060.245000px;}
.y3_c00144{bottom:1061.130000px;}
.y7_c00144{bottom:1061.745000px;}
.y8_c00144{bottom:1062.405000px;}
.y6_c00144{bottom:1062.630000px;}
.y9_c00144{bottom:1063.470000px;}
.y5_c00144{bottom:1063.905000px;}
.y2_c00144{bottom:1099.905000px;}
.y1_c00144{bottom:1100.550000px;}
.h9_c00144{height:4.206533px;}
.h7_c00144{height:16.752334px;}
.h3_c00144{height:23.025234px;}
.h1_c00144{height:25.091602px;}
.h5_c00144{height:31.364502px;}
.h2_c00144{height:35.571035px;}
.h6_c00144{height:39.777568px;}
.h8_c00144{height:41.571035px;}
.h4_c00144{height:43.910303px;}
.h0_c00144{height:1335.000000px;}
.w0_c00144{width:880.500000px;}
.x0_c00144{left:0.000000px;}
.x3_c00144{left:151.500000px;}
.x45_c00144{left:153.000000px;}
.x7a_c00144{left:154.920000px;}
.xd1_c00144{left:156.000000px;}
.xe8_c00144{left:157.500000px;}
.x2b_c00144{left:163.500000px;}
.xa6_c00144{left:165.000000px;}
.x1e_c00144{left:166.500000px;}
.x87_c00144{left:168.000000px;}
.x9e_c00144{left:169.500000px;}
.xdd_c00144{left:171.420000px;}
.x1c_c00144{left:178.920000px;}
.x9d_c00144{left:180.000000px;}
.xf1_c00144{left:181.500000px;}
.x1f_c00144{left:182.580000px;}
.x4c_c00144{left:184.500000px;}
.x91_c00144{left:185.580000px;}
.xe_c00144{left:189.420000px;}
.x4_c00144{left:192.000000px;}
.xb4_c00144{left:193.080000px;}
.xd4_c00144{left:195.000000px;}
.x84_c00144{left:196.500000px;}
.xc4_c00144{left:198.000000px;}
.x7b_c00144{left:199.500000px;}
.x67_c00144{left:202.080000px;}
.xdf_c00144{left:204.000000px;}
.xeb_c00144{left:207.000000px;}
.xf8_c00144{left:208.500000px;}
.xa7_c00144{left:209.580000px;}
.xf2_c00144{left:211.500000px;}
.x39_c00144{left:212.580000px;}
.xf_c00144{left:214.500000px;}
.x96_c00144{left:216.000000px;}
.x72_c00144{left:217.080000px;}
.x56_c00144{left:218.580000px;}
.xe9_c00144{left:220.500000px;}
.xca_c00144{left:222.000000px;}
.x2f_c00144{left:223.500000px;}
.xfd_c00144{left:226.500000px;}
.xd2_c00144{left:227.580000px;}
.x85_c00144{left:231.420000px;}
.xb0_c00144{left:232.500000px;}
.x57_c00144{left:235.500000px;}
.x68_c00144{left:237.420000px;}
.xa8_c00144{left:238.920000px;}
.x20_c00144{left:240.000000px;}
.xd5_c00144{left:242.580000px;}
.x5_c00144{left:246.000000px;}
.x2c_c00144{left:249.420000px;}
.x9f_c00144{left:252.000000px;}
.x3c_c00144{left:253.500000px;}
.x4d_c00144{left:255.000000px;}
.xf9_c00144{left:256.500000px;}
.x86_c00144{left:258.000000px;}
.x58_c00144{left:259.500000px;}
.xcb_c00144{left:260.580000px;}
.x6b_c00144{left:262.920000px;}
.x30_c00144{left:264.000000px;}
.xce_c00144{left:265.500000px;}
.x7c_c00144{left:268.920000px;}
.x73_c00144{left:270.000000px;}
.x46_c00144{left:271.500000px;}
.xbf_c00144{left:274.500000px;}
.xe0_c00144{left:275.580000px;}
.xfe_c00144{left:279.420000px;}
.x10_c00144{left:280.500000px;}
.x47_c00144{left:282.000000px;}
.x108_c00144{left:283.920000px;}
.x5d_c00144{left:285.000000px;}
.xd6_c00144{left:286.080000px;}
.xb1_c00144{left:288.000000px;}
.x21_c00144{left:289.500000px;}
.x6c_c00144{left:291.000000px;}
.xf3_c00144{left:294.000000px;}
.xa0_c00144{left:295.500000px;}
.x92_c00144{left:297.000000px;}
.x97_c00144{left:298.500000px;}
.x31_c00144{left:300.000000px;}
.xaa_c00144{left:301.920000px;}
.xec_c00144{left:303.000000px;}
.x74_c00144{left:307.920000px;}
.x22_c00144{left:309.645000px;}
.xa9_c00144{left:310.920000px;}
.xfa_c00144{left:312.000000px;}
.x6_c00144{left:313.500000px;}
.x3a_c00144{left:315.000000px;}
.x1d_c00144{left:316.500000px;}
.x98_c00144{left:317.580000px;}
.x5e_c00144{left:319.080000px;}
.x11_c00144{left:322.080000px;}
.xed_c00144{left:325.500000px;}
.xd3_c00144{left:327.420000px;}
.x103_c00144{left:328.500000px;}
.xbc_c00144{left:330.000000px;}
.x2d_c00144{left:331.500000px;}
.xa1_c00144{left:332.580000px;}
.x88_c00144{left:336.000000px;}
.x75_c00144{left:337.500000px;}
.x5f_c00144{left:339.000000px;}
.xb5_c00144{left:340.920000px;}
.xd7_c00144{left:342.420000px;}
.x48_c00144{left:343.920000px;}
.xc5_c00144{left:345.000000px;}
.x4e_c00144{left:346.500000px;}
.x23_c00144{left:349.080000px;}
.x7_c00144{left:352.500000px;}
.x69_c00144{left:354.420000px;}
.x7d_c00144{left:358.500000px;}
.xc0_c00144{left:360.000000px;}
.xf4_c00144{left:361.500000px;}
.xef_c00144{left:363.000000px;}
.x59_c00144{left:364.500000px;}
.x12_c00144{left:366.000000px;}
.x32_c00144{left:369.000000px;}
.xe5_c00144{left:370.500000px;}
.xab_c00144{left:373.500000px;}
.x3b_c00144{left:375.000000px;}
.x6d_c00144{left:379.080000px;}
.x6a_c00144{left:381.000000px;}
.x3d_c00144{left:382.920000px;}
.xb6_c00144{left:384.420000px;}
.x49_c00144{left:385.500000px;}
.x76_c00144{left:388.920000px;}
.x6e_c00144{left:391.500000px;}
.x2e_c00144{left:393.000000px;}
.x7e_c00144{left:394.920000px;}
.xc6_c00144{left:396.000000px;}
.x1_c00144{left:397.500000px;}
.x3e_c00144{left:399.000000px;}
.xb7_c00144{left:400.080000px;}
.x99_c00144{left:402.000000px;}
.xac_c00144{left:404.580000px;}
.x33_c00144{left:406.500000px;}
.x77_c00144{left:408.000000px;}
.x24_c00144{left:410.145000px;}
.x13_c00144{left:412.920000px;}
.x4a_c00144{left:415.080000px;}
.xcc_c00144{left:416.580000px;}
.x8_c00144{left:418.500000px;}
.xe3_c00144{left:419.580000px;}
.x60_c00144{left:421.500000px;}
.x89_c00144{left:422.580000px;}
.x7f_c00144{left:424.500000px;}
.xe6_c00144{left:426.000000px;}
.x14_c00144{left:428.580000px;}
.x4f_c00144{left:431.145000px;}
.x6f_c00144{left:433.080000px;}
.x61_c00144{left:435.000000px;}
.x8a_c00144{left:437.145000px;}
.x5a_c00144{left:439.920000px;}
.x4b_c00144{left:442.500000px;}
.xcd_c00144{left:444.000000px;}
.x9_c00144{left:445.500000px;}
.xe4_c00144{left:447.000000px;}
.xbd_c00144{left:450.420000px;}
.x25_c00144{left:454.080000px;}
.xd8_c00144{left:456.000000px;}
.xad_c00144{left:457.080000px;}
.x34_c00144{left:460.500000px;}
.x15_c00144{left:463.080000px;}
.xf5_c00144{left:467.580000px;}
.x70_c00144{left:468.855000px;}
.xc7_c00144{left:469.920000px;}
.xb2_c00144{left:471.420000px;}
.x80_c00144{left:474.000000px;}
.x3f_c00144{left:475.500000px;}
.x62_c00144{left:478.500000px;}
.x16_c00144{left:482.355000px;}
.x104_c00144{left:487.500000px;}
.x26_c00144{left:494.580000px;}
.x78_c00144{left:496.920000px;}
.xb3_c00144{left:499.500000px;}
.x93_c00144{left:500.580000px;}
.xa_c00144{left:502.080000px;}
.xff_c00144{left:504.420000px;}
.xd9_c00144{left:507.000000px;}
.x5b_c00144{left:510.420000px;}
.x50_c00144{left:514.080000px;}
.xfb_c00144{left:516.000000px;}
.x8b_c00144{left:517.500000px;}
.xb8_c00144{left:518.580000px;}
.x40_c00144{left:520.500000px;}
.x17_c00144{left:521.580000px;}
.x35_c00144{left:526.920000px;}
.xbe_c00144{left:529.080000px;}
.xb9_c00144{left:531.000000px;}
.xa2_c00144{left:532.500000px;}
.x109_c00144{left:535.920000px;}
.x5c_c00144{left:537.000000px;}
.xc1_c00144{left:538.080000px;}
.x81_c00144{left:539.580000px;}
.x51_c00144{left:541.500000px;}
.x27_c00144{left:544.500000px;}
.xda_c00144{left:550.920000px;}
.x36_c00144{left:552.000000px;}
.x18_c00144{left:553.920000px;}
.xb_c00144{left:555.000000px;}
.x100_c00144{left:556.080000px;}
.x94_c00144{left:558.000000px;}
.xdb_c00144{left:561.000000px;}
.x10a_c00144{left:562.500000px;}
.xba_c00144{left:565.080000px;}
.xa3_c00144{left:566.580000px;}
.xe1_c00144{left:568.500000px;}
.x8c_c00144{left:569.580000px;}
.xcf_c00144{left:571.500000px;}
.x95_c00144{left:573.000000px;}
.x9a_c00144{left:576.000000px;}
.xae_c00144{left:577.080000px;}
.x19_c00144{left:579.000000px;}
.xf0_c00144{left:581.580000px;}
.x41_c00144{left:588.420000px;}
.x82_c00144{left:589.500000px;}
.xc_c00144{left:591.000000px;}
.xc2_c00144{left:592.500000px;}
.xbb_c00144{left:594.420000px;}
.xa4_c00144{left:595.920000px;}
.x8d_c00144{left:597.420000px;}
.x28_c00144{left:599.580000px;}
.xaf_c00144{left:601.500000px;}
.x42_c00144{left:604.500000px;}
.x63_c00144{left:606.000000px;}
.x79_c00144{left:607.920000px;}
.x37_c00144{left:612.000000px;}
.x52_c00144{left:613.920000px;}
.xc8_c00144{left:619.080000px;}
.x101_c00144{left:624.000000px;}
.xf6_c00144{left:627.420000px;}
.x1a_c00144{left:628.500000px;}
.x43_c00144{left:630.000000px;}
.x53_c00144{left:631.080000px;}
.x105_c00144{left:633.000000px;}
.x9b_c00144{left:634.500000px;}
.xee_c00144{left:636.420000px;}
.xa5_c00144{left:637.500000px;}
.xfc_c00144{left:638.580000px;}
.x8e_c00144{left:640.500000px;}
.x64_c00144{left:643.080000px;}
.x71_c00144{left:648.420000px;}
.x102_c00144{left:649.500000px;}
.x10b_c00144{left:651.000000px;}
.x29_c00144{left:655.920000px;}
.x83_c00144{left:657.000000px;}
.xc9_c00144{left:658.500000px;}
.xc3_c00144{left:660.000000px;}
.x1b_c00144{left:662.580000px;}
.x9c_c00144{left:664.920000px;}
.x2a_c00144{left:667.500000px;}
.x8f_c00144{left:669.420000px;}
.xd_c00144{left:670.500000px;}
.x65_c00144{left:673.500000px;}
.xde_c00144{left:675.000000px;}
.xe7_c00144{left:678.000000px;}
.x38_c00144{left:679.080000px;}
.xdc_c00144{left:681.000000px;}
.x106_c00144{left:684.000000px;}
.x54_c00144{left:690.000000px;}
.x44_c00144{left:693.000000px;}
.x90_c00144{left:694.500000px;}
.xd0_c00144{left:696.000000px;}
.xe2_c00144{left:703.500000px;}
.x2_c00144{left:706.920000px;}
.xf7_c00144{left:709.500000px;}
.x55_c00144{left:711.000000px;}
.xea_c00144{left:717.000000px;}
.x107_c00144{left:722.580000px;}
.x66_c00144{left:724.920000px;}
@media print{
.v0_c00144{vertical-align:0.000000pt;}
.v1_c00144{vertical-align:5.333333pt;}
.ls0_c00144{letter-spacing:0.000000pt;}
.ws7_c00144{word-spacing:-15.012693pt;}
.ws4_c00144{word-spacing:-6.493334pt;}
.ws2_c00144{word-spacing:-4.377894pt;}
.ws3_c00144{word-spacing:-2.680284pt;}
.ws5_c00144{word-spacing:-2.270756pt;}
.ws8_c00144{word-spacing:0.000000pt;}
.ws6_c00144{word-spacing:0.273822pt;}
.ws1_c00144{word-spacing:0.539934pt;}
.ws0_c00144{word-spacing:3.678721pt;}
._0_c00144{width:4.645226pt;}
.fs7_c00144{font-size:3.040000pt;}
.fs6_c00144{font-size:12.106667pt;}
.fs2_c00144{font-size:16.640000pt;}
.fs0_c00144{font-size:18.133333pt;}
.fs4_c00144{font-size:22.666667pt;}
.fs1_c00144{font-size:25.706667pt;}
.fs5_c00144{font-size:28.746667pt;}
.fs3_c00144{font-size:31.733333pt;}
.y0_c00144{bottom:0.000000pt;}
.y110_c00144{bottom:225.106667pt;}
.y10e_c00144{bottom:225.693333pt;}
.y111_c00144{bottom:226.066667pt;}
.y10f_c00144{bottom:227.026667pt;}
.y10b_c00144{bottom:242.440000pt;}
.y10c_c00144{bottom:243.973333pt;}
.y10a_c00144{bottom:244.360000pt;}
.y10d_c00144{bottom:245.693333pt;}
.y108_c00144{bottom:257.693333pt;}
.y105_c00144{bottom:259.026667pt;}
.y106_c00144{bottom:259.400000pt;}
.y103_c00144{bottom:259.773333pt;}
.y104_c00144{bottom:260.560000pt;}
.y109_c00144{bottom:260.733333pt;}
.y102_c00144{bottom:261.693333pt;}
.y107_c00144{bottom:262.640000pt;}
.y100_c00144{bottom:276.360000pt;}
.yfc_c00144{bottom:277.106667pt;}
.yfe_c00144{bottom:277.693333pt;}
.yfb_c00144{bottom:278.066667pt;}
.yfd_c00144{bottom:279.026667pt;}
.yff_c00144{bottom:279.226667pt;}
.y101_c00144{bottom:279.400000pt;}
.yfa_c00144{bottom:293.693333pt;}
.yf4_c00144{bottom:294.440000pt;}
.yf6_c00144{bottom:295.400000pt;}
.yf8_c00144{bottom:295.773333pt;}
.yf7_c00144{bottom:296.360000pt;}
.yf5_c00144{bottom:296.560000pt;}
.yf9_c00144{bottom:297.306667pt;}
.yf3_c00144{bottom:311.026667pt;}
.yef_c00144{bottom:311.773333pt;}
.yed_c00144{bottom:311.973333pt;}
.yf2_c00144{bottom:313.106667pt;}
.yec_c00144{bottom:313.693333pt;}
.yf0_c00144{bottom:313.893333pt;}
.yee_c00144{bottom:314.640000pt;}
.yf1_c00144{bottom:315.026667pt;}
.ye8_c00144{bottom:330.440000pt;}
.yeb_c00144{bottom:331.973333pt;}
.yea_c00144{bottom:332.360000pt;}
.ye9_c00144{bottom:332.373333pt;}
.ye6_c00144{bottom:356.733333pt;}
.ye7_c00144{bottom:358.640000pt;}
.ye0_c00144{bottom:369.306667pt;}
.ye1_c00144{bottom:369.693333pt;}
.ye2_c00144{bottom:370.266667pt;}
.ye3_c00144{bottom:371.026667pt;}
.ye5_c00144{bottom:371.226667pt;}
.ye4_c00144{bottom:371.973333pt;}
.ydf_c00144{bottom:382.640000pt;}
.yde_c00144{bottom:383.400000pt;}
.yda_c00144{bottom:383.600000pt;}
.ydb_c00144{bottom:384.360000pt;}
.ydd_c00144{bottom:384.560000pt;}
.ydc_c00144{bottom:385.306667pt;}
.yd9_c00144{bottom:396.733333pt;}
.yd7_c00144{bottom:398.640000pt;}
.yd8_c00144{bottom:399.600000pt;}
.yd3_c00144{bottom:409.693333pt;}
.yd6_c00144{bottom:410.266667pt;}
.yd4_c00144{bottom:410.640000pt;}
.yd2_c00144{bottom:410.840000pt;}
.yd5_c00144{bottom:411.226667pt;}
.yd1_c00144{bottom:411.600000pt;}
.ycf_c00144{bottom:423.026667pt;}
.yd0_c00144{bottom:423.226667pt;}
.yce_c00144{bottom:423.973333pt;}
.yc8_c00144{bottom:435.400000pt;}
.ycd_c00144{bottom:435.973333pt;}
.ycb_c00144{bottom:436.360000pt;}
.yc9_c00144{bottom:436.560000pt;}
.yca_c00144{bottom:437.306667pt;}
.ycc_c00144{bottom:438.640000pt;}
.yc1_c00144{bottom:447.973333pt;}
.yc5_c00144{bottom:448.733333pt;}
.yc2_c00144{bottom:449.693333pt;}
.yc6_c00144{bottom:449.893333pt;}
.yc3_c00144{bottom:450.640000pt;}
.yc7_c00144{bottom:450.840000pt;}
.yc4_c00144{bottom:451.600000pt;}
.yc0_c00144{bottom:463.026667pt;}
.ybf_c00144{bottom:474.640000pt;}
.ybc_c00144{bottom:475.400000pt;}
.ybe_c00144{bottom:476.560000pt;}
.yba_c00144{bottom:476.933333pt;}
.ybb_c00144{bottom:477.306667pt;}
.ybd_c00144{bottom:478.266667pt;}
.yb6_c00144{bottom:488.360000pt;}
.yb7_c00144{bottom:488.733333pt;}
.yb8_c00144{bottom:489.693333pt;}
.yb5_c00144{bottom:490.840000pt;}
.yb9_c00144{bottom:491.600000pt;}
.yad_c00144{bottom:501.306667pt;}
.yae_c00144{bottom:502.066667pt;}
.yb4_c00144{bottom:502.266667pt;}
.yaf_c00144{bottom:502.640000pt;}
.yb2_c00144{bottom:503.026667pt;}
.yb3_c00144{bottom:503.226667pt;}
.yb0_c00144{bottom:503.600000pt;}
.yb1_c00144{bottom:503.973333pt;}
.yac_c00144{bottom:515.026667pt;}
.yab_c00144{bottom:515.400000pt;}
.ya8_c00144{bottom:516.360000pt;}
.ya9_c00144{bottom:516.560000pt;}
.yaa_c00144{bottom:517.306667pt;}
.ya1_c00144{bottom:527.400000pt;}
.ya0_c00144{bottom:527.600000pt;}
.ya6_c00144{bottom:528.360000pt;}
.ya2_c00144{bottom:528.560000pt;}
.ya7_c00144{bottom:528.733333pt;}
.ya5_c00144{bottom:529.306667pt;}
.ya4_c00144{bottom:529.506667pt;}
.ya3_c00144{bottom:530.266667pt;}
.y9d_c00144{bottom:539.973333pt;}
.y9f_c00144{bottom:541.693333pt;}
.y9e_c00144{bottom:543.600000pt;}
.y98_c00144{bottom:554.266667pt;}
.y99_c00144{bottom:555.026667pt;}
.y9a_c00144{bottom:555.226667pt;}
.y9b_c00144{bottom:555.973333pt;}
.y9c_c00144{bottom:556.933333pt;}
.y94_c00144{bottom:567.400000pt;}
.y92_c00144{bottom:567.600000pt;}
.y95_c00144{bottom:568.360000pt;}
.y93_c00144{bottom:569.306667pt;}
.y97_c00144{bottom:569.506667pt;}
.y96_c00144{bottom:570.266667pt;}
.y91_c00144{bottom:580.733333pt;}
.y8d_c00144{bottom:581.693333pt;}
.y8f_c00144{bottom:581.893333pt;}
.y90_c00144{bottom:582.640000pt;}
.y8c_c00144{bottom:582.840000pt;}
.y8e_c00144{bottom:583.600000pt;}
.y86_c00144{bottom:594.066667pt;}
.y8a_c00144{bottom:594.266667pt;}
.y89_c00144{bottom:595.026667pt;}
.y88_c00144{bottom:595.226667pt;}
.y87_c00144{bottom:595.973333pt;}
.y8b_c00144{bottom:596.933333pt;}
.y82_c00144{bottom:607.400000pt;}
.y85_c00144{bottom:608.360000pt;}
.y80_c00144{bottom:608.560000pt;}
.y81_c00144{bottom:609.306667pt;}
.y84_c00144{bottom:609.506667pt;}
.y83_c00144{bottom:610.266667pt;}
.y7e_c00144{bottom:619.973333pt;}
.y7d_c00144{bottom:620.733333pt;}
.y7b_c00144{bottom:621.506667pt;}
.y7c_c00144{bottom:622.640000pt;}
.y7f_c00144{bottom:623.600000pt;}
.y75_c00144{bottom:633.306667pt;}
.y78_c00144{bottom:633.693333pt;}
.y7a_c00144{bottom:634.066667pt;}
.y73_c00144{bottom:634.840000pt;}
.y74_c00144{bottom:635.026667pt;}
.y79_c00144{bottom:635.226667pt;}
.y76_c00144{bottom:635.600000pt;}
.y77_c00144{bottom:635.973333pt;}
.y72_c00144{bottom:647.026667pt;}
.y71_c00144{bottom:648.933333pt;}
.y6d_c00144{bottom:658.640000pt;}
.y6b_c00144{bottom:659.400000pt;}
.y6a_c00144{bottom:659.600000pt;}
.y6f_c00144{bottom:660.360000pt;}
.y6c_c00144{bottom:661.306667pt;}
.y70_c00144{bottom:661.506667pt;}
.y6e_c00144{bottom:662.266667pt;}
.y69_c00144{bottom:673.693333pt;}
.y68_c00144{bottom:675.600000pt;}
.y67_c00144{bottom:685.693333pt;}
.y61_c00144{bottom:686.066667pt;}
.y62_c00144{bottom:686.266667pt;}
.y65_c00144{bottom:687.026667pt;}
.y66_c00144{bottom:687.226667pt;}
.y60_c00144{bottom:687.600000pt;}
.y63_c00144{bottom:687.973333pt;}
.y64_c00144{bottom:688.933333pt;}
.y5f_c00144{bottom:699.026667pt;}
.y5e_c00144{bottom:699.400000pt;}
.y59_c00144{bottom:699.600000pt;}
.y5b_c00144{bottom:700.360000pt;}
.y5a_c00144{bottom:701.306667pt;}
.y5d_c00144{bottom:701.506667pt;}
.y5c_c00144{bottom:702.266667pt;}
.y56_c00144{bottom:712.360000pt;}
.y57_c00144{bottom:713.306667pt;}
.y58_c00144{bottom:714.266667pt;}
.y55_c00144{bottom:724.733333pt;}
.y52_c00144{bottom:725.693333pt;}
.y54_c00144{bottom:725.893333pt;}
.y53_c00144{bottom:727.600000pt;}
.y51_c00144{bottom:737.306667pt;}
.y4f_c00144{bottom:738.066667pt;}
.y50_c00144{bottom:738.640000pt;}
.y4c_c00144{bottom:739.026667pt;}
.y4e_c00144{bottom:739.226667pt;}
.y4a_c00144{bottom:739.973333pt;}
.y4b_c00144{bottom:740.173333pt;}
.y4d_c00144{bottom:740.933333pt;}
.y47_c00144{bottom:750.640000pt;}
.y48_c00144{bottom:751.400000pt;}
.y49_c00144{bottom:751.600000pt;}
.y46_c00144{bottom:752.360000pt;}
.y45_c00144{bottom:754.266667pt;}
.y42_c00144{bottom:764.733333pt;}
.y43_c00144{bottom:765.693333pt;}
.y41_c00144{bottom:766.640000pt;}
.y44_c00144{bottom:767.600000pt;}
.y40_c00144{bottom:777.693333pt;}
.y3b_c00144{bottom:778.266667pt;}
.y3c_c00144{bottom:779.026667pt;}
.y3f_c00144{bottom:779.226667pt;}
.y3d_c00144{bottom:779.600000pt;}
.y3e_c00144{bottom:779.973333pt;}
.y39_c00144{bottom:791.026667pt;}
.y38_c00144{bottom:791.400000pt;}
.y36_c00144{bottom:791.973333pt;}
.y34_c00144{bottom:792.933333pt;}
.y35_c00144{bottom:793.306667pt;}
.y37_c00144{bottom:793.506667pt;}
.y3a_c00144{bottom:794.266667pt;}
.y2d_c00144{bottom:803.600000pt;}
.y2f_c00144{bottom:804.733333pt;}
.y32_c00144{bottom:805.306667pt;}
.y33_c00144{bottom:805.506667pt;}
.y31_c00144{bottom:805.693333pt;}
.y2e_c00144{bottom:806.266667pt;}
.y30_c00144{bottom:806.640000pt;}
.y2c_c00144{bottom:816.733333pt;}
.y29_c00144{bottom:817.693333pt;}
.y28_c00144{bottom:818.640000pt;}
.y2a_c00144{bottom:818.840000pt;}
.y2b_c00144{bottom:819.600000pt;}
.y23_c00144{bottom:830.266667pt;}
.y25_c00144{bottom:831.026667pt;}
.y24_c00144{bottom:831.973333pt;}
.y27_c00144{bottom:832.173333pt;}
.y26_c00144{bottom:832.933333pt;}
.y21_c00144{bottom:843.400000pt;}
.y1f_c00144{bottom:843.600000pt;}
.y22_c00144{bottom:844.360000pt;}
.y20_c00144{bottom:846.266667pt;}
.y1c_c00144{bottom:857.693333pt;}
.y1b_c00144{bottom:857.893333pt;}
.y1d_c00144{bottom:858.640000pt;}
.y1e_c00144{bottom:859.600000pt;}
.y19_c00144{bottom:868.733333pt;}
.y1a_c00144{bottom:869.693333pt;}
.y18_c00144{bottom:870.640000pt;}
.y17_c00144{bottom:871.600000pt;}
.y16_c00144{bottom:882.266667pt;}
.y15_c00144{bottom:883.026667pt;}
.y14_c00144{bottom:883.973333pt;}
.y13_c00144{bottom:884.173333pt;}
.y12_c00144{bottom:907.773333pt;}
.y11_c00144{bottom:909.693333pt;}
.yd_c00144{bottom:924.360000pt;}
.ye_c00144{bottom:924.733333pt;}
.yb_c00144{bottom:925.306667pt;}
.yc_c00144{bottom:926.066667pt;}
.ya_c00144{bottom:927.026667pt;}
.y10_c00144{bottom:927.226667pt;}
.yf_c00144{bottom:927.973333pt;}
.y4_c00144{bottom:942.440000pt;}
.y3_c00144{bottom:943.226667pt;}
.y7_c00144{bottom:943.773333pt;}
.y8_c00144{bottom:944.360000pt;}
.y6_c00144{bottom:944.560000pt;}
.y9_c00144{bottom:945.306667pt;}
.y5_c00144{bottom:945.693333pt;}
.y2_c00144{bottom:977.693333pt;}
.y1_c00144{bottom:978.266667pt;}
.h9_c00144{height:3.739141pt;}
.h7_c00144{height:14.890964pt;}
.h3_c00144{height:20.466875pt;}
.h1_c00144{height:22.303646pt;}
.h5_c00144{height:27.879557pt;}
.h2_c00144{height:31.618698pt;}
.h6_c00144{height:35.357839pt;}
.h8_c00144{height:36.952031pt;}
.h4_c00144{height:39.031380pt;}
.h0_c00144{height:1186.666667pt;}
.w0_c00144{width:782.666667pt;}
.x0_c00144{left:0.000000pt;}
.x3_c00144{left:134.666667pt;}
.x45_c00144{left:136.000000pt;}
.x7a_c00144{left:137.706667pt;}
.xd1_c00144{left:138.666667pt;}
.xe8_c00144{left:140.000000pt;}
.x2b_c00144{left:145.333333pt;}
.xa6_c00144{left:146.666667pt;}
.x1e_c00144{left:148.000000pt;}
.x87_c00144{left:149.333333pt;}
.x9e_c00144{left:150.666667pt;}
.xdd_c00144{left:152.373333pt;}
.x1c_c00144{left:159.040000pt;}
.x9d_c00144{left:160.000000pt;}
.xf1_c00144{left:161.333333pt;}
.x1f_c00144{left:162.293333pt;}
.x4c_c00144{left:164.000000pt;}
.x91_c00144{left:164.960000pt;}
.xe_c00144{left:168.373333pt;}
.x4_c00144{left:170.666667pt;}
.xb4_c00144{left:171.626667pt;}
.xd4_c00144{left:173.333333pt;}
.x84_c00144{left:174.666667pt;}
.xc4_c00144{left:176.000000pt;}
.x7b_c00144{left:177.333333pt;}
.x67_c00144{left:179.626667pt;}
.xdf_c00144{left:181.333333pt;}
.xeb_c00144{left:184.000000pt;}
.xf8_c00144{left:185.333333pt;}
.xa7_c00144{left:186.293333pt;}
.xf2_c00144{left:188.000000pt;}
.x39_c00144{left:188.960000pt;}
.xf_c00144{left:190.666667pt;}
.x96_c00144{left:192.000000pt;}
.x72_c00144{left:192.960000pt;}
.x56_c00144{left:194.293333pt;}
.xe9_c00144{left:196.000000pt;}
.xca_c00144{left:197.333333pt;}
.x2f_c00144{left:198.666667pt;}
.xfd_c00144{left:201.333333pt;}
.xd2_c00144{left:202.293333pt;}
.x85_c00144{left:205.706667pt;}
.xb0_c00144{left:206.666667pt;}
.x57_c00144{left:209.333333pt;}
.x68_c00144{left:211.040000pt;}
.xa8_c00144{left:212.373333pt;}
.x20_c00144{left:213.333333pt;}
.xd5_c00144{left:215.626667pt;}
.x5_c00144{left:218.666667pt;}
.x2c_c00144{left:221.706667pt;}
.x9f_c00144{left:224.000000pt;}
.x3c_c00144{left:225.333333pt;}
.x4d_c00144{left:226.666667pt;}
.xf9_c00144{left:228.000000pt;}
.x86_c00144{left:229.333333pt;}
.x58_c00144{left:230.666667pt;}
.xcb_c00144{left:231.626667pt;}
.x6b_c00144{left:233.706667pt;}
.x30_c00144{left:234.666667pt;}
.xce_c00144{left:236.000000pt;}
.x7c_c00144{left:239.040000pt;}
.x73_c00144{left:240.000000pt;}
.x46_c00144{left:241.333333pt;}
.xbf_c00144{left:244.000000pt;}
.xe0_c00144{left:244.960000pt;}
.xfe_c00144{left:248.373333pt;}
.x10_c00144{left:249.333333pt;}
.x47_c00144{left:250.666667pt;}
.x108_c00144{left:252.373333pt;}
.x5d_c00144{left:253.333333pt;}
.xd6_c00144{left:254.293333pt;}
.xb1_c00144{left:256.000000pt;}
.x21_c00144{left:257.333333pt;}
.x6c_c00144{left:258.666667pt;}
.xf3_c00144{left:261.333333pt;}
.xa0_c00144{left:262.666667pt;}
.x92_c00144{left:264.000000pt;}
.x97_c00144{left:265.333333pt;}
.x31_c00144{left:266.666667pt;}
.xaa_c00144{left:268.373333pt;}
.xec_c00144{left:269.333333pt;}
.x74_c00144{left:273.706667pt;}
.x22_c00144{left:275.240000pt;}
.xa9_c00144{left:276.373333pt;}
.xfa_c00144{left:277.333333pt;}
.x6_c00144{left:278.666667pt;}
.x3a_c00144{left:280.000000pt;}
.x1d_c00144{left:281.333333pt;}
.x98_c00144{left:282.293333pt;}
.x5e_c00144{left:283.626667pt;}
.x11_c00144{left:286.293333pt;}
.xed_c00144{left:289.333333pt;}
.xd3_c00144{left:291.040000pt;}
.x103_c00144{left:292.000000pt;}
.xbc_c00144{left:293.333333pt;}
.x2d_c00144{left:294.666667pt;}
.xa1_c00144{left:295.626667pt;}
.x88_c00144{left:298.666667pt;}
.x75_c00144{left:300.000000pt;}
.x5f_c00144{left:301.333333pt;}
.xb5_c00144{left:303.040000pt;}
.xd7_c00144{left:304.373333pt;}
.x48_c00144{left:305.706667pt;}
.xc5_c00144{left:306.666667pt;}
.x4e_c00144{left:308.000000pt;}
.x23_c00144{left:310.293333pt;}
.x7_c00144{left:313.333333pt;}
.x69_c00144{left:315.040000pt;}
.x7d_c00144{left:318.666667pt;}
.xc0_c00144{left:320.000000pt;}
.xf4_c00144{left:321.333333pt;}
.xef_c00144{left:322.666667pt;}
.x59_c00144{left:324.000000pt;}
.x12_c00144{left:325.333333pt;}
.x32_c00144{left:328.000000pt;}
.xe5_c00144{left:329.333333pt;}
.xab_c00144{left:332.000000pt;}
.x3b_c00144{left:333.333333pt;}
.x6d_c00144{left:336.960000pt;}
.x6a_c00144{left:338.666667pt;}
.x3d_c00144{left:340.373333pt;}
.xb6_c00144{left:341.706667pt;}
.x49_c00144{left:342.666667pt;}
.x76_c00144{left:345.706667pt;}
.x6e_c00144{left:348.000000pt;}
.x2e_c00144{left:349.333333pt;}
.x7e_c00144{left:351.040000pt;}
.xc6_c00144{left:352.000000pt;}
.x1_c00144{left:353.333333pt;}
.x3e_c00144{left:354.666667pt;}
.xb7_c00144{left:355.626667pt;}
.x99_c00144{left:357.333333pt;}
.xac_c00144{left:359.626667pt;}
.x33_c00144{left:361.333333pt;}
.x77_c00144{left:362.666667pt;}
.x24_c00144{left:364.573333pt;}
.x13_c00144{left:367.040000pt;}
.x4a_c00144{left:368.960000pt;}
.xcc_c00144{left:370.293333pt;}
.x8_c00144{left:372.000000pt;}
.xe3_c00144{left:372.960000pt;}
.x60_c00144{left:374.666667pt;}
.x89_c00144{left:375.626667pt;}
.x7f_c00144{left:377.333333pt;}
.xe6_c00144{left:378.666667pt;}
.x14_c00144{left:380.960000pt;}
.x4f_c00144{left:383.240000pt;}
.x6f_c00144{left:384.960000pt;}
.x61_c00144{left:386.666667pt;}
.x8a_c00144{left:388.573333pt;}
.x5a_c00144{left:391.040000pt;}
.x4b_c00144{left:393.333333pt;}
.xcd_c00144{left:394.666667pt;}
.x9_c00144{left:396.000000pt;}
.xe4_c00144{left:397.333333pt;}
.xbd_c00144{left:400.373333pt;}
.x25_c00144{left:403.626667pt;}
.xd8_c00144{left:405.333333pt;}
.xad_c00144{left:406.293333pt;}
.x34_c00144{left:409.333333pt;}
.x15_c00144{left:411.626667pt;}
.xf5_c00144{left:415.626667pt;}
.x70_c00144{left:416.760000pt;}
.xc7_c00144{left:417.706667pt;}
.xb2_c00144{left:419.040000pt;}
.x80_c00144{left:421.333333pt;}
.x3f_c00144{left:422.666667pt;}
.x62_c00144{left:425.333333pt;}
.x16_c00144{left:428.760000pt;}
.x104_c00144{left:433.333333pt;}
.x26_c00144{left:439.626667pt;}
.x78_c00144{left:441.706667pt;}
.xb3_c00144{left:444.000000pt;}
.x93_c00144{left:444.960000pt;}
.xa_c00144{left:446.293333pt;}
.xff_c00144{left:448.373333pt;}
.xd9_c00144{left:450.666667pt;}
.x5b_c00144{left:453.706667pt;}
.x50_c00144{left:456.960000pt;}
.xfb_c00144{left:458.666667pt;}
.x8b_c00144{left:460.000000pt;}
.xb8_c00144{left:460.960000pt;}
.x40_c00144{left:462.666667pt;}
.x17_c00144{left:463.626667pt;}
.x35_c00144{left:468.373333pt;}
.xbe_c00144{left:470.293333pt;}
.xb9_c00144{left:472.000000pt;}
.xa2_c00144{left:473.333333pt;}
.x109_c00144{left:476.373333pt;}
.x5c_c00144{left:477.333333pt;}
.xc1_c00144{left:478.293333pt;}
.x81_c00144{left:479.626667pt;}
.x51_c00144{left:481.333333pt;}
.x27_c00144{left:484.000000pt;}
.xda_c00144{left:489.706667pt;}
.x36_c00144{left:490.666667pt;}
.x18_c00144{left:492.373333pt;}
.xb_c00144{left:493.333333pt;}
.x100_c00144{left:494.293333pt;}
.x94_c00144{left:496.000000pt;}
.xdb_c00144{left:498.666667pt;}
.x10a_c00144{left:500.000000pt;}
.xba_c00144{left:502.293333pt;}
.xa3_c00144{left:503.626667pt;}
.xe1_c00144{left:505.333333pt;}
.x8c_c00144{left:506.293333pt;}
.xcf_c00144{left:508.000000pt;}
.x95_c00144{left:509.333333pt;}
.x9a_c00144{left:512.000000pt;}
.xae_c00144{left:512.960000pt;}
.x19_c00144{left:514.666667pt;}
.xf0_c00144{left:516.960000pt;}
.x41_c00144{left:523.040000pt;}
.x82_c00144{left:524.000000pt;}
.xc_c00144{left:525.333333pt;}
.xc2_c00144{left:526.666667pt;}
.xbb_c00144{left:528.373333pt;}
.xa4_c00144{left:529.706667pt;}
.x8d_c00144{left:531.040000pt;}
.x28_c00144{left:532.960000pt;}
.xaf_c00144{left:534.666667pt;}
.x42_c00144{left:537.333333pt;}
.x63_c00144{left:538.666667pt;}
.x79_c00144{left:540.373333pt;}
.x37_c00144{left:544.000000pt;}
.x52_c00144{left:545.706667pt;}
.xc8_c00144{left:550.293333pt;}
.x101_c00144{left:554.666667pt;}
.xf6_c00144{left:557.706667pt;}
.x1a_c00144{left:558.666667pt;}
.x43_c00144{left:560.000000pt;}
.x53_c00144{left:560.960000pt;}
.x105_c00144{left:562.666667pt;}
.x9b_c00144{left:564.000000pt;}
.xee_c00144{left:565.706667pt;}
.xa5_c00144{left:566.666667pt;}
.xfc_c00144{left:567.626667pt;}
.x8e_c00144{left:569.333333pt;}
.x64_c00144{left:571.626667pt;}
.x71_c00144{left:576.373333pt;}
.x102_c00144{left:577.333333pt;}
.x10b_c00144{left:578.666667pt;}
.x29_c00144{left:583.040000pt;}
.x83_c00144{left:584.000000pt;}
.xc9_c00144{left:585.333333pt;}
.xc3_c00144{left:586.666667pt;}
.x1b_c00144{left:588.960000pt;}
.x9c_c00144{left:591.040000pt;}
.x2a_c00144{left:593.333333pt;}
.x8f_c00144{left:595.040000pt;}
.xd_c00144{left:596.000000pt;}
.x65_c00144{left:598.666667pt;}
.xde_c00144{left:600.000000pt;}
.xe7_c00144{left:602.666667pt;}
.x38_c00144{left:603.626667pt;}
.xdc_c00144{left:605.333333pt;}
.x106_c00144{left:608.000000pt;}
.x54_c00144{left:613.333333pt;}
.x44_c00144{left:616.000000pt;}
.x90_c00144{left:617.333333pt;}
.xd0_c00144{left:618.666667pt;}
.xe2_c00144{left:625.333333pt;}
.x2_c00144{left:628.373333pt;}
.xf7_c00144{left:630.666667pt;}
.x55_c00144{left:632.000000pt;}
.xea_c00144{left:637.333333pt;}
.x107_c00144{left:642.293333pt;}
.x66_c00144{left:644.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_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_057724241023a2639a912eb6.woff2')format("woff");}.ff1_c00145{font-family:ff1_c00145;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m23_c00145{transform:matrix(0.357607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357607,0.000000,0.000000,0.250000,0,0);}
.m1c_c00145{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m25_c00145{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m14_c00145{transform:matrix(0.394712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394712,0.000000,0.000000,0.250000,0,0);}
.m12_c00145{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.m15_c00145{transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);}
.m17_c00145{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.m18_c00145{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.m1d_c00145{transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);}
.m20_c00145{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m1a_c00145{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m21_c00145{transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);}
.m27_c00145{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m0_c00145{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m2_c00145{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m1b_c00145{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.m13_c00145{transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);}
.m28_c00145{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m8_c00145{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m29_c00145{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m16_c00145{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_c00145{transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);}
.mc_c00145{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m5_c00145{transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);}
.m2c_c00145{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);}
.md_c00145{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m2f_c00145{transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);}
.m30_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);}
.m24_c00145{transform:matrix(0.534706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534706,0.000000,0.000000,0.250000,0,0);}
.m1e_c00145{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m2b_c00145{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m11_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);}
.m3_c00145{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);}
.mf_c00145{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m22_c00145{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m1_c00145{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m26_c00145{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m2e_c00145{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m10_c00145{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_c00145{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m2d_c00145{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m19_c00145{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.me_c00145{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);}
.mb_c00145{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.m1f_c00145{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m9_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);}
.ma_c00145{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m7_c00145{transform:matrix(0.922907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.922907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.922907,0.000000,0.000000,0.250000,0,0);}
.m4_c00145{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,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:-4.554682px;}
.ws1_c00145{word-spacing:0.000000px;}
.fc0_c00145{color:transparent;}
.fs3_c00145{font-size:13.620000px;}
.fs4_c00145{font-size:18.720000px;}
.fs1_c00145{font-size:20.400000px;}
.fs2_c00145{font-size:25.500000px;}
.fs0_c00145{font-size:28.920000px;}
.fs5_c00145{font-size:32.340000px;}
.y0_c00145{bottom:0.000000px;}
.ya_c00145{bottom:277.470000px;}
.yb_c00145{bottom:278.550000px;}
.y6_c00145{bottom:279.405000px;}
.y9_c00145{bottom:279.630000px;}
.y7_c00145{bottom:280.470000px;}
.y8_c00145{bottom:281.550000px;}
.y12_c00145{bottom:293.325000px;}
.y3_c00145{bottom:294.405000px;}
.y13_c00145{bottom:294.630000px;}
.yc_c00145{bottom:294.825000px;}
.y4_c00145{bottom:295.470000px;}
.y5_c00145{bottom:295.695000px;}
.yd_c00145{bottom:296.970000px;}
.y10_c00145{bottom:308.325000px;}
.y15_c00145{bottom:308.550000px;}
.yf_c00145{bottom:309.405000px;}
.y14_c00145{bottom:309.630000px;}
.y11_c00145{bottom:310.470000px;}
.ye_c00145{bottom:311.550000px;}
.y1b_c00145{bottom:322.470000px;}
.y16_c00145{bottom:323.325000px;}
.y19_c00145{bottom:323.550000px;}
.y1a_c00145{bottom:324.405000px;}
.y18_c00145{bottom:324.630000px;}
.y17_c00145{bottom:325.470000px;}
.y2_c00145{bottom:1097.550000px;}
.y1_c00145{bottom:1099.905000px;}
.h4_c00145{height:16.752334px;}
.h5_c00145{height:23.025234px;}
.h2_c00145{height:25.091602px;}
.h3_c00145{height:31.364502px;}
.h1_c00145{height:35.571035px;}
.h6_c00145{height:39.777568px;}
.h0_c00145{height:1335.000000px;}
.w0_c00145{width:880.500000px;}
.x0_c00145{left:0.000000px;}
.x1d_c00145{left:151.920000px;}
.x1_c00145{left:156.420000px;}
.x1a_c00145{left:170.580000px;}
.x2d_c00145{left:181.080000px;}
.x2e_c00145{left:205.500000px;}
.x1e_c00145{left:220.500000px;}
.x1f_c00145{left:244.920000px;}
.x2f_c00145{left:256.080000px;}
.x1b_c00145{left:258.000000px;}
.x9_c00145{left:282.000000px;}
.x30_c00145{left:283.500000px;}
.x20_c00145{left:291.420000px;}
.x15_c00145{left:308.580000px;}
.x21_c00145{left:311.355000px;}
.x22_c00145{left:328.920000px;}
.xa_c00145{left:330.420000px;}
.x31_c00145{left:334.500000px;}
.x23_c00145{left:345.420000px;}
.x32_c00145{left:349.500000px;}
.xb_c00145{left:382.500000px;}
.x33_c00145{left:385.920000px;}
.x24_c00145{left:388.500000px;}
.x16_c00145{left:394.080000px;}
.xc_c00145{left:399.000000px;}
.x2_c00145{left:403.500000px;}
.x34_c00145{left:421.920000px;}
.x25_c00145{left:426.000000px;}
.xd_c00145{left:433.500000px;}
.x28_c00145{left:436.920000px;}
.x3_c00145{left:445.500000px;}
.xe_c00145{left:448.500000px;}
.xf_c00145{left:475.080000px;}
.x26_c00145{left:481.920000px;}
.x10_c00145{left:492.420000px;}
.x4_c00145{left:504.000000px;}
.x29_c00145{left:511.500000px;}
.x11_c00145{left:520.920000px;}
.x27_c00145{left:532.500000px;}
.x12_c00145{left:535.920000px;}
.x17_c00145{left:550.500000px;}
.x5_c00145{left:554.580000px;}
.x13_c00145{left:564.420000px;}
.x6_c00145{left:577.080000px;}
.x14_c00145{left:579.420000px;}
.x18_c00145{left:603.000000px;}
.x2a_c00145{left:614.580000px;}
.x7_c00145{left:648.000000px;}
.x19_c00145{left:658.500000px;}
.x2b_c00145{left:669.000000px;}
.x2c_c00145{left:692.355000px;}
.x8_c00145{left:694.500000px;}
.x1c_c00145{left:712.080000px;}
@media print{
.v0_c00145{vertical-align:0.000000pt;}
.ls0_c00145{letter-spacing:0.000000pt;}
.ws0_c00145{word-spacing:-4.048606pt;}
.ws1_c00145{word-spacing:0.000000pt;}
.fs3_c00145{font-size:12.106667pt;}
.fs4_c00145{font-size:16.640000pt;}
.fs1_c00145{font-size:18.133333pt;}
.fs2_c00145{font-size:22.666667pt;}
.fs0_c00145{font-size:25.706667pt;}
.fs5_c00145{font-size:28.746667pt;}
.y0_c00145{bottom:0.000000pt;}
.ya_c00145{bottom:246.640000pt;}
.yb_c00145{bottom:247.600000pt;}
.y6_c00145{bottom:248.360000pt;}
.y9_c00145{bottom:248.560000pt;}
.y7_c00145{bottom:249.306667pt;}
.y8_c00145{bottom:250.266667pt;}
.y12_c00145{bottom:260.733333pt;}
.y3_c00145{bottom:261.693333pt;}
.y13_c00145{bottom:261.893333pt;}
.yc_c00145{bottom:262.066667pt;}
.y4_c00145{bottom:262.640000pt;}
.y5_c00145{bottom:262.840000pt;}
.yd_c00145{bottom:263.973333pt;}
.y10_c00145{bottom:274.066667pt;}
.y15_c00145{bottom:274.266667pt;}
.yf_c00145{bottom:275.026667pt;}
.y14_c00145{bottom:275.226667pt;}
.y11_c00145{bottom:275.973333pt;}
.ye_c00145{bottom:276.933333pt;}
.y1b_c00145{bottom:286.640000pt;}
.y16_c00145{bottom:287.400000pt;}
.y19_c00145{bottom:287.600000pt;}
.y1a_c00145{bottom:288.360000pt;}
.y18_c00145{bottom:288.560000pt;}
.y17_c00145{bottom:289.306667pt;}
.y2_c00145{bottom:975.600000pt;}
.y1_c00145{bottom:977.693333pt;}
.h4_c00145{height:14.890964pt;}
.h5_c00145{height:20.466875pt;}
.h2_c00145{height:22.303646pt;}
.h3_c00145{height:27.879557pt;}
.h1_c00145{height:31.618698pt;}
.h6_c00145{height:35.357839pt;}
.h0_c00145{height:1186.666667pt;}
.w0_c00145{width:782.666667pt;}
.x0_c00145{left:0.000000pt;}
.x1d_c00145{left:135.040000pt;}
.x1_c00145{left:139.040000pt;}
.x1a_c00145{left:151.626667pt;}
.x2d_c00145{left:160.960000pt;}
.x2e_c00145{left:182.666667pt;}
.x1e_c00145{left:196.000000pt;}
.x1f_c00145{left:217.706667pt;}
.x2f_c00145{left:227.626667pt;}
.x1b_c00145{left:229.333333pt;}
.x9_c00145{left:250.666667pt;}
.x30_c00145{left:252.000000pt;}
.x20_c00145{left:259.040000pt;}
.x15_c00145{left:274.293333pt;}
.x21_c00145{left:276.760000pt;}
.x22_c00145{left:292.373333pt;}
.xa_c00145{left:293.706667pt;}
.x31_c00145{left:297.333333pt;}
.x23_c00145{left:307.040000pt;}
.x32_c00145{left:310.666667pt;}
.xb_c00145{left:340.000000pt;}
.x33_c00145{left:343.040000pt;}
.x24_c00145{left:345.333333pt;}
.x16_c00145{left:350.293333pt;}
.xc_c00145{left:354.666667pt;}
.x2_c00145{left:358.666667pt;}
.x34_c00145{left:375.040000pt;}
.x25_c00145{left:378.666667pt;}
.xd_c00145{left:385.333333pt;}
.x28_c00145{left:388.373333pt;}
.x3_c00145{left:396.000000pt;}
.xe_c00145{left:398.666667pt;}
.xf_c00145{left:422.293333pt;}
.x26_c00145{left:428.373333pt;}
.x10_c00145{left:437.706667pt;}
.x4_c00145{left:448.000000pt;}
.x29_c00145{left:454.666667pt;}
.x11_c00145{left:463.040000pt;}
.x27_c00145{left:473.333333pt;}
.x12_c00145{left:476.373333pt;}
.x17_c00145{left:489.333333pt;}
.x5_c00145{left:492.960000pt;}
.x13_c00145{left:501.706667pt;}
.x6_c00145{left:512.960000pt;}
.x14_c00145{left:515.040000pt;}
.x18_c00145{left:536.000000pt;}
.x2a_c00145{left:546.293333pt;}
.x7_c00145{left:576.000000pt;}
.x19_c00145{left:585.333333pt;}
.x2b_c00145{left:594.666667pt;}
.x2c_c00145{left:615.426667pt;}
.x8_c00145{left:617.333333pt;}
.x1c_c00145{left:632.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_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_ef3ce872b6aa22653b1a2116.woff2')format("woff");}.ff1_c00146{font-family:ff1_c00146;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mac_c00146{transform:matrix(0.322689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322689,0.000000,0.000000,0.250000,0,0);}
.m57_c00146{transform:matrix(0.327922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327922,0.000000,0.000000,0.250000,0,0);}
.mcc_c00146{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m61_c00146{transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);}
.m2e_c00146{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.ma5_c00146{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.md0_c00146{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mdd_c00146{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m9f_c00146{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m10_c00146{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m58_c00146{transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);}
.ma8_c00146{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.md3_c00146{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m86_c00146{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m79_c00146{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.md9_c00146{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m50_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);}
.m84_c00146{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m23_c00146{transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);}
.m71_c00146{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.me3_c00146{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.mc6_c00146{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mbb_c00146{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m15_c00146{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m59_c00146{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.me4_c00146{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m8a_c00146{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mad_c00146{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m43_c00146{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m64_c00146{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m6_c00146{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m68_c00146{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mc1_c00146{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m85_c00146{transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);}
.m67_c00146{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.mb7_c00146{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m45_c00146{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m75_c00146{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m92_c00146{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.m81_c00146{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m1d_c00146{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m5f_c00146{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m77_c00146{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mb2_c00146{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m24_c00146{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m72_c00146{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m91_c00146{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.mb5_c00146{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m9b_c00146{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m98_c00146{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.md5_c00146{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m89_c00146{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m2a_c00146{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m78_c00146{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m66_c00146{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m70_c00146{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mb4_c00146{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m6d_c00146{transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);}
.m5c_c00146{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m2c_c00146{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.mda_c00146{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m6f_c00146{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.mdb_c00146{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m56_c00146{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.md_c00146{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m5a_c00146{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.md8_c00146{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m60_c00146{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m69_c00146{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.me6_c00146{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m76_c00146{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.mba_c00146{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m3e_c00146{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mb9_c00146{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.md1_c00146{transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);}
.md7_c00146{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mde_c00146{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.m63_c00146{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m74_c00146{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m4d_c00146{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m93_c00146{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m46_c00146{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.mca_c00146{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m1_c00146{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m94_c00146{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.ma2_c00146{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m5_c00146{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m4e_c00146{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m2_c00146{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m82_c00146{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.m95_c00146{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.m7a_c00146{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m48_c00146{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m39_c00146{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.mc9_c00146{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.m9a_c00146{transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);}
.m73_c00146{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mdf_c00146{transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);}
.mc3_c00146{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.m47_c00146{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m41_c00146{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.md2_c00146{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m90_c00146{transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);}
.mc2_c00146{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m99_c00146{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.ma7_c00146{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m9_c00146{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m42_c00146{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.mc_c00146{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m9c_c00146{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m20_c00146{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m5b_c00146{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m8f_c00146{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.me9_c00146{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mc4_c00146{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.md4_c00146{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m18_c00146{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.ma_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);}
.m80_c00146{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m3a_c00146{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.ma9_c00146{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m7c_c00146{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mbe_c00146{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mbf_c00146{transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);}
.m1e_c00146{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.me0_c00146{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.maf_c00146{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.mcf_c00146{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.me1_c00146{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m8_c00146{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mb0_c00146{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m22_c00146{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m97_c00146{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m8b_c00146{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.ma3_c00146{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mb1_c00146{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m44_c00146{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.me8_c00146{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m6c_c00146{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.me5_c00146{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m33_c00146{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m51_c00146{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m87_c00146{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m52_c00146{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m1c_c00146{transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);}
.m26_c00146{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m3_c00146{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m5d_c00146{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.mc5_c00146{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m25_c00146{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.ma1_c00146{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m19_c00146{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mce_c00146{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m4f_c00146{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m4c_c00146{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mab_c00146{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m2d_c00146{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m7e_c00146{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.me_c00146{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m6b_c00146{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mb8_c00146{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m9d_c00146{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m62_c00146{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m28_c00146{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mc8_c00146{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m3f_c00146{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m6e_c00146{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m53_c00146{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m65_c00146{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mcd_c00146{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m1b_c00146{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m13_c00146{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m6a_c00146{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m3c_c00146{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m32_c00146{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m21_c00146{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m12_c00146{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.me2_c00146{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m54_c00146{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m31_c00146{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m88_c00146{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m7d_c00146{transform:matrix(0.570965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570965,0.000000,0.000000,0.250000,0,0);}
.m2b_c00146{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m17_c00146{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.ma0_c00146{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mb_c00146{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m36_c00146{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mb3_c00146{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m2f_c00146{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m9e_c00146{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m37_c00146{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m55_c00146{transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);}
.mc0_c00146{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.me7_c00146{transform:matrix(0.589981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589981,0.000000,0.000000,0.250000,0,0);}
.m27_c00146{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m4a_c00146{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mcb_c00146{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mb6_c00146{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m4_c00146{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.mbd_c00146{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m34_c00146{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m8e_c00146{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.m96_c00146{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m16_c00146{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m40_c00146{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m8d_c00146{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.maa_c00146{transform:matrix(0.616701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616701,0.000000,0.000000,0.250000,0,0);}
.m49_c00146{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.mae_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);}
.m11_c00146{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m1f_c00146{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m83_c00146{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.mc7_c00146{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m14_c00146{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mf_c00146{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m0_c00146{transform:matrix(0.673077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673077,0.000000,0.000000,0.250000,0,0);}
.m3b_c00146{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mdc_c00146{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m8c_c00146{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m7_c00146{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m35_c00146{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m30_c00146{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m7b_c00146{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m4b_c00146{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m38_c00146{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.ma6_c00146{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m1a_c00146{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m29_c00146{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.m7f_c00146{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.md6_c00146{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m3d_c00146{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mbc_c00146{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m5e_c00146{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.ma4_c00146{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00146{vertical-align:0.000000px;}
.ls0_c00146{letter-spacing:0.000000px;}
.sc__c00146{text-shadow:none;}
.sc0_c00146{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00146{-webkit-text-stroke:0px transparent;}
.sc0_c00146{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00146{word-spacing:0.000000px;}
.fc0_c00146{color:transparent;}
.fs6_c00146{font-size:3.420000px;}
.fs0_c00146{font-size:18.720000px;}
.fs3_c00146{font-size:25.500000px;}
.fs1_c00146{font-size:28.920000px;}
.fs2_c00146{font-size:32.340000px;}
.fs4_c00146{font-size:35.700000px;}
.fs5_c00146{font-size:39.120000px;}
.y0_c00146{bottom:0.000000px;}
.yd0_c00146{bottom:253.470000px;}
.yd1_c00146{bottom:253.905000px;}
.ycc_c00146{bottom:271.245000px;}
.yce_c00146{bottom:272.325000px;}
.ycd_c00146{bottom:273.405000px;}
.ycf_c00146{bottom:273.630000px;}
.yc9_c00146{bottom:290.745000px;}
.ycb_c00146{bottom:291.825000px;}
.yc7_c00146{bottom:292.905000px;}
.yca_c00146{bottom:293.130000px;}
.yc8_c00146{bottom:294.405000px;}
.yc2_c00146{bottom:311.745000px;}
.yc5_c00146{bottom:312.405000px;}
.yc3_c00146{bottom:312.630000px;}
.yc6_c00146{bottom:312.825000px;}
.yc4_c00146{bottom:313.905000px;}
.yc0_c00146{bottom:331.245000px;}
.yc1_c00146{bottom:332.130000px;}
.ybd_c00146{bottom:332.970000px;}
.ybe_c00146{bottom:333.405000px;}
.ybf_c00146{bottom:333.630000px;}
.yba_c00146{bottom:350.325000px;}
.ybb_c00146{bottom:350.745000px;}
.ybc_c00146{bottom:351.630000px;}
.yb9_c00146{bottom:351.825000px;}
.yb8_c00146{bottom:352.905000px;}
.yb5_c00146{bottom:369.405000px;}
.yb3_c00146{bottom:370.245000px;}
.yb6_c00146{bottom:371.130000px;}
.yb7_c00146{bottom:371.325000px;}
.yb2_c00146{bottom:372.405000px;}
.yb4_c00146{bottom:373.470000px;}
.yb1_c00146{bottom:389.745000px;}
.yae_c00146{bottom:391.245000px;}
.yb0_c00146{bottom:391.905000px;}
.yaf_c00146{bottom:393.405000px;}
.yac_c00146{bottom:410.745000px;}
.yad_c00146{bottom:411.630000px;}
.yab_c00146{bottom:412.905000px;}
.yaa_c00146{bottom:428.745000px;}
.ya7_c00146{bottom:429.825000px;}
.ya5_c00146{bottom:430.245000px;}
.ya9_c00146{bottom:430.905000px;}
.ya6_c00146{bottom:431.130000px;}
.ya8_c00146{bottom:431.970000px;}
.ya4_c00146{bottom:432.405000px;}
.ya1_c00146{bottom:449.325000px;}
.y9f_c00146{bottom:449.745000px;}
.ya3_c00146{bottom:449.970000px;}
.ya2_c00146{bottom:450.630000px;}
.ya0_c00146{bottom:451.905000px;}
.y9e_c00146{bottom:467.970000px;}
.y9b_c00146{bottom:469.245000px;}
.y9c_c00146{bottom:470.130000px;}
.y9d_c00146{bottom:470.325000px;}
.y9a_c00146{bottom:471.405000px;}
.y98_c00146{bottom:488.745000px;}
.y97_c00146{bottom:490.905000px;}
.y99_c00146{bottom:491.970000px;}
.y96_c00146{bottom:506.970000px;}
.y95_c00146{bottom:507.405000px;}
.y93_c00146{bottom:508.245000px;}
.y94_c00146{bottom:509.130000px;}
.y91_c00146{bottom:509.745000px;}
.y92_c00146{bottom:510.405000px;}
.y90_c00146{bottom:527.745000px;}
.y8d_c00146{bottom:529.245000px;}
.y8f_c00146{bottom:529.905000px;}
.y8e_c00146{bottom:531.405000px;}
.y8c_c00146{bottom:547.245000px;}
.y8a_c00146{bottom:548.745000px;}
.y8b_c00146{bottom:549.630000px;}
.y88_c00146{bottom:550.905000px;}
.y89_c00146{bottom:550.920000px;}
.y87_c00146{bottom:567.405000px;}
.y86_c00146{bottom:570.405000px;}
.y84_c00146{bottom:587.745000px;}
.y85_c00146{bottom:588.630000px;}
.y83_c00146{bottom:589.470000px;}
.y82_c00146{bottom:589.905000px;}
.y81_c00146{bottom:606.825000px;}
.y7e_c00146{bottom:607.245000px;}
.y80_c00146{bottom:608.130000px;}
.y7f_c00146{bottom:609.405000px;}
.y7a_c00146{bottom:626.745000px;}
.y7d_c00146{bottom:626.970000px;}
.y7c_c00146{bottom:627.825000px;}
.y79_c00146{bottom:628.905000px;}
.y7b_c00146{bottom:629.130000px;}
.y75_c00146{bottom:646.245000px;}
.y77_c00146{bottom:647.325000px;}
.y76_c00146{bottom:648.405000px;}
.y78_c00146{bottom:648.630000px;}
.y74_c00146{bottom:665.745000px;}
.y73_c00146{bottom:666.825000px;}
.y70_c00146{bottom:667.905000px;}
.y71_c00146{bottom:668.130000px;}
.y6f_c00146{bottom:668.970000px;}
.y72_c00146{bottom:669.405000px;}
.y6a_c00146{bottom:686.745000px;}
.y6e_c00146{bottom:687.630000px;}
.y6d_c00146{bottom:687.825000px;}
.y6c_c00146{bottom:688.905000px;}
.y6b_c00146{bottom:689.970000px;}
.y66_c00146{bottom:706.245000px;}
.y68_c00146{bottom:707.325000px;}
.y69_c00146{bottom:707.970000px;}
.y67_c00146{bottom:708.405000px;}
.y65_c00146{bottom:709.470000px;}
.y63_c00146{bottom:724.905000px;}
.y62_c00146{bottom:725.745000px;}
.y64_c00146{bottom:726.825000px;}
.y60_c00146{bottom:727.905000px;}
.y5f_c00146{bottom:728.130000px;}
.y61_c00146{bottom:728.970000px;}
.y5e_c00146{bottom:745.245000px;}
.y5c_c00146{bottom:746.130000px;}
.y5d_c00146{bottom:746.325000px;}
.y5b_c00146{bottom:746.970000px;}
.y5a_c00146{bottom:747.405000px;}
.y56_c00146{bottom:764.745000px;}
.y58_c00146{bottom:766.245000px;}
.y59_c00146{bottom:766.905000px;}
.y57_c00146{bottom:767.130000px;}
.y54_c00146{bottom:783.405000px;}
.y51_c00146{bottom:784.245000px;}
.y55_c00146{bottom:785.325000px;}
.y50_c00146{bottom:785.745000px;}
.y53_c00146{bottom:786.405000px;}
.y52_c00146{bottom:786.630000px;}
.y4e_c00146{bottom:786.825000px;}
.y4f_c00146{bottom:787.905000px;}
.y4d_c00146{bottom:804.825000px;}
.y4a_c00146{bottom:805.245000px;}
.y4c_c00146{bottom:805.905000px;}
.y4b_c00146{bottom:807.405000px;}
.y48_c00146{bottom:822.405000px;}
.y49_c00146{bottom:823.245000px;}
.y47_c00146{bottom:824.745000px;}
.y45_c00146{bottom:825.405000px;}
.y46_c00146{bottom:825.630000px;}
.y44_c00146{bottom:826.905000px;}
.y43_c00146{bottom:844.245000px;}
.y40_c00146{bottom:845.130000px;}
.y42_c00146{bottom:845.325000px;}
.y41_c00146{bottom:846.405000px;}
.y3e_c00146{bottom:862.245000px;}
.y3d_c00146{bottom:862.680000px;}
.y3c_c00146{bottom:863.325000px;}
.y3b_c00146{bottom:863.745000px;}
.y3f_c00146{bottom:864.630000px;}
.y3a_c00146{bottom:865.905000px;}
.y35_c00146{bottom:883.245000px;}
.y38_c00146{bottom:884.130000px;}
.y39_c00146{bottom:884.970000px;}
.y37_c00146{bottom:885.405000px;}
.y36_c00146{bottom:886.470000px;}
.y31_c00146{bottom:902.745000px;}
.y34_c00146{bottom:903.825000px;}
.y32_c00146{bottom:904.905000px;}
.y33_c00146{bottom:905.130000px;}
.y30_c00146{bottom:922.245000px;}
.y2e_c00146{bottom:923.325000px;}
.y2c_c00146{bottom:924.405000px;}
.y2d_c00146{bottom:924.630000px;}
.y2f_c00146{bottom:925.470000px;}
.y2b_c00146{bottom:925.905000px;}
.y29_c00146{bottom:941.745000px;}
.y28_c00146{bottom:943.245000px;}
.y2a_c00146{bottom:943.905000px;}
.y26_c00146{bottom:944.130000px;}
.y27_c00146{bottom:944.325000px;}
.y25_c00146{bottom:945.405000px;}
.y24_c00146{bottom:961.245000px;}
.y22_c00146{bottom:963.405000px;}
.y21_c00146{bottom:963.630000px;}
.y23_c00146{bottom:964.470000px;}
.y1a_c00146{bottom:979.905000px;}
.y20_c00146{bottom:980.970000px;}
.y1f_c00146{bottom:982.245000px;}
.y1b_c00146{bottom:983.130000px;}
.y1e_c00146{bottom:983.325000px;}
.y1d_c00146{bottom:983.970000px;}
.y1c_c00146{bottom:984.405000px;}
.y17_c00146{bottom:1001.745000px;}
.y18_c00146{bottom:1002.630000px;}
.y16_c00146{bottom:1002.825000px;}
.y19_c00146{bottom:1003.470000px;}
.y15_c00146{bottom:1003.905000px;}
.y12_c00146{bottom:1021.245000px;}
.y11_c00146{bottom:1022.130000px;}
.y14_c00146{bottom:1022.325000px;}
.y10_c00146{bottom:1023.405000px;}
.y13_c00146{bottom:1024.470000px;}
.yd_c00146{bottom:1039.470000px;}
.yb_c00146{bottom:1039.905000px;}
.ya_c00146{bottom:1040.745000px;}
.ye_c00146{bottom:1041.630000px;}
.y9_c00146{bottom:1041.825000px;}
.yc_c00146{bottom:1042.470000px;}
.y8_c00146{bottom:1042.905000px;}
.yf_c00146{bottom:1043.970000px;}
.y6_c00146{bottom:1060.245000px;}
.y7_c00146{bottom:1061.130000px;}
.y3_c00146{bottom:1061.325000px;}
.y5_c00146{bottom:1061.970000px;}
.y4_c00146{bottom:1062.405000px;}
.y2_c00146{bottom:1098.405000px;}
.y1_c00146{bottom:1101.630000px;}
.h7_c00146{height:4.206533px;}
.h1_c00146{height:23.025234px;}
.h4_c00146{height:31.364502px;}
.h2_c00146{height:35.571035px;}
.h3_c00146{height:39.777568px;}
.h5_c00146{height:43.910303px;}
.h6_c00146{height:48.116836px;}
.h0_c00146{height:1335.000000px;}
.w0_c00146{width:880.500000px;}
.x0_c00146{left:0.000000px;}
.x2d_c00146{left:150.645000px;}
.x3_c00146{left:151.920000px;}
.xdb_c00146{left:153.000000px;}
.x76_c00146{left:167.580000px;}
.x86_c00146{left:169.920000px;}
.xbb_c00146{left:172.500000px;}
.x2e_c00146{left:180.000000px;}
.x7c_c00146{left:181.080000px;}
.xf5_c00146{left:183.000000px;}
.x20_c00146{left:189.420000px;}
.x47_c00146{left:190.920000px;}
.xa2_c00146{left:192.000000px;}
.x10_c00146{left:193.080000px;}
.x5a_c00146{left:195.420000px;}
.x3b_c00146{left:198.000000px;}
.xcb_c00146{left:199.080000px;}
.x50_c00146{left:201.000000px;}
.x9b_c00146{left:202.500000px;}
.x6b_c00146{left:203.580000px;}
.x95_c00146{left:207.420000px;}
.x2f_c00146{left:209.580000px;}
.xa3_c00146{left:211.920000px;}
.xa9_c00146{left:214.500000px;}
.xe6_c00146{left:217.500000px;}
.x110_c00146{left:218.580000px;}
.xbc_c00146{left:220.920000px;}
.x62_c00146{left:222.420000px;}
.x21_c00146{left:223.500000px;}
.x11_c00146{left:225.855000px;}
.x10c_c00146{left:229.080000px;}
.x3c_c00146{left:230.580000px;}
.xe7_c00146{left:232.920000px;}
.x4_c00146{left:234.420000px;}
.xd2_c00146{left:237.000000px;}
.xc8_c00146{left:238.500000px;}
.x30_c00146{left:240.855000px;}
.x7d_c00146{left:241.920000px;}
.x8e_c00146{left:244.080000px;}
.xed_c00146{left:246.000000px;}
.xf8_c00146{left:247.500000px;}
.x5b_c00146{left:249.420000px;}
.x6c_c00146{left:250.500000px;}
.x51_c00146{left:255.000000px;}
.xf6_c00146{left:256.500000px;}
.xb0_c00146{left:258.000000px;}
.xee_c00146{left:259.080000px;}
.x5_c00146{left:260.580000px;}
.xcc_c00146{left:262.080000px;}
.x3d_c00146{left:264.000000px;}
.x22_c00146{left:265.920000px;}
.x7e_c00146{left:267.000000px;}
.x87_c00146{left:268.500000px;}
.xd9_c00146{left:273.000000px;}
.x48_c00146{left:274.080000px;}
.xa4_c00146{left:276.000000px;}
.xc9_c00146{left:280.500000px;}
.xfa_c00146{left:281.580000px;}
.x52_c00146{left:283.500000px;}
.x3e_c00146{left:285.420000px;}
.x31_c00146{left:286.500000px;}
.x12_c00146{left:288.420000px;}
.x77_c00146{left:289.500000px;}
.xcd_c00146{left:292.500000px;}
.xb1_c00146{left:294.420000px;}
.x6d_c00146{left:295.500000px;}
.x8f_c00146{left:297.000000px;}
.xf7_c00146{left:298.080000px;}
.x10d_c00146{left:299.580000px;}
.x23_c00146{left:303.000000px;}
.x49_c00146{left:306.420000px;}
.x10a_c00146{left:307.920000px;}
.xdc_c00146{left:309.000000px;}
.xff_c00146{left:310.920000px;}
.x3f_c00146{left:313.500000px;}
.x78_c00146{left:316.080000px;}
.x6_c00146{left:319.920000px;}
.x88_c00146{left:322.500000px;}
.x6e_c00146{left:324.420000px;}
.x7f_c00146{left:325.920000px;}
.xb6_c00146{left:330.000000px;}
.x4a_c00146{left:331.080000px;}
.xfb_c00146{left:333.420000px;}
.x5c_c00146{left:334.500000px;}
.x100_c00146{left:336.000000px;}
.x24_c00146{left:337.500000px;}
.x90_c00146{left:339.420000px;}
.xd3_c00146{left:340.500000px;}
.xaa_c00146{left:342.000000px;}
.x7_c00146{left:343.500000px;}
.x13_c00146{left:346.920000px;}
.x89_c00146{left:348.420000px;}
.x80_c00146{left:352.500000px;}
.x5d_c00146{left:354.000000px;}
.x40_c00146{left:355.920000px;}
.xef_c00146{left:357.420000px;}
.x25_c00146{left:358.920000px;}
.xdd_c00146{left:360.420000px;}
.x63_c00146{left:364.080000px;}
.x53_c00146{left:366.420000px;}
.xc6_c00146{left:367.500000px;}
.x4b_c00146{left:372.000000px;}
.x79_c00146{left:376.500000px;}
.xea_c00146{left:377.580000px;}
.x32_c00146{left:379.920000px;}
.xa5_c00146{left:381.420000px;}
.x64_c00146{left:382.920000px;}
.xe2_c00146{left:384.000000px;}
.x14_c00146{left:385.500000px;}
.xb2_c00146{left:387.000000px;}
.xca_c00146{left:389.580000px;}
.xb7_c00146{left:391.500000px;}
.x26_c00146{left:393.000000px;}
.x54_c00146{left:394.080000px;}
.x41_c00146{left:395.580000px;}
.x1_c00146{left:397.500000px;}
.x6f_c00146{left:399.000000px;}
.x15_c00146{left:402.000000px;}
.x33_c00146{left:405.000000px;}
.xf0_c00146{left:406.500000px;}
.x5e_c00146{left:408.000000px;}
.x65_c00146{left:409.500000px;}
.x4c_c00146{left:411.000000px;}
.xfc_c00146{left:413.580000px;}
.x8_c00146{left:415.500000px;}
.x42_c00146{left:417.420000px;}
.xf9_c00146{left:418.500000px;}
.xc7_c00146{left:420.000000px;}
.x16_c00146{left:421.080000px;}
.x105_c00146{left:423.000000px;}
.xe8_c00146{left:426.420000px;}
.x70_c00146{left:429.000000px;}
.x8a_c00146{left:430.920000px;}
.x17_c00146{left:433.500000px;}
.xce_c00146{left:434.580000px;}
.x9_c00146{left:436.920000px;}
.x9c_c00146{left:438.000000px;}
.x96_c00146{left:439.500000px;}
.xbd_c00146{left:440.580000px;}
.x34_c00146{left:442.500000px;}
.x27_c00146{left:444.000000px;}
.x43_c00146{left:445.920000px;}
.x66_c00146{left:447.000000px;}
.x81_c00146{left:448.080000px;}
.xf1_c00146{left:450.000000px;}
.x97_c00146{left:451.500000px;}
.xcf_c00146{left:453.000000px;}
.x107_c00146{left:454.920000px;}
.x91_c00146{left:459.000000px;}
.x7a_c00146{left:460.500000px;}
.x5f_c00146{left:462.420000px;}
.xa_c00146{left:463.920000px;}
.x4d_c00146{left:466.080000px;}
.xb8_c00146{left:467.580000px;}
.x18_c00146{left:472.080000px;}
.x71_c00146{left:473.580000px;}
.xab_c00146{left:477.420000px;}
.xbe_c00146{left:478.500000px;}
.xd0_c00146{left:481.500000px;}
.xa6_c00146{left:484.500000px;}
.xd4_c00146{left:486.000000px;}
.x28_c00146{left:487.500000px;}
.x60_c00146{left:488.580000px;}
.x72_c00146{left:490.920000px;}
.x44_c00146{left:492.000000px;}
.xc2_c00146{left:493.080000px;}
.x106_c00146{left:495.000000px;}
.x8b_c00146{left:496.500000px;}
.xb9_c00146{left:499.500000px;}
.x10b_c00146{left:501.000000px;}
.x101_c00146{left:505.080000px;}
.xb_c00146{left:508.500000px;}
.x9d_c00146{left:513.420000px;}
.x55_c00146{left:514.500000px;}
.x19_c00146{left:517.500000px;}
.x35_c00146{left:519.000000px;}
.x98_c00146{left:520.920000px;}
.x92_c00146{left:523.920000px;}
.xa7_c00146{left:525.000000px;}
.xc3_c00146{left:526.920000px;}
.x29_c00146{left:528.000000px;}
.xbf_c00146{left:529.920000px;}
.x82_c00146{left:531.000000px;}
.x67_c00146{left:532.500000px;}
.xd5_c00146{left:534.000000px;}
.xde_c00146{left:535.500000px;}
.x36_c00146{left:538.080000px;}
.x8c_c00146{left:540.000000px;}
.x56_c00146{left:541.500000px;}
.x9e_c00146{left:543.000000px;}
.xfd_c00146{left:544.080000px;}
.xac_c00146{left:546.000000px;}
.x10e_c00146{left:547.500000px;}
.xe9_c00146{left:549.000000px;}
.x1a_c00146{left:550.500000px;}
.xe3_c00146{left:552.420000px;}
.xb3_c00146{left:553.920000px;}
.x83_c00146{left:555.000000px;}
.x73_c00146{left:556.500000px;}
.xc_c00146{left:560.580000px;}
.x102_c00146{left:562.500000px;}
.xc0_c00146{left:564.000000px;}
.xc4_c00146{left:567.000000px;}
.x74_c00146{left:570.420000px;}
.x1b_c00146{left:571.920000px;}
.x68_c00146{left:573.420000px;}
.x4e_c00146{left:574.500000px;}
.x45_c00146{left:576.000000px;}
.xd_c00146{left:579.420000px;}
.x61_c00146{left:580.500000px;}
.x37_c00146{left:582.420000px;}
.x108_c00146{left:583.500000px;}
.xeb_c00146{left:586.500000px;}
.xad_c00146{left:587.580000px;}
.xf2_c00146{left:589.500000px;}
.xd1_c00146{left:593.580000px;}
.x9f_c00146{left:597.000000px;}
.x57_c00146{left:598.500000px;}
.x69_c00146{left:600.420000px;}
.xd6_c00146{left:601.500000px;}
.xda_c00146{left:603.420000px;}
.xdf_c00146{left:604.500000px;}
.xe_c00146{left:606.420000px;}
.x1c_c00146{left:607.500000px;}
.x38_c00146{left:609.420000px;}
.x84_c00146{left:610.920000px;}
.x2a_c00146{left:612.000000px;}
.x93_c00146{left:613.500000px;}
.x99_c00146{left:618.420000px;}
.x58_c00146{left:619.920000px;}
.x75_c00146{left:622.080000px;}
.x4f_c00146{left:624.420000px;}
.x103_c00146{left:625.500000px;}
.xe4_c00146{left:627.000000px;}
.x1d_c00146{left:628.500000px;}
.xb4_c00146{left:636.420000px;}
.xd7_c00146{left:640.080000px;}
.x6a_c00146{left:642.420000px;}
.xe0_c00146{left:643.920000px;}
.xae_c00146{left:648.420000px;}
.x39_c00146{left:651.420000px;}
.x2b_c00146{left:652.920000px;}
.x7b_c00146{left:654.000000px;}
.x1e_c00146{left:657.000000px;}
.x59_c00146{left:658.500000px;}
.xf3_c00146{left:661.080000px;}
.xb5_c00146{left:663.000000px;}
.xa0_c00146{left:666.000000px;}
.xa8_c00146{left:667.920000px;}
.x94_c00146{left:669.420000px;}
.x104_c00146{left:670.500000px;}
.x10f_c00146{left:673.500000px;}
.xaf_c00146{left:675.000000px;}
.x46_c00146{left:676.500000px;}
.xc1_c00146{left:678.000000px;}
.x9a_c00146{left:679.500000px;}
.x2c_c00146{left:680.580000px;}
.xf4_c00146{left:682.500000px;}
.xa1_c00146{left:685.500000px;}
.xf_c00146{left:688.500000px;}
.xc5_c00146{left:691.500000px;}
.x85_c00146{left:693.420000px;}
.x8d_c00146{left:694.920000px;}
.x1f_c00146{left:696.000000px;}
.xec_c00146{left:697.500000px;}
.xe1_c00146{left:699.000000px;}
.xd8_c00146{left:702.000000px;}
.xba_c00146{left:703.080000px;}
.x2_c00146{left:705.420000px;}
.x3a_c00146{left:706.920000px;}
.xe5_c00146{left:708.420000px;}
.xfe_c00146{left:709.920000px;}
.x109_c00146{left:712.080000px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.ls0_c00146{letter-spacing:0.000000pt;}
.ws0_c00146{word-spacing:0.000000pt;}
.fs6_c00146{font-size:3.040000pt;}
.fs0_c00146{font-size:16.640000pt;}
.fs3_c00146{font-size:22.666667pt;}
.fs1_c00146{font-size:25.706667pt;}
.fs2_c00146{font-size:28.746667pt;}
.fs4_c00146{font-size:31.733333pt;}
.fs5_c00146{font-size:34.773333pt;}
.y0_c00146{bottom:0.000000pt;}
.yd0_c00146{bottom:225.306667pt;}
.yd1_c00146{bottom:225.693333pt;}
.ycc_c00146{bottom:241.106667pt;}
.yce_c00146{bottom:242.066667pt;}
.ycd_c00146{bottom:243.026667pt;}
.ycf_c00146{bottom:243.226667pt;}
.yc9_c00146{bottom:258.440000pt;}
.ycb_c00146{bottom:259.400000pt;}
.yc7_c00146{bottom:260.360000pt;}
.yca_c00146{bottom:260.560000pt;}
.yc8_c00146{bottom:261.693333pt;}
.yc2_c00146{bottom:277.106667pt;}
.yc5_c00146{bottom:277.693333pt;}
.yc3_c00146{bottom:277.893333pt;}
.yc6_c00146{bottom:278.066667pt;}
.yc4_c00146{bottom:279.026667pt;}
.yc0_c00146{bottom:294.440000pt;}
.yc1_c00146{bottom:295.226667pt;}
.ybd_c00146{bottom:295.973333pt;}
.ybe_c00146{bottom:296.360000pt;}
.ybf_c00146{bottom:296.560000pt;}
.yba_c00146{bottom:311.400000pt;}
.ybb_c00146{bottom:311.773333pt;}
.ybc_c00146{bottom:312.560000pt;}
.yb9_c00146{bottom:312.733333pt;}
.yb8_c00146{bottom:313.693333pt;}
.yb5_c00146{bottom:328.360000pt;}
.yb3_c00146{bottom:329.106667pt;}
.yb6_c00146{bottom:329.893333pt;}
.yb7_c00146{bottom:330.066667pt;}
.yb2_c00146{bottom:331.026667pt;}
.yb4_c00146{bottom:331.973333pt;}
.yb1_c00146{bottom:346.440000pt;}
.yae_c00146{bottom:347.773333pt;}
.yb0_c00146{bottom:348.360000pt;}
.yaf_c00146{bottom:349.693333pt;}
.yac_c00146{bottom:365.106667pt;}
.yad_c00146{bottom:365.893333pt;}
.yab_c00146{bottom:367.026667pt;}
.yaa_c00146{bottom:381.106667pt;}
.ya7_c00146{bottom:382.066667pt;}
.ya5_c00146{bottom:382.440000pt;}
.ya9_c00146{bottom:383.026667pt;}
.ya6_c00146{bottom:383.226667pt;}
.ya8_c00146{bottom:383.973333pt;}
.ya4_c00146{bottom:384.360000pt;}
.ya1_c00146{bottom:399.400000pt;}
.y9f_c00146{bottom:399.773333pt;}
.ya3_c00146{bottom:399.973333pt;}
.ya2_c00146{bottom:400.560000pt;}
.ya0_c00146{bottom:401.693333pt;}
.y9e_c00146{bottom:415.973333pt;}
.y9b_c00146{bottom:417.106667pt;}
.y9c_c00146{bottom:417.893333pt;}
.y9d_c00146{bottom:418.066667pt;}
.y9a_c00146{bottom:419.026667pt;}
.y98_c00146{bottom:434.440000pt;}
.y97_c00146{bottom:436.360000pt;}
.y99_c00146{bottom:437.306667pt;}
.y96_c00146{bottom:450.640000pt;}
.y95_c00146{bottom:451.026667pt;}
.y93_c00146{bottom:451.773333pt;}
.y94_c00146{bottom:452.560000pt;}
.y91_c00146{bottom:453.106667pt;}
.y92_c00146{bottom:453.693333pt;}
.y90_c00146{bottom:469.106667pt;}
.y8d_c00146{bottom:470.440000pt;}
.y8f_c00146{bottom:471.026667pt;}
.y8e_c00146{bottom:472.360000pt;}
.y8c_c00146{bottom:486.440000pt;}
.y8a_c00146{bottom:487.773333pt;}
.y8b_c00146{bottom:488.560000pt;}
.y88_c00146{bottom:489.693333pt;}
.y89_c00146{bottom:489.706667pt;}
.y87_c00146{bottom:504.360000pt;}
.y86_c00146{bottom:507.026667pt;}
.y84_c00146{bottom:522.440000pt;}
.y85_c00146{bottom:523.226667pt;}
.y83_c00146{bottom:523.973333pt;}
.y82_c00146{bottom:524.360000pt;}
.y81_c00146{bottom:539.400000pt;}
.y7e_c00146{bottom:539.773333pt;}
.y80_c00146{bottom:540.560000pt;}
.y7f_c00146{bottom:541.693333pt;}
.y7a_c00146{bottom:557.106667pt;}
.y7d_c00146{bottom:557.306667pt;}
.y7c_c00146{bottom:558.066667pt;}
.y79_c00146{bottom:559.026667pt;}
.y7b_c00146{bottom:559.226667pt;}
.y75_c00146{bottom:574.440000pt;}
.y77_c00146{bottom:575.400000pt;}
.y76_c00146{bottom:576.360000pt;}
.y78_c00146{bottom:576.560000pt;}
.y74_c00146{bottom:591.773333pt;}
.y73_c00146{bottom:592.733333pt;}
.y70_c00146{bottom:593.693333pt;}
.y71_c00146{bottom:593.893333pt;}
.y6f_c00146{bottom:594.640000pt;}
.y72_c00146{bottom:595.026667pt;}
.y6a_c00146{bottom:610.440000pt;}
.y6e_c00146{bottom:611.226667pt;}
.y6d_c00146{bottom:611.400000pt;}
.y6c_c00146{bottom:612.360000pt;}
.y6b_c00146{bottom:613.306667pt;}
.y66_c00146{bottom:627.773333pt;}
.y68_c00146{bottom:628.733333pt;}
.y69_c00146{bottom:629.306667pt;}
.y67_c00146{bottom:629.693333pt;}
.y65_c00146{bottom:630.640000pt;}
.y63_c00146{bottom:644.360000pt;}
.y62_c00146{bottom:645.106667pt;}
.y64_c00146{bottom:646.066667pt;}
.y60_c00146{bottom:647.026667pt;}
.y5f_c00146{bottom:647.226667pt;}
.y61_c00146{bottom:647.973333pt;}
.y5e_c00146{bottom:662.440000pt;}
.y5c_c00146{bottom:663.226667pt;}
.y5d_c00146{bottom:663.400000pt;}
.y5b_c00146{bottom:663.973333pt;}
.y5a_c00146{bottom:664.360000pt;}
.y56_c00146{bottom:679.773333pt;}
.y58_c00146{bottom:681.106667pt;}
.y59_c00146{bottom:681.693333pt;}
.y57_c00146{bottom:681.893333pt;}
.y54_c00146{bottom:696.360000pt;}
.y51_c00146{bottom:697.106667pt;}
.y55_c00146{bottom:698.066667pt;}
.y50_c00146{bottom:698.440000pt;}
.y53_c00146{bottom:699.026667pt;}
.y52_c00146{bottom:699.226667pt;}
.y4e_c00146{bottom:699.400000pt;}
.y4f_c00146{bottom:700.360000pt;}
.y4d_c00146{bottom:715.400000pt;}
.y4a_c00146{bottom:715.773333pt;}
.y4c_c00146{bottom:716.360000pt;}
.y4b_c00146{bottom:717.693333pt;}
.y48_c00146{bottom:731.026667pt;}
.y49_c00146{bottom:731.773333pt;}
.y47_c00146{bottom:733.106667pt;}
.y45_c00146{bottom:733.693333pt;}
.y46_c00146{bottom:733.893333pt;}
.y44_c00146{bottom:735.026667pt;}
.y43_c00146{bottom:750.440000pt;}
.y40_c00146{bottom:751.226667pt;}
.y42_c00146{bottom:751.400000pt;}
.y41_c00146{bottom:752.360000pt;}
.y3e_c00146{bottom:766.440000pt;}
.y3d_c00146{bottom:766.826667pt;}
.y3c_c00146{bottom:767.400000pt;}
.y3b_c00146{bottom:767.773333pt;}
.y3f_c00146{bottom:768.560000pt;}
.y3a_c00146{bottom:769.693333pt;}
.y35_c00146{bottom:785.106667pt;}
.y38_c00146{bottom:785.893333pt;}
.y39_c00146{bottom:786.640000pt;}
.y37_c00146{bottom:787.026667pt;}
.y36_c00146{bottom:787.973333pt;}
.y31_c00146{bottom:802.440000pt;}
.y34_c00146{bottom:803.400000pt;}
.y32_c00146{bottom:804.360000pt;}
.y33_c00146{bottom:804.560000pt;}
.y30_c00146{bottom:819.773333pt;}
.y2e_c00146{bottom:820.733333pt;}
.y2c_c00146{bottom:821.693333pt;}
.y2d_c00146{bottom:821.893333pt;}
.y2f_c00146{bottom:822.640000pt;}
.y2b_c00146{bottom:823.026667pt;}
.y29_c00146{bottom:837.106667pt;}
.y28_c00146{bottom:838.440000pt;}
.y2a_c00146{bottom:839.026667pt;}
.y26_c00146{bottom:839.226667pt;}
.y27_c00146{bottom:839.400000pt;}
.y25_c00146{bottom:840.360000pt;}
.y24_c00146{bottom:854.440000pt;}
.y22_c00146{bottom:856.360000pt;}
.y21_c00146{bottom:856.560000pt;}
.y23_c00146{bottom:857.306667pt;}
.y1a_c00146{bottom:871.026667pt;}
.y20_c00146{bottom:871.973333pt;}
.y1f_c00146{bottom:873.106667pt;}
.y1b_c00146{bottom:873.893333pt;}
.y1e_c00146{bottom:874.066667pt;}
.y1d_c00146{bottom:874.640000pt;}
.y1c_c00146{bottom:875.026667pt;}
.y17_c00146{bottom:890.440000pt;}
.y18_c00146{bottom:891.226667pt;}
.y16_c00146{bottom:891.400000pt;}
.y19_c00146{bottom:891.973333pt;}
.y15_c00146{bottom:892.360000pt;}
.y12_c00146{bottom:907.773333pt;}
.y11_c00146{bottom:908.560000pt;}
.y14_c00146{bottom:908.733333pt;}
.y10_c00146{bottom:909.693333pt;}
.y13_c00146{bottom:910.640000pt;}
.yd_c00146{bottom:923.973333pt;}
.yb_c00146{bottom:924.360000pt;}
.ya_c00146{bottom:925.106667pt;}
.ye_c00146{bottom:925.893333pt;}
.y9_c00146{bottom:926.066667pt;}
.yc_c00146{bottom:926.640000pt;}
.y8_c00146{bottom:927.026667pt;}
.yf_c00146{bottom:927.973333pt;}
.y6_c00146{bottom:942.440000pt;}
.y7_c00146{bottom:943.226667pt;}
.y3_c00146{bottom:943.400000pt;}
.y5_c00146{bottom:943.973333pt;}
.y4_c00146{bottom:944.360000pt;}
.y2_c00146{bottom:976.360000pt;}
.y1_c00146{bottom:979.226667pt;}
.h7_c00146{height:3.739141pt;}
.h1_c00146{height:20.466875pt;}
.h4_c00146{height:27.879557pt;}
.h2_c00146{height:31.618698pt;}
.h3_c00146{height:35.357839pt;}
.h5_c00146{height:39.031380pt;}
.h6_c00146{height:42.770521pt;}
.h0_c00146{height:1186.666667pt;}
.w0_c00146{width:782.666667pt;}
.x0_c00146{left:0.000000pt;}
.x2d_c00146{left:133.906667pt;}
.x3_c00146{left:135.040000pt;}
.xdb_c00146{left:136.000000pt;}
.x76_c00146{left:148.960000pt;}
.x86_c00146{left:151.040000pt;}
.xbb_c00146{left:153.333333pt;}
.x2e_c00146{left:160.000000pt;}
.x7c_c00146{left:160.960000pt;}
.xf5_c00146{left:162.666667pt;}
.x20_c00146{left:168.373333pt;}
.x47_c00146{left:169.706667pt;}
.xa2_c00146{left:170.666667pt;}
.x10_c00146{left:171.626667pt;}
.x5a_c00146{left:173.706667pt;}
.x3b_c00146{left:176.000000pt;}
.xcb_c00146{left:176.960000pt;}
.x50_c00146{left:178.666667pt;}
.x9b_c00146{left:180.000000pt;}
.x6b_c00146{left:180.960000pt;}
.x95_c00146{left:184.373333pt;}
.x2f_c00146{left:186.293333pt;}
.xa3_c00146{left:188.373333pt;}
.xa9_c00146{left:190.666667pt;}
.xe6_c00146{left:193.333333pt;}
.x110_c00146{left:194.293333pt;}
.xbc_c00146{left:196.373333pt;}
.x62_c00146{left:197.706667pt;}
.x21_c00146{left:198.666667pt;}
.x11_c00146{left:200.760000pt;}
.x10c_c00146{left:203.626667pt;}
.x3c_c00146{left:204.960000pt;}
.xe7_c00146{left:207.040000pt;}
.x4_c00146{left:208.373333pt;}
.xd2_c00146{left:210.666667pt;}
.xc8_c00146{left:212.000000pt;}
.x30_c00146{left:214.093333pt;}
.x7d_c00146{left:215.040000pt;}
.x8e_c00146{left:216.960000pt;}
.xed_c00146{left:218.666667pt;}
.xf8_c00146{left:220.000000pt;}
.x5b_c00146{left:221.706667pt;}
.x6c_c00146{left:222.666667pt;}
.x51_c00146{left:226.666667pt;}
.xf6_c00146{left:228.000000pt;}
.xb0_c00146{left:229.333333pt;}
.xee_c00146{left:230.293333pt;}
.x5_c00146{left:231.626667pt;}
.xcc_c00146{left:232.960000pt;}
.x3d_c00146{left:234.666667pt;}
.x22_c00146{left:236.373333pt;}
.x7e_c00146{left:237.333333pt;}
.x87_c00146{left:238.666667pt;}
.xd9_c00146{left:242.666667pt;}
.x48_c00146{left:243.626667pt;}
.xa4_c00146{left:245.333333pt;}
.xc9_c00146{left:249.333333pt;}
.xfa_c00146{left:250.293333pt;}
.x52_c00146{left:252.000000pt;}
.x3e_c00146{left:253.706667pt;}
.x31_c00146{left:254.666667pt;}
.x12_c00146{left:256.373333pt;}
.x77_c00146{left:257.333333pt;}
.xcd_c00146{left:260.000000pt;}
.xb1_c00146{left:261.706667pt;}
.x6d_c00146{left:262.666667pt;}
.x8f_c00146{left:264.000000pt;}
.xf7_c00146{left:264.960000pt;}
.x10d_c00146{left:266.293333pt;}
.x23_c00146{left:269.333333pt;}
.x49_c00146{left:272.373333pt;}
.x10a_c00146{left:273.706667pt;}
.xdc_c00146{left:274.666667pt;}
.xff_c00146{left:276.373333pt;}
.x3f_c00146{left:278.666667pt;}
.x78_c00146{left:280.960000pt;}
.x6_c00146{left:284.373333pt;}
.x88_c00146{left:286.666667pt;}
.x6e_c00146{left:288.373333pt;}
.x7f_c00146{left:289.706667pt;}
.xb6_c00146{left:293.333333pt;}
.x4a_c00146{left:294.293333pt;}
.xfb_c00146{left:296.373333pt;}
.x5c_c00146{left:297.333333pt;}
.x100_c00146{left:298.666667pt;}
.x24_c00146{left:300.000000pt;}
.x90_c00146{left:301.706667pt;}
.xd3_c00146{left:302.666667pt;}
.xaa_c00146{left:304.000000pt;}
.x7_c00146{left:305.333333pt;}
.x13_c00146{left:308.373333pt;}
.x89_c00146{left:309.706667pt;}
.x80_c00146{left:313.333333pt;}
.x5d_c00146{left:314.666667pt;}
.x40_c00146{left:316.373333pt;}
.xef_c00146{left:317.706667pt;}
.x25_c00146{left:319.040000pt;}
.xdd_c00146{left:320.373333pt;}
.x63_c00146{left:323.626667pt;}
.x53_c00146{left:325.706667pt;}
.xc6_c00146{left:326.666667pt;}
.x4b_c00146{left:330.666667pt;}
.x79_c00146{left:334.666667pt;}
.xea_c00146{left:335.626667pt;}
.x32_c00146{left:337.706667pt;}
.xa5_c00146{left:339.040000pt;}
.x64_c00146{left:340.373333pt;}
.xe2_c00146{left:341.333333pt;}
.x14_c00146{left:342.666667pt;}
.xb2_c00146{left:344.000000pt;}
.xca_c00146{left:346.293333pt;}
.xb7_c00146{left:348.000000pt;}
.x26_c00146{left:349.333333pt;}
.x54_c00146{left:350.293333pt;}
.x41_c00146{left:351.626667pt;}
.x1_c00146{left:353.333333pt;}
.x6f_c00146{left:354.666667pt;}
.x15_c00146{left:357.333333pt;}
.x33_c00146{left:360.000000pt;}
.xf0_c00146{left:361.333333pt;}
.x5e_c00146{left:362.666667pt;}
.x65_c00146{left:364.000000pt;}
.x4c_c00146{left:365.333333pt;}
.xfc_c00146{left:367.626667pt;}
.x8_c00146{left:369.333333pt;}
.x42_c00146{left:371.040000pt;}
.xf9_c00146{left:372.000000pt;}
.xc7_c00146{left:373.333333pt;}
.x16_c00146{left:374.293333pt;}
.x105_c00146{left:376.000000pt;}
.xe8_c00146{left:379.040000pt;}
.x70_c00146{left:381.333333pt;}
.x8a_c00146{left:383.040000pt;}
.x17_c00146{left:385.333333pt;}
.xce_c00146{left:386.293333pt;}
.x9_c00146{left:388.373333pt;}
.x9c_c00146{left:389.333333pt;}
.x96_c00146{left:390.666667pt;}
.xbd_c00146{left:391.626667pt;}
.x34_c00146{left:393.333333pt;}
.x27_c00146{left:394.666667pt;}
.x43_c00146{left:396.373333pt;}
.x66_c00146{left:397.333333pt;}
.x81_c00146{left:398.293333pt;}
.xf1_c00146{left:400.000000pt;}
.x97_c00146{left:401.333333pt;}
.xcf_c00146{left:402.666667pt;}
.x107_c00146{left:404.373333pt;}
.x91_c00146{left:408.000000pt;}
.x7a_c00146{left:409.333333pt;}
.x5f_c00146{left:411.040000pt;}
.xa_c00146{left:412.373333pt;}
.x4d_c00146{left:414.293333pt;}
.xb8_c00146{left:415.626667pt;}
.x18_c00146{left:419.626667pt;}
.x71_c00146{left:420.960000pt;}
.xab_c00146{left:424.373333pt;}
.xbe_c00146{left:425.333333pt;}
.xd0_c00146{left:428.000000pt;}
.xa6_c00146{left:430.666667pt;}
.xd4_c00146{left:432.000000pt;}
.x28_c00146{left:433.333333pt;}
.x60_c00146{left:434.293333pt;}
.x72_c00146{left:436.373333pt;}
.x44_c00146{left:437.333333pt;}
.xc2_c00146{left:438.293333pt;}
.x106_c00146{left:440.000000pt;}
.x8b_c00146{left:441.333333pt;}
.xb9_c00146{left:444.000000pt;}
.x10b_c00146{left:445.333333pt;}
.x101_c00146{left:448.960000pt;}
.xb_c00146{left:452.000000pt;}
.x9d_c00146{left:456.373333pt;}
.x55_c00146{left:457.333333pt;}
.x19_c00146{left:460.000000pt;}
.x35_c00146{left:461.333333pt;}
.x98_c00146{left:463.040000pt;}
.x92_c00146{left:465.706667pt;}
.xa7_c00146{left:466.666667pt;}
.xc3_c00146{left:468.373333pt;}
.x29_c00146{left:469.333333pt;}
.xbf_c00146{left:471.040000pt;}
.x82_c00146{left:472.000000pt;}
.x67_c00146{left:473.333333pt;}
.xd5_c00146{left:474.666667pt;}
.xde_c00146{left:476.000000pt;}
.x36_c00146{left:478.293333pt;}
.x8c_c00146{left:480.000000pt;}
.x56_c00146{left:481.333333pt;}
.x9e_c00146{left:482.666667pt;}
.xfd_c00146{left:483.626667pt;}
.xac_c00146{left:485.333333pt;}
.x10e_c00146{left:486.666667pt;}
.xe9_c00146{left:488.000000pt;}
.x1a_c00146{left:489.333333pt;}
.xe3_c00146{left:491.040000pt;}
.xb3_c00146{left:492.373333pt;}
.x83_c00146{left:493.333333pt;}
.x73_c00146{left:494.666667pt;}
.xc_c00146{left:498.293333pt;}
.x102_c00146{left:500.000000pt;}
.xc0_c00146{left:501.333333pt;}
.xc4_c00146{left:504.000000pt;}
.x74_c00146{left:507.040000pt;}
.x1b_c00146{left:508.373333pt;}
.x68_c00146{left:509.706667pt;}
.x4e_c00146{left:510.666667pt;}
.x45_c00146{left:512.000000pt;}
.xd_c00146{left:515.040000pt;}
.x61_c00146{left:516.000000pt;}
.x37_c00146{left:517.706667pt;}
.x108_c00146{left:518.666667pt;}
.xeb_c00146{left:521.333333pt;}
.xad_c00146{left:522.293333pt;}
.xf2_c00146{left:524.000000pt;}
.xd1_c00146{left:527.626667pt;}
.x9f_c00146{left:530.666667pt;}
.x57_c00146{left:532.000000pt;}
.x69_c00146{left:533.706667pt;}
.xd6_c00146{left:534.666667pt;}
.xda_c00146{left:536.373333pt;}
.xdf_c00146{left:537.333333pt;}
.xe_c00146{left:539.040000pt;}
.x1c_c00146{left:540.000000pt;}
.x38_c00146{left:541.706667pt;}
.x84_c00146{left:543.040000pt;}
.x2a_c00146{left:544.000000pt;}
.x93_c00146{left:545.333333pt;}
.x99_c00146{left:549.706667pt;}
.x58_c00146{left:551.040000pt;}
.x75_c00146{left:552.960000pt;}
.x4f_c00146{left:555.040000pt;}
.x103_c00146{left:556.000000pt;}
.xe4_c00146{left:557.333333pt;}
.x1d_c00146{left:558.666667pt;}
.xb4_c00146{left:565.706667pt;}
.xd7_c00146{left:568.960000pt;}
.x6a_c00146{left:571.040000pt;}
.xe0_c00146{left:572.373333pt;}
.xae_c00146{left:576.373333pt;}
.x39_c00146{left:579.040000pt;}
.x2b_c00146{left:580.373333pt;}
.x7b_c00146{left:581.333333pt;}
.x1e_c00146{left:584.000000pt;}
.x59_c00146{left:585.333333pt;}
.xf3_c00146{left:587.626667pt;}
.xb5_c00146{left:589.333333pt;}
.xa0_c00146{left:592.000000pt;}
.xa8_c00146{left:593.706667pt;}
.x94_c00146{left:595.040000pt;}
.x104_c00146{left:596.000000pt;}
.x10f_c00146{left:598.666667pt;}
.xaf_c00146{left:600.000000pt;}
.x46_c00146{left:601.333333pt;}
.xc1_c00146{left:602.666667pt;}
.x9a_c00146{left:604.000000pt;}
.x2c_c00146{left:604.960000pt;}
.xf4_c00146{left:606.666667pt;}
.xa1_c00146{left:609.333333pt;}
.xf_c00146{left:612.000000pt;}
.xc5_c00146{left:614.666667pt;}
.x85_c00146{left:616.373333pt;}
.x8d_c00146{left:617.706667pt;}
.x1f_c00146{left:618.666667pt;}
.xec_c00146{left:620.000000pt;}
.xe1_c00146{left:621.333333pt;}
.xd8_c00146{left:624.000000pt;}
.xba_c00146{left:624.960000pt;}
.x2_c00146{left:627.040000pt;}
.x3a_c00146{left:628.373333pt;}
.xe5_c00146{left:629.706667pt;}
.xfe_c00146{left:631.040000pt;}
.x109_c00146{left:632.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_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_a0d6c0e6bc08ddf960d0bf04.woff2')format("woff");}.ff1_c00147{font-family:ff1_c00147;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mac_c00147{transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);}
.m23_c00147{transform:matrix(0.338574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338574,0.000000,0.000000,0.250000,0,0);}
.m64_c00147{transform:matrix(0.357607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357607,0.000000,0.000000,0.250000,0,0);}
.m48_c00147{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m5_c00147{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m42_c00147{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m82_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);}
.mc_c00147{transform:matrix(0.383117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383117,0.000000,0.000000,0.250000,0,0);}
.m67_c00147{transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);}
.m47_c00147{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m8_c00147{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m24_c00147{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m4f_c00147{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m36_c00147{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.mf_c00147{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m1c_c00147{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m20_c00147{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m40_c00147{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mb_c00147{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m6b_c00147{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m3c_c00147{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m18_c00147{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m57_c00147{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m6d_c00147{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m11_c00147{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m4c_c00147{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m2b_c00147{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m4_c00147{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m62_c00147{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m19_c00147{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m84_c00147{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m3b_c00147{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.me_c00147{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m1f_c00147{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m1e_c00147{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m4e_c00147{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m6c_c00147{transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);}
.m74_c00147{transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);}
.m44_c00147{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m35_c00147{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m17_c00147{transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);}
.m1d_c00147{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m59_c00147{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m89_c00147{transform:matrix(0.449339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449339,0.000000,0.000000,0.250000,0,0);}
.m0_c00147{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m76_c00147{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.maa_c00147{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.m2d_c00147{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m85_c00147{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m9d_c00147{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.m92_c00147{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.m95_c00147{transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);}
.m98_c00147{transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);}
.m31_c00147{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.m15_c00147{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m43_c00147{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m7_c00147{transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);}
.m6_c00147{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m12_c00147{transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);}
.m9_c00147{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m7f_c00147{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m7c_c00147{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m29_c00147{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m52_c00147{transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);}
.m14_c00147{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m34_c00147{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m91_c00147{transform:matrix(0.495994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495994,0.000000,0.000000,0.250000,0,0);}
.m39_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);}
.ma3_c00147{transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);}
.m2a_c00147{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.ma2_c00147{transform:matrix(0.514423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514423,0.000000,0.000000,0.250000,0,0);}
.m4b_c00147{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m65_c00147{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);}
.ma8_c00147{transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);}
.m87_c00147{transform:matrix(0.524229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524229,0.000000,0.000000,0.250000,0,0);}
.m37_c00147{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m30_c00147{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m38_c00147{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.ma5_c00147{transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);}
.m33_c00147{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m8d_c00147{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m6a_c00147{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.m69_c00147{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m66_c00147{transform:matrix(0.534706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534706,0.000000,0.000000,0.250000,0,0);}
.m46_c00147{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m28_c00147{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m3a_c00147{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m3f_c00147{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m2c_c00147{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m55_c00147{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m4d_c00147{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m5a_c00147{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m10_c00147{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m25_c00147{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m90_c00147{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m45_c00147{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m2e_c00147{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m21_c00147{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m50_c00147{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m26_c00147{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m13_c00147{transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);}
.m54_c00147{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m81_c00147{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m3e_c00147{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.md_c00147{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.ma1_c00147{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m27_c00147{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m5c_c00147{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);}
.m32_c00147{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.ma_c00147{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m53_c00147{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m1b_c00147{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m2_c00147{transform:matrix(0.582469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582469,0.000000,0.000000,0.250000,0,0);}
.m2f_c00147{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m5d_c00147{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m58_c00147{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.m97_c00147{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.m16_c00147{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m1_c00147{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m5b_c00147{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m70_c00147{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m6e_c00147{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m51_c00147{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m77_c00147{transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);}
.m5f_c00147{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m6f_c00147{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m63_c00147{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);}
.m88_c00147{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.mab_c00147{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.m7d_c00147{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m73_c00147{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m68_c00147{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m5e_c00147{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m9e_c00147{transform:matrix(0.672907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672907,0.000000,0.000000,0.250000,0,0);}
.m80_c00147{transform:matrix(0.676211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676211,0.000000,0.000000,0.250000,0,0);}
.m61_c00147{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m71_c00147{transform:matrix(0.678414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.678414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.678414,0.000000,0.000000,0.250000,0,0);}
.m7a_c00147{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.m72_c00147{transform:matrix(0.680617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680617,0.000000,0.000000,0.250000,0,0);}
.m7b_c00147{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.ma6_c00147{transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);}
.m9f_c00147{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.m75_c00147{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.ma9_c00147{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m8c_c00147{transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);}
.m78_c00147{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.ma7_c00147{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m7e_c00147{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m49_c00147{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m60_c00147{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);}
.m9c_c00147{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.m83_c00147{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m3d_c00147{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.ma4_c00147{transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);}
.m96_c00147{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.m99_c00147{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.m79_c00147{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m4a_c00147{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m22_c00147{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m3_c00147{transform:matrix(0.757059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757059,0.000000,0.000000,0.250000,0,0);}
.m41_c00147{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m8a_c00147{transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);}
.m9b_c00147{transform:matrix(0.779736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779736,0.000000,0.000000,0.250000,0,0);}
.m8f_c00147{transform:matrix(0.786344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786344,0.000000,0.000000,0.250000,0,0);}
.m8e_c00147{transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);}
.m86_c00147{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m56_c00147{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m94_c00147{transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);}
.ma0_c00147{transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);}
.m8b_c00147{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m93_c00147{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.m9a_c00147{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m1a_c00147{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v2_c00147{vertical-align:-6.000000px;}
.v0_c00147{vertical-align:0.000000px;}
.v1_c00147{vertical-align:6.000000px;}
.ls2_c00147{letter-spacing:0.000000px;}
.ls1_c00147{letter-spacing:49.177280px;}
.ls0_c00147{letter-spacing:51.359972px;}
.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;}
}
.ws16_c00147{word-spacing:0.000000px;}
.ws1_c00147{word-spacing:11.466743px;}
.wsb_c00147{word-spacing:15.614929px;}
.wsd_c00147{word-spacing:17.262919px;}
.ws13_c00147{word-spacing:18.138913px;}
.ws5_c00147{word-spacing:19.620812px;}
.ws12_c00147{word-spacing:21.573046px;}
.ws10_c00147{word-spacing:22.176463px;}
.ws4_c00147{word-spacing:23.728109px;}
.wsc_c00147{word-spacing:23.767013px;}
.ws11_c00147{word-spacing:23.887411px;}
.wse_c00147{word-spacing:25.643046px;}
.ws9_c00147{word-spacing:25.883172px;}
.ws14_c00147{word-spacing:31.025931px;}
.ws2_c00147{word-spacing:36.857815px;}
.ws6_c00147{word-spacing:38.705522px;}
.ws15_c00147{word-spacing:39.933737px;}
.wsf_c00147{word-spacing:43.405892px;}
.ws8_c00147{word-spacing:46.335774px;}
.ws0_c00147{word-spacing:47.719225px;}
.ws7_c00147{word-spacing:49.006362px;}
.wsa_c00147{word-spacing:51.676951px;}
.ws3_c00147{word-spacing:67.022836px;}
._7_c00147{width:26.092993px;}
._5_c00147{width:27.372062px;}
._6_c00147{width:29.527126px;}
._3_c00147{width:31.682189px;}
._4_c00147{width:33.837252px;}
._2_c00147{width:42.081451px;}
._1_c00147{width:52.098502px;}
._0_c00147{width:59.248108px;}
.fc0_c00147{color:transparent;}
.fs5_c00147{font-size:3.420000px;}
.fs9_c00147{font-size:11.880000px;}
.fs8_c00147{font-size:13.620000px;}
.fs6_c00147{font-size:18.720000px;}
.fs1_c00147{font-size:20.400000px;}
.fs2_c00147{font-size:25.500000px;}
.fs0_c00147{font-size:28.920000px;}
.fs3_c00147{font-size:32.340000px;}
.fs4_c00147{font-size:35.700000px;}
.fs7_c00147{font-size:39.120000px;}
.y0_c00147{bottom:0.000000px;}
.y32_c00147{bottom:251.745000px;}
.y31_c00147{bottom:253.470000px;}
.y33_c00147{bottom:253.905000px;}
.y2c_c00147{bottom:271.245000px;}
.y2e_c00147{bottom:272.325000px;}
.y2d_c00147{bottom:273.405000px;}
.y30_c00147{bottom:273.630000px;}
.y2f_c00147{bottom:274.905000px;}
.y28_c00147{bottom:290.745000px;}
.y2a_c00147{bottom:292.245000px;}
.y27_c00147{bottom:292.905000px;}
.y2b_c00147{bottom:293.130000px;}
.y29_c00147{bottom:294.405000px;}
.y25_c00147{bottom:311.745000px;}
.y26_c00147{bottom:312.630000px;}
.y23_c00147{bottom:313.905000px;}
.y24_c00147{bottom:313.920000px;}
.y21_c00147{bottom:330.405000px;}
.y20_c00147{bottom:330.825000px;}
.y22_c00147{bottom:332.325000px;}
.y1f_c00147{bottom:333.405000px;}
.y1c_c00147{bottom:350.745000px;}
.y1d_c00147{bottom:351.825000px;}
.y1a_c00147{bottom:352.905000px;}
.y1b_c00147{bottom:352.920000px;}
.y1e_c00147{bottom:353.970000px;}
.y18_c00147{bottom:370.680000px;}
.y19_c00147{bottom:371.745000px;}
.y15_c00147{bottom:372.405000px;}
.y16_c00147{bottom:372.630000px;}
.y17_c00147{bottom:373.920000px;}
.y12_c00147{bottom:391.245000px;}
.y14_c00147{bottom:392.325000px;}
.y13_c00147{bottom:393.420000px;}
.yf_c00147{bottom:410.745000px;}
.y11_c00147{bottom:412.905000px;}
.y10_c00147{bottom:412.920000px;}
.yd_c00147{bottom:438.405000px;}
.ye_c00147{bottom:440.550000px;}
.ya_c00147{bottom:452.325000px;}
.yc_c00147{bottom:453.405000px;}
.yb_c00147{bottom:454.470000px;}
.y8_c00147{bottom:471.825000px;}
.y9_c00147{bottom:472.050000px;}
.y7_c00147{bottom:472.905000px;}
.y6_c00147{bottom:499.245000px;}
.y5_c00147{bottom:500.325000px;}
.y4_c00147{bottom:500.970000px;}
.y3_c00147{bottom:501.405000px;}
.ya2_c00147{bottom:534.195000px;}
.y9f_c00147{bottom:534.630000px;}
.ya0_c00147{bottom:535.695000px;}
.ya1_c00147{bottom:537.195000px;}
.y9d_c00147{bottom:545.550000px;}
.y9e_c00147{bottom:547.695000px;}
.y9a_c00147{bottom:548.130000px;}
.y9b_c00147{bottom:548.775000px;}
.y99_c00147{bottom:549.195000px;}
.y9c_c00147{bottom:550.920000px;}
.y94_c00147{bottom:561.195000px;}
.y96_c00147{bottom:562.275000px;}
.y98_c00147{bottom:562.695000px;}
.y95_c00147{bottom:563.130000px;}
.y97_c00147{bottom:564.420000px;}
.y92_c00147{bottom:576.195000px;}
.y93_c00147{bottom:576.420000px;}
.y90_c00147{bottom:576.630000px;}
.y91_c00147{bottom:577.275000px;}
.y8f_c00147{bottom:589.695000px;}
.y8e_c00147{bottom:590.775000px;}
.y8d_c00147{bottom:591.195000px;}
.y8c_c00147{bottom:603.630000px;}
.y89_c00147{bottom:604.050000px;}
.y8b_c00147{bottom:604.695000px;}
.y8a_c00147{bottom:605.130000px;}
.y88_c00147{bottom:618.195000px;}
.y87_c00147{bottom:618.630000px;}
.y86_c00147{bottom:619.695000px;}
.y85_c00147{bottom:631.695000px;}
.y84_c00147{bottom:633.195000px;}
.y83_c00147{bottom:644.130000px;}
.y81_c00147{bottom:645.195000px;}
.y80_c00147{bottom:645.630000px;}
.y82_c00147{bottom:646.695000px;}
.y7e_c00147{bottom:657.630000px;}
.y7f_c00147{bottom:658.695000px;}
.y7d_c00147{bottom:660.195000px;}
.y7b_c00147{bottom:672.195000px;}
.y79_c00147{bottom:672.630000px;}
.y7a_c00147{bottom:673.695000px;}
.y7c_c00147{bottom:673.920000px;}
.y77_c00147{bottom:686.130000px;}
.y78_c00147{bottom:687.195000px;}
.y75_c00147{bottom:700.695000px;}
.y76_c00147{bottom:701.130000px;}
.y74_c00147{bottom:714.195000px;}
.y71_c00147{bottom:714.630000px;}
.y72_c00147{bottom:715.275000px;}
.y73_c00147{bottom:715.695000px;}
.y70_c00147{bottom:727.695000px;}
.y6f_c00147{bottom:728.130000px;}
.y6c_c00147{bottom:741.195000px;}
.y6d_c00147{bottom:741.630000px;}
.y6e_c00147{bottom:742.695000px;}
.y6b_c00147{bottom:757.695000px;}
.y6a_c00147{bottom:768.630000px;}
.y69_c00147{bottom:769.695000px;}
.y68_c00147{bottom:771.195000px;}
.y67_c00147{bottom:782.130000px;}
.y66_c00147{bottom:783.195000px;}
.y65_c00147{bottom:784.695000px;}
.y64_c00147{bottom:796.695000px;}
.y63_c00147{bottom:798.195000px;}
.y62_c00147{bottom:810.630000px;}
.y61_c00147{bottom:811.695000px;}
.y60_c00147{bottom:825.195000px;}
.y5f_c00147{bottom:825.630000px;}
.y5e_c00147{bottom:826.695000px;}
.y5c_c00147{bottom:838.695000px;}
.y5b_c00147{bottom:839.130000px;}
.y5d_c00147{bottom:840.195000px;}
.y5a_c00147{bottom:852.195000px;}
.y59_c00147{bottom:852.630000px;}
.y58_c00147{bottom:853.695000px;}
.y57_c00147{bottom:865.695000px;}
.y56_c00147{bottom:866.130000px;}
.y55_c00147{bottom:867.195000px;}
.y54_c00147{bottom:879.630000px;}
.y53_c00147{bottom:880.695000px;}
.y52_c00147{bottom:893.130000px;}
.y51_c00147{bottom:894.195000px;}
.y50_c00147{bottom:906.630000px;}
.y4f_c00147{bottom:907.695000px;}
.y4e_c00147{bottom:908.130000px;}
.y4d_c00147{bottom:909.195000px;}
.y4c_c00147{bottom:921.195000px;}
.y4b_c00147{bottom:921.630000px;}
.y4a_c00147{bottom:922.695000px;}
.y49_c00147{bottom:934.695000px;}
.y48_c00147{bottom:935.130000px;}
.y47_c00147{bottom:936.195000px;}
.y46_c00147{bottom:948.195000px;}
.y45_c00147{bottom:949.695000px;}
.y42_c00147{bottom:967.695000px;}
.y43_c00147{bottom:968.130000px;}
.y44_c00147{bottom:969.195000px;}
.y3f_c00147{bottom:980.130000px;}
.y41_c00147{bottom:981.195000px;}
.y40_c00147{bottom:982.695000px;}
.y3e_c00147{bottom:994.695000px;}
.y3d_c00147{bottom:996.195000px;}
.y3c_c00147{bottom:1022.970000px;}
.y3b_c00147{bottom:1024.050000px;}
.y3a_c00147{bottom:1035.825000px;}
.y38_c00147{bottom:1036.905000px;}
.y39_c00147{bottom:1037.325000px;}
.y36_c00147{bottom:1037.970000px;}
.y37_c00147{bottom:1039.050000px;}
.y35_c00147{bottom:1061.550000px;}
.y34_c00147{bottom:1063.050000px;}
.y2_c00147{bottom:1099.050000px;}
.y1_c00147{bottom:1099.905000px;}
.h6_c00147{height:4.206533px;}
.hb_c00147{height:14.612168px;}
.h9_c00147{height:16.752334px;}
.ha_c00147{height:22.752334px;}
.h7_c00147{height:23.025234px;}
.h2_c00147{height:25.091602px;}
.h3_c00147{height:31.364502px;}
.h1_c00147{height:35.571035px;}
.h4_c00147{height:39.777568px;}
.h5_c00147{height:43.910303px;}
.h8_c00147{height:48.116836px;}
.h0_c00147{height:1335.000000px;}
.w0_c00147{width:880.500000px;}
.x0_c00147{left:0.000000px;}
.x31_c00147{left:151.500000px;}
.x17_c00147{left:152.580000px;}
.x1_c00147{left:156.420000px;}
.xe_c00147{left:166.500000px;}
.x1a_c00147{left:168.420000px;}
.x1e_c00147{left:169.500000px;}
.x68_c00147{left:175.500000px;}
.x45_c00147{left:180.000000px;}
.x32_c00147{left:184.500000px;}
.x8a_c00147{left:189.000000px;}
.x50_c00147{left:192.000000px;}
.x6b_c00147{left:197.580000px;}
.x18_c00147{left:200.355000px;}
.x74_c00147{left:202.920000px;}
.x80_c00147{left:207.420000px;}
.x1b_c00147{left:210.420000px;}
.x46_c00147{left:215.580000px;}
.x5a_c00147{left:217.920000px;}
.x92_c00147{left:220.500000px;}
.x8c_c00147{left:225.000000px;}
.x8b_c00147{left:229.080000px;}
.x51_c00147{left:232.500000px;}
.x8f_c00147{left:234.000000px;}
.x19_c00147{left:235.080000px;}
.x8d_c00147{left:238.500000px;}
.x75_c00147{left:243.000000px;}
.x78_c00147{left:244.500000px;}
.x5f_c00147{left:246.000000px;}
.x93_c00147{left:247.920000px;}
.x39_c00147{left:249.000000px;}
.x23_c00147{left:253.500000px;}
.x1f_c00147{left:259.500000px;}
.xf_c00147{left:261.000000px;}
.x79_c00147{left:262.080000px;}
.x8e_c00147{left:265.500000px;}
.x1c_c00147{left:268.500000px;}
.x95_c00147{left:274.500000px;}
.x5b_c00147{left:276.000000px;}
.x33_c00147{left:277.920000px;}
.x7_c00147{left:280.500000px;}
.x27_c00147{left:282.000000px;}
.x96_c00147{left:283.920000px;}
.x1d_c00147{left:291.000000px;}
.x5c_c00147{left:293.580000px;}
.x10_c00147{left:305.145000px;}
.x34_c00147{left:306.420000px;}
.x52_c00147{left:310.080000px;}
.x28_c00147{left:312.000000px;}
.x3_c00147{left:314.580000px;}
.x24_c00147{left:326.580000px;}
.x6c_c00147{left:334.500000px;}
.x8_c00147{left:337.080000px;}
.x47_c00147{left:339.000000px;}
.x3a_c00147{left:340.500000px;}
.x53_c00147{left:341.580000px;}
.x70_c00147{left:346.500000px;}
.x20_c00147{left:347.775000px;}
.x35_c00147{left:354.420000px;}
.x11_c00147{left:357.420000px;}
.x29_c00147{left:363.000000px;}
.x9_c00147{left:364.500000px;}
.x60_c00147{left:373.920000px;}
.x54_c00147{left:376.080000px;}
.x81_c00147{left:378.000000px;}
.x7a_c00147{left:379.500000px;}
.x86_c00147{left:382.500000px;}
.x83_c00147{left:384.000000px;}
.x3b_c00147{left:385.920000px;}
.x2a_c00147{left:388.080000px;}
.x61_c00147{left:391.500000px;}
.x12_c00147{left:396.000000px;}
.x66_c00147{left:397.500000px;}
.x2_c00147{left:403.500000px;}
.x48_c00147{left:406.080000px;}
.x3c_c00147{left:411.420000px;}
.x5d_c00147{left:415.500000px;}
.x21_c00147{left:418.500000px;}
.x82_c00147{left:420.000000px;}
.x36_c00147{left:421.500000px;}
.x4_c00147{left:423.000000px;}
.x2b_c00147{left:424.080000px;}
.x49_c00147{left:426.420000px;}
.x67_c00147{left:430.500000px;}
.x37_c00147{left:436.920000px;}
.x3d_c00147{left:438.420000px;}
.x55_c00147{left:444.000000px;}
.x25_c00147{left:445.500000px;}
.xa_c00147{left:447.420000px;}
.x6d_c00147{left:456.000000px;}
.x4a_c00147{left:457.500000px;}
.x7b_c00147{left:459.420000px;}
.x5e_c00147{left:461.355000px;}
.x38_c00147{left:462.420000px;}
.x87_c00147{left:465.000000px;}
.x94_c00147{left:469.500000px;}
.x5_c00147{left:476.580000px;}
.x22_c00147{left:482.775000px;}
.x2c_c00147{left:486.420000px;}
.x6e_c00147{left:487.500000px;}
.x26_c00147{left:496.080000px;}
.x13_c00147{left:499.080000px;}
.x69_c00147{left:501.000000px;}
.x62_c00147{left:504.420000px;}
.x3e_c00147{left:508.500000px;}
.x4b_c00147{left:514.500000px;}
.x2d_c00147{left:522.000000px;}
.xb_c00147{left:524.580000px;}
.x3f_c00147{left:532.080000px;}
.x6_c00147{left:535.275000px;}
.x6a_c00147{left:537.000000px;}
.x7c_c00147{left:538.500000px;}
.x84_c00147{left:541.500000px;}
.xc_c00147{left:543.420000px;}
.x71_c00147{left:544.500000px;}
.x90_c00147{left:546.000000px;}
.x56_c00147{left:547.500000px;}
.xd_c00147{left:562.080000px;}
.x4c_c00147{left:564.000000px;}
.x14_c00147{left:567.000000px;}
.x40_c00147{left:573.000000px;}
.x73_c00147{left:577.500000px;}
.x7d_c00147{left:579.000000px;}
.x63_c00147{left:582.000000px;}
.x57_c00147{left:586.080000px;}
.x2e_c00147{left:595.080000px;}
.x41_c00147{left:613.080000px;}
.x76_c00147{left:618.000000px;}
.x15_c00147{left:619.500000px;}
.x88_c00147{left:622.500000px;}
.x99_c00147{left:624.000000px;}
.x72_c00147{left:627.000000px;}
.x4d_c00147{left:630.000000px;}
.x64_c00147{left:634.500000px;}
.x2f_c00147{left:640.080000px;}
.x4e_c00147{left:652.500000px;}
.x42_c00147{left:658.500000px;}
.x7e_c00147{left:660.000000px;}
.x85_c00147{left:663.000000px;}
.x97_c00147{left:664.500000px;}
.x16_c00147{left:666.000000px;}
.x91_c00147{left:667.500000px;}
.x30_c00147{left:668.580000px;}
.x4f_c00147{left:674.145000px;}
.x58_c00147{left:683.580000px;}
.x43_c00147{left:685.500000px;}
.x65_c00147{left:688.080000px;}
.x6f_c00147{left:694.920000px;}
.x77_c00147{left:699.000000px;}
.x7f_c00147{left:700.500000px;}
.x89_c00147{left:703.500000px;}
.x98_c00147{left:705.000000px;}
.x59_c00147{left:714.000000px;}
.x44_c00147{left:720.000000px;}
@media print{
.v2_c00147{vertical-align:-5.333333pt;}
.v0_c00147{vertical-align:0.000000pt;}
.v1_c00147{vertical-align:5.333333pt;}
.ls2_c00147{letter-spacing:0.000000pt;}
.ls1_c00147{letter-spacing:43.713138pt;}
.ls0_c00147{letter-spacing:45.653309pt;}
.ws16_c00147{word-spacing:0.000000pt;}
.ws1_c00147{word-spacing:10.192660pt;}
.wsb_c00147{word-spacing:13.879937pt;}
.wsd_c00147{word-spacing:15.344817pt;}
.ws13_c00147{word-spacing:16.123479pt;}
.ws5_c00147{word-spacing:17.440722pt;}
.ws12_c00147{word-spacing:19.176041pt;}
.ws10_c00147{word-spacing:19.712412pt;}
.ws4_c00147{word-spacing:21.091652pt;}
.wsc_c00147{word-spacing:21.126233pt;}
.ws11_c00147{word-spacing:21.233254pt;}
.wse_c00147{word-spacing:22.793818pt;}
.ws9_c00147{word-spacing:23.007264pt;}
.ws14_c00147{word-spacing:27.578605pt;}
.ws2_c00147{word-spacing:32.762503pt;}
.ws6_c00147{word-spacing:34.404908pt;}
.ws15_c00147{word-spacing:35.496655pt;}
.wsf_c00147{word-spacing:38.583015pt;}
.ws8_c00147{word-spacing:41.187355pt;}
.ws0_c00147{word-spacing:42.417089pt;}
.ws7_c00147{word-spacing:43.561211pt;}
.wsa_c00147{word-spacing:45.935067pt;}
.ws3_c00147{word-spacing:59.575855pt;}
._7_c00147{width:23.193772pt;}
._5_c00147{width:24.330722pt;}
._6_c00147{width:26.246334pt;}
._3_c00147{width:28.161946pt;}
._4_c00147{width:30.077557pt;}
._2_c00147{width:37.405734pt;}
._1_c00147{width:46.309779pt;}
._0_c00147{width:52.664985pt;}
.fs5_c00147{font-size:3.040000pt;}
.fs9_c00147{font-size:10.560000pt;}
.fs8_c00147{font-size:12.106667pt;}
.fs6_c00147{font-size:16.640000pt;}
.fs1_c00147{font-size:18.133333pt;}
.fs2_c00147{font-size:22.666667pt;}
.fs0_c00147{font-size:25.706667pt;}
.fs3_c00147{font-size:28.746667pt;}
.fs4_c00147{font-size:31.733333pt;}
.fs7_c00147{font-size:34.773333pt;}
.y0_c00147{bottom:0.000000pt;}
.y32_c00147{bottom:223.773333pt;}
.y31_c00147{bottom:225.306667pt;}
.y33_c00147{bottom:225.693333pt;}
.y2c_c00147{bottom:241.106667pt;}
.y2e_c00147{bottom:242.066667pt;}
.y2d_c00147{bottom:243.026667pt;}
.y30_c00147{bottom:243.226667pt;}
.y2f_c00147{bottom:244.360000pt;}
.y28_c00147{bottom:258.440000pt;}
.y2a_c00147{bottom:259.773333pt;}
.y27_c00147{bottom:260.360000pt;}
.y2b_c00147{bottom:260.560000pt;}
.y29_c00147{bottom:261.693333pt;}
.y25_c00147{bottom:277.106667pt;}
.y26_c00147{bottom:277.893333pt;}
.y23_c00147{bottom:279.026667pt;}
.y24_c00147{bottom:279.040000pt;}
.y21_c00147{bottom:293.693333pt;}
.y20_c00147{bottom:294.066667pt;}
.y22_c00147{bottom:295.400000pt;}
.y1f_c00147{bottom:296.360000pt;}
.y1c_c00147{bottom:311.773333pt;}
.y1d_c00147{bottom:312.733333pt;}
.y1a_c00147{bottom:313.693333pt;}
.y1b_c00147{bottom:313.706667pt;}
.y1e_c00147{bottom:314.640000pt;}
.y18_c00147{bottom:329.493333pt;}
.y19_c00147{bottom:330.440000pt;}
.y15_c00147{bottom:331.026667pt;}
.y16_c00147{bottom:331.226667pt;}
.y17_c00147{bottom:332.373333pt;}
.y12_c00147{bottom:347.773333pt;}
.y14_c00147{bottom:348.733333pt;}
.y13_c00147{bottom:349.706667pt;}
.yf_c00147{bottom:365.106667pt;}
.y11_c00147{bottom:367.026667pt;}
.y10_c00147{bottom:367.040000pt;}
.yd_c00147{bottom:389.693333pt;}
.ye_c00147{bottom:391.600000pt;}
.ya_c00147{bottom:402.066667pt;}
.yc_c00147{bottom:403.026667pt;}
.yb_c00147{bottom:403.973333pt;}
.y8_c00147{bottom:419.400000pt;}
.y9_c00147{bottom:419.600000pt;}
.y7_c00147{bottom:420.360000pt;}
.y6_c00147{bottom:443.773333pt;}
.y5_c00147{bottom:444.733333pt;}
.y4_c00147{bottom:445.306667pt;}
.y3_c00147{bottom:445.693333pt;}
.ya2_c00147{bottom:474.840000pt;}
.y9f_c00147{bottom:475.226667pt;}
.ya0_c00147{bottom:476.173333pt;}
.ya1_c00147{bottom:477.506667pt;}
.y9d_c00147{bottom:484.933333pt;}
.y9e_c00147{bottom:486.840000pt;}
.y9a_c00147{bottom:487.226667pt;}
.y9b_c00147{bottom:487.800000pt;}
.y99_c00147{bottom:488.173333pt;}
.y9c_c00147{bottom:489.706667pt;}
.y94_c00147{bottom:498.840000pt;}
.y96_c00147{bottom:499.800000pt;}
.y98_c00147{bottom:500.173333pt;}
.y95_c00147{bottom:500.560000pt;}
.y97_c00147{bottom:501.706667pt;}
.y92_c00147{bottom:512.173333pt;}
.y93_c00147{bottom:512.373333pt;}
.y90_c00147{bottom:512.560000pt;}
.y91_c00147{bottom:513.133333pt;}
.y8f_c00147{bottom:524.173333pt;}
.y8e_c00147{bottom:525.133333pt;}
.y8d_c00147{bottom:525.506667pt;}
.y8c_c00147{bottom:536.560000pt;}
.y89_c00147{bottom:536.933333pt;}
.y8b_c00147{bottom:537.506667pt;}
.y8a_c00147{bottom:537.893333pt;}
.y88_c00147{bottom:549.506667pt;}
.y87_c00147{bottom:549.893333pt;}
.y86_c00147{bottom:550.840000pt;}
.y85_c00147{bottom:561.506667pt;}
.y84_c00147{bottom:562.840000pt;}
.y83_c00147{bottom:572.560000pt;}
.y81_c00147{bottom:573.506667pt;}
.y80_c00147{bottom:573.893333pt;}
.y82_c00147{bottom:574.840000pt;}
.y7e_c00147{bottom:584.560000pt;}
.y7f_c00147{bottom:585.506667pt;}
.y7d_c00147{bottom:586.840000pt;}
.y7b_c00147{bottom:597.506667pt;}
.y79_c00147{bottom:597.893333pt;}
.y7a_c00147{bottom:598.840000pt;}
.y7c_c00147{bottom:599.040000pt;}
.y77_c00147{bottom:609.893333pt;}
.y78_c00147{bottom:610.840000pt;}
.y75_c00147{bottom:622.840000pt;}
.y76_c00147{bottom:623.226667pt;}
.y74_c00147{bottom:634.840000pt;}
.y71_c00147{bottom:635.226667pt;}
.y72_c00147{bottom:635.800000pt;}
.y73_c00147{bottom:636.173333pt;}
.y70_c00147{bottom:646.840000pt;}
.y6f_c00147{bottom:647.226667pt;}
.y6c_c00147{bottom:658.840000pt;}
.y6d_c00147{bottom:659.226667pt;}
.y6e_c00147{bottom:660.173333pt;}
.y6b_c00147{bottom:673.506667pt;}
.y6a_c00147{bottom:683.226667pt;}
.y69_c00147{bottom:684.173333pt;}
.y68_c00147{bottom:685.506667pt;}
.y67_c00147{bottom:695.226667pt;}
.y66_c00147{bottom:696.173333pt;}
.y65_c00147{bottom:697.506667pt;}
.y64_c00147{bottom:708.173333pt;}
.y63_c00147{bottom:709.506667pt;}
.y62_c00147{bottom:720.560000pt;}
.y61_c00147{bottom:721.506667pt;}
.y60_c00147{bottom:733.506667pt;}
.y5f_c00147{bottom:733.893333pt;}
.y5e_c00147{bottom:734.840000pt;}
.y5c_c00147{bottom:745.506667pt;}
.y5b_c00147{bottom:745.893333pt;}
.y5d_c00147{bottom:746.840000pt;}
.y5a_c00147{bottom:757.506667pt;}
.y59_c00147{bottom:757.893333pt;}
.y58_c00147{bottom:758.840000pt;}
.y57_c00147{bottom:769.506667pt;}
.y56_c00147{bottom:769.893333pt;}
.y55_c00147{bottom:770.840000pt;}
.y54_c00147{bottom:781.893333pt;}
.y53_c00147{bottom:782.840000pt;}
.y52_c00147{bottom:793.893333pt;}
.y51_c00147{bottom:794.840000pt;}
.y50_c00147{bottom:805.893333pt;}
.y4f_c00147{bottom:806.840000pt;}
.y4e_c00147{bottom:807.226667pt;}
.y4d_c00147{bottom:808.173333pt;}
.y4c_c00147{bottom:818.840000pt;}
.y4b_c00147{bottom:819.226667pt;}
.y4a_c00147{bottom:820.173333pt;}
.y49_c00147{bottom:830.840000pt;}
.y48_c00147{bottom:831.226667pt;}
.y47_c00147{bottom:832.173333pt;}
.y46_c00147{bottom:842.840000pt;}
.y45_c00147{bottom:844.173333pt;}
.y42_c00147{bottom:860.173333pt;}
.y43_c00147{bottom:860.560000pt;}
.y44_c00147{bottom:861.506667pt;}
.y3f_c00147{bottom:871.226667pt;}
.y41_c00147{bottom:872.173333pt;}
.y40_c00147{bottom:873.506667pt;}
.y3e_c00147{bottom:884.173333pt;}
.y3d_c00147{bottom:885.506667pt;}
.y3c_c00147{bottom:909.306667pt;}
.y3b_c00147{bottom:910.266667pt;}
.y3a_c00147{bottom:920.733333pt;}
.y38_c00147{bottom:921.693333pt;}
.y39_c00147{bottom:922.066667pt;}
.y36_c00147{bottom:922.640000pt;}
.y37_c00147{bottom:923.600000pt;}
.y35_c00147{bottom:943.600000pt;}
.y34_c00147{bottom:944.933333pt;}
.y2_c00147{bottom:976.933333pt;}
.y1_c00147{bottom:977.693333pt;}
.h6_c00147{height:3.739141pt;}
.hb_c00147{height:12.988594pt;}
.h9_c00147{height:14.890964pt;}
.ha_c00147{height:20.224297pt;}
.h7_c00147{height:20.466875pt;}
.h2_c00147{height:22.303646pt;}
.h3_c00147{height:27.879557pt;}
.h1_c00147{height:31.618698pt;}
.h4_c00147{height:35.357839pt;}
.h5_c00147{height:39.031380pt;}
.h8_c00147{height:42.770521pt;}
.h0_c00147{height:1186.666667pt;}
.w0_c00147{width:782.666667pt;}
.x0_c00147{left:0.000000pt;}
.x31_c00147{left:134.666667pt;}
.x17_c00147{left:135.626667pt;}
.x1_c00147{left:139.040000pt;}
.xe_c00147{left:148.000000pt;}
.x1a_c00147{left:149.706667pt;}
.x1e_c00147{left:150.666667pt;}
.x68_c00147{left:156.000000pt;}
.x45_c00147{left:160.000000pt;}
.x32_c00147{left:164.000000pt;}
.x8a_c00147{left:168.000000pt;}
.x50_c00147{left:170.666667pt;}
.x6b_c00147{left:175.626667pt;}
.x18_c00147{left:178.093333pt;}
.x74_c00147{left:180.373333pt;}
.x80_c00147{left:184.373333pt;}
.x1b_c00147{left:187.040000pt;}
.x46_c00147{left:191.626667pt;}
.x5a_c00147{left:193.706667pt;}
.x92_c00147{left:196.000000pt;}
.x8c_c00147{left:200.000000pt;}
.x8b_c00147{left:203.626667pt;}
.x51_c00147{left:206.666667pt;}
.x8f_c00147{left:208.000000pt;}
.x19_c00147{left:208.960000pt;}
.x8d_c00147{left:212.000000pt;}
.x75_c00147{left:216.000000pt;}
.x78_c00147{left:217.333333pt;}
.x5f_c00147{left:218.666667pt;}
.x93_c00147{left:220.373333pt;}
.x39_c00147{left:221.333333pt;}
.x23_c00147{left:225.333333pt;}
.x1f_c00147{left:230.666667pt;}
.xf_c00147{left:232.000000pt;}
.x79_c00147{left:232.960000pt;}
.x8e_c00147{left:236.000000pt;}
.x1c_c00147{left:238.666667pt;}
.x95_c00147{left:244.000000pt;}
.x5b_c00147{left:245.333333pt;}
.x33_c00147{left:247.040000pt;}
.x7_c00147{left:249.333333pt;}
.x27_c00147{left:250.666667pt;}
.x96_c00147{left:252.373333pt;}
.x1d_c00147{left:258.666667pt;}
.x5c_c00147{left:260.960000pt;}
.x10_c00147{left:271.240000pt;}
.x34_c00147{left:272.373333pt;}
.x52_c00147{left:275.626667pt;}
.x28_c00147{left:277.333333pt;}
.x3_c00147{left:279.626667pt;}
.x24_c00147{left:290.293333pt;}
.x6c_c00147{left:297.333333pt;}
.x8_c00147{left:299.626667pt;}
.x47_c00147{left:301.333333pt;}
.x3a_c00147{left:302.666667pt;}
.x53_c00147{left:303.626667pt;}
.x70_c00147{left:308.000000pt;}
.x20_c00147{left:309.133333pt;}
.x35_c00147{left:315.040000pt;}
.x11_c00147{left:317.706667pt;}
.x29_c00147{left:322.666667pt;}
.x9_c00147{left:324.000000pt;}
.x60_c00147{left:332.373333pt;}
.x54_c00147{left:334.293333pt;}
.x81_c00147{left:336.000000pt;}
.x7a_c00147{left:337.333333pt;}
.x86_c00147{left:340.000000pt;}
.x83_c00147{left:341.333333pt;}
.x3b_c00147{left:343.040000pt;}
.x2a_c00147{left:344.960000pt;}
.x61_c00147{left:348.000000pt;}
.x12_c00147{left:352.000000pt;}
.x66_c00147{left:353.333333pt;}
.x2_c00147{left:358.666667pt;}
.x48_c00147{left:360.960000pt;}
.x3c_c00147{left:365.706667pt;}
.x5d_c00147{left:369.333333pt;}
.x21_c00147{left:372.000000pt;}
.x82_c00147{left:373.333333pt;}
.x36_c00147{left:374.666667pt;}
.x4_c00147{left:376.000000pt;}
.x2b_c00147{left:376.960000pt;}
.x49_c00147{left:379.040000pt;}
.x67_c00147{left:382.666667pt;}
.x37_c00147{left:388.373333pt;}
.x3d_c00147{left:389.706667pt;}
.x55_c00147{left:394.666667pt;}
.x25_c00147{left:396.000000pt;}
.xa_c00147{left:397.706667pt;}
.x6d_c00147{left:405.333333pt;}
.x4a_c00147{left:406.666667pt;}
.x7b_c00147{left:408.373333pt;}
.x5e_c00147{left:410.093333pt;}
.x38_c00147{left:411.040000pt;}
.x87_c00147{left:413.333333pt;}
.x94_c00147{left:417.333333pt;}
.x5_c00147{left:423.626667pt;}
.x22_c00147{left:429.133333pt;}
.x2c_c00147{left:432.373333pt;}
.x6e_c00147{left:433.333333pt;}
.x26_c00147{left:440.960000pt;}
.x13_c00147{left:443.626667pt;}
.x69_c00147{left:445.333333pt;}
.x62_c00147{left:448.373333pt;}
.x3e_c00147{left:452.000000pt;}
.x4b_c00147{left:457.333333pt;}
.x2d_c00147{left:464.000000pt;}
.xb_c00147{left:466.293333pt;}
.x3f_c00147{left:472.960000pt;}
.x6_c00147{left:475.800000pt;}
.x6a_c00147{left:477.333333pt;}
.x7c_c00147{left:478.666667pt;}
.x84_c00147{left:481.333333pt;}
.xc_c00147{left:483.040000pt;}
.x71_c00147{left:484.000000pt;}
.x90_c00147{left:485.333333pt;}
.x56_c00147{left:486.666667pt;}
.xd_c00147{left:499.626667pt;}
.x4c_c00147{left:501.333333pt;}
.x14_c00147{left:504.000000pt;}
.x40_c00147{left:509.333333pt;}
.x73_c00147{left:513.333333pt;}
.x7d_c00147{left:514.666667pt;}
.x63_c00147{left:517.333333pt;}
.x57_c00147{left:520.960000pt;}
.x2e_c00147{left:528.960000pt;}
.x41_c00147{left:544.960000pt;}
.x76_c00147{left:549.333333pt;}
.x15_c00147{left:550.666667pt;}
.x88_c00147{left:553.333333pt;}
.x99_c00147{left:554.666667pt;}
.x72_c00147{left:557.333333pt;}
.x4d_c00147{left:560.000000pt;}
.x64_c00147{left:564.000000pt;}
.x2f_c00147{left:568.960000pt;}
.x4e_c00147{left:580.000000pt;}
.x42_c00147{left:585.333333pt;}
.x7e_c00147{left:586.666667pt;}
.x85_c00147{left:589.333333pt;}
.x97_c00147{left:590.666667pt;}
.x16_c00147{left:592.000000pt;}
.x91_c00147{left:593.333333pt;}
.x30_c00147{left:594.293333pt;}
.x4f_c00147{left:599.240000pt;}
.x58_c00147{left:607.626667pt;}
.x43_c00147{left:609.333333pt;}
.x65_c00147{left:611.626667pt;}
.x6f_c00147{left:617.706667pt;}
.x77_c00147{left:621.333333pt;}
.x7f_c00147{left:622.666667pt;}
.x89_c00147{left:625.333333pt;}
.x98_c00147{left:626.666667pt;}
.x59_c00147{left:634.666667pt;}
.x44_c00147{left:640.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_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_fec2afaf0a00d42a7a03e155.woff2')format("woff");}.ff1_c00148{font-family:ff1_c00148;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7b_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);}
.m7a_c00148{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m89_c00148{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.mda_c00148{transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);}
.m76_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);}
.mff_c00148{transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);}
.mcc_c00148{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.me6_c00148{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mc9_c00148{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mf4_c00148{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m10_c00148{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m9e_c00148{transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);}
.mcb_c00148{transform:matrix(0.382780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382780,0.000000,0.000000,0.250000,0,0);}
.md8_c00148{transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);}
.m6f_c00148{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.mf3_c00148{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m15_c00148{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.mdf_c00148{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.ma5_c00148{transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);}
.mc_c00148{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.maf_c00148{transform:matrix(0.397623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397623,0.000000,0.000000,0.250000,0,0);}
.m95_c00148{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mce_c00148{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m90_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.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m82_c00148{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m55_c00148{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m63_c00148{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m1a_c00148{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m78_c00148{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.med_c00148{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mb6_c00148{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.ma2_c00148{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m6_c00148{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.mb1_c00148{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m9b_c00148{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m48_c00148{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m66_c00148{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.me9_c00148{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.md2_c00148{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.mbd_c00148{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m6e_c00148{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.mfe_c00148{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.mf1_c00148{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m20_c00148{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m37_c00148{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.maa_c00148{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m4c_c00148{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m86_c00148{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m68_c00148{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mab_c00148{transform:matrix(0.421680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421680,0.000000,0.000000,0.250000,0,0);}
.mad_c00148{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m8a_c00148{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m31_c00148{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mca_c00148{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.mf2_c00148{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mde_c00148{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.mac_c00148{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m2_c00148{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mb9_c00148{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.md0_c00148{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.md_c00148{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m69_c00148{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.mb_c00148{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.mdc_c00148{transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);}
.me8_c00148{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m1e_c00148{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.m5_c00148{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mb8_c00148{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.md6_c00148{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m24_c00148{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m8f_c00148{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m38_c00148{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m5a_c00148{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m77_c00148{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m6c_c00148{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.md1_c00148{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m34_c00148{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.mc8_c00148{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.mbc_c00148{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.mf7_c00148{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m5d_c00148{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.meb_c00148{transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);}
.mf0_c00148{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m35_c00148{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m8d_c00148{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mc1_c00148{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m45_c00148{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.mdd_c00148{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m9d_c00148{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m64_c00148{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.mb5_c00148{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.mef_c00148{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m6a_c00148{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.md3_c00148{transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);}
.m2b_c00148{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mc3_c00148{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m4b_c00148{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m2c_c00148{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mc5_c00148{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.md5_c00148{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.ma3_c00148{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m1b_c00148{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m6b_c00148{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.m4f_c00148{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m2a_c00148{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m8b_c00148{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.mba_c00148{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m36_c00148{transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);}
.mc7_c00148{transform:matrix(0.472689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472689,0.000000,0.000000,0.250000,0,0);}
.mbe_c00148{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m3f_c00148{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mcf_c00148{transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);}
.mbf_c00148{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m7_c00148{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m8c_c00148{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.mee_c00148{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.ma6_c00148{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m5e_c00148{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m7d_c00148{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m3c_c00148{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m8_c00148{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m1_c00148{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m93_c00148{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m29_c00148{transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);}
.m84_c00148{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m5f_c00148{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.mfb_c00148{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m18_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);}
.m47_c00148{transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);}
.mc4_c00148{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m4a_c00148{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m72_c00148{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.m57_c00148{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m7f_c00148{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m53_c00148{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m23_c00148{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m98_c00148{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.ma8_c00148{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m3b_c00148{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m13_c00148{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m9a_c00148{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.ma4_c00148{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m51_c00148{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m39_c00148{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mfc_c00148{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m92_c00148{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m96_c00148{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m79_c00148{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m5b_c00148{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m67_c00148{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m16_c00148{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.ma1_c00148{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.md7_c00148{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m33_c00148{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m59_c00148{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m94_c00148{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.ma_c00148{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mf5_c00148{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m4_c00148{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m2e_c00148{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m2d_c00148{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m87_c00148{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mb4_c00148{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m27_c00148{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m49_c00148{transform:matrix(0.541667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541667,0.000000,0.000000,0.250000,0,0);}
.me0_c00148{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m4d_c00148{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m1d_c00148{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mf_c00148{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m28_c00148{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mbb_c00148{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m14_c00148{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m74_c00148{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m40_c00148{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m52_c00148{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m4e_c00148{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.ma0_c00148{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m2f_c00148{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mf9_c00148{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m8e_c00148{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.me4_c00148{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m5c_c00148{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m17_c00148{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.md4_c00148{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);}
.me2_c00148{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mea_c00148{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.ma7_c00148{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m75_c00148{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m88_c00148{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.mfa_c00148{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.me5_c00148{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m60_c00148{transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);}
.m44_c00148{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mdb_c00148{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.mb7_c00148{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.ma9_c00148{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m50_c00148{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m6d_c00148{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m3a_c00148{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m97_c00148{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m3e_c00148{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.me7_c00148{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.mae_c00148{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mcd_c00148{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.mf6_c00148{transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);}
.m43_c00148{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m61_c00148{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m65_c00148{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m91_c00148{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mb3_c00148{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m70_c00148{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m99_c00148{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);}
.m30_c00148{transform:matrix(0.601765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601765,0.000000,0.000000,0.250000,0,0);}
.m41_c00148{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m71_c00148{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m21_c00148{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m32_c00148{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m46_c00148{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.m7e_c00148{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m7c_c00148{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_c00148{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m26_c00148{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m83_c00148{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m42_c00148{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m1f_c00148{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m73_c00148{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m11_c00148{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m0_c00148{transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);}
.mb0_c00148{transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);}
.m85_c00148{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.me_c00148{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mb2_c00148{transform:matrix(0.675481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675481,0.000000,0.000000,0.250000,0,0);}
.md9_c00148{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.m58_c00148{transform:matrix(0.696471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696471,0.000000,0.000000,0.250000,0,0);}
.mc0_c00148{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m22_c00148{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mf8_c00148{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m1c_c00148{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m81_c00148{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m56_c00148{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mc2_c00148{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m12_c00148{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m9f_c00148{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m25_c00148{transform:matrix(0.755609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.755609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.755609,0.000000,0.000000,0.250000,0,0);}
.me1_c00148{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m80_c00148{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.m62_c00148{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m54_c00148{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mc6_c00148{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m9c_c00148{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m9_c00148{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m19_c00148{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mfd_c00148{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.mec_c00148{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m3_c00148{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00148{vertical-align:0.000000px;}
.ls0_c00148{letter-spacing:0.000000px;}
.sc__c00148{text-shadow:none;}
.sc0_c00148{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00148{-webkit-text-stroke:0px transparent;}
.sc0_c00148{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00148{word-spacing:0.000000px;}
.fc0_c00148{color:transparent;}
.fs3_c00148{font-size:3.420000px;}
.fs8_c00148{font-size:11.880000px;}
.fs0_c00148{font-size:18.720000px;}
.fs6_c00148{font-size:20.400000px;}
.fs4_c00148{font-size:25.500000px;}
.fs1_c00148{font-size:28.920000px;}
.fs5_c00148{font-size:32.340000px;}
.fs2_c00148{font-size:35.700000px;}
.fs7_c00148{font-size:39.120000px;}
.y0_c00148{bottom:0.000000px;}
.ye8_c00148{bottom:241.245000px;}
.yea_c00148{bottom:241.680000px;}
.ye9_c00148{bottom:242.130000px;}
.ye5_c00148{bottom:243.405000px;}
.ye7_c00148{bottom:244.470000px;}
.ye6_c00148{bottom:244.905000px;}
.ye0_c00148{bottom:260.745000px;}
.ydf_c00148{bottom:261.825000px;}
.ye2_c00148{bottom:262.245000px;}
.ye1_c00148{bottom:262.905000px;}
.ye3_c00148{bottom:263.130000px;}
.ye4_c00148{bottom:264.405000px;}
.ydb_c00148{bottom:280.245000px;}
.yd9_c00148{bottom:281.745000px;}
.yda_c00148{bottom:282.405000px;}
.ydc_c00148{bottom:282.630000px;}
.ydd_c00148{bottom:283.470000px;}
.yd7_c00148{bottom:283.905000px;}
.yd8_c00148{bottom:283.920000px;}
.yde_c00148{bottom:284.970000px;}
.yd6_c00148{bottom:303.405000px;}
.yd3_c00148{bottom:319.245000px;}
.yd1_c00148{bottom:320.745000px;}
.yd4_c00148{bottom:321.405000px;}
.yd5_c00148{bottom:321.825000px;}
.yd2_c00148{bottom:322.470000px;}
.ycf_c00148{bottom:322.905000px;}
.yd0_c00148{bottom:322.920000px;}
.yce_c00148{bottom:340.245000px;}
.ycb_c00148{bottom:342.405000px;}
.ycc_c00148{bottom:342.630000px;}
.ycd_c00148{bottom:343.920000px;}
.yc9_c00148{bottom:358.905000px;}
.yc7_c00148{bottom:359.745000px;}
.yca_c00148{bottom:360.825000px;}
.yc8_c00148{bottom:363.420000px;}
.yc4_c00148{bottom:379.245000px;}
.yc5_c00148{bottom:380.745000px;}
.yc6_c00148{bottom:382.920000px;}
.yc3_c00148{bottom:402.825000px;}
.yc0_c00148{bottom:403.905000px;}
.yc2_c00148{bottom:404.970000px;}
.yc1_c00148{bottom:406.050000px;}
.ybe_c00148{bottom:419.970000px;}
.ybf_c00148{bottom:420.825000px;}
.ybc_c00148{bottom:421.905000px;}
.ybb_c00148{bottom:422.325000px;}
.ybd_c00148{bottom:424.050000px;}
.yb8_c00148{bottom:442.245000px;}
.yba_c00148{bottom:443.325000px;}
.yb9_c00148{bottom:444.405000px;}
.yb5_c00148{bottom:467.130000px;}
.yb1_c00148{bottom:467.775000px;}
.yad_c00148{bottom:468.405000px;}
.yb6_c00148{bottom:469.245000px;}
.yb2_c00148{bottom:469.905000px;}
.yb4_c00148{bottom:470.325000px;}
.yb7_c00148{bottom:471.405000px;}
.yaf_c00148{bottom:471.630000px;}
.yae_c00148{bottom:471.825000px;}
.yb3_c00148{bottom:472.905000px;}
.yb0_c00148{bottom:474.630000px;}
.yaa_c00148{bottom:487.905000px;}
.yac_c00148{bottom:490.245000px;}
.yab_c00148{bottom:491.130000px;}
.ya9_c00148{bottom:491.325000px;}
.ya8_c00148{bottom:492.405000px;}
.ya7_c00148{bottom:508.905000px;}
.ya4_c00148{bottom:509.745000px;}
.ya6_c00148{bottom:510.825000px;}
.ya5_c00148{bottom:511.905000px;}
.ya1_c00148{bottom:528.405000px;}
.ya2_c00148{bottom:529.245000px;}
.ya3_c00148{bottom:529.470000px;}
.ya0_c00148{bottom:530.325000px;}
.y9f_c00148{bottom:531.405000px;}
.y9d_c00148{bottom:547.905000px;}
.y9b_c00148{bottom:548.325000px;}
.y9c_c00148{bottom:548.745000px;}
.y99_c00148{bottom:549.630000px;}
.y9e_c00148{bottom:549.825000px;}
.y97_c00148{bottom:550.470000px;}
.y9a_c00148{bottom:550.905000px;}
.y98_c00148{bottom:551.130000px;}
.y96_c00148{bottom:568.245000px;}
.y93_c00148{bottom:570.405000px;}
.y95_c00148{bottom:570.630000px;}
.y94_c00148{bottom:571.470000px;}
.y8d_c00148{bottom:586.905000px;}
.y90_c00148{bottom:587.745000px;}
.y92_c00148{bottom:588.180000px;}
.y8f_c00148{bottom:589.245000px;}
.y91_c00148{bottom:589.905000px;}
.y8e_c00148{bottom:591.405000px;}
.y8a_c00148{bottom:606.405000px;}
.y8c_c00148{bottom:607.245000px;}
.y89_c00148{bottom:608.745000px;}
.y8b_c00148{bottom:609.405000px;}
.y87_c00148{bottom:609.630000px;}
.y88_c00148{bottom:610.905000px;}
.y83_c00148{bottom:625.905000px;}
.y86_c00148{bottom:627.180000px;}
.y84_c00148{bottom:628.245000px;}
.y85_c00148{bottom:629.325000px;}
.y82_c00148{bottom:630.405000px;}
.y81_c00148{bottom:631.470000px;}
.y80_c00148{bottom:647.745000px;}
.y7e_c00148{bottom:648.630000px;}
.y7f_c00148{bottom:649.905000px;}
.y77_c00148{bottom:665.745000px;}
.y7b_c00148{bottom:665.970000px;}
.y76_c00148{bottom:666.825000px;}
.y7c_c00148{bottom:667.245000px;}
.y7a_c00148{bottom:668.970000px;}
.y78_c00148{bottom:669.405000px;}
.y7d_c00148{bottom:669.630000px;}
.y79_c00148{bottom:670.470000px;}
.y72_c00148{bottom:686.745000px;}
.y74_c00148{bottom:686.970000px;}
.y73_c00148{bottom:688.905000px;}
.y75_c00148{bottom:690.405000px;}
.y6d_c00148{bottom:706.245000px;}
.y6f_c00148{bottom:707.325000px;}
.y70_c00148{bottom:707.745000px;}
.y6e_c00148{bottom:708.405000px;}
.y71_c00148{bottom:709.905000px;}
.y65_c00148{bottom:725.745000px;}
.y67_c00148{bottom:727.245000px;}
.y68_c00148{bottom:727.905000px;}
.y69_c00148{bottom:728.130000px;}
.y6a_c00148{bottom:728.325000px;}
.y66_c00148{bottom:728.970000px;}
.y6b_c00148{bottom:729.405000px;}
.y6c_c00148{bottom:730.470000px;}
.y5f_c00148{bottom:745.245000px;}
.y62_c00148{bottom:745.470000px;}
.y60_c00148{bottom:747.405000px;}
.y63_c00148{bottom:747.630000px;}
.y61_c00148{bottom:748.470000px;}
.y5e_c00148{bottom:748.905000px;}
.y64_c00148{bottom:749.970000px;}
.y5b_c00148{bottom:764.325000px;}
.y58_c00148{bottom:766.245000px;}
.y59_c00148{bottom:766.470000px;}
.y5c_c00148{bottom:767.325000px;}
.y5d_c00148{bottom:767.550000px;}
.y5a_c00148{bottom:768.405000px;}
.y56_c00148{bottom:785.745000px;}
.y57_c00148{bottom:785.970000px;}
.y55_c00148{bottom:787.905000px;}
.y53_c00148{bottom:803.325000px;}
.y51_c00148{bottom:805.245000px;}
.y52_c00148{bottom:805.470000px;}
.y54_c00148{bottom:806.325000px;}
.y50_c00148{bottom:807.405000px;}
.y4e_c00148{bottom:824.745000px;}
.y4f_c00148{bottom:825.405000px;}
.y4b_c00148{bottom:826.905000px;}
.y4d_c00148{bottom:827.130000px;}
.y4c_c00148{bottom:827.970000px;}
.y47_c00148{bottom:844.245000px;}
.y4a_c00148{bottom:845.745000px;}
.y49_c00148{bottom:847.470000px;}
.y48_c00148{bottom:847.905000px;}
.y42_c00148{bottom:863.745000px;}
.y40_c00148{bottom:865.905000px;}
.y41_c00148{bottom:866.130000px;}
.y45_c00148{bottom:866.325000px;}
.y44_c00148{bottom:866.970000px;}
.y43_c00148{bottom:867.405000px;}
.y46_c00148{bottom:868.470000px;}
.y3e_c00148{bottom:884.325000px;}
.y3f_c00148{bottom:885.630000px;}
.y3c_c00148{bottom:886.470000px;}
.y3d_c00148{bottom:886.905000px;}
.y37_c00148{bottom:904.245000px;}
.y38_c00148{bottom:905.130000px;}
.y3b_c00148{bottom:905.325000px;}
.y36_c00148{bottom:905.970000px;}
.y39_c00148{bottom:906.405000px;}
.y3a_c00148{bottom:907.470000px;}
.y32_c00148{bottom:922.905000px;}
.y33_c00148{bottom:923.970000px;}
.y35_c00148{bottom:924.825000px;}
.y31_c00148{bottom:925.905000px;}
.y34_c00148{bottom:926.970000px;}
.y2f_c00148{bottom:941.970000px;}
.y2e_c00148{bottom:943.245000px;}
.y2c_c00148{bottom:943.470000px;}
.y2d_c00148{bottom:944.325000px;}
.y2b_c00148{bottom:945.405000px;}
.y30_c00148{bottom:946.905000px;}
.y2a_c00148{bottom:962.745000px;}
.y27_c00148{bottom:963.405000px;}
.y26_c00148{bottom:963.825000px;}
.y25_c00148{bottom:964.470000px;}
.y24_c00148{bottom:964.905000px;}
.y28_c00148{bottom:965.130000px;}
.y29_c00148{bottom:965.970000px;}
.y21_c00148{bottom:981.405000px;}
.y22_c00148{bottom:982.245000px;}
.y1f_c00148{bottom:984.405000px;}
.y20_c00148{bottom:985.470000px;}
.y23_c00148{bottom:985.905000px;}
.y19_c00148{bottom:1000.905000px;}
.y1c_c00148{bottom:1002.405000px;}
.y1e_c00148{bottom:1002.825000px;}
.y1d_c00148{bottom:1003.245000px;}
.y18_c00148{bottom:1003.905000px;}
.y16_c00148{bottom:1004.130000px;}
.y1a_c00148{bottom:1004.325000px;}
.y17_c00148{bottom:1004.970000px;}
.y1b_c00148{bottom:1005.405000px;}
.y10_c00148{bottom:1020.405000px;}
.y14_c00148{bottom:1021.245000px;}
.y12_c00148{bottom:1022.325000px;}
.y15_c00148{bottom:1022.745000px;}
.yf_c00148{bottom:1023.405000px;}
.y11_c00148{bottom:1023.630000px;}
.y13_c00148{bottom:1024.470000px;}
.y7_c00148{bottom:1040.745000px;}
.ya_c00148{bottom:1040.970000px;}
.ye_c00148{bottom:1041.405000px;}
.yd_c00148{bottom:1042.245000px;}
.y9_c00148{bottom:1042.905000px;}
.yb_c00148{bottom:1043.130000px;}
.y8_c00148{bottom:1043.970000px;}
.yc_c00148{bottom:1044.405000px;}
.y3_c00148{bottom:1061.745000px;}
.y6_c00148{bottom:1062.630000px;}
.y5_c00148{bottom:1063.905000px;}
.y4_c00148{bottom:1063.920000px;}
.y2_c00148{bottom:1099.905000px;}
.y1_c00148{bottom:1103.130000px;}
.h4_c00148{height:4.206533px;}
.h9_c00148{height:14.612168px;}
.h1_c00148{height:23.025234px;}
.h7_c00148{height:25.091602px;}
.h5_c00148{height:31.364502px;}
.h2_c00148{height:35.571035px;}
.h6_c00148{height:39.777568px;}
.h3_c00148{height:43.910303px;}
.h8_c00148{height:48.116836px;}
.h0_c00148{height:1335.000000px;}
.w0_c00148{width:880.500000px;}
.x0_c00148{left:0.000000px;}
.xe_c00148{left:151.080000px;}
.x95_c00148{left:153.000000px;}
.x101_c00148{left:154.080000px;}
.x3_c00148{left:166.080000px;}
.x52_c00148{left:167.580000px;}
.x102_c00148{left:169.080000px;}
.xfa_c00148{left:171.420000px;}
.xc8_c00148{left:174.420000px;}
.xc3_c00148{left:178.920000px;}
.x1c_c00148{left:181.080000px;}
.xe2_c00148{left:184.080000px;}
.x83_c00148{left:186.000000px;}
.x72_c00148{left:187.500000px;}
.xd6_c00148{left:189.420000px;}
.xbb_c00148{left:192.000000px;}
.xa0_c00148{left:195.000000px;}
.xf4_c00148{left:196.920000px;}
.xeb_c00148{left:198.000000px;}
.xc9_c00148{left:199.500000px;}
.xda_c00148{left:201.000000px;}
.x3d_c00148{left:204.000000px;}
.x1d_c00148{left:205.500000px;}
.xf_c00148{left:208.080000px;}
.xbc_c00148{left:211.500000px;}
.x53_c00148{left:212.580000px;}
.x34_c00148{left:214.080000px;}
.x10c_c00148{left:217.920000px;}
.xd7_c00148{left:220.500000px;}
.xa1_c00148{left:222.000000px;}
.x28_c00148{left:225.000000px;}
.x49_c00148{left:226.920000px;}
.xca_c00148{left:228.000000px;}
.x10_c00148{left:229.920000px;}
.xb5_c00148{left:231.420000px;}
.x107_c00148{left:232.920000px;}
.x58_c00148{left:235.500000px;}
.x1e_c00148{left:237.000000px;}
.x96_c00148{left:238.500000px;}
.xbd_c00148{left:241.920000px;}
.xe3_c00148{left:244.080000px;}
.x29_c00148{left:246.000000px;}
.x10d_c00148{left:247.500000px;}
.xdb_c00148{left:250.920000px;}
.xaf_c00148{left:252.000000px;}
.x84_c00148{left:253.920000px;}
.x4_c00148{left:255.000000px;}
.xa7_c00148{left:256.500000px;}
.xcb_c00148{left:257.580000px;}
.xa2_c00148{left:259.500000px;}
.x61_c00148{left:261.420000px;}
.xd8_c00148{left:262.500000px;}
.xfe_c00148{left:264.000000px;}
.x35_c00148{left:268.080000px;}
.xd1_c00148{left:270.000000px;}
.x3e_c00148{left:271.920000px;}
.xec_c00148{left:273.420000px;}
.x5_c00148{left:274.500000px;}
.x6a_c00148{left:276.000000px;}
.xa8_c00148{left:277.920000px;}
.x97_c00148{left:279.420000px;}
.x85_c00148{left:280.500000px;}
.xfb_c00148{left:283.500000px;}
.xff_c00148{left:285.000000px;}
.xd2_c00148{left:286.500000px;}
.x1f_c00148{left:288.000000px;}
.x62_c00148{left:289.080000px;}
.x4a_c00148{left:291.000000px;}
.x11_c00148{left:292.500000px;}
.x8d_c00148{left:294.000000px;}
.x73_c00148{left:297.000000px;}
.xed_c00148{left:298.500000px;}
.x3f_c00148{left:300.000000px;}
.x10e_c00148{left:301.080000px;}
.x54_c00148{left:302.580000px;}
.xee_c00148{left:304.080000px;}
.xa9_c00148{left:306.420000px;}
.x59_c00148{left:309.000000px;}
.x6_c00148{left:310.920000px;}
.x98_c00148{left:312.000000px;}
.xef_c00148{left:313.080000px;}
.x36_c00148{left:315.000000px;}
.x74_c00148{left:316.080000px;}
.x20_c00148{left:319.500000px;}
.x9b_c00148{left:320.580000px;}
.x12_c00148{left:324.000000px;}
.x63_c00148{left:325.080000px;}
.x5a_c00148{left:330.420000px;}
.x86_c00148{left:331.500000px;}
.x9c_c00148{left:335.355000px;}
.x4b_c00148{left:336.855000px;}
.x40_c00148{left:338.580000px;}
.x103_c00148{left:342.000000px;}
.xf0_c00148{left:343.500000px;}
.x64_c00148{left:345.420000px;}
.x55_c00148{left:347.580000px;}
.x10f_c00148{left:349.500000px;}
.xfd_c00148{left:350.580000px;}
.x9d_c00148{left:352.500000px;}
.x5b_c00148{left:357.420000px;}
.x41_c00148{left:358.920000px;}
.x6b_c00148{left:361.920000px;}
.x13_c00148{left:366.000000px;}
.x2a_c00148{left:367.920000px;}
.xe7_c00148{left:369.000000px;}
.xcc_c00148{left:370.500000px;}
.x8e_c00148{left:372.000000px;}
.x65_c00148{left:373.080000px;}
.x99_c00148{left:376.500000px;}
.x21_c00148{left:381.000000px;}
.x7_c00148{left:382.920000px;}
.x9e_c00148{left:384.000000px;}
.xf1_c00148{left:385.500000px;}
.x42_c00148{left:387.000000px;}
.xfc_c00148{left:388.080000px;}
.x6c_c00148{left:389.580000px;}
.xaa_c00148{left:392.580000px;}
.xb0_c00148{left:394.500000px;}
.x1_c00148{left:397.500000px;}
.x2b_c00148{left:399.000000px;}
.x5c_c00148{left:402.000000px;}
.x14_c00148{left:403.500000px;}
.xe0_c00148{left:406.080000px;}
.xbe_c00148{left:408.000000px;}
.x37_c00148{left:409.500000px;}
.xd3_c00148{left:411.420000px;}
.xe4_c00148{left:415.080000px;}
.x56_c00148{left:417.420000px;}
.xcd_c00148{left:418.500000px;}
.x9f_c00148{left:420.000000px;}
.xab_c00148{left:421.920000px;}
.x75_c00148{left:423.000000px;}
.xbf_c00148{left:424.500000px;}
.xdc_c00148{left:425.580000px;}
.x2c_c00148{left:427.920000px;}
.xb1_c00148{left:429.420000px;}
.x22_c00148{left:430.920000px;}
.xb6_c00148{left:432.000000px;}
.xe5_c00148{left:433.500000px;}
.x15_c00148{left:436.500000px;}
.xc0_c00148{left:438.420000px;}
.x8f_c00148{left:439.500000px;}
.x43_c00148{left:442.080000px;}
.x57_c00148{left:444.000000px;}
.x4c_c00148{left:445.080000px;}
.xe1_c00148{left:447.000000px;}
.xd4_c00148{left:448.920000px;}
.x66_c00148{left:450.420000px;}
.x7d_c00148{left:453.000000px;}
.x104_c00148{left:454.080000px;}
.x5d_c00148{left:455.580000px;}
.x23_c00148{left:457.080000px;}
.x2d_c00148{left:460.080000px;}
.xc4_c00148{left:462.420000px;}
.x76_c00148{left:465.000000px;}
.x8_c00148{left:466.500000px;}
.xdd_c00148{left:468.000000px;}
.xe8_c00148{left:469.500000px;}
.x6d_c00148{left:470.580000px;}
.x16_c00148{left:472.920000px;}
.x90_c00148{left:475.500000px;}
.x87_c00148{left:477.000000px;}
.x67_c00148{left:478.920000px;}
.x110_c00148{left:480.000000px;}
.x108_c00148{left:483.000000px;}
.x9_c00148{left:485.580000px;}
.xf2_c00148{left:487.500000px;}
.x38_c00148{left:489.000000px;}
.x2e_c00148{left:490.080000px;}
.x4d_c00148{left:492.000000px;}
.xf3_c00148{left:493.080000px;}
.x77_c00148{left:496.080000px;}
.x7e_c00148{left:498.420000px;}
.x24_c00148{left:499.500000px;}
.xd9_c00148{left:501.000000px;}
.x2f_c00148{left:502.500000px;}
.xf7_c00148{left:504.000000px;}
.x68_c00148{left:505.080000px;}
.x44_c00148{left:507.000000px;}
.x105_c00148{left:508.500000px;}
.xa3_c00148{left:510.000000px;}
.xb7_c00148{left:515.580000px;}
.x6e_c00148{left:519.420000px;}
.xce_c00148{left:523.920000px;}
.x39_c00148{left:526.920000px;}
.x91_c00148{left:528.000000px;}
.xb2_c00148{left:531.420000px;}
.x30_c00148{left:532.500000px;}
.xa_c00148{left:534.000000px;}
.x4e_c00148{left:535.500000px;}
.xc5_c00148{left:536.580000px;}
.x45_c00148{left:540.420000px;}
.x78_c00148{left:541.920000px;}
.x88_c00148{left:543.420000px;}
.xe9_c00148{left:546.000000px;}
.xa4_c00148{left:547.500000px;}
.x7f_c00148{left:548.580000px;}
.x17_c00148{left:553.500000px;}
.x111_c00148{left:555.420000px;}
.xb3_c00148{left:556.500000px;}
.xb8_c00148{left:558.000000px;}
.xb_c00148{left:561.420000px;}
.xde_c00148{left:562.920000px;}
.xcf_c00148{left:564.000000px;}
.x69_c00148{left:565.500000px;}
.x89_c00148{left:567.000000px;}
.x79_c00148{left:568.500000px;}
.x80_c00148{left:570.420000px;}
.x25_c00148{left:573.000000px;}
.xa5_c00148{left:574.500000px;}
.xf8_c00148{left:577.080000px;}
.x6f_c00148{left:579.000000px;}
.x31_c00148{left:580.500000px;}
.x5e_c00148{left:582.000000px;}
.x46_c00148{left:583.500000px;}
.x4f_c00148{left:588.420000px;}
.x109_c00148{left:589.920000px;}
.xc_c00148{left:591.420000px;}
.xc6_c00148{left:592.920000px;}
.x9a_c00148{left:596.355000px;}
.x92_c00148{left:597.420000px;}
.xe6_c00148{left:598.500000px;}
.x70_c00148{left:601.080000px;}
.x18_c00148{left:602.580000px;}
.x3a_c00148{left:607.500000px;}
.xf5_c00148{left:608.580000px;}
.x81_c00148{left:610.500000px;}
.x47_c00148{left:612.000000px;}
.x7a_c00148{left:616.080000px;}
.x5f_c00148{left:619.500000px;}
.xf9_c00148{left:620.580000px;}
.xc1_c00148{left:622.920000px;}
.x50_c00148{left:625.920000px;}
.x32_c00148{left:627.000000px;}
.x26_c00148{left:630.000000px;}
.xa6_c00148{left:631.500000px;}
.xac_c00148{left:633.000000px;}
.x7b_c00148{left:634.920000px;}
.x8a_c00148{left:636.000000px;}
.x106_c00148{left:637.080000px;}
.x71_c00148{left:640.500000px;}
.xea_c00148{left:646.500000px;}
.xf6_c00148{left:647.580000px;}
.xc2_c00148{left:649.500000px;}
.x19_c00148{left:651.000000px;}
.xd5_c00148{left:652.500000px;}
.xb4_c00148{left:655.500000px;}
.xdf_c00148{left:657.000000px;}
.xd0_c00148{left:658.920000px;}
.xd_c00148{left:661.500000px;}
.x1a_c00148{left:663.000000px;}
.x100_c00148{left:665.580000px;}
.x8b_c00148{left:667.920000px;}
.xc7_c00148{left:669.000000px;}
.x10a_c00148{left:670.920000px;}
.x33_c00148{left:672.000000px;}
.xb9_c00148{left:674.355000px;}
.x27_c00148{left:676.500000px;}
.x93_c00148{left:677.580000px;}
.x48_c00148{left:679.500000px;}
.x3b_c00148{left:684.000000px;}
.x112_c00148{left:685.500000px;}
.x51_c00148{left:687.000000px;}
.xad_c00148{left:688.080000px;}
.x7c_c00148{left:692.580000px;}
.x82_c00148{left:694.080000px;}
.x60_c00148{left:696.420000px;}
.x1b_c00148{left:697.920000px;}
.x94_c00148{left:700.920000px;}
.x2_c00148{left:703.920000px;}
.x3c_c00148{left:706.920000px;}
.xae_c00148{left:708.420000px;}
.xba_c00148{left:709.500000px;}
.x10b_c00148{left:712.080000px;}
.x8c_c00148{left:716.580000px;}
@media print{
.v0_c00148{vertical-align:0.000000pt;}
.ls0_c00148{letter-spacing:0.000000pt;}
.ws0_c00148{word-spacing:0.000000pt;}
.fs3_c00148{font-size:3.040000pt;}
.fs8_c00148{font-size:10.560000pt;}
.fs0_c00148{font-size:16.640000pt;}
.fs6_c00148{font-size:18.133333pt;}
.fs4_c00148{font-size:22.666667pt;}
.fs1_c00148{font-size:25.706667pt;}
.fs5_c00148{font-size:28.746667pt;}
.fs2_c00148{font-size:31.733333pt;}
.fs7_c00148{font-size:34.773333pt;}
.y0_c00148{bottom:0.000000pt;}
.ye8_c00148{bottom:214.440000pt;}
.yea_c00148{bottom:214.826667pt;}
.ye9_c00148{bottom:215.226667pt;}
.ye5_c00148{bottom:216.360000pt;}
.ye7_c00148{bottom:217.306667pt;}
.ye6_c00148{bottom:217.693333pt;}
.ye0_c00148{bottom:231.773333pt;}
.ydf_c00148{bottom:232.733333pt;}
.ye2_c00148{bottom:233.106667pt;}
.ye1_c00148{bottom:233.693333pt;}
.ye3_c00148{bottom:233.893333pt;}
.ye4_c00148{bottom:235.026667pt;}
.ydb_c00148{bottom:249.106667pt;}
.yd9_c00148{bottom:250.440000pt;}
.yda_c00148{bottom:251.026667pt;}
.ydc_c00148{bottom:251.226667pt;}
.ydd_c00148{bottom:251.973333pt;}
.yd7_c00148{bottom:252.360000pt;}
.yd8_c00148{bottom:252.373333pt;}
.yde_c00148{bottom:253.306667pt;}
.yd6_c00148{bottom:269.693333pt;}
.yd3_c00148{bottom:283.773333pt;}
.yd1_c00148{bottom:285.106667pt;}
.yd4_c00148{bottom:285.693333pt;}
.yd5_c00148{bottom:286.066667pt;}
.yd2_c00148{bottom:286.640000pt;}
.ycf_c00148{bottom:287.026667pt;}
.yd0_c00148{bottom:287.040000pt;}
.yce_c00148{bottom:302.440000pt;}
.ycb_c00148{bottom:304.360000pt;}
.ycc_c00148{bottom:304.560000pt;}
.ycd_c00148{bottom:305.706667pt;}
.yc9_c00148{bottom:319.026667pt;}
.yc7_c00148{bottom:319.773333pt;}
.yca_c00148{bottom:320.733333pt;}
.yc8_c00148{bottom:323.040000pt;}
.yc4_c00148{bottom:337.106667pt;}
.yc5_c00148{bottom:338.440000pt;}
.yc6_c00148{bottom:340.373333pt;}
.yc3_c00148{bottom:358.066667pt;}
.yc0_c00148{bottom:359.026667pt;}
.yc2_c00148{bottom:359.973333pt;}
.yc1_c00148{bottom:360.933333pt;}
.ybe_c00148{bottom:373.306667pt;}
.ybf_c00148{bottom:374.066667pt;}
.ybc_c00148{bottom:375.026667pt;}
.ybb_c00148{bottom:375.400000pt;}
.ybd_c00148{bottom:376.933333pt;}
.yb8_c00148{bottom:393.106667pt;}
.yba_c00148{bottom:394.066667pt;}
.yb9_c00148{bottom:395.026667pt;}
.yb5_c00148{bottom:415.226667pt;}
.yb1_c00148{bottom:415.800000pt;}
.yad_c00148{bottom:416.360000pt;}
.yb6_c00148{bottom:417.106667pt;}
.yb2_c00148{bottom:417.693333pt;}
.yb4_c00148{bottom:418.066667pt;}
.yb7_c00148{bottom:419.026667pt;}
.yaf_c00148{bottom:419.226667pt;}
.yae_c00148{bottom:419.400000pt;}
.yb3_c00148{bottom:420.360000pt;}
.yb0_c00148{bottom:421.893333pt;}
.yaa_c00148{bottom:433.693333pt;}
.yac_c00148{bottom:435.773333pt;}
.yab_c00148{bottom:436.560000pt;}
.ya9_c00148{bottom:436.733333pt;}
.ya8_c00148{bottom:437.693333pt;}
.ya7_c00148{bottom:452.360000pt;}
.ya4_c00148{bottom:453.106667pt;}
.ya6_c00148{bottom:454.066667pt;}
.ya5_c00148{bottom:455.026667pt;}
.ya1_c00148{bottom:469.693333pt;}
.ya2_c00148{bottom:470.440000pt;}
.ya3_c00148{bottom:470.640000pt;}
.ya0_c00148{bottom:471.400000pt;}
.y9f_c00148{bottom:472.360000pt;}
.y9d_c00148{bottom:487.026667pt;}
.y9b_c00148{bottom:487.400000pt;}
.y9c_c00148{bottom:487.773333pt;}
.y99_c00148{bottom:488.560000pt;}
.y9e_c00148{bottom:488.733333pt;}
.y97_c00148{bottom:489.306667pt;}
.y9a_c00148{bottom:489.693333pt;}
.y98_c00148{bottom:489.893333pt;}
.y96_c00148{bottom:505.106667pt;}
.y93_c00148{bottom:507.026667pt;}
.y95_c00148{bottom:507.226667pt;}
.y94_c00148{bottom:507.973333pt;}
.y8d_c00148{bottom:521.693333pt;}
.y90_c00148{bottom:522.440000pt;}
.y92_c00148{bottom:522.826667pt;}
.y8f_c00148{bottom:523.773333pt;}
.y91_c00148{bottom:524.360000pt;}
.y8e_c00148{bottom:525.693333pt;}
.y8a_c00148{bottom:539.026667pt;}
.y8c_c00148{bottom:539.773333pt;}
.y89_c00148{bottom:541.106667pt;}
.y8b_c00148{bottom:541.693333pt;}
.y87_c00148{bottom:541.893333pt;}
.y88_c00148{bottom:543.026667pt;}
.y83_c00148{bottom:556.360000pt;}
.y86_c00148{bottom:557.493333pt;}
.y84_c00148{bottom:558.440000pt;}
.y85_c00148{bottom:559.400000pt;}
.y82_c00148{bottom:560.360000pt;}
.y81_c00148{bottom:561.306667pt;}
.y80_c00148{bottom:575.773333pt;}
.y7e_c00148{bottom:576.560000pt;}
.y7f_c00148{bottom:577.693333pt;}
.y77_c00148{bottom:591.773333pt;}
.y7b_c00148{bottom:591.973333pt;}
.y76_c00148{bottom:592.733333pt;}
.y7c_c00148{bottom:593.106667pt;}
.y7a_c00148{bottom:594.640000pt;}
.y78_c00148{bottom:595.026667pt;}
.y7d_c00148{bottom:595.226667pt;}
.y79_c00148{bottom:595.973333pt;}
.y72_c00148{bottom:610.440000pt;}
.y74_c00148{bottom:610.640000pt;}
.y73_c00148{bottom:612.360000pt;}
.y75_c00148{bottom:613.693333pt;}
.y6d_c00148{bottom:627.773333pt;}
.y6f_c00148{bottom:628.733333pt;}
.y70_c00148{bottom:629.106667pt;}
.y6e_c00148{bottom:629.693333pt;}
.y71_c00148{bottom:631.026667pt;}
.y65_c00148{bottom:645.106667pt;}
.y67_c00148{bottom:646.440000pt;}
.y68_c00148{bottom:647.026667pt;}
.y69_c00148{bottom:647.226667pt;}
.y6a_c00148{bottom:647.400000pt;}
.y66_c00148{bottom:647.973333pt;}
.y6b_c00148{bottom:648.360000pt;}
.y6c_c00148{bottom:649.306667pt;}
.y5f_c00148{bottom:662.440000pt;}
.y62_c00148{bottom:662.640000pt;}
.y60_c00148{bottom:664.360000pt;}
.y63_c00148{bottom:664.560000pt;}
.y61_c00148{bottom:665.306667pt;}
.y5e_c00148{bottom:665.693333pt;}
.y64_c00148{bottom:666.640000pt;}
.y5b_c00148{bottom:679.400000pt;}
.y58_c00148{bottom:681.106667pt;}
.y59_c00148{bottom:681.306667pt;}
.y5c_c00148{bottom:682.066667pt;}
.y5d_c00148{bottom:682.266667pt;}
.y5a_c00148{bottom:683.026667pt;}
.y56_c00148{bottom:698.440000pt;}
.y57_c00148{bottom:698.640000pt;}
.y55_c00148{bottom:700.360000pt;}
.y53_c00148{bottom:714.066667pt;}
.y51_c00148{bottom:715.773333pt;}
.y52_c00148{bottom:715.973333pt;}
.y54_c00148{bottom:716.733333pt;}
.y50_c00148{bottom:717.693333pt;}
.y4e_c00148{bottom:733.106667pt;}
.y4f_c00148{bottom:733.693333pt;}
.y4b_c00148{bottom:735.026667pt;}
.y4d_c00148{bottom:735.226667pt;}
.y4c_c00148{bottom:735.973333pt;}
.y47_c00148{bottom:750.440000pt;}
.y4a_c00148{bottom:751.773333pt;}
.y49_c00148{bottom:753.306667pt;}
.y48_c00148{bottom:753.693333pt;}
.y42_c00148{bottom:767.773333pt;}
.y40_c00148{bottom:769.693333pt;}
.y41_c00148{bottom:769.893333pt;}
.y45_c00148{bottom:770.066667pt;}
.y44_c00148{bottom:770.640000pt;}
.y43_c00148{bottom:771.026667pt;}
.y46_c00148{bottom:771.973333pt;}
.y3e_c00148{bottom:786.066667pt;}
.y3f_c00148{bottom:787.226667pt;}
.y3c_c00148{bottom:787.973333pt;}
.y3d_c00148{bottom:788.360000pt;}
.y37_c00148{bottom:803.773333pt;}
.y38_c00148{bottom:804.560000pt;}
.y3b_c00148{bottom:804.733333pt;}
.y36_c00148{bottom:805.306667pt;}
.y39_c00148{bottom:805.693333pt;}
.y3a_c00148{bottom:806.640000pt;}
.y32_c00148{bottom:820.360000pt;}
.y33_c00148{bottom:821.306667pt;}
.y35_c00148{bottom:822.066667pt;}
.y31_c00148{bottom:823.026667pt;}
.y34_c00148{bottom:823.973333pt;}
.y2f_c00148{bottom:837.306667pt;}
.y2e_c00148{bottom:838.440000pt;}
.y2c_c00148{bottom:838.640000pt;}
.y2d_c00148{bottom:839.400000pt;}
.y2b_c00148{bottom:840.360000pt;}
.y30_c00148{bottom:841.693333pt;}
.y2a_c00148{bottom:855.773333pt;}
.y27_c00148{bottom:856.360000pt;}
.y26_c00148{bottom:856.733333pt;}
.y25_c00148{bottom:857.306667pt;}
.y24_c00148{bottom:857.693333pt;}
.y28_c00148{bottom:857.893333pt;}
.y29_c00148{bottom:858.640000pt;}
.y21_c00148{bottom:872.360000pt;}
.y22_c00148{bottom:873.106667pt;}
.y1f_c00148{bottom:875.026667pt;}
.y20_c00148{bottom:875.973333pt;}
.y23_c00148{bottom:876.360000pt;}
.y19_c00148{bottom:889.693333pt;}
.y1c_c00148{bottom:891.026667pt;}
.y1e_c00148{bottom:891.400000pt;}
.y1d_c00148{bottom:891.773333pt;}
.y18_c00148{bottom:892.360000pt;}
.y16_c00148{bottom:892.560000pt;}
.y1a_c00148{bottom:892.733333pt;}
.y17_c00148{bottom:893.306667pt;}
.y1b_c00148{bottom:893.693333pt;}
.y10_c00148{bottom:907.026667pt;}
.y14_c00148{bottom:907.773333pt;}
.y12_c00148{bottom:908.733333pt;}
.y15_c00148{bottom:909.106667pt;}
.yf_c00148{bottom:909.693333pt;}
.y11_c00148{bottom:909.893333pt;}
.y13_c00148{bottom:910.640000pt;}
.y7_c00148{bottom:925.106667pt;}
.ya_c00148{bottom:925.306667pt;}
.ye_c00148{bottom:925.693333pt;}
.yd_c00148{bottom:926.440000pt;}
.y9_c00148{bottom:927.026667pt;}
.yb_c00148{bottom:927.226667pt;}
.y8_c00148{bottom:927.973333pt;}
.yc_c00148{bottom:928.360000pt;}
.y3_c00148{bottom:943.773333pt;}
.y6_c00148{bottom:944.560000pt;}
.y5_c00148{bottom:945.693333pt;}
.y4_c00148{bottom:945.706667pt;}
.y2_c00148{bottom:977.693333pt;}
.y1_c00148{bottom:980.560000pt;}
.h4_c00148{height:3.739141pt;}
.h9_c00148{height:12.988594pt;}
.h1_c00148{height:20.466875pt;}
.h7_c00148{height:22.303646pt;}
.h5_c00148{height:27.879557pt;}
.h2_c00148{height:31.618698pt;}
.h6_c00148{height:35.357839pt;}
.h3_c00148{height:39.031380pt;}
.h8_c00148{height:42.770521pt;}
.h0_c00148{height:1186.666667pt;}
.w0_c00148{width:782.666667pt;}
.x0_c00148{left:0.000000pt;}
.xe_c00148{left:134.293333pt;}
.x95_c00148{left:136.000000pt;}
.x101_c00148{left:136.960000pt;}
.x3_c00148{left:147.626667pt;}
.x52_c00148{left:148.960000pt;}
.x102_c00148{left:150.293333pt;}
.xfa_c00148{left:152.373333pt;}
.xc8_c00148{left:155.040000pt;}
.xc3_c00148{left:159.040000pt;}
.x1c_c00148{left:160.960000pt;}
.xe2_c00148{left:163.626667pt;}
.x83_c00148{left:165.333333pt;}
.x72_c00148{left:166.666667pt;}
.xd6_c00148{left:168.373333pt;}
.xbb_c00148{left:170.666667pt;}
.xa0_c00148{left:173.333333pt;}
.xf4_c00148{left:175.040000pt;}
.xeb_c00148{left:176.000000pt;}
.xc9_c00148{left:177.333333pt;}
.xda_c00148{left:178.666667pt;}
.x3d_c00148{left:181.333333pt;}
.x1d_c00148{left:182.666667pt;}
.xf_c00148{left:184.960000pt;}
.xbc_c00148{left:188.000000pt;}
.x53_c00148{left:188.960000pt;}
.x34_c00148{left:190.293333pt;}
.x10c_c00148{left:193.706667pt;}
.xd7_c00148{left:196.000000pt;}
.xa1_c00148{left:197.333333pt;}
.x28_c00148{left:200.000000pt;}
.x49_c00148{left:201.706667pt;}
.xca_c00148{left:202.666667pt;}
.x10_c00148{left:204.373333pt;}
.xb5_c00148{left:205.706667pt;}
.x107_c00148{left:207.040000pt;}
.x58_c00148{left:209.333333pt;}
.x1e_c00148{left:210.666667pt;}
.x96_c00148{left:212.000000pt;}
.xbd_c00148{left:215.040000pt;}
.xe3_c00148{left:216.960000pt;}
.x29_c00148{left:218.666667pt;}
.x10d_c00148{left:220.000000pt;}
.xdb_c00148{left:223.040000pt;}
.xaf_c00148{left:224.000000pt;}
.x84_c00148{left:225.706667pt;}
.x4_c00148{left:226.666667pt;}
.xa7_c00148{left:228.000000pt;}
.xcb_c00148{left:228.960000pt;}
.xa2_c00148{left:230.666667pt;}
.x61_c00148{left:232.373333pt;}
.xd8_c00148{left:233.333333pt;}
.xfe_c00148{left:234.666667pt;}
.x35_c00148{left:238.293333pt;}
.xd1_c00148{left:240.000000pt;}
.x3e_c00148{left:241.706667pt;}
.xec_c00148{left:243.040000pt;}
.x5_c00148{left:244.000000pt;}
.x6a_c00148{left:245.333333pt;}
.xa8_c00148{left:247.040000pt;}
.x97_c00148{left:248.373333pt;}
.x85_c00148{left:249.333333pt;}
.xfb_c00148{left:252.000000pt;}
.xff_c00148{left:253.333333pt;}
.xd2_c00148{left:254.666667pt;}
.x1f_c00148{left:256.000000pt;}
.x62_c00148{left:256.960000pt;}
.x4a_c00148{left:258.666667pt;}
.x11_c00148{left:260.000000pt;}
.x8d_c00148{left:261.333333pt;}
.x73_c00148{left:264.000000pt;}
.xed_c00148{left:265.333333pt;}
.x3f_c00148{left:266.666667pt;}
.x10e_c00148{left:267.626667pt;}
.x54_c00148{left:268.960000pt;}
.xee_c00148{left:270.293333pt;}
.xa9_c00148{left:272.373333pt;}
.x59_c00148{left:274.666667pt;}
.x6_c00148{left:276.373333pt;}
.x98_c00148{left:277.333333pt;}
.xef_c00148{left:278.293333pt;}
.x36_c00148{left:280.000000pt;}
.x74_c00148{left:280.960000pt;}
.x20_c00148{left:284.000000pt;}
.x9b_c00148{left:284.960000pt;}
.x12_c00148{left:288.000000pt;}
.x63_c00148{left:288.960000pt;}
.x5a_c00148{left:293.706667pt;}
.x86_c00148{left:294.666667pt;}
.x9c_c00148{left:298.093333pt;}
.x4b_c00148{left:299.426667pt;}
.x40_c00148{left:300.960000pt;}
.x103_c00148{left:304.000000pt;}
.xf0_c00148{left:305.333333pt;}
.x64_c00148{left:307.040000pt;}
.x55_c00148{left:308.960000pt;}
.x10f_c00148{left:310.666667pt;}
.xfd_c00148{left:311.626667pt;}
.x9d_c00148{left:313.333333pt;}
.x5b_c00148{left:317.706667pt;}
.x41_c00148{left:319.040000pt;}
.x6b_c00148{left:321.706667pt;}
.x13_c00148{left:325.333333pt;}
.x2a_c00148{left:327.040000pt;}
.xe7_c00148{left:328.000000pt;}
.xcc_c00148{left:329.333333pt;}
.x8e_c00148{left:330.666667pt;}
.x65_c00148{left:331.626667pt;}
.x99_c00148{left:334.666667pt;}
.x21_c00148{left:338.666667pt;}
.x7_c00148{left:340.373333pt;}
.x9e_c00148{left:341.333333pt;}
.xf1_c00148{left:342.666667pt;}
.x42_c00148{left:344.000000pt;}
.xfc_c00148{left:344.960000pt;}
.x6c_c00148{left:346.293333pt;}
.xaa_c00148{left:348.960000pt;}
.xb0_c00148{left:350.666667pt;}
.x1_c00148{left:353.333333pt;}
.x2b_c00148{left:354.666667pt;}
.x5c_c00148{left:357.333333pt;}
.x14_c00148{left:358.666667pt;}
.xe0_c00148{left:360.960000pt;}
.xbe_c00148{left:362.666667pt;}
.x37_c00148{left:364.000000pt;}
.xd3_c00148{left:365.706667pt;}
.xe4_c00148{left:368.960000pt;}
.x56_c00148{left:371.040000pt;}
.xcd_c00148{left:372.000000pt;}
.x9f_c00148{left:373.333333pt;}
.xab_c00148{left:375.040000pt;}
.x75_c00148{left:376.000000pt;}
.xbf_c00148{left:377.333333pt;}
.xdc_c00148{left:378.293333pt;}
.x2c_c00148{left:380.373333pt;}
.xb1_c00148{left:381.706667pt;}
.x22_c00148{left:383.040000pt;}
.xb6_c00148{left:384.000000pt;}
.xe5_c00148{left:385.333333pt;}
.x15_c00148{left:388.000000pt;}
.xc0_c00148{left:389.706667pt;}
.x8f_c00148{left:390.666667pt;}
.x43_c00148{left:392.960000pt;}
.x57_c00148{left:394.666667pt;}
.x4c_c00148{left:395.626667pt;}
.xe1_c00148{left:397.333333pt;}
.xd4_c00148{left:399.040000pt;}
.x66_c00148{left:400.373333pt;}
.x7d_c00148{left:402.666667pt;}
.x104_c00148{left:403.626667pt;}
.x5d_c00148{left:404.960000pt;}
.x23_c00148{left:406.293333pt;}
.x2d_c00148{left:408.960000pt;}
.xc4_c00148{left:411.040000pt;}
.x76_c00148{left:413.333333pt;}
.x8_c00148{left:414.666667pt;}
.xdd_c00148{left:416.000000pt;}
.xe8_c00148{left:417.333333pt;}
.x6d_c00148{left:418.293333pt;}
.x16_c00148{left:420.373333pt;}
.x90_c00148{left:422.666667pt;}
.x87_c00148{left:424.000000pt;}
.x67_c00148{left:425.706667pt;}
.x110_c00148{left:426.666667pt;}
.x108_c00148{left:429.333333pt;}
.x9_c00148{left:431.626667pt;}
.xf2_c00148{left:433.333333pt;}
.x38_c00148{left:434.666667pt;}
.x2e_c00148{left:435.626667pt;}
.x4d_c00148{left:437.333333pt;}
.xf3_c00148{left:438.293333pt;}
.x77_c00148{left:440.960000pt;}
.x7e_c00148{left:443.040000pt;}
.x24_c00148{left:444.000000pt;}
.xd9_c00148{left:445.333333pt;}
.x2f_c00148{left:446.666667pt;}
.xf7_c00148{left:448.000000pt;}
.x68_c00148{left:448.960000pt;}
.x44_c00148{left:450.666667pt;}
.x105_c00148{left:452.000000pt;}
.xa3_c00148{left:453.333333pt;}
.xb7_c00148{left:458.293333pt;}
.x6e_c00148{left:461.706667pt;}
.xce_c00148{left:465.706667pt;}
.x39_c00148{left:468.373333pt;}
.x91_c00148{left:469.333333pt;}
.xb2_c00148{left:472.373333pt;}
.x30_c00148{left:473.333333pt;}
.xa_c00148{left:474.666667pt;}
.x4e_c00148{left:476.000000pt;}
.xc5_c00148{left:476.960000pt;}
.x45_c00148{left:480.373333pt;}
.x78_c00148{left:481.706667pt;}
.x88_c00148{left:483.040000pt;}
.xe9_c00148{left:485.333333pt;}
.xa4_c00148{left:486.666667pt;}
.x7f_c00148{left:487.626667pt;}
.x17_c00148{left:492.000000pt;}
.x111_c00148{left:493.706667pt;}
.xb3_c00148{left:494.666667pt;}
.xb8_c00148{left:496.000000pt;}
.xb_c00148{left:499.040000pt;}
.xde_c00148{left:500.373333pt;}
.xcf_c00148{left:501.333333pt;}
.x69_c00148{left:502.666667pt;}
.x89_c00148{left:504.000000pt;}
.x79_c00148{left:505.333333pt;}
.x80_c00148{left:507.040000pt;}
.x25_c00148{left:509.333333pt;}
.xa5_c00148{left:510.666667pt;}
.xf8_c00148{left:512.960000pt;}
.x6f_c00148{left:514.666667pt;}
.x31_c00148{left:516.000000pt;}
.x5e_c00148{left:517.333333pt;}
.x46_c00148{left:518.666667pt;}
.x4f_c00148{left:523.040000pt;}
.x109_c00148{left:524.373333pt;}
.xc_c00148{left:525.706667pt;}
.xc6_c00148{left:527.040000pt;}
.x9a_c00148{left:530.093333pt;}
.x92_c00148{left:531.040000pt;}
.xe6_c00148{left:532.000000pt;}
.x70_c00148{left:534.293333pt;}
.x18_c00148{left:535.626667pt;}
.x3a_c00148{left:540.000000pt;}
.xf5_c00148{left:540.960000pt;}
.x81_c00148{left:542.666667pt;}
.x47_c00148{left:544.000000pt;}
.x7a_c00148{left:547.626667pt;}
.x5f_c00148{left:550.666667pt;}
.xf9_c00148{left:551.626667pt;}
.xc1_c00148{left:553.706667pt;}
.x50_c00148{left:556.373333pt;}
.x32_c00148{left:557.333333pt;}
.x26_c00148{left:560.000000pt;}
.xa6_c00148{left:561.333333pt;}
.xac_c00148{left:562.666667pt;}
.x7b_c00148{left:564.373333pt;}
.x8a_c00148{left:565.333333pt;}
.x106_c00148{left:566.293333pt;}
.x71_c00148{left:569.333333pt;}
.xea_c00148{left:574.666667pt;}
.xf6_c00148{left:575.626667pt;}
.xc2_c00148{left:577.333333pt;}
.x19_c00148{left:578.666667pt;}
.xd5_c00148{left:580.000000pt;}
.xb4_c00148{left:582.666667pt;}
.xdf_c00148{left:584.000000pt;}
.xd0_c00148{left:585.706667pt;}
.xd_c00148{left:588.000000pt;}
.x1a_c00148{left:589.333333pt;}
.x100_c00148{left:591.626667pt;}
.x8b_c00148{left:593.706667pt;}
.xc7_c00148{left:594.666667pt;}
.x10a_c00148{left:596.373333pt;}
.x33_c00148{left:597.333333pt;}
.xb9_c00148{left:599.426667pt;}
.x27_c00148{left:601.333333pt;}
.x93_c00148{left:602.293333pt;}
.x48_c00148{left:604.000000pt;}
.x3b_c00148{left:608.000000pt;}
.x112_c00148{left:609.333333pt;}
.x51_c00148{left:610.666667pt;}
.xad_c00148{left:611.626667pt;}
.x7c_c00148{left:615.626667pt;}
.x82_c00148{left:616.960000pt;}
.x60_c00148{left:619.040000pt;}
.x1b_c00148{left:620.373333pt;}
.x94_c00148{left:623.040000pt;}
.x2_c00148{left:625.706667pt;}
.x3c_c00148{left:628.373333pt;}
.xae_c00148{left:629.706667pt;}
.xba_c00148{left:630.666667pt;}
.x10b_c00148{left:632.960000pt;}
.x8c_c00148{left:636.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_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_7751a20c502af9769d184add.woff2')format("woff");}.ff1_c00149{font-family:ff1_c00149;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb2_c00149{transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);}
.m76_c00149{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m78_c00149{transform:matrix(0.327922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327922,0.000000,0.000000,0.250000,0,0);}
.m7f_c00149{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.mdf_c00149{transform:matrix(0.341597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341597,0.000000,0.000000,0.250000,0,0);}
.mde_c00149{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);}
.mba_c00149{transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);}
.m32_c00149{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m15_c00149{transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);}
.mdd_c00149{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m27_c00149{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m2b_c00149{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m1b_c00149{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m106_c00149{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m10f_c00149{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m7d_c00149{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mef_c00149{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m30_c00149{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m88_c00149{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m4d_c00149{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m95_c00149{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m112_c00149{transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);}
.m18_c00149{transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);}
.m58_c00149{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.mdb_c00149{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m3b_c00149{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mc6_c00149{transform:matrix(0.394712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394712,0.000000,0.000000,0.250000,0,0);}
.m1d_c00149{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.mbd_c00149{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.me6_c00149{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.me1_c00149{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m49_c00149{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m19_c00149{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.ma3_c00149{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m12_c00149{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.md9_c00149{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m9f_c00149{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.ma0_c00149{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.me4_c00149{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mb9_c00149{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m98_c00149{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m81_c00149{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.md0_c00149{transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);}
.mc8_c00149{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.m6b_c00149{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mc3_c00149{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m48_c00149{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m66_c00149{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.mc4_c00149{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.ma8_c00149{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m82_c00149{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m3d_c00149{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m34_c00149{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m53_c00149{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m5d_c00149{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mac_c00149{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m92_c00149{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m80_c00149{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m59_c00149{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mc5_c00149{transform:matrix(0.423237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423237,0.000000,0.000000,0.250000,0,0);}
.mbb_c00149{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m107_c00149{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m113_c00149{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m84_c00149{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.mdc_c00149{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.m7a_c00149{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.mbc_c00149{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.m3f_c00149{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m9e_c00149{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.mf0_c00149{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m4b_c00149{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.m33_c00149{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.ma2_c00149{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m50_c00149{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.md3_c00149{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mda_c00149{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.mf3_c00149{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m77_c00149{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.ma5_c00149{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.ma_c00149{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.mc1_c00149{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.m41_c00149{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.mf8_c00149{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.ma4_c00149{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.mbf_c00149{transform:matrix(0.441390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441390,0.000000,0.000000,0.250000,0,0);}
.m9_c00149{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m7c_c00149{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.med_c00149{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.md2_c00149{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.mce_c00149{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.md8_c00149{transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);}
.m86_c00149{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.m62_c00149{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.mf5_c00149{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.mab_c00149{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m71_c00149{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m68_c00149{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m110_c00149{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m9d_c00149{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m5c_c00149{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m6a_c00149{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m51_c00149{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mfa_c00149{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.maf_c00149{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m6e_c00149{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.mb3_c00149{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m10a_c00149{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m8f_c00149{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.md6_c00149{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m61_c00149{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.me0_c00149{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.mfe_c00149{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m9b_c00149{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.ma7_c00149{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m6_c00149{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m2_c00149{transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);}
.m3c_c00149{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.md1_c00149{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m111_c00149{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m2a_c00149{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m45_c00149{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.mf7_c00149{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m96_c00149{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m103_c00149{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m5f_c00149{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mc9_c00149{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m64_c00149{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m26_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);}
.mb0_c00149{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m6d_c00149{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m94_c00149{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m99_c00149{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.m6f_c00149{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m83_c00149{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m7b_c00149{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m1a_c00149{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m14_c00149{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.mc0_c00149{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m35_c00149{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m11_c00149{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m89_c00149{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m2d_c00149{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m6c_c00149{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.me5_c00149{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m3a_c00149{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mee_c00149{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m8e_c00149{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m28_c00149{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.md7_c00149{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m79_c00149{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m56_c00149{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m17_c00149{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m90_c00149{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m8d_c00149{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m7e_c00149{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m5a_c00149{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m40_c00149{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m1f_c00149{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m10_c00149{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.me7_c00149{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m10c_c00149{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.meb_c00149{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.me9_c00149{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m2f_c00149{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m105_c00149{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.me_c00149{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m52_c00149{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m29_c00149{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m67_c00149{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m102_c00149{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m69_c00149{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mca_c00149{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.me2_c00149{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m38_c00149{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m73_c00149{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m8a_c00149{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m3_c00149{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m101_c00149{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m47_c00149{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m1c_c00149{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m85_c00149{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m5e_c00149{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m57_c00149{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mec_c00149{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m72_c00149{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m37_c00149{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mf2_c00149{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m21_c00149{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m55_c00149{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m4a_c00149{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m97_c00149{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);}
.m4c_c00149{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m87_c00149{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m75_c00149{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m74_c00149{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m4_c00149{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.me8_c00149{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m5b_c00149{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mc2_c00149{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m9a_c00149{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.ma1_c00149{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mbe_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);}
.m24_c00149{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m93_c00149{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m39_c00149{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m8_c00149{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.ma6_c00149{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m7_c00149{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m8b_c00149{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m10b_c00149{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m22_c00149{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m109_c00149{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.mf4_c00149{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.ma9_c00149{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m91_c00149{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.mea_c00149{transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);}
.mf6_c00149{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.mb_c00149{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m54_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);}
.m65_c00149{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mb8_c00149{transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);}
.m0_c00149{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m20_c00149{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m70_c00149{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m10d_c00149{transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);}
.mf_c00149{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mcb_c00149{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.mfc_c00149{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.mb6_c00149{transform:matrix(0.617739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617739,0.000000,0.000000,0.250000,0,0);}
.mcf_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);}
.md5_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);}
.mad_c00149{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mb1_c00149{transform:matrix(0.628824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628824,0.000000,0.000000,0.250000,0,0);}
.mfd_c00149{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m63_c00149{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m108_c00149{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m42_c00149{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m46_c00149{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m60_c00149{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.mf1_c00149{transform:matrix(0.646471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.646471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.646471,0.000000,0.000000,0.250000,0,0);}
.mff_c00149{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m100_c00149{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m43_c00149{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m1e_c00149{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m13_c00149{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mb4_c00149{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m31_c00149{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m1_c00149{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.mcd_c00149{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.m104_c00149{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m2c_c00149{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.mc_c00149{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m2e_c00149{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.mb7_c00149{transform:matrix(0.697647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697647,0.000000,0.000000,0.250000,0,0);}
.maa_c00149{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.mcc_c00149{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m4f_c00149{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.mc7_c00149{transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);}
.m16_c00149{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mae_c00149{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m44_c00149{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.mf9_c00149{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.md_c00149{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m25_c00149{transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);}
.me3_c00149{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m8c_c00149{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m23_c00149{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mb5_c00149{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m36_c00149{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m4e_c00149{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m5_c00149{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m9c_c00149{transform:matrix(0.936699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.936699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.936699,0.000000,0.000000,0.250000,0,0);}
.m10e_c00149{transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);}
.mfb_c00149{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m3e_c00149{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.md4_c00149{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00149{vertical-align:0.000000px;}
.ls0_c00149{letter-spacing:0.000000px;}
.sc__c00149{text-shadow:none;}
.sc0_c00149{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00149{-webkit-text-stroke:0px transparent;}
.sc0_c00149{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00149{word-spacing:0.000000px;}
.fc0_c00149{color:transparent;}
.fs6_c00149{font-size:3.420000px;}
.fs7_c00149{font-size:11.880000px;}
.fs8_c00149{font-size:13.620000px;}
.fs1_c00149{font-size:18.720000px;}
.fs0_c00149{font-size:20.400000px;}
.fs4_c00149{font-size:25.500000px;}
.fs3_c00149{font-size:28.920000px;}
.fs2_c00149{font-size:32.340000px;}
.fs5_c00149{font-size:35.700000px;}
.y0_c00149{bottom:0.000000px;}
.yd9_c00149{bottom:251.325000px;}
.yd6_c00149{bottom:251.970000px;}
.yda_c00149{bottom:252.405000px;}
.yd5_c00149{bottom:252.630000px;}
.yd7_c00149{bottom:253.470000px;}
.yd8_c00149{bottom:253.695000px;}
.ydb_c00149{bottom:254.550000px;}
.yd2_c00149{bottom:265.905000px;}
.yd1_c00149{bottom:266.325000px;}
.yd0_c00149{bottom:266.970000px;}
.ycf_c00149{bottom:267.195000px;}
.yd4_c00149{bottom:267.405000px;}
.yd3_c00149{bottom:269.550000px;}
.yca_c00149{bottom:280.905000px;}
.yc9_c00149{bottom:282.195000px;}
.ycd_c00149{bottom:282.405000px;}
.yce_c00149{bottom:283.470000px;}
.ycb_c00149{bottom:283.695000px;}
.ycc_c00149{bottom:284.550000px;}
.yc8_c00149{bottom:301.245000px;}
.yc7_c00149{bottom:302.745000px;}
.yc4_c00149{bottom:303.405000px;}
.yc6_c00149{bottom:304.470000px;}
.yc5_c00149{bottom:304.905000px;}
.ybf_c00149{bottom:320.745000px;}
.yc2_c00149{bottom:322.245000px;}
.yc0_c00149{bottom:322.905000px;}
.yc3_c00149{bottom:323.970000px;}
.yc1_c00149{bottom:324.405000px;}
.ybb_c00149{bottom:341.745000px;}
.yb8_c00149{bottom:342.405000px;}
.ybc_c00149{bottom:342.630000px;}
.ybe_c00149{bottom:343.470000px;}
.yb9_c00149{bottom:343.905000px;}
.yba_c00149{bottom:343.920000px;}
.ybd_c00149{bottom:344.970000px;}
.yb5_c00149{bottom:361.905000px;}
.yb6_c00149{bottom:362.325000px;}
.yb7_c00149{bottom:363.405000px;}
.yb4_c00149{bottom:380.745000px;}
.yb2_c00149{bottom:381.825000px;}
.yb0_c00149{bottom:382.470000px;}
.yb1_c00149{bottom:382.905000px;}
.yb3_c00149{bottom:383.970000px;}
.yaf_c00149{bottom:401.970000px;}
.yac_c00149{bottom:402.405000px;}
.yad_c00149{bottom:402.420000px;}
.yae_c00149{bottom:403.470000px;}
.yab_c00149{bottom:419.745000px;}
.ya9_c00149{bottom:421.245000px;}
.ya6_c00149{bottom:421.905000px;}
.ya7_c00149{bottom:422.130000px;}
.yaa_c00149{bottom:423.405000px;}
.ya8_c00149{bottom:423.420000px;}
.ya4_c00149{bottom:438.405000px;}
.ya0_c00149{bottom:439.245000px;}
.ya5_c00149{bottom:440.325000px;}
.ya3_c00149{bottom:440.745000px;}
.ya2_c00149{bottom:441.825000px;}
.ya1_c00149{bottom:442.920000px;}
.y9a_c00149{bottom:458.745000px;}
.y9b_c00149{bottom:460.245000px;}
.y9f_c00149{bottom:461.130000px;}
.y9e_c00149{bottom:461.325000px;}
.y9d_c00149{bottom:462.405000px;}
.y9c_c00149{bottom:462.420000px;}
.y92_c00149{bottom:481.905000px;}
.y93_c00149{bottom:482.325000px;}
.y99_c00149{bottom:482.550000px;}
.y95_c00149{bottom:482.970000px;}
.y98_c00149{bottom:483.405000px;}
.y97_c00149{bottom:484.050000px;}
.y96_c00149{bottom:484.470000px;}
.y94_c00149{bottom:485.550000px;}
.y8c_c00149{bottom:501.825000px;}
.y8e_c00149{bottom:502.050000px;}
.y8f_c00149{bottom:502.905000px;}
.y91_c00149{bottom:503.550000px;}
.y8d_c00149{bottom:503.970000px;}
.y90_c00149{bottom:505.050000px;}
.y8b_c00149{bottom:524.745000px;}
.y8a_c00149{bottom:526.470000px;}
.y89_c00149{bottom:526.905000px;}
.y88_c00149{bottom:551.130000px;}
.y86_c00149{bottom:551.325000px;}
.y87_c00149{bottom:551.550000px;}
.y85_c00149{bottom:552.405000px;}
.y84_c00149{bottom:566.130000px;}
.y81_c00149{bottom:566.775000px;}
.y7e_c00149{bottom:567.405000px;}
.y82_c00149{bottom:568.905000px;}
.y7b_c00149{bottom:569.745000px;}
.y7d_c00149{bottom:569.970000px;}
.y7f_c00149{bottom:570.630000px;}
.y7c_c00149{bottom:570.825000px;}
.y83_c00149{bottom:572.970000px;}
.y80_c00149{bottom:575.130000px;}
.y79_c00149{bottom:588.405000px;}
.y77_c00149{bottom:589.245000px;}
.y7a_c00149{bottom:590.130000px;}
.y75_c00149{bottom:590.325000px;}
.y76_c00149{bottom:591.405000px;}
.y78_c00149{bottom:591.630000px;}
.y73_c00149{bottom:607.905000px;}
.y72_c00149{bottom:608.745000px;}
.y71_c00149{bottom:609.825000px;}
.y6f_c00149{bottom:610.470000px;}
.y70_c00149{bottom:610.905000px;}
.y74_c00149{bottom:611.970000px;}
.y69_c00149{bottom:627.405000px;}
.y6c_c00149{bottom:627.825000px;}
.y6d_c00149{bottom:628.245000px;}
.y6a_c00149{bottom:629.130000px;}
.y68_c00149{bottom:629.325000px;}
.y6e_c00149{bottom:629.745000px;}
.y6b_c00149{bottom:630.405000px;}
.y66_c00149{bottom:646.905000px;}
.y65_c00149{bottom:647.325000px;}
.y63_c00149{bottom:647.745000px;}
.y64_c00149{bottom:647.970000px;}
.y61_c00149{bottom:648.405000px;}
.y67_c00149{bottom:648.825000px;}
.y62_c00149{bottom:649.905000px;}
.y5e_c00149{bottom:667.470000px;}
.y60_c00149{bottom:667.905000px;}
.y5c_c00149{bottom:668.745000px;}
.y5d_c00149{bottom:669.405000px;}
.y5f_c00149{bottom:670.905000px;}
.y5a_c00149{bottom:685.905000px;}
.y57_c00149{bottom:686.970000px;}
.y5b_c00149{bottom:687.405000px;}
.y59_c00149{bottom:688.245000px;}
.y58_c00149{bottom:690.405000px;}
.y56_c00149{bottom:705.405000px;}
.y55_c00149{bottom:706.905000px;}
.y54_c00149{bottom:707.325000px;}
.y53_c00149{bottom:707.745000px;}
.y51_c00149{bottom:708.405000px;}
.y52_c00149{bottom:709.905000px;}
.y4d_c00149{bottom:727.245000px;}
.y4f_c00149{bottom:728.130000px;}
.y4e_c00149{bottom:728.970000px;}
.y4c_c00149{bottom:729.405000px;}
.y50_c00149{bottom:730.470000px;}
.y4a_c00149{bottom:746.745000px;}
.y4b_c00149{bottom:748.905000px;}
.y47_c00149{bottom:766.245000px;}
.y48_c00149{bottom:767.325000px;}
.y46_c00149{bottom:768.405000px;}
.y49_c00149{bottom:769.470000px;}
.y44_c00149{bottom:785.745000px;}
.y45_c00149{bottom:786.825000px;}
.y42_c00149{bottom:787.905000px;}
.y43_c00149{bottom:788.970000px;}
.y41_c00149{bottom:807.405000px;}
.y3f_c00149{bottom:826.245000px;}
.y40_c00149{bottom:827.130000px;}
.y3e_c00149{bottom:828.405000px;}
.y3c_c00149{bottom:845.745000px;}
.y3b_c00149{bottom:846.825000px;}
.y3a_c00149{bottom:847.905000px;}
.y3d_c00149{bottom:848.130000px;}
.y36_c00149{bottom:863.970000px;}
.y35_c00149{bottom:864.405000px;}
.y38_c00149{bottom:865.245000px;}
.y33_c00149{bottom:866.325000px;}
.y39_c00149{bottom:866.970000px;}
.y37_c00149{bottom:867.405000px;}
.y34_c00149{bottom:868.470000px;}
.y32_c00149{bottom:884.325000px;}
.y2e_c00149{bottom:884.745000px;}
.y31_c00149{bottom:885.825000px;}
.y2f_c00149{bottom:886.470000px;}
.y30_c00149{bottom:886.905000px;}
.y2a_c00149{bottom:903.825000px;}
.y2c_c00149{bottom:904.245000px;}
.y2d_c00149{bottom:904.470000px;}
.y2b_c00149{bottom:906.405000px;}
.y28_c00149{bottom:923.325000px;}
.y29_c00149{bottom:923.745000px;}
.y27_c00149{bottom:925.245000px;}
.y22_c00149{bottom:925.905000px;}
.y25_c00149{bottom:926.130000px;}
.y23_c00149{bottom:926.325000px;}
.y24_c00149{bottom:926.970000px;}
.y26_c00149{bottom:927.405000px;}
.y1b_c00149{bottom:943.245000px;}
.y20_c00149{bottom:943.470000px;}
.y1f_c00149{bottom:943.905000px;}
.y1d_c00149{bottom:945.405000px;}
.y21_c00149{bottom:945.630000px;}
.y1e_c00149{bottom:946.470000px;}
.y1c_c00149{bottom:946.920000px;}
.y19_c00149{bottom:964.245000px;}
.y1a_c00149{bottom:966.405000px;}
.y16_c00149{bottom:983.745000px;}
.y18_c00149{bottom:984.630000px;}
.y17_c00149{bottom:985.905000px;}
.y12_c00149{bottom:1003.245000px;}
.y13_c00149{bottom:1005.405000px;}
.y15_c00149{bottom:1005.630000px;}
.y14_c00149{bottom:1006.470000px;}
.y10_c00149{bottom:1021.470000px;}
.yd_c00149{bottom:1022.745000px;}
.y11_c00149{bottom:1023.630000px;}
.yf_c00149{bottom:1024.470000px;}
.yc_c00149{bottom:1024.905000px;}
.ye_c00149{bottom:1025.970000px;}
.y9_c00149{bottom:1042.245000px;}
.yb_c00149{bottom:1043.325000px;}
.y8_c00149{bottom:1044.405000px;}
.ya_c00149{bottom:1044.630000px;}
.y6_c00149{bottom:1061.745000px;}
.y3_c00149{bottom:1062.825000px;}
.y4_c00149{bottom:1063.905000px;}
.y7_c00149{bottom:1064.130000px;}
.y5_c00149{bottom:1064.970000px;}
.y1_c00149{bottom:1102.050000px;}
.y2_c00149{bottom:1103.130000px;}
.h7_c00149{height:4.206533px;}
.h8_c00149{height:14.612168px;}
.h9_c00149{height:16.752334px;}
.h2_c00149{height:23.025234px;}
.h1_c00149{height:25.091602px;}
.h5_c00149{height:31.364502px;}
.h4_c00149{height:35.571035px;}
.h3_c00149{height:39.777568px;}
.h6_c00149{height:43.910303px;}
.h0_c00149{height:1335.000000px;}
.w0_c00149{width:880.500000px;}
.x0_c00149{left:0.000000px;}
.xef_c00149{left:148.500000px;}
.xa7_c00149{left:150.000000px;}
.x2_c00149{left:151.920000px;}
.x3_c00149{left:153.000000px;}
.xf7_c00149{left:160.500000px;}
.xf9_c00149{left:162.000000px;}
.xd2_c00149{left:163.500000px;}
.xde_c00149{left:165.000000px;}
.x83_c00149{left:166.080000px;}
.x3f_c00149{left:167.580000px;}
.xcb_c00149{left:169.920000px;}
.x10_c00149{left:171.420000px;}
.xb5_c00149{left:172.920000px;}
.xa1_c00149{left:178.500000px;}
.x4a_c00149{left:180.855000px;}
.xe8_c00149{left:187.500000px;}
.x7a_c00149{left:190.920000px;}
.x9c_c00149{left:194.145000px;}
.x11_c00149{left:198.000000px;}
.x55_c00149{left:199.080000px;}
.xaf_c00149{left:200.580000px;}
.x69_c00149{left:202.080000px;}
.x2a_c00149{left:205.500000px;}
.x1d_c00149{left:207.000000px;}
.x8f_c00149{left:208.080000px;}
.x33_c00149{left:209.580000px;}
.xb6_c00149{left:214.080000px;}
.xb0_c00149{left:216.000000px;}
.xa8_c00149{left:217.500000px;}
.x3c_c00149{left:219.420000px;}
.xbc_c00149{left:225.000000px;}
.x2b_c00149{left:226.080000px;}
.x4_c00149{left:229.080000px;}
.xab_c00149{left:231.000000px;}
.xf8_c00149{left:232.920000px;}
.xb7_c00149{left:234.000000px;}
.xd3_c00149{left:238.500000px;}
.xcd_c00149{left:239.580000px;}
.x4b_c00149{left:241.080000px;}
.x34_c00149{left:243.420000px;}
.x7b_c00149{left:246.420000px;}
.x5e_c00149{left:247.920000px;}
.xe9_c00149{left:249.000000px;}
.xa9_c00149{left:250.500000px;}
.x40_c00149{left:255.000000px;}
.xbd_c00149{left:256.500000px;}
.x3d_c00149{left:257.580000px;}
.x6a_c00149{left:259.500000px;}
.x12_c00149{left:260.580000px;}
.xc3_c00149{left:265.500000px;}
.x90_c00149{left:267.000000px;}
.x96_c00149{left:269.580000px;}
.x5_c00149{left:271.080000px;}
.x5f_c00149{left:274.500000px;}
.x41_c00149{left:275.580000px;}
.xda_c00149{left:277.500000px;}
.x1e_c00149{left:278.580000px;}
.x84_c00149{left:283.500000px;}
.x4c_c00149{left:285.000000px;}
.xd7_c00149{left:288.000000px;}
.xd4_c00149{left:291.000000px;}
.xb8_c00149{left:292.275000px;}
.x85_c00149{left:294.000000px;}
.x6b_c00149{left:295.500000px;}
.xa2_c00149{left:297.420000px;}
.x3e_c00149{left:300.645000px;}
.x2c_c00149{left:303.000000px;}
.xf2_c00149{left:304.500000px;}
.x1f_c00149{left:307.500000px;}
.x86_c00149{left:308.580000px;}
.x56_c00149{left:310.920000px;}
.xf5_c00149{left:312.000000px;}
.x60_c00149{left:313.080000px;}
.xd8_c00149{left:319.500000px;}
.x13_c00149{left:322.500000px;}
.xa3_c00149{left:324.420000px;}
.x72_c00149{left:325.500000px;}
.x42_c00149{left:331.080000px;}
.x97_c00149{left:332.580000px;}
.x61_c00149{left:334.920000px;}
.x87_c00149{left:336.000000px;}
.x57_c00149{left:337.920000px;}
.x6_c00149{left:339.000000px;}
.x2d_c00149{left:340.500000px;}
.x14_c00149{left:342.000000px;}
.xea_c00149{left:343.500000px;}
.xdf_c00149{left:345.000000px;}
.x4d_c00149{left:348.000000px;}
.x20_c00149{left:349.500000px;}
.x88_c00149{left:351.000000px;}
.x7_c00149{left:360.000000px;}
.xe3_c00149{left:361.080000px;}
.x62_c00149{left:363.000000px;}
.x89_c00149{left:364.500000px;}
.x4e_c00149{left:366.420000px;}
.xd9_c00149{left:367.500000px;}
.x9d_c00149{left:368.580000px;}
.xac_c00149{left:370.080000px;}
.x15_c00149{left:371.775000px;}
.x73_c00149{left:375.000000px;}
.x21_c00149{left:376.080000px;}
.x8_c00149{left:379.500000px;}
.x8a_c00149{left:381.000000px;}
.x2e_c00149{left:383.775000px;}
.x58_c00149{left:385.080000px;}
.x6c_c00149{left:387.420000px;}
.xb1_c00149{left:390.420000px;}
.x8b_c00149{left:394.080000px;}
.x7c_c00149{left:395.580000px;}
.x1_c00149{left:399.000000px;}
.xf3_c00149{left:400.500000px;}
.x59_c00149{left:402.420000px;}
.x4f_c00149{left:405.000000px;}
.x98_c00149{left:406.500000px;}
.x22_c00149{left:407.580000px;}
.x7d_c00149{left:412.920000px;}
.x6d_c00149{left:414.000000px;}
.x16_c00149{left:415.500000px;}
.x63_c00149{left:418.500000px;}
.xc4_c00149{left:420.420000px;}
.x91_c00149{left:421.920000px;}
.x2f_c00149{left:423.000000px;}
.xeb_c00149{left:424.080000px;}
.xfa_c00149{left:426.000000px;}
.x5a_c00149{left:428.580000px;}
.xbe_c00149{left:430.500000px;}
.xb9_c00149{left:432.420000px;}
.xe4_c00149{left:433.500000px;}
.x17_c00149{left:436.500000px;}
.x23_c00149{left:438.000000px;}
.x9_c00149{left:439.920000px;}
.x8c_c00149{left:441.000000px;}
.x35_c00149{left:442.080000px;}
.xb2_c00149{left:446.355000px;}
.x74_c00149{left:448.500000px;}
.xad_c00149{left:450.420000px;}
.x50_c00149{left:453.000000px;}
.xf6_c00149{left:454.500000px;}
.x9e_c00149{left:455.580000px;}
.x64_c00149{left:458.580000px;}
.x5b_c00149{left:460.500000px;}
.xc5_c00149{left:461.580000px;}
.xbf_c00149{left:463.500000px;}
.xe5_c00149{left:465.000000px;}
.x43_c00149{left:466.500000px;}
.xdb_c00149{left:467.775000px;}
.xa4_c00149{left:469.920000px;}
.x75_c00149{left:472.920000px;}
.x9f_c00149{left:474.420000px;}
.x24_c00149{left:477.000000px;}
.xd5_c00149{left:478.500000px;}
.x6e_c00149{left:481.080000px;}
.xce_c00149{left:482.580000px;}
.x7e_c00149{left:484.500000px;}
.x18_c00149{left:486.000000px;}
.x36_c00149{left:487.500000px;}
.xa_c00149{left:492.420000px;}
.xc6_c00149{left:493.500000px;}
.x8d_c00149{left:496.500000px;}
.x76_c00149{left:501.420000px;}
.x44_c00149{left:503.580000px;}
.x19_c00149{left:505.275000px;}
.xc0_c00149{left:508.500000px;}
.x92_c00149{left:510.000000px;}
.x37_c00149{left:511.920000px;}
.x30_c00149{left:513.000000px;}
.x51_c00149{left:514.500000px;}
.xe0_c00149{left:517.500000px;}
.xa5_c00149{left:518.580000px;}
.x65_c00149{left:524.580000px;}
.xe6_c00149{left:532.500000px;}
.xba_c00149{left:533.580000px;}
.xc7_c00149{left:535.500000px;}
.x7f_c00149{left:537.000000px;}
.x31_c00149{left:538.080000px;}
.xdc_c00149{left:541.080000px;}
.x6f_c00149{left:544.500000px;}
.xb_c00149{left:546.000000px;}
.x38_c00149{left:549.420000px;}
.x93_c00149{left:553.500000px;}
.x1a_c00149{left:555.000000px;}
.x45_c00149{left:557.580000px;}
.xf4_c00149{left:559.920000px;}
.x25_c00149{left:564.000000px;}
.xfb_c00149{left:565.080000px;}
.xec_c00149{left:569.580000px;}
.xcf_c00149{left:571.920000px;}
.x66_c00149{left:574.080000px;}
.xcc_c00149{left:575.775000px;}
.xf0_c00149{left:579.420000px;}
.xb3_c00149{left:580.920000px;}
.x26_c00149{left:585.420000px;}
.x80_c00149{left:586.500000px;}
.x39_c00149{left:589.920000px;}
.x46_c00149{left:591.000000px;}
.xd0_c00149{left:592.080000px;}
.xaa_c00149{left:593.580000px;}
.x99_c00149{left:595.920000px;}
.xc_c00149{left:597.420000px;}
.xd6_c00149{left:601.500000px;}
.x77_c00149{left:602.580000px;}
.x81_c00149{left:604.920000px;}
.x52_c00149{left:607.500000px;}
.x70_c00149{left:609.000000px;}
.x1b_c00149{left:610.080000px;}
.x27_c00149{left:612.000000px;}
.xf1_c00149{left:613.080000px;}
.x94_c00149{left:614.580000px;}
.x3a_c00149{left:618.000000px;}
.xe1_c00149{left:619.080000px;}
.xed_c00149{left:622.500000px;}
.x78_c00149{left:624.420000px;}
.x5c_c00149{left:625.500000px;}
.x47_c00149{left:628.500000px;}
.xd_c00149{left:631.500000px;}
.x53_c00149{left:633.000000px;}
.x9a_c00149{left:634.500000px;}
.x95_c00149{left:636.000000px;}
.x71_c00149{left:637.500000px;}
.xc8_c00149{left:639.000000px;}
.xc1_c00149{left:643.500000px;}
.xc9_c00149{left:645.000000px;}
.xe_c00149{left:646.500000px;}
.xdd_c00149{left:648.000000px;}
.xe2_c00149{left:651.645000px;}
.x79_c00149{left:652.920000px;}
.xca_c00149{left:654.000000px;}
.x82_c00149{left:655.920000px;}
.x5d_c00149{left:657.420000px;}
.x1c_c00149{left:658.500000px;}
.x67_c00149{left:659.580000px;}
.x48_c00149{left:663.000000px;}
.x9b_c00149{left:664.080000px;}
.xae_c00149{left:666.000000px;}
.xa0_c00149{left:669.000000px;}
.xe7_c00149{left:670.080000px;}
.x8e_c00149{left:673.080000px;}
.xb4_c00149{left:676.500000px;}
.xf_c00149{left:679.080000px;}
.x54_c00149{left:681.420000px;}
.x32_c00149{left:686.580000px;}
.xc2_c00149{left:688.500000px;}
.x28_c00149{left:689.580000px;}
.xd1_c00149{left:691.080000px;}
.x49_c00149{left:694.500000px;}
.xa6_c00149{left:700.920000px;}
.x68_c00149{left:703.500000px;}
.xee_c00149{left:706.920000px;}
.x29_c00149{left:708.420000px;}
.xbb_c00149{left:715.080000px;}
.x3b_c00149{left:721.500000px;}
@media print{
.v0_c00149{vertical-align:0.000000pt;}
.ls0_c00149{letter-spacing:0.000000pt;}
.ws0_c00149{word-spacing:0.000000pt;}
.fs6_c00149{font-size:3.040000pt;}
.fs7_c00149{font-size:10.560000pt;}
.fs8_c00149{font-size:12.106667pt;}
.fs1_c00149{font-size:16.640000pt;}
.fs0_c00149{font-size:18.133333pt;}
.fs4_c00149{font-size:22.666667pt;}
.fs3_c00149{font-size:25.706667pt;}
.fs2_c00149{font-size:28.746667pt;}
.fs5_c00149{font-size:31.733333pt;}
.y0_c00149{bottom:0.000000pt;}
.yd9_c00149{bottom:223.400000pt;}
.yd6_c00149{bottom:223.973333pt;}
.yda_c00149{bottom:224.360000pt;}
.yd5_c00149{bottom:224.560000pt;}
.yd7_c00149{bottom:225.306667pt;}
.yd8_c00149{bottom:225.506667pt;}
.ydb_c00149{bottom:226.266667pt;}
.yd2_c00149{bottom:236.360000pt;}
.yd1_c00149{bottom:236.733333pt;}
.yd0_c00149{bottom:237.306667pt;}
.ycf_c00149{bottom:237.506667pt;}
.yd4_c00149{bottom:237.693333pt;}
.yd3_c00149{bottom:239.600000pt;}
.yca_c00149{bottom:249.693333pt;}
.yc9_c00149{bottom:250.840000pt;}
.ycd_c00149{bottom:251.026667pt;}
.yce_c00149{bottom:251.973333pt;}
.ycb_c00149{bottom:252.173333pt;}
.ycc_c00149{bottom:252.933333pt;}
.yc8_c00149{bottom:267.773333pt;}
.yc7_c00149{bottom:269.106667pt;}
.yc4_c00149{bottom:269.693333pt;}
.yc6_c00149{bottom:270.640000pt;}
.yc5_c00149{bottom:271.026667pt;}
.ybf_c00149{bottom:285.106667pt;}
.yc2_c00149{bottom:286.440000pt;}
.yc0_c00149{bottom:287.026667pt;}
.yc3_c00149{bottom:287.973333pt;}
.yc1_c00149{bottom:288.360000pt;}
.ybb_c00149{bottom:303.773333pt;}
.yb8_c00149{bottom:304.360000pt;}
.ybc_c00149{bottom:304.560000pt;}
.ybe_c00149{bottom:305.306667pt;}
.yb9_c00149{bottom:305.693333pt;}
.yba_c00149{bottom:305.706667pt;}
.ybd_c00149{bottom:306.640000pt;}
.yb5_c00149{bottom:321.693333pt;}
.yb6_c00149{bottom:322.066667pt;}
.yb7_c00149{bottom:323.026667pt;}
.yb4_c00149{bottom:338.440000pt;}
.yb2_c00149{bottom:339.400000pt;}
.yb0_c00149{bottom:339.973333pt;}
.yb1_c00149{bottom:340.360000pt;}
.yb3_c00149{bottom:341.306667pt;}
.yaf_c00149{bottom:357.306667pt;}
.yac_c00149{bottom:357.693333pt;}
.yad_c00149{bottom:357.706667pt;}
.yae_c00149{bottom:358.640000pt;}
.yab_c00149{bottom:373.106667pt;}
.ya9_c00149{bottom:374.440000pt;}
.ya6_c00149{bottom:375.026667pt;}
.ya7_c00149{bottom:375.226667pt;}
.yaa_c00149{bottom:376.360000pt;}
.ya8_c00149{bottom:376.373333pt;}
.ya4_c00149{bottom:389.693333pt;}
.ya0_c00149{bottom:390.440000pt;}
.ya5_c00149{bottom:391.400000pt;}
.ya3_c00149{bottom:391.773333pt;}
.ya2_c00149{bottom:392.733333pt;}
.ya1_c00149{bottom:393.706667pt;}
.y9a_c00149{bottom:407.773333pt;}
.y9b_c00149{bottom:409.106667pt;}
.y9f_c00149{bottom:409.893333pt;}
.y9e_c00149{bottom:410.066667pt;}
.y9d_c00149{bottom:411.026667pt;}
.y9c_c00149{bottom:411.040000pt;}
.y92_c00149{bottom:428.360000pt;}
.y93_c00149{bottom:428.733333pt;}
.y99_c00149{bottom:428.933333pt;}
.y95_c00149{bottom:429.306667pt;}
.y98_c00149{bottom:429.693333pt;}
.y97_c00149{bottom:430.266667pt;}
.y96_c00149{bottom:430.640000pt;}
.y94_c00149{bottom:431.600000pt;}
.y8c_c00149{bottom:446.066667pt;}
.y8e_c00149{bottom:446.266667pt;}
.y8f_c00149{bottom:447.026667pt;}
.y91_c00149{bottom:447.600000pt;}
.y8d_c00149{bottom:447.973333pt;}
.y90_c00149{bottom:448.933333pt;}
.y8b_c00149{bottom:466.440000pt;}
.y8a_c00149{bottom:467.973333pt;}
.y89_c00149{bottom:468.360000pt;}
.y88_c00149{bottom:489.893333pt;}
.y86_c00149{bottom:490.066667pt;}
.y87_c00149{bottom:490.266667pt;}
.y85_c00149{bottom:491.026667pt;}
.y84_c00149{bottom:503.226667pt;}
.y81_c00149{bottom:503.800000pt;}
.y7e_c00149{bottom:504.360000pt;}
.y82_c00149{bottom:505.693333pt;}
.y7b_c00149{bottom:506.440000pt;}
.y7d_c00149{bottom:506.640000pt;}
.y7f_c00149{bottom:507.226667pt;}
.y7c_c00149{bottom:507.400000pt;}
.y83_c00149{bottom:509.306667pt;}
.y80_c00149{bottom:511.226667pt;}
.y79_c00149{bottom:523.026667pt;}
.y77_c00149{bottom:523.773333pt;}
.y7a_c00149{bottom:524.560000pt;}
.y75_c00149{bottom:524.733333pt;}
.y76_c00149{bottom:525.693333pt;}
.y78_c00149{bottom:525.893333pt;}
.y73_c00149{bottom:540.360000pt;}
.y72_c00149{bottom:541.106667pt;}
.y71_c00149{bottom:542.066667pt;}
.y6f_c00149{bottom:542.640000pt;}
.y70_c00149{bottom:543.026667pt;}
.y74_c00149{bottom:543.973333pt;}
.y69_c00149{bottom:557.693333pt;}
.y6c_c00149{bottom:558.066667pt;}
.y6d_c00149{bottom:558.440000pt;}
.y6a_c00149{bottom:559.226667pt;}
.y68_c00149{bottom:559.400000pt;}
.y6e_c00149{bottom:559.773333pt;}
.y6b_c00149{bottom:560.360000pt;}
.y66_c00149{bottom:575.026667pt;}
.y65_c00149{bottom:575.400000pt;}
.y63_c00149{bottom:575.773333pt;}
.y64_c00149{bottom:575.973333pt;}
.y61_c00149{bottom:576.360000pt;}
.y67_c00149{bottom:576.733333pt;}
.y62_c00149{bottom:577.693333pt;}
.y5e_c00149{bottom:593.306667pt;}
.y60_c00149{bottom:593.693333pt;}
.y5c_c00149{bottom:594.440000pt;}
.y5d_c00149{bottom:595.026667pt;}
.y5f_c00149{bottom:596.360000pt;}
.y5a_c00149{bottom:609.693333pt;}
.y57_c00149{bottom:610.640000pt;}
.y5b_c00149{bottom:611.026667pt;}
.y59_c00149{bottom:611.773333pt;}
.y58_c00149{bottom:613.693333pt;}
.y56_c00149{bottom:627.026667pt;}
.y55_c00149{bottom:628.360000pt;}
.y54_c00149{bottom:628.733333pt;}
.y53_c00149{bottom:629.106667pt;}
.y51_c00149{bottom:629.693333pt;}
.y52_c00149{bottom:631.026667pt;}
.y4d_c00149{bottom:646.440000pt;}
.y4f_c00149{bottom:647.226667pt;}
.y4e_c00149{bottom:647.973333pt;}
.y4c_c00149{bottom:648.360000pt;}
.y50_c00149{bottom:649.306667pt;}
.y4a_c00149{bottom:663.773333pt;}
.y4b_c00149{bottom:665.693333pt;}
.y47_c00149{bottom:681.106667pt;}
.y48_c00149{bottom:682.066667pt;}
.y46_c00149{bottom:683.026667pt;}
.y49_c00149{bottom:683.973333pt;}
.y44_c00149{bottom:698.440000pt;}
.y45_c00149{bottom:699.400000pt;}
.y42_c00149{bottom:700.360000pt;}
.y43_c00149{bottom:701.306667pt;}
.y41_c00149{bottom:717.693333pt;}
.y3f_c00149{bottom:734.440000pt;}
.y40_c00149{bottom:735.226667pt;}
.y3e_c00149{bottom:736.360000pt;}
.y3c_c00149{bottom:751.773333pt;}
.y3b_c00149{bottom:752.733333pt;}
.y3a_c00149{bottom:753.693333pt;}
.y3d_c00149{bottom:753.893333pt;}
.y36_c00149{bottom:767.973333pt;}
.y35_c00149{bottom:768.360000pt;}
.y38_c00149{bottom:769.106667pt;}
.y33_c00149{bottom:770.066667pt;}
.y39_c00149{bottom:770.640000pt;}
.y37_c00149{bottom:771.026667pt;}
.y34_c00149{bottom:771.973333pt;}
.y32_c00149{bottom:786.066667pt;}
.y2e_c00149{bottom:786.440000pt;}
.y31_c00149{bottom:787.400000pt;}
.y2f_c00149{bottom:787.973333pt;}
.y30_c00149{bottom:788.360000pt;}
.y2a_c00149{bottom:803.400000pt;}
.y2c_c00149{bottom:803.773333pt;}
.y2d_c00149{bottom:803.973333pt;}
.y2b_c00149{bottom:805.693333pt;}
.y28_c00149{bottom:820.733333pt;}
.y29_c00149{bottom:821.106667pt;}
.y27_c00149{bottom:822.440000pt;}
.y22_c00149{bottom:823.026667pt;}
.y25_c00149{bottom:823.226667pt;}
.y23_c00149{bottom:823.400000pt;}
.y24_c00149{bottom:823.973333pt;}
.y26_c00149{bottom:824.360000pt;}
.y1b_c00149{bottom:838.440000pt;}
.y20_c00149{bottom:838.640000pt;}
.y1f_c00149{bottom:839.026667pt;}
.y1d_c00149{bottom:840.360000pt;}
.y21_c00149{bottom:840.560000pt;}
.y1e_c00149{bottom:841.306667pt;}
.y1c_c00149{bottom:841.706667pt;}
.y19_c00149{bottom:857.106667pt;}
.y1a_c00149{bottom:859.026667pt;}
.y16_c00149{bottom:874.440000pt;}
.y18_c00149{bottom:875.226667pt;}
.y17_c00149{bottom:876.360000pt;}
.y12_c00149{bottom:891.773333pt;}
.y13_c00149{bottom:893.693333pt;}
.y15_c00149{bottom:893.893333pt;}
.y14_c00149{bottom:894.640000pt;}
.y10_c00149{bottom:907.973333pt;}
.yd_c00149{bottom:909.106667pt;}
.y11_c00149{bottom:909.893333pt;}
.yf_c00149{bottom:910.640000pt;}
.yc_c00149{bottom:911.026667pt;}
.ye_c00149{bottom:911.973333pt;}
.y9_c00149{bottom:926.440000pt;}
.yb_c00149{bottom:927.400000pt;}
.y8_c00149{bottom:928.360000pt;}
.ya_c00149{bottom:928.560000pt;}
.y6_c00149{bottom:943.773333pt;}
.y3_c00149{bottom:944.733333pt;}
.y4_c00149{bottom:945.693333pt;}
.y7_c00149{bottom:945.893333pt;}
.y5_c00149{bottom:946.640000pt;}
.y1_c00149{bottom:979.600000pt;}
.y2_c00149{bottom:980.560000pt;}
.h7_c00149{height:3.739141pt;}
.h8_c00149{height:12.988594pt;}
.h9_c00149{height:14.890964pt;}
.h2_c00149{height:20.466875pt;}
.h1_c00149{height:22.303646pt;}
.h5_c00149{height:27.879557pt;}
.h4_c00149{height:31.618698pt;}
.h3_c00149{height:35.357839pt;}
.h6_c00149{height:39.031380pt;}
.h0_c00149{height:1186.666667pt;}
.w0_c00149{width:782.666667pt;}
.x0_c00149{left:0.000000pt;}
.xef_c00149{left:132.000000pt;}
.xa7_c00149{left:133.333333pt;}
.x2_c00149{left:135.040000pt;}
.x3_c00149{left:136.000000pt;}
.xf7_c00149{left:142.666667pt;}
.xf9_c00149{left:144.000000pt;}
.xd2_c00149{left:145.333333pt;}
.xde_c00149{left:146.666667pt;}
.x83_c00149{left:147.626667pt;}
.x3f_c00149{left:148.960000pt;}
.xcb_c00149{left:151.040000pt;}
.x10_c00149{left:152.373333pt;}
.xb5_c00149{left:153.706667pt;}
.xa1_c00149{left:158.666667pt;}
.x4a_c00149{left:160.760000pt;}
.xe8_c00149{left:166.666667pt;}
.x7a_c00149{left:169.706667pt;}
.x9c_c00149{left:172.573333pt;}
.x11_c00149{left:176.000000pt;}
.x55_c00149{left:176.960000pt;}
.xaf_c00149{left:178.293333pt;}
.x69_c00149{left:179.626667pt;}
.x2a_c00149{left:182.666667pt;}
.x1d_c00149{left:184.000000pt;}
.x8f_c00149{left:184.960000pt;}
.x33_c00149{left:186.293333pt;}
.xb6_c00149{left:190.293333pt;}
.xb0_c00149{left:192.000000pt;}
.xa8_c00149{left:193.333333pt;}
.x3c_c00149{left:195.040000pt;}
.xbc_c00149{left:200.000000pt;}
.x2b_c00149{left:200.960000pt;}
.x4_c00149{left:203.626667pt;}
.xab_c00149{left:205.333333pt;}
.xf8_c00149{left:207.040000pt;}
.xb7_c00149{left:208.000000pt;}
.xd3_c00149{left:212.000000pt;}
.xcd_c00149{left:212.960000pt;}
.x4b_c00149{left:214.293333pt;}
.x34_c00149{left:216.373333pt;}
.x7b_c00149{left:219.040000pt;}
.x5e_c00149{left:220.373333pt;}
.xe9_c00149{left:221.333333pt;}
.xa9_c00149{left:222.666667pt;}
.x40_c00149{left:226.666667pt;}
.xbd_c00149{left:228.000000pt;}
.x3d_c00149{left:228.960000pt;}
.x6a_c00149{left:230.666667pt;}
.x12_c00149{left:231.626667pt;}
.xc3_c00149{left:236.000000pt;}
.x90_c00149{left:237.333333pt;}
.x96_c00149{left:239.626667pt;}
.x5_c00149{left:240.960000pt;}
.x5f_c00149{left:244.000000pt;}
.x41_c00149{left:244.960000pt;}
.xda_c00149{left:246.666667pt;}
.x1e_c00149{left:247.626667pt;}
.x84_c00149{left:252.000000pt;}
.x4c_c00149{left:253.333333pt;}
.xd7_c00149{left:256.000000pt;}
.xd4_c00149{left:258.666667pt;}
.xb8_c00149{left:259.800000pt;}
.x85_c00149{left:261.333333pt;}
.x6b_c00149{left:262.666667pt;}
.xa2_c00149{left:264.373333pt;}
.x3e_c00149{left:267.240000pt;}
.x2c_c00149{left:269.333333pt;}
.xf2_c00149{left:270.666667pt;}
.x1f_c00149{left:273.333333pt;}
.x86_c00149{left:274.293333pt;}
.x56_c00149{left:276.373333pt;}
.xf5_c00149{left:277.333333pt;}
.x60_c00149{left:278.293333pt;}
.xd8_c00149{left:284.000000pt;}
.x13_c00149{left:286.666667pt;}
.xa3_c00149{left:288.373333pt;}
.x72_c00149{left:289.333333pt;}
.x42_c00149{left:294.293333pt;}
.x97_c00149{left:295.626667pt;}
.x61_c00149{left:297.706667pt;}
.x87_c00149{left:298.666667pt;}
.x57_c00149{left:300.373333pt;}
.x6_c00149{left:301.333333pt;}
.x2d_c00149{left:302.666667pt;}
.x14_c00149{left:304.000000pt;}
.xea_c00149{left:305.333333pt;}
.xdf_c00149{left:306.666667pt;}
.x4d_c00149{left:309.333333pt;}
.x20_c00149{left:310.666667pt;}
.x88_c00149{left:312.000000pt;}
.x7_c00149{left:320.000000pt;}
.xe3_c00149{left:320.960000pt;}
.x62_c00149{left:322.666667pt;}
.x89_c00149{left:324.000000pt;}
.x4e_c00149{left:325.706667pt;}
.xd9_c00149{left:326.666667pt;}
.x9d_c00149{left:327.626667pt;}
.xac_c00149{left:328.960000pt;}
.x15_c00149{left:330.466667pt;}
.x73_c00149{left:333.333333pt;}
.x21_c00149{left:334.293333pt;}
.x8_c00149{left:337.333333pt;}
.x8a_c00149{left:338.666667pt;}
.x2e_c00149{left:341.133333pt;}
.x58_c00149{left:342.293333pt;}
.x6c_c00149{left:344.373333pt;}
.xb1_c00149{left:347.040000pt;}
.x8b_c00149{left:350.293333pt;}
.x7c_c00149{left:351.626667pt;}
.x1_c00149{left:354.666667pt;}
.xf3_c00149{left:356.000000pt;}
.x59_c00149{left:357.706667pt;}
.x4f_c00149{left:360.000000pt;}
.x98_c00149{left:361.333333pt;}
.x22_c00149{left:362.293333pt;}
.x7d_c00149{left:367.040000pt;}
.x6d_c00149{left:368.000000pt;}
.x16_c00149{left:369.333333pt;}
.x63_c00149{left:372.000000pt;}
.xc4_c00149{left:373.706667pt;}
.x91_c00149{left:375.040000pt;}
.x2f_c00149{left:376.000000pt;}
.xeb_c00149{left:376.960000pt;}
.xfa_c00149{left:378.666667pt;}
.x5a_c00149{left:380.960000pt;}
.xbe_c00149{left:382.666667pt;}
.xb9_c00149{left:384.373333pt;}
.xe4_c00149{left:385.333333pt;}
.x17_c00149{left:388.000000pt;}
.x23_c00149{left:389.333333pt;}
.x9_c00149{left:391.040000pt;}
.x8c_c00149{left:392.000000pt;}
.x35_c00149{left:392.960000pt;}
.xb2_c00149{left:396.760000pt;}
.x74_c00149{left:398.666667pt;}
.xad_c00149{left:400.373333pt;}
.x50_c00149{left:402.666667pt;}
.xf6_c00149{left:404.000000pt;}
.x9e_c00149{left:404.960000pt;}
.x64_c00149{left:407.626667pt;}
.x5b_c00149{left:409.333333pt;}
.xc5_c00149{left:410.293333pt;}
.xbf_c00149{left:412.000000pt;}
.xe5_c00149{left:413.333333pt;}
.x43_c00149{left:414.666667pt;}
.xdb_c00149{left:415.800000pt;}
.xa4_c00149{left:417.706667pt;}
.x75_c00149{left:420.373333pt;}
.x9f_c00149{left:421.706667pt;}
.x24_c00149{left:424.000000pt;}
.xd5_c00149{left:425.333333pt;}
.x6e_c00149{left:427.626667pt;}
.xce_c00149{left:428.960000pt;}
.x7e_c00149{left:430.666667pt;}
.x18_c00149{left:432.000000pt;}
.x36_c00149{left:433.333333pt;}
.xa_c00149{left:437.706667pt;}
.xc6_c00149{left:438.666667pt;}
.x8d_c00149{left:441.333333pt;}
.x76_c00149{left:445.706667pt;}
.x44_c00149{left:447.626667pt;}
.x19_c00149{left:449.133333pt;}
.xc0_c00149{left:452.000000pt;}
.x92_c00149{left:453.333333pt;}
.x37_c00149{left:455.040000pt;}
.x30_c00149{left:456.000000pt;}
.x51_c00149{left:457.333333pt;}
.xe0_c00149{left:460.000000pt;}
.xa5_c00149{left:460.960000pt;}
.x65_c00149{left:466.293333pt;}
.xe6_c00149{left:473.333333pt;}
.xba_c00149{left:474.293333pt;}
.xc7_c00149{left:476.000000pt;}
.x7f_c00149{left:477.333333pt;}
.x31_c00149{left:478.293333pt;}
.xdc_c00149{left:480.960000pt;}
.x6f_c00149{left:484.000000pt;}
.xb_c00149{left:485.333333pt;}
.x38_c00149{left:488.373333pt;}
.x93_c00149{left:492.000000pt;}
.x1a_c00149{left:493.333333pt;}
.x45_c00149{left:495.626667pt;}
.xf4_c00149{left:497.706667pt;}
.x25_c00149{left:501.333333pt;}
.xfb_c00149{left:502.293333pt;}
.xec_c00149{left:506.293333pt;}
.xcf_c00149{left:508.373333pt;}
.x66_c00149{left:510.293333pt;}
.xcc_c00149{left:511.800000pt;}
.xf0_c00149{left:515.040000pt;}
.xb3_c00149{left:516.373333pt;}
.x26_c00149{left:520.373333pt;}
.x80_c00149{left:521.333333pt;}
.x39_c00149{left:524.373333pt;}
.x46_c00149{left:525.333333pt;}
.xd0_c00149{left:526.293333pt;}
.xaa_c00149{left:527.626667pt;}
.x99_c00149{left:529.706667pt;}
.xc_c00149{left:531.040000pt;}
.xd6_c00149{left:534.666667pt;}
.x77_c00149{left:535.626667pt;}
.x81_c00149{left:537.706667pt;}
.x52_c00149{left:540.000000pt;}
.x70_c00149{left:541.333333pt;}
.x1b_c00149{left:542.293333pt;}
.x27_c00149{left:544.000000pt;}
.xf1_c00149{left:544.960000pt;}
.x94_c00149{left:546.293333pt;}
.x3a_c00149{left:549.333333pt;}
.xe1_c00149{left:550.293333pt;}
.xed_c00149{left:553.333333pt;}
.x78_c00149{left:555.040000pt;}
.x5c_c00149{left:556.000000pt;}
.x47_c00149{left:558.666667pt;}
.xd_c00149{left:561.333333pt;}
.x53_c00149{left:562.666667pt;}
.x9a_c00149{left:564.000000pt;}
.x95_c00149{left:565.333333pt;}
.x71_c00149{left:566.666667pt;}
.xc8_c00149{left:568.000000pt;}
.xc1_c00149{left:572.000000pt;}
.xc9_c00149{left:573.333333pt;}
.xe_c00149{left:574.666667pt;}
.xdd_c00149{left:576.000000pt;}
.xe2_c00149{left:579.240000pt;}
.x79_c00149{left:580.373333pt;}
.xca_c00149{left:581.333333pt;}
.x82_c00149{left:583.040000pt;}
.x5d_c00149{left:584.373333pt;}
.x1c_c00149{left:585.333333pt;}
.x67_c00149{left:586.293333pt;}
.x48_c00149{left:589.333333pt;}
.x9b_c00149{left:590.293333pt;}
.xae_c00149{left:592.000000pt;}
.xa0_c00149{left:594.666667pt;}
.xe7_c00149{left:595.626667pt;}
.x8e_c00149{left:598.293333pt;}
.xb4_c00149{left:601.333333pt;}
.xf_c00149{left:603.626667pt;}
.x54_c00149{left:605.706667pt;}
.x32_c00149{left:610.293333pt;}
.xc2_c00149{left:612.000000pt;}
.x28_c00149{left:612.960000pt;}
.xd1_c00149{left:614.293333pt;}
.x49_c00149{left:617.333333pt;}
.xa6_c00149{left:623.040000pt;}
.x68_c00149{left:625.333333pt;}
.xee_c00149{left:628.373333pt;}
.x29_c00149{left:629.706667pt;}
.xbb_c00149{left:635.626667pt;}
.x3b_c00149{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6de6231b2691de3ff6669ff0.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:1.688965;font-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_c00150{transform:matrix(0.018253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018253,0.000000,0.000000,0.250000,0,0);}
.m4_c00150{transform:matrix(0.021550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021550,0.000000,0.000000,0.250000,0,0);}
.m6_c00150{transform:matrix(0.025896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025896,0.000000,0.000000,0.250000,0,0);}
.m7_c00150{transform:matrix(0.029358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029358,0.000000,0.000000,0.250000,0,0);}
.m5_c00150{transform:matrix(0.050378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050378,0.000000,0.000000,0.250000,0,0);}
.m2_c00150{transform:matrix(0.066358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066358,0.000000,0.000000,0.250000,0,0);}
.m8_c00150{transform:matrix(0.134528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134528,0.000000,0.000000,0.250000,0,0);}
.m9_c00150{transform:matrix(0.164110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164110,0.000000,0.000000,0.250000,0,0);}
.m0_c00150{transform:matrix(0.218618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218618,0.000000,0.000000,0.250000,0,0);}
.m3_c00150{transform:matrix(0.291280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291280,0.000000,0.000000,0.250000,0,0);}
.ma_c00150{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.mb_c00150{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.v0_c00150{vertical-align:0.000000px;}
.ls0_c00150{letter-spacing:0.000000px;}
.sc__c00150{text-shadow:none;}
.sc0_c00150{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00150{-webkit-text-stroke:0px transparent;}
.sc0_c00150{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00150{word-spacing:0.000000px;}
.fc0_c00150{color:transparent;}
.fsa_c00150{font-size:20.400000px;}
.fs3_c00150{font-size:32.340000px;}
.fs9_c00150{font-size:39.120000px;}
.fs0_c00150{font-size:42.540000px;}
.fs8_c00150{font-size:52.740000px;}
.fs2_c00150{font-size:68.040000px;}
.fs5_c00150{font-size:71.460000px;}
.fs6_c00150{font-size:107.160000px;}
.fs7_c00150{font-size:113.940000px;}
.fs4_c00150{font-size:134.340000px;}
.fs1_c00150{font-size:146.280000px;}
.y0_c00150{bottom:0.000000px;}
.ya_c00150{bottom:446.955000px;}
.yb_c00150{bottom:474.180000px;}
.y7_c00150{bottom:507.330000px;}
.y8_c00150{bottom:557.685000px;}
.y9_c00150{bottom:610.185000px;}
.y1_c00150{bottom:654.180000px;}
.y2_c00150{bottom:688.590000px;}
.y3_c00150{bottom:747.150000px;}
.y4_c00150{bottom:774.825000px;}
.y5_c00150{bottom:805.800000px;}
.y6_c00150{bottom:861.585000px;}
.yc_c00150{bottom:1103.550000px;}
.hb_c00150{height:25.091602px;}
.h4_c00150{height:39.777568px;}
.ha_c00150{height:48.116836px;}
.h1_c00150{height:52.323369px;}
.h9_c00150{height:64.869170px;}
.h3_c00150{height:83.687871px;}
.h6_c00150{height:87.894404px;}
.h7_c00150{height:131.804707px;}
.h8_c00150{height:140.143975px;}
.h5_c00150{height:165.235576px;}
.h2_c00150{height:179.921543px;}
.h0_c00150{height:1335.000000px;}
.w0_c00150{width:880.500000px;}
.x0_c00150{left:0.000000px;}
.x3_c00150{left:402.000000px;}
.x1_c00150{left:593.580000px;}
.x2_c00150{left:594.855000px;}
.x4_c00150{left:710.355000px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.ls0_c00150{letter-spacing:0.000000pt;}
.ws0_c00150{word-spacing:0.000000pt;}
.fsa_c00150{font-size:18.133333pt;}
.fs3_c00150{font-size:28.746667pt;}
.fs9_c00150{font-size:34.773333pt;}
.fs0_c00150{font-size:37.813333pt;}
.fs8_c00150{font-size:46.880000pt;}
.fs2_c00150{font-size:60.480000pt;}
.fs5_c00150{font-size:63.520000pt;}
.fs6_c00150{font-size:95.253333pt;}
.fs7_c00150{font-size:101.280000pt;}
.fs4_c00150{font-size:119.413333pt;}
.fs1_c00150{font-size:130.026667pt;}
.y0_c00150{bottom:0.000000pt;}
.ya_c00150{bottom:397.293333pt;}
.yb_c00150{bottom:421.493333pt;}
.y7_c00150{bottom:450.960000pt;}
.y8_c00150{bottom:495.720000pt;}
.y9_c00150{bottom:542.386667pt;}
.y1_c00150{bottom:581.493333pt;}
.y2_c00150{bottom:612.080000pt;}
.y3_c00150{bottom:664.133333pt;}
.y4_c00150{bottom:688.733333pt;}
.y5_c00150{bottom:716.266667pt;}
.y6_c00150{bottom:765.853333pt;}
.yc_c00150{bottom:980.933333pt;}
.hb_c00150{height:22.303646pt;}
.h4_c00150{height:35.357839pt;}
.ha_c00150{height:42.770521pt;}
.h1_c00150{height:46.509661pt;}
.h9_c00150{height:57.661484pt;}
.h3_c00150{height:74.389219pt;}
.h6_c00150{height:78.128359pt;}
.h7_c00150{height:117.159740pt;}
.h8_c00150{height:124.572422pt;}
.h5_c00150{height:146.876068pt;}
.h2_c00150{height:159.930260pt;}
.h0_c00150{height:1186.666667pt;}
.w0_c00150{width:782.666667pt;}
.x0_c00150{left:0.000000pt;}
.x3_c00150{left:357.333333pt;}
.x1_c00150{left:527.626667pt;}
.x2_c00150{left:528.760000pt;}
.x4_c00150{left:631.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_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_d59d8e5fa33c93bc14993dc8.woff2')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mdb_c00151{transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);}
.m57_c00151{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m5e_c00151{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.md4_c00151{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);}
.mc0_c00151{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.mb8_c00151{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.md2_c00151{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.mb5_c00151{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m60_c00151{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mdd_c00151{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.me1_c00151{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mc3_c00151{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mb4_c00151{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.ma_c00151{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m9d_c00151{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.mb6_c00151{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.mdc_c00151{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mb3_c00151{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mda_c00151{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m7a_c00151{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.me3_c00151{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.me5_c00151{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.mca_c00151{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m26_c00151{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m63_c00151{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mcb_c00151{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m79_c00151{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mc7_c00151{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m98_c00151{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m99_c00151{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m47_c00151{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m4b_c00151{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m51_c00151{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m5d_c00151{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.md6_c00151{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m76_c00151{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m84_c00151{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m8a_c00151{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m30_c00151{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m3f_c00151{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.ma6_c00151{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m7f_c00151{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m5f_c00151{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m69_c00151{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m2_c00151{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m82_c00151{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m20_c00151{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m7d_c00151{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m5a_c00151{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.me2_c00151{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m4_c00151{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m9b_c00151{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.md0_c00151{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mcc_c00151{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m29_c00151{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mce_c00151{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m1c_c00151{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m58_c00151{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.ma5_c00151{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m7_c00151{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m39_c00151{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.ma0_c00151{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m9f_c00151{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m62_c00151{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m70_c00151{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.mb7_c00151{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mc4_c00151{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m6b_c00151{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.m90_c00151{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.ma4_c00151{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m15_c00151{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m17_c00151{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m6e_c00151{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m88_c00151{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m43_c00151{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m2e_c00151{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m16_c00151{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.ma8_c00151{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m3e_c00151{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m13_c00151{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mcd_c00151{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.maa_c00151{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m8c_c00151{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m4d_c00151{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.md7_c00151{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m7b_c00151{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.md9_c00151{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.m6d_c00151{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m87_c00151{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m65_c00151{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m46_c00151{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m50_c00151{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m8b_c00151{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m6a_c00151{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.mc1_c00151{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m8f_c00151{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.ma1_c00151{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m4c_c00151{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m9_c00151{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m49_c00151{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.md1_c00151{transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);}
.mc5_c00151{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m2c_c00151{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m72_c00151{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m85_c00151{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m68_c00151{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m53_c00151{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.m64_c00151{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mbc_c00151{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m35_c00151{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m3a_c00151{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_c00151{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m10_c00151{transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);}
.m45_c00151{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m81_c00151{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m75_c00151{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.mc8_c00151{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m8e_c00151{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.m38_c00151{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m42_c00151{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m6f_c00151{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m5b_c00151{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mde_c00151{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mc2_c00151{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mb1_c00151{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mbe_c00151{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m6c_c00151{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.meb_c00151{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m2a_c00151{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m28_c00151{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.md_c00151{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mea_c00151{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.mac_c00151{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m4f_c00151{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.md3_c00151{transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);}
.m3d_c00151{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.m59_c00151{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m23_c00151{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mdf_c00151{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m6_c00151{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.me_c00151{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m1a_c00151{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mec_c00151{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m1e_c00151{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mb2_c00151{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m91_c00151{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mbd_c00151{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m37_c00151{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m22_c00151{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m4a_c00151{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m27_c00151{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m24_c00151{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m14_c00151{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.md5_c00151{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m3b_c00151{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m93_c00151{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m9e_c00151{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m52_c00151{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m41_c00151{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m7e_c00151{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m66_c00151{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m4e_c00151{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m18_c00151{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m31_c00151{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m1d_c00151{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m36_c00151{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m77_c00151{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.md8_c00151{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.mc6_c00151{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.me7_c00151{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m89_c00151{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);}
.m19_c00151{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m12_c00151{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m55_c00151{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.me0_c00151{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.m54_c00151{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.mba_c00151{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m73_c00151{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m33_c00151{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m34_c00151{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m9a_c00151{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m61_c00151{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m44_c00151{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m83_c00151{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m80_c00151{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m71_c00151{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.me4_c00151{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m9c_c00151{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m8d_c00151{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m1_c00151{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m78_c00151{transform:matrix(0.587059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587059,0.000000,0.000000,0.250000,0,0);}
.ma2_c00151{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m74_c00151{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m7c_c00151{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.mc9_c00151{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m25_c00151{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.mad_c00151{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.m92_c00151{transform:matrix(0.597756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597756,0.000000,0.000000,0.250000,0,0);}
.m86_c00151{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m2f_c00151{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.mcf_c00151{transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);}
.m0_c00151{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m97_c00151{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m40_c00151{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m32_c00151{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m2b_c00151{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m3c_c00151{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mb_c00151{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m5c_c00151{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m8_c00151{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m2d_c00151{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m94_c00151{transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);}
.m67_c00151{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.me6_c00151{transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);}
.mbb_c00151{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.mf_c00151{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m5_c00151{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mbf_c00151{transform:matrix(0.678824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.678824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.678824,0.000000,0.000000,0.250000,0,0);}
.mb0_c00151{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.ma3_c00151{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m56_c00151{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.maf_c00151{transform:matrix(0.716346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.716346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.716346,0.000000,0.000000,0.250000,0,0);}
.mae_c00151{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m11_c00151{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.mb9_c00151{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m1f_c00151{transform:matrix(0.732353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732353,0.000000,0.000000,0.250000,0,0);}
.ma7_c00151{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.mc_c00151{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m21_c00151{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m1b_c00151{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m48_c00151{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m95_c00151{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.me9_c00151{transform:matrix(0.837340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837340,0.000000,0.000000,0.250000,0,0);}
.mab_c00151{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.me8_c00151{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m3_c00151{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m96_c00151{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00151{vertical-align:0.000000px;}
.ls0_c00151{letter-spacing:0.000000px;}
.sc__c00151{text-shadow:none;}
.sc0_c00151{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00151{-webkit-text-stroke:0px transparent;}
.sc0_c00151{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00151{word-spacing:0.000000px;}
.fc0_c00151{color:transparent;}
.fs2_c00151{font-size:3.420000px;}
.fs7_c00151{font-size:11.880000px;}
.fs5_c00151{font-size:18.720000px;}
.fs0_c00151{font-size:20.400000px;}
.fs3_c00151{font-size:25.500000px;}
.fs4_c00151{font-size:28.920000px;}
.fs6_c00151{font-size:32.340000px;}
.fs1_c00151{font-size:35.700000px;}
.fs8_c00151{font-size:39.120000px;}
.y0_c00151{bottom:0.000000px;}
.yea_c00151{bottom:270.405000px;}
.ye9_c00151{bottom:273.630000px;}
.ye8_c00151{bottom:274.905000px;}
.ye7_c00151{bottom:292.245000px;}
.ye3_c00151{bottom:293.130000px;}
.ye6_c00151{bottom:293.970000px;}
.ye2_c00151{bottom:294.405000px;}
.ye5_c00151{bottom:294.630000px;}
.ye4_c00151{bottom:295.470000px;}
.ydd_c00151{bottom:311.745000px;}
.ydf_c00151{bottom:313.245000px;}
.ye1_c00151{bottom:313.470000px;}
.ydc_c00151{bottom:313.905000px;}
.yde_c00151{bottom:314.130000px;}
.ye0_c00151{bottom:315.405000px;}
.ydb_c00151{bottom:330.405000px;}
.yd7_c00151{bottom:331.245000px;}
.yd5_c00151{bottom:331.680000px;}
.yd9_c00151{bottom:332.745000px;}
.yd6_c00151{bottom:333.405000px;}
.yd8_c00151{bottom:334.470000px;}
.yda_c00151{bottom:334.905000px;}
.yd4_c00151{bottom:352.245000px;}
.yd2_c00151{bottom:352.905000px;}
.yd3_c00151{bottom:354.405000px;}
.ycd_c00151{bottom:371.325000px;}
.yd1_c00151{bottom:371.745000px;}
.ycf_c00151{bottom:372.630000px;}
.yd0_c00151{bottom:373.470000px;}
.yce_c00151{bottom:373.905000px;}
.ycc_c00151{bottom:389.970000px;}
.yca_c00151{bottom:390.405000px;}
.yc9_c00151{bottom:391.245000px;}
.ycb_c00151{bottom:391.470000px;}
.yc7_c00151{bottom:392.325000px;}
.yc6_c00151{bottom:393.405000px;}
.yc8_c00151{bottom:394.470000px;}
.yc5_c00151{bottom:409.470000px;}
.yc1_c00151{bottom:410.325000px;}
.yc3_c00151{bottom:410.745000px;}
.yc0_c00151{bottom:411.825000px;}
.yc2_c00151{bottom:412.905000px;}
.yc4_c00151{bottom:413.970000px;}
.yb7_c00151{bottom:429.405000px;}
.ybe_c00151{bottom:430.245000px;}
.ybb_c00151{bottom:430.905000px;}
.ybf_c00151{bottom:431.130000px;}
.yba_c00151{bottom:431.325000px;}
.ybd_c00151{bottom:431.745000px;}
.ybc_c00151{bottom:432.405000px;}
.yb9_c00151{bottom:432.630000px;}
.yb8_c00151{bottom:433.905000px;}
.yb2_c00151{bottom:448.905000px;}
.yb4_c00151{bottom:449.745000px;}
.yb6_c00151{bottom:450.825000px;}
.yb5_c00151{bottom:451.245000px;}
.yb3_c00151{bottom:451.905000px;}
.yb1_c00151{bottom:453.405000px;}
.yae_c00151{bottom:470.745000px;}
.yad_c00151{bottom:471.630000px;}
.yaf_c00151{bottom:472.470000px;}
.yac_c00151{bottom:472.905000px;}
.yb0_c00151{bottom:473.970000px;}
.yab_c00151{bottom:487.905000px;}
.ya9_c00151{bottom:490.245000px;}
.yaa_c00151{bottom:491.325000px;}
.ya7_c00151{bottom:492.405000px;}
.ya8_c00151{bottom:493.470000px;}
.ya3_c00151{bottom:508.470000px;}
.ya2_c00151{bottom:508.905000px;}
.ya5_c00151{bottom:509.970000px;}
.ya6_c00151{bottom:510.630000px;}
.ya4_c00151{bottom:510.825000px;}
.ya1_c00151{bottom:511.905000px;}
.ya0_c00151{bottom:526.905000px;}
.y9e_c00151{bottom:528.825000px;}
.y9b_c00151{bottom:529.245000px;}
.y9c_c00151{bottom:530.970000px;}
.y9d_c00151{bottom:531.405000px;}
.y9f_c00151{bottom:532.470000px;}
.y9a_c00151{bottom:548.745000px;}
.y99_c00151{bottom:550.245000px;}
.y97_c00151{bottom:551.130000px;}
.y98_c00151{bottom:551.970000px;}
.y95_c00151{bottom:552.405000px;}
.y96_c00151{bottom:552.420000px;}
.y90_c00151{bottom:568.245000px;}
.y91_c00151{bottom:569.745000px;}
.y94_c00151{bottom:570.630000px;}
.y93_c00151{bottom:570.825000px;}
.y92_c00151{bottom:572.970000px;}
.y8f_c00151{bottom:585.630000px;}
.y8d_c00151{bottom:586.275000px;}
.y8b_c00151{bottom:586.905000px;}
.y8a_c00151{bottom:588.405000px;}
.y88_c00151{bottom:589.245000px;}
.y87_c00151{bottom:590.130000px;}
.y89_c00151{bottom:590.325000px;}
.y8e_c00151{bottom:591.405000px;}
.y8c_c00151{bottom:594.630000px;}
.y86_c00151{bottom:606.825000px;}
.y83_c00151{bottom:607.905000px;}
.y84_c00151{bottom:608.745000px;}
.y85_c00151{bottom:609.630000px;}
.y82_c00151{bottom:609.825000px;}
.y81_c00151{bottom:610.905000px;}
.y80_c00151{bottom:627.405000px;}
.y7d_c00151{bottom:628.245000px;}
.y7e_c00151{bottom:629.325000px;}
.y7f_c00151{bottom:630.405000px;}
.y7c_c00151{bottom:646.470000px;}
.y7b_c00151{bottom:646.905000px;}
.y76_c00151{bottom:647.745000px;}
.y77_c00151{bottom:647.970000px;}
.y7a_c00151{bottom:648.825000px;}
.y78_c00151{bottom:649.470000px;}
.y79_c00151{bottom:649.905000px;}
.y6f_c00151{bottom:665.970000px;}
.y70_c00151{bottom:666.405000px;}
.y73_c00151{bottom:666.825000px;}
.y74_c00151{bottom:667.245000px;}
.y75_c00151{bottom:667.470000px;}
.y71_c00151{bottom:668.130000px;}
.y6e_c00151{bottom:669.405000px;}
.y72_c00151{bottom:669.420000px;}
.y68_c00151{bottom:685.905000px;}
.y6c_c00151{bottom:686.745000px;}
.y6b_c00151{bottom:686.970000px;}
.y69_c00151{bottom:687.825000px;}
.y6a_c00151{bottom:688.905000px;}
.y6d_c00151{bottom:689.130000px;}
.y66_c00151{bottom:705.825000px;}
.y63_c00151{bottom:706.245000px;}
.y64_c00151{bottom:706.470000px;}
.y67_c00151{bottom:707.325000px;}
.y65_c00151{bottom:708.405000px;}
.y61_c00151{bottom:724.905000px;}
.y5f_c00151{bottom:725.745000px;}
.y60_c00151{bottom:726.405000px;}
.y62_c00151{bottom:727.245000px;}
.y5e_c00151{bottom:727.905000px;}
.y5d_c00151{bottom:745.245000px;}
.y5c_c00151{bottom:745.905000px;}
.y58_c00151{bottom:746.745000px;}
.y5a_c00151{bottom:746.970000px;}
.y5b_c00151{bottom:747.825000px;}
.y59_c00151{bottom:748.905000px;}
.y56_c00151{bottom:766.245000px;}
.y57_c00151{bottom:767.325000px;}
.y54_c00151{bottom:767.970000px;}
.y55_c00151{bottom:768.405000px;}
.y53_c00151{bottom:785.550000px;}
.y51_c00151{bottom:785.745000px;}
.y50_c00151{bottom:787.470000px;}
.y4f_c00151{bottom:787.905000px;}
.y52_c00151{bottom:788.970000px;}
.y4c_c00151{bottom:805.245000px;}
.y4e_c00151{bottom:806.325000px;}
.y4d_c00151{bottom:807.405000px;}
.y4a_c00151{bottom:823.905000px;}
.y46_c00151{bottom:824.745000px;}
.y4b_c00151{bottom:825.825000px;}
.y48_c00151{bottom:826.905000px;}
.y49_c00151{bottom:827.130000px;}
.y47_c00151{bottom:827.970000px;}
.y3f_c00151{bottom:844.245000px;}
.y45_c00151{bottom:845.130000px;}
.y42_c00151{bottom:845.325000px;}
.y3e_c00151{bottom:845.745000px;}
.y44_c00151{bottom:845.970000px;}
.y41_c00151{bottom:846.405000px;}
.y43_c00151{bottom:847.470000px;}
.y40_c00151{bottom:847.905000px;}
.y3a_c00151{bottom:863.745000px;}
.y3b_c00151{bottom:864.825000px;}
.y3d_c00151{bottom:865.245000px;}
.y39_c00151{bottom:865.905000px;}
.y3c_c00151{bottom:866.970000px;}
.y38_c00151{bottom:867.405000px;}
.y37_c00151{bottom:885.405000px;}
.y36_c00151{bottom:903.825000px;}
.y33_c00151{bottom:904.245000px;}
.y34_c00151{bottom:904.905000px;}
.y32_c00151{bottom:905.130000px;}
.y31_c00151{bottom:905.325000px;}
.y35_c00151{bottom:905.970000px;}
.y30_c00151{bottom:906.405000px;}
.y2e_c00151{bottom:923.325000px;}
.y2a_c00151{bottom:923.745000px;}
.y2f_c00151{bottom:924.405000px;}
.y2d_c00151{bottom:924.630000px;}
.y2b_c00151{bottom:924.825000px;}
.y2c_c00151{bottom:925.905000px;}
.y27_c00151{bottom:942.825000px;}
.y28_c00151{bottom:943.245000px;}
.y29_c00151{bottom:944.130000px;}
.y26_c00151{bottom:944.325000px;}
.y25_c00151{bottom:945.405000px;}
.y24_c00151{bottom:962.325000px;}
.y22_c00151{bottom:962.745000px;}
.y21_c00151{bottom:963.825000px;}
.y23_c00151{bottom:964.470000px;}
.y1f_c00151{bottom:964.905000px;}
.y20_c00151{bottom:965.970000px;}
.y1e_c00151{bottom:981.405000px;}
.y1c_c00151{bottom:982.245000px;}
.y1d_c00151{bottom:983.325000px;}
.y1a_c00151{bottom:984.405000px;}
.y1b_c00151{bottom:985.470000px;}
.y19_c00151{bottom:1000.470000px;}
.y18_c00151{bottom:1000.905000px;}
.y15_c00151{bottom:1001.745000px;}
.y17_c00151{bottom:1002.825000px;}
.y14_c00151{bottom:1003.905000px;}
.y16_c00151{bottom:1004.970000px;}
.y12_c00151{bottom:1021.050000px;}
.y10_c00151{bottom:1021.245000px;}
.yf_c00151{bottom:1022.130000px;}
.y11_c00151{bottom:1023.405000px;}
.y13_c00151{bottom:1023.630000px;}
.yc_c00151{bottom:1041.825000px;}
.ye_c00151{bottom:1042.905000px;}
.yd_c00151{bottom:1043.130000px;}
.yb_c00151{bottom:1043.970000px;}
.y7_c00151{bottom:1059.405000px;}
.y4_c00151{bottom:1060.245000px;}
.y8_c00151{bottom:1060.470000px;}
.y2_c00151{bottom:1061.745000px;}
.ya_c00151{bottom:1062.405000px;}
.y3_c00151{bottom:1062.420000px;}
.y9_c00151{bottom:1062.630000px;}
.y5_c00151{bottom:1063.470000px;}
.y6_c00151{bottom:1063.905000px;}
.y1_c00151{bottom:1100.550000px;}
.h3_c00151{height:4.206533px;}
.h8_c00151{height:14.612168px;}
.h6_c00151{height:23.025234px;}
.h1_c00151{height:25.091602px;}
.h4_c00151{height:31.364502px;}
.h5_c00151{height:35.571035px;}
.h7_c00151{height:39.777568px;}
.h2_c00151{height:43.910303px;}
.h9_c00151{height:48.116836px;}
.h0_c00151{height:1335.000000px;}
.w0_c00151{width:880.500000px;}
.x0_c00151{left:0.000000px;}
.xf6_c00151{left:150.000000px;}
.x6f_c00151{left:151.500000px;}
.x11_c00151{left:152.580000px;}
.x2_c00151{left:153.855000px;}
.x106_c00151{left:166.500000px;}
.x70_c00151{left:167.580000px;}
.x3_c00151{left:169.080000px;}
.xfd_c00151{left:171.420000px;}
.x4c_c00151{left:172.920000px;}
.x1e_c00151{left:180.420000px;}
.x12_c00151{left:182.355000px;}
.x36_c00151{left:184.500000px;}
.xd9_c00151{left:186.420000px;}
.x29_c00151{left:187.920000px;}
.x107_c00151{left:190.500000px;}
.x42_c00151{left:192.000000px;}
.xec_c00151{left:195.000000px;}
.xb7_c00151{left:196.920000px;}
.xfe_c00151{left:198.000000px;}
.x4d_c00151{left:201.000000px;}
.xbe_c00151{left:202.080000px;}
.x7e_c00151{left:204.000000px;}
.xf0_c00151{left:205.920000px;}
.x68_c00151{left:207.000000px;}
.x37_c00151{left:211.920000px;}
.xca_c00151{left:213.000000px;}
.x10d_c00151{left:218.580000px;}
.x5c_c00151{left:220.500000px;}
.x71_c00151{left:222.420000px;}
.xe0_c00151{left:223.500000px;}
.xe3_c00151{left:226.500000px;}
.x93_c00151{left:227.580000px;}
.x89_c00151{left:229.080000px;}
.xf9_c00151{left:231.420000px;}
.xc4_c00151{left:232.500000px;}
.xf1_c00151{left:234.000000px;}
.x2a_c00151{left:235.500000px;}
.x1f_c00151{left:237.000000px;}
.x9a_c00151{left:238.500000px;}
.x105_c00151{left:240.000000px;}
.xbf_c00151{left:241.500000px;}
.x43_c00151{left:243.000000px;}
.x13_c00151{left:244.500000px;}
.x94_c00151{left:246.420000px;}
.xed_c00151{left:249.000000px;}
.x4e_c00151{left:255.420000px;}
.x4_c00151{left:256.500000px;}
.xda_c00151{left:258.000000px;}
.x38_c00151{left:259.080000px;}
.xd0_c00151{left:261.000000px;}
.xa8_c00151{left:262.920000px;}
.x8a_c00151{left:264.000000px;}
.xae_c00151{left:267.000000px;}
.xe4_c00151{left:268.500000px;}
.x10a_c00151{left:270.000000px;}
.x5d_c00151{left:273.420000px;}
.xf7_c00151{left:274.920000px;}
.x14_c00151{left:276.000000px;}
.x5_c00151{left:277.080000px;}
.x2b_c00151{left:279.000000px;}
.x4f_c00151{left:281.580000px;}
.x44_c00151{left:284.580000px;}
.xee_c00151{left:286.920000px;}
.x72_c00151{left:288.000000px;}
.xb8_c00151{left:289.080000px;}
.x108_c00151{left:290.580000px;}
.xa9_c00151{left:292.500000px;}
.x10b_c00151{left:295.500000px;}
.xe1_c00151{left:297.420000px;}
.x5e_c00151{left:298.920000px;}
.xdb_c00151{left:300.420000px;}
.x50_c00151{left:301.920000px;}
.x2c_c00151{left:303.420000px;}
.x39_c00151{left:306.000000px;}
.xe5_c00151{left:307.080000px;}
.xa0_c00151{left:308.580000px;}
.x9b_c00151{left:310.500000px;}
.x73_c00151{left:314.580000px;}
.x7f_c00151{left:317.580000px;}
.x45_c00151{left:319.080000px;}
.x8b_c00151{left:320.580000px;}
.x5f_c00151{left:322.080000px;}
.x15_c00151{left:324.000000px;}
.xaf_c00151{left:325.920000px;}
.x10f_c00151{left:327.000000px;}
.x20_c00151{left:328.500000px;}
.x51_c00151{left:330.420000px;}
.x6_c00151{left:332.580000px;}
.x2d_c00151{left:334.500000px;}
.x46_c00151{left:336.420000px;}
.x60_c00151{left:339.420000px;}
.xe6_c00151{left:340.920000px;}
.x3a_c00151{left:342.000000px;}
.x74_c00151{left:343.500000px;}
.x95_c00151{left:345.855000px;}
.xfa_c00151{left:348.000000px;}
.x8c_c00151{left:351.420000px;}
.x7_c00151{left:352.920000px;}
.x80_c00151{left:355.500000px;}
.xaa_c00151{left:357.000000px;}
.x75_c00151{left:358.500000px;}
.xd1_c00151{left:360.000000px;}
.x47_c00151{left:361.920000px;}
.xb0_c00151{left:364.500000px;}
.x61_c00151{left:366.000000px;}
.x16_c00151{left:369.000000px;}
.xc0_c00151{left:372.000000px;}
.x76_c00151{left:373.500000px;}
.x69_c00151{left:375.420000px;}
.x52_c00151{left:376.500000px;}
.xf2_c00151{left:377.580000px;}
.x3b_c00151{left:381.420000px;}
.xb9_c00151{left:382.500000px;}
.xa1_c00151{left:385.500000px;}
.xcb_c00151{left:387.000000px;}
.x8e_c00151{left:388.500000px;}
.x77_c00151{left:391.500000px;}
.xf3_c00151{left:394.920000px;}
.x2e_c00151{left:396.000000px;}
.xe7_c00151{left:397.920000px;}
.xb1_c00151{left:399.000000px;}
.x1_c00151{left:400.500000px;}
.x9c_c00151{left:402.000000px;}
.x81_c00151{left:403.500000px;}
.xef_c00151{left:405.000000px;}
.x21_c00151{left:406.500000px;}
.x78_c00151{left:407.580000px;}
.x3c_c00151{left:409.920000px;}
.xfb_c00151{left:411.420000px;}
.x8_c00151{left:412.920000px;}
.xdc_c00151{left:414.000000px;}
.xba_c00151{left:417.000000px;}
.x8d_c00151{left:421.080000px;}
.xc5_c00151{left:423.000000px;}
.xc1_c00151{left:424.080000px;}
.xe8_c00151{left:426.000000px;}
.x62_c00151{left:427.080000px;}
.x101_c00151{left:428.580000px;}
.x17_c00151{left:430.500000px;}
.x53_c00151{left:432.420000px;}
.xab_c00151{left:435.000000px;}
.xb2_c00151{left:436.920000px;}
.xbb_c00151{left:439.080000px;}
.xff_c00151{left:442.080000px;}
.x2f_c00151{left:444.000000px;}
.x3d_c00151{left:445.500000px;}
.x96_c00151{left:448.500000px;}
.xa2_c00151{left:451.080000px;}
.x9d_c00151{left:453.000000px;}
.x79_c00151{left:456.000000px;}
.x82_c00151{left:460.500000px;}
.xb3_c00151{left:462.000000px;}
.xc2_c00151{left:463.080000px;}
.x22_c00151{left:466.920000px;}
.x54_c00151{left:469.500000px;}
.xe9_c00151{left:471.000000px;}
.x9_c00151{left:472.500000px;}
.x102_c00151{left:473.580000px;}
.xcc_c00151{left:477.000000px;}
.x6a_c00151{left:478.920000px;}
.x48_c00151{left:480.000000px;}
.x18_c00151{left:481.500000px;}
.x30_c00151{left:485.580000px;}
.x63_c00151{left:487.500000px;}
.xd2_c00151{left:489.420000px;}
.x3e_c00151{left:490.500000px;}
.x103_c00151{left:492.420000px;}
.xe2_c00151{left:495.000000px;}
.x85_c00151{left:498.000000px;}
.x83_c00151{left:499.920000px;}
.xc3_c00151{left:502.920000px;}
.xc6_c00151{left:504.000000px;}
.xdd_c00151{left:507.000000px;}
.xf8_c00151{left:508.500000px;}
.x8f_c00151{left:509.580000px;}
.xa_c00151{left:511.080000px;}
.x7a_c00151{left:513.000000px;}
.xd3_c00151{left:514.500000px;}
.x31_c00151{left:516.855000px;}
.x23_c00151{left:519.000000px;}
.xd4_c00151{left:520.080000px;}
.x97_c00151{left:521.580000px;}
.x55_c00151{left:523.920000px;}
.xa3_c00151{left:525.000000px;}
.x64_c00151{left:526.920000px;}
.x19_c00151{left:529.500000px;}
.x7b_c00151{left:531.000000px;}
.xd5_c00151{left:532.500000px;}
.xb_c00151{left:534.000000px;}
.xac_c00151{left:536.580000px;}
.x109_c00151{left:538.080000px;}
.xb4_c00151{left:541.920000px;}
.x6b_c00151{left:543.000000px;}
.x9e_c00151{left:546.420000px;}
.xbc_c00151{left:547.920000px;}
.x56_c00151{left:550.920000px;}
.xcd_c00151{left:553.500000px;}
.xc_c00151{left:555.000000px;}
.x86_c00151{left:556.080000px;}
.x90_c00151{left:558.000000px;}
.x65_c00151{left:561.420000px;}
.x24_c00151{left:564.420000px;}
.x3f_c00151{left:567.420000px;}
.x7c_c00151{left:571.080000px;}
.x1a_c00151{left:574.500000px;}
.xea_c00151{left:576.000000px;}
.x32_c00151{left:578.580000px;}
.x57_c00151{left:583.080000px;}
.x9f_c00151{left:585.000000px;}
.x100_c00151{left:586.500000px;}
.xd_c00151{left:588.000000px;}
.x98_c00151{left:589.500000px;}
.xa4_c00151{left:592.920000px;}
.xf4_c00151{left:594.000000px;}
.x25_c00151{left:597.000000px;}
.xc7_c00151{left:598.080000px;}
.xce_c00151{left:600.420000px;}
.x58_c00151{left:601.920000px;}
.xb5_c00151{left:603.000000px;}
.x1b_c00151{left:604.920000px;}
.x84_c00151{left:607.080000px;}
.x6c_c00151{left:609.000000px;}
.x87_c00151{left:610.500000px;}
.xd6_c00151{left:613.500000px;}
.x10c_c00151{left:615.000000px;}
.xeb_c00151{left:616.920000px;}
.x49_c00151{left:619.080000px;}
.xc8_c00151{left:624.000000px;}
.x33_c00151{left:625.500000px;}
.xe_c00151{left:627.000000px;}
.x66_c00151{left:628.500000px;}
.x59_c00151{left:630.000000px;}
.xa5_c00151{left:631.920000px;}
.x104_c00151{left:633.420000px;}
.xde_c00151{left:634.500000px;}
.x26_c00151{left:636.000000px;}
.x4a_c00151{left:637.920000px;}
.x1c_c00151{left:640.080000px;}
.xbd_c00151{left:642.000000px;}
.x6d_c00151{left:643.080000px;}
.x40_c00151{left:649.080000px;}
.x34_c00151{left:651.000000px;}
.xcf_c00151{left:657.000000px;}
.x91_c00151{left:658.500000px;}
.xfc_c00151{left:661.500000px;}
.xf_c00151{left:663.000000px;}
.x7d_c00151{left:667.920000px;}
.x5a_c00151{left:669.000000px;}
.xf5_c00151{left:672.000000px;}
.xad_c00151{left:673.500000px;}
.x99_c00151{left:677.580000px;}
.x88_c00151{left:679.500000px;}
.xa6_c00151{left:680.580000px;}
.x67_c00151{left:682.920000px;}
.x27_c00151{left:684.420000px;}
.x35_c00151{left:688.920000px;}
.x6e_c00151{left:690.420000px;}
.xb6_c00151{left:691.500000px;}
.x10_c00151{left:694.500000px;}
.x5b_c00151{left:696.000000px;}
.x92_c00151{left:697.500000px;}
.xa7_c00151{left:700.920000px;}
.x4b_c00151{left:702.000000px;}
.xc9_c00151{left:703.080000px;}
.xdf_c00151{left:704.580000px;}
.x41_c00151{left:706.080000px;}
.x1d_c00151{left:709.920000px;}
.x10e_c00151{left:713.580000px;}
.xd7_c00151{left:721.500000px;}
.x28_c00151{left:723.000000px;}
.xd8_c00151{left:727.080000px;}
@media print{
.v0_c00151{vertical-align:0.000000pt;}
.ls0_c00151{letter-spacing:0.000000pt;}
.ws0_c00151{word-spacing:0.000000pt;}
.fs2_c00151{font-size:3.040000pt;}
.fs7_c00151{font-size:10.560000pt;}
.fs5_c00151{font-size:16.640000pt;}
.fs0_c00151{font-size:18.133333pt;}
.fs3_c00151{font-size:22.666667pt;}
.fs4_c00151{font-size:25.706667pt;}
.fs6_c00151{font-size:28.746667pt;}
.fs1_c00151{font-size:31.733333pt;}
.fs8_c00151{font-size:34.773333pt;}
.y0_c00151{bottom:0.000000pt;}
.yea_c00151{bottom:240.360000pt;}
.ye9_c00151{bottom:243.226667pt;}
.ye8_c00151{bottom:244.360000pt;}
.ye7_c00151{bottom:259.773333pt;}
.ye3_c00151{bottom:260.560000pt;}
.ye6_c00151{bottom:261.306667pt;}
.ye2_c00151{bottom:261.693333pt;}
.ye5_c00151{bottom:261.893333pt;}
.ye4_c00151{bottom:262.640000pt;}
.ydd_c00151{bottom:277.106667pt;}
.ydf_c00151{bottom:278.440000pt;}
.ye1_c00151{bottom:278.640000pt;}
.ydc_c00151{bottom:279.026667pt;}
.yde_c00151{bottom:279.226667pt;}
.ye0_c00151{bottom:280.360000pt;}
.ydb_c00151{bottom:293.693333pt;}
.yd7_c00151{bottom:294.440000pt;}
.yd5_c00151{bottom:294.826667pt;}
.yd9_c00151{bottom:295.773333pt;}
.yd6_c00151{bottom:296.360000pt;}
.yd8_c00151{bottom:297.306667pt;}
.yda_c00151{bottom:297.693333pt;}
.yd4_c00151{bottom:313.106667pt;}
.yd2_c00151{bottom:313.693333pt;}
.yd3_c00151{bottom:315.026667pt;}
.ycd_c00151{bottom:330.066667pt;}
.yd1_c00151{bottom:330.440000pt;}
.ycf_c00151{bottom:331.226667pt;}
.yd0_c00151{bottom:331.973333pt;}
.yce_c00151{bottom:332.360000pt;}
.ycc_c00151{bottom:346.640000pt;}
.yca_c00151{bottom:347.026667pt;}
.yc9_c00151{bottom:347.773333pt;}
.ycb_c00151{bottom:347.973333pt;}
.yc7_c00151{bottom:348.733333pt;}
.yc6_c00151{bottom:349.693333pt;}
.yc8_c00151{bottom:350.640000pt;}
.yc5_c00151{bottom:363.973333pt;}
.yc1_c00151{bottom:364.733333pt;}
.yc3_c00151{bottom:365.106667pt;}
.yc0_c00151{bottom:366.066667pt;}
.yc2_c00151{bottom:367.026667pt;}
.yc4_c00151{bottom:367.973333pt;}
.yb7_c00151{bottom:381.693333pt;}
.ybe_c00151{bottom:382.440000pt;}
.ybb_c00151{bottom:383.026667pt;}
.ybf_c00151{bottom:383.226667pt;}
.yba_c00151{bottom:383.400000pt;}
.ybd_c00151{bottom:383.773333pt;}
.ybc_c00151{bottom:384.360000pt;}
.yb9_c00151{bottom:384.560000pt;}
.yb8_c00151{bottom:385.693333pt;}
.yb2_c00151{bottom:399.026667pt;}
.yb4_c00151{bottom:399.773333pt;}
.yb6_c00151{bottom:400.733333pt;}
.yb5_c00151{bottom:401.106667pt;}
.yb3_c00151{bottom:401.693333pt;}
.yb1_c00151{bottom:403.026667pt;}
.yae_c00151{bottom:418.440000pt;}
.yad_c00151{bottom:419.226667pt;}
.yaf_c00151{bottom:419.973333pt;}
.yac_c00151{bottom:420.360000pt;}
.yb0_c00151{bottom:421.306667pt;}
.yab_c00151{bottom:433.693333pt;}
.ya9_c00151{bottom:435.773333pt;}
.yaa_c00151{bottom:436.733333pt;}
.ya7_c00151{bottom:437.693333pt;}
.ya8_c00151{bottom:438.640000pt;}
.ya3_c00151{bottom:451.973333pt;}
.ya2_c00151{bottom:452.360000pt;}
.ya5_c00151{bottom:453.306667pt;}
.ya6_c00151{bottom:453.893333pt;}
.ya4_c00151{bottom:454.066667pt;}
.ya1_c00151{bottom:455.026667pt;}
.ya0_c00151{bottom:468.360000pt;}
.y9e_c00151{bottom:470.066667pt;}
.y9b_c00151{bottom:470.440000pt;}
.y9c_c00151{bottom:471.973333pt;}
.y9d_c00151{bottom:472.360000pt;}
.y9f_c00151{bottom:473.306667pt;}
.y9a_c00151{bottom:487.773333pt;}
.y99_c00151{bottom:489.106667pt;}
.y97_c00151{bottom:489.893333pt;}
.y98_c00151{bottom:490.640000pt;}
.y95_c00151{bottom:491.026667pt;}
.y96_c00151{bottom:491.040000pt;}
.y90_c00151{bottom:505.106667pt;}
.y91_c00151{bottom:506.440000pt;}
.y94_c00151{bottom:507.226667pt;}
.y93_c00151{bottom:507.400000pt;}
.y92_c00151{bottom:509.306667pt;}
.y8f_c00151{bottom:520.560000pt;}
.y8d_c00151{bottom:521.133333pt;}
.y8b_c00151{bottom:521.693333pt;}
.y8a_c00151{bottom:523.026667pt;}
.y88_c00151{bottom:523.773333pt;}
.y87_c00151{bottom:524.560000pt;}
.y89_c00151{bottom:524.733333pt;}
.y8e_c00151{bottom:525.693333pt;}
.y8c_c00151{bottom:528.560000pt;}
.y86_c00151{bottom:539.400000pt;}
.y83_c00151{bottom:540.360000pt;}
.y84_c00151{bottom:541.106667pt;}
.y85_c00151{bottom:541.893333pt;}
.y82_c00151{bottom:542.066667pt;}
.y81_c00151{bottom:543.026667pt;}
.y80_c00151{bottom:557.693333pt;}
.y7d_c00151{bottom:558.440000pt;}
.y7e_c00151{bottom:559.400000pt;}
.y7f_c00151{bottom:560.360000pt;}
.y7c_c00151{bottom:574.640000pt;}
.y7b_c00151{bottom:575.026667pt;}
.y76_c00151{bottom:575.773333pt;}
.y77_c00151{bottom:575.973333pt;}
.y7a_c00151{bottom:576.733333pt;}
.y78_c00151{bottom:577.306667pt;}
.y79_c00151{bottom:577.693333pt;}
.y6f_c00151{bottom:591.973333pt;}
.y70_c00151{bottom:592.360000pt;}
.y73_c00151{bottom:592.733333pt;}
.y74_c00151{bottom:593.106667pt;}
.y75_c00151{bottom:593.306667pt;}
.y71_c00151{bottom:593.893333pt;}
.y6e_c00151{bottom:595.026667pt;}
.y72_c00151{bottom:595.040000pt;}
.y68_c00151{bottom:609.693333pt;}
.y6c_c00151{bottom:610.440000pt;}
.y6b_c00151{bottom:610.640000pt;}
.y69_c00151{bottom:611.400000pt;}
.y6a_c00151{bottom:612.360000pt;}
.y6d_c00151{bottom:612.560000pt;}
.y66_c00151{bottom:627.400000pt;}
.y63_c00151{bottom:627.773333pt;}
.y64_c00151{bottom:627.973333pt;}
.y67_c00151{bottom:628.733333pt;}
.y65_c00151{bottom:629.693333pt;}
.y61_c00151{bottom:644.360000pt;}
.y5f_c00151{bottom:645.106667pt;}
.y60_c00151{bottom:645.693333pt;}
.y62_c00151{bottom:646.440000pt;}
.y5e_c00151{bottom:647.026667pt;}
.y5d_c00151{bottom:662.440000pt;}
.y5c_c00151{bottom:663.026667pt;}
.y58_c00151{bottom:663.773333pt;}
.y5a_c00151{bottom:663.973333pt;}
.y5b_c00151{bottom:664.733333pt;}
.y59_c00151{bottom:665.693333pt;}
.y56_c00151{bottom:681.106667pt;}
.y57_c00151{bottom:682.066667pt;}
.y54_c00151{bottom:682.640000pt;}
.y55_c00151{bottom:683.026667pt;}
.y53_c00151{bottom:698.266667pt;}
.y51_c00151{bottom:698.440000pt;}
.y50_c00151{bottom:699.973333pt;}
.y4f_c00151{bottom:700.360000pt;}
.y52_c00151{bottom:701.306667pt;}
.y4c_c00151{bottom:715.773333pt;}
.y4e_c00151{bottom:716.733333pt;}
.y4d_c00151{bottom:717.693333pt;}
.y4a_c00151{bottom:732.360000pt;}
.y46_c00151{bottom:733.106667pt;}
.y4b_c00151{bottom:734.066667pt;}
.y48_c00151{bottom:735.026667pt;}
.y49_c00151{bottom:735.226667pt;}
.y47_c00151{bottom:735.973333pt;}
.y3f_c00151{bottom:750.440000pt;}
.y45_c00151{bottom:751.226667pt;}
.y42_c00151{bottom:751.400000pt;}
.y3e_c00151{bottom:751.773333pt;}
.y44_c00151{bottom:751.973333pt;}
.y41_c00151{bottom:752.360000pt;}
.y43_c00151{bottom:753.306667pt;}
.y40_c00151{bottom:753.693333pt;}
.y3a_c00151{bottom:767.773333pt;}
.y3b_c00151{bottom:768.733333pt;}
.y3d_c00151{bottom:769.106667pt;}
.y39_c00151{bottom:769.693333pt;}
.y3c_c00151{bottom:770.640000pt;}
.y38_c00151{bottom:771.026667pt;}
.y37_c00151{bottom:787.026667pt;}
.y36_c00151{bottom:803.400000pt;}
.y33_c00151{bottom:803.773333pt;}
.y34_c00151{bottom:804.360000pt;}
.y32_c00151{bottom:804.560000pt;}
.y31_c00151{bottom:804.733333pt;}
.y35_c00151{bottom:805.306667pt;}
.y30_c00151{bottom:805.693333pt;}
.y2e_c00151{bottom:820.733333pt;}
.y2a_c00151{bottom:821.106667pt;}
.y2f_c00151{bottom:821.693333pt;}
.y2d_c00151{bottom:821.893333pt;}
.y2b_c00151{bottom:822.066667pt;}
.y2c_c00151{bottom:823.026667pt;}
.y27_c00151{bottom:838.066667pt;}
.y28_c00151{bottom:838.440000pt;}
.y29_c00151{bottom:839.226667pt;}
.y26_c00151{bottom:839.400000pt;}
.y25_c00151{bottom:840.360000pt;}
.y24_c00151{bottom:855.400000pt;}
.y22_c00151{bottom:855.773333pt;}
.y21_c00151{bottom:856.733333pt;}
.y23_c00151{bottom:857.306667pt;}
.y1f_c00151{bottom:857.693333pt;}
.y20_c00151{bottom:858.640000pt;}
.y1e_c00151{bottom:872.360000pt;}
.y1c_c00151{bottom:873.106667pt;}
.y1d_c00151{bottom:874.066667pt;}
.y1a_c00151{bottom:875.026667pt;}
.y1b_c00151{bottom:875.973333pt;}
.y19_c00151{bottom:889.306667pt;}
.y18_c00151{bottom:889.693333pt;}
.y15_c00151{bottom:890.440000pt;}
.y17_c00151{bottom:891.400000pt;}
.y14_c00151{bottom:892.360000pt;}
.y16_c00151{bottom:893.306667pt;}
.y12_c00151{bottom:907.600000pt;}
.y10_c00151{bottom:907.773333pt;}
.yf_c00151{bottom:908.560000pt;}
.y11_c00151{bottom:909.693333pt;}
.y13_c00151{bottom:909.893333pt;}
.yc_c00151{bottom:926.066667pt;}
.ye_c00151{bottom:927.026667pt;}
.yd_c00151{bottom:927.226667pt;}
.yb_c00151{bottom:927.973333pt;}
.y7_c00151{bottom:941.693333pt;}
.y4_c00151{bottom:942.440000pt;}
.y8_c00151{bottom:942.640000pt;}
.y2_c00151{bottom:943.773333pt;}
.ya_c00151{bottom:944.360000pt;}
.y3_c00151{bottom:944.373333pt;}
.y9_c00151{bottom:944.560000pt;}
.y5_c00151{bottom:945.306667pt;}
.y6_c00151{bottom:945.693333pt;}
.y1_c00151{bottom:978.266667pt;}
.h3_c00151{height:3.739141pt;}
.h8_c00151{height:12.988594pt;}
.h6_c00151{height:20.466875pt;}
.h1_c00151{height:22.303646pt;}
.h4_c00151{height:27.879557pt;}
.h5_c00151{height:31.618698pt;}
.h7_c00151{height:35.357839pt;}
.h2_c00151{height:39.031380pt;}
.h9_c00151{height:42.770521pt;}
.h0_c00151{height:1186.666667pt;}
.w0_c00151{width:782.666667pt;}
.x0_c00151{left:0.000000pt;}
.xf6_c00151{left:133.333333pt;}
.x6f_c00151{left:134.666667pt;}
.x11_c00151{left:135.626667pt;}
.x2_c00151{left:136.760000pt;}
.x106_c00151{left:148.000000pt;}
.x70_c00151{left:148.960000pt;}
.x3_c00151{left:150.293333pt;}
.xfd_c00151{left:152.373333pt;}
.x4c_c00151{left:153.706667pt;}
.x1e_c00151{left:160.373333pt;}
.x12_c00151{left:162.093333pt;}
.x36_c00151{left:164.000000pt;}
.xd9_c00151{left:165.706667pt;}
.x29_c00151{left:167.040000pt;}
.x107_c00151{left:169.333333pt;}
.x42_c00151{left:170.666667pt;}
.xec_c00151{left:173.333333pt;}
.xb7_c00151{left:175.040000pt;}
.xfe_c00151{left:176.000000pt;}
.x4d_c00151{left:178.666667pt;}
.xbe_c00151{left:179.626667pt;}
.x7e_c00151{left:181.333333pt;}
.xf0_c00151{left:183.040000pt;}
.x68_c00151{left:184.000000pt;}
.x37_c00151{left:188.373333pt;}
.xca_c00151{left:189.333333pt;}
.x10d_c00151{left:194.293333pt;}
.x5c_c00151{left:196.000000pt;}
.x71_c00151{left:197.706667pt;}
.xe0_c00151{left:198.666667pt;}
.xe3_c00151{left:201.333333pt;}
.x93_c00151{left:202.293333pt;}
.x89_c00151{left:203.626667pt;}
.xf9_c00151{left:205.706667pt;}
.xc4_c00151{left:206.666667pt;}
.xf1_c00151{left:208.000000pt;}
.x2a_c00151{left:209.333333pt;}
.x1f_c00151{left:210.666667pt;}
.x9a_c00151{left:212.000000pt;}
.x105_c00151{left:213.333333pt;}
.xbf_c00151{left:214.666667pt;}
.x43_c00151{left:216.000000pt;}
.x13_c00151{left:217.333333pt;}
.x94_c00151{left:219.040000pt;}
.xed_c00151{left:221.333333pt;}
.x4e_c00151{left:227.040000pt;}
.x4_c00151{left:228.000000pt;}
.xda_c00151{left:229.333333pt;}
.x38_c00151{left:230.293333pt;}
.xd0_c00151{left:232.000000pt;}
.xa8_c00151{left:233.706667pt;}
.x8a_c00151{left:234.666667pt;}
.xae_c00151{left:237.333333pt;}
.xe4_c00151{left:238.666667pt;}
.x10a_c00151{left:240.000000pt;}
.x5d_c00151{left:243.040000pt;}
.xf7_c00151{left:244.373333pt;}
.x14_c00151{left:245.333333pt;}
.x5_c00151{left:246.293333pt;}
.x2b_c00151{left:248.000000pt;}
.x4f_c00151{left:250.293333pt;}
.x44_c00151{left:252.960000pt;}
.xee_c00151{left:255.040000pt;}
.x72_c00151{left:256.000000pt;}
.xb8_c00151{left:256.960000pt;}
.x108_c00151{left:258.293333pt;}
.xa9_c00151{left:260.000000pt;}
.x10b_c00151{left:262.666667pt;}
.xe1_c00151{left:264.373333pt;}
.x5e_c00151{left:265.706667pt;}
.xdb_c00151{left:267.040000pt;}
.x50_c00151{left:268.373333pt;}
.x2c_c00151{left:269.706667pt;}
.x39_c00151{left:272.000000pt;}
.xe5_c00151{left:272.960000pt;}
.xa0_c00151{left:274.293333pt;}
.x9b_c00151{left:276.000000pt;}
.x73_c00151{left:279.626667pt;}
.x7f_c00151{left:282.293333pt;}
.x45_c00151{left:283.626667pt;}
.x8b_c00151{left:284.960000pt;}
.x5f_c00151{left:286.293333pt;}
.x15_c00151{left:288.000000pt;}
.xaf_c00151{left:289.706667pt;}
.x10f_c00151{left:290.666667pt;}
.x20_c00151{left:292.000000pt;}
.x51_c00151{left:293.706667pt;}
.x6_c00151{left:295.626667pt;}
.x2d_c00151{left:297.333333pt;}
.x46_c00151{left:299.040000pt;}
.x60_c00151{left:301.706667pt;}
.xe6_c00151{left:303.040000pt;}
.x3a_c00151{left:304.000000pt;}
.x74_c00151{left:305.333333pt;}
.x95_c00151{left:307.426667pt;}
.xfa_c00151{left:309.333333pt;}
.x8c_c00151{left:312.373333pt;}
.x7_c00151{left:313.706667pt;}
.x80_c00151{left:316.000000pt;}
.xaa_c00151{left:317.333333pt;}
.x75_c00151{left:318.666667pt;}
.xd1_c00151{left:320.000000pt;}
.x47_c00151{left:321.706667pt;}
.xb0_c00151{left:324.000000pt;}
.x61_c00151{left:325.333333pt;}
.x16_c00151{left:328.000000pt;}
.xc0_c00151{left:330.666667pt;}
.x76_c00151{left:332.000000pt;}
.x69_c00151{left:333.706667pt;}
.x52_c00151{left:334.666667pt;}
.xf2_c00151{left:335.626667pt;}
.x3b_c00151{left:339.040000pt;}
.xb9_c00151{left:340.000000pt;}
.xa1_c00151{left:342.666667pt;}
.xcb_c00151{left:344.000000pt;}
.x8e_c00151{left:345.333333pt;}
.x77_c00151{left:348.000000pt;}
.xf3_c00151{left:351.040000pt;}
.x2e_c00151{left:352.000000pt;}
.xe7_c00151{left:353.706667pt;}
.xb1_c00151{left:354.666667pt;}
.x1_c00151{left:356.000000pt;}
.x9c_c00151{left:357.333333pt;}
.x81_c00151{left:358.666667pt;}
.xef_c00151{left:360.000000pt;}
.x21_c00151{left:361.333333pt;}
.x78_c00151{left:362.293333pt;}
.x3c_c00151{left:364.373333pt;}
.xfb_c00151{left:365.706667pt;}
.x8_c00151{left:367.040000pt;}
.xdc_c00151{left:368.000000pt;}
.xba_c00151{left:370.666667pt;}
.x8d_c00151{left:374.293333pt;}
.xc5_c00151{left:376.000000pt;}
.xc1_c00151{left:376.960000pt;}
.xe8_c00151{left:378.666667pt;}
.x62_c00151{left:379.626667pt;}
.x101_c00151{left:380.960000pt;}
.x17_c00151{left:382.666667pt;}
.x53_c00151{left:384.373333pt;}
.xab_c00151{left:386.666667pt;}
.xb2_c00151{left:388.373333pt;}
.xbb_c00151{left:390.293333pt;}
.xff_c00151{left:392.960000pt;}
.x2f_c00151{left:394.666667pt;}
.x3d_c00151{left:396.000000pt;}
.x96_c00151{left:398.666667pt;}
.xa2_c00151{left:400.960000pt;}
.x9d_c00151{left:402.666667pt;}
.x79_c00151{left:405.333333pt;}
.x82_c00151{left:409.333333pt;}
.xb3_c00151{left:410.666667pt;}
.xc2_c00151{left:411.626667pt;}
.x22_c00151{left:415.040000pt;}
.x54_c00151{left:417.333333pt;}
.xe9_c00151{left:418.666667pt;}
.x9_c00151{left:420.000000pt;}
.x102_c00151{left:420.960000pt;}
.xcc_c00151{left:424.000000pt;}
.x6a_c00151{left:425.706667pt;}
.x48_c00151{left:426.666667pt;}
.x18_c00151{left:428.000000pt;}
.x30_c00151{left:431.626667pt;}
.x63_c00151{left:433.333333pt;}
.xd2_c00151{left:435.040000pt;}
.x3e_c00151{left:436.000000pt;}
.x103_c00151{left:437.706667pt;}
.xe2_c00151{left:440.000000pt;}
.x85_c00151{left:442.666667pt;}
.x83_c00151{left:444.373333pt;}
.xc3_c00151{left:447.040000pt;}
.xc6_c00151{left:448.000000pt;}
.xdd_c00151{left:450.666667pt;}
.xf8_c00151{left:452.000000pt;}
.x8f_c00151{left:452.960000pt;}
.xa_c00151{left:454.293333pt;}
.x7a_c00151{left:456.000000pt;}
.xd3_c00151{left:457.333333pt;}
.x31_c00151{left:459.426667pt;}
.x23_c00151{left:461.333333pt;}
.xd4_c00151{left:462.293333pt;}
.x97_c00151{left:463.626667pt;}
.x55_c00151{left:465.706667pt;}
.xa3_c00151{left:466.666667pt;}
.x64_c00151{left:468.373333pt;}
.x19_c00151{left:470.666667pt;}
.x7b_c00151{left:472.000000pt;}
.xd5_c00151{left:473.333333pt;}
.xb_c00151{left:474.666667pt;}
.xac_c00151{left:476.960000pt;}
.x109_c00151{left:478.293333pt;}
.xb4_c00151{left:481.706667pt;}
.x6b_c00151{left:482.666667pt;}
.x9e_c00151{left:485.706667pt;}
.xbc_c00151{left:487.040000pt;}
.x56_c00151{left:489.706667pt;}
.xcd_c00151{left:492.000000pt;}
.xc_c00151{left:493.333333pt;}
.x86_c00151{left:494.293333pt;}
.x90_c00151{left:496.000000pt;}
.x65_c00151{left:499.040000pt;}
.x24_c00151{left:501.706667pt;}
.x3f_c00151{left:504.373333pt;}
.x7c_c00151{left:507.626667pt;}
.x1a_c00151{left:510.666667pt;}
.xea_c00151{left:512.000000pt;}
.x32_c00151{left:514.293333pt;}
.x57_c00151{left:518.293333pt;}
.x9f_c00151{left:520.000000pt;}
.x100_c00151{left:521.333333pt;}
.xd_c00151{left:522.666667pt;}
.x98_c00151{left:524.000000pt;}
.xa4_c00151{left:527.040000pt;}
.xf4_c00151{left:528.000000pt;}
.x25_c00151{left:530.666667pt;}
.xc7_c00151{left:531.626667pt;}
.xce_c00151{left:533.706667pt;}
.x58_c00151{left:535.040000pt;}
.xb5_c00151{left:536.000000pt;}
.x1b_c00151{left:537.706667pt;}
.x84_c00151{left:539.626667pt;}
.x6c_c00151{left:541.333333pt;}
.x87_c00151{left:542.666667pt;}
.xd6_c00151{left:545.333333pt;}
.x10c_c00151{left:546.666667pt;}
.xeb_c00151{left:548.373333pt;}
.x49_c00151{left:550.293333pt;}
.xc8_c00151{left:554.666667pt;}
.x33_c00151{left:556.000000pt;}
.xe_c00151{left:557.333333pt;}
.x66_c00151{left:558.666667pt;}
.x59_c00151{left:560.000000pt;}
.xa5_c00151{left:561.706667pt;}
.x104_c00151{left:563.040000pt;}
.xde_c00151{left:564.000000pt;}
.x26_c00151{left:565.333333pt;}
.x4a_c00151{left:567.040000pt;}
.x1c_c00151{left:568.960000pt;}
.xbd_c00151{left:570.666667pt;}
.x6d_c00151{left:571.626667pt;}
.x40_c00151{left:576.960000pt;}
.x34_c00151{left:578.666667pt;}
.xcf_c00151{left:584.000000pt;}
.x91_c00151{left:585.333333pt;}
.xfc_c00151{left:588.000000pt;}
.xf_c00151{left:589.333333pt;}
.x7d_c00151{left:593.706667pt;}
.x5a_c00151{left:594.666667pt;}
.xf5_c00151{left:597.333333pt;}
.xad_c00151{left:598.666667pt;}
.x99_c00151{left:602.293333pt;}
.x88_c00151{left:604.000000pt;}
.xa6_c00151{left:604.960000pt;}
.x67_c00151{left:607.040000pt;}
.x27_c00151{left:608.373333pt;}
.x35_c00151{left:612.373333pt;}
.x6e_c00151{left:613.706667pt;}
.xb6_c00151{left:614.666667pt;}
.x10_c00151{left:617.333333pt;}
.x5b_c00151{left:618.666667pt;}
.x92_c00151{left:620.000000pt;}
.xa7_c00151{left:623.040000pt;}
.x4b_c00151{left:624.000000pt;}
.xc9_c00151{left:624.960000pt;}
.xdf_c00151{left:626.293333pt;}
.x41_c00151{left:627.626667pt;}
.x1d_c00151{left:631.040000pt;}
.x10e_c00151{left:634.293333pt;}
.xd7_c00151{left:641.333333pt;}
.x28_c00151{left:642.666667pt;}
.xd8_c00151{left:646.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_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_ad57ac9b937aa9f6b601dc2c.woff2')format("woff");}.ff1_c00152{font-family:ff1_c00152;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma4_c00152{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m9f_c00152{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.m4c_c00152{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m35_c00152{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m6_c00152{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m41_c00152{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m2c_c00152{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m5b_c00152{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m60_c00152{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.md4_c00152{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.m22_c00152{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m8c_c00152{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.mde_c00152{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m25_c00152{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.ma_c00152{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m5d_c00152{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m86_c00152{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m23_c00152{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.maa_c00152{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m11_c00152{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m70_c00152{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.me5_c00152{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.me1_c00152{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m98_c00152{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m1e_c00152{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.ma1_c00152{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m9d_c00152{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mcc_c00152{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mb8_c00152{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m59_c00152{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m2d_c00152{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m5a_c00152{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m44_c00152{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m90_c00152{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m17_c00152{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m5_c00152{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mc7_c00152{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m20_c00152{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m64_c00152{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mc0_c00152{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m85_c00152{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m27_c00152{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.ma8_c00152{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m9_c00152{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.mda_c00152{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.me0_c00152{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m66_c00152{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m8d_c00152{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m79_c00152{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mb9_c00152{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.me7_c00152{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m88_c00152{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m18_c00152{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.ma5_c00152{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.mb4_c00152{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.md8_c00152{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m81_c00152{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m46_c00152{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.md9_c00152{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.md1_c00152{transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);}
.mf_c00152{transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);}
.mc9_c00152{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m24_c00152{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.mb3_c00152{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m73_c00152{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m71_c00152{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.me2_c00152{transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);}
.md_c00152{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.m8f_c00152{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m6c_c00152{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m1_c00152{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m12_c00152{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.m92_c00152{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m7e_c00152{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m51_c00152{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m74_c00152{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mb2_c00152{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m80_c00152{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m89_c00152{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m75_c00152{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m95_c00152{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m10_c00152{transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);}
.me4_c00152{transform:matrix(0.467069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467069,0.000000,0.000000,0.250000,0,0);}
.m4_c00152{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.m28_c00152{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m9a_c00152{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.mce_c00152{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m7f_c00152{transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);}
.md6_c00152{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.mc4_c00152{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mb6_c00152{transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);}
.m82_c00152{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mca_c00152{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m1f_c00152{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m87_c00152{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m45_c00152{transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);}
.ma7_c00152{transform:matrix(0.483896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483896,0.000000,0.000000,0.250000,0,0);}
.mb0_c00152{transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);}
.mb_c00152{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m94_c00152{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m97_c00152{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m5c_c00152{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mba_c00152{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m9e_c00152{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m42_c00152{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.ma6_c00152{transform:matrix(0.490798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490798,0.000000,0.000000,0.250000,0,0);}
.mad_c00152{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m43_c00152{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mdd_c00152{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mab_c00152{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m7_c00152{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m2e_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);}
.m9b_c00152{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.me6_c00152{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m6a_c00152{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m91_c00152{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.mb7_c00152{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m3f_c00152{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m48_c00152{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m55_c00152{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m84_c00152{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mae_c00152{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.md5_c00152{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m8a_c00152{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mdf_c00152{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m69_c00152{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mc2_c00152{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m36_c00152{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m4a_c00152{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m3_c00152{transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);}
.m4e_c00152{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m7b_c00152{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m93_c00152{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mc6_c00152{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mbc_c00152{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m1d_c00152{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m38_c00152{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m8b_c00152{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m26_c00152{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m52_c00152{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m83_c00152{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m1b_c00152{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m40_c00152{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mbf_c00152{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m3c_c00152{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m7c_c00152{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.ma9_c00152{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m58_c00152{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m3a_c00152{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m1a_c00152{transform:matrix(0.540816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540816,0.000000,0.000000,0.250000,0,0);}
.m53_c00152{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m29_c00152{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m37_c00152{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mdb_c00152{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m72_c00152{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mac_c00152{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m65_c00152{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m8_c00152{transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);}
.ma2_c00152{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m4f_c00152{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m62_c00152{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m21_c00152{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m50_c00152{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m3b_c00152{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m7a_c00152{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m77_c00152{transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);}
.m8e_c00152{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m2f_c00152{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m5f_c00152{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mcb_c00152{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);}
.m76_c00152{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.me9_c00152{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m39_c00152{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m30_c00152{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m33_c00152{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mc_c00152{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m56_c00152{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m6b_c00152{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.md2_c00152{transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);}
.ma0_c00152{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.maf_c00152{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m3d_c00152{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mbd_c00152{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.mb5_c00152{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m16_c00152{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m47_c00152{transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);}
.md0_c00152{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m54_c00152{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m14_c00152{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m3e_c00152{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m32_c00152{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.m31_c00152{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_c00152{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m5e_c00152{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m7d_c00152{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m34_c00152{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m78_c00152{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.me3_c00152{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m49_c00152{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m2_c00152{transform:matrix(0.617739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617739,0.000000,0.000000,0.250000,0,0);}
.md7_c00152{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.m13_c00152{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.me8_c00152{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.mc3_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);}
.m67_c00152{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mbb_c00152{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m99_c00152{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.mbe_c00152{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.mcf_c00152{transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);}
.m6e_c00152{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.mb1_c00152{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m6d_c00152{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.me_c00152{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);}
.mc8_c00152{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m1c_c00152{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m15_c00152{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.ma3_c00152{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mc1_c00152{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mcd_c00152{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m6f_c00152{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mdc_c00152{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m63_c00152{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m68_c00152{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m4d_c00152{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m2a_c00152{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.mc5_c00152{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m61_c00152{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.md3_c00152{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m9c_c00152{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m96_c00152{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m57_c00152{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m2b_c00152{transform:matrix(2.425439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.425439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.425439,0.000000,0.000000,0.250000,0,0);}
.m19_c00152{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m4b_c00152{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00152{vertical-align:0.000000px;}
.ls0_c00152{letter-spacing:0.000000px;}
.sc__c00152{text-shadow:none;}
.sc0_c00152{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00152{-webkit-text-stroke:0px transparent;}
.sc0_c00152{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00152{word-spacing:-3.584672px;}
.ws2_c00152{word-spacing:0.000000px;}
.ws0_c00152{word-spacing:3.368671px;}
.fc0_c00152{color:transparent;}
.fs6_c00152{font-size:3.420000px;}
.fs5_c00152{font-size:18.720000px;}
.fs0_c00152{font-size:20.400000px;}
.fs4_c00152{font-size:25.500000px;}
.fs1_c00152{font-size:28.920000px;}
.fs2_c00152{font-size:32.340000px;}
.fs3_c00152{font-size:35.700000px;}
.fs7_c00152{font-size:39.120000px;}
.y0_c00152{bottom:0.000000px;}
.yb5_c00152{bottom:272.745000px;}
.yb6_c00152{bottom:274.905000px;}
.yb4_c00152{bottom:275.970000px;}
.yb2_c00152{bottom:290.970000px;}
.yaf_c00152{bottom:292.245000px;}
.yb0_c00152{bottom:293.130000px;}
.yb1_c00152{bottom:294.405000px;}
.yb3_c00152{bottom:295.470000px;}
.yad_c00152{bottom:311.325000px;}
.yaa_c00152{bottom:311.745000px;}
.yae_c00152{bottom:312.630000px;}
.yab_c00152{bottom:313.905000px;}
.yac_c00152{bottom:314.970000px;}
.ya9_c00152{bottom:331.245000px;}
.ya8_c00152{bottom:333.405000px;}
.ya7_c00152{bottom:334.470000px;}
.ya5_c00152{bottom:350.745000px;}
.ya6_c00152{bottom:351.825000px;}
.ya3_c00152{bottom:352.905000px;}
.ya4_c00152{bottom:353.130000px;}
.ya2_c00152{bottom:353.970000px;}
.y9f_c00152{bottom:370.245000px;}
.y9c_c00152{bottom:370.470000px;}
.ya1_c00152{bottom:371.325000px;}
.ya0_c00152{bottom:372.405000px;}
.y9b_c00152{bottom:372.630000px;}
.y9d_c00152{bottom:372.825000px;}
.y9e_c00152{bottom:373.470000px;}
.y9a_c00152{bottom:373.905000px;}
.y97_c00152{bottom:391.245000px;}
.y99_c00152{bottom:392.130000px;}
.y98_c00152{bottom:393.405000px;}
.y96_c00152{bottom:394.470000px;}
.y94_c00152{bottom:410.325000px;}
.y92_c00152{bottom:410.745000px;}
.y95_c00152{bottom:412.050000px;}
.y93_c00152{bottom:412.905000px;}
.y91_c00152{bottom:413.970000px;}
.y8d_c00152{bottom:430.245000px;}
.y8e_c00152{bottom:431.130000px;}
.y8c_c00152{bottom:431.325000px;}
.y90_c00152{bottom:431.970000px;}
.y8f_c00152{bottom:432.405000px;}
.y8a_c00152{bottom:449.745000px;}
.y88_c00152{bottom:451.905000px;}
.y8b_c00152{bottom:452.130000px;}
.y89_c00152{bottom:453.420000px;}
.y87_c00152{bottom:472.905000px;}
.y83_c00152{bottom:490.905000px;}
.y84_c00152{bottom:491.130000px;}
.y86_c00152{bottom:491.325000px;}
.y82_c00152{bottom:491.970000px;}
.y85_c00152{bottom:492.405000px;}
.y7f_c00152{bottom:509.745000px;}
.y80_c00152{bottom:510.630000px;}
.y81_c00152{bottom:511.905000px;}
.y7a_c00152{bottom:528.405000px;}
.y7e_c00152{bottom:529.245000px;}
.y7c_c00152{bottom:530.325000px;}
.y7d_c00152{bottom:530.970000px;}
.y7b_c00152{bottom:531.405000px;}
.y74_c00152{bottom:547.905000px;}
.y77_c00152{bottom:548.325000px;}
.y79_c00152{bottom:548.745000px;}
.y78_c00152{bottom:550.470000px;}
.y75_c00152{bottom:550.905000px;}
.y76_c00152{bottom:551.970000px;}
.y72_c00152{bottom:567.180000px;}
.y71_c00152{bottom:568.245000px;}
.y73_c00152{bottom:569.130000px;}
.y70_c00152{bottom:570.405000px;}
.y6f_c00152{bottom:588.180000px;}
.y6c_c00152{bottom:589.245000px;}
.y6d_c00152{bottom:590.130000px;}
.y6e_c00152{bottom:591.405000px;}
.y68_c00152{bottom:608.325000px;}
.y66_c00152{bottom:608.745000px;}
.y6b_c00152{bottom:609.405000px;}
.y69_c00152{bottom:609.630000px;}
.y6a_c00152{bottom:609.825000px;}
.y67_c00152{bottom:610.470000px;}
.y65_c00152{bottom:610.905000px;}
.y64_c00152{bottom:628.245000px;}
.y63_c00152{bottom:629.130000px;}
.y62_c00152{bottom:629.325000px;}
.y61_c00152{bottom:630.405000px;}
.y5a_c00152{bottom:646.905000px;}
.y60_c00152{bottom:647.325000px;}
.y5d_c00152{bottom:647.745000px;}
.y5c_c00152{bottom:648.630000px;}
.y5f_c00152{bottom:648.825000px;}
.y5b_c00152{bottom:649.470000px;}
.y5e_c00152{bottom:649.905000px;}
.y57_c00152{bottom:667.245000px;}
.y59_c00152{bottom:668.325000px;}
.y58_c00152{bottom:669.405000px;}
.y56_c00152{bottom:686.745000px;}
.y53_c00152{bottom:687.825000px;}
.y54_c00152{bottom:688.905000px;}
.y55_c00152{bottom:689.130000px;}
.y4f_c00152{bottom:705.405000px;}
.y4c_c00152{bottom:706.245000px;}
.y4d_c00152{bottom:706.470000px;}
.y51_c00152{bottom:706.905000px;}
.y4b_c00152{bottom:708.405000px;}
.y52_c00152{bottom:708.630000px;}
.y50_c00152{bottom:709.470000px;}
.y4e_c00152{bottom:709.905000px;}
.y48_c00152{bottom:724.905000px;}
.y4a_c00152{bottom:726.825000px;}
.y43_c00152{bottom:727.050000px;}
.y46_c00152{bottom:727.245000px;}
.y45_c00152{bottom:728.130000px;}
.y49_c00152{bottom:728.325000px;}
.y44_c00152{bottom:728.970000px;}
.y47_c00152{bottom:729.405000px;}
.y3a_c00152{bottom:745.245000px;}
.y3f_c00152{bottom:745.905000px;}
.y3d_c00152{bottom:746.745000px;}
.y41_c00152{bottom:746.970000px;}
.y3c_c00152{bottom:747.405000px;}
.y42_c00152{bottom:747.630000px;}
.y40_c00152{bottom:748.470000px;}
.y3e_c00152{bottom:748.905000px;}
.y3b_c00152{bottom:748.920000px;}
.y35_c00152{bottom:766.245000px;}
.y39_c00152{bottom:767.970000px;}
.y37_c00152{bottom:768.405000px;}
.y38_c00152{bottom:768.630000px;}
.y36_c00152{bottom:769.470000px;}
.y33_c00152{bottom:785.745000px;}
.y34_c00152{bottom:787.905000px;}
.y30_c00152{bottom:805.245000px;}
.y32_c00152{bottom:806.325000px;}
.y2f_c00152{bottom:807.405000px;}
.y31_c00152{bottom:807.630000px;}
.y2d_c00152{bottom:824.745000px;}
.y2b_c00152{bottom:826.905000px;}
.y2e_c00152{bottom:827.130000px;}
.y2c_c00152{bottom:828.420000px;}
.y2a_c00152{bottom:846.405000px;}
.y26_c00152{bottom:865.245000px;}
.y28_c00152{bottom:865.905000px;}
.y29_c00152{bottom:866.325000px;}
.y27_c00152{bottom:867.405000px;}
.y25_c00152{bottom:886.905000px;}
.y23_c00152{bottom:902.970000px;}
.y24_c00152{bottom:904.245000px;}
.y20_c00152{bottom:906.405000px;}
.y21_c00152{bottom:906.420000px;}
.y22_c00152{bottom:907.470000px;}
.y1f_c00152{bottom:923.745000px;}
.y1d_c00152{bottom:924.630000px;}
.y1c_c00152{bottom:925.905000px;}
.y1e_c00152{bottom:925.920000px;}
.y1b_c00152{bottom:942.405000px;}
.y17_c00152{bottom:943.245000px;}
.y1a_c00152{bottom:943.905000px;}
.y19_c00152{bottom:944.325000px;}
.y18_c00152{bottom:945.420000px;}
.y16_c00152{bottom:964.245000px;}
.y10_c00152{bottom:982.245000px;}
.y11_c00152{bottom:983.745000px;}
.y13_c00152{bottom:984.825000px;}
.y15_c00152{bottom:985.470000px;}
.y14_c00152{bottom:985.905000px;}
.y12_c00152{bottom:985.920000px;}
.yc_c00152{bottom:1011.405000px;}
.yf_c00152{bottom:1012.050000px;}
.yd_c00152{bottom:1012.470000px;}
.ye_c00152{bottom:1013.130000px;}
.yb_c00152{bottom:1013.550000px;}
.y6_c00152{bottom:1032.405000px;}
.y8_c00152{bottom:1032.825000px;}
.y7_c00152{bottom:1033.050000px;}
.ya_c00152{bottom:1033.905000px;}
.y9_c00152{bottom:1034.550000px;}
.y5_c00152{bottom:1061.745000px;}
.y4_c00152{bottom:1062.825000px;}
.y3_c00152{bottom:1063.905000px;}
.y2_c00152{bottom:1099.905000px;}
.y1_c00152{bottom:1102.050000px;}
.h7_c00152{height:4.206533px;}
.h6_c00152{height:23.025234px;}
.h1_c00152{height:25.091602px;}
.h5_c00152{height:31.364502px;}
.h2_c00152{height:35.571035px;}
.h3_c00152{height:39.777568px;}
.h4_c00152{height:43.910303px;}
.h8_c00152{height:48.116836px;}
.h0_c00152{height:1335.000000px;}
.w0_c00152{width:880.500000px;}
.x0_c00152{left:0.000000px;}
.x23_c00152{left:151.500000px;}
.x65_c00152{left:153.000000px;}
.xf_c00152{left:165.000000px;}
.x18_c00152{left:166.920000px;}
.x24_c00152{left:168.000000px;}
.xe2_c00152{left:169.500000px;}
.xd0_c00152{left:171.000000px;}
.x8f_c00152{left:177.000000px;}
.x9c_c00152{left:180.420000px;}
.xec_c00152{left:187.500000px;}
.x74_c00152{left:188.580000px;}
.xe3_c00152{left:190.920000px;}
.x7c_c00152{left:192.420000px;}
.xa4_c00152{left:193.500000px;}
.x87_c00152{left:195.420000px;}
.xc0_c00152{left:196.920000px;}
.x90_c00152{left:198.000000px;}
.xd1_c00152{left:199.500000px;}
.xaf_c00152{left:202.500000px;}
.xf3_c00152{left:205.500000px;}
.x66_c00152{left:207.000000px;}
.x19_c00152{left:208.920000px;}
.x80_c00152{left:210.420000px;}
.x91_c00152{left:211.500000px;}
.xed_c00152{left:212.580000px;}
.x10_c00152{left:214.500000px;}
.x39_c00152{left:218.580000px;}
.x56_c00152{left:220.500000px;}
.xa9_c00152{left:222.420000px;}
.x88_c00152{left:223.920000px;}
.x61_c00152{left:228.000000px;}
.x43_c00152{left:231.000000px;}
.x67_c00152{left:232.080000px;}
.x75_c00152{left:235.920000px;}
.x81_c00152{left:237.000000px;}
.xb7_c00152{left:241.920000px;}
.x57_c00152{left:243.000000px;}
.xb0_c00152{left:246.000000px;}
.x2c_c00152{left:247.500000px;}
.xd7_c00152{left:249.000000px;}
.xa5_c00152{left:250.920000px;}
.x4c_c00152{left:252.000000px;}
.x6b_c00152{left:255.000000px;}
.x25_c00152{left:258.000000px;}
.x31_c00152{left:259.500000px;}
.x44_c00152{left:263.580000px;}
.x7d_c00152{left:265.080000px;}
.x1a_c00152{left:267.000000px;}
.x3a_c00152{left:268.500000px;}
.xb8_c00152{left:270.000000px;}
.xee_c00152{left:271.500000px;}
.x11_c00152{left:273.000000px;}
.x4d_c00152{left:274.080000px;}
.x6c_c00152{left:275.145000px;}
.x99_c00152{left:277.500000px;}
.x26_c00152{left:279.000000px;}
.x8_c00152{left:280.500000px;}
.xd8_c00152{left:282.000000px;}
.xc9_c00152{left:283.920000px;}
.x7e_c00152{left:285.420000px;}
.x76_c00152{left:286.920000px;}
.x1b_c00152{left:288.000000px;}
.xce_c00152{left:289.500000px;}
.x3_c00152{left:292.500000px;}
.xd2_c00152{left:295.500000px;}
.xaa_c00152{left:297.000000px;}
.x58_c00152{left:298.080000px;}
.x2d_c00152{left:300.000000px;}
.xa6_c00152{left:301.080000px;}
.xb1_c00152{left:304.500000px;}
.x45_c00152{left:305.580000px;}
.x89_c00152{left:308.580000px;}
.x7f_c00152{left:310.080000px;}
.x12_c00152{left:313.920000px;}
.xc1_c00152{left:315.000000px;}
.xdd_c00152{left:316.500000px;}
.xe1_c00152{left:319.500000px;}
.x2e_c00152{left:320.580000px;}
.x77_c00152{left:322.080000px;}
.x8a_c00152{left:328.920000px;}
.x9a_c00152{left:330.000000px;}
.x62_c00152{left:331.080000px;}
.x3b_c00152{left:332.580000px;}
.xbf_c00152{left:335.580000px;}
.x9_c00152{left:339.420000px;}
.xab_c00152{left:341.580000px;}
.x27_c00152{left:343.275000px;}
.xcf_c00152{left:345.000000px;}
.x13_c00152{left:348.000000px;}
.x78_c00152{left:352.080000px;}
.x9d_c00152{left:354.000000px;}
.x4_c00152{left:357.420000px;}
.xb2_c00152{left:360.420000px;}
.xa_c00152{left:364.080000px;}
.x3c_c00152{left:365.580000px;}
.x4e_c00152{left:367.500000px;}
.xac_c00152{left:370.080000px;}
.x92_c00152{left:372.000000px;}
.x46_c00152{left:373.920000px;}
.xb9_c00152{left:376.500000px;}
.x32_c00152{left:378.000000px;}
.x59_c00152{left:379.920000px;}
.xd9_c00152{left:382.500000px;}
.x28_c00152{left:383.580000px;}
.xa7_c00152{left:385.500000px;}
.xef_c00152{left:390.420000px;}
.xe9_c00152{left:391.500000px;}
.x6d_c00152{left:396.420000px;}
.x1_c00152{left:397.500000px;}
.xb3_c00152{left:399.000000px;}
.x4f_c00152{left:403.500000px;}
.x33_c00152{left:406.500000px;}
.x9e_c00152{left:408.000000px;}
.x14_c00152{left:409.500000px;}
.x93_c00152{left:411.000000px;}
.x29_c00152{left:412.500000px;}
.x82_c00152{left:414.000000px;}
.x47_c00152{left:415.500000px;}
.x68_c00152{left:417.000000px;}
.x5a_c00152{left:418.500000px;}
.xca_c00152{left:419.580000px;}
.x2f_c00152{left:423.000000px;}
.x3d_c00152{left:424.500000px;}
.xde_c00152{left:426.420000px;}
.x1c_c00152{left:429.000000px;}
.xa8_c00152{left:430.080000px;}
.x6e_c00152{left:432.000000px;}
.x5_c00152{left:433.920000px;}
.x8b_c00152{left:441.000000px;}
.x69_c00152{left:442.080000px;}
.x15_c00152{left:445.500000px;}
.xb_c00152{left:447.420000px;}
.x1d_c00152{left:449.145000px;}
.xad_c00152{left:451.500000px;}
.x5b_c00152{left:452.580000px;}
.xc2_c00152{left:454.920000px;}
.x50_c00152{left:459.000000px;}
.x34_c00152{left:460.080000px;}
.xda_c00152{left:462.000000px;}
.x5c_c00152{left:465.000000px;}
.x48_c00152{left:471.000000px;}
.x2a_c00152{left:473.775000px;}
.x30_c00152{left:478.080000px;}
.xc3_c00152{left:480.000000px;}
.x16_c00152{left:481.500000px;}
.x63_c00152{left:482.580000px;}
.x9f_c00152{left:484.920000px;}
.x8c_c00152{left:487.500000px;}
.x3e_c00152{left:489.000000px;}
.xba_c00152{left:490.080000px;}
.xf0_c00152{left:492.000000px;}
.x51_c00152{left:493.080000px;}
.x17_c00152{left:496.920000px;}
.x1e_c00152{left:504.855000px;}
.xe4_c00152{left:505.920000px;}
.x6_c00152{left:508.500000px;}
.xbb_c00152{left:510.000000px;}
.x6a_c00152{left:513.000000px;}
.x2b_c00152{left:514.920000px;}
.x83_c00152{left:519.000000px;}
.x35_c00152{left:520.920000px;}
.xb4_c00152{left:522.000000px;}
.xc_c00152{left:523.080000px;}
.xc4_c00152{left:525.855000px;}
.x94_c00152{left:526.920000px;}
.x8d_c00152{left:529.080000px;}
.xe5_c00152{left:532.500000px;}
.x49_c00152{left:534.420000px;}
.x3f_c00152{left:535.500000px;}
.x6f_c00152{left:540.000000px;}
.xd3_c00152{left:541.080000px;}
.xd_c00152{left:543.420000px;}
.x5d_c00152{left:544.920000px;}
.xdb_c00152{left:546.000000px;}
.xbc_c00152{left:549.000000px;}
.xc5_c00152{left:550.920000px;}
.x84_c00152{left:553.920000px;}
.x7_c00152{left:556.275000px;}
.x36_c00152{left:559.500000px;}
.xe_c00152{left:561.000000px;}
.xf1_c00152{left:563.580000px;}
.x1f_c00152{left:565.500000px;}
.xbd_c00152{left:568.500000px;}
.x40_c00152{left:570.000000px;}
.xcb_c00152{left:573.420000px;}
.x70_c00152{left:574.500000px;}
.xc6_c00152{left:577.920000px;}
.xb5_c00152{left:580.500000px;}
.xd4_c00152{left:582.000000px;}
.x52_c00152{left:589.920000px;}
.xa0_c00152{left:591.420000px;}
.x95_c00152{left:597.000000px;}
.xea_c00152{left:598.500000px;}
.x71_c00152{left:603.000000px;}
.xcc_c00152{left:604.500000px;}
.x79_c00152{left:609.000000px;}
.x8e_c00152{left:610.920000px;}
.x20_c00152{left:613.500000px;}
.x5e_c00152{left:616.920000px;}
.xa1_c00152{left:618.420000px;}
.x53_c00152{left:619.920000px;}
.xdc_c00152{left:622.500000px;}
.xbe_c00152{left:624.000000px;}
.x37_c00152{left:626.580000px;}
.xc7_c00152{left:628.500000px;}
.x41_c00152{left:630.000000px;}
.x96_c00152{left:632.580000px;}
.x4a_c00152{left:634.500000px;}
.x21_c00152{left:637.500000px;}
.xae_c00152{left:642.000000px;}
.x72_c00152{left:643.080000px;}
.xe6_c00152{left:645.000000px;}
.x5f_c00152{left:646.500000px;}
.x9b_c00152{left:648.000000px;}
.xa2_c00152{left:649.080000px;}
.xf2_c00152{left:651.000000px;}
.x97_c00152{left:652.920000px;}
.xb6_c00152{left:654.000000px;}
.x7a_c00152{left:655.080000px;}
.x54_c00152{left:657.420000px;}
.xdf_c00152{left:660.000000px;}
.xe7_c00152{left:661.500000px;}
.x64_c00152{left:663.000000px;}
.x42_c00152{left:664.500000px;}
.xa3_c00152{left:669.420000px;}
.xd5_c00152{left:670.500000px;}
.x73_c00152{left:672.420000px;}
.x38_c00152{left:675.420000px;}
.x85_c00152{left:678.000000px;}
.x98_c00152{left:681.000000px;}
.x22_c00152{left:686.580000px;}
.xeb_c00152{left:688.080000px;}
.x86_c00152{left:690.420000px;}
.x60_c00152{left:691.500000px;}
.x55_c00152{left:696.420000px;}
.xc8_c00152{left:697.920000px;}
.x7b_c00152{left:700.500000px;}
.x4b_c00152{left:703.080000px;}
.x2_c00152{left:705.420000px;}
.xcd_c00152{left:708.420000px;}
.xd6_c00152{left:709.920000px;}
.xe0_c00152{left:714.000000px;}
.xe8_c00152{left:717.000000px;}
@media print{
.v0_c00152{vertical-align:0.000000pt;}
.ls0_c00152{letter-spacing:0.000000pt;}
.ws1_c00152{word-spacing:-3.186375pt;}
.ws2_c00152{word-spacing:0.000000pt;}
.ws0_c00152{word-spacing:2.994375pt;}
.fs6_c00152{font-size:3.040000pt;}
.fs5_c00152{font-size:16.640000pt;}
.fs0_c00152{font-size:18.133333pt;}
.fs4_c00152{font-size:22.666667pt;}
.fs1_c00152{font-size:25.706667pt;}
.fs2_c00152{font-size:28.746667pt;}
.fs3_c00152{font-size:31.733333pt;}
.fs7_c00152{font-size:34.773333pt;}
.y0_c00152{bottom:0.000000pt;}
.yb5_c00152{bottom:242.440000pt;}
.yb6_c00152{bottom:244.360000pt;}
.yb4_c00152{bottom:245.306667pt;}
.yb2_c00152{bottom:258.640000pt;}
.yaf_c00152{bottom:259.773333pt;}
.yb0_c00152{bottom:260.560000pt;}
.yb1_c00152{bottom:261.693333pt;}
.yb3_c00152{bottom:262.640000pt;}
.yad_c00152{bottom:276.733333pt;}
.yaa_c00152{bottom:277.106667pt;}
.yae_c00152{bottom:277.893333pt;}
.yab_c00152{bottom:279.026667pt;}
.yac_c00152{bottom:279.973333pt;}
.ya9_c00152{bottom:294.440000pt;}
.ya8_c00152{bottom:296.360000pt;}
.ya7_c00152{bottom:297.306667pt;}
.ya5_c00152{bottom:311.773333pt;}
.ya6_c00152{bottom:312.733333pt;}
.ya3_c00152{bottom:313.693333pt;}
.ya4_c00152{bottom:313.893333pt;}
.ya2_c00152{bottom:314.640000pt;}
.y9f_c00152{bottom:329.106667pt;}
.y9c_c00152{bottom:329.306667pt;}
.ya1_c00152{bottom:330.066667pt;}
.ya0_c00152{bottom:331.026667pt;}
.y9b_c00152{bottom:331.226667pt;}
.y9d_c00152{bottom:331.400000pt;}
.y9e_c00152{bottom:331.973333pt;}
.y9a_c00152{bottom:332.360000pt;}
.y97_c00152{bottom:347.773333pt;}
.y99_c00152{bottom:348.560000pt;}
.y98_c00152{bottom:349.693333pt;}
.y96_c00152{bottom:350.640000pt;}
.y94_c00152{bottom:364.733333pt;}
.y92_c00152{bottom:365.106667pt;}
.y95_c00152{bottom:366.266667pt;}
.y93_c00152{bottom:367.026667pt;}
.y91_c00152{bottom:367.973333pt;}
.y8d_c00152{bottom:382.440000pt;}
.y8e_c00152{bottom:383.226667pt;}
.y8c_c00152{bottom:383.400000pt;}
.y90_c00152{bottom:383.973333pt;}
.y8f_c00152{bottom:384.360000pt;}
.y8a_c00152{bottom:399.773333pt;}
.y88_c00152{bottom:401.693333pt;}
.y8b_c00152{bottom:401.893333pt;}
.y89_c00152{bottom:403.040000pt;}
.y87_c00152{bottom:420.360000pt;}
.y83_c00152{bottom:436.360000pt;}
.y84_c00152{bottom:436.560000pt;}
.y86_c00152{bottom:436.733333pt;}
.y82_c00152{bottom:437.306667pt;}
.y85_c00152{bottom:437.693333pt;}
.y7f_c00152{bottom:453.106667pt;}
.y80_c00152{bottom:453.893333pt;}
.y81_c00152{bottom:455.026667pt;}
.y7a_c00152{bottom:469.693333pt;}
.y7e_c00152{bottom:470.440000pt;}
.y7c_c00152{bottom:471.400000pt;}
.y7d_c00152{bottom:471.973333pt;}
.y7b_c00152{bottom:472.360000pt;}
.y74_c00152{bottom:487.026667pt;}
.y77_c00152{bottom:487.400000pt;}
.y79_c00152{bottom:487.773333pt;}
.y78_c00152{bottom:489.306667pt;}
.y75_c00152{bottom:489.693333pt;}
.y76_c00152{bottom:490.640000pt;}
.y72_c00152{bottom:504.160000pt;}
.y71_c00152{bottom:505.106667pt;}
.y73_c00152{bottom:505.893333pt;}
.y70_c00152{bottom:507.026667pt;}
.y6f_c00152{bottom:522.826667pt;}
.y6c_c00152{bottom:523.773333pt;}
.y6d_c00152{bottom:524.560000pt;}
.y6e_c00152{bottom:525.693333pt;}
.y68_c00152{bottom:540.733333pt;}
.y66_c00152{bottom:541.106667pt;}
.y6b_c00152{bottom:541.693333pt;}
.y69_c00152{bottom:541.893333pt;}
.y6a_c00152{bottom:542.066667pt;}
.y67_c00152{bottom:542.640000pt;}
.y65_c00152{bottom:543.026667pt;}
.y64_c00152{bottom:558.440000pt;}
.y63_c00152{bottom:559.226667pt;}
.y62_c00152{bottom:559.400000pt;}
.y61_c00152{bottom:560.360000pt;}
.y5a_c00152{bottom:575.026667pt;}
.y60_c00152{bottom:575.400000pt;}
.y5d_c00152{bottom:575.773333pt;}
.y5c_c00152{bottom:576.560000pt;}
.y5f_c00152{bottom:576.733333pt;}
.y5b_c00152{bottom:577.306667pt;}
.y5e_c00152{bottom:577.693333pt;}
.y57_c00152{bottom:593.106667pt;}
.y59_c00152{bottom:594.066667pt;}
.y58_c00152{bottom:595.026667pt;}
.y56_c00152{bottom:610.440000pt;}
.y53_c00152{bottom:611.400000pt;}
.y54_c00152{bottom:612.360000pt;}
.y55_c00152{bottom:612.560000pt;}
.y4f_c00152{bottom:627.026667pt;}
.y4c_c00152{bottom:627.773333pt;}
.y4d_c00152{bottom:627.973333pt;}
.y51_c00152{bottom:628.360000pt;}
.y4b_c00152{bottom:629.693333pt;}
.y52_c00152{bottom:629.893333pt;}
.y50_c00152{bottom:630.640000pt;}
.y4e_c00152{bottom:631.026667pt;}
.y48_c00152{bottom:644.360000pt;}
.y4a_c00152{bottom:646.066667pt;}
.y43_c00152{bottom:646.266667pt;}
.y46_c00152{bottom:646.440000pt;}
.y45_c00152{bottom:647.226667pt;}
.y49_c00152{bottom:647.400000pt;}
.y44_c00152{bottom:647.973333pt;}
.y47_c00152{bottom:648.360000pt;}
.y3a_c00152{bottom:662.440000pt;}
.y3f_c00152{bottom:663.026667pt;}
.y3d_c00152{bottom:663.773333pt;}
.y41_c00152{bottom:663.973333pt;}
.y3c_c00152{bottom:664.360000pt;}
.y42_c00152{bottom:664.560000pt;}
.y40_c00152{bottom:665.306667pt;}
.y3e_c00152{bottom:665.693333pt;}
.y3b_c00152{bottom:665.706667pt;}
.y35_c00152{bottom:681.106667pt;}
.y39_c00152{bottom:682.640000pt;}
.y37_c00152{bottom:683.026667pt;}
.y38_c00152{bottom:683.226667pt;}
.y36_c00152{bottom:683.973333pt;}
.y33_c00152{bottom:698.440000pt;}
.y34_c00152{bottom:700.360000pt;}
.y30_c00152{bottom:715.773333pt;}
.y32_c00152{bottom:716.733333pt;}
.y2f_c00152{bottom:717.693333pt;}
.y31_c00152{bottom:717.893333pt;}
.y2d_c00152{bottom:733.106667pt;}
.y2b_c00152{bottom:735.026667pt;}
.y2e_c00152{bottom:735.226667pt;}
.y2c_c00152{bottom:736.373333pt;}
.y2a_c00152{bottom:752.360000pt;}
.y26_c00152{bottom:769.106667pt;}
.y28_c00152{bottom:769.693333pt;}
.y29_c00152{bottom:770.066667pt;}
.y27_c00152{bottom:771.026667pt;}
.y25_c00152{bottom:788.360000pt;}
.y23_c00152{bottom:802.640000pt;}
.y24_c00152{bottom:803.773333pt;}
.y20_c00152{bottom:805.693333pt;}
.y21_c00152{bottom:805.706667pt;}
.y22_c00152{bottom:806.640000pt;}
.y1f_c00152{bottom:821.106667pt;}
.y1d_c00152{bottom:821.893333pt;}
.y1c_c00152{bottom:823.026667pt;}
.y1e_c00152{bottom:823.040000pt;}
.y1b_c00152{bottom:837.693333pt;}
.y17_c00152{bottom:838.440000pt;}
.y1a_c00152{bottom:839.026667pt;}
.y19_c00152{bottom:839.400000pt;}
.y18_c00152{bottom:840.373333pt;}
.y16_c00152{bottom:857.106667pt;}
.y10_c00152{bottom:873.106667pt;}
.y11_c00152{bottom:874.440000pt;}
.y13_c00152{bottom:875.400000pt;}
.y15_c00152{bottom:875.973333pt;}
.y14_c00152{bottom:876.360000pt;}
.y12_c00152{bottom:876.373333pt;}
.yc_c00152{bottom:899.026667pt;}
.yf_c00152{bottom:899.600000pt;}
.yd_c00152{bottom:899.973333pt;}
.ye_c00152{bottom:900.560000pt;}
.yb_c00152{bottom:900.933333pt;}
.y6_c00152{bottom:917.693333pt;}
.y8_c00152{bottom:918.066667pt;}
.y7_c00152{bottom:918.266667pt;}
.ya_c00152{bottom:919.026667pt;}
.y9_c00152{bottom:919.600000pt;}
.y5_c00152{bottom:943.773333pt;}
.y4_c00152{bottom:944.733333pt;}
.y3_c00152{bottom:945.693333pt;}
.y2_c00152{bottom:977.693333pt;}
.y1_c00152{bottom:979.600000pt;}
.h7_c00152{height:3.739141pt;}
.h6_c00152{height:20.466875pt;}
.h1_c00152{height:22.303646pt;}
.h5_c00152{height:27.879557pt;}
.h2_c00152{height:31.618698pt;}
.h3_c00152{height:35.357839pt;}
.h4_c00152{height:39.031380pt;}
.h8_c00152{height:42.770521pt;}
.h0_c00152{height:1186.666667pt;}
.w0_c00152{width:782.666667pt;}
.x0_c00152{left:0.000000pt;}
.x23_c00152{left:134.666667pt;}
.x65_c00152{left:136.000000pt;}
.xf_c00152{left:146.666667pt;}
.x18_c00152{left:148.373333pt;}
.x24_c00152{left:149.333333pt;}
.xe2_c00152{left:150.666667pt;}
.xd0_c00152{left:152.000000pt;}
.x8f_c00152{left:157.333333pt;}
.x9c_c00152{left:160.373333pt;}
.xec_c00152{left:166.666667pt;}
.x74_c00152{left:167.626667pt;}
.xe3_c00152{left:169.706667pt;}
.x7c_c00152{left:171.040000pt;}
.xa4_c00152{left:172.000000pt;}
.x87_c00152{left:173.706667pt;}
.xc0_c00152{left:175.040000pt;}
.x90_c00152{left:176.000000pt;}
.xd1_c00152{left:177.333333pt;}
.xaf_c00152{left:180.000000pt;}
.xf3_c00152{left:182.666667pt;}
.x66_c00152{left:184.000000pt;}
.x19_c00152{left:185.706667pt;}
.x80_c00152{left:187.040000pt;}
.x91_c00152{left:188.000000pt;}
.xed_c00152{left:188.960000pt;}
.x10_c00152{left:190.666667pt;}
.x39_c00152{left:194.293333pt;}
.x56_c00152{left:196.000000pt;}
.xa9_c00152{left:197.706667pt;}
.x88_c00152{left:199.040000pt;}
.x61_c00152{left:202.666667pt;}
.x43_c00152{left:205.333333pt;}
.x67_c00152{left:206.293333pt;}
.x75_c00152{left:209.706667pt;}
.x81_c00152{left:210.666667pt;}
.xb7_c00152{left:215.040000pt;}
.x57_c00152{left:216.000000pt;}
.xb0_c00152{left:218.666667pt;}
.x2c_c00152{left:220.000000pt;}
.xd7_c00152{left:221.333333pt;}
.xa5_c00152{left:223.040000pt;}
.x4c_c00152{left:224.000000pt;}
.x6b_c00152{left:226.666667pt;}
.x25_c00152{left:229.333333pt;}
.x31_c00152{left:230.666667pt;}
.x44_c00152{left:234.293333pt;}
.x7d_c00152{left:235.626667pt;}
.x1a_c00152{left:237.333333pt;}
.x3a_c00152{left:238.666667pt;}
.xb8_c00152{left:240.000000pt;}
.xee_c00152{left:241.333333pt;}
.x11_c00152{left:242.666667pt;}
.x4d_c00152{left:243.626667pt;}
.x6c_c00152{left:244.573333pt;}
.x99_c00152{left:246.666667pt;}
.x26_c00152{left:248.000000pt;}
.x8_c00152{left:249.333333pt;}
.xd8_c00152{left:250.666667pt;}
.xc9_c00152{left:252.373333pt;}
.x7e_c00152{left:253.706667pt;}
.x76_c00152{left:255.040000pt;}
.x1b_c00152{left:256.000000pt;}
.xce_c00152{left:257.333333pt;}
.x3_c00152{left:260.000000pt;}
.xd2_c00152{left:262.666667pt;}
.xaa_c00152{left:264.000000pt;}
.x58_c00152{left:264.960000pt;}
.x2d_c00152{left:266.666667pt;}
.xa6_c00152{left:267.626667pt;}
.xb1_c00152{left:270.666667pt;}
.x45_c00152{left:271.626667pt;}
.x89_c00152{left:274.293333pt;}
.x7f_c00152{left:275.626667pt;}
.x12_c00152{left:279.040000pt;}
.xc1_c00152{left:280.000000pt;}
.xdd_c00152{left:281.333333pt;}
.xe1_c00152{left:284.000000pt;}
.x2e_c00152{left:284.960000pt;}
.x77_c00152{left:286.293333pt;}
.x8a_c00152{left:292.373333pt;}
.x9a_c00152{left:293.333333pt;}
.x62_c00152{left:294.293333pt;}
.x3b_c00152{left:295.626667pt;}
.xbf_c00152{left:298.293333pt;}
.x9_c00152{left:301.706667pt;}
.xab_c00152{left:303.626667pt;}
.x27_c00152{left:305.133333pt;}
.xcf_c00152{left:306.666667pt;}
.x13_c00152{left:309.333333pt;}
.x78_c00152{left:312.960000pt;}
.x9d_c00152{left:314.666667pt;}
.x4_c00152{left:317.706667pt;}
.xb2_c00152{left:320.373333pt;}
.xa_c00152{left:323.626667pt;}
.x3c_c00152{left:324.960000pt;}
.x4e_c00152{left:326.666667pt;}
.xac_c00152{left:328.960000pt;}
.x92_c00152{left:330.666667pt;}
.x46_c00152{left:332.373333pt;}
.xb9_c00152{left:334.666667pt;}
.x32_c00152{left:336.000000pt;}
.x59_c00152{left:337.706667pt;}
.xd9_c00152{left:340.000000pt;}
.x28_c00152{left:340.960000pt;}
.xa7_c00152{left:342.666667pt;}
.xef_c00152{left:347.040000pt;}
.xe9_c00152{left:348.000000pt;}
.x6d_c00152{left:352.373333pt;}
.x1_c00152{left:353.333333pt;}
.xb3_c00152{left:354.666667pt;}
.x4f_c00152{left:358.666667pt;}
.x33_c00152{left:361.333333pt;}
.x9e_c00152{left:362.666667pt;}
.x14_c00152{left:364.000000pt;}
.x93_c00152{left:365.333333pt;}
.x29_c00152{left:366.666667pt;}
.x82_c00152{left:368.000000pt;}
.x47_c00152{left:369.333333pt;}
.x68_c00152{left:370.666667pt;}
.x5a_c00152{left:372.000000pt;}
.xca_c00152{left:372.960000pt;}
.x2f_c00152{left:376.000000pt;}
.x3d_c00152{left:377.333333pt;}
.xde_c00152{left:379.040000pt;}
.x1c_c00152{left:381.333333pt;}
.xa8_c00152{left:382.293333pt;}
.x6e_c00152{left:384.000000pt;}
.x5_c00152{left:385.706667pt;}
.x8b_c00152{left:392.000000pt;}
.x69_c00152{left:392.960000pt;}
.x15_c00152{left:396.000000pt;}
.xb_c00152{left:397.706667pt;}
.x1d_c00152{left:399.240000pt;}
.xad_c00152{left:401.333333pt;}
.x5b_c00152{left:402.293333pt;}
.xc2_c00152{left:404.373333pt;}
.x50_c00152{left:408.000000pt;}
.x34_c00152{left:408.960000pt;}
.xda_c00152{left:410.666667pt;}
.x5c_c00152{left:413.333333pt;}
.x48_c00152{left:418.666667pt;}
.x2a_c00152{left:421.133333pt;}
.x30_c00152{left:424.960000pt;}
.xc3_c00152{left:426.666667pt;}
.x16_c00152{left:428.000000pt;}
.x63_c00152{left:428.960000pt;}
.x9f_c00152{left:431.040000pt;}
.x8c_c00152{left:433.333333pt;}
.x3e_c00152{left:434.666667pt;}
.xba_c00152{left:435.626667pt;}
.xf0_c00152{left:437.333333pt;}
.x51_c00152{left:438.293333pt;}
.x17_c00152{left:441.706667pt;}
.x1e_c00152{left:448.760000pt;}
.xe4_c00152{left:449.706667pt;}
.x6_c00152{left:452.000000pt;}
.xbb_c00152{left:453.333333pt;}
.x6a_c00152{left:456.000000pt;}
.x2b_c00152{left:457.706667pt;}
.x83_c00152{left:461.333333pt;}
.x35_c00152{left:463.040000pt;}
.xb4_c00152{left:464.000000pt;}
.xc_c00152{left:464.960000pt;}
.xc4_c00152{left:467.426667pt;}
.x94_c00152{left:468.373333pt;}
.x8d_c00152{left:470.293333pt;}
.xe5_c00152{left:473.333333pt;}
.x49_c00152{left:475.040000pt;}
.x3f_c00152{left:476.000000pt;}
.x6f_c00152{left:480.000000pt;}
.xd3_c00152{left:480.960000pt;}
.xd_c00152{left:483.040000pt;}
.x5d_c00152{left:484.373333pt;}
.xdb_c00152{left:485.333333pt;}
.xbc_c00152{left:488.000000pt;}
.xc5_c00152{left:489.706667pt;}
.x84_c00152{left:492.373333pt;}
.x7_c00152{left:494.466667pt;}
.x36_c00152{left:497.333333pt;}
.xe_c00152{left:498.666667pt;}
.xf1_c00152{left:500.960000pt;}
.x1f_c00152{left:502.666667pt;}
.xbd_c00152{left:505.333333pt;}
.x40_c00152{left:506.666667pt;}
.xcb_c00152{left:509.706667pt;}
.x70_c00152{left:510.666667pt;}
.xc6_c00152{left:513.706667pt;}
.xb5_c00152{left:516.000000pt;}
.xd4_c00152{left:517.333333pt;}
.x52_c00152{left:524.373333pt;}
.xa0_c00152{left:525.706667pt;}
.x95_c00152{left:530.666667pt;}
.xea_c00152{left:532.000000pt;}
.x71_c00152{left:536.000000pt;}
.xcc_c00152{left:537.333333pt;}
.x79_c00152{left:541.333333pt;}
.x8e_c00152{left:543.040000pt;}
.x20_c00152{left:545.333333pt;}
.x5e_c00152{left:548.373333pt;}
.xa1_c00152{left:549.706667pt;}
.x53_c00152{left:551.040000pt;}
.xdc_c00152{left:553.333333pt;}
.xbe_c00152{left:554.666667pt;}
.x37_c00152{left:556.960000pt;}
.xc7_c00152{left:558.666667pt;}
.x41_c00152{left:560.000000pt;}
.x96_c00152{left:562.293333pt;}
.x4a_c00152{left:564.000000pt;}
.x21_c00152{left:566.666667pt;}
.xae_c00152{left:570.666667pt;}
.x72_c00152{left:571.626667pt;}
.xe6_c00152{left:573.333333pt;}
.x5f_c00152{left:574.666667pt;}
.x9b_c00152{left:576.000000pt;}
.xa2_c00152{left:576.960000pt;}
.xf2_c00152{left:578.666667pt;}
.x97_c00152{left:580.373333pt;}
.xb6_c00152{left:581.333333pt;}
.x7a_c00152{left:582.293333pt;}
.x54_c00152{left:584.373333pt;}
.xdf_c00152{left:586.666667pt;}
.xe7_c00152{left:588.000000pt;}
.x64_c00152{left:589.333333pt;}
.x42_c00152{left:590.666667pt;}
.xa3_c00152{left:595.040000pt;}
.xd5_c00152{left:596.000000pt;}
.x73_c00152{left:597.706667pt;}
.x38_c00152{left:600.373333pt;}
.x85_c00152{left:602.666667pt;}
.x98_c00152{left:605.333333pt;}
.x22_c00152{left:610.293333pt;}
.xeb_c00152{left:611.626667pt;}
.x86_c00152{left:613.706667pt;}
.x60_c00152{left:614.666667pt;}
.x55_c00152{left:619.040000pt;}
.xc8_c00152{left:620.373333pt;}
.x7b_c00152{left:622.666667pt;}
.x4b_c00152{left:624.960000pt;}
.x2_c00152{left:627.040000pt;}
.xcd_c00152{left:629.706667pt;}
.xd6_c00152{left:631.040000pt;}
.xe0_c00152{left:634.666667pt;}
.xe8_c00152{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_321b510083350cb8a3a243e1.woff2')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:1.688965;font-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_c00153{transform:matrix(0.357607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357607,0.000000,0.000000,0.250000,0,0);}
.m5_c00153{transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);}
.m4_c00153{transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);}
.m30_c00153{transform:matrix(0.385436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385436,0.000000,0.000000,0.250000,0,0);}
.m31_c00153{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.m1c_c00153{transform:matrix(0.397032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397032,0.000000,0.000000,0.250000,0,0);}
.m6_c00153{transform:matrix(0.398423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398423,0.000000,0.000000,0.250000,0,0);}
.m11_c00153{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.m21_c00153{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.m19_c00153{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.m32_c00153{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.mb_c00153{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.mf_c00153{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m12_c00153{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.m1a_c00153{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m7_c00153{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m3_c00153{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m16_c00153{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m14_c00153{transform:matrix(0.448235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448235,0.000000,0.000000,0.250000,0,0);}
.m2_c00153{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.m9_c00153{transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);}
.m17_c00153{transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);}
.m29_c00153{transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);}
.m15_c00153{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m23_c00153{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m1e_c00153{transform:matrix(0.483529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483529,0.000000,0.000000,0.250000,0,0);}
.m0_c00153{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m1b_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);}
.m10_c00153{transform:matrix(0.517647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517647,0.000000,0.000000,0.250000,0,0);}
.m2d_c00153{transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);}
.m8_c00153{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m26_c00153{transform:matrix(0.521765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521765,0.000000,0.000000,0.250000,0,0);}
.m28_c00153{transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);}
.ma_c00153{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);}
.m2b_c00153{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m20_c00153{transform:matrix(0.534706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534706,0.000000,0.000000,0.250000,0,0);}
.m2f_c00153{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m2c_c00153{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m18_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);}
.m13_c00153{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m25_c00153{transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);}
.m22_c00153{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.me_c00153{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m1d_c00153{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.md_c00153{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m1_c00153{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m2a_c00153{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m2e_c00153{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m27_c00153{transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);}
.m24_c00153{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);}
.mc_c00153{transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);}
.v0_c00153{vertical-align:0.000000px;}
.ls0_c00153{letter-spacing:0.000000px;}
.sc__c00153{text-shadow:none;}
.sc0_c00153{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00153{-webkit-text-stroke:0px transparent;}
.sc0_c00153{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00153{word-spacing:-6.014710px;}
.ws1_c00153{word-spacing:0.000000px;}
.fc0_c00153{color:transparent;}
.fs4_c00153{font-size:18.720000px;}
.fs1_c00153{font-size:20.400000px;}
.fs2_c00153{font-size:25.500000px;}
.fs0_c00153{font-size:28.920000px;}
.fs3_c00153{font-size:32.340000px;}
.y0_c00153{bottom:0.000000px;}
.y4_c00153{bottom:266.970000px;}
.y5_c00153{bottom:267.825000px;}
.y8_c00153{bottom:268.050000px;}
.y3_c00153{bottom:268.905000px;}
.y6_c00153{bottom:269.970000px;}
.y11_c00153{bottom:281.325000px;}
.y9_c00153{bottom:282.825000px;}
.y7_c00153{bottom:283.905000px;}
.yc_c00153{bottom:284.130000px;}
.yb_c00153{bottom:284.970000px;}
.ya_c00153{bottom:286.050000px;}
.yf_c00153{bottom:297.825000px;}
.y12_c00153{bottom:298.050000px;}
.yd_c00153{bottom:298.905000px;}
.y10_c00153{bottom:299.970000px;}
.ye_c00153{bottom:301.050000px;}
.y13_c00153{bottom:312.825000px;}
.y1e_c00153{bottom:314.130000px;}
.y14_c00153{bottom:314.970000px;}
.y1d_c00153{bottom:316.050000px;}
.y15_c00153{bottom:326.325000px;}
.y16_c00153{bottom:326.550000px;}
.y17_c00153{bottom:327.405000px;}
.y1b_c00153{bottom:328.470000px;}
.y1a_c00153{bottom:328.905000px;}
.y1c_c00153{bottom:329.550000px;}
.y19_c00153{bottom:329.970000px;}
.y18_c00153{bottom:331.050000px;}
.y1_c00153{bottom:1099.905000px;}
.y2_c00153{bottom:1102.050000px;}
.h5_c00153{height:23.025234px;}
.h2_c00153{height:25.091602px;}
.h3_c00153{height:31.364502px;}
.h1_c00153{height:35.571035px;}
.h4_c00153{height:39.777568px;}
.h0_c00153{height:1335.000000px;}
.w0_c00153{width:880.500000px;}
.x0_c00153{left:0.000000px;}
.x1d_c00153{left:151.500000px;}
.x1_c00153{left:153.420000px;}
.x23_c00153{left:181.920000px;}
.x1e_c00153{left:195.000000px;}
.x1b_c00153{left:205.080000px;}
.x2e_c00153{left:210.000000px;}
.x2f_c00153{left:226.500000px;}
.xb_c00153{left:234.420000px;}
.xc_c00153{left:246.855000px;}
.x5_c00153{left:248.580000px;}
.xd_c00153{left:261.000000px;}
.x24_c00153{left:268.920000px;}
.x20_c00153{left:277.500000px;}
.xe_c00153{left:280.500000px;}
.x25_c00153{left:286.500000px;}
.x30_c00153{left:289.920000px;}
.x6_c00153{left:309.420000px;}
.xf_c00153{left:324.000000px;}
.x15_c00153{left:339.420000px;}
.x21_c00153{left:360.000000px;}
.x26_c00153{left:366.000000px;}
.x16_c00153{left:386.580000px;}
.x31_c00153{left:388.080000px;}
.x8_c00153{left:391.080000px;}
.x2_c00153{left:400.500000px;}
.x32_c00153{left:426.420000px;}
.x27_c00153{left:444.000000px;}
.x12_c00153{left:445.080000px;}
.x33_c00153{left:453.000000px;}
.x9_c00153{left:456.000000px;}
.x1f_c00153{left:459.000000px;}
.x13_c00153{left:468.420000px;}
.x3_c00153{left:472.080000px;}
.x19_c00153{left:473.580000px;}
.x28_c00153{left:493.920000px;}
.x29_c00153{left:531.000000px;}
.x14_c00153{left:535.500000px;}
.x4_c00153{left:544.080000px;}
.x10_c00153{left:550.920000px;}
.x34_c00153{left:556.080000px;}
.x1a_c00153{left:558.420000px;}
.x2a_c00153{left:585.000000px;}
.x7_c00153{left:590.580000px;}
.x35_c00153{left:592.500000px;}
.x11_c00153{left:597.000000px;}
.x17_c00153{left:607.500000px;}
.x22_c00153{left:609.420000px;}
.x2b_c00153{left:658.500000px;}
.x18_c00153{left:666.420000px;}
.xa_c00153{left:681.000000px;}
.x1c_c00153{left:683.580000px;}
.x2c_c00153{left:699.000000px;}
.x2d_c00153{left:716.580000px;}
@media print{
.v0_c00153{vertical-align:0.000000pt;}
.ls0_c00153{letter-spacing:0.000000pt;}
.ws0_c00153{word-spacing:-5.346409pt;}
.ws1_c00153{word-spacing:0.000000pt;}
.fs4_c00153{font-size:16.640000pt;}
.fs1_c00153{font-size:18.133333pt;}
.fs2_c00153{font-size:22.666667pt;}
.fs0_c00153{font-size:25.706667pt;}
.fs3_c00153{font-size:28.746667pt;}
.y0_c00153{bottom:0.000000pt;}
.y4_c00153{bottom:237.306667pt;}
.y5_c00153{bottom:238.066667pt;}
.y8_c00153{bottom:238.266667pt;}
.y3_c00153{bottom:239.026667pt;}
.y6_c00153{bottom:239.973333pt;}
.y11_c00153{bottom:250.066667pt;}
.y9_c00153{bottom:251.400000pt;}
.y7_c00153{bottom:252.360000pt;}
.yc_c00153{bottom:252.560000pt;}
.yb_c00153{bottom:253.306667pt;}
.ya_c00153{bottom:254.266667pt;}
.yf_c00153{bottom:264.733333pt;}
.y12_c00153{bottom:264.933333pt;}
.yd_c00153{bottom:265.693333pt;}
.y10_c00153{bottom:266.640000pt;}
.ye_c00153{bottom:267.600000pt;}
.y13_c00153{bottom:278.066667pt;}
.y1e_c00153{bottom:279.226667pt;}
.y14_c00153{bottom:279.973333pt;}
.y1d_c00153{bottom:280.933333pt;}
.y15_c00153{bottom:290.066667pt;}
.y16_c00153{bottom:290.266667pt;}
.y17_c00153{bottom:291.026667pt;}
.y1b_c00153{bottom:291.973333pt;}
.y1a_c00153{bottom:292.360000pt;}
.y1c_c00153{bottom:292.933333pt;}
.y19_c00153{bottom:293.306667pt;}
.y18_c00153{bottom:294.266667pt;}
.y1_c00153{bottom:977.693333pt;}
.y2_c00153{bottom:979.600000pt;}
.h5_c00153{height:20.466875pt;}
.h2_c00153{height:22.303646pt;}
.h3_c00153{height:27.879557pt;}
.h1_c00153{height:31.618698pt;}
.h4_c00153{height:35.357839pt;}
.h0_c00153{height:1186.666667pt;}
.w0_c00153{width:782.666667pt;}
.x0_c00153{left:0.000000pt;}
.x1d_c00153{left:134.666667pt;}
.x1_c00153{left:136.373333pt;}
.x23_c00153{left:161.706667pt;}
.x1e_c00153{left:173.333333pt;}
.x1b_c00153{left:182.293333pt;}
.x2e_c00153{left:186.666667pt;}
.x2f_c00153{left:201.333333pt;}
.xb_c00153{left:208.373333pt;}
.xc_c00153{left:219.426667pt;}
.x5_c00153{left:220.960000pt;}
.xd_c00153{left:232.000000pt;}
.x24_c00153{left:239.040000pt;}
.x20_c00153{left:246.666667pt;}
.xe_c00153{left:249.333333pt;}
.x25_c00153{left:254.666667pt;}
.x30_c00153{left:257.706667pt;}
.x6_c00153{left:275.040000pt;}
.xf_c00153{left:288.000000pt;}
.x15_c00153{left:301.706667pt;}
.x21_c00153{left:320.000000pt;}
.x26_c00153{left:325.333333pt;}
.x16_c00153{left:343.626667pt;}
.x31_c00153{left:344.960000pt;}
.x8_c00153{left:347.626667pt;}
.x2_c00153{left:356.000000pt;}
.x32_c00153{left:379.040000pt;}
.x27_c00153{left:394.666667pt;}
.x12_c00153{left:395.626667pt;}
.x33_c00153{left:402.666667pt;}
.x9_c00153{left:405.333333pt;}
.x1f_c00153{left:408.000000pt;}
.x13_c00153{left:416.373333pt;}
.x3_c00153{left:419.626667pt;}
.x19_c00153{left:420.960000pt;}
.x28_c00153{left:439.040000pt;}
.x29_c00153{left:472.000000pt;}
.x14_c00153{left:476.000000pt;}
.x4_c00153{left:483.626667pt;}
.x10_c00153{left:489.706667pt;}
.x34_c00153{left:494.293333pt;}
.x1a_c00153{left:496.373333pt;}
.x2a_c00153{left:520.000000pt;}
.x7_c00153{left:524.960000pt;}
.x35_c00153{left:526.666667pt;}
.x11_c00153{left:530.666667pt;}
.x17_c00153{left:540.000000pt;}
.x22_c00153{left:541.706667pt;}
.x2b_c00153{left:585.333333pt;}
.x18_c00153{left:592.373333pt;}
.xa_c00153{left:605.333333pt;}
.x1c_c00153{left:607.626667pt;}
.x2c_c00153{left:621.333333pt;}
.x2d_c00153{left:636.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_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_a7795f241fd02c89666ade01.woff2')format("woff");}.ff1_c00154{font-family:ff1_c00154;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m71_c00154{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);}
.m4a_c00154{transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);}
.m9_c00154{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.m2f_c00154{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m37_c00154{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m4f_c00154{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m12_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);}
.m5a_c00154{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m72_c00154{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m26_c00154{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m8b_c00154{transform:matrix(0.394712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394712,0.000000,0.000000,0.250000,0,0);}
.m5f_c00154{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m6d_c00154{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mb_c00154{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m81_c00154{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.m92_c00154{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m27_c00154{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m23_c00154{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m46_c00154{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.m4_c00154{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.mf_c00154{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m64_c00154{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m4b_c00154{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m82_c00154{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.m1d_c00154{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m7a_c00154{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.m8f_c00154{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m8_c00154{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m50_c00154{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m52_c00154{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m28_c00154{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.mc_c00154{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.m65_c00154{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m32_c00154{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m3e_c00154{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m6e_c00154{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mb4_c00154{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m1e_c00154{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m53_c00154{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m61_c00154{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.ma3_c00154{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);}
.m63_c00154{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mc2_c00154{transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);}
.m67_c00154{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m2b_c00154{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m3a_c00154{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.md_c00154{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m86_c00154{transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);}
.m25_c00154{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m5b_c00154{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m79_c00154{transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);}
.m0_c00154{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m35_c00154{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m74_c00154{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.maa_c00154{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mc3_c00154{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.m56_c00154{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.mbe_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);}
.m57_c00154{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m9d_c00154{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m85_c00154{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00154{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.m10_c00154{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.mb0_c00154{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.m29_c00154{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m2_c00154{transform:matrix(0.468908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468908,0.000000,0.000000,0.250000,0,0);}
.m42_c00154{transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);}
.m6_c00154{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.mb6_c00154{transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);}
.maf_c00154{transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);}
.m39_c00154{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m14_c00154{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m55_c00154{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m9c_c00154{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m5c_c00154{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m1a_c00154{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.ma2_c00154{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m4c_c00154{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m7_c00154{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m15_c00154{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m21_c00154{transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);}
.m11_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);}
.m98_c00154{transform:matrix(0.504006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504006,0.000000,0.000000,0.250000,0,0);}
.m36_c00154{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.ma_c00154{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m8e_c00154{transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);}
.m4e_c00154{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.m6c_c00154{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m51_c00154{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m7f_c00154{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m2c_c00154{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m6f_c00154{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m8a_c00154{transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);}
.m66_c00154{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mad_c00154{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00154{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mab_c00154{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m34_c00154{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m54_c00154{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m2e_c00154{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m22_c00154{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m89_c00154{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m2d_c00154{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m17_c00154{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m33_c00154{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m5_c00154{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m70_c00154{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mae_c00154{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m31_c00154{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m88_c00154{transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);}
.m3b_c00154{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m8d_c00154{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m38_c00154{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m3f_c00154{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m47_c00154{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m75_c00154{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m9e_c00154{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m20_c00154{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.mba_c00154{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m8c_c00154{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m2a_c00154{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m69_c00154{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.me_c00154{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.mb3_c00154{transform:matrix(0.572115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572115,0.000000,0.000000,0.250000,0,0);}
.m62_c00154{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.m3c_c00154{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.ma7_c00154{transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);}
.ma6_c00154{transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);}
.mb9_c00154{transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);}
.m40_c00154{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m44_c00154{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m1c_c00154{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m41_c00154{transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);}
.m7e_c00154{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m58_c00154{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m16_c00154{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m1_c00154{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m77_c00154{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m91_c00154{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m3_c00154{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.m90_c00154{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m18_c00154{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m94_c00154{transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);}
.m45_c00154{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m84_c00154{transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);}
.m5e_c00154{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m7c_c00154{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);}
.ma5_c00154{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m13_c00154{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m80_c00154{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);}
.m43_c00154{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.mc0_c00154{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.m60_c00154{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m7d_c00154{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);}
.m49_c00154{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m99_c00154{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.mc5_c00154{transform:matrix(0.657828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657828,0.000000,0.000000,0.250000,0,0);}
.m6a_c00154{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m93_c00154{transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);}
.ma0_c00154{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m83_c00154{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m68_c00154{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m7b_c00154{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m96_c00154{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.m87_c00154{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m97_c00154{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mbf_c00154{transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);}
.m19_c00154{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.m78_c00154{transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);}
.mb8_c00154{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.m4d_c00154{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mc1_c00154{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.ma9_c00154{transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);}
.m9f_c00154{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.m9b_c00154{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m1b_c00154{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m48_c00154{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);}
.m59_c00154{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.mb7_c00154{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.m73_c00154{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.ma1_c00154{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.mbc_c00154{transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);}
.mbb_c00154{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.m6b_c00154{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.mb5_c00154{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.m95_c00154{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m30_c00154{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mac_c00154{transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);}
.ma4_c00154{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.mb2_c00154{transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);}
.mc4_c00154{transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);}
.m76_c00154{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.ma8_c00154{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mb1_c00154{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.m5d_c00154{transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);}
.m9a_c00154{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m1f_c00154{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m24_c00154{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v2_c00154{vertical-align:-6.000000px;}
.v0_c00154{vertical-align:0.000000px;}
.v1_c00154{vertical-align:6.000000px;}
.ls1_c00154{letter-spacing:0.000000px;}
.ls0_c00154{letter-spacing:51.359972px;}
.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;}
}
.wsb_c00154{word-spacing:-59.314052px;}
.ws0_c00154{word-spacing:-2.140701px;}
.ws11_c00154{word-spacing:0.000000px;}
.wse_c00154{word-spacing:11.113860px;}
.wsc_c00154{word-spacing:11.661937px;}
.ws3_c00154{word-spacing:17.617871px;}
.ws4_c00154{word-spacing:19.620812px;}
.ws2_c00154{word-spacing:22.772248px;}
.ws6_c00154{word-spacing:23.728109px;}
.wsf_c00154{word-spacing:23.767013px;}
.ws10_c00154{word-spacing:31.025931px;}
.wsa_c00154{word-spacing:33.638400px;}
.ws1_c00154{word-spacing:36.326509px;}
.ws5_c00154{word-spacing:38.705522px;}
.wsd_c00154{word-spacing:39.052735px;}
.ws7_c00154{word-spacing:49.006362px;}
.ws9_c00154{word-spacing:51.676951px;}
.ws8_c00154{word-spacing:76.250880px;}
._2_c00154{margin-left:-51.359972px;}
._0_c00154{width:29.577833px;}
._3_c00154{width:33.837252px;}
._1_c00154{width:59.631031px;}
.fc0_c00154{color:transparent;}
.fs6_c00154{font-size:3.420000px;}
.fs8_c00154{font-size:11.880000px;}
.fs7_c00154{font-size:13.620000px;}
.fs5_c00154{font-size:18.720000px;}
.fs1_c00154{font-size:20.400000px;}
.fs4_c00154{font-size:25.500000px;}
.fs0_c00154{font-size:28.920000px;}
.fs3_c00154{font-size:32.340000px;}
.fs2_c00154{font-size:35.700000px;}
.y0_c00154{bottom:0.000000px;}
.y47_c00154{bottom:252.405000px;}
.y43_c00154{bottom:252.825000px;}
.y44_c00154{bottom:253.470000px;}
.y40_c00154{bottom:254.745000px;}
.y41_c00154{bottom:254.970000px;}
.y45_c00154{bottom:255.630000px;}
.y46_c00154{bottom:255.825000px;}
.y42_c00154{bottom:256.905000px;}
.y3a_c00154{bottom:274.245000px;}
.y3d_c00154{bottom:274.470000px;}
.y3e_c00154{bottom:275.970000px;}
.y3c_c00154{bottom:276.405000px;}
.y3b_c00154{bottom:276.420000px;}
.y3f_c00154{bottom:276.630000px;}
.y39_c00154{bottom:301.905000px;}
.y38_c00154{bottom:302.970000px;}
.y35_c00154{bottom:315.825000px;}
.y37_c00154{bottom:316.050000px;}
.y33_c00154{bottom:316.905000px;}
.y32_c00154{bottom:317.130000px;}
.y34_c00154{bottom:317.970000px;}
.y36_c00154{bottom:319.050000px;}
.y30_c00154{bottom:329.970000px;}
.y2e_c00154{bottom:330.405000px;}
.y2d_c00154{bottom:330.825000px;}
.y31_c00154{bottom:331.905000px;}
.y2c_c00154{bottom:332.970000px;}
.y2b_c00154{bottom:333.195000px;}
.y2f_c00154{bottom:334.050000px;}
.y2a_c00154{bottom:345.825000px;}
.y27_c00154{bottom:346.905000px;}
.y25_c00154{bottom:347.130000px;}
.y28_c00154{bottom:347.550000px;}
.y29_c00154{bottom:347.970000px;}
.y26_c00154{bottom:349.050000px;}
.y24_c00154{bottom:373.245000px;}
.y23_c00154{bottom:375.405000px;}
.y21_c00154{bottom:392.745000px;}
.y22_c00154{bottom:393.630000px;}
.y1f_c00154{bottom:394.905000px;}
.y20_c00154{bottom:394.920000px;}
.y1e_c00154{bottom:413.325000px;}
.y1c_c00154{bottom:414.405000px;}
.y1d_c00154{bottom:414.420000px;}
.y1b_c00154{bottom:430.905000px;}
.y18_c00154{bottom:431.745000px;}
.y1a_c00154{bottom:432.825000px;}
.y19_c00154{bottom:433.920000px;}
.y14_c00154{bottom:451.245000px;}
.y17_c00154{bottom:452.325000px;}
.y16_c00154{bottom:453.405000px;}
.y15_c00154{bottom:454.920000px;}
.y10_c00154{bottom:478.470000px;}
.yc_c00154{bottom:478.905000px;}
.y13_c00154{bottom:479.550000px;}
.yd_c00154{bottom:479.970000px;}
.yf_c00154{bottom:480.405000px;}
.y12_c00154{bottom:480.630000px;}
.ye_c00154{bottom:481.050000px;}
.y11_c00154{bottom:481.470000px;}
.y8_c00154{bottom:498.405000px;}
.y7_c00154{bottom:498.825000px;}
.yb_c00154{bottom:499.050000px;}
.ya_c00154{bottom:499.905000px;}
.y9_c00154{bottom:500.970000px;}
.y6_c00154{bottom:523.905000px;}
.y3_c00154{bottom:526.245000px;}
.y5_c00154{bottom:527.325000px;}
.y4_c00154{bottom:528.405000px;}
.yc8_c00154{bottom:567.630000px;}
.yc7_c00154{bottom:568.695000px;}
.yc5_c00154{bottom:569.130000px;}
.yc6_c00154{bottom:570.195000px;}
.yc2_c00154{bottom:582.195000px;}
.yc3_c00154{bottom:583.275000px;}
.yc1_c00154{bottom:583.695000px;}
.yc4_c00154{bottom:583.920000px;}
.ybc_c00154{bottom:595.695000px;}
.ybf_c00154{bottom:596.775000px;}
.ybd_c00154{bottom:597.195000px;}
.yc0_c00154{bottom:597.420000px;}
.ybe_c00154{bottom:601.275000px;}
.yb9_c00154{bottom:608.550000px;}
.ybb_c00154{bottom:609.195000px;}
.yb8_c00154{bottom:610.275000px;}
.yb7_c00154{bottom:610.695000px;}
.yba_c00154{bottom:610.920000px;}
.yb5_c00154{bottom:623.130000px;}
.yb3_c00154{bottom:623.775000px;}
.yb4_c00154{bottom:624.195000px;}
.yb6_c00154{bottom:624.420000px;}
.yb2_c00154{bottom:625.695000px;}
.yb1_c00154{bottom:637.695000px;}
.yaf_c00154{bottom:638.130000px;}
.yb0_c00154{bottom:639.195000px;}
.yae_c00154{bottom:651.630000px;}
.yac_c00154{bottom:652.695000px;}
.yad_c00154{bottom:652.920000px;}
.yab_c00154{bottom:665.130000px;}
.ya9_c00154{bottom:666.195000px;}
.yaa_c00154{bottom:666.420000px;}
.ya8_c00154{bottom:666.630000px;}
.ya6_c00154{bottom:678.630000px;}
.ya3_c00154{bottom:679.695000px;}
.ya7_c00154{bottom:679.920000px;}
.ya4_c00154{bottom:680.130000px;}
.ya5_c00154{bottom:681.420000px;}
.ya0_c00154{bottom:692.130000px;}
.y9d_c00154{bottom:692.550000px;}
.ya1_c00154{bottom:693.195000px;}
.ya2_c00154{bottom:693.420000px;}
.y9e_c00154{bottom:694.695000px;}
.y9f_c00154{bottom:694.920000px;}
.y9c_c00154{bottom:706.695000px;}
.y9a_c00154{bottom:707.130000px;}
.y9b_c00154{bottom:708.420000px;}
.y98_c00154{bottom:720.630000px;}
.y97_c00154{bottom:721.695000px;}
.y99_c00154{bottom:721.920000px;}
.y92_c00154{bottom:734.130000px;}
.y94_c00154{bottom:735.195000px;}
.y96_c00154{bottom:735.420000px;}
.y95_c00154{bottom:735.630000px;}
.y93_c00154{bottom:736.275000px;}
.y90_c00154{bottom:748.695000px;}
.y91_c00154{bottom:748.920000px;}
.y8e_c00154{bottom:749.130000px;}
.y8f_c00154{bottom:750.420000px;}
.y89_c00154{bottom:761.130000px;}
.y8c_c00154{bottom:762.195000px;}
.y8d_c00154{bottom:762.420000px;}
.y8a_c00154{bottom:762.630000px;}
.y8b_c00154{bottom:763.920000px;}
.y88_c00154{bottom:777.195000px;}
.y86_c00154{bottom:789.195000px;}
.y85_c00154{bottom:789.630000px;}
.y84_c00154{bottom:790.695000px;}
.y87_c00154{bottom:790.920000px;}
.y82_c00154{bottom:803.130000px;}
.y81_c00154{bottom:804.195000px;}
.y83_c00154{bottom:804.420000px;}
.y7f_c00154{bottom:817.695000px;}
.y80_c00154{bottom:817.920000px;}
.y7e_c00154{bottom:818.130000px;}
.y7c_c00154{bottom:830.130000px;}
.y7b_c00154{bottom:831.195000px;}
.y7d_c00154{bottom:831.420000px;}
.y79_c00154{bottom:844.695000px;}
.y78_c00154{bottom:845.130000px;}
.y77_c00154{bottom:846.195000px;}
.y7a_c00154{bottom:846.420000px;}
.y73_c00154{bottom:857.550000px;}
.y76_c00154{bottom:858.195000px;}
.y72_c00154{bottom:858.630000px;}
.y74_c00154{bottom:859.695000px;}
.y75_c00154{bottom:859.920000px;}
.y70_c00154{bottom:872.130000px;}
.y6f_c00154{bottom:873.195000px;}
.y71_c00154{bottom:873.420000px;}
.y6d_c00154{bottom:885.630000px;}
.y6c_c00154{bottom:886.695000px;}
.y6e_c00154{bottom:886.920000px;}
.y6a_c00154{bottom:899.130000px;}
.y68_c00154{bottom:900.195000px;}
.y6b_c00154{bottom:900.420000px;}
.y69_c00154{bottom:900.630000px;}
.y65_c00154{bottom:912.630000px;}
.y67_c00154{bottom:913.695000px;}
.y64_c00154{bottom:914.130000px;}
.y63_c00154{bottom:915.195000px;}
.y66_c00154{bottom:915.420000px;}
.y61_c00154{bottom:927.630000px;}
.y60_c00154{bottom:928.695000px;}
.y62_c00154{bottom:928.920000px;}
.y5e_c00154{bottom:941.130000px;}
.y5d_c00154{bottom:942.195000px;}
.y5f_c00154{bottom:943.920000px;}
.y5c_c00154{bottom:955.695000px;}
.y5a_c00154{bottom:956.130000px;}
.y59_c00154{bottom:957.195000px;}
.y5b_c00154{bottom:957.420000px;}
.y58_c00154{bottom:969.195000px;}
.y54_c00154{bottom:986.130000px;}
.y56_c00154{bottom:987.195000px;}
.y57_c00154{bottom:987.630000px;}
.y55_c00154{bottom:988.695000px;}
.y53_c00154{bottom:1008.825000px;}
.y52_c00154{bottom:1010.970000px;}
.y4e_c00154{bottom:1023.825000px;}
.y50_c00154{bottom:1024.905000px;}
.y51_c00154{bottom:1025.130000px;}
.y4f_c00154{bottom:1027.050000px;}
.y4b_c00154{bottom:1039.905000px;}
.y4a_c00154{bottom:1040.550000px;}
.y4d_c00154{bottom:1040.970000px;}
.y4c_c00154{bottom:1042.050000px;}
.y49_c00154{bottom:1064.550000px;}
.y48_c00154{bottom:1066.050000px;}
.y1_c00154{bottom:1099.905000px;}
.y2_c00154{bottom:1100.550000px;}
.h7_c00154{height:4.206533px;}
.ha_c00154{height:14.612168px;}
.h8_c00154{height:16.752334px;}
.h9_c00154{height:22.752334px;}
.h6_c00154{height:23.025234px;}
.h2_c00154{height:25.091602px;}
.h5_c00154{height:31.364502px;}
.h1_c00154{height:35.571035px;}
.h4_c00154{height:39.777568px;}
.h3_c00154{height:43.910303px;}
.h0_c00154{height:1335.000000px;}
.w0_c00154{width:880.500000px;}
.x0_c00154{left:0.000000px;}
.x3b_c00154{left:151.500000px;}
.x4b_c00154{left:153.000000px;}
.x4c_c00154{left:163.500000px;}
.x14_c00154{left:164.580000px;}
.x21_c00154{left:166.920000px;}
.x27_c00154{left:168.000000px;}
.x62_c00154{left:178.500000px;}
.x42_c00154{left:183.000000px;}
.x9_c00154{left:195.420000px;}
.x4d_c00154{left:197.580000px;}
.x22_c00154{left:207.420000px;}
.x4e_c00154{left:225.420000px;}
.x74_c00154{left:226.500000px;}
.x6b_c00154{left:231.420000px;}
.x43_c00154{left:232.500000px;}
.x9e_c00154{left:234.000000px;}
.x95_c00154{left:235.920000px;}
.x7e_c00154{left:246.000000px;}
.x15_c00154{left:247.500000px;}
.x86_c00154{left:248.580000px;}
.x56_c00154{left:250.500000px;}
.x31_c00154{left:252.000000px;}
.x3c_c00154{left:254.580000px;}
.xa_c00154{left:257.580000px;}
.x2e_c00154{left:259.500000px;}
.x9b_c00154{left:262.080000px;}
.xa0_c00154{left:265.500000px;}
.x23_c00154{left:267.000000px;}
.xa1_c00154{left:270.000000px;}
.x99_c00154{left:271.500000px;}
.x32_c00154{left:274.080000px;}
.x96_c00154{left:275.580000px;}
.x28_c00154{left:279.000000px;}
.x2f_c00154{left:280.500000px;}
.x6c_c00154{left:282.000000px;}
.xb_c00154{left:284.580000px;}
.x24_c00154{left:288.000000px;}
.x8c_c00154{left:289.500000px;}
.x3_c00154{left:290.580000px;}
.xa3_c00154{left:292.500000px;}
.x98_c00154{left:293.580000px;}
.x4f_c00154{left:297.420000px;}
.x16_c00154{left:299.355000px;}
.x57_c00154{left:303.000000px;}
.x44_c00154{left:307.500000px;}
.x7f_c00154{left:311.580000px;}
.x17_c00154{left:313.500000px;}
.xa7_c00154{left:321.000000px;}
.x50_c00154{left:324.000000px;}
.x9a_c00154{left:325.920000px;}
.xa8_c00154{left:328.920000px;}
.xa5_c00154{left:330.000000px;}
.x18_c00154{left:331.500000px;}
.xa6_c00154{left:334.500000px;}
.xc_c00154{left:337.080000px;}
.x58_c00154{left:339.000000px;}
.x45_c00154{left:341.580000px;}
.x29_c00154{left:343.275000px;}
.x33_c00154{left:348.000000px;}
.x25_c00154{left:349.500000px;}
.x63_c00154{left:352.920000px;}
.x80_c00154{left:358.500000px;}
.x46_c00154{left:360.000000px;}
.x30_c00154{left:361.080000px;}
.x75_c00154{left:363.420000px;}
.xd_c00154{left:364.500000px;}
.x34_c00154{left:367.500000px;}
.x19_c00154{left:372.420000px;}
.x7a_c00154{left:376.500000px;}
.x51_c00154{left:378.000000px;}
.x2a_c00154{left:384.000000px;}
.x59_c00154{left:385.500000px;}
.x47_c00154{left:387.420000px;}
.x89_c00154{left:388.500000px;}
.x76_c00154{left:390.000000px;}
.x90_c00154{left:393.000000px;}
.x2_c00154{left:396.000000px;}
.x97_c00154{left:397.500000px;}
.x4_c00154{left:402.420000px;}
.x1a_c00154{left:408.000000px;}
.x26_c00154{left:411.000000px;}
.x2b_c00154{left:412.500000px;}
.x64_c00154{left:414.420000px;}
.x3d_c00154{left:415.920000px;}
.xe_c00154{left:421.080000px;}
.x52_c00154{left:422.580000px;}
.x87_c00154{left:424.920000px;}
.x92_c00154{left:427.500000px;}
.x8d_c00154{left:429.420000px;}
.xa9_c00154{left:430.500000px;}
.x94_c00154{left:432.000000px;}
.x9f_c00154{left:433.500000px;}
.x5a_c00154{left:436.500000px;}
.x81_c00154{left:438.000000px;}
.x1b_c00154{left:441.000000px;}
.xf_c00154{left:448.080000px;}
.x53_c00154{left:451.920000px;}
.x3e_c00154{left:453.420000px;}
.x48_c00154{left:456.000000px;}
.x35_c00154{left:457.500000px;}
.x9d_c00154{left:469.500000px;}
.x5_c00154{left:471.855000px;}
.x2c_c00154{left:473.775000px;}
.x7b_c00154{left:475.080000px;}
.x6d_c00154{left:478.500000px;}
.x6_c00154{left:489.000000px;}
.x82_c00154{left:490.500000px;}
.x36_c00154{left:493.920000px;}
.x49_c00154{left:496.920000px;}
.x1c_c00154{left:504.000000px;}
.x83_c00154{left:507.000000px;}
.x5b_c00154{left:508.080000px;}
.x7_c00154{left:510.420000px;}
.x91_c00154{left:511.500000px;}
.x77_c00154{left:513.420000px;}
.x2d_c00154{left:514.920000px;}
.x3f_c00154{left:516.420000px;}
.x6e_c00154{left:519.000000px;}
.x5c_c00154{left:520.500000px;}
.x7c_c00154{left:522.000000px;}
.x54_c00154{left:523.920000px;}
.x37_c00154{left:529.080000px;}
.x84_c00154{left:530.580000px;}
.x10_c00154{left:532.920000px;}
.x1d_c00154{left:537.000000px;}
.x65_c00154{left:538.500000px;}
.x40_c00154{left:544.920000px;}
.x55_c00154{left:550.500000px;}
.x8e_c00154{left:552.000000px;}
.x6f_c00154{left:553.080000px;}
.x5d_c00154{left:554.580000px;}
.x8_c00154{left:558.420000px;}
.x66_c00154{left:559.500000px;}
.x1e_c00154{left:568.500000px;}
.x85_c00154{left:576.000000px;}
.x7d_c00154{left:582.420000px;}
.x88_c00154{left:586.500000px;}
.x78_c00154{left:589.080000px;}
.x8a_c00154{left:591.000000px;}
.x67_c00154{left:592.500000px;}
.x38_c00154{left:595.920000px;}
.xa4_c00154{left:597.000000px;}
.x9c_c00154{left:600.000000px;}
.xa2_c00154{left:601.500000px;}
.x79_c00154{left:604.500000px;}
.x1f_c00154{left:607.500000px;}
.x11_c00154{left:608.580000px;}
.x41_c00154{left:610.500000px;}
.x5e_c00154{left:619.080000px;}
.x70_c00154{left:622.080000px;}
.x12_c00154{left:628.920000px;}
.x20_c00154{left:630.420000px;}
.x8b_c00154{left:631.500000px;}
.x68_c00154{left:633.000000px;}
.x93_c00154{left:636.000000px;}
.x39_c00154{left:637.080000px;}
.x8f_c00154{left:640.500000px;}
.x13_c00154{left:647.580000px;}
.x5f_c00154{left:651.855000px;}
.x69_c00154{left:669.000000px;}
.x71_c00154{left:670.080000px;}
.x4a_c00154{left:677.580000px;}
.x72_c00154{left:682.500000px;}
.x60_c00154{left:688.080000px;}
.x6a_c00154{left:702.000000px;}
.x1_c00154{left:703.920000px;}
.x61_c00154{left:705.000000px;}
.x3a_c00154{left:711.000000px;}
.x73_c00154{left:717.000000px;}
@media print{
.v2_c00154{vertical-align:-5.333333pt;}
.v0_c00154{vertical-align:0.000000pt;}
.v1_c00154{vertical-align:5.333333pt;}
.ls1_c00154{letter-spacing:0.000000pt;}
.ls0_c00154{letter-spacing:45.653309pt;}
.wsb_c00154{word-spacing:-52.723602pt;}
.ws0_c00154{word-spacing:-1.902845pt;}
.ws11_c00154{word-spacing:0.000000pt;}
.wse_c00154{word-spacing:9.878987pt;}
.wsc_c00154{word-spacing:10.366166pt;}
.ws3_c00154{word-spacing:15.660329pt;}
.ws4_c00154{word-spacing:17.440722pt;}
.ws2_c00154{word-spacing:20.241998pt;}
.ws6_c00154{word-spacing:21.091652pt;}
.wsf_c00154{word-spacing:21.126233pt;}
.ws10_c00154{word-spacing:27.578605pt;}
.wsa_c00154{word-spacing:29.900800pt;}
.ws1_c00154{word-spacing:32.290231pt;}
.ws5_c00154{word-spacing:34.404908pt;}
.wsd_c00154{word-spacing:34.713542pt;}
.ws7_c00154{word-spacing:43.561211pt;}
.ws9_c00154{word-spacing:45.935067pt;}
.ws8_c00154{word-spacing:67.778560pt;}
._2_c00154{margin-left:-45.653309pt;}
._0_c00154{width:26.291407pt;}
._3_c00154{width:30.077557pt;}
._1_c00154{width:53.005361pt;}
.fs6_c00154{font-size:3.040000pt;}
.fs8_c00154{font-size:10.560000pt;}
.fs7_c00154{font-size:12.106667pt;}
.fs5_c00154{font-size:16.640000pt;}
.fs1_c00154{font-size:18.133333pt;}
.fs4_c00154{font-size:22.666667pt;}
.fs0_c00154{font-size:25.706667pt;}
.fs3_c00154{font-size:28.746667pt;}
.fs2_c00154{font-size:31.733333pt;}
.y0_c00154{bottom:0.000000pt;}
.y47_c00154{bottom:224.360000pt;}
.y43_c00154{bottom:224.733333pt;}
.y44_c00154{bottom:225.306667pt;}
.y40_c00154{bottom:226.440000pt;}
.y41_c00154{bottom:226.640000pt;}
.y45_c00154{bottom:227.226667pt;}
.y46_c00154{bottom:227.400000pt;}
.y42_c00154{bottom:228.360000pt;}
.y3a_c00154{bottom:243.773333pt;}
.y3d_c00154{bottom:243.973333pt;}
.y3e_c00154{bottom:245.306667pt;}
.y3c_c00154{bottom:245.693333pt;}
.y3b_c00154{bottom:245.706667pt;}
.y3f_c00154{bottom:245.893333pt;}
.y39_c00154{bottom:268.360000pt;}
.y38_c00154{bottom:269.306667pt;}
.y35_c00154{bottom:280.733333pt;}
.y37_c00154{bottom:280.933333pt;}
.y33_c00154{bottom:281.693333pt;}
.y32_c00154{bottom:281.893333pt;}
.y34_c00154{bottom:282.640000pt;}
.y36_c00154{bottom:283.600000pt;}
.y30_c00154{bottom:293.306667pt;}
.y2e_c00154{bottom:293.693333pt;}
.y2d_c00154{bottom:294.066667pt;}
.y31_c00154{bottom:295.026667pt;}
.y2c_c00154{bottom:295.973333pt;}
.y2b_c00154{bottom:296.173333pt;}
.y2f_c00154{bottom:296.933333pt;}
.y2a_c00154{bottom:307.400000pt;}
.y27_c00154{bottom:308.360000pt;}
.y25_c00154{bottom:308.560000pt;}
.y28_c00154{bottom:308.933333pt;}
.y29_c00154{bottom:309.306667pt;}
.y26_c00154{bottom:310.266667pt;}
.y24_c00154{bottom:331.773333pt;}
.y23_c00154{bottom:333.693333pt;}
.y21_c00154{bottom:349.106667pt;}
.y22_c00154{bottom:349.893333pt;}
.y1f_c00154{bottom:351.026667pt;}
.y20_c00154{bottom:351.040000pt;}
.y1e_c00154{bottom:367.400000pt;}
.y1c_c00154{bottom:368.360000pt;}
.y1d_c00154{bottom:368.373333pt;}
.y1b_c00154{bottom:383.026667pt;}
.y18_c00154{bottom:383.773333pt;}
.y1a_c00154{bottom:384.733333pt;}
.y19_c00154{bottom:385.706667pt;}
.y14_c00154{bottom:401.106667pt;}
.y17_c00154{bottom:402.066667pt;}
.y16_c00154{bottom:403.026667pt;}
.y15_c00154{bottom:404.373333pt;}
.y10_c00154{bottom:425.306667pt;}
.yc_c00154{bottom:425.693333pt;}
.y13_c00154{bottom:426.266667pt;}
.yd_c00154{bottom:426.640000pt;}
.yf_c00154{bottom:427.026667pt;}
.y12_c00154{bottom:427.226667pt;}
.ye_c00154{bottom:427.600000pt;}
.y11_c00154{bottom:427.973333pt;}
.y8_c00154{bottom:443.026667pt;}
.y7_c00154{bottom:443.400000pt;}
.yb_c00154{bottom:443.600000pt;}
.ya_c00154{bottom:444.360000pt;}
.y9_c00154{bottom:445.306667pt;}
.y6_c00154{bottom:465.693333pt;}
.y3_c00154{bottom:467.773333pt;}
.y5_c00154{bottom:468.733333pt;}
.y4_c00154{bottom:469.693333pt;}
.yc8_c00154{bottom:504.560000pt;}
.yc7_c00154{bottom:505.506667pt;}
.yc5_c00154{bottom:505.893333pt;}
.yc6_c00154{bottom:506.840000pt;}
.yc2_c00154{bottom:517.506667pt;}
.yc3_c00154{bottom:518.466667pt;}
.yc1_c00154{bottom:518.840000pt;}
.yc4_c00154{bottom:519.040000pt;}
.ybc_c00154{bottom:529.506667pt;}
.ybf_c00154{bottom:530.466667pt;}
.ybd_c00154{bottom:530.840000pt;}
.yc0_c00154{bottom:531.040000pt;}
.ybe_c00154{bottom:534.466667pt;}
.yb9_c00154{bottom:540.933333pt;}
.ybb_c00154{bottom:541.506667pt;}
.yb8_c00154{bottom:542.466667pt;}
.yb7_c00154{bottom:542.840000pt;}
.yba_c00154{bottom:543.040000pt;}
.yb5_c00154{bottom:553.893333pt;}
.yb3_c00154{bottom:554.466667pt;}
.yb4_c00154{bottom:554.840000pt;}
.yb6_c00154{bottom:555.040000pt;}
.yb2_c00154{bottom:556.173333pt;}
.yb1_c00154{bottom:566.840000pt;}
.yaf_c00154{bottom:567.226667pt;}
.yb0_c00154{bottom:568.173333pt;}
.yae_c00154{bottom:579.226667pt;}
.yac_c00154{bottom:580.173333pt;}
.yad_c00154{bottom:580.373333pt;}
.yab_c00154{bottom:591.226667pt;}
.ya9_c00154{bottom:592.173333pt;}
.yaa_c00154{bottom:592.373333pt;}
.ya8_c00154{bottom:592.560000pt;}
.ya6_c00154{bottom:603.226667pt;}
.ya3_c00154{bottom:604.173333pt;}
.ya7_c00154{bottom:604.373333pt;}
.ya4_c00154{bottom:604.560000pt;}
.ya5_c00154{bottom:605.706667pt;}
.ya0_c00154{bottom:615.226667pt;}
.y9d_c00154{bottom:615.600000pt;}
.ya1_c00154{bottom:616.173333pt;}
.ya2_c00154{bottom:616.373333pt;}
.y9e_c00154{bottom:617.506667pt;}
.y9f_c00154{bottom:617.706667pt;}
.y9c_c00154{bottom:628.173333pt;}
.y9a_c00154{bottom:628.560000pt;}
.y9b_c00154{bottom:629.706667pt;}
.y98_c00154{bottom:640.560000pt;}
.y97_c00154{bottom:641.506667pt;}
.y99_c00154{bottom:641.706667pt;}
.y92_c00154{bottom:652.560000pt;}
.y94_c00154{bottom:653.506667pt;}
.y96_c00154{bottom:653.706667pt;}
.y95_c00154{bottom:653.893333pt;}
.y93_c00154{bottom:654.466667pt;}
.y90_c00154{bottom:665.506667pt;}
.y91_c00154{bottom:665.706667pt;}
.y8e_c00154{bottom:665.893333pt;}
.y8f_c00154{bottom:667.040000pt;}
.y89_c00154{bottom:676.560000pt;}
.y8c_c00154{bottom:677.506667pt;}
.y8d_c00154{bottom:677.706667pt;}
.y8a_c00154{bottom:677.893333pt;}
.y8b_c00154{bottom:679.040000pt;}
.y88_c00154{bottom:690.840000pt;}
.y86_c00154{bottom:701.506667pt;}
.y85_c00154{bottom:701.893333pt;}
.y84_c00154{bottom:702.840000pt;}
.y87_c00154{bottom:703.040000pt;}
.y82_c00154{bottom:713.893333pt;}
.y81_c00154{bottom:714.840000pt;}
.y83_c00154{bottom:715.040000pt;}
.y7f_c00154{bottom:726.840000pt;}
.y80_c00154{bottom:727.040000pt;}
.y7e_c00154{bottom:727.226667pt;}
.y7c_c00154{bottom:737.893333pt;}
.y7b_c00154{bottom:738.840000pt;}
.y7d_c00154{bottom:739.040000pt;}
.y79_c00154{bottom:750.840000pt;}
.y78_c00154{bottom:751.226667pt;}
.y77_c00154{bottom:752.173333pt;}
.y7a_c00154{bottom:752.373333pt;}
.y73_c00154{bottom:762.266667pt;}
.y76_c00154{bottom:762.840000pt;}
.y72_c00154{bottom:763.226667pt;}
.y74_c00154{bottom:764.173333pt;}
.y75_c00154{bottom:764.373333pt;}
.y70_c00154{bottom:775.226667pt;}
.y6f_c00154{bottom:776.173333pt;}
.y71_c00154{bottom:776.373333pt;}
.y6d_c00154{bottom:787.226667pt;}
.y6c_c00154{bottom:788.173333pt;}
.y6e_c00154{bottom:788.373333pt;}
.y6a_c00154{bottom:799.226667pt;}
.y68_c00154{bottom:800.173333pt;}
.y6b_c00154{bottom:800.373333pt;}
.y69_c00154{bottom:800.560000pt;}
.y65_c00154{bottom:811.226667pt;}
.y67_c00154{bottom:812.173333pt;}
.y64_c00154{bottom:812.560000pt;}
.y63_c00154{bottom:813.506667pt;}
.y66_c00154{bottom:813.706667pt;}
.y61_c00154{bottom:824.560000pt;}
.y60_c00154{bottom:825.506667pt;}
.y62_c00154{bottom:825.706667pt;}
.y5e_c00154{bottom:836.560000pt;}
.y5d_c00154{bottom:837.506667pt;}
.y5f_c00154{bottom:839.040000pt;}
.y5c_c00154{bottom:849.506667pt;}
.y5a_c00154{bottom:849.893333pt;}
.y59_c00154{bottom:850.840000pt;}
.y5b_c00154{bottom:851.040000pt;}
.y58_c00154{bottom:861.506667pt;}
.y54_c00154{bottom:876.560000pt;}
.y56_c00154{bottom:877.506667pt;}
.y57_c00154{bottom:877.893333pt;}
.y55_c00154{bottom:878.840000pt;}
.y53_c00154{bottom:896.733333pt;}
.y52_c00154{bottom:898.640000pt;}
.y4e_c00154{bottom:910.066667pt;}
.y50_c00154{bottom:911.026667pt;}
.y51_c00154{bottom:911.226667pt;}
.y4f_c00154{bottom:912.933333pt;}
.y4b_c00154{bottom:924.360000pt;}
.y4a_c00154{bottom:924.933333pt;}
.y4d_c00154{bottom:925.306667pt;}
.y4c_c00154{bottom:926.266667pt;}
.y49_c00154{bottom:946.266667pt;}
.y48_c00154{bottom:947.600000pt;}
.y1_c00154{bottom:977.693333pt;}
.y2_c00154{bottom:978.266667pt;}
.h7_c00154{height:3.739141pt;}
.ha_c00154{height:12.988594pt;}
.h8_c00154{height:14.890964pt;}
.h9_c00154{height:20.224297pt;}
.h6_c00154{height:20.466875pt;}
.h2_c00154{height:22.303646pt;}
.h5_c00154{height:27.879557pt;}
.h1_c00154{height:31.618698pt;}
.h4_c00154{height:35.357839pt;}
.h3_c00154{height:39.031380pt;}
.h0_c00154{height:1186.666667pt;}
.w0_c00154{width:782.666667pt;}
.x0_c00154{left:0.000000pt;}
.x3b_c00154{left:134.666667pt;}
.x4b_c00154{left:136.000000pt;}
.x4c_c00154{left:145.333333pt;}
.x14_c00154{left:146.293333pt;}
.x21_c00154{left:148.373333pt;}
.x27_c00154{left:149.333333pt;}
.x62_c00154{left:158.666667pt;}
.x42_c00154{left:162.666667pt;}
.x9_c00154{left:173.706667pt;}
.x4d_c00154{left:175.626667pt;}
.x22_c00154{left:184.373333pt;}
.x4e_c00154{left:200.373333pt;}
.x74_c00154{left:201.333333pt;}
.x6b_c00154{left:205.706667pt;}
.x43_c00154{left:206.666667pt;}
.x9e_c00154{left:208.000000pt;}
.x95_c00154{left:209.706667pt;}
.x7e_c00154{left:218.666667pt;}
.x15_c00154{left:220.000000pt;}
.x86_c00154{left:220.960000pt;}
.x56_c00154{left:222.666667pt;}
.x31_c00154{left:224.000000pt;}
.x3c_c00154{left:226.293333pt;}
.xa_c00154{left:228.960000pt;}
.x2e_c00154{left:230.666667pt;}
.x9b_c00154{left:232.960000pt;}
.xa0_c00154{left:236.000000pt;}
.x23_c00154{left:237.333333pt;}
.xa1_c00154{left:240.000000pt;}
.x99_c00154{left:241.333333pt;}
.x32_c00154{left:243.626667pt;}
.x96_c00154{left:244.960000pt;}
.x28_c00154{left:248.000000pt;}
.x2f_c00154{left:249.333333pt;}
.x6c_c00154{left:250.666667pt;}
.xb_c00154{left:252.960000pt;}
.x24_c00154{left:256.000000pt;}
.x8c_c00154{left:257.333333pt;}
.x3_c00154{left:258.293333pt;}
.xa3_c00154{left:260.000000pt;}
.x98_c00154{left:260.960000pt;}
.x4f_c00154{left:264.373333pt;}
.x16_c00154{left:266.093333pt;}
.x57_c00154{left:269.333333pt;}
.x44_c00154{left:273.333333pt;}
.x7f_c00154{left:276.960000pt;}
.x17_c00154{left:278.666667pt;}
.xa7_c00154{left:285.333333pt;}
.x50_c00154{left:288.000000pt;}
.x9a_c00154{left:289.706667pt;}
.xa8_c00154{left:292.373333pt;}
.xa5_c00154{left:293.333333pt;}
.x18_c00154{left:294.666667pt;}
.xa6_c00154{left:297.333333pt;}
.xc_c00154{left:299.626667pt;}
.x58_c00154{left:301.333333pt;}
.x45_c00154{left:303.626667pt;}
.x29_c00154{left:305.133333pt;}
.x33_c00154{left:309.333333pt;}
.x25_c00154{left:310.666667pt;}
.x63_c00154{left:313.706667pt;}
.x80_c00154{left:318.666667pt;}
.x46_c00154{left:320.000000pt;}
.x30_c00154{left:320.960000pt;}
.x75_c00154{left:323.040000pt;}
.xd_c00154{left:324.000000pt;}
.x34_c00154{left:326.666667pt;}
.x19_c00154{left:331.040000pt;}
.x7a_c00154{left:334.666667pt;}
.x51_c00154{left:336.000000pt;}
.x2a_c00154{left:341.333333pt;}
.x59_c00154{left:342.666667pt;}
.x47_c00154{left:344.373333pt;}
.x89_c00154{left:345.333333pt;}
.x76_c00154{left:346.666667pt;}
.x90_c00154{left:349.333333pt;}
.x2_c00154{left:352.000000pt;}
.x97_c00154{left:353.333333pt;}
.x4_c00154{left:357.706667pt;}
.x1a_c00154{left:362.666667pt;}
.x26_c00154{left:365.333333pt;}
.x2b_c00154{left:366.666667pt;}
.x64_c00154{left:368.373333pt;}
.x3d_c00154{left:369.706667pt;}
.xe_c00154{left:374.293333pt;}
.x52_c00154{left:375.626667pt;}
.x87_c00154{left:377.706667pt;}
.x92_c00154{left:380.000000pt;}
.x8d_c00154{left:381.706667pt;}
.xa9_c00154{left:382.666667pt;}
.x94_c00154{left:384.000000pt;}
.x9f_c00154{left:385.333333pt;}
.x5a_c00154{left:388.000000pt;}
.x81_c00154{left:389.333333pt;}
.x1b_c00154{left:392.000000pt;}
.xf_c00154{left:398.293333pt;}
.x53_c00154{left:401.706667pt;}
.x3e_c00154{left:403.040000pt;}
.x48_c00154{left:405.333333pt;}
.x35_c00154{left:406.666667pt;}
.x9d_c00154{left:417.333333pt;}
.x5_c00154{left:419.426667pt;}
.x2c_c00154{left:421.133333pt;}
.x7b_c00154{left:422.293333pt;}
.x6d_c00154{left:425.333333pt;}
.x6_c00154{left:434.666667pt;}
.x82_c00154{left:436.000000pt;}
.x36_c00154{left:439.040000pt;}
.x49_c00154{left:441.706667pt;}
.x1c_c00154{left:448.000000pt;}
.x83_c00154{left:450.666667pt;}
.x5b_c00154{left:451.626667pt;}
.x7_c00154{left:453.706667pt;}
.x91_c00154{left:454.666667pt;}
.x77_c00154{left:456.373333pt;}
.x2d_c00154{left:457.706667pt;}
.x3f_c00154{left:459.040000pt;}
.x6e_c00154{left:461.333333pt;}
.x5c_c00154{left:462.666667pt;}
.x7c_c00154{left:464.000000pt;}
.x54_c00154{left:465.706667pt;}
.x37_c00154{left:470.293333pt;}
.x84_c00154{left:471.626667pt;}
.x10_c00154{left:473.706667pt;}
.x1d_c00154{left:477.333333pt;}
.x65_c00154{left:478.666667pt;}
.x40_c00154{left:484.373333pt;}
.x55_c00154{left:489.333333pt;}
.x8e_c00154{left:490.666667pt;}
.x6f_c00154{left:491.626667pt;}
.x5d_c00154{left:492.960000pt;}
.x8_c00154{left:496.373333pt;}
.x66_c00154{left:497.333333pt;}
.x1e_c00154{left:505.333333pt;}
.x85_c00154{left:512.000000pt;}
.x7d_c00154{left:517.706667pt;}
.x88_c00154{left:521.333333pt;}
.x78_c00154{left:523.626667pt;}
.x8a_c00154{left:525.333333pt;}
.x67_c00154{left:526.666667pt;}
.x38_c00154{left:529.706667pt;}
.xa4_c00154{left:530.666667pt;}
.x9c_c00154{left:533.333333pt;}
.xa2_c00154{left:534.666667pt;}
.x79_c00154{left:537.333333pt;}
.x1f_c00154{left:540.000000pt;}
.x11_c00154{left:540.960000pt;}
.x41_c00154{left:542.666667pt;}
.x5e_c00154{left:550.293333pt;}
.x70_c00154{left:552.960000pt;}
.x12_c00154{left:559.040000pt;}
.x20_c00154{left:560.373333pt;}
.x8b_c00154{left:561.333333pt;}
.x68_c00154{left:562.666667pt;}
.x93_c00154{left:565.333333pt;}
.x39_c00154{left:566.293333pt;}
.x8f_c00154{left:569.333333pt;}
.x13_c00154{left:575.626667pt;}
.x5f_c00154{left:579.426667pt;}
.x69_c00154{left:594.666667pt;}
.x71_c00154{left:595.626667pt;}
.x4a_c00154{left:602.293333pt;}
.x72_c00154{left:606.666667pt;}
.x60_c00154{left:611.626667pt;}
.x6a_c00154{left:624.000000pt;}
.x1_c00154{left:625.706667pt;}
.x61_c00154{left:626.666667pt;}
.x3a_c00154{left:632.000000pt;}
.x73_c00154{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f45cb69bf43bbc9a899edb2.woff2')format("woff");}.ff1_c00155{font-family:ff1_c00155;line-height:1.688965;font-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_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);}
.m53_c00155{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.maf_c00155{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m44_c00155{transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);}
.m6c_c00155{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m66_c00155{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m84_c00155{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m9d_c00155{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mda_c00155{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m74_c00155{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.mca_c00155{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m3e_c00155{transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);}
.m73_c00155{transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);}
.mc_c00155{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.mb9_c00155{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m5d_c00155{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.mcf_c00155{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.mc8_c00155{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.m60_c00155{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m2b_c00155{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m5e_c00155{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.md_c00155{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m45_c00155{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m7e_c00155{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mde_c00155{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m61_c00155{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m92_c00155{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m7f_c00155{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mb7_c00155{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mac_c00155{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m82_c00155{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.ma1_c00155{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m55_c00155{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m70_c00155{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.m58_c00155{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m91_c00155{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m65_c00155{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m46_c00155{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m7d_c00155{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m63_c00155{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.ma8_c00155{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m67_c00155{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.md3_c00155{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m54_c00155{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mc2_c00155{transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);}
.maa_c00155{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m4e_c00155{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m85_c00155{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mdd_c00155{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m56_c00155{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m83_c00155{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.m18_c00155{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m81_c00155{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m6d_c00155{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m8a_c00155{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.mcd_c00155{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m34_c00155{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m2_c00155{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m78_c00155{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m88_c00155{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m43_c00155{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m1f_c00155{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m1e_c00155{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.mb0_c00155{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mb4_c00155{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m6f_c00155{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m4b_c00155{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.m79_c00155{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.m8f_c00155{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m19_c00155{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.md2_c00155{transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);}
.mbf_c00155{transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);}
.mb5_c00155{transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);}
.m1c_c00155{transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);}
.m7c_c00155{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.mf_c00155{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m28_c00155{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m14_c00155{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m1b_c00155{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m3_c00155{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m50_c00155{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m94_c00155{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m4_c00155{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m98_c00155{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m62_c00155{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.m71_c00155{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m2d_c00155{transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);}
.m26_c00155{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.md8_c00155{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.m89_c00155{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m3d_c00155{transform:matrix(0.471429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471429,0.000000,0.000000,0.250000,0,0);}
.ma6_c00155{transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);}
.m90_c00155{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.mcc_c00155{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.mdc_c00155{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m77_c00155{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m68_c00155{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m8b_c00155{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.mc6_c00155{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mae_c00155{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mc7_c00155{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m12_c00155{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.mad_c00155{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m0_c00155{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m41_c00155{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m22_c00155{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mc4_c00155{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m9c_c00155{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m3f_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);}
.m97_c00155{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m6a_c00155{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mb1_c00155{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m75_c00155{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.m29_c00155{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m57_c00155{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m2e_c00155{transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);}
.mdb_c00155{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m49_c00155{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mc9_c00155{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m10_c00155{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m36_c00155{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mbe_c00155{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m20_c00155{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m9a_c00155{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m2c_c00155{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mce_c00155{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m6b_c00155{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.ma_c00155{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m9f_c00155{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m2a_c00155{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m5a_c00155{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mdf_c00155{transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);}
.md5_c00155{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m48_c00155{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m7_c00155{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.ma4_c00155{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m5c_c00155{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m8c_c00155{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m99_c00155{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m5_c00155{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mcb_c00155{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m23_c00155{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mc0_c00155{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.me0_c00155{transform:matrix(0.539412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539412,0.000000,0.000000,0.250000,0,0);}
.md1_c00155{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.ma2_c00155{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m21_c00155{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m38_c00155{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.ma7_c00155{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mb8_c00155{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m51_c00155{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m25_c00155{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m87_c00155{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m96_c00155{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mb_c00155{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m4c_c00155{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m47_c00155{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m86_c00155{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m4f_c00155{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m9_c00155{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m16_c00155{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.md6_c00155{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.ma9_c00155{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m6_c00155{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m27_c00155{transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);}
.m3a_c00155{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m39_c00155{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m59_c00155{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m24_c00155{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m76_c00155{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m80_c00155{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m6e_c00155{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m69_c00155{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m11_c00155{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mc1_c00155{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.md9_c00155{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m40_c00155{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m5f_c00155{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m30_c00155{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.md0_c00155{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.m8d_c00155{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m5b_c00155{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m64_c00155{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m42_c00155{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.ma5_c00155{transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);}
.m35_c00155{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.m72_c00155{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m9b_c00155{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_c00155{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m32_c00155{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.md7_c00155{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mb3_c00155{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m2f_c00155{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m17_c00155{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mab_c00155{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m1a_c00155{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.mbc_c00155{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.mc3_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);}
.mba_c00155{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mb2_c00155{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m52_c00155{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m13_c00155{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m4a_c00155{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.ma0_c00155{transform:matrix(0.644231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644231,0.000000,0.000000,0.250000,0,0);}
.m15_c00155{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.mbd_c00155{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m33_c00155{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.me_c00155{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m8e_c00155{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m3b_c00155{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m4d_c00155{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m31_c00155{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m37_c00155{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m1d_c00155{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mb6_c00155{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m93_c00155{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.ma3_c00155{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m8_c00155{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m9e_c00155{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m7a_c00155{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.mbb_c00155{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.md4_c00155{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m95_c00155{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.mc5_c00155{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.m7b_c00155{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00155{vertical-align:-6.000000px;}
.v0_c00155{vertical-align:0.000000px;}
.ls0_c00155{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00155{word-spacing:-9.207360px;}
.ws1_c00155{word-spacing:-4.506262px;}
.ws5_c00155{word-spacing:-3.045198px;}
.ws4_c00155{word-spacing:-2.964893px;}
.ws8_c00155{word-spacing:-1.706787px;}
.ws2_c00155{word-spacing:-1.219898px;}
.ws7_c00155{word-spacing:-0.318469px;}
.wsa_c00155{word-spacing:0.000000px;}
.ws3_c00155{word-spacing:0.232141px;}
.ws9_c00155{word-spacing:0.481737px;}
.ws6_c00155{word-spacing:3.307091px;}
.fc0_c00155{color:transparent;}
.fs7_c00155{font-size:3.420000px;}
.fs8_c00155{font-size:11.880000px;}
.fs4_c00155{font-size:18.720000px;}
.fs1_c00155{font-size:20.400000px;}
.fs5_c00155{font-size:25.500000px;}
.fs0_c00155{font-size:28.920000px;}
.fs3_c00155{font-size:32.340000px;}
.fs2_c00155{font-size:35.700000px;}
.fs6_c00155{font-size:39.120000px;}
.y0_c00155{bottom:0.000000px;}
.yda_c00155{bottom:250.245000px;}
.yd9_c00155{bottom:250.905000px;}
.ydb_c00155{bottom:251.970000px;}
.ydc_c00155{bottom:252.405000px;}
.yd6_c00155{bottom:269.745000px;}
.yd4_c00155{bottom:270.405000px;}
.yd3_c00155{bottom:270.630000px;}
.yd7_c00155{bottom:270.825000px;}
.yd8_c00155{bottom:271.470000px;}
.yd5_c00155{bottom:271.905000px;}
.yd2_c00155{bottom:288.405000px;}
.yd1_c00155{bottom:289.245000px;}
.yce_c00155{bottom:289.905000px;}
.yd0_c00155{bottom:290.970000px;}
.ycf_c00155{bottom:291.405000px;}
.ycd_c00155{bottom:307.905000px;}
.yc7_c00155{bottom:308.745000px;}
.ycb_c00155{bottom:310.245000px;}
.yc8_c00155{bottom:310.905000px;}
.yc9_c00155{bottom:311.130000px;}
.ycc_c00155{bottom:311.970000px;}
.yca_c00155{bottom:312.405000px;}
.yc5_c00155{bottom:328.245000px;}
.yc6_c00155{bottom:328.470000px;}
.yc3_c00155{bottom:330.405000px;}
.yc4_c00155{bottom:330.630000px;}
.ybe_c00155{bottom:346.905000px;}
.ybd_c00155{bottom:347.745000px;}
.ybc_c00155{bottom:348.825000px;}
.yc0_c00155{bottom:349.245000px;}
.yc2_c00155{bottom:349.905000px;}
.ybf_c00155{bottom:350.970000px;}
.yc1_c00155{bottom:351.405000px;}
.yb7_c00155{bottom:367.470000px;}
.yb8_c00155{bottom:368.325000px;}
.yba_c00155{bottom:368.745000px;}
.ybb_c00155{bottom:370.470000px;}
.yb9_c00155{bottom:370.905000px;}
.yb5_c00155{bottom:387.825000px;}
.yb6_c00155{bottom:388.245000px;}
.yb3_c00155{bottom:389.325000px;}
.yb1_c00155{bottom:389.970000px;}
.yb2_c00155{bottom:390.405000px;}
.yb4_c00155{bottom:391.470000px;}
.yb0_c00155{bottom:405.405000px;}
.yaf_c00155{bottom:406.470000px;}
.yad_c00155{bottom:407.745000px;}
.yae_c00155{bottom:409.470000px;}
.yac_c00155{bottom:409.905000px;}
.yaa_c00155{bottom:425.970000px;}
.ya5_c00155{bottom:427.245000px;}
.ya9_c00155{bottom:428.130000px;}
.yab_c00155{bottom:428.325000px;}
.ya8_c00155{bottom:428.970000px;}
.ya7_c00155{bottom:429.405000px;}
.ya6_c00155{bottom:429.630000px;}
.ya4_c00155{bottom:430.470000px;}
.ya1_c00155{bottom:446.745000px;}
.ya3_c00155{bottom:447.630000px;}
.ya2_c00155{bottom:447.825000px;}
.ya0_c00155{bottom:448.470000px;}
.y9f_c00155{bottom:448.905000px;}
.y9e_c00155{bottom:449.970000px;}
.y9d_c00155{bottom:463.905000px;}
.y9b_c00155{bottom:465.405000px;}
.y9c_c00155{bottom:465.825000px;}
.y98_c00155{bottom:467.745000px;}
.y99_c00155{bottom:468.630000px;}
.y9a_c00155{bottom:469.905000px;}
.y96_c00155{bottom:487.245000px;}
.y95_c00155{bottom:487.905000px;}
.y97_c00155{bottom:489.405000px;}
.y93_c00155{bottom:515.745000px;}
.y94_c00155{bottom:517.905000px;}
.y8f_c00155{bottom:565.245000px;}
.y91_c00155{bottom:566.130000px;}
.y92_c00155{bottom:566.970000px;}
.y90_c00155{bottom:567.405000px;}
.y8c_c00155{bottom:584.745000px;}
.y8e_c00155{bottom:585.630000px;}
.y89_c00155{bottom:586.905000px;}
.y8a_c00155{bottom:586.920000px;}
.y8d_c00155{bottom:587.130000px;}
.y8b_c00155{bottom:587.970000px;}
.y86_c00155{bottom:603.405000px;}
.y87_c00155{bottom:604.470000px;}
.y85_c00155{bottom:605.325000px;}
.y88_c00155{bottom:606.630000px;}
.y83_c00155{bottom:621.630000px;}
.y7e_c00155{bottom:622.275000px;}
.y7a_c00155{bottom:622.905000px;}
.y7f_c00155{bottom:623.745000px;}
.y7b_c00155{bottom:624.825000px;}
.y81_c00155{bottom:625.245000px;}
.y84_c00155{bottom:625.905000px;}
.y7c_c00155{bottom:626.130000px;}
.y80_c00155{bottom:626.325000px;}
.y82_c00155{bottom:627.405000px;}
.y7d_c00155{bottom:629.130000px;}
.y73_c00155{bottom:642.405000px;}
.y77_c00155{bottom:643.905000px;}
.y79_c00155{bottom:644.325000px;}
.y78_c00155{bottom:644.745000px;}
.y75_c00155{bottom:645.630000px;}
.y76_c00155{bottom:645.825000px;}
.y74_c00155{bottom:646.905000px;}
.y72_c00155{bottom:661.905000px;}
.y6e_c00155{bottom:663.825000px;}
.y71_c00155{bottom:664.245000px;}
.y6f_c00155{bottom:665.325000px;}
.y70_c00155{bottom:666.405000px;}
.y6a_c00155{bottom:682.905000px;}
.y69_c00155{bottom:683.745000px;}
.y6b_c00155{bottom:683.970000px;}
.y6d_c00155{bottom:684.825000px;}
.y6c_c00155{bottom:685.905000px;}
.y64_c00155{bottom:702.405000px;}
.y65_c00155{bottom:703.245000px;}
.y66_c00155{bottom:704.325000px;}
.y67_c00155{bottom:704.970000px;}
.y68_c00155{bottom:705.405000px;}
.y63_c00155{bottom:721.905000px;}
.y62_c00155{bottom:722.745000px;}
.y5f_c00155{bottom:723.405000px;}
.y5d_c00155{bottom:723.825000px;}
.y5e_c00155{bottom:724.905000px;}
.y60_c00155{bottom:725.130000px;}
.y61_c00155{bottom:726.420000px;}
.y5c_c00155{bottom:741.405000px;}
.y58_c00155{bottom:742.245000px;}
.y59_c00155{bottom:743.325000px;}
.y5b_c00155{bottom:743.745000px;}
.y5a_c00155{bottom:744.405000px;}
.y50_c00155{bottom:760.905000px;}
.y54_c00155{bottom:761.325000px;}
.y56_c00155{bottom:761.745000px;}
.y51_c00155{bottom:761.970000px;}
.y55_c00155{bottom:762.405000px;}
.y53_c00155{bottom:763.245000px;}
.y57_c00155{bottom:763.905000px;}
.y52_c00155{bottom:765.405000px;}
.y4d_c00155{bottom:780.405000px;}
.y4f_c00155{bottom:781.245000px;}
.y4e_c00155{bottom:781.470000px;}
.y49_c00155{bottom:781.905000px;}
.y4b_c00155{bottom:782.745000px;}
.y4c_c00155{bottom:782.970000px;}
.y4a_c00155{bottom:784.905000px;}
.y48_c00155{bottom:800.970000px;}
.y47_c00155{bottom:801.405000px;}
.y46_c00155{bottom:802.245000px;}
.y44_c00155{bottom:803.970000px;}
.y45_c00155{bottom:804.405000px;}
.y42_c00155{bottom:820.905000px;}
.y40_c00155{bottom:821.745000px;}
.y43_c00155{bottom:821.970000px;}
.y41_c00155{bottom:822.825000px;}
.y3f_c00155{bottom:823.905000px;}
.y3e_c00155{bottom:841.245000px;}
.y3c_c00155{bottom:842.970000px;}
.y3b_c00155{bottom:843.405000px;}
.y3d_c00155{bottom:844.470000px;}
.y39_c00155{bottom:860.745000px;}
.y3a_c00155{bottom:862.905000px;}
.y35_c00155{bottom:879.405000px;}
.y38_c00155{bottom:880.245000px;}
.y34_c00155{bottom:882.405000px;}
.y36_c00155{bottom:882.630000px;}
.y37_c00155{bottom:883.470000px;}
.y33_c00155{bottom:899.745000px;}
.y2e_c00155{bottom:901.245000px;}
.y32_c00155{bottom:902.130000px;}
.y31_c00155{bottom:902.325000px;}
.y30_c00155{bottom:902.970000px;}
.y2f_c00155{bottom:903.405000px;}
.y2d_c00155{bottom:918.405000px;}
.y2c_c00155{bottom:919.245000px;}
.y2b_c00155{bottom:919.680000px;}
.y2a_c00155{bottom:920.745000px;}
.y29_c00155{bottom:922.905000px;}
.y28_c00155{bottom:941.130000px;}
.y26_c00155{bottom:941.970000px;}
.y27_c00155{bottom:942.405000px;}
.y22_c00155{bottom:959.325000px;}
.y25_c00155{bottom:960.405000px;}
.y24_c00155{bottom:960.630000px;}
.y20_c00155{bottom:960.825000px;}
.y21_c00155{bottom:961.905000px;}
.y23_c00155{bottom:962.970000px;}
.y19_c00155{bottom:976.905000px;}
.y1a_c00155{bottom:978.825000px;}
.y1f_c00155{bottom:979.245000px;}
.y1c_c00155{bottom:980.325000px;}
.y1b_c00155{bottom:980.970000px;}
.y1d_c00155{bottom:981.405000px;}
.y1e_c00155{bottom:982.470000px;}
.y17_c00155{bottom:998.745000px;}
.y14_c00155{bottom:999.630000px;}
.y16_c00155{bottom:999.825000px;}
.y15_c00155{bottom:1000.905000px;}
.y18_c00155{bottom:1001.970000px;}
.y11_c00155{bottom:1018.245000px;}
.y13_c00155{bottom:1019.325000px;}
.y10_c00155{bottom:1019.970000px;}
.yf_c00155{bottom:1020.405000px;}
.y12_c00155{bottom:1021.470000px;}
.ye_c00155{bottom:1036.470000px;}
.yd_c00155{bottom:1036.905000px;}
.y8_c00155{bottom:1037.745000px;}
.yb_c00155{bottom:1038.825000px;}
.y9_c00155{bottom:1039.470000px;}
.ya_c00155{bottom:1039.905000px;}
.yc_c00155{bottom:1040.970000px;}
.y4_c00155{bottom:1056.825000px;}
.y3_c00155{bottom:1057.245000px;}
.y5_c00155{bottom:1058.325000px;}
.y6_c00155{bottom:1059.405000px;}
.y7_c00155{bottom:1059.630000px;}
.y2_c00155{bottom:1097.550000px;}
.y1_c00155{bottom:1099.905000px;}
.h8_c00155{height:4.206533px;}
.h9_c00155{height:14.612168px;}
.h5_c00155{height:23.025234px;}
.h2_c00155{height:25.091602px;}
.h6_c00155{height:31.364502px;}
.h1_c00155{height:35.571035px;}
.h4_c00155{height:39.777568px;}
.h3_c00155{height:43.910303px;}
.h7_c00155{height:48.116836px;}
.h0_c00155{height:1335.000000px;}
.w0_c00155{width:880.500000px;}
.x0_c00155{left:0.000000px;}
.xf5_c00155{left:150.000000px;}
.xba_c00155{left:151.080000px;}
.x3_c00155{left:153.420000px;}
.x1_c00155{left:154.920000px;}
.xf1_c00155{left:166.500000px;}
.xce_c00155{left:168.000000px;}
.x4a_c00155{left:169.080000px;}
.x7b_c00155{left:171.420000px;}
.x8f_c00155{left:172.920000px;}
.x22_c00155{left:177.420000px;}
.x84_c00155{left:180.420000px;}
.x1a_c00155{left:181.500000px;}
.x103_c00155{left:187.500000px;}
.xd9_c00155{left:188.580000px;}
.x74_c00155{left:191.580000px;}
.xae_c00155{left:193.500000px;}
.x90_c00155{left:197.580000px;}
.x2f_c00155{left:199.500000px;}
.xcf_c00155{left:200.580000px;}
.x9d_c00155{left:202.080000px;}
.xfd_c00155{left:204.420000px;}
.x23_c00155{left:205.920000px;}
.xda_c00155{left:207.420000px;}
.x4_c00155{left:210.000000px;}
.xbb_c00155{left:211.500000px;}
.x5f_c00155{left:213.000000px;}
.x3b_c00155{left:214.500000px;}
.x91_c00155{left:216.000000px;}
.x85_c00155{left:217.500000px;}
.xe4_c00155{left:220.500000px;}
.x4b_c00155{left:223.920000px;}
.xfe_c00155{left:225.000000px;}
.xb4_c00155{left:226.500000px;}
.xa4_c00155{left:228.855000px;}
.x6b_c00155{left:230.580000px;}
.xe_c00155{left:232.080000px;}
.xdb_c00155{left:235.500000px;}
.x46_c00155{left:236.580000px;}
.x30_c00155{left:241.080000px;}
.x75_c00155{left:243.645000px;}
.x9e_c00155{left:245.580000px;}
.xed_c00155{left:247.080000px;}
.x24_c00155{left:252.000000px;}
.x57_c00155{left:255.420000px;}
.xbc_c00155{left:256.500000px;}
.xc5_c00155{left:258.000000px;}
.x5_c00155{left:259.500000px;}
.x3c_c00155{left:262.080000px;}
.xd0_c00155{left:264.000000px;}
.xa5_c00155{left:267.000000px;}
.x47_c00155{left:268.920000px;}
.x6c_c00155{left:270.420000px;}
.x6d_c00155{left:271.500000px;}
.x1b_c00155{left:274.920000px;}
.xc1_c00155{left:276.420000px;}
.xcb_c00155{left:277.500000px;}
.xf0_c00155{left:280.080000px;}
.x3d_c00155{left:282.420000px;}
.x86_c00155{left:283.920000px;}
.xb5_c00155{left:286.500000px;}
.x31_c00155{left:288.000000px;}
.x4c_c00155{left:289.500000px;}
.xd2_c00155{left:291.000000px;}
.xf6_c00155{left:292.920000px;}
.xc6_c00155{left:294.000000px;}
.x48_c00155{left:295.500000px;}
.xf_c00155{left:297.000000px;}
.xe5_c00155{left:298.920000px;}
.x4d_c00155{left:300.000000px;}
.xaf_c00155{left:301.920000px;}
.x60_c00155{left:303.420000px;}
.x9f_c00155{left:304.500000px;}
.x6_c00155{left:305.580000px;}
.x87_c00155{left:307.500000px;}
.x3e_c00155{left:309.000000px;}
.x6e_c00155{left:310.500000px;}
.x25_c00155{left:312.000000px;}
.xfa_c00155{left:313.500000px;}
.x4e_c00155{left:316.500000px;}
.x10_c00155{left:317.580000px;}
.xb6_c00155{left:319.500000px;}
.xff_c00155{left:322.920000px;}
.xa6_c00155{left:324.000000px;}
.xa0_c00155{left:325.080000px;}
.x49_c00155{left:328.500000px;}
.x61_c00155{left:331.500000px;}
.x7c_c00155{left:332.580000px;}
.x92_c00155{left:334.500000px;}
.x88_c00155{left:335.580000px;}
.xcc_c00155{left:337.920000px;}
.x1c_c00155{left:339.000000px;}
.x76_c00155{left:340.080000px;}
.x32_c00155{left:342.420000px;}
.xe6_c00155{left:343.500000px;}
.x4f_c00155{left:344.580000px;}
.xc2_c00155{left:348.000000px;}
.x26_c00155{left:351.000000px;}
.x7_c00155{left:352.080000px;}
.x3f_c00155{left:354.000000px;}
.xbd_c00155{left:355.080000px;}
.x7d_c00155{left:356.580000px;}
.xea_c00155{left:360.000000px;}
.x11_c00155{left:363.420000px;}
.x93_c00155{left:364.920000px;}
.x1d_c00155{left:366.000000px;}
.x58_c00155{left:367.500000px;}
.x33_c00155{left:370.080000px;}
.x62_c00155{left:373.500000px;}
.x50_c00155{left:375.000000px;}
.xeb_c00155{left:376.500000px;}
.xb0_c00155{left:379.920000px;}
.xa7_c00155{left:382.080000px;}
.xcd_c00155{left:384.000000px;}
.x7e_c00155{left:385.920000px;}
.xd3_c00155{left:387.420000px;}
.x12_c00155{left:391.500000px;}
.xf2_c00155{left:394.500000px;}
.x40_c00155{left:395.580000px;}
.x96_c00155{left:399.000000px;}
.xa8_c00155{left:400.500000px;}
.x2_c00155{left:402.000000px;}
.xfb_c00155{left:405.000000px;}
.x51_c00155{left:408.000000px;}
.x59_c00155{left:409.500000px;}
.xc3_c00155{left:411.000000px;}
.x34_c00155{left:412.920000px;}
.xbe_c00155{left:414.000000px;}
.xd4_c00155{left:415.080000px;}
.x6f_c00155{left:416.580000px;}
.x89_c00155{left:418.920000px;}
.x8_c00155{left:421.920000px;}
.x77_c00155{left:428.580000px;}
.xc7_c00155{left:430.500000px;}
.x63_c00155{left:432.000000px;}
.x94_c00155{left:433.920000px;}
.x27_c00155{left:436.920000px;}
.x41_c00155{left:440.580000px;}
.xb7_c00155{left:442.500000px;}
.xbf_c00155{left:444.000000px;}
.xd5_c00155{left:445.500000px;}
.x13_c00155{left:447.000000px;}
.x9_c00155{left:450.000000px;}
.x52_c00155{left:451.500000px;}
.x64_c00155{left:453.000000px;}
.xa9_c00155{left:455.355000px;}
.x1e_c00155{left:456.420000px;}
.xe0_c00155{left:457.920000px;}
.x42_c00155{left:459.000000px;}
.x5a_c00155{left:463.080000px;}
.x8a_c00155{left:466.500000px;}
.x70_c00155{left:467.580000px;}
.xb8_c00155{left:472.500000px;}
.x28_c00155{left:474.420000px;}
.x97_c00155{left:477.000000px;}
.xa_c00155{left:478.920000px;}
.x7f_c00155{left:483.420000px;}
.xe1_c00155{left:484.500000px;}
.x43_c00155{left:486.420000px;}
.x65_c00155{left:487.500000px;}
.x35_c00155{left:488.580000px;}
.xaa_c00155{left:492.420000px;}
.x14_c00155{left:493.500000px;}
.x104_c00155{left:495.420000px;}
.x53_c00155{left:496.500000px;}
.xb1_c00155{left:498.000000px;}
.xe7_c00155{left:499.080000px;}
.x29_c00155{left:502.080000px;}
.x5b_c00155{left:505.500000px;}
.xdc_c00155{left:507.000000px;}
.x36_c00155{left:508.500000px;}
.x66_c00155{left:510.000000px;}
.xd6_c00155{left:511.080000px;}
.xa1_c00155{left:515.580000px;}
.x98_c00155{left:517.080000px;}
.x78_c00155{left:520.080000px;}
.xec_c00155{left:523.500000px;}
.x44_c00155{left:526.920000px;}
.xab_c00155{left:530.355000px;}
.xe8_c00155{left:531.420000px;}
.xc4_c00155{left:532.920000px;}
.xb_c00155{left:534.000000px;}
.x15_c00155{left:535.080000px;}
.x37_c00155{left:537.000000px;}
.x1f_c00155{left:538.500000px;}
.xee_c00155{left:540.000000px;}
.x71_c00155{left:541.920000px;}
.x80_c00155{left:544.920000px;}
.x67_c00155{left:549.420000px;}
.x8b_c00155{left:550.500000px;}
.x54_c00155{left:553.500000px;}
.xdd_c00155{left:555.420000px;}
.x2a_c00155{left:558.420000px;}
.x100_c00155{left:561.420000px;}
.x99_c00155{left:562.920000px;}
.xd7_c00155{left:564.000000px;}
.x20_c00155{left:565.080000px;}
.x16_c00155{left:566.355000px;}
.xac_c00155{left:568.080000px;}
.x81_c00155{left:570.000000px;}
.xfc_c00155{left:571.500000px;}
.xb2_c00155{left:573.000000px;}
.x38_c00155{left:576.000000px;}
.x68_c00155{left:579.000000px;}
.xde_c00155{left:583.080000px;}
.x72_c00155{left:584.580000px;}
.x2b_c00155{left:586.500000px;}
.x79_c00155{left:587.580000px;}
.x55_c00155{left:589.080000px;}
.xa2_c00155{left:591.000000px;}
.xf3_c00155{left:592.080000px;}
.xf7_c00155{left:595.500000px;}
.x101_c00155{left:597.000000px;}
.x9a_c00155{left:601.500000px;}
.x45_c00155{left:604.920000px;}
.xad_c00155{left:607.920000px;}
.xf8_c00155{left:609.420000px;}
.x8c_c00155{left:612.000000px;}
.x5c_c00155{left:615.000000px;}
.xc8_c00155{left:616.500000px;}
.x39_c00155{left:619.500000px;}
.x82_c00155{left:621.000000px;}
.x95_c00155{left:623.580000px;}
.xc_c00155{left:625.500000px;}
.x17_c00155{left:628.080000px;}
.xd8_c00155{left:631.500000px;}
.x56_c00155{left:634.500000px;}
.x9b_c00155{left:636.000000px;}
.x69_c00155{left:637.080000px;}
.x8d_c00155{left:639.420000px;}
.x5d_c00155{left:640.500000px;}
.x2c_c00155{left:642.000000px;}
.xc0_c00155{left:646.080000px;}
.x21_c00155{left:651.420000px;}
.xf9_c00155{left:655.080000px;}
.x73_c00155{left:657.000000px;}
.xef_c00155{left:660.000000px;}
.x7a_c00155{left:661.500000px;}
.xc9_c00155{left:664.920000px;}
.xd1_c00155{left:666.420000px;}
.xb3_c00155{left:667.920000px;}
.x6a_c00155{left:669.420000px;}
.x102_c00155{left:670.500000px;}
.x8e_c00155{left:672.000000px;}
.x18_c00155{left:674.580000px;}
.xf4_c00155{left:683.145000px;}
.xa3_c00155{left:684.420000px;}
.xe2_c00155{left:685.920000px;}
.x83_c00155{left:687.420000px;}
.x2d_c00155{left:689.580000px;}
.xdf_c00155{left:691.500000px;}
.xe9_c00155{left:693.000000px;}
.x3a_c00155{left:694.500000px;}
.xca_c00155{left:696.000000px;}
.x19_c00155{left:699.000000px;}
.xd_c00155{left:703.500000px;}
.xb9_c00155{left:706.500000px;}
.xe3_c00155{left:708.000000px;}
.x2e_c00155{left:709.920000px;}
.x5e_c00155{left:714.000000px;}
.x9c_c00155{left:717.000000px;}
@media print{
.v1_c00155{vertical-align:-5.333333pt;}
.v0_c00155{vertical-align:0.000000pt;}
.ls0_c00155{letter-spacing:0.000000pt;}
.ws0_c00155{word-spacing:-8.184320pt;}
.ws1_c00155{word-spacing:-4.005566pt;}
.ws5_c00155{word-spacing:-2.706843pt;}
.ws4_c00155{word-spacing:-2.635461pt;}
.ws8_c00155{word-spacing:-1.517144pt;}
.ws2_c00155{word-spacing:-1.084354pt;}
.ws7_c00155{word-spacing:-0.283084pt;}
.wsa_c00155{word-spacing:0.000000pt;}
.ws3_c00155{word-spacing:0.206348pt;}
.ws9_c00155{word-spacing:0.428210pt;}
.ws6_c00155{word-spacing:2.939637pt;}
.fs7_c00155{font-size:3.040000pt;}
.fs8_c00155{font-size:10.560000pt;}
.fs4_c00155{font-size:16.640000pt;}
.fs1_c00155{font-size:18.133333pt;}
.fs5_c00155{font-size:22.666667pt;}
.fs0_c00155{font-size:25.706667pt;}
.fs3_c00155{font-size:28.746667pt;}
.fs2_c00155{font-size:31.733333pt;}
.fs6_c00155{font-size:34.773333pt;}
.y0_c00155{bottom:0.000000pt;}
.yda_c00155{bottom:222.440000pt;}
.yd9_c00155{bottom:223.026667pt;}
.ydb_c00155{bottom:223.973333pt;}
.ydc_c00155{bottom:224.360000pt;}
.yd6_c00155{bottom:239.773333pt;}
.yd4_c00155{bottom:240.360000pt;}
.yd3_c00155{bottom:240.560000pt;}
.yd7_c00155{bottom:240.733333pt;}
.yd8_c00155{bottom:241.306667pt;}
.yd5_c00155{bottom:241.693333pt;}
.yd2_c00155{bottom:256.360000pt;}
.yd1_c00155{bottom:257.106667pt;}
.yce_c00155{bottom:257.693333pt;}
.yd0_c00155{bottom:258.640000pt;}
.ycf_c00155{bottom:259.026667pt;}
.ycd_c00155{bottom:273.693333pt;}
.yc7_c00155{bottom:274.440000pt;}
.ycb_c00155{bottom:275.773333pt;}
.yc8_c00155{bottom:276.360000pt;}
.yc9_c00155{bottom:276.560000pt;}
.ycc_c00155{bottom:277.306667pt;}
.yca_c00155{bottom:277.693333pt;}
.yc5_c00155{bottom:291.773333pt;}
.yc6_c00155{bottom:291.973333pt;}
.yc3_c00155{bottom:293.693333pt;}
.yc4_c00155{bottom:293.893333pt;}
.ybe_c00155{bottom:308.360000pt;}
.ybd_c00155{bottom:309.106667pt;}
.ybc_c00155{bottom:310.066667pt;}
.yc0_c00155{bottom:310.440000pt;}
.yc2_c00155{bottom:311.026667pt;}
.ybf_c00155{bottom:311.973333pt;}
.yc1_c00155{bottom:312.360000pt;}
.yb7_c00155{bottom:326.640000pt;}
.yb8_c00155{bottom:327.400000pt;}
.yba_c00155{bottom:327.773333pt;}
.ybb_c00155{bottom:329.306667pt;}
.yb9_c00155{bottom:329.693333pt;}
.yb5_c00155{bottom:344.733333pt;}
.yb6_c00155{bottom:345.106667pt;}
.yb3_c00155{bottom:346.066667pt;}
.yb1_c00155{bottom:346.640000pt;}
.yb2_c00155{bottom:347.026667pt;}
.yb4_c00155{bottom:347.973333pt;}
.yb0_c00155{bottom:360.360000pt;}
.yaf_c00155{bottom:361.306667pt;}
.yad_c00155{bottom:362.440000pt;}
.yae_c00155{bottom:363.973333pt;}
.yac_c00155{bottom:364.360000pt;}
.yaa_c00155{bottom:378.640000pt;}
.ya5_c00155{bottom:379.773333pt;}
.ya9_c00155{bottom:380.560000pt;}
.yab_c00155{bottom:380.733333pt;}
.ya8_c00155{bottom:381.306667pt;}
.ya7_c00155{bottom:381.693333pt;}
.ya6_c00155{bottom:381.893333pt;}
.ya4_c00155{bottom:382.640000pt;}
.ya1_c00155{bottom:397.106667pt;}
.ya3_c00155{bottom:397.893333pt;}
.ya2_c00155{bottom:398.066667pt;}
.ya0_c00155{bottom:398.640000pt;}
.y9f_c00155{bottom:399.026667pt;}
.y9e_c00155{bottom:399.973333pt;}
.y9d_c00155{bottom:412.360000pt;}
.y9b_c00155{bottom:413.693333pt;}
.y9c_c00155{bottom:414.066667pt;}
.y98_c00155{bottom:415.773333pt;}
.y99_c00155{bottom:416.560000pt;}
.y9a_c00155{bottom:417.693333pt;}
.y96_c00155{bottom:433.106667pt;}
.y95_c00155{bottom:433.693333pt;}
.y97_c00155{bottom:435.026667pt;}
.y93_c00155{bottom:458.440000pt;}
.y94_c00155{bottom:460.360000pt;}
.y8f_c00155{bottom:502.440000pt;}
.y91_c00155{bottom:503.226667pt;}
.y92_c00155{bottom:503.973333pt;}
.y90_c00155{bottom:504.360000pt;}
.y8c_c00155{bottom:519.773333pt;}
.y8e_c00155{bottom:520.560000pt;}
.y89_c00155{bottom:521.693333pt;}
.y8a_c00155{bottom:521.706667pt;}
.y8d_c00155{bottom:521.893333pt;}
.y8b_c00155{bottom:522.640000pt;}
.y86_c00155{bottom:536.360000pt;}
.y87_c00155{bottom:537.306667pt;}
.y85_c00155{bottom:538.066667pt;}
.y88_c00155{bottom:539.226667pt;}
.y83_c00155{bottom:552.560000pt;}
.y7e_c00155{bottom:553.133333pt;}
.y7a_c00155{bottom:553.693333pt;}
.y7f_c00155{bottom:554.440000pt;}
.y7b_c00155{bottom:555.400000pt;}
.y81_c00155{bottom:555.773333pt;}
.y84_c00155{bottom:556.360000pt;}
.y7c_c00155{bottom:556.560000pt;}
.y80_c00155{bottom:556.733333pt;}
.y82_c00155{bottom:557.693333pt;}
.y7d_c00155{bottom:559.226667pt;}
.y73_c00155{bottom:571.026667pt;}
.y77_c00155{bottom:572.360000pt;}
.y79_c00155{bottom:572.733333pt;}
.y78_c00155{bottom:573.106667pt;}
.y75_c00155{bottom:573.893333pt;}
.y76_c00155{bottom:574.066667pt;}
.y74_c00155{bottom:575.026667pt;}
.y72_c00155{bottom:588.360000pt;}
.y6e_c00155{bottom:590.066667pt;}
.y71_c00155{bottom:590.440000pt;}
.y6f_c00155{bottom:591.400000pt;}
.y70_c00155{bottom:592.360000pt;}
.y6a_c00155{bottom:607.026667pt;}
.y69_c00155{bottom:607.773333pt;}
.y6b_c00155{bottom:607.973333pt;}
.y6d_c00155{bottom:608.733333pt;}
.y6c_c00155{bottom:609.693333pt;}
.y64_c00155{bottom:624.360000pt;}
.y65_c00155{bottom:625.106667pt;}
.y66_c00155{bottom:626.066667pt;}
.y67_c00155{bottom:626.640000pt;}
.y68_c00155{bottom:627.026667pt;}
.y63_c00155{bottom:641.693333pt;}
.y62_c00155{bottom:642.440000pt;}
.y5f_c00155{bottom:643.026667pt;}
.y5d_c00155{bottom:643.400000pt;}
.y5e_c00155{bottom:644.360000pt;}
.y60_c00155{bottom:644.560000pt;}
.y61_c00155{bottom:645.706667pt;}
.y5c_c00155{bottom:659.026667pt;}
.y58_c00155{bottom:659.773333pt;}
.y59_c00155{bottom:660.733333pt;}
.y5b_c00155{bottom:661.106667pt;}
.y5a_c00155{bottom:661.693333pt;}
.y50_c00155{bottom:676.360000pt;}
.y54_c00155{bottom:676.733333pt;}
.y56_c00155{bottom:677.106667pt;}
.y51_c00155{bottom:677.306667pt;}
.y55_c00155{bottom:677.693333pt;}
.y53_c00155{bottom:678.440000pt;}
.y57_c00155{bottom:679.026667pt;}
.y52_c00155{bottom:680.360000pt;}
.y4d_c00155{bottom:693.693333pt;}
.y4f_c00155{bottom:694.440000pt;}
.y4e_c00155{bottom:694.640000pt;}
.y49_c00155{bottom:695.026667pt;}
.y4b_c00155{bottom:695.773333pt;}
.y4c_c00155{bottom:695.973333pt;}
.y4a_c00155{bottom:697.693333pt;}
.y48_c00155{bottom:711.973333pt;}
.y47_c00155{bottom:712.360000pt;}
.y46_c00155{bottom:713.106667pt;}
.y44_c00155{bottom:714.640000pt;}
.y45_c00155{bottom:715.026667pt;}
.y42_c00155{bottom:729.693333pt;}
.y40_c00155{bottom:730.440000pt;}
.y43_c00155{bottom:730.640000pt;}
.y41_c00155{bottom:731.400000pt;}
.y3f_c00155{bottom:732.360000pt;}
.y3e_c00155{bottom:747.773333pt;}
.y3c_c00155{bottom:749.306667pt;}
.y3b_c00155{bottom:749.693333pt;}
.y3d_c00155{bottom:750.640000pt;}
.y39_c00155{bottom:765.106667pt;}
.y3a_c00155{bottom:767.026667pt;}
.y35_c00155{bottom:781.693333pt;}
.y38_c00155{bottom:782.440000pt;}
.y34_c00155{bottom:784.360000pt;}
.y36_c00155{bottom:784.560000pt;}
.y37_c00155{bottom:785.306667pt;}
.y33_c00155{bottom:799.773333pt;}
.y2e_c00155{bottom:801.106667pt;}
.y32_c00155{bottom:801.893333pt;}
.y31_c00155{bottom:802.066667pt;}
.y30_c00155{bottom:802.640000pt;}
.y2f_c00155{bottom:803.026667pt;}
.y2d_c00155{bottom:816.360000pt;}
.y2c_c00155{bottom:817.106667pt;}
.y2b_c00155{bottom:817.493333pt;}
.y2a_c00155{bottom:818.440000pt;}
.y29_c00155{bottom:820.360000pt;}
.y28_c00155{bottom:836.560000pt;}
.y26_c00155{bottom:837.306667pt;}
.y27_c00155{bottom:837.693333pt;}
.y22_c00155{bottom:852.733333pt;}
.y25_c00155{bottom:853.693333pt;}
.y24_c00155{bottom:853.893333pt;}
.y20_c00155{bottom:854.066667pt;}
.y21_c00155{bottom:855.026667pt;}
.y23_c00155{bottom:855.973333pt;}
.y19_c00155{bottom:868.360000pt;}
.y1a_c00155{bottom:870.066667pt;}
.y1f_c00155{bottom:870.440000pt;}
.y1c_c00155{bottom:871.400000pt;}
.y1b_c00155{bottom:871.973333pt;}
.y1d_c00155{bottom:872.360000pt;}
.y1e_c00155{bottom:873.306667pt;}
.y17_c00155{bottom:887.773333pt;}
.y14_c00155{bottom:888.560000pt;}
.y16_c00155{bottom:888.733333pt;}
.y15_c00155{bottom:889.693333pt;}
.y18_c00155{bottom:890.640000pt;}
.y11_c00155{bottom:905.106667pt;}
.y13_c00155{bottom:906.066667pt;}
.y10_c00155{bottom:906.640000pt;}
.yf_c00155{bottom:907.026667pt;}
.y12_c00155{bottom:907.973333pt;}
.ye_c00155{bottom:921.306667pt;}
.yd_c00155{bottom:921.693333pt;}
.y8_c00155{bottom:922.440000pt;}
.yb_c00155{bottom:923.400000pt;}
.y9_c00155{bottom:923.973333pt;}
.ya_c00155{bottom:924.360000pt;}
.yc_c00155{bottom:925.306667pt;}
.y4_c00155{bottom:939.400000pt;}
.y3_c00155{bottom:939.773333pt;}
.y5_c00155{bottom:940.733333pt;}
.y6_c00155{bottom:941.693333pt;}
.y7_c00155{bottom:941.893333pt;}
.y2_c00155{bottom:975.600000pt;}
.y1_c00155{bottom:977.693333pt;}
.h8_c00155{height:3.739141pt;}
.h9_c00155{height:12.988594pt;}
.h5_c00155{height:20.466875pt;}
.h2_c00155{height:22.303646pt;}
.h6_c00155{height:27.879557pt;}
.h1_c00155{height:31.618698pt;}
.h4_c00155{height:35.357839pt;}
.h3_c00155{height:39.031380pt;}
.h7_c00155{height:42.770521pt;}
.h0_c00155{height:1186.666667pt;}
.w0_c00155{width:782.666667pt;}
.x0_c00155{left:0.000000pt;}
.xf5_c00155{left:133.333333pt;}
.xba_c00155{left:134.293333pt;}
.x3_c00155{left:136.373333pt;}
.x1_c00155{left:137.706667pt;}
.xf1_c00155{left:148.000000pt;}
.xce_c00155{left:149.333333pt;}
.x4a_c00155{left:150.293333pt;}
.x7b_c00155{left:152.373333pt;}
.x8f_c00155{left:153.706667pt;}
.x22_c00155{left:157.706667pt;}
.x84_c00155{left:160.373333pt;}
.x1a_c00155{left:161.333333pt;}
.x103_c00155{left:166.666667pt;}
.xd9_c00155{left:167.626667pt;}
.x74_c00155{left:170.293333pt;}
.xae_c00155{left:172.000000pt;}
.x90_c00155{left:175.626667pt;}
.x2f_c00155{left:177.333333pt;}
.xcf_c00155{left:178.293333pt;}
.x9d_c00155{left:179.626667pt;}
.xfd_c00155{left:181.706667pt;}
.x23_c00155{left:183.040000pt;}
.xda_c00155{left:184.373333pt;}
.x4_c00155{left:186.666667pt;}
.xbb_c00155{left:188.000000pt;}
.x5f_c00155{left:189.333333pt;}
.x3b_c00155{left:190.666667pt;}
.x91_c00155{left:192.000000pt;}
.x85_c00155{left:193.333333pt;}
.xe4_c00155{left:196.000000pt;}
.x4b_c00155{left:199.040000pt;}
.xfe_c00155{left:200.000000pt;}
.xb4_c00155{left:201.333333pt;}
.xa4_c00155{left:203.426667pt;}
.x6b_c00155{left:204.960000pt;}
.xe_c00155{left:206.293333pt;}
.xdb_c00155{left:209.333333pt;}
.x46_c00155{left:210.293333pt;}
.x30_c00155{left:214.293333pt;}
.x75_c00155{left:216.573333pt;}
.x9e_c00155{left:218.293333pt;}
.xed_c00155{left:219.626667pt;}
.x24_c00155{left:224.000000pt;}
.x57_c00155{left:227.040000pt;}
.xbc_c00155{left:228.000000pt;}
.xc5_c00155{left:229.333333pt;}
.x5_c00155{left:230.666667pt;}
.x3c_c00155{left:232.960000pt;}
.xd0_c00155{left:234.666667pt;}
.xa5_c00155{left:237.333333pt;}
.x47_c00155{left:239.040000pt;}
.x6c_c00155{left:240.373333pt;}
.x6d_c00155{left:241.333333pt;}
.x1b_c00155{left:244.373333pt;}
.xc1_c00155{left:245.706667pt;}
.xcb_c00155{left:246.666667pt;}
.xf0_c00155{left:248.960000pt;}
.x3d_c00155{left:251.040000pt;}
.x86_c00155{left:252.373333pt;}
.xb5_c00155{left:254.666667pt;}
.x31_c00155{left:256.000000pt;}
.x4c_c00155{left:257.333333pt;}
.xd2_c00155{left:258.666667pt;}
.xf6_c00155{left:260.373333pt;}
.xc6_c00155{left:261.333333pt;}
.x48_c00155{left:262.666667pt;}
.xf_c00155{left:264.000000pt;}
.xe5_c00155{left:265.706667pt;}
.x4d_c00155{left:266.666667pt;}
.xaf_c00155{left:268.373333pt;}
.x60_c00155{left:269.706667pt;}
.x9f_c00155{left:270.666667pt;}
.x6_c00155{left:271.626667pt;}
.x87_c00155{left:273.333333pt;}
.x3e_c00155{left:274.666667pt;}
.x6e_c00155{left:276.000000pt;}
.x25_c00155{left:277.333333pt;}
.xfa_c00155{left:278.666667pt;}
.x4e_c00155{left:281.333333pt;}
.x10_c00155{left:282.293333pt;}
.xb6_c00155{left:284.000000pt;}
.xff_c00155{left:287.040000pt;}
.xa6_c00155{left:288.000000pt;}
.xa0_c00155{left:288.960000pt;}
.x49_c00155{left:292.000000pt;}
.x61_c00155{left:294.666667pt;}
.x7c_c00155{left:295.626667pt;}
.x92_c00155{left:297.333333pt;}
.x88_c00155{left:298.293333pt;}
.xcc_c00155{left:300.373333pt;}
.x1c_c00155{left:301.333333pt;}
.x76_c00155{left:302.293333pt;}
.x32_c00155{left:304.373333pt;}
.xe6_c00155{left:305.333333pt;}
.x4f_c00155{left:306.293333pt;}
.xc2_c00155{left:309.333333pt;}
.x26_c00155{left:312.000000pt;}
.x7_c00155{left:312.960000pt;}
.x3f_c00155{left:314.666667pt;}
.xbd_c00155{left:315.626667pt;}
.x7d_c00155{left:316.960000pt;}
.xea_c00155{left:320.000000pt;}
.x11_c00155{left:323.040000pt;}
.x93_c00155{left:324.373333pt;}
.x1d_c00155{left:325.333333pt;}
.x58_c00155{left:326.666667pt;}
.x33_c00155{left:328.960000pt;}
.x62_c00155{left:332.000000pt;}
.x50_c00155{left:333.333333pt;}
.xeb_c00155{left:334.666667pt;}
.xb0_c00155{left:337.706667pt;}
.xa7_c00155{left:339.626667pt;}
.xcd_c00155{left:341.333333pt;}
.x7e_c00155{left:343.040000pt;}
.xd3_c00155{left:344.373333pt;}
.x12_c00155{left:348.000000pt;}
.xf2_c00155{left:350.666667pt;}
.x40_c00155{left:351.626667pt;}
.x96_c00155{left:354.666667pt;}
.xa8_c00155{left:356.000000pt;}
.x2_c00155{left:357.333333pt;}
.xfb_c00155{left:360.000000pt;}
.x51_c00155{left:362.666667pt;}
.x59_c00155{left:364.000000pt;}
.xc3_c00155{left:365.333333pt;}
.x34_c00155{left:367.040000pt;}
.xbe_c00155{left:368.000000pt;}
.xd4_c00155{left:368.960000pt;}
.x6f_c00155{left:370.293333pt;}
.x89_c00155{left:372.373333pt;}
.x8_c00155{left:375.040000pt;}
.x77_c00155{left:380.960000pt;}
.xc7_c00155{left:382.666667pt;}
.x63_c00155{left:384.000000pt;}
.x94_c00155{left:385.706667pt;}
.x27_c00155{left:388.373333pt;}
.x41_c00155{left:391.626667pt;}
.xb7_c00155{left:393.333333pt;}
.xbf_c00155{left:394.666667pt;}
.xd5_c00155{left:396.000000pt;}
.x13_c00155{left:397.333333pt;}
.x9_c00155{left:400.000000pt;}
.x52_c00155{left:401.333333pt;}
.x64_c00155{left:402.666667pt;}
.xa9_c00155{left:404.760000pt;}
.x1e_c00155{left:405.706667pt;}
.xe0_c00155{left:407.040000pt;}
.x42_c00155{left:408.000000pt;}
.x5a_c00155{left:411.626667pt;}
.x8a_c00155{left:414.666667pt;}
.x70_c00155{left:415.626667pt;}
.xb8_c00155{left:420.000000pt;}
.x28_c00155{left:421.706667pt;}
.x97_c00155{left:424.000000pt;}
.xa_c00155{left:425.706667pt;}
.x7f_c00155{left:429.706667pt;}
.xe1_c00155{left:430.666667pt;}
.x43_c00155{left:432.373333pt;}
.x65_c00155{left:433.333333pt;}
.x35_c00155{left:434.293333pt;}
.xaa_c00155{left:437.706667pt;}
.x14_c00155{left:438.666667pt;}
.x104_c00155{left:440.373333pt;}
.x53_c00155{left:441.333333pt;}
.xb1_c00155{left:442.666667pt;}
.xe7_c00155{left:443.626667pt;}
.x29_c00155{left:446.293333pt;}
.x5b_c00155{left:449.333333pt;}
.xdc_c00155{left:450.666667pt;}
.x36_c00155{left:452.000000pt;}
.x66_c00155{left:453.333333pt;}
.xd6_c00155{left:454.293333pt;}
.xa1_c00155{left:458.293333pt;}
.x98_c00155{left:459.626667pt;}
.x78_c00155{left:462.293333pt;}
.xec_c00155{left:465.333333pt;}
.x44_c00155{left:468.373333pt;}
.xab_c00155{left:471.426667pt;}
.xe8_c00155{left:472.373333pt;}
.xc4_c00155{left:473.706667pt;}
.xb_c00155{left:474.666667pt;}
.x15_c00155{left:475.626667pt;}
.x37_c00155{left:477.333333pt;}
.x1f_c00155{left:478.666667pt;}
.xee_c00155{left:480.000000pt;}
.x71_c00155{left:481.706667pt;}
.x80_c00155{left:484.373333pt;}
.x67_c00155{left:488.373333pt;}
.x8b_c00155{left:489.333333pt;}
.x54_c00155{left:492.000000pt;}
.xdd_c00155{left:493.706667pt;}
.x2a_c00155{left:496.373333pt;}
.x100_c00155{left:499.040000pt;}
.x99_c00155{left:500.373333pt;}
.xd7_c00155{left:501.333333pt;}
.x20_c00155{left:502.293333pt;}
.x16_c00155{left:503.426667pt;}
.xac_c00155{left:504.960000pt;}
.x81_c00155{left:506.666667pt;}
.xfc_c00155{left:508.000000pt;}
.xb2_c00155{left:509.333333pt;}
.x38_c00155{left:512.000000pt;}
.x68_c00155{left:514.666667pt;}
.xde_c00155{left:518.293333pt;}
.x72_c00155{left:519.626667pt;}
.x2b_c00155{left:521.333333pt;}
.x79_c00155{left:522.293333pt;}
.x55_c00155{left:523.626667pt;}
.xa2_c00155{left:525.333333pt;}
.xf3_c00155{left:526.293333pt;}
.xf7_c00155{left:529.333333pt;}
.x101_c00155{left:530.666667pt;}
.x9a_c00155{left:534.666667pt;}
.x45_c00155{left:537.706667pt;}
.xad_c00155{left:540.373333pt;}
.xf8_c00155{left:541.706667pt;}
.x8c_c00155{left:544.000000pt;}
.x5c_c00155{left:546.666667pt;}
.xc8_c00155{left:548.000000pt;}
.x39_c00155{left:550.666667pt;}
.x82_c00155{left:552.000000pt;}
.x95_c00155{left:554.293333pt;}
.xc_c00155{left:556.000000pt;}
.x17_c00155{left:558.293333pt;}
.xd8_c00155{left:561.333333pt;}
.x56_c00155{left:564.000000pt;}
.x9b_c00155{left:565.333333pt;}
.x69_c00155{left:566.293333pt;}
.x8d_c00155{left:568.373333pt;}
.x5d_c00155{left:569.333333pt;}
.x2c_c00155{left:570.666667pt;}
.xc0_c00155{left:574.293333pt;}
.x21_c00155{left:579.040000pt;}
.xf9_c00155{left:582.293333pt;}
.x73_c00155{left:584.000000pt;}
.xef_c00155{left:586.666667pt;}
.x7a_c00155{left:588.000000pt;}
.xc9_c00155{left:591.040000pt;}
.xd1_c00155{left:592.373333pt;}
.xb3_c00155{left:593.706667pt;}
.x6a_c00155{left:595.040000pt;}
.x102_c00155{left:596.000000pt;}
.x8e_c00155{left:597.333333pt;}
.x18_c00155{left:599.626667pt;}
.xf4_c00155{left:607.240000pt;}
.xa3_c00155{left:608.373333pt;}
.xe2_c00155{left:609.706667pt;}
.x83_c00155{left:611.040000pt;}
.x2d_c00155{left:612.960000pt;}
.xdf_c00155{left:614.666667pt;}
.xe9_c00155{left:616.000000pt;}
.x3a_c00155{left:617.333333pt;}
.xca_c00155{left:618.666667pt;}
.x19_c00155{left:621.333333pt;}
.xd_c00155{left:625.333333pt;}
.xb9_c00155{left:628.000000pt;}
.xe3_c00155{left:629.333333pt;}
.x2e_c00155{left:631.040000pt;}
.x5e_c00155{left:634.666667pt;}
.x9c_c00155{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6a15da8ea031d2780ee32a55.woff2')format("woff");}.ff1_c00156{font-family:ff1_c00156;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mce_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);}
.md8_c00156{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.m3a_c00156{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.mf_c00156{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m89_c00156{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mac_c00156{transform:matrix(0.369666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369666,0.000000,0.000000,0.250000,0,0);}
.m56_c00156{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m9f_c00156{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m80_c00156{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m71_c00156{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.ma6_c00156{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m42_c00156{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.mc6_c00156{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m39_c00156{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.mcc_c00156{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m6a_c00156{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.md6_c00156{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m1d_c00156{transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);}
.md0_c00156{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m78_c00156{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.maa_c00156{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.mbe_c00156{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mba_c00156{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m4b_c00156{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);}
.me0_c00156{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m38_c00156{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m51_c00156{transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);}
.m37_c00156{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m5b_c00156{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m6b_c00156{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m68_c00156{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m7c_c00156{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.m3d_c00156{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.m1e_c00156{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m4f_c00156{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.md2_c00156{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m40_c00156{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mbd_c00156{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m62_c00156{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m4e_c00156{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m47_c00156{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.ma3_c00156{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.mb0_c00156{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m6c_c00156{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.m9_c00156{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m3b_c00156{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.mb1_c00156{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m8a_c00156{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m8e_c00156{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mde_c00156{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m12_c00156{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m3_c00156{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.md9_c00156{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.mdf_c00156{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m63_c00156{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mc9_c00156{transform:matrix(0.435529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435529,0.000000,0.000000,0.250000,0,0);}
.m69_c00156{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m9d_c00156{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.mcb_c00156{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.mc_c00156{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m7b_c00156{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m3c_c00156{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m6d_c00156{transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);}
.m2d_c00156{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m3f_c00156{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.mb2_c00156{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.ma7_c00156{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m20_c00156{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m90_c00156{transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);}
.m1f_c00156{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m41_c00156{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m36_c00156{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m17_c00156{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.maf_c00156{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m79_c00156{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.m5f_c00156{transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);}
.mbc_c00156{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.m9a_c00156{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m44_c00156{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.m55_c00156{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m8f_c00156{transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);}
.mb9_c00156{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m60_c00156{transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);}
.ma0_c00156{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m35_c00156{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m65_c00156{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m10_c00156{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.ma8_c00156{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m15_c00156{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m1_c00156{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m9c_c00156{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m34_c00156{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.me1_c00156{transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);}
.mc1_c00156{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.ma_c00156{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_c00156{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.mb5_c00156{transform:matrix(0.502783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502783,0.000000,0.000000,0.250000,0,0);}
.mdb_c00156{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m7e_c00156{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mc2_c00156{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.ma2_c00156{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.mca_c00156{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m54_c00156{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.md7_c00156{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.mda_c00156{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m6e_c00156{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.ma1_c00156{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m82_c00156{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m87_c00156{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m84_c00156{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m91_c00156{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m67_c00156{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.mc0_c00156{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m95_c00156{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.md5_c00156{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m50_c00156{transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);}
.mb_c00156{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m7d_c00156{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m49_c00156{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m5_c00156{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m8d_c00156{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m30_c00156{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m7_c00156{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m6_c00156{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m9e_c00156{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m7f_c00156{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.me_c00156{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m66_c00156{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mb4_c00156{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m86_c00156{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mc3_c00156{transform:matrix(0.539412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539412,0.000000,0.000000,0.250000,0,0);}
.m1c_c00156{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m76_c00156{transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);}
.m5e_c00156{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_c00156{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m9b_c00156{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.mc7_c00156{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m99_c00156{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m6f_c00156{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.md_c00156{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m29_c00156{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mbb_c00156{transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);}
.m27_c00156{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m81_c00156{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m22_c00156{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.me2_c00156{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m46_c00156{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m2c_c00156{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m8b_c00156{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m2a_c00156{transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);}
.m24_c00156{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m73_c00156{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m32_c00156{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m72_c00156{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m57_c00156{transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);}
.m96_c00156{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m74_c00156{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.mb8_c00156{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.md1_c00156{transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);}
.mb3_c00156{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.md4_c00156{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m5a_c00156{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m58_c00156{transform:matrix(0.565441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565441,0.000000,0.000000,0.250000,0,0);}
.m8c_c00156{transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);}
.m75_c00156{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m13_c00156{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m97_c00156{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.mbf_c00156{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m21_c00156{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m61_c00156{transform:matrix(0.578676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578676,0.000000,0.000000,0.250000,0,0);}
.m85_c00156{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m2_c00156{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m2e_c00156{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.ma4_c00156{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m3e_c00156{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m92_c00156{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mc5_c00156{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m4a_c00156{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m7a_c00156{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m4c_c00156{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m25_c00156{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m45_c00156{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.m52_c00156{transform:matrix(0.618257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618257,0.000000,0.000000,0.250000,0,0);}
.m14_c00156{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.mcd_c00156{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);}
.mae_c00156{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m53_c00156{transform:matrix(0.633529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633529,0.000000,0.000000,0.250000,0,0);}
.m31_c00156{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m5c_c00156{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.mc4_c00156{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mad_c00156{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m26_c00156{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m4d_c00156{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.m98_c00156{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m93_c00156{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m11_c00156{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m0_c00156{transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);}
.mdc_c00156{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m5d_c00156{transform:matrix(0.663971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.663971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.663971,0.000000,0.000000,0.250000,0,0);}
.m83_c00156{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m59_c00156{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m4_c00156{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.ma9_c00156{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mb6_c00156{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mb7_c00156{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.mab_c00156{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m94_c00156{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);}
.ma5_c00156{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.mc8_c00156{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.md3_c00156{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mdd_c00156{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m33_c00156{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m16_c00156{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m2f_c00156{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m70_c00156{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.mcf_c00156{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m48_c00156{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m1b_c00156{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m2b_c00156{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m1a_c00156{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m28_c00156{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m19_c00156{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m43_c00156{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m23_c00156{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.m8_c00156{transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);}
.m88_c00156{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m64_c00156{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-2.354287px;}
.ws1_c00156{word-spacing:0.000000px;}
.fc0_c00156{color:transparent;}
.fs8_c00156{font-size:3.420000px;}
.fs5_c00156{font-size:11.880000px;}
.fs9_c00156{font-size:13.620000px;}
.fs0_c00156{font-size:18.720000px;}
.fs7_c00156{font-size:20.400000px;}
.fs3_c00156{font-size:25.500000px;}
.fs1_c00156{font-size:28.920000px;}
.fs4_c00156{font-size:32.340000px;}
.fs2_c00156{font-size:35.700000px;}
.fs6_c00156{font-size:39.120000px;}
.y0_c00156{bottom:0.000000px;}
.y3_c00156{bottom:231.630000px;}
.ydb_c00156{bottom:257.745000px;}
.ydd_c00156{bottom:258.825000px;}
.yda_c00156{bottom:259.905000px;}
.yde_c00156{bottom:260.130000px;}
.ydc_c00156{bottom:260.970000px;}
.yd5_c00156{bottom:276.405000px;}
.yd6_c00156{bottom:277.245000px;}
.yd8_c00156{bottom:278.325000px;}
.yd4_c00156{bottom:279.405000px;}
.yd9_c00156{bottom:279.630000px;}
.yd7_c00156{bottom:280.470000px;}
.yd1_c00156{bottom:296.745000px;}
.yd0_c00156{bottom:298.905000px;}
.yd2_c00156{bottom:299.970000px;}
.yd3_c00156{bottom:300.405000px;}
.yce_c00156{bottom:315.405000px;}
.yca_c00156{bottom:316.245000px;}
.ycc_c00156{bottom:318.405000px;}
.ycd_c00156{bottom:318.630000px;}
.ycb_c00156{bottom:319.470000px;}
.ycf_c00156{bottom:319.905000px;}
.yc7_c00156{bottom:334.275000px;}
.yc4_c00156{bottom:334.905000px;}
.yc1_c00156{bottom:337.245000px;}
.yc2_c00156{bottom:338.130000px;}
.yc5_c00156{bottom:338.325000px;}
.yc8_c00156{bottom:339.405000px;}
.yc9_c00156{bottom:339.630000px;}
.yc3_c00156{bottom:340.470000px;}
.yc6_c00156{bottom:342.630000px;}
.ybf_c00156{bottom:354.405000px;}
.ybe_c00156{bottom:355.470000px;}
.ybb_c00156{bottom:355.905000px;}
.ybd_c00156{bottom:356.745000px;}
.yc0_c00156{bottom:357.630000px;}
.ybc_c00156{bottom:358.470000px;}
.yba_c00156{bottom:358.905000px;}
.yb9_c00156{bottom:359.970000px;}
.yb5_c00156{bottom:375.825000px;}
.yb7_c00156{bottom:376.245000px;}
.yb6_c00156{bottom:377.970000px;}
.yb8_c00156{bottom:378.405000px;}
.yb4_c00156{bottom:379.470000px;}
.yb2_c00156{bottom:395.745000px;}
.yb3_c00156{bottom:396.825000px;}
.yb1_c00156{bottom:397.470000px;}
.yaf_c00156{bottom:397.905000px;}
.yb0_c00156{bottom:398.130000px;}
.yae_c00156{bottom:398.970000px;}
.yaa_c00156{bottom:415.245000px;}
.yad_c00156{bottom:416.970000px;}
.ya9_c00156{bottom:417.405000px;}
.yab_c00156{bottom:417.630000px;}
.yac_c00156{bottom:418.905000px;}
.ya7_c00156{bottom:434.745000px;}
.ya6_c00156{bottom:436.245000px;}
.ya4_c00156{bottom:436.905000px;}
.ya8_c00156{bottom:437.325000px;}
.ya3_c00156{bottom:437.970000px;}
.ya5_c00156{bottom:438.405000px;}
.ya2_c00156{bottom:454.245000px;}
.ya0_c00156{bottom:455.745000px;}
.y9f_c00156{bottom:456.630000px;}
.y9d_c00156{bottom:456.825000px;}
.ya1_c00156{bottom:457.470000px;}
.y9e_c00156{bottom:457.905000px;}
.y9c_c00156{bottom:474.825000px;}
.y98_c00156{bottom:475.245000px;}
.y9b_c00156{bottom:477.405000px;}
.y99_c00156{bottom:477.420000px;}
.y9a_c00156{bottom:478.470000px;}
.y97_c00156{bottom:507.405000px;}
.y96_c00156{bottom:509.550000px;}
.y93_c00156{bottom:521.325000px;}
.y91_c00156{bottom:522.405000px;}
.y90_c00156{bottom:522.630000px;}
.y92_c00156{bottom:523.470000px;}
.y94_c00156{bottom:523.695000px;}
.y95_c00156{bottom:524.550000px;}
.y8f_c00156{bottom:535.470000px;}
.y8e_c00156{bottom:536.325000px;}
.y8c_c00156{bottom:537.405000px;}
.y8b_c00156{bottom:538.470000px;}
.y8d_c00156{bottom:538.695000px;}
.y8a_c00156{bottom:551.550000px;}
.y87_c00156{bottom:552.405000px;}
.y86_c00156{bottom:552.630000px;}
.y88_c00156{bottom:553.470000px;}
.y89_c00156{bottom:554.550000px;}
.y82_c00156{bottom:583.245000px;}
.y84_c00156{bottom:584.130000px;}
.y85_c00156{bottom:584.325000px;}
.y81_c00156{bottom:585.405000px;}
.y83_c00156{bottom:586.470000px;}
.y7d_c00156{bottom:602.745000px;}
.y7e_c00156{bottom:603.630000px;}
.y7b_c00156{bottom:604.905000px;}
.y7c_c00156{bottom:604.920000px;}
.y7f_c00156{bottom:605.970000px;}
.y80_c00156{bottom:606.405000px;}
.y78_c00156{bottom:624.405000px;}
.y7a_c00156{bottom:624.630000px;}
.y79_c00156{bottom:625.905000px;}
.y74_c00156{bottom:641.745000px;}
.y77_c00156{bottom:643.245000px;}
.y75_c00156{bottom:643.905000px;}
.y76_c00156{bottom:645.405000px;}
.y71_c00156{bottom:662.745000px;}
.y72_c00156{bottom:663.825000px;}
.y6f_c00156{bottom:664.905000px;}
.y70_c00156{bottom:664.920000px;}
.y73_c00156{bottom:665.970000px;}
.y6d_c00156{bottom:682.245000px;}
.y6a_c00156{bottom:682.905000px;}
.y6b_c00156{bottom:683.130000px;}
.y6e_c00156{bottom:684.405000px;}
.y6c_c00156{bottom:684.420000px;}
.y69_c00156{bottom:700.905000px;}
.y66_c00156{bottom:701.745000px;}
.y68_c00156{bottom:702.825000px;}
.y67_c00156{bottom:703.920000px;}
.y62_c00156{bottom:721.245000px;}
.y65_c00156{bottom:722.325000px;}
.y64_c00156{bottom:723.405000px;}
.y63_c00156{bottom:723.420000px;}
.y60_c00156{bottom:748.050000px;}
.y5f_c00156{bottom:748.905000px;}
.y61_c00156{bottom:749.130000px;}
.y5d_c00156{bottom:749.550000px;}
.y5c_c00156{bottom:749.970000px;}
.y5e_c00156{bottom:751.050000px;}
.y5b_c00156{bottom:770.745000px;}
.y5a_c00156{bottom:771.825000px;}
.y59_c00156{bottom:772.470000px;}
.y58_c00156{bottom:772.905000px;}
.y56_c00156{bottom:817.905000px;}
.y52_c00156{bottom:818.745000px;}
.y57_c00156{bottom:819.405000px;}
.y55_c00156{bottom:819.825000px;}
.y51_c00156{bottom:821.130000px;}
.y54_c00156{bottom:821.970000px;}
.y53_c00156{bottom:822.405000px;}
.y4d_c00156{bottom:838.245000px;}
.y50_c00156{bottom:839.745000px;}
.y4b_c00156{bottom:840.405000px;}
.y4e_c00156{bottom:840.630000px;}
.y4c_c00156{bottom:841.470000px;}
.y4f_c00156{bottom:841.905000px;}
.y47_c00156{bottom:856.275000px;}
.y43_c00156{bottom:856.905000px;}
.y44_c00156{bottom:858.825000px;}
.y48_c00156{bottom:859.245000px;}
.y45_c00156{bottom:860.130000px;}
.y4a_c00156{bottom:860.970000px;}
.y49_c00156{bottom:861.405000px;}
.y46_c00156{bottom:863.130000px;}
.y3f_c00156{bottom:876.405000px;}
.y41_c00156{bottom:877.470000px;}
.y3d_c00156{bottom:878.745000px;}
.y3c_c00156{bottom:879.405000px;}
.y42_c00156{bottom:879.825000px;}
.y40_c00156{bottom:880.470000px;}
.y3e_c00156{bottom:880.905000px;}
.y3a_c00156{bottom:897.405000px;}
.y39_c00156{bottom:898.245000px;}
.y3b_c00156{bottom:900.630000px;}
.y37_c00156{bottom:917.745000px;}
.y35_c00156{bottom:918.630000px;}
.y38_c00156{bottom:919.470000px;}
.y36_c00156{bottom:919.905000px;}
.y2f_c00156{bottom:935.775000px;}
.y32_c00156{bottom:937.245000px;}
.y2d_c00156{bottom:938.130000px;}
.y2c_c00156{bottom:938.325000px;}
.y30_c00156{bottom:939.405000px;}
.y31_c00156{bottom:939.630000px;}
.y33_c00156{bottom:940.470000px;}
.y34_c00156{bottom:940.905000px;}
.y2e_c00156{bottom:942.630000px;}
.y2b_c00156{bottom:955.905000px;}
.y22_c00156{bottom:956.745000px;}
.y25_c00156{bottom:956.970000px;}
.y26_c00156{bottom:957.405000px;}
.y21_c00156{bottom:958.050000px;}
.y2a_c00156{bottom:958.245000px;}
.y23_c00156{bottom:958.905000px;}
.y27_c00156{bottom:959.130000px;}
.y29_c00156{bottom:959.325000px;}
.y24_c00156{bottom:959.970000px;}
.y28_c00156{bottom:960.405000px;}
.y1f_c00156{bottom:975.405000px;}
.y20_c00156{bottom:978.630000px;}
.y1d_c00156{bottom:994.275000px;}
.y19_c00156{bottom:994.905000px;}
.y17_c00156{bottom:995.745000px;}
.y18_c00156{bottom:995.970000px;}
.y16_c00156{bottom:997.905000px;}
.y1b_c00156{bottom:998.130000px;}
.y1a_c00156{bottom:998.325000px;}
.y1e_c00156{bottom:999.405000px;}
.y1c_c00156{bottom:1002.630000px;}
.y11_c00156{bottom:1013.775000px;}
.y12_c00156{bottom:1014.405000px;}
.y14_c00156{bottom:1015.680000px;}
.y15_c00156{bottom:1016.745000px;}
.yf_c00156{bottom:1017.630000px;}
.y13_c00156{bottom:1018.905000px;}
.y10_c00156{bottom:1020.630000px;}
.yd_c00156{bottom:1034.970000px;}
.yb_c00156{bottom:1035.405000px;}
.y8_c00156{bottom:1036.245000px;}
.yc_c00156{bottom:1036.470000px;}
.y7_c00156{bottom:1037.130000px;}
.ye_c00156{bottom:1037.325000px;}
.ya_c00156{bottom:1037.970000px;}
.y9_c00156{bottom:1038.405000px;}
.y4_c00156{bottom:1060.245000px;}
.y5_c00156{bottom:1061.970000px;}
.y6_c00156{bottom:1062.405000px;}
.y2_c00156{bottom:1099.905000px;}
.y1_c00156{bottom:1101.630000px;}
.h9_c00156{height:4.206533px;}
.h6_c00156{height:14.612168px;}
.ha_c00156{height:16.752334px;}
.h1_c00156{height:23.025234px;}
.h8_c00156{height:25.091602px;}
.h4_c00156{height:31.364502px;}
.h2_c00156{height:35.571035px;}
.h5_c00156{height:39.777568px;}
.h3_c00156{height:43.910303px;}
.h7_c00156{height:48.116836px;}
.h0_c00156{height:1335.000000px;}
.w0_c00156{width:880.500000px;}
.x0_c00156{left:0.000000px;}
.xd2_c00156{left:151.500000px;}
.x9d_c00156{left:153.000000px;}
.x9_c00156{left:154.080000px;}
.x20_c00156{left:161.580000px;}
.x7f_c00156{left:166.500000px;}
.x95_c00156{left:167.580000px;}
.x87_c00156{left:169.920000px;}
.xcb_c00156{left:180.000000px;}
.xf3_c00156{left:183.000000px;}
.xc3_c00156{left:184.080000px;}
.xa_c00156{left:185.580000px;}
.xe5_c00156{left:191.580000px;}
.xd8_c00156{left:196.080000px;}
.x2e_c00156{left:198.000000px;}
.xa3_c00156{left:199.500000px;}
.xf8_c00156{left:202.500000px;}
.x46_c00156{left:208.080000px;}
.x18_c00156{left:211.500000px;}
.xbe_c00156{left:214.080000px;}
.x19_c00156{left:217.080000px;}
.xf4_c00156{left:220.080000px;}
.xb2_c00156{left:223.500000px;}
.x1a_c00156{left:226.080000px;}
.xd3_c00156{left:228.000000px;}
.x9e_c00156{left:230.580000px;}
.x5e_c00156{left:232.500000px;}
.x6c_c00156{left:236.580000px;}
.xe6_c00156{left:238.080000px;}
.xb_c00156{left:239.580000px;}
.x51_c00156{left:241.080000px;}
.x47_c00156{left:243.000000px;}
.xb3_c00156{left:246.000000px;}
.xf9_c00156{left:247.500000px;}
.x1b_c00156{left:250.500000px;}
.xc4_c00156{left:252.000000px;}
.xa9_c00156{left:253.500000px;}
.xcc_c00156{left:255.000000px;}
.xc_c00156{left:256.920000px;}
.x21_c00156{left:258.420000px;}
.x8d_c00156{left:259.500000px;}
.x52_c00156{left:261.420000px;}
.x3a_c00156{left:262.920000px;}
.xdc_c00156{left:264.420000px;}
.x88_c00156{left:268.500000px;}
.x80_c00156{left:271.500000px;}
.xfe_c00156{left:273.420000px;}
.x48_c00156{left:274.500000px;}
.xaa_c00156{left:275.580000px;}
.xb6_c00156{left:277.500000px;}
.x8e_c00156{left:280.500000px;}
.x1c_c00156{left:282.000000px;}
.x7a_c00156{left:283.080000px;}
.x9f_c00156{left:285.000000px;}
.x3b_c00156{left:288.000000px;}
.x89_c00156{left:289.500000px;}
.x81_c00156{left:291.000000px;}
.x3c_c00156{left:292.080000px;}
.xa4_c00156{left:294.000000px;}
.xb7_c00156{left:295.500000px;}
.x49_c00156{left:298.500000px;}
.x6d_c00156{left:300.000000px;}
.x1d_c00156{left:301.500000px;}
.xd9_c00156{left:303.000000px;}
.xc5_c00156{left:306.000000px;}
.xe2_c00156{left:309.000000px;}
.x4a_c00156{left:310.920000px;}
.x5f_c00156{left:312.420000px;}
.xd_c00156{left:315.420000px;}
.x22_c00156{left:316.500000px;}
.x53_c00156{left:319.920000px;}
.x92_c00156{left:322.080000px;}
.xdd_c00156{left:323.580000px;}
.xbf_c00156{left:325.080000px;}
.xe3_c00156{left:326.580000px;}
.x4_c00156{left:330.645000px;}
.x82_c00156{left:331.920000px;}
.xee_c00156{left:333.000000px;}
.x6e_c00156{left:335.580000px;}
.x60_c00156{left:337.500000px;}
.xe7_c00156{left:340.500000px;}
.x8a_c00156{left:341.580000px;}
.x61_c00156{left:343.080000px;}
.x23_c00156{left:346.920000px;}
.x93_c00156{left:348.000000px;}
.x4b_c00156{left:349.500000px;}
.x7b_c00156{left:352.920000px;}
.xc0_c00156{left:354.420000px;}
.x62_c00156{left:355.920000px;}
.xcd_c00156{left:361.500000px;}
.xeb_c00156{left:363.000000px;}
.x5_c00156{left:364.500000px;}
.x3d_c00156{left:365.580000px;}
.x83_c00156{left:367.500000px;}
.xab_c00156{left:369.000000px;}
.xe_c00156{left:372.420000px;}
.x30_c00156{left:373.500000px;}
.xef_c00156{left:376.500000px;}
.x54_c00156{left:378.420000px;}
.x3e_c00156{left:379.500000px;}
.xb4_c00156{left:382.080000px;}
.x6_c00156{left:384.420000px;}
.x8f_c00156{left:385.500000px;}
.x96_c00156{left:386.580000px;}
.xce_c00156{left:388.920000px;}
.xc6_c00156{left:390.000000px;}
.x8b_c00156{left:391.080000px;}
.xa5_c00156{left:392.580000px;}
.xde_c00156{left:394.500000px;}
.xc1_c00156{left:396.000000px;}
.xb8_c00156{left:397.500000px;}
.x94_c00156{left:400.080000px;}
.x1_c00156{left:402.000000px;}
.x24_c00156{left:403.500000px;}
.xac_c00156{left:405.000000px;}
.xda_c00156{left:406.920000px;}
.xf_c00156{left:409.080000px;}
.x7_c00156{left:410.580000px;}
.x31_c00156{left:412.500000px;}
.x3f_c00156{left:413.580000px;}
.x55_c00156{left:416.580000px;}
.xd5_c00156{left:418.920000px;}
.xb9_c00156{left:421.500000px;}
.xf0_c00156{left:423.420000px;}
.x6f_c00156{left:424.500000px;}
.xc2_c00156{left:425.580000px;}
.xfa_c00156{left:427.920000px;}
.x32_c00156{left:432.000000px;}
.x97_c00156{left:433.500000px;}
.x70_c00156{left:437.580000px;}
.x56_c00156{left:439.500000px;}
.x25_c00156{left:441.420000px;}
.xa0_c00156{left:442.500000px;}
.xd6_c00156{left:445.920000px;}
.x8c_c00156{left:447.000000px;}
.x4c_c00156{left:449.580000px;}
.x33_c00156{left:451.080000px;}
.x10_c00156{left:453.000000px;}
.x63_c00156{left:455.580000px;}
.x57_c00156{left:459.000000px;}
.x40_c00156{left:462.420000px;}
.xe8_c00156{left:465.000000px;}
.x84_c00156{left:466.500000px;}
.x71_c00156{left:467.580000px;}
.x34_c00156{left:471.000000px;}
.x11_c00156{left:474.000000px;}
.x90_c00156{left:475.275000px;}
.xf5_c00156{left:476.580000px;}
.x58_c00156{left:478.500000px;}
.x8_c00156{left:481.080000px;}
.x64_c00156{left:483.000000px;}
.x41_c00156{left:484.500000px;}
.x72_c00156{left:487.500000px;}
.x26_c00156{left:490.080000px;}
.x12_c00156{left:492.000000px;}
.xad_c00156{left:493.080000px;}
.xff_c00156{left:495.000000px;}
.x98_c00156{left:496.080000px;}
.x7c_c00156{left:499.500000px;}
.xf1_c00156{left:502.080000px;}
.xf6_c00156{left:504.000000px;}
.x65_c00156{left:505.500000px;}
.x78_c00156{left:506.580000px;}
.x27_c00156{left:508.500000px;}
.x1e_c00156{left:510.000000px;}
.x85_c00156{left:511.500000px;}
.x13_c00156{left:513.000000px;}
.x59_c00156{left:517.080000px;}
.x42_c00156{left:519.000000px;}
.xba_c00156{left:520.080000px;}
.x7d_c00156{left:522.420000px;}
.xc7_c00156{left:525.000000px;}
.x73_c00156{left:528.000000px;}
.x66_c00156{left:529.500000px;}
.x35_c00156{left:530.580000px;}
.x43_c00156{left:532.500000px;}
.xa6_c00156{left:534.420000px;}
.xcf_c00156{left:535.500000px;}
.xf2_c00156{left:537.000000px;}
.xe4_c00156{left:538.920000px;}
.x4d_c00156{left:541.080000px;}
.x99_c00156{left:544.080000px;}
.xdf_c00156{left:546.000000px;}
.xf7_c00156{left:547.500000px;}
.x14_c00156{left:549.420000px;}
.x28_c00156{left:553.500000px;}
.xfb_c00156{left:554.580000px;}
.xa7_c00156{left:559.500000px;}
.xae_c00156{left:561.420000px;}
.x79_c00156{left:564.420000px;}
.x100_c00156{left:565.500000px;}
.x67_c00156{left:568.080000px;}
.x7e_c00156{left:571.275000px;}
.x74_c00156{left:572.580000px;}
.xe9_c00156{left:574.500000px;}
.xec_c00156{left:577.080000px;}
.xbb_c00156{left:578.580000px;}
.x5a_c00156{left:580.920000px;}
.x101_c00156{left:582.420000px;}
.xd7_c00156{left:585.420000px;}
.xed_c00156{left:586.500000px;}
.xaf_c00156{left:589.500000px;}
.xd0_c00156{left:591.000000px;}
.x36_c00156{left:592.500000px;}
.x15_c00156{left:596.580000px;}
.xa1_c00156{left:600.000000px;}
.xbc_c00156{left:601.500000px;}
.xa8_c00156{left:604.500000px;}
.x75_c00156{left:606.000000px;}
.x5b_c00156{left:609.000000px;}
.xea_c00156{left:610.500000px;}
.x9a_c00156{left:612.000000px;}
.xc8_c00156{left:613.500000px;}
.x16_c00156{left:615.000000px;}
.x68_c00156{left:618.420000px;}
.xb0_c00156{left:621.420000px;}
.x76_c00156{left:623.580000px;}
.x37_c00156{left:625.920000px;}
.x4e_c00156{left:627.000000px;}
.x29_c00156{left:630.420000px;}
.xdb_c00156{left:632.580000px;}
.x91_c00156{left:634.920000px;}
.x102_c00156{left:637.500000px;}
.xbd_c00156{left:639.420000px;}
.x9b_c00156{left:640.920000px;}
.x77_c00156{left:642.000000px;}
.x69_c00156{left:643.500000px;}
.x44_c00156{left:645.000000px;}
.x86_c00156{left:650.355000px;}
.xe0_c00156{left:653.580000px;}
.x2a_c00156{left:655.500000px;}
.xb1_c00156{left:658.920000px;}
.x17_c00156{left:660.000000px;}
.x2b_c00156{left:661.080000px;}
.xb5_c00156{left:664.500000px;}
.xfc_c00156{left:666.000000px;}
.xc9_c00156{left:668.355000px;}
.x5c_c00156{left:669.420000px;}
.x2c_c00156{left:670.500000px;}
.x38_c00156{left:673.080000px;}
.xa2_c00156{left:675.000000px;}
.xd4_c00156{left:677.580000px;}
.x45_c00156{left:681.420000px;}
.x6a_c00156{left:682.500000px;}
.xd1_c00156{left:688.500000px;}
.x1f_c00156{left:689.580000px;}
.x39_c00156{left:691.500000px;}
.x6b_c00156{left:697.920000px;}
.x2d_c00156{left:700.920000px;}
.x9c_c00156{left:704.580000px;}
.xca_c00156{left:706.500000px;}
.x2_c00156{left:708.420000px;}
.x4f_c00156{left:709.920000px;}
.xe1_c00156{left:712.920000px;}
.x50_c00156{left:715.080000px;}
.x103_c00156{left:717.000000px;}
.x5d_c00156{left:718.080000px;}
.xfd_c00156{left:723.000000px;}
.x2f_c00156{left:724.500000px;}
.x3_c00156{left:726.000000px;}
@media print{
.v0_c00156{vertical-align:0.000000pt;}
.ls0_c00156{letter-spacing:0.000000pt;}
.ws0_c00156{word-spacing:-2.092699pt;}
.ws1_c00156{word-spacing:0.000000pt;}
.fs8_c00156{font-size:3.040000pt;}
.fs5_c00156{font-size:10.560000pt;}
.fs9_c00156{font-size:12.106667pt;}
.fs0_c00156{font-size:16.640000pt;}
.fs7_c00156{font-size:18.133333pt;}
.fs3_c00156{font-size:22.666667pt;}
.fs1_c00156{font-size:25.706667pt;}
.fs4_c00156{font-size:28.746667pt;}
.fs2_c00156{font-size:31.733333pt;}
.fs6_c00156{font-size:34.773333pt;}
.y0_c00156{bottom:0.000000pt;}
.y3_c00156{bottom:205.893333pt;}
.ydb_c00156{bottom:229.106667pt;}
.ydd_c00156{bottom:230.066667pt;}
.yda_c00156{bottom:231.026667pt;}
.yde_c00156{bottom:231.226667pt;}
.ydc_c00156{bottom:231.973333pt;}
.yd5_c00156{bottom:245.693333pt;}
.yd6_c00156{bottom:246.440000pt;}
.yd8_c00156{bottom:247.400000pt;}
.yd4_c00156{bottom:248.360000pt;}
.yd9_c00156{bottom:248.560000pt;}
.yd7_c00156{bottom:249.306667pt;}
.yd1_c00156{bottom:263.773333pt;}
.yd0_c00156{bottom:265.693333pt;}
.yd2_c00156{bottom:266.640000pt;}
.yd3_c00156{bottom:267.026667pt;}
.yce_c00156{bottom:280.360000pt;}
.yca_c00156{bottom:281.106667pt;}
.ycc_c00156{bottom:283.026667pt;}
.ycd_c00156{bottom:283.226667pt;}
.ycb_c00156{bottom:283.973333pt;}
.ycf_c00156{bottom:284.360000pt;}
.yc7_c00156{bottom:297.133333pt;}
.yc4_c00156{bottom:297.693333pt;}
.yc1_c00156{bottom:299.773333pt;}
.yc2_c00156{bottom:300.560000pt;}
.yc5_c00156{bottom:300.733333pt;}
.yc8_c00156{bottom:301.693333pt;}
.yc9_c00156{bottom:301.893333pt;}
.yc3_c00156{bottom:302.640000pt;}
.yc6_c00156{bottom:304.560000pt;}
.ybf_c00156{bottom:315.026667pt;}
.ybe_c00156{bottom:315.973333pt;}
.ybb_c00156{bottom:316.360000pt;}
.ybd_c00156{bottom:317.106667pt;}
.yc0_c00156{bottom:317.893333pt;}
.ybc_c00156{bottom:318.640000pt;}
.yba_c00156{bottom:319.026667pt;}
.yb9_c00156{bottom:319.973333pt;}
.yb5_c00156{bottom:334.066667pt;}
.yb7_c00156{bottom:334.440000pt;}
.yb6_c00156{bottom:335.973333pt;}
.yb8_c00156{bottom:336.360000pt;}
.yb4_c00156{bottom:337.306667pt;}
.yb2_c00156{bottom:351.773333pt;}
.yb3_c00156{bottom:352.733333pt;}
.yb1_c00156{bottom:353.306667pt;}
.yaf_c00156{bottom:353.693333pt;}
.yb0_c00156{bottom:353.893333pt;}
.yae_c00156{bottom:354.640000pt;}
.yaa_c00156{bottom:369.106667pt;}
.yad_c00156{bottom:370.640000pt;}
.ya9_c00156{bottom:371.026667pt;}
.yab_c00156{bottom:371.226667pt;}
.yac_c00156{bottom:372.360000pt;}
.ya7_c00156{bottom:386.440000pt;}
.ya6_c00156{bottom:387.773333pt;}
.ya4_c00156{bottom:388.360000pt;}
.ya8_c00156{bottom:388.733333pt;}
.ya3_c00156{bottom:389.306667pt;}
.ya5_c00156{bottom:389.693333pt;}
.ya2_c00156{bottom:403.773333pt;}
.ya0_c00156{bottom:405.106667pt;}
.y9f_c00156{bottom:405.893333pt;}
.y9d_c00156{bottom:406.066667pt;}
.ya1_c00156{bottom:406.640000pt;}
.y9e_c00156{bottom:407.026667pt;}
.y9c_c00156{bottom:422.066667pt;}
.y98_c00156{bottom:422.440000pt;}
.y9b_c00156{bottom:424.360000pt;}
.y99_c00156{bottom:424.373333pt;}
.y9a_c00156{bottom:425.306667pt;}
.y97_c00156{bottom:451.026667pt;}
.y96_c00156{bottom:452.933333pt;}
.y93_c00156{bottom:463.400000pt;}
.y91_c00156{bottom:464.360000pt;}
.y90_c00156{bottom:464.560000pt;}
.y92_c00156{bottom:465.306667pt;}
.y94_c00156{bottom:465.506667pt;}
.y95_c00156{bottom:466.266667pt;}
.y8f_c00156{bottom:475.973333pt;}
.y8e_c00156{bottom:476.733333pt;}
.y8c_c00156{bottom:477.693333pt;}
.y8b_c00156{bottom:478.640000pt;}
.y8d_c00156{bottom:478.840000pt;}
.y8a_c00156{bottom:490.266667pt;}
.y87_c00156{bottom:491.026667pt;}
.y86_c00156{bottom:491.226667pt;}
.y88_c00156{bottom:491.973333pt;}
.y89_c00156{bottom:492.933333pt;}
.y82_c00156{bottom:518.440000pt;}
.y84_c00156{bottom:519.226667pt;}
.y85_c00156{bottom:519.400000pt;}
.y81_c00156{bottom:520.360000pt;}
.y83_c00156{bottom:521.306667pt;}
.y7d_c00156{bottom:535.773333pt;}
.y7e_c00156{bottom:536.560000pt;}
.y7b_c00156{bottom:537.693333pt;}
.y7c_c00156{bottom:537.706667pt;}
.y7f_c00156{bottom:538.640000pt;}
.y80_c00156{bottom:539.026667pt;}
.y78_c00156{bottom:555.026667pt;}
.y7a_c00156{bottom:555.226667pt;}
.y79_c00156{bottom:556.360000pt;}
.y74_c00156{bottom:570.440000pt;}
.y77_c00156{bottom:571.773333pt;}
.y75_c00156{bottom:572.360000pt;}
.y76_c00156{bottom:573.693333pt;}
.y71_c00156{bottom:589.106667pt;}
.y72_c00156{bottom:590.066667pt;}
.y6f_c00156{bottom:591.026667pt;}
.y70_c00156{bottom:591.040000pt;}
.y73_c00156{bottom:591.973333pt;}
.y6d_c00156{bottom:606.440000pt;}
.y6a_c00156{bottom:607.026667pt;}
.y6b_c00156{bottom:607.226667pt;}
.y6e_c00156{bottom:608.360000pt;}
.y6c_c00156{bottom:608.373333pt;}
.y69_c00156{bottom:623.026667pt;}
.y66_c00156{bottom:623.773333pt;}
.y68_c00156{bottom:624.733333pt;}
.y67_c00156{bottom:625.706667pt;}
.y62_c00156{bottom:641.106667pt;}
.y65_c00156{bottom:642.066667pt;}
.y64_c00156{bottom:643.026667pt;}
.y63_c00156{bottom:643.040000pt;}
.y60_c00156{bottom:664.933333pt;}
.y5f_c00156{bottom:665.693333pt;}
.y61_c00156{bottom:665.893333pt;}
.y5d_c00156{bottom:666.266667pt;}
.y5c_c00156{bottom:666.640000pt;}
.y5e_c00156{bottom:667.600000pt;}
.y5b_c00156{bottom:685.106667pt;}
.y5a_c00156{bottom:686.066667pt;}
.y59_c00156{bottom:686.640000pt;}
.y58_c00156{bottom:687.026667pt;}
.y56_c00156{bottom:727.026667pt;}
.y52_c00156{bottom:727.773333pt;}
.y57_c00156{bottom:728.360000pt;}
.y55_c00156{bottom:728.733333pt;}
.y51_c00156{bottom:729.893333pt;}
.y54_c00156{bottom:730.640000pt;}
.y53_c00156{bottom:731.026667pt;}
.y4d_c00156{bottom:745.106667pt;}
.y50_c00156{bottom:746.440000pt;}
.y4b_c00156{bottom:747.026667pt;}
.y4e_c00156{bottom:747.226667pt;}
.y4c_c00156{bottom:747.973333pt;}
.y4f_c00156{bottom:748.360000pt;}
.y47_c00156{bottom:761.133333pt;}
.y43_c00156{bottom:761.693333pt;}
.y44_c00156{bottom:763.400000pt;}
.y48_c00156{bottom:763.773333pt;}
.y45_c00156{bottom:764.560000pt;}
.y4a_c00156{bottom:765.306667pt;}
.y49_c00156{bottom:765.693333pt;}
.y46_c00156{bottom:767.226667pt;}
.y3f_c00156{bottom:779.026667pt;}
.y41_c00156{bottom:779.973333pt;}
.y3d_c00156{bottom:781.106667pt;}
.y3c_c00156{bottom:781.693333pt;}
.y42_c00156{bottom:782.066667pt;}
.y40_c00156{bottom:782.640000pt;}
.y3e_c00156{bottom:783.026667pt;}
.y3a_c00156{bottom:797.693333pt;}
.y39_c00156{bottom:798.440000pt;}
.y3b_c00156{bottom:800.560000pt;}
.y37_c00156{bottom:815.773333pt;}
.y35_c00156{bottom:816.560000pt;}
.y38_c00156{bottom:817.306667pt;}
.y36_c00156{bottom:817.693333pt;}
.y2f_c00156{bottom:831.800000pt;}
.y32_c00156{bottom:833.106667pt;}
.y2d_c00156{bottom:833.893333pt;}
.y2c_c00156{bottom:834.066667pt;}
.y30_c00156{bottom:835.026667pt;}
.y31_c00156{bottom:835.226667pt;}
.y33_c00156{bottom:835.973333pt;}
.y34_c00156{bottom:836.360000pt;}
.y2e_c00156{bottom:837.893333pt;}
.y2b_c00156{bottom:849.693333pt;}
.y22_c00156{bottom:850.440000pt;}
.y25_c00156{bottom:850.640000pt;}
.y26_c00156{bottom:851.026667pt;}
.y21_c00156{bottom:851.600000pt;}
.y2a_c00156{bottom:851.773333pt;}
.y23_c00156{bottom:852.360000pt;}
.y27_c00156{bottom:852.560000pt;}
.y29_c00156{bottom:852.733333pt;}
.y24_c00156{bottom:853.306667pt;}
.y28_c00156{bottom:853.693333pt;}
.y1f_c00156{bottom:867.026667pt;}
.y20_c00156{bottom:869.893333pt;}
.y1d_c00156{bottom:883.800000pt;}
.y19_c00156{bottom:884.360000pt;}
.y17_c00156{bottom:885.106667pt;}
.y18_c00156{bottom:885.306667pt;}
.y16_c00156{bottom:887.026667pt;}
.y1b_c00156{bottom:887.226667pt;}
.y1a_c00156{bottom:887.400000pt;}
.y1e_c00156{bottom:888.360000pt;}
.y1c_c00156{bottom:891.226667pt;}
.y11_c00156{bottom:901.133333pt;}
.y12_c00156{bottom:901.693333pt;}
.y14_c00156{bottom:902.826667pt;}
.y15_c00156{bottom:903.773333pt;}
.yf_c00156{bottom:904.560000pt;}
.y13_c00156{bottom:905.693333pt;}
.y10_c00156{bottom:907.226667pt;}
.yd_c00156{bottom:919.973333pt;}
.yb_c00156{bottom:920.360000pt;}
.y8_c00156{bottom:921.106667pt;}
.yc_c00156{bottom:921.306667pt;}
.y7_c00156{bottom:921.893333pt;}
.ye_c00156{bottom:922.066667pt;}
.ya_c00156{bottom:922.640000pt;}
.y9_c00156{bottom:923.026667pt;}
.y4_c00156{bottom:942.440000pt;}
.y5_c00156{bottom:943.973333pt;}
.y6_c00156{bottom:944.360000pt;}
.y2_c00156{bottom:977.693333pt;}
.y1_c00156{bottom:979.226667pt;}
.h9_c00156{height:3.739141pt;}
.h6_c00156{height:12.988594pt;}
.ha_c00156{height:14.890964pt;}
.h1_c00156{height:20.466875pt;}
.h8_c00156{height:22.303646pt;}
.h4_c00156{height:27.879557pt;}
.h2_c00156{height:31.618698pt;}
.h5_c00156{height:35.357839pt;}
.h3_c00156{height:39.031380pt;}
.h7_c00156{height:42.770521pt;}
.h0_c00156{height:1186.666667pt;}
.w0_c00156{width:782.666667pt;}
.x0_c00156{left:0.000000pt;}
.xd2_c00156{left:134.666667pt;}
.x9d_c00156{left:136.000000pt;}
.x9_c00156{left:136.960000pt;}
.x20_c00156{left:143.626667pt;}
.x7f_c00156{left:148.000000pt;}
.x95_c00156{left:148.960000pt;}
.x87_c00156{left:151.040000pt;}
.xcb_c00156{left:160.000000pt;}
.xf3_c00156{left:162.666667pt;}
.xc3_c00156{left:163.626667pt;}
.xa_c00156{left:164.960000pt;}
.xe5_c00156{left:170.293333pt;}
.xd8_c00156{left:174.293333pt;}
.x2e_c00156{left:176.000000pt;}
.xa3_c00156{left:177.333333pt;}
.xf8_c00156{left:180.000000pt;}
.x46_c00156{left:184.960000pt;}
.x18_c00156{left:188.000000pt;}
.xbe_c00156{left:190.293333pt;}
.x19_c00156{left:192.960000pt;}
.xf4_c00156{left:195.626667pt;}
.xb2_c00156{left:198.666667pt;}
.x1a_c00156{left:200.960000pt;}
.xd3_c00156{left:202.666667pt;}
.x9e_c00156{left:204.960000pt;}
.x5e_c00156{left:206.666667pt;}
.x6c_c00156{left:210.293333pt;}
.xe6_c00156{left:211.626667pt;}
.xb_c00156{left:212.960000pt;}
.x51_c00156{left:214.293333pt;}
.x47_c00156{left:216.000000pt;}
.xb3_c00156{left:218.666667pt;}
.xf9_c00156{left:220.000000pt;}
.x1b_c00156{left:222.666667pt;}
.xc4_c00156{left:224.000000pt;}
.xa9_c00156{left:225.333333pt;}
.xcc_c00156{left:226.666667pt;}
.xc_c00156{left:228.373333pt;}
.x21_c00156{left:229.706667pt;}
.x8d_c00156{left:230.666667pt;}
.x52_c00156{left:232.373333pt;}
.x3a_c00156{left:233.706667pt;}
.xdc_c00156{left:235.040000pt;}
.x88_c00156{left:238.666667pt;}
.x80_c00156{left:241.333333pt;}
.xfe_c00156{left:243.040000pt;}
.x48_c00156{left:244.000000pt;}
.xaa_c00156{left:244.960000pt;}
.xb6_c00156{left:246.666667pt;}
.x8e_c00156{left:249.333333pt;}
.x1c_c00156{left:250.666667pt;}
.x7a_c00156{left:251.626667pt;}
.x9f_c00156{left:253.333333pt;}
.x3b_c00156{left:256.000000pt;}
.x89_c00156{left:257.333333pt;}
.x81_c00156{left:258.666667pt;}
.x3c_c00156{left:259.626667pt;}
.xa4_c00156{left:261.333333pt;}
.xb7_c00156{left:262.666667pt;}
.x49_c00156{left:265.333333pt;}
.x6d_c00156{left:266.666667pt;}
.x1d_c00156{left:268.000000pt;}
.xd9_c00156{left:269.333333pt;}
.xc5_c00156{left:272.000000pt;}
.xe2_c00156{left:274.666667pt;}
.x4a_c00156{left:276.373333pt;}
.x5f_c00156{left:277.706667pt;}
.xd_c00156{left:280.373333pt;}
.x22_c00156{left:281.333333pt;}
.x53_c00156{left:284.373333pt;}
.x92_c00156{left:286.293333pt;}
.xdd_c00156{left:287.626667pt;}
.xbf_c00156{left:288.960000pt;}
.xe3_c00156{left:290.293333pt;}
.x4_c00156{left:293.906667pt;}
.x82_c00156{left:295.040000pt;}
.xee_c00156{left:296.000000pt;}
.x6e_c00156{left:298.293333pt;}
.x60_c00156{left:300.000000pt;}
.xe7_c00156{left:302.666667pt;}
.x8a_c00156{left:303.626667pt;}
.x61_c00156{left:304.960000pt;}
.x23_c00156{left:308.373333pt;}
.x93_c00156{left:309.333333pt;}
.x4b_c00156{left:310.666667pt;}
.x7b_c00156{left:313.706667pt;}
.xc0_c00156{left:315.040000pt;}
.x62_c00156{left:316.373333pt;}
.xcd_c00156{left:321.333333pt;}
.xeb_c00156{left:322.666667pt;}
.x5_c00156{left:324.000000pt;}
.x3d_c00156{left:324.960000pt;}
.x83_c00156{left:326.666667pt;}
.xab_c00156{left:328.000000pt;}
.xe_c00156{left:331.040000pt;}
.x30_c00156{left:332.000000pt;}
.xef_c00156{left:334.666667pt;}
.x54_c00156{left:336.373333pt;}
.x3e_c00156{left:337.333333pt;}
.xb4_c00156{left:339.626667pt;}
.x6_c00156{left:341.706667pt;}
.x8f_c00156{left:342.666667pt;}
.x96_c00156{left:343.626667pt;}
.xce_c00156{left:345.706667pt;}
.xc6_c00156{left:346.666667pt;}
.x8b_c00156{left:347.626667pt;}
.xa5_c00156{left:348.960000pt;}
.xde_c00156{left:350.666667pt;}
.xc1_c00156{left:352.000000pt;}
.xb8_c00156{left:353.333333pt;}
.x94_c00156{left:355.626667pt;}
.x1_c00156{left:357.333333pt;}
.x24_c00156{left:358.666667pt;}
.xac_c00156{left:360.000000pt;}
.xda_c00156{left:361.706667pt;}
.xf_c00156{left:363.626667pt;}
.x7_c00156{left:364.960000pt;}
.x31_c00156{left:366.666667pt;}
.x3f_c00156{left:367.626667pt;}
.x55_c00156{left:370.293333pt;}
.xd5_c00156{left:372.373333pt;}
.xb9_c00156{left:374.666667pt;}
.xf0_c00156{left:376.373333pt;}
.x6f_c00156{left:377.333333pt;}
.xc2_c00156{left:378.293333pt;}
.xfa_c00156{left:380.373333pt;}
.x32_c00156{left:384.000000pt;}
.x97_c00156{left:385.333333pt;}
.x70_c00156{left:388.960000pt;}
.x56_c00156{left:390.666667pt;}
.x25_c00156{left:392.373333pt;}
.xa0_c00156{left:393.333333pt;}
.xd6_c00156{left:396.373333pt;}
.x8c_c00156{left:397.333333pt;}
.x4c_c00156{left:399.626667pt;}
.x33_c00156{left:400.960000pt;}
.x10_c00156{left:402.666667pt;}
.x63_c00156{left:404.960000pt;}
.x57_c00156{left:408.000000pt;}
.x40_c00156{left:411.040000pt;}
.xe8_c00156{left:413.333333pt;}
.x84_c00156{left:414.666667pt;}
.x71_c00156{left:415.626667pt;}
.x34_c00156{left:418.666667pt;}
.x11_c00156{left:421.333333pt;}
.x90_c00156{left:422.466667pt;}
.xf5_c00156{left:423.626667pt;}
.x58_c00156{left:425.333333pt;}
.x8_c00156{left:427.626667pt;}
.x64_c00156{left:429.333333pt;}
.x41_c00156{left:430.666667pt;}
.x72_c00156{left:433.333333pt;}
.x26_c00156{left:435.626667pt;}
.x12_c00156{left:437.333333pt;}
.xad_c00156{left:438.293333pt;}
.xff_c00156{left:440.000000pt;}
.x98_c00156{left:440.960000pt;}
.x7c_c00156{left:444.000000pt;}
.xf1_c00156{left:446.293333pt;}
.xf6_c00156{left:448.000000pt;}
.x65_c00156{left:449.333333pt;}
.x78_c00156{left:450.293333pt;}
.x27_c00156{left:452.000000pt;}
.x1e_c00156{left:453.333333pt;}
.x85_c00156{left:454.666667pt;}
.x13_c00156{left:456.000000pt;}
.x59_c00156{left:459.626667pt;}
.x42_c00156{left:461.333333pt;}
.xba_c00156{left:462.293333pt;}
.x7d_c00156{left:464.373333pt;}
.xc7_c00156{left:466.666667pt;}
.x73_c00156{left:469.333333pt;}
.x66_c00156{left:470.666667pt;}
.x35_c00156{left:471.626667pt;}
.x43_c00156{left:473.333333pt;}
.xa6_c00156{left:475.040000pt;}
.xcf_c00156{left:476.000000pt;}
.xf2_c00156{left:477.333333pt;}
.xe4_c00156{left:479.040000pt;}
.x4d_c00156{left:480.960000pt;}
.x99_c00156{left:483.626667pt;}
.xdf_c00156{left:485.333333pt;}
.xf7_c00156{left:486.666667pt;}
.x14_c00156{left:488.373333pt;}
.x28_c00156{left:492.000000pt;}
.xfb_c00156{left:492.960000pt;}
.xa7_c00156{left:497.333333pt;}
.xae_c00156{left:499.040000pt;}
.x79_c00156{left:501.706667pt;}
.x100_c00156{left:502.666667pt;}
.x67_c00156{left:504.960000pt;}
.x7e_c00156{left:507.800000pt;}
.x74_c00156{left:508.960000pt;}
.xe9_c00156{left:510.666667pt;}
.xec_c00156{left:512.960000pt;}
.xbb_c00156{left:514.293333pt;}
.x5a_c00156{left:516.373333pt;}
.x101_c00156{left:517.706667pt;}
.xd7_c00156{left:520.373333pt;}
.xed_c00156{left:521.333333pt;}
.xaf_c00156{left:524.000000pt;}
.xd0_c00156{left:525.333333pt;}
.x36_c00156{left:526.666667pt;}
.x15_c00156{left:530.293333pt;}
.xa1_c00156{left:533.333333pt;}
.xbc_c00156{left:534.666667pt;}
.xa8_c00156{left:537.333333pt;}
.x75_c00156{left:538.666667pt;}
.x5b_c00156{left:541.333333pt;}
.xea_c00156{left:542.666667pt;}
.x9a_c00156{left:544.000000pt;}
.xc8_c00156{left:545.333333pt;}
.x16_c00156{left:546.666667pt;}
.x68_c00156{left:549.706667pt;}
.xb0_c00156{left:552.373333pt;}
.x76_c00156{left:554.293333pt;}
.x37_c00156{left:556.373333pt;}
.x4e_c00156{left:557.333333pt;}
.x29_c00156{left:560.373333pt;}
.xdb_c00156{left:562.293333pt;}
.x91_c00156{left:564.373333pt;}
.x102_c00156{left:566.666667pt;}
.xbd_c00156{left:568.373333pt;}
.x9b_c00156{left:569.706667pt;}
.x77_c00156{left:570.666667pt;}
.x69_c00156{left:572.000000pt;}
.x44_c00156{left:573.333333pt;}
.x86_c00156{left:578.093333pt;}
.xe0_c00156{left:580.960000pt;}
.x2a_c00156{left:582.666667pt;}
.xb1_c00156{left:585.706667pt;}
.x17_c00156{left:586.666667pt;}
.x2b_c00156{left:587.626667pt;}
.xb5_c00156{left:590.666667pt;}
.xfc_c00156{left:592.000000pt;}
.xc9_c00156{left:594.093333pt;}
.x5c_c00156{left:595.040000pt;}
.x2c_c00156{left:596.000000pt;}
.x38_c00156{left:598.293333pt;}
.xa2_c00156{left:600.000000pt;}
.xd4_c00156{left:602.293333pt;}
.x45_c00156{left:605.706667pt;}
.x6a_c00156{left:606.666667pt;}
.xd1_c00156{left:612.000000pt;}
.x1f_c00156{left:612.960000pt;}
.x39_c00156{left:614.666667pt;}
.x6b_c00156{left:620.373333pt;}
.x2d_c00156{left:623.040000pt;}
.x9c_c00156{left:626.293333pt;}
.xca_c00156{left:628.000000pt;}
.x2_c00156{left:629.706667pt;}
.x4f_c00156{left:631.040000pt;}
.xe1_c00156{left:633.706667pt;}
.x50_c00156{left:635.626667pt;}
.x103_c00156{left:637.333333pt;}
.x5d_c00156{left:638.293333pt;}
.xfd_c00156{left:642.666667pt;}
.x2f_c00156{left:644.000000pt;}
.x3_c00156{left:645.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7d2ecd0d5d6914f1cfa54917.woff2')format("woff");}.ff1_c00157{font-family:ff1_c00157;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m46_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);}
.m90_c00157{transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);}
.ma4_c00157{transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);}
.m98_c00157{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.m5f_c00157{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.mc2_c00157{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m34_c00157{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m87_c00157{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.md5_c00157{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.maf_c00157{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m3e_c00157{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m7e_c00157{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m4b_c00157{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m24_c00157{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m4a_c00157{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m51_c00157{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m60_c00157{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m96_c00157{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.mae_c00157{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mf5_c00157{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m50_c00157{transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);}
.m2d_c00157{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.mb2_c00157{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m8_c00157{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mf1_c00157{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.mf4_c00157{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.mbd_c00157{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m94_c00157{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m7_c00157{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m21_c00157{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.md4_c00157{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.mb0_c00157{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m81_c00157{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m35_c00157{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m55_c00157{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m3a_c00157{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m7a_c00157{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m32_c00157{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m58_c00157{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m5a_c00157{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mb8_c00157{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m17_c00157{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.m59_c00157{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m2_c00157{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m9b_c00157{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m1c_c00157{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m9c_c00157{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m38_c00157{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.mc9_c00157{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.md1_c00157{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m56_c00157{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m43_c00157{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m70_c00157{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m3c_c00157{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mdc_c00157{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.ma3_c00157{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.ma7_c00157{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m4d_c00157{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m91_c00157{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.mac_c00157{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.me3_c00157{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m5e_c00157{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.me2_c00157{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mb3_c00157{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.mf3_c00157{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m93_c00157{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.m5c_c00157{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.m31_c00157{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m5b_c00157{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m36_c00157{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.ma0_c00157{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.md_c00157{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.ma8_c00157{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.me9_c00157{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.mb1_c00157{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m82_c00157{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m67_c00157{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m1b_c00157{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m85_c00157{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m66_c00157{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.mbe_c00157{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mb5_c00157{transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);}
.m4f_c00157{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.me6_c00157{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.mec_c00157{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m47_c00157{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m0_c00157{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.ma1_c00157{transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);}
.m1d_c00157{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m3d_c00157{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m2f_c00157{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m73_c00157{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m9d_c00157{transform:matrix(0.458506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458506,0.000000,0.000000,0.250000,0,0);}
.m6e_c00157{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.m68_c00157{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m23_c00157{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m9e_c00157{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m33_c00157{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.m9_c00157{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m6f_c00157{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m4_c00157{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.m63_c00157{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.m61_c00157{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m65_c00157{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m9f_c00157{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m39_c00157{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m6b_c00157{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.mdd_c00157{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m8f_c00157{transform:matrix(0.482773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482773,0.000000,0.000000,0.250000,0,0);}
.mcf_c00157{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m14_c00157{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m7d_c00157{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.ma6_c00157{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m71_c00157{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m3f_c00157{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m78_c00157{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.me4_c00157{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m42_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);}
.m74_c00157{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.mc6_c00157{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mc4_c00157{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m5d_c00157{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mc1_c00157{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m27_c00157{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.md9_c00157{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m92_c00157{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.md8_c00157{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mcd_c00157{transform:matrix(0.513915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513915,0.000000,0.000000,0.250000,0,0);}
.md0_c00157{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m64_c00157{transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);}
.mf0_c00157{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.me5_c00157{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m12_c00157{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.mc_c00157{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mb_c00157{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m83_c00157{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m88_c00157{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.mbc_c00157{transform:matrix(0.521800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521800,0.000000,0.000000,0.250000,0,0);}
.mdb_c00157{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mb4_c00157{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m3_c00157{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m41_c00157{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.med_c00157{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.me7_c00157{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m48_c00157{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m86_c00157{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mc0_c00157{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mad_c00157{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.mc5_c00157{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m49_c00157{transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);}
.m75_c00157{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m1f_c00157{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mc7_c00157{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m7f_c00157{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mab_c00157{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m6_c00157{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m76_c00157{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m7c_c00157{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mc8_c00157{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m26_c00157{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mda_c00157{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.maa_c00157{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m5_c00157{transform:matrix(0.539412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539412,0.000000,0.000000,0.250000,0,0);}
.m89_c00157{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m30_c00157{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m11_c00157{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mcc_c00157{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.mb9_c00157{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.mb6_c00157{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.mef_c00157{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m2e_c00157{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m18_c00157{transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);}
.m8a_c00157{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m54_c00157{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.ma2_c00157{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m3b_c00157{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m77_c00157{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m20_c00157{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m69_c00157{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.mba_c00157{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m29_c00157{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m2a_c00157{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m8b_c00157{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mea_c00157{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.md6_c00157{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.md2_c00157{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.md7_c00157{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m28_c00157{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m2c_c00157{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m9a_c00157{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m4c_c00157{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m10_c00157{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m4e_c00157{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m97_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);}
.m44_c00157{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m40_c00157{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m19_c00157{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m57_c00157{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.mbf_c00157{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.m6a_c00157{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m79_c00157{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.mce_c00157{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.md3_c00157{transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);}
.m6c_c00157{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m2b_c00157{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.meb_c00157{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m16_c00157{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m8d_c00157{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m8c_c00157{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.mee_c00157{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.mbb_c00157{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.mcb_c00157{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.me8_c00157{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m1_c00157{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m80_c00157{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mdf_c00157{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m1a_c00157{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m37_c00157{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.ma9_c00157{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.m7b_c00157{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m8e_c00157{transform:matrix(0.618257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618257,0.000000,0.000000,0.250000,0,0);}
.m62_c00157{transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);}
.m99_c00157{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m45_c00157{transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);}
.m15_c00157{transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);}
.ma_c00157{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.mca_c00157{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m22_c00157{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m1e_c00157{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.ma5_c00157{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.m13_c00157{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m6d_c00157{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.me1_c00157{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.me_c00157{transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);}
.mf_c00157{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.me0_c00157{transform:matrix(0.734559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.734559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.734559,0.000000,0.000000,0.250000,0,0);}
.m72_c00157{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.mc3_c00157{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mb7_c00157{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m25_c00157{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mde_c00157{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.mf2_c00157{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m95_c00157{transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);}
.m52_c00157{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m53_c00157{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m84_c00157{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00157{vertical-align:0.000000px;}
.ls0_c00157{letter-spacing:0.000000px;}
.sc__c00157{text-shadow:none;}
.sc0_c00157{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00157{-webkit-text-stroke:0px transparent;}
.sc0_c00157{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00157{word-spacing:-5.097480px;}
.ws3_c00157{word-spacing:0.000000px;}
.ws0_c00157{word-spacing:4.420015px;}
.ws2_c00157{word-spacing:5.077323px;}
.fc0_c00157{color:transparent;}
.fs6_c00157{font-size:3.420000px;}
.fs7_c00157{font-size:11.880000px;}
.fs5_c00157{font-size:18.720000px;}
.fs1_c00157{font-size:20.400000px;}
.fs3_c00157{font-size:25.500000px;}
.fs0_c00157{font-size:28.920000px;}
.fs4_c00157{font-size:32.340000px;}
.fs2_c00157{font-size:35.700000px;}
.y0_c00157{bottom:0.000000px;}
.yc2_c00157{bottom:251.745000px;}
.ybf_c00157{bottom:252.405000px;}
.yc0_c00157{bottom:252.630000px;}
.yc1_c00157{bottom:253.905000px;}
.yba_c00157{bottom:269.745000px;}
.ybe_c00157{bottom:271.245000px;}
.ybb_c00157{bottom:271.905000px;}
.ybc_c00157{bottom:273.405000px;}
.ybd_c00157{bottom:274.470000px;}
.yb7_c00157{bottom:290.745000px;}
.yb9_c00157{bottom:291.825000px;}
.yb8_c00157{bottom:292.470000px;}
.yb6_c00157{bottom:292.905000px;}
.yb3_c00157{bottom:311.325000px;}
.yb4_c00157{bottom:311.550000px;}
.yb2_c00157{bottom:311.745000px;}
.yb1_c00157{bottom:312.405000px;}
.yb5_c00157{bottom:313.905000px;}
.yb0_c00157{bottom:329.745000px;}
.yac_c00157{bottom:331.050000px;}
.yaf_c00157{bottom:331.245000px;}
.yab_c00157{bottom:331.470000px;}
.yad_c00157{bottom:331.905000px;}
.yae_c00157{bottom:333.405000px;}
.ya8_c00157{bottom:350.745000px;}
.ya5_c00157{bottom:351.405000px;}
.yaa_c00157{bottom:351.630000px;}
.ya9_c00157{bottom:351.825000px;}
.ya6_c00157{bottom:352.905000px;}
.ya7_c00157{bottom:352.920000px;}
.ya4_c00157{bottom:372.405000px;}
.ya2_c00157{bottom:389.745000px;}
.ya3_c00157{bottom:390.825000px;}
.ya1_c00157{bottom:391.905000px;}
.ya0_c00157{bottom:409.245000px;}
.y9f_c00157{bottom:410.325000px;}
.y9c_c00157{bottom:411.405000px;}
.y9d_c00157{bottom:411.630000px;}
.y9e_c00157{bottom:412.470000px;}
.y9b_c00157{bottom:428.325000px;}
.y9a_c00157{bottom:428.745000px;}
.y99_c00157{bottom:430.470000px;}
.y97_c00157{bottom:430.905000px;}
.y98_c00157{bottom:432.405000px;}
.y96_c00157{bottom:447.405000px;}
.y93_c00157{bottom:449.745000px;}
.y94_c00157{bottom:450.405000px;}
.y95_c00157{bottom:450.630000px;}
.y90_c00157{bottom:450.825000px;}
.y92_c00157{bottom:451.905000px;}
.y91_c00157{bottom:451.920000px;}
.y8f_c00157{bottom:471.405000px;}
.y8c_c00157{bottom:488.745000px;}
.y8a_c00157{bottom:489.630000px;}
.y8d_c00157{bottom:489.825000px;}
.y8e_c00157{bottom:490.470000px;}
.y89_c00157{bottom:490.905000px;}
.y8b_c00157{bottom:490.920000px;}
.y88_c00157{bottom:507.405000px;}
.y85_c00157{bottom:508.245000px;}
.y87_c00157{bottom:509.325000px;}
.y86_c00157{bottom:510.420000px;}
.y84_c00157{bottom:527.745000px;}
.y80_c00157{bottom:547.245000px;}
.y82_c00157{bottom:549.405000px;}
.y83_c00157{bottom:550.470000px;}
.y81_c00157{bottom:550.920000px;}
.y7f_c00157{bottom:574.470000px;}
.y7b_c00157{bottom:574.905000px;}
.y7d_c00157{bottom:575.970000px;}
.y7c_c00157{bottom:576.405000px;}
.y7e_c00157{bottom:576.630000px;}
.y7a_c00157{bottom:593.325000px;}
.y79_c00157{bottom:593.550000px;}
.y78_c00157{bottom:594.405000px;}
.y73_c00157{bottom:607.470000px;}
.y72_c00157{bottom:608.325000px;}
.y76_c00157{bottom:608.550000px;}
.y75_c00157{bottom:609.630000px;}
.y74_c00157{bottom:609.825000px;}
.y77_c00157{bottom:611.550000px;}
.y71_c00157{bottom:635.745000px;}
.y70_c00157{bottom:637.905000px;}
.y6f_c00157{bottom:682.905000px;}
.y6d_c00157{bottom:685.905000px;}
.y6c_c00157{bottom:686.970000px;}
.y6e_c00157{bottom:687.405000px;}
.y6a_c00157{bottom:703.470000px;}
.y69_c00157{bottom:704.745000px;}
.y6b_c00157{bottom:706.470000px;}
.y67_c00157{bottom:706.905000px;}
.y68_c00157{bottom:706.920000px;}
.y66_c00157{bottom:721.905000px;}
.y65_c00157{bottom:724.245000px;}
.y64_c00157{bottom:725.970000px;}
.y63_c00157{bottom:726.405000px;}
.y62_c00157{bottom:742.905000px;}
.y60_c00157{bottom:743.745000px;}
.y5f_c00157{bottom:745.905000px;}
.y61_c00157{bottom:746.970000px;}
.y58_c00157{bottom:761.130000px;}
.y59_c00157{bottom:761.775000px;}
.y5b_c00157{bottom:762.405000px;}
.y5a_c00157{bottom:763.245000px;}
.y5e_c00157{bottom:763.470000px;}
.y5d_c00157{bottom:764.325000px;}
.y5c_c00157{bottom:765.405000px;}
.y57_c00157{bottom:765.630000px;}
.y55_c00157{bottom:781.275000px;}
.y53_c00157{bottom:781.905000px;}
.y56_c00157{bottom:782.745000px;}
.y52_c00157{bottom:783.405000px;}
.y51_c00157{bottom:783.825000px;}
.y4f_c00157{bottom:784.905000px;}
.y50_c00157{bottom:785.130000px;}
.y54_c00157{bottom:788.130000px;}
.y49_c00157{bottom:802.245000px;}
.y4b_c00157{bottom:802.905000px;}
.y48_c00157{bottom:803.325000px;}
.y4e_c00157{bottom:803.745000px;}
.y4d_c00157{bottom:804.630000px;}
.y4a_c00157{bottom:804.825000px;}
.y4c_c00157{bottom:805.905000px;}
.y43_c00157{bottom:820.905000px;}
.y42_c00157{bottom:821.970000px;}
.y44_c00157{bottom:823.245000px;}
.y47_c00157{bottom:823.470000px;}
.y46_c00157{bottom:824.325000px;}
.y45_c00157{bottom:825.405000px;}
.y3f_c00157{bottom:841.905000px;}
.y3e_c00157{bottom:842.745000px;}
.y3d_c00157{bottom:843.825000px;}
.y41_c00157{bottom:844.905000px;}
.y40_c00157{bottom:845.970000px;}
.y3c_c00157{bottom:860.325000px;}
.y38_c00157{bottom:862.245000px;}
.y39_c00157{bottom:863.325000px;}
.y3a_c00157{bottom:863.970000px;}
.y3b_c00157{bottom:864.405000px;}
.y37_c00157{bottom:880.245000px;}
.y34_c00157{bottom:880.905000px;}
.y31_c00157{bottom:881.745000px;}
.y33_c00157{bottom:881.970000px;}
.y35_c00157{bottom:882.630000px;}
.y30_c00157{bottom:882.825000px;}
.y32_c00157{bottom:883.905000px;}
.y36_c00157{bottom:883.920000px;}
.y2e_c00157{bottom:900.405000px;}
.y2d_c00157{bottom:900.825000px;}
.y2b_c00157{bottom:901.245000px;}
.y2c_c00157{bottom:901.470000px;}
.y2f_c00157{bottom:902.325000px;}
.y2a_c00157{bottom:903.405000px;}
.y27_c00157{bottom:919.905000px;}
.y26_c00157{bottom:920.745000px;}
.y29_c00157{bottom:920.970000px;}
.y28_c00157{bottom:921.405000px;}
.y25_c00157{bottom:922.905000px;}
.y24_c00157{bottom:939.405000px;}
.y1f_c00157{bottom:940.245000px;}
.y22_c00157{bottom:940.470000px;}
.y20_c00157{bottom:940.905000px;}
.y21_c00157{bottom:941.745000px;}
.y1e_c00157{bottom:942.405000px;}
.y23_c00157{bottom:943.905000px;}
.y1b_c00157{bottom:959.745000px;}
.y1d_c00157{bottom:960.405000px;}
.y19_c00157{bottom:960.825000px;}
.y1a_c00157{bottom:961.245000px;}
.y1c_c00157{bottom:963.405000px;}
.y18_c00157{bottom:980.745000px;}
.y15_c00157{bottom:981.405000px;}
.y17_c00157{bottom:982.470000px;}
.y16_c00157{bottom:982.905000px;}
.y14_c00157{bottom:1000.245000px;}
.y12_c00157{bottom:1001.970000px;}
.y13_c00157{bottom:1002.405000px;}
.yc_c00157{bottom:1019.745000px;}
.y11_c00157{bottom:1020.630000px;}
.yd_c00157{bottom:1020.825000px;}
.y10_c00157{bottom:1021.470000px;}
.yf_c00157{bottom:1021.905000px;}
.ye_c00157{bottom:1022.970000px;}
.y9_c00157{bottom:1038.405000px;}
.yb_c00157{bottom:1039.245000px;}
.ya_c00157{bottom:1040.970000px;}
.y8_c00157{bottom:1041.405000px;}
.y7_c00157{bottom:1042.470000px;}
.y3_c00157{bottom:1058.745000px;}
.y5_c00157{bottom:1060.470000px;}
.y4_c00157{bottom:1060.905000px;}
.y6_c00157{bottom:1061.970000px;}
.y2_c00157{bottom:1099.050000px;}
.y1_c00157{bottom:1099.905000px;}
.h7_c00157{height:4.206533px;}
.h8_c00157{height:14.612168px;}
.h6_c00157{height:23.025234px;}
.h2_c00157{height:25.091602px;}
.h4_c00157{height:31.364502px;}
.h1_c00157{height:35.571035px;}
.h5_c00157{height:39.777568px;}
.h3_c00157{height:43.910303px;}
.h0_c00157{height:1335.000000px;}
.w0_c00157{width:880.500000px;}
.x0_c00157{left:0.000000px;}
.x1c_c00157{left:148.500000px;}
.x3_c00157{left:150.420000px;}
.x1_c00157{left:151.920000px;}
.xcb_c00157{left:153.000000px;}
.xc4_c00157{left:154.275000px;}
.x2c_c00157{left:166.080000px;}
.x94_c00157{left:168.000000px;}
.x29_c00157{left:169.920000px;}
.xac_c00157{left:172.920000px;}
.x8e_c00157{left:177.000000px;}
.x5d_c00157{left:178.275000px;}
.xf_c00157{left:180.000000px;}
.x9f_c00157{left:181.920000px;}
.xd2_c00157{left:183.000000px;}
.x8f_c00157{left:184.080000px;}
.x3e_c00157{left:186.000000px;}
.xf1_c00157{left:187.500000px;}
.x7a_c00157{left:188.580000px;}
.x70_c00157{left:191.355000px;}
.xf6_c00157{left:193.500000px;}
.x10_c00157{left:199.080000px;}
.x4a_c00157{left:201.000000px;}
.xdd_c00157{left:202.500000px;}
.x54_c00157{left:205.500000px;}
.xbe_c00157{left:207.420000px;}
.xa0_c00157{left:208.500000px;}
.x95_c00157{left:213.000000px;}
.x5e_c00157{left:214.500000px;}
.xad_c00157{left:216.000000px;}
.xb1_c00157{left:217.080000px;}
.x7b_c00157{left:218.580000px;}
.x11_c00157{left:222.000000px;}
.x4_c00157{left:223.920000px;}
.x71_c00157{left:229.500000px;}
.x2d_c00157{left:230.580000px;}
.xb7_c00157{left:233.580000px;}
.xa5_c00157{left:237.000000px;}
.xe2_c00157{left:240.000000px;}
.x1d_c00157{left:241.920000px;}
.xaf_c00157{left:244.080000px;}
.x5_c00157{left:245.580000px;}
.x88_c00157{left:247.500000px;}
.x2a_c00157{left:248.580000px;}
.x7c_c00157{left:250.920000px;}
.x5f_c00157{left:252.420000px;}
.x90_c00157{left:253.920000px;}
.x3f_c00157{left:255.420000px;}
.xd8_c00157{left:256.500000px;}
.xa6_c00157{left:259.080000px;}
.x2e_c00157{left:261.000000px;}
.xd3_c00157{left:262.500000px;}
.x6_c00157{left:264.420000px;}
.xbf_c00157{left:267.000000px;}
.x2b_c00157{left:268.920000px;}
.x82_c00157{left:270.000000px;}
.xde_c00157{left:273.855000px;}
.xd9_c00157{left:276.000000px;}
.x72_c00157{left:280.920000px;}
.xcc_c00157{left:282.000000px;}
.x40_c00157{left:283.275000px;}
.xe9_c00157{left:285.000000px;}
.x4b_c00157{left:286.080000px;}
.xc0_c00157{left:288.000000px;}
.x60_c00157{left:289.920000px;}
.x55_c00157{left:292.500000px;}
.xa1_c00157{left:295.920000px;}
.x2f_c00157{left:298.500000px;}
.x83_c00157{left:300.000000px;}
.x91_c00157{left:302.580000px;}
.xd4_c00157{left:304.080000px;}
.xae_c00157{left:308.580000px;}
.x41_c00157{left:310.500000px;}
.x4c_c00157{left:311.580000px;}
.xb0_c00157{left:313.500000px;}
.x61_c00157{left:315.420000px;}
.x1e_c00157{left:316.500000px;}
.x35_c00157{left:317.580000px;}
.xf7_c00157{left:319.500000px;}
.x92_c00157{left:321.420000px;}
.xa2_c00157{left:322.920000px;}
.x7_c00157{left:327.000000px;}
.xe3_c00157{left:328.080000px;}
.x96_c00157{left:330.000000px;}
.x73_c00157{left:334.500000px;}
.x4d_c00157{left:339.420000px;}
.x1f_c00157{left:340.920000px;}
.x89_c00157{left:342.000000px;}
.x12_c00157{left:343.080000px;}
.x56_c00157{left:345.420000px;}
.xf2_c00157{left:348.000000px;}
.xc1_c00157{left:354.000000px;}
.xed_c00157{left:356.580000px;}
.x8_c00157{left:357.855000px;}
.x42_c00157{left:363.000000px;}
.x74_c00157{left:364.500000px;}
.x20_c00157{left:367.920000px;}
.xc2_c00157{left:370.500000px;}
.x4e_c00157{left:373.500000px;}
.x69_c00157{left:375.000000px;}
.x8a_c00157{left:376.500000px;}
.x57_c00157{left:379.500000px;}
.xb8_c00157{left:382.920000px;}
.xc5_c00157{left:385.500000px;}
.xfb_c00157{left:387.000000px;}
.x36_c00157{left:388.500000px;}
.xcd_c00157{left:390.000000px;}
.x13_c00157{left:391.080000px;}
.xea_c00157{left:393.000000px;}
.x93_c00157{left:394.920000px;}
.x75_c00157{left:396.000000px;}
.x2_c00157{left:399.000000px;}
.xce_c00157{left:400.500000px;}
.x30_c00157{left:401.580000px;}
.x21_c00157{left:403.500000px;}
.xdf_c00157{left:406.500000px;}
.xda_c00157{left:408.000000px;}
.x62_c00157{left:409.500000px;}
.xc6_c00157{left:412.500000px;}
.xa7_c00157{left:413.580000px;}
.xb9_c00157{left:416.580000px;}
.x31_c00157{left:418.920000px;}
.x7d_c00157{left:420.000000px;}
.xee_c00157{left:421.080000px;}
.x8b_c00157{left:423.000000px;}
.xd5_c00157{left:424.080000px;}
.x37_c00157{left:427.500000px;}
.x97_c00157{left:430.500000px;}
.x43_c00157{left:431.775000px;}
.x6a_c00157{left:433.500000px;}
.xb2_c00157{left:436.080000px;}
.x14_c00157{left:439.500000px;}
.x63_c00157{left:441.000000px;}
.xb6_c00157{left:442.080000px;}
.x22_c00157{left:445.080000px;}
.xa3_c00157{left:447.000000px;}
.x7e_c00157{left:451.500000px;}
.x6b_c00157{left:453.420000px;}
.xf8_c00157{left:454.500000px;}
.x9_c00157{left:457.500000px;}
.xa8_c00157{left:459.000000px;}
.xeb_c00157{left:460.920000px;}
.x23_c00157{left:463.500000px;}
.x4f_c00157{left:465.420000px;}
.x98_c00157{left:466.500000px;}
.x38_c00157{left:468.420000px;}
.x44_c00157{left:470.580000px;}
.x58_c00157{left:471.855000px;}
.xba_c00157{left:474.000000px;}
.x64_c00157{left:475.500000px;}
.x15_c00157{left:476.580000px;}
.xd6_c00157{left:478.500000px;}
.xcf_c00157{left:481.500000px;}
.xb3_c00157{left:484.920000px;}
.x6c_c00157{left:491.580000px;}
.xe4_c00157{left:493.080000px;}
.x65_c00157{left:494.580000px;}
.x16_c00157{left:496.920000px;}
.x45_c00157{left:499.920000px;}
.xdb_c00157{left:502.080000px;}
.x50_c00157{left:504.000000px;}
.x24_c00157{left:505.080000px;}
.x99_c00157{left:507.420000px;}
.xf3_c00157{left:508.500000px;}
.x59_c00157{left:510.000000px;}
.x7f_c00157{left:511.500000px;}
.xc7_c00157{left:516.420000px;}
.x39_c00157{left:518.580000px;}
.x32_c00157{left:520.920000px;}
.xa_c00157{left:523.920000px;}
.xd0_c00157{left:526.080000px;}
.x84_c00157{left:529.500000px;}
.xf9_c00157{left:531.000000px;}
.xbb_c00157{left:532.500000px;}
.x76_c00157{left:534.420000px;}
.xa9_c00157{left:537.420000px;}
.x3a_c00157{left:538.920000px;}
.xe5_c00157{left:540.000000px;}
.x25_c00157{left:541.500000px;}
.xca_c00157{left:544.500000px;}
.x8c_c00157{left:546.000000px;}
.x9a_c00157{left:549.000000px;}
.xa4_c00157{left:550.500000px;}
.xc8_c00157{left:551.580000px;}
.xef_c00157{left:552.855000px;}
.x51_c00157{left:555.000000px;}
.xb_c00157{left:556.500000px;}
.x17_c00157{left:558.420000px;}
.xbc_c00157{left:559.920000px;}
.x5a_c00157{left:561.000000px;}
.xaa_c00157{left:564.420000px;}
.x6d_c00157{left:566.355000px;}
.xd7_c00157{left:570.420000px;}
.x77_c00157{left:573.420000px;}
.x80_c00157{left:574.920000px;}
.x3b_c00157{left:580.500000px;}
.xc_c00157{left:583.500000px;}
.xc9_c00157{left:591.420000px;}
.xe0_c00157{left:592.500000px;}
.xb4_c00157{left:594.000000px;}
.x18_c00157{left:595.500000px;}
.xbd_c00157{left:598.500000px;}
.x66_c00157{left:601.920000px;}
.x6e_c00157{left:603.855000px;}
.xab_c00157{left:607.080000px;}
.x46_c00157{left:609.420000px;}
.x9b_c00157{left:610.920000px;}
.x81_c00157{left:612.855000px;}
.x26_c00157{left:615.000000px;}
.x85_c00157{left:618.420000px;}
.xd1_c00157{left:619.500000px;}
.xd_c00157{left:621.420000px;}
.xf4_c00157{left:623.580000px;}
.xf0_c00157{left:625.275000px;}
.x5b_c00157{left:627.420000px;}
.xc3_c00157{left:628.500000px;}
.x9c_c00157{left:629.580000px;}
.xe6_c00157{left:631.500000px;}
.x19_c00157{left:633.000000px;}
.x47_c00157{left:637.920000px;}
.xec_c00157{left:639.000000px;}
.x27_c00157{left:640.500000px;}
.x6f_c00157{left:641.580000px;}
.xe7_c00157{left:645.000000px;}
.x9d_c00157{left:647.580000px;}
.xe_c00157{left:651.000000px;}
.x33_c00157{left:652.080000px;}
.x67_c00157{left:655.080000px;}
.x8d_c00157{left:657.000000px;}
.x52_c00157{left:658.920000px;}
.x1a_c00157{left:660.420000px;}
.xe1_c00157{left:661.500000px;}
.x48_c00157{left:664.920000px;}
.x9e_c00157{left:666.000000px;}
.x3c_c00157{left:667.080000px;}
.x78_c00157{left:668.580000px;}
.x86_c00157{left:673.500000px;}
.xb5_c00157{left:676.080000px;}
.x34_c00157{left:682.080000px;}
.x53_c00157{left:685.920000px;}
.x79_c00157{left:688.080000px;}
.x5c_c00157{left:691.500000px;}
.x68_c00157{left:694.500000px;}
.xdc_c00157{left:696.000000px;}
.x28_c00157{left:700.500000px;}
.xfa_c00157{left:702.420000px;}
.x87_c00157{left:703.500000px;}
.x3d_c00157{left:706.500000px;}
.xe8_c00157{left:709.920000px;}
.x1b_c00157{left:713.580000px;}
.x49_c00157{left:715.080000px;}
.xf5_c00157{left:716.580000px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.ls0_c00157{letter-spacing:0.000000pt;}
.ws1_c00157{word-spacing:-4.531093pt;}
.ws3_c00157{word-spacing:0.000000pt;}
.ws0_c00157{word-spacing:3.928902pt;}
.ws2_c00157{word-spacing:4.513176pt;}
.fs6_c00157{font-size:3.040000pt;}
.fs7_c00157{font-size:10.560000pt;}
.fs5_c00157{font-size:16.640000pt;}
.fs1_c00157{font-size:18.133333pt;}
.fs3_c00157{font-size:22.666667pt;}
.fs0_c00157{font-size:25.706667pt;}
.fs4_c00157{font-size:28.746667pt;}
.fs2_c00157{font-size:31.733333pt;}
.y0_c00157{bottom:0.000000pt;}
.yc2_c00157{bottom:223.773333pt;}
.ybf_c00157{bottom:224.360000pt;}
.yc0_c00157{bottom:224.560000pt;}
.yc1_c00157{bottom:225.693333pt;}
.yba_c00157{bottom:239.773333pt;}
.ybe_c00157{bottom:241.106667pt;}
.ybb_c00157{bottom:241.693333pt;}
.ybc_c00157{bottom:243.026667pt;}
.ybd_c00157{bottom:243.973333pt;}
.yb7_c00157{bottom:258.440000pt;}
.yb9_c00157{bottom:259.400000pt;}
.yb8_c00157{bottom:259.973333pt;}
.yb6_c00157{bottom:260.360000pt;}
.yb3_c00157{bottom:276.733333pt;}
.yb4_c00157{bottom:276.933333pt;}
.yb2_c00157{bottom:277.106667pt;}
.yb1_c00157{bottom:277.693333pt;}
.yb5_c00157{bottom:279.026667pt;}
.yb0_c00157{bottom:293.106667pt;}
.yac_c00157{bottom:294.266667pt;}
.yaf_c00157{bottom:294.440000pt;}
.yab_c00157{bottom:294.640000pt;}
.yad_c00157{bottom:295.026667pt;}
.yae_c00157{bottom:296.360000pt;}
.ya8_c00157{bottom:311.773333pt;}
.ya5_c00157{bottom:312.360000pt;}
.yaa_c00157{bottom:312.560000pt;}
.ya9_c00157{bottom:312.733333pt;}
.ya6_c00157{bottom:313.693333pt;}
.ya7_c00157{bottom:313.706667pt;}
.ya4_c00157{bottom:331.026667pt;}
.ya2_c00157{bottom:346.440000pt;}
.ya3_c00157{bottom:347.400000pt;}
.ya1_c00157{bottom:348.360000pt;}
.ya0_c00157{bottom:363.773333pt;}
.y9f_c00157{bottom:364.733333pt;}
.y9c_c00157{bottom:365.693333pt;}
.y9d_c00157{bottom:365.893333pt;}
.y9e_c00157{bottom:366.640000pt;}
.y9b_c00157{bottom:380.733333pt;}
.y9a_c00157{bottom:381.106667pt;}
.y99_c00157{bottom:382.640000pt;}
.y97_c00157{bottom:383.026667pt;}
.y98_c00157{bottom:384.360000pt;}
.y96_c00157{bottom:397.693333pt;}
.y93_c00157{bottom:399.773333pt;}
.y94_c00157{bottom:400.360000pt;}
.y95_c00157{bottom:400.560000pt;}
.y90_c00157{bottom:400.733333pt;}
.y92_c00157{bottom:401.693333pt;}
.y91_c00157{bottom:401.706667pt;}
.y8f_c00157{bottom:419.026667pt;}
.y8c_c00157{bottom:434.440000pt;}
.y8a_c00157{bottom:435.226667pt;}
.y8d_c00157{bottom:435.400000pt;}
.y8e_c00157{bottom:435.973333pt;}
.y89_c00157{bottom:436.360000pt;}
.y8b_c00157{bottom:436.373333pt;}
.y88_c00157{bottom:451.026667pt;}
.y85_c00157{bottom:451.773333pt;}
.y87_c00157{bottom:452.733333pt;}
.y86_c00157{bottom:453.706667pt;}
.y84_c00157{bottom:469.106667pt;}
.y80_c00157{bottom:486.440000pt;}
.y82_c00157{bottom:488.360000pt;}
.y83_c00157{bottom:489.306667pt;}
.y81_c00157{bottom:489.706667pt;}
.y7f_c00157{bottom:510.640000pt;}
.y7b_c00157{bottom:511.026667pt;}
.y7d_c00157{bottom:511.973333pt;}
.y7c_c00157{bottom:512.360000pt;}
.y7e_c00157{bottom:512.560000pt;}
.y7a_c00157{bottom:527.400000pt;}
.y79_c00157{bottom:527.600000pt;}
.y78_c00157{bottom:528.360000pt;}
.y73_c00157{bottom:539.973333pt;}
.y72_c00157{bottom:540.733333pt;}
.y76_c00157{bottom:540.933333pt;}
.y75_c00157{bottom:541.893333pt;}
.y74_c00157{bottom:542.066667pt;}
.y77_c00157{bottom:543.600000pt;}
.y71_c00157{bottom:565.106667pt;}
.y70_c00157{bottom:567.026667pt;}
.y6f_c00157{bottom:607.026667pt;}
.y6d_c00157{bottom:609.693333pt;}
.y6c_c00157{bottom:610.640000pt;}
.y6e_c00157{bottom:611.026667pt;}
.y6a_c00157{bottom:625.306667pt;}
.y69_c00157{bottom:626.440000pt;}
.y6b_c00157{bottom:627.973333pt;}
.y67_c00157{bottom:628.360000pt;}
.y68_c00157{bottom:628.373333pt;}
.y66_c00157{bottom:641.693333pt;}
.y65_c00157{bottom:643.773333pt;}
.y64_c00157{bottom:645.306667pt;}
.y63_c00157{bottom:645.693333pt;}
.y62_c00157{bottom:660.360000pt;}
.y60_c00157{bottom:661.106667pt;}
.y5f_c00157{bottom:663.026667pt;}
.y61_c00157{bottom:663.973333pt;}
.y58_c00157{bottom:676.560000pt;}
.y59_c00157{bottom:677.133333pt;}
.y5b_c00157{bottom:677.693333pt;}
.y5a_c00157{bottom:678.440000pt;}
.y5e_c00157{bottom:678.640000pt;}
.y5d_c00157{bottom:679.400000pt;}
.y5c_c00157{bottom:680.360000pt;}
.y57_c00157{bottom:680.560000pt;}
.y55_c00157{bottom:694.466667pt;}
.y53_c00157{bottom:695.026667pt;}
.y56_c00157{bottom:695.773333pt;}
.y52_c00157{bottom:696.360000pt;}
.y51_c00157{bottom:696.733333pt;}
.y4f_c00157{bottom:697.693333pt;}
.y50_c00157{bottom:697.893333pt;}
.y54_c00157{bottom:700.560000pt;}
.y49_c00157{bottom:713.106667pt;}
.y4b_c00157{bottom:713.693333pt;}
.y48_c00157{bottom:714.066667pt;}
.y4e_c00157{bottom:714.440000pt;}
.y4d_c00157{bottom:715.226667pt;}
.y4a_c00157{bottom:715.400000pt;}
.y4c_c00157{bottom:716.360000pt;}
.y43_c00157{bottom:729.693333pt;}
.y42_c00157{bottom:730.640000pt;}
.y44_c00157{bottom:731.773333pt;}
.y47_c00157{bottom:731.973333pt;}
.y46_c00157{bottom:732.733333pt;}
.y45_c00157{bottom:733.693333pt;}
.y3f_c00157{bottom:748.360000pt;}
.y3e_c00157{bottom:749.106667pt;}
.y3d_c00157{bottom:750.066667pt;}
.y41_c00157{bottom:751.026667pt;}
.y40_c00157{bottom:751.973333pt;}
.y3c_c00157{bottom:764.733333pt;}
.y38_c00157{bottom:766.440000pt;}
.y39_c00157{bottom:767.400000pt;}
.y3a_c00157{bottom:767.973333pt;}
.y3b_c00157{bottom:768.360000pt;}
.y37_c00157{bottom:782.440000pt;}
.y34_c00157{bottom:783.026667pt;}
.y31_c00157{bottom:783.773333pt;}
.y33_c00157{bottom:783.973333pt;}
.y35_c00157{bottom:784.560000pt;}
.y30_c00157{bottom:784.733333pt;}
.y32_c00157{bottom:785.693333pt;}
.y36_c00157{bottom:785.706667pt;}
.y2e_c00157{bottom:800.360000pt;}
.y2d_c00157{bottom:800.733333pt;}
.y2b_c00157{bottom:801.106667pt;}
.y2c_c00157{bottom:801.306667pt;}
.y2f_c00157{bottom:802.066667pt;}
.y2a_c00157{bottom:803.026667pt;}
.y27_c00157{bottom:817.693333pt;}
.y26_c00157{bottom:818.440000pt;}
.y29_c00157{bottom:818.640000pt;}
.y28_c00157{bottom:819.026667pt;}
.y25_c00157{bottom:820.360000pt;}
.y24_c00157{bottom:835.026667pt;}
.y1f_c00157{bottom:835.773333pt;}
.y22_c00157{bottom:835.973333pt;}
.y20_c00157{bottom:836.360000pt;}
.y21_c00157{bottom:837.106667pt;}
.y1e_c00157{bottom:837.693333pt;}
.y23_c00157{bottom:839.026667pt;}
.y1b_c00157{bottom:853.106667pt;}
.y1d_c00157{bottom:853.693333pt;}
.y19_c00157{bottom:854.066667pt;}
.y1a_c00157{bottom:854.440000pt;}
.y1c_c00157{bottom:856.360000pt;}
.y18_c00157{bottom:871.773333pt;}
.y15_c00157{bottom:872.360000pt;}
.y17_c00157{bottom:873.306667pt;}
.y16_c00157{bottom:873.693333pt;}
.y14_c00157{bottom:889.106667pt;}
.y12_c00157{bottom:890.640000pt;}
.y13_c00157{bottom:891.026667pt;}
.yc_c00157{bottom:906.440000pt;}
.y11_c00157{bottom:907.226667pt;}
.yd_c00157{bottom:907.400000pt;}
.y10_c00157{bottom:907.973333pt;}
.yf_c00157{bottom:908.360000pt;}
.ye_c00157{bottom:909.306667pt;}
.y9_c00157{bottom:923.026667pt;}
.yb_c00157{bottom:923.773333pt;}
.ya_c00157{bottom:925.306667pt;}
.y8_c00157{bottom:925.693333pt;}
.y7_c00157{bottom:926.640000pt;}
.y3_c00157{bottom:941.106667pt;}
.y5_c00157{bottom:942.640000pt;}
.y4_c00157{bottom:943.026667pt;}
.y6_c00157{bottom:943.973333pt;}
.y2_c00157{bottom:976.933333pt;}
.y1_c00157{bottom:977.693333pt;}
.h7_c00157{height:3.739141pt;}
.h8_c00157{height:12.988594pt;}
.h6_c00157{height:20.466875pt;}
.h2_c00157{height:22.303646pt;}
.h4_c00157{height:27.879557pt;}
.h1_c00157{height:31.618698pt;}
.h5_c00157{height:35.357839pt;}
.h3_c00157{height:39.031380pt;}
.h0_c00157{height:1186.666667pt;}
.w0_c00157{width:782.666667pt;}
.x0_c00157{left:0.000000pt;}
.x1c_c00157{left:132.000000pt;}
.x3_c00157{left:133.706667pt;}
.x1_c00157{left:135.040000pt;}
.xcb_c00157{left:136.000000pt;}
.xc4_c00157{left:137.133333pt;}
.x2c_c00157{left:147.626667pt;}
.x94_c00157{left:149.333333pt;}
.x29_c00157{left:151.040000pt;}
.xac_c00157{left:153.706667pt;}
.x8e_c00157{left:157.333333pt;}
.x5d_c00157{left:158.466667pt;}
.xf_c00157{left:160.000000pt;}
.x9f_c00157{left:161.706667pt;}
.xd2_c00157{left:162.666667pt;}
.x8f_c00157{left:163.626667pt;}
.x3e_c00157{left:165.333333pt;}
.xf1_c00157{left:166.666667pt;}
.x7a_c00157{left:167.626667pt;}
.x70_c00157{left:170.093333pt;}
.xf6_c00157{left:172.000000pt;}
.x10_c00157{left:176.960000pt;}
.x4a_c00157{left:178.666667pt;}
.xdd_c00157{left:180.000000pt;}
.x54_c00157{left:182.666667pt;}
.xbe_c00157{left:184.373333pt;}
.xa0_c00157{left:185.333333pt;}
.x95_c00157{left:189.333333pt;}
.x5e_c00157{left:190.666667pt;}
.xad_c00157{left:192.000000pt;}
.xb1_c00157{left:192.960000pt;}
.x7b_c00157{left:194.293333pt;}
.x11_c00157{left:197.333333pt;}
.x4_c00157{left:199.040000pt;}
.x71_c00157{left:204.000000pt;}
.x2d_c00157{left:204.960000pt;}
.xb7_c00157{left:207.626667pt;}
.xa5_c00157{left:210.666667pt;}
.xe2_c00157{left:213.333333pt;}
.x1d_c00157{left:215.040000pt;}
.xaf_c00157{left:216.960000pt;}
.x5_c00157{left:218.293333pt;}
.x88_c00157{left:220.000000pt;}
.x2a_c00157{left:220.960000pt;}
.x7c_c00157{left:223.040000pt;}
.x5f_c00157{left:224.373333pt;}
.x90_c00157{left:225.706667pt;}
.x3f_c00157{left:227.040000pt;}
.xd8_c00157{left:228.000000pt;}
.xa6_c00157{left:230.293333pt;}
.x2e_c00157{left:232.000000pt;}
.xd3_c00157{left:233.333333pt;}
.x6_c00157{left:235.040000pt;}
.xbf_c00157{left:237.333333pt;}
.x2b_c00157{left:239.040000pt;}
.x82_c00157{left:240.000000pt;}
.xde_c00157{left:243.426667pt;}
.xd9_c00157{left:245.333333pt;}
.x72_c00157{left:249.706667pt;}
.xcc_c00157{left:250.666667pt;}
.x40_c00157{left:251.800000pt;}
.xe9_c00157{left:253.333333pt;}
.x4b_c00157{left:254.293333pt;}
.xc0_c00157{left:256.000000pt;}
.x60_c00157{left:257.706667pt;}
.x55_c00157{left:260.000000pt;}
.xa1_c00157{left:263.040000pt;}
.x2f_c00157{left:265.333333pt;}
.x83_c00157{left:266.666667pt;}
.x91_c00157{left:268.960000pt;}
.xd4_c00157{left:270.293333pt;}
.xae_c00157{left:274.293333pt;}
.x41_c00157{left:276.000000pt;}
.x4c_c00157{left:276.960000pt;}
.xb0_c00157{left:278.666667pt;}
.x61_c00157{left:280.373333pt;}
.x1e_c00157{left:281.333333pt;}
.x35_c00157{left:282.293333pt;}
.xf7_c00157{left:284.000000pt;}
.x92_c00157{left:285.706667pt;}
.xa2_c00157{left:287.040000pt;}
.x7_c00157{left:290.666667pt;}
.xe3_c00157{left:291.626667pt;}
.x96_c00157{left:293.333333pt;}
.x73_c00157{left:297.333333pt;}
.x4d_c00157{left:301.706667pt;}
.x1f_c00157{left:303.040000pt;}
.x89_c00157{left:304.000000pt;}
.x12_c00157{left:304.960000pt;}
.x56_c00157{left:307.040000pt;}
.xf2_c00157{left:309.333333pt;}
.xc1_c00157{left:314.666667pt;}
.xed_c00157{left:316.960000pt;}
.x8_c00157{left:318.093333pt;}
.x42_c00157{left:322.666667pt;}
.x74_c00157{left:324.000000pt;}
.x20_c00157{left:327.040000pt;}
.xc2_c00157{left:329.333333pt;}
.x4e_c00157{left:332.000000pt;}
.x69_c00157{left:333.333333pt;}
.x8a_c00157{left:334.666667pt;}
.x57_c00157{left:337.333333pt;}
.xb8_c00157{left:340.373333pt;}
.xc5_c00157{left:342.666667pt;}
.xfb_c00157{left:344.000000pt;}
.x36_c00157{left:345.333333pt;}
.xcd_c00157{left:346.666667pt;}
.x13_c00157{left:347.626667pt;}
.xea_c00157{left:349.333333pt;}
.x93_c00157{left:351.040000pt;}
.x75_c00157{left:352.000000pt;}
.x2_c00157{left:354.666667pt;}
.xce_c00157{left:356.000000pt;}
.x30_c00157{left:356.960000pt;}
.x21_c00157{left:358.666667pt;}
.xdf_c00157{left:361.333333pt;}
.xda_c00157{left:362.666667pt;}
.x62_c00157{left:364.000000pt;}
.xc6_c00157{left:366.666667pt;}
.xa7_c00157{left:367.626667pt;}
.xb9_c00157{left:370.293333pt;}
.x31_c00157{left:372.373333pt;}
.x7d_c00157{left:373.333333pt;}
.xee_c00157{left:374.293333pt;}
.x8b_c00157{left:376.000000pt;}
.xd5_c00157{left:376.960000pt;}
.x37_c00157{left:380.000000pt;}
.x97_c00157{left:382.666667pt;}
.x43_c00157{left:383.800000pt;}
.x6a_c00157{left:385.333333pt;}
.xb2_c00157{left:387.626667pt;}
.x14_c00157{left:390.666667pt;}
.x63_c00157{left:392.000000pt;}
.xb6_c00157{left:392.960000pt;}
.x22_c00157{left:395.626667pt;}
.xa3_c00157{left:397.333333pt;}
.x7e_c00157{left:401.333333pt;}
.x6b_c00157{left:403.040000pt;}
.xf8_c00157{left:404.000000pt;}
.x9_c00157{left:406.666667pt;}
.xa8_c00157{left:408.000000pt;}
.xeb_c00157{left:409.706667pt;}
.x23_c00157{left:412.000000pt;}
.x4f_c00157{left:413.706667pt;}
.x98_c00157{left:414.666667pt;}
.x38_c00157{left:416.373333pt;}
.x44_c00157{left:418.293333pt;}
.x58_c00157{left:419.426667pt;}
.xba_c00157{left:421.333333pt;}
.x64_c00157{left:422.666667pt;}
.x15_c00157{left:423.626667pt;}
.xd6_c00157{left:425.333333pt;}
.xcf_c00157{left:428.000000pt;}
.xb3_c00157{left:431.040000pt;}
.x6c_c00157{left:436.960000pt;}
.xe4_c00157{left:438.293333pt;}
.x65_c00157{left:439.626667pt;}
.x16_c00157{left:441.706667pt;}
.x45_c00157{left:444.373333pt;}
.xdb_c00157{left:446.293333pt;}
.x50_c00157{left:448.000000pt;}
.x24_c00157{left:448.960000pt;}
.x99_c00157{left:451.040000pt;}
.xf3_c00157{left:452.000000pt;}
.x59_c00157{left:453.333333pt;}
.x7f_c00157{left:454.666667pt;}
.xc7_c00157{left:459.040000pt;}
.x39_c00157{left:460.960000pt;}
.x32_c00157{left:463.040000pt;}
.xa_c00157{left:465.706667pt;}
.xd0_c00157{left:467.626667pt;}
.x84_c00157{left:470.666667pt;}
.xf9_c00157{left:472.000000pt;}
.xbb_c00157{left:473.333333pt;}
.x76_c00157{left:475.040000pt;}
.xa9_c00157{left:477.706667pt;}
.x3a_c00157{left:479.040000pt;}
.xe5_c00157{left:480.000000pt;}
.x25_c00157{left:481.333333pt;}
.xca_c00157{left:484.000000pt;}
.x8c_c00157{left:485.333333pt;}
.x9a_c00157{left:488.000000pt;}
.xa4_c00157{left:489.333333pt;}
.xc8_c00157{left:490.293333pt;}
.xef_c00157{left:491.426667pt;}
.x51_c00157{left:493.333333pt;}
.xb_c00157{left:494.666667pt;}
.x17_c00157{left:496.373333pt;}
.xbc_c00157{left:497.706667pt;}
.x5a_c00157{left:498.666667pt;}
.xaa_c00157{left:501.706667pt;}
.x6d_c00157{left:503.426667pt;}
.xd7_c00157{left:507.040000pt;}
.x77_c00157{left:509.706667pt;}
.x80_c00157{left:511.040000pt;}
.x3b_c00157{left:516.000000pt;}
.xc_c00157{left:518.666667pt;}
.xc9_c00157{left:525.706667pt;}
.xe0_c00157{left:526.666667pt;}
.xb4_c00157{left:528.000000pt;}
.x18_c00157{left:529.333333pt;}
.xbd_c00157{left:532.000000pt;}
.x66_c00157{left:535.040000pt;}
.x6e_c00157{left:536.760000pt;}
.xab_c00157{left:539.626667pt;}
.x46_c00157{left:541.706667pt;}
.x9b_c00157{left:543.040000pt;}
.x81_c00157{left:544.760000pt;}
.x26_c00157{left:546.666667pt;}
.x85_c00157{left:549.706667pt;}
.xd1_c00157{left:550.666667pt;}
.xd_c00157{left:552.373333pt;}
.xf4_c00157{left:554.293333pt;}
.xf0_c00157{left:555.800000pt;}
.x5b_c00157{left:557.706667pt;}
.xc3_c00157{left:558.666667pt;}
.x9c_c00157{left:559.626667pt;}
.xe6_c00157{left:561.333333pt;}
.x19_c00157{left:562.666667pt;}
.x47_c00157{left:567.040000pt;}
.xec_c00157{left:568.000000pt;}
.x27_c00157{left:569.333333pt;}
.x6f_c00157{left:570.293333pt;}
.xe7_c00157{left:573.333333pt;}
.x9d_c00157{left:575.626667pt;}
.xe_c00157{left:578.666667pt;}
.x33_c00157{left:579.626667pt;}
.x67_c00157{left:582.293333pt;}
.x8d_c00157{left:584.000000pt;}
.x52_c00157{left:585.706667pt;}
.x1a_c00157{left:587.040000pt;}
.xe1_c00157{left:588.000000pt;}
.x48_c00157{left:591.040000pt;}
.x9e_c00157{left:592.000000pt;}
.x3c_c00157{left:592.960000pt;}
.x78_c00157{left:594.293333pt;}
.x86_c00157{left:598.666667pt;}
.xb5_c00157{left:600.960000pt;}
.x34_c00157{left:606.293333pt;}
.x53_c00157{left:609.706667pt;}
.x79_c00157{left:611.626667pt;}
.x5c_c00157{left:614.666667pt;}
.x68_c00157{left:617.333333pt;}
.xdc_c00157{left:618.666667pt;}
.x28_c00157{left:622.666667pt;}
.xfa_c00157{left:624.373333pt;}
.x87_c00157{left:625.333333pt;}
.x3d_c00157{left:628.000000pt;}
.xe8_c00157{left:631.040000pt;}
.x1b_c00157{left:634.293333pt;}
.x49_c00157{left:635.626667pt;}
.xf5_c00157{left:636.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_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_bebf7592897bfbd32394c537.woff2')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4c_c00158{transform:matrix(0.331092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331092,0.000000,0.000000,0.250000,0,0);}
.m1d_c00158{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m4b_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);}
.me_c00158{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.mb4_c00158{transform:matrix(0.363173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363173,0.000000,0.000000,0.250000,0,0);}
.mca_c00158{transform:matrix(0.364108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364108,0.000000,0.000000,0.250000,0,0);}
.m9_c00158{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m82_c00158{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m62_c00158{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.mf_c00158{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m2e_c00158{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m46_c00158{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.md_c00158{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mc2_c00158{transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);}
.m41_c00158{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m8d_c00158{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m42_c00158{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mba_c00158{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.mc3_c00158{transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);}
.m17_c00158{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.mae_c00158{transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);}
.m27_c00158{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.me2_c00158{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.m66_c00158{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.mdd_c00158{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.me3_c00158{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m47_c00158{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.mbd_c00158{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m45_c00158{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.mcf_c00158{transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);}
.me1_c00158{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m71_c00158{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m94_c00158{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.md2_c00158{transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);}
.m44_c00158{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m77_c00158{transform:matrix(0.424397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424397,0.000000,0.000000,0.250000,0,0);}
.m30_c00158{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m63_c00158{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m86_c00158{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m2c_c00158{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m4d_c00158{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m1e_c00158{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.m8f_c00158{transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);}
.m9c_c00158{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m11_c00158{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m75_c00158{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m51_c00158{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m5d_c00158{transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);}
.m3e_c00158{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mda_c00158{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.ma0_c00158{transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);}
.m89_c00158{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.ma6_c00158{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m78_c00158{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.mc_c00158{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m21_c00158{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.mb6_c00158{transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);}
.m2f_c00158{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m48_c00158{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.mc0_c00158{transform:matrix(0.446471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446471,0.000000,0.000000,0.250000,0,0);}
.mb9_c00158{transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);}
.mdb_c00158{transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);}
.md6_c00158{transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);}
.m97_c00158{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mb_c00158{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m9a_c00158{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m95_c00158{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.mc5_c00158{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.mb7_c00158{transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);}
.m9e_c00158{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.ma9_c00158{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m4a_c00158{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m7f_c00158{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.maa_c00158{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.ma7_c00158{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.mbb_c00158{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.me0_c00158{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.ma_c00158{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m72_c00158{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.ma3_c00158{transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);}
.mc9_c00158{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m96_c00158{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mdc_c00158{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m5a_c00158{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m1_c00158{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m5f_c00158{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m7a_c00158{transform:matrix(0.494706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494706,0.000000,0.000000,0.250000,0,0);}
.m7e_c00158{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m8c_c00158{transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);}
.m18_c00158{transform:matrix(0.497407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497407,0.000000,0.000000,0.250000,0,0);}
.m28_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);}
.mb3_c00158{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m39_c00158{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mb5_c00158{transform:matrix(0.505882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505882,0.000000,0.000000,0.250000,0,0);}
.me5_c00158{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m64_c00158{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m2d_c00158{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m65_c00158{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m69_c00158{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m52_c00158{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mbc_c00158{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.m84_c00158{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m61_c00158{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);}
.m93_c00158{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m2a_c00158{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mc1_c00158{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.m4e_c00158{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m76_c00158{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);}
.m24_c00158{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mbe_c00158{transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);}
.m7d_c00158{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m6_c00158{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m8_c00158{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m4_c00158{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m5_c00158{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m87_c00158{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m2_c00158{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m3f_c00158{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m1b_c00158{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mce_c00158{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m4f_c00158{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m1a_c00158{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m58_c00158{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m29_c00158{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.ma4_c00158{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m20_c00158{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mc6_c00158{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m34_c00158{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m6f_c00158{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m15_c00158{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m1f_c00158{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m43_c00158{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.md7_c00158{transform:matrix(0.551176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551176,0.000000,0.000000,0.250000,0,0);}
.m3_c00158{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m7b_c00158{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m32_c00158{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.ma8_c00158{transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);}
.m31_c00158{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m6b_c00158{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m19_c00158{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m55_c00158{transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);}
.m50_c00158{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m5b_c00158{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m10_c00158{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m83_c00158{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.m3b_c00158{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m1c_c00158{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m12_c00158{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m98_c00158{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.ma5_c00158{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.m3a_c00158{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m91_c00158{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m7_c00158{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mb0_c00158{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.mcd_c00158{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.mcc_c00158{transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);}
.mc7_c00158{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m22_c00158{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m23_c00158{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m3d_c00158{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m14_c00158{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m90_c00158{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m8e_c00158{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.maf_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);}
.m13_c00158{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m60_c00158{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m40_c00158{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m85_c00158{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.mb2_c00158{transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);}
.ma1_c00158{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m70_c00158{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.mac_c00158{transform:matrix(0.591912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591912,0.000000,0.000000,0.250000,0,0);}
.m2b_c00158{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m56_c00158{transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);}
.m25_c00158{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m35_c00158{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m0_c00158{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m9d_c00158{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m36_c00158{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m38_c00158{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mdf_c00158{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m81_c00158{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m9b_c00158{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m6c_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);}
.m57_c00158{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.me4_c00158{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m74_c00158{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m6d_c00158{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m73_c00158{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m9f_c00158{transform:matrix(0.636029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636029,0.000000,0.000000,0.250000,0,0);}
.m88_c00158{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m6a_c00158{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.mbf_c00158{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.m79_c00158{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m5e_c00158{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.md5_c00158{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);}
.m5c_c00158{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m92_c00158{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.mcb_c00158{transform:matrix(0.657051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657051,0.000000,0.000000,0.250000,0,0);}
.mb8_c00158{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m6e_c00158{transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);}
.mc4_c00158{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m26_c00158{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m68_c00158{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.md1_c00158{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.md8_c00158{transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);}
.m80_c00158{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.md0_c00158{transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);}
.m7c_c00158{transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);}
.m67_c00158{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.mc8_c00158{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.mab_c00158{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m59_c00158{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);}
.m8a_c00158{transform:matrix(0.711765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.711765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.711765,0.000000,0.000000,0.250000,0,0);}
.m99_c00158{transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);}
.m33_c00158{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mde_c00158{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m16_c00158{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m53_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);}
.m49_c00158{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.md9_c00158{transform:matrix(0.780837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780837,0.000000,0.000000,0.250000,0,0);}
.mad_c00158{transform:matrix(0.794872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.794872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.794872,0.000000,0.000000,0.250000,0,0);}
.m37_c00158{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m3c_c00158{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m54_c00158{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.md4_c00158{transform:matrix(0.957048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.957048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.957048,0.000000,0.000000,0.250000,0,0);}
.md3_c00158{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m8b_c00158{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.mb1_c00158{transform:matrix(1.123348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.123348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.123348,0.000000,0.000000,0.250000,0,0);}
.ma2_c00158{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.v5_c00158{vertical-align:-6.000000px;}
.v0_c00158{vertical-align:0.000000px;}
.v2_c00158{vertical-align:1.680000px;}
.v1_c00158{vertical-align:6.000000px;}
.v4_c00158{vertical-align:7.680000px;}
.v3_c00158{vertical-align:10.320000px;}
.ls1_c00158{letter-spacing:0.000000px;}
.ls0_c00158{letter-spacing:12.657600px;}
.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;}
}
.ws6_c00158{word-spacing:-14.892000px;}
.ws0_c00158{word-spacing:-2.923710px;}
.ws7_c00158{word-spacing:-2.871000px;}
.ws1_c00158{word-spacing:-2.797918px;}
.ws4_c00158{word-spacing:-0.308400px;}
.ws9_c00158{word-spacing:0.000000px;}
.ws3_c00158{word-spacing:0.308050px;}
.ws5_c00158{word-spacing:0.779342px;}
.ws2_c00158{word-spacing:4.138561px;}
.ws8_c00158{word-spacing:5.691600px;}
._0_c00158{margin-left:-1.872000px;}
.fc0_c00158{color:transparent;}
.fs7_c00158{font-size:11.880000px;}
.fs6_c00158{font-size:13.620000px;}
.fs3_c00158{font-size:18.720000px;}
.fs0_c00158{font-size:20.400000px;}
.fs5_c00158{font-size:25.500000px;}
.fs1_c00158{font-size:28.920000px;}
.fs4_c00158{font-size:32.340000px;}
.fs2_c00158{font-size:35.700000px;}
.y0_c00158{bottom:0.000000px;}
.y11f_c00158{bottom:248.970000px;}
.y11d_c00158{bottom:249.825000px;}
.y119_c00158{bottom:250.050000px;}
.y11a_c00158{bottom:250.905000px;}
.y11e_c00158{bottom:251.130000px;}
.y11b_c00158{bottom:251.970000px;}
.y11c_c00158{bottom:253.050000px;}
.y118_c00158{bottom:264.825000px;}
.y115_c00158{bottom:265.905000px;}
.y116_c00158{bottom:266.130000px;}
.y117_c00158{bottom:266.970000px;}
.y110_c00158{bottom:279.825000px;}
.y114_c00158{bottom:280.905000px;}
.y111_c00158{bottom:281.130000px;}
.y10f_c00158{bottom:281.970000px;}
.y112_c00158{bottom:282.195000px;}
.y113_c00158{bottom:283.050000px;}
.y10b_c00158{bottom:294.825000px;}
.y10d_c00158{bottom:295.905000px;}
.y10a_c00158{bottom:296.970000px;}
.y10c_c00158{bottom:297.195000px;}
.y10e_c00158{bottom:298.050000px;}
.y108_c00158{bottom:309.405000px;}
.y106_c00158{bottom:310.050000px;}
.y107_c00158{bottom:310.905000px;}
.y109_c00158{bottom:311.970000px;}
.yff_c00158{bottom:323.325000px;}
.y103_c00158{bottom:324.405000px;}
.y102_c00158{bottom:324.825000px;}
.yfe_c00158{bottom:325.470000px;}
.y100_c00158{bottom:325.905000px;}
.y101_c00158{bottom:326.550000px;}
.y104_c00158{bottom:326.970000px;}
.y105_c00158{bottom:328.050000px;}
.yf6_c00158{bottom:337.470000px;}
.yf7_c00158{bottom:339.405000px;}
.yfc_c00158{bottom:339.630000px;}
.yf9_c00158{bottom:340.050000px;}
.yfd_c00158{bottom:340.470000px;}
.yfb_c00158{bottom:340.905000px;}
.yfa_c00158{bottom:341.550000px;}
.yf8_c00158{bottom:341.970000px;}
.yf4_c00158{bottom:353.550000px;}
.yf3_c00158{bottom:354.405000px;}
.yf1_c00158{bottom:354.630000px;}
.yf5_c00158{bottom:355.470000px;}
.yf2_c00158{bottom:356.550000px;}
.yed_c00158{bottom:368.325000px;}
.yef_c00158{bottom:369.405000px;}
.yee_c00158{bottom:369.630000px;}
.yec_c00158{bottom:370.470000px;}
.yf0_c00158{bottom:370.695000px;}
.yeb_c00158{bottom:371.550000px;}
.ye6_c00158{bottom:382.470000px;}
.yea_c00158{bottom:383.325000px;}
.ye8_c00158{bottom:383.550000px;}
.ye5_c00158{bottom:384.405000px;}
.ye4_c00158{bottom:384.630000px;}
.ye7_c00158{bottom:385.470000px;}
.ye9_c00158{bottom:386.550000px;}
.ye0_c00158{bottom:398.550000px;}
.ye2_c00158{bottom:399.405000px;}
.ye3_c00158{bottom:400.470000px;}
.ye1_c00158{bottom:401.550000px;}
.ydd_c00158{bottom:412.905000px;}
.ydf_c00158{bottom:414.405000px;}
.yde_c00158{bottom:416.550000px;}
.yd3_c00158{bottom:427.050000px;}
.yda_c00158{bottom:427.470000px;}
.yd4_c00158{bottom:428.325000px;}
.ydc_c00158{bottom:428.970000px;}
.yd6_c00158{bottom:429.405000px;}
.yd5_c00158{bottom:429.630000px;}
.yd7_c00158{bottom:430.050000px;}
.yd9_c00158{bottom:430.470000px;}
.ydb_c00158{bottom:430.695000px;}
.yd8_c00158{bottom:431.550000px;}
.yd0_c00158{bottom:443.325000px;}
.yd1_c00158{bottom:443.550000px;}
.yce_c00158{bottom:444.405000px;}
.ycc_c00158{bottom:445.050000px;}
.ycd_c00158{bottom:445.470000px;}
.ycf_c00158{bottom:445.695000px;}
.yd2_c00158{bottom:446.550000px;}
.yc8_c00158{bottom:456.825000px;}
.yc7_c00158{bottom:457.050000px;}
.yca_c00158{bottom:458.970000px;}
.ycb_c00158{bottom:460.050000px;}
.yc9_c00158{bottom:460.470000px;}
.yc3_c00158{bottom:471.825000px;}
.yc4_c00158{bottom:472.905000px;}
.yc5_c00158{bottom:473.970000px;}
.yc6_c00158{bottom:475.050000px;}
.yc2_c00158{bottom:486.825000px;}
.ybf_c00158{bottom:487.905000px;}
.yc1_c00158{bottom:488.970000px;}
.ybe_c00158{bottom:489.195000px;}
.yc0_c00158{bottom:490.050000px;}
.ybd_c00158{bottom:502.905000px;}
.yb7_c00158{bottom:515.970000px;}
.yb8_c00158{bottom:516.405000px;}
.yba_c00158{bottom:517.050000px;}
.yb9_c00158{bottom:517.905000px;}
.ybb_c00158{bottom:518.970000px;}
.ybc_c00158{bottom:520.050000px;}
.yb5_c00158{bottom:530.970000px;}
.yb6_c00158{bottom:531.405000px;}
.yb2_c00158{bottom:531.825000px;}
.yb3_c00158{bottom:532.050000px;}
.yb4_c00158{bottom:533.970000px;}
.yaf_c00158{bottom:545.775000px;}
.yae_c00158{bottom:545.970000px;}
.yac_c00158{bottom:546.405000px;}
.yab_c00158{bottom:547.050000px;}
.yb1_c00158{bottom:548.550000px;}
.yb0_c00158{bottom:548.970000px;}
.yad_c00158{bottom:549.195000px;}
.ya9_c00158{bottom:560.970000px;}
.ya7_c00158{bottom:561.825000px;}
.ya6_c00158{bottom:563.130000px;}
.yaa_c00158{bottom:563.550000px;}
.ya8_c00158{bottom:563.970000px;}
.ya5_c00158{bottom:576.825000px;}
.ya3_c00158{bottom:577.050000px;}
.ya1_c00158{bottom:577.905000px;}
.y9e_c00158{bottom:578.130000px;}
.y9f_c00158{bottom:578.550000px;}
.ya0_c00158{bottom:578.970000px;}
.ya2_c00158{bottom:579.195000px;}
.ya4_c00158{bottom:580.050000px;}
.y9b_c00158{bottom:591.405000px;}
.y9c_c00158{bottom:591.630000px;}
.y9a_c00158{bottom:592.470000px;}
.y9d_c00158{bottom:593.550000px;}
.y96_c00158{bottom:604.470000px;}
.y99_c00158{bottom:605.325000px;}
.y93_c00158{bottom:605.550000px;}
.y94_c00158{bottom:606.405000px;}
.y98_c00158{bottom:606.630000px;}
.y95_c00158{bottom:607.470000px;}
.y97_c00158{bottom:608.550000px;}
.y8c_c00158{bottom:619.470000px;}
.y92_c00158{bottom:620.325000px;}
.y8e_c00158{bottom:620.550000px;}
.y8d_c00158{bottom:621.405000px;}
.y90_c00158{bottom:622.470000px;}
.y8f_c00158{bottom:622.695000px;}
.y91_c00158{bottom:623.550000px;}
.y89_c00158{bottom:634.470000px;}
.y8b_c00158{bottom:635.325000px;}
.y88_c00158{bottom:636.405000px;}
.y8a_c00158{bottom:637.470000px;}
.y87_c00158{bottom:638.550000px;}
.y83_c00158{bottom:650.325000px;}
.y86_c00158{bottom:651.405000px;}
.y84_c00158{bottom:652.050000px;}
.y82_c00158{bottom:652.470000px;}
.y85_c00158{bottom:653.550000px;}
.y81_c00158{bottom:664.470000px;}
.y7d_c00158{bottom:665.325000px;}
.y80_c00158{bottom:666.405000px;}
.y7b_c00158{bottom:667.050000px;}
.y7c_c00158{bottom:667.470000px;}
.y7e_c00158{bottom:667.695000px;}
.y7f_c00158{bottom:668.550000px;}
.y74_c00158{bottom:679.470000px;}
.y76_c00158{bottom:679.905000px;}
.y77_c00158{bottom:681.405000px;}
.y7a_c00158{bottom:681.630000px;}
.y75_c00158{bottom:682.050000px;}
.y78_c00158{bottom:682.470000px;}
.y79_c00158{bottom:683.550000px;}
.y70_c00158{bottom:694.905000px;}
.y72_c00158{bottom:696.195000px;}
.y71_c00158{bottom:697.050000px;}
.y73_c00158{bottom:697.470000px;}
.y6f_c00158{bottom:709.470000px;}
.y6b_c00158{bottom:709.905000px;}
.y6e_c00158{bottom:710.325000px;}
.y6a_c00158{bottom:710.970000px;}
.y6d_c00158{bottom:711.630000px;}
.y69_c00158{bottom:712.050000px;}
.y6c_c00158{bottom:712.470000px;}
.y66_c00158{bottom:723.825000px;}
.y67_c00158{bottom:724.905000px;}
.y65_c00158{bottom:726.195000px;}
.y68_c00158{bottom:727.050000px;}
.y63_c00158{bottom:737.970000px;}
.y64_c00158{bottom:738.825000px;}
.y62_c00158{bottom:739.050000px;}
.y61_c00158{bottom:739.905000px;}
.y60_c00158{bottom:740.970000px;}
.y5f_c00158{bottom:742.050000px;}
.y57_c00158{bottom:752.970000px;}
.y5b_c00158{bottom:753.405000px;}
.y5a_c00158{bottom:753.825000px;}
.y5c_c00158{bottom:754.050000px;}
.y58_c00158{bottom:754.905000px;}
.y59_c00158{bottom:755.970000px;}
.y5e_c00158{bottom:756.195000px;}
.y5d_c00158{bottom:757.050000px;}
.y56_c00158{bottom:767.970000px;}
.y54_c00158{bottom:768.825000px;}
.y55_c00158{bottom:769.050000px;}
.y52_c00158{bottom:769.905000px;}
.y50_c00158{bottom:770.970000px;}
.y53_c00158{bottom:771.195000px;}
.y51_c00158{bottom:772.050000px;}
.y4b_c00158{bottom:782.550000px;}
.y4d_c00158{bottom:784.905000px;}
.y4c_c00158{bottom:785.550000px;}
.y4e_c00158{bottom:785.970000px;}
.y4f_c00158{bottom:787.050000px;}
.y4a_c00158{bottom:798.405000px;}
.y49_c00158{bottom:799.470000px;}
.y42_c00158{bottom:812.325000px;}
.y40_c00158{bottom:812.550000px;}
.y47_c00158{bottom:812.970000px;}
.y46_c00158{bottom:813.825000px;}
.y44_c00158{bottom:814.050000px;}
.y48_c00158{bottom:814.470000px;}
.y43_c00158{bottom:814.905000px;}
.y41_c00158{bottom:815.550000px;}
.y45_c00158{bottom:815.970000px;}
.y3f_c00158{bottom:826.470000px;}
.y3c_c00158{bottom:828.405000px;}
.y3d_c00158{bottom:828.630000px;}
.y3e_c00158{bottom:830.550000px;}
.y39_c00158{bottom:843.405000px;}
.y37_c00158{bottom:843.630000px;}
.y3a_c00158{bottom:844.050000px;}
.y3b_c00158{bottom:844.470000px;}
.y38_c00158{bottom:845.550000px;}
.y35_c00158{bottom:856.905000px;}
.y34_c00158{bottom:857.325000px;}
.y36_c00158{bottom:859.470000px;}
.y32_c00158{bottom:873.405000px;}
.y33_c00158{bottom:873.630000px;}
.y30_c00158{bottom:874.470000px;}
.y2f_c00158{bottom:874.695000px;}
.y31_c00158{bottom:875.550000px;}
.y2d_c00158{bottom:904.245000px;}
.y2e_c00158{bottom:905.550000px;}
.y2c_c00158{bottom:906.405000px;}
.y27_c00158{bottom:923.745000px;}
.y2a_c00158{bottom:924.825000px;}
.y2b_c00158{bottom:925.470000px;}
.y28_c00158{bottom:925.905000px;}
.y29_c00158{bottom:926.130000px;}
.y25_c00158{bottom:940.905000px;}
.y26_c00158{bottom:942.405000px;}
.y22_c00158{bottom:943.245000px;}
.y24_c00158{bottom:944.325000px;}
.y23_c00158{bottom:944.970000px;}
.y21_c00158{bottom:945.405000px;}
.y20_c00158{bottom:946.470000px;}
.y1c_c00158{bottom:962.970000px;}
.y1f_c00158{bottom:963.405000px;}
.y1e_c00158{bottom:964.245000px;}
.y1b_c00158{bottom:964.905000px;}
.y1d_c00158{bottom:965.130000px;}
.y14_c00158{bottom:982.245000px;}
.y15_c00158{bottom:983.325000px;}
.y1a_c00158{bottom:983.745000px;}
.y16_c00158{bottom:984.405000px;}
.y18_c00158{bottom:984.630000px;}
.y19_c00158{bottom:985.470000px;}
.y17_c00158{bottom:985.905000px;}
.y13_c00158{bottom:1000.905000px;}
.y12_c00158{bottom:1001.745000px;}
.yf_c00158{bottom:1001.970000px;}
.y10_c00158{bottom:1003.905000px;}
.y11_c00158{bottom:1004.970000px;}
.yd_c00158{bottom:1022.325000px;}
.yc_c00158{bottom:1022.745000px;}
.yb_c00158{bottom:1023.405000px;}
.ye_c00158{bottom:1024.905000px;}
.y7_c00158{bottom:1039.905000px;}
.y6_c00158{bottom:1040.745000px;}
.ya_c00158{bottom:1042.245000px;}
.y5_c00158{bottom:1042.905000px;}
.y9_c00158{bottom:1043.130000px;}
.y8_c00158{bottom:1044.405000px;}
.y4_c00158{bottom:1061.745000px;}
.y3_c00158{bottom:1063.905000px;}
.y2_c00158{bottom:1099.905000px;}
.y1_c00158{bottom:1102.050000px;}
.hc_c00158{height:14.612168px;}
.h7_c00158{height:16.752334px;}
.h4_c00158{height:23.025234px;}
.h1_c00158{height:25.091602px;}
.h6_c00158{height:31.364502px;}
.ha_c00158{height:33.044502px;}
.hb_c00158{height:35.411602px;}
.h2_c00158{height:35.571035px;}
.h9_c00158{height:37.364502px;}
.hd_c00158{height:39.044502px;}
.h5_c00158{height:39.777568px;}
.h8_c00158{height:41.571035px;}
.h3_c00158{height:43.910303px;}
.h0_c00158{height:1335.000000px;}
.w0_c00158{width:880.500000px;}
.x0_c00158{left:0.000000px;}
.x11_c00158{left:151.500000px;}
.x33_c00158{left:152.580000px;}
.xee_c00158{left:154.500000px;}
.xa2_c00158{left:163.920000px;}
.xf7_c00158{left:165.000000px;}
.x65_c00158{left:166.500000px;}
.x3_c00158{left:168.000000px;}
.x3f_c00158{left:169.920000px;}
.x4c_c00158{left:172.920000px;}
.xe8_c00158{left:177.000000px;}
.x83_c00158{left:178.500000px;}
.xca_c00158{left:180.000000px;}
.xb2_c00158{left:181.080000px;}
.x66_c00158{left:182.580000px;}
.x93_c00158{left:183.645000px;}
.x12_c00158{left:185.580000px;}
.x8b_c00158{left:190.920000px;}
.xd0_c00158{left:192.000000px;}
.x40_c00158{left:195.000000px;}
.x5d_c00158{left:196.500000px;}
.x27_c00158{left:199.080000px;}
.x4_c00158{left:201.420000px;}
.x4d_c00158{left:202.500000px;}
.x34_c00158{left:204.420000px;}
.x77_c00158{left:207.000000px;}
.xb3_c00158{left:208.500000px;}
.xf8_c00158{left:210.000000px;}
.xe9_c00158{left:214.080000px;}
.xa3_c00158{left:217.080000px;}
.x78_c00158{left:219.000000px;}
.xd8_c00158{left:220.500000px;}
.xcb_c00158{left:223.920000px;}
.x52_c00158{left:225.420000px;}
.x100_c00158{left:226.500000px;}
.x28_c00158{left:229.080000px;}
.xac_c00158{left:231.420000px;}
.xcc_c00158{left:234.000000px;}
.x5_c00158{left:235.500000px;}
.xf9_c00158{left:237.420000px;}
.x107_c00158{left:238.500000px;}
.x67_c00158{left:240.000000px;}
.x1c_c00158{left:243.000000px;}
.xea_c00158{left:244.080000px;}
.x41_c00158{left:246.000000px;}
.xc5_c00158{left:247.080000px;}
.x13_c00158{left:250.500000px;}
.xb5_c00158{left:252.000000px;}
.x73_c00158{left:253.500000px;}
.x84_c00158{left:255.000000px;}
.x5e_c00158{left:256.500000px;}
.x79_c00158{left:258.000000px;}
.x53_c00158{left:261.645000px;}
.x101_c00158{left:262.920000px;}
.xf2_c00158{left:266.580000px;}
.xfb_c00158{left:269.580000px;}
.x35_c00158{left:271.500000px;}
.x94_c00158{left:273.000000px;}
.xeb_c00158{left:274.500000px;}
.xde_c00158{left:276.000000px;}
.x1d_c00158{left:277.500000px;}
.xcd_c00158{left:279.000000px;}
.xdc_c00158{left:280.080000px;}
.x105_c00158{left:282.420000px;}
.x108_c00158{left:285.420000px;}
.x8c_c00158{left:286.500000px;}
.x5f_c00158{left:288.420000px;}
.x6_c00158{left:290.580000px;}
.x4e_c00158{left:295.080000px;}
.x8d_c00158{left:297.000000px;}
.x9e_c00158{left:300.420000px;}
.x42_c00158{left:304.080000px;}
.x71_c00158{left:305.580000px;}
.x14_c00158{left:307.080000px;}
.x68_c00158{left:308.580000px;}
.xef_c00158{left:310.500000px;}
.x95_c00158{left:311.580000px;}
.x1e_c00158{left:313.080000px;}
.x29_c00158{left:316.500000px;}
.xbe_c00158{left:318.420000px;}
.xd1_c00158{left:324.420000px;}
.xfe_c00158{left:325.500000px;}
.xb6_c00158{left:328.920000px;}
.x8e_c00158{left:331.080000px;}
.x72_c00158{left:333.000000px;}
.xb4_c00158{left:334.920000px;}
.xfa_c00158{left:336.000000px;}
.x2a_c00158{left:337.920000px;}
.x43_c00158{left:342.000000px;}
.xa4_c00158{left:343.500000px;}
.x15_c00158{left:345.000000px;}
.x85_c00158{left:346.500000px;}
.x74_c00158{left:347.580000px;}
.xce_c00158{left:349.500000px;}
.xd2_c00158{left:351.000000px;}
.xb7_c00158{left:353.580000px;}
.x60_c00158{left:355.500000px;}
.x69_c00158{left:358.080000px;}
.xa5_c00158{left:360.420000px;}
.x7_c00158{left:361.500000px;}
.x44_c00158{left:363.000000px;}
.xad_c00158{left:364.080000px;}
.x2b_c00158{left:365.580000px;}
.xdd_c00158{left:367.080000px;}
.x1f_c00158{left:370.080000px;}
.x109_c00158{left:371.145000px;}
.x36_c00158{left:373.500000px;}
.x7a_c00158{left:376.500000px;}
.xf0_c00158{left:377.580000px;}
.x86_c00158{left:379.080000px;}
.x106_c00158{left:381.000000px;}
.x7d_c00158{left:384.000000px;}
.x4f_c00158{left:385.500000px;}
.x96_c00158{left:387.420000px;}
.xb8_c00158{left:388.920000px;}
.x16_c00158{left:390.420000px;}
.xd9_c00158{left:392.355000px;}
.xf1_c00158{left:396.000000px;}
.x1_c00158{left:399.000000px;}
.x54_c00158{left:400.500000px;}
.x20_c00158{left:402.000000px;}
.xb9_c00158{left:403.500000px;}
.xae_c00158{left:405.420000px;}
.xcf_c00158{left:406.500000px;}
.xf3_c00158{left:408.000000px;}
.x8_c00158{left:410.580000px;}
.x7b_c00158{left:412.920000px;}
.xfc_c00158{left:414.645000px;}
.x10a_c00158{left:415.920000px;}
.x61_c00158{left:417.000000px;}
.x17_c00158{left:418.500000px;}
.x37_c00158{left:420.420000px;}
.xd3_c00158{left:421.500000px;}
.xe2_c00158{left:422.580000px;}
.x50_c00158{left:423.645000px;}
.x45_c00158{left:424.920000px;}
.x97_c00158{left:429.855000px;}
.x9_c00158{left:432.420000px;}
.x55_c00158{left:435.420000px;}
.x87_c00158{left:436.500000px;}
.xa6_c00158{left:438.000000px;}
.x7c_c00158{left:439.500000px;}
.x102_c00158{left:441.420000px;}
.xf4_c00158{left:442.920000px;}
.xaf_c00158{left:444.000000px;}
.x2c_c00158{left:445.080000px;}
.xbf_c00158{left:447.420000px;}
.xe3_c00158{left:451.500000px;}
.xdf_c00158{left:453.420000px;}
.x7e_c00158{left:454.500000px;}
.xd4_c00158{left:456.000000px;}
.x6a_c00158{left:457.920000px;}
.x38_c00158{left:459.000000px;}
.xa_c00158{left:460.500000px;}
.x56_c00158{left:462.000000px;}
.x21_c00158{left:463.275000px;}
.x2d_c00158{left:465.000000px;}
.x18_c00158{left:466.080000px;}
.xc6_c00158{left:468.000000px;}
.xf5_c00158{left:469.500000px;}
.x98_c00158{left:472.920000px;}
.x6b_c00158{left:475.920000px;}
.x39_c00158{left:478.500000px;}
.x62_c00158{left:481.080000px;}
.x9f_c00158{left:483.855000px;}
.x46_c00158{left:487.500000px;}
.x2e_c00158{left:489.000000px;}
.xc0_c00158{left:490.500000px;}
.xe0_c00158{left:493.080000px;}
.xd5_c00158{left:495.000000px;}
.x57_c00158{left:497.580000px;}
.x88_c00158{left:501.000000px;}
.x22_c00158{left:502.500000px;}
.xba_c00158{left:503.580000px;}
.x75_c00158{left:505.500000px;}
.xa7_c00158{left:508.080000px;}
.xe4_c00158{left:510.420000px;}
.x8f_c00158{left:511.500000px;}
.xb_c00158{left:513.000000px;}
.x6c_c00158{left:514.080000px;}
.x7f_c00158{left:517.920000px;}
.x103_c00158{left:519.000000px;}
.xec_c00158{left:520.080000px;}
.xa8_c00158{left:525.000000px;}
.xa0_c00158{left:526.920000px;}
.xe5_c00158{left:528.000000px;}
.x80_c00158{left:529.500000px;}
.xc_c00158{left:531.000000px;}
.x2f_c00158{left:532.500000px;}
.x3a_c00158{left:538.920000px;}
.x104_c00158{left:540.000000px;}
.x89_c00158{left:541.500000px;}
.x47_c00158{left:544.080000px;}
.x58_c00158{left:545.580000px;}
.x99_c00158{left:548.580000px;}
.xbc_c00158{left:550.080000px;}
.x63_c00158{left:552.000000px;}
.x19_c00158{left:554.580000px;}
.xd_c00158{left:555.645000px;}
.x90_c00158{left:557.580000px;}
.xc1_c00158{left:560.580000px;}
.x6d_c00158{left:562.500000px;}
.x59_c00158{left:563.580000px;}
.xe6_c00158{left:567.000000px;}
.x9a_c00158{left:571.080000px;}
.x3b_c00158{left:573.000000px;}
.x64_c00158{left:574.500000px;}
.xc2_c00158{left:576.420000px;}
.x23_c00158{left:579.420000px;}
.x30_c00158{left:583.920000px;}
.x91_c00158{left:585.420000px;}
.xc7_c00158{left:586.920000px;}
.x76_c00158{left:591.000000px;}
.xc8_c00158{left:597.000000px;}
.xed_c00158{left:599.145000px;}
.x48_c00158{left:600.420000px;}
.x3c_c00158{left:601.500000px;}
.xda_c00158{left:602.580000px;}
.xa9_c00158{left:604.500000px;}
.x24_c00158{left:606.000000px;}
.x5a_c00158{left:607.500000px;}
.xd6_c00158{left:610.500000px;}
.x31_c00158{left:612.000000px;}
.x81_c00158{left:615.420000px;}
.xaa_c00158{left:616.500000px;}
.x6e_c00158{left:617.580000px;}
.xe_c00158{left:619.080000px;}
.xe1_c00158{left:622.080000px;}
.x9b_c00158{left:625.500000px;}
.xb0_c00158{left:627.000000px;}
.x92_c00158{left:628.500000px;}
.x8a_c00158{left:631.500000px;}
.x49_c00158{left:636.420000px;}
.x5b_c00158{left:637.500000px;}
.xbb_c00158{left:638.580000px;}
.xfd_c00158{left:640.080000px;}
.x1a_c00158{left:643.080000px;}
.xdb_c00158{left:646.080000px;}
.xbd_c00158{left:648.000000px;}
.xc3_c00158{left:652.920000px;}
.x3d_c00158{left:654.000000px;}
.xf6_c00158{left:656.145000px;}
.x25_c00158{left:657.420000px;}
.x9c_c00158{left:660.420000px;}
.xb1_c00158{left:661.500000px;}
.x4a_c00158{left:664.080000px;}
.x10b_c00158{left:667.080000px;}
.xf_c00158{left:668.775000px;}
.x3e_c00158{left:670.920000px;}
.x6f_c00158{left:672.000000px;}
.x1b_c00158{left:674.580000px;}
.x32_c00158{left:678.000000px;}
.xc4_c00158{left:679.500000px;}
.x70_c00158{left:684.000000px;}
.xa1_c00158{left:685.500000px;}
.x9d_c00158{left:687.000000px;}
.xff_c00158{left:688.500000px;}
.x4b_c00158{left:690.000000px;}
.xab_c00158{left:691.920000px;}
.x26_c00158{left:694.080000px;}
.x82_c00158{left:697.500000px;}
.x10_c00158{left:700.275000px;}
.xc9_c00158{left:703.500000px;}
.x2_c00158{left:705.420000px;}
.xd7_c00158{left:706.920000px;}
.x5c_c00158{left:709.920000px;}
.xe7_c00158{left:717.000000px;}
.x51_c00158{left:719.580000px;}
@media print{
.v5_c00158{vertical-align:-5.333333pt;}
.v0_c00158{vertical-align:0.000000pt;}
.v2_c00158{vertical-align:1.493333pt;}
.v1_c00158{vertical-align:5.333333pt;}
.v4_c00158{vertical-align:6.826667pt;}
.v3_c00158{vertical-align:9.173333pt;}
.ls1_c00158{letter-spacing:0.000000pt;}
.ls0_c00158{letter-spacing:11.251200pt;}
.ws6_c00158{word-spacing:-13.237333pt;}
.ws0_c00158{word-spacing:-2.598853pt;}
.ws7_c00158{word-spacing:-2.552000pt;}
.ws1_c00158{word-spacing:-2.487039pt;}
.ws4_c00158{word-spacing:-0.274133pt;}
.ws9_c00158{word-spacing:0.000000pt;}
.ws3_c00158{word-spacing:0.273822pt;}
.ws5_c00158{word-spacing:0.692749pt;}
.ws2_c00158{word-spacing:3.678721pt;}
.ws8_c00158{word-spacing:5.059200pt;}
._0_c00158{margin-left:-1.664000pt;}
.fs7_c00158{font-size:10.560000pt;}
.fs6_c00158{font-size:12.106667pt;}
.fs3_c00158{font-size:16.640000pt;}
.fs0_c00158{font-size:18.133333pt;}
.fs5_c00158{font-size:22.666667pt;}
.fs1_c00158{font-size:25.706667pt;}
.fs4_c00158{font-size:28.746667pt;}
.fs2_c00158{font-size:31.733333pt;}
.y0_c00158{bottom:0.000000pt;}
.y11f_c00158{bottom:221.306667pt;}
.y11d_c00158{bottom:222.066667pt;}
.y119_c00158{bottom:222.266667pt;}
.y11a_c00158{bottom:223.026667pt;}
.y11e_c00158{bottom:223.226667pt;}
.y11b_c00158{bottom:223.973333pt;}
.y11c_c00158{bottom:224.933333pt;}
.y118_c00158{bottom:235.400000pt;}
.y115_c00158{bottom:236.360000pt;}
.y116_c00158{bottom:236.560000pt;}
.y117_c00158{bottom:237.306667pt;}
.y110_c00158{bottom:248.733333pt;}
.y114_c00158{bottom:249.693333pt;}
.y111_c00158{bottom:249.893333pt;}
.y10f_c00158{bottom:250.640000pt;}
.y112_c00158{bottom:250.840000pt;}
.y113_c00158{bottom:251.600000pt;}
.y10b_c00158{bottom:262.066667pt;}
.y10d_c00158{bottom:263.026667pt;}
.y10a_c00158{bottom:263.973333pt;}
.y10c_c00158{bottom:264.173333pt;}
.y10e_c00158{bottom:264.933333pt;}
.y108_c00158{bottom:275.026667pt;}
.y106_c00158{bottom:275.600000pt;}
.y107_c00158{bottom:276.360000pt;}
.y109_c00158{bottom:277.306667pt;}
.yff_c00158{bottom:287.400000pt;}
.y103_c00158{bottom:288.360000pt;}
.y102_c00158{bottom:288.733333pt;}
.yfe_c00158{bottom:289.306667pt;}
.y100_c00158{bottom:289.693333pt;}
.y101_c00158{bottom:290.266667pt;}
.y104_c00158{bottom:290.640000pt;}
.y105_c00158{bottom:291.600000pt;}
.yf6_c00158{bottom:299.973333pt;}
.yf7_c00158{bottom:301.693333pt;}
.yfc_c00158{bottom:301.893333pt;}
.yf9_c00158{bottom:302.266667pt;}
.yfd_c00158{bottom:302.640000pt;}
.yfb_c00158{bottom:303.026667pt;}
.yfa_c00158{bottom:303.600000pt;}
.yf8_c00158{bottom:303.973333pt;}
.yf4_c00158{bottom:314.266667pt;}
.yf3_c00158{bottom:315.026667pt;}
.yf1_c00158{bottom:315.226667pt;}
.yf5_c00158{bottom:315.973333pt;}
.yf2_c00158{bottom:316.933333pt;}
.yed_c00158{bottom:327.400000pt;}
.yef_c00158{bottom:328.360000pt;}
.yee_c00158{bottom:328.560000pt;}
.yec_c00158{bottom:329.306667pt;}
.yf0_c00158{bottom:329.506667pt;}
.yeb_c00158{bottom:330.266667pt;}
.ye6_c00158{bottom:339.973333pt;}
.yea_c00158{bottom:340.733333pt;}
.ye8_c00158{bottom:340.933333pt;}
.ye5_c00158{bottom:341.693333pt;}
.ye4_c00158{bottom:341.893333pt;}
.ye7_c00158{bottom:342.640000pt;}
.ye9_c00158{bottom:343.600000pt;}
.ye0_c00158{bottom:354.266667pt;}
.ye2_c00158{bottom:355.026667pt;}
.ye3_c00158{bottom:355.973333pt;}
.ye1_c00158{bottom:356.933333pt;}
.ydd_c00158{bottom:367.026667pt;}
.ydf_c00158{bottom:368.360000pt;}
.yde_c00158{bottom:370.266667pt;}
.yd3_c00158{bottom:379.600000pt;}
.yda_c00158{bottom:379.973333pt;}
.yd4_c00158{bottom:380.733333pt;}
.ydc_c00158{bottom:381.306667pt;}
.yd6_c00158{bottom:381.693333pt;}
.yd5_c00158{bottom:381.893333pt;}
.yd7_c00158{bottom:382.266667pt;}
.yd9_c00158{bottom:382.640000pt;}
.ydb_c00158{bottom:382.840000pt;}
.yd8_c00158{bottom:383.600000pt;}
.yd0_c00158{bottom:394.066667pt;}
.yd1_c00158{bottom:394.266667pt;}
.yce_c00158{bottom:395.026667pt;}
.ycc_c00158{bottom:395.600000pt;}
.ycd_c00158{bottom:395.973333pt;}
.ycf_c00158{bottom:396.173333pt;}
.yd2_c00158{bottom:396.933333pt;}
.yc8_c00158{bottom:406.066667pt;}
.yc7_c00158{bottom:406.266667pt;}
.yca_c00158{bottom:407.973333pt;}
.ycb_c00158{bottom:408.933333pt;}
.yc9_c00158{bottom:409.306667pt;}
.yc3_c00158{bottom:419.400000pt;}
.yc4_c00158{bottom:420.360000pt;}
.yc5_c00158{bottom:421.306667pt;}
.yc6_c00158{bottom:422.266667pt;}
.yc2_c00158{bottom:432.733333pt;}
.ybf_c00158{bottom:433.693333pt;}
.yc1_c00158{bottom:434.640000pt;}
.ybe_c00158{bottom:434.840000pt;}
.yc0_c00158{bottom:435.600000pt;}
.ybd_c00158{bottom:447.026667pt;}
.yb7_c00158{bottom:458.640000pt;}
.yb8_c00158{bottom:459.026667pt;}
.yba_c00158{bottom:459.600000pt;}
.yb9_c00158{bottom:460.360000pt;}
.ybb_c00158{bottom:461.306667pt;}
.ybc_c00158{bottom:462.266667pt;}
.yb5_c00158{bottom:471.973333pt;}
.yb6_c00158{bottom:472.360000pt;}
.yb2_c00158{bottom:472.733333pt;}
.yb3_c00158{bottom:472.933333pt;}
.yb4_c00158{bottom:474.640000pt;}
.yaf_c00158{bottom:485.133333pt;}
.yae_c00158{bottom:485.306667pt;}
.yac_c00158{bottom:485.693333pt;}
.yab_c00158{bottom:486.266667pt;}
.yb1_c00158{bottom:487.600000pt;}
.yb0_c00158{bottom:487.973333pt;}
.yad_c00158{bottom:488.173333pt;}
.ya9_c00158{bottom:498.640000pt;}
.ya7_c00158{bottom:499.400000pt;}
.ya6_c00158{bottom:500.560000pt;}
.yaa_c00158{bottom:500.933333pt;}
.ya8_c00158{bottom:501.306667pt;}
.ya5_c00158{bottom:512.733333pt;}
.ya3_c00158{bottom:512.933333pt;}
.ya1_c00158{bottom:513.693333pt;}
.y9e_c00158{bottom:513.893333pt;}
.y9f_c00158{bottom:514.266667pt;}
.ya0_c00158{bottom:514.640000pt;}
.ya2_c00158{bottom:514.840000pt;}
.ya4_c00158{bottom:515.600000pt;}
.y9b_c00158{bottom:525.693333pt;}
.y9c_c00158{bottom:525.893333pt;}
.y9a_c00158{bottom:526.640000pt;}
.y9d_c00158{bottom:527.600000pt;}
.y96_c00158{bottom:537.306667pt;}
.y99_c00158{bottom:538.066667pt;}
.y93_c00158{bottom:538.266667pt;}
.y94_c00158{bottom:539.026667pt;}
.y98_c00158{bottom:539.226667pt;}
.y95_c00158{bottom:539.973333pt;}
.y97_c00158{bottom:540.933333pt;}
.y8c_c00158{bottom:550.640000pt;}
.y92_c00158{bottom:551.400000pt;}
.y8e_c00158{bottom:551.600000pt;}
.y8d_c00158{bottom:552.360000pt;}
.y90_c00158{bottom:553.306667pt;}
.y8f_c00158{bottom:553.506667pt;}
.y91_c00158{bottom:554.266667pt;}
.y89_c00158{bottom:563.973333pt;}
.y8b_c00158{bottom:564.733333pt;}
.y88_c00158{bottom:565.693333pt;}
.y8a_c00158{bottom:566.640000pt;}
.y87_c00158{bottom:567.600000pt;}
.y83_c00158{bottom:578.066667pt;}
.y86_c00158{bottom:579.026667pt;}
.y84_c00158{bottom:579.600000pt;}
.y82_c00158{bottom:579.973333pt;}
.y85_c00158{bottom:580.933333pt;}
.y81_c00158{bottom:590.640000pt;}
.y7d_c00158{bottom:591.400000pt;}
.y80_c00158{bottom:592.360000pt;}
.y7b_c00158{bottom:592.933333pt;}
.y7c_c00158{bottom:593.306667pt;}
.y7e_c00158{bottom:593.506667pt;}
.y7f_c00158{bottom:594.266667pt;}
.y74_c00158{bottom:603.973333pt;}
.y76_c00158{bottom:604.360000pt;}
.y77_c00158{bottom:605.693333pt;}
.y7a_c00158{bottom:605.893333pt;}
.y75_c00158{bottom:606.266667pt;}
.y78_c00158{bottom:606.640000pt;}
.y79_c00158{bottom:607.600000pt;}
.y70_c00158{bottom:617.693333pt;}
.y72_c00158{bottom:618.840000pt;}
.y71_c00158{bottom:619.600000pt;}
.y73_c00158{bottom:619.973333pt;}
.y6f_c00158{bottom:630.640000pt;}
.y6b_c00158{bottom:631.026667pt;}
.y6e_c00158{bottom:631.400000pt;}
.y6a_c00158{bottom:631.973333pt;}
.y6d_c00158{bottom:632.560000pt;}
.y69_c00158{bottom:632.933333pt;}
.y6c_c00158{bottom:633.306667pt;}
.y66_c00158{bottom:643.400000pt;}
.y67_c00158{bottom:644.360000pt;}
.y65_c00158{bottom:645.506667pt;}
.y68_c00158{bottom:646.266667pt;}
.y63_c00158{bottom:655.973333pt;}
.y64_c00158{bottom:656.733333pt;}
.y62_c00158{bottom:656.933333pt;}
.y61_c00158{bottom:657.693333pt;}
.y60_c00158{bottom:658.640000pt;}
.y5f_c00158{bottom:659.600000pt;}
.y57_c00158{bottom:669.306667pt;}
.y5b_c00158{bottom:669.693333pt;}
.y5a_c00158{bottom:670.066667pt;}
.y5c_c00158{bottom:670.266667pt;}
.y58_c00158{bottom:671.026667pt;}
.y59_c00158{bottom:671.973333pt;}
.y5e_c00158{bottom:672.173333pt;}
.y5d_c00158{bottom:672.933333pt;}
.y56_c00158{bottom:682.640000pt;}
.y54_c00158{bottom:683.400000pt;}
.y55_c00158{bottom:683.600000pt;}
.y52_c00158{bottom:684.360000pt;}
.y50_c00158{bottom:685.306667pt;}
.y53_c00158{bottom:685.506667pt;}
.y51_c00158{bottom:686.266667pt;}
.y4b_c00158{bottom:695.600000pt;}
.y4d_c00158{bottom:697.693333pt;}
.y4c_c00158{bottom:698.266667pt;}
.y4e_c00158{bottom:698.640000pt;}
.y4f_c00158{bottom:699.600000pt;}
.y4a_c00158{bottom:709.693333pt;}
.y49_c00158{bottom:710.640000pt;}
.y42_c00158{bottom:722.066667pt;}
.y40_c00158{bottom:722.266667pt;}
.y47_c00158{bottom:722.640000pt;}
.y46_c00158{bottom:723.400000pt;}
.y44_c00158{bottom:723.600000pt;}
.y48_c00158{bottom:723.973333pt;}
.y43_c00158{bottom:724.360000pt;}
.y41_c00158{bottom:724.933333pt;}
.y45_c00158{bottom:725.306667pt;}
.y3f_c00158{bottom:734.640000pt;}
.y3c_c00158{bottom:736.360000pt;}
.y3d_c00158{bottom:736.560000pt;}
.y3e_c00158{bottom:738.266667pt;}
.y39_c00158{bottom:749.693333pt;}
.y37_c00158{bottom:749.893333pt;}
.y3a_c00158{bottom:750.266667pt;}
.y3b_c00158{bottom:750.640000pt;}
.y38_c00158{bottom:751.600000pt;}
.y35_c00158{bottom:761.693333pt;}
.y34_c00158{bottom:762.066667pt;}
.y36_c00158{bottom:763.973333pt;}
.y32_c00158{bottom:776.360000pt;}
.y33_c00158{bottom:776.560000pt;}
.y30_c00158{bottom:777.306667pt;}
.y2f_c00158{bottom:777.506667pt;}
.y31_c00158{bottom:778.266667pt;}
.y2d_c00158{bottom:803.773333pt;}
.y2e_c00158{bottom:804.933333pt;}
.y2c_c00158{bottom:805.693333pt;}
.y27_c00158{bottom:821.106667pt;}
.y2a_c00158{bottom:822.066667pt;}
.y2b_c00158{bottom:822.640000pt;}
.y28_c00158{bottom:823.026667pt;}
.y29_c00158{bottom:823.226667pt;}
.y25_c00158{bottom:836.360000pt;}
.y26_c00158{bottom:837.693333pt;}
.y22_c00158{bottom:838.440000pt;}
.y24_c00158{bottom:839.400000pt;}
.y23_c00158{bottom:839.973333pt;}
.y21_c00158{bottom:840.360000pt;}
.y20_c00158{bottom:841.306667pt;}
.y1c_c00158{bottom:855.973333pt;}
.y1f_c00158{bottom:856.360000pt;}
.y1e_c00158{bottom:857.106667pt;}
.y1b_c00158{bottom:857.693333pt;}
.y1d_c00158{bottom:857.893333pt;}
.y14_c00158{bottom:873.106667pt;}
.y15_c00158{bottom:874.066667pt;}
.y1a_c00158{bottom:874.440000pt;}
.y16_c00158{bottom:875.026667pt;}
.y18_c00158{bottom:875.226667pt;}
.y19_c00158{bottom:875.973333pt;}
.y17_c00158{bottom:876.360000pt;}
.y13_c00158{bottom:889.693333pt;}
.y12_c00158{bottom:890.440000pt;}
.yf_c00158{bottom:890.640000pt;}
.y10_c00158{bottom:892.360000pt;}
.y11_c00158{bottom:893.306667pt;}
.yd_c00158{bottom:908.733333pt;}
.yc_c00158{bottom:909.106667pt;}
.yb_c00158{bottom:909.693333pt;}
.ye_c00158{bottom:911.026667pt;}
.y7_c00158{bottom:924.360000pt;}
.y6_c00158{bottom:925.106667pt;}
.ya_c00158{bottom:926.440000pt;}
.y5_c00158{bottom:927.026667pt;}
.y9_c00158{bottom:927.226667pt;}
.y8_c00158{bottom:928.360000pt;}
.y4_c00158{bottom:943.773333pt;}
.y3_c00158{bottom:945.693333pt;}
.y2_c00158{bottom:977.693333pt;}
.y1_c00158{bottom:979.600000pt;}
.hc_c00158{height:12.988594pt;}
.h7_c00158{height:14.890964pt;}
.h4_c00158{height:20.466875pt;}
.h1_c00158{height:22.303646pt;}
.h6_c00158{height:27.879557pt;}
.ha_c00158{height:29.372891pt;}
.hb_c00158{height:31.476979pt;}
.h2_c00158{height:31.618698pt;}
.h9_c00158{height:33.212891pt;}
.hd_c00158{height:34.706224pt;}
.h5_c00158{height:35.357839pt;}
.h8_c00158{height:36.952031pt;}
.h3_c00158{height:39.031380pt;}
.h0_c00158{height:1186.666667pt;}
.w0_c00158{width:782.666667pt;}
.x0_c00158{left:0.000000pt;}
.x11_c00158{left:134.666667pt;}
.x33_c00158{left:135.626667pt;}
.xee_c00158{left:137.333333pt;}
.xa2_c00158{left:145.706667pt;}
.xf7_c00158{left:146.666667pt;}
.x65_c00158{left:148.000000pt;}
.x3_c00158{left:149.333333pt;}
.x3f_c00158{left:151.040000pt;}
.x4c_c00158{left:153.706667pt;}
.xe8_c00158{left:157.333333pt;}
.x83_c00158{left:158.666667pt;}
.xca_c00158{left:160.000000pt;}
.xb2_c00158{left:160.960000pt;}
.x66_c00158{left:162.293333pt;}
.x93_c00158{left:163.240000pt;}
.x12_c00158{left:164.960000pt;}
.x8b_c00158{left:169.706667pt;}
.xd0_c00158{left:170.666667pt;}
.x40_c00158{left:173.333333pt;}
.x5d_c00158{left:174.666667pt;}
.x27_c00158{left:176.960000pt;}
.x4_c00158{left:179.040000pt;}
.x4d_c00158{left:180.000000pt;}
.x34_c00158{left:181.706667pt;}
.x77_c00158{left:184.000000pt;}
.xb3_c00158{left:185.333333pt;}
.xf8_c00158{left:186.666667pt;}
.xe9_c00158{left:190.293333pt;}
.xa3_c00158{left:192.960000pt;}
.x78_c00158{left:194.666667pt;}
.xd8_c00158{left:196.000000pt;}
.xcb_c00158{left:199.040000pt;}
.x52_c00158{left:200.373333pt;}
.x100_c00158{left:201.333333pt;}
.x28_c00158{left:203.626667pt;}
.xac_c00158{left:205.706667pt;}
.xcc_c00158{left:208.000000pt;}
.x5_c00158{left:209.333333pt;}
.xf9_c00158{left:211.040000pt;}
.x107_c00158{left:212.000000pt;}
.x67_c00158{left:213.333333pt;}
.x1c_c00158{left:216.000000pt;}
.xea_c00158{left:216.960000pt;}
.x41_c00158{left:218.666667pt;}
.xc5_c00158{left:219.626667pt;}
.x13_c00158{left:222.666667pt;}
.xb5_c00158{left:224.000000pt;}
.x73_c00158{left:225.333333pt;}
.x84_c00158{left:226.666667pt;}
.x5e_c00158{left:228.000000pt;}
.x79_c00158{left:229.333333pt;}
.x53_c00158{left:232.573333pt;}
.x101_c00158{left:233.706667pt;}
.xf2_c00158{left:236.960000pt;}
.xfb_c00158{left:239.626667pt;}
.x35_c00158{left:241.333333pt;}
.x94_c00158{left:242.666667pt;}
.xeb_c00158{left:244.000000pt;}
.xde_c00158{left:245.333333pt;}
.x1d_c00158{left:246.666667pt;}
.xcd_c00158{left:248.000000pt;}
.xdc_c00158{left:248.960000pt;}
.x105_c00158{left:251.040000pt;}
.x108_c00158{left:253.706667pt;}
.x8c_c00158{left:254.666667pt;}
.x5f_c00158{left:256.373333pt;}
.x6_c00158{left:258.293333pt;}
.x4e_c00158{left:262.293333pt;}
.x8d_c00158{left:264.000000pt;}
.x9e_c00158{left:267.040000pt;}
.x42_c00158{left:270.293333pt;}
.x71_c00158{left:271.626667pt;}
.x14_c00158{left:272.960000pt;}
.x68_c00158{left:274.293333pt;}
.xef_c00158{left:276.000000pt;}
.x95_c00158{left:276.960000pt;}
.x1e_c00158{left:278.293333pt;}
.x29_c00158{left:281.333333pt;}
.xbe_c00158{left:283.040000pt;}
.xd1_c00158{left:288.373333pt;}
.xfe_c00158{left:289.333333pt;}
.xb6_c00158{left:292.373333pt;}
.x8e_c00158{left:294.293333pt;}
.x72_c00158{left:296.000000pt;}
.xb4_c00158{left:297.706667pt;}
.xfa_c00158{left:298.666667pt;}
.x2a_c00158{left:300.373333pt;}
.x43_c00158{left:304.000000pt;}
.xa4_c00158{left:305.333333pt;}
.x15_c00158{left:306.666667pt;}
.x85_c00158{left:308.000000pt;}
.x74_c00158{left:308.960000pt;}
.xce_c00158{left:310.666667pt;}
.xd2_c00158{left:312.000000pt;}
.xb7_c00158{left:314.293333pt;}
.x60_c00158{left:316.000000pt;}
.x69_c00158{left:318.293333pt;}
.xa5_c00158{left:320.373333pt;}
.x7_c00158{left:321.333333pt;}
.x44_c00158{left:322.666667pt;}
.xad_c00158{left:323.626667pt;}
.x2b_c00158{left:324.960000pt;}
.xdd_c00158{left:326.293333pt;}
.x1f_c00158{left:328.960000pt;}
.x109_c00158{left:329.906667pt;}
.x36_c00158{left:332.000000pt;}
.x7a_c00158{left:334.666667pt;}
.xf0_c00158{left:335.626667pt;}
.x86_c00158{left:336.960000pt;}
.x106_c00158{left:338.666667pt;}
.x7d_c00158{left:341.333333pt;}
.x4f_c00158{left:342.666667pt;}
.x96_c00158{left:344.373333pt;}
.xb8_c00158{left:345.706667pt;}
.x16_c00158{left:347.040000pt;}
.xd9_c00158{left:348.760000pt;}
.xf1_c00158{left:352.000000pt;}
.x1_c00158{left:354.666667pt;}
.x54_c00158{left:356.000000pt;}
.x20_c00158{left:357.333333pt;}
.xb9_c00158{left:358.666667pt;}
.xae_c00158{left:360.373333pt;}
.xcf_c00158{left:361.333333pt;}
.xf3_c00158{left:362.666667pt;}
.x8_c00158{left:364.960000pt;}
.x7b_c00158{left:367.040000pt;}
.xfc_c00158{left:368.573333pt;}
.x10a_c00158{left:369.706667pt;}
.x61_c00158{left:370.666667pt;}
.x17_c00158{left:372.000000pt;}
.x37_c00158{left:373.706667pt;}
.xd3_c00158{left:374.666667pt;}
.xe2_c00158{left:375.626667pt;}
.x50_c00158{left:376.573333pt;}
.x45_c00158{left:377.706667pt;}
.x97_c00158{left:382.093333pt;}
.x9_c00158{left:384.373333pt;}
.x55_c00158{left:387.040000pt;}
.x87_c00158{left:388.000000pt;}
.xa6_c00158{left:389.333333pt;}
.x7c_c00158{left:390.666667pt;}
.x102_c00158{left:392.373333pt;}
.xf4_c00158{left:393.706667pt;}
.xaf_c00158{left:394.666667pt;}
.x2c_c00158{left:395.626667pt;}
.xbf_c00158{left:397.706667pt;}
.xe3_c00158{left:401.333333pt;}
.xdf_c00158{left:403.040000pt;}
.x7e_c00158{left:404.000000pt;}
.xd4_c00158{left:405.333333pt;}
.x6a_c00158{left:407.040000pt;}
.x38_c00158{left:408.000000pt;}
.xa_c00158{left:409.333333pt;}
.x56_c00158{left:410.666667pt;}
.x21_c00158{left:411.800000pt;}
.x2d_c00158{left:413.333333pt;}
.x18_c00158{left:414.293333pt;}
.xc6_c00158{left:416.000000pt;}
.xf5_c00158{left:417.333333pt;}
.x98_c00158{left:420.373333pt;}
.x6b_c00158{left:423.040000pt;}
.x39_c00158{left:425.333333pt;}
.x62_c00158{left:427.626667pt;}
.x9f_c00158{left:430.093333pt;}
.x46_c00158{left:433.333333pt;}
.x2e_c00158{left:434.666667pt;}
.xc0_c00158{left:436.000000pt;}
.xe0_c00158{left:438.293333pt;}
.xd5_c00158{left:440.000000pt;}
.x57_c00158{left:442.293333pt;}
.x88_c00158{left:445.333333pt;}
.x22_c00158{left:446.666667pt;}
.xba_c00158{left:447.626667pt;}
.x75_c00158{left:449.333333pt;}
.xa7_c00158{left:451.626667pt;}
.xe4_c00158{left:453.706667pt;}
.x8f_c00158{left:454.666667pt;}
.xb_c00158{left:456.000000pt;}
.x6c_c00158{left:456.960000pt;}
.x7f_c00158{left:460.373333pt;}
.x103_c00158{left:461.333333pt;}
.xec_c00158{left:462.293333pt;}
.xa8_c00158{left:466.666667pt;}
.xa0_c00158{left:468.373333pt;}
.xe5_c00158{left:469.333333pt;}
.x80_c00158{left:470.666667pt;}
.xc_c00158{left:472.000000pt;}
.x2f_c00158{left:473.333333pt;}
.x3a_c00158{left:479.040000pt;}
.x104_c00158{left:480.000000pt;}
.x89_c00158{left:481.333333pt;}
.x47_c00158{left:483.626667pt;}
.x58_c00158{left:484.960000pt;}
.x99_c00158{left:487.626667pt;}
.xbc_c00158{left:488.960000pt;}
.x63_c00158{left:490.666667pt;}
.x19_c00158{left:492.960000pt;}
.xd_c00158{left:493.906667pt;}
.x90_c00158{left:495.626667pt;}
.xc1_c00158{left:498.293333pt;}
.x6d_c00158{left:500.000000pt;}
.x59_c00158{left:500.960000pt;}
.xe6_c00158{left:504.000000pt;}
.x9a_c00158{left:507.626667pt;}
.x3b_c00158{left:509.333333pt;}
.x64_c00158{left:510.666667pt;}
.xc2_c00158{left:512.373333pt;}
.x23_c00158{left:515.040000pt;}
.x30_c00158{left:519.040000pt;}
.x91_c00158{left:520.373333pt;}
.xc7_c00158{left:521.706667pt;}
.x76_c00158{left:525.333333pt;}
.xc8_c00158{left:530.666667pt;}
.xed_c00158{left:532.573333pt;}
.x48_c00158{left:533.706667pt;}
.x3c_c00158{left:534.666667pt;}
.xda_c00158{left:535.626667pt;}
.xa9_c00158{left:537.333333pt;}
.x24_c00158{left:538.666667pt;}
.x5a_c00158{left:540.000000pt;}
.xd6_c00158{left:542.666667pt;}
.x31_c00158{left:544.000000pt;}
.x81_c00158{left:547.040000pt;}
.xaa_c00158{left:548.000000pt;}
.x6e_c00158{left:548.960000pt;}
.xe_c00158{left:550.293333pt;}
.xe1_c00158{left:552.960000pt;}
.x9b_c00158{left:556.000000pt;}
.xb0_c00158{left:557.333333pt;}
.x92_c00158{left:558.666667pt;}
.x8a_c00158{left:561.333333pt;}
.x49_c00158{left:565.706667pt;}
.x5b_c00158{left:566.666667pt;}
.xbb_c00158{left:567.626667pt;}
.xfd_c00158{left:568.960000pt;}
.x1a_c00158{left:571.626667pt;}
.xdb_c00158{left:574.293333pt;}
.xbd_c00158{left:576.000000pt;}
.xc3_c00158{left:580.373333pt;}
.x3d_c00158{left:581.333333pt;}
.xf6_c00158{left:583.240000pt;}
.x25_c00158{left:584.373333pt;}
.x9c_c00158{left:587.040000pt;}
.xb1_c00158{left:588.000000pt;}
.x4a_c00158{left:590.293333pt;}
.x10b_c00158{left:592.960000pt;}
.xf_c00158{left:594.466667pt;}
.x3e_c00158{left:596.373333pt;}
.x6f_c00158{left:597.333333pt;}
.x1b_c00158{left:599.626667pt;}
.x32_c00158{left:602.666667pt;}
.xc4_c00158{left:604.000000pt;}
.x70_c00158{left:608.000000pt;}
.xa1_c00158{left:609.333333pt;}
.x9d_c00158{left:610.666667pt;}
.xff_c00158{left:612.000000pt;}
.x4b_c00158{left:613.333333pt;}
.xab_c00158{left:615.040000pt;}
.x26_c00158{left:616.960000pt;}
.x82_c00158{left:620.000000pt;}
.x10_c00158{left:622.466667pt;}
.xc9_c00158{left:625.333333pt;}
.x2_c00158{left:627.040000pt;}
.xd7_c00158{left:628.373333pt;}
.x5c_c00158{left:631.040000pt;}
.xe7_c00158{left:637.333333pt;}
.x51_c00158{left:639.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_cba959234df3e345b7204276.woff2')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mec_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);}
.me8_c00159{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m42_c00159{transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);}
.m44_c00159{transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);}
.mc_c00159{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m3c_c00159{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.mb_c00159{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.mf8_c00159{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00159{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m5b_c00159{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m76_c00159{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.mf4_c00159{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.mba_c00159{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m3b_c00159{transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);}
.m56_c00159{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m4_c00159{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m82_c00159{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.mf7_c00159{transform:matrix(0.397239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397239,0.000000,0.000000,0.250000,0,0);}
.mb7_c00159{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m4d_c00159{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m54_c00159{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mf9_c00159{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m96_c00159{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mb0_c00159{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mbc_c00159{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m100_c00159{transform:matrix(0.405675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405675,0.000000,0.000000,0.250000,0,0);}
.m91_c00159{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m60_c00159{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.md3_c00159{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m78_c00159{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m1e_c00159{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.ma4_c00159{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.mb9_c00159{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m8d_c00159{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m7_c00159{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.mad_c00159{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m7c_c00159{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.mde_c00159{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.me4_c00159{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.me0_c00159{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m9d_c00159{transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);}
.m69_c00159{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mfd_c00159{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.m10c_c00159{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.mc2_c00159{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m9a_c00159{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m10e_c00159{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.mfe_c00159{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m34_c00159{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.mdb_c00159{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m2d_c00159{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.mdf_c00159{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m38_c00159{transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);}
.m9f_c00159{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m9e_c00159{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m75_c00159{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m18_c00159{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m2f_c00159{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.mfc_c00159{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m45_c00159{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m37_c00159{transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);}
.ma9_c00159{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m71_c00159{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m47_c00159{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.mf3_c00159{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.md1_c00159{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m10_c00159{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m77_c00159{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m3a_c00159{transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);}
.m97_c00159{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mf5_c00159{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m21_c00159{transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);}
.m17_c00159{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m40_c00159{transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);}
.m88_c00159{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.me3_c00159{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.m4a_c00159{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.mcf_c00159{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.md_c00159{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.med_c00159{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.ma0_c00159{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m101_c00159{transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);}
.m8a_c00159{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mef_c00159{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m25_c00159{transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);}
.m3f_c00159{transform:matrix(0.447614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447614,0.000000,0.000000,0.250000,0,0);}
.maa_c00159{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m74_c00159{transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);}
.m87_c00159{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m64_c00159{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m6c_c00159{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m109_c00159{transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);}
.m6e_c00159{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mb6_c00159{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mb3_c00159{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m79_c00159{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m1_c00159{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m8c_c00159{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mda_c00159{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m65_c00159{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m104_c00159{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m102_c00159{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m16_c00159{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.mc7_c00159{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m5f_c00159{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m29_c00159{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.md6_c00159{transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);}
.md7_c00159{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m1f_c00159{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m85_c00159{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.me9_c00159{transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);}
.m93_c00159{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mc3_c00159{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m43_c00159{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.maf_c00159{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m4f_c00159{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m27_c00159{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m92_c00159{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.md5_c00159{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m9b_c00159{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m2a_c00159{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m9_c00159{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.md2_c00159{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m99_c00159{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m6_c00159{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_c00159{transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);}
.m90_c00159{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.md8_c00159{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.mb1_c00159{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m7e_c00159{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m23_c00159{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.me_c00159{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.md4_c00159{transform:matrix(0.507780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507780,0.000000,0.000000,0.250000,0,0);}
.mee_c00159{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mac_c00159{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m81_c00159{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m41_c00159{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.mce_c00159{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m8f_c00159{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m52_c00159{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m106_c00159{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mff_c00159{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m1d_c00159{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m6d_c00159{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m31_c00159{transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);}
.mb2_c00159{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mae_c00159{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m59_c00159{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.me5_c00159{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m7b_c00159{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m49_c00159{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m7f_c00159{transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);}
.m7d_c00159{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m57_c00159{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m73_c00159{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m86_c00159{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m94_c00159{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.ma3_c00159{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m83_c00159{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m2c_c00159{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.md0_c00159{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m4b_c00159{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m7a_c00159{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.me6_c00159{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m63_c00159{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m66_c00159{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.m6b_c00159{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mca_c00159{transform:matrix(0.547310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547310,0.000000,0.000000,0.250000,0,0);}
.ma6_c00159{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m58_c00159{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mc5_c00159{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.mbf_c00159{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m53_c00159{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mc4_c00159{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m26_c00159{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m1c_c00159{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m61_c00159{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m72_c00159{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mc1_c00159{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mc8_c00159{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m2e_c00159{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.m6a_c00159{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);}
.m4c_c00159{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mc6_c00159{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m20_c00159{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mf0_c00159{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m68_c00159{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mbd_c00159{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.md9_c00159{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m89_c00159{transform:matrix(0.570965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570965,0.000000,0.000000,0.250000,0,0);}
.m48_c00159{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m62_c00159{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m98_c00159{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.ma_c00159{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.m30_c00159{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.mc0_c00159{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mfb_c00159{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.mb8_c00159{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m35_c00159{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m108_c00159{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.mdc_c00159{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mea_c00159{transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);}
.m3e_c00159{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m3_c00159{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m33_c00159{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m6f_c00159{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mab_c00159{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m24_c00159{transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);}
.mbb_c00159{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m8b_c00159{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.mfa_c00159{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);}
.m9c_c00159{transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);}
.m80_c00159{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m0_c00159{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.mb4_c00159{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.m5e_c00159{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.mcc_c00159{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m107_c00159{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m84_c00159{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.ma8_c00159{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.mcb_c00159{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mf6_c00159{transform:matrix(0.616701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616701,0.000000,0.000000,0.250000,0,0);}
.m12_c00159{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.m10d_c00159{transform:matrix(0.617739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617739,0.000000,0.000000,0.250000,0,0);}
.meb_c00159{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m10f_c00159{transform:matrix(0.628824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628824,0.000000,0.000000,0.250000,0,0);}
.mf_c00159{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m2_c00159{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m5a_c00159{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m1b_c00159{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.mf1_c00159{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.ma5_c00159{transform:matrix(0.648824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648824,0.000000,0.000000,0.250000,0,0);}
.m19_c00159{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m5d_c00159{transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);}
.mf2_c00159{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m50_c00159{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.mdd_c00159{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m8_c00159{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m4e_c00159{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m3d_c00159{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m28_c00159{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.ma1_c00159{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.m14_c00159{transform:matrix(0.678676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.678676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.678676,0.000000,0.000000,0.250000,0,0);}
.m39_c00159{transform:matrix(0.683088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683088,0.000000,0.000000,0.250000,0,0);}
.m103_c00159{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m10a_c00159{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m51_c00159{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m13_c00159{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m32_c00159{transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);}
.me7_c00159{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m15_c00159{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);}
.me2_c00159{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mc9_c00159{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m5c_c00159{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m8e_c00159{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.ma2_c00159{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m70_c00159{transform:matrix(0.755609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.755609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.755609,0.000000,0.000000,0.250000,0,0);}
.mb5_c00159{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m10b_c00159{transform:matrix(0.768429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.768429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.768429,0.000000,0.000000,0.250000,0,0);}
.m105_c00159{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m67_c00159{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mbe_c00159{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.me1_c00159{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m55_c00159{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.ma7_c00159{transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);}
.m5_c00159{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m22_c00159{transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);}
.m11_c00159{transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);}
.m1a_c00159{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m36_c00159{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.m2b_c00159{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m46_c00159{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.v2_c00159{vertical-align:-6.000000px;}
.v1_c00159{vertical-align:-4.320000px;}
.v0_c00159{vertical-align:0.000000px;}
.ls1_c00159{letter-spacing:0.000000px;}
.ls0_c00159{letter-spacing:9.657600px;}
.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;}
}
.ws1_c00159{word-spacing:-6.454845px;}
.ws2_c00159{word-spacing:-3.908356px;}
.ws0_c00159{word-spacing:-2.923710px;}
.ws3_c00159{word-spacing:0.000000px;}
.fc0_c00159{color:transparent;}
.fs7_c00159{font-size:3.420000px;}
.fs3_c00159{font-size:13.620000px;}
.fs5_c00159{font-size:18.720000px;}
.fs0_c00159{font-size:20.400000px;}
.fs4_c00159{font-size:25.500000px;}
.fs1_c00159{font-size:28.920000px;}
.fs2_c00159{font-size:32.340000px;}
.fs6_c00159{font-size:35.700000px;}
.fs8_c00159{font-size:39.120000px;}
.y0_c00159{bottom:0.000000px;}
.yee_c00159{bottom:253.245000px;}
.yf0_c00159{bottom:254.325000px;}
.yef_c00159{bottom:255.405000px;}
.yf1_c00159{bottom:255.630000px;}
.yed_c00159{bottom:272.745000px;}
.ye8_c00159{bottom:273.825000px;}
.yec_c00159{bottom:274.245000px;}
.ye9_c00159{bottom:274.470000px;}
.ye7_c00159{bottom:274.905000px;}
.yeb_c00159{bottom:275.970000px;}
.yea_c00159{bottom:276.405000px;}
.ye6_c00159{bottom:291.405000px;}
.ye0_c00159{bottom:292.245000px;}
.ye1_c00159{bottom:293.550000px;}
.ye5_c00159{bottom:293.745000px;}
.ye2_c00159{bottom:294.405000px;}
.ye3_c00159{bottom:294.630000px;}
.ye4_c00159{bottom:295.905000px;}
.yde_c00159{bottom:310.905000px;}
.ydf_c00159{bottom:311.970000px;}
.ydb_c00159{bottom:313.905000px;}
.ydc_c00159{bottom:314.130000px;}
.ydd_c00159{bottom:315.405000px;}
.yda_c00159{bottom:330.405000px;}
.yd9_c00159{bottom:332.745000px;}
.yd7_c00159{bottom:333.180000px;}
.yd6_c00159{bottom:333.405000px;}
.yd8_c00159{bottom:333.825000px;}
.yd5_c00159{bottom:334.905000px;}
.yd1_c00159{bottom:349.905000px;}
.yd2_c00159{bottom:352.245000px;}
.yd4_c00159{bottom:353.325000px;}
.yd3_c00159{bottom:354.405000px;}
.yce_c00159{bottom:370.905000px;}
.yd0_c00159{bottom:371.745000px;}
.ycb_c00159{bottom:373.905000px;}
.ycc_c00159{bottom:374.130000px;}
.ycf_c00159{bottom:374.970000px;}
.ycd_c00159{bottom:375.405000px;}
.yc9_c00159{bottom:391.680000px;}
.yc8_c00159{bottom:392.745000px;}
.yc6_c00159{bottom:392.970000px;}
.yc5_c00159{bottom:393.405000px;}
.yca_c00159{bottom:393.630000px;}
.yc7_c00159{bottom:394.905000px;}
.yc3_c00159{bottom:410.745000px;}
.yc0_c00159{bottom:412.050000px;}
.yc1_c00159{bottom:412.245000px;}
.ybe_c00159{bottom:412.905000px;}
.yc4_c00159{bottom:413.130000px;}
.ybf_c00159{bottom:413.970000px;}
.yc2_c00159{bottom:414.405000px;}
.ybd_c00159{bottom:430.245000px;}
.ybc_c00159{bottom:431.325000px;}
.yba_c00159{bottom:431.745000px;}
.yb9_c00159{bottom:433.905000px;}
.ybb_c00159{bottom:434.970000px;}
.yb8_c00159{bottom:452.130000px;}
.yb7_c00159{bottom:452.970000px;}
.yb6_c00159{bottom:453.405000px;}
.yb4_c00159{bottom:470.745000px;}
.yb5_c00159{bottom:471.630000px;}
.yb2_c00159{bottom:472.905000px;}
.yb3_c00159{bottom:473.130000px;}
.yae_c00159{bottom:490.245000px;}
.yb0_c00159{bottom:492.405000px;}
.yaf_c00159{bottom:492.630000px;}
.yb1_c00159{bottom:493.470000px;}
.yaa_c00159{bottom:509.745000px;}
.yab_c00159{bottom:510.825000px;}
.yac_c00159{bottom:511.905000px;}
.yad_c00159{bottom:512.970000px;}
.ya9_c00159{bottom:528.405000px;}
.ya7_c00159{bottom:529.245000px;}
.ya5_c00159{bottom:530.325000px;}
.ya4_c00159{bottom:531.405000px;}
.ya8_c00159{bottom:531.630000px;}
.ya6_c00159{bottom:532.470000px;}
.ya3_c00159{bottom:550.245000px;}
.y9e_c00159{bottom:550.905000px;}
.ya0_c00159{bottom:551.130000px;}
.ya1_c00159{bottom:551.325000px;}
.ya2_c00159{bottom:551.970000px;}
.y9f_c00159{bottom:552.405000px;}
.y99_c00159{bottom:568.245000px;}
.y9c_c00159{bottom:569.745000px;}
.y98_c00159{bottom:570.405000px;}
.y9a_c00159{bottom:570.630000px;}
.y9d_c00159{bottom:570.825000px;}
.y9b_c00159{bottom:571.905000px;}
.y94_c00159{bottom:588.825000px;}
.y96_c00159{bottom:589.245000px;}
.y95_c00159{bottom:590.130000px;}
.y97_c00159{bottom:590.325000px;}
.y93_c00159{bottom:591.405000px;}
.y90_c00159{bottom:608.745000px;}
.y92_c00159{bottom:609.630000px;}
.y91_c00159{bottom:610.470000px;}
.y8f_c00159{bottom:610.905000px;}
.y8e_c00159{bottom:628.245000px;}
.y8a_c00159{bottom:628.905000px;}
.y8c_c00159{bottom:629.130000px;}
.y8b_c00159{bottom:629.970000px;}
.y8d_c00159{bottom:630.405000px;}
.y86_c00159{bottom:646.245000px;}
.y88_c00159{bottom:647.325000px;}
.y89_c00159{bottom:647.745000px;}
.y87_c00159{bottom:648.630000px;}
.y85_c00159{bottom:649.905000px;}
.y84_c00159{bottom:666.405000px;}
.y83_c00159{bottom:667.245000px;}
.y82_c00159{bottom:669.405000px;}
.y81_c00159{bottom:685.905000px;}
.y80_c00159{bottom:688.245000px;}
.y7d_c00159{bottom:688.905000px;}
.y7e_c00159{bottom:689.130000px;}
.y7f_c00159{bottom:689.970000px;}
.y78_c00159{bottom:706.245000px;}
.y7a_c00159{bottom:707.325000px;}
.y7b_c00159{bottom:707.745000px;}
.y79_c00159{bottom:708.405000px;}
.y7c_c00159{bottom:708.630000px;}
.y73_c00159{bottom:726.825000px;}
.y76_c00159{bottom:727.245000px;}
.y72_c00159{bottom:727.905000px;}
.y75_c00159{bottom:728.130000px;}
.y77_c00159{bottom:728.970000px;}
.y74_c00159{bottom:729.405000px;}
.y71_c00159{bottom:744.405000px;}
.y70_c00159{bottom:746.745000px;}
.y6e_c00159{bottom:747.405000px;}
.y6f_c00159{bottom:748.905000px;}
.y6b_c00159{bottom:766.245000px;}
.y6d_c00159{bottom:767.130000px;}
.y6a_c00159{bottom:767.325000px;}
.y6c_c00159{bottom:767.970000px;}
.y69_c00159{bottom:768.405000px;}
.y64_c00159{bottom:785.325000px;}
.y67_c00159{bottom:785.745000px;}
.y66_c00159{bottom:786.825000px;}
.y65_c00159{bottom:787.905000px;}
.y68_c00159{bottom:788.970000px;}
.y60_c00159{bottom:805.245000px;}
.y61_c00159{bottom:806.325000px;}
.y62_c00159{bottom:807.405000px;}
.y63_c00159{bottom:808.470000px;}
.y5f_c00159{bottom:824.745000px;}
.y5c_c00159{bottom:825.825000px;}
.y5b_c00159{bottom:826.905000px;}
.y5d_c00159{bottom:827.130000px;}
.y5e_c00159{bottom:828.405000px;}
.y5a_c00159{bottom:844.470000px;}
.y59_c00159{bottom:845.745000px;}
.y56_c00159{bottom:846.405000px;}
.y57_c00159{bottom:846.630000px;}
.y58_c00159{bottom:847.905000px;}
.y51_c00159{bottom:864.405000px;}
.y4f_c00159{bottom:864.825000px;}
.y54_c00159{bottom:865.050000px;}
.y53_c00159{bottom:865.245000px;}
.y4e_c00159{bottom:865.905000px;}
.y52_c00159{bottom:866.130000px;}
.y55_c00159{bottom:866.325000px;}
.y50_c00159{bottom:867.405000px;}
.y4c_c00159{bottom:883.470000px;}
.y4b_c00159{bottom:883.905000px;}
.y46_c00159{bottom:884.745000px;}
.y47_c00159{bottom:885.405000px;}
.y48_c00159{bottom:885.630000px;}
.y4d_c00159{bottom:886.470000px;}
.y49_c00159{bottom:886.905000px;}
.y4a_c00159{bottom:887.970000px;}
.y44_c00159{bottom:902.970000px;}
.y43_c00159{bottom:903.405000px;}
.y3e_c00159{bottom:904.245000px;}
.y45_c00159{bottom:905.130000px;}
.y41_c00159{bottom:905.325000px;}
.y42_c00159{bottom:905.970000px;}
.y40_c00159{bottom:906.405000px;}
.y3f_c00159{bottom:906.420000px;}
.y3c_c00159{bottom:929.970000px;}
.y3b_c00159{bottom:930.825000px;}
.y3d_c00159{bottom:931.905000px;}
.y3a_c00159{bottom:932.970000px;}
.y36_c00159{bottom:946.470000px;}
.y35_c00159{bottom:946.905000px;}
.y39_c00159{bottom:947.130000px;}
.y38_c00159{bottom:947.970000px;}
.y37_c00159{bottom:949.050000px;}
.y2e_c00159{bottom:960.405000px;}
.y33_c00159{bottom:960.825000px;}
.y34_c00159{bottom:961.050000px;}
.y2d_c00159{bottom:961.695000px;}
.y31_c00159{bottom:961.905000px;}
.y32_c00159{bottom:962.970000px;}
.y30_c00159{bottom:963.195000px;}
.y2f_c00159{bottom:964.050000px;}
.y28_c00159{bottom:974.550000px;}
.y2b_c00159{bottom:975.405000px;}
.y2c_c00159{bottom:976.050000px;}
.y29_c00159{bottom:976.470000px;}
.y2a_c00159{bottom:977.550000px;}
.y27_c00159{bottom:989.325000px;}
.y22_c00159{bottom:990.405000px;}
.y21_c00159{bottom:990.630000px;}
.y26_c00159{bottom:991.050000px;}
.y25_c00159{bottom:991.470000px;}
.y24_c00159{bottom:991.695000px;}
.y23_c00159{bottom:992.550000px;}
.y1c_c00159{bottom:1004.325000px;}
.y1d_c00159{bottom:1004.550000px;}
.y1f_c00159{bottom:1005.405000px;}
.y20_c00159{bottom:1005.825000px;}
.y1a_c00159{bottom:1006.470000px;}
.y1e_c00159{bottom:1006.695000px;}
.y1b_c00159{bottom:1007.550000px;}
.y19_c00159{bottom:1018.470000px;}
.y17_c00159{bottom:1019.325000px;}
.y18_c00159{bottom:1020.405000px;}
.y12_c00159{bottom:1020.630000px;}
.y15_c00159{bottom:1021.050000px;}
.y16_c00159{bottom:1021.470000px;}
.y14_c00159{bottom:1021.695000px;}
.y13_c00159{bottom:1022.550000px;}
.y10_c00159{bottom:1034.325000px;}
.yf_c00159{bottom:1035.405000px;}
.y11_c00159{bottom:1036.470000px;}
.yd_c00159{bottom:1036.695000px;}
.ye_c00159{bottom:1037.550000px;}
.yc_c00159{bottom:1048.905000px;}
.ya_c00159{bottom:1049.970000px;}
.yb_c00159{bottom:1051.050000px;}
.y4_c00159{bottom:1062.825000px;}
.y8_c00159{bottom:1063.050000px;}
.y9_c00159{bottom:1063.905000px;}
.y7_c00159{bottom:1064.130000px;}
.y6_c00159{bottom:1064.970000px;}
.y5_c00159{bottom:1065.195000px;}
.y3_c00159{bottom:1066.050000px;}
.y2_c00159{bottom:1098.405000px;}
.y1_c00159{bottom:1102.050000px;}
.h9_c00159{height:4.206533px;}
.h4_c00159{height:16.752334px;}
.h6_c00159{height:23.025234px;}
.h1_c00159{height:25.091602px;}
.h7_c00159{height:27.044502px;}
.h5_c00159{height:31.364502px;}
.h2_c00159{height:35.571035px;}
.h3_c00159{height:39.777568px;}
.h8_c00159{height:43.910303px;}
.ha_c00159{height:48.116836px;}
.h0_c00159{height:1335.000000px;}
.w0_c00159{width:880.500000px;}
.x0_c00159{left:0.000000px;}
.x111_c00159{left:148.920000px;}
.x3_c00159{left:150.000000px;}
.x2_c00159{left:151.920000px;}
.x15_c00159{left:165.000000px;}
.x5d_c00159{left:166.080000px;}
.xdc_c00159{left:167.580000px;}
.xcc_c00159{left:169.920000px;}
.x45_c00159{left:173.580000px;}
.x85_c00159{left:177.000000px;}
.xa0_c00159{left:178.920000px;}
.x13_c00159{left:186.420000px;}
.x4_c00159{left:187.920000px;}
.x22_c00159{left:189.000000px;}
.x16_c00159{left:190.500000px;}
.xbd_c00159{left:191.580000px;}
.xe3_c00159{left:193.500000px;}
.x100_c00159{left:195.000000px;}
.x7d_c00159{left:196.080000px;}
.x52_c00159{left:198.420000px;}
.x46_c00159{left:199.920000px;}
.x90_c00159{left:204.420000px;}
.xe7_c00159{left:205.500000px;}
.xee_c00159{left:206.580000px;}
.x98_c00159{left:208.920000px;}
.xbe_c00159{left:210.420000px;}
.x14_c00159{left:213.000000px;}
.x5_c00159{left:214.500000px;}
.xd8_c00159{left:219.420000px;}
.x73_c00159{left:220.500000px;}
.x105_c00159{left:222.000000px;}
.xa1_c00159{left:225.000000px;}
.x17_c00159{left:226.500000px;}
.x68_c00159{left:230.580000px;}
.xc3_c00159{left:232.080000px;}
.x23_c00159{left:234.000000px;}
.x47_c00159{left:235.500000px;}
.xbf_c00159{left:237.420000px;}
.xfb_c00159{left:238.500000px;}
.xeb_c00159{left:241.920000px;}
.xcd_c00159{left:244.500000px;}
.xf5_c00159{left:246.420000px;}
.x10e_c00159{left:249.420000px;}
.xb8_c00159{left:250.500000px;}
.x10a_c00159{left:252.420000px;}
.x24_c00159{left:253.500000px;}
.x5e_c00159{left:255.000000px;}
.x37_c00159{left:256.500000px;}
.x18_c00159{left:259.500000px;}
.xa8_c00159{left:260.580000px;}
.x6_c00159{left:262.500000px;}
.xc4_c00159{left:264.000000px;}
.xb0_c00159{left:265.920000px;}
.xd2_c00159{left:267.000000px;}
.x74_c00159{left:268.080000px;}
.x48_c00159{left:269.580000px;}
.x30_c00159{left:271.500000px;}
.x91_c00159{left:273.420000px;}
.x7_c00159{left:274.500000px;}
.x5f_c00159{left:275.580000px;}
.x69_c00159{left:277.920000px;}
.xe4_c00159{left:280.500000px;}
.xd9_c00159{left:282.000000px;}
.x106_c00159{left:283.080000px;}
.x25_c00159{left:284.580000px;}
.xf1_c00159{left:286.500000px;}
.x99_c00159{left:289.500000px;}
.xc0_c00159{left:291.420000px;}
.x49_c00159{left:293.580000px;}
.x38_c00159{left:295.500000px;}
.x6a_c00159{left:297.000000px;}
.x53_c00159{left:300.000000px;}
.xb1_c00159{left:303.420000px;}
.x19_c00159{left:304.500000px;}
.xda_c00159{left:306.000000px;}
.xa9_c00159{left:307.080000px;}
.x3f_c00159{left:308.580000px;}
.x5c_c00159{left:312.420000px;}
.x75_c00159{left:313.920000px;}
.xfc_c00159{left:315.000000px;}
.xef_c00159{left:316.500000px;}
.xc1_c00159{left:318.000000px;}
.x26_c00159{left:319.080000px;}
.x31_c00159{left:320.580000px;}
.x1a_c00159{left:322.500000px;}
.xe5_c00159{left:324.000000px;}
.xa2_c00159{left:325.500000px;}
.x8_c00159{left:326.580000px;}
.x60_c00159{left:328.080000px;}
.x6b_c00159{left:330.420000px;}
.xf9_c00159{left:331.500000px;}
.x27_c00159{left:334.920000px;}
.xf0_c00159{left:336.420000px;}
.x8a_c00159{left:337.500000px;}
.x10b_c00159{left:339.000000px;}
.x39_c00159{left:340.500000px;}
.x4a_c00159{left:342.000000px;}
.xce_c00159{left:343.920000px;}
.x61_c00159{left:346.920000px;}
.xd3_c00159{left:348.000000px;}
.x54_c00159{left:349.920000px;}
.xe1_c00159{left:351.000000px;}
.xdd_c00159{left:352.500000px;}
.x92_c00159{left:353.580000px;}
.x40_c00159{left:357.000000px;}
.x7e_c00159{left:358.080000px;}
.x32_c00159{left:359.580000px;}
.x76_c00159{left:364.920000px;}
.x9_c00159{left:366.000000px;}
.x55_c00159{left:369.000000px;}
.x6c_c00159{left:370.920000px;}
.xde_c00159{left:373.920000px;}
.x4b_c00159{left:376.920000px;}
.x102_c00159{left:378.000000px;}
.xb2_c00159{left:380.145000px;}
.xcf_c00159{left:382.920000px;}
.x93_c00159{left:384.000000px;}
.x10f_c00159{left:385.920000px;}
.xf2_c00159{left:387.000000px;}
.x33_c00159{left:388.080000px;}
.xc8_c00159{left:390.000000px;}
.x9a_c00159{left:391.500000px;}
.x107_c00159{left:394.500000px;}
.xa_c00159{left:395.580000px;}
.x1_c00159{left:399.000000px;}
.x28_c00159{left:401.145000px;}
.x4c_c00159{left:403.500000px;}
.x7f_c00159{left:405.420000px;}
.x3a_c00159{left:407.580000px;}
.x1b_c00159{left:411.000000px;}
.x10c_c00159{left:414.000000px;}
.x86_c00159{left:415.500000px;}
.xc2_c00159{left:416.580000px;}
.x8b_c00159{left:418.500000px;}
.xb9_c00159{left:420.000000px;}
.xfd_c00159{left:421.500000px;}
.x110_c00159{left:423.420000px;}
.x9b_c00159{left:426.420000px;}
.x108_c00159{left:427.500000px;}
.x1c_c00159{left:429.000000px;}
.xfa_c00159{left:430.080000px;}
.x77_c00159{left:431.355000px;}
.xb_c00159{left:433.920000px;}
.xaa_c00159{left:435.000000px;}
.x56_c00159{left:436.500000px;}
.xe6_c00159{left:439.080000px;}
.xb3_c00159{left:440.580000px;}
.x29_c00159{left:444.420000px;}
.xc5_c00159{left:446.580000px;}
.x78_c00159{left:448.500000px;}
.x4d_c00159{left:450.420000px;}
.x80_c00159{left:452.580000px;}
.xec_c00159{left:454.920000px;}
.x34_c00159{left:456.000000px;}
.x6d_c00159{left:458.580000px;}
.x2a_c00159{left:460.080000px;}
.x62_c00159{left:462.420000px;}
.x3b_c00159{left:464.580000px;}
.xa3_c00159{left:466.500000px;}
.xc_c00159{left:469.500000px;}
.xb4_c00159{left:471.855000px;}
.x57_c00159{left:472.920000px;}
.x8c_c00159{left:474.000000px;}
.x3c_c00159{left:475.500000px;}
.x41_c00159{left:478.920000px;}
.x79_c00159{left:480.000000px;}
.x101_c00159{left:481.920000px;}
.xe8_c00159{left:484.500000px;}
.xd4_c00159{left:486.000000px;}
.x94_c00159{left:487.080000px;}
.x35_c00159{left:490.080000px;}
.xc6_c00159{left:493.500000px;}
.x1d_c00159{left:494.580000px;}
.xf6_c00159{left:498.000000px;}
.x2b_c00159{left:499.080000px;}
.xab_c00159{left:501.000000px;}
.xc9_c00159{left:502.920000px;}
.xd_c00159{left:505.920000px;}
.x6e_c00159{left:507.000000px;}
.x3d_c00159{left:510.000000px;}
.x4e_c00159{left:511.080000px;}
.x9c_c00159{left:513.000000px;}
.x87_c00159{left:516.000000px;}
.x36_c00159{left:517.500000px;}
.xb5_c00159{left:519.420000px;}
.xba_c00159{left:520.500000px;}
.x1e_c00159{left:522.420000px;}
.x103_c00159{left:525.000000px;}
.x7a_c00159{left:529.500000px;}
.x81_c00159{left:530.580000px;}
.xe_c00159{left:532.500000px;}
.xa4_c00159{left:534.420000px;}
.x3e_c00159{left:539.355000px;}
.xd0_c00159{left:541.500000px;}
.x63_c00159{left:543.000000px;}
.x4f_c00159{left:544.920000px;}
.xfe_c00159{left:547.080000px;}
.x2c_c00159{left:549.000000px;}
.x95_c00159{left:550.500000px;}
.x10d_c00159{left:552.420000px;}
.x6f_c00159{left:554.580000px;}
.x58_c00159{left:556.920000px;}
.x109_c00159{left:558.000000px;}
.xa5_c00159{left:561.000000px;}
.x64_c00159{left:562.500000px;}
.x1f_c00159{left:564.000000px;}
.xca_c00159{left:565.500000px;}
.x42_c00159{left:567.420000px;}
.x96_c00159{left:568.920000px;}
.xd5_c00159{left:570.000000px;}
.x82_c00159{left:571.920000px;}
.x112_c00159{left:573.000000px;}
.xa6_c00159{left:577.080000px;}
.xb6_c00159{left:579.000000px;}
.xf_c00159{left:580.920000px;}
.xc7_c00159{left:582.000000px;}
.x8d_c00159{left:583.080000px;}
.xf7_c00159{left:585.420000px;}
.x9d_c00159{left:586.920000px;}
.x7b_c00159{left:591.000000px;}
.xe2_c00159{left:592.080000px;}
.x10_c00159{left:594.000000px;}
.x97_c00159{left:595.500000px;}
.x2d_c00159{left:598.080000px;}
.x20_c00159{left:600.420000px;}
.x59_c00159{left:601.500000px;}
.xe9_c00159{left:603.000000px;}
.x88_c00159{left:604.500000px;}
.xff_c00159{left:609.000000px;}
.xac_c00159{left:611.580000px;}
.x70_c00159{left:613.500000px;}
.x9e_c00159{left:615.420000px;}
.xa7_c00159{left:618.420000px;}
.x83_c00159{left:622.500000px;}
.xdb_c00159{left:624.420000px;}
.x21_c00159{left:625.500000px;}
.xbb_c00159{left:628.500000px;}
.xdf_c00159{left:629.580000px;}
.xad_c00159{left:631.920000px;}
.x2e_c00159{left:637.080000px;}
.x65_c00159{left:639.000000px;}
.x7c_c00159{left:642.000000px;}
.x8e_c00159{left:646.500000px;}
.x104_c00159{left:648.000000px;}
.xb7_c00159{left:649.500000px;}
.xd1_c00159{left:650.580000px;}
.x71_c00159{left:652.500000px;}
.x43_c00159{left:654.420000px;}
.xae_c00159{left:660.000000px;}
.x11_c00159{left:661.080000px;}
.x2f_c00159{left:664.080000px;}
.x5a_c00159{left:666.000000px;}
.xf3_c00159{left:669.000000px;}
.x50_c00159{left:670.500000px;}
.x66_c00159{left:672.000000px;}
.xf8_c00159{left:673.920000px;}
.xd6_c00159{left:679.920000px;}
.x89_c00159{left:681.000000px;}
.x72_c00159{left:686.580000px;}
.xcb_c00159{left:688.500000px;}
.x12_c00159{left:690.420000px;}
.x8f_c00159{left:691.920000px;}
.xbc_c00159{left:693.420000px;}
.xaf_c00159{left:696.000000px;}
.x84_c00159{left:697.920000px;}
.x44_c00159{left:699.000000px;}
.xea_c00159{left:700.920000px;}
.x67_c00159{left:702.000000px;}
.xf4_c00159{left:703.500000px;}
.x51_c00159{left:704.580000px;}
.xe0_c00159{left:708.420000px;}
.xed_c00159{left:709.500000px;}
.x9f_c00159{left:712.500000px;}
.x5b_c00159{left:715.920000px;}
.xd7_c00159{left:720.000000px;}
@media print{
.v2_c00159{vertical-align:-5.333333pt;}
.v1_c00159{vertical-align:-3.840000pt;}
.v0_c00159{vertical-align:0.000000pt;}
.ls1_c00159{letter-spacing:0.000000pt;}
.ls0_c00159{letter-spacing:8.584533pt;}
.ws1_c00159{word-spacing:-5.737640pt;}
.ws2_c00159{word-spacing:-3.474094pt;}
.ws0_c00159{word-spacing:-2.598853pt;}
.ws3_c00159{word-spacing:0.000000pt;}
.fs7_c00159{font-size:3.040000pt;}
.fs3_c00159{font-size:12.106667pt;}
.fs5_c00159{font-size:16.640000pt;}
.fs0_c00159{font-size:18.133333pt;}
.fs4_c00159{font-size:22.666667pt;}
.fs1_c00159{font-size:25.706667pt;}
.fs2_c00159{font-size:28.746667pt;}
.fs6_c00159{font-size:31.733333pt;}
.fs8_c00159{font-size:34.773333pt;}
.y0_c00159{bottom:0.000000pt;}
.yee_c00159{bottom:225.106667pt;}
.yf0_c00159{bottom:226.066667pt;}
.yef_c00159{bottom:227.026667pt;}
.yf1_c00159{bottom:227.226667pt;}
.yed_c00159{bottom:242.440000pt;}
.ye8_c00159{bottom:243.400000pt;}
.yec_c00159{bottom:243.773333pt;}
.ye9_c00159{bottom:243.973333pt;}
.ye7_c00159{bottom:244.360000pt;}
.yeb_c00159{bottom:245.306667pt;}
.yea_c00159{bottom:245.693333pt;}
.ye6_c00159{bottom:259.026667pt;}
.ye0_c00159{bottom:259.773333pt;}
.ye1_c00159{bottom:260.933333pt;}
.ye5_c00159{bottom:261.106667pt;}
.ye2_c00159{bottom:261.693333pt;}
.ye3_c00159{bottom:261.893333pt;}
.ye4_c00159{bottom:263.026667pt;}
.yde_c00159{bottom:276.360000pt;}
.ydf_c00159{bottom:277.306667pt;}
.ydb_c00159{bottom:279.026667pt;}
.ydc_c00159{bottom:279.226667pt;}
.ydd_c00159{bottom:280.360000pt;}
.yda_c00159{bottom:293.693333pt;}
.yd9_c00159{bottom:295.773333pt;}
.yd7_c00159{bottom:296.160000pt;}
.yd6_c00159{bottom:296.360000pt;}
.yd8_c00159{bottom:296.733333pt;}
.yd5_c00159{bottom:297.693333pt;}
.yd1_c00159{bottom:311.026667pt;}
.yd2_c00159{bottom:313.106667pt;}
.yd4_c00159{bottom:314.066667pt;}
.yd3_c00159{bottom:315.026667pt;}
.yce_c00159{bottom:329.693333pt;}
.yd0_c00159{bottom:330.440000pt;}
.ycb_c00159{bottom:332.360000pt;}
.ycc_c00159{bottom:332.560000pt;}
.ycf_c00159{bottom:333.306667pt;}
.ycd_c00159{bottom:333.693333pt;}
.yc9_c00159{bottom:348.160000pt;}
.yc8_c00159{bottom:349.106667pt;}
.yc6_c00159{bottom:349.306667pt;}
.yc5_c00159{bottom:349.693333pt;}
.yca_c00159{bottom:349.893333pt;}
.yc7_c00159{bottom:351.026667pt;}
.yc3_c00159{bottom:365.106667pt;}
.yc0_c00159{bottom:366.266667pt;}
.yc1_c00159{bottom:366.440000pt;}
.ybe_c00159{bottom:367.026667pt;}
.yc4_c00159{bottom:367.226667pt;}
.ybf_c00159{bottom:367.973333pt;}
.yc2_c00159{bottom:368.360000pt;}
.ybd_c00159{bottom:382.440000pt;}
.ybc_c00159{bottom:383.400000pt;}
.yba_c00159{bottom:383.773333pt;}
.yb9_c00159{bottom:385.693333pt;}
.ybb_c00159{bottom:386.640000pt;}
.yb8_c00159{bottom:401.893333pt;}
.yb7_c00159{bottom:402.640000pt;}
.yb6_c00159{bottom:403.026667pt;}
.yb4_c00159{bottom:418.440000pt;}
.yb5_c00159{bottom:419.226667pt;}
.yb2_c00159{bottom:420.360000pt;}
.yb3_c00159{bottom:420.560000pt;}
.yae_c00159{bottom:435.773333pt;}
.yb0_c00159{bottom:437.693333pt;}
.yaf_c00159{bottom:437.893333pt;}
.yb1_c00159{bottom:438.640000pt;}
.yaa_c00159{bottom:453.106667pt;}
.yab_c00159{bottom:454.066667pt;}
.yac_c00159{bottom:455.026667pt;}
.yad_c00159{bottom:455.973333pt;}
.ya9_c00159{bottom:469.693333pt;}
.ya7_c00159{bottom:470.440000pt;}
.ya5_c00159{bottom:471.400000pt;}
.ya4_c00159{bottom:472.360000pt;}
.ya8_c00159{bottom:472.560000pt;}
.ya6_c00159{bottom:473.306667pt;}
.ya3_c00159{bottom:489.106667pt;}
.y9e_c00159{bottom:489.693333pt;}
.ya0_c00159{bottom:489.893333pt;}
.ya1_c00159{bottom:490.066667pt;}
.ya2_c00159{bottom:490.640000pt;}
.y9f_c00159{bottom:491.026667pt;}
.y99_c00159{bottom:505.106667pt;}
.y9c_c00159{bottom:506.440000pt;}
.y98_c00159{bottom:507.026667pt;}
.y9a_c00159{bottom:507.226667pt;}
.y9d_c00159{bottom:507.400000pt;}
.y9b_c00159{bottom:508.360000pt;}
.y94_c00159{bottom:523.400000pt;}
.y96_c00159{bottom:523.773333pt;}
.y95_c00159{bottom:524.560000pt;}
.y97_c00159{bottom:524.733333pt;}
.y93_c00159{bottom:525.693333pt;}
.y90_c00159{bottom:541.106667pt;}
.y92_c00159{bottom:541.893333pt;}
.y91_c00159{bottom:542.640000pt;}
.y8f_c00159{bottom:543.026667pt;}
.y8e_c00159{bottom:558.440000pt;}
.y8a_c00159{bottom:559.026667pt;}
.y8c_c00159{bottom:559.226667pt;}
.y8b_c00159{bottom:559.973333pt;}
.y8d_c00159{bottom:560.360000pt;}
.y86_c00159{bottom:574.440000pt;}
.y88_c00159{bottom:575.400000pt;}
.y89_c00159{bottom:575.773333pt;}
.y87_c00159{bottom:576.560000pt;}
.y85_c00159{bottom:577.693333pt;}
.y84_c00159{bottom:592.360000pt;}
.y83_c00159{bottom:593.106667pt;}
.y82_c00159{bottom:595.026667pt;}
.y81_c00159{bottom:609.693333pt;}
.y80_c00159{bottom:611.773333pt;}
.y7d_c00159{bottom:612.360000pt;}
.y7e_c00159{bottom:612.560000pt;}
.y7f_c00159{bottom:613.306667pt;}
.y78_c00159{bottom:627.773333pt;}
.y7a_c00159{bottom:628.733333pt;}
.y7b_c00159{bottom:629.106667pt;}
.y79_c00159{bottom:629.693333pt;}
.y7c_c00159{bottom:629.893333pt;}
.y73_c00159{bottom:646.066667pt;}
.y76_c00159{bottom:646.440000pt;}
.y72_c00159{bottom:647.026667pt;}
.y75_c00159{bottom:647.226667pt;}
.y77_c00159{bottom:647.973333pt;}
.y74_c00159{bottom:648.360000pt;}
.y71_c00159{bottom:661.693333pt;}
.y70_c00159{bottom:663.773333pt;}
.y6e_c00159{bottom:664.360000pt;}
.y6f_c00159{bottom:665.693333pt;}
.y6b_c00159{bottom:681.106667pt;}
.y6d_c00159{bottom:681.893333pt;}
.y6a_c00159{bottom:682.066667pt;}
.y6c_c00159{bottom:682.640000pt;}
.y69_c00159{bottom:683.026667pt;}
.y64_c00159{bottom:698.066667pt;}
.y67_c00159{bottom:698.440000pt;}
.y66_c00159{bottom:699.400000pt;}
.y65_c00159{bottom:700.360000pt;}
.y68_c00159{bottom:701.306667pt;}
.y60_c00159{bottom:715.773333pt;}
.y61_c00159{bottom:716.733333pt;}
.y62_c00159{bottom:717.693333pt;}
.y63_c00159{bottom:718.640000pt;}
.y5f_c00159{bottom:733.106667pt;}
.y5c_c00159{bottom:734.066667pt;}
.y5b_c00159{bottom:735.026667pt;}
.y5d_c00159{bottom:735.226667pt;}
.y5e_c00159{bottom:736.360000pt;}
.y5a_c00159{bottom:750.640000pt;}
.y59_c00159{bottom:751.773333pt;}
.y56_c00159{bottom:752.360000pt;}
.y57_c00159{bottom:752.560000pt;}
.y58_c00159{bottom:753.693333pt;}
.y51_c00159{bottom:768.360000pt;}
.y4f_c00159{bottom:768.733333pt;}
.y54_c00159{bottom:768.933333pt;}
.y53_c00159{bottom:769.106667pt;}
.y4e_c00159{bottom:769.693333pt;}
.y52_c00159{bottom:769.893333pt;}
.y55_c00159{bottom:770.066667pt;}
.y50_c00159{bottom:771.026667pt;}
.y4c_c00159{bottom:785.306667pt;}
.y4b_c00159{bottom:785.693333pt;}
.y46_c00159{bottom:786.440000pt;}
.y47_c00159{bottom:787.026667pt;}
.y48_c00159{bottom:787.226667pt;}
.y4d_c00159{bottom:787.973333pt;}
.y49_c00159{bottom:788.360000pt;}
.y4a_c00159{bottom:789.306667pt;}
.y44_c00159{bottom:802.640000pt;}
.y43_c00159{bottom:803.026667pt;}
.y3e_c00159{bottom:803.773333pt;}
.y45_c00159{bottom:804.560000pt;}
.y41_c00159{bottom:804.733333pt;}
.y42_c00159{bottom:805.306667pt;}
.y40_c00159{bottom:805.693333pt;}
.y3f_c00159{bottom:805.706667pt;}
.y3c_c00159{bottom:826.640000pt;}
.y3b_c00159{bottom:827.400000pt;}
.y3d_c00159{bottom:828.360000pt;}
.y3a_c00159{bottom:829.306667pt;}
.y36_c00159{bottom:841.306667pt;}
.y35_c00159{bottom:841.693333pt;}
.y39_c00159{bottom:841.893333pt;}
.y38_c00159{bottom:842.640000pt;}
.y37_c00159{bottom:843.600000pt;}
.y2e_c00159{bottom:853.693333pt;}
.y33_c00159{bottom:854.066667pt;}
.y34_c00159{bottom:854.266667pt;}
.y2d_c00159{bottom:854.840000pt;}
.y31_c00159{bottom:855.026667pt;}
.y32_c00159{bottom:855.973333pt;}
.y30_c00159{bottom:856.173333pt;}
.y2f_c00159{bottom:856.933333pt;}
.y28_c00159{bottom:866.266667pt;}
.y2b_c00159{bottom:867.026667pt;}
.y2c_c00159{bottom:867.600000pt;}
.y29_c00159{bottom:867.973333pt;}
.y2a_c00159{bottom:868.933333pt;}
.y27_c00159{bottom:879.400000pt;}
.y22_c00159{bottom:880.360000pt;}
.y21_c00159{bottom:880.560000pt;}
.y26_c00159{bottom:880.933333pt;}
.y25_c00159{bottom:881.306667pt;}
.y24_c00159{bottom:881.506667pt;}
.y23_c00159{bottom:882.266667pt;}
.y1c_c00159{bottom:892.733333pt;}
.y1d_c00159{bottom:892.933333pt;}
.y1f_c00159{bottom:893.693333pt;}
.y20_c00159{bottom:894.066667pt;}
.y1a_c00159{bottom:894.640000pt;}
.y1e_c00159{bottom:894.840000pt;}
.y1b_c00159{bottom:895.600000pt;}
.y19_c00159{bottom:905.306667pt;}
.y17_c00159{bottom:906.066667pt;}
.y18_c00159{bottom:907.026667pt;}
.y12_c00159{bottom:907.226667pt;}
.y15_c00159{bottom:907.600000pt;}
.y16_c00159{bottom:907.973333pt;}
.y14_c00159{bottom:908.173333pt;}
.y13_c00159{bottom:908.933333pt;}
.y10_c00159{bottom:919.400000pt;}
.yf_c00159{bottom:920.360000pt;}
.y11_c00159{bottom:921.306667pt;}
.yd_c00159{bottom:921.506667pt;}
.ye_c00159{bottom:922.266667pt;}
.yc_c00159{bottom:932.360000pt;}
.ya_c00159{bottom:933.306667pt;}
.yb_c00159{bottom:934.266667pt;}
.y4_c00159{bottom:944.733333pt;}
.y8_c00159{bottom:944.933333pt;}
.y9_c00159{bottom:945.693333pt;}
.y7_c00159{bottom:945.893333pt;}
.y6_c00159{bottom:946.640000pt;}
.y5_c00159{bottom:946.840000pt;}
.y3_c00159{bottom:947.600000pt;}
.y2_c00159{bottom:976.360000pt;}
.y1_c00159{bottom:979.600000pt;}
.h9_c00159{height:3.739141pt;}
.h4_c00159{height:14.890964pt;}
.h6_c00159{height:20.466875pt;}
.h1_c00159{height:22.303646pt;}
.h7_c00159{height:24.039557pt;}
.h5_c00159{height:27.879557pt;}
.h2_c00159{height:31.618698pt;}
.h3_c00159{height:35.357839pt;}
.h8_c00159{height:39.031380pt;}
.ha_c00159{height:42.770521pt;}
.h0_c00159{height:1186.666667pt;}
.w0_c00159{width:782.666667pt;}
.x0_c00159{left:0.000000pt;}
.x111_c00159{left:132.373333pt;}
.x3_c00159{left:133.333333pt;}
.x2_c00159{left:135.040000pt;}
.x15_c00159{left:146.666667pt;}
.x5d_c00159{left:147.626667pt;}
.xdc_c00159{left:148.960000pt;}
.xcc_c00159{left:151.040000pt;}
.x45_c00159{left:154.293333pt;}
.x85_c00159{left:157.333333pt;}
.xa0_c00159{left:159.040000pt;}
.x13_c00159{left:165.706667pt;}
.x4_c00159{left:167.040000pt;}
.x22_c00159{left:168.000000pt;}
.x16_c00159{left:169.333333pt;}
.xbd_c00159{left:170.293333pt;}
.xe3_c00159{left:172.000000pt;}
.x100_c00159{left:173.333333pt;}
.x7d_c00159{left:174.293333pt;}
.x52_c00159{left:176.373333pt;}
.x46_c00159{left:177.706667pt;}
.x90_c00159{left:181.706667pt;}
.xe7_c00159{left:182.666667pt;}
.xee_c00159{left:183.626667pt;}
.x98_c00159{left:185.706667pt;}
.xbe_c00159{left:187.040000pt;}
.x14_c00159{left:189.333333pt;}
.x5_c00159{left:190.666667pt;}
.xd8_c00159{left:195.040000pt;}
.x73_c00159{left:196.000000pt;}
.x105_c00159{left:197.333333pt;}
.xa1_c00159{left:200.000000pt;}
.x17_c00159{left:201.333333pt;}
.x68_c00159{left:204.960000pt;}
.xc3_c00159{left:206.293333pt;}
.x23_c00159{left:208.000000pt;}
.x47_c00159{left:209.333333pt;}
.xbf_c00159{left:211.040000pt;}
.xfb_c00159{left:212.000000pt;}
.xeb_c00159{left:215.040000pt;}
.xcd_c00159{left:217.333333pt;}
.xf5_c00159{left:219.040000pt;}
.x10e_c00159{left:221.706667pt;}
.xb8_c00159{left:222.666667pt;}
.x10a_c00159{left:224.373333pt;}
.x24_c00159{left:225.333333pt;}
.x5e_c00159{left:226.666667pt;}
.x37_c00159{left:228.000000pt;}
.x18_c00159{left:230.666667pt;}
.xa8_c00159{left:231.626667pt;}
.x6_c00159{left:233.333333pt;}
.xc4_c00159{left:234.666667pt;}
.xb0_c00159{left:236.373333pt;}
.xd2_c00159{left:237.333333pt;}
.x74_c00159{left:238.293333pt;}
.x48_c00159{left:239.626667pt;}
.x30_c00159{left:241.333333pt;}
.x91_c00159{left:243.040000pt;}
.x7_c00159{left:244.000000pt;}
.x5f_c00159{left:244.960000pt;}
.x69_c00159{left:247.040000pt;}
.xe4_c00159{left:249.333333pt;}
.xd9_c00159{left:250.666667pt;}
.x106_c00159{left:251.626667pt;}
.x25_c00159{left:252.960000pt;}
.xf1_c00159{left:254.666667pt;}
.x99_c00159{left:257.333333pt;}
.xc0_c00159{left:259.040000pt;}
.x49_c00159{left:260.960000pt;}
.x38_c00159{left:262.666667pt;}
.x6a_c00159{left:264.000000pt;}
.x53_c00159{left:266.666667pt;}
.xb1_c00159{left:269.706667pt;}
.x19_c00159{left:270.666667pt;}
.xda_c00159{left:272.000000pt;}
.xa9_c00159{left:272.960000pt;}
.x3f_c00159{left:274.293333pt;}
.x5c_c00159{left:277.706667pt;}
.x75_c00159{left:279.040000pt;}
.xfc_c00159{left:280.000000pt;}
.xef_c00159{left:281.333333pt;}
.xc1_c00159{left:282.666667pt;}
.x26_c00159{left:283.626667pt;}
.x31_c00159{left:284.960000pt;}
.x1a_c00159{left:286.666667pt;}
.xe5_c00159{left:288.000000pt;}
.xa2_c00159{left:289.333333pt;}
.x8_c00159{left:290.293333pt;}
.x60_c00159{left:291.626667pt;}
.x6b_c00159{left:293.706667pt;}
.xf9_c00159{left:294.666667pt;}
.x27_c00159{left:297.706667pt;}
.xf0_c00159{left:299.040000pt;}
.x8a_c00159{left:300.000000pt;}
.x10b_c00159{left:301.333333pt;}
.x39_c00159{left:302.666667pt;}
.x4a_c00159{left:304.000000pt;}
.xce_c00159{left:305.706667pt;}
.x61_c00159{left:308.373333pt;}
.xd3_c00159{left:309.333333pt;}
.x54_c00159{left:311.040000pt;}
.xe1_c00159{left:312.000000pt;}
.xdd_c00159{left:313.333333pt;}
.x92_c00159{left:314.293333pt;}
.x40_c00159{left:317.333333pt;}
.x7e_c00159{left:318.293333pt;}
.x32_c00159{left:319.626667pt;}
.x76_c00159{left:324.373333pt;}
.x9_c00159{left:325.333333pt;}
.x55_c00159{left:328.000000pt;}
.x6c_c00159{left:329.706667pt;}
.xde_c00159{left:332.373333pt;}
.x4b_c00159{left:335.040000pt;}
.x102_c00159{left:336.000000pt;}
.xb2_c00159{left:337.906667pt;}
.xcf_c00159{left:340.373333pt;}
.x93_c00159{left:341.333333pt;}
.x10f_c00159{left:343.040000pt;}
.xf2_c00159{left:344.000000pt;}
.x33_c00159{left:344.960000pt;}
.xc8_c00159{left:346.666667pt;}
.x9a_c00159{left:348.000000pt;}
.x107_c00159{left:350.666667pt;}
.xa_c00159{left:351.626667pt;}
.x1_c00159{left:354.666667pt;}
.x28_c00159{left:356.573333pt;}
.x4c_c00159{left:358.666667pt;}
.x7f_c00159{left:360.373333pt;}
.x3a_c00159{left:362.293333pt;}
.x1b_c00159{left:365.333333pt;}
.x10c_c00159{left:368.000000pt;}
.x86_c00159{left:369.333333pt;}
.xc2_c00159{left:370.293333pt;}
.x8b_c00159{left:372.000000pt;}
.xb9_c00159{left:373.333333pt;}
.xfd_c00159{left:374.666667pt;}
.x110_c00159{left:376.373333pt;}
.x9b_c00159{left:379.040000pt;}
.x108_c00159{left:380.000000pt;}
.x1c_c00159{left:381.333333pt;}
.xfa_c00159{left:382.293333pt;}
.x77_c00159{left:383.426667pt;}
.xb_c00159{left:385.706667pt;}
.xaa_c00159{left:386.666667pt;}
.x56_c00159{left:388.000000pt;}
.xe6_c00159{left:390.293333pt;}
.xb3_c00159{left:391.626667pt;}
.x29_c00159{left:395.040000pt;}
.xc5_c00159{left:396.960000pt;}
.x78_c00159{left:398.666667pt;}
.x4d_c00159{left:400.373333pt;}
.x80_c00159{left:402.293333pt;}
.xec_c00159{left:404.373333pt;}
.x34_c00159{left:405.333333pt;}
.x6d_c00159{left:407.626667pt;}
.x2a_c00159{left:408.960000pt;}
.x62_c00159{left:411.040000pt;}
.x3b_c00159{left:412.960000pt;}
.xa3_c00159{left:414.666667pt;}
.xc_c00159{left:417.333333pt;}
.xb4_c00159{left:419.426667pt;}
.x57_c00159{left:420.373333pt;}
.x8c_c00159{left:421.333333pt;}
.x3c_c00159{left:422.666667pt;}
.x41_c00159{left:425.706667pt;}
.x79_c00159{left:426.666667pt;}
.x101_c00159{left:428.373333pt;}
.xe8_c00159{left:430.666667pt;}
.xd4_c00159{left:432.000000pt;}
.x94_c00159{left:432.960000pt;}
.x35_c00159{left:435.626667pt;}
.xc6_c00159{left:438.666667pt;}
.x1d_c00159{left:439.626667pt;}
.xf6_c00159{left:442.666667pt;}
.x2b_c00159{left:443.626667pt;}
.xab_c00159{left:445.333333pt;}
.xc9_c00159{left:447.040000pt;}
.xd_c00159{left:449.706667pt;}
.x6e_c00159{left:450.666667pt;}
.x3d_c00159{left:453.333333pt;}
.x4e_c00159{left:454.293333pt;}
.x9c_c00159{left:456.000000pt;}
.x87_c00159{left:458.666667pt;}
.x36_c00159{left:460.000000pt;}
.xb5_c00159{left:461.706667pt;}
.xba_c00159{left:462.666667pt;}
.x1e_c00159{left:464.373333pt;}
.x103_c00159{left:466.666667pt;}
.x7a_c00159{left:470.666667pt;}
.x81_c00159{left:471.626667pt;}
.xe_c00159{left:473.333333pt;}
.xa4_c00159{left:475.040000pt;}
.x3e_c00159{left:479.426667pt;}
.xd0_c00159{left:481.333333pt;}
.x63_c00159{left:482.666667pt;}
.x4f_c00159{left:484.373333pt;}
.xfe_c00159{left:486.293333pt;}
.x2c_c00159{left:488.000000pt;}
.x95_c00159{left:489.333333pt;}
.x10d_c00159{left:491.040000pt;}
.x6f_c00159{left:492.960000pt;}
.x58_c00159{left:495.040000pt;}
.x109_c00159{left:496.000000pt;}
.xa5_c00159{left:498.666667pt;}
.x64_c00159{left:500.000000pt;}
.x1f_c00159{left:501.333333pt;}
.xca_c00159{left:502.666667pt;}
.x42_c00159{left:504.373333pt;}
.x96_c00159{left:505.706667pt;}
.xd5_c00159{left:506.666667pt;}
.x82_c00159{left:508.373333pt;}
.x112_c00159{left:509.333333pt;}
.xa6_c00159{left:512.960000pt;}
.xb6_c00159{left:514.666667pt;}
.xf_c00159{left:516.373333pt;}
.xc7_c00159{left:517.333333pt;}
.x8d_c00159{left:518.293333pt;}
.xf7_c00159{left:520.373333pt;}
.x9d_c00159{left:521.706667pt;}
.x7b_c00159{left:525.333333pt;}
.xe2_c00159{left:526.293333pt;}
.x10_c00159{left:528.000000pt;}
.x97_c00159{left:529.333333pt;}
.x2d_c00159{left:531.626667pt;}
.x20_c00159{left:533.706667pt;}
.x59_c00159{left:534.666667pt;}
.xe9_c00159{left:536.000000pt;}
.x88_c00159{left:537.333333pt;}
.xff_c00159{left:541.333333pt;}
.xac_c00159{left:543.626667pt;}
.x70_c00159{left:545.333333pt;}
.x9e_c00159{left:547.040000pt;}
.xa7_c00159{left:549.706667pt;}
.x83_c00159{left:553.333333pt;}
.xdb_c00159{left:555.040000pt;}
.x21_c00159{left:556.000000pt;}
.xbb_c00159{left:558.666667pt;}
.xdf_c00159{left:559.626667pt;}
.xad_c00159{left:561.706667pt;}
.x2e_c00159{left:566.293333pt;}
.x65_c00159{left:568.000000pt;}
.x7c_c00159{left:570.666667pt;}
.x8e_c00159{left:574.666667pt;}
.x104_c00159{left:576.000000pt;}
.xb7_c00159{left:577.333333pt;}
.xd1_c00159{left:578.293333pt;}
.x71_c00159{left:580.000000pt;}
.x43_c00159{left:581.706667pt;}
.xae_c00159{left:586.666667pt;}
.x11_c00159{left:587.626667pt;}
.x2f_c00159{left:590.293333pt;}
.x5a_c00159{left:592.000000pt;}
.xf3_c00159{left:594.666667pt;}
.x50_c00159{left:596.000000pt;}
.x66_c00159{left:597.333333pt;}
.xf8_c00159{left:599.040000pt;}
.xd6_c00159{left:604.373333pt;}
.x89_c00159{left:605.333333pt;}
.x72_c00159{left:610.293333pt;}
.xcb_c00159{left:612.000000pt;}
.x12_c00159{left:613.706667pt;}
.x8f_c00159{left:615.040000pt;}
.xbc_c00159{left:616.373333pt;}
.xaf_c00159{left:618.666667pt;}
.x84_c00159{left:620.373333pt;}
.x44_c00159{left:621.333333pt;}
.xea_c00159{left:623.040000pt;}
.x67_c00159{left:624.000000pt;}
.xf4_c00159{left:625.333333pt;}
.x51_c00159{left:626.293333pt;}
.xe0_c00159{left:629.706667pt;}
.xed_c00159{left:630.666667pt;}
.x9f_c00159{left:633.333333pt;}
.x5b_c00159{left:636.373333pt;}
.xd7_c00159{left:640.000000pt;}
}





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

.ir_c00160:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00160{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00160;src:url('chunks/assets/font_1defaf28d525974e69449f73.woff2')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:1.688965;font-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_c00160{transform:matrix(0.012971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012971,0.000000,0.000000,0.250000,0,0);}
.m5_c00160{transform:matrix(0.014787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014787,0.000000,0.000000,0.250000,0,0);}
.m4_c00160{transform:matrix(0.027646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027646,0.000000,0.000000,0.250000,0,0);}
.ma_c00160{transform:matrix(0.050378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050378,0.000000,0.000000,0.250000,0,0);}
.m9_c00160{transform:matrix(0.051189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051189,0.000000,0.000000,0.250000,0,0);}
.m8_c00160{transform:matrix(0.074307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074307,0.000000,0.000000,0.250000,0,0);}
.m7_c00160{transform:matrix(0.120856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120856,0.000000,0.000000,0.250000,0,0);}
.m2_c00160{transform:matrix(0.134528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134528,0.000000,0.000000,0.250000,0,0);}
.m3_c00160{transform:matrix(0.164110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164110,0.000000,0.000000,0.250000,0,0);}
.m1_c00160{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m0_c00160{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.v0_c00160{vertical-align:0.000000px;}
.ls0_c00160{letter-spacing:0.000000px;}
.sc__c00160{text-shadow:none;}
.sc0_c00160{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00160{-webkit-text-stroke:0px transparent;}
.sc0_c00160{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00160{word-spacing:0.000000px;}
.fc0_c00160{color:transparent;}
.fs0_c00160{font-size:20.400000px;}
.fs1_c00160{font-size:28.920000px;}
.fs3_c00160{font-size:39.120000px;}
.fs2_c00160{font-size:52.740000px;}
.fs6_c00160{font-size:56.100000px;}
.fs7_c00160{font-size:71.460000px;}
.fs8_c00160{font-size:78.240000px;}
.fs4_c00160{font-size:113.940000px;}
.fs5_c00160{font-size:173.460000px;}
.y0_c00160{bottom:0.000000px;}
.y3_c00160{bottom:466.455000px;}
.y4_c00160{bottom:493.680000px;}
.y5_c00160{bottom:526.185000px;}
.y6_c00160{bottom:586.980000px;}
.y7_c00160{bottom:666.480000px;}
.y8_c00160{bottom:733.875000px;}
.y9_c00160{bottom:765.585000px;}
.ya_c00160{bottom:800.925000px;}
.yb_c00160{bottom:840.585000px;}
.y2_c00160{bottom:1098.405000px;}
.y1_c00160{bottom:1102.050000px;}
.h1_c00160{height:25.091602px;}
.h2_c00160{height:35.571035px;}
.h4_c00160{height:48.116836px;}
.h3_c00160{height:64.869170px;}
.h7_c00160{height:69.001904px;}
.h8_c00160{height:87.894404px;}
.h9_c00160{height:96.233672px;}
.h5_c00160{height:140.143975px;}
.h6_c00160{height:213.352412px;}
.h0_c00160{height:1335.000000px;}
.w0_c00160{width:880.500000px;}
.x0_c00160{left:0.000000px;}
.x1_c00160{left:403.500000px;}
.x4_c00160{left:662.145000px;}
.x3_c00160{left:663.645000px;}
.x5_c00160{left:666.195000px;}
.x2_c00160{left:709.920000px;}
@media print{
.v0_c00160{vertical-align:0.000000pt;}
.ls0_c00160{letter-spacing:0.000000pt;}
.ws0_c00160{word-spacing:0.000000pt;}
.fs0_c00160{font-size:18.133333pt;}
.fs1_c00160{font-size:25.706667pt;}
.fs3_c00160{font-size:34.773333pt;}
.fs2_c00160{font-size:46.880000pt;}
.fs6_c00160{font-size:49.866667pt;}
.fs7_c00160{font-size:63.520000pt;}
.fs8_c00160{font-size:69.546667pt;}
.fs4_c00160{font-size:101.280000pt;}
.fs5_c00160{font-size:154.186667pt;}
.y0_c00160{bottom:0.000000pt;}
.y3_c00160{bottom:414.626667pt;}
.y4_c00160{bottom:438.826667pt;}
.y5_c00160{bottom:467.720000pt;}
.y6_c00160{bottom:521.760000pt;}
.y7_c00160{bottom:592.426667pt;}
.y8_c00160{bottom:652.333333pt;}
.y9_c00160{bottom:680.520000pt;}
.ya_c00160{bottom:711.933333pt;}
.yb_c00160{bottom:747.186667pt;}
.y2_c00160{bottom:976.360000pt;}
.y1_c00160{bottom:979.600000pt;}
.h1_c00160{height:22.303646pt;}
.h2_c00160{height:31.618698pt;}
.h4_c00160{height:42.770521pt;}
.h3_c00160{height:57.661484pt;}
.h7_c00160{height:61.335026pt;}
.h8_c00160{height:78.128359pt;}
.h9_c00160{height:85.541042pt;}
.h5_c00160{height:124.572422pt;}
.h6_c00160{height:189.646589pt;}
.h0_c00160{height:1186.666667pt;}
.w0_c00160{width:782.666667pt;}
.x0_c00160{left:0.000000pt;}
.x1_c00160{left:358.666667pt;}
.x4_c00160{left:588.573333pt;}
.x3_c00160{left:589.906667pt;}
.x5_c00160{left:592.173333pt;}
.x2_c00160{left:631.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_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_072b71f5792a9cee8d00a826.woff2')format("woff");}.ff1_c00161{font-family:ff1_c00161;line-height:1.688965;font-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_c00161{transform:matrix(0.187647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187647,0.000000,0.000000,0.250000,0,0);}
.m88_c00161{transform:matrix(0.305066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305066,0.000000,0.000000,0.250000,0,0);}
.mb7_c00161{transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);}
.m37_c00161{transform:matrix(0.337040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337040,0.000000,0.000000,0.250000,0,0);}
.m4d_c00161{transform:matrix(0.369632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369632,0.000000,0.000000,0.250000,0,0);}
.m33_c00161{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m94_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);}
.m6b_c00161{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m67_c00161{transform:matrix(0.384202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384202,0.000000,0.000000,0.250000,0,0);}
.m32_c00161{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m54_c00161{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m23_c00161{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m7b_c00161{transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);}
.m1c_c00161{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m41_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);}
.m36_c00161{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m2_c00161{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m4e_c00161{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m84_c00161{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m26_c00161{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m50_c00161{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m18_c00161{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m80_c00161{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m58_c00161{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m2d_c00161{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m81_c00161{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m5_c00161{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.md_c00161{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m42_c00161{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m6c_c00161{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.ma_c00161{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mc_c00161{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m1a_c00161{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m76_c00161{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m43_c00161{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m9d_c00161{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m86_c00161{transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);}
.m4b_c00161{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m7f_c00161{transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);}
.m83_c00161{transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);}
.m46_c00161{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m17_c00161{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m3b_c00161{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m5a_c00161{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m62_c00161{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m29_c00161{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m55_c00161{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m3e_c00161{transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);}
.m79_c00161{transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);}
.m13_c00161{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m7_c00161{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.mb0_c00161{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);}
.m8c_c00161{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m92_c00161{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.mb1_c00161{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.m7a_c00161{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.ma8_c00161{transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);}
.m38_c00161{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m4f_c00161{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m9a_c00161{transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);}
.m5f_c00161{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.ma3_c00161{transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);}
.mb_c00161{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m3d_c00161{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m93_c00161{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m6e_c00161{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m8f_c00161{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m9_c00161{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m64_c00161{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mb8_c00161{transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);}
.m2e_c00161{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m4a_c00161{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m56_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);}
.m31_c00161{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m1f_c00161{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m0_c00161{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m3a_c00161{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m1e_c00161{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m51_c00161{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mb3_c00161{transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);}
.m2a_c00161{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m74_c00161{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m1d_c00161{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m69_c00161{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m47_c00161{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m65_c00161{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m11_c00161{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m12_c00161{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m8d_c00161{transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);}
.m48_c00161{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m63_c00161{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m6_c00161{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.ma1_c00161{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.m49_c00161{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.mf_c00161{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m9f_c00161{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m7e_c00161{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.m25_c00161{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m8_c00161{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m57_c00161{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m2c_c00161{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m5b_c00161{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m39_c00161{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m3_c00161{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m16_c00161{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m4_c00161{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.ma2_c00161{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m10_c00161{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m6d_c00161{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m6a_c00161{transform:matrix(0.554267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554267,0.000000,0.000000,0.250000,0,0);}
.m52_c00161{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m78_c00161{transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);}
.m60_c00161{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m45_c00161{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m53_c00161{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m1b_c00161{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m28_c00161{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m91_c00161{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m21_c00161{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m30_c00161{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m68_c00161{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m59_c00161{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.me_c00161{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mae_c00161{transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);}
.m5d_c00161{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.m61_c00161{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m71_c00161{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m20_c00161{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m14_c00161{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.ma7_c00161{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.m35_c00161{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m40_c00161{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m3c_c00161{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m1_c00161{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m6f_c00161{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m85_c00161{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m22_c00161{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m82_c00161{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m27_c00161{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m89_c00161{transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);}
.m73_c00161{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.ma6_c00161{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m77_c00161{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);}
.m7d_c00161{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.m98_c00161{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.mac_c00161{transform:matrix(0.634615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634615,0.000000,0.000000,0.250000,0,0);}
.m24_c00161{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m34_c00161{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m5c_c00161{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.mb6_c00161{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.m90_c00161{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m95_c00161{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m7c_c00161{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m3f_c00161{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m72_c00161{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m75_c00161{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m8e_c00161{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m70_c00161{transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);}
.m87_c00161{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mb4_c00161{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m9c_c00161{transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);}
.m8b_c00161{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.mb2_c00161{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m97_c00161{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.mab_c00161{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.m96_c00161{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m44_c00161{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.maf_c00161{transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);}
.m5e_c00161{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.ma5_c00161{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.ma9_c00161{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.m8a_c00161{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m15_c00161{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m19_c00161{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m4c_c00161{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m99_c00161{transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);}
.m66_c00161{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.ma0_c00161{transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);}
.m9e_c00161{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m2f_c00161{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mad_c00161{transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);}
.ma4_c00161{transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);}
.m9b_c00161{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.maa_c00161{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m2b_c00161{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v2_c00161{vertical-align:-6.000000px;}
.v0_c00161{vertical-align:0.000000px;}
.v1_c00161{vertical-align:6.000000px;}
.ls1_c00161{letter-spacing:0.000000px;}
.ls0_c00161{letter-spacing:51.359972px;}
.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;}
}
.ws6_c00161{word-spacing:-59.314052px;}
.ws0_c00161{word-spacing:-6.178739px;}
.ws1e_c00161{word-spacing:0.000000px;}
.wsa_c00161{word-spacing:13.611988px;}
.wse_c00161{word-spacing:17.617871px;}
.ws1d_c00161{word-spacing:18.138913px;}
.wsb_c00161{word-spacing:19.620812px;}
.ws3_c00161{word-spacing:20.322608px;}
.ws12_c00161{word-spacing:21.573046px;}
.wsf_c00161{word-spacing:21.623753px;}
.ws9_c00161{word-spacing:23.728109px;}
.ws19_c00161{word-spacing:23.767013px;}
.ws1b_c00161{word-spacing:25.643046px;}
.ws4_c00161{word-spacing:28.757317px;}
.ws1c_c00161{word-spacing:28.881049px;}
.ws18_c00161{word-spacing:31.025931px;}
.ws5_c00161{word-spacing:36.326509px;}
.ws11_c00161{word-spacing:36.416446px;}
.ws15_c00161{word-spacing:36.638400px;}
.ws1a_c00161{word-spacing:39.052735px;}
.ws17_c00161{word-spacing:39.933737px;}
.ws10_c00161{word-spacing:40.994598px;}
.ws7_c00161{word-spacing:41.223200px;}
.ws16_c00161{word-spacing:43.166897px;}
.ws8_c00161{word-spacing:43.405892px;}
.ws1_c00161{word-spacing:44.144422px;}
.wsd_c00161{word-spacing:46.335774px;}
.ws2_c00161{word-spacing:47.719225px;}
.wsc_c00161{word-spacing:49.006362px;}
.ws14_c00161{word-spacing:51.676951px;}
.ws13_c00161{word-spacing:80.250880px;}
._2_c00161{margin-left:-51.359972px;}
._9_c00161{width:25.216999px;}
._7_c00161{width:27.574892px;}
._8_c00161{width:29.577833px;}
._6_c00161{width:31.682189px;}
._a_c00161{width:33.597126px;}
._5_c00161{width:46.659602px;}
._1_c00161{width:52.098502px;}
._3_c00161{width:53.542665px;}
._0_c00161{width:55.673305px;}
._4_c00161{width:56.960442px;}
.fc0_c00161{color:transparent;}
.fs6_c00161{font-size:3.420000px;}
.fs9_c00161{font-size:11.880000px;}
.fs8_c00161{font-size:13.620000px;}
.fs5_c00161{font-size:18.720000px;}
.fs1_c00161{font-size:20.400000px;}
.fs0_c00161{font-size:25.500000px;}
.fs3_c00161{font-size:28.920000px;}
.fs4_c00161{font-size:32.340000px;}
.fs2_c00161{font-size:35.700000px;}
.fs7_c00161{font-size:39.120000px;}
.y0_c00161{bottom:0.000000px;}
.y3d_c00161{bottom:253.680000px;}
.y43_c00161{bottom:253.905000px;}
.y3e_c00161{bottom:254.745000px;}
.y42_c00161{bottom:256.245000px;}
.y3f_c00161{bottom:256.905000px;}
.y41_c00161{bottom:257.325000px;}
.y40_c00161{bottom:258.405000px;}
.y3b_c00161{bottom:274.245000px;}
.y3a_c00161{bottom:275.325000px;}
.y39_c00161{bottom:276.405000px;}
.y3c_c00161{bottom:276.630000px;}
.y38_c00161{bottom:277.470000px;}
.y33_c00161{bottom:293.745000px;}
.y35_c00161{bottom:295.905000px;}
.y34_c00161{bottom:296.130000px;}
.y36_c00161{bottom:296.970000px;}
.y37_c00161{bottom:297.405000px;}
.y31_c00161{bottom:314.745000px;}
.y30_c00161{bottom:315.405000px;}
.y32_c00161{bottom:316.905000px;}
.y2f_c00161{bottom:333.405000px;}
.y2a_c00161{bottom:334.245000px;}
.y2c_c00161{bottom:334.680000px;}
.y2e_c00161{bottom:335.745000px;}
.y29_c00161{bottom:336.405000px;}
.y2b_c00161{bottom:336.630000px;}
.y2d_c00161{bottom:337.905000px;}
.y24_c00161{bottom:353.745000px;}
.y25_c00161{bottom:354.630000px;}
.y26_c00161{bottom:355.245000px;}
.y23_c00161{bottom:355.905000px;}
.y27_c00161{bottom:356.130000px;}
.y28_c00161{bottom:357.405000px;}
.y1d_c00161{bottom:373.245000px;}
.y1e_c00161{bottom:373.680000px;}
.y21_c00161{bottom:374.325000px;}
.y1c_c00161{bottom:375.405000px;}
.y1f_c00161{bottom:375.825000px;}
.y22_c00161{bottom:376.470000px;}
.y20_c00161{bottom:376.905000px;}
.y19_c00161{bottom:394.245000px;}
.y16_c00161{bottom:394.905000px;}
.y1a_c00161{bottom:395.130000px;}
.y1b_c00161{bottom:395.970000px;}
.y18_c00161{bottom:396.405000px;}
.y17_c00161{bottom:396.420000px;}
.yc8_c00161{bottom:423.630000px;}
.yc7_c00161{bottom:424.695000px;}
.yc5_c00161{bottom:425.130000px;}
.yc6_c00161{bottom:426.195000px;}
.yc2_c00161{bottom:436.050000px;}
.yc4_c00161{bottom:437.130000px;}
.yc3_c00161{bottom:438.195000px;}
.ybf_c00161{bottom:438.630000px;}
.yc0_c00161{bottom:439.275000px;}
.ybe_c00161{bottom:439.695000px;}
.yc1_c00161{bottom:441.420000px;}
.yb8_c00161{bottom:451.695000px;}
.yb9_c00161{bottom:452.130000px;}
.ybd_c00161{bottom:453.195000px;}
.yba_c00161{bottom:454.275000px;}
.ybb_c00161{bottom:454.920000px;}
.ybc_c00161{bottom:455.970000px;}
.yb7_c00161{bottom:465.630000px;}
.yb4_c00161{bottom:466.050000px;}
.yb6_c00161{bottom:466.695000px;}
.yb5_c00161{bottom:467.130000px;}
.yb3_c00161{bottom:467.775000px;}
.yb2_c00161{bottom:468.195000px;}
.yb1_c00161{bottom:479.130000px;}
.yb0_c00161{bottom:480.195000px;}
.yaf_c00161{bottom:481.275000px;}
.yae_c00161{bottom:481.695000px;}
.yac_c00161{bottom:492.630000px;}
.yad_c00161{bottom:493.695000px;}
.ya9_c00161{bottom:494.130000px;}
.yab_c00161{bottom:495.195000px;}
.yaa_c00161{bottom:496.695000px;}
.ya7_c00161{bottom:506.130000px;}
.ya8_c00161{bottom:507.195000px;}
.ya6_c00161{bottom:507.630000px;}
.ya5_c00161{bottom:508.695000px;}
.ya3_c00161{bottom:509.130000px;}
.ya4_c00161{bottom:510.195000px;}
.ya2_c00161{bottom:521.130000px;}
.ya1_c00161{bottom:522.195000px;}
.y9f_c00161{bottom:522.630000px;}
.ya0_c00161{bottom:523.695000px;}
.y9e_c00161{bottom:535.695000px;}
.y9c_c00161{bottom:536.130000px;}
.y9d_c00161{bottom:537.195000px;}
.y9b_c00161{bottom:549.195000px;}
.y9a_c00161{bottom:549.630000px;}
.y98_c00161{bottom:550.695000px;}
.y99_c00161{bottom:552.195000px;}
.y97_c00161{bottom:562.695000px;}
.y95_c00161{bottom:563.130000px;}
.y94_c00161{bottom:564.195000px;}
.y96_c00161{bottom:564.420000px;}
.y92_c00161{bottom:564.630000px;}
.y93_c00161{bottom:565.695000px;}
.y90_c00161{bottom:576.195000px;}
.y91_c00161{bottom:576.630000px;}
.y8e_c00161{bottom:577.695000px;}
.y8d_c00161{bottom:578.130000px;}
.y8f_c00161{bottom:579.195000px;}
.y8c_c00161{bottom:590.130000px;}
.y8b_c00161{bottom:591.195000px;}
.y8a_c00161{bottom:591.630000px;}
.y89_c00161{bottom:592.695000px;}
.y88_c00161{bottom:603.630000px;}
.y86_c00161{bottom:604.695000px;}
.y85_c00161{bottom:605.130000px;}
.y87_c00161{bottom:606.195000px;}
.y84_c00161{bottom:617.130000px;}
.y82_c00161{bottom:618.195000px;}
.y81_c00161{bottom:618.630000px;}
.y83_c00161{bottom:619.695000px;}
.y7f_c00161{bottom:632.130000px;}
.y80_c00161{bottom:633.195000px;}
.y7e_c00161{bottom:646.695000px;}
.y7c_c00161{bottom:660.195000px;}
.y7d_c00161{bottom:660.630000px;}
.y7b_c00161{bottom:661.695000px;}
.y7a_c00161{bottom:673.695000px;}
.y78_c00161{bottom:674.130000px;}
.y79_c00161{bottom:675.195000px;}
.y77_c00161{bottom:687.195000px;}
.y76_c00161{bottom:688.695000px;}
.y75_c00161{bottom:700.695000px;}
.y74_c00161{bottom:701.130000px;}
.y73_c00161{bottom:702.195000px;}
.y72_c00161{bottom:714.630000px;}
.y71_c00161{bottom:715.695000px;}
.y6f_c00161{bottom:728.130000px;}
.y70_c00161{bottom:729.195000px;}
.y6e_c00161{bottom:729.630000px;}
.y6d_c00161{bottom:743.130000px;}
.y6c_c00161{bottom:744.195000px;}
.y6b_c00161{bottom:756.630000px;}
.y6a_c00161{bottom:757.695000px;}
.y69_c00161{bottom:770.130000px;}
.y68_c00161{bottom:771.195000px;}
.y67_c00161{bottom:771.630000px;}
.y66_c00161{bottom:772.695000px;}
.y65_c00161{bottom:783.195000px;}
.y64_c00161{bottom:784.695000px;}
.y63_c00161{bottom:785.130000px;}
.y62_c00161{bottom:786.195000px;}
.y61_c00161{bottom:797.130000px;}
.y60_c00161{bottom:798.195000px;}
.y5f_c00161{bottom:798.630000px;}
.y5e_c00161{bottom:799.695000px;}
.y5d_c00161{bottom:810.630000px;}
.y5b_c00161{bottom:811.695000px;}
.y5a_c00161{bottom:812.130000px;}
.y5c_c00161{bottom:813.195000px;}
.y58_c00161{bottom:825.630000px;}
.y59_c00161{bottom:826.695000px;}
.y57_c00161{bottom:827.130000px;}
.y56_c00161{bottom:839.130000px;}
.y55_c00161{bottom:840.195000px;}
.y54_c00161{bottom:841.695000px;}
.y53_c00161{bottom:859.695000px;}
.y51_c00161{bottom:870.630000px;}
.y52_c00161{bottom:871.695000px;}
.y4f_c00161{bottom:872.130000px;}
.y50_c00161{bottom:873.195000px;}
.y4e_c00161{bottom:885.195000px;}
.y4d_c00161{bottom:888.195000px;}
.y4b_c00161{bottom:906.825000px;}
.y4c_c00161{bottom:910.050000px;}
.y48_c00161{bottom:921.405000px;}
.y4a_c00161{bottom:922.905000px;}
.y46_c00161{bottom:923.550000px;}
.y47_c00161{bottom:923.970000px;}
.y49_c00161{bottom:925.050000px;}
.y45_c00161{bottom:946.050000px;}
.y44_c00161{bottom:949.050000px;}
.y15_c00161{bottom:982.905000px;}
.y14_c00161{bottom:985.905000px;}
.y11_c00161{bottom:1003.245000px;}
.y13_c00161{bottom:1004.130000px;}
.y10_c00161{bottom:1004.970000px;}
.yf_c00161{bottom:1005.405000px;}
.y12_c00161{bottom:1006.470000px;}
.yb_c00161{bottom:1021.245000px;}
.yc_c00161{bottom:1023.405000px;}
.ya_c00161{bottom:1023.630000px;}
.yd_c00161{bottom:1024.470000px;}
.ye_c00161{bottom:1024.905000px;}
.y9_c00161{bottom:1040.745000px;}
.y8_c00161{bottom:1043.130000px;}
.y7_c00161{bottom:1043.325000px;}
.y6_c00161{bottom:1044.405000px;}
.y5_c00161{bottom:1060.905000px;}
.y3_c00161{bottom:1061.745000px;}
.y4_c00161{bottom:1063.905000px;}
.y1_c00161{bottom:1100.970000px;}
.y2_c00161{bottom:1102.050000px;}
.h7_c00161{height:4.206533px;}
.hc_c00161{height:14.612168px;}
.ha_c00161{height:16.752334px;}
.hb_c00161{height:22.752334px;}
.h6_c00161{height:23.025234px;}
.h2_c00161{height:25.091602px;}
.h1_c00161{height:31.364502px;}
.h4_c00161{height:35.571035px;}
.h5_c00161{height:39.777568px;}
.h9_c00161{height:41.571035px;}
.h3_c00161{height:43.910303px;}
.h8_c00161{height:48.116836px;}
.h0_c00161{height:1335.000000px;}
.w0_c00161{width:880.500000px;}
.x0_c00161{left:0.000000px;}
.x3b_c00161{left:150.420000px;}
.x2e_c00161{left:153.000000px;}
.x3_c00161{left:154.500000px;}
.x1_c00161{left:156.420000px;}
.x31_c00161{left:165.645000px;}
.x24_c00161{left:169.500000px;}
.x2f_c00161{left:172.500000px;}
.x87_c00161{left:175.500000px;}
.x3c_c00161{left:178.500000px;}
.x1d_c00161{left:180.420000px;}
.xb0_c00161{left:181.500000px;}
.xa3_c00161{left:183.420000px;}
.x67_c00161{left:186.000000px;}
.x71_c00161{left:187.500000px;}
.x10_c00161{left:192.420000px;}
.x9a_c00161{left:196.920000px;}
.x25_c00161{left:202.080000px;}
.xa9_c00161{left:209.580000px;}
.x72_c00161{left:211.500000px;}
.xac_c00161{left:214.500000px;}
.x30_c00161{left:217.920000px;}
.x47_c00161{left:219.420000px;}
.x11_c00161{left:220.920000px;}
.x68_c00161{left:223.920000px;}
.x4_c00161{left:225.420000px;}
.x7d_c00161{left:226.500000px;}
.xab_c00161{left:228.000000px;}
.x52_c00161{left:231.420000px;}
.xa7_c00161{left:232.500000px;}
.x3d_c00161{left:234.000000px;}
.x32_c00161{left:237.000000px;}
.x73_c00161{left:239.580000px;}
.xa5_c00161{left:241.080000px;}
.x48_c00161{left:249.000000px;}
.x69_c00161{left:250.500000px;}
.x12_c00161{left:255.000000px;}
.x33_c00161{left:257.580000px;}
.x74_c00161{left:259.080000px;}
.x5_c00161{left:262.920000px;}
.x1e_c00161{left:265.920000px;}
.xb3_c00161{left:268.500000px;}
.x53_c00161{left:271.500000px;}
.xa8_c00161{left:273.000000px;}
.xb2_c00161{left:277.920000px;}
.x6a_c00161{left:280.920000px;}
.x3e_c00161{left:291.420000px;}
.x49_c00161{left:292.500000px;}
.x1f_c00161{left:294.000000px;}
.x26_c00161{left:295.500000px;}
.x6_c00161{left:303.000000px;}
.x13_c00161{left:304.500000px;}
.x54_c00161{left:310.500000px;}
.x5e_c00161{left:312.420000px;}
.x34_c00161{left:313.500000px;}
.x6b_c00161{left:314.580000px;}
.x7e_c00161{left:323.580000px;}
.x7_c00161{left:325.500000px;}
.x93_c00161{left:328.500000px;}
.x75_c00161{left:330.420000px;}
.x9b_c00161{left:331.500000px;}
.x27_c00161{left:333.000000px;}
.x6c_c00161{left:334.920000px;}
.xaf_c00161{left:336.000000px;}
.x14_c00161{left:337.500000px;}
.x97_c00161{left:340.500000px;}
.x7f_c00161{left:345.420000px;}
.x20_c00161{left:349.920000px;}
.x4a_c00161{left:351.000000px;}
.x3f_c00161{left:360.000000px;}
.x6d_c00161{left:361.080000px;}
.x8e_c00161{left:362.580000px;}
.x8_c00161{left:366.000000px;}
.x94_c00161{left:369.420000px;}
.x4b_c00161{left:370.500000px;}
.xa6_c00161{left:372.000000px;}
.x90_c00161{left:373.500000px;}
.x15_c00161{left:375.000000px;}
.xb1_c00161{left:376.500000px;}
.x5f_c00161{left:378.000000px;}
.x55_c00161{left:379.500000px;}
.x4c_c00161{left:384.000000px;}
.x21_c00161{left:387.000000px;}
.x88_c00161{left:388.080000px;}
.x16_c00161{left:391.080000px;}
.x56_c00161{left:393.420000px;}
.x80_c00161{left:397.500000px;}
.x2_c00161{left:402.000000px;}
.x22_c00161{left:403.500000px;}
.x89_c00161{left:405.000000px;}
.x76_c00161{left:406.080000px;}
.x95_c00161{left:409.500000px;}
.x60_c00161{left:411.000000px;}
.x6e_c00161{left:412.920000px;}
.x85_c00161{left:414.000000px;}
.x9_c00161{left:418.500000px;}
.x40_c00161{left:424.500000px;}
.x8a_c00161{left:430.500000px;}
.x57_c00161{left:432.420000px;}
.x61_c00161{left:433.500000px;}
.x28_c00161{left:436.080000px;}
.x35_c00161{left:441.000000px;}
.x41_c00161{left:444.000000px;}
.x4d_c00161{left:445.500000px;}
.x17_c00161{left:447.000000px;}
.xa_c00161{left:450.000000px;}
.x6f_c00161{left:453.000000px;}
.x99_c00161{left:454.500000px;}
.x29_c00161{left:456.000000px;}
.x86_c00161{left:459.855000px;}
.x23_c00161{left:462.000000px;}
.x8f_c00161{left:463.500000px;}
.x81_c00161{left:466.500000px;}
.x58_c00161{left:469.500000px;}
.x70_c00161{left:475.500000px;}
.x77_c00161{left:479.580000px;}
.x18_c00161{left:483.000000px;}
.x96_c00161{left:484.500000px;}
.x4e_c00161{left:486.420000px;}
.x9c_c00161{left:489.000000px;}
.x62_c00161{left:490.500000px;}
.x91_c00161{left:495.000000px;}
.x8b_c00161{left:496.920000px;}
.x19_c00161{left:498.000000px;}
.xb_c00161{left:501.000000px;}
.x36_c00161{left:502.080000px;}
.x59_c00161{left:510.000000px;}
.x8c_c00161{left:513.000000px;}
.x42_c00161{left:519.420000px;}
.x78_c00161{left:527.775000px;}
.x9d_c00161{left:529.500000px;}
.x92_c00161{left:531.000000px;}
.x63_c00161{left:535.920000px;}
.x98_c00161{left:538.500000px;}
.x82_c00161{left:540.000000px;}
.x5a_c00161{left:543.000000px;}
.xc_c00161{left:544.500000px;}
.x2a_c00161{left:558.000000px;}
.x1a_c00161{left:559.500000px;}
.x79_c00161{left:561.000000px;}
.x8d_c00161{left:565.080000px;}
.x4f_c00161{left:568.080000px;}
.xa4_c00161{left:570.000000px;}
.x43_c00161{left:571.080000px;}
.x64_c00161{left:573.420000px;}
.x9f_c00161{left:576.000000px;}
.x37_c00161{left:577.080000px;}
.x44_c00161{left:592.080000px;}
.x2b_c00161{left:596.580000px;}
.x7a_c00161{left:598.920000px;}
.x50_c00161{left:603.000000px;}
.x83_c00161{left:604.080000px;}
.x5b_c00161{left:606.000000px;}
.x9e_c00161{left:612.000000px;}
.xd_c00161{left:613.500000px;}
.xa0_c00161{left:615.000000px;}
.xad_c00161{left:616.500000px;}
.x7b_c00161{left:625.500000px;}
.x38_c00161{left:626.775000px;}
.xe_c00161{left:630.000000px;}
.x1b_c00161{left:636.420000px;}
.x65_c00161{left:640.920000px;}
.x5c_c00161{left:643.080000px;}
.x45_c00161{left:648.000000px;}
.x51_c00161{left:652.500000px;}
.xaa_c00161{left:654.420000px;}
.xa1_c00161{left:657.000000px;}
.x39_c00161{left:658.500000px;}
.x1c_c00161{left:664.500000px;}
.x2c_c00161{left:667.500000px;}
.xf_c00161{left:688.920000px;}
.x7c_c00161{left:693.000000px;}
.x2d_c00161{left:694.920000px;}
.xa2_c00161{left:697.500000px;}
.xae_c00161{left:699.000000px;}
.x3a_c00161{left:702.420000px;}
.x5d_c00161{left:704.580000px;}
.x66_c00161{left:706.080000px;}
.x84_c00161{left:712.500000px;}
.x46_c00161{left:715.080000px;}
@media print{
.v2_c00161{vertical-align:-5.333333pt;}
.v0_c00161{vertical-align:0.000000pt;}
.v1_c00161{vertical-align:5.333333pt;}
.ls1_c00161{letter-spacing:0.000000pt;}
.ls0_c00161{letter-spacing:45.653309pt;}
.ws6_c00161{word-spacing:-52.723602pt;}
.ws0_c00161{word-spacing:-5.492213pt;}
.ws1e_c00161{word-spacing:0.000000pt;}
.wsa_c00161{word-spacing:12.099545pt;}
.wse_c00161{word-spacing:15.660329pt;}
.ws1d_c00161{word-spacing:16.123479pt;}
.wsb_c00161{word-spacing:17.440722pt;}
.ws3_c00161{word-spacing:18.064540pt;}
.ws12_c00161{word-spacing:19.176041pt;}
.wsf_c00161{word-spacing:19.221114pt;}
.ws9_c00161{word-spacing:21.091652pt;}
.ws19_c00161{word-spacing:21.126233pt;}
.ws1b_c00161{word-spacing:22.793818pt;}
.ws4_c00161{word-spacing:25.562060pt;}
.ws1c_c00161{word-spacing:25.672044pt;}
.ws18_c00161{word-spacing:27.578605pt;}
.ws5_c00161{word-spacing:32.290231pt;}
.ws11_c00161{word-spacing:32.370175pt;}
.ws15_c00161{word-spacing:32.567467pt;}
.ws1a_c00161{word-spacing:34.713542pt;}
.ws17_c00161{word-spacing:35.496655pt;}
.ws10_c00161{word-spacing:36.439642pt;}
.ws7_c00161{word-spacing:36.642844pt;}
.ws16_c00161{word-spacing:38.370575pt;}
.ws8_c00161{word-spacing:38.583015pt;}
.ws1_c00161{word-spacing:39.239486pt;}
.wsd_c00161{word-spacing:41.187355pt;}
.ws2_c00161{word-spacing:42.417089pt;}
.wsc_c00161{word-spacing:43.561211pt;}
.ws14_c00161{word-spacing:45.935067pt;}
.ws13_c00161{word-spacing:71.334116pt;}
._2_c00161{margin-left:-45.653309pt;}
._9_c00161{width:22.415110pt;}
._7_c00161{width:24.511015pt;}
._8_c00161{width:26.291407pt;}
._6_c00161{width:28.161946pt;}
._a_c00161{width:29.864112pt;}
._5_c00161{width:41.475202pt;}
._1_c00161{width:46.309779pt;}
._3_c00161{width:47.593480pt;}
._0_c00161{width:49.487382pt;}
._4_c00161{width:50.631504pt;}
.fs6_c00161{font-size:3.040000pt;}
.fs9_c00161{font-size:10.560000pt;}
.fs8_c00161{font-size:12.106667pt;}
.fs5_c00161{font-size:16.640000pt;}
.fs1_c00161{font-size:18.133333pt;}
.fs0_c00161{font-size:22.666667pt;}
.fs3_c00161{font-size:25.706667pt;}
.fs4_c00161{font-size:28.746667pt;}
.fs2_c00161{font-size:31.733333pt;}
.fs7_c00161{font-size:34.773333pt;}
.y0_c00161{bottom:0.000000pt;}
.y3d_c00161{bottom:225.493333pt;}
.y43_c00161{bottom:225.693333pt;}
.y3e_c00161{bottom:226.440000pt;}
.y42_c00161{bottom:227.773333pt;}
.y3f_c00161{bottom:228.360000pt;}
.y41_c00161{bottom:228.733333pt;}
.y40_c00161{bottom:229.693333pt;}
.y3b_c00161{bottom:243.773333pt;}
.y3a_c00161{bottom:244.733333pt;}
.y39_c00161{bottom:245.693333pt;}
.y3c_c00161{bottom:245.893333pt;}
.y38_c00161{bottom:246.640000pt;}
.y33_c00161{bottom:261.106667pt;}
.y35_c00161{bottom:263.026667pt;}
.y34_c00161{bottom:263.226667pt;}
.y36_c00161{bottom:263.973333pt;}
.y37_c00161{bottom:264.360000pt;}
.y31_c00161{bottom:279.773333pt;}
.y30_c00161{bottom:280.360000pt;}
.y32_c00161{bottom:281.693333pt;}
.y2f_c00161{bottom:296.360000pt;}
.y2a_c00161{bottom:297.106667pt;}
.y2c_c00161{bottom:297.493333pt;}
.y2e_c00161{bottom:298.440000pt;}
.y29_c00161{bottom:299.026667pt;}
.y2b_c00161{bottom:299.226667pt;}
.y2d_c00161{bottom:300.360000pt;}
.y24_c00161{bottom:314.440000pt;}
.y25_c00161{bottom:315.226667pt;}
.y26_c00161{bottom:315.773333pt;}
.y23_c00161{bottom:316.360000pt;}
.y27_c00161{bottom:316.560000pt;}
.y28_c00161{bottom:317.693333pt;}
.y1d_c00161{bottom:331.773333pt;}
.y1e_c00161{bottom:332.160000pt;}
.y21_c00161{bottom:332.733333pt;}
.y1c_c00161{bottom:333.693333pt;}
.y1f_c00161{bottom:334.066667pt;}
.y22_c00161{bottom:334.640000pt;}
.y20_c00161{bottom:335.026667pt;}
.y19_c00161{bottom:350.440000pt;}
.y16_c00161{bottom:351.026667pt;}
.y1a_c00161{bottom:351.226667pt;}
.y1b_c00161{bottom:351.973333pt;}
.y18_c00161{bottom:352.360000pt;}
.y17_c00161{bottom:352.373333pt;}
.yc8_c00161{bottom:376.560000pt;}
.yc7_c00161{bottom:377.506667pt;}
.yc5_c00161{bottom:377.893333pt;}
.yc6_c00161{bottom:378.840000pt;}
.yc2_c00161{bottom:387.600000pt;}
.yc4_c00161{bottom:388.560000pt;}
.yc3_c00161{bottom:389.506667pt;}
.ybf_c00161{bottom:389.893333pt;}
.yc0_c00161{bottom:390.466667pt;}
.ybe_c00161{bottom:390.840000pt;}
.yc1_c00161{bottom:392.373333pt;}
.yb8_c00161{bottom:401.506667pt;}
.yb9_c00161{bottom:401.893333pt;}
.ybd_c00161{bottom:402.840000pt;}
.yba_c00161{bottom:403.800000pt;}
.ybb_c00161{bottom:404.373333pt;}
.ybc_c00161{bottom:405.306667pt;}
.yb7_c00161{bottom:413.893333pt;}
.yb4_c00161{bottom:414.266667pt;}
.yb6_c00161{bottom:414.840000pt;}
.yb5_c00161{bottom:415.226667pt;}
.yb3_c00161{bottom:415.800000pt;}
.yb2_c00161{bottom:416.173333pt;}
.yb1_c00161{bottom:425.893333pt;}
.yb0_c00161{bottom:426.840000pt;}
.yaf_c00161{bottom:427.800000pt;}
.yae_c00161{bottom:428.173333pt;}
.yac_c00161{bottom:437.893333pt;}
.yad_c00161{bottom:438.840000pt;}
.ya9_c00161{bottom:439.226667pt;}
.yab_c00161{bottom:440.173333pt;}
.yaa_c00161{bottom:441.506667pt;}
.ya7_c00161{bottom:449.893333pt;}
.ya8_c00161{bottom:450.840000pt;}
.ya6_c00161{bottom:451.226667pt;}
.ya5_c00161{bottom:452.173333pt;}
.ya3_c00161{bottom:452.560000pt;}
.ya4_c00161{bottom:453.506667pt;}
.ya2_c00161{bottom:463.226667pt;}
.ya1_c00161{bottom:464.173333pt;}
.y9f_c00161{bottom:464.560000pt;}
.ya0_c00161{bottom:465.506667pt;}
.y9e_c00161{bottom:476.173333pt;}
.y9c_c00161{bottom:476.560000pt;}
.y9d_c00161{bottom:477.506667pt;}
.y9b_c00161{bottom:488.173333pt;}
.y9a_c00161{bottom:488.560000pt;}
.y98_c00161{bottom:489.506667pt;}
.y99_c00161{bottom:490.840000pt;}
.y97_c00161{bottom:500.173333pt;}
.y95_c00161{bottom:500.560000pt;}
.y94_c00161{bottom:501.506667pt;}
.y96_c00161{bottom:501.706667pt;}
.y92_c00161{bottom:501.893333pt;}
.y93_c00161{bottom:502.840000pt;}
.y90_c00161{bottom:512.173333pt;}
.y91_c00161{bottom:512.560000pt;}
.y8e_c00161{bottom:513.506667pt;}
.y8d_c00161{bottom:513.893333pt;}
.y8f_c00161{bottom:514.840000pt;}
.y8c_c00161{bottom:524.560000pt;}
.y8b_c00161{bottom:525.506667pt;}
.y8a_c00161{bottom:525.893333pt;}
.y89_c00161{bottom:526.840000pt;}
.y88_c00161{bottom:536.560000pt;}
.y86_c00161{bottom:537.506667pt;}
.y85_c00161{bottom:537.893333pt;}
.y87_c00161{bottom:538.840000pt;}
.y84_c00161{bottom:548.560000pt;}
.y82_c00161{bottom:549.506667pt;}
.y81_c00161{bottom:549.893333pt;}
.y83_c00161{bottom:550.840000pt;}
.y7f_c00161{bottom:561.893333pt;}
.y80_c00161{bottom:562.840000pt;}
.y7e_c00161{bottom:574.840000pt;}
.y7c_c00161{bottom:586.840000pt;}
.y7d_c00161{bottom:587.226667pt;}
.y7b_c00161{bottom:588.173333pt;}
.y7a_c00161{bottom:598.840000pt;}
.y78_c00161{bottom:599.226667pt;}
.y79_c00161{bottom:600.173333pt;}
.y77_c00161{bottom:610.840000pt;}
.y76_c00161{bottom:612.173333pt;}
.y75_c00161{bottom:622.840000pt;}
.y74_c00161{bottom:623.226667pt;}
.y73_c00161{bottom:624.173333pt;}
.y72_c00161{bottom:635.226667pt;}
.y71_c00161{bottom:636.173333pt;}
.y6f_c00161{bottom:647.226667pt;}
.y70_c00161{bottom:648.173333pt;}
.y6e_c00161{bottom:648.560000pt;}
.y6d_c00161{bottom:660.560000pt;}
.y6c_c00161{bottom:661.506667pt;}
.y6b_c00161{bottom:672.560000pt;}
.y6a_c00161{bottom:673.506667pt;}
.y69_c00161{bottom:684.560000pt;}
.y68_c00161{bottom:685.506667pt;}
.y67_c00161{bottom:685.893333pt;}
.y66_c00161{bottom:686.840000pt;}
.y65_c00161{bottom:696.173333pt;}
.y64_c00161{bottom:697.506667pt;}
.y63_c00161{bottom:697.893333pt;}
.y62_c00161{bottom:698.840000pt;}
.y61_c00161{bottom:708.560000pt;}
.y60_c00161{bottom:709.506667pt;}
.y5f_c00161{bottom:709.893333pt;}
.y5e_c00161{bottom:710.840000pt;}
.y5d_c00161{bottom:720.560000pt;}
.y5b_c00161{bottom:721.506667pt;}
.y5a_c00161{bottom:721.893333pt;}
.y5c_c00161{bottom:722.840000pt;}
.y58_c00161{bottom:733.893333pt;}
.y59_c00161{bottom:734.840000pt;}
.y57_c00161{bottom:735.226667pt;}
.y56_c00161{bottom:745.893333pt;}
.y55_c00161{bottom:746.840000pt;}
.y54_c00161{bottom:748.173333pt;}
.y53_c00161{bottom:764.173333pt;}
.y51_c00161{bottom:773.893333pt;}
.y52_c00161{bottom:774.840000pt;}
.y4f_c00161{bottom:775.226667pt;}
.y50_c00161{bottom:776.173333pt;}
.y4e_c00161{bottom:786.840000pt;}
.y4d_c00161{bottom:789.506667pt;}
.y4b_c00161{bottom:806.066667pt;}
.y4c_c00161{bottom:808.933333pt;}
.y48_c00161{bottom:819.026667pt;}
.y4a_c00161{bottom:820.360000pt;}
.y46_c00161{bottom:820.933333pt;}
.y47_c00161{bottom:821.306667pt;}
.y49_c00161{bottom:822.266667pt;}
.y45_c00161{bottom:840.933333pt;}
.y44_c00161{bottom:843.600000pt;}
.y15_c00161{bottom:873.693333pt;}
.y14_c00161{bottom:876.360000pt;}
.y11_c00161{bottom:891.773333pt;}
.y13_c00161{bottom:892.560000pt;}
.y10_c00161{bottom:893.306667pt;}
.yf_c00161{bottom:893.693333pt;}
.y12_c00161{bottom:894.640000pt;}
.yb_c00161{bottom:907.773333pt;}
.yc_c00161{bottom:909.693333pt;}
.ya_c00161{bottom:909.893333pt;}
.yd_c00161{bottom:910.640000pt;}
.ye_c00161{bottom:911.026667pt;}
.y9_c00161{bottom:925.106667pt;}
.y8_c00161{bottom:927.226667pt;}
.y7_c00161{bottom:927.400000pt;}
.y6_c00161{bottom:928.360000pt;}
.y5_c00161{bottom:943.026667pt;}
.y3_c00161{bottom:943.773333pt;}
.y4_c00161{bottom:945.693333pt;}
.y1_c00161{bottom:978.640000pt;}
.y2_c00161{bottom:979.600000pt;}
.h7_c00161{height:3.739141pt;}
.hc_c00161{height:12.988594pt;}
.ha_c00161{height:14.890964pt;}
.hb_c00161{height:20.224297pt;}
.h6_c00161{height:20.466875pt;}
.h2_c00161{height:22.303646pt;}
.h1_c00161{height:27.879557pt;}
.h4_c00161{height:31.618698pt;}
.h5_c00161{height:35.357839pt;}
.h9_c00161{height:36.952031pt;}
.h3_c00161{height:39.031380pt;}
.h8_c00161{height:42.770521pt;}
.h0_c00161{height:1186.666667pt;}
.w0_c00161{width:782.666667pt;}
.x0_c00161{left:0.000000pt;}
.x3b_c00161{left:133.706667pt;}
.x2e_c00161{left:136.000000pt;}
.x3_c00161{left:137.333333pt;}
.x1_c00161{left:139.040000pt;}
.x31_c00161{left:147.240000pt;}
.x24_c00161{left:150.666667pt;}
.x2f_c00161{left:153.333333pt;}
.x87_c00161{left:156.000000pt;}
.x3c_c00161{left:158.666667pt;}
.x1d_c00161{left:160.373333pt;}
.xb0_c00161{left:161.333333pt;}
.xa3_c00161{left:163.040000pt;}
.x67_c00161{left:165.333333pt;}
.x71_c00161{left:166.666667pt;}
.x10_c00161{left:171.040000pt;}
.x9a_c00161{left:175.040000pt;}
.x25_c00161{left:179.626667pt;}
.xa9_c00161{left:186.293333pt;}
.x72_c00161{left:188.000000pt;}
.xac_c00161{left:190.666667pt;}
.x30_c00161{left:193.706667pt;}
.x47_c00161{left:195.040000pt;}
.x11_c00161{left:196.373333pt;}
.x68_c00161{left:199.040000pt;}
.x4_c00161{left:200.373333pt;}
.x7d_c00161{left:201.333333pt;}
.xab_c00161{left:202.666667pt;}
.x52_c00161{left:205.706667pt;}
.xa7_c00161{left:206.666667pt;}
.x3d_c00161{left:208.000000pt;}
.x32_c00161{left:210.666667pt;}
.x73_c00161{left:212.960000pt;}
.xa5_c00161{left:214.293333pt;}
.x48_c00161{left:221.333333pt;}
.x69_c00161{left:222.666667pt;}
.x12_c00161{left:226.666667pt;}
.x33_c00161{left:228.960000pt;}
.x74_c00161{left:230.293333pt;}
.x5_c00161{left:233.706667pt;}
.x1e_c00161{left:236.373333pt;}
.xb3_c00161{left:238.666667pt;}
.x53_c00161{left:241.333333pt;}
.xa8_c00161{left:242.666667pt;}
.xb2_c00161{left:247.040000pt;}
.x6a_c00161{left:249.706667pt;}
.x3e_c00161{left:259.040000pt;}
.x49_c00161{left:260.000000pt;}
.x1f_c00161{left:261.333333pt;}
.x26_c00161{left:262.666667pt;}
.x6_c00161{left:269.333333pt;}
.x13_c00161{left:270.666667pt;}
.x54_c00161{left:276.000000pt;}
.x5e_c00161{left:277.706667pt;}
.x34_c00161{left:278.666667pt;}
.x6b_c00161{left:279.626667pt;}
.x7e_c00161{left:287.626667pt;}
.x7_c00161{left:289.333333pt;}
.x93_c00161{left:292.000000pt;}
.x75_c00161{left:293.706667pt;}
.x9b_c00161{left:294.666667pt;}
.x27_c00161{left:296.000000pt;}
.x6c_c00161{left:297.706667pt;}
.xaf_c00161{left:298.666667pt;}
.x14_c00161{left:300.000000pt;}
.x97_c00161{left:302.666667pt;}
.x7f_c00161{left:307.040000pt;}
.x20_c00161{left:311.040000pt;}
.x4a_c00161{left:312.000000pt;}
.x3f_c00161{left:320.000000pt;}
.x6d_c00161{left:320.960000pt;}
.x8e_c00161{left:322.293333pt;}
.x8_c00161{left:325.333333pt;}
.x94_c00161{left:328.373333pt;}
.x4b_c00161{left:329.333333pt;}
.xa6_c00161{left:330.666667pt;}
.x90_c00161{left:332.000000pt;}
.x15_c00161{left:333.333333pt;}
.xb1_c00161{left:334.666667pt;}
.x5f_c00161{left:336.000000pt;}
.x55_c00161{left:337.333333pt;}
.x4c_c00161{left:341.333333pt;}
.x21_c00161{left:344.000000pt;}
.x88_c00161{left:344.960000pt;}
.x16_c00161{left:347.626667pt;}
.x56_c00161{left:349.706667pt;}
.x80_c00161{left:353.333333pt;}
.x2_c00161{left:357.333333pt;}
.x22_c00161{left:358.666667pt;}
.x89_c00161{left:360.000000pt;}
.x76_c00161{left:360.960000pt;}
.x95_c00161{left:364.000000pt;}
.x60_c00161{left:365.333333pt;}
.x6e_c00161{left:367.040000pt;}
.x85_c00161{left:368.000000pt;}
.x9_c00161{left:372.000000pt;}
.x40_c00161{left:377.333333pt;}
.x8a_c00161{left:382.666667pt;}
.x57_c00161{left:384.373333pt;}
.x61_c00161{left:385.333333pt;}
.x28_c00161{left:387.626667pt;}
.x35_c00161{left:392.000000pt;}
.x41_c00161{left:394.666667pt;}
.x4d_c00161{left:396.000000pt;}
.x17_c00161{left:397.333333pt;}
.xa_c00161{left:400.000000pt;}
.x6f_c00161{left:402.666667pt;}
.x99_c00161{left:404.000000pt;}
.x29_c00161{left:405.333333pt;}
.x86_c00161{left:408.760000pt;}
.x23_c00161{left:410.666667pt;}
.x8f_c00161{left:412.000000pt;}
.x81_c00161{left:414.666667pt;}
.x58_c00161{left:417.333333pt;}
.x70_c00161{left:422.666667pt;}
.x77_c00161{left:426.293333pt;}
.x18_c00161{left:429.333333pt;}
.x96_c00161{left:430.666667pt;}
.x4e_c00161{left:432.373333pt;}
.x9c_c00161{left:434.666667pt;}
.x62_c00161{left:436.000000pt;}
.x91_c00161{left:440.000000pt;}
.x8b_c00161{left:441.706667pt;}
.x19_c00161{left:442.666667pt;}
.xb_c00161{left:445.333333pt;}
.x36_c00161{left:446.293333pt;}
.x59_c00161{left:453.333333pt;}
.x8c_c00161{left:456.000000pt;}
.x42_c00161{left:461.706667pt;}
.x78_c00161{left:469.133333pt;}
.x9d_c00161{left:470.666667pt;}
.x92_c00161{left:472.000000pt;}
.x63_c00161{left:476.373333pt;}
.x98_c00161{left:478.666667pt;}
.x82_c00161{left:480.000000pt;}
.x5a_c00161{left:482.666667pt;}
.xc_c00161{left:484.000000pt;}
.x2a_c00161{left:496.000000pt;}
.x1a_c00161{left:497.333333pt;}
.x79_c00161{left:498.666667pt;}
.x8d_c00161{left:502.293333pt;}
.x4f_c00161{left:504.960000pt;}
.xa4_c00161{left:506.666667pt;}
.x43_c00161{left:507.626667pt;}
.x64_c00161{left:509.706667pt;}
.x9f_c00161{left:512.000000pt;}
.x37_c00161{left:512.960000pt;}
.x44_c00161{left:526.293333pt;}
.x2b_c00161{left:530.293333pt;}
.x7a_c00161{left:532.373333pt;}
.x50_c00161{left:536.000000pt;}
.x83_c00161{left:536.960000pt;}
.x5b_c00161{left:538.666667pt;}
.x9e_c00161{left:544.000000pt;}
.xd_c00161{left:545.333333pt;}
.xa0_c00161{left:546.666667pt;}
.xad_c00161{left:548.000000pt;}
.x7b_c00161{left:556.000000pt;}
.x38_c00161{left:557.133333pt;}
.xe_c00161{left:560.000000pt;}
.x1b_c00161{left:565.706667pt;}
.x65_c00161{left:569.706667pt;}
.x5c_c00161{left:571.626667pt;}
.x45_c00161{left:576.000000pt;}
.x51_c00161{left:580.000000pt;}
.xaa_c00161{left:581.706667pt;}
.xa1_c00161{left:584.000000pt;}
.x39_c00161{left:585.333333pt;}
.x1c_c00161{left:590.666667pt;}
.x2c_c00161{left:593.333333pt;}
.xf_c00161{left:612.373333pt;}
.x7c_c00161{left:616.000000pt;}
.x2d_c00161{left:617.706667pt;}
.xa2_c00161{left:620.000000pt;}
.xae_c00161{left:621.333333pt;}
.x3a_c00161{left:624.373333pt;}
.x5d_c00161{left:626.293333pt;}
.x66_c00161{left:627.626667pt;}
.x84_c00161{left:633.333333pt;}
.x46_c00161{left:635.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_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_e75c89386ec2c59692e5d6c5.woff2')format("woff");}.ff1_c00162{font-family:ff1_c00162;line-height:1.688965;font-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_c00162{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.m32_c00162{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m21_c00162{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m10_c00162{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m13_c00162{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m61_c00162{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m50_c00162{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m8c_c00162{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.ma7_c00162{transform:matrix(0.372699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372699,0.000000,0.000000,0.250000,0,0);}
.m55_c00162{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m4_c00162{transform:matrix(0.376917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376917,0.000000,0.000000,0.250000,0,0);}
.m76_c00162{transform:matrix(0.377087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377087,0.000000,0.000000,0.250000,0,0);}
.m8_c00162{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m80_c00162{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.ma9_c00162{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m31_c00162{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m9e_c00162{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m93_c00162{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.md3_c00162{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m7f_c00162{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.me6_c00162{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m81_c00162{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mb3_c00162{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m2a_c00162{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mb4_c00162{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m27_c00162{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.me0_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);}
.mad_c00162{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m9d_c00162{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m2b_c00162{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m6f_c00162{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m28_c00162{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m97_c00162{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.m8f_c00162{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m6d_c00162{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.me5_c00162{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m53_c00162{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m4e_c00162{transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);}
.mb5_c00162{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.md_c00162{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m11_c00162{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m35_c00162{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.ma5_c00162{transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);}
.m39_c00162{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m8e_c00162{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m38_c00162{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m40_c00162{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m68_c00162{transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);}
.m3f_c00162{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m24_c00162{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.mc0_c00162{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.ma_c00162{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m91_c00162{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m79_c00162{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.mcd_c00162{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m66_c00162{transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);}
.m60_c00162{transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);}
.m94_c00162{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.mcb_c00162{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m77_c00162{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m92_c00162{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m71_c00162{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m56_c00162{transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);}
.m6a_c00162{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.mc2_c00162{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m6e_c00162{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.md0_c00162{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.md8_c00162{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m82_c00162{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.ma0_c00162{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mb7_c00162{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m8b_c00162{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m2d_c00162{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.maf_c00162{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m16_c00162{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mca_c00162{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m99_c00162{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m96_c00162{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m6c_c00162{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.mae_c00162{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m67_c00162{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.mbb_c00162{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.mdb_c00162{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mc7_c00162{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mb9_c00162{transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);}
.mc8_c00162{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m62_c00162{transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);}
.m88_c00162{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.ma1_c00162{transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);}
.m7c_c00162{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.ma2_c00162{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m83_c00162{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m9c_c00162{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.me3_c00162{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.mdc_c00162{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.m5e_c00162{transform:matrix(0.476050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476050,0.000000,0.000000,0.250000,0,0);}
.m57_c00162{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m75_c00162{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m5_c00162{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.m17_c00162{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m7d_c00162{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m64_c00162{transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);}
.m3c_c00162{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m33_c00162{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m72_c00162{transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);}
.m6b_c00162{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m2_c00162{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mac_c00162{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.md2_c00162{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m4a_c00162{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m7_c00162{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m74_c00162{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m42_c00162{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m4c_c00162{transform:matrix(0.497407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497407,0.000000,0.000000,0.250000,0,0);}
.me_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);}
.mda_c00162{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mdd_c00162{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m3a_c00162{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m5f_c00162{transform:matrix(0.507563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507563,0.000000,0.000000,0.250000,0,0);}
.m69_c00162{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m52_c00162{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mde_c00162{transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);}
.m7e_c00162{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m51_c00162{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m34_c00162{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m45_c00162{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.md9_c00162{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m2e_c00162{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.md7_c00162{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m49_c00162{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mab_c00162{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m14_c00162{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m8a_c00162{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m4d_c00162{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m26_c00162{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mc5_c00162{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.me2_c00162{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mc1_c00162{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m9_c00162{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m59_c00162{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m15_c00162{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mb0_c00162{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m2f_c00162{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.mcc_c00162{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m48_c00162{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m85_c00162{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m4f_c00162{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m44_c00162{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m7b_c00162{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m3d_c00162{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m89_c00162{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m54_c00162{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mb1_c00162{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m86_c00162{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.md5_c00162{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m5b_c00162{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m70_c00162{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m3_c00162{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m2c_c00162{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m8d_c00162{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.md6_c00162{transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);}
.m4b_c00162{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m1_c00162{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.mdf_c00162{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.mba_c00162{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mb_c00162{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m29_c00162{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m7a_c00162{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mbd_c00162{transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);}
.m87_c00162{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.me4_c00162{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mbc_c00162{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.mb8_c00162{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m73_c00162{transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);}
.ma6_c00162{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m3e_c00162{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mc9_c00162{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m98_c00162{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m84_c00162{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m19_c00162{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m30_c00162{transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);}
.m36_c00162{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.mb6_c00162{transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);}
.m9b_c00162{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mcf_c00162{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m25_c00162{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.maa_c00162{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m63_c00162{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m22_c00162{transform:matrix(0.587647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587647,0.000000,0.000000,0.250000,0,0);}
.mb2_c00162{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m37_c00162{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m12_c00162{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m5d_c00162{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m5c_c00162{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m58_c00162{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.mf_c00162{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m1c_c00162{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m1f_c00162{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);}
.m1e_c00162{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m0_c00162{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m5a_c00162{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m20_c00162{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m1a_c00162{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.me1_c00162{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m3b_c00162{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.md1_c00162{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m41_c00162{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m46_c00162{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);}
.m43_c00162{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m23_c00162{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.mc3_c00162{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.ma3_c00162{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.mce_c00162{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m1d_c00162{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.ma8_c00162{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.m47_c00162{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m18_c00162{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mc4_c00162{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.mc_c00162{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mbe_c00162{transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);}
.m9f_c00162{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m9a_c00162{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m95_c00162{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.ma4_c00162{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m90_c00162{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m1b_c00162{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.md4_c00162{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mc6_c00162{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m65_c00162{transform:matrix(0.957048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.957048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.957048,0.000000,0.000000,0.250000,0,0);}
.mbf_c00162{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m78_c00162{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00162{vertical-align:0.000000px;}
.v1_c00162{vertical-align:6.000000px;}
.ls0_c00162{letter-spacing:0.000000px;}
.sc__c00162{text-shadow:none;}
.sc0_c00162{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00162{-webkit-text-stroke:0px transparent;}
.sc0_c00162{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00162{word-spacing:-8.988101px;}
.ws1_c00162{word-spacing:-4.291814px;}
.ws2_c00162{word-spacing:-3.498841px;}
.ws0_c00162{word-spacing:-1.282474px;}
.ws4_c00162{word-spacing:0.000000px;}
.fc0_c00162{color:transparent;}
.fs8_c00162{font-size:3.420000px;}
.fs7_c00162{font-size:13.620000px;}
.fs5_c00162{font-size:18.720000px;}
.fs0_c00162{font-size:20.400000px;}
.fs1_c00162{font-size:25.500000px;}
.fs2_c00162{font-size:28.920000px;}
.fs6_c00162{font-size:32.340000px;}
.fs4_c00162{font-size:35.700000px;}
.fs3_c00162{font-size:39.120000px;}
.y0_c00162{bottom:0.000000px;}
.yba_c00162{bottom:253.245000px;}
.yb8_c00162{bottom:253.905000px;}
.yb9_c00162{bottom:255.405000px;}
.yb7_c00162{bottom:272.325000px;}
.yb5_c00162{bottom:272.745000px;}
.yb6_c00162{bottom:273.405000px;}
.yb3_c00162{bottom:273.825000px;}
.yb4_c00162{bottom:274.470000px;}
.yb2_c00162{bottom:274.905000px;}
.yad_c00162{bottom:290.745000px;}
.yb1_c00162{bottom:291.825000px;}
.yaf_c00162{bottom:292.905000px;}
.yb0_c00162{bottom:293.325000px;}
.yae_c00162{bottom:294.405000px;}
.yaa_c00162{bottom:311.325000px;}
.yab_c00162{bottom:311.745000px;}
.yac_c00162{bottom:312.825000px;}
.ya9_c00162{bottom:313.470000px;}
.ya8_c00162{bottom:313.905000px;}
.ya4_c00162{bottom:331.245000px;}
.ya7_c00162{bottom:332.325000px;}
.ya6_c00162{bottom:333.405000px;}
.ya5_c00162{bottom:333.630000px;}
.ya3_c00162{bottom:349.905000px;}
.y9e_c00162{bottom:350.745000px;}
.ya2_c00162{bottom:351.825000px;}
.ya0_c00162{bottom:352.905000px;}
.y9f_c00162{bottom:353.130000px;}
.ya1_c00162{bottom:353.970000px;}
.y9d_c00162{bottom:370.245000px;}
.y9c_c00162{bottom:371.745000px;}
.y99_c00162{bottom:372.405000px;}
.y9b_c00162{bottom:372.630000px;}
.y9a_c00162{bottom:373.905000px;}
.y93_c00162{bottom:388.905000px;}
.y95_c00162{bottom:390.405000px;}
.y98_c00162{bottom:390.825000px;}
.y91_c00162{bottom:391.245000px;}
.y96_c00162{bottom:392.130000px;}
.y97_c00162{bottom:392.325000px;}
.y94_c00162{bottom:392.970000px;}
.y92_c00162{bottom:393.405000px;}
.y8f_c00162{bottom:409.470000px;}
.y8d_c00162{bottom:409.905000px;}
.y8a_c00162{bottom:410.745000px;}
.y90_c00162{bottom:411.630000px;}
.y8e_c00162{bottom:412.470000px;}
.y8c_c00162{bottom:412.905000px;}
.y8b_c00162{bottom:412.920000px;}
.y89_c00162{bottom:430.245000px;}
.y88_c00162{bottom:431.130000px;}
.y87_c00162{bottom:432.405000px;}
.y84_c00162{bottom:449.745000px;}
.y86_c00162{bottom:450.630000px;}
.y85_c00162{bottom:451.905000px;}
.y80_c00162{bottom:470.745000px;}
.y82_c00162{bottom:471.630000px;}
.y83_c00162{bottom:472.470000px;}
.y81_c00162{bottom:472.905000px;}
.y7a_c00162{bottom:487.905000px;}
.y7c_c00162{bottom:488.745000px;}
.y7b_c00162{bottom:489.825000px;}
.y79_c00162{bottom:490.905000px;}
.y7f_c00162{bottom:491.130000px;}
.y7d_c00162{bottom:491.970000px;}
.y7e_c00162{bottom:492.405000px;}
.y77_c00162{bottom:508.470000px;}
.y75_c00162{bottom:508.680000px;}
.y74_c00162{bottom:509.745000px;}
.y72_c00162{bottom:509.970000px;}
.y78_c00162{bottom:510.405000px;}
.y73_c00162{bottom:510.630000px;}
.y76_c00162{bottom:511.905000px;}
.y6f_c00162{bottom:529.245000px;}
.y71_c00162{bottom:530.130000px;}
.y6e_c00162{bottom:530.325000px;}
.y70_c00162{bottom:531.405000px;}
.y6d_c00162{bottom:547.905000px;}
.y68_c00162{bottom:548.745000px;}
.y6c_c00162{bottom:549.630000px;}
.y69_c00162{bottom:550.905000px;}
.y6b_c00162{bottom:551.130000px;}
.y6a_c00162{bottom:551.325000px;}
.y63_c00162{bottom:568.245000px;}
.y65_c00162{bottom:569.325000px;}
.y64_c00162{bottom:569.970000px;}
.y62_c00162{bottom:570.405000px;}
.y66_c00162{bottom:570.630000px;}
.y67_c00162{bottom:571.470000px;}
.y5f_c00162{bottom:587.745000px;}
.y60_c00162{bottom:589.905000px;}
.y61_c00162{bottom:590.130000px;}
.y5e_c00162{bottom:607.245000px;}
.y5b_c00162{bottom:608.745000px;}
.y58_c00162{bottom:609.405000px;}
.y5c_c00162{bottom:609.630000px;}
.y5d_c00162{bottom:610.470000px;}
.y59_c00162{bottom:610.905000px;}
.y5a_c00162{bottom:610.920000px;}
.y56_c00162{bottom:628.905000px;}
.y57_c00162{bottom:630.405000px;}
.y54_c00162{bottom:647.745000px;}
.y55_c00162{bottom:648.825000px;}
.y52_c00162{bottom:649.905000px;}
.y53_c00162{bottom:649.920000px;}
.y50_c00162{bottom:666.405000px;}
.y4d_c00162{bottom:667.245000px;}
.y51_c00162{bottom:667.905000px;}
.y4f_c00162{bottom:668.325000px;}
.y4e_c00162{bottom:670.920000px;}
.y4c_c00162{bottom:686.745000px;}
.y47_c00162{bottom:706.245000px;}
.y4b_c00162{bottom:707.325000px;}
.y49_c00162{bottom:708.405000px;}
.y4a_c00162{bottom:709.470000px;}
.y48_c00162{bottom:709.920000px;}
.y45_c00162{bottom:729.825000px;}
.y46_c00162{bottom:730.470000px;}
.y44_c00162{bottom:730.905000px;}
.y42_c00162{bottom:745.905000px;}
.y40_c00162{bottom:746.325000px;}
.y41_c00162{bottom:747.405000px;}
.y43_c00162{bottom:748.470000px;}
.y3f_c00162{bottom:764.970000px;}
.y3b_c00162{bottom:765.405000px;}
.y3e_c00162{bottom:766.470000px;}
.y3d_c00162{bottom:766.695000px;}
.y3c_c00162{bottom:767.550000px;}
.y39_c00162{bottom:788.745000px;}
.y3a_c00162{bottom:789.825000px;}
.y38_c00162{bottom:826.905000px;}
.y32_c00162{bottom:844.245000px;}
.y35_c00162{bottom:844.470000px;}
.y33_c00162{bottom:845.325000px;}
.y34_c00162{bottom:846.405000px;}
.y37_c00162{bottom:847.470000px;}
.y36_c00162{bottom:847.905000px;}
.y30_c00162{bottom:862.905000px;}
.y31_c00162{bottom:863.325000px;}
.y2f_c00162{bottom:863.745000px;}
.y2e_c00162{bottom:865.905000px;}
.y2c_c00162{bottom:885.630000px;}
.y2d_c00162{bottom:885.825000px;}
.y2b_c00162{bottom:886.905000px;}
.y29_c00162{bottom:903.825000px;}
.y2a_c00162{bottom:904.245000px;}
.y28_c00162{bottom:905.130000px;}
.y26_c00162{bottom:906.405000px;}
.y27_c00162{bottom:907.470000px;}
.y23_c00162{bottom:923.745000px;}
.y24_c00162{bottom:925.905000px;}
.y25_c00162{bottom:926.970000px;}
.y21_c00162{bottom:942.825000px;}
.y1e_c00162{bottom:943.245000px;}
.y22_c00162{bottom:944.325000px;}
.y1f_c00162{bottom:945.405000px;}
.y20_c00162{bottom:946.470000px;}
.y1c_c00162{bottom:961.905000px;}
.y1b_c00162{bottom:962.745000px;}
.y1d_c00162{bottom:964.470000px;}
.y19_c00162{bottom:964.905000px;}
.y1a_c00162{bottom:965.130000px;}
.y17_c00162{bottom:982.245000px;}
.y16_c00162{bottom:983.325000px;}
.y18_c00162{bottom:983.745000px;}
.y14_c00162{bottom:984.405000px;}
.y15_c00162{bottom:985.905000px;}
.y12_c00162{bottom:1001.745000px;}
.y13_c00162{bottom:1003.905000px;}
.y10_c00162{bottom:1004.130000px;}
.y11_c00162{bottom:1004.970000px;}
.yd_c00162{bottom:1020.825000px;}
.yb_c00162{bottom:1021.245000px;}
.yf_c00162{bottom:1022.970000px;}
.yc_c00162{bottom:1023.405000px;}
.ye_c00162{bottom:1023.630000px;}
.y9_c00162{bottom:1040.745000px;}
.y7_c00162{bottom:1040.970000px;}
.ya_c00162{bottom:1042.905000px;}
.y8_c00162{bottom:1043.130000px;}
.y4_c00162{bottom:1060.680000px;}
.y5_c00162{bottom:1060.905000px;}
.y6_c00162{bottom:1061.745000px;}
.y3_c00162{bottom:1063.905000px;}
.y2_c00162{bottom:1100.970000px;}
.y1_c00162{bottom:1102.050000px;}
.h9_c00162{height:4.206533px;}
.h8_c00162{height:16.752334px;}
.h6_c00162{height:23.025234px;}
.h1_c00162{height:25.091602px;}
.h2_c00162{height:31.364502px;}
.h3_c00162{height:35.571035px;}
.h7_c00162{height:39.777568px;}
.ha_c00162{height:41.571035px;}
.h5_c00162{height:43.910303px;}
.h4_c00162{height:48.116836px;}
.h0_c00162{height:1335.000000px;}
.w0_c00162{width:880.500000px;}
.x0_c00162{left:0.000000px;}
.x3_c00162{left:151.920000px;}
.x9d_c00162{left:153.000000px;}
.x96_c00162{left:154.080000px;}
.x11_c00162{left:166.920000px;}
.x4b_c00162{left:168.000000px;}
.x8f_c00162{left:169.080000px;}
.xb7_c00162{left:176.580000px;}
.x26_c00162{left:178.500000px;}
.xad_c00162{left:180.000000px;}
.xf8_c00162{left:181.500000px;}
.x8e_c00162{left:183.420000px;}
.xc0_c00162{left:184.500000px;}
.x4c_c00162{left:187.500000px;}
.xc_c00162{left:189.000000px;}
.x9e_c00162{left:191.580000px;}
.xae_c00162{left:193.500000px;}
.x31_c00162{left:195.000000px;}
.xef_c00162{left:196.080000px;}
.x78_c00162{left:198.855000px;}
.xd_c00162{left:201.420000px;}
.x5a_c00162{left:203.580000px;}
.xa5_c00162{left:206.580000px;}
.x62_c00162{left:208.920000px;}
.x32_c00162{left:210.000000px;}
.x45_c00162{left:211.500000px;}
.x4d_c00162{left:213.000000px;}
.x1c_c00162{left:214.080000px;}
.x3c_c00162{left:216.000000px;}
.xe4_c00162{left:217.080000px;}
.xcd_c00162{left:220.500000px;}
.x4_c00162{left:222.000000px;}
.x97_c00162{left:225.000000px;}
.xc8_c00162{left:226.080000px;}
.x46_c00162{left:229.500000px;}
.xc1_c00162{left:231.000000px;}
.x12_c00162{left:232.500000px;}
.x27_c00162{left:234.000000px;}
.x3d_c00162{left:237.420000px;}
.x6c_c00162{left:243.000000px;}
.xc9_c00162{left:244.080000px;}
.x74_c00162{left:247.500000px;}
.x90_c00162{left:249.000000px;}
.x1d_c00162{left:250.080000px;}
.xe0_c00162{left:251.580000px;}
.x9f_c00162{left:252.645000px;}
.xd1_c00162{left:256.500000px;}
.x80_c00162{left:258.000000px;}
.x86_c00162{left:261.000000px;}
.x56_c00162{left:262.080000px;}
.x33_c00162{left:264.000000px;}
.x91_c00162{left:266.580000px;}
.x5_c00162{left:268.080000px;}
.x1e_c00162{left:270.000000px;}
.xb8_c00162{left:274.920000px;}
.xd2_c00162{left:277.080000px;}
.x81_c00162{left:280.500000px;}
.xe_c00162{left:281.580000px;}
.xaf_c00162{left:283.080000px;}
.xf0_c00162{left:285.420000px;}
.xea_c00162{left:286.920000px;}
.x47_c00162{left:288.000000px;}
.x79_c00162{left:289.500000px;}
.x98_c00162{left:292.500000px;}
.x28_c00162{left:297.420000px;}
.xf_c00162{left:300.420000px;}
.x4e_c00162{left:302.580000px;}
.xe1_c00162{left:309.420000px;}
.x87_c00162{left:310.500000px;}
.x63_c00162{left:312.420000px;}
.xe5_c00162{left:316.500000px;}
.xce_c00162{left:318.420000px;}
.x57_c00162{left:320.580000px;}
.xa0_c00162{left:324.000000px;}
.xf9_c00162{left:325.080000px;}
.x5b_c00162{left:328.920000px;}
.x3e_c00162{left:331.080000px;}
.x29_c00162{left:333.000000px;}
.x10_c00162{left:334.500000px;}
.xd8_c00162{left:336.000000px;}
.xb0_c00162{left:339.000000px;}
.x92_c00162{left:340.500000px;}
.xaa_c00162{left:341.775000px;}
.x82_c00162{left:344.775000px;}
.x1f_c00162{left:346.500000px;}
.xf1_c00162{left:348.420000px;}
.x3f_c00162{left:349.500000px;}
.xc2_c00162{left:351.000000px;}
.xd3_c00162{left:352.920000px;}
.x13_c00162{left:354.000000px;}
.xe6_c00162{left:355.500000px;}
.x99_c00162{left:357.000000px;}
.xeb_c00162{left:358.500000px;}
.x88_c00162{left:361.500000px;}
.x34_c00162{left:363.000000px;}
.x6_c00162{left:364.500000px;}
.xb9_c00162{left:367.500000px;}
.xc3_c00162{left:368.580000px;}
.x4f_c00162{left:372.000000px;}
.x7a_c00162{left:373.080000px;}
.x40_c00162{left:375.000000px;}
.xab_c00162{left:376.500000px;}
.x20_c00162{left:379.500000px;}
.x83_c00162{left:385.080000px;}
.x89_c00162{left:386.580000px;}
.x48_c00162{left:388.080000px;}
.x2a_c00162{left:389.580000px;}
.x75_c00162{left:393.000000px;}
.xcf_c00162{left:396.000000px;}
.x1_c00162{left:397.500000px;}
.xec_c00162{left:399.420000px;}
.xa1_c00162{left:402.000000px;}
.x64_c00162{left:403.080000px;}
.x6d_c00162{left:405.000000px;}
.xba_c00162{left:406.500000px;}
.x58_c00162{left:407.580000px;}
.x21_c00162{left:411.000000px;}
.x84_c00162{left:412.500000px;}
.x69_c00162{left:414.000000px;}
.xd0_c00162{left:415.080000px;}
.x49_c00162{left:418.500000px;}
.x2b_c00162{left:421.920000px;}
.x35_c00162{left:424.080000px;}
.xf6_c00162{left:426.000000px;}
.x41_c00162{left:430.080000px;}
.x6e_c00162{left:432.000000px;}
.xd9_c00162{left:435.000000px;}
.x4a_c00162{left:436.500000px;}
.x59_c00162{left:438.000000px;}
.xe7_c00162{left:439.920000px;}
.x50_c00162{left:441.420000px;}
.xbb_c00162{left:444.000000px;}
.x65_c00162{left:445.500000px;}
.xed_c00162{left:447.000000px;}
.x2c_c00162{left:450.420000px;}
.x7b_c00162{left:453.645000px;}
.x36_c00162{left:455.580000px;}
.xb1_c00162{left:457.500000px;}
.x5c_c00162{left:459.420000px;}
.xf2_c00162{left:460.920000px;}
.x22_c00162{left:463.080000px;}
.xca_c00162{left:464.580000px;}
.x51_c00162{left:468.000000px;}
.xdd_c00162{left:469.500000px;}
.x14_c00162{left:471.420000px;}
.x85_c00162{left:473.775000px;}
.xc4_c00162{left:477.420000px;}
.x6f_c00162{left:479.580000px;}
.x6a_c00162{left:481.080000px;}
.x8a_c00162{left:484.920000px;}
.x7_c00162{left:487.080000px;}
.xb2_c00162{left:489.000000px;}
.xa2_c00162{left:490.500000px;}
.xda_c00162{left:492.000000px;}
.x5d_c00162{left:495.000000px;}
.x76_c00162{left:496.080000px;}
.x15_c00162{left:498.000000px;}
.x2d_c00162{left:501.420000px;}
.x93_c00162{left:502.500000px;}
.xf7_c00162{left:505.500000px;}
.xbc_c00162{left:507.000000px;}
.x70_c00162{left:508.500000px;}
.xd4_c00162{left:509.580000px;}
.x66_c00162{left:515.580000px;}
.x8_c00162{left:518.580000px;}
.x8b_c00162{left:520.500000px;}
.x52_c00162{left:522.000000px;}
.xe2_c00162{left:525.000000px;}
.x37_c00162{left:526.275000px;}
.xbd_c00162{left:527.580000px;}
.x23_c00162{left:530.580000px;}
.x7c_c00162{left:532.500000px;}
.xb3_c00162{left:533.580000px;}
.xf3_c00162{left:536.355000px;}
.x6b_c00162{left:538.275000px;}
.xe8_c00162{left:539.580000px;}
.xdb_c00162{left:544.500000px;}
.xd5_c00162{left:546.000000px;}
.xde_c00162{left:549.000000px;}
.x7d_c00162{left:552.000000px;}
.x16_c00162{left:553.500000px;}
.xa6_c00162{left:558.000000px;}
.x9_c00162{left:559.275000px;}
.x2e_c00162{left:561.000000px;}
.x38_c00162{left:562.500000px;}
.x42_c00162{left:563.580000px;}
.x9a_c00162{left:565.500000px;}
.x24_c00162{left:566.580000px;}
.xbe_c00162{left:568.080000px;}
.x8c_c00162{left:570.000000px;}
.x53_c00162{left:571.500000px;}
.xc5_c00162{left:575.580000px;}
.x5e_c00162{left:577.920000px;}
.xac_c00162{left:579.855000px;}
.xa3_c00162{left:583.080000px;}
.xa7_c00162{left:586.500000px;}
.x71_c00162{left:591.000000px;}
.x94_c00162{left:592.500000px;}
.xb4_c00162{left:595.080000px;}
.xa_c00162{left:598.080000px;}
.x54_c00162{left:599.580000px;}
.x17_c00162{left:604.500000px;}
.xf4_c00162{left:605.580000px;}
.xa8_c00162{left:607.500000px;}
.x25_c00162{left:610.500000px;}
.xb5_c00162{left:613.500000px;}
.x5f_c00162{left:616.500000px;}
.xc6_c00162{left:619.080000px;}
.x18_c00162{left:621.000000px;}
.x9b_c00162{left:624.420000px;}
.x2f_c00162{left:629.580000px;}
.x8d_c00162{left:632.580000px;}
.xe9_c00162{left:634.500000px;}
.x43_c00162{left:636.420000px;}
.x39_c00162{left:637.500000px;}
.xdc_c00162{left:639.000000px;}
.xcb_c00162{left:640.500000px;}
.x67_c00162{left:643.500000px;}
.x30_c00162{left:648.000000px;}
.x19_c00162{left:649.080000px;}
.x60_c00162{left:652.920000px;}
.x7e_c00162{left:654.000000px;}
.x3a_c00162{left:657.420000px;}
.x9c_c00162{left:661.080000px;}
.x77_c00162{left:663.000000px;}
.x55_c00162{left:666.000000px;}
.x1a_c00162{left:667.920000px;}
.xbf_c00162{left:669.000000px;}
.x72_c00162{left:670.080000px;}
.xb_c00162{left:672.000000px;}
.xd6_c00162{left:673.500000px;}
.x68_c00162{left:674.580000px;}
.x7f_c00162{left:676.080000px;}
.x61_c00162{left:678.000000px;}
.x44_c00162{left:679.920000px;}
.xb6_c00162{left:682.500000px;}
.x95_c00162{left:684.000000px;}
.xc7_c00162{left:688.080000px;}
.xf5_c00162{left:689.580000px;}
.x73_c00162{left:691.500000px;}
.x3b_c00162{left:693.000000px;}
.x1b_c00162{left:694.500000px;}
.xee_c00162{left:697.080000px;}
.xcc_c00162{left:702.420000px;}
.x2_c00162{left:703.920000px;}
.xd7_c00162{left:705.000000px;}
.xe3_c00162{left:706.500000px;}
.xa4_c00162{left:709.920000px;}
.xdf_c00162{left:711.000000px;}
.xa9_c00162{left:716.580000px;}
@media print{
.v0_c00162{vertical-align:0.000000pt;}
.v1_c00162{vertical-align:5.333333pt;}
.ls0_c00162{letter-spacing:0.000000pt;}
.ws3_c00162{word-spacing:-7.989423pt;}
.ws1_c00162{word-spacing:-3.814946pt;}
.ws2_c00162{word-spacing:-3.110081pt;}
.ws0_c00162{word-spacing:-1.139977pt;}
.ws4_c00162{word-spacing:0.000000pt;}
.fs8_c00162{font-size:3.040000pt;}
.fs7_c00162{font-size:12.106667pt;}
.fs5_c00162{font-size:16.640000pt;}
.fs0_c00162{font-size:18.133333pt;}
.fs1_c00162{font-size:22.666667pt;}
.fs2_c00162{font-size:25.706667pt;}
.fs6_c00162{font-size:28.746667pt;}
.fs4_c00162{font-size:31.733333pt;}
.fs3_c00162{font-size:34.773333pt;}
.y0_c00162{bottom:0.000000pt;}
.yba_c00162{bottom:225.106667pt;}
.yb8_c00162{bottom:225.693333pt;}
.yb9_c00162{bottom:227.026667pt;}
.yb7_c00162{bottom:242.066667pt;}
.yb5_c00162{bottom:242.440000pt;}
.yb6_c00162{bottom:243.026667pt;}
.yb3_c00162{bottom:243.400000pt;}
.yb4_c00162{bottom:243.973333pt;}
.yb2_c00162{bottom:244.360000pt;}
.yad_c00162{bottom:258.440000pt;}
.yb1_c00162{bottom:259.400000pt;}
.yaf_c00162{bottom:260.360000pt;}
.yb0_c00162{bottom:260.733333pt;}
.yae_c00162{bottom:261.693333pt;}
.yaa_c00162{bottom:276.733333pt;}
.yab_c00162{bottom:277.106667pt;}
.yac_c00162{bottom:278.066667pt;}
.ya9_c00162{bottom:278.640000pt;}
.ya8_c00162{bottom:279.026667pt;}
.ya4_c00162{bottom:294.440000pt;}
.ya7_c00162{bottom:295.400000pt;}
.ya6_c00162{bottom:296.360000pt;}
.ya5_c00162{bottom:296.560000pt;}
.ya3_c00162{bottom:311.026667pt;}
.y9e_c00162{bottom:311.773333pt;}
.ya2_c00162{bottom:312.733333pt;}
.ya0_c00162{bottom:313.693333pt;}
.y9f_c00162{bottom:313.893333pt;}
.ya1_c00162{bottom:314.640000pt;}
.y9d_c00162{bottom:329.106667pt;}
.y9c_c00162{bottom:330.440000pt;}
.y99_c00162{bottom:331.026667pt;}
.y9b_c00162{bottom:331.226667pt;}
.y9a_c00162{bottom:332.360000pt;}
.y93_c00162{bottom:345.693333pt;}
.y95_c00162{bottom:347.026667pt;}
.y98_c00162{bottom:347.400000pt;}
.y91_c00162{bottom:347.773333pt;}
.y96_c00162{bottom:348.560000pt;}
.y97_c00162{bottom:348.733333pt;}
.y94_c00162{bottom:349.306667pt;}
.y92_c00162{bottom:349.693333pt;}
.y8f_c00162{bottom:363.973333pt;}
.y8d_c00162{bottom:364.360000pt;}
.y8a_c00162{bottom:365.106667pt;}
.y90_c00162{bottom:365.893333pt;}
.y8e_c00162{bottom:366.640000pt;}
.y8c_c00162{bottom:367.026667pt;}
.y8b_c00162{bottom:367.040000pt;}
.y89_c00162{bottom:382.440000pt;}
.y88_c00162{bottom:383.226667pt;}
.y87_c00162{bottom:384.360000pt;}
.y84_c00162{bottom:399.773333pt;}
.y86_c00162{bottom:400.560000pt;}
.y85_c00162{bottom:401.693333pt;}
.y80_c00162{bottom:418.440000pt;}
.y82_c00162{bottom:419.226667pt;}
.y83_c00162{bottom:419.973333pt;}
.y81_c00162{bottom:420.360000pt;}
.y7a_c00162{bottom:433.693333pt;}
.y7c_c00162{bottom:434.440000pt;}
.y7b_c00162{bottom:435.400000pt;}
.y79_c00162{bottom:436.360000pt;}
.y7f_c00162{bottom:436.560000pt;}
.y7d_c00162{bottom:437.306667pt;}
.y7e_c00162{bottom:437.693333pt;}
.y77_c00162{bottom:451.973333pt;}
.y75_c00162{bottom:452.160000pt;}
.y74_c00162{bottom:453.106667pt;}
.y72_c00162{bottom:453.306667pt;}
.y78_c00162{bottom:453.693333pt;}
.y73_c00162{bottom:453.893333pt;}
.y76_c00162{bottom:455.026667pt;}
.y6f_c00162{bottom:470.440000pt;}
.y71_c00162{bottom:471.226667pt;}
.y6e_c00162{bottom:471.400000pt;}
.y70_c00162{bottom:472.360000pt;}
.y6d_c00162{bottom:487.026667pt;}
.y68_c00162{bottom:487.773333pt;}
.y6c_c00162{bottom:488.560000pt;}
.y69_c00162{bottom:489.693333pt;}
.y6b_c00162{bottom:489.893333pt;}
.y6a_c00162{bottom:490.066667pt;}
.y63_c00162{bottom:505.106667pt;}
.y65_c00162{bottom:506.066667pt;}
.y64_c00162{bottom:506.640000pt;}
.y62_c00162{bottom:507.026667pt;}
.y66_c00162{bottom:507.226667pt;}
.y67_c00162{bottom:507.973333pt;}
.y5f_c00162{bottom:522.440000pt;}
.y60_c00162{bottom:524.360000pt;}
.y61_c00162{bottom:524.560000pt;}
.y5e_c00162{bottom:539.773333pt;}
.y5b_c00162{bottom:541.106667pt;}
.y58_c00162{bottom:541.693333pt;}
.y5c_c00162{bottom:541.893333pt;}
.y5d_c00162{bottom:542.640000pt;}
.y59_c00162{bottom:543.026667pt;}
.y5a_c00162{bottom:543.040000pt;}
.y56_c00162{bottom:559.026667pt;}
.y57_c00162{bottom:560.360000pt;}
.y54_c00162{bottom:575.773333pt;}
.y55_c00162{bottom:576.733333pt;}
.y52_c00162{bottom:577.693333pt;}
.y53_c00162{bottom:577.706667pt;}
.y50_c00162{bottom:592.360000pt;}
.y4d_c00162{bottom:593.106667pt;}
.y51_c00162{bottom:593.693333pt;}
.y4f_c00162{bottom:594.066667pt;}
.y4e_c00162{bottom:596.373333pt;}
.y4c_c00162{bottom:610.440000pt;}
.y47_c00162{bottom:627.773333pt;}
.y4b_c00162{bottom:628.733333pt;}
.y49_c00162{bottom:629.693333pt;}
.y4a_c00162{bottom:630.640000pt;}
.y48_c00162{bottom:631.040000pt;}
.y45_c00162{bottom:648.733333pt;}
.y46_c00162{bottom:649.306667pt;}
.y44_c00162{bottom:649.693333pt;}
.y42_c00162{bottom:663.026667pt;}
.y40_c00162{bottom:663.400000pt;}
.y41_c00162{bottom:664.360000pt;}
.y43_c00162{bottom:665.306667pt;}
.y3f_c00162{bottom:679.973333pt;}
.y3b_c00162{bottom:680.360000pt;}
.y3e_c00162{bottom:681.306667pt;}
.y3d_c00162{bottom:681.506667pt;}
.y3c_c00162{bottom:682.266667pt;}
.y39_c00162{bottom:701.106667pt;}
.y3a_c00162{bottom:702.066667pt;}
.y38_c00162{bottom:735.026667pt;}
.y32_c00162{bottom:750.440000pt;}
.y35_c00162{bottom:750.640000pt;}
.y33_c00162{bottom:751.400000pt;}
.y34_c00162{bottom:752.360000pt;}
.y37_c00162{bottom:753.306667pt;}
.y36_c00162{bottom:753.693333pt;}
.y30_c00162{bottom:767.026667pt;}
.y31_c00162{bottom:767.400000pt;}
.y2f_c00162{bottom:767.773333pt;}
.y2e_c00162{bottom:769.693333pt;}
.y2c_c00162{bottom:787.226667pt;}
.y2d_c00162{bottom:787.400000pt;}
.y2b_c00162{bottom:788.360000pt;}
.y29_c00162{bottom:803.400000pt;}
.y2a_c00162{bottom:803.773333pt;}
.y28_c00162{bottom:804.560000pt;}
.y26_c00162{bottom:805.693333pt;}
.y27_c00162{bottom:806.640000pt;}
.y23_c00162{bottom:821.106667pt;}
.y24_c00162{bottom:823.026667pt;}
.y25_c00162{bottom:823.973333pt;}
.y21_c00162{bottom:838.066667pt;}
.y1e_c00162{bottom:838.440000pt;}
.y22_c00162{bottom:839.400000pt;}
.y1f_c00162{bottom:840.360000pt;}
.y20_c00162{bottom:841.306667pt;}
.y1c_c00162{bottom:855.026667pt;}
.y1b_c00162{bottom:855.773333pt;}
.y1d_c00162{bottom:857.306667pt;}
.y19_c00162{bottom:857.693333pt;}
.y1a_c00162{bottom:857.893333pt;}
.y17_c00162{bottom:873.106667pt;}
.y16_c00162{bottom:874.066667pt;}
.y18_c00162{bottom:874.440000pt;}
.y14_c00162{bottom:875.026667pt;}
.y15_c00162{bottom:876.360000pt;}
.y12_c00162{bottom:890.440000pt;}
.y13_c00162{bottom:892.360000pt;}
.y10_c00162{bottom:892.560000pt;}
.y11_c00162{bottom:893.306667pt;}
.yd_c00162{bottom:907.400000pt;}
.yb_c00162{bottom:907.773333pt;}
.yf_c00162{bottom:909.306667pt;}
.yc_c00162{bottom:909.693333pt;}
.ye_c00162{bottom:909.893333pt;}
.y9_c00162{bottom:925.106667pt;}
.y7_c00162{bottom:925.306667pt;}
.ya_c00162{bottom:927.026667pt;}
.y8_c00162{bottom:927.226667pt;}
.y4_c00162{bottom:942.826667pt;}
.y5_c00162{bottom:943.026667pt;}
.y6_c00162{bottom:943.773333pt;}
.y3_c00162{bottom:945.693333pt;}
.y2_c00162{bottom:978.640000pt;}
.y1_c00162{bottom:979.600000pt;}
.h9_c00162{height:3.739141pt;}
.h8_c00162{height:14.890964pt;}
.h6_c00162{height:20.466875pt;}
.h1_c00162{height:22.303646pt;}
.h2_c00162{height:27.879557pt;}
.h3_c00162{height:31.618698pt;}
.h7_c00162{height:35.357839pt;}
.ha_c00162{height:36.952031pt;}
.h5_c00162{height:39.031380pt;}
.h4_c00162{height:42.770521pt;}
.h0_c00162{height:1186.666667pt;}
.w0_c00162{width:782.666667pt;}
.x0_c00162{left:0.000000pt;}
.x3_c00162{left:135.040000pt;}
.x9d_c00162{left:136.000000pt;}
.x96_c00162{left:136.960000pt;}
.x11_c00162{left:148.373333pt;}
.x4b_c00162{left:149.333333pt;}
.x8f_c00162{left:150.293333pt;}
.xb7_c00162{left:156.960000pt;}
.x26_c00162{left:158.666667pt;}
.xad_c00162{left:160.000000pt;}
.xf8_c00162{left:161.333333pt;}
.x8e_c00162{left:163.040000pt;}
.xc0_c00162{left:164.000000pt;}
.x4c_c00162{left:166.666667pt;}
.xc_c00162{left:168.000000pt;}
.x9e_c00162{left:170.293333pt;}
.xae_c00162{left:172.000000pt;}
.x31_c00162{left:173.333333pt;}
.xef_c00162{left:174.293333pt;}
.x78_c00162{left:176.760000pt;}
.xd_c00162{left:179.040000pt;}
.x5a_c00162{left:180.960000pt;}
.xa5_c00162{left:183.626667pt;}
.x62_c00162{left:185.706667pt;}
.x32_c00162{left:186.666667pt;}
.x45_c00162{left:188.000000pt;}
.x4d_c00162{left:189.333333pt;}
.x1c_c00162{left:190.293333pt;}
.x3c_c00162{left:192.000000pt;}
.xe4_c00162{left:192.960000pt;}
.xcd_c00162{left:196.000000pt;}
.x4_c00162{left:197.333333pt;}
.x97_c00162{left:200.000000pt;}
.xc8_c00162{left:200.960000pt;}
.x46_c00162{left:204.000000pt;}
.xc1_c00162{left:205.333333pt;}
.x12_c00162{left:206.666667pt;}
.x27_c00162{left:208.000000pt;}
.x3d_c00162{left:211.040000pt;}
.x6c_c00162{left:216.000000pt;}
.xc9_c00162{left:216.960000pt;}
.x74_c00162{left:220.000000pt;}
.x90_c00162{left:221.333333pt;}
.x1d_c00162{left:222.293333pt;}
.xe0_c00162{left:223.626667pt;}
.x9f_c00162{left:224.573333pt;}
.xd1_c00162{left:228.000000pt;}
.x80_c00162{left:229.333333pt;}
.x86_c00162{left:232.000000pt;}
.x56_c00162{left:232.960000pt;}
.x33_c00162{left:234.666667pt;}
.x91_c00162{left:236.960000pt;}
.x5_c00162{left:238.293333pt;}
.x1e_c00162{left:240.000000pt;}
.xb8_c00162{left:244.373333pt;}
.xd2_c00162{left:246.293333pt;}
.x81_c00162{left:249.333333pt;}
.xe_c00162{left:250.293333pt;}
.xaf_c00162{left:251.626667pt;}
.xf0_c00162{left:253.706667pt;}
.xea_c00162{left:255.040000pt;}
.x47_c00162{left:256.000000pt;}
.x79_c00162{left:257.333333pt;}
.x98_c00162{left:260.000000pt;}
.x28_c00162{left:264.373333pt;}
.xf_c00162{left:267.040000pt;}
.x4e_c00162{left:268.960000pt;}
.xe1_c00162{left:275.040000pt;}
.x87_c00162{left:276.000000pt;}
.x63_c00162{left:277.706667pt;}
.xe5_c00162{left:281.333333pt;}
.xce_c00162{left:283.040000pt;}
.x57_c00162{left:284.960000pt;}
.xa0_c00162{left:288.000000pt;}
.xf9_c00162{left:288.960000pt;}
.x5b_c00162{left:292.373333pt;}
.x3e_c00162{left:294.293333pt;}
.x29_c00162{left:296.000000pt;}
.x10_c00162{left:297.333333pt;}
.xd8_c00162{left:298.666667pt;}
.xb0_c00162{left:301.333333pt;}
.x92_c00162{left:302.666667pt;}
.xaa_c00162{left:303.800000pt;}
.x82_c00162{left:306.466667pt;}
.x1f_c00162{left:308.000000pt;}
.xf1_c00162{left:309.706667pt;}
.x3f_c00162{left:310.666667pt;}
.xc2_c00162{left:312.000000pt;}
.xd3_c00162{left:313.706667pt;}
.x13_c00162{left:314.666667pt;}
.xe6_c00162{left:316.000000pt;}
.x99_c00162{left:317.333333pt;}
.xeb_c00162{left:318.666667pt;}
.x88_c00162{left:321.333333pt;}
.x34_c00162{left:322.666667pt;}
.x6_c00162{left:324.000000pt;}
.xb9_c00162{left:326.666667pt;}
.xc3_c00162{left:327.626667pt;}
.x4f_c00162{left:330.666667pt;}
.x7a_c00162{left:331.626667pt;}
.x40_c00162{left:333.333333pt;}
.xab_c00162{left:334.666667pt;}
.x20_c00162{left:337.333333pt;}
.x83_c00162{left:342.293333pt;}
.x89_c00162{left:343.626667pt;}
.x48_c00162{left:344.960000pt;}
.x2a_c00162{left:346.293333pt;}
.x75_c00162{left:349.333333pt;}
.xcf_c00162{left:352.000000pt;}
.x1_c00162{left:353.333333pt;}
.xec_c00162{left:355.040000pt;}
.xa1_c00162{left:357.333333pt;}
.x64_c00162{left:358.293333pt;}
.x6d_c00162{left:360.000000pt;}
.xba_c00162{left:361.333333pt;}
.x58_c00162{left:362.293333pt;}
.x21_c00162{left:365.333333pt;}
.x84_c00162{left:366.666667pt;}
.x69_c00162{left:368.000000pt;}
.xd0_c00162{left:368.960000pt;}
.x49_c00162{left:372.000000pt;}
.x2b_c00162{left:375.040000pt;}
.x35_c00162{left:376.960000pt;}
.xf6_c00162{left:378.666667pt;}
.x41_c00162{left:382.293333pt;}
.x6e_c00162{left:384.000000pt;}
.xd9_c00162{left:386.666667pt;}
.x4a_c00162{left:388.000000pt;}
.x59_c00162{left:389.333333pt;}
.xe7_c00162{left:391.040000pt;}
.x50_c00162{left:392.373333pt;}
.xbb_c00162{left:394.666667pt;}
.x65_c00162{left:396.000000pt;}
.xed_c00162{left:397.333333pt;}
.x2c_c00162{left:400.373333pt;}
.x7b_c00162{left:403.240000pt;}
.x36_c00162{left:404.960000pt;}
.xb1_c00162{left:406.666667pt;}
.x5c_c00162{left:408.373333pt;}
.xf2_c00162{left:409.706667pt;}
.x22_c00162{left:411.626667pt;}
.xca_c00162{left:412.960000pt;}
.x51_c00162{left:416.000000pt;}
.xdd_c00162{left:417.333333pt;}
.x14_c00162{left:419.040000pt;}
.x85_c00162{left:421.133333pt;}
.xc4_c00162{left:424.373333pt;}
.x6f_c00162{left:426.293333pt;}
.x6a_c00162{left:427.626667pt;}
.x8a_c00162{left:431.040000pt;}
.x7_c00162{left:432.960000pt;}
.xb2_c00162{left:434.666667pt;}
.xa2_c00162{left:436.000000pt;}
.xda_c00162{left:437.333333pt;}
.x5d_c00162{left:440.000000pt;}
.x76_c00162{left:440.960000pt;}
.x15_c00162{left:442.666667pt;}
.x2d_c00162{left:445.706667pt;}
.x93_c00162{left:446.666667pt;}
.xf7_c00162{left:449.333333pt;}
.xbc_c00162{left:450.666667pt;}
.x70_c00162{left:452.000000pt;}
.xd4_c00162{left:452.960000pt;}
.x66_c00162{left:458.293333pt;}
.x8_c00162{left:460.960000pt;}
.x8b_c00162{left:462.666667pt;}
.x52_c00162{left:464.000000pt;}
.xe2_c00162{left:466.666667pt;}
.x37_c00162{left:467.800000pt;}
.xbd_c00162{left:468.960000pt;}
.x23_c00162{left:471.626667pt;}
.x7c_c00162{left:473.333333pt;}
.xb3_c00162{left:474.293333pt;}
.xf3_c00162{left:476.760000pt;}
.x6b_c00162{left:478.466667pt;}
.xe8_c00162{left:479.626667pt;}
.xdb_c00162{left:484.000000pt;}
.xd5_c00162{left:485.333333pt;}
.xde_c00162{left:488.000000pt;}
.x7d_c00162{left:490.666667pt;}
.x16_c00162{left:492.000000pt;}
.xa6_c00162{left:496.000000pt;}
.x9_c00162{left:497.133333pt;}
.x2e_c00162{left:498.666667pt;}
.x38_c00162{left:500.000000pt;}
.x42_c00162{left:500.960000pt;}
.x9a_c00162{left:502.666667pt;}
.x24_c00162{left:503.626667pt;}
.xbe_c00162{left:504.960000pt;}
.x8c_c00162{left:506.666667pt;}
.x53_c00162{left:508.000000pt;}
.xc5_c00162{left:511.626667pt;}
.x5e_c00162{left:513.706667pt;}
.xac_c00162{left:515.426667pt;}
.xa3_c00162{left:518.293333pt;}
.xa7_c00162{left:521.333333pt;}
.x71_c00162{left:525.333333pt;}
.x94_c00162{left:526.666667pt;}
.xb4_c00162{left:528.960000pt;}
.xa_c00162{left:531.626667pt;}
.x54_c00162{left:532.960000pt;}
.x17_c00162{left:537.333333pt;}
.xf4_c00162{left:538.293333pt;}
.xa8_c00162{left:540.000000pt;}
.x25_c00162{left:542.666667pt;}
.xb5_c00162{left:545.333333pt;}
.x5f_c00162{left:548.000000pt;}
.xc6_c00162{left:550.293333pt;}
.x18_c00162{left:552.000000pt;}
.x9b_c00162{left:555.040000pt;}
.x2f_c00162{left:559.626667pt;}
.x8d_c00162{left:562.293333pt;}
.xe9_c00162{left:564.000000pt;}
.x43_c00162{left:565.706667pt;}
.x39_c00162{left:566.666667pt;}
.xdc_c00162{left:568.000000pt;}
.xcb_c00162{left:569.333333pt;}
.x67_c00162{left:572.000000pt;}
.x30_c00162{left:576.000000pt;}
.x19_c00162{left:576.960000pt;}
.x60_c00162{left:580.373333pt;}
.x7e_c00162{left:581.333333pt;}
.x3a_c00162{left:584.373333pt;}
.x9c_c00162{left:587.626667pt;}
.x77_c00162{left:589.333333pt;}
.x55_c00162{left:592.000000pt;}
.x1a_c00162{left:593.706667pt;}
.xbf_c00162{left:594.666667pt;}
.x72_c00162{left:595.626667pt;}
.xb_c00162{left:597.333333pt;}
.xd6_c00162{left:598.666667pt;}
.x68_c00162{left:599.626667pt;}
.x7f_c00162{left:600.960000pt;}
.x61_c00162{left:602.666667pt;}
.x44_c00162{left:604.373333pt;}
.xb6_c00162{left:606.666667pt;}
.x95_c00162{left:608.000000pt;}
.xc7_c00162{left:611.626667pt;}
.xf5_c00162{left:612.960000pt;}
.x73_c00162{left:614.666667pt;}
.x3b_c00162{left:616.000000pt;}
.x1b_c00162{left:617.333333pt;}
.xee_c00162{left:619.626667pt;}
.xcc_c00162{left:624.373333pt;}
.x2_c00162{left:625.706667pt;}
.xd7_c00162{left:626.666667pt;}
.xe3_c00162{left:628.000000pt;}
.xa4_c00162{left:631.040000pt;}
.xdf_c00162{left:632.000000pt;}
.xa9_c00162{left:636.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_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_4bd8f4f435cda41eea39f5bc.woff2')format("woff");}.ff1_c00163{font-family:ff1_c00163;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb1_c00163{transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);}
.m5_c00163{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m94_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);}
.m58_c00163{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m57_c00163{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m5c_c00163{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m31_c00163{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m13_c00163{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m3f_c00163{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.ma_c00163{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m6f_c00163{transform:matrix(0.410256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410256,0.000000,0.000000,0.250000,0,0);}
.m33_c00163{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m21_c00163{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m73_c00163{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m30_c00163{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m48_c00163{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m74_c00163{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m15_c00163{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m5a_c00163{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mb_c00163{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m35_c00163{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m5d_c00163{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m16_c00163{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m56_c00163{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m6a_c00163{transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);}
.m45_c00163{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m86_c00163{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m6_c00163{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m88_c00163{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);}
.m5b_c00163{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m4a_c00163{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m8e_c00163{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m32_c00163{transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);}
.m71_c00163{transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);}
.m20_c00163{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m14_c00163{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m2b_c00163{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m76_c00163{transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);}
.m91_c00163{transform:matrix(0.454327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454327,0.000000,0.000000,0.250000,0,0);}
.m42_c00163{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m49_c00163{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m4b_c00163{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m1f_c00163{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m4c_c00163{transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);}
.m1b_c00163{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m6d_c00163{transform:matrix(0.461538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461538,0.000000,0.000000,0.250000,0,0);}
.mae_c00163{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);}
.m23_c00163{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m83_c00163{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m72_c00163{transform:matrix(0.465909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465909,0.000000,0.000000,0.250000,0,0);}
.ma6_c00163{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.m8a_c00163{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.m43_c00163{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m12_c00163{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.ma7_c00163{transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);}
.m1e_c00163{transform:matrix(0.471176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471176,0.000000,0.000000,0.250000,0,0);}
.ma2_c00163{transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);}
.m55_c00163{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m69_c00163{transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);}
.m82_c00163{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m8d_c00163{transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);}
.m36_c00163{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m60_c00163{transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);}
.m4e_c00163{transform:matrix(0.489796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489796,0.000000,0.000000,0.250000,0,0);}
.m7e_c00163{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m0_c00163{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m2a_c00163{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m11_c00163{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m9a_c00163{transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);}
.mb4_c00163{transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);}
.ma5_c00163{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.m9e_c00163{transform:matrix(0.495994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495994,0.000000,0.000000,0.250000,0,0);}
.m61_c00163{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);}
.m6b_c00163{transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);}
.m34_c00163{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.md_c00163{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m3d_c00163{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m26_c00163{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m27_c00163{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mb3_c00163{transform:matrix(0.526515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526515,0.000000,0.000000,0.250000,0,0);}
.m24_c00163{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mac_c00163{transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);}
.m9d_c00163{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.m18_c00163{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.ma4_c00163{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m70_c00163{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.m47_c00163{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m44_c00163{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m41_c00163{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m40_c00163{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m3c_c00163{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m38_c00163{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m1d_c00163{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m2c_c00163{transform:matrix(0.549629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549629,0.000000,0.000000,0.250000,0,0);}
.m2f_c00163{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m4d_c00163{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m99_c00163{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m1c_c00163{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m2_c00163{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m5f_c00163{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m22_c00163{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m39_c00163{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m3a_c00163{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m46_c00163{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m67_c00163{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);}
.m7f_c00163{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m2d_c00163{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m19_c00163{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m3_c00163{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.maa_c00163{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m37_c00163{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m6c_c00163{transform:matrix(0.573718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573718,0.000000,0.000000,0.250000,0,0);}
.m29_c00163{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m78_c00163{transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);}
.m87_c00163{transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);}
.m25_c00163{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.ma9_c00163{transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);}
.m97_c00163{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.m3b_c00163{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m54_c00163{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m7_c00163{transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);}
.m9_c00163{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m17_c00163{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m68_c00163{transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);}
.ma1_c00163{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.m4f_c00163{transform:matrix(0.597756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597756,0.000000,0.000000,0.250000,0,0);}
.m53_c00163{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m5e_c00163{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m1_c00163{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.mf_c00163{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.m2e_c00163{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m92_c00163{transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);}
.m98_c00163{transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);}
.m77_c00163{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m6e_c00163{transform:matrix(0.613436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613436,0.000000,0.000000,0.250000,0,0);}
.m75_c00163{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.me_c00163{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m79_c00163{transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);}
.m28_c00163{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m65_c00163{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m66_c00163{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_c00163{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m89_c00163{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m63_c00163{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.mc_c00163{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.m52_c00163{transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);}
.m1a_c00163{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.mb2_c00163{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.m80_c00163{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m84_c00163{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m50_c00163{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m64_c00163{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m7c_c00163{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.m7d_c00163{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m10_c00163{transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);}
.mab_c00163{transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);}
.m62_c00163{transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);}
.ma8_c00163{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.m8c_c00163{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m8f_c00163{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m96_c00163{transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);}
.m7b_c00163{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.maf_c00163{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m81_c00163{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m4_c00163{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m85_c00163{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m51_c00163{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mad_c00163{transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);}
.ma0_c00163{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.m90_c00163{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.m7a_c00163{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m59_c00163{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mb0_c00163{transform:matrix(0.761013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761013,0.000000,0.000000,0.250000,0,0);}
.m3e_c00163{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m93_c00163{transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);}
.ma3_c00163{transform:matrix(0.779736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779736,0.000000,0.000000,0.250000,0,0);}
.m9c_c00163{transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);}
.m8b_c00163{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m95_c00163{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m9f_c00163{transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);}
.m9b_c00163{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.v1_c00163{vertical-align:-6.000000px;}
.v0_c00163{vertical-align:0.000000px;}
.ls1_c00163{letter-spacing:0.000000px;}
.ls0_c00163{letter-spacing:126.225769px;}
.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;}
}
.wse_c00163{word-spacing:0.000000px;}
.ws7_c00163{word-spacing:41.653165px;}
.ws3_c00163{word-spacing:43.656106px;}
.ws9_c00163{word-spacing:46.279409px;}
.ws4_c00163{word-spacing:47.433805px;}
.wsc_c00163{word-spacing:48.155442px;}
.ws8_c00163{word-spacing:49.588868px;}
.wsa_c00163{word-spacing:59.411641px;}
.wsd_c00163{word-spacing:62.519248px;}
.ws2_c00163{word-spacing:71.219479px;}
.wsb_c00163{word-spacing:81.053421px;}
.ws0_c00163{word-spacing:88.041330px;}
.ws1_c00163{word-spacing:96.968384px;}
.ws6_c00163{word-spacing:99.747539px;}
.ws5_c00163{word-spacing:110.698969px;}
._1_c00163{width:65.489688px;}
._0_c00163{width:91.678089px;}
.fc0_c00163{color:transparent;}
.fs8_c00163{font-size:3.420000px;}
.fs7_c00163{font-size:11.880000px;}
.fs6_c00163{font-size:13.620000px;}
.fs5_c00163{font-size:18.720000px;}
.fs1_c00163{font-size:20.400000px;}
.fs4_c00163{font-size:25.500000px;}
.fs0_c00163{font-size:28.920000px;}
.fs3_c00163{font-size:32.340000px;}
.fs2_c00163{font-size:35.700000px;}
.y0_c00163{bottom:0.000000px;}
.y2f_c00163{bottom:254.745000px;}
.y30_c00163{bottom:256.905000px;}
.y31_c00163{bottom:257.130000px;}
.y2e_c00163{bottom:274.245000px;}
.y2d_c00163{bottom:275.745000px;}
.y29_c00163{bottom:276.405000px;}
.y2b_c00163{bottom:276.630000px;}
.y2a_c00163{bottom:277.470000px;}
.y2c_c00163{bottom:277.905000px;}
.y26_c00163{bottom:295.245000px;}
.y28_c00163{bottom:296.130000px;}
.y27_c00163{bottom:296.325000px;}
.y25_c00163{bottom:297.405000px;}
.y24_c00163{bottom:314.745000px;}
.y23_c00163{bottom:316.905000px;}
.y21_c00163{bottom:344.745000px;}
.y22_c00163{bottom:345.405000px;}
.yd8_c00163{bottom:380.130000px;}
.yd9_c00163{bottom:381.195000px;}
.yd7_c00163{bottom:382.695000px;}
.yd5_c00163{bottom:383.130000px;}
.yd6_c00163{bottom:384.195000px;}
.yd4_c00163{bottom:395.775000px;}
.yd1_c00163{bottom:396.195000px;}
.yd2_c00163{bottom:397.275000px;}
.yd0_c00163{bottom:397.695000px;}
.yd3_c00163{bottom:397.920000px;}
.ycf_c00163{bottom:399.195000px;}
.yce_c00163{bottom:407.130000px;}
.ycd_c00163{bottom:408.195000px;}
.yc9_c00163{bottom:409.695000px;}
.yca_c00163{bottom:410.775000px;}
.yc8_c00163{bottom:411.195000px;}
.ycb_c00163{bottom:411.420000px;}
.ycc_c00163{bottom:412.470000px;}
.yc7_c00163{bottom:421.695000px;}
.yc6_c00163{bottom:423.195000px;}
.yc5_c00163{bottom:423.630000px;}
.yc4_c00163{bottom:424.050000px;}
.yc2_c00163{bottom:425.130000px;}
.yc3_c00163{bottom:425.775000px;}
.yc1_c00163{bottom:435.195000px;}
.yc0_c00163{bottom:436.695000px;}
.ybf_c00163{bottom:438.195000px;}
.ybe_c00163{bottom:439.275000px;}
.ybd_c00163{bottom:439.695000px;}
.ybb_c00163{bottom:450.195000px;}
.ybc_c00163{bottom:450.420000px;}
.yba_c00163{bottom:452.130000px;}
.yb8_c00163{bottom:463.695000px;}
.yb9_c00163{bottom:463.920000px;}
.yb6_c00163{bottom:465.195000px;}
.yb7_c00163{bottom:465.420000px;}
.yb5_c00163{bottom:466.695000px;}
.yb4_c00163{bottom:468.195000px;}
.yb2_c00163{bottom:477.195000px;}
.yb3_c00163{bottom:477.420000px;}
.yb0_c00163{bottom:478.695000px;}
.yb1_c00163{bottom:478.920000px;}
.yaf_c00163{bottom:479.130000px;}
.yad_c00163{bottom:479.550000px;}
.yae_c00163{bottom:480.195000px;}
.yac_c00163{bottom:490.920000px;}
.yaa_c00163{bottom:491.130000px;}
.yab_c00163{bottom:492.195000px;}
.ya8_c00163{bottom:493.695000px;}
.ya9_c00163{bottom:494.130000px;}
.ya7_c00163{bottom:495.195000px;}
.ya6_c00163{bottom:505.695000px;}
.ya5_c00163{bottom:505.920000px;}
.ya4_c00163{bottom:506.130000px;}
.ya2_c00163{bottom:507.630000px;}
.ya3_c00163{bottom:508.695000px;}
.ya0_c00163{bottom:519.195000px;}
.ya1_c00163{bottom:519.420000px;}
.y9f_c00163{bottom:521.130000px;}
.y9d_c00163{bottom:532.695000px;}
.y9e_c00163{bottom:532.920000px;}
.y9b_c00163{bottom:534.195000px;}
.y9c_c00163{bottom:534.420000px;}
.y9a_c00163{bottom:534.630000px;}
.y99_c00163{bottom:535.695000px;}
.y97_c00163{bottom:546.195000px;}
.y98_c00163{bottom:546.420000px;}
.y95_c00163{bottom:547.695000px;}
.y96_c00163{bottom:547.920000px;}
.y93_c00163{bottom:548.130000px;}
.y94_c00163{bottom:549.195000px;}
.y91_c00163{bottom:561.195000px;}
.y92_c00163{bottom:561.420000px;}
.y90_c00163{bottom:561.630000px;}
.y8f_c00163{bottom:563.130000px;}
.y8d_c00163{bottom:573.630000px;}
.y8e_c00163{bottom:574.920000px;}
.y8a_c00163{bottom:575.130000px;}
.y8c_c00163{bottom:576.195000px;}
.y8b_c00163{bottom:576.630000px;}
.y89_c00163{bottom:591.195000px;}
.y88_c00163{bottom:601.920000px;}
.y87_c00163{bottom:602.130000px;}
.y86_c00163{bottom:603.420000px;}
.y84_c00163{bottom:603.630000px;}
.y85_c00163{bottom:604.275000px;}
.y83_c00163{bottom:604.695000px;}
.y82_c00163{bottom:615.195000px;}
.y81_c00163{bottom:616.695000px;}
.y80_c00163{bottom:619.695000px;}
.y7f_c00163{bottom:628.695000px;}
.y7e_c00163{bottom:630.195000px;}
.y7d_c00163{bottom:633.195000px;}
.y7c_c00163{bottom:641.130000px;}
.y7b_c00163{bottom:643.695000px;}
.y7a_c00163{bottom:646.695000px;}
.y79_c00163{bottom:656.130000px;}
.y78_c00163{bottom:657.195000px;}
.y76_c00163{bottom:657.630000px;}
.y73_c00163{bottom:658.050000px;}
.y77_c00163{bottom:658.695000px;}
.y72_c00163{bottom:659.130000px;}
.y74_c00163{bottom:659.775000px;}
.y75_c00163{bottom:660.195000px;}
.y71_c00163{bottom:670.695000px;}
.y70_c00163{bottom:672.195000px;}
.y6f_c00163{bottom:672.630000px;}
.y6e_c00163{bottom:673.695000px;}
.y6d_c00163{bottom:685.695000px;}
.y6c_c00163{bottom:686.130000px;}
.y6b_c00163{bottom:687.195000px;}
.y6a_c00163{bottom:697.695000px;}
.y69_c00163{bottom:699.195000px;}
.y68_c00163{bottom:699.630000px;}
.y67_c00163{bottom:701.130000px;}
.y66_c00163{bottom:711.195000px;}
.y65_c00163{bottom:712.695000px;}
.y64_c00163{bottom:713.130000px;}
.y63_c00163{bottom:715.695000px;}
.y62_c00163{bottom:724.695000px;}
.y61_c00163{bottom:726.195000px;}
.y60_c00163{bottom:727.695000px;}
.y5f_c00163{bottom:728.130000px;}
.y5e_c00163{bottom:729.195000px;}
.y5d_c00163{bottom:738.630000px;}
.y5b_c00163{bottom:740.130000px;}
.y5c_c00163{bottom:741.195000px;}
.y5a_c00163{bottom:742.050000px;}
.y59_c00163{bottom:742.695000px;}
.y58_c00163{bottom:753.195000px;}
.y57_c00163{bottom:754.695000px;}
.y56_c00163{bottom:755.130000px;}
.y55_c00163{bottom:756.195000px;}
.y54_c00163{bottom:765.630000px;}
.y53_c00163{bottom:766.695000px;}
.y52_c00163{bottom:768.195000px;}
.y51_c00163{bottom:768.630000px;}
.y50_c00163{bottom:769.695000px;}
.y4f_c00163{bottom:779.130000px;}
.y4e_c00163{bottom:781.695000px;}
.y4d_c00163{bottom:782.130000px;}
.y4c_c00163{bottom:783.195000px;}
.y4b_c00163{bottom:795.195000px;}
.y4a_c00163{bottom:796.695000px;}
.y49_c00163{bottom:797.130000px;}
.y48_c00163{bottom:798.195000px;}
.y47_c00163{bottom:808.695000px;}
.y46_c00163{bottom:810.195000px;}
.y45_c00163{bottom:811.695000px;}
.y44_c00163{bottom:826.695000px;}
.y43_c00163{bottom:827.130000px;}
.y41_c00163{bottom:828.630000px;}
.y42_c00163{bottom:829.695000px;}
.y40_c00163{bottom:840.195000px;}
.y3f_c00163{bottom:841.275000px;}
.y3e_c00163{bottom:841.695000px;}
.y3d_c00163{bottom:843.195000px;}
.y3c_c00163{bottom:854.130000px;}
.y3b_c00163{bottom:855.195000px;}
.y3a_c00163{bottom:855.630000px;}
.y39_c00163{bottom:857.130000px;}
.y37_c00163{bottom:873.825000px;}
.y38_c00163{bottom:874.470000px;}
.y36_c00163{bottom:888.405000px;}
.y35_c00163{bottom:889.470000px;}
.y34_c00163{bottom:890.550000px;}
.y32_c00163{bottom:913.470000px;}
.y33_c00163{bottom:914.550000px;}
.y20_c00163{bottom:946.905000px;}
.y1f_c00163{bottom:964.245000px;}
.y1e_c00163{bottom:965.130000px;}
.y1d_c00163{bottom:965.970000px;}
.y1c_c00163{bottom:966.405000px;}
.y1a_c00163{bottom:983.745000px;}
.y1b_c00163{bottom:984.825000px;}
.y19_c00163{bottom:985.905000px;}
.y15_c00163{bottom:1003.245000px;}
.y18_c00163{bottom:1003.470000px;}
.y16_c00163{bottom:1004.325000px;}
.y17_c00163{bottom:1004.970000px;}
.y13_c00163{bottom:1005.405000px;}
.y14_c00163{bottom:1006.470000px;}
.y12_c00163{bottom:1020.405000px;}
.yf_c00163{bottom:1022.745000px;}
.ye_c00163{bottom:1023.825000px;}
.y11_c00163{bottom:1024.470000px;}
.y10_c00163{bottom:1024.905000px;}
.yd_c00163{bottom:1026.405000px;}
.yb_c00163{bottom:1041.405000px;}
.y7_c00163{bottom:1042.245000px;}
.yc_c00163{bottom:1042.470000px;}
.y8_c00163{bottom:1043.325000px;}
.ya_c00163{bottom:1043.970000px;}
.y9_c00163{bottom:1044.405000px;}
.y4_c00163{bottom:1061.745000px;}
.y5_c00163{bottom:1062.825000px;}
.y3_c00163{bottom:1063.905000px;}
.y6_c00163{bottom:1064.970000px;}
.y1_c00163{bottom:1099.905000px;}
.y2_c00163{bottom:1102.050000px;}
.h9_c00163{height:4.206533px;}
.h8_c00163{height:14.612168px;}
.h7_c00163{height:16.752334px;}
.h6_c00163{height:23.025234px;}
.h2_c00163{height:25.091602px;}
.h5_c00163{height:31.364502px;}
.h1_c00163{height:35.571035px;}
.h4_c00163{height:39.777568px;}
.h3_c00163{height:43.910303px;}
.h0_c00163{height:1335.000000px;}
.w0_c00163{width:880.500000px;}
.x0_c00163{left:0.000000px;}
.x5b_c00163{left:147.000000px;}
.x35_c00163{left:151.500000px;}
.x14_c00163{left:153.420000px;}
.x1_c00163{left:154.920000px;}
.x50_c00163{left:163.500000px;}
.x3f_c00163{left:168.000000px;}
.x3_c00163{left:169.080000px;}
.x4c_c00163{left:171.000000px;}
.x64_c00163{left:192.000000px;}
.x51_c00163{left:195.000000px;}
.x36_c00163{left:196.500000px;}
.x15_c00163{left:198.000000px;}
.x40_c00163{left:200.580000px;}
.x2a_c00163{left:203.580000px;}
.x65_c00163{left:213.000000px;}
.x4d_c00163{left:216.420000px;}
.x4_c00163{left:222.420000px;}
.x5c_c00163{left:238.080000px;}
.x1f_c00163{left:243.420000px;}
.x91_c00163{left:245.580000px;}
.x8a_c00163{left:247.080000px;}
.x66_c00163{left:249.000000px;}
.x70_c00163{left:252.000000px;}
.x2b_c00163{left:255.000000px;}
.x5d_c00163{left:256.920000px;}
.x16_c00163{left:258.000000px;}
.x9d_c00163{left:259.920000px;}
.x41_c00163{left:262.080000px;}
.x52_c00163{left:268.080000px;}
.x92_c00163{left:270.000000px;}
.x37_c00163{left:271.920000px;}
.x8e_c00163{left:274.920000px;}
.x85_c00163{left:276.420000px;}
.x8b_c00163{left:279.420000px;}
.x5e_c00163{left:283.920000px;}
.xa7_c00163{left:285.000000px;}
.xa4_c00163{left:286.080000px;}
.x5_c00163{left:288.000000px;}
.xa6_c00163{left:289.500000px;}
.x42_c00163{left:292.500000px;}
.x20_c00163{left:294.420000px;}
.xa1_c00163{left:295.500000px;}
.x2c_c00163{left:297.000000px;}
.x6_c00163{left:298.500000px;}
.x9e_c00163{left:299.580000px;}
.x93_c00163{left:301.920000px;}
.xa5_c00163{left:303.000000px;}
.x78_c00163{left:306.420000px;}
.xa2_c00163{left:309.000000px;}
.x94_c00163{left:310.500000px;}
.x7_c00163{left:313.080000px;}
.x8c_c00163{left:315.000000px;}
.x86_c00163{left:316.500000px;}
.x9f_c00163{left:317.580000px;}
.x38_c00163{left:321.000000px;}
.x67_c00163{left:322.920000px;}
.x8_c00163{left:327.000000px;}
.x43_c00163{left:331.500000px;}
.x8d_c00163{left:332.580000px;}
.x87_c00163{left:334.080000px;}
.xa3_c00163{left:336.000000px;}
.x98_c00163{left:337.080000px;}
.x21_c00163{left:339.420000px;}
.x17_c00163{left:340.500000px;}
.x9_c00163{left:342.000000px;}
.xa9_c00163{left:343.500000px;}
.x53_c00163{left:349.920000px;}
.x5f_c00163{left:351.000000px;}
.xa8_c00163{left:352.920000px;}
.x4e_c00163{left:354.000000px;}
.xa_c00163{left:355.500000px;}
.x68_c00163{left:357.000000px;}
.x39_c00163{left:364.500000px;}
.xb_c00163{left:370.500000px;}
.x69_c00163{left:373.500000px;}
.x22_c00163{left:376.920000px;}
.x3a_c00163{left:384.000000px;}
.xc_c00163{left:388.500000px;}
.x6a_c00163{left:390.420000px;}
.x7d_c00163{left:394.500000px;}
.x54_c00163{left:397.920000px;}
.x2_c00163{left:402.000000px;}
.x23_c00163{left:403.080000px;}
.x76_c00163{left:412.500000px;}
.x99_c00163{left:415.500000px;}
.x7f_c00163{left:419.580000px;}
.x3b_c00163{left:421.500000px;}
.x71_c00163{left:426.420000px;}
.x2d_c00163{left:427.500000px;}
.x82_c00163{left:429.000000px;}
.x88_c00163{left:430.500000px;}
.x4f_c00163{left:431.580000px;}
.x44_c00163{left:433.080000px;}
.x55_c00163{left:435.420000px;}
.x18_c00163{left:439.920000px;}
.x6b_c00163{left:441.000000px;}
.x24_c00163{left:444.000000px;}
.x7e_c00163{left:445.500000px;}
.xd_c00163{left:450.000000px;}
.x45_c00163{left:451.920000px;}
.x79_c00163{left:454.920000px;}
.x60_c00163{left:456.420000px;}
.x77_c00163{left:458.355000px;}
.x56_c00163{left:461.580000px;}
.x19_c00163{left:466.500000px;}
.x72_c00163{left:468.000000px;}
.x7a_c00163{left:469.500000px;}
.x2e_c00163{left:474.420000px;}
.x80_c00163{left:478.500000px;}
.x95_c00163{left:481.500000px;}
.x61_c00163{left:483.000000px;}
.xaa_c00163{left:484.920000px;}
.x46_c00163{left:486.420000px;}
.x84_c00163{left:487.500000px;}
.x25_c00163{left:489.000000px;}
.xe_c00163{left:490.500000px;}
.xa0_c00163{left:493.500000px;}
.x9a_c00163{left:495.000000px;}
.x7b_c00163{left:498.000000px;}
.x3c_c00163{left:499.080000px;}
.x57_c00163{left:502.080000px;}
.x73_c00163{left:508.080000px;}
.x6c_c00163{left:517.080000px;}
.x1a_c00163{left:520.080000px;}
.x2f_c00163{left:522.420000px;}
.x3d_c00163{left:534.420000px;}
.x96_c00163{left:538.500000px;}
.x9b_c00163{left:540.000000px;}
.x47_c00163{left:541.920000px;}
.x26_c00163{left:543.000000px;}
.x8f_c00163{left:544.500000px;}
.xf_c00163{left:546.000000px;}
.x6d_c00163{left:547.500000px;}
.x62_c00163{left:553.080000px;}
.x7c_c00163{left:560.145000px;}
.x30_c00163{left:561.420000px;}
.x1b_c00163{left:562.500000px;}
.x10_c00163{left:564.420000px;}
.x58_c00163{left:572.580000px;}
.x48_c00163{left:580.920000px;}
.x31_c00163{left:589.080000px;}
.x6e_c00163{left:594.420000px;}
.x27_c00163{left:598.920000px;}
.x74_c00163{left:601.080000px;}
.x49_c00163{left:607.500000px;}
.x83_c00163{left:610.500000px;}
.x90_c00163{left:612.000000px;}
.x81_c00163{left:613.500000px;}
.x89_c00163{left:615.420000px;}
.x97_c00163{left:616.500000px;}
.x11_c00163{left:619.500000px;}
.x9c_c00163{left:621.000000px;}
.x1c_c00163{left:625.920000px;}
.x3e_c00163{left:629.580000px;}
.x32_c00163{left:632.580000px;}
.x28_c00163{left:634.920000px;}
.x6f_c00163{left:638.580000px;}
.x12_c00163{left:655.080000px;}
.x1d_c00163{left:658.500000px;}
.x29_c00163{left:661.500000px;}
.x4a_c00163{left:667.500000px;}
.x33_c00163{left:676.920000px;}
.x59_c00163{left:682.500000px;}
.x75_c00163{left:687.000000px;}
.x63_c00163{left:688.500000px;}
.x13_c00163{left:691.500000px;}
.x4b_c00163{left:693.420000px;}
.x1e_c00163{left:703.080000px;}
.x5a_c00163{left:705.420000px;}
.x34_c00163{left:706.500000px;}
@media print{
.v1_c00163{vertical-align:-5.333333pt;}
.v0_c00163{vertical-align:0.000000pt;}
.ls1_c00163{letter-spacing:0.000000pt;}
.ls0_c00163{letter-spacing:112.200683pt;}
.wse_c00163{word-spacing:0.000000pt;}
.ws7_c00163{word-spacing:37.025035pt;}
.ws3_c00163{word-spacing:38.805427pt;}
.ws9_c00163{word-spacing:41.137253pt;}
.ws4_c00163{word-spacing:42.163382pt;}
.wsc_c00163{word-spacing:42.804838pt;}
.ws8_c00163{word-spacing:44.078994pt;}
.wsa_c00163{word-spacing:52.810347pt;}
.wsd_c00163{word-spacing:55.572665pt;}
.ws2_c00163{word-spacing:63.306204pt;}
.wsb_c00163{word-spacing:72.047485pt;}
.ws0_c00163{word-spacing:78.258960pt;}
.ws1_c00163{word-spacing:86.194119pt;}
.ws6_c00163{word-spacing:88.664479pt;}
.ws5_c00163{word-spacing:98.399083pt;}
._1_c00163{width:58.213056pt;}
._0_c00163{width:81.491635pt;}
.fs8_c00163{font-size:3.040000pt;}
.fs7_c00163{font-size:10.560000pt;}
.fs6_c00163{font-size:12.106667pt;}
.fs5_c00163{font-size:16.640000pt;}
.fs1_c00163{font-size:18.133333pt;}
.fs4_c00163{font-size:22.666667pt;}
.fs0_c00163{font-size:25.706667pt;}
.fs3_c00163{font-size:28.746667pt;}
.fs2_c00163{font-size:31.733333pt;}
.y0_c00163{bottom:0.000000pt;}
.y2f_c00163{bottom:226.440000pt;}
.y30_c00163{bottom:228.360000pt;}
.y31_c00163{bottom:228.560000pt;}
.y2e_c00163{bottom:243.773333pt;}
.y2d_c00163{bottom:245.106667pt;}
.y29_c00163{bottom:245.693333pt;}
.y2b_c00163{bottom:245.893333pt;}
.y2a_c00163{bottom:246.640000pt;}
.y2c_c00163{bottom:247.026667pt;}
.y26_c00163{bottom:262.440000pt;}
.y28_c00163{bottom:263.226667pt;}
.y27_c00163{bottom:263.400000pt;}
.y25_c00163{bottom:264.360000pt;}
.y24_c00163{bottom:279.773333pt;}
.y23_c00163{bottom:281.693333pt;}
.y21_c00163{bottom:306.440000pt;}
.y22_c00163{bottom:307.026667pt;}
.yd8_c00163{bottom:337.893333pt;}
.yd9_c00163{bottom:338.840000pt;}
.yd7_c00163{bottom:340.173333pt;}
.yd5_c00163{bottom:340.560000pt;}
.yd6_c00163{bottom:341.506667pt;}
.yd4_c00163{bottom:351.800000pt;}
.yd1_c00163{bottom:352.173333pt;}
.yd2_c00163{bottom:353.133333pt;}
.yd0_c00163{bottom:353.506667pt;}
.yd3_c00163{bottom:353.706667pt;}
.ycf_c00163{bottom:354.840000pt;}
.yce_c00163{bottom:361.893333pt;}
.ycd_c00163{bottom:362.840000pt;}
.yc9_c00163{bottom:364.173333pt;}
.yca_c00163{bottom:365.133333pt;}
.yc8_c00163{bottom:365.506667pt;}
.ycb_c00163{bottom:365.706667pt;}
.ycc_c00163{bottom:366.640000pt;}
.yc7_c00163{bottom:374.840000pt;}
.yc6_c00163{bottom:376.173333pt;}
.yc5_c00163{bottom:376.560000pt;}
.yc4_c00163{bottom:376.933333pt;}
.yc2_c00163{bottom:377.893333pt;}
.yc3_c00163{bottom:378.466667pt;}
.yc1_c00163{bottom:386.840000pt;}
.yc0_c00163{bottom:388.173333pt;}
.ybf_c00163{bottom:389.506667pt;}
.ybe_c00163{bottom:390.466667pt;}
.ybd_c00163{bottom:390.840000pt;}
.ybb_c00163{bottom:400.173333pt;}
.ybc_c00163{bottom:400.373333pt;}
.yba_c00163{bottom:401.893333pt;}
.yb8_c00163{bottom:412.173333pt;}
.yb9_c00163{bottom:412.373333pt;}
.yb6_c00163{bottom:413.506667pt;}
.yb7_c00163{bottom:413.706667pt;}
.yb5_c00163{bottom:414.840000pt;}
.yb4_c00163{bottom:416.173333pt;}
.yb2_c00163{bottom:424.173333pt;}
.yb3_c00163{bottom:424.373333pt;}
.yb0_c00163{bottom:425.506667pt;}
.yb1_c00163{bottom:425.706667pt;}
.yaf_c00163{bottom:425.893333pt;}
.yad_c00163{bottom:426.266667pt;}
.yae_c00163{bottom:426.840000pt;}
.yac_c00163{bottom:436.373333pt;}
.yaa_c00163{bottom:436.560000pt;}
.yab_c00163{bottom:437.506667pt;}
.ya8_c00163{bottom:438.840000pt;}
.ya9_c00163{bottom:439.226667pt;}
.ya7_c00163{bottom:440.173333pt;}
.ya6_c00163{bottom:449.506667pt;}
.ya5_c00163{bottom:449.706667pt;}
.ya4_c00163{bottom:449.893333pt;}
.ya2_c00163{bottom:451.226667pt;}
.ya3_c00163{bottom:452.173333pt;}
.ya0_c00163{bottom:461.506667pt;}
.ya1_c00163{bottom:461.706667pt;}
.y9f_c00163{bottom:463.226667pt;}
.y9d_c00163{bottom:473.506667pt;}
.y9e_c00163{bottom:473.706667pt;}
.y9b_c00163{bottom:474.840000pt;}
.y9c_c00163{bottom:475.040000pt;}
.y9a_c00163{bottom:475.226667pt;}
.y99_c00163{bottom:476.173333pt;}
.y97_c00163{bottom:485.506667pt;}
.y98_c00163{bottom:485.706667pt;}
.y95_c00163{bottom:486.840000pt;}
.y96_c00163{bottom:487.040000pt;}
.y93_c00163{bottom:487.226667pt;}
.y94_c00163{bottom:488.173333pt;}
.y91_c00163{bottom:498.840000pt;}
.y92_c00163{bottom:499.040000pt;}
.y90_c00163{bottom:499.226667pt;}
.y8f_c00163{bottom:500.560000pt;}
.y8d_c00163{bottom:509.893333pt;}
.y8e_c00163{bottom:511.040000pt;}
.y8a_c00163{bottom:511.226667pt;}
.y8c_c00163{bottom:512.173333pt;}
.y8b_c00163{bottom:512.560000pt;}
.y89_c00163{bottom:525.506667pt;}
.y88_c00163{bottom:535.040000pt;}
.y87_c00163{bottom:535.226667pt;}
.y86_c00163{bottom:536.373333pt;}
.y84_c00163{bottom:536.560000pt;}
.y85_c00163{bottom:537.133333pt;}
.y83_c00163{bottom:537.506667pt;}
.y82_c00163{bottom:546.840000pt;}
.y81_c00163{bottom:548.173333pt;}
.y80_c00163{bottom:550.840000pt;}
.y7f_c00163{bottom:558.840000pt;}
.y7e_c00163{bottom:560.173333pt;}
.y7d_c00163{bottom:562.840000pt;}
.y7c_c00163{bottom:569.893333pt;}
.y7b_c00163{bottom:572.173333pt;}
.y7a_c00163{bottom:574.840000pt;}
.y79_c00163{bottom:583.226667pt;}
.y78_c00163{bottom:584.173333pt;}
.y76_c00163{bottom:584.560000pt;}
.y73_c00163{bottom:584.933333pt;}
.y77_c00163{bottom:585.506667pt;}
.y72_c00163{bottom:585.893333pt;}
.y74_c00163{bottom:586.466667pt;}
.y75_c00163{bottom:586.840000pt;}
.y71_c00163{bottom:596.173333pt;}
.y70_c00163{bottom:597.506667pt;}
.y6f_c00163{bottom:597.893333pt;}
.y6e_c00163{bottom:598.840000pt;}
.y6d_c00163{bottom:609.506667pt;}
.y6c_c00163{bottom:609.893333pt;}
.y6b_c00163{bottom:610.840000pt;}
.y6a_c00163{bottom:620.173333pt;}
.y69_c00163{bottom:621.506667pt;}
.y68_c00163{bottom:621.893333pt;}
.y67_c00163{bottom:623.226667pt;}
.y66_c00163{bottom:632.173333pt;}
.y65_c00163{bottom:633.506667pt;}
.y64_c00163{bottom:633.893333pt;}
.y63_c00163{bottom:636.173333pt;}
.y62_c00163{bottom:644.173333pt;}
.y61_c00163{bottom:645.506667pt;}
.y60_c00163{bottom:646.840000pt;}
.y5f_c00163{bottom:647.226667pt;}
.y5e_c00163{bottom:648.173333pt;}
.y5d_c00163{bottom:656.560000pt;}
.y5b_c00163{bottom:657.893333pt;}
.y5c_c00163{bottom:658.840000pt;}
.y5a_c00163{bottom:659.600000pt;}
.y59_c00163{bottom:660.173333pt;}
.y58_c00163{bottom:669.506667pt;}
.y57_c00163{bottom:670.840000pt;}
.y56_c00163{bottom:671.226667pt;}
.y55_c00163{bottom:672.173333pt;}
.y54_c00163{bottom:680.560000pt;}
.y53_c00163{bottom:681.506667pt;}
.y52_c00163{bottom:682.840000pt;}
.y51_c00163{bottom:683.226667pt;}
.y50_c00163{bottom:684.173333pt;}
.y4f_c00163{bottom:692.560000pt;}
.y4e_c00163{bottom:694.840000pt;}
.y4d_c00163{bottom:695.226667pt;}
.y4c_c00163{bottom:696.173333pt;}
.y4b_c00163{bottom:706.840000pt;}
.y4a_c00163{bottom:708.173333pt;}
.y49_c00163{bottom:708.560000pt;}
.y48_c00163{bottom:709.506667pt;}
.y47_c00163{bottom:718.840000pt;}
.y46_c00163{bottom:720.173333pt;}
.y45_c00163{bottom:721.506667pt;}
.y44_c00163{bottom:734.840000pt;}
.y43_c00163{bottom:735.226667pt;}
.y41_c00163{bottom:736.560000pt;}
.y42_c00163{bottom:737.506667pt;}
.y40_c00163{bottom:746.840000pt;}
.y3f_c00163{bottom:747.800000pt;}
.y3e_c00163{bottom:748.173333pt;}
.y3d_c00163{bottom:749.506667pt;}
.y3c_c00163{bottom:759.226667pt;}
.y3b_c00163{bottom:760.173333pt;}
.y3a_c00163{bottom:760.560000pt;}
.y39_c00163{bottom:761.893333pt;}
.y37_c00163{bottom:776.733333pt;}
.y38_c00163{bottom:777.306667pt;}
.y36_c00163{bottom:789.693333pt;}
.y35_c00163{bottom:790.640000pt;}
.y34_c00163{bottom:791.600000pt;}
.y32_c00163{bottom:811.973333pt;}
.y33_c00163{bottom:812.933333pt;}
.y20_c00163{bottom:841.693333pt;}
.y1f_c00163{bottom:857.106667pt;}
.y1e_c00163{bottom:857.893333pt;}
.y1d_c00163{bottom:858.640000pt;}
.y1c_c00163{bottom:859.026667pt;}
.y1a_c00163{bottom:874.440000pt;}
.y1b_c00163{bottom:875.400000pt;}
.y19_c00163{bottom:876.360000pt;}
.y15_c00163{bottom:891.773333pt;}
.y18_c00163{bottom:891.973333pt;}
.y16_c00163{bottom:892.733333pt;}
.y17_c00163{bottom:893.306667pt;}
.y13_c00163{bottom:893.693333pt;}
.y14_c00163{bottom:894.640000pt;}
.y12_c00163{bottom:907.026667pt;}
.yf_c00163{bottom:909.106667pt;}
.ye_c00163{bottom:910.066667pt;}
.y11_c00163{bottom:910.640000pt;}
.y10_c00163{bottom:911.026667pt;}
.yd_c00163{bottom:912.360000pt;}
.yb_c00163{bottom:925.693333pt;}
.y7_c00163{bottom:926.440000pt;}
.yc_c00163{bottom:926.640000pt;}
.y8_c00163{bottom:927.400000pt;}
.ya_c00163{bottom:927.973333pt;}
.y9_c00163{bottom:928.360000pt;}
.y4_c00163{bottom:943.773333pt;}
.y5_c00163{bottom:944.733333pt;}
.y3_c00163{bottom:945.693333pt;}
.y6_c00163{bottom:946.640000pt;}
.y1_c00163{bottom:977.693333pt;}
.y2_c00163{bottom:979.600000pt;}
.h9_c00163{height:3.739141pt;}
.h8_c00163{height:12.988594pt;}
.h7_c00163{height:14.890964pt;}
.h6_c00163{height:20.466875pt;}
.h2_c00163{height:22.303646pt;}
.h5_c00163{height:27.879557pt;}
.h1_c00163{height:31.618698pt;}
.h4_c00163{height:35.357839pt;}
.h3_c00163{height:39.031380pt;}
.h0_c00163{height:1186.666667pt;}
.w0_c00163{width:782.666667pt;}
.x0_c00163{left:0.000000pt;}
.x5b_c00163{left:130.666667pt;}
.x35_c00163{left:134.666667pt;}
.x14_c00163{left:136.373333pt;}
.x1_c00163{left:137.706667pt;}
.x50_c00163{left:145.333333pt;}
.x3f_c00163{left:149.333333pt;}
.x3_c00163{left:150.293333pt;}
.x4c_c00163{left:152.000000pt;}
.x64_c00163{left:170.666667pt;}
.x51_c00163{left:173.333333pt;}
.x36_c00163{left:174.666667pt;}
.x15_c00163{left:176.000000pt;}
.x40_c00163{left:178.293333pt;}
.x2a_c00163{left:180.960000pt;}
.x65_c00163{left:189.333333pt;}
.x4d_c00163{left:192.373333pt;}
.x4_c00163{left:197.706667pt;}
.x5c_c00163{left:211.626667pt;}
.x1f_c00163{left:216.373333pt;}
.x91_c00163{left:218.293333pt;}
.x8a_c00163{left:219.626667pt;}
.x66_c00163{left:221.333333pt;}
.x70_c00163{left:224.000000pt;}
.x2b_c00163{left:226.666667pt;}
.x5d_c00163{left:228.373333pt;}
.x16_c00163{left:229.333333pt;}
.x9d_c00163{left:231.040000pt;}
.x41_c00163{left:232.960000pt;}
.x52_c00163{left:238.293333pt;}
.x92_c00163{left:240.000000pt;}
.x37_c00163{left:241.706667pt;}
.x8e_c00163{left:244.373333pt;}
.x85_c00163{left:245.706667pt;}
.x8b_c00163{left:248.373333pt;}
.x5e_c00163{left:252.373333pt;}
.xa7_c00163{left:253.333333pt;}
.xa4_c00163{left:254.293333pt;}
.x5_c00163{left:256.000000pt;}
.xa6_c00163{left:257.333333pt;}
.x42_c00163{left:260.000000pt;}
.x20_c00163{left:261.706667pt;}
.xa1_c00163{left:262.666667pt;}
.x2c_c00163{left:264.000000pt;}
.x6_c00163{left:265.333333pt;}
.x9e_c00163{left:266.293333pt;}
.x93_c00163{left:268.373333pt;}
.xa5_c00163{left:269.333333pt;}
.x78_c00163{left:272.373333pt;}
.xa2_c00163{left:274.666667pt;}
.x94_c00163{left:276.000000pt;}
.x7_c00163{left:278.293333pt;}
.x8c_c00163{left:280.000000pt;}
.x86_c00163{left:281.333333pt;}
.x9f_c00163{left:282.293333pt;}
.x38_c00163{left:285.333333pt;}
.x67_c00163{left:287.040000pt;}
.x8_c00163{left:290.666667pt;}
.x43_c00163{left:294.666667pt;}
.x8d_c00163{left:295.626667pt;}
.x87_c00163{left:296.960000pt;}
.xa3_c00163{left:298.666667pt;}
.x98_c00163{left:299.626667pt;}
.x21_c00163{left:301.706667pt;}
.x17_c00163{left:302.666667pt;}
.x9_c00163{left:304.000000pt;}
.xa9_c00163{left:305.333333pt;}
.x53_c00163{left:311.040000pt;}
.x5f_c00163{left:312.000000pt;}
.xa8_c00163{left:313.706667pt;}
.x4e_c00163{left:314.666667pt;}
.xa_c00163{left:316.000000pt;}
.x68_c00163{left:317.333333pt;}
.x39_c00163{left:324.000000pt;}
.xb_c00163{left:329.333333pt;}
.x69_c00163{left:332.000000pt;}
.x22_c00163{left:335.040000pt;}
.x3a_c00163{left:341.333333pt;}
.xc_c00163{left:345.333333pt;}
.x6a_c00163{left:347.040000pt;}
.x7d_c00163{left:350.666667pt;}
.x54_c00163{left:353.706667pt;}
.x2_c00163{left:357.333333pt;}
.x23_c00163{left:358.293333pt;}
.x76_c00163{left:366.666667pt;}
.x99_c00163{left:369.333333pt;}
.x7f_c00163{left:372.960000pt;}
.x3b_c00163{left:374.666667pt;}
.x71_c00163{left:379.040000pt;}
.x2d_c00163{left:380.000000pt;}
.x82_c00163{left:381.333333pt;}
.x88_c00163{left:382.666667pt;}
.x4f_c00163{left:383.626667pt;}
.x44_c00163{left:384.960000pt;}
.x55_c00163{left:387.040000pt;}
.x18_c00163{left:391.040000pt;}
.x6b_c00163{left:392.000000pt;}
.x24_c00163{left:394.666667pt;}
.x7e_c00163{left:396.000000pt;}
.xd_c00163{left:400.000000pt;}
.x45_c00163{left:401.706667pt;}
.x79_c00163{left:404.373333pt;}
.x60_c00163{left:405.706667pt;}
.x77_c00163{left:407.426667pt;}
.x56_c00163{left:410.293333pt;}
.x19_c00163{left:414.666667pt;}
.x72_c00163{left:416.000000pt;}
.x7a_c00163{left:417.333333pt;}
.x2e_c00163{left:421.706667pt;}
.x80_c00163{left:425.333333pt;}
.x95_c00163{left:428.000000pt;}
.x61_c00163{left:429.333333pt;}
.xaa_c00163{left:431.040000pt;}
.x46_c00163{left:432.373333pt;}
.x84_c00163{left:433.333333pt;}
.x25_c00163{left:434.666667pt;}
.xe_c00163{left:436.000000pt;}
.xa0_c00163{left:438.666667pt;}
.x9a_c00163{left:440.000000pt;}
.x7b_c00163{left:442.666667pt;}
.x3c_c00163{left:443.626667pt;}
.x57_c00163{left:446.293333pt;}
.x73_c00163{left:451.626667pt;}
.x6c_c00163{left:459.626667pt;}
.x1a_c00163{left:462.293333pt;}
.x2f_c00163{left:464.373333pt;}
.x3d_c00163{left:475.040000pt;}
.x96_c00163{left:478.666667pt;}
.x9b_c00163{left:480.000000pt;}
.x47_c00163{left:481.706667pt;}
.x26_c00163{left:482.666667pt;}
.x8f_c00163{left:484.000000pt;}
.xf_c00163{left:485.333333pt;}
.x6d_c00163{left:486.666667pt;}
.x62_c00163{left:491.626667pt;}
.x7c_c00163{left:497.906667pt;}
.x30_c00163{left:499.040000pt;}
.x1b_c00163{left:500.000000pt;}
.x10_c00163{left:501.706667pt;}
.x58_c00163{left:508.960000pt;}
.x48_c00163{left:516.373333pt;}
.x31_c00163{left:523.626667pt;}
.x6e_c00163{left:528.373333pt;}
.x27_c00163{left:532.373333pt;}
.x74_c00163{left:534.293333pt;}
.x49_c00163{left:540.000000pt;}
.x83_c00163{left:542.666667pt;}
.x90_c00163{left:544.000000pt;}
.x81_c00163{left:545.333333pt;}
.x89_c00163{left:547.040000pt;}
.x97_c00163{left:548.000000pt;}
.x11_c00163{left:550.666667pt;}
.x9c_c00163{left:552.000000pt;}
.x1c_c00163{left:556.373333pt;}
.x3e_c00163{left:559.626667pt;}
.x32_c00163{left:562.293333pt;}
.x28_c00163{left:564.373333pt;}
.x6f_c00163{left:567.626667pt;}
.x12_c00163{left:582.293333pt;}
.x1d_c00163{left:585.333333pt;}
.x29_c00163{left:588.000000pt;}
.x4a_c00163{left:593.333333pt;}
.x33_c00163{left:601.706667pt;}
.x59_c00163{left:606.666667pt;}
.x75_c00163{left:610.666667pt;}
.x63_c00163{left:612.000000pt;}
.x13_c00163{left:614.666667pt;}
.x4b_c00163{left:616.373333pt;}
.x1e_c00163{left:624.960000pt;}
.x5a_c00163{left:627.040000pt;}
.x34_c00163{left:628.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_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_a7c3011a7d1a3287da264515.woff2')format("woff");}.ff1_c00164{font-family:ff1_c00164;line-height:1.688965;font-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_c00164{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m4_c00164{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m39_c00164{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mcb_c00164{transform:matrix(0.370130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370130,0.000000,0.000000,0.250000,0,0);}
.m8e_c00164{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m0_c00164{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.maf_c00164{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m4a_c00164{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m54_c00164{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m22_c00164{transform:matrix(0.376050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376050,0.000000,0.000000,0.250000,0,0);}
.m75_c00164{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.me4_c00164{transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);}
.m4d_c00164{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m59_c00164{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m14_c00164{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.med_c00164{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m6e_c00164{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m8d_c00164{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mbf_c00164{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m63_c00164{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m49_c00164{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mca_c00164{transform:matrix(0.395228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395228,0.000000,0.000000,0.250000,0,0);}
.m67_c00164{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.mc1_c00164{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.mda_c00164{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m73_c00164{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.me7_c00164{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m3a_c00164{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mf8_c00164{transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);}
.mc3_c00164{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.m11_c00164{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m61_c00164{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.m92_c00164{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m43_c00164{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.maa_c00164{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m97_c00164{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m44_c00164{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m32_c00164{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.me2_c00164{transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);}
.ma3_c00164{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m90_c00164{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m7d_c00164{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.m29_c00164{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m60_c00164{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m42_c00164{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m9e_c00164{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m56_c00164{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m6f_c00164{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m58_c00164{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.mb3_c00164{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m86_c00164{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m102_c00164{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m70_c00164{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m12_c00164{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mdf_c00164{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m45_c00164{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.me6_c00164{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mec_c00164{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m76_c00164{transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);}
.mf6_c00164{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m72_c00164{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.m16_c00164{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.ma5_c00164{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.me3_c00164{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m19_c00164{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m51_c00164{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mdc_c00164{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.mf1_c00164{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m21_c00164{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m69_c00164{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m87_c00164{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m8a_c00164{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m3b_c00164{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m78_c00164{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m7_c00164{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m25_c00164{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.mce_c00164{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m93_c00164{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m2d_c00164{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m15_c00164{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m3f_c00164{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.mb5_c00164{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m82_c00164{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.m34_c00164{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m31_c00164{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mf0_c00164{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m2a_c00164{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mb6_c00164{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m91_c00164{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.mc4_c00164{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.md7_c00164{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.mf7_c00164{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.meb_c00164{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.md2_c00164{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m8f_c00164{transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);}
.m6b_c00164{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.m79_c00164{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.m20_c00164{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m9f_c00164{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m68_c00164{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m5f_c00164{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m48_c00164{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.mff_c00164{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m53_c00164{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mf2_c00164{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.md8_c00164{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m7a_c00164{transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);}
.m3_c00164{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.ma2_c00164{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m4e_c00164{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.mee_c00164{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.md4_c00164{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m101_c00164{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m50_c00164{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m7e_c00164{transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);}
.m4f_c00164{transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);}
.m94_c00164{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.mbd_c00164{transform:matrix(0.471176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471176,0.000000,0.000000,0.250000,0,0);}
.m57_c00164{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m24_c00164{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m84_c00164{transform:matrix(0.478235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478235,0.000000,0.000000,0.250000,0,0);}
.mf3_c00164{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m10_c00164{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m1c_c00164{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m5e_c00164{transform:matrix(0.481176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481176,0.000000,0.000000,0.250000,0,0);}
.m2e_c00164{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mcc_c00164{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m52_c00164{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.mea_c00164{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m27_c00164{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m18_c00164{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mc8_c00164{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mb0_c00164{transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);}
.m36_c00164{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m37_c00164{transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);}
.m8_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);}
.mb4_c00164{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mbe_c00164{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m77_c00164{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.mb1_c00164{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m8c_c00164{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.ma9_c00164{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m2_c00164{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m1b_c00164{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mde_c00164{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.ma7_c00164{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.mf_c00164{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m23_c00164{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m40_c00164{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mdd_c00164{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_c00164{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m1e_c00164{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m5d_c00164{transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);}
.mfc_c00164{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m9_c00164{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.ma0_c00164{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mbb_c00164{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.me1_c00164{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m55_c00164{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m9c_c00164{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m9d_c00164{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mc7_c00164{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m2f_c00164{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m8b_c00164{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mac_c00164{transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);}
.ma1_c00164{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.md9_c00164{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m6_c00164{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m46_c00164{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m95_c00164{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m17_c00164{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m98_c00164{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m33_c00164{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mfa_c00164{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mba_c00164{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mc_c00164{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m62_c00164{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.me_c00164{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mb8_c00164{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m3d_c00164{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m85_c00164{transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);}
.mb2_c00164{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m41_c00164{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.md_c00164{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mf5_c00164{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.ma4_c00164{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m99_c00164{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.mae_c00164{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m7f_c00164{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.me5_c00164{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.m65_c00164{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m64_c00164{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mc9_c00164{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m5b_c00164{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.m47_c00164{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m9a_c00164{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.mb_c00164{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m1d_c00164{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m83_c00164{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m2b_c00164{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m100_c00164{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mfb_c00164{transform:matrix(0.576994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576994,0.000000,0.000000,0.250000,0,0);}
.m6a_c00164{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.mb7_c00164{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mcf_c00164{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.md3_c00164{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m2c_c00164{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.md1_c00164{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.ma8_c00164{transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);}
.m3e_c00164{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.md5_c00164{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.mfd_c00164{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.mad_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);}
.m1_c00164{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m5c_c00164{transform:matrix(0.608921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608921,0.000000,0.000000,0.250000,0,0);}
.m5_c00164{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m26_c00164{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m80_c00164{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m66_c00164{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m71_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);}
.m89_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);}
.mab_c00164{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m7b_c00164{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.me8_c00164{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.md0_c00164{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m30_c00164{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.mf4_c00164{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m6c_c00164{transform:matrix(0.643672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643672,0.000000,0.000000,0.250000,0,0);}
.m38_c00164{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.mc6_c00164{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m1a_c00164{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m6d_c00164{transform:matrix(0.679461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679461,0.000000,0.000000,0.250000,0,0);}
.mc5_c00164{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m81_c00164{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.me0_c00164{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m9b_c00164{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);}
.mc0_c00164{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.me9_c00164{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.mdb_c00164{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.md6_c00164{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m3c_c00164{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m74_c00164{transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);}
.mef_c00164{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m7c_c00164{transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);}
.mf9_c00164{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m35_c00164{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m13_c00164{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.ma_c00164{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m1f_c00164{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mbc_c00164{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mfe_c00164{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mb9_c00164{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.ma6_c00164{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m5a_c00164{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mc2_c00164{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mcd_c00164{transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);}
.m4c_c00164{transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);}
.m96_c00164{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m88_c00164{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00164{vertical-align:0.000000px;}
.ls0_c00164{letter-spacing:0.000000px;}
.sc__c00164{text-shadow:none;}
.sc0_c00164{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00164{-webkit-text-stroke:0px transparent;}
.sc0_c00164{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00164{word-spacing:-8.988101px;}
.ws0_c00164{word-spacing:-6.125944px;}
.ws1_c00164{word-spacing:-3.265311px;}
.ws3_c00164{word-spacing:0.000000px;}
.fc0_c00164{color:transparent;}
.fs6_c00164{font-size:3.420000px;}
.fs7_c00164{font-size:13.620000px;}
.fs5_c00164{font-size:18.720000px;}
.fs1_c00164{font-size:20.400000px;}
.fs4_c00164{font-size:25.500000px;}
.fs2_c00164{font-size:28.920000px;}
.fs0_c00164{font-size:32.340000px;}
.fs3_c00164{font-size:35.700000px;}
.y0_c00164{bottom:0.000000px;}
.yca_c00164{bottom:251.745000px;}
.yc9_c00164{bottom:252.825000px;}
.ycc_c00164{bottom:253.050000px;}
.yc8_c00164{bottom:253.905000px;}
.ycb_c00164{bottom:254.970000px;}
.yc6_c00164{bottom:271.245000px;}
.yc2_c00164{bottom:272.745000px;}
.yc4_c00164{bottom:273.405000px;}
.yc3_c00164{bottom:273.630000px;}
.yc5_c00164{bottom:273.825000px;}
.yc7_c00164{bottom:274.905000px;}
.yc0_c00164{bottom:290.745000px;}
.ybb_c00164{bottom:290.970000px;}
.yc1_c00164{bottom:292.245000px;}
.ybd_c00164{bottom:292.905000px;}
.ybf_c00164{bottom:293.130000px;}
.ybe_c00164{bottom:293.970000px;}
.ybc_c00164{bottom:294.405000px;}
.yb8_c00164{bottom:309.405000px;}
.yb5_c00164{bottom:310.905000px;}
.yba_c00164{bottom:311.325000px;}
.yb7_c00164{bottom:311.745000px;}
.yb6_c00164{bottom:312.630000px;}
.yb9_c00164{bottom:312.825000px;}
.yb4_c00164{bottom:313.905000px;}
.yb0_c00164{bottom:329.325000px;}
.yb3_c00164{bottom:330.405000px;}
.yb2_c00164{bottom:331.245000px;}
.yb1_c00164{bottom:332.130000px;}
.yaf_c00164{bottom:332.325000px;}
.yae_c00164{bottom:333.405000px;}
.yac_c00164{bottom:349.470000px;}
.ya7_c00164{bottom:350.745000px;}
.yad_c00164{bottom:351.630000px;}
.yaa_c00164{bottom:351.825000px;}
.yab_c00164{bottom:352.470000px;}
.ya9_c00164{bottom:352.905000px;}
.ya8_c00164{bottom:354.420000px;}
.ya0_c00164{bottom:375.825000px;}
.ya6_c00164{bottom:376.050000px;}
.ya4_c00164{bottom:376.905000px;}
.ya3_c00164{bottom:377.130000px;}
.ya2_c00164{bottom:377.970000px;}
.ya1_c00164{bottom:378.195000px;}
.ya5_c00164{bottom:379.050000px;}
.y9d_c00164{bottom:390.825000px;}
.y9e_c00164{bottom:391.050000px;}
.y9b_c00164{bottom:391.905000px;}
.y9a_c00164{bottom:392.130000px;}
.y9c_c00164{bottom:392.970000px;}
.y9f_c00164{bottom:394.050000px;}
.y98_c00164{bottom:406.050000px;}
.y96_c00164{bottom:406.905000px;}
.y97_c00164{bottom:408.195000px;}
.y99_c00164{bottom:409.050000px;}
.y91_c00164{bottom:420.825000px;}
.y94_c00164{bottom:421.905000px;}
.y92_c00164{bottom:422.130000px;}
.y95_c00164{bottom:422.970000px;}
.y90_c00164{bottom:423.195000px;}
.y93_c00164{bottom:424.050000px;}
.y8c_c00164{bottom:443.745000px;}
.y8d_c00164{bottom:445.245000px;}
.y8b_c00164{bottom:445.905000px;}
.y8e_c00164{bottom:446.970000px;}
.y8f_c00164{bottom:447.405000px;}
.y8a_c00164{bottom:463.470000px;}
.y88_c00164{bottom:464.745000px;}
.y89_c00164{bottom:465.630000px;}
.y87_c00164{bottom:466.905000px;}
.y86_c00164{bottom:484.245000px;}
.y84_c00164{bottom:486.405000px;}
.y85_c00164{bottom:486.420000px;}
.y82_c00164{bottom:503.745000px;}
.y83_c00164{bottom:505.905000px;}
.y81_c00164{bottom:523.245000px;}
.y7f_c00164{bottom:524.325000px;}
.y80_c00164{bottom:524.970000px;}
.y7e_c00164{bottom:525.405000px;}
.y7b_c00164{bottom:542.745000px;}
.y7a_c00164{bottom:544.905000px;}
.y7c_c00164{bottom:545.970000px;}
.y7d_c00164{bottom:546.405000px;}
.y74_c00164{bottom:562.245000px;}
.y77_c00164{bottom:563.325000px;}
.y73_c00164{bottom:563.745000px;}
.y78_c00164{bottom:564.405000px;}
.y79_c00164{bottom:564.630000px;}
.y76_c00164{bottom:565.470000px;}
.y75_c00164{bottom:565.905000px;}
.y72_c00164{bottom:581.745000px;}
.y70_c00164{bottom:583.050000px;}
.y6f_c00164{bottom:583.245000px;}
.y71_c00164{bottom:583.905000px;}
.y6d_c00164{bottom:585.405000px;}
.y6e_c00164{bottom:585.420000px;}
.y6c_c00164{bottom:602.745000px;}
.y6a_c00164{bottom:603.630000px;}
.y69_c00164{bottom:604.905000px;}
.y6b_c00164{bottom:604.920000px;}
.y68_c00164{bottom:621.405000px;}
.y65_c00164{bottom:622.245000px;}
.y67_c00164{bottom:623.325000px;}
.y66_c00164{bottom:624.420000px;}
.y64_c00164{bottom:641.745000px;}
.y60_c00164{bottom:661.245000px;}
.y5d_c00164{bottom:662.745000px;}
.y61_c00164{bottom:663.405000px;}
.y63_c00164{bottom:663.825000px;}
.y62_c00164{bottom:664.470000px;}
.y5f_c00164{bottom:664.905000px;}
.y5e_c00164{bottom:664.920000px;}
.y59_c00164{bottom:689.325000px;}
.y5b_c00164{bottom:689.550000px;}
.y5a_c00164{bottom:689.970000px;}
.y56_c00164{bottom:690.405000px;}
.y58_c00164{bottom:691.050000px;}
.y57_c00164{bottom:691.470000px;}
.y5c_c00164{bottom:692.550000px;}
.y52_c00164{bottom:708.825000px;}
.y54_c00164{bottom:709.905000px;}
.y55_c00164{bottom:710.970000px;}
.y53_c00164{bottom:712.050000px;}
.y51_c00164{bottom:736.245000px;}
.y50_c00164{bottom:738.405000px;}
.y48_c00164{bottom:772.905000px;}
.y4f_c00164{bottom:773.970000px;}
.y4b_c00164{bottom:774.405000px;}
.y49_c00164{bottom:775.245000px;}
.y4d_c00164{bottom:776.130000px;}
.y4e_c00164{bottom:776.325000px;}
.y4c_c00164{bottom:776.970000px;}
.y4a_c00164{bottom:777.405000px;}
.y46_c00164{bottom:793.470000px;}
.y47_c00164{bottom:794.745000px;}
.y45_c00164{bottom:795.630000px;}
.y44_c00164{bottom:795.825000px;}
.y43_c00164{bottom:796.905000px;}
.y3f_c00164{bottom:814.245000px;}
.y40_c00164{bottom:815.325000px;}
.y41_c00164{bottom:815.970000px;}
.y3e_c00164{bottom:816.405000px;}
.y42_c00164{bottom:816.630000px;}
.y38_c00164{bottom:833.745000px;}
.y3c_c00164{bottom:833.970000px;}
.y3d_c00164{bottom:834.405000px;}
.y39_c00164{bottom:834.630000px;}
.y3b_c00164{bottom:834.825000px;}
.y37_c00164{bottom:835.470000px;}
.y3a_c00164{bottom:835.905000px;}
.y31_c00164{bottom:852.405000px;}
.y36_c00164{bottom:852.825000px;}
.y33_c00164{bottom:853.245000px;}
.y35_c00164{bottom:854.325000px;}
.y32_c00164{bottom:855.405000px;}
.y34_c00164{bottom:855.630000px;}
.y2e_c00164{bottom:874.245000px;}
.y2d_c00164{bottom:875.130000px;}
.y2f_c00164{bottom:875.325000px;}
.y30_c00164{bottom:876.405000px;}
.y2a_c00164{bottom:902.745000px;}
.y2b_c00164{bottom:903.825000px;}
.y29_c00164{bottom:904.905000px;}
.y2c_c00164{bottom:905.130000px;}
.y28_c00164{bottom:921.405000px;}
.y27_c00164{bottom:922.245000px;}
.y26_c00164{bottom:924.405000px;}
.y22_c00164{bottom:940.905000px;}
.y20_c00164{bottom:941.745000px;}
.y23_c00164{bottom:942.825000px;}
.y24_c00164{bottom:943.905000px;}
.y21_c00164{bottom:944.130000px;}
.y25_c00164{bottom:944.970000px;}
.y1f_c00164{bottom:963.405000px;}
.y1e_c00164{bottom:982.245000px;}
.y1d_c00164{bottom:983.325000px;}
.y1a_c00164{bottom:983.970000px;}
.y1b_c00164{bottom:984.405000px;}
.y1c_c00164{bottom:985.470000px;}
.y19_c00164{bottom:1001.325000px;}
.y18_c00164{bottom:1001.745000px;}
.y17_c00164{bottom:1002.630000px;}
.y16_c00164{bottom:1002.825000px;}
.y14_c00164{bottom:1003.905000px;}
.y15_c00164{bottom:1004.970000px;}
.y11_c00164{bottom:1021.245000px;}
.y12_c00164{bottom:1022.130000px;}
.y10_c00164{bottom:1022.325000px;}
.y13_c00164{bottom:1022.970000px;}
.yf_c00164{bottom:1023.405000px;}
.yd_c00164{bottom:1039.905000px;}
.yb_c00164{bottom:1040.745000px;}
.yc_c00164{bottom:1041.630000px;}
.ya_c00164{bottom:1042.905000px;}
.ye_c00164{bottom:1043.970000px;}
.y8_c00164{bottom:1059.405000px;}
.y5_c00164{bottom:1060.245000px;}
.y7_c00164{bottom:1061.130000px;}
.y4_c00164{bottom:1061.325000px;}
.y3_c00164{bottom:1062.405000px;}
.y6_c00164{bottom:1063.470000px;}
.y9_c00164{bottom:1063.905000px;}
.y1_c00164{bottom:1098.825000px;}
.y2_c00164{bottom:1100.550000px;}
.h7_c00164{height:4.206533px;}
.h8_c00164{height:16.752334px;}
.h6_c00164{height:23.025234px;}
.h2_c00164{height:25.091602px;}
.h5_c00164{height:31.364502px;}
.h3_c00164{height:35.571035px;}
.h1_c00164{height:39.777568px;}
.h4_c00164{height:43.910303px;}
.h0_c00164{height:1335.000000px;}
.w0_c00164{width:880.500000px;}
.x0_c00164{left:0.000000px;}
.x3_c00164{left:151.500000px;}
.x59_c00164{left:152.580000px;}
.xd3_c00164{left:154.500000px;}
.xf1_c00164{left:155.580000px;}
.x72_c00164{left:160.080000px;}
.x93_c00164{left:165.645000px;}
.x12_c00164{left:168.000000px;}
.x9c_c00164{left:169.920000px;}
.x37_c00164{left:171.420000px;}
.x29_c00164{left:179.580000px;}
.x1f_c00164{left:181.920000px;}
.x63_c00164{left:183.000000px;}
.x5a_c00164{left:184.080000px;}
.xcd_c00164{left:185.580000px;}
.x49_c00164{left:189.000000px;}
.xbb_c00164{left:193.500000px;}
.xb7_c00164{left:195.000000px;}
.xc6_c00164{left:196.500000px;}
.x4_c00164{left:198.420000px;}
.xeb_c00164{left:199.920000px;}
.x6d_c00164{left:202.500000px;}
.xd4_c00164{left:206.580000px;}
.x40_c00164{left:208.500000px;}
.x9d_c00164{left:210.420000px;}
.x8a_c00164{left:217.920000px;}
.xc7_c00164{left:219.000000px;}
.x2a_c00164{left:221.580000px;}
.xe9_c00164{left:226.500000px;}
.xbe_c00164{left:227.580000px;}
.x64_c00164{left:229.500000px;}
.xb1_c00164{left:230.580000px;}
.x5b_c00164{left:232.500000px;}
.x13_c00164{left:234.000000px;}
.x6e_c00164{left:235.500000px;}
.x38_c00164{left:236.580000px;}
.x41_c00164{left:238.920000px;}
.x2b_c00164{left:240.000000px;}
.x81_c00164{left:241.920000px;}
.x94_c00164{left:243.000000px;}
.x52_c00164{left:245.580000px;}
.xa7_c00164{left:249.000000px;}
.xbf_c00164{left:250.500000px;}
.xd7_c00164{left:253.500000px;}
.x39_c00164{left:255.420000px;}
.x14_c00164{left:256.500000px;}
.x7a_c00164{left:258.000000px;}
.xa4_c00164{left:259.500000px;}
.xab_c00164{left:261.000000px;}
.xce_c00164{left:262.500000px;}
.x2c_c00164{left:268.500000px;}
.x15_c00164{left:270.420000px;}
.xee_c00164{left:273.000000px;}
.xc8_c00164{left:275.580000px;}
.x53_c00164{left:277.080000px;}
.x5_c00164{left:278.580000px;}
.x65_c00164{left:280.500000px;}
.x3a_c00164{left:282.000000px;}
.x20_c00164{left:283.500000px;}
.x88_c00164{left:284.580000px;}
.x42_c00164{left:289.500000px;}
.x9e_c00164{left:291.000000px;}
.xdc_c00164{left:292.500000px;}
.x4a_c00164{left:293.580000px;}
.x95_c00164{left:300.420000px;}
.x6_c00164{left:301.500000px;}
.x16_c00164{left:306.420000px;}
.xd8_c00164{left:307.500000px;}
.x82_c00164{left:309.420000px;}
.x5c_c00164{left:313.500000px;}
.x2d_c00164{left:315.000000px;}
.xdd_c00164{left:316.920000px;}
.x54_c00164{left:319.500000px;}
.x21_c00164{left:320.580000px;}
.x73_c00164{left:322.920000px;}
.x8b_c00164{left:324.420000px;}
.xd5_c00164{left:325.500000px;}
.xc9_c00164{left:327.000000px;}
.x7_c00164{left:328.500000px;}
.xe6_c00164{left:332.580000px;}
.x2e_c00164{left:334.500000px;}
.xca_c00164{left:337.500000px;}
.xf2_c00164{left:339.000000px;}
.xc0_c00164{left:342.000000px;}
.xd9_c00164{left:343.500000px;}
.x5d_c00164{left:345.000000px;}
.x66_c00164{left:346.500000px;}
.xcf_c00164{left:348.000000px;}
.xa8_c00164{left:349.080000px;}
.xe7_c00164{left:351.420000px;}
.x3b_c00164{left:355.500000px;}
.x43_c00164{left:358.080000px;}
.xd6_c00164{left:360.420000px;}
.x2f_c00164{left:361.500000px;}
.x96_c00164{left:363.420000px;}
.x8_c00164{left:367.500000px;}
.x4b_c00164{left:369.000000px;}
.x67_c00164{left:370.500000px;}
.xf3_c00164{left:373.500000px;}
.xb2_c00164{left:374.580000px;}
.x3c_c00164{left:376.500000px;}
.xbc_c00164{left:378.000000px;}
.xb8_c00164{left:382.080000px;}
.x68_c00164{left:384.420000px;}
.xa5_c00164{left:385.500000px;}
.x7b_c00164{left:387.000000px;}
.x55_c00164{left:388.080000px;}
.x44_c00164{left:390.000000px;}
.x74_c00164{left:391.500000px;}
.xde_c00164{left:393.420000px;}
.x17_c00164{left:394.920000px;}
.x97_c00164{left:396.000000px;}
.x2_c00164{left:399.000000px;}
.x83_c00164{left:400.500000px;}
.x22_c00164{left:402.000000px;}
.x56_c00164{left:403.920000px;}
.x30_c00164{left:405.000000px;}
.x9f_c00164{left:407.145000px;}
.xe8_c00164{left:409.920000px;}
.xec_c00164{left:411.000000px;}
.x4c_c00164{left:414.000000px;}
.xb3_c00164{left:416.580000px;}
.x31_c00164{left:418.920000px;}
.x84_c00164{left:420.000000px;}
.x45_c00164{left:421.500000px;}
.x9_c00164{left:422.580000px;}
.x5e_c00164{left:424.080000px;}
.xd0_c00164{left:427.500000px;}
.x23_c00164{left:429.420000px;}
.x98_c00164{left:430.500000px;}
.x75_c00164{left:432.420000px;}
.xef_c00164{left:436.920000px;}
.xa9_c00164{left:438.000000px;}
.xa_c00164{left:441.420000px;}
.x18_c00164{left:445.080000px;}
.xcb_c00164{left:447.420000px;}
.x85_c00164{left:453.000000px;}
.xea_c00164{left:454.500000px;}
.xac_c00164{left:459.000000px;}
.x5f_c00164{left:460.080000px;}
.xdf_c00164{left:462.000000px;}
.x99_c00164{left:463.500000px;}
.x4d_c00164{left:466.500000px;}
.xb_c00164{left:468.420000px;}
.xc2_c00164{left:469.920000px;}
.xe0_c00164{left:472.500000px;}
.xc1_c00164{left:473.775000px;}
.x32_c00164{left:475.500000px;}
.x8c_c00164{left:478.080000px;}
.x3d_c00164{left:481.500000px;}
.x7c_c00164{left:484.500000px;}
.xa0_c00164{left:486.000000px;}
.xb4_c00164{left:487.080000px;}
.x60_c00164{left:490.920000px;}
.x89_c00164{left:492.000000px;}
.x46_c00164{left:496.920000px;}
.x9a_c00164{left:498.000000px;}
.x24_c00164{left:499.920000px;}
.x19_c00164{left:504.420000px;}
.x8d_c00164{left:507.000000px;}
.xa1_c00164{left:509.580000px;}
.x69_c00164{left:513.420000px;}
.xad_c00164{left:514.500000px;}
.xa6_c00164{left:516.420000px;}
.x33_c00164{left:518.580000px;}
.xc_c00164{left:520.080000px;}
.x57_c00164{left:522.000000px;}
.x4e_c00164{left:523.920000px;}
.x47_c00164{left:525.000000px;}
.x9b_c00164{left:528.645000px;}
.x6f_c00164{left:530.580000px;}
.xe1_c00164{left:533.580000px;}
.x76_c00164{left:535.500000px;}
.xd_c00164{left:538.920000px;}
.xcc_c00164{left:541.080000px;}
.x1a_c00164{left:543.000000px;}
.x25_c00164{left:544.920000px;}
.x7d_c00164{left:549.000000px;}
.x58_c00164{left:552.000000px;}
.x3e_c00164{left:555.420000px;}
.xae_c00164{left:559.920000px;}
.x8e_c00164{left:562.080000px;}
.xe2_c00164{left:563.355000px;}
.xe_c00164{left:565.500000px;}
.x1b_c00164{left:570.000000px;}
.xaa_c00164{left:571.080000px;}
.x7e_c00164{left:573.000000px;}
.x61_c00164{left:574.920000px;}
.x26_c00164{left:576.000000px;}
.xb5_c00164{left:580.500000px;}
.x48_c00164{left:582.000000px;}
.xd1_c00164{left:583.080000px;}
.x7f_c00164{left:586.500000px;}
.x8f_c00164{left:591.000000px;}
.xb9_c00164{left:592.500000px;}
.x70_c00164{left:594.000000px;}
.xc3_c00164{left:601.500000px;}
.xf4_c00164{left:602.580000px;}
.xe3_c00164{left:604.500000px;}
.x34_c00164{left:609.000000px;}
.xf_c00164{left:610.080000px;}
.x77_c00164{left:613.080000px;}
.xf0_c00164{left:615.420000px;}
.xa2_c00164{left:616.500000px;}
.x4f_c00164{left:618.000000px;}
.x6a_c00164{left:619.080000px;}
.x1c_c00164{left:621.000000px;}
.x3f_c00164{left:622.500000px;}
.x35_c00164{left:625.920000px;}
.xda_c00164{left:627.420000px;}
.xe4_c00164{left:634.080000px;}
.x6b_c00164{left:639.000000px;}
.x10_c00164{left:640.500000px;}
.x86_c00164{left:643.500000px;}
.x80_c00164{left:648.420000px;}
.x90_c00164{left:649.500000px;}
.x78_c00164{left:653.580000px;}
.x27_c00164{left:656.580000px;}
.xb6_c00164{left:658.080000px;}
.xbd_c00164{left:660.000000px;}
.xe5_c00164{left:661.500000px;}
.xa3_c00164{left:663.420000px;}
.x62_c00164{left:664.920000px;}
.xc4_c00164{left:666.000000px;}
.xba_c00164{left:669.000000px;}
.x91_c00164{left:673.920000px;}
.xd2_c00164{left:675.000000px;}
.xaf_c00164{left:677.580000px;}
.x36_c00164{left:679.500000px;}
.xf5_c00164{left:681.420000px;}
.x50_c00164{left:682.920000px;}
.x11_c00164{left:684.000000px;}
.x79_c00164{left:687.420000px;}
.x1d_c00164{left:688.500000px;}
.x87_c00164{left:689.580000px;}
.xed_c00164{left:692.580000px;}
.x92_c00164{left:694.500000px;}
.xf7_c00164{left:700.500000px;}
.x6c_c00164{left:702.000000px;}
.xc5_c00164{left:704.580000px;}
.x1_c00164{left:705.855000px;}
.x1e_c00164{left:706.920000px;}
.x71_c00164{left:708.420000px;}
.xb0_c00164{left:709.920000px;}
.xdb_c00164{left:711.420000px;}
.x28_c00164{left:715.500000px;}
.x51_c00164{left:716.580000px;}
.xf6_c00164{left:720.000000px;}
@media print{
.v0_c00164{vertical-align:0.000000pt;}
.ls0_c00164{letter-spacing:0.000000pt;}
.ws2_c00164{word-spacing:-7.989423pt;}
.ws0_c00164{word-spacing:-5.445284pt;}
.ws1_c00164{word-spacing:-2.902499pt;}
.ws3_c00164{word-spacing:0.000000pt;}
.fs6_c00164{font-size:3.040000pt;}
.fs7_c00164{font-size:12.106667pt;}
.fs5_c00164{font-size:16.640000pt;}
.fs1_c00164{font-size:18.133333pt;}
.fs4_c00164{font-size:22.666667pt;}
.fs2_c00164{font-size:25.706667pt;}
.fs0_c00164{font-size:28.746667pt;}
.fs3_c00164{font-size:31.733333pt;}
.y0_c00164{bottom:0.000000pt;}
.yca_c00164{bottom:223.773333pt;}
.yc9_c00164{bottom:224.733333pt;}
.ycc_c00164{bottom:224.933333pt;}
.yc8_c00164{bottom:225.693333pt;}
.ycb_c00164{bottom:226.640000pt;}
.yc6_c00164{bottom:241.106667pt;}
.yc2_c00164{bottom:242.440000pt;}
.yc4_c00164{bottom:243.026667pt;}
.yc3_c00164{bottom:243.226667pt;}
.yc5_c00164{bottom:243.400000pt;}
.yc7_c00164{bottom:244.360000pt;}
.yc0_c00164{bottom:258.440000pt;}
.ybb_c00164{bottom:258.640000pt;}
.yc1_c00164{bottom:259.773333pt;}
.ybd_c00164{bottom:260.360000pt;}
.ybf_c00164{bottom:260.560000pt;}
.ybe_c00164{bottom:261.306667pt;}
.ybc_c00164{bottom:261.693333pt;}
.yb8_c00164{bottom:275.026667pt;}
.yb5_c00164{bottom:276.360000pt;}
.yba_c00164{bottom:276.733333pt;}
.yb7_c00164{bottom:277.106667pt;}
.yb6_c00164{bottom:277.893333pt;}
.yb9_c00164{bottom:278.066667pt;}
.yb4_c00164{bottom:279.026667pt;}
.yb0_c00164{bottom:292.733333pt;}
.yb3_c00164{bottom:293.693333pt;}
.yb2_c00164{bottom:294.440000pt;}
.yb1_c00164{bottom:295.226667pt;}
.yaf_c00164{bottom:295.400000pt;}
.yae_c00164{bottom:296.360000pt;}
.yac_c00164{bottom:310.640000pt;}
.ya7_c00164{bottom:311.773333pt;}
.yad_c00164{bottom:312.560000pt;}
.yaa_c00164{bottom:312.733333pt;}
.yab_c00164{bottom:313.306667pt;}
.ya9_c00164{bottom:313.693333pt;}
.ya8_c00164{bottom:315.040000pt;}
.ya0_c00164{bottom:334.066667pt;}
.ya6_c00164{bottom:334.266667pt;}
.ya4_c00164{bottom:335.026667pt;}
.ya3_c00164{bottom:335.226667pt;}
.ya2_c00164{bottom:335.973333pt;}
.ya1_c00164{bottom:336.173333pt;}
.ya5_c00164{bottom:336.933333pt;}
.y9d_c00164{bottom:347.400000pt;}
.y9e_c00164{bottom:347.600000pt;}
.y9b_c00164{bottom:348.360000pt;}
.y9a_c00164{bottom:348.560000pt;}
.y9c_c00164{bottom:349.306667pt;}
.y9f_c00164{bottom:350.266667pt;}
.y98_c00164{bottom:360.933333pt;}
.y96_c00164{bottom:361.693333pt;}
.y97_c00164{bottom:362.840000pt;}
.y99_c00164{bottom:363.600000pt;}
.y91_c00164{bottom:374.066667pt;}
.y94_c00164{bottom:375.026667pt;}
.y92_c00164{bottom:375.226667pt;}
.y95_c00164{bottom:375.973333pt;}
.y90_c00164{bottom:376.173333pt;}
.y93_c00164{bottom:376.933333pt;}
.y8c_c00164{bottom:394.440000pt;}
.y8d_c00164{bottom:395.773333pt;}
.y8b_c00164{bottom:396.360000pt;}
.y8e_c00164{bottom:397.306667pt;}
.y8f_c00164{bottom:397.693333pt;}
.y8a_c00164{bottom:411.973333pt;}
.y88_c00164{bottom:413.106667pt;}
.y89_c00164{bottom:413.893333pt;}
.y87_c00164{bottom:415.026667pt;}
.y86_c00164{bottom:430.440000pt;}
.y84_c00164{bottom:432.360000pt;}
.y85_c00164{bottom:432.373333pt;}
.y82_c00164{bottom:447.773333pt;}
.y83_c00164{bottom:449.693333pt;}
.y81_c00164{bottom:465.106667pt;}
.y7f_c00164{bottom:466.066667pt;}
.y80_c00164{bottom:466.640000pt;}
.y7e_c00164{bottom:467.026667pt;}
.y7b_c00164{bottom:482.440000pt;}
.y7a_c00164{bottom:484.360000pt;}
.y7c_c00164{bottom:485.306667pt;}
.y7d_c00164{bottom:485.693333pt;}
.y74_c00164{bottom:499.773333pt;}
.y77_c00164{bottom:500.733333pt;}
.y73_c00164{bottom:501.106667pt;}
.y78_c00164{bottom:501.693333pt;}
.y79_c00164{bottom:501.893333pt;}
.y76_c00164{bottom:502.640000pt;}
.y75_c00164{bottom:503.026667pt;}
.y72_c00164{bottom:517.106667pt;}
.y70_c00164{bottom:518.266667pt;}
.y6f_c00164{bottom:518.440000pt;}
.y71_c00164{bottom:519.026667pt;}
.y6d_c00164{bottom:520.360000pt;}
.y6e_c00164{bottom:520.373333pt;}
.y6c_c00164{bottom:535.773333pt;}
.y6a_c00164{bottom:536.560000pt;}
.y69_c00164{bottom:537.693333pt;}
.y6b_c00164{bottom:537.706667pt;}
.y68_c00164{bottom:552.360000pt;}
.y65_c00164{bottom:553.106667pt;}
.y67_c00164{bottom:554.066667pt;}
.y66_c00164{bottom:555.040000pt;}
.y64_c00164{bottom:570.440000pt;}
.y60_c00164{bottom:587.773333pt;}
.y5d_c00164{bottom:589.106667pt;}
.y61_c00164{bottom:589.693333pt;}
.y63_c00164{bottom:590.066667pt;}
.y62_c00164{bottom:590.640000pt;}
.y5f_c00164{bottom:591.026667pt;}
.y5e_c00164{bottom:591.040000pt;}
.y59_c00164{bottom:612.733333pt;}
.y5b_c00164{bottom:612.933333pt;}
.y5a_c00164{bottom:613.306667pt;}
.y56_c00164{bottom:613.693333pt;}
.y58_c00164{bottom:614.266667pt;}
.y57_c00164{bottom:614.640000pt;}
.y5c_c00164{bottom:615.600000pt;}
.y52_c00164{bottom:630.066667pt;}
.y54_c00164{bottom:631.026667pt;}
.y55_c00164{bottom:631.973333pt;}
.y53_c00164{bottom:632.933333pt;}
.y51_c00164{bottom:654.440000pt;}
.y50_c00164{bottom:656.360000pt;}
.y48_c00164{bottom:687.026667pt;}
.y4f_c00164{bottom:687.973333pt;}
.y4b_c00164{bottom:688.360000pt;}
.y49_c00164{bottom:689.106667pt;}
.y4d_c00164{bottom:689.893333pt;}
.y4e_c00164{bottom:690.066667pt;}
.y4c_c00164{bottom:690.640000pt;}
.y4a_c00164{bottom:691.026667pt;}
.y46_c00164{bottom:705.306667pt;}
.y47_c00164{bottom:706.440000pt;}
.y45_c00164{bottom:707.226667pt;}
.y44_c00164{bottom:707.400000pt;}
.y43_c00164{bottom:708.360000pt;}
.y3f_c00164{bottom:723.773333pt;}
.y40_c00164{bottom:724.733333pt;}
.y41_c00164{bottom:725.306667pt;}
.y3e_c00164{bottom:725.693333pt;}
.y42_c00164{bottom:725.893333pt;}
.y38_c00164{bottom:741.106667pt;}
.y3c_c00164{bottom:741.306667pt;}
.y3d_c00164{bottom:741.693333pt;}
.y39_c00164{bottom:741.893333pt;}
.y3b_c00164{bottom:742.066667pt;}
.y37_c00164{bottom:742.640000pt;}
.y3a_c00164{bottom:743.026667pt;}
.y31_c00164{bottom:757.693333pt;}
.y36_c00164{bottom:758.066667pt;}
.y33_c00164{bottom:758.440000pt;}
.y35_c00164{bottom:759.400000pt;}
.y32_c00164{bottom:760.360000pt;}
.y34_c00164{bottom:760.560000pt;}
.y2e_c00164{bottom:777.106667pt;}
.y2d_c00164{bottom:777.893333pt;}
.y2f_c00164{bottom:778.066667pt;}
.y30_c00164{bottom:779.026667pt;}
.y2a_c00164{bottom:802.440000pt;}
.y2b_c00164{bottom:803.400000pt;}
.y29_c00164{bottom:804.360000pt;}
.y2c_c00164{bottom:804.560000pt;}
.y28_c00164{bottom:819.026667pt;}
.y27_c00164{bottom:819.773333pt;}
.y26_c00164{bottom:821.693333pt;}
.y22_c00164{bottom:836.360000pt;}
.y20_c00164{bottom:837.106667pt;}
.y23_c00164{bottom:838.066667pt;}
.y24_c00164{bottom:839.026667pt;}
.y21_c00164{bottom:839.226667pt;}
.y25_c00164{bottom:839.973333pt;}
.y1f_c00164{bottom:856.360000pt;}
.y1e_c00164{bottom:873.106667pt;}
.y1d_c00164{bottom:874.066667pt;}
.y1a_c00164{bottom:874.640000pt;}
.y1b_c00164{bottom:875.026667pt;}
.y1c_c00164{bottom:875.973333pt;}
.y19_c00164{bottom:890.066667pt;}
.y18_c00164{bottom:890.440000pt;}
.y17_c00164{bottom:891.226667pt;}
.y16_c00164{bottom:891.400000pt;}
.y14_c00164{bottom:892.360000pt;}
.y15_c00164{bottom:893.306667pt;}
.y11_c00164{bottom:907.773333pt;}
.y12_c00164{bottom:908.560000pt;}
.y10_c00164{bottom:908.733333pt;}
.y13_c00164{bottom:909.306667pt;}
.yf_c00164{bottom:909.693333pt;}
.yd_c00164{bottom:924.360000pt;}
.yb_c00164{bottom:925.106667pt;}
.yc_c00164{bottom:925.893333pt;}
.ya_c00164{bottom:927.026667pt;}
.ye_c00164{bottom:927.973333pt;}
.y8_c00164{bottom:941.693333pt;}
.y5_c00164{bottom:942.440000pt;}
.y7_c00164{bottom:943.226667pt;}
.y4_c00164{bottom:943.400000pt;}
.y3_c00164{bottom:944.360000pt;}
.y6_c00164{bottom:945.306667pt;}
.y9_c00164{bottom:945.693333pt;}
.y1_c00164{bottom:976.733333pt;}
.y2_c00164{bottom:978.266667pt;}
.h7_c00164{height:3.739141pt;}
.h8_c00164{height:14.890964pt;}
.h6_c00164{height:20.466875pt;}
.h2_c00164{height:22.303646pt;}
.h5_c00164{height:27.879557pt;}
.h3_c00164{height:31.618698pt;}
.h1_c00164{height:35.357839pt;}
.h4_c00164{height:39.031380pt;}
.h0_c00164{height:1186.666667pt;}
.w0_c00164{width:782.666667pt;}
.x0_c00164{left:0.000000pt;}
.x3_c00164{left:134.666667pt;}
.x59_c00164{left:135.626667pt;}
.xd3_c00164{left:137.333333pt;}
.xf1_c00164{left:138.293333pt;}
.x72_c00164{left:142.293333pt;}
.x93_c00164{left:147.240000pt;}
.x12_c00164{left:149.333333pt;}
.x9c_c00164{left:151.040000pt;}
.x37_c00164{left:152.373333pt;}
.x29_c00164{left:159.626667pt;}
.x1f_c00164{left:161.706667pt;}
.x63_c00164{left:162.666667pt;}
.x5a_c00164{left:163.626667pt;}
.xcd_c00164{left:164.960000pt;}
.x49_c00164{left:168.000000pt;}
.xbb_c00164{left:172.000000pt;}
.xb7_c00164{left:173.333333pt;}
.xc6_c00164{left:174.666667pt;}
.x4_c00164{left:176.373333pt;}
.xeb_c00164{left:177.706667pt;}
.x6d_c00164{left:180.000000pt;}
.xd4_c00164{left:183.626667pt;}
.x40_c00164{left:185.333333pt;}
.x9d_c00164{left:187.040000pt;}
.x8a_c00164{left:193.706667pt;}
.xc7_c00164{left:194.666667pt;}
.x2a_c00164{left:196.960000pt;}
.xe9_c00164{left:201.333333pt;}
.xbe_c00164{left:202.293333pt;}
.x64_c00164{left:204.000000pt;}
.xb1_c00164{left:204.960000pt;}
.x5b_c00164{left:206.666667pt;}
.x13_c00164{left:208.000000pt;}
.x6e_c00164{left:209.333333pt;}
.x38_c00164{left:210.293333pt;}
.x41_c00164{left:212.373333pt;}
.x2b_c00164{left:213.333333pt;}
.x81_c00164{left:215.040000pt;}
.x94_c00164{left:216.000000pt;}
.x52_c00164{left:218.293333pt;}
.xa7_c00164{left:221.333333pt;}
.xbf_c00164{left:222.666667pt;}
.xd7_c00164{left:225.333333pt;}
.x39_c00164{left:227.040000pt;}
.x14_c00164{left:228.000000pt;}
.x7a_c00164{left:229.333333pt;}
.xa4_c00164{left:230.666667pt;}
.xab_c00164{left:232.000000pt;}
.xce_c00164{left:233.333333pt;}
.x2c_c00164{left:238.666667pt;}
.x15_c00164{left:240.373333pt;}
.xee_c00164{left:242.666667pt;}
.xc8_c00164{left:244.960000pt;}
.x53_c00164{left:246.293333pt;}
.x5_c00164{left:247.626667pt;}
.x65_c00164{left:249.333333pt;}
.x3a_c00164{left:250.666667pt;}
.x20_c00164{left:252.000000pt;}
.x88_c00164{left:252.960000pt;}
.x42_c00164{left:257.333333pt;}
.x9e_c00164{left:258.666667pt;}
.xdc_c00164{left:260.000000pt;}
.x4a_c00164{left:260.960000pt;}
.x95_c00164{left:267.040000pt;}
.x6_c00164{left:268.000000pt;}
.x16_c00164{left:272.373333pt;}
.xd8_c00164{left:273.333333pt;}
.x82_c00164{left:275.040000pt;}
.x5c_c00164{left:278.666667pt;}
.x2d_c00164{left:280.000000pt;}
.xdd_c00164{left:281.706667pt;}
.x54_c00164{left:284.000000pt;}
.x21_c00164{left:284.960000pt;}
.x73_c00164{left:287.040000pt;}
.x8b_c00164{left:288.373333pt;}
.xd5_c00164{left:289.333333pt;}
.xc9_c00164{left:290.666667pt;}
.x7_c00164{left:292.000000pt;}
.xe6_c00164{left:295.626667pt;}
.x2e_c00164{left:297.333333pt;}
.xca_c00164{left:300.000000pt;}
.xf2_c00164{left:301.333333pt;}
.xc0_c00164{left:304.000000pt;}
.xd9_c00164{left:305.333333pt;}
.x5d_c00164{left:306.666667pt;}
.x66_c00164{left:308.000000pt;}
.xcf_c00164{left:309.333333pt;}
.xa8_c00164{left:310.293333pt;}
.xe7_c00164{left:312.373333pt;}
.x3b_c00164{left:316.000000pt;}
.x43_c00164{left:318.293333pt;}
.xd6_c00164{left:320.373333pt;}
.x2f_c00164{left:321.333333pt;}
.x96_c00164{left:323.040000pt;}
.x8_c00164{left:326.666667pt;}
.x4b_c00164{left:328.000000pt;}
.x67_c00164{left:329.333333pt;}
.xf3_c00164{left:332.000000pt;}
.xb2_c00164{left:332.960000pt;}
.x3c_c00164{left:334.666667pt;}
.xbc_c00164{left:336.000000pt;}
.xb8_c00164{left:339.626667pt;}
.x68_c00164{left:341.706667pt;}
.xa5_c00164{left:342.666667pt;}
.x7b_c00164{left:344.000000pt;}
.x55_c00164{left:344.960000pt;}
.x44_c00164{left:346.666667pt;}
.x74_c00164{left:348.000000pt;}
.xde_c00164{left:349.706667pt;}
.x17_c00164{left:351.040000pt;}
.x97_c00164{left:352.000000pt;}
.x2_c00164{left:354.666667pt;}
.x83_c00164{left:356.000000pt;}
.x22_c00164{left:357.333333pt;}
.x56_c00164{left:359.040000pt;}
.x30_c00164{left:360.000000pt;}
.x9f_c00164{left:361.906667pt;}
.xe8_c00164{left:364.373333pt;}
.xec_c00164{left:365.333333pt;}
.x4c_c00164{left:368.000000pt;}
.xb3_c00164{left:370.293333pt;}
.x31_c00164{left:372.373333pt;}
.x84_c00164{left:373.333333pt;}
.x45_c00164{left:374.666667pt;}
.x9_c00164{left:375.626667pt;}
.x5e_c00164{left:376.960000pt;}
.xd0_c00164{left:380.000000pt;}
.x23_c00164{left:381.706667pt;}
.x98_c00164{left:382.666667pt;}
.x75_c00164{left:384.373333pt;}
.xef_c00164{left:388.373333pt;}
.xa9_c00164{left:389.333333pt;}
.xa_c00164{left:392.373333pt;}
.x18_c00164{left:395.626667pt;}
.xcb_c00164{left:397.706667pt;}
.x85_c00164{left:402.666667pt;}
.xea_c00164{left:404.000000pt;}
.xac_c00164{left:408.000000pt;}
.x5f_c00164{left:408.960000pt;}
.xdf_c00164{left:410.666667pt;}
.x99_c00164{left:412.000000pt;}
.x4d_c00164{left:414.666667pt;}
.xb_c00164{left:416.373333pt;}
.xc2_c00164{left:417.706667pt;}
.xe0_c00164{left:420.000000pt;}
.xc1_c00164{left:421.133333pt;}
.x32_c00164{left:422.666667pt;}
.x8c_c00164{left:424.960000pt;}
.x3d_c00164{left:428.000000pt;}
.x7c_c00164{left:430.666667pt;}
.xa0_c00164{left:432.000000pt;}
.xb4_c00164{left:432.960000pt;}
.x60_c00164{left:436.373333pt;}
.x89_c00164{left:437.333333pt;}
.x46_c00164{left:441.706667pt;}
.x9a_c00164{left:442.666667pt;}
.x24_c00164{left:444.373333pt;}
.x19_c00164{left:448.373333pt;}
.x8d_c00164{left:450.666667pt;}
.xa1_c00164{left:452.960000pt;}
.x69_c00164{left:456.373333pt;}
.xad_c00164{left:457.333333pt;}
.xa6_c00164{left:459.040000pt;}
.x33_c00164{left:460.960000pt;}
.xc_c00164{left:462.293333pt;}
.x57_c00164{left:464.000000pt;}
.x4e_c00164{left:465.706667pt;}
.x47_c00164{left:466.666667pt;}
.x9b_c00164{left:469.906667pt;}
.x6f_c00164{left:471.626667pt;}
.xe1_c00164{left:474.293333pt;}
.x76_c00164{left:476.000000pt;}
.xd_c00164{left:479.040000pt;}
.xcc_c00164{left:480.960000pt;}
.x1a_c00164{left:482.666667pt;}
.x25_c00164{left:484.373333pt;}
.x7d_c00164{left:488.000000pt;}
.x58_c00164{left:490.666667pt;}
.x3e_c00164{left:493.706667pt;}
.xae_c00164{left:497.706667pt;}
.x8e_c00164{left:499.626667pt;}
.xe2_c00164{left:500.760000pt;}
.xe_c00164{left:502.666667pt;}
.x1b_c00164{left:506.666667pt;}
.xaa_c00164{left:507.626667pt;}
.x7e_c00164{left:509.333333pt;}
.x61_c00164{left:511.040000pt;}
.x26_c00164{left:512.000000pt;}
.xb5_c00164{left:516.000000pt;}
.x48_c00164{left:517.333333pt;}
.xd1_c00164{left:518.293333pt;}
.x7f_c00164{left:521.333333pt;}
.x8f_c00164{left:525.333333pt;}
.xb9_c00164{left:526.666667pt;}
.x70_c00164{left:528.000000pt;}
.xc3_c00164{left:534.666667pt;}
.xf4_c00164{left:535.626667pt;}
.xe3_c00164{left:537.333333pt;}
.x34_c00164{left:541.333333pt;}
.xf_c00164{left:542.293333pt;}
.x77_c00164{left:544.960000pt;}
.xf0_c00164{left:547.040000pt;}
.xa2_c00164{left:548.000000pt;}
.x4f_c00164{left:549.333333pt;}
.x6a_c00164{left:550.293333pt;}
.x1c_c00164{left:552.000000pt;}
.x3f_c00164{left:553.333333pt;}
.x35_c00164{left:556.373333pt;}
.xda_c00164{left:557.706667pt;}
.xe4_c00164{left:563.626667pt;}
.x6b_c00164{left:568.000000pt;}
.x10_c00164{left:569.333333pt;}
.x86_c00164{left:572.000000pt;}
.x80_c00164{left:576.373333pt;}
.x90_c00164{left:577.333333pt;}
.x78_c00164{left:580.960000pt;}
.x27_c00164{left:583.626667pt;}
.xb6_c00164{left:584.960000pt;}
.xbd_c00164{left:586.666667pt;}
.xe5_c00164{left:588.000000pt;}
.xa3_c00164{left:589.706667pt;}
.x62_c00164{left:591.040000pt;}
.xc4_c00164{left:592.000000pt;}
.xba_c00164{left:594.666667pt;}
.x91_c00164{left:599.040000pt;}
.xd2_c00164{left:600.000000pt;}
.xaf_c00164{left:602.293333pt;}
.x36_c00164{left:604.000000pt;}
.xf5_c00164{left:605.706667pt;}
.x50_c00164{left:607.040000pt;}
.x11_c00164{left:608.000000pt;}
.x79_c00164{left:611.040000pt;}
.x1d_c00164{left:612.000000pt;}
.x87_c00164{left:612.960000pt;}
.xed_c00164{left:615.626667pt;}
.x92_c00164{left:617.333333pt;}
.xf7_c00164{left:622.666667pt;}
.x6c_c00164{left:624.000000pt;}
.xc5_c00164{left:626.293333pt;}
.x1_c00164{left:627.426667pt;}
.x1e_c00164{left:628.373333pt;}
.x71_c00164{left:629.706667pt;}
.xb0_c00164{left:631.040000pt;}
.xdb_c00164{left:632.373333pt;}
.x28_c00164{left:636.000000pt;}
.x51_c00164{left:636.960000pt;}
.xf6_c00164{left:640.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_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_89fd88b652e32462bb253720.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5f_c00165{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00165{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m0_c00165{transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);}
.m8a_c00165{transform:matrix(0.368382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368382,0.000000,0.000000,0.250000,0,0);}
.m92_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);}
.m62_c00165{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.me_c00165{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m3a_c00165{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m3c_c00165{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m89_c00165{transform:matrix(0.394853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394853,0.000000,0.000000,0.250000,0,0);}
.m7_c00165{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m2c_c00165{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m36_c00165{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m7f_c00165{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.m8c_c00165{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m1a_c00165{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m80_c00165{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m25_c00165{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m18_c00165{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m45_c00165{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m4f_c00165{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m4c_c00165{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m4d_c00165{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m54_c00165{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m70_c00165{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m85_c00165{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m41_c00165{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m3f_c00165{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m9a_c00165{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m6e_c00165{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m31_c00165{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m47_c00165{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m87_c00165{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m2f_c00165{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m6a_c00165{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m3b_c00165{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m88_c00165{transform:matrix(0.431891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431891,0.000000,0.000000,0.250000,0,0);}
.m55_c00165{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m3d_c00165{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m8e_c00165{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m9e_c00165{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);}
.m59_c00165{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.m34_c00165{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m14_c00165{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.m63_c00165{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mb7_c00165{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m8b_c00165{transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);}
.mb_c00165{transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);}
.m84_c00165{transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);}
.m4a_c00165{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.mc8_c00165{transform:matrix(0.450758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450758,0.000000,0.000000,0.250000,0,0);}
.m56_c00165{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m4e_c00165{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.ma8_c00165{transform:matrix(0.454327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454327,0.000000,0.000000,0.250000,0,0);}
.mc6_c00165{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.m26_c00165{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m6b_c00165{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.mc3_c00165{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);}
.m44_c00165{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.mad_c00165{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m99_c00165{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.mb1_c00165{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.m2a_c00165{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m33_c00165{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m48_c00165{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.mb9_c00165{transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);}
.mb0_c00165{transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);}
.m24_c00165{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mc0_c00165{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m2e_c00165{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m9d_c00165{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m42_c00165{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.ma4_c00165{transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);}
.m16_c00165{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m96_c00165{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m12_c00165{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m73_c00165{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);}
.m86_c00165{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m68_c00165{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m52_c00165{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m39_c00165{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m69_c00165{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m51_c00165{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m53_c00165{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m19_c00165{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m58_c00165{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m7a_c00165{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);}
.m7b_c00165{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m20_c00165{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m4_c00165{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m2_c00165{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m1b_c00165{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m6d_c00165{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mbe_c00165{transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);}
.m5e_c00165{transform:matrix(0.530252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530252,0.000000,0.000000,0.250000,0,0);}
.m67_c00165{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m6c_c00165{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m5d_c00165{transform:matrix(0.532004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532004,0.000000,0.000000,0.250000,0,0);}
.m8_c00165{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mb8_c00165{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m83_c00165{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.m82_c00165{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m9_c00165{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m61_c00165{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m21_c00165{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m49_c00165{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m23_c00165{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m79_c00165{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m6_c00165{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mf_c00165{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.md_c00165{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m35_c00165{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m57_c00165{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m30_c00165{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.ma5_c00165{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m71_c00165{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.ma_c00165{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m1f_c00165{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m38_c00165{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m15_c00165{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m32_c00165{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m97_c00165{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.mbc_c00165{transform:matrix(0.564904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564904,0.000000,0.000000,0.250000,0,0);}
.m5b_c00165{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m27_c00165{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.mbd_c00165{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m5a_c00165{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m7c_c00165{transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);}
.m13_c00165{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mb6_c00165{transform:matrix(0.572115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572115,0.000000,0.000000,0.250000,0,0);}
.mc_c00165{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m6f_c00165{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m17_c00165{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m2b_c00165{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m40_c00165{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m28_c00165{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m4b_c00165{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m78_c00165{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.m22_c00165{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m46_c00165{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_c00165{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m72_c00165{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.ma9_c00165{transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);}
.m60_c00165{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m1d_c00165{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m11_c00165{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m8d_c00165{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m90_c00165{transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);}
.m77_c00165{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m66_c00165{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.mb5_c00165{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m50_c00165{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);}
.m75_c00165{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m7e_c00165{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.m5c_c00165{transform:matrix(0.639076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639076,0.000000,0.000000,0.250000,0,0);}
.mc7_c00165{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.maa_c00165{transform:matrix(0.649780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649780,0.000000,0.000000,0.250000,0,0);}
.m93_c00165{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m7d_c00165{transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);}
.m3_c00165{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m9c_c00165{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m81_c00165{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m10_c00165{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m76_c00165{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.mb4_c00165{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.m29_c00165{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m95_c00165{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mc2_c00165{transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);}
.m74_c00165{transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);}
.mbb_c00165{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.m8f_c00165{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.ma6_c00165{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m91_c00165{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.mc4_c00165{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.mc1_c00165{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.mba_c00165{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.m9f_c00165{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m1c_c00165{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.mbf_c00165{transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);}
.m94_c00165{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.ma7_c00165{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.ma0_c00165{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m5_c00165{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mb2_c00165{transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);}
.m65_c00165{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.mc5_c00165{transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);}
.m43_c00165{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m2d_c00165{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.mab_c00165{transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);}
.m3e_c00165{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.maf_c00165{transform:matrix(0.786344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786344,0.000000,0.000000,0.250000,0,0);}
.mae_c00165{transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);}
.ma2_c00165{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m37_c00165{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.mac_c00165{transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);}
.m64_c00165{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mb3_c00165{transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);}
.m1e_c00165{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.ma1_c00165{transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);}
.m98_c00165{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m9b_c00165{transform:matrix(2.758850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.758850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.758850,0.000000,0.000000,0.250000,0,0);}
.v0_c00165{vertical-align:0.000000px;}
.v1_c00165{vertical-align:6.000000px;}
.ls1_c00165{letter-spacing:0.000000px;}
.ls0_c00165{letter-spacing:51.359972px;}
.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;}
}
.ws2_c00165{word-spacing:-59.314052px;}
.ws0_c00165{word-spacing:-16.889280px;}
.ws13_c00165{word-spacing:0.000000px;}
.wsd_c00165{word-spacing:10.017706px;}
.ws9_c00165{word-spacing:11.609047px;}
.ws3_c00165{word-spacing:11.661937px;}
.ws8_c00165{word-spacing:17.262919px;}
.ws10_c00165{word-spacing:18.138913px;}
.wse_c00165{word-spacing:23.728109px;}
.wsc_c00165{word-spacing:23.767013px;}
.ws6_c00165{word-spacing:24.638400px;}
.wsb_c00165{word-spacing:25.883172px;}
.ws7_c00165{word-spacing:27.883834px;}
.wsf_c00165{word-spacing:30.607622px;}
.ws11_c00165{word-spacing:31.025931px;}
.wsa_c00165{word-spacing:39.052735px;}
.ws12_c00165{word-spacing:39.933737px;}
.ws5_c00165{word-spacing:41.009553px;}
.ws1_c00165{word-spacing:42.893943px;}
.ws4_c00165{word-spacing:64.250880px;}
._1_c00165{margin-left:-51.359972px;}
._0_c00165{width:5.509930px;}
._2_c00165{width:41.166735px;}
.fc0_c00165{color:transparent;}
.fs8_c00165{font-size:3.420000px;}
.fs9_c00165{font-size:6.780000px;}
.fs7_c00165{font-size:11.880000px;}
.fs6_c00165{font-size:13.620000px;}
.fs3_c00165{font-size:18.720000px;}
.fs1_c00165{font-size:20.400000px;}
.fs5_c00165{font-size:25.500000px;}
.fs2_c00165{font-size:28.920000px;}
.fs4_c00165{font-size:32.340000px;}
.fs0_c00165{font-size:35.700000px;}
.y0_c00165{bottom:0.000000px;}
.yc3_c00165{bottom:254.130000px;}
.yc4_c00165{bottom:255.195000px;}
.yc0_c00165{bottom:267.195000px;}
.yc1_c00165{bottom:268.275000px;}
.ybf_c00165{bottom:268.695000px;}
.yc2_c00165{bottom:270.420000px;}
.ybb_c00165{bottom:280.695000px;}
.ybd_c00165{bottom:281.775000px;}
.ybc_c00165{bottom:282.195000px;}
.ybe_c00165{bottom:283.920000px;}
.yb9_c00165{bottom:294.630000px;}
.yb8_c00165{bottom:295.050000px;}
.yb7_c00165{bottom:295.275000px;}
.yba_c00165{bottom:295.695000px;}
.yb6_c00165{bottom:296.130000px;}
.yb5_c00165{bottom:309.195000px;}
.yb3_c00165{bottom:309.630000px;}
.yb2_c00165{bottom:310.275000px;}
.yb4_c00165{bottom:310.695000px;}
.yb1_c00165{bottom:311.130000px;}
.yb0_c00165{bottom:323.130000px;}
.yaf_c00165{bottom:324.630000px;}
.yad_c00165{bottom:337.695000px;}
.yac_c00165{bottom:339.195000px;}
.yae_c00165{bottom:339.420000px;}
.yab_c00165{bottom:351.195000px;}
.yaa_c00165{bottom:351.420000px;}
.ya7_c00165{bottom:351.630000px;}
.ya8_c00165{bottom:352.275000px;}
.ya9_c00165{bottom:352.695000px;}
.ya5_c00165{bottom:364.695000px;}
.ya4_c00165{bottom:366.195000px;}
.ya6_c00165{bottom:366.420000px;}
.ya2_c00165{bottom:378.195000px;}
.ya0_c00165{bottom:378.630000px;}
.ya1_c00165{bottom:379.695000px;}
.ya3_c00165{bottom:379.920000px;}
.y9e_c00165{bottom:392.130000px;}
.y9d_c00165{bottom:392.550000px;}
.y9f_c00165{bottom:393.420000px;}
.y9c_c00165{bottom:393.630000px;}
.y9b_c00165{bottom:406.695000px;}
.y99_c00165{bottom:407.130000px;}
.y98_c00165{bottom:408.195000px;}
.y9a_c00165{bottom:408.420000px;}
.y97_c00165{bottom:420.195000px;}
.y93_c00165{bottom:420.630000px;}
.y94_c00165{bottom:421.275000px;}
.y95_c00165{bottom:421.695000px;}
.y96_c00165{bottom:421.920000px;}
.y91_c00165{bottom:433.695000px;}
.y90_c00165{bottom:434.130000px;}
.y92_c00165{bottom:435.420000px;}
.y8f_c00165{bottom:447.630000px;}
.y8e_c00165{bottom:448.695000px;}
.y8d_c00165{bottom:463.695000px;}
.y8b_c00165{bottom:476.130000px;}
.y8a_c00165{bottom:477.195000px;}
.y8c_c00165{bottom:477.420000px;}
.y88_c00165{bottom:490.695000px;}
.y89_c00165{bottom:490.920000px;}
.y87_c00165{bottom:492.195000px;}
.y83_c00165{bottom:503.130000px;}
.y85_c00165{bottom:503.775000px;}
.y86_c00165{bottom:504.195000px;}
.y84_c00165{bottom:504.630000px;}
.y81_c00165{bottom:516.630000px;}
.y80_c00165{bottom:517.695000px;}
.y82_c00165{bottom:519.420000px;}
.y7e_c00165{bottom:531.195000px;}
.y7d_c00165{bottom:531.630000px;}
.y7f_c00165{bottom:532.920000px;}
.y7a_c00165{bottom:545.130000px;}
.y7c_c00165{bottom:546.420000px;}
.y79_c00165{bottom:546.630000px;}
.y78_c00165{bottom:547.695000px;}
.y7b_c00165{bottom:547.920000px;}
.y76_c00165{bottom:558.630000px;}
.y75_c00165{bottom:559.695000px;}
.y77_c00165{bottom:559.920000px;}
.y73_c00165{bottom:573.195000px;}
.y72_c00165{bottom:573.630000px;}
.y74_c00165{bottom:574.920000px;}
.y70_c00165{bottom:585.630000px;}
.y6e_c00165{bottom:586.695000px;}
.y71_c00165{bottom:586.920000px;}
.y6f_c00165{bottom:587.130000px;}
.y6b_c00165{bottom:599.550000px;}
.y6a_c00165{bottom:600.630000px;}
.y6d_c00165{bottom:600.855000px;}
.y6c_c00165{bottom:601.920000px;}
.y68_c00165{bottom:613.695000px;}
.y67_c00165{bottom:614.130000px;}
.y66_c00165{bottom:615.195000px;}
.y69_c00165{bottom:615.420000px;}
.y63_c00165{bottom:627.630000px;}
.y65_c00165{bottom:627.855000px;}
.y62_c00165{bottom:628.050000px;}
.y64_c00165{bottom:628.920000px;}
.y61_c00165{bottom:629.130000px;}
.y5f_c00165{bottom:642.195000px;}
.y5e_c00165{bottom:642.630000px;}
.y5d_c00165{bottom:643.695000px;}
.y60_c00165{bottom:643.920000px;}
.y5c_c00165{bottom:654.630000px;}
.y5b_c00165{bottom:655.695000px;}
.y5a_c00165{bottom:673.275000px;}
.y59_c00165{bottom:675.195000px;}
.y58_c00165{bottom:686.550000px;}
.y56_c00165{bottom:687.630000px;}
.y57_c00165{bottom:689.130000px;}
.y54_c00165{bottom:702.195000px;}
.y55_c00165{bottom:703.275000px;}
.y53_c00165{bottom:703.695000px;}
.y52_c00165{bottom:727.470000px;}
.y51_c00165{bottom:728.550000px;}
.y50_c00165{bottom:740.325000px;}
.y4f_c00165{bottom:742.470000px;}
.y4e_c00165{bottom:756.630000px;}
.y4c_c00165{bottom:757.050000px;}
.y4d_c00165{bottom:757.470000px;}
.y4b_c00165{bottom:758.550000px;}
.y4a_c00165{bottom:779.550000px;}
.y49_c00165{bottom:782.550000px;}
.y47_c00165{bottom:820.470000px;}
.y45_c00165{bottom:821.745000px;}
.y48_c00165{bottom:822.825000px;}
.y46_c00165{bottom:823.905000px;}
.y44_c00165{bottom:839.970000px;}
.y41_c00165{bottom:840.405000px;}
.y40_c00165{bottom:841.245000px;}
.y42_c00165{bottom:842.130000px;}
.y43_c00165{bottom:843.405000px;}
.y3c_c00165{bottom:860.745000px;}
.y3d_c00165{bottom:861.825000px;}
.y3f_c00165{bottom:862.470000px;}
.y3b_c00165{bottom:862.905000px;}
.y3e_c00165{bottom:863.970000px;}
.y38_c00165{bottom:880.245000px;}
.y3a_c00165{bottom:882.405000px;}
.y39_c00165{bottom:883.470000px;}
.y35_c00165{bottom:899.745000px;}
.y37_c00165{bottom:900.825000px;}
.y32_c00165{bottom:901.245000px;}
.y33_c00165{bottom:901.905000px;}
.y36_c00165{bottom:902.130000px;}
.y34_c00165{bottom:903.405000px;}
.y2e_c00165{bottom:918.405000px;}
.y31_c00165{bottom:919.245000px;}
.y2f_c00165{bottom:920.325000px;}
.y2c_c00165{bottom:920.745000px;}
.y30_c00165{bottom:921.630000px;}
.y2d_c00165{bottom:922.905000px;}
.y29_c00165{bottom:939.825000px;}
.y28_c00165{bottom:940.245000px;}
.y2a_c00165{bottom:940.905000px;}
.y25_c00165{bottom:941.130000px;}
.y26_c00165{bottom:941.325000px;}
.y2b_c00165{bottom:941.970000px;}
.y27_c00165{bottom:942.405000px;}
.y24_c00165{bottom:959.325000px;}
.y20_c00165{bottom:959.745000px;}
.y23_c00165{bottom:960.630000px;}
.y21_c00165{bottom:960.825000px;}
.y22_c00165{bottom:961.905000px;}
.y19_c00165{bottom:977.745000px;}
.y1f_c00165{bottom:978.825000px;}
.y1c_c00165{bottom:979.245000px;}
.y1b_c00165{bottom:980.325000px;}
.y1d_c00165{bottom:980.970000px;}
.y1a_c00165{bottom:981.405000px;}
.y1e_c00165{bottom:981.630000px;}
.y18_c00165{bottom:996.405000px;}
.y16_c00165{bottom:997.905000px;}
.y17_c00165{bottom:998.745000px;}
.y13_c00165{bottom:1000.905000px;}
.y15_c00165{bottom:1001.130000px;}
.y14_c00165{bottom:1001.970000px;}
.yf_c00165{bottom:1016.970000px;}
.y12_c00165{bottom:1017.825000px;}
.y11_c00165{bottom:1018.245000px;}
.yd_c00165{bottom:1019.130000px;}
.y10_c00165{bottom:1019.970000px;}
.ye_c00165{bottom:1020.405000px;}
.y8_c00165{bottom:1037.745000px;}
.yc_c00165{bottom:1038.630000px;}
.yb_c00165{bottom:1038.825000px;}
.y9_c00165{bottom:1039.905000px;}
.ya_c00165{bottom:1040.970000px;}
.y6_c00165{bottom:1057.245000px;}
.y7_c00165{bottom:1058.325000px;}
.y3_c00165{bottom:1059.405000px;}
.y4_c00165{bottom:1059.630000px;}
.y5_c00165{bottom:1060.905000px;}
.y2_c00165{bottom:1097.550000px;}
.y1_c00165{bottom:1097.745000px;}
.ha_c00165{height:4.206533px;}
.hb_c00165{height:8.339268px;}
.h9_c00165{height:14.612168px;}
.h8_c00165{height:16.752334px;}
.h4_c00165{height:23.025234px;}
.h2_c00165{height:25.091602px;}
.h6_c00165{height:31.364502px;}
.h3_c00165{height:35.571035px;}
.h5_c00165{height:39.777568px;}
.h7_c00165{height:41.571035px;}
.h1_c00165{height:43.910303px;}
.h0_c00165{height:1335.000000px;}
.w0_c00165{width:880.500000px;}
.x0_c00165{left:0.000000px;}
.x73_c00165{left:151.920000px;}
.x3_c00165{left:153.000000px;}
.x1_c00165{left:155.775000px;}
.x6b_c00165{left:167.580000px;}
.x49_c00165{left:177.000000px;}
.x37_c00165{left:195.420000px;}
.x40_c00165{left:199.920000px;}
.x20_c00165{left:202.920000px;}
.x56_c00165{left:204.420000px;}
.x11_c00165{left:208.920000px;}
.x2c_c00165{left:222.420000px;}
.x5f_c00165{left:225.000000px;}
.x21_c00165{left:229.920000px;}
.x4_c00165{left:232.500000px;}
.x79_c00165{left:234.420000px;}
.x41_c00165{left:239.580000px;}
.x74_c00165{left:241.920000px;}
.x60_c00165{left:244.920000px;}
.x2d_c00165{left:253.500000px;}
.x5_c00165{left:255.420000px;}
.x4a_c00165{left:258.420000px;}
.x22_c00165{left:265.500000px;}
.x57_c00165{left:268.500000px;}
.x61_c00165{left:270.000000px;}
.x42_c00165{left:271.500000px;}
.x12_c00165{left:274.500000px;}
.x7a_c00165{left:280.920000px;}
.x6_c00165{left:282.000000px;}
.x4b_c00165{left:285.420000px;}
.x38_c00165{left:286.920000px;}
.x8d_c00165{left:288.000000px;}
.x6c_c00165{left:292.500000px;}
.x75_c00165{left:294.000000px;}
.x67_c00165{left:295.080000px;}
.xa6_c00165{left:298.500000px;}
.x13_c00165{left:299.580000px;}
.x7_c00165{left:303.000000px;}
.x7b_c00165{left:309.000000px;}
.x8f_c00165{left:310.500000px;}
.x4c_c00165{left:313.500000px;}
.x8_c00165{left:318.000000px;}
.x23_c00165{left:319.500000px;}
.x88_c00165{left:321.000000px;}
.x6d_c00165{left:322.500000px;}
.xa7_c00165{left:325.500000px;}
.xa3_c00165{left:326.580000px;}
.xaa_c00165{left:330.000000px;}
.xa5_c00165{left:331.500000px;}
.x14_c00165{left:334.080000px;}
.xa0_c00165{left:336.000000px;}
.xa4_c00165{left:337.500000px;}
.x4d_c00165{left:339.420000px;}
.x9e_c00165{left:340.920000px;}
.xab_c00165{left:343.500000px;}
.x43_c00165{left:345.420000px;}
.x39_c00165{left:346.920000px;}
.x68_c00165{left:348.000000px;}
.x9f_c00165{left:349.500000px;}
.x9_c00165{left:351.000000px;}
.x15_c00165{left:352.920000px;}
.x96_c00165{left:354.000000px;}
.x9b_c00165{left:355.500000px;}
.x97_c00165{left:357.420000px;}
.x2e_c00165{left:368.580000px;}
.x84_c00165{left:372.000000px;}
.x98_c00165{left:373.500000px;}
.x4e_c00165{left:375.000000px;}
.xa1_c00165{left:376.500000px;}
.x16_c00165{left:379.500000px;}
.x89_c00165{left:384.000000px;}
.x3a_c00165{left:385.920000px;}
.xa2_c00165{left:391.500000px;}
.xa9_c00165{left:393.420000px;}
.x8c_c00165{left:394.500000px;}
.x2f_c00165{left:399.000000px;}
.x2_c00165{left:402.000000px;}
.x85_c00165{left:406.500000px;}
.x62_c00165{left:408.000000px;}
.x24_c00165{left:409.500000px;}
.x82_c00165{left:412.500000px;}
.x7c_c00165{left:417.420000px;}
.x30_c00165{left:420.000000px;}
.x58_c00165{left:421.500000px;}
.x17_c00165{left:424.500000px;}
.x4f_c00165{left:427.920000px;}
.xa_c00165{left:432.420000px;}
.x31_c00165{left:433.920000px;}
.x59_c00165{left:435.000000px;}
.x44_c00165{left:436.920000px;}
.x8a_c00165{left:438.000000px;}
.x3b_c00165{left:441.000000px;}
.x63_c00165{left:444.420000px;}
.x7d_c00165{left:445.500000px;}
.x76_c00165{left:450.000000px;}
.x50_c00165{left:452.580000px;}
.x6e_c00165{left:454.500000px;}
.x90_c00165{left:456.855000px;}
.x83_c00165{left:458.355000px;}
.x99_c00165{left:459.420000px;}
.xb_c00165{left:461.580000px;}
.x9c_c00165{left:463.500000px;}
.x18_c00165{left:465.000000px;}
.x92_c00165{left:468.000000px;}
.x69_c00165{left:469.080000px;}
.x5a_c00165{left:475.920000px;}
.x19_c00165{left:477.420000px;}
.x51_c00165{left:483.000000px;}
.x32_c00165{left:490.500000px;}
.x25_c00165{left:492.000000px;}
.x94_c00165{left:495.000000px;}
.x64_c00165{left:496.500000px;}
.x52_c00165{left:498.000000px;}
.x9d_c00165{left:499.500000px;}
.x3c_c00165{left:502.500000px;}
.x93_c00165{left:504.000000px;}
.x45_c00165{left:505.920000px;}
.xc_c00165{left:508.080000px;}
.x86_c00165{left:513.000000px;}
.x6a_c00165{left:517.920000px;}
.x1a_c00165{left:520.920000px;}
.x26_c00165{left:523.920000px;}
.x5b_c00165{left:529.920000px;}
.x91_c00165{left:531.000000px;}
.x7e_c00165{left:535.500000px;}
.x53_c00165{left:537.420000px;}
.x8b_c00165{left:538.920000px;}
.x87_c00165{left:540.000000px;}
.xd_c00165{left:541.920000px;}
.x1b_c00165{left:544.500000px;}
.x65_c00165{left:551.580000px;}
.x27_c00165{left:558.000000px;}
.x46_c00165{left:567.000000px;}
.xe_c00165{left:571.080000px;}
.x6f_c00165{left:573.000000px;}
.x5c_c00165{left:574.920000px;}
.x95_c00165{left:576.000000px;}
.x8e_c00165{left:577.500000px;}
.x7f_c00165{left:579.000000px;}
.xa8_c00165{left:580.500000px;}
.x9a_c00165{left:585.000000px;}
.x33_c00165{left:589.920000px;}
.x5d_c00165{left:601.080000px;}
.x28_c00165{left:606.000000px;}
.x54_c00165{left:610.500000px;}
.x3d_c00165{left:612.420000px;}
.xf_c00165{left:615.000000px;}
.x1c_c00165{left:616.080000px;}
.x34_c00165{left:619.080000px;}
.x29_c00165{left:621.000000px;}
.x80_c00165{left:624.420000px;}
.x77_c00165{left:629.580000px;}
.x47_c00165{left:633.000000px;}
.x1d_c00165{left:634.920000px;}
.x3e_c00165{left:640.080000px;}
.x35_c00165{left:642.420000px;}
.x70_c00165{left:646.500000px;}
.x10_c00165{left:653.580000px;}
.x5e_c00165{left:661.500000px;}
.x1e_c00165{left:663.420000px;}
.x71_c00165{left:664.920000px;}
.x48_c00165{left:670.920000px;}
.x2a_c00165{left:676.500000px;}
.x78_c00165{left:679.500000px;}
.x36_c00165{left:691.500000px;}
.x55_c00165{left:693.000000px;}
.x72_c00165{left:694.920000px;}
.x2b_c00165{left:696.420000px;}
.x1f_c00165{left:697.500000px;}
.x66_c00165{left:699.420000px;}
.x3f_c00165{left:702.000000px;}
.x81_c00165{left:708.420000px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.v1_c00165{vertical-align:5.333333pt;}
.ls1_c00165{letter-spacing:0.000000pt;}
.ls0_c00165{letter-spacing:45.653309pt;}
.ws2_c00165{word-spacing:-52.723602pt;}
.ws0_c00165{word-spacing:-15.012693pt;}
.ws13_c00165{word-spacing:0.000000pt;}
.wsd_c00165{word-spacing:8.904628pt;}
.ws9_c00165{word-spacing:10.319153pt;}
.ws3_c00165{word-spacing:10.366166pt;}
.ws8_c00165{word-spacing:15.344817pt;}
.ws10_c00165{word-spacing:16.123479pt;}
.wse_c00165{word-spacing:21.091652pt;}
.wsc_c00165{word-spacing:21.126233pt;}
.ws6_c00165{word-spacing:21.900800pt;}
.wsb_c00165{word-spacing:23.007264pt;}
.ws7_c00165{word-spacing:24.785630pt;}
.wsf_c00165{word-spacing:27.206775pt;}
.ws11_c00165{word-spacing:27.578605pt;}
.wsa_c00165{word-spacing:34.713542pt;}
.ws12_c00165{word-spacing:35.496655pt;}
.ws5_c00165{word-spacing:36.452936pt;}
.ws1_c00165{word-spacing:38.127949pt;}
.ws4_c00165{word-spacing:57.111893pt;}
._1_c00165{margin-left:-45.653309pt;}
._0_c00165{width:4.897715pt;}
._2_c00165{width:36.592653pt;}
.fs8_c00165{font-size:3.040000pt;}
.fs9_c00165{font-size:6.026667pt;}
.fs7_c00165{font-size:10.560000pt;}
.fs6_c00165{font-size:12.106667pt;}
.fs3_c00165{font-size:16.640000pt;}
.fs1_c00165{font-size:18.133333pt;}
.fs5_c00165{font-size:22.666667pt;}
.fs2_c00165{font-size:25.706667pt;}
.fs4_c00165{font-size:28.746667pt;}
.fs0_c00165{font-size:31.733333pt;}
.y0_c00165{bottom:0.000000pt;}
.yc3_c00165{bottom:225.893333pt;}
.yc4_c00165{bottom:226.840000pt;}
.yc0_c00165{bottom:237.506667pt;}
.yc1_c00165{bottom:238.466667pt;}
.ybf_c00165{bottom:238.840000pt;}
.yc2_c00165{bottom:240.373333pt;}
.ybb_c00165{bottom:249.506667pt;}
.ybd_c00165{bottom:250.466667pt;}
.ybc_c00165{bottom:250.840000pt;}
.ybe_c00165{bottom:252.373333pt;}
.yb9_c00165{bottom:261.893333pt;}
.yb8_c00165{bottom:262.266667pt;}
.yb7_c00165{bottom:262.466667pt;}
.yba_c00165{bottom:262.840000pt;}
.yb6_c00165{bottom:263.226667pt;}
.yb5_c00165{bottom:274.840000pt;}
.yb3_c00165{bottom:275.226667pt;}
.yb2_c00165{bottom:275.800000pt;}
.yb4_c00165{bottom:276.173333pt;}
.yb1_c00165{bottom:276.560000pt;}
.yb0_c00165{bottom:287.226667pt;}
.yaf_c00165{bottom:288.560000pt;}
.yad_c00165{bottom:300.173333pt;}
.yac_c00165{bottom:301.506667pt;}
.yae_c00165{bottom:301.706667pt;}
.yab_c00165{bottom:312.173333pt;}
.yaa_c00165{bottom:312.373333pt;}
.ya7_c00165{bottom:312.560000pt;}
.ya8_c00165{bottom:313.133333pt;}
.ya9_c00165{bottom:313.506667pt;}
.ya5_c00165{bottom:324.173333pt;}
.ya4_c00165{bottom:325.506667pt;}
.ya6_c00165{bottom:325.706667pt;}
.ya2_c00165{bottom:336.173333pt;}
.ya0_c00165{bottom:336.560000pt;}
.ya1_c00165{bottom:337.506667pt;}
.ya3_c00165{bottom:337.706667pt;}
.y9e_c00165{bottom:348.560000pt;}
.y9d_c00165{bottom:348.933333pt;}
.y9f_c00165{bottom:349.706667pt;}
.y9c_c00165{bottom:349.893333pt;}
.y9b_c00165{bottom:361.506667pt;}
.y99_c00165{bottom:361.893333pt;}
.y98_c00165{bottom:362.840000pt;}
.y9a_c00165{bottom:363.040000pt;}
.y97_c00165{bottom:373.506667pt;}
.y93_c00165{bottom:373.893333pt;}
.y94_c00165{bottom:374.466667pt;}
.y95_c00165{bottom:374.840000pt;}
.y96_c00165{bottom:375.040000pt;}
.y91_c00165{bottom:385.506667pt;}
.y90_c00165{bottom:385.893333pt;}
.y92_c00165{bottom:387.040000pt;}
.y8f_c00165{bottom:397.893333pt;}
.y8e_c00165{bottom:398.840000pt;}
.y8d_c00165{bottom:412.173333pt;}
.y8b_c00165{bottom:423.226667pt;}
.y8a_c00165{bottom:424.173333pt;}
.y8c_c00165{bottom:424.373333pt;}
.y88_c00165{bottom:436.173333pt;}
.y89_c00165{bottom:436.373333pt;}
.y87_c00165{bottom:437.506667pt;}
.y83_c00165{bottom:447.226667pt;}
.y85_c00165{bottom:447.800000pt;}
.y86_c00165{bottom:448.173333pt;}
.y84_c00165{bottom:448.560000pt;}
.y81_c00165{bottom:459.226667pt;}
.y80_c00165{bottom:460.173333pt;}
.y82_c00165{bottom:461.706667pt;}
.y7e_c00165{bottom:472.173333pt;}
.y7d_c00165{bottom:472.560000pt;}
.y7f_c00165{bottom:473.706667pt;}
.y7a_c00165{bottom:484.560000pt;}
.y7c_c00165{bottom:485.706667pt;}
.y79_c00165{bottom:485.893333pt;}
.y78_c00165{bottom:486.840000pt;}
.y7b_c00165{bottom:487.040000pt;}
.y76_c00165{bottom:496.560000pt;}
.y75_c00165{bottom:497.506667pt;}
.y77_c00165{bottom:497.706667pt;}
.y73_c00165{bottom:509.506667pt;}
.y72_c00165{bottom:509.893333pt;}
.y74_c00165{bottom:511.040000pt;}
.y70_c00165{bottom:520.560000pt;}
.y6e_c00165{bottom:521.506667pt;}
.y71_c00165{bottom:521.706667pt;}
.y6f_c00165{bottom:521.893333pt;}
.y6b_c00165{bottom:532.933333pt;}
.y6a_c00165{bottom:533.893333pt;}
.y6d_c00165{bottom:534.093333pt;}
.y6c_c00165{bottom:535.040000pt;}
.y68_c00165{bottom:545.506667pt;}
.y67_c00165{bottom:545.893333pt;}
.y66_c00165{bottom:546.840000pt;}
.y69_c00165{bottom:547.040000pt;}
.y63_c00165{bottom:557.893333pt;}
.y65_c00165{bottom:558.093333pt;}
.y62_c00165{bottom:558.266667pt;}
.y64_c00165{bottom:559.040000pt;}
.y61_c00165{bottom:559.226667pt;}
.y5f_c00165{bottom:570.840000pt;}
.y5e_c00165{bottom:571.226667pt;}
.y5d_c00165{bottom:572.173333pt;}
.y60_c00165{bottom:572.373333pt;}
.y5c_c00165{bottom:581.893333pt;}
.y5b_c00165{bottom:582.840000pt;}
.y5a_c00165{bottom:598.466667pt;}
.y59_c00165{bottom:600.173333pt;}
.y58_c00165{bottom:610.266667pt;}
.y56_c00165{bottom:611.226667pt;}
.y57_c00165{bottom:612.560000pt;}
.y54_c00165{bottom:624.173333pt;}
.y55_c00165{bottom:625.133333pt;}
.y53_c00165{bottom:625.506667pt;}
.y52_c00165{bottom:646.640000pt;}
.y51_c00165{bottom:647.600000pt;}
.y50_c00165{bottom:658.066667pt;}
.y4f_c00165{bottom:659.973333pt;}
.y4e_c00165{bottom:672.560000pt;}
.y4c_c00165{bottom:672.933333pt;}
.y4d_c00165{bottom:673.306667pt;}
.y4b_c00165{bottom:674.266667pt;}
.y4a_c00165{bottom:692.933333pt;}
.y49_c00165{bottom:695.600000pt;}
.y47_c00165{bottom:729.306667pt;}
.y45_c00165{bottom:730.440000pt;}
.y48_c00165{bottom:731.400000pt;}
.y46_c00165{bottom:732.360000pt;}
.y44_c00165{bottom:746.640000pt;}
.y41_c00165{bottom:747.026667pt;}
.y40_c00165{bottom:747.773333pt;}
.y42_c00165{bottom:748.560000pt;}
.y43_c00165{bottom:749.693333pt;}
.y3c_c00165{bottom:765.106667pt;}
.y3d_c00165{bottom:766.066667pt;}
.y3f_c00165{bottom:766.640000pt;}
.y3b_c00165{bottom:767.026667pt;}
.y3e_c00165{bottom:767.973333pt;}
.y38_c00165{bottom:782.440000pt;}
.y3a_c00165{bottom:784.360000pt;}
.y39_c00165{bottom:785.306667pt;}
.y35_c00165{bottom:799.773333pt;}
.y37_c00165{bottom:800.733333pt;}
.y32_c00165{bottom:801.106667pt;}
.y33_c00165{bottom:801.693333pt;}
.y36_c00165{bottom:801.893333pt;}
.y34_c00165{bottom:803.026667pt;}
.y2e_c00165{bottom:816.360000pt;}
.y31_c00165{bottom:817.106667pt;}
.y2f_c00165{bottom:818.066667pt;}
.y2c_c00165{bottom:818.440000pt;}
.y30_c00165{bottom:819.226667pt;}
.y2d_c00165{bottom:820.360000pt;}
.y29_c00165{bottom:835.400000pt;}
.y28_c00165{bottom:835.773333pt;}
.y2a_c00165{bottom:836.360000pt;}
.y25_c00165{bottom:836.560000pt;}
.y26_c00165{bottom:836.733333pt;}
.y2b_c00165{bottom:837.306667pt;}
.y27_c00165{bottom:837.693333pt;}
.y24_c00165{bottom:852.733333pt;}
.y20_c00165{bottom:853.106667pt;}
.y23_c00165{bottom:853.893333pt;}
.y21_c00165{bottom:854.066667pt;}
.y22_c00165{bottom:855.026667pt;}
.y19_c00165{bottom:869.106667pt;}
.y1f_c00165{bottom:870.066667pt;}
.y1c_c00165{bottom:870.440000pt;}
.y1b_c00165{bottom:871.400000pt;}
.y1d_c00165{bottom:871.973333pt;}
.y1a_c00165{bottom:872.360000pt;}
.y1e_c00165{bottom:872.560000pt;}
.y18_c00165{bottom:885.693333pt;}
.y16_c00165{bottom:887.026667pt;}
.y17_c00165{bottom:887.773333pt;}
.y13_c00165{bottom:889.693333pt;}
.y15_c00165{bottom:889.893333pt;}
.y14_c00165{bottom:890.640000pt;}
.yf_c00165{bottom:903.973333pt;}
.y12_c00165{bottom:904.733333pt;}
.y11_c00165{bottom:905.106667pt;}
.yd_c00165{bottom:905.893333pt;}
.y10_c00165{bottom:906.640000pt;}
.ye_c00165{bottom:907.026667pt;}
.y8_c00165{bottom:922.440000pt;}
.yc_c00165{bottom:923.226667pt;}
.yb_c00165{bottom:923.400000pt;}
.y9_c00165{bottom:924.360000pt;}
.ya_c00165{bottom:925.306667pt;}
.y6_c00165{bottom:939.773333pt;}
.y7_c00165{bottom:940.733333pt;}
.y3_c00165{bottom:941.693333pt;}
.y4_c00165{bottom:941.893333pt;}
.y5_c00165{bottom:943.026667pt;}
.y2_c00165{bottom:975.600000pt;}
.y1_c00165{bottom:975.773333pt;}
.ha_c00165{height:3.739141pt;}
.hb_c00165{height:7.412682pt;}
.h9_c00165{height:12.988594pt;}
.h8_c00165{height:14.890964pt;}
.h4_c00165{height:20.466875pt;}
.h2_c00165{height:22.303646pt;}
.h6_c00165{height:27.879557pt;}
.h3_c00165{height:31.618698pt;}
.h5_c00165{height:35.357839pt;}
.h7_c00165{height:36.952031pt;}
.h1_c00165{height:39.031380pt;}
.h0_c00165{height:1186.666667pt;}
.w0_c00165{width:782.666667pt;}
.x0_c00165{left:0.000000pt;}
.x73_c00165{left:135.040000pt;}
.x3_c00165{left:136.000000pt;}
.x1_c00165{left:138.466667pt;}
.x6b_c00165{left:148.960000pt;}
.x49_c00165{left:157.333333pt;}
.x37_c00165{left:173.706667pt;}
.x40_c00165{left:177.706667pt;}
.x20_c00165{left:180.373333pt;}
.x56_c00165{left:181.706667pt;}
.x11_c00165{left:185.706667pt;}
.x2c_c00165{left:197.706667pt;}
.x5f_c00165{left:200.000000pt;}
.x21_c00165{left:204.373333pt;}
.x4_c00165{left:206.666667pt;}
.x79_c00165{left:208.373333pt;}
.x41_c00165{left:212.960000pt;}
.x74_c00165{left:215.040000pt;}
.x60_c00165{left:217.706667pt;}
.x2d_c00165{left:225.333333pt;}
.x5_c00165{left:227.040000pt;}
.x4a_c00165{left:229.706667pt;}
.x22_c00165{left:236.000000pt;}
.x57_c00165{left:238.666667pt;}
.x61_c00165{left:240.000000pt;}
.x42_c00165{left:241.333333pt;}
.x12_c00165{left:244.000000pt;}
.x7a_c00165{left:249.706667pt;}
.x6_c00165{left:250.666667pt;}
.x4b_c00165{left:253.706667pt;}
.x38_c00165{left:255.040000pt;}
.x8d_c00165{left:256.000000pt;}
.x6c_c00165{left:260.000000pt;}
.x75_c00165{left:261.333333pt;}
.x67_c00165{left:262.293333pt;}
.xa6_c00165{left:265.333333pt;}
.x13_c00165{left:266.293333pt;}
.x7_c00165{left:269.333333pt;}
.x7b_c00165{left:274.666667pt;}
.x8f_c00165{left:276.000000pt;}
.x4c_c00165{left:278.666667pt;}
.x8_c00165{left:282.666667pt;}
.x23_c00165{left:284.000000pt;}
.x88_c00165{left:285.333333pt;}
.x6d_c00165{left:286.666667pt;}
.xa7_c00165{left:289.333333pt;}
.xa3_c00165{left:290.293333pt;}
.xaa_c00165{left:293.333333pt;}
.xa5_c00165{left:294.666667pt;}
.x14_c00165{left:296.960000pt;}
.xa0_c00165{left:298.666667pt;}
.xa4_c00165{left:300.000000pt;}
.x4d_c00165{left:301.706667pt;}
.x9e_c00165{left:303.040000pt;}
.xab_c00165{left:305.333333pt;}
.x43_c00165{left:307.040000pt;}
.x39_c00165{left:308.373333pt;}
.x68_c00165{left:309.333333pt;}
.x9f_c00165{left:310.666667pt;}
.x9_c00165{left:312.000000pt;}
.x15_c00165{left:313.706667pt;}
.x96_c00165{left:314.666667pt;}
.x9b_c00165{left:316.000000pt;}
.x97_c00165{left:317.706667pt;}
.x2e_c00165{left:327.626667pt;}
.x84_c00165{left:330.666667pt;}
.x98_c00165{left:332.000000pt;}
.x4e_c00165{left:333.333333pt;}
.xa1_c00165{left:334.666667pt;}
.x16_c00165{left:337.333333pt;}
.x89_c00165{left:341.333333pt;}
.x3a_c00165{left:343.040000pt;}
.xa2_c00165{left:348.000000pt;}
.xa9_c00165{left:349.706667pt;}
.x8c_c00165{left:350.666667pt;}
.x2f_c00165{left:354.666667pt;}
.x2_c00165{left:357.333333pt;}
.x85_c00165{left:361.333333pt;}
.x62_c00165{left:362.666667pt;}
.x24_c00165{left:364.000000pt;}
.x82_c00165{left:366.666667pt;}
.x7c_c00165{left:371.040000pt;}
.x30_c00165{left:373.333333pt;}
.x58_c00165{left:374.666667pt;}
.x17_c00165{left:377.333333pt;}
.x4f_c00165{left:380.373333pt;}
.xa_c00165{left:384.373333pt;}
.x31_c00165{left:385.706667pt;}
.x59_c00165{left:386.666667pt;}
.x44_c00165{left:388.373333pt;}
.x8a_c00165{left:389.333333pt;}
.x3b_c00165{left:392.000000pt;}
.x63_c00165{left:395.040000pt;}
.x7d_c00165{left:396.000000pt;}
.x76_c00165{left:400.000000pt;}
.x50_c00165{left:402.293333pt;}
.x6e_c00165{left:404.000000pt;}
.x90_c00165{left:406.093333pt;}
.x83_c00165{left:407.426667pt;}
.x99_c00165{left:408.373333pt;}
.xb_c00165{left:410.293333pt;}
.x9c_c00165{left:412.000000pt;}
.x18_c00165{left:413.333333pt;}
.x92_c00165{left:416.000000pt;}
.x69_c00165{left:416.960000pt;}
.x5a_c00165{left:423.040000pt;}
.x19_c00165{left:424.373333pt;}
.x51_c00165{left:429.333333pt;}
.x32_c00165{left:436.000000pt;}
.x25_c00165{left:437.333333pt;}
.x94_c00165{left:440.000000pt;}
.x64_c00165{left:441.333333pt;}
.x52_c00165{left:442.666667pt;}
.x9d_c00165{left:444.000000pt;}
.x3c_c00165{left:446.666667pt;}
.x93_c00165{left:448.000000pt;}
.x45_c00165{left:449.706667pt;}
.xc_c00165{left:451.626667pt;}
.x86_c00165{left:456.000000pt;}
.x6a_c00165{left:460.373333pt;}
.x1a_c00165{left:463.040000pt;}
.x26_c00165{left:465.706667pt;}
.x5b_c00165{left:471.040000pt;}
.x91_c00165{left:472.000000pt;}
.x7e_c00165{left:476.000000pt;}
.x53_c00165{left:477.706667pt;}
.x8b_c00165{left:479.040000pt;}
.x87_c00165{left:480.000000pt;}
.xd_c00165{left:481.706667pt;}
.x1b_c00165{left:484.000000pt;}
.x65_c00165{left:490.293333pt;}
.x27_c00165{left:496.000000pt;}
.x46_c00165{left:504.000000pt;}
.xe_c00165{left:507.626667pt;}
.x6f_c00165{left:509.333333pt;}
.x5c_c00165{left:511.040000pt;}
.x95_c00165{left:512.000000pt;}
.x8e_c00165{left:513.333333pt;}
.x7f_c00165{left:514.666667pt;}
.xa8_c00165{left:516.000000pt;}
.x9a_c00165{left:520.000000pt;}
.x33_c00165{left:524.373333pt;}
.x5d_c00165{left:534.293333pt;}
.x28_c00165{left:538.666667pt;}
.x54_c00165{left:542.666667pt;}
.x3d_c00165{left:544.373333pt;}
.xf_c00165{left:546.666667pt;}
.x1c_c00165{left:547.626667pt;}
.x34_c00165{left:550.293333pt;}
.x29_c00165{left:552.000000pt;}
.x80_c00165{left:555.040000pt;}
.x77_c00165{left:559.626667pt;}
.x47_c00165{left:562.666667pt;}
.x1d_c00165{left:564.373333pt;}
.x3e_c00165{left:568.960000pt;}
.x35_c00165{left:571.040000pt;}
.x70_c00165{left:574.666667pt;}
.x10_c00165{left:580.960000pt;}
.x5e_c00165{left:588.000000pt;}
.x1e_c00165{left:589.706667pt;}
.x71_c00165{left:591.040000pt;}
.x48_c00165{left:596.373333pt;}
.x2a_c00165{left:601.333333pt;}
.x78_c00165{left:604.000000pt;}
.x36_c00165{left:614.666667pt;}
.x55_c00165{left:616.000000pt;}
.x72_c00165{left:617.706667pt;}
.x2b_c00165{left:619.040000pt;}
.x1f_c00165{left:620.000000pt;}
.x66_c00165{left:621.706667pt;}
.x3f_c00165{left:624.000000pt;}
.x81_c00165{left:629.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_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_adf4b944a56704e62bfc0c80.woff2')format("woff");}.ff1_c00166{font-family:ff1_c00166;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7b_c00166{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.m75_c00166{transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);}
.mca_c00166{transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);}
.mef_c00166{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_c00166{transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);}
.m71_c00166{transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);}
.m69_c00166{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m67_c00166{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.mdf_c00166{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m62_c00166{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m54_c00166{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.md2_c00166{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m7c_c00166{transform:matrix(0.376534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376534,0.000000,0.000000,0.250000,0,0);}
.mb8_c00166{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m53_c00166{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mc3_c00166{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.mcb_c00166{transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);}
.m76_c00166{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m4e_c00166{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m70_c00166{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.ma1_c00166{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m52_c00166{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.md5_c00166{transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);}
.m5c_c00166{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m30_c00166{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.me9_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);}
.m2f_c00166{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m6c_c00166{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m81_c00166{transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);}
.m72_c00166{transform:matrix(0.403758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403758,0.000000,0.000000,0.250000,0,0);}
.mad_c00166{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.mdb_c00166{transform:matrix(0.404908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404908,0.000000,0.000000,0.250000,0,0);}
.meb_c00166{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m79_c00166{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.mbf_c00166{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m47_c00166{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m40_c00166{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.ma0_c00166{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.ma6_c00166{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mee_c00166{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.ma3_c00166{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m87_c00166{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m80_c00166{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m3f_c00166{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m46_c00166{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m5e_c00166{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m1f_c00166{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.m31_c00166{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m35_c00166{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m98_c00166{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m99_c00166{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m73_c00166{transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);}
.mdc_c00166{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m6e_c00166{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mc4_c00166{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m22_c00166{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m27_c00166{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mb0_c00166{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m5_c00166{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.mbe_c00166{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m64_c00166{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.md0_c00166{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m19_c00166{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.md9_c00166{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m36_c00166{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m84_c00166{transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);}
.ma_c00166{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m10_c00166{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m9a_c00166{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mce_c00166{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m7a_c00166{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m6f_c00166{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.mb6_c00166{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m14_c00166{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.mcf_c00166{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.mcc_c00166{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m86_c00166{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m78_c00166{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m91_c00166{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.mbd_c00166{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m28_c00166{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.mb1_c00166{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.mae_c00166{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m26_c00166{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mc_c00166{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m3d_c00166{transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);}
.m1_c00166{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.mab_c00166{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m4f_c00166{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m95_c00166{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);}
.m32_c00166{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.m43_c00166{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.mc8_c00166{transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);}
.mc9_c00166{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.mb5_c00166{transform:matrix(0.463866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463866,0.000000,0.000000,0.250000,0,0);}
.m3b_c00166{transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);}
.mbb_c00166{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.m7f_c00166{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.m2_c00166{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m8c_c00166{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m3e_c00166{transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);}
.m1a_c00166{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m17_c00166{transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);}
.m58_c00166{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m93_c00166{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.med_c00166{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m85_c00166{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m7_c00166{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m55_c00166{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mac_c00166{transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);}
.m66_c00166{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m82_c00166{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.me7_c00166{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m2e_c00166{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);}
.mda_c00166{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m2c_c00166{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mb_c00166{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m74_c00166{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mcd_c00166{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mea_c00166{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.mb2_c00166{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m1c_c00166{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m8a_c00166{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.m68_c00166{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m9d_c00166{transform:matrix(0.514842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514842,0.000000,0.000000,0.250000,0,0);}
.m63_c00166{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m2b_c00166{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m45_c00166{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m50_c00166{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m1b_c00166{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m48_c00166{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.md8_c00166{transform:matrix(0.524840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524840,0.000000,0.000000,0.250000,0,0);}
.mba_c00166{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mbc_c00166{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m90_c00166{transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);}
.m13_c00166{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.md6_c00166{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m4b_c00166{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m5f_c00166{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.me8_c00166{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m44_c00166{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m33_c00166{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m3_c00166{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m38_c00166{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m2a_c00166{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m4d_c00166{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m49_c00166{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m21_c00166{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m56_c00166{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m11_c00166{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m6b_c00166{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.ma8_c00166{transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);}
.mde_c00166{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mb7_c00166{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m9f_c00166{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.ma4_c00166{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m6d_c00166{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m89_c00166{transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);}
.m4a_c00166{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m60_c00166{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m6_c00166{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m18_c00166{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.ma2_c00166{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m12_c00166{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m9_c00166{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m57_c00166{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mdd_c00166{transform:matrix(0.551948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551948,0.000000,0.000000,0.250000,0,0);}
.m59_c00166{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m23_c00166{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m42_c00166{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m8e_c00166{transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);}
.ma9_c00166{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m8f_c00166{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.me1_c00166{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m41_c00166{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mb4_c00166{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.m2d_c00166{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m6a_c00166{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m8b_c00166{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m88_c00166{transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);}
.maa_c00166{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m29_c00166{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m83_c00166{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m8d_c00166{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.m3c_c00166{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m5b_c00166{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.mc0_c00166{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m20_c00166{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.me5_c00166{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m4_c00166{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.ma7_c00166{transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);}
.m4c_c00166{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m96_c00166{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.md4_c00166{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m94_c00166{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.me2_c00166{transform:matrix(0.587059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587059,0.000000,0.000000,0.250000,0,0);}
.m3a_c00166{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.md3_c00166{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.mb9_c00166{transform:matrix(0.594398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594398,0.000000,0.000000,0.250000,0,0);}
.m34_c00166{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.m65_c00166{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m39_c00166{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m0_c00166{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.me_c00166{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.me3_c00166{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.md7_c00166{transform:matrix(0.608921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608921,0.000000,0.000000,0.250000,0,0);}
.me4_c00166{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m1e_c00166{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.md_c00166{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m9e_c00166{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.m7e_c00166{transform:matrix(0.618776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618776,0.000000,0.000000,0.250000,0,0);}
.maf_c00166{transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);}
.mc7_c00166{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);}
.mc2_c00166{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.me6_c00166{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.m1d_c00166{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mec_c00166{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.m7d_c00166{transform:matrix(0.643672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643672,0.000000,0.000000,0.250000,0,0);}
.m92_c00166{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m5d_c00166{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m8_c00166{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m77_c00166{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.ma5_c00166{transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);}
.mc6_c00166{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m9c_c00166{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.m5a_c00166{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.mb3_c00166{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mc5_c00166{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m37_c00166{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m16_c00166{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.md1_c00166{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mc1_c00166{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m24_c00166{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m61_c00166{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m25_c00166{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mf_c00166{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.me0_c00166{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m97_c00166{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m51_c00166{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m9b_c00166{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00166{vertical-align:-6.000000px;}
.v0_c00166{vertical-align:0.000000px;}
.ls0_c00166{letter-spacing:0.000000px;}
.sc__c00166{text-shadow:none;}
.sc0_c00166{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00166{-webkit-text-stroke:0px transparent;}
.sc0_c00166{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00166{word-spacing:-8.008560px;}
.ws1_c00166{word-spacing:-7.448345px;}
.ws0_c00166{word-spacing:-6.628518px;}
.ws3_c00166{word-spacing:0.000000px;}
.fc0_c00166{color:transparent;}
.fs6_c00166{font-size:3.420000px;}
.fs8_c00166{font-size:13.620000px;}
.fs4_c00166{font-size:18.720000px;}
.fs0_c00166{font-size:20.400000px;}
.fs5_c00166{font-size:25.500000px;}
.fs1_c00166{font-size:28.920000px;}
.fs2_c00166{font-size:32.340000px;}
.fs3_c00166{font-size:35.700000px;}
.fs7_c00166{font-size:39.120000px;}
.y0_c00166{bottom:0.000000px;}
.ycc_c00166{bottom:254.745000px;}
.ycd_c00166{bottom:255.630000px;}
.yce_c00166{bottom:256.905000px;}
.yca_c00166{bottom:272.745000px;}
.ycb_c00166{bottom:273.405000px;}
.yc8_c00166{bottom:273.825000px;}
.yc6_c00166{bottom:274.245000px;}
.yc9_c00166{bottom:274.905000px;}
.yc5_c00166{bottom:275.970000px;}
.yc7_c00166{bottom:276.405000px;}
.yc1_c00166{bottom:292.245000px;}
.yc3_c00166{bottom:293.130000px;}
.yc2_c00166{bottom:294.405000px;}
.yc0_c00166{bottom:294.825000px;}
.yc4_c00166{bottom:295.470000px;}
.ybf_c00166{bottom:295.905000px;}
.ybd_c00166{bottom:312.180000px;}
.ybc_c00166{bottom:313.245000px;}
.ybe_c00166{bottom:314.325000px;}
.ybb_c00166{bottom:315.405000px;}
.yb8_c00166{bottom:331.245000px;}
.yb9_c00166{bottom:332.745000px;}
.yb4_c00166{bottom:333.180000px;}
.yb7_c00166{bottom:334.905000px;}
.yba_c00166{bottom:335.130000px;}
.yb6_c00166{bottom:336.405000px;}
.yb5_c00166{bottom:336.420000px;}
.yb1_c00166{bottom:352.245000px;}
.yb2_c00166{bottom:353.130000px;}
.yb0_c00166{bottom:354.405000px;}
.yb3_c00166{bottom:355.470000px;}
.yaf_c00166{bottom:369.405000px;}
.yad_c00166{bottom:371.745000px;}
.yab_c00166{bottom:372.630000px;}
.yae_c00166{bottom:372.825000px;}
.yac_c00166{bottom:373.905000px;}
.yaa_c00166{bottom:391.245000px;}
.ya4_c00166{bottom:391.680000px;}
.ya9_c00166{bottom:393.405000px;}
.ya5_c00166{bottom:393.630000px;}
.ya8_c00166{bottom:393.825000px;}
.ya7_c00166{bottom:394.470000px;}
.ya6_c00166{bottom:394.905000px;}
.ya0_c00166{bottom:409.905000px;}
.ya1_c00166{bottom:410.325000px;}
.ya2_c00166{bottom:411.825000px;}
.y9d_c00166{bottom:412.245000px;}
.ya3_c00166{bottom:412.905000px;}
.y9e_c00166{bottom:413.970000px;}
.y9f_c00166{bottom:414.405000px;}
.y9c_c00166{bottom:415.470000px;}
.y97_c00166{bottom:430.905000px;}
.y98_c00166{bottom:431.745000px;}
.y9b_c00166{bottom:432.405000px;}
.y99_c00166{bottom:432.630000px;}
.y96_c00166{bottom:432.825000px;}
.y9a_c00166{bottom:433.905000px;}
.y93_c00166{bottom:449.745000px;}
.y90_c00166{bottom:451.245000px;}
.y92_c00166{bottom:451.905000px;}
.y94_c00166{bottom:452.130000px;}
.y95_c00166{bottom:452.970000px;}
.y91_c00166{bottom:453.405000px;}
.y8e_c00166{bottom:468.825000px;}
.y8c_c00166{bottom:470.745000px;}
.y8f_c00166{bottom:471.630000px;}
.y8d_c00166{bottom:471.825000px;}
.y8b_c00166{bottom:472.905000px;}
.y89_c00166{bottom:488.745000px;}
.y85_c00166{bottom:490.245000px;}
.y8a_c00166{bottom:491.970000px;}
.y86_c00166{bottom:492.405000px;}
.y87_c00166{bottom:492.630000px;}
.y88_c00166{bottom:493.470000px;}
.y83_c00166{bottom:509.745000px;}
.y84_c00166{bottom:510.630000px;}
.y81_c00166{bottom:511.905000px;}
.y82_c00166{bottom:513.420000px;}
.y7f_c00166{bottom:529.245000px;}
.y7e_c00166{bottom:530.325000px;}
.y80_c00166{bottom:532.470000px;}
.y7c_c00166{bottom:532.905000px;}
.y7d_c00166{bottom:532.920000px;}
.y7b_c00166{bottom:550.245000px;}
.y79_c00166{bottom:551.550000px;}
.y78_c00166{bottom:552.405000px;}
.y7a_c00166{bottom:552.420000px;}
.y77_c00166{bottom:567.405000px;}
.y75_c00166{bottom:568.905000px;}
.y76_c00166{bottom:569.325000px;}
.y72_c00166{bottom:569.745000px;}
.y74_c00166{bottom:571.905000px;}
.y73_c00166{bottom:571.920000px;}
.y6e_c00166{bottom:589.245000px;}
.y71_c00166{bottom:590.325000px;}
.y6f_c00166{bottom:591.420000px;}
.y70_c00166{bottom:592.470000px;}
.y6d_c00166{bottom:612.825000px;}
.y6b_c00166{bottom:613.905000px;}
.y6c_c00166{bottom:615.195000px;}
.y66_c00166{bottom:628.050000px;}
.y69_c00166{bottom:628.470000px;}
.y65_c00166{bottom:628.905000px;}
.y6a_c00166{bottom:629.130000px;}
.y68_c00166{bottom:629.550000px;}
.y64_c00166{bottom:629.970000px;}
.y67_c00166{bottom:631.050000px;}
.y63_c00166{bottom:647.325000px;}
.y62_c00166{bottom:647.550000px;}
.y61_c00166{bottom:648.405000px;}
.y60_c00166{bottom:669.825000px;}
.y5f_c00166{bottom:671.745000px;}
.y5e_c00166{bottom:672.825000px;}
.y5d_c00166{bottom:673.905000px;}
.y5c_c00166{bottom:706.680000px;}
.y5a_c00166{bottom:706.905000px;}
.y59_c00166{bottom:707.325000px;}
.y56_c00166{bottom:707.745000px;}
.y57_c00166{bottom:709.470000px;}
.y5b_c00166{bottom:709.905000px;}
.y58_c00166{bottom:710.970000px;}
.y54_c00166{bottom:726.180000px;}
.y52_c00166{bottom:727.680000px;}
.y55_c00166{bottom:728.130000px;}
.y51_c00166{bottom:729.405000px;}
.y53_c00166{bottom:729.825000px;}
.y4f_c00166{bottom:746.745000px;}
.y50_c00166{bottom:747.825000px;}
.y4e_c00166{bottom:765.405000px;}
.y4d_c00166{bottom:766.245000px;}
.y4b_c00166{bottom:768.405000px;}
.y4c_c00166{bottom:768.630000px;}
.y49_c00166{bottom:785.745000px;}
.y47_c00166{bottom:787.245000px;}
.y4a_c00166{bottom:787.905000px;}
.y48_c00166{bottom:788.130000px;}
.y46_c00166{bottom:788.970000px;}
.y45_c00166{bottom:789.405000px;}
.y42_c00166{bottom:805.245000px;}
.y43_c00166{bottom:805.470000px;}
.y41_c00166{bottom:807.405000px;}
.y44_c00166{bottom:807.630000px;}
.y3f_c00166{bottom:824.745000px;}
.y3e_c00166{bottom:826.905000px;}
.y3d_c00166{bottom:827.130000px;}
.y3c_c00166{bottom:827.325000px;}
.y40_c00166{bottom:827.970000px;}
.y3b_c00166{bottom:828.405000px;}
.y3a_c00166{bottom:843.405000px;}
.y38_c00166{bottom:845.745000px;}
.y39_c00166{bottom:846.630000px;}
.y36_c00166{bottom:847.905000px;}
.y37_c00166{bottom:847.920000px;}
.y35_c00166{bottom:864.405000px;}
.y34_c00166{bottom:867.405000px;}
.y32_c00166{bottom:884.745000px;}
.y33_c00166{bottom:885.630000px;}
.y31_c00166{bottom:886.470000px;}
.y30_c00166{bottom:886.905000px;}
.y2f_c00166{bottom:906.405000px;}
.y2b_c00166{bottom:923.745000px;}
.y2c_c00166{bottom:925.245000px;}
.y2d_c00166{bottom:925.905000px;}
.y2e_c00166{bottom:926.130000px;}
.y2a_c00166{bottom:927.405000px;}
.y26_c00166{bottom:943.245000px;}
.y28_c00166{bottom:944.325000px;}
.y27_c00166{bottom:945.405000px;}
.y29_c00166{bottom:945.630000px;}
.y24_c00166{bottom:961.905000px;}
.y22_c00166{bottom:962.745000px;}
.y20_c00166{bottom:962.970000px;}
.y21_c00166{bottom:964.245000px;}
.y23_c00166{bottom:964.905000px;}
.y1e_c00166{bottom:965.130000px;}
.y25_c00166{bottom:965.325000px;}
.y1f_c00166{bottom:966.405000px;}
.y1c_c00166{bottom:982.470000px;}
.y1a_c00166{bottom:983.745000px;}
.y1b_c00166{bottom:984.825000px;}
.y1d_c00166{bottom:985.470000px;}
.y19_c00166{bottom:985.905000px;}
.y17_c00166{bottom:1001.745000px;}
.y15_c00166{bottom:1003.245000px;}
.y16_c00166{bottom:1004.130000px;}
.y18_c00166{bottom:1004.325000px;}
.y14_c00166{bottom:1005.405000px;}
.yf_c00166{bottom:1020.405000px;}
.y12_c00166{bottom:1022.325000px;}
.y10_c00166{bottom:1022.745000px;}
.y13_c00166{bottom:1023.630000px;}
.yd_c00166{bottom:1023.825000px;}
.y11_c00166{bottom:1024.470000px;}
.ye_c00166{bottom:1024.905000px;}
.yc_c00166{bottom:1039.905000px;}
.y8_c00166{bottom:1042.245000px;}
.yb_c00166{bottom:1043.130000px;}
.ya_c00166{bottom:1043.970000px;}
.y9_c00166{bottom:1044.405000px;}
.y5_c00166{bottom:1061.745000px;}
.y7_c00166{bottom:1062.630000px;}
.y3_c00166{bottom:1062.825000px;}
.y4_c00166{bottom:1063.905000px;}
.y6_c00166{bottom:1064.130000px;}
.y2_c00166{bottom:1099.905000px;}
.y1_c00166{bottom:1102.050000px;}
.h7_c00166{height:4.206533px;}
.h9_c00166{height:16.752334px;}
.h5_c00166{height:23.025234px;}
.h1_c00166{height:25.091602px;}
.h6_c00166{height:31.364502px;}
.h2_c00166{height:35.571035px;}
.h3_c00166{height:39.777568px;}
.h4_c00166{height:43.910303px;}
.h8_c00166{height:48.116836px;}
.h0_c00166{height:1335.000000px;}
.w0_c00166{width:880.500000px;}
.x0_c00166{left:0.000000px;}
.x11_c00166{left:151.920000px;}
.x3_c00166{left:153.000000px;}
.xf7_c00166{left:154.500000px;}
.x41_c00166{left:166.500000px;}
.xb3_c00166{left:168.420000px;}
.xf2_c00166{left:169.500000px;}
.xb1_c00166{left:172.500000px;}
.xed_c00166{left:174.420000px;}
.x93_c00166{left:175.500000px;}
.xd1_c00166{left:177.420000px;}
.x63_c00166{left:178.500000px;}
.x7e_c00166{left:183.420000px;}
.x75_c00166{left:185.580000px;}
.x105_c00166{left:187.920000px;}
.x101_c00166{left:191.580000px;}
.x28_c00166{left:193.920000px;}
.x6b_c00166{left:196.920000px;}
.x36_c00166{left:198.000000px;}
.x4_c00166{left:199.920000px;}
.x84_c00166{left:201.420000px;}
.x96_c00166{left:202.500000px;}
.x57_c00166{left:204.420000px;}
.xb4_c00166{left:208.920000px;}
.xb2_c00166{left:211.500000px;}
.xdd_c00166{left:213.420000px;}
.x9c_c00166{left:214.500000px;}
.x1e_c00166{left:216.420000px;}
.x4c_c00166{left:219.420000px;}
.x12_c00166{left:220.500000px;}
.xa9_c00166{left:222.000000px;}
.x8b_c00166{left:226.920000px;}
.x5_c00166{left:228.000000px;}
.x102_c00166{left:229.500000px;}
.x7f_c00166{left:232.080000px;}
.x9d_c00166{left:234.000000px;}
.x94_c00166{left:235.080000px;}
.x6c_c00166{left:237.000000px;}
.x13_c00166{left:238.920000px;}
.x29_c00166{left:241.920000px;}
.x1f_c00166{left:244.920000px;}
.xbc_c00166{left:249.000000px;}
.xee_c00166{left:252.000000px;}
.x37_c00166{left:253.080000px;}
.xde_c00166{left:255.000000px;}
.x6d_c00166{left:257.580000px;}
.x9e_c00166{left:261.000000px;}
.x76_c00166{left:262.080000px;}
.x64_c00166{left:263.580000px;}
.xb5_c00166{left:267.000000px;}
.x38_c00166{left:270.000000px;}
.xe9_c00166{left:271.500000px;}
.x6_c00166{left:273.420000px;}
.x58_c00166{left:276.420000px;}
.x2a_c00166{left:277.920000px;}
.x80_c00166{left:279.420000px;}
.x20_c00166{left:280.500000px;}
.x95_c00166{left:282.000000px;}
.x42_c00166{left:283.500000px;}
.x85_c00166{left:284.580000px;}
.xb6_c00166{left:287.580000px;}
.x4d_c00166{left:289.920000px;}
.x14_c00166{left:294.000000px;}
.x65_c00166{left:297.000000px;}
.xc7_c00166{left:298.920000px;}
.xbd_c00166{left:301.500000px;}
.x2b_c00166{left:304.500000px;}
.x86_c00166{left:306.420000px;}
.x77_c00166{left:307.500000px;}
.x39_c00166{left:310.500000px;}
.xf0_c00166{left:311.580000px;}
.x97_c00166{left:313.500000px;}
.xa2_c00166{left:314.580000px;}
.x8c_c00166{left:316.920000px;}
.xd2_c00166{left:318.420000px;}
.x43_c00166{left:319.920000px;}
.xbe_c00166{left:322.080000px;}
.x15_c00166{left:327.420000px;}
.xef_c00166{left:333.420000px;}
.x87_c00166{left:334.500000px;}
.x4e_c00166{left:336.420000px;}
.xc8_c00166{left:337.920000px;}
.x7_c00166{left:339.420000px;}
.xaa_c00166{left:341.355000px;}
.x6e_c00166{left:342.420000px;}
.x2c_c00166{left:343.500000px;}
.xb7_c00166{left:344.580000px;}
.xbf_c00166{left:348.000000px;}
.x78_c00166{left:349.500000px;}
.xf3_c00166{left:351.420000px;}
.x16_c00166{left:352.500000px;}
.xc1_c00166{left:355.920000px;}
.x81_c00166{left:357.420000px;}
.xf8_c00166{left:358.500000px;}
.xb9_c00166{left:360.000000px;}
.x2d_c00166{left:361.500000px;}
.xd3_c00166{left:362.580000px;}
.xea_c00166{left:367.500000px;}
.x8_c00166{left:369.000000px;}
.xc4_c00166{left:370.500000px;}
.x44_c00166{left:372.420000px;}
.x4f_c00166{left:373.920000px;}
.xab_c00166{left:376.500000px;}
.xe4_c00166{left:378.000000px;}
.x98_c00166{left:379.500000px;}
.x59_c00166{left:381.420000px;}
.xc9_c00166{left:384.000000px;}
.x6f_c00166{left:387.000000px;}
.x82_c00166{left:388.500000px;}
.x2e_c00166{left:390.420000px;}
.x21_c00166{left:394.500000px;}
.xf9_c00166{left:396.420000px;}
.x1_c00166{left:397.500000px;}
.xa6_c00166{left:399.420000px;}
.x50_c00166{left:400.500000px;}
.xca_c00166{left:403.080000px;}
.xff_c00166{left:408.000000px;}
.x17_c00166{left:409.500000px;}
.x9_c00166{left:411.000000px;}
.x22_c00166{left:412.500000px;}
.xdf_c00166{left:415.920000px;}
.xa7_c00166{left:418.500000px;}
.x3a_c00166{left:421.920000px;}
.x9f_c00166{left:423.000000px;}
.xf4_c00166{left:424.080000px;}
.xc2_c00166{left:426.000000px;}
.x18_c00166{left:427.920000px;}
.x8d_c00166{left:429.000000px;}
.xc5_c00166{left:430.080000px;}
.x88_c00166{left:433.920000px;}
.x5a_c00166{left:435.420000px;}
.x45_c00166{left:436.500000px;}
.xd4_c00166{left:437.580000px;}
.xa3_c00166{left:439.080000px;}
.x66_c00166{left:440.580000px;}
.x79_c00166{left:442.920000px;}
.xac_c00166{left:444.000000px;}
.x8e_c00166{left:445.500000px;}
.xe0_c00166{left:451.500000px;}
.x89_c00166{left:454.500000px;}
.x2f_c00166{left:456.420000px;}
.xd5_c00166{left:459.420000px;}
.x67_c00166{left:460.920000px;}
.x5b_c00166{left:462.420000px;}
.x3b_c00166{left:465.420000px;}
.xcb_c00166{left:466.920000px;}
.xa_c00166{left:468.000000px;}
.xe5_c00166{left:471.000000px;}
.x19_c00166{left:472.080000px;}
.xba_c00166{left:476.580000px;}
.xb8_c00166{left:478.500000px;}
.x103_c00166{left:481.080000px;}
.xf1_c00166{left:483.000000px;}
.x7a_c00166{left:484.920000px;}
.xa4_c00166{left:486.420000px;}
.x23_c00166{left:487.500000px;}
.xb_c00166{left:489.000000px;}
.x3c_c00166{left:490.500000px;}
.xa0_c00166{left:492.000000px;}
.x46_c00166{left:493.500000px;}
.xe6_c00166{left:495.000000px;}
.x5c_c00166{left:496.500000px;}
.x104_c00166{left:498.000000px;}
.x51_c00166{left:501.000000px;}
.xd6_c00166{left:502.080000px;}
.xa8_c00166{left:503.580000px;}
.xe1_c00166{left:507.000000px;}
.x30_c00166{left:509.580000px;}
.xa1_c00166{left:511.080000px;}
.xf5_c00166{left:514.500000px;}
.xcc_c00166{left:516.000000px;}
.x83_c00166{left:517.500000px;}
.x1a_c00166{left:519.420000px;}
.x8f_c00166{left:521.580000px;}
.xc_c00166{left:523.500000px;}
.x99_c00166{left:524.580000px;}
.x31_c00166{left:526.500000px;}
.xd7_c00166{left:529.500000px;}
.x3d_c00166{left:530.580000px;}
.x52_c00166{left:534.000000px;}
.x47_c00166{left:535.500000px;}
.xa5_c00166{left:537.855000px;}
.x5d_c00166{left:539.580000px;}
.x90_c00166{left:541.920000px;}
.xd_c00166{left:544.920000px;}
.xc6_c00166{left:547.500000px;}
.xd8_c00166{left:549.420000px;}
.x53_c00166{left:553.920000px;}
.x48_c00166{left:555.420000px;}
.x70_c00166{left:556.500000px;}
.xfa_c00166{left:561.000000px;}
.xe2_c00166{left:562.500000px;}
.xc3_c00166{left:564.000000px;}
.xe7_c00166{left:565.500000px;}
.xc0_c00166{left:566.580000px;}
.x68_c00166{left:568.500000px;}
.xad_c00166{left:570.000000px;}
.x32_c00166{left:571.920000px;}
.xe_c00166{left:573.000000px;}
.x71_c00166{left:576.000000px;}
.xcd_c00166{left:578.580000px;}
.x24_c00166{left:582.000000px;}
.x5e_c00166{left:585.420000px;}
.x54_c00166{left:589.500000px;}
.x3e_c00166{left:591.420000px;}
.xeb_c00166{left:594.000000px;}
.x1b_c00166{left:598.500000px;}
.x7b_c00166{left:601.500000px;}
.x49_c00166{left:603.000000px;}
.xce_c00166{left:607.920000px;}
.x55_c00166{left:609.420000px;}
.x25_c00166{left:610.500000px;}
.x9a_c00166{left:612.420000px;}
.x72_c00166{left:613.500000px;}
.x5f_c00166{left:616.920000px;}
.x3f_c00166{left:618.000000px;}
.xdb_c00166{left:619.500000px;}
.xfb_c00166{left:622.500000px;}
.x91_c00166{left:624.420000px;}
.x33_c00166{left:627.000000px;}
.x73_c00166{left:628.080000px;}
.x7c_c00166{left:633.000000px;}
.xf_c00166{left:634.500000px;}
.x56_c00166{left:636.000000px;}
.xd9_c00166{left:637.500000px;}
.x1c_c00166{left:639.000000px;}
.xdc_c00166{left:640.500000px;}
.x34_c00166{left:642.420000px;}
.x69_c00166{left:643.500000px;}
.xe3_c00166{left:649.500000px;}
.x100_c00166{left:654.000000px;}
.x9b_c00166{left:655.920000px;}
.xfc_c00166{left:657.000000px;}
.x4a_c00166{left:658.920000px;}
.x60_c00166{left:660.000000px;}
.x7d_c00166{left:661.080000px;}
.x1d_c00166{left:664.920000px;}
.x74_c00166{left:666.000000px;}
.x26_c00166{left:667.080000px;}
.x35_c00166{left:669.000000px;}
.xcf_c00166{left:670.920000px;}
.x6a_c00166{left:672.420000px;}
.xae_c00166{left:673.920000px;}
.x40_c00166{left:675.420000px;}
.x10_c00166{left:678.000000px;}
.x61_c00166{left:679.920000px;}
.xda_c00166{left:681.000000px;}
.x8a_c00166{left:685.500000px;}
.xfd_c00166{left:687.000000px;}
.x4b_c00166{left:691.500000px;}
.x92_c00166{left:693.420000px;}
.xec_c00166{left:697.920000px;}
.xaf_c00166{left:700.080000px;}
.xbb_c00166{left:703.080000px;}
.x2_c00166{left:705.420000px;}
.x27_c00166{left:708.000000px;}
.xe8_c00166{left:711.420000px;}
.x62_c00166{left:715.500000px;}
.xd0_c00166{left:718.080000px;}
.xfe_c00166{left:720.000000px;}
.xb0_c00166{left:721.920000px;}
.xf6_c00166{left:723.000000px;}
@media print{
.v1_c00166{vertical-align:-5.333333pt;}
.v0_c00166{vertical-align:0.000000pt;}
.ls0_c00166{letter-spacing:0.000000pt;}
.ws2_c00166{word-spacing:-7.118720pt;}
.ws1_c00166{word-spacing:-6.620751pt;}
.ws0_c00166{word-spacing:-5.892016pt;}
.ws3_c00166{word-spacing:0.000000pt;}
.fs6_c00166{font-size:3.040000pt;}
.fs8_c00166{font-size:12.106667pt;}
.fs4_c00166{font-size:16.640000pt;}
.fs0_c00166{font-size:18.133333pt;}
.fs5_c00166{font-size:22.666667pt;}
.fs1_c00166{font-size:25.706667pt;}
.fs2_c00166{font-size:28.746667pt;}
.fs3_c00166{font-size:31.733333pt;}
.fs7_c00166{font-size:34.773333pt;}
.y0_c00166{bottom:0.000000pt;}
.ycc_c00166{bottom:226.440000pt;}
.ycd_c00166{bottom:227.226667pt;}
.yce_c00166{bottom:228.360000pt;}
.yca_c00166{bottom:242.440000pt;}
.ycb_c00166{bottom:243.026667pt;}
.yc8_c00166{bottom:243.400000pt;}
.yc6_c00166{bottom:243.773333pt;}
.yc9_c00166{bottom:244.360000pt;}
.yc5_c00166{bottom:245.306667pt;}
.yc7_c00166{bottom:245.693333pt;}
.yc1_c00166{bottom:259.773333pt;}
.yc3_c00166{bottom:260.560000pt;}
.yc2_c00166{bottom:261.693333pt;}
.yc0_c00166{bottom:262.066667pt;}
.yc4_c00166{bottom:262.640000pt;}
.ybf_c00166{bottom:263.026667pt;}
.ybd_c00166{bottom:277.493333pt;}
.ybc_c00166{bottom:278.440000pt;}
.ybe_c00166{bottom:279.400000pt;}
.ybb_c00166{bottom:280.360000pt;}
.yb8_c00166{bottom:294.440000pt;}
.yb9_c00166{bottom:295.773333pt;}
.yb4_c00166{bottom:296.160000pt;}
.yb7_c00166{bottom:297.693333pt;}
.yba_c00166{bottom:297.893333pt;}
.yb6_c00166{bottom:299.026667pt;}
.yb5_c00166{bottom:299.040000pt;}
.yb1_c00166{bottom:313.106667pt;}
.yb2_c00166{bottom:313.893333pt;}
.yb0_c00166{bottom:315.026667pt;}
.yb3_c00166{bottom:315.973333pt;}
.yaf_c00166{bottom:328.360000pt;}
.yad_c00166{bottom:330.440000pt;}
.yab_c00166{bottom:331.226667pt;}
.yae_c00166{bottom:331.400000pt;}
.yac_c00166{bottom:332.360000pt;}
.yaa_c00166{bottom:347.773333pt;}
.ya4_c00166{bottom:348.160000pt;}
.ya9_c00166{bottom:349.693333pt;}
.ya5_c00166{bottom:349.893333pt;}
.ya8_c00166{bottom:350.066667pt;}
.ya7_c00166{bottom:350.640000pt;}
.ya6_c00166{bottom:351.026667pt;}
.ya0_c00166{bottom:364.360000pt;}
.ya1_c00166{bottom:364.733333pt;}
.ya2_c00166{bottom:366.066667pt;}
.y9d_c00166{bottom:366.440000pt;}
.ya3_c00166{bottom:367.026667pt;}
.y9e_c00166{bottom:367.973333pt;}
.y9f_c00166{bottom:368.360000pt;}
.y9c_c00166{bottom:369.306667pt;}
.y97_c00166{bottom:383.026667pt;}
.y98_c00166{bottom:383.773333pt;}
.y9b_c00166{bottom:384.360000pt;}
.y99_c00166{bottom:384.560000pt;}
.y96_c00166{bottom:384.733333pt;}
.y9a_c00166{bottom:385.693333pt;}
.y93_c00166{bottom:399.773333pt;}
.y90_c00166{bottom:401.106667pt;}
.y92_c00166{bottom:401.693333pt;}
.y94_c00166{bottom:401.893333pt;}
.y95_c00166{bottom:402.640000pt;}
.y91_c00166{bottom:403.026667pt;}
.y8e_c00166{bottom:416.733333pt;}
.y8c_c00166{bottom:418.440000pt;}
.y8f_c00166{bottom:419.226667pt;}
.y8d_c00166{bottom:419.400000pt;}
.y8b_c00166{bottom:420.360000pt;}
.y89_c00166{bottom:434.440000pt;}
.y85_c00166{bottom:435.773333pt;}
.y8a_c00166{bottom:437.306667pt;}
.y86_c00166{bottom:437.693333pt;}
.y87_c00166{bottom:437.893333pt;}
.y88_c00166{bottom:438.640000pt;}
.y83_c00166{bottom:453.106667pt;}
.y84_c00166{bottom:453.893333pt;}
.y81_c00166{bottom:455.026667pt;}
.y82_c00166{bottom:456.373333pt;}
.y7f_c00166{bottom:470.440000pt;}
.y7e_c00166{bottom:471.400000pt;}
.y80_c00166{bottom:473.306667pt;}
.y7c_c00166{bottom:473.693333pt;}
.y7d_c00166{bottom:473.706667pt;}
.y7b_c00166{bottom:489.106667pt;}
.y79_c00166{bottom:490.266667pt;}
.y78_c00166{bottom:491.026667pt;}
.y7a_c00166{bottom:491.040000pt;}
.y77_c00166{bottom:504.360000pt;}
.y75_c00166{bottom:505.693333pt;}
.y76_c00166{bottom:506.066667pt;}
.y72_c00166{bottom:506.440000pt;}
.y74_c00166{bottom:508.360000pt;}
.y73_c00166{bottom:508.373333pt;}
.y6e_c00166{bottom:523.773333pt;}
.y71_c00166{bottom:524.733333pt;}
.y6f_c00166{bottom:525.706667pt;}
.y70_c00166{bottom:526.640000pt;}
.y6d_c00166{bottom:544.733333pt;}
.y6b_c00166{bottom:545.693333pt;}
.y6c_c00166{bottom:546.840000pt;}
.y66_c00166{bottom:558.266667pt;}
.y69_c00166{bottom:558.640000pt;}
.y65_c00166{bottom:559.026667pt;}
.y6a_c00166{bottom:559.226667pt;}
.y68_c00166{bottom:559.600000pt;}
.y64_c00166{bottom:559.973333pt;}
.y67_c00166{bottom:560.933333pt;}
.y63_c00166{bottom:575.400000pt;}
.y62_c00166{bottom:575.600000pt;}
.y61_c00166{bottom:576.360000pt;}
.y60_c00166{bottom:595.400000pt;}
.y5f_c00166{bottom:597.106667pt;}
.y5e_c00166{bottom:598.066667pt;}
.y5d_c00166{bottom:599.026667pt;}
.y5c_c00166{bottom:628.160000pt;}
.y5a_c00166{bottom:628.360000pt;}
.y59_c00166{bottom:628.733333pt;}
.y56_c00166{bottom:629.106667pt;}
.y57_c00166{bottom:630.640000pt;}
.y5b_c00166{bottom:631.026667pt;}
.y58_c00166{bottom:631.973333pt;}
.y54_c00166{bottom:645.493333pt;}
.y52_c00166{bottom:646.826667pt;}
.y55_c00166{bottom:647.226667pt;}
.y51_c00166{bottom:648.360000pt;}
.y53_c00166{bottom:648.733333pt;}
.y4f_c00166{bottom:663.773333pt;}
.y50_c00166{bottom:664.733333pt;}
.y4e_c00166{bottom:680.360000pt;}
.y4d_c00166{bottom:681.106667pt;}
.y4b_c00166{bottom:683.026667pt;}
.y4c_c00166{bottom:683.226667pt;}
.y49_c00166{bottom:698.440000pt;}
.y47_c00166{bottom:699.773333pt;}
.y4a_c00166{bottom:700.360000pt;}
.y48_c00166{bottom:700.560000pt;}
.y46_c00166{bottom:701.306667pt;}
.y45_c00166{bottom:701.693333pt;}
.y42_c00166{bottom:715.773333pt;}
.y43_c00166{bottom:715.973333pt;}
.y41_c00166{bottom:717.693333pt;}
.y44_c00166{bottom:717.893333pt;}
.y3f_c00166{bottom:733.106667pt;}
.y3e_c00166{bottom:735.026667pt;}
.y3d_c00166{bottom:735.226667pt;}
.y3c_c00166{bottom:735.400000pt;}
.y40_c00166{bottom:735.973333pt;}
.y3b_c00166{bottom:736.360000pt;}
.y3a_c00166{bottom:749.693333pt;}
.y38_c00166{bottom:751.773333pt;}
.y39_c00166{bottom:752.560000pt;}
.y36_c00166{bottom:753.693333pt;}
.y37_c00166{bottom:753.706667pt;}
.y35_c00166{bottom:768.360000pt;}
.y34_c00166{bottom:771.026667pt;}
.y32_c00166{bottom:786.440000pt;}
.y33_c00166{bottom:787.226667pt;}
.y31_c00166{bottom:787.973333pt;}
.y30_c00166{bottom:788.360000pt;}
.y2f_c00166{bottom:805.693333pt;}
.y2b_c00166{bottom:821.106667pt;}
.y2c_c00166{bottom:822.440000pt;}
.y2d_c00166{bottom:823.026667pt;}
.y2e_c00166{bottom:823.226667pt;}
.y2a_c00166{bottom:824.360000pt;}
.y26_c00166{bottom:838.440000pt;}
.y28_c00166{bottom:839.400000pt;}
.y27_c00166{bottom:840.360000pt;}
.y29_c00166{bottom:840.560000pt;}
.y24_c00166{bottom:855.026667pt;}
.y22_c00166{bottom:855.773333pt;}
.y20_c00166{bottom:855.973333pt;}
.y21_c00166{bottom:857.106667pt;}
.y23_c00166{bottom:857.693333pt;}
.y1e_c00166{bottom:857.893333pt;}
.y25_c00166{bottom:858.066667pt;}
.y1f_c00166{bottom:859.026667pt;}
.y1c_c00166{bottom:873.306667pt;}
.y1a_c00166{bottom:874.440000pt;}
.y1b_c00166{bottom:875.400000pt;}
.y1d_c00166{bottom:875.973333pt;}
.y19_c00166{bottom:876.360000pt;}
.y17_c00166{bottom:890.440000pt;}
.y15_c00166{bottom:891.773333pt;}
.y16_c00166{bottom:892.560000pt;}
.y18_c00166{bottom:892.733333pt;}
.y14_c00166{bottom:893.693333pt;}
.yf_c00166{bottom:907.026667pt;}
.y12_c00166{bottom:908.733333pt;}
.y10_c00166{bottom:909.106667pt;}
.y13_c00166{bottom:909.893333pt;}
.yd_c00166{bottom:910.066667pt;}
.y11_c00166{bottom:910.640000pt;}
.ye_c00166{bottom:911.026667pt;}
.yc_c00166{bottom:924.360000pt;}
.y8_c00166{bottom:926.440000pt;}
.yb_c00166{bottom:927.226667pt;}
.ya_c00166{bottom:927.973333pt;}
.y9_c00166{bottom:928.360000pt;}
.y5_c00166{bottom:943.773333pt;}
.y7_c00166{bottom:944.560000pt;}
.y3_c00166{bottom:944.733333pt;}
.y4_c00166{bottom:945.693333pt;}
.y6_c00166{bottom:945.893333pt;}
.y2_c00166{bottom:977.693333pt;}
.y1_c00166{bottom:979.600000pt;}
.h7_c00166{height:3.739141pt;}
.h9_c00166{height:14.890964pt;}
.h5_c00166{height:20.466875pt;}
.h1_c00166{height:22.303646pt;}
.h6_c00166{height:27.879557pt;}
.h2_c00166{height:31.618698pt;}
.h3_c00166{height:35.357839pt;}
.h4_c00166{height:39.031380pt;}
.h8_c00166{height:42.770521pt;}
.h0_c00166{height:1186.666667pt;}
.w0_c00166{width:782.666667pt;}
.x0_c00166{left:0.000000pt;}
.x11_c00166{left:135.040000pt;}
.x3_c00166{left:136.000000pt;}
.xf7_c00166{left:137.333333pt;}
.x41_c00166{left:148.000000pt;}
.xb3_c00166{left:149.706667pt;}
.xf2_c00166{left:150.666667pt;}
.xb1_c00166{left:153.333333pt;}
.xed_c00166{left:155.040000pt;}
.x93_c00166{left:156.000000pt;}
.xd1_c00166{left:157.706667pt;}
.x63_c00166{left:158.666667pt;}
.x7e_c00166{left:163.040000pt;}
.x75_c00166{left:164.960000pt;}
.x105_c00166{left:167.040000pt;}
.x101_c00166{left:170.293333pt;}
.x28_c00166{left:172.373333pt;}
.x6b_c00166{left:175.040000pt;}
.x36_c00166{left:176.000000pt;}
.x4_c00166{left:177.706667pt;}
.x84_c00166{left:179.040000pt;}
.x96_c00166{left:180.000000pt;}
.x57_c00166{left:181.706667pt;}
.xb4_c00166{left:185.706667pt;}
.xb2_c00166{left:188.000000pt;}
.xdd_c00166{left:189.706667pt;}
.x9c_c00166{left:190.666667pt;}
.x1e_c00166{left:192.373333pt;}
.x4c_c00166{left:195.040000pt;}
.x12_c00166{left:196.000000pt;}
.xa9_c00166{left:197.333333pt;}
.x8b_c00166{left:201.706667pt;}
.x5_c00166{left:202.666667pt;}
.x102_c00166{left:204.000000pt;}
.x7f_c00166{left:206.293333pt;}
.x9d_c00166{left:208.000000pt;}
.x94_c00166{left:208.960000pt;}
.x6c_c00166{left:210.666667pt;}
.x13_c00166{left:212.373333pt;}
.x29_c00166{left:215.040000pt;}
.x1f_c00166{left:217.706667pt;}
.xbc_c00166{left:221.333333pt;}
.xee_c00166{left:224.000000pt;}
.x37_c00166{left:224.960000pt;}
.xde_c00166{left:226.666667pt;}
.x6d_c00166{left:228.960000pt;}
.x9e_c00166{left:232.000000pt;}
.x76_c00166{left:232.960000pt;}
.x64_c00166{left:234.293333pt;}
.xb5_c00166{left:237.333333pt;}
.x38_c00166{left:240.000000pt;}
.xe9_c00166{left:241.333333pt;}
.x6_c00166{left:243.040000pt;}
.x58_c00166{left:245.706667pt;}
.x2a_c00166{left:247.040000pt;}
.x80_c00166{left:248.373333pt;}
.x20_c00166{left:249.333333pt;}
.x95_c00166{left:250.666667pt;}
.x42_c00166{left:252.000000pt;}
.x85_c00166{left:252.960000pt;}
.xb6_c00166{left:255.626667pt;}
.x4d_c00166{left:257.706667pt;}
.x14_c00166{left:261.333333pt;}
.x65_c00166{left:264.000000pt;}
.xc7_c00166{left:265.706667pt;}
.xbd_c00166{left:268.000000pt;}
.x2b_c00166{left:270.666667pt;}
.x86_c00166{left:272.373333pt;}
.x77_c00166{left:273.333333pt;}
.x39_c00166{left:276.000000pt;}
.xf0_c00166{left:276.960000pt;}
.x97_c00166{left:278.666667pt;}
.xa2_c00166{left:279.626667pt;}
.x8c_c00166{left:281.706667pt;}
.xd2_c00166{left:283.040000pt;}
.x43_c00166{left:284.373333pt;}
.xbe_c00166{left:286.293333pt;}
.x15_c00166{left:291.040000pt;}
.xef_c00166{left:296.373333pt;}
.x87_c00166{left:297.333333pt;}
.x4e_c00166{left:299.040000pt;}
.xc8_c00166{left:300.373333pt;}
.x7_c00166{left:301.706667pt;}
.xaa_c00166{left:303.426667pt;}
.x6e_c00166{left:304.373333pt;}
.x2c_c00166{left:305.333333pt;}
.xb7_c00166{left:306.293333pt;}
.xbf_c00166{left:309.333333pt;}
.x78_c00166{left:310.666667pt;}
.xf3_c00166{left:312.373333pt;}
.x16_c00166{left:313.333333pt;}
.xc1_c00166{left:316.373333pt;}
.x81_c00166{left:317.706667pt;}
.xf8_c00166{left:318.666667pt;}
.xb9_c00166{left:320.000000pt;}
.x2d_c00166{left:321.333333pt;}
.xd3_c00166{left:322.293333pt;}
.xea_c00166{left:326.666667pt;}
.x8_c00166{left:328.000000pt;}
.xc4_c00166{left:329.333333pt;}
.x44_c00166{left:331.040000pt;}
.x4f_c00166{left:332.373333pt;}
.xab_c00166{left:334.666667pt;}
.xe4_c00166{left:336.000000pt;}
.x98_c00166{left:337.333333pt;}
.x59_c00166{left:339.040000pt;}
.xc9_c00166{left:341.333333pt;}
.x6f_c00166{left:344.000000pt;}
.x82_c00166{left:345.333333pt;}
.x2e_c00166{left:347.040000pt;}
.x21_c00166{left:350.666667pt;}
.xf9_c00166{left:352.373333pt;}
.x1_c00166{left:353.333333pt;}
.xa6_c00166{left:355.040000pt;}
.x50_c00166{left:356.000000pt;}
.xca_c00166{left:358.293333pt;}
.xff_c00166{left:362.666667pt;}
.x17_c00166{left:364.000000pt;}
.x9_c00166{left:365.333333pt;}
.x22_c00166{left:366.666667pt;}
.xdf_c00166{left:369.706667pt;}
.xa7_c00166{left:372.000000pt;}
.x3a_c00166{left:375.040000pt;}
.x9f_c00166{left:376.000000pt;}
.xf4_c00166{left:376.960000pt;}
.xc2_c00166{left:378.666667pt;}
.x18_c00166{left:380.373333pt;}
.x8d_c00166{left:381.333333pt;}
.xc5_c00166{left:382.293333pt;}
.x88_c00166{left:385.706667pt;}
.x5a_c00166{left:387.040000pt;}
.x45_c00166{left:388.000000pt;}
.xd4_c00166{left:388.960000pt;}
.xa3_c00166{left:390.293333pt;}
.x66_c00166{left:391.626667pt;}
.x79_c00166{left:393.706667pt;}
.xac_c00166{left:394.666667pt;}
.x8e_c00166{left:396.000000pt;}
.xe0_c00166{left:401.333333pt;}
.x89_c00166{left:404.000000pt;}
.x2f_c00166{left:405.706667pt;}
.xd5_c00166{left:408.373333pt;}
.x67_c00166{left:409.706667pt;}
.x5b_c00166{left:411.040000pt;}
.x3b_c00166{left:413.706667pt;}
.xcb_c00166{left:415.040000pt;}
.xa_c00166{left:416.000000pt;}
.xe5_c00166{left:418.666667pt;}
.x19_c00166{left:419.626667pt;}
.xba_c00166{left:423.626667pt;}
.xb8_c00166{left:425.333333pt;}
.x103_c00166{left:427.626667pt;}
.xf1_c00166{left:429.333333pt;}
.x7a_c00166{left:431.040000pt;}
.xa4_c00166{left:432.373333pt;}
.x23_c00166{left:433.333333pt;}
.xb_c00166{left:434.666667pt;}
.x3c_c00166{left:436.000000pt;}
.xa0_c00166{left:437.333333pt;}
.x46_c00166{left:438.666667pt;}
.xe6_c00166{left:440.000000pt;}
.x5c_c00166{left:441.333333pt;}
.x104_c00166{left:442.666667pt;}
.x51_c00166{left:445.333333pt;}
.xd6_c00166{left:446.293333pt;}
.xa8_c00166{left:447.626667pt;}
.xe1_c00166{left:450.666667pt;}
.x30_c00166{left:452.960000pt;}
.xa1_c00166{left:454.293333pt;}
.xf5_c00166{left:457.333333pt;}
.xcc_c00166{left:458.666667pt;}
.x83_c00166{left:460.000000pt;}
.x1a_c00166{left:461.706667pt;}
.x8f_c00166{left:463.626667pt;}
.xc_c00166{left:465.333333pt;}
.x99_c00166{left:466.293333pt;}
.x31_c00166{left:468.000000pt;}
.xd7_c00166{left:470.666667pt;}
.x3d_c00166{left:471.626667pt;}
.x52_c00166{left:474.666667pt;}
.x47_c00166{left:476.000000pt;}
.xa5_c00166{left:478.093333pt;}
.x5d_c00166{left:479.626667pt;}
.x90_c00166{left:481.706667pt;}
.xd_c00166{left:484.373333pt;}
.xc6_c00166{left:486.666667pt;}
.xd8_c00166{left:488.373333pt;}
.x53_c00166{left:492.373333pt;}
.x48_c00166{left:493.706667pt;}
.x70_c00166{left:494.666667pt;}
.xfa_c00166{left:498.666667pt;}
.xe2_c00166{left:500.000000pt;}
.xc3_c00166{left:501.333333pt;}
.xe7_c00166{left:502.666667pt;}
.xc0_c00166{left:503.626667pt;}
.x68_c00166{left:505.333333pt;}
.xad_c00166{left:506.666667pt;}
.x32_c00166{left:508.373333pt;}
.xe_c00166{left:509.333333pt;}
.x71_c00166{left:512.000000pt;}
.xcd_c00166{left:514.293333pt;}
.x24_c00166{left:517.333333pt;}
.x5e_c00166{left:520.373333pt;}
.x54_c00166{left:524.000000pt;}
.x3e_c00166{left:525.706667pt;}
.xeb_c00166{left:528.000000pt;}
.x1b_c00166{left:532.000000pt;}
.x7b_c00166{left:534.666667pt;}
.x49_c00166{left:536.000000pt;}
.xce_c00166{left:540.373333pt;}
.x55_c00166{left:541.706667pt;}
.x25_c00166{left:542.666667pt;}
.x9a_c00166{left:544.373333pt;}
.x72_c00166{left:545.333333pt;}
.x5f_c00166{left:548.373333pt;}
.x3f_c00166{left:549.333333pt;}
.xdb_c00166{left:550.666667pt;}
.xfb_c00166{left:553.333333pt;}
.x91_c00166{left:555.040000pt;}
.x33_c00166{left:557.333333pt;}
.x73_c00166{left:558.293333pt;}
.x7c_c00166{left:562.666667pt;}
.xf_c00166{left:564.000000pt;}
.x56_c00166{left:565.333333pt;}
.xd9_c00166{left:566.666667pt;}
.x1c_c00166{left:568.000000pt;}
.xdc_c00166{left:569.333333pt;}
.x34_c00166{left:571.040000pt;}
.x69_c00166{left:572.000000pt;}
.xe3_c00166{left:577.333333pt;}
.x100_c00166{left:581.333333pt;}
.x9b_c00166{left:583.040000pt;}
.xfc_c00166{left:584.000000pt;}
.x4a_c00166{left:585.706667pt;}
.x60_c00166{left:586.666667pt;}
.x7d_c00166{left:587.626667pt;}
.x1d_c00166{left:591.040000pt;}
.x74_c00166{left:592.000000pt;}
.x26_c00166{left:592.960000pt;}
.x35_c00166{left:594.666667pt;}
.xcf_c00166{left:596.373333pt;}
.x6a_c00166{left:597.706667pt;}
.xae_c00166{left:599.040000pt;}
.x40_c00166{left:600.373333pt;}
.x10_c00166{left:602.666667pt;}
.x61_c00166{left:604.373333pt;}
.xda_c00166{left:605.333333pt;}
.x8a_c00166{left:609.333333pt;}
.xfd_c00166{left:610.666667pt;}
.x4b_c00166{left:614.666667pt;}
.x92_c00166{left:616.373333pt;}
.xec_c00166{left:620.373333pt;}
.xaf_c00166{left:622.293333pt;}
.xbb_c00166{left:624.960000pt;}
.x2_c00166{left:627.040000pt;}
.x27_c00166{left:629.333333pt;}
.xe8_c00166{left:632.373333pt;}
.x62_c00166{left:636.000000pt;}
.xd0_c00166{left:638.293333pt;}
.xfe_c00166{left:640.000000pt;}
.xb0_c00166{left:641.706667pt;}
.xf6_c00166{left:642.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_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_71879aa921d953641b49764e.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:1.688965;font-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_c00167{transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);}
.m50_c00167{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m7e_c00167{transform:matrix(0.363497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363497,0.000000,0.000000,0.250000,0,0);}
.m0_c00167{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m2e_c00167{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m3b_c00167{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m2c_c00167{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m7f_c00167{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m89_c00167{transform:matrix(0.390041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390041,0.000000,0.000000,0.250000,0,0);}
.ma_c00167{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m5e_c00167{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m1d_c00167{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m27_c00167{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m1b_c00167{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m5a_c00167{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m12_c00167{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m3c_c00167{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m29_c00167{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m62_c00167{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m71_c00167{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m80_c00167{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.m3e_c00167{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m11_c00167{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m25_c00167{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mf_c00167{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m14_c00167{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mc_c00167{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m5d_c00167{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m15_c00167{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m2f_c00167{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m4a_c00167{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m47_c00167{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m35_c00167{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m3d_c00167{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m6a_c00167{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m37_c00167{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m7b_c00167{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m4e_c00167{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m32_c00167{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m73_c00167{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m3a_c00167{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m52_c00167{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m61_c00167{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m7d_c00167{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m63_c00167{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.me_c00167{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m72_c00167{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m49_c00167{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m4c_c00167{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m42_c00167{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m48_c00167{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.md_c00167{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.m30_c00167{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m86_c00167{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m20_c00167{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m36_c00167{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m66_c00167{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m21_c00167{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m40_c00167{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m16_c00167{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m56_c00167{transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);}
.m79_c00167{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m18_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);}
.m46_c00167{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m51_c00167{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m1e_c00167{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.m2d_c00167{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m68_c00167{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m6b_c00167{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m4f_c00167{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m4_c00167{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m74_c00167{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m65_c00167{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m26_c00167{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m5_c00167{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m8_c00167{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m67_c00167{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m5c_c00167{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m9_c00167{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m2_c00167{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m34_c00167{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m70_c00167{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m4b_c00167{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m69_c00167{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m75_c00167{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m83_c00167{transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);}
.m64_c00167{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m3_c00167{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m7c_c00167{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m31_c00167{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m44_c00167{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m13_c00167{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m54_c00167{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m5b_c00167{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m4d_c00167{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m1c_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);}
.m24_c00167{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m85_c00167{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m82_c00167{transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);}
.m7_c00167{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m1f_c00167{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m81_c00167{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m2b_c00167{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m6e_c00167{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m19_c00167{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m17_c00167{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m33_c00167{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m38_c00167{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m6_c00167{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m10_c00167{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m53_c00167{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m6c_c00167{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.m59_c00167{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m77_c00167{transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);}
.m28_c00167{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m84_c00167{transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);}
.m76_c00167{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m3f_c00167{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m1a_c00167{transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);}
.m7a_c00167{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m88_c00167{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m1_c00167{transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);}
.m6d_c00167{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m2a_c00167{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m87_c00167{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m55_c00167{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m39_c00167{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m45_c00167{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m6f_c00167{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mb_c00167{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m5f_c00167{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m41_c00167{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.m60_c00167{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m78_c00167{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m58_c00167{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m22_c00167{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m43_c00167{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.m23_c00167{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00167{vertical-align:0.000000px;}
.ls0_c00167{letter-spacing:0.000000px;}
.sc__c00167{text-shadow:none;}
.sc0_c00167{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00167{-webkit-text-stroke:0px transparent;}
.sc0_c00167{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00167{word-spacing:0.000000px;}
.fc0_c00167{color:transparent;}
.fs5_c00167{font-size:3.420000px;}
.fs6_c00167{font-size:11.880000px;}
.fs1_c00167{font-size:18.720000px;}
.fs8_c00167{font-size:20.400000px;}
.fs3_c00167{font-size:25.500000px;}
.fs2_c00167{font-size:28.920000px;}
.fs0_c00167{font-size:32.340000px;}
.fs4_c00167{font-size:35.700000px;}
.fs7_c00167{font-size:39.120000px;}
.y0_c00167{bottom:0.000000px;}
.y62_c00167{bottom:251.745000px;}
.y64_c00167{bottom:252.180000px;}
.y63_c00167{bottom:253.905000px;}
.y60_c00167{bottom:272.325000px;}
.y5d_c00167{bottom:273.405000px;}
.y61_c00167{bottom:273.630000px;}
.y5f_c00167{bottom:274.470000px;}
.y5e_c00167{bottom:274.905000px;}
.y57_c00167{bottom:290.745000px;}
.y58_c00167{bottom:292.245000px;}
.y56_c00167{bottom:292.905000px;}
.y5b_c00167{bottom:293.130000px;}
.y5c_c00167{bottom:293.325000px;}
.y5a_c00167{bottom:293.970000px;}
.y59_c00167{bottom:294.405000px;}
.y55_c00167{bottom:311.325000px;}
.y53_c00167{bottom:311.745000px;}
.y54_c00167{bottom:312.825000px;}
.y52_c00167{bottom:313.905000px;}
.y4f_c00167{bottom:331.245000px;}
.y51_c00167{bottom:332.130000px;}
.y4e_c00167{bottom:333.405000px;}
.y50_c00167{bottom:333.630000px;}
.y47_c00167{bottom:350.745000px;}
.y4d_c00167{bottom:351.180000px;}
.y4a_c00167{bottom:351.825000px;}
.y49_c00167{bottom:352.245000px;}
.y48_c00167{bottom:352.905000px;}
.y4c_c00167{bottom:353.130000px;}
.y4b_c00167{bottom:354.405000px;}
.y46_c00167{bottom:370.245000px;}
.y43_c00167{bottom:372.405000px;}
.y45_c00167{bottom:372.630000px;}
.y44_c00167{bottom:373.905000px;}
.y41_c00167{bottom:400.245000px;}
.y42_c00167{bottom:402.405000px;}
.y3f_c00167{bottom:441.405000px;}
.y40_c00167{bottom:441.630000px;}
.y38_c00167{bottom:456.630000px;}
.y39_c00167{bottom:457.275000px;}
.y3a_c00167{bottom:457.905000px;}
.y3c_c00167{bottom:459.405000px;}
.y3e_c00167{bottom:459.825000px;}
.y34_c00167{bottom:460.245000px;}
.y3d_c00167{bottom:460.905000px;}
.y37_c00167{bottom:461.130000px;}
.y36_c00167{bottom:461.325000px;}
.y3b_c00167{bottom:461.970000px;}
.y35_c00167{bottom:462.405000px;}
.y33_c00167{bottom:476.775000px;}
.y31_c00167{bottom:478.470000px;}
.y30_c00167{bottom:479.745000px;}
.y2e_c00167{bottom:480.630000px;}
.y2f_c00167{bottom:480.825000px;}
.y2d_c00167{bottom:481.905000px;}
.y32_c00167{bottom:483.630000px;}
.y28_c00167{bottom:498.405000px;}
.y29_c00167{bottom:499.245000px;}
.y2b_c00167{bottom:500.325000px;}
.y2c_c00167{bottom:501.405000px;}
.y2a_c00167{bottom:502.470000px;}
.y25_c00167{bottom:517.905000px;}
.y24_c00167{bottom:518.745000px;}
.y26_c00167{bottom:519.825000px;}
.y27_c00167{bottom:520.905000px;}
.y1f_c00167{bottom:537.405000px;}
.y1e_c00167{bottom:538.245000px;}
.y20_c00167{bottom:538.470000px;}
.y23_c00167{bottom:539.325000px;}
.y21_c00167{bottom:539.970000px;}
.y22_c00167{bottom:540.405000px;}
.y16_c00167{bottom:556.905000px;}
.y1d_c00167{bottom:557.325000px;}
.y18_c00167{bottom:557.745000px;}
.y17_c00167{bottom:557.970000px;}
.y19_c00167{bottom:558.825000px;}
.y1a_c00167{bottom:559.905000px;}
.y1c_c00167{bottom:559.920000px;}
.y1b_c00167{bottom:560.130000px;}
.y13_c00167{bottom:576.405000px;}
.y12_c00167{bottom:577.245000px;}
.y15_c00167{bottom:577.905000px;}
.y14_c00167{bottom:579.405000px;}
.y10_c00167{bottom:596.745000px;}
.ye_c00167{bottom:596.970000px;}
.y11_c00167{bottom:597.825000px;}
.yf_c00167{bottom:598.905000px;}
.y9_c00167{bottom:615.825000px;}
.yd_c00167{bottom:616.245000px;}
.y8_c00167{bottom:617.325000px;}
.ya_c00167{bottom:617.745000px;}
.yc_c00167{bottom:618.405000px;}
.yb_c00167{bottom:619.905000px;}
.y5_c00167{bottom:637.245000px;}
.y7_c00167{bottom:637.905000px;}
.y6_c00167{bottom:638.130000px;}
.y4_c00167{bottom:638.970000px;}
.y3_c00167{bottom:639.405000px;}
.y6c_c00167{bottom:663.405000px;}
.y65_c00167{bottom:663.825000px;}
.y66_c00167{bottom:664.050000px;}
.y69_c00167{bottom:664.905000px;}
.y6b_c00167{bottom:665.130000px;}
.y68_c00167{bottom:665.550000px;}
.y67_c00167{bottom:665.970000px;}
.y6a_c00167{bottom:667.050000px;}
.y2_c00167{bottom:1098.630000px;}
.y1_c00167{bottom:1098.825000px;}
.h6_c00167{height:4.206533px;}
.h7_c00167{height:14.612168px;}
.h2_c00167{height:23.025234px;}
.h9_c00167{height:25.091602px;}
.h4_c00167{height:31.364502px;}
.h3_c00167{height:35.571035px;}
.h1_c00167{height:39.777568px;}
.h5_c00167{height:43.910303px;}
.h8_c00167{height:48.116836px;}
.h0_c00167{height:1335.000000px;}
.w0_c00167{width:880.500000px;}
.x0_c00167{left:0.000000px;}
.x54_c00167{left:151.500000px;}
.xf_c00167{left:152.580000px;}
.x1_c00167{left:156.855000px;}
.x69_c00167{left:168.000000px;}
.x3_c00167{left:169.500000px;}
.x88_c00167{left:174.000000px;}
.x97_c00167{left:175.920000px;}
.x66_c00167{left:177.000000px;}
.x1b_c00167{left:181.920000px;}
.x5f_c00167{left:187.500000px;}
.x4c_c00167{left:193.920000px;}
.x55_c00167{left:198.000000px;}
.x4_c00167{left:200.580000px;}
.x6a_c00167{left:203.580000px;}
.x39_c00167{left:208.080000px;}
.x43_c00167{left:209.775000px;}
.x79_c00167{left:213.420000px;}
.x2e_c00167{left:216.420000px;}
.x26_c00167{left:219.420000px;}
.x10_c00167{left:222.000000px;}
.x1c_c00167{left:223.500000px;}
.x81_c00167{left:231.000000px;}
.x60_c00167{left:234.000000px;}
.x8e_c00167{left:235.920000px;}
.x89_c00167{left:241.500000px;}
.x4d_c00167{left:242.580000px;}
.x56_c00167{left:246.420000px;}
.x27_c00167{left:247.920000px;}
.x44_c00167{left:250.500000px;}
.x3a_c00167{left:252.000000px;}
.x98_c00167{left:255.420000px;}
.x5_c00167{left:260.580000px;}
.x11_c00167{left:264.420000px;}
.x7a_c00167{left:273.000000px;}
.x8f_c00167{left:274.500000px;}
.x6b_c00167{left:277.080000px;}
.x9c_c00167{left:284.580000px;}
.x6_c00167{left:291.000000px;}
.x28_c00167{left:296.580000px;}
.x57_c00167{left:301.500000px;}
.x90_c00167{left:303.420000px;}
.x45_c00167{left:304.920000px;}
.x72_c00167{left:307.080000px;}
.x12_c00167{left:313.080000px;}
.x29_c00167{left:315.420000px;}
.x1d_c00167{left:318.420000px;}
.x99_c00167{left:325.080000px;}
.x7b_c00167{left:326.580000px;}
.x7_c00167{left:328.500000px;}
.x2f_c00167{left:331.275000px;}
.x13_c00167{left:333.420000px;}
.x4e_c00167{left:335.580000px;}
.x67_c00167{left:337.500000px;}
.x9d_c00167{left:339.000000px;}
.x61_c00167{left:340.500000px;}
.x91_c00167{left:345.000000px;}
.x62_c00167{left:346.080000px;}
.x3b_c00167{left:348.420000px;}
.x7c_c00167{left:349.500000px;}
.x2a_c00167{left:351.000000px;}
.x46_c00167{left:359.580000px;}
.x4f_c00167{left:367.500000px;}
.x1e_c00167{left:368.580000px;}
.x82_c00167{left:370.500000px;}
.x14_c00167{left:373.500000px;}
.x58_c00167{left:379.500000px;}
.x92_c00167{left:380.580000px;}
.x9a_c00167{left:382.080000px;}
.x1f_c00167{left:388.920000px;}
.x9e_c00167{left:393.000000px;}
.x47_c00167{left:394.500000px;}
.x30_c00167{left:396.000000px;}
.x93_c00167{left:399.420000px;}
.x2_c00167{left:402.000000px;}
.x6c_c00167{left:403.500000px;}
.x3c_c00167{left:404.580000px;}
.x83_c00167{left:412.920000px;}
.x9b_c00167{left:415.500000px;}
.x68_c00167{left:416.580000px;}
.x59_c00167{left:426.000000px;}
.x94_c00167{left:427.500000px;}
.x50_c00167{left:429.000000px;}
.x8_c00167{left:430.080000px;}
.x6d_c00167{left:433.500000px;}
.x20_c00167{left:439.500000px;}
.x31_c00167{left:441.420000px;}
.x8a_c00167{left:442.500000px;}
.x63_c00167{left:446.580000px;}
.x9_c00167{left:448.920000px;}
.x9f_c00167{left:451.500000px;}
.x15_c00167{left:462.000000px;}
.x73_c00167{left:463.500000px;}
.xa0_c00167{left:466.500000px;}
.x64_c00167{left:469.920000px;}
.x32_c00167{left:471.000000px;}
.x48_c00167{left:472.500000px;}
.xa_c00167{left:475.080000px;}
.x8b_c00167{left:477.000000px;}
.x2b_c00167{left:478.920000px;}
.x5a_c00167{left:480.000000px;}
.x16_c00167{left:490.920000px;}
.x51_c00167{left:493.920000px;}
.x33_c00167{left:508.500000px;}
.x3d_c00167{left:510.000000px;}
.x2c_c00167{left:513.000000px;}
.x74_c00167{left:514.500000px;}
.x7d_c00167{left:517.500000px;}
.x17_c00167{left:525.000000px;}
.x21_c00167{left:526.500000px;}
.x3e_c00167{left:532.920000px;}
.x6e_c00167{left:534.000000px;}
.x49_c00167{left:540.420000px;}
.x5b_c00167{left:541.500000px;}
.xb_c00167{left:544.500000px;}
.x65_c00167{left:547.920000px;}
.x34_c00167{left:549.420000px;}
.x75_c00167{left:553.920000px;}
.x22_c00167{left:555.420000px;}
.x6f_c00167{left:561.420000px;}
.xa1_c00167{left:565.500000px;}
.x35_c00167{left:573.000000px;}
.x3f_c00167{left:574.080000px;}
.x2d_c00167{left:580.920000px;}
.x23_c00167{left:589.500000px;}
.x18_c00167{left:591.855000px;}
.x40_c00167{left:597.000000px;}
.x7e_c00167{left:600.420000px;}
.x84_c00167{left:603.420000px;}
.x36_c00167{left:607.500000px;}
.x95_c00167{left:608.580000px;}
.xc_c00167{left:612.000000px;}
.x52_c00167{left:613.500000px;}
.x5c_c00167{left:618.000000px;}
.x19_c00167{left:619.500000px;}
.x37_c00167{left:628.080000px;}
.x85_c00167{left:630.000000px;}
.xd_c00167{left:639.420000px;}
.x4a_c00167{left:641.580000px;}
.x76_c00167{left:649.500000px;}
.x41_c00167{left:654.000000px;}
.x96_c00167{left:655.080000px;}
.x24_c00167{left:658.920000px;}
.x4b_c00167{left:663.000000px;}
.xe_c00167{left:664.920000px;}
.x1a_c00167{left:672.000000px;}
.x8c_c00167{left:674.580000px;}
.x38_c00167{left:676.920000px;}
.x7f_c00167{left:678.000000px;}
.x86_c00167{left:684.000000px;}
.x25_c00167{left:685.500000px;}
.x70_c00167{left:686.580000px;}
.x77_c00167{left:689.580000px;}
.x42_c00167{left:695.580000px;}
.x8d_c00167{left:697.500000px;}
.x53_c00167{left:705.000000px;}
.x71_c00167{left:709.920000px;}
.x78_c00167{left:715.500000px;}
.x80_c00167{left:717.000000px;}
.x87_c00167{left:718.080000px;}
.x5d_c00167{left:721.500000px;}
.x5e_c00167{left:727.080000px;}
@media print{
.v0_c00167{vertical-align:0.000000pt;}
.ls0_c00167{letter-spacing:0.000000pt;}
.ws0_c00167{word-spacing:0.000000pt;}
.fs5_c00167{font-size:3.040000pt;}
.fs6_c00167{font-size:10.560000pt;}
.fs1_c00167{font-size:16.640000pt;}
.fs8_c00167{font-size:18.133333pt;}
.fs3_c00167{font-size:22.666667pt;}
.fs2_c00167{font-size:25.706667pt;}
.fs0_c00167{font-size:28.746667pt;}
.fs4_c00167{font-size:31.733333pt;}
.fs7_c00167{font-size:34.773333pt;}
.y0_c00167{bottom:0.000000pt;}
.y62_c00167{bottom:223.773333pt;}
.y64_c00167{bottom:224.160000pt;}
.y63_c00167{bottom:225.693333pt;}
.y60_c00167{bottom:242.066667pt;}
.y5d_c00167{bottom:243.026667pt;}
.y61_c00167{bottom:243.226667pt;}
.y5f_c00167{bottom:243.973333pt;}
.y5e_c00167{bottom:244.360000pt;}
.y57_c00167{bottom:258.440000pt;}
.y58_c00167{bottom:259.773333pt;}
.y56_c00167{bottom:260.360000pt;}
.y5b_c00167{bottom:260.560000pt;}
.y5c_c00167{bottom:260.733333pt;}
.y5a_c00167{bottom:261.306667pt;}
.y59_c00167{bottom:261.693333pt;}
.y55_c00167{bottom:276.733333pt;}
.y53_c00167{bottom:277.106667pt;}
.y54_c00167{bottom:278.066667pt;}
.y52_c00167{bottom:279.026667pt;}
.y4f_c00167{bottom:294.440000pt;}
.y51_c00167{bottom:295.226667pt;}
.y4e_c00167{bottom:296.360000pt;}
.y50_c00167{bottom:296.560000pt;}
.y47_c00167{bottom:311.773333pt;}
.y4d_c00167{bottom:312.160000pt;}
.y4a_c00167{bottom:312.733333pt;}
.y49_c00167{bottom:313.106667pt;}
.y48_c00167{bottom:313.693333pt;}
.y4c_c00167{bottom:313.893333pt;}
.y4b_c00167{bottom:315.026667pt;}
.y46_c00167{bottom:329.106667pt;}
.y43_c00167{bottom:331.026667pt;}
.y45_c00167{bottom:331.226667pt;}
.y44_c00167{bottom:332.360000pt;}
.y41_c00167{bottom:355.773333pt;}
.y42_c00167{bottom:357.693333pt;}
.y3f_c00167{bottom:392.360000pt;}
.y40_c00167{bottom:392.560000pt;}
.y38_c00167{bottom:405.893333pt;}
.y39_c00167{bottom:406.466667pt;}
.y3a_c00167{bottom:407.026667pt;}
.y3c_c00167{bottom:408.360000pt;}
.y3e_c00167{bottom:408.733333pt;}
.y34_c00167{bottom:409.106667pt;}
.y3d_c00167{bottom:409.693333pt;}
.y37_c00167{bottom:409.893333pt;}
.y36_c00167{bottom:410.066667pt;}
.y3b_c00167{bottom:410.640000pt;}
.y35_c00167{bottom:411.026667pt;}
.y33_c00167{bottom:423.800000pt;}
.y31_c00167{bottom:425.306667pt;}
.y30_c00167{bottom:426.440000pt;}
.y2e_c00167{bottom:427.226667pt;}
.y2f_c00167{bottom:427.400000pt;}
.y2d_c00167{bottom:428.360000pt;}
.y32_c00167{bottom:429.893333pt;}
.y28_c00167{bottom:443.026667pt;}
.y29_c00167{bottom:443.773333pt;}
.y2b_c00167{bottom:444.733333pt;}
.y2c_c00167{bottom:445.693333pt;}
.y2a_c00167{bottom:446.640000pt;}
.y25_c00167{bottom:460.360000pt;}
.y24_c00167{bottom:461.106667pt;}
.y26_c00167{bottom:462.066667pt;}
.y27_c00167{bottom:463.026667pt;}
.y1f_c00167{bottom:477.693333pt;}
.y1e_c00167{bottom:478.440000pt;}
.y20_c00167{bottom:478.640000pt;}
.y23_c00167{bottom:479.400000pt;}
.y21_c00167{bottom:479.973333pt;}
.y22_c00167{bottom:480.360000pt;}
.y16_c00167{bottom:495.026667pt;}
.y1d_c00167{bottom:495.400000pt;}
.y18_c00167{bottom:495.773333pt;}
.y17_c00167{bottom:495.973333pt;}
.y19_c00167{bottom:496.733333pt;}
.y1a_c00167{bottom:497.693333pt;}
.y1c_c00167{bottom:497.706667pt;}
.y1b_c00167{bottom:497.893333pt;}
.y13_c00167{bottom:512.360000pt;}
.y12_c00167{bottom:513.106667pt;}
.y15_c00167{bottom:513.693333pt;}
.y14_c00167{bottom:515.026667pt;}
.y10_c00167{bottom:530.440000pt;}
.ye_c00167{bottom:530.640000pt;}
.y11_c00167{bottom:531.400000pt;}
.yf_c00167{bottom:532.360000pt;}
.y9_c00167{bottom:547.400000pt;}
.yd_c00167{bottom:547.773333pt;}
.y8_c00167{bottom:548.733333pt;}
.ya_c00167{bottom:549.106667pt;}
.yc_c00167{bottom:549.693333pt;}
.yb_c00167{bottom:551.026667pt;}
.y5_c00167{bottom:566.440000pt;}
.y7_c00167{bottom:567.026667pt;}
.y6_c00167{bottom:567.226667pt;}
.y4_c00167{bottom:567.973333pt;}
.y3_c00167{bottom:568.360000pt;}
.y6c_c00167{bottom:589.693333pt;}
.y65_c00167{bottom:590.066667pt;}
.y66_c00167{bottom:590.266667pt;}
.y69_c00167{bottom:591.026667pt;}
.y6b_c00167{bottom:591.226667pt;}
.y68_c00167{bottom:591.600000pt;}
.y67_c00167{bottom:591.973333pt;}
.y6a_c00167{bottom:592.933333pt;}
.y2_c00167{bottom:976.560000pt;}
.y1_c00167{bottom:976.733333pt;}
.h6_c00167{height:3.739141pt;}
.h7_c00167{height:12.988594pt;}
.h2_c00167{height:20.466875pt;}
.h9_c00167{height:22.303646pt;}
.h4_c00167{height:27.879557pt;}
.h3_c00167{height:31.618698pt;}
.h1_c00167{height:35.357839pt;}
.h5_c00167{height:39.031380pt;}
.h8_c00167{height:42.770521pt;}
.h0_c00167{height:1186.666667pt;}
.w0_c00167{width:782.666667pt;}
.x0_c00167{left:0.000000pt;}
.x54_c00167{left:134.666667pt;}
.xf_c00167{left:135.626667pt;}
.x1_c00167{left:139.426667pt;}
.x69_c00167{left:149.333333pt;}
.x3_c00167{left:150.666667pt;}
.x88_c00167{left:154.666667pt;}
.x97_c00167{left:156.373333pt;}
.x66_c00167{left:157.333333pt;}
.x1b_c00167{left:161.706667pt;}
.x5f_c00167{left:166.666667pt;}
.x4c_c00167{left:172.373333pt;}
.x55_c00167{left:176.000000pt;}
.x4_c00167{left:178.293333pt;}
.x6a_c00167{left:180.960000pt;}
.x39_c00167{left:184.960000pt;}
.x43_c00167{left:186.466667pt;}
.x79_c00167{left:189.706667pt;}
.x2e_c00167{left:192.373333pt;}
.x26_c00167{left:195.040000pt;}
.x10_c00167{left:197.333333pt;}
.x1c_c00167{left:198.666667pt;}
.x81_c00167{left:205.333333pt;}
.x60_c00167{left:208.000000pt;}
.x8e_c00167{left:209.706667pt;}
.x89_c00167{left:214.666667pt;}
.x4d_c00167{left:215.626667pt;}
.x56_c00167{left:219.040000pt;}
.x27_c00167{left:220.373333pt;}
.x44_c00167{left:222.666667pt;}
.x3a_c00167{left:224.000000pt;}
.x98_c00167{left:227.040000pt;}
.x5_c00167{left:231.626667pt;}
.x11_c00167{left:235.040000pt;}
.x7a_c00167{left:242.666667pt;}
.x8f_c00167{left:244.000000pt;}
.x6b_c00167{left:246.293333pt;}
.x9c_c00167{left:252.960000pt;}
.x6_c00167{left:258.666667pt;}
.x28_c00167{left:263.626667pt;}
.x57_c00167{left:268.000000pt;}
.x90_c00167{left:269.706667pt;}
.x45_c00167{left:271.040000pt;}
.x72_c00167{left:272.960000pt;}
.x12_c00167{left:278.293333pt;}
.x29_c00167{left:280.373333pt;}
.x1d_c00167{left:283.040000pt;}
.x99_c00167{left:288.960000pt;}
.x7b_c00167{left:290.293333pt;}
.x7_c00167{left:292.000000pt;}
.x2f_c00167{left:294.466667pt;}
.x13_c00167{left:296.373333pt;}
.x4e_c00167{left:298.293333pt;}
.x67_c00167{left:300.000000pt;}
.x9d_c00167{left:301.333333pt;}
.x61_c00167{left:302.666667pt;}
.x91_c00167{left:306.666667pt;}
.x62_c00167{left:307.626667pt;}
.x3b_c00167{left:309.706667pt;}
.x7c_c00167{left:310.666667pt;}
.x2a_c00167{left:312.000000pt;}
.x46_c00167{left:319.626667pt;}
.x4f_c00167{left:326.666667pt;}
.x1e_c00167{left:327.626667pt;}
.x82_c00167{left:329.333333pt;}
.x14_c00167{left:332.000000pt;}
.x58_c00167{left:337.333333pt;}
.x92_c00167{left:338.293333pt;}
.x9a_c00167{left:339.626667pt;}
.x1f_c00167{left:345.706667pt;}
.x9e_c00167{left:349.333333pt;}
.x47_c00167{left:350.666667pt;}
.x30_c00167{left:352.000000pt;}
.x93_c00167{left:355.040000pt;}
.x2_c00167{left:357.333333pt;}
.x6c_c00167{left:358.666667pt;}
.x3c_c00167{left:359.626667pt;}
.x83_c00167{left:367.040000pt;}
.x9b_c00167{left:369.333333pt;}
.x68_c00167{left:370.293333pt;}
.x59_c00167{left:378.666667pt;}
.x94_c00167{left:380.000000pt;}
.x50_c00167{left:381.333333pt;}
.x8_c00167{left:382.293333pt;}
.x6d_c00167{left:385.333333pt;}
.x20_c00167{left:390.666667pt;}
.x31_c00167{left:392.373333pt;}
.x8a_c00167{left:393.333333pt;}
.x63_c00167{left:396.960000pt;}
.x9_c00167{left:399.040000pt;}
.x9f_c00167{left:401.333333pt;}
.x15_c00167{left:410.666667pt;}
.x73_c00167{left:412.000000pt;}
.xa0_c00167{left:414.666667pt;}
.x64_c00167{left:417.706667pt;}
.x32_c00167{left:418.666667pt;}
.x48_c00167{left:420.000000pt;}
.xa_c00167{left:422.293333pt;}
.x8b_c00167{left:424.000000pt;}
.x2b_c00167{left:425.706667pt;}
.x5a_c00167{left:426.666667pt;}
.x16_c00167{left:436.373333pt;}
.x51_c00167{left:439.040000pt;}
.x33_c00167{left:452.000000pt;}
.x3d_c00167{left:453.333333pt;}
.x2c_c00167{left:456.000000pt;}
.x74_c00167{left:457.333333pt;}
.x7d_c00167{left:460.000000pt;}
.x17_c00167{left:466.666667pt;}
.x21_c00167{left:468.000000pt;}
.x3e_c00167{left:473.706667pt;}
.x6e_c00167{left:474.666667pt;}
.x49_c00167{left:480.373333pt;}
.x5b_c00167{left:481.333333pt;}
.xb_c00167{left:484.000000pt;}
.x65_c00167{left:487.040000pt;}
.x34_c00167{left:488.373333pt;}
.x75_c00167{left:492.373333pt;}
.x22_c00167{left:493.706667pt;}
.x6f_c00167{left:499.040000pt;}
.xa1_c00167{left:502.666667pt;}
.x35_c00167{left:509.333333pt;}
.x3f_c00167{left:510.293333pt;}
.x2d_c00167{left:516.373333pt;}
.x23_c00167{left:524.000000pt;}
.x18_c00167{left:526.093333pt;}
.x40_c00167{left:530.666667pt;}
.x7e_c00167{left:533.706667pt;}
.x84_c00167{left:536.373333pt;}
.x36_c00167{left:540.000000pt;}
.x95_c00167{left:540.960000pt;}
.xc_c00167{left:544.000000pt;}
.x52_c00167{left:545.333333pt;}
.x5c_c00167{left:549.333333pt;}
.x19_c00167{left:550.666667pt;}
.x37_c00167{left:558.293333pt;}
.x85_c00167{left:560.000000pt;}
.xd_c00167{left:568.373333pt;}
.x4a_c00167{left:570.293333pt;}
.x76_c00167{left:577.333333pt;}
.x41_c00167{left:581.333333pt;}
.x96_c00167{left:582.293333pt;}
.x24_c00167{left:585.706667pt;}
.x4b_c00167{left:589.333333pt;}
.xe_c00167{left:591.040000pt;}
.x1a_c00167{left:597.333333pt;}
.x8c_c00167{left:599.626667pt;}
.x38_c00167{left:601.706667pt;}
.x7f_c00167{left:602.666667pt;}
.x86_c00167{left:608.000000pt;}
.x25_c00167{left:609.333333pt;}
.x70_c00167{left:610.293333pt;}
.x77_c00167{left:612.960000pt;}
.x42_c00167{left:618.293333pt;}
.x8d_c00167{left:620.000000pt;}
.x53_c00167{left:626.666667pt;}
.x71_c00167{left:631.040000pt;}
.x78_c00167{left:636.000000pt;}
.x80_c00167{left:637.333333pt;}
.x87_c00167{left:638.293333pt;}
.x5d_c00167{left:641.333333pt;}
.x5e_c00167{left:646.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_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_0b53354ea2a44c7625d12694.woff2')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma2_c00168{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m9f_c00168{transform:matrix(0.337815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337815,0.000000,0.000000,0.250000,0,0);}
.m29_c00168{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m8d_c00168{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m3_c00168{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m98_c00168{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m86_c00168{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.ma5_c00168{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m74_c00168{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m81_c00168{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.ma6_c00168{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m75_c00168{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.m47_c00168{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m56_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);}
.m9e_c00168{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m7e_c00168{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m85_c00168{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m4b_c00168{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m8a_c00168{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m37_c00168{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m8b_c00168{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.m5d_c00168{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m3b_c00168{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mb1_c00168{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m8c_c00168{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.m23_c00168{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m7c_c00168{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m91_c00168{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m26_c00168{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m70_c00168{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m90_c00168{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mb0_c00168{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m43_c00168{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m6f_c00168{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m9d_c00168{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m6e_c00168{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m48_c00168{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m1c_c00168{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m13_c00168{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m3e_c00168{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m57_c00168{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m77_c00168{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mc_c00168{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m27_c00168{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m6_c00168{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m2d_c00168{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.ma3_c00168{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m1f_c00168{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m62_c00168{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m30_c00168{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m69_c00168{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.m82_c00168{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m42_c00168{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m5a_c00168{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m72_c00168{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.ma8_c00168{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.ma7_c00168{transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);}
.m6d_c00168{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mb7_c00168{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m9c_c00168{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.mb4_c00168{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.mad_c00168{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.mab_c00168{transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);}
.m24_c00168{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m36_c00168{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m38_c00168{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m2c_c00168{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m9b_c00168{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mb5_c00168{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m96_c00168{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m1_c00168{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m71_c00168{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m2_c00168{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m2e_c00168{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m4_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);}
.mb8_c00168{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m7b_c00168{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m60_c00168{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m4a_c00168{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m89_c00168{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m4e_c00168{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m19_c00168{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m7f_c00168{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m25_c00168{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.mae_c00168{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m5f_c00168{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m46_c00168{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m7d_c00168{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m11_c00168{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m79_c00168{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m1d_c00168{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m21_c00168{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m18_c00168{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m6a_c00168{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m16_c00168{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m34_c00168{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m2a_c00168{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.ma1_c00168{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m4f_c00168{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.maa_c00168{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m3f_c00168{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m45_c00168{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m3a_c00168{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m93_c00168{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m59_c00168{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m9a_c00168{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m5e_c00168{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m12_c00168{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m8f_c00168{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m88_c00168{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m52_c00168{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m8_c00168{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m83_c00168{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mb_c00168{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.ma4_c00168{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.me_c00168{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m32_c00168{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m31_c00168{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m61_c00168{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m44_c00168{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m39_c00168{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.maf_c00168{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m41_c00168{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m40_c00168{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m73_c00168{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m3c_c00168{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m54_c00168{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m94_c00168{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m7a_c00168{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m33_c00168{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m4d_c00168{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m87_c00168{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m49_c00168{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m5_c00168{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m50_c00168{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.md_c00168{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m4c_c00168{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m20_c00168{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.ma0_c00168{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m15_c00168{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m6c_c00168{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m22_c00168{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m95_c00168{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m1a_c00168{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m99_c00168{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m97_c00168{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m6b_c00168{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m1e_c00168{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m80_c00168{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m65_c00168{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m51_c00168{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.ma9_c00168{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m9_c00168{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m28_c00168{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.mb2_c00168{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m92_c00168{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m2f_c00168{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.m8e_c00168{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m10_c00168{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m0_c00168{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.m55_c00168{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m66_c00168{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m78_c00168{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m14_c00168{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m1b_c00168{transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);}
.m84_c00168{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.mb3_c00168{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m5b_c00168{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m76_c00168{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m17_c00168{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m35_c00168{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m7_c00168{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m3d_c00168{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.mf_c00168{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mb6_c00168{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m2b_c00168{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.ma_c00168{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m53_c00168{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m63_c00168{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m5c_c00168{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.mb9_c00168{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.mac_c00168{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m67_c00168{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m64_c00168{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m58_c00168{transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);}
.m68_c00168{transform:matrix(7.210526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.210526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.210526,0.000000,0.000000,0.250000,0,0);}
.v1_c00168{vertical-align:-18.000000px;}
.v0_c00168{vertical-align:0.000000px;}
.ls0_c00168{letter-spacing:0.000000px;}
.sc__c00168{text-shadow:none;}
.sc0_c00168{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00168{-webkit-text-stroke:0px transparent;}
.sc0_c00168{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00168{word-spacing:-7.189112px;}
.ws1_c00168{word-spacing:-6.292291px;}
.ws2_c00168{word-spacing:0.000000px;}
.fc0_c00168{color:transparent;}
.fs6_c00168{font-size:3.420000px;}
.fs7_c00168{font-size:11.880000px;}
.fs3_c00168{font-size:18.720000px;}
.fs0_c00168{font-size:20.400000px;}
.fs4_c00168{font-size:25.500000px;}
.fs1_c00168{font-size:28.920000px;}
.fs5_c00168{font-size:32.340000px;}
.fs2_c00168{font-size:35.700000px;}
.y0_c00168{bottom:0.000000px;}
.ycd_c00168{bottom:250.905000px;}
.ycf_c00168{bottom:251.745000px;}
.yd2_c00168{bottom:251.970000px;}
.yd0_c00168{bottom:253.905000px;}
.yce_c00168{bottom:254.130000px;}
.yd1_c00168{bottom:254.970000px;}
.ycc_c00168{bottom:255.405000px;}
.ycb_c00168{bottom:269.775000px;}
.yc3_c00168{bottom:270.405000px;}
.yc6_c00168{bottom:271.245000px;}
.yc8_c00168{bottom:272.325000px;}
.yc1_c00168{bottom:272.745000px;}
.yc7_c00168{bottom:273.405000px;}
.yc9_c00168{bottom:273.630000px;}
.yc5_c00168{bottom:273.825000px;}
.yc2_c00168{bottom:274.470000px;}
.yc4_c00168{bottom:274.905000px;}
.yca_c00168{bottom:276.630000px;}
.yba_c00168{bottom:289.905000px;}
.ybf_c00168{bottom:290.745000px;}
.yb8_c00168{bottom:291.405000px;}
.ybc_c00168{bottom:291.825000px;}
.ybb_c00168{bottom:292.245000px;}
.ybd_c00168{bottom:292.905000px;}
.ybe_c00168{bottom:293.130000px;}
.yc0_c00168{bottom:293.970000px;}
.yb9_c00168{bottom:294.405000px;}
.yb7_c00168{bottom:310.905000px;}
.yb6_c00168{bottom:312.630000px;}
.yb5_c00168{bottom:313.905000px;}
.yb4_c00168{bottom:329.745000px;}
.yb3_c00168{bottom:330.825000px;}
.yb1_c00168{bottom:331.245000px;}
.yb2_c00168{bottom:332.130000px;}
.yb0_c00168{bottom:333.405000px;}
.yae_c00168{bottom:349.470000px;}
.yaf_c00168{bottom:349.905000px;}
.yaa_c00168{bottom:350.325000px;}
.yac_c00168{bottom:350.745000px;}
.yad_c00168{bottom:351.825000px;}
.ya9_c00168{bottom:352.905000px;}
.yab_c00168{bottom:353.130000px;}
.ya8_c00168{bottom:354.405000px;}
.ya6_c00168{bottom:370.245000px;}
.ya7_c00168{bottom:370.470000px;}
.ya4_c00168{bottom:371.745000px;}
.ya5_c00168{bottom:372.405000px;}
.ya3_c00168{bottom:373.905000px;}
.ya2_c00168{bottom:389.745000px;}
.ya0_c00168{bottom:391.245000px;}
.ya1_c00168{bottom:391.905000px;}
.y9f_c00168{bottom:392.130000px;}
.y9e_c00168{bottom:392.325000px;}
.y9c_c00168{bottom:393.405000px;}
.y9d_c00168{bottom:394.470000px;}
.y99_c00168{bottom:410.745000px;}
.y9b_c00168{bottom:411.405000px;}
.y98_c00168{bottom:411.630000px;}
.y9a_c00168{bottom:412.470000px;}
.y97_c00168{bottom:412.905000px;}
.y96_c00168{bottom:430.905000px;}
.y95_c00168{bottom:432.405000px;}
.y93_c00168{bottom:449.745000px;}
.y91_c00168{bottom:450.825000px;}
.y94_c00168{bottom:451.470000px;}
.y92_c00168{bottom:451.905000px;}
.y90_c00168{bottom:469.470000px;}
.y8f_c00168{bottom:469.905000px;}
.y8c_c00168{bottom:470.745000px;}
.y8b_c00168{bottom:471.405000px;}
.y8d_c00168{bottom:472.470000px;}
.y8e_c00168{bottom:472.905000px;}
.y89_c00168{bottom:486.405000px;}
.y8a_c00168{bottom:488.745000px;}
.y88_c00168{bottom:489.825000px;}
.y87_c00168{bottom:490.905000px;}
.y85_c00168{bottom:507.405000px;}
.y84_c00168{bottom:508.470000px;}
.y81_c00168{bottom:508.905000px;}
.y82_c00168{bottom:509.745000px;}
.y86_c00168{bottom:510.405000px;}
.y83_c00168{bottom:511.905000px;}
.y80_c00168{bottom:526.905000px;}
.y7f_c00168{bottom:531.405000px;}
.y7d_c00168{bottom:546.405000px;}
.y7c_c00168{bottom:548.745000px;}
.y7e_c00168{bottom:549.630000px;}
.y7b_c00168{bottom:550.905000px;}
.y79_c00168{bottom:568.245000px;}
.y7a_c00168{bottom:568.470000px;}
.y77_c00168{bottom:568.905000px;}
.y78_c00168{bottom:569.970000px;}
.y76_c00168{bottom:570.405000px;}
.y75_c00168{bottom:587.745000px;}
.y73_c00168{bottom:589.470000px;}
.y74_c00168{bottom:589.905000px;}
.y71_c00168{bottom:590.130000px;}
.y72_c00168{bottom:590.970000px;}
.y6b_c00168{bottom:606.405000px;}
.y6e_c00168{bottom:607.245000px;}
.y6f_c00168{bottom:608.325000px;}
.y6d_c00168{bottom:608.745000px;}
.y6c_c00168{bottom:609.405000px;}
.y70_c00168{bottom:609.630000px;}
.y6a_c00168{bottom:625.905000px;}
.y68_c00168{bottom:628.905000px;}
.y69_c00168{bottom:630.405000px;}
.y67_c00168{bottom:645.405000px;}
.y66_c00168{bottom:646.470000px;}
.y64_c00168{bottom:647.745000px;}
.y65_c00168{bottom:649.905000px;}
.y60_c00168{bottom:667.245000px;}
.y63_c00168{bottom:667.905000px;}
.y61_c00168{bottom:668.130000px;}
.y5f_c00168{bottom:669.405000px;}
.y62_c00168{bottom:670.470000px;}
.y5e_c00168{bottom:685.470000px;}
.y5d_c00168{bottom:685.905000px;}
.y5b_c00168{bottom:686.745000px;}
.y59_c00168{bottom:688.905000px;}
.y5a_c00168{bottom:689.130000px;}
.y5c_c00168{bottom:689.970000px;}
.y55_c00168{bottom:705.405000px;}
.y58_c00168{bottom:706.245000px;}
.y56_c00168{bottom:707.745000px;}
.y57_c00168{bottom:708.405000px;}
.y54_c00168{bottom:725.970000px;}
.y52_c00168{bottom:726.405000px;}
.y50_c00168{bottom:727.245000px;}
.y4f_c00168{bottom:727.905000px;}
.y53_c00168{bottom:728.130000px;}
.y51_c00168{bottom:729.405000px;}
.y4e_c00168{bottom:744.405000px;}
.y47_c00168{bottom:745.245000px;}
.y4d_c00168{bottom:745.470000px;}
.y4c_c00168{bottom:745.920000px;}
.y46_c00168{bottom:746.550000px;}
.y49_c00168{bottom:747.405000px;}
.y4a_c00168{bottom:747.630000px;}
.y48_c00168{bottom:748.470000px;}
.y4b_c00168{bottom:748.905000px;}
.y45_c00168{bottom:765.405000px;}
.y43_c00168{bottom:766.245000px;}
.y44_c00168{bottom:767.130000px;}
.y42_c00168{bottom:768.405000px;}
.y40_c00168{bottom:783.405000px;}
.y41_c00168{bottom:784.905000px;}
.y3f_c00168{bottom:786.825000px;}
.y3e_c00168{bottom:787.905000px;}
.y3c_c00168{bottom:804.405000px;}
.y39_c00168{bottom:805.245000px;}
.y3d_c00168{bottom:805.470000px;}
.y3a_c00168{bottom:807.405000px;}
.y38_c00168{bottom:807.630000px;}
.y3b_c00168{bottom:808.470000px;}
.y34_c00168{bottom:829.245000px;}
.y35_c00168{bottom:830.970000px;}
.y36_c00168{bottom:832.470000px;}
.y37_c00168{bottom:832.905000px;}
.y33_c00168{bottom:863.745000px;}
.y32_c00168{bottom:865.905000px;}
.y31_c00168{bottom:867.405000px;}
.y2d_c00168{bottom:885.405000px;}
.y30_c00168{bottom:885.630000px;}
.y2e_c00168{bottom:886.470000px;}
.y2c_c00168{bottom:886.905000px;}
.y2f_c00168{bottom:887.970000px;}
.y2b_c00168{bottom:904.245000px;}
.y2a_c00168{bottom:906.405000px;}
.y26_c00168{bottom:921.405000px;}
.y28_c00168{bottom:922.245000px;}
.y25_c00168{bottom:923.745000px;}
.y29_c00168{bottom:924.405000px;}
.y27_c00168{bottom:924.825000px;}
.y24_c00168{bottom:925.905000px;}
.y23_c00168{bottom:940.905000px;}
.y1f_c00168{bottom:943.245000px;}
.y22_c00168{bottom:944.130000px;}
.y20_c00168{bottom:944.325000px;}
.y21_c00168{bottom:945.405000px;}
.y1b_c00168{bottom:962.325000px;}
.y1c_c00168{bottom:962.745000px;}
.y1a_c00168{bottom:964.905000px;}
.y1d_c00168{bottom:965.130000px;}
.y1e_c00168{bottom:965.970000px;}
.y18_c00168{bottom:981.405000px;}
.y16_c00168{bottom:982.245000px;}
.y17_c00168{bottom:984.405000px;}
.y19_c00168{bottom:984.630000px;}
.y15_c00168{bottom:999.405000px;}
.y13_c00168{bottom:1001.745000px;}
.y14_c00168{bottom:1003.470000px;}
.y11_c00168{bottom:1003.905000px;}
.y12_c00168{bottom:1004.130000px;}
.ye_c00168{bottom:1021.245000px;}
.yc_c00168{bottom:1021.470000px;}
.yf_c00168{bottom:1022.325000px;}
.yd_c00168{bottom:1023.405000px;}
.y10_c00168{bottom:1023.630000px;}
.yb_c00168{bottom:1040.325000px;}
.ya_c00168{bottom:1040.745000px;}
.y7_c00168{bottom:1042.905000px;}
.y8_c00168{bottom:1043.130000px;}
.y9_c00168{bottom:1043.970000px;}
.y4_c00168{bottom:1061.745000px;}
.y6_c00168{bottom:1062.405000px;}
.y5_c00168{bottom:1062.630000px;}
.y3_c00168{bottom:1063.905000px;}
.y2_c00168{bottom:1099.905000px;}
.y1_c00168{bottom:1102.050000px;}
.h7_c00168{height:4.206533px;}
.h8_c00168{height:14.612168px;}
.h4_c00168{height:23.025234px;}
.h1_c00168{height:25.091602px;}
.h5_c00168{height:31.364502px;}
.h2_c00168{height:35.571035px;}
.h6_c00168{height:39.777568px;}
.h3_c00168{height:43.910303px;}
.h0_c00168{height:1335.000000px;}
.w0_c00168{width:880.500000px;}
.x0_c00168{left:0.000000px;}
.xf_c00168{left:151.500000px;}
.x50_c00168{left:153.420000px;}
.x76_c00168{left:160.080000px;}
.x3c_c00168{left:168.000000px;}
.x3_c00168{left:169.080000px;}
.x10_c00168{left:184.500000px;}
.x51_c00168{left:186.420000px;}
.x2a_c00168{left:193.500000px;}
.x3d_c00168{left:195.000000px;}
.x1f_c00168{left:196.080000px;}
.x5f_c00168{left:202.500000px;}
.xa7_c00168{left:204.000000px;}
.x36_c00168{left:205.500000px;}
.x11_c00168{left:208.500000px;}
.x2b_c00168{left:210.420000px;}
.x4_c00168{left:213.000000px;}
.xce_c00168{left:216.000000px;}
.xad_c00168{left:220.500000px;}
.x47_c00168{left:222.420000px;}
.x20_c00168{left:225.000000px;}
.x52_c00168{left:226.920000px;}
.xb6_c00168{left:228.000000px;}
.x67_c00168{left:229.500000px;}
.xa8_c00168{left:232.080000px;}
.x81_c00168{left:235.080000px;}
.x12_c00168{left:236.580000px;}
.x6e_c00168{left:238.080000px;}
.x92_c00168{left:240.420000px;}
.x89_c00168{left:243.420000px;}
.x60_c00168{left:246.000000px;}
.x68_c00168{left:249.420000px;}
.x74_c00168{left:252.000000px;}
.x3e_c00168{left:253.500000px;}
.x37_c00168{left:255.420000px;}
.x6f_c00168{left:256.920000px;}
.x7e_c00168{left:258.420000px;}
.x21_c00168{left:259.500000px;}
.xbb_c00168{left:261.420000px;}
.x5_c00168{left:266.580000px;}
.x2c_c00168{left:268.500000px;}
.xa0_c00168{left:271.500000px;}
.xb7_c00168{left:273.000000px;}
.x9d_c00168{left:274.500000px;}
.x13_c00168{left:275.580000px;}
.x53_c00168{left:277.920000px;}
.x8a_c00168{left:279.000000px;}
.xc9_c00168{left:280.500000px;}
.x38_c00168{left:282.000000px;}
.x82_c00168{left:283.080000px;}
.x93_c00168{left:285.000000px;}
.x6_c00168{left:286.920000px;}
.x48_c00168{left:288.420000px;}
.xae_c00168{left:289.500000px;}
.x3f_c00168{left:291.000000px;}
.xcf_c00168{left:292.920000px;}
.x14_c00168{left:295.920000px;}
.x8b_c00168{left:297.420000px;}
.xdc_c00168{left:305.580000px;}
.x6a_c00168{left:308.145000px;}
.x22_c00168{left:313.500000px;}
.x83_c00168{left:315.420000px;}
.x77_c00168{left:316.500000px;}
.x7_c00168{left:318.000000px;}
.x49_c00168{left:322.080000px;}
.x15_c00168{left:324.000000px;}
.xaf_c00168{left:325.920000px;}
.xa1_c00168{left:327.000000px;}
.x94_c00168{left:328.500000px;}
.x9e_c00168{left:330.000000px;}
.x5b_c00168{left:331.920000px;}
.x39_c00168{left:334.080000px;}
.xdd_c00168{left:337.500000px;}
.xd3_c00168{left:339.000000px;}
.x54_c00168{left:342.000000px;}
.x69_c00168{left:343.080000px;}
.x40_c00168{left:346.080000px;}
.x95_c00168{left:348.000000px;}
.x61_c00168{left:351.000000px;}
.xd9_c00168{left:352.500000px;}
.x4a_c00168{left:354.000000px;}
.x78_c00168{left:355.920000px;}
.x5c_c00168{left:358.500000px;}
.x2d_c00168{left:359.580000px;}
.x6b_c00168{left:361.500000px;}
.x84_c00168{left:363.000000px;}
.x16_c00168{left:364.500000px;}
.x41_c00168{left:368.580000px;}
.xca_c00168{left:370.920000px;}
.x70_c00168{left:379.080000px;}
.x2e_c00168{left:381.420000px;}
.xda_c00168{left:382.920000px;}
.xa2_c00168{left:384.000000px;}
.x6c_c00168{left:388.080000px;}
.xbc_c00168{left:391.500000px;}
.x8_c00168{left:393.000000px;}
.x1_c00168{left:399.000000px;}
.x23_c00168{left:400.080000px;}
.x7f_c00168{left:402.000000px;}
.xa9_c00168{left:403.500000px;}
.x17_c00168{left:404.580000px;}
.x2f_c00168{left:410.580000px;}
.x79_c00168{left:412.500000px;}
.xde_c00168{left:414.420000px;}
.xb8_c00168{left:418.500000px;}
.x85_c00168{left:420.420000px;}
.x9_c00168{left:421.500000px;}
.x8c_c00168{left:422.580000px;}
.x4b_c00168{left:424.920000px;}
.x96_c00168{left:426.000000px;}
.x24_c00168{left:429.000000px;}
.x5d_c00168{left:430.920000px;}
.x3a_c00168{left:436.080000px;}
.x8d_c00168{left:441.420000px;}
.xaa_c00168{left:443.580000px;}
.x9f_c00168{left:445.500000px;}
.xb0_c00168{left:447.420000px;}
.x18_c00168{left:450.000000px;}
.x4c_c00168{left:451.500000px;}
.x55_c00168{left:453.000000px;}
.x30_c00168{left:454.080000px;}
.x7b_c00168{left:456.000000px;}
.x3b_c00168{left:457.500000px;}
.x6d_c00168{left:458.580000px;}
.x62_c00168{left:461.580000px;}
.xcb_c00168{left:465.420000px;}
.xbe_c00168{left:466.500000px;}
.xd0_c00168{left:467.580000px;}
.xdf_c00168{left:471.420000px;}
.xa3_c00168{left:472.920000px;}
.x31_c00168{left:475.920000px;}
.x56_c00168{left:477.000000px;}
.xa_c00168{left:478.500000px;}
.x97_c00168{left:480.000000px;}
.x63_c00168{left:481.920000px;}
.xab_c00168{left:488.580000px;}
.x86_c00168{left:491.580000px;}
.x42_c00168{left:493.500000px;}
.x5e_c00168{left:496.920000px;}
.x71_c00168{left:499.500000px;}
.x57_c00168{left:502.500000px;}
.x32_c00168{left:504.000000px;}
.xa4_c00168{left:508.500000px;}
.x25_c00168{left:510.000000px;}
.x64_c00168{left:512.580000px;}
.xc2_c00168{left:514.920000px;}
.xb_c00168{left:516.000000px;}
.x7c_c00168{left:517.500000px;}
.xe0_c00168{left:520.080000px;}
.xd6_c00168{left:522.000000px;}
.x43_c00168{left:523.080000px;}
.xbf_c00168{left:525.420000px;}
.xcc_c00168{left:526.500000px;}
.xd4_c00168{left:529.080000px;}
.xc_c00168{left:532.920000px;}
.x72_c00168{left:537.000000px;}
.xe1_c00168{left:541.500000px;}
.xc3_c00168{left:542.580000px;}
.xac_c00168{left:544.080000px;}
.x9b_c00168{left:545.580000px;}
.xe3_c00168{left:547.500000px;}
.x87_c00168{left:548.580000px;}
.x19_c00168{left:550.500000px;}
.xc0_c00168{left:553.500000px;}
.x8e_c00168{left:556.920000px;}
.x75_c00168{left:558.000000px;}
.x58_c00168{left:559.080000px;}
.xb9_c00168{left:560.580000px;}
.xb2_c00168{left:564.420000px;}
.xba_c00168{left:565.500000px;}
.x26_c00168{left:567.000000px;}
.x98_c00168{left:568.080000px;}
.x1a_c00168{left:571.920000px;}
.x44_c00168{left:577.500000px;}
.x33_c00168{left:579.000000px;}
.x65_c00168{left:584.580000px;}
.xc4_c00168{left:586.500000px;}
.xd_c00168{left:589.920000px;}
.xdb_c00168{left:591.000000px;}
.x8f_c00168{left:593.580000px;}
.x4d_c00168{left:595.920000px;}
.x99_c00168{left:598.500000px;}
.x1b_c00168{left:600.000000px;}
.xa5_c00168{left:601.920000px;}
.x27_c00168{left:606.420000px;}
.xc5_c00168{left:607.500000px;}
.xc1_c00168{left:609.420000px;}
.xd5_c00168{left:610.500000px;}
.x9c_c00168{left:615.000000px;}
.xd1_c00168{left:618.000000px;}
.x45_c00168{left:619.080000px;}
.xbd_c00168{left:622.500000px;}
.xb3_c00168{left:624.420000px;}
.x34_c00168{left:627.000000px;}
.x73_c00168{left:628.080000px;}
.xb1_c00168{left:634.920000px;}
.x7d_c00168{left:637.920000px;}
.x4e_c00168{left:640.500000px;}
.xc6_c00168{left:642.000000px;}
.x28_c00168{left:643.080000px;}
.x88_c00168{left:648.000000px;}
.xd7_c00168{left:649.500000px;}
.x1c_c00168{left:652.500000px;}
.xd2_c00168{left:655.500000px;}
.x59_c00168{left:657.420000px;}
.x90_c00168{left:658.500000px;}
.xc7_c00168{left:663.420000px;}
.xe2_c00168{left:666.420000px;}
.xe4_c00168{left:670.500000px;}
.x91_c00168{left:678.000000px;}
.xe_c00168{left:679.500000px;}
.x9a_c00168{left:681.000000px;}
.x29_c00168{left:682.500000px;}
.xd8_c00168{left:685.500000px;}
.x1d_c00168{left:686.580000px;}
.xb4_c00168{left:687.645000px;}
.x4f_c00168{left:688.920000px;}
.xcd_c00168{left:690.000000px;}
.xc8_c00168{left:691.500000px;}
.x35_c00168{left:697.920000px;}
.xa6_c00168{left:700.920000px;}
.x2_c00168{left:706.920000px;}
.x1e_c00168{left:708.420000px;}
.x66_c00168{left:709.500000px;}
.x5a_c00168{left:712.500000px;}
.xb5_c00168{left:715.500000px;}
.x46_c00168{left:718.500000px;}
.x80_c00168{left:721.500000px;}
.x7a_c00168{left:723.000000px;}
@media print{
.v1_c00168{vertical-align:-16.000000pt;}
.v0_c00168{vertical-align:0.000000pt;}
.ls0_c00168{letter-spacing:0.000000pt;}
.ws0_c00168{word-spacing:-6.390322pt;}
.ws1_c00168{word-spacing:-5.593147pt;}
.ws2_c00168{word-spacing:0.000000pt;}
.fs6_c00168{font-size:3.040000pt;}
.fs7_c00168{font-size:10.560000pt;}
.fs3_c00168{font-size:16.640000pt;}
.fs0_c00168{font-size:18.133333pt;}
.fs4_c00168{font-size:22.666667pt;}
.fs1_c00168{font-size:25.706667pt;}
.fs5_c00168{font-size:28.746667pt;}
.fs2_c00168{font-size:31.733333pt;}
.y0_c00168{bottom:0.000000pt;}
.ycd_c00168{bottom:223.026667pt;}
.ycf_c00168{bottom:223.773333pt;}
.yd2_c00168{bottom:223.973333pt;}
.yd0_c00168{bottom:225.693333pt;}
.yce_c00168{bottom:225.893333pt;}
.yd1_c00168{bottom:226.640000pt;}
.ycc_c00168{bottom:227.026667pt;}
.ycb_c00168{bottom:239.800000pt;}
.yc3_c00168{bottom:240.360000pt;}
.yc6_c00168{bottom:241.106667pt;}
.yc8_c00168{bottom:242.066667pt;}
.yc1_c00168{bottom:242.440000pt;}
.yc7_c00168{bottom:243.026667pt;}
.yc9_c00168{bottom:243.226667pt;}
.yc5_c00168{bottom:243.400000pt;}
.yc2_c00168{bottom:243.973333pt;}
.yc4_c00168{bottom:244.360000pt;}
.yca_c00168{bottom:245.893333pt;}
.yba_c00168{bottom:257.693333pt;}
.ybf_c00168{bottom:258.440000pt;}
.yb8_c00168{bottom:259.026667pt;}
.ybc_c00168{bottom:259.400000pt;}
.ybb_c00168{bottom:259.773333pt;}
.ybd_c00168{bottom:260.360000pt;}
.ybe_c00168{bottom:260.560000pt;}
.yc0_c00168{bottom:261.306667pt;}
.yb9_c00168{bottom:261.693333pt;}
.yb7_c00168{bottom:276.360000pt;}
.yb6_c00168{bottom:277.893333pt;}
.yb5_c00168{bottom:279.026667pt;}
.yb4_c00168{bottom:293.106667pt;}
.yb3_c00168{bottom:294.066667pt;}
.yb1_c00168{bottom:294.440000pt;}
.yb2_c00168{bottom:295.226667pt;}
.yb0_c00168{bottom:296.360000pt;}
.yae_c00168{bottom:310.640000pt;}
.yaf_c00168{bottom:311.026667pt;}
.yaa_c00168{bottom:311.400000pt;}
.yac_c00168{bottom:311.773333pt;}
.yad_c00168{bottom:312.733333pt;}
.ya9_c00168{bottom:313.693333pt;}
.yab_c00168{bottom:313.893333pt;}
.ya8_c00168{bottom:315.026667pt;}
.ya6_c00168{bottom:329.106667pt;}
.ya7_c00168{bottom:329.306667pt;}
.ya4_c00168{bottom:330.440000pt;}
.ya5_c00168{bottom:331.026667pt;}
.ya3_c00168{bottom:332.360000pt;}
.ya2_c00168{bottom:346.440000pt;}
.ya0_c00168{bottom:347.773333pt;}
.ya1_c00168{bottom:348.360000pt;}
.y9f_c00168{bottom:348.560000pt;}
.y9e_c00168{bottom:348.733333pt;}
.y9c_c00168{bottom:349.693333pt;}
.y9d_c00168{bottom:350.640000pt;}
.y99_c00168{bottom:365.106667pt;}
.y9b_c00168{bottom:365.693333pt;}
.y98_c00168{bottom:365.893333pt;}
.y9a_c00168{bottom:366.640000pt;}
.y97_c00168{bottom:367.026667pt;}
.y96_c00168{bottom:383.026667pt;}
.y95_c00168{bottom:384.360000pt;}
.y93_c00168{bottom:399.773333pt;}
.y91_c00168{bottom:400.733333pt;}
.y94_c00168{bottom:401.306667pt;}
.y92_c00168{bottom:401.693333pt;}
.y90_c00168{bottom:417.306667pt;}
.y8f_c00168{bottom:417.693333pt;}
.y8c_c00168{bottom:418.440000pt;}
.y8b_c00168{bottom:419.026667pt;}
.y8d_c00168{bottom:419.973333pt;}
.y8e_c00168{bottom:420.360000pt;}
.y89_c00168{bottom:432.360000pt;}
.y8a_c00168{bottom:434.440000pt;}
.y88_c00168{bottom:435.400000pt;}
.y87_c00168{bottom:436.360000pt;}
.y85_c00168{bottom:451.026667pt;}
.y84_c00168{bottom:451.973333pt;}
.y81_c00168{bottom:452.360000pt;}
.y82_c00168{bottom:453.106667pt;}
.y86_c00168{bottom:453.693333pt;}
.y83_c00168{bottom:455.026667pt;}
.y80_c00168{bottom:468.360000pt;}
.y7f_c00168{bottom:472.360000pt;}
.y7d_c00168{bottom:485.693333pt;}
.y7c_c00168{bottom:487.773333pt;}
.y7e_c00168{bottom:488.560000pt;}
.y7b_c00168{bottom:489.693333pt;}
.y79_c00168{bottom:505.106667pt;}
.y7a_c00168{bottom:505.306667pt;}
.y77_c00168{bottom:505.693333pt;}
.y78_c00168{bottom:506.640000pt;}
.y76_c00168{bottom:507.026667pt;}
.y75_c00168{bottom:522.440000pt;}
.y73_c00168{bottom:523.973333pt;}
.y74_c00168{bottom:524.360000pt;}
.y71_c00168{bottom:524.560000pt;}
.y72_c00168{bottom:525.306667pt;}
.y6b_c00168{bottom:539.026667pt;}
.y6e_c00168{bottom:539.773333pt;}
.y6f_c00168{bottom:540.733333pt;}
.y6d_c00168{bottom:541.106667pt;}
.y6c_c00168{bottom:541.693333pt;}
.y70_c00168{bottom:541.893333pt;}
.y6a_c00168{bottom:556.360000pt;}
.y68_c00168{bottom:559.026667pt;}
.y69_c00168{bottom:560.360000pt;}
.y67_c00168{bottom:573.693333pt;}
.y66_c00168{bottom:574.640000pt;}
.y64_c00168{bottom:575.773333pt;}
.y65_c00168{bottom:577.693333pt;}
.y60_c00168{bottom:593.106667pt;}
.y63_c00168{bottom:593.693333pt;}
.y61_c00168{bottom:593.893333pt;}
.y5f_c00168{bottom:595.026667pt;}
.y62_c00168{bottom:595.973333pt;}
.y5e_c00168{bottom:609.306667pt;}
.y5d_c00168{bottom:609.693333pt;}
.y5b_c00168{bottom:610.440000pt;}
.y59_c00168{bottom:612.360000pt;}
.y5a_c00168{bottom:612.560000pt;}
.y5c_c00168{bottom:613.306667pt;}
.y55_c00168{bottom:627.026667pt;}
.y58_c00168{bottom:627.773333pt;}
.y56_c00168{bottom:629.106667pt;}
.y57_c00168{bottom:629.693333pt;}
.y54_c00168{bottom:645.306667pt;}
.y52_c00168{bottom:645.693333pt;}
.y50_c00168{bottom:646.440000pt;}
.y4f_c00168{bottom:647.026667pt;}
.y53_c00168{bottom:647.226667pt;}
.y51_c00168{bottom:648.360000pt;}
.y4e_c00168{bottom:661.693333pt;}
.y47_c00168{bottom:662.440000pt;}
.y4d_c00168{bottom:662.640000pt;}
.y4c_c00168{bottom:663.040000pt;}
.y46_c00168{bottom:663.600000pt;}
.y49_c00168{bottom:664.360000pt;}
.y4a_c00168{bottom:664.560000pt;}
.y48_c00168{bottom:665.306667pt;}
.y4b_c00168{bottom:665.693333pt;}
.y45_c00168{bottom:680.360000pt;}
.y43_c00168{bottom:681.106667pt;}
.y44_c00168{bottom:681.893333pt;}
.y42_c00168{bottom:683.026667pt;}
.y40_c00168{bottom:696.360000pt;}
.y41_c00168{bottom:697.693333pt;}
.y3f_c00168{bottom:699.400000pt;}
.y3e_c00168{bottom:700.360000pt;}
.y3c_c00168{bottom:715.026667pt;}
.y39_c00168{bottom:715.773333pt;}
.y3d_c00168{bottom:715.973333pt;}
.y3a_c00168{bottom:717.693333pt;}
.y38_c00168{bottom:717.893333pt;}
.y3b_c00168{bottom:718.640000pt;}
.y34_c00168{bottom:737.106667pt;}
.y35_c00168{bottom:738.640000pt;}
.y36_c00168{bottom:739.973333pt;}
.y37_c00168{bottom:740.360000pt;}
.y33_c00168{bottom:767.773333pt;}
.y32_c00168{bottom:769.693333pt;}
.y31_c00168{bottom:771.026667pt;}
.y2d_c00168{bottom:787.026667pt;}
.y30_c00168{bottom:787.226667pt;}
.y2e_c00168{bottom:787.973333pt;}
.y2c_c00168{bottom:788.360000pt;}
.y2f_c00168{bottom:789.306667pt;}
.y2b_c00168{bottom:803.773333pt;}
.y2a_c00168{bottom:805.693333pt;}
.y26_c00168{bottom:819.026667pt;}
.y28_c00168{bottom:819.773333pt;}
.y25_c00168{bottom:821.106667pt;}
.y29_c00168{bottom:821.693333pt;}
.y27_c00168{bottom:822.066667pt;}
.y24_c00168{bottom:823.026667pt;}
.y23_c00168{bottom:836.360000pt;}
.y1f_c00168{bottom:838.440000pt;}
.y22_c00168{bottom:839.226667pt;}
.y20_c00168{bottom:839.400000pt;}
.y21_c00168{bottom:840.360000pt;}
.y1b_c00168{bottom:855.400000pt;}
.y1c_c00168{bottom:855.773333pt;}
.y1a_c00168{bottom:857.693333pt;}
.y1d_c00168{bottom:857.893333pt;}
.y1e_c00168{bottom:858.640000pt;}
.y18_c00168{bottom:872.360000pt;}
.y16_c00168{bottom:873.106667pt;}
.y17_c00168{bottom:875.026667pt;}
.y19_c00168{bottom:875.226667pt;}
.y15_c00168{bottom:888.360000pt;}
.y13_c00168{bottom:890.440000pt;}
.y14_c00168{bottom:891.973333pt;}
.y11_c00168{bottom:892.360000pt;}
.y12_c00168{bottom:892.560000pt;}
.ye_c00168{bottom:907.773333pt;}
.yc_c00168{bottom:907.973333pt;}
.yf_c00168{bottom:908.733333pt;}
.yd_c00168{bottom:909.693333pt;}
.y10_c00168{bottom:909.893333pt;}
.yb_c00168{bottom:924.733333pt;}
.ya_c00168{bottom:925.106667pt;}
.y7_c00168{bottom:927.026667pt;}
.y8_c00168{bottom:927.226667pt;}
.y9_c00168{bottom:927.973333pt;}
.y4_c00168{bottom:943.773333pt;}
.y6_c00168{bottom:944.360000pt;}
.y5_c00168{bottom:944.560000pt;}
.y3_c00168{bottom:945.693333pt;}
.y2_c00168{bottom:977.693333pt;}
.y1_c00168{bottom:979.600000pt;}
.h7_c00168{height:3.739141pt;}
.h8_c00168{height:12.988594pt;}
.h4_c00168{height:20.466875pt;}
.h1_c00168{height:22.303646pt;}
.h5_c00168{height:27.879557pt;}
.h2_c00168{height:31.618698pt;}
.h6_c00168{height:35.357839pt;}
.h3_c00168{height:39.031380pt;}
.h0_c00168{height:1186.666667pt;}
.w0_c00168{width:782.666667pt;}
.x0_c00168{left:0.000000pt;}
.xf_c00168{left:134.666667pt;}
.x50_c00168{left:136.373333pt;}
.x76_c00168{left:142.293333pt;}
.x3c_c00168{left:149.333333pt;}
.x3_c00168{left:150.293333pt;}
.x10_c00168{left:164.000000pt;}
.x51_c00168{left:165.706667pt;}
.x2a_c00168{left:172.000000pt;}
.x3d_c00168{left:173.333333pt;}
.x1f_c00168{left:174.293333pt;}
.x5f_c00168{left:180.000000pt;}
.xa7_c00168{left:181.333333pt;}
.x36_c00168{left:182.666667pt;}
.x11_c00168{left:185.333333pt;}
.x2b_c00168{left:187.040000pt;}
.x4_c00168{left:189.333333pt;}
.xce_c00168{left:192.000000pt;}
.xad_c00168{left:196.000000pt;}
.x47_c00168{left:197.706667pt;}
.x20_c00168{left:200.000000pt;}
.x52_c00168{left:201.706667pt;}
.xb6_c00168{left:202.666667pt;}
.x67_c00168{left:204.000000pt;}
.xa8_c00168{left:206.293333pt;}
.x81_c00168{left:208.960000pt;}
.x12_c00168{left:210.293333pt;}
.x6e_c00168{left:211.626667pt;}
.x92_c00168{left:213.706667pt;}
.x89_c00168{left:216.373333pt;}
.x60_c00168{left:218.666667pt;}
.x68_c00168{left:221.706667pt;}
.x74_c00168{left:224.000000pt;}
.x3e_c00168{left:225.333333pt;}
.x37_c00168{left:227.040000pt;}
.x6f_c00168{left:228.373333pt;}
.x7e_c00168{left:229.706667pt;}
.x21_c00168{left:230.666667pt;}
.xbb_c00168{left:232.373333pt;}
.x5_c00168{left:236.960000pt;}
.x2c_c00168{left:238.666667pt;}
.xa0_c00168{left:241.333333pt;}
.xb7_c00168{left:242.666667pt;}
.x9d_c00168{left:244.000000pt;}
.x13_c00168{left:244.960000pt;}
.x53_c00168{left:247.040000pt;}
.x8a_c00168{left:248.000000pt;}
.xc9_c00168{left:249.333333pt;}
.x38_c00168{left:250.666667pt;}
.x82_c00168{left:251.626667pt;}
.x93_c00168{left:253.333333pt;}
.x6_c00168{left:255.040000pt;}
.x48_c00168{left:256.373333pt;}
.xae_c00168{left:257.333333pt;}
.x3f_c00168{left:258.666667pt;}
.xcf_c00168{left:260.373333pt;}
.x14_c00168{left:263.040000pt;}
.x8b_c00168{left:264.373333pt;}
.xdc_c00168{left:271.626667pt;}
.x6a_c00168{left:273.906667pt;}
.x22_c00168{left:278.666667pt;}
.x83_c00168{left:280.373333pt;}
.x77_c00168{left:281.333333pt;}
.x7_c00168{left:282.666667pt;}
.x49_c00168{left:286.293333pt;}
.x15_c00168{left:288.000000pt;}
.xaf_c00168{left:289.706667pt;}
.xa1_c00168{left:290.666667pt;}
.x94_c00168{left:292.000000pt;}
.x9e_c00168{left:293.333333pt;}
.x5b_c00168{left:295.040000pt;}
.x39_c00168{left:296.960000pt;}
.xdd_c00168{left:300.000000pt;}
.xd3_c00168{left:301.333333pt;}
.x54_c00168{left:304.000000pt;}
.x69_c00168{left:304.960000pt;}
.x40_c00168{left:307.626667pt;}
.x95_c00168{left:309.333333pt;}
.x61_c00168{left:312.000000pt;}
.xd9_c00168{left:313.333333pt;}
.x4a_c00168{left:314.666667pt;}
.x78_c00168{left:316.373333pt;}
.x5c_c00168{left:318.666667pt;}
.x2d_c00168{left:319.626667pt;}
.x6b_c00168{left:321.333333pt;}
.x84_c00168{left:322.666667pt;}
.x16_c00168{left:324.000000pt;}
.x41_c00168{left:327.626667pt;}
.xca_c00168{left:329.706667pt;}
.x70_c00168{left:336.960000pt;}
.x2e_c00168{left:339.040000pt;}
.xda_c00168{left:340.373333pt;}
.xa2_c00168{left:341.333333pt;}
.x6c_c00168{left:344.960000pt;}
.xbc_c00168{left:348.000000pt;}
.x8_c00168{left:349.333333pt;}
.x1_c00168{left:354.666667pt;}
.x23_c00168{left:355.626667pt;}
.x7f_c00168{left:357.333333pt;}
.xa9_c00168{left:358.666667pt;}
.x17_c00168{left:359.626667pt;}
.x2f_c00168{left:364.960000pt;}
.x79_c00168{left:366.666667pt;}
.xde_c00168{left:368.373333pt;}
.xb8_c00168{left:372.000000pt;}
.x85_c00168{left:373.706667pt;}
.x9_c00168{left:374.666667pt;}
.x8c_c00168{left:375.626667pt;}
.x4b_c00168{left:377.706667pt;}
.x96_c00168{left:378.666667pt;}
.x24_c00168{left:381.333333pt;}
.x5d_c00168{left:383.040000pt;}
.x3a_c00168{left:387.626667pt;}
.x8d_c00168{left:392.373333pt;}
.xaa_c00168{left:394.293333pt;}
.x9f_c00168{left:396.000000pt;}
.xb0_c00168{left:397.706667pt;}
.x18_c00168{left:400.000000pt;}
.x4c_c00168{left:401.333333pt;}
.x55_c00168{left:402.666667pt;}
.x30_c00168{left:403.626667pt;}
.x7b_c00168{left:405.333333pt;}
.x3b_c00168{left:406.666667pt;}
.x6d_c00168{left:407.626667pt;}
.x62_c00168{left:410.293333pt;}
.xcb_c00168{left:413.706667pt;}
.xbe_c00168{left:414.666667pt;}
.xd0_c00168{left:415.626667pt;}
.xdf_c00168{left:419.040000pt;}
.xa3_c00168{left:420.373333pt;}
.x31_c00168{left:423.040000pt;}
.x56_c00168{left:424.000000pt;}
.xa_c00168{left:425.333333pt;}
.x97_c00168{left:426.666667pt;}
.x63_c00168{left:428.373333pt;}
.xab_c00168{left:434.293333pt;}
.x86_c00168{left:436.960000pt;}
.x42_c00168{left:438.666667pt;}
.x5e_c00168{left:441.706667pt;}
.x71_c00168{left:444.000000pt;}
.x57_c00168{left:446.666667pt;}
.x32_c00168{left:448.000000pt;}
.xa4_c00168{left:452.000000pt;}
.x25_c00168{left:453.333333pt;}
.x64_c00168{left:455.626667pt;}
.xc2_c00168{left:457.706667pt;}
.xb_c00168{left:458.666667pt;}
.x7c_c00168{left:460.000000pt;}
.xe0_c00168{left:462.293333pt;}
.xd6_c00168{left:464.000000pt;}
.x43_c00168{left:464.960000pt;}
.xbf_c00168{left:467.040000pt;}
.xcc_c00168{left:468.000000pt;}
.xd4_c00168{left:470.293333pt;}
.xc_c00168{left:473.706667pt;}
.x72_c00168{left:477.333333pt;}
.xe1_c00168{left:481.333333pt;}
.xc3_c00168{left:482.293333pt;}
.xac_c00168{left:483.626667pt;}
.x9b_c00168{left:484.960000pt;}
.xe3_c00168{left:486.666667pt;}
.x87_c00168{left:487.626667pt;}
.x19_c00168{left:489.333333pt;}
.xc0_c00168{left:492.000000pt;}
.x8e_c00168{left:495.040000pt;}
.x75_c00168{left:496.000000pt;}
.x58_c00168{left:496.960000pt;}
.xb9_c00168{left:498.293333pt;}
.xb2_c00168{left:501.706667pt;}
.xba_c00168{left:502.666667pt;}
.x26_c00168{left:504.000000pt;}
.x98_c00168{left:504.960000pt;}
.x1a_c00168{left:508.373333pt;}
.x44_c00168{left:513.333333pt;}
.x33_c00168{left:514.666667pt;}
.x65_c00168{left:519.626667pt;}
.xc4_c00168{left:521.333333pt;}
.xd_c00168{left:524.373333pt;}
.xdb_c00168{left:525.333333pt;}
.x8f_c00168{left:527.626667pt;}
.x4d_c00168{left:529.706667pt;}
.x99_c00168{left:532.000000pt;}
.x1b_c00168{left:533.333333pt;}
.xa5_c00168{left:535.040000pt;}
.x27_c00168{left:539.040000pt;}
.xc5_c00168{left:540.000000pt;}
.xc1_c00168{left:541.706667pt;}
.xd5_c00168{left:542.666667pt;}
.x9c_c00168{left:546.666667pt;}
.xd1_c00168{left:549.333333pt;}
.x45_c00168{left:550.293333pt;}
.xbd_c00168{left:553.333333pt;}
.xb3_c00168{left:555.040000pt;}
.x34_c00168{left:557.333333pt;}
.x73_c00168{left:558.293333pt;}
.xb1_c00168{left:564.373333pt;}
.x7d_c00168{left:567.040000pt;}
.x4e_c00168{left:569.333333pt;}
.xc6_c00168{left:570.666667pt;}
.x28_c00168{left:571.626667pt;}
.x88_c00168{left:576.000000pt;}
.xd7_c00168{left:577.333333pt;}
.x1c_c00168{left:580.000000pt;}
.xd2_c00168{left:582.666667pt;}
.x59_c00168{left:584.373333pt;}
.x90_c00168{left:585.333333pt;}
.xc7_c00168{left:589.706667pt;}
.xe2_c00168{left:592.373333pt;}
.xe4_c00168{left:596.000000pt;}
.x91_c00168{left:602.666667pt;}
.xe_c00168{left:604.000000pt;}
.x9a_c00168{left:605.333333pt;}
.x29_c00168{left:606.666667pt;}
.xd8_c00168{left:609.333333pt;}
.x1d_c00168{left:610.293333pt;}
.xb4_c00168{left:611.240000pt;}
.x4f_c00168{left:612.373333pt;}
.xcd_c00168{left:613.333333pt;}
.xc8_c00168{left:614.666667pt;}
.x35_c00168{left:620.373333pt;}
.xa6_c00168{left:623.040000pt;}
.x2_c00168{left:628.373333pt;}
.x1e_c00168{left:629.706667pt;}
.x66_c00168{left:630.666667pt;}
.x5a_c00168{left:633.333333pt;}
.xb5_c00168{left:636.000000pt;}
.x46_c00168{left:638.666667pt;}
.x80_c00168{left:641.333333pt;}
.x7a_c00168{left:642.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_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_60c609a4ae79a8237dea35e0.woff2')format("woff");}.ff1_c00169{font-family:ff1_c00169;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m65_c00169{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m12_c00169{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m6d_c00169{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m5a_c00169{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m73_c00169{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m9b_c00169{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m8e_c00169{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m66_c00169{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m39_c00169{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m3c_c00169{transform:matrix(0.379406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379406,0.000000,0.000000,0.250000,0,0);}
.m11_c00169{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m2c_c00169{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m1c_c00169{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m59_c00169{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mc0_c00169{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m3a_c00169{transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);}
.m60_c00169{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m9f_c00169{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.mb4_c00169{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m8f_c00169{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.mf4_c00169{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.maf_c00169{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m3f_c00169{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.md9_c00169{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m31_c00169{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m5e_c00169{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m84_c00169{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.mba_c00169{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m1d_c00169{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.md5_c00169{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m5b_c00169{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m42_c00169{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m19_c00169{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m21_c00169{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mca_c00169{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m4d_c00169{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mc4_c00169{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mc1_c00169{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m38_c00169{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.mf5_c00169{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.maa_c00169{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m3e_c00169{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.mb_c00169{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m20_c00169{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m92_c00169{transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);}
.m78_c00169{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.me5_c00169{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m52_c00169{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mf2_c00169{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m85_c00169{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mdf_c00169{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.mb8_c00169{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m2_c00169{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m55_c00169{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m9c_c00169{transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);}
.m5f_c00169{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m40_c00169{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m99_c00169{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.me7_c00169{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.m2a_c00169{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m45_c00169{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m51_c00169{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m94_c00169{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.md3_c00169{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m77_c00169{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.mf7_c00169{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.me_c00169{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m36_c00169{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.mb0_c00169{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.mbc_c00169{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.mdc_c00169{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m5d_c00169{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m91_c00169{transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);}
.m7d_c00169{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.mcb_c00169{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m33_c00169{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m32_c00169{transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);}
.m79_c00169{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m57_c00169{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m25_c00169{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.me1_c00169{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.mbd_c00169{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mf1_c00169{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.mf3_c00169{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.ma9_c00169{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.md4_c00169{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.mbb_c00169{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m16_c00169{transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);}
.mcf_c00169{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m62_c00169{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.md1_c00169{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m96_c00169{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.ma6_c00169{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mbe_c00169{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.m4a_c00169{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m3d_c00169{transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);}
.m7e_c00169{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m10_c00169{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.m30_c00169{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m6f_c00169{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m5c_c00169{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.mea_c00169{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.ma3_c00169{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m23_c00169{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m98_c00169{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.me6_c00169{transform:matrix(0.491651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491651,0.000000,0.000000,0.250000,0,0);}
.m37_c00169{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m46_c00169{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m83_c00169{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m4c_c00169{transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);}
.m7_c00169{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_c00169{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mc3_c00169{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.me2_c00169{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.me0_c00169{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.mc2_c00169{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m72_c00169{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m61_c00169{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m1_c00169{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.md7_c00169{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m58_c00169{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.mc7_c00169{transform:matrix(0.514842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514842,0.000000,0.000000,0.250000,0,0);}
.m43_c00169{transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);}
.mc5_c00169{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m1e_c00169{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m4e_c00169{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m7c_c00169{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m6c_c00169{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m80_c00169{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.me9_c00169{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mb5_c00169{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mf_c00169{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m44_c00169{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m71_c00169{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m15_c00169{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m1f_c00169{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m8_c00169{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.ma0_c00169{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m2f_c00169{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m87_c00169{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m6b_c00169{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m18_c00169{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m7a_c00169{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.md8_c00169{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mb2_c00169{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m56_c00169{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mf9_c00169{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m76_c00169{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m97_c00169{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.md_c00169{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m63_c00169{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m2b_c00169{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mb3_c00169{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m67_c00169{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.m47_c00169{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m14_c00169{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m88_c00169{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m95_c00169{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);}
.m82_c00169{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mc9_c00169{transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);}
.m74_c00169{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m9e_c00169{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m75_c00169{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.md2_c00169{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.mce_c00169{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m50_c00169{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m9_c00169{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.md6_c00169{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mde_c00169{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m68_c00169{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m8d_c00169{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m49_c00169{transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);}
.meb_c00169{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m54_c00169{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.me8_c00169{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m7b_c00169{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.m70_c00169{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.mf6_c00169{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.me3_c00169{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m93_c00169{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.m5_c00169{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m69_c00169{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m29_c00169{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mad_c00169{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m41_c00169{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m4b_c00169{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.mec_c00169{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m17_c00169{transform:matrix(0.574675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574675,0.000000,0.000000,0.250000,0,0);}
.mf0_c00169{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mee_c00169{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.md0_c00169{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m1a_c00169{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mdb_c00169{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.m13_c00169{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m3_c00169{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mb1_c00169{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mda_c00169{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.mf8_c00169{transform:matrix(0.597756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597756,0.000000,0.000000,0.250000,0,0);}
.mef_c00169{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);}
.ma_c00169{transform:matrix(0.601765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601765,0.000000,0.000000,0.250000,0,0);}
.mcc_c00169{transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);}
.m48_c00169{transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);}
.mae_c00169{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mbf_c00169{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m4_c00169{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m0_c00169{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.mc_c00169{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mab_c00169{transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);}
.m9a_c00169{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.m34_c00169{transform:matrix(0.618257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618257,0.000000,0.000000,0.250000,0,0);}
.m22_c00169{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.ma5_c00169{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m7f_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);}
.m3b_c00169{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m9d_c00169{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m35_c00169{transform:matrix(0.635373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635373,0.000000,0.000000,0.250000,0,0);}
.ma8_c00169{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.mac_c00169{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m1b_c00169{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m2e_c00169{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.mc6_c00169{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m86_c00169{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m2d_c00169{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m6e_c00169{transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);}
.m8a_c00169{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m89_c00169{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.ma1_c00169{transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);}
.mb9_c00169{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.mc8_c00169{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m24_c00169{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m8b_c00169{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m8c_c00169{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m64_c00169{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m81_c00169{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.med_c00169{transform:matrix(0.773237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.773237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.773237,0.000000,0.000000,0.250000,0,0);}
.m27_c00169{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.me4_c00169{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mcd_c00169{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m53_c00169{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mdd_c00169{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.mb7_c00169{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m28_c00169{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m90_c00169{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m26_c00169{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.ma2_c00169{transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);}
.ma7_c00169{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.mb6_c00169{transform:matrix(1.143382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.143382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.143382,0.000000,0.000000,0.250000,0,0);}
.ma4_c00169{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m4f_c00169{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m6a_c00169{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-5.330133px;}
.ws1_c00169{word-spacing:0.000000px;}
.fc0_c00169{color:transparent;}
.fs7_c00169{font-size:3.420000px;}
.fs6_c00169{font-size:11.880000px;}
.fs8_c00169{font-size:13.620000px;}
.fs5_c00169{font-size:18.720000px;}
.fs0_c00169{font-size:20.400000px;}
.fs1_c00169{font-size:25.500000px;}
.fs3_c00169{font-size:28.920000px;}
.fs4_c00169{font-size:32.340000px;}
.fs2_c00169{font-size:35.700000px;}
.y0_c00169{bottom:0.000000px;}
.yca_c00169{bottom:251.745000px;}
.yc9_c00169{bottom:252.825000px;}
.ycd_c00169{bottom:253.245000px;}
.ycb_c00169{bottom:253.905000px;}
.ycc_c00169{bottom:254.130000px;}
.yc3_c00169{bottom:271.245000px;}
.yc4_c00169{bottom:272.325000px;}
.yc6_c00169{bottom:272.745000px;}
.yc5_c00169{bottom:273.405000px;}
.yc8_c00169{bottom:273.630000px;}
.yc7_c00169{bottom:274.905000px;}
.ybe_c00169{bottom:290.745000px;}
.yc2_c00169{bottom:291.825000px;}
.ybd_c00169{bottom:292.905000px;}
.yc1_c00169{bottom:293.325000px;}
.ybf_c00169{bottom:293.970000px;}
.yc0_c00169{bottom:294.405000px;}
.ybc_c00169{bottom:310.470000px;}
.yb8_c00169{bottom:312.405000px;}
.yb9_c00169{bottom:312.630000px;}
.ybb_c00169{bottom:313.470000px;}
.yba_c00169{bottom:313.905000px;}
.yb7_c00169{bottom:331.470000px;}
.yb4_c00169{bottom:333.405000px;}
.yb5_c00169{bottom:333.630000px;}
.yb6_c00169{bottom:334.470000px;}
.yb1_c00169{bottom:349.905000px;}
.yaf_c00169{bottom:350.745000px;}
.yb3_c00169{bottom:351.825000px;}
.yae_c00169{bottom:352.905000px;}
.yb2_c00169{bottom:353.130000px;}
.yb0_c00169{bottom:354.405000px;}
.yad_c00169{bottom:371.325000px;}
.yaa_c00169{bottom:372.405000px;}
.yac_c00169{bottom:373.470000px;}
.yab_c00169{bottom:373.905000px;}
.ya9_c00169{bottom:389.745000px;}
.ya7_c00169{bottom:390.825000px;}
.ya5_c00169{bottom:391.245000px;}
.ya4_c00169{bottom:391.905000px;}
.ya8_c00169{bottom:392.130000px;}
.ya6_c00169{bottom:393.405000px;}
.ya2_c00169{bottom:409.245000px;}
.ya0_c00169{bottom:410.745000px;}
.ya3_c00169{bottom:411.630000px;}
.y9e_c00169{bottom:411.825000px;}
.ya1_c00169{bottom:412.905000px;}
.y9f_c00169{bottom:413.130000px;}
.y9c_c00169{bottom:429.825000px;}
.y9d_c00169{bottom:431.325000px;}
.y98_c00169{bottom:431.970000px;}
.y9a_c00169{bottom:432.405000px;}
.y99_c00169{bottom:432.630000px;}
.y9b_c00169{bottom:433.470000px;}
.y97_c00169{bottom:448.245000px;}
.y96_c00169{bottom:449.745000px;}
.y94_c00169{bottom:450.825000px;}
.y92_c00169{bottom:451.905000px;}
.y95_c00169{bottom:452.130000px;}
.y93_c00169{bottom:452.970000px;}
.y8f_c00169{bottom:468.825000px;}
.y91_c00169{bottom:469.245000px;}
.y90_c00169{bottom:470.325000px;}
.y8d_c00169{bottom:471.405000px;}
.y8e_c00169{bottom:472.905000px;}
.y8c_c00169{bottom:488.745000px;}
.y88_c00169{bottom:490.245000px;}
.y87_c00169{bottom:490.470000px;}
.y8a_c00169{bottom:490.905000px;}
.y89_c00169{bottom:491.325000px;}
.y8b_c00169{bottom:491.970000px;}
.y85_c00169{bottom:508.245000px;}
.y80_c00169{bottom:509.745000px;}
.y86_c00169{bottom:510.405000px;}
.y81_c00169{bottom:510.630000px;}
.y84_c00169{bottom:510.825000px;}
.y83_c00169{bottom:511.905000px;}
.y82_c00169{bottom:512.970000px;}
.y7f_c00169{bottom:528.405000px;}
.y7d_c00169{bottom:529.050000px;}
.y7a_c00169{bottom:529.245000px;}
.y7c_c00169{bottom:529.905000px;}
.y7e_c00169{bottom:530.130000px;}
.y7b_c00169{bottom:531.405000px;}
.y76_c00169{bottom:546.405000px;}
.y77_c00169{bottom:547.470000px;}
.y73_c00169{bottom:548.745000px;}
.y79_c00169{bottom:549.405000px;}
.y78_c00169{bottom:549.630000px;}
.y75_c00169{bottom:550.470000px;}
.y74_c00169{bottom:550.920000px;}
.y70_c00169{bottom:578.325000px;}
.y72_c00169{bottom:578.970000px;}
.y71_c00169{bottom:579.405000px;}
.y6e_c00169{bottom:580.470000px;}
.y6d_c00169{bottom:580.695000px;}
.y6f_c00169{bottom:581.550000px;}
.y69_c00169{bottom:592.470000px;}
.y6b_c00169{bottom:593.325000px;}
.y68_c00169{bottom:594.405000px;}
.y6c_c00169{bottom:595.470000px;}
.y6a_c00169{bottom:596.550000px;}
.y65_c00169{bottom:608.325000px;}
.y67_c00169{bottom:609.405000px;}
.y66_c00169{bottom:610.470000px;}
.y64_c00169{bottom:610.695000px;}
.y62_c00169{bottom:637.245000px;}
.y63_c00169{bottom:639.405000px;}
.y61_c00169{bottom:657.630000px;}
.y5f_c00169{bottom:658.905000px;}
.y60_c00169{bottom:659.970000px;}
.y5d_c00169{bottom:675.825000px;}
.y5e_c00169{bottom:676.245000px;}
.y5a_c00169{bottom:677.130000px;}
.y5c_c00169{bottom:677.970000px;}
.y5b_c00169{bottom:678.405000px;}
.y59_c00169{bottom:695.745000px;}
.y57_c00169{bottom:696.825000px;}
.y58_c00169{bottom:697.050000px;}
.y56_c00169{bottom:697.245000px;}
.y54_c00169{bottom:697.905000px;}
.y53_c00169{bottom:698.970000px;}
.y55_c00169{bottom:699.420000px;}
.y50_c00169{bottom:716.325000px;}
.y4e_c00169{bottom:716.970000px;}
.y4f_c00169{bottom:717.405000px;}
.y51_c00169{bottom:717.825000px;}
.y52_c00169{bottom:718.905000px;}
.y4d_c00169{bottom:736.245000px;}
.y4a_c00169{bottom:736.905000px;}
.y4b_c00169{bottom:737.970000px;}
.y4c_c00169{bottom:738.405000px;}
.y45_c00169{bottom:753.405000px;}
.y46_c00169{bottom:755.745000px;}
.y49_c00169{bottom:756.405000px;}
.y48_c00169{bottom:756.825000px;}
.y43_c00169{bottom:757.905000px;}
.y44_c00169{bottom:757.920000px;}
.y47_c00169{bottom:758.970000px;}
.y42_c00169{bottom:775.245000px;}
.y41_c00169{bottom:776.130000px;}
.y40_c00169{bottom:777.405000px;}
.y3e_c00169{bottom:793.905000px;}
.y3b_c00169{bottom:794.745000px;}
.y3d_c00169{bottom:795.825000px;}
.y3f_c00169{bottom:796.905000px;}
.y3c_c00169{bottom:796.920000px;}
.y38_c00169{bottom:814.245000px;}
.y3a_c00169{bottom:815.325000px;}
.y37_c00169{bottom:816.405000px;}
.y39_c00169{bottom:817.470000px;}
.y32_c00169{bottom:833.745000px;}
.y35_c00169{bottom:835.245000px;}
.y33_c00169{bottom:835.905000px;}
.y36_c00169{bottom:836.130000px;}
.y34_c00169{bottom:837.420000px;}
.y31_c00169{bottom:860.970000px;}
.y2f_c00169{bottom:861.405000px;}
.y30_c00169{bottom:863.550000px;}
.y2d_c00169{bottom:875.325000px;}
.y2c_c00169{bottom:876.405000px;}
.y2b_c00169{bottom:877.470000px;}
.y2e_c00169{bottom:878.550000px;}
.y25_c00169{bottom:894.825000px;}
.y2a_c00169{bottom:895.050000px;}
.y28_c00169{bottom:895.470000px;}
.y26_c00169{bottom:895.905000px;}
.y27_c00169{bottom:896.325000px;}
.y29_c00169{bottom:898.050000px;}
.y24_c00169{bottom:923.325000px;}
.y23_c00169{bottom:924.405000px;}
.y22_c00169{bottom:960.405000px;}
.y1f_c00169{bottom:961.245000px;}
.y21_c00169{bottom:961.470000px;}
.y20_c00169{bottom:962.325000px;}
.y1e_c00169{bottom:963.405000px;}
.y1d_c00169{bottom:964.470000px;}
.y1b_c00169{bottom:980.970000px;}
.y1a_c00169{bottom:981.405000px;}
.y17_c00169{bottom:982.245000px;}
.y1c_c00169{bottom:982.905000px;}
.y19_c00169{bottom:983.970000px;}
.y18_c00169{bottom:984.405000px;}
.y15_c00169{bottom:998.775000px;}
.ye_c00169{bottom:999.405000px;}
.y11_c00169{bottom:1000.470000px;}
.y16_c00169{bottom:1000.905000px;}
.y10_c00169{bottom:1001.745000px;}
.y13_c00169{bottom:1002.630000px;}
.y12_c00169{bottom:1002.825000px;}
.yf_c00169{bottom:1003.905000px;}
.y14_c00169{bottom:1007.130000px;}
.ya_c00169{bottom:1018.905000px;}
.yb_c00169{bottom:1021.245000px;}
.yc_c00169{bottom:1022.325000px;}
.yd_c00169{bottom:1022.970000px;}
.y9_c00169{bottom:1023.405000px;}
.y8_c00169{bottom:1039.470000px;}
.y6_c00169{bottom:1040.745000px;}
.y7_c00169{bottom:1042.905000px;}
.y3_c00169{bottom:1060.245000px;}
.y5_c00169{bottom:1062.405000px;}
.y4_c00169{bottom:1063.470000px;}
.y2_c00169{bottom:1099.470000px;}
.y1_c00169{bottom:1100.550000px;}
.h8_c00169{height:4.206533px;}
.h7_c00169{height:14.612168px;}
.h9_c00169{height:16.752334px;}
.h6_c00169{height:23.025234px;}
.h1_c00169{height:25.091602px;}
.h2_c00169{height:31.364502px;}
.h4_c00169{height:35.571035px;}
.h5_c00169{height:39.777568px;}
.h3_c00169{height:43.910303px;}
.h0_c00169{height:1335.000000px;}
.w0_c00169{width:880.500000px;}
.x0_c00169{left:0.000000px;}
.x5d_c00169{left:150.645000px;}
.x2_c00169{left:151.920000px;}
.x15_c00169{left:158.580000px;}
.xa2_c00169{left:165.000000px;}
.x4f_c00169{left:166.500000px;}
.x85_c00169{left:168.000000px;}
.x7f_c00169{left:171.420000px;}
.xf3_c00169{left:175.500000px;}
.xc6_c00169{left:181.500000px;}
.x3_c00169{left:183.000000px;}
.x8b_c00169{left:189.420000px;}
.xc2_c00169{left:193.500000px;}
.x78_c00169{left:195.000000px;}
.x55_c00169{left:198.855000px;}
.x80_c00169{left:199.920000px;}
.xbc_c00169{left:204.000000px;}
.x9d_c00169{left:205.500000px;}
.x57_c00169{left:207.000000px;}
.xfa_c00169{left:208.500000px;}
.x3b_c00169{left:210.000000px;}
.xe1_c00169{left:213.000000px;}
.x79_c00169{left:214.500000px;}
.x45_c00169{left:216.000000px;}
.x9e_c00169{left:217.500000px;}
.x92_c00169{left:223.080000px;}
.xc9_c00169{left:224.355000px;}
.x16_c00169{left:226.500000px;}
.x5e_c00169{left:228.000000px;}
.x50_c00169{left:232.080000px;}
.x56_c00169{left:234.000000px;}
.x4_c00169{left:235.080000px;}
.xbd_c00169{left:237.420000px;}
.x46_c00169{left:241.080000px;}
.xa3_c00169{left:246.000000px;}
.x6a_c00169{left:247.500000px;}
.xc3_c00169{left:249.000000px;}
.x5f_c00169{left:250.080000px;}
.x5_c00169{left:252.000000px;}
.x2f_c00169{left:253.920000px;}
.x22_c00169{left:255.420000px;}
.x66_c00169{left:258.000000px;}
.x6e_c00169{left:259.500000px;}
.xe4_c00169{left:261.000000px;}
.xfb_c00169{left:262.080000px;}
.x81_c00169{left:264.000000px;}
.x42_c00169{left:265.500000px;}
.x8c_c00169{left:266.580000px;}
.x9f_c00169{left:268.080000px;}
.xd0_c00169{left:270.420000px;}
.x17_c00169{left:271.500000px;}
.xea_c00169{left:273.000000px;}
.x58_c00169{left:274.500000px;}
.x6_c00169{left:277.920000px;}
.x67_c00169{left:279.000000px;}
.x6f_c00169{left:280.500000px;}
.xd4_c00169{left:282.420000px;}
.xbe_c00169{left:285.000000px;}
.xca_c00169{left:286.500000px;}
.x47_c00169{left:288.000000px;}
.xc7_c00169{left:289.920000px;}
.xf7_c00169{left:291.000000px;}
.x23_c00169{left:294.000000px;}
.xb4_c00169{left:295.500000px;}
.x59_c00169{left:297.000000px;}
.x3c_c00169{left:300.000000px;}
.xa0_c00169{left:301.920000px;}
.x7a_c00169{left:303.000000px;}
.xcb_c00169{left:308.580000px;}
.x60_c00169{left:310.080000px;}
.x30_c00169{left:312.420000px;}
.x70_c00169{left:313.500000px;}
.x48_c00169{left:316.080000px;}
.x6b_c00169{left:320.580000px;}
.xbf_c00169{left:322.920000px;}
.x18_c00169{left:324.420000px;}
.xdd_c00169{left:326.580000px;}
.x5a_c00169{left:327.645000px;}
.xa4_c00169{left:330.000000px;}
.x7_c00169{left:331.500000px;}
.xb5_c00169{left:333.420000px;}
.x24_c00169{left:334.500000px;}
.xe5_c00169{left:336.420000px;}
.x86_c00169{left:337.500000px;}
.xf4_c00169{left:340.920000px;}
.x68_c00169{left:343.275000px;}
.x6c_c00169{left:348.000000px;}
.xac_c00169{left:351.000000px;}
.x43_c00169{left:352.080000px;}
.x9b_c00169{left:354.000000px;}
.x61_c00169{left:357.000000px;}
.x87_c00169{left:358.500000px;}
.xb6_c00169{left:364.500000px;}
.xf5_c00169{left:367.500000px;}
.x31_c00169{left:369.420000px;}
.x93_c00169{left:370.500000px;}
.x49_c00169{left:372.420000px;}
.xa5_c00169{left:373.500000px;}
.x19_c00169{left:375.000000px;}
.x3d_c00169{left:376.500000px;}
.xd1_c00169{left:380.580000px;}
.x62_c00169{left:382.500000px;}
.x8_c00169{left:383.580000px;}
.xd8_c00169{left:385.500000px;}
.x94_c00169{left:387.000000px;}
.x88_c00169{left:388.080000px;}
.x25_c00169{left:390.420000px;}
.x51_c00169{left:391.500000px;}
.x3e_c00169{left:393.420000px;}
.x8d_c00169{left:395.580000px;}
.x1_c00169{left:397.500000px;}
.x9_c00169{left:400.920000px;}
.x63_c00169{left:402.000000px;}
.x71_c00169{left:405.000000px;}
.x32_c00169{left:406.500000px;}
.xe2_c00169{left:409.500000px;}
.x69_c00169{left:411.000000px;}
.x82_c00169{left:416.580000px;}
.xa1_c00169{left:418.080000px;}
.x1a_c00169{left:421.500000px;}
.xa6_c00169{left:423.000000px;}
.x95_c00169{left:424.500000px;}
.xa_c00169{left:426.000000px;}
.xb7_c00169{left:427.920000px;}
.xeb_c00169{left:430.920000px;}
.xd9_c00169{left:433.500000px;}
.xe6_c00169{left:434.580000px;}
.x26_c00169{left:436.080000px;}
.x33_c00169{left:438.000000px;}
.x6d_c00169{left:442.080000px;}
.x8e_c00169{left:445.920000px;}
.x7b_c00169{left:447.000000px;}
.xda_c00169{left:450.000000px;}
.x27_c00169{left:453.000000px;}
.x34_c00169{left:456.000000px;}
.x72_c00169{left:458.580000px;}
.x4a_c00169{left:460.500000px;}
.x7c_c00169{left:463.080000px;}
.x1b_c00169{left:465.420000px;}
.x5b_c00169{left:469.500000px;}
.xad_c00169{left:471.000000px;}
.x64_c00169{left:472.080000px;}
.x9a_c00169{left:475.500000px;}
.xd5_c00169{left:477.000000px;}
.xec_c00169{left:478.080000px;}
.x8f_c00169{left:481.500000px;}
.xc4_c00169{left:483.000000px;}
.xde_c00169{left:486.000000px;}
.x4b_c00169{left:487.080000px;}
.x35_c00169{left:489.000000px;}
.xa7_c00169{left:490.080000px;}
.x52_c00169{left:494.580000px;}
.x28_c00169{left:496.500000px;}
.xa8_c00169{left:499.500000px;}
.x10_c00169{left:502.500000px;}
.xf6_c00169{left:504.000000px;}
.xdb_c00169{left:505.500000px;}
.xf8_c00169{left:507.000000px;}
.xae_c00169{left:508.080000px;}
.x1c_c00169{left:510.420000px;}
.x7d_c00169{left:513.420000px;}
.xb_c00169{left:514.500000px;}
.xe7_c00169{left:516.000000px;}
.x73_c00169{left:517.500000px;}
.x96_c00169{left:519.420000px;}
.xb8_c00169{left:523.080000px;}
.xed_c00169{left:525.000000px;}
.x36_c00169{left:526.920000px;}
.xdf_c00169{left:534.000000px;}
.x83_c00169{left:535.080000px;}
.x89_c00169{left:538.500000px;}
.xaf_c00169{left:543.000000px;}
.xa9_c00169{left:544.500000px;}
.xe8_c00169{left:547.500000px;}
.x1d_c00169{left:549.420000px;}
.x65_c00169{left:551.580000px;}
.x37_c00169{left:553.080000px;}
.x3f_c00169{left:554.580000px;}
.x74_c00169{left:556.500000px;}
.xd2_c00169{left:558.420000px;}
.xc0_c00169{left:559.500000px;}
.xcc_c00169{left:561.420000px;}
.x11_c00169{left:564.000000px;}
.x97_c00169{left:565.500000px;}
.x84_c00169{left:567.000000px;}
.xb9_c00169{left:570.000000px;}
.x4c_c00169{left:571.920000px;}
.x29_c00169{left:573.420000px;}
.xee_c00169{left:574.500000px;}
.x1e_c00169{left:575.580000px;}
.xaa_c00169{left:580.080000px;}
.x44_c00169{left:583.920000px;}
.x98_c00169{left:585.645000px;}
.xd6_c00169{left:587.580000px;}
.x9c_c00169{left:588.645000px;}
.xcd_c00169{left:589.920000px;}
.xc_c00169{left:591.420000px;}
.xef_c00169{left:594.420000px;}
.xb0_c00169{left:595.500000px;}
.x38_c00169{left:597.000000px;}
.x2a_c00169{left:598.500000px;}
.x2b_c00169{left:604.080000px;}
.xf9_c00169{left:605.580000px;}
.x75_c00169{left:608.580000px;}
.xdc_c00169{left:610.080000px;}
.x2c_c00169{left:612.000000px;}
.x53_c00169{left:615.000000px;}
.x1f_c00169{left:619.080000px;}
.xf0_c00169{left:620.580000px;}
.x12_c00169{left:622.500000px;}
.xe0_c00169{left:624.420000px;}
.xd3_c00169{left:627.000000px;}
.x7e_c00169{left:628.080000px;}
.x90_c00169{left:630.000000px;}
.xe3_c00169{left:633.000000px;}
.xb1_c00169{left:634.500000px;}
.x40_c00169{left:637.920000px;}
.xd_c00169{left:642.000000px;}
.x8a_c00169{left:646.500000px;}
.xd7_c00169{left:648.000000px;}
.x20_c00169{left:649.500000px;}
.xce_c00169{left:654.000000px;}
.xe9_c00169{left:655.080000px;}
.xf1_c00169{left:656.580000px;}
.xba_c00169{left:658.080000px;}
.xe_c00169{left:660.000000px;}
.x39_c00169{left:661.500000px;}
.x54_c00169{left:663.000000px;}
.x76_c00169{left:664.080000px;}
.xab_c00169{left:666.420000px;}
.x4d_c00169{left:669.420000px;}
.xb2_c00169{left:670.500000px;}
.x5c_c00169{left:672.420000px;}
.xf2_c00169{left:675.420000px;}
.x99_c00169{left:678.000000px;}
.xf_c00169{left:681.000000px;}
.x2d_c00169{left:683.580000px;}
.x13_c00169{left:685.080000px;}
.x41_c00169{left:686.580000px;}
.xc8_c00169{left:688.500000px;}
.xc5_c00169{left:689.580000px;}
.x4e_c00169{left:691.080000px;}
.x21_c00169{left:693.420000px;}
.x77_c00169{left:695.145000px;}
.x91_c00169{left:696.420000px;}
.x2e_c00169{left:697.500000px;}
.xb3_c00169{left:702.000000px;}
.xbb_c00169{left:703.500000px;}
.x14_c00169{left:704.775000px;}
.xc1_c00169{left:706.920000px;}
.xcf_c00169{left:708.420000px;}
.x3a_c00169{left:713.580000px;}
@media print{
.v0_c00169{vertical-align:0.000000pt;}
.ls0_c00169{letter-spacing:0.000000pt;}
.ws0_c00169{word-spacing:-4.737896pt;}
.ws1_c00169{word-spacing:0.000000pt;}
.fs7_c00169{font-size:3.040000pt;}
.fs6_c00169{font-size:10.560000pt;}
.fs8_c00169{font-size:12.106667pt;}
.fs5_c00169{font-size:16.640000pt;}
.fs0_c00169{font-size:18.133333pt;}
.fs1_c00169{font-size:22.666667pt;}
.fs3_c00169{font-size:25.706667pt;}
.fs4_c00169{font-size:28.746667pt;}
.fs2_c00169{font-size:31.733333pt;}
.y0_c00169{bottom:0.000000pt;}
.yca_c00169{bottom:223.773333pt;}
.yc9_c00169{bottom:224.733333pt;}
.ycd_c00169{bottom:225.106667pt;}
.ycb_c00169{bottom:225.693333pt;}
.ycc_c00169{bottom:225.893333pt;}
.yc3_c00169{bottom:241.106667pt;}
.yc4_c00169{bottom:242.066667pt;}
.yc6_c00169{bottom:242.440000pt;}
.yc5_c00169{bottom:243.026667pt;}
.yc8_c00169{bottom:243.226667pt;}
.yc7_c00169{bottom:244.360000pt;}
.ybe_c00169{bottom:258.440000pt;}
.yc2_c00169{bottom:259.400000pt;}
.ybd_c00169{bottom:260.360000pt;}
.yc1_c00169{bottom:260.733333pt;}
.ybf_c00169{bottom:261.306667pt;}
.yc0_c00169{bottom:261.693333pt;}
.ybc_c00169{bottom:275.973333pt;}
.yb8_c00169{bottom:277.693333pt;}
.yb9_c00169{bottom:277.893333pt;}
.ybb_c00169{bottom:278.640000pt;}
.yba_c00169{bottom:279.026667pt;}
.yb7_c00169{bottom:294.640000pt;}
.yb4_c00169{bottom:296.360000pt;}
.yb5_c00169{bottom:296.560000pt;}
.yb6_c00169{bottom:297.306667pt;}
.yb1_c00169{bottom:311.026667pt;}
.yaf_c00169{bottom:311.773333pt;}
.yb3_c00169{bottom:312.733333pt;}
.yae_c00169{bottom:313.693333pt;}
.yb2_c00169{bottom:313.893333pt;}
.yb0_c00169{bottom:315.026667pt;}
.yad_c00169{bottom:330.066667pt;}
.yaa_c00169{bottom:331.026667pt;}
.yac_c00169{bottom:331.973333pt;}
.yab_c00169{bottom:332.360000pt;}
.ya9_c00169{bottom:346.440000pt;}
.ya7_c00169{bottom:347.400000pt;}
.ya5_c00169{bottom:347.773333pt;}
.ya4_c00169{bottom:348.360000pt;}
.ya8_c00169{bottom:348.560000pt;}
.ya6_c00169{bottom:349.693333pt;}
.ya2_c00169{bottom:363.773333pt;}
.ya0_c00169{bottom:365.106667pt;}
.ya3_c00169{bottom:365.893333pt;}
.y9e_c00169{bottom:366.066667pt;}
.ya1_c00169{bottom:367.026667pt;}
.y9f_c00169{bottom:367.226667pt;}
.y9c_c00169{bottom:382.066667pt;}
.y9d_c00169{bottom:383.400000pt;}
.y98_c00169{bottom:383.973333pt;}
.y9a_c00169{bottom:384.360000pt;}
.y99_c00169{bottom:384.560000pt;}
.y9b_c00169{bottom:385.306667pt;}
.y97_c00169{bottom:398.440000pt;}
.y96_c00169{bottom:399.773333pt;}
.y94_c00169{bottom:400.733333pt;}
.y92_c00169{bottom:401.693333pt;}
.y95_c00169{bottom:401.893333pt;}
.y93_c00169{bottom:402.640000pt;}
.y8f_c00169{bottom:416.733333pt;}
.y91_c00169{bottom:417.106667pt;}
.y90_c00169{bottom:418.066667pt;}
.y8d_c00169{bottom:419.026667pt;}
.y8e_c00169{bottom:420.360000pt;}
.y8c_c00169{bottom:434.440000pt;}
.y88_c00169{bottom:435.773333pt;}
.y87_c00169{bottom:435.973333pt;}
.y8a_c00169{bottom:436.360000pt;}
.y89_c00169{bottom:436.733333pt;}
.y8b_c00169{bottom:437.306667pt;}
.y85_c00169{bottom:451.773333pt;}
.y80_c00169{bottom:453.106667pt;}
.y86_c00169{bottom:453.693333pt;}
.y81_c00169{bottom:453.893333pt;}
.y84_c00169{bottom:454.066667pt;}
.y83_c00169{bottom:455.026667pt;}
.y82_c00169{bottom:455.973333pt;}
.y7f_c00169{bottom:469.693333pt;}
.y7d_c00169{bottom:470.266667pt;}
.y7a_c00169{bottom:470.440000pt;}
.y7c_c00169{bottom:471.026667pt;}
.y7e_c00169{bottom:471.226667pt;}
.y7b_c00169{bottom:472.360000pt;}
.y76_c00169{bottom:485.693333pt;}
.y77_c00169{bottom:486.640000pt;}
.y73_c00169{bottom:487.773333pt;}
.y79_c00169{bottom:488.360000pt;}
.y78_c00169{bottom:488.560000pt;}
.y75_c00169{bottom:489.306667pt;}
.y74_c00169{bottom:489.706667pt;}
.y70_c00169{bottom:514.066667pt;}
.y72_c00169{bottom:514.640000pt;}
.y71_c00169{bottom:515.026667pt;}
.y6e_c00169{bottom:515.973333pt;}
.y6d_c00169{bottom:516.173333pt;}
.y6f_c00169{bottom:516.933333pt;}
.y69_c00169{bottom:526.640000pt;}
.y6b_c00169{bottom:527.400000pt;}
.y68_c00169{bottom:528.360000pt;}
.y6c_c00169{bottom:529.306667pt;}
.y6a_c00169{bottom:530.266667pt;}
.y65_c00169{bottom:540.733333pt;}
.y67_c00169{bottom:541.693333pt;}
.y66_c00169{bottom:542.640000pt;}
.y64_c00169{bottom:542.840000pt;}
.y62_c00169{bottom:566.440000pt;}
.y63_c00169{bottom:568.360000pt;}
.y61_c00169{bottom:584.560000pt;}
.y5f_c00169{bottom:585.693333pt;}
.y60_c00169{bottom:586.640000pt;}
.y5d_c00169{bottom:600.733333pt;}
.y5e_c00169{bottom:601.106667pt;}
.y5a_c00169{bottom:601.893333pt;}
.y5c_c00169{bottom:602.640000pt;}
.y5b_c00169{bottom:603.026667pt;}
.y59_c00169{bottom:618.440000pt;}
.y57_c00169{bottom:619.400000pt;}
.y58_c00169{bottom:619.600000pt;}
.y56_c00169{bottom:619.773333pt;}
.y54_c00169{bottom:620.360000pt;}
.y53_c00169{bottom:621.306667pt;}
.y55_c00169{bottom:621.706667pt;}
.y50_c00169{bottom:636.733333pt;}
.y4e_c00169{bottom:637.306667pt;}
.y4f_c00169{bottom:637.693333pt;}
.y51_c00169{bottom:638.066667pt;}
.y52_c00169{bottom:639.026667pt;}
.y4d_c00169{bottom:654.440000pt;}
.y4a_c00169{bottom:655.026667pt;}
.y4b_c00169{bottom:655.973333pt;}
.y4c_c00169{bottom:656.360000pt;}
.y45_c00169{bottom:669.693333pt;}
.y46_c00169{bottom:671.773333pt;}
.y49_c00169{bottom:672.360000pt;}
.y48_c00169{bottom:672.733333pt;}
.y43_c00169{bottom:673.693333pt;}
.y44_c00169{bottom:673.706667pt;}
.y47_c00169{bottom:674.640000pt;}
.y42_c00169{bottom:689.106667pt;}
.y41_c00169{bottom:689.893333pt;}
.y40_c00169{bottom:691.026667pt;}
.y3e_c00169{bottom:705.693333pt;}
.y3b_c00169{bottom:706.440000pt;}
.y3d_c00169{bottom:707.400000pt;}
.y3f_c00169{bottom:708.360000pt;}
.y3c_c00169{bottom:708.373333pt;}
.y38_c00169{bottom:723.773333pt;}
.y3a_c00169{bottom:724.733333pt;}
.y37_c00169{bottom:725.693333pt;}
.y39_c00169{bottom:726.640000pt;}
.y32_c00169{bottom:741.106667pt;}
.y35_c00169{bottom:742.440000pt;}
.y33_c00169{bottom:743.026667pt;}
.y36_c00169{bottom:743.226667pt;}
.y34_c00169{bottom:744.373333pt;}
.y31_c00169{bottom:765.306667pt;}
.y2f_c00169{bottom:765.693333pt;}
.y30_c00169{bottom:767.600000pt;}
.y2d_c00169{bottom:778.066667pt;}
.y2c_c00169{bottom:779.026667pt;}
.y2b_c00169{bottom:779.973333pt;}
.y2e_c00169{bottom:780.933333pt;}
.y25_c00169{bottom:795.400000pt;}
.y2a_c00169{bottom:795.600000pt;}
.y28_c00169{bottom:795.973333pt;}
.y26_c00169{bottom:796.360000pt;}
.y27_c00169{bottom:796.733333pt;}
.y29_c00169{bottom:798.266667pt;}
.y24_c00169{bottom:820.733333pt;}
.y23_c00169{bottom:821.693333pt;}
.y22_c00169{bottom:853.693333pt;}
.y1f_c00169{bottom:854.440000pt;}
.y21_c00169{bottom:854.640000pt;}
.y20_c00169{bottom:855.400000pt;}
.y1e_c00169{bottom:856.360000pt;}
.y1d_c00169{bottom:857.306667pt;}
.y1b_c00169{bottom:871.973333pt;}
.y1a_c00169{bottom:872.360000pt;}
.y17_c00169{bottom:873.106667pt;}
.y1c_c00169{bottom:873.693333pt;}
.y19_c00169{bottom:874.640000pt;}
.y18_c00169{bottom:875.026667pt;}
.y15_c00169{bottom:887.800000pt;}
.ye_c00169{bottom:888.360000pt;}
.y11_c00169{bottom:889.306667pt;}
.y16_c00169{bottom:889.693333pt;}
.y10_c00169{bottom:890.440000pt;}
.y13_c00169{bottom:891.226667pt;}
.y12_c00169{bottom:891.400000pt;}
.yf_c00169{bottom:892.360000pt;}
.y14_c00169{bottom:895.226667pt;}
.ya_c00169{bottom:905.693333pt;}
.yb_c00169{bottom:907.773333pt;}
.yc_c00169{bottom:908.733333pt;}
.yd_c00169{bottom:909.306667pt;}
.y9_c00169{bottom:909.693333pt;}
.y8_c00169{bottom:923.973333pt;}
.y6_c00169{bottom:925.106667pt;}
.y7_c00169{bottom:927.026667pt;}
.y3_c00169{bottom:942.440000pt;}
.y5_c00169{bottom:944.360000pt;}
.y4_c00169{bottom:945.306667pt;}
.y2_c00169{bottom:977.306667pt;}
.y1_c00169{bottom:978.266667pt;}
.h8_c00169{height:3.739141pt;}
.h7_c00169{height:12.988594pt;}
.h9_c00169{height:14.890964pt;}
.h6_c00169{height:20.466875pt;}
.h1_c00169{height:22.303646pt;}
.h2_c00169{height:27.879557pt;}
.h4_c00169{height:31.618698pt;}
.h5_c00169{height:35.357839pt;}
.h3_c00169{height:39.031380pt;}
.h0_c00169{height:1186.666667pt;}
.w0_c00169{width:782.666667pt;}
.x0_c00169{left:0.000000pt;}
.x5d_c00169{left:133.906667pt;}
.x2_c00169{left:135.040000pt;}
.x15_c00169{left:140.960000pt;}
.xa2_c00169{left:146.666667pt;}
.x4f_c00169{left:148.000000pt;}
.x85_c00169{left:149.333333pt;}
.x7f_c00169{left:152.373333pt;}
.xf3_c00169{left:156.000000pt;}
.xc6_c00169{left:161.333333pt;}
.x3_c00169{left:162.666667pt;}
.x8b_c00169{left:168.373333pt;}
.xc2_c00169{left:172.000000pt;}
.x78_c00169{left:173.333333pt;}
.x55_c00169{left:176.760000pt;}
.x80_c00169{left:177.706667pt;}
.xbc_c00169{left:181.333333pt;}
.x9d_c00169{left:182.666667pt;}
.x57_c00169{left:184.000000pt;}
.xfa_c00169{left:185.333333pt;}
.x3b_c00169{left:186.666667pt;}
.xe1_c00169{left:189.333333pt;}
.x79_c00169{left:190.666667pt;}
.x45_c00169{left:192.000000pt;}
.x9e_c00169{left:193.333333pt;}
.x92_c00169{left:198.293333pt;}
.xc9_c00169{left:199.426667pt;}
.x16_c00169{left:201.333333pt;}
.x5e_c00169{left:202.666667pt;}
.x50_c00169{left:206.293333pt;}
.x56_c00169{left:208.000000pt;}
.x4_c00169{left:208.960000pt;}
.xbd_c00169{left:211.040000pt;}
.x46_c00169{left:214.293333pt;}
.xa3_c00169{left:218.666667pt;}
.x6a_c00169{left:220.000000pt;}
.xc3_c00169{left:221.333333pt;}
.x5f_c00169{left:222.293333pt;}
.x5_c00169{left:224.000000pt;}
.x2f_c00169{left:225.706667pt;}
.x22_c00169{left:227.040000pt;}
.x66_c00169{left:229.333333pt;}
.x6e_c00169{left:230.666667pt;}
.xe4_c00169{left:232.000000pt;}
.xfb_c00169{left:232.960000pt;}
.x81_c00169{left:234.666667pt;}
.x42_c00169{left:236.000000pt;}
.x8c_c00169{left:236.960000pt;}
.x9f_c00169{left:238.293333pt;}
.xd0_c00169{left:240.373333pt;}
.x17_c00169{left:241.333333pt;}
.xea_c00169{left:242.666667pt;}
.x58_c00169{left:244.000000pt;}
.x6_c00169{left:247.040000pt;}
.x67_c00169{left:248.000000pt;}
.x6f_c00169{left:249.333333pt;}
.xd4_c00169{left:251.040000pt;}
.xbe_c00169{left:253.333333pt;}
.xca_c00169{left:254.666667pt;}
.x47_c00169{left:256.000000pt;}
.xc7_c00169{left:257.706667pt;}
.xf7_c00169{left:258.666667pt;}
.x23_c00169{left:261.333333pt;}
.xb4_c00169{left:262.666667pt;}
.x59_c00169{left:264.000000pt;}
.x3c_c00169{left:266.666667pt;}
.xa0_c00169{left:268.373333pt;}
.x7a_c00169{left:269.333333pt;}
.xcb_c00169{left:274.293333pt;}
.x60_c00169{left:275.626667pt;}
.x30_c00169{left:277.706667pt;}
.x70_c00169{left:278.666667pt;}
.x48_c00169{left:280.960000pt;}
.x6b_c00169{left:284.960000pt;}
.xbf_c00169{left:287.040000pt;}
.x18_c00169{left:288.373333pt;}
.xdd_c00169{left:290.293333pt;}
.x5a_c00169{left:291.240000pt;}
.xa4_c00169{left:293.333333pt;}
.x7_c00169{left:294.666667pt;}
.xb5_c00169{left:296.373333pt;}
.x24_c00169{left:297.333333pt;}
.xe5_c00169{left:299.040000pt;}
.x86_c00169{left:300.000000pt;}
.xf4_c00169{left:303.040000pt;}
.x68_c00169{left:305.133333pt;}
.x6c_c00169{left:309.333333pt;}
.xac_c00169{left:312.000000pt;}
.x43_c00169{left:312.960000pt;}
.x9b_c00169{left:314.666667pt;}
.x61_c00169{left:317.333333pt;}
.x87_c00169{left:318.666667pt;}
.xb6_c00169{left:324.000000pt;}
.xf5_c00169{left:326.666667pt;}
.x31_c00169{left:328.373333pt;}
.x93_c00169{left:329.333333pt;}
.x49_c00169{left:331.040000pt;}
.xa5_c00169{left:332.000000pt;}
.x19_c00169{left:333.333333pt;}
.x3d_c00169{left:334.666667pt;}
.xd1_c00169{left:338.293333pt;}
.x62_c00169{left:340.000000pt;}
.x8_c00169{left:340.960000pt;}
.xd8_c00169{left:342.666667pt;}
.x94_c00169{left:344.000000pt;}
.x88_c00169{left:344.960000pt;}
.x25_c00169{left:347.040000pt;}
.x51_c00169{left:348.000000pt;}
.x3e_c00169{left:349.706667pt;}
.x8d_c00169{left:351.626667pt;}
.x1_c00169{left:353.333333pt;}
.x9_c00169{left:356.373333pt;}
.x63_c00169{left:357.333333pt;}
.x71_c00169{left:360.000000pt;}
.x32_c00169{left:361.333333pt;}
.xe2_c00169{left:364.000000pt;}
.x69_c00169{left:365.333333pt;}
.x82_c00169{left:370.293333pt;}
.xa1_c00169{left:371.626667pt;}
.x1a_c00169{left:374.666667pt;}
.xa6_c00169{left:376.000000pt;}
.x95_c00169{left:377.333333pt;}
.xa_c00169{left:378.666667pt;}
.xb7_c00169{left:380.373333pt;}
.xeb_c00169{left:383.040000pt;}
.xd9_c00169{left:385.333333pt;}
.xe6_c00169{left:386.293333pt;}
.x26_c00169{left:387.626667pt;}
.x33_c00169{left:389.333333pt;}
.x6d_c00169{left:392.960000pt;}
.x8e_c00169{left:396.373333pt;}
.x7b_c00169{left:397.333333pt;}
.xda_c00169{left:400.000000pt;}
.x27_c00169{left:402.666667pt;}
.x34_c00169{left:405.333333pt;}
.x72_c00169{left:407.626667pt;}
.x4a_c00169{left:409.333333pt;}
.x7c_c00169{left:411.626667pt;}
.x1b_c00169{left:413.706667pt;}
.x5b_c00169{left:417.333333pt;}
.xad_c00169{left:418.666667pt;}
.x64_c00169{left:419.626667pt;}
.x9a_c00169{left:422.666667pt;}
.xd5_c00169{left:424.000000pt;}
.xec_c00169{left:424.960000pt;}
.x8f_c00169{left:428.000000pt;}
.xc4_c00169{left:429.333333pt;}
.xde_c00169{left:432.000000pt;}
.x4b_c00169{left:432.960000pt;}
.x35_c00169{left:434.666667pt;}
.xa7_c00169{left:435.626667pt;}
.x52_c00169{left:439.626667pt;}
.x28_c00169{left:441.333333pt;}
.xa8_c00169{left:444.000000pt;}
.x10_c00169{left:446.666667pt;}
.xf6_c00169{left:448.000000pt;}
.xdb_c00169{left:449.333333pt;}
.xf8_c00169{left:450.666667pt;}
.xae_c00169{left:451.626667pt;}
.x1c_c00169{left:453.706667pt;}
.x7d_c00169{left:456.373333pt;}
.xb_c00169{left:457.333333pt;}
.xe7_c00169{left:458.666667pt;}
.x73_c00169{left:460.000000pt;}
.x96_c00169{left:461.706667pt;}
.xb8_c00169{left:464.960000pt;}
.xed_c00169{left:466.666667pt;}
.x36_c00169{left:468.373333pt;}
.xdf_c00169{left:474.666667pt;}
.x83_c00169{left:475.626667pt;}
.x89_c00169{left:478.666667pt;}
.xaf_c00169{left:482.666667pt;}
.xa9_c00169{left:484.000000pt;}
.xe8_c00169{left:486.666667pt;}
.x1d_c00169{left:488.373333pt;}
.x65_c00169{left:490.293333pt;}
.x37_c00169{left:491.626667pt;}
.x3f_c00169{left:492.960000pt;}
.x74_c00169{left:494.666667pt;}
.xd2_c00169{left:496.373333pt;}
.xc0_c00169{left:497.333333pt;}
.xcc_c00169{left:499.040000pt;}
.x11_c00169{left:501.333333pt;}
.x97_c00169{left:502.666667pt;}
.x84_c00169{left:504.000000pt;}
.xb9_c00169{left:506.666667pt;}
.x4c_c00169{left:508.373333pt;}
.x29_c00169{left:509.706667pt;}
.xee_c00169{left:510.666667pt;}
.x1e_c00169{left:511.626667pt;}
.xaa_c00169{left:515.626667pt;}
.x44_c00169{left:519.040000pt;}
.x98_c00169{left:520.573333pt;}
.xd6_c00169{left:522.293333pt;}
.x9c_c00169{left:523.240000pt;}
.xcd_c00169{left:524.373333pt;}
.xc_c00169{left:525.706667pt;}
.xef_c00169{left:528.373333pt;}
.xb0_c00169{left:529.333333pt;}
.x38_c00169{left:530.666667pt;}
.x2a_c00169{left:532.000000pt;}
.x2b_c00169{left:536.960000pt;}
.xf9_c00169{left:538.293333pt;}
.x75_c00169{left:540.960000pt;}
.xdc_c00169{left:542.293333pt;}
.x2c_c00169{left:544.000000pt;}
.x53_c00169{left:546.666667pt;}
.x1f_c00169{left:550.293333pt;}
.xf0_c00169{left:551.626667pt;}
.x12_c00169{left:553.333333pt;}
.xe0_c00169{left:555.040000pt;}
.xd3_c00169{left:557.333333pt;}
.x7e_c00169{left:558.293333pt;}
.x90_c00169{left:560.000000pt;}
.xe3_c00169{left:562.666667pt;}
.xb1_c00169{left:564.000000pt;}
.x40_c00169{left:567.040000pt;}
.xd_c00169{left:570.666667pt;}
.x8a_c00169{left:574.666667pt;}
.xd7_c00169{left:576.000000pt;}
.x20_c00169{left:577.333333pt;}
.xce_c00169{left:581.333333pt;}
.xe9_c00169{left:582.293333pt;}
.xf1_c00169{left:583.626667pt;}
.xba_c00169{left:584.960000pt;}
.xe_c00169{left:586.666667pt;}
.x39_c00169{left:588.000000pt;}
.x54_c00169{left:589.333333pt;}
.x76_c00169{left:590.293333pt;}
.xab_c00169{left:592.373333pt;}
.x4d_c00169{left:595.040000pt;}
.xb2_c00169{left:596.000000pt;}
.x5c_c00169{left:597.706667pt;}
.xf2_c00169{left:600.373333pt;}
.x99_c00169{left:602.666667pt;}
.xf_c00169{left:605.333333pt;}
.x2d_c00169{left:607.626667pt;}
.x13_c00169{left:608.960000pt;}
.x41_c00169{left:610.293333pt;}
.xc8_c00169{left:612.000000pt;}
.xc5_c00169{left:612.960000pt;}
.x4e_c00169{left:614.293333pt;}
.x21_c00169{left:616.373333pt;}
.x77_c00169{left:617.906667pt;}
.x91_c00169{left:619.040000pt;}
.x2e_c00169{left:620.000000pt;}
.xb3_c00169{left:624.000000pt;}
.xbb_c00169{left:625.333333pt;}
.x14_c00169{left:626.466667pt;}
.xc1_c00169{left:628.373333pt;}
.xcf_c00169{left:629.706667pt;}
.x3a_c00169{left:634.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_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_1a3e9c7b5a41c3d3c4f3daee.woff2')format("woff");}.ff1_c00170{font-family:ff1_c00170;line-height:1.688965;font-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_c00170{transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);}
.md_c00170{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m2_c00170{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m6_c00170{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m1c_c00170{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m1_c00170{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m15_c00170{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m18_c00170{transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);}
.m12_c00170{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m21_c00170{transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);}
.m7_c00170{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m14_c00170{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m5_c00170{transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);}
.m1e_c00170{transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);}
.m9_c00170{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m1d_c00170{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m10_c00170{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);}
.m1f_c00170{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m19_c00170{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.m1a_c00170{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m24_c00170{transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);}
.m11_c00170{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.me_c00170{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m1b_c00170{transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);}
.m20_c00170{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m13_c00170{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m0_c00170{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m16_c00170{transform:matrix(0.611765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611765,0.000000,0.000000,0.250000,0,0);}
.m3_c00170{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.ma_c00170{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.mb_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);}
.m17_c00170{transform:matrix(0.627941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627941,0.000000,0.000000,0.250000,0,0);}
.m22_c00170{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m8_c00170{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m4_c00170{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m23_c00170{transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);}
.mf_c00170{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,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:-14.892000px;}
.ws1_c00170{word-spacing:0.000000px;}
._0_c00170{width:3.043246px;}
.fc0_c00170{color:transparent;}
.fs2_c00170{font-size:18.720000px;}
.fs0_c00170{font-size:20.400000px;}
.fs3_c00170{font-size:25.500000px;}
.fs1_c00170{font-size:28.920000px;}
.fs4_c00170{font-size:32.340000px;}
.y0_c00170{bottom:0.000000px;}
.y11_c00170{bottom:227.550000px;}
.y13_c00170{bottom:228.405000px;}
.y12_c00170{bottom:229.470000px;}
.yf_c00170{bottom:241.470000px;}
.y10_c00170{bottom:241.905000px;}
.ye_c00170{bottom:242.550000px;}
.yc_c00170{bottom:243.405000px;}
.ya_c00170{bottom:243.630000px;}
.yb_c00170{bottom:243.825000px;}
.yd_c00170{bottom:244.470000px;}
.y7_c00170{bottom:244.905000px;}
.y9_c00170{bottom:245.130000px;}
.y8_c00170{bottom:245.970000px;}
.y6_c00170{bottom:257.970000px;}
.y3_c00170{bottom:258.405000px;}
.y14_c00170{bottom:259.050000px;}
.y16_c00170{bottom:259.470000px;}
.y5_c00170{bottom:260.130000px;}
.y4_c00170{bottom:260.550000px;}
.y15_c00170{bottom:260.970000px;}
.y1a_c00170{bottom:272.550000px;}
.y17_c00170{bottom:273.405000px;}
.y18_c00170{bottom:273.630000px;}
.y19_c00170{bottom:274.470000px;}
.y1b_c00170{bottom:275.550000px;}
.y2_c00170{bottom:1099.905000px;}
.y1_c00170{bottom:1102.050000px;}
.h3_c00170{height:23.025234px;}
.h1_c00170{height:25.091602px;}
.h4_c00170{height:31.364502px;}
.h2_c00170{height:35.571035px;}
.h5_c00170{height:39.777568px;}
.h0_c00170{height:1335.000000px;}
.w0_c00170{width:880.500000px;}
.x0_c00170{left:0.000000px;}
.x22_c00170{left:151.500000px;}
.x1f_c00170{left:169.500000px;}
.x29_c00170{left:180.420000px;}
.x2a_c00170{left:205.500000px;}
.x23_c00170{left:207.000000px;}
.x20_c00170{left:240.000000px;}
.x8_c00170{left:248.145000px;}
.x2b_c00170{left:256.920000px;}
.x19_c00170{left:278.145000px;}
.x2c_c00170{left:283.500000px;}
.x9_c00170{left:295.500000px;}
.x1a_c00170{left:324.000000px;}
.xa_c00170{left:330.000000px;}
.x2d_c00170{left:333.000000px;}
.x1b_c00170{left:348.420000px;}
.x2e_c00170{left:349.500000px;}
.xb_c00170{left:352.080000px;}
.x2f_c00170{left:384.420000px;}
.x1c_c00170{left:390.000000px;}
.xc_c00170{left:394.500000px;}
.x1_c00170{left:399.000000px;}
.x15_c00170{left:400.500000px;}
.x1d_c00170{left:403.500000px;}
.x16_c00170{left:415.080000px;}
.x30_c00170{left:420.420000px;}
.x27_c00170{left:436.500000px;}
.xd_c00170{left:441.000000px;}
.x17_c00170{left:444.420000px;}
.x18_c00170{left:460.080000px;}
.x1e_c00170{left:475.500000px;}
.xe_c00170{left:483.000000px;}
.x28_c00170{left:499.080000px;}
.x3_c00170{left:525.645000px;}
.xf_c00170{left:532.500000px;}
.x4_c00170{left:573.000000px;}
.x10_c00170{left:588.000000px;}
.x5_c00170{left:606.000000px;}
.x24_c00170{left:620.145000px;}
.x6_c00170{left:630.420000px;}
.x11_c00170{left:640.920000px;}
.x12_c00170{left:658.080000px;}
.x7_c00170{left:666.420000px;}
.x25_c00170{left:667.500000px;}
.x21_c00170{left:681.000000px;}
.x13_c00170{left:688.080000px;}
.x26_c00170{left:690.420000px;}
.x2_c00170{left:703.920000px;}
.x14_c00170{left:706.080000px;}
@media print{
.v0_c00170{vertical-align:0.000000pt;}
.ls0_c00170{letter-spacing:0.000000pt;}
.ws0_c00170{word-spacing:-13.237333pt;}
.ws1_c00170{word-spacing:0.000000pt;}
._0_c00170{width:2.705108pt;}
.fs2_c00170{font-size:16.640000pt;}
.fs0_c00170{font-size:18.133333pt;}
.fs3_c00170{font-size:22.666667pt;}
.fs1_c00170{font-size:25.706667pt;}
.fs4_c00170{font-size:28.746667pt;}
.y0_c00170{bottom:0.000000pt;}
.y11_c00170{bottom:202.266667pt;}
.y13_c00170{bottom:203.026667pt;}
.y12_c00170{bottom:203.973333pt;}
.yf_c00170{bottom:214.640000pt;}
.y10_c00170{bottom:215.026667pt;}
.ye_c00170{bottom:215.600000pt;}
.yc_c00170{bottom:216.360000pt;}
.ya_c00170{bottom:216.560000pt;}
.yb_c00170{bottom:216.733333pt;}
.yd_c00170{bottom:217.306667pt;}
.y7_c00170{bottom:217.693333pt;}
.y9_c00170{bottom:217.893333pt;}
.y8_c00170{bottom:218.640000pt;}
.y6_c00170{bottom:229.306667pt;}
.y3_c00170{bottom:229.693333pt;}
.y14_c00170{bottom:230.266667pt;}
.y16_c00170{bottom:230.640000pt;}
.y5_c00170{bottom:231.226667pt;}
.y4_c00170{bottom:231.600000pt;}
.y15_c00170{bottom:231.973333pt;}
.y1a_c00170{bottom:242.266667pt;}
.y17_c00170{bottom:243.026667pt;}
.y18_c00170{bottom:243.226667pt;}
.y19_c00170{bottom:243.973333pt;}
.y1b_c00170{bottom:244.933333pt;}
.y2_c00170{bottom:977.693333pt;}
.y1_c00170{bottom:979.600000pt;}
.h3_c00170{height:20.466875pt;}
.h1_c00170{height:22.303646pt;}
.h4_c00170{height:27.879557pt;}
.h2_c00170{height:31.618698pt;}
.h5_c00170{height:35.357839pt;}
.h0_c00170{height:1186.666667pt;}
.w0_c00170{width:782.666667pt;}
.x0_c00170{left:0.000000pt;}
.x22_c00170{left:134.666667pt;}
.x1f_c00170{left:150.666667pt;}
.x29_c00170{left:160.373333pt;}
.x2a_c00170{left:182.666667pt;}
.x23_c00170{left:184.000000pt;}
.x20_c00170{left:213.333333pt;}
.x8_c00170{left:220.573333pt;}
.x2b_c00170{left:228.373333pt;}
.x19_c00170{left:247.240000pt;}
.x2c_c00170{left:252.000000pt;}
.x9_c00170{left:262.666667pt;}
.x1a_c00170{left:288.000000pt;}
.xa_c00170{left:293.333333pt;}
.x2d_c00170{left:296.000000pt;}
.x1b_c00170{left:309.706667pt;}
.x2e_c00170{left:310.666667pt;}
.xb_c00170{left:312.960000pt;}
.x2f_c00170{left:341.706667pt;}
.x1c_c00170{left:346.666667pt;}
.xc_c00170{left:350.666667pt;}
.x1_c00170{left:354.666667pt;}
.x15_c00170{left:356.000000pt;}
.x1d_c00170{left:358.666667pt;}
.x16_c00170{left:368.960000pt;}
.x30_c00170{left:373.706667pt;}
.x27_c00170{left:388.000000pt;}
.xd_c00170{left:392.000000pt;}
.x17_c00170{left:395.040000pt;}
.x18_c00170{left:408.960000pt;}
.x1e_c00170{left:422.666667pt;}
.xe_c00170{left:429.333333pt;}
.x28_c00170{left:443.626667pt;}
.x3_c00170{left:467.240000pt;}
.xf_c00170{left:473.333333pt;}
.x4_c00170{left:509.333333pt;}
.x10_c00170{left:522.666667pt;}
.x5_c00170{left:538.666667pt;}
.x24_c00170{left:551.240000pt;}
.x6_c00170{left:560.373333pt;}
.x11_c00170{left:569.706667pt;}
.x12_c00170{left:584.960000pt;}
.x7_c00170{left:592.373333pt;}
.x25_c00170{left:593.333333pt;}
.x21_c00170{left:605.333333pt;}
.x13_c00170{left:611.626667pt;}
.x26_c00170{left:613.706667pt;}
.x2_c00170{left:625.706667pt;}
.x14_c00170{left:627.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_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_69e3a5b92bf8a66e913fa2ad.woff2')format("woff");}.ff1_c00171{font-family:ff1_c00171;line-height:1.688965;font-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_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);}
.m7_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);}
.m9_c00171{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m4f_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);}
.m46_c00171{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m4_c00171{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);}
.m41_c00171{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m52_c00171{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m56_c00171{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m9a_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);}
.m49_c00171{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m39_c00171{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m55_c00171{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m15_c00171{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m2d_c00171{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m2b_c00171{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mc_c00171{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m96_c00171{transform:matrix(0.403846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403846,0.000000,0.000000,0.250000,0,0);}
.m5d_c00171{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m43_c00171{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mb2_c00171{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.m4a_c00171{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m7d_c00171{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m19_c00171{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m25_c00171{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.m80_c00171{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m26_c00171{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.ma_c00171{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m3e_c00171{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m22_c00171{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m31_c00171{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.ma0_c00171{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m5_c00171{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.mbd_c00171{transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);}
.m5f_c00171{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m51_c00171{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m8e_c00171{transform:matrix(0.443109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443109,0.000000,0.000000,0.250000,0,0);}
.m40_c00171{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m12_c00171{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m3_c00171{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m16_c00171{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m1_c00171{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m86_c00171{transform:matrix(0.455929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455929,0.000000,0.000000,0.250000,0,0);}
.m48_c00171{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m62_c00171{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mbe_c00171{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.m2a_c00171{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m59_c00171{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.m60_c00171{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m99_c00171{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m1e_c00171{transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);}
.ma2_c00171{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.m1b_c00171{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m7f_c00171{transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);}
.mb1_c00171{transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);}
.m69_c00171{transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);}
.m87_c00171{transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);}
.ma8_c00171{transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);}
.m42_c00171{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m1f_c00171{transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);}
.m8d_c00171{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m9b_c00171{transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);}
.m8a_c00171{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.mb_c00171{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.me_c00171{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.ma3_c00171{transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);}
.m54_c00171{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m65_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);}
.m7e_c00171{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m63_c00171{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m5c_c00171{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m71_c00171{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m5e_c00171{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m23_c00171{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m5a_c00171{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m4c_c00171{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.maa_c00171{transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);}
.m4e_c00171{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m3c_c00171{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m6_c00171{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m57_c00171{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.mbf_c00171{transform:matrix(0.526515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526515,0.000000,0.000000,0.250000,0,0);}
.m37_c00171{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m2f_c00171{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m77_c00171{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m35_c00171{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mb8_c00171{transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);}
.m32_c00171{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.ma7_c00171{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00171{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m28_c00171{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m11_c00171{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mb4_c00171{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m7c_c00171{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.m38_c00171{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m4d_c00171{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m45_c00171{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m7a_c00171{transform:matrix(0.538971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538971,0.000000,0.000000,0.250000,0,0);}
.mba_c00171{transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);}
.md_c00171{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m18_c00171{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m6a_c00171{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m34_c00171{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m14_c00171{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m13_c00171{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m9c_c00171{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m20_c00171{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m2_c00171{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m1c_c00171{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m24_c00171{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m10_c00171{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m6c_c00171{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m72_c00171{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.mf_c00171{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m33_c00171{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m74_c00171{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);}
.m17_c00171{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m8f_c00171{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m4b_c00171{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m29_c00171{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m68_c00171{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m70_c00171{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);}
.m1a_c00171{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m47_c00171{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m61_c00171{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mb6_c00171{transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);}
.m85_c00171{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.m95_c00171{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m8_c00171{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m36_c00171{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m64_c00171{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.mb0_c00171{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.m58_c00171{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m0_c00171{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m6e_c00171{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m83_c00171{transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);}
.m76_c00171{transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);}
.m82_c00171{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m30_c00171{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m81_c00171{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m2c_c00171{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m94_c00171{transform:matrix(0.616740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616740,0.000000,0.000000,0.250000,0,0);}
.m3b_c00171{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m73_c00171{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m21_c00171{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m66_c00171{transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);}
.m75_c00171{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_c00171{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m78_c00171{transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);}
.m3a_c00171{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.m53_c00171{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m84_c00171{transform:matrix(0.649780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649780,0.000000,0.000000,0.250000,0,0);}
.m92_c00171{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m91_c00171{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m44_c00171{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m7b_c00171{transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);}
.maf_c00171{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.mad_c00171{transform:matrix(0.680617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680617,0.000000,0.000000,0.250000,0,0);}
.m89_c00171{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mbb_c00171{transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);}
.mb9_c00171{transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);}
.mb5_c00171{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.m98_c00171{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m6d_c00171{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.ma4_c00171{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.ma1_c00171{transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);}
.m90_c00171{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.mbc_c00171{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m79_c00171{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m8b_c00171{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.mb3_c00171{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.m93_c00171{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m3f_c00171{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m5b_c00171{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m6b_c00171{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m88_c00171{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.ma5_c00171{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.mae_c00171{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m27_c00171{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mab_c00171{transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);}
.m1d_c00171{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m9e_c00171{transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);}
.ma6_c00171{transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);}
.m8c_c00171{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m67_c00171{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mb7_c00171{transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);}
.mac_c00171{transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);}
.m9f_c00171{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m97_c00171{transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);}
.m6f_c00171{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m9d_c00171{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m3d_c00171{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00171{vertical-align:-6.000000px;}
.v0_c00171{vertical-align:0.000000px;}
.ls0_c00171{letter-spacing:0.000000px;}
.sc__c00171{text-shadow:none;}
.sc0_c00171{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00171{-webkit-text-stroke:0px transparent;}
.sc0_c00171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00171{word-spacing:-3.329823px;}
.ws11_c00171{word-spacing:0.000000px;}
.ws5_c00171{word-spacing:17.262919px;}
.ws2_c00171{word-spacing:17.872967px;}
.wsf_c00171{word-spacing:18.138913px;}
.wsc_c00171{word-spacing:19.620812px;}
.wse_c00171{word-spacing:21.623753px;}
.wsd_c00171{word-spacing:21.941391px;}
.ws8_c00171{word-spacing:23.728109px;}
.ws10_c00171{word-spacing:23.767013px;}
.wsb_c00171{word-spacing:33.638400px;}
.ws3_c00171{word-spacing:35.508379px;}
.ws7_c00171{word-spacing:37.180720px;}
.ws9_c00171{word-spacing:40.994598px;}
.ws1_c00171{word-spacing:47.719225px;}
.ws4_c00171{word-spacing:49.006362px;}
.ws6_c00171{word-spacing:66.458674px;}
.wsa_c00171{word-spacing:69.530203px;}
._2_c00171{width:26.092993px;}
._0_c00171{width:30.726328px;}
._1_c00171{width:47.570880px;}
.fc0_c00171{color:transparent;}
.fs6_c00171{font-size:3.420000px;}
.fs9_c00171{font-size:11.880000px;}
.fs8_c00171{font-size:13.620000px;}
.fs5_c00171{font-size:18.720000px;}
.fs0_c00171{font-size:20.400000px;}
.fs3_c00171{font-size:25.500000px;}
.fs1_c00171{font-size:28.920000px;}
.fs4_c00171{font-size:32.340000px;}
.fs2_c00171{font-size:35.700000px;}
.fs7_c00171{font-size:39.120000px;}
.y0_c00171{bottom:0.000000px;}
.y45_c00171{bottom:254.745000px;}
.y44_c00171{bottom:256.245000px;}
.y41_c00171{bottom:256.905000px;}
.y42_c00171{bottom:257.130000px;}
.y46_c00171{bottom:257.970000px;}
.y43_c00171{bottom:258.405000px;}
.y3e_c00171{bottom:274.245000px;}
.y3c_c00171{bottom:275.325000px;}
.y3b_c00171{bottom:276.405000px;}
.y3f_c00171{bottom:276.630000px;}
.y3d_c00171{bottom:276.825000px;}
.y40_c00171{bottom:277.470000px;}
.y3a_c00171{bottom:292.905000px;}
.y36_c00171{bottom:293.745000px;}
.y38_c00171{bottom:295.245000px;}
.y35_c00171{bottom:295.905000px;}
.y39_c00171{bottom:296.130000px;}
.y37_c00171{bottom:297.405000px;}
.y34_c00171{bottom:312.405000px;}
.y31_c00171{bottom:313.680000px;}
.y33_c00171{bottom:314.745000px;}
.y2e_c00171{bottom:315.405000px;}
.y2f_c00171{bottom:315.825000px;}
.y32_c00171{bottom:316.470000px;}
.y30_c00171{bottom:316.905000px;}
.y28_c00171{bottom:334.245000px;}
.y2d_c00171{bottom:335.325000px;}
.y2b_c00171{bottom:335.745000px;}
.y29_c00171{bottom:335.970000px;}
.y2a_c00171{bottom:336.405000px;}
.y2c_c00171{bottom:337.470000px;}
.y27_c00171{bottom:353.325000px;}
.y25_c00171{bottom:353.745000px;}
.y23_c00171{bottom:355.905000px;}
.y26_c00171{bottom:356.970000px;}
.y24_c00171{bottom:357.420000px;}
.ybb_c00171{bottom:384.630000px;}
.ybc_c00171{bottom:385.695000px;}
.yb8_c00171{bottom:397.695000px;}
.yb9_c00171{bottom:398.775000px;}
.yb7_c00171{bottom:399.195000px;}
.yba_c00171{bottom:400.920000px;}
.yb4_c00171{bottom:411.195000px;}
.yb5_c00171{bottom:412.275000px;}
.yb1_c00171{bottom:412.695000px;}
.yb2_c00171{bottom:414.195000px;}
.yb6_c00171{bottom:414.420000px;}
.yb3_c00171{bottom:417.195000px;}
.yb0_c00171{bottom:426.195000px;}
.yaf_c00171{bottom:426.630000px;}
.yae_c00171{bottom:427.275000px;}
.yad_c00171{bottom:427.695000px;}
.yac_c00171{bottom:438.630000px;}
.yab_c00171{bottom:439.695000px;}
.ya9_c00171{bottom:440.775000px;}
.yaa_c00171{bottom:441.195000px;}
.ya8_c00171{bottom:441.630000px;}
.ya6_c00171{bottom:452.130000px;}
.ya7_c00171{bottom:453.195000px;}
.ya4_c00171{bottom:453.630000px;}
.ya5_c00171{bottom:454.695000px;}
.ya3_c00171{bottom:467.130000px;}
.ya2_c00171{bottom:468.195000px;}
.ya1_c00171{bottom:469.695000px;}
.ya0_c00171{bottom:480.630000px;}
.y9f_c00171{bottom:481.695000px;}
.y9e_c00171{bottom:482.130000px;}
.y9d_c00171{bottom:495.195000px;}
.y9c_c00171{bottom:496.695000px;}
.y9b_c00171{bottom:507.630000px;}
.y9a_c00171{bottom:508.695000px;}
.y98_c00171{bottom:509.130000px;}
.y99_c00171{bottom:510.195000px;}
.y96_c00171{bottom:522.195000px;}
.y95_c00171{bottom:522.630000px;}
.y97_c00171{bottom:523.695000px;}
.y94_c00171{bottom:536.130000px;}
.y93_c00171{bottom:537.195000px;}
.y90_c00171{bottom:549.630000px;}
.y92_c00171{bottom:550.695000px;}
.y91_c00171{bottom:551.775000px;}
.y8e_c00171{bottom:563.130000px;}
.y8f_c00171{bottom:564.195000px;}
.y8b_c00171{bottom:576.630000px;}
.y8d_c00171{bottom:577.695000px;}
.y8c_c00171{bottom:578.130000px;}
.y8a_c00171{bottom:592.695000px;}
.y86_c00171{bottom:605.130000px;}
.y87_c00171{bottom:605.775000px;}
.y88_c00171{bottom:606.195000px;}
.y89_c00171{bottom:606.420000px;}
.y85_c00171{bottom:618.630000px;}
.y84_c00171{bottom:619.695000px;}
.y82_c00171{bottom:621.195000px;}
.y83_c00171{bottom:621.420000px;}
.y81_c00171{bottom:633.195000px;}
.y7f_c00171{bottom:634.695000px;}
.y80_c00171{bottom:634.920000px;}
.y7e_c00171{bottom:646.695000px;}
.y7c_c00171{bottom:648.195000px;}
.y7d_c00171{bottom:648.420000px;}
.y7b_c00171{bottom:660.195000px;}
.y78_c00171{bottom:660.630000px;}
.y7a_c00171{bottom:661.695000px;}
.y79_c00171{bottom:661.920000px;}
.y77_c00171{bottom:674.130000px;}
.y76_c00171{bottom:675.195000px;}
.y74_c00171{bottom:687.630000px;}
.y75_c00171{bottom:688.695000px;}
.y73_c00171{bottom:690.195000px;}
.y71_c00171{bottom:701.130000px;}
.y72_c00171{bottom:702.195000px;}
.y70_c00171{bottom:702.630000px;}
.y6f_c00171{bottom:703.695000px;}
.y6e_c00171{bottom:715.695000px;}
.y6d_c00171{bottom:716.130000px;}
.y6c_c00171{bottom:717.195000px;}
.y6b_c00171{bottom:729.195000px;}
.y6a_c00171{bottom:729.630000px;}
.y69_c00171{bottom:742.695000px;}
.y67_c00171{bottom:743.130000px;}
.y68_c00171{bottom:744.195000px;}
.y66_c00171{bottom:744.630000px;}
.y65_c00171{bottom:745.695000px;}
.y64_c00171{bottom:757.695000px;}
.y63_c00171{bottom:758.130000px;}
.y62_c00171{bottom:759.195000px;}
.y61_c00171{bottom:771.195000px;}
.y60_c00171{bottom:771.630000px;}
.y5f_c00171{bottom:772.695000px;}
.y5d_c00171{bottom:783.630000px;}
.y5e_c00171{bottom:784.695000px;}
.y5c_c00171{bottom:785.130000px;}
.y5b_c00171{bottom:786.195000px;}
.y5a_c00171{bottom:798.195000px;}
.y59_c00171{bottom:798.630000px;}
.y58_c00171{bottom:800.130000px;}
.y57_c00171{bottom:801.195000px;}
.y56_c00171{bottom:812.130000px;}
.y55_c00171{bottom:813.195000px;}
.y52_c00171{bottom:830.130000px;}
.y54_c00171{bottom:831.195000px;}
.y53_c00171{bottom:832.695000px;}
.y51_c00171{bottom:843.195000px;}
.y50_c00171{bottom:844.275000px;}
.y4f_c00171{bottom:844.695000px;}
.y4e_c00171{bottom:846.195000px;}
.y4d_c00171{bottom:863.130000px;}
.y4c_c00171{bottom:878.970000px;}
.y4b_c00171{bottom:880.050000px;}
.y49_c00171{bottom:893.970000px;}
.y4a_c00171{bottom:895.050000px;}
.y48_c00171{bottom:915.195000px;}
.y47_c00171{bottom:916.050000px;}
.y22_c00171{bottom:944.550000px;}
.y21_c00171{bottom:945.405000px;}
.y1f_c00171{bottom:962.745000px;}
.y1c_c00171{bottom:964.905000px;}
.y20_c00171{bottom:965.130000px;}
.y1e_c00171{bottom:965.970000px;}
.y1d_c00171{bottom:966.405000px;}
.y1b_c00171{bottom:983.745000px;}
.y1a_c00171{bottom:984.825000px;}
.y18_c00171{bottom:985.905000px;}
.y19_c00171{bottom:986.970000px;}
.y17_c00171{bottom:1001.745000px;}
.y14_c00171{bottom:1001.970000px;}
.y16_c00171{bottom:1002.825000px;}
.y11_c00171{bottom:1003.245000px;}
.y15_c00171{bottom:1003.905000px;}
.y12_c00171{bottom:1004.130000px;}
.y13_c00171{bottom:1005.405000px;}
.yf_c00171{bottom:1021.470000px;}
.ya_c00171{bottom:1022.325000px;}
.yd_c00171{bottom:1022.745000px;}
.y10_c00171{bottom:1023.405000px;}
.yc_c00171{bottom:1023.630000px;}
.ye_c00171{bottom:1023.825000px;}
.yb_c00171{bottom:1024.905000px;}
.y8_c00171{bottom:1041.405000px;}
.y9_c00171{bottom:1042.245000px;}
.y7_c00171{bottom:1043.325000px;}
.y6_c00171{bottom:1044.405000px;}
.y4_c00171{bottom:1061.745000px;}
.y3_c00171{bottom:1063.905000px;}
.y5_c00171{bottom:1064.970000px;}
.y2_c00171{bottom:1099.905000px;}
.y1_c00171{bottom:1102.050000px;}
.h7_c00171{height:4.206533px;}
.ha_c00171{height:14.612168px;}
.h9_c00171{height:16.752334px;}
.h6_c00171{height:23.025234px;}
.h1_c00171{height:25.091602px;}
.h4_c00171{height:31.364502px;}
.h2_c00171{height:35.571035px;}
.h5_c00171{height:39.777568px;}
.h3_c00171{height:43.910303px;}
.h8_c00171{height:48.116836px;}
.h0_c00171{height:1335.000000px;}
.w0_c00171{width:880.500000px;}
.x0_c00171{left:0.000000px;}
.x5a_c00171{left:150.000000px;}
.x50_c00171{left:151.500000px;}
.x1f_c00171{left:153.000000px;}
.x2_c00171{left:154.920000px;}
.x45_c00171{left:165.645000px;}
.x3_c00171{left:169.080000px;}
.x6e_c00171{left:180.000000px;}
.x75_c00171{left:183.000000px;}
.x12_c00171{left:190.920000px;}
.x20_c00171{left:198.000000px;}
.x65_c00171{left:199.080000px;}
.x5b_c00171{left:205.500000px;}
.x51_c00171{left:207.000000px;}
.x39_c00171{left:215.580000px;}
.x13_c00171{left:217.500000px;}
.x4_c00171{left:223.920000px;}
.x2c_c00171{left:226.500000px;}
.x76_c00171{left:235.920000px;}
.x46_c00171{left:237.000000px;}
.x21_c00171{left:243.000000px;}
.x66_c00171{left:246.000000px;}
.x2d_c00171{left:250.500000px;}
.x5c_c00171{left:257.580000px;}
.x47_c00171{left:258.855000px;}
.x2e_c00171{left:265.920000px;}
.x22_c00171{left:270.420000px;}
.x3a_c00171{left:277.500000px;}
.x67_c00171{left:278.580000px;}
.x14_c00171{left:280.500000px;}
.x3d_c00171{left:284.580000px;}
.x7f_c00171{left:288.000000px;}
.x5d_c00171{left:289.080000px;}
.x5_c00171{left:292.275000px;}
.x52_c00171{left:294.000000px;}
.x9a_c00171{left:300.000000px;}
.x92_c00171{left:301.920000px;}
.x3b_c00171{left:304.500000px;}
.x8f_c00171{left:310.080000px;}
.x5e_c00171{left:312.420000px;}
.x3e_c00171{left:315.000000px;}
.x6_c00171{left:316.080000px;}
.x23_c00171{left:319.500000px;}
.x8d_c00171{left:321.420000px;}
.x2f_c00171{left:322.500000px;}
.x15_c00171{left:324.000000px;}
.x99_c00171{left:328.080000px;}
.x6f_c00171{left:329.355000px;}
.x9b_c00171{left:333.000000px;}
.x53_c00171{left:337.920000px;}
.x5f_c00171{left:339.000000px;}
.x93_c00171{left:341.580000px;}
.x48_c00171{left:345.420000px;}
.x7_c00171{left:346.500000px;}
.x77_c00171{left:348.000000px;}
.x97_c00171{left:351.000000px;}
.x3f_c00171{left:352.500000px;}
.x94_c00171{left:354.000000px;}
.x83_c00171{left:355.080000px;}
.x8a_c00171{left:357.000000px;}
.x9f_c00171{left:358.500000px;}
.x8_c00171{left:360.000000px;}
.x95_c00171{left:361.080000px;}
.x16_c00171{left:364.500000px;}
.x54_c00171{left:366.420000px;}
.x30_c00171{left:367.920000px;}
.x80_c00171{left:370.500000px;}
.x49_c00171{left:373.920000px;}
.x9_c00171{left:376.500000px;}
.x68_c00171{left:378.420000px;}
.x24_c00171{left:381.420000px;}
.x78_c00171{left:382.920000px;}
.xa1_c00171{left:387.000000px;}
.x98_c00171{left:391.500000px;}
.xa_c00171{left:393.000000px;}
.xa2_c00171{left:394.920000px;}
.xa0_c00171{left:396.000000px;}
.x1_c00171{left:400.500000px;}
.x69_c00171{left:403.920000px;}
.x31_c00171{left:406.920000px;}
.xb_c00171{left:409.080000px;}
.x4a_c00171{left:411.420000px;}
.x25_c00171{left:414.000000px;}
.x3c_c00171{left:415.080000px;}
.x17_c00171{left:420.420000px;}
.x79_c00171{left:423.420000px;}
.x60_c00171{left:424.920000px;}
.x32_c00171{left:435.000000px;}
.x6a_c00171{left:446.580000px;}
.x55_c00171{left:452.580000px;}
.x40_c00171{left:454.080000px;}
.x88_c00171{left:456.000000px;}
.x26_c00171{left:457.500000px;}
.xc_c00171{left:459.000000px;}
.x85_c00171{left:460.500000px;}
.x8b_c00171{left:462.420000px;}
.x9c_c00171{left:463.500000px;}
.x8e_c00171{left:465.000000px;}
.x18_c00171{left:469.500000px;}
.x41_c00171{left:472.920000px;}
.x4b_c00171{left:477.420000px;}
.x7a_c00171{left:479.580000px;}
.x70_c00171{left:481.920000px;}
.x33_c00171{left:484.080000px;}
.x81_c00171{left:491.580000px;}
.x42_c00171{left:497.580000px;}
.x96_c00171{left:499.500000px;}
.x89_c00171{left:501.000000px;}
.x8c_c00171{left:502.500000px;}
.x6b_c00171{left:504.000000px;}
.x56_c00171{left:505.920000px;}
.x4c_c00171{left:507.000000px;}
.xd_c00171{left:514.500000px;}
.x27_c00171{left:523.500000px;}
.x71_c00171{left:526.500000px;}
.x19_c00171{left:529.080000px;}
.x34_c00171{left:534.000000px;}
.x7b_c00171{left:535.500000px;}
.x91_c00171{left:537.000000px;}
.x6c_c00171{left:540.000000px;}
.x86_c00171{left:541.080000px;}
.x61_c00171{left:542.580000px;}
.x9e_c00171{left:544.500000px;}
.x90_c00171{left:546.000000px;}
.x7c_c00171{left:556.920000px;}
.x62_c00171{left:561.420000px;}
.x84_c00171{left:567.000000px;}
.x43_c00171{left:568.080000px;}
.x1a_c00171{left:574.920000px;}
.x28_c00171{left:577.920000px;}
.x72_c00171{left:579.000000px;}
.x9d_c00171{left:580.500000px;}
.x87_c00171{left:582.000000px;}
.x82_c00171{left:585.420000px;}
.xe_c00171{left:586.920000px;}
.x35_c00171{left:591.000000px;}
.x57_c00171{left:598.080000px;}
.x4d_c00171{left:607.500000px;}
.x73_c00171{left:610.080000px;}
.x29_c00171{left:613.920000px;}
.x1b_c00171{left:615.420000px;}
.x58_c00171{left:618.420000px;}
.xf_c00171{left:625.080000px;}
.x63_c00171{left:630.000000px;}
.x36_c00171{left:637.500000px;}
.x6d_c00171{left:639.000000px;}
.x2a_c00171{left:640.500000px;}
.x1c_c00171{left:642.420000px;}
.x59_c00171{left:645.000000px;}
.x7d_c00171{left:658.500000px;}
.x10_c00171{left:661.080000px;}
.x4e_c00171{left:664.500000px;}
.x64_c00171{left:673.500000px;}
.x37_c00171{left:682.500000px;}
.x74_c00171{left:685.500000px;}
.x1d_c00171{left:689.580000px;}
.x2b_c00171{left:695.580000px;}
.x38_c00171{left:702.000000px;}
.x11_c00171{left:704.580000px;}
.x1e_c00171{left:709.920000px;}
.x44_c00171{left:711.420000px;}
.x4f_c00171{left:720.000000px;}
.x7e_c00171{left:723.000000px;}
@media print{
.v1_c00171{vertical-align:-5.333333pt;}
.v0_c00171{vertical-align:0.000000pt;}
.ls0_c00171{letter-spacing:0.000000pt;}
.ws0_c00171{word-spacing:-2.959843pt;}
.ws11_c00171{word-spacing:0.000000pt;}
.ws5_c00171{word-spacing:15.344817pt;}
.ws2_c00171{word-spacing:15.887082pt;}
.wsf_c00171{word-spacing:16.123479pt;}
.wsc_c00171{word-spacing:17.440722pt;}
.wse_c00171{word-spacing:19.221114pt;}
.wsd_c00171{word-spacing:19.503459pt;}
.ws8_c00171{word-spacing:21.091652pt;}
.ws10_c00171{word-spacing:21.126233pt;}
.wsb_c00171{word-spacing:29.900800pt;}
.ws3_c00171{word-spacing:31.563004pt;}
.ws7_c00171{word-spacing:33.049529pt;}
.ws9_c00171{word-spacing:36.439642pt;}
.ws1_c00171{word-spacing:42.417089pt;}
.ws4_c00171{word-spacing:43.561211pt;}
.ws6_c00171{word-spacing:59.074377pt;}
.wsa_c00171{word-spacing:61.804625pt;}
._2_c00171{width:23.193772pt;}
._0_c00171{width:27.312292pt;}
._1_c00171{width:42.285227pt;}
.fs6_c00171{font-size:3.040000pt;}
.fs9_c00171{font-size:10.560000pt;}
.fs8_c00171{font-size:12.106667pt;}
.fs5_c00171{font-size:16.640000pt;}
.fs0_c00171{font-size:18.133333pt;}
.fs3_c00171{font-size:22.666667pt;}
.fs1_c00171{font-size:25.706667pt;}
.fs4_c00171{font-size:28.746667pt;}
.fs2_c00171{font-size:31.733333pt;}
.fs7_c00171{font-size:34.773333pt;}
.y0_c00171{bottom:0.000000pt;}
.y45_c00171{bottom:226.440000pt;}
.y44_c00171{bottom:227.773333pt;}
.y41_c00171{bottom:228.360000pt;}
.y42_c00171{bottom:228.560000pt;}
.y46_c00171{bottom:229.306667pt;}
.y43_c00171{bottom:229.693333pt;}
.y3e_c00171{bottom:243.773333pt;}
.y3c_c00171{bottom:244.733333pt;}
.y3b_c00171{bottom:245.693333pt;}
.y3f_c00171{bottom:245.893333pt;}
.y3d_c00171{bottom:246.066667pt;}
.y40_c00171{bottom:246.640000pt;}
.y3a_c00171{bottom:260.360000pt;}
.y36_c00171{bottom:261.106667pt;}
.y38_c00171{bottom:262.440000pt;}
.y35_c00171{bottom:263.026667pt;}
.y39_c00171{bottom:263.226667pt;}
.y37_c00171{bottom:264.360000pt;}
.y34_c00171{bottom:277.693333pt;}
.y31_c00171{bottom:278.826667pt;}
.y33_c00171{bottom:279.773333pt;}
.y2e_c00171{bottom:280.360000pt;}
.y2f_c00171{bottom:280.733333pt;}
.y32_c00171{bottom:281.306667pt;}
.y30_c00171{bottom:281.693333pt;}
.y28_c00171{bottom:297.106667pt;}
.y2d_c00171{bottom:298.066667pt;}
.y2b_c00171{bottom:298.440000pt;}
.y29_c00171{bottom:298.640000pt;}
.y2a_c00171{bottom:299.026667pt;}
.y2c_c00171{bottom:299.973333pt;}
.y27_c00171{bottom:314.066667pt;}
.y25_c00171{bottom:314.440000pt;}
.y23_c00171{bottom:316.360000pt;}
.y26_c00171{bottom:317.306667pt;}
.y24_c00171{bottom:317.706667pt;}
.ybb_c00171{bottom:341.893333pt;}
.ybc_c00171{bottom:342.840000pt;}
.yb8_c00171{bottom:353.506667pt;}
.yb9_c00171{bottom:354.466667pt;}
.yb7_c00171{bottom:354.840000pt;}
.yba_c00171{bottom:356.373333pt;}
.yb4_c00171{bottom:365.506667pt;}
.yb5_c00171{bottom:366.466667pt;}
.yb1_c00171{bottom:366.840000pt;}
.yb2_c00171{bottom:368.173333pt;}
.yb6_c00171{bottom:368.373333pt;}
.yb3_c00171{bottom:370.840000pt;}
.yb0_c00171{bottom:378.840000pt;}
.yaf_c00171{bottom:379.226667pt;}
.yae_c00171{bottom:379.800000pt;}
.yad_c00171{bottom:380.173333pt;}
.yac_c00171{bottom:389.893333pt;}
.yab_c00171{bottom:390.840000pt;}
.ya9_c00171{bottom:391.800000pt;}
.yaa_c00171{bottom:392.173333pt;}
.ya8_c00171{bottom:392.560000pt;}
.ya6_c00171{bottom:401.893333pt;}
.ya7_c00171{bottom:402.840000pt;}
.ya4_c00171{bottom:403.226667pt;}
.ya5_c00171{bottom:404.173333pt;}
.ya3_c00171{bottom:415.226667pt;}
.ya2_c00171{bottom:416.173333pt;}
.ya1_c00171{bottom:417.506667pt;}
.ya0_c00171{bottom:427.226667pt;}
.y9f_c00171{bottom:428.173333pt;}
.y9e_c00171{bottom:428.560000pt;}
.y9d_c00171{bottom:440.173333pt;}
.y9c_c00171{bottom:441.506667pt;}
.y9b_c00171{bottom:451.226667pt;}
.y9a_c00171{bottom:452.173333pt;}
.y98_c00171{bottom:452.560000pt;}
.y99_c00171{bottom:453.506667pt;}
.y96_c00171{bottom:464.173333pt;}
.y95_c00171{bottom:464.560000pt;}
.y97_c00171{bottom:465.506667pt;}
.y94_c00171{bottom:476.560000pt;}
.y93_c00171{bottom:477.506667pt;}
.y90_c00171{bottom:488.560000pt;}
.y92_c00171{bottom:489.506667pt;}
.y91_c00171{bottom:490.466667pt;}
.y8e_c00171{bottom:500.560000pt;}
.y8f_c00171{bottom:501.506667pt;}
.y8b_c00171{bottom:512.560000pt;}
.y8d_c00171{bottom:513.506667pt;}
.y8c_c00171{bottom:513.893333pt;}
.y8a_c00171{bottom:526.840000pt;}
.y86_c00171{bottom:537.893333pt;}
.y87_c00171{bottom:538.466667pt;}
.y88_c00171{bottom:538.840000pt;}
.y89_c00171{bottom:539.040000pt;}
.y85_c00171{bottom:549.893333pt;}
.y84_c00171{bottom:550.840000pt;}
.y82_c00171{bottom:552.173333pt;}
.y83_c00171{bottom:552.373333pt;}
.y81_c00171{bottom:562.840000pt;}
.y7f_c00171{bottom:564.173333pt;}
.y80_c00171{bottom:564.373333pt;}
.y7e_c00171{bottom:574.840000pt;}
.y7c_c00171{bottom:576.173333pt;}
.y7d_c00171{bottom:576.373333pt;}
.y7b_c00171{bottom:586.840000pt;}
.y78_c00171{bottom:587.226667pt;}
.y7a_c00171{bottom:588.173333pt;}
.y79_c00171{bottom:588.373333pt;}
.y77_c00171{bottom:599.226667pt;}
.y76_c00171{bottom:600.173333pt;}
.y74_c00171{bottom:611.226667pt;}
.y75_c00171{bottom:612.173333pt;}
.y73_c00171{bottom:613.506667pt;}
.y71_c00171{bottom:623.226667pt;}
.y72_c00171{bottom:624.173333pt;}
.y70_c00171{bottom:624.560000pt;}
.y6f_c00171{bottom:625.506667pt;}
.y6e_c00171{bottom:636.173333pt;}
.y6d_c00171{bottom:636.560000pt;}
.y6c_c00171{bottom:637.506667pt;}
.y6b_c00171{bottom:648.173333pt;}
.y6a_c00171{bottom:648.560000pt;}
.y69_c00171{bottom:660.173333pt;}
.y67_c00171{bottom:660.560000pt;}
.y68_c00171{bottom:661.506667pt;}
.y66_c00171{bottom:661.893333pt;}
.y65_c00171{bottom:662.840000pt;}
.y64_c00171{bottom:673.506667pt;}
.y63_c00171{bottom:673.893333pt;}
.y62_c00171{bottom:674.840000pt;}
.y61_c00171{bottom:685.506667pt;}
.y60_c00171{bottom:685.893333pt;}
.y5f_c00171{bottom:686.840000pt;}
.y5d_c00171{bottom:696.560000pt;}
.y5e_c00171{bottom:697.506667pt;}
.y5c_c00171{bottom:697.893333pt;}
.y5b_c00171{bottom:698.840000pt;}
.y5a_c00171{bottom:709.506667pt;}
.y59_c00171{bottom:709.893333pt;}
.y58_c00171{bottom:711.226667pt;}
.y57_c00171{bottom:712.173333pt;}
.y56_c00171{bottom:721.893333pt;}
.y55_c00171{bottom:722.840000pt;}
.y52_c00171{bottom:737.893333pt;}
.y54_c00171{bottom:738.840000pt;}
.y53_c00171{bottom:740.173333pt;}
.y51_c00171{bottom:749.506667pt;}
.y50_c00171{bottom:750.466667pt;}
.y4f_c00171{bottom:750.840000pt;}
.y4e_c00171{bottom:752.173333pt;}
.y4d_c00171{bottom:767.226667pt;}
.y4c_c00171{bottom:781.306667pt;}
.y4b_c00171{bottom:782.266667pt;}
.y49_c00171{bottom:794.640000pt;}
.y4a_c00171{bottom:795.600000pt;}
.y48_c00171{bottom:813.506667pt;}
.y47_c00171{bottom:814.266667pt;}
.y22_c00171{bottom:839.600000pt;}
.y21_c00171{bottom:840.360000pt;}
.y1f_c00171{bottom:855.773333pt;}
.y1c_c00171{bottom:857.693333pt;}
.y20_c00171{bottom:857.893333pt;}
.y1e_c00171{bottom:858.640000pt;}
.y1d_c00171{bottom:859.026667pt;}
.y1b_c00171{bottom:874.440000pt;}
.y1a_c00171{bottom:875.400000pt;}
.y18_c00171{bottom:876.360000pt;}
.y19_c00171{bottom:877.306667pt;}
.y17_c00171{bottom:890.440000pt;}
.y14_c00171{bottom:890.640000pt;}
.y16_c00171{bottom:891.400000pt;}
.y11_c00171{bottom:891.773333pt;}
.y15_c00171{bottom:892.360000pt;}
.y12_c00171{bottom:892.560000pt;}
.y13_c00171{bottom:893.693333pt;}
.yf_c00171{bottom:907.973333pt;}
.ya_c00171{bottom:908.733333pt;}
.yd_c00171{bottom:909.106667pt;}
.y10_c00171{bottom:909.693333pt;}
.yc_c00171{bottom:909.893333pt;}
.ye_c00171{bottom:910.066667pt;}
.yb_c00171{bottom:911.026667pt;}
.y8_c00171{bottom:925.693333pt;}
.y9_c00171{bottom:926.440000pt;}
.y7_c00171{bottom:927.400000pt;}
.y6_c00171{bottom:928.360000pt;}
.y4_c00171{bottom:943.773333pt;}
.y3_c00171{bottom:945.693333pt;}
.y5_c00171{bottom:946.640000pt;}
.y2_c00171{bottom:977.693333pt;}
.y1_c00171{bottom:979.600000pt;}
.h7_c00171{height:3.739141pt;}
.ha_c00171{height:12.988594pt;}
.h9_c00171{height:14.890964pt;}
.h6_c00171{height:20.466875pt;}
.h1_c00171{height:22.303646pt;}
.h4_c00171{height:27.879557pt;}
.h2_c00171{height:31.618698pt;}
.h5_c00171{height:35.357839pt;}
.h3_c00171{height:39.031380pt;}
.h8_c00171{height:42.770521pt;}
.h0_c00171{height:1186.666667pt;}
.w0_c00171{width:782.666667pt;}
.x0_c00171{left:0.000000pt;}
.x5a_c00171{left:133.333333pt;}
.x50_c00171{left:134.666667pt;}
.x1f_c00171{left:136.000000pt;}
.x2_c00171{left:137.706667pt;}
.x45_c00171{left:147.240000pt;}
.x3_c00171{left:150.293333pt;}
.x6e_c00171{left:160.000000pt;}
.x75_c00171{left:162.666667pt;}
.x12_c00171{left:169.706667pt;}
.x20_c00171{left:176.000000pt;}
.x65_c00171{left:176.960000pt;}
.x5b_c00171{left:182.666667pt;}
.x51_c00171{left:184.000000pt;}
.x39_c00171{left:191.626667pt;}
.x13_c00171{left:193.333333pt;}
.x4_c00171{left:199.040000pt;}
.x2c_c00171{left:201.333333pt;}
.x76_c00171{left:209.706667pt;}
.x46_c00171{left:210.666667pt;}
.x21_c00171{left:216.000000pt;}
.x66_c00171{left:218.666667pt;}
.x2d_c00171{left:222.666667pt;}
.x5c_c00171{left:228.960000pt;}
.x47_c00171{left:230.093333pt;}
.x2e_c00171{left:236.373333pt;}
.x22_c00171{left:240.373333pt;}
.x3a_c00171{left:246.666667pt;}
.x67_c00171{left:247.626667pt;}
.x14_c00171{left:249.333333pt;}
.x3d_c00171{left:252.960000pt;}
.x7f_c00171{left:256.000000pt;}
.x5d_c00171{left:256.960000pt;}
.x5_c00171{left:259.800000pt;}
.x52_c00171{left:261.333333pt;}
.x9a_c00171{left:266.666667pt;}
.x92_c00171{left:268.373333pt;}
.x3b_c00171{left:270.666667pt;}
.x8f_c00171{left:275.626667pt;}
.x5e_c00171{left:277.706667pt;}
.x3e_c00171{left:280.000000pt;}
.x6_c00171{left:280.960000pt;}
.x23_c00171{left:284.000000pt;}
.x8d_c00171{left:285.706667pt;}
.x2f_c00171{left:286.666667pt;}
.x15_c00171{left:288.000000pt;}
.x99_c00171{left:291.626667pt;}
.x6f_c00171{left:292.760000pt;}
.x9b_c00171{left:296.000000pt;}
.x53_c00171{left:300.373333pt;}
.x5f_c00171{left:301.333333pt;}
.x93_c00171{left:303.626667pt;}
.x48_c00171{left:307.040000pt;}
.x7_c00171{left:308.000000pt;}
.x77_c00171{left:309.333333pt;}
.x97_c00171{left:312.000000pt;}
.x3f_c00171{left:313.333333pt;}
.x94_c00171{left:314.666667pt;}
.x83_c00171{left:315.626667pt;}
.x8a_c00171{left:317.333333pt;}
.x9f_c00171{left:318.666667pt;}
.x8_c00171{left:320.000000pt;}
.x95_c00171{left:320.960000pt;}
.x16_c00171{left:324.000000pt;}
.x54_c00171{left:325.706667pt;}
.x30_c00171{left:327.040000pt;}
.x80_c00171{left:329.333333pt;}
.x49_c00171{left:332.373333pt;}
.x9_c00171{left:334.666667pt;}
.x68_c00171{left:336.373333pt;}
.x24_c00171{left:339.040000pt;}
.x78_c00171{left:340.373333pt;}
.xa1_c00171{left:344.000000pt;}
.x98_c00171{left:348.000000pt;}
.xa_c00171{left:349.333333pt;}
.xa2_c00171{left:351.040000pt;}
.xa0_c00171{left:352.000000pt;}
.x1_c00171{left:356.000000pt;}
.x69_c00171{left:359.040000pt;}
.x31_c00171{left:361.706667pt;}
.xb_c00171{left:363.626667pt;}
.x4a_c00171{left:365.706667pt;}
.x25_c00171{left:368.000000pt;}
.x3c_c00171{left:368.960000pt;}
.x17_c00171{left:373.706667pt;}
.x79_c00171{left:376.373333pt;}
.x60_c00171{left:377.706667pt;}
.x32_c00171{left:386.666667pt;}
.x6a_c00171{left:396.960000pt;}
.x55_c00171{left:402.293333pt;}
.x40_c00171{left:403.626667pt;}
.x88_c00171{left:405.333333pt;}
.x26_c00171{left:406.666667pt;}
.xc_c00171{left:408.000000pt;}
.x85_c00171{left:409.333333pt;}
.x8b_c00171{left:411.040000pt;}
.x9c_c00171{left:412.000000pt;}
.x8e_c00171{left:413.333333pt;}
.x18_c00171{left:417.333333pt;}
.x41_c00171{left:420.373333pt;}
.x4b_c00171{left:424.373333pt;}
.x7a_c00171{left:426.293333pt;}
.x70_c00171{left:428.373333pt;}
.x33_c00171{left:430.293333pt;}
.x81_c00171{left:436.960000pt;}
.x42_c00171{left:442.293333pt;}
.x96_c00171{left:444.000000pt;}
.x89_c00171{left:445.333333pt;}
.x8c_c00171{left:446.666667pt;}
.x6b_c00171{left:448.000000pt;}
.x56_c00171{left:449.706667pt;}
.x4c_c00171{left:450.666667pt;}
.xd_c00171{left:457.333333pt;}
.x27_c00171{left:465.333333pt;}
.x71_c00171{left:468.000000pt;}
.x19_c00171{left:470.293333pt;}
.x34_c00171{left:474.666667pt;}
.x7b_c00171{left:476.000000pt;}
.x91_c00171{left:477.333333pt;}
.x6c_c00171{left:480.000000pt;}
.x86_c00171{left:480.960000pt;}
.x61_c00171{left:482.293333pt;}
.x9e_c00171{left:484.000000pt;}
.x90_c00171{left:485.333333pt;}
.x7c_c00171{left:495.040000pt;}
.x62_c00171{left:499.040000pt;}
.x84_c00171{left:504.000000pt;}
.x43_c00171{left:504.960000pt;}
.x1a_c00171{left:511.040000pt;}
.x28_c00171{left:513.706667pt;}
.x72_c00171{left:514.666667pt;}
.x9d_c00171{left:516.000000pt;}
.x87_c00171{left:517.333333pt;}
.x82_c00171{left:520.373333pt;}
.xe_c00171{left:521.706667pt;}
.x35_c00171{left:525.333333pt;}
.x57_c00171{left:531.626667pt;}
.x4d_c00171{left:540.000000pt;}
.x73_c00171{left:542.293333pt;}
.x29_c00171{left:545.706667pt;}
.x1b_c00171{left:547.040000pt;}
.x58_c00171{left:549.706667pt;}
.xf_c00171{left:555.626667pt;}
.x63_c00171{left:560.000000pt;}
.x36_c00171{left:566.666667pt;}
.x6d_c00171{left:568.000000pt;}
.x2a_c00171{left:569.333333pt;}
.x1c_c00171{left:571.040000pt;}
.x59_c00171{left:573.333333pt;}
.x7d_c00171{left:585.333333pt;}
.x10_c00171{left:587.626667pt;}
.x4e_c00171{left:590.666667pt;}
.x64_c00171{left:598.666667pt;}
.x37_c00171{left:606.666667pt;}
.x74_c00171{left:609.333333pt;}
.x1d_c00171{left:612.960000pt;}
.x2b_c00171{left:618.293333pt;}
.x38_c00171{left:624.000000pt;}
.x11_c00171{left:626.293333pt;}
.x1e_c00171{left:631.040000pt;}
.x44_c00171{left:632.373333pt;}
.x4f_c00171{left:640.000000pt;}
.x7e_c00171{left:642.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_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_bd191748f74b755e61f52684.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m66_c00172{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m99_c00172{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m92_c00172{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m4b_c00172{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.m81_c00172{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mb3_c00172{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.mbd_c00172{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m2c_c00172{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m6e_c00172{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m86_c00172{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mde_c00172{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m20_c00172{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.ma0_c00172{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m2b_c00172{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m40_c00172{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m64_c00172{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m8e_c00172{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m27_c00172{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.mef_c00172{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m4f_c00172{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m88_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);}
.ma3_c00172{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m100_c00172{transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);}
.m23_c00172{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mc7_c00172{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.m61_c00172{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m101_c00172{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m43_c00172{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m42_c00172{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.mc5_c00172{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m3b_c00172{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m52_c00172{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.mf_c00172{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.mc0_c00172{transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);}
.meb_c00172{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m41_c00172{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m29_c00172{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m11_c00172{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mf2_c00172{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m35_c00172{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mc1_c00172{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.mb7_c00172{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m33_c00172{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m4e_c00172{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.ma6_c00172{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.mf8_c00172{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m3e_c00172{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.md9_c00172{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m9f_c00172{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m2f_c00172{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.md3_c00172{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m3a_c00172{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mba_c00172{transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);}
.m46_c00172{transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);}
.m5e_c00172{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m63_c00172{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m48_c00172{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m4d_c00172{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.mdc_c00172{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.mfe_c00172{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m6a_c00172{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m39_c00172{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.mc2_c00172{transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);}
.m104_c00172{transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);}
.m5d_c00172{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.mfb_c00172{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m65_c00172{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m80_c00172{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m8d_c00172{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.m69_c00172{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.me7_c00172{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.mf4_c00172{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m49_c00172{transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);}
.mf1_c00172{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m95_c00172{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m4a_c00172{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m53_c00172{transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);}
.m84_c00172{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.me8_c00172{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m7c_c00172{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.md5_c00172{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.me5_c00172{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.md6_c00172{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m56_c00172{transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);}
.m10a_c00172{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m6b_c00172{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m47_c00172{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.ma_c00172{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m44_c00172{transform:matrix(0.474790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474790,0.000000,0.000000,0.250000,0,0);}
.md1_c00172{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.ma7_c00172{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.ma8_c00172{transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);}
.m5b_c00172{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m107_c00172{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.me0_c00172{transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);}
.mb4_c00172{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m5_c00172{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m50_c00172{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m102_c00172{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m1_c00172{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m30_c00172{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m71_c00172{transform:matrix(0.492115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492115,0.000000,0.000000,0.250000,0,0);}
.m1a_c00172{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m18_c00172{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m17_c00172{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);}
.me2_c00172{transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);}
.m105_c00172{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m76_c00172{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m55_c00172{transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);}
.m94_c00172{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.mf5_c00172{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m3d_c00172{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mc3_c00172{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m1f_c00172{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mb6_c00172{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m37_c00172{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m108_c00172{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.mff_c00172{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m25_c00172{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m68_c00172{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m1c_c00172{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m10_c00172{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.md0_c00172{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.maf_c00172{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m3f_c00172{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m34_c00172{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.md4_c00172{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.mfc_c00172{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m7b_c00172{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m7f_c00172{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m67_c00172{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mc6_c00172{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);}
.mbe_c00172{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.med_c00172{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m8a_c00172{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m91_c00172{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m16_c00172{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mb_c00172{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m70_c00172{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.mdd_c00172{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mae_c00172{transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);}
.m85_c00172{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.mf6_c00172{transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);}
.m97_c00172{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m6_c00172{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m73_c00172{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m79_c00172{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m83_c00172{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m36_c00172{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m77_c00172{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mb0_c00172{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m9e_c00172{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m13_c00172{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m78_c00172{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mb2_c00172{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m96_c00172{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mce_c00172{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m2d_c00172{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m6c_c00172{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m22_c00172{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m21_c00172{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mb9_c00172{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.mf9_c00172{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mea_c00172{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.m19_c00172{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mac_c00172{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.me_c00172{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m6f_c00172{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m103_c00172{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m1b_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);}
.mc_c00172{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mfa_c00172{transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);}
.m7d_c00172{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m7a_c00172{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mbc_c00172{transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);}
.m2a_c00172{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.ma5_c00172{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.md_c00172{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mec_c00172{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m87_c00172{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m90_c00172{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mcc_c00172{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m60_c00172{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m3_c00172{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m54_c00172{transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);}
.ma1_c00172{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m2e_c00172{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m72_c00172{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m7e_c00172{transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);}
.mda_c00172{transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);}
.m74_c00172{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m4_c00172{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m51_c00172{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m106_c00172{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m5c_c00172{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.m24_c00172{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m82_c00172{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m12_c00172{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m9b_c00172{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mb8_c00172{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m15_c00172{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m4c_c00172{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m28_c00172{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.m7_c00172{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m109_c00172{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mdb_c00172{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.m8f_c00172{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m1d_c00172{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);}
.m58_c00172{transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);}
.m0_c00172{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.mbf_c00172{transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);}
.mee_c00172{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m9_c00172{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m5a_c00172{transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);}
.m1e_c00172{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m32_c00172{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.maa_c00172{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.mbb_c00172{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m93_c00172{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);}
.m45_c00172{transform:matrix(0.627593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627593,0.000000,0.000000,0.250000,0,0);}
.mc4_c00172{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.mcb_c00172{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.mb5_c00172{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.mf7_c00172{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.mc9_c00172{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.mad_c00172{transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);}
.mfd_c00172{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m75_c00172{transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);}
.m57_c00172{transform:matrix(0.652206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652206,0.000000,0.000000,0.250000,0,0);}
.mca_c00172{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m14_c00172{transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);}
.mdf_c00172{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.mab_c00172{transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);}
.m8c_c00172{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m8_c00172{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m98_c00172{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m59_c00172{transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);}
.mcf_c00172{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m9d_c00172{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m89_c00172{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mcd_c00172{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.me1_c00172{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.md7_c00172{transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);}
.md2_c00172{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.ma9_c00172{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);}
.m31_c00172{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.me6_c00172{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m9a_c00172{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.mf3_c00172{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.me3_c00172{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m26_c00172{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mf0_c00172{transform:matrix(0.755609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.755609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.755609,0.000000,0.000000,0.250000,0,0);}
.m6d_c00172{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m9c_c00172{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.ma2_c00172{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m38_c00172{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m2_c00172{transform:matrix(0.780837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780837,0.000000,0.000000,0.250000,0,0);}
.m8b_c00172{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.me9_c00172{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m3c_c00172{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.me4_c00172{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.md8_c00172{transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);}
.mc8_c00172{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.ma4_c00172{transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);}
.mb1_c00172{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m5f_c00172{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m62_c00172{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v2_c00172{vertical-align:-4.320000px;}
.v0_c00172{vertical-align:0.000000px;}
.v1_c00172{vertical-align:6.000000px;}
.ls1_c00172{letter-spacing:0.000000px;}
.ls0_c00172{letter-spacing:12.657600px;}
.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;}
}
.ws3_c00172{word-spacing:-16.889280px;}
.ws2_c00172{word-spacing:-7.184952px;}
.ws0_c00172{word-spacing:-4.546737px;}
.ws1_c00172{word-spacing:-2.923710px;}
.ws4_c00172{word-spacing:0.000000px;}
._0_c00172{width:2.550578px;}
.fc0_c00172{color:transparent;}
.fs7_c00172{font-size:3.420000px;}
.fs2_c00172{font-size:13.620000px;}
.fs5_c00172{font-size:18.720000px;}
.fs0_c00172{font-size:20.400000px;}
.fs3_c00172{font-size:25.500000px;}
.fs1_c00172{font-size:28.920000px;}
.fs6_c00172{font-size:32.340000px;}
.fs4_c00172{font-size:35.700000px;}
.y0_c00172{bottom:0.000000px;}
.y3_c00172{bottom:226.695000px;}
.yc9_c00172{bottom:254.325000px;}
.yc7_c00172{bottom:254.970000px;}
.yca_c00172{bottom:255.405000px;}
.yc8_c00172{bottom:256.470000px;}
.yc6_c00172{bottom:272.745000px;}
.yc5_c00172{bottom:273.630000px;}
.yc4_c00172{bottom:274.905000px;}
.yc2_c00172{bottom:292.245000px;}
.yc1_c00172{bottom:293.325000px;}
.yc3_c00172{bottom:293.970000px;}
.yc0_c00172{bottom:294.405000px;}
.ybe_c00172{bottom:311.745000px;}
.ybd_c00172{bottom:312.825000px;}
.ybc_c00172{bottom:313.905000px;}
.ybb_c00172{bottom:314.130000px;}
.ybf_c00172{bottom:314.970000px;}
.yb8_c00172{bottom:330.405000px;}
.yba_c00172{bottom:331.245000px;}
.yb5_c00172{bottom:332.325000px;}
.yb4_c00172{bottom:332.745000px;}
.yb7_c00172{bottom:333.405000px;}
.yb9_c00172{bottom:333.630000px;}
.yb6_c00172{bottom:333.825000px;}
.yb3_c00172{bottom:334.470000px;}
.yb2_c00172{bottom:334.905000px;}
.yaf_c00172{bottom:350.745000px;}
.yab_c00172{bottom:350.970000px;}
.yae_c00172{bottom:351.825000px;}
.yac_c00172{bottom:352.245000px;}
.yb1_c00172{bottom:352.905000px;}
.yad_c00172{bottom:353.130000px;}
.yb0_c00172{bottom:353.970000px;}
.yaa_c00172{bottom:354.405000px;}
.ya9_c00172{bottom:370.245000px;}
.ya7_c00172{bottom:371.325000px;}
.ya4_c00172{bottom:371.745000px;}
.ya8_c00172{bottom:372.405000px;}
.ya3_c00172{bottom:372.630000px;}
.ya6_c00172{bottom:372.825000px;}
.ya2_c00172{bottom:373.050000px;}
.ya5_c00172{bottom:373.905000px;}
.ya0_c00172{bottom:390.405000px;}
.y9f_c00172{bottom:391.245000px;}
.ya1_c00172{bottom:392.130000px;}
.y9c_c00172{bottom:392.325000px;}
.y9e_c00172{bottom:393.405000px;}
.y9d_c00172{bottom:393.630000px;}
.y9a_c00172{bottom:409.905000px;}
.y96_c00172{bottom:410.745000px;}
.y9b_c00172{bottom:410.970000px;}
.y99_c00172{bottom:412.470000px;}
.y98_c00172{bottom:412.905000px;}
.y97_c00172{bottom:412.920000px;}
.y95_c00172{bottom:437.325000px;}
.y90_c00172{bottom:437.550000px;}
.y91_c00172{bottom:438.405000px;}
.y94_c00172{bottom:439.470000px;}
.y93_c00172{bottom:439.695000px;}
.y92_c00172{bottom:440.550000px;}
.y8c_c00172{bottom:453.405000px;}
.y8f_c00172{bottom:453.630000px;}
.y8e_c00172{bottom:454.470000px;}
.y8d_c00172{bottom:454.695000px;}
.y86_c00172{bottom:467.325000px;}
.y85_c00172{bottom:467.550000px;}
.y8b_c00172{bottom:468.405000px;}
.y88_c00172{bottom:469.050000px;}
.y8a_c00172{bottom:469.470000px;}
.y87_c00172{bottom:469.695000px;}
.y89_c00172{bottom:470.550000px;}
.y83_c00172{bottom:481.470000px;}
.y82_c00172{bottom:482.325000px;}
.y80_c00172{bottom:483.405000px;}
.y84_c00172{bottom:484.470000px;}
.y81_c00172{bottom:485.550000px;}
.y7d_c00172{bottom:497.325000px;}
.y7e_c00172{bottom:497.550000px;}
.y7c_c00172{bottom:498.405000px;}
.y7a_c00172{bottom:498.630000px;}
.y7b_c00172{bottom:499.470000px;}
.y7f_c00172{bottom:500.550000px;}
.y78_c00172{bottom:511.470000px;}
.y77_c00172{bottom:512.325000px;}
.y75_c00172{bottom:513.405000px;}
.y74_c00172{bottom:514.470000px;}
.y76_c00172{bottom:514.695000px;}
.y79_c00172{bottom:515.550000px;}
.y73_c00172{bottom:526.905000px;}
.y6e_c00172{bottom:527.325000px;}
.y72_c00172{bottom:527.970000px;}
.y6f_c00172{bottom:528.405000px;}
.y6c_c00172{bottom:528.630000px;}
.y70_c00172{bottom:529.050000px;}
.y6d_c00172{bottom:529.470000px;}
.y71_c00172{bottom:530.550000px;}
.y68_c00172{bottom:550.905000px;}
.y69_c00172{bottom:553.245000px;}
.y6a_c00172{bottom:554.130000px;}
.y6b_c00172{bottom:555.405000px;}
.y67_c00172{bottom:571.245000px;}
.y66_c00172{bottom:572.745000px;}
.y65_c00172{bottom:574.905000px;}
.y64_c00172{bottom:575.970000px;}
.y62_c00172{bottom:592.245000px;}
.y63_c00172{bottom:593.130000px;}
.y61_c00172{bottom:594.405000px;}
.y5f_c00172{bottom:610.905000px;}
.y5c_c00172{bottom:611.325000px;}
.y60_c00172{bottom:611.550000px;}
.y5d_c00172{bottom:611.745000px;}
.y5e_c00172{bottom:613.050000px;}
.y5a_c00172{bottom:613.905000px;}
.y5b_c00172{bottom:614.130000px;}
.y59_c00172{bottom:631.245000px;}
.y57_c00172{bottom:633.405000px;}
.y58_c00172{bottom:633.630000px;}
.y53_c00172{bottom:652.245000px;}
.y54_c00172{bottom:652.905000px;}
.y56_c00172{bottom:653.130000px;}
.y55_c00172{bottom:653.970000px;}
.y52_c00172{bottom:654.405000px;}
.y4f_c00172{bottom:671.325000px;}
.y50_c00172{bottom:671.745000px;}
.y51_c00172{bottom:672.630000px;}
.y4d_c00172{bottom:673.905000px;}
.y4e_c00172{bottom:673.920000px;}
.y4c_c00172{bottom:693.405000px;}
.y4a_c00172{bottom:710.745000px;}
.y4b_c00172{bottom:711.825000px;}
.y49_c00172{bottom:712.470000px;}
.y48_c00172{bottom:712.905000px;}
.y47_c00172{bottom:730.245000px;}
.y44_c00172{bottom:732.405000px;}
.y45_c00172{bottom:732.420000px;}
.y46_c00172{bottom:733.470000px;}
.y42_c00172{bottom:750.825000px;}
.y41_c00172{bottom:751.245000px;}
.y3e_c00172{bottom:751.905000px;}
.y3f_c00172{bottom:752.130000px;}
.y43_c00172{bottom:753.405000px;}
.y40_c00172{bottom:753.420000px;}
.y38_c00172{bottom:769.245000px;}
.y3a_c00172{bottom:770.325000px;}
.y3c_c00172{bottom:770.745000px;}
.y3b_c00172{bottom:771.405000px;}
.y3d_c00172{bottom:772.905000px;}
.y39_c00172{bottom:772.920000px;}
.y35_c00172{bottom:788.745000px;}
.y37_c00172{bottom:792.405000px;}
.y36_c00172{bottom:792.420000px;}
.y34_c00172{bottom:812.970000px;}
.y33_c00172{bottom:815.550000px;}
.y30_c00172{bottom:828.405000px;}
.y31_c00172{bottom:829.470000px;}
.y32_c00172{bottom:830.550000px;}
.y2b_c00172{bottom:845.325000px;}
.y2a_c00172{bottom:845.970000px;}
.y29_c00172{bottom:846.405000px;}
.y2e_c00172{bottom:846.825000px;}
.y2f_c00172{bottom:847.050000px;}
.y2d_c00172{bottom:847.905000px;}
.y2c_c00172{bottom:848.550000px;}
.y26_c00172{bottom:869.745000px;}
.y28_c00172{bottom:870.825000px;}
.y27_c00172{bottom:871.905000px;}
.y24_c00172{bottom:904.245000px;}
.y25_c00172{bottom:906.405000px;}
.y20_c00172{bottom:923.745000px;}
.y21_c00172{bottom:924.630000px;}
.y1f_c00172{bottom:925.905000px;}
.y22_c00172{bottom:926.130000px;}
.y23_c00172{bottom:926.970000px;}
.y1d_c00172{bottom:943.245000px;}
.y1c_c00172{bottom:945.405000px;}
.y1e_c00172{bottom:945.630000px;}
.y1a_c00172{bottom:964.245000px;}
.y1b_c00172{bottom:965.130000px;}
.y19_c00172{bottom:966.405000px;}
.y15_c00172{bottom:982.245000px;}
.y17_c00172{bottom:983.745000px;}
.y18_c00172{bottom:984.405000px;}
.y16_c00172{bottom:985.470000px;}
.y14_c00172{bottom:985.905000px;}
.y10_c00172{bottom:1001.745000px;}
.y12_c00172{bottom:1003.245000px;}
.yf_c00172{bottom:1003.905000px;}
.y13_c00172{bottom:1004.130000px;}
.ye_c00172{bottom:1004.970000px;}
.y11_c00172{bottom:1005.405000px;}
.yd_c00172{bottom:1021.470000px;}
.yb_c00172{bottom:1023.405000px;}
.yc_c00172{bottom:1024.905000px;}
.y7_c00172{bottom:1042.245000px;}
.y9_c00172{bottom:1043.550000px;}
.y8_c00172{bottom:1044.405000px;}
.ya_c00172{bottom:1045.470000px;}
.y6_c00172{bottom:1060.905000px;}
.y4_c00172{bottom:1063.905000px;}
.y5_c00172{bottom:1064.970000px;}
.y2_c00172{bottom:1099.905000px;}
.y1_c00172{bottom:1102.050000px;}
.h9_c00172{height:4.206533px;}
.h3_c00172{height:16.752334px;}
.h7_c00172{height:23.025234px;}
.h1_c00172{height:25.091602px;}
.ha_c00172{height:27.044502px;}
.h4_c00172{height:31.364502px;}
.h2_c00172{height:35.571035px;}
.h8_c00172{height:39.777568px;}
.h6_c00172{height:41.571035px;}
.h5_c00172{height:43.910303px;}
.hb_c00172{height:45.777568px;}
.h0_c00172{height:1335.000000px;}
.w0_c00172{width:880.500000px;}
.x0_c00172{left:0.000000px;}
.x2e_c00172{left:151.500000px;}
.x4_c00172{left:153.420000px;}
.x59_c00172{left:160.500000px;}
.xac_c00172{left:165.000000px;}
.xb5_c00172{left:166.080000px;}
.x24_c00172{left:168.000000px;}
.xbb_c00172{left:169.500000px;}
.xe0_c00172{left:171.420000px;}
.xdc_c00172{left:172.500000px;}
.xe5_c00172{left:175.080000px;}
.xa2_c00172{left:183.000000px;}
.x2f_c00172{left:184.920000px;}
.x20_c00172{left:188.580000px;}
.x8e_c00172{left:190.080000px;}
.xb2_c00172{left:192.000000px;}
.xe9_c00172{left:193.080000px;}
.x80_c00172{left:198.000000px;}
.x5_c00172{left:199.920000px;}
.x25_c00172{left:201.000000px;}
.xad_c00172{left:202.080000px;}
.xd7_c00172{left:204.000000px;}
.xec_c00172{left:205.080000px;}
.xc3_c00172{left:207.000000px;}
.x68_c00172{left:208.920000px;}
.xb3_c00172{left:214.500000px;}
.xb6_c00172{left:219.000000px;}
.xcb_c00172{left:220.500000px;}
.x93_c00172{left:222.000000px;}
.x3b_c00172{left:223.080000px;}
.x13_c00172{left:225.420000px;}
.x9c_c00172{left:228.000000px;}
.x21_c00172{left:229.500000px;}
.x53_c00172{left:232.080000px;}
.xa3_c00172{left:235.500000px;}
.x6_c00172{left:236.580000px;}
.x61_c00172{left:238.500000px;}
.x94_c00172{left:240.000000px;}
.x26_c00172{left:243.420000px;}
.x42_c00172{left:245.145000px;}
.xf3_c00172{left:246.420000px;}
.x5a_c00172{left:247.500000px;}
.x75_c00172{left:249.000000px;}
.x87_c00172{left:250.500000px;}
.x54_c00172{left:254.580000px;}
.x30_c00172{left:256.920000px;}
.x6b_c00172{left:258.000000px;}
.x77_c00172{left:259.500000px;}
.x49_c00172{left:261.000000px;}
.xc8_c00172{left:264.000000px;}
.xdd_c00172{left:265.500000px;}
.x69_c00172{left:267.000000px;}
.x7_c00172{left:270.420000px;}
.x14_c00172{left:271.920000px;}
.xbf_c00172{left:273.000000px;}
.x55_c00172{left:274.080000px;}
.x22_c00172{left:277.920000px;}
.x6c_c00172{left:279.000000px;}
.x78_c00172{left:280.080000px;}
.x62_c00172{left:283.500000px;}
.x4a_c00172{left:285.420000px;}
.x6a_c00172{left:288.000000px;}
.xb4_c00172{left:289.080000px;}
.xbc_c00172{left:291.000000px;}
.x27_c00172{left:294.000000px;}
.x8_c00172{left:300.000000px;}
.x31_c00172{left:301.500000px;}
.x3c_c00172{left:303.420000px;}
.x23_c00172{left:304.920000px;}
.x81_c00172{left:306.000000px;}
.xe6_c00172{left:309.000000px;}
.x4b_c00172{left:315.000000px;}
.xcc_c00172{left:317.580000px;}
.x32_c00172{left:319.920000px;}
.xed_c00172{left:321.420000px;}
.x79_c00172{left:325.500000px;}
.x15_c00172{left:328.080000px;}
.x43_c00172{left:331.500000px;}
.xc4_c00172{left:334.500000px;}
.x9d_c00172{left:337.500000px;}
.x88_c00172{left:343.500000px;}
.xea_c00172{left:345.000000px;}
.x33_c00172{left:346.500000px;}
.x9_c00172{left:347.580000px;}
.xd2_c00172{left:351.420000px;}
.x3d_c00172{left:352.920000px;}
.xbd_c00172{left:354.420000px;}
.x8f_c00172{left:356.580000px;}
.x16_c00172{left:358.500000px;}
.x4c_c00172{left:363.000000px;}
.x89_c00172{left:364.500000px;}
.x63_c00172{left:366.000000px;}
.xa_c00172{left:367.500000px;}
.xae_c00172{left:368.580000px;}
.xb7_c00172{left:370.500000px;}
.x5b_c00172{left:372.420000px;}
.xc9_c00172{left:373.500000px;}
.xf4_c00172{left:374.580000px;}
.x17_c00172{left:376.500000px;}
.xc5_c00172{left:378.420000px;}
.xce_c00172{left:384.000000px;}
.x6d_c00172{left:385.080000px;}
.xee_c00172{left:387.000000px;}
.xb8_c00172{left:390.000000px;}
.x9e_c00172{left:391.500000px;}
.xd8_c00172{left:393.000000px;}
.x7a_c00172{left:394.500000px;}
.xbe_c00172{left:396.000000px;}
.xb_c00172{left:397.500000px;}
.x1_c00172{left:399.000000px;}
.x95_c00172{left:401.580000px;}
.x44_c00172{left:405.000000px;}
.x28_c00172{left:407.145000px;}
.x6e_c00172{left:409.080000px;}
.xcd_c00172{left:412.500000px;}
.x18_c00172{left:413.580000px;}
.x82_c00172{left:415.080000px;}
.x56_c00172{left:417.000000px;}
.x4d_c00172{left:418.500000px;}
.xc0_c00172{left:423.000000px;}
.xd9_c00172{left:424.920000px;}
.xa4_c00172{left:426.420000px;}
.xe7_c00172{left:432.000000px;}
.x19_c00172{left:433.920000px;}
.x6f_c00172{left:435.000000px;}
.x9f_c00172{left:436.920000px;}
.xaf_c00172{left:439.500000px;}
.xc_c00172{left:442.080000px;}
.xc1_c00172{left:445.920000px;}
.x7b_c00172{left:450.420000px;}
.xa5_c00172{left:453.000000px;}
.xa0_c00172{left:454.920000px;}
.x70_c00172{left:456.000000px;}
.x5c_c00172{left:457.080000px;}
.xde_c00172{left:458.580000px;}
.x1a_c00172{left:460.920000px;}
.x64_c00172{left:464.580000px;}
.x4e_c00172{left:466.080000px;}
.xd3_c00172{left:468.420000px;}
.x34_c00172{left:471.000000px;}
.x57_c00172{left:473.580000px;}
.x3e_c00172{left:477.000000px;}
.x83_c00172{left:479.580000px;}
.xc2_c00172{left:481.080000px;}
.x5d_c00172{left:484.080000px;}
.x96_c00172{left:486.420000px;}
.x4f_c00172{left:487.500000px;}
.x35_c00172{left:489.645000px;}
.xef_c00172{left:490.920000px;}
.x1b_c00172{left:493.080000px;}
.x3f_c00172{left:495.855000px;}
.x90_c00172{left:504.000000px;}
.xa6_c00172{left:505.500000px;}
.xd_c00172{left:507.000000px;}
.x8a_c00172{left:508.500000px;}
.x84_c00172{left:510.000000px;}
.x7c_c00172{left:512.580000px;}
.xf0_c00172{left:514.500000px;}
.x50_c00172{left:516.000000px;}
.xb0_c00172{left:517.500000px;}
.xe2_c00172{left:518.580000px;}
.x71_c00172{left:520.500000px;}
.x45_c00172{left:526.500000px;}
.x58_c00172{left:529.920000px;}
.x76_c00172{left:531.000000px;}
.x91_c00172{left:532.920000px;}
.xf1_c00172{left:534.000000px;}
.xe_c00172{left:535.920000px;}
.xb9_c00172{left:537.000000px;}
.x36_c00172{left:538.080000px;}
.x8b_c00172{left:541.080000px;}
.x72_c00172{left:543.000000px;}
.xe3_c00172{left:547.920000px;}
.xc6_c00172{left:550.500000px;}
.x97_c00172{left:555.000000px;}
.x40_c00172{left:556.080000px;}
.x29_c00172{left:561.000000px;}
.xba_c00172{left:562.920000px;}
.xa7_c00172{left:564.000000px;}
.x1c_c00172{left:565.500000px;}
.x5e_c00172{left:567.420000px;}
.xdf_c00172{left:568.500000px;}
.x7d_c00172{left:570.000000px;}
.xf_c00172{left:571.080000px;}
.xf5_c00172{left:573.420000px;}
.x65_c00172{left:576.000000px;}
.xf2_c00172{left:577.920000px;}
.xcf_c00172{left:579.420000px;}
.x2a_c00172{left:580.500000px;}
.xe8_c00172{left:581.580000px;}
.x51_c00172{left:583.500000px;}
.x37_c00172{left:585.000000px;}
.x41_c00172{left:586.080000px;}
.xd4_c00172{left:589.500000px;}
.xda_c00172{left:594.000000px;}
.x92_c00172{left:595.500000px;}
.x73_c00172{left:597.000000px;}
.xa8_c00172{left:598.080000px;}
.x98_c00172{left:603.420000px;}
.x10_c00172{left:606.420000px;}
.x8c_c00172{left:607.920000px;}
.x1d_c00172{left:609.420000px;}
.xc7_c00172{left:612.000000px;}
.x46_c00172{left:615.000000px;}
.x66_c00172{left:616.500000px;}
.x38_c00172{left:617.580000px;}
.xd0_c00172{left:621.000000px;}
.xa1_c00172{left:624.000000px;}
.xdb_c00172{left:625.080000px;}
.xd5_c00172{left:627.000000px;}
.xa9_c00172{left:628.500000px;}
.x8d_c00172{left:633.420000px;}
.x11_c00172{left:634.500000px;}
.x7e_c00172{left:635.580000px;}
.x99_c00172{left:639.000000px;}
.xeb_c00172{left:640.080000px;}
.x5f_c00172{left:643.080000px;}
.xaa_c00172{left:646.920000px;}
.x39_c00172{left:648.000000px;}
.x1e_c00172{left:649.920000px;}
.x85_c00172{left:652.080000px;}
.xca_c00172{left:655.500000px;}
.x2b_c00172{left:658.080000px;}
.x47_c00172{left:661.920000px;}
.x60_c00172{left:663.420000px;}
.xd6_c00172{left:664.500000px;}
.x52_c00172{left:666.645000px;}
.x7f_c00172{left:669.000000px;}
.xb1_c00172{left:671.580000px;}
.xab_c00172{left:673.500000px;}
.xd1_c00172{left:679.500000px;}
.x9a_c00172{left:681.000000px;}
.x2c_c00172{left:682.500000px;}
.x86_c00172{left:683.580000px;}
.x67_c00172{left:686.580000px;}
.x12_c00172{left:688.500000px;}
.x1f_c00172{left:690.420000px;}
.xe4_c00172{left:694.920000px;}
.x48_c00172{left:697.500000px;}
.x74_c00172{left:702.420000px;}
.x9b_c00172{left:703.500000px;}
.x2_c00172{left:705.420000px;}
.xe1_c00172{left:709.920000px;}
.x3a_c00172{left:716.580000px;}
.x3_c00172{left:720.000000px;}
.x2d_c00172{left:721.500000px;}
@media print{
.v2_c00172{vertical-align:-3.840000pt;}
.v0_c00172{vertical-align:0.000000pt;}
.v1_c00172{vertical-align:5.333333pt;}
.ls1_c00172{letter-spacing:0.000000pt;}
.ls0_c00172{letter-spacing:11.251200pt;}
.ws3_c00172{word-spacing:-15.012693pt;}
.ws2_c00172{word-spacing:-6.386624pt;}
.ws0_c00172{word-spacing:-4.041544pt;}
.ws1_c00172{word-spacing:-2.598853pt;}
.ws4_c00172{word-spacing:0.000000pt;}
._0_c00172{width:2.267181pt;}
.fs7_c00172{font-size:3.040000pt;}
.fs2_c00172{font-size:12.106667pt;}
.fs5_c00172{font-size:16.640000pt;}
.fs0_c00172{font-size:18.133333pt;}
.fs3_c00172{font-size:22.666667pt;}
.fs1_c00172{font-size:25.706667pt;}
.fs6_c00172{font-size:28.746667pt;}
.fs4_c00172{font-size:31.733333pt;}
.y0_c00172{bottom:0.000000pt;}
.y3_c00172{bottom:201.506667pt;}
.yc9_c00172{bottom:226.066667pt;}
.yc7_c00172{bottom:226.640000pt;}
.yca_c00172{bottom:227.026667pt;}
.yc8_c00172{bottom:227.973333pt;}
.yc6_c00172{bottom:242.440000pt;}
.yc5_c00172{bottom:243.226667pt;}
.yc4_c00172{bottom:244.360000pt;}
.yc2_c00172{bottom:259.773333pt;}
.yc1_c00172{bottom:260.733333pt;}
.yc3_c00172{bottom:261.306667pt;}
.yc0_c00172{bottom:261.693333pt;}
.ybe_c00172{bottom:277.106667pt;}
.ybd_c00172{bottom:278.066667pt;}
.ybc_c00172{bottom:279.026667pt;}
.ybb_c00172{bottom:279.226667pt;}
.ybf_c00172{bottom:279.973333pt;}
.yb8_c00172{bottom:293.693333pt;}
.yba_c00172{bottom:294.440000pt;}
.yb5_c00172{bottom:295.400000pt;}
.yb4_c00172{bottom:295.773333pt;}
.yb7_c00172{bottom:296.360000pt;}
.yb9_c00172{bottom:296.560000pt;}
.yb6_c00172{bottom:296.733333pt;}
.yb3_c00172{bottom:297.306667pt;}
.yb2_c00172{bottom:297.693333pt;}
.yaf_c00172{bottom:311.773333pt;}
.yab_c00172{bottom:311.973333pt;}
.yae_c00172{bottom:312.733333pt;}
.yac_c00172{bottom:313.106667pt;}
.yb1_c00172{bottom:313.693333pt;}
.yad_c00172{bottom:313.893333pt;}
.yb0_c00172{bottom:314.640000pt;}
.yaa_c00172{bottom:315.026667pt;}
.ya9_c00172{bottom:329.106667pt;}
.ya7_c00172{bottom:330.066667pt;}
.ya4_c00172{bottom:330.440000pt;}
.ya8_c00172{bottom:331.026667pt;}
.ya3_c00172{bottom:331.226667pt;}
.ya6_c00172{bottom:331.400000pt;}
.ya2_c00172{bottom:331.600000pt;}
.ya5_c00172{bottom:332.360000pt;}
.ya0_c00172{bottom:347.026667pt;}
.y9f_c00172{bottom:347.773333pt;}
.ya1_c00172{bottom:348.560000pt;}
.y9c_c00172{bottom:348.733333pt;}
.y9e_c00172{bottom:349.693333pt;}
.y9d_c00172{bottom:349.893333pt;}
.y9a_c00172{bottom:364.360000pt;}
.y96_c00172{bottom:365.106667pt;}
.y9b_c00172{bottom:365.306667pt;}
.y99_c00172{bottom:366.640000pt;}
.y98_c00172{bottom:367.026667pt;}
.y97_c00172{bottom:367.040000pt;}
.y95_c00172{bottom:388.733333pt;}
.y90_c00172{bottom:388.933333pt;}
.y91_c00172{bottom:389.693333pt;}
.y94_c00172{bottom:390.640000pt;}
.y93_c00172{bottom:390.840000pt;}
.y92_c00172{bottom:391.600000pt;}
.y8c_c00172{bottom:403.026667pt;}
.y8f_c00172{bottom:403.226667pt;}
.y8e_c00172{bottom:403.973333pt;}
.y8d_c00172{bottom:404.173333pt;}
.y86_c00172{bottom:415.400000pt;}
.y85_c00172{bottom:415.600000pt;}
.y8b_c00172{bottom:416.360000pt;}
.y88_c00172{bottom:416.933333pt;}
.y8a_c00172{bottom:417.306667pt;}
.y87_c00172{bottom:417.506667pt;}
.y89_c00172{bottom:418.266667pt;}
.y83_c00172{bottom:427.973333pt;}
.y82_c00172{bottom:428.733333pt;}
.y80_c00172{bottom:429.693333pt;}
.y84_c00172{bottom:430.640000pt;}
.y81_c00172{bottom:431.600000pt;}
.y7d_c00172{bottom:442.066667pt;}
.y7e_c00172{bottom:442.266667pt;}
.y7c_c00172{bottom:443.026667pt;}
.y7a_c00172{bottom:443.226667pt;}
.y7b_c00172{bottom:443.973333pt;}
.y7f_c00172{bottom:444.933333pt;}
.y78_c00172{bottom:454.640000pt;}
.y77_c00172{bottom:455.400000pt;}
.y75_c00172{bottom:456.360000pt;}
.y74_c00172{bottom:457.306667pt;}
.y76_c00172{bottom:457.506667pt;}
.y79_c00172{bottom:458.266667pt;}
.y73_c00172{bottom:468.360000pt;}
.y6e_c00172{bottom:468.733333pt;}
.y72_c00172{bottom:469.306667pt;}
.y6f_c00172{bottom:469.693333pt;}
.y6c_c00172{bottom:469.893333pt;}
.y70_c00172{bottom:470.266667pt;}
.y6d_c00172{bottom:470.640000pt;}
.y71_c00172{bottom:471.600000pt;}
.y68_c00172{bottom:489.693333pt;}
.y69_c00172{bottom:491.773333pt;}
.y6a_c00172{bottom:492.560000pt;}
.y6b_c00172{bottom:493.693333pt;}
.y67_c00172{bottom:507.773333pt;}
.y66_c00172{bottom:509.106667pt;}
.y65_c00172{bottom:511.026667pt;}
.y64_c00172{bottom:511.973333pt;}
.y62_c00172{bottom:526.440000pt;}
.y63_c00172{bottom:527.226667pt;}
.y61_c00172{bottom:528.360000pt;}
.y5f_c00172{bottom:543.026667pt;}
.y5c_c00172{bottom:543.400000pt;}
.y60_c00172{bottom:543.600000pt;}
.y5d_c00172{bottom:543.773333pt;}
.y5e_c00172{bottom:544.933333pt;}
.y5a_c00172{bottom:545.693333pt;}
.y5b_c00172{bottom:545.893333pt;}
.y59_c00172{bottom:561.106667pt;}
.y57_c00172{bottom:563.026667pt;}
.y58_c00172{bottom:563.226667pt;}
.y53_c00172{bottom:579.773333pt;}
.y54_c00172{bottom:580.360000pt;}
.y56_c00172{bottom:580.560000pt;}
.y55_c00172{bottom:581.306667pt;}
.y52_c00172{bottom:581.693333pt;}
.y4f_c00172{bottom:596.733333pt;}
.y50_c00172{bottom:597.106667pt;}
.y51_c00172{bottom:597.893333pt;}
.y4d_c00172{bottom:599.026667pt;}
.y4e_c00172{bottom:599.040000pt;}
.y4c_c00172{bottom:616.360000pt;}
.y4a_c00172{bottom:631.773333pt;}
.y4b_c00172{bottom:632.733333pt;}
.y49_c00172{bottom:633.306667pt;}
.y48_c00172{bottom:633.693333pt;}
.y47_c00172{bottom:649.106667pt;}
.y44_c00172{bottom:651.026667pt;}
.y45_c00172{bottom:651.040000pt;}
.y46_c00172{bottom:651.973333pt;}
.y42_c00172{bottom:667.400000pt;}
.y41_c00172{bottom:667.773333pt;}
.y3e_c00172{bottom:668.360000pt;}
.y3f_c00172{bottom:668.560000pt;}
.y43_c00172{bottom:669.693333pt;}
.y40_c00172{bottom:669.706667pt;}
.y38_c00172{bottom:683.773333pt;}
.y3a_c00172{bottom:684.733333pt;}
.y3c_c00172{bottom:685.106667pt;}
.y3b_c00172{bottom:685.693333pt;}
.y3d_c00172{bottom:687.026667pt;}
.y39_c00172{bottom:687.040000pt;}
.y35_c00172{bottom:701.106667pt;}
.y37_c00172{bottom:704.360000pt;}
.y36_c00172{bottom:704.373333pt;}
.y34_c00172{bottom:722.640000pt;}
.y33_c00172{bottom:724.933333pt;}
.y30_c00172{bottom:736.360000pt;}
.y31_c00172{bottom:737.306667pt;}
.y32_c00172{bottom:738.266667pt;}
.y2b_c00172{bottom:751.400000pt;}
.y2a_c00172{bottom:751.973333pt;}
.y29_c00172{bottom:752.360000pt;}
.y2e_c00172{bottom:752.733333pt;}
.y2f_c00172{bottom:752.933333pt;}
.y2d_c00172{bottom:753.693333pt;}
.y2c_c00172{bottom:754.266667pt;}
.y26_c00172{bottom:773.106667pt;}
.y28_c00172{bottom:774.066667pt;}
.y27_c00172{bottom:775.026667pt;}
.y24_c00172{bottom:803.773333pt;}
.y25_c00172{bottom:805.693333pt;}
.y20_c00172{bottom:821.106667pt;}
.y21_c00172{bottom:821.893333pt;}
.y1f_c00172{bottom:823.026667pt;}
.y22_c00172{bottom:823.226667pt;}
.y23_c00172{bottom:823.973333pt;}
.y1d_c00172{bottom:838.440000pt;}
.y1c_c00172{bottom:840.360000pt;}
.y1e_c00172{bottom:840.560000pt;}
.y1a_c00172{bottom:857.106667pt;}
.y1b_c00172{bottom:857.893333pt;}
.y19_c00172{bottom:859.026667pt;}
.y15_c00172{bottom:873.106667pt;}
.y17_c00172{bottom:874.440000pt;}
.y18_c00172{bottom:875.026667pt;}
.y16_c00172{bottom:875.973333pt;}
.y14_c00172{bottom:876.360000pt;}
.y10_c00172{bottom:890.440000pt;}
.y12_c00172{bottom:891.773333pt;}
.yf_c00172{bottom:892.360000pt;}
.y13_c00172{bottom:892.560000pt;}
.ye_c00172{bottom:893.306667pt;}
.y11_c00172{bottom:893.693333pt;}
.yd_c00172{bottom:907.973333pt;}
.yb_c00172{bottom:909.693333pt;}
.yc_c00172{bottom:911.026667pt;}
.y7_c00172{bottom:926.440000pt;}
.y9_c00172{bottom:927.600000pt;}
.y8_c00172{bottom:928.360000pt;}
.ya_c00172{bottom:929.306667pt;}
.y6_c00172{bottom:943.026667pt;}
.y4_c00172{bottom:945.693333pt;}
.y5_c00172{bottom:946.640000pt;}
.y2_c00172{bottom:977.693333pt;}
.y1_c00172{bottom:979.600000pt;}
.h9_c00172{height:3.739141pt;}
.h3_c00172{height:14.890964pt;}
.h7_c00172{height:20.466875pt;}
.h1_c00172{height:22.303646pt;}
.ha_c00172{height:24.039557pt;}
.h4_c00172{height:27.879557pt;}
.h2_c00172{height:31.618698pt;}
.h8_c00172{height:35.357839pt;}
.h6_c00172{height:36.952031pt;}
.h5_c00172{height:39.031380pt;}
.hb_c00172{height:40.691172pt;}
.h0_c00172{height:1186.666667pt;}
.w0_c00172{width:782.666667pt;}
.x0_c00172{left:0.000000pt;}
.x2e_c00172{left:134.666667pt;}
.x4_c00172{left:136.373333pt;}
.x59_c00172{left:142.666667pt;}
.xac_c00172{left:146.666667pt;}
.xb5_c00172{left:147.626667pt;}
.x24_c00172{left:149.333333pt;}
.xbb_c00172{left:150.666667pt;}
.xe0_c00172{left:152.373333pt;}
.xdc_c00172{left:153.333333pt;}
.xe5_c00172{left:155.626667pt;}
.xa2_c00172{left:162.666667pt;}
.x2f_c00172{left:164.373333pt;}
.x20_c00172{left:167.626667pt;}
.x8e_c00172{left:168.960000pt;}
.xb2_c00172{left:170.666667pt;}
.xe9_c00172{left:171.626667pt;}
.x80_c00172{left:176.000000pt;}
.x5_c00172{left:177.706667pt;}
.x25_c00172{left:178.666667pt;}
.xad_c00172{left:179.626667pt;}
.xd7_c00172{left:181.333333pt;}
.xec_c00172{left:182.293333pt;}
.xc3_c00172{left:184.000000pt;}
.x68_c00172{left:185.706667pt;}
.xb3_c00172{left:190.666667pt;}
.xb6_c00172{left:194.666667pt;}
.xcb_c00172{left:196.000000pt;}
.x93_c00172{left:197.333333pt;}
.x3b_c00172{left:198.293333pt;}
.x13_c00172{left:200.373333pt;}
.x9c_c00172{left:202.666667pt;}
.x21_c00172{left:204.000000pt;}
.x53_c00172{left:206.293333pt;}
.xa3_c00172{left:209.333333pt;}
.x6_c00172{left:210.293333pt;}
.x61_c00172{left:212.000000pt;}
.x94_c00172{left:213.333333pt;}
.x26_c00172{left:216.373333pt;}
.x42_c00172{left:217.906667pt;}
.xf3_c00172{left:219.040000pt;}
.x5a_c00172{left:220.000000pt;}
.x75_c00172{left:221.333333pt;}
.x87_c00172{left:222.666667pt;}
.x54_c00172{left:226.293333pt;}
.x30_c00172{left:228.373333pt;}
.x6b_c00172{left:229.333333pt;}
.x77_c00172{left:230.666667pt;}
.x49_c00172{left:232.000000pt;}
.xc8_c00172{left:234.666667pt;}
.xdd_c00172{left:236.000000pt;}
.x69_c00172{left:237.333333pt;}
.x7_c00172{left:240.373333pt;}
.x14_c00172{left:241.706667pt;}
.xbf_c00172{left:242.666667pt;}
.x55_c00172{left:243.626667pt;}
.x22_c00172{left:247.040000pt;}
.x6c_c00172{left:248.000000pt;}
.x78_c00172{left:248.960000pt;}
.x62_c00172{left:252.000000pt;}
.x4a_c00172{left:253.706667pt;}
.x6a_c00172{left:256.000000pt;}
.xb4_c00172{left:256.960000pt;}
.xbc_c00172{left:258.666667pt;}
.x27_c00172{left:261.333333pt;}
.x8_c00172{left:266.666667pt;}
.x31_c00172{left:268.000000pt;}
.x3c_c00172{left:269.706667pt;}
.x23_c00172{left:271.040000pt;}
.x81_c00172{left:272.000000pt;}
.xe6_c00172{left:274.666667pt;}
.x4b_c00172{left:280.000000pt;}
.xcc_c00172{left:282.293333pt;}
.x32_c00172{left:284.373333pt;}
.xed_c00172{left:285.706667pt;}
.x79_c00172{left:289.333333pt;}
.x15_c00172{left:291.626667pt;}
.x43_c00172{left:294.666667pt;}
.xc4_c00172{left:297.333333pt;}
.x9d_c00172{left:300.000000pt;}
.x88_c00172{left:305.333333pt;}
.xea_c00172{left:306.666667pt;}
.x33_c00172{left:308.000000pt;}
.x9_c00172{left:308.960000pt;}
.xd2_c00172{left:312.373333pt;}
.x3d_c00172{left:313.706667pt;}
.xbd_c00172{left:315.040000pt;}
.x8f_c00172{left:316.960000pt;}
.x16_c00172{left:318.666667pt;}
.x4c_c00172{left:322.666667pt;}
.x89_c00172{left:324.000000pt;}
.x63_c00172{left:325.333333pt;}
.xa_c00172{left:326.666667pt;}
.xae_c00172{left:327.626667pt;}
.xb7_c00172{left:329.333333pt;}
.x5b_c00172{left:331.040000pt;}
.xc9_c00172{left:332.000000pt;}
.xf4_c00172{left:332.960000pt;}
.x17_c00172{left:334.666667pt;}
.xc5_c00172{left:336.373333pt;}
.xce_c00172{left:341.333333pt;}
.x6d_c00172{left:342.293333pt;}
.xee_c00172{left:344.000000pt;}
.xb8_c00172{left:346.666667pt;}
.x9e_c00172{left:348.000000pt;}
.xd8_c00172{left:349.333333pt;}
.x7a_c00172{left:350.666667pt;}
.xbe_c00172{left:352.000000pt;}
.xb_c00172{left:353.333333pt;}
.x1_c00172{left:354.666667pt;}
.x95_c00172{left:356.960000pt;}
.x44_c00172{left:360.000000pt;}
.x28_c00172{left:361.906667pt;}
.x6e_c00172{left:363.626667pt;}
.xcd_c00172{left:366.666667pt;}
.x18_c00172{left:367.626667pt;}
.x82_c00172{left:368.960000pt;}
.x56_c00172{left:370.666667pt;}
.x4d_c00172{left:372.000000pt;}
.xc0_c00172{left:376.000000pt;}
.xd9_c00172{left:377.706667pt;}
.xa4_c00172{left:379.040000pt;}
.xe7_c00172{left:384.000000pt;}
.x19_c00172{left:385.706667pt;}
.x6f_c00172{left:386.666667pt;}
.x9f_c00172{left:388.373333pt;}
.xaf_c00172{left:390.666667pt;}
.xc_c00172{left:392.960000pt;}
.xc1_c00172{left:396.373333pt;}
.x7b_c00172{left:400.373333pt;}
.xa5_c00172{left:402.666667pt;}
.xa0_c00172{left:404.373333pt;}
.x70_c00172{left:405.333333pt;}
.x5c_c00172{left:406.293333pt;}
.xde_c00172{left:407.626667pt;}
.x1a_c00172{left:409.706667pt;}
.x64_c00172{left:412.960000pt;}
.x4e_c00172{left:414.293333pt;}
.xd3_c00172{left:416.373333pt;}
.x34_c00172{left:418.666667pt;}
.x57_c00172{left:420.960000pt;}
.x3e_c00172{left:424.000000pt;}
.x83_c00172{left:426.293333pt;}
.xc2_c00172{left:427.626667pt;}
.x5d_c00172{left:430.293333pt;}
.x96_c00172{left:432.373333pt;}
.x4f_c00172{left:433.333333pt;}
.x35_c00172{left:435.240000pt;}
.xef_c00172{left:436.373333pt;}
.x1b_c00172{left:438.293333pt;}
.x3f_c00172{left:440.760000pt;}
.x90_c00172{left:448.000000pt;}
.xa6_c00172{left:449.333333pt;}
.xd_c00172{left:450.666667pt;}
.x8a_c00172{left:452.000000pt;}
.x84_c00172{left:453.333333pt;}
.x7c_c00172{left:455.626667pt;}
.xf0_c00172{left:457.333333pt;}
.x50_c00172{left:458.666667pt;}
.xb0_c00172{left:460.000000pt;}
.xe2_c00172{left:460.960000pt;}
.x71_c00172{left:462.666667pt;}
.x45_c00172{left:468.000000pt;}
.x58_c00172{left:471.040000pt;}
.x76_c00172{left:472.000000pt;}
.x91_c00172{left:473.706667pt;}
.xf1_c00172{left:474.666667pt;}
.xe_c00172{left:476.373333pt;}
.xb9_c00172{left:477.333333pt;}
.x36_c00172{left:478.293333pt;}
.x8b_c00172{left:480.960000pt;}
.x72_c00172{left:482.666667pt;}
.xe3_c00172{left:487.040000pt;}
.xc6_c00172{left:489.333333pt;}
.x97_c00172{left:493.333333pt;}
.x40_c00172{left:494.293333pt;}
.x29_c00172{left:498.666667pt;}
.xba_c00172{left:500.373333pt;}
.xa7_c00172{left:501.333333pt;}
.x1c_c00172{left:502.666667pt;}
.x5e_c00172{left:504.373333pt;}
.xdf_c00172{left:505.333333pt;}
.x7d_c00172{left:506.666667pt;}
.xf_c00172{left:507.626667pt;}
.xf5_c00172{left:509.706667pt;}
.x65_c00172{left:512.000000pt;}
.xf2_c00172{left:513.706667pt;}
.xcf_c00172{left:515.040000pt;}
.x2a_c00172{left:516.000000pt;}
.xe8_c00172{left:516.960000pt;}
.x51_c00172{left:518.666667pt;}
.x37_c00172{left:520.000000pt;}
.x41_c00172{left:520.960000pt;}
.xd4_c00172{left:524.000000pt;}
.xda_c00172{left:528.000000pt;}
.x92_c00172{left:529.333333pt;}
.x73_c00172{left:530.666667pt;}
.xa8_c00172{left:531.626667pt;}
.x98_c00172{left:536.373333pt;}
.x10_c00172{left:539.040000pt;}
.x8c_c00172{left:540.373333pt;}
.x1d_c00172{left:541.706667pt;}
.xc7_c00172{left:544.000000pt;}
.x46_c00172{left:546.666667pt;}
.x66_c00172{left:548.000000pt;}
.x38_c00172{left:548.960000pt;}
.xd0_c00172{left:552.000000pt;}
.xa1_c00172{left:554.666667pt;}
.xdb_c00172{left:555.626667pt;}
.xd5_c00172{left:557.333333pt;}
.xa9_c00172{left:558.666667pt;}
.x8d_c00172{left:563.040000pt;}
.x11_c00172{left:564.000000pt;}
.x7e_c00172{left:564.960000pt;}
.x99_c00172{left:568.000000pt;}
.xeb_c00172{left:568.960000pt;}
.x5f_c00172{left:571.626667pt;}
.xaa_c00172{left:575.040000pt;}
.x39_c00172{left:576.000000pt;}
.x1e_c00172{left:577.706667pt;}
.x85_c00172{left:579.626667pt;}
.xca_c00172{left:582.666667pt;}
.x2b_c00172{left:584.960000pt;}
.x47_c00172{left:588.373333pt;}
.x60_c00172{left:589.706667pt;}
.xd6_c00172{left:590.666667pt;}
.x52_c00172{left:592.573333pt;}
.x7f_c00172{left:594.666667pt;}
.xb1_c00172{left:596.960000pt;}
.xab_c00172{left:598.666667pt;}
.xd1_c00172{left:604.000000pt;}
.x9a_c00172{left:605.333333pt;}
.x2c_c00172{left:606.666667pt;}
.x86_c00172{left:607.626667pt;}
.x67_c00172{left:610.293333pt;}
.x12_c00172{left:612.000000pt;}
.x1f_c00172{left:613.706667pt;}
.xe4_c00172{left:617.706667pt;}
.x48_c00172{left:620.000000pt;}
.x74_c00172{left:624.373333pt;}
.x9b_c00172{left:625.333333pt;}
.x2_c00172{left:627.040000pt;}
.xe1_c00172{left:631.040000pt;}
.x3a_c00172{left:636.960000pt;}
.x3_c00172{left:640.000000pt;}
.x2d_c00172{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cb366548ca9987bf2949e2c0.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma7_c00173{transform:matrix(0.327724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327724,0.000000,0.000000,0.250000,0,0);}
.m4f_c00173{transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);}
.m99_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);}
.m40_c00173{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m68_c00173{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.ma2_c00173{transform:matrix(0.390224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390224,0.000000,0.000000,0.250000,0,0);}
.m64_c00173{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m3d_c00173{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m6c_c00173{transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);}
.m33_c00173{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m57_c00173{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m6f_c00173{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m76_c00173{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m17_c00173{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m21_c00173{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m6a_c00173{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m5b_c00173{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m90_c00173{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m3c_c00173{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m6e_c00173{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m1a_c00173{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m4c_c00173{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m1b_c00173{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mc3_c00173{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.m48_c00173{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m8_c00173{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m7b_c00173{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.ma4_c00173{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m5f_c00173{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m83_c00173{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.m20_c00173{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m8e_c00173{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m3b_c00173{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m44_c00173{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.ma_c00173{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m3a_c00173{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m5e_c00173{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m75_c00173{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m12_c00173{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mbd_c00173{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m60_c00173{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.md_c00173{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.ma5_c00173{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m41_c00173{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m94_c00173{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);}
.m4_c00173{transform:matrix(0.439801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439801,0.000000,0.000000,0.250000,0,0);}
.m58_c00173{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m4e_c00173{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.ma6_c00173{transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);}
.m53_c00173{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m1_c00173{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.mb4_c00173{transform:matrix(0.454327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454327,0.000000,0.000000,0.250000,0,0);}
.m86_c00173{transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);}
.m13_c00173{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.m30_c00173{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.mcb_c00173{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.m77_c00173{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m4d_c00173{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m5_c00173{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.mc8_c00173{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_c00173{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m9d_c00173{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m51_c00173{transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);}
.m4a_c00173{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m18_c00173{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.mc1_c00173{transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);}
.m54_c00173{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mad_c00173{transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);}
.m43_c00173{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.m3_c00173{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m9c_c00173{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m1e_c00173{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.mb0_c00173{transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);}
.m98_c00173{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m74_c00173{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m56_c00173{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m5a_c00173{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m23_c00173{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mbf_c00173{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.m24_c00173{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.mb7_c00173{transform:matrix(0.495994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495994,0.000000,0.000000,0.250000,0,0);}
.m2d_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);}
.m10_c00173{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m31_c00173{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m5d_c00173{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m46_c00173{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mcc_c00173{transform:matrix(0.509615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509615,0.000000,0.000000,0.250000,0,0);}
.m7f_c00173{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m35_c00173{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m88_c00173{transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);}
.m9f_c00173{transform:matrix(0.512821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512821,0.000000,0.000000,0.250000,0,0);}
.m8d_c00173{transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);}
.m6d_c00173{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m65_c00173{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mf_c00173{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m73_c00173{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m37_c00173{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mca_c00173{transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);}
.m72_c00173{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m82_c00173{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m2a_c00173{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m78_c00173{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m14_c00173{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m38_c00173{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m8a_c00173{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m96_c00173{transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);}
.mb6_c00173{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.me_c00173{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mc0_c00173{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m87_c00173{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.m2_c00173{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m67_c00173{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m47_c00173{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m28_c00173{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m1d_c00173{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m29_c00173{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m7_c00173{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m2b_c00173{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m45_c00173{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m4b_c00173{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m7a_c00173{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mb1_c00173{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m63_c00173{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m9_c00173{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m8c_c00173{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m36_c00173{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m2f_c00173{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mc_c00173{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m80_c00173{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m6_c00173{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mc6_c00173{transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);}
.m59_c00173{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m9a_c00173{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m27_c00173{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m3f_c00173{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m3e_c00173{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m42_c00173{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m1f_c00173{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m7e_c00173{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_c00173{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m55_c00173{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.mac_c00173{transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);}
.mb5_c00173{transform:matrix(0.576923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576923,0.000000,0.000000,0.250000,0,0);}
.m97_c00173{transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);}
.m49_c00173{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mc4_c00173{transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);}
.m84_c00173{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.mb_c00173{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mbb_c00173{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.m6b_c00173{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m61_c00173{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m79_c00173{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);}
.m71_c00173{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.m7c_c00173{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.mb3_c00173{transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);}
.m22_c00173{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m52_c00173{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m0_c00173{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.m8f_c00173{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m66_c00173{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m91_c00173{transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);}
.m92_c00173{transform:matrix(0.616740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616740,0.000000,0.000000,0.250000,0,0);}
.m19_c00173{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.m81_c00173{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mbc_c00173{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m85_c00173{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);}
.m5c_c00173{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m32_c00173{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m93_c00173{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.mcf_c00173{transform:matrix(0.657828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657828,0.000000,0.000000,0.250000,0,0);}
.m62_c00173{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m9e_c00173{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m2e_c00173{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m8b_c00173{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.mce_c00173{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.ma9_c00173{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mc7_c00173{transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);}
.mc2_c00173{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.maa_c00173{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mb2_c00173{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m70_c00173{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.maf_c00173{transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);}
.ma1_c00173{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.mc9_c00173{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m89_c00173{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m9b_c00173{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m50_c00173{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m2c_c00173{transform:matrix(0.719853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719853,0.000000,0.000000,0.250000,0,0);}
.ma3_c00173{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m34_c00173{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mba_c00173{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.mbe_c00173{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.ma0_c00173{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m25_c00173{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m15_c00173{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m1c_c00173{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mab_c00173{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m39_c00173{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m69_c00173{transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);}
.mae_c00173{transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);}
.mc5_c00173{transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);}
.mb9_c00173{transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);}
.mcd_c00173{transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);}
.m26_c00173{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.m7d_c00173{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mb8_c00173{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.ma8_c00173{transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);}
.m95_c00173{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.v1_c00173{vertical-align:-6.000000px;}
.v0_c00173{vertical-align:0.000000px;}
.ls1_c00173{letter-spacing:0.000000px;}
.ls0_c00173{letter-spacing:18.591909px;}
.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;}
}
.wsb_c00173{word-spacing:-20.589189px;}
.ws0_c00173{word-spacing:-16.889280px;}
.ws18_c00173{word-spacing:0.000000px;}
.ws9_c00173{word-spacing:14.950398px;}
.wsc_c00173{word-spacing:15.498475px;}
.wsa_c00173{word-spacing:16.594629px;}
.ws16_c00173{word-spacing:17.142706px;}
.ws14_c00173{word-spacing:34.503425px;}
.ws11_c00173{word-spacing:35.023211px;}
.ws17_c00173{word-spacing:40.651310px;}
.ws7_c00173{word-spacing:43.123678px;}
.ws10_c00173{word-spacing:44.811241px;}
.ws15_c00173{word-spacing:46.279409px;}
.ws12_c00173{word-spacing:48.155442px;}
.wsd_c00173{word-spacing:49.588868px;}
.ws5_c00173{word-spacing:59.307203px;}
.wse_c00173{word-spacing:59.332701px;}
.ws3_c00173{word-spacing:60.638400px;}
.ws13_c00173{word-spacing:64.388073px;}
.ws2_c00173{word-spacing:65.748906px;}
.ws4_c00173{word-spacing:69.032182px;}
.ws1_c00173{word-spacing:69.426706px;}
.ws8_c00173{word-spacing:75.712245px;}
.wsf_c00173{word-spacing:78.731664px;}
.ws6_c00173{word-spacing:91.679451px;}
._5_c00173{margin-left:-18.591909px;}
._0_c00173{width:5.225879px;}
._6_c00173{width:48.605390px;}
._9_c00173{width:54.233489px;}
._8_c00173{width:56.109522px;}
._7_c00173{width:59.698012px;}
._4_c00173{width:69.550358px;}
._1_c00173{width:76.681386px;}
._a_c00173{width:78.135591px;}
._3_c00173{width:80.359186px;}
._2_c00173{width:84.036985px;}
.fc0_c00173{color:transparent;}
.fs8_c00173{font-size:3.420000px;}
.fs9_c00173{font-size:11.880000px;}
.fs7_c00173{font-size:13.620000px;}
.fs5_c00173{font-size:18.720000px;}
.fs0_c00173{font-size:20.400000px;}
.fs6_c00173{font-size:25.500000px;}
.fs1_c00173{font-size:28.920000px;}
.fs3_c00173{font-size:32.340000px;}
.fs4_c00173{font-size:35.700000px;}
.fs2_c00173{font-size:39.120000px;}
.y0_c00173{bottom:0.000000px;}
.yf8_c00173{bottom:243.630000px;}
.yf7_c00173{bottom:244.695000px;}
.yfa_c00173{bottom:244.920000px;}
.yf5_c00173{bottom:245.130000px;}
.yf6_c00173{bottom:246.195000px;}
.yf9_c00173{bottom:246.420000px;}
.yf1_c00173{bottom:258.195000px;}
.yef_c00173{bottom:258.630000px;}
.yf2_c00173{bottom:259.275000px;}
.yf0_c00173{bottom:259.695000px;}
.yf4_c00173{bottom:259.920000px;}
.yf3_c00173{bottom:261.420000px;}
.yee_c00173{bottom:270.630000px;}
.ye9_c00173{bottom:271.695000px;}
.yea_c00173{bottom:272.130000px;}
.yeb_c00173{bottom:272.775000px;}
.yed_c00173{bottom:273.195000px;}
.yec_c00173{bottom:274.920000px;}
.ye8_c00173{bottom:285.630000px;}
.ye6_c00173{bottom:286.050000px;}
.ye7_c00173{bottom:286.695000px;}
.ye4_c00173{bottom:287.130000px;}
.ye5_c00173{bottom:287.775000px;}
.ye3_c00173{bottom:300.195000px;}
.ydf_c00173{bottom:300.630000px;}
.ye0_c00173{bottom:301.275000px;}
.ye1_c00173{bottom:301.695000px;}
.ye2_c00173{bottom:301.920000px;}
.yde_c00173{bottom:312.630000px;}
.ydb_c00173{bottom:314.130000px;}
.ydc_c00173{bottom:315.195000px;}
.ydd_c00173{bottom:315.420000px;}
.yda_c00173{bottom:326.130000px;}
.yd9_c00173{bottom:327.630000px;}
.yd7_c00173{bottom:328.695000px;}
.yd8_c00173{bottom:328.920000px;}
.yd6_c00173{bottom:341.130000px;}
.yd1_c00173{bottom:341.550000px;}
.yd5_c00173{bottom:342.195000px;}
.yd3_c00173{bottom:342.630000px;}
.yd2_c00173{bottom:343.695000px;}
.yd4_c00173{bottom:343.920000px;}
.ycf_c00173{bottom:354.630000px;}
.yd0_c00173{bottom:355.695000px;}
.ycd_c00173{bottom:356.130000px;}
.ycc_c00173{bottom:357.195000px;}
.yce_c00173{bottom:357.420000px;}
.ycb_c00173{bottom:368.130000px;}
.yc7_c00173{bottom:370.050000px;}
.yc9_c00173{bottom:370.695000px;}
.yca_c00173{bottom:370.920000px;}
.yc8_c00173{bottom:372.195000px;}
.yc6_c00173{bottom:382.695000px;}
.yc3_c00173{bottom:383.130000px;}
.yc2_c00173{bottom:384.195000px;}
.yc5_c00173{bottom:384.420000px;}
.yc1_c00173{bottom:384.630000px;}
.yc4_c00173{bottom:385.920000px;}
.yc0_c00173{bottom:397.695000px;}
.ybf_c00173{bottom:397.920000px;}
.ybd_c00173{bottom:398.130000px;}
.ybc_c00173{bottom:399.195000px;}
.ybe_c00173{bottom:399.420000px;}
.yb9_c00173{bottom:411.195000px;}
.ybb_c00173{bottom:411.420000px;}
.yb5_c00173{bottom:411.630000px;}
.yb6_c00173{bottom:412.275000px;}
.yb7_c00173{bottom:412.695000px;}
.yba_c00173{bottom:412.920000px;}
.yb8_c00173{bottom:414.195000px;}
.yb4_c00173{bottom:424.695000px;}
.yb0_c00173{bottom:425.130000px;}
.yb2_c00173{bottom:426.195000px;}
.yb3_c00173{bottom:426.420000px;}
.yb1_c00173{bottom:426.630000px;}
.yaf_c00173{bottom:437.130000px;}
.yae_c00173{bottom:438.195000px;}
.yaa_c00173{bottom:438.630000px;}
.yac_c00173{bottom:439.695000px;}
.yad_c00173{bottom:439.920000px;}
.yab_c00173{bottom:440.130000px;}
.ya9_c00173{bottom:453.630000px;}
.ya8_c00173{bottom:464.130000px;}
.ya6_c00173{bottom:465.630000px;}
.ya4_c00173{bottom:466.695000px;}
.ya7_c00173{bottom:466.920000px;}
.ya2_c00173{bottom:467.130000px;}
.ya3_c00173{bottom:467.775000px;}
.ya5_c00173{bottom:468.420000px;}
.ya1_c00173{bottom:480.195000px;}
.ya0_c00173{bottom:480.420000px;}
.y9e_c00173{bottom:481.695000px;}
.y9f_c00173{bottom:481.920000px;}
.y9d_c00173{bottom:493.695000px;}
.y9b_c00173{bottom:495.195000px;}
.y9c_c00173{bottom:495.420000px;}
.y99_c00173{bottom:495.630000px;}
.y9a_c00173{bottom:496.695000px;}
.y98_c00173{bottom:507.195000px;}
.y95_c00173{bottom:508.695000px;}
.y97_c00173{bottom:508.920000px;}
.y94_c00173{bottom:509.130000px;}
.y96_c00173{bottom:510.420000px;}
.y93_c00173{bottom:521.130000px;}
.y91_c00173{bottom:522.195000px;}
.y90_c00173{bottom:522.630000px;}
.y8f_c00173{bottom:523.695000px;}
.y92_c00173{bottom:523.920000px;}
.y8e_c00173{bottom:534.630000px;}
.y8d_c00173{bottom:535.695000px;}
.y8b_c00173{bottom:536.130000px;}
.y8a_c00173{bottom:537.195000px;}
.y8c_c00173{bottom:537.420000px;}
.y89_c00173{bottom:549.195000px;}
.y86_c00173{bottom:549.630000px;}
.y88_c00173{bottom:550.695000px;}
.y87_c00173{bottom:550.920000px;}
.y85_c00173{bottom:551.130000px;}
.y84_c00173{bottom:552.195000px;}
.y83_c00173{bottom:562.695000px;}
.y82_c00173{bottom:563.130000px;}
.y81_c00173{bottom:564.195000px;}
.y7f_c00173{bottom:564.630000px;}
.y80_c00173{bottom:565.920000px;}
.y7e_c00173{bottom:575.130000px;}
.y7b_c00173{bottom:577.050000px;}
.y7d_c00173{bottom:577.695000px;}
.y7a_c00173{bottom:579.195000px;}
.y7c_c00173{bottom:579.420000px;}
.y79_c00173{bottom:590.130000px;}
.y78_c00173{bottom:591.195000px;}
.y76_c00173{bottom:591.630000px;}
.y75_c00173{bottom:592.050000px;}
.y74_c00173{bottom:592.695000px;}
.y77_c00173{bottom:592.920000px;}
.y73_c00173{bottom:604.695000px;}
.y72_c00173{bottom:605.130000px;}
.y70_c00173{bottom:606.195000px;}
.y6f_c00173{bottom:606.630000px;}
.y71_c00173{bottom:607.920000px;}
.y6e_c00173{bottom:618.195000px;}
.y6d_c00173{bottom:618.630000px;}
.y6b_c00173{bottom:619.695000px;}
.y6a_c00173{bottom:620.130000px;}
.y69_c00173{bottom:621.195000px;}
.y6c_c00173{bottom:621.420000px;}
.y68_c00173{bottom:632.130000px;}
.y66_c00173{bottom:633.195000px;}
.y65_c00173{bottom:633.630000px;}
.y64_c00173{bottom:634.695000px;}
.y67_c00173{bottom:634.920000px;}
.y63_c00173{bottom:645.630000px;}
.y62_c00173{bottom:646.695000px;}
.y5f_c00173{bottom:647.130000px;}
.y5e_c00173{bottom:647.550000px;}
.y60_c00173{bottom:648.195000px;}
.y61_c00173{bottom:648.420000px;}
.y5d_c00173{bottom:648.630000px;}
.y5c_c00173{bottom:659.130000px;}
.y5a_c00173{bottom:660.630000px;}
.y59_c00173{bottom:661.695000px;}
.y5b_c00173{bottom:661.920000px;}
.y57_c00173{bottom:678.630000px;}
.y58_c00173{bottom:681.195000px;}
.y56_c00173{bottom:698.970000px;}
.y55_c00173{bottom:700.050000px;}
.y52_c00173{bottom:711.825000px;}
.y54_c00173{bottom:712.905000px;}
.y51_c00173{bottom:713.550000px;}
.y50_c00173{bottom:713.970000px;}
.y53_c00173{bottom:715.050000px;}
.y4f_c00173{bottom:735.195000px;}
.y4e_c00173{bottom:736.050000px;}
.y4d_c00173{bottom:764.745000px;}
.y4a_c00173{bottom:766.905000px;}
.y4c_c00173{bottom:767.970000px;}
.y4b_c00173{bottom:768.405000px;}
.y48_c00173{bottom:784.245000px;}
.y46_c00173{bottom:786.405000px;}
.y49_c00173{bottom:786.825000px;}
.y47_c00173{bottom:787.905000px;}
.y3f_c00173{bottom:804.180000px;}
.y42_c00173{bottom:805.245000px;}
.y43_c00173{bottom:805.905000px;}
.y44_c00173{bottom:806.130000px;}
.y41_c00173{bottom:806.325000px;}
.y45_c00173{bottom:806.970000px;}
.y40_c00173{bottom:807.405000px;}
.y3e_c00173{bottom:822.405000px;}
.y3a_c00173{bottom:824.745000px;}
.y3d_c00173{bottom:825.630000px;}
.y3b_c00173{bottom:826.050000px;}
.y3c_c00173{bottom:826.905000px;}
.y36_c00173{bottom:844.245000px;}
.y38_c00173{bottom:845.130000px;}
.y39_c00173{bottom:845.970000px;}
.y37_c00173{bottom:846.405000px;}
.y30_c00173{bottom:861.405000px;}
.y32_c00173{bottom:863.745000px;}
.y35_c00173{bottom:864.630000px;}
.y34_c00173{bottom:864.825000px;}
.y31_c00173{bottom:865.470000px;}
.y2f_c00173{bottom:865.905000px;}
.y33_c00173{bottom:866.970000px;}
.y2e_c00173{bottom:883.245000px;}
.y2d_c00173{bottom:884.130000px;}
.y2c_c00173{bottom:885.405000px;}
.y29_c00173{bottom:901.905000px;}
.y2a_c00173{bottom:902.745000px;}
.y26_c00173{bottom:903.825000px;}
.y28_c00173{bottom:904.245000px;}
.y27_c00173{bottom:904.905000px;}
.y2b_c00173{bottom:905.130000px;}
.y25_c00173{bottom:922.245000px;}
.y24_c00173{bottom:924.405000px;}
.y22_c00173{bottom:941.745000px;}
.y20_c00173{bottom:942.825000px;}
.y21_c00173{bottom:943.245000px;}
.y23_c00173{bottom:943.905000px;}
.y1f_c00173{bottom:960.405000px;}
.y1d_c00173{bottom:963.405000px;}
.y1c_c00173{bottom:963.630000px;}
.y1e_c00173{bottom:964.905000px;}
.y1b_c00173{bottom:982.245000px;}
.y19_c00173{bottom:983.325000px;}
.y16_c00173{bottom:983.550000px;}
.y1a_c00173{bottom:983.970000px;}
.y17_c00173{bottom:984.405000px;}
.y18_c00173{bottom:985.470000px;}
.y13_c00173{bottom:1001.745000px;}
.y15_c00173{bottom:1002.630000px;}
.y14_c00173{bottom:1002.825000px;}
.y12_c00173{bottom:1003.905000px;}
.y11_c00173{bottom:1004.970000px;}
.yd_c00173{bottom:1021.245000px;}
.ye_c00173{bottom:1022.130000px;}
.y10_c00173{bottom:1022.325000px;}
.yc_c00173{bottom:1022.970000px;}
.yf_c00173{bottom:1023.405000px;}
.y9_c00173{bottom:1040.745000px;}
.ya_c00173{bottom:1041.825000px;}
.y8_c00173{bottom:1042.905000px;}
.yb_c00173{bottom:1043.130000px;}
.y6_c00173{bottom:1060.245000px;}
.y4_c00173{bottom:1060.680000px;}
.y5_c00173{bottom:1061.325000px;}
.y7_c00173{bottom:1061.745000px;}
.y3_c00173{bottom:1062.405000px;}
.y2_c00173{bottom:1098.405000px;}
.y1_c00173{bottom:1100.550000px;}
.h9_c00173{height:4.206533px;}
.ha_c00173{height:14.612168px;}
.h8_c00173{height:16.752334px;}
.h6_c00173{height:23.025234px;}
.h1_c00173{height:25.091602px;}
.h7_c00173{height:31.364502px;}
.h2_c00173{height:35.571035px;}
.h4_c00173{height:39.777568px;}
.h5_c00173{height:43.910303px;}
.h3_c00173{height:48.116836px;}
.h0_c00173{height:1335.000000px;}
.w0_c00173{width:880.500000px;}
.x0_c00173{left:0.000000px;}
.x2_c00173{left:153.420000px;}
.xb9_c00173{left:154.500000px;}
.xa8_c00173{left:155.580000px;}
.xa5_c00173{left:157.500000px;}
.xc9_c00173{left:166.500000px;}
.xc0_c00173{left:168.420000px;}
.xc1_c00173{left:169.920000px;}
.xa6_c00173{left:178.080000px;}
.x28_c00173{left:180.000000px;}
.xf_c00173{left:181.920000px;}
.x67_c00173{left:183.000000px;}
.x4a_c00173{left:185.580000px;}
.xb6_c00173{left:187.920000px;}
.x5d_c00173{left:194.580000px;}
.xd0_c00173{left:198.000000px;}
.x32_c00173{left:199.080000px;}
.x56_c00173{left:201.000000px;}
.xc6_c00173{left:204.000000px;}
.xc2_c00173{left:205.500000px;}
.x44_c00173{left:207.000000px;}
.xbd_c00173{left:208.920000px;}
.x5e_c00173{left:211.920000px;}
.x1c_c00173{left:213.420000px;}
.xc5_c00173{left:214.500000px;}
.x33_c00173{left:216.420000px;}
.x95_c00173{left:217.500000px;}
.xbe_c00173{left:218.580000px;}
.x29_c00173{left:220.500000px;}
.xca_c00173{left:222.000000px;}
.x70_c00173{left:223.920000px;}
.xb2_c00173{left:225.000000px;}
.xcb_c00173{left:226.500000px;}
.x7b_c00173{left:228.420000px;}
.x10_c00173{left:229.500000px;}
.x3_c00173{left:231.000000px;}
.x8d_c00173{left:232.080000px;}
.x2a_c00173{left:235.920000px;}
.x85_c00173{left:237.000000px;}
.x5f_c00173{left:238.500000px;}
.x4b_c00173{left:240.420000px;}
.x34_c00173{left:241.500000px;}
.x1d_c00173{left:243.000000px;}
.xce_c00173{left:244.920000px;}
.xc3_c00173{left:246.000000px;}
.x4_c00173{left:247.500000px;}
.xcf_c00173{left:253.500000px;}
.x71_c00173{left:259.920000px;}
.xcc_c00173{left:262.920000px;}
.x3d_c00173{left:264.000000px;}
.x2b_c00173{left:271.920000px;}
.x68_c00173{left:273.000000px;}
.x9b_c00173{left:276.000000px;}
.x35_c00173{left:279.000000px;}
.x57_c00173{left:282.000000px;}
.x11_c00173{left:284.580000px;}
.x86_c00173{left:291.420000px;}
.x5_c00173{left:294.420000px;}
.x36_c00173{left:297.420000px;}
.x7c_c00173{left:298.920000px;}
.x8e_c00173{left:301.920000px;}
.x12_c00173{left:304.920000px;}
.x4c_c00173{left:307.275000px;}
.xa7_c00173{left:321.420000px;}
.x37_c00173{left:322.500000px;}
.xa9_c00173{left:324.000000px;}
.x1e_c00173{left:325.920000px;}
.x7d_c00173{left:327.000000px;}
.x87_c00173{left:328.920000px;}
.x8f_c00173{left:330.000000px;}
.x69_c00173{left:331.500000px;}
.x13_c00173{left:333.000000px;}
.x4d_c00173{left:334.080000px;}
.x60_c00173{left:336.000000px;}
.x58_c00173{left:337.500000px;}
.x3e_c00173{left:340.920000px;}
.x6_c00173{left:346.500000px;}
.x45_c00173{left:348.000000px;}
.x72_c00173{left:352.500000px;}
.x88_c00173{left:355.500000px;}
.x1f_c00173{left:360.000000px;}
.x4e_c00173{left:362.145000px;}
.x9c_c00173{left:367.080000px;}
.x3f_c00173{left:368.580000px;}
.xa3_c00173{left:372.000000px;}
.x14_c00173{left:373.500000px;}
.x2c_c00173{left:375.000000px;}
.xc4_c00173{left:376.500000px;}
.xaa_c00173{left:378.000000px;}
.xcd_c00173{left:381.000000px;}
.x59_c00173{left:382.920000px;}
.x46_c00173{left:384.420000px;}
.x73_c00173{left:385.500000px;}
.xaf_c00173{left:387.000000px;}
.x7_c00173{left:388.500000px;}
.x15_c00173{left:391.500000px;}
.x6a_c00173{left:393.000000px;}
.x4f_c00173{left:394.500000px;}
.x1_c00173{left:399.000000px;}
.x74_c00173{left:403.920000px;}
.x96_c00173{left:409.920000px;}
.x8_c00173{left:411.000000px;}
.xa4_c00173{left:412.080000px;}
.x9a_c00173{left:414.000000px;}
.x20_c00173{left:415.920000px;}
.x9d_c00173{left:421.500000px;}
.x7e_c00173{left:424.500000px;}
.xd1_c00173{left:426.000000px;}
.x50_c00173{left:427.080000px;}
.xc8_c00173{left:430.500000px;}
.xab_c00173{left:432.000000px;}
.xb3_c00173{left:433.920000px;}
.x97_c00173{left:435.000000px;}
.x61_c00173{left:436.920000px;}
.x6b_c00173{left:438.000000px;}
.x40_c00173{left:439.500000px;}
.x21_c00173{left:441.420000px;}
.x7f_c00173{left:453.420000px;}
.x90_c00173{left:457.920000px;}
.x6c_c00173{left:459.000000px;}
.x9e_c00173{left:462.420000px;}
.x62_c00173{left:463.920000px;}
.x16_c00173{left:465.420000px;}
.x75_c00173{left:466.500000px;}
.x47_c00173{left:468.000000px;}
.x9_c00173{left:476.580000px;}
.x9f_c00173{left:481.500000px;}
.x2d_c00173{left:483.000000px;}
.x98_c00173{left:484.500000px;}
.x91_c00173{left:486.000000px;}
.xb4_c00173{left:487.920000px;}
.x6d_c00173{left:489.000000px;}
.xb8_c00173{left:490.500000px;}
.x17_c00173{left:493.500000px;}
.x22_c00173{left:495.000000px;}
.x89_c00173{left:499.500000px;}
.x80_c00173{left:503.580000px;}
.x5a_c00173{left:507.000000px;}
.x92_c00173{left:517.500000px;}
.x51_c00173{left:519.000000px;}
.x38_c00173{left:520.500000px;}
.x41_c00173{left:525.000000px;}
.xa_c00173{left:528.000000px;}
.x8a_c00173{left:531.000000px;}
.x18_c00173{left:532.500000px;}
.x63_c00173{left:536.580000px;}
.x2e_c00173{left:538.920000px;}
.xb7_c00173{left:540.000000px;}
.xac_c00173{left:541.500000px;}
.x81_c00173{left:543.000000px;}
.xb_c00173{left:544.920000px;}
.x23_c00173{left:547.500000px;}
.xba_c00173{left:549.000000px;}
.x42_c00173{left:551.580000px;}
.xa0_c00173{left:553.500000px;}
.x48_c00173{left:556.080000px;}
.x19_c00173{left:559.920000px;}
.x99_c00173{left:561.000000px;}
.x76_c00173{left:562.080000px;}
.x24_c00173{left:564.000000px;}
.x39_c00173{left:571.500000px;}
.x64_c00173{left:572.580000px;}
.x52_c00173{left:577.500000px;}
.x6e_c00173{left:580.920000px;}
.x2f_c00173{left:583.500000px;}
.x77_c00173{left:585.000000px;}
.x49_c00173{left:586.500000px;}
.x8b_c00173{left:592.500000px;}
.xb0_c00173{left:594.000000px;}
.xa1_c00173{left:595.500000px;}
.xc_c00173{left:598.500000px;}
.x25_c00173{left:601.500000px;}
.xbb_c00173{left:603.000000px;}
.xad_c00173{left:604.500000px;}
.x3a_c00173{left:606.000000px;}
.x6f_c00173{left:609.000000px;}
.x30_c00173{left:613.080000px;}
.x43_c00173{left:615.000000px;}
.x78_c00173{left:621.000000px;}
.x53_c00173{left:622.920000px;}
.x5b_c00173{left:624.000000px;}
.x93_c00173{left:625.500000px;}
.x82_c00173{left:628.920000px;}
.x65_c00173{left:633.000000px;}
.xd_c00173{left:634.500000px;}
.x3b_c00173{left:636.000000px;}
.x26_c00173{left:637.500000px;}
.x79_c00173{left:639.000000px;}
.x5c_c00173{left:643.500000px;}
.x94_c00173{left:648.420000px;}
.xae_c00173{left:649.500000px;}
.xc7_c00173{left:652.500000px;}
.x1a_c00173{left:654.000000px;}
.x83_c00173{left:657.420000px;}
.x66_c00173{left:658.500000px;}
.x7a_c00173{left:665.580000px;}
.x54_c00173{left:669.420000px;}
.x31_c00173{left:672.420000px;}
.xa2_c00173{left:675.000000px;}
.x27_c00173{left:676.920000px;}
.x3c_c00173{left:678.000000px;}
.xe_c00173{left:690.420000px;}
.x84_c00173{left:691.500000px;}
.xbf_c00173{left:697.920000px;}
.x8c_c00173{left:700.500000px;}
.xb5_c00173{left:702.000000px;}
.xb1_c00173{left:703.500000px;}
.xbc_c00173{left:706.500000px;}
.x1b_c00173{left:708.420000px;}
.x55_c00173{left:709.920000px;}
@media print{
.v1_c00173{vertical-align:-5.333333pt;}
.v0_c00173{vertical-align:0.000000pt;}
.ls1_c00173{letter-spacing:0.000000pt;}
.ls0_c00173{letter-spacing:16.526142pt;}
.wsb_c00173{word-spacing:-18.301502pt;}
.ws0_c00173{word-spacing:-15.012693pt;}
.ws18_c00173{word-spacing:0.000000pt;}
.ws9_c00173{word-spacing:13.289243pt;}
.wsc_c00173{word-spacing:13.776423pt;}
.wsa_c00173{word-spacing:14.750782pt;}
.ws16_c00173{word-spacing:15.237961pt;}
.ws14_c00173{word-spacing:30.669711pt;}
.ws11_c00173{word-spacing:31.131743pt;}
.ws17_c00173{word-spacing:36.134498pt;}
.ws7_c00173{word-spacing:38.332159pt;}
.ws10_c00173{word-spacing:39.832214pt;}
.ws15_c00173{word-spacing:41.137253pt;}
.ws12_c00173{word-spacing:42.804838pt;}
.wsd_c00173{word-spacing:44.078994pt;}
.ws5_c00173{word-spacing:52.717514pt;}
.wse_c00173{word-spacing:52.740178pt;}
.ws3_c00173{word-spacing:53.900800pt;}
.ws13_c00173{word-spacing:57.233843pt;}
.ws2_c00173{word-spacing:58.443472pt;}
.ws4_c00173{word-spacing:61.361940pt;}
.ws1_c00173{word-spacing:61.712627pt;}
.ws8_c00173{word-spacing:67.299773pt;}
.wsf_c00173{word-spacing:69.983702pt;}
.ws6_c00173{word-spacing:81.492846pt;}
._5_c00173{margin-left:-16.526142pt;}
._0_c00173{width:4.645226pt;}
._6_c00173{width:43.204791pt;}
._9_c00173{width:48.207546pt;}
._8_c00173{width:49.875131pt;}
._7_c00173{width:53.064899pt;}
._4_c00173{width:61.822541pt;}
._1_c00173{width:68.161232pt;}
._a_c00173{width:69.453859pt;}
._3_c00173{width:71.430387pt;}
._2_c00173{width:74.699543pt;}
.fs8_c00173{font-size:3.040000pt;}
.fs9_c00173{font-size:10.560000pt;}
.fs7_c00173{font-size:12.106667pt;}
.fs5_c00173{font-size:16.640000pt;}
.fs0_c00173{font-size:18.133333pt;}
.fs6_c00173{font-size:22.666667pt;}
.fs1_c00173{font-size:25.706667pt;}
.fs3_c00173{font-size:28.746667pt;}
.fs4_c00173{font-size:31.733333pt;}
.fs2_c00173{font-size:34.773333pt;}
.y0_c00173{bottom:0.000000pt;}
.yf8_c00173{bottom:216.560000pt;}
.yf7_c00173{bottom:217.506667pt;}
.yfa_c00173{bottom:217.706667pt;}
.yf5_c00173{bottom:217.893333pt;}
.yf6_c00173{bottom:218.840000pt;}
.yf9_c00173{bottom:219.040000pt;}
.yf1_c00173{bottom:229.506667pt;}
.yef_c00173{bottom:229.893333pt;}
.yf2_c00173{bottom:230.466667pt;}
.yf0_c00173{bottom:230.840000pt;}
.yf4_c00173{bottom:231.040000pt;}
.yf3_c00173{bottom:232.373333pt;}
.yee_c00173{bottom:240.560000pt;}
.ye9_c00173{bottom:241.506667pt;}
.yea_c00173{bottom:241.893333pt;}
.yeb_c00173{bottom:242.466667pt;}
.yed_c00173{bottom:242.840000pt;}
.yec_c00173{bottom:244.373333pt;}
.ye8_c00173{bottom:253.893333pt;}
.ye6_c00173{bottom:254.266667pt;}
.ye7_c00173{bottom:254.840000pt;}
.ye4_c00173{bottom:255.226667pt;}
.ye5_c00173{bottom:255.800000pt;}
.ye3_c00173{bottom:266.840000pt;}
.ydf_c00173{bottom:267.226667pt;}
.ye0_c00173{bottom:267.800000pt;}
.ye1_c00173{bottom:268.173333pt;}
.ye2_c00173{bottom:268.373333pt;}
.yde_c00173{bottom:277.893333pt;}
.ydb_c00173{bottom:279.226667pt;}
.ydc_c00173{bottom:280.173333pt;}
.ydd_c00173{bottom:280.373333pt;}
.yda_c00173{bottom:289.893333pt;}
.yd9_c00173{bottom:291.226667pt;}
.yd7_c00173{bottom:292.173333pt;}
.yd8_c00173{bottom:292.373333pt;}
.yd6_c00173{bottom:303.226667pt;}
.yd1_c00173{bottom:303.600000pt;}
.yd5_c00173{bottom:304.173333pt;}
.yd3_c00173{bottom:304.560000pt;}
.yd2_c00173{bottom:305.506667pt;}
.yd4_c00173{bottom:305.706667pt;}
.ycf_c00173{bottom:315.226667pt;}
.yd0_c00173{bottom:316.173333pt;}
.ycd_c00173{bottom:316.560000pt;}
.ycc_c00173{bottom:317.506667pt;}
.yce_c00173{bottom:317.706667pt;}
.ycb_c00173{bottom:327.226667pt;}
.yc7_c00173{bottom:328.933333pt;}
.yc9_c00173{bottom:329.506667pt;}
.yca_c00173{bottom:329.706667pt;}
.yc8_c00173{bottom:330.840000pt;}
.yc6_c00173{bottom:340.173333pt;}
.yc3_c00173{bottom:340.560000pt;}
.yc2_c00173{bottom:341.506667pt;}
.yc5_c00173{bottom:341.706667pt;}
.yc1_c00173{bottom:341.893333pt;}
.yc4_c00173{bottom:343.040000pt;}
.yc0_c00173{bottom:353.506667pt;}
.ybf_c00173{bottom:353.706667pt;}
.ybd_c00173{bottom:353.893333pt;}
.ybc_c00173{bottom:354.840000pt;}
.ybe_c00173{bottom:355.040000pt;}
.yb9_c00173{bottom:365.506667pt;}
.ybb_c00173{bottom:365.706667pt;}
.yb5_c00173{bottom:365.893333pt;}
.yb6_c00173{bottom:366.466667pt;}
.yb7_c00173{bottom:366.840000pt;}
.yba_c00173{bottom:367.040000pt;}
.yb8_c00173{bottom:368.173333pt;}
.yb4_c00173{bottom:377.506667pt;}
.yb0_c00173{bottom:377.893333pt;}
.yb2_c00173{bottom:378.840000pt;}
.yb3_c00173{bottom:379.040000pt;}
.yb1_c00173{bottom:379.226667pt;}
.yaf_c00173{bottom:388.560000pt;}
.yae_c00173{bottom:389.506667pt;}
.yaa_c00173{bottom:389.893333pt;}
.yac_c00173{bottom:390.840000pt;}
.yad_c00173{bottom:391.040000pt;}
.yab_c00173{bottom:391.226667pt;}
.ya9_c00173{bottom:403.226667pt;}
.ya8_c00173{bottom:412.560000pt;}
.ya6_c00173{bottom:413.893333pt;}
.ya4_c00173{bottom:414.840000pt;}
.ya7_c00173{bottom:415.040000pt;}
.ya2_c00173{bottom:415.226667pt;}
.ya3_c00173{bottom:415.800000pt;}
.ya5_c00173{bottom:416.373333pt;}
.ya1_c00173{bottom:426.840000pt;}
.ya0_c00173{bottom:427.040000pt;}
.y9e_c00173{bottom:428.173333pt;}
.y9f_c00173{bottom:428.373333pt;}
.y9d_c00173{bottom:438.840000pt;}
.y9b_c00173{bottom:440.173333pt;}
.y9c_c00173{bottom:440.373333pt;}
.y99_c00173{bottom:440.560000pt;}
.y9a_c00173{bottom:441.506667pt;}
.y98_c00173{bottom:450.840000pt;}
.y95_c00173{bottom:452.173333pt;}
.y97_c00173{bottom:452.373333pt;}
.y94_c00173{bottom:452.560000pt;}
.y96_c00173{bottom:453.706667pt;}
.y93_c00173{bottom:463.226667pt;}
.y91_c00173{bottom:464.173333pt;}
.y90_c00173{bottom:464.560000pt;}
.y8f_c00173{bottom:465.506667pt;}
.y92_c00173{bottom:465.706667pt;}
.y8e_c00173{bottom:475.226667pt;}
.y8d_c00173{bottom:476.173333pt;}
.y8b_c00173{bottom:476.560000pt;}
.y8a_c00173{bottom:477.506667pt;}
.y8c_c00173{bottom:477.706667pt;}
.y89_c00173{bottom:488.173333pt;}
.y86_c00173{bottom:488.560000pt;}
.y88_c00173{bottom:489.506667pt;}
.y87_c00173{bottom:489.706667pt;}
.y85_c00173{bottom:489.893333pt;}
.y84_c00173{bottom:490.840000pt;}
.y83_c00173{bottom:500.173333pt;}
.y82_c00173{bottom:500.560000pt;}
.y81_c00173{bottom:501.506667pt;}
.y7f_c00173{bottom:501.893333pt;}
.y80_c00173{bottom:503.040000pt;}
.y7e_c00173{bottom:511.226667pt;}
.y7b_c00173{bottom:512.933333pt;}
.y7d_c00173{bottom:513.506667pt;}
.y7a_c00173{bottom:514.840000pt;}
.y7c_c00173{bottom:515.040000pt;}
.y79_c00173{bottom:524.560000pt;}
.y78_c00173{bottom:525.506667pt;}
.y76_c00173{bottom:525.893333pt;}
.y75_c00173{bottom:526.266667pt;}
.y74_c00173{bottom:526.840000pt;}
.y77_c00173{bottom:527.040000pt;}
.y73_c00173{bottom:537.506667pt;}
.y72_c00173{bottom:537.893333pt;}
.y70_c00173{bottom:538.840000pt;}
.y6f_c00173{bottom:539.226667pt;}
.y71_c00173{bottom:540.373333pt;}
.y6e_c00173{bottom:549.506667pt;}
.y6d_c00173{bottom:549.893333pt;}
.y6b_c00173{bottom:550.840000pt;}
.y6a_c00173{bottom:551.226667pt;}
.y69_c00173{bottom:552.173333pt;}
.y6c_c00173{bottom:552.373333pt;}
.y68_c00173{bottom:561.893333pt;}
.y66_c00173{bottom:562.840000pt;}
.y65_c00173{bottom:563.226667pt;}
.y64_c00173{bottom:564.173333pt;}
.y67_c00173{bottom:564.373333pt;}
.y63_c00173{bottom:573.893333pt;}
.y62_c00173{bottom:574.840000pt;}
.y5f_c00173{bottom:575.226667pt;}
.y5e_c00173{bottom:575.600000pt;}
.y60_c00173{bottom:576.173333pt;}
.y61_c00173{bottom:576.373333pt;}
.y5d_c00173{bottom:576.560000pt;}
.y5c_c00173{bottom:585.893333pt;}
.y5a_c00173{bottom:587.226667pt;}
.y59_c00173{bottom:588.173333pt;}
.y5b_c00173{bottom:588.373333pt;}
.y57_c00173{bottom:603.226667pt;}
.y58_c00173{bottom:605.506667pt;}
.y56_c00173{bottom:621.306667pt;}
.y55_c00173{bottom:622.266667pt;}
.y52_c00173{bottom:632.733333pt;}
.y54_c00173{bottom:633.693333pt;}
.y51_c00173{bottom:634.266667pt;}
.y50_c00173{bottom:634.640000pt;}
.y53_c00173{bottom:635.600000pt;}
.y4f_c00173{bottom:653.506667pt;}
.y4e_c00173{bottom:654.266667pt;}
.y4d_c00173{bottom:679.773333pt;}
.y4a_c00173{bottom:681.693333pt;}
.y4c_c00173{bottom:682.640000pt;}
.y4b_c00173{bottom:683.026667pt;}
.y48_c00173{bottom:697.106667pt;}
.y46_c00173{bottom:699.026667pt;}
.y49_c00173{bottom:699.400000pt;}
.y47_c00173{bottom:700.360000pt;}
.y3f_c00173{bottom:714.826667pt;}
.y42_c00173{bottom:715.773333pt;}
.y43_c00173{bottom:716.360000pt;}
.y44_c00173{bottom:716.560000pt;}
.y41_c00173{bottom:716.733333pt;}
.y45_c00173{bottom:717.306667pt;}
.y40_c00173{bottom:717.693333pt;}
.y3e_c00173{bottom:731.026667pt;}
.y3a_c00173{bottom:733.106667pt;}
.y3d_c00173{bottom:733.893333pt;}
.y3b_c00173{bottom:734.266667pt;}
.y3c_c00173{bottom:735.026667pt;}
.y36_c00173{bottom:750.440000pt;}
.y38_c00173{bottom:751.226667pt;}
.y39_c00173{bottom:751.973333pt;}
.y37_c00173{bottom:752.360000pt;}
.y30_c00173{bottom:765.693333pt;}
.y32_c00173{bottom:767.773333pt;}
.y35_c00173{bottom:768.560000pt;}
.y34_c00173{bottom:768.733333pt;}
.y31_c00173{bottom:769.306667pt;}
.y2f_c00173{bottom:769.693333pt;}
.y33_c00173{bottom:770.640000pt;}
.y2e_c00173{bottom:785.106667pt;}
.y2d_c00173{bottom:785.893333pt;}
.y2c_c00173{bottom:787.026667pt;}
.y29_c00173{bottom:801.693333pt;}
.y2a_c00173{bottom:802.440000pt;}
.y26_c00173{bottom:803.400000pt;}
.y28_c00173{bottom:803.773333pt;}
.y27_c00173{bottom:804.360000pt;}
.y2b_c00173{bottom:804.560000pt;}
.y25_c00173{bottom:819.773333pt;}
.y24_c00173{bottom:821.693333pt;}
.y22_c00173{bottom:837.106667pt;}
.y20_c00173{bottom:838.066667pt;}
.y21_c00173{bottom:838.440000pt;}
.y23_c00173{bottom:839.026667pt;}
.y1f_c00173{bottom:853.693333pt;}
.y1d_c00173{bottom:856.360000pt;}
.y1c_c00173{bottom:856.560000pt;}
.y1e_c00173{bottom:857.693333pt;}
.y1b_c00173{bottom:873.106667pt;}
.y19_c00173{bottom:874.066667pt;}
.y16_c00173{bottom:874.266667pt;}
.y1a_c00173{bottom:874.640000pt;}
.y17_c00173{bottom:875.026667pt;}
.y18_c00173{bottom:875.973333pt;}
.y13_c00173{bottom:890.440000pt;}
.y15_c00173{bottom:891.226667pt;}
.y14_c00173{bottom:891.400000pt;}
.y12_c00173{bottom:892.360000pt;}
.y11_c00173{bottom:893.306667pt;}
.yd_c00173{bottom:907.773333pt;}
.ye_c00173{bottom:908.560000pt;}
.y10_c00173{bottom:908.733333pt;}
.yc_c00173{bottom:909.306667pt;}
.yf_c00173{bottom:909.693333pt;}
.y9_c00173{bottom:925.106667pt;}
.ya_c00173{bottom:926.066667pt;}
.y8_c00173{bottom:927.026667pt;}
.yb_c00173{bottom:927.226667pt;}
.y6_c00173{bottom:942.440000pt;}
.y4_c00173{bottom:942.826667pt;}
.y5_c00173{bottom:943.400000pt;}
.y7_c00173{bottom:943.773333pt;}
.y3_c00173{bottom:944.360000pt;}
.y2_c00173{bottom:976.360000pt;}
.y1_c00173{bottom:978.266667pt;}
.h9_c00173{height:3.739141pt;}
.ha_c00173{height:12.988594pt;}
.h8_c00173{height:14.890964pt;}
.h6_c00173{height:20.466875pt;}
.h1_c00173{height:22.303646pt;}
.h7_c00173{height:27.879557pt;}
.h2_c00173{height:31.618698pt;}
.h4_c00173{height:35.357839pt;}
.h5_c00173{height:39.031380pt;}
.h3_c00173{height:42.770521pt;}
.h0_c00173{height:1186.666667pt;}
.w0_c00173{width:782.666667pt;}
.x0_c00173{left:0.000000pt;}
.x2_c00173{left:136.373333pt;}
.xb9_c00173{left:137.333333pt;}
.xa8_c00173{left:138.293333pt;}
.xa5_c00173{left:140.000000pt;}
.xc9_c00173{left:148.000000pt;}
.xc0_c00173{left:149.706667pt;}
.xc1_c00173{left:151.040000pt;}
.xa6_c00173{left:158.293333pt;}
.x28_c00173{left:160.000000pt;}
.xf_c00173{left:161.706667pt;}
.x67_c00173{left:162.666667pt;}
.x4a_c00173{left:164.960000pt;}
.xb6_c00173{left:167.040000pt;}
.x5d_c00173{left:172.960000pt;}
.xd0_c00173{left:176.000000pt;}
.x32_c00173{left:176.960000pt;}
.x56_c00173{left:178.666667pt;}
.xc6_c00173{left:181.333333pt;}
.xc2_c00173{left:182.666667pt;}
.x44_c00173{left:184.000000pt;}
.xbd_c00173{left:185.706667pt;}
.x5e_c00173{left:188.373333pt;}
.x1c_c00173{left:189.706667pt;}
.xc5_c00173{left:190.666667pt;}
.x33_c00173{left:192.373333pt;}
.x95_c00173{left:193.333333pt;}
.xbe_c00173{left:194.293333pt;}
.x29_c00173{left:196.000000pt;}
.xca_c00173{left:197.333333pt;}
.x70_c00173{left:199.040000pt;}
.xb2_c00173{left:200.000000pt;}
.xcb_c00173{left:201.333333pt;}
.x7b_c00173{left:203.040000pt;}
.x10_c00173{left:204.000000pt;}
.x3_c00173{left:205.333333pt;}
.x8d_c00173{left:206.293333pt;}
.x2a_c00173{left:209.706667pt;}
.x85_c00173{left:210.666667pt;}
.x5f_c00173{left:212.000000pt;}
.x4b_c00173{left:213.706667pt;}
.x34_c00173{left:214.666667pt;}
.x1d_c00173{left:216.000000pt;}
.xce_c00173{left:217.706667pt;}
.xc3_c00173{left:218.666667pt;}
.x4_c00173{left:220.000000pt;}
.xcf_c00173{left:225.333333pt;}
.x71_c00173{left:231.040000pt;}
.xcc_c00173{left:233.706667pt;}
.x3d_c00173{left:234.666667pt;}
.x2b_c00173{left:241.706667pt;}
.x68_c00173{left:242.666667pt;}
.x9b_c00173{left:245.333333pt;}
.x35_c00173{left:248.000000pt;}
.x57_c00173{left:250.666667pt;}
.x11_c00173{left:252.960000pt;}
.x86_c00173{left:259.040000pt;}
.x5_c00173{left:261.706667pt;}
.x36_c00173{left:264.373333pt;}
.x7c_c00173{left:265.706667pt;}
.x8e_c00173{left:268.373333pt;}
.x12_c00173{left:271.040000pt;}
.x4c_c00173{left:273.133333pt;}
.xa7_c00173{left:285.706667pt;}
.x37_c00173{left:286.666667pt;}
.xa9_c00173{left:288.000000pt;}
.x1e_c00173{left:289.706667pt;}
.x7d_c00173{left:290.666667pt;}
.x87_c00173{left:292.373333pt;}
.x8f_c00173{left:293.333333pt;}
.x69_c00173{left:294.666667pt;}
.x13_c00173{left:296.000000pt;}
.x4d_c00173{left:296.960000pt;}
.x60_c00173{left:298.666667pt;}
.x58_c00173{left:300.000000pt;}
.x3e_c00173{left:303.040000pt;}
.x6_c00173{left:308.000000pt;}
.x45_c00173{left:309.333333pt;}
.x72_c00173{left:313.333333pt;}
.x88_c00173{left:316.000000pt;}
.x1f_c00173{left:320.000000pt;}
.x4e_c00173{left:321.906667pt;}
.x9c_c00173{left:326.293333pt;}
.x3f_c00173{left:327.626667pt;}
.xa3_c00173{left:330.666667pt;}
.x14_c00173{left:332.000000pt;}
.x2c_c00173{left:333.333333pt;}
.xc4_c00173{left:334.666667pt;}
.xaa_c00173{left:336.000000pt;}
.xcd_c00173{left:338.666667pt;}
.x59_c00173{left:340.373333pt;}
.x46_c00173{left:341.706667pt;}
.x73_c00173{left:342.666667pt;}
.xaf_c00173{left:344.000000pt;}
.x7_c00173{left:345.333333pt;}
.x15_c00173{left:348.000000pt;}
.x6a_c00173{left:349.333333pt;}
.x4f_c00173{left:350.666667pt;}
.x1_c00173{left:354.666667pt;}
.x74_c00173{left:359.040000pt;}
.x96_c00173{left:364.373333pt;}
.x8_c00173{left:365.333333pt;}
.xa4_c00173{left:366.293333pt;}
.x9a_c00173{left:368.000000pt;}
.x20_c00173{left:369.706667pt;}
.x9d_c00173{left:374.666667pt;}
.x7e_c00173{left:377.333333pt;}
.xd1_c00173{left:378.666667pt;}
.x50_c00173{left:379.626667pt;}
.xc8_c00173{left:382.666667pt;}
.xab_c00173{left:384.000000pt;}
.xb3_c00173{left:385.706667pt;}
.x97_c00173{left:386.666667pt;}
.x61_c00173{left:388.373333pt;}
.x6b_c00173{left:389.333333pt;}
.x40_c00173{left:390.666667pt;}
.x21_c00173{left:392.373333pt;}
.x7f_c00173{left:403.040000pt;}
.x90_c00173{left:407.040000pt;}
.x6c_c00173{left:408.000000pt;}
.x9e_c00173{left:411.040000pt;}
.x62_c00173{left:412.373333pt;}
.x16_c00173{left:413.706667pt;}
.x75_c00173{left:414.666667pt;}
.x47_c00173{left:416.000000pt;}
.x9_c00173{left:423.626667pt;}
.x9f_c00173{left:428.000000pt;}
.x2d_c00173{left:429.333333pt;}
.x98_c00173{left:430.666667pt;}
.x91_c00173{left:432.000000pt;}
.xb4_c00173{left:433.706667pt;}
.x6d_c00173{left:434.666667pt;}
.xb8_c00173{left:436.000000pt;}
.x17_c00173{left:438.666667pt;}
.x22_c00173{left:440.000000pt;}
.x89_c00173{left:444.000000pt;}
.x80_c00173{left:447.626667pt;}
.x5a_c00173{left:450.666667pt;}
.x92_c00173{left:460.000000pt;}
.x51_c00173{left:461.333333pt;}
.x38_c00173{left:462.666667pt;}
.x41_c00173{left:466.666667pt;}
.xa_c00173{left:469.333333pt;}
.x8a_c00173{left:472.000000pt;}
.x18_c00173{left:473.333333pt;}
.x63_c00173{left:476.960000pt;}
.x2e_c00173{left:479.040000pt;}
.xb7_c00173{left:480.000000pt;}
.xac_c00173{left:481.333333pt;}
.x81_c00173{left:482.666667pt;}
.xb_c00173{left:484.373333pt;}
.x23_c00173{left:486.666667pt;}
.xba_c00173{left:488.000000pt;}
.x42_c00173{left:490.293333pt;}
.xa0_c00173{left:492.000000pt;}
.x48_c00173{left:494.293333pt;}
.x19_c00173{left:497.706667pt;}
.x99_c00173{left:498.666667pt;}
.x76_c00173{left:499.626667pt;}
.x24_c00173{left:501.333333pt;}
.x39_c00173{left:508.000000pt;}
.x64_c00173{left:508.960000pt;}
.x52_c00173{left:513.333333pt;}
.x6e_c00173{left:516.373333pt;}
.x2f_c00173{left:518.666667pt;}
.x77_c00173{left:520.000000pt;}
.x49_c00173{left:521.333333pt;}
.x8b_c00173{left:526.666667pt;}
.xb0_c00173{left:528.000000pt;}
.xa1_c00173{left:529.333333pt;}
.xc_c00173{left:532.000000pt;}
.x25_c00173{left:534.666667pt;}
.xbb_c00173{left:536.000000pt;}
.xad_c00173{left:537.333333pt;}
.x3a_c00173{left:538.666667pt;}
.x6f_c00173{left:541.333333pt;}
.x30_c00173{left:544.960000pt;}
.x43_c00173{left:546.666667pt;}
.x78_c00173{left:552.000000pt;}
.x53_c00173{left:553.706667pt;}
.x5b_c00173{left:554.666667pt;}
.x93_c00173{left:556.000000pt;}
.x82_c00173{left:559.040000pt;}
.x65_c00173{left:562.666667pt;}
.xd_c00173{left:564.000000pt;}
.x3b_c00173{left:565.333333pt;}
.x26_c00173{left:566.666667pt;}
.x79_c00173{left:568.000000pt;}
.x5c_c00173{left:572.000000pt;}
.x94_c00173{left:576.373333pt;}
.xae_c00173{left:577.333333pt;}
.xc7_c00173{left:580.000000pt;}
.x1a_c00173{left:581.333333pt;}
.x83_c00173{left:584.373333pt;}
.x66_c00173{left:585.333333pt;}
.x7a_c00173{left:591.626667pt;}
.x54_c00173{left:595.040000pt;}
.x31_c00173{left:597.706667pt;}
.xa2_c00173{left:600.000000pt;}
.x27_c00173{left:601.706667pt;}
.x3c_c00173{left:602.666667pt;}
.xe_c00173{left:613.706667pt;}
.x84_c00173{left:614.666667pt;}
.xbf_c00173{left:620.373333pt;}
.x8c_c00173{left:622.666667pt;}
.xb5_c00173{left:624.000000pt;}
.xb1_c00173{left:625.333333pt;}
.xbc_c00173{left:628.000000pt;}
.x1b_c00173{left:629.706667pt;}
.x55_c00173{left:631.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_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_0198eaa796f6f74afd78424c.woff2')format("woff");}.ff1_c00174{font-family:ff1_c00174;line-height:1.688965;font-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_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);}
.mb7_c00174{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.m59_c00174{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m37_c00174{transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);}
.me6_c00174{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);}
.mb0_c00174{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.md_c00174{transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);}
.mfd_c00174{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m4c_c00174{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.me5_c00174{transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);}
.ma4_c00174{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m62_c00174{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mba_c00174{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m7d_c00174{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m5b_c00174{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.me3_c00174{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m7f_c00174{transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);}
.m77_c00174{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m30_c00174{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m36_c00174{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m61_c00174{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m97_c00174{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mb4_c00174{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.ma9_c00174{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.mdd_c00174{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.mbc_c00174{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.med_c00174{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m81_c00174{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.mf1_c00174{transform:matrix(0.399923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399923,0.000000,0.000000,0.250000,0,0);}
.m18_c00174{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m94_c00174{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m67_c00174{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m25_c00174{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m74_c00174{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.mce_c00174{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.m98_c00174{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m1b_c00174{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m17_c00174{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.mbd_c00174{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.mb5_c00174{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m24_c00174{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m69_c00174{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m4f_c00174{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m46_c00174{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m71_c00174{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.md2_c00174{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m2d_c00174{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mee_c00174{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m84_c00174{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m5d_c00174{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.me0_c00174{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m9_c00174{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m51_c00174{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m6_c00174{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m90_c00174{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m38_c00174{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mfb_c00174{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m49_c00174{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m3b_c00174{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.md6_c00174{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m83_c00174{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.me1_c00174{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m40_c00174{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m13_c00174{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m26_c00174{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m7_c00174{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mea_c00174{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m91_c00174{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m96_c00174{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m2a_c00174{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m22_c00174{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.me2_c00174{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m5a_c00174{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.mc_c00174{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m5e_c00174{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mac_c00174{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.mf5_c00174{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m6e_c00174{transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);}
.mb8_c00174{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.maf_c00174{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m8f_c00174{transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);}
.m7a_c00174{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m64_c00174{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.mda_c00174{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.me9_c00174{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.ma7_c00174{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.mf2_c00174{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m1_c00174{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m3c_c00174{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m45_c00174{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mdf_c00174{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m6d_c00174{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.md7_c00174{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.mf9_c00174{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.mf_c00174{transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);}
.m39_c00174{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m99_c00174{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m75_c00174{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.mf4_c00174{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.m7c_c00174{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.m4_c00174{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mae_c00174{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.mcf_c00174{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mb3_c00174{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m14_c00174{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m65_c00174{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.me7_c00174{transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);}
.m66_c00174{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m53_c00174{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m8a_c00174{transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);}
.m4e_c00174{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m34_c00174{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m1f_c00174{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m28_c00174{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m7b_c00174{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.ma8_c00174{transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);}
.m8c_c00174{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m1d_c00174{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m8d_c00174{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m6b_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);}
.m87_c00174{transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);}
.m5c_c00174{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.mf0_c00174{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.m3a_c00174{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m5f_c00174{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m3f_c00174{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.maa_c00174{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m9c_c00174{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.mc1_c00174{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mbe_c00174{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m15_c00174{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m44_c00174{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mbb_c00174{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.mc0_c00174{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m72_c00174{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mb1_c00174{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.md4_c00174{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.mf6_c00174{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m21_c00174{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.ma0_c00174{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.mab_c00174{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mc4_c00174{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m85_c00174{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.m9f_c00174{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mec_c00174{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m35_c00174{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m6c_c00174{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m5_c00174{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m2b_c00174{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m60_c00174{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m70_c00174{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.ma3_c00174{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m10_c00174{transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);}
.m12_c00174{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m3_c00174{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m86_c00174{transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);}
.mb6_c00174{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m2f_c00174{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mdc_c00174{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m4b_c00174{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m58_c00174{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m55_c00174{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m2e_c00174{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m31_c00174{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m6f_c00174{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m42_c00174{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m9a_c00174{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.mbf_c00174{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m63_c00174{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mc7_c00174{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m3d_c00174{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m89_c00174{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m3e_c00174{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m82_c00174{transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);}
.mef_c00174{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m47_c00174{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m11_c00174{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.ma5_c00174{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.ma1_c00174{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m6a_c00174{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m41_c00174{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.meb_c00174{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m52_c00174{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m9d_c00174{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m8b_c00174{transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);}
.mb_c00174{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m93_c00174{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m29_c00174{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.mdb_c00174{transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);}
.m9e_c00174{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m27_c00174{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m88_c00174{transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);}
.ma6_c00174{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mfa_c00174{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m7e_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);}
.m54_c00174{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m16_c00174{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.ma2_c00174{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m2c_c00174{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.mc3_c00174{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.mc5_c00174{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m80_c00174{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m19_c00174{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.md8_c00174{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.mb2_c00174{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m8e_c00174{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m1c_c00174{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.ma_c00174{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m56_c00174{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);}
.m92_c00174{transform:matrix(0.606846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606846,0.000000,0.000000,0.250000,0,0);}
.m1e_c00174{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m23_c00174{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m50_c00174{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m32_c00174{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m2_c00174{transform:matrix(0.617739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617739,0.000000,0.000000,0.250000,0,0);}
.md1_c00174{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m79_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);}
.md5_c00174{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.mcc_c00174{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m73_c00174{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mde_c00174{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m20_c00174{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.mc9_c00174{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.mc6_c00174{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.mf8_c00174{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.md3_c00174{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.mca_c00174{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.me4_c00174{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m0_c00174{transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);}
.m43_c00174{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m1a_c00174{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m48_c00174{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.md0_c00174{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m4d_c00174{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.mcd_c00174{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.mad_c00174{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mcb_c00174{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);}
.m4a_c00174{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.me8_c00174{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.mf3_c00174{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mb9_c00174{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mc8_c00174{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m8_c00174{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m68_c00174{transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);}
.m9b_c00174{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.me_c00174{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mc2_c00174{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m78_c00174{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.mf7_c00174{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.mfc_c00174{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m76_c00174{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.md9_c00174{transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);}
.m95_c00174{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m33_c00174{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws2_c00174{word-spacing:-16.889280px;}
.ws1_c00174{word-spacing:-3.719400px;}
.ws3_c00174{word-spacing:0.000000px;}
.ws0_c00174{word-spacing:3.747348px;}
._0_c00174{width:5.225879px;}
.fc0_c00174{color:transparent;}
.fs6_c00174{font-size:3.420000px;}
.fs7_c00174{font-size:13.620000px;}
.fs0_c00174{font-size:18.720000px;}
.fs5_c00174{font-size:20.400000px;}
.fs4_c00174{font-size:25.500000px;}
.fs1_c00174{font-size:28.920000px;}
.fs2_c00174{font-size:32.340000px;}
.fs3_c00174{font-size:35.700000px;}
.fs8_c00174{font-size:39.120000px;}
.y0_c00174{bottom:0.000000px;}
.ybe_c00174{bottom:252.825000px;}
.ybf_c00174{bottom:253.245000px;}
.yc1_c00174{bottom:253.905000px;}
.yc0_c00174{bottom:254.130000px;}
.ybd_c00174{bottom:254.970000px;}
.ybc_c00174{bottom:255.405000px;}
.yb8_c00174{bottom:272.745000px;}
.ybb_c00174{bottom:273.630000px;}
.yb9_c00174{bottom:274.905000px;}
.yba_c00174{bottom:275.130000px;}
.yb7_c00174{bottom:291.180000px;}
.yb3_c00174{bottom:292.245000px;}
.yb6_c00174{bottom:293.325000px;}
.yb4_c00174{bottom:293.970000px;}
.yb2_c00174{bottom:294.405000px;}
.yb5_c00174{bottom:295.470000px;}
.yb1_c00174{bottom:295.905000px;}
.yad_c00174{bottom:311.745000px;}
.yae_c00174{bottom:312.825000px;}
.yaf_c00174{bottom:313.905000px;}
.yb0_c00174{bottom:314.130000px;}
.yaa_c00174{bottom:331.245000px;}
.ya7_c00174{bottom:331.680000px;}
.yac_c00174{bottom:332.325000px;}
.yab_c00174{bottom:332.745000px;}
.ya8_c00174{bottom:333.405000px;}
.ya9_c00174{bottom:333.630000px;}
.ya2_c00174{bottom:349.905000px;}
.ya4_c00174{bottom:350.745000px;}
.ya5_c00174{bottom:350.970000px;}
.y9f_c00174{bottom:352.245000px;}
.ya6_c00174{bottom:353.130000px;}
.ya3_c00174{bottom:353.970000px;}
.ya1_c00174{bottom:354.405000px;}
.ya0_c00174{bottom:354.420000px;}
.y9c_c00174{bottom:373.470000px;}
.y9a_c00174{bottom:374.325000px;}
.y9e_c00174{bottom:375.405000px;}
.y9b_c00174{bottom:375.630000px;}
.y97_c00174{bottom:375.825000px;}
.y98_c00174{bottom:376.470000px;}
.y99_c00174{bottom:376.695000px;}
.y94_c00174{bottom:376.905000px;}
.y93_c00174{bottom:377.130000px;}
.y9d_c00174{bottom:377.550000px;}
.y95_c00174{bottom:377.970000px;}
.y96_c00174{bottom:378.195000px;}
.y91_c00174{bottom:389.970000px;}
.y8f_c00174{bottom:390.825000px;}
.y8d_c00174{bottom:391.695000px;}
.y8c_c00174{bottom:391.905000px;}
.y90_c00174{bottom:392.130000px;}
.y8e_c00174{bottom:392.550000px;}
.y92_c00174{bottom:392.970000px;}
.y8b_c00174{bottom:404.325000px;}
.y89_c00174{bottom:405.405000px;}
.y88_c00174{bottom:407.130000px;}
.y8a_c00174{bottom:407.550000px;}
.y87_c00174{bottom:428.745000px;}
.y86_c00174{bottom:429.630000px;}
.y84_c00174{bottom:430.470000px;}
.y83_c00174{bottom:430.905000px;}
.y85_c00174{bottom:431.970000px;}
.y7f_c00174{bottom:448.245000px;}
.y82_c00174{bottom:449.130000px;}
.y80_c00174{bottom:450.405000px;}
.y81_c00174{bottom:450.630000px;}
.y7c_c00174{bottom:467.745000px;}
.y7e_c00174{bottom:468.825000px;}
.y7b_c00174{bottom:469.905000px;}
.y7d_c00174{bottom:470.130000px;}
.y78_c00174{bottom:487.245000px;}
.y79_c00174{bottom:489.405000px;}
.y7a_c00174{bottom:489.630000px;}
.y77_c00174{bottom:507.825000px;}
.y73_c00174{bottom:508.245000px;}
.y75_c00174{bottom:508.905000px;}
.y74_c00174{bottom:509.130000px;}
.y76_c00174{bottom:509.970000px;}
.y71_c00174{bottom:510.405000px;}
.y72_c00174{bottom:510.420000px;}
.y6f_c00174{bottom:527.745000px;}
.y6e_c00174{bottom:528.825000px;}
.y70_c00174{bottom:529.905000px;}
.y6d_c00174{bottom:547.245000px;}
.y6c_c00174{bottom:549.405000px;}
.y6b_c00174{bottom:550.470000px;}
.y69_c00174{bottom:565.905000px;}
.y6a_c00174{bottom:566.745000px;}
.y67_c00174{bottom:568.905000px;}
.y68_c00174{bottom:570.420000px;}
.y66_c00174{bottom:586.245000px;}
.y63_c00174{bottom:588.405000px;}
.y64_c00174{bottom:588.630000px;}
.y65_c00174{bottom:589.920000px;}
.y5f_c00174{bottom:607.245000px;}
.y61_c00174{bottom:608.325000px;}
.y62_c00174{bottom:609.405000px;}
.y60_c00174{bottom:609.420000px;}
.y5c_c00174{bottom:626.745000px;}
.y5e_c00174{bottom:628.905000px;}
.y5d_c00174{bottom:628.920000px;}
.y5b_c00174{bottom:651.405000px;}
.y5a_c00174{bottom:652.470000px;}
.y59_c00174{bottom:664.905000px;}
.y57_c00174{bottom:665.970000px;}
.y58_c00174{bottom:666.405000px;}
.y56_c00174{bottom:667.470000px;}
.y54_c00174{bottom:684.825000px;}
.y53_c00174{bottom:685.050000px;}
.y52_c00174{bottom:685.905000px;}
.y55_c00174{bottom:688.050000px;}
.y51_c00174{bottom:710.325000px;}
.y50_c00174{bottom:711.405000px;}
.y4e_c00174{bottom:745.245000px;}
.y4d_c00174{bottom:747.405000px;}
.y4c_c00174{bottom:747.630000px;}
.y4f_c00174{bottom:748.470000px;}
.y4b_c00174{bottom:763.905000px;}
.y45_c00174{bottom:764.745000px;}
.y4a_c00174{bottom:764.970000px;}
.y48_c00174{bottom:765.405000px;}
.y46_c00174{bottom:766.245000px;}
.y49_c00174{bottom:767.970000px;}
.y47_c00174{bottom:768.405000px;}
.y44_c00174{bottom:784.470000px;}
.y42_c00174{bottom:784.905000px;}
.y3f_c00174{bottom:785.745000px;}
.y43_c00174{bottom:787.470000px;}
.y40_c00174{bottom:787.905000px;}
.y41_c00174{bottom:788.970000px;}
.y3c_c00174{bottom:805.245000px;}
.y3d_c00174{bottom:806.325000px;}
.y3e_c00174{bottom:806.970000px;}
.y3b_c00174{bottom:807.405000px;}
.y39_c00174{bottom:824.745000px;}
.y37_c00174{bottom:825.825000px;}
.y38_c00174{bottom:826.905000px;}
.y3a_c00174{bottom:827.130000px;}
.y36_c00174{bottom:844.245000px;}
.y35_c00174{bottom:846.405000px;}
.y34_c00174{bottom:864.825000px;}
.y32_c00174{bottom:865.245000px;}
.y30_c00174{bottom:865.905000px;}
.y31_c00174{bottom:866.970000px;}
.y33_c00174{bottom:867.405000px;}
.y2d_c00174{bottom:884.745000px;}
.y2e_c00174{bottom:885.630000px;}
.y2f_c00174{bottom:886.470000px;}
.y2c_c00174{bottom:886.905000px;}
.y2a_c00174{bottom:904.245000px;}
.y2b_c00174{bottom:905.130000px;}
.y29_c00174{bottom:905.970000px;}
.y28_c00174{bottom:906.405000px;}
.y23_c00174{bottom:921.405000px;}
.y27_c00174{bottom:923.325000px;}
.y25_c00174{bottom:923.745000px;}
.y24_c00174{bottom:924.630000px;}
.y26_c00174{bottom:925.470000px;}
.y22_c00174{bottom:925.905000px;}
.y21_c00174{bottom:942.825000px;}
.y20_c00174{bottom:943.245000px;}
.y1e_c00174{bottom:945.405000px;}
.y1f_c00174{bottom:945.420000px;}
.y1b_c00174{bottom:962.745000px;}
.y1d_c00174{bottom:964.050000px;}
.y1c_c00174{bottom:964.905000px;}
.y19_c00174{bottom:983.745000px;}
.y1a_c00174{bottom:984.630000px;}
.y18_c00174{bottom:985.470000px;}
.y17_c00174{bottom:985.905000px;}
.y16_c00174{bottom:1003.245000px;}
.y15_c00174{bottom:1005.405000px;}
.y10_c00174{bottom:1021.245000px;}
.y14_c00174{bottom:1021.470000px;}
.y11_c00174{bottom:1022.325000px;}
.ye_c00174{bottom:1023.405000px;}
.yf_c00174{bottom:1023.630000px;}
.y12_c00174{bottom:1024.470000px;}
.y13_c00174{bottom:1024.905000px;}
.ya_c00174{bottom:1042.245000px;}
.yd_c00174{bottom:1042.905000px;}
.y9_c00174{bottom:1043.130000px;}
.yb_c00174{bottom:1043.325000px;}
.yc_c00174{bottom:1044.405000px;}
.y4_c00174{bottom:1059.405000px;}
.y8_c00174{bottom:1060.470000px;}
.y6_c00174{bottom:1061.745000px;}
.y5_c00174{bottom:1062.825000px;}
.y3_c00174{bottom:1063.905000px;}
.y7_c00174{bottom:1064.130000px;}
.y2_c00174{bottom:1099.905000px;}
.y1_c00174{bottom:1103.130000px;}
.h7_c00174{height:4.206533px;}
.h8_c00174{height:16.752334px;}
.h1_c00174{height:23.025234px;}
.h6_c00174{height:25.091602px;}
.h5_c00174{height:31.364502px;}
.h2_c00174{height:35.571035px;}
.h3_c00174{height:39.777568px;}
.h4_c00174{height:43.910303px;}
.h9_c00174{height:48.116836px;}
.h0_c00174{height:1335.000000px;}
.w0_c00174{width:880.500000px;}
.x0_c00174{left:0.000000px;}
.x3_c00174{left:151.920000px;}
.xa3_c00174{left:153.000000px;}
.x9a_c00174{left:160.500000px;}
.xa1_c00174{left:165.000000px;}
.x37_c00174{left:166.080000px;}
.x44_c00174{left:167.145000px;}
.xb5_c00174{left:172.080000px;}
.x4_c00174{left:174.420000px;}
.x11_c00174{left:178.920000px;}
.xcb_c00174{left:181.500000px;}
.x1d_c00174{left:183.000000px;}
.xda_c00174{left:186.000000px;}
.x7f_c00174{left:187.500000px;}
.x89_c00174{left:189.420000px;}
.x4d_c00174{left:190.500000px;}
.x41_c00174{left:193.500000px;}
.x59_c00174{left:198.000000px;}
.xf7_c00174{left:199.500000px;}
.x5_c00174{left:201.000000px;}
.xbb_c00174{left:202.500000px;}
.xc6_c00174{left:205.920000px;}
.xa4_c00174{left:207.420000px;}
.xdf_c00174{left:208.500000px;}
.x91_c00174{left:210.420000px;}
.x42_c00174{left:211.500000px;}
.x68_c00174{left:212.580000px;}
.x57_c00174{left:216.000000px;}
.x2d_c00174{left:217.500000px;}
.xcc_c00174{left:219.000000px;}
.x97_c00174{left:220.500000px;}
.x9b_c00174{left:225.000000px;}
.xb6_c00174{left:228.000000px;}
.xf1_c00174{left:229.500000px;}
.x12_c00174{left:231.000000px;}
.x38_c00174{left:233.580000px;}
.x1e_c00174{left:235.500000px;}
.x45_c00174{left:237.000000px;}
.x105_c00174{left:238.500000px;}
.x6_c00174{left:241.080000px;}
.xc7_c00174{left:244.080000px;}
.x74_c00174{left:246.000000px;}
.xac_c00174{left:247.500000px;}
.x5a_c00174{left:249.420000px;}
.x1f_c00174{left:253.920000px;}
.xeb_c00174{left:255.000000px;}
.x43_c00174{left:256.920000px;}
.xa7_c00174{left:258.000000px;}
.xb0_c00174{left:259.500000px;}
.xdb_c00174{left:262.500000px;}
.x39_c00174{left:264.000000px;}
.x98_c00174{left:265.500000px;}
.xa5_c00174{left:267.000000px;}
.x69_c00174{left:268.500000px;}
.x99_c00174{left:271.080000px;}
.x13_c00174{left:274.920000px;}
.x58_c00174{left:276.000000px;}
.xbc_c00174{left:277.920000px;}
.xa8_c00174{left:279.000000px;}
.x46_c00174{left:280.500000px;}
.x2e_c00174{left:283.500000px;}
.x20_c00174{left:288.000000px;}
.x8a_c00174{left:289.500000px;}
.x4e_c00174{left:291.000000px;}
.xd4_c00174{left:292.080000px;}
.x5b_c00174{left:293.580000px;}
.x9c_c00174{left:295.920000px;}
.x75_c00174{left:297.000000px;}
.x2f_c00174{left:298.500000px;}
.xad_c00174{left:300.000000px;}
.x3a_c00174{left:301.500000px;}
.x7_c00174{left:303.420000px;}
.xe0_c00174{left:304.500000px;}
.x6a_c00174{left:306.000000px;}
.x76_c00174{left:310.080000px;}
.xd5_c00174{left:312.000000px;}
.x4f_c00174{left:315.000000px;}
.xfb_c00174{left:318.000000px;}
.x8b_c00174{left:319.920000px;}
.xf2_c00174{left:321.420000px;}
.xb7_c00174{left:322.500000px;}
.x80_c00174{left:328.500000px;}
.x8_c00174{left:330.000000px;}
.xe3_c00174{left:331.500000px;}
.x5c_c00174{left:333.000000px;}
.xdc_c00174{left:334.500000px;}
.x21_c00174{left:336.000000px;}
.x14_c00174{left:337.500000px;}
.x47_c00174{left:338.580000px;}
.xf3_c00174{left:340.500000px;}
.x77_c00174{left:342.420000px;}
.xcd_c00174{left:343.920000px;}
.x30_c00174{left:345.000000px;}
.xae_c00174{left:347.145000px;}
.x81_c00174{left:349.500000px;}
.x5d_c00174{left:350.580000px;}
.x100_c00174{left:352.500000px;}
.xb1_c00174{left:353.580000px;}
.xf8_c00174{left:355.920000px;}
.xbe_c00174{left:359.145000px;}
.x22_c00174{left:361.500000px;}
.xe1_c00174{left:364.500000px;}
.x6d_c00174{left:369.000000px;}
.xf4_c00174{left:370.920000px;}
.x5e_c00174{left:372.420000px;}
.x6b_c00174{left:373.500000px;}
.xa6_c00174{left:374.580000px;}
.x50_c00174{left:376.920000px;}
.x8c_c00174{left:379.500000px;}
.x15_c00174{left:381.000000px;}
.xf9_c00174{left:382.500000px;}
.xa9_c00174{left:384.000000px;}
.x78_c00174{left:385.500000px;}
.x48_c00174{left:386.775000px;}
.x9_c00174{left:388.920000px;}
.xe2_c00174{left:393.420000px;}
.x82_c00174{left:396.000000px;}
.x1_c00174{left:397.500000px;}
.xaf_c00174{left:399.000000px;}
.x9d_c00174{left:400.500000px;}
.x8d_c00174{left:402.000000px;}
.x79_c00174{left:403.500000px;}
.x3b_c00174{left:404.580000px;}
.xfa_c00174{left:408.420000px;}
.x92_c00174{left:409.500000px;}
.xaa_c00174{left:411.000000px;}
.x23_c00174{left:412.500000px;}
.x5f_c00174{left:417.420000px;}
.x83_c00174{left:418.500000px;}
.x31_c00174{left:419.580000px;}
.xbf_c00174{left:421.080000px;}
.x3c_c00174{left:423.420000px;}
.xe4_c00174{left:424.500000px;}
.x93_c00174{left:427.080000px;}
.xbd_c00174{left:433.500000px;}
.x51_c00174{left:436.080000px;}
.x101_c00174{left:438.420000px;}
.xce_c00174{left:439.500000px;}
.x84_c00174{left:441.420000px;}
.x6e_c00174{left:442.920000px;}
.xdd_c00174{left:444.645000px;}
.xa_c00174{left:447.000000px;}
.x16_c00174{left:448.500000px;}
.x6c_c00174{left:450.000000px;}
.x3d_c00174{left:451.500000px;}
.x24_c00174{left:453.000000px;}
.xb_c00174{left:459.420000px;}
.xf5_c00174{left:460.500000px;}
.x32_c00174{left:463.500000px;}
.x7a_c00174{left:465.000000px;}
.x17_c00174{left:466.500000px;}
.xa2_c00174{left:467.580000px;}
.xc0_c00174{left:469.275000px;}
.xec_c00174{left:471.420000px;}
.x102_c00174{left:472.500000px;}
.xab_c00174{left:473.775000px;}
.x60_c00174{left:475.500000px;}
.x49_c00174{left:478.500000px;}
.xd6_c00174{left:480.420000px;}
.x9e_c00174{left:484.080000px;}
.x7b_c00174{left:486.000000px;}
.x52_c00174{left:487.500000px;}
.x3e_c00174{left:490.080000px;}
.x61_c00174{left:492.000000px;}
.xe5_c00174{left:493.500000px;}
.x33_c00174{left:495.420000px;}
.xfc_c00174{left:499.920000px;}
.xc1_c00174{left:501.000000px;}
.xe6_c00174{left:502.500000px;}
.xcf_c00174{left:505.920000px;}
.xc_c00174{left:507.000000px;}
.xb2_c00174{left:508.920000px;}
.xed_c00174{left:510.000000px;}
.x4a_c00174{left:511.920000px;}
.x103_c00174{left:513.000000px;}
.x53_c00174{left:514.500000px;}
.x6f_c00174{left:516.000000px;}
.x25_c00174{left:519.000000px;}
.x18_c00174{left:522.420000px;}
.x94_c00174{left:525.420000px;}
.x62_c00174{left:529.500000px;}
.x85_c00174{left:531.000000px;}
.xd7_c00174{left:532.080000px;}
.x26_c00174{left:535.080000px;}
.x8e_c00174{left:538.920000px;}
.x4b_c00174{left:540.000000px;}
.x70_c00174{left:541.500000px;}
.xf6_c00174{left:543.000000px;}
.xc8_c00174{left:544.080000px;}
.xb3_c00174{left:545.580000px;}
.x63_c00174{left:547.920000px;}
.xb8_c00174{left:549.000000px;}
.x54_c00174{left:550.920000px;}
.xc2_c00174{left:556.920000px;}
.x19_c00174{left:559.920000px;}
.x3f_c00174{left:562.080000px;}
.xee_c00174{left:564.000000px;}
.xd_c00174{left:565.080000px;}
.x9f_c00174{left:567.420000px;}
.x34_c00174{left:571.080000px;}
.xd0_c00174{left:574.080000px;}
.x64_c00174{left:576.000000px;}
.x55_c00174{left:577.920000px;}
.x27_c00174{left:579.000000px;}
.x7c_c00174{left:580.080000px;}
.xe7_c00174{left:583.500000px;}
.x1a_c00174{left:588.000000px;}
.x35_c00174{left:589.920000px;}
.xb4_c00174{left:592.080000px;}
.xfd_c00174{left:595.920000px;}
.xef_c00174{left:597.000000px;}
.x28_c00174{left:598.920000px;}
.xe_c00174{left:600.420000px;}
.x86_c00174{left:603.000000px;}
.x71_c00174{left:604.080000px;}
.xd1_c00174{left:606.000000px;}
.xc3_c00174{left:607.080000px;}
.x8f_c00174{left:613.500000px;}
.x36_c00174{left:615.000000px;}
.x95_c00174{left:616.920000px;}
.x56_c00174{left:618.420000px;}
.x106_c00174{left:620.580000px;}
.x87_c00174{left:622.080000px;}
.xfe_c00174{left:624.000000px;}
.xb9_c00174{left:625.500000px;}
.xd2_c00174{left:629.580000px;}
.x29_c00174{left:633.000000px;}
.x90_c00174{left:636.000000px;}
.xf_c00174{left:637.500000px;}
.xe8_c00174{left:640.500000px;}
.x96_c00174{left:642.000000px;}
.x65_c00174{left:643.080000px;}
.x1b_c00174{left:645.000000px;}
.x7d_c00174{left:649.500000px;}
.x2a_c00174{left:651.420000px;}
.xc4_c00174{left:652.920000px;}
.xd8_c00174{left:654.000000px;}
.xde_c00174{left:655.500000px;}
.x72_c00174{left:659.775000px;}
.xa0_c00174{left:663.420000px;}
.x7e_c00174{left:664.500000px;}
.xff_c00174{left:666.000000px;}
.xe9_c00174{left:667.920000px;}
.x66_c00174{left:669.000000px;}
.xf0_c00174{left:672.000000px;}
.x107_c00174{left:673.920000px;}
.x2b_c00174{left:678.000000px;}
.xc5_c00174{left:679.500000px;}
.x4c_c00174{left:682.500000px;}
.xc9_c00174{left:684.000000px;}
.x88_c00174{left:686.580000px;}
.x1c_c00174{left:688.080000px;}
.x10_c00174{left:691.500000px;}
.xea_c00174{left:693.000000px;}
.x73_c00174{left:696.420000px;}
.xba_c00174{left:697.920000px;}
.x104_c00174{left:700.080000px;}
.xca_c00174{left:703.500000px;}
.x2_c00174{left:705.420000px;}
.x40_c00174{left:706.500000px;}
.xd3_c00174{left:708.420000px;}
.x67_c00174{left:715.080000px;}
.xd9_c00174{left:721.500000px;}
.x2c_c00174{left:724.080000px;}
@media print{
.v0_c00174{vertical-align:0.000000pt;}
.ls0_c00174{letter-spacing:0.000000pt;}
.ws2_c00174{word-spacing:-15.012693pt;}
.ws1_c00174{word-spacing:-3.306133pt;}
.ws3_c00174{word-spacing:0.000000pt;}
.ws0_c00174{word-spacing:3.330976pt;}
._0_c00174{width:4.645226pt;}
.fs6_c00174{font-size:3.040000pt;}
.fs7_c00174{font-size:12.106667pt;}
.fs0_c00174{font-size:16.640000pt;}
.fs5_c00174{font-size:18.133333pt;}
.fs4_c00174{font-size:22.666667pt;}
.fs1_c00174{font-size:25.706667pt;}
.fs2_c00174{font-size:28.746667pt;}
.fs3_c00174{font-size:31.733333pt;}
.fs8_c00174{font-size:34.773333pt;}
.y0_c00174{bottom:0.000000pt;}
.ybe_c00174{bottom:224.733333pt;}
.ybf_c00174{bottom:225.106667pt;}
.yc1_c00174{bottom:225.693333pt;}
.yc0_c00174{bottom:225.893333pt;}
.ybd_c00174{bottom:226.640000pt;}
.ybc_c00174{bottom:227.026667pt;}
.yb8_c00174{bottom:242.440000pt;}
.ybb_c00174{bottom:243.226667pt;}
.yb9_c00174{bottom:244.360000pt;}
.yba_c00174{bottom:244.560000pt;}
.yb7_c00174{bottom:258.826667pt;}
.yb3_c00174{bottom:259.773333pt;}
.yb6_c00174{bottom:260.733333pt;}
.yb4_c00174{bottom:261.306667pt;}
.yb2_c00174{bottom:261.693333pt;}
.yb5_c00174{bottom:262.640000pt;}
.yb1_c00174{bottom:263.026667pt;}
.yad_c00174{bottom:277.106667pt;}
.yae_c00174{bottom:278.066667pt;}
.yaf_c00174{bottom:279.026667pt;}
.yb0_c00174{bottom:279.226667pt;}
.yaa_c00174{bottom:294.440000pt;}
.ya7_c00174{bottom:294.826667pt;}
.yac_c00174{bottom:295.400000pt;}
.yab_c00174{bottom:295.773333pt;}
.ya8_c00174{bottom:296.360000pt;}
.ya9_c00174{bottom:296.560000pt;}
.ya2_c00174{bottom:311.026667pt;}
.ya4_c00174{bottom:311.773333pt;}
.ya5_c00174{bottom:311.973333pt;}
.y9f_c00174{bottom:313.106667pt;}
.ya6_c00174{bottom:313.893333pt;}
.ya3_c00174{bottom:314.640000pt;}
.ya1_c00174{bottom:315.026667pt;}
.ya0_c00174{bottom:315.040000pt;}
.y9c_c00174{bottom:331.973333pt;}
.y9a_c00174{bottom:332.733333pt;}
.y9e_c00174{bottom:333.693333pt;}
.y9b_c00174{bottom:333.893333pt;}
.y97_c00174{bottom:334.066667pt;}
.y98_c00174{bottom:334.640000pt;}
.y99_c00174{bottom:334.840000pt;}
.y94_c00174{bottom:335.026667pt;}
.y93_c00174{bottom:335.226667pt;}
.y9d_c00174{bottom:335.600000pt;}
.y95_c00174{bottom:335.973333pt;}
.y96_c00174{bottom:336.173333pt;}
.y91_c00174{bottom:346.640000pt;}
.y8f_c00174{bottom:347.400000pt;}
.y8d_c00174{bottom:348.173333pt;}
.y8c_c00174{bottom:348.360000pt;}
.y90_c00174{bottom:348.560000pt;}
.y8e_c00174{bottom:348.933333pt;}
.y92_c00174{bottom:349.306667pt;}
.y8b_c00174{bottom:359.400000pt;}
.y89_c00174{bottom:360.360000pt;}
.y88_c00174{bottom:361.893333pt;}
.y8a_c00174{bottom:362.266667pt;}
.y87_c00174{bottom:381.106667pt;}
.y86_c00174{bottom:381.893333pt;}
.y84_c00174{bottom:382.640000pt;}
.y83_c00174{bottom:383.026667pt;}
.y85_c00174{bottom:383.973333pt;}
.y7f_c00174{bottom:398.440000pt;}
.y82_c00174{bottom:399.226667pt;}
.y80_c00174{bottom:400.360000pt;}
.y81_c00174{bottom:400.560000pt;}
.y7c_c00174{bottom:415.773333pt;}
.y7e_c00174{bottom:416.733333pt;}
.y7b_c00174{bottom:417.693333pt;}
.y7d_c00174{bottom:417.893333pt;}
.y78_c00174{bottom:433.106667pt;}
.y79_c00174{bottom:435.026667pt;}
.y7a_c00174{bottom:435.226667pt;}
.y77_c00174{bottom:451.400000pt;}
.y73_c00174{bottom:451.773333pt;}
.y75_c00174{bottom:452.360000pt;}
.y74_c00174{bottom:452.560000pt;}
.y76_c00174{bottom:453.306667pt;}
.y71_c00174{bottom:453.693333pt;}
.y72_c00174{bottom:453.706667pt;}
.y6f_c00174{bottom:469.106667pt;}
.y6e_c00174{bottom:470.066667pt;}
.y70_c00174{bottom:471.026667pt;}
.y6d_c00174{bottom:486.440000pt;}
.y6c_c00174{bottom:488.360000pt;}
.y6b_c00174{bottom:489.306667pt;}
.y69_c00174{bottom:503.026667pt;}
.y6a_c00174{bottom:503.773333pt;}
.y67_c00174{bottom:505.693333pt;}
.y68_c00174{bottom:507.040000pt;}
.y66_c00174{bottom:521.106667pt;}
.y63_c00174{bottom:523.026667pt;}
.y64_c00174{bottom:523.226667pt;}
.y65_c00174{bottom:524.373333pt;}
.y5f_c00174{bottom:539.773333pt;}
.y61_c00174{bottom:540.733333pt;}
.y62_c00174{bottom:541.693333pt;}
.y60_c00174{bottom:541.706667pt;}
.y5c_c00174{bottom:557.106667pt;}
.y5e_c00174{bottom:559.026667pt;}
.y5d_c00174{bottom:559.040000pt;}
.y5b_c00174{bottom:579.026667pt;}
.y5a_c00174{bottom:579.973333pt;}
.y59_c00174{bottom:591.026667pt;}
.y57_c00174{bottom:591.973333pt;}
.y58_c00174{bottom:592.360000pt;}
.y56_c00174{bottom:593.306667pt;}
.y54_c00174{bottom:608.733333pt;}
.y53_c00174{bottom:608.933333pt;}
.y52_c00174{bottom:609.693333pt;}
.y55_c00174{bottom:611.600000pt;}
.y51_c00174{bottom:631.400000pt;}
.y50_c00174{bottom:632.360000pt;}
.y4e_c00174{bottom:662.440000pt;}
.y4d_c00174{bottom:664.360000pt;}
.y4c_c00174{bottom:664.560000pt;}
.y4f_c00174{bottom:665.306667pt;}
.y4b_c00174{bottom:679.026667pt;}
.y45_c00174{bottom:679.773333pt;}
.y4a_c00174{bottom:679.973333pt;}
.y48_c00174{bottom:680.360000pt;}
.y46_c00174{bottom:681.106667pt;}
.y49_c00174{bottom:682.640000pt;}
.y47_c00174{bottom:683.026667pt;}
.y44_c00174{bottom:697.306667pt;}
.y42_c00174{bottom:697.693333pt;}
.y3f_c00174{bottom:698.440000pt;}
.y43_c00174{bottom:699.973333pt;}
.y40_c00174{bottom:700.360000pt;}
.y41_c00174{bottom:701.306667pt;}
.y3c_c00174{bottom:715.773333pt;}
.y3d_c00174{bottom:716.733333pt;}
.y3e_c00174{bottom:717.306667pt;}
.y3b_c00174{bottom:717.693333pt;}
.y39_c00174{bottom:733.106667pt;}
.y37_c00174{bottom:734.066667pt;}
.y38_c00174{bottom:735.026667pt;}
.y3a_c00174{bottom:735.226667pt;}
.y36_c00174{bottom:750.440000pt;}
.y35_c00174{bottom:752.360000pt;}
.y34_c00174{bottom:768.733333pt;}
.y32_c00174{bottom:769.106667pt;}
.y30_c00174{bottom:769.693333pt;}
.y31_c00174{bottom:770.640000pt;}
.y33_c00174{bottom:771.026667pt;}
.y2d_c00174{bottom:786.440000pt;}
.y2e_c00174{bottom:787.226667pt;}
.y2f_c00174{bottom:787.973333pt;}
.y2c_c00174{bottom:788.360000pt;}
.y2a_c00174{bottom:803.773333pt;}
.y2b_c00174{bottom:804.560000pt;}
.y29_c00174{bottom:805.306667pt;}
.y28_c00174{bottom:805.693333pt;}
.y23_c00174{bottom:819.026667pt;}
.y27_c00174{bottom:820.733333pt;}
.y25_c00174{bottom:821.106667pt;}
.y24_c00174{bottom:821.893333pt;}
.y26_c00174{bottom:822.640000pt;}
.y22_c00174{bottom:823.026667pt;}
.y21_c00174{bottom:838.066667pt;}
.y20_c00174{bottom:838.440000pt;}
.y1e_c00174{bottom:840.360000pt;}
.y1f_c00174{bottom:840.373333pt;}
.y1b_c00174{bottom:855.773333pt;}
.y1d_c00174{bottom:856.933333pt;}
.y1c_c00174{bottom:857.693333pt;}
.y19_c00174{bottom:874.440000pt;}
.y1a_c00174{bottom:875.226667pt;}
.y18_c00174{bottom:875.973333pt;}
.y17_c00174{bottom:876.360000pt;}
.y16_c00174{bottom:891.773333pt;}
.y15_c00174{bottom:893.693333pt;}
.y10_c00174{bottom:907.773333pt;}
.y14_c00174{bottom:907.973333pt;}
.y11_c00174{bottom:908.733333pt;}
.ye_c00174{bottom:909.693333pt;}
.yf_c00174{bottom:909.893333pt;}
.y12_c00174{bottom:910.640000pt;}
.y13_c00174{bottom:911.026667pt;}
.ya_c00174{bottom:926.440000pt;}
.yd_c00174{bottom:927.026667pt;}
.y9_c00174{bottom:927.226667pt;}
.yb_c00174{bottom:927.400000pt;}
.yc_c00174{bottom:928.360000pt;}
.y4_c00174{bottom:941.693333pt;}
.y8_c00174{bottom:942.640000pt;}
.y6_c00174{bottom:943.773333pt;}
.y5_c00174{bottom:944.733333pt;}
.y3_c00174{bottom:945.693333pt;}
.y7_c00174{bottom:945.893333pt;}
.y2_c00174{bottom:977.693333pt;}
.y1_c00174{bottom:980.560000pt;}
.h7_c00174{height:3.739141pt;}
.h8_c00174{height:14.890964pt;}
.h1_c00174{height:20.466875pt;}
.h6_c00174{height:22.303646pt;}
.h5_c00174{height:27.879557pt;}
.h2_c00174{height:31.618698pt;}
.h3_c00174{height:35.357839pt;}
.h4_c00174{height:39.031380pt;}
.h9_c00174{height:42.770521pt;}
.h0_c00174{height:1186.666667pt;}
.w0_c00174{width:782.666667pt;}
.x0_c00174{left:0.000000pt;}
.x3_c00174{left:135.040000pt;}
.xa3_c00174{left:136.000000pt;}
.x9a_c00174{left:142.666667pt;}
.xa1_c00174{left:146.666667pt;}
.x37_c00174{left:147.626667pt;}
.x44_c00174{left:148.573333pt;}
.xb5_c00174{left:152.960000pt;}
.x4_c00174{left:155.040000pt;}
.x11_c00174{left:159.040000pt;}
.xcb_c00174{left:161.333333pt;}
.x1d_c00174{left:162.666667pt;}
.xda_c00174{left:165.333333pt;}
.x7f_c00174{left:166.666667pt;}
.x89_c00174{left:168.373333pt;}
.x4d_c00174{left:169.333333pt;}
.x41_c00174{left:172.000000pt;}
.x59_c00174{left:176.000000pt;}
.xf7_c00174{left:177.333333pt;}
.x5_c00174{left:178.666667pt;}
.xbb_c00174{left:180.000000pt;}
.xc6_c00174{left:183.040000pt;}
.xa4_c00174{left:184.373333pt;}
.xdf_c00174{left:185.333333pt;}
.x91_c00174{left:187.040000pt;}
.x42_c00174{left:188.000000pt;}
.x68_c00174{left:188.960000pt;}
.x57_c00174{left:192.000000pt;}
.x2d_c00174{left:193.333333pt;}
.xcc_c00174{left:194.666667pt;}
.x97_c00174{left:196.000000pt;}
.x9b_c00174{left:200.000000pt;}
.xb6_c00174{left:202.666667pt;}
.xf1_c00174{left:204.000000pt;}
.x12_c00174{left:205.333333pt;}
.x38_c00174{left:207.626667pt;}
.x1e_c00174{left:209.333333pt;}
.x45_c00174{left:210.666667pt;}
.x105_c00174{left:212.000000pt;}
.x6_c00174{left:214.293333pt;}
.xc7_c00174{left:216.960000pt;}
.x74_c00174{left:218.666667pt;}
.xac_c00174{left:220.000000pt;}
.x5a_c00174{left:221.706667pt;}
.x1f_c00174{left:225.706667pt;}
.xeb_c00174{left:226.666667pt;}
.x43_c00174{left:228.373333pt;}
.xa7_c00174{left:229.333333pt;}
.xb0_c00174{left:230.666667pt;}
.xdb_c00174{left:233.333333pt;}
.x39_c00174{left:234.666667pt;}
.x98_c00174{left:236.000000pt;}
.xa5_c00174{left:237.333333pt;}
.x69_c00174{left:238.666667pt;}
.x99_c00174{left:240.960000pt;}
.x13_c00174{left:244.373333pt;}
.x58_c00174{left:245.333333pt;}
.xbc_c00174{left:247.040000pt;}
.xa8_c00174{left:248.000000pt;}
.x46_c00174{left:249.333333pt;}
.x2e_c00174{left:252.000000pt;}
.x20_c00174{left:256.000000pt;}
.x8a_c00174{left:257.333333pt;}
.x4e_c00174{left:258.666667pt;}
.xd4_c00174{left:259.626667pt;}
.x5b_c00174{left:260.960000pt;}
.x9c_c00174{left:263.040000pt;}
.x75_c00174{left:264.000000pt;}
.x2f_c00174{left:265.333333pt;}
.xad_c00174{left:266.666667pt;}
.x3a_c00174{left:268.000000pt;}
.x7_c00174{left:269.706667pt;}
.xe0_c00174{left:270.666667pt;}
.x6a_c00174{left:272.000000pt;}
.x76_c00174{left:275.626667pt;}
.xd5_c00174{left:277.333333pt;}
.x4f_c00174{left:280.000000pt;}
.xfb_c00174{left:282.666667pt;}
.x8b_c00174{left:284.373333pt;}
.xf2_c00174{left:285.706667pt;}
.xb7_c00174{left:286.666667pt;}
.x80_c00174{left:292.000000pt;}
.x8_c00174{left:293.333333pt;}
.xe3_c00174{left:294.666667pt;}
.x5c_c00174{left:296.000000pt;}
.xdc_c00174{left:297.333333pt;}
.x21_c00174{left:298.666667pt;}
.x14_c00174{left:300.000000pt;}
.x47_c00174{left:300.960000pt;}
.xf3_c00174{left:302.666667pt;}
.x77_c00174{left:304.373333pt;}
.xcd_c00174{left:305.706667pt;}
.x30_c00174{left:306.666667pt;}
.xae_c00174{left:308.573333pt;}
.x81_c00174{left:310.666667pt;}
.x5d_c00174{left:311.626667pt;}
.x100_c00174{left:313.333333pt;}
.xb1_c00174{left:314.293333pt;}
.xf8_c00174{left:316.373333pt;}
.xbe_c00174{left:319.240000pt;}
.x22_c00174{left:321.333333pt;}
.xe1_c00174{left:324.000000pt;}
.x6d_c00174{left:328.000000pt;}
.xf4_c00174{left:329.706667pt;}
.x5e_c00174{left:331.040000pt;}
.x6b_c00174{left:332.000000pt;}
.xa6_c00174{left:332.960000pt;}
.x50_c00174{left:335.040000pt;}
.x8c_c00174{left:337.333333pt;}
.x15_c00174{left:338.666667pt;}
.xf9_c00174{left:340.000000pt;}
.xa9_c00174{left:341.333333pt;}
.x78_c00174{left:342.666667pt;}
.x48_c00174{left:343.800000pt;}
.x9_c00174{left:345.706667pt;}
.xe2_c00174{left:349.706667pt;}
.x82_c00174{left:352.000000pt;}
.x1_c00174{left:353.333333pt;}
.xaf_c00174{left:354.666667pt;}
.x9d_c00174{left:356.000000pt;}
.x8d_c00174{left:357.333333pt;}
.x79_c00174{left:358.666667pt;}
.x3b_c00174{left:359.626667pt;}
.xfa_c00174{left:363.040000pt;}
.x92_c00174{left:364.000000pt;}
.xaa_c00174{left:365.333333pt;}
.x23_c00174{left:366.666667pt;}
.x5f_c00174{left:371.040000pt;}
.x83_c00174{left:372.000000pt;}
.x31_c00174{left:372.960000pt;}
.xbf_c00174{left:374.293333pt;}
.x3c_c00174{left:376.373333pt;}
.xe4_c00174{left:377.333333pt;}
.x93_c00174{left:379.626667pt;}
.xbd_c00174{left:385.333333pt;}
.x51_c00174{left:387.626667pt;}
.x101_c00174{left:389.706667pt;}
.xce_c00174{left:390.666667pt;}
.x84_c00174{left:392.373333pt;}
.x6e_c00174{left:393.706667pt;}
.xdd_c00174{left:395.240000pt;}
.xa_c00174{left:397.333333pt;}
.x16_c00174{left:398.666667pt;}
.x6c_c00174{left:400.000000pt;}
.x3d_c00174{left:401.333333pt;}
.x24_c00174{left:402.666667pt;}
.xb_c00174{left:408.373333pt;}
.xf5_c00174{left:409.333333pt;}
.x32_c00174{left:412.000000pt;}
.x7a_c00174{left:413.333333pt;}
.x17_c00174{left:414.666667pt;}
.xa2_c00174{left:415.626667pt;}
.xc0_c00174{left:417.133333pt;}
.xec_c00174{left:419.040000pt;}
.x102_c00174{left:420.000000pt;}
.xab_c00174{left:421.133333pt;}
.x60_c00174{left:422.666667pt;}
.x49_c00174{left:425.333333pt;}
.xd6_c00174{left:427.040000pt;}
.x9e_c00174{left:430.293333pt;}
.x7b_c00174{left:432.000000pt;}
.x52_c00174{left:433.333333pt;}
.x3e_c00174{left:435.626667pt;}
.x61_c00174{left:437.333333pt;}
.xe5_c00174{left:438.666667pt;}
.x33_c00174{left:440.373333pt;}
.xfc_c00174{left:444.373333pt;}
.xc1_c00174{left:445.333333pt;}
.xe6_c00174{left:446.666667pt;}
.xcf_c00174{left:449.706667pt;}
.xc_c00174{left:450.666667pt;}
.xb2_c00174{left:452.373333pt;}
.xed_c00174{left:453.333333pt;}
.x4a_c00174{left:455.040000pt;}
.x103_c00174{left:456.000000pt;}
.x53_c00174{left:457.333333pt;}
.x6f_c00174{left:458.666667pt;}
.x25_c00174{left:461.333333pt;}
.x18_c00174{left:464.373333pt;}
.x94_c00174{left:467.040000pt;}
.x62_c00174{left:470.666667pt;}
.x85_c00174{left:472.000000pt;}
.xd7_c00174{left:472.960000pt;}
.x26_c00174{left:475.626667pt;}
.x8e_c00174{left:479.040000pt;}
.x4b_c00174{left:480.000000pt;}
.x70_c00174{left:481.333333pt;}
.xf6_c00174{left:482.666667pt;}
.xc8_c00174{left:483.626667pt;}
.xb3_c00174{left:484.960000pt;}
.x63_c00174{left:487.040000pt;}
.xb8_c00174{left:488.000000pt;}
.x54_c00174{left:489.706667pt;}
.xc2_c00174{left:495.040000pt;}
.x19_c00174{left:497.706667pt;}
.x3f_c00174{left:499.626667pt;}
.xee_c00174{left:501.333333pt;}
.xd_c00174{left:502.293333pt;}
.x9f_c00174{left:504.373333pt;}
.x34_c00174{left:507.626667pt;}
.xd0_c00174{left:510.293333pt;}
.x64_c00174{left:512.000000pt;}
.x55_c00174{left:513.706667pt;}
.x27_c00174{left:514.666667pt;}
.x7c_c00174{left:515.626667pt;}
.xe7_c00174{left:518.666667pt;}
.x1a_c00174{left:522.666667pt;}
.x35_c00174{left:524.373333pt;}
.xb4_c00174{left:526.293333pt;}
.xfd_c00174{left:529.706667pt;}
.xef_c00174{left:530.666667pt;}
.x28_c00174{left:532.373333pt;}
.xe_c00174{left:533.706667pt;}
.x86_c00174{left:536.000000pt;}
.x71_c00174{left:536.960000pt;}
.xd1_c00174{left:538.666667pt;}
.xc3_c00174{left:539.626667pt;}
.x8f_c00174{left:545.333333pt;}
.x36_c00174{left:546.666667pt;}
.x95_c00174{left:548.373333pt;}
.x56_c00174{left:549.706667pt;}
.x106_c00174{left:551.626667pt;}
.x87_c00174{left:552.960000pt;}
.xfe_c00174{left:554.666667pt;}
.xb9_c00174{left:556.000000pt;}
.xd2_c00174{left:559.626667pt;}
.x29_c00174{left:562.666667pt;}
.x90_c00174{left:565.333333pt;}
.xf_c00174{left:566.666667pt;}
.xe8_c00174{left:569.333333pt;}
.x96_c00174{left:570.666667pt;}
.x65_c00174{left:571.626667pt;}
.x1b_c00174{left:573.333333pt;}
.x7d_c00174{left:577.333333pt;}
.x2a_c00174{left:579.040000pt;}
.xc4_c00174{left:580.373333pt;}
.xd8_c00174{left:581.333333pt;}
.xde_c00174{left:582.666667pt;}
.x72_c00174{left:586.466667pt;}
.xa0_c00174{left:589.706667pt;}
.x7e_c00174{left:590.666667pt;}
.xff_c00174{left:592.000000pt;}
.xe9_c00174{left:593.706667pt;}
.x66_c00174{left:594.666667pt;}
.xf0_c00174{left:597.333333pt;}
.x107_c00174{left:599.040000pt;}
.x2b_c00174{left:602.666667pt;}
.xc5_c00174{left:604.000000pt;}
.x4c_c00174{left:606.666667pt;}
.xc9_c00174{left:608.000000pt;}
.x88_c00174{left:610.293333pt;}
.x1c_c00174{left:611.626667pt;}
.x10_c00174{left:614.666667pt;}
.xea_c00174{left:616.000000pt;}
.x73_c00174{left:619.040000pt;}
.xba_c00174{left:620.373333pt;}
.x104_c00174{left:622.293333pt;}
.xca_c00174{left:625.333333pt;}
.x2_c00174{left:627.040000pt;}
.x40_c00174{left:628.000000pt;}
.xd3_c00174{left:629.706667pt;}
.x67_c00174{left:635.626667pt;}
.xd9_c00174{left:641.333333pt;}
.x2c_c00174{left:643.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_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_36b00cb76346dfff6e8930b4.woff2')format("woff");}.ff1_c00175{font-family:ff1_c00175;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mef_c00175{transform:matrix(0.043328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043328,0.000000,0.000000,0.250000,0,0);}
.md2_c00175{transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);}
.m38_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);}
.m33_c00175{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m0_c00175{transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);}
.mb2_c00175{transform:matrix(0.348739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348739,0.000000,0.000000,0.250000,0,0);}
.mf4_c00175{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.mab_c00175{transform:matrix(0.363866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363866,0.000000,0.000000,0.250000,0,0);}
.maa_c00175{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.mae_c00175{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.ma3_c00175{transform:matrix(0.369632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369632,0.000000,0.000000,0.250000,0,0);}
.m99_c00175{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mf7_c00175{transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);}
.md6_c00175{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.mb5_c00175{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.md5_c00175{transform:matrix(0.382780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382780,0.000000,0.000000,0.250000,0,0);}
.m96_c00175{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.ma2_c00175{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m89_c00175{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m8_c00175{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m98_c00175{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.ma9_c00175{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m40_c00175{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m94_c00175{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mb9_c00175{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m8f_c00175{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.mf1_c00175{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m42_c00175{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m61_c00175{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m10_c00175{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mbf_c00175{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m41_c00175{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m4b_c00175{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m77_c00175{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m80_c00175{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mf2_c00175{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m91_c00175{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m69_c00175{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.mc9_c00175{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mba_c00175{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.me3_c00175{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.m20_c00175{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.mad_c00175{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m2c_c00175{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.md0_c00175{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.m1d_c00175{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m27_c00175{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.md9_c00175{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.mca_c00175{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.ma0_c00175{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m9c_c00175{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m75_c00175{transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);}
.m72_c00175{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m3e_c00175{transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);}
.m5b_c00175{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m6b_c00175{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.me6_c00175{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.m78_c00175{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m97_c00175{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mee_c00175{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m62_c00175{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m23_c00175{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mb1_c00175{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m24_c00175{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.me4_c00175{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.m43_c00175{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m76_c00175{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m49_c00175{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m45_c00175{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m82_c00175{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m1b_c00175{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m66_c00175{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mbc_c00175{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m84_c00175{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mdd_c00175{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.mc5_c00175{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m5d_c00175{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mb3_c00175{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.m7b_c00175{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m7a_c00175{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mea_c00175{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m34_c00175{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.ma7_c00175{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.maf_c00175{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mc_c00175{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.mb8_c00175{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.mf3_c00175{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m8a_c00175{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.mc1_c00175{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m2e_c00175{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.me5_c00175{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m3b_c00175{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m92_c00175{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.mf8_c00175{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.ma6_c00175{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m5f_c00175{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.m7_c00175{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m53_c00175{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m9_c00175{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.mc2_c00175{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m18_c00175{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.mdc_c00175{transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);}
.m83_c00175{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m4d_c00175{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mcd_c00175{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m7c_c00175{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.ma5_c00175{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.ma8_c00175{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m7d_c00175{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m1c_c00175{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m95_c00175{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.mf0_c00175{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m1e_c00175{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m2a_c00175{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.mbe_c00175{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m1f_c00175{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mc3_c00175{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m70_c00175{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m9a_c00175{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.mc6_c00175{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m6_c00175{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mb4_c00175{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m2_c00175{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.md7_c00175{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mcb_c00175{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m2b_c00175{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m81_c00175{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m52_c00175{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m58_c00175{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m63_c00175{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m15_c00175{transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);}
.m37_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);}
.mce_c00175{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m19_c00175{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m71_c00175{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m2f_c00175{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.mac_c00175{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.m3d_c00175{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m4a_c00175{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.med_c00175{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.mdb_c00175{transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);}
.m67_c00175{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.mdf_c00175{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.m13_c00175{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m11_c00175{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m7e_c00175{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m8c_c00175{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m85_c00175{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.me7_c00175{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_c00175{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m14_c00175{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m21_c00175{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m6c_c00175{transform:matrix(0.527365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527365,0.000000,0.000000,0.250000,0,0);}
.m88_c00175{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m48_c00175{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m51_c00175{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.mf_c00175{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m50_c00175{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.ma_c00175{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m5_c00175{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m3c_c00175{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m39_c00175{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m17_c00175{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m12_c00175{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mc4_c00175{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mec_c00175{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m4f_c00175{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);}
.m22_c00175{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m2d_c00175{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.mf5_c00175{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m6e_c00175{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mda_c00175{transform:matrix(0.544706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544706,0.000000,0.000000,0.250000,0,0);}
.m79_c00175{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m29_c00175{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mc0_c00175{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.md1_c00175{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m64_c00175{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m60_c00175{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mbd_c00175{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.md_c00175{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m4_c00175{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m86_c00175{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mfa_c00175{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m59_c00175{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.ma4_c00175{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);}
.m4c_c00175{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.md3_c00175{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mb_c00175{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m31_c00175{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m30_c00175{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m36_c00175{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m25_c00175{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m1a_c00175{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.md8_c00175{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.mb0_c00175{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.me8_c00175{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.mbb_c00175{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m54_c00175{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.me0_c00175{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m9f_c00175{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m7f_c00175{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m73_c00175{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m46_c00175{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.me_c00175{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m87_c00175{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m35_c00175{transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);}
.m26_c00175{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.meb_c00175{transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);}
.mc7_c00175{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m93_c00175{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m90_c00175{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m3f_c00175{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m57_c00175{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m6a_c00175{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.mf9_c00175{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.ma1_c00175{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m56_c00175{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.m3a_c00175{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m3_c00175{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m9b_c00175{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m1_c00175{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.m55_c00175{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m74_c00175{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m65_c00175{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.md4_c00175{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_c00175{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m16_c00175{transform:matrix(0.629006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629006,0.000000,0.000000,0.250000,0,0);}
.m28_c00175{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m9d_c00175{transform:matrix(0.635900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635900,0.000000,0.000000,0.250000,0,0);}
.m5a_c00175{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m5e_c00175{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m68_c00175{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m5c_c00175{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m47_c00175{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m8d_c00175{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.me2_c00175{transform:matrix(0.681891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681891,0.000000,0.000000,0.250000,0,0);}
.m6f_c00175{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mc8_c00175{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m32_c00175{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mde_c00175{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);}
.m8e_c00175{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.mcc_c00175{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m4e_c00175{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mf6_c00175{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m8b_c00175{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mb6_c00175{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.mcf_c00175{transform:matrix(0.806891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806891,0.000000,0.000000,0.250000,0,0);}
.m44_c00175{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.me1_c00175{transform:matrix(1.077093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.077093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.077093,0.000000,0.000000,0.250000,0,0);}
.me9_c00175{transform:matrix(1.560573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560573,0.000000,0.000000,0.250000,0,0);}
.mb7_c00175{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v3_c00175{vertical-align:-12.000000px;}
.v0_c00175{vertical-align:0.000000px;}
.v2_c00175{vertical-align:6.000000px;}
.v1_c00175{vertical-align:12.000000px;}
.ls0_c00175{letter-spacing:0.000000px;}
.sc__c00175{text-shadow:none;}
.sc0_c00175{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00175{-webkit-text-stroke:0px transparent;}
.sc0_c00175{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00175{word-spacing:-5.939993px;}
.ws2_c00175{word-spacing:-4.648310px;}
.ws1_c00175{word-spacing:-3.207360px;}
.ws5_c00175{word-spacing:-3.045198px;}
.ws8_c00175{word-spacing:-1.567547px;}
.ws6_c00175{word-spacing:-1.219898px;}
.ws9_c00175{word-spacing:0.000000px;}
.ws7_c00175{word-spacing:0.134162px;}
.ws4_c00175{word-spacing:5.111948px;}
.ws3_c00175{word-spacing:5.352829px;}
.fc0_c00175{color:transparent;}
.fs7_c00175{font-size:3.420000px;}
.fs8_c00175{font-size:11.880000px;}
.fs9_c00175{font-size:13.620000px;}
.fs5_c00175{font-size:18.720000px;}
.fs1_c00175{font-size:20.400000px;}
.fs3_c00175{font-size:25.500000px;}
.fs2_c00175{font-size:28.920000px;}
.fs4_c00175{font-size:32.340000px;}
.fs0_c00175{font-size:35.700000px;}
.fs6_c00175{font-size:39.120000px;}
.y0_c00175{bottom:0.000000px;}
.yde_c00175{bottom:229.680000px;}
.ydf_c00175{bottom:230.745000px;}
.ydb_c00175{bottom:232.905000px;}
.ydc_c00175{bottom:233.130000px;}
.ydd_c00175{bottom:234.420000px;}
.yd7_c00175{bottom:250.245000px;}
.yd8_c00175{bottom:250.680000px;}
.yda_c00175{bottom:251.745000px;}
.yd9_c00175{bottom:252.825000px;}
.yd6_c00175{bottom:273.405000px;}
.yd1_c00175{bottom:290.745000px;}
.yd5_c00175{bottom:291.825000px;}
.yd3_c00175{bottom:292.905000px;}
.yd2_c00175{bottom:292.920000px;}
.yd4_c00175{bottom:293.970000px;}
.ycc_c00175{bottom:313.905000px;}
.ycb_c00175{bottom:314.325000px;}
.ycf_c00175{bottom:314.550000px;}
.ycd_c00175{bottom:315.405000px;}
.yd0_c00175{bottom:316.695000px;}
.yce_c00175{bottom:317.550000px;}
.yca_c00175{bottom:329.325000px;}
.yc4_c00175{bottom:329.970000px;}
.yc6_c00175{bottom:330.405000px;}
.yc9_c00175{bottom:330.630000px;}
.yc5_c00175{bottom:331.470000px;}
.yc8_c00175{bottom:331.695000px;}
.yc7_c00175{bottom:332.550000px;}
.yc2_c00175{bottom:348.825000px;}
.yc3_c00175{bottom:349.050000px;}
.yc1_c00175{bottom:349.905000px;}
.yc0_c00175{bottom:373.245000px;}
.ybf_c00175{bottom:375.405000px;}
.ybe_c00175{bottom:410.130000px;}
.ybd_c00175{bottom:411.405000px;}
.yb7_c00175{bottom:426.630000px;}
.ybc_c00175{bottom:427.275000px;}
.ybb_c00175{bottom:427.470000px;}
.yb9_c00175{bottom:427.905000px;}
.yb8_c00175{bottom:428.745000px;}
.yb6_c00175{bottom:429.630000px;}
.yb5_c00175{bottom:429.825000px;}
.yba_c00175{bottom:430.905000px;}
.yb3_c00175{bottom:446.775000px;}
.yb0_c00175{bottom:447.405000px;}
.yaf_c00175{bottom:448.245000px;}
.yae_c00175{bottom:449.325000px;}
.yb4_c00175{bottom:450.405000px;}
.yb1_c00175{bottom:450.630000px;}
.yb2_c00175{bottom:453.630000px;}
.ya9_c00175{bottom:467.745000px;}
.yad_c00175{bottom:468.405000px;}
.ya8_c00175{bottom:468.825000px;}
.yaa_c00175{bottom:469.905000px;}
.yab_c00175{bottom:470.130000px;}
.yac_c00175{bottom:470.325000px;}
.ya5_c00175{bottom:486.405000px;}
.ya2_c00175{bottom:487.245000px;}
.ya1_c00175{bottom:487.470000px;}
.ya7_c00175{bottom:487.905000px;}
.ya4_c00175{bottom:488.325000px;}
.ya6_c00175{bottom:489.405000px;}
.ya3_c00175{bottom:490.470000px;}
.ya0_c00175{bottom:505.905000px;}
.y9b_c00175{bottom:506.745000px;}
.y9c_c00175{bottom:507.825000px;}
.y9e_c00175{bottom:508.245000px;}
.y9f_c00175{bottom:508.905000px;}
.y9d_c00175{bottom:509.325000px;}
.y94_c00175{bottom:525.405000px;}
.y99_c00175{bottom:526.905000px;}
.y95_c00175{bottom:527.745000px;}
.y9a_c00175{bottom:527.970000px;}
.y98_c00175{bottom:528.825000px;}
.y96_c00175{bottom:529.470000px;}
.y97_c00175{bottom:529.905000px;}
.y8e_c00175{bottom:546.405000px;}
.y93_c00175{bottom:546.825000px;}
.y8f_c00175{bottom:547.245000px;}
.y90_c00175{bottom:548.130000px;}
.y92_c00175{bottom:549.405000px;}
.y91_c00175{bottom:549.420000px;}
.y85_c00175{bottom:564.405000px;}
.y86_c00175{bottom:564.825000px;}
.y89_c00175{bottom:565.470000px;}
.y8d_c00175{bottom:565.905000px;}
.y88_c00175{bottom:566.325000px;}
.y87_c00175{bottom:566.745000px;}
.y8b_c00175{bottom:566.970000px;}
.y8a_c00175{bottom:567.825000px;}
.y8c_c00175{bottom:568.905000px;}
.y80_c00175{bottom:585.405000px;}
.y81_c00175{bottom:586.245000px;}
.y83_c00175{bottom:586.470000px;}
.y84_c00175{bottom:587.325000px;}
.y82_c00175{bottom:588.405000px;}
.y7e_c00175{bottom:604.905000px;}
.y7b_c00175{bottom:605.745000px;}
.y7f_c00175{bottom:606.180000px;}
.y7d_c00175{bottom:607.245000px;}
.y7c_c00175{bottom:607.905000px;}
.y77_c00175{bottom:625.245000px;}
.y79_c00175{bottom:625.905000px;}
.y7a_c00175{bottom:626.745000px;}
.y78_c00175{bottom:627.405000px;}
.y70_c00175{bottom:644.745000px;}
.y76_c00175{bottom:644.970000px;}
.y74_c00175{bottom:645.405000px;}
.y71_c00175{bottom:645.825000px;}
.y72_c00175{bottom:646.245000px;}
.y75_c00175{bottom:647.325000px;}
.y73_c00175{bottom:648.405000px;}
.y6c_c00175{bottom:663.405000px;}
.y6a_c00175{bottom:664.245000px;}
.y6f_c00175{bottom:664.905000px;}
.y6d_c00175{bottom:665.745000px;}
.y6b_c00175{bottom:666.825000px;}
.y6e_c00175{bottom:667.905000px;}
.y67_c00175{bottom:683.745000px;}
.y63_c00175{bottom:683.970000px;}
.y62_c00175{bottom:685.050000px;}
.y65_c00175{bottom:685.245000px;}
.y61_c00175{bottom:685.905000px;}
.y68_c00175{bottom:686.130000px;}
.y69_c00175{bottom:686.325000px;}
.y64_c00175{bottom:686.970000px;}
.y66_c00175{bottom:687.405000px;}
.y60_c00175{bottom:703.470000px;}
.y5e_c00175{bottom:704.745000px;}
.y5f_c00175{bottom:705.630000px;}
.y5d_c00175{bottom:706.470000px;}
.y5c_c00175{bottom:706.905000px;}
.y5b_c00175{bottom:724.245000px;}
.y5a_c00175{bottom:726.405000px;}
.y57_c00175{bottom:742.905000px;}
.y54_c00175{bottom:743.745000px;}
.y55_c00175{bottom:744.630000px;}
.y58_c00175{bottom:745.245000px;}
.y56_c00175{bottom:745.905000px;}
.y59_c00175{bottom:747.405000px;}
.y52_c00175{bottom:763.245000px;}
.y50_c00175{bottom:764.325000px;}
.y51_c00175{bottom:765.405000px;}
.y4f_c00175{bottom:766.470000px;}
.y53_c00175{bottom:766.905000px;}
.y4b_c00175{bottom:782.745000px;}
.y4d_c00175{bottom:783.825000px;}
.y4c_c00175{bottom:784.905000px;}
.y4e_c00175{bottom:785.970000px;}
.y4a_c00175{bottom:803.745000px;}
.y46_c00175{bottom:804.405000px;}
.y47_c00175{bottom:804.630000px;}
.y48_c00175{bottom:804.825000px;}
.y45_c00175{bottom:805.470000px;}
.y49_c00175{bottom:805.905000px;}
.y44_c00175{bottom:822.405000px;}
.y41_c00175{bottom:823.245000px;}
.y43_c00175{bottom:824.130000px;}
.y42_c00175{bottom:825.405000px;}
.y3d_c00175{bottom:842.745000px;}
.y40_c00175{bottom:843.825000px;}
.y3e_c00175{bottom:844.905000px;}
.y3f_c00175{bottom:845.970000px;}
.y3c_c00175{bottom:860.970000px;}
.y3b_c00175{bottom:862.245000px;}
.y37_c00175{bottom:863.130000px;}
.y3a_c00175{bottom:863.325000px;}
.y39_c00175{bottom:863.970000px;}
.y38_c00175{bottom:864.405000px;}
.y35_c00175{bottom:881.745000px;}
.y32_c00175{bottom:883.470000px;}
.y33_c00175{bottom:883.905000px;}
.y36_c00175{bottom:884.130000px;}
.y34_c00175{bottom:884.970000px;}
.y2f_c00175{bottom:900.405000px;}
.y2e_c00175{bottom:903.405000px;}
.y31_c00175{bottom:903.825000px;}
.y30_c00175{bottom:904.905000px;}
.y28_c00175{bottom:920.745000px;}
.y2d_c00175{bottom:920.970000px;}
.y29_c00175{bottom:922.245000px;}
.y27_c00175{bottom:922.905000px;}
.y2c_c00175{bottom:923.130000px;}
.y2a_c00175{bottom:923.970000px;}
.y2b_c00175{bottom:924.405000px;}
.y21_c00175{bottom:941.325000px;}
.y22_c00175{bottom:941.745000px;}
.y20_c00175{bottom:942.405000px;}
.y23_c00175{bottom:942.630000px;}
.y25_c00175{bottom:943.470000px;}
.y26_c00175{bottom:943.905000px;}
.y24_c00175{bottom:944.970000px;}
.y1e_c00175{bottom:960.825000px;}
.y1d_c00175{bottom:961.245000px;}
.y1f_c00175{bottom:962.970000px;}
.y1c_c00175{bottom:963.405000px;}
.y18_c00175{bottom:978.405000px;}
.y19_c00175{bottom:980.325000px;}
.y1b_c00175{bottom:980.745000px;}
.y1a_c00175{bottom:982.905000px;}
.y15_c00175{bottom:998.745000px;}
.y13_c00175{bottom:999.825000px;}
.y16_c00175{bottom:1000.245000px;}
.y11_c00175{bottom:1000.905000px;}
.y12_c00175{bottom:1002.405000px;}
.y14_c00175{bottom:1003.470000px;}
.y17_c00175{bottom:1003.905000px;}
.y10_c00175{bottom:1019.745000px;}
.yd_c00175{bottom:1020.405000px;}
.ye_c00175{bottom:1020.825000px;}
.yf_c00175{bottom:1021.905000px;}
.y9_c00175{bottom:1039.245000px;}
.yb_c00175{bottom:1040.325000px;}
.y8_c00175{bottom:1041.405000px;}
.yc_c00175{bottom:1041.630000px;}
.ya_c00175{bottom:1042.905000px;}
.y5_c00175{bottom:1058.745000px;}
.y6_c00175{bottom:1060.245000px;}
.y3_c00175{bottom:1060.905000px;}
.y4_c00175{bottom:1061.970000px;}
.y7_c00175{bottom:1062.405000px;}
.y1_c00175{bottom:1097.745000px;}
.y2_c00175{bottom:1099.050000px;}
.ha_c00175{height:4.206533px;}
.hb_c00175{height:14.612168px;}
.hc_c00175{height:16.752334px;}
.h6_c00175{height:23.025234px;}
.h2_c00175{height:25.091602px;}
.h4_c00175{height:31.364502px;}
.h3_c00175{height:35.571035px;}
.h5_c00175{height:39.777568px;}
.h8_c00175{height:41.571035px;}
.h1_c00175{height:43.910303px;}
.h7_c00175{height:47.571035px;}
.h9_c00175{height:48.116836px;}
.h0_c00175{height:1335.000000px;}
.w0_c00175{width:880.500000px;}
.x0_c00175{left:0.000000px;}
.x3_c00175{left:149.580000px;}
.x1_c00175{left:151.275000px;}
.x93_c00175{left:153.000000px;}
.xca_c00175{left:154.920000px;}
.xff_c00175{left:165.000000px;}
.x39_c00175{left:166.080000px;}
.xac_c00175{left:167.580000px;}
.x6d_c00175{left:169.920000px;}
.x99_c00175{left:171.000000px;}
.x25_c00175{left:177.000000px;}
.x4f_c00175{left:178.080000px;}
.x4_c00175{left:183.000000px;}
.xed_c00175{left:184.500000px;}
.xfd_c00175{left:186.000000px;}
.x46_c00175{left:189.000000px;}
.xa3_c00175{left:190.920000px;}
.xe8_c00175{left:193.920000px;}
.x17_c00175{left:195.000000px;}
.x30_c00175{left:196.500000px;}
.x9a_c00175{left:199.500000px;}
.x8a_c00175{left:202.500000px;}
.xc5_c00175{left:203.580000px;}
.x63_c00175{left:207.000000px;}
.x107_c00175{left:210.420000px;}
.x5_c00175{left:211.500000px;}
.xda_c00175{left:212.580000px;}
.xb2_c00175{left:214.080000px;}
.x26_c00175{left:216.000000px;}
.xee_c00175{left:217.500000px;}
.x77_c00175{left:220.500000px;}
.x3a_c00175{left:222.420000px;}
.x81_c00175{left:225.420000px;}
.x50_c00175{left:227.580000px;}
.xcb_c00175{left:229.080000px;}
.xdf_c00175{left:232.500000px;}
.xad_c00175{left:233.580000px;}
.x6e_c00175{left:235.080000px;}
.x31_c00175{left:236.580000px;}
.x100_c00175{left:240.420000px;}
.x64_c00175{left:242.580000px;}
.xbc_c00175{left:244.275000px;}
.xe4_c00175{left:245.775000px;}
.xdb_c00175{left:247.500000px;}
.xa4_c00175{left:249.000000px;}
.x18_c00175{left:252.420000px;}
.xb3_c00175{left:253.500000px;}
.xf5_c00175{left:255.000000px;}
.x5d_c00175{left:256.080000px;}
.x10b_c00175{left:258.000000px;}
.x10c_c00175{left:259.500000px;}
.x8b_c00175{left:260.580000px;}
.xae_c00175{left:262.500000px;}
.x78_c00175{left:265.500000px;}
.xd_c00175{left:267.420000px;}
.x27_c00175{left:268.500000px;}
.xf6_c00175{left:269.580000px;}
.xa9_c00175{left:271.080000px;}
.x47_c00175{left:273.000000px;}
.x6f_c00175{left:274.500000px;}
.x51_c00175{left:276.000000px;}
.x65_c00175{left:278.580000px;}
.x8c_c00175{left:280.080000px;}
.xdc_c00175{left:282.000000px;}
.x82_c00175{left:283.500000px;}
.xd0_c00175{left:285.000000px;}
.x103_c00175{left:286.920000px;}
.x3b_c00175{left:288.000000px;}
.xaa_c00175{left:289.920000px;}
.xa5_c00175{left:291.420000px;}
.xb9_c00175{left:292.500000px;}
.x28_c00175{left:294.000000px;}
.x19_c00175{left:298.500000px;}
.xaf_c00175{left:300.000000px;}
.x6_c00175{left:303.000000px;}
.xeb_c00175{left:306.000000px;}
.xe_c00175{left:309.000000px;}
.x48_c00175{left:310.500000px;}
.x32_c00175{left:313.920000px;}
.xd1_c00175{left:315.000000px;}
.xab_c00175{left:316.920000px;}
.xcc_c00175{left:318.000000px;}
.x5e_c00175{left:319.920000px;}
.x79_c00175{left:321.000000px;}
.x104_c00175{left:322.920000px;}
.x83_c00175{left:324.420000px;}
.x3c_c00175{left:328.500000px;}
.xa6_c00175{left:330.420000px;}
.x52_c00175{left:331.500000px;}
.x70_c00175{left:334.500000px;}
.x9b_c00175{left:337.500000px;}
.xb4_c00175{left:339.420000px;}
.x33_c00175{left:340.920000px;}
.x29_c00175{left:345.000000px;}
.x5f_c00175{left:348.000000px;}
.x49_c00175{left:351.000000px;}
.x1a_c00175{left:352.080000px;}
.xe0_c00175{left:353.580000px;}
.x8d_c00175{left:357.420000px;}
.x3d_c00175{left:358.500000px;}
.xf_c00175{left:359.580000px;}
.x108_c00175{left:360.645000px;}
.x66_c00175{left:364.920000px;}
.xbd_c00175{left:367.500000px;}
.xb5_c00175{left:369.000000px;}
.x1b_c00175{left:370.500000px;}
.xba_c00175{left:373.080000px;}
.x3e_c00175{left:375.000000px;}
.xd2_c00175{left:376.080000px;}
.x71_c00175{left:378.000000px;}
.x7_c00175{left:381.000000px;}
.x84_c00175{left:384.000000px;}
.x2a_c00175{left:385.920000px;}
.x34_c00175{left:388.080000px;}
.x10_c00175{left:391.920000px;}
.x3f_c00175{left:393.000000px;}
.x105_c00175{left:394.920000px;}
.xfe_c00175{left:396.420000px;}
.x2_c00175{left:397.500000px;}
.x8e_c00175{left:399.000000px;}
.x94_c00175{left:400.500000px;}
.x53_c00175{left:401.580000px;}
.x10e_c00175{left:402.645000px;}
.x9c_c00175{left:405.000000px;}
.x40_c00175{left:408.000000px;}
.x1c_c00175{left:411.420000px;}
.x4a_c00175{left:414.000000px;}
.x101_c00175{left:415.500000px;}
.x11_c00175{left:418.500000px;}
.x54_c00175{left:421.920000px;}
.xe5_c00175{left:423.855000px;}
.xd3_c00175{left:425.355000px;}
.xe1_c00175{left:428.580000px;}
.xbe_c00175{left:431.580000px;}
.x85_c00175{left:433.500000px;}
.x8f_c00175{left:435.420000px;}
.x4b_c00175{left:436.500000px;}
.x109_c00175{left:439.500000px;}
.x41_c00175{left:441.000000px;}
.x67_c00175{left:443.580000px;}
.x7a_c00175{left:446.580000px;}
.x1d_c00175{left:448.920000px;}
.x9d_c00175{left:450.000000px;}
.xef_c00175{left:453.000000px;}
.x106_c00175{left:454.080000px;}
.xec_c00175{left:455.355000px;}
.x35_c00175{left:456.420000px;}
.x2b_c00175{left:459.420000px;}
.x12_c00175{left:462.000000px;}
.x90_c00175{left:463.080000px;}
.xf7_c00175{left:465.420000px;}
.x8_c00175{left:466.920000px;}
.xbf_c00175{left:468.000000px;}
.xcd_c00175{left:470.580000px;}
.xb6_c00175{left:472.080000px;}
.x10d_c00175{left:475.275000px;}
.x72_c00175{left:477.420000px;}
.x42_c00175{left:481.500000px;}
.xf8_c00175{left:483.000000px;}
.xd4_c00175{left:484.080000px;}
.x36_c00175{left:485.580000px;}
.x86_c00175{left:487.500000px;}
.xf9_c00175{left:488.580000px;}
.xb7_c00175{left:490.920000px;}
.x7b_c00175{left:492.000000px;}
.xc0_c00175{left:494.580000px;}
.xdd_c00175{left:496.080000px;}
.xfa_c00175{left:498.000000px;}
.x55_c00175{left:499.500000px;}
.xce_c00175{left:501.420000px;}
.x1e_c00175{left:502.500000px;}
.x37_c00175{left:504.420000px;}
.x91_c00175{left:507.000000px;}
.xe2_c00175{left:508.080000px;}
.x60_c00175{left:510.000000px;}
.x2c_c00175{left:513.000000px;}
.xb0_c00175{left:514.080000px;}
.xb8_c00175{left:517.920000px;}
.x13_c00175{left:519.420000px;}
.xd5_c00175{left:520.500000px;}
.x56_c00175{left:522.000000px;}
.x9_c00175{left:523.920000px;}
.x7c_c00175{left:526.500000px;}
.xe9_c00175{left:528.420000px;}
.xc1_c00175{left:529.920000px;}
.xc8_c00175{left:531.000000px;}
.x38_c00175{left:532.500000px;}
.xde_c00175{left:533.580000px;}
.x57_c00175{left:535.500000px;}
.x9e_c00175{left:538.500000px;}
.x43_c00175{left:541.500000px;}
.xe6_c00175{left:547.080000px;}
.x95_c00175{left:549.420000px;}
.x4c_c00175{left:550.500000px;}
.x68_c00175{left:553.080000px;}
.x7d_c00175{left:555.420000px;}
.x1f_c00175{left:556.920000px;}
.x9f_c00175{left:558.420000px;}
.xfb_c00175{left:559.920000px;}
.x14_c00175{left:565.500000px;}
.xea_c00175{left:567.420000px;}
.xc2_c00175{left:568.500000px;}
.x73_c00175{left:569.580000px;}
.x61_c00175{left:571.500000px;}
.xa_c00175{left:573.420000px;}
.x58_c00175{left:576.000000px;}
.xf0_c00175{left:578.580000px;}
.x87_c00175{left:580.920000px;}
.x20_c00175{left:583.080000px;}
.xa0_c00175{left:585.000000px;}
.x74_c00175{left:586.920000px;}
.xf1_c00175{left:588.000000px;}
.xc6_c00175{left:589.920000px;}
.xd6_c00175{left:591.420000px;}
.xf2_c00175{left:592.920000px;}
.x96_c00175{left:596.580000px;}
.x69_c00175{left:598.920000px;}
.xb_c00175{left:600.000000px;}
.xe3_c00175{left:604.080000px;}
.x7e_c00175{left:605.580000px;}
.xe7_c00175{left:607.080000px;}
.xbb_c00175{left:609.000000px;}
.x44_c00175{left:610.500000px;}
.x75_c00175{left:612.000000px;}
.x15_c00175{left:613.500000px;}
.x97_c00175{left:615.420000px;}
.xf3_c00175{left:617.580000px;}
.xa7_c00175{left:619.500000px;}
.x4d_c00175{left:620.580000px;}
.x2d_c00175{left:622.920000px;}
.x59_c00175{left:624.000000px;}
.x21_c00175{left:625.080000px;}
.x10a_c00175{left:626.580000px;}
.x45_c00175{left:628.920000px;}
.xc3_c00175{left:630.000000px;}
.xa1_c00175{left:634.080000px;}
.x5a_c00175{left:636.000000px;}
.x6a_c00175{left:637.920000px;}
.x98_c00175{left:642.000000px;}
.xc_c00175{left:643.500000px;}
.xc7_c00175{left:646.080000px;}
.xc4_c00175{left:649.080000px;}
.xd7_c00175{left:650.580000px;}
.x7f_c00175{left:654.000000px;}
.x4e_c00175{left:655.500000px;}
.x22_c00175{left:657.420000px;}
.x62_c00175{left:658.500000px;}
.x92_c00175{left:661.920000px;}
.xa2_c00175{left:664.500000px;}
.x88_c00175{left:667.920000px;}
.x102_c00175{left:669.420000px;}
.xc9_c00175{left:670.500000px;}
.x2e_c00175{left:672.000000px;}
.xcf_c00175{left:673.500000px;}
.x5b_c00175{left:676.500000px;}
.xd8_c00175{left:679.080000px;}
.x6b_c00175{left:681.000000px;}
.x23_c00175{left:684.420000px;}
.xd9_c00175{left:687.000000px;}
.x16_c00175{left:688.920000px;}
.x76_c00175{left:690.000000px;}
.xb1_c00175{left:693.000000px;}
.xf4_c00175{left:694.500000px;}
.x89_c00175{left:697.920000px;}
.x6c_c00175{left:699.420000px;}
.xfc_c00175{left:701.775000px;}
.x80_c00175{left:703.080000px;}
.x2f_c00175{left:706.920000px;}
.xa8_c00175{left:711.420000px;}
.x24_c00175{left:715.080000px;}
.x5c_c00175{left:718.500000px;}
@media print{
.v3_c00175{vertical-align:-10.666667pt;}
.v0_c00175{vertical-align:0.000000pt;}
.v2_c00175{vertical-align:5.333333pt;}
.v1_c00175{vertical-align:10.666667pt;}
.ls0_c00175{letter-spacing:0.000000pt;}
.ws0_c00175{word-spacing:-5.279994pt;}
.ws2_c00175{word-spacing:-4.131831pt;}
.ws1_c00175{word-spacing:-2.850987pt;}
.ws5_c00175{word-spacing:-2.706843pt;}
.ws8_c00175{word-spacing:-1.393375pt;}
.ws6_c00175{word-spacing:-1.084354pt;}
.ws9_c00175{word-spacing:0.000000pt;}
.ws7_c00175{word-spacing:0.119255pt;}
.ws4_c00175{word-spacing:4.543954pt;}
.ws3_c00175{word-spacing:4.758070pt;}
.fs7_c00175{font-size:3.040000pt;}
.fs8_c00175{font-size:10.560000pt;}
.fs9_c00175{font-size:12.106667pt;}
.fs5_c00175{font-size:16.640000pt;}
.fs1_c00175{font-size:18.133333pt;}
.fs3_c00175{font-size:22.666667pt;}
.fs2_c00175{font-size:25.706667pt;}
.fs4_c00175{font-size:28.746667pt;}
.fs0_c00175{font-size:31.733333pt;}
.fs6_c00175{font-size:34.773333pt;}
.y0_c00175{bottom:0.000000pt;}
.yde_c00175{bottom:204.160000pt;}
.ydf_c00175{bottom:205.106667pt;}
.ydb_c00175{bottom:207.026667pt;}
.ydc_c00175{bottom:207.226667pt;}
.ydd_c00175{bottom:208.373333pt;}
.yd7_c00175{bottom:222.440000pt;}
.yd8_c00175{bottom:222.826667pt;}
.yda_c00175{bottom:223.773333pt;}
.yd9_c00175{bottom:224.733333pt;}
.yd6_c00175{bottom:243.026667pt;}
.yd1_c00175{bottom:258.440000pt;}
.yd5_c00175{bottom:259.400000pt;}
.yd3_c00175{bottom:260.360000pt;}
.yd2_c00175{bottom:260.373333pt;}
.yd4_c00175{bottom:261.306667pt;}
.ycc_c00175{bottom:279.026667pt;}
.ycb_c00175{bottom:279.400000pt;}
.ycf_c00175{bottom:279.600000pt;}
.ycd_c00175{bottom:280.360000pt;}
.yd0_c00175{bottom:281.506667pt;}
.yce_c00175{bottom:282.266667pt;}
.yca_c00175{bottom:292.733333pt;}
.yc4_c00175{bottom:293.306667pt;}
.yc6_c00175{bottom:293.693333pt;}
.yc9_c00175{bottom:293.893333pt;}
.yc5_c00175{bottom:294.640000pt;}
.yc8_c00175{bottom:294.840000pt;}
.yc7_c00175{bottom:295.600000pt;}
.yc2_c00175{bottom:310.066667pt;}
.yc3_c00175{bottom:310.266667pt;}
.yc1_c00175{bottom:311.026667pt;}
.yc0_c00175{bottom:331.773333pt;}
.ybf_c00175{bottom:333.693333pt;}
.ybe_c00175{bottom:364.560000pt;}
.ybd_c00175{bottom:365.693333pt;}
.yb7_c00175{bottom:379.226667pt;}
.ybc_c00175{bottom:379.800000pt;}
.ybb_c00175{bottom:379.973333pt;}
.yb9_c00175{bottom:380.360000pt;}
.yb8_c00175{bottom:381.106667pt;}
.yb6_c00175{bottom:381.893333pt;}
.yb5_c00175{bottom:382.066667pt;}
.yba_c00175{bottom:383.026667pt;}
.yb3_c00175{bottom:397.133333pt;}
.yb0_c00175{bottom:397.693333pt;}
.yaf_c00175{bottom:398.440000pt;}
.yae_c00175{bottom:399.400000pt;}
.yb4_c00175{bottom:400.360000pt;}
.yb1_c00175{bottom:400.560000pt;}
.yb2_c00175{bottom:403.226667pt;}
.ya9_c00175{bottom:415.773333pt;}
.yad_c00175{bottom:416.360000pt;}
.ya8_c00175{bottom:416.733333pt;}
.yaa_c00175{bottom:417.693333pt;}
.yab_c00175{bottom:417.893333pt;}
.yac_c00175{bottom:418.066667pt;}
.ya5_c00175{bottom:432.360000pt;}
.ya2_c00175{bottom:433.106667pt;}
.ya1_c00175{bottom:433.306667pt;}
.ya7_c00175{bottom:433.693333pt;}
.ya4_c00175{bottom:434.066667pt;}
.ya6_c00175{bottom:435.026667pt;}
.ya3_c00175{bottom:435.973333pt;}
.ya0_c00175{bottom:449.693333pt;}
.y9b_c00175{bottom:450.440000pt;}
.y9c_c00175{bottom:451.400000pt;}
.y9e_c00175{bottom:451.773333pt;}
.y9f_c00175{bottom:452.360000pt;}
.y9d_c00175{bottom:452.733333pt;}
.y94_c00175{bottom:467.026667pt;}
.y99_c00175{bottom:468.360000pt;}
.y95_c00175{bottom:469.106667pt;}
.y9a_c00175{bottom:469.306667pt;}
.y98_c00175{bottom:470.066667pt;}
.y96_c00175{bottom:470.640000pt;}
.y97_c00175{bottom:471.026667pt;}
.y8e_c00175{bottom:485.693333pt;}
.y93_c00175{bottom:486.066667pt;}
.y8f_c00175{bottom:486.440000pt;}
.y90_c00175{bottom:487.226667pt;}
.y92_c00175{bottom:488.360000pt;}
.y91_c00175{bottom:488.373333pt;}
.y85_c00175{bottom:501.693333pt;}
.y86_c00175{bottom:502.066667pt;}
.y89_c00175{bottom:502.640000pt;}
.y8d_c00175{bottom:503.026667pt;}
.y88_c00175{bottom:503.400000pt;}
.y87_c00175{bottom:503.773333pt;}
.y8b_c00175{bottom:503.973333pt;}
.y8a_c00175{bottom:504.733333pt;}
.y8c_c00175{bottom:505.693333pt;}
.y80_c00175{bottom:520.360000pt;}
.y81_c00175{bottom:521.106667pt;}
.y83_c00175{bottom:521.306667pt;}
.y84_c00175{bottom:522.066667pt;}
.y82_c00175{bottom:523.026667pt;}
.y7e_c00175{bottom:537.693333pt;}
.y7b_c00175{bottom:538.440000pt;}
.y7f_c00175{bottom:538.826667pt;}
.y7d_c00175{bottom:539.773333pt;}
.y7c_c00175{bottom:540.360000pt;}
.y77_c00175{bottom:555.773333pt;}
.y79_c00175{bottom:556.360000pt;}
.y7a_c00175{bottom:557.106667pt;}
.y78_c00175{bottom:557.693333pt;}
.y70_c00175{bottom:573.106667pt;}
.y76_c00175{bottom:573.306667pt;}
.y74_c00175{bottom:573.693333pt;}
.y71_c00175{bottom:574.066667pt;}
.y72_c00175{bottom:574.440000pt;}
.y75_c00175{bottom:575.400000pt;}
.y73_c00175{bottom:576.360000pt;}
.y6c_c00175{bottom:589.693333pt;}
.y6a_c00175{bottom:590.440000pt;}
.y6f_c00175{bottom:591.026667pt;}
.y6d_c00175{bottom:591.773333pt;}
.y6b_c00175{bottom:592.733333pt;}
.y6e_c00175{bottom:593.693333pt;}
.y67_c00175{bottom:607.773333pt;}
.y63_c00175{bottom:607.973333pt;}
.y62_c00175{bottom:608.933333pt;}
.y65_c00175{bottom:609.106667pt;}
.y61_c00175{bottom:609.693333pt;}
.y68_c00175{bottom:609.893333pt;}
.y69_c00175{bottom:610.066667pt;}
.y64_c00175{bottom:610.640000pt;}
.y66_c00175{bottom:611.026667pt;}
.y60_c00175{bottom:625.306667pt;}
.y5e_c00175{bottom:626.440000pt;}
.y5f_c00175{bottom:627.226667pt;}
.y5d_c00175{bottom:627.973333pt;}
.y5c_c00175{bottom:628.360000pt;}
.y5b_c00175{bottom:643.773333pt;}
.y5a_c00175{bottom:645.693333pt;}
.y57_c00175{bottom:660.360000pt;}
.y54_c00175{bottom:661.106667pt;}
.y55_c00175{bottom:661.893333pt;}
.y58_c00175{bottom:662.440000pt;}
.y56_c00175{bottom:663.026667pt;}
.y59_c00175{bottom:664.360000pt;}
.y52_c00175{bottom:678.440000pt;}
.y50_c00175{bottom:679.400000pt;}
.y51_c00175{bottom:680.360000pt;}
.y4f_c00175{bottom:681.306667pt;}
.y53_c00175{bottom:681.693333pt;}
.y4b_c00175{bottom:695.773333pt;}
.y4d_c00175{bottom:696.733333pt;}
.y4c_c00175{bottom:697.693333pt;}
.y4e_c00175{bottom:698.640000pt;}
.y4a_c00175{bottom:714.440000pt;}
.y46_c00175{bottom:715.026667pt;}
.y47_c00175{bottom:715.226667pt;}
.y48_c00175{bottom:715.400000pt;}
.y45_c00175{bottom:715.973333pt;}
.y49_c00175{bottom:716.360000pt;}
.y44_c00175{bottom:731.026667pt;}
.y41_c00175{bottom:731.773333pt;}
.y43_c00175{bottom:732.560000pt;}
.y42_c00175{bottom:733.693333pt;}
.y3d_c00175{bottom:749.106667pt;}
.y40_c00175{bottom:750.066667pt;}
.y3e_c00175{bottom:751.026667pt;}
.y3f_c00175{bottom:751.973333pt;}
.y3c_c00175{bottom:765.306667pt;}
.y3b_c00175{bottom:766.440000pt;}
.y37_c00175{bottom:767.226667pt;}
.y3a_c00175{bottom:767.400000pt;}
.y39_c00175{bottom:767.973333pt;}
.y38_c00175{bottom:768.360000pt;}
.y35_c00175{bottom:783.773333pt;}
.y32_c00175{bottom:785.306667pt;}
.y33_c00175{bottom:785.693333pt;}
.y36_c00175{bottom:785.893333pt;}
.y34_c00175{bottom:786.640000pt;}
.y2f_c00175{bottom:800.360000pt;}
.y2e_c00175{bottom:803.026667pt;}
.y31_c00175{bottom:803.400000pt;}
.y30_c00175{bottom:804.360000pt;}
.y28_c00175{bottom:818.440000pt;}
.y2d_c00175{bottom:818.640000pt;}
.y29_c00175{bottom:819.773333pt;}
.y27_c00175{bottom:820.360000pt;}
.y2c_c00175{bottom:820.560000pt;}
.y2a_c00175{bottom:821.306667pt;}
.y2b_c00175{bottom:821.693333pt;}
.y21_c00175{bottom:836.733333pt;}
.y22_c00175{bottom:837.106667pt;}
.y20_c00175{bottom:837.693333pt;}
.y23_c00175{bottom:837.893333pt;}
.y25_c00175{bottom:838.640000pt;}
.y26_c00175{bottom:839.026667pt;}
.y24_c00175{bottom:839.973333pt;}
.y1e_c00175{bottom:854.066667pt;}
.y1d_c00175{bottom:854.440000pt;}
.y1f_c00175{bottom:855.973333pt;}
.y1c_c00175{bottom:856.360000pt;}
.y18_c00175{bottom:869.693333pt;}
.y19_c00175{bottom:871.400000pt;}
.y1b_c00175{bottom:871.773333pt;}
.y1a_c00175{bottom:873.693333pt;}
.y15_c00175{bottom:887.773333pt;}
.y13_c00175{bottom:888.733333pt;}
.y16_c00175{bottom:889.106667pt;}
.y11_c00175{bottom:889.693333pt;}
.y12_c00175{bottom:891.026667pt;}
.y14_c00175{bottom:891.973333pt;}
.y17_c00175{bottom:892.360000pt;}
.y10_c00175{bottom:906.440000pt;}
.yd_c00175{bottom:907.026667pt;}
.ye_c00175{bottom:907.400000pt;}
.yf_c00175{bottom:908.360000pt;}
.y9_c00175{bottom:923.773333pt;}
.yb_c00175{bottom:924.733333pt;}
.y8_c00175{bottom:925.693333pt;}
.yc_c00175{bottom:925.893333pt;}
.ya_c00175{bottom:927.026667pt;}
.y5_c00175{bottom:941.106667pt;}
.y6_c00175{bottom:942.440000pt;}
.y3_c00175{bottom:943.026667pt;}
.y4_c00175{bottom:943.973333pt;}
.y7_c00175{bottom:944.360000pt;}
.y1_c00175{bottom:975.773333pt;}
.y2_c00175{bottom:976.933333pt;}
.ha_c00175{height:3.739141pt;}
.hb_c00175{height:12.988594pt;}
.hc_c00175{height:14.890964pt;}
.h6_c00175{height:20.466875pt;}
.h2_c00175{height:22.303646pt;}
.h4_c00175{height:27.879557pt;}
.h3_c00175{height:31.618698pt;}
.h5_c00175{height:35.357839pt;}
.h8_c00175{height:36.952031pt;}
.h1_c00175{height:39.031380pt;}
.h7_c00175{height:42.285365pt;}
.h9_c00175{height:42.770521pt;}
.h0_c00175{height:1186.666667pt;}
.w0_c00175{width:782.666667pt;}
.x0_c00175{left:0.000000pt;}
.x3_c00175{left:132.960000pt;}
.x1_c00175{left:134.466667pt;}
.x93_c00175{left:136.000000pt;}
.xca_c00175{left:137.706667pt;}
.xff_c00175{left:146.666667pt;}
.x39_c00175{left:147.626667pt;}
.xac_c00175{left:148.960000pt;}
.x6d_c00175{left:151.040000pt;}
.x99_c00175{left:152.000000pt;}
.x25_c00175{left:157.333333pt;}
.x4f_c00175{left:158.293333pt;}
.x4_c00175{left:162.666667pt;}
.xed_c00175{left:164.000000pt;}
.xfd_c00175{left:165.333333pt;}
.x46_c00175{left:168.000000pt;}
.xa3_c00175{left:169.706667pt;}
.xe8_c00175{left:172.373333pt;}
.x17_c00175{left:173.333333pt;}
.x30_c00175{left:174.666667pt;}
.x9a_c00175{left:177.333333pt;}
.x8a_c00175{left:180.000000pt;}
.xc5_c00175{left:180.960000pt;}
.x63_c00175{left:184.000000pt;}
.x107_c00175{left:187.040000pt;}
.x5_c00175{left:188.000000pt;}
.xda_c00175{left:188.960000pt;}
.xb2_c00175{left:190.293333pt;}
.x26_c00175{left:192.000000pt;}
.xee_c00175{left:193.333333pt;}
.x77_c00175{left:196.000000pt;}
.x3a_c00175{left:197.706667pt;}
.x81_c00175{left:200.373333pt;}
.x50_c00175{left:202.293333pt;}
.xcb_c00175{left:203.626667pt;}
.xdf_c00175{left:206.666667pt;}
.xad_c00175{left:207.626667pt;}
.x6e_c00175{left:208.960000pt;}
.x31_c00175{left:210.293333pt;}
.x100_c00175{left:213.706667pt;}
.x64_c00175{left:215.626667pt;}
.xbc_c00175{left:217.133333pt;}
.xe4_c00175{left:218.466667pt;}
.xdb_c00175{left:220.000000pt;}
.xa4_c00175{left:221.333333pt;}
.x18_c00175{left:224.373333pt;}
.xb3_c00175{left:225.333333pt;}
.xf5_c00175{left:226.666667pt;}
.x5d_c00175{left:227.626667pt;}
.x10b_c00175{left:229.333333pt;}
.x10c_c00175{left:230.666667pt;}
.x8b_c00175{left:231.626667pt;}
.xae_c00175{left:233.333333pt;}
.x78_c00175{left:236.000000pt;}
.xd_c00175{left:237.706667pt;}
.x27_c00175{left:238.666667pt;}
.xf6_c00175{left:239.626667pt;}
.xa9_c00175{left:240.960000pt;}
.x47_c00175{left:242.666667pt;}
.x6f_c00175{left:244.000000pt;}
.x51_c00175{left:245.333333pt;}
.x65_c00175{left:247.626667pt;}
.x8c_c00175{left:248.960000pt;}
.xdc_c00175{left:250.666667pt;}
.x82_c00175{left:252.000000pt;}
.xd0_c00175{left:253.333333pt;}
.x103_c00175{left:255.040000pt;}
.x3b_c00175{left:256.000000pt;}
.xaa_c00175{left:257.706667pt;}
.xa5_c00175{left:259.040000pt;}
.xb9_c00175{left:260.000000pt;}
.x28_c00175{left:261.333333pt;}
.x19_c00175{left:265.333333pt;}
.xaf_c00175{left:266.666667pt;}
.x6_c00175{left:269.333333pt;}
.xeb_c00175{left:272.000000pt;}
.xe_c00175{left:274.666667pt;}
.x48_c00175{left:276.000000pt;}
.x32_c00175{left:279.040000pt;}
.xd1_c00175{left:280.000000pt;}
.xab_c00175{left:281.706667pt;}
.xcc_c00175{left:282.666667pt;}
.x5e_c00175{left:284.373333pt;}
.x79_c00175{left:285.333333pt;}
.x104_c00175{left:287.040000pt;}
.x83_c00175{left:288.373333pt;}
.x3c_c00175{left:292.000000pt;}
.xa6_c00175{left:293.706667pt;}
.x52_c00175{left:294.666667pt;}
.x70_c00175{left:297.333333pt;}
.x9b_c00175{left:300.000000pt;}
.xb4_c00175{left:301.706667pt;}
.x33_c00175{left:303.040000pt;}
.x29_c00175{left:306.666667pt;}
.x5f_c00175{left:309.333333pt;}
.x49_c00175{left:312.000000pt;}
.x1a_c00175{left:312.960000pt;}
.xe0_c00175{left:314.293333pt;}
.x8d_c00175{left:317.706667pt;}
.x3d_c00175{left:318.666667pt;}
.xf_c00175{left:319.626667pt;}
.x108_c00175{left:320.573333pt;}
.x66_c00175{left:324.373333pt;}
.xbd_c00175{left:326.666667pt;}
.xb5_c00175{left:328.000000pt;}
.x1b_c00175{left:329.333333pt;}
.xba_c00175{left:331.626667pt;}
.x3e_c00175{left:333.333333pt;}
.xd2_c00175{left:334.293333pt;}
.x71_c00175{left:336.000000pt;}
.x7_c00175{left:338.666667pt;}
.x84_c00175{left:341.333333pt;}
.x2a_c00175{left:343.040000pt;}
.x34_c00175{left:344.960000pt;}
.x10_c00175{left:348.373333pt;}
.x3f_c00175{left:349.333333pt;}
.x105_c00175{left:351.040000pt;}
.xfe_c00175{left:352.373333pt;}
.x2_c00175{left:353.333333pt;}
.x8e_c00175{left:354.666667pt;}
.x94_c00175{left:356.000000pt;}
.x53_c00175{left:356.960000pt;}
.x10e_c00175{left:357.906667pt;}
.x9c_c00175{left:360.000000pt;}
.x40_c00175{left:362.666667pt;}
.x1c_c00175{left:365.706667pt;}
.x4a_c00175{left:368.000000pt;}
.x101_c00175{left:369.333333pt;}
.x11_c00175{left:372.000000pt;}
.x54_c00175{left:375.040000pt;}
.xe5_c00175{left:376.760000pt;}
.xd3_c00175{left:378.093333pt;}
.xe1_c00175{left:380.960000pt;}
.xbe_c00175{left:383.626667pt;}
.x85_c00175{left:385.333333pt;}
.x8f_c00175{left:387.040000pt;}
.x4b_c00175{left:388.000000pt;}
.x109_c00175{left:390.666667pt;}
.x41_c00175{left:392.000000pt;}
.x67_c00175{left:394.293333pt;}
.x7a_c00175{left:396.960000pt;}
.x1d_c00175{left:399.040000pt;}
.x9d_c00175{left:400.000000pt;}
.xef_c00175{left:402.666667pt;}
.x106_c00175{left:403.626667pt;}
.xec_c00175{left:404.760000pt;}
.x35_c00175{left:405.706667pt;}
.x2b_c00175{left:408.373333pt;}
.x12_c00175{left:410.666667pt;}
.x90_c00175{left:411.626667pt;}
.xf7_c00175{left:413.706667pt;}
.x8_c00175{left:415.040000pt;}
.xbf_c00175{left:416.000000pt;}
.xcd_c00175{left:418.293333pt;}
.xb6_c00175{left:419.626667pt;}
.x10d_c00175{left:422.466667pt;}
.x72_c00175{left:424.373333pt;}
.x42_c00175{left:428.000000pt;}
.xf8_c00175{left:429.333333pt;}
.xd4_c00175{left:430.293333pt;}
.x36_c00175{left:431.626667pt;}
.x86_c00175{left:433.333333pt;}
.xf9_c00175{left:434.293333pt;}
.xb7_c00175{left:436.373333pt;}
.x7b_c00175{left:437.333333pt;}
.xc0_c00175{left:439.626667pt;}
.xdd_c00175{left:440.960000pt;}
.xfa_c00175{left:442.666667pt;}
.x55_c00175{left:444.000000pt;}
.xce_c00175{left:445.706667pt;}
.x1e_c00175{left:446.666667pt;}
.x37_c00175{left:448.373333pt;}
.x91_c00175{left:450.666667pt;}
.xe2_c00175{left:451.626667pt;}
.x60_c00175{left:453.333333pt;}
.x2c_c00175{left:456.000000pt;}
.xb0_c00175{left:456.960000pt;}
.xb8_c00175{left:460.373333pt;}
.x13_c00175{left:461.706667pt;}
.xd5_c00175{left:462.666667pt;}
.x56_c00175{left:464.000000pt;}
.x9_c00175{left:465.706667pt;}
.x7c_c00175{left:468.000000pt;}
.xe9_c00175{left:469.706667pt;}
.xc1_c00175{left:471.040000pt;}
.xc8_c00175{left:472.000000pt;}
.x38_c00175{left:473.333333pt;}
.xde_c00175{left:474.293333pt;}
.x57_c00175{left:476.000000pt;}
.x9e_c00175{left:478.666667pt;}
.x43_c00175{left:481.333333pt;}
.xe6_c00175{left:486.293333pt;}
.x95_c00175{left:488.373333pt;}
.x4c_c00175{left:489.333333pt;}
.x68_c00175{left:491.626667pt;}
.x7d_c00175{left:493.706667pt;}
.x1f_c00175{left:495.040000pt;}
.x9f_c00175{left:496.373333pt;}
.xfb_c00175{left:497.706667pt;}
.x14_c00175{left:502.666667pt;}
.xea_c00175{left:504.373333pt;}
.xc2_c00175{left:505.333333pt;}
.x73_c00175{left:506.293333pt;}
.x61_c00175{left:508.000000pt;}
.xa_c00175{left:509.706667pt;}
.x58_c00175{left:512.000000pt;}
.xf0_c00175{left:514.293333pt;}
.x87_c00175{left:516.373333pt;}
.x20_c00175{left:518.293333pt;}
.xa0_c00175{left:520.000000pt;}
.x74_c00175{left:521.706667pt;}
.xf1_c00175{left:522.666667pt;}
.xc6_c00175{left:524.373333pt;}
.xd6_c00175{left:525.706667pt;}
.xf2_c00175{left:527.040000pt;}
.x96_c00175{left:530.293333pt;}
.x69_c00175{left:532.373333pt;}
.xb_c00175{left:533.333333pt;}
.xe3_c00175{left:536.960000pt;}
.x7e_c00175{left:538.293333pt;}
.xe7_c00175{left:539.626667pt;}
.xbb_c00175{left:541.333333pt;}
.x44_c00175{left:542.666667pt;}
.x75_c00175{left:544.000000pt;}
.x15_c00175{left:545.333333pt;}
.x97_c00175{left:547.040000pt;}
.xf3_c00175{left:548.960000pt;}
.xa7_c00175{left:550.666667pt;}
.x4d_c00175{left:551.626667pt;}
.x2d_c00175{left:553.706667pt;}
.x59_c00175{left:554.666667pt;}
.x21_c00175{left:555.626667pt;}
.x10a_c00175{left:556.960000pt;}
.x45_c00175{left:559.040000pt;}
.xc3_c00175{left:560.000000pt;}
.xa1_c00175{left:563.626667pt;}
.x5a_c00175{left:565.333333pt;}
.x6a_c00175{left:567.040000pt;}
.x98_c00175{left:570.666667pt;}
.xc_c00175{left:572.000000pt;}
.xc7_c00175{left:574.293333pt;}
.xc4_c00175{left:576.960000pt;}
.xd7_c00175{left:578.293333pt;}
.x7f_c00175{left:581.333333pt;}
.x4e_c00175{left:582.666667pt;}
.x22_c00175{left:584.373333pt;}
.x62_c00175{left:585.333333pt;}
.x92_c00175{left:588.373333pt;}
.xa2_c00175{left:590.666667pt;}
.x88_c00175{left:593.706667pt;}
.x102_c00175{left:595.040000pt;}
.xc9_c00175{left:596.000000pt;}
.x2e_c00175{left:597.333333pt;}
.xcf_c00175{left:598.666667pt;}
.x5b_c00175{left:601.333333pt;}
.xd8_c00175{left:603.626667pt;}
.x6b_c00175{left:605.333333pt;}
.x23_c00175{left:608.373333pt;}
.xd9_c00175{left:610.666667pt;}
.x16_c00175{left:612.373333pt;}
.x76_c00175{left:613.333333pt;}
.xb1_c00175{left:616.000000pt;}
.xf4_c00175{left:617.333333pt;}
.x89_c00175{left:620.373333pt;}
.x6c_c00175{left:621.706667pt;}
.xfc_c00175{left:623.800000pt;}
.x80_c00175{left:624.960000pt;}
.x2f_c00175{left:628.373333pt;}
.xa8_c00175{left:632.373333pt;}
.x24_c00175{left:635.626667pt;}
.x5c_c00175{left:638.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_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_e3b0d05f8cd1ac8c0a0e51f5.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mce_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);}
.md1_c00176{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.mc0_c00176{transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);}
.m35_c00176{transform:matrix(0.325153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325153,0.000000,0.000000,0.250000,0,0);}
.m3f_c00176{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m33_c00176{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m3c_c00176{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.md3_c00176{transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);}
.m5_c00176{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m17_c00176{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m59_c00176{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m2d_c00176{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m4b_c00176{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m62_c00176{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m97_c00176{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.mf4_c00176{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.mde_c00176{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.ma1_c00176{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.mee_c00176{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m2c_c00176{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.me2_c00176{transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);}
.m41_c00176{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mf0_c00176{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.me6_c00176{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.ma2_c00176{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.mbc_c00176{transform:matrix(0.397623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397623,0.000000,0.000000,0.250000,0,0);}
.m65_c00176{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m54_c00176{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m99_c00176{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.md9_c00176{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m1b_c00176{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.mc2_c00176{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m6e_c00176{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mf5_c00176{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m98_c00176{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mf3_c00176{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m31_c00176{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.mdf_c00176{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m5c_c00176{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m6b_c00176{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m70_c00176{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m34_c00176{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mf1_c00176{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m56_c00176{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m5f_c00176{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m28_c00176{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.mac_c00176{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m79_c00176{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m51_c00176{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m5b_c00176{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mad_c00176{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m83_c00176{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m84_c00176{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.mf6_c00176{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m4f_c00176{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m49_c00176{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.me5_c00176{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.mbe_c00176{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m19_c00176{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m75_c00176{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mc9_c00176{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.mb1_c00176{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m90_c00176{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.mb5_c00176{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.me4_c00176{transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);}
.mc5_c00176{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.mcf_c00176{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m61_c00176{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m40_c00176{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m45_c00176{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mc7_c00176{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.ma4_c00176{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m3b_c00176{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m50_c00176{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.md4_c00176{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.md_c00176{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.m68_c00176{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m67_c00176{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.ma0_c00176{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m8d_c00176{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m6c_c00176{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m2a_c00176{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mb7_c00176{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m5a_c00176{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m8f_c00176{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.mb8_c00176{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m82_c00176{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00176{transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);}
.mb0_c00176{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.mdb_c00176{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.mb3_c00176{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mea_c00176{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m81_c00176{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.md8_c00176{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.m44_c00176{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m12_c00176{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.me3_c00176{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.maa_c00176{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m8a_c00176{transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);}
.mf2_c00176{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mae_c00176{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m53_c00176{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m73_c00176{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m4a_c00176{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m1_c00176{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m55_c00176{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mbf_c00176{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m4c_c00176{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.mc6_c00176{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m72_c00176{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m23_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);}
.m47_c00176{transform:matrix(0.501855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501855,0.000000,0.000000,0.250000,0,0);}
.m9c_c00176{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mc_c00176{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m2b_c00176{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m87_c00176{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mb6_c00176{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m95_c00176{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m9b_c00176{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m2f_c00176{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m8b_c00176{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m1d_c00176{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m36_c00176{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m5d_c00176{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.me_c00176{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.md6_c00176{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.me1_c00176{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m52_c00176{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.ma7_c00176{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m8_c00176{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m22_c00176{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.md0_c00176{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m92_c00176{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m8e_c00176{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m4d_c00176{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m9_c00176{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m15_c00176{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m9a_c00176{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mb_c00176{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m1c_c00176{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m2e_c00176{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m10_c00176{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m29_c00176{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m4_c00176{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m9f_c00176{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.ma9_c00176{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m1e_c00176{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m3d_c00176{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m24_c00176{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m46_c00176{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m93_c00176{transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);}
.m11_c00176{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mba_c00176{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.ma_c00176{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mec_c00176{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mb9_c00176{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m38_c00176{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.md7_c00176{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.md2_c00176{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m85_c00176{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.md5_c00176{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m27_c00176{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m78_c00176{transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);}
.mc4_c00176{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m16_c00176{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.ma5_c00176{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.ma3_c00176{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m7d_c00176{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m14_c00176{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m69_c00176{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.me8_c00176{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.me9_c00176{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mbb_c00176{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m43_c00176{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.mab_c00176{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mda_c00176{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m3e_c00176{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m57_c00176{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m18_c00176{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.m13_c00176{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.mcc_c00176{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mcb_c00176{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.mca_c00176{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.mf_c00176{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m89_c00176{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.ma6_c00176{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m91_c00176{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.mc1_c00176{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m42_c00176{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.me7_c00176{transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);}
.meb_c00176{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m2_c00176{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mbd_c00176{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m6d_c00176{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m7f_c00176{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m1a_c00176{transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);}
.m63_c00176{transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);}
.mef_c00176{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.mdd_c00176{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m9d_c00176{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.mb2_c00176{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.mc8_c00176{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.mb4_c00176{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);}
.m7a_c00176{transform:matrix(0.601765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601765,0.000000,0.000000,0.250000,0,0);}
.m71_c00176{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m6f_c00176{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m21_c00176{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m6a_c00176{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m3a_c00176{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m88_c00176{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m7_c00176{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m60_c00176{transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);}
.me0_c00176{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m5e_c00176{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m77_c00176{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);}
.m80_c00176{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m7b_c00176{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m7e_c00176{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.maf_c00176{transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);}
.m0_c00176{transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);}
.m1f_c00176{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m39_c00176{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m20_c00176{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.med_c00176{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m96_c00176{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m48_c00176{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m26_c00176{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mcd_c00176{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m4e_c00176{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.m9e_c00176{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m66_c00176{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m6_c00176{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m76_c00176{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m64_c00176{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m30_c00176{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m7c_c00176{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m94_c00176{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m58_c00176{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m32_c00176{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m8c_c00176{transform:matrix(0.801282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.801282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.801282,0.000000,0.000000,0.250000,0,0);}
.ma8_c00176{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m37_c00176{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m74_c00176{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m86_c00176{transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);}
.mdc_c00176{transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);}
.m3_c00176{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m25_c00176{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:0.000000px;}
.fc0_c00176{color:transparent;}
.fs2_c00176{font-size:3.420000px;}
.fs0_c00176{font-size:18.720000px;}
.fs7_c00176{font-size:20.400000px;}
.fs5_c00176{font-size:25.500000px;}
.fs1_c00176{font-size:28.920000px;}
.fs4_c00176{font-size:32.340000px;}
.fs3_c00176{font-size:35.700000px;}
.fs6_c00176{font-size:39.120000px;}
.y0_c00176{bottom:0.000000px;}
.yce_c00176{bottom:253.050000px;}
.ycd_c00176{bottom:253.905000px;}
.yc9_c00176{bottom:271.245000px;}
.ycb_c00176{bottom:272.970000px;}
.yc8_c00176{bottom:273.405000px;}
.ycc_c00176{bottom:273.630000px;}
.yca_c00176{bottom:274.470000px;}
.yc7_c00176{bottom:290.745000px;}
.yc5_c00176{bottom:292.905000px;}
.yc4_c00176{bottom:293.130000px;}
.yc6_c00176{bottom:293.970000px;}
.ybe_c00176{bottom:311.325000px;}
.yc0_c00176{bottom:311.745000px;}
.yc2_c00176{bottom:311.970000px;}
.yc3_c00176{bottom:312.405000px;}
.yc1_c00176{bottom:313.470000px;}
.ybf_c00176{bottom:313.905000px;}
.yb9_c00176{bottom:328.905000px;}
.ybc_c00176{bottom:329.745000px;}
.ybb_c00176{bottom:330.405000px;}
.ybd_c00176{bottom:330.825000px;}
.yba_c00176{bottom:332.130000px;}
.yb8_c00176{bottom:333.405000px;}
.yb5_c00176{bottom:349.680000px;}
.yb7_c00176{bottom:350.325000px;}
.yb6_c00176{bottom:350.745000px;}
.yb3_c00176{bottom:352.905000px;}
.yb4_c00176{bottom:352.920000px;}
.yb2_c00176{bottom:371.550000px;}
.yb1_c00176{bottom:372.405000px;}
.yaf_c00176{bottom:389.745000px;}
.yb0_c00176{bottom:390.630000px;}
.yad_c00176{bottom:391.470000px;}
.yab_c00176{bottom:391.905000px;}
.yae_c00176{bottom:392.970000px;}
.yac_c00176{bottom:393.405000px;}
.ya6_c00176{bottom:409.245000px;}
.yaa_c00176{bottom:410.130000px;}
.ya8_c00176{bottom:410.325000px;}
.ya7_c00176{bottom:410.970000px;}
.ya5_c00176{bottom:411.405000px;}
.ya9_c00176{bottom:411.630000px;}
.ya2_c00176{bottom:427.905000px;}
.ya4_c00176{bottom:428.745000px;}
.ya3_c00176{bottom:429.630000px;}
.ya0_c00176{bottom:430.245000px;}
.ya1_c00176{bottom:430.905000px;}
.y9f_c00176{bottom:432.405000px;}
.y9d_c00176{bottom:448.245000px;}
.y9e_c00176{bottom:448.680000px;}
.y9b_c00176{bottom:449.745000px;}
.y9a_c00176{bottom:451.905000px;}
.y9c_c00176{bottom:452.970000px;}
.y98_c00176{bottom:469.245000px;}
.y97_c00176{bottom:471.405000px;}
.y99_c00176{bottom:472.470000px;}
.y93_c00176{bottom:488.745000px;}
.y95_c00176{bottom:489.630000px;}
.y96_c00176{bottom:489.825000px;}
.y92_c00176{bottom:490.905000px;}
.y94_c00176{bottom:491.970000px;}
.y8d_c00176{bottom:506.970000px;}
.y90_c00176{bottom:508.245000px;}
.y91_c00176{bottom:509.130000px;}
.y8f_c00176{bottom:509.325000px;}
.y8e_c00176{bottom:510.405000px;}
.y8c_c00176{bottom:526.905000px;}
.y8a_c00176{bottom:527.745000px;}
.y86_c00176{bottom:528.180000px;}
.y89_c00176{bottom:528.825000px;}
.y87_c00176{bottom:529.905000px;}
.y8b_c00176{bottom:530.970000px;}
.y88_c00176{bottom:531.405000px;}
.y85_c00176{bottom:547.245000px;}
.y80_c00176{bottom:548.745000px;}
.y84_c00176{bottom:549.405000px;}
.y83_c00176{bottom:549.630000px;}
.y81_c00176{bottom:550.470000px;}
.y82_c00176{bottom:550.905000px;}
.y7c_c00176{bottom:568.245000px;}
.y7f_c00176{bottom:568.905000px;}
.y7d_c00176{bottom:569.325000px;}
.y7e_c00176{bottom:569.970000px;}
.y7b_c00176{bottom:570.405000px;}
.y79_c00176{bottom:586.470000px;}
.y7a_c00176{bottom:587.325000px;}
.y76_c00176{bottom:587.745000px;}
.y78_c00176{bottom:588.630000px;}
.y77_c00176{bottom:588.825000px;}
.y75_c00176{bottom:589.905000px;}
.y72_c00176{bottom:606.405000px;}
.y70_c00176{bottom:606.825000px;}
.y74_c00176{bottom:607.245000px;}
.y73_c00176{bottom:608.970000px;}
.y71_c00176{bottom:609.405000px;}
.y6e_c00176{bottom:628.905000px;}
.y6f_c00176{bottom:629.130000px;}
.y6c_c00176{bottom:647.325000px;}
.y6a_c00176{bottom:647.745000px;}
.y69_c00176{bottom:648.405000px;}
.y6b_c00176{bottom:648.630000px;}
.y6d_c00176{bottom:649.470000px;}
.y66_c00176{bottom:664.905000px;}
.y68_c00176{bottom:667.905000px;}
.y67_c00176{bottom:668.130000px;}
.y65_c00176{bottom:669.405000px;}
.y64_c00176{bottom:686.745000px;}
.y63_c00176{bottom:687.630000px;}
.y62_c00176{bottom:688.905000px;}
.y60_c00176{bottom:706.245000px;}
.y61_c00176{bottom:707.130000px;}
.y5f_c00176{bottom:708.405000px;}
.y5e_c00176{bottom:709.470000px;}
.y5c_c00176{bottom:725.745000px;}
.y5d_c00176{bottom:726.630000px;}
.y59_c00176{bottom:726.825000px;}
.y5b_c00176{bottom:727.905000px;}
.y5a_c00176{bottom:728.130000px;}
.y57_c00176{bottom:744.405000px;}
.y55_c00176{bottom:745.245000px;}
.y54_c00176{bottom:746.325000px;}
.y53_c00176{bottom:747.405000px;}
.y56_c00176{bottom:747.630000px;}
.y58_c00176{bottom:748.470000px;}
.y51_c00176{bottom:764.745000px;}
.y50_c00176{bottom:765.825000px;}
.y4d_c00176{bottom:766.245000px;}
.y52_c00176{bottom:766.470000px;}
.y4e_c00176{bottom:767.130000px;}
.y4f_c00176{bottom:767.970000px;}
.y47_c00176{bottom:784.245000px;}
.y4b_c00176{bottom:784.905000px;}
.y4c_c00176{bottom:785.130000px;}
.y4a_c00176{bottom:785.325000px;}
.y48_c00176{bottom:786.405000px;}
.y49_c00176{bottom:787.470000px;}
.y40_c00176{bottom:803.970000px;}
.y41_c00176{bottom:805.245000px;}
.y46_c00176{bottom:805.905000px;}
.y45_c00176{bottom:806.130000px;}
.y42_c00176{bottom:806.325000px;}
.y44_c00176{bottom:806.970000px;}
.y43_c00176{bottom:807.405000px;}
.y3c_c00176{bottom:824.745000px;}
.y3d_c00176{bottom:825.630000px;}
.y3f_c00176{bottom:825.825000px;}
.y3e_c00176{bottom:826.905000px;}
.y3a_c00176{bottom:843.405000px;}
.y36_c00176{bottom:844.245000px;}
.y3b_c00176{bottom:845.130000px;}
.y39_c00176{bottom:845.970000px;}
.y37_c00176{bottom:846.405000px;}
.y38_c00176{bottom:847.470000px;}
.y34_c00176{bottom:862.905000px;}
.y32_c00176{bottom:863.745000px;}
.y33_c00176{bottom:864.630000px;}
.y31_c00176{bottom:865.905000px;}
.y35_c00176{bottom:866.970000px;}
.y2e_c00176{bottom:882.405000px;}
.y30_c00176{bottom:882.825000px;}
.y2d_c00176{bottom:883.245000px;}
.y2c_c00176{bottom:883.470000px;}
.y2f_c00176{bottom:884.130000px;}
.y2b_c00176{bottom:884.325000px;}
.y2a_c00176{bottom:885.405000px;}
.y27_c00176{bottom:901.905000px;}
.y29_c00176{bottom:902.325000px;}
.y25_c00176{bottom:902.745000px;}
.y26_c00176{bottom:904.245000px;}
.y28_c00176{bottom:904.905000px;}
.y23_c00176{bottom:905.130000px;}
.y22_c00176{bottom:905.325000px;}
.y24_c00176{bottom:906.405000px;}
.y21_c00176{bottom:923.325000px;}
.y1f_c00176{bottom:923.745000px;}
.y20_c00176{bottom:925.905000px;}
.y1e_c00176{bottom:941.745000px;}
.y1d_c00176{bottom:942.825000px;}
.y1b_c00176{bottom:943.905000px;}
.y1a_c00176{bottom:944.130000px;}
.y1c_c00176{bottom:944.970000px;}
.y19_c00176{bottom:945.405000px;}
.y18_c00176{bottom:961.680000px;}
.y16_c00176{bottom:962.745000px;}
.y17_c00176{bottom:963.630000px;}
.y15_c00176{bottom:964.905000px;}
.y13_c00176{bottom:982.245000px;}
.y14_c00176{bottom:983.130000px;}
.y11_c00176{bottom:984.405000px;}
.y12_c00176{bottom:984.420000px;}
.ye_c00176{bottom:1003.905000px;}
.yf_c00176{bottom:1004.130000px;}
.y10_c00176{bottom:1004.970000px;}
.yb_c00176{bottom:1021.245000px;}
.yd_c00176{bottom:1022.325000px;}
.yc_c00176{bottom:1023.405000px;}
.ya_c00176{bottom:1041.825000px;}
.y9_c00176{bottom:1042.905000px;}
.y8_c00176{bottom:1061.325000px;}
.y5_c00176{bottom:1061.745000px;}
.y7_c00176{bottom:1062.405000px;}
.y6_c00176{bottom:1062.630000px;}
.y3_c00176{bottom:1063.905000px;}
.y4_c00176{bottom:1063.920000px;}
.y2_c00176{bottom:1098.405000px;}
.y1_c00176{bottom:1101.630000px;}
.h3_c00176{height:4.206533px;}
.h1_c00176{height:23.025234px;}
.h8_c00176{height:25.091602px;}
.h6_c00176{height:31.364502px;}
.h2_c00176{height:35.571035px;}
.h5_c00176{height:39.777568px;}
.h4_c00176{height:43.910303px;}
.h7_c00176{height:48.116836px;}
.h0_c00176{height:1335.000000px;}
.w0_c00176{width:880.500000px;}
.x0_c00176{left:0.000000px;}
.xf_c00176{left:151.080000px;}
.x96_c00176{left:153.420000px;}
.xf3_c00176{left:154.500000px;}
.x3_c00176{left:167.580000px;}
.xec_c00176{left:169.080000px;}
.xfc_c00176{left:170.145000px;}
.xe9_c00176{left:172.920000px;}
.xa7_c00176{left:178.080000px;}
.xc8_c00176{left:180.000000px;}
.x10_c00176{left:181.500000px;}
.xcf_c00176{left:186.000000px;}
.xc3_c00176{left:187.080000px;}
.x65_c00176{left:190.080000px;}
.x8d_c00176{left:192.000000px;}
.x97_c00176{left:194.580000px;}
.xba_c00176{left:196.500000px;}
.x23_c00176{left:198.000000px;}
.xea_c00176{left:199.920000px;}
.x11_c00176{left:201.000000px;}
.xb6_c00176{left:203.580000px;}
.x38_c00176{left:205.500000px;}
.xe6_c00176{left:207.000000px;}
.xd7_c00176{left:210.000000px;}
.x7a_c00176{left:211.920000px;}
.xe1_c00176{left:213.420000px;}
.x5a_c00176{left:214.920000px;}
.x10a_c00176{left:216.000000px;}
.x24_c00176{left:217.500000px;}
.xa8_c00176{left:219.420000px;}
.x66_c00176{left:220.500000px;}
.xed_c00176{left:222.420000px;}
.xd0_c00176{left:225.000000px;}
.x1c_c00176{left:226.500000px;}
.x39_c00176{left:227.580000px;}
.x5b_c00176{left:229.500000px;}
.x86_c00176{left:232.920000px;}
.x73_c00176{left:234.000000px;}
.xc9_c00176{left:235.920000px;}
.xa1_c00176{left:238.920000px;}
.xfd_c00176{left:240.000000px;}
.x25_c00176{left:241.500000px;}
.x4c_c00176{left:244.500000px;}
.x44_c00176{left:245.580000px;}
.x32_c00176{left:247.500000px;}
.xe2_c00176{left:249.855000px;}
.x28_c00176{left:252.000000px;}
.xb0_c00176{left:255.000000px;}
.x106_c00176{left:258.000000px;}
.xf4_c00176{left:259.080000px;}
.x4_c00176{left:261.000000px;}
.x4d_c00176{left:262.500000px;}
.xa2_c00176{left:265.500000px;}
.x12_c00176{left:266.580000px;}
.x5c_c00176{left:268.080000px;}
.xeb_c00176{left:270.420000px;}
.x8e_c00176{left:271.500000px;}
.x29_c00176{left:274.080000px;}
.x4e_c00176{left:276.420000px;}
.xd1_c00176{left:277.920000px;}
.xd8_c00176{left:280.500000px;}
.x5_c00176{left:282.000000px;}
.xa9_c00176{left:283.500000px;}
.x26_c00176{left:285.000000px;}
.x1d_c00176{left:286.500000px;}
.x107_c00176{left:289.500000px;}
.xfe_c00176{left:291.000000px;}
.xb1_c00176{left:294.000000px;}
.xf6_c00176{left:295.500000px;}
.x3a_c00176{left:297.000000px;}
.x102_c00176{left:300.000000px;}
.x4f_c00176{left:301.500000px;}
.xd2_c00176{left:302.580000px;}
.x27_c00176{left:303.645000px;}
.x10b_c00176{left:304.920000px;}
.x8f_c00176{left:306.000000px;}
.xc4_c00176{left:309.420000px;}
.x6_c00176{left:310.500000px;}
.x13_c00176{left:312.000000px;}
.x87_c00176{left:316.080000px;}
.x33_c00176{left:317.580000px;}
.x74_c00176{left:319.500000px;}
.x103_c00176{left:325.920000px;}
.xca_c00176{left:327.420000px;}
.xf7_c00176{left:328.920000px;}
.xf9_c00176{left:330.000000px;}
.x6a_c00176{left:332.580000px;}
.x98_c00176{left:334.920000px;}
.x88_c00176{left:336.420000px;}
.xb2_c00176{left:337.500000px;}
.x90_c00176{left:342.000000px;}
.x7b_c00176{left:345.000000px;}
.xc5_c00176{left:346.920000px;}
.x2a_c00176{left:348.000000px;}
.x45_c00176{left:349.500000px;}
.xee_c00176{left:351.000000px;}
.x6b_c00176{left:352.500000px;}
.xcb_c00176{left:354.420000px;}
.x3b_c00176{left:359.580000px;}
.x7_c00176{left:361.500000px;}
.x50_c00176{left:363.420000px;}
.x1e_c00176{left:364.500000px;}
.x67_c00176{left:366.000000px;}
.x2b_c00176{left:367.500000px;}
.xbe_c00176{left:370.920000px;}
.xc6_c00176{left:373.500000px;}
.x14_c00176{left:375.420000px;}
.xe3_c00176{left:376.500000px;}
.x3c_c00176{left:378.000000px;}
.xef_c00176{left:382.500000px;}
.xf8_c00176{left:383.580000px;}
.xa3_c00176{left:385.500000px;}
.xd3_c00176{left:387.420000px;}
.xb7_c00176{left:391.500000px;}
.x99_c00176{left:393.000000px;}
.x51_c00176{left:394.500000px;}
.x75_c00176{left:396.000000px;}
.x1_c00176{left:397.500000px;}
.xaa_c00176{left:399.000000px;}
.x7c_c00176{left:402.000000px;}
.x2c_c00176{left:403.500000px;}
.x3d_c00176{left:405.000000px;}
.x8_c00176{left:406.500000px;}
.x108_c00176{left:409.920000px;}
.x104_c00176{left:411.420000px;}
.x15_c00176{left:412.500000px;}
.x6c_c00176{left:414.420000px;}
.x52_c00176{left:417.000000px;}
.xbb_c00176{left:418.920000px;}
.x7d_c00176{left:421.920000px;}
.xf5_c00176{left:423.000000px;}
.x9_c00176{left:424.080000px;}
.x68_c00176{left:426.420000px;}
.xdb_c00176{left:429.000000px;}
.x1f_c00176{left:430.080000px;}
.xfa_c00176{left:433.080000px;}
.xb3_c00176{left:435.420000px;}
.x34_c00176{left:445.500000px;}
.x76_c00176{left:447.000000px;}
.x89_c00176{left:448.500000px;}
.x7e_c00176{left:450.420000px;}
.xbf_c00176{left:453.000000px;}
.x46_c00176{left:454.275000px;}
.x9a_c00176{left:456.000000px;}
.x20_c00176{left:459.420000px;}
.x3e_c00176{left:460.500000px;}
.xc7_c00176{left:462.000000px;}
.x16_c00176{left:463.080000px;}
.xf0_c00176{left:465.420000px;}
.xb4_c00176{left:468.000000px;}
.xcc_c00176{left:469.500000px;}
.x53_c00176{left:471.000000px;}
.x6d_c00176{left:474.420000px;}
.xab_c00176{left:475.500000px;}
.xa_c00176{left:477.000000px;}
.xd4_c00176{left:478.500000px;}
.x10c_c00176{left:481.500000px;}
.x54_c00176{left:483.000000px;}
.x91_c00176{left:487.500000px;}
.x5d_c00176{left:489.000000px;}
.xac_c00176{left:490.500000px;}
.xa4_c00176{left:492.000000px;}
.x2d_c00176{left:493.920000px;}
.xbc_c00176{left:495.000000px;}
.x8a_c00176{left:496.500000px;}
.x7f_c00176{left:499.080000px;}
.xdc_c00176{left:501.000000px;}
.xf1_c00176{left:504.000000px;}
.xe4_c00176{left:507.000000px;}
.x105_c00176{left:508.500000px;}
.x77_c00176{left:511.500000px;}
.x92_c00176{left:512.580000px;}
.x6e_c00176{left:514.500000px;}
.x3f_c00176{left:516.000000px;}
.x17_c00176{left:517.080000px;}
.x21_c00176{left:519.420000px;}
.x5e_c00176{left:521.580000px;}
.x47_c00176{left:523.920000px;}
.xff_c00176{left:525.645000px;}
.x35_c00176{left:528.000000px;}
.x2e_c00176{left:529.080000px;}
.x9b_c00176{left:532.080000px;}
.xe7_c00176{left:535.080000px;}
.xb_c00176{left:537.420000px;}
.xd9_c00176{left:541.920000px;}
.xd5_c00176{left:543.420000px;}
.x93_c00176{left:547.080000px;}
.x18_c00176{left:548.145000px;}
.x40_c00176{left:550.500000px;}
.x5f_c00176{left:553.080000px;}
.x55_c00176{left:555.420000px;}
.xcd_c00176{left:558.000000px;}
.x48_c00176{left:562.500000px;}
.x80_c00176{left:563.580000px;}
.x78_c00176{left:565.500000px;}
.xad_c00176{left:568.500000px;}
.x60_c00176{left:570.000000px;}
.x6f_c00176{left:571.500000px;}
.xc_c00176{left:573.000000px;}
.x100_c00176{left:574.500000px;}
.xbd_c00176{left:579.000000px;}
.xa5_c00176{left:580.920000px;}
.x9c_c00176{left:582.420000px;}
.x81_c00176{left:583.500000px;}
.x109_c00176{left:584.580000px;}
.x19_c00176{left:586.500000px;}
.x41_c00176{left:587.580000px;}
.xae_c00176{left:589.500000px;}
.x36_c00176{left:590.580000px;}
.xdd_c00176{left:592.080000px;}
.x2f_c00176{left:597.420000px;}
.xe8_c00176{left:598.920000px;}
.x61_c00176{left:601.080000px;}
.x56_c00176{left:602.580000px;}
.xb8_c00176{left:604.080000px;}
.x22_c00176{left:605.580000px;}
.xa6_c00176{left:607.500000px;}
.x9d_c00176{left:608.580000px;}
.xce_c00176{left:610.920000px;}
.xde_c00176{left:612.000000px;}
.xaf_c00176{left:616.500000px;}
.x62_c00176{left:618.000000px;}
.xc0_c00176{left:619.500000px;}
.x82_c00176{left:624.000000px;}
.x49_c00176{left:625.500000px;}
.x70_c00176{left:631.500000px;}
.x1a_c00176{left:633.000000px;}
.xd_c00176{left:636.000000px;}
.x30_c00176{left:637.080000px;}
.xe5_c00176{left:639.000000px;}
.x57_c00176{left:640.500000px;}
.x101_c00176{left:642.000000px;}
.x42_c00176{left:643.080000px;}
.x4a_c00176{left:644.355000px;}
.x83_c00176{left:645.420000px;}
.x10d_c00176{left:646.500000px;}
.xdf_c00176{left:648.000000px;}
.x9e_c00176{left:649.920000px;}
.xda_c00176{left:652.500000px;}
.xc1_c00176{left:654.420000px;}
.x79_c00176{left:657.000000px;}
.x63_c00176{left:658.500000px;}
.x94_c00176{left:661.080000px;}
.x69_c00176{left:663.000000px;}
.x1b_c00176{left:664.500000px;}
.xe0_c00176{left:666.000000px;}
.x71_c00176{left:669.000000px;}
.x84_c00176{left:670.500000px;}
.x58_c00176{left:672.000000px;}
.xf2_c00176{left:675.000000px;}
.x4b_c00176{left:676.500000px;}
.x8b_c00176{left:678.000000px;}
.xc2_c00176{left:679.500000px;}
.x37_c00176{left:681.420000px;}
.xb5_c00176{left:683.580000px;}
.x64_c00176{left:685.500000px;}
.xe_c00176{left:687.000000px;}
.x9f_c00176{left:688.080000px;}
.x95_c00176{left:690.000000px;}
.x85_c00176{left:691.500000px;}
.xd6_c00176{left:693.000000px;}
.xfb_c00176{left:694.920000px;}
.x10e_c00176{left:696.420000px;}
.x72_c00176{left:702.000000px;}
.x8c_c00176{left:703.500000px;}
.x2_c00176{left:705.420000px;}
.x43_c00176{left:706.920000px;}
.xa0_c00176{left:708.420000px;}
.xb9_c00176{left:709.500000px;}
.x31_c00176{left:711.000000px;}
.x59_c00176{left:716.580000px;}
@media print{
.v0_c00176{vertical-align:0.000000pt;}
.ls0_c00176{letter-spacing:0.000000pt;}
.ws0_c00176{word-spacing:0.000000pt;}
.fs2_c00176{font-size:3.040000pt;}
.fs0_c00176{font-size:16.640000pt;}
.fs7_c00176{font-size:18.133333pt;}
.fs5_c00176{font-size:22.666667pt;}
.fs1_c00176{font-size:25.706667pt;}
.fs4_c00176{font-size:28.746667pt;}
.fs3_c00176{font-size:31.733333pt;}
.fs6_c00176{font-size:34.773333pt;}
.y0_c00176{bottom:0.000000pt;}
.yce_c00176{bottom:224.933333pt;}
.ycd_c00176{bottom:225.693333pt;}
.yc9_c00176{bottom:241.106667pt;}
.ycb_c00176{bottom:242.640000pt;}
.yc8_c00176{bottom:243.026667pt;}
.ycc_c00176{bottom:243.226667pt;}
.yca_c00176{bottom:243.973333pt;}
.yc7_c00176{bottom:258.440000pt;}
.yc5_c00176{bottom:260.360000pt;}
.yc4_c00176{bottom:260.560000pt;}
.yc6_c00176{bottom:261.306667pt;}
.ybe_c00176{bottom:276.733333pt;}
.yc0_c00176{bottom:277.106667pt;}
.yc2_c00176{bottom:277.306667pt;}
.yc3_c00176{bottom:277.693333pt;}
.yc1_c00176{bottom:278.640000pt;}
.ybf_c00176{bottom:279.026667pt;}
.yb9_c00176{bottom:292.360000pt;}
.ybc_c00176{bottom:293.106667pt;}
.ybb_c00176{bottom:293.693333pt;}
.ybd_c00176{bottom:294.066667pt;}
.yba_c00176{bottom:295.226667pt;}
.yb8_c00176{bottom:296.360000pt;}
.yb5_c00176{bottom:310.826667pt;}
.yb7_c00176{bottom:311.400000pt;}
.yb6_c00176{bottom:311.773333pt;}
.yb3_c00176{bottom:313.693333pt;}
.yb4_c00176{bottom:313.706667pt;}
.yb2_c00176{bottom:330.266667pt;}
.yb1_c00176{bottom:331.026667pt;}
.yaf_c00176{bottom:346.440000pt;}
.yb0_c00176{bottom:347.226667pt;}
.yad_c00176{bottom:347.973333pt;}
.yab_c00176{bottom:348.360000pt;}
.yae_c00176{bottom:349.306667pt;}
.yac_c00176{bottom:349.693333pt;}
.ya6_c00176{bottom:363.773333pt;}
.yaa_c00176{bottom:364.560000pt;}
.ya8_c00176{bottom:364.733333pt;}
.ya7_c00176{bottom:365.306667pt;}
.ya5_c00176{bottom:365.693333pt;}
.ya9_c00176{bottom:365.893333pt;}
.ya2_c00176{bottom:380.360000pt;}
.ya4_c00176{bottom:381.106667pt;}
.ya3_c00176{bottom:381.893333pt;}
.ya0_c00176{bottom:382.440000pt;}
.ya1_c00176{bottom:383.026667pt;}
.y9f_c00176{bottom:384.360000pt;}
.y9d_c00176{bottom:398.440000pt;}
.y9e_c00176{bottom:398.826667pt;}
.y9b_c00176{bottom:399.773333pt;}
.y9a_c00176{bottom:401.693333pt;}
.y9c_c00176{bottom:402.640000pt;}
.y98_c00176{bottom:417.106667pt;}
.y97_c00176{bottom:419.026667pt;}
.y99_c00176{bottom:419.973333pt;}
.y93_c00176{bottom:434.440000pt;}
.y95_c00176{bottom:435.226667pt;}
.y96_c00176{bottom:435.400000pt;}
.y92_c00176{bottom:436.360000pt;}
.y94_c00176{bottom:437.306667pt;}
.y8d_c00176{bottom:450.640000pt;}
.y90_c00176{bottom:451.773333pt;}
.y91_c00176{bottom:452.560000pt;}
.y8f_c00176{bottom:452.733333pt;}
.y8e_c00176{bottom:453.693333pt;}
.y8c_c00176{bottom:468.360000pt;}
.y8a_c00176{bottom:469.106667pt;}
.y86_c00176{bottom:469.493333pt;}
.y89_c00176{bottom:470.066667pt;}
.y87_c00176{bottom:471.026667pt;}
.y8b_c00176{bottom:471.973333pt;}
.y88_c00176{bottom:472.360000pt;}
.y85_c00176{bottom:486.440000pt;}
.y80_c00176{bottom:487.773333pt;}
.y84_c00176{bottom:488.360000pt;}
.y83_c00176{bottom:488.560000pt;}
.y81_c00176{bottom:489.306667pt;}
.y82_c00176{bottom:489.693333pt;}
.y7c_c00176{bottom:505.106667pt;}
.y7f_c00176{bottom:505.693333pt;}
.y7d_c00176{bottom:506.066667pt;}
.y7e_c00176{bottom:506.640000pt;}
.y7b_c00176{bottom:507.026667pt;}
.y79_c00176{bottom:521.306667pt;}
.y7a_c00176{bottom:522.066667pt;}
.y76_c00176{bottom:522.440000pt;}
.y78_c00176{bottom:523.226667pt;}
.y77_c00176{bottom:523.400000pt;}
.y75_c00176{bottom:524.360000pt;}
.y72_c00176{bottom:539.026667pt;}
.y70_c00176{bottom:539.400000pt;}
.y74_c00176{bottom:539.773333pt;}
.y73_c00176{bottom:541.306667pt;}
.y71_c00176{bottom:541.693333pt;}
.y6e_c00176{bottom:559.026667pt;}
.y6f_c00176{bottom:559.226667pt;}
.y6c_c00176{bottom:575.400000pt;}
.y6a_c00176{bottom:575.773333pt;}
.y69_c00176{bottom:576.360000pt;}
.y6b_c00176{bottom:576.560000pt;}
.y6d_c00176{bottom:577.306667pt;}
.y66_c00176{bottom:591.026667pt;}
.y68_c00176{bottom:593.693333pt;}
.y67_c00176{bottom:593.893333pt;}
.y65_c00176{bottom:595.026667pt;}
.y64_c00176{bottom:610.440000pt;}
.y63_c00176{bottom:611.226667pt;}
.y62_c00176{bottom:612.360000pt;}
.y60_c00176{bottom:627.773333pt;}
.y61_c00176{bottom:628.560000pt;}
.y5f_c00176{bottom:629.693333pt;}
.y5e_c00176{bottom:630.640000pt;}
.y5c_c00176{bottom:645.106667pt;}
.y5d_c00176{bottom:645.893333pt;}
.y59_c00176{bottom:646.066667pt;}
.y5b_c00176{bottom:647.026667pt;}
.y5a_c00176{bottom:647.226667pt;}
.y57_c00176{bottom:661.693333pt;}
.y55_c00176{bottom:662.440000pt;}
.y54_c00176{bottom:663.400000pt;}
.y53_c00176{bottom:664.360000pt;}
.y56_c00176{bottom:664.560000pt;}
.y58_c00176{bottom:665.306667pt;}
.y51_c00176{bottom:679.773333pt;}
.y50_c00176{bottom:680.733333pt;}
.y4d_c00176{bottom:681.106667pt;}
.y52_c00176{bottom:681.306667pt;}
.y4e_c00176{bottom:681.893333pt;}
.y4f_c00176{bottom:682.640000pt;}
.y47_c00176{bottom:697.106667pt;}
.y4b_c00176{bottom:697.693333pt;}
.y4c_c00176{bottom:697.893333pt;}
.y4a_c00176{bottom:698.066667pt;}
.y48_c00176{bottom:699.026667pt;}
.y49_c00176{bottom:699.973333pt;}
.y40_c00176{bottom:714.640000pt;}
.y41_c00176{bottom:715.773333pt;}
.y46_c00176{bottom:716.360000pt;}
.y45_c00176{bottom:716.560000pt;}
.y42_c00176{bottom:716.733333pt;}
.y44_c00176{bottom:717.306667pt;}
.y43_c00176{bottom:717.693333pt;}
.y3c_c00176{bottom:733.106667pt;}
.y3d_c00176{bottom:733.893333pt;}
.y3f_c00176{bottom:734.066667pt;}
.y3e_c00176{bottom:735.026667pt;}
.y3a_c00176{bottom:749.693333pt;}
.y36_c00176{bottom:750.440000pt;}
.y3b_c00176{bottom:751.226667pt;}
.y39_c00176{bottom:751.973333pt;}
.y37_c00176{bottom:752.360000pt;}
.y38_c00176{bottom:753.306667pt;}
.y34_c00176{bottom:767.026667pt;}
.y32_c00176{bottom:767.773333pt;}
.y33_c00176{bottom:768.560000pt;}
.y31_c00176{bottom:769.693333pt;}
.y35_c00176{bottom:770.640000pt;}
.y2e_c00176{bottom:784.360000pt;}
.y30_c00176{bottom:784.733333pt;}
.y2d_c00176{bottom:785.106667pt;}
.y2c_c00176{bottom:785.306667pt;}
.y2f_c00176{bottom:785.893333pt;}
.y2b_c00176{bottom:786.066667pt;}
.y2a_c00176{bottom:787.026667pt;}
.y27_c00176{bottom:801.693333pt;}
.y29_c00176{bottom:802.066667pt;}
.y25_c00176{bottom:802.440000pt;}
.y26_c00176{bottom:803.773333pt;}
.y28_c00176{bottom:804.360000pt;}
.y23_c00176{bottom:804.560000pt;}
.y22_c00176{bottom:804.733333pt;}
.y24_c00176{bottom:805.693333pt;}
.y21_c00176{bottom:820.733333pt;}
.y1f_c00176{bottom:821.106667pt;}
.y20_c00176{bottom:823.026667pt;}
.y1e_c00176{bottom:837.106667pt;}
.y1d_c00176{bottom:838.066667pt;}
.y1b_c00176{bottom:839.026667pt;}
.y1a_c00176{bottom:839.226667pt;}
.y1c_c00176{bottom:839.973333pt;}
.y19_c00176{bottom:840.360000pt;}
.y18_c00176{bottom:854.826667pt;}
.y16_c00176{bottom:855.773333pt;}
.y17_c00176{bottom:856.560000pt;}
.y15_c00176{bottom:857.693333pt;}
.y13_c00176{bottom:873.106667pt;}
.y14_c00176{bottom:873.893333pt;}
.y11_c00176{bottom:875.026667pt;}
.y12_c00176{bottom:875.040000pt;}
.ye_c00176{bottom:892.360000pt;}
.yf_c00176{bottom:892.560000pt;}
.y10_c00176{bottom:893.306667pt;}
.yb_c00176{bottom:907.773333pt;}
.yd_c00176{bottom:908.733333pt;}
.yc_c00176{bottom:909.693333pt;}
.ya_c00176{bottom:926.066667pt;}
.y9_c00176{bottom:927.026667pt;}
.y8_c00176{bottom:943.400000pt;}
.y5_c00176{bottom:943.773333pt;}
.y7_c00176{bottom:944.360000pt;}
.y6_c00176{bottom:944.560000pt;}
.y3_c00176{bottom:945.693333pt;}
.y4_c00176{bottom:945.706667pt;}
.y2_c00176{bottom:976.360000pt;}
.y1_c00176{bottom:979.226667pt;}
.h3_c00176{height:3.739141pt;}
.h1_c00176{height:20.466875pt;}
.h8_c00176{height:22.303646pt;}
.h6_c00176{height:27.879557pt;}
.h2_c00176{height:31.618698pt;}
.h5_c00176{height:35.357839pt;}
.h4_c00176{height:39.031380pt;}
.h7_c00176{height:42.770521pt;}
.h0_c00176{height:1186.666667pt;}
.w0_c00176{width:782.666667pt;}
.x0_c00176{left:0.000000pt;}
.xf_c00176{left:134.293333pt;}
.x96_c00176{left:136.373333pt;}
.xf3_c00176{left:137.333333pt;}
.x3_c00176{left:148.960000pt;}
.xec_c00176{left:150.293333pt;}
.xfc_c00176{left:151.240000pt;}
.xe9_c00176{left:153.706667pt;}
.xa7_c00176{left:158.293333pt;}
.xc8_c00176{left:160.000000pt;}
.x10_c00176{left:161.333333pt;}
.xcf_c00176{left:165.333333pt;}
.xc3_c00176{left:166.293333pt;}
.x65_c00176{left:168.960000pt;}
.x8d_c00176{left:170.666667pt;}
.x97_c00176{left:172.960000pt;}
.xba_c00176{left:174.666667pt;}
.x23_c00176{left:176.000000pt;}
.xea_c00176{left:177.706667pt;}
.x11_c00176{left:178.666667pt;}
.xb6_c00176{left:180.960000pt;}
.x38_c00176{left:182.666667pt;}
.xe6_c00176{left:184.000000pt;}
.xd7_c00176{left:186.666667pt;}
.x7a_c00176{left:188.373333pt;}
.xe1_c00176{left:189.706667pt;}
.x5a_c00176{left:191.040000pt;}
.x10a_c00176{left:192.000000pt;}
.x24_c00176{left:193.333333pt;}
.xa8_c00176{left:195.040000pt;}
.x66_c00176{left:196.000000pt;}
.xed_c00176{left:197.706667pt;}
.xd0_c00176{left:200.000000pt;}
.x1c_c00176{left:201.333333pt;}
.x39_c00176{left:202.293333pt;}
.x5b_c00176{left:204.000000pt;}
.x86_c00176{left:207.040000pt;}
.x73_c00176{left:208.000000pt;}
.xc9_c00176{left:209.706667pt;}
.xa1_c00176{left:212.373333pt;}
.xfd_c00176{left:213.333333pt;}
.x25_c00176{left:214.666667pt;}
.x4c_c00176{left:217.333333pt;}
.x44_c00176{left:218.293333pt;}
.x32_c00176{left:220.000000pt;}
.xe2_c00176{left:222.093333pt;}
.x28_c00176{left:224.000000pt;}
.xb0_c00176{left:226.666667pt;}
.x106_c00176{left:229.333333pt;}
.xf4_c00176{left:230.293333pt;}
.x4_c00176{left:232.000000pt;}
.x4d_c00176{left:233.333333pt;}
.xa2_c00176{left:236.000000pt;}
.x12_c00176{left:236.960000pt;}
.x5c_c00176{left:238.293333pt;}
.xeb_c00176{left:240.373333pt;}
.x8e_c00176{left:241.333333pt;}
.x29_c00176{left:243.626667pt;}
.x4e_c00176{left:245.706667pt;}
.xd1_c00176{left:247.040000pt;}
.xd8_c00176{left:249.333333pt;}
.x5_c00176{left:250.666667pt;}
.xa9_c00176{left:252.000000pt;}
.x26_c00176{left:253.333333pt;}
.x1d_c00176{left:254.666667pt;}
.x107_c00176{left:257.333333pt;}
.xfe_c00176{left:258.666667pt;}
.xb1_c00176{left:261.333333pt;}
.xf6_c00176{left:262.666667pt;}
.x3a_c00176{left:264.000000pt;}
.x102_c00176{left:266.666667pt;}
.x4f_c00176{left:268.000000pt;}
.xd2_c00176{left:268.960000pt;}
.x27_c00176{left:269.906667pt;}
.x10b_c00176{left:271.040000pt;}
.x8f_c00176{left:272.000000pt;}
.xc4_c00176{left:275.040000pt;}
.x6_c00176{left:276.000000pt;}
.x13_c00176{left:277.333333pt;}
.x87_c00176{left:280.960000pt;}
.x33_c00176{left:282.293333pt;}
.x74_c00176{left:284.000000pt;}
.x103_c00176{left:289.706667pt;}
.xca_c00176{left:291.040000pt;}
.xf7_c00176{left:292.373333pt;}
.xf9_c00176{left:293.333333pt;}
.x6a_c00176{left:295.626667pt;}
.x98_c00176{left:297.706667pt;}
.x88_c00176{left:299.040000pt;}
.xb2_c00176{left:300.000000pt;}
.x90_c00176{left:304.000000pt;}
.x7b_c00176{left:306.666667pt;}
.xc5_c00176{left:308.373333pt;}
.x2a_c00176{left:309.333333pt;}
.x45_c00176{left:310.666667pt;}
.xee_c00176{left:312.000000pt;}
.x6b_c00176{left:313.333333pt;}
.xcb_c00176{left:315.040000pt;}
.x3b_c00176{left:319.626667pt;}
.x7_c00176{left:321.333333pt;}
.x50_c00176{left:323.040000pt;}
.x1e_c00176{left:324.000000pt;}
.x67_c00176{left:325.333333pt;}
.x2b_c00176{left:326.666667pt;}
.xbe_c00176{left:329.706667pt;}
.xc6_c00176{left:332.000000pt;}
.x14_c00176{left:333.706667pt;}
.xe3_c00176{left:334.666667pt;}
.x3c_c00176{left:336.000000pt;}
.xef_c00176{left:340.000000pt;}
.xf8_c00176{left:340.960000pt;}
.xa3_c00176{left:342.666667pt;}
.xd3_c00176{left:344.373333pt;}
.xb7_c00176{left:348.000000pt;}
.x99_c00176{left:349.333333pt;}
.x51_c00176{left:350.666667pt;}
.x75_c00176{left:352.000000pt;}
.x1_c00176{left:353.333333pt;}
.xaa_c00176{left:354.666667pt;}
.x7c_c00176{left:357.333333pt;}
.x2c_c00176{left:358.666667pt;}
.x3d_c00176{left:360.000000pt;}
.x8_c00176{left:361.333333pt;}
.x108_c00176{left:364.373333pt;}
.x104_c00176{left:365.706667pt;}
.x15_c00176{left:366.666667pt;}
.x6c_c00176{left:368.373333pt;}
.x52_c00176{left:370.666667pt;}
.xbb_c00176{left:372.373333pt;}
.x7d_c00176{left:375.040000pt;}
.xf5_c00176{left:376.000000pt;}
.x9_c00176{left:376.960000pt;}
.x68_c00176{left:379.040000pt;}
.xdb_c00176{left:381.333333pt;}
.x1f_c00176{left:382.293333pt;}
.xfa_c00176{left:384.960000pt;}
.xb3_c00176{left:387.040000pt;}
.x34_c00176{left:396.000000pt;}
.x76_c00176{left:397.333333pt;}
.x89_c00176{left:398.666667pt;}
.x7e_c00176{left:400.373333pt;}
.xbf_c00176{left:402.666667pt;}
.x46_c00176{left:403.800000pt;}
.x9a_c00176{left:405.333333pt;}
.x20_c00176{left:408.373333pt;}
.x3e_c00176{left:409.333333pt;}
.xc7_c00176{left:410.666667pt;}
.x16_c00176{left:411.626667pt;}
.xf0_c00176{left:413.706667pt;}
.xb4_c00176{left:416.000000pt;}
.xcc_c00176{left:417.333333pt;}
.x53_c00176{left:418.666667pt;}
.x6d_c00176{left:421.706667pt;}
.xab_c00176{left:422.666667pt;}
.xa_c00176{left:424.000000pt;}
.xd4_c00176{left:425.333333pt;}
.x10c_c00176{left:428.000000pt;}
.x54_c00176{left:429.333333pt;}
.x91_c00176{left:433.333333pt;}
.x5d_c00176{left:434.666667pt;}
.xac_c00176{left:436.000000pt;}
.xa4_c00176{left:437.333333pt;}
.x2d_c00176{left:439.040000pt;}
.xbc_c00176{left:440.000000pt;}
.x8a_c00176{left:441.333333pt;}
.x7f_c00176{left:443.626667pt;}
.xdc_c00176{left:445.333333pt;}
.xf1_c00176{left:448.000000pt;}
.xe4_c00176{left:450.666667pt;}
.x105_c00176{left:452.000000pt;}
.x77_c00176{left:454.666667pt;}
.x92_c00176{left:455.626667pt;}
.x6e_c00176{left:457.333333pt;}
.x3f_c00176{left:458.666667pt;}
.x17_c00176{left:459.626667pt;}
.x21_c00176{left:461.706667pt;}
.x5e_c00176{left:463.626667pt;}
.x47_c00176{left:465.706667pt;}
.xff_c00176{left:467.240000pt;}
.x35_c00176{left:469.333333pt;}
.x2e_c00176{left:470.293333pt;}
.x9b_c00176{left:472.960000pt;}
.xe7_c00176{left:475.626667pt;}
.xb_c00176{left:477.706667pt;}
.xd9_c00176{left:481.706667pt;}
.xd5_c00176{left:483.040000pt;}
.x93_c00176{left:486.293333pt;}
.x18_c00176{left:487.240000pt;}
.x40_c00176{left:489.333333pt;}
.x5f_c00176{left:491.626667pt;}
.x55_c00176{left:493.706667pt;}
.xcd_c00176{left:496.000000pt;}
.x48_c00176{left:500.000000pt;}
.x80_c00176{left:500.960000pt;}
.x78_c00176{left:502.666667pt;}
.xad_c00176{left:505.333333pt;}
.x60_c00176{left:506.666667pt;}
.x6f_c00176{left:508.000000pt;}
.xc_c00176{left:509.333333pt;}
.x100_c00176{left:510.666667pt;}
.xbd_c00176{left:514.666667pt;}
.xa5_c00176{left:516.373333pt;}
.x9c_c00176{left:517.706667pt;}
.x81_c00176{left:518.666667pt;}
.x109_c00176{left:519.626667pt;}
.x19_c00176{left:521.333333pt;}
.x41_c00176{left:522.293333pt;}
.xae_c00176{left:524.000000pt;}
.x36_c00176{left:524.960000pt;}
.xdd_c00176{left:526.293333pt;}
.x2f_c00176{left:531.040000pt;}
.xe8_c00176{left:532.373333pt;}
.x61_c00176{left:534.293333pt;}
.x56_c00176{left:535.626667pt;}
.xb8_c00176{left:536.960000pt;}
.x22_c00176{left:538.293333pt;}
.xa6_c00176{left:540.000000pt;}
.x9d_c00176{left:540.960000pt;}
.xce_c00176{left:543.040000pt;}
.xde_c00176{left:544.000000pt;}
.xaf_c00176{left:548.000000pt;}
.x62_c00176{left:549.333333pt;}
.xc0_c00176{left:550.666667pt;}
.x82_c00176{left:554.666667pt;}
.x49_c00176{left:556.000000pt;}
.x70_c00176{left:561.333333pt;}
.x1a_c00176{left:562.666667pt;}
.xd_c00176{left:565.333333pt;}
.x30_c00176{left:566.293333pt;}
.xe5_c00176{left:568.000000pt;}
.x57_c00176{left:569.333333pt;}
.x101_c00176{left:570.666667pt;}
.x42_c00176{left:571.626667pt;}
.x4a_c00176{left:572.760000pt;}
.x83_c00176{left:573.706667pt;}
.x10d_c00176{left:574.666667pt;}
.xdf_c00176{left:576.000000pt;}
.x9e_c00176{left:577.706667pt;}
.xda_c00176{left:580.000000pt;}
.xc1_c00176{left:581.706667pt;}
.x79_c00176{left:584.000000pt;}
.x63_c00176{left:585.333333pt;}
.x94_c00176{left:587.626667pt;}
.x69_c00176{left:589.333333pt;}
.x1b_c00176{left:590.666667pt;}
.xe0_c00176{left:592.000000pt;}
.x71_c00176{left:594.666667pt;}
.x84_c00176{left:596.000000pt;}
.x58_c00176{left:597.333333pt;}
.xf2_c00176{left:600.000000pt;}
.x4b_c00176{left:601.333333pt;}
.x8b_c00176{left:602.666667pt;}
.xc2_c00176{left:604.000000pt;}
.x37_c00176{left:605.706667pt;}
.xb5_c00176{left:607.626667pt;}
.x64_c00176{left:609.333333pt;}
.xe_c00176{left:610.666667pt;}
.x9f_c00176{left:611.626667pt;}
.x95_c00176{left:613.333333pt;}
.x85_c00176{left:614.666667pt;}
.xd6_c00176{left:616.000000pt;}
.xfb_c00176{left:617.706667pt;}
.x10e_c00176{left:619.040000pt;}
.x72_c00176{left:624.000000pt;}
.x8c_c00176{left:625.333333pt;}
.x2_c00176{left:627.040000pt;}
.x43_c00176{left:628.373333pt;}
.xa0_c00176{left:629.706667pt;}
.xb9_c00176{left:630.666667pt;}
.x31_c00176{left:632.000000pt;}
.x59_c00176{left:636.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_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_3ebef5bccb9275a90ecc976d.woff2')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:1.688965;font-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_c00177{transform:matrix(0.305066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305066,0.000000,0.000000,0.250000,0,0);}
.m3_c00177{transform:matrix(0.357745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357745,0.000000,0.000000,0.250000,0,0);}
.m51_c00177{transform:matrix(0.366948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366948,0.000000,0.000000,0.250000,0,0);}
.m0_c00177{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m30_c00177{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m4_c00177{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m59_c00177{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m86_c00177{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00177{transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);}
.m5c_c00177{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m1a_c00177{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m44_c00177{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m18_c00177{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m65_c00177{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.m66_c00177{transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);}
.m34_c00177{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m42_c00177{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m8_c00177{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m4f_c00177{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m1c_c00177{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m29_c00177{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m4d_c00177{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m68_c00177{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m12_c00177{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m3d_c00177{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m5_c00177{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m6a_c00177{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m9_c00177{transform:matrix(0.434816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434816,0.000000,0.000000,0.250000,0,0);}
.m3e_c00177{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m36_c00177{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m71_c00177{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m84_c00177{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_c00177{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m33_c00177{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.mf_c00177{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m46_c00177{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m41_c00177{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m69_c00177{transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);}
.m70_c00177{transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);}
.m3c_c00177{transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);}
.m2f_c00177{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m3b_c00177{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m45_c00177{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m6d_c00177{transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);}
.m74_c00177{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.ma4_c00177{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.m80_c00177{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m9d_c00177{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.m90_c00177{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.m93_c00177{transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);}
.m47_c00177{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m96_c00177{transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);}
.m11_c00177{transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);}
.m8f_c00177{transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);}
.m19_c00177{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.m2a_c00177{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m37_c00177{transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);}
.m7e_c00177{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m32_c00177{transform:matrix(0.487059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487059,0.000000,0.000000,0.250000,0,0);}
.m62_c00177{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m60_c00177{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_c00177{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m24_c00177{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m58_c00177{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m39_c00177{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m3a_c00177{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m79_c00177{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_c00177{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m14_c00177{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m25_c00177{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m5b_c00177{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.md_c00177{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.mb_c00177{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m8d_c00177{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.m7_c00177{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m8b_c00177{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m67_c00177{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.m4b_c00177{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m5e_c00177{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m1d_c00177{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m28_c00177{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m31_c00177{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m48_c00177{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m9f_c00177{transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);}
.m10_c00177{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m35_c00177{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m2_c00177{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m8e_c00177{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m55_c00177{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m4e_c00177{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m1e_c00177{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m50_c00177{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m17_c00177{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m56_c00177{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m38_c00177{transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);}
.m21_c00177{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m76_c00177{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m16_c00177{transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);}
.m40_c00177{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m9b_c00177{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m4c_c00177{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m54_c00177{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);}
.ma_c00177{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m23_c00177{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m88_c00177{transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);}
.m83_c00177{transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);}
.m9a_c00177{transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);}
.m2c_c00177{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);}
.ma6_c00177{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.m53_c00177{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m63_c00177{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.me_c00177{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m2e_c00177{transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);}
.m4a_c00177{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.m95_c00177{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.m27_c00177{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m1_c00177{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m52_c00177{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m6c_c00177{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m6b_c00177{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m22_c00177{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m75_c00177{transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);}
.m57_c00177{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m94_c00177{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m2d_c00177{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_c00177{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.ma5_c00177{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.m1f_c00177{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m7a_c00177{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m6e_c00177{transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);}
.m7f_c00177{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m6_c00177{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m64_c00177{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.ma2_c00177{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.m7c_c00177{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m9c_c00177{transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);}
.ma7_c00177{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.m72_c00177{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.ma3_c00177{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m5f_c00177{transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);}
.m8a_c00177{transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);}
.m78_c00177{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.ma0_c00177{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m5d_c00177{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m7d_c00177{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m5a_c00177{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);}
.m8c_c00177{transform:matrix(0.713656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713656,0.000000,0.000000,0.250000,0,0);}
.m98_c00177{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.m81_c00177{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m15_c00177{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m9e_c00177{transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);}
.m7b_c00177{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.m97_c00177{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.m77_c00177{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m1b_c00177{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m91_c00177{transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);}
.m49_c00177{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m26_c00177{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m87_c00177{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.ma1_c00177{transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);}
.m99_c00177{transform:matrix(0.829545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.829545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.829545,0.000000,0.000000,0.250000,0,0);}
.m89_c00177{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m13_c00177{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m92_c00177{transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);}
.m61_c00177{transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);}
.m82_c00177{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m43_c00177{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m3f_c00177{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00177{vertical-align:-6.000000px;}
.v0_c00177{vertical-align:0.000000px;}
.ls1_c00177{letter-spacing:0.000000px;}
.ls0_c00177{letter-spacing:44.811895px;}
.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;}
}
.ws15_c00177{word-spacing:0.000000px;}
.ws6_c00177{word-spacing:13.611988px;}
.ws11_c00177{word-spacing:15.107856px;}
.wsd_c00177{word-spacing:17.262919px;}
.ws12_c00177{word-spacing:18.138913px;}
.ws3_c00177{word-spacing:18.300751px;}
.ws2_c00177{word-spacing:20.322608px;}
.ws7_c00177{word-spacing:24.638400px;}
.ws10_c00177{word-spacing:30.234255px;}
.ws13_c00177{word-spacing:30.607622px;}
.ws8_c00177{word-spacing:31.838295px;}
.ws14_c00177{word-spacing:33.422660px;}
.wsf_c00177{word-spacing:33.467416px;}
.ws4_c00177{word-spacing:36.857815px;}
.wsa_c00177{word-spacing:38.324009px;}
.wse_c00177{word-spacing:38.705522px;}
.wsc_c00177{word-spacing:40.994598px;}
.ws1_c00177{word-spacing:42.893943px;}
.ws9_c00177{word-spacing:43.665186px;}
.ws0_c00177{word-spacing:47.719225px;}
.wsb_c00177{word-spacing:49.006362px;}
.ws5_c00177{word-spacing:57.204655px;}
._5_c00177{width:27.372062px;}
._6_c00177{width:31.721093px;}
._3_c00177{width:46.278089px;}
._0_c00177{width:47.468370px;}
._4_c00177{width:48.948678px;}
._1_c00177{width:54.990395px;}
._2_c00177{width:56.960442px;}
.fc0_c00177{color:transparent;}
.fs7_c00177{font-size:3.420000px;}
.fs9_c00177{font-size:11.880000px;}
.fs8_c00177{font-size:13.620000px;}
.fs5_c00177{font-size:18.720000px;}
.fs1_c00177{font-size:20.400000px;}
.fs4_c00177{font-size:25.500000px;}
.fs2_c00177{font-size:28.920000px;}
.fs6_c00177{font-size:32.340000px;}
.fs0_c00177{font-size:35.700000px;}
.fs3_c00177{font-size:39.120000px;}
.y0_c00177{bottom:0.000000px;}
.y33_c00177{bottom:250.680000px;}
.y32_c00177{bottom:251.745000px;}
.y30_c00177{bottom:253.905000px;}
.y31_c00177{bottom:253.920000px;}
.y2f_c00177{bottom:271.245000px;}
.y2c_c00177{bottom:273.405000px;}
.y2e_c00177{bottom:273.420000px;}
.y2d_c00177{bottom:273.630000px;}
.y2b_c00177{bottom:289.905000px;}
.y28_c00177{bottom:290.745000px;}
.y2a_c00177{bottom:291.825000px;}
.y29_c00177{bottom:294.420000px;}
.y24_c00177{bottom:310.245000px;}
.y25_c00177{bottom:311.745000px;}
.y27_c00177{bottom:313.905000px;}
.y26_c00177{bottom:313.920000px;}
.y23_c00177{bottom:336.405000px;}
.y22_c00177{bottom:351.825000px;}
.y21_c00177{bottom:352.905000px;}
.y20_c00177{bottom:353.970000px;}
.y1f_c00177{bottom:376.245000px;}
.y1e_c00177{bottom:377.325000px;}
.y1d_c00177{bottom:378.405000px;}
.y1c_c00177{bottom:379.905000px;}
.y1a_c00177{bottom:413.745000px;}
.y1b_c00177{bottom:416.970000px;}
.y19_c00177{bottom:434.745000px;}
.y15_c00177{bottom:435.405000px;}
.y18_c00177{bottom:435.630000px;}
.y16_c00177{bottom:436.470000px;}
.y17_c00177{bottom:436.905000px;}
.y14_c00177{bottom:451.905000px;}
.y11_c00177{bottom:453.405000px;}
.y12_c00177{bottom:454.245000px;}
.y13_c00177{bottom:455.130000px;}
.yf_c00177{bottom:456.405000px;}
.y10_c00177{bottom:457.470000px;}
.yc_c00177{bottom:473.745000px;}
.yb_c00177{bottom:475.245000px;}
.y9_c00177{bottom:475.470000px;}
.ya_c00177{bottom:475.905000px;}
.ye_c00177{bottom:476.130000px;}
.yd_c00177{bottom:476.970000px;}
.y5_c00177{bottom:493.245000px;}
.y4_c00177{bottom:493.680000px;}
.y7_c00177{bottom:494.745000px;}
.y8_c00177{bottom:495.405000px;}
.y6_c00177{bottom:496.470000px;}
.y3_c00177{bottom:496.905000px;}
.yeb_c00177{bottom:528.195000px;}
.ye9_c00177{bottom:528.630000px;}
.yea_c00177{bottom:529.695000px;}
.ye7_c00177{bottom:530.130000px;}
.ye8_c00177{bottom:531.195000px;}
.ye6_c00177{bottom:540.630000px;}
.ye4_c00177{bottom:541.695000px;}
.ye5_c00177{bottom:542.130000px;}
.ye2_c00177{bottom:542.775000px;}
.ye1_c00177{bottom:543.195000px;}
.ye0_c00177{bottom:544.695000px;}
.ye3_c00177{bottom:544.920000px;}
.ydf_c00177{bottom:554.130000px;}
.yde_c00177{bottom:555.630000px;}
.yda_c00177{bottom:556.695000px;}
.ydc_c00177{bottom:557.775000px;}
.ydb_c00177{bottom:558.195000px;}
.ydd_c00177{bottom:558.420000px;}
.yd9_c00177{bottom:568.695000px;}
.yd8_c00177{bottom:569.130000px;}
.yd7_c00177{bottom:570.195000px;}
.yd6_c00177{bottom:570.630000px;}
.yd5_c00177{bottom:571.275000px;}
.yd4_c00177{bottom:573.195000px;}
.yd3_c00177{bottom:582.195000px;}
.yd1_c00177{bottom:582.630000px;}
.yd2_c00177{bottom:583.695000px;}
.ycf_c00177{bottom:584.775000px;}
.yd0_c00177{bottom:585.195000px;}
.yce_c00177{bottom:586.695000px;}
.ycd_c00177{bottom:597.195000px;}
.ycc_c00177{bottom:597.630000px;}
.ycb_c00177{bottom:598.695000px;}
.yca_c00177{bottom:599.130000px;}
.yc8_c00177{bottom:609.630000px;}
.yc7_c00177{bottom:610.695000px;}
.yc9_c00177{bottom:610.920000px;}
.yc6_c00177{bottom:612.195000px;}
.yc3_c00177{bottom:612.630000px;}
.yc4_c00177{bottom:613.695000px;}
.yc5_c00177{bottom:613.920000px;}
.yc2_c00177{bottom:624.420000px;}
.yc1_c00177{bottom:625.695000px;}
.ybf_c00177{bottom:626.775000px;}
.ybe_c00177{bottom:627.195000px;}
.yc0_c00177{bottom:627.420000px;}
.ybd_c00177{bottom:640.695000px;}
.ybc_c00177{bottom:641.130000px;}
.yb9_c00177{bottom:651.630000px;}
.yba_c00177{bottom:652.695000px;}
.ybb_c00177{bottom:652.920000px;}
.yb8_c00177{bottom:654.195000px;}
.yb6_c00177{bottom:655.695000px;}
.yb7_c00177{bottom:655.920000px;}
.yb4_c00177{bottom:665.130000px;}
.yb3_c00177{bottom:666.195000px;}
.yb5_c00177{bottom:666.420000px;}
.yb2_c00177{bottom:667.695000px;}
.yaf_c00177{bottom:668.130000px;}
.yb0_c00177{bottom:669.195000px;}
.yb1_c00177{bottom:669.420000px;}
.yad_c00177{bottom:678.630000px;}
.yac_c00177{bottom:679.695000px;}
.yae_c00177{bottom:679.920000px;}
.yab_c00177{bottom:680.130000px;}
.yaa_c00177{bottom:681.195000px;}
.ya8_c00177{bottom:681.630000px;}
.ya9_c00177{bottom:682.920000px;}
.ya6_c00177{bottom:693.630000px;}
.ya5_c00177{bottom:694.695000px;}
.ya7_c00177{bottom:694.920000px;}
.ya3_c00177{bottom:695.130000px;}
.ya2_c00177{bottom:696.195000px;}
.ya4_c00177{bottom:696.420000px;}
.ya0_c00177{bottom:707.130000px;}
.y9f_c00177{bottom:708.195000px;}
.ya1_c00177{bottom:708.420000px;}
.y9d_c00177{bottom:709.695000px;}
.y9e_c00177{bottom:709.920000px;}
.y9b_c00177{bottom:710.130000px;}
.y9c_c00177{bottom:710.775000px;}
.y99_c00177{bottom:721.695000px;}
.y9a_c00177{bottom:721.920000px;}
.y98_c00177{bottom:722.130000px;}
.y97_c00177{bottom:723.195000px;}
.y95_c00177{bottom:723.630000px;}
.y96_c00177{bottom:724.920000px;}
.y93_c00177{bottom:735.195000px;}
.y94_c00177{bottom:735.420000px;}
.y8f_c00177{bottom:735.630000px;}
.y92_c00177{bottom:736.695000px;}
.y90_c00177{bottom:737.130000px;}
.y91_c00177{bottom:738.420000px;}
.y8e_c00177{bottom:751.695000px;}
.y8c_c00177{bottom:762.195000px;}
.y8b_c00177{bottom:762.630000px;}
.y8a_c00177{bottom:763.695000px;}
.y8d_c00177{bottom:763.920000px;}
.y89_c00177{bottom:765.420000px;}
.y88_c00177{bottom:766.695000px;}
.y86_c00177{bottom:777.195000px;}
.y87_c00177{bottom:777.420000px;}
.y85_c00177{bottom:778.920000px;}
.y84_c00177{bottom:780.195000px;}
.y82_c00177{bottom:789.630000px;}
.y81_c00177{bottom:790.695000px;}
.y83_c00177{bottom:790.920000px;}
.y80_c00177{bottom:792.195000px;}
.y7f_c00177{bottom:792.420000px;}
.y7e_c00177{bottom:792.630000px;}
.y7d_c00177{bottom:804.420000px;}
.y7c_c00177{bottom:805.695000px;}
.y7b_c00177{bottom:806.130000px;}
.y7a_c00177{bottom:807.195000px;}
.y79_c00177{bottom:817.695000px;}
.y78_c00177{bottom:819.195000px;}
.y77_c00177{bottom:819.630000px;}
.y76_c00177{bottom:820.695000px;}
.y75_c00177{bottom:831.195000px;}
.y74_c00177{bottom:831.630000px;}
.y73_c00177{bottom:832.695000px;}
.y72_c00177{bottom:833.130000px;}
.y71_c00177{bottom:833.550000px;}
.y70_c00177{bottom:834.630000px;}
.y6e_c00177{bottom:846.195000px;}
.y6f_c00177{bottom:846.420000px;}
.y6d_c00177{bottom:846.630000px;}
.y6c_c00177{bottom:847.695000px;}
.y6b_c00177{bottom:858.195000px;}
.y6a_c00177{bottom:859.695000px;}
.y69_c00177{bottom:860.130000px;}
.y68_c00177{bottom:861.195000px;}
.y67_c00177{bottom:873.195000px;}
.y65_c00177{bottom:873.630000px;}
.y64_c00177{bottom:874.050000px;}
.y66_c00177{bottom:874.695000px;}
.y63_c00177{bottom:876.195000px;}
.y61_c00177{bottom:888.195000px;}
.y62_c00177{bottom:888.420000px;}
.y60_c00177{bottom:888.630000px;}
.y5f_c00177{bottom:889.695000px;}
.y5e_c00177{bottom:900.195000px;}
.y5d_c00177{bottom:901.695000px;}
.y5c_c00177{bottom:902.130000px;}
.y5b_c00177{bottom:903.195000px;}
.y5a_c00177{bottom:913.695000px;}
.y59_c00177{bottom:915.195000px;}
.y58_c00177{bottom:915.630000px;}
.y57_c00177{bottom:916.695000px;}
.y56_c00177{bottom:927.630000px;}
.y55_c00177{bottom:928.695000px;}
.y54_c00177{bottom:930.195000px;}
.y53_c00177{bottom:930.630000px;}
.y52_c00177{bottom:931.695000px;}
.y51_c00177{bottom:942.195000px;}
.y50_c00177{bottom:942.630000px;}
.y4f_c00177{bottom:943.695000px;}
.y4e_c00177{bottom:945.195000px;}
.y4d_c00177{bottom:960.630000px;}
.y4c_c00177{bottom:961.695000px;}
.y4b_c00177{bottom:963.195000px;}
.y4a_c00177{bottom:972.630000px;}
.y49_c00177{bottom:974.130000px;}
.y48_c00177{bottom:975.195000px;}
.y46_c00177{bottom:975.630000px;}
.y47_c00177{bottom:976.695000px;}
.y45_c00177{bottom:988.695000px;}
.y44_c00177{bottom:990.195000px;}
.y43_c00177{bottom:991.695000px;}
.y42_c00177{bottom:1007.325000px;}
.y41_c00177{bottom:1007.970000px;}
.y40_c00177{bottom:1009.050000px;}
.y3d_c00177{bottom:1019.970000px;}
.y3b_c00177{bottom:1020.825000px;}
.y3f_c00177{bottom:1021.470000px;}
.y3a_c00177{bottom:1022.970000px;}
.y3e_c00177{bottom:1023.195000px;}
.y3c_c00177{bottom:1024.050000px;}
.y39_c00177{bottom:1035.825000px;}
.y38_c00177{bottom:1036.905000px;}
.y36_c00177{bottom:1037.970000px;}
.y37_c00177{bottom:1039.050000px;}
.y35_c00177{bottom:1061.130000px;}
.y34_c00177{bottom:1063.050000px;}
.y2_c00177{bottom:1097.550000px;}
.y1_c00177{bottom:1097.745000px;}
.h8_c00177{height:4.206533px;}
.ha_c00177{height:14.612168px;}
.h9_c00177{height:16.752334px;}
.h6_c00177{height:23.025234px;}
.h2_c00177{height:25.091602px;}
.h5_c00177{height:31.364502px;}
.h3_c00177{height:35.571035px;}
.h7_c00177{height:39.777568px;}
.h1_c00177{height:43.910303px;}
.h4_c00177{height:48.116836px;}
.h0_c00177{height:1335.000000px;}
.w0_c00177{width:880.500000px;}
.x0_c00177{left:0.000000px;}
.x1d_c00177{left:151.500000px;}
.xe_c00177{left:153.000000px;}
.x1_c00177{left:155.775000px;}
.x3a_c00177{left:166.500000px;}
.x46_c00177{left:168.000000px;}
.x3_c00177{left:169.500000px;}
.x1e_c00177{left:174.000000px;}
.xf_c00177{left:175.500000px;}
.x2b_c00177{left:178.500000px;}
.x42_c00177{left:188.580000px;}
.x2c_c00177{left:208.920000px;}
.x10_c00177{left:211.920000px;}
.x3b_c00177{left:222.420000px;}
.x82_c00177{left:223.500000px;}
.x6a_c00177{left:225.000000px;}
.x1f_c00177{left:232.080000px;}
.x9a_c00177{left:234.000000px;}
.x95_c00177{left:235.500000px;}
.x8c_c00177{left:237.420000px;}
.x11_c00177{left:238.920000px;}
.x86_c00177{left:246.000000px;}
.x6d_c00177{left:247.080000px;}
.x4c_c00177{left:249.000000px;}
.x83_c00177{left:250.920000px;}
.x20_c00177{left:252.000000px;}
.x7f_c00177{left:255.420000px;}
.x4_c00177{left:259.080000px;}
.x51_c00177{left:261.000000px;}
.x96_c00177{left:262.080000px;}
.xa8_c00177{left:265.500000px;}
.x43_c00177{left:267.000000px;}
.x97_c00177{left:271.080000px;}
.x3c_c00177{left:273.645000px;}
.x8d_c00177{left:277.080000px;}
.x21_c00177{left:279.420000px;}
.x47_c00177{left:280.500000px;}
.x52_c00177{left:282.000000px;}
.x93_c00177{left:285.000000px;}
.x44_c00177{left:288.000000px;}
.x9c_c00177{left:289.920000px;}
.x12_c00177{left:291.000000px;}
.x78_c00177{left:292.500000px;}
.xa0_c00177{left:294.420000px;}
.x2d_c00177{left:295.500000px;}
.x4d_c00177{left:300.000000px;}
.x5b_c00177{left:307.500000px;}
.x81_c00177{left:308.580000px;}
.x7a_c00177{left:310.080000px;}
.x13_c00177{left:312.000000px;}
.x5_c00177{left:313.500000px;}
.xa7_c00177{left:319.500000px;}
.xa4_c00177{left:321.000000px;}
.x4e_c00177{left:322.080000px;}
.x36_c00177{left:324.000000px;}
.x94_c00177{left:327.420000px;}
.xa5_c00177{left:328.920000px;}
.xa1_c00177{left:330.420000px;}
.x61_c00177{left:334.500000px;}
.x2e_c00177{left:339.000000px;}
.x5c_c00177{left:340.500000px;}
.x22_c00177{left:343.500000px;}
.x48_c00177{left:344.775000px;}
.x6_c00177{left:348.000000px;}
.x4f_c00177{left:349.080000px;}
.x23_c00177{left:355.500000px;}
.x53_c00177{left:358.080000px;}
.x3d_c00177{left:360.000000px;}
.x68_c00177{left:361.500000px;}
.x62_c00177{left:367.500000px;}
.x14_c00177{left:373.920000px;}
.x45_c00177{left:383.580000px;}
.x49_c00177{left:385.500000px;}
.x6e_c00177{left:388.500000px;}
.x80_c00177{left:390.000000px;}
.x6b_c00177{left:391.500000px;}
.x9d_c00177{left:393.000000px;}
.x85_c00177{left:394.500000px;}
.x7d_c00177{left:396.000000px;}
.x99_c00177{left:397.500000px;}
.x37_c00177{left:399.000000px;}
.x2_c00177{left:402.000000px;}
.x7_c00177{left:403.500000px;}
.x54_c00177{left:406.080000px;}
.x2f_c00177{left:408.000000px;}
.x4a_c00177{left:412.500000px;}
.x59_c00177{left:414.000000px;}
.x69_c00177{left:416.355000px;}
.x50_c00177{left:419.145000px;}
.x8_c00177{left:423.420000px;}
.xa9_c00177{left:427.500000px;}
.x8e_c00177{left:430.500000px;}
.x15_c00177{left:432.000000px;}
.x63_c00177{left:433.500000px;}
.x87_c00177{left:435.000000px;}
.x30_c00177{left:436.500000px;}
.x24_c00177{left:439.080000px;}
.x71_c00177{left:441.000000px;}
.x16_c00177{left:442.500000px;}
.x5d_c00177{left:448.080000px;}
.x9_c00177{left:450.000000px;}
.x55_c00177{left:455.580000px;}
.x25_c00177{left:457.500000px;}
.x5a_c00177{left:459.000000px;}
.x3e_c00177{left:460.080000px;}
.x6f_c00177{left:465.000000px;}
.x8f_c00177{left:466.500000px;}
.x7c_c00177{left:468.000000px;}
.x9b_c00177{left:469.500000px;}
.x98_c00177{left:471.000000px;}
.x38_c00177{left:472.080000px;}
.x6c_c00177{left:474.000000px;}
.x4b_c00177{left:475.275000px;}
.x17_c00177{left:480.000000px;}
.x5e_c00177{left:483.000000px;}
.x26_c00177{left:484.080000px;}
.x56_c00177{left:486.000000px;}
.x18_c00177{left:500.580000px;}
.x92_c00177{left:502.920000px;}
.x75_c00177{left:504.000000px;}
.x9e_c00177{left:505.500000px;}
.x84_c00177{left:507.000000px;}
.x31_c00177{left:508.500000px;}
.x64_c00177{left:511.080000px;}
.x72_c00177{left:513.420000px;}
.xa_c00177{left:516.000000px;}
.x3f_c00177{left:525.000000px;}
.x57_c00177{left:528.000000px;}
.x39_c00177{left:529.275000px;}
.x32_c00177{left:532.920000px;}
.x65_c00177{left:535.920000px;}
.x90_c00177{left:538.500000px;}
.x76_c00177{left:540.000000px;}
.xa2_c00177{left:541.500000px;}
.x88_c00177{left:543.000000px;}
.x5f_c00177{left:547.920000px;}
.x73_c00177{left:549.000000px;}
.x27_c00177{left:553.500000px;}
.x60_c00177{left:564.000000px;}
.x33_c00177{left:567.000000px;}
.x19_c00177{left:573.000000px;}
.xb_c00177{left:574.080000px;}
.x79_c00177{left:576.000000px;}
.x7b_c00177{left:577.500000px;}
.x89_c00177{left:579.000000px;}
.x66_c00177{left:588.000000px;}
.x58_c00177{left:589.080000px;}
.xc_c00177{left:592.500000px;}
.x70_c00177{left:607.500000px;}
.x91_c00177{left:610.500000px;}
.x67_c00177{left:612.420000px;}
.xa6_c00177{left:613.500000px;}
.x8a_c00177{left:615.000000px;}
.x28_c00177{left:616.500000px;}
.x40_c00177{left:618.000000px;}
.x74_c00177{left:621.000000px;}
.x1a_c00177{left:634.080000px;}
.x77_c00177{left:648.000000px;}
.xa3_c00177{left:649.500000px;}
.x9f_c00177{left:651.000000px;}
.x1b_c00177{left:652.920000px;}
.xd_c00177{left:654.420000px;}
.x8b_c00177{left:655.500000px;}
.x7e_c00177{left:657.000000px;}
.x34_c00177{left:666.000000px;}
.x1c_c00177{left:678.420000px;}
.x29_c00177{left:679.920000px;}
.x41_c00177{left:689.580000px;}
.x2a_c00177{left:714.000000px;}
.x35_c00177{left:720.000000px;}
@media print{
.v1_c00177{vertical-align:-5.333333pt;}
.v0_c00177{vertical-align:0.000000pt;}
.ls1_c00177{letter-spacing:0.000000pt;}
.ls0_c00177{letter-spacing:39.832796pt;}
.ws15_c00177{word-spacing:0.000000pt;}
.ws6_c00177{word-spacing:12.099545pt;}
.ws11_c00177{word-spacing:13.429205pt;}
.wsd_c00177{word-spacing:15.344817pt;}
.ws12_c00177{word-spacing:16.123479pt;}
.ws3_c00177{word-spacing:16.267335pt;}
.ws2_c00177{word-spacing:18.064540pt;}
.ws7_c00177{word-spacing:21.900800pt;}
.ws10_c00177{word-spacing:26.874893pt;}
.ws13_c00177{word-spacing:27.206775pt;}
.ws8_c00177{word-spacing:28.300707pt;}
.ws14_c00177{word-spacing:29.709031pt;}
.wsf_c00177{word-spacing:29.748814pt;}
.ws4_c00177{word-spacing:32.762503pt;}
.wsa_c00177{word-spacing:34.065786pt;}
.wse_c00177{word-spacing:34.404908pt;}
.wsc_c00177{word-spacing:36.439642pt;}
.ws1_c00177{word-spacing:38.127949pt;}
.ws9_c00177{word-spacing:38.813499pt;}
.ws0_c00177{word-spacing:42.417089pt;}
.wsb_c00177{word-spacing:43.561211pt;}
.ws5_c00177{word-spacing:50.848582pt;}
._5_c00177{width:24.330722pt;}
._6_c00177{width:28.196527pt;}
._3_c00177{width:41.136079pt;}
._0_c00177{width:42.194107pt;}
._4_c00177{width:43.509936pt;}
._1_c00177{width:48.880351pt;}
._2_c00177{width:50.631504pt;}
.fs7_c00177{font-size:3.040000pt;}
.fs9_c00177{font-size:10.560000pt;}
.fs8_c00177{font-size:12.106667pt;}
.fs5_c00177{font-size:16.640000pt;}
.fs1_c00177{font-size:18.133333pt;}
.fs4_c00177{font-size:22.666667pt;}
.fs2_c00177{font-size:25.706667pt;}
.fs6_c00177{font-size:28.746667pt;}
.fs0_c00177{font-size:31.733333pt;}
.fs3_c00177{font-size:34.773333pt;}
.y0_c00177{bottom:0.000000pt;}
.y33_c00177{bottom:222.826667pt;}
.y32_c00177{bottom:223.773333pt;}
.y30_c00177{bottom:225.693333pt;}
.y31_c00177{bottom:225.706667pt;}
.y2f_c00177{bottom:241.106667pt;}
.y2c_c00177{bottom:243.026667pt;}
.y2e_c00177{bottom:243.040000pt;}
.y2d_c00177{bottom:243.226667pt;}
.y2b_c00177{bottom:257.693333pt;}
.y28_c00177{bottom:258.440000pt;}
.y2a_c00177{bottom:259.400000pt;}
.y29_c00177{bottom:261.706667pt;}
.y24_c00177{bottom:275.773333pt;}
.y25_c00177{bottom:277.106667pt;}
.y27_c00177{bottom:279.026667pt;}
.y26_c00177{bottom:279.040000pt;}
.y23_c00177{bottom:299.026667pt;}
.y22_c00177{bottom:312.733333pt;}
.y21_c00177{bottom:313.693333pt;}
.y20_c00177{bottom:314.640000pt;}
.y1f_c00177{bottom:334.440000pt;}
.y1e_c00177{bottom:335.400000pt;}
.y1d_c00177{bottom:336.360000pt;}
.y1c_c00177{bottom:337.693333pt;}
.y1a_c00177{bottom:367.773333pt;}
.y1b_c00177{bottom:370.640000pt;}
.y19_c00177{bottom:386.440000pt;}
.y15_c00177{bottom:387.026667pt;}
.y18_c00177{bottom:387.226667pt;}
.y16_c00177{bottom:387.973333pt;}
.y17_c00177{bottom:388.360000pt;}
.y14_c00177{bottom:401.693333pt;}
.y11_c00177{bottom:403.026667pt;}
.y12_c00177{bottom:403.773333pt;}
.y13_c00177{bottom:404.560000pt;}
.yf_c00177{bottom:405.693333pt;}
.y10_c00177{bottom:406.640000pt;}
.yc_c00177{bottom:421.106667pt;}
.yb_c00177{bottom:422.440000pt;}
.y9_c00177{bottom:422.640000pt;}
.ya_c00177{bottom:423.026667pt;}
.ye_c00177{bottom:423.226667pt;}
.yd_c00177{bottom:423.973333pt;}
.y5_c00177{bottom:438.440000pt;}
.y4_c00177{bottom:438.826667pt;}
.y7_c00177{bottom:439.773333pt;}
.y8_c00177{bottom:440.360000pt;}
.y6_c00177{bottom:441.306667pt;}
.y3_c00177{bottom:441.693333pt;}
.yeb_c00177{bottom:469.506667pt;}
.ye9_c00177{bottom:469.893333pt;}
.yea_c00177{bottom:470.840000pt;}
.ye7_c00177{bottom:471.226667pt;}
.ye8_c00177{bottom:472.173333pt;}
.ye6_c00177{bottom:480.560000pt;}
.ye4_c00177{bottom:481.506667pt;}
.ye5_c00177{bottom:481.893333pt;}
.ye2_c00177{bottom:482.466667pt;}
.ye1_c00177{bottom:482.840000pt;}
.ye0_c00177{bottom:484.173333pt;}
.ye3_c00177{bottom:484.373333pt;}
.ydf_c00177{bottom:492.560000pt;}
.yde_c00177{bottom:493.893333pt;}
.yda_c00177{bottom:494.840000pt;}
.ydc_c00177{bottom:495.800000pt;}
.ydb_c00177{bottom:496.173333pt;}
.ydd_c00177{bottom:496.373333pt;}
.yd9_c00177{bottom:505.506667pt;}
.yd8_c00177{bottom:505.893333pt;}
.yd7_c00177{bottom:506.840000pt;}
.yd6_c00177{bottom:507.226667pt;}
.yd5_c00177{bottom:507.800000pt;}
.yd4_c00177{bottom:509.506667pt;}
.yd3_c00177{bottom:517.506667pt;}
.yd1_c00177{bottom:517.893333pt;}
.yd2_c00177{bottom:518.840000pt;}
.ycf_c00177{bottom:519.800000pt;}
.yd0_c00177{bottom:520.173333pt;}
.yce_c00177{bottom:521.506667pt;}
.ycd_c00177{bottom:530.840000pt;}
.ycc_c00177{bottom:531.226667pt;}
.ycb_c00177{bottom:532.173333pt;}
.yca_c00177{bottom:532.560000pt;}
.yc8_c00177{bottom:541.893333pt;}
.yc7_c00177{bottom:542.840000pt;}
.yc9_c00177{bottom:543.040000pt;}
.yc6_c00177{bottom:544.173333pt;}
.yc3_c00177{bottom:544.560000pt;}
.yc4_c00177{bottom:545.506667pt;}
.yc5_c00177{bottom:545.706667pt;}
.yc2_c00177{bottom:555.040000pt;}
.yc1_c00177{bottom:556.173333pt;}
.ybf_c00177{bottom:557.133333pt;}
.ybe_c00177{bottom:557.506667pt;}
.yc0_c00177{bottom:557.706667pt;}
.ybd_c00177{bottom:569.506667pt;}
.ybc_c00177{bottom:569.893333pt;}
.yb9_c00177{bottom:579.226667pt;}
.yba_c00177{bottom:580.173333pt;}
.ybb_c00177{bottom:580.373333pt;}
.yb8_c00177{bottom:581.506667pt;}
.yb6_c00177{bottom:582.840000pt;}
.yb7_c00177{bottom:583.040000pt;}
.yb4_c00177{bottom:591.226667pt;}
.yb3_c00177{bottom:592.173333pt;}
.yb5_c00177{bottom:592.373333pt;}
.yb2_c00177{bottom:593.506667pt;}
.yaf_c00177{bottom:593.893333pt;}
.yb0_c00177{bottom:594.840000pt;}
.yb1_c00177{bottom:595.040000pt;}
.yad_c00177{bottom:603.226667pt;}
.yac_c00177{bottom:604.173333pt;}
.yae_c00177{bottom:604.373333pt;}
.yab_c00177{bottom:604.560000pt;}
.yaa_c00177{bottom:605.506667pt;}
.ya8_c00177{bottom:605.893333pt;}
.ya9_c00177{bottom:607.040000pt;}
.ya6_c00177{bottom:616.560000pt;}
.ya5_c00177{bottom:617.506667pt;}
.ya7_c00177{bottom:617.706667pt;}
.ya3_c00177{bottom:617.893333pt;}
.ya2_c00177{bottom:618.840000pt;}
.ya4_c00177{bottom:619.040000pt;}
.ya0_c00177{bottom:628.560000pt;}
.y9f_c00177{bottom:629.506667pt;}
.ya1_c00177{bottom:629.706667pt;}
.y9d_c00177{bottom:630.840000pt;}
.y9e_c00177{bottom:631.040000pt;}
.y9b_c00177{bottom:631.226667pt;}
.y9c_c00177{bottom:631.800000pt;}
.y99_c00177{bottom:641.506667pt;}
.y9a_c00177{bottom:641.706667pt;}
.y98_c00177{bottom:641.893333pt;}
.y97_c00177{bottom:642.840000pt;}
.y95_c00177{bottom:643.226667pt;}
.y96_c00177{bottom:644.373333pt;}
.y93_c00177{bottom:653.506667pt;}
.y94_c00177{bottom:653.706667pt;}
.y8f_c00177{bottom:653.893333pt;}
.y92_c00177{bottom:654.840000pt;}
.y90_c00177{bottom:655.226667pt;}
.y91_c00177{bottom:656.373333pt;}
.y8e_c00177{bottom:668.173333pt;}
.y8c_c00177{bottom:677.506667pt;}
.y8b_c00177{bottom:677.893333pt;}
.y8a_c00177{bottom:678.840000pt;}
.y8d_c00177{bottom:679.040000pt;}
.y89_c00177{bottom:680.373333pt;}
.y88_c00177{bottom:681.506667pt;}
.y86_c00177{bottom:690.840000pt;}
.y87_c00177{bottom:691.040000pt;}
.y85_c00177{bottom:692.373333pt;}
.y84_c00177{bottom:693.506667pt;}
.y82_c00177{bottom:701.893333pt;}
.y81_c00177{bottom:702.840000pt;}
.y83_c00177{bottom:703.040000pt;}
.y80_c00177{bottom:704.173333pt;}
.y7f_c00177{bottom:704.373333pt;}
.y7e_c00177{bottom:704.560000pt;}
.y7d_c00177{bottom:715.040000pt;}
.y7c_c00177{bottom:716.173333pt;}
.y7b_c00177{bottom:716.560000pt;}
.y7a_c00177{bottom:717.506667pt;}
.y79_c00177{bottom:726.840000pt;}
.y78_c00177{bottom:728.173333pt;}
.y77_c00177{bottom:728.560000pt;}
.y76_c00177{bottom:729.506667pt;}
.y75_c00177{bottom:738.840000pt;}
.y74_c00177{bottom:739.226667pt;}
.y73_c00177{bottom:740.173333pt;}
.y72_c00177{bottom:740.560000pt;}
.y71_c00177{bottom:740.933333pt;}
.y70_c00177{bottom:741.893333pt;}
.y6e_c00177{bottom:752.173333pt;}
.y6f_c00177{bottom:752.373333pt;}
.y6d_c00177{bottom:752.560000pt;}
.y6c_c00177{bottom:753.506667pt;}
.y6b_c00177{bottom:762.840000pt;}
.y6a_c00177{bottom:764.173333pt;}
.y69_c00177{bottom:764.560000pt;}
.y68_c00177{bottom:765.506667pt;}
.y67_c00177{bottom:776.173333pt;}
.y65_c00177{bottom:776.560000pt;}
.y64_c00177{bottom:776.933333pt;}
.y66_c00177{bottom:777.506667pt;}
.y63_c00177{bottom:778.840000pt;}
.y61_c00177{bottom:789.506667pt;}
.y62_c00177{bottom:789.706667pt;}
.y60_c00177{bottom:789.893333pt;}
.y5f_c00177{bottom:790.840000pt;}
.y5e_c00177{bottom:800.173333pt;}
.y5d_c00177{bottom:801.506667pt;}
.y5c_c00177{bottom:801.893333pt;}
.y5b_c00177{bottom:802.840000pt;}
.y5a_c00177{bottom:812.173333pt;}
.y59_c00177{bottom:813.506667pt;}
.y58_c00177{bottom:813.893333pt;}
.y57_c00177{bottom:814.840000pt;}
.y56_c00177{bottom:824.560000pt;}
.y55_c00177{bottom:825.506667pt;}
.y54_c00177{bottom:826.840000pt;}
.y53_c00177{bottom:827.226667pt;}
.y52_c00177{bottom:828.173333pt;}
.y51_c00177{bottom:837.506667pt;}
.y50_c00177{bottom:837.893333pt;}
.y4f_c00177{bottom:838.840000pt;}
.y4e_c00177{bottom:840.173333pt;}
.y4d_c00177{bottom:853.893333pt;}
.y4c_c00177{bottom:854.840000pt;}
.y4b_c00177{bottom:856.173333pt;}
.y4a_c00177{bottom:864.560000pt;}
.y49_c00177{bottom:865.893333pt;}
.y48_c00177{bottom:866.840000pt;}
.y46_c00177{bottom:867.226667pt;}
.y47_c00177{bottom:868.173333pt;}
.y45_c00177{bottom:878.840000pt;}
.y44_c00177{bottom:880.173333pt;}
.y43_c00177{bottom:881.506667pt;}
.y42_c00177{bottom:895.400000pt;}
.y41_c00177{bottom:895.973333pt;}
.y40_c00177{bottom:896.933333pt;}
.y3d_c00177{bottom:906.640000pt;}
.y3b_c00177{bottom:907.400000pt;}
.y3f_c00177{bottom:907.973333pt;}
.y3a_c00177{bottom:909.306667pt;}
.y3e_c00177{bottom:909.506667pt;}
.y3c_c00177{bottom:910.266667pt;}
.y39_c00177{bottom:920.733333pt;}
.y38_c00177{bottom:921.693333pt;}
.y36_c00177{bottom:922.640000pt;}
.y37_c00177{bottom:923.600000pt;}
.y35_c00177{bottom:943.226667pt;}
.y34_c00177{bottom:944.933333pt;}
.y2_c00177{bottom:975.600000pt;}
.y1_c00177{bottom:975.773333pt;}
.h8_c00177{height:3.739141pt;}
.ha_c00177{height:12.988594pt;}
.h9_c00177{height:14.890964pt;}
.h6_c00177{height:20.466875pt;}
.h2_c00177{height:22.303646pt;}
.h5_c00177{height:27.879557pt;}
.h3_c00177{height:31.618698pt;}
.h7_c00177{height:35.357839pt;}
.h1_c00177{height:39.031380pt;}
.h4_c00177{height:42.770521pt;}
.h0_c00177{height:1186.666667pt;}
.w0_c00177{width:782.666667pt;}
.x0_c00177{left:0.000000pt;}
.x1d_c00177{left:134.666667pt;}
.xe_c00177{left:136.000000pt;}
.x1_c00177{left:138.466667pt;}
.x3a_c00177{left:148.000000pt;}
.x46_c00177{left:149.333333pt;}
.x3_c00177{left:150.666667pt;}
.x1e_c00177{left:154.666667pt;}
.xf_c00177{left:156.000000pt;}
.x2b_c00177{left:158.666667pt;}
.x42_c00177{left:167.626667pt;}
.x2c_c00177{left:185.706667pt;}
.x10_c00177{left:188.373333pt;}
.x3b_c00177{left:197.706667pt;}
.x82_c00177{left:198.666667pt;}
.x6a_c00177{left:200.000000pt;}
.x1f_c00177{left:206.293333pt;}
.x9a_c00177{left:208.000000pt;}
.x95_c00177{left:209.333333pt;}
.x8c_c00177{left:211.040000pt;}
.x11_c00177{left:212.373333pt;}
.x86_c00177{left:218.666667pt;}
.x6d_c00177{left:219.626667pt;}
.x4c_c00177{left:221.333333pt;}
.x83_c00177{left:223.040000pt;}
.x20_c00177{left:224.000000pt;}
.x7f_c00177{left:227.040000pt;}
.x4_c00177{left:230.293333pt;}
.x51_c00177{left:232.000000pt;}
.x96_c00177{left:232.960000pt;}
.xa8_c00177{left:236.000000pt;}
.x43_c00177{left:237.333333pt;}
.x97_c00177{left:240.960000pt;}
.x3c_c00177{left:243.240000pt;}
.x8d_c00177{left:246.293333pt;}
.x21_c00177{left:248.373333pt;}
.x47_c00177{left:249.333333pt;}
.x52_c00177{left:250.666667pt;}
.x93_c00177{left:253.333333pt;}
.x44_c00177{left:256.000000pt;}
.x9c_c00177{left:257.706667pt;}
.x12_c00177{left:258.666667pt;}
.x78_c00177{left:260.000000pt;}
.xa0_c00177{left:261.706667pt;}
.x2d_c00177{left:262.666667pt;}
.x4d_c00177{left:266.666667pt;}
.x5b_c00177{left:273.333333pt;}
.x81_c00177{left:274.293333pt;}
.x7a_c00177{left:275.626667pt;}
.x13_c00177{left:277.333333pt;}
.x5_c00177{left:278.666667pt;}
.xa7_c00177{left:284.000000pt;}
.xa4_c00177{left:285.333333pt;}
.x4e_c00177{left:286.293333pt;}
.x36_c00177{left:288.000000pt;}
.x94_c00177{left:291.040000pt;}
.xa5_c00177{left:292.373333pt;}
.xa1_c00177{left:293.706667pt;}
.x61_c00177{left:297.333333pt;}
.x2e_c00177{left:301.333333pt;}
.x5c_c00177{left:302.666667pt;}
.x22_c00177{left:305.333333pt;}
.x48_c00177{left:306.466667pt;}
.x6_c00177{left:309.333333pt;}
.x4f_c00177{left:310.293333pt;}
.x23_c00177{left:316.000000pt;}
.x53_c00177{left:318.293333pt;}
.x3d_c00177{left:320.000000pt;}
.x68_c00177{left:321.333333pt;}
.x62_c00177{left:326.666667pt;}
.x14_c00177{left:332.373333pt;}
.x45_c00177{left:340.960000pt;}
.x49_c00177{left:342.666667pt;}
.x6e_c00177{left:345.333333pt;}
.x80_c00177{left:346.666667pt;}
.x6b_c00177{left:348.000000pt;}
.x9d_c00177{left:349.333333pt;}
.x85_c00177{left:350.666667pt;}
.x7d_c00177{left:352.000000pt;}
.x99_c00177{left:353.333333pt;}
.x37_c00177{left:354.666667pt;}
.x2_c00177{left:357.333333pt;}
.x7_c00177{left:358.666667pt;}
.x54_c00177{left:360.960000pt;}
.x2f_c00177{left:362.666667pt;}
.x4a_c00177{left:366.666667pt;}
.x59_c00177{left:368.000000pt;}
.x69_c00177{left:370.093333pt;}
.x50_c00177{left:372.573333pt;}
.x8_c00177{left:376.373333pt;}
.xa9_c00177{left:380.000000pt;}
.x8e_c00177{left:382.666667pt;}
.x15_c00177{left:384.000000pt;}
.x63_c00177{left:385.333333pt;}
.x87_c00177{left:386.666667pt;}
.x30_c00177{left:388.000000pt;}
.x24_c00177{left:390.293333pt;}
.x71_c00177{left:392.000000pt;}
.x16_c00177{left:393.333333pt;}
.x5d_c00177{left:398.293333pt;}
.x9_c00177{left:400.000000pt;}
.x55_c00177{left:404.960000pt;}
.x25_c00177{left:406.666667pt;}
.x5a_c00177{left:408.000000pt;}
.x3e_c00177{left:408.960000pt;}
.x6f_c00177{left:413.333333pt;}
.x8f_c00177{left:414.666667pt;}
.x7c_c00177{left:416.000000pt;}
.x9b_c00177{left:417.333333pt;}
.x98_c00177{left:418.666667pt;}
.x38_c00177{left:419.626667pt;}
.x6c_c00177{left:421.333333pt;}
.x4b_c00177{left:422.466667pt;}
.x17_c00177{left:426.666667pt;}
.x5e_c00177{left:429.333333pt;}
.x26_c00177{left:430.293333pt;}
.x56_c00177{left:432.000000pt;}
.x18_c00177{left:444.960000pt;}
.x92_c00177{left:447.040000pt;}
.x75_c00177{left:448.000000pt;}
.x9e_c00177{left:449.333333pt;}
.x84_c00177{left:450.666667pt;}
.x31_c00177{left:452.000000pt;}
.x64_c00177{left:454.293333pt;}
.x72_c00177{left:456.373333pt;}
.xa_c00177{left:458.666667pt;}
.x3f_c00177{left:466.666667pt;}
.x57_c00177{left:469.333333pt;}
.x39_c00177{left:470.466667pt;}
.x32_c00177{left:473.706667pt;}
.x65_c00177{left:476.373333pt;}
.x90_c00177{left:478.666667pt;}
.x76_c00177{left:480.000000pt;}
.xa2_c00177{left:481.333333pt;}
.x88_c00177{left:482.666667pt;}
.x5f_c00177{left:487.040000pt;}
.x73_c00177{left:488.000000pt;}
.x27_c00177{left:492.000000pt;}
.x60_c00177{left:501.333333pt;}
.x33_c00177{left:504.000000pt;}
.x19_c00177{left:509.333333pt;}
.xb_c00177{left:510.293333pt;}
.x79_c00177{left:512.000000pt;}
.x7b_c00177{left:513.333333pt;}
.x89_c00177{left:514.666667pt;}
.x66_c00177{left:522.666667pt;}
.x58_c00177{left:523.626667pt;}
.xc_c00177{left:526.666667pt;}
.x70_c00177{left:540.000000pt;}
.x91_c00177{left:542.666667pt;}
.x67_c00177{left:544.373333pt;}
.xa6_c00177{left:545.333333pt;}
.x8a_c00177{left:546.666667pt;}
.x28_c00177{left:548.000000pt;}
.x40_c00177{left:549.333333pt;}
.x74_c00177{left:552.000000pt;}
.x1a_c00177{left:563.626667pt;}
.x77_c00177{left:576.000000pt;}
.xa3_c00177{left:577.333333pt;}
.x9f_c00177{left:578.666667pt;}
.x1b_c00177{left:580.373333pt;}
.xd_c00177{left:581.706667pt;}
.x8b_c00177{left:582.666667pt;}
.x7e_c00177{left:584.000000pt;}
.x34_c00177{left:592.000000pt;}
.x1c_c00177{left:603.040000pt;}
.x29_c00177{left:604.373333pt;}
.x41_c00177{left:612.960000pt;}
.x2a_c00177{left:634.666667pt;}
.x35_c00177{left:640.000000pt;}
}





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

.ir_c00178:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00178{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00178;src:url('chunks/assets/font_7cbeec0316cb02e606fec58b.woff2')format("woff");}.ff1_c00178{font-family:ff1_c00178;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8c_c00178{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.mda_c00178{transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);}
.m37_c00178{transform:matrix(0.357745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357745,0.000000,0.000000,0.250000,0,0);}
.mce_c00178{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m83_c00178{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.mb6_c00178{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.m13_c00178{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.ma4_c00178{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mcf_c00178{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m52_c00178{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m82_c00178{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.mf3_c00178{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.mf0_c00178{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m9_c00178{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m5a_c00178{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m9d_c00178{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.mb4_c00178{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m64_c00178{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m67_c00178{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.md0_c00178{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mb_c00178{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m45_c00178{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.mb8_c00178{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m85_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);}
.m20_c00178{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m98_c00178{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m6c_c00178{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m9f_c00178{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m9a_c00178{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.mc_c00178{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mc0_c00178{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.md1_c00178{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m63_c00178{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.md6_c00178{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mf_c00178{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.me0_c00178{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m4e_c00178{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mbc_c00178{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m34_c00178{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m38_c00178{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m76_c00178{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m21_c00178{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m25_c00178{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m4b_c00178{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m9b_c00178{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m9c_c00178{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m70_c00178{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mc8_c00178{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m7a_c00178{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mb2_c00178{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m1c_c00178{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m65_c00178{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.mcc_c00178{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m71_c00178{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.mb3_c00178{transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);}
.mba_c00178{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.m24_c00178{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m91_c00178{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.ma2_c00178{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m74_c00178{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m16_c00178{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m5f_c00178{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m8f_c00178{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m6d_c00178{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.ma_c00178{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mc9_c00178{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mc2_c00178{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m89_c00178{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.mbf_c00178{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.ma8_c00178{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m2e_c00178{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.md2_c00178{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m93_c00178{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.me2_c00178{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m48_c00178{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m88_c00178{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.m8b_c00178{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.mc7_c00178{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m6_c00178{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.ma7_c00178{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mab_c00178{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m75_c00178{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.mb5_c00178{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m35_c00178{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m27_c00178{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m56_c00178{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m4a_c00178{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.mec_c00178{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m7b_c00178{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m7c_c00178{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m6b_c00178{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.m7f_c00178{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m43_c00178{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.me5_c00178{transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);}
.mac_c00178{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.md3_c00178{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m81_c00178{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m32_c00178{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mc6_c00178{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.mb9_c00178{transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);}
.m42_c00178{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.m1e_c00178{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.me7_c00178{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.me3_c00178{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m4f_c00178{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m54_c00178{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m1_c00178{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.me4_c00178{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mc5_c00178{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m7d_c00178{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m2_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);}
.m57_c00178{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.mdf_c00178{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m69_c00178{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m86_c00178{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.mbe_c00178{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mcd_c00178{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m2b_c00178{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m61_c00178{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.me8_c00178{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m3f_c00178{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m15_c00178{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m6a_c00178{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m58_c00178{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m28_c00178{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m1a_c00178{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.ma1_c00178{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mdd_c00178{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m5b_c00178{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.md9_c00178{transform:matrix(0.521800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521800,0.000000,0.000000,0.250000,0,0);}
.m4_c00178{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mdc_c00178{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m80_c00178{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.md7_c00178{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m72_c00178{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m18_c00178{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m41_c00178{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m30_c00178{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m4c_c00178{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mde_c00178{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.ma0_c00178{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m29_c00178{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.md_c00178{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m19_c00178{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m23_c00178{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m49_c00178{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.ma9_c00178{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mbd_c00178{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m90_c00178{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m66_c00178{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mcb_c00178{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m4d_c00178{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m33_c00178{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.md4_c00178{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m7_c00178{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m2c_c00178{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m47_c00178{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.ma6_c00178{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mc1_c00178{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m8d_c00178{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m92_c00178{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m6f_c00178{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.me6_c00178{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.me_c00178{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m3a_c00178{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m12_c00178{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m8a_c00178{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mf1_c00178{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m53_c00178{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m78_c00178{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);}
.m3b_c00178{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m26_c00178{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m39_c00178{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mee_c00178{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.maa_c00178{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.me9_c00178{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.me1_c00178{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.mdb_c00178{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m11_c00178{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mbb_c00178{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m87_c00178{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m8e_c00178{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m73_c00178{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m3d_c00178{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.med_c00178{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m77_c00178{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m51_c00178{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m2d_c00178{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.mca_c00178{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m94_c00178{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m60_c00178{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m31_c00178{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m6e_c00178{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m46_c00178{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.md8_c00178{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.m40_c00178{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m36_c00178{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.m5e_c00178{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);}
.mc3_c00178{transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);}
.m0_c00178{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.mae_c00178{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m44_c00178{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m84_c00178{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.m8_c00178{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m3c_c00178{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.maf_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);}
.mad_c00178{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mb7_c00178{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m50_c00178{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mb1_c00178{transform:matrix(0.637448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637448,0.000000,0.000000,0.250000,0,0);}
.m79_c00178{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.mb0_c00178{transform:matrix(0.645747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645747,0.000000,0.000000,0.250000,0,0);}
.mea_c00178{transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);}
.m1f_c00178{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m68_c00178{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m5c_c00178{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m59_c00178{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mef_c00178{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.mc4_c00178{transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);}
.m3e_c00178{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m1b_c00178{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m95_c00178{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.mf2_c00178{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m2f_c00178{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m3_c00178{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m10_c00178{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m17_c00178{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m9e_c00178{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m7e_c00178{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m2a_c00178{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.md5_c00178{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m14_c00178{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m62_c00178{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m1d_c00178{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.ma5_c00178{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.ma3_c00178{transform:matrix(0.771635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.771635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.771635,0.000000,0.000000,0.250000,0,0);}
.m96_c00178{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m55_c00178{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.meb_c00178{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m99_c00178{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m5d_c00178{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m97_c00178{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.m22_c00178{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m5_c00178{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-5.775627px;}
.ws1_c00178{word-spacing:0.000000px;}
.fc0_c00178{color:transparent;}
.fs3_c00178{font-size:3.420000px;}
.fs8_c00178{font-size:11.880000px;}
.fs5_c00178{font-size:18.720000px;}
.fs0_c00178{font-size:20.400000px;}
.fs2_c00178{font-size:25.500000px;}
.fs1_c00178{font-size:28.920000px;}
.fs6_c00178{font-size:32.340000px;}
.fs4_c00178{font-size:35.700000px;}
.fs7_c00178{font-size:39.120000px;}
.y0_c00178{bottom:0.000000px;}
.yd3_c00178{bottom:253.050000px;}
.yd4_c00178{bottom:253.245000px;}
.yd2_c00178{bottom:255.405000px;}
.yd0_c00178{bottom:272.745000px;}
.ycf_c00178{bottom:273.630000px;}
.yd1_c00178{bottom:273.825000px;}
.ycc_c00178{bottom:274.905000px;}
.ycd_c00178{bottom:274.920000px;}
.yce_c00178{bottom:275.970000px;}
.ycb_c00178{bottom:293.325000px;}
.yca_c00178{bottom:294.405000px;}
.yc7_c00178{bottom:311.745000px;}
.yc8_c00178{bottom:313.905000px;}
.yc9_c00178{bottom:315.405000px;}
.yc3_c00178{bottom:331.245000px;}
.yc4_c00178{bottom:333.405000px;}
.yc5_c00178{bottom:334.470000px;}
.yc6_c00178{bottom:334.905000px;}
.yc0_c00178{bottom:349.905000px;}
.yc2_c00178{bottom:352.245000px;}
.yc1_c00178{bottom:352.905000px;}
.ybe_c00178{bottom:354.405000px;}
.ybf_c00178{bottom:354.420000px;}
.ybd_c00178{bottom:370.680000px;}
.ybb_c00178{bottom:371.745000px;}
.yb9_c00178{bottom:372.630000px;}
.ybc_c00178{bottom:372.825000px;}
.yb8_c00178{bottom:373.905000px;}
.yba_c00178{bottom:373.920000px;}
.yb7_c00178{bottom:390.405000px;}
.yb4_c00178{bottom:391.245000px;}
.yb6_c00178{bottom:392.325000px;}
.yb5_c00178{bottom:394.920000px;}
.yb1_c00178{bottom:409.680000px;}
.yb2_c00178{bottom:410.745000px;}
.yb3_c00178{bottom:412.470000px;}
.yb0_c00178{bottom:412.905000px;}
.yad_c00178{bottom:430.245000px;}
.yaf_c00178{bottom:432.405000px;}
.yae_c00178{bottom:433.920000px;}
.yac_c00178{bottom:452.970000px;}
.yab_c00178{bottom:454.905000px;}
.ya9_c00178{bottom:468.825000px;}
.ya8_c00178{bottom:469.905000px;}
.ya7_c00178{bottom:470.970000px;}
.yaa_c00178{bottom:472.050000px;}
.ya2_c00178{bottom:486.825000px;}
.ya6_c00178{bottom:487.050000px;}
.ya5_c00178{bottom:487.470000px;}
.ya3_c00178{bottom:487.905000px;}
.ya4_c00178{bottom:490.050000px;}
.ya1_c00178{bottom:511.245000px;}
.ya0_c00178{bottom:512.325000px;}
.y9f_c00178{bottom:513.405000px;}
.y9e_c00178{bottom:548.745000px;}
.y9b_c00178{bottom:549.825000px;}
.y9d_c00178{bottom:550.470000px;}
.y9a_c00178{bottom:550.905000px;}
.y9c_c00178{bottom:551.970000px;}
.y96_c00178{bottom:568.245000px;}
.y95_c00178{bottom:569.130000px;}
.y98_c00178{bottom:569.325000px;}
.y97_c00178{bottom:570.405000px;}
.y99_c00178{bottom:571.470000px;}
.y8e_c00178{bottom:587.745000px;}
.y92_c00178{bottom:588.825000px;}
.y90_c00178{bottom:589.245000px;}
.y91_c00178{bottom:590.130000px;}
.y94_c00178{bottom:590.325000px;}
.y93_c00178{bottom:590.970000px;}
.y8f_c00178{bottom:591.405000px;}
.y8c_c00178{bottom:608.745000px;}
.y8d_c00178{bottom:609.630000px;}
.y8a_c00178{bottom:610.905000px;}
.y8b_c00178{bottom:610.920000px;}
.y84_c00178{bottom:625.275000px;}
.y89_c00178{bottom:626.130000px;}
.y85_c00178{bottom:627.405000px;}
.y86_c00178{bottom:628.245000px;}
.y82_c00178{bottom:629.130000px;}
.y88_c00178{bottom:629.325000px;}
.y87_c00178{bottom:630.405000px;}
.y83_c00178{bottom:633.630000px;}
.y81_c00178{bottom:645.405000px;}
.y7d_c00178{bottom:646.275000px;}
.y7e_c00178{bottom:646.905000px;}
.y7a_c00178{bottom:647.745000px;}
.y7b_c00178{bottom:648.630000px;}
.y80_c00178{bottom:648.825000px;}
.y79_c00178{bottom:649.905000px;}
.y7f_c00178{bottom:650.130000px;}
.y7c_c00178{bottom:653.130000px;}
.y78_c00178{bottom:665.775000px;}
.y74_c00178{bottom:666.405000px;}
.y73_c00178{bottom:668.325000px;}
.y75_c00178{bottom:668.745000px;}
.y72_c00178{bottom:669.405000px;}
.y76_c00178{bottom:669.630000px;}
.y77_c00178{bottom:672.630000px;}
.y71_c00178{bottom:685.905000px;}
.y69_c00178{bottom:686.745000px;}
.y6d_c00178{bottom:687.825000px;}
.y6e_c00178{bottom:688.245000px;}
.y6a_c00178{bottom:689.130000px;}
.y70_c00178{bottom:689.325000px;}
.y6f_c00178{bottom:689.970000px;}
.y6c_c00178{bottom:690.405000px;}
.y6b_c00178{bottom:690.420000px;}
.y63_c00178{bottom:706.245000px;}
.y64_c00178{bottom:707.325000px;}
.y66_c00178{bottom:707.745000px;}
.y65_c00178{bottom:708.405000px;}
.y67_c00178{bottom:708.825000px;}
.y68_c00178{bottom:709.905000px;}
.y5c_c00178{bottom:724.905000px;}
.y5d_c00178{bottom:726.825000px;}
.y60_c00178{bottom:727.245000px;}
.y61_c00178{bottom:727.470000px;}
.y5e_c00178{bottom:728.130000px;}
.y5f_c00178{bottom:728.325000px;}
.y62_c00178{bottom:729.405000px;}
.y59_c00178{bottom:745.470000px;}
.y56_c00178{bottom:745.905000px;}
.y55_c00178{bottom:746.745000px;}
.y58_c00178{bottom:746.970000px;}
.y5b_c00178{bottom:747.825000px;}
.y5a_c00178{bottom:748.470000px;}
.y57_c00178{bottom:748.905000px;}
.y54_c00178{bottom:764.325000px;}
.y50_c00178{bottom:765.405000px;}
.y52_c00178{bottom:766.245000px;}
.y53_c00178{bottom:767.325000px;}
.y51_c00178{bottom:768.405000px;}
.y4f_c00178{bottom:784.905000px;}
.y4c_c00178{bottom:785.745000px;}
.y4d_c00178{bottom:786.825000px;}
.y4e_c00178{bottom:787.905000px;}
.y4b_c00178{bottom:804.405000px;}
.y48_c00178{bottom:805.245000px;}
.y4a_c00178{bottom:806.325000px;}
.y49_c00178{bottom:807.405000px;}
.y43_c00178{bottom:824.745000px;}
.y45_c00178{bottom:825.825000px;}
.y47_c00178{bottom:826.245000px;}
.y42_c00178{bottom:826.905000px;}
.y46_c00178{bottom:827.130000px;}
.y44_c00178{bottom:827.970000px;}
.y3f_c00178{bottom:845.745000px;}
.y41_c00178{bottom:846.630000px;}
.y3e_c00178{bottom:847.470000px;}
.y40_c00178{bottom:847.905000px;}
.y3a_c00178{bottom:864.405000px;}
.y39_c00178{bottom:865.905000px;}
.y3d_c00178{bottom:866.130000px;}
.y3c_c00178{bottom:866.550000px;}
.y3b_c00178{bottom:866.970000px;}
.y34_c00178{bottom:881.775000px;}
.y37_c00178{bottom:882.825000px;}
.y38_c00178{bottom:883.470000px;}
.y35_c00178{bottom:883.905000px;}
.y2f_c00178{bottom:884.745000px;}
.y32_c00178{bottom:885.630000px;}
.y31_c00178{bottom:885.825000px;}
.y36_c00178{bottom:886.470000px;}
.y30_c00178{bottom:886.905000px;}
.y33_c00178{bottom:890.130000px;}
.y2e_c00178{bottom:902.970000px;}
.y2b_c00178{bottom:903.405000px;}
.y2a_c00178{bottom:904.245000px;}
.y2c_c00178{bottom:904.470000px;}
.y29_c00178{bottom:906.405000px;}
.y2d_c00178{bottom:907.470000px;}
.y26_c00178{bottom:923.745000px;}
.y28_c00178{bottom:924.825000px;}
.y27_c00178{bottom:925.905000px;}
.y24_c00178{bottom:942.405000px;}
.y22_c00178{bottom:945.405000px;}
.y25_c00178{bottom:946.470000px;}
.y23_c00178{bottom:946.905000px;}
.y20_c00178{bottom:961.905000px;}
.y21_c00178{bottom:962.745000px;}
.y1f_c00178{bottom:963.180000px;}
.y1e_c00178{bottom:965.970000px;}
.y19_c00178{bottom:982.245000px;}
.y1d_c00178{bottom:983.325000px;}
.y1c_c00178{bottom:984.405000px;}
.y1a_c00178{bottom:984.630000px;}
.y18_c00178{bottom:985.470000px;}
.y1b_c00178{bottom:985.905000px;}
.y11_c00178{bottom:1001.745000px;}
.y16_c00178{bottom:1002.825000px;}
.y14_c00178{bottom:1003.245000px;}
.y13_c00178{bottom:1003.905000px;}
.y17_c00178{bottom:1004.130000px;}
.y15_c00178{bottom:1005.405000px;}
.y12_c00178{bottom:1005.420000px;}
.yf_c00178{bottom:1022.745000px;}
.ye_c00178{bottom:1023.630000px;}
.y10_c00178{bottom:1024.470000px;}
.yd_c00178{bottom:1024.905000px;}
.y8_c00178{bottom:1042.245000px;}
.y9_c00178{bottom:1043.130000px;}
.yc_c00178{bottom:1043.970000px;}
.ya_c00178{bottom:1044.405000px;}
.yb_c00178{bottom:1044.630000px;}
.y7_c00178{bottom:1060.245000px;}
.y6_c00178{bottom:1061.745000px;}
.y3_c00178{bottom:1063.905000px;}
.y5_c00178{bottom:1063.920000px;}
.y4_c00178{bottom:1064.970000px;}
.y2_c00178{bottom:1099.905000px;}
.y1_c00178{bottom:1102.050000px;}
.h4_c00178{height:4.206533px;}
.h9_c00178{height:14.612168px;}
.h6_c00178{height:23.025234px;}
.h1_c00178{height:25.091602px;}
.h3_c00178{height:31.364502px;}
.h2_c00178{height:35.571035px;}
.h7_c00178{height:39.777568px;}
.h5_c00178{height:43.910303px;}
.h8_c00178{height:48.116836px;}
.h0_c00178{height:1335.000000px;}
.w0_c00178{width:880.500000px;}
.x0_c00178{left:0.000000px;}
.x10_c00178{left:151.080000px;}
.x6d_c00178{left:153.420000px;}
.x99_c00178{left:154.920000px;}
.xe5_c00178{left:157.920000px;}
.xda_c00178{left:163.920000px;}
.x3_c00178{left:166.080000px;}
.x71_c00178{left:168.000000px;}
.xc7_c00178{left:170.145000px;}
.xe6_c00178{left:171.420000px;}
.x4f_c00178{left:172.920000px;}
.x83_c00178{left:174.645000px;}
.x8f_c00178{left:180.420000px;}
.x9a_c00178{left:181.500000px;}
.xbf_c00178{left:184.080000px;}
.xca_c00178{left:189.420000px;}
.x6e_c00178{left:190.920000px;}
.xc0_c00178{left:193.080000px;}
.xa2_c00178{left:198.000000px;}
.x50_c00178{left:201.420000px;}
.x44_c00178{left:202.500000px;}
.xd5_c00178{left:208.500000px;}
.x38_c00178{left:211.080000px;}
.xb0_c00178{left:212.580000px;}
.x90_c00178{left:214.500000px;}
.xa8_c00178{left:216.000000px;}
.x95_c00178{left:217.920000px;}
.x11_c00178{left:219.000000px;}
.x1d_c00178{left:220.080000px;}
.xcb_c00178{left:222.000000px;}
.x6f_c00178{left:223.500000px;}
.xdb_c00178{left:226.920000px;}
.xb1_c00178{left:232.500000px;}
.x9b_c00178{left:235.500000px;}
.x45_c00178{left:237.000000px;}
.x12_c00178{left:240.000000px;}
.x70_c00178{left:243.855000px;}
.x5d_c00178{left:246.000000px;}
.x4_c00178{left:250.500000px;}
.xdc_c00178{left:251.580000px;}
.x51_c00178{left:253.500000px;}
.x25_c00178{left:255.000000px;}
.xf9_c00178{left:256.500000px;}
.x46_c00178{left:258.000000px;}
.xc8_c00178{left:259.500000px;}
.xc1_c00178{left:261.000000px;}
.xeb_c00178{left:262.275000px;}
.xf0_c00178{left:265.500000px;}
.x39_c00178{left:267.000000px;}
.x72_c00178{left:268.080000px;}
.x7a_c00178{left:270.000000px;}
.x5_c00178{left:271.080000px;}
.x26_c00178{left:274.500000px;}
.x3a_c00178{left:277.920000px;}
.xd0_c00178{left:279.420000px;}
.x91_c00178{left:280.920000px;}
.xa9_c00178{left:283.920000px;}
.xb7_c00178{left:286.920000px;}
.xfe_c00178{left:288.000000px;}
.xd6_c00178{left:289.500000px;}
.x1e_c00178{left:291.000000px;}
.xb8_c00178{left:292.080000px;}
.xe7_c00178{left:294.000000px;}
.xcc_c00178{left:295.500000px;}
.x2f_c00178{left:297.420000px;}
.xd8_c00178{left:300.000000px;}
.xb9_c00178{left:301.080000px;}
.x7b_c00178{left:303.420000px;}
.x27_c00178{left:304.500000px;}
.x52_c00178{left:306.000000px;}
.xd1_c00178{left:307.080000px;}
.x13_c00178{left:308.580000px;}
.xec_c00178{left:313.080000px;}
.xf8_c00178{left:314.580000px;}
.x47_c00178{left:316.920000px;}
.xe0_c00178{left:318.420000px;}
.x92_c00178{left:319.500000px;}
.x5e_c00178{left:321.420000px;}
.x3b_c00178{left:322.500000px;}
.xdd_c00178{left:325.080000px;}
.x14_c00178{left:327.420000px;}
.xf3_c00178{left:330.000000px;}
.x73_c00178{left:332.580000px;}
.x30_c00178{left:337.500000px;}
.xff_c00178{left:340.500000px;}
.x3c_c00178{left:342.000000px;}
.x6_c00178{left:343.500000px;}
.xaa_c00178{left:345.420000px;}
.x5f_c00178{left:346.500000px;}
.xb2_c00178{left:348.000000px;}
.xed_c00178{left:349.275000px;}
.x53_c00178{left:350.580000px;}
.x60_c00178{left:352.080000px;}
.x7c_c00178{left:354.000000px;}
.xe1_c00178{left:355.500000px;}
.x15_c00178{left:357.000000px;}
.x61_c00178{left:358.920000px;}
.x28_c00178{left:360.420000px;}
.x74_c00178{left:363.000000px;}
.x7_c00178{left:364.500000px;}
.xe8_c00178{left:365.580000px;}
.x1f_c00178{left:367.920000px;}
.xfa_c00178{left:370.500000px;}
.x93_c00178{left:372.000000px;}
.x7d_c00178{left:373.500000px;}
.x31_c00178{left:375.000000px;}
.x9c_c00178{left:378.420000px;}
.xa3_c00178{left:380.355000px;}
.xc2_c00178{left:381.420000px;}
.x84_c00178{left:385.080000px;}
.xf1_c00178{left:387.420000px;}
.x8a_c00178{left:388.920000px;}
.xcd_c00178{left:390.420000px;}
.xf4_c00178{left:391.500000px;}
.xab_c00178{left:394.500000px;}
.x1_c00178{left:397.500000px;}
.x96_c00178{left:400.080000px;}
.x20_c00178{left:402.000000px;}
.x62_c00178{left:405.000000px;}
.xc3_c00178{left:406.500000px;}
.x85_c00178{left:407.580000px;}
.x16_c00178{left:409.500000px;}
.x8_c00178{left:411.420000px;}
.x3d_c00178{left:414.000000px;}
.xac_c00178{left:415.920000px;}
.x54_c00178{left:417.000000px;}
.xa4_c00178{left:418.500000px;}
.x63_c00178{left:420.000000px;}
.xc4_c00178{left:421.500000px;}
.xba_c00178{left:423.000000px;}
.x21_c00178{left:424.500000px;}
.x8b_c00178{left:429.000000px;}
.x3e_c00178{left:430.080000px;}
.xd7_c00178{left:431.580000px;}
.x94_c00178{left:434.355000px;}
.x100_c00178{left:436.080000px;}
.x17_c00178{left:438.000000px;}
.x29_c00178{left:439.500000px;}
.x48_c00178{left:441.000000px;}
.x64_c00178{left:442.500000px;}
.x86_c00178{left:444.420000px;}
.x9d_c00178{left:445.500000px;}
.x9_c00178{left:450.000000px;}
.xee_c00178{left:451.500000px;}
.x2a_c00178{left:453.000000px;}
.x55_c00178{left:454.500000px;}
.x49_c00178{left:456.000000px;}
.xe2_c00178{left:457.080000px;}
.x7e_c00178{left:459.420000px;}
.xde_c00178{left:463.500000px;}
.x101_c00178{left:466.500000px;}
.xa5_c00178{left:468.000000px;}
.xbb_c00178{left:469.500000px;}
.xd2_c00178{left:470.580000px;}
.x18_c00178{left:472.080000px;}
.x56_c00178{left:474.420000px;}
.xad_c00178{left:475.500000px;}
.x22_c00178{left:477.000000px;}
.x32_c00178{left:478.080000px;}
.xa_c00178{left:480.000000px;}
.xe9_c00178{left:482.145000px;}
.x102_c00178{left:486.420000px;}
.x7f_c00178{left:487.500000px;}
.xc5_c00178{left:488.580000px;}
.x3f_c00178{left:490.920000px;}
.x8c_c00178{left:495.420000px;}
.x33_c00178{left:498.420000px;}
.x2b_c00178{left:499.500000px;}
.x65_c00178{left:501.420000px;}
.x57_c00178{left:502.500000px;}
.xfb_c00178{left:504.000000px;}
.x75_c00178{left:506.580000px;}
.x19_c00178{left:508.080000px;}
.x87_c00178{left:510.420000px;}
.xf5_c00178{left:513.000000px;}
.x103_c00178{left:514.920000px;}
.xef_c00178{left:516.000000px;}
.xb3_c00178{left:517.500000px;}
.x97_c00178{left:520.500000px;}
.x40_c00178{left:522.000000px;}
.xbc_c00178{left:523.500000px;}
.xb_c00178{left:525.420000px;}
.x34_c00178{left:526.500000px;}
.xf6_c00178{left:527.580000px;}
.x23_c00178{left:529.500000px;}
.xae_c00178{left:530.580000px;}
.x8d_c00178{left:534.420000px;}
.x9e_c00178{left:537.000000px;}
.x66_c00178{left:538.080000px;}
.x2c_c00178{left:541.080000px;}
.x24_c00178{left:544.500000px;}
.x58_c00178{left:547.080000px;}
.x76_c00178{left:548.580000px;}
.xce_c00178{left:552.420000px;}
.x9f_c00178{left:554.580000px;}
.x4a_c00178{left:556.920000px;}
.xfc_c00178{left:558.000000px;}
.xd9_c00178{left:559.275000px;}
.xc_c00178{left:562.500000px;}
.x67_c00178{left:564.000000px;}
.xa6_c00178{left:565.500000px;}
.xa0_c00178{left:569.580000px;}
.x1a_c00178{left:571.920000px;}
.xdf_c00178{left:573.420000px;}
.xe3_c00178{left:574.500000px;}
.x88_c00178{left:576.000000px;}
.xf7_c00178{left:577.920000px;}
.xfd_c00178{left:579.000000px;}
.x8e_c00178{left:581.580000px;}
.x4b_c00178{left:583.920000px;}
.x41_c00178{left:585.000000px;}
.xcf_c00178{left:588.000000px;}
.x77_c00178{left:591.420000px;}
.x59_c00178{left:594.000000px;}
.xc9_c00178{left:595.920000px;}
.x35_c00178{left:601.080000px;}
.x68_c00178{left:607.500000px;}
.x98_c00178{left:608.580000px;}
.x1b_c00178{left:610.080000px;}
.xc6_c00178{left:613.500000px;}
.xbd_c00178{left:615.000000px;}
.xe4_c00178{left:619.500000px;}
.xf2_c00178{left:621.000000px;}
.xb4_c00178{left:624.420000px;}
.x5a_c00178{left:627.000000px;}
.xb5_c00178{left:629.580000px;}
.x4c_c00178{left:631.080000px;}
.xd_c00178{left:632.580000px;}
.x80_c00178{left:637.500000px;}
.x36_c00178{left:639.000000px;}
.xb6_c00178{left:640.080000px;}
.x69_c00178{left:642.000000px;}
.x2d_c00178{left:643.920000px;}
.x42_c00178{left:646.080000px;}
.x104_c00178{left:648.000000px;}
.x4d_c00178{left:649.920000px;}
.xea_c00178{left:652.500000px;}
.xa7_c00178{left:654.420000px;}
.xe_c00178{left:657.420000px;}
.xbe_c00178{left:660.000000px;}
.x6a_c00178{left:661.500000px;}
.x5b_c00178{left:663.000000px;}
.x78_c00178{left:669.420000px;}
.x2e_c00178{left:671.580000px;}
.x81_c00178{left:673.500000px;}
.x4e_c00178{left:675.420000px;}
.x6b_c00178{left:678.000000px;}
.xa1_c00178{left:682.920000px;}
.xf_c00178{left:685.080000px;}
.xd3_c00178{left:687.000000px;}
.x6c_c00178{left:688.920000px;}
.x82_c00178{left:693.420000px;}
.x43_c00178{left:694.500000px;}
.xaf_c00178{left:698.355000px;}
.x89_c00178{left:702.420000px;}
.x2_c00178{left:703.920000px;}
.x1c_c00178{left:705.420000px;}
.x5c_c00178{left:706.920000px;}
.x37_c00178{left:709.500000px;}
.x79_c00178{left:712.500000px;}
.xd4_c00178{left:716.580000px;}
@media print{
.v0_c00178{vertical-align:0.000000pt;}
.ls0_c00178{letter-spacing:0.000000pt;}
.ws0_c00178{word-spacing:-5.133891pt;}
.ws1_c00178{word-spacing:0.000000pt;}
.fs3_c00178{font-size:3.040000pt;}
.fs8_c00178{font-size:10.560000pt;}
.fs5_c00178{font-size:16.640000pt;}
.fs0_c00178{font-size:18.133333pt;}
.fs2_c00178{font-size:22.666667pt;}
.fs1_c00178{font-size:25.706667pt;}
.fs6_c00178{font-size:28.746667pt;}
.fs4_c00178{font-size:31.733333pt;}
.fs7_c00178{font-size:34.773333pt;}
.y0_c00178{bottom:0.000000pt;}
.yd3_c00178{bottom:224.933333pt;}
.yd4_c00178{bottom:225.106667pt;}
.yd2_c00178{bottom:227.026667pt;}
.yd0_c00178{bottom:242.440000pt;}
.ycf_c00178{bottom:243.226667pt;}
.yd1_c00178{bottom:243.400000pt;}
.ycc_c00178{bottom:244.360000pt;}
.ycd_c00178{bottom:244.373333pt;}
.yce_c00178{bottom:245.306667pt;}
.ycb_c00178{bottom:260.733333pt;}
.yca_c00178{bottom:261.693333pt;}
.yc7_c00178{bottom:277.106667pt;}
.yc8_c00178{bottom:279.026667pt;}
.yc9_c00178{bottom:280.360000pt;}
.yc3_c00178{bottom:294.440000pt;}
.yc4_c00178{bottom:296.360000pt;}
.yc5_c00178{bottom:297.306667pt;}
.yc6_c00178{bottom:297.693333pt;}
.yc0_c00178{bottom:311.026667pt;}
.yc2_c00178{bottom:313.106667pt;}
.yc1_c00178{bottom:313.693333pt;}
.ybe_c00178{bottom:315.026667pt;}
.ybf_c00178{bottom:315.040000pt;}
.ybd_c00178{bottom:329.493333pt;}
.ybb_c00178{bottom:330.440000pt;}
.yb9_c00178{bottom:331.226667pt;}
.ybc_c00178{bottom:331.400000pt;}
.yb8_c00178{bottom:332.360000pt;}
.yba_c00178{bottom:332.373333pt;}
.yb7_c00178{bottom:347.026667pt;}
.yb4_c00178{bottom:347.773333pt;}
.yb6_c00178{bottom:348.733333pt;}
.yb5_c00178{bottom:351.040000pt;}
.yb1_c00178{bottom:364.160000pt;}
.yb2_c00178{bottom:365.106667pt;}
.yb3_c00178{bottom:366.640000pt;}
.yb0_c00178{bottom:367.026667pt;}
.yad_c00178{bottom:382.440000pt;}
.yaf_c00178{bottom:384.360000pt;}
.yae_c00178{bottom:385.706667pt;}
.yac_c00178{bottom:402.640000pt;}
.yab_c00178{bottom:404.360000pt;}
.ya9_c00178{bottom:416.733333pt;}
.ya8_c00178{bottom:417.693333pt;}
.ya7_c00178{bottom:418.640000pt;}
.yaa_c00178{bottom:419.600000pt;}
.ya2_c00178{bottom:432.733333pt;}
.ya6_c00178{bottom:432.933333pt;}
.ya5_c00178{bottom:433.306667pt;}
.ya3_c00178{bottom:433.693333pt;}
.ya4_c00178{bottom:435.600000pt;}
.ya1_c00178{bottom:454.440000pt;}
.ya0_c00178{bottom:455.400000pt;}
.y9f_c00178{bottom:456.360000pt;}
.y9e_c00178{bottom:487.773333pt;}
.y9b_c00178{bottom:488.733333pt;}
.y9d_c00178{bottom:489.306667pt;}
.y9a_c00178{bottom:489.693333pt;}
.y9c_c00178{bottom:490.640000pt;}
.y96_c00178{bottom:505.106667pt;}
.y95_c00178{bottom:505.893333pt;}
.y98_c00178{bottom:506.066667pt;}
.y97_c00178{bottom:507.026667pt;}
.y99_c00178{bottom:507.973333pt;}
.y8e_c00178{bottom:522.440000pt;}
.y92_c00178{bottom:523.400000pt;}
.y90_c00178{bottom:523.773333pt;}
.y91_c00178{bottom:524.560000pt;}
.y94_c00178{bottom:524.733333pt;}
.y93_c00178{bottom:525.306667pt;}
.y8f_c00178{bottom:525.693333pt;}
.y8c_c00178{bottom:541.106667pt;}
.y8d_c00178{bottom:541.893333pt;}
.y8a_c00178{bottom:543.026667pt;}
.y8b_c00178{bottom:543.040000pt;}
.y84_c00178{bottom:555.800000pt;}
.y89_c00178{bottom:556.560000pt;}
.y85_c00178{bottom:557.693333pt;}
.y86_c00178{bottom:558.440000pt;}
.y82_c00178{bottom:559.226667pt;}
.y88_c00178{bottom:559.400000pt;}
.y87_c00178{bottom:560.360000pt;}
.y83_c00178{bottom:563.226667pt;}
.y81_c00178{bottom:573.693333pt;}
.y7d_c00178{bottom:574.466667pt;}
.y7e_c00178{bottom:575.026667pt;}
.y7a_c00178{bottom:575.773333pt;}
.y7b_c00178{bottom:576.560000pt;}
.y80_c00178{bottom:576.733333pt;}
.y79_c00178{bottom:577.693333pt;}
.y7f_c00178{bottom:577.893333pt;}
.y7c_c00178{bottom:580.560000pt;}
.y78_c00178{bottom:591.800000pt;}
.y74_c00178{bottom:592.360000pt;}
.y73_c00178{bottom:594.066667pt;}
.y75_c00178{bottom:594.440000pt;}
.y72_c00178{bottom:595.026667pt;}
.y76_c00178{bottom:595.226667pt;}
.y77_c00178{bottom:597.893333pt;}
.y71_c00178{bottom:609.693333pt;}
.y69_c00178{bottom:610.440000pt;}
.y6d_c00178{bottom:611.400000pt;}
.y6e_c00178{bottom:611.773333pt;}
.y6a_c00178{bottom:612.560000pt;}
.y70_c00178{bottom:612.733333pt;}
.y6f_c00178{bottom:613.306667pt;}
.y6c_c00178{bottom:613.693333pt;}
.y6b_c00178{bottom:613.706667pt;}
.y63_c00178{bottom:627.773333pt;}
.y64_c00178{bottom:628.733333pt;}
.y66_c00178{bottom:629.106667pt;}
.y65_c00178{bottom:629.693333pt;}
.y67_c00178{bottom:630.066667pt;}
.y68_c00178{bottom:631.026667pt;}
.y5c_c00178{bottom:644.360000pt;}
.y5d_c00178{bottom:646.066667pt;}
.y60_c00178{bottom:646.440000pt;}
.y61_c00178{bottom:646.640000pt;}
.y5e_c00178{bottom:647.226667pt;}
.y5f_c00178{bottom:647.400000pt;}
.y62_c00178{bottom:648.360000pt;}
.y59_c00178{bottom:662.640000pt;}
.y56_c00178{bottom:663.026667pt;}
.y55_c00178{bottom:663.773333pt;}
.y58_c00178{bottom:663.973333pt;}
.y5b_c00178{bottom:664.733333pt;}
.y5a_c00178{bottom:665.306667pt;}
.y57_c00178{bottom:665.693333pt;}
.y54_c00178{bottom:679.400000pt;}
.y50_c00178{bottom:680.360000pt;}
.y52_c00178{bottom:681.106667pt;}
.y53_c00178{bottom:682.066667pt;}
.y51_c00178{bottom:683.026667pt;}
.y4f_c00178{bottom:697.693333pt;}
.y4c_c00178{bottom:698.440000pt;}
.y4d_c00178{bottom:699.400000pt;}
.y4e_c00178{bottom:700.360000pt;}
.y4b_c00178{bottom:715.026667pt;}
.y48_c00178{bottom:715.773333pt;}
.y4a_c00178{bottom:716.733333pt;}
.y49_c00178{bottom:717.693333pt;}
.y43_c00178{bottom:733.106667pt;}
.y45_c00178{bottom:734.066667pt;}
.y47_c00178{bottom:734.440000pt;}
.y42_c00178{bottom:735.026667pt;}
.y46_c00178{bottom:735.226667pt;}
.y44_c00178{bottom:735.973333pt;}
.y3f_c00178{bottom:751.773333pt;}
.y41_c00178{bottom:752.560000pt;}
.y3e_c00178{bottom:753.306667pt;}
.y40_c00178{bottom:753.693333pt;}
.y3a_c00178{bottom:768.360000pt;}
.y39_c00178{bottom:769.693333pt;}
.y3d_c00178{bottom:769.893333pt;}
.y3c_c00178{bottom:770.266667pt;}
.y3b_c00178{bottom:770.640000pt;}
.y34_c00178{bottom:783.800000pt;}
.y37_c00178{bottom:784.733333pt;}
.y38_c00178{bottom:785.306667pt;}
.y35_c00178{bottom:785.693333pt;}
.y2f_c00178{bottom:786.440000pt;}
.y32_c00178{bottom:787.226667pt;}
.y31_c00178{bottom:787.400000pt;}
.y36_c00178{bottom:787.973333pt;}
.y30_c00178{bottom:788.360000pt;}
.y33_c00178{bottom:791.226667pt;}
.y2e_c00178{bottom:802.640000pt;}
.y2b_c00178{bottom:803.026667pt;}
.y2a_c00178{bottom:803.773333pt;}
.y2c_c00178{bottom:803.973333pt;}
.y29_c00178{bottom:805.693333pt;}
.y2d_c00178{bottom:806.640000pt;}
.y26_c00178{bottom:821.106667pt;}
.y28_c00178{bottom:822.066667pt;}
.y27_c00178{bottom:823.026667pt;}
.y24_c00178{bottom:837.693333pt;}
.y22_c00178{bottom:840.360000pt;}
.y25_c00178{bottom:841.306667pt;}
.y23_c00178{bottom:841.693333pt;}
.y20_c00178{bottom:855.026667pt;}
.y21_c00178{bottom:855.773333pt;}
.y1f_c00178{bottom:856.160000pt;}
.y1e_c00178{bottom:858.640000pt;}
.y19_c00178{bottom:873.106667pt;}
.y1d_c00178{bottom:874.066667pt;}
.y1c_c00178{bottom:875.026667pt;}
.y1a_c00178{bottom:875.226667pt;}
.y18_c00178{bottom:875.973333pt;}
.y1b_c00178{bottom:876.360000pt;}
.y11_c00178{bottom:890.440000pt;}
.y16_c00178{bottom:891.400000pt;}
.y14_c00178{bottom:891.773333pt;}
.y13_c00178{bottom:892.360000pt;}
.y17_c00178{bottom:892.560000pt;}
.y15_c00178{bottom:893.693333pt;}
.y12_c00178{bottom:893.706667pt;}
.yf_c00178{bottom:909.106667pt;}
.ye_c00178{bottom:909.893333pt;}
.y10_c00178{bottom:910.640000pt;}
.yd_c00178{bottom:911.026667pt;}
.y8_c00178{bottom:926.440000pt;}
.y9_c00178{bottom:927.226667pt;}
.yc_c00178{bottom:927.973333pt;}
.ya_c00178{bottom:928.360000pt;}
.yb_c00178{bottom:928.560000pt;}
.y7_c00178{bottom:942.440000pt;}
.y6_c00178{bottom:943.773333pt;}
.y3_c00178{bottom:945.693333pt;}
.y5_c00178{bottom:945.706667pt;}
.y4_c00178{bottom:946.640000pt;}
.y2_c00178{bottom:977.693333pt;}
.y1_c00178{bottom:979.600000pt;}
.h4_c00178{height:3.739141pt;}
.h9_c00178{height:12.988594pt;}
.h6_c00178{height:20.466875pt;}
.h1_c00178{height:22.303646pt;}
.h3_c00178{height:27.879557pt;}
.h2_c00178{height:31.618698pt;}
.h7_c00178{height:35.357839pt;}
.h5_c00178{height:39.031380pt;}
.h8_c00178{height:42.770521pt;}
.h0_c00178{height:1186.666667pt;}
.w0_c00178{width:782.666667pt;}
.x0_c00178{left:0.000000pt;}
.x10_c00178{left:134.293333pt;}
.x6d_c00178{left:136.373333pt;}
.x99_c00178{left:137.706667pt;}
.xe5_c00178{left:140.373333pt;}
.xda_c00178{left:145.706667pt;}
.x3_c00178{left:147.626667pt;}
.x71_c00178{left:149.333333pt;}
.xc7_c00178{left:151.240000pt;}
.xe6_c00178{left:152.373333pt;}
.x4f_c00178{left:153.706667pt;}
.x83_c00178{left:155.240000pt;}
.x8f_c00178{left:160.373333pt;}
.x9a_c00178{left:161.333333pt;}
.xbf_c00178{left:163.626667pt;}
.xca_c00178{left:168.373333pt;}
.x6e_c00178{left:169.706667pt;}
.xc0_c00178{left:171.626667pt;}
.xa2_c00178{left:176.000000pt;}
.x50_c00178{left:179.040000pt;}
.x44_c00178{left:180.000000pt;}
.xd5_c00178{left:185.333333pt;}
.x38_c00178{left:187.626667pt;}
.xb0_c00178{left:188.960000pt;}
.x90_c00178{left:190.666667pt;}
.xa8_c00178{left:192.000000pt;}
.x95_c00178{left:193.706667pt;}
.x11_c00178{left:194.666667pt;}
.x1d_c00178{left:195.626667pt;}
.xcb_c00178{left:197.333333pt;}
.x6f_c00178{left:198.666667pt;}
.xdb_c00178{left:201.706667pt;}
.xb1_c00178{left:206.666667pt;}
.x9b_c00178{left:209.333333pt;}
.x45_c00178{left:210.666667pt;}
.x12_c00178{left:213.333333pt;}
.x70_c00178{left:216.760000pt;}
.x5d_c00178{left:218.666667pt;}
.x4_c00178{left:222.666667pt;}
.xdc_c00178{left:223.626667pt;}
.x51_c00178{left:225.333333pt;}
.x25_c00178{left:226.666667pt;}
.xf9_c00178{left:228.000000pt;}
.x46_c00178{left:229.333333pt;}
.xc8_c00178{left:230.666667pt;}
.xc1_c00178{left:232.000000pt;}
.xeb_c00178{left:233.133333pt;}
.xf0_c00178{left:236.000000pt;}
.x39_c00178{left:237.333333pt;}
.x72_c00178{left:238.293333pt;}
.x7a_c00178{left:240.000000pt;}
.x5_c00178{left:240.960000pt;}
.x26_c00178{left:244.000000pt;}
.x3a_c00178{left:247.040000pt;}
.xd0_c00178{left:248.373333pt;}
.x91_c00178{left:249.706667pt;}
.xa9_c00178{left:252.373333pt;}
.xb7_c00178{left:255.040000pt;}
.xfe_c00178{left:256.000000pt;}
.xd6_c00178{left:257.333333pt;}
.x1e_c00178{left:258.666667pt;}
.xb8_c00178{left:259.626667pt;}
.xe7_c00178{left:261.333333pt;}
.xcc_c00178{left:262.666667pt;}
.x2f_c00178{left:264.373333pt;}
.xd8_c00178{left:266.666667pt;}
.xb9_c00178{left:267.626667pt;}
.x7b_c00178{left:269.706667pt;}
.x27_c00178{left:270.666667pt;}
.x52_c00178{left:272.000000pt;}
.xd1_c00178{left:272.960000pt;}
.x13_c00178{left:274.293333pt;}
.xec_c00178{left:278.293333pt;}
.xf8_c00178{left:279.626667pt;}
.x47_c00178{left:281.706667pt;}
.xe0_c00178{left:283.040000pt;}
.x92_c00178{left:284.000000pt;}
.x5e_c00178{left:285.706667pt;}
.x3b_c00178{left:286.666667pt;}
.xdd_c00178{left:288.960000pt;}
.x14_c00178{left:291.040000pt;}
.xf3_c00178{left:293.333333pt;}
.x73_c00178{left:295.626667pt;}
.x30_c00178{left:300.000000pt;}
.xff_c00178{left:302.666667pt;}
.x3c_c00178{left:304.000000pt;}
.x6_c00178{left:305.333333pt;}
.xaa_c00178{left:307.040000pt;}
.x5f_c00178{left:308.000000pt;}
.xb2_c00178{left:309.333333pt;}
.xed_c00178{left:310.466667pt;}
.x53_c00178{left:311.626667pt;}
.x60_c00178{left:312.960000pt;}
.x7c_c00178{left:314.666667pt;}
.xe1_c00178{left:316.000000pt;}
.x15_c00178{left:317.333333pt;}
.x61_c00178{left:319.040000pt;}
.x28_c00178{left:320.373333pt;}
.x74_c00178{left:322.666667pt;}
.x7_c00178{left:324.000000pt;}
.xe8_c00178{left:324.960000pt;}
.x1f_c00178{left:327.040000pt;}
.xfa_c00178{left:329.333333pt;}
.x93_c00178{left:330.666667pt;}
.x7d_c00178{left:332.000000pt;}
.x31_c00178{left:333.333333pt;}
.x9c_c00178{left:336.373333pt;}
.xa3_c00178{left:338.093333pt;}
.xc2_c00178{left:339.040000pt;}
.x84_c00178{left:342.293333pt;}
.xf1_c00178{left:344.373333pt;}
.x8a_c00178{left:345.706667pt;}
.xcd_c00178{left:347.040000pt;}
.xf4_c00178{left:348.000000pt;}
.xab_c00178{left:350.666667pt;}
.x1_c00178{left:353.333333pt;}
.x96_c00178{left:355.626667pt;}
.x20_c00178{left:357.333333pt;}
.x62_c00178{left:360.000000pt;}
.xc3_c00178{left:361.333333pt;}
.x85_c00178{left:362.293333pt;}
.x16_c00178{left:364.000000pt;}
.x8_c00178{left:365.706667pt;}
.x3d_c00178{left:368.000000pt;}
.xac_c00178{left:369.706667pt;}
.x54_c00178{left:370.666667pt;}
.xa4_c00178{left:372.000000pt;}
.x63_c00178{left:373.333333pt;}
.xc4_c00178{left:374.666667pt;}
.xba_c00178{left:376.000000pt;}
.x21_c00178{left:377.333333pt;}
.x8b_c00178{left:381.333333pt;}
.x3e_c00178{left:382.293333pt;}
.xd7_c00178{left:383.626667pt;}
.x94_c00178{left:386.093333pt;}
.x100_c00178{left:387.626667pt;}
.x17_c00178{left:389.333333pt;}
.x29_c00178{left:390.666667pt;}
.x48_c00178{left:392.000000pt;}
.x64_c00178{left:393.333333pt;}
.x86_c00178{left:395.040000pt;}
.x9d_c00178{left:396.000000pt;}
.x9_c00178{left:400.000000pt;}
.xee_c00178{left:401.333333pt;}
.x2a_c00178{left:402.666667pt;}
.x55_c00178{left:404.000000pt;}
.x49_c00178{left:405.333333pt;}
.xe2_c00178{left:406.293333pt;}
.x7e_c00178{left:408.373333pt;}
.xde_c00178{left:412.000000pt;}
.x101_c00178{left:414.666667pt;}
.xa5_c00178{left:416.000000pt;}
.xbb_c00178{left:417.333333pt;}
.xd2_c00178{left:418.293333pt;}
.x18_c00178{left:419.626667pt;}
.x56_c00178{left:421.706667pt;}
.xad_c00178{left:422.666667pt;}
.x22_c00178{left:424.000000pt;}
.x32_c00178{left:424.960000pt;}
.xa_c00178{left:426.666667pt;}
.xe9_c00178{left:428.573333pt;}
.x102_c00178{left:432.373333pt;}
.x7f_c00178{left:433.333333pt;}
.xc5_c00178{left:434.293333pt;}
.x3f_c00178{left:436.373333pt;}
.x8c_c00178{left:440.373333pt;}
.x33_c00178{left:443.040000pt;}
.x2b_c00178{left:444.000000pt;}
.x65_c00178{left:445.706667pt;}
.x57_c00178{left:446.666667pt;}
.xfb_c00178{left:448.000000pt;}
.x75_c00178{left:450.293333pt;}
.x19_c00178{left:451.626667pt;}
.x87_c00178{left:453.706667pt;}
.xf5_c00178{left:456.000000pt;}
.x103_c00178{left:457.706667pt;}
.xef_c00178{left:458.666667pt;}
.xb3_c00178{left:460.000000pt;}
.x97_c00178{left:462.666667pt;}
.x40_c00178{left:464.000000pt;}
.xbc_c00178{left:465.333333pt;}
.xb_c00178{left:467.040000pt;}
.x34_c00178{left:468.000000pt;}
.xf6_c00178{left:468.960000pt;}
.x23_c00178{left:470.666667pt;}
.xae_c00178{left:471.626667pt;}
.x8d_c00178{left:475.040000pt;}
.x9e_c00178{left:477.333333pt;}
.x66_c00178{left:478.293333pt;}
.x2c_c00178{left:480.960000pt;}
.x24_c00178{left:484.000000pt;}
.x58_c00178{left:486.293333pt;}
.x76_c00178{left:487.626667pt;}
.xce_c00178{left:491.040000pt;}
.x9f_c00178{left:492.960000pt;}
.x4a_c00178{left:495.040000pt;}
.xfc_c00178{left:496.000000pt;}
.xd9_c00178{left:497.133333pt;}
.xc_c00178{left:500.000000pt;}
.x67_c00178{left:501.333333pt;}
.xa6_c00178{left:502.666667pt;}
.xa0_c00178{left:506.293333pt;}
.x1a_c00178{left:508.373333pt;}
.xdf_c00178{left:509.706667pt;}
.xe3_c00178{left:510.666667pt;}
.x88_c00178{left:512.000000pt;}
.xf7_c00178{left:513.706667pt;}
.xfd_c00178{left:514.666667pt;}
.x8e_c00178{left:516.960000pt;}
.x4b_c00178{left:519.040000pt;}
.x41_c00178{left:520.000000pt;}
.xcf_c00178{left:522.666667pt;}
.x77_c00178{left:525.706667pt;}
.x59_c00178{left:528.000000pt;}
.xc9_c00178{left:529.706667pt;}
.x35_c00178{left:534.293333pt;}
.x68_c00178{left:540.000000pt;}
.x98_c00178{left:540.960000pt;}
.x1b_c00178{left:542.293333pt;}
.xc6_c00178{left:545.333333pt;}
.xbd_c00178{left:546.666667pt;}
.xe4_c00178{left:550.666667pt;}
.xf2_c00178{left:552.000000pt;}
.xb4_c00178{left:555.040000pt;}
.x5a_c00178{left:557.333333pt;}
.xb5_c00178{left:559.626667pt;}
.x4c_c00178{left:560.960000pt;}
.xd_c00178{left:562.293333pt;}
.x80_c00178{left:566.666667pt;}
.x36_c00178{left:568.000000pt;}
.xb6_c00178{left:568.960000pt;}
.x69_c00178{left:570.666667pt;}
.x2d_c00178{left:572.373333pt;}
.x42_c00178{left:574.293333pt;}
.x104_c00178{left:576.000000pt;}
.x4d_c00178{left:577.706667pt;}
.xea_c00178{left:580.000000pt;}
.xa7_c00178{left:581.706667pt;}
.xe_c00178{left:584.373333pt;}
.xbe_c00178{left:586.666667pt;}
.x6a_c00178{left:588.000000pt;}
.x5b_c00178{left:589.333333pt;}
.x78_c00178{left:595.040000pt;}
.x2e_c00178{left:596.960000pt;}
.x81_c00178{left:598.666667pt;}
.x4e_c00178{left:600.373333pt;}
.x6b_c00178{left:602.666667pt;}
.xa1_c00178{left:607.040000pt;}
.xf_c00178{left:608.960000pt;}
.xd3_c00178{left:610.666667pt;}
.x6c_c00178{left:612.373333pt;}
.x82_c00178{left:616.373333pt;}
.x43_c00178{left:617.333333pt;}
.xaf_c00178{left:620.760000pt;}
.x89_c00178{left:624.373333pt;}
.x2_c00178{left:625.706667pt;}
.x1c_c00178{left:627.040000pt;}
.x5c_c00178{left:628.373333pt;}
.x37_c00178{left:630.666667pt;}
.x79_c00178{left:633.333333pt;}
.xd4_c00178{left:636.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_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_40867e8691857338357188b8.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:1.688965;font-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_c00179{transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);}
.mda_c00179{transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);}
.m25_c00179{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.md1_c00179{transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);}
.m3_c00179{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m6e_c00179{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m8f_c00179{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m14_c00179{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m1c_c00179{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.md_c00179{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m52_c00179{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m58_c00179{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mc_c00179{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m74_c00179{transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);}
.me4_c00179{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m9d_c00179{transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);}
.m32_c00179{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m99_c00179{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.me1_c00179{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m31_c00179{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);}
.m2c_c00179{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m44_c00179{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mc0_c00179{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.mcf_c00179{transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);}
.m37_c00179{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m80_c00179{transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);}
.mf0_c00179{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.mb4_c00179{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.mc3_c00179{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.mf3_c00179{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m4f_c00179{transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);}
.m4b_c00179{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.md0_c00179{transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);}
.m17_c00179{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mc8_c00179{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m19_c00179{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.me5_c00179{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m9f_c00179{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.maa_c00179{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m36_c00179{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m10_c00179{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m12_c00179{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m84_c00179{transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);}
.mef_c00179{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m6f_c00179{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m72_c00179{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.mdb_c00179{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m2d_c00179{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.mea_c00179{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mdd_c00179{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.md3_c00179{transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);}
.m5c_c00179{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m6_c00179{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m92_c00179{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.mb5_c00179{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.m54_c00179{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m34_c00179{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m97_c00179{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.mce_c00179{transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);}
.me9_c00179{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.me8_c00179{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m94_c00179{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.mb3_c00179{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m21_c00179{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m35_c00179{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m81_c00179{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m60_c00179{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.mdf_c00179{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.md5_c00179{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.md8_c00179{transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);}
.mf6_c00179{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mb1_c00179{transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);}
.m18_c00179{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.mfc_c00179{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.mca_c00179{transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);}
.m24_c00179{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mb2_c00179{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.mb9_c00179{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m3f_c00179{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.me2_c00179{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.mf1_c00179{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.ma5_c00179{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m9_c00179{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.meb_c00179{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mba_c00179{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m7a_c00179{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.mab_c00179{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.mcb_c00179{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m104_c00179{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m65_c00179{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m82_c00179{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.m87_c00179{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mad_c00179{transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);}
.m7e_c00179{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.mf7_c00179{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.mbd_c00179{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.mc6_c00179{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m40_c00179{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m88_c00179{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m1e_c00179{transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);}
.m27_c00179{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mb_c00179{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m5a_c00179{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m0_c00179{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m77_c00179{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mff_c00179{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m9c_c00179{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.md6_c00179{transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);}
.mec_c00179{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.mc9_c00179{transform:matrix(0.494706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494706,0.000000,0.000000,0.250000,0,0);}
.m16_c00179{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.mf4_c00179{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m79_c00179{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_c00179{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m102_c00179{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mb8_c00179{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m91_c00179{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m2e_c00179{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m98_c00179{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m59_c00179{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mc5_c00179{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.mf5_c00179{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m78_c00179{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.m68_c00179{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m4e_c00179{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mbb_c00179{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.mf2_c00179{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m96_c00179{transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);}
.mfd_c00179{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m9e_c00179{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_c00179{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m43_c00179{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.mb7_c00179{transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);}
.m33_c00179{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m9b_c00179{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.m89_c00179{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);}
.m42_c00179{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m3d_c00179{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m57_c00179{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.maf_c00179{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m1a_c00179{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mde_c00179{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m67_c00179{transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);}
.m53_c00179{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m1d_c00179{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m23_c00179{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m45_c00179{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mee_c00179{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m8_c00179{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m6d_c00179{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m30_c00179{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m76_c00179{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.me0_c00179{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.md2_c00179{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m3e_c00179{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m7f_c00179{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m28_c00179{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mc1_c00179{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m39_c00179{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mbf_c00179{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.mfa_c00179{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m85_c00179{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m38_c00179{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m5_c00179{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mfb_c00179{transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);}
.mbc_c00179{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m26_c00179{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m51_c00179{transform:matrix(0.552905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552905,0.000000,0.000000,0.250000,0,0);}
.me7_c00179{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mbe_c00179{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m4a_c00179{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.med_c00179{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m55_c00179{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m90_c00179{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.m2f_c00179{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mb0_c00179{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mb6_c00179{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.m13_c00179{transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);}
.m3c_c00179{transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);}
.m46_c00179{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m101_c00179{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m41_c00179{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.ma3_c00179{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.mc7_c00179{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m2_c00179{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.ma_c00179{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.ma4_c00179{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.mae_c00179{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.m3a_c00179{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m6b_c00179{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);}
.m5b_c00179{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m50_c00179{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m71_c00179{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m8e_c00179{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m29_c00179{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mcc_c00179{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m8b_c00179{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);}
.m103_c00179{transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);}
.m1f_c00179{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m49_c00179{transform:matrix(0.606846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606846,0.000000,0.000000,0.250000,0,0);}
.md7_c00179{transform:matrix(0.607353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607353,0.000000,0.000000,0.250000,0,0);}
.m47_c00179{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m11_c00179{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m4c_c00179{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mc2_c00179{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.m5f_c00179{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m22_c00179{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m2a_c00179{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.ma9_c00179{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m7b_c00179{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_c00179{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.mc4_c00179{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m9a_c00179{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.me6_c00179{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.ma1_c00179{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m70_c00179{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m7_c00179{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m7d_c00179{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m66_c00179{transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);}
.m100_c00179{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m6a_c00179{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.ma2_c00179{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.ma6_c00179{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);}
.m4d_c00179{transform:matrix(0.653529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653529,0.000000,0.000000,0.250000,0,0);}
.m95_c00179{transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);}
.mf8_c00179{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m64_c00179{transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);}
.me_c00179{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.mf_c00179{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m1b_c00179{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m75_c00179{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.m93_c00179{transform:matrix(0.671324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.671324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.671324,0.000000,0.000000,0.250000,0,0);}
.m1_c00179{transform:matrix(0.673077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673077,0.000000,0.000000,0.250000,0,0);}
.m61_c00179{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m86_c00179{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m8d_c00179{transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);}
.m6c_c00179{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mfe_c00179{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);}
.m8a_c00179{transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);}
.m62_c00179{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m63_c00179{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.ma0_c00179{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.ma7_c00179{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);}
.mcd_c00179{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m7c_c00179{transform:matrix(0.716912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.716912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.716912,0.000000,0.000000,0.250000,0,0);}
.m56_c00179{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mac_c00179{transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);}
.m83_c00179{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.mf9_c00179{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.me3_c00179{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m4_c00179{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.md4_c00179{transform:matrix(0.780837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780837,0.000000,0.000000,0.250000,0,0);}
.m2b_c00179{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m48_c00179{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m3b_c00179{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m15_c00179{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m73_c00179{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m5e_c00179{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m5d_c00179{transform:matrix(1.034141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.034141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.034141,0.000000,0.000000,0.250000,0,0);}
.ma8_c00179{transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);}
.mdc_c00179{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v2_c00179{vertical-align:-4.320000px;}
.v0_c00179{vertical-align:0.000000px;}
.v1_c00179{vertical-align:7.680000px;}
.ls2_c00179{letter-spacing:0.000000px;}
.ls1_c00179{letter-spacing:11.817600px;}
.ls0_c00179{letter-spacing:14.817600px;}
.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;}
}
.ws2_c00179{word-spacing:-6.454845px;}
.ws3_c00179{word-spacing:-6.425697px;}
.ws0_c00179{word-spacing:-6.024098px;}
.ws4_c00179{word-spacing:0.000000px;}
.ws1_c00179{word-spacing:0.607426px;}
._0_c00179{width:13.873961px;}
.fc0_c00179{color:transparent;}
.fs7_c00179{font-size:3.420000px;}
.fs6_c00179{font-size:13.620000px;}
.fs1_c00179{font-size:18.720000px;}
.fs5_c00179{font-size:20.400000px;}
.fs3_c00179{font-size:25.500000px;}
.fs0_c00179{font-size:28.920000px;}
.fs4_c00179{font-size:32.340000px;}
.fs2_c00179{font-size:35.700000px;}
.y0_c00179{bottom:0.000000px;}
.yfa_c00179{bottom:252.825000px;}
.yfb_c00179{bottom:253.050000px;}
.yfd_c00179{bottom:254.325000px;}
.yfc_c00179{bottom:254.970000px;}
.yf9_c00179{bottom:255.405000px;}
.yf4_c00179{bottom:271.905000px;}
.yf3_c00179{bottom:272.745000px;}
.yf5_c00179{bottom:272.970000px;}
.yf1_c00179{bottom:273.825000px;}
.yf8_c00179{bottom:274.245000px;}
.yf2_c00179{bottom:274.905000px;}
.yf6_c00179{bottom:275.130000px;}
.yf7_c00179{bottom:275.325000px;}
.yec_c00179{bottom:292.245000px;}
.yed_c00179{bottom:293.325000px;}
.yee_c00179{bottom:294.405000px;}
.yef_c00179{bottom:295.470000px;}
.yf0_c00179{bottom:295.905000px;}
.ye9_c00179{bottom:312.825000px;}
.ye8_c00179{bottom:313.245000px;}
.yea_c00179{bottom:314.325000px;}
.yeb_c00179{bottom:315.405000px;}
.ye4_c00179{bottom:330.825000px;}
.ye5_c00179{bottom:331.470000px;}
.ye6_c00179{bottom:333.630000px;}
.ye7_c00179{bottom:333.825000px;}
.ye3_c00179{bottom:334.905000px;}
.ye0_c00179{bottom:351.405000px;}
.ye2_c00179{bottom:352.245000px;}
.ye1_c00179{bottom:353.130000px;}
.ydf_c00179{bottom:353.970000px;}
.yde_c00179{bottom:354.405000px;}
.yd9_c00179{bottom:371.745000px;}
.ydb_c00179{bottom:373.245000px;}
.ydc_c00179{bottom:373.905000px;}
.ydd_c00179{bottom:375.405000px;}
.yda_c00179{bottom:375.420000px;}
.yd8_c00179{bottom:402.825000px;}
.yd6_c00179{bottom:417.825000px;}
.yd1_c00179{bottom:418.050000px;}
.yd4_c00179{bottom:418.905000px;}
.yd7_c00179{bottom:419.550000px;}
.yd2_c00179{bottom:419.970000px;}
.yd5_c00179{bottom:420.630000px;}
.yd3_c00179{bottom:421.050000px;}
.yce_c00179{bottom:431.970000px;}
.ycb_c00179{bottom:432.825000px;}
.ycc_c00179{bottom:433.905000px;}
.yd0_c00179{bottom:434.130000px;}
.ycd_c00179{bottom:434.325000px;}
.ycf_c00179{bottom:434.970000px;}
.yc6_c00179{bottom:446.970000px;}
.yc4_c00179{bottom:447.825000px;}
.yc5_c00179{bottom:448.470000px;}
.yc3_c00179{bottom:448.905000px;}
.yc7_c00179{bottom:449.970000px;}
.yca_c00179{bottom:450.195000px;}
.yc8_c00179{bottom:450.630000px;}
.yc9_c00179{bottom:451.050000px;}
.yc2_c00179{bottom:462.825000px;}
.ybd_c00179{bottom:463.470000px;}
.ybe_c00179{bottom:463.905000px;}
.yc0_c00179{bottom:464.130000px;}
.ybf_c00179{bottom:464.970000px;}
.yc1_c00179{bottom:466.050000px;}
.yba_c00179{bottom:476.970000px;}
.yb7_c00179{bottom:477.825000px;}
.ybb_c00179{bottom:478.050000px;}
.ybc_c00179{bottom:478.905000px;}
.yb9_c00179{bottom:479.970000px;}
.yb8_c00179{bottom:480.195000px;}
.yb6_c00179{bottom:481.050000px;}
.yb5_c00179{bottom:491.970000px;}
.yb3_c00179{bottom:492.825000px;}
.yaf_c00179{bottom:493.050000px;}
.yb0_c00179{bottom:493.905000px;}
.yb4_c00179{bottom:494.130000px;}
.yb1_c00179{bottom:494.970000px;}
.yb2_c00179{bottom:496.050000px;}
.yad_c00179{bottom:506.970000px;}
.yac_c00179{bottom:507.825000px;}
.yae_c00179{bottom:508.050000px;}
.ya9_c00179{bottom:508.905000px;}
.yaa_c00179{bottom:509.130000px;}
.yab_c00179{bottom:511.050000px;}
.ya2_c00179{bottom:521.970000px;}
.ya7_c00179{bottom:522.825000px;}
.ya8_c00179{bottom:523.470000px;}
.ya3_c00179{bottom:523.905000px;}
.ya4_c00179{bottom:524.550000px;}
.ya5_c00179{bottom:524.970000px;}
.ya6_c00179{bottom:526.050000px;}
.ya1_c00179{bottom:536.325000px;}
.y9f_c00179{bottom:536.970000px;}
.y9e_c00179{bottom:537.825000px;}
.ya0_c00179{bottom:538.470000px;}
.y9d_c00179{bottom:539.970000px;}
.y9b_c00179{bottom:550.470000px;}
.y9a_c00179{bottom:552.405000px;}
.y99_c00179{bottom:553.470000px;}
.y98_c00179{bottom:554.130000px;}
.y9c_c00179{bottom:554.550000px;}
.y97_c00179{bottom:567.405000px;}
.y96_c00179{bottom:569.550000px;}
.y95_c00179{bottom:580.470000px;}
.y90_c00179{bottom:581.325000px;}
.y92_c00179{bottom:581.550000px;}
.y8f_c00179{bottom:582.630000px;}
.y91_c00179{bottom:583.470000px;}
.y94_c00179{bottom:583.695000px;}
.y93_c00179{bottom:584.550000px;}
.y8c_c00179{bottom:595.470000px;}
.y8d_c00179{bottom:596.325000px;}
.y8b_c00179{bottom:597.405000px;}
.y8e_c00179{bottom:599.550000px;}
.y89_c00179{bottom:610.905000px;}
.y87_c00179{bottom:612.405000px;}
.y86_c00179{bottom:612.630000px;}
.y8a_c00179{bottom:613.050000px;}
.y88_c00179{bottom:613.470000px;}
.y7f_c00179{bottom:625.905000px;}
.y85_c00179{bottom:626.325000px;}
.y7e_c00179{bottom:626.550000px;}
.y80_c00179{bottom:627.195000px;}
.y83_c00179{bottom:627.405000px;}
.y81_c00179{bottom:628.050000px;}
.y82_c00179{bottom:628.470000px;}
.y84_c00179{bottom:628.695000px;}
.y7d_c00179{bottom:639.825000px;}
.y7c_c00179{bottom:655.470000px;}
.y79_c00179{bottom:655.905000px;}
.y78_c00179{bottom:656.970000px;}
.y7a_c00179{bottom:657.405000px;}
.y7b_c00179{bottom:657.630000px;}
.y77_c00179{bottom:658.050000px;}
.y72_c00179{bottom:670.050000px;}
.y74_c00179{bottom:670.905000px;}
.y75_c00179{bottom:671.130000px;}
.y73_c00179{bottom:671.970000px;}
.y76_c00179{bottom:673.050000px;}
.y6c_c00179{bottom:683.970000px;}
.y6f_c00179{bottom:684.825000px;}
.y6e_c00179{bottom:685.050000px;}
.y6d_c00179{bottom:685.905000px;}
.y70_c00179{bottom:686.970000px;}
.y71_c00179{bottom:688.050000px;}
.y6b_c00179{bottom:698.970000px;}
.y69_c00179{bottom:699.825000px;}
.y67_c00179{bottom:700.050000px;}
.y6a_c00179{bottom:700.905000px;}
.y68_c00179{bottom:701.970000px;}
.y66_c00179{bottom:714.405000px;}
.y65_c00179{bottom:714.825000px;}
.y63_c00179{bottom:715.905000px;}
.y62_c00179{bottom:716.970000px;}
.y64_c00179{bottom:718.050000px;}
.y61_c00179{bottom:730.905000px;}
.y5f_c00179{bottom:731.970000px;}
.y60_c00179{bottom:733.050000px;}
.y5e_c00179{bottom:743.970000px;}
.y5d_c00179{bottom:744.825000px;}
.y58_c00179{bottom:745.050000px;}
.y5b_c00179{bottom:745.905000px;}
.y5c_c00179{bottom:746.130000px;}
.y5a_c00179{bottom:746.970000px;}
.y59_c00179{bottom:748.050000px;}
.y57_c00179{bottom:759.405000px;}
.y56_c00179{bottom:761.550000px;}
.y4f_c00179{bottom:772.470000px;}
.y55_c00179{bottom:773.325000px;}
.y50_c00179{bottom:774.405000px;}
.y51_c00179{bottom:774.630000px;}
.y53_c00179{bottom:775.470000px;}
.y54_c00179{bottom:775.695000px;}
.y52_c00179{bottom:776.550000px;}
.y48_c00179{bottom:787.470000px;}
.y4e_c00179{bottom:788.325000px;}
.y46_c00179{bottom:788.550000px;}
.y4a_c00179{bottom:789.405000px;}
.y4d_c00179{bottom:789.825000px;}
.y49_c00179{bottom:790.470000px;}
.y4c_c00179{bottom:790.695000px;}
.y4b_c00179{bottom:790.905000px;}
.y47_c00179{bottom:791.550000px;}
.y45_c00179{bottom:802.470000px;}
.y41_c00179{bottom:803.325000px;}
.y44_c00179{bottom:804.405000px;}
.y43_c00179{bottom:805.470000px;}
.y40_c00179{bottom:805.695000px;}
.y42_c00179{bottom:806.550000px;}
.y3f_c00179{bottom:818.325000px;}
.y3c_c00179{bottom:819.405000px;}
.y3b_c00179{bottom:820.470000px;}
.y3e_c00179{bottom:820.695000px;}
.y3d_c00179{bottom:821.550000px;}
.y36_c00179{bottom:833.325000px;}
.y37_c00179{bottom:834.195000px;}
.y3a_c00179{bottom:834.405000px;}
.y35_c00179{bottom:834.630000px;}
.y38_c00179{bottom:835.050000px;}
.y39_c00179{bottom:836.550000px;}
.y34_c00179{bottom:865.245000px;}
.y33_c00179{bottom:867.405000px;}
.y2f_c00179{bottom:884.325000px;}
.y30_c00179{bottom:884.745000px;}
.y32_c00179{bottom:885.630000px;}
.y31_c00179{bottom:886.470000px;}
.y2e_c00179{bottom:886.905000px;}
.y2a_c00179{bottom:904.245000px;}
.y2d_c00179{bottom:905.970000px;}
.y2c_c00179{bottom:906.405000px;}
.y2b_c00179{bottom:907.470000px;}
.y26_c00179{bottom:923.745000px;}
.y27_c00179{bottom:924.630000px;}
.y29_c00179{bottom:925.470000px;}
.y28_c00179{bottom:925.905000px;}
.y21_c00179{bottom:943.245000px;}
.y22_c00179{bottom:944.325000px;}
.y23_c00179{bottom:944.550000px;}
.y24_c00179{bottom:944.745000px;}
.y20_c00179{bottom:945.405000px;}
.y25_c00179{bottom:946.470000px;}
.y1c_c00179{bottom:962.325000px;}
.y1d_c00179{bottom:962.745000px;}
.y1e_c00179{bottom:964.905000px;}
.y1f_c00179{bottom:965.130000px;}
.y18_c00179{bottom:981.405000px;}
.y19_c00179{bottom:982.245000px;}
.y1a_c00179{bottom:984.405000px;}
.y1b_c00179{bottom:985.470000px;}
.y15_c00179{bottom:1001.745000px;}
.y16_c00179{bottom:1002.825000px;}
.y12_c00179{bottom:1003.905000px;}
.y14_c00179{bottom:1004.130000px;}
.y13_c00179{bottom:1004.970000px;}
.y17_c00179{bottom:1005.405000px;}
.yf_c00179{bottom:1021.245000px;}
.y11_c00179{bottom:1022.325000px;}
.ye_c00179{bottom:1023.405000px;}
.yd_c00179{bottom:1024.470000px;}
.y10_c00179{bottom:1024.905000px;}
.y8_c00179{bottom:1040.745000px;}
.yb_c00179{bottom:1042.245000px;}
.ya_c00179{bottom:1042.905000px;}
.y9_c00179{bottom:1043.130000px;}
.y7_c00179{bottom:1043.970000px;}
.yc_c00179{bottom:1044.405000px;}
.y4_c00179{bottom:1061.745000px;}
.y5_c00179{bottom:1062.630000px;}
.y3_c00179{bottom:1063.905000px;}
.y6_c00179{bottom:1064.970000px;}
.y1_c00179{bottom:1099.905000px;}
.y2_c00179{bottom:1103.130000px;}
.ha_c00179{height:4.206533px;}
.h7_c00179{height:16.752334px;}
.h2_c00179{height:23.025234px;}
.h6_c00179{height:25.091602px;}
.h9_c00179{height:27.044502px;}
.h4_c00179{height:31.364502px;}
.h1_c00179{height:35.571035px;}
.h8_c00179{height:39.044502px;}
.h5_c00179{height:39.777568px;}
.h3_c00179{height:43.910303px;}
.h0_c00179{height:1335.000000px;}
.w0_c00179{width:880.500000px;}
.x0_c00179{left:0.000000px;}
.xfd_c00179{left:148.500000px;}
.xd1_c00179{left:149.580000px;}
.x31_c00179{left:151.080000px;}
.xee_c00179{left:152.355000px;}
.x3_c00179{left:153.420000px;}
.x1_c00179{left:154.920000px;}
.xa5_c00179{left:162.000000px;}
.x9d_c00179{left:163.500000px;}
.xad_c00179{left:165.420000px;}
.x64_c00179{left:166.920000px;}
.x3b_c00179{left:168.000000px;}
.x101_c00179{left:177.420000px;}
.xd6_c00179{left:178.500000px;}
.x4_c00179{left:180.000000px;}
.x8f_c00179{left:181.920000px;}
.x83_c00179{left:183.000000px;}
.x65_c00179{left:184.500000px;}
.xe5_c00179{left:186.420000px;}
.x97_c00179{left:187.920000px;}
.x32_c00179{left:189.645000px;}
.xea_c00179{left:190.920000px;}
.x28_c00179{left:192.000000px;}
.xde_c00179{left:193.080000px;}
.xcb_c00179{left:196.080000px;}
.xf3_c00179{left:197.580000px;}
.xfe_c00179{left:199.500000px;}
.x3c_c00179{left:200.580000px;}
.x12_c00179{left:202.500000px;}
.xeb_c00179{left:204.000000px;}
.x45_c00179{left:205.500000px;}
.xbe_c00179{left:207.000000px;}
.x37_c00179{left:208.500000px;}
.xa6_c00179{left:213.000000px;}
.x5e_c00179{left:214.500000px;}
.x84_c00179{left:216.000000px;}
.xd2_c00179{left:217.500000px;}
.xbf_c00179{left:219.000000px;}
.xcc_c00179{left:223.080000px;}
.x59_c00179{left:225.000000px;}
.x46_c00179{left:226.500000px;}
.x29_c00179{left:228.000000px;}
.x5_c00179{left:231.000000px;}
.x79_c00179{left:234.000000px;}
.x9e_c00179{left:235.080000px;}
.x5f_c00179{left:237.420000px;}
.xd7_c00179{left:244.500000px;}
.xc1_c00179{left:246.000000px;}
.x50_c00179{left:247.080000px;}
.xf0_c00179{left:248.580000px;}
.x90_c00179{left:253.080000px;}
.xae_c00179{left:255.000000px;}
.x13_c00179{left:259.080000px;}
.x6_c00179{left:261.420000px;}
.x60_c00179{left:263.580000px;}
.x1e_c00179{left:265.080000px;}
.x98_c00179{left:266.580000px;}
.x51_c00179{left:267.645000px;}
.xdf_c00179{left:268.920000px;}
.x2a_c00179{left:273.000000px;}
.xce_c00179{left:274.500000px;}
.xf4_c00179{left:276.000000px;}
.x85_c00179{left:277.500000px;}
.xd3_c00179{left:279.420000px;}
.x47_c00179{left:280.920000px;}
.x6d_c00179{left:285.000000px;}
.xb4_c00179{left:286.080000px;}
.x5a_c00179{left:287.580000px;}
.x7_c00179{left:292.080000px;}
.xcd_c00179{left:295.080000px;}
.x7a_c00179{left:296.580000px;}
.x2b_c00179{left:300.000000px;}
.x66_c00179{left:301.080000px;}
.x14_c00179{left:307.275000px;}
.x48_c00179{left:309.000000px;}
.xb5_c00179{left:310.500000px;}
.xc0_c00179{left:311.580000px;}
.x7b_c00179{left:312.645000px;}
.x86_c00179{left:315.420000px;}
.x61_c00179{left:316.500000px;}
.xa0_c00179{left:320.580000px;}
.x3d_c00179{left:322.080000px;}
.x71_c00179{left:325.500000px;}
.xe6_c00179{left:327.420000px;}
.xd8_c00179{left:328.920000px;}
.xc6_c00179{left:330.000000px;}
.x87_c00179{left:331.500000px;}
.x67_c00179{left:333.000000px;}
.x102_c00179{left:334.920000px;}
.x1f_c00179{left:337.080000px;}
.x15_c00179{left:339.420000px;}
.x6e_c00179{left:340.500000px;}
.x2c_c00179{left:341.580000px;}
.xcf_c00179{left:346.920000px;}
.x49_c00179{left:348.420000px;}
.x91_c00179{left:351.000000px;}
.xe0_c00179{left:352.500000px;}
.x8_c00179{left:354.000000px;}
.xc2_c00179{left:355.080000px;}
.x68_c00179{left:357.000000px;}
.x99_c00179{left:358.500000px;}
.xff_c00179{left:361.080000px;}
.x3e_c00179{left:363.000000px;}
.x52_c00179{left:364.500000px;}
.xaf_c00179{left:366.420000px;}
.x16_c00179{left:368.580000px;}
.xe7_c00179{left:370.920000px;}
.xc7_c00179{left:373.500000px;}
.xa7_c00179{left:375.000000px;}
.x62_c00179{left:378.000000px;}
.xba_c00179{left:379.500000px;}
.x72_c00179{left:380.580000px;}
.x20_c00179{left:386.775000px;}
.xd9_c00179{left:388.500000px;}
.x9_c00179{left:391.080000px;}
.x7c_c00179{left:393.000000px;}
.x5b_c00179{left:396.000000px;}
.xfa_c00179{left:397.080000px;}
.xe1_c00179{left:398.580000px;}
.x2_c00179{left:400.500000px;}
.xa1_c00179{left:404.355000px;}
.x33_c00179{left:406.275000px;}
.xa8_c00179{left:408.000000px;}
.x92_c00179{left:409.920000px;}
.x88_c00179{left:411.000000px;}
.x4a_c00179{left:412.920000px;}
.x9f_c00179{left:414.000000px;}
.xe8_c00179{left:415.920000px;}
.x17_c00179{left:417.420000px;}
.x21_c00179{left:418.500000px;}
.x63_c00179{left:419.775000px;}
.x53_c00179{left:422.580000px;}
.x38_c00179{left:429.000000px;}
.xa9_c00179{left:432.420000px;}
.xf1_c00179{left:433.500000px;}
.xb0_c00179{left:436.920000px;}
.x73_c00179{left:438.000000px;}
.xda_c00179{left:439.500000px;}
.xf5_c00179{left:440.580000px;}
.x89_c00179{left:442.500000px;}
.xe2_c00179{left:444.000000px;}
.xc8_c00179{left:445.080000px;}
.xb6_c00179{left:447.000000px;}
.x103_c00179{left:448.080000px;}
.x74_c00179{left:450.000000px;}
.x6f_c00179{left:452.580000px;}
.x3f_c00179{left:453.855000px;}
.x4b_c00179{left:455.580000px;}
.xb7_c00179{left:457.500000px;}
.xa_c00179{left:459.000000px;}
.xec_c00179{left:462.000000px;}
.x93_c00179{left:468.420000px;}
.x69_c00179{left:472.500000px;}
.x54_c00179{left:473.775000px;}
.x40_c00179{left:475.500000px;}
.xf2_c00179{left:478.500000px;}
.x70_c00179{left:480.420000px;}
.xb_c00179{left:481.500000px;}
.x75_c00179{left:482.580000px;}
.x22_c00179{left:484.500000px;}
.x2d_c00179{left:485.580000px;}
.x4c_c00179{left:487.920000px;}
.xbb_c00179{left:491.145000px;}
.x18_c00179{left:496.500000px;}
.xf6_c00179{left:499.500000px;}
.xaa_c00179{left:502.920000px;}
.x8a_c00179{left:504.000000px;}
.x9a_c00179{left:505.500000px;}
.xdb_c00179{left:508.920000px;}
.x7d_c00179{left:510.000000px;}
.x76_c00179{left:511.080000px;}
.xc_c00179{left:512.580000px;}
.x39_c00179{left:514.920000px;}
.xc3_c00179{left:516.000000px;}
.x6a_c00179{left:517.500000px;}
.x7e_c00179{left:520.500000px;}
.x5c_c00179{left:522.000000px;}
.xef_c00179{left:524.580000px;}
.x41_c00179{left:527.775000px;}
.xab_c00179{left:529.500000px;}
.x23_c00179{left:531.420000px;}
.xd0_c00179{left:532.500000px;}
.xbc_c00179{left:533.580000px;}
.x55_c00179{left:535.500000px;}
.xb1_c00179{left:536.580000px;}
.xf7_c00179{left:538.500000px;}
.xa2_c00179{left:540.000000px;}
.x19_c00179{left:541.500000px;}
.xe3_c00179{left:549.000000px;}
.xd_c00179{left:550.080000px;}
.x34_c00179{left:551.775000px;}
.x7f_c00179{left:553.080000px;}
.x77_c00179{left:555.000000px;}
.x24_c00179{left:558.000000px;}
.xdc_c00179{left:560.580000px;}
.x8b_c00179{left:564.645000px;}
.xf9_c00179{left:568.500000px;}
.x42_c00179{left:570.000000px;}
.xf8_c00179{left:571.500000px;}
.xac_c00179{left:573.000000px;}
.x6b_c00179{left:574.500000px;}
.x94_c00179{left:576.000000px;}
.x2e_c00179{left:577.080000px;}
.x56_c00179{left:579.000000px;}
.x4d_c00179{left:580.080000px;}
.xc9_c00179{left:581.580000px;}
.x5d_c00179{left:584.580000px;}
.xe9_c00179{left:589.080000px;}
.xfb_c00179{left:590.580000px;}
.xdd_c00179{left:594.420000px;}
.x1a_c00179{left:595.500000px;}
.xe_c00179{left:597.000000px;}
.x9b_c00179{left:598.080000px;}
.x3a_c00179{left:600.420000px;}
.xb8_c00179{left:604.080000px;}
.xc4_c00179{left:606.000000px;}
.xa3_c00179{left:607.500000px;}
.x8c_c00179{left:609.000000px;}
.x78_c00179{left:612.000000px;}
.x25_c00179{left:613.500000px;}
.x95_c00179{left:614.580000px;}
.x4e_c00179{left:616.500000px;}
.xc5_c00179{left:618.000000px;}
.x57_c00179{left:619.080000px;}
.x80_c00179{left:624.000000px;}
.x1b_c00179{left:627.000000px;}
.x35_c00179{left:628.500000px;}
.x43_c00179{left:630.000000px;}
.xb9_c00179{left:631.500000px;}
.x6c_c00179{left:632.580000px;}
.xf_c00179{left:634.080000px;}
.x2f_c00179{left:635.580000px;}
.x58_c00179{left:639.420000px;}
.xed_c00179{left:646.920000px;}
.x96_c00179{left:650.355000px;}
.x44_c00179{left:651.420000px;}
.x81_c00179{left:652.920000px;}
.x9c_c00179{left:655.500000px;}
.xd4_c00179{left:657.420000px;}
.x10_c00179{left:661.500000px;}
.x1c_c00179{left:663.000000px;}
.x8d_c00179{left:664.080000px;}
.x104_c00179{left:665.145000px;}
.x26_c00179{left:669.000000px;}
.xbd_c00179{left:672.000000px;}
.xb2_c00179{left:673.500000px;}
.x82_c00179{left:678.000000px;}
.x11_c00179{left:679.500000px;}
.x1d_c00179{left:680.580000px;}
.xe4_c00179{left:684.000000px;}
.xfc_c00179{left:688.080000px;}
.x8e_c00179{left:691.080000px;}
.xa4_c00179{left:693.000000px;}
.x30_c00179{left:694.275000px;}
.x100_c00179{left:696.420000px;}
.xd5_c00179{left:699.000000px;}
.x4f_c00179{left:704.580000px;}
.xb3_c00179{left:706.920000px;}
.x36_c00179{left:708.000000px;}
.x27_c00179{left:715.500000px;}
.xca_c00179{left:723.420000px;}
@media print{
.v2_c00179{vertical-align:-3.840000pt;}
.v0_c00179{vertical-align:0.000000pt;}
.v1_c00179{vertical-align:6.826667pt;}
.ls2_c00179{letter-spacing:0.000000pt;}
.ls1_c00179{letter-spacing:10.504533pt;}
.ls0_c00179{letter-spacing:13.171200pt;}
.ws2_c00179{word-spacing:-5.737640pt;}
.ws3_c00179{word-spacing:-5.711730pt;}
.ws0_c00179{word-spacing:-5.354754pt;}
.ws4_c00179{word-spacing:0.000000pt;}
.ws1_c00179{word-spacing:0.539934pt;}
._0_c00179{width:12.332410pt;}
.fs7_c00179{font-size:3.040000pt;}
.fs6_c00179{font-size:12.106667pt;}
.fs1_c00179{font-size:16.640000pt;}
.fs5_c00179{font-size:18.133333pt;}
.fs3_c00179{font-size:22.666667pt;}
.fs0_c00179{font-size:25.706667pt;}
.fs4_c00179{font-size:28.746667pt;}
.fs2_c00179{font-size:31.733333pt;}
.y0_c00179{bottom:0.000000pt;}
.yfa_c00179{bottom:224.733333pt;}
.yfb_c00179{bottom:224.933333pt;}
.yfd_c00179{bottom:226.066667pt;}
.yfc_c00179{bottom:226.640000pt;}
.yf9_c00179{bottom:227.026667pt;}
.yf4_c00179{bottom:241.693333pt;}
.yf3_c00179{bottom:242.440000pt;}
.yf5_c00179{bottom:242.640000pt;}
.yf1_c00179{bottom:243.400000pt;}
.yf8_c00179{bottom:243.773333pt;}
.yf2_c00179{bottom:244.360000pt;}
.yf6_c00179{bottom:244.560000pt;}
.yf7_c00179{bottom:244.733333pt;}
.yec_c00179{bottom:259.773333pt;}
.yed_c00179{bottom:260.733333pt;}
.yee_c00179{bottom:261.693333pt;}
.yef_c00179{bottom:262.640000pt;}
.yf0_c00179{bottom:263.026667pt;}
.ye9_c00179{bottom:278.066667pt;}
.ye8_c00179{bottom:278.440000pt;}
.yea_c00179{bottom:279.400000pt;}
.yeb_c00179{bottom:280.360000pt;}
.ye4_c00179{bottom:294.066667pt;}
.ye5_c00179{bottom:294.640000pt;}
.ye6_c00179{bottom:296.560000pt;}
.ye7_c00179{bottom:296.733333pt;}
.ye3_c00179{bottom:297.693333pt;}
.ye0_c00179{bottom:312.360000pt;}
.ye2_c00179{bottom:313.106667pt;}
.ye1_c00179{bottom:313.893333pt;}
.ydf_c00179{bottom:314.640000pt;}
.yde_c00179{bottom:315.026667pt;}
.yd9_c00179{bottom:330.440000pt;}
.ydb_c00179{bottom:331.773333pt;}
.ydc_c00179{bottom:332.360000pt;}
.ydd_c00179{bottom:333.693333pt;}
.yda_c00179{bottom:333.706667pt;}
.yd8_c00179{bottom:358.066667pt;}
.yd6_c00179{bottom:371.400000pt;}
.yd1_c00179{bottom:371.600000pt;}
.yd4_c00179{bottom:372.360000pt;}
.yd7_c00179{bottom:372.933333pt;}
.yd2_c00179{bottom:373.306667pt;}
.yd5_c00179{bottom:373.893333pt;}
.yd3_c00179{bottom:374.266667pt;}
.yce_c00179{bottom:383.973333pt;}
.ycb_c00179{bottom:384.733333pt;}
.ycc_c00179{bottom:385.693333pt;}
.yd0_c00179{bottom:385.893333pt;}
.ycd_c00179{bottom:386.066667pt;}
.ycf_c00179{bottom:386.640000pt;}
.yc6_c00179{bottom:397.306667pt;}
.yc4_c00179{bottom:398.066667pt;}
.yc5_c00179{bottom:398.640000pt;}
.yc3_c00179{bottom:399.026667pt;}
.yc7_c00179{bottom:399.973333pt;}
.yca_c00179{bottom:400.173333pt;}
.yc8_c00179{bottom:400.560000pt;}
.yc9_c00179{bottom:400.933333pt;}
.yc2_c00179{bottom:411.400000pt;}
.ybd_c00179{bottom:411.973333pt;}
.ybe_c00179{bottom:412.360000pt;}
.yc0_c00179{bottom:412.560000pt;}
.ybf_c00179{bottom:413.306667pt;}
.yc1_c00179{bottom:414.266667pt;}
.yba_c00179{bottom:423.973333pt;}
.yb7_c00179{bottom:424.733333pt;}
.ybb_c00179{bottom:424.933333pt;}
.ybc_c00179{bottom:425.693333pt;}
.yb9_c00179{bottom:426.640000pt;}
.yb8_c00179{bottom:426.840000pt;}
.yb6_c00179{bottom:427.600000pt;}
.yb5_c00179{bottom:437.306667pt;}
.yb3_c00179{bottom:438.066667pt;}
.yaf_c00179{bottom:438.266667pt;}
.yb0_c00179{bottom:439.026667pt;}
.yb4_c00179{bottom:439.226667pt;}
.yb1_c00179{bottom:439.973333pt;}
.yb2_c00179{bottom:440.933333pt;}
.yad_c00179{bottom:450.640000pt;}
.yac_c00179{bottom:451.400000pt;}
.yae_c00179{bottom:451.600000pt;}
.ya9_c00179{bottom:452.360000pt;}
.yaa_c00179{bottom:452.560000pt;}
.yab_c00179{bottom:454.266667pt;}
.ya2_c00179{bottom:463.973333pt;}
.ya7_c00179{bottom:464.733333pt;}
.ya8_c00179{bottom:465.306667pt;}
.ya3_c00179{bottom:465.693333pt;}
.ya4_c00179{bottom:466.266667pt;}
.ya5_c00179{bottom:466.640000pt;}
.ya6_c00179{bottom:467.600000pt;}
.ya1_c00179{bottom:476.733333pt;}
.y9f_c00179{bottom:477.306667pt;}
.y9e_c00179{bottom:478.066667pt;}
.ya0_c00179{bottom:478.640000pt;}
.y9d_c00179{bottom:479.973333pt;}
.y9b_c00179{bottom:489.306667pt;}
.y9a_c00179{bottom:491.026667pt;}
.y99_c00179{bottom:491.973333pt;}
.y98_c00179{bottom:492.560000pt;}
.y9c_c00179{bottom:492.933333pt;}
.y97_c00179{bottom:504.360000pt;}
.y96_c00179{bottom:506.266667pt;}
.y95_c00179{bottom:515.973333pt;}
.y90_c00179{bottom:516.733333pt;}
.y92_c00179{bottom:516.933333pt;}
.y8f_c00179{bottom:517.893333pt;}
.y91_c00179{bottom:518.640000pt;}
.y94_c00179{bottom:518.840000pt;}
.y93_c00179{bottom:519.600000pt;}
.y8c_c00179{bottom:529.306667pt;}
.y8d_c00179{bottom:530.066667pt;}
.y8b_c00179{bottom:531.026667pt;}
.y8e_c00179{bottom:532.933333pt;}
.y89_c00179{bottom:543.026667pt;}
.y87_c00179{bottom:544.360000pt;}
.y86_c00179{bottom:544.560000pt;}
.y8a_c00179{bottom:544.933333pt;}
.y88_c00179{bottom:545.306667pt;}
.y7f_c00179{bottom:556.360000pt;}
.y85_c00179{bottom:556.733333pt;}
.y7e_c00179{bottom:556.933333pt;}
.y80_c00179{bottom:557.506667pt;}
.y83_c00179{bottom:557.693333pt;}
.y81_c00179{bottom:558.266667pt;}
.y82_c00179{bottom:558.640000pt;}
.y84_c00179{bottom:558.840000pt;}
.y7d_c00179{bottom:568.733333pt;}
.y7c_c00179{bottom:582.640000pt;}
.y79_c00179{bottom:583.026667pt;}
.y78_c00179{bottom:583.973333pt;}
.y7a_c00179{bottom:584.360000pt;}
.y7b_c00179{bottom:584.560000pt;}
.y77_c00179{bottom:584.933333pt;}
.y72_c00179{bottom:595.600000pt;}
.y74_c00179{bottom:596.360000pt;}
.y75_c00179{bottom:596.560000pt;}
.y73_c00179{bottom:597.306667pt;}
.y76_c00179{bottom:598.266667pt;}
.y6c_c00179{bottom:607.973333pt;}
.y6f_c00179{bottom:608.733333pt;}
.y6e_c00179{bottom:608.933333pt;}
.y6d_c00179{bottom:609.693333pt;}
.y70_c00179{bottom:610.640000pt;}
.y71_c00179{bottom:611.600000pt;}
.y6b_c00179{bottom:621.306667pt;}
.y69_c00179{bottom:622.066667pt;}
.y67_c00179{bottom:622.266667pt;}
.y6a_c00179{bottom:623.026667pt;}
.y68_c00179{bottom:623.973333pt;}
.y66_c00179{bottom:635.026667pt;}
.y65_c00179{bottom:635.400000pt;}
.y63_c00179{bottom:636.360000pt;}
.y62_c00179{bottom:637.306667pt;}
.y64_c00179{bottom:638.266667pt;}
.y61_c00179{bottom:649.693333pt;}
.y5f_c00179{bottom:650.640000pt;}
.y60_c00179{bottom:651.600000pt;}
.y5e_c00179{bottom:661.306667pt;}
.y5d_c00179{bottom:662.066667pt;}
.y58_c00179{bottom:662.266667pt;}
.y5b_c00179{bottom:663.026667pt;}
.y5c_c00179{bottom:663.226667pt;}
.y5a_c00179{bottom:663.973333pt;}
.y59_c00179{bottom:664.933333pt;}
.y57_c00179{bottom:675.026667pt;}
.y56_c00179{bottom:676.933333pt;}
.y4f_c00179{bottom:686.640000pt;}
.y55_c00179{bottom:687.400000pt;}
.y50_c00179{bottom:688.360000pt;}
.y51_c00179{bottom:688.560000pt;}
.y53_c00179{bottom:689.306667pt;}
.y54_c00179{bottom:689.506667pt;}
.y52_c00179{bottom:690.266667pt;}
.y48_c00179{bottom:699.973333pt;}
.y4e_c00179{bottom:700.733333pt;}
.y46_c00179{bottom:700.933333pt;}
.y4a_c00179{bottom:701.693333pt;}
.y4d_c00179{bottom:702.066667pt;}
.y49_c00179{bottom:702.640000pt;}
.y4c_c00179{bottom:702.840000pt;}
.y4b_c00179{bottom:703.026667pt;}
.y47_c00179{bottom:703.600000pt;}
.y45_c00179{bottom:713.306667pt;}
.y41_c00179{bottom:714.066667pt;}
.y44_c00179{bottom:715.026667pt;}
.y43_c00179{bottom:715.973333pt;}
.y40_c00179{bottom:716.173333pt;}
.y42_c00179{bottom:716.933333pt;}
.y3f_c00179{bottom:727.400000pt;}
.y3c_c00179{bottom:728.360000pt;}
.y3b_c00179{bottom:729.306667pt;}
.y3e_c00179{bottom:729.506667pt;}
.y3d_c00179{bottom:730.266667pt;}
.y36_c00179{bottom:740.733333pt;}
.y37_c00179{bottom:741.506667pt;}
.y3a_c00179{bottom:741.693333pt;}
.y35_c00179{bottom:741.893333pt;}
.y38_c00179{bottom:742.266667pt;}
.y39_c00179{bottom:743.600000pt;}
.y34_c00179{bottom:769.106667pt;}
.y33_c00179{bottom:771.026667pt;}
.y2f_c00179{bottom:786.066667pt;}
.y30_c00179{bottom:786.440000pt;}
.y32_c00179{bottom:787.226667pt;}
.y31_c00179{bottom:787.973333pt;}
.y2e_c00179{bottom:788.360000pt;}
.y2a_c00179{bottom:803.773333pt;}
.y2d_c00179{bottom:805.306667pt;}
.y2c_c00179{bottom:805.693333pt;}
.y2b_c00179{bottom:806.640000pt;}
.y26_c00179{bottom:821.106667pt;}
.y27_c00179{bottom:821.893333pt;}
.y29_c00179{bottom:822.640000pt;}
.y28_c00179{bottom:823.026667pt;}
.y21_c00179{bottom:838.440000pt;}
.y22_c00179{bottom:839.400000pt;}
.y23_c00179{bottom:839.600000pt;}
.y24_c00179{bottom:839.773333pt;}
.y20_c00179{bottom:840.360000pt;}
.y25_c00179{bottom:841.306667pt;}
.y1c_c00179{bottom:855.400000pt;}
.y1d_c00179{bottom:855.773333pt;}
.y1e_c00179{bottom:857.693333pt;}
.y1f_c00179{bottom:857.893333pt;}
.y18_c00179{bottom:872.360000pt;}
.y19_c00179{bottom:873.106667pt;}
.y1a_c00179{bottom:875.026667pt;}
.y1b_c00179{bottom:875.973333pt;}
.y15_c00179{bottom:890.440000pt;}
.y16_c00179{bottom:891.400000pt;}
.y12_c00179{bottom:892.360000pt;}
.y14_c00179{bottom:892.560000pt;}
.y13_c00179{bottom:893.306667pt;}
.y17_c00179{bottom:893.693333pt;}
.yf_c00179{bottom:907.773333pt;}
.y11_c00179{bottom:908.733333pt;}
.ye_c00179{bottom:909.693333pt;}
.yd_c00179{bottom:910.640000pt;}
.y10_c00179{bottom:911.026667pt;}
.y8_c00179{bottom:925.106667pt;}
.yb_c00179{bottom:926.440000pt;}
.ya_c00179{bottom:927.026667pt;}
.y9_c00179{bottom:927.226667pt;}
.y7_c00179{bottom:927.973333pt;}
.yc_c00179{bottom:928.360000pt;}
.y4_c00179{bottom:943.773333pt;}
.y5_c00179{bottom:944.560000pt;}
.y3_c00179{bottom:945.693333pt;}
.y6_c00179{bottom:946.640000pt;}
.y1_c00179{bottom:977.693333pt;}
.y2_c00179{bottom:980.560000pt;}
.ha_c00179{height:3.739141pt;}
.h7_c00179{height:14.890964pt;}
.h2_c00179{height:20.466875pt;}
.h6_c00179{height:22.303646pt;}
.h9_c00179{height:24.039557pt;}
.h4_c00179{height:27.879557pt;}
.h1_c00179{height:31.618698pt;}
.h8_c00179{height:34.706224pt;}
.h5_c00179{height:35.357839pt;}
.h3_c00179{height:39.031380pt;}
.h0_c00179{height:1186.666667pt;}
.w0_c00179{width:782.666667pt;}
.x0_c00179{left:0.000000pt;}
.xfd_c00179{left:132.000000pt;}
.xd1_c00179{left:132.960000pt;}
.x31_c00179{left:134.293333pt;}
.xee_c00179{left:135.426667pt;}
.x3_c00179{left:136.373333pt;}
.x1_c00179{left:137.706667pt;}
.xa5_c00179{left:144.000000pt;}
.x9d_c00179{left:145.333333pt;}
.xad_c00179{left:147.040000pt;}
.x64_c00179{left:148.373333pt;}
.x3b_c00179{left:149.333333pt;}
.x101_c00179{left:157.706667pt;}
.xd6_c00179{left:158.666667pt;}
.x4_c00179{left:160.000000pt;}
.x8f_c00179{left:161.706667pt;}
.x83_c00179{left:162.666667pt;}
.x65_c00179{left:164.000000pt;}
.xe5_c00179{left:165.706667pt;}
.x97_c00179{left:167.040000pt;}
.x32_c00179{left:168.573333pt;}
.xea_c00179{left:169.706667pt;}
.x28_c00179{left:170.666667pt;}
.xde_c00179{left:171.626667pt;}
.xcb_c00179{left:174.293333pt;}
.xf3_c00179{left:175.626667pt;}
.xfe_c00179{left:177.333333pt;}
.x3c_c00179{left:178.293333pt;}
.x12_c00179{left:180.000000pt;}
.xeb_c00179{left:181.333333pt;}
.x45_c00179{left:182.666667pt;}
.xbe_c00179{left:184.000000pt;}
.x37_c00179{left:185.333333pt;}
.xa6_c00179{left:189.333333pt;}
.x5e_c00179{left:190.666667pt;}
.x84_c00179{left:192.000000pt;}
.xd2_c00179{left:193.333333pt;}
.xbf_c00179{left:194.666667pt;}
.xcc_c00179{left:198.293333pt;}
.x59_c00179{left:200.000000pt;}
.x46_c00179{left:201.333333pt;}
.x29_c00179{left:202.666667pt;}
.x5_c00179{left:205.333333pt;}
.x79_c00179{left:208.000000pt;}
.x9e_c00179{left:208.960000pt;}
.x5f_c00179{left:211.040000pt;}
.xd7_c00179{left:217.333333pt;}
.xc1_c00179{left:218.666667pt;}
.x50_c00179{left:219.626667pt;}
.xf0_c00179{left:220.960000pt;}
.x90_c00179{left:224.960000pt;}
.xae_c00179{left:226.666667pt;}
.x13_c00179{left:230.293333pt;}
.x6_c00179{left:232.373333pt;}
.x60_c00179{left:234.293333pt;}
.x1e_c00179{left:235.626667pt;}
.x98_c00179{left:236.960000pt;}
.x51_c00179{left:237.906667pt;}
.xdf_c00179{left:239.040000pt;}
.x2a_c00179{left:242.666667pt;}
.xce_c00179{left:244.000000pt;}
.xf4_c00179{left:245.333333pt;}
.x85_c00179{left:246.666667pt;}
.xd3_c00179{left:248.373333pt;}
.x47_c00179{left:249.706667pt;}
.x6d_c00179{left:253.333333pt;}
.xb4_c00179{left:254.293333pt;}
.x5a_c00179{left:255.626667pt;}
.x7_c00179{left:259.626667pt;}
.xcd_c00179{left:262.293333pt;}
.x7a_c00179{left:263.626667pt;}
.x2b_c00179{left:266.666667pt;}
.x66_c00179{left:267.626667pt;}
.x14_c00179{left:273.133333pt;}
.x48_c00179{left:274.666667pt;}
.xb5_c00179{left:276.000000pt;}
.xc0_c00179{left:276.960000pt;}
.x7b_c00179{left:277.906667pt;}
.x86_c00179{left:280.373333pt;}
.x61_c00179{left:281.333333pt;}
.xa0_c00179{left:284.960000pt;}
.x3d_c00179{left:286.293333pt;}
.x71_c00179{left:289.333333pt;}
.xe6_c00179{left:291.040000pt;}
.xd8_c00179{left:292.373333pt;}
.xc6_c00179{left:293.333333pt;}
.x87_c00179{left:294.666667pt;}
.x67_c00179{left:296.000000pt;}
.x102_c00179{left:297.706667pt;}
.x1f_c00179{left:299.626667pt;}
.x15_c00179{left:301.706667pt;}
.x6e_c00179{left:302.666667pt;}
.x2c_c00179{left:303.626667pt;}
.xcf_c00179{left:308.373333pt;}
.x49_c00179{left:309.706667pt;}
.x91_c00179{left:312.000000pt;}
.xe0_c00179{left:313.333333pt;}
.x8_c00179{left:314.666667pt;}
.xc2_c00179{left:315.626667pt;}
.x68_c00179{left:317.333333pt;}
.x99_c00179{left:318.666667pt;}
.xff_c00179{left:320.960000pt;}
.x3e_c00179{left:322.666667pt;}
.x52_c00179{left:324.000000pt;}
.xaf_c00179{left:325.706667pt;}
.x16_c00179{left:327.626667pt;}
.xe7_c00179{left:329.706667pt;}
.xc7_c00179{left:332.000000pt;}
.xa7_c00179{left:333.333333pt;}
.x62_c00179{left:336.000000pt;}
.xba_c00179{left:337.333333pt;}
.x72_c00179{left:338.293333pt;}
.x20_c00179{left:343.800000pt;}
.xd9_c00179{left:345.333333pt;}
.x9_c00179{left:347.626667pt;}
.x7c_c00179{left:349.333333pt;}
.x5b_c00179{left:352.000000pt;}
.xfa_c00179{left:352.960000pt;}
.xe1_c00179{left:354.293333pt;}
.x2_c00179{left:356.000000pt;}
.xa1_c00179{left:359.426667pt;}
.x33_c00179{left:361.133333pt;}
.xa8_c00179{left:362.666667pt;}
.x92_c00179{left:364.373333pt;}
.x88_c00179{left:365.333333pt;}
.x4a_c00179{left:367.040000pt;}
.x9f_c00179{left:368.000000pt;}
.xe8_c00179{left:369.706667pt;}
.x17_c00179{left:371.040000pt;}
.x21_c00179{left:372.000000pt;}
.x63_c00179{left:373.133333pt;}
.x53_c00179{left:375.626667pt;}
.x38_c00179{left:381.333333pt;}
.xa9_c00179{left:384.373333pt;}
.xf1_c00179{left:385.333333pt;}
.xb0_c00179{left:388.373333pt;}
.x73_c00179{left:389.333333pt;}
.xda_c00179{left:390.666667pt;}
.xf5_c00179{left:391.626667pt;}
.x89_c00179{left:393.333333pt;}
.xe2_c00179{left:394.666667pt;}
.xc8_c00179{left:395.626667pt;}
.xb6_c00179{left:397.333333pt;}
.x103_c00179{left:398.293333pt;}
.x74_c00179{left:400.000000pt;}
.x6f_c00179{left:402.293333pt;}
.x3f_c00179{left:403.426667pt;}
.x4b_c00179{left:404.960000pt;}
.xb7_c00179{left:406.666667pt;}
.xa_c00179{left:408.000000pt;}
.xec_c00179{left:410.666667pt;}
.x93_c00179{left:416.373333pt;}
.x69_c00179{left:420.000000pt;}
.x54_c00179{left:421.133333pt;}
.x40_c00179{left:422.666667pt;}
.xf2_c00179{left:425.333333pt;}
.x70_c00179{left:427.040000pt;}
.xb_c00179{left:428.000000pt;}
.x75_c00179{left:428.960000pt;}
.x22_c00179{left:430.666667pt;}
.x2d_c00179{left:431.626667pt;}
.x4c_c00179{left:433.706667pt;}
.xbb_c00179{left:436.573333pt;}
.x18_c00179{left:441.333333pt;}
.xf6_c00179{left:444.000000pt;}
.xaa_c00179{left:447.040000pt;}
.x8a_c00179{left:448.000000pt;}
.x9a_c00179{left:449.333333pt;}
.xdb_c00179{left:452.373333pt;}
.x7d_c00179{left:453.333333pt;}
.x76_c00179{left:454.293333pt;}
.xc_c00179{left:455.626667pt;}
.x39_c00179{left:457.706667pt;}
.xc3_c00179{left:458.666667pt;}
.x6a_c00179{left:460.000000pt;}
.x7e_c00179{left:462.666667pt;}
.x5c_c00179{left:464.000000pt;}
.xef_c00179{left:466.293333pt;}
.x41_c00179{left:469.133333pt;}
.xab_c00179{left:470.666667pt;}
.x23_c00179{left:472.373333pt;}
.xd0_c00179{left:473.333333pt;}
.xbc_c00179{left:474.293333pt;}
.x55_c00179{left:476.000000pt;}
.xb1_c00179{left:476.960000pt;}
.xf7_c00179{left:478.666667pt;}
.xa2_c00179{left:480.000000pt;}
.x19_c00179{left:481.333333pt;}
.xe3_c00179{left:488.000000pt;}
.xd_c00179{left:488.960000pt;}
.x34_c00179{left:490.466667pt;}
.x7f_c00179{left:491.626667pt;}
.x77_c00179{left:493.333333pt;}
.x24_c00179{left:496.000000pt;}
.xdc_c00179{left:498.293333pt;}
.x8b_c00179{left:501.906667pt;}
.xf9_c00179{left:505.333333pt;}
.x42_c00179{left:506.666667pt;}
.xf8_c00179{left:508.000000pt;}
.xac_c00179{left:509.333333pt;}
.x6b_c00179{left:510.666667pt;}
.x94_c00179{left:512.000000pt;}
.x2e_c00179{left:512.960000pt;}
.x56_c00179{left:514.666667pt;}
.x4d_c00179{left:515.626667pt;}
.xc9_c00179{left:516.960000pt;}
.x5d_c00179{left:519.626667pt;}
.xe9_c00179{left:523.626667pt;}
.xfb_c00179{left:524.960000pt;}
.xdd_c00179{left:528.373333pt;}
.x1a_c00179{left:529.333333pt;}
.xe_c00179{left:530.666667pt;}
.x9b_c00179{left:531.626667pt;}
.x3a_c00179{left:533.706667pt;}
.xb8_c00179{left:536.960000pt;}
.xc4_c00179{left:538.666667pt;}
.xa3_c00179{left:540.000000pt;}
.x8c_c00179{left:541.333333pt;}
.x78_c00179{left:544.000000pt;}
.x25_c00179{left:545.333333pt;}
.x95_c00179{left:546.293333pt;}
.x4e_c00179{left:548.000000pt;}
.xc5_c00179{left:549.333333pt;}
.x57_c00179{left:550.293333pt;}
.x80_c00179{left:554.666667pt;}
.x1b_c00179{left:557.333333pt;}
.x35_c00179{left:558.666667pt;}
.x43_c00179{left:560.000000pt;}
.xb9_c00179{left:561.333333pt;}
.x6c_c00179{left:562.293333pt;}
.xf_c00179{left:563.626667pt;}
.x2f_c00179{left:564.960000pt;}
.x58_c00179{left:568.373333pt;}
.xed_c00179{left:575.040000pt;}
.x96_c00179{left:578.093333pt;}
.x44_c00179{left:579.040000pt;}
.x81_c00179{left:580.373333pt;}
.x9c_c00179{left:582.666667pt;}
.xd4_c00179{left:584.373333pt;}
.x10_c00179{left:588.000000pt;}
.x1c_c00179{left:589.333333pt;}
.x8d_c00179{left:590.293333pt;}
.x104_c00179{left:591.240000pt;}
.x26_c00179{left:594.666667pt;}
.xbd_c00179{left:597.333333pt;}
.xb2_c00179{left:598.666667pt;}
.x82_c00179{left:602.666667pt;}
.x11_c00179{left:604.000000pt;}
.x1d_c00179{left:604.960000pt;}
.xe4_c00179{left:608.000000pt;}
.xfc_c00179{left:611.626667pt;}
.x8e_c00179{left:614.293333pt;}
.xa4_c00179{left:616.000000pt;}
.x30_c00179{left:617.133333pt;}
.x100_c00179{left:619.040000pt;}
.xd5_c00179{left:621.333333pt;}
.x4f_c00179{left:626.293333pt;}
.xb3_c00179{left:628.373333pt;}
.x36_c00179{left:629.333333pt;}
.x27_c00179{left:636.000000pt;}
.xca_c00179{left:643.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_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_ee2cf6f56d68fbe20884bb4a.woff2')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m78_c00180{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.m7a_c00180{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m92_c00180{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.maf_c00180{transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);}
.m86_c00180{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mcd_c00180{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m6e_c00180{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m5a_c00180{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mcc_c00180{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m94_c00180{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mdc_c00180{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.mc6_c00180{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m96_c00180{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.me9_c00180{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m9f_c00180{transform:matrix(0.395322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395322,0.000000,0.000000,0.250000,0,0);}
.m8e_c00180{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.mc4_c00180{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m5c_c00180{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mac_c00180{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m71_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);}
.m1e_c00180{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.mab_c00180{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m2d_c00180{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m35_c00180{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m65_c00180{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m5d_c00180{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m3b_c00180{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m89_c00180{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.md2_c00180{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.mca_c00180{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m5_c00180{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m62_c00180{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m16_c00180{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.mc2_c00180{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m31_c00180{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m60_c00180{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m6a_c00180{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.ma5_c00180{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.ma7_c00180{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m10_c00180{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m81_c00180{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m9d_c00180{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m28_c00180{transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);}
.m80_c00180{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m98_c00180{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m93_c00180{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m7e_c00180{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m44_c00180{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mb6_c00180{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mcf_c00180{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.md4_c00180{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m64_c00180{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m5e_c00180{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.mb7_c00180{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.mb0_c00180{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m9a_c00180{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.mc8_c00180{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m58_c00180{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m5f_c00180{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.mba_c00180{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m77_c00180{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.mb5_c00180{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.mbb_c00180{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.ma1_c00180{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.meb_c00180{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m4a_c00180{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mae_c00180{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.mb1_c00180{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m18_c00180{transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);}
.me1_c00180{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m95_c00180{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.maa_c00180{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m8b_c00180{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m67_c00180{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m85_c00180{transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);}
.m0_c00180{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.me2_c00180{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m48_c00180{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.mbd_c00180{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m90_c00180{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m4e_c00180{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m91_c00180{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m7d_c00180{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.ma8_c00180{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.m84_c00180{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m40_c00180{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.ma3_c00180{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m97_c00180{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.mad_c00180{transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);}
.m88_c00180{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.md8_c00180{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m38_c00180{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m3c_c00180{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mdb_c00180{transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);}
.m4b_c00180{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.mde_c00180{transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);}
.m4_c00180{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m1d_c00180{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m7c_c00180{transform:matrix(0.483193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483193,0.000000,0.000000,0.250000,0,0);}
.me6_c00180{transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);}
.me8_c00180{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.md5_c00180{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.mc7_c00180{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m2_c00180{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m7b_c00180{transform:matrix(0.490031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490031,0.000000,0.000000,0.250000,0,0);}
.m9c_c00180{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mb8_c00180{transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);}
.m1a_c00180{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m5b_c00180{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mcb_c00180{transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);}
.m42_c00180{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m1b_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);}
.m22_c00180{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m63_c00180{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m7_c00180{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m55_c00180{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.ma4_c00180{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m69_c00180{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m32_c00180{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m3_c00180{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m6f_c00180{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m11_c00180{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m9e_c00180{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m3a_c00180{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.md9_c00180{transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);}
.m2a_c00180{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.m2b_c00180{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m13_c00180{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mbc_c00180{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m1c_c00180{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m3d_c00180{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m72_c00180{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m7f_c00180{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.md_c00180{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m47_c00180{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mdd_c00180{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.ma_c00180{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m1f_c00180{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m17_c00180{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mc1_c00180{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m20_c00180{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m57_c00180{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m9_c00180{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m23_c00180{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m15_c00180{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m6c_c00180{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.ma9_c00180{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m4f_c00180{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.mb2_c00180{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m8f_c00180{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mda_c00180{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m74_c00180{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mbf_c00180{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.md0_c00180{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.mce_c00180{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m83_c00180{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m45_c00180{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m43_c00180{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m36_c00180{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m61_c00180{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m37_c00180{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m6d_c00180{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m39_c00180{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m9b_c00180{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mc3_c00180{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.me_c00180{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mb_c00180{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m53_c00180{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.me5_c00180{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m49_c00180{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m70_c00180{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);}
.mb9_c00180{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m25_c00180{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m46_c00180{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m6b_c00180{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m75_c00180{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m73_c00180{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m79_c00180{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m21_c00180{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.me3_c00180{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.mc_c00180{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mc9_c00180{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m8c_c00180{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.md1_c00180{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m3e_c00180{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.md3_c00180{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.ma2_c00180{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m30_c00180{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.mc0_c00180{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m27_c00180{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mb4_c00180{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m50_c00180{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m99_c00180{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m8a_c00180{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m2e_c00180{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m2c_c00180{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);}
.m52_c00180{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m56_c00180{transform:matrix(0.610588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610588,0.000000,0.000000,0.250000,0,0);}
.m34_c00180{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m19_c00180{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.ma0_c00180{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m1_c00180{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.m68_c00180{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m59_c00180{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m51_c00180{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.m2f_c00180{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.me4_c00180{transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);}
.m8d_c00180{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m26_c00180{transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);}
.m24_c00180{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m33_c00180{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m76_c00180{transform:matrix(0.638804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638804,0.000000,0.000000,0.250000,0,0);}
.mdf_c00180{transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);}
.m82_c00180{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m87_c00180{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.md6_c00180{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.mb3_c00180{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m12_c00180{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m8_c00180{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m6_c00180{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.me7_c00180{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.me0_c00180{transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);}
.m4c_c00180{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mc5_c00180{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m29_c00180{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m14_c00180{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mea_c00180{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.md7_c00180{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m3f_c00180{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m66_c00180{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m54_c00180{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m4d_c00180{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m41_c00180{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mf_c00180{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.ma6_c00180{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mbe_c00180{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.v1_c00180{vertical-align:-18.000000px;}
.v0_c00180{vertical-align:0.000000px;}
.v2_c00180{vertical-align:12.000000px;}
.ls1_c00180{letter-spacing:0.000000px;}
.ls0_c00180{letter-spacing:14.760480px;}
.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:-8.678629px;}
.ws1_c00180{word-spacing:-5.192990px;}
.ws0_c00180{word-spacing:-3.553655px;}
.ws3_c00180{word-spacing:0.000000px;}
.fc0_c00180{color:transparent;}
.fs5_c00180{font-size:18.720000px;}
.fs1_c00180{font-size:20.400000px;}
.fs4_c00180{font-size:25.500000px;}
.fs0_c00180{font-size:28.920000px;}
.fs2_c00180{font-size:32.340000px;}
.fs3_c00180{font-size:35.700000px;}
.fs6_c00180{font-size:39.120000px;}
.y0_c00180{bottom:0.000000px;}
.yca_c00180{bottom:250.905000px;}
.ycb_c00180{bottom:251.745000px;}
.ycd_c00180{bottom:252.825000px;}
.yc9_c00180{bottom:253.905000px;}
.yc8_c00180{bottom:254.325000px;}
.ycc_c00180{bottom:254.970000px;}
.yc6_c00180{bottom:269.970000px;}
.yc5_c00180{bottom:270.405000px;}
.yc7_c00180{bottom:272.325000px;}
.yc3_c00180{bottom:273.405000px;}
.yc4_c00180{bottom:274.470000px;}
.yc1_c00180{bottom:290.745000px;}
.yc2_c00180{bottom:292.470000px;}
.yc0_c00180{bottom:292.905000px;}
.ybf_c00180{bottom:310.245000px;}
.yba_c00180{bottom:311.550000px;}
.ybb_c00180{bottom:311.745000px;}
.ybe_c00180{bottom:312.405000px;}
.ybd_c00180{bottom:312.630000px;}
.yb8_c00180{bottom:313.050000px;}
.yb9_c00180{bottom:313.470000px;}
.ybc_c00180{bottom:313.905000px;}
.yb4_c00180{bottom:328.905000px;}
.yb6_c00180{bottom:331.245000px;}
.yb5_c00180{bottom:332.130000px;}
.yb7_c00180{bottom:332.325000px;}
.yb3_c00180{bottom:333.405000px;}
.yb2_c00180{bottom:334.470000px;}
.yaf_c00180{bottom:350.745000px;}
.yb1_c00180{bottom:351.630000px;}
.yad_c00180{bottom:351.825000px;}
.yb0_c00180{bottom:352.470000px;}
.yae_c00180{bottom:352.905000px;}
.yac_c00180{bottom:367.905000px;}
.yab_c00180{bottom:371.130000px;}
.ya9_c00180{bottom:371.325000px;}
.ya6_c00180{bottom:371.745000px;}
.yaa_c00180{bottom:371.970000px;}
.ya8_c00180{bottom:372.405000px;}
.ya7_c00180{bottom:372.630000px;}
.ya4_c00180{bottom:389.325000px;}
.ya1_c00180{bottom:389.745000px;}
.ya3_c00180{bottom:390.630000px;}
.ya2_c00180{bottom:391.905000px;}
.ya5_c00180{bottom:392.970000px;}
.y9e_c00180{bottom:409.245000px;}
.ya0_c00180{bottom:410.325000px;}
.y9d_c00180{bottom:411.405000px;}
.y9f_c00180{bottom:412.470000px;}
.y97_c00180{bottom:427.905000px;}
.y9b_c00180{bottom:428.745000px;}
.y95_c00180{bottom:430.245000px;}
.y9c_c00180{bottom:430.470000px;}
.y9a_c00180{bottom:430.905000px;}
.y96_c00180{bottom:431.130000px;}
.y98_c00180{bottom:431.325000px;}
.y99_c00180{bottom:432.405000px;}
.y94_c00180{bottom:448.245000px;}
.y91_c00180{bottom:449.745000px;}
.y93_c00180{bottom:450.405000px;}
.y92_c00180{bottom:450.630000px;}
.y90_c00180{bottom:451.905000px;}
.y8f_c00180{bottom:468.405000px;}
.y8e_c00180{bottom:471.405000px;}
.y8c_c00180{bottom:488.745000px;}
.y8d_c00180{bottom:489.630000px;}
.y8b_c00180{bottom:490.470000px;}
.y8a_c00180{bottom:490.905000px;}
.y89_c00180{bottom:510.630000px;}
.y87_c00180{bottom:527.745000px;}
.y88_c00180{bottom:527.970000px;}
.y86_c00180{bottom:528.825000px;}
.y84_c00180{bottom:529.245000px;}
.y85_c00180{bottom:529.905000px;}
.y82_c00180{bottom:530.970000px;}
.y83_c00180{bottom:531.405000px;}
.y81_c00180{bottom:548.325000px;}
.y7e_c00180{bottom:548.745000px;}
.y80_c00180{bottom:549.825000px;}
.y7f_c00180{bottom:550.905000px;}
.y7a_c00180{bottom:568.245000px;}
.y7c_c00180{bottom:569.130000px;}
.y7b_c00180{bottom:570.405000px;}
.y7d_c00180{bottom:571.470000px;}
.y75_c00180{bottom:586.905000px;}
.y78_c00180{bottom:587.745000px;}
.y79_c00180{bottom:588.630000px;}
.y77_c00180{bottom:588.825000px;}
.y76_c00180{bottom:589.905000px;}
.y74_c00180{bottom:607.245000px;}
.y72_c00180{bottom:609.405000px;}
.y71_c00180{bottom:609.630000px;}
.y73_c00180{bottom:610.470000px;}
.y6c_c00180{bottom:625.905000px;}
.y70_c00180{bottom:626.745000px;}
.y6d_c00180{bottom:627.825000px;}
.y6b_c00180{bottom:628.905000px;}
.y6f_c00180{bottom:629.130000px;}
.y6e_c00180{bottom:629.970000px;}
.y6a_c00180{bottom:646.680000px;}
.y68_c00180{bottom:647.745000px;}
.y69_c00180{bottom:648.405000px;}
.y67_c00180{bottom:649.905000px;}
.y64_c00180{bottom:665.970000px;}
.y62_c00180{bottom:667.245000px;}
.y65_c00180{bottom:668.130000px;}
.y66_c00180{bottom:668.325000px;}
.y63_c00180{bottom:669.405000px;}
.y5f_c00180{bottom:685.905000px;}
.y5e_c00180{bottom:686.745000px;}
.y60_c00180{bottom:687.630000px;}
.y61_c00180{bottom:687.825000px;}
.y5d_c00180{bottom:688.905000px;}
.y5a_c00180{bottom:704.970000px;}
.y5c_c00180{bottom:706.245000px;}
.y59_c00180{bottom:707.325000px;}
.y58_c00180{bottom:708.405000px;}
.y5b_c00180{bottom:708.630000px;}
.y54_c00180{bottom:725.745000px;}
.y56_c00180{bottom:726.825000px;}
.y53_c00180{bottom:727.905000px;}
.y57_c00180{bottom:728.130000px;}
.y55_c00180{bottom:728.970000px;}
.y4f_c00180{bottom:745.245000px;}
.y50_c00180{bottom:746.325000px;}
.y4e_c00180{bottom:747.405000px;}
.y51_c00180{bottom:747.630000px;}
.y52_c00180{bottom:747.825000px;}
.y4d_c00180{bottom:748.470000px;}
.y49_c00180{bottom:764.745000px;}
.y48_c00180{bottom:765.180000px;}
.y4a_c00180{bottom:766.245000px;}
.y4b_c00180{bottom:767.325000px;}
.y4c_c00180{bottom:767.970000px;}
.y47_c00180{bottom:768.405000px;}
.y46_c00180{bottom:786.630000px;}
.y45_c00180{bottom:787.905000px;}
.y42_c00180{bottom:802.905000px;}
.y40_c00180{bottom:805.245000px;}
.y41_c00180{bottom:806.130000px;}
.y43_c00180{bottom:806.970000px;}
.y3f_c00180{bottom:807.405000px;}
.y44_c00180{bottom:808.470000px;}
.y3b_c00180{bottom:824.745000px;}
.y3d_c00180{bottom:825.630000px;}
.y3c_c00180{bottom:826.905000px;}
.y3e_c00180{bottom:827.970000px;}
.y37_c00180{bottom:844.245000px;}
.y38_c00180{bottom:845.130000px;}
.y39_c00180{bottom:845.325000px;}
.y3a_c00180{bottom:845.970000px;}
.y36_c00180{bottom:846.405000px;}
.y32_c00180{bottom:863.745000px;}
.y35_c00180{bottom:865.245000px;}
.y33_c00180{bottom:865.905000px;}
.y34_c00180{bottom:866.130000px;}
.y31_c00180{bottom:883.470000px;}
.y2c_c00180{bottom:884.745000px;}
.y30_c00180{bottom:885.405000px;}
.y2f_c00180{bottom:885.630000px;}
.y2d_c00180{bottom:886.470000px;}
.y2e_c00180{bottom:886.905000px;}
.y2a_c00180{bottom:902.745000px;}
.y28_c00180{bottom:904.905000px;}
.y29_c00180{bottom:905.130000px;}
.y2b_c00180{bottom:905.970000px;}
.y27_c00180{bottom:923.325000px;}
.y25_c00180{bottom:923.745000px;}
.y22_c00180{bottom:924.405000px;}
.y26_c00180{bottom:924.630000px;}
.y24_c00180{bottom:924.825000px;}
.y23_c00180{bottom:925.905000px;}
.y20_c00180{bottom:943.245000px;}
.y1f_c00180{bottom:944.130000px;}
.y21_c00180{bottom:944.325000px;}
.y1e_c00180{bottom:945.405000px;}
.y1a_c00180{bottom:962.745000px;}
.y1d_c00180{bottom:963.825000px;}
.y1c_c00180{bottom:964.470000px;}
.y1b_c00180{bottom:964.905000px;}
.y19_c00180{bottom:965.970000px;}
.y17_c00180{bottom:982.245000px;}
.y18_c00180{bottom:983.970000px;}
.y16_c00180{bottom:984.405000px;}
.y15_c00180{bottom:985.470000px;}
.y12_c00180{bottom:1001.745000px;}
.y10_c00180{bottom:1002.630000px;}
.y14_c00180{bottom:1002.825000px;}
.y13_c00180{bottom:1003.905000px;}
.y11_c00180{bottom:1004.970000px;}
.ye_c00180{bottom:1021.245000px;}
.yf_c00180{bottom:1022.130000px;}
.yd_c00180{bottom:1023.405000px;}
.y8_c00180{bottom:1040.745000px;}
.yb_c00180{bottom:1041.825000px;}
.y9_c00180{bottom:1042.905000px;}
.ya_c00180{bottom:1043.130000px;}
.yc_c00180{bottom:1043.970000px;}
.y5_c00180{bottom:1060.245000px;}
.y4_c00180{bottom:1061.325000px;}
.y3_c00180{bottom:1062.405000px;}
.y7_c00180{bottom:1062.630000px;}
.y6_c00180{bottom:1063.470000px;}
.y1_c00180{bottom:1099.905000px;}
.y2_c00180{bottom:1100.550000px;}
.h6_c00180{height:23.025234px;}
.h2_c00180{height:25.091602px;}
.h5_c00180{height:31.364502px;}
.h1_c00180{height:35.571035px;}
.h3_c00180{height:39.777568px;}
.h4_c00180{height:43.910303px;}
.h8_c00180{height:47.571035px;}
.h7_c00180{height:48.116836px;}
.h0_c00180{height:1335.000000px;}
.w0_c00180{width:880.500000px;}
.x0_c00180{left:0.000000px;}
.x3_c00180{left:151.920000px;}
.x9c_c00180{left:153.000000px;}
.xcc_c00180{left:154.500000px;}
.xbd_c00180{left:155.775000px;}
.x2d_c00180{left:169.500000px;}
.xe4_c00180{left:171.000000px;}
.x102_c00180{left:175.920000px;}
.x3c_c00180{left:178.500000px;}
.xa3_c00180{left:180.000000px;}
.x2e_c00180{left:181.500000px;}
.xb4_c00180{left:183.420000px;}
.x7a_c00180{left:187.920000px;}
.x13_c00180{left:189.000000px;}
.xcd_c00180{left:190.080000px;}
.x50_c00180{left:193.080000px;}
.xd3_c00180{left:194.580000px;}
.x4_c00180{left:196.080000px;}
.x5f_c00180{left:197.580000px;}
.xe9_c00180{left:199.080000px;}
.xe5_c00180{left:200.580000px;}
.xdb_c00180{left:201.645000px;}
.xf2_c00180{left:204.000000px;}
.x94_c00180{left:205.080000px;}
.x66_c00180{left:207.000000px;}
.xf9_c00180{left:208.500000px;}
.x2f_c00180{left:210.000000px;}
.x51_c00180{left:211.920000px;}
.xf7_c00180{left:213.000000px;}
.x8a_c00180{left:216.420000px;}
.x106_c00180{left:217.920000px;}
.x9d_c00180{left:220.080000px;}
.xfa_c00180{left:222.420000px;}
.x45_c00180{left:223.920000px;}
.x5_c00180{left:226.500000px;}
.x75_c00180{left:228.420000px;}
.xee_c00180{left:229.920000px;}
.x6d_c00180{left:232.500000px;}
.x10f_c00180{left:234.000000px;}
.x67_c00180{left:235.500000px;}
.x52_c00180{left:238.500000px;}
.x22_c00180{left:240.000000px;}
.xdc_c00180{left:241.500000px;}
.xc3_c00180{left:243.420000px;}
.x8b_c00180{left:244.500000px;}
.xb5_c00180{left:246.000000px;}
.xad_c00180{left:252.000000px;}
.x7b_c00180{left:253.500000px;}
.x110_c00180{left:254.580000px;}
.xd4_c00180{left:256.920000px;}
.xfb_c00180{left:258.000000px;}
.x60_c00180{left:259.920000px;}
.xe6_c00180{left:262.080000px;}
.x6e_c00180{left:265.500000px;}
.x95_c00180{left:266.580000px;}
.x3d_c00180{left:268.500000px;}
.x14_c00180{left:271.500000px;}
.x6_c00180{left:273.420000px;}
.x46_c00180{left:275.580000px;}
.x53_c00180{left:277.080000px;}
.x109_c00180{left:278.580000px;}
.xc9_c00180{left:283.080000px;}
.xea_c00180{left:285.420000px;}
.x30_c00180{left:287.580000px;}
.x8c_c00180{left:289.920000px;}
.x15_c00180{left:291.420000px;}
.xce_c00180{left:292.500000px;}
.x54_c00180{left:295.920000px;}
.xb6_c00180{left:300.000000px;}
.xbe_c00180{left:306.000000px;}
.x103_c00180{left:309.420000px;}
.x61_c00180{left:310.500000px;}
.xe1_c00180{left:313.500000px;}
.x16_c00180{left:315.000000px;}
.x23_c00180{left:316.500000px;}
.xa4_c00180{left:317.580000px;}
.xb7_c00180{left:321.000000px;}
.x47_c00180{left:324.000000px;}
.x8d_c00180{left:328.920000px;}
.xeb_c00180{left:330.000000px;}
.x7_c00180{left:331.500000px;}
.x17_c00180{left:334.500000px;}
.x76_c00180{left:337.920000px;}
.x82_c00180{left:340.500000px;}
.x48_c00180{left:342.420000px;}
.xd5_c00180{left:343.920000px;}
.x18_c00180{left:346.500000px;}
.x8_c00180{left:347.580000px;}
.x3e_c00180{left:349.500000px;}
.x68_c00180{left:351.420000px;}
.xbf_c00180{left:352.500000px;}
.x9e_c00180{left:357.420000px;}
.x31_c00180{left:358.500000px;}
.x8e_c00180{left:359.580000px;}
.xb8_c00180{left:361.500000px;}
.x83_c00180{left:363.000000px;}
.x62_c00180{left:364.500000px;}
.xf3_c00180{left:367.080000px;}
.x6f_c00180{left:369.000000px;}
.x55_c00180{left:370.500000px;}
.xae_c00180{left:372.000000px;}
.x96_c00180{left:373.920000px;}
.x19_c00180{left:376.500000px;}
.x7c_c00180{left:379.920000px;}
.x3f_c00180{left:381.420000px;}
.xec_c00180{left:382.500000px;}
.x24_c00180{left:384.000000px;}
.x9f_c00180{left:385.500000px;}
.xc4_c00180{left:387.420000px;}
.x8f_c00180{left:388.500000px;}
.x49_c00180{left:390.000000px;}
.x111_c00180{left:391.500000px;}
.x2_c00180{left:397.500000px;}
.x90_c00180{left:400.500000px;}
.x10c_c00180{left:402.420000px;}
.x98_c00180{left:404.580000px;}
.x9_c00180{left:406.500000px;}
.x32_c00180{left:407.580000px;}
.xb9_c00180{left:409.080000px;}
.x97_c00180{left:410.580000px;}
.x10a_c00180{left:412.080000px;}
.xe2_c00180{left:414.000000px;}
.xa5_c00180{left:415.500000px;}
.xaf_c00180{left:417.000000px;}
.xcf_c00180{left:418.920000px;}
.x56_c00180{left:423.000000px;}
.xc0_c00180{left:424.080000px;}
.xa_c00180{left:425.580000px;}
.x84_c00180{left:427.080000px;}
.x69_c00180{left:428.580000px;}
.xa6_c00180{left:430.500000px;}
.x10b_c00180{left:432.000000px;}
.xf4_c00180{left:433.500000px;}
.x25_c00180{left:436.500000px;}
.xba_c00180{left:438.420000px;}
.x4a_c00180{left:442.920000px;}
.x10d_c00180{left:444.000000px;}
.xfe_c00180{left:445.920000px;}
.x85_c00180{left:447.420000px;}
.x57_c00180{left:450.420000px;}
.x33_c00180{left:451.920000px;}
.x107_c00180{left:453.000000px;}
.x1a_c00180{left:454.920000px;}
.x7d_c00180{left:456.000000px;}
.x70_c00180{left:457.080000px;}
.xdd_c00180{left:462.000000px;}
.xbb_c00180{left:463.500000px;}
.xca_c00180{left:464.580000px;}
.x26_c00180{left:468.420000px;}
.x63_c00180{left:469.500000px;}
.xb_c00180{left:471.420000px;}
.x86_c00180{left:474.000000px;}
.x7e_c00180{left:477.000000px;}
.xa7_c00180{left:480.000000px;}
.x1b_c00180{left:481.080000px;}
.xde_c00180{left:484.080000px;}
.xc5_c00180{left:486.420000px;}
.x58_c00180{left:487.920000px;}
.xd6_c00180{left:490.500000px;}
.xa0_c00180{left:493.500000px;}
.xc_c00180{left:496.500000px;}
.x91_c00180{left:497.580000px;}
.x64_c00180{left:498.855000px;}
.xb0_c00180{left:500.580000px;}
.xc1_c00180{left:504.000000px;}
.x71_c00180{left:505.080000px;}
.x77_c00180{left:506.580000px;}
.xd7_c00180{left:508.500000px;}
.x34_c00180{left:509.580000px;}
.xc6_c00180{left:511.500000px;}
.xa8_c00180{left:513.000000px;}
.x112_c00180{left:514.500000px;}
.x7f_c00180{left:516.000000px;}
.xf8_c00180{left:517.500000px;}
.x40_c00180{left:518.580000px;}
.x4b_c00180{left:520.500000px;}
.x27_c00180{left:522.000000px;}
.xed_c00180{left:523.080000px;}
.xd0_c00180{left:524.580000px;}
.x1c_c00180{left:526.080000px;}
.xff_c00180{left:529.500000px;}
.xa9_c00180{left:531.420000px;}
.x104_c00180{left:534.000000px;}
.x41_c00180{left:537.000000px;}
.x35_c00180{left:538.500000px;}
.xdf_c00180{left:539.580000px;}
.x59_c00180{left:541.500000px;}
.xa1_c00180{left:546.420000px;}
.xb1_c00180{left:547.500000px;}
.xd_c00180{left:548.580000px;}
.x87_c00180{left:550.500000px;}
.xd1_c00180{left:554.580000px;}
.x1d_c00180{left:556.920000px;}
.xc7_c00180{left:559.080000px;}
.x5a_c00180{left:561.420000px;}
.x36_c00180{left:563.580000px;}
.x6a_c00180{left:565.080000px;}
.xe_c00180{left:567.420000px;}
.x72_c00180{left:569.580000px;}
.x4c_c00180{left:573.000000px;}
.x28_c00180{left:574.500000px;}
.xef_c00180{left:576.000000px;}
.xd8_c00180{left:577.920000px;}
.x108_c00180{left:580.500000px;}
.x1e_c00180{left:583.080000px;}
.xaa_c00180{left:585.420000px;}
.xd2_c00180{left:586.500000px;}
.x4d_c00180{left:588.000000px;}
.x29_c00180{left:589.920000px;}
.x113_c00180{left:591.000000px;}
.xbc_c00180{left:592.080000px;}
.x100_c00180{left:594.000000px;}
.xf_c00180{left:595.920000px;}
.x5b_c00180{left:597.000000px;}
.x105_c00180{left:598.080000px;}
.x42_c00180{left:602.580000px;}
.x37_c00180{left:604.080000px;}
.x114_c00180{left:607.500000px;}
.xc2_c00180{left:610.500000px;}
.xfc_c00180{left:612.420000px;}
.xc8_c00180{left:613.500000px;}
.x92_c00180{left:614.580000px;}
.x80_c00180{left:618.000000px;}
.xab_c00180{left:619.080000px;}
.x43_c00180{left:621.420000px;}
.xcb_c00180{left:622.920000px;}
.x78_c00180{left:624.000000px;}
.x1f_c00180{left:625.500000px;}
.xd9_c00180{left:626.580000px;}
.x6b_c00180{left:628.920000px;}
.xf5_c00180{left:630.000000px;}
.x65_c00180{left:631.080000px;}
.x73_c00180{left:633.420000px;}
.x38_c00180{left:634.500000px;}
.x5c_c00180{left:636.420000px;}
.xac_c00180{left:639.420000px;}
.xf0_c00180{left:640.500000px;}
.x2a_c00180{left:642.000000px;}
.x99_c00180{left:643.500000px;}
.x88_c00180{left:646.080000px;}
.x44_c00180{left:648.000000px;}
.xfd_c00180{left:649.500000px;}
.xf6_c00180{left:651.000000px;}
.x20_c00180{left:652.080000px;}
.x10_c00180{left:653.580000px;}
.x39_c00180{left:655.500000px;}
.xb2_c00180{left:658.080000px;}
.x4e_c00180{left:660.000000px;}
.x6c_c00180{left:661.500000px;}
.x74_c00180{left:662.580000px;}
.x93_c00180{left:664.500000px;}
.x79_c00180{left:666.000000px;}
.x9a_c00180{left:671.580000px;}
.xa2_c00180{left:673.500000px;}
.x101_c00180{left:675.000000px;}
.xf1_c00180{left:676.920000px;}
.xe7_c00180{left:678.420000px;}
.x3a_c00180{left:680.580000px;}
.xda_c00180{left:682.500000px;}
.x11_c00180{left:684.000000px;}
.xe0_c00180{left:687.000000px;}
.x21_c00180{left:688.080000px;}
.x2b_c00180{left:690.000000px;}
.x89_c00180{left:691.500000px;}
.xb3_c00180{left:694.080000px;}
.x5d_c00180{left:697.500000px;}
.x81_c00180{left:700.080000px;}
.x4f_c00180{left:702.000000px;}
.x1_c00180{left:703.920000px;}
.x12_c00180{left:706.920000px;}
.x2c_c00180{left:709.920000px;}
.xe3_c00180{left:712.080000px;}
.x3b_c00180{left:715.080000px;}
.x9b_c00180{left:717.000000px;}
.xe8_c00180{left:720.000000px;}
.x5e_c00180{left:721.500000px;}
.x10e_c00180{left:727.500000px;}
@media print{
.v1_c00180{vertical-align:-16.000000pt;}
.v0_c00180{vertical-align:0.000000pt;}
.v2_c00180{vertical-align:10.666667pt;}
.ls1_c00180{letter-spacing:0.000000pt;}
.ls0_c00180{letter-spacing:13.120427pt;}
.ws2_c00180{word-spacing:-7.714337pt;}
.ws1_c00180{word-spacing:-4.615991pt;}
.ws0_c00180{word-spacing:-3.158804pt;}
.ws3_c00180{word-spacing:0.000000pt;}
.fs5_c00180{font-size:16.640000pt;}
.fs1_c00180{font-size:18.133333pt;}
.fs4_c00180{font-size:22.666667pt;}
.fs0_c00180{font-size:25.706667pt;}
.fs2_c00180{font-size:28.746667pt;}
.fs3_c00180{font-size:31.733333pt;}
.fs6_c00180{font-size:34.773333pt;}
.y0_c00180{bottom:0.000000pt;}
.yca_c00180{bottom:223.026667pt;}
.ycb_c00180{bottom:223.773333pt;}
.ycd_c00180{bottom:224.733333pt;}
.yc9_c00180{bottom:225.693333pt;}
.yc8_c00180{bottom:226.066667pt;}
.ycc_c00180{bottom:226.640000pt;}
.yc6_c00180{bottom:239.973333pt;}
.yc5_c00180{bottom:240.360000pt;}
.yc7_c00180{bottom:242.066667pt;}
.yc3_c00180{bottom:243.026667pt;}
.yc4_c00180{bottom:243.973333pt;}
.yc1_c00180{bottom:258.440000pt;}
.yc2_c00180{bottom:259.973333pt;}
.yc0_c00180{bottom:260.360000pt;}
.ybf_c00180{bottom:275.773333pt;}
.yba_c00180{bottom:276.933333pt;}
.ybb_c00180{bottom:277.106667pt;}
.ybe_c00180{bottom:277.693333pt;}
.ybd_c00180{bottom:277.893333pt;}
.yb8_c00180{bottom:278.266667pt;}
.yb9_c00180{bottom:278.640000pt;}
.ybc_c00180{bottom:279.026667pt;}
.yb4_c00180{bottom:292.360000pt;}
.yb6_c00180{bottom:294.440000pt;}
.yb5_c00180{bottom:295.226667pt;}
.yb7_c00180{bottom:295.400000pt;}
.yb3_c00180{bottom:296.360000pt;}
.yb2_c00180{bottom:297.306667pt;}
.yaf_c00180{bottom:311.773333pt;}
.yb1_c00180{bottom:312.560000pt;}
.yad_c00180{bottom:312.733333pt;}
.yb0_c00180{bottom:313.306667pt;}
.yae_c00180{bottom:313.693333pt;}
.yac_c00180{bottom:327.026667pt;}
.yab_c00180{bottom:329.893333pt;}
.ya9_c00180{bottom:330.066667pt;}
.ya6_c00180{bottom:330.440000pt;}
.yaa_c00180{bottom:330.640000pt;}
.ya8_c00180{bottom:331.026667pt;}
.ya7_c00180{bottom:331.226667pt;}
.ya4_c00180{bottom:346.066667pt;}
.ya1_c00180{bottom:346.440000pt;}
.ya3_c00180{bottom:347.226667pt;}
.ya2_c00180{bottom:348.360000pt;}
.ya5_c00180{bottom:349.306667pt;}
.y9e_c00180{bottom:363.773333pt;}
.ya0_c00180{bottom:364.733333pt;}
.y9d_c00180{bottom:365.693333pt;}
.y9f_c00180{bottom:366.640000pt;}
.y97_c00180{bottom:380.360000pt;}
.y9b_c00180{bottom:381.106667pt;}
.y95_c00180{bottom:382.440000pt;}
.y9c_c00180{bottom:382.640000pt;}
.y9a_c00180{bottom:383.026667pt;}
.y96_c00180{bottom:383.226667pt;}
.y98_c00180{bottom:383.400000pt;}
.y99_c00180{bottom:384.360000pt;}
.y94_c00180{bottom:398.440000pt;}
.y91_c00180{bottom:399.773333pt;}
.y93_c00180{bottom:400.360000pt;}
.y92_c00180{bottom:400.560000pt;}
.y90_c00180{bottom:401.693333pt;}
.y8f_c00180{bottom:416.360000pt;}
.y8e_c00180{bottom:419.026667pt;}
.y8c_c00180{bottom:434.440000pt;}
.y8d_c00180{bottom:435.226667pt;}
.y8b_c00180{bottom:435.973333pt;}
.y8a_c00180{bottom:436.360000pt;}
.y89_c00180{bottom:453.893333pt;}
.y87_c00180{bottom:469.106667pt;}
.y88_c00180{bottom:469.306667pt;}
.y86_c00180{bottom:470.066667pt;}
.y84_c00180{bottom:470.440000pt;}
.y85_c00180{bottom:471.026667pt;}
.y82_c00180{bottom:471.973333pt;}
.y83_c00180{bottom:472.360000pt;}
.y81_c00180{bottom:487.400000pt;}
.y7e_c00180{bottom:487.773333pt;}
.y80_c00180{bottom:488.733333pt;}
.y7f_c00180{bottom:489.693333pt;}
.y7a_c00180{bottom:505.106667pt;}
.y7c_c00180{bottom:505.893333pt;}
.y7b_c00180{bottom:507.026667pt;}
.y7d_c00180{bottom:507.973333pt;}
.y75_c00180{bottom:521.693333pt;}
.y78_c00180{bottom:522.440000pt;}
.y79_c00180{bottom:523.226667pt;}
.y77_c00180{bottom:523.400000pt;}
.y76_c00180{bottom:524.360000pt;}
.y74_c00180{bottom:539.773333pt;}
.y72_c00180{bottom:541.693333pt;}
.y71_c00180{bottom:541.893333pt;}
.y73_c00180{bottom:542.640000pt;}
.y6c_c00180{bottom:556.360000pt;}
.y70_c00180{bottom:557.106667pt;}
.y6d_c00180{bottom:558.066667pt;}
.y6b_c00180{bottom:559.026667pt;}
.y6f_c00180{bottom:559.226667pt;}
.y6e_c00180{bottom:559.973333pt;}
.y6a_c00180{bottom:574.826667pt;}
.y68_c00180{bottom:575.773333pt;}
.y69_c00180{bottom:576.360000pt;}
.y67_c00180{bottom:577.693333pt;}
.y64_c00180{bottom:591.973333pt;}
.y62_c00180{bottom:593.106667pt;}
.y65_c00180{bottom:593.893333pt;}
.y66_c00180{bottom:594.066667pt;}
.y63_c00180{bottom:595.026667pt;}
.y5f_c00180{bottom:609.693333pt;}
.y5e_c00180{bottom:610.440000pt;}
.y60_c00180{bottom:611.226667pt;}
.y61_c00180{bottom:611.400000pt;}
.y5d_c00180{bottom:612.360000pt;}
.y5a_c00180{bottom:626.640000pt;}
.y5c_c00180{bottom:627.773333pt;}
.y59_c00180{bottom:628.733333pt;}
.y58_c00180{bottom:629.693333pt;}
.y5b_c00180{bottom:629.893333pt;}
.y54_c00180{bottom:645.106667pt;}
.y56_c00180{bottom:646.066667pt;}
.y53_c00180{bottom:647.026667pt;}
.y57_c00180{bottom:647.226667pt;}
.y55_c00180{bottom:647.973333pt;}
.y4f_c00180{bottom:662.440000pt;}
.y50_c00180{bottom:663.400000pt;}
.y4e_c00180{bottom:664.360000pt;}
.y51_c00180{bottom:664.560000pt;}
.y52_c00180{bottom:664.733333pt;}
.y4d_c00180{bottom:665.306667pt;}
.y49_c00180{bottom:679.773333pt;}
.y48_c00180{bottom:680.160000pt;}
.y4a_c00180{bottom:681.106667pt;}
.y4b_c00180{bottom:682.066667pt;}
.y4c_c00180{bottom:682.640000pt;}
.y47_c00180{bottom:683.026667pt;}
.y46_c00180{bottom:699.226667pt;}
.y45_c00180{bottom:700.360000pt;}
.y42_c00180{bottom:713.693333pt;}
.y40_c00180{bottom:715.773333pt;}
.y41_c00180{bottom:716.560000pt;}
.y43_c00180{bottom:717.306667pt;}
.y3f_c00180{bottom:717.693333pt;}
.y44_c00180{bottom:718.640000pt;}
.y3b_c00180{bottom:733.106667pt;}
.y3d_c00180{bottom:733.893333pt;}
.y3c_c00180{bottom:735.026667pt;}
.y3e_c00180{bottom:735.973333pt;}
.y37_c00180{bottom:750.440000pt;}
.y38_c00180{bottom:751.226667pt;}
.y39_c00180{bottom:751.400000pt;}
.y3a_c00180{bottom:751.973333pt;}
.y36_c00180{bottom:752.360000pt;}
.y32_c00180{bottom:767.773333pt;}
.y35_c00180{bottom:769.106667pt;}
.y33_c00180{bottom:769.693333pt;}
.y34_c00180{bottom:769.893333pt;}
.y31_c00180{bottom:785.306667pt;}
.y2c_c00180{bottom:786.440000pt;}
.y30_c00180{bottom:787.026667pt;}
.y2f_c00180{bottom:787.226667pt;}
.y2d_c00180{bottom:787.973333pt;}
.y2e_c00180{bottom:788.360000pt;}
.y2a_c00180{bottom:802.440000pt;}
.y28_c00180{bottom:804.360000pt;}
.y29_c00180{bottom:804.560000pt;}
.y2b_c00180{bottom:805.306667pt;}
.y27_c00180{bottom:820.733333pt;}
.y25_c00180{bottom:821.106667pt;}
.y22_c00180{bottom:821.693333pt;}
.y26_c00180{bottom:821.893333pt;}
.y24_c00180{bottom:822.066667pt;}
.y23_c00180{bottom:823.026667pt;}
.y20_c00180{bottom:838.440000pt;}
.y1f_c00180{bottom:839.226667pt;}
.y21_c00180{bottom:839.400000pt;}
.y1e_c00180{bottom:840.360000pt;}
.y1a_c00180{bottom:855.773333pt;}
.y1d_c00180{bottom:856.733333pt;}
.y1c_c00180{bottom:857.306667pt;}
.y1b_c00180{bottom:857.693333pt;}
.y19_c00180{bottom:858.640000pt;}
.y17_c00180{bottom:873.106667pt;}
.y18_c00180{bottom:874.640000pt;}
.y16_c00180{bottom:875.026667pt;}
.y15_c00180{bottom:875.973333pt;}
.y12_c00180{bottom:890.440000pt;}
.y10_c00180{bottom:891.226667pt;}
.y14_c00180{bottom:891.400000pt;}
.y13_c00180{bottom:892.360000pt;}
.y11_c00180{bottom:893.306667pt;}
.ye_c00180{bottom:907.773333pt;}
.yf_c00180{bottom:908.560000pt;}
.yd_c00180{bottom:909.693333pt;}
.y8_c00180{bottom:925.106667pt;}
.yb_c00180{bottom:926.066667pt;}
.y9_c00180{bottom:927.026667pt;}
.ya_c00180{bottom:927.226667pt;}
.yc_c00180{bottom:927.973333pt;}
.y5_c00180{bottom:942.440000pt;}
.y4_c00180{bottom:943.400000pt;}
.y3_c00180{bottom:944.360000pt;}
.y7_c00180{bottom:944.560000pt;}
.y6_c00180{bottom:945.306667pt;}
.y1_c00180{bottom:977.693333pt;}
.y2_c00180{bottom:978.266667pt;}
.h6_c00180{height:20.466875pt;}
.h2_c00180{height:22.303646pt;}
.h5_c00180{height:27.879557pt;}
.h1_c00180{height:31.618698pt;}
.h3_c00180{height:35.357839pt;}
.h4_c00180{height:39.031380pt;}
.h8_c00180{height:42.285365pt;}
.h7_c00180{height:42.770521pt;}
.h0_c00180{height:1186.666667pt;}
.w0_c00180{width:782.666667pt;}
.x0_c00180{left:0.000000pt;}
.x3_c00180{left:135.040000pt;}
.x9c_c00180{left:136.000000pt;}
.xcc_c00180{left:137.333333pt;}
.xbd_c00180{left:138.466667pt;}
.x2d_c00180{left:150.666667pt;}
.xe4_c00180{left:152.000000pt;}
.x102_c00180{left:156.373333pt;}
.x3c_c00180{left:158.666667pt;}
.xa3_c00180{left:160.000000pt;}
.x2e_c00180{left:161.333333pt;}
.xb4_c00180{left:163.040000pt;}
.x7a_c00180{left:167.040000pt;}
.x13_c00180{left:168.000000pt;}
.xcd_c00180{left:168.960000pt;}
.x50_c00180{left:171.626667pt;}
.xd3_c00180{left:172.960000pt;}
.x4_c00180{left:174.293333pt;}
.x5f_c00180{left:175.626667pt;}
.xe9_c00180{left:176.960000pt;}
.xe5_c00180{left:178.293333pt;}
.xdb_c00180{left:179.240000pt;}
.xf2_c00180{left:181.333333pt;}
.x94_c00180{left:182.293333pt;}
.x66_c00180{left:184.000000pt;}
.xf9_c00180{left:185.333333pt;}
.x2f_c00180{left:186.666667pt;}
.x51_c00180{left:188.373333pt;}
.xf7_c00180{left:189.333333pt;}
.x8a_c00180{left:192.373333pt;}
.x106_c00180{left:193.706667pt;}
.x9d_c00180{left:195.626667pt;}
.xfa_c00180{left:197.706667pt;}
.x45_c00180{left:199.040000pt;}
.x5_c00180{left:201.333333pt;}
.x75_c00180{left:203.040000pt;}
.xee_c00180{left:204.373333pt;}
.x6d_c00180{left:206.666667pt;}
.x10f_c00180{left:208.000000pt;}
.x67_c00180{left:209.333333pt;}
.x52_c00180{left:212.000000pt;}
.x22_c00180{left:213.333333pt;}
.xdc_c00180{left:214.666667pt;}
.xc3_c00180{left:216.373333pt;}
.x8b_c00180{left:217.333333pt;}
.xb5_c00180{left:218.666667pt;}
.xad_c00180{left:224.000000pt;}
.x7b_c00180{left:225.333333pt;}
.x110_c00180{left:226.293333pt;}
.xd4_c00180{left:228.373333pt;}
.xfb_c00180{left:229.333333pt;}
.x60_c00180{left:231.040000pt;}
.xe6_c00180{left:232.960000pt;}
.x6e_c00180{left:236.000000pt;}
.x95_c00180{left:236.960000pt;}
.x3d_c00180{left:238.666667pt;}
.x14_c00180{left:241.333333pt;}
.x6_c00180{left:243.040000pt;}
.x46_c00180{left:244.960000pt;}
.x53_c00180{left:246.293333pt;}
.x109_c00180{left:247.626667pt;}
.xc9_c00180{left:251.626667pt;}
.xea_c00180{left:253.706667pt;}
.x30_c00180{left:255.626667pt;}
.x8c_c00180{left:257.706667pt;}
.x15_c00180{left:259.040000pt;}
.xce_c00180{left:260.000000pt;}
.x54_c00180{left:263.040000pt;}
.xb6_c00180{left:266.666667pt;}
.xbe_c00180{left:272.000000pt;}
.x103_c00180{left:275.040000pt;}
.x61_c00180{left:276.000000pt;}
.xe1_c00180{left:278.666667pt;}
.x16_c00180{left:280.000000pt;}
.x23_c00180{left:281.333333pt;}
.xa4_c00180{left:282.293333pt;}
.xb7_c00180{left:285.333333pt;}
.x47_c00180{left:288.000000pt;}
.x8d_c00180{left:292.373333pt;}
.xeb_c00180{left:293.333333pt;}
.x7_c00180{left:294.666667pt;}
.x17_c00180{left:297.333333pt;}
.x76_c00180{left:300.373333pt;}
.x82_c00180{left:302.666667pt;}
.x48_c00180{left:304.373333pt;}
.xd5_c00180{left:305.706667pt;}
.x18_c00180{left:308.000000pt;}
.x8_c00180{left:308.960000pt;}
.x3e_c00180{left:310.666667pt;}
.x68_c00180{left:312.373333pt;}
.xbf_c00180{left:313.333333pt;}
.x9e_c00180{left:317.706667pt;}
.x31_c00180{left:318.666667pt;}
.x8e_c00180{left:319.626667pt;}
.xb8_c00180{left:321.333333pt;}
.x83_c00180{left:322.666667pt;}
.x62_c00180{left:324.000000pt;}
.xf3_c00180{left:326.293333pt;}
.x6f_c00180{left:328.000000pt;}
.x55_c00180{left:329.333333pt;}
.xae_c00180{left:330.666667pt;}
.x96_c00180{left:332.373333pt;}
.x19_c00180{left:334.666667pt;}
.x7c_c00180{left:337.706667pt;}
.x3f_c00180{left:339.040000pt;}
.xec_c00180{left:340.000000pt;}
.x24_c00180{left:341.333333pt;}
.x9f_c00180{left:342.666667pt;}
.xc4_c00180{left:344.373333pt;}
.x8f_c00180{left:345.333333pt;}
.x49_c00180{left:346.666667pt;}
.x111_c00180{left:348.000000pt;}
.x2_c00180{left:353.333333pt;}
.x90_c00180{left:356.000000pt;}
.x10c_c00180{left:357.706667pt;}
.x98_c00180{left:359.626667pt;}
.x9_c00180{left:361.333333pt;}
.x32_c00180{left:362.293333pt;}
.xb9_c00180{left:363.626667pt;}
.x97_c00180{left:364.960000pt;}
.x10a_c00180{left:366.293333pt;}
.xe2_c00180{left:368.000000pt;}
.xa5_c00180{left:369.333333pt;}
.xaf_c00180{left:370.666667pt;}
.xcf_c00180{left:372.373333pt;}
.x56_c00180{left:376.000000pt;}
.xc0_c00180{left:376.960000pt;}
.xa_c00180{left:378.293333pt;}
.x84_c00180{left:379.626667pt;}
.x69_c00180{left:380.960000pt;}
.xa6_c00180{left:382.666667pt;}
.x10b_c00180{left:384.000000pt;}
.xf4_c00180{left:385.333333pt;}
.x25_c00180{left:388.000000pt;}
.xba_c00180{left:389.706667pt;}
.x4a_c00180{left:393.706667pt;}
.x10d_c00180{left:394.666667pt;}
.xfe_c00180{left:396.373333pt;}
.x85_c00180{left:397.706667pt;}
.x57_c00180{left:400.373333pt;}
.x33_c00180{left:401.706667pt;}
.x107_c00180{left:402.666667pt;}
.x1a_c00180{left:404.373333pt;}
.x7d_c00180{left:405.333333pt;}
.x70_c00180{left:406.293333pt;}
.xdd_c00180{left:410.666667pt;}
.xbb_c00180{left:412.000000pt;}
.xca_c00180{left:412.960000pt;}
.x26_c00180{left:416.373333pt;}
.x63_c00180{left:417.333333pt;}
.xb_c00180{left:419.040000pt;}
.x86_c00180{left:421.333333pt;}
.x7e_c00180{left:424.000000pt;}
.xa7_c00180{left:426.666667pt;}
.x1b_c00180{left:427.626667pt;}
.xde_c00180{left:430.293333pt;}
.xc5_c00180{left:432.373333pt;}
.x58_c00180{left:433.706667pt;}
.xd6_c00180{left:436.000000pt;}
.xa0_c00180{left:438.666667pt;}
.xc_c00180{left:441.333333pt;}
.x91_c00180{left:442.293333pt;}
.x64_c00180{left:443.426667pt;}
.xb0_c00180{left:444.960000pt;}
.xc1_c00180{left:448.000000pt;}
.x71_c00180{left:448.960000pt;}
.x77_c00180{left:450.293333pt;}
.xd7_c00180{left:452.000000pt;}
.x34_c00180{left:452.960000pt;}
.xc6_c00180{left:454.666667pt;}
.xa8_c00180{left:456.000000pt;}
.x112_c00180{left:457.333333pt;}
.x7f_c00180{left:458.666667pt;}
.xf8_c00180{left:460.000000pt;}
.x40_c00180{left:460.960000pt;}
.x4b_c00180{left:462.666667pt;}
.x27_c00180{left:464.000000pt;}
.xed_c00180{left:464.960000pt;}
.xd0_c00180{left:466.293333pt;}
.x1c_c00180{left:467.626667pt;}
.xff_c00180{left:470.666667pt;}
.xa9_c00180{left:472.373333pt;}
.x104_c00180{left:474.666667pt;}
.x41_c00180{left:477.333333pt;}
.x35_c00180{left:478.666667pt;}
.xdf_c00180{left:479.626667pt;}
.x59_c00180{left:481.333333pt;}
.xa1_c00180{left:485.706667pt;}
.xb1_c00180{left:486.666667pt;}
.xd_c00180{left:487.626667pt;}
.x87_c00180{left:489.333333pt;}
.xd1_c00180{left:492.960000pt;}
.x1d_c00180{left:495.040000pt;}
.xc7_c00180{left:496.960000pt;}
.x5a_c00180{left:499.040000pt;}
.x36_c00180{left:500.960000pt;}
.x6a_c00180{left:502.293333pt;}
.xe_c00180{left:504.373333pt;}
.x72_c00180{left:506.293333pt;}
.x4c_c00180{left:509.333333pt;}
.x28_c00180{left:510.666667pt;}
.xef_c00180{left:512.000000pt;}
.xd8_c00180{left:513.706667pt;}
.x108_c00180{left:516.000000pt;}
.x1e_c00180{left:518.293333pt;}
.xaa_c00180{left:520.373333pt;}
.xd2_c00180{left:521.333333pt;}
.x4d_c00180{left:522.666667pt;}
.x29_c00180{left:524.373333pt;}
.x113_c00180{left:525.333333pt;}
.xbc_c00180{left:526.293333pt;}
.x100_c00180{left:528.000000pt;}
.xf_c00180{left:529.706667pt;}
.x5b_c00180{left:530.666667pt;}
.x105_c00180{left:531.626667pt;}
.x42_c00180{left:535.626667pt;}
.x37_c00180{left:536.960000pt;}
.x114_c00180{left:540.000000pt;}
.xc2_c00180{left:542.666667pt;}
.xfc_c00180{left:544.373333pt;}
.xc8_c00180{left:545.333333pt;}
.x92_c00180{left:546.293333pt;}
.x80_c00180{left:549.333333pt;}
.xab_c00180{left:550.293333pt;}
.x43_c00180{left:552.373333pt;}
.xcb_c00180{left:553.706667pt;}
.x78_c00180{left:554.666667pt;}
.x1f_c00180{left:556.000000pt;}
.xd9_c00180{left:556.960000pt;}
.x6b_c00180{left:559.040000pt;}
.xf5_c00180{left:560.000000pt;}
.x65_c00180{left:560.960000pt;}
.x73_c00180{left:563.040000pt;}
.x38_c00180{left:564.000000pt;}
.x5c_c00180{left:565.706667pt;}
.xac_c00180{left:568.373333pt;}
.xf0_c00180{left:569.333333pt;}
.x2a_c00180{left:570.666667pt;}
.x99_c00180{left:572.000000pt;}
.x88_c00180{left:574.293333pt;}
.x44_c00180{left:576.000000pt;}
.xfd_c00180{left:577.333333pt;}
.xf6_c00180{left:578.666667pt;}
.x20_c00180{left:579.626667pt;}
.x10_c00180{left:580.960000pt;}
.x39_c00180{left:582.666667pt;}
.xb2_c00180{left:584.960000pt;}
.x4e_c00180{left:586.666667pt;}
.x6c_c00180{left:588.000000pt;}
.x74_c00180{left:588.960000pt;}
.x93_c00180{left:590.666667pt;}
.x79_c00180{left:592.000000pt;}
.x9a_c00180{left:596.960000pt;}
.xa2_c00180{left:598.666667pt;}
.x101_c00180{left:600.000000pt;}
.xf1_c00180{left:601.706667pt;}
.xe7_c00180{left:603.040000pt;}
.x3a_c00180{left:604.960000pt;}
.xda_c00180{left:606.666667pt;}
.x11_c00180{left:608.000000pt;}
.xe0_c00180{left:610.666667pt;}
.x21_c00180{left:611.626667pt;}
.x2b_c00180{left:613.333333pt;}
.x89_c00180{left:614.666667pt;}
.xb3_c00180{left:616.960000pt;}
.x5d_c00180{left:620.000000pt;}
.x81_c00180{left:622.293333pt;}
.x4f_c00180{left:624.000000pt;}
.x1_c00180{left:625.706667pt;}
.x12_c00180{left:628.373333pt;}
.x2c_c00180{left:631.040000pt;}
.xe3_c00180{left:632.960000pt;}
.x3b_c00180{left:635.626667pt;}
.x9b_c00180{left:637.333333pt;}
.xe8_c00180{left:640.000000pt;}
.x5e_c00180{left:641.333333pt;}
.x10e_c00180{left:646.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_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_a7b0e92c5c14710d45cd9961.woff2')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:1.688965;font-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_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);}
.m66_c00181{transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);}
.m65_c00181{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m9e_c00181{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00181{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m58_c00181{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m4d_c00181{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m5a_c00181{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m68_c00181{transform:matrix(0.398390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398390,0.000000,0.000000,0.250000,0,0);}
.m22_c00181{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m6e_c00181{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m6_c00181{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m6a_c00181{transform:matrix(0.402991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402991,0.000000,0.000000,0.250000,0,0);}
.m33_c00181{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m43_c00181{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m50_c00181{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mbb_c00181{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.m38_c00181{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m8d_c00181{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m36_c00181{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m2b_c00181{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m44_c00181{transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);}
.m2d_c00181{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m56_c00181{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m8f_c00181{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.me_c00181{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m45_c00181{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m60_c00181{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m48_c00181{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.m86_c00181{transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);}
.m7b_c00181{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m29_c00181{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.ma6_c00181{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m9d_c00181{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);}
.md_c00181{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m6f_c00181{transform:matrix(0.442101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442101,0.000000,0.000000,0.250000,0,0);}
.m8e_c00181{transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);}
.m13_c00181{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m1d_c00181{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m7f_c00181{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m3c_c00181{transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);}
.m5e_c00181{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m20_c00181{transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);}
.m92_c00181{transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);}
.m1_c00181{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m5f_c00181{transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);}
.m47_c00181{transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);}
.mc9_c00181{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.m9c_c00181{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m1b_c00181{transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);}
.mc1_c00181{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.mb0_c00181{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.m6d_c00181{transform:matrix(0.469748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469748,0.000000,0.000000,0.250000,0,0);}
.mb7_c00181{transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);}
.m87_c00181{transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);}
.m5d_c00181{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m73_c00181{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.mae_c00181{transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);}
.m6c_c00181{transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);}
.m5_c00181{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m89_c00181{transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);}
.m9_c00181{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.ma0_c00181{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m61_c00181{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m8b_c00181{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m9a_c00181{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m2e_c00181{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m35_c00181{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.ma_c00181{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_c00181{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m69_c00181{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m76_c00181{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m49_c00181{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m15_c00181{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m21_c00181{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.maf_c00181{transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);}
.m54_c00181{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m51_c00181{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m17_c00181{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m79_c00181{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m2f_c00181{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m8a_c00181{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.m16_c00181{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m64_c00181{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m19_c00181{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m98_c00181{transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);}
.m34_c00181{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m10_c00181{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mac_c00181{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.mb_c00181{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mc2_c00181{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m8c_c00181{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.m82_c00181{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.mf_c00181{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m67_c00181{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m7d_c00181{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m3a_c00181{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m2a_c00181{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m3d_c00181{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m5c_c00181{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m62_c00181{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.mc5_c00181{transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);}
.m37_c00181{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m1a_c00181{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m53_c00181{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m4b_c00181{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.mc_c00181{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m12_c00181{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m3b_c00181{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.mad_c00181{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m59_c00181{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m26_c00181{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m7e_c00181{transform:matrix(0.554118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554118,0.000000,0.000000,0.250000,0,0);}
.m71_c00181{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m1e_c00181{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m42_c00181{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m3_c00181{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m6b_c00181{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m77_c00181{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m41_c00181{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m40_c00181{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m9b_c00181{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.mcb_c00181{transform:matrix(0.563131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563131,0.000000,0.000000,0.250000,0,0);}
.m83_c00181{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.m63_c00181{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m75_c00181{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);}
.m52_c00181{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m32_c00181{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m25_c00181{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.ma5_c00181{transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);}
.mbe_c00181{transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);}
.ma7_c00181{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.m30_c00181{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m7c_c00181{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m84_c00181{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m11_c00181{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m46_c00181{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m55_c00181{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m4c_c00181{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m31_c00181{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m1f_c00181{transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);}
.mb5_c00181{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.m39_c00181{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m3e_c00181{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m0_c00181{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m74_c00181{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m24_c00181{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m91_c00181{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m4a_c00181{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m90_c00181{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m14_c00181{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m94_c00181{transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);}
.m88_c00181{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m78_c00181{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mb6_c00181{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.ma4_c00181{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m5b_c00181{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m4e_c00181{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.mca_c00181{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.m95_c00181{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m80_c00181{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.ma1_c00181{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m23_c00181{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m7a_c00181{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.mb4_c00181{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.mb3_c00181{transform:matrix(0.680617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680617,0.000000,0.000000,0.250000,0,0);}
.m99_c00181{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mc4_c00181{transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);}
.mcd_c00181{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.m93_c00181{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mc8_c00181{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m4_c00181{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.maa_c00181{transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);}
.m96_c00181{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.mc6_c00181{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m81_c00181{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m9f_c00181{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m85_c00181{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m3f_c00181{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.mb8_c00181{transform:matrix(0.709251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709251,0.000000,0.000000,0.250000,0,0);}
.mba_c00181{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.ma2_c00181{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m72_c00181{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m7_c00181{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m70_c00181{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m8_c00181{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mc3_c00181{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.mb9_c00181{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.m97_c00181{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m1c_c00181{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mb1_c00181{transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);}
.mc7_c00181{transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);}
.m2c_c00181{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mbd_c00181{transform:matrix(0.767677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.767677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.767677,0.000000,0.000000,0.250000,0,0);}
.mbc_c00181{transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);}
.m4f_c00181{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m2_c00181{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.ma8_c00181{transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);}
.mab_c00181{transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);}
.mc0_c00181{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.mbf_c00181{transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);}
.mb2_c00181{transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);}
.ma9_c00181{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mcc_c00181{transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);}
.ma3_c00181{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m18_c00181{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v2_c00181{vertical-align:-6.000000px;}
.v0_c00181{vertical-align:0.000000px;}
.v1_c00181{vertical-align:6.000000px;}
.ls1_c00181{letter-spacing:0.000000px;}
.ls0_c00181{letter-spacing:51.359972px;}
.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;}
}
.ws2_c00181{word-spacing:-59.314052px;}
.ws14_c00181{word-spacing:0.000000px;}
.ws13_c00181{word-spacing:13.611988px;}
.wse_c00181{word-spacing:17.262919px;}
.wsa_c00181{word-spacing:19.620812px;}
.ws1_c00181{word-spacing:20.322608px;}
.wsc_c00181{word-spacing:23.728109px;}
.wsf_c00181{word-spacing:23.767013px;}
.wsb_c00181{word-spacing:25.883172px;}
.ws12_c00181{word-spacing:30.234255px;}
.ws6_c00181{word-spacing:33.638400px;}
.ws10_c00181{word-spacing:36.237697px;}
.ws4_c00181{word-spacing:38.705522px;}
.wsd_c00181{word-spacing:39.933737px;}
.ws7_c00181{word-spacing:40.994598px;}
.ws11_c00181{word-spacing:43.166897px;}
.ws8_c00181{word-spacing:46.335774px;}
.ws0_c00181{word-spacing:47.719225px;}
.ws3_c00181{word-spacing:49.006362px;}
.ws5_c00181{word-spacing:60.822309px;}
.ws9_c00181{word-spacing:77.102923px;}
._3_c00181{margin-left:-51.359972px;}
._2_c00181{margin-left:-6.548077px;}
._0_c00181{margin-left:-2.182692px;}
._1_c00181{width:2.182692px;}
._a_c00181{width:25.216999px;}
._c_c00181{width:31.682189px;}
._b_c00181{width:33.837252px;}
._7_c00181{width:39.792375px;}
._d_c00181{width:44.399896px;}
._6_c00181{width:48.948678px;}
._4_c00181{width:54.289854px;}
._9_c00181{width:56.960442px;}
._8_c00181{width:59.631031px;}
._5_c00181{width:61.469074px;}
.fc0_c00181{color:transparent;}
.fs5_c00181{font-size:3.420000px;}
.fs9_c00181{font-size:11.880000px;}
.fs8_c00181{font-size:13.620000px;}
.fs2_c00181{font-size:18.720000px;}
.fs0_c00181{font-size:20.400000px;}
.fs6_c00181{font-size:25.500000px;}
.fs1_c00181{font-size:28.920000px;}
.fs4_c00181{font-size:32.340000px;}
.fs3_c00181{font-size:35.700000px;}
.fs7_c00181{font-size:39.120000px;}
.y0_c00181{bottom:0.000000px;}
.y57_c00181{bottom:253.245000px;}
.y55_c00181{bottom:254.970000px;}
.y56_c00181{bottom:255.405000px;}
.y58_c00181{bottom:255.630000px;}
.y59_c00181{bottom:256.905000px;}
.y5a_c00181{bottom:257.970000px;}
.y4e_c00181{bottom:271.680000px;}
.y50_c00181{bottom:274.245000px;}
.y54_c00181{bottom:274.680000px;}
.y4d_c00181{bottom:274.905000px;}
.y51_c00181{bottom:275.325000px;}
.y52_c00181{bottom:275.745000px;}
.y4f_c00181{bottom:276.405000px;}
.y53_c00181{bottom:277.905000px;}
.y48_c00181{bottom:292.245000px;}
.y4a_c00181{bottom:292.680000px;}
.y4c_c00181{bottom:294.180000px;}
.y49_c00181{bottom:295.905000px;}
.y4b_c00181{bottom:297.405000px;}
.y40_c00181{bottom:313.245000px;}
.y47_c00181{bottom:313.905000px;}
.y42_c00181{bottom:314.130000px;}
.y44_c00181{bottom:314.325000px;}
.y41_c00181{bottom:315.405000px;}
.y46_c00181{bottom:315.825000px;}
.y43_c00181{bottom:316.470000px;}
.y45_c00181{bottom:316.905000px;}
.y3b_c00181{bottom:333.630000px;}
.y3d_c00181{bottom:334.245000px;}
.y3a_c00181{bottom:334.905000px;}
.y3f_c00181{bottom:335.130000px;}
.y3c_c00181{bottom:335.970000px;}
.y3e_c00181{bottom:336.405000px;}
.y33_c00181{bottom:352.245000px;}
.y37_c00181{bottom:353.745000px;}
.y32_c00181{bottom:354.405000px;}
.y36_c00181{bottom:354.630000px;}
.y34_c00181{bottom:355.470000px;}
.y35_c00181{bottom:355.905000px;}
.y39_c00181{bottom:356.130000px;}
.y38_c00181{bottom:356.970000px;}
.y31_c00181{bottom:373.470000px;}
.y30_c00181{bottom:373.905000px;}
.y2c_c00181{bottom:392.745000px;}
.y2a_c00181{bottom:393.405000px;}
.y2e_c00181{bottom:393.825000px;}
.y2b_c00181{bottom:394.470000px;}
.y2d_c00181{bottom:394.905000px;}
.y2f_c00181{bottom:395.970000px;}
.y29_c00181{bottom:411.405000px;}
.y25_c00181{bottom:412.245000px;}
.y21_c00181{bottom:413.130000px;}
.y24_c00181{bottom:413.325000px;}
.y23_c00181{bottom:413.970000px;}
.y22_c00181{bottom:414.405000px;}
.y28_c00181{bottom:414.630000px;}
.y27_c00181{bottom:415.470000px;}
.y26_c00181{bottom:415.905000px;}
.y1e_c00181{bottom:430.905000px;}
.y1d_c00181{bottom:431.745000px;}
.y1b_c00181{bottom:432.405000px;}
.y1f_c00181{bottom:433.245000px;}
.y1c_c00181{bottom:433.905000px;}
.y20_c00181{bottom:435.405000px;}
.y18_c00181{bottom:450.405000px;}
.y15_c00181{bottom:451.245000px;}
.y19_c00181{bottom:452.745000px;}
.y16_c00181{bottom:452.970000px;}
.y14_c00181{bottom:453.405000px;}
.y17_c00181{bottom:454.905000px;}
.y1a_c00181{bottom:455.130000px;}
.y10_c00181{bottom:472.245000px;}
.yd_c00181{bottom:472.905000px;}
.y11_c00181{bottom:473.130000px;}
.yf_c00181{bottom:474.405000px;}
.ye_c00181{bottom:474.420000px;}
.y12_c00181{bottom:474.630000px;}
.y13_c00181{bottom:475.905000px;}
.yb_c00181{bottom:491.325000px;}
.ya_c00181{bottom:492.405000px;}
.yc_c00181{bottom:493.905000px;}
.y5_c00181{bottom:509.745000px;}
.y6_c00181{bottom:510.405000px;}
.y7_c00181{bottom:511.245000px;}
.y3_c00181{bottom:512.130000px;}
.y8_c00181{bottom:512.745000px;}
.y4_c00181{bottom:513.405000px;}
.y9_c00181{bottom:514.905000px;}
.yc3_c00181{bottom:548.130000px;}
.yc4_c00181{bottom:549.195000px;}
.ybf_c00181{bottom:561.195000px;}
.yc2_c00181{bottom:561.630000px;}
.yc0_c00181{bottom:562.275000px;}
.ybe_c00181{bottom:562.695000px;}
.yc1_c00181{bottom:564.420000px;}
.yb9_c00181{bottom:574.695000px;}
.ybb_c00181{bottom:575.775000px;}
.yba_c00181{bottom:576.195000px;}
.ybd_c00181{bottom:576.630000px;}
.ybc_c00181{bottom:577.920000px;}
.yb7_c00181{bottom:589.695000px;}
.yb5_c00181{bottom:590.130000px;}
.yb6_c00181{bottom:590.775000px;}
.yb8_c00181{bottom:591.195000px;}
.yb4_c00181{bottom:603.630000px;}
.yb3_c00181{bottom:604.275000px;}
.yb2_c00181{bottom:604.695000px;}
.yb0_c00181{bottom:617.130000px;}
.yb1_c00181{bottom:618.195000px;}
.yaf_c00181{bottom:631.695000px;}
.yae_c00181{bottom:632.130000px;}
.yad_c00181{bottom:644.130000px;}
.yab_c00181{bottom:645.195000px;}
.yac_c00181{bottom:645.630000px;}
.yaa_c00181{bottom:646.275000px;}
.ya9_c00181{bottom:646.695000px;}
.ya7_c00181{bottom:659.130000px;}
.ya8_c00181{bottom:660.195000px;}
.ya6_c00181{bottom:672.630000px;}
.ya5_c00181{bottom:673.695000px;}
.ya3_c00181{bottom:686.130000px;}
.ya4_c00181{bottom:687.195000px;}
.ya1_c00181{bottom:699.630000px;}
.ya2_c00181{bottom:700.695000px;}
.ya0_c00181{bottom:714.195000px;}
.y9f_c00181{bottom:714.630000px;}
.y9e_c00181{bottom:715.695000px;}
.y9b_c00181{bottom:728.130000px;}
.y9c_c00181{bottom:728.775000px;}
.y9d_c00181{bottom:729.195000px;}
.y99_c00181{bottom:741.630000px;}
.y9a_c00181{bottom:742.695000px;}
.y97_c00181{bottom:755.130000px;}
.y98_c00181{bottom:756.195000px;}
.y96_c00181{bottom:769.695000px;}
.y94_c00181{bottom:783.195000px;}
.y95_c00181{bottom:784.695000px;}
.y93_c00181{bottom:798.195000px;}
.y92_c00181{bottom:810.630000px;}
.y91_c00181{bottom:811.695000px;}
.y90_c00181{bottom:825.195000px;}
.y8f_c00181{bottom:825.630000px;}
.y8e_c00181{bottom:826.695000px;}
.y8d_c00181{bottom:838.695000px;}
.y8c_c00181{bottom:839.130000px;}
.y8b_c00181{bottom:840.195000px;}
.y89_c00181{bottom:852.195000px;}
.y88_c00181{bottom:852.630000px;}
.y87_c00181{bottom:853.050000px;}
.y8a_c00181{bottom:853.695000px;}
.y86_c00181{bottom:854.130000px;}
.y85_c00181{bottom:865.695000px;}
.y84_c00181{bottom:866.130000px;}
.y83_c00181{bottom:867.195000px;}
.y82_c00181{bottom:879.630000px;}
.y81_c00181{bottom:880.695000px;}
.y80_c00181{bottom:893.130000px;}
.y7e_c00181{bottom:894.195000px;}
.y7f_c00181{bottom:894.630000px;}
.y7d_c00181{bottom:907.695000px;}
.y7b_c00181{bottom:908.130000px;}
.y7a_c00181{bottom:909.195000px;}
.y7c_c00181{bottom:909.420000px;}
.y79_c00181{bottom:921.195000px;}
.y78_c00181{bottom:921.630000px;}
.y77_c00181{bottom:922.695000px;}
.y76_c00181{bottom:935.130000px;}
.y75_c00181{bottom:936.195000px;}
.y74_c00181{bottom:949.695000px;}
.y73_c00181{bottom:950.130000px;}
.y72_c00181{bottom:963.195000px;}
.y71_c00181{bottom:964.695000px;}
.y70_c00181{bottom:982.695000px;}
.y6f_c00181{bottom:994.695000px;}
.y6d_c00181{bottom:995.130000px;}
.y6e_c00181{bottom:996.195000px;}
.y6c_c00181{bottom:1008.195000px;}
.y6b_c00181{bottom:1009.695000px;}
.y65_c00181{bottom:1024.050000px;}
.y67_c00181{bottom:1024.905000px;}
.y66_c00181{bottom:1025.130000px;}
.y64_c00181{bottom:1025.970000px;}
.y6a_c00181{bottom:1026.405000px;}
.y63_c00181{bottom:1027.050000px;}
.y68_c00181{bottom:1027.470000px;}
.y69_c00181{bottom:1028.550000px;}
.y5f_c00181{bottom:1039.905000px;}
.y61_c00181{bottom:1040.325000px;}
.y5d_c00181{bottom:1040.970000px;}
.y5e_c00181{bottom:1042.050000px;}
.y60_c00181{bottom:1042.470000px;}
.y62_c00181{bottom:1043.550000px;}
.y5c_c00181{bottom:1064.550000px;}
.y5b_c00181{bottom:1066.050000px;}
.y2_c00181{bottom:1098.405000px;}
.y1_c00181{bottom:1100.550000px;}
.h6_c00181{height:4.206533px;}
.hb_c00181{height:14.612168px;}
.h9_c00181{height:16.752334px;}
.ha_c00181{height:22.752334px;}
.h3_c00181{height:23.025234px;}
.h1_c00181{height:25.091602px;}
.h7_c00181{height:31.364502px;}
.h2_c00181{height:35.571035px;}
.h5_c00181{height:39.777568px;}
.h4_c00181{height:43.910303px;}
.h8_c00181{height:48.116836px;}
.h0_c00181{height:1335.000000px;}
.w0_c00181{width:880.500000px;}
.x0_c00181{left:0.000000px;}
.x2_c00181{left:150.420000px;}
.x48_c00181{left:151.920000px;}
.x14_c00181{left:166.500000px;}
.x62_c00181{left:169.500000px;}
.x8a_c00181{left:171.645000px;}
.xaa_c00181{left:172.920000px;}
.x3b_c00181{left:177.000000px;}
.x3_c00181{left:178.500000px;}
.x63_c00181{left:181.500000px;}
.x52_c00181{left:183.000000px;}
.x25_c00181{left:184.920000px;}
.x32_c00181{left:186.000000px;}
.xa9_c00181{left:193.500000px;}
.x9e_c00181{left:194.580000px;}
.x49_c00181{left:198.420000px;}
.x53_c00181{left:202.920000px;}
.x3c_c00181{left:208.080000px;}
.x64_c00181{left:211.080000px;}
.x4_c00181{left:216.000000px;}
.xb0_c00181{left:220.080000px;}
.x15_c00181{left:222.000000px;}
.x4a_c00181{left:223.920000px;}
.xac_c00181{left:226.080000px;}
.x65_c00181{left:229.500000px;}
.x5_c00181{left:231.000000px;}
.x7d_c00181{left:232.500000px;}
.xb2_c00181{left:234.000000px;}
.x72_c00181{left:235.500000px;}
.x19_c00181{left:237.000000px;}
.xb4_c00181{left:238.500000px;}
.x16_c00181{left:239.580000px;}
.x66_c00181{left:241.920000px;}
.x26_c00181{left:243.000000px;}
.xad_c00181{left:244.080000px;}
.x6_c00181{left:246.000000px;}
.x94_c00181{left:250.500000px;}
.x1a_c00181{left:256.500000px;}
.x8f_c00181{left:258.000000px;}
.x8b_c00181{left:259.500000px;}
.xb9_c00181{left:261.420000px;}
.x17_c00181{left:262.500000px;}
.x33_c00181{left:265.080000px;}
.x73_c00181{left:268.500000px;}
.xba_c00181{left:270.000000px;}
.x54_c00181{left:271.500000px;}
.x3d_c00181{left:274.500000px;}
.xaf_c00181{left:276.000000px;}
.xbb_c00181{left:279.420000px;}
.xb7_c00181{left:280.920000px;}
.x4b_c00181{left:282.000000px;}
.x74_c00181{left:285.000000px;}
.x34_c00181{left:288.000000px;}
.x3e_c00181{left:294.420000px;}
.x27_c00181{left:298.500000px;}
.x67_c00181{left:300.000000px;}
.x7_c00181{left:301.500000px;}
.x18_c00181{left:307.080000px;}
.x55_c00181{left:309.000000px;}
.x95_c00181{left:316.500000px;}
.x1b_c00181{left:318.000000px;}
.x75_c00181{left:319.920000px;}
.x8_c00181{left:322.500000px;}
.x9d_c00181{left:325.500000px;}
.xa6_c00181{left:327.000000px;}
.x4c_c00181{left:328.920000px;}
.xab_c00181{left:330.000000px;}
.x8c_c00181{left:334.500000px;}
.x28_c00181{left:340.500000px;}
.x7e_c00181{left:341.580000px;}
.x68_c00181{left:343.080000px;}
.x35_c00181{left:346.080000px;}
.x9_c00181{left:351.000000px;}
.x56_c00181{left:354.000000px;}
.x7f_c00181{left:357.000000px;}
.x85_c00181{left:363.000000px;}
.x96_c00181{left:364.080000px;}
.x9f_c00181{left:366.000000px;}
.xa7_c00181{left:367.920000px;}
.x4d_c00181{left:370.920000px;}
.x69_c00181{left:373.500000px;}
.x1c_c00181{left:378.420000px;}
.xa_c00181{left:382.080000px;}
.x29_c00181{left:387.420000px;}
.x57_c00181{left:390.420000px;}
.x97_c00181{left:391.500000px;}
.x3f_c00181{left:394.500000px;}
.x1_c00181{left:397.500000px;}
.xb_c00181{left:399.420000px;}
.x90_c00181{left:405.000000px;}
.xa0_c00181{left:406.500000px;}
.xa8_c00181{left:408.000000px;}
.x8e_c00181{left:409.500000px;}
.x6a_c00181{left:410.580000px;}
.x2a_c00181{left:414.000000px;}
.x98_c00181{left:417.420000px;}
.x40_c00181{left:418.920000px;}
.x1d_c00181{left:423.000000px;}
.xc_c00181{left:426.000000px;}
.x80_c00181{left:428.580000px;}
.x91_c00181{left:430.500000px;}
.x4e_c00181{left:433.500000px;}
.x58_c00181{left:435.420000px;}
.x8d_c00181{left:436.500000px;}
.x1e_c00181{left:439.500000px;}
.x76_c00181{left:445.500000px;}
.xa1_c00181{left:447.000000px;}
.xb1_c00181{left:448.500000px;}
.x1f_c00181{left:451.920000px;}
.x6b_c00181{left:453.000000px;}
.x99_c00181{left:454.500000px;}
.x41_c00181{left:455.580000px;}
.x86_c00181{left:465.000000px;}
.x77_c00181{left:466.500000px;}
.x9a_c00181{left:468.000000px;}
.xd_c00181{left:470.355000px;}
.x81_c00181{left:475.500000px;}
.x36_c00181{left:477.420000px;}
.x2b_c00181{left:479.580000px;}
.x2c_c00181{left:484.080000px;}
.xa2_c00181{left:487.500000px;}
.x6c_c00181{left:489.000000px;}
.x78_c00181{left:492.420000px;}
.x59_c00181{left:493.500000px;}
.x4f_c00181{left:496.920000px;}
.xe_c00181{left:499.500000px;}
.x82_c00181{left:510.000000px;}
.x5a_c00181{left:511.500000px;}
.x92_c00181{left:516.000000px;}
.x6d_c00181{left:517.500000px;}
.x37_c00181{left:519.000000px;}
.x5b_c00181{left:523.500000px;}
.x42_c00181{left:525.420000px;}
.x87_c00181{left:526.500000px;}
.xa3_c00181{left:528.000000px;}
.xb3_c00181{left:529.920000px;}
.xb5_c00181{left:532.500000px;}
.x20_c00181{left:535.080000px;}
.xf_c00181{left:538.500000px;}
.x79_c00181{left:549.420000px;}
.x43_c00181{left:551.580000px;}
.x9b_c00181{left:553.080000px;}
.x6e_c00181{left:554.580000px;}
.x2d_c00181{left:559.500000px;}
.x21_c00181{left:563.580000px;}
.x38_c00181{left:567.420000px;}
.x9c_c00181{left:568.500000px;}
.x10_c00181{left:570.000000px;}
.x88_c00181{left:572.580000px;}
.x5c_c00181{left:574.080000px;}
.x7a_c00181{left:579.855000px;}
.x44_c00181{left:586.920000px;}
.x5d_c00181{left:592.920000px;}
.x22_c00181{left:594.420000px;}
.x83_c00181{left:601.920000px;}
.x2e_c00181{left:607.080000px;}
.xa4_c00181{left:609.000000px;}
.x11_c00181{left:610.920000px;}
.x5e_c00181{left:612.000000px;}
.xb8_c00181{left:613.500000px;}
.x50_c00181{left:618.420000px;}
.x7b_c00181{left:621.000000px;}
.x23_c00181{left:622.500000px;}
.x93_c00181{left:627.000000px;}
.x45_c00181{left:630.000000px;}
.x2f_c00181{left:633.000000px;}
.x5f_c00181{left:634.500000px;}
.x6f_c00181{left:637.080000px;}
.x12_c00181{left:648.000000px;}
.xa5_c00181{left:649.500000px;}
.xae_c00181{left:651.000000px;}
.x70_c00181{left:655.920000px;}
.x30_c00181{left:658.080000px;}
.x60_c00181{left:660.000000px;}
.x51_c00181{left:663.000000px;}
.x39_c00181{left:664.920000px;}
.x24_c00181{left:669.000000px;}
.x46_c00181{left:673.920000px;}
.x84_c00181{left:675.000000px;}
.x71_c00181{left:685.500000px;}
.x89_c00181{left:687.855000px;}
.x13_c00181{left:690.000000px;}
.xb6_c00181{left:691.500000px;}
.x31_c00181{left:694.920000px;}
.x3a_c00181{left:702.420000px;}
.x61_c00181{left:705.000000px;}
.x47_c00181{left:717.000000px;}
.x7c_c00181{left:720.000000px;}
@media print{
.v2_c00181{vertical-align:-5.333333pt;}
.v0_c00181{vertical-align:0.000000pt;}
.v1_c00181{vertical-align:5.333333pt;}
.ls1_c00181{letter-spacing:0.000000pt;}
.ls0_c00181{letter-spacing:45.653309pt;}
.ws2_c00181{word-spacing:-52.723602pt;}
.ws14_c00181{word-spacing:0.000000pt;}
.ws13_c00181{word-spacing:12.099545pt;}
.wse_c00181{word-spacing:15.344817pt;}
.wsa_c00181{word-spacing:17.440722pt;}
.ws1_c00181{word-spacing:18.064540pt;}
.wsc_c00181{word-spacing:21.091652pt;}
.wsf_c00181{word-spacing:21.126233pt;}
.wsb_c00181{word-spacing:23.007264pt;}
.ws12_c00181{word-spacing:26.874893pt;}
.ws6_c00181{word-spacing:29.900800pt;}
.ws10_c00181{word-spacing:32.211287pt;}
.ws4_c00181{word-spacing:34.404908pt;}
.wsd_c00181{word-spacing:35.496655pt;}
.ws7_c00181{word-spacing:36.439642pt;}
.ws11_c00181{word-spacing:38.370575pt;}
.ws8_c00181{word-spacing:41.187355pt;}
.ws0_c00181{word-spacing:42.417089pt;}
.ws3_c00181{word-spacing:43.561211pt;}
.ws5_c00181{word-spacing:54.064274pt;}
.ws9_c00181{word-spacing:68.535931pt;}
._3_c00181{margin-left:-45.653309pt;}
._2_c00181{margin-left:-5.820513pt;}
._0_c00181{margin-left:-1.940171pt;}
._1_c00181{width:1.940171pt;}
._a_c00181{width:22.415110pt;}
._c_c00181{width:28.161946pt;}
._b_c00181{width:30.077557pt;}
._7_c00181{width:35.371000pt;}
._d_c00181{width:39.466574pt;}
._6_c00181{width:43.509936pt;}
._4_c00181{width:48.257648pt;}
._9_c00181{width:50.631504pt;}
._8_c00181{width:53.005361pt;}
._5_c00181{width:54.639177pt;}
.fs5_c00181{font-size:3.040000pt;}
.fs9_c00181{font-size:10.560000pt;}
.fs8_c00181{font-size:12.106667pt;}
.fs2_c00181{font-size:16.640000pt;}
.fs0_c00181{font-size:18.133333pt;}
.fs6_c00181{font-size:22.666667pt;}
.fs1_c00181{font-size:25.706667pt;}
.fs4_c00181{font-size:28.746667pt;}
.fs3_c00181{font-size:31.733333pt;}
.fs7_c00181{font-size:34.773333pt;}
.y0_c00181{bottom:0.000000pt;}
.y57_c00181{bottom:225.106667pt;}
.y55_c00181{bottom:226.640000pt;}
.y56_c00181{bottom:227.026667pt;}
.y58_c00181{bottom:227.226667pt;}
.y59_c00181{bottom:228.360000pt;}
.y5a_c00181{bottom:229.306667pt;}
.y4e_c00181{bottom:241.493333pt;}
.y50_c00181{bottom:243.773333pt;}
.y54_c00181{bottom:244.160000pt;}
.y4d_c00181{bottom:244.360000pt;}
.y51_c00181{bottom:244.733333pt;}
.y52_c00181{bottom:245.106667pt;}
.y4f_c00181{bottom:245.693333pt;}
.y53_c00181{bottom:247.026667pt;}
.y48_c00181{bottom:259.773333pt;}
.y4a_c00181{bottom:260.160000pt;}
.y4c_c00181{bottom:261.493333pt;}
.y49_c00181{bottom:263.026667pt;}
.y4b_c00181{bottom:264.360000pt;}
.y40_c00181{bottom:278.440000pt;}
.y47_c00181{bottom:279.026667pt;}
.y42_c00181{bottom:279.226667pt;}
.y44_c00181{bottom:279.400000pt;}
.y41_c00181{bottom:280.360000pt;}
.y46_c00181{bottom:280.733333pt;}
.y43_c00181{bottom:281.306667pt;}
.y45_c00181{bottom:281.693333pt;}
.y3b_c00181{bottom:296.560000pt;}
.y3d_c00181{bottom:297.106667pt;}
.y3a_c00181{bottom:297.693333pt;}
.y3f_c00181{bottom:297.893333pt;}
.y3c_c00181{bottom:298.640000pt;}
.y3e_c00181{bottom:299.026667pt;}
.y33_c00181{bottom:313.106667pt;}
.y37_c00181{bottom:314.440000pt;}
.y32_c00181{bottom:315.026667pt;}
.y36_c00181{bottom:315.226667pt;}
.y34_c00181{bottom:315.973333pt;}
.y35_c00181{bottom:316.360000pt;}
.y39_c00181{bottom:316.560000pt;}
.y38_c00181{bottom:317.306667pt;}
.y31_c00181{bottom:331.973333pt;}
.y30_c00181{bottom:332.360000pt;}
.y2c_c00181{bottom:349.106667pt;}
.y2a_c00181{bottom:349.693333pt;}
.y2e_c00181{bottom:350.066667pt;}
.y2b_c00181{bottom:350.640000pt;}
.y2d_c00181{bottom:351.026667pt;}
.y2f_c00181{bottom:351.973333pt;}
.y29_c00181{bottom:365.693333pt;}
.y25_c00181{bottom:366.440000pt;}
.y21_c00181{bottom:367.226667pt;}
.y24_c00181{bottom:367.400000pt;}
.y23_c00181{bottom:367.973333pt;}
.y22_c00181{bottom:368.360000pt;}
.y28_c00181{bottom:368.560000pt;}
.y27_c00181{bottom:369.306667pt;}
.y26_c00181{bottom:369.693333pt;}
.y1e_c00181{bottom:383.026667pt;}
.y1d_c00181{bottom:383.773333pt;}
.y1b_c00181{bottom:384.360000pt;}
.y1f_c00181{bottom:385.106667pt;}
.y1c_c00181{bottom:385.693333pt;}
.y20_c00181{bottom:387.026667pt;}
.y18_c00181{bottom:400.360000pt;}
.y15_c00181{bottom:401.106667pt;}
.y19_c00181{bottom:402.440000pt;}
.y16_c00181{bottom:402.640000pt;}
.y14_c00181{bottom:403.026667pt;}
.y17_c00181{bottom:404.360000pt;}
.y1a_c00181{bottom:404.560000pt;}
.y10_c00181{bottom:419.773333pt;}
.yd_c00181{bottom:420.360000pt;}
.y11_c00181{bottom:420.560000pt;}
.yf_c00181{bottom:421.693333pt;}
.ye_c00181{bottom:421.706667pt;}
.y12_c00181{bottom:421.893333pt;}
.y13_c00181{bottom:423.026667pt;}
.yb_c00181{bottom:436.733333pt;}
.ya_c00181{bottom:437.693333pt;}
.yc_c00181{bottom:439.026667pt;}
.y5_c00181{bottom:453.106667pt;}
.y6_c00181{bottom:453.693333pt;}
.y7_c00181{bottom:454.440000pt;}
.y3_c00181{bottom:455.226667pt;}
.y8_c00181{bottom:455.773333pt;}
.y4_c00181{bottom:456.360000pt;}
.y9_c00181{bottom:457.693333pt;}
.yc3_c00181{bottom:487.226667pt;}
.yc4_c00181{bottom:488.173333pt;}
.ybf_c00181{bottom:498.840000pt;}
.yc2_c00181{bottom:499.226667pt;}
.yc0_c00181{bottom:499.800000pt;}
.ybe_c00181{bottom:500.173333pt;}
.yc1_c00181{bottom:501.706667pt;}
.yb9_c00181{bottom:510.840000pt;}
.ybb_c00181{bottom:511.800000pt;}
.yba_c00181{bottom:512.173333pt;}
.ybd_c00181{bottom:512.560000pt;}
.ybc_c00181{bottom:513.706667pt;}
.yb7_c00181{bottom:524.173333pt;}
.yb5_c00181{bottom:524.560000pt;}
.yb6_c00181{bottom:525.133333pt;}
.yb8_c00181{bottom:525.506667pt;}
.yb4_c00181{bottom:536.560000pt;}
.yb3_c00181{bottom:537.133333pt;}
.yb2_c00181{bottom:537.506667pt;}
.yb0_c00181{bottom:548.560000pt;}
.yb1_c00181{bottom:549.506667pt;}
.yaf_c00181{bottom:561.506667pt;}
.yae_c00181{bottom:561.893333pt;}
.yad_c00181{bottom:572.560000pt;}
.yab_c00181{bottom:573.506667pt;}
.yac_c00181{bottom:573.893333pt;}
.yaa_c00181{bottom:574.466667pt;}
.ya9_c00181{bottom:574.840000pt;}
.ya7_c00181{bottom:585.893333pt;}
.ya8_c00181{bottom:586.840000pt;}
.ya6_c00181{bottom:597.893333pt;}
.ya5_c00181{bottom:598.840000pt;}
.ya3_c00181{bottom:609.893333pt;}
.ya4_c00181{bottom:610.840000pt;}
.ya1_c00181{bottom:621.893333pt;}
.ya2_c00181{bottom:622.840000pt;}
.ya0_c00181{bottom:634.840000pt;}
.y9f_c00181{bottom:635.226667pt;}
.y9e_c00181{bottom:636.173333pt;}
.y9b_c00181{bottom:647.226667pt;}
.y9c_c00181{bottom:647.800000pt;}
.y9d_c00181{bottom:648.173333pt;}
.y99_c00181{bottom:659.226667pt;}
.y9a_c00181{bottom:660.173333pt;}
.y97_c00181{bottom:671.226667pt;}
.y98_c00181{bottom:672.173333pt;}
.y96_c00181{bottom:684.173333pt;}
.y94_c00181{bottom:696.173333pt;}
.y95_c00181{bottom:697.506667pt;}
.y93_c00181{bottom:709.506667pt;}
.y92_c00181{bottom:720.560000pt;}
.y91_c00181{bottom:721.506667pt;}
.y90_c00181{bottom:733.506667pt;}
.y8f_c00181{bottom:733.893333pt;}
.y8e_c00181{bottom:734.840000pt;}
.y8d_c00181{bottom:745.506667pt;}
.y8c_c00181{bottom:745.893333pt;}
.y8b_c00181{bottom:746.840000pt;}
.y89_c00181{bottom:757.506667pt;}
.y88_c00181{bottom:757.893333pt;}
.y87_c00181{bottom:758.266667pt;}
.y8a_c00181{bottom:758.840000pt;}
.y86_c00181{bottom:759.226667pt;}
.y85_c00181{bottom:769.506667pt;}
.y84_c00181{bottom:769.893333pt;}
.y83_c00181{bottom:770.840000pt;}
.y82_c00181{bottom:781.893333pt;}
.y81_c00181{bottom:782.840000pt;}
.y80_c00181{bottom:793.893333pt;}
.y7e_c00181{bottom:794.840000pt;}
.y7f_c00181{bottom:795.226667pt;}
.y7d_c00181{bottom:806.840000pt;}
.y7b_c00181{bottom:807.226667pt;}
.y7a_c00181{bottom:808.173333pt;}
.y7c_c00181{bottom:808.373333pt;}
.y79_c00181{bottom:818.840000pt;}
.y78_c00181{bottom:819.226667pt;}
.y77_c00181{bottom:820.173333pt;}
.y76_c00181{bottom:831.226667pt;}
.y75_c00181{bottom:832.173333pt;}
.y74_c00181{bottom:844.173333pt;}
.y73_c00181{bottom:844.560000pt;}
.y72_c00181{bottom:856.173333pt;}
.y71_c00181{bottom:857.506667pt;}
.y70_c00181{bottom:873.506667pt;}
.y6f_c00181{bottom:884.173333pt;}
.y6d_c00181{bottom:884.560000pt;}
.y6e_c00181{bottom:885.506667pt;}
.y6c_c00181{bottom:896.173333pt;}
.y6b_c00181{bottom:897.506667pt;}
.y65_c00181{bottom:910.266667pt;}
.y67_c00181{bottom:911.026667pt;}
.y66_c00181{bottom:911.226667pt;}
.y64_c00181{bottom:911.973333pt;}
.y6a_c00181{bottom:912.360000pt;}
.y63_c00181{bottom:912.933333pt;}
.y68_c00181{bottom:913.306667pt;}
.y69_c00181{bottom:914.266667pt;}
.y5f_c00181{bottom:924.360000pt;}
.y61_c00181{bottom:924.733333pt;}
.y5d_c00181{bottom:925.306667pt;}
.y5e_c00181{bottom:926.266667pt;}
.y60_c00181{bottom:926.640000pt;}
.y62_c00181{bottom:927.600000pt;}
.y5c_c00181{bottom:946.266667pt;}
.y5b_c00181{bottom:947.600000pt;}
.y2_c00181{bottom:976.360000pt;}
.y1_c00181{bottom:978.266667pt;}
.h6_c00181{height:3.739141pt;}
.hb_c00181{height:12.988594pt;}
.h9_c00181{height:14.890964pt;}
.ha_c00181{height:20.224297pt;}
.h3_c00181{height:20.466875pt;}
.h1_c00181{height:22.303646pt;}
.h7_c00181{height:27.879557pt;}
.h2_c00181{height:31.618698pt;}
.h5_c00181{height:35.357839pt;}
.h4_c00181{height:39.031380pt;}
.h8_c00181{height:42.770521pt;}
.h0_c00181{height:1186.666667pt;}
.w0_c00181{width:782.666667pt;}
.x0_c00181{left:0.000000pt;}
.x2_c00181{left:133.706667pt;}
.x48_c00181{left:135.040000pt;}
.x14_c00181{left:148.000000pt;}
.x62_c00181{left:150.666667pt;}
.x8a_c00181{left:152.573333pt;}
.xaa_c00181{left:153.706667pt;}
.x3b_c00181{left:157.333333pt;}
.x3_c00181{left:158.666667pt;}
.x63_c00181{left:161.333333pt;}
.x52_c00181{left:162.666667pt;}
.x25_c00181{left:164.373333pt;}
.x32_c00181{left:165.333333pt;}
.xa9_c00181{left:172.000000pt;}
.x9e_c00181{left:172.960000pt;}
.x49_c00181{left:176.373333pt;}
.x53_c00181{left:180.373333pt;}
.x3c_c00181{left:184.960000pt;}
.x64_c00181{left:187.626667pt;}
.x4_c00181{left:192.000000pt;}
.xb0_c00181{left:195.626667pt;}
.x15_c00181{left:197.333333pt;}
.x4a_c00181{left:199.040000pt;}
.xac_c00181{left:200.960000pt;}
.x65_c00181{left:204.000000pt;}
.x5_c00181{left:205.333333pt;}
.x7d_c00181{left:206.666667pt;}
.xb2_c00181{left:208.000000pt;}
.x72_c00181{left:209.333333pt;}
.x19_c00181{left:210.666667pt;}
.xb4_c00181{left:212.000000pt;}
.x16_c00181{left:212.960000pt;}
.x66_c00181{left:215.040000pt;}
.x26_c00181{left:216.000000pt;}
.xad_c00181{left:216.960000pt;}
.x6_c00181{left:218.666667pt;}
.x94_c00181{left:222.666667pt;}
.x1a_c00181{left:228.000000pt;}
.x8f_c00181{left:229.333333pt;}
.x8b_c00181{left:230.666667pt;}
.xb9_c00181{left:232.373333pt;}
.x17_c00181{left:233.333333pt;}
.x33_c00181{left:235.626667pt;}
.x73_c00181{left:238.666667pt;}
.xba_c00181{left:240.000000pt;}
.x54_c00181{left:241.333333pt;}
.x3d_c00181{left:244.000000pt;}
.xaf_c00181{left:245.333333pt;}
.xbb_c00181{left:248.373333pt;}
.xb7_c00181{left:249.706667pt;}
.x4b_c00181{left:250.666667pt;}
.x74_c00181{left:253.333333pt;}
.x34_c00181{left:256.000000pt;}
.x3e_c00181{left:261.706667pt;}
.x27_c00181{left:265.333333pt;}
.x67_c00181{left:266.666667pt;}
.x7_c00181{left:268.000000pt;}
.x18_c00181{left:272.960000pt;}
.x55_c00181{left:274.666667pt;}
.x95_c00181{left:281.333333pt;}
.x1b_c00181{left:282.666667pt;}
.x75_c00181{left:284.373333pt;}
.x8_c00181{left:286.666667pt;}
.x9d_c00181{left:289.333333pt;}
.xa6_c00181{left:290.666667pt;}
.x4c_c00181{left:292.373333pt;}
.xab_c00181{left:293.333333pt;}
.x8c_c00181{left:297.333333pt;}
.x28_c00181{left:302.666667pt;}
.x7e_c00181{left:303.626667pt;}
.x68_c00181{left:304.960000pt;}
.x35_c00181{left:307.626667pt;}
.x9_c00181{left:312.000000pt;}
.x56_c00181{left:314.666667pt;}
.x7f_c00181{left:317.333333pt;}
.x85_c00181{left:322.666667pt;}
.x96_c00181{left:323.626667pt;}
.x9f_c00181{left:325.333333pt;}
.xa7_c00181{left:327.040000pt;}
.x4d_c00181{left:329.706667pt;}
.x69_c00181{left:332.000000pt;}
.x1c_c00181{left:336.373333pt;}
.xa_c00181{left:339.626667pt;}
.x29_c00181{left:344.373333pt;}
.x57_c00181{left:347.040000pt;}
.x97_c00181{left:348.000000pt;}
.x3f_c00181{left:350.666667pt;}
.x1_c00181{left:353.333333pt;}
.xb_c00181{left:355.040000pt;}
.x90_c00181{left:360.000000pt;}
.xa0_c00181{left:361.333333pt;}
.xa8_c00181{left:362.666667pt;}
.x8e_c00181{left:364.000000pt;}
.x6a_c00181{left:364.960000pt;}
.x2a_c00181{left:368.000000pt;}
.x98_c00181{left:371.040000pt;}
.x40_c00181{left:372.373333pt;}
.x1d_c00181{left:376.000000pt;}
.xc_c00181{left:378.666667pt;}
.x80_c00181{left:380.960000pt;}
.x91_c00181{left:382.666667pt;}
.x4e_c00181{left:385.333333pt;}
.x58_c00181{left:387.040000pt;}
.x8d_c00181{left:388.000000pt;}
.x1e_c00181{left:390.666667pt;}
.x76_c00181{left:396.000000pt;}
.xa1_c00181{left:397.333333pt;}
.xb1_c00181{left:398.666667pt;}
.x1f_c00181{left:401.706667pt;}
.x6b_c00181{left:402.666667pt;}
.x99_c00181{left:404.000000pt;}
.x41_c00181{left:404.960000pt;}
.x86_c00181{left:413.333333pt;}
.x77_c00181{left:414.666667pt;}
.x9a_c00181{left:416.000000pt;}
.xd_c00181{left:418.093333pt;}
.x81_c00181{left:422.666667pt;}
.x36_c00181{left:424.373333pt;}
.x2b_c00181{left:426.293333pt;}
.x2c_c00181{left:430.293333pt;}
.xa2_c00181{left:433.333333pt;}
.x6c_c00181{left:434.666667pt;}
.x78_c00181{left:437.706667pt;}
.x59_c00181{left:438.666667pt;}
.x4f_c00181{left:441.706667pt;}
.xe_c00181{left:444.000000pt;}
.x82_c00181{left:453.333333pt;}
.x5a_c00181{left:454.666667pt;}
.x92_c00181{left:458.666667pt;}
.x6d_c00181{left:460.000000pt;}
.x37_c00181{left:461.333333pt;}
.x5b_c00181{left:465.333333pt;}
.x42_c00181{left:467.040000pt;}
.x87_c00181{left:468.000000pt;}
.xa3_c00181{left:469.333333pt;}
.xb3_c00181{left:471.040000pt;}
.xb5_c00181{left:473.333333pt;}
.x20_c00181{left:475.626667pt;}
.xf_c00181{left:478.666667pt;}
.x79_c00181{left:488.373333pt;}
.x43_c00181{left:490.293333pt;}
.x9b_c00181{left:491.626667pt;}
.x6e_c00181{left:492.960000pt;}
.x2d_c00181{left:497.333333pt;}
.x21_c00181{left:500.960000pt;}
.x38_c00181{left:504.373333pt;}
.x9c_c00181{left:505.333333pt;}
.x10_c00181{left:506.666667pt;}
.x88_c00181{left:508.960000pt;}
.x5c_c00181{left:510.293333pt;}
.x7a_c00181{left:515.426667pt;}
.x44_c00181{left:521.706667pt;}
.x5d_c00181{left:527.040000pt;}
.x22_c00181{left:528.373333pt;}
.x83_c00181{left:535.040000pt;}
.x2e_c00181{left:539.626667pt;}
.xa4_c00181{left:541.333333pt;}
.x11_c00181{left:543.040000pt;}
.x5e_c00181{left:544.000000pt;}
.xb8_c00181{left:545.333333pt;}
.x50_c00181{left:549.706667pt;}
.x7b_c00181{left:552.000000pt;}
.x23_c00181{left:553.333333pt;}
.x93_c00181{left:557.333333pt;}
.x45_c00181{left:560.000000pt;}
.x2f_c00181{left:562.666667pt;}
.x5f_c00181{left:564.000000pt;}
.x6f_c00181{left:566.293333pt;}
.x12_c00181{left:576.000000pt;}
.xa5_c00181{left:577.333333pt;}
.xae_c00181{left:578.666667pt;}
.x70_c00181{left:583.040000pt;}
.x30_c00181{left:584.960000pt;}
.x60_c00181{left:586.666667pt;}
.x51_c00181{left:589.333333pt;}
.x39_c00181{left:591.040000pt;}
.x24_c00181{left:594.666667pt;}
.x46_c00181{left:599.040000pt;}
.x84_c00181{left:600.000000pt;}
.x71_c00181{left:609.333333pt;}
.x89_c00181{left:611.426667pt;}
.x13_c00181{left:613.333333pt;}
.xb6_c00181{left:614.666667pt;}
.x31_c00181{left:617.706667pt;}
.x3a_c00181{left:624.373333pt;}
.x61_c00181{left:626.666667pt;}
.x47_c00181{left:637.333333pt;}
.x7c_c00181{left:640.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_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_9c32dcd2c053684ade7de9de.woff2')format("woff");}.ff1_c00182{font-family:ff1_c00182;line-height:1.688965;font-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_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);}
.mce_c00182{transform:matrix(0.355882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355882,0.000000,0.000000,0.250000,0,0);}
.m26_c00182{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.m45_c00182{transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);}
.mdd_c00182{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m43_c00182{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m55_c00182{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m5_c00182{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.md5_c00182{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mca_c00182{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m8_c00182{transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);}
.m3c_c00182{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.mdf_c00182{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.mcb_c00182{transform:matrix(0.384202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384202,0.000000,0.000000,0.250000,0,0);}
.m50_c00182{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.me4_c00182{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m3b_c00182{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.md7_c00182{transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);}
.m81_c00182{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.maf_c00182{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.md8_c00182{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m23_c00182{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m11_c00182{transform:matrix(0.397032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397032,0.000000,0.000000,0.250000,0,0);}
.m59_c00182{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.ma_c00182{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.mc1_c00182{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m97_c00182{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);}
.m9f_c00182{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m30_c00182{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m47_c00182{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m14_c00182{transform:matrix(0.403989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403989,0.000000,0.000000,0.250000,0,0);}
.mbd_c00182{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.mb1_c00182{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.mcc_c00182{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m8f_c00182{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m20_c00182{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.maa_c00182{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m8a_c00182{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m16_c00182{transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);}
.m29_c00182{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m83_c00182{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m4_c00182{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.md6_c00182{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m65_c00182{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m33_c00182{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m6a_c00182{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m89_c00182{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.ma2_c00182{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m6d_c00182{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.me_c00182{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.me1_c00182{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.mb2_c00182{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m4a_c00182{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.mc7_c00182{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.me3_c00182{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m18_c00182{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m7b_c00182{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m6_c00182{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m69_c00182{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m2a_c00182{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m51_c00182{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m9e_c00182{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m25_c00182{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.mab_c00182{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.mb_c00182{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.mad_c00182{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m98_c00182{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.mc4_c00182{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m63_c00182{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.ma0_c00182{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mc0_c00182{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m12_c00182{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.ma1_c00182{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.ma7_c00182{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.mc3_c00182{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m19_c00182{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m17_c00182{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.mc_c00182{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.md_c00182{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m96_c00182{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m52_c00182{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m74_c00182{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.ma5_c00182{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m22_c00182{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m86_c00182{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.mcf_c00182{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.mb9_c00182{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);}
.md1_c00182{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.ma6_c00182{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m1b_c00182{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m0_c00182{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.me2_c00182{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m88_c00182{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m90_c00182{transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);}
.mf_c00182{transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);}
.m1e_c00182{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mae_c00182{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.m5d_c00182{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.mde_c00182{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.m7a_c00182{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m78_c00182{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.mb5_c00182{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m7f_c00182{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m2_c00182{transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);}
.m8e_c00182{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m7c_c00182{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m67_c00182{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m66_c00182{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.mda_c00182{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.ma4_c00182{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m1c_c00182{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.mbe_c00182{transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);}
.mba_c00182{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m64_c00182{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m85_c00182{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m71_c00182{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m44_c00182{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m48_c00182{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mac_c00182{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m76_c00182{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mdb_c00182{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m82_c00182{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m15_c00182{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_c00182{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mc5_c00182{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m3a_c00182{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.mb6_c00182{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m3d_c00182{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m80_c00182{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.mbc_c00182{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.ma8_c00182{transform:matrix(0.510204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510204,0.000000,0.000000,0.250000,0,0);}
.m9_c00182{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m92_c00182{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m49_c00182{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m34_c00182{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m91_c00182{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m31_c00182{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.mc8_c00182{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m38_c00182{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m2e_c00182{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m79_c00182{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m5f_c00182{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m6c_c00182{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m53_c00182{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.ma9_c00182{transform:matrix(0.530252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530252,0.000000,0.000000,0.250000,0,0);}
.m6f_c00182{transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);}
.m1f_c00182{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m24_c00182{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m2b_c00182{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mc9_c00182{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.mcd_c00182{transform:matrix(0.534323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534323,0.000000,0.000000,0.250000,0,0);}
.m68_c00182{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m46_c00182{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m2d_c00182{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m54_c00182{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m84_c00182{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m94_c00182{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m99_c00182{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m9b_c00182{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m27_c00182{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m32_c00182{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m62_c00182{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mbb_c00182{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m1d_c00182{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m4d_c00182{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m58_c00182{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m73_c00182{transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);}
.m8d_c00182{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m36_c00182{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mc2_c00182{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m4c_c00182{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m6e_c00182{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.md2_c00182{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.md4_c00182{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m3e_c00182{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m10_c00182{transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);}
.m5a_c00182{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m4b_c00182{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.ma3_c00182{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mbf_c00182{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m13_c00182{transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);}
.m2c_c00182{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m2f_c00182{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mb0_c00182{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m8b_c00182{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m95_c00182{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.mb7_c00182{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m70_c00182{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mb3_c00182{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m9a_c00182{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m6b_c00182{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m7_c00182{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m3f_c00182{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.md3_c00182{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.me0_c00182{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m9d_c00182{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m35_c00182{transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);}
.m5e_c00182{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m1_c00182{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.mb8_c00182{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.mb4_c00182{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.md0_c00182{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m39_c00182{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mc6_c00182{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m3_c00182{transform:matrix(0.637967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637967,0.000000,0.000000,0.250000,0,0);}
.m7e_c00182{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m77_c00182{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m61_c00182{transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);}
.m56_c00182{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m40_c00182{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m37_c00182{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m93_c00182{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.m28_c00182{transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);}
.m4e_c00182{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m7d_c00182{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.md9_c00182{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m60_c00182{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m72_c00182{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m57_c00182{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m41_c00182{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m87_c00182{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mdc_c00182{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m42_c00182{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m75_c00182{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m4f_c00182{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m5b_c00182{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m8c_c00182{transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);}
.m1a_c00182{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m21_c00182{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws1_c00182{word-spacing:-8.752647px;}
.ws4_c00182{word-spacing:0.000000px;}
.ws2_c00182{word-spacing:1.713102px;}
.ws0_c00182{word-spacing:3.151920px;}
.ws3_c00182{word-spacing:3.821738px;}
.fc0_c00182{color:transparent;}
.fs5_c00182{font-size:3.420000px;}
.fs6_c00182{font-size:18.720000px;}
.fs1_c00182{font-size:20.400000px;}
.fs4_c00182{font-size:25.500000px;}
.fs0_c00182{font-size:28.920000px;}
.fs3_c00182{font-size:32.340000px;}
.fs2_c00182{font-size:35.700000px;}
.fs7_c00182{font-size:39.120000px;}
.y0_c00182{bottom:0.000000px;}
.yc7_c00182{bottom:250.905000px;}
.yc6_c00182{bottom:251.745000px;}
.yc4_c00182{bottom:253.245000px;}
.yc3_c00182{bottom:254.325000px;}
.yc5_c00182{bottom:255.405000px;}
.yc2_c00182{bottom:271.245000px;}
.ybe_c00182{bottom:272.325000px;}
.yc0_c00182{bottom:272.745000px;}
.yc1_c00182{bottom:273.405000px;}
.ybf_c00182{bottom:273.630000px;}
.ybd_c00182{bottom:274.905000px;}
.yb7_c00182{bottom:290.325000px;}
.yb9_c00182{bottom:291.180000px;}
.yba_c00182{bottom:292.245000px;}
.ybb_c00182{bottom:293.130000px;}
.yb6_c00182{bottom:293.745000px;}
.ybc_c00182{bottom:293.970000px;}
.yb8_c00182{bottom:294.405000px;}
.yb5_c00182{bottom:311.745000px;}
.yb1_c00182{bottom:313.245000px;}
.yb3_c00182{bottom:313.905000px;}
.yb2_c00182{bottom:314.130000px;}
.yb4_c00182{bottom:314.970000px;}
.yb0_c00182{bottom:315.405000px;}
.yaf_c00182{bottom:334.905000px;}
.yab_c00182{bottom:352.245000px;}
.yad_c00182{bottom:352.905000px;}
.yae_c00182{bottom:353.970000px;}
.yac_c00182{bottom:354.405000px;}
.yaa_c00182{bottom:371.325000px;}
.ya7_c00182{bottom:371.745000px;}
.ya9_c00182{bottom:372.405000px;}
.ya8_c00182{bottom:373.905000px;}
.ya5_c00182{bottom:390.180000px;}
.ya3_c00182{bottom:391.245000px;}
.ya6_c00182{bottom:392.130000px;}
.ya2_c00182{bottom:392.325000px;}
.ya1_c00182{bottom:393.405000px;}
.ya4_c00182{bottom:393.630000px;}
.y9e_c00182{bottom:410.745000px;}
.ya0_c00182{bottom:411.630000px;}
.y9d_c00182{bottom:412.905000px;}
.y9f_c00182{bottom:413.970000px;}
.y9c_c00182{bottom:428.970000px;}
.y99_c00182{bottom:429.405000px;}
.y9b_c00182{bottom:430.245000px;}
.y9a_c00182{bottom:432.405000px;}
.y94_c00182{bottom:448.905000px;}
.y95_c00182{bottom:449.745000px;}
.y97_c00182{bottom:450.825000px;}
.y96_c00182{bottom:451.905000px;}
.y98_c00182{bottom:452.130000px;}
.y91_c00182{bottom:468.405000px;}
.y8c_c00182{bottom:469.245000px;}
.y90_c00182{bottom:470.745000px;}
.y92_c00182{bottom:471.405000px;}
.y8f_c00182{bottom:471.630000px;}
.y93_c00182{bottom:471.825000px;}
.y8e_c00182{bottom:472.470000px;}
.y8d_c00182{bottom:472.905000px;}
.y8a_c00182{bottom:488.970000px;}
.y88_c00182{bottom:490.245000px;}
.y8b_c00182{bottom:491.970000px;}
.y89_c00182{bottom:492.405000px;}
.y86_c00182{bottom:508.470000px;}
.y87_c00182{bottom:509.325000px;}
.y84_c00182{bottom:509.745000px;}
.y85_c00182{bottom:510.630000px;}
.y83_c00182{bottom:511.905000px;}
.y82_c00182{bottom:526.905000px;}
.y80_c00182{bottom:529.245000px;}
.y81_c00182{bottom:530.325000px;}
.y7f_c00182{bottom:531.405000px;}
.y7e_c00182{bottom:548.745000px;}
.y7a_c00182{bottom:549.825000px;}
.y7c_c00182{bottom:550.905000px;}
.y7b_c00182{bottom:551.130000px;}
.y7d_c00182{bottom:551.970000px;}
.y79_c00182{bottom:552.405000px;}
.y78_c00182{bottom:568.245000px;}
.y76_c00182{bottom:569.745000px;}
.y77_c00182{bottom:570.405000px;}
.y75_c00182{bottom:570.630000px;}
.y74_c00182{bottom:571.905000px;}
.y71_c00182{bottom:589.245000px;}
.y70_c00182{bottom:590.130000px;}
.y73_c00182{bottom:590.325000px;}
.y72_c00182{bottom:590.970000px;}
.y6f_c00182{bottom:591.405000px;}
.y6c_c00182{bottom:608.745000px;}
.y6a_c00182{bottom:609.630000px;}
.y6e_c00182{bottom:609.825000px;}
.y6d_c00182{bottom:610.470000px;}
.y6b_c00182{bottom:610.905000px;}
.y66_c00182{bottom:628.245000px;}
.y67_c00182{bottom:629.130000px;}
.y69_c00182{bottom:629.970000px;}
.y65_c00182{bottom:630.405000px;}
.y68_c00182{bottom:631.470000px;}
.y62_c00182{bottom:645.405000px;}
.y5f_c00182{bottom:647.745000px;}
.y63_c00182{bottom:648.630000px;}
.y64_c00182{bottom:648.825000px;}
.y60_c00182{bottom:649.905000px;}
.y61_c00182{bottom:650.130000px;}
.y5b_c00182{bottom:667.245000px;}
.y5c_c00182{bottom:668.325000px;}
.y5d_c00182{bottom:669.405000px;}
.y5e_c00182{bottom:669.630000px;}
.y55_c00182{bottom:686.745000px;}
.y58_c00182{bottom:687.825000px;}
.y57_c00182{bottom:688.905000px;}
.y59_c00182{bottom:689.130000px;}
.y5a_c00182{bottom:689.970000px;}
.y56_c00182{bottom:690.405000px;}
.y53_c00182{bottom:706.245000px;}
.y52_c00182{bottom:707.325000px;}
.y51_c00182{bottom:708.405000px;}
.y50_c00182{bottom:708.630000px;}
.y54_c00182{bottom:709.470000px;}
.y4f_c00182{bottom:725.970000px;}
.y4d_c00182{bottom:726.405000px;}
.y4c_c00182{bottom:726.825000px;}
.y48_c00182{bottom:727.245000px;}
.y4a_c00182{bottom:727.905000px;}
.y4e_c00182{bottom:728.130000px;}
.y49_c00182{bottom:728.970000px;}
.y4b_c00182{bottom:729.405000px;}
.y47_c00182{bottom:746.745000px;}
.y46_c00182{bottom:748.905000px;}
.y45_c00182{bottom:764.745000px;}
.y42_c00182{bottom:765.405000px;}
.y44_c00182{bottom:766.245000px;}
.y43_c00182{bottom:767.130000px;}
.y40_c00182{bottom:767.325000px;}
.y41_c00182{bottom:768.405000px;}
.y3e_c00182{bottom:784.470000px;}
.y39_c00182{bottom:784.905000px;}
.y3b_c00182{bottom:785.745000px;}
.y3a_c00182{bottom:786.630000px;}
.y3d_c00182{bottom:786.825000px;}
.y3c_c00182{bottom:787.905000px;}
.y3f_c00182{bottom:788.970000px;}
.y34_c00182{bottom:805.245000px;}
.y37_c00182{bottom:805.470000px;}
.y38_c00182{bottom:806.130000px;}
.y36_c00182{bottom:807.405000px;}
.y35_c00182{bottom:807.420000px;}
.y33_c00182{bottom:824.745000px;}
.y31_c00182{bottom:825.630000px;}
.y32_c00182{bottom:826.905000px;}
.y30_c00182{bottom:827.130000px;}
.y2e_c00182{bottom:843.405000px;}
.y2d_c00182{bottom:844.245000px;}
.y2f_c00182{bottom:845.325000px;}
.y2c_c00182{bottom:846.405000px;}
.y2b_c00182{bottom:864.180000px;}
.y27_c00182{bottom:865.245000px;}
.y28_c00182{bottom:865.905000px;}
.y2a_c00182{bottom:866.130000px;}
.y29_c00182{bottom:867.405000px;}
.y26_c00182{bottom:883.245000px;}
.y24_c00182{bottom:884.745000px;}
.y22_c00182{bottom:885.405000px;}
.y25_c00182{bottom:886.905000px;}
.y23_c00182{bottom:886.920000px;}
.y20_c00182{bottom:905.970000px;}
.y21_c00182{bottom:906.405000px;}
.y1d_c00182{bottom:921.405000px;}
.y1e_c00182{bottom:922.245000px;}
.y1f_c00182{bottom:923.745000px;}
.y1b_c00182{bottom:925.905000px;}
.y1c_c00182{bottom:925.920000px;}
.y1a_c00182{bottom:943.245000px;}
.y18_c00182{bottom:944.550000px;}
.y17_c00182{bottom:945.405000px;}
.y19_c00182{bottom:945.420000px;}
.y16_c00182{bottom:961.905000px;}
.y13_c00182{bottom:962.745000px;}
.y15_c00182{bottom:963.825000px;}
.y14_c00182{bottom:966.420000px;}
.yf_c00182{bottom:982.245000px;}
.y12_c00182{bottom:983.325000px;}
.y11_c00182{bottom:984.405000px;}
.y10_c00182{bottom:985.920000px;}
.yc_c00182{bottom:1011.825000px;}
.ye_c00182{bottom:1012.050000px;}
.ya_c00182{bottom:1012.905000px;}
.yb_c00182{bottom:1013.970000px;}
.yd_c00182{bottom:1015.470000px;}
.y9_c00182{bottom:1033.470000px;}
.y5_c00182{bottom:1034.325000px;}
.y6_c00182{bottom:1034.550000px;}
.y8_c00182{bottom:1035.405000px;}
.y7_c00182{bottom:1036.470000px;}
.y3_c00182{bottom:1061.745000px;}
.y4_c00182{bottom:1063.905000px;}
.y1_c00182{bottom:1099.905000px;}
.y2_c00182{bottom:1102.050000px;}
.h6_c00182{height:4.206533px;}
.h7_c00182{height:23.025234px;}
.h2_c00182{height:25.091602px;}
.h5_c00182{height:31.364502px;}
.h1_c00182{height:35.571035px;}
.h4_c00182{height:39.777568px;}
.h3_c00182{height:43.910303px;}
.h8_c00182{height:48.116836px;}
.h0_c00182{height:1335.000000px;}
.w0_c00182{width:880.500000px;}
.x0_c00182{left:0.000000px;}
.x38_c00182{left:151.080000px;}
.x7a_c00182{left:152.580000px;}
.xd8_c00182{left:154.500000px;}
.x12_c00182{left:162.645000px;}
.x1a_c00182{left:166.920000px;}
.xc3_c00182{left:169.500000px;}
.x86_c00182{left:175.080000px;}
.x101_c00182{left:180.000000px;}
.xf0_c00182{left:181.500000px;}
.x61_c00182{left:183.000000px;}
.x56_c00182{left:186.000000px;}
.x9a_c00182{left:187.500000px;}
.x8f_c00182{left:190.920000px;}
.xac_c00182{left:192.000000px;}
.xb4_c00182{left:193.500000px;}
.x7_c00182{left:195.420000px;}
.xa0_c00182{left:198.420000px;}
.xe9_c00182{left:199.500000px;}
.xfb_c00182{left:201.420000px;}
.x6c_c00182{left:202.500000px;}
.xd9_c00182{left:204.420000px;}
.x1b_c00182{left:205.920000px;}
.x39_c00182{left:208.080000px;}
.x73_c00182{left:211.500000px;}
.xd3_c00182{left:213.000000px;}
.x102_c00182{left:214.080000px;}
.x62_c00182{left:216.420000px;}
.xeb_c00182{left:220.080000px;}
.x4b_c00182{left:222.000000px;}
.xc4_c00182{left:225.000000px;}
.x9b_c00182{left:226.920000px;}
.xda_c00182{left:230.580000px;}
.x90_c00182{left:232.080000px;}
.x7b_c00182{left:233.580000px;}
.x87_c00182{left:237.000000px;}
.xad_c00182{left:238.500000px;}
.x13_c00182{left:241.080000px;}
.xa1_c00182{left:243.420000px;}
.xcf_c00182{left:244.920000px;}
.xea_c00182{left:246.000000px;}
.x29_c00182{left:247.500000px;}
.x3a_c00182{left:249.000000px;}
.xbf_c00182{left:250.500000px;}
.x63_c00182{left:251.580000px;}
.x58_c00182{left:255.000000px;}
.x22_c00182{left:256.500000px;}
.x8_c00182{left:258.420000px;}
.x2e_c00182{left:259.500000px;}
.x91_c00182{left:264.000000px;}
.x1c_c00182{left:265.500000px;}
.x3b_c00182{left:266.580000px;}
.xa2_c00182{left:268.500000px;}
.xe2_c00182{left:270.420000px;}
.x88_c00182{left:271.500000px;}
.xd0_c00182{left:273.000000px;}
.xc9_c00182{left:274.500000px;}
.x59_c00182{left:275.580000px;}
.x23_c00182{left:277.500000px;}
.x57_c00182{left:279.000000px;}
.x2f_c00182{left:280.500000px;}
.x106_c00182{left:281.580000px;}
.x4c_c00182{left:283.080000px;}
.x9_c00182{left:284.580000px;}
.x1d_c00182{left:286.500000px;}
.x9c_c00182{left:288.420000px;}
.x74_c00182{left:291.000000px;}
.x3_c00182{left:292.080000px;}
.xfc_c00182{left:294.420000px;}
.xb5_c00182{left:297.420000px;}
.x2a_c00182{left:298.500000px;}
.x4d_c00182{left:299.580000px;}
.x7c_c00182{left:303.000000px;}
.xca_c00182{left:304.080000px;}
.xdb_c00182{left:305.580000px;}
.xf1_c00182{left:307.500000px;}
.x14_c00182{left:309.000000px;}
.x89_c00182{left:310.500000px;}
.xa3_c00182{left:312.000000px;}
.x103_c00182{left:313.500000px;}
.x30_c00182{left:315.000000px;}
.x6d_c00182{left:316.080000px;}
.xe3_c00182{left:319.500000px;}
.x2b_c00182{left:320.580000px;}
.xdc_c00182{left:325.920000px;}
.x9d_c00182{left:327.000000px;}
.x44_c00182{left:330.000000px;}
.x5a_c00182{left:331.080000px;}
.xcb_c00182{left:334.500000px;}
.xa_c00182{left:337.080000px;}
.x3c_c00182{left:339.000000px;}
.x64_c00182{left:340.500000px;}
.x24_c00182{left:343.275000px;}
.xc0_c00182{left:345.000000px;}
.x2c_c00182{left:346.500000px;}
.x5b_c00182{left:349.920000px;}
.xf2_c00182{left:351.000000px;}
.x45_c00182{left:352.500000px;}
.x7d_c00182{left:353.580000px;}
.xae_c00182{left:355.500000px;}
.x92_c00182{left:357.420000px;}
.x3d_c00182{left:359.145000px;}
.x31_c00182{left:361.080000px;}
.xb_c00182{left:364.500000px;}
.x15_c00182{left:366.420000px;}
.x46_c00182{left:369.000000px;}
.x7e_c00182{left:370.920000px;}
.xf6_c00182{left:372.000000px;}
.xa4_c00182{left:373.500000px;}
.x75_c00182{left:376.920000px;}
.xe4_c00182{left:378.000000px;}
.x1e_c00182{left:379.080000px;}
.x6e_c00182{left:381.000000px;}
.x25_c00182{left:383.580000px;}
.xb6_c00182{left:386.580000px;}
.x4_c00182{left:388.080000px;}
.x65_c00182{left:391.080000px;}
.xa5_c00182{left:393.420000px;}
.xdd_c00182{left:394.500000px;}
.x7f_c00182{left:396.000000px;}
.x2_c00182{left:399.000000px;}
.xc5_c00182{left:400.500000px;}
.x16_c00182{left:402.000000px;}
.x47_c00182{left:403.500000px;}
.xb7_c00182{left:405.420000px;}
.xf3_c00182{left:406.920000px;}
.x1f_c00182{left:408.645000px;}
.x26_c00182{left:411.000000px;}
.x2d_c00182{left:412.080000px;}
.x32_c00182{left:414.000000px;}
.xcc_c00182{left:417.000000px;}
.xfe_c00182{left:418.500000px;}
.xa6_c00182{left:420.000000px;}
.xc_c00182{left:422.580000px;}
.x93_c00182{left:425.580000px;}
.x8a_c00182{left:427.500000px;}
.xb8_c00182{left:430.920000px;}
.x107_c00182{left:435.000000px;}
.x80_c00182{left:438.000000px;}
.xe5_c00182{left:439.920000px;}
.xec_c00182{left:441.000000px;}
.x94_c00182{left:444.420000px;}
.xf8_c00182{left:445.500000px;}
.xfd_c00182{left:447.000000px;}
.x6f_c00182{left:448.080000px;}
.xd_c00182{left:449.580000px;}
.xde_c00182{left:451.500000px;}
.x4e_c00182{left:453.000000px;}
.x20_c00182{left:454.500000px;}
.x3e_c00182{left:456.000000px;}
.x76_c00182{left:457.500000px;}
.x48_c00182{left:460.080000px;}
.x8b_c00182{left:463.920000px;}
.xc6_c00182{left:465.420000px;}
.x66_c00182{left:471.420000px;}
.x33_c00182{left:472.500000px;}
.x27_c00182{left:473.775000px;}
.xaf_c00182{left:475.080000px;}
.x4f_c00182{left:478.080000px;}
.x5_c00182{left:481.080000px;}
.xe6_c00182{left:484.500000px;}
.xa7_c00182{left:486.420000px;}
.xb9_c00182{left:489.000000px;}
.x8c_c00182{left:491.580000px;}
.xc7_c00182{left:493.080000px;}
.xf9_c00182{left:494.580000px;}
.xed_c00182{left:496.920000px;}
.x21_c00182{left:500.580000px;}
.xdf_c00182{left:502.500000px;}
.x3f_c00182{left:504.420000px;}
.x67_c00182{left:506.580000px;}
.x95_c00182{left:508.500000px;}
.x70_c00182{left:511.500000px;}
.x5c_c00182{left:513.000000px;}
.x50_c00182{left:514.080000px;}
.x28_c00182{left:515.775000px;}
.xf4_c00182{left:518.580000px;}
.xb0_c00182{left:520.080000px;}
.x81_c00182{left:521.580000px;}
.x108_c00182{left:523.080000px;}
.x68_c00182{left:526.500000px;}
.x34_c00182{left:527.580000px;}
.xd4_c00182{left:529.500000px;}
.xe_c00182{left:532.920000px;}
.x96_c00182{left:534.420000px;}
.xc1_c00182{left:538.500000px;}
.x104_c00182{left:540.000000px;}
.x49_c00182{left:544.080000px;}
.x5d_c00182{left:547.500000px;}
.xb1_c00182{left:550.080000px;}
.x82_c00182{left:551.355000px;}
.x6_c00182{left:553.275000px;}
.x17_c00182{left:555.420000px;}
.x77_c00182{left:561.000000px;}
.xbc_c00182{left:562.500000px;}
.xf5_c00182{left:565.080000px;}
.xee_c00182{left:567.000000px;}
.x18_c00182{left:568.080000px;}
.x97_c00182{left:570.000000px;}
.x40_c00182{left:573.000000px;}
.x8d_c00182{left:574.080000px;}
.x51_c00182{left:576.000000px;}
.xe0_c00182{left:577.500000px;}
.x5e_c00182{left:579.000000px;}
.xa8_c00182{left:580.080000px;}
.xc8_c00182{left:583.500000px;}
.xff_c00182{left:586.920000px;}
.xd5_c00182{left:588.420000px;}
.x35_c00182{left:589.920000px;}
.xc2_c00182{left:592.500000px;}
.x19_c00182{left:593.580000px;}
.x71_c00182{left:595.920000px;}
.xa9_c00182{left:597.420000px;}
.xd1_c00182{left:600.000000px;}
.xcd_c00182{left:601.920000px;}
.xba_c00182{left:607.920000px;}
.xf_c00182{left:609.000000px;}
.x5f_c00182{left:612.420000px;}
.x52_c00182{left:615.000000px;}
.x8e_c00182{left:616.500000px;}
.xe7_c00182{left:619.920000px;}
.xaa_c00182{left:622.500000px;}
.x98_c00182{left:624.420000px;}
.x9e_c00182{left:625.920000px;}
.xd6_c00182{left:627.420000px;}
.x10_c00182{left:628.500000px;}
.x36_c00182{left:629.580000px;}
.x105_c00182{left:630.645000px;}
.x41_c00182{left:634.080000px;}
.x4a_c00182{left:636.000000px;}
.xbb_c00182{left:637.080000px;}
.xd2_c00182{left:643.500000px;}
.x69_c00182{left:644.580000px;}
.xe8_c00182{left:646.500000px;}
.x11_c00182{left:647.580000px;}
.x78_c00182{left:649.500000px;}
.xe1_c00182{left:651.420000px;}
.x42_c00182{left:652.920000px;}
.x6a_c00182{left:655.500000px;}
.x53_c00182{left:656.580000px;}
.xb2_c00182{left:659.580000px;}
.xf7_c00182{left:663.000000px;}
.x83_c00182{left:664.500000px;}
.x79_c00182{left:667.500000px;}
.xce_c00182{left:674.580000px;}
.xef_c00182{left:676.080000px;}
.x43_c00182{left:679.500000px;}
.x9f_c00182{left:681.000000px;}
.xab_c00182{left:685.500000px;}
.x54_c00182{left:687.000000px;}
.x6b_c00182{left:688.080000px;}
.x60_c00182{left:689.580000px;}
.xbd_c00182{left:691.500000px;}
.x72_c00182{left:693.000000px;}
.x84_c00182{left:694.920000px;}
.x55_c00182{left:697.500000px;}
.xd7_c00182{left:699.000000px;}
.x99_c00182{left:702.000000px;}
.x37_c00182{left:703.080000px;}
.x1_c00182{left:705.420000px;}
.xfa_c00182{left:711.420000px;}
.xbe_c00182{left:714.000000px;}
.xb3_c00182{left:717.000000px;}
.x100_c00182{left:719.580000px;}
.x85_c00182{left:727.080000px;}
@media print{
.v0_c00182{vertical-align:0.000000pt;}
.ls0_c00182{letter-spacing:0.000000pt;}
.ws1_c00182{word-spacing:-7.780131pt;}
.ws4_c00182{word-spacing:0.000000pt;}
.ws2_c00182{word-spacing:1.522757pt;}
.ws0_c00182{word-spacing:2.801707pt;}
.ws3_c00182{word-spacing:3.397100pt;}
.fs5_c00182{font-size:3.040000pt;}
.fs6_c00182{font-size:16.640000pt;}
.fs1_c00182{font-size:18.133333pt;}
.fs4_c00182{font-size:22.666667pt;}
.fs0_c00182{font-size:25.706667pt;}
.fs3_c00182{font-size:28.746667pt;}
.fs2_c00182{font-size:31.733333pt;}
.fs7_c00182{font-size:34.773333pt;}
.y0_c00182{bottom:0.000000pt;}
.yc7_c00182{bottom:223.026667pt;}
.yc6_c00182{bottom:223.773333pt;}
.yc4_c00182{bottom:225.106667pt;}
.yc3_c00182{bottom:226.066667pt;}
.yc5_c00182{bottom:227.026667pt;}
.yc2_c00182{bottom:241.106667pt;}
.ybe_c00182{bottom:242.066667pt;}
.yc0_c00182{bottom:242.440000pt;}
.yc1_c00182{bottom:243.026667pt;}
.ybf_c00182{bottom:243.226667pt;}
.ybd_c00182{bottom:244.360000pt;}
.yb7_c00182{bottom:258.066667pt;}
.yb9_c00182{bottom:258.826667pt;}
.yba_c00182{bottom:259.773333pt;}
.ybb_c00182{bottom:260.560000pt;}
.yb6_c00182{bottom:261.106667pt;}
.ybc_c00182{bottom:261.306667pt;}
.yb8_c00182{bottom:261.693333pt;}
.yb5_c00182{bottom:277.106667pt;}
.yb1_c00182{bottom:278.440000pt;}
.yb3_c00182{bottom:279.026667pt;}
.yb2_c00182{bottom:279.226667pt;}
.yb4_c00182{bottom:279.973333pt;}
.yb0_c00182{bottom:280.360000pt;}
.yaf_c00182{bottom:297.693333pt;}
.yab_c00182{bottom:313.106667pt;}
.yad_c00182{bottom:313.693333pt;}
.yae_c00182{bottom:314.640000pt;}
.yac_c00182{bottom:315.026667pt;}
.yaa_c00182{bottom:330.066667pt;}
.ya7_c00182{bottom:330.440000pt;}
.ya9_c00182{bottom:331.026667pt;}
.ya8_c00182{bottom:332.360000pt;}
.ya5_c00182{bottom:346.826667pt;}
.ya3_c00182{bottom:347.773333pt;}
.ya6_c00182{bottom:348.560000pt;}
.ya2_c00182{bottom:348.733333pt;}
.ya1_c00182{bottom:349.693333pt;}
.ya4_c00182{bottom:349.893333pt;}
.y9e_c00182{bottom:365.106667pt;}
.ya0_c00182{bottom:365.893333pt;}
.y9d_c00182{bottom:367.026667pt;}
.y9f_c00182{bottom:367.973333pt;}
.y9c_c00182{bottom:381.306667pt;}
.y99_c00182{bottom:381.693333pt;}
.y9b_c00182{bottom:382.440000pt;}
.y9a_c00182{bottom:384.360000pt;}
.y94_c00182{bottom:399.026667pt;}
.y95_c00182{bottom:399.773333pt;}
.y97_c00182{bottom:400.733333pt;}
.y96_c00182{bottom:401.693333pt;}
.y98_c00182{bottom:401.893333pt;}
.y91_c00182{bottom:416.360000pt;}
.y8c_c00182{bottom:417.106667pt;}
.y90_c00182{bottom:418.440000pt;}
.y92_c00182{bottom:419.026667pt;}
.y8f_c00182{bottom:419.226667pt;}
.y93_c00182{bottom:419.400000pt;}
.y8e_c00182{bottom:419.973333pt;}
.y8d_c00182{bottom:420.360000pt;}
.y8a_c00182{bottom:434.640000pt;}
.y88_c00182{bottom:435.773333pt;}
.y8b_c00182{bottom:437.306667pt;}
.y89_c00182{bottom:437.693333pt;}
.y86_c00182{bottom:451.973333pt;}
.y87_c00182{bottom:452.733333pt;}
.y84_c00182{bottom:453.106667pt;}
.y85_c00182{bottom:453.893333pt;}
.y83_c00182{bottom:455.026667pt;}
.y82_c00182{bottom:468.360000pt;}
.y80_c00182{bottom:470.440000pt;}
.y81_c00182{bottom:471.400000pt;}
.y7f_c00182{bottom:472.360000pt;}
.y7e_c00182{bottom:487.773333pt;}
.y7a_c00182{bottom:488.733333pt;}
.y7c_c00182{bottom:489.693333pt;}
.y7b_c00182{bottom:489.893333pt;}
.y7d_c00182{bottom:490.640000pt;}
.y79_c00182{bottom:491.026667pt;}
.y78_c00182{bottom:505.106667pt;}
.y76_c00182{bottom:506.440000pt;}
.y77_c00182{bottom:507.026667pt;}
.y75_c00182{bottom:507.226667pt;}
.y74_c00182{bottom:508.360000pt;}
.y71_c00182{bottom:523.773333pt;}
.y70_c00182{bottom:524.560000pt;}
.y73_c00182{bottom:524.733333pt;}
.y72_c00182{bottom:525.306667pt;}
.y6f_c00182{bottom:525.693333pt;}
.y6c_c00182{bottom:541.106667pt;}
.y6a_c00182{bottom:541.893333pt;}
.y6e_c00182{bottom:542.066667pt;}
.y6d_c00182{bottom:542.640000pt;}
.y6b_c00182{bottom:543.026667pt;}
.y66_c00182{bottom:558.440000pt;}
.y67_c00182{bottom:559.226667pt;}
.y69_c00182{bottom:559.973333pt;}
.y65_c00182{bottom:560.360000pt;}
.y68_c00182{bottom:561.306667pt;}
.y62_c00182{bottom:573.693333pt;}
.y5f_c00182{bottom:575.773333pt;}
.y63_c00182{bottom:576.560000pt;}
.y64_c00182{bottom:576.733333pt;}
.y60_c00182{bottom:577.693333pt;}
.y61_c00182{bottom:577.893333pt;}
.y5b_c00182{bottom:593.106667pt;}
.y5c_c00182{bottom:594.066667pt;}
.y5d_c00182{bottom:595.026667pt;}
.y5e_c00182{bottom:595.226667pt;}
.y55_c00182{bottom:610.440000pt;}
.y58_c00182{bottom:611.400000pt;}
.y57_c00182{bottom:612.360000pt;}
.y59_c00182{bottom:612.560000pt;}
.y5a_c00182{bottom:613.306667pt;}
.y56_c00182{bottom:613.693333pt;}
.y53_c00182{bottom:627.773333pt;}
.y52_c00182{bottom:628.733333pt;}
.y51_c00182{bottom:629.693333pt;}
.y50_c00182{bottom:629.893333pt;}
.y54_c00182{bottom:630.640000pt;}
.y4f_c00182{bottom:645.306667pt;}
.y4d_c00182{bottom:645.693333pt;}
.y4c_c00182{bottom:646.066667pt;}
.y48_c00182{bottom:646.440000pt;}
.y4a_c00182{bottom:647.026667pt;}
.y4e_c00182{bottom:647.226667pt;}
.y49_c00182{bottom:647.973333pt;}
.y4b_c00182{bottom:648.360000pt;}
.y47_c00182{bottom:663.773333pt;}
.y46_c00182{bottom:665.693333pt;}
.y45_c00182{bottom:679.773333pt;}
.y42_c00182{bottom:680.360000pt;}
.y44_c00182{bottom:681.106667pt;}
.y43_c00182{bottom:681.893333pt;}
.y40_c00182{bottom:682.066667pt;}
.y41_c00182{bottom:683.026667pt;}
.y3e_c00182{bottom:697.306667pt;}
.y39_c00182{bottom:697.693333pt;}
.y3b_c00182{bottom:698.440000pt;}
.y3a_c00182{bottom:699.226667pt;}
.y3d_c00182{bottom:699.400000pt;}
.y3c_c00182{bottom:700.360000pt;}
.y3f_c00182{bottom:701.306667pt;}
.y34_c00182{bottom:715.773333pt;}
.y37_c00182{bottom:715.973333pt;}
.y38_c00182{bottom:716.560000pt;}
.y36_c00182{bottom:717.693333pt;}
.y35_c00182{bottom:717.706667pt;}
.y33_c00182{bottom:733.106667pt;}
.y31_c00182{bottom:733.893333pt;}
.y32_c00182{bottom:735.026667pt;}
.y30_c00182{bottom:735.226667pt;}
.y2e_c00182{bottom:749.693333pt;}
.y2d_c00182{bottom:750.440000pt;}
.y2f_c00182{bottom:751.400000pt;}
.y2c_c00182{bottom:752.360000pt;}
.y2b_c00182{bottom:768.160000pt;}
.y27_c00182{bottom:769.106667pt;}
.y28_c00182{bottom:769.693333pt;}
.y2a_c00182{bottom:769.893333pt;}
.y29_c00182{bottom:771.026667pt;}
.y26_c00182{bottom:785.106667pt;}
.y24_c00182{bottom:786.440000pt;}
.y22_c00182{bottom:787.026667pt;}
.y25_c00182{bottom:788.360000pt;}
.y23_c00182{bottom:788.373333pt;}
.y20_c00182{bottom:805.306667pt;}
.y21_c00182{bottom:805.693333pt;}
.y1d_c00182{bottom:819.026667pt;}
.y1e_c00182{bottom:819.773333pt;}
.y1f_c00182{bottom:821.106667pt;}
.y1b_c00182{bottom:823.026667pt;}
.y1c_c00182{bottom:823.040000pt;}
.y1a_c00182{bottom:838.440000pt;}
.y18_c00182{bottom:839.600000pt;}
.y17_c00182{bottom:840.360000pt;}
.y19_c00182{bottom:840.373333pt;}
.y16_c00182{bottom:855.026667pt;}
.y13_c00182{bottom:855.773333pt;}
.y15_c00182{bottom:856.733333pt;}
.y14_c00182{bottom:859.040000pt;}
.yf_c00182{bottom:873.106667pt;}
.y12_c00182{bottom:874.066667pt;}
.y11_c00182{bottom:875.026667pt;}
.y10_c00182{bottom:876.373333pt;}
.yc_c00182{bottom:899.400000pt;}
.ye_c00182{bottom:899.600000pt;}
.ya_c00182{bottom:900.360000pt;}
.yb_c00182{bottom:901.306667pt;}
.yd_c00182{bottom:902.640000pt;}
.y9_c00182{bottom:918.640000pt;}
.y5_c00182{bottom:919.400000pt;}
.y6_c00182{bottom:919.600000pt;}
.y8_c00182{bottom:920.360000pt;}
.y7_c00182{bottom:921.306667pt;}
.y3_c00182{bottom:943.773333pt;}
.y4_c00182{bottom:945.693333pt;}
.y1_c00182{bottom:977.693333pt;}
.y2_c00182{bottom:979.600000pt;}
.h6_c00182{height:3.739141pt;}
.h7_c00182{height:20.466875pt;}
.h2_c00182{height:22.303646pt;}
.h5_c00182{height:27.879557pt;}
.h1_c00182{height:31.618698pt;}
.h4_c00182{height:35.357839pt;}
.h3_c00182{height:39.031380pt;}
.h8_c00182{height:42.770521pt;}
.h0_c00182{height:1186.666667pt;}
.w0_c00182{width:782.666667pt;}
.x0_c00182{left:0.000000pt;}
.x38_c00182{left:134.293333pt;}
.x7a_c00182{left:135.626667pt;}
.xd8_c00182{left:137.333333pt;}
.x12_c00182{left:144.573333pt;}
.x1a_c00182{left:148.373333pt;}
.xc3_c00182{left:150.666667pt;}
.x86_c00182{left:155.626667pt;}
.x101_c00182{left:160.000000pt;}
.xf0_c00182{left:161.333333pt;}
.x61_c00182{left:162.666667pt;}
.x56_c00182{left:165.333333pt;}
.x9a_c00182{left:166.666667pt;}
.x8f_c00182{left:169.706667pt;}
.xac_c00182{left:170.666667pt;}
.xb4_c00182{left:172.000000pt;}
.x7_c00182{left:173.706667pt;}
.xa0_c00182{left:176.373333pt;}
.xe9_c00182{left:177.333333pt;}
.xfb_c00182{left:179.040000pt;}
.x6c_c00182{left:180.000000pt;}
.xd9_c00182{left:181.706667pt;}
.x1b_c00182{left:183.040000pt;}
.x39_c00182{left:184.960000pt;}
.x73_c00182{left:188.000000pt;}
.xd3_c00182{left:189.333333pt;}
.x102_c00182{left:190.293333pt;}
.x62_c00182{left:192.373333pt;}
.xeb_c00182{left:195.626667pt;}
.x4b_c00182{left:197.333333pt;}
.xc4_c00182{left:200.000000pt;}
.x9b_c00182{left:201.706667pt;}
.xda_c00182{left:204.960000pt;}
.x90_c00182{left:206.293333pt;}
.x7b_c00182{left:207.626667pt;}
.x87_c00182{left:210.666667pt;}
.xad_c00182{left:212.000000pt;}
.x13_c00182{left:214.293333pt;}
.xa1_c00182{left:216.373333pt;}
.xcf_c00182{left:217.706667pt;}
.xea_c00182{left:218.666667pt;}
.x29_c00182{left:220.000000pt;}
.x3a_c00182{left:221.333333pt;}
.xbf_c00182{left:222.666667pt;}
.x63_c00182{left:223.626667pt;}
.x58_c00182{left:226.666667pt;}
.x22_c00182{left:228.000000pt;}
.x8_c00182{left:229.706667pt;}
.x2e_c00182{left:230.666667pt;}
.x91_c00182{left:234.666667pt;}
.x1c_c00182{left:236.000000pt;}
.x3b_c00182{left:236.960000pt;}
.xa2_c00182{left:238.666667pt;}
.xe2_c00182{left:240.373333pt;}
.x88_c00182{left:241.333333pt;}
.xd0_c00182{left:242.666667pt;}
.xc9_c00182{left:244.000000pt;}
.x59_c00182{left:244.960000pt;}
.x23_c00182{left:246.666667pt;}
.x57_c00182{left:248.000000pt;}
.x2f_c00182{left:249.333333pt;}
.x106_c00182{left:250.293333pt;}
.x4c_c00182{left:251.626667pt;}
.x9_c00182{left:252.960000pt;}
.x1d_c00182{left:254.666667pt;}
.x9c_c00182{left:256.373333pt;}
.x74_c00182{left:258.666667pt;}
.x3_c00182{left:259.626667pt;}
.xfc_c00182{left:261.706667pt;}
.xb5_c00182{left:264.373333pt;}
.x2a_c00182{left:265.333333pt;}
.x4d_c00182{left:266.293333pt;}
.x7c_c00182{left:269.333333pt;}
.xca_c00182{left:270.293333pt;}
.xdb_c00182{left:271.626667pt;}
.xf1_c00182{left:273.333333pt;}
.x14_c00182{left:274.666667pt;}
.x89_c00182{left:276.000000pt;}
.xa3_c00182{left:277.333333pt;}
.x103_c00182{left:278.666667pt;}
.x30_c00182{left:280.000000pt;}
.x6d_c00182{left:280.960000pt;}
.xe3_c00182{left:284.000000pt;}
.x2b_c00182{left:284.960000pt;}
.xdc_c00182{left:289.706667pt;}
.x9d_c00182{left:290.666667pt;}
.x44_c00182{left:293.333333pt;}
.x5a_c00182{left:294.293333pt;}
.xcb_c00182{left:297.333333pt;}
.xa_c00182{left:299.626667pt;}
.x3c_c00182{left:301.333333pt;}
.x64_c00182{left:302.666667pt;}
.x24_c00182{left:305.133333pt;}
.xc0_c00182{left:306.666667pt;}
.x2c_c00182{left:308.000000pt;}
.x5b_c00182{left:311.040000pt;}
.xf2_c00182{left:312.000000pt;}
.x45_c00182{left:313.333333pt;}
.x7d_c00182{left:314.293333pt;}
.xae_c00182{left:316.000000pt;}
.x92_c00182{left:317.706667pt;}
.x3d_c00182{left:319.240000pt;}
.x31_c00182{left:320.960000pt;}
.xb_c00182{left:324.000000pt;}
.x15_c00182{left:325.706667pt;}
.x46_c00182{left:328.000000pt;}
.x7e_c00182{left:329.706667pt;}
.xf6_c00182{left:330.666667pt;}
.xa4_c00182{left:332.000000pt;}
.x75_c00182{left:335.040000pt;}
.xe4_c00182{left:336.000000pt;}
.x1e_c00182{left:336.960000pt;}
.x6e_c00182{left:338.666667pt;}
.x25_c00182{left:340.960000pt;}
.xb6_c00182{left:343.626667pt;}
.x4_c00182{left:344.960000pt;}
.x65_c00182{left:347.626667pt;}
.xa5_c00182{left:349.706667pt;}
.xdd_c00182{left:350.666667pt;}
.x7f_c00182{left:352.000000pt;}
.x2_c00182{left:354.666667pt;}
.xc5_c00182{left:356.000000pt;}
.x16_c00182{left:357.333333pt;}
.x47_c00182{left:358.666667pt;}
.xb7_c00182{left:360.373333pt;}
.xf3_c00182{left:361.706667pt;}
.x1f_c00182{left:363.240000pt;}
.x26_c00182{left:365.333333pt;}
.x2d_c00182{left:366.293333pt;}
.x32_c00182{left:368.000000pt;}
.xcc_c00182{left:370.666667pt;}
.xfe_c00182{left:372.000000pt;}
.xa6_c00182{left:373.333333pt;}
.xc_c00182{left:375.626667pt;}
.x93_c00182{left:378.293333pt;}
.x8a_c00182{left:380.000000pt;}
.xb8_c00182{left:383.040000pt;}
.x107_c00182{left:386.666667pt;}
.x80_c00182{left:389.333333pt;}
.xe5_c00182{left:391.040000pt;}
.xec_c00182{left:392.000000pt;}
.x94_c00182{left:395.040000pt;}
.xf8_c00182{left:396.000000pt;}
.xfd_c00182{left:397.333333pt;}
.x6f_c00182{left:398.293333pt;}
.xd_c00182{left:399.626667pt;}
.xde_c00182{left:401.333333pt;}
.x4e_c00182{left:402.666667pt;}
.x20_c00182{left:404.000000pt;}
.x3e_c00182{left:405.333333pt;}
.x76_c00182{left:406.666667pt;}
.x48_c00182{left:408.960000pt;}
.x8b_c00182{left:412.373333pt;}
.xc6_c00182{left:413.706667pt;}
.x66_c00182{left:419.040000pt;}
.x33_c00182{left:420.000000pt;}
.x27_c00182{left:421.133333pt;}
.xaf_c00182{left:422.293333pt;}
.x4f_c00182{left:424.960000pt;}
.x5_c00182{left:427.626667pt;}
.xe6_c00182{left:430.666667pt;}
.xa7_c00182{left:432.373333pt;}
.xb9_c00182{left:434.666667pt;}
.x8c_c00182{left:436.960000pt;}
.xc7_c00182{left:438.293333pt;}
.xf9_c00182{left:439.626667pt;}
.xed_c00182{left:441.706667pt;}
.x21_c00182{left:444.960000pt;}
.xdf_c00182{left:446.666667pt;}
.x3f_c00182{left:448.373333pt;}
.x67_c00182{left:450.293333pt;}
.x95_c00182{left:452.000000pt;}
.x70_c00182{left:454.666667pt;}
.x5c_c00182{left:456.000000pt;}
.x50_c00182{left:456.960000pt;}
.x28_c00182{left:458.466667pt;}
.xf4_c00182{left:460.960000pt;}
.xb0_c00182{left:462.293333pt;}
.x81_c00182{left:463.626667pt;}
.x108_c00182{left:464.960000pt;}
.x68_c00182{left:468.000000pt;}
.x34_c00182{left:468.960000pt;}
.xd4_c00182{left:470.666667pt;}
.xe_c00182{left:473.706667pt;}
.x96_c00182{left:475.040000pt;}
.xc1_c00182{left:478.666667pt;}
.x104_c00182{left:480.000000pt;}
.x49_c00182{left:483.626667pt;}
.x5d_c00182{left:486.666667pt;}
.xb1_c00182{left:488.960000pt;}
.x82_c00182{left:490.093333pt;}
.x6_c00182{left:491.800000pt;}
.x17_c00182{left:493.706667pt;}
.x77_c00182{left:498.666667pt;}
.xbc_c00182{left:500.000000pt;}
.xf5_c00182{left:502.293333pt;}
.xee_c00182{left:504.000000pt;}
.x18_c00182{left:504.960000pt;}
.x97_c00182{left:506.666667pt;}
.x40_c00182{left:509.333333pt;}
.x8d_c00182{left:510.293333pt;}
.x51_c00182{left:512.000000pt;}
.xe0_c00182{left:513.333333pt;}
.x5e_c00182{left:514.666667pt;}
.xa8_c00182{left:515.626667pt;}
.xc8_c00182{left:518.666667pt;}
.xff_c00182{left:521.706667pt;}
.xd5_c00182{left:523.040000pt;}
.x35_c00182{left:524.373333pt;}
.xc2_c00182{left:526.666667pt;}
.x19_c00182{left:527.626667pt;}
.x71_c00182{left:529.706667pt;}
.xa9_c00182{left:531.040000pt;}
.xd1_c00182{left:533.333333pt;}
.xcd_c00182{left:535.040000pt;}
.xba_c00182{left:540.373333pt;}
.xf_c00182{left:541.333333pt;}
.x5f_c00182{left:544.373333pt;}
.x52_c00182{left:546.666667pt;}
.x8e_c00182{left:548.000000pt;}
.xe7_c00182{left:551.040000pt;}
.xaa_c00182{left:553.333333pt;}
.x98_c00182{left:555.040000pt;}
.x9e_c00182{left:556.373333pt;}
.xd6_c00182{left:557.706667pt;}
.x10_c00182{left:558.666667pt;}
.x36_c00182{left:559.626667pt;}
.x105_c00182{left:560.573333pt;}
.x41_c00182{left:563.626667pt;}
.x4a_c00182{left:565.333333pt;}
.xbb_c00182{left:566.293333pt;}
.xd2_c00182{left:572.000000pt;}
.x69_c00182{left:572.960000pt;}
.xe8_c00182{left:574.666667pt;}
.x11_c00182{left:575.626667pt;}
.x78_c00182{left:577.333333pt;}
.xe1_c00182{left:579.040000pt;}
.x42_c00182{left:580.373333pt;}
.x6a_c00182{left:582.666667pt;}
.x53_c00182{left:583.626667pt;}
.xb2_c00182{left:586.293333pt;}
.xf7_c00182{left:589.333333pt;}
.x83_c00182{left:590.666667pt;}
.x79_c00182{left:593.333333pt;}
.xce_c00182{left:599.626667pt;}
.xef_c00182{left:600.960000pt;}
.x43_c00182{left:604.000000pt;}
.x9f_c00182{left:605.333333pt;}
.xab_c00182{left:609.333333pt;}
.x54_c00182{left:610.666667pt;}
.x6b_c00182{left:611.626667pt;}
.x60_c00182{left:612.960000pt;}
.xbd_c00182{left:614.666667pt;}
.x72_c00182{left:616.000000pt;}
.x84_c00182{left:617.706667pt;}
.x55_c00182{left:620.000000pt;}
.xd7_c00182{left:621.333333pt;}
.x99_c00182{left:624.000000pt;}
.x37_c00182{left:624.960000pt;}
.x1_c00182{left:627.040000pt;}
.xfa_c00182{left:632.373333pt;}
.xbe_c00182{left:634.666667pt;}
.xb3_c00182{left:637.333333pt;}
.x100_c00182{left:639.626667pt;}
.x85_c00182{left:646.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_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_e0788db123431c867df49ddb.woff2')format("woff");}.ff1_c00183{font-family:ff1_c00183;line-height:1.688965;font-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_c00183{transform:matrix(0.382653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382653,0.000000,0.000000,0.250000,0,0);}
.m8_c00183{transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);}
.m9_c00183{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m10_c00183{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.md_c00183{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m1c_c00183{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m0_c00183{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m1d_c00183{transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);}
.m27_c00183{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m1b_c00183{transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);}
.m2_c00183{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m12_c00183{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m1f_c00183{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m18_c00183{transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);}
.m16_c00183{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m1a_c00183{transform:matrix(0.487059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487059,0.000000,0.000000,0.250000,0,0);}
.m22_c00183{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m29_c00183{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m15_c00183{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.m3_c00183{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m13_c00183{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);}
.m25_c00183{transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);}
.me_c00183{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m1e_c00183{transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);}
.m14_c00183{transform:matrix(0.564706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564706,0.000000,0.000000,0.250000,0,0);}
.m5_c00183{transform:matrix(0.565441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565441,0.000000,0.000000,0.250000,0,0);}
.m20_c00183{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m26_c00183{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.mf_c00183{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m21_c00183{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.m1_c00183{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m28_c00183{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m17_c00183{transform:matrix(0.607353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607353,0.000000,0.000000,0.250000,0,0);}
.m24_c00183{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m11_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);}
.m6_c00183{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m7_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);}
.m23_c00183{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m19_c00183{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.ma_c00183{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);}
.mb_c00183{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m4_c00183{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.v0_c00183{vertical-align:0.000000px;}
.ls0_c00183{letter-spacing:0.000000px;}
.sc__c00183{text-shadow:none;}
.sc0_c00183{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00183{-webkit-text-stroke:0px transparent;}
.sc0_c00183{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00183{word-spacing:-2.503111px;}
.ws1_c00183{word-spacing:0.000000px;}
.fc0_c00183{color:transparent;}
.fs3_c00183{font-size:13.620000px;}
.fs4_c00183{font-size:18.720000px;}
.fs1_c00183{font-size:20.400000px;}
.fs2_c00183{font-size:25.500000px;}
.fs0_c00183{font-size:28.920000px;}
.fs5_c00183{font-size:32.340000px;}
.y0_c00183{bottom:0.000000px;}
.yd_c00183{bottom:238.470000px;}
.yb_c00183{bottom:239.325000px;}
.ya_c00183{bottom:239.550000px;}
.yc_c00183{bottom:240.405000px;}
.ye_c00183{bottom:253.905000px;}
.y8_c00183{bottom:254.325000px;}
.y6_c00183{bottom:254.550000px;}
.y3_c00183{bottom:255.405000px;}
.y7_c00183{bottom:255.630000px;}
.y4_c00183{bottom:256.470000px;}
.y5_c00183{bottom:256.695000px;}
.y9_c00183{bottom:257.550000px;}
.y13_c00183{bottom:268.905000px;}
.y14_c00183{bottom:269.550000px;}
.y1d_c00183{bottom:269.970000px;}
.y10_c00183{bottom:270.405000px;}
.yf_c00183{bottom:271.470000px;}
.y12_c00183{bottom:271.695000px;}
.y11_c00183{bottom:272.550000px;}
.y18_c00183{bottom:283.050000px;}
.y17_c00183{bottom:283.905000px;}
.y1c_c00183{bottom:285.195000px;}
.y15_c00183{bottom:285.405000px;}
.y1b_c00183{bottom:285.630000px;}
.y19_c00183{bottom:286.050000px;}
.y16_c00183{bottom:286.470000px;}
.y1a_c00183{bottom:287.550000px;}
.y1_c00183{bottom:1099.905000px;}
.y2_c00183{bottom:1100.550000px;}
.h4_c00183{height:16.752334px;}
.h5_c00183{height:23.025234px;}
.h2_c00183{height:25.091602px;}
.h3_c00183{height:31.364502px;}
.h1_c00183{height:35.571035px;}
.h6_c00183{height:39.777568px;}
.h0_c00183{height:1335.000000px;}
.w0_c00183{width:880.500000px;}
.x0_c00183{left:0.000000px;}
.x23_c00183{left:149.145000px;}
.x1b_c00183{left:150.420000px;}
.x1_c00183{left:153.420000px;}
.x14_c00183{left:169.500000px;}
.x24_c00183{left:178.920000px;}
.x25_c00183{left:202.500000px;}
.x16_c00183{left:231.420000px;}
.x15_c00183{left:241.500000px;}
.x26_c00183{left:257.580000px;}
.x1c_c00183{left:285.000000px;}
.x27_c00183{left:286.500000px;}
.x1d_c00183{left:327.000000px;}
.x3_c00183{left:337.080000px;}
.x28_c00183{left:339.000000px;}
.xd_c00183{left:355.920000px;}
.x29_c00183{left:360.000000px;}
.x1e_c00183{left:364.080000px;}
.xe_c00183{left:370.500000px;}
.x4_c00183{left:376.500000px;}
.x1f_c00183{left:388.920000px;}
.xf_c00183{left:397.080000px;}
.x2_c00183{left:400.500000px;}
.x5_c00183{left:413.580000px;}
.x20_c00183{left:427.500000px;}
.x6_c00183{left:437.355000px;}
.x10_c00183{left:442.500000px;}
.x21_c00183{left:453.645000px;}
.x11_c00183{left:457.080000px;}
.x12_c00183{left:484.920000px;}
.x7_c00183{left:486.000000px;}
.x13_c00183{left:501.420000px;}
.x17_c00183{left:514.500000px;}
.x22_c00183{left:527.580000px;}
.x8_c00183{left:532.500000px;}
.x18_c00183{left:567.000000px;}
.x9_c00183{left:576.000000px;}
.x19_c00183{left:586.500000px;}
.x2a_c00183{left:598.500000px;}
.xa_c00183{left:625.500000px;}
.x1a_c00183{left:642.000000px;}
.x2b_c00183{left:665.580000px;}
.xb_c00183{left:681.000000px;}
.x2c_c00183{left:690.855000px;}
.xc_c00183{left:700.500000px;}
@media print{
.v0_c00183{vertical-align:0.000000pt;}
.ls0_c00183{letter-spacing:0.000000pt;}
.ws0_c00183{word-spacing:-2.224988pt;}
.ws1_c00183{word-spacing:0.000000pt;}
.fs3_c00183{font-size:12.106667pt;}
.fs4_c00183{font-size:16.640000pt;}
.fs1_c00183{font-size:18.133333pt;}
.fs2_c00183{font-size:22.666667pt;}
.fs0_c00183{font-size:25.706667pt;}
.fs5_c00183{font-size:28.746667pt;}
.y0_c00183{bottom:0.000000pt;}
.yd_c00183{bottom:211.973333pt;}
.yb_c00183{bottom:212.733333pt;}
.ya_c00183{bottom:212.933333pt;}
.yc_c00183{bottom:213.693333pt;}
.ye_c00183{bottom:225.693333pt;}
.y8_c00183{bottom:226.066667pt;}
.y6_c00183{bottom:226.266667pt;}
.y3_c00183{bottom:227.026667pt;}
.y7_c00183{bottom:227.226667pt;}
.y4_c00183{bottom:227.973333pt;}
.y5_c00183{bottom:228.173333pt;}
.y9_c00183{bottom:228.933333pt;}
.y13_c00183{bottom:239.026667pt;}
.y14_c00183{bottom:239.600000pt;}
.y1d_c00183{bottom:239.973333pt;}
.y10_c00183{bottom:240.360000pt;}
.yf_c00183{bottom:241.306667pt;}
.y12_c00183{bottom:241.506667pt;}
.y11_c00183{bottom:242.266667pt;}
.y18_c00183{bottom:251.600000pt;}
.y17_c00183{bottom:252.360000pt;}
.y1c_c00183{bottom:253.506667pt;}
.y15_c00183{bottom:253.693333pt;}
.y1b_c00183{bottom:253.893333pt;}
.y19_c00183{bottom:254.266667pt;}
.y16_c00183{bottom:254.640000pt;}
.y1a_c00183{bottom:255.600000pt;}
.y1_c00183{bottom:977.693333pt;}
.y2_c00183{bottom:978.266667pt;}
.h4_c00183{height:14.890964pt;}
.h5_c00183{height:20.466875pt;}
.h2_c00183{height:22.303646pt;}
.h3_c00183{height:27.879557pt;}
.h1_c00183{height:31.618698pt;}
.h6_c00183{height:35.357839pt;}
.h0_c00183{height:1186.666667pt;}
.w0_c00183{width:782.666667pt;}
.x0_c00183{left:0.000000pt;}
.x23_c00183{left:132.573333pt;}
.x1b_c00183{left:133.706667pt;}
.x1_c00183{left:136.373333pt;}
.x14_c00183{left:150.666667pt;}
.x24_c00183{left:159.040000pt;}
.x25_c00183{left:180.000000pt;}
.x16_c00183{left:205.706667pt;}
.x15_c00183{left:214.666667pt;}
.x26_c00183{left:228.960000pt;}
.x1c_c00183{left:253.333333pt;}
.x27_c00183{left:254.666667pt;}
.x1d_c00183{left:290.666667pt;}
.x3_c00183{left:299.626667pt;}
.x28_c00183{left:301.333333pt;}
.xd_c00183{left:316.373333pt;}
.x29_c00183{left:320.000000pt;}
.x1e_c00183{left:323.626667pt;}
.xe_c00183{left:329.333333pt;}
.x4_c00183{left:334.666667pt;}
.x1f_c00183{left:345.706667pt;}
.xf_c00183{left:352.960000pt;}
.x2_c00183{left:356.000000pt;}
.x5_c00183{left:367.626667pt;}
.x20_c00183{left:380.000000pt;}
.x6_c00183{left:388.760000pt;}
.x10_c00183{left:393.333333pt;}
.x21_c00183{left:403.240000pt;}
.x11_c00183{left:406.293333pt;}
.x12_c00183{left:431.040000pt;}
.x7_c00183{left:432.000000pt;}
.x13_c00183{left:445.706667pt;}
.x17_c00183{left:457.333333pt;}
.x22_c00183{left:468.960000pt;}
.x8_c00183{left:473.333333pt;}
.x18_c00183{left:504.000000pt;}
.x9_c00183{left:512.000000pt;}
.x19_c00183{left:521.333333pt;}
.x2a_c00183{left:532.000000pt;}
.xa_c00183{left:556.000000pt;}
.x1a_c00183{left:570.666667pt;}
.x2b_c00183{left:591.626667pt;}
.xb_c00183{left:605.333333pt;}
.x2c_c00183{left:614.093333pt;}
.xc_c00183{left:622.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_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_496aa387a0d65a420ce89085.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m91_c00184{transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);}
.m92_c00184{transform:matrix(0.308442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308442,0.000000,0.000000,0.250000,0,0);}
.maf_c00184{transform:matrix(0.318252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318252,0.000000,0.000000,0.250000,0,0);}
.mc8_c00184{transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);}
.ma7_c00184{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.m16_c00184{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);}
.mde_c00184{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m8a_c00184{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.m4f_c00184{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.mcd_c00184{transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);}
.m82_c00184{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mf_c00184{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mea_c00184{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mc7_c00184{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m89_c00184{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.me9_c00184{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m2e_c00184{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m2f_c00184{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mf1_c00184{transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);}
.me3_c00184{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m3e_c00184{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m74_c00184{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m4_c00184{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m54_c00184{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.ma6_c00184{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m80_c00184{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m6b_c00184{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mca_c00184{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mb7_c00184{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.m8c_c00184{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m22_c00184{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m6a_c00184{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);}
.md4_c00184{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mbf_c00184{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.me8_c00184{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.m1c_c00184{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.ma3_c00184{transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);}
.m50_c00184{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.mb_c00184{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m33_c00184{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m1b_c00184{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m96_c00184{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m10_c00184{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.mad_c00184{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m36_c00184{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m39_c00184{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mac_c00184{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m90_c00184{transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);}
.mec_c00184{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m3d_c00184{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.meb_c00184{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m4e_c00184{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.m20_c00184{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m95_c00184{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m4a_c00184{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.me_c00184{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m37_c00184{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m13_c00184{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m55_c00184{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m3_c00184{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m9d_c00184{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m86_c00184{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.ma4_c00184{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m25_c00184{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m8d_c00184{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.mf3_c00184{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m61_c00184{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m38_c00184{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.mc1_c00184{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m3c_c00184{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m9_c00184{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m4c_c00184{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.me1_c00184{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mae_c00184{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.mc4_c00184{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m8e_c00184{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m8f_c00184{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mb3_c00184{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.ma_c00184{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.mb4_c00184{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m45_c00184{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m99_c00184{transform:matrix(0.441765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441765,0.000000,0.000000,0.250000,0,0);}
.m43_c00184{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mc0_c00184{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m8_c00184{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m6c_c00184{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.mb8_c00184{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.mcc_c00184{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.md3_c00184{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.me7_c00184{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m29_c00184{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m28_c00184{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.md9_c00184{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m27_c00184{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m9e_c00184{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m68_c00184{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.maa_c00184{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m0_c00184{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m19_c00184{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m58_c00184{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m53_c00184{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.m1d_c00184{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m1f_c00184{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m2b_c00184{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.me0_c00184{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m48_c00184{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.m2d_c00184{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m87_c00184{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.m7a_c00184{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m24_c00184{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m34_c00184{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m41_c00184{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);}
.m4d_c00184{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.md2_c00184{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.ma0_c00184{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.mf4_c00184{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m77_c00184{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m9b_c00184{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m5b_c00184{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m62_c00184{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m12_c00184{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m9a_c00184{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mbc_c00184{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m73_c00184{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.me5_c00184{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m1e_c00184{transform:matrix(0.495378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495378,0.000000,0.000000,0.250000,0,0);}
.m5_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);}
.m59_c00184{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m81_c00184{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m2_c00184{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mc6_c00184{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m21_c00184{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.m3f_c00184{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mcb_c00184{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.mf2_c00184{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.me4_c00184{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m63_c00184{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mb1_c00184{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.me2_c00184{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m49_c00184{transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);}
.m6d_c00184{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m9c_c00184{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.ma5_c00184{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.md0_c00184{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mf0_c00184{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m79_c00184{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m5f_c00184{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mef_c00184{transform:matrix(0.522436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522436,0.000000,0.000000,0.250000,0,0);}
.mbd_c00184{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m6f_c00184{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m98_c00184{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.m94_c00184{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.m7_c00184{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m40_c00184{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mab_c00184{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m5a_c00184{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m17_c00184{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m7d_c00184{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m60_c00184{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m4b_c00184{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mc5_c00184{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.ma2_c00184{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mdf_c00184{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.mce_c00184{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mb9_c00184{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m67_c00184{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mbb_c00184{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.mb0_c00184{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.md5_c00184{transform:matrix(0.547310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547310,0.000000,0.000000,0.250000,0,0);}
.m93_c00184{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m32_c00184{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m44_c00184{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.me6_c00184{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m11_c00184{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m6e_c00184{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.md6_c00184{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.mdb_c00184{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m46_c00184{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.mb2_c00184{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m26_c00184{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mbe_c00184{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mc3_c00184{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m70_c00184{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m7c_c00184{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.mda_c00184{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m1a_c00184{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);}
.m42_c00184{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m7e_c00184{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mcf_c00184{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.med_c00184{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.ma1_c00184{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.mc_c00184{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m5e_c00184{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m23_c00184{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m3b_c00184{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mdd_c00184{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m14_c00184{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.ma8_c00184{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m5d_c00184{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.mdc_c00184{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mb6_c00184{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m8b_c00184{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.mc2_c00184{transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);}
.m51_c00184{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m6_c00184{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.md1_c00184{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m72_c00184{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m56_c00184{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m75_c00184{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m1_c00184{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m66_c00184{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m47_c00184{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m69_c00184{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m65_c00184{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);}
.m7b_c00184{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);}
.m84_c00184{transform:matrix(0.630705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630705,0.000000,0.000000,0.250000,0,0);}
.m15_c00184{transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);}
.m97_c00184{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m78_c00184{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.ma9_c00184{transform:matrix(0.653529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653529,0.000000,0.000000,0.250000,0,0);}
.m2c_c00184{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.mee_c00184{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m3a_c00184{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.md_c00184{transform:matrix(0.669412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669412,0.000000,0.000000,0.250000,0,0);}
.m2a_c00184{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m85_c00184{transform:matrix(0.697647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697647,0.000000,0.000000,0.250000,0,0);}
.m52_c00184{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m88_c00184{transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);}
.mb5_c00184{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m57_c00184{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m64_c00184{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mba_c00184{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.mc9_c00184{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m71_c00184{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m83_c00184{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m30_c00184{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m76_c00184{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.md8_c00184{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m7f_c00184{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m35_c00184{transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);}
.md7_c00184{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.m5c_c00184{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.m18_c00184{transform:matrix(0.958824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.958824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.958824,0.000000,0.000000,0.250000,0,0);}
.m9f_c00184{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m31_c00184{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws5_c00184{word-spacing:-8.127840px;}
.ws3_c00184{word-spacing:-4.506262px;}
.ws4_c00184{word-spacing:-4.060825px;}
.ws1_c00184{word-spacing:-2.092143px;}
.ws7_c00184{word-spacing:-2.079441px;}
.ws0_c00184{word-spacing:-1.792767px;}
.ws8_c00184{word-spacing:0.000000px;}
.ws6_c00184{word-spacing:0.081289px;}
.ws2_c00184{word-spacing:2.066465px;}
.fc0_c00184{color:transparent;}
.fs6_c00184{font-size:3.420000px;}
.fs7_c00184{font-size:11.880000px;}
.fs5_c00184{font-size:18.720000px;}
.fs1_c00184{font-size:20.400000px;}
.fs4_c00184{font-size:25.500000px;}
.fs0_c00184{font-size:28.920000px;}
.fs3_c00184{font-size:32.340000px;}
.fs2_c00184{font-size:35.700000px;}
.fs8_c00184{font-size:39.120000px;}
.y0_c00184{bottom:0.000000px;}
.yc8_c00184{bottom:232.245000px;}
.yca_c00184{bottom:233.325000px;}
.yc9_c00184{bottom:234.405000px;}
.yc7_c00184{bottom:251.745000px;}
.yc2_c00184{bottom:251.970000px;}
.yc3_c00184{bottom:252.180000px;}
.yc6_c00184{bottom:253.245000px;}
.yc4_c00184{bottom:253.905000px;}
.yc5_c00184{bottom:254.130000px;}
.yc1_c00184{bottom:255.405000px;}
.ybe_c00184{bottom:272.745000px;}
.yc0_c00184{bottom:273.630000px;}
.ybf_c00184{bottom:274.905000px;}
.ybb_c00184{bottom:292.245000px;}
.ybd_c00184{bottom:293.325000px;}
.ybc_c00184{bottom:294.405000px;}
.yb7_c00184{bottom:311.745000px;}
.yb9_c00184{bottom:313.470000px;}
.yb8_c00184{bottom:313.905000px;}
.yba_c00184{bottom:314.970000px;}
.yb4_c00184{bottom:331.245000px;}
.yb6_c00184{bottom:332.325000px;}
.yb5_c00184{bottom:333.405000px;}
.yb3_c00184{bottom:333.630000px;}
.yb2_c00184{bottom:350.745000px;}
.yaf_c00184{bottom:352.245000px;}
.yb1_c00184{bottom:352.905000px;}
.yae_c00184{bottom:353.130000px;}
.yb0_c00184{bottom:354.405000px;}
.ya7_c00184{bottom:370.245000px;}
.yac_c00184{bottom:370.470000px;}
.yad_c00184{bottom:371.130000px;}
.yaa_c00184{bottom:371.325000px;}
.ya8_c00184{bottom:371.745000px;}
.ya9_c00184{bottom:372.405000px;}
.yab_c00184{bottom:372.630000px;}
.ya6_c00184{bottom:389.745000px;}
.ya4_c00184{bottom:390.405000px;}
.ya2_c00184{bottom:391.245000px;}
.ya5_c00184{bottom:392.970000px;}
.ya3_c00184{bottom:393.405000px;}
.ya0_c00184{bottom:409.905000px;}
.y9f_c00184{bottom:410.745000px;}
.y9d_c00184{bottom:411.630000px;}
.ya1_c00184{bottom:411.825000px;}
.y9e_c00184{bottom:412.905000px;}
.y9b_c00184{bottom:430.245000px;}
.y9c_c00184{bottom:431.130000px;}
.y99_c00184{bottom:432.405000px;}
.y9a_c00184{bottom:433.920000px;}
.y98_c00184{bottom:449.745000px;}
.y96_c00184{bottom:469.245000px;}
.y97_c00184{bottom:470.325000px;}
.y95_c00184{bottom:471.405000px;}
.y93_c00184{bottom:490.245000px;}
.y94_c00184{bottom:490.905000px;}
.y91_c00184{bottom:492.405000px;}
.y92_c00184{bottom:492.420000px;}
.y90_c00184{bottom:509.745000px;}
.y8e_c00184{bottom:510.630000px;}
.y8d_c00184{bottom:511.905000px;}
.y8f_c00184{bottom:511.920000px;}
.y8b_c00184{bottom:527.970000px;}
.y87_c00184{bottom:528.405000px;}
.y88_c00184{bottom:529.245000px;}
.y8a_c00184{bottom:530.130000px;}
.y8c_c00184{bottom:530.325000px;}
.y89_c00184{bottom:531.405000px;}
.y86_c00184{bottom:547.245000px;}
.y83_c00184{bottom:547.905000px;}
.y80_c00184{bottom:548.745000px;}
.y84_c00184{bottom:549.180000px;}
.y82_c00184{bottom:549.825000px;}
.y85_c00184{bottom:550.905000px;}
.y81_c00184{bottom:550.920000px;}
.y7f_c00184{bottom:568.245000px;}
.y7e_c00184{bottom:569.325000px;}
.y7d_c00184{bottom:570.405000px;}
.y7c_c00184{bottom:571.470000px;}
.y7b_c00184{bottom:586.905000px;}
.y79_c00184{bottom:587.745000px;}
.y75_c00184{bottom:589.245000px;}
.y7a_c00184{bottom:589.905000px;}
.y77_c00184{bottom:590.325000px;}
.y78_c00184{bottom:591.405000px;}
.y76_c00184{bottom:591.420000px;}
.y73_c00184{bottom:614.970000px;}
.y70_c00184{bottom:615.405000px;}
.y6f_c00184{bottom:615.825000px;}
.y74_c00184{bottom:616.050000px;}
.y72_c00184{bottom:616.905000px;}
.y6e_c00184{bottom:617.970000px;}
.y71_c00184{bottom:619.050000px;}
.y6b_c00184{bottom:635.970000px;}
.y6a_c00184{bottom:636.825000px;}
.y6c_c00184{bottom:637.470000px;}
.y6d_c00184{bottom:640.050000px;}
.y69_c00184{bottom:651.825000px;}
.y67_c00184{bottom:652.905000px;}
.y68_c00184{bottom:655.050000px;}
.y66_c00184{bottom:679.245000px;}
.y65_c00184{bottom:680.970000px;}
.y64_c00184{bottom:681.405000px;}
.y62_c00184{bottom:725.745000px;}
.y61_c00184{bottom:727.905000px;}
.y63_c00184{bottom:728.130000px;}
.y60_c00184{bottom:745.245000px;}
.y5d_c00184{bottom:747.405000px;}
.y5f_c00184{bottom:747.630000px;}
.y5e_c00184{bottom:748.470000px;}
.y5a_c00184{bottom:766.245000px;}
.y5c_c00184{bottom:766.905000px;}
.y59_c00184{bottom:767.130000px;}
.y5b_c00184{bottom:767.970000px;}
.y58_c00184{bottom:768.405000px;}
.y57_c00184{bottom:785.745000px;}
.y56_c00184{bottom:786.825000px;}
.y55_c00184{bottom:787.905000px;}
.y53_c00184{bottom:805.050000px;}
.y51_c00184{bottom:805.245000px;}
.y52_c00184{bottom:806.130000px;}
.y54_c00184{bottom:806.970000px;}
.y4f_c00184{bottom:807.405000px;}
.y50_c00184{bottom:807.420000px;}
.y4d_c00184{bottom:824.970000px;}
.y4e_c00184{bottom:827.130000px;}
.y4c_c00184{bottom:842.130000px;}
.y48_c00184{bottom:842.775000px;}
.y45_c00184{bottom:842.970000px;}
.y49_c00184{bottom:844.245000px;}
.y46_c00184{bottom:845.130000px;}
.y4a_c00184{bottom:845.325000px;}
.y4b_c00184{bottom:846.405000px;}
.y47_c00184{bottom:849.630000px;}
.y44_c00184{bottom:862.905000px;}
.y42_c00184{bottom:863.745000px;}
.y41_c00184{bottom:864.825000px;}
.y43_c00184{bottom:865.245000px;}
.y3f_c00184{bottom:865.905000px;}
.y40_c00184{bottom:866.130000px;}
.y39_c00184{bottom:882.405000px;}
.y3d_c00184{bottom:882.825000px;}
.y3e_c00184{bottom:883.245000px;}
.y38_c00184{bottom:883.470000px;}
.y3a_c00184{bottom:884.745000px;}
.y3c_c00184{bottom:885.825000px;}
.y3b_c00184{bottom:886.905000px;}
.y36_c00184{bottom:902.970000px;}
.y32_c00184{bottom:903.405000px;}
.y31_c00184{bottom:903.825000px;}
.y33_c00184{bottom:904.245000px;}
.y37_c00184{bottom:904.905000px;}
.y35_c00184{bottom:905.325000px;}
.y34_c00184{bottom:905.970000px;}
.y30_c00184{bottom:906.405000px;}
.y2e_c00184{bottom:921.825000px;}
.y2f_c00184{bottom:922.470000px;}
.y2d_c00184{bottom:922.905000px;}
.y2c_c00184{bottom:923.745000px;}
.y2b_c00184{bottom:924.825000px;}
.y29_c00184{bottom:925.470000px;}
.y2a_c00184{bottom:925.905000px;}
.y27_c00184{bottom:941.130000px;}
.y24_c00184{bottom:941.745000px;}
.y26_c00184{bottom:942.405000px;}
.y25_c00184{bottom:943.245000px;}
.y28_c00184{bottom:944.325000px;}
.y23_c00184{bottom:945.405000px;}
.y22_c00184{bottom:945.420000px;}
.y1d_c00184{bottom:961.905000px;}
.y1e_c00184{bottom:962.745000px;}
.y21_c00184{bottom:963.630000px;}
.y1c_c00184{bottom:963.825000px;}
.y20_c00184{bottom:964.050000px;}
.y1f_c00184{bottom:965.130000px;}
.y1b_c00184{bottom:981.405000px;}
.y18_c00184{bottom:981.825000px;}
.y17_c00184{bottom:982.245000px;}
.y19_c00184{bottom:983.325000px;}
.y1a_c00184{bottom:984.405000px;}
.y14_c00184{bottom:1000.905000px;}
.y13_c00184{bottom:1001.745000px;}
.y15_c00184{bottom:1001.970000px;}
.y16_c00184{bottom:1002.825000px;}
.y12_c00184{bottom:1003.905000px;}
.y10_c00184{bottom:1020.405000px;}
.ye_c00184{bottom:1021.245000px;}
.y11_c00184{bottom:1021.470000px;}
.yf_c00184{bottom:1023.405000px;}
.ya_c00184{bottom:1040.745000px;}
.yb_c00184{bottom:1040.970000px;}
.yc_c00184{bottom:1041.405000px;}
.yd_c00184{bottom:1041.825000px;}
.y8_c00184{bottom:1042.905000px;}
.y9_c00184{bottom:1043.970000px;}
.y6_c00184{bottom:1059.405000px;}
.y4_c00184{bottom:1060.245000px;}
.y7_c00184{bottom:1060.470000px;}
.y5_c00184{bottom:1061.325000px;}
.y3_c00184{bottom:1062.405000px;}
.y1_c00184{bottom:1099.905000px;}
.y2_c00184{bottom:1102.050000px;}
.h7_c00184{height:4.206533px;}
.h8_c00184{height:14.612168px;}
.h6_c00184{height:23.025234px;}
.h2_c00184{height:25.091602px;}
.h5_c00184{height:31.364502px;}
.h1_c00184{height:35.571035px;}
.h4_c00184{height:39.777568px;}
.h3_c00184{height:43.910303px;}
.h9_c00184{height:48.116836px;}
.h0_c00184{height:1335.000000px;}
.w0_c00184{width:880.500000px;}
.x0_c00184{left:0.000000px;}
.x41_c00184{left:150.000000px;}
.x3_c00184{left:151.500000px;}
.xbb_c00184{left:153.420000px;}
.x77_c00184{left:167.145000px;}
.xad_c00184{left:168.420000px;}
.x11_c00184{left:169.500000px;}
.x42_c00184{left:172.080000px;}
.xbc_c00184{left:182.580000px;}
.xdc_c00184{left:186.000000px;}
.x69_c00184{left:187.920000px;}
.x59_c00184{left:190.080000px;}
.xd8_c00184{left:193.500000px;}
.x53_c00184{left:196.500000px;}
.x61_c00184{left:198.000000px;}
.x1c_c00184{left:199.080000px;}
.x4_c00184{left:201.000000px;}
.xd2_c00184{left:202.275000px;}
.x33_c00184{left:204.000000px;}
.xbd_c00184{left:205.500000px;}
.xae_c00184{left:207.420000px;}
.x4a_c00184{left:209.580000px;}
.x96_c00184{left:211.500000px;}
.x6a_c00184{left:213.000000px;}
.x12_c00184{left:216.000000px;}
.xe9_c00184{left:217.500000px;}
.x1d_c00184{left:219.420000px;}
.x5a_c00184{left:220.500000px;}
.x76_c00184{left:223.500000px;}
.xa5_c00184{left:226.920000px;}
.x4b_c00184{left:228.000000px;}
.x6b_c00184{left:229.500000px;}
.x38_c00184{left:232.920000px;}
.xe3_c00184{left:234.000000px;}
.x78_c00184{left:237.000000px;}
.x81_c00184{left:238.500000px;}
.xee_c00184{left:239.775000px;}
.x87_c00184{left:243.000000px;}
.x62_c00184{left:246.420000px;}
.xc1_c00184{left:249.000000px;}
.x5b_c00184{left:255.000000px;}
.x79_c00184{left:256.500000px;}
.xb4_c00184{left:258.000000px;}
.x34_c00184{left:259.080000px;}
.x54_c00184{left:261.420000px;}
.x97_c00184{left:262.500000px;}
.x9c_c00184{left:264.420000px;}
.x5_c00184{left:265.500000px;}
.x1e_c00184{left:267.420000px;}
.x90_c00184{left:270.000000px;}
.xbe_c00184{left:273.000000px;}
.xa6_c00184{left:277.920000px;}
.x39_c00184{left:280.080000px;}
.xea_c00184{left:281.580000px;}
.x4c_c00184{left:282.855000px;}
.xaf_c00184{left:288.000000px;}
.x6_c00184{left:290.580000px;}
.x6c_c00184{left:292.080000px;}
.xbf_c00184{left:293.580000px;}
.xd3_c00184{left:296.580000px;}
.x98_c00184{left:300.420000px;}
.x13_c00184{left:303.000000px;}
.x88_c00184{left:304.500000px;}
.x1f_c00184{left:309.000000px;}
.xc2_c00184{left:312.000000px;}
.x2a_c00184{left:313.080000px;}
.x5c_c00184{left:315.000000px;}
.x7_c00184{left:316.920000px;}
.xa7_c00184{left:318.420000px;}
.xef_c00184{left:319.500000px;}
.x4d_c00184{left:320.775000px;}
.x6d_c00184{left:322.500000px;}
.x99_c00184{left:325.500000px;}
.x43_c00184{left:329.580000px;}
.x63_c00184{left:333.000000px;}
.x35_c00184{left:335.580000px;}
.x9d_c00184{left:337.080000px;}
.x14_c00184{left:339.000000px;}
.x20_c00184{left:340.920000px;}
.xd4_c00184{left:342.000000px;}
.xb6_c00184{left:346.275000px;}
.xb5_c00184{left:348.000000px;}
.x7a_c00184{left:349.920000px;}
.xc0_c00184{left:352.080000px;}
.x8_c00184{left:354.000000px;}
.x4e_c00184{left:356.580000px;}
.xc7_c00184{left:357.645000px;}
.xe4_c00184{left:361.500000px;}
.xc3_c00184{left:363.000000px;}
.x3a_c00184{left:364.080000px;}
.x15_c00184{left:366.420000px;}
.x44_c00184{left:369.000000px;}
.x89_c00184{left:370.500000px;}
.xd5_c00184{left:376.500000px;}
.xa2_c00184{left:378.000000px;}
.x5d_c00184{left:379.920000px;}
.x91_c00184{left:382.500000px;}
.xb7_c00184{left:386.580000px;}
.x21_c00184{left:388.080000px;}
.xa8_c00184{left:391.500000px;}
.x8a_c00184{left:394.920000px;}
.x2_c00184{left:397.500000px;}
.xf0_c00184{left:399.000000px;}
.x2b_c00184{left:401.580000px;}
.xca_c00184{left:405.000000px;}
.x9a_c00184{left:406.920000px;}
.x22_c00184{left:408.420000px;}
.xb8_c00184{left:410.580000px;}
.x64_c00184{left:412.500000px;}
.x9e_c00184{left:417.420000px;}
.x9_c00184{left:418.920000px;}
.x3b_c00184{left:424.500000px;}
.xa9_c00184{left:426.000000px;}
.x36_c00184{left:427.500000px;}
.x8b_c00184{left:429.420000px;}
.x7b_c00184{left:431.580000px;}
.xb9_c00184{left:435.000000px;}
.x23_c00184{left:442.500000px;}
.x6e_c00184{left:444.420000px;}
.x45_c00184{left:447.000000px;}
.x4f_c00184{left:449.580000px;}
.x7c_c00184{left:451.080000px;}
.x2c_c00184{left:453.420000px;}
.xa3_c00184{left:454.500000px;}
.xaa_c00184{left:455.580000px;}
.x3c_c00184{left:459.000000px;}
.x65_c00184{left:460.500000px;}
.x92_c00184{left:461.580000px;}
.x16_c00184{left:463.920000px;}
.xd0_c00184{left:465.420000px;}
.x55_c00184{left:466.500000px;}
.xa_c00184{left:467.580000px;}
.x6f_c00184{left:471.000000px;}
.xb0_c00184{left:472.080000px;}
.x70_c00184{left:475.080000px;}
.xcb_c00184{left:477.000000px;}
.x9b_c00184{left:478.500000px;}
.xe0_c00184{left:480.000000px;}
.xeb_c00184{left:482.580000px;}
.xf1_c00184{left:484.920000px;}
.x71_c00184{left:486.000000px;}
.x17_c00184{left:489.420000px;}
.xe6_c00184{left:490.920000px;}
.x2d_c00184{left:492.000000px;}
.xa4_c00184{left:493.500000px;}
.xb1_c00184{left:494.580000px;}
.xd1_c00184{left:496.500000px;}
.x9f_c00184{left:500.580000px;}
.xd9_c00184{left:504.000000px;}
.xb_c00184{left:508.920000px;}
.x50_c00184{left:510.000000px;}
.xec_c00184{left:511.500000px;}
.xab_c00184{left:513.420000px;}
.x66_c00184{left:516.000000px;}
.x72_c00184{left:517.500000px;}
.xcc_c00184{left:522.000000px;}
.x2e_c00184{left:523.080000px;}
.xa0_c00184{left:524.580000px;}
.x18_c00184{left:526.500000px;}
.x24_c00184{left:529.500000px;}
.x93_c00184{left:530.580000px;}
.xc8_c00184{left:532.500000px;}
.x7d_c00184{left:534.000000px;}
.xac_c00184{left:536.355000px;}
.x3d_c00184{left:538.500000px;}
.x46_c00184{left:541.920000px;}
.xe5_c00184{left:549.000000px;}
.x73_c00184{left:550.080000px;}
.xc6_c00184{left:551.580000px;}
.x2f_c00184{left:553.920000px;}
.x25_c00184{left:555.000000px;}
.xc_c00184{left:556.080000px;}
.x51_c00184{left:564.420000px;}
.x82_c00184{left:567.000000px;}
.xda_c00184{left:569.580000px;}
.xed_c00184{left:571.500000px;}
.xba_c00184{left:573.000000px;}
.xd_c00184{left:574.920000px;}
.x19_c00184{left:576.000000px;}
.x67_c00184{left:577.500000px;}
.xcd_c00184{left:579.420000px;}
.x56_c00184{left:580.920000px;}
.x26_c00184{left:582.420000px;}
.x94_c00184{left:583.500000px;}
.xb2_c00184{left:588.645000px;}
.xe1_c00184{left:591.420000px;}
.x74_c00184{left:592.920000px;}
.xc4_c00184{left:595.080000px;}
.x47_c00184{left:598.275000px;}
.x83_c00184{left:599.580000px;}
.x7e_c00184{left:601.500000px;}
.xd6_c00184{left:603.000000px;}
.xdd_c00184{left:604.500000px;}
.x30_c00184{left:605.580000px;}
.xa1_c00184{left:607.920000px;}
.x68_c00184{left:609.000000px;}
.xc9_c00184{left:612.420000px;}
.xe_c00184{left:613.920000px;}
.x27_c00184{left:615.000000px;}
.x3e_c00184{left:616.080000px;}
.x52_c00184{left:617.355000px;}
.x57_c00184{left:619.920000px;}
.x37_c00184{left:622.080000px;}
.xde_c00184{left:624.000000px;}
.x8c_c00184{left:625.080000px;}
.x5e_c00184{left:630.000000px;}
.x84_c00184{left:631.500000px;}
.x7f_c00184{left:634.080000px;}
.x48_c00184{left:636.855000px;}
.x31_c00184{left:640.080000px;}
.x75_c00184{left:641.580000px;}
.x1a_c00184{left:642.855000px;}
.xce_c00184{left:643.920000px;}
.xdf_c00184{left:645.000000px;}
.x8d_c00184{left:646.920000px;}
.x85_c00184{left:651.000000px;}
.xdb_c00184{left:652.920000px;}
.xf_c00184{left:654.000000px;}
.xf2_c00184{left:655.080000px;}
.x5f_c00184{left:661.500000px;}
.xe7_c00184{left:663.000000px;}
.x3f_c00184{left:669.000000px;}
.x32_c00184{left:670.500000px;}
.xc5_c00184{left:673.500000px;}
.x49_c00184{left:676.500000px;}
.x28_c00184{left:681.420000px;}
.xe8_c00184{left:682.500000px;}
.x10_c00184{left:685.920000px;}
.x58_c00184{left:688.080000px;}
.x8e_c00184{left:690.000000px;}
.x1b_c00184{left:691.080000px;}
.x60_c00184{left:692.580000px;}
.x86_c00184{left:694.080000px;}
.x40_c00184{left:697.500000px;}
.xb3_c00184{left:700.080000px;}
.x80_c00184{left:703.500000px;}
.x1_c00184{left:705.420000px;}
.x29_c00184{left:706.500000px;}
.x8f_c00184{left:708.420000px;}
.xcf_c00184{left:712.500000px;}
.x95_c00184{left:716.580000px;}
.xe2_c00184{left:718.500000px;}
.xd7_c00184{left:723.000000px;}
@media print{
.v0_c00184{vertical-align:0.000000pt;}
.ls0_c00184{letter-spacing:0.000000pt;}
.ws5_c00184{word-spacing:-7.224747pt;}
.ws3_c00184{word-spacing:-4.005566pt;}
.ws4_c00184{word-spacing:-3.609622pt;}
.ws1_c00184{word-spacing:-1.859683pt;}
.ws7_c00184{word-spacing:-1.848392pt;}
.ws0_c00184{word-spacing:-1.593571pt;}
.ws8_c00184{word-spacing:0.000000pt;}
.ws6_c00184{word-spacing:0.072257pt;}
.ws2_c00184{word-spacing:1.836858pt;}
.fs6_c00184{font-size:3.040000pt;}
.fs7_c00184{font-size:10.560000pt;}
.fs5_c00184{font-size:16.640000pt;}
.fs1_c00184{font-size:18.133333pt;}
.fs4_c00184{font-size:22.666667pt;}
.fs0_c00184{font-size:25.706667pt;}
.fs3_c00184{font-size:28.746667pt;}
.fs2_c00184{font-size:31.733333pt;}
.fs8_c00184{font-size:34.773333pt;}
.y0_c00184{bottom:0.000000pt;}
.yc8_c00184{bottom:206.440000pt;}
.yca_c00184{bottom:207.400000pt;}
.yc9_c00184{bottom:208.360000pt;}
.yc7_c00184{bottom:223.773333pt;}
.yc2_c00184{bottom:223.973333pt;}
.yc3_c00184{bottom:224.160000pt;}
.yc6_c00184{bottom:225.106667pt;}
.yc4_c00184{bottom:225.693333pt;}
.yc5_c00184{bottom:225.893333pt;}
.yc1_c00184{bottom:227.026667pt;}
.ybe_c00184{bottom:242.440000pt;}
.yc0_c00184{bottom:243.226667pt;}
.ybf_c00184{bottom:244.360000pt;}
.ybb_c00184{bottom:259.773333pt;}
.ybd_c00184{bottom:260.733333pt;}
.ybc_c00184{bottom:261.693333pt;}
.yb7_c00184{bottom:277.106667pt;}
.yb9_c00184{bottom:278.640000pt;}
.yb8_c00184{bottom:279.026667pt;}
.yba_c00184{bottom:279.973333pt;}
.yb4_c00184{bottom:294.440000pt;}
.yb6_c00184{bottom:295.400000pt;}
.yb5_c00184{bottom:296.360000pt;}
.yb3_c00184{bottom:296.560000pt;}
.yb2_c00184{bottom:311.773333pt;}
.yaf_c00184{bottom:313.106667pt;}
.yb1_c00184{bottom:313.693333pt;}
.yae_c00184{bottom:313.893333pt;}
.yb0_c00184{bottom:315.026667pt;}
.ya7_c00184{bottom:329.106667pt;}
.yac_c00184{bottom:329.306667pt;}
.yad_c00184{bottom:329.893333pt;}
.yaa_c00184{bottom:330.066667pt;}
.ya8_c00184{bottom:330.440000pt;}
.ya9_c00184{bottom:331.026667pt;}
.yab_c00184{bottom:331.226667pt;}
.ya6_c00184{bottom:346.440000pt;}
.ya4_c00184{bottom:347.026667pt;}
.ya2_c00184{bottom:347.773333pt;}
.ya5_c00184{bottom:349.306667pt;}
.ya3_c00184{bottom:349.693333pt;}
.ya0_c00184{bottom:364.360000pt;}
.y9f_c00184{bottom:365.106667pt;}
.y9d_c00184{bottom:365.893333pt;}
.ya1_c00184{bottom:366.066667pt;}
.y9e_c00184{bottom:367.026667pt;}
.y9b_c00184{bottom:382.440000pt;}
.y9c_c00184{bottom:383.226667pt;}
.y99_c00184{bottom:384.360000pt;}
.y9a_c00184{bottom:385.706667pt;}
.y98_c00184{bottom:399.773333pt;}
.y96_c00184{bottom:417.106667pt;}
.y97_c00184{bottom:418.066667pt;}
.y95_c00184{bottom:419.026667pt;}
.y93_c00184{bottom:435.773333pt;}
.y94_c00184{bottom:436.360000pt;}
.y91_c00184{bottom:437.693333pt;}
.y92_c00184{bottom:437.706667pt;}
.y90_c00184{bottom:453.106667pt;}
.y8e_c00184{bottom:453.893333pt;}
.y8d_c00184{bottom:455.026667pt;}
.y8f_c00184{bottom:455.040000pt;}
.y8b_c00184{bottom:469.306667pt;}
.y87_c00184{bottom:469.693333pt;}
.y88_c00184{bottom:470.440000pt;}
.y8a_c00184{bottom:471.226667pt;}
.y8c_c00184{bottom:471.400000pt;}
.y89_c00184{bottom:472.360000pt;}
.y86_c00184{bottom:486.440000pt;}
.y83_c00184{bottom:487.026667pt;}
.y80_c00184{bottom:487.773333pt;}
.y84_c00184{bottom:488.160000pt;}
.y82_c00184{bottom:488.733333pt;}
.y85_c00184{bottom:489.693333pt;}
.y81_c00184{bottom:489.706667pt;}
.y7f_c00184{bottom:505.106667pt;}
.y7e_c00184{bottom:506.066667pt;}
.y7d_c00184{bottom:507.026667pt;}
.y7c_c00184{bottom:507.973333pt;}
.y7b_c00184{bottom:521.693333pt;}
.y79_c00184{bottom:522.440000pt;}
.y75_c00184{bottom:523.773333pt;}
.y7a_c00184{bottom:524.360000pt;}
.y77_c00184{bottom:524.733333pt;}
.y78_c00184{bottom:525.693333pt;}
.y76_c00184{bottom:525.706667pt;}
.y73_c00184{bottom:546.640000pt;}
.y70_c00184{bottom:547.026667pt;}
.y6f_c00184{bottom:547.400000pt;}
.y74_c00184{bottom:547.600000pt;}
.y72_c00184{bottom:548.360000pt;}
.y6e_c00184{bottom:549.306667pt;}
.y71_c00184{bottom:550.266667pt;}
.y6b_c00184{bottom:565.306667pt;}
.y6a_c00184{bottom:566.066667pt;}
.y6c_c00184{bottom:566.640000pt;}
.y6d_c00184{bottom:568.933333pt;}
.y69_c00184{bottom:579.400000pt;}
.y67_c00184{bottom:580.360000pt;}
.y68_c00184{bottom:582.266667pt;}
.y66_c00184{bottom:603.773333pt;}
.y65_c00184{bottom:605.306667pt;}
.y64_c00184{bottom:605.693333pt;}
.y62_c00184{bottom:645.106667pt;}
.y61_c00184{bottom:647.026667pt;}
.y63_c00184{bottom:647.226667pt;}
.y60_c00184{bottom:662.440000pt;}
.y5d_c00184{bottom:664.360000pt;}
.y5f_c00184{bottom:664.560000pt;}
.y5e_c00184{bottom:665.306667pt;}
.y5a_c00184{bottom:681.106667pt;}
.y5c_c00184{bottom:681.693333pt;}
.y59_c00184{bottom:681.893333pt;}
.y5b_c00184{bottom:682.640000pt;}
.y58_c00184{bottom:683.026667pt;}
.y57_c00184{bottom:698.440000pt;}
.y56_c00184{bottom:699.400000pt;}
.y55_c00184{bottom:700.360000pt;}
.y53_c00184{bottom:715.600000pt;}
.y51_c00184{bottom:715.773333pt;}
.y52_c00184{bottom:716.560000pt;}
.y54_c00184{bottom:717.306667pt;}
.y4f_c00184{bottom:717.693333pt;}
.y50_c00184{bottom:717.706667pt;}
.y4d_c00184{bottom:733.306667pt;}
.y4e_c00184{bottom:735.226667pt;}
.y4c_c00184{bottom:748.560000pt;}
.y48_c00184{bottom:749.133333pt;}
.y45_c00184{bottom:749.306667pt;}
.y49_c00184{bottom:750.440000pt;}
.y46_c00184{bottom:751.226667pt;}
.y4a_c00184{bottom:751.400000pt;}
.y4b_c00184{bottom:752.360000pt;}
.y47_c00184{bottom:755.226667pt;}
.y44_c00184{bottom:767.026667pt;}
.y42_c00184{bottom:767.773333pt;}
.y41_c00184{bottom:768.733333pt;}
.y43_c00184{bottom:769.106667pt;}
.y3f_c00184{bottom:769.693333pt;}
.y40_c00184{bottom:769.893333pt;}
.y39_c00184{bottom:784.360000pt;}
.y3d_c00184{bottom:784.733333pt;}
.y3e_c00184{bottom:785.106667pt;}
.y38_c00184{bottom:785.306667pt;}
.y3a_c00184{bottom:786.440000pt;}
.y3c_c00184{bottom:787.400000pt;}
.y3b_c00184{bottom:788.360000pt;}
.y36_c00184{bottom:802.640000pt;}
.y32_c00184{bottom:803.026667pt;}
.y31_c00184{bottom:803.400000pt;}
.y33_c00184{bottom:803.773333pt;}
.y37_c00184{bottom:804.360000pt;}
.y35_c00184{bottom:804.733333pt;}
.y34_c00184{bottom:805.306667pt;}
.y30_c00184{bottom:805.693333pt;}
.y2e_c00184{bottom:819.400000pt;}
.y2f_c00184{bottom:819.973333pt;}
.y2d_c00184{bottom:820.360000pt;}
.y2c_c00184{bottom:821.106667pt;}
.y2b_c00184{bottom:822.066667pt;}
.y29_c00184{bottom:822.640000pt;}
.y2a_c00184{bottom:823.026667pt;}
.y27_c00184{bottom:836.560000pt;}
.y24_c00184{bottom:837.106667pt;}
.y26_c00184{bottom:837.693333pt;}
.y25_c00184{bottom:838.440000pt;}
.y28_c00184{bottom:839.400000pt;}
.y23_c00184{bottom:840.360000pt;}
.y22_c00184{bottom:840.373333pt;}
.y1d_c00184{bottom:855.026667pt;}
.y1e_c00184{bottom:855.773333pt;}
.y21_c00184{bottom:856.560000pt;}
.y1c_c00184{bottom:856.733333pt;}
.y20_c00184{bottom:856.933333pt;}
.y1f_c00184{bottom:857.893333pt;}
.y1b_c00184{bottom:872.360000pt;}
.y18_c00184{bottom:872.733333pt;}
.y17_c00184{bottom:873.106667pt;}
.y19_c00184{bottom:874.066667pt;}
.y1a_c00184{bottom:875.026667pt;}
.y14_c00184{bottom:889.693333pt;}
.y13_c00184{bottom:890.440000pt;}
.y15_c00184{bottom:890.640000pt;}
.y16_c00184{bottom:891.400000pt;}
.y12_c00184{bottom:892.360000pt;}
.y10_c00184{bottom:907.026667pt;}
.ye_c00184{bottom:907.773333pt;}
.y11_c00184{bottom:907.973333pt;}
.yf_c00184{bottom:909.693333pt;}
.ya_c00184{bottom:925.106667pt;}
.yb_c00184{bottom:925.306667pt;}
.yc_c00184{bottom:925.693333pt;}
.yd_c00184{bottom:926.066667pt;}
.y8_c00184{bottom:927.026667pt;}
.y9_c00184{bottom:927.973333pt;}
.y6_c00184{bottom:941.693333pt;}
.y4_c00184{bottom:942.440000pt;}
.y7_c00184{bottom:942.640000pt;}
.y5_c00184{bottom:943.400000pt;}
.y3_c00184{bottom:944.360000pt;}
.y1_c00184{bottom:977.693333pt;}
.y2_c00184{bottom:979.600000pt;}
.h7_c00184{height:3.739141pt;}
.h8_c00184{height:12.988594pt;}
.h6_c00184{height:20.466875pt;}
.h2_c00184{height:22.303646pt;}
.h5_c00184{height:27.879557pt;}
.h1_c00184{height:31.618698pt;}
.h4_c00184{height:35.357839pt;}
.h3_c00184{height:39.031380pt;}
.h9_c00184{height:42.770521pt;}
.h0_c00184{height:1186.666667pt;}
.w0_c00184{width:782.666667pt;}
.x0_c00184{left:0.000000pt;}
.x41_c00184{left:133.333333pt;}
.x3_c00184{left:134.666667pt;}
.xbb_c00184{left:136.373333pt;}
.x77_c00184{left:148.573333pt;}
.xad_c00184{left:149.706667pt;}
.x11_c00184{left:150.666667pt;}
.x42_c00184{left:152.960000pt;}
.xbc_c00184{left:162.293333pt;}
.xdc_c00184{left:165.333333pt;}
.x69_c00184{left:167.040000pt;}
.x59_c00184{left:168.960000pt;}
.xd8_c00184{left:172.000000pt;}
.x53_c00184{left:174.666667pt;}
.x61_c00184{left:176.000000pt;}
.x1c_c00184{left:176.960000pt;}
.x4_c00184{left:178.666667pt;}
.xd2_c00184{left:179.800000pt;}
.x33_c00184{left:181.333333pt;}
.xbd_c00184{left:182.666667pt;}
.xae_c00184{left:184.373333pt;}
.x4a_c00184{left:186.293333pt;}
.x96_c00184{left:188.000000pt;}
.x6a_c00184{left:189.333333pt;}
.x12_c00184{left:192.000000pt;}
.xe9_c00184{left:193.333333pt;}
.x1d_c00184{left:195.040000pt;}
.x5a_c00184{left:196.000000pt;}
.x76_c00184{left:198.666667pt;}
.xa5_c00184{left:201.706667pt;}
.x4b_c00184{left:202.666667pt;}
.x6b_c00184{left:204.000000pt;}
.x38_c00184{left:207.040000pt;}
.xe3_c00184{left:208.000000pt;}
.x78_c00184{left:210.666667pt;}
.x81_c00184{left:212.000000pt;}
.xee_c00184{left:213.133333pt;}
.x87_c00184{left:216.000000pt;}
.x62_c00184{left:219.040000pt;}
.xc1_c00184{left:221.333333pt;}
.x5b_c00184{left:226.666667pt;}
.x79_c00184{left:228.000000pt;}
.xb4_c00184{left:229.333333pt;}
.x34_c00184{left:230.293333pt;}
.x54_c00184{left:232.373333pt;}
.x97_c00184{left:233.333333pt;}
.x9c_c00184{left:235.040000pt;}
.x5_c00184{left:236.000000pt;}
.x1e_c00184{left:237.706667pt;}
.x90_c00184{left:240.000000pt;}
.xbe_c00184{left:242.666667pt;}
.xa6_c00184{left:247.040000pt;}
.x39_c00184{left:248.960000pt;}
.xea_c00184{left:250.293333pt;}
.x4c_c00184{left:251.426667pt;}
.xaf_c00184{left:256.000000pt;}
.x6_c00184{left:258.293333pt;}
.x6c_c00184{left:259.626667pt;}
.xbf_c00184{left:260.960000pt;}
.xd3_c00184{left:263.626667pt;}
.x98_c00184{left:267.040000pt;}
.x13_c00184{left:269.333333pt;}
.x88_c00184{left:270.666667pt;}
.x1f_c00184{left:274.666667pt;}
.xc2_c00184{left:277.333333pt;}
.x2a_c00184{left:278.293333pt;}
.x5c_c00184{left:280.000000pt;}
.x7_c00184{left:281.706667pt;}
.xa7_c00184{left:283.040000pt;}
.xef_c00184{left:284.000000pt;}
.x4d_c00184{left:285.133333pt;}
.x6d_c00184{left:286.666667pt;}
.x99_c00184{left:289.333333pt;}
.x43_c00184{left:292.960000pt;}
.x63_c00184{left:296.000000pt;}
.x35_c00184{left:298.293333pt;}
.x9d_c00184{left:299.626667pt;}
.x14_c00184{left:301.333333pt;}
.x20_c00184{left:303.040000pt;}
.xd4_c00184{left:304.000000pt;}
.xb6_c00184{left:307.800000pt;}
.xb5_c00184{left:309.333333pt;}
.x7a_c00184{left:311.040000pt;}
.xc0_c00184{left:312.960000pt;}
.x8_c00184{left:314.666667pt;}
.x4e_c00184{left:316.960000pt;}
.xc7_c00184{left:317.906667pt;}
.xe4_c00184{left:321.333333pt;}
.xc3_c00184{left:322.666667pt;}
.x3a_c00184{left:323.626667pt;}
.x15_c00184{left:325.706667pt;}
.x44_c00184{left:328.000000pt;}
.x89_c00184{left:329.333333pt;}
.xd5_c00184{left:334.666667pt;}
.xa2_c00184{left:336.000000pt;}
.x5d_c00184{left:337.706667pt;}
.x91_c00184{left:340.000000pt;}
.xb7_c00184{left:343.626667pt;}
.x21_c00184{left:344.960000pt;}
.xa8_c00184{left:348.000000pt;}
.x8a_c00184{left:351.040000pt;}
.x2_c00184{left:353.333333pt;}
.xf0_c00184{left:354.666667pt;}
.x2b_c00184{left:356.960000pt;}
.xca_c00184{left:360.000000pt;}
.x9a_c00184{left:361.706667pt;}
.x22_c00184{left:363.040000pt;}
.xb8_c00184{left:364.960000pt;}
.x64_c00184{left:366.666667pt;}
.x9e_c00184{left:371.040000pt;}
.x9_c00184{left:372.373333pt;}
.x3b_c00184{left:377.333333pt;}
.xa9_c00184{left:378.666667pt;}
.x36_c00184{left:380.000000pt;}
.x8b_c00184{left:381.706667pt;}
.x7b_c00184{left:383.626667pt;}
.xb9_c00184{left:386.666667pt;}
.x23_c00184{left:393.333333pt;}
.x6e_c00184{left:395.040000pt;}
.x45_c00184{left:397.333333pt;}
.x4f_c00184{left:399.626667pt;}
.x7c_c00184{left:400.960000pt;}
.x2c_c00184{left:403.040000pt;}
.xa3_c00184{left:404.000000pt;}
.xaa_c00184{left:404.960000pt;}
.x3c_c00184{left:408.000000pt;}
.x65_c00184{left:409.333333pt;}
.x92_c00184{left:410.293333pt;}
.x16_c00184{left:412.373333pt;}
.xd0_c00184{left:413.706667pt;}
.x55_c00184{left:414.666667pt;}
.xa_c00184{left:415.626667pt;}
.x6f_c00184{left:418.666667pt;}
.xb0_c00184{left:419.626667pt;}
.x70_c00184{left:422.293333pt;}
.xcb_c00184{left:424.000000pt;}
.x9b_c00184{left:425.333333pt;}
.xe0_c00184{left:426.666667pt;}
.xeb_c00184{left:428.960000pt;}
.xf1_c00184{left:431.040000pt;}
.x71_c00184{left:432.000000pt;}
.x17_c00184{left:435.040000pt;}
.xe6_c00184{left:436.373333pt;}
.x2d_c00184{left:437.333333pt;}
.xa4_c00184{left:438.666667pt;}
.xb1_c00184{left:439.626667pt;}
.xd1_c00184{left:441.333333pt;}
.x9f_c00184{left:444.960000pt;}
.xd9_c00184{left:448.000000pt;}
.xb_c00184{left:452.373333pt;}
.x50_c00184{left:453.333333pt;}
.xec_c00184{left:454.666667pt;}
.xab_c00184{left:456.373333pt;}
.x66_c00184{left:458.666667pt;}
.x72_c00184{left:460.000000pt;}
.xcc_c00184{left:464.000000pt;}
.x2e_c00184{left:464.960000pt;}
.xa0_c00184{left:466.293333pt;}
.x18_c00184{left:468.000000pt;}
.x24_c00184{left:470.666667pt;}
.x93_c00184{left:471.626667pt;}
.xc8_c00184{left:473.333333pt;}
.x7d_c00184{left:474.666667pt;}
.xac_c00184{left:476.760000pt;}
.x3d_c00184{left:478.666667pt;}
.x46_c00184{left:481.706667pt;}
.xe5_c00184{left:488.000000pt;}
.x73_c00184{left:488.960000pt;}
.xc6_c00184{left:490.293333pt;}
.x2f_c00184{left:492.373333pt;}
.x25_c00184{left:493.333333pt;}
.xc_c00184{left:494.293333pt;}
.x51_c00184{left:501.706667pt;}
.x82_c00184{left:504.000000pt;}
.xda_c00184{left:506.293333pt;}
.xed_c00184{left:508.000000pt;}
.xba_c00184{left:509.333333pt;}
.xd_c00184{left:511.040000pt;}
.x19_c00184{left:512.000000pt;}
.x67_c00184{left:513.333333pt;}
.xcd_c00184{left:515.040000pt;}
.x56_c00184{left:516.373333pt;}
.x26_c00184{left:517.706667pt;}
.x94_c00184{left:518.666667pt;}
.xb2_c00184{left:523.240000pt;}
.xe1_c00184{left:525.706667pt;}
.x74_c00184{left:527.040000pt;}
.xc4_c00184{left:528.960000pt;}
.x47_c00184{left:531.800000pt;}
.x83_c00184{left:532.960000pt;}
.x7e_c00184{left:534.666667pt;}
.xd6_c00184{left:536.000000pt;}
.xdd_c00184{left:537.333333pt;}
.x30_c00184{left:538.293333pt;}
.xa1_c00184{left:540.373333pt;}
.x68_c00184{left:541.333333pt;}
.xc9_c00184{left:544.373333pt;}
.xe_c00184{left:545.706667pt;}
.x27_c00184{left:546.666667pt;}
.x3e_c00184{left:547.626667pt;}
.x52_c00184{left:548.760000pt;}
.x57_c00184{left:551.040000pt;}
.x37_c00184{left:552.960000pt;}
.xde_c00184{left:554.666667pt;}
.x8c_c00184{left:555.626667pt;}
.x5e_c00184{left:560.000000pt;}
.x84_c00184{left:561.333333pt;}
.x7f_c00184{left:563.626667pt;}
.x48_c00184{left:566.093333pt;}
.x31_c00184{left:568.960000pt;}
.x75_c00184{left:570.293333pt;}
.x1a_c00184{left:571.426667pt;}
.xce_c00184{left:572.373333pt;}
.xdf_c00184{left:573.333333pt;}
.x8d_c00184{left:575.040000pt;}
.x85_c00184{left:578.666667pt;}
.xdb_c00184{left:580.373333pt;}
.xf_c00184{left:581.333333pt;}
.xf2_c00184{left:582.293333pt;}
.x5f_c00184{left:588.000000pt;}
.xe7_c00184{left:589.333333pt;}
.x3f_c00184{left:594.666667pt;}
.x32_c00184{left:596.000000pt;}
.xc5_c00184{left:598.666667pt;}
.x49_c00184{left:601.333333pt;}
.x28_c00184{left:605.706667pt;}
.xe8_c00184{left:606.666667pt;}
.x10_c00184{left:609.706667pt;}
.x58_c00184{left:611.626667pt;}
.x8e_c00184{left:613.333333pt;}
.x1b_c00184{left:614.293333pt;}
.x60_c00184{left:615.626667pt;}
.x86_c00184{left:616.960000pt;}
.x40_c00184{left:620.000000pt;}
.xb3_c00184{left:622.293333pt;}
.x80_c00184{left:625.333333pt;}
.x1_c00184{left:627.040000pt;}
.x29_c00184{left:628.000000pt;}
.x8f_c00184{left:629.706667pt;}
.xcf_c00184{left:633.333333pt;}
.x95_c00184{left:636.960000pt;}
.xe2_c00184{left:638.666667pt;}
.xd7_c00184{left:642.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_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_54d9e9c01f87c589ccf25c79.woff2')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf2_c00185{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.md_c00185{transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);}
.m0_c00185{transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);}
.m3_c00185{transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);}
.m5a_c00185{transform:matrix(0.344709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344709,0.000000,0.000000,0.250000,0,0);}
.m78_c00185{transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);}
.m2_c00185{transform:matrix(0.366181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366181,0.000000,0.000000,0.250000,0,0);}
.m63_c00185{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m25_c00185{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m4c_c00185{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m61_c00185{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.mf5_c00185{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m74_c00185{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.mfe_c00185{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m7b_c00185{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m3a_c00185{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m7a_c00185{transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);}
.m7_c00185{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m9a_c00185{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m94_c00185{transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);}
.mc9_c00185{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m2f_c00185{transform:matrix(0.395228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395228,0.000000,0.000000,0.250000,0,0);}
.m53_c00185{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m7f_c00185{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m55_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);}
.m4f_c00185{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.mfc_c00185{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mc7_c00185{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.md0_c00185{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.mc3_c00185{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m27_c00185{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.mf4_c00185{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.mf9_c00185{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m77_c00185{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m100_c00185{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m54_c00185{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.mb8_c00185{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m89_c00185{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m97_c00185{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.mb6_c00185{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.md9_c00185{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mb0_c00185{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m9_c00185{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.me9_c00185{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mfd_c00185{transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);}
.mea_c00185{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.mc5_c00185{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mfb_c00185{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.m8e_c00185{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m79_c00185{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m43_c00185{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m5e_c00185{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m99_c00185{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m38_c00185{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m33_c00185{transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);}
.m6d_c00185{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mb9_c00185{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m6f_c00185{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m65_c00185{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m86_c00185{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.m19_c00185{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.ma_c00185{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m84_c00185{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.mcc_c00185{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.md3_c00185{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m90_c00185{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mbf_c00185{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m5b_c00185{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mf3_c00185{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m30_c00185{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.m71_c00185{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.maf_c00185{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.me7_c00185{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.ma2_c00185{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m101_c00185{transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);}
.m5f_c00185{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.mde_c00185{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.mf6_c00185{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.mad_c00185{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m4d_c00185{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m7c_c00185{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m39_c00185{transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);}
.me2_c00185{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m8a_c00185{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m22_c00185{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mc0_c00185{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m8c_c00185{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m52_c00185{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m8d_c00185{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.me6_c00185{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m47_c00185{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.mec_c00185{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.md5_c00185{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m8b_c00185{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.ma6_c00185{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.mdd_c00185{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.me5_c00185{transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);}
.mcf_c00185{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.ma8_c00185{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m92_c00185{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.me0_c00185{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m69_c00185{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.md6_c00185{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m1d_c00185{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m80_c00185{transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);}
.m1b_c00185{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m50_c00185{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.mfa_c00185{transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);}
.m40_c00185{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.md2_c00185{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m56_c00185{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m28_c00185{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m2d_c00185{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m6a_c00185{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.md1_c00185{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m6c_c00185{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.mff_c00185{transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);}
.mbb_c00185{transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);}
.m64_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);}
.ma7_c00185{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mb1_c00185{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m59_c00185{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.mba_c00185{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m58_c00185{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.md7_c00185{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.mf8_c00185{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m60_c00185{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m46_c00185{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m73_c00185{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m5d_c00185{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mf_c00185{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m9f_c00185{transform:matrix(0.514842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514842,0.000000,0.000000,0.250000,0,0);}
.mc_c00185{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m6b_c00185{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m9e_c00185{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.me8_c00185{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.ma9_c00185{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m10_c00185{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m45_c00185{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.mac_c00185{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mdc_c00185{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.mb_c00185{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mae_c00185{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m48_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);}
.m62_c00185{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.me1_c00185{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.med_c00185{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m9c_c00185{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m70_c00185{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m9d_c00185{transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);}
.mc4_c00185{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m96_c00185{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m15_c00185{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m49_c00185{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m68_c00185{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m1a_c00185{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m4e_c00185{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.mb2_c00185{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mab_c00185{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.me_c00185{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m24_c00185{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.meb_c00185{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m32_c00185{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m14_c00185{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mca_c00185{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m6_c00185{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mcb_c00185{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mc1_c00185{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m2b_c00185{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m85_c00185{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m4_c00185{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.mf7_c00185{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m3e_c00185{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m5_c00185{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m16_c00185{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m7e_c00185{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.ma1_c00185{transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);}
.m5c_c00185{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m1c_c00185{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.md4_c00185{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.mc6_c00185{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m8_c00185{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m51_c00185{transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);}
.m98_c00185{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mb5_c00185{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m12_c00185{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m11_c00185{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.mbc_c00185{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m44_c00185{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.m9b_c00185{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.me4_c00185{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mcd_c00185{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mf0_c00185{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mda_c00185{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.md8_c00185{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.mef_c00185{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.mc8_c00185{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mc2_c00185{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m20_c00185{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m88_c00185{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.ma3_c00185{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mdb_c00185{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m18_c00185{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m93_c00185{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m83_c00185{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mbd_c00185{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m35_c00185{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m26_c00185{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m37_c00185{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m91_c00185{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mdf_c00185{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m4a_c00185{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.mb3_c00185{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m1_c00185{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m3c_c00185{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m87_c00185{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.ma5_c00185{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.me3_c00185{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m82_c00185{transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);}
.mb4_c00185{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mee_c00185{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.m42_c00185{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m3d_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);}
.m36_c00185{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.maa_c00185{transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);}
.m8f_c00185{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m2c_c00185{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m21_c00185{transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);}
.m2e_c00185{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m3b_c00185{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m1f_c00185{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m2a_c00185{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m75_c00185{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m3f_c00185{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.mb7_c00185{transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);}
.m29_c00185{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m41_c00185{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m17_c00185{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m34_c00185{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mf1_c00185{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m4b_c00185{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m95_c00185{transform:matrix(0.719853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719853,0.000000,0.000000,0.250000,0,0);}
.m1e_c00185{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m81_c00185{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m72_c00185{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m67_c00185{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m66_c00185{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m7d_c00185{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m13_c00185{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.ma4_c00185{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mbe_c00185{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m23_c00185{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m57_c00185{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.mce_c00185{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.ma0_c00185{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m76_c00185{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m31_c00185{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m6e_c00185{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00185{vertical-align:0.000000px;}
.v1_c00185{vertical-align:18.000000px;}
.ls0_c00185{letter-spacing:0.000000px;}
.sc__c00185{text-shadow:none;}
.sc0_c00185{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00185{-webkit-text-stroke:0px transparent;}
.sc0_c00185{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00185{word-spacing:-5.939993px;}
.ws2_c00185{word-spacing:0.000000px;}
.ws0_c00185{word-spacing:9.650052px;}
.fc0_c00185{color:transparent;}
.fs8_c00185{font-size:3.420000px;}
.fs7_c00185{font-size:13.620000px;}
.fs4_c00185{font-size:18.720000px;}
.fs1_c00185{font-size:20.400000px;}
.fs6_c00185{font-size:25.500000px;}
.fs3_c00185{font-size:28.920000px;}
.fs5_c00185{font-size:32.340000px;}
.fs0_c00185{font-size:35.700000px;}
.fs2_c00185{font-size:39.120000px;}
.y0_c00185{bottom:0.000000px;}
.ye7_c00185{bottom:249.825000px;}
.ye8_c00185{bottom:250.245000px;}
.ye6_c00185{bottom:250.905000px;}
.yea_c00185{bottom:251.325000px;}
.ye9_c00185{bottom:252.405000px;}
.ye4_c00185{bottom:269.745000px;}
.ye1_c00185{bottom:270.405000px;}
.ye5_c00185{bottom:270.630000px;}
.ye2_c00185{bottom:270.825000px;}
.ye3_c00185{bottom:271.905000px;}
.ye0_c00185{bottom:288.405000px;}
.ydf_c00185{bottom:289.245000px;}
.ydd_c00185{bottom:289.905000px;}
.yde_c00185{bottom:290.325000px;}
.ydc_c00185{bottom:291.405000px;}
.yd7_c00185{bottom:307.905000px;}
.ydb_c00185{bottom:308.745000px;}
.yda_c00185{bottom:309.825000px;}
.yd8_c00185{bottom:310.245000px;}
.yd6_c00185{bottom:310.905000px;}
.yd9_c00185{bottom:312.405000px;}
.yd3_c00185{bottom:328.245000px;}
.yd4_c00185{bottom:329.745000px;}
.yd1_c00185{bottom:330.405000px;}
.yd5_c00185{bottom:330.825000px;}
.yd2_c00185{bottom:331.905000px;}
.ycb_c00185{bottom:347.745000px;}
.ycc_c00185{bottom:348.825000px;}
.ycd_c00185{bottom:349.905000px;}
.ycf_c00185{bottom:350.970000px;}
.yce_c00185{bottom:351.405000px;}
.yd0_c00185{bottom:352.470000px;}
.yc4_c00185{bottom:367.245000px;}
.yc5_c00185{bottom:368.745000px;}
.yc3_c00185{bottom:369.405000px;}
.yca_c00185{bottom:369.630000px;}
.yc8_c00185{bottom:369.825000px;}
.yc6_c00185{bottom:370.905000px;}
.yc7_c00185{bottom:371.130000px;}
.yc9_c00185{bottom:371.970000px;}
.yc1_c00185{bottom:388.245000px;}
.yc2_c00185{bottom:389.325000px;}
.yc0_c00185{bottom:390.405000px;}
.ybf_c00185{bottom:407.745000px;}
.yba_c00185{bottom:408.825000px;}
.ybd_c00185{bottom:409.245000px;}
.yb9_c00185{bottom:409.905000px;}
.ybc_c00185{bottom:410.130000px;}
.ybe_c00185{bottom:410.970000px;}
.ybb_c00185{bottom:411.405000px;}
.yb2_c00185{bottom:427.245000px;}
.yb8_c00185{bottom:428.325000px;}
.yb7_c00185{bottom:428.745000px;}
.yb3_c00185{bottom:429.405000px;}
.yb5_c00185{bottom:429.630000px;}
.yb6_c00185{bottom:429.825000px;}
.yb4_c00185{bottom:430.905000px;}
.yb1_c00185{bottom:446.745000px;}
.yac_c00185{bottom:447.825000px;}
.yaf_c00185{bottom:448.245000px;}
.yae_c00185{bottom:448.905000px;}
.yb0_c00185{bottom:449.130000px;}
.yad_c00185{bottom:450.405000px;}
.ya9_c00185{bottom:467.745000px;}
.ya7_c00185{bottom:468.405000px;}
.yaa_c00185{bottom:468.630000px;}
.yab_c00185{bottom:468.825000px;}
.ya8_c00185{bottom:469.905000px;}
.ya2_c00185{bottom:485.745000px;}
.ya5_c00185{bottom:488.130000px;}
.ya6_c00185{bottom:488.325000px;}
.ya3_c00185{bottom:489.405000px;}
.ya4_c00185{bottom:489.630000px;}
.ya1_c00185{bottom:506.745000px;}
.y9d_c00185{bottom:507.630000px;}
.ya0_c00185{bottom:507.825000px;}
.y9c_c00185{bottom:508.905000px;}
.y9e_c00185{bottom:509.130000px;}
.y9f_c00185{bottom:509.970000px;}
.y96_c00185{bottom:523.905000px;}
.y99_c00185{bottom:525.405000px;}
.y97_c00185{bottom:526.245000px;}
.y9b_c00185{bottom:527.745000px;}
.y95_c00185{bottom:528.405000px;}
.y9a_c00185{bottom:528.630000px;}
.y98_c00185{bottom:529.905000px;}
.y90_c00185{bottom:545.745000px;}
.y91_c00185{bottom:546.825000px;}
.y92_c00185{bottom:547.245000px;}
.y8f_c00185{bottom:547.905000px;}
.y93_c00185{bottom:549.405000px;}
.y94_c00185{bottom:550.470000px;}
.y8c_c00185{bottom:564.405000px;}
.y89_c00185{bottom:566.325000px;}
.y8d_c00185{bottom:566.745000px;}
.y8e_c00185{bottom:567.405000px;}
.y8b_c00185{bottom:567.630000px;}
.y8a_c00185{bottom:568.905000px;}
.y87_c00185{bottom:586.245000px;}
.y85_c00185{bottom:586.905000px;}
.y88_c00185{bottom:587.550000px;}
.y86_c00185{bottom:588.405000px;}
.y80_c00185{bottom:605.745000px;}
.y7f_c00185{bottom:606.405000px;}
.y81_c00185{bottom:606.630000px;}
.y83_c00185{bottom:606.825000px;}
.y82_c00185{bottom:607.905000px;}
.y84_c00185{bottom:609.405000px;}
.y7e_c00185{bottom:623.970000px;}
.y7c_c00185{bottom:624.825000px;}
.y77_c00185{bottom:625.905000px;}
.y78_c00185{bottom:626.130000px;}
.y7d_c00185{bottom:626.325000px;}
.y7b_c00185{bottom:626.970000px;}
.y7a_c00185{bottom:627.405000px;}
.y79_c00185{bottom:628.470000px;}
.y76_c00185{bottom:644.745000px;}
.y71_c00185{bottom:645.405000px;}
.y73_c00185{bottom:645.825000px;}
.y72_c00185{bottom:646.905000px;}
.y75_c00185{bottom:647.130000px;}
.y74_c00185{bottom:648.405000px;}
.y6f_c00185{bottom:665.745000px;}
.y6e_c00185{bottom:666.405000px;}
.y70_c00185{bottom:667.470000px;}
.y6a_c00185{bottom:682.680000px;}
.y6b_c00185{bottom:685.050000px;}
.y6d_c00185{bottom:685.245000px;}
.y69_c00185{bottom:685.905000px;}
.y6c_c00185{bottom:687.405000px;}
.y63_c00185{bottom:704.325000px;}
.y65_c00185{bottom:704.745000px;}
.y68_c00185{bottom:705.405000px;}
.y64_c00185{bottom:705.825000px;}
.y67_c00185{bottom:706.470000px;}
.y66_c00185{bottom:706.905000px;}
.y5f_c00185{bottom:722.970000px;}
.y62_c00185{bottom:723.405000px;}
.y5a_c00185{bottom:723.825000px;}
.y61_c00185{bottom:724.245000px;}
.y5b_c00185{bottom:725.130000px;}
.y5e_c00185{bottom:725.325000px;}
.y60_c00185{bottom:725.550000px;}
.y5c_c00185{bottom:725.970000px;}
.y5d_c00185{bottom:726.405000px;}
.y55_c00185{bottom:742.245000px;}
.y58_c00185{bottom:742.905000px;}
.y57_c00185{bottom:743.745000px;}
.y56_c00185{bottom:745.905000px;}
.y59_c00185{bottom:746.130000px;}
.y4c_c00185{bottom:762.180000px;}
.y53_c00185{bottom:762.405000px;}
.y4f_c00185{bottom:762.825000px;}
.y4a_c00185{bottom:763.245000px;}
.y50_c00185{bottom:763.680000px;}
.y4d_c00185{bottom:764.745000px;}
.y52_c00185{bottom:764.970000px;}
.y4b_c00185{bottom:765.405000px;}
.y54_c00185{bottom:765.630000px;}
.y4e_c00185{bottom:766.470000px;}
.y51_c00185{bottom:766.905000px;}
.y45_c00185{bottom:782.745000px;}
.y47_c00185{bottom:784.905000px;}
.y49_c00185{bottom:785.130000px;}
.y48_c00185{bottom:785.970000px;}
.y46_c00185{bottom:786.420000px;}
.y44_c00185{bottom:804.405000px;}
.y40_c00185{bottom:821.745000px;}
.y3e_c00185{bottom:822.630000px;}
.y42_c00185{bottom:823.245000px;}
.y3f_c00185{bottom:823.905000px;}
.y43_c00185{bottom:824.130000px;}
.y41_c00185{bottom:825.405000px;}
.y39_c00185{bottom:841.245000px;}
.y3b_c00185{bottom:841.680000px;}
.y37_c00185{bottom:842.130000px;}
.y3a_c00185{bottom:842.745000px;}
.y38_c00185{bottom:843.405000px;}
.y3d_c00185{bottom:843.630000px;}
.y3c_c00185{bottom:844.905000px;}
.y36_c00185{bottom:861.180000px;}
.y34_c00185{bottom:861.405000px;}
.y32_c00185{bottom:862.245000px;}
.y33_c00185{bottom:863.130000px;}
.y35_c00185{bottom:864.405000px;}
.y2d_c00185{bottom:903.825000px;}
.y2f_c00185{bottom:904.905000px;}
.y2b_c00185{bottom:905.130000px;}
.y31_c00185{bottom:905.325000px;}
.y2c_c00185{bottom:905.970000px;}
.y2e_c00185{bottom:906.630000px;}
.y30_c00185{bottom:907.470000px;}
.y2a_c00185{bottom:918.825000px;}
.y22_c00185{bottom:919.050000px;}
.y29_c00185{bottom:919.470000px;}
.y26_c00185{bottom:920.325000px;}
.y23_c00185{bottom:920.970000px;}
.y27_c00185{bottom:921.405000px;}
.y25_c00185{bottom:921.630000px;}
.y24_c00185{bottom:922.470000px;}
.y28_c00185{bottom:922.695000px;}
.y21_c00185{bottom:934.905000px;}
.y20_c00185{bottom:935.970000px;}
.y1f_c00185{bottom:949.050000px;}
.y1b_c00185{bottom:949.905000px;}
.y1a_c00185{bottom:950.130000px;}
.y1d_c00185{bottom:950.970000px;}
.y1e_c00185{bottom:951.195000px;}
.y1c_c00185{bottom:952.050000px;}
.y19_c00185{bottom:963.825000px;}
.y17_c00185{bottom:964.050000px;}
.y16_c00185{bottom:965.130000px;}
.y18_c00185{bottom:967.050000px;}
.yf_c00185{bottom:978.630000px;}
.y10_c00185{bottom:978.825000px;}
.y11_c00185{bottom:979.905000px;}
.y12_c00185{bottom:980.130000px;}
.y14_c00185{bottom:980.970000px;}
.y15_c00185{bottom:981.195000px;}
.y13_c00185{bottom:982.050000px;}
.y9_c00185{bottom:1018.245000px;}
.ya_c00185{bottom:1020.405000px;}
.yd_c00185{bottom:1020.630000px;}
.yb_c00185{bottom:1020.825000px;}
.ye_c00185{bottom:1021.470000px;}
.yc_c00185{bottom:1021.905000px;}
.y6_c00185{bottom:1039.905000px;}
.y8_c00185{bottom:1040.130000px;}
.y7_c00185{bottom:1041.405000px;}
.y3_c00185{bottom:1057.680000px;}
.y5_c00185{bottom:1058.745000px;}
.y4_c00185{bottom:1060.905000px;}
.y1_c00185{bottom:1097.745000px;}
.y2_c00185{bottom:1099.050000px;}
.h9_c00185{height:4.206533px;}
.h8_c00185{height:16.752334px;}
.h5_c00185{height:23.025234px;}
.h2_c00185{height:25.091602px;}
.h7_c00185{height:31.364502px;}
.h4_c00185{height:35.571035px;}
.h6_c00185{height:39.777568px;}
.h1_c00185{height:43.910303px;}
.h3_c00185{height:48.116836px;}
.ha_c00185{height:53.571035px;}
.h0_c00185{height:1335.000000px;}
.w0_c00185{width:880.500000px;}
.x0_c00185{left:0.000000px;}
.x109_c00185{left:150.420000px;}
.x65_c00185{left:151.500000px;}
.xe_c00185{left:152.580000px;}
.x1_c00185{left:155.775000px;}
.x4f_c00185{left:165.000000px;}
.x36_c00185{left:166.500000px;}
.x28_c00185{left:168.420000px;}
.x53_c00185{left:169.500000px;}
.xfa_c00185{left:171.420000px;}
.x5d_c00185{left:174.000000px;}
.x33_c00185{left:175.920000px;}
.xe7_c00185{left:178.500000px;}
.x83_c00185{left:179.580000px;}
.x45_c00185{left:182.580000px;}
.x37_c00185{left:184.500000px;}
.x29_c00185{left:185.580000px;}
.xc2_c00185{left:187.500000px;}
.x5e_c00185{left:189.000000px;}
.xaf_c00185{left:190.500000px;}
.xdb_c00185{left:192.000000px;}
.xb9_c00185{left:195.000000px;}
.xa7_c00185{left:196.500000px;}
.x3_c00185{left:197.775000px;}
.xfb_c00185{left:199.920000px;}
.x91_c00185{left:204.000000px;}
.x8a_c00185{left:205.500000px;}
.x10e_c00185{left:207.000000px;}
.xc3_c00185{left:208.920000px;}
.x46_c00185{left:210.000000px;}
.xcb_c00185{left:211.500000px;}
.xdc_c00185{left:214.920000px;}
.x34_c00185{left:219.000000px;}
.x10a_c00185{left:220.500000px;}
.x1c_c00185{left:221.580000px;}
.xf_c00185{left:223.080000px;}
.xb0_c00185{left:226.500000px;}
.x4_c00185{left:228.000000px;}
.xf0_c00185{left:229.920000px;}
.x9e_c00185{left:231.000000px;}
.xba_c00185{left:235.500000px;}
.x54_c00185{left:237.000000px;}
.x38_c00185{left:238.920000px;}
.x101_c00185{left:241.920000px;}
.xdd_c00185{left:243.000000px;}
.x10_c00185{left:244.920000px;}
.x7c_c00185{left:246.000000px;}
.xa8_c00185{left:247.080000px;}
.x5_c00185{left:249.000000px;}
.x47_c00185{left:250.500000px;}
.x84_c00185{left:252.000000px;}
.xb1_c00185{left:253.080000px;}
.x5f_c00185{left:254.355000px;}
.x66_c00185{left:256.500000px;}
.x2a_c00185{left:257.580000px;}
.xe3_c00185{left:261.000000px;}
.x55_c00185{left:264.420000px;}
.x10b_c00185{left:267.000000px;}
.x102_c00185{left:268.500000px;}
.x10f_c00185{left:271.080000px;}
.x50_c00185{left:273.420000px;}
.x11_c00185{left:274.500000px;}
.x35_c00185{left:276.000000px;}
.x39_c00185{left:277.080000px;}
.xfe_c00185{left:279.420000px;}
.x67_c00185{left:282.000000px;}
.x104_c00185{left:283.500000px;}
.xb2_c00185{left:289.080000px;}
.x6_c00185{left:291.420000px;}
.x8b_c00185{left:292.920000px;}
.x3a_c00185{left:295.080000px;}
.xd4_c00185{left:297.420000px;}
.x92_c00185{left:300.000000px;}
.x48_c00185{left:303.000000px;}
.xcc_c00185{left:304.500000px;}
.x2b_c00185{left:306.000000px;}
.x105_c00185{left:307.080000px;}
.x51_c00185{left:309.000000px;}
.xec_c00185{left:310.920000px;}
.x60_c00185{left:313.080000px;}
.x9f_c00185{left:315.420000px;}
.x110_c00185{left:316.500000px;}
.xe4_c00185{left:318.420000px;}
.x3b_c00185{left:319.920000px;}
.xf4_c00185{left:325.500000px;}
.xcf_c00185{left:327.000000px;}
.x7_c00185{left:328.080000px;}
.x72_c00185{left:332.580000px;}
.x106_c00185{left:333.645000px;}
.x12_c00185{left:335.580000px;}
.xb3_c00185{left:337.080000px;}
.x49_c00185{left:339.000000px;}
.x98_c00185{left:342.000000px;}
.x56_c00185{left:346.500000px;}
.x3c_c00185{left:348.420000px;}
.xde_c00185{left:349.500000px;}
.xc4_c00185{left:351.420000px;}
.xd5_c00185{left:352.500000px;}
.x73_c00185{left:354.420000px;}
.x93_c00185{left:355.500000px;}
.x7d_c00185{left:357.000000px;}
.x1d_c00185{left:358.500000px;}
.xbb_c00185{left:360.420000px;}
.x103_c00185{left:361.500000px;}
.x3d_c00185{left:363.000000px;}
.x13_c00185{left:364.920000px;}
.x52_c00185{left:366.000000px;}
.x2c_c00185{left:367.500000px;}
.x68_c00185{left:368.580000px;}
.xd6_c00185{left:370.920000px;}
.x57_c00185{left:373.920000px;}
.xa9_c00185{left:376.500000px;}
.xb4_c00185{left:378.000000px;}
.xc5_c00185{left:379.500000px;}
.x99_c00185{left:381.420000px;}
.x8_c00185{left:383.580000px;}
.x4a_c00185{left:385.500000px;}
.x7e_c00185{left:388.500000px;}
.x107_c00185{left:391.080000px;}
.x111_c00185{left:393.000000px;}
.xa0_c00185{left:394.500000px;}
.x61_c00185{left:396.000000px;}
.x85_c00185{left:397.080000px;}
.xd7_c00185{left:398.580000px;}
.x2_c00185{left:400.500000px;}
.x8c_c00185{left:402.000000px;}
.x1e_c00185{left:403.500000px;}
.x69_c00185{left:405.000000px;}
.x7f_c00185{left:408.000000px;}
.x2d_c00185{left:409.500000px;}
.x9_c00185{left:411.645000px;}
.xdf_c00185{left:413.580000px;}
.x74_c00185{left:415.920000px;}
.x94_c00185{left:417.420000px;}
.xb5_c00185{left:418.920000px;}
.x1f_c00185{left:420.420000px;}
.xc6_c00185{left:421.920000px;}
.x10c_c00185{left:426.420000px;}
.xe8_c00185{left:429.000000px;}
.x86_c00185{left:430.500000px;}
.xbc_c00185{left:432.420000px;}
.xe0_c00185{left:433.920000px;}
.x4b_c00185{left:435.000000px;}
.x9a_c00185{left:436.080000px;}
.xed_c00185{left:438.000000px;}
.x58_c00185{left:441.000000px;}
.x3e_c00185{left:442.500000px;}
.x95_c00185{left:445.080000px;}
.xaa_c00185{left:446.355000px;}
.x20_c00185{left:447.420000px;}
.xc7_c00185{left:450.000000px;}
.x14_c00185{left:453.000000px;}
.x62_c00185{left:454.080000px;}
.xe9_c00185{left:456.000000px;}
.xf5_c00185{left:459.000000px;}
.xe1_c00185{left:462.420000px;}
.x15_c00185{left:463.500000px;}
.x8d_c00185{left:465.000000px;}
.xa1_c00185{left:466.500000px;}
.x6a_c00185{left:472.500000px;}
.x75_c00185{left:475.500000px;}
.xd0_c00185{left:477.000000px;}
.xff_c00185{left:480.420000px;}
.x80_c00185{left:481.500000px;}
.xee_c00185{left:483.000000px;}
.xd8_c00185{left:484.500000px;}
.x21_c00185{left:486.000000px;}
.x6b_c00185{left:487.920000px;}
.xf6_c00185{left:492.420000px;}
.x108_c00185{left:493.500000px;}
.xa_c00185{left:495.000000px;}
.x76_c00185{left:496.920000px;}
.x3f_c00185{left:499.500000px;}
.x16_c00185{left:501.420000px;}
.xbd_c00185{left:504.000000px;}
.x22_c00185{left:505.920000px;}
.xab_c00185{left:507.000000px;}
.x100_c00185{left:508.500000px;}
.x59_c00185{left:511.080000px;}
.x87_c00185{left:513.000000px;}
.xe5_c00185{left:514.500000px;}
.x6c_c00185{left:516.000000px;}
.x2e_c00185{left:517.920000px;}
.xb6_c00185{left:519.420000px;}
.xf7_c00185{left:520.920000px;}
.xcd_c00185{left:522.420000px;}
.xf1_c00185{left:523.500000px;}
.x77_c00185{left:526.500000px;}
.xac_c00185{left:527.580000px;}
.xc8_c00185{left:532.920000px;}
.xe2_c00185{left:534.000000px;}
.x17_c00185{left:537.645000px;}
.x23_c00185{left:540.000000px;}
.x96_c00185{left:541.500000px;}
.xd1_c00185{left:543.420000px;}
.x6d_c00185{left:544.500000px;}
.x88_c00185{left:546.000000px;}
.x9b_c00185{left:547.920000px;}
.xa2_c00185{left:550.080000px;}
.xb_c00185{left:553.080000px;}
.xb7_c00185{left:555.000000px;}
.x2f_c00185{left:556.080000px;}
.xbe_c00185{left:558.000000px;}
.x5a_c00185{left:560.580000px;}
.x4c_c00185{left:562.080000px;}
.xfc_c00185{left:563.580000px;}
.x6e_c00185{left:565.500000px;}
.x40_c00185{left:566.580000px;}
.x78_c00185{left:573.420000px;}
.x9c_c00185{left:576.420000px;}
.x97_c00185{left:577.920000px;}
.xd2_c00185{left:579.000000px;}
.x8e_c00185{left:580.500000px;}
.x24_c00185{left:582.000000px;}
.x30_c00185{left:583.080000px;}
.x113_c00185{left:585.000000px;}
.xc9_c00185{left:586.920000px;}
.xad_c00185{left:588.000000px;}
.x5b_c00185{left:589.920000px;}
.xf2_c00185{left:591.000000px;}
.x4d_c00185{left:592.920000px;}
.xce_c00185{left:595.080000px;}
.xd3_c00185{left:598.920000px;}
.xf8_c00185{left:600.420000px;}
.xbf_c00185{left:601.500000px;}
.xa3_c00185{left:603.000000px;}
.x25_c00185{left:604.500000px;}
.xb8_c00185{left:609.420000px;}
.x6f_c00185{left:612.000000px;}
.x79_c00185{left:613.500000px;}
.xca_c00185{left:616.080000px;}
.xea_c00185{left:617.580000px;}
.x81_c00185{left:621.000000px;}
.x41_c00185{left:622.500000px;}
.xa4_c00185{left:623.580000px;}
.xc_c00185{left:624.645000px;}
.x10d_c00185{left:627.000000px;}
.x18_c00185{left:628.500000px;}
.x26_c00185{left:630.000000px;}
.x42_c00185{left:633.000000px;}
.xd9_c00185{left:634.080000px;}
.x4e_c00185{left:636.000000px;}
.x19_c00185{left:637.500000px;}
.x31_c00185{left:641.580000px;}
.xf3_c00185{left:643.920000px;}
.x9d_c00185{left:646.500000px;}
.x8f_c00185{left:647.580000px;}
.x7a_c00185{left:649.500000px;}
.x27_c00185{left:650.775000px;}
.x82_c00185{left:652.500000px;}
.xda_c00185{left:655.080000px;}
.xae_c00185{left:658.500000px;}
.xeb_c00185{left:660.420000px;}
.x89_c00185{left:663.000000px;}
.x43_c00185{left:666.000000px;}
.x5c_c00185{left:667.500000px;}
.x63_c00185{left:669.000000px;}
.xa5_c00185{left:670.920000px;}
.x70_c00185{left:672.000000px;}
.x1a_c00185{left:675.420000px;}
.xc0_c00185{left:676.920000px;}
.xe6_c00185{left:678.000000px;}
.x90_c00185{left:680.580000px;}
.x32_c00185{left:683.580000px;}
.xef_c00185{left:686.580000px;}
.xd_c00185{left:688.080000px;}
.x112_c00185{left:691.500000px;}
.x44_c00185{left:693.855000px;}
.xf9_c00185{left:696.420000px;}
.xa6_c00185{left:699.000000px;}
.x64_c00185{left:701.775000px;}
.xc1_c00185{left:703.920000px;}
.x7b_c00185{left:705.000000px;}
.x1b_c00185{left:708.420000px;}
.xfd_c00185{left:709.920000px;}
.x71_c00185{left:720.000000px;}
@media print{
.v0_c00185{vertical-align:0.000000pt;}
.v1_c00185{vertical-align:16.000000pt;}
.ls0_c00185{letter-spacing:0.000000pt;}
.ws1_c00185{word-spacing:-5.279994pt;}
.ws2_c00185{word-spacing:0.000000pt;}
.ws0_c00185{word-spacing:8.577824pt;}
.fs8_c00185{font-size:3.040000pt;}
.fs7_c00185{font-size:12.106667pt;}
.fs4_c00185{font-size:16.640000pt;}
.fs1_c00185{font-size:18.133333pt;}
.fs6_c00185{font-size:22.666667pt;}
.fs3_c00185{font-size:25.706667pt;}
.fs5_c00185{font-size:28.746667pt;}
.fs0_c00185{font-size:31.733333pt;}
.fs2_c00185{font-size:34.773333pt;}
.y0_c00185{bottom:0.000000pt;}
.ye7_c00185{bottom:222.066667pt;}
.ye8_c00185{bottom:222.440000pt;}
.ye6_c00185{bottom:223.026667pt;}
.yea_c00185{bottom:223.400000pt;}
.ye9_c00185{bottom:224.360000pt;}
.ye4_c00185{bottom:239.773333pt;}
.ye1_c00185{bottom:240.360000pt;}
.ye5_c00185{bottom:240.560000pt;}
.ye2_c00185{bottom:240.733333pt;}
.ye3_c00185{bottom:241.693333pt;}
.ye0_c00185{bottom:256.360000pt;}
.ydf_c00185{bottom:257.106667pt;}
.ydd_c00185{bottom:257.693333pt;}
.yde_c00185{bottom:258.066667pt;}
.ydc_c00185{bottom:259.026667pt;}
.yd7_c00185{bottom:273.693333pt;}
.ydb_c00185{bottom:274.440000pt;}
.yda_c00185{bottom:275.400000pt;}
.yd8_c00185{bottom:275.773333pt;}
.yd6_c00185{bottom:276.360000pt;}
.yd9_c00185{bottom:277.693333pt;}
.yd3_c00185{bottom:291.773333pt;}
.yd4_c00185{bottom:293.106667pt;}
.yd1_c00185{bottom:293.693333pt;}
.yd5_c00185{bottom:294.066667pt;}
.yd2_c00185{bottom:295.026667pt;}
.ycb_c00185{bottom:309.106667pt;}
.ycc_c00185{bottom:310.066667pt;}
.ycd_c00185{bottom:311.026667pt;}
.ycf_c00185{bottom:311.973333pt;}
.yce_c00185{bottom:312.360000pt;}
.yd0_c00185{bottom:313.306667pt;}
.yc4_c00185{bottom:326.440000pt;}
.yc5_c00185{bottom:327.773333pt;}
.yc3_c00185{bottom:328.360000pt;}
.yca_c00185{bottom:328.560000pt;}
.yc8_c00185{bottom:328.733333pt;}
.yc6_c00185{bottom:329.693333pt;}
.yc7_c00185{bottom:329.893333pt;}
.yc9_c00185{bottom:330.640000pt;}
.yc1_c00185{bottom:345.106667pt;}
.yc2_c00185{bottom:346.066667pt;}
.yc0_c00185{bottom:347.026667pt;}
.ybf_c00185{bottom:362.440000pt;}
.yba_c00185{bottom:363.400000pt;}
.ybd_c00185{bottom:363.773333pt;}
.yb9_c00185{bottom:364.360000pt;}
.ybc_c00185{bottom:364.560000pt;}
.ybe_c00185{bottom:365.306667pt;}
.ybb_c00185{bottom:365.693333pt;}
.yb2_c00185{bottom:379.773333pt;}
.yb8_c00185{bottom:380.733333pt;}
.yb7_c00185{bottom:381.106667pt;}
.yb3_c00185{bottom:381.693333pt;}
.yb5_c00185{bottom:381.893333pt;}
.yb6_c00185{bottom:382.066667pt;}
.yb4_c00185{bottom:383.026667pt;}
.yb1_c00185{bottom:397.106667pt;}
.yac_c00185{bottom:398.066667pt;}
.yaf_c00185{bottom:398.440000pt;}
.yae_c00185{bottom:399.026667pt;}
.yb0_c00185{bottom:399.226667pt;}
.yad_c00185{bottom:400.360000pt;}
.ya9_c00185{bottom:415.773333pt;}
.ya7_c00185{bottom:416.360000pt;}
.yaa_c00185{bottom:416.560000pt;}
.yab_c00185{bottom:416.733333pt;}
.ya8_c00185{bottom:417.693333pt;}
.ya2_c00185{bottom:431.773333pt;}
.ya5_c00185{bottom:433.893333pt;}
.ya6_c00185{bottom:434.066667pt;}
.ya3_c00185{bottom:435.026667pt;}
.ya4_c00185{bottom:435.226667pt;}
.ya1_c00185{bottom:450.440000pt;}
.y9d_c00185{bottom:451.226667pt;}
.ya0_c00185{bottom:451.400000pt;}
.y9c_c00185{bottom:452.360000pt;}
.y9e_c00185{bottom:452.560000pt;}
.y9f_c00185{bottom:453.306667pt;}
.y96_c00185{bottom:465.693333pt;}
.y99_c00185{bottom:467.026667pt;}
.y97_c00185{bottom:467.773333pt;}
.y9b_c00185{bottom:469.106667pt;}
.y95_c00185{bottom:469.693333pt;}
.y9a_c00185{bottom:469.893333pt;}
.y98_c00185{bottom:471.026667pt;}
.y90_c00185{bottom:485.106667pt;}
.y91_c00185{bottom:486.066667pt;}
.y92_c00185{bottom:486.440000pt;}
.y8f_c00185{bottom:487.026667pt;}
.y93_c00185{bottom:488.360000pt;}
.y94_c00185{bottom:489.306667pt;}
.y8c_c00185{bottom:501.693333pt;}
.y89_c00185{bottom:503.400000pt;}
.y8d_c00185{bottom:503.773333pt;}
.y8e_c00185{bottom:504.360000pt;}
.y8b_c00185{bottom:504.560000pt;}
.y8a_c00185{bottom:505.693333pt;}
.y87_c00185{bottom:521.106667pt;}
.y85_c00185{bottom:521.693333pt;}
.y88_c00185{bottom:522.266667pt;}
.y86_c00185{bottom:523.026667pt;}
.y80_c00185{bottom:538.440000pt;}
.y7f_c00185{bottom:539.026667pt;}
.y81_c00185{bottom:539.226667pt;}
.y83_c00185{bottom:539.400000pt;}
.y82_c00185{bottom:540.360000pt;}
.y84_c00185{bottom:541.693333pt;}
.y7e_c00185{bottom:554.640000pt;}
.y7c_c00185{bottom:555.400000pt;}
.y77_c00185{bottom:556.360000pt;}
.y78_c00185{bottom:556.560000pt;}
.y7d_c00185{bottom:556.733333pt;}
.y7b_c00185{bottom:557.306667pt;}
.y7a_c00185{bottom:557.693333pt;}
.y79_c00185{bottom:558.640000pt;}
.y76_c00185{bottom:573.106667pt;}
.y71_c00185{bottom:573.693333pt;}
.y73_c00185{bottom:574.066667pt;}
.y72_c00185{bottom:575.026667pt;}
.y75_c00185{bottom:575.226667pt;}
.y74_c00185{bottom:576.360000pt;}
.y6f_c00185{bottom:591.773333pt;}
.y6e_c00185{bottom:592.360000pt;}
.y70_c00185{bottom:593.306667pt;}
.y6a_c00185{bottom:606.826667pt;}
.y6b_c00185{bottom:608.933333pt;}
.y6d_c00185{bottom:609.106667pt;}
.y69_c00185{bottom:609.693333pt;}
.y6c_c00185{bottom:611.026667pt;}
.y63_c00185{bottom:626.066667pt;}
.y65_c00185{bottom:626.440000pt;}
.y68_c00185{bottom:627.026667pt;}
.y64_c00185{bottom:627.400000pt;}
.y67_c00185{bottom:627.973333pt;}
.y66_c00185{bottom:628.360000pt;}
.y5f_c00185{bottom:642.640000pt;}
.y62_c00185{bottom:643.026667pt;}
.y5a_c00185{bottom:643.400000pt;}
.y61_c00185{bottom:643.773333pt;}
.y5b_c00185{bottom:644.560000pt;}
.y5e_c00185{bottom:644.733333pt;}
.y60_c00185{bottom:644.933333pt;}
.y5c_c00185{bottom:645.306667pt;}
.y5d_c00185{bottom:645.693333pt;}
.y55_c00185{bottom:659.773333pt;}
.y58_c00185{bottom:660.360000pt;}
.y57_c00185{bottom:661.106667pt;}
.y56_c00185{bottom:663.026667pt;}
.y59_c00185{bottom:663.226667pt;}
.y4c_c00185{bottom:677.493333pt;}
.y53_c00185{bottom:677.693333pt;}
.y4f_c00185{bottom:678.066667pt;}
.y4a_c00185{bottom:678.440000pt;}
.y50_c00185{bottom:678.826667pt;}
.y4d_c00185{bottom:679.773333pt;}
.y52_c00185{bottom:679.973333pt;}
.y4b_c00185{bottom:680.360000pt;}
.y54_c00185{bottom:680.560000pt;}
.y4e_c00185{bottom:681.306667pt;}
.y51_c00185{bottom:681.693333pt;}
.y45_c00185{bottom:695.773333pt;}
.y47_c00185{bottom:697.693333pt;}
.y49_c00185{bottom:697.893333pt;}
.y48_c00185{bottom:698.640000pt;}
.y46_c00185{bottom:699.040000pt;}
.y44_c00185{bottom:715.026667pt;}
.y40_c00185{bottom:730.440000pt;}
.y3e_c00185{bottom:731.226667pt;}
.y42_c00185{bottom:731.773333pt;}
.y3f_c00185{bottom:732.360000pt;}
.y43_c00185{bottom:732.560000pt;}
.y41_c00185{bottom:733.693333pt;}
.y39_c00185{bottom:747.773333pt;}
.y3b_c00185{bottom:748.160000pt;}
.y37_c00185{bottom:748.560000pt;}
.y3a_c00185{bottom:749.106667pt;}
.y38_c00185{bottom:749.693333pt;}
.y3d_c00185{bottom:749.893333pt;}
.y3c_c00185{bottom:751.026667pt;}
.y36_c00185{bottom:765.493333pt;}
.y34_c00185{bottom:765.693333pt;}
.y32_c00185{bottom:766.440000pt;}
.y33_c00185{bottom:767.226667pt;}
.y35_c00185{bottom:768.360000pt;}
.y2d_c00185{bottom:803.400000pt;}
.y2f_c00185{bottom:804.360000pt;}
.y2b_c00185{bottom:804.560000pt;}
.y31_c00185{bottom:804.733333pt;}
.y2c_c00185{bottom:805.306667pt;}
.y2e_c00185{bottom:805.893333pt;}
.y30_c00185{bottom:806.640000pt;}
.y2a_c00185{bottom:816.733333pt;}
.y22_c00185{bottom:816.933333pt;}
.y29_c00185{bottom:817.306667pt;}
.y26_c00185{bottom:818.066667pt;}
.y23_c00185{bottom:818.640000pt;}
.y27_c00185{bottom:819.026667pt;}
.y25_c00185{bottom:819.226667pt;}
.y24_c00185{bottom:819.973333pt;}
.y28_c00185{bottom:820.173333pt;}
.y21_c00185{bottom:831.026667pt;}
.y20_c00185{bottom:831.973333pt;}
.y1f_c00185{bottom:843.600000pt;}
.y1b_c00185{bottom:844.360000pt;}
.y1a_c00185{bottom:844.560000pt;}
.y1d_c00185{bottom:845.306667pt;}
.y1e_c00185{bottom:845.506667pt;}
.y1c_c00185{bottom:846.266667pt;}
.y19_c00185{bottom:856.733333pt;}
.y17_c00185{bottom:856.933333pt;}
.y16_c00185{bottom:857.893333pt;}
.y18_c00185{bottom:859.600000pt;}
.yf_c00185{bottom:869.893333pt;}
.y10_c00185{bottom:870.066667pt;}
.y11_c00185{bottom:871.026667pt;}
.y12_c00185{bottom:871.226667pt;}
.y14_c00185{bottom:871.973333pt;}
.y15_c00185{bottom:872.173333pt;}
.y13_c00185{bottom:872.933333pt;}
.y9_c00185{bottom:905.106667pt;}
.ya_c00185{bottom:907.026667pt;}
.yd_c00185{bottom:907.226667pt;}
.yb_c00185{bottom:907.400000pt;}
.ye_c00185{bottom:907.973333pt;}
.yc_c00185{bottom:908.360000pt;}
.y6_c00185{bottom:924.360000pt;}
.y8_c00185{bottom:924.560000pt;}
.y7_c00185{bottom:925.693333pt;}
.y3_c00185{bottom:940.160000pt;}
.y5_c00185{bottom:941.106667pt;}
.y4_c00185{bottom:943.026667pt;}
.y1_c00185{bottom:975.773333pt;}
.y2_c00185{bottom:976.933333pt;}
.h9_c00185{height:3.739141pt;}
.h8_c00185{height:14.890964pt;}
.h5_c00185{height:20.466875pt;}
.h2_c00185{height:22.303646pt;}
.h7_c00185{height:27.879557pt;}
.h4_c00185{height:31.618698pt;}
.h6_c00185{height:35.357839pt;}
.h1_c00185{height:39.031380pt;}
.h3_c00185{height:42.770521pt;}
.ha_c00185{height:47.618698pt;}
.h0_c00185{height:1186.666667pt;}
.w0_c00185{width:782.666667pt;}
.x0_c00185{left:0.000000pt;}
.x109_c00185{left:133.706667pt;}
.x65_c00185{left:134.666667pt;}
.xe_c00185{left:135.626667pt;}
.x1_c00185{left:138.466667pt;}
.x4f_c00185{left:146.666667pt;}
.x36_c00185{left:148.000000pt;}
.x28_c00185{left:149.706667pt;}
.x53_c00185{left:150.666667pt;}
.xfa_c00185{left:152.373333pt;}
.x5d_c00185{left:154.666667pt;}
.x33_c00185{left:156.373333pt;}
.xe7_c00185{left:158.666667pt;}
.x83_c00185{left:159.626667pt;}
.x45_c00185{left:162.293333pt;}
.x37_c00185{left:164.000000pt;}
.x29_c00185{left:164.960000pt;}
.xc2_c00185{left:166.666667pt;}
.x5e_c00185{left:168.000000pt;}
.xaf_c00185{left:169.333333pt;}
.xdb_c00185{left:170.666667pt;}
.xb9_c00185{left:173.333333pt;}
.xa7_c00185{left:174.666667pt;}
.x3_c00185{left:175.800000pt;}
.xfb_c00185{left:177.706667pt;}
.x91_c00185{left:181.333333pt;}
.x8a_c00185{left:182.666667pt;}
.x10e_c00185{left:184.000000pt;}
.xc3_c00185{left:185.706667pt;}
.x46_c00185{left:186.666667pt;}
.xcb_c00185{left:188.000000pt;}
.xdc_c00185{left:191.040000pt;}
.x34_c00185{left:194.666667pt;}
.x10a_c00185{left:196.000000pt;}
.x1c_c00185{left:196.960000pt;}
.xf_c00185{left:198.293333pt;}
.xb0_c00185{left:201.333333pt;}
.x4_c00185{left:202.666667pt;}
.xf0_c00185{left:204.373333pt;}
.x9e_c00185{left:205.333333pt;}
.xba_c00185{left:209.333333pt;}
.x54_c00185{left:210.666667pt;}
.x38_c00185{left:212.373333pt;}
.x101_c00185{left:215.040000pt;}
.xdd_c00185{left:216.000000pt;}
.x10_c00185{left:217.706667pt;}
.x7c_c00185{left:218.666667pt;}
.xa8_c00185{left:219.626667pt;}
.x5_c00185{left:221.333333pt;}
.x47_c00185{left:222.666667pt;}
.x84_c00185{left:224.000000pt;}
.xb1_c00185{left:224.960000pt;}
.x5f_c00185{left:226.093333pt;}
.x66_c00185{left:228.000000pt;}
.x2a_c00185{left:228.960000pt;}
.xe3_c00185{left:232.000000pt;}
.x55_c00185{left:235.040000pt;}
.x10b_c00185{left:237.333333pt;}
.x102_c00185{left:238.666667pt;}
.x10f_c00185{left:240.960000pt;}
.x50_c00185{left:243.040000pt;}
.x11_c00185{left:244.000000pt;}
.x35_c00185{left:245.333333pt;}
.x39_c00185{left:246.293333pt;}
.xfe_c00185{left:248.373333pt;}
.x67_c00185{left:250.666667pt;}
.x104_c00185{left:252.000000pt;}
.xb2_c00185{left:256.960000pt;}
.x6_c00185{left:259.040000pt;}
.x8b_c00185{left:260.373333pt;}
.x3a_c00185{left:262.293333pt;}
.xd4_c00185{left:264.373333pt;}
.x92_c00185{left:266.666667pt;}
.x48_c00185{left:269.333333pt;}
.xcc_c00185{left:270.666667pt;}
.x2b_c00185{left:272.000000pt;}
.x105_c00185{left:272.960000pt;}
.x51_c00185{left:274.666667pt;}
.xec_c00185{left:276.373333pt;}
.x60_c00185{left:278.293333pt;}
.x9f_c00185{left:280.373333pt;}
.x110_c00185{left:281.333333pt;}
.xe4_c00185{left:283.040000pt;}
.x3b_c00185{left:284.373333pt;}
.xf4_c00185{left:289.333333pt;}
.xcf_c00185{left:290.666667pt;}
.x7_c00185{left:291.626667pt;}
.x72_c00185{left:295.626667pt;}
.x106_c00185{left:296.573333pt;}
.x12_c00185{left:298.293333pt;}
.xb3_c00185{left:299.626667pt;}
.x49_c00185{left:301.333333pt;}
.x98_c00185{left:304.000000pt;}
.x56_c00185{left:308.000000pt;}
.x3c_c00185{left:309.706667pt;}
.xde_c00185{left:310.666667pt;}
.xc4_c00185{left:312.373333pt;}
.xd5_c00185{left:313.333333pt;}
.x73_c00185{left:315.040000pt;}
.x93_c00185{left:316.000000pt;}
.x7d_c00185{left:317.333333pt;}
.x1d_c00185{left:318.666667pt;}
.xbb_c00185{left:320.373333pt;}
.x103_c00185{left:321.333333pt;}
.x3d_c00185{left:322.666667pt;}
.x13_c00185{left:324.373333pt;}
.x52_c00185{left:325.333333pt;}
.x2c_c00185{left:326.666667pt;}
.x68_c00185{left:327.626667pt;}
.xd6_c00185{left:329.706667pt;}
.x57_c00185{left:332.373333pt;}
.xa9_c00185{left:334.666667pt;}
.xb4_c00185{left:336.000000pt;}
.xc5_c00185{left:337.333333pt;}
.x99_c00185{left:339.040000pt;}
.x8_c00185{left:340.960000pt;}
.x4a_c00185{left:342.666667pt;}
.x7e_c00185{left:345.333333pt;}
.x107_c00185{left:347.626667pt;}
.x111_c00185{left:349.333333pt;}
.xa0_c00185{left:350.666667pt;}
.x61_c00185{left:352.000000pt;}
.x85_c00185{left:352.960000pt;}
.xd7_c00185{left:354.293333pt;}
.x2_c00185{left:356.000000pt;}
.x8c_c00185{left:357.333333pt;}
.x1e_c00185{left:358.666667pt;}
.x69_c00185{left:360.000000pt;}
.x7f_c00185{left:362.666667pt;}
.x2d_c00185{left:364.000000pt;}
.x9_c00185{left:365.906667pt;}
.xdf_c00185{left:367.626667pt;}
.x74_c00185{left:369.706667pt;}
.x94_c00185{left:371.040000pt;}
.xb5_c00185{left:372.373333pt;}
.x1f_c00185{left:373.706667pt;}
.xc6_c00185{left:375.040000pt;}
.x10c_c00185{left:379.040000pt;}
.xe8_c00185{left:381.333333pt;}
.x86_c00185{left:382.666667pt;}
.xbc_c00185{left:384.373333pt;}
.xe0_c00185{left:385.706667pt;}
.x4b_c00185{left:386.666667pt;}
.x9a_c00185{left:387.626667pt;}
.xed_c00185{left:389.333333pt;}
.x58_c00185{left:392.000000pt;}
.x3e_c00185{left:393.333333pt;}
.x95_c00185{left:395.626667pt;}
.xaa_c00185{left:396.760000pt;}
.x20_c00185{left:397.706667pt;}
.xc7_c00185{left:400.000000pt;}
.x14_c00185{left:402.666667pt;}
.x62_c00185{left:403.626667pt;}
.xe9_c00185{left:405.333333pt;}
.xf5_c00185{left:408.000000pt;}
.xe1_c00185{left:411.040000pt;}
.x15_c00185{left:412.000000pt;}
.x8d_c00185{left:413.333333pt;}
.xa1_c00185{left:414.666667pt;}
.x6a_c00185{left:420.000000pt;}
.x75_c00185{left:422.666667pt;}
.xd0_c00185{left:424.000000pt;}
.xff_c00185{left:427.040000pt;}
.x80_c00185{left:428.000000pt;}
.xee_c00185{left:429.333333pt;}
.xd8_c00185{left:430.666667pt;}
.x21_c00185{left:432.000000pt;}
.x6b_c00185{left:433.706667pt;}
.xf6_c00185{left:437.706667pt;}
.x108_c00185{left:438.666667pt;}
.xa_c00185{left:440.000000pt;}
.x76_c00185{left:441.706667pt;}
.x3f_c00185{left:444.000000pt;}
.x16_c00185{left:445.706667pt;}
.xbd_c00185{left:448.000000pt;}
.x22_c00185{left:449.706667pt;}
.xab_c00185{left:450.666667pt;}
.x100_c00185{left:452.000000pt;}
.x59_c00185{left:454.293333pt;}
.x87_c00185{left:456.000000pt;}
.xe5_c00185{left:457.333333pt;}
.x6c_c00185{left:458.666667pt;}
.x2e_c00185{left:460.373333pt;}
.xb6_c00185{left:461.706667pt;}
.xf7_c00185{left:463.040000pt;}
.xcd_c00185{left:464.373333pt;}
.xf1_c00185{left:465.333333pt;}
.x77_c00185{left:468.000000pt;}
.xac_c00185{left:468.960000pt;}
.xc8_c00185{left:473.706667pt;}
.xe2_c00185{left:474.666667pt;}
.x17_c00185{left:477.906667pt;}
.x23_c00185{left:480.000000pt;}
.x96_c00185{left:481.333333pt;}
.xd1_c00185{left:483.040000pt;}
.x6d_c00185{left:484.000000pt;}
.x88_c00185{left:485.333333pt;}
.x9b_c00185{left:487.040000pt;}
.xa2_c00185{left:488.960000pt;}
.xb_c00185{left:491.626667pt;}
.xb7_c00185{left:493.333333pt;}
.x2f_c00185{left:494.293333pt;}
.xbe_c00185{left:496.000000pt;}
.x5a_c00185{left:498.293333pt;}
.x4c_c00185{left:499.626667pt;}
.xfc_c00185{left:500.960000pt;}
.x6e_c00185{left:502.666667pt;}
.x40_c00185{left:503.626667pt;}
.x78_c00185{left:509.706667pt;}
.x9c_c00185{left:512.373333pt;}
.x97_c00185{left:513.706667pt;}
.xd2_c00185{left:514.666667pt;}
.x8e_c00185{left:516.000000pt;}
.x24_c00185{left:517.333333pt;}
.x30_c00185{left:518.293333pt;}
.x113_c00185{left:520.000000pt;}
.xc9_c00185{left:521.706667pt;}
.xad_c00185{left:522.666667pt;}
.x5b_c00185{left:524.373333pt;}
.xf2_c00185{left:525.333333pt;}
.x4d_c00185{left:527.040000pt;}
.xce_c00185{left:528.960000pt;}
.xd3_c00185{left:532.373333pt;}
.xf8_c00185{left:533.706667pt;}
.xbf_c00185{left:534.666667pt;}
.xa3_c00185{left:536.000000pt;}
.x25_c00185{left:537.333333pt;}
.xb8_c00185{left:541.706667pt;}
.x6f_c00185{left:544.000000pt;}
.x79_c00185{left:545.333333pt;}
.xca_c00185{left:547.626667pt;}
.xea_c00185{left:548.960000pt;}
.x81_c00185{left:552.000000pt;}
.x41_c00185{left:553.333333pt;}
.xa4_c00185{left:554.293333pt;}
.xc_c00185{left:555.240000pt;}
.x10d_c00185{left:557.333333pt;}
.x18_c00185{left:558.666667pt;}
.x26_c00185{left:560.000000pt;}
.x42_c00185{left:562.666667pt;}
.xd9_c00185{left:563.626667pt;}
.x4e_c00185{left:565.333333pt;}
.x19_c00185{left:566.666667pt;}
.x31_c00185{left:570.293333pt;}
.xf3_c00185{left:572.373333pt;}
.x9d_c00185{left:574.666667pt;}
.x8f_c00185{left:575.626667pt;}
.x7a_c00185{left:577.333333pt;}
.x27_c00185{left:578.466667pt;}
.x82_c00185{left:580.000000pt;}
.xda_c00185{left:582.293333pt;}
.xae_c00185{left:585.333333pt;}
.xeb_c00185{left:587.040000pt;}
.x89_c00185{left:589.333333pt;}
.x43_c00185{left:592.000000pt;}
.x5c_c00185{left:593.333333pt;}
.x63_c00185{left:594.666667pt;}
.xa5_c00185{left:596.373333pt;}
.x70_c00185{left:597.333333pt;}
.x1a_c00185{left:600.373333pt;}
.xc0_c00185{left:601.706667pt;}
.xe6_c00185{left:602.666667pt;}
.x90_c00185{left:604.960000pt;}
.x32_c00185{left:607.626667pt;}
.xef_c00185{left:610.293333pt;}
.xd_c00185{left:611.626667pt;}
.x112_c00185{left:614.666667pt;}
.x44_c00185{left:616.760000pt;}
.xf9_c00185{left:619.040000pt;}
.xa6_c00185{left:621.333333pt;}
.x64_c00185{left:623.800000pt;}
.xc1_c00185{left:625.706667pt;}
.x7b_c00185{left:626.666667pt;}
.x1b_c00185{left:629.706667pt;}
.xfd_c00185{left:631.040000pt;}
.x71_c00185{left:640.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_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_03ca2fdfd4426d00ea3e30e8.woff2')format("woff");}.ff1_c00186{font-family:ff1_c00186;line-height:1.688965;font-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_c00186{transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);}
.m65_c00186{transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);}
.m44_c00186{transform:matrix(0.341258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341258,0.000000,0.000000,0.250000,0,0);}
.m40_c00186{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m2a_c00186{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m43_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);}
.m19_c00186{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m47_c00186{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m18_c00186{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mf_c00186{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m67_c00186{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m53_c00186{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m33_c00186{transform:matrix(0.398390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398390,0.000000,0.000000,0.250000,0,0);}
.m23_c00186{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m2f_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);}
.m5b_c00186{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m7d_c00186{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m37_c00186{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m8_c00186{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m42_c00186{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m45_c00186{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m78_c00186{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m24_c00186{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m3f_c00186{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m57_c00186{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m1f_c00186{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m79_c00186{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m5d_c00186{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m3e_c00186{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m3b_c00186{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m4a_c00186{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m2b_c00186{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m51_c00186{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m4d_c00186{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m70_c00186{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m9e_c00186{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m82_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);}
.m69_c00186{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m60_c00186{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m25_c00186{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.mba_c00186{transform:matrix(0.450758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450758,0.000000,0.000000,0.250000,0,0);}
.m5f_c00186{transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);}
.m0_c00186{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.mb7_c00186{transform:matrix(0.455947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455947,0.000000,0.000000,0.250000,0,0);}
.mb_c00186{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m4b_c00186{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m7f_c00186{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mb8_c00186{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.m63_c00186{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mab_c00186{transform:matrix(0.459936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459936,0.000000,0.000000,0.250000,0,0);}
.m92_c00186{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.mb1_c00186{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.m90_c00186{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.ma9_c00186{transform:matrix(0.471154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471154,0.000000,0.000000,0.250000,0,0);}
.m61_c00186{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.mb5_c00186{transform:matrix(0.475160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475160,0.000000,0.000000,0.250000,0,0);}
.m16_c00186{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m73_c00186{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.ma7_c00186{transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);}
.m12_c00186{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m46_c00186{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m8a_c00186{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m1c_c00186{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m95_c00186{transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);}
.m58_c00186{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m41_c00186{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m87_c00186{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.mbb_c00186{transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);}
.m34_c00186{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m31_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);}
.m77_c00186{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.mc_c00186{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m17_c00186{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m4c_c00186{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m52_c00186{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m11_c00186{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m3c_c00186{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m54_c00186{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m5a_c00186{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m9b_c00186{transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);}
.m66_c00186{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m29_c00186{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.ma2_c00186{transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);}
.m1d_c00186{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m21_c00186{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m38_c00186{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m4f_c00186{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m22_c00186{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m28_c00186{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m5_c00186{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m85_c00186{transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);}
.m4e_c00186{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.ma6_c00186{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.md_c00186{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m91_c00186{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m76_c00186{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.m2d_c00186{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m2_c00186{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m15_c00186{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m49_c00186{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mb4_c00186{transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);}
.m32_c00186{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m3_c00186{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m71_c00186{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m5c_c00186{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mb0_c00186{transform:matrix(0.548878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548878,0.000000,0.000000,0.250000,0,0);}
.m96_c00186{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m48_c00186{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m50_c00186{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m4_c00186{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.me_c00186{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m64_c00186{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m55_c00186{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m6f_c00186{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);}
.ma_c00186{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m8b_c00186{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m6a_c00186{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_c00186{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m30_c00186{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m27_c00186{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m5e_c00186{transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);}
.m56_c00186{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m86_c00186{transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);}
.m39_c00186{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.ma0_c00186{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.m1a_c00186{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m6b_c00186{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m6_c00186{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.maa_c00186{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.m35_c00186{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m72_c00186{transform:matrix(0.602206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602206,0.000000,0.000000,0.250000,0,0);}
.m1_c00186{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m68_c00186{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m7b_c00186{transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);}
.m6d_c00186{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.ma1_c00186{transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);}
.m7c_c00186{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m3a_c00186{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m7a_c00186{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.maf_c00186{transform:matrix(0.614583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614583,0.000000,0.000000,0.250000,0,0);}
.m9_c00186{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m75_c00186{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.mb9_c00186{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.m80_c00186{transform:matrix(0.649780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649780,0.000000,0.000000,0.250000,0,0);}
.m84_c00186{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m26_c00186{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m8d_c00186{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m20_c00186{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m6c_c00186{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m99_c00186{transform:matrix(0.680617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680617,0.000000,0.000000,0.250000,0,0);}
.m8f_c00186{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mae_c00186{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.m7e_c00186{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m97_c00186{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m9f_c00186{transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);}
.m81_c00186{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.mb6_c00186{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m74_c00186{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m89_c00186{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m62_c00186{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m6e_c00186{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);}
.mad_c00186{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.ma4_c00186{transform:matrix(0.720264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720264,0.000000,0.000000,0.250000,0,0);}
.m9a_c00186{transform:matrix(0.722467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722467,0.000000,0.000000,0.250000,0,0);}
.m8e_c00186{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m13_c00186{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.mb3_c00186{transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);}
.m59_c00186{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mb2_c00186{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.m98_c00186{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.m83_c00186{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m14_c00186{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m7_c00186{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m10_c00186{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.ma3_c00186{transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);}
.m36_c00186{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m9c_c00186{transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);}
.ma5_c00186{transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);}
.m94_c00186{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m3d_c00186{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m9d_c00186{transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);}
.m2e_c00186{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mac_c00186{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.ma8_c00186{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.m93_c00186{transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);}
.m8c_c00186{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m88_c00186{transform:matrix(2.758850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.758850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.758850,0.000000,0.000000,0.250000,0,0);}
.m1e_c00186{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.v2_c00186{vertical-align:-6.000000px;}
.v0_c00186{vertical-align:0.000000px;}
.v1_c00186{vertical-align:6.000000px;}
.ls0_c00186{letter-spacing:0.000000px;}
.sc__c00186{text-shadow:none;}
.sc0_c00186{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00186{-webkit-text-stroke:0px transparent;}
.sc0_c00186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00186{word-spacing:-5.734431px;}
.ws0_c00186{word-spacing:-3.360549px;}
.ws1_c00186{word-spacing:-2.763764px;}
.ws13_c00186{word-spacing:0.000000px;}
.wsd_c00186{word-spacing:17.690783px;}
.ws7_c00186{word-spacing:43.123678px;}
.ws11_c00186{word-spacing:46.279409px;}
.wsf_c00186{word-spacing:49.588868px;}
.ws4_c00186{word-spacing:49.718291px;}
.ws9_c00186{word-spacing:69.032182px;}
.ws10_c00186{word-spacing:72.833186px;}
.ws6_c00186{word-spacing:73.041656px;}
.wsc_c00186{word-spacing:73.963585px;}
.ws8_c00186{word-spacing:75.638400px;}
.wse_c00186{word-spacing:78.731664px;}
.ws12_c00186{word-spacing:78.840534px;}
.wsa_c00186{word-spacing:88.431146px;}
.ws3_c00186{word-spacing:90.616863px;}
.ws5_c00186{word-spacing:107.211927px;}
.wsb_c00186{word-spacing:107.979497px;}
._1_c00186{width:64.008138px;}
._0_c00186{width:99.571888px;}
.fc0_c00186{color:transparent;}
.fs6_c00186{font-size:3.420000px;}
.fsa_c00186{font-size:6.780000px;}
.fs9_c00186{font-size:11.880000px;}
.fs8_c00186{font-size:13.620000px;}
.fs3_c00186{font-size:18.720000px;}
.fs1_c00186{font-size:20.400000px;}
.fs2_c00186{font-size:25.500000px;}
.fs0_c00186{font-size:28.920000px;}
.fs5_c00186{font-size:32.340000px;}
.fs4_c00186{font-size:35.700000px;}
.fs7_c00186{font-size:39.120000px;}
.y0_c00186{bottom:0.000000px;}
.y48_c00186{bottom:253.245000px;}
.y46_c00186{bottom:253.680000px;}
.y44_c00186{bottom:254.325000px;}
.y42_c00186{bottom:254.745000px;}
.y43_c00186{bottom:255.405000px;}
.y47_c00186{bottom:256.470000px;}
.y45_c00186{bottom:256.905000px;}
.y40_c00186{bottom:272.745000px;}
.y3e_c00186{bottom:274.245000px;}
.y3d_c00186{bottom:274.905000px;}
.y3f_c00186{bottom:275.130000px;}
.y41_c00186{bottom:275.970000px;}
.y3c_c00186{bottom:276.405000px;}
.y3b_c00186{bottom:292.245000px;}
.y39_c00186{bottom:293.745000px;}
.y3a_c00186{bottom:294.405000px;}
.y38_c00186{bottom:294.630000px;}
.y37_c00186{bottom:295.470000px;}
.y36_c00186{bottom:295.905000px;}
.y35_c00186{bottom:311.745000px;}
.y31_c00186{bottom:312.825000px;}
.y32_c00186{bottom:313.245000px;}
.y33_c00186{bottom:313.905000px;}
.y34_c00186{bottom:314.130000px;}
.y30_c00186{bottom:315.405000px;}
.y2d_c00186{bottom:331.680000px;}
.y2e_c00186{bottom:331.905000px;}
.y2c_c00186{bottom:332.745000px;}
.y2f_c00186{bottom:333.630000px;}
.y2b_c00186{bottom:334.905000px;}
.y2a_c00186{bottom:352.245000px;}
.y25_c00186{bottom:371.745000px;}
.y29_c00186{bottom:372.630000px;}
.y27_c00186{bottom:373.470000px;}
.y26_c00186{bottom:373.905000px;}
.y24_c00186{bottom:374.130000px;}
.y28_c00186{bottom:374.970000px;}
.y23_c00186{bottom:390.180000px;}
.y22_c00186{bottom:391.245000px;}
.y21_c00186{bottom:393.405000px;}
.y20_c00186{bottom:393.630000px;}
.y1f_c00186{bottom:410.745000px;}
.y1d_c00186{bottom:412.245000px;}
.y1c_c00186{bottom:412.905000px;}
.y1b_c00186{bottom:413.130000px;}
.y1a_c00186{bottom:413.325000px;}
.y1e_c00186{bottom:414.405000px;}
.y19_c00186{bottom:430.245000px;}
.y15_c00186{bottom:431.745000px;}
.y18_c00186{bottom:432.405000px;}
.y17_c00186{bottom:432.630000px;}
.y16_c00186{bottom:433.470000px;}
.y13_c00186{bottom:433.905000px;}
.y14_c00186{bottom:433.920000px;}
.y11_c00186{bottom:451.245000px;}
.y12_c00186{bottom:452.130000px;}
.yf_c00186{bottom:452.970000px;}
.y10_c00186{bottom:453.405000px;}
.yd_c00186{bottom:468.405000px;}
.ya_c00186{bottom:469.905000px;}
.y8_c00186{bottom:470.745000px;}
.y9_c00186{bottom:471.630000px;}
.ye_c00186{bottom:471.825000px;}
.yb_c00186{bottom:472.905000px;}
.yc_c00186{bottom:473.970000px;}
.y7_c00186{bottom:489.405000px;}
.y6_c00186{bottom:490.245000px;}
.y4_c00186{bottom:491.970000px;}
.y3_c00186{bottom:492.405000px;}
.y5_c00186{bottom:492.630000px;}
.ye7_c00186{bottom:531.630000px;}
.ye6_c00186{bottom:532.695000px;}
.ye5_c00186{bottom:533.130000px;}
.ye4_c00186{bottom:534.195000px;}
.ye2_c00186{bottom:534.630000px;}
.ye3_c00186{bottom:535.695000px;}
.ye1_c00186{bottom:545.130000px;}
.ydd_c00186{bottom:546.195000px;}
.ye0_c00186{bottom:546.630000px;}
.yde_c00186{bottom:547.275000px;}
.ydc_c00186{bottom:547.695000px;}
.ydb_c00186{bottom:549.195000px;}
.ydf_c00186{bottom:549.420000px;}
.yda_c00186{bottom:559.695000px;}
.yd9_c00186{bottom:560.130000px;}
.yd8_c00186{bottom:560.775000px;}
.yd4_c00186{bottom:561.195000px;}
.yd6_c00186{bottom:562.275000px;}
.yd5_c00186{bottom:562.695000px;}
.yd7_c00186{bottom:562.920000px;}
.yd2_c00186{bottom:573.630000px;}
.yd3_c00186{bottom:574.695000px;}
.yd1_c00186{bottom:575.130000px;}
.yd0_c00186{bottom:575.775000px;}
.ycf_c00186{bottom:576.195000px;}
.yce_c00186{bottom:586.695000px;}
.ycd_c00186{bottom:588.195000px;}
.ycc_c00186{bottom:588.630000px;}
.ycb_c00186{bottom:589.275000px;}
.yca_c00186{bottom:589.695000px;}
.yc8_c00186{bottom:600.630000px;}
.yc9_c00186{bottom:601.695000px;}
.yc7_c00186{bottom:602.130000px;}
.yc6_c00186{bottom:603.630000px;}
.yc4_c00186{bottom:614.130000px;}
.yc5_c00186{bottom:615.195000px;}
.yc2_c00186{bottom:616.695000px;}
.yc3_c00186{bottom:616.920000px;}
.yc1_c00186{bottom:618.195000px;}
.yc0_c00186{bottom:628.695000px;}
.ybf_c00186{bottom:629.130000px;}
.ybd_c00186{bottom:630.195000px;}
.ybe_c00186{bottom:630.420000px;}
.ybb_c00186{bottom:630.630000px;}
.ybc_c00186{bottom:631.695000px;}
.yba_c00186{bottom:642.630000px;}
.yb8_c00186{bottom:643.695000px;}
.yb7_c00186{bottom:645.195000px;}
.yb9_c00186{bottom:645.420000px;}
.yb6_c00186{bottom:658.695000px;}
.yb5_c00186{bottom:659.130000px;}
.yb4_c00186{bottom:669.630000px;}
.yb2_c00186{bottom:672.195000px;}
.yb3_c00186{bottom:672.420000px;}
.yb1_c00186{bottom:672.630000px;}
.yb0_c00186{bottom:684.630000px;}
.yae_c00186{bottom:685.695000px;}
.yaf_c00186{bottom:685.920000px;}
.yad_c00186{bottom:686.130000px;}
.yac_c00186{bottom:697.695000px;}
.yaa_c00186{bottom:698.130000px;}
.ya7_c00186{bottom:699.630000px;}
.ya9_c00186{bottom:700.695000px;}
.yab_c00186{bottom:700.920000px;}
.ya8_c00186{bottom:701.775000px;}
.ya5_c00186{bottom:712.695000px;}
.ya6_c00186{bottom:714.420000px;}
.ya4_c00186{bottom:714.630000px;}
.ya1_c00186{bottom:726.630000px;}
.ya3_c00186{bottom:727.920000px;}
.ya2_c00186{bottom:728.130000px;}
.ya0_c00186{bottom:742.695000px;}
.y9e_c00186{bottom:754.695000px;}
.y9f_c00186{bottom:754.920000px;}
.y9c_c00186{bottom:755.130000px;}
.y9d_c00186{bottom:755.775000px;}
.y9b_c00186{bottom:756.195000px;}
.y99_c00186{bottom:768.195000px;}
.y9a_c00186{bottom:768.420000px;}
.y98_c00186{bottom:769.695000px;}
.y96_c00186{bottom:781.695000px;}
.y97_c00186{bottom:781.920000px;}
.y95_c00186{bottom:783.195000px;}
.y94_c00186{bottom:784.695000px;}
.y92_c00186{bottom:795.195000px;}
.y91_c00186{bottom:796.695000px;}
.y93_c00186{bottom:796.920000px;}
.y90_c00186{bottom:798.195000px;}
.y8e_c00186{bottom:807.630000px;}
.y8d_c00186{bottom:808.695000px;}
.y8f_c00186{bottom:810.420000px;}
.y8a_c00186{bottom:810.630000px;}
.y8b_c00186{bottom:811.275000px;}
.y8c_c00186{bottom:811.695000px;}
.y87_c00186{bottom:822.630000px;}
.y88_c00186{bottom:823.695000px;}
.y89_c00186{bottom:823.920000px;}
.y86_c00186{bottom:825.195000px;}
.y84_c00186{bottom:837.195000px;}
.y85_c00186{bottom:837.420000px;}
.y83_c00186{bottom:837.630000px;}
.y82_c00186{bottom:838.695000px;}
.y81_c00186{bottom:850.920000px;}
.y7f_c00186{bottom:851.130000px;}
.y80_c00186{bottom:852.195000px;}
.y7e_c00186{bottom:852.630000px;}
.y7d_c00186{bottom:853.695000px;}
.y7b_c00186{bottom:864.195000px;}
.y7c_c00186{bottom:864.420000px;}
.y7a_c00186{bottom:864.630000px;}
.y79_c00186{bottom:865.695000px;}
.y77_c00186{bottom:878.130000px;}
.y76_c00186{bottom:879.195000px;}
.y78_c00186{bottom:879.420000px;}
.y75_c00186{bottom:879.630000px;}
.y74_c00186{bottom:880.695000px;}
.y72_c00186{bottom:891.630000px;}
.y71_c00186{bottom:892.695000px;}
.y73_c00186{bottom:892.920000px;}
.y70_c00186{bottom:893.130000px;}
.y6f_c00186{bottom:894.195000px;}
.y6d_c00186{bottom:906.195000px;}
.y6e_c00186{bottom:906.420000px;}
.y6c_c00186{bottom:906.630000px;}
.y6b_c00186{bottom:907.695000px;}
.y69_c00186{bottom:918.630000px;}
.y68_c00186{bottom:919.695000px;}
.y6a_c00186{bottom:919.920000px;}
.y67_c00186{bottom:920.130000px;}
.y66_c00186{bottom:921.195000px;}
.y64_c00186{bottom:933.630000px;}
.y63_c00186{bottom:934.695000px;}
.y65_c00186{bottom:934.920000px;}
.y61_c00186{bottom:947.130000px;}
.y62_c00186{bottom:947.355000px;}
.y60_c00186{bottom:948.195000px;}
.y5f_c00186{bottom:948.630000px;}
.y5e_c00186{bottom:949.050000px;}
.y5d_c00186{bottom:950.130000px;}
.y5c_c00186{bottom:960.630000px;}
.y5b_c00186{bottom:961.695000px;}
.y5a_c00186{bottom:963.195000px;}
.y59_c00186{bottom:979.695000px;}
.y58_c00186{bottom:980.130000px;}
.y57_c00186{bottom:981.195000px;}
.y56_c00186{bottom:992.130000px;}
.y55_c00186{bottom:993.195000px;}
.y53_c00186{bottom:993.630000px;}
.y54_c00186{bottom:994.695000px;}
.y52_c00186{bottom:1006.695000px;}
.y51_c00186{bottom:1007.775000px;}
.y50_c00186{bottom:1009.695000px;}
.y4f_c00186{bottom:1023.405000px;}
.y4e_c00186{bottom:1025.550000px;}
.y4d_c00186{bottom:1038.405000px;}
.y4b_c00186{bottom:1039.470000px;}
.y4c_c00186{bottom:1040.550000px;}
.y4a_c00186{bottom:1061.970000px;}
.y49_c00186{bottom:1066.050000px;}
.y1_c00186{bottom:1098.405000px;}
.y2_c00186{bottom:1100.550000px;}
.h8_c00186{height:4.206533px;}
.hc_c00186{height:8.339268px;}
.hb_c00186{height:14.612168px;}
.ha_c00186{height:16.752334px;}
.h4_c00186{height:23.025234px;}
.h2_c00186{height:25.091602px;}
.h3_c00186{height:31.364502px;}
.h1_c00186{height:35.571035px;}
.h7_c00186{height:39.777568px;}
.h6_c00186{height:41.571035px;}
.h5_c00186{height:43.910303px;}
.h9_c00186{height:48.116836px;}
.h0_c00186{height:1335.000000px;}
.w0_c00186{width:880.500000px;}
.x0_c00186{left:0.000000px;}
.x10_c00186{left:151.500000px;}
.x3_c00186{left:168.000000px;}
.x70_c00186{left:171.420000px;}
.x5a_c00186{left:178.500000px;}
.x66_c00186{left:186.000000px;}
.x42_c00186{left:189.000000px;}
.x34_c00186{left:193.920000px;}
.x4_c00186{left:199.080000px;}
.x4d_c00186{left:201.420000px;}
.x67_c00186{left:205.080000px;}
.x2b_c00186{left:211.500000px;}
.x11_c00186{left:220.500000px;}
.x5b_c00186{left:226.500000px;}
.x68_c00186{left:228.000000px;}
.x4e_c00186{left:229.080000px;}
.x2c_c00186{left:231.000000px;}
.x21_c00186{left:237.000000px;}
.x43_c00186{left:238.500000px;}
.x35_c00186{left:239.580000px;}
.x69_c00186{left:241.500000px;}
.x4f_c00186{left:247.920000px;}
.x12_c00186{left:249.420000px;}
.x87_c00186{left:250.500000px;}
.x1c_c00186{left:254.580000px;}
.x44_c00186{left:256.500000px;}
.x22_c00186{left:258.000000px;}
.x5_c00186{left:262.080000px;}
.x78_c00186{left:268.500000px;}
.x88_c00186{left:272.580000px;}
.x50_c00186{left:274.500000px;}
.x8d_c00186{left:277.920000px;}
.x93_c00186{left:282.420000px;}
.x2d_c00186{left:288.000000px;}
.xa2_c00186{left:289.500000px;}
.x45_c00186{left:291.000000px;}
.x6_c00186{left:292.500000px;}
.x36_c00186{left:294.000000px;}
.x13_c00186{left:295.500000px;}
.x6a_c00186{left:298.920000px;}
.x9d_c00186{left:300.000000px;}
.x95_c00186{left:303.420000px;}
.x81_c00186{left:306.420000px;}
.x71_c00186{left:307.500000px;}
.x1d_c00186{left:310.500000px;}
.x14_c00186{left:312.000000px;}
.xa6_c00186{left:315.000000px;}
.x37_c00186{left:316.080000px;}
.x8f_c00186{left:318.000000px;}
.xa3_c00186{left:321.000000px;}
.x9c_c00186{left:322.080000px;}
.x46_c00186{left:327.645000px;}
.x9b_c00186{left:330.420000px;}
.x7_c00186{left:331.500000px;}
.x15_c00186{left:333.000000px;}
.x94_c00186{left:334.080000px;}
.x90_c00186{left:335.580000px;}
.x38_c00186{left:339.000000px;}
.x5c_c00186{left:346.500000px;}
.x16_c00186{left:348.420000px;}
.x51_c00186{left:349.500000px;}
.x9e_c00186{left:352.920000px;}
.x23_c00186{left:354.000000px;}
.x2e_c00186{left:355.920000px;}
.xa5_c00186{left:357.420000px;}
.x79_c00186{left:360.000000px;}
.x5d_c00186{left:364.920000px;}
.x24_c00186{left:367.500000px;}
.x6b_c00186{left:375.000000px;}
.x1e_c00186{left:379.500000px;}
.x72_c00186{left:382.080000px;}
.x39_c00186{left:384.000000px;}
.x5e_c00186{left:391.920000px;}
.x2f_c00186{left:394.080000px;}
.x2_c00186{left:399.000000px;}
.x86_c00186{left:400.500000px;}
.x3a_c00186{left:405.420000px;}
.x1f_c00186{left:406.920000px;}
.x6c_c00186{left:408.000000px;}
.x7f_c00186{left:411.000000px;}
.x52_c00186{left:412.080000px;}
.x73_c00186{left:415.500000px;}
.x17_c00186{left:423.000000px;}
.x96_c00186{left:426.000000px;}
.x3b_c00186{left:433.500000px;}
.x8_c00186{left:435.000000px;}
.x53_c00186{left:436.275000px;}
.x9a_c00186{left:438.000000px;}
.x99_c00186{left:439.500000px;}
.x5f_c00186{left:440.580000px;}
.x25_c00186{left:442.500000px;}
.x74_c00186{left:445.500000px;}
.x20_c00186{left:450.000000px;}
.x82_c00186{left:453.420000px;}
.x80_c00186{left:455.580000px;}
.x30_c00186{left:456.645000px;}
.x60_c00186{left:459.420000px;}
.x9_c00186{left:462.420000px;}
.x83_c00186{left:468.000000px;}
.x47_c00186{left:469.500000px;}
.x3c_c00186{left:470.580000px;}
.x6d_c00186{left:472.500000px;}
.x97_c00186{left:481.500000px;}
.x26_c00186{left:483.420000px;}
.x61_c00186{left:484.920000px;}
.x8b_c00186{left:487.500000px;}
.x3d_c00186{left:489.645000px;}
.xa1_c00186{left:492.000000px;}
.x7a_c00186{left:493.080000px;}
.x48_c00186{left:496.500000px;}
.x18_c00186{left:498.645000px;}
.x8a_c00186{left:501.000000px;}
.xa_c00186{left:504.000000px;}
.x54_c00186{left:505.080000px;}
.x27_c00186{left:509.580000px;}
.xb_c00186{left:523.500000px;}
.x55_c00186{left:526.500000px;}
.x3e_c00186{left:533.580000px;}
.x7b_c00186{left:541.500000px;}
.x62_c00186{left:544.500000px;}
.x98_c00186{left:546.000000px;}
.x49_c00186{left:547.920000px;}
.x8c_c00186{left:550.500000px;}
.x8e_c00186{left:552.000000px;}
.xa4_c00186{left:553.500000px;}
.x91_c00186{left:555.000000px;}
.x19_c00186{left:559.080000px;}
.x84_c00186{left:561.420000px;}
.x7c_c00186{left:564.000000px;}
.xc_c00186{left:568.080000px;}
.x28_c00186{left:570.000000px;}
.x63_c00186{left:574.920000px;}
.x85_c00186{left:576.000000px;}
.x31_c00186{left:587.580000px;}
.xd_c00186{left:593.580000px;}
.x75_c00186{left:597.000000px;}
.x56_c00186{left:598.500000px;}
.x7d_c00186{left:603.000000px;}
.x89_c00186{left:606.000000px;}
.x1a_c00186{left:609.000000px;}
.x9f_c00186{left:610.500000px;}
.x64_c00186{left:612.420000px;}
.xa0_c00186{left:613.500000px;}
.x3f_c00186{left:614.580000px;}
.x76_c00186{left:617.775000px;}
.x92_c00186{left:619.500000px;}
.x4a_c00186{left:629.580000px;}
.x57_c00186{left:634.080000px;}
.x29_c00186{left:637.500000px;}
.x40_c00186{left:646.500000px;}
.x6e_c00186{left:647.580000px;}
.x32_c00186{left:651.420000px;}
.x7e_c00186{left:654.420000px;}
.xe_c00186{left:655.920000px;}
.x77_c00186{left:658.500000px;}
.x4b_c00186{left:661.500000px;}
.x2a_c00186{left:669.000000px;}
.x1b_c00186{left:673.080000px;}
.x65_c00186{left:682.500000px;}
.xf_c00186{left:683.580000px;}
.x58_c00186{left:685.500000px;}
.x33_c00186{left:691.500000px;}
.x41_c00186{left:700.920000px;}
.x59_c00186{left:703.500000px;}
.x1_c00186{left:705.420000px;}
.x6f_c00186{left:706.500000px;}
.x4c_c00186{left:717.000000px;}
@media print{
.v2_c00186{vertical-align:-5.333333pt;}
.v0_c00186{vertical-align:0.000000pt;}
.v1_c00186{vertical-align:5.333333pt;}
.ls0_c00186{letter-spacing:0.000000pt;}
.ws2_c00186{word-spacing:-5.097272pt;}
.ws0_c00186{word-spacing:-2.987154pt;}
.ws1_c00186{word-spacing:-2.456679pt;}
.ws13_c00186{word-spacing:0.000000pt;}
.wsd_c00186{word-spacing:15.725141pt;}
.ws7_c00186{word-spacing:38.332159pt;}
.ws11_c00186{word-spacing:41.137253pt;}
.wsf_c00186{word-spacing:44.078994pt;}
.ws4_c00186{word-spacing:44.194037pt;}
.ws9_c00186{word-spacing:61.361940pt;}
.ws10_c00186{word-spacing:64.740610pt;}
.ws6_c00186{word-spacing:64.925917pt;}
.wsc_c00186{word-spacing:65.745409pt;}
.ws8_c00186{word-spacing:67.234133pt;}
.wse_c00186{word-spacing:69.983702pt;}
.ws12_c00186{word-spacing:70.080475pt;}
.wsa_c00186{word-spacing:78.605463pt;}
.ws3_c00186{word-spacing:80.548323pt;}
.ws5_c00186{word-spacing:95.299491pt;}
.wsb_c00186{word-spacing:95.981775pt;}
._1_c00186{width:56.896123pt;}
._0_c00186{width:88.508345pt;}
.fs6_c00186{font-size:3.040000pt;}
.fsa_c00186{font-size:6.026667pt;}
.fs9_c00186{font-size:10.560000pt;}
.fs8_c00186{font-size:12.106667pt;}
.fs3_c00186{font-size:16.640000pt;}
.fs1_c00186{font-size:18.133333pt;}
.fs2_c00186{font-size:22.666667pt;}
.fs0_c00186{font-size:25.706667pt;}
.fs5_c00186{font-size:28.746667pt;}
.fs4_c00186{font-size:31.733333pt;}
.fs7_c00186{font-size:34.773333pt;}
.y0_c00186{bottom:0.000000pt;}
.y48_c00186{bottom:225.106667pt;}
.y46_c00186{bottom:225.493333pt;}
.y44_c00186{bottom:226.066667pt;}
.y42_c00186{bottom:226.440000pt;}
.y43_c00186{bottom:227.026667pt;}
.y47_c00186{bottom:227.973333pt;}
.y45_c00186{bottom:228.360000pt;}
.y40_c00186{bottom:242.440000pt;}
.y3e_c00186{bottom:243.773333pt;}
.y3d_c00186{bottom:244.360000pt;}
.y3f_c00186{bottom:244.560000pt;}
.y41_c00186{bottom:245.306667pt;}
.y3c_c00186{bottom:245.693333pt;}
.y3b_c00186{bottom:259.773333pt;}
.y39_c00186{bottom:261.106667pt;}
.y3a_c00186{bottom:261.693333pt;}
.y38_c00186{bottom:261.893333pt;}
.y37_c00186{bottom:262.640000pt;}
.y36_c00186{bottom:263.026667pt;}
.y35_c00186{bottom:277.106667pt;}
.y31_c00186{bottom:278.066667pt;}
.y32_c00186{bottom:278.440000pt;}
.y33_c00186{bottom:279.026667pt;}
.y34_c00186{bottom:279.226667pt;}
.y30_c00186{bottom:280.360000pt;}
.y2d_c00186{bottom:294.826667pt;}
.y2e_c00186{bottom:295.026667pt;}
.y2c_c00186{bottom:295.773333pt;}
.y2f_c00186{bottom:296.560000pt;}
.y2b_c00186{bottom:297.693333pt;}
.y2a_c00186{bottom:313.106667pt;}
.y25_c00186{bottom:330.440000pt;}
.y29_c00186{bottom:331.226667pt;}
.y27_c00186{bottom:331.973333pt;}
.y26_c00186{bottom:332.360000pt;}
.y24_c00186{bottom:332.560000pt;}
.y28_c00186{bottom:333.306667pt;}
.y23_c00186{bottom:346.826667pt;}
.y22_c00186{bottom:347.773333pt;}
.y21_c00186{bottom:349.693333pt;}
.y20_c00186{bottom:349.893333pt;}
.y1f_c00186{bottom:365.106667pt;}
.y1d_c00186{bottom:366.440000pt;}
.y1c_c00186{bottom:367.026667pt;}
.y1b_c00186{bottom:367.226667pt;}
.y1a_c00186{bottom:367.400000pt;}
.y1e_c00186{bottom:368.360000pt;}
.y19_c00186{bottom:382.440000pt;}
.y15_c00186{bottom:383.773333pt;}
.y18_c00186{bottom:384.360000pt;}
.y17_c00186{bottom:384.560000pt;}
.y16_c00186{bottom:385.306667pt;}
.y13_c00186{bottom:385.693333pt;}
.y14_c00186{bottom:385.706667pt;}
.y11_c00186{bottom:401.106667pt;}
.y12_c00186{bottom:401.893333pt;}
.yf_c00186{bottom:402.640000pt;}
.y10_c00186{bottom:403.026667pt;}
.yd_c00186{bottom:416.360000pt;}
.ya_c00186{bottom:417.693333pt;}
.y8_c00186{bottom:418.440000pt;}
.y9_c00186{bottom:419.226667pt;}
.ye_c00186{bottom:419.400000pt;}
.yb_c00186{bottom:420.360000pt;}
.yc_c00186{bottom:421.306667pt;}
.y7_c00186{bottom:435.026667pt;}
.y6_c00186{bottom:435.773333pt;}
.y4_c00186{bottom:437.306667pt;}
.y3_c00186{bottom:437.693333pt;}
.y5_c00186{bottom:437.893333pt;}
.ye7_c00186{bottom:472.560000pt;}
.ye6_c00186{bottom:473.506667pt;}
.ye5_c00186{bottom:473.893333pt;}
.ye4_c00186{bottom:474.840000pt;}
.ye2_c00186{bottom:475.226667pt;}
.ye3_c00186{bottom:476.173333pt;}
.ye1_c00186{bottom:484.560000pt;}
.ydd_c00186{bottom:485.506667pt;}
.ye0_c00186{bottom:485.893333pt;}
.yde_c00186{bottom:486.466667pt;}
.ydc_c00186{bottom:486.840000pt;}
.ydb_c00186{bottom:488.173333pt;}
.ydf_c00186{bottom:488.373333pt;}
.yda_c00186{bottom:497.506667pt;}
.yd9_c00186{bottom:497.893333pt;}
.yd8_c00186{bottom:498.466667pt;}
.yd4_c00186{bottom:498.840000pt;}
.yd6_c00186{bottom:499.800000pt;}
.yd5_c00186{bottom:500.173333pt;}
.yd7_c00186{bottom:500.373333pt;}
.yd2_c00186{bottom:509.893333pt;}
.yd3_c00186{bottom:510.840000pt;}
.yd1_c00186{bottom:511.226667pt;}
.yd0_c00186{bottom:511.800000pt;}
.ycf_c00186{bottom:512.173333pt;}
.yce_c00186{bottom:521.506667pt;}
.ycd_c00186{bottom:522.840000pt;}
.ycc_c00186{bottom:523.226667pt;}
.ycb_c00186{bottom:523.800000pt;}
.yca_c00186{bottom:524.173333pt;}
.yc8_c00186{bottom:533.893333pt;}
.yc9_c00186{bottom:534.840000pt;}
.yc7_c00186{bottom:535.226667pt;}
.yc6_c00186{bottom:536.560000pt;}
.yc4_c00186{bottom:545.893333pt;}
.yc5_c00186{bottom:546.840000pt;}
.yc2_c00186{bottom:548.173333pt;}
.yc3_c00186{bottom:548.373333pt;}
.yc1_c00186{bottom:549.506667pt;}
.yc0_c00186{bottom:558.840000pt;}
.ybf_c00186{bottom:559.226667pt;}
.ybd_c00186{bottom:560.173333pt;}
.ybe_c00186{bottom:560.373333pt;}
.ybb_c00186{bottom:560.560000pt;}
.ybc_c00186{bottom:561.506667pt;}
.yba_c00186{bottom:571.226667pt;}
.yb8_c00186{bottom:572.173333pt;}
.yb7_c00186{bottom:573.506667pt;}
.yb9_c00186{bottom:573.706667pt;}
.yb6_c00186{bottom:585.506667pt;}
.yb5_c00186{bottom:585.893333pt;}
.yb4_c00186{bottom:595.226667pt;}
.yb2_c00186{bottom:597.506667pt;}
.yb3_c00186{bottom:597.706667pt;}
.yb1_c00186{bottom:597.893333pt;}
.yb0_c00186{bottom:608.560000pt;}
.yae_c00186{bottom:609.506667pt;}
.yaf_c00186{bottom:609.706667pt;}
.yad_c00186{bottom:609.893333pt;}
.yac_c00186{bottom:620.173333pt;}
.yaa_c00186{bottom:620.560000pt;}
.ya7_c00186{bottom:621.893333pt;}
.ya9_c00186{bottom:622.840000pt;}
.yab_c00186{bottom:623.040000pt;}
.ya8_c00186{bottom:623.800000pt;}
.ya5_c00186{bottom:633.506667pt;}
.ya6_c00186{bottom:635.040000pt;}
.ya4_c00186{bottom:635.226667pt;}
.ya1_c00186{bottom:645.893333pt;}
.ya3_c00186{bottom:647.040000pt;}
.ya2_c00186{bottom:647.226667pt;}
.ya0_c00186{bottom:660.173333pt;}
.y9e_c00186{bottom:670.840000pt;}
.y9f_c00186{bottom:671.040000pt;}
.y9c_c00186{bottom:671.226667pt;}
.y9d_c00186{bottom:671.800000pt;}
.y9b_c00186{bottom:672.173333pt;}
.y99_c00186{bottom:682.840000pt;}
.y9a_c00186{bottom:683.040000pt;}
.y98_c00186{bottom:684.173333pt;}
.y96_c00186{bottom:694.840000pt;}
.y97_c00186{bottom:695.040000pt;}
.y95_c00186{bottom:696.173333pt;}
.y94_c00186{bottom:697.506667pt;}
.y92_c00186{bottom:706.840000pt;}
.y91_c00186{bottom:708.173333pt;}
.y93_c00186{bottom:708.373333pt;}
.y90_c00186{bottom:709.506667pt;}
.y8e_c00186{bottom:717.893333pt;}
.y8d_c00186{bottom:718.840000pt;}
.y8f_c00186{bottom:720.373333pt;}
.y8a_c00186{bottom:720.560000pt;}
.y8b_c00186{bottom:721.133333pt;}
.y8c_c00186{bottom:721.506667pt;}
.y87_c00186{bottom:731.226667pt;}
.y88_c00186{bottom:732.173333pt;}
.y89_c00186{bottom:732.373333pt;}
.y86_c00186{bottom:733.506667pt;}
.y84_c00186{bottom:744.173333pt;}
.y85_c00186{bottom:744.373333pt;}
.y83_c00186{bottom:744.560000pt;}
.y82_c00186{bottom:745.506667pt;}
.y81_c00186{bottom:756.373333pt;}
.y7f_c00186{bottom:756.560000pt;}
.y80_c00186{bottom:757.506667pt;}
.y7e_c00186{bottom:757.893333pt;}
.y7d_c00186{bottom:758.840000pt;}
.y7b_c00186{bottom:768.173333pt;}
.y7c_c00186{bottom:768.373333pt;}
.y7a_c00186{bottom:768.560000pt;}
.y79_c00186{bottom:769.506667pt;}
.y77_c00186{bottom:780.560000pt;}
.y76_c00186{bottom:781.506667pt;}
.y78_c00186{bottom:781.706667pt;}
.y75_c00186{bottom:781.893333pt;}
.y74_c00186{bottom:782.840000pt;}
.y72_c00186{bottom:792.560000pt;}
.y71_c00186{bottom:793.506667pt;}
.y73_c00186{bottom:793.706667pt;}
.y70_c00186{bottom:793.893333pt;}
.y6f_c00186{bottom:794.840000pt;}
.y6d_c00186{bottom:805.506667pt;}
.y6e_c00186{bottom:805.706667pt;}
.y6c_c00186{bottom:805.893333pt;}
.y6b_c00186{bottom:806.840000pt;}
.y69_c00186{bottom:816.560000pt;}
.y68_c00186{bottom:817.506667pt;}
.y6a_c00186{bottom:817.706667pt;}
.y67_c00186{bottom:817.893333pt;}
.y66_c00186{bottom:818.840000pt;}
.y64_c00186{bottom:829.893333pt;}
.y63_c00186{bottom:830.840000pt;}
.y65_c00186{bottom:831.040000pt;}
.y61_c00186{bottom:841.893333pt;}
.y62_c00186{bottom:842.093333pt;}
.y60_c00186{bottom:842.840000pt;}
.y5f_c00186{bottom:843.226667pt;}
.y5e_c00186{bottom:843.600000pt;}
.y5d_c00186{bottom:844.560000pt;}
.y5c_c00186{bottom:853.893333pt;}
.y5b_c00186{bottom:854.840000pt;}
.y5a_c00186{bottom:856.173333pt;}
.y59_c00186{bottom:870.840000pt;}
.y58_c00186{bottom:871.226667pt;}
.y57_c00186{bottom:872.173333pt;}
.y56_c00186{bottom:881.893333pt;}
.y55_c00186{bottom:882.840000pt;}
.y53_c00186{bottom:883.226667pt;}
.y54_c00186{bottom:884.173333pt;}
.y52_c00186{bottom:894.840000pt;}
.y51_c00186{bottom:895.800000pt;}
.y50_c00186{bottom:897.506667pt;}
.y4f_c00186{bottom:909.693333pt;}
.y4e_c00186{bottom:911.600000pt;}
.y4d_c00186{bottom:923.026667pt;}
.y4b_c00186{bottom:923.973333pt;}
.y4c_c00186{bottom:924.933333pt;}
.y4a_c00186{bottom:943.973333pt;}
.y49_c00186{bottom:947.600000pt;}
.y1_c00186{bottom:976.360000pt;}
.y2_c00186{bottom:978.266667pt;}
.h8_c00186{height:3.739141pt;}
.hc_c00186{height:7.412682pt;}
.hb_c00186{height:12.988594pt;}
.ha_c00186{height:14.890964pt;}
.h4_c00186{height:20.466875pt;}
.h2_c00186{height:22.303646pt;}
.h3_c00186{height:27.879557pt;}
.h1_c00186{height:31.618698pt;}
.h7_c00186{height:35.357839pt;}
.h6_c00186{height:36.952031pt;}
.h5_c00186{height:39.031380pt;}
.h9_c00186{height:42.770521pt;}
.h0_c00186{height:1186.666667pt;}
.w0_c00186{width:782.666667pt;}
.x0_c00186{left:0.000000pt;}
.x10_c00186{left:134.666667pt;}
.x3_c00186{left:149.333333pt;}
.x70_c00186{left:152.373333pt;}
.x5a_c00186{left:158.666667pt;}
.x66_c00186{left:165.333333pt;}
.x42_c00186{left:168.000000pt;}
.x34_c00186{left:172.373333pt;}
.x4_c00186{left:176.960000pt;}
.x4d_c00186{left:179.040000pt;}
.x67_c00186{left:182.293333pt;}
.x2b_c00186{left:188.000000pt;}
.x11_c00186{left:196.000000pt;}
.x5b_c00186{left:201.333333pt;}
.x68_c00186{left:202.666667pt;}
.x4e_c00186{left:203.626667pt;}
.x2c_c00186{left:205.333333pt;}
.x21_c00186{left:210.666667pt;}
.x43_c00186{left:212.000000pt;}
.x35_c00186{left:212.960000pt;}
.x69_c00186{left:214.666667pt;}
.x4f_c00186{left:220.373333pt;}
.x12_c00186{left:221.706667pt;}
.x87_c00186{left:222.666667pt;}
.x1c_c00186{left:226.293333pt;}
.x44_c00186{left:228.000000pt;}
.x22_c00186{left:229.333333pt;}
.x5_c00186{left:232.960000pt;}
.x78_c00186{left:238.666667pt;}
.x88_c00186{left:242.293333pt;}
.x50_c00186{left:244.000000pt;}
.x8d_c00186{left:247.040000pt;}
.x93_c00186{left:251.040000pt;}
.x2d_c00186{left:256.000000pt;}
.xa2_c00186{left:257.333333pt;}
.x45_c00186{left:258.666667pt;}
.x6_c00186{left:260.000000pt;}
.x36_c00186{left:261.333333pt;}
.x13_c00186{left:262.666667pt;}
.x6a_c00186{left:265.706667pt;}
.x9d_c00186{left:266.666667pt;}
.x95_c00186{left:269.706667pt;}
.x81_c00186{left:272.373333pt;}
.x71_c00186{left:273.333333pt;}
.x1d_c00186{left:276.000000pt;}
.x14_c00186{left:277.333333pt;}
.xa6_c00186{left:280.000000pt;}
.x37_c00186{left:280.960000pt;}
.x8f_c00186{left:282.666667pt;}
.xa3_c00186{left:285.333333pt;}
.x9c_c00186{left:286.293333pt;}
.x46_c00186{left:291.240000pt;}
.x9b_c00186{left:293.706667pt;}
.x7_c00186{left:294.666667pt;}
.x15_c00186{left:296.000000pt;}
.x94_c00186{left:296.960000pt;}
.x90_c00186{left:298.293333pt;}
.x38_c00186{left:301.333333pt;}
.x5c_c00186{left:308.000000pt;}
.x16_c00186{left:309.706667pt;}
.x51_c00186{left:310.666667pt;}
.x9e_c00186{left:313.706667pt;}
.x23_c00186{left:314.666667pt;}
.x2e_c00186{left:316.373333pt;}
.xa5_c00186{left:317.706667pt;}
.x79_c00186{left:320.000000pt;}
.x5d_c00186{left:324.373333pt;}
.x24_c00186{left:326.666667pt;}
.x6b_c00186{left:333.333333pt;}
.x1e_c00186{left:337.333333pt;}
.x72_c00186{left:339.626667pt;}
.x39_c00186{left:341.333333pt;}
.x5e_c00186{left:348.373333pt;}
.x2f_c00186{left:350.293333pt;}
.x2_c00186{left:354.666667pt;}
.x86_c00186{left:356.000000pt;}
.x3a_c00186{left:360.373333pt;}
.x1f_c00186{left:361.706667pt;}
.x6c_c00186{left:362.666667pt;}
.x7f_c00186{left:365.333333pt;}
.x52_c00186{left:366.293333pt;}
.x73_c00186{left:369.333333pt;}
.x17_c00186{left:376.000000pt;}
.x96_c00186{left:378.666667pt;}
.x3b_c00186{left:385.333333pt;}
.x8_c00186{left:386.666667pt;}
.x53_c00186{left:387.800000pt;}
.x9a_c00186{left:389.333333pt;}
.x99_c00186{left:390.666667pt;}
.x5f_c00186{left:391.626667pt;}
.x25_c00186{left:393.333333pt;}
.x74_c00186{left:396.000000pt;}
.x20_c00186{left:400.000000pt;}
.x82_c00186{left:403.040000pt;}
.x80_c00186{left:404.960000pt;}
.x30_c00186{left:405.906667pt;}
.x60_c00186{left:408.373333pt;}
.x9_c00186{left:411.040000pt;}
.x83_c00186{left:416.000000pt;}
.x47_c00186{left:417.333333pt;}
.x3c_c00186{left:418.293333pt;}
.x6d_c00186{left:420.000000pt;}
.x97_c00186{left:428.000000pt;}
.x26_c00186{left:429.706667pt;}
.x61_c00186{left:431.040000pt;}
.x8b_c00186{left:433.333333pt;}
.x3d_c00186{left:435.240000pt;}
.xa1_c00186{left:437.333333pt;}
.x7a_c00186{left:438.293333pt;}
.x48_c00186{left:441.333333pt;}
.x18_c00186{left:443.240000pt;}
.x8a_c00186{left:445.333333pt;}
.xa_c00186{left:448.000000pt;}
.x54_c00186{left:448.960000pt;}
.x27_c00186{left:452.960000pt;}
.xb_c00186{left:465.333333pt;}
.x55_c00186{left:468.000000pt;}
.x3e_c00186{left:474.293333pt;}
.x7b_c00186{left:481.333333pt;}
.x62_c00186{left:484.000000pt;}
.x98_c00186{left:485.333333pt;}
.x49_c00186{left:487.040000pt;}
.x8c_c00186{left:489.333333pt;}
.x8e_c00186{left:490.666667pt;}
.xa4_c00186{left:492.000000pt;}
.x91_c00186{left:493.333333pt;}
.x19_c00186{left:496.960000pt;}
.x84_c00186{left:499.040000pt;}
.x7c_c00186{left:501.333333pt;}
.xc_c00186{left:504.960000pt;}
.x28_c00186{left:506.666667pt;}
.x63_c00186{left:511.040000pt;}
.x85_c00186{left:512.000000pt;}
.x31_c00186{left:522.293333pt;}
.xd_c00186{left:527.626667pt;}
.x75_c00186{left:530.666667pt;}
.x56_c00186{left:532.000000pt;}
.x7d_c00186{left:536.000000pt;}
.x89_c00186{left:538.666667pt;}
.x1a_c00186{left:541.333333pt;}
.x9f_c00186{left:542.666667pt;}
.x64_c00186{left:544.373333pt;}
.xa0_c00186{left:545.333333pt;}
.x3f_c00186{left:546.293333pt;}
.x76_c00186{left:549.133333pt;}
.x92_c00186{left:550.666667pt;}
.x4a_c00186{left:559.626667pt;}
.x57_c00186{left:563.626667pt;}
.x29_c00186{left:566.666667pt;}
.x40_c00186{left:574.666667pt;}
.x6e_c00186{left:575.626667pt;}
.x32_c00186{left:579.040000pt;}
.x7e_c00186{left:581.706667pt;}
.xe_c00186{left:583.040000pt;}
.x77_c00186{left:585.333333pt;}
.x4b_c00186{left:588.000000pt;}
.x2a_c00186{left:594.666667pt;}
.x1b_c00186{left:598.293333pt;}
.x65_c00186{left:606.666667pt;}
.xf_c00186{left:607.626667pt;}
.x58_c00186{left:609.333333pt;}
.x33_c00186{left:614.666667pt;}
.x41_c00186{left:623.040000pt;}
.x59_c00186{left:625.333333pt;}
.x1_c00186{left:627.040000pt;}
.x6f_c00186{left:628.000000pt;}
.x4c_c00186{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_91ff38fad873749d8642935c.woff2')format("woff");}.ff1_c00187{font-family:ff1_c00187;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma7_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);}
.me6_c00187{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m23_c00187{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.m4b_c00187{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m4e_c00187{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m0_c00187{transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);}
.m8b_c00187{transform:matrix(0.347479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347479,0.000000,0.000000,0.250000,0,0);}
.me5_c00187{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);}
.mc4_c00187{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m94_c00187{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.md4_c00187{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m9c_c00187{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mb3_c00187{transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);}
.m87_c00187{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m6_c00187{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m15_c00187{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m5_c00187{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.me2_c00187{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.mb9_c00187{transform:matrix(0.391104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391104,0.000000,0.000000,0.250000,0,0);}
.md3_c00187{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m33_c00187{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m1c_c00187{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.me3_c00187{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.m26_c00187{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m2e_c00187{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m22_c00187{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m4d_c00187{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m5c_c00187{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m2d_c00187{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m70_c00187{transform:matrix(0.408627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408627,0.000000,0.000000,0.250000,0,0);}
.m9f_c00187{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m3a_c00187{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m83_c00187{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m1a_c00187{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m2f_c00187{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m2_c00187{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m72_c00187{transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);}
.m91_c00187{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m68_c00187{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m75_c00187{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.mce_c00187{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m63_c00187{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m4c_c00187{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mcb_c00187{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m44_c00187{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m86_c00187{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m5a_c00187{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m9a_c00187{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mdf_c00187{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.ma1_c00187{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m46_c00187{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m89_c00187{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m6f_c00187{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m30_c00187{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m90_c00187{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m95_c00187{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m37_c00187{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m12_c00187{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.mc7_c00187{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.mb_c00187{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m85_c00187{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mf_c00187{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m80_c00187{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.md5_c00187{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.mc2_c00187{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m31_c00187{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m71_c00187{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.m2c_c00187{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m7b_c00187{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m4a_c00187{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.ma2_c00187{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m5e_c00187{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.me8_c00187{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.mb1_c00187{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m82_c00187{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.mda_c00187{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m67_c00187{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mbf_c00187{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m7e_c00187{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m48_c00187{transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);}
.me9_c00187{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m6b_c00187{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m3d_c00187{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mdc_c00187{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m8d_c00187{transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);}
.md7_c00187{transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);}
.m5d_c00187{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.mad_c00187{transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);}
.m3e_c00187{transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);}
.m9d_c00187{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.mae_c00187{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.mde_c00187{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.mc1_c00187{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m81_c00187{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.ma9_c00187{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m55_c00187{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m99_c00187{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.mb6_c00187{transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);}
.mcd_c00187{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.mbe_c00187{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.mb0_c00187{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m76_c00187{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.mc3_c00187{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m92_c00187{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m36_c00187{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m77_c00187{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mac_c00187{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mb7_c00187{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m18_c00187{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.ma8_c00187{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m27_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);}
.mcc_c00187{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.ma0_c00187{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.mb5_c00187{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mbd_c00187{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m28_c00187{transform:matrix(0.507780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507780,0.000000,0.000000,0.250000,0,0);}
.m65_c00187{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m16_c00187{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m7f_c00187{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m29_c00187{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m78_c00187{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m4_c00187{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.me7_c00187{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m51_c00187{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m35_c00187{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m69_c00187{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.me_c00187{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mc8_c00187{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m1d_c00187{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m6c_c00187{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m41_c00187{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m3b_c00187{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m74_c00187{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m88_c00187{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.mb8_c00187{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m3c_c00187{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m6d_c00187{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mbb_c00187{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m58_c00187{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m5f_c00187{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m21_c00187{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m64_c00187{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m61_c00187{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m96_c00187{transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);}
.m14_c00187{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m45_c00187{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m54_c00187{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m20_c00187{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m43_c00187{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.maa_c00187{transform:matrix(0.536134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536134,0.000000,0.000000,0.250000,0,0);}
.m40_c00187{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m5b_c00187{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m62_c00187{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m8_c00187{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.mbc_c00187{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m47_c00187{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mba_c00187{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m50_c00187{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m10_c00187{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.maf_c00187{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m11_c00187{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.ma5_c00187{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mdd_c00187{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m8c_c00187{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.me4_c00187{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m2b_c00187{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m66_c00187{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m38_c00187{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mc_c00187{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m53_c00187{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m25_c00187{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m98_c00187{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m8e_c00187{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m52_c00187{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m79_c00187{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m9e_c00187{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mc9_c00187{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m39_c00187{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.ma4_c00187{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m13_c00187{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m8a_c00187{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.md1_c00187{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.md_c00187{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m93_c00187{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.md0_c00187{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m9_c00187{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.me1_c00187{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mdb_c00187{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m2a_c00187{transform:matrix(0.582469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582469,0.000000,0.000000,0.250000,0,0);}
.md8_c00187{transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);}
.mcf_c00187{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m7a_c00187{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m17_c00187{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.m3_c00187{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m6a_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);}
.m1_c00187{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m19_c00187{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m3f_c00187{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mca_c00187{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m6e_c00187{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m7c_c00187{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mc6_c00187{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m60_c00187{transform:matrix(0.617739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617739,0.000000,0.000000,0.250000,0,0);}
.md2_c00187{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.md6_c00187{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mc0_c00187{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m84_c00187{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mb2_c00187{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.mab_c00187{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m1e_c00187{transform:matrix(0.646471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.646471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.646471,0.000000,0.000000,0.250000,0,0);}
.m73_c00187{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m7_c00187{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m24_c00187{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m49_c00187{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.ma6_c00187{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m8f_c00187{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m4f_c00187{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m1f_c00187{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.mb4_c00187{transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);}
.m42_c00187{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m1b_c00187{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m7d_c00187{transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);}
.m32_c00187{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.ma_c00187{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m59_c00187{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m34_c00187{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m57_c00187{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.me0_c00187{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m9b_c00187{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m56_c00187{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.mc5_c00187{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.ma3_c00187{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m97_c00187{transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);}
.md9_c00187{transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);}
.v0_c00187{vertical-align:0.000000px;}
.v1_c00187{vertical-align:6.000000px;}
.v2_c00187{vertical-align:8.580000px;}
.ls1_c00187{letter-spacing:0.000000px;}
.ls0_c00187{letter-spacing:10.619640px;}
.sc__c00187{text-shadow:none;}
.sc0_c00187{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00187{-webkit-text-stroke:0px transparent;}
.sc0_c00187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00187{word-spacing:-4.678200px;}
.ws1_c00187{word-spacing:-3.557922px;}
.ws3_c00187{word-spacing:0.000000px;}
.ws2_c00187{word-spacing:12.118039px;}
._0_c00187{width:15.621927px;}
.fc0_c00187{color:transparent;}
.fs7_c00187{font-size:3.420000px;}
.fs4_c00187{font-size:18.720000px;}
.fs1_c00187{font-size:20.400000px;}
.fs3_c00187{font-size:25.500000px;}
.fs2_c00187{font-size:28.920000px;}
.fs5_c00187{font-size:32.340000px;}
.fs0_c00187{font-size:35.700000px;}
.fs6_c00187{font-size:39.120000px;}
.y0_c00187{bottom:0.000000px;}
.yca_c00187{bottom:248.970000px;}
.ycb_c00187{bottom:249.405000px;}
.yc9_c00187{bottom:251.325000px;}
.yc8_c00187{bottom:252.405000px;}
.yc0_c00187{bottom:268.905000px;}
.yc5_c00187{bottom:269.745000px;}
.yc1_c00187{bottom:270.630000px;}
.yc6_c00187{bottom:270.825000px;}
.yc4_c00187{bottom:271.245000px;}
.yc2_c00187{bottom:271.905000px;}
.yc7_c00187{bottom:272.970000px;}
.yc3_c00187{bottom:273.405000px;}
.ybe_c00187{bottom:290.745000px;}
.ybc_c00187{bottom:291.405000px;}
.ybd_c00187{bottom:291.630000px;}
.ybf_c00187{bottom:292.905000px;}
.yb7_c00187{bottom:308.745000px;}
.ybb_c00187{bottom:309.825000px;}
.yb9_c00187{bottom:310.245000px;}
.yb6_c00187{bottom:310.905000px;}
.yba_c00187{bottom:311.970000px;}
.yb8_c00187{bottom:312.405000px;}
.yb1_c00187{bottom:328.245000px;}
.yb2_c00187{bottom:329.745000px;}
.yb5_c00187{bottom:330.420000px;}
.yb3_c00187{bottom:330.630000px;}
.yb4_c00187{bottom:330.825000px;}
.yaf_c00187{bottom:331.905000px;}
.yb0_c00187{bottom:332.970000px;}
.ya8_c00187{bottom:348.405000px;}
.yae_c00187{bottom:349.245000px;}
.ya9_c00187{bottom:350.130000px;}
.yad_c00187{bottom:350.325000px;}
.yab_c00187{bottom:350.970000px;}
.yac_c00187{bottom:351.405000px;}
.yaa_c00187{bottom:352.470000px;}
.ya7_c00187{bottom:368.745000px;}
.ya5_c00187{bottom:370.245000px;}
.ya4_c00187{bottom:370.905000px;}
.ya6_c00187{bottom:372.405000px;}
.ya0_c00187{bottom:388.245000px;}
.ya2_c00187{bottom:390.405000px;}
.ya3_c00187{bottom:391.470000px;}
.ya1_c00187{bottom:391.905000px;}
.y9c_c00187{bottom:407.745000px;}
.y9b_c00187{bottom:409.050000px;}
.y9f_c00187{bottom:409.245000px;}
.y9e_c00187{bottom:409.905000px;}
.y9d_c00187{bottom:411.405000px;}
.y9a_c00187{bottom:428.550000px;}
.y99_c00187{bottom:429.630000px;}
.y95_c00187{bottom:446.745000px;}
.y97_c00187{bottom:447.405000px;}
.y93_c00187{bottom:448.245000px;}
.y96_c00187{bottom:448.905000px;}
.y98_c00187{bottom:449.970000px;}
.y92_c00187{bottom:450.405000px;}
.y94_c00187{bottom:451.470000px;}
.y8f_c00187{bottom:466.680000px;}
.y91_c00187{bottom:467.325000px;}
.y90_c00187{bottom:467.745000px;}
.y8e_c00187{bottom:469.905000px;}
.y8d_c00187{bottom:487.245000px;}
.y8c_c00187{bottom:489.405000px;}
.y8b_c00187{bottom:507.630000px;}
.y88_c00187{bottom:507.825000px;}
.y8a_c00187{bottom:508.245000px;}
.y87_c00187{bottom:508.905000px;}
.y89_c00187{bottom:509.970000px;}
.y81_c00187{bottom:525.405000px;}
.y84_c00187{bottom:527.745000px;}
.y86_c00187{bottom:528.405000px;}
.y83_c00187{bottom:528.825000px;}
.y85_c00187{bottom:529.470000px;}
.y82_c00187{bottom:529.905000px;}
.y7d_c00187{bottom:545.745000px;}
.y7b_c00187{bottom:546.405000px;}
.y79_c00187{bottom:547.245000px;}
.y80_c00187{bottom:547.470000px;}
.y7f_c00187{bottom:547.905000px;}
.y7c_c00187{bottom:548.130000px;}
.y7e_c00187{bottom:548.325000px;}
.y7a_c00187{bottom:549.405000px;}
.y77_c00187{bottom:566.325000px;}
.y75_c00187{bottom:566.745000px;}
.y78_c00187{bottom:567.405000px;}
.y76_c00187{bottom:568.470000px;}
.y74_c00187{bottom:568.905000px;}
.y72_c00187{bottom:586.245000px;}
.y73_c00187{bottom:586.905000px;}
.y6d_c00187{bottom:587.130000px;}
.y6f_c00187{bottom:587.325000px;}
.y70_c00187{bottom:587.970000px;}
.y6e_c00187{bottom:588.405000px;}
.y71_c00187{bottom:588.630000px;}
.y69_c00187{bottom:610.245000px;}
.y6a_c00187{bottom:611.970000px;}
.y6c_c00187{bottom:612.405000px;}
.y6b_c00187{bottom:613.470000px;}
.y68_c00187{bottom:644.745000px;}
.y67_c00187{bottom:646.905000px;}
.y66_c00187{bottom:664.245000px;}
.y63_c00187{bottom:665.745000px;}
.y65_c00187{bottom:666.630000px;}
.y64_c00187{bottom:667.905000px;}
.y5b_c00187{bottom:683.745000px;}
.y5c_c00187{bottom:683.970000px;}
.y5d_c00187{bottom:685.245000px;}
.y62_c00187{bottom:685.905000px;}
.y5f_c00187{bottom:686.130000px;}
.y5e_c00187{bottom:686.325000px;}
.y61_c00187{bottom:686.970000px;}
.y60_c00187{bottom:687.405000px;}
.y58_c00187{bottom:703.245000px;}
.y56_c00187{bottom:704.325000px;}
.y57_c00187{bottom:705.405000px;}
.y5a_c00187{bottom:705.630000px;}
.y59_c00187{bottom:706.470000px;}
.y54_c00187{bottom:722.745000px;}
.y55_c00187{bottom:724.245000px;}
.y51_c00187{bottom:724.905000px;}
.y53_c00187{bottom:725.130000px;}
.y52_c00187{bottom:726.405000px;}
.y4e_c00187{bottom:742.680000px;}
.y50_c00187{bottom:743.745000px;}
.y4d_c00187{bottom:745.905000px;}
.y4f_c00187{bottom:746.130000px;}
.y4b_c00187{bottom:762.405000px;}
.y49_c00187{bottom:763.245000px;}
.y4c_c00187{bottom:764.325000px;}
.y4a_c00187{bottom:765.405000px;}
.y48_c00187{bottom:766.470000px;}
.y47_c00187{bottom:784.905000px;}
.y44_c00187{bottom:802.245000px;}
.y42_c00187{bottom:803.130000px;}
.y46_c00187{bottom:803.325000px;}
.y43_c00187{bottom:804.405000px;}
.y45_c00187{bottom:805.470000px;}
.y3f_c00187{bottom:821.970000px;}
.y3d_c00187{bottom:822.825000px;}
.y41_c00187{bottom:823.905000px;}
.y40_c00187{bottom:824.325000px;}
.y3e_c00187{bottom:825.405000px;}
.y3b_c00187{bottom:840.405000px;}
.y39_c00187{bottom:842.745000px;}
.y36_c00187{bottom:843.630000px;}
.y3c_c00187{bottom:843.825000px;}
.y38_c00187{bottom:844.470000px;}
.y37_c00187{bottom:844.905000px;}
.y3a_c00187{bottom:845.970000px;}
.y2f_c00187{bottom:860.745000px;}
.y30_c00187{bottom:862.245000px;}
.y35_c00187{bottom:862.905000px;}
.y34_c00187{bottom:863.325000px;}
.y32_c00187{bottom:864.405000px;}
.y33_c00187{bottom:864.630000px;}
.y31_c00187{bottom:865.470000px;}
.y2c_c00187{bottom:881.745000px;}
.y2e_c00187{bottom:882.630000px;}
.y2d_c00187{bottom:883.905000px;}
.y2a_c00187{bottom:901.245000px;}
.y29_c00187{bottom:902.130000px;}
.y28_c00187{bottom:903.405000px;}
.y2b_c00187{bottom:904.470000px;}
.y27_c00187{bottom:919.905000px;}
.y26_c00187{bottom:920.745000px;}
.y22_c00187{bottom:922.470000px;}
.y24_c00187{bottom:922.905000px;}
.y23_c00187{bottom:923.130000px;}
.y25_c00187{bottom:924.405000px;}
.y1f_c00187{bottom:940.245000px;}
.y21_c00187{bottom:941.130000px;}
.y20_c00187{bottom:941.325000px;}
.y1d_c00187{bottom:941.745000px;}
.y1c_c00187{bottom:942.405000px;}
.y1e_c00187{bottom:943.905000px;}
.y1b_c00187{bottom:967.905000px;}
.y15_c00187{bottom:998.745000px;}
.y16_c00187{bottom:999.405000px;}
.y17_c00187{bottom:1000.245000px;}
.y1a_c00187{bottom:1000.905000px;}
.y18_c00187{bottom:1001.970000px;}
.y19_c00187{bottom:1002.405000px;}
.y13_c00187{bottom:1017.405000px;}
.ye_c00187{bottom:1019.745000px;}
.y14_c00187{bottom:1020.405000px;}
.yf_c00187{bottom:1020.630000px;}
.y11_c00187{bottom:1021.470000px;}
.y10_c00187{bottom:1021.905000px;}
.y12_c00187{bottom:1022.970000px;}
.y9_c00187{bottom:1039.245000px;}
.yc_c00187{bottom:1040.325000px;}
.ya_c00187{bottom:1040.970000px;}
.yb_c00187{bottom:1041.405000px;}
.yd_c00187{bottom:1042.470000px;}
.y3_c00187{bottom:1058.745000px;}
.y7_c00187{bottom:1059.630000px;}
.y8_c00187{bottom:1059.825000px;}
.y5_c00187{bottom:1060.470000px;}
.y4_c00187{bottom:1060.905000px;}
.y6_c00187{bottom:1061.970000px;}
.y1_c00187{bottom:1097.745000px;}
.y2_c00187{bottom:1100.550000px;}
.h9_c00187{height:4.206533px;}
.h5_c00187{height:23.025234px;}
.h2_c00187{height:25.091602px;}
.h4_c00187{height:31.364502px;}
.h3_c00187{height:35.571035px;}
.h6_c00187{height:39.777568px;}
.h8_c00187{height:41.571035px;}
.h1_c00187{height:43.910303px;}
.h7_c00187{height:48.116836px;}
.h0_c00187{height:1335.000000px;}
.w0_c00187{width:880.500000px;}
.x0_c00187{left:0.000000px;}
.x3_c00187{left:153.000000px;}
.x1d_c00187{left:154.500000px;}
.x1_c00187{left:155.775000px;}
.xc8_c00187{left:160.080000px;}
.x33_c00187{left:169.500000px;}
.x3d_c00187{left:172.500000px;}
.x77_c00187{left:179.580000px;}
.x7d_c00187{left:183.000000px;}
.x5c_c00187{left:184.920000px;}
.x45_c00187{left:186.000000px;}
.x34_c00187{left:192.420000px;}
.x52_c00187{left:198.000000px;}
.x7e_c00187{left:199.920000px;}
.xe2_c00187{left:204.000000px;}
.x3e_c00187{left:205.080000px;}
.x9a_c00187{left:207.420000px;}
.x92_c00187{left:208.500000px;}
.x5d_c00187{left:210.000000px;}
.x46_c00187{left:211.500000px;}
.x10_c00187{left:213.000000px;}
.x4_c00187{left:214.920000px;}
.xb7_c00187{left:217.500000px;}
.x2a_c00187{left:220.920000px;}
.x1e_c00187{left:222.000000px;}
.xa0_c00187{left:223.080000px;}
.xef_c00187{left:225.000000px;}
.xbc_c00187{left:229.500000px;}
.x65_c00187{left:231.000000px;}
.x11_c00187{left:232.500000px;}
.x3f_c00187{left:237.420000px;}
.xdb_c00187{left:238.920000px;}
.xce_c00187{left:240.420000px;}
.x5e_c00187{left:244.080000px;}
.x7f_c00187{left:245.580000px;}
.x5_c00187{left:247.080000px;}
.x93_c00187{left:249.420000px;}
.xe6_c00187{left:250.500000px;}
.x78_c00187{left:252.000000px;}
.x12_c00187{left:253.500000px;}
.x1f_c00187{left:257.580000px;}
.xa1_c00187{left:259.500000px;}
.x2b_c00187{left:261.000000px;}
.x6f_c00187{left:262.080000px;}
.x88_c00187{left:265.500000px;}
.x35_c00187{left:267.000000px;}
.x6_c00187{left:268.500000px;}
.x66_c00187{left:271.500000px;}
.x9b_c00187{left:273.000000px;}
.xe7_c00187{left:274.080000px;}
.x20_c00187{left:276.000000px;}
.xa9_c00187{left:277.500000px;}
.x2c_c00187{left:280.500000px;}
.x53_c00187{left:282.000000px;}
.xaf_c00187{left:283.500000px;}
.xbd_c00187{left:285.420000px;}
.x21_c00187{left:288.000000px;}
.x2d_c00187{left:292.920000px;}
.xa2_c00187{left:294.420000px;}
.xc2_c00187{left:295.500000px;}
.x13_c00187{left:298.920000px;}
.x40_c00187{left:301.080000px;}
.xf4_c00187{left:303.420000px;}
.xe8_c00187{left:304.500000px;}
.x47_c00187{left:306.000000px;}
.x54_c00187{left:307.920000px;}
.xf0_c00187{left:309.000000px;}
.xa5_c00187{left:310.080000px;}
.xcf_c00187{left:311.580000px;}
.x70_c00187{left:315.420000px;}
.x36_c00187{left:316.920000px;}
.x2e_c00187{left:319.500000px;}
.xf7_c00187{left:322.500000px;}
.xb0_c00187{left:325.920000px;}
.x48_c00187{left:328.080000px;}
.x67_c00187{left:333.000000px;}
.xa6_c00187{left:334.500000px;}
.xc3_c00187{left:337.500000px;}
.x71_c00187{left:339.420000px;}
.x7_c00187{left:342.000000px;}
.xdc_c00187{left:343.920000px;}
.x14_c00187{left:346.080000px;}
.x49_c00187{left:349.500000px;}
.x5f_c00187{left:350.580000px;}
.x68_c00187{left:354.000000px;}
.xb1_c00187{left:355.080000px;}
.x31_c00187{left:356.145000px;}
.x41_c00187{left:358.080000px;}
.x22_c00187{left:360.000000px;}
.x55_c00187{left:361.500000px;}
.x94_c00187{left:363.000000px;}
.x89_c00187{left:365.580000px;}
.x2f_c00187{left:368.145000px;}
.x60_c00187{left:370.500000px;}
.xd7_c00187{left:373.500000px;}
.x4a_c00187{left:374.580000px;}
.x15_c00187{left:376.920000px;}
.x82_c00187{left:378.000000px;}
.xf8_c00187{left:379.080000px;}
.xc4_c00187{left:381.000000px;}
.xa7_c00187{left:382.080000px;}
.xdd_c00187{left:384.420000px;}
.xb2_c00187{left:385.500000px;}
.xb8_c00187{left:386.580000px;}
.xf5_c00187{left:390.000000px;}
.x61_c00187{left:391.080000px;}
.xd0_c00187{left:392.580000px;}
.x37_c00187{left:397.500000px;}
.xe3_c00187{left:399.000000px;}
.x79_c00187{left:400.500000px;}
.x2_c00187{left:402.000000px;}
.x8_c00187{left:403.500000px;}
.xe9_c00187{left:406.080000px;}
.x23_c00187{left:408.000000px;}
.xf1_c00187{left:409.500000px;}
.x16_c00187{left:410.580000px;}
.xd5_c00187{left:414.000000px;}
.x83_c00187{left:415.080000px;}
.x32_c00187{left:416.580000px;}
.xea_c00187{left:420.000000px;}
.x9_c00187{left:423.000000px;}
.xd8_c00187{left:426.000000px;}
.xa8_c00187{left:427.500000px;}
.xb9_c00187{left:430.080000px;}
.x17_c00187{left:432.420000px;}
.x8a_c00187{left:433.500000px;}
.xf9_c00187{left:436.080000px;}
.xbe_c00187{left:438.000000px;}
.x30_c00187{left:439.500000px;}
.xaa_c00187{left:441.000000px;}
.xd1_c00187{left:442.080000px;}
.x95_c00187{left:445.080000px;}
.x56_c00187{left:447.420000px;}
.x4b_c00187{left:448.500000px;}
.x42_c00187{left:450.000000px;}
.x62_c00187{left:453.000000px;}
.x8b_c00187{left:454.920000px;}
.x80_c00187{left:456.000000px;}
.x18_c00187{left:459.000000px;}
.x4c_c00187{left:460.920000px;}
.x24_c00187{left:462.000000px;}
.xeb_c00187{left:465.000000px;}
.x69_c00187{left:466.080000px;}
.xfa_c00187{left:468.000000px;}
.xde_c00187{left:472.500000px;}
.x96_c00187{left:474.420000px;}
.x72_c00187{left:475.920000px;}
.xec_c00187{left:481.920000px;}
.x25_c00187{left:483.000000px;}
.x43_c00187{left:484.920000px;}
.xbf_c00187{left:486.000000px;}
.x8c_c00187{left:487.500000px;}
.xa_c00187{left:490.920000px;}
.x6a_c00187{left:492.000000px;}
.x38_c00187{left:496.920000px;}
.xed_c00187{left:498.000000px;}
.xd9_c00187{left:499.500000px;}
.x97_c00187{left:502.080000px;}
.x73_c00187{left:504.000000px;}
.xb3_c00187{left:507.420000px;}
.x26_c00187{left:508.500000px;}
.xc5_c00187{left:510.420000px;}
.xdf_c00187{left:511.920000px;}
.x4d_c00187{left:514.500000px;}
.x7a_c00187{left:516.420000px;}
.xc9_c00187{left:517.500000px;}
.x84_c00187{left:520.080000px;}
.x6b_c00187{left:522.420000px;}
.x57_c00187{left:523.500000px;}
.x8d_c00187{left:524.580000px;}
.x19_c00187{left:526.920000px;}
.xd6_c00187{left:530.580000px;}
.xb4_c00187{left:534.000000px;}
.xe4_c00187{left:535.080000px;}
.x58_c00187{left:538.080000px;}
.xf6_c00187{left:541.920000px;}
.x7b_c00187{left:543.000000px;}
.x81_c00187{left:544.920000px;}
.x8e_c00187{left:546.420000px;}
.xb_c00187{left:547.500000px;}
.x98_c00187{left:550.080000px;}
.xe0_c00187{left:551.580000px;}
.x63_c00187{left:553.500000px;}
.xc6_c00187{left:554.580000px;}
.x39_c00187{left:556.500000px;}
.xca_c00187{left:558.000000px;}
.x6c_c00187{left:559.920000px;}
.x85_c00187{left:561.420000px;}
.x74_c00187{left:564.000000px;}
.xc0_c00187{left:570.000000px;}
.x8f_c00187{left:576.000000px;}
.x27_c00187{left:578.580000px;}
.xda_c00187{left:580.500000px;}
.xc_c00187{left:583.500000px;}
.x4e_c00187{left:586.500000px;}
.xf2_c00187{left:590.580000px;}
.x3a_c00187{left:592.500000px;}
.x28_c00187{left:595.080000px;}
.x9c_c00187{left:598.500000px;}
.xba_c00187{left:603.000000px;}
.x1a_c00187{left:604.080000px;}
.x6d_c00187{left:606.000000px;}
.x75_c00187{left:607.920000px;}
.xee_c00187{left:609.420000px;}
.x99_c00187{left:612.420000px;}
.xa3_c00187{left:615.000000px;}
.xbb_c00187{left:616.500000px;}
.x4f_c00187{left:621.000000px;}
.xab_c00187{left:622.500000px;}
.x9d_c00187{left:625.500000px;}
.xcb_c00187{left:627.000000px;}
.xe1_c00187{left:630.420000px;}
.x59_c00187{left:631.500000px;}
.xd2_c00187{left:634.920000px;}
.x3b_c00187{left:636.000000px;}
.xc1_c00187{left:637.920000px;}
.x90_c00187{left:639.000000px;}
.x44_c00187{left:640.500000px;}
.xd_c00187{left:643.080000px;}
.xac_c00187{left:645.420000px;}
.x86_c00187{left:646.500000px;}
.xcc_c00187{left:649.500000px;}
.xfb_c00187{left:650.580000px;}
.xb5_c00187{left:652.500000px;}
.xa4_c00187{left:654.000000px;}
.x50_c00187{left:655.920000px;}
.xf3_c00187{left:657.000000px;}
.x91_c00187{left:658.500000px;}
.x3c_c00187{left:661.920000px;}
.x7c_c00187{left:663.000000px;}
.x29_c00187{left:664.500000px;}
.x1b_c00187{left:666.420000px;}
.x5a_c00187{left:669.000000px;}
.xad_c00187{left:672.000000px;}
.xe_c00187{left:673.080000px;}
.x76_c00187{left:679.500000px;}
.x51_c00187{left:681.000000px;}
.xe5_c00187{left:685.080000px;}
.xb6_c00187{left:688.500000px;}
.x9e_c00187{left:690.000000px;}
.x6e_c00187{left:691.500000px;}
.xc7_c00187{left:693.420000px;}
.xf_c00187{left:694.920000px;}
.x5b_c00187{left:700.500000px;}
.xcd_c00187{left:702.000000px;}
.x1c_c00187{left:705.000000px;}
.x9f_c00187{left:709.500000px;}
.xd3_c00187{left:715.500000px;}
.x87_c00187{left:717.000000px;}
.xae_c00187{left:718.080000px;}
.x64_c00187{left:720.000000px;}
.xd4_c00187{left:723.420000px;}
@media print{
.v0_c00187{vertical-align:0.000000pt;}
.v1_c00187{vertical-align:5.333333pt;}
.v2_c00187{vertical-align:7.626667pt;}
.ls1_c00187{letter-spacing:0.000000pt;}
.ls0_c00187{letter-spacing:9.439680pt;}
.ws0_c00187{word-spacing:-4.158400pt;}
.ws1_c00187{word-spacing:-3.162597pt;}
.ws3_c00187{word-spacing:0.000000pt;}
.ws2_c00187{word-spacing:10.771590pt;}
._0_c00187{width:13.886158pt;}
.fs7_c00187{font-size:3.040000pt;}
.fs4_c00187{font-size:16.640000pt;}
.fs1_c00187{font-size:18.133333pt;}
.fs3_c00187{font-size:22.666667pt;}
.fs2_c00187{font-size:25.706667pt;}
.fs5_c00187{font-size:28.746667pt;}
.fs0_c00187{font-size:31.733333pt;}
.fs6_c00187{font-size:34.773333pt;}
.y0_c00187{bottom:0.000000pt;}
.yca_c00187{bottom:221.306667pt;}
.ycb_c00187{bottom:221.693333pt;}
.yc9_c00187{bottom:223.400000pt;}
.yc8_c00187{bottom:224.360000pt;}
.yc0_c00187{bottom:239.026667pt;}
.yc5_c00187{bottom:239.773333pt;}
.yc1_c00187{bottom:240.560000pt;}
.yc6_c00187{bottom:240.733333pt;}
.yc4_c00187{bottom:241.106667pt;}
.yc2_c00187{bottom:241.693333pt;}
.yc7_c00187{bottom:242.640000pt;}
.yc3_c00187{bottom:243.026667pt;}
.ybe_c00187{bottom:258.440000pt;}
.ybc_c00187{bottom:259.026667pt;}
.ybd_c00187{bottom:259.226667pt;}
.ybf_c00187{bottom:260.360000pt;}
.yb7_c00187{bottom:274.440000pt;}
.ybb_c00187{bottom:275.400000pt;}
.yb9_c00187{bottom:275.773333pt;}
.yb6_c00187{bottom:276.360000pt;}
.yba_c00187{bottom:277.306667pt;}
.yb8_c00187{bottom:277.693333pt;}
.yb1_c00187{bottom:291.773333pt;}
.yb2_c00187{bottom:293.106667pt;}
.yb5_c00187{bottom:293.706667pt;}
.yb3_c00187{bottom:293.893333pt;}
.yb4_c00187{bottom:294.066667pt;}
.yaf_c00187{bottom:295.026667pt;}
.yb0_c00187{bottom:295.973333pt;}
.ya8_c00187{bottom:309.693333pt;}
.yae_c00187{bottom:310.440000pt;}
.ya9_c00187{bottom:311.226667pt;}
.yad_c00187{bottom:311.400000pt;}
.yab_c00187{bottom:311.973333pt;}
.yac_c00187{bottom:312.360000pt;}
.yaa_c00187{bottom:313.306667pt;}
.ya7_c00187{bottom:327.773333pt;}
.ya5_c00187{bottom:329.106667pt;}
.ya4_c00187{bottom:329.693333pt;}
.ya6_c00187{bottom:331.026667pt;}
.ya0_c00187{bottom:345.106667pt;}
.ya2_c00187{bottom:347.026667pt;}
.ya3_c00187{bottom:347.973333pt;}
.ya1_c00187{bottom:348.360000pt;}
.y9c_c00187{bottom:362.440000pt;}
.y9b_c00187{bottom:363.600000pt;}
.y9f_c00187{bottom:363.773333pt;}
.y9e_c00187{bottom:364.360000pt;}
.y9d_c00187{bottom:365.693333pt;}
.y9a_c00187{bottom:380.933333pt;}
.y99_c00187{bottom:381.893333pt;}
.y95_c00187{bottom:397.106667pt;}
.y97_c00187{bottom:397.693333pt;}
.y93_c00187{bottom:398.440000pt;}
.y96_c00187{bottom:399.026667pt;}
.y98_c00187{bottom:399.973333pt;}
.y92_c00187{bottom:400.360000pt;}
.y94_c00187{bottom:401.306667pt;}
.y8f_c00187{bottom:414.826667pt;}
.y91_c00187{bottom:415.400000pt;}
.y90_c00187{bottom:415.773333pt;}
.y8e_c00187{bottom:417.693333pt;}
.y8d_c00187{bottom:433.106667pt;}
.y8c_c00187{bottom:435.026667pt;}
.y8b_c00187{bottom:451.226667pt;}
.y88_c00187{bottom:451.400000pt;}
.y8a_c00187{bottom:451.773333pt;}
.y87_c00187{bottom:452.360000pt;}
.y89_c00187{bottom:453.306667pt;}
.y81_c00187{bottom:467.026667pt;}
.y84_c00187{bottom:469.106667pt;}
.y86_c00187{bottom:469.693333pt;}
.y83_c00187{bottom:470.066667pt;}
.y85_c00187{bottom:470.640000pt;}
.y82_c00187{bottom:471.026667pt;}
.y7d_c00187{bottom:485.106667pt;}
.y7b_c00187{bottom:485.693333pt;}
.y79_c00187{bottom:486.440000pt;}
.y80_c00187{bottom:486.640000pt;}
.y7f_c00187{bottom:487.026667pt;}
.y7c_c00187{bottom:487.226667pt;}
.y7e_c00187{bottom:487.400000pt;}
.y7a_c00187{bottom:488.360000pt;}
.y77_c00187{bottom:503.400000pt;}
.y75_c00187{bottom:503.773333pt;}
.y78_c00187{bottom:504.360000pt;}
.y76_c00187{bottom:505.306667pt;}
.y74_c00187{bottom:505.693333pt;}
.y72_c00187{bottom:521.106667pt;}
.y73_c00187{bottom:521.693333pt;}
.y6d_c00187{bottom:521.893333pt;}
.y6f_c00187{bottom:522.066667pt;}
.y70_c00187{bottom:522.640000pt;}
.y6e_c00187{bottom:523.026667pt;}
.y71_c00187{bottom:523.226667pt;}
.y69_c00187{bottom:542.440000pt;}
.y6a_c00187{bottom:543.973333pt;}
.y6c_c00187{bottom:544.360000pt;}
.y6b_c00187{bottom:545.306667pt;}
.y68_c00187{bottom:573.106667pt;}
.y67_c00187{bottom:575.026667pt;}
.y66_c00187{bottom:590.440000pt;}
.y63_c00187{bottom:591.773333pt;}
.y65_c00187{bottom:592.560000pt;}
.y64_c00187{bottom:593.693333pt;}
.y5b_c00187{bottom:607.773333pt;}
.y5c_c00187{bottom:607.973333pt;}
.y5d_c00187{bottom:609.106667pt;}
.y62_c00187{bottom:609.693333pt;}
.y5f_c00187{bottom:609.893333pt;}
.y5e_c00187{bottom:610.066667pt;}
.y61_c00187{bottom:610.640000pt;}
.y60_c00187{bottom:611.026667pt;}
.y58_c00187{bottom:625.106667pt;}
.y56_c00187{bottom:626.066667pt;}
.y57_c00187{bottom:627.026667pt;}
.y5a_c00187{bottom:627.226667pt;}
.y59_c00187{bottom:627.973333pt;}
.y54_c00187{bottom:642.440000pt;}
.y55_c00187{bottom:643.773333pt;}
.y51_c00187{bottom:644.360000pt;}
.y53_c00187{bottom:644.560000pt;}
.y52_c00187{bottom:645.693333pt;}
.y4e_c00187{bottom:660.160000pt;}
.y50_c00187{bottom:661.106667pt;}
.y4d_c00187{bottom:663.026667pt;}
.y4f_c00187{bottom:663.226667pt;}
.y4b_c00187{bottom:677.693333pt;}
.y49_c00187{bottom:678.440000pt;}
.y4c_c00187{bottom:679.400000pt;}
.y4a_c00187{bottom:680.360000pt;}
.y48_c00187{bottom:681.306667pt;}
.y47_c00187{bottom:697.693333pt;}
.y44_c00187{bottom:713.106667pt;}
.y42_c00187{bottom:713.893333pt;}
.y46_c00187{bottom:714.066667pt;}
.y43_c00187{bottom:715.026667pt;}
.y45_c00187{bottom:715.973333pt;}
.y3f_c00187{bottom:730.640000pt;}
.y3d_c00187{bottom:731.400000pt;}
.y41_c00187{bottom:732.360000pt;}
.y40_c00187{bottom:732.733333pt;}
.y3e_c00187{bottom:733.693333pt;}
.y3b_c00187{bottom:747.026667pt;}
.y39_c00187{bottom:749.106667pt;}
.y36_c00187{bottom:749.893333pt;}
.y3c_c00187{bottom:750.066667pt;}
.y38_c00187{bottom:750.640000pt;}
.y37_c00187{bottom:751.026667pt;}
.y3a_c00187{bottom:751.973333pt;}
.y2f_c00187{bottom:765.106667pt;}
.y30_c00187{bottom:766.440000pt;}
.y35_c00187{bottom:767.026667pt;}
.y34_c00187{bottom:767.400000pt;}
.y32_c00187{bottom:768.360000pt;}
.y33_c00187{bottom:768.560000pt;}
.y31_c00187{bottom:769.306667pt;}
.y2c_c00187{bottom:783.773333pt;}
.y2e_c00187{bottom:784.560000pt;}
.y2d_c00187{bottom:785.693333pt;}
.y2a_c00187{bottom:801.106667pt;}
.y29_c00187{bottom:801.893333pt;}
.y28_c00187{bottom:803.026667pt;}
.y2b_c00187{bottom:803.973333pt;}
.y27_c00187{bottom:817.693333pt;}
.y26_c00187{bottom:818.440000pt;}
.y22_c00187{bottom:819.973333pt;}
.y24_c00187{bottom:820.360000pt;}
.y23_c00187{bottom:820.560000pt;}
.y25_c00187{bottom:821.693333pt;}
.y1f_c00187{bottom:835.773333pt;}
.y21_c00187{bottom:836.560000pt;}
.y20_c00187{bottom:836.733333pt;}
.y1d_c00187{bottom:837.106667pt;}
.y1c_c00187{bottom:837.693333pt;}
.y1e_c00187{bottom:839.026667pt;}
.y1b_c00187{bottom:860.360000pt;}
.y15_c00187{bottom:887.773333pt;}
.y16_c00187{bottom:888.360000pt;}
.y17_c00187{bottom:889.106667pt;}
.y1a_c00187{bottom:889.693333pt;}
.y18_c00187{bottom:890.640000pt;}
.y19_c00187{bottom:891.026667pt;}
.y13_c00187{bottom:904.360000pt;}
.ye_c00187{bottom:906.440000pt;}
.y14_c00187{bottom:907.026667pt;}
.yf_c00187{bottom:907.226667pt;}
.y11_c00187{bottom:907.973333pt;}
.y10_c00187{bottom:908.360000pt;}
.y12_c00187{bottom:909.306667pt;}
.y9_c00187{bottom:923.773333pt;}
.yc_c00187{bottom:924.733333pt;}
.ya_c00187{bottom:925.306667pt;}
.yb_c00187{bottom:925.693333pt;}
.yd_c00187{bottom:926.640000pt;}
.y3_c00187{bottom:941.106667pt;}
.y7_c00187{bottom:941.893333pt;}
.y8_c00187{bottom:942.066667pt;}
.y5_c00187{bottom:942.640000pt;}
.y4_c00187{bottom:943.026667pt;}
.y6_c00187{bottom:943.973333pt;}
.y1_c00187{bottom:975.773333pt;}
.y2_c00187{bottom:978.266667pt;}
.h9_c00187{height:3.739141pt;}
.h5_c00187{height:20.466875pt;}
.h2_c00187{height:22.303646pt;}
.h4_c00187{height:27.879557pt;}
.h3_c00187{height:31.618698pt;}
.h6_c00187{height:35.357839pt;}
.h8_c00187{height:36.952031pt;}
.h1_c00187{height:39.031380pt;}
.h7_c00187{height:42.770521pt;}
.h0_c00187{height:1186.666667pt;}
.w0_c00187{width:782.666667pt;}
.x0_c00187{left:0.000000pt;}
.x3_c00187{left:136.000000pt;}
.x1d_c00187{left:137.333333pt;}
.x1_c00187{left:138.466667pt;}
.xc8_c00187{left:142.293333pt;}
.x33_c00187{left:150.666667pt;}
.x3d_c00187{left:153.333333pt;}
.x77_c00187{left:159.626667pt;}
.x7d_c00187{left:162.666667pt;}
.x5c_c00187{left:164.373333pt;}
.x45_c00187{left:165.333333pt;}
.x34_c00187{left:171.040000pt;}
.x52_c00187{left:176.000000pt;}
.x7e_c00187{left:177.706667pt;}
.xe2_c00187{left:181.333333pt;}
.x3e_c00187{left:182.293333pt;}
.x9a_c00187{left:184.373333pt;}
.x92_c00187{left:185.333333pt;}
.x5d_c00187{left:186.666667pt;}
.x46_c00187{left:188.000000pt;}
.x10_c00187{left:189.333333pt;}
.x4_c00187{left:191.040000pt;}
.xb7_c00187{left:193.333333pt;}
.x2a_c00187{left:196.373333pt;}
.x1e_c00187{left:197.333333pt;}
.xa0_c00187{left:198.293333pt;}
.xef_c00187{left:200.000000pt;}
.xbc_c00187{left:204.000000pt;}
.x65_c00187{left:205.333333pt;}
.x11_c00187{left:206.666667pt;}
.x3f_c00187{left:211.040000pt;}
.xdb_c00187{left:212.373333pt;}
.xce_c00187{left:213.706667pt;}
.x5e_c00187{left:216.960000pt;}
.x7f_c00187{left:218.293333pt;}
.x5_c00187{left:219.626667pt;}
.x93_c00187{left:221.706667pt;}
.xe6_c00187{left:222.666667pt;}
.x78_c00187{left:224.000000pt;}
.x12_c00187{left:225.333333pt;}
.x1f_c00187{left:228.960000pt;}
.xa1_c00187{left:230.666667pt;}
.x2b_c00187{left:232.000000pt;}
.x6f_c00187{left:232.960000pt;}
.x88_c00187{left:236.000000pt;}
.x35_c00187{left:237.333333pt;}
.x6_c00187{left:238.666667pt;}
.x66_c00187{left:241.333333pt;}
.x9b_c00187{left:242.666667pt;}
.xe7_c00187{left:243.626667pt;}
.x20_c00187{left:245.333333pt;}
.xa9_c00187{left:246.666667pt;}
.x2c_c00187{left:249.333333pt;}
.x53_c00187{left:250.666667pt;}
.xaf_c00187{left:252.000000pt;}
.xbd_c00187{left:253.706667pt;}
.x21_c00187{left:256.000000pt;}
.x2d_c00187{left:260.373333pt;}
.xa2_c00187{left:261.706667pt;}
.xc2_c00187{left:262.666667pt;}
.x13_c00187{left:265.706667pt;}
.x40_c00187{left:267.626667pt;}
.xf4_c00187{left:269.706667pt;}
.xe8_c00187{left:270.666667pt;}
.x47_c00187{left:272.000000pt;}
.x54_c00187{left:273.706667pt;}
.xf0_c00187{left:274.666667pt;}
.xa5_c00187{left:275.626667pt;}
.xcf_c00187{left:276.960000pt;}
.x70_c00187{left:280.373333pt;}
.x36_c00187{left:281.706667pt;}
.x2e_c00187{left:284.000000pt;}
.xf7_c00187{left:286.666667pt;}
.xb0_c00187{left:289.706667pt;}
.x48_c00187{left:291.626667pt;}
.x67_c00187{left:296.000000pt;}
.xa6_c00187{left:297.333333pt;}
.xc3_c00187{left:300.000000pt;}
.x71_c00187{left:301.706667pt;}
.x7_c00187{left:304.000000pt;}
.xdc_c00187{left:305.706667pt;}
.x14_c00187{left:307.626667pt;}
.x49_c00187{left:310.666667pt;}
.x5f_c00187{left:311.626667pt;}
.x68_c00187{left:314.666667pt;}
.xb1_c00187{left:315.626667pt;}
.x31_c00187{left:316.573333pt;}
.x41_c00187{left:318.293333pt;}
.x22_c00187{left:320.000000pt;}
.x55_c00187{left:321.333333pt;}
.x94_c00187{left:322.666667pt;}
.x89_c00187{left:324.960000pt;}
.x2f_c00187{left:327.240000pt;}
.x60_c00187{left:329.333333pt;}
.xd7_c00187{left:332.000000pt;}
.x4a_c00187{left:332.960000pt;}
.x15_c00187{left:335.040000pt;}
.x82_c00187{left:336.000000pt;}
.xf8_c00187{left:336.960000pt;}
.xc4_c00187{left:338.666667pt;}
.xa7_c00187{left:339.626667pt;}
.xdd_c00187{left:341.706667pt;}
.xb2_c00187{left:342.666667pt;}
.xb8_c00187{left:343.626667pt;}
.xf5_c00187{left:346.666667pt;}
.x61_c00187{left:347.626667pt;}
.xd0_c00187{left:348.960000pt;}
.x37_c00187{left:353.333333pt;}
.xe3_c00187{left:354.666667pt;}
.x79_c00187{left:356.000000pt;}
.x2_c00187{left:357.333333pt;}
.x8_c00187{left:358.666667pt;}
.xe9_c00187{left:360.960000pt;}
.x23_c00187{left:362.666667pt;}
.xf1_c00187{left:364.000000pt;}
.x16_c00187{left:364.960000pt;}
.xd5_c00187{left:368.000000pt;}
.x83_c00187{left:368.960000pt;}
.x32_c00187{left:370.293333pt;}
.xea_c00187{left:373.333333pt;}
.x9_c00187{left:376.000000pt;}
.xd8_c00187{left:378.666667pt;}
.xa8_c00187{left:380.000000pt;}
.xb9_c00187{left:382.293333pt;}
.x17_c00187{left:384.373333pt;}
.x8a_c00187{left:385.333333pt;}
.xf9_c00187{left:387.626667pt;}
.xbe_c00187{left:389.333333pt;}
.x30_c00187{left:390.666667pt;}
.xaa_c00187{left:392.000000pt;}
.xd1_c00187{left:392.960000pt;}
.x95_c00187{left:395.626667pt;}
.x56_c00187{left:397.706667pt;}
.x4b_c00187{left:398.666667pt;}
.x42_c00187{left:400.000000pt;}
.x62_c00187{left:402.666667pt;}
.x8b_c00187{left:404.373333pt;}
.x80_c00187{left:405.333333pt;}
.x18_c00187{left:408.000000pt;}
.x4c_c00187{left:409.706667pt;}
.x24_c00187{left:410.666667pt;}
.xeb_c00187{left:413.333333pt;}
.x69_c00187{left:414.293333pt;}
.xfa_c00187{left:416.000000pt;}
.xde_c00187{left:420.000000pt;}
.x96_c00187{left:421.706667pt;}
.x72_c00187{left:423.040000pt;}
.xec_c00187{left:428.373333pt;}
.x25_c00187{left:429.333333pt;}
.x43_c00187{left:431.040000pt;}
.xbf_c00187{left:432.000000pt;}
.x8c_c00187{left:433.333333pt;}
.xa_c00187{left:436.373333pt;}
.x6a_c00187{left:437.333333pt;}
.x38_c00187{left:441.706667pt;}
.xed_c00187{left:442.666667pt;}
.xd9_c00187{left:444.000000pt;}
.x97_c00187{left:446.293333pt;}
.x73_c00187{left:448.000000pt;}
.xb3_c00187{left:451.040000pt;}
.x26_c00187{left:452.000000pt;}
.xc5_c00187{left:453.706667pt;}
.xdf_c00187{left:455.040000pt;}
.x4d_c00187{left:457.333333pt;}
.x7a_c00187{left:459.040000pt;}
.xc9_c00187{left:460.000000pt;}
.x84_c00187{left:462.293333pt;}
.x6b_c00187{left:464.373333pt;}
.x57_c00187{left:465.333333pt;}
.x8d_c00187{left:466.293333pt;}
.x19_c00187{left:468.373333pt;}
.xd6_c00187{left:471.626667pt;}
.xb4_c00187{left:474.666667pt;}
.xe4_c00187{left:475.626667pt;}
.x58_c00187{left:478.293333pt;}
.xf6_c00187{left:481.706667pt;}
.x7b_c00187{left:482.666667pt;}
.x81_c00187{left:484.373333pt;}
.x8e_c00187{left:485.706667pt;}
.xb_c00187{left:486.666667pt;}
.x98_c00187{left:488.960000pt;}
.xe0_c00187{left:490.293333pt;}
.x63_c00187{left:492.000000pt;}
.xc6_c00187{left:492.960000pt;}
.x39_c00187{left:494.666667pt;}
.xca_c00187{left:496.000000pt;}
.x6c_c00187{left:497.706667pt;}
.x85_c00187{left:499.040000pt;}
.x74_c00187{left:501.333333pt;}
.xc0_c00187{left:506.666667pt;}
.x8f_c00187{left:512.000000pt;}
.x27_c00187{left:514.293333pt;}
.xda_c00187{left:516.000000pt;}
.xc_c00187{left:518.666667pt;}
.x4e_c00187{left:521.333333pt;}
.xf2_c00187{left:524.960000pt;}
.x3a_c00187{left:526.666667pt;}
.x28_c00187{left:528.960000pt;}
.x9c_c00187{left:532.000000pt;}
.xba_c00187{left:536.000000pt;}
.x1a_c00187{left:536.960000pt;}
.x6d_c00187{left:538.666667pt;}
.x75_c00187{left:540.373333pt;}
.xee_c00187{left:541.706667pt;}
.x99_c00187{left:544.373333pt;}
.xa3_c00187{left:546.666667pt;}
.xbb_c00187{left:548.000000pt;}
.x4f_c00187{left:552.000000pt;}
.xab_c00187{left:553.333333pt;}
.x9d_c00187{left:556.000000pt;}
.xcb_c00187{left:557.333333pt;}
.xe1_c00187{left:560.373333pt;}
.x59_c00187{left:561.333333pt;}
.xd2_c00187{left:564.373333pt;}
.x3b_c00187{left:565.333333pt;}
.xc1_c00187{left:567.040000pt;}
.x90_c00187{left:568.000000pt;}
.x44_c00187{left:569.333333pt;}
.xd_c00187{left:571.626667pt;}
.xac_c00187{left:573.706667pt;}
.x86_c00187{left:574.666667pt;}
.xcc_c00187{left:577.333333pt;}
.xfb_c00187{left:578.293333pt;}
.xb5_c00187{left:580.000000pt;}
.xa4_c00187{left:581.333333pt;}
.x50_c00187{left:583.040000pt;}
.xf3_c00187{left:584.000000pt;}
.x91_c00187{left:585.333333pt;}
.x3c_c00187{left:588.373333pt;}
.x7c_c00187{left:589.333333pt;}
.x29_c00187{left:590.666667pt;}
.x1b_c00187{left:592.373333pt;}
.x5a_c00187{left:594.666667pt;}
.xad_c00187{left:597.333333pt;}
.xe_c00187{left:598.293333pt;}
.x76_c00187{left:604.000000pt;}
.x51_c00187{left:605.333333pt;}
.xe5_c00187{left:608.960000pt;}
.xb6_c00187{left:612.000000pt;}
.x9e_c00187{left:613.333333pt;}
.x6e_c00187{left:614.666667pt;}
.xc7_c00187{left:616.373333pt;}
.xf_c00187{left:617.706667pt;}
.x5b_c00187{left:622.666667pt;}
.xcd_c00187{left:624.000000pt;}
.x1c_c00187{left:626.666667pt;}
.x9f_c00187{left:630.666667pt;}
.xd3_c00187{left:636.000000pt;}
.x87_c00187{left:637.333333pt;}
.xae_c00187{left:638.293333pt;}
.x64_c00187{left:640.000000pt;}
.xd4_c00187{left:643.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_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_4962ae0981049ad18030bb55.woff2')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:1.688965;font-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_c00188{transform:matrix(0.338574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338574,0.000000,0.000000,0.250000,0,0);}
.m5b_c00188{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.m3f_c00188{transform:matrix(0.342437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342437,0.000000,0.000000,0.250000,0,0);}
.m8b_c00188{transform:matrix(0.344709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344709,0.000000,0.000000,0.250000,0,0);}
.m59_c00188{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m9d_c00188{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m108_c00188{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m7_c00188{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mcc_c00188{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.mdc_c00188{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m102_c00188{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.md_c00188{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m48_c00188{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.me_c00188{transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);}
.m90_c00188{transform:matrix(0.384586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384586,0.000000,0.000000,0.250000,0,0);}
.mb2_c00188{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m5_c00188{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m79_c00188{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m2d_c00188{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mdf_c00188{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m12_c00188{transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);}
.m38_c00188{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.mfd_c00188{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.ma3_c00188{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.mb_c00188{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m6d_c00188{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.mbf_c00188{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m77_c00188{transform:matrix(0.401840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401840,0.000000,0.000000,0.250000,0,0);}
.m91_c00188{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m11d_c00188{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.mba_c00188{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m11e_c00188{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m6f_c00188{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m2b_c00188{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m39_c00188{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mae_c00188{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m118_c00188{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m116_c00188{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m27_c00188{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m16_c00188{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.m30_c00188{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m4f_c00188{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.ma1_c00188{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m88_c00188{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mef_c00188{transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);}
.m66_c00188{transform:matrix(0.418831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418831,0.000000,0.000000,0.250000,0,0);}
.m11b_c00188{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m6_c00188{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.md2_c00188{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.mda_c00188{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m1f_c00188{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mff_c00188{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.m85_c00188{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m84_c00188{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.md0_c00188{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m103_c00188{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m10e_c00188{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m9e_c00188{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.m3a_c00188{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.ma0_c00188{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m104_c00188{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m23_c00188{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.md7_c00188{transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);}
.m68_c00188{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m50_c00188{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.mfa_c00188{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m99_c00188{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m7d_c00188{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m120_c00188{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m20_c00188{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m2c_c00188{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m36_c00188{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m100_c00188{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m57_c00188{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m10_c00188{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.mec_c00188{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m105_c00188{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.mcd_c00188{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m2f_c00188{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.md5_c00188{transform:matrix(0.441390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441390,0.000000,0.000000,0.250000,0,0);}
.m1c_c00188{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.m9_c00188{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m73_c00188{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m10b_c00188{transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);}
.ma6_c00188{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m117_c00188{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m113_c00188{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m112_c00188{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.md4_c00188{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m26_c00188{transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);}
.m13_c00188{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.m2a_c00188{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m6e_c00188{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m72_c00188{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.mc_c00188{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.mbd_c00188{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m28_c00188{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m114_c00188{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.md9_c00188{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m42_c00188{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.med_c00188{transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);}
.mf3_c00188{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m6b_c00188{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.mf7_c00188{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m8e_c00188{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m17_c00188{transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);}
.m87_c00188{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m8_c00188{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.m1e_c00188{transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);}
.mf0_c00188{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.md8_c00188{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m11c_c00188{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m11a_c00188{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mb4_c00188{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m49_c00188{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.ma_c00188{transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);}
.m115_c00188{transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);}
.me3_c00188{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.mc7_c00188{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m43_c00188{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m8d_c00188{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m60_c00188{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mfb_c00188{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m8c_c00188{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mf4_c00188{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m1_c00188{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mf1_c00188{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mdd_c00188{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.mc1_c00188{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m78_c00188{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.me7_c00188{transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);}
.m19_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);}
.m7a_c00188{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.maa_c00188{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m126_c00188{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.md3_c00188{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m107_c00188{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m8a_c00188{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mf_c00188{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m9c_c00188{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m95_c00188{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m29_c00188{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m7f_c00188{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mc6_c00188{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m10c_c00188{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mf2_c00188{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.md1_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);}
.meb_c00188{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m11f_c00188{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m5d_c00188{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m37_c00188{transform:matrix(0.521800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521800,0.000000,0.000000,0.250000,0,0);}
.m4d_c00188{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m52_c00188{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.me5_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);}
.m5a_c00188{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m124_c00188{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.mb5_c00188{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m109_c00188{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m80_c00188{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mc8_c00188{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m64_c00188{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m81_c00188{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m2e_c00188{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m10a_c00188{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m34_c00188{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m4a_c00188{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mf5_c00188{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m46_c00188{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m98_c00188{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m40_c00188{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m14_c00188{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m4e_c00188{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m10f_c00188{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m44_c00188{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m24_c00188{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m3d_c00188{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mcb_c00188{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m51_c00188{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m31_c00188{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.mb9_c00188{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m56_c00188{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m69_c00188{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m58_c00188{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m35_c00188{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mb6_c00188{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.me1_c00188{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m55_c00188{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mbc_c00188{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m122_c00188{transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);}
.me4_c00188{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m7e_c00188{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m93_c00188{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m54_c00188{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.maf_c00188{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m41_c00188{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m1b_c00188{transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);}
.m123_c00188{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mb3_c00188{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m45_c00188{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mbe_c00188{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m47_c00188{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m18_c00188{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m5f_c00188{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m8f_c00188{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.me8_c00188{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mc9_c00188{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.mab_c00188{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.ma7_c00188{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m4b_c00188{transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);}
.m3b_c00188{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m96_c00188{transform:matrix(0.570965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570965,0.000000,0.000000,0.250000,0,0);}
.mad_c00188{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m3_c00188{transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);}
.m11_c00188{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m119_c00188{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.mdb_c00188{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.m1d_c00188{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m92_c00188{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m97_c00188{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m65_c00188{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.me6_c00188{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m3e_c00188{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mf6_c00188{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m10d_c00188{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.mb0_c00188{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mc0_c00188{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m110_c00188{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mde_c00188{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m6a_c00188{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m89_c00188{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m1a_c00188{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.mfc_c00188{transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);}
.m5c_c00188{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.m7c_c00188{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m53_c00188{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.ma5_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);}
.mb8_c00188{transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);}
.m9f_c00188{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m4_c00188{transform:matrix(0.611515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611515,0.000000,0.000000,0.250000,0,0);}
.m125_c00188{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m61_c00188{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m4c_c00188{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.md6_c00188{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.me0_c00188{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m22_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);}
.m9a_c00188{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m63_c00188{transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);}
.m0_c00188{transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);}
.mfe_c00188{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.mcf_c00188{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.ma8_c00188{transform:matrix(0.633529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633529,0.000000,0.000000,0.250000,0,0);}
.m106_c00188{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mee_c00188{transform:matrix(0.636029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636029,0.000000,0.000000,0.250000,0,0);}
.ma9_c00188{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mce_c00188{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m86_c00188{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.mea_c00188{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);}
.ma2_c00188{transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);}
.me9_c00188{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.mc5_c00188{transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);}
.m70_c00188{transform:matrix(0.662344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662344,0.000000,0.000000,0.250000,0,0);}
.m76_c00188{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m6c_c00188{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m25_c00188{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m101_c00188{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.mc2_c00188{transform:matrix(0.671324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.671324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.671324,0.000000,0.000000,0.250000,0,0);}
.mc4_c00188{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m94_c00188{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.me2_c00188{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mb1_c00188{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);}
.m74_c00188{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m71_c00188{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mf8_c00188{transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);}
.m75_c00188{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mc3_c00188{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);}
.mf9_c00188{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m127_c00188{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m82_c00188{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m67_c00188{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m15_c00188{transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);}
.m121_c00188{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m32_c00188{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m7b_c00188{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m62_c00188{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mac_c00188{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m5e_c00188{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mb7_c00188{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m9b_c00188{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.ma4_c00188{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.mbb_c00188{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m83_c00188{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m111_c00188{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m2_c00188{transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);}
.mca_c00188{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m3c_c00188{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m21_c00188{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00188{vertical-align:0.000000px;}
.v1_c00188{vertical-align:7.680000px;}
.ls1_c00188{letter-spacing:0.000000px;}
.ls0_c00188{letter-spacing:11.817600px;}
.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;}
}
.ws2_c00188{word-spacing:-9.344011px;}
.ws0_c00188{word-spacing:-9.223616px;}
.ws4_c00188{word-spacing:-6.425697px;}
.ws5_c00188{word-spacing:-5.749019px;}
.ws3_c00188{word-spacing:-3.238293px;}
.ws1_c00188{word-spacing:-1.160963px;}
.ws6_c00188{word-spacing:0.000000px;}
._0_c00188{width:12.182313px;}
.fc0_c00188{color:transparent;}
.fs6_c00188{font-size:3.420000px;}
.fs2_c00188{font-size:13.620000px;}
.fs7_c00188{font-size:18.720000px;}
.fs0_c00188{font-size:20.400000px;}
.fs5_c00188{font-size:25.500000px;}
.fs1_c00188{font-size:28.920000px;}
.fs4_c00188{font-size:32.340000px;}
.fs3_c00188{font-size:35.700000px;}
.fs8_c00188{font-size:39.120000px;}
.y0_c00188{bottom:0.000000px;}
.y3_c00188{bottom:231.195000px;}
.ye7_c00188{bottom:254.970000px;}
.ye8_c00188{bottom:255.825000px;}
.ye4_c00188{bottom:256.245000px;}
.ye5_c00188{bottom:257.130000px;}
.ye6_c00188{bottom:257.325000px;}
.ye3_c00188{bottom:258.405000px;}
.ydd_c00188{bottom:275.745000px;}
.ydf_c00188{bottom:276.630000px;}
.ye0_c00188{bottom:276.825000px;}
.ye2_c00188{bottom:277.470000px;}
.yde_c00188{bottom:277.905000px;}
.ye1_c00188{bottom:278.970000px;}
.yda_c00188{bottom:295.245000px;}
.yd8_c00188{bottom:296.745000px;}
.ydc_c00188{bottom:296.970000px;}
.yd7_c00188{bottom:297.405000px;}
.ydb_c00188{bottom:297.825000px;}
.yd9_c00188{bottom:298.905000px;}
.yd2_c00188{bottom:313.905000px;}
.yd6_c00188{bottom:315.825000px;}
.yd5_c00188{bottom:316.050000px;}
.yd4_c00188{bottom:316.245000px;}
.yd3_c00188{bottom:317.130000px;}
.yd0_c00188{bottom:317.325000px;}
.yd1_c00188{bottom:318.405000px;}
.ycd_c00188{bottom:334.470000px;}
.yca_c00188{bottom:335.745000px;}
.yce_c00188{bottom:336.405000px;}
.ycb_c00188{bottom:336.630000px;}
.ycf_c00188{bottom:337.470000px;}
.ycc_c00188{bottom:337.905000px;}
.yc8_c00188{bottom:353.970000px;}
.yc6_c00188{bottom:355.245000px;}
.yc9_c00188{bottom:356.130000px;}
.yc7_c00188{bottom:356.970000px;}
.yc5_c00188{bottom:357.405000px;}
.yc4_c00188{bottom:373.470000px;}
.yc2_c00188{bottom:373.905000px;}
.ybf_c00188{bottom:374.745000px;}
.yc3_c00188{bottom:376.470000px;}
.yc1_c00188{bottom:376.905000px;}
.yc0_c00188{bottom:376.920000px;}
.ybd_c00188{bottom:398.325000px;}
.ybe_c00188{bottom:400.695000px;}
.ybc_c00188{bottom:401.550000px;}
.yb9_c00188{bottom:413.325000px;}
.yba_c00188{bottom:413.550000px;}
.yb6_c00188{bottom:414.405000px;}
.yb8_c00188{bottom:414.630000px;}
.yb5_c00188{bottom:415.050000px;}
.ybb_c00188{bottom:415.470000px;}
.yb7_c00188{bottom:416.550000px;}
.yb4_c00188{bottom:426.825000px;}
.yae_c00188{bottom:427.905000px;}
.yb2_c00188{bottom:428.550000px;}
.yad_c00188{bottom:428.970000px;}
.yb0_c00188{bottom:429.405000px;}
.yac_c00188{bottom:429.630000px;}
.yb3_c00188{bottom:430.050000px;}
.yaf_c00188{bottom:430.470000px;}
.yb1_c00188{bottom:430.695000px;}
.ya5_c00188{bottom:442.470000px;}
.ya6_c00188{bottom:442.905000px;}
.ya9_c00188{bottom:443.325000px;}
.yab_c00188{bottom:444.405000px;}
.ya7_c00188{bottom:445.050000px;}
.yaa_c00188{bottom:445.470000px;}
.ya8_c00188{bottom:446.550000px;}
.ya2_c00188{bottom:455.970000px;}
.ya4_c00188{bottom:456.825000px;}
.ya3_c00188{bottom:458.970000px;}
.y9d_c00188{bottom:472.050000px;}
.y9f_c00188{bottom:472.905000px;}
.ya0_c00188{bottom:473.130000px;}
.y9e_c00188{bottom:473.970000px;}
.ya1_c00188{bottom:475.050000px;}
.y9c_c00188{bottom:485.970000px;}
.y9b_c00188{bottom:486.825000px;}
.y97_c00188{bottom:487.050000px;}
.y99_c00188{bottom:488.970000px;}
.y9a_c00188{bottom:489.195000px;}
.y98_c00188{bottom:490.050000px;}
.y95_c00188{bottom:500.970000px;}
.y94_c00188{bottom:501.825000px;}
.y92_c00188{bottom:502.050000px;}
.y93_c00188{bottom:503.970000px;}
.y96_c00188{bottom:505.050000px;}
.y8f_c00188{bottom:516.825000px;}
.y91_c00188{bottom:517.050000px;}
.y8d_c00188{bottom:517.905000px;}
.y8c_c00188{bottom:518.130000px;}
.y90_c00188{bottom:518.970000px;}
.y8e_c00188{bottom:520.050000px;}
.y8b_c00188{bottom:531.405000px;}
.y86_c00188{bottom:546.405000px;}
.y85_c00188{bottom:546.825000px;}
.y83_c00188{bottom:547.470000px;}
.y84_c00188{bottom:547.695000px;}
.y8a_c00188{bottom:547.905000px;}
.y88_c00188{bottom:548.130000px;}
.y87_c00188{bottom:548.550000px;}
.y89_c00188{bottom:548.970000px;}
.y80_c00188{bottom:560.325000px;}
.y81_c00188{bottom:561.405000px;}
.y7f_c00188{bottom:563.130000px;}
.y82_c00188{bottom:563.550000px;}
.y7e_c00188{bottom:584.745000px;}
.y7d_c00188{bottom:584.970000px;}
.y79_c00188{bottom:585.825000px;}
.y7a_c00188{bottom:586.245000px;}
.y78_c00188{bottom:586.905000px;}
.y77_c00188{bottom:587.130000px;}
.y7c_c00188{bottom:587.970000px;}
.y7b_c00188{bottom:588.405000px;}
.y76_c00188{bottom:605.745000px;}
.y73_c00188{bottom:606.405000px;}
.y74_c00188{bottom:607.470000px;}
.y75_c00188{bottom:607.905000px;}
.y70_c00188{bottom:623.745000px;}
.y6f_c00188{bottom:625.905000px;}
.y71_c00188{bottom:626.130000px;}
.y72_c00188{bottom:626.970000px;}
.y6e_c00188{bottom:642.405000px;}
.y6a_c00188{bottom:643.245000px;}
.y6c_c00188{bottom:644.745000px;}
.y69_c00188{bottom:645.405000px;}
.y6d_c00188{bottom:645.825000px;}
.y6b_c00188{bottom:646.905000px;}
.y66_c00188{bottom:664.245000px;}
.y67_c00188{bottom:665.550000px;}
.y68_c00188{bottom:665.970000px;}
.y64_c00188{bottom:666.405000px;}
.y65_c00188{bottom:666.630000px;}
.y5f_c00188{bottom:683.745000px;}
.y62_c00188{bottom:684.825000px;}
.y63_c00188{bottom:685.905000px;}
.y61_c00188{bottom:686.130000px;}
.y60_c00188{bottom:686.970000px;}
.y5e_c00188{bottom:702.825000px;}
.y5b_c00188{bottom:703.245000px;}
.y5d_c00188{bottom:704.130000px;}
.y5a_c00188{bottom:705.405000px;}
.y5c_c00188{bottom:706.470000px;}
.y53_c00188{bottom:721.680000px;}
.y55_c00188{bottom:722.745000px;}
.y59_c00188{bottom:723.825000px;}
.y57_c00188{bottom:724.050000px;}
.y54_c00188{bottom:724.905000px;}
.y56_c00188{bottom:725.130000px;}
.y58_c00188{bottom:725.970000px;}
.y52_c00188{bottom:742.680000px;}
.y50_c00188{bottom:743.745000px;}
.y4f_c00188{bottom:744.630000px;}
.y51_c00188{bottom:745.905000px;}
.y4d_c00188{bottom:761.970000px;}
.y4c_c00188{bottom:763.245000px;}
.y4b_c00188{bottom:764.130000px;}
.y4e_c00188{bottom:764.325000px;}
.y4a_c00188{bottom:765.405000px;}
.y46_c00188{bottom:782.745000px;}
.y48_c00188{bottom:783.630000px;}
.y49_c00188{bottom:783.825000px;}
.y47_c00188{bottom:784.470000px;}
.y45_c00188{bottom:784.905000px;}
.y44_c00188{bottom:801.180000px;}
.y3f_c00188{bottom:802.245000px;}
.y42_c00188{bottom:803.130000px;}
.y43_c00188{bottom:803.970000px;}
.y40_c00188{bottom:804.405000px;}
.y41_c00188{bottom:805.470000px;}
.y38_c00188{bottom:819.405000px;}
.y3e_c00188{bottom:821.325000px;}
.y3c_c00188{bottom:821.745000px;}
.y3b_c00188{bottom:822.630000px;}
.y3a_c00188{bottom:822.825000px;}
.y39_c00188{bottom:823.905000px;}
.y3d_c00188{bottom:824.970000px;}
.y37_c00188{bottom:841.245000px;}
.y35_c00188{bottom:842.325000px;}
.y34_c00188{bottom:842.970000px;}
.y33_c00188{bottom:843.405000px;}
.y32_c00188{bottom:843.630000px;}
.y36_c00188{bottom:844.470000px;}
.y30_c00188{bottom:860.970000px;}
.y2f_c00188{bottom:861.180000px;}
.y31_c00188{bottom:862.245000px;}
.y2d_c00188{bottom:862.905000px;}
.y2e_c00188{bottom:863.970000px;}
.y2b_c00188{bottom:879.405000px;}
.y2a_c00188{bottom:881.745000px;}
.y28_c00188{bottom:882.405000px;}
.y2c_c00188{bottom:883.905000px;}
.y29_c00188{bottom:883.920000px;}
.y25_c00188{bottom:901.245000px;}
.y24_c00188{bottom:901.905000px;}
.y27_c00188{bottom:902.970000px;}
.y26_c00188{bottom:903.405000px;}
.y22_c00188{bottom:920.745000px;}
.y1f_c00188{bottom:921.405000px;}
.y23_c00188{bottom:921.825000px;}
.y21_c00188{bottom:922.905000px;}
.y20_c00188{bottom:922.920000px;}
.y1c_c00188{bottom:939.180000px;}
.y1d_c00188{bottom:940.245000px;}
.y1a_c00188{bottom:941.130000px;}
.y1e_c00188{bottom:941.325000px;}
.y19_c00188{bottom:942.405000px;}
.y1b_c00188{bottom:942.420000px;}
.y18_c00188{bottom:958.905000px;}
.y15_c00188{bottom:959.745000px;}
.y17_c00188{bottom:960.825000px;}
.y16_c00188{bottom:961.920000px;}
.y14_c00188{bottom:979.245000px;}
.yf_c00188{bottom:998.745000px;}
.y13_c00188{bottom:999.825000px;}
.y11_c00188{bottom:1000.905000px;}
.y10_c00188{bottom:1000.920000px;}
.y12_c00188{bottom:1001.970000px;}
.yd_c00188{bottom:1022.325000px;}
.ye_c00188{bottom:1022.550000px;}
.ya_c00188{bottom:1023.405000px;}
.yb_c00188{bottom:1024.470000px;}
.yc_c00188{bottom:1025.550000px;}
.y7_c00188{bottom:1040.325000px;}
.y9_c00188{bottom:1040.550000px;}
.y6_c00188{bottom:1041.405000px;}
.y8_c00188{bottom:1042.470000px;}
.y5_c00188{bottom:1064.745000px;}
.y4_c00188{bottom:1066.905000px;}
.y2_c00188{bottom:1102.905000px;}
.y1_c00188{bottom:1105.050000px;}
.h7_c00188{height:4.206533px;}
.h3_c00188{height:16.752334px;}
.h8_c00188{height:23.025234px;}
.h1_c00188{height:25.091602px;}
.h6_c00188{height:31.364502px;}
.h2_c00188{height:35.571035px;}
.ha_c00188{height:39.044502px;}
.h5_c00188{height:39.777568px;}
.h4_c00188{height:43.910303px;}
.h9_c00188{height:48.116836px;}
.h0_c00188{height:1335.000000px;}
.w0_c00188{width:880.500000px;}
.x0_c00188{left:0.000000px;}
.x43_c00188{left:151.500000px;}
.x2a_c00188{left:152.580000px;}
.xe1_c00188{left:154.920000px;}
.x9_c00188{left:162.000000px;}
.x16_c00188{left:164.145000px;}
.x21_c00188{left:166.920000px;}
.x30_c00188{left:168.000000px;}
.xee_c00188{left:169.080000px;}
.x44_c00188{left:171.000000px;}
.x103_c00188{left:177.000000px;}
.x5a_c00188{left:180.420000px;}
.xab_c00188{left:181.920000px;}
.xc5_c00188{left:183.420000px;}
.xd1_c00188{left:184.500000px;}
.x53_c00188{left:186.420000px;}
.x78_c00188{left:188.580000px;}
.x92_c00188{left:193.920000px;}
.x64_c00188{left:195.420000px;}
.xe2_c00188{left:199.500000px;}
.x7e_c00188{left:200.580000px;}
.x9f_c00188{left:204.000000px;}
.xfd_c00188{left:205.500000px;}
.x22_c00188{left:208.920000px;}
.xf3_c00188{left:210.420000px;}
.xb3_c00188{left:214.920000px;}
.x97_c00188{left:216.000000px;}
.xac_c00188{left:219.000000px;}
.x54_c00188{left:220.500000px;}
.xa_c00188{left:224.580000px;}
.xe3_c00188{left:226.080000px;}
.xec_c00188{left:229.500000px;}
.xdc_c00188{left:230.580000px;}
.x8a_c00188{left:234.420000px;}
.x65_c00188{left:235.500000px;}
.x6f_c00188{left:237.000000px;}
.x93_c00188{left:238.080000px;}
.x45_c00188{left:240.000000px;}
.x17_c00188{left:241.080000px;}
.xc0_c00188{left:243.000000px;}
.xb_c00188{left:244.500000px;}
.x31_c00188{left:246.000000px;}
.x4b_c00188{left:249.000000px;}
.xb4_c00188{left:250.920000px;}
.xe7_c00188{left:252.000000px;}
.xd6_c00188{left:255.000000px;}
.x2b_c00188{left:256.500000px;}
.xdd_c00188{left:258.000000px;}
.x3a_c00188{left:259.500000px;}
.x4_c00188{left:260.580000px;}
.xa0_c00188{left:262.500000px;}
.x79_c00188{left:264.000000px;}
.x5b_c00188{left:265.500000px;}
.x23_c00188{left:267.000000px;}
.x4c_c00188{left:268.080000px;}
.xe4_c00188{left:270.000000px;}
.x46_c00188{left:271.500000px;}
.x7f_c00188{left:273.420000px;}
.xed_c00188{left:277.080000px;}
.x2c_c00188{left:279.000000px;}
.x3b_c00188{left:280.080000px;}
.xad_c00188{left:282.000000px;}
.x70_c00188{left:283.080000px;}
.xb9_c00188{left:285.000000px;}
.x24_c00188{left:288.000000px;}
.x98_c00188{left:292.500000px;}
.x32_c00188{left:294.000000px;}
.x5c_c00188{left:295.500000px;}
.xa1_c00188{left:296.580000px;}
.xd2_c00188{left:300.000000px;}
.x55_c00188{left:301.920000px;}
.x18_c00188{left:303.000000px;}
.x71_c00188{left:304.500000px;}
.xe8_c00188{left:306.000000px;}
.x85_c00188{left:307.500000px;}
.x5d_c00188{left:309.000000px;}
.x80_c00188{left:312.000000px;}
.x33_c00188{left:313.080000px;}
.xae_c00188{left:314.580000px;}
.xa2_c00188{left:316.500000px;}
.x72_c00188{left:318.000000px;}
.x66_c00188{left:319.920000px;}
.x19_c00188{left:321.420000px;}
.xf4_c00188{left:324.000000px;}
.x3c_c00188{left:325.500000px;}
.xc_c00188{left:327.420000px;}
.x81_c00188{left:331.500000px;}
.xb5_c00188{left:333.000000px;}
.xef_c00188{left:334.080000px;}
.x99_c00188{left:335.580000px;}
.xc1_c00188{left:337.500000px;}
.x34_c00188{left:338.580000px;}
.xfe_c00188{left:340.080000px;}
.x2d_c00188{left:341.775000px;}
.xd3_c00188{left:343.080000px;}
.xc8_c00188{left:344.580000px;}
.x5_c00188{left:346.500000px;}
.x5e_c00188{left:348.000000px;}
.x73_c00188{left:349.500000px;}
.x7a_c00188{left:351.000000px;}
.xf0_c00188{left:355.920000px;}
.xba_c00188{left:357.420000px;}
.x8b_c00188{left:360.000000px;}
.x104_c00188{left:361.500000px;}
.x4d_c00188{left:363.000000px;}
.xd4_c00188{left:370.080000px;}
.x86_c00188{left:372.000000px;}
.xc2_c00188{left:373.080000px;}
.xf8_c00188{left:375.000000px;}
.x74_c00188{left:379.080000px;}
.x2e_c00188{left:380.580000px;}
.x1a_c00188{left:382.920000px;}
.xcc_c00188{left:386.580000px;}
.x3d_c00188{left:388.500000px;}
.xa3_c00188{left:389.580000px;}
.x67_c00188{left:393.420000px;}
.xbb_c00188{left:395.580000px;}
.x1_c00188{left:399.000000px;}
.xd_c00188{left:403.080000px;}
.x25_c00188{left:405.645000px;}
.xde_c00188{left:409.080000px;}
.xd5_c00188{left:414.000000px;}
.xff_c00188{left:415.080000px;}
.x1b_c00188{left:417.000000px;}
.xa4_c00188{left:418.500000px;}
.x9a_c00188{left:421.500000px;}
.x4e_c00188{left:423.420000px;}
.x56_c00188{left:424.500000px;}
.x94_c00188{left:427.500000px;}
.xe_c00188{left:430.080000px;}
.x82_c00188{left:432.000000px;}
.x3e_c00188{left:433.080000px;}
.x100_c00188{left:435.420000px;}
.x8c_c00188{left:436.920000px;}
.xe9_c00188{left:439.500000px;}
.xe5_c00188{left:441.000000px;}
.x5f_c00188{left:442.500000px;}
.xc9_c00188{left:445.500000px;}
.xf9_c00188{left:447.000000px;}
.x35_c00188{left:449.580000px;}
.x1c_c00188{left:451.500000px;}
.x9b_c00188{left:453.000000px;}
.xc3_c00188{left:454.500000px;}
.xbc_c00188{left:456.000000px;}
.x68_c00188{left:457.500000px;}
.x83_c00188{left:459.000000px;}
.x4f_c00188{left:460.500000px;}
.x101_c00188{left:462.000000px;}
.x60_c00188{left:463.500000px;}
.xb6_c00188{left:464.580000px;}
.x2f_c00188{left:466.275000px;}
.xd7_c00188{left:468.000000px;}
.x8d_c00188{left:469.920000px;}
.x75_c00188{left:472.500000px;}
.xcd_c00188{left:473.580000px;}
.xf_c00188{left:475.080000px;}
.xa5_c00188{left:477.000000px;}
.x57_c00188{left:482.580000px;}
.x1d_c00188{left:484.500000px;}
.xe6_c00188{left:486.000000px;}
.xdf_c00188{left:487.500000px;}
.xca_c00188{left:489.000000px;}
.x69_c00188{left:490.500000px;}
.x3f_c00188{left:491.580000px;}
.x6_c00188{left:494.580000px;}
.x61_c00188{left:497.580000px;}
.x7b_c00188{left:499.500000px;}
.x50_c00188{left:500.580000px;}
.x10_c00188{left:502.080000px;}
.x26_c00188{left:504.420000px;}
.xd8_c00188{left:506.580000px;}
.x6a_c00188{left:508.500000px;}
.x9c_c00188{left:510.000000px;}
.xea_c00188{left:511.500000px;}
.x36_c00188{left:513.000000px;}
.xa6_c00188{left:514.500000px;}
.x102_c00188{left:516.000000px;}
.xfa_c00188{left:519.000000px;}
.x7_c00188{left:520.500000px;}
.xc6_c00188{left:522.000000px;}
.xd9_c00188{left:523.500000px;}
.x47_c00188{left:524.580000px;}
.xf5_c00188{left:526.920000px;}
.x58_c00188{left:529.080000px;}
.x105_c00188{left:532.500000px;}
.x8e_c00188{left:534.000000px;}
.x6b_c00188{left:538.500000px;}
.xbd_c00188{left:541.920000px;}
.x37_c00188{left:547.080000px;}
.x76_c00188{left:549.000000px;}
.x1e_c00188{left:551.145000px;}
.x11_c00188{left:556.080000px;}
.x51_c00188{left:559.080000px;}
.x9d_c00188{left:561.000000px;}
.x8f_c00188{left:562.080000px;}
.x95_c00188{left:564.000000px;}
.xaf_c00188{left:567.420000px;}
.x48_c00188{left:570.000000px;}
.x38_c00188{left:572.580000px;}
.xa7_c00188{left:576.420000px;}
.x27_c00188{left:578.580000px;}
.xf6_c00188{left:580.500000px;}
.x12_c00188{left:582.000000px;}
.x87_c00188{left:583.920000px;}
.x62_c00188{left:585.000000px;}
.xb0_c00188{left:587.580000px;}
.xf1_c00188{left:589.080000px;}
.x7c_c00188{left:591.000000px;}
.x8_c00188{left:592.275000px;}
.x1f_c00188{left:593.355000px;}
.xc4_c00188{left:595.920000px;}
.xce_c00188{left:600.420000px;}
.x77_c00188{left:601.500000px;}
.xbe_c00188{left:603.420000px;}
.x63_c00188{left:604.920000px;}
.x40_c00188{left:610.080000px;}
.x20_c00188{left:615.420000px;}
.xfb_c00188{left:616.500000px;}
.x9e_c00188{left:617.580000px;}
.x88_c00188{left:621.000000px;}
.x90_c00188{left:622.500000px;}
.x52_c00188{left:624.000000px;}
.x7d_c00188{left:626.580000px;}
.x6c_c00188{left:628.500000px;}
.x96_c00188{left:631.500000px;}
.x49_c00188{left:632.580000px;}
.xcf_c00188{left:636.000000px;}
.xa8_c00188{left:637.080000px;}
.x13_c00188{left:640.500000px;}
.x41_c00188{left:642.420000px;}
.xb1_c00188{left:643.500000px;}
.x89_c00188{left:645.000000px;}
.xf2_c00188{left:646.080000px;}
.x28_c00188{left:652.500000px;}
.xc7_c00188{left:654.645000px;}
.xda_c00188{left:657.000000px;}
.x6d_c00188{left:658.500000px;}
.x14_c00188{left:660.420000px;}
.xf7_c00188{left:663.420000px;}
.x4a_c00188{left:664.500000px;}
.x39_c00188{left:665.580000px;}
.xb7_c00188{left:667.920000px;}
.xa9_c00188{left:669.420000px;}
.xcb_c00188{left:672.000000px;}
.x29_c00188{left:674.580000px;}
.x6e_c00188{left:676.080000px;}
.x15_c00188{left:679.080000px;}
.xe0_c00188{left:680.580000px;}
.xfc_c00188{left:685.500000px;}
.x84_c00188{left:688.500000px;}
.xdb_c00188{left:691.080000px;}
.xd0_c00188{left:693.000000px;}
.xb2_c00188{left:694.275000px;}
.x59_c00188{left:698.580000px;}
.x42_c00188{left:701.580000px;}
.x2_c00188{left:705.420000px;}
.xeb_c00188{left:706.500000px;}
.x91_c00188{left:708.420000px;}
.x106_c00188{left:711.000000px;}
.xaa_c00188{left:715.500000px;}
.xb8_c00188{left:716.580000px;}
.xbf_c00188{left:718.500000px;}
.x3_c00188{left:722.580000px;}
@media print{
.v0_c00188{vertical-align:0.000000pt;}
.v1_c00188{vertical-align:6.826667pt;}
.ls1_c00188{letter-spacing:0.000000pt;}
.ls0_c00188{letter-spacing:10.504533pt;}
.ws2_c00188{word-spacing:-8.305788pt;}
.ws0_c00188{word-spacing:-8.198770pt;}
.ws4_c00188{word-spacing:-5.711730pt;}
.ws5_c00188{word-spacing:-5.110239pt;}
.ws3_c00188{word-spacing:-2.878483pt;}
.ws1_c00188{word-spacing:-1.031967pt;}
.ws6_c00188{word-spacing:0.000000pt;}
._0_c00188{width:10.828723pt;}
.fs6_c00188{font-size:3.040000pt;}
.fs2_c00188{font-size:12.106667pt;}
.fs7_c00188{font-size:16.640000pt;}
.fs0_c00188{font-size:18.133333pt;}
.fs5_c00188{font-size:22.666667pt;}
.fs1_c00188{font-size:25.706667pt;}
.fs4_c00188{font-size:28.746667pt;}
.fs3_c00188{font-size:31.733333pt;}
.fs8_c00188{font-size:34.773333pt;}
.y0_c00188{bottom:0.000000pt;}
.y3_c00188{bottom:205.506667pt;}
.ye7_c00188{bottom:226.640000pt;}
.ye8_c00188{bottom:227.400000pt;}
.ye4_c00188{bottom:227.773333pt;}
.ye5_c00188{bottom:228.560000pt;}
.ye6_c00188{bottom:228.733333pt;}
.ye3_c00188{bottom:229.693333pt;}
.ydd_c00188{bottom:245.106667pt;}
.ydf_c00188{bottom:245.893333pt;}
.ye0_c00188{bottom:246.066667pt;}
.ye2_c00188{bottom:246.640000pt;}
.yde_c00188{bottom:247.026667pt;}
.ye1_c00188{bottom:247.973333pt;}
.yda_c00188{bottom:262.440000pt;}
.yd8_c00188{bottom:263.773333pt;}
.ydc_c00188{bottom:263.973333pt;}
.yd7_c00188{bottom:264.360000pt;}
.ydb_c00188{bottom:264.733333pt;}
.yd9_c00188{bottom:265.693333pt;}
.yd2_c00188{bottom:279.026667pt;}
.yd6_c00188{bottom:280.733333pt;}
.yd5_c00188{bottom:280.933333pt;}
.yd4_c00188{bottom:281.106667pt;}
.yd3_c00188{bottom:281.893333pt;}
.yd0_c00188{bottom:282.066667pt;}
.yd1_c00188{bottom:283.026667pt;}
.ycd_c00188{bottom:297.306667pt;}
.yca_c00188{bottom:298.440000pt;}
.yce_c00188{bottom:299.026667pt;}
.ycb_c00188{bottom:299.226667pt;}
.ycf_c00188{bottom:299.973333pt;}
.ycc_c00188{bottom:300.360000pt;}
.yc8_c00188{bottom:314.640000pt;}
.yc6_c00188{bottom:315.773333pt;}
.yc9_c00188{bottom:316.560000pt;}
.yc7_c00188{bottom:317.306667pt;}
.yc5_c00188{bottom:317.693333pt;}
.yc4_c00188{bottom:331.973333pt;}
.yc2_c00188{bottom:332.360000pt;}
.ybf_c00188{bottom:333.106667pt;}
.yc3_c00188{bottom:334.640000pt;}
.yc1_c00188{bottom:335.026667pt;}
.yc0_c00188{bottom:335.040000pt;}
.ybd_c00188{bottom:354.066667pt;}
.ybe_c00188{bottom:356.173333pt;}
.ybc_c00188{bottom:356.933333pt;}
.yb9_c00188{bottom:367.400000pt;}
.yba_c00188{bottom:367.600000pt;}
.yb6_c00188{bottom:368.360000pt;}
.yb8_c00188{bottom:368.560000pt;}
.yb5_c00188{bottom:368.933333pt;}
.ybb_c00188{bottom:369.306667pt;}
.yb7_c00188{bottom:370.266667pt;}
.yb4_c00188{bottom:379.400000pt;}
.yae_c00188{bottom:380.360000pt;}
.yb2_c00188{bottom:380.933333pt;}
.yad_c00188{bottom:381.306667pt;}
.yb0_c00188{bottom:381.693333pt;}
.yac_c00188{bottom:381.893333pt;}
.yb3_c00188{bottom:382.266667pt;}
.yaf_c00188{bottom:382.640000pt;}
.yb1_c00188{bottom:382.840000pt;}
.ya5_c00188{bottom:393.306667pt;}
.ya6_c00188{bottom:393.693333pt;}
.ya9_c00188{bottom:394.066667pt;}
.yab_c00188{bottom:395.026667pt;}
.ya7_c00188{bottom:395.600000pt;}
.yaa_c00188{bottom:395.973333pt;}
.ya8_c00188{bottom:396.933333pt;}
.ya2_c00188{bottom:405.306667pt;}
.ya4_c00188{bottom:406.066667pt;}
.ya3_c00188{bottom:407.973333pt;}
.y9d_c00188{bottom:419.600000pt;}
.y9f_c00188{bottom:420.360000pt;}
.ya0_c00188{bottom:420.560000pt;}
.y9e_c00188{bottom:421.306667pt;}
.ya1_c00188{bottom:422.266667pt;}
.y9c_c00188{bottom:431.973333pt;}
.y9b_c00188{bottom:432.733333pt;}
.y97_c00188{bottom:432.933333pt;}
.y99_c00188{bottom:434.640000pt;}
.y9a_c00188{bottom:434.840000pt;}
.y98_c00188{bottom:435.600000pt;}
.y95_c00188{bottom:445.306667pt;}
.y94_c00188{bottom:446.066667pt;}
.y92_c00188{bottom:446.266667pt;}
.y93_c00188{bottom:447.973333pt;}
.y96_c00188{bottom:448.933333pt;}
.y8f_c00188{bottom:459.400000pt;}
.y91_c00188{bottom:459.600000pt;}
.y8d_c00188{bottom:460.360000pt;}
.y8c_c00188{bottom:460.560000pt;}
.y90_c00188{bottom:461.306667pt;}
.y8e_c00188{bottom:462.266667pt;}
.y8b_c00188{bottom:472.360000pt;}
.y86_c00188{bottom:485.693333pt;}
.y85_c00188{bottom:486.066667pt;}
.y83_c00188{bottom:486.640000pt;}
.y84_c00188{bottom:486.840000pt;}
.y8a_c00188{bottom:487.026667pt;}
.y88_c00188{bottom:487.226667pt;}
.y87_c00188{bottom:487.600000pt;}
.y89_c00188{bottom:487.973333pt;}
.y80_c00188{bottom:498.066667pt;}
.y81_c00188{bottom:499.026667pt;}
.y7f_c00188{bottom:500.560000pt;}
.y82_c00188{bottom:500.933333pt;}
.y7e_c00188{bottom:519.773333pt;}
.y7d_c00188{bottom:519.973333pt;}
.y79_c00188{bottom:520.733333pt;}
.y7a_c00188{bottom:521.106667pt;}
.y78_c00188{bottom:521.693333pt;}
.y77_c00188{bottom:521.893333pt;}
.y7c_c00188{bottom:522.640000pt;}
.y7b_c00188{bottom:523.026667pt;}
.y76_c00188{bottom:538.440000pt;}
.y73_c00188{bottom:539.026667pt;}
.y74_c00188{bottom:539.973333pt;}
.y75_c00188{bottom:540.360000pt;}
.y70_c00188{bottom:554.440000pt;}
.y6f_c00188{bottom:556.360000pt;}
.y71_c00188{bottom:556.560000pt;}
.y72_c00188{bottom:557.306667pt;}
.y6e_c00188{bottom:571.026667pt;}
.y6a_c00188{bottom:571.773333pt;}
.y6c_c00188{bottom:573.106667pt;}
.y69_c00188{bottom:573.693333pt;}
.y6d_c00188{bottom:574.066667pt;}
.y6b_c00188{bottom:575.026667pt;}
.y66_c00188{bottom:590.440000pt;}
.y67_c00188{bottom:591.600000pt;}
.y68_c00188{bottom:591.973333pt;}
.y64_c00188{bottom:592.360000pt;}
.y65_c00188{bottom:592.560000pt;}
.y5f_c00188{bottom:607.773333pt;}
.y62_c00188{bottom:608.733333pt;}
.y63_c00188{bottom:609.693333pt;}
.y61_c00188{bottom:609.893333pt;}
.y60_c00188{bottom:610.640000pt;}
.y5e_c00188{bottom:624.733333pt;}
.y5b_c00188{bottom:625.106667pt;}
.y5d_c00188{bottom:625.893333pt;}
.y5a_c00188{bottom:627.026667pt;}
.y5c_c00188{bottom:627.973333pt;}
.y53_c00188{bottom:641.493333pt;}
.y55_c00188{bottom:642.440000pt;}
.y59_c00188{bottom:643.400000pt;}
.y57_c00188{bottom:643.600000pt;}
.y54_c00188{bottom:644.360000pt;}
.y56_c00188{bottom:644.560000pt;}
.y58_c00188{bottom:645.306667pt;}
.y52_c00188{bottom:660.160000pt;}
.y50_c00188{bottom:661.106667pt;}
.y4f_c00188{bottom:661.893333pt;}
.y51_c00188{bottom:663.026667pt;}
.y4d_c00188{bottom:677.306667pt;}
.y4c_c00188{bottom:678.440000pt;}
.y4b_c00188{bottom:679.226667pt;}
.y4e_c00188{bottom:679.400000pt;}
.y4a_c00188{bottom:680.360000pt;}
.y46_c00188{bottom:695.773333pt;}
.y48_c00188{bottom:696.560000pt;}
.y49_c00188{bottom:696.733333pt;}
.y47_c00188{bottom:697.306667pt;}
.y45_c00188{bottom:697.693333pt;}
.y44_c00188{bottom:712.160000pt;}
.y3f_c00188{bottom:713.106667pt;}
.y42_c00188{bottom:713.893333pt;}
.y43_c00188{bottom:714.640000pt;}
.y40_c00188{bottom:715.026667pt;}
.y41_c00188{bottom:715.973333pt;}
.y38_c00188{bottom:728.360000pt;}
.y3e_c00188{bottom:730.066667pt;}
.y3c_c00188{bottom:730.440000pt;}
.y3b_c00188{bottom:731.226667pt;}
.y3a_c00188{bottom:731.400000pt;}
.y39_c00188{bottom:732.360000pt;}
.y3d_c00188{bottom:733.306667pt;}
.y37_c00188{bottom:747.773333pt;}
.y35_c00188{bottom:748.733333pt;}
.y34_c00188{bottom:749.306667pt;}
.y33_c00188{bottom:749.693333pt;}
.y32_c00188{bottom:749.893333pt;}
.y36_c00188{bottom:750.640000pt;}
.y30_c00188{bottom:765.306667pt;}
.y2f_c00188{bottom:765.493333pt;}
.y31_c00188{bottom:766.440000pt;}
.y2d_c00188{bottom:767.026667pt;}
.y2e_c00188{bottom:767.973333pt;}
.y2b_c00188{bottom:781.693333pt;}
.y2a_c00188{bottom:783.773333pt;}
.y28_c00188{bottom:784.360000pt;}
.y2c_c00188{bottom:785.693333pt;}
.y29_c00188{bottom:785.706667pt;}
.y25_c00188{bottom:801.106667pt;}
.y24_c00188{bottom:801.693333pt;}
.y27_c00188{bottom:802.640000pt;}
.y26_c00188{bottom:803.026667pt;}
.y22_c00188{bottom:818.440000pt;}
.y1f_c00188{bottom:819.026667pt;}
.y23_c00188{bottom:819.400000pt;}
.y21_c00188{bottom:820.360000pt;}
.y20_c00188{bottom:820.373333pt;}
.y1c_c00188{bottom:834.826667pt;}
.y1d_c00188{bottom:835.773333pt;}
.y1a_c00188{bottom:836.560000pt;}
.y1e_c00188{bottom:836.733333pt;}
.y19_c00188{bottom:837.693333pt;}
.y1b_c00188{bottom:837.706667pt;}
.y18_c00188{bottom:852.360000pt;}
.y15_c00188{bottom:853.106667pt;}
.y17_c00188{bottom:854.066667pt;}
.y16_c00188{bottom:855.040000pt;}
.y14_c00188{bottom:870.440000pt;}
.yf_c00188{bottom:887.773333pt;}
.y13_c00188{bottom:888.733333pt;}
.y11_c00188{bottom:889.693333pt;}
.y10_c00188{bottom:889.706667pt;}
.y12_c00188{bottom:890.640000pt;}
.yd_c00188{bottom:908.733333pt;}
.ye_c00188{bottom:908.933333pt;}
.ya_c00188{bottom:909.693333pt;}
.yb_c00188{bottom:910.640000pt;}
.yc_c00188{bottom:911.600000pt;}
.y7_c00188{bottom:924.733333pt;}
.y9_c00188{bottom:924.933333pt;}
.y6_c00188{bottom:925.693333pt;}
.y8_c00188{bottom:926.640000pt;}
.y5_c00188{bottom:946.440000pt;}
.y4_c00188{bottom:948.360000pt;}
.y2_c00188{bottom:980.360000pt;}
.y1_c00188{bottom:982.266667pt;}
.h7_c00188{height:3.739141pt;}
.h3_c00188{height:14.890964pt;}
.h8_c00188{height:20.466875pt;}
.h1_c00188{height:22.303646pt;}
.h6_c00188{height:27.879557pt;}
.h2_c00188{height:31.618698pt;}
.ha_c00188{height:34.706224pt;}
.h5_c00188{height:35.357839pt;}
.h4_c00188{height:39.031380pt;}
.h9_c00188{height:42.770521pt;}
.h0_c00188{height:1186.666667pt;}
.w0_c00188{width:782.666667pt;}
.x0_c00188{left:0.000000pt;}
.x43_c00188{left:134.666667pt;}
.x2a_c00188{left:135.626667pt;}
.xe1_c00188{left:137.706667pt;}
.x9_c00188{left:144.000000pt;}
.x16_c00188{left:145.906667pt;}
.x21_c00188{left:148.373333pt;}
.x30_c00188{left:149.333333pt;}
.xee_c00188{left:150.293333pt;}
.x44_c00188{left:152.000000pt;}
.x103_c00188{left:157.333333pt;}
.x5a_c00188{left:160.373333pt;}
.xab_c00188{left:161.706667pt;}
.xc5_c00188{left:163.040000pt;}
.xd1_c00188{left:164.000000pt;}
.x53_c00188{left:165.706667pt;}
.x78_c00188{left:167.626667pt;}
.x92_c00188{left:172.373333pt;}
.x64_c00188{left:173.706667pt;}
.xe2_c00188{left:177.333333pt;}
.x7e_c00188{left:178.293333pt;}
.x9f_c00188{left:181.333333pt;}
.xfd_c00188{left:182.666667pt;}
.x22_c00188{left:185.706667pt;}
.xf3_c00188{left:187.040000pt;}
.xb3_c00188{left:191.040000pt;}
.x97_c00188{left:192.000000pt;}
.xac_c00188{left:194.666667pt;}
.x54_c00188{left:196.000000pt;}
.xa_c00188{left:199.626667pt;}
.xe3_c00188{left:200.960000pt;}
.xec_c00188{left:204.000000pt;}
.xdc_c00188{left:204.960000pt;}
.x8a_c00188{left:208.373333pt;}
.x65_c00188{left:209.333333pt;}
.x6f_c00188{left:210.666667pt;}
.x93_c00188{left:211.626667pt;}
.x45_c00188{left:213.333333pt;}
.x17_c00188{left:214.293333pt;}
.xc0_c00188{left:216.000000pt;}
.xb_c00188{left:217.333333pt;}
.x31_c00188{left:218.666667pt;}
.x4b_c00188{left:221.333333pt;}
.xb4_c00188{left:223.040000pt;}
.xe7_c00188{left:224.000000pt;}
.xd6_c00188{left:226.666667pt;}
.x2b_c00188{left:228.000000pt;}
.xdd_c00188{left:229.333333pt;}
.x3a_c00188{left:230.666667pt;}
.x4_c00188{left:231.626667pt;}
.xa0_c00188{left:233.333333pt;}
.x79_c00188{left:234.666667pt;}
.x5b_c00188{left:236.000000pt;}
.x23_c00188{left:237.333333pt;}
.x4c_c00188{left:238.293333pt;}
.xe4_c00188{left:240.000000pt;}
.x46_c00188{left:241.333333pt;}
.x7f_c00188{left:243.040000pt;}
.xed_c00188{left:246.293333pt;}
.x2c_c00188{left:248.000000pt;}
.x3b_c00188{left:248.960000pt;}
.xad_c00188{left:250.666667pt;}
.x70_c00188{left:251.626667pt;}
.xb9_c00188{left:253.333333pt;}
.x24_c00188{left:256.000000pt;}
.x98_c00188{left:260.000000pt;}
.x32_c00188{left:261.333333pt;}
.x5c_c00188{left:262.666667pt;}
.xa1_c00188{left:263.626667pt;}
.xd2_c00188{left:266.666667pt;}
.x55_c00188{left:268.373333pt;}
.x18_c00188{left:269.333333pt;}
.x71_c00188{left:270.666667pt;}
.xe8_c00188{left:272.000000pt;}
.x85_c00188{left:273.333333pt;}
.x5d_c00188{left:274.666667pt;}
.x80_c00188{left:277.333333pt;}
.x33_c00188{left:278.293333pt;}
.xae_c00188{left:279.626667pt;}
.xa2_c00188{left:281.333333pt;}
.x72_c00188{left:282.666667pt;}
.x66_c00188{left:284.373333pt;}
.x19_c00188{left:285.706667pt;}
.xf4_c00188{left:288.000000pt;}
.x3c_c00188{left:289.333333pt;}
.xc_c00188{left:291.040000pt;}
.x81_c00188{left:294.666667pt;}
.xb5_c00188{left:296.000000pt;}
.xef_c00188{left:296.960000pt;}
.x99_c00188{left:298.293333pt;}
.xc1_c00188{left:300.000000pt;}
.x34_c00188{left:300.960000pt;}
.xfe_c00188{left:302.293333pt;}
.x2d_c00188{left:303.800000pt;}
.xd3_c00188{left:304.960000pt;}
.xc8_c00188{left:306.293333pt;}
.x5_c00188{left:308.000000pt;}
.x5e_c00188{left:309.333333pt;}
.x73_c00188{left:310.666667pt;}
.x7a_c00188{left:312.000000pt;}
.xf0_c00188{left:316.373333pt;}
.xba_c00188{left:317.706667pt;}
.x8b_c00188{left:320.000000pt;}
.x104_c00188{left:321.333333pt;}
.x4d_c00188{left:322.666667pt;}
.xd4_c00188{left:328.960000pt;}
.x86_c00188{left:330.666667pt;}
.xc2_c00188{left:331.626667pt;}
.xf8_c00188{left:333.333333pt;}
.x74_c00188{left:336.960000pt;}
.x2e_c00188{left:338.293333pt;}
.x1a_c00188{left:340.373333pt;}
.xcc_c00188{left:343.626667pt;}
.x3d_c00188{left:345.333333pt;}
.xa3_c00188{left:346.293333pt;}
.x67_c00188{left:349.706667pt;}
.xbb_c00188{left:351.626667pt;}
.x1_c00188{left:354.666667pt;}
.xd_c00188{left:358.293333pt;}
.x25_c00188{left:360.573333pt;}
.xde_c00188{left:363.626667pt;}
.xd5_c00188{left:368.000000pt;}
.xff_c00188{left:368.960000pt;}
.x1b_c00188{left:370.666667pt;}
.xa4_c00188{left:372.000000pt;}
.x9a_c00188{left:374.666667pt;}
.x4e_c00188{left:376.373333pt;}
.x56_c00188{left:377.333333pt;}
.x94_c00188{left:380.000000pt;}
.xe_c00188{left:382.293333pt;}
.x82_c00188{left:384.000000pt;}
.x3e_c00188{left:384.960000pt;}
.x100_c00188{left:387.040000pt;}
.x8c_c00188{left:388.373333pt;}
.xe9_c00188{left:390.666667pt;}
.xe5_c00188{left:392.000000pt;}
.x5f_c00188{left:393.333333pt;}
.xc9_c00188{left:396.000000pt;}
.xf9_c00188{left:397.333333pt;}
.x35_c00188{left:399.626667pt;}
.x1c_c00188{left:401.333333pt;}
.x9b_c00188{left:402.666667pt;}
.xc3_c00188{left:404.000000pt;}
.xbc_c00188{left:405.333333pt;}
.x68_c00188{left:406.666667pt;}
.x83_c00188{left:408.000000pt;}
.x4f_c00188{left:409.333333pt;}
.x101_c00188{left:410.666667pt;}
.x60_c00188{left:412.000000pt;}
.xb6_c00188{left:412.960000pt;}
.x2f_c00188{left:414.466667pt;}
.xd7_c00188{left:416.000000pt;}
.x8d_c00188{left:417.706667pt;}
.x75_c00188{left:420.000000pt;}
.xcd_c00188{left:420.960000pt;}
.xf_c00188{left:422.293333pt;}
.xa5_c00188{left:424.000000pt;}
.x57_c00188{left:428.960000pt;}
.x1d_c00188{left:430.666667pt;}
.xe6_c00188{left:432.000000pt;}
.xdf_c00188{left:433.333333pt;}
.xca_c00188{left:434.666667pt;}
.x69_c00188{left:436.000000pt;}
.x3f_c00188{left:436.960000pt;}
.x6_c00188{left:439.626667pt;}
.x61_c00188{left:442.293333pt;}
.x7b_c00188{left:444.000000pt;}
.x50_c00188{left:444.960000pt;}
.x10_c00188{left:446.293333pt;}
.x26_c00188{left:448.373333pt;}
.xd8_c00188{left:450.293333pt;}
.x6a_c00188{left:452.000000pt;}
.x9c_c00188{left:453.333333pt;}
.xea_c00188{left:454.666667pt;}
.x36_c00188{left:456.000000pt;}
.xa6_c00188{left:457.333333pt;}
.x102_c00188{left:458.666667pt;}
.xfa_c00188{left:461.333333pt;}
.x7_c00188{left:462.666667pt;}
.xc6_c00188{left:464.000000pt;}
.xd9_c00188{left:465.333333pt;}
.x47_c00188{left:466.293333pt;}
.xf5_c00188{left:468.373333pt;}
.x58_c00188{left:470.293333pt;}
.x105_c00188{left:473.333333pt;}
.x8e_c00188{left:474.666667pt;}
.x6b_c00188{left:478.666667pt;}
.xbd_c00188{left:481.706667pt;}
.x37_c00188{left:486.293333pt;}
.x76_c00188{left:488.000000pt;}
.x1e_c00188{left:489.906667pt;}
.x11_c00188{left:494.293333pt;}
.x51_c00188{left:496.960000pt;}
.x9d_c00188{left:498.666667pt;}
.x8f_c00188{left:499.626667pt;}
.x95_c00188{left:501.333333pt;}
.xaf_c00188{left:504.373333pt;}
.x48_c00188{left:506.666667pt;}
.x38_c00188{left:508.960000pt;}
.xa7_c00188{left:512.373333pt;}
.x27_c00188{left:514.293333pt;}
.xf6_c00188{left:516.000000pt;}
.x12_c00188{left:517.333333pt;}
.x87_c00188{left:519.040000pt;}
.x62_c00188{left:520.000000pt;}
.xb0_c00188{left:522.293333pt;}
.xf1_c00188{left:523.626667pt;}
.x7c_c00188{left:525.333333pt;}
.x8_c00188{left:526.466667pt;}
.x1f_c00188{left:527.426667pt;}
.xc4_c00188{left:529.706667pt;}
.xce_c00188{left:533.706667pt;}
.x77_c00188{left:534.666667pt;}
.xbe_c00188{left:536.373333pt;}
.x63_c00188{left:537.706667pt;}
.x40_c00188{left:542.293333pt;}
.x20_c00188{left:547.040000pt;}
.xfb_c00188{left:548.000000pt;}
.x9e_c00188{left:548.960000pt;}
.x88_c00188{left:552.000000pt;}
.x90_c00188{left:553.333333pt;}
.x52_c00188{left:554.666667pt;}
.x7d_c00188{left:556.960000pt;}
.x6c_c00188{left:558.666667pt;}
.x96_c00188{left:561.333333pt;}
.x49_c00188{left:562.293333pt;}
.xcf_c00188{left:565.333333pt;}
.xa8_c00188{left:566.293333pt;}
.x13_c00188{left:569.333333pt;}
.x41_c00188{left:571.040000pt;}
.xb1_c00188{left:572.000000pt;}
.x89_c00188{left:573.333333pt;}
.xf2_c00188{left:574.293333pt;}
.x28_c00188{left:580.000000pt;}
.xc7_c00188{left:581.906667pt;}
.xda_c00188{left:584.000000pt;}
.x6d_c00188{left:585.333333pt;}
.x14_c00188{left:587.040000pt;}
.xf7_c00188{left:589.706667pt;}
.x4a_c00188{left:590.666667pt;}
.x39_c00188{left:591.626667pt;}
.xb7_c00188{left:593.706667pt;}
.xa9_c00188{left:595.040000pt;}
.xcb_c00188{left:597.333333pt;}
.x29_c00188{left:599.626667pt;}
.x6e_c00188{left:600.960000pt;}
.x15_c00188{left:603.626667pt;}
.xe0_c00188{left:604.960000pt;}
.xfc_c00188{left:609.333333pt;}
.x84_c00188{left:612.000000pt;}
.xdb_c00188{left:614.293333pt;}
.xd0_c00188{left:616.000000pt;}
.xb2_c00188{left:617.133333pt;}
.x59_c00188{left:620.960000pt;}
.x42_c00188{left:623.626667pt;}
.x2_c00188{left:627.040000pt;}
.xeb_c00188{left:628.000000pt;}
.x91_c00188{left:629.706667pt;}
.x106_c00188{left:632.000000pt;}
.xaa_c00188{left:636.000000pt;}
.xb8_c00188{left:636.960000pt;}
.xbf_c00188{left:638.666667pt;}
.x3_c00188{left:642.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_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_f84a2878ff9ea8cfdf2c4ad0.woff2')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:1.688965;font-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_c00189{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m2e_c00189{transform:matrix(0.385436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385436,0.000000,0.000000,0.250000,0,0);}
.m26_c00189{transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);}
.m10_c00189{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.m33_c00189{transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);}
.m1c_c00189{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.m15_c00189{transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);}
.m1f_c00189{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.m1b_c00189{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m1d_c00189{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m16_c00189{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m8_c00189{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.mf_c00189{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m0_c00189{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m23_c00189{transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);}
.m25_c00189{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.m9_c00189{transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);}
.me_c00189{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m2_c00189{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m5_c00189{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m2a_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);}
.m2b_c00189{transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);}
.m17_c00189{transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);}
.m4_c00189{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m12_c00189{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.m34_c00189{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_c00189{transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);}
.m30_c00189{transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);}
.m18_c00189{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m14_c00189{transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);}
.m28_c00189{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m11_c00189{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.m13_c00189{transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);}
.m2d_c00189{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m32_c00189{transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);}
.m29_c00189{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m31_c00189{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.ma_c00189{transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);}
.m1a_c00189{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.mc_c00189{transform:matrix(0.564706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564706,0.000000,0.000000,0.250000,0,0);}
.m2c_c00189{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m7_c00189{transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);}
.m22_c00189{transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);}
.m20_c00189{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m24_c00189{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_c00189{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m1e_c00189{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m1_c00189{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m19_c00189{transform:matrix(0.606618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606618,0.000000,0.000000,0.250000,0,0);}
.m27_c00189{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.md_c00189{transform:matrix(0.619853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619853,0.000000,0.000000,0.250000,0,0);}
.m6_c00189{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m21_c00189{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);}
.v0_c00189{vertical-align:0.000000px;}
.ls0_c00189{letter-spacing:0.000000px;}
.sc__c00189{text-shadow:none;}
.sc0_c00189{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00189{-webkit-text-stroke:0px transparent;}
.sc0_c00189{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00189{word-spacing:-0.885955px;}
.ws1_c00189{word-spacing:0.000000px;}
.fc0_c00189{color:transparent;}
.fs4_c00189{font-size:18.720000px;}
.fs1_c00189{font-size:20.400000px;}
.fs2_c00189{font-size:25.500000px;}
.fs0_c00189{font-size:28.920000px;}
.fs3_c00189{font-size:32.340000px;}
.y0_c00189{bottom:0.000000px;}
.y5_c00189{bottom:268.470000px;}
.y7_c00189{bottom:269.325000px;}
.y3_c00189{bottom:270.405000px;}
.y4_c00189{bottom:271.470000px;}
.y6_c00189{bottom:272.550000px;}
.yb_c00189{bottom:284.325000px;}
.ya_c00189{bottom:285.405000px;}
.y9_c00189{bottom:285.630000px;}
.y8_c00189{bottom:286.470000px;}
.yf_c00189{bottom:287.550000px;}
.yd_c00189{bottom:299.325000px;}
.y11_c00189{bottom:299.550000px;}
.y10_c00189{bottom:299.970000px;}
.ye_c00189{bottom:300.405000px;}
.yc_c00189{bottom:301.470000px;}
.y1a_c00189{bottom:313.050000px;}
.y19_c00189{bottom:314.325000px;}
.y18_c00189{bottom:316.470000px;}
.y12_c00189{bottom:329.325000px;}
.y13_c00189{bottom:329.550000px;}
.y16_c00189{bottom:330.405000px;}
.y17_c00189{bottom:331.050000px;}
.y15_c00189{bottom:331.470000px;}
.y14_c00189{bottom:332.550000px;}
.y2_c00189{bottom:1097.550000px;}
.y1_c00189{bottom:1099.905000px;}
.h5_c00189{height:23.025234px;}
.h2_c00189{height:25.091602px;}
.h3_c00189{height:31.364502px;}
.h1_c00189{height:35.571035px;}
.h4_c00189{height:39.777568px;}
.h0_c00189{height:1335.000000px;}
.w0_c00189{width:880.500000px;}
.x0_c00189{left:0.000000px;}
.x1f_c00189{left:153.000000px;}
.x1_c00189{left:156.420000px;}
.x12_c00189{left:166.500000px;}
.x24_c00189{left:181.920000px;}
.x20_c00189{left:202.920000px;}
.x25_c00189{left:206.580000px;}
.x30_c00189{left:214.500000px;}
.xf_c00189{left:217.500000px;}
.x6_c00189{left:222.000000px;}
.x31_c00189{left:234.000000px;}
.x21_c00189{left:258.420000px;}
.x7_c00189{left:265.920000px;}
.x10_c00189{left:268.920000px;}
.x26_c00189{left:270.420000px;}
.x8_c00189{left:283.500000px;}
.x27_c00189{left:288.000000px;}
.x15_c00189{left:289.500000px;}
.x32_c00189{left:300.420000px;}
.x1b_c00189{left:316.500000px;}
.x9_c00189{left:342.000000px;}
.x1c_c00189{left:356.580000px;}
.x16_c00189{left:364.500000px;}
.x28_c00189{left:367.500000px;}
.x19_c00189{left:372.000000px;}
.xa_c00189{left:399.000000px;}
.x2_c00189{left:402.000000px;}
.xd_c00189{left:408.000000px;}
.x33_c00189{left:429.000000px;}
.x1a_c00189{left:430.920000px;}
.x4_c00189{left:441.000000px;}
.x29_c00189{left:445.920000px;}
.xe_c00189{left:459.000000px;}
.x17_c00189{left:477.000000px;}
.x5_c00189{left:493.500000px;}
.x2a_c00189{left:495.420000px;}
.xb_c00189{left:512.145000px;}
.x22_c00189{left:530.580000px;}
.x2b_c00189{left:532.500000px;}
.x34_c00189{left:539.580000px;}
.x18_c00189{left:553.920000px;}
.x35_c00189{left:570.000000px;}
.xc_c00189{left:586.080000px;}
.x23_c00189{left:595.500000px;}
.x13_c00189{left:608.145000px;}
.x2c_c00189{left:612.420000px;}
.x1d_c00189{left:613.500000px;}
.x3_c00189{left:658.500000px;}
.x14_c00189{left:660.420000px;}
.x2d_c00189{left:661.500000px;}
.x1e_c00189{left:674.580000px;}
.x11_c00189{left:676.500000px;}
.x36_c00189{left:682.080000px;}
.x2e_c00189{left:700.500000px;}
.x2f_c00189{left:718.080000px;}
.x37_c00189{left:721.920000px;}
@media print{
.v0_c00189{vertical-align:0.000000pt;}
.ls0_c00189{letter-spacing:0.000000pt;}
.ws0_c00189{word-spacing:-0.787516pt;}
.ws1_c00189{word-spacing:0.000000pt;}
.fs4_c00189{font-size:16.640000pt;}
.fs1_c00189{font-size:18.133333pt;}
.fs2_c00189{font-size:22.666667pt;}
.fs0_c00189{font-size:25.706667pt;}
.fs3_c00189{font-size:28.746667pt;}
.y0_c00189{bottom:0.000000pt;}
.y5_c00189{bottom:238.640000pt;}
.y7_c00189{bottom:239.400000pt;}
.y3_c00189{bottom:240.360000pt;}
.y4_c00189{bottom:241.306667pt;}
.y6_c00189{bottom:242.266667pt;}
.yb_c00189{bottom:252.733333pt;}
.ya_c00189{bottom:253.693333pt;}
.y9_c00189{bottom:253.893333pt;}
.y8_c00189{bottom:254.640000pt;}
.yf_c00189{bottom:255.600000pt;}
.yd_c00189{bottom:266.066667pt;}
.y11_c00189{bottom:266.266667pt;}
.y10_c00189{bottom:266.640000pt;}
.ye_c00189{bottom:267.026667pt;}
.yc_c00189{bottom:267.973333pt;}
.y1a_c00189{bottom:278.266667pt;}
.y19_c00189{bottom:279.400000pt;}
.y18_c00189{bottom:281.306667pt;}
.y12_c00189{bottom:292.733333pt;}
.y13_c00189{bottom:292.933333pt;}
.y16_c00189{bottom:293.693333pt;}
.y17_c00189{bottom:294.266667pt;}
.y15_c00189{bottom:294.640000pt;}
.y14_c00189{bottom:295.600000pt;}
.y2_c00189{bottom:975.600000pt;}
.y1_c00189{bottom:977.693333pt;}
.h5_c00189{height:20.466875pt;}
.h2_c00189{height:22.303646pt;}
.h3_c00189{height:27.879557pt;}
.h1_c00189{height:31.618698pt;}
.h4_c00189{height:35.357839pt;}
.h0_c00189{height:1186.666667pt;}
.w0_c00189{width:782.666667pt;}
.x0_c00189{left:0.000000pt;}
.x1f_c00189{left:136.000000pt;}
.x1_c00189{left:139.040000pt;}
.x12_c00189{left:148.000000pt;}
.x24_c00189{left:161.706667pt;}
.x20_c00189{left:180.373333pt;}
.x25_c00189{left:183.626667pt;}
.x30_c00189{left:190.666667pt;}
.xf_c00189{left:193.333333pt;}
.x6_c00189{left:197.333333pt;}
.x31_c00189{left:208.000000pt;}
.x21_c00189{left:229.706667pt;}
.x7_c00189{left:236.373333pt;}
.x10_c00189{left:239.040000pt;}
.x26_c00189{left:240.373333pt;}
.x8_c00189{left:252.000000pt;}
.x27_c00189{left:256.000000pt;}
.x15_c00189{left:257.333333pt;}
.x32_c00189{left:267.040000pt;}
.x1b_c00189{left:281.333333pt;}
.x9_c00189{left:304.000000pt;}
.x1c_c00189{left:316.960000pt;}
.x16_c00189{left:324.000000pt;}
.x28_c00189{left:326.666667pt;}
.x19_c00189{left:330.666667pt;}
.xa_c00189{left:354.666667pt;}
.x2_c00189{left:357.333333pt;}
.xd_c00189{left:362.666667pt;}
.x33_c00189{left:381.333333pt;}
.x1a_c00189{left:383.040000pt;}
.x4_c00189{left:392.000000pt;}
.x29_c00189{left:396.373333pt;}
.xe_c00189{left:408.000000pt;}
.x17_c00189{left:424.000000pt;}
.x5_c00189{left:438.666667pt;}
.x2a_c00189{left:440.373333pt;}
.xb_c00189{left:455.240000pt;}
.x22_c00189{left:471.626667pt;}
.x2b_c00189{left:473.333333pt;}
.x34_c00189{left:479.626667pt;}
.x18_c00189{left:492.373333pt;}
.x35_c00189{left:506.666667pt;}
.xc_c00189{left:520.960000pt;}
.x23_c00189{left:529.333333pt;}
.x13_c00189{left:540.573333pt;}
.x2c_c00189{left:544.373333pt;}
.x1d_c00189{left:545.333333pt;}
.x3_c00189{left:585.333333pt;}
.x14_c00189{left:587.040000pt;}
.x2d_c00189{left:588.000000pt;}
.x1e_c00189{left:599.626667pt;}
.x11_c00189{left:601.333333pt;}
.x36_c00189{left:606.293333pt;}
.x2e_c00189{left:622.666667pt;}
.x2f_c00189{left:638.293333pt;}
.x37_c00189{left:641.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_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_4ff9f960d7db0b15cec4340b.woff2')format("woff");}.ff1_c00190{font-family:ff1_c00190;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m49_c00190{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m67_c00190{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m3e_c00190{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m18_c00190{transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);}
.m5e_c00190{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m48_c00190{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m4c_c00190{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m51_c00190{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m69_c00190{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mbd_c00190{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m14_c00190{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.ma3_c00190{transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);}
.m9f_c00190{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m81_c00190{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mb3_c00190{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.m75_c00190{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m6c_c00190{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m8f_c00190{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m6d_c00190{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.ma5_c00190{transform:matrix(0.408627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408627,0.000000,0.000000,0.250000,0,0);}
.m2a_c00190{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.ma8_c00190{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mb2_c00190{transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);}
.m2f_c00190{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m45_c00190{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m35_c00190{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.ma9_c00190{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.mb4_c00190{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.m58_c00190{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m7c_c00190{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m4e_c00190{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m5f_c00190{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m79_c00190{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m30_c00190{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m44_c00190{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m27_c00190{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mad_c00190{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m99_c00190{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m9e_c00190{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.me_c00190{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m6f_c00190{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m5b_c00190{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m3c_c00190{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m33_c00190{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m77_c00190{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m8a_c00190{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mbe_c00190{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m2_c00190{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m5c_c00190{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m98_c00190{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m60_c00190{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m64_c00190{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m50_c00190{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.maf_c00190{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m26_c00190{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m6a_c00190{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m1c_c00190{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m80_c00190{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m17_c00190{transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);}
.ma6_c00190{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mb0_c00190{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.md_c00190{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m13_c00190{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m7a_c00190{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m7d_c00190{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m89_c00190{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m84_c00190{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m54_c00190{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m6e_c00190{transform:matrix(0.457563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457563,0.000000,0.000000,0.250000,0,0);}
.m70_c00190{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.m90_c00190{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m4f_c00190{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m4d_c00190{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m71_c00190{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m8d_c00190{transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);}
.ma4_c00190{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.m66_c00190{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m65_c00190{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.m37_c00190{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m2c_c00190{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m7e_c00190{transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);}
.ma7_c00190{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m96_c00190{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.mc1_c00190{transform:matrix(0.485882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485882,0.000000,0.000000,0.250000,0,0);}
.m2e_c00190{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m39_c00190{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m0_c00190{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m53_c00190{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mb5_c00190{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m59_c00190{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m43_c00190{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m9_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);}
.m92_c00190{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m7b_c00190{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.ma_c00190{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.m56_c00190{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m68_c00190{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mb8_c00190{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m24_c00190{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m73_c00190{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m97_c00190{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m85_c00190{transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);}
.m16_c00190{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mb1_c00190{transform:matrix(0.517647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517647,0.000000,0.000000,0.250000,0,0);}
.m3a_c00190{transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);}
.m36_c00190{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m91_c00190{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mb9_c00190{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);}
.mb6_c00190{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m72_c00190{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mb7_c00190{transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);}
.m95_c00190{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m38_c00190{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m31_c00190{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m4b_c00190{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mc2_c00190{transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);}
.m2b_c00190{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m78_c00190{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m32_c00190{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m6_c00190{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m5a_c00190{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m21_c00190{transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);}
.m1f_c00190{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m5_c00190{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m74_c00190{transform:matrix(0.532931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532931,0.000000,0.000000,0.250000,0,0);}
.m1d_c00190{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m94_c00190{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m9d_c00190{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m3d_c00190{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m11_c00190{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m34_c00190{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m9b_c00190{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m19_c00190{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m1e_c00190{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mbb_c00190{transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);}
.m46_c00190{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m7f_c00190{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m9c_c00190{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m28_c00190{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m83_c00190{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m63_c00190{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m61_c00190{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m86_c00190{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m8e_c00190{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m3f_c00190{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m25_c00190{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m8_c00190{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m1b_c00190{transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);}
.m4_c00190{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m23_c00190{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m62_c00190{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m1a_c00190{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m52_c00190{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m93_c00190{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m7_c00190{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.maa_c00190{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m47_c00190{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m22_c00190{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m20_c00190{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m41_c00190{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mab_c00190{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.mac_c00190{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m15_c00190{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m6b_c00190{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m57_c00190{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.ma0_c00190{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m1_c00190{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.ma1_c00190{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mba_c00190{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.mc0_c00190{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);}
.m5d_c00190{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m42_c00190{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m76_c00190{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m55_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);}
.m29_c00190{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m88_c00190{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m8c_c00190{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m3b_c00190{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m8b_c00190{transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);}
.mf_c00190{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m3_c00190{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mae_c00190{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m4a_c00190{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m40_c00190{transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);}
.m87_c00190{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mb_c00190{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m9a_c00190{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m82_c00190{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mbc_c00190{transform:matrix(0.741912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741912,0.000000,0.000000,0.250000,0,0);}
.m10_c00190{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mbf_c00190{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.ma2_c00190{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m2d_c00190{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m12_c00190{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.mc_c00190{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.v0_c00190{vertical-align:0.000000px;}
.ls0_c00190{letter-spacing:0.000000px;}
.sc__c00190{text-shadow:none;}
.sc0_c00190{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00190{-webkit-text-stroke:0px transparent;}
.sc0_c00190{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00190{word-spacing:-9.175281px;}
.ws0_c00190{word-spacing:-6.184625px;}
.ws4_c00190{word-spacing:-5.844344px;}
.ws2_c00190{word-spacing:-3.387600px;}
.ws3_c00190{word-spacing:-2.179849px;}
.ws5_c00190{word-spacing:0.000000px;}
.fc0_c00190{color:transparent;}
.fs5_c00190{font-size:18.720000px;}
.fs1_c00190{font-size:20.400000px;}
.fs3_c00190{font-size:25.500000px;}
.fs0_c00190{font-size:28.920000px;}
.fs4_c00190{font-size:32.340000px;}
.fs2_c00190{font-size:35.700000px;}
.fs6_c00190{font-size:39.120000px;}
.y0_c00190{bottom:0.000000px;}
.y6b_c00190{bottom:249.405000px;}
.y6c_c00190{bottom:250.245000px;}
.y68_c00190{bottom:250.680000px;}
.y67_c00190{bottom:252.630000px;}
.y69_c00190{bottom:252.825000px;}
.y6a_c00190{bottom:253.905000px;}
.y64_c00190{bottom:271.245000px;}
.y65_c00190{bottom:272.130000px;}
.y66_c00190{bottom:272.970000px;}
.y63_c00190{bottom:273.405000px;}
.y62_c00190{bottom:289.470000px;}
.y60_c00190{bottom:290.745000px;}
.y5f_c00190{bottom:292.905000px;}
.y61_c00190{bottom:293.970000px;}
.y5d_c00190{bottom:312.405000px;}
.y5e_c00190{bottom:313.905000px;}
.y5b_c00190{bottom:329.745000px;}
.y5c_c00190{bottom:330.825000px;}
.y59_c00190{bottom:331.905000px;}
.y5a_c00190{bottom:332.325000px;}
.y58_c00190{bottom:332.970000px;}
.y57_c00190{bottom:333.405000px;}
.y51_c00190{bottom:349.245000px;}
.y52_c00190{bottom:349.470000px;}
.y56_c00190{bottom:349.905000px;}
.y50_c00190{bottom:351.405000px;}
.y54_c00190{bottom:351.630000px;}
.y55_c00190{bottom:352.470000px;}
.y53_c00190{bottom:352.905000px;}
.y4c_c00190{bottom:368.745000px;}
.y4d_c00190{bottom:369.825000px;}
.y4e_c00190{bottom:370.905000px;}
.y4f_c00190{bottom:371.130000px;}
.y4b_c00190{bottom:388.245000px;}
.y49_c00190{bottom:389.745000px;}
.y4a_c00190{bottom:390.405000px;}
.y48_c00190{bottom:391.905000px;}
.y7a_c00190{bottom:420.825000px;}
.y7e_c00190{bottom:421.050000px;}
.y7b_c00190{bottom:421.905000px;}
.y7d_c00190{bottom:422.130000px;}
.y7f_c00190{bottom:422.970000px;}
.y7c_c00190{bottom:424.050000px;}
.y75_c00190{bottom:434.970000px;}
.y76_c00190{bottom:435.630000px;}
.y73_c00190{bottom:435.825000px;}
.y78_c00190{bottom:436.050000px;}
.y74_c00190{bottom:437.130000px;}
.y79_c00190{bottom:437.550000px;}
.y77_c00190{bottom:437.970000px;}
.y6f_c00190{bottom:450.630000px;}
.y6d_c00190{bottom:450.825000px;}
.y6e_c00190{bottom:451.050000px;}
.y80_c00190{bottom:451.470000px;}
.y71_c00190{bottom:451.905000px;}
.y70_c00190{bottom:452.130000px;}
.y72_c00190{bottom:452.970000px;}
.y47_c00190{bottom:781.470000px;}
.y46_c00190{bottom:782.745000px;}
.y45_c00190{bottom:783.825000px;}
.y44_c00190{bottom:784.905000px;}
.y43_c00190{bottom:799.905000px;}
.y41_c00190{bottom:802.245000px;}
.y42_c00190{bottom:804.405000px;}
.y40_c00190{bottom:820.905000px;}
.y3f_c00190{bottom:821.745000px;}
.y3e_c00190{bottom:823.905000px;}
.y39_c00190{bottom:839.970000px;}
.y38_c00190{bottom:841.245000px;}
.y3b_c00190{bottom:842.325000px;}
.y3d_c00190{bottom:842.745000px;}
.y3a_c00190{bottom:842.970000px;}
.y37_c00190{bottom:843.405000px;}
.y3c_c00190{bottom:844.470000px;}
.y33_c00190{bottom:859.905000px;}
.y34_c00190{bottom:860.745000px;}
.y36_c00190{bottom:861.825000px;}
.y35_c00190{bottom:862.905000px;}
.y2e_c00190{bottom:880.245000px;}
.y2f_c00190{bottom:881.325000px;}
.y32_c00190{bottom:881.745000px;}
.y30_c00190{bottom:882.405000px;}
.y31_c00190{bottom:883.470000px;}
.y2a_c00190{bottom:901.245000px;}
.y2b_c00190{bottom:901.905000px;}
.y2d_c00190{bottom:902.325000px;}
.y2c_c00190{bottom:903.405000px;}
.y26_c00190{bottom:920.550000px;}
.y28_c00190{bottom:920.745000px;}
.y29_c00190{bottom:922.470000px;}
.y27_c00190{bottom:922.905000px;}
.y25_c00190{bottom:937.905000px;}
.y24_c00190{bottom:940.245000px;}
.y21_c00190{bottom:940.905000px;}
.y23_c00190{bottom:941.325000px;}
.y22_c00190{bottom:941.970000px;}
.y20_c00190{bottom:942.405000px;}
.y1c_c00190{bottom:959.745000px;}
.y1d_c00190{bottom:960.630000px;}
.y1e_c00190{bottom:960.825000px;}
.y1b_c00190{bottom:961.905000px;}
.y1f_c00190{bottom:962.130000px;}
.y1a_c00190{bottom:979.245000px;}
.y18_c00190{bottom:981.405000px;}
.y19_c00190{bottom:981.630000px;}
.y16_c00190{bottom:997.905000px;}
.y14_c00190{bottom:998.745000px;}
.y17_c00190{bottom:998.970000px;}
.y13_c00190{bottom:999.825000px;}
.y12_c00190{bottom:1000.905000px;}
.y15_c00190{bottom:1001.130000px;}
.y10_c00190{bottom:1018.245000px;}
.yf_c00190{bottom:1018.470000px;}
.y11_c00190{bottom:1019.325000px;}
.ye_c00190{bottom:1020.405000px;}
.ya_c00190{bottom:1036.905000px;}
.yd_c00190{bottom:1038.180000px;}
.yb_c00190{bottom:1039.245000px;}
.y9_c00190{bottom:1040.130000px;}
.yc_c00190{bottom:1041.405000px;}
.y3_c00190{bottom:1058.745000px;}
.y4_c00190{bottom:1058.970000px;}
.y5_c00190{bottom:1059.405000px;}
.y8_c00190{bottom:1059.630000px;}
.y7_c00190{bottom:1059.825000px;}
.y6_c00190{bottom:1060.905000px;}
.y2_c00190{bottom:1097.550000px;}
.y1_c00190{bottom:1099.905000px;}
.h6_c00190{height:23.025234px;}
.h2_c00190{height:25.091602px;}
.h4_c00190{height:31.364502px;}
.h1_c00190{height:35.571035px;}
.h5_c00190{height:39.777568px;}
.h3_c00190{height:43.910303px;}
.h7_c00190{height:48.116836px;}
.h0_c00190{height:1335.000000px;}
.w0_c00190{width:880.500000px;}
.x0_c00190{left:0.000000px;}
.x3_c00190{left:151.920000px;}
.x95_c00190{left:153.420000px;}
.x84_c00190{left:167.580000px;}
.x13_c00190{left:172.500000px;}
.xc6_c00190{left:174.420000px;}
.x91_c00190{left:180.000000px;}
.xa3_c00190{left:181.500000px;}
.x6a_c00190{left:183.420000px;}
.x73_c00190{left:186.000000px;}
.x14_c00190{left:187.920000px;}
.x96_c00190{left:190.500000px;}
.x34_c00190{left:192.000000px;}
.x55_c00190{left:193.080000px;}
.x7d_c00190{left:195.000000px;}
.x60_c00190{left:198.420000px;}
.x2a_c00190{left:201.000000px;}
.xc2_c00190{left:204.000000px;}
.x4_c00190{left:208.500000px;}
.x35_c00190{left:211.920000px;}
.xc3_c00190{left:220.500000px;}
.x20_c00190{left:221.580000px;}
.x15_c00190{left:225.000000px;}
.x40_c00190{left:226.080000px;}
.x5_c00190{left:227.580000px;}
.x56_c00190{left:229.500000px;}
.xc4_c00190{left:234.000000px;}
.xaf_c00190{left:235.500000px;}
.xa4_c00190{left:237.000000px;}
.x4c_c00190{left:240.000000px;}
.x2b_c00190{left:241.080000px;}
.xb6_c00190{left:246.420000px;}
.x57_c00190{left:247.500000px;}
.x6b_c00190{left:249.000000px;}
.x74_c00190{left:252.000000px;}
.x7e_c00190{left:255.000000px;}
.x36_c00190{left:258.000000px;}
.xaa_c00190{left:259.080000px;}
.x97_c00190{left:260.580000px;}
.xa5_c00190{left:262.500000px;}
.xc7_c00190{left:264.000000px;}
.x61_c00190{left:265.080000px;}
.x6_c00190{left:273.420000px;}
.x16_c00190{left:280.500000px;}
.x37_c00190{left:282.420000px;}
.x85_c00190{left:285.000000px;}
.x2c_c00190{left:287.580000px;}
.x75_c00190{left:289.080000px;}
.x58_c00190{left:292.080000px;}
.xb0_c00190{left:297.000000px;}
.x7_c00190{left:300.000000px;}
.xb7_c00190{left:301.500000px;}
.xab_c00190{left:303.000000px;}
.x7f_c00190{left:304.920000px;}
.x86_c00190{left:310.080000px;}
.x38_c00190{left:312.420000px;}
.x41_c00190{left:313.500000px;}
.x21_c00190{left:315.000000px;}
.xb8_c00190{left:316.500000px;}
.x17_c00190{left:319.500000px;}
.x4d_c00190{left:321.000000px;}
.x59_c00190{left:322.920000px;}
.x6c_c00190{left:325.500000px;}
.xbd_c00190{left:327.000000px;}
.x62_c00190{left:330.420000px;}
.x76_c00190{left:331.500000px;}
.x8_c00190{left:335.580000px;}
.x87_c00190{left:338.145000px;}
.x80_c00190{left:340.080000px;}
.xc5_c00190{left:342.420000px;}
.x4e_c00190{left:343.500000px;}
.x77_c00190{left:344.580000px;}
.x8d_c00190{left:346.500000px;}
.x42_c00190{left:350.580000px;}
.x9_c00190{left:354.420000px;}
.x22_c00190{left:357.000000px;}
.x39_c00190{left:360.000000px;}
.x6d_c00190{left:361.500000px;}
.x18_c00190{left:363.420000px;}
.x63_c00190{left:367.500000px;}
.x98_c00190{left:369.000000px;}
.xcc_c00190{left:373.500000px;}
.x43_c00190{left:379.500000px;}
.xa_c00190{left:381.000000px;}
.x5a_c00190{left:382.500000px;}
.x9e_c00190{left:383.580000px;}
.x2d_c00190{left:385.500000px;}
.x4f_c00190{left:388.500000px;}
.x19_c00190{left:391.920000px;}
.xb1_c00190{left:394.920000px;}
.x2_c00190{left:397.500000px;}
.x88_c00190{left:398.580000px;}
.xc8_c00190{left:402.420000px;}
.x78_c00190{left:405.000000px;}
.x3a_c00190{left:416.580000px;}
.x6e_c00190{left:418.920000px;}
.x44_c00190{left:420.000000px;}
.x9f_c00190{left:423.000000px;}
.xcd_c00190{left:426.000000px;}
.xb9_c00190{left:432.000000px;}
.xb_c00190{left:433.080000px;}
.x99_c00190{left:435.420000px;}
.x1a_c00190{left:436.500000px;}
.x23_c00190{left:438.420000px;}
.xac_c00190{left:441.000000px;}
.x81_c00190{left:442.500000px;}
.x89_c00190{left:447.000000px;}
.xc_c00190{left:450.420000px;}
.x50_c00190{left:453.420000px;}
.x79_c00190{left:456.420000px;}
.x5b_c00190{left:457.500000px;}
.x2e_c00190{left:459.000000px;}
.xa6_c00190{left:462.420000px;}
.xb2_c00190{left:464.580000px;}
.x3b_c00190{left:466.080000px;}
.x82_c00190{left:469.500000px;}
.x64_c00190{left:471.420000px;}
.xce_c00190{left:475.920000px;}
.xd_c00190{left:478.500000px;}
.x51_c00190{left:480.000000px;}
.xbe_c00190{left:481.500000px;}
.x1b_c00190{left:482.580000px;}
.x6f_c00190{left:487.500000px;}
.xcf_c00190{left:490.920000px;}
.x5c_c00190{left:493.500000px;}
.x45_c00190{left:498.420000px;}
.x65_c00190{left:499.500000px;}
.x8a_c00190{left:502.920000px;}
.x70_c00190{left:505.920000px;}
.x52_c00190{left:508.500000px;}
.x24_c00190{left:510.420000px;}
.x5d_c00190{left:514.500000px;}
.x9a_c00190{left:516.000000px;}
.xe_c00190{left:518.580000px;}
.x46_c00190{left:523.080000px;}
.xb3_c00190{left:525.420000px;}
.x92_c00190{left:526.500000px;}
.xad_c00190{left:529.500000px;}
.x71_c00190{left:531.420000px;}
.xa7_c00190{left:534.000000px;}
.xbf_c00190{left:535.500000px;}
.x53_c00190{left:538.500000px;}
.x66_c00190{left:540.000000px;}
.x7a_c00190{left:548.580000px;}
.xb4_c00190{left:550.500000px;}
.xc9_c00190{left:552.000000px;}
.x2f_c00190{left:554.580000px;}
.x25_c00190{left:556.920000px;}
.x3c_c00190{left:558.000000px;}
.xf_c00190{left:564.420000px;}
.x47_c00190{left:566.580000px;}
.x9b_c00190{left:569.580000px;}
.xa0_c00190{left:573.000000px;}
.x1c_c00190{left:580.500000px;}
.x8b_c00190{left:582.420000px;}
.x10_c00190{left:583.500000px;}
.xb5_c00190{left:586.080000px;}
.xba_c00190{left:589.920000px;}
.x7b_c00190{left:591.000000px;}
.x67_c00190{left:594.420000px;}
.x30_c00190{left:595.500000px;}
.x5e_c00190{left:603.000000px;}
.x8e_c00190{left:604.920000px;}
.x26_c00190{left:607.080000px;}
.x31_c00190{left:609.000000px;}
.xc0_c00190{left:611.580000px;}
.x11_c00190{left:615.420000px;}
.xbb_c00190{left:616.500000px;}
.x9c_c00190{left:618.000000px;}
.x48_c00190{left:621.000000px;}
.x93_c00190{left:625.500000px;}
.x27_c00190{left:630.420000px;}
.x8f_c00190{left:631.500000px;}
.x68_c00190{left:633.420000px;}
.x72_c00190{left:636.000000px;}
.x3d_c00190{left:642.000000px;}
.xae_c00190{left:643.920000px;}
.xca_c00190{left:646.500000px;}
.x83_c00190{left:648.000000px;}
.x54_c00190{left:649.500000px;}
.x32_c00190{left:651.000000px;}
.x12_c00190{left:655.500000px;}
.x49_c00190{left:656.580000px;}
.x1d_c00190{left:658.500000px;}
.x28_c00190{left:661.500000px;}
.xa1_c00190{left:664.080000px;}
.x3e_c00190{left:666.420000px;}
.xa8_c00190{left:667.920000px;}
.xc1_c00190{left:669.000000px;}
.x94_c00190{left:670.080000px;}
.x90_c00190{left:671.580000px;}
.x9d_c00190{left:673.500000px;}
.xbc_c00190{left:679.080000px;}
.x7c_c00190{left:684.420000px;}
.x5f_c00190{left:685.500000px;}
.x4a_c00190{left:687.000000px;}
.x69_c00190{left:688.080000px;}
.x8c_c00190{left:691.500000px;}
.xcb_c00190{left:693.000000px;}
.x3f_c00190{left:696.000000px;}
.xa2_c00190{left:697.920000px;}
.x1e_c00190{left:699.000000px;}
.x1_c00190{left:703.920000px;}
.x4b_c00190{left:706.920000px;}
.x29_c00190{left:708.420000px;}
.x33_c00190{left:715.080000px;}
.xa9_c00190{left:716.580000px;}
.x1f_c00190{left:720.000000px;}
@media print{
.v0_c00190{vertical-align:0.000000pt;}
.ls0_c00190{letter-spacing:0.000000pt;}
.ws1_c00190{word-spacing:-8.155806pt;}
.ws0_c00190{word-spacing:-5.497444pt;}
.ws4_c00190{word-spacing:-5.194972pt;}
.ws2_c00190{word-spacing:-3.011200pt;}
.ws3_c00190{word-spacing:-1.937644pt;}
.ws5_c00190{word-spacing:0.000000pt;}
.fs5_c00190{font-size:16.640000pt;}
.fs1_c00190{font-size:18.133333pt;}
.fs3_c00190{font-size:22.666667pt;}
.fs0_c00190{font-size:25.706667pt;}
.fs4_c00190{font-size:28.746667pt;}
.fs2_c00190{font-size:31.733333pt;}
.fs6_c00190{font-size:34.773333pt;}
.y0_c00190{bottom:0.000000pt;}
.y6b_c00190{bottom:221.693333pt;}
.y6c_c00190{bottom:222.440000pt;}
.y68_c00190{bottom:222.826667pt;}
.y67_c00190{bottom:224.560000pt;}
.y69_c00190{bottom:224.733333pt;}
.y6a_c00190{bottom:225.693333pt;}
.y64_c00190{bottom:241.106667pt;}
.y65_c00190{bottom:241.893333pt;}
.y66_c00190{bottom:242.640000pt;}
.y63_c00190{bottom:243.026667pt;}
.y62_c00190{bottom:257.306667pt;}
.y60_c00190{bottom:258.440000pt;}
.y5f_c00190{bottom:260.360000pt;}
.y61_c00190{bottom:261.306667pt;}
.y5d_c00190{bottom:277.693333pt;}
.y5e_c00190{bottom:279.026667pt;}
.y5b_c00190{bottom:293.106667pt;}
.y5c_c00190{bottom:294.066667pt;}
.y59_c00190{bottom:295.026667pt;}
.y5a_c00190{bottom:295.400000pt;}
.y58_c00190{bottom:295.973333pt;}
.y57_c00190{bottom:296.360000pt;}
.y51_c00190{bottom:310.440000pt;}
.y52_c00190{bottom:310.640000pt;}
.y56_c00190{bottom:311.026667pt;}
.y50_c00190{bottom:312.360000pt;}
.y54_c00190{bottom:312.560000pt;}
.y55_c00190{bottom:313.306667pt;}
.y53_c00190{bottom:313.693333pt;}
.y4c_c00190{bottom:327.773333pt;}
.y4d_c00190{bottom:328.733333pt;}
.y4e_c00190{bottom:329.693333pt;}
.y4f_c00190{bottom:329.893333pt;}
.y4b_c00190{bottom:345.106667pt;}
.y49_c00190{bottom:346.440000pt;}
.y4a_c00190{bottom:347.026667pt;}
.y48_c00190{bottom:348.360000pt;}
.y7a_c00190{bottom:374.066667pt;}
.y7e_c00190{bottom:374.266667pt;}
.y7b_c00190{bottom:375.026667pt;}
.y7d_c00190{bottom:375.226667pt;}
.y7f_c00190{bottom:375.973333pt;}
.y7c_c00190{bottom:376.933333pt;}
.y75_c00190{bottom:386.640000pt;}
.y76_c00190{bottom:387.226667pt;}
.y73_c00190{bottom:387.400000pt;}
.y78_c00190{bottom:387.600000pt;}
.y74_c00190{bottom:388.560000pt;}
.y79_c00190{bottom:388.933333pt;}
.y77_c00190{bottom:389.306667pt;}
.y6f_c00190{bottom:400.560000pt;}
.y6d_c00190{bottom:400.733333pt;}
.y6e_c00190{bottom:400.933333pt;}
.y80_c00190{bottom:401.306667pt;}
.y71_c00190{bottom:401.693333pt;}
.y70_c00190{bottom:401.893333pt;}
.y72_c00190{bottom:402.640000pt;}
.y47_c00190{bottom:694.640000pt;}
.y46_c00190{bottom:695.773333pt;}
.y45_c00190{bottom:696.733333pt;}
.y44_c00190{bottom:697.693333pt;}
.y43_c00190{bottom:711.026667pt;}
.y41_c00190{bottom:713.106667pt;}
.y42_c00190{bottom:715.026667pt;}
.y40_c00190{bottom:729.693333pt;}
.y3f_c00190{bottom:730.440000pt;}
.y3e_c00190{bottom:732.360000pt;}
.y39_c00190{bottom:746.640000pt;}
.y38_c00190{bottom:747.773333pt;}
.y3b_c00190{bottom:748.733333pt;}
.y3d_c00190{bottom:749.106667pt;}
.y3a_c00190{bottom:749.306667pt;}
.y37_c00190{bottom:749.693333pt;}
.y3c_c00190{bottom:750.640000pt;}
.y33_c00190{bottom:764.360000pt;}
.y34_c00190{bottom:765.106667pt;}
.y36_c00190{bottom:766.066667pt;}
.y35_c00190{bottom:767.026667pt;}
.y2e_c00190{bottom:782.440000pt;}
.y2f_c00190{bottom:783.400000pt;}
.y32_c00190{bottom:783.773333pt;}
.y30_c00190{bottom:784.360000pt;}
.y31_c00190{bottom:785.306667pt;}
.y2a_c00190{bottom:801.106667pt;}
.y2b_c00190{bottom:801.693333pt;}
.y2d_c00190{bottom:802.066667pt;}
.y2c_c00190{bottom:803.026667pt;}
.y26_c00190{bottom:818.266667pt;}
.y28_c00190{bottom:818.440000pt;}
.y29_c00190{bottom:819.973333pt;}
.y27_c00190{bottom:820.360000pt;}
.y25_c00190{bottom:833.693333pt;}
.y24_c00190{bottom:835.773333pt;}
.y21_c00190{bottom:836.360000pt;}
.y23_c00190{bottom:836.733333pt;}
.y22_c00190{bottom:837.306667pt;}
.y20_c00190{bottom:837.693333pt;}
.y1c_c00190{bottom:853.106667pt;}
.y1d_c00190{bottom:853.893333pt;}
.y1e_c00190{bottom:854.066667pt;}
.y1b_c00190{bottom:855.026667pt;}
.y1f_c00190{bottom:855.226667pt;}
.y1a_c00190{bottom:870.440000pt;}
.y18_c00190{bottom:872.360000pt;}
.y19_c00190{bottom:872.560000pt;}
.y16_c00190{bottom:887.026667pt;}
.y14_c00190{bottom:887.773333pt;}
.y17_c00190{bottom:887.973333pt;}
.y13_c00190{bottom:888.733333pt;}
.y12_c00190{bottom:889.693333pt;}
.y15_c00190{bottom:889.893333pt;}
.y10_c00190{bottom:905.106667pt;}
.yf_c00190{bottom:905.306667pt;}
.y11_c00190{bottom:906.066667pt;}
.ye_c00190{bottom:907.026667pt;}
.ya_c00190{bottom:921.693333pt;}
.yd_c00190{bottom:922.826667pt;}
.yb_c00190{bottom:923.773333pt;}
.y9_c00190{bottom:924.560000pt;}
.yc_c00190{bottom:925.693333pt;}
.y3_c00190{bottom:941.106667pt;}
.y4_c00190{bottom:941.306667pt;}
.y5_c00190{bottom:941.693333pt;}
.y8_c00190{bottom:941.893333pt;}
.y7_c00190{bottom:942.066667pt;}
.y6_c00190{bottom:943.026667pt;}
.y2_c00190{bottom:975.600000pt;}
.y1_c00190{bottom:977.693333pt;}
.h6_c00190{height:20.466875pt;}
.h2_c00190{height:22.303646pt;}
.h4_c00190{height:27.879557pt;}
.h1_c00190{height:31.618698pt;}
.h5_c00190{height:35.357839pt;}
.h3_c00190{height:39.031380pt;}
.h7_c00190{height:42.770521pt;}
.h0_c00190{height:1186.666667pt;}
.w0_c00190{width:782.666667pt;}
.x0_c00190{left:0.000000pt;}
.x3_c00190{left:135.040000pt;}
.x95_c00190{left:136.373333pt;}
.x84_c00190{left:148.960000pt;}
.x13_c00190{left:153.333333pt;}
.xc6_c00190{left:155.040000pt;}
.x91_c00190{left:160.000000pt;}
.xa3_c00190{left:161.333333pt;}
.x6a_c00190{left:163.040000pt;}
.x73_c00190{left:165.333333pt;}
.x14_c00190{left:167.040000pt;}
.x96_c00190{left:169.333333pt;}
.x34_c00190{left:170.666667pt;}
.x55_c00190{left:171.626667pt;}
.x7d_c00190{left:173.333333pt;}
.x60_c00190{left:176.373333pt;}
.x2a_c00190{left:178.666667pt;}
.xc2_c00190{left:181.333333pt;}
.x4_c00190{left:185.333333pt;}
.x35_c00190{left:188.373333pt;}
.xc3_c00190{left:196.000000pt;}
.x20_c00190{left:196.960000pt;}
.x15_c00190{left:200.000000pt;}
.x40_c00190{left:200.960000pt;}
.x5_c00190{left:202.293333pt;}
.x56_c00190{left:204.000000pt;}
.xc4_c00190{left:208.000000pt;}
.xaf_c00190{left:209.333333pt;}
.xa4_c00190{left:210.666667pt;}
.x4c_c00190{left:213.333333pt;}
.x2b_c00190{left:214.293333pt;}
.xb6_c00190{left:219.040000pt;}
.x57_c00190{left:220.000000pt;}
.x6b_c00190{left:221.333333pt;}
.x74_c00190{left:224.000000pt;}
.x7e_c00190{left:226.666667pt;}
.x36_c00190{left:229.333333pt;}
.xaa_c00190{left:230.293333pt;}
.x97_c00190{left:231.626667pt;}
.xa5_c00190{left:233.333333pt;}
.xc7_c00190{left:234.666667pt;}
.x61_c00190{left:235.626667pt;}
.x6_c00190{left:243.040000pt;}
.x16_c00190{left:249.333333pt;}
.x37_c00190{left:251.040000pt;}
.x85_c00190{left:253.333333pt;}
.x2c_c00190{left:255.626667pt;}
.x75_c00190{left:256.960000pt;}
.x58_c00190{left:259.626667pt;}
.xb0_c00190{left:264.000000pt;}
.x7_c00190{left:266.666667pt;}
.xb7_c00190{left:268.000000pt;}
.xab_c00190{left:269.333333pt;}
.x7f_c00190{left:271.040000pt;}
.x86_c00190{left:275.626667pt;}
.x38_c00190{left:277.706667pt;}
.x41_c00190{left:278.666667pt;}
.x21_c00190{left:280.000000pt;}
.xb8_c00190{left:281.333333pt;}
.x17_c00190{left:284.000000pt;}
.x4d_c00190{left:285.333333pt;}
.x59_c00190{left:287.040000pt;}
.x6c_c00190{left:289.333333pt;}
.xbd_c00190{left:290.666667pt;}
.x62_c00190{left:293.706667pt;}
.x76_c00190{left:294.666667pt;}
.x8_c00190{left:298.293333pt;}
.x87_c00190{left:300.573333pt;}
.x80_c00190{left:302.293333pt;}
.xc5_c00190{left:304.373333pt;}
.x4e_c00190{left:305.333333pt;}
.x77_c00190{left:306.293333pt;}
.x8d_c00190{left:308.000000pt;}
.x42_c00190{left:311.626667pt;}
.x9_c00190{left:315.040000pt;}
.x22_c00190{left:317.333333pt;}
.x39_c00190{left:320.000000pt;}
.x6d_c00190{left:321.333333pt;}
.x18_c00190{left:323.040000pt;}
.x63_c00190{left:326.666667pt;}
.x98_c00190{left:328.000000pt;}
.xcc_c00190{left:332.000000pt;}
.x43_c00190{left:337.333333pt;}
.xa_c00190{left:338.666667pt;}
.x5a_c00190{left:340.000000pt;}
.x9e_c00190{left:340.960000pt;}
.x2d_c00190{left:342.666667pt;}
.x4f_c00190{left:345.333333pt;}
.x19_c00190{left:348.373333pt;}
.xb1_c00190{left:351.040000pt;}
.x2_c00190{left:353.333333pt;}
.x88_c00190{left:354.293333pt;}
.xc8_c00190{left:357.706667pt;}
.x78_c00190{left:360.000000pt;}
.x3a_c00190{left:370.293333pt;}
.x6e_c00190{left:372.373333pt;}
.x44_c00190{left:373.333333pt;}
.x9f_c00190{left:376.000000pt;}
.xcd_c00190{left:378.666667pt;}
.xb9_c00190{left:384.000000pt;}
.xb_c00190{left:384.960000pt;}
.x99_c00190{left:387.040000pt;}
.x1a_c00190{left:388.000000pt;}
.x23_c00190{left:389.706667pt;}
.xac_c00190{left:392.000000pt;}
.x81_c00190{left:393.333333pt;}
.x89_c00190{left:397.333333pt;}
.xc_c00190{left:400.373333pt;}
.x50_c00190{left:403.040000pt;}
.x79_c00190{left:405.706667pt;}
.x5b_c00190{left:406.666667pt;}
.x2e_c00190{left:408.000000pt;}
.xa6_c00190{left:411.040000pt;}
.xb2_c00190{left:412.960000pt;}
.x3b_c00190{left:414.293333pt;}
.x82_c00190{left:417.333333pt;}
.x64_c00190{left:419.040000pt;}
.xce_c00190{left:423.040000pt;}
.xd_c00190{left:425.333333pt;}
.x51_c00190{left:426.666667pt;}
.xbe_c00190{left:428.000000pt;}
.x1b_c00190{left:428.960000pt;}
.x6f_c00190{left:433.333333pt;}
.xcf_c00190{left:436.373333pt;}
.x5c_c00190{left:438.666667pt;}
.x45_c00190{left:443.040000pt;}
.x65_c00190{left:444.000000pt;}
.x8a_c00190{left:447.040000pt;}
.x70_c00190{left:449.706667pt;}
.x52_c00190{left:452.000000pt;}
.x24_c00190{left:453.706667pt;}
.x5d_c00190{left:457.333333pt;}
.x9a_c00190{left:458.666667pt;}
.xe_c00190{left:460.960000pt;}
.x46_c00190{left:464.960000pt;}
.xb3_c00190{left:467.040000pt;}
.x92_c00190{left:468.000000pt;}
.xad_c00190{left:470.666667pt;}
.x71_c00190{left:472.373333pt;}
.xa7_c00190{left:474.666667pt;}
.xbf_c00190{left:476.000000pt;}
.x53_c00190{left:478.666667pt;}
.x66_c00190{left:480.000000pt;}
.x7a_c00190{left:487.626667pt;}
.xb4_c00190{left:489.333333pt;}
.xc9_c00190{left:490.666667pt;}
.x2f_c00190{left:492.960000pt;}
.x25_c00190{left:495.040000pt;}
.x3c_c00190{left:496.000000pt;}
.xf_c00190{left:501.706667pt;}
.x47_c00190{left:503.626667pt;}
.x9b_c00190{left:506.293333pt;}
.xa0_c00190{left:509.333333pt;}
.x1c_c00190{left:516.000000pt;}
.x8b_c00190{left:517.706667pt;}
.x10_c00190{left:518.666667pt;}
.xb5_c00190{left:520.960000pt;}
.xba_c00190{left:524.373333pt;}
.x7b_c00190{left:525.333333pt;}
.x67_c00190{left:528.373333pt;}
.x30_c00190{left:529.333333pt;}
.x5e_c00190{left:536.000000pt;}
.x8e_c00190{left:537.706667pt;}
.x26_c00190{left:539.626667pt;}
.x31_c00190{left:541.333333pt;}
.xc0_c00190{left:543.626667pt;}
.x11_c00190{left:547.040000pt;}
.xbb_c00190{left:548.000000pt;}
.x9c_c00190{left:549.333333pt;}
.x48_c00190{left:552.000000pt;}
.x93_c00190{left:556.000000pt;}
.x27_c00190{left:560.373333pt;}
.x8f_c00190{left:561.333333pt;}
.x68_c00190{left:563.040000pt;}
.x72_c00190{left:565.333333pt;}
.x3d_c00190{left:570.666667pt;}
.xae_c00190{left:572.373333pt;}
.xca_c00190{left:574.666667pt;}
.x83_c00190{left:576.000000pt;}
.x54_c00190{left:577.333333pt;}
.x32_c00190{left:578.666667pt;}
.x12_c00190{left:582.666667pt;}
.x49_c00190{left:583.626667pt;}
.x1d_c00190{left:585.333333pt;}
.x28_c00190{left:588.000000pt;}
.xa1_c00190{left:590.293333pt;}
.x3e_c00190{left:592.373333pt;}
.xa8_c00190{left:593.706667pt;}
.xc1_c00190{left:594.666667pt;}
.x94_c00190{left:595.626667pt;}
.x90_c00190{left:596.960000pt;}
.x9d_c00190{left:598.666667pt;}
.xbc_c00190{left:603.626667pt;}
.x7c_c00190{left:608.373333pt;}
.x5f_c00190{left:609.333333pt;}
.x4a_c00190{left:610.666667pt;}
.x69_c00190{left:611.626667pt;}
.x8c_c00190{left:614.666667pt;}
.xcb_c00190{left:616.000000pt;}
.x3f_c00190{left:618.666667pt;}
.xa2_c00190{left:620.373333pt;}
.x1e_c00190{left:621.333333pt;}
.x1_c00190{left:625.706667pt;}
.x4b_c00190{left:628.373333pt;}
.x29_c00190{left:629.706667pt;}
.x33_c00190{left:635.626667pt;}
.xa9_c00190{left:636.960000pt;}
.x1f_c00190{left:640.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_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_e3345c86ec30543291f04f5a.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma0_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);}
.mba_c00191{transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);}
.m55_c00191{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m36_c00191{transform:matrix(0.347479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347479,0.000000,0.000000,0.250000,0,0);}
.m19_c00191{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m44_c00191{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m95_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);}
.m57_c00191{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m56_c00191{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m3e_c00191{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m49_c00191{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m63_c00191{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m67_c00191{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m2c_c00191{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m1f_c00191{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m7b_c00191{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.m5e_c00191{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m7c_c00191{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m4d_c00191{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m50_c00191{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.ma_c00191{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m80_c00191{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m3b_c00191{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m47_c00191{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m82_c00191{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m20_c00191{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.me_c00191{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m10_c00191{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m2a_c00191{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m65_c00191{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m96_c00191{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m6a_c00191{transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);}
.m87_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);}
.mb6_c00191{transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);}
.m43_c00191{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m11_c00191{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m34_c00191{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m81_c00191{transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);}
.m28_c00191{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m29_c00191{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.m4e_c00191{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m7_c00191{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m2d_c00191{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m30_c00191{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m85_c00191{transform:matrix(0.454327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454327,0.000000,0.000000,0.250000,0,0);}
.m24_c00191{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m8a_c00191{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m48_c00191{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.mb8_c00191{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.m8d_c00191{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.mb0_c00191{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.mb3_c00191{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.m4c_c00191{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.maa_c00191{transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);}
.m64_c00191{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.ma4_c00191{transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);}
.m39_c00191{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m45_c00191{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m54_c00191{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m86_c00191{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m79_c00191{transform:matrix(0.485882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485882,0.000000,0.000000,0.250000,0,0);}
.m94_c00191{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m6f_c00191{transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);}
.m92_c00191{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m0_c00191{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m1d_c00191{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m27_c00191{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mbb_c00191{transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);}
.mac_c00191{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.m1b_c00191{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m15_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);}
.m14_c00191{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m17_c00191{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mae_c00191{transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);}
.m72_c00191{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m61_c00191{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m3a_c00191{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m5c_c00191{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m2_c00191{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m52_c00191{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m25_c00191{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mb5_c00191{transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);}
.m4b_c00191{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m75_c00191{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m33_c00191{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m62_c00191{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m7a_c00191{transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);}
.mb_c00191{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m90_c00191{transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);}
.m31_c00191{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m38_c00191{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.ma2_c00191{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.m22_c00191{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m5_c00191{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mb1_c00191{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m78_c00191{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.m7f_c00191{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.m7e_c00191{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m5d_c00191{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m3f_c00191{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m2b_c00191{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m16_c00191{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m12_c00191{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m4f_c00191{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m4a_c00191{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m59_c00191{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m1c_c00191{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m6c_c00191{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m13_c00191{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.ma3_c00191{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m8f_c00191{transform:matrix(0.551762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551762,0.000000,0.000000,0.250000,0,0);}
.m42_c00191{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m53_c00191{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m2e_c00191{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m69_c00191{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m5a_c00191{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m73_c00191{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m66_c00191{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m5f_c00191{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m8e_c00191{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.maf_c00191{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m6b_c00191{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m6e_c00191{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m71_c00191{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_c00191{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m35_c00191{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m70_c00191{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m37_c00191{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m9b_c00191{transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);}
.m7d_c00191{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m2f_c00191{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m4_c00191{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.m3c_c00191{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m77_c00191{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m5b_c00191{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.ma9_c00191{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.md_c00191{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m84_c00191{transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);}
.mc_c00191{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m1_c00191{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.m83_c00191{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m40_c00191{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m8b_c00191{transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);}
.m74_c00191{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.ma8_c00191{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m32_c00191{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_c00191{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m76_c00191{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.m23_c00191{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m58_c00191{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m46_c00191{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m88_c00191{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m8_c00191{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m97_c00191{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m3_c00191{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m6d_c00191{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.m91_c00191{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mad_c00191{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.m89_c00191{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mb9_c00191{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m9f_c00191{transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);}
.m8c_c00191{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.mb4_c00191{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m9_c00191{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.m93_c00191{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m41_c00191{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m6_c00191{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m98_c00191{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m18_c00191{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m68_c00191{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mb2_c00191{transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);}
.m1a_c00191{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m3d_c00191{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.ma7_c00191{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.mab_c00191{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.mf_c00191{transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);}
.m9e_c00191{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m21_c00191{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.ma5_c00191{transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);}
.m1e_c00191{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m9c_c00191{transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);}
.m51_c00191{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.ma1_c00191{transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);}
.m99_c00191{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m9d_c00191{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.ma6_c00191{transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);}
.mb7_c00191{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m60_c00191{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00191{vertical-align:-6.000000px;}
.v0_c00191{vertical-align:0.000000px;}
.ls1_c00191{letter-spacing:0.000000px;}
.ls0_c00191{letter-spacing:51.359972px;}
.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;}
}
.ws6_c00191{word-spacing:-59.314052px;}
.ws0_c00191{word-spacing:-6.386467px;}
.ws1_c00191{word-spacing:-5.844344px;}
.ws18_c00191{word-spacing:0.000000px;}
.ws10_c00191{word-spacing:17.262919px;}
.ws14_c00191{word-spacing:18.138913px;}
.wsc_c00191{word-spacing:23.728109px;}
.ws16_c00191{word-spacing:25.643046px;}
.ws12_c00191{word-spacing:25.883172px;}
.ws17_c00191{word-spacing:30.234255px;}
.ws15_c00191{word-spacing:30.607622px;}
.ws11_c00191{word-spacing:31.025931px;}
.wsb_c00191{word-spacing:31.838295px;}
.ws5_c00191{word-spacing:36.857815px;}
.wse_c00191{word-spacing:38.324009px;}
.ws8_c00191{word-spacing:38.705522px;}
.ws13_c00191{word-spacing:39.052735px;}
.wsd_c00191{word-spacing:39.071774px;}
.ws4_c00191{word-spacing:40.005669px;}
.ws7_c00191{word-spacing:40.994598px;}
.ws2_c00191{word-spacing:42.893943px;}
.ws3_c00191{word-spacing:47.719225px;}
.ws9_c00191{word-spacing:49.006362px;}
.wsf_c00191{word-spacing:70.043577px;}
.wsa_c00191{word-spacing:76.250880px;}
._0_c00191{margin-left:-51.359972px;}
._c_c00191{width:23.061936px;}
._b_c00191{width:27.372062px;}
._e_c00191{width:29.604933px;}
._d_c00191{width:31.721093px;}
._a_c00191{width:33.837252px;}
._3_c00191{width:42.081451px;}
._5_c00191{width:46.659602px;}
._4_c00191{width:48.948678px;}
._6_c00191{width:51.619266px;}
._1_c00191{width:56.960442px;}
._2_c00191{width:59.631031px;}
._7_c00191{width:81.626272px;}
._9_c00191{width:85.057003px;}
._8_c00191{width:88.487733px;}
.fc0_c00191{color:transparent;}
.fs6_c00191{font-size:3.420000px;}
.fs8_c00191{font-size:11.880000px;}
.fs7_c00191{font-size:13.620000px;}
.fs3_c00191{font-size:18.720000px;}
.fs1_c00191{font-size:20.400000px;}
.fs2_c00191{font-size:25.500000px;}
.fs0_c00191{font-size:28.920000px;}
.fs4_c00191{font-size:32.340000px;}
.fs5_c00191{font-size:35.700000px;}
.y0_c00191{bottom:0.000000px;}
.ybe_c00191{bottom:249.195000px;}
.ybd_c00191{bottom:249.630000px;}
.ybc_c00191{bottom:260.550000px;}
.yb9_c00191{bottom:263.130000px;}
.yba_c00191{bottom:263.775000px;}
.yb8_c00191{bottom:264.195000px;}
.ybb_c00191{bottom:264.420000px;}
.yb3_c00191{bottom:276.195000px;}
.yb4_c00191{bottom:276.630000px;}
.yb5_c00191{bottom:277.275000px;}
.yb7_c00191{bottom:277.695000px;}
.yb6_c00191{bottom:279.420000px;}
.yb2_c00191{bottom:290.130000px;}
.yb0_c00191{bottom:290.775000px;}
.yb1_c00191{bottom:291.195000px;}
.yaf_c00191{bottom:291.630000px;}
.yad_c00191{bottom:303.630000px;}
.yac_c00191{bottom:304.695000px;}
.yae_c00191{bottom:305.130000px;}
.yab_c00191{bottom:305.775000px;}
.yaa_c00191{bottom:306.195000px;}
.ya6_c00191{bottom:317.550000px;}
.ya9_c00191{bottom:318.195000px;}
.ya7_c00191{bottom:318.630000px;}
.ya8_c00191{bottom:319.695000px;}
.ya5_c00191{bottom:331.695000px;}
.ya4_c00191{bottom:332.130000px;}
.ya3_c00191{bottom:333.195000px;}
.ya2_c00191{bottom:334.695000px;}
.ya1_c00191{bottom:345.630000px;}
.ya0_c00191{bottom:346.695000px;}
.y9f_c00191{bottom:347.130000px;}
.y9e_c00191{bottom:359.130000px;}
.y9d_c00191{bottom:360.195000px;}
.y9c_c00191{bottom:360.630000px;}
.y9b_c00191{bottom:361.695000px;}
.y9a_c00191{bottom:373.695000px;}
.y98_c00191{bottom:374.130000px;}
.y99_c00191{bottom:375.195000px;}
.y97_c00191{bottom:387.195000px;}
.y95_c00191{bottom:387.630000px;}
.y96_c00191{bottom:388.695000px;}
.y94_c00191{bottom:400.695000px;}
.y92_c00191{bottom:401.130000px;}
.y93_c00191{bottom:402.195000px;}
.y91_c00191{bottom:403.695000px;}
.y90_c00191{bottom:414.630000px;}
.y8f_c00191{bottom:415.695000px;}
.y8c_c00191{bottom:416.130000px;}
.y8d_c00191{bottom:416.775000px;}
.y8e_c00191{bottom:417.195000px;}
.y8b_c00191{bottom:428.130000px;}
.y8a_c00191{bottom:429.195000px;}
.y89_c00191{bottom:429.630000px;}
.y88_c00191{bottom:441.630000px;}
.y86_c00191{bottom:443.130000px;}
.y87_c00191{bottom:444.195000px;}
.y85_c00191{bottom:459.195000px;}
.y84_c00191{bottom:471.195000px;}
.y83_c00191{bottom:472.695000px;}
.y82_c00191{bottom:484.695000px;}
.y81_c00191{bottom:486.195000px;}
.y80_c00191{bottom:498.195000px;}
.y7f_c00191{bottom:499.695000px;}
.y7e_c00191{bottom:511.695000px;}
.y7d_c00191{bottom:512.130000px;}
.y7c_c00191{bottom:513.195000px;}
.y7b_c00191{bottom:526.695000px;}
.y7a_c00191{bottom:527.130000px;}
.y79_c00191{bottom:528.195000px;}
.y77_c00191{bottom:539.130000px;}
.y75_c00191{bottom:539.550000px;}
.y78_c00191{bottom:540.195000px;}
.y74_c00191{bottom:540.630000px;}
.y76_c00191{bottom:541.695000px;}
.y73_c00191{bottom:552.630000px;}
.y72_c00191{bottom:553.695000px;}
.y71_c00191{bottom:554.130000px;}
.y70_c00191{bottom:555.195000px;}
.y6f_c00191{bottom:567.195000px;}
.y6e_c00191{bottom:567.630000px;}
.y6d_c00191{bottom:568.695000px;}
.y6c_c00191{bottom:581.130000px;}
.y6a_c00191{bottom:582.195000px;}
.y6b_c00191{bottom:582.630000px;}
.y69_c00191{bottom:594.630000px;}
.y68_c00191{bottom:595.695000px;}
.y67_c00191{bottom:609.195000px;}
.y66_c00191{bottom:609.630000px;}
.y65_c00191{bottom:610.695000px;}
.y64_c00191{bottom:622.695000px;}
.y63_c00191{bottom:623.130000px;}
.y62_c00191{bottom:624.195000px;}
.y60_c00191{bottom:636.630000px;}
.y61_c00191{bottom:637.695000px;}
.y5f_c00191{bottom:638.130000px;}
.y5e_c00191{bottom:651.195000px;}
.y5d_c00191{bottom:652.695000px;}
.y5b_c00191{bottom:663.630000px;}
.y5c_c00191{bottom:664.695000px;}
.y5a_c00191{bottom:666.195000px;}
.y59_c00191{bottom:683.130000px;}
.y58_c00191{bottom:684.195000px;}
.y57_c00191{bottom:696.195000px;}
.y55_c00191{bottom:696.630000px;}
.y56_c00191{bottom:697.695000px;}
.y54_c00191{bottom:711.195000px;}
.y53_c00191{bottom:726.825000px;}
.y52_c00191{bottom:728.970000px;}
.y50_c00191{bottom:743.130000px;}
.y4f_c00191{bottom:743.550000px;}
.y4e_c00191{bottom:743.970000px;}
.y51_c00191{bottom:745.050000px;}
.y4d_c00191{bottom:767.550000px;}
.y4c_c00191{bottom:767.970000px;}
.y46_c00191{bottom:802.245000px;}
.y4b_c00191{bottom:803.550000px;}
.y4a_c00191{bottom:803.745000px;}
.y48_c00191{bottom:804.405000px;}
.y47_c00191{bottom:804.630000px;}
.y49_c00191{bottom:805.905000px;}
.y42_c00191{bottom:821.325000px;}
.y44_c00191{bottom:822.405000px;}
.y45_c00191{bottom:823.245000px;}
.y43_c00191{bottom:824.130000px;}
.y40_c00191{bottom:825.405000px;}
.y41_c00191{bottom:825.420000px;}
.y3f_c00191{bottom:841.905000px;}
.y3e_c00191{bottom:842.745000px;}
.y3c_c00191{bottom:844.905000px;}
.y3d_c00191{bottom:845.130000px;}
.y3b_c00191{bottom:863.130000px;}
.y3a_c00191{bottom:863.970000px;}
.y39_c00191{bottom:864.405000px;}
.y38_c00191{bottom:865.470000px;}
.y35_c00191{bottom:881.745000px;}
.y36_c00191{bottom:883.905000px;}
.y37_c00191{bottom:884.130000px;}
.y31_c00191{bottom:900.405000px;}
.y2f_c00191{bottom:901.245000px;}
.y34_c00191{bottom:902.745000px;}
.y32_c00191{bottom:903.405000px;}
.y30_c00191{bottom:903.630000px;}
.y33_c00191{bottom:904.905000px;}
.y2e_c00191{bottom:920.745000px;}
.y2c_c00191{bottom:921.825000px;}
.y2d_c00191{bottom:922.245000px;}
.y28_c00191{bottom:922.905000px;}
.y2b_c00191{bottom:923.325000px;}
.y29_c00191{bottom:923.970000px;}
.y2a_c00191{bottom:924.405000px;}
.y26_c00191{bottom:940.245000px;}
.y27_c00191{bottom:941.325000px;}
.y25_c00191{bottom:942.405000px;}
.y24_c00191{bottom:942.630000px;}
.y23_c00191{bottom:943.905000px;}
.y1f_c00191{bottom:961.245000px;}
.y22_c00191{bottom:961.905000px;}
.y21_c00191{bottom:962.130000px;}
.y20_c00191{bottom:962.970000px;}
.y1e_c00191{bottom:963.405000px;}
.y1d_c00191{bottom:979.470000px;}
.y1b_c00191{bottom:980.745000px;}
.y19_c00191{bottom:981.405000px;}
.y1a_c00191{bottom:981.630000px;}
.y1c_c00191{bottom:982.905000px;}
.y15_c00191{bottom:1000.245000px;}
.y18_c00191{bottom:1000.905000px;}
.y17_c00191{bottom:1001.130000px;}
.y16_c00191{bottom:1001.325000px;}
.y14_c00191{bottom:1002.405000px;}
.y11_c00191{bottom:1018.470000px;}
.y13_c00191{bottom:1018.905000px;}
.y10_c00191{bottom:1019.745000px;}
.yf_c00191{bottom:1020.630000px;}
.ye_c00191{bottom:1021.905000px;}
.y12_c00191{bottom:1022.970000px;}
.ya_c00191{bottom:1039.245000px;}
.yd_c00191{bottom:1040.970000px;}
.yb_c00191{bottom:1041.405000px;}
.yc_c00191{bottom:1042.470000px;}
.y8_c00191{bottom:1058.745000px;}
.y6_c00191{bottom:1059.825000px;}
.y9_c00191{bottom:1060.050000px;}
.y4_c00191{bottom:1060.470000px;}
.y3_c00191{bottom:1060.905000px;}
.y5_c00191{bottom:1061.130000px;}
.y7_c00191{bottom:1061.970000px;}
.y2_c00191{bottom:1099.050000px;}
.y1_c00191{bottom:1099.905000px;}
.h7_c00191{height:4.206533px;}
.h9_c00191{height:14.612168px;}
.h8_c00191{height:16.752334px;}
.h4_c00191{height:23.025234px;}
.h2_c00191{height:25.091602px;}
.h3_c00191{height:31.364502px;}
.h1_c00191{height:35.571035px;}
.h5_c00191{height:39.777568px;}
.h6_c00191{height:43.910303px;}
.h0_c00191{height:1335.000000px;}
.w0_c00191{width:880.500000px;}
.x0_c00191{left:0.000000px;}
.x1_c00191{left:151.920000px;}
.x5a_c00191{left:153.420000px;}
.x7f_c00191{left:154.920000px;}
.x75_c00191{left:168.000000px;}
.x3_c00191{left:173.580000px;}
.x63_c00191{left:175.500000px;}
.x5b_c00191{left:178.080000px;}
.x38_c00191{left:187.500000px;}
.x43_c00191{left:192.000000px;}
.x4_c00191{left:193.080000px;}
.x76_c00191{left:200.580000px;}
.x89_c00191{left:205.500000px;}
.x4f_c00191{left:207.000000px;}
.x39_c00191{left:214.920000px;}
.x6e_c00191{left:217.080000px;}
.x5c_c00191{left:219.000000px;}
.x1e_c00191{left:225.420000px;}
.x64_c00191{left:229.500000px;}
.x8a_c00191{left:231.420000px;}
.x81_c00191{left:238.500000px;}
.x5_c00191{left:240.420000px;}
.x12_c00191{left:244.500000px;}
.xac_c00191{left:246.000000px;}
.x44_c00191{left:247.500000px;}
.x94_c00191{left:250.500000px;}
.x1f_c00191{left:253.500000px;}
.xb9_c00191{left:258.000000px;}
.x82_c00191{left:259.500000px;}
.x8b_c00191{left:261.000000px;}
.x45_c00191{left:262.500000px;}
.x6f_c00191{left:264.000000px;}
.x6_c00191{left:267.420000px;}
.x9c_c00191{left:268.500000px;}
.xa0_c00191{left:269.580000px;}
.x65_c00191{left:274.500000px;}
.xaa_c00191{left:279.420000px;}
.x13_c00191{left:280.500000px;}
.x3a_c00191{left:283.080000px;}
.x2c_c00191{left:285.420000px;}
.xbb_c00191{left:286.500000px;}
.x50_c00191{left:288.000000px;}
.x66_c00191{left:289.500000px;}
.x8c_c00191{left:290.580000px;}
.x77_c00191{left:292.500000px;}
.x20_c00191{left:294.000000px;}
.xb7_c00191{left:295.500000px;}
.xb1_c00191{left:297.000000px;}
.xae_c00191{left:301.080000px;}
.xb8_c00191{left:304.080000px;}
.x7_c00191{left:306.000000px;}
.x14_c00191{left:307.500000px;}
.x95_c00191{left:308.580000px;}
.xa6_c00191{left:310.500000px;}
.x5d_c00191{left:312.000000px;}
.x51_c00191{left:313.500000px;}
.x46_c00191{left:316.920000px;}
.xb0_c00191{left:319.080000px;}
.xa8_c00191{left:328.080000px;}
.x5e_c00191{left:330.420000px;}
.x78_c00191{left:331.500000px;}
.x2d_c00191{left:334.080000px;}
.x96_c00191{left:336.000000px;}
.x21_c00191{left:337.500000px;}
.x3b_c00191{left:342.000000px;}
.xbc_c00191{left:345.000000px;}
.x8_c00191{left:348.420000px;}
.x15_c00191{left:349.500000px;}
.xb2_c00191{left:351.000000px;}
.x2e_c00191{left:352.080000px;}
.xbd_c00191{left:354.420000px;}
.x3c_c00191{left:362.580000px;}
.x9_c00191{left:367.500000px;}
.x97_c00191{left:369.000000px;}
.x70_c00191{left:372.420000px;}
.x47_c00191{left:377.580000px;}
.x2f_c00191{left:390.000000px;}
.x80_c00191{left:392.580000px;}
.x22_c00191{left:394.500000px;}
.x5f_c00191{left:396.420000px;}
.x2_c00191{left:399.000000px;}
.xa_c00191{left:402.420000px;}
.x52_c00191{left:403.920000px;}
.x16_c00191{left:406.500000px;}
.x92_c00191{left:414.000000px;}
.x67_c00191{left:415.920000px;}
.x9e_c00191{left:418.500000px;}
.xa5_c00191{left:420.000000px;}
.x23_c00191{left:421.500000px;}
.x30_c00191{left:422.580000px;}
.x3d_c00191{left:427.080000px;}
.x83_c00191{left:428.355000px;}
.xb_c00191{left:430.500000px;}
.x79_c00191{left:433.080000px;}
.x48_c00191{left:436.920000px;}
.x31_c00191{left:442.500000px;}
.x71_c00191{left:444.000000px;}
.x17_c00191{left:447.420000px;}
.x9d_c00191{left:449.580000px;}
.x68_c00191{left:451.920000px;}
.x7a_c00191{left:453.420000px;}
.xa7_c00191{left:454.500000px;}
.xa3_c00191{left:456.000000px;}
.x93_c00191{left:457.920000px;}
.xb3_c00191{left:459.000000px;}
.x98_c00191{left:460.080000px;}
.x60_c00191{left:465.000000px;}
.x84_c00191{left:468.000000px;}
.x53_c00191{left:475.500000px;}
.x99_c00191{left:477.000000px;}
.x69_c00191{left:478.080000px;}
.x7b_c00191{left:479.580000px;}
.x72_c00191{left:481.500000px;}
.xc_c00191{left:482.580000px;}
.x49_c00191{left:484.080000px;}
.x8d_c00191{left:485.580000px;}
.x85_c00191{left:487.500000px;}
.x3e_c00191{left:490.500000px;}
.xa4_c00191{left:492.000000px;}
.x24_c00191{left:493.500000px;}
.xb4_c00191{left:495.000000px;}
.xab_c00191{left:496.500000px;}
.x4a_c00191{left:501.000000px;}
.x9a_c00191{left:502.500000px;}
.x18_c00191{left:504.420000px;}
.x25_c00191{left:517.500000px;}
.x54_c00191{left:520.920000px;}
.x3f_c00191{left:523.500000px;}
.x4b_c00191{left:528.000000px;}
.x26_c00191{left:531.000000px;}
.x9f_c00191{left:532.500000px;}
.x73_c00191{left:535.920000px;}
.x6a_c00191{left:538.920000px;}
.x32_c00191{left:540.000000px;}
.xa2_c00191{left:541.500000px;}
.xd_c00191{left:544.500000px;}
.x8e_c00191{left:547.500000px;}
.x7c_c00191{left:552.420000px;}
.x61_c00191{left:553.500000px;}
.x55_c00191{left:555.420000px;}
.x86_c00191{left:559.920000px;}
.x9b_c00191{left:562.500000px;}
.x33_c00191{left:566.580000px;}
.x4c_c00191{left:570.000000px;}
.xaf_c00191{left:571.500000px;}
.xe_c00191{left:573.000000px;}
.x27_c00191{left:574.080000px;}
.xb5_c00191{left:576.000000px;}
.x19_c00191{left:580.500000px;}
.x56_c00191{left:582.000000px;}
.x34_c00191{left:586.080000px;}
.x6b_c00191{left:589.080000px;}
.x28_c00191{left:593.580000px;}
.x8f_c00191{left:595.920000px;}
.x1a_c00191{left:600.420000px;}
.xf_c00191{left:603.000000px;}
.x40_c00191{left:608.580000px;}
.x6c_c00191{left:610.920000px;}
.xad_c00191{left:612.000000px;}
.xa1_c00191{left:613.500000px;}
.xa9_c00191{left:615.000000px;}
.xba_c00191{left:616.500000px;}
.xb6_c00191{left:618.000000px;}
.x4d_c00191{left:624.000000px;}
.x90_c00191{left:625.500000px;}
.x1b_c00191{left:627.000000px;}
.x35_c00191{left:631.500000px;}
.x57_c00191{left:636.000000px;}
.x7d_c00191{left:638.580000px;}
.x29_c00191{left:640.920000px;}
.x6d_c00191{left:646.500000px;}
.x10_c00191{left:650.580000px;}
.x4e_c00191{left:655.500000px;}
.x74_c00191{left:656.580000px;}
.x1c_c00191{left:658.500000px;}
.x62_c00191{left:661.920000px;}
.x2a_c00191{left:666.420000px;}
.x41_c00191{left:669.420000px;}
.x58_c00191{left:670.500000px;}
.x36_c00191{left:675.000000px;}
.x91_c00191{left:678.000000px;}
.x59_c00191{left:685.500000px;}
.x11_c00191{left:687.420000px;}
.x87_c00191{left:689.580000px;}
.x42_c00191{left:694.500000px;}
.x7e_c00191{left:699.000000px;}
.x37_c00191{left:704.580000px;}
.x2b_c00191{left:708.420000px;}
.x1d_c00191{left:715.500000px;}
.x88_c00191{left:720.000000px;}
@media print{
.v1_c00191{vertical-align:-5.333333pt;}
.v0_c00191{vertical-align:0.000000pt;}
.ls1_c00191{letter-spacing:0.000000pt;}
.ls0_c00191{letter-spacing:45.653309pt;}
.ws6_c00191{word-spacing:-52.723602pt;}
.ws0_c00191{word-spacing:-5.676860pt;}
.ws1_c00191{word-spacing:-5.194972pt;}
.ws18_c00191{word-spacing:0.000000pt;}
.ws10_c00191{word-spacing:15.344817pt;}
.ws14_c00191{word-spacing:16.123479pt;}
.wsc_c00191{word-spacing:21.091652pt;}
.ws16_c00191{word-spacing:22.793818pt;}
.ws12_c00191{word-spacing:23.007264pt;}
.ws17_c00191{word-spacing:26.874893pt;}
.ws15_c00191{word-spacing:27.206775pt;}
.ws11_c00191{word-spacing:27.578605pt;}
.wsb_c00191{word-spacing:28.300707pt;}
.ws5_c00191{word-spacing:32.762503pt;}
.wse_c00191{word-spacing:34.065786pt;}
.ws8_c00191{word-spacing:34.404908pt;}
.ws13_c00191{word-spacing:34.713542pt;}
.wsd_c00191{word-spacing:34.730466pt;}
.ws4_c00191{word-spacing:35.560594pt;}
.ws7_c00191{word-spacing:36.439642pt;}
.ws2_c00191{word-spacing:38.127949pt;}
.ws3_c00191{word-spacing:42.417089pt;}
.ws9_c00191{word-spacing:43.561211pt;}
.wsf_c00191{word-spacing:62.260958pt;}
.wsa_c00191{word-spacing:67.778560pt;}
._0_c00191{margin-left:-45.653309pt;}
._c_c00191{width:20.499498pt;}
._b_c00191{width:24.330722pt;}
._e_c00191{width:26.315496pt;}
._d_c00191{width:28.196527pt;}
._a_c00191{width:30.077557pt;}
._3_c00191{width:37.405734pt;}
._5_c00191{width:41.475202pt;}
._4_c00191{width:43.509936pt;}
._6_c00191{width:45.883792pt;}
._1_c00191{width:50.631504pt;}
._2_c00191{width:53.005361pt;}
._7_c00191{width:72.556687pt;}
._9_c00191{width:75.606225pt;}
._8_c00191{width:78.655763pt;}
.fs6_c00191{font-size:3.040000pt;}
.fs8_c00191{font-size:10.560000pt;}
.fs7_c00191{font-size:12.106667pt;}
.fs3_c00191{font-size:16.640000pt;}
.fs1_c00191{font-size:18.133333pt;}
.fs2_c00191{font-size:22.666667pt;}
.fs0_c00191{font-size:25.706667pt;}
.fs4_c00191{font-size:28.746667pt;}
.fs5_c00191{font-size:31.733333pt;}
.y0_c00191{bottom:0.000000pt;}
.ybe_c00191{bottom:221.506667pt;}
.ybd_c00191{bottom:221.893333pt;}
.ybc_c00191{bottom:231.600000pt;}
.yb9_c00191{bottom:233.893333pt;}
.yba_c00191{bottom:234.466667pt;}
.yb8_c00191{bottom:234.840000pt;}
.ybb_c00191{bottom:235.040000pt;}
.yb3_c00191{bottom:245.506667pt;}
.yb4_c00191{bottom:245.893333pt;}
.yb5_c00191{bottom:246.466667pt;}
.yb7_c00191{bottom:246.840000pt;}
.yb6_c00191{bottom:248.373333pt;}
.yb2_c00191{bottom:257.893333pt;}
.yb0_c00191{bottom:258.466667pt;}
.yb1_c00191{bottom:258.840000pt;}
.yaf_c00191{bottom:259.226667pt;}
.yad_c00191{bottom:269.893333pt;}
.yac_c00191{bottom:270.840000pt;}
.yae_c00191{bottom:271.226667pt;}
.yab_c00191{bottom:271.800000pt;}
.yaa_c00191{bottom:272.173333pt;}
.ya6_c00191{bottom:282.266667pt;}
.ya9_c00191{bottom:282.840000pt;}
.ya7_c00191{bottom:283.226667pt;}
.ya8_c00191{bottom:284.173333pt;}
.ya5_c00191{bottom:294.840000pt;}
.ya4_c00191{bottom:295.226667pt;}
.ya3_c00191{bottom:296.173333pt;}
.ya2_c00191{bottom:297.506667pt;}
.ya1_c00191{bottom:307.226667pt;}
.ya0_c00191{bottom:308.173333pt;}
.y9f_c00191{bottom:308.560000pt;}
.y9e_c00191{bottom:319.226667pt;}
.y9d_c00191{bottom:320.173333pt;}
.y9c_c00191{bottom:320.560000pt;}
.y9b_c00191{bottom:321.506667pt;}
.y9a_c00191{bottom:332.173333pt;}
.y98_c00191{bottom:332.560000pt;}
.y99_c00191{bottom:333.506667pt;}
.y97_c00191{bottom:344.173333pt;}
.y95_c00191{bottom:344.560000pt;}
.y96_c00191{bottom:345.506667pt;}
.y94_c00191{bottom:356.173333pt;}
.y92_c00191{bottom:356.560000pt;}
.y93_c00191{bottom:357.506667pt;}
.y91_c00191{bottom:358.840000pt;}
.y90_c00191{bottom:368.560000pt;}
.y8f_c00191{bottom:369.506667pt;}
.y8c_c00191{bottom:369.893333pt;}
.y8d_c00191{bottom:370.466667pt;}
.y8e_c00191{bottom:370.840000pt;}
.y8b_c00191{bottom:380.560000pt;}
.y8a_c00191{bottom:381.506667pt;}
.y89_c00191{bottom:381.893333pt;}
.y88_c00191{bottom:392.560000pt;}
.y86_c00191{bottom:393.893333pt;}
.y87_c00191{bottom:394.840000pt;}
.y85_c00191{bottom:408.173333pt;}
.y84_c00191{bottom:418.840000pt;}
.y83_c00191{bottom:420.173333pt;}
.y82_c00191{bottom:430.840000pt;}
.y81_c00191{bottom:432.173333pt;}
.y80_c00191{bottom:442.840000pt;}
.y7f_c00191{bottom:444.173333pt;}
.y7e_c00191{bottom:454.840000pt;}
.y7d_c00191{bottom:455.226667pt;}
.y7c_c00191{bottom:456.173333pt;}
.y7b_c00191{bottom:468.173333pt;}
.y7a_c00191{bottom:468.560000pt;}
.y79_c00191{bottom:469.506667pt;}
.y77_c00191{bottom:479.226667pt;}
.y75_c00191{bottom:479.600000pt;}
.y78_c00191{bottom:480.173333pt;}
.y74_c00191{bottom:480.560000pt;}
.y76_c00191{bottom:481.506667pt;}
.y73_c00191{bottom:491.226667pt;}
.y72_c00191{bottom:492.173333pt;}
.y71_c00191{bottom:492.560000pt;}
.y70_c00191{bottom:493.506667pt;}
.y6f_c00191{bottom:504.173333pt;}
.y6e_c00191{bottom:504.560000pt;}
.y6d_c00191{bottom:505.506667pt;}
.y6c_c00191{bottom:516.560000pt;}
.y6a_c00191{bottom:517.506667pt;}
.y6b_c00191{bottom:517.893333pt;}
.y69_c00191{bottom:528.560000pt;}
.y68_c00191{bottom:529.506667pt;}
.y67_c00191{bottom:541.506667pt;}
.y66_c00191{bottom:541.893333pt;}
.y65_c00191{bottom:542.840000pt;}
.y64_c00191{bottom:553.506667pt;}
.y63_c00191{bottom:553.893333pt;}
.y62_c00191{bottom:554.840000pt;}
.y60_c00191{bottom:565.893333pt;}
.y61_c00191{bottom:566.840000pt;}
.y5f_c00191{bottom:567.226667pt;}
.y5e_c00191{bottom:578.840000pt;}
.y5d_c00191{bottom:580.173333pt;}
.y5b_c00191{bottom:589.893333pt;}
.y5c_c00191{bottom:590.840000pt;}
.y5a_c00191{bottom:592.173333pt;}
.y59_c00191{bottom:607.226667pt;}
.y58_c00191{bottom:608.173333pt;}
.y57_c00191{bottom:618.840000pt;}
.y55_c00191{bottom:619.226667pt;}
.y56_c00191{bottom:620.173333pt;}
.y54_c00191{bottom:632.173333pt;}
.y53_c00191{bottom:646.066667pt;}
.y52_c00191{bottom:647.973333pt;}
.y50_c00191{bottom:660.560000pt;}
.y4f_c00191{bottom:660.933333pt;}
.y4e_c00191{bottom:661.306667pt;}
.y51_c00191{bottom:662.266667pt;}
.y4d_c00191{bottom:682.266667pt;}
.y4c_c00191{bottom:682.640000pt;}
.y46_c00191{bottom:713.106667pt;}
.y4b_c00191{bottom:714.266667pt;}
.y4a_c00191{bottom:714.440000pt;}
.y48_c00191{bottom:715.026667pt;}
.y47_c00191{bottom:715.226667pt;}
.y49_c00191{bottom:716.360000pt;}
.y42_c00191{bottom:730.066667pt;}
.y44_c00191{bottom:731.026667pt;}
.y45_c00191{bottom:731.773333pt;}
.y43_c00191{bottom:732.560000pt;}
.y40_c00191{bottom:733.693333pt;}
.y41_c00191{bottom:733.706667pt;}
.y3f_c00191{bottom:748.360000pt;}
.y3e_c00191{bottom:749.106667pt;}
.y3c_c00191{bottom:751.026667pt;}
.y3d_c00191{bottom:751.226667pt;}
.y3b_c00191{bottom:767.226667pt;}
.y3a_c00191{bottom:767.973333pt;}
.y39_c00191{bottom:768.360000pt;}
.y38_c00191{bottom:769.306667pt;}
.y35_c00191{bottom:783.773333pt;}
.y36_c00191{bottom:785.693333pt;}
.y37_c00191{bottom:785.893333pt;}
.y31_c00191{bottom:800.360000pt;}
.y2f_c00191{bottom:801.106667pt;}
.y34_c00191{bottom:802.440000pt;}
.y32_c00191{bottom:803.026667pt;}
.y30_c00191{bottom:803.226667pt;}
.y33_c00191{bottom:804.360000pt;}
.y2e_c00191{bottom:818.440000pt;}
.y2c_c00191{bottom:819.400000pt;}
.y2d_c00191{bottom:819.773333pt;}
.y28_c00191{bottom:820.360000pt;}
.y2b_c00191{bottom:820.733333pt;}
.y29_c00191{bottom:821.306667pt;}
.y2a_c00191{bottom:821.693333pt;}
.y26_c00191{bottom:835.773333pt;}
.y27_c00191{bottom:836.733333pt;}
.y25_c00191{bottom:837.693333pt;}
.y24_c00191{bottom:837.893333pt;}
.y23_c00191{bottom:839.026667pt;}
.y1f_c00191{bottom:854.440000pt;}
.y22_c00191{bottom:855.026667pt;}
.y21_c00191{bottom:855.226667pt;}
.y20_c00191{bottom:855.973333pt;}
.y1e_c00191{bottom:856.360000pt;}
.y1d_c00191{bottom:870.640000pt;}
.y1b_c00191{bottom:871.773333pt;}
.y19_c00191{bottom:872.360000pt;}
.y1a_c00191{bottom:872.560000pt;}
.y1c_c00191{bottom:873.693333pt;}
.y15_c00191{bottom:889.106667pt;}
.y18_c00191{bottom:889.693333pt;}
.y17_c00191{bottom:889.893333pt;}
.y16_c00191{bottom:890.066667pt;}
.y14_c00191{bottom:891.026667pt;}
.y11_c00191{bottom:905.306667pt;}
.y13_c00191{bottom:905.693333pt;}
.y10_c00191{bottom:906.440000pt;}
.yf_c00191{bottom:907.226667pt;}
.ye_c00191{bottom:908.360000pt;}
.y12_c00191{bottom:909.306667pt;}
.ya_c00191{bottom:923.773333pt;}
.yd_c00191{bottom:925.306667pt;}
.yb_c00191{bottom:925.693333pt;}
.yc_c00191{bottom:926.640000pt;}
.y8_c00191{bottom:941.106667pt;}
.y6_c00191{bottom:942.066667pt;}
.y9_c00191{bottom:942.266667pt;}
.y4_c00191{bottom:942.640000pt;}
.y3_c00191{bottom:943.026667pt;}
.y5_c00191{bottom:943.226667pt;}
.y7_c00191{bottom:943.973333pt;}
.y2_c00191{bottom:976.933333pt;}
.y1_c00191{bottom:977.693333pt;}
.h7_c00191{height:3.739141pt;}
.h9_c00191{height:12.988594pt;}
.h8_c00191{height:14.890964pt;}
.h4_c00191{height:20.466875pt;}
.h2_c00191{height:22.303646pt;}
.h3_c00191{height:27.879557pt;}
.h1_c00191{height:31.618698pt;}
.h5_c00191{height:35.357839pt;}
.h6_c00191{height:39.031380pt;}
.h0_c00191{height:1186.666667pt;}
.w0_c00191{width:782.666667pt;}
.x0_c00191{left:0.000000pt;}
.x1_c00191{left:135.040000pt;}
.x5a_c00191{left:136.373333pt;}
.x7f_c00191{left:137.706667pt;}
.x75_c00191{left:149.333333pt;}
.x3_c00191{left:154.293333pt;}
.x63_c00191{left:156.000000pt;}
.x5b_c00191{left:158.293333pt;}
.x38_c00191{left:166.666667pt;}
.x43_c00191{left:170.666667pt;}
.x4_c00191{left:171.626667pt;}
.x76_c00191{left:178.293333pt;}
.x89_c00191{left:182.666667pt;}
.x4f_c00191{left:184.000000pt;}
.x39_c00191{left:191.040000pt;}
.x6e_c00191{left:192.960000pt;}
.x5c_c00191{left:194.666667pt;}
.x1e_c00191{left:200.373333pt;}
.x64_c00191{left:204.000000pt;}
.x8a_c00191{left:205.706667pt;}
.x81_c00191{left:212.000000pt;}
.x5_c00191{left:213.706667pt;}
.x12_c00191{left:217.333333pt;}
.xac_c00191{left:218.666667pt;}
.x44_c00191{left:220.000000pt;}
.x94_c00191{left:222.666667pt;}
.x1f_c00191{left:225.333333pt;}
.xb9_c00191{left:229.333333pt;}
.x82_c00191{left:230.666667pt;}
.x8b_c00191{left:232.000000pt;}
.x45_c00191{left:233.333333pt;}
.x6f_c00191{left:234.666667pt;}
.x6_c00191{left:237.706667pt;}
.x9c_c00191{left:238.666667pt;}
.xa0_c00191{left:239.626667pt;}
.x65_c00191{left:244.000000pt;}
.xaa_c00191{left:248.373333pt;}
.x13_c00191{left:249.333333pt;}
.x3a_c00191{left:251.626667pt;}
.x2c_c00191{left:253.706667pt;}
.xbb_c00191{left:254.666667pt;}
.x50_c00191{left:256.000000pt;}
.x66_c00191{left:257.333333pt;}
.x8c_c00191{left:258.293333pt;}
.x77_c00191{left:260.000000pt;}
.x20_c00191{left:261.333333pt;}
.xb7_c00191{left:262.666667pt;}
.xb1_c00191{left:264.000000pt;}
.xae_c00191{left:267.626667pt;}
.xb8_c00191{left:270.293333pt;}
.x7_c00191{left:272.000000pt;}
.x14_c00191{left:273.333333pt;}
.x95_c00191{left:274.293333pt;}
.xa6_c00191{left:276.000000pt;}
.x5d_c00191{left:277.333333pt;}
.x51_c00191{left:278.666667pt;}
.x46_c00191{left:281.706667pt;}
.xb0_c00191{left:283.626667pt;}
.xa8_c00191{left:291.626667pt;}
.x5e_c00191{left:293.706667pt;}
.x78_c00191{left:294.666667pt;}
.x2d_c00191{left:296.960000pt;}
.x96_c00191{left:298.666667pt;}
.x21_c00191{left:300.000000pt;}
.x3b_c00191{left:304.000000pt;}
.xbc_c00191{left:306.666667pt;}
.x8_c00191{left:309.706667pt;}
.x15_c00191{left:310.666667pt;}
.xb2_c00191{left:312.000000pt;}
.x2e_c00191{left:312.960000pt;}
.xbd_c00191{left:315.040000pt;}
.x3c_c00191{left:322.293333pt;}
.x9_c00191{left:326.666667pt;}
.x97_c00191{left:328.000000pt;}
.x70_c00191{left:331.040000pt;}
.x47_c00191{left:335.626667pt;}
.x2f_c00191{left:346.666667pt;}
.x80_c00191{left:348.960000pt;}
.x22_c00191{left:350.666667pt;}
.x5f_c00191{left:352.373333pt;}
.x2_c00191{left:354.666667pt;}
.xa_c00191{left:357.706667pt;}
.x52_c00191{left:359.040000pt;}
.x16_c00191{left:361.333333pt;}
.x92_c00191{left:368.000000pt;}
.x67_c00191{left:369.706667pt;}
.x9e_c00191{left:372.000000pt;}
.xa5_c00191{left:373.333333pt;}
.x23_c00191{left:374.666667pt;}
.x30_c00191{left:375.626667pt;}
.x3d_c00191{left:379.626667pt;}
.x83_c00191{left:380.760000pt;}
.xb_c00191{left:382.666667pt;}
.x79_c00191{left:384.960000pt;}
.x48_c00191{left:388.373333pt;}
.x31_c00191{left:393.333333pt;}
.x71_c00191{left:394.666667pt;}
.x17_c00191{left:397.706667pt;}
.x9d_c00191{left:399.626667pt;}
.x68_c00191{left:401.706667pt;}
.x7a_c00191{left:403.040000pt;}
.xa7_c00191{left:404.000000pt;}
.xa3_c00191{left:405.333333pt;}
.x93_c00191{left:407.040000pt;}
.xb3_c00191{left:408.000000pt;}
.x98_c00191{left:408.960000pt;}
.x60_c00191{left:413.333333pt;}
.x84_c00191{left:416.000000pt;}
.x53_c00191{left:422.666667pt;}
.x99_c00191{left:424.000000pt;}
.x69_c00191{left:424.960000pt;}
.x7b_c00191{left:426.293333pt;}
.x72_c00191{left:428.000000pt;}
.xc_c00191{left:428.960000pt;}
.x49_c00191{left:430.293333pt;}
.x8d_c00191{left:431.626667pt;}
.x85_c00191{left:433.333333pt;}
.x3e_c00191{left:436.000000pt;}
.xa4_c00191{left:437.333333pt;}
.x24_c00191{left:438.666667pt;}
.xb4_c00191{left:440.000000pt;}
.xab_c00191{left:441.333333pt;}
.x4a_c00191{left:445.333333pt;}
.x9a_c00191{left:446.666667pt;}
.x18_c00191{left:448.373333pt;}
.x25_c00191{left:460.000000pt;}
.x54_c00191{left:463.040000pt;}
.x3f_c00191{left:465.333333pt;}
.x4b_c00191{left:469.333333pt;}
.x26_c00191{left:472.000000pt;}
.x9f_c00191{left:473.333333pt;}
.x73_c00191{left:476.373333pt;}
.x6a_c00191{left:479.040000pt;}
.x32_c00191{left:480.000000pt;}
.xa2_c00191{left:481.333333pt;}
.xd_c00191{left:484.000000pt;}
.x8e_c00191{left:486.666667pt;}
.x7c_c00191{left:491.040000pt;}
.x61_c00191{left:492.000000pt;}
.x55_c00191{left:493.706667pt;}
.x86_c00191{left:497.706667pt;}
.x9b_c00191{left:500.000000pt;}
.x33_c00191{left:503.626667pt;}
.x4c_c00191{left:506.666667pt;}
.xaf_c00191{left:508.000000pt;}
.xe_c00191{left:509.333333pt;}
.x27_c00191{left:510.293333pt;}
.xb5_c00191{left:512.000000pt;}
.x19_c00191{left:516.000000pt;}
.x56_c00191{left:517.333333pt;}
.x34_c00191{left:520.960000pt;}
.x6b_c00191{left:523.626667pt;}
.x28_c00191{left:527.626667pt;}
.x8f_c00191{left:529.706667pt;}
.x1a_c00191{left:533.706667pt;}
.xf_c00191{left:536.000000pt;}
.x40_c00191{left:540.960000pt;}
.x6c_c00191{left:543.040000pt;}
.xad_c00191{left:544.000000pt;}
.xa1_c00191{left:545.333333pt;}
.xa9_c00191{left:546.666667pt;}
.xba_c00191{left:548.000000pt;}
.xb6_c00191{left:549.333333pt;}
.x4d_c00191{left:554.666667pt;}
.x90_c00191{left:556.000000pt;}
.x1b_c00191{left:557.333333pt;}
.x35_c00191{left:561.333333pt;}
.x57_c00191{left:565.333333pt;}
.x7d_c00191{left:567.626667pt;}
.x29_c00191{left:569.706667pt;}
.x6d_c00191{left:574.666667pt;}
.x10_c00191{left:578.293333pt;}
.x4e_c00191{left:582.666667pt;}
.x74_c00191{left:583.626667pt;}
.x1c_c00191{left:585.333333pt;}
.x62_c00191{left:588.373333pt;}
.x2a_c00191{left:592.373333pt;}
.x41_c00191{left:595.040000pt;}
.x58_c00191{left:596.000000pt;}
.x36_c00191{left:600.000000pt;}
.x91_c00191{left:602.666667pt;}
.x59_c00191{left:609.333333pt;}
.x11_c00191{left:611.040000pt;}
.x87_c00191{left:612.960000pt;}
.x42_c00191{left:617.333333pt;}
.x7e_c00191{left:621.333333pt;}
.x37_c00191{left:626.293333pt;}
.x2b_c00191{left:629.706667pt;}
.x1d_c00191{left:636.000000pt;}
.x88_c00191{left:640.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_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_58351e64bf0ac5b4fdab3d3d.woff2')format("woff");}.ff1_c00192{font-family:ff1_c00192;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me9_c00192{transform:matrix(0.344709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344709,0.000000,0.000000,0.250000,0,0);}
.m9e_c00192{transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);}
.mb7_c00192{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m3c_c00192{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m8_c00192{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.me5_c00192{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m0_c00192{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m80_c00192{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mb6_c00192{transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);}
.md8_c00192{transform:matrix(0.380334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380334,0.000000,0.000000,0.250000,0,0);}
.m91_c00192{transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);}
.m53_c00192{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.m81_c00192{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mc9_c00192{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.mda_c00192{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.mba_c00192{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.mdb_c00192{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m9a_c00192{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m47_c00192{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m4_c00192{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.mca_c00192{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.mb1_c00192{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mb8_c00192{transform:matrix(0.399896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399896,0.000000,0.000000,0.250000,0,0);}
.m2_c00192{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m6_c00192{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m6b_c00192{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.mcd_c00192{transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);}
.mc4_c00192{transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);}
.m51_c00192{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m24_c00192{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m8c_c00192{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.mc5_c00192{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m50_c00192{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m12_c00192{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.md4_c00192{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m61_c00192{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mea_c00192{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.md1_c00192{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.me4_c00192{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.md9_c00192{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m83_c00192{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m6a_c00192{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.me8_c00192{transform:matrix(0.413727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413727,0.000000,0.000000,0.250000,0,0);}
.m7f_c00192{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.mec_c00192{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m37_c00192{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.mbf_c00192{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m58_c00192{transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);}
.m78_c00192{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m7_c00192{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.mc3_c00192{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mbb_c00192{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m1c_c00192{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m77_c00192{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m20_c00192{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m5c_c00192{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m6d_c00192{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.me7_c00192{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m63_c00192{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m32_c00192{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mbd_c00192{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m55_c00192{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m42_c00192{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m89_c00192{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m5_c00192{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m49_c00192{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mcf_c00192{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.me1_c00192{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m9b_c00192{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.md6_c00192{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.m7c_c00192{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.m5b_c00192{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.mb9_c00192{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m66_c00192{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mae_c00192{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.md7_c00192{transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);}
.m8e_c00192{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m52_c00192{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m97_c00192{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m5e_c00192{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m38_c00192{transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);}
.m14_c00192{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.ma8_c00192{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.mb0_c00192{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m5a_c00192{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.ma4_c00192{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.ma3_c00192{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m1b_c00192{transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);}
.mc1_c00192{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m9c_c00192{transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);}
.m62_c00192{transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);}
.m9d_c00192{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.me_c00192{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m7d_c00192{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m2a_c00192{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m88_c00192{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mbc_c00192{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m57_c00192{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mc0_c00192{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mc2_c00192{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m35_c00192{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m70_c00192{transform:matrix(0.493506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493506,0.000000,0.000000,0.250000,0,0);}
.md0_c00192{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m86_c00192{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m3b_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);}
.mb2_c00192{transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);}
.m8b_c00192{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mc8_c00192{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.ma7_c00192{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m7a_c00192{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mcb_c00192{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m21_c00192{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m1f_c00192{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m29_c00192{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m17_c00192{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.mf_c00192{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m3d_c00192{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m15_c00192{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m8f_c00192{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.me2_c00192{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m65_c00192{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.m99_c00192{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m2e_c00192{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m8d_c00192{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m8a_c00192{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m7b_c00192{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m87_c00192{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m82_c00192{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m23_c00192{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.me3_c00192{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.ma5_c00192{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m27_c00192{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m60_c00192{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m3_c00192{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m98_c00192{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m90_c00192{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m73_c00192{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m76_c00192{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mc_c00192{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m33_c00192{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m84_c00192{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m3e_c00192{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m5d_c00192{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.ma1_c00192{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m56_c00192{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m74_c00192{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m2f_c00192{transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);}
.mb5_c00192{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_c00192{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mac_c00192{transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);}
.m36_c00192{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.md3_c00192{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m26_c00192{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m39_c00192{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m44_c00192{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mb4_c00192{transform:matrix(0.546474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546474,0.000000,0.000000,0.250000,0,0);}
.m95_c00192{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m4e_c00192{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mb_c00192{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m9f_c00192{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m25_c00192{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m2b_c00192{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m2c_c00192{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m22_c00192{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.ma9_c00192{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m30_c00192{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m11_c00192{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.maf_c00192{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m19_c00192{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.md_c00192{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m6f_c00192{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m40_c00192{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mc6_c00192{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m4d_c00192{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mce_c00192{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m3a_c00192{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m10_c00192{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.me6_c00192{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mdd_c00192{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m9_c00192{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m4a_c00192{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.ma6_c00192{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m43_c00192{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.maa_c00192{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.mb3_c00192{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m2d_c00192{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.meb_c00192{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.mdc_c00192{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.mcc_c00192{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m5f_c00192{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m79_c00192{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.ma2_c00192{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m85_c00192{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mab_c00192{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.ma_c00192{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m92_c00192{transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);}
.m41_c00192{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.mc7_c00192{transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);}
.m1_c00192{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m6c_c00192{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m93_c00192{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m18_c00192{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m1d_c00192{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m48_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);}
.m75_c00192{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m13_c00192{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m7e_c00192{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m69_c00192{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m68_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);}
.m94_c00192{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m4f_c00192{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m46_c00192{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mde_c00192{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.m67_c00192{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m31_c00192{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m64_c00192{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.me0_c00192{transform:matrix(0.710737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710737,0.000000,0.000000,0.250000,0,0);}
.m3f_c00192{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m59_c00192{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.md2_c00192{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m54_c00192{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.ma0_c00192{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m71_c00192{transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);}
.m45_c00192{transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);}
.m16_c00192{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m6e_c00192{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.mdf_c00192{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m1e_c00192{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m1a_c00192{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m4c_c00192{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m72_c00192{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.mad_c00192{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.m4b_c00192{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.md5_c00192{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m96_c00192{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m28_c00192{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.mbe_c00192{transform:matrix(0.947059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.947059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.947059,0.000000,0.000000,0.250000,0,0);}
.v0_c00192{vertical-align:0.000000px;}
.v1_c00192{vertical-align:6.000000px;}
.ls0_c00192{letter-spacing:0.000000px;}
.sc__c00192{text-shadow:none;}
.sc0_c00192{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00192{-webkit-text-stroke:0px transparent;}
.sc0_c00192{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00192{word-spacing:-16.889280px;}
.ws4_c00192{word-spacing:-7.555825px;}
.ws2_c00192{word-spacing:-6.184625px;}
.ws0_c00192{word-spacing:-2.752467px;}
.ws1_c00192{word-spacing:-1.487441px;}
.ws5_c00192{word-spacing:0.000000px;}
._0_c00192{width:6.095728px;}
.fc0_c00192{color:transparent;}
.fs5_c00192{font-size:18.720000px;}
.fs1_c00192{font-size:20.400000px;}
.fs4_c00192{font-size:25.500000px;}
.fs3_c00192{font-size:28.920000px;}
.fs0_c00192{font-size:32.340000px;}
.fs2_c00192{font-size:35.700000px;}
.fs6_c00192{font-size:39.120000px;}
.y0_c00192{bottom:0.000000px;}
.ybe_c00192{bottom:248.745000px;}
.ybc_c00192{bottom:249.180000px;}
.ybd_c00192{bottom:250.905000px;}
.ybf_c00192{bottom:251.130000px;}
.yb9_c00192{bottom:268.245000px;}
.ybb_c00192{bottom:270.405000px;}
.yba_c00192{bottom:270.630000px;}
.yb8_c00192{bottom:287.745000px;}
.yb6_c00192{bottom:289.245000px;}
.yb7_c00192{bottom:289.905000px;}
.yb4_c00192{bottom:290.130000px;}
.yb5_c00192{bottom:291.405000px;}
.yb1_c00192{bottom:308.745000px;}
.yb0_c00192{bottom:310.050000px;}
.yb3_c00192{bottom:310.470000px;}
.yb2_c00192{bottom:310.905000px;}
.yac_c00192{bottom:328.245000px;}
.yad_c00192{bottom:329.325000px;}
.yae_c00192{bottom:330.405000px;}
.yab_c00192{bottom:330.630000px;}
.yaf_c00192{bottom:331.470000px;}
.ya7_c00192{bottom:345.825000px;}
.ya8_c00192{bottom:346.905000px;}
.ya5_c00192{bottom:347.745000px;}
.yaa_c00192{bottom:348.630000px;}
.ya9_c00192{bottom:349.470000px;}
.ya6_c00192{bottom:349.905000px;}
.ya1_c00192{bottom:366.405000px;}
.ya4_c00192{bottom:367.245000px;}
.ya2_c00192{bottom:369.405000px;}
.ya3_c00192{bottom:369.630000px;}
.ya0_c00192{bottom:370.470000px;}
.y9f_c00192{bottom:370.905000px;}
.y9d_c00192{bottom:386.745000px;}
.y9c_c00192{bottom:387.405000px;}
.y9b_c00192{bottom:388.245000px;}
.y9e_c00192{bottom:389.130000px;}
.y9a_c00192{bottom:390.405000px;}
.y97_c00192{bottom:405.825000px;}
.y99_c00192{bottom:407.745000px;}
.y98_c00192{bottom:408.405000px;}
.y96_c00192{bottom:409.905000px;}
.y95_c00192{bottom:425.745000px;}
.y93_c00192{bottom:426.405000px;}
.y94_c00192{bottom:427.245000px;}
.y92_c00192{bottom:428.970000px;}
.y91_c00192{bottom:429.405000px;}
.y90_c00192{bottom:446.745000px;}
.y8f_c00192{bottom:448.905000px;}
.y8e_c00192{bottom:466.245000px;}
.y8d_c00192{bottom:467.970000px;}
.y8b_c00192{bottom:468.405000px;}
.y8c_c00192{bottom:469.470000px;}
.y88_c00192{bottom:485.325000px;}
.y8a_c00192{bottom:485.745000px;}
.y87_c00192{bottom:487.245000px;}
.y89_c00192{bottom:487.470000px;}
.y86_c00192{bottom:487.905000px;}
.y85_c00192{bottom:489.405000px;}
.y82_c00192{bottom:504.405000px;}
.y7d_c00192{bottom:505.245000px;}
.y83_c00192{bottom:506.550000px;}
.y7e_c00192{bottom:506.745000px;}
.y84_c00192{bottom:507.405000px;}
.y81_c00192{bottom:507.630000px;}
.y80_c00192{bottom:508.470000px;}
.y7f_c00192{bottom:508.905000px;}
.y79_c00192{bottom:524.970000px;}
.y7c_c00192{bottom:525.180000px;}
.y7a_c00192{bottom:526.245000px;}
.y7b_c00192{bottom:527.970000px;}
.y78_c00192{bottom:528.405000px;}
.y76_c00192{bottom:545.745000px;}
.y77_c00192{bottom:546.630000px;}
.y75_c00192{bottom:546.825000px;}
.y74_c00192{bottom:547.905000px;}
.y73_c00192{bottom:564.825000px;}
.y72_c00192{bottom:565.245000px;}
.y71_c00192{bottom:566.130000px;}
.y70_c00192{bottom:567.405000px;}
.y6c_c00192{bottom:584.745000px;}
.y6f_c00192{bottom:584.970000px;}
.y6d_c00192{bottom:586.470000px;}
.y6b_c00192{bottom:586.905000px;}
.y6e_c00192{bottom:587.130000px;}
.y65_c00192{bottom:603.405000px;}
.y69_c00192{bottom:605.745000px;}
.y68_c00192{bottom:606.405000px;}
.y66_c00192{bottom:606.630000px;}
.y67_c00192{bottom:607.470000px;}
.y6a_c00192{bottom:607.905000px;}
.y64_c00192{bottom:622.905000px;}
.y61_c00192{bottom:625.245000px;}
.y63_c00192{bottom:626.130000px;}
.y62_c00192{bottom:626.325000px;}
.y60_c00192{bottom:627.405000px;}
.y5f_c00192{bottom:644.745000px;}
.y5e_c00192{bottom:645.630000px;}
.y5d_c00192{bottom:646.905000px;}
.y5a_c00192{bottom:664.245000px;}
.y5b_c00192{bottom:666.405000px;}
.y5c_c00192{bottom:666.630000px;}
.y57_c00192{bottom:683.745000px;}
.y58_c00192{bottom:683.970000px;}
.y55_c00192{bottom:685.905000px;}
.y59_c00192{bottom:686.130000px;}
.y56_c00192{bottom:686.970000px;}
.y53_c00192{bottom:702.405000px;}
.y52_c00192{bottom:703.245000px;}
.y54_c00192{bottom:703.680000px;}
.y50_c00192{bottom:705.405000px;}
.y51_c00192{bottom:705.630000px;}
.y4d_c00192{bottom:722.745000px;}
.y4c_c00192{bottom:724.905000px;}
.y4f_c00192{bottom:725.130000px;}
.y4e_c00192{bottom:726.405000px;}
.y48_c00192{bottom:743.745000px;}
.y4a_c00192{bottom:744.825000px;}
.y4b_c00192{bottom:745.470000px;}
.y49_c00192{bottom:745.905000px;}
.y46_c00192{bottom:761.970000px;}
.y43_c00192{bottom:763.245000px;}
.y47_c00192{bottom:764.130000px;}
.y45_c00192{bottom:765.405000px;}
.y44_c00192{bottom:766.470000px;}
.y42_c00192{bottom:781.245000px;}
.y3f_c00192{bottom:781.470000px;}
.y3c_c00192{bottom:782.745000px;}
.y41_c00192{bottom:783.630000px;}
.y40_c00192{bottom:783.825000px;}
.y3d_c00192{bottom:784.905000px;}
.y3e_c00192{bottom:785.970000px;}
.y3b_c00192{bottom:800.745000px;}
.y39_c00192{bottom:802.245000px;}
.y3a_c00192{bottom:803.550000px;}
.y37_c00192{bottom:804.405000px;}
.y38_c00192{bottom:804.630000px;}
.y35_c00192{bottom:821.745000px;}
.y32_c00192{bottom:822.825000px;}
.y34_c00192{bottom:823.470000px;}
.y33_c00192{bottom:823.905000px;}
.y36_c00192{bottom:824.130000px;}
.y31_c00192{bottom:840.405000px;}
.y2f_c00192{bottom:841.245000px;}
.y30_c00192{bottom:842.325000px;}
.y2d_c00192{bottom:843.405000px;}
.y2e_c00192{bottom:844.470000px;}
.y2a_c00192{bottom:862.245000px;}
.y28_c00192{bottom:862.905000px;}
.y2c_c00192{bottom:863.130000px;}
.y29_c00192{bottom:863.970000px;}
.y2b_c00192{bottom:864.405000px;}
.y23_c00192{bottom:880.245000px;}
.y25_c00192{bottom:880.470000px;}
.y27_c00192{bottom:881.745000px;}
.y24_c00192{bottom:882.405000px;}
.y22_c00192{bottom:882.630000px;}
.y21_c00192{bottom:883.470000px;}
.y26_c00192{bottom:883.905000px;}
.y1d_c00192{bottom:901.050000px;}
.y1f_c00192{bottom:901.245000px;}
.y20_c00192{bottom:902.130000px;}
.y1e_c00192{bottom:902.970000px;}
.y1c_c00192{bottom:903.405000px;}
.y1b_c00192{bottom:919.470000px;}
.y19_c00192{bottom:920.745000px;}
.y1a_c00192{bottom:921.630000px;}
.y18_c00192{bottom:922.905000px;}
.y15_c00192{bottom:940.245000px;}
.y17_c00192{bottom:941.325000px;}
.y16_c00192{bottom:942.405000px;}
.y13_c00192{bottom:961.905000px;}
.y14_c00192{bottom:962.130000px;}
.y11_c00192{bottom:979.245000px;}
.y10_c00192{bottom:981.405000px;}
.y12_c00192{bottom:981.630000px;}
.yf_c00192{bottom:1000.905000px;}
.ye_c00192{bottom:1018.245000px;}
.yd_c00192{bottom:1019.745000px;}
.y9_c00192{bottom:1020.405000px;}
.ya_c00192{bottom:1020.630000px;}
.yc_c00192{bottom:1021.470000px;}
.yb_c00192{bottom:1021.905000px;}
.y6_c00192{bottom:1039.245000px;}
.y8_c00192{bottom:1040.325000px;}
.y5_c00192{bottom:1041.405000px;}
.y7_c00192{bottom:1042.470000px;}
.y3_c00192{bottom:1058.745000px;}
.y4_c00192{bottom:1060.905000px;}
.y1_c00192{bottom:1098.825000px;}
.y2_c00192{bottom:1099.050000px;}
.h6_c00192{height:23.025234px;}
.h2_c00192{height:25.091602px;}
.h5_c00192{height:31.364502px;}
.h4_c00192{height:35.571035px;}
.h1_c00192{height:39.777568px;}
.h7_c00192{height:41.571035px;}
.h3_c00192{height:43.910303px;}
.h8_c00192{height:48.116836px;}
.h0_c00192{height:1335.000000px;}
.w0_c00192{width:880.500000px;}
.x0_c00192{left:0.000000px;}
.x3_c00192{left:151.500000px;}
.x71_c00192{left:152.580000px;}
.xce_c00192{left:154.080000px;}
.x105_c00192{left:155.145000px;}
.xf9_c00192{left:166.920000px;}
.x29_c00192{left:168.000000px;}
.xd7_c00192{left:169.500000px;}
.x81_c00192{left:181.080000px;}
.x1a_c00192{left:183.000000px;}
.x66_c00192{left:184.500000px;}
.xeb_c00192{left:190.500000px;}
.x9d_c00192{left:191.580000px;}
.x2a_c00192{left:193.500000px;}
.xe_c00192{left:198.420000px;}
.x4a_c00192{left:201.000000px;}
.xd8_c00192{left:202.080000px;}
.x37_c00192{left:203.580000px;}
.xe0_c00192{left:205.500000px;}
.xfe_c00192{left:207.420000px;}
.xa7_c00192{left:208.500000px;}
.x53_c00192{left:210.420000px;}
.x40_c00192{left:214.080000px;}
.xd1_c00192{left:217.920000px;}
.x4_c00192{left:219.420000px;}
.xc7_c00192{left:220.500000px;}
.x93_c00192{left:223.080000px;}
.xf_c00192{left:226.080000px;}
.x67_c00192{left:229.500000px;}
.x1b_c00192{left:231.420000px;}
.xbc_c00192{left:232.500000px;}
.x38_c00192{left:234.000000px;}
.xaf_c00192{left:235.500000px;}
.x2b_c00192{left:241.080000px;}
.xa8_c00192{left:242.580000px;}
.x82_c00192{left:244.500000px;}
.xa2_c00192{left:246.000000px;}
.xc8_c00192{left:247.500000px;}
.x54_c00192{left:249.000000px;}
.x4b_c00192{left:250.500000px;}
.x39_c00192{left:254.580000px;}
.x2c_c00192{left:261.000000px;}
.x72_c00192{left:262.500000px;}
.x1c_c00192{left:265.080000px;}
.x94_c00192{left:266.580000px;}
.xdc_c00192{left:268.920000px;}
.xe1_c00192{left:271.080000px;}
.xe6_c00192{left:272.580000px;}
.x5f_c00192{left:274.500000px;}
.x83_c00192{left:275.580000px;}
.xfd_c00192{left:277.500000px;}
.x41_c00192{left:280.080000px;}
.x55_c00192{left:283.920000px;}
.x68_c00192{left:285.000000px;}
.x1d_c00192{left:288.000000px;}
.x78_c00192{left:291.000000px;}
.xd9_c00192{left:292.500000px;}
.x10_c00192{left:297.000000px;}
.xf1_c00192{left:300.000000px;}
.x4c_c00192{left:301.500000px;}
.xf3_c00192{left:303.000000px;}
.xd2_c00192{left:304.080000px;}
.xe2_c00192{left:306.000000px;}
.x69_c00192{left:307.920000px;}
.x5_c00192{left:310.080000px;}
.x60_c00192{left:312.420000px;}
.x1e_c00192{left:316.080000px;}
.x8d_c00192{left:318.000000px;}
.x2d_c00192{left:319.080000px;}
.xbd_c00192{left:320.580000px;}
.xf7_c00192{left:322.500000px;}
.x84_c00192{left:323.580000px;}
.x56_c00192{left:325.500000px;}
.x11_c00192{left:327.000000px;}
.xa3_c00192{left:328.500000px;}
.x3a_c00192{left:329.580000px;}
.x42_c00192{left:333.420000px;}
.x6a_c00192{left:336.000000px;}
.xa9_c00192{left:339.000000px;}
.x85_c00192{left:340.500000px;}
.xee_c00192{left:342.420000px;}
.x12_c00192{left:345.000000px;}
.x57_c00192{left:346.500000px;}
.x4d_c00192{left:348.420000px;}
.x79_c00192{left:351.420000px;}
.x86_c00192{left:352.920000px;}
.xc2_c00192{left:354.000000px;}
.xdd_c00192{left:355.920000px;}
.x1f_c00192{left:357.000000px;}
.xb0_c00192{left:359.580000px;}
.x2e_c00192{left:363.420000px;}
.x95_c00192{left:364.500000px;}
.x61_c00192{left:366.420000px;}
.xd3_c00192{left:367.500000px;}
.x43_c00192{left:369.000000px;}
.x3b_c00192{left:373.500000px;}
.x8e_c00192{left:375.000000px;}
.xaa_c00192{left:376.920000px;}
.xcf_c00192{left:381.000000px;}
.xa4_c00192{left:382.920000px;}
.x7a_c00192{left:385.080000px;}
.xe3_c00192{left:386.580000px;}
.x6b_c00192{left:388.080000px;}
.xf4_c00192{left:389.145000px;}
.xb1_c00192{left:391.080000px;}
.x6_c00192{left:392.580000px;}
.xb8_c00192{left:395.580000px;}
.x2_c00192{left:399.000000px;}
.x2f_c00192{left:401.580000px;}
.x4e_c00192{left:405.000000px;}
.xff_c00192{left:406.920000px;}
.x20_c00192{left:409.500000px;}
.xda_c00192{left:411.420000px;}
.x87_c00192{left:413.580000px;}
.xb2_c00192{left:415.500000px;}
.x73_c00192{left:417.000000px;}
.x6c_c00192{left:418.920000px;}
.x7b_c00192{left:421.920000px;}
.x13_c00192{left:423.000000px;}
.xab_c00192{left:425.580000px;}
.x9e_c00192{left:428.580000px;}
.xec_c00192{left:430.500000px;}
.x4f_c00192{left:432.420000px;}
.x44_c00192{left:433.920000px;}
.x21_c00192{left:436.920000px;}
.xc9_c00192{left:438.420000px;}
.xbe_c00192{left:439.920000px;}
.x88_c00192{left:441.420000px;}
.x96_c00192{left:442.500000px;}
.x58_c00192{left:444.000000px;}
.x6d_c00192{left:445.080000px;}
.x7c_c00192{left:448.500000px;}
.xde_c00192{left:453.000000px;}
.xac_c00192{left:454.920000px;}
.xe4_c00192{left:456.000000px;}
.xd0_c00192{left:457.500000px;}
.x8f_c00192{left:459.000000px;}
.x9f_c00192{left:460.500000px;}
.x30_c00192{left:461.580000px;}
.x62_c00192{left:463.920000px;}
.xbf_c00192{left:468.000000px;}
.x3c_c00192{left:471.000000px;}
.x22_c00192{left:472.500000px;}
.xd4_c00192{left:474.000000px;}
.xf2_c00192{left:475.080000px;}
.x50_c00192{left:476.580000px;}
.x7_c00192{left:480.000000px;}
.xb3_c00192{left:481.080000px;}
.x74_c00192{left:483.000000px;}
.x14_c00192{left:484.080000px;}
.x97_c00192{left:486.420000px;}
.xd5_c00192{left:487.920000px;}
.x45_c00192{left:489.420000px;}
.xca_c00192{left:492.000000px;}
.x31_c00192{left:493.500000px;}
.x102_c00192{left:496.080000px;}
.x106_c00192{left:498.000000px;}
.x100_c00192{left:499.500000px;}
.xb4_c00192{left:501.000000px;}
.x7d_c00192{left:502.080000px;}
.x6e_c00192{left:504.000000px;}
.x63_c00192{left:505.080000px;}
.x59_c00192{left:506.580000px;}
.xe7_c00192{left:508.080000px;}
.xf5_c00192{left:509.580000px;}
.x75_c00192{left:511.500000px;}
.xd6_c00192{left:513.420000px;}
.xb9_c00192{left:514.920000px;}
.x15_c00192{left:516.420000px;}
.xe5_c00192{left:517.500000px;}
.xc3_c00192{left:520.920000px;}
.x98_c00192{left:522.000000px;}
.x8_c00192{left:525.420000px;}
.xc0_c00192{left:526.500000px;}
.xe8_c00192{left:528.000000px;}
.x32_c00192{left:529.500000px;}
.x103_c00192{left:531.000000px;}
.x7e_c00192{left:532.920000px;}
.x5a_c00192{left:535.920000px;}
.xb5_c00192{left:538.080000px;}
.xc1_c00192{left:540.000000px;}
.x23_c00192{left:543.000000px;}
.x3d_c00192{left:546.000000px;}
.x99_c00192{left:549.420000px;}
.x107_c00192{left:550.500000px;}
.x16_c00192{left:552.420000px;}
.xc4_c00192{left:553.500000px;}
.x9_c00192{left:555.000000px;}
.xe9_c00192{left:559.080000px;}
.xfa_c00192{left:561.000000px;}
.x24_c00192{left:562.500000px;}
.x6f_c00192{left:564.000000px;}
.x46_c00192{left:567.000000px;}
.x33_c00192{left:568.500000px;}
.xf8_c00192{left:570.000000px;}
.x76_c00192{left:574.920000px;}
.xcb_c00192{left:576.000000px;}
.xef_c00192{left:577.920000px;}
.x64_c00192{left:580.500000px;}
.x101_c00192{left:581.580000px;}
.xfb_c00192{left:583.080000px;}
.x70_c00192{left:586.500000px;}
.xba_c00192{left:588.420000px;}
.x25_c00192{left:589.500000px;}
.x5b_c00192{left:590.580000px;}
.xa_c00192{left:592.500000px;}
.x89_c00192{left:594.000000px;}
.xcc_c00192{left:595.920000px;}
.xa0_c00192{left:598.080000px;}
.xdb_c00192{left:601.080000px;}
.x17_c00192{left:603.000000px;}
.x51_c00192{left:607.080000px;}
.x3e_c00192{left:609.000000px;}
.xf6_c00192{left:610.500000px;}
.x34_c00192{left:611.580000px;}
.xad_c00192{left:613.080000px;}
.xea_c00192{left:616.920000px;}
.x9a_c00192{left:619.080000px;}
.xa5_c00192{left:620.580000px;}
.x18_c00192{left:622.920000px;}
.x26_c00192{left:624.000000px;}
.x47_c00192{left:625.080000px;}
.x104_c00192{left:627.420000px;}
.x5c_c00192{left:628.920000px;}
.x52_c00192{left:630.000000px;}
.x90_c00192{left:631.920000px;}
.x7f_c00192{left:633.000000px;}
.x8a_c00192{left:634.500000px;}
.xbb_c00192{left:636.645000px;}
.xed_c00192{left:637.920000px;}
.xc5_c00192{left:640.080000px;}
.x3f_c00192{left:642.000000px;}
.x80_c00192{left:645.000000px;}
.xb_c00192{left:646.080000px;}
.x9b_c00192{left:649.920000px;}
.x19_c00192{left:652.500000px;}
.xfc_c00192{left:654.000000px;}
.xb6_c00192{left:655.080000px;}
.x5d_c00192{left:657.420000px;}
.x91_c00192{left:661.500000px;}
.xa1_c00192{left:665.580000px;}
.xc_c00192{left:667.080000px;}
.x48_c00192{left:669.000000px;}
.x65_c00192{left:672.420000px;}
.xcd_c00192{left:673.920000px;}
.x9c_c00192{left:677.580000px;}
.xc6_c00192{left:679.500000px;}
.xf0_c00192{left:681.000000px;}
.x27_c00192{left:682.500000px;}
.x35_c00192{left:685.500000px;}
.x8b_c00192{left:687.000000px;}
.x5e_c00192{left:688.080000px;}
.xdf_c00192{left:694.500000px;}
.xae_c00192{left:696.000000px;}
.x77_c00192{left:697.920000px;}
.xd_c00192{left:699.420000px;}
.x36_c00192{left:700.500000px;}
.x1_c00192{left:705.855000px;}
.x28_c00192{left:706.920000px;}
.xa6_c00192{left:708.420000px;}
.x49_c00192{left:711.000000px;}
.x8c_c00192{left:715.080000px;}
.x92_c00192{left:721.500000px;}
.xb7_c00192{left:723.000000px;}
@media print{
.v0_c00192{vertical-align:0.000000pt;}
.v1_c00192{vertical-align:5.333333pt;}
.ls0_c00192{letter-spacing:0.000000pt;}
.ws3_c00192{word-spacing:-15.012693pt;}
.ws4_c00192{word-spacing:-6.716289pt;}
.ws2_c00192{word-spacing:-5.497444pt;}
.ws0_c00192{word-spacing:-2.446638pt;}
.ws1_c00192{word-spacing:-1.322170pt;}
.ws5_c00192{word-spacing:0.000000pt;}
._0_c00192{width:5.418425pt;}
.fs5_c00192{font-size:16.640000pt;}
.fs1_c00192{font-size:18.133333pt;}
.fs4_c00192{font-size:22.666667pt;}
.fs3_c00192{font-size:25.706667pt;}
.fs0_c00192{font-size:28.746667pt;}
.fs2_c00192{font-size:31.733333pt;}
.fs6_c00192{font-size:34.773333pt;}
.y0_c00192{bottom:0.000000pt;}
.ybe_c00192{bottom:221.106667pt;}
.ybc_c00192{bottom:221.493333pt;}
.ybd_c00192{bottom:223.026667pt;}
.ybf_c00192{bottom:223.226667pt;}
.yb9_c00192{bottom:238.440000pt;}
.ybb_c00192{bottom:240.360000pt;}
.yba_c00192{bottom:240.560000pt;}
.yb8_c00192{bottom:255.773333pt;}
.yb6_c00192{bottom:257.106667pt;}
.yb7_c00192{bottom:257.693333pt;}
.yb4_c00192{bottom:257.893333pt;}
.yb5_c00192{bottom:259.026667pt;}
.yb1_c00192{bottom:274.440000pt;}
.yb0_c00192{bottom:275.600000pt;}
.yb3_c00192{bottom:275.973333pt;}
.yb2_c00192{bottom:276.360000pt;}
.yac_c00192{bottom:291.773333pt;}
.yad_c00192{bottom:292.733333pt;}
.yae_c00192{bottom:293.693333pt;}
.yab_c00192{bottom:293.893333pt;}
.yaf_c00192{bottom:294.640000pt;}
.ya7_c00192{bottom:307.400000pt;}
.ya8_c00192{bottom:308.360000pt;}
.ya5_c00192{bottom:309.106667pt;}
.yaa_c00192{bottom:309.893333pt;}
.ya9_c00192{bottom:310.640000pt;}
.ya6_c00192{bottom:311.026667pt;}
.ya1_c00192{bottom:325.693333pt;}
.ya4_c00192{bottom:326.440000pt;}
.ya2_c00192{bottom:328.360000pt;}
.ya3_c00192{bottom:328.560000pt;}
.ya0_c00192{bottom:329.306667pt;}
.y9f_c00192{bottom:329.693333pt;}
.y9d_c00192{bottom:343.773333pt;}
.y9c_c00192{bottom:344.360000pt;}
.y9b_c00192{bottom:345.106667pt;}
.y9e_c00192{bottom:345.893333pt;}
.y9a_c00192{bottom:347.026667pt;}
.y97_c00192{bottom:360.733333pt;}
.y99_c00192{bottom:362.440000pt;}
.y98_c00192{bottom:363.026667pt;}
.y96_c00192{bottom:364.360000pt;}
.y95_c00192{bottom:378.440000pt;}
.y93_c00192{bottom:379.026667pt;}
.y94_c00192{bottom:379.773333pt;}
.y92_c00192{bottom:381.306667pt;}
.y91_c00192{bottom:381.693333pt;}
.y90_c00192{bottom:397.106667pt;}
.y8f_c00192{bottom:399.026667pt;}
.y8e_c00192{bottom:414.440000pt;}
.y8d_c00192{bottom:415.973333pt;}
.y8b_c00192{bottom:416.360000pt;}
.y8c_c00192{bottom:417.306667pt;}
.y88_c00192{bottom:431.400000pt;}
.y8a_c00192{bottom:431.773333pt;}
.y87_c00192{bottom:433.106667pt;}
.y89_c00192{bottom:433.306667pt;}
.y86_c00192{bottom:433.693333pt;}
.y85_c00192{bottom:435.026667pt;}
.y82_c00192{bottom:448.360000pt;}
.y7d_c00192{bottom:449.106667pt;}
.y83_c00192{bottom:450.266667pt;}
.y7e_c00192{bottom:450.440000pt;}
.y84_c00192{bottom:451.026667pt;}
.y81_c00192{bottom:451.226667pt;}
.y80_c00192{bottom:451.973333pt;}
.y7f_c00192{bottom:452.360000pt;}
.y79_c00192{bottom:466.640000pt;}
.y7c_c00192{bottom:466.826667pt;}
.y7a_c00192{bottom:467.773333pt;}
.y7b_c00192{bottom:469.306667pt;}
.y78_c00192{bottom:469.693333pt;}
.y76_c00192{bottom:485.106667pt;}
.y77_c00192{bottom:485.893333pt;}
.y75_c00192{bottom:486.066667pt;}
.y74_c00192{bottom:487.026667pt;}
.y73_c00192{bottom:502.066667pt;}
.y72_c00192{bottom:502.440000pt;}
.y71_c00192{bottom:503.226667pt;}
.y70_c00192{bottom:504.360000pt;}
.y6c_c00192{bottom:519.773333pt;}
.y6f_c00192{bottom:519.973333pt;}
.y6d_c00192{bottom:521.306667pt;}
.y6b_c00192{bottom:521.693333pt;}
.y6e_c00192{bottom:521.893333pt;}
.y65_c00192{bottom:536.360000pt;}
.y69_c00192{bottom:538.440000pt;}
.y68_c00192{bottom:539.026667pt;}
.y66_c00192{bottom:539.226667pt;}
.y67_c00192{bottom:539.973333pt;}
.y6a_c00192{bottom:540.360000pt;}
.y64_c00192{bottom:553.693333pt;}
.y61_c00192{bottom:555.773333pt;}
.y63_c00192{bottom:556.560000pt;}
.y62_c00192{bottom:556.733333pt;}
.y60_c00192{bottom:557.693333pt;}
.y5f_c00192{bottom:573.106667pt;}
.y5e_c00192{bottom:573.893333pt;}
.y5d_c00192{bottom:575.026667pt;}
.y5a_c00192{bottom:590.440000pt;}
.y5b_c00192{bottom:592.360000pt;}
.y5c_c00192{bottom:592.560000pt;}
.y57_c00192{bottom:607.773333pt;}
.y58_c00192{bottom:607.973333pt;}
.y55_c00192{bottom:609.693333pt;}
.y59_c00192{bottom:609.893333pt;}
.y56_c00192{bottom:610.640000pt;}
.y53_c00192{bottom:624.360000pt;}
.y52_c00192{bottom:625.106667pt;}
.y54_c00192{bottom:625.493333pt;}
.y50_c00192{bottom:627.026667pt;}
.y51_c00192{bottom:627.226667pt;}
.y4d_c00192{bottom:642.440000pt;}
.y4c_c00192{bottom:644.360000pt;}
.y4f_c00192{bottom:644.560000pt;}
.y4e_c00192{bottom:645.693333pt;}
.y48_c00192{bottom:661.106667pt;}
.y4a_c00192{bottom:662.066667pt;}
.y4b_c00192{bottom:662.640000pt;}
.y49_c00192{bottom:663.026667pt;}
.y46_c00192{bottom:677.306667pt;}
.y43_c00192{bottom:678.440000pt;}
.y47_c00192{bottom:679.226667pt;}
.y45_c00192{bottom:680.360000pt;}
.y44_c00192{bottom:681.306667pt;}
.y42_c00192{bottom:694.440000pt;}
.y3f_c00192{bottom:694.640000pt;}
.y3c_c00192{bottom:695.773333pt;}
.y41_c00192{bottom:696.560000pt;}
.y40_c00192{bottom:696.733333pt;}
.y3d_c00192{bottom:697.693333pt;}
.y3e_c00192{bottom:698.640000pt;}
.y3b_c00192{bottom:711.773333pt;}
.y39_c00192{bottom:713.106667pt;}
.y3a_c00192{bottom:714.266667pt;}
.y37_c00192{bottom:715.026667pt;}
.y38_c00192{bottom:715.226667pt;}
.y35_c00192{bottom:730.440000pt;}
.y32_c00192{bottom:731.400000pt;}
.y34_c00192{bottom:731.973333pt;}
.y33_c00192{bottom:732.360000pt;}
.y36_c00192{bottom:732.560000pt;}
.y31_c00192{bottom:747.026667pt;}
.y2f_c00192{bottom:747.773333pt;}
.y30_c00192{bottom:748.733333pt;}
.y2d_c00192{bottom:749.693333pt;}
.y2e_c00192{bottom:750.640000pt;}
.y2a_c00192{bottom:766.440000pt;}
.y28_c00192{bottom:767.026667pt;}
.y2c_c00192{bottom:767.226667pt;}
.y29_c00192{bottom:767.973333pt;}
.y2b_c00192{bottom:768.360000pt;}
.y23_c00192{bottom:782.440000pt;}
.y25_c00192{bottom:782.640000pt;}
.y27_c00192{bottom:783.773333pt;}
.y24_c00192{bottom:784.360000pt;}
.y22_c00192{bottom:784.560000pt;}
.y21_c00192{bottom:785.306667pt;}
.y26_c00192{bottom:785.693333pt;}
.y1d_c00192{bottom:800.933333pt;}
.y1f_c00192{bottom:801.106667pt;}
.y20_c00192{bottom:801.893333pt;}
.y1e_c00192{bottom:802.640000pt;}
.y1c_c00192{bottom:803.026667pt;}
.y1b_c00192{bottom:817.306667pt;}
.y19_c00192{bottom:818.440000pt;}
.y1a_c00192{bottom:819.226667pt;}
.y18_c00192{bottom:820.360000pt;}
.y15_c00192{bottom:835.773333pt;}
.y17_c00192{bottom:836.733333pt;}
.y16_c00192{bottom:837.693333pt;}
.y13_c00192{bottom:855.026667pt;}
.y14_c00192{bottom:855.226667pt;}
.y11_c00192{bottom:870.440000pt;}
.y10_c00192{bottom:872.360000pt;}
.y12_c00192{bottom:872.560000pt;}
.yf_c00192{bottom:889.693333pt;}
.ye_c00192{bottom:905.106667pt;}
.yd_c00192{bottom:906.440000pt;}
.y9_c00192{bottom:907.026667pt;}
.ya_c00192{bottom:907.226667pt;}
.yc_c00192{bottom:907.973333pt;}
.yb_c00192{bottom:908.360000pt;}
.y6_c00192{bottom:923.773333pt;}
.y8_c00192{bottom:924.733333pt;}
.y5_c00192{bottom:925.693333pt;}
.y7_c00192{bottom:926.640000pt;}
.y3_c00192{bottom:941.106667pt;}
.y4_c00192{bottom:943.026667pt;}
.y1_c00192{bottom:976.733333pt;}
.y2_c00192{bottom:976.933333pt;}
.h6_c00192{height:20.466875pt;}
.h2_c00192{height:22.303646pt;}
.h5_c00192{height:27.879557pt;}
.h4_c00192{height:31.618698pt;}
.h1_c00192{height:35.357839pt;}
.h7_c00192{height:36.952031pt;}
.h3_c00192{height:39.031380pt;}
.h8_c00192{height:42.770521pt;}
.h0_c00192{height:1186.666667pt;}
.w0_c00192{width:782.666667pt;}
.x0_c00192{left:0.000000pt;}
.x3_c00192{left:134.666667pt;}
.x71_c00192{left:135.626667pt;}
.xce_c00192{left:136.960000pt;}
.x105_c00192{left:137.906667pt;}
.xf9_c00192{left:148.373333pt;}
.x29_c00192{left:149.333333pt;}
.xd7_c00192{left:150.666667pt;}
.x81_c00192{left:160.960000pt;}
.x1a_c00192{left:162.666667pt;}
.x66_c00192{left:164.000000pt;}
.xeb_c00192{left:169.333333pt;}
.x9d_c00192{left:170.293333pt;}
.x2a_c00192{left:172.000000pt;}
.xe_c00192{left:176.373333pt;}
.x4a_c00192{left:178.666667pt;}
.xd8_c00192{left:179.626667pt;}
.x37_c00192{left:180.960000pt;}
.xe0_c00192{left:182.666667pt;}
.xfe_c00192{left:184.373333pt;}
.xa7_c00192{left:185.333333pt;}
.x53_c00192{left:187.040000pt;}
.x40_c00192{left:190.293333pt;}
.xd1_c00192{left:193.706667pt;}
.x4_c00192{left:195.040000pt;}
.xc7_c00192{left:196.000000pt;}
.x93_c00192{left:198.293333pt;}
.xf_c00192{left:200.960000pt;}
.x67_c00192{left:204.000000pt;}
.x1b_c00192{left:205.706667pt;}
.xbc_c00192{left:206.666667pt;}
.x38_c00192{left:208.000000pt;}
.xaf_c00192{left:209.333333pt;}
.x2b_c00192{left:214.293333pt;}
.xa8_c00192{left:215.626667pt;}
.x82_c00192{left:217.333333pt;}
.xa2_c00192{left:218.666667pt;}
.xc8_c00192{left:220.000000pt;}
.x54_c00192{left:221.333333pt;}
.x4b_c00192{left:222.666667pt;}
.x39_c00192{left:226.293333pt;}
.x2c_c00192{left:232.000000pt;}
.x72_c00192{left:233.333333pt;}
.x1c_c00192{left:235.626667pt;}
.x94_c00192{left:236.960000pt;}
.xdc_c00192{left:239.040000pt;}
.xe1_c00192{left:240.960000pt;}
.xe6_c00192{left:242.293333pt;}
.x5f_c00192{left:244.000000pt;}
.x83_c00192{left:244.960000pt;}
.xfd_c00192{left:246.666667pt;}
.x41_c00192{left:248.960000pt;}
.x55_c00192{left:252.373333pt;}
.x68_c00192{left:253.333333pt;}
.x1d_c00192{left:256.000000pt;}
.x78_c00192{left:258.666667pt;}
.xd9_c00192{left:260.000000pt;}
.x10_c00192{left:264.000000pt;}
.xf1_c00192{left:266.666667pt;}
.x4c_c00192{left:268.000000pt;}
.xf3_c00192{left:269.333333pt;}
.xd2_c00192{left:270.293333pt;}
.xe2_c00192{left:272.000000pt;}
.x69_c00192{left:273.706667pt;}
.x5_c00192{left:275.626667pt;}
.x60_c00192{left:277.706667pt;}
.x1e_c00192{left:280.960000pt;}
.x8d_c00192{left:282.666667pt;}
.x2d_c00192{left:283.626667pt;}
.xbd_c00192{left:284.960000pt;}
.xf7_c00192{left:286.666667pt;}
.x84_c00192{left:287.626667pt;}
.x56_c00192{left:289.333333pt;}
.x11_c00192{left:290.666667pt;}
.xa3_c00192{left:292.000000pt;}
.x3a_c00192{left:292.960000pt;}
.x42_c00192{left:296.373333pt;}
.x6a_c00192{left:298.666667pt;}
.xa9_c00192{left:301.333333pt;}
.x85_c00192{left:302.666667pt;}
.xee_c00192{left:304.373333pt;}
.x12_c00192{left:306.666667pt;}
.x57_c00192{left:308.000000pt;}
.x4d_c00192{left:309.706667pt;}
.x79_c00192{left:312.373333pt;}
.x86_c00192{left:313.706667pt;}
.xc2_c00192{left:314.666667pt;}
.xdd_c00192{left:316.373333pt;}
.x1f_c00192{left:317.333333pt;}
.xb0_c00192{left:319.626667pt;}
.x2e_c00192{left:323.040000pt;}
.x95_c00192{left:324.000000pt;}
.x61_c00192{left:325.706667pt;}
.xd3_c00192{left:326.666667pt;}
.x43_c00192{left:328.000000pt;}
.x3b_c00192{left:332.000000pt;}
.x8e_c00192{left:333.333333pt;}
.xaa_c00192{left:335.040000pt;}
.xcf_c00192{left:338.666667pt;}
.xa4_c00192{left:340.373333pt;}
.x7a_c00192{left:342.293333pt;}
.xe3_c00192{left:343.626667pt;}
.x6b_c00192{left:344.960000pt;}
.xf4_c00192{left:345.906667pt;}
.xb1_c00192{left:347.626667pt;}
.x6_c00192{left:348.960000pt;}
.xb8_c00192{left:351.626667pt;}
.x2_c00192{left:354.666667pt;}
.x2f_c00192{left:356.960000pt;}
.x4e_c00192{left:360.000000pt;}
.xff_c00192{left:361.706667pt;}
.x20_c00192{left:364.000000pt;}
.xda_c00192{left:365.706667pt;}
.x87_c00192{left:367.626667pt;}
.xb2_c00192{left:369.333333pt;}
.x73_c00192{left:370.666667pt;}
.x6c_c00192{left:372.373333pt;}
.x7b_c00192{left:375.040000pt;}
.x13_c00192{left:376.000000pt;}
.xab_c00192{left:378.293333pt;}
.x9e_c00192{left:380.960000pt;}
.xec_c00192{left:382.666667pt;}
.x4f_c00192{left:384.373333pt;}
.x44_c00192{left:385.706667pt;}
.x21_c00192{left:388.373333pt;}
.xc9_c00192{left:389.706667pt;}
.xbe_c00192{left:391.040000pt;}
.x88_c00192{left:392.373333pt;}
.x96_c00192{left:393.333333pt;}
.x58_c00192{left:394.666667pt;}
.x6d_c00192{left:395.626667pt;}
.x7c_c00192{left:398.666667pt;}
.xde_c00192{left:402.666667pt;}
.xac_c00192{left:404.373333pt;}
.xe4_c00192{left:405.333333pt;}
.xd0_c00192{left:406.666667pt;}
.x8f_c00192{left:408.000000pt;}
.x9f_c00192{left:409.333333pt;}
.x30_c00192{left:410.293333pt;}
.x62_c00192{left:412.373333pt;}
.xbf_c00192{left:416.000000pt;}
.x3c_c00192{left:418.666667pt;}
.x22_c00192{left:420.000000pt;}
.xd4_c00192{left:421.333333pt;}
.xf2_c00192{left:422.293333pt;}
.x50_c00192{left:423.626667pt;}
.x7_c00192{left:426.666667pt;}
.xb3_c00192{left:427.626667pt;}
.x74_c00192{left:429.333333pt;}
.x14_c00192{left:430.293333pt;}
.x97_c00192{left:432.373333pt;}
.xd5_c00192{left:433.706667pt;}
.x45_c00192{left:435.040000pt;}
.xca_c00192{left:437.333333pt;}
.x31_c00192{left:438.666667pt;}
.x102_c00192{left:440.960000pt;}
.x106_c00192{left:442.666667pt;}
.x100_c00192{left:444.000000pt;}
.xb4_c00192{left:445.333333pt;}
.x7d_c00192{left:446.293333pt;}
.x6e_c00192{left:448.000000pt;}
.x63_c00192{left:448.960000pt;}
.x59_c00192{left:450.293333pt;}
.xe7_c00192{left:451.626667pt;}
.xf5_c00192{left:452.960000pt;}
.x75_c00192{left:454.666667pt;}
.xd6_c00192{left:456.373333pt;}
.xb9_c00192{left:457.706667pt;}
.x15_c00192{left:459.040000pt;}
.xe5_c00192{left:460.000000pt;}
.xc3_c00192{left:463.040000pt;}
.x98_c00192{left:464.000000pt;}
.x8_c00192{left:467.040000pt;}
.xc0_c00192{left:468.000000pt;}
.xe8_c00192{left:469.333333pt;}
.x32_c00192{left:470.666667pt;}
.x103_c00192{left:472.000000pt;}
.x7e_c00192{left:473.706667pt;}
.x5a_c00192{left:476.373333pt;}
.xb5_c00192{left:478.293333pt;}
.xc1_c00192{left:480.000000pt;}
.x23_c00192{left:482.666667pt;}
.x3d_c00192{left:485.333333pt;}
.x99_c00192{left:488.373333pt;}
.x107_c00192{left:489.333333pt;}
.x16_c00192{left:491.040000pt;}
.xc4_c00192{left:492.000000pt;}
.x9_c00192{left:493.333333pt;}
.xe9_c00192{left:496.960000pt;}
.xfa_c00192{left:498.666667pt;}
.x24_c00192{left:500.000000pt;}
.x6f_c00192{left:501.333333pt;}
.x46_c00192{left:504.000000pt;}
.x33_c00192{left:505.333333pt;}
.xf8_c00192{left:506.666667pt;}
.x76_c00192{left:511.040000pt;}
.xcb_c00192{left:512.000000pt;}
.xef_c00192{left:513.706667pt;}
.x64_c00192{left:516.000000pt;}
.x101_c00192{left:516.960000pt;}
.xfb_c00192{left:518.293333pt;}
.x70_c00192{left:521.333333pt;}
.xba_c00192{left:523.040000pt;}
.x25_c00192{left:524.000000pt;}
.x5b_c00192{left:524.960000pt;}
.xa_c00192{left:526.666667pt;}
.x89_c00192{left:528.000000pt;}
.xcc_c00192{left:529.706667pt;}
.xa0_c00192{left:531.626667pt;}
.xdb_c00192{left:534.293333pt;}
.x17_c00192{left:536.000000pt;}
.x51_c00192{left:539.626667pt;}
.x3e_c00192{left:541.333333pt;}
.xf6_c00192{left:542.666667pt;}
.x34_c00192{left:543.626667pt;}
.xad_c00192{left:544.960000pt;}
.xea_c00192{left:548.373333pt;}
.x9a_c00192{left:550.293333pt;}
.xa5_c00192{left:551.626667pt;}
.x18_c00192{left:553.706667pt;}
.x26_c00192{left:554.666667pt;}
.x47_c00192{left:555.626667pt;}
.x104_c00192{left:557.706667pt;}
.x5c_c00192{left:559.040000pt;}
.x52_c00192{left:560.000000pt;}
.x90_c00192{left:561.706667pt;}
.x7f_c00192{left:562.666667pt;}
.x8a_c00192{left:564.000000pt;}
.xbb_c00192{left:565.906667pt;}
.xed_c00192{left:567.040000pt;}
.xc5_c00192{left:568.960000pt;}
.x3f_c00192{left:570.666667pt;}
.x80_c00192{left:573.333333pt;}
.xb_c00192{left:574.293333pt;}
.x9b_c00192{left:577.706667pt;}
.x19_c00192{left:580.000000pt;}
.xfc_c00192{left:581.333333pt;}
.xb6_c00192{left:582.293333pt;}
.x5d_c00192{left:584.373333pt;}
.x91_c00192{left:588.000000pt;}
.xa1_c00192{left:591.626667pt;}
.xc_c00192{left:592.960000pt;}
.x48_c00192{left:594.666667pt;}
.x65_c00192{left:597.706667pt;}
.xcd_c00192{left:599.040000pt;}
.x9c_c00192{left:602.293333pt;}
.xc6_c00192{left:604.000000pt;}
.xf0_c00192{left:605.333333pt;}
.x27_c00192{left:606.666667pt;}
.x35_c00192{left:609.333333pt;}
.x8b_c00192{left:610.666667pt;}
.x5e_c00192{left:611.626667pt;}
.xdf_c00192{left:617.333333pt;}
.xae_c00192{left:618.666667pt;}
.x77_c00192{left:620.373333pt;}
.xd_c00192{left:621.706667pt;}
.x36_c00192{left:622.666667pt;}
.x1_c00192{left:627.426667pt;}
.x28_c00192{left:628.373333pt;}
.xa6_c00192{left:629.706667pt;}
.x49_c00192{left:632.000000pt;}
.x8c_c00192{left:635.626667pt;}
.x92_c00192{left:641.333333pt;}
.xb7_c00192{left:642.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_2842c1afe80c751b1a35b56b.woff2')format("woff");}.ff1_c00193{font-family:ff1_c00193;line-height:1.688965;font-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_c00193{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m0_c00193{transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);}
.m77_c00193{transform:matrix(0.348548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348548,0.000000,0.000000,0.250000,0,0);}
.m44_c00193{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.md8_c00193{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.md_c00193{transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);}
.m3b_c00193{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mf7_c00193{transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);}
.m58_c00193{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.md3_c00193{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m56_c00193{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m51_c00193{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m55_c00193{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m57_c00193{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m33_c00193{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m90_c00193{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m54_c00193{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m22_c00193{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.mc0_c00193{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m35_c00193{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.mbc_c00193{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.mea_c00193{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m9c_c00193{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m94_c00193{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mce_c00193{transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);}
.mad_c00193{transform:matrix(0.405291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405291,0.000000,0.000000,0.250000,0,0);}
.md1_c00193{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.mc3_c00193{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.md6_c00193{transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);}
.mf2_c00193{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.mc5_c00193{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m99_c00193{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m91_c00193{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mac_c00193{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.m81_c00193{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m4c_c00193{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.mf0_c00193{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m3f_c00193{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.ma3_c00193{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m26_c00193{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m3a_c00193{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m47_c00193{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.mdd_c00193{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m37_c00193{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mb3_c00193{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.mc1_c00193{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.mc2_c00193{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.mb7_c00193{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m9e_c00193{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m2_c00193{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.md5_c00193{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.mec_c00193{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.md0_c00193{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m20_c00193{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.ma4_c00193{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m95_c00193{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m88_c00193{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.mba_c00193{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m76_c00193{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m68_c00193{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m64_c00193{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m2f_c00193{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m8a_c00193{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.mb5_c00193{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m8_c00193{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mb1_c00193{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.ma8_c00193{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mdb_c00193{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.mc_c00193{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.mda_c00193{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.m83_c00193{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.mf3_c00193{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m6f_c00193{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.mae_c00193{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mf1_c00193{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m4a_c00193{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.ma2_c00193{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.m98_c00193{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.mb8_c00193{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m10_c00193{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.mc6_c00193{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m5e_c00193{transform:matrix(0.449907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449907,0.000000,0.000000,0.250000,0,0);}
.m74_c00193{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m60_c00193{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m9_c00193{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.mc9_c00193{transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);}
.m80_c00193{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m2e_c00193{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.ma7_c00193{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m8f_c00193{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mb2_c00193{transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);}
.m8d_c00193{transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);}
.mcf_c00193{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.ma1_c00193{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00193{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m45_c00193{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m42_c00193{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m97_c00193{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m5d_c00193{transform:matrix(0.473562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473562,0.000000,0.000000,0.250000,0,0);}
.mb9_c00193{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.m49_c00193{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m75_c00193{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m5a_c00193{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m13_c00193{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m3_c00193{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m6_c00193{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m8b_c00193{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m6c_c00193{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m3e_c00193{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mb6_c00193{transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);}
.mcc_c00193{transform:matrix(0.492437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492437,0.000000,0.000000,0.250000,0,0);}
.m6a_c00193{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.me2_c00193{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m21_c00193{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mdf_c00193{transform:matrix(0.495294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495294,0.000000,0.000000,0.250000,0,0);}
.me9_c00193{transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);}
.m84_c00193{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m23_c00193{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_c00193{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.mab_c00193{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m96_c00193{transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);}
.ma_c00193{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m5f_c00193{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m31_c00193{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m87_c00193{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m65_c00193{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.ma5_c00193{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.me7_c00193{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.m12_c00193{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m9f_c00193{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m17_c00193{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.me_c00193{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.mf_c00193{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m86_c00193{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m5c_c00193{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m18_c00193{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m11_c00193{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.me4_c00193{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.mcb_c00193{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m24_c00193{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m78_c00193{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.me1_c00193{transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);}
.m67_c00193{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m48_c00193{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m6d_c00193{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m19_c00193{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m1e_c00193{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mbb_c00193{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m93_c00193{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.ma9_c00193{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m7_c00193{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mc8_c00193{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m50_c00193{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m69_c00193{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mef_c00193{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m15_c00193{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m28_c00193{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m46_c00193{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m72_c00193{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.ma0_c00193{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.me3_c00193{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m52_c00193{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.mf5_c00193{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m1c_c00193{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m61_c00193{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m6e_c00193{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m73_c00193{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m63_c00193{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m59_c00193{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m62_c00193{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m43_c00193{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m2b_c00193{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m3c_c00193{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m85_c00193{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m2c_c00193{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m1d_c00193{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mc4_c00193{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m7b_c00193{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mca_c00193{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mf8_c00193{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.me5_c00193{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m92_c00193{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m9d_c00193{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m14_c00193{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m38_c00193{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m9a_c00193{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m53_c00193{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m4e_c00193{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.mb_c00193{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mdc_c00193{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m79_c00193{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.me8_c00193{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.md7_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);}
.mbd_c00193{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.maf_c00193{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m1f_c00193{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.m82_c00193{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m7d_c00193{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m5b_c00193{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m70_c00193{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.md9_c00193{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m39_c00193{transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);}
.m89_c00193{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m16_c00193{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m40_c00193{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m27_c00193{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.mc7_c00193{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m7c_c00193{transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);}
.m1_c00193{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.mcd_c00193{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.md4_c00193{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m6b_c00193{transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);}
.maa_c00193{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m7f_c00193{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.m8e_c00193{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mbe_c00193{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.mde_c00193{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.ma6_c00193{transform:matrix(0.614627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614627,0.000000,0.000000,0.250000,0,0);}
.m4f_c00193{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m9b_c00193{transform:matrix(0.617739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617739,0.000000,0.000000,0.250000,0,0);}
.meb_c00193{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_c00193{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m1a_c00193{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m36_c00193{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.mbf_c00193{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m8c_c00193{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m2a_c00193{transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);}
.m32_c00193{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mee_c00193{transform:matrix(0.666494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666494,0.000000,0.000000,0.250000,0,0);}
.mf4_c00193{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m5_c00193{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.me6_c00193{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.m3d_c00193{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m4_c00193{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.me0_c00193{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);}
.md2_c00193{transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);}
.m4d_c00193{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mb0_c00193{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m34_c00193{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m66_c00193{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m25_c00193{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m29_c00193{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mf6_c00193{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m30_c00193{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m41_c00193{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m71_c00193{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m7a_c00193{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m2d_c00193{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.med_c00193{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00193{vertical-align:0.000000px;}
.ls0_c00193{letter-spacing:0.000000px;}
.sc__c00193{text-shadow:none;}
.sc0_c00193{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00193{-webkit-text-stroke:0px transparent;}
.sc0_c00193{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00193{word-spacing:-8.421958px;}
.ws1_c00193{word-spacing:0.000000px;}
.fc0_c00193{color:transparent;}
.fs7_c00193{font-size:3.420000px;}
.fs3_c00193{font-size:18.720000px;}
.fs1_c00193{font-size:20.400000px;}
.fs4_c00193{font-size:25.500000px;}
.fs2_c00193{font-size:28.920000px;}
.fs5_c00193{font-size:32.340000px;}
.fs0_c00193{font-size:35.700000px;}
.fs6_c00193{font-size:39.120000px;}
.y0_c00193{bottom:0.000000px;}
.yb5_c00193{bottom:250.680000px;}
.yb2_c00193{bottom:252.405000px;}
.yb3_c00193{bottom:252.630000px;}
.yb6_c00193{bottom:253.905000px;}
.yb4_c00193{bottom:253.920000px;}
.yad_c00193{bottom:269.745000px;}
.yaf_c00193{bottom:270.825000px;}
.yb1_c00193{bottom:271.050000px;}
.yb0_c00193{bottom:271.245000px;}
.yae_c00193{bottom:271.920000px;}
.yac_c00193{bottom:289.680000px;}
.ya9_c00193{bottom:290.745000px;}
.yab_c00193{bottom:292.905000px;}
.yaa_c00193{bottom:292.920000px;}
.ya6_c00193{bottom:316.470000px;}
.ya7_c00193{bottom:317.325000px;}
.ya8_c00193{bottom:317.550000px;}
.ya4_c00193{bottom:319.470000px;}
.ya5_c00193{bottom:320.550000px;}
.ya2_c00193{bottom:336.825000px;}
.ya3_c00193{bottom:337.050000px;}
.ya1_c00193{bottom:337.905000px;}
.y9e_c00193{bottom:350.970000px;}
.y9c_c00193{bottom:351.825000px;}
.y9f_c00193{bottom:352.050000px;}
.y9d_c00193{bottom:353.970000px;}
.ya0_c00193{bottom:355.050000px;}
.y99_c00193{bottom:379.245000px;}
.y9b_c00193{bottom:380.325000px;}
.y9a_c00193{bottom:381.405000px;}
.y97_c00193{bottom:420.405000px;}
.y98_c00193{bottom:421.905000px;}
.y95_c00193{bottom:437.745000px;}
.y93_c00193{bottom:438.825000px;}
.y92_c00193{bottom:439.245000px;}
.y96_c00193{bottom:439.470000px;}
.y94_c00193{bottom:439.905000px;}
.y91_c00193{bottom:441.405000px;}
.y8f_c00193{bottom:457.245000px;}
.y8d_c00193{bottom:458.325000px;}
.y8b_c00193{bottom:458.745000px;}
.y8e_c00193{bottom:459.405000px;}
.y90_c00193{bottom:459.630000px;}
.y8c_c00193{bottom:460.905000px;}
.y8a_c00193{bottom:475.905000px;}
.y87_c00193{bottom:478.245000px;}
.y89_c00193{bottom:478.905000px;}
.y88_c00193{bottom:479.970000px;}
.y86_c00193{bottom:480.405000px;}
.y85_c00193{bottom:495.405000px;}
.y81_c00193{bottom:497.745000px;}
.y84_c00193{bottom:498.825000px;}
.y82_c00193{bottom:499.470000px;}
.y83_c00193{bottom:499.905000px;}
.y7e_c00193{bottom:517.245000px;}
.y80_c00193{bottom:518.325000px;}
.y7f_c00193{bottom:519.405000px;}
.y7c_c00193{bottom:536.745000px;}
.y7d_c00193{bottom:537.825000px;}
.y7b_c00193{bottom:538.905000px;}
.y7a_c00193{bottom:555.405000px;}
.y78_c00193{bottom:556.245000px;}
.y76_c00193{bottom:556.680000px;}
.y77_c00193{bottom:558.405000px;}
.y79_c00193{bottom:558.630000px;}
.y75_c00193{bottom:559.905000px;}
.y73_c00193{bottom:574.905000px;}
.y71_c00193{bottom:575.745000px;}
.y74_c00193{bottom:576.825000px;}
.y70_c00193{bottom:577.905000px;}
.y72_c00193{bottom:578.970000px;}
.y6f_c00193{bottom:607.905000px;}
.y6e_c00193{bottom:644.745000px;}
.y6c_c00193{bottom:645.825000px;}
.y6d_c00193{bottom:646.905000px;}
.y66_c00193{bottom:664.245000px;}
.y69_c00193{bottom:665.745000px;}
.y6b_c00193{bottom:666.405000px;}
.y6a_c00193{bottom:666.630000px;}
.y68_c00193{bottom:667.470000px;}
.y67_c00193{bottom:667.905000px;}
.y64_c00193{bottom:684.825000px;}
.y65_c00193{bottom:685.245000px;}
.y62_c00193{bottom:685.905000px;}
.y60_c00193{bottom:686.130000px;}
.y63_c00193{bottom:686.970000px;}
.y61_c00193{bottom:687.405000px;}
.y5f_c00193{bottom:703.245000px;}
.y5e_c00193{bottom:704.325000px;}
.y5a_c00193{bottom:704.745000px;}
.y5d_c00193{bottom:705.405000px;}
.y5b_c00193{bottom:705.630000px;}
.y5c_c00193{bottom:706.905000px;}
.y59_c00193{bottom:722.745000px;}
.y53_c00193{bottom:724.245000px;}
.y58_c00193{bottom:724.905000px;}
.y54_c00193{bottom:725.130000px;}
.y57_c00193{bottom:725.325000px;}
.y56_c00193{bottom:725.970000px;}
.y55_c00193{bottom:726.405000px;}
.y4d_c00193{bottom:743.745000px;}
.y4f_c00193{bottom:744.630000px;}
.y50_c00193{bottom:744.825000px;}
.y51_c00193{bottom:745.470000px;}
.y4e_c00193{bottom:745.905000px;}
.y52_c00193{bottom:746.970000px;}
.y49_c00193{bottom:762.405000px;}
.y4b_c00193{bottom:763.245000px;}
.y47_c00193{bottom:764.325000px;}
.y4c_c00193{bottom:764.550000px;}
.y48_c00193{bottom:765.405000px;}
.y4a_c00193{bottom:765.630000px;}
.y45_c00193{bottom:782.745000px;}
.y46_c00193{bottom:782.970000px;}
.y42_c00193{bottom:784.905000px;}
.y43_c00193{bottom:785.130000px;}
.y44_c00193{bottom:785.970000px;}
.y40_c00193{bottom:802.245000px;}
.y3d_c00193{bottom:802.470000px;}
.y41_c00193{bottom:803.325000px;}
.y3f_c00193{bottom:804.405000px;}
.y3e_c00193{bottom:804.630000px;}
.y38_c00193{bottom:823.245000px;}
.y3b_c00193{bottom:824.130000px;}
.y3c_c00193{bottom:824.970000px;}
.y39_c00193{bottom:825.405000px;}
.y3a_c00193{bottom:826.470000px;}
.y35_c00193{bottom:842.745000px;}
.y37_c00193{bottom:843.405000px;}
.y36_c00193{bottom:843.630000px;}
.y34_c00193{bottom:844.470000px;}
.y33_c00193{bottom:844.905000px;}
.y30_c00193{bottom:861.825000px;}
.y32_c00193{bottom:862.245000px;}
.y2f_c00193{bottom:863.325000px;}
.y31_c00193{bottom:863.970000px;}
.y2e_c00193{bottom:864.405000px;}
.y2d_c00193{bottom:881.745000px;}
.y2c_c00193{bottom:883.905000px;}
.y28_c00193{bottom:900.405000px;}
.y2a_c00193{bottom:901.245000px;}
.y2b_c00193{bottom:902.325000px;}
.y29_c00193{bottom:903.405000px;}
.y24_c00193{bottom:920.745000px;}
.y27_c00193{bottom:921.630000px;}
.y26_c00193{bottom:921.825000px;}
.y25_c00193{bottom:922.905000px;}
.y21_c00193{bottom:940.245000px;}
.y23_c00193{bottom:941.325000px;}
.y20_c00193{bottom:942.405000px;}
.y22_c00193{bottom:942.630000px;}
.y1d_c00193{bottom:959.745000px;}
.y1e_c00193{bottom:961.905000px;}
.y1f_c00193{bottom:962.130000px;}
.y1a_c00193{bottom:979.245000px;}
.y1c_c00193{bottom:980.970000px;}
.y18_c00193{bottom:981.405000px;}
.y17_c00193{bottom:981.630000px;}
.y19_c00193{bottom:981.825000px;}
.y1b_c00193{bottom:982.470000px;}
.y16_c00193{bottom:982.905000px;}
.y13_c00193{bottom:998.745000px;}
.y12_c00193{bottom:998.970000px;}
.y11_c00193{bottom:1000.905000px;}
.y14_c00193{bottom:1001.130000px;}
.y15_c00193{bottom:1001.970000px;}
.y10_c00193{bottom:1018.245000px;}
.ye_c00193{bottom:1018.470000px;}
.yd_c00193{bottom:1020.405000px;}
.yf_c00193{bottom:1021.470000px;}
.yc_c00193{bottom:1021.905000px;}
.ya_c00193{bottom:1039.245000px;}
.yb_c00193{bottom:1040.970000px;}
.y9_c00193{bottom:1041.405000px;}
.y7_c00193{bottom:1056.405000px;}
.y3_c00193{bottom:1058.745000px;}
.y5_c00193{bottom:1059.630000px;}
.y8_c00193{bottom:1059.825000px;}
.y6_c00193{bottom:1060.470000px;}
.y4_c00193{bottom:1060.905000px;}
.y2_c00193{bottom:1097.550000px;}
.y1_c00193{bottom:1097.745000px;}
.h8_c00193{height:4.206533px;}
.h4_c00193{height:23.025234px;}
.h2_c00193{height:25.091602px;}
.h5_c00193{height:31.364502px;}
.h3_c00193{height:35.571035px;}
.h6_c00193{height:39.777568px;}
.h1_c00193{height:43.910303px;}
.h7_c00193{height:48.116836px;}
.h0_c00193{height:1335.000000px;}
.w0_c00193{width:880.500000px;}
.x0_c00193{left:0.000000px;}
.xf1_c00193{left:150.000000px;}
.x54_c00193{left:151.500000px;}
.xf_c00193{left:153.000000px;}
.x78_c00193{left:154.500000px;}
.x1_c00193{left:155.775000px;}
.xfd_c00193{left:161.580000px;}
.x102_c00193{left:165.420000px;}
.xb6_c00193{left:166.500000px;}
.x3_c00193{left:169.920000px;}
.xd2_c00193{left:171.000000px;}
.x6e_c00193{left:174.000000px;}
.xd7_c00193{left:178.920000px;}
.xd0_c00193{left:181.080000px;}
.x8a_c00193{left:186.000000px;}
.x26_c00193{left:187.500000px;}
.x4a_c00193{left:190.920000px;}
.x1c_c00193{left:192.000000px;}
.xa1_c00193{left:193.920000px;}
.x98_c00193{left:198.000000px;}
.xcc_c00193{left:201.420000px;}
.xc5_c00193{left:202.500000px;}
.x79_c00193{left:203.580000px;}
.x8b_c00193{left:207.000000px;}
.xb7_c00193{left:208.500000px;}
.xbe_c00193{left:210.000000px;}
.xb0_c00193{left:211.500000px;}
.x82_c00193{left:214.080000px;}
.x31_c00193{left:216.000000px;}
.x8f_c00193{left:219.000000px;}
.xf6_c00193{left:220.920000px;}
.xde_c00193{left:222.420000px;}
.x27_c00193{left:223.920000px;}
.x7a_c00193{left:225.000000px;}
.xf2_c00193{left:226.500000px;}
.x4b_c00193{left:228.000000px;}
.x4_c00193{left:229.080000px;}
.x99_c00193{left:232.080000px;}
.x10_c00193{left:233.580000px;}
.x1d_c00193{left:237.000000px;}
.x63_c00193{left:238.080000px;}
.x83_c00193{left:246.000000px;}
.x55_c00193{left:247.500000px;}
.xa2_c00193{left:249.000000px;}
.xfe_c00193{left:250.080000px;}
.x32_c00193{left:251.580000px;}
.x64_c00193{left:253.500000px;}
.xe3_c00193{left:256.080000px;}
.xb8_c00193{left:259.080000px;}
.x5b_c00193{left:262.500000px;}
.x11_c00193{left:264.420000px;}
.x6f_c00193{left:265.500000px;}
.x3e_c00193{left:267.000000px;}
.xf3_c00193{left:268.500000px;}
.xaa_c00193{left:271.500000px;}
.xe4_c00193{left:274.500000px;}
.xc6_c00193{left:277.500000px;}
.x28_c00193{left:279.000000px;}
.x84_c00193{left:280.500000px;}
.x5c_c00193{left:281.580000px;}
.x33_c00193{left:283.500000px;}
.xbf_c00193{left:285.420000px;}
.xb9_c00193{left:291.000000px;}
.x1e_c00193{left:295.500000px;}
.x90_c00193{left:297.000000px;}
.x107_c00193{left:298.500000px;}
.x85_c00193{left:299.580000px;}
.xb1_c00193{left:301.080000px;}
.x5_c00193{left:303.420000px;}
.x9a_c00193{left:305.580000px;}
.x56_c00193{left:312.000000px;}
.x8c_c00193{left:316.080000px;}
.x108_c00193{left:319.080000px;}
.x65_c00193{left:323.580000px;}
.xd8_c00193{left:327.000000px;}
.x29_c00193{left:328.500000px;}
.x1f_c00193{left:331.920000px;}
.x91_c00193{left:333.420000px;}
.xea_c00193{left:335.580000px;}
.x9b_c00193{left:338.580000px;}
.xb2_c00193{left:342.000000px;}
.x103_c00193{left:343.275000px;}
.x7b_c00193{left:345.000000px;}
.x12_c00193{left:346.080000px;}
.xcb_c00193{left:347.145000px;}
.xa3_c00193{left:349.500000px;}
.x6_c00193{left:351.000000px;}
.x2a_c00193{left:352.500000px;}
.x5d_c00193{left:353.580000px;}
.x70_c00193{left:357.000000px;}
.xeb_c00193{left:358.920000px;}
.xab_c00193{left:361.080000px;}
.x4c_c00193{left:366.420000px;}
.xc0_c00193{left:367.500000px;}
.x3f_c00193{left:369.000000px;}
.x7_c00193{left:371.580000px;}
.xd3_c00193{left:373.080000px;}
.xc7_c00193{left:376.080000px;}
.x13_c00193{left:379.500000px;}
.x34_c00193{left:381.000000px;}
.x57_c00193{left:382.080000px;}
.x104_c00193{left:384.000000px;}
.xd9_c00193{left:385.500000px;}
.xec_c00193{left:387.420000px;}
.x2b_c00193{left:388.920000px;}
.xba_c00193{left:390.000000px;}
.x7c_c00193{left:391.080000px;}
.x92_c00193{left:393.000000px;}
.x4d_c00193{left:394.080000px;}
.x8_c00193{left:396.420000px;}
.xd4_c00193{left:399.420000px;}
.xac_c00193{left:400.920000px;}
.x2_c00193{left:402.000000px;}
.x66_c00193{left:403.500000px;}
.x86_c00193{left:405.000000px;}
.xc8_c00193{left:406.500000px;}
.x35_c00193{left:407.580000px;}
.x93_c00193{left:409.500000px;}
.xcd_c00193{left:411.000000px;}
.x105_c00193{left:412.500000px;}
.x14_c00193{left:416.580000px;}
.xf8_c00193{left:418.080000px;}
.x40_c00193{left:419.580000px;}
.x71_c00193{left:421.080000px;}
.x9_c00193{left:424.500000px;}
.xed_c00193{left:426.000000px;}
.xd5_c00193{left:427.500000px;}
.xad_c00193{left:428.580000px;}
.xfb_c00193{left:430.500000px;}
.xa4_c00193{left:433.920000px;}
.x41_c00193{left:436.080000px;}
.xbb_c00193{left:438.000000px;}
.xd1_c00193{left:439.500000px;}
.x20_c00193{left:442.500000px;}
.xce_c00193{left:444.000000px;}
.xb3_c00193{left:445.500000px;}
.x15_c00193{left:446.580000px;}
.xfc_c00193{left:450.420000px;}
.xda_c00193{left:451.500000px;}
.x5e_c00193{left:452.580000px;}
.x9c_c00193{left:457.500000px;}
.x36_c00193{left:459.000000px;}
.xf7_c00193{left:460.080000px;}
.xf9_c00193{left:465.000000px;}
.xc1_c00193{left:466.500000px;}
.xc9_c00193{left:468.420000px;}
.x5f_c00193{left:469.920000px;}
.x42_c00193{left:471.000000px;}
.xdf_c00193{left:472.920000px;}
.xd6_c00193{left:475.500000px;}
.x21_c00193{left:476.580000px;}
.x37_c00193{left:478.920000px;}
.x67_c00193{left:480.420000px;}
.x16_c00193{left:484.920000px;}
.x72_c00193{left:486.000000px;}
.x4e_c00193{left:487.920000px;}
.x7d_c00193{left:489.000000px;}
.xc2_c00193{left:490.920000px;}
.xa_c00193{left:492.420000px;}
.x43_c00193{left:494.580000px;}
.x94_c00193{left:496.080000px;}
.x9d_c00193{left:501.000000px;}
.xa5_c00193{left:502.500000px;}
.xe5_c00193{left:505.500000px;}
.x73_c00193{left:507.000000px;}
.x22_c00193{left:508.080000px;}
.x68_c00193{left:511.500000px;}
.x2c_c00193{left:512.580000px;}
.x106_c00193{left:514.920000px;}
.x95_c00193{left:516.000000px;}
.xdb_c00193{left:517.500000px;}
.xbc_c00193{left:519.000000px;}
.x4f_c00193{left:521.580000px;}
.x9e_c00193{left:523.920000px;}
.xca_c00193{left:525.000000px;}
.x17_c00193{left:528.000000px;}
.x69_c00193{left:529.500000px;}
.x58_c00193{left:530.580000px;}
.xff_c00193{left:533.355000px;}
.xf4_c00193{left:534.420000px;}
.x74_c00193{left:537.420000px;}
.x87_c00193{left:538.920000px;}
.x50_c00193{left:541.920000px;}
.x44_c00193{left:545.580000px;}
.x18_c00193{left:547.080000px;}
.x60_c00193{left:548.775000px;}
.xa6_c00193{left:552.000000px;}
.x38_c00193{left:553.500000px;}
.x100_c00193{left:556.920000px;}
.xe6_c00193{left:558.000000px;}
.xe0_c00193{left:559.500000px;}
.x45_c00193{left:562.500000px;}
.x96_c00193{left:564.000000px;}
.x2d_c00193{left:565.500000px;}
.x19_c00193{left:567.000000px;}
.xdc_c00193{left:568.500000px;}
.xae_c00193{left:570.000000px;}
.x39_c00193{left:571.920000px;}
.xfa_c00193{left:574.080000px;}
.x2e_c00193{left:577.080000px;}
.xb4_c00193{left:582.000000px;}
.x51_c00193{left:583.500000px;}
.xb_c00193{left:586.080000px;}
.x7e_c00193{left:588.000000px;}
.x8d_c00193{left:589.080000px;}
.x9f_c00193{left:591.000000px;}
.x61_c00193{left:592.275000px;}
.x6a_c00193{left:594.420000px;}
.xaf_c00193{left:597.000000px;}
.x75_c00193{left:598.920000px;}
.xe7_c00193{left:600.000000px;}
.x3a_c00193{left:601.080000px;}
.x46_c00193{left:607.500000px;}
.xb5_c00193{left:609.420000px;}
.x101_c00193{left:610.500000px;}
.x7f_c00193{left:612.420000px;}
.x23_c00193{left:613.500000px;}
.xa7_c00193{left:615.000000px;}
.x2f_c00193{left:618.000000px;}
.xf5_c00193{left:619.080000px;}
.x47_c00193{left:622.500000px;}
.x1a_c00193{left:625.500000px;}
.x76_c00193{left:628.080000px;}
.xcf_c00193{left:630.000000px;}
.x6b_c00193{left:633.000000px;}
.x24_c00193{left:636.420000px;}
.x59_c00193{left:637.920000px;}
.xc3_c00193{left:639.000000px;}
.xc_c00193{left:640.080000px;}
.x52_c00193{left:642.420000px;}
.xa8_c00193{left:643.500000px;}
.xee_c00193{left:645.000000px;}
.x6c_c00193{left:648.000000px;}
.x48_c00193{left:649.080000px;}
.xe1_c00193{left:652.080000px;}
.x62_c00193{left:654.000000px;}
.x3b_c00193{left:655.500000px;}
.x97_c00193{left:658.500000px;}
.xd_c00193{left:661.080000px;}
.x8e_c00193{left:662.775000px;}
.x88_c00193{left:664.920000px;}
.x6d_c00193{left:667.500000px;}
.xe8_c00193{left:672.000000px;}
.x3c_c00193{left:675.420000px;}
.x25_c00193{left:676.500000px;}
.x53_c00193{left:677.580000px;}
.xef_c00193{left:681.420000px;}
.x49_c00193{left:684.000000px;}
.xa0_c00193{left:685.080000px;}
.x30_c00193{left:686.580000px;}
.x80_c00193{left:688.080000px;}
.x89_c00193{left:690.000000px;}
.xdd_c00193{left:693.000000px;}
.xa9_c00193{left:695.580000px;}
.xbd_c00193{left:700.500000px;}
.x3d_c00193{left:703.500000px;}
.x1b_c00193{left:706.080000px;}
.xe9_c00193{left:708.420000px;}
.x81_c00193{left:709.920000px;}
.x5a_c00193{left:711.000000px;}
.xe_c00193{left:712.500000px;}
.xc4_c00193{left:714.000000px;}
.xf0_c00193{left:715.500000px;}
.xe2_c00193{left:717.000000px;}
.x77_c00193{left:718.500000px;}
@media print{
.v0_c00193{vertical-align:0.000000pt;}
.ls0_c00193{letter-spacing:0.000000pt;}
.ws0_c00193{word-spacing:-7.486185pt;}
.ws1_c00193{word-spacing:0.000000pt;}
.fs7_c00193{font-size:3.040000pt;}
.fs3_c00193{font-size:16.640000pt;}
.fs1_c00193{font-size:18.133333pt;}
.fs4_c00193{font-size:22.666667pt;}
.fs2_c00193{font-size:25.706667pt;}
.fs5_c00193{font-size:28.746667pt;}
.fs0_c00193{font-size:31.733333pt;}
.fs6_c00193{font-size:34.773333pt;}
.y0_c00193{bottom:0.000000pt;}
.yb5_c00193{bottom:222.826667pt;}
.yb2_c00193{bottom:224.360000pt;}
.yb3_c00193{bottom:224.560000pt;}
.yb6_c00193{bottom:225.693333pt;}
.yb4_c00193{bottom:225.706667pt;}
.yad_c00193{bottom:239.773333pt;}
.yaf_c00193{bottom:240.733333pt;}
.yb1_c00193{bottom:240.933333pt;}
.yb0_c00193{bottom:241.106667pt;}
.yae_c00193{bottom:241.706667pt;}
.yac_c00193{bottom:257.493333pt;}
.ya9_c00193{bottom:258.440000pt;}
.yab_c00193{bottom:260.360000pt;}
.yaa_c00193{bottom:260.373333pt;}
.ya6_c00193{bottom:281.306667pt;}
.ya7_c00193{bottom:282.066667pt;}
.ya8_c00193{bottom:282.266667pt;}
.ya4_c00193{bottom:283.973333pt;}
.ya5_c00193{bottom:284.933333pt;}
.ya2_c00193{bottom:299.400000pt;}
.ya3_c00193{bottom:299.600000pt;}
.ya1_c00193{bottom:300.360000pt;}
.y9e_c00193{bottom:311.973333pt;}
.y9c_c00193{bottom:312.733333pt;}
.y9f_c00193{bottom:312.933333pt;}
.y9d_c00193{bottom:314.640000pt;}
.ya0_c00193{bottom:315.600000pt;}
.y99_c00193{bottom:337.106667pt;}
.y9b_c00193{bottom:338.066667pt;}
.y9a_c00193{bottom:339.026667pt;}
.y97_c00193{bottom:373.693333pt;}
.y98_c00193{bottom:375.026667pt;}
.y95_c00193{bottom:389.106667pt;}
.y93_c00193{bottom:390.066667pt;}
.y92_c00193{bottom:390.440000pt;}
.y96_c00193{bottom:390.640000pt;}
.y94_c00193{bottom:391.026667pt;}
.y91_c00193{bottom:392.360000pt;}
.y8f_c00193{bottom:406.440000pt;}
.y8d_c00193{bottom:407.400000pt;}
.y8b_c00193{bottom:407.773333pt;}
.y8e_c00193{bottom:408.360000pt;}
.y90_c00193{bottom:408.560000pt;}
.y8c_c00193{bottom:409.693333pt;}
.y8a_c00193{bottom:423.026667pt;}
.y87_c00193{bottom:425.106667pt;}
.y89_c00193{bottom:425.693333pt;}
.y88_c00193{bottom:426.640000pt;}
.y86_c00193{bottom:427.026667pt;}
.y85_c00193{bottom:440.360000pt;}
.y81_c00193{bottom:442.440000pt;}
.y84_c00193{bottom:443.400000pt;}
.y82_c00193{bottom:443.973333pt;}
.y83_c00193{bottom:444.360000pt;}
.y7e_c00193{bottom:459.773333pt;}
.y80_c00193{bottom:460.733333pt;}
.y7f_c00193{bottom:461.693333pt;}
.y7c_c00193{bottom:477.106667pt;}
.y7d_c00193{bottom:478.066667pt;}
.y7b_c00193{bottom:479.026667pt;}
.y7a_c00193{bottom:493.693333pt;}
.y78_c00193{bottom:494.440000pt;}
.y76_c00193{bottom:494.826667pt;}
.y77_c00193{bottom:496.360000pt;}
.y79_c00193{bottom:496.560000pt;}
.y75_c00193{bottom:497.693333pt;}
.y73_c00193{bottom:511.026667pt;}
.y71_c00193{bottom:511.773333pt;}
.y74_c00193{bottom:512.733333pt;}
.y70_c00193{bottom:513.693333pt;}
.y72_c00193{bottom:514.640000pt;}
.y6f_c00193{bottom:540.360000pt;}
.y6e_c00193{bottom:573.106667pt;}
.y6c_c00193{bottom:574.066667pt;}
.y6d_c00193{bottom:575.026667pt;}
.y66_c00193{bottom:590.440000pt;}
.y69_c00193{bottom:591.773333pt;}
.y6b_c00193{bottom:592.360000pt;}
.y6a_c00193{bottom:592.560000pt;}
.y68_c00193{bottom:593.306667pt;}
.y67_c00193{bottom:593.693333pt;}
.y64_c00193{bottom:608.733333pt;}
.y65_c00193{bottom:609.106667pt;}
.y62_c00193{bottom:609.693333pt;}
.y60_c00193{bottom:609.893333pt;}
.y63_c00193{bottom:610.640000pt;}
.y61_c00193{bottom:611.026667pt;}
.y5f_c00193{bottom:625.106667pt;}
.y5e_c00193{bottom:626.066667pt;}
.y5a_c00193{bottom:626.440000pt;}
.y5d_c00193{bottom:627.026667pt;}
.y5b_c00193{bottom:627.226667pt;}
.y5c_c00193{bottom:628.360000pt;}
.y59_c00193{bottom:642.440000pt;}
.y53_c00193{bottom:643.773333pt;}
.y58_c00193{bottom:644.360000pt;}
.y54_c00193{bottom:644.560000pt;}
.y57_c00193{bottom:644.733333pt;}
.y56_c00193{bottom:645.306667pt;}
.y55_c00193{bottom:645.693333pt;}
.y4d_c00193{bottom:661.106667pt;}
.y4f_c00193{bottom:661.893333pt;}
.y50_c00193{bottom:662.066667pt;}
.y51_c00193{bottom:662.640000pt;}
.y4e_c00193{bottom:663.026667pt;}
.y52_c00193{bottom:663.973333pt;}
.y49_c00193{bottom:677.693333pt;}
.y4b_c00193{bottom:678.440000pt;}
.y47_c00193{bottom:679.400000pt;}
.y4c_c00193{bottom:679.600000pt;}
.y48_c00193{bottom:680.360000pt;}
.y4a_c00193{bottom:680.560000pt;}
.y45_c00193{bottom:695.773333pt;}
.y46_c00193{bottom:695.973333pt;}
.y42_c00193{bottom:697.693333pt;}
.y43_c00193{bottom:697.893333pt;}
.y44_c00193{bottom:698.640000pt;}
.y40_c00193{bottom:713.106667pt;}
.y3d_c00193{bottom:713.306667pt;}
.y41_c00193{bottom:714.066667pt;}
.y3f_c00193{bottom:715.026667pt;}
.y3e_c00193{bottom:715.226667pt;}
.y38_c00193{bottom:731.773333pt;}
.y3b_c00193{bottom:732.560000pt;}
.y3c_c00193{bottom:733.306667pt;}
.y39_c00193{bottom:733.693333pt;}
.y3a_c00193{bottom:734.640000pt;}
.y35_c00193{bottom:749.106667pt;}
.y37_c00193{bottom:749.693333pt;}
.y36_c00193{bottom:749.893333pt;}
.y34_c00193{bottom:750.640000pt;}
.y33_c00193{bottom:751.026667pt;}
.y30_c00193{bottom:766.066667pt;}
.y32_c00193{bottom:766.440000pt;}
.y2f_c00193{bottom:767.400000pt;}
.y31_c00193{bottom:767.973333pt;}
.y2e_c00193{bottom:768.360000pt;}
.y2d_c00193{bottom:783.773333pt;}
.y2c_c00193{bottom:785.693333pt;}
.y28_c00193{bottom:800.360000pt;}
.y2a_c00193{bottom:801.106667pt;}
.y2b_c00193{bottom:802.066667pt;}
.y29_c00193{bottom:803.026667pt;}
.y24_c00193{bottom:818.440000pt;}
.y27_c00193{bottom:819.226667pt;}
.y26_c00193{bottom:819.400000pt;}
.y25_c00193{bottom:820.360000pt;}
.y21_c00193{bottom:835.773333pt;}
.y23_c00193{bottom:836.733333pt;}
.y20_c00193{bottom:837.693333pt;}
.y22_c00193{bottom:837.893333pt;}
.y1d_c00193{bottom:853.106667pt;}
.y1e_c00193{bottom:855.026667pt;}
.y1f_c00193{bottom:855.226667pt;}
.y1a_c00193{bottom:870.440000pt;}
.y1c_c00193{bottom:871.973333pt;}
.y18_c00193{bottom:872.360000pt;}
.y17_c00193{bottom:872.560000pt;}
.y19_c00193{bottom:872.733333pt;}
.y1b_c00193{bottom:873.306667pt;}
.y16_c00193{bottom:873.693333pt;}
.y13_c00193{bottom:887.773333pt;}
.y12_c00193{bottom:887.973333pt;}
.y11_c00193{bottom:889.693333pt;}
.y14_c00193{bottom:889.893333pt;}
.y15_c00193{bottom:890.640000pt;}
.y10_c00193{bottom:905.106667pt;}
.ye_c00193{bottom:905.306667pt;}
.yd_c00193{bottom:907.026667pt;}
.yf_c00193{bottom:907.973333pt;}
.yc_c00193{bottom:908.360000pt;}
.ya_c00193{bottom:923.773333pt;}
.yb_c00193{bottom:925.306667pt;}
.y9_c00193{bottom:925.693333pt;}
.y7_c00193{bottom:939.026667pt;}
.y3_c00193{bottom:941.106667pt;}
.y5_c00193{bottom:941.893333pt;}
.y8_c00193{bottom:942.066667pt;}
.y6_c00193{bottom:942.640000pt;}
.y4_c00193{bottom:943.026667pt;}
.y2_c00193{bottom:975.600000pt;}
.y1_c00193{bottom:975.773333pt;}
.h8_c00193{height:3.739141pt;}
.h4_c00193{height:20.466875pt;}
.h2_c00193{height:22.303646pt;}
.h5_c00193{height:27.879557pt;}
.h3_c00193{height:31.618698pt;}
.h6_c00193{height:35.357839pt;}
.h1_c00193{height:39.031380pt;}
.h7_c00193{height:42.770521pt;}
.h0_c00193{height:1186.666667pt;}
.w0_c00193{width:782.666667pt;}
.x0_c00193{left:0.000000pt;}
.xf1_c00193{left:133.333333pt;}
.x54_c00193{left:134.666667pt;}
.xf_c00193{left:136.000000pt;}
.x78_c00193{left:137.333333pt;}
.x1_c00193{left:138.466667pt;}
.xfd_c00193{left:143.626667pt;}
.x102_c00193{left:147.040000pt;}
.xb6_c00193{left:148.000000pt;}
.x3_c00193{left:151.040000pt;}
.xd2_c00193{left:152.000000pt;}
.x6e_c00193{left:154.666667pt;}
.xd7_c00193{left:159.040000pt;}
.xd0_c00193{left:160.960000pt;}
.x8a_c00193{left:165.333333pt;}
.x26_c00193{left:166.666667pt;}
.x4a_c00193{left:169.706667pt;}
.x1c_c00193{left:170.666667pt;}
.xa1_c00193{left:172.373333pt;}
.x98_c00193{left:176.000000pt;}
.xcc_c00193{left:179.040000pt;}
.xc5_c00193{left:180.000000pt;}
.x79_c00193{left:180.960000pt;}
.x8b_c00193{left:184.000000pt;}
.xb7_c00193{left:185.333333pt;}
.xbe_c00193{left:186.666667pt;}
.xb0_c00193{left:188.000000pt;}
.x82_c00193{left:190.293333pt;}
.x31_c00193{left:192.000000pt;}
.x8f_c00193{left:194.666667pt;}
.xf6_c00193{left:196.373333pt;}
.xde_c00193{left:197.706667pt;}
.x27_c00193{left:199.040000pt;}
.x7a_c00193{left:200.000000pt;}
.xf2_c00193{left:201.333333pt;}
.x4b_c00193{left:202.666667pt;}
.x4_c00193{left:203.626667pt;}
.x99_c00193{left:206.293333pt;}
.x10_c00193{left:207.626667pt;}
.x1d_c00193{left:210.666667pt;}
.x63_c00193{left:211.626667pt;}
.x83_c00193{left:218.666667pt;}
.x55_c00193{left:220.000000pt;}
.xa2_c00193{left:221.333333pt;}
.xfe_c00193{left:222.293333pt;}
.x32_c00193{left:223.626667pt;}
.x64_c00193{left:225.333333pt;}
.xe3_c00193{left:227.626667pt;}
.xb8_c00193{left:230.293333pt;}
.x5b_c00193{left:233.333333pt;}
.x11_c00193{left:235.040000pt;}
.x6f_c00193{left:236.000000pt;}
.x3e_c00193{left:237.333333pt;}
.xf3_c00193{left:238.666667pt;}
.xaa_c00193{left:241.333333pt;}
.xe4_c00193{left:244.000000pt;}
.xc6_c00193{left:246.666667pt;}
.x28_c00193{left:248.000000pt;}
.x84_c00193{left:249.333333pt;}
.x5c_c00193{left:250.293333pt;}
.x33_c00193{left:252.000000pt;}
.xbf_c00193{left:253.706667pt;}
.xb9_c00193{left:258.666667pt;}
.x1e_c00193{left:262.666667pt;}
.x90_c00193{left:264.000000pt;}
.x107_c00193{left:265.333333pt;}
.x85_c00193{left:266.293333pt;}
.xb1_c00193{left:267.626667pt;}
.x5_c00193{left:269.706667pt;}
.x9a_c00193{left:271.626667pt;}
.x56_c00193{left:277.333333pt;}
.x8c_c00193{left:280.960000pt;}
.x108_c00193{left:283.626667pt;}
.x65_c00193{left:287.626667pt;}
.xd8_c00193{left:290.666667pt;}
.x29_c00193{left:292.000000pt;}
.x1f_c00193{left:295.040000pt;}
.x91_c00193{left:296.373333pt;}
.xea_c00193{left:298.293333pt;}
.x9b_c00193{left:300.960000pt;}
.xb2_c00193{left:304.000000pt;}
.x103_c00193{left:305.133333pt;}
.x7b_c00193{left:306.666667pt;}
.x12_c00193{left:307.626667pt;}
.xcb_c00193{left:308.573333pt;}
.xa3_c00193{left:310.666667pt;}
.x6_c00193{left:312.000000pt;}
.x2a_c00193{left:313.333333pt;}
.x5d_c00193{left:314.293333pt;}
.x70_c00193{left:317.333333pt;}
.xeb_c00193{left:319.040000pt;}
.xab_c00193{left:320.960000pt;}
.x4c_c00193{left:325.706667pt;}
.xc0_c00193{left:326.666667pt;}
.x3f_c00193{left:328.000000pt;}
.x7_c00193{left:330.293333pt;}
.xd3_c00193{left:331.626667pt;}
.xc7_c00193{left:334.293333pt;}
.x13_c00193{left:337.333333pt;}
.x34_c00193{left:338.666667pt;}
.x57_c00193{left:339.626667pt;}
.x104_c00193{left:341.333333pt;}
.xd9_c00193{left:342.666667pt;}
.xec_c00193{left:344.373333pt;}
.x2b_c00193{left:345.706667pt;}
.xba_c00193{left:346.666667pt;}
.x7c_c00193{left:347.626667pt;}
.x92_c00193{left:349.333333pt;}
.x4d_c00193{left:350.293333pt;}
.x8_c00193{left:352.373333pt;}
.xd4_c00193{left:355.040000pt;}
.xac_c00193{left:356.373333pt;}
.x2_c00193{left:357.333333pt;}
.x66_c00193{left:358.666667pt;}
.x86_c00193{left:360.000000pt;}
.xc8_c00193{left:361.333333pt;}
.x35_c00193{left:362.293333pt;}
.x93_c00193{left:364.000000pt;}
.xcd_c00193{left:365.333333pt;}
.x105_c00193{left:366.666667pt;}
.x14_c00193{left:370.293333pt;}
.xf8_c00193{left:371.626667pt;}
.x40_c00193{left:372.960000pt;}
.x71_c00193{left:374.293333pt;}
.x9_c00193{left:377.333333pt;}
.xed_c00193{left:378.666667pt;}
.xd5_c00193{left:380.000000pt;}
.xad_c00193{left:380.960000pt;}
.xfb_c00193{left:382.666667pt;}
.xa4_c00193{left:385.706667pt;}
.x41_c00193{left:387.626667pt;}
.xbb_c00193{left:389.333333pt;}
.xd1_c00193{left:390.666667pt;}
.x20_c00193{left:393.333333pt;}
.xce_c00193{left:394.666667pt;}
.xb3_c00193{left:396.000000pt;}
.x15_c00193{left:396.960000pt;}
.xfc_c00193{left:400.373333pt;}
.xda_c00193{left:401.333333pt;}
.x5e_c00193{left:402.293333pt;}
.x9c_c00193{left:406.666667pt;}
.x36_c00193{left:408.000000pt;}
.xf7_c00193{left:408.960000pt;}
.xf9_c00193{left:413.333333pt;}
.xc1_c00193{left:414.666667pt;}
.xc9_c00193{left:416.373333pt;}
.x5f_c00193{left:417.706667pt;}
.x42_c00193{left:418.666667pt;}
.xdf_c00193{left:420.373333pt;}
.xd6_c00193{left:422.666667pt;}
.x21_c00193{left:423.626667pt;}
.x37_c00193{left:425.706667pt;}
.x67_c00193{left:427.040000pt;}
.x16_c00193{left:431.040000pt;}
.x72_c00193{left:432.000000pt;}
.x4e_c00193{left:433.706667pt;}
.x7d_c00193{left:434.666667pt;}
.xc2_c00193{left:436.373333pt;}
.xa_c00193{left:437.706667pt;}
.x43_c00193{left:439.626667pt;}
.x94_c00193{left:440.960000pt;}
.x9d_c00193{left:445.333333pt;}
.xa5_c00193{left:446.666667pt;}
.xe5_c00193{left:449.333333pt;}
.x73_c00193{left:450.666667pt;}
.x22_c00193{left:451.626667pt;}
.x68_c00193{left:454.666667pt;}
.x2c_c00193{left:455.626667pt;}
.x106_c00193{left:457.706667pt;}
.x95_c00193{left:458.666667pt;}
.xdb_c00193{left:460.000000pt;}
.xbc_c00193{left:461.333333pt;}
.x4f_c00193{left:463.626667pt;}
.x9e_c00193{left:465.706667pt;}
.xca_c00193{left:466.666667pt;}
.x17_c00193{left:469.333333pt;}
.x69_c00193{left:470.666667pt;}
.x58_c00193{left:471.626667pt;}
.xff_c00193{left:474.093333pt;}
.xf4_c00193{left:475.040000pt;}
.x74_c00193{left:477.706667pt;}
.x87_c00193{left:479.040000pt;}
.x50_c00193{left:481.706667pt;}
.x44_c00193{left:484.960000pt;}
.x18_c00193{left:486.293333pt;}
.x60_c00193{left:487.800000pt;}
.xa6_c00193{left:490.666667pt;}
.x38_c00193{left:492.000000pt;}
.x100_c00193{left:495.040000pt;}
.xe6_c00193{left:496.000000pt;}
.xe0_c00193{left:497.333333pt;}
.x45_c00193{left:500.000000pt;}
.x96_c00193{left:501.333333pt;}
.x2d_c00193{left:502.666667pt;}
.x19_c00193{left:504.000000pt;}
.xdc_c00193{left:505.333333pt;}
.xae_c00193{left:506.666667pt;}
.x39_c00193{left:508.373333pt;}
.xfa_c00193{left:510.293333pt;}
.x2e_c00193{left:512.960000pt;}
.xb4_c00193{left:517.333333pt;}
.x51_c00193{left:518.666667pt;}
.xb_c00193{left:520.960000pt;}
.x7e_c00193{left:522.666667pt;}
.x8d_c00193{left:523.626667pt;}
.x9f_c00193{left:525.333333pt;}
.x61_c00193{left:526.466667pt;}
.x6a_c00193{left:528.373333pt;}
.xaf_c00193{left:530.666667pt;}
.x75_c00193{left:532.373333pt;}
.xe7_c00193{left:533.333333pt;}
.x3a_c00193{left:534.293333pt;}
.x46_c00193{left:540.000000pt;}
.xb5_c00193{left:541.706667pt;}
.x101_c00193{left:542.666667pt;}
.x7f_c00193{left:544.373333pt;}
.x23_c00193{left:545.333333pt;}
.xa7_c00193{left:546.666667pt;}
.x2f_c00193{left:549.333333pt;}
.xf5_c00193{left:550.293333pt;}
.x47_c00193{left:553.333333pt;}
.x1a_c00193{left:556.000000pt;}
.x76_c00193{left:558.293333pt;}
.xcf_c00193{left:560.000000pt;}
.x6b_c00193{left:562.666667pt;}
.x24_c00193{left:565.706667pt;}
.x59_c00193{left:567.040000pt;}
.xc3_c00193{left:568.000000pt;}
.xc_c00193{left:568.960000pt;}
.x52_c00193{left:571.040000pt;}
.xa8_c00193{left:572.000000pt;}
.xee_c00193{left:573.333333pt;}
.x6c_c00193{left:576.000000pt;}
.x48_c00193{left:576.960000pt;}
.xe1_c00193{left:579.626667pt;}
.x62_c00193{left:581.333333pt;}
.x3b_c00193{left:582.666667pt;}
.x97_c00193{left:585.333333pt;}
.xd_c00193{left:587.626667pt;}
.x8e_c00193{left:589.133333pt;}
.x88_c00193{left:591.040000pt;}
.x6d_c00193{left:593.333333pt;}
.xe8_c00193{left:597.333333pt;}
.x3c_c00193{left:600.373333pt;}
.x25_c00193{left:601.333333pt;}
.x53_c00193{left:602.293333pt;}
.xef_c00193{left:605.706667pt;}
.x49_c00193{left:608.000000pt;}
.xa0_c00193{left:608.960000pt;}
.x30_c00193{left:610.293333pt;}
.x80_c00193{left:611.626667pt;}
.x89_c00193{left:613.333333pt;}
.xdd_c00193{left:616.000000pt;}
.xa9_c00193{left:618.293333pt;}
.xbd_c00193{left:622.666667pt;}
.x3d_c00193{left:625.333333pt;}
.x1b_c00193{left:627.626667pt;}
.xe9_c00193{left:629.706667pt;}
.x81_c00193{left:631.040000pt;}
.x5a_c00193{left:632.000000pt;}
.xe_c00193{left:633.333333pt;}
.xc4_c00193{left:634.666667pt;}
.xf0_c00193{left:636.000000pt;}
.xe2_c00193{left:637.333333pt;}
.x77_c00193{left:638.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_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_f28125b269676a71abbba9f5.woff2')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc7_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);}
.mc5_c00194{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m51_c00194{transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);}
.m0_c00194{transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);}
.m1d_c00194{transform:matrix(0.348926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348926,0.000000,0.000000,0.250000,0,0);}
.m1c_c00194{transform:matrix(0.357745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357745,0.000000,0.000000,0.250000,0,0);}
.m25_c00194{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m5f_c00194{transform:matrix(0.365028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365028,0.000000,0.000000,0.250000,0,0);}
.mdc_c00194{transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);}
.mee_c00194{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m5_c00194{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mec_c00194{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m43_c00194{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m66_c00194{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m23_c00194{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m42_c00194{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m65_c00194{transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);}
.m31_c00194{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m3d_c00194{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.me3_c00194{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.me9_c00194{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.mf4_c00194{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m22_c00194{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.me8_c00194{transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);}
.m34_c00194{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m37_c00194{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.mca_c00194{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m71_c00194{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m85_c00194{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.mbc_c00194{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.md6_c00194{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mbb_c00194{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m8e_c00194{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m96_c00194{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m48_c00194{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m2e_c00194{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.me4_c00194{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m4a_c00194{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m101_c00194{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m35_c00194{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mfa_c00194{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.mf0_c00194{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m7f_c00194{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m9d_c00194{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m7d_c00194{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m1f_c00194{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.mbf_c00194{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.me6_c00194{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.mff_c00194{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m99_c00194{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.me7_c00194{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m36_c00194{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.mb5_c00194{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m46_c00194{transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);}
.md5_c00194{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m6a_c00194{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m74_c00194{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mf9_c00194{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mb0_c00194{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m75_c00194{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m54_c00194{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.md7_c00194{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m24_c00194{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m6e_c00194{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.md8_c00194{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m103_c00194{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.mae_c00194{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m8f_c00194{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mf8_c00194{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.mfb_c00194{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m56_c00194{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m84_c00194{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m89_c00194{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m9b_c00194{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m4b_c00194{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.mb7_c00194{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.m60_c00194{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.m78_c00194{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m67_c00194{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.mcf_c00194{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m94_c00194{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m21_c00194{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m87_c00194{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.me0_c00194{transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);}
.m44_c00194{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.ma0_c00194{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.mf3_c00194{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m1a_c00194{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m2b_c00194{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.mdf_c00194{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m88_c00194{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.md_c00194{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m81_c00194{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m5d_c00194{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m82_c00194{transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);}
.m27_c00194{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.mda_c00194{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mcd_c00194{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.med_c00194{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m97_c00194{transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);}
.m41_c00194{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.ma8_c00194{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.ma5_c00194{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.mf6_c00194{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m2f_c00194{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m80_c00194{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m70_c00194{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.ma3_c00194{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m7e_c00194{transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);}
.m6b_c00194{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.me5_c00194{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.m3a_c00194{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.m8b_c00194{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m5a_c00194{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.mef_c00194{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m38_c00194{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m61_c00194{transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);}
.mc6_c00194{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mb3_c00194{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m92_c00194{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mf1_c00194{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m53_c00194{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.mfd_c00194{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m6f_c00194{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m95_c00194{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m6_c00194{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mcc_c00194{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.maa_c00194{transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);}
.m11_c00194{transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);}
.m3b_c00194{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m40_c00194{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);}
.mab_c00194{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.me2_c00194{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m1b_c00194{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.mf5_c00194{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.mbd_c00194{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m62_c00194{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m69_c00194{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m39_c00194{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m16_c00194{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mf_c00194{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.mb9_c00194{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.mad_c00194{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m9a_c00194{transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);}
.m2d_c00194{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m3e_c00194{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m9f_c00194{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m15_c00194{transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);}
.ma2_c00194{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m14_c00194{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m68_c00194{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.mc0_c00194{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.md3_c00194{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m8a_c00194{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m18_c00194{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m4c_c00194{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mcb_c00194{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.mb8_c00194{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m1e_c00194{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mb2_c00194{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m33_c00194{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.ma6_c00194{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m91_c00194{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m77_c00194{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.ma_c00194{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.me1_c00194{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.md0_c00194{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.me_c00194{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m13_c00194{transform:matrix(0.532931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532931,0.000000,0.000000,0.250000,0,0);}
.m32_c00194{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m8d_c00194{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m2c_c00194{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m4_c00194{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mbe_c00194{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m59_c00194{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m98_c00194{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mc8_c00194{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mac_c00194{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m30_c00194{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m5b_c00194{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m4e_c00194{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mdd_c00194{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m8_c00194{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m90_c00194{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mc1_c00194{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m12_c00194{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mc4_c00194{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m29_c00194{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m73_c00194{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.mb_c00194{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mb6_c00194{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m57_c00194{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m20_c00194{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m8c_c00194{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m86_c00194{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m5c_c00194{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m47_c00194{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m3c_c00194{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mc9_c00194{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m5e_c00194{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mc3_c00194{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mc2_c00194{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.mb4_c00194{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m2_c00194{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m9_c00194{transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);}
.m76_c00194{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m79_c00194{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.mf7_c00194{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m104_c00194{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.md1_c00194{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.ma9_c00194{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.meb_c00194{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.mea_c00194{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m83_c00194{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mce_c00194{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m100_c00194{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.mc_c00194{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m45_c00194{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m49_c00194{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m2a_c00194{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.maf_c00194{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.md9_c00194{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m6c_c00194{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.ma4_c00194{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.m102_c00194{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.ma1_c00194{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m64_c00194{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.md2_c00194{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m93_c00194{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m50_c00194{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m107_c00194{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m28_c00194{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mdb_c00194{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m17_c00194{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mba_c00194{transform:matrix(0.620332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620332,0.000000,0.000000,0.250000,0,0);}
.m26_c00194{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.ma7_c00194{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m7a_c00194{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m7c_c00194{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m10_c00194{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m1_c00194{transform:matrix(0.673077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673077,0.000000,0.000000,0.250000,0,0);}
.m105_c00194{transform:matrix(0.687241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687241,0.000000,0.000000,0.250000,0,0);}
.m4d_c00194{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m4f_c00194{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m72_c00194{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m58_c00194{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);}
.m6d_c00194{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m7b_c00194{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m3f_c00194{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m7_c00194{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.md4_c00194{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mb1_c00194{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mfe_c00194{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m9c_c00194{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m9e_c00194{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mfc_c00194{transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);}
.mde_c00194{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m106_c00194{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.mf2_c00194{transform:matrix(0.958824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.958824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.958824,0.000000,0.000000,0.250000,0,0);}
.m52_c00194{transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);}
.m63_c00194{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m55_c00194{transform:matrix(1.565657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.565657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.565657,0.000000,0.000000,0.250000,0,0);}
.m19_c00194{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m3_c00194{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-6.743747px;}
.ws1_c00194{word-spacing:0.000000px;}
.fc0_c00194{color:transparent;}
.fs3_c00194{font-size:3.420000px;}
.fs7_c00194{font-size:11.880000px;}
.fs9_c00194{font-size:13.620000px;}
.fs1_c00194{font-size:18.720000px;}
.fs8_c00194{font-size:20.400000px;}
.fs4_c00194{font-size:25.500000px;}
.fs2_c00194{font-size:28.920000px;}
.fs5_c00194{font-size:32.340000px;}
.fs0_c00194{font-size:35.700000px;}
.fs6_c00194{font-size:39.120000px;}
.y0_c00194{bottom:0.000000px;}
.ycc_c00194{bottom:245.775000px;}
.yc8_c00194{bottom:247.905000px;}
.yca_c00194{bottom:248.745000px;}
.ycd_c00194{bottom:248.970000px;}
.yce_c00194{bottom:249.405000px;}
.yc7_c00194{bottom:249.825000px;}
.yc9_c00194{bottom:250.905000px;}
.ycb_c00194{bottom:252.630000px;}
.yc3_c00194{bottom:265.905000px;}
.yc4_c00194{bottom:266.970000px;}
.yc2_c00194{bottom:267.405000px;}
.ybf_c00194{bottom:267.825000px;}
.yc0_c00194{bottom:268.245000px;}
.yc1_c00194{bottom:269.325000px;}
.yc5_c00194{bottom:269.970000px;}
.yc6_c00194{bottom:270.405000px;}
.ybc_c00194{bottom:285.630000px;}
.yb9_c00194{bottom:286.905000px;}
.yba_c00194{bottom:287.745000px;}
.ybd_c00194{bottom:288.630000px;}
.yb8_c00194{bottom:288.825000px;}
.ybb_c00194{bottom:289.905000px;}
.ybe_c00194{bottom:289.920000px;}
.yb6_c00194{bottom:306.405000px;}
.yb5_c00194{bottom:307.245000px;}
.yb3_c00194{bottom:307.470000px;}
.yb2_c00194{bottom:307.905000px;}
.yaf_c00194{bottom:308.325000px;}
.yb0_c00194{bottom:308.745000px;}
.yb7_c00194{bottom:309.405000px;}
.yb4_c00194{bottom:310.470000px;}
.yb1_c00194{bottom:310.905000px;}
.yae_c00194{bottom:325.905000px;}
.yab_c00194{bottom:326.325000px;}
.yaa_c00194{bottom:326.745000px;}
.yad_c00194{bottom:328.245000px;}
.yac_c00194{bottom:328.905000px;}
.ya5_c00194{bottom:345.825000px;}
.ya8_c00194{bottom:346.245000px;}
.ya7_c00194{bottom:346.470000px;}
.ya2_c00194{bottom:346.905000px;}
.ya6_c00194{bottom:347.325000px;}
.ya4_c00194{bottom:347.745000px;}
.ya9_c00194{bottom:348.405000px;}
.ya3_c00194{bottom:349.905000px;}
.ya1_c00194{bottom:366.405000px;}
.ya0_c00194{bottom:367.245000px;}
.y9f_c00194{bottom:368.325000px;}
.y9e_c00194{bottom:369.405000px;}
.y9d_c00194{bottom:386.745000px;}
.y9c_c00194{bottom:388.470000px;}
.y9b_c00194{bottom:388.905000px;}
.y98_c00194{bottom:406.245000px;}
.y99_c00194{bottom:407.325000px;}
.y9a_c00194{bottom:408.405000px;}
.y96_c00194{bottom:425.745000px;}
.y97_c00194{bottom:426.630000px;}
.y94_c00194{bottom:427.905000px;}
.y95_c00194{bottom:428.130000px;}
.y90_c00194{bottom:445.245000px;}
.y93_c00194{bottom:446.325000px;}
.y8f_c00194{bottom:446.745000px;}
.y91_c00194{bottom:447.405000px;}
.y92_c00194{bottom:447.630000px;}
.y8e_c00194{bottom:448.905000px;}
.y8d_c00194{bottom:464.745000px;}
.y8a_c00194{bottom:466.245000px;}
.y8c_c00194{bottom:466.905000px;}
.y8b_c00194{bottom:468.405000px;}
.y89_c00194{bottom:483.405000px;}
.y85_c00194{bottom:485.745000px;}
.y88_c00194{bottom:486.405000px;}
.y87_c00194{bottom:487.470000px;}
.y86_c00194{bottom:487.905000px;}
.y84_c00194{bottom:502.905000px;}
.y83_c00194{bottom:505.245000px;}
.y82_c00194{bottom:506.130000px;}
.y81_c00194{bottom:506.970000px;}
.y7f_c00194{bottom:507.405000px;}
.y80_c00194{bottom:508.470000px;}
.y7d_c00194{bottom:523.470000px;}
.y7b_c00194{bottom:524.745000px;}
.y7e_c00194{bottom:526.470000px;}
.y7c_c00194{bottom:526.905000px;}
.y7a_c00194{bottom:527.970000px;}
.y79_c00194{bottom:543.405000px;}
.y76_c00194{bottom:544.245000px;}
.y78_c00194{bottom:545.325000px;}
.y75_c00194{bottom:546.405000px;}
.y77_c00194{bottom:547.470000px;}
.y73_c00194{bottom:563.745000px;}
.y74_c00194{bottom:564.825000px;}
.y72_c00194{bottom:565.905000px;}
.y6f_c00194{bottom:583.245000px;}
.y71_c00194{bottom:584.745000px;}
.y70_c00194{bottom:585.405000px;}
.y6e_c00194{bottom:604.245000px;}
.y6d_c00194{bottom:606.405000px;}
.y6a_c00194{bottom:623.745000px;}
.y6c_c00194{bottom:624.630000px;}
.y6b_c00194{bottom:624.825000px;}
.y69_c00194{bottom:625.905000px;}
.y65_c00194{bottom:642.405000px;}
.y66_c00194{bottom:643.245000px;}
.y68_c00194{bottom:644.325000px;}
.y64_c00194{bottom:645.405000px;}
.y67_c00194{bottom:645.630000px;}
.y60_c00194{bottom:662.325000px;}
.y63_c00194{bottom:663.825000px;}
.y61_c00194{bottom:664.905000px;}
.y62_c00194{bottom:665.970000px;}
.y5d_c00194{bottom:683.325000px;}
.y5b_c00194{bottom:683.745000px;}
.y5a_c00194{bottom:684.405000px;}
.y5e_c00194{bottom:685.470000px;}
.y5c_c00194{bottom:685.905000px;}
.y5f_c00194{bottom:686.970000px;}
.y57_c00194{bottom:703.245000px;}
.y56_c00194{bottom:704.130000px;}
.y59_c00194{bottom:704.325000px;}
.y58_c00194{bottom:705.405000px;}
.y54_c00194{bottom:722.325000px;}
.y52_c00194{bottom:722.745000px;}
.y51_c00194{bottom:723.825000px;}
.y55_c00194{bottom:724.470000px;}
.y53_c00194{bottom:724.905000px;}
.y4e_c00194{bottom:742.245000px;}
.y4f_c00194{bottom:743.325000px;}
.y4d_c00194{bottom:744.405000px;}
.y50_c00194{bottom:745.470000px;}
.y4a_c00194{bottom:761.745000px;}
.y4c_c00194{bottom:762.630000px;}
.y4b_c00194{bottom:762.825000px;}
.y49_c00194{bottom:763.905000px;}
.y46_c00194{bottom:781.245000px;}
.y48_c00194{bottom:782.325000px;}
.y47_c00194{bottom:783.405000px;}
.y42_c00194{bottom:800.325000px;}
.y3f_c00194{bottom:800.745000px;}
.y44_c00194{bottom:801.825000px;}
.y41_c00194{bottom:802.245000px;}
.y43_c00194{bottom:802.905000px;}
.y40_c00194{bottom:803.325000px;}
.y45_c00194{bottom:804.405000px;}
.y38_c00194{bottom:820.245000px;}
.y3b_c00194{bottom:820.470000px;}
.y3d_c00194{bottom:820.905000px;}
.y3a_c00194{bottom:822.405000px;}
.y3e_c00194{bottom:822.630000px;}
.y3c_c00194{bottom:823.470000px;}
.y39_c00194{bottom:823.920000px;}
.y33_c00194{bottom:846.405000px;}
.y36_c00194{bottom:846.825000px;}
.y34_c00194{bottom:847.470000px;}
.y35_c00194{bottom:847.905000px;}
.y32_c00194{bottom:848.130000px;}
.y37_c00194{bottom:848.970000px;}
.y2e_c00194{bottom:860.325000px;}
.y2f_c00194{bottom:861.405000px;}
.y31_c00194{bottom:862.470000px;}
.y30_c00194{bottom:862.695000px;}
.y29_c00194{bottom:875.325000px;}
.y2d_c00194{bottom:876.405000px;}
.y28_c00194{bottom:876.630000px;}
.y2a_c00194{bottom:877.275000px;}
.y2c_c00194{bottom:877.470000px;}
.y2b_c00194{bottom:878.550000px;}
.y26_c00194{bottom:900.630000px;}
.y27_c00194{bottom:901.905000px;}
.y22_c00194{bottom:918.180000px;}
.y21_c00194{bottom:919.245000px;}
.y25_c00194{bottom:920.970000px;}
.y20_c00194{bottom:921.405000px;}
.y23_c00194{bottom:921.630000px;}
.y24_c00194{bottom:922.470000px;}
.y1e_c00194{bottom:938.745000px;}
.y1d_c00194{bottom:940.905000px;}
.y1f_c00194{bottom:941.130000px;}
.y19_c00194{bottom:958.245000px;}
.y1b_c00194{bottom:959.745000px;}
.y1a_c00194{bottom:960.825000px;}
.y1c_c00194{bottom:961.470000px;}
.y18_c00194{bottom:961.905000px;}
.y16_c00194{bottom:979.245000px;}
.y17_c00194{bottom:980.130000px;}
.y15_c00194{bottom:981.405000px;}
.y10_c00194{bottom:998.745000px;}
.yf_c00194{bottom:999.405000px;}
.y13_c00194{bottom:999.825000px;}
.y14_c00194{bottom:1000.470000px;}
.y11_c00194{bottom:1000.905000px;}
.y12_c00194{bottom:1001.970000px;}
.ye_c00194{bottom:1017.180000px;}
.yd_c00194{bottom:1018.245000px;}
.yb_c00194{bottom:1020.405000px;}
.yc_c00194{bottom:1020.420000px;}
.y7_c00194{bottom:1037.745000px;}
.ya_c00194{bottom:1038.825000px;}
.y9_c00194{bottom:1039.470000px;}
.y8_c00194{bottom:1039.905000px;}
.y5_c00194{bottom:1057.245000px;}
.y3_c00194{bottom:1059.405000px;}
.y4_c00194{bottom:1059.420000px;}
.y6_c00194{bottom:1059.630000px;}
.y1_c00194{bottom:1097.745000px;}
.y2_c00194{bottom:1098.630000px;}
.h4_c00194{height:4.206533px;}
.h8_c00194{height:14.612168px;}
.ha_c00194{height:16.752334px;}
.h2_c00194{height:23.025234px;}
.h9_c00194{height:25.091602px;}
.h5_c00194{height:31.364502px;}
.h3_c00194{height:35.571035px;}
.h6_c00194{height:39.777568px;}
.h1_c00194{height:43.910303px;}
.h7_c00194{height:48.116836px;}
.h0_c00194{height:1335.000000px;}
.w0_c00194{width:880.500000px;}
.x0_c00194{left:0.000000px;}
.xe_c00194{left:151.920000px;}
.x5a_c00194{left:153.000000px;}
.xe5_c00194{left:154.500000px;}
.x52_c00194{left:166.080000px;}
.x3_c00194{left:167.580000px;}
.x2b_c00194{left:169.080000px;}
.x9b_c00194{left:171.000000px;}
.x1f_c00194{left:180.645000px;}
.x53_c00194{left:182.580000px;}
.x82_c00194{left:187.500000px;}
.x50_c00194{left:192.420000px;}
.x37_c00194{left:193.500000px;}
.x3e_c00194{left:195.000000px;}
.x5b_c00194{left:197.580000px;}
.xd3_c00194{left:202.500000px;}
.xa5_c00194{left:205.080000px;}
.xae_c00194{left:206.580000px;}
.xb3_c00194{left:208.500000px;}
.xdd_c00194{left:210.000000px;}
.xf_c00194{left:211.920000px;}
.xfa_c00194{left:217.920000px;}
.xc0_c00194{left:219.420000px;}
.x7c_c00194{left:220.500000px;}
.xd9_c00194{left:223.080000px;}
.x8c_c00194{left:224.580000px;}
.xd4_c00194{left:226.500000px;}
.x51_c00194{left:229.080000px;}
.x83_c00194{left:231.000000px;}
.x95_c00194{left:235.500000px;}
.xea_c00194{left:236.580000px;}
.x2c_c00194{left:238.500000px;}
.x10_c00194{left:240.000000px;}
.x38_c00194{left:241.500000px;}
.x20_c00194{left:242.580000px;}
.x9c_c00194{left:244.500000px;}
.xde_c00194{left:246.420000px;}
.x63_c00194{left:249.000000px;}
.xa6_c00194{left:250.500000px;}
.x17_c00194{left:252.000000px;}
.xaf_c00194{left:253.920000px;}
.x6e_c00194{left:255.000000px;}
.x5c_c00194{left:256.080000px;}
.x4_c00194{left:261.000000px;}
.x47_c00194{left:262.080000px;}
.xf0_c00194{left:264.000000px;}
.x2d_c00194{left:265.080000px;}
.xeb_c00194{left:267.000000px;}
.x84_c00194{left:268.500000px;}
.xca_c00194{left:271.500000px;}
.xcc_c00194{left:272.580000px;}
.x18_c00194{left:274.080000px;}
.x6f_c00194{left:275.580000px;}
.x5_c00194{left:282.000000px;}
.xb9_c00194{left:285.420000px;}
.x96_c00194{left:286.920000px;}
.x7d_c00194{left:288.000000px;}
.xfe_c00194{left:290.580000px;}
.x21_c00194{left:292.275000px;}
.xc1_c00194{left:294.420000px;}
.xa7_c00194{left:297.000000px;}
.xe1_c00194{left:298.500000px;}
.x11_c00194{left:300.000000px;}
.xe6_c00194{left:301.500000px;}
.x2e_c00194{left:303.420000px;}
.x3f_c00194{left:304.920000px;}
.x7e_c00194{left:310.920000px;}
.x54_c00194{left:312.000000px;}
.xba_c00194{left:313.500000px;}
.x6_c00194{left:315.000000px;}
.xd5_c00194{left:316.500000px;}
.x12_c00194{left:319.920000px;}
.x8d_c00194{left:321.000000px;}
.x22_c00194{left:322.080000px;}
.xef_c00194{left:327.000000px;}
.x55_c00194{left:328.080000px;}
.x70_c00194{left:329.580000px;}
.x9d_c00194{left:333.000000px;}
.x5d_c00194{left:334.080000px;}
.xc6_c00194{left:337.080000px;}
.xb4_c00194{left:340.500000px;}
.x7f_c00194{left:342.000000px;}
.x2f_c00194{left:343.500000px;}
.x19_c00194{left:346.500000px;}
.x71_c00194{left:348.420000px;}
.xe2_c00194{left:352.920000px;}
.xc4_c00194{left:357.000000px;}
.x85_c00194{left:358.500000px;}
.xcd_c00194{left:359.580000px;}
.xc7_c00194{left:361.920000px;}
.x9f_c00194{left:363.000000px;}
.x40_c00194{left:364.080000px;}
.x30_c00194{left:365.580000px;}
.x7_c00194{left:367.500000px;}
.xc2_c00194{left:369.000000px;}
.x39_c00194{left:370.080000px;}
.x78_c00194{left:373.500000px;}
.x41_c00194{left:377.355000px;}
.x8e_c00194{left:379.920000px;}
.x64_c00194{left:381.000000px;}
.xb5_c00194{left:382.920000px;}
.x80_c00194{left:384.420000px;}
.x23_c00194{left:385.920000px;}
.x13_c00194{left:387.000000px;}
.xdf_c00194{left:388.920000px;}
.x97_c00194{left:390.000000px;}
.x5e_c00194{left:391.080000px;}
.x48_c00194{left:394.080000px;}
.xb0_c00194{left:396.000000px;}
.x2_c00194{left:397.500000px;}
.xce_c00194{left:400.500000px;}
.x5f_c00194{left:401.580000px;}
.xbb_c00194{left:403.500000px;}
.x72_c00194{left:405.420000px;}
.xec_c00194{left:407.580000px;}
.x8f_c00194{left:409.500000px;}
.x8_c00194{left:411.000000px;}
.x42_c00194{left:412.275000px;}
.x14_c00194{left:413.580000px;}
.x24_c00194{left:415.500000px;}
.x3a_c00194{left:421.080000px;}
.x49_c00194{left:423.000000px;}
.xda_c00194{left:424.920000px;}
.xed_c00194{left:426.420000px;}
.x31_c00194{left:428.580000px;}
.x65_c00194{left:430.500000px;}
.x15_c00194{left:433.080000px;}
.x86_c00194{left:435.420000px;}
.x4a_c00194{left:436.500000px;}
.xa8_c00194{left:437.580000px;}
.x1a_c00194{left:438.645000px;}
.xe7_c00194{left:439.920000px;}
.xf2_c00194{left:441.000000px;}
.xee_c00194{left:442.080000px;}
.x90_c00194{left:448.920000px;}
.x9_c00194{left:450.420000px;}
.xdb_c00194{left:453.000000px;}
.xfb_c00194{left:454.920000px;}
.xa0_c00194{left:456.420000px;}
.xe3_c00194{left:460.920000px;}
.x73_c00194{left:462.420000px;}
.xc8_c00194{left:463.500000px;}
.x16_c00194{left:464.580000px;}
.x25_c00194{left:466.500000px;}
.x56_c00194{left:468.000000px;}
.xff_c00194{left:469.080000px;}
.x3b_c00194{left:470.580000px;}
.x32_c00194{left:475.500000px;}
.x87_c00194{left:478.500000px;}
.xcf_c00194{left:480.420000px;}
.x9e_c00194{left:481.500000px;}
.xd6_c00194{left:484.920000px;}
.xe4_c00194{left:487.920000px;}
.x100_c00194{left:489.000000px;}
.x4b_c00194{left:490.080000px;}
.x1b_c00194{left:491.580000px;}
.x101_c00194{left:495.420000px;}
.x79_c00194{left:496.500000px;}
.x60_c00194{left:497.580000px;}
.x66_c00194{left:499.920000px;}
.x26_c00194{left:502.500000px;}
.xdc_c00194{left:503.580000px;}
.xf3_c00194{left:505.080000px;}
.x43_c00194{left:506.580000px;}
.x67_c00194{left:510.000000px;}
.xa9_c00194{left:511.080000px;}
.x33_c00194{left:513.000000px;}
.x98_c00194{left:519.000000px;}
.xcb_c00194{left:520.500000px;}
.xf4_c00194{left:522.000000px;}
.x61_c00194{left:524.580000px;}
.xd7_c00194{left:526.500000px;}
.xe8_c00194{left:528.420000px;}
.x91_c00194{left:530.580000px;}
.x57_c00194{left:532.500000px;}
.xa_c00194{left:537.420000px;}
.x4c_c00194{left:538.500000px;}
.xbc_c00194{left:540.000000px;}
.xa1_c00194{left:541.500000px;}
.x68_c00194{left:544.080000px;}
.x1c_c00194{left:546.000000px;}
.x7a_c00194{left:547.920000px;}
.x4d_c00194{left:550.500000px;}
.x44_c00194{left:551.580000px;}
.xe9_c00194{left:553.500000px;}
.xd0_c00194{left:555.000000px;}
.xb6_c00194{left:558.000000px;}
.x81_c00194{left:564.000000px;}
.xb1_c00194{left:567.000000px;}
.x62_c00194{left:568.500000px;}
.xaa_c00194{left:570.000000px;}
.xc3_c00194{left:572.580000px;}
.xb_c00194{left:576.000000px;}
.x27_c00194{left:577.500000px;}
.x88_c00194{left:579.000000px;}
.xd1_c00194{left:580.920000px;}
.xa2_c00194{left:582.000000px;}
.x69_c00194{left:583.500000px;}
.x1d_c00194{left:586.080000px;}
.x4e_c00194{left:589.500000px;}
.xf7_c00194{left:592.500000px;}
.xfc_c00194{left:594.000000px;}
.x92_c00194{left:595.500000px;}
.xb7_c00194{left:597.000000px;}
.x58_c00194{left:598.500000px;}
.xf1_c00194{left:599.580000px;}
.x28_c00194{left:603.420000px;}
.x6a_c00194{left:605.580000px;}
.xbd_c00194{left:609.420000px;}
.x93_c00194{left:615.000000px;}
.x34_c00194{left:616.500000px;}
.x89_c00194{left:617.580000px;}
.x74_c00194{left:619.500000px;}
.x45_c00194{left:621.000000px;}
.x4f_c00194{left:624.420000px;}
.xab_c00194{left:625.920000px;}
.x35_c00194{left:628.500000px;}
.x99_c00194{left:630.420000px;}
.x6b_c00194{left:634.500000px;}
.x29_c00194{left:635.580000px;}
.xf8_c00194{left:637.500000px;}
.xb8_c00194{left:639.000000px;}
.xc_c00194{left:641.580000px;}
.xbe_c00194{left:643.500000px;}
.x94_c00194{left:645.000000px;}
.xc9_c00194{left:646.500000px;}
.x1e_c00194{left:647.580000px;}
.x8a_c00194{left:649.500000px;}
.xac_c00194{left:651.000000px;}
.x75_c00194{left:652.500000px;}
.x46_c00194{left:654.000000px;}
.xd8_c00194{left:655.920000px;}
.x9a_c00194{left:657.000000px;}
.x3c_c00194{left:658.080000px;}
.xb2_c00194{left:661.500000px;}
.x6c_c00194{left:664.080000px;}
.x36_c00194{left:666.000000px;}
.xa3_c00194{left:667.500000px;}
.x76_c00194{left:670.080000px;}
.xf9_c00194{left:672.000000px;}
.xe0_c00194{left:675.000000px;}
.x2a_c00194{left:676.920000px;}
.x7b_c00194{left:681.420000px;}
.xbf_c00194{left:683.580000px;}
.xd2_c00194{left:687.000000px;}
.xad_c00194{left:688.920000px;}
.xd_c00194{left:690.000000px;}
.x6d_c00194{left:691.500000px;}
.x8b_c00194{left:693.000000px;}
.x59_c00194{left:694.080000px;}
.xf5_c00194{left:701.580000px;}
.x1_c00194{left:706.275000px;}
.xa4_c00194{left:708.420000px;}
.x3d_c00194{left:713.580000px;}
.x77_c00194{left:715.500000px;}
.xc5_c00194{left:716.580000px;}
.xf6_c00194{left:718.080000px;}
.xfd_c00194{left:719.580000px;}
@media print{
.v0_c00194{vertical-align:0.000000pt;}
.ls0_c00194{letter-spacing:0.000000pt;}
.ws0_c00194{word-spacing:-5.994441pt;}
.ws1_c00194{word-spacing:0.000000pt;}
.fs3_c00194{font-size:3.040000pt;}
.fs7_c00194{font-size:10.560000pt;}
.fs9_c00194{font-size:12.106667pt;}
.fs1_c00194{font-size:16.640000pt;}
.fs8_c00194{font-size:18.133333pt;}
.fs4_c00194{font-size:22.666667pt;}
.fs2_c00194{font-size:25.706667pt;}
.fs5_c00194{font-size:28.746667pt;}
.fs0_c00194{font-size:31.733333pt;}
.fs6_c00194{font-size:34.773333pt;}
.y0_c00194{bottom:0.000000pt;}
.ycc_c00194{bottom:218.466667pt;}
.yc8_c00194{bottom:220.360000pt;}
.yca_c00194{bottom:221.106667pt;}
.ycd_c00194{bottom:221.306667pt;}
.yce_c00194{bottom:221.693333pt;}
.yc7_c00194{bottom:222.066667pt;}
.yc9_c00194{bottom:223.026667pt;}
.ycb_c00194{bottom:224.560000pt;}
.yc3_c00194{bottom:236.360000pt;}
.yc4_c00194{bottom:237.306667pt;}
.yc2_c00194{bottom:237.693333pt;}
.ybf_c00194{bottom:238.066667pt;}
.yc0_c00194{bottom:238.440000pt;}
.yc1_c00194{bottom:239.400000pt;}
.yc5_c00194{bottom:239.973333pt;}
.yc6_c00194{bottom:240.360000pt;}
.ybc_c00194{bottom:253.893333pt;}
.yb9_c00194{bottom:255.026667pt;}
.yba_c00194{bottom:255.773333pt;}
.ybd_c00194{bottom:256.560000pt;}
.yb8_c00194{bottom:256.733333pt;}
.ybb_c00194{bottom:257.693333pt;}
.ybe_c00194{bottom:257.706667pt;}
.yb6_c00194{bottom:272.360000pt;}
.yb5_c00194{bottom:273.106667pt;}
.yb3_c00194{bottom:273.306667pt;}
.yb2_c00194{bottom:273.693333pt;}
.yaf_c00194{bottom:274.066667pt;}
.yb0_c00194{bottom:274.440000pt;}
.yb7_c00194{bottom:275.026667pt;}
.yb4_c00194{bottom:275.973333pt;}
.yb1_c00194{bottom:276.360000pt;}
.yae_c00194{bottom:289.693333pt;}
.yab_c00194{bottom:290.066667pt;}
.yaa_c00194{bottom:290.440000pt;}
.yad_c00194{bottom:291.773333pt;}
.yac_c00194{bottom:292.360000pt;}
.ya5_c00194{bottom:307.400000pt;}
.ya8_c00194{bottom:307.773333pt;}
.ya7_c00194{bottom:307.973333pt;}
.ya2_c00194{bottom:308.360000pt;}
.ya6_c00194{bottom:308.733333pt;}
.ya4_c00194{bottom:309.106667pt;}
.ya9_c00194{bottom:309.693333pt;}
.ya3_c00194{bottom:311.026667pt;}
.ya1_c00194{bottom:325.693333pt;}
.ya0_c00194{bottom:326.440000pt;}
.y9f_c00194{bottom:327.400000pt;}
.y9e_c00194{bottom:328.360000pt;}
.y9d_c00194{bottom:343.773333pt;}
.y9c_c00194{bottom:345.306667pt;}
.y9b_c00194{bottom:345.693333pt;}
.y98_c00194{bottom:361.106667pt;}
.y99_c00194{bottom:362.066667pt;}
.y9a_c00194{bottom:363.026667pt;}
.y96_c00194{bottom:378.440000pt;}
.y97_c00194{bottom:379.226667pt;}
.y94_c00194{bottom:380.360000pt;}
.y95_c00194{bottom:380.560000pt;}
.y90_c00194{bottom:395.773333pt;}
.y93_c00194{bottom:396.733333pt;}
.y8f_c00194{bottom:397.106667pt;}
.y91_c00194{bottom:397.693333pt;}
.y92_c00194{bottom:397.893333pt;}
.y8e_c00194{bottom:399.026667pt;}
.y8d_c00194{bottom:413.106667pt;}
.y8a_c00194{bottom:414.440000pt;}
.y8c_c00194{bottom:415.026667pt;}
.y8b_c00194{bottom:416.360000pt;}
.y89_c00194{bottom:429.693333pt;}
.y85_c00194{bottom:431.773333pt;}
.y88_c00194{bottom:432.360000pt;}
.y87_c00194{bottom:433.306667pt;}
.y86_c00194{bottom:433.693333pt;}
.y84_c00194{bottom:447.026667pt;}
.y83_c00194{bottom:449.106667pt;}
.y82_c00194{bottom:449.893333pt;}
.y81_c00194{bottom:450.640000pt;}
.y7f_c00194{bottom:451.026667pt;}
.y80_c00194{bottom:451.973333pt;}
.y7d_c00194{bottom:465.306667pt;}
.y7b_c00194{bottom:466.440000pt;}
.y7e_c00194{bottom:467.973333pt;}
.y7c_c00194{bottom:468.360000pt;}
.y7a_c00194{bottom:469.306667pt;}
.y79_c00194{bottom:483.026667pt;}
.y76_c00194{bottom:483.773333pt;}
.y78_c00194{bottom:484.733333pt;}
.y75_c00194{bottom:485.693333pt;}
.y77_c00194{bottom:486.640000pt;}
.y73_c00194{bottom:501.106667pt;}
.y74_c00194{bottom:502.066667pt;}
.y72_c00194{bottom:503.026667pt;}
.y6f_c00194{bottom:518.440000pt;}
.y71_c00194{bottom:519.773333pt;}
.y70_c00194{bottom:520.360000pt;}
.y6e_c00194{bottom:537.106667pt;}
.y6d_c00194{bottom:539.026667pt;}
.y6a_c00194{bottom:554.440000pt;}
.y6c_c00194{bottom:555.226667pt;}
.y6b_c00194{bottom:555.400000pt;}
.y69_c00194{bottom:556.360000pt;}
.y65_c00194{bottom:571.026667pt;}
.y66_c00194{bottom:571.773333pt;}
.y68_c00194{bottom:572.733333pt;}
.y64_c00194{bottom:573.693333pt;}
.y67_c00194{bottom:573.893333pt;}
.y60_c00194{bottom:588.733333pt;}
.y63_c00194{bottom:590.066667pt;}
.y61_c00194{bottom:591.026667pt;}
.y62_c00194{bottom:591.973333pt;}
.y5d_c00194{bottom:607.400000pt;}
.y5b_c00194{bottom:607.773333pt;}
.y5a_c00194{bottom:608.360000pt;}
.y5e_c00194{bottom:609.306667pt;}
.y5c_c00194{bottom:609.693333pt;}
.y5f_c00194{bottom:610.640000pt;}
.y57_c00194{bottom:625.106667pt;}
.y56_c00194{bottom:625.893333pt;}
.y59_c00194{bottom:626.066667pt;}
.y58_c00194{bottom:627.026667pt;}
.y54_c00194{bottom:642.066667pt;}
.y52_c00194{bottom:642.440000pt;}
.y51_c00194{bottom:643.400000pt;}
.y55_c00194{bottom:643.973333pt;}
.y53_c00194{bottom:644.360000pt;}
.y4e_c00194{bottom:659.773333pt;}
.y4f_c00194{bottom:660.733333pt;}
.y4d_c00194{bottom:661.693333pt;}
.y50_c00194{bottom:662.640000pt;}
.y4a_c00194{bottom:677.106667pt;}
.y4c_c00194{bottom:677.893333pt;}
.y4b_c00194{bottom:678.066667pt;}
.y49_c00194{bottom:679.026667pt;}
.y46_c00194{bottom:694.440000pt;}
.y48_c00194{bottom:695.400000pt;}
.y47_c00194{bottom:696.360000pt;}
.y42_c00194{bottom:711.400000pt;}
.y3f_c00194{bottom:711.773333pt;}
.y44_c00194{bottom:712.733333pt;}
.y41_c00194{bottom:713.106667pt;}
.y43_c00194{bottom:713.693333pt;}
.y40_c00194{bottom:714.066667pt;}
.y45_c00194{bottom:715.026667pt;}
.y38_c00194{bottom:729.106667pt;}
.y3b_c00194{bottom:729.306667pt;}
.y3d_c00194{bottom:729.693333pt;}
.y3a_c00194{bottom:731.026667pt;}
.y3e_c00194{bottom:731.226667pt;}
.y3c_c00194{bottom:731.973333pt;}
.y39_c00194{bottom:732.373333pt;}
.y33_c00194{bottom:752.360000pt;}
.y36_c00194{bottom:752.733333pt;}
.y34_c00194{bottom:753.306667pt;}
.y35_c00194{bottom:753.693333pt;}
.y32_c00194{bottom:753.893333pt;}
.y37_c00194{bottom:754.640000pt;}
.y2e_c00194{bottom:764.733333pt;}
.y2f_c00194{bottom:765.693333pt;}
.y31_c00194{bottom:766.640000pt;}
.y30_c00194{bottom:766.840000pt;}
.y29_c00194{bottom:778.066667pt;}
.y2d_c00194{bottom:779.026667pt;}
.y28_c00194{bottom:779.226667pt;}
.y2a_c00194{bottom:779.800000pt;}
.y2c_c00194{bottom:779.973333pt;}
.y2b_c00194{bottom:780.933333pt;}
.y26_c00194{bottom:800.560000pt;}
.y27_c00194{bottom:801.693333pt;}
.y22_c00194{bottom:816.160000pt;}
.y21_c00194{bottom:817.106667pt;}
.y25_c00194{bottom:818.640000pt;}
.y20_c00194{bottom:819.026667pt;}
.y23_c00194{bottom:819.226667pt;}
.y24_c00194{bottom:819.973333pt;}
.y1e_c00194{bottom:834.440000pt;}
.y1d_c00194{bottom:836.360000pt;}
.y1f_c00194{bottom:836.560000pt;}
.y19_c00194{bottom:851.773333pt;}
.y1b_c00194{bottom:853.106667pt;}
.y1a_c00194{bottom:854.066667pt;}
.y1c_c00194{bottom:854.640000pt;}
.y18_c00194{bottom:855.026667pt;}
.y16_c00194{bottom:870.440000pt;}
.y17_c00194{bottom:871.226667pt;}
.y15_c00194{bottom:872.360000pt;}
.y10_c00194{bottom:887.773333pt;}
.yf_c00194{bottom:888.360000pt;}
.y13_c00194{bottom:888.733333pt;}
.y14_c00194{bottom:889.306667pt;}
.y11_c00194{bottom:889.693333pt;}
.y12_c00194{bottom:890.640000pt;}
.ye_c00194{bottom:904.160000pt;}
.yd_c00194{bottom:905.106667pt;}
.yb_c00194{bottom:907.026667pt;}
.yc_c00194{bottom:907.040000pt;}
.y7_c00194{bottom:922.440000pt;}
.ya_c00194{bottom:923.400000pt;}
.y9_c00194{bottom:923.973333pt;}
.y8_c00194{bottom:924.360000pt;}
.y5_c00194{bottom:939.773333pt;}
.y3_c00194{bottom:941.693333pt;}
.y4_c00194{bottom:941.706667pt;}
.y6_c00194{bottom:941.893333pt;}
.y1_c00194{bottom:975.773333pt;}
.y2_c00194{bottom:976.560000pt;}
.h4_c00194{height:3.739141pt;}
.h8_c00194{height:12.988594pt;}
.ha_c00194{height:14.890964pt;}
.h2_c00194{height:20.466875pt;}
.h9_c00194{height:22.303646pt;}
.h5_c00194{height:27.879557pt;}
.h3_c00194{height:31.618698pt;}
.h6_c00194{height:35.357839pt;}
.h1_c00194{height:39.031380pt;}
.h7_c00194{height:42.770521pt;}
.h0_c00194{height:1186.666667pt;}
.w0_c00194{width:782.666667pt;}
.x0_c00194{left:0.000000pt;}
.xe_c00194{left:135.040000pt;}
.x5a_c00194{left:136.000000pt;}
.xe5_c00194{left:137.333333pt;}
.x52_c00194{left:147.626667pt;}
.x3_c00194{left:148.960000pt;}
.x2b_c00194{left:150.293333pt;}
.x9b_c00194{left:152.000000pt;}
.x1f_c00194{left:160.573333pt;}
.x53_c00194{left:162.293333pt;}
.x82_c00194{left:166.666667pt;}
.x50_c00194{left:171.040000pt;}
.x37_c00194{left:172.000000pt;}
.x3e_c00194{left:173.333333pt;}
.x5b_c00194{left:175.626667pt;}
.xd3_c00194{left:180.000000pt;}
.xa5_c00194{left:182.293333pt;}
.xae_c00194{left:183.626667pt;}
.xb3_c00194{left:185.333333pt;}
.xdd_c00194{left:186.666667pt;}
.xf_c00194{left:188.373333pt;}
.xfa_c00194{left:193.706667pt;}
.xc0_c00194{left:195.040000pt;}
.x7c_c00194{left:196.000000pt;}
.xd9_c00194{left:198.293333pt;}
.x8c_c00194{left:199.626667pt;}
.xd4_c00194{left:201.333333pt;}
.x51_c00194{left:203.626667pt;}
.x83_c00194{left:205.333333pt;}
.x95_c00194{left:209.333333pt;}
.xea_c00194{left:210.293333pt;}
.x2c_c00194{left:212.000000pt;}
.x10_c00194{left:213.333333pt;}
.x38_c00194{left:214.666667pt;}
.x20_c00194{left:215.626667pt;}
.x9c_c00194{left:217.333333pt;}
.xde_c00194{left:219.040000pt;}
.x63_c00194{left:221.333333pt;}
.xa6_c00194{left:222.666667pt;}
.x17_c00194{left:224.000000pt;}
.xaf_c00194{left:225.706667pt;}
.x6e_c00194{left:226.666667pt;}
.x5c_c00194{left:227.626667pt;}
.x4_c00194{left:232.000000pt;}
.x47_c00194{left:232.960000pt;}
.xf0_c00194{left:234.666667pt;}
.x2d_c00194{left:235.626667pt;}
.xeb_c00194{left:237.333333pt;}
.x84_c00194{left:238.666667pt;}
.xca_c00194{left:241.333333pt;}
.xcc_c00194{left:242.293333pt;}
.x18_c00194{left:243.626667pt;}
.x6f_c00194{left:244.960000pt;}
.x5_c00194{left:250.666667pt;}
.xb9_c00194{left:253.706667pt;}
.x96_c00194{left:255.040000pt;}
.x7d_c00194{left:256.000000pt;}
.xfe_c00194{left:258.293333pt;}
.x21_c00194{left:259.800000pt;}
.xc1_c00194{left:261.706667pt;}
.xa7_c00194{left:264.000000pt;}
.xe1_c00194{left:265.333333pt;}
.x11_c00194{left:266.666667pt;}
.xe6_c00194{left:268.000000pt;}
.x2e_c00194{left:269.706667pt;}
.x3f_c00194{left:271.040000pt;}
.x7e_c00194{left:276.373333pt;}
.x54_c00194{left:277.333333pt;}
.xba_c00194{left:278.666667pt;}
.x6_c00194{left:280.000000pt;}
.xd5_c00194{left:281.333333pt;}
.x12_c00194{left:284.373333pt;}
.x8d_c00194{left:285.333333pt;}
.x22_c00194{left:286.293333pt;}
.xef_c00194{left:290.666667pt;}
.x55_c00194{left:291.626667pt;}
.x70_c00194{left:292.960000pt;}
.x9d_c00194{left:296.000000pt;}
.x5d_c00194{left:296.960000pt;}
.xc6_c00194{left:299.626667pt;}
.xb4_c00194{left:302.666667pt;}
.x7f_c00194{left:304.000000pt;}
.x2f_c00194{left:305.333333pt;}
.x19_c00194{left:308.000000pt;}
.x71_c00194{left:309.706667pt;}
.xe2_c00194{left:313.706667pt;}
.xc4_c00194{left:317.333333pt;}
.x85_c00194{left:318.666667pt;}
.xcd_c00194{left:319.626667pt;}
.xc7_c00194{left:321.706667pt;}
.x9f_c00194{left:322.666667pt;}
.x40_c00194{left:323.626667pt;}
.x30_c00194{left:324.960000pt;}
.x7_c00194{left:326.666667pt;}
.xc2_c00194{left:328.000000pt;}
.x39_c00194{left:328.960000pt;}
.x78_c00194{left:332.000000pt;}
.x41_c00194{left:335.426667pt;}
.x8e_c00194{left:337.706667pt;}
.x64_c00194{left:338.666667pt;}
.xb5_c00194{left:340.373333pt;}
.x80_c00194{left:341.706667pt;}
.x23_c00194{left:343.040000pt;}
.x13_c00194{left:344.000000pt;}
.xdf_c00194{left:345.706667pt;}
.x97_c00194{left:346.666667pt;}
.x5e_c00194{left:347.626667pt;}
.x48_c00194{left:350.293333pt;}
.xb0_c00194{left:352.000000pt;}
.x2_c00194{left:353.333333pt;}
.xce_c00194{left:356.000000pt;}
.x5f_c00194{left:356.960000pt;}
.xbb_c00194{left:358.666667pt;}
.x72_c00194{left:360.373333pt;}
.xec_c00194{left:362.293333pt;}
.x8f_c00194{left:364.000000pt;}
.x8_c00194{left:365.333333pt;}
.x42_c00194{left:366.466667pt;}
.x14_c00194{left:367.626667pt;}
.x24_c00194{left:369.333333pt;}
.x3a_c00194{left:374.293333pt;}
.x49_c00194{left:376.000000pt;}
.xda_c00194{left:377.706667pt;}
.xed_c00194{left:379.040000pt;}
.x31_c00194{left:380.960000pt;}
.x65_c00194{left:382.666667pt;}
.x15_c00194{left:384.960000pt;}
.x86_c00194{left:387.040000pt;}
.x4a_c00194{left:388.000000pt;}
.xa8_c00194{left:388.960000pt;}
.x1a_c00194{left:389.906667pt;}
.xe7_c00194{left:391.040000pt;}
.xf2_c00194{left:392.000000pt;}
.xee_c00194{left:392.960000pt;}
.x90_c00194{left:399.040000pt;}
.x9_c00194{left:400.373333pt;}
.xdb_c00194{left:402.666667pt;}
.xfb_c00194{left:404.373333pt;}
.xa0_c00194{left:405.706667pt;}
.xe3_c00194{left:409.706667pt;}
.x73_c00194{left:411.040000pt;}
.xc8_c00194{left:412.000000pt;}
.x16_c00194{left:412.960000pt;}
.x25_c00194{left:414.666667pt;}
.x56_c00194{left:416.000000pt;}
.xff_c00194{left:416.960000pt;}
.x3b_c00194{left:418.293333pt;}
.x32_c00194{left:422.666667pt;}
.x87_c00194{left:425.333333pt;}
.xcf_c00194{left:427.040000pt;}
.x9e_c00194{left:428.000000pt;}
.xd6_c00194{left:431.040000pt;}
.xe4_c00194{left:433.706667pt;}
.x100_c00194{left:434.666667pt;}
.x4b_c00194{left:435.626667pt;}
.x1b_c00194{left:436.960000pt;}
.x101_c00194{left:440.373333pt;}
.x79_c00194{left:441.333333pt;}
.x60_c00194{left:442.293333pt;}
.x66_c00194{left:444.373333pt;}
.x26_c00194{left:446.666667pt;}
.xdc_c00194{left:447.626667pt;}
.xf3_c00194{left:448.960000pt;}
.x43_c00194{left:450.293333pt;}
.x67_c00194{left:453.333333pt;}
.xa9_c00194{left:454.293333pt;}
.x33_c00194{left:456.000000pt;}
.x98_c00194{left:461.333333pt;}
.xcb_c00194{left:462.666667pt;}
.xf4_c00194{left:464.000000pt;}
.x61_c00194{left:466.293333pt;}
.xd7_c00194{left:468.000000pt;}
.xe8_c00194{left:469.706667pt;}
.x91_c00194{left:471.626667pt;}
.x57_c00194{left:473.333333pt;}
.xa_c00194{left:477.706667pt;}
.x4c_c00194{left:478.666667pt;}
.xbc_c00194{left:480.000000pt;}
.xa1_c00194{left:481.333333pt;}
.x68_c00194{left:483.626667pt;}
.x1c_c00194{left:485.333333pt;}
.x7a_c00194{left:487.040000pt;}
.x4d_c00194{left:489.333333pt;}
.x44_c00194{left:490.293333pt;}
.xe9_c00194{left:492.000000pt;}
.xd0_c00194{left:493.333333pt;}
.xb6_c00194{left:496.000000pt;}
.x81_c00194{left:501.333333pt;}
.xb1_c00194{left:504.000000pt;}
.x62_c00194{left:505.333333pt;}
.xaa_c00194{left:506.666667pt;}
.xc3_c00194{left:508.960000pt;}
.xb_c00194{left:512.000000pt;}
.x27_c00194{left:513.333333pt;}
.x88_c00194{left:514.666667pt;}
.xd1_c00194{left:516.373333pt;}
.xa2_c00194{left:517.333333pt;}
.x69_c00194{left:518.666667pt;}
.x1d_c00194{left:520.960000pt;}
.x4e_c00194{left:524.000000pt;}
.xf7_c00194{left:526.666667pt;}
.xfc_c00194{left:528.000000pt;}
.x92_c00194{left:529.333333pt;}
.xb7_c00194{left:530.666667pt;}
.x58_c00194{left:532.000000pt;}
.xf1_c00194{left:532.960000pt;}
.x28_c00194{left:536.373333pt;}
.x6a_c00194{left:538.293333pt;}
.xbd_c00194{left:541.706667pt;}
.x93_c00194{left:546.666667pt;}
.x34_c00194{left:548.000000pt;}
.x89_c00194{left:548.960000pt;}
.x74_c00194{left:550.666667pt;}
.x45_c00194{left:552.000000pt;}
.x4f_c00194{left:555.040000pt;}
.xab_c00194{left:556.373333pt;}
.x35_c00194{left:558.666667pt;}
.x99_c00194{left:560.373333pt;}
.x6b_c00194{left:564.000000pt;}
.x29_c00194{left:564.960000pt;}
.xf8_c00194{left:566.666667pt;}
.xb8_c00194{left:568.000000pt;}
.xc_c00194{left:570.293333pt;}
.xbe_c00194{left:572.000000pt;}
.x94_c00194{left:573.333333pt;}
.xc9_c00194{left:574.666667pt;}
.x1e_c00194{left:575.626667pt;}
.x8a_c00194{left:577.333333pt;}
.xac_c00194{left:578.666667pt;}
.x75_c00194{left:580.000000pt;}
.x46_c00194{left:581.333333pt;}
.xd8_c00194{left:583.040000pt;}
.x9a_c00194{left:584.000000pt;}
.x3c_c00194{left:584.960000pt;}
.xb2_c00194{left:588.000000pt;}
.x6c_c00194{left:590.293333pt;}
.x36_c00194{left:592.000000pt;}
.xa3_c00194{left:593.333333pt;}
.x76_c00194{left:595.626667pt;}
.xf9_c00194{left:597.333333pt;}
.xe0_c00194{left:600.000000pt;}
.x2a_c00194{left:601.706667pt;}
.x7b_c00194{left:605.706667pt;}
.xbf_c00194{left:607.626667pt;}
.xd2_c00194{left:610.666667pt;}
.xad_c00194{left:612.373333pt;}
.xd_c00194{left:613.333333pt;}
.x6d_c00194{left:614.666667pt;}
.x8b_c00194{left:616.000000pt;}
.x59_c00194{left:616.960000pt;}
.xf5_c00194{left:623.626667pt;}
.x1_c00194{left:627.800000pt;}
.xa4_c00194{left:629.706667pt;}
.x3d_c00194{left:634.293333pt;}
.x77_c00194{left:636.000000pt;}
.xc5_c00194{left:636.960000pt;}
.xf6_c00194{left:638.293333pt;}
.xfd_c00194{left:639.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_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_83e6ed5eee58652e99d19185.woff2')format("woff");}.ff1_c00195{font-family:ff1_c00195;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m100_c00195{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.mff_c00195{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.mba_c00195{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.mee_c00195{transform:matrix(0.354360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354360,0.000000,0.000000,0.250000,0,0);}
.mcf_c00195{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.me3_c00195{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.m12_c00195{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.ma5_c00195{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mc8_c00195{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m9f_c00195{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.md6_c00195{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.m35_c00195{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m2f_c00195{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m2e_c00195{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m5b_c00195{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m13_c00195{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.mdd_c00195{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.mc7_c00195{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m21_c00195{transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);}
.m102_c00195{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m26_c00195{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m76_c00195{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m85_c00195{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.me5_c00195{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.mcd_c00195{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.mc3_c00195{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mda_c00195{transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);}
.m9b_c00195{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.me8_c00195{transform:matrix(0.403989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403989,0.000000,0.000000,0.250000,0,0);}
.ma0_c00195{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m77_c00195{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m65_c00195{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.ma4_c00195{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m81_c00195{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.mea_c00195{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m103_c00195{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m44_c00195{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m19_c00195{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mfd_c00195{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m39_c00195{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.me1_c00195{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m7f_c00195{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.me_c00195{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.m72_c00195{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m31_c00195{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.me7_c00195{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m9_c00195{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m3c_c00195{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.mbc_c00195{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.mc0_c00195{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m10_c00195{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mf2_c00195{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.mbd_c00195{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m1a_c00195{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.mdf_c00195{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.mae_c00195{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.ma1_c00195{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mf0_c00195{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.mdb_c00195{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m2c_c00195{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mb4_c00195{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.mec_c00195{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.md3_c00195{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.me2_c00195{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.m6d_c00195{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m6c_c00195{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m9a_c00195{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.mb5_c00195{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mc9_c00195{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.ma8_c00195{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m61_c00195{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.maf_c00195{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.mf5_c00195{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.ma7_c00195{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m5c_c00195{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.me6_c00195{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m7e_c00195{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m8c_c00195{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.m3b_c00195{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.mca_c00195{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.md_c00195{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.mf4_c00195{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m87_c00195{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m83_c00195{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mf1_c00195{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m3d_c00195{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m30_c00195{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m101_c00195{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m41_c00195{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m1b_c00195{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m94_c00195{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m8f_c00195{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m67_c00195{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m6b_c00195{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m0_c00195{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m73_c00195{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m4b_c00195{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m5_c00195{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.maa_c00195{transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);}
.m22_c00195{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.mfe_c00195{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m7c_c00195{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.mb0_c00195{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m48_c00195{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.mf_c00195{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.ma_c00195{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m7_c00195{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.mf9_c00195{transform:matrix(0.477273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477273,0.000000,0.000000,0.250000,0,0);}
.mbf_c00195{transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);}
.m15_c00195{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m5e_c00195{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m95_c00195{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.mcb_c00195{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m75_c00195{transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);}
.m96_c00195{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.md4_c00195{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mc5_c00195{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m1d_c00195{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m84_c00195{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m79_c00195{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.md7_c00195{transform:matrix(0.492857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492857,0.000000,0.000000,0.250000,0,0);}
.mc1_c00195{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mb9_c00195{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m3e_c00195{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.mb3_c00195{transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);}
.m8_c00195{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);}
.m1f_c00195{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.mad_c00195{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m34_c00195{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.mbb_c00195{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.mb1_c00195{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.mbe_c00195{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m46_c00195{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m97_c00195{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.mfb_c00195{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mce_c00195{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m90_c00195{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m59_c00195{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m78_c00195{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m91_c00195{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.ma9_c00195{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m43_c00195{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m88_c00195{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m24_c00195{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m71_c00195{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m5a_c00195{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m74_c00195{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.ma3_c00195{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m63_c00195{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m49_c00195{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.mb7_c00195{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m2a_c00195{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mfa_c00195{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m52_c00195{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mc6_c00195{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m20_c00195{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m53_c00195{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.md1_c00195{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m8e_c00195{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m64_c00195{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mb_c00195{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mb8_c00195{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m37_c00195{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m89_c00195{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m6a_c00195{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.me9_c00195{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);}
.m42_c00195{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m69_c00195{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m7a_c00195{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m3a_c00195{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mcc_c00195{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m1c_c00195{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mc_c00195{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.med_c00195{transform:matrix(0.548824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548824,0.000000,0.000000,0.250000,0,0);}
.m29_c00195{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m33_c00195{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m93_c00195{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m92_c00195{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mb2_c00195{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m4e_c00195{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m4d_c00195{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m8d_c00195{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m36_c00195{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m54_c00195{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m40_c00195{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m62_c00195{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m38_c00195{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mf8_c00195{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.m51_c00195{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.meb_c00195{transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);}
.mab_c00195{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.ma2_c00195{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mac_c00195{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.md5_c00195{transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);}
.m57_c00195{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m2_c00195{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m4a_c00195{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m68_c00195{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m2d_c00195{transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);}
.md0_c00195{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m99_c00195{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m9e_c00195{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.m14_c00195{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m6e_c00195{transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);}
.m27_c00195{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m28_c00195{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m8a_c00195{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.me4_c00195{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.mfc_c00195{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m60_c00195{transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);}
.m66_c00195{transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);}
.m17_c00195{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m4f_c00195{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m82_c00195{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m9c_c00195{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m7d_c00195{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m4c_c00195{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m98_c00195{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m1_c00195{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m6f_c00195{transform:matrix(0.606328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606328,0.000000,0.000000,0.250000,0,0);}
.mf7_c00195{transform:matrix(0.606846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606846,0.000000,0.000000,0.250000,0,0);}
.m9d_c00195{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m70_c00195{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mc2_c00195{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.m86_c00195{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m50_c00195{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m11_c00195{transform:matrix(0.622941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622941,0.000000,0.000000,0.250000,0,0);}
.mf3_c00195{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);}
.m16_c00195{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m58_c00195{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m55_c00195{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m5f_c00195{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m8b_c00195{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.md9_c00195{transform:matrix(0.644191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644191,0.000000,0.000000,0.250000,0,0);}
.mdc_c00195{transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);}
.m32_c00195{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m3_c00195{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m3f_c00195{transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);}
.mde_c00195{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m5d_c00195{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m18_c00195{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.mef_c00195{transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);}
.m80_c00195{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m56_c00195{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.ma6_c00195{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m1e_c00195{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m2b_c00195{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mc4_c00195{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.md8_c00195{transform:matrix(0.761765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761765,0.000000,0.000000,0.250000,0,0);}
.m47_c00195{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m45_c00195{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m23_c00195{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.mb6_c00195{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m7b_c00195{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m6_c00195{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.m4_c00195{transform:matrix(0.917059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.917059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.917059,0.000000,0.000000,0.250000,0,0);}
.me0_c00195{transform:matrix(1.165198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.165198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.165198,0.000000,0.000000,0.250000,0,0);}
.md2_c00195{transform:matrix(1.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.749199,0.000000,0.000000,0.250000,0,0);}
.m25_c00195{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.mf6_c00195{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00195{vertical-align:0.000000px;}
.ls0_c00195{letter-spacing:0.000000px;}
.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;}
.fs8_c00195{font-size:3.420000px;}
.fs4_c00195{font-size:11.880000px;}
.fs9_c00195{font-size:13.620000px;}
.fs3_c00195{font-size:18.720000px;}
.fs1_c00195{font-size:20.400000px;}
.fs2_c00195{font-size:25.500000px;}
.fs0_c00195{font-size:28.920000px;}
.fs6_c00195{font-size:32.340000px;}
.fs5_c00195{font-size:35.700000px;}
.fs7_c00195{font-size:39.120000px;}
.y0_c00195{bottom:0.000000px;}
.ycc_c00195{bottom:228.405000px;}
.yc9_c00195{bottom:229.245000px;}
.ycb_c00195{bottom:230.325000px;}
.yca_c00195{bottom:231.420000px;}
.yc8_c00195{bottom:247.905000px;}
.yc3_c00195{bottom:248.745000px;}
.yc6_c00195{bottom:249.825000px;}
.yc5_c00195{bottom:250.905000px;}
.yc4_c00195{bottom:251.970000px;}
.yc7_c00195{bottom:252.405000px;}
.ybf_c00195{bottom:268.245000px;}
.yc2_c00195{bottom:269.325000px;}
.yc1_c00195{bottom:270.405000px;}
.yc0_c00195{bottom:271.920000px;}
.ybc_c00195{bottom:291.825000px;}
.ybe_c00195{bottom:292.050000px;}
.ybd_c00195{bottom:292.905000px;}
.yb6_c00195{bottom:306.825000px;}
.yb9_c00195{bottom:307.905000px;}
.yb8_c00195{bottom:308.325000px;}
.yb7_c00195{bottom:308.970000px;}
.ybb_c00195{bottom:309.630000px;}
.yba_c00195{bottom:310.470000px;}
.yaf_c00195{bottom:325.470000px;}
.yae_c00195{bottom:326.325000px;}
.yb5_c00195{bottom:326.970000px;}
.yb0_c00195{bottom:327.825000px;}
.yb1_c00195{bottom:328.050000px;}
.yb3_c00195{bottom:328.905000px;}
.yb2_c00195{bottom:330.195000px;}
.yb4_c00195{bottom:331.050000px;}
.yac_c00195{bottom:350.745000px;}
.yad_c00195{bottom:351.825000px;}
.ya9_c00195{bottom:352.245000px;}
.yab_c00195{bottom:352.905000px;}
.yaa_c00195{bottom:353.970000px;}
.ya5_c00195{bottom:385.905000px;}
.ya4_c00195{bottom:388.245000px;}
.ya8_c00195{bottom:388.905000px;}
.ya3_c00195{bottom:389.130000px;}
.ya7_c00195{bottom:389.970000px;}
.ya6_c00195{bottom:390.405000px;}
.y9e_c00195{bottom:405.405000px;}
.ya2_c00195{bottom:406.680000px;}
.ya1_c00195{bottom:407.745000px;}
.y9f_c00195{bottom:409.905000px;}
.ya0_c00195{bottom:410.970000px;}
.y9b_c00195{bottom:427.245000px;}
.y9d_c00195{bottom:427.905000px;}
.y9c_c00195{bottom:428.325000px;}
.y9a_c00195{bottom:429.405000px;}
.y96_c00195{bottom:446.745000px;}
.y98_c00195{bottom:447.630000px;}
.y99_c00195{bottom:447.825000px;}
.y97_c00195{bottom:448.470000px;}
.y95_c00195{bottom:448.905000px;}
.y94_c00195{bottom:466.245000px;}
.y91_c00195{bottom:467.325000px;}
.y8f_c00195{bottom:468.405000px;}
.y92_c00195{bottom:468.825000px;}
.y93_c00195{bottom:469.470000px;}
.y90_c00195{bottom:469.905000px;}
.y8e_c00195{bottom:485.745000px;}
.y8b_c00195{bottom:487.245000px;}
.y8a_c00195{bottom:487.905000px;}
.y8c_c00195{bottom:488.130000px;}
.y8d_c00195{bottom:489.405000px;}
.y87_c00195{bottom:504.405000px;}
.y89_c00195{bottom:505.245000px;}
.y88_c00195{bottom:506.325000px;}
.y86_c00195{bottom:507.405000px;}
.y85_c00195{bottom:507.630000px;}
.y84_c00195{bottom:508.470000px;}
.y83_c00195{bottom:508.905000px;}
.y82_c00195{bottom:524.745000px;}
.y7f_c00195{bottom:525.825000px;}
.y80_c00195{bottom:526.905000px;}
.y81_c00195{bottom:527.325000px;}
.y7e_c00195{bottom:528.405000px;}
.y7c_c00195{bottom:545.745000px;}
.y7d_c00195{bottom:546.825000px;}
.y7b_c00195{bottom:547.905000px;}
.y79_c00195{bottom:565.245000px;}
.y78_c00195{bottom:566.130000px;}
.y7a_c00195{bottom:567.405000px;}
.y75_c00195{bottom:584.745000px;}
.y77_c00195{bottom:586.470000px;}
.y76_c00195{bottom:586.905000px;}
.y72_c00195{bottom:604.245000px;}
.y73_c00195{bottom:604.470000px;}
.y74_c00195{bottom:605.970000px;}
.y71_c00195{bottom:606.405000px;}
.y6e_c00195{bottom:622.905000px;}
.y70_c00195{bottom:623.745000px;}
.y6d_c00195{bottom:625.905000px;}
.y6f_c00195{bottom:626.970000px;}
.y69_c00195{bottom:644.745000px;}
.y6c_c00195{bottom:645.405000px;}
.y6b_c00195{bottom:645.825000px;}
.y6a_c00195{bottom:646.905000px;}
.y68_c00195{bottom:662.745000px;}
.y66_c00195{bottom:664.245000px;}
.y67_c00195{bottom:664.905000px;}
.y65_c00195{bottom:665.325000px;}
.y64_c00195{bottom:666.405000px;}
.y5e_c00195{bottom:683.745000px;}
.y61_c00195{bottom:684.630000px;}
.y63_c00195{bottom:684.825000px;}
.y62_c00195{bottom:685.470000px;}
.y60_c00195{bottom:685.905000px;}
.y5f_c00195{bottom:686.970000px;}
.y5c_c00195{bottom:702.405000px;}
.y5b_c00195{bottom:703.245000px;}
.y5d_c00195{bottom:704.130000px;}
.y5a_c00195{bottom:705.405000px;}
.y56_c00195{bottom:722.745000px;}
.y59_c00195{bottom:723.630000px;}
.y57_c00195{bottom:724.905000px;}
.y58_c00195{bottom:725.970000px;}
.y54_c00195{bottom:741.405000px;}
.y52_c00195{bottom:743.745000px;}
.y53_c00195{bottom:744.405000px;}
.y55_c00195{bottom:744.630000px;}
.y51_c00195{bottom:745.470000px;}
.y50_c00195{bottom:745.905000px;}
.y4e_c00195{bottom:769.470000px;}
.y4f_c00195{bottom:769.905000px;}
.y4b_c00195{bottom:801.405000px;}
.y4d_c00195{bottom:802.245000px;}
.y4a_c00195{bottom:803.325000px;}
.y4c_c00195{bottom:804.405000px;}
.y46_c00195{bottom:821.745000px;}
.y48_c00195{bottom:821.970000px;}
.y49_c00195{bottom:822.405000px;}
.y47_c00195{bottom:822.825000px;}
.y45_c00195{bottom:823.905000px;}
.y40_c00195{bottom:839.970000px;}
.y42_c00195{bottom:840.825000px;}
.y43_c00195{bottom:841.245000px;}
.y41_c00195{bottom:842.970000px;}
.y3f_c00195{bottom:843.405000px;}
.y44_c00195{bottom:844.470000px;}
.y3e_c00195{bottom:859.470000px;}
.y3a_c00195{bottom:860.745000px;}
.y3d_c00195{bottom:861.630000px;}
.y3b_c00195{bottom:862.905000px;}
.y3c_c00195{bottom:863.970000px;}
.y39_c00195{bottom:879.405000px;}
.y36_c00195{bottom:880.245000px;}
.y37_c00195{bottom:881.970000px;}
.y35_c00195{bottom:882.405000px;}
.y38_c00195{bottom:882.630000px;}
.y34_c00195{bottom:899.745000px;}
.y32_c00195{bottom:901.245000px;}
.y33_c00195{bottom:901.905000px;}
.y30_c00195{bottom:902.130000px;}
.y31_c00195{bottom:903.405000px;}
.y2f_c00195{bottom:920.325000px;}
.y2e_c00195{bottom:920.745000px;}
.y2d_c00195{bottom:921.405000px;}
.y2c_c00195{bottom:922.905000px;}
.y29_c00195{bottom:940.245000px;}
.y2a_c00195{bottom:941.130000px;}
.y28_c00195{bottom:941.970000px;}
.y2b_c00195{bottom:942.405000px;}
.y25_c00195{bottom:959.745000px;}
.y27_c00195{bottom:960.630000px;}
.y23_c00195{bottom:961.905000px;}
.y24_c00195{bottom:961.920000px;}
.y26_c00195{bottom:962.130000px;}
.y22_c00195{bottom:980.130000px;}
.y21_c00195{bottom:981.405000px;}
.y1e_c00195{bottom:995.130000px;}
.y1b_c00195{bottom:995.775000px;}
.y20_c00195{bottom:997.245000px;}
.y1f_c00195{bottom:997.680000px;}
.y1c_c00195{bottom:997.905000px;}
.y19_c00195{bottom:999.630000px;}
.y18_c00195{bottom:999.825000px;}
.y1d_c00195{bottom:1000.905000px;}
.y1a_c00195{bottom:1004.130000px;}
.y17_c00195{bottom:1015.905000px;}
.y11_c00195{bottom:1017.405000px;}
.y15_c00195{bottom:1018.245000px;}
.y12_c00195{bottom:1018.470000px;}
.y16_c00195{bottom:1019.325000px;}
.y13_c00195{bottom:1020.405000px;}
.y14_c00195{bottom:1020.630000px;}
.yc_c00195{bottom:1037.745000px;}
.yf_c00195{bottom:1038.405000px;}
.ye_c00195{bottom:1038.825000px;}
.y10_c00195{bottom:1039.905000px;}
.yd_c00195{bottom:1040.970000px;}
.yb_c00195{bottom:1055.325000px;}
.y6_c00195{bottom:1055.775000px;}
.y7_c00195{bottom:1056.405000px;}
.y9_c00195{bottom:1057.245000px;}
.y8_c00195{bottom:1057.905000px;}
.ya_c00195{bottom:1058.325000px;}
.y3_c00195{bottom:1059.405000px;}
.y4_c00195{bottom:1060.470000px;}
.y5_c00195{bottom:1062.630000px;}
.y2_c00195{bottom:1097.550000px;}
.y1_c00195{bottom:1099.905000px;}
.h9_c00195{height:4.206533px;}
.h5_c00195{height:14.612168px;}
.ha_c00195{height:16.752334px;}
.h4_c00195{height:23.025234px;}
.h2_c00195{height:25.091602px;}
.h3_c00195{height:31.364502px;}
.h1_c00195{height:35.571035px;}
.h7_c00195{height:39.777568px;}
.h6_c00195{height:43.910303px;}
.h8_c00195{height:48.116836px;}
.h0_c00195{height:1335.000000px;}
.w0_c00195{width:880.500000px;}
.x0_c00195{left:0.000000px;}
.x100_c00195{left:147.000000px;}
.xdc_c00195{left:148.080000px;}
.xa7_c00195{left:150.000000px;}
.x8e_c00195{left:151.500000px;}
.x34_c00195{left:152.580000px;}
.x1_c00195{left:154.920000px;}
.xf1_c00195{left:157.500000px;}
.xfc_c00195{left:162.420000px;}
.xe1_c00195{left:165.000000px;}
.xb5_c00195{left:166.500000px;}
.x36_c00195{left:168.645000px;}
.x6d_c00195{left:177.000000px;}
.x35_c00195{left:178.500000px;}
.xc2_c00195{left:180.000000px;}
.xeb_c00195{left:182.580000px;}
.x1b_c00195{left:184.500000px;}
.x99_c00195{left:185.580000px;}
.xe2_c00195{left:187.500000px;}
.xc9_c00195{left:188.580000px;}
.xd6_c00195{left:192.000000px;}
.x52_c00195{left:193.920000px;}
.x3_c00195{left:196.080000px;}
.xb1_c00195{left:198.000000px;}
.x84_c00195{left:199.500000px;}
.xb6_c00195{left:201.420000px;}
.x63_c00195{left:202.500000px;}
.x12_c00195{left:203.580000px;}
.x78_c00195{left:205.500000px;}
.x43_c00195{left:206.580000px;}
.xa8_c00195{left:208.920000px;}
.xf2_c00195{left:210.000000px;}
.x6e_c00195{left:211.920000px;}
.xd1_c00195{left:213.420000px;}
.x103_c00195{left:214.920000px;}
.x4_c00195{left:216.000000px;}
.x4a_c00195{left:219.000000px;}
.x5_c00195{left:222.420000px;}
.x6_c00195{left:226.080000px;}
.x64_c00195{left:228.420000px;}
.x25_c00195{left:232.920000px;}
.x53_c00195{left:234.000000px;}
.xb2_c00195{left:235.080000px;}
.xa9_c00195{left:237.000000px;}
.x7_c00195{left:238.080000px;}
.x37_c00195{left:240.000000px;}
.xb9_c00195{left:241.920000px;}
.xe3_c00195{left:243.000000px;}
.xd2_c00195{left:247.500000px;}
.x6f_c00195{left:249.420000px;}
.xb7_c00195{left:250.920000px;}
.x79_c00195{left:252.420000px;}
.x107_c00195{left:253.500000px;}
.x9a_c00195{left:254.580000px;}
.xe7_c00195{left:256.500000px;}
.x26_c00195{left:258.000000px;}
.x38_c00195{left:259.500000px;}
.x1c_c00195{left:261.000000px;}
.x27_c00195{left:262.080000px;}
.x65_c00195{left:264.420000px;}
.x44_c00195{left:265.500000px;}
.x101_c00195{left:268.500000px;}
.x8_c00195{left:271.080000px;}
.x28_c00195{left:273.000000px;}
.x108_c00195{left:274.500000px;}
.x7a_c00195{left:277.920000px;}
.x4b_c00195{left:280.920000px;}
.xfd_c00195{left:283.500000px;}
.xdd_c00195{left:285.420000px;}
.xf7_c00195{left:289.500000px;}
.x54_c00195{left:291.420000px;}
.xf6_c00195{left:292.920000px;}
.x39_c00195{left:294.000000px;}
.x8f_c00195{left:295.500000px;}
.x85_c00195{left:297.000000px;}
.x5d_c00195{left:299.580000px;}
.x13_c00195{left:301.080000px;}
.xba_c00195{left:302.580000px;}
.x9_c00195{left:304.500000px;}
.x7b_c00195{left:305.580000px;}
.x1d_c00195{left:307.500000px;}
.x70_c00195{left:310.080000px;}
.x104_c00195{left:315.420000px;}
.xa3_c00195{left:316.500000px;}
.xd3_c00195{left:317.580000px;}
.xfe_c00195{left:322.920000px;}
.x102_c00195{left:327.000000px;}
.x55_c00195{left:328.920000px;}
.x5e_c00195{left:332.145000px;}
.x14_c00195{left:334.080000px;}
.xb3_c00195{left:336.420000px;}
.x29_c00195{left:337.500000px;}
.x82_c00195{left:338.580000px;}
.x105_c00195{left:343.500000px;}
.xd7_c00195{left:346.500000px;}
.xca_c00195{left:348.000000px;}
.x90_c00195{left:352.920000px;}
.xe8_c00195{left:354.000000px;}
.xaa_c00195{left:356.580000px;}
.x66_c00195{left:358.500000px;}
.xff_c00195{left:360.000000px;}
.x1e_c00195{left:363.000000px;}
.x3a_c00195{left:364.080000px;}
.x86_c00195{left:365.580000px;}
.x15_c00195{left:367.500000px;}
.x4c_c00195{left:368.580000px;}
.x56_c00195{left:370.920000px;}
.xce_c00195{left:372.420000px;}
.x81_c00195{left:373.500000px;}
.xf3_c00195{left:375.420000px;}
.x67_c00195{left:378.420000px;}
.xe9_c00195{left:379.920000px;}
.x2a_c00195{left:381.000000px;}
.xa_c00195{left:382.500000px;}
.x87_c00195{left:384.420000px;}
.x3b_c00195{left:385.500000px;}
.x71_c00195{left:388.500000px;}
.xec_c00195{left:392.580000px;}
.xc3_c00195{left:396.420000px;}
.x83_c00195{left:397.500000px;}
.x45_c00195{left:398.580000px;}
.xbb_c00195{left:400.080000px;}
.x2_c00195{left:402.000000px;}
.xf8_c00195{left:403.080000px;}
.x91_c00195{left:405.420000px;}
.xab_c00195{left:406.920000px;}
.x68_c00195{left:408.420000px;}
.xde_c00195{left:409.500000px;}
.x3c_c00195{left:411.000000px;}
.x57_c00195{left:412.500000px;}
.x88_c00195{left:414.420000px;}
.xbc_c00195{left:416.580000px;}
.xb4_c00195{left:418.080000px;}
.xd8_c00195{left:420.000000px;}
.x1f_c00195{left:421.500000px;}
.xc4_c00195{left:424.920000px;}
.x3d_c00195{left:426.000000px;}
.x16_c00195{left:429.000000px;}
.xdf_c00195{left:430.500000px;}
.x4d_c00195{left:432.420000px;}
.x58_c00195{left:435.000000px;}
.xea_c00195{left:439.920000px;}
.xb_c00195{left:448.080000px;}
.xb8_c00195{left:450.000000px;}
.x20_c00195{left:451.080000px;}
.x7c_c00195{left:453.000000px;}
.xcf_c00195{left:456.000000px;}
.x2b_c00195{left:459.420000px;}
.x5f_c00195{left:460.500000px;}
.x59_c00195{left:465.000000px;}
.x92_c00195{left:466.080000px;}
.xbd_c00195{left:469.080000px;}
.x3e_c00195{left:470.580000px;}
.xe4_c00195{left:472.500000px;}
.x72_c00195{left:475.920000px;}
.x9b_c00195{left:477.000000px;}
.xf9_c00195{left:478.080000px;}
.xc_c00195{left:479.580000px;}
.x21_c00195{left:483.000000px;}
.x2c_c00195{left:484.500000px;}
.x2d_c00195{left:490.080000px;}
.xc5_c00195{left:492.000000px;}
.xd4_c00195{left:493.500000px;}
.x17_c00195{left:495.000000px;}
.x89_c00195{left:496.920000px;}
.xed_c00195{left:499.500000px;}
.x2e_c00195{left:500.580000px;}
.x46_c00195{left:505.500000px;}
.xfa_c00195{left:506.580000px;}
.x5a_c00195{left:510.420000px;}
.xd0_c00195{left:511.500000px;}
.xd_c00195{left:512.580000px;}
.x69_c00195{left:517.500000px;}
.x3f_c00195{left:519.000000px;}
.xd9_c00195{left:523.500000px;}
.x73_c00195{left:526.080000px;}
.x18_c00195{left:528.000000px;}
.x9e_c00195{left:529.080000px;}
.x2f_c00195{left:530.580000px;}
.xe5_c00195{left:532.500000px;}
.x7d_c00195{left:534.000000px;}
.xf4_c00195{left:535.500000px;}
.xcb_c00195{left:538.920000px;}
.x4e_c00195{left:541.500000px;}
.x47_c00195{left:543.000000px;}
.x8a_c00195{left:544.080000px;}
.xee_c00195{left:545.580000px;}
.xe6_c00195{left:550.080000px;}
.x40_c00195{left:552.000000px;}
.x6a_c00195{left:555.000000px;}
.xda_c00195{left:556.920000px;}
.x74_c00195{left:558.420000px;}
.xa4_c00195{left:559.920000px;}
.x19_c00195{left:561.000000px;}
.x30_c00195{left:563.580000px;}
.x48_c00195{left:564.645000px;}
.x9f_c00195{left:566.580000px;}
.x93_c00195{left:568.080000px;}
.xac_c00195{left:569.580000px;}
.xc6_c00195{left:574.080000px;}
.xe_c00195{left:575.580000px;}
.x7e_c00195{left:577.920000px;}
.xe0_c00195{left:579.000000px;}
.xbe_c00195{left:580.500000px;}
.xdb_c00195{left:583.500000px;}
.x60_c00195{left:585.000000px;}
.xa0_c00195{left:586.500000px;}
.x5b_c00195{left:588.000000px;}
.xad_c00195{left:591.420000px;}
.x4f_c00195{left:592.920000px;}
.x6b_c00195{left:594.000000px;}
.xf_c00195{left:595.500000px;}
.x8b_c00195{left:597.000000px;}
.x94_c00195{left:598.500000px;}
.x61_c00195{left:600.420000px;}
.xd5_c00195{left:603.420000px;}
.x7f_c00195{left:606.000000px;}
.xa5_c00195{left:611.580000px;}
.x31_c00195{left:613.080000px;}
.xa1_c00195{left:614.580000px;}
.xc7_c00195{left:616.500000px;}
.x49_c00195{left:617.580000px;}
.xbf_c00195{left:619.500000px;}
.x95_c00195{left:621.420000px;}
.xae_c00195{left:624.420000px;}
.x9c_c00195{left:625.920000px;}
.x22_c00195{left:630.000000px;}
.xef_c00195{left:631.080000px;}
.x32_c00195{left:633.420000px;}
.x41_c00195{left:639.420000px;}
.xc8_c00195{left:645.420000px;}
.x1a_c00195{left:646.500000px;}
.x75_c00195{left:647.580000px;}
.x96_c00195{left:649.500000px;}
.xc0_c00195{left:651.000000px;}
.xf5_c00195{left:652.500000px;}
.xaf_c00195{left:656.580000px;}
.xa2_c00195{left:658.500000px;}
.x23_c00195{left:659.580000px;}
.x5c_c00195{left:661.080000px;}
.x50_c00195{left:663.000000px;}
.x62_c00195{left:664.500000px;}
.x76_c00195{left:667.920000px;}
.x6c_c00195{left:669.000000px;}
.xfb_c00195{left:670.500000px;}
.x10_c00195{left:672.000000px;}
.xcc_c00195{left:673.500000px;}
.xa6_c00195{left:675.000000px;}
.x80_c00195{left:676.920000px;}
.xc1_c00195{left:681.000000px;}
.x51_c00195{left:682.500000px;}
.xf0_c00195{left:685.080000px;}
.x97_c00195{left:686.580000px;}
.xb0_c00195{left:688.920000px;}
.x106_c00195{left:690.000000px;}
.x24_c00195{left:691.500000px;}
.x9d_c00195{left:694.920000px;}
.x77_c00195{left:697.080000px;}
.x8c_c00195{left:703.080000px;}
.x11_c00195{left:705.000000px;}
.x33_c00195{left:706.500000px;}
.x98_c00195{left:708.420000px;}
.x42_c00195{left:712.500000px;}
.xcd_c00195{left:715.500000px;}
.x8d_c00195{left:721.500000px;}
@media print{
.v0_c00195{vertical-align:0.000000pt;}
.ls0_c00195{letter-spacing:0.000000pt;}
.ws0_c00195{word-spacing:0.000000pt;}
.fs8_c00195{font-size:3.040000pt;}
.fs4_c00195{font-size:10.560000pt;}
.fs9_c00195{font-size:12.106667pt;}
.fs3_c00195{font-size:16.640000pt;}
.fs1_c00195{font-size:18.133333pt;}
.fs2_c00195{font-size:22.666667pt;}
.fs0_c00195{font-size:25.706667pt;}
.fs6_c00195{font-size:28.746667pt;}
.fs5_c00195{font-size:31.733333pt;}
.fs7_c00195{font-size:34.773333pt;}
.y0_c00195{bottom:0.000000pt;}
.ycc_c00195{bottom:203.026667pt;}
.yc9_c00195{bottom:203.773333pt;}
.ycb_c00195{bottom:204.733333pt;}
.yca_c00195{bottom:205.706667pt;}
.yc8_c00195{bottom:220.360000pt;}
.yc3_c00195{bottom:221.106667pt;}
.yc6_c00195{bottom:222.066667pt;}
.yc5_c00195{bottom:223.026667pt;}
.yc4_c00195{bottom:223.973333pt;}
.yc7_c00195{bottom:224.360000pt;}
.ybf_c00195{bottom:238.440000pt;}
.yc2_c00195{bottom:239.400000pt;}
.yc1_c00195{bottom:240.360000pt;}
.yc0_c00195{bottom:241.706667pt;}
.ybc_c00195{bottom:259.400000pt;}
.ybe_c00195{bottom:259.600000pt;}
.ybd_c00195{bottom:260.360000pt;}
.yb6_c00195{bottom:272.733333pt;}
.yb9_c00195{bottom:273.693333pt;}
.yb8_c00195{bottom:274.066667pt;}
.yb7_c00195{bottom:274.640000pt;}
.ybb_c00195{bottom:275.226667pt;}
.yba_c00195{bottom:275.973333pt;}
.yaf_c00195{bottom:289.306667pt;}
.yae_c00195{bottom:290.066667pt;}
.yb5_c00195{bottom:290.640000pt;}
.yb0_c00195{bottom:291.400000pt;}
.yb1_c00195{bottom:291.600000pt;}
.yb3_c00195{bottom:292.360000pt;}
.yb2_c00195{bottom:293.506667pt;}
.yb4_c00195{bottom:294.266667pt;}
.yac_c00195{bottom:311.773333pt;}
.yad_c00195{bottom:312.733333pt;}
.ya9_c00195{bottom:313.106667pt;}
.yab_c00195{bottom:313.693333pt;}
.yaa_c00195{bottom:314.640000pt;}
.ya5_c00195{bottom:343.026667pt;}
.ya4_c00195{bottom:345.106667pt;}
.ya8_c00195{bottom:345.693333pt;}
.ya3_c00195{bottom:345.893333pt;}
.ya7_c00195{bottom:346.640000pt;}
.ya6_c00195{bottom:347.026667pt;}
.y9e_c00195{bottom:360.360000pt;}
.ya2_c00195{bottom:361.493333pt;}
.ya1_c00195{bottom:362.440000pt;}
.y9f_c00195{bottom:364.360000pt;}
.ya0_c00195{bottom:365.306667pt;}
.y9b_c00195{bottom:379.773333pt;}
.y9d_c00195{bottom:380.360000pt;}
.y9c_c00195{bottom:380.733333pt;}
.y9a_c00195{bottom:381.693333pt;}
.y96_c00195{bottom:397.106667pt;}
.y98_c00195{bottom:397.893333pt;}
.y99_c00195{bottom:398.066667pt;}
.y97_c00195{bottom:398.640000pt;}
.y95_c00195{bottom:399.026667pt;}
.y94_c00195{bottom:414.440000pt;}
.y91_c00195{bottom:415.400000pt;}
.y8f_c00195{bottom:416.360000pt;}
.y92_c00195{bottom:416.733333pt;}
.y93_c00195{bottom:417.306667pt;}
.y90_c00195{bottom:417.693333pt;}
.y8e_c00195{bottom:431.773333pt;}
.y8b_c00195{bottom:433.106667pt;}
.y8a_c00195{bottom:433.693333pt;}
.y8c_c00195{bottom:433.893333pt;}
.y8d_c00195{bottom:435.026667pt;}
.y87_c00195{bottom:448.360000pt;}
.y89_c00195{bottom:449.106667pt;}
.y88_c00195{bottom:450.066667pt;}
.y86_c00195{bottom:451.026667pt;}
.y85_c00195{bottom:451.226667pt;}
.y84_c00195{bottom:451.973333pt;}
.y83_c00195{bottom:452.360000pt;}
.y82_c00195{bottom:466.440000pt;}
.y7f_c00195{bottom:467.400000pt;}
.y80_c00195{bottom:468.360000pt;}
.y81_c00195{bottom:468.733333pt;}
.y7e_c00195{bottom:469.693333pt;}
.y7c_c00195{bottom:485.106667pt;}
.y7d_c00195{bottom:486.066667pt;}
.y7b_c00195{bottom:487.026667pt;}
.y79_c00195{bottom:502.440000pt;}
.y78_c00195{bottom:503.226667pt;}
.y7a_c00195{bottom:504.360000pt;}
.y75_c00195{bottom:519.773333pt;}
.y77_c00195{bottom:521.306667pt;}
.y76_c00195{bottom:521.693333pt;}
.y72_c00195{bottom:537.106667pt;}
.y73_c00195{bottom:537.306667pt;}
.y74_c00195{bottom:538.640000pt;}
.y71_c00195{bottom:539.026667pt;}
.y6e_c00195{bottom:553.693333pt;}
.y70_c00195{bottom:554.440000pt;}
.y6d_c00195{bottom:556.360000pt;}
.y6f_c00195{bottom:557.306667pt;}
.y69_c00195{bottom:573.106667pt;}
.y6c_c00195{bottom:573.693333pt;}
.y6b_c00195{bottom:574.066667pt;}
.y6a_c00195{bottom:575.026667pt;}
.y68_c00195{bottom:589.106667pt;}
.y66_c00195{bottom:590.440000pt;}
.y67_c00195{bottom:591.026667pt;}
.y65_c00195{bottom:591.400000pt;}
.y64_c00195{bottom:592.360000pt;}
.y5e_c00195{bottom:607.773333pt;}
.y61_c00195{bottom:608.560000pt;}
.y63_c00195{bottom:608.733333pt;}
.y62_c00195{bottom:609.306667pt;}
.y60_c00195{bottom:609.693333pt;}
.y5f_c00195{bottom:610.640000pt;}
.y5c_c00195{bottom:624.360000pt;}
.y5b_c00195{bottom:625.106667pt;}
.y5d_c00195{bottom:625.893333pt;}
.y5a_c00195{bottom:627.026667pt;}
.y56_c00195{bottom:642.440000pt;}
.y59_c00195{bottom:643.226667pt;}
.y57_c00195{bottom:644.360000pt;}
.y58_c00195{bottom:645.306667pt;}
.y54_c00195{bottom:659.026667pt;}
.y52_c00195{bottom:661.106667pt;}
.y53_c00195{bottom:661.693333pt;}
.y55_c00195{bottom:661.893333pt;}
.y51_c00195{bottom:662.640000pt;}
.y50_c00195{bottom:663.026667pt;}
.y4e_c00195{bottom:683.973333pt;}
.y4f_c00195{bottom:684.360000pt;}
.y4b_c00195{bottom:712.360000pt;}
.y4d_c00195{bottom:713.106667pt;}
.y4a_c00195{bottom:714.066667pt;}
.y4c_c00195{bottom:715.026667pt;}
.y46_c00195{bottom:730.440000pt;}
.y48_c00195{bottom:730.640000pt;}
.y49_c00195{bottom:731.026667pt;}
.y47_c00195{bottom:731.400000pt;}
.y45_c00195{bottom:732.360000pt;}
.y40_c00195{bottom:746.640000pt;}
.y42_c00195{bottom:747.400000pt;}
.y43_c00195{bottom:747.773333pt;}
.y41_c00195{bottom:749.306667pt;}
.y3f_c00195{bottom:749.693333pt;}
.y44_c00195{bottom:750.640000pt;}
.y3e_c00195{bottom:763.973333pt;}
.y3a_c00195{bottom:765.106667pt;}
.y3d_c00195{bottom:765.893333pt;}
.y3b_c00195{bottom:767.026667pt;}
.y3c_c00195{bottom:767.973333pt;}
.y39_c00195{bottom:781.693333pt;}
.y36_c00195{bottom:782.440000pt;}
.y37_c00195{bottom:783.973333pt;}
.y35_c00195{bottom:784.360000pt;}
.y38_c00195{bottom:784.560000pt;}
.y34_c00195{bottom:799.773333pt;}
.y32_c00195{bottom:801.106667pt;}
.y33_c00195{bottom:801.693333pt;}
.y30_c00195{bottom:801.893333pt;}
.y31_c00195{bottom:803.026667pt;}
.y2f_c00195{bottom:818.066667pt;}
.y2e_c00195{bottom:818.440000pt;}
.y2d_c00195{bottom:819.026667pt;}
.y2c_c00195{bottom:820.360000pt;}
.y29_c00195{bottom:835.773333pt;}
.y2a_c00195{bottom:836.560000pt;}
.y28_c00195{bottom:837.306667pt;}
.y2b_c00195{bottom:837.693333pt;}
.y25_c00195{bottom:853.106667pt;}
.y27_c00195{bottom:853.893333pt;}
.y23_c00195{bottom:855.026667pt;}
.y24_c00195{bottom:855.040000pt;}
.y26_c00195{bottom:855.226667pt;}
.y22_c00195{bottom:871.226667pt;}
.y21_c00195{bottom:872.360000pt;}
.y1e_c00195{bottom:884.560000pt;}
.y1b_c00195{bottom:885.133333pt;}
.y20_c00195{bottom:886.440000pt;}
.y1f_c00195{bottom:886.826667pt;}
.y1c_c00195{bottom:887.026667pt;}
.y19_c00195{bottom:888.560000pt;}
.y18_c00195{bottom:888.733333pt;}
.y1d_c00195{bottom:889.693333pt;}
.y1a_c00195{bottom:892.560000pt;}
.y17_c00195{bottom:903.026667pt;}
.y11_c00195{bottom:904.360000pt;}
.y15_c00195{bottom:905.106667pt;}
.y12_c00195{bottom:905.306667pt;}
.y16_c00195{bottom:906.066667pt;}
.y13_c00195{bottom:907.026667pt;}
.y14_c00195{bottom:907.226667pt;}
.yc_c00195{bottom:922.440000pt;}
.yf_c00195{bottom:923.026667pt;}
.ye_c00195{bottom:923.400000pt;}
.y10_c00195{bottom:924.360000pt;}
.yd_c00195{bottom:925.306667pt;}
.yb_c00195{bottom:938.066667pt;}
.y6_c00195{bottom:938.466667pt;}
.y7_c00195{bottom:939.026667pt;}
.y9_c00195{bottom:939.773333pt;}
.y8_c00195{bottom:940.360000pt;}
.ya_c00195{bottom:940.733333pt;}
.y3_c00195{bottom:941.693333pt;}
.y4_c00195{bottom:942.640000pt;}
.y5_c00195{bottom:944.560000pt;}
.y2_c00195{bottom:975.600000pt;}
.y1_c00195{bottom:977.693333pt;}
.h9_c00195{height:3.739141pt;}
.h5_c00195{height:12.988594pt;}
.ha_c00195{height:14.890964pt;}
.h4_c00195{height:20.466875pt;}
.h2_c00195{height:22.303646pt;}
.h3_c00195{height:27.879557pt;}
.h1_c00195{height:31.618698pt;}
.h7_c00195{height:35.357839pt;}
.h6_c00195{height:39.031380pt;}
.h8_c00195{height:42.770521pt;}
.h0_c00195{height:1186.666667pt;}
.w0_c00195{width:782.666667pt;}
.x0_c00195{left:0.000000pt;}
.x100_c00195{left:130.666667pt;}
.xdc_c00195{left:131.626667pt;}
.xa7_c00195{left:133.333333pt;}
.x8e_c00195{left:134.666667pt;}
.x34_c00195{left:135.626667pt;}
.x1_c00195{left:137.706667pt;}
.xf1_c00195{left:140.000000pt;}
.xfc_c00195{left:144.373333pt;}
.xe1_c00195{left:146.666667pt;}
.xb5_c00195{left:148.000000pt;}
.x36_c00195{left:149.906667pt;}
.x6d_c00195{left:157.333333pt;}
.x35_c00195{left:158.666667pt;}
.xc2_c00195{left:160.000000pt;}
.xeb_c00195{left:162.293333pt;}
.x1b_c00195{left:164.000000pt;}
.x99_c00195{left:164.960000pt;}
.xe2_c00195{left:166.666667pt;}
.xc9_c00195{left:167.626667pt;}
.xd6_c00195{left:170.666667pt;}
.x52_c00195{left:172.373333pt;}
.x3_c00195{left:174.293333pt;}
.xb1_c00195{left:176.000000pt;}
.x84_c00195{left:177.333333pt;}
.xb6_c00195{left:179.040000pt;}
.x63_c00195{left:180.000000pt;}
.x12_c00195{left:180.960000pt;}
.x78_c00195{left:182.666667pt;}
.x43_c00195{left:183.626667pt;}
.xa8_c00195{left:185.706667pt;}
.xf2_c00195{left:186.666667pt;}
.x6e_c00195{left:188.373333pt;}
.xd1_c00195{left:189.706667pt;}
.x103_c00195{left:191.040000pt;}
.x4_c00195{left:192.000000pt;}
.x4a_c00195{left:194.666667pt;}
.x5_c00195{left:197.706667pt;}
.x6_c00195{left:200.960000pt;}
.x64_c00195{left:203.040000pt;}
.x25_c00195{left:207.040000pt;}
.x53_c00195{left:208.000000pt;}
.xb2_c00195{left:208.960000pt;}
.xa9_c00195{left:210.666667pt;}
.x7_c00195{left:211.626667pt;}
.x37_c00195{left:213.333333pt;}
.xb9_c00195{left:215.040000pt;}
.xe3_c00195{left:216.000000pt;}
.xd2_c00195{left:220.000000pt;}
.x6f_c00195{left:221.706667pt;}
.xb7_c00195{left:223.040000pt;}
.x79_c00195{left:224.373333pt;}
.x107_c00195{left:225.333333pt;}
.x9a_c00195{left:226.293333pt;}
.xe7_c00195{left:228.000000pt;}
.x26_c00195{left:229.333333pt;}
.x38_c00195{left:230.666667pt;}
.x1c_c00195{left:232.000000pt;}
.x27_c00195{left:232.960000pt;}
.x65_c00195{left:235.040000pt;}
.x44_c00195{left:236.000000pt;}
.x101_c00195{left:238.666667pt;}
.x8_c00195{left:240.960000pt;}
.x28_c00195{left:242.666667pt;}
.x108_c00195{left:244.000000pt;}
.x7a_c00195{left:247.040000pt;}
.x4b_c00195{left:249.706667pt;}
.xfd_c00195{left:252.000000pt;}
.xdd_c00195{left:253.706667pt;}
.xf7_c00195{left:257.333333pt;}
.x54_c00195{left:259.040000pt;}
.xf6_c00195{left:260.373333pt;}
.x39_c00195{left:261.333333pt;}
.x8f_c00195{left:262.666667pt;}
.x85_c00195{left:264.000000pt;}
.x5d_c00195{left:266.293333pt;}
.x13_c00195{left:267.626667pt;}
.xba_c00195{left:268.960000pt;}
.x9_c00195{left:270.666667pt;}
.x7b_c00195{left:271.626667pt;}
.x1d_c00195{left:273.333333pt;}
.x70_c00195{left:275.626667pt;}
.x104_c00195{left:280.373333pt;}
.xa3_c00195{left:281.333333pt;}
.xd3_c00195{left:282.293333pt;}
.xfe_c00195{left:287.040000pt;}
.x102_c00195{left:290.666667pt;}
.x55_c00195{left:292.373333pt;}
.x5e_c00195{left:295.240000pt;}
.x14_c00195{left:296.960000pt;}
.xb3_c00195{left:299.040000pt;}
.x29_c00195{left:300.000000pt;}
.x82_c00195{left:300.960000pt;}
.x105_c00195{left:305.333333pt;}
.xd7_c00195{left:308.000000pt;}
.xca_c00195{left:309.333333pt;}
.x90_c00195{left:313.706667pt;}
.xe8_c00195{left:314.666667pt;}
.xaa_c00195{left:316.960000pt;}
.x66_c00195{left:318.666667pt;}
.xff_c00195{left:320.000000pt;}
.x1e_c00195{left:322.666667pt;}
.x3a_c00195{left:323.626667pt;}
.x86_c00195{left:324.960000pt;}
.x15_c00195{left:326.666667pt;}
.x4c_c00195{left:327.626667pt;}
.x56_c00195{left:329.706667pt;}
.xce_c00195{left:331.040000pt;}
.x81_c00195{left:332.000000pt;}
.xf3_c00195{left:333.706667pt;}
.x67_c00195{left:336.373333pt;}
.xe9_c00195{left:337.706667pt;}
.x2a_c00195{left:338.666667pt;}
.xa_c00195{left:340.000000pt;}
.x87_c00195{left:341.706667pt;}
.x3b_c00195{left:342.666667pt;}
.x71_c00195{left:345.333333pt;}
.xec_c00195{left:348.960000pt;}
.xc3_c00195{left:352.373333pt;}
.x83_c00195{left:353.333333pt;}
.x45_c00195{left:354.293333pt;}
.xbb_c00195{left:355.626667pt;}
.x2_c00195{left:357.333333pt;}
.xf8_c00195{left:358.293333pt;}
.x91_c00195{left:360.373333pt;}
.xab_c00195{left:361.706667pt;}
.x68_c00195{left:363.040000pt;}
.xde_c00195{left:364.000000pt;}
.x3c_c00195{left:365.333333pt;}
.x57_c00195{left:366.666667pt;}
.x88_c00195{left:368.373333pt;}
.xbc_c00195{left:370.293333pt;}
.xb4_c00195{left:371.626667pt;}
.xd8_c00195{left:373.333333pt;}
.x1f_c00195{left:374.666667pt;}
.xc4_c00195{left:377.706667pt;}
.x3d_c00195{left:378.666667pt;}
.x16_c00195{left:381.333333pt;}
.xdf_c00195{left:382.666667pt;}
.x4d_c00195{left:384.373333pt;}
.x58_c00195{left:386.666667pt;}
.xea_c00195{left:391.040000pt;}
.xb_c00195{left:398.293333pt;}
.xb8_c00195{left:400.000000pt;}
.x20_c00195{left:400.960000pt;}
.x7c_c00195{left:402.666667pt;}
.xcf_c00195{left:405.333333pt;}
.x2b_c00195{left:408.373333pt;}
.x5f_c00195{left:409.333333pt;}
.x59_c00195{left:413.333333pt;}
.x92_c00195{left:414.293333pt;}
.xbd_c00195{left:416.960000pt;}
.x3e_c00195{left:418.293333pt;}
.xe4_c00195{left:420.000000pt;}
.x72_c00195{left:423.040000pt;}
.x9b_c00195{left:424.000000pt;}
.xf9_c00195{left:424.960000pt;}
.xc_c00195{left:426.293333pt;}
.x21_c00195{left:429.333333pt;}
.x2c_c00195{left:430.666667pt;}
.x2d_c00195{left:435.626667pt;}
.xc5_c00195{left:437.333333pt;}
.xd4_c00195{left:438.666667pt;}
.x17_c00195{left:440.000000pt;}
.x89_c00195{left:441.706667pt;}
.xed_c00195{left:444.000000pt;}
.x2e_c00195{left:444.960000pt;}
.x46_c00195{left:449.333333pt;}
.xfa_c00195{left:450.293333pt;}
.x5a_c00195{left:453.706667pt;}
.xd0_c00195{left:454.666667pt;}
.xd_c00195{left:455.626667pt;}
.x69_c00195{left:460.000000pt;}
.x3f_c00195{left:461.333333pt;}
.xd9_c00195{left:465.333333pt;}
.x73_c00195{left:467.626667pt;}
.x18_c00195{left:469.333333pt;}
.x9e_c00195{left:470.293333pt;}
.x2f_c00195{left:471.626667pt;}
.xe5_c00195{left:473.333333pt;}
.x7d_c00195{left:474.666667pt;}
.xf4_c00195{left:476.000000pt;}
.xcb_c00195{left:479.040000pt;}
.x4e_c00195{left:481.333333pt;}
.x47_c00195{left:482.666667pt;}
.x8a_c00195{left:483.626667pt;}
.xee_c00195{left:484.960000pt;}
.xe6_c00195{left:488.960000pt;}
.x40_c00195{left:490.666667pt;}
.x6a_c00195{left:493.333333pt;}
.xda_c00195{left:495.040000pt;}
.x74_c00195{left:496.373333pt;}
.xa4_c00195{left:497.706667pt;}
.x19_c00195{left:498.666667pt;}
.x30_c00195{left:500.960000pt;}
.x48_c00195{left:501.906667pt;}
.x9f_c00195{left:503.626667pt;}
.x93_c00195{left:504.960000pt;}
.xac_c00195{left:506.293333pt;}
.xc6_c00195{left:510.293333pt;}
.xe_c00195{left:511.626667pt;}
.x7e_c00195{left:513.706667pt;}
.xe0_c00195{left:514.666667pt;}
.xbe_c00195{left:516.000000pt;}
.xdb_c00195{left:518.666667pt;}
.x60_c00195{left:520.000000pt;}
.xa0_c00195{left:521.333333pt;}
.x5b_c00195{left:522.666667pt;}
.xad_c00195{left:525.706667pt;}
.x4f_c00195{left:527.040000pt;}
.x6b_c00195{left:528.000000pt;}
.xf_c00195{left:529.333333pt;}
.x8b_c00195{left:530.666667pt;}
.x94_c00195{left:532.000000pt;}
.x61_c00195{left:533.706667pt;}
.xd5_c00195{left:536.373333pt;}
.x7f_c00195{left:538.666667pt;}
.xa5_c00195{left:543.626667pt;}
.x31_c00195{left:544.960000pt;}
.xa1_c00195{left:546.293333pt;}
.xc7_c00195{left:548.000000pt;}
.x49_c00195{left:548.960000pt;}
.xbf_c00195{left:550.666667pt;}
.x95_c00195{left:552.373333pt;}
.xae_c00195{left:555.040000pt;}
.x9c_c00195{left:556.373333pt;}
.x22_c00195{left:560.000000pt;}
.xef_c00195{left:560.960000pt;}
.x32_c00195{left:563.040000pt;}
.x41_c00195{left:568.373333pt;}
.xc8_c00195{left:573.706667pt;}
.x1a_c00195{left:574.666667pt;}
.x75_c00195{left:575.626667pt;}
.x96_c00195{left:577.333333pt;}
.xc0_c00195{left:578.666667pt;}
.xf5_c00195{left:580.000000pt;}
.xaf_c00195{left:583.626667pt;}
.xa2_c00195{left:585.333333pt;}
.x23_c00195{left:586.293333pt;}
.x5c_c00195{left:587.626667pt;}
.x50_c00195{left:589.333333pt;}
.x62_c00195{left:590.666667pt;}
.x76_c00195{left:593.706667pt;}
.x6c_c00195{left:594.666667pt;}
.xfb_c00195{left:596.000000pt;}
.x10_c00195{left:597.333333pt;}
.xcc_c00195{left:598.666667pt;}
.xa6_c00195{left:600.000000pt;}
.x80_c00195{left:601.706667pt;}
.xc1_c00195{left:605.333333pt;}
.x51_c00195{left:606.666667pt;}
.xf0_c00195{left:608.960000pt;}
.x97_c00195{left:610.293333pt;}
.xb0_c00195{left:612.373333pt;}
.x106_c00195{left:613.333333pt;}
.x24_c00195{left:614.666667pt;}
.x9d_c00195{left:617.706667pt;}
.x77_c00195{left:619.626667pt;}
.x8c_c00195{left:624.960000pt;}
.x11_c00195{left:626.666667pt;}
.x33_c00195{left:628.000000pt;}
.x98_c00195{left:629.706667pt;}
.x42_c00195{left:633.333333pt;}
.xcd_c00195{left:636.000000pt;}
.x8d_c00195{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ce3e624d869a35a97dfbf6f0.woff2')format("woff");}.ff1_c00196{font-family:ff1_c00196;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md8_c00196{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.md_c00196{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.mb0_c00196{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m84_c00196{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.m0_c00196{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m34_c00196{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m56_c00196{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m89_c00196{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m24_c00196{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m3c_c00196{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m5_c00196{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m9d_c00196{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m51_c00196{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m48_c00196{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m59_c00196{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.me0_c00196{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m3b_c00196{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m74_c00196{transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);}
.mca_c00196{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.ma2_c00196{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.mb2_c00196{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.me8_c00196{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m4a_c00196{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.mbb_c00196{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m5a_c00196{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m2f_c00196{transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);}
.m86_c00196{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.med_c00196{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.ma4_c00196{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m97_c00196{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.maa_c00196{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.mb3_c00196{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mc4_c00196{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.me6_c00196{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m108_c00196{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m101_c00196{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m43_c00196{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.md3_c00196{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.mf4_c00196{transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);}
.md0_c00196{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mee_c00196{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mcf_c00196{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.md5_c00196{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m18_c00196{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m6b_c00196{transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);}
.m7b_c00196{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m7_c00196{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m39_c00196{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m7c_c00196{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m70_c00196{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m10b_c00196{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m5c_c00196{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m2b_c00196{transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);}
.m1c_c00196{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.mfd_c00196{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m46_c00196{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m64_c00196{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.md7_c00196{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m5d_c00196{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.md9_c00196{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m10e_c00196{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.mf0_c00196{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mb8_c00196{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m95_c00196{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mad_c00196{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m61_c00196{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mff_c00196{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m1a_c00196{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m83_c00196{transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);}
.m47_c00196{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m54_c00196{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m49_c00196{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.mab_c00196{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m10f_c00196{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.mec_c00196{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m9e_c00196{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m106_c00196{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.m4d_c00196{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.mc0_c00196{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mf9_c00196{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m102_c00196{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m110_c00196{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.me9_c00196{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mb4_c00196{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mf7_c00196{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m7e_c00196{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m107_c00196{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.ma3_c00196{transform:matrix(0.462941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462941,0.000000,0.000000,0.250000,0,0);}
.m9a_c00196{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.mb6_c00196{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00196{transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);}
.mfb_c00196{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m8_c00196{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m10d_c00196{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m50_c00196{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.m90_c00196{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m103_c00196{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m66_c00196{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m78_c00196{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m91_c00196{transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);}
.m109_c00196{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.m80_c00196{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.mdf_c00196{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m98_c00196{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.mcc_c00196{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m4e_c00196{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.mc3_c00196{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m2a_c00196{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m44_c00196{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m8a_c00196{transform:matrix(0.482365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482365,0.000000,0.000000,0.250000,0,0);}
.mdb_c00196{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m6d_c00196{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.ma0_c00196{transform:matrix(0.484706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484706,0.000000,0.000000,0.250000,0,0);}
.m12_c00196{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m8f_c00196{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.me_c00196{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m87_c00196{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mc1_c00196{transform:matrix(0.492115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492115,0.000000,0.000000,0.250000,0,0);}
.mbc_c00196{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m1b_c00196{transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);}
.m53_c00196{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m11_c00196{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m60_c00196{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.ma8_c00196{transform:matrix(0.496471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496471,0.000000,0.000000,0.250000,0,0);}
.mc7_c00196{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m29_c00196{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);}
.mfc_c00196{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m10c_c00196{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m72_c00196{transform:matrix(0.506471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506471,0.000000,0.000000,0.250000,0,0);}
.m3e_c00196{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m28_c00196{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m45_c00196{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.ma9_c00196{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m55_c00196{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m6f_c00196{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.ma7_c00196{transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);}
.mea_c00196{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m63_c00196{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m5e_c00196{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.mc2_c00196{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.meb_c00196{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.mf8_c00196{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m4b_c00196{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m6e_c00196{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.mf1_c00196{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.ma5_c00196{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m14_c00196{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.mf2_c00196{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m1f_c00196{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m13_c00196{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m21_c00196{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m7f_c00196{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_c00196{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m22_c00196{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.mc5_c00196{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m4c_c00196{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m67_c00196{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m9_c00196{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.md1_c00196{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.mac_c00196{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m15_c00196{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m19_c00196{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m3d_c00196{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mb5_c00196{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.mc9_c00196{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m38_c00196{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m6a_c00196{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.mc_c00196{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mcd_c00196{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m32_c00196{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m3a_c00196{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m9f_c00196{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m33_c00196{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.ma6_c00196{transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);}
.m37_c00196{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mb9_c00196{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m1d_c00196{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m99_c00196{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m2d_c00196{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m2_c00196{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m5b_c00196{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m10_c00196{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mcb_c00196{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m111_c00196{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m96_c00196{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m41_c00196{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m62_c00196{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m30_c00196{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m36_c00196{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.md4_c00196{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m16_c00196{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m100_c00196{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.mef_c00196{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m57_c00196{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m71_c00196{transform:matrix(0.555294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555294,0.000000,0.000000,0.250000,0,0);}
.m1e_c00196{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mc8_c00196{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m6_c00196{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m5f_c00196{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mae_c00196{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mbe_c00196{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m82_c00196{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m104_c00196{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.md2_c00196{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m92_c00196{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.m27_c00196{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m52_c00196{transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);}
.mb_c00196{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m23_c00196{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.me4_c00196{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.mde_c00196{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m2c_c00196{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.me3_c00196{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m8d_c00196{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.mbd_c00196{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mc6_c00196{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m17_c00196{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m68_c00196{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);}
.m4f_c00196{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m7d_c00196{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m81_c00196{transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);}
.m2e_c00196{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.mb7_c00196{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mbf_c00196{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mdd_c00196{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mfa_c00196{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.mce_c00196{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mf5_c00196{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.me7_c00196{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.me2_c00196{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m26_c00196{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mda_c00196{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.ma_c00196{transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);}
.m88_c00196{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m7a_c00196{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m8e_c00196{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);}
.m94_c00196{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.me1_c00196{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.ma1_c00196{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m93_c00196{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.mfe_c00196{transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);}
.m85_c00196{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.mf3_c00196{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.md6_c00196{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);}
.m75_c00196{transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);}
.mb1_c00196{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m1_c00196{transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);}
.m20_c00196{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.maf_c00196{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m8c_c00196{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m73_c00196{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m69_c00196{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m3f_c00196{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m9b_c00196{transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);}
.m35_c00196{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m77_c00196{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);}
.me5_c00196{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m8b_c00196{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m25_c00196{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m3_c00196{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mf_c00196{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m31_c00196{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m105_c00196{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m58_c00196{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m42_c00196{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m40_c00196{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mba_c00196{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m10a_c00196{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.m65_c00196{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m79_c00196{transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);}
.m9c_c00196{transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);}
.m76_c00196{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m6c_c00196{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.m4_c00196{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v2_c00196{vertical-align:-6.000000px;}
.v0_c00196{vertical-align:0.000000px;}
.v1_c00196{vertical-align:7.680000px;}
.ls1_c00196{letter-spacing:0.000000px;}
.ls0_c00196{letter-spacing:14.817600px;}
.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;}
}
.ws1_c00196{word-spacing:0.000000px;}
.ws0_c00196{word-spacing:15.653541px;}
.fc0_c00196{color:transparent;}
.fs3_c00196{font-size:3.420000px;}
.fs6_c00196{font-size:13.620000px;}
.fs1_c00196{font-size:18.720000px;}
.fs7_c00196{font-size:20.400000px;}
.fs5_c00196{font-size:25.500000px;}
.fs2_c00196{font-size:28.920000px;}
.fs4_c00196{font-size:32.340000px;}
.fs0_c00196{font-size:35.700000px;}
.y0_c00196{bottom:0.000000px;}
.ycf_c00196{bottom:250.245000px;}
.yd4_c00196{bottom:250.905000px;}
.yd1_c00196{bottom:251.130000px;}
.yd3_c00196{bottom:251.325000px;}
.yd2_c00196{bottom:251.970000px;}
.yd0_c00196{bottom:252.405000px;}
.ycd_c00196{bottom:269.325000px;}
.ycb_c00196{bottom:269.745000px;}
.yce_c00196{bottom:270.630000px;}
.ycc_c00196{bottom:271.905000px;}
.yca_c00196{bottom:272.130000px;}
.yc9_c00196{bottom:289.245000px;}
.yc6_c00196{bottom:290.130000px;}
.yc8_c00196{bottom:290.325000px;}
.yc4_c00196{bottom:290.745000px;}
.yc5_c00196{bottom:291.405000px;}
.yc7_c00196{bottom:292.470000px;}
.yc3_c00196{bottom:292.905000px;}
.yc1_c00196{bottom:308.745000px;}
.yc2_c00196{bottom:309.825000px;}
.ybe_c00196{bottom:310.245000px;}
.ybf_c00196{bottom:310.905000px;}
.yc0_c00196{bottom:311.130000px;}
.ybd_c00196{bottom:312.405000px;}
.ybb_c00196{bottom:328.245000px;}
.yb7_c00196{bottom:329.745000px;}
.yba_c00196{bottom:330.405000px;}
.yb9_c00196{bottom:330.825000px;}
.ybc_c00196{bottom:331.470000px;}
.yb8_c00196{bottom:331.905000px;}
.yb6_c00196{bottom:347.745000px;}
.yb2_c00196{bottom:347.970000px;}
.yb3_c00196{bottom:349.245000px;}
.yb5_c00196{bottom:349.905000px;}
.yb4_c00196{bottom:350.325000px;}
.yb1_c00196{bottom:351.405000px;}
.yb0_c00196{bottom:367.245000px;}
.yae_c00196{bottom:368.325000px;}
.yaf_c00196{bottom:369.405000px;}
.yad_c00196{bottom:370.470000px;}
.yac_c00196{bottom:370.905000px;}
.yab_c00196{bottom:388.245000px;}
.ya8_c00196{bottom:390.405000px;}
.yaa_c00196{bottom:390.630000px;}
.ya9_c00196{bottom:391.470000px;}
.ya7_c00196{bottom:407.745000px;}
.ya6_c00196{bottom:408.825000px;}
.ya5_c00196{bottom:409.905000px;}
.ya4_c00196{bottom:411.405000px;}
.ya2_c00196{bottom:427.245000px;}
.ya3_c00196{bottom:428.325000px;}
.y9f_c00196{bottom:428.745000px;}
.ya0_c00196{bottom:429.405000px;}
.ya1_c00196{bottom:430.470000px;}
.y9c_c00196{bottom:445.470000px;}
.y9b_c00196{bottom:447.405000px;}
.y9a_c00196{bottom:447.825000px;}
.y9d_c00196{bottom:448.470000px;}
.y99_c00196{bottom:448.905000px;}
.y9e_c00196{bottom:449.130000px;}
.y96_c00196{bottom:467.550000px;}
.y95_c00196{bottom:467.745000px;}
.y98_c00196{bottom:468.405000px;}
.y94_c00196{bottom:469.050000px;}
.y97_c00196{bottom:469.905000px;}
.y93_c00196{bottom:487.245000px;}
.y92_c00196{bottom:489.405000px;}
.y8e_c00196{bottom:506.745000px;}
.y91_c00196{bottom:507.630000px;}
.y8f_c00196{bottom:507.825000px;}
.y90_c00196{bottom:508.470000px;}
.y8d_c00196{bottom:508.905000px;}
.y8a_c00196{bottom:526.245000px;}
.y8c_c00196{bottom:527.325000px;}
.y8b_c00196{bottom:527.970000px;}
.y89_c00196{bottom:528.405000px;}
.y88_c00196{bottom:528.825000px;}
.y87_c00196{bottom:545.745000px;}
.y86_c00196{bottom:547.905000px;}
.y84_c00196{bottom:548.130000px;}
.y85_c00196{bottom:549.405000px;}
.y7e_c00196{bottom:566.745000px;}
.y81_c00196{bottom:567.405000px;}
.y83_c00196{bottom:567.630000px;}
.y82_c00196{bottom:567.825000px;}
.y7f_c00196{bottom:568.470000px;}
.y80_c00196{bottom:568.905000px;}
.y7d_c00196{bottom:584.745000px;}
.y79_c00196{bottom:586.245000px;}
.y7c_c00196{bottom:587.130000px;}
.y7a_c00196{bottom:587.325000px;}
.y7b_c00196{bottom:588.405000px;}
.y74_c00196{bottom:603.405000px;}
.y76_c00196{bottom:604.245000px;}
.y77_c00196{bottom:604.470000px;}
.y71_c00196{bottom:605.745000px;}
.y73_c00196{bottom:606.405000px;}
.y78_c00196{bottom:606.630000px;}
.y75_c00196{bottom:607.470000px;}
.y72_c00196{bottom:607.905000px;}
.y70_c00196{bottom:639.825000px;}
.y6f_c00196{bottom:641.970000px;}
.y6e_c00196{bottom:643.470000px;}
.y68_c00196{bottom:654.825000px;}
.y69_c00196{bottom:655.050000px;}
.y6b_c00196{bottom:655.470000px;}
.y6a_c00196{bottom:655.905000px;}
.y6c_c00196{bottom:656.970000px;}
.y6d_c00196{bottom:657.195000px;}
.y67_c00196{bottom:658.050000px;}
.y65_c00196{bottom:668.970000px;}
.y63_c00196{bottom:669.825000px;}
.y61_c00196{bottom:670.905000px;}
.y66_c00196{bottom:671.130000px;}
.y64_c00196{bottom:671.970000px;}
.y62_c00196{bottom:672.195000px;}
.y60_c00196{bottom:673.050000px;}
.y5b_c00196{bottom:683.970000px;}
.y5e_c00196{bottom:684.825000px;}
.y5c_c00196{bottom:685.905000px;}
.y5d_c00196{bottom:686.970000px;}
.y5f_c00196{bottom:687.195000px;}
.y5a_c00196{bottom:699.825000px;}
.y58_c00196{bottom:700.905000px;}
.y59_c00196{bottom:703.050000px;}
.y4f_c00196{bottom:713.550000px;}
.y54_c00196{bottom:714.405000px;}
.y53_c00196{bottom:715.470000px;}
.y50_c00196{bottom:715.905000px;}
.y51_c00196{bottom:716.130000px;}
.y52_c00196{bottom:716.550000px;}
.y55_c00196{bottom:716.970000px;}
.y56_c00196{bottom:717.195000px;}
.y57_c00196{bottom:718.050000px;}
.y4d_c00196{bottom:728.970000px;}
.y4c_c00196{bottom:729.825000px;}
.y4e_c00196{bottom:731.970000px;}
.y49_c00196{bottom:744.825000px;}
.y45_c00196{bottom:745.050000px;}
.y46_c00196{bottom:745.905000px;}
.y48_c00196{bottom:746.550000px;}
.y47_c00196{bottom:746.970000px;}
.y4a_c00196{bottom:747.195000px;}
.y4b_c00196{bottom:748.050000px;}
.y44_c00196{bottom:759.405000px;}
.y42_c00196{bottom:759.630000px;}
.y41_c00196{bottom:760.470000px;}
.y43_c00196{bottom:761.550000px;}
.y3d_c00196{bottom:773.325000px;}
.y40_c00196{bottom:774.405000px;}
.y3b_c00196{bottom:774.630000px;}
.y3c_c00196{bottom:775.470000px;}
.y3f_c00196{bottom:775.695000px;}
.y3e_c00196{bottom:776.550000px;}
.y3a_c00196{bottom:787.470000px;}
.y39_c00196{bottom:788.325000px;}
.y37_c00196{bottom:789.405000px;}
.y38_c00196{bottom:790.470000px;}
.y36_c00196{bottom:790.695000px;}
.y35_c00196{bottom:821.745000px;}
.y34_c00196{bottom:823.905000px;}
.y33_c00196{bottom:841.245000px;}
.y32_c00196{bottom:843.405000px;}
.y2c_c00196{bottom:860.745000px;}
.y2e_c00196{bottom:860.970000px;}
.y31_c00196{bottom:862.245000px;}
.y2d_c00196{bottom:862.905000px;}
.y2f_c00196{bottom:863.130000px;}
.y30_c00196{bottom:864.405000px;}
.y27_c00196{bottom:880.245000px;}
.y26_c00196{bottom:881.745000px;}
.y28_c00196{bottom:882.405000px;}
.y2a_c00196{bottom:882.630000px;}
.y29_c00196{bottom:882.825000px;}
.y2b_c00196{bottom:883.470000px;}
.y24_c00196{bottom:899.745000px;}
.y25_c00196{bottom:901.245000px;}
.y23_c00196{bottom:901.905000px;}
.y21_c00196{bottom:920.745000px;}
.y22_c00196{bottom:921.630000px;}
.y20_c00196{bottom:922.905000px;}
.y1e_c00196{bottom:940.245000px;}
.y1f_c00196{bottom:941.130000px;}
.y1c_c00196{bottom:942.405000px;}
.y1d_c00196{bottom:942.420000px;}
.y19_c00196{bottom:959.745000px;}
.y1a_c00196{bottom:961.905000px;}
.y1b_c00196{bottom:962.130000px;}
.y16_c00196{bottom:978.825000px;}
.y17_c00196{bottom:980.325000px;}
.y15_c00196{bottom:981.405000px;}
.y18_c00196{bottom:982.470000px;}
.y14_c00196{bottom:998.745000px;}
.y12_c00196{bottom:1000.905000px;}
.y13_c00196{bottom:1001.130000px;}
.y10_c00196{bottom:1018.245000px;}
.y11_c00196{bottom:1019.325000px;}
.yf_c00196{bottom:1020.405000px;}
.ye_c00196{bottom:1036.905000px;}
.yb_c00196{bottom:1039.245000px;}
.yc_c00196{bottom:1040.130000px;}
.yd_c00196{bottom:1040.325000px;}
.y9_c00196{bottom:1041.405000px;}
.ya_c00196{bottom:1041.420000px;}
.y7_c00196{bottom:1058.325000px;}
.y6_c00196{bottom:1058.745000px;}
.y4_c00196{bottom:1059.630000px;}
.y3_c00196{bottom:1060.905000px;}
.y5_c00196{bottom:1060.920000px;}
.y8_c00196{bottom:1061.970000px;}
.y1_c00196{bottom:1097.745000px;}
.y2_c00196{bottom:1098.630000px;}
.h4_c00196{height:4.206533px;}
.h7_c00196{height:16.752334px;}
.h2_c00196{height:23.025234px;}
.h8_c00196{height:25.091602px;}
.h6_c00196{height:31.364502px;}
.h3_c00196{height:35.571035px;}
.h9_c00196{height:39.044502px;}
.h5_c00196{height:39.777568px;}
.h1_c00196{height:43.910303px;}
.h0_c00196{height:1335.000000px;}
.w0_c00196{width:880.500000px;}
.x0_c00196{left:0.000000px;}
.x18_c00196{left:151.500000px;}
.x55_c00196{left:152.580000px;}
.x71_c00196{left:162.000000px;}
.x75_c00196{left:166.500000px;}
.xc_c00196{left:167.580000px;}
.x3_c00196{left:169.500000px;}
.xea_c00196{left:171.420000px;}
.x2b_c00196{left:172.920000px;}
.x92_c00196{left:179.580000px;}
.xdb_c00196{left:181.080000px;}
.x76_c00196{left:182.145000px;}
.x4c_c00196{left:184.500000px;}
.xa8_c00196{left:185.580000px;}
.xa2_c00196{left:187.920000px;}
.xe5_c00196{left:189.000000px;}
.xba_c00196{left:190.500000px;}
.xb2_c00196{left:193.080000px;}
.xe0_c00196{left:195.000000px;}
.x72_c00196{left:197.580000px;}
.x56_c00196{left:199.500000px;}
.xee_c00196{left:201.420000px;}
.x2c_c00196{left:204.000000px;}
.xce_c00196{left:205.920000px;}
.x87_c00196{left:208.500000px;}
.xc2_c00196{left:210.000000px;}
.xb3_c00196{left:211.920000px;}
.xa9_c00196{left:213.000000px;}
.xa3_c00196{left:216.000000px;}
.x88_c00196{left:219.000000px;}
.x21_c00196{left:220.500000px;}
.x19_c00196{left:221.580000px;}
.x93_c00196{left:223.500000px;}
.x41_c00196{left:224.580000px;}
.x35_c00196{left:228.000000px;}
.xcf_c00196{left:232.500000px;}
.x57_c00196{left:234.420000px;}
.xf8_c00196{left:235.500000px;}
.x6a_c00196{left:236.580000px;}
.x61_c00196{left:238.080000px;}
.xb4_c00196{left:239.580000px;}
.xd4_c00196{left:242.580000px;}
.x80_c00196{left:244.500000px;}
.xc9_c00196{left:246.420000px;}
.x4_c00196{left:247.500000px;}
.x8a_c00196{left:249.000000px;}
.x38_c00196{left:250.500000px;}
.x22_c00196{left:253.080000px;}
.xe6_c00196{left:255.420000px;}
.xef_c00196{left:256.500000px;}
.xd5_c00196{left:259.500000px;}
.xd_c00196{left:261.000000px;}
.x77_c00196{left:264.000000px;}
.x6b_c00196{left:268.080000px;}
.x36_c00196{left:270.000000px;}
.x2d_c00196{left:271.500000px;}
.x1a_c00196{left:273.000000px;}
.xb5_c00196{left:274.080000px;}
.x4d_c00196{left:275.580000px;}
.x58_c00196{left:277.275000px;}
.x9a_c00196{left:279.000000px;}
.xe_c00196{left:280.500000px;}
.xeb_c00196{left:281.580000px;}
.x81_c00196{left:283.500000px;}
.xca_c00196{left:285.420000px;}
.xe7_c00196{left:290.580000px;}
.x73_c00196{left:292.920000px;}
.xbb_c00196{left:294.000000px;}
.x37_c00196{left:295.500000px;}
.xd6_c00196{left:297.420000px;}
.x5_c00196{left:298.500000px;}
.x62_c00196{left:301.080000px;}
.x42_c00196{left:306.000000px;}
.x23_c00196{left:307.500000px;}
.x2e_c00196{left:308.580000px;}
.xf6_c00196{left:312.420000px;}
.x59_c00196{left:313.920000px;}
.x8b_c00196{left:315.420000px;}
.xf_c00196{left:316.500000px;}
.x6_c00196{left:320.580000px;}
.xde_c00196{left:324.000000px;}
.x78_c00196{left:325.500000px;}
.xfb_c00196{left:326.580000px;}
.x94_c00196{left:328.500000px;}
.x2f_c00196{left:331.500000px;}
.x89_c00196{left:334.500000px;}
.x8c_c00196{left:335.580000px;}
.x9e_c00196{left:337.500000px;}
.x4e_c00196{left:339.420000px;}
.x43_c00196{left:342.420000px;}
.x39_c00196{left:343.500000px;}
.x7_c00196{left:344.580000px;}
.xfc_c00196{left:346.500000px;}
.xcb_c00196{left:351.000000px;}
.x95_c00196{left:355.500000px;}
.xa4_c00196{left:357.420000px;}
.x74_c00196{left:358.500000px;}
.x63_c00196{left:360.000000px;}
.xe1_c00196{left:362.580000px;}
.x3a_c00196{left:364.500000px;}
.x4f_c00196{left:366.000000px;}
.x24_c00196{left:370.500000px;}
.x10_c00196{left:373.500000px;}
.xd7_c00196{left:376.080000px;}
.x8d_c00196{left:379.080000px;}
.xd0_c00196{left:380.580000px;}
.x79_c00196{left:382.500000px;}
.x1b_c00196{left:384.420000px;}
.xed_c00196{left:385.920000px;}
.xb6_c00196{left:388.920000px;}
.x25_c00196{left:390.420000px;}
.x82_c00196{left:391.500000px;}
.x7a_c00196{left:393.000000px;}
.x64_c00196{left:396.000000px;}
.x2_c00196{left:397.500000px;}
.x5a_c00196{left:399.645000px;}
.xd1_c00196{left:400.920000px;}
.x96_c00196{left:402.420000px;}
.xbc_c00196{left:405.000000px;}
.x11_c00196{left:406.500000px;}
.x8_c00196{left:409.080000px;}
.x44_c00196{left:411.000000px;}
.x1c_c00196{left:414.420000px;}
.x30_c00196{left:415.920000px;}
.x50_c00196{left:417.420000px;}
.xe2_c00196{left:418.500000px;}
.x6c_c00196{left:420.420000px;}
.xcc_c00196{left:421.500000px;}
.x12_c00196{left:423.000000px;}
.xc3_c00196{left:424.500000px;}
.x9b_c00196{left:426.000000px;}
.x8e_c00196{left:427.500000px;}
.x45_c00196{left:429.000000px;}
.xdc_c00196{left:430.080000px;}
.x26_c00196{left:433.500000px;}
.xe8_c00196{left:435.420000px;}
.x7b_c00196{left:437.580000px;}
.xec_c00196{left:439.500000px;}
.x97_c00196{left:445.500000px;}
.x6d_c00196{left:446.580000px;}
.x46_c00196{left:450.000000px;}
.x3b_c00196{left:451.500000px;}
.x65_c00196{left:452.580000px;}
.x51_c00196{left:454.080000px;}
.x5b_c00196{left:455.580000px;}
.xf3_c00196{left:457.500000px;}
.x9c_c00196{left:458.580000px;}
.xa5_c00196{left:460.080000px;}
.xf0_c00196{left:462.000000px;}
.x13_c00196{left:465.855000px;}
.xc4_c00196{left:468.000000px;}
.xe3_c00196{left:474.420000px;}
.xd8_c00196{left:475.500000px;}
.x7c_c00196{left:478.080000px;}
.x1d_c00196{left:481.920000px;}
.x47_c00196{left:483.000000px;}
.x3c_c00196{left:484.920000px;}
.x6e_c00196{left:487.500000px;}
.xe9_c00196{left:489.420000px;}
.x5c_c00196{left:492.000000px;}
.xa6_c00196{left:496.080000px;}
.x9_c00196{left:498.000000px;}
.x66_c00196{left:499.920000px;}
.x7d_c00196{left:502.080000px;}
.xb7_c00196{left:504.420000px;}
.x27_c00196{left:508.500000px;}
.xf9_c00196{left:512.580000px;}
.x98_c00196{left:515.145000px;}
.xf1_c00196{left:517.080000px;}
.x3d_c00196{left:519.000000px;}
.x83_c00196{left:522.420000px;}
.xbd_c00196{left:525.000000px;}
.xad_c00196{left:526.500000px;}
.x48_c00196{left:528.420000px;}
.x9d_c00196{left:529.500000px;}
.xa_c00196{left:530.580000px;}
.xaa_c00196{left:535.080000px;}
.x67_c00196{left:537.000000px;}
.x84_c00196{left:538.080000px;}
.x28_c00196{left:541.500000px;}
.xae_c00196{left:543.000000px;}
.x8f_c00196{left:544.500000px;}
.x7e_c00196{left:546.000000px;}
.x31_c00196{left:550.080000px;}
.xfd_c00196{left:551.580000px;}
.x1e_c00196{left:553.500000px;}
.x9f_c00196{left:554.580000px;}
.x49_c00196{left:556.500000px;}
.x14_c00196{left:559.500000px;}
.xe4_c00196{left:563.580000px;}
.xbe_c00196{left:567.000000px;}
.xab_c00196{left:571.500000px;}
.x6f_c00196{left:573.000000px;}
.x68_c00196{left:576.000000px;}
.x5d_c00196{left:580.500000px;}
.x32_c00196{left:583.500000px;}
.x15_c00196{left:585.000000px;}
.x52_c00196{left:590.580000px;}
.x5e_c00196{left:592.500000px;}
.xdd_c00196{left:593.580000px;}
.xf4_c00196{left:595.500000px;}
.x3e_c00196{left:598.920000px;}
.x4a_c00196{left:600.420000px;}
.xc5_c00196{left:601.500000px;}
.x7f_c00196{left:603.000000px;}
.x29_c00196{left:609.000000px;}
.xdf_c00196{left:612.000000px;}
.xa7_c00196{left:613.500000px;}
.x85_c00196{left:616.080000px;}
.xbf_c00196{left:618.000000px;}
.xc6_c00196{left:622.920000px;}
.xaf_c00196{left:624.000000px;}
.x90_c00196{left:625.080000px;}
.xa0_c00196{left:627.000000px;}
.x69_c00196{left:628.500000px;}
.xb_c00196{left:630.000000px;}
.x16_c00196{left:632.580000px;}
.x5f_c00196{left:634.275000px;}
.x1f_c00196{left:635.580000px;}
.x3f_c00196{left:637.080000px;}
.x53_c00196{left:640.275000px;}
.xd9_c00196{left:643.080000px;}
.xd2_c00196{left:644.580000px;}
.xcd_c00196{left:646.500000px;}
.x70_c00196{left:649.500000px;}
.xc7_c00196{left:651.000000px;}
.x86_c00196{left:653.580000px;}
.xb8_c00196{left:658.920000px;}
.xac_c00196{left:660.000000px;}
.xa1_c00196{left:661.500000px;}
.xd3_c00196{left:662.580000px;}
.x33_c00196{left:666.000000px;}
.xfa_c00196{left:667.920000px;}
.xf7_c00196{left:670.500000px;}
.xc0_c00196{left:672.420000px;}
.xb0_c00196{left:673.500000px;}
.x54_c00196{left:675.855000px;}
.x60_c00196{left:678.000000px;}
.x4b_c00196{left:680.580000px;}
.x2a_c00196{left:685.500000px;}
.x99_c00196{left:687.000000px;}
.xc8_c00196{left:688.500000px;}
.x34_c00196{left:691.080000px;}
.xf5_c00196{left:693.000000px;}
.x17_c00196{left:694.920000px;}
.x91_c00196{left:700.500000px;}
.x20_c00196{left:701.580000px;}
.x1_c00196{left:704.775000px;}
.xda_c00196{left:706.920000px;}
.xc1_c00196{left:708.420000px;}
.x40_c00196{left:709.500000px;}
.xb1_c00196{left:712.500000px;}
.xf2_c00196{left:717.000000px;}
.xb9_c00196{left:721.500000px;}
@media print{
.v2_c00196{vertical-align:-5.333333pt;}
.v0_c00196{vertical-align:0.000000pt;}
.v1_c00196{vertical-align:6.826667pt;}
.ls1_c00196{letter-spacing:0.000000pt;}
.ls0_c00196{letter-spacing:13.171200pt;}
.ws1_c00196{word-spacing:0.000000pt;}
.ws0_c00196{word-spacing:13.914259pt;}
.fs3_c00196{font-size:3.040000pt;}
.fs6_c00196{font-size:12.106667pt;}
.fs1_c00196{font-size:16.640000pt;}
.fs7_c00196{font-size:18.133333pt;}
.fs5_c00196{font-size:22.666667pt;}
.fs2_c00196{font-size:25.706667pt;}
.fs4_c00196{font-size:28.746667pt;}
.fs0_c00196{font-size:31.733333pt;}
.y0_c00196{bottom:0.000000pt;}
.ycf_c00196{bottom:222.440000pt;}
.yd4_c00196{bottom:223.026667pt;}
.yd1_c00196{bottom:223.226667pt;}
.yd3_c00196{bottom:223.400000pt;}
.yd2_c00196{bottom:223.973333pt;}
.yd0_c00196{bottom:224.360000pt;}
.ycd_c00196{bottom:239.400000pt;}
.ycb_c00196{bottom:239.773333pt;}
.yce_c00196{bottom:240.560000pt;}
.ycc_c00196{bottom:241.693333pt;}
.yca_c00196{bottom:241.893333pt;}
.yc9_c00196{bottom:257.106667pt;}
.yc6_c00196{bottom:257.893333pt;}
.yc8_c00196{bottom:258.066667pt;}
.yc4_c00196{bottom:258.440000pt;}
.yc5_c00196{bottom:259.026667pt;}
.yc7_c00196{bottom:259.973333pt;}
.yc3_c00196{bottom:260.360000pt;}
.yc1_c00196{bottom:274.440000pt;}
.yc2_c00196{bottom:275.400000pt;}
.ybe_c00196{bottom:275.773333pt;}
.ybf_c00196{bottom:276.360000pt;}
.yc0_c00196{bottom:276.560000pt;}
.ybd_c00196{bottom:277.693333pt;}
.ybb_c00196{bottom:291.773333pt;}
.yb7_c00196{bottom:293.106667pt;}
.yba_c00196{bottom:293.693333pt;}
.yb9_c00196{bottom:294.066667pt;}
.ybc_c00196{bottom:294.640000pt;}
.yb8_c00196{bottom:295.026667pt;}
.yb6_c00196{bottom:309.106667pt;}
.yb2_c00196{bottom:309.306667pt;}
.yb3_c00196{bottom:310.440000pt;}
.yb5_c00196{bottom:311.026667pt;}
.yb4_c00196{bottom:311.400000pt;}
.yb1_c00196{bottom:312.360000pt;}
.yb0_c00196{bottom:326.440000pt;}
.yae_c00196{bottom:327.400000pt;}
.yaf_c00196{bottom:328.360000pt;}
.yad_c00196{bottom:329.306667pt;}
.yac_c00196{bottom:329.693333pt;}
.yab_c00196{bottom:345.106667pt;}
.ya8_c00196{bottom:347.026667pt;}
.yaa_c00196{bottom:347.226667pt;}
.ya9_c00196{bottom:347.973333pt;}
.ya7_c00196{bottom:362.440000pt;}
.ya6_c00196{bottom:363.400000pt;}
.ya5_c00196{bottom:364.360000pt;}
.ya4_c00196{bottom:365.693333pt;}
.ya2_c00196{bottom:379.773333pt;}
.ya3_c00196{bottom:380.733333pt;}
.y9f_c00196{bottom:381.106667pt;}
.ya0_c00196{bottom:381.693333pt;}
.ya1_c00196{bottom:382.640000pt;}
.y9c_c00196{bottom:395.973333pt;}
.y9b_c00196{bottom:397.693333pt;}
.y9a_c00196{bottom:398.066667pt;}
.y9d_c00196{bottom:398.640000pt;}
.y99_c00196{bottom:399.026667pt;}
.y9e_c00196{bottom:399.226667pt;}
.y96_c00196{bottom:415.600000pt;}
.y95_c00196{bottom:415.773333pt;}
.y98_c00196{bottom:416.360000pt;}
.y94_c00196{bottom:416.933333pt;}
.y97_c00196{bottom:417.693333pt;}
.y93_c00196{bottom:433.106667pt;}
.y92_c00196{bottom:435.026667pt;}
.y8e_c00196{bottom:450.440000pt;}
.y91_c00196{bottom:451.226667pt;}
.y8f_c00196{bottom:451.400000pt;}
.y90_c00196{bottom:451.973333pt;}
.y8d_c00196{bottom:452.360000pt;}
.y8a_c00196{bottom:467.773333pt;}
.y8c_c00196{bottom:468.733333pt;}
.y8b_c00196{bottom:469.306667pt;}
.y89_c00196{bottom:469.693333pt;}
.y88_c00196{bottom:470.066667pt;}
.y87_c00196{bottom:485.106667pt;}
.y86_c00196{bottom:487.026667pt;}
.y84_c00196{bottom:487.226667pt;}
.y85_c00196{bottom:488.360000pt;}
.y7e_c00196{bottom:503.773333pt;}
.y81_c00196{bottom:504.360000pt;}
.y83_c00196{bottom:504.560000pt;}
.y82_c00196{bottom:504.733333pt;}
.y7f_c00196{bottom:505.306667pt;}
.y80_c00196{bottom:505.693333pt;}
.y7d_c00196{bottom:519.773333pt;}
.y79_c00196{bottom:521.106667pt;}
.y7c_c00196{bottom:521.893333pt;}
.y7a_c00196{bottom:522.066667pt;}
.y7b_c00196{bottom:523.026667pt;}
.y74_c00196{bottom:536.360000pt;}
.y76_c00196{bottom:537.106667pt;}
.y77_c00196{bottom:537.306667pt;}
.y71_c00196{bottom:538.440000pt;}
.y73_c00196{bottom:539.026667pt;}
.y78_c00196{bottom:539.226667pt;}
.y75_c00196{bottom:539.973333pt;}
.y72_c00196{bottom:540.360000pt;}
.y70_c00196{bottom:568.733333pt;}
.y6f_c00196{bottom:570.640000pt;}
.y6e_c00196{bottom:571.973333pt;}
.y68_c00196{bottom:582.066667pt;}
.y69_c00196{bottom:582.266667pt;}
.y6b_c00196{bottom:582.640000pt;}
.y6a_c00196{bottom:583.026667pt;}
.y6c_c00196{bottom:583.973333pt;}
.y6d_c00196{bottom:584.173333pt;}
.y67_c00196{bottom:584.933333pt;}
.y65_c00196{bottom:594.640000pt;}
.y63_c00196{bottom:595.400000pt;}
.y61_c00196{bottom:596.360000pt;}
.y66_c00196{bottom:596.560000pt;}
.y64_c00196{bottom:597.306667pt;}
.y62_c00196{bottom:597.506667pt;}
.y60_c00196{bottom:598.266667pt;}
.y5b_c00196{bottom:607.973333pt;}
.y5e_c00196{bottom:608.733333pt;}
.y5c_c00196{bottom:609.693333pt;}
.y5d_c00196{bottom:610.640000pt;}
.y5f_c00196{bottom:610.840000pt;}
.y5a_c00196{bottom:622.066667pt;}
.y58_c00196{bottom:623.026667pt;}
.y59_c00196{bottom:624.933333pt;}
.y4f_c00196{bottom:634.266667pt;}
.y54_c00196{bottom:635.026667pt;}
.y53_c00196{bottom:635.973333pt;}
.y50_c00196{bottom:636.360000pt;}
.y51_c00196{bottom:636.560000pt;}
.y52_c00196{bottom:636.933333pt;}
.y55_c00196{bottom:637.306667pt;}
.y56_c00196{bottom:637.506667pt;}
.y57_c00196{bottom:638.266667pt;}
.y4d_c00196{bottom:647.973333pt;}
.y4c_c00196{bottom:648.733333pt;}
.y4e_c00196{bottom:650.640000pt;}
.y49_c00196{bottom:662.066667pt;}
.y45_c00196{bottom:662.266667pt;}
.y46_c00196{bottom:663.026667pt;}
.y48_c00196{bottom:663.600000pt;}
.y47_c00196{bottom:663.973333pt;}
.y4a_c00196{bottom:664.173333pt;}
.y4b_c00196{bottom:664.933333pt;}
.y44_c00196{bottom:675.026667pt;}
.y42_c00196{bottom:675.226667pt;}
.y41_c00196{bottom:675.973333pt;}
.y43_c00196{bottom:676.933333pt;}
.y3d_c00196{bottom:687.400000pt;}
.y40_c00196{bottom:688.360000pt;}
.y3b_c00196{bottom:688.560000pt;}
.y3c_c00196{bottom:689.306667pt;}
.y3f_c00196{bottom:689.506667pt;}
.y3e_c00196{bottom:690.266667pt;}
.y3a_c00196{bottom:699.973333pt;}
.y39_c00196{bottom:700.733333pt;}
.y37_c00196{bottom:701.693333pt;}
.y38_c00196{bottom:702.640000pt;}
.y36_c00196{bottom:702.840000pt;}
.y35_c00196{bottom:730.440000pt;}
.y34_c00196{bottom:732.360000pt;}
.y33_c00196{bottom:747.773333pt;}
.y32_c00196{bottom:749.693333pt;}
.y2c_c00196{bottom:765.106667pt;}
.y2e_c00196{bottom:765.306667pt;}
.y31_c00196{bottom:766.440000pt;}
.y2d_c00196{bottom:767.026667pt;}
.y2f_c00196{bottom:767.226667pt;}
.y30_c00196{bottom:768.360000pt;}
.y27_c00196{bottom:782.440000pt;}
.y26_c00196{bottom:783.773333pt;}
.y28_c00196{bottom:784.360000pt;}
.y2a_c00196{bottom:784.560000pt;}
.y29_c00196{bottom:784.733333pt;}
.y2b_c00196{bottom:785.306667pt;}
.y24_c00196{bottom:799.773333pt;}
.y25_c00196{bottom:801.106667pt;}
.y23_c00196{bottom:801.693333pt;}
.y21_c00196{bottom:818.440000pt;}
.y22_c00196{bottom:819.226667pt;}
.y20_c00196{bottom:820.360000pt;}
.y1e_c00196{bottom:835.773333pt;}
.y1f_c00196{bottom:836.560000pt;}
.y1c_c00196{bottom:837.693333pt;}
.y1d_c00196{bottom:837.706667pt;}
.y19_c00196{bottom:853.106667pt;}
.y1a_c00196{bottom:855.026667pt;}
.y1b_c00196{bottom:855.226667pt;}
.y16_c00196{bottom:870.066667pt;}
.y17_c00196{bottom:871.400000pt;}
.y15_c00196{bottom:872.360000pt;}
.y18_c00196{bottom:873.306667pt;}
.y14_c00196{bottom:887.773333pt;}
.y12_c00196{bottom:889.693333pt;}
.y13_c00196{bottom:889.893333pt;}
.y10_c00196{bottom:905.106667pt;}
.y11_c00196{bottom:906.066667pt;}
.yf_c00196{bottom:907.026667pt;}
.ye_c00196{bottom:921.693333pt;}
.yb_c00196{bottom:923.773333pt;}
.yc_c00196{bottom:924.560000pt;}
.yd_c00196{bottom:924.733333pt;}
.y9_c00196{bottom:925.693333pt;}
.ya_c00196{bottom:925.706667pt;}
.y7_c00196{bottom:940.733333pt;}
.y6_c00196{bottom:941.106667pt;}
.y4_c00196{bottom:941.893333pt;}
.y3_c00196{bottom:943.026667pt;}
.y5_c00196{bottom:943.040000pt;}
.y8_c00196{bottom:943.973333pt;}
.y1_c00196{bottom:975.773333pt;}
.y2_c00196{bottom:976.560000pt;}
.h4_c00196{height:3.739141pt;}
.h7_c00196{height:14.890964pt;}
.h2_c00196{height:20.466875pt;}
.h8_c00196{height:22.303646pt;}
.h6_c00196{height:27.879557pt;}
.h3_c00196{height:31.618698pt;}
.h9_c00196{height:34.706224pt;}
.h5_c00196{height:35.357839pt;}
.h1_c00196{height:39.031380pt;}
.h0_c00196{height:1186.666667pt;}
.w0_c00196{width:782.666667pt;}
.x0_c00196{left:0.000000pt;}
.x18_c00196{left:134.666667pt;}
.x55_c00196{left:135.626667pt;}
.x71_c00196{left:144.000000pt;}
.x75_c00196{left:148.000000pt;}
.xc_c00196{left:148.960000pt;}
.x3_c00196{left:150.666667pt;}
.xea_c00196{left:152.373333pt;}
.x2b_c00196{left:153.706667pt;}
.x92_c00196{left:159.626667pt;}
.xdb_c00196{left:160.960000pt;}
.x76_c00196{left:161.906667pt;}
.x4c_c00196{left:164.000000pt;}
.xa8_c00196{left:164.960000pt;}
.xa2_c00196{left:167.040000pt;}
.xe5_c00196{left:168.000000pt;}
.xba_c00196{left:169.333333pt;}
.xb2_c00196{left:171.626667pt;}
.xe0_c00196{left:173.333333pt;}
.x72_c00196{left:175.626667pt;}
.x56_c00196{left:177.333333pt;}
.xee_c00196{left:179.040000pt;}
.x2c_c00196{left:181.333333pt;}
.xce_c00196{left:183.040000pt;}
.x87_c00196{left:185.333333pt;}
.xc2_c00196{left:186.666667pt;}
.xb3_c00196{left:188.373333pt;}
.xa9_c00196{left:189.333333pt;}
.xa3_c00196{left:192.000000pt;}
.x88_c00196{left:194.666667pt;}
.x21_c00196{left:196.000000pt;}
.x19_c00196{left:196.960000pt;}
.x93_c00196{left:198.666667pt;}
.x41_c00196{left:199.626667pt;}
.x35_c00196{left:202.666667pt;}
.xcf_c00196{left:206.666667pt;}
.x57_c00196{left:208.373333pt;}
.xf8_c00196{left:209.333333pt;}
.x6a_c00196{left:210.293333pt;}
.x61_c00196{left:211.626667pt;}
.xb4_c00196{left:212.960000pt;}
.xd4_c00196{left:215.626667pt;}
.x80_c00196{left:217.333333pt;}
.xc9_c00196{left:219.040000pt;}
.x4_c00196{left:220.000000pt;}
.x8a_c00196{left:221.333333pt;}
.x38_c00196{left:222.666667pt;}
.x22_c00196{left:224.960000pt;}
.xe6_c00196{left:227.040000pt;}
.xef_c00196{left:228.000000pt;}
.xd5_c00196{left:230.666667pt;}
.xd_c00196{left:232.000000pt;}
.x77_c00196{left:234.666667pt;}
.x6b_c00196{left:238.293333pt;}
.x36_c00196{left:240.000000pt;}
.x2d_c00196{left:241.333333pt;}
.x1a_c00196{left:242.666667pt;}
.xb5_c00196{left:243.626667pt;}
.x4d_c00196{left:244.960000pt;}
.x58_c00196{left:246.466667pt;}
.x9a_c00196{left:248.000000pt;}
.xe_c00196{left:249.333333pt;}
.xeb_c00196{left:250.293333pt;}
.x81_c00196{left:252.000000pt;}
.xca_c00196{left:253.706667pt;}
.xe7_c00196{left:258.293333pt;}
.x73_c00196{left:260.373333pt;}
.xbb_c00196{left:261.333333pt;}
.x37_c00196{left:262.666667pt;}
.xd6_c00196{left:264.373333pt;}
.x5_c00196{left:265.333333pt;}
.x62_c00196{left:267.626667pt;}
.x42_c00196{left:272.000000pt;}
.x23_c00196{left:273.333333pt;}
.x2e_c00196{left:274.293333pt;}
.xf6_c00196{left:277.706667pt;}
.x59_c00196{left:279.040000pt;}
.x8b_c00196{left:280.373333pt;}
.xf_c00196{left:281.333333pt;}
.x6_c00196{left:284.960000pt;}
.xde_c00196{left:288.000000pt;}
.x78_c00196{left:289.333333pt;}
.xfb_c00196{left:290.293333pt;}
.x94_c00196{left:292.000000pt;}
.x2f_c00196{left:294.666667pt;}
.x89_c00196{left:297.333333pt;}
.x8c_c00196{left:298.293333pt;}
.x9e_c00196{left:300.000000pt;}
.x4e_c00196{left:301.706667pt;}
.x43_c00196{left:304.373333pt;}
.x39_c00196{left:305.333333pt;}
.x7_c00196{left:306.293333pt;}
.xfc_c00196{left:308.000000pt;}
.xcb_c00196{left:312.000000pt;}
.x95_c00196{left:316.000000pt;}
.xa4_c00196{left:317.706667pt;}
.x74_c00196{left:318.666667pt;}
.x63_c00196{left:320.000000pt;}
.xe1_c00196{left:322.293333pt;}
.x3a_c00196{left:324.000000pt;}
.x4f_c00196{left:325.333333pt;}
.x24_c00196{left:329.333333pt;}
.x10_c00196{left:332.000000pt;}
.xd7_c00196{left:334.293333pt;}
.x8d_c00196{left:336.960000pt;}
.xd0_c00196{left:338.293333pt;}
.x79_c00196{left:340.000000pt;}
.x1b_c00196{left:341.706667pt;}
.xed_c00196{left:343.040000pt;}
.xb6_c00196{left:345.706667pt;}
.x25_c00196{left:347.040000pt;}
.x82_c00196{left:348.000000pt;}
.x7a_c00196{left:349.333333pt;}
.x64_c00196{left:352.000000pt;}
.x2_c00196{left:353.333333pt;}
.x5a_c00196{left:355.240000pt;}
.xd1_c00196{left:356.373333pt;}
.x96_c00196{left:357.706667pt;}
.xbc_c00196{left:360.000000pt;}
.x11_c00196{left:361.333333pt;}
.x8_c00196{left:363.626667pt;}
.x44_c00196{left:365.333333pt;}
.x1c_c00196{left:368.373333pt;}
.x30_c00196{left:369.706667pt;}
.x50_c00196{left:371.040000pt;}
.xe2_c00196{left:372.000000pt;}
.x6c_c00196{left:373.706667pt;}
.xcc_c00196{left:374.666667pt;}
.x12_c00196{left:376.000000pt;}
.xc3_c00196{left:377.333333pt;}
.x9b_c00196{left:378.666667pt;}
.x8e_c00196{left:380.000000pt;}
.x45_c00196{left:381.333333pt;}
.xdc_c00196{left:382.293333pt;}
.x26_c00196{left:385.333333pt;}
.xe8_c00196{left:387.040000pt;}
.x7b_c00196{left:388.960000pt;}
.xec_c00196{left:390.666667pt;}
.x97_c00196{left:396.000000pt;}
.x6d_c00196{left:396.960000pt;}
.x46_c00196{left:400.000000pt;}
.x3b_c00196{left:401.333333pt;}
.x65_c00196{left:402.293333pt;}
.x51_c00196{left:403.626667pt;}
.x5b_c00196{left:404.960000pt;}
.xf3_c00196{left:406.666667pt;}
.x9c_c00196{left:407.626667pt;}
.xa5_c00196{left:408.960000pt;}
.xf0_c00196{left:410.666667pt;}
.x13_c00196{left:414.093333pt;}
.xc4_c00196{left:416.000000pt;}
.xe3_c00196{left:421.706667pt;}
.xd8_c00196{left:422.666667pt;}
.x7c_c00196{left:424.960000pt;}
.x1d_c00196{left:428.373333pt;}
.x47_c00196{left:429.333333pt;}
.x3c_c00196{left:431.040000pt;}
.x6e_c00196{left:433.333333pt;}
.xe9_c00196{left:435.040000pt;}
.x5c_c00196{left:437.333333pt;}
.xa6_c00196{left:440.960000pt;}
.x9_c00196{left:442.666667pt;}
.x66_c00196{left:444.373333pt;}
.x7d_c00196{left:446.293333pt;}
.xb7_c00196{left:448.373333pt;}
.x27_c00196{left:452.000000pt;}
.xf9_c00196{left:455.626667pt;}
.x98_c00196{left:457.906667pt;}
.xf1_c00196{left:459.626667pt;}
.x3d_c00196{left:461.333333pt;}
.x83_c00196{left:464.373333pt;}
.xbd_c00196{left:466.666667pt;}
.xad_c00196{left:468.000000pt;}
.x48_c00196{left:469.706667pt;}
.x9d_c00196{left:470.666667pt;}
.xa_c00196{left:471.626667pt;}
.xaa_c00196{left:475.626667pt;}
.x67_c00196{left:477.333333pt;}
.x84_c00196{left:478.293333pt;}
.x28_c00196{left:481.333333pt;}
.xae_c00196{left:482.666667pt;}
.x8f_c00196{left:484.000000pt;}
.x7e_c00196{left:485.333333pt;}
.x31_c00196{left:488.960000pt;}
.xfd_c00196{left:490.293333pt;}
.x1e_c00196{left:492.000000pt;}
.x9f_c00196{left:492.960000pt;}
.x49_c00196{left:494.666667pt;}
.x14_c00196{left:497.333333pt;}
.xe4_c00196{left:500.960000pt;}
.xbe_c00196{left:504.000000pt;}
.xab_c00196{left:508.000000pt;}
.x6f_c00196{left:509.333333pt;}
.x68_c00196{left:512.000000pt;}
.x5d_c00196{left:516.000000pt;}
.x32_c00196{left:518.666667pt;}
.x15_c00196{left:520.000000pt;}
.x52_c00196{left:524.960000pt;}
.x5e_c00196{left:526.666667pt;}
.xdd_c00196{left:527.626667pt;}
.xf4_c00196{left:529.333333pt;}
.x3e_c00196{left:532.373333pt;}
.x4a_c00196{left:533.706667pt;}
.xc5_c00196{left:534.666667pt;}
.x7f_c00196{left:536.000000pt;}
.x29_c00196{left:541.333333pt;}
.xdf_c00196{left:544.000000pt;}
.xa7_c00196{left:545.333333pt;}
.x85_c00196{left:547.626667pt;}
.xbf_c00196{left:549.333333pt;}
.xc6_c00196{left:553.706667pt;}
.xaf_c00196{left:554.666667pt;}
.x90_c00196{left:555.626667pt;}
.xa0_c00196{left:557.333333pt;}
.x69_c00196{left:558.666667pt;}
.xb_c00196{left:560.000000pt;}
.x16_c00196{left:562.293333pt;}
.x5f_c00196{left:563.800000pt;}
.x1f_c00196{left:564.960000pt;}
.x3f_c00196{left:566.293333pt;}
.x53_c00196{left:569.133333pt;}
.xd9_c00196{left:571.626667pt;}
.xd2_c00196{left:572.960000pt;}
.xcd_c00196{left:574.666667pt;}
.x70_c00196{left:577.333333pt;}
.xc7_c00196{left:578.666667pt;}
.x86_c00196{left:580.960000pt;}
.xb8_c00196{left:585.706667pt;}
.xac_c00196{left:586.666667pt;}
.xa1_c00196{left:588.000000pt;}
.xd3_c00196{left:588.960000pt;}
.x33_c00196{left:592.000000pt;}
.xfa_c00196{left:593.706667pt;}
.xf7_c00196{left:596.000000pt;}
.xc0_c00196{left:597.706667pt;}
.xb0_c00196{left:598.666667pt;}
.x54_c00196{left:600.760000pt;}
.x60_c00196{left:602.666667pt;}
.x4b_c00196{left:604.960000pt;}
.x2a_c00196{left:609.333333pt;}
.x99_c00196{left:610.666667pt;}
.xc8_c00196{left:612.000000pt;}
.x34_c00196{left:614.293333pt;}
.xf5_c00196{left:616.000000pt;}
.x17_c00196{left:617.706667pt;}
.x91_c00196{left:622.666667pt;}
.x20_c00196{left:623.626667pt;}
.x1_c00196{left:626.466667pt;}
.xda_c00196{left:628.373333pt;}
.xc1_c00196{left:629.706667pt;}
.x40_c00196{left:630.666667pt;}
.xb1_c00196{left:633.333333pt;}
.xf2_c00196{left:637.333333pt;}
.xb9_c00196{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4075cc4f0611d09c12ffdbc.woff2')format("woff");}.ff1_c00197{font-family:ff1_c00197;line-height:1.688965;font-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_c00197{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00197{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m8e_c00197{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m62_c00197{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m8c_c00197{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00197{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m74_c00197{transform:matrix(0.388767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388767,0.000000,0.000000,0.250000,0,0);}
.me_c00197{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m64_c00197{transform:matrix(0.403989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403989,0.000000,0.000000,0.250000,0,0);}
.m31_c00197{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m57_c00197{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m6e_c00197{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m15_c00197{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m72_c00197{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m30_c00197{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.m19_c00197{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m75_c00197{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m2a_c00197{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.md_c00197{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.ma_c00197{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m35_c00197{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m33_c00197{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m2d_c00197{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m39_c00197{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m24_c00197{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.ma3_c00197{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m1c_c00197{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m46_c00197{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m88_c00197{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m5_c00197{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m8b_c00197{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_c00197{transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);}
.m78_c00197{transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);}
.m48_c00197{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m73_c00197{transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);}
.m1e_c00197{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m44_c00197{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m0_c00197{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m79_c00197{transform:matrix(0.454327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454327,0.000000,0.000000,0.250000,0,0);}
.m59_c00197{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m7c_c00197{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mb0_c00197{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.m3f_c00197{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m7f_c00197{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m4f_c00197{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.ma2_c00197{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.mac_c00197{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.m11_c00197{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.ma6_c00197{transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);}
.m53_c00197{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m9d_c00197{transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);}
.m2e_c00197{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m7a_c00197{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m66_c00197{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m86_c00197{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m38_c00197{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m49_c00197{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m6a_c00197{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);}
.m82_c00197{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m23_c00197{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m3e_c00197{transform:matrix(0.492115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492115,0.000000,0.000000,0.250000,0,0);}
.m10_c00197{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mb3_c00197{transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);}
.ma5_c00197{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.m27_c00197{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m2b_c00197{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m8_c00197{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00197{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mc_c00197{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m6f_c00197{transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);}
.m29_c00197{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m61_c00197{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.m16_c00197{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m4b_c00197{transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);}
.m6d_c00197{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m3b_c00197{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m1f_c00197{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m54_c00197{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m42_c00197{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m51_c00197{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m80_c00197{transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);}
.m47_c00197{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m21_c00197{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m8f_c00197{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m71_c00197{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.m4c_c00197{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m55_c00197{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m34_c00197{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m65_c00197{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);}
.m70_c00197{transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);}
.m1b_c00197{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m40_c00197{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.mab_c00197{transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);}
.m28_c00197{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m50_c00197{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m22_c00197{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m17_c00197{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m3d_c00197{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m9a_c00197{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m2c_c00197{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m5d_c00197{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m20_c00197{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m14_c00197{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m5e_c00197{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m37_c00197{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m58_c00197{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m84_c00197{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m3_c00197{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.ma8_c00197{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m2_c00197{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m6_c00197{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m3c_c00197{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m5b_c00197{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.ma1_c00197{transform:matrix(0.572115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572115,0.000000,0.000000,0.250000,0,0);}
.mf_c00197{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mb_c00197{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m77_c00197{transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);}
.m43_c00197{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m91_c00197{transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);}
.m8a_c00197{transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);}
.m2f_c00197{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m52_c00197{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m63_c00197{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m4_c00197{transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);}
.m6c_c00197{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m32_c00197{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m12_c00197{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m1_c00197{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m26_c00197{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.m5a_c00197{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m95_c00197{transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);}
.m4d_c00197{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m3a_c00197{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m76_c00197{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.ma7_c00197{transform:matrix(0.614583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614583,0.000000,0.000000,0.250000,0,0);}
.m36_c00197{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m68_c00197{transform:matrix(0.616176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616176,0.000000,0.000000,0.250000,0,0);}
.m5f_c00197{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m9e_c00197{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m90_c00197{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m25_c00197{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m18_c00197{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m7d_c00197{transform:matrix(0.649780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649780,0.000000,0.000000,0.250000,0,0);}
.m83_c00197{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m87_c00197{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.ma0_c00197{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.m81_c00197{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.maa_c00197{transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);}
.m5c_c00197{transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);}
.m7b_c00197{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.maf_c00197{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m69_c00197{transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);}
.m93_c00197{transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);}
.m9b_c00197{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.mad_c00197{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m67_c00197{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m8d_c00197{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m6b_c00197{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m60_c00197{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);}
.m45_c00197{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m4e_c00197{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m89_c00197{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.ma9_c00197{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.ma4_c00197{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.m7e_c00197{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m13_c00197{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mae_c00197{transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);}
.m1d_c00197{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m99_c00197{transform:matrix(0.786344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786344,0.000000,0.000000,0.250000,0,0);}
.m98_c00197{transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);}
.m85_c00197{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m1a_c00197{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m94_c00197{transform:matrix(0.807269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807269,0.000000,0.000000,0.250000,0,0);}
.m92_c00197{transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);}
.m9f_c00197{transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);}
.m41_c00197{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m96_c00197{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mb2_c00197{transform:matrix(0.878319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.878319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.878319,0.000000,0.000000,0.250000,0,0);}
.m97_c00197{transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);}
.m9c_c00197{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.v1_c00197{vertical-align:-6.000000px;}
.v0_c00197{vertical-align:0.000000px;}
.v2_c00197{vertical-align:6.000000px;}
.ls1_c00197{letter-spacing:0.000000px;}
.ls0_c00197{letter-spacing:44.811895px;}
.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;}
}
.wsb_c00197{word-spacing:-52.765975px;}
.wsf_c00197{word-spacing:-46.217898px;}
.ws2_c00197{word-spacing:-8.058667px;}
.ws0_c00197{word-spacing:-3.584672px;}
.ws1_c00197{word-spacing:-0.768703px;}
.ws18_c00197{word-spacing:0.000000px;}
.ws5_c00197{word-spacing:11.059855px;}
.ws8_c00197{word-spacing:13.611988px;}
.ws11_c00197{word-spacing:17.262919px;}
.ws14_c00197{word-spacing:18.138913px;}
.ws10_c00197{word-spacing:19.417982px;}
.ws16_c00197{word-spacing:20.014946px;}
.wsc_c00197{word-spacing:23.767013px;}
.ws17_c00197{word-spacing:30.234255px;}
.ws13_c00197{word-spacing:30.607622px;}
.ws15_c00197{word-spacing:31.025931px;}
.ws6_c00197{word-spacing:36.857815px;}
.ws9_c00197{word-spacing:38.324009px;}
.wsd_c00197{word-spacing:38.705522px;}
.ws12_c00197{word-spacing:39.052735px;}
.wse_c00197{word-spacing:40.994598px;}
.ws4_c00197{word-spacing:42.893943px;}
.ws3_c00197{word-spacing:47.719225px;}
.wsa_c00197{word-spacing:50.536594px;}
.ws7_c00197{word-spacing:57.204655px;}
._3_c00197{margin-left:-44.811895px;}
._4_c00197{width:27.969026px;}
._2_c00197{width:48.948678px;}
._0_c00197{width:51.359972px;}
._1_c00197{width:59.631031px;}
.fc0_c00197{color:transparent;}
.fs7_c00197{font-size:3.420000px;}
.fs9_c00197{font-size:6.780000px;}
.fs8_c00197{font-size:11.880000px;}
.fs6_c00197{font-size:13.620000px;}
.fs4_c00197{font-size:18.720000px;}
.fs1_c00197{font-size:20.400000px;}
.fs5_c00197{font-size:25.500000px;}
.fs0_c00197{font-size:28.920000px;}
.fs3_c00197{font-size:32.340000px;}
.fs2_c00197{font-size:35.700000px;}
.y0_c00197{bottom:0.000000px;}
.yc5_c00197{bottom:245.130000px;}
.yc6_c00197{bottom:246.195000px;}
.yc7_c00197{bottom:246.630000px;}
.yc9_c00197{bottom:249.630000px;}
.yca_c00197{bottom:250.920000px;}
.yc8_c00197{bottom:252.420000px;}
.yc1_c00197{bottom:257.355000px;}
.ybe_c00197{bottom:258.195000px;}
.ybf_c00197{bottom:259.275000px;}
.ybd_c00197{bottom:261.195000px;}
.yc0_c00197{bottom:261.420000px;}
.yc2_c00197{bottom:263.130000px;}
.yc3_c00197{bottom:264.195000px;}
.yc4_c00197{bottom:264.420000px;}
.yb5_c00197{bottom:271.695000px;}
.yb8_c00197{bottom:272.775000px;}
.yb6_c00197{bottom:274.695000px;}
.yb9_c00197{bottom:274.920000px;}
.ybb_c00197{bottom:276.630000px;}
.yba_c00197{bottom:277.695000px;}
.ybc_c00197{bottom:277.920000px;}
.yb7_c00197{bottom:279.195000px;}
.yb4_c00197{bottom:291.195000px;}
.yb1_c00197{bottom:291.630000px;}
.yb2_c00197{bottom:292.275000px;}
.yb3_c00197{bottom:292.920000px;}
.yaf_c00197{bottom:305.775000px;}
.yae_c00197{bottom:306.195000px;}
.yb0_c00197{bottom:306.420000px;}
.yac_c00197{bottom:318.630000px;}
.yab_c00197{bottom:319.695000px;}
.yaa_c00197{bottom:320.130000px;}
.yad_c00197{bottom:321.420000px;}
.ya9_c00197{bottom:332.130000px;}
.ya4_c00197{bottom:332.550000px;}
.ya7_c00197{bottom:333.195000px;}
.ya6_c00197{bottom:333.630000px;}
.ya5_c00197{bottom:334.695000px;}
.ya8_c00197{bottom:334.920000px;}
.ya1_c00197{bottom:345.630000px;}
.ya2_c00197{bottom:346.695000px;}
.y9f_c00197{bottom:348.195000px;}
.ya3_c00197{bottom:348.420000px;}
.ya0_c00197{bottom:348.630000px;}
.y9e_c00197{bottom:360.195000px;}
.y9d_c00197{bottom:360.630000px;}
.y9a_c00197{bottom:361.050000px;}
.y9c_c00197{bottom:361.920000px;}
.y9b_c00197{bottom:363.195000px;}
.y99_c00197{bottom:373.695000px;}
.y97_c00197{bottom:374.130000px;}
.y98_c00197{bottom:375.420000px;}
.y96_c00197{bottom:375.630000px;}
.y94_c00197{bottom:388.695000px;}
.y95_c00197{bottom:388.920000px;}
.y93_c00197{bottom:389.130000px;}
.y92_c00197{bottom:390.195000px;}
.y8f_c00197{bottom:402.195000px;}
.y91_c00197{bottom:402.420000px;}
.y8e_c00197{bottom:402.630000px;}
.y90_c00197{bottom:403.695000px;}
.y8c_c00197{bottom:415.695000px;}
.y8b_c00197{bottom:416.130000px;}
.y8d_c00197{bottom:417.420000px;}
.y8a_c00197{bottom:428.130000px;}
.y89_c00197{bottom:429.195000px;}
.y87_c00197{bottom:429.630000px;}
.y86_c00197{bottom:430.695000px;}
.y88_c00197{bottom:430.920000px;}
.y85_c00197{bottom:445.695000px;}
.y84_c00197{bottom:456.630000px;}
.y83_c00197{bottom:457.695000px;}
.y82_c00197{bottom:459.195000px;}
.y80_c00197{bottom:470.130000px;}
.y81_c00197{bottom:471.195000px;}
.y7f_c00197{bottom:474.195000px;}
.y7d_c00197{bottom:484.695000px;}
.y7e_c00197{bottom:485.130000px;}
.y7c_c00197{bottom:486.195000px;}
.y7b_c00197{bottom:499.695000px;}
.y7a_c00197{bottom:501.195000px;}
.y79_c00197{bottom:513.195000px;}
.y78_c00197{bottom:513.630000px;}
.y77_c00197{bottom:526.695000px;}
.y76_c00197{bottom:527.130000px;}
.y75_c00197{bottom:528.195000px;}
.y74_c00197{bottom:540.195000px;}
.y73_c00197{bottom:540.630000px;}
.y72_c00197{bottom:541.695000px;}
.y71_c00197{bottom:553.695000px;}
.y70_c00197{bottom:554.130000px;}
.y6f_c00197{bottom:554.550000px;}
.y6e_c00197{bottom:555.630000px;}
.y6d_c00197{bottom:567.195000px;}
.y6c_c00197{bottom:567.630000px;}
.y6b_c00197{bottom:568.695000px;}
.y6a_c00197{bottom:581.130000px;}
.y69_c00197{bottom:582.195000px;}
.y67_c00197{bottom:594.630000px;}
.y65_c00197{bottom:595.050000px;}
.y68_c00197{bottom:595.695000px;}
.y66_c00197{bottom:596.130000px;}
.y64_c00197{bottom:597.195000px;}
.y63_c00197{bottom:609.195000px;}
.y62_c00197{bottom:609.630000px;}
.y61_c00197{bottom:610.695000px;}
.y60_c00197{bottom:622.695000px;}
.y5f_c00197{bottom:623.130000px;}
.y5e_c00197{bottom:624.195000px;}
.y5d_c00197{bottom:636.195000px;}
.y5b_c00197{bottom:637.695000px;}
.y5c_c00197{bottom:638.130000px;}
.y5a_c00197{bottom:649.695000px;}
.y58_c00197{bottom:650.130000px;}
.y59_c00197{bottom:651.195000px;}
.y57_c00197{bottom:651.630000px;}
.y56_c00197{bottom:663.630000px;}
.y55_c00197{bottom:664.695000px;}
.y54_c00197{bottom:666.195000px;}
.y53_c00197{bottom:683.130000px;}
.y52_c00197{bottom:684.195000px;}
.y51_c00197{bottom:695.130000px;}
.y4f_c00197{bottom:696.630000px;}
.y50_c00197{bottom:697.695000px;}
.y4e_c00197{bottom:709.695000px;}
.y4d_c00197{bottom:711.195000px;}
.y4a_c00197{bottom:723.825000px;}
.y4c_c00197{bottom:725.970000px;}
.y4b_c00197{bottom:727.050000px;}
.y48_c00197{bottom:737.970000px;}
.y46_c00197{bottom:739.905000px;}
.y49_c00197{bottom:740.130000px;}
.y45_c00197{bottom:740.970000px;}
.y47_c00197{bottom:742.050000px;}
.y44_c00197{bottom:753.825000px;}
.y43_c00197{bottom:755.970000px;}
.y42_c00197{bottom:757.050000px;}
.y41_c00197{bottom:778.050000px;}
.y3f_c00197{bottom:802.245000px;}
.y40_c00197{bottom:804.405000px;}
.y3d_c00197{bottom:821.745000px;}
.y3e_c00197{bottom:824.130000px;}
.y3c_c00197{bottom:824.970000px;}
.y3b_c00197{bottom:825.405000px;}
.y37_c00197{bottom:843.630000px;}
.y39_c00197{bottom:843.825000px;}
.y38_c00197{bottom:844.905000px;}
.y3a_c00197{bottom:845.970000px;}
.y35_c00197{bottom:862.245000px;}
.y36_c00197{bottom:863.325000px;}
.y34_c00197{bottom:864.405000px;}
.y33_c00197{bottom:881.745000px;}
.y32_c00197{bottom:882.630000px;}
.y30_c00197{bottom:882.825000px;}
.y31_c00197{bottom:883.905000px;}
.y2d_c00197{bottom:901.245000px;}
.y2f_c00197{bottom:902.130000px;}
.y2e_c00197{bottom:902.325000px;}
.y2b_c00197{bottom:902.970000px;}
.y2c_c00197{bottom:903.405000px;}
.y29_c00197{bottom:921.825000px;}
.y28_c00197{bottom:922.905000px;}
.y2a_c00197{bottom:923.130000px;}
.y27_c00197{bottom:940.245000px;}
.y26_c00197{bottom:940.470000px;}
.y25_c00197{bottom:941.745000px;}
.y21_c00197{bottom:942.405000px;}
.y23_c00197{bottom:942.630000px;}
.y24_c00197{bottom:943.470000px;}
.y22_c00197{bottom:943.905000px;}
.y20_c00197{bottom:959.745000px;}
.y1f_c00197{bottom:961.245000px;}
.y1e_c00197{bottom:961.905000px;}
.y1d_c00197{bottom:963.405000px;}
.y19_c00197{bottom:978.405000px;}
.y1b_c00197{bottom:980.325000px;}
.y1a_c00197{bottom:980.745000px;}
.y1c_c00197{bottom:981.630000px;}
.y18_c00197{bottom:982.905000px;}
.y17_c00197{bottom:998.745000px;}
.y10_c00197{bottom:1000.245000px;}
.y16_c00197{bottom:1000.905000px;}
.y15_c00197{bottom:1001.130000px;}
.y14_c00197{bottom:1001.325000px;}
.y12_c00197{bottom:1001.970000px;}
.y13_c00197{bottom:1002.405000px;}
.y11_c00197{bottom:1003.470000px;}
.ye_c00197{bottom:1018.470000px;}
.yd_c00197{bottom:1019.745000px;}
.yf_c00197{bottom:1020.405000px;}
.yb_c00197{bottom:1020.630000px;}
.yc_c00197{bottom:1021.905000px;}
.y9_c00197{bottom:1038.405000px;}
.y8_c00197{bottom:1039.245000px;}
.y6_c00197{bottom:1040.325000px;}
.ya_c00197{bottom:1040.970000px;}
.y5_c00197{bottom:1041.405000px;}
.y7_c00197{bottom:1041.630000px;}
.y4_c00197{bottom:1058.745000px;}
.y3_c00197{bottom:1060.905000px;}
.y2_c00197{bottom:1099.050000px;}
.y1_c00197{bottom:1099.905000px;}
.h9_c00197{height:4.206533px;}
.hb_c00197{height:8.339268px;}
.ha_c00197{height:14.612168px;}
.h7_c00197{height:16.752334px;}
.h8_c00197{height:22.752334px;}
.h5_c00197{height:23.025234px;}
.h2_c00197{height:25.091602px;}
.h6_c00197{height:31.364502px;}
.h1_c00197{height:35.571035px;}
.h4_c00197{height:39.777568px;}
.h3_c00197{height:43.910303px;}
.h0_c00197{height:1335.000000px;}
.w0_c00197{width:880.500000px;}
.x0_c00197{left:0.000000px;}
.x80_c00197{left:153.420000px;}
.x1_c00197{left:154.920000px;}
.x77_c00197{left:169.500000px;}
.x3_c00197{left:170.580000px;}
.x1a_c00197{left:172.500000px;}
.x50_c00197{left:183.000000px;}
.x10_c00197{left:190.500000px;}
.x81_c00197{left:193.500000px;}
.x59_c00197{left:196.500000px;}
.x69_c00197{left:198.000000px;}
.x78_c00197{left:202.080000px;}
.x26_c00197{left:205.500000px;}
.x1b_c00197{left:208.500000px;}
.x3b_c00197{left:210.420000px;}
.x30_c00197{left:211.500000px;}
.x5a_c00197{left:214.500000px;}
.x60_c00197{left:217.920000px;}
.x1c_c00197{left:220.500000px;}
.x4_c00197{left:226.920000px;}
.x11_c00197{left:235.500000px;}
.x51_c00197{left:238.920000px;}
.x74_c00197{left:240.000000px;}
.x61_c00197{left:246.000000px;}
.x3c_c00197{left:249.420000px;}
.x85_c00197{left:250.500000px;}
.x95_c00197{left:252.000000px;}
.x82_c00197{left:253.080000px;}
.x45_c00197{left:256.500000px;}
.x31_c00197{left:259.920000px;}
.x6a_c00197{left:264.000000px;}
.xa7_c00197{left:265.500000px;}
.x52_c00197{left:267.420000px;}
.x5b_c00197{left:271.920000px;}
.x12_c00197{left:273.000000px;}
.x98_c00197{left:274.080000px;}
.x3d_c00197{left:277.920000px;}
.x9f_c00197{left:279.420000px;}
.x46_c00197{left:282.000000px;}
.x6b_c00197{left:283.920000px;}
.x27_c00197{left:285.000000px;}
.x13_c00197{left:286.920000px;}
.x62_c00197{left:289.500000px;}
.xa5_c00197{left:291.000000px;}
.xae_c00197{left:292.080000px;}
.x5_c00197{left:294.000000px;}
.xb7_c00197{left:295.500000px;}
.xb0_c00197{left:297.000000px;}
.x47_c00197{left:300.420000px;}
.xaa_c00197{left:301.500000px;}
.xa6_c00197{left:306.000000px;}
.x86_c00197{left:307.080000px;}
.x53_c00197{left:309.420000px;}
.x6c_c00197{left:310.500000px;}
.xaf_c00197{left:313.080000px;}
.xab_c00197{left:315.000000px;}
.x3e_c00197{left:318.420000px;}
.x32_c00197{left:319.500000px;}
.x6_c00197{left:322.080000px;}
.x28_c00197{left:324.000000px;}
.x75_c00197{left:325.080000px;}
.x87_c00197{left:333.000000px;}
.x1d_c00197{left:337.920000px;}
.x79_c00197{left:339.000000px;}
.xb3_c00197{left:340.920000px;}
.xac_c00197{left:342.000000px;}
.x14_c00197{left:343.500000px;}
.x63_c00197{left:348.000000px;}
.xb4_c00197{left:349.500000px;}
.x7_c00197{left:353.145000px;}
.xad_c00197{left:355.920000px;}
.x5c_c00197{left:357.420000px;}
.x3f_c00197{left:358.500000px;}
.xb2_c00197{left:360.420000px;}
.x33_c00197{left:363.000000px;}
.x88_c00197{left:364.500000px;}
.x54_c00197{left:367.920000px;}
.x8_c00197{left:369.000000px;}
.x8d_c00197{left:370.500000px;}
.x29_c00197{left:373.920000px;}
.x64_c00197{left:375.000000px;}
.x1e_c00197{left:376.920000px;}
.x9_c00197{left:385.500000px;}
.x48_c00197{left:389.580000px;}
.x76_c00197{left:393.420000px;}
.x55_c00197{left:396.420000px;}
.x2_c00197{left:402.000000px;}
.x8e_c00197{left:403.500000px;}
.x2a_c00197{left:411.000000px;}
.x1f_c00197{left:412.500000px;}
.x83_c00197{left:414.000000px;}
.x6d_c00197{left:415.920000px;}
.xa_c00197{left:419.580000px;}
.x96_c00197{left:423.000000px;}
.x49_c00197{left:424.080000px;}
.xb5_c00197{left:426.000000px;}
.xa2_c00197{left:427.500000px;}
.x34_c00197{left:430.500000px;}
.x9b_c00197{left:432.000000px;}
.x40_c00197{left:433.920000px;}
.x65_c00197{left:435.000000px;}
.x20_c00197{left:438.000000px;}
.x2b_c00197{left:439.500000px;}
.x5d_c00197{left:441.420000px;}
.x7a_c00197{left:443.580000px;}
.x35_c00197{left:445.500000px;}
.x6e_c00197{left:448.500000px;}
.x89_c00197{left:454.920000px;}
.x84_c00197{left:457.920000px;}
.x99_c00197{left:459.420000px;}
.x15_c00197{left:460.500000px;}
.x94_c00197{left:461.580000px;}
.x7b_c00197{left:463.500000px;}
.x6f_c00197{left:465.000000px;}
.x4a_c00197{left:466.500000px;}
.x8f_c00197{left:468.000000px;}
.x8a_c00197{left:469.500000px;}
.xb_c00197{left:471.000000px;}
.x5e_c00197{left:478.920000px;}
.x56_c00197{left:481.500000px;}
.x4b_c00197{left:484.920000px;}
.x7c_c00197{left:490.080000px;}
.x21_c00197{left:493.500000px;}
.x9d_c00197{left:499.500000px;}
.x36_c00197{left:501.000000px;}
.x16_c00197{left:502.500000px;}
.x41_c00197{left:504.000000px;}
.x97_c00197{left:505.500000px;}
.xb1_c00197{left:507.000000px;}
.xa8_c00197{left:508.500000px;}
.x66_c00197{left:511.500000px;}
.xc_c00197{left:513.000000px;}
.x2c_c00197{left:514.920000px;}
.x5f_c00197{left:517.500000px;}
.x70_c00197{left:522.000000px;}
.x4c_c00197{left:532.500000px;}
.x9a_c00197{left:535.920000px;}
.xa9_c00197{left:537.000000px;}
.xb6_c00197{left:538.500000px;}
.xa4_c00197{left:540.000000px;}
.x90_c00197{left:541.500000px;}
.x9c_c00197{left:544.500000px;}
.x17_c00197{left:547.080000px;}
.x8b_c00197{left:553.080000px;}
.x2d_c00197{left:555.420000px;}
.x57_c00197{left:558.000000px;}
.x7d_c00197{left:563.580000px;}
.x91_c00197{left:565.920000px;}
.x8c_c00197{left:570.420000px;}
.xa0_c00197{left:571.500000px;}
.xd_c00197{left:573.000000px;}
.x71_c00197{left:576.420000px;}
.x42_c00197{left:577.500000px;}
.x4d_c00197{left:582.420000px;}
.x22_c00197{left:583.920000px;}
.x18_c00197{left:588.000000px;}
.x37_c00197{left:592.920000px;}
.x92_c00197{left:603.000000px;}
.x9e_c00197{left:607.500000px;}
.xa1_c00197{left:609.000000px;}
.x23_c00197{left:610.500000px;}
.xa3_c00197{left:612.000000px;}
.x4e_c00197{left:613.500000px;}
.x93_c00197{left:615.000000px;}
.x58_c00197{left:616.500000px;}
.x38_c00197{left:618.000000px;}
.x67_c00197{left:619.500000px;}
.x43_c00197{left:622.500000px;}
.xe_c00197{left:624.000000px;}
.x7e_c00197{left:634.500000px;}
.x2e_c00197{left:640.500000px;}
.x19_c00197{left:645.420000px;}
.x24_c00197{left:651.000000px;}
.x72_c00197{left:658.920000px;}
.x68_c00197{left:663.000000px;}
.x39_c00197{left:673.080000px;}
.x4f_c00197{left:679.920000px;}
.x73_c00197{left:685.500000px;}
.x44_c00197{left:688.500000px;}
.xf_c00197{left:697.920000px;}
.x25_c00197{left:706.080000px;}
.x3a_c00197{left:709.500000px;}
.x7f_c00197{left:711.000000px;}
.x2f_c00197{left:723.000000px;}
@media print{
.v1_c00197{vertical-align:-5.333333pt;}
.v0_c00197{vertical-align:0.000000pt;}
.v2_c00197{vertical-align:5.333333pt;}
.ls1_c00197{letter-spacing:0.000000pt;}
.ls0_c00197{letter-spacing:39.832796pt;}
.wsb_c00197{word-spacing:-46.903089pt;}
.wsf_c00197{word-spacing:-41.082576pt;}
.ws2_c00197{word-spacing:-7.163259pt;}
.ws0_c00197{word-spacing:-3.186375pt;}
.ws1_c00197{word-spacing:-0.683292pt;}
.ws18_c00197{word-spacing:0.000000pt;}
.ws5_c00197{word-spacing:9.830982pt;}
.ws8_c00197{word-spacing:12.099545pt;}
.ws11_c00197{word-spacing:15.344817pt;}
.ws14_c00197{word-spacing:16.123479pt;}
.ws10_c00197{word-spacing:17.260429pt;}
.ws16_c00197{word-spacing:17.791064pt;}
.wsc_c00197{word-spacing:21.126233pt;}
.ws17_c00197{word-spacing:26.874893pt;}
.ws13_c00197{word-spacing:27.206775pt;}
.ws15_c00197{word-spacing:27.578605pt;}
.ws6_c00197{word-spacing:32.762503pt;}
.ws9_c00197{word-spacing:34.065786pt;}
.wsd_c00197{word-spacing:34.404908pt;}
.ws12_c00197{word-spacing:34.713542pt;}
.wse_c00197{word-spacing:36.439642pt;}
.ws4_c00197{word-spacing:38.127949pt;}
.ws3_c00197{word-spacing:42.417089pt;}
.wsa_c00197{word-spacing:44.921417pt;}
.ws7_c00197{word-spacing:50.848582pt;}
._3_c00197{margin-left:-39.832796pt;}
._4_c00197{width:24.861357pt;}
._2_c00197{width:43.509936pt;}
._0_c00197{width:45.653309pt;}
._1_c00197{width:53.005361pt;}
.fs7_c00197{font-size:3.040000pt;}
.fs9_c00197{font-size:6.026667pt;}
.fs8_c00197{font-size:10.560000pt;}
.fs6_c00197{font-size:12.106667pt;}
.fs4_c00197{font-size:16.640000pt;}
.fs1_c00197{font-size:18.133333pt;}
.fs5_c00197{font-size:22.666667pt;}
.fs0_c00197{font-size:25.706667pt;}
.fs3_c00197{font-size:28.746667pt;}
.fs2_c00197{font-size:31.733333pt;}
.y0_c00197{bottom:0.000000pt;}
.yc5_c00197{bottom:217.893333pt;}
.yc6_c00197{bottom:218.840000pt;}
.yc7_c00197{bottom:219.226667pt;}
.yc9_c00197{bottom:221.893333pt;}
.yca_c00197{bottom:223.040000pt;}
.yc8_c00197{bottom:224.373333pt;}
.yc1_c00197{bottom:228.760000pt;}
.ybe_c00197{bottom:229.506667pt;}
.ybf_c00197{bottom:230.466667pt;}
.ybd_c00197{bottom:232.173333pt;}
.yc0_c00197{bottom:232.373333pt;}
.yc2_c00197{bottom:233.893333pt;}
.yc3_c00197{bottom:234.840000pt;}
.yc4_c00197{bottom:235.040000pt;}
.yb5_c00197{bottom:241.506667pt;}
.yb8_c00197{bottom:242.466667pt;}
.yb6_c00197{bottom:244.173333pt;}
.yb9_c00197{bottom:244.373333pt;}
.ybb_c00197{bottom:245.893333pt;}
.yba_c00197{bottom:246.840000pt;}
.ybc_c00197{bottom:247.040000pt;}
.yb7_c00197{bottom:248.173333pt;}
.yb4_c00197{bottom:258.840000pt;}
.yb1_c00197{bottom:259.226667pt;}
.yb2_c00197{bottom:259.800000pt;}
.yb3_c00197{bottom:260.373333pt;}
.yaf_c00197{bottom:271.800000pt;}
.yae_c00197{bottom:272.173333pt;}
.yb0_c00197{bottom:272.373333pt;}
.yac_c00197{bottom:283.226667pt;}
.yab_c00197{bottom:284.173333pt;}
.yaa_c00197{bottom:284.560000pt;}
.yad_c00197{bottom:285.706667pt;}
.ya9_c00197{bottom:295.226667pt;}
.ya4_c00197{bottom:295.600000pt;}
.ya7_c00197{bottom:296.173333pt;}
.ya6_c00197{bottom:296.560000pt;}
.ya5_c00197{bottom:297.506667pt;}
.ya8_c00197{bottom:297.706667pt;}
.ya1_c00197{bottom:307.226667pt;}
.ya2_c00197{bottom:308.173333pt;}
.y9f_c00197{bottom:309.506667pt;}
.ya3_c00197{bottom:309.706667pt;}
.ya0_c00197{bottom:309.893333pt;}
.y9e_c00197{bottom:320.173333pt;}
.y9d_c00197{bottom:320.560000pt;}
.y9a_c00197{bottom:320.933333pt;}
.y9c_c00197{bottom:321.706667pt;}
.y9b_c00197{bottom:322.840000pt;}
.y99_c00197{bottom:332.173333pt;}
.y97_c00197{bottom:332.560000pt;}
.y98_c00197{bottom:333.706667pt;}
.y96_c00197{bottom:333.893333pt;}
.y94_c00197{bottom:345.506667pt;}
.y95_c00197{bottom:345.706667pt;}
.y93_c00197{bottom:345.893333pt;}
.y92_c00197{bottom:346.840000pt;}
.y8f_c00197{bottom:357.506667pt;}
.y91_c00197{bottom:357.706667pt;}
.y8e_c00197{bottom:357.893333pt;}
.y90_c00197{bottom:358.840000pt;}
.y8c_c00197{bottom:369.506667pt;}
.y8b_c00197{bottom:369.893333pt;}
.y8d_c00197{bottom:371.040000pt;}
.y8a_c00197{bottom:380.560000pt;}
.y89_c00197{bottom:381.506667pt;}
.y87_c00197{bottom:381.893333pt;}
.y86_c00197{bottom:382.840000pt;}
.y88_c00197{bottom:383.040000pt;}
.y85_c00197{bottom:396.173333pt;}
.y84_c00197{bottom:405.893333pt;}
.y83_c00197{bottom:406.840000pt;}
.y82_c00197{bottom:408.173333pt;}
.y80_c00197{bottom:417.893333pt;}
.y81_c00197{bottom:418.840000pt;}
.y7f_c00197{bottom:421.506667pt;}
.y7d_c00197{bottom:430.840000pt;}
.y7e_c00197{bottom:431.226667pt;}
.y7c_c00197{bottom:432.173333pt;}
.y7b_c00197{bottom:444.173333pt;}
.y7a_c00197{bottom:445.506667pt;}
.y79_c00197{bottom:456.173333pt;}
.y78_c00197{bottom:456.560000pt;}
.y77_c00197{bottom:468.173333pt;}
.y76_c00197{bottom:468.560000pt;}
.y75_c00197{bottom:469.506667pt;}
.y74_c00197{bottom:480.173333pt;}
.y73_c00197{bottom:480.560000pt;}
.y72_c00197{bottom:481.506667pt;}
.y71_c00197{bottom:492.173333pt;}
.y70_c00197{bottom:492.560000pt;}
.y6f_c00197{bottom:492.933333pt;}
.y6e_c00197{bottom:493.893333pt;}
.y6d_c00197{bottom:504.173333pt;}
.y6c_c00197{bottom:504.560000pt;}
.y6b_c00197{bottom:505.506667pt;}
.y6a_c00197{bottom:516.560000pt;}
.y69_c00197{bottom:517.506667pt;}
.y67_c00197{bottom:528.560000pt;}
.y65_c00197{bottom:528.933333pt;}
.y68_c00197{bottom:529.506667pt;}
.y66_c00197{bottom:529.893333pt;}
.y64_c00197{bottom:530.840000pt;}
.y63_c00197{bottom:541.506667pt;}
.y62_c00197{bottom:541.893333pt;}
.y61_c00197{bottom:542.840000pt;}
.y60_c00197{bottom:553.506667pt;}
.y5f_c00197{bottom:553.893333pt;}
.y5e_c00197{bottom:554.840000pt;}
.y5d_c00197{bottom:565.506667pt;}
.y5b_c00197{bottom:566.840000pt;}
.y5c_c00197{bottom:567.226667pt;}
.y5a_c00197{bottom:577.506667pt;}
.y58_c00197{bottom:577.893333pt;}
.y59_c00197{bottom:578.840000pt;}
.y57_c00197{bottom:579.226667pt;}
.y56_c00197{bottom:589.893333pt;}
.y55_c00197{bottom:590.840000pt;}
.y54_c00197{bottom:592.173333pt;}
.y53_c00197{bottom:607.226667pt;}
.y52_c00197{bottom:608.173333pt;}
.y51_c00197{bottom:617.893333pt;}
.y4f_c00197{bottom:619.226667pt;}
.y50_c00197{bottom:620.173333pt;}
.y4e_c00197{bottom:630.840000pt;}
.y4d_c00197{bottom:632.173333pt;}
.y4a_c00197{bottom:643.400000pt;}
.y4c_c00197{bottom:645.306667pt;}
.y4b_c00197{bottom:646.266667pt;}
.y48_c00197{bottom:655.973333pt;}
.y46_c00197{bottom:657.693333pt;}
.y49_c00197{bottom:657.893333pt;}
.y45_c00197{bottom:658.640000pt;}
.y47_c00197{bottom:659.600000pt;}
.y44_c00197{bottom:670.066667pt;}
.y43_c00197{bottom:671.973333pt;}
.y42_c00197{bottom:672.933333pt;}
.y41_c00197{bottom:691.600000pt;}
.y3f_c00197{bottom:713.106667pt;}
.y40_c00197{bottom:715.026667pt;}
.y3d_c00197{bottom:730.440000pt;}
.y3e_c00197{bottom:732.560000pt;}
.y3c_c00197{bottom:733.306667pt;}
.y3b_c00197{bottom:733.693333pt;}
.y37_c00197{bottom:749.893333pt;}
.y39_c00197{bottom:750.066667pt;}
.y38_c00197{bottom:751.026667pt;}
.y3a_c00197{bottom:751.973333pt;}
.y35_c00197{bottom:766.440000pt;}
.y36_c00197{bottom:767.400000pt;}
.y34_c00197{bottom:768.360000pt;}
.y33_c00197{bottom:783.773333pt;}
.y32_c00197{bottom:784.560000pt;}
.y30_c00197{bottom:784.733333pt;}
.y31_c00197{bottom:785.693333pt;}
.y2d_c00197{bottom:801.106667pt;}
.y2f_c00197{bottom:801.893333pt;}
.y2e_c00197{bottom:802.066667pt;}
.y2b_c00197{bottom:802.640000pt;}
.y2c_c00197{bottom:803.026667pt;}
.y29_c00197{bottom:819.400000pt;}
.y28_c00197{bottom:820.360000pt;}
.y2a_c00197{bottom:820.560000pt;}
.y27_c00197{bottom:835.773333pt;}
.y26_c00197{bottom:835.973333pt;}
.y25_c00197{bottom:837.106667pt;}
.y21_c00197{bottom:837.693333pt;}
.y23_c00197{bottom:837.893333pt;}
.y24_c00197{bottom:838.640000pt;}
.y22_c00197{bottom:839.026667pt;}
.y20_c00197{bottom:853.106667pt;}
.y1f_c00197{bottom:854.440000pt;}
.y1e_c00197{bottom:855.026667pt;}
.y1d_c00197{bottom:856.360000pt;}
.y19_c00197{bottom:869.693333pt;}
.y1b_c00197{bottom:871.400000pt;}
.y1a_c00197{bottom:871.773333pt;}
.y1c_c00197{bottom:872.560000pt;}
.y18_c00197{bottom:873.693333pt;}
.y17_c00197{bottom:887.773333pt;}
.y10_c00197{bottom:889.106667pt;}
.y16_c00197{bottom:889.693333pt;}
.y15_c00197{bottom:889.893333pt;}
.y14_c00197{bottom:890.066667pt;}
.y12_c00197{bottom:890.640000pt;}
.y13_c00197{bottom:891.026667pt;}
.y11_c00197{bottom:891.973333pt;}
.ye_c00197{bottom:905.306667pt;}
.yd_c00197{bottom:906.440000pt;}
.yf_c00197{bottom:907.026667pt;}
.yb_c00197{bottom:907.226667pt;}
.yc_c00197{bottom:908.360000pt;}
.y9_c00197{bottom:923.026667pt;}
.y8_c00197{bottom:923.773333pt;}
.y6_c00197{bottom:924.733333pt;}
.ya_c00197{bottom:925.306667pt;}
.y5_c00197{bottom:925.693333pt;}
.y7_c00197{bottom:925.893333pt;}
.y4_c00197{bottom:941.106667pt;}
.y3_c00197{bottom:943.026667pt;}
.y2_c00197{bottom:976.933333pt;}
.y1_c00197{bottom:977.693333pt;}
.h9_c00197{height:3.739141pt;}
.hb_c00197{height:7.412682pt;}
.ha_c00197{height:12.988594pt;}
.h7_c00197{height:14.890964pt;}
.h8_c00197{height:20.224297pt;}
.h5_c00197{height:20.466875pt;}
.h2_c00197{height:22.303646pt;}
.h6_c00197{height:27.879557pt;}
.h1_c00197{height:31.618698pt;}
.h4_c00197{height:35.357839pt;}
.h3_c00197{height:39.031380pt;}
.h0_c00197{height:1186.666667pt;}
.w0_c00197{width:782.666667pt;}
.x0_c00197{left:0.000000pt;}
.x80_c00197{left:136.373333pt;}
.x1_c00197{left:137.706667pt;}
.x77_c00197{left:150.666667pt;}
.x3_c00197{left:151.626667pt;}
.x1a_c00197{left:153.333333pt;}
.x50_c00197{left:162.666667pt;}
.x10_c00197{left:169.333333pt;}
.x81_c00197{left:172.000000pt;}
.x59_c00197{left:174.666667pt;}
.x69_c00197{left:176.000000pt;}
.x78_c00197{left:179.626667pt;}
.x26_c00197{left:182.666667pt;}
.x1b_c00197{left:185.333333pt;}
.x3b_c00197{left:187.040000pt;}
.x30_c00197{left:188.000000pt;}
.x5a_c00197{left:190.666667pt;}
.x60_c00197{left:193.706667pt;}
.x1c_c00197{left:196.000000pt;}
.x4_c00197{left:201.706667pt;}
.x11_c00197{left:209.333333pt;}
.x51_c00197{left:212.373333pt;}
.x74_c00197{left:213.333333pt;}
.x61_c00197{left:218.666667pt;}
.x3c_c00197{left:221.706667pt;}
.x85_c00197{left:222.666667pt;}
.x95_c00197{left:224.000000pt;}
.x82_c00197{left:224.960000pt;}
.x45_c00197{left:228.000000pt;}
.x31_c00197{left:231.040000pt;}
.x6a_c00197{left:234.666667pt;}
.xa7_c00197{left:236.000000pt;}
.x52_c00197{left:237.706667pt;}
.x5b_c00197{left:241.706667pt;}
.x12_c00197{left:242.666667pt;}
.x98_c00197{left:243.626667pt;}
.x3d_c00197{left:247.040000pt;}
.x9f_c00197{left:248.373333pt;}
.x46_c00197{left:250.666667pt;}
.x6b_c00197{left:252.373333pt;}
.x27_c00197{left:253.333333pt;}
.x13_c00197{left:255.040000pt;}
.x62_c00197{left:257.333333pt;}
.xa5_c00197{left:258.666667pt;}
.xae_c00197{left:259.626667pt;}
.x5_c00197{left:261.333333pt;}
.xb7_c00197{left:262.666667pt;}
.xb0_c00197{left:264.000000pt;}
.x47_c00197{left:267.040000pt;}
.xaa_c00197{left:268.000000pt;}
.xa6_c00197{left:272.000000pt;}
.x86_c00197{left:272.960000pt;}
.x53_c00197{left:275.040000pt;}
.x6c_c00197{left:276.000000pt;}
.xaf_c00197{left:278.293333pt;}
.xab_c00197{left:280.000000pt;}
.x3e_c00197{left:283.040000pt;}
.x32_c00197{left:284.000000pt;}
.x6_c00197{left:286.293333pt;}
.x28_c00197{left:288.000000pt;}
.x75_c00197{left:288.960000pt;}
.x87_c00197{left:296.000000pt;}
.x1d_c00197{left:300.373333pt;}
.x79_c00197{left:301.333333pt;}
.xb3_c00197{left:303.040000pt;}
.xac_c00197{left:304.000000pt;}
.x14_c00197{left:305.333333pt;}
.x63_c00197{left:309.333333pt;}
.xb4_c00197{left:310.666667pt;}
.x7_c00197{left:313.906667pt;}
.xad_c00197{left:316.373333pt;}
.x5c_c00197{left:317.706667pt;}
.x3f_c00197{left:318.666667pt;}
.xb2_c00197{left:320.373333pt;}
.x33_c00197{left:322.666667pt;}
.x88_c00197{left:324.000000pt;}
.x54_c00197{left:327.040000pt;}
.x8_c00197{left:328.000000pt;}
.x8d_c00197{left:329.333333pt;}
.x29_c00197{left:332.373333pt;}
.x64_c00197{left:333.333333pt;}
.x1e_c00197{left:335.040000pt;}
.x9_c00197{left:342.666667pt;}
.x48_c00197{left:346.293333pt;}
.x76_c00197{left:349.706667pt;}
.x55_c00197{left:352.373333pt;}
.x2_c00197{left:357.333333pt;}
.x8e_c00197{left:358.666667pt;}
.x2a_c00197{left:365.333333pt;}
.x1f_c00197{left:366.666667pt;}
.x83_c00197{left:368.000000pt;}
.x6d_c00197{left:369.706667pt;}
.xa_c00197{left:372.960000pt;}
.x96_c00197{left:376.000000pt;}
.x49_c00197{left:376.960000pt;}
.xb5_c00197{left:378.666667pt;}
.xa2_c00197{left:380.000000pt;}
.x34_c00197{left:382.666667pt;}
.x9b_c00197{left:384.000000pt;}
.x40_c00197{left:385.706667pt;}
.x65_c00197{left:386.666667pt;}
.x20_c00197{left:389.333333pt;}
.x2b_c00197{left:390.666667pt;}
.x5d_c00197{left:392.373333pt;}
.x7a_c00197{left:394.293333pt;}
.x35_c00197{left:396.000000pt;}
.x6e_c00197{left:398.666667pt;}
.x89_c00197{left:404.373333pt;}
.x84_c00197{left:407.040000pt;}
.x99_c00197{left:408.373333pt;}
.x15_c00197{left:409.333333pt;}
.x94_c00197{left:410.293333pt;}
.x7b_c00197{left:412.000000pt;}
.x6f_c00197{left:413.333333pt;}
.x4a_c00197{left:414.666667pt;}
.x8f_c00197{left:416.000000pt;}
.x8a_c00197{left:417.333333pt;}
.xb_c00197{left:418.666667pt;}
.x5e_c00197{left:425.706667pt;}
.x56_c00197{left:428.000000pt;}
.x4b_c00197{left:431.040000pt;}
.x7c_c00197{left:435.626667pt;}
.x21_c00197{left:438.666667pt;}
.x9d_c00197{left:444.000000pt;}
.x36_c00197{left:445.333333pt;}
.x16_c00197{left:446.666667pt;}
.x41_c00197{left:448.000000pt;}
.x97_c00197{left:449.333333pt;}
.xb1_c00197{left:450.666667pt;}
.xa8_c00197{left:452.000000pt;}
.x66_c00197{left:454.666667pt;}
.xc_c00197{left:456.000000pt;}
.x2c_c00197{left:457.706667pt;}
.x5f_c00197{left:460.000000pt;}
.x70_c00197{left:464.000000pt;}
.x4c_c00197{left:473.333333pt;}
.x9a_c00197{left:476.373333pt;}
.xa9_c00197{left:477.333333pt;}
.xb6_c00197{left:478.666667pt;}
.xa4_c00197{left:480.000000pt;}
.x90_c00197{left:481.333333pt;}
.x9c_c00197{left:484.000000pt;}
.x17_c00197{left:486.293333pt;}
.x8b_c00197{left:491.626667pt;}
.x2d_c00197{left:493.706667pt;}
.x57_c00197{left:496.000000pt;}
.x7d_c00197{left:500.960000pt;}
.x91_c00197{left:503.040000pt;}
.x8c_c00197{left:507.040000pt;}
.xa0_c00197{left:508.000000pt;}
.xd_c00197{left:509.333333pt;}
.x71_c00197{left:512.373333pt;}
.x42_c00197{left:513.333333pt;}
.x4d_c00197{left:517.706667pt;}
.x22_c00197{left:519.040000pt;}
.x18_c00197{left:522.666667pt;}
.x37_c00197{left:527.040000pt;}
.x92_c00197{left:536.000000pt;}
.x9e_c00197{left:540.000000pt;}
.xa1_c00197{left:541.333333pt;}
.x23_c00197{left:542.666667pt;}
.xa3_c00197{left:544.000000pt;}
.x4e_c00197{left:545.333333pt;}
.x93_c00197{left:546.666667pt;}
.x58_c00197{left:548.000000pt;}
.x38_c00197{left:549.333333pt;}
.x67_c00197{left:550.666667pt;}
.x43_c00197{left:553.333333pt;}
.xe_c00197{left:554.666667pt;}
.x7e_c00197{left:564.000000pt;}
.x2e_c00197{left:569.333333pt;}
.x19_c00197{left:573.706667pt;}
.x24_c00197{left:578.666667pt;}
.x72_c00197{left:585.706667pt;}
.x68_c00197{left:589.333333pt;}
.x39_c00197{left:598.293333pt;}
.x4f_c00197{left:604.373333pt;}
.x73_c00197{left:609.333333pt;}
.x44_c00197{left:612.000000pt;}
.xf_c00197{left:620.373333pt;}
.x25_c00197{left:627.626667pt;}
.x3a_c00197{left:630.666667pt;}
.x7f_c00197{left:632.000000pt;}
.x2f_c00197{left:642.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_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_61703015fbfabc8285cfde5a.woff2')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mad_c00198{transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);}
.mb1_c00198{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m0_c00198{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m1b_c00198{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m71_c00198{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00198{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m7_c00198{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mab_c00198{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.mbf_c00198{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m51_c00198{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.mc5_c00198{transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);}
.m7f_c00198{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.mcf_c00198{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.mb0_c00198{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mc4_c00198{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);}
.m45_c00198{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m44_c00198{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mbc_c00198{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m87_c00198{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m58_c00198{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m98_c00198{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.ma5_c00198{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m19_c00198{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m13_c00198{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m99_c00198{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m46_c00198{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m18_c00198{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m8f_c00198{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m70_c00198{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m79_c00198{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m8e_c00198{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m50_c00198{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m6b_c00198{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m4d_c00198{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m68_c00198{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m3a_c00198{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m32_c00198{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m88_c00198{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m49_c00198{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.me_c00198{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.mb6_c00198{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.ma_c00198{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m81_c00198{transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);}
.m93_c00198{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m52_c00198{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mac_c00198{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.mc2_c00198{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m4f_c00198{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.mc7_c00198{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m55_c00198{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m84_c00198{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m39_c00198{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m8a_c00198{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.mb3_c00198{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.mce_c00198{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.mb7_c00198{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.ma2_c00198{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m5e_c00198{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m2b_c00198{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m82_c00198{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m15_c00198{transform:matrix(0.449907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449907,0.000000,0.000000,0.250000,0,0);}
.m83_c00198{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m40_c00198{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m28_c00198{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.mc8_c00198{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.ma7_c00198{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m80_c00198{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m64_c00198{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m9e_c00198{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m95_c00198{transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);}
.mcc_c00198{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m4a_c00198{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m86_c00198{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.m72_c00198{transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);}
.m9c_c00198{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m31_c00198{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m4e_c00198{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mc1_c00198{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m48_c00198{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.m1c_c00198{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.ma4_c00198{transform:matrix(0.482773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482773,0.000000,0.000000,0.250000,0,0);}
.m53_c00198{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.ma8_c00198{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m73_c00198{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m2c_c00198{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m14_c00198{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mba_c00198{transform:matrix(0.486134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486134,0.000000,0.000000,0.250000,0,0);}
.maf_c00198{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m67_c00198{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m35_c00198{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.ma0_c00198{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m6d_c00198{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m7b_c00198{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m1a_c00198{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_c00198{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m6f_c00198{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m5f_c00198{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m22_c00198{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m8c_c00198{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m65_c00198{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m6c_c00198{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.mb_c00198{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m1d_c00198{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m96_c00198{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m94_c00198{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m21_c00198{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m74_c00198{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m8b_c00198{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m2_c00198{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mb9_c00198{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m62_c00198{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m91_c00198{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m89_c00198{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mcd_c00198{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m3c_c00198{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mb4_c00198{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m5_c00198{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m20_c00198{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m90_c00198{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m47_c00198{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m17_c00198{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mb5_c00198{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.ma1_c00198{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m6_c00198{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m4_c00198{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m97_c00198{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m10_c00198{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m27_c00198{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m76_c00198{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m77_c00198{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m34_c00198{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m61_c00198{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m69_c00198{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m7d_c00198{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m5b_c00198{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.ma6_c00198{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m7c_c00198{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m6e_c00198{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m63_c00198{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m9d_c00198{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m57_c00198{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m92_c00198{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mbe_c00198{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m5d_c00198{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m41_c00198{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mc6_c00198{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m9a_c00198{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mbd_c00198{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m3b_c00198{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.md_c00198{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m42_c00198{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mbb_c00198{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mc3_c00198{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m2e_c00198{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m4c_c00198{transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);}
.m2a_c00198{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.maa_c00198{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m7a_c00198{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m75_c00198{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m6a_c00198{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.ma9_c00198{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m78_c00198{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m60_c00198{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m9f_c00198{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m2d_c00198{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m43_c00198{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m33_c00198{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m9b_c00198{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.mc9_c00198{transform:matrix(0.597756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597756,0.000000,0.000000,0.250000,0,0);}
.mc_c00198{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mf_c00198{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.ma3_c00198{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.m54_c00198{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mcb_c00198{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.mc0_c00198{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.mb8_c00198{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m8d_c00198{transform:matrix(0.612552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612552,0.000000,0.000000,0.250000,0,0);}
.m25_c00198{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mae_c00198{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m16_c00198{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m23_c00198{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.m36_c00198{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);}
.m5c_c00198{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m29_c00198{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.m85_c00198{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.m66_c00198{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m26_c00198{transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);}
.m9_c00198{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m1e_c00198{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m1f_c00198{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m1_c00198{transform:matrix(0.681891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681891,0.000000,0.000000,0.250000,0,0);}
.m5a_c00198{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m38_c00198{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m30_c00198{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m37_c00198{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m56_c00198{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m4b_c00198{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m24_c00198{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m11_c00198{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mb2_c00198{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m3d_c00198{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m8_c00198{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m3f_c00198{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mca_c00198{transform:matrix(0.808088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.808088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.808088,0.000000,0.000000,0.250000,0,0);}
.m3e_c00198{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m12_c00198{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m7e_c00198{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m3_c00198{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00198{vertical-align:-6.000000px;}
.v0_c00198{vertical-align:0.000000px;}
.v2_c00198{vertical-align:6.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;}
}
.ws3_c00198{word-spacing:-8.811328px;}
.ws1_c00198{word-spacing:-7.561700px;}
.ws0_c00198{word-spacing:-5.390467px;}
.ws4_c00198{word-spacing:0.000000px;}
.ws2_c00198{word-spacing:0.541655px;}
.fc0_c00198{color:transparent;}
.fs3_c00198{font-size:3.420000px;}
.fs1_c00198{font-size:18.720000px;}
.fs6_c00198{font-size:20.400000px;}
.fs4_c00198{font-size:25.500000px;}
.fs2_c00198{font-size:28.920000px;}
.fs5_c00198{font-size:32.340000px;}
.fs0_c00198{font-size:35.700000px;}
.fs7_c00198{font-size:39.120000px;}
.y0_c00198{bottom:0.000000px;}
.ya9_c00198{bottom:250.050000px;}
.ya8_c00198{bottom:250.245000px;}
.ya7_c00198{bottom:268.905000px;}
.ya6_c00198{bottom:269.745000px;}
.ya5_c00198{bottom:271.905000px;}
.ya1_c00198{bottom:288.405000px;}
.ya3_c00198{bottom:289.245000px;}
.ya2_c00198{bottom:290.130000px;}
.y9f_c00198{bottom:290.550000px;}
.ya4_c00198{bottom:290.970000px;}
.ya0_c00198{bottom:291.405000px;}
.y9c_c00198{bottom:319.245000px;}
.y9d_c00198{bottom:320.970000px;}
.y9e_c00198{bottom:321.405000px;}
.y9b_c00198{bottom:360.405000px;}
.y9a_c00198{bottom:361.905000px;}
.y98_c00198{bottom:377.745000px;}
.y95_c00198{bottom:379.245000px;}
.y97_c00198{bottom:379.905000px;}
.y99_c00198{bottom:380.130000px;}
.y96_c00198{bottom:381.405000px;}
.y93_c00198{bottom:397.245000px;}
.y92_c00198{bottom:398.745000px;}
.y94_c00198{bottom:399.405000px;}
.y91_c00198{bottom:400.905000px;}
.y8d_c00198{bottom:416.745000px;}
.y8e_c00198{bottom:418.245000px;}
.y90_c00198{bottom:418.905000px;}
.y8f_c00198{bottom:419.130000px;}
.y8c_c00198{bottom:420.405000px;}
.y8b_c00198{bottom:435.405000px;}
.y88_c00198{bottom:437.745000px;}
.y89_c00198{bottom:438.630000px;}
.y8a_c00198{bottom:439.905000px;}
.y86_c00198{bottom:454.905000px;}
.y83_c00198{bottom:455.970000px;}
.y81_c00198{bottom:457.245000px;}
.y82_c00198{bottom:457.470000px;}
.y87_c00198{bottom:458.130000px;}
.y84_c00198{bottom:458.325000px;}
.y85_c00198{bottom:459.405000px;}
.y80_c00198{bottom:460.470000px;}
.y7f_c00198{bottom:476.745000px;}
.y7d_c00198{bottom:477.825000px;}
.y7c_c00198{bottom:478.905000px;}
.y7e_c00198{bottom:479.130000px;}
.y79_c00198{bottom:496.245000px;}
.y7a_c00198{bottom:496.680000px;}
.y76_c00198{bottom:497.745000px;}
.y77_c00198{bottom:498.405000px;}
.y7b_c00198{bottom:498.630000px;}
.y78_c00198{bottom:499.470000px;}
.y74_c00198{bottom:515.745000px;}
.y75_c00198{bottom:516.825000px;}
.y70_c00198{bottom:517.245000px;}
.y72_c00198{bottom:517.905000px;}
.y73_c00198{bottom:518.970000px;}
.y71_c00198{bottom:519.405000px;}
.y6d_c00198{bottom:536.745000px;}
.y6e_c00198{bottom:537.405000px;}
.y6f_c00198{bottom:537.630000px;}
.y6b_c00198{bottom:537.825000px;}
.y6c_c00198{bottom:538.470000px;}
.y6a_c00198{bottom:538.905000px;}
.y69_c00198{bottom:556.245000px;}
.y68_c00198{bottom:558.405000px;}
.y65_c00198{bottom:575.745000px;}
.y67_c00198{bottom:576.630000px;}
.y66_c00198{bottom:576.825000px;}
.y64_c00198{bottom:577.905000px;}
.y62_c00198{bottom:595.245000px;}
.y61_c00198{bottom:597.405000px;}
.y63_c00198{bottom:597.630000px;}
.y60_c00198{bottom:627.405000px;}
.y5e_c00198{bottom:662.745000px;}
.y5d_c00198{bottom:664.245000px;}
.y5c_c00198{bottom:666.405000px;}
.y5f_c00198{bottom:666.630000px;}
.y58_c00198{bottom:683.745000px;}
.y56_c00198{bottom:684.825000px;}
.y5a_c00198{bottom:685.050000px;}
.y5b_c00198{bottom:685.245000px;}
.y57_c00198{bottom:685.905000px;}
.y59_c00198{bottom:686.970000px;}
.y51_c00198{bottom:702.405000px;}
.y53_c00198{bottom:703.245000px;}
.y4f_c00198{bottom:703.905000px;}
.y55_c00198{bottom:704.550000px;}
.y54_c00198{bottom:705.405000px;}
.y52_c00198{bottom:705.630000px;}
.y50_c00198{bottom:706.470000px;}
.y4e_c00198{bottom:706.905000px;}
.y4c_c00198{bottom:721.905000px;}
.y4d_c00198{bottom:724.905000px;}
.y4b_c00198{bottom:725.325000px;}
.y4a_c00198{bottom:726.405000px;}
.y48_c00198{bottom:743.745000px;}
.y49_c00198{bottom:744.405000px;}
.y47_c00198{bottom:745.905000px;}
.y45_c00198{bottom:763.245000px;}
.y46_c00198{bottom:765.405000px;}
.y43_c00198{bottom:780.405000px;}
.y42_c00198{bottom:782.745000px;}
.y44_c00198{bottom:783.630000px;}
.y41_c00198{bottom:784.905000px;}
.y40_c00198{bottom:800.970000px;}
.y3f_c00198{bottom:802.245000px;}
.y3e_c00198{bottom:804.405000px;}
.y3d_c00198{bottom:804.630000px;}
.y3c_c00198{bottom:819.405000px;}
.y3a_c00198{bottom:820.470000px;}
.y39_c00198{bottom:821.745000px;}
.y3b_c00198{bottom:823.470000px;}
.y38_c00198{bottom:823.905000px;}
.y37_c00198{bottom:843.405000px;}
.y35_c00198{bottom:859.905000px;}
.y31_c00198{bottom:860.745000px;}
.y36_c00198{bottom:860.970000px;}
.y33_c00198{bottom:862.050000px;}
.y34_c00198{bottom:862.470000px;}
.y32_c00198{bottom:862.905000px;}
.y2e_c00198{bottom:881.745000px;}
.y2f_c00198{bottom:882.405000px;}
.y30_c00198{bottom:883.470000px;}
.y2d_c00198{bottom:883.905000px;}
.y29_c00198{bottom:899.745000px;}
.y2b_c00198{bottom:901.245000px;}
.y2a_c00198{bottom:901.905000px;}
.y2c_c00198{bottom:902.130000px;}
.y28_c00198{bottom:903.405000px;}
.y24_c00198{bottom:920.745000px;}
.y27_c00198{bottom:921.630000px;}
.y26_c00198{bottom:921.825000px;}
.y25_c00198{bottom:922.905000px;}
.y23_c00198{bottom:938.745000px;}
.y22_c00198{bottom:940.245000px;}
.y21_c00198{bottom:941.130000px;}
.y20_c00198{bottom:942.405000px;}
.y1e_c00198{bottom:959.745000px;}
.y1c_c00198{bottom:961.905000px;}
.y1d_c00198{bottom:962.130000px;}
.y1f_c00198{bottom:962.970000px;}
.y19_c00198{bottom:979.245000px;}
.y1b_c00198{bottom:980.325000px;}
.y18_c00198{bottom:981.405000px;}
.y1a_c00198{bottom:981.630000px;}
.y12_c00198{bottom:997.470000px;}
.y17_c00198{bottom:998.325000px;}
.y14_c00198{bottom:998.745000px;}
.y16_c00198{bottom:1000.905000px;}
.y15_c00198{bottom:1001.130000px;}
.y13_c00198{bottom:1001.970000px;}
.yf_c00198{bottom:1018.245000px;}
.ye_c00198{bottom:1020.405000px;}
.y11_c00198{bottom:1020.630000px;}
.y10_c00198{bottom:1021.470000px;}
.y9_c00198{bottom:1039.245000px;}
.yc_c00198{bottom:1039.905000px;}
.yb_c00198{bottom:1040.130000px;}
.yd_c00198{bottom:1040.325000px;}
.ya_c00198{bottom:1040.970000px;}
.y8_c00198{bottom:1041.405000px;}
.y6_c00198{bottom:1058.745000px;}
.y3_c00198{bottom:1059.405000px;}
.y7_c00198{bottom:1059.630000px;}
.y5_c00198{bottom:1060.905000px;}
.y4_c00198{bottom:1060.920000px;}
.y1_c00198{bottom:1097.745000px;}
.y2_c00198{bottom:1098.630000px;}
.h4_c00198{height:4.206533px;}
.h2_c00198{height:23.025234px;}
.h7_c00198{height:25.091602px;}
.h5_c00198{height:31.364502px;}
.h3_c00198{height:35.571035px;}
.h9_c00198{height:37.364502px;}
.h6_c00198{height:39.777568px;}
.h1_c00198{height:43.910303px;}
.h8_c00198{height:48.116836px;}
.h0_c00198{height:1335.000000px;}
.w0_c00198{width:880.500000px;}
.x0_c00198{left:0.000000px;}
.xe_c00198{left:151.920000px;}
.x88_c00198{left:153.000000px;}
.xab_c00198{left:154.920000px;}
.x3_c00198{left:167.145000px;}
.x1b_c00198{left:169.920000px;}
.x7f_c00198{left:171.420000px;}
.xf2_c00198{left:177.000000px;}
.xbc_c00198{left:178.500000px;}
.x29_c00198{left:179.580000px;}
.x72_c00198{left:181.500000px;}
.xa2_c00198{left:184.080000px;}
.x105_c00198{left:185.580000px;}
.xf_c00198{left:189.000000px;}
.xac_c00198{left:191.580000px;}
.x57_c00198{left:193.920000px;}
.x1c_c00198{left:195.000000px;}
.xff_c00198{left:196.080000px;}
.x80_c00198{left:198.420000px;}
.x42_c00198{left:199.500000px;}
.xe7_c00198{left:201.000000px;}
.xb6_c00198{left:202.920000px;}
.x37_c00198{left:205.080000px;}
.x2a_c00198{left:208.500000px;}
.xda_c00198{left:210.000000px;}
.x9a_c00198{left:211.500000px;}
.x4d_c00198{left:214.080000px;}
.xf8_c00198{left:216.420000px;}
.x81_c00198{left:217.500000px;}
.x58_c00198{left:220.500000px;}
.x89_c00198{left:222.000000px;}
.x38_c00198{left:223.920000px;}
.x61_c00198{left:225.420000px;}
.xb7_c00198{left:226.500000px;}
.xdb_c00198{left:228.000000px;}
.xf3_c00198{left:229.500000px;}
.xed_c00198{left:231.420000px;}
.xa3_c00198{left:232.500000px;}
.xad_c00198{left:235.080000px;}
.x4_c00198{left:237.000000px;}
.xdf_c00198{left:238.080000px;}
.xc9_c00198{left:240.000000px;}
.x82_c00198{left:241.080000px;}
.x10_c00198{left:246.420000px;}
.x6b_c00198{left:248.580000px;}
.x39_c00198{left:250.500000px;}
.x97_c00198{left:252.000000px;}
.xd0_c00198{left:253.920000px;}
.x5_c00198{left:256.500000px;}
.x43_c00198{left:259.500000px;}
.x1d_c00198{left:261.000000px;}
.x4e_c00198{left:262.500000px;}
.xdc_c00198{left:265.500000px;}
.x6c_c00198{left:267.420000px;}
.xa4_c00198{left:268.500000px;}
.x92_c00198{left:270.420000px;}
.x98_c00198{left:271.500000px;}
.xc4_c00198{left:274.080000px;}
.x4f_c00198{left:277.500000px;}
.x11_c00198{left:279.000000px;}
.xe0_c00198{left:280.500000px;}
.x44_c00198{left:282.420000px;}
.x2b_c00198{left:283.500000px;}
.x73_c00198{left:285.420000px;}
.x59_c00198{left:288.000000px;}
.x3a_c00198{left:289.500000px;}
.x6_c00198{left:290.580000px;}
.xee_c00198{left:294.000000px;}
.x62_c00198{left:295.080000px;}
.xd4_c00198{left:297.000000px;}
.x74_c00198{left:298.500000px;}
.x99_c00198{left:303.420000px;}
.xbd_c00198{left:306.000000px;}
.xa5_c00198{left:307.500000px;}
.x1e_c00198{left:309.000000px;}
.x100_c00198{left:310.080000px;}
.x63_c00198{left:312.420000px;}
.x2c_c00198{left:313.500000px;}
.xe1_c00198{left:314.580000px;}
.x50_c00198{left:318.000000px;}
.x3b_c00198{left:319.920000px;}
.x8a_c00198{left:321.420000px;}
.x45_c00198{left:322.500000px;}
.x6d_c00198{left:323.580000px;}
.x12_c00198{left:325.920000px;}
.xe8_c00198{left:327.000000px;}
.x5a_c00198{left:328.920000px;}
.xca_c00198{left:331.080000px;}
.x75_c00198{left:333.000000px;}
.x64_c00198{left:337.500000px;}
.x51_c00198{left:339.000000px;}
.x1f_c00198{left:342.420000px;}
.xb8_c00198{left:343.500000px;}
.x93_c00198{left:345.000000px;}
.x2d_c00198{left:346.920000px;}
.xae_c00198{left:348.000000px;}
.x5b_c00198{left:351.420000px;}
.x101_c00198{left:352.500000px;}
.x13_c00198{left:354.000000px;}
.xfd_c00198{left:357.000000px;}
.x8b_c00198{left:361.500000px;}
.xf9_c00198{left:362.580000px;}
.x7_c00198{left:364.080000px;}
.xf5_c00198{left:365.580000px;}
.x20_c00198{left:367.500000px;}
.x52_c00198{left:369.420000px;}
.x76_c00198{left:370.500000px;}
.xd5_c00198{left:372.420000px;}
.x6e_c00198{left:373.920000px;}
.x14_c00198{left:375.420000px;}
.x2e_c00198{left:376.920000px;}
.xcb_c00198{left:379.920000px;}
.xef_c00198{left:381.000000px;}
.xe2_c00198{left:382.080000px;}
.xe9_c00198{left:384.000000px;}
.x94_c00198{left:387.000000px;}
.x106_c00198{left:388.500000px;}
.xb9_c00198{left:391.080000px;}
.xd1_c00198{left:393.000000px;}
.x104_c00198{left:394.080000px;}
.x102_c00198{left:395.580000px;}
.x2_c00198{left:397.500000px;}
.x21_c00198{left:399.000000px;}
.xd6_c00198{left:400.500000px;}
.x5c_c00198{left:402.420000px;}
.x65_c00198{left:405.000000px;}
.xe3_c00198{left:406.920000px;}
.xbe_c00198{left:412.500000px;}
.x77_c00198{left:417.000000px;}
.x15_c00198{left:421.080000px;}
.xc5_c00198{left:422.580000px;}
.x22_c00198{left:424.080000px;}
.x46_c00198{left:426.420000px;}
.x6f_c00198{left:427.920000px;}
.x3c_c00198{left:429.000000px;}
.xfa_c00198{left:430.500000px;}
.x78_c00198{left:433.080000px;}
.x5d_c00198{left:436.920000px;}
.x8_c00198{left:438.000000px;}
.xaf_c00198{left:439.920000px;}
.x107_c00198{left:441.420000px;}
.x66_c00198{left:442.500000px;}
.x16_c00198{left:444.000000px;}
.xa6_c00198{left:445.920000px;}
.xc6_c00198{left:447.420000px;}
.x2f_c00198{left:448.920000px;}
.x83_c00198{left:451.920000px;}
.xba_c00198{left:454.080000px;}
.x109_c00198{left:457.500000px;}
.xbf_c00198{left:459.000000px;}
.x8c_c00198{left:460.080000px;}
.x9b_c00198{left:464.580000px;}
.x67_c00198{left:466.920000px;}
.xd7_c00198{left:468.000000px;}
.xc0_c00198{left:472.080000px;}
.x103_c00198{left:474.420000px;}
.x30_c00198{left:475.920000px;}
.x79_c00198{left:478.080000px;}
.x47_c00198{left:481.500000px;}
.x9c_c00198{left:483.420000px;}
.x95_c00198{left:484.500000px;}
.x23_c00198{left:485.580000px;}
.xc1_c00198{left:490.500000px;}
.x84_c00198{left:492.000000px;}
.x7a_c00198{left:493.500000px;}
.x53_c00198{left:494.580000px;}
.xb0_c00198{left:496.080000px;}
.x96_c00198{left:498.000000px;}
.xea_c00198{left:499.500000px;}
.xc2_c00198{left:501.000000px;}
.xf4_c00198{left:504.420000px;}
.xfb_c00198{left:507.000000px;}
.x8d_c00198{left:508.920000px;}
.x31_c00198{left:510.420000px;}
.x68_c00198{left:511.500000px;}
.xd2_c00198{left:513.000000px;}
.x9_c00198{left:514.500000px;}
.x24_c00198{left:516.420000px;}
.xd8_c00198{left:521.580000px;}
.xf0_c00198{left:523.500000px;}
.xc3_c00198{left:526.500000px;}
.x5e_c00198{left:528.000000px;}
.x70_c00198{left:529.500000px;}
.x17_c00198{left:531.000000px;}
.x7b_c00198{left:535.080000px;}
.x48_c00198{left:537.420000px;}
.x8e_c00198{left:538.920000px;}
.x32_c00198{left:540.420000px;}
.x25_c00198{left:541.500000px;}
.xa_c00198{left:543.420000px;}
.x3d_c00198{left:546.420000px;}
.x69_c00198{left:547.500000px;}
.x18_c00198{left:549.420000px;}
.xcc_c00198{left:555.420000px;}
.x54_c00198{left:556.920000px;}
.xa7_c00198{left:558.420000px;}
.x9d_c00198{left:559.500000px;}
.x7c_c00198{left:564.420000px;}
.xb_c00198{left:565.500000px;}
.x10a_c00198{left:567.000000px;}
.x3e_c00198{left:572.580000px;}
.x9e_c00198{left:574.920000px;}
.x19_c00198{left:576.000000px;}
.x6a_c00198{left:577.920000px;}
.x8f_c00198{left:580.500000px;}
.xcd_c00198{left:582.000000px;}
.x49_c00198{left:583.500000px;}
.xf6_c00198{left:585.420000px;}
.xeb_c00198{left:587.580000px;}
.xa8_c00198{left:590.580000px;}
.x33_c00198{left:594.000000px;}
.x90_c00198{left:595.920000px;}
.xfe_c00198{left:597.000000px;}
.x85_c00198{left:598.500000px;}
.x7d_c00198{left:599.580000px;}
.xfc_c00198{left:601.080000px;}
.x4a_c00198{left:604.080000px;}
.xb1_c00198{left:609.420000px;}
.xa9_c00198{left:610.920000px;}
.x71_c00198{left:612.000000px;}
.xc7_c00198{left:613.080000px;}
.x55_c00198{left:615.000000px;}
.xce_c00198{left:616.080000px;}
.x108_c00198{left:618.420000px;}
.x7e_c00198{left:619.920000px;}
.xf1_c00198{left:621.420000px;}
.x26_c00198{left:624.420000px;}
.x4b_c00198{left:627.000000px;}
.x34_c00198{left:629.580000px;}
.xc_c00198{left:631.080000px;}
.xaa_c00198{left:637.920000px;}
.x3f_c00198{left:640.500000px;}
.x86_c00198{left:642.000000px;}
.x1a_c00198{left:646.920000px;}
.xb2_c00198{left:648.420000px;}
.x35_c00198{left:649.920000px;}
.xbb_c00198{left:652.500000px;}
.xdd_c00198{left:654.000000px;}
.x9f_c00198{left:655.920000px;}
.x5f_c00198{left:657.420000px;}
.x27_c00198{left:659.580000px;}
.x56_c00198{left:661.500000px;}
.xe4_c00198{left:662.580000px;}
.xf7_c00198{left:666.000000px;}
.xb3_c00198{left:672.000000px;}
.xd9_c00198{left:676.500000px;}
.x36_c00198{left:678.420000px;}
.xcf_c00198{left:681.420000px;}
.x4c_c00198{left:685.500000px;}
.xe5_c00198{left:687.000000px;}
.x40_c00198{left:688.080000px;}
.xa0_c00198{left:689.580000px;}
.xb4_c00198{left:691.920000px;}
.xd3_c00198{left:693.000000px;}
.x91_c00198{left:694.500000px;}
.x60_c00198{left:696.000000px;}
.x87_c00198{left:697.500000px;}
.xd_c00198{left:699.420000px;}
.xe6_c00198{left:700.500000px;}
.xb5_c00198{left:703.500000px;}
.x1_c00198{left:704.775000px;}
.x41_c00198{left:706.920000px;}
.xa1_c00198{left:708.420000px;}
.xde_c00198{left:711.420000px;}
.x28_c00198{left:712.500000px;}
.xec_c00198{left:714.000000px;}
.xc8_c00198{left:716.580000px;}
.x10b_c00198{left:724.920000px;}
@media print{
.v1_c00198{vertical-align:-5.333333pt;}
.v0_c00198{vertical-align:0.000000pt;}
.v2_c00198{vertical-align:5.333333pt;}
.ls0_c00198{letter-spacing:0.000000pt;}
.ws3_c00198{word-spacing:-7.832291pt;}
.ws1_c00198{word-spacing:-6.721511pt;}
.ws0_c00198{word-spacing:-4.791527pt;}
.ws4_c00198{word-spacing:0.000000pt;}
.ws2_c00198{word-spacing:0.481471pt;}
.fs3_c00198{font-size:3.040000pt;}
.fs1_c00198{font-size:16.640000pt;}
.fs6_c00198{font-size:18.133333pt;}
.fs4_c00198{font-size:22.666667pt;}
.fs2_c00198{font-size:25.706667pt;}
.fs5_c00198{font-size:28.746667pt;}
.fs0_c00198{font-size:31.733333pt;}
.fs7_c00198{font-size:34.773333pt;}
.y0_c00198{bottom:0.000000pt;}
.ya9_c00198{bottom:222.266667pt;}
.ya8_c00198{bottom:222.440000pt;}
.ya7_c00198{bottom:239.026667pt;}
.ya6_c00198{bottom:239.773333pt;}
.ya5_c00198{bottom:241.693333pt;}
.ya1_c00198{bottom:256.360000pt;}
.ya3_c00198{bottom:257.106667pt;}
.ya2_c00198{bottom:257.893333pt;}
.y9f_c00198{bottom:258.266667pt;}
.ya4_c00198{bottom:258.640000pt;}
.ya0_c00198{bottom:259.026667pt;}
.y9c_c00198{bottom:283.773333pt;}
.y9d_c00198{bottom:285.306667pt;}
.y9e_c00198{bottom:285.693333pt;}
.y9b_c00198{bottom:320.360000pt;}
.y9a_c00198{bottom:321.693333pt;}
.y98_c00198{bottom:335.773333pt;}
.y95_c00198{bottom:337.106667pt;}
.y97_c00198{bottom:337.693333pt;}
.y99_c00198{bottom:337.893333pt;}
.y96_c00198{bottom:339.026667pt;}
.y93_c00198{bottom:353.106667pt;}
.y92_c00198{bottom:354.440000pt;}
.y94_c00198{bottom:355.026667pt;}
.y91_c00198{bottom:356.360000pt;}
.y8d_c00198{bottom:370.440000pt;}
.y8e_c00198{bottom:371.773333pt;}
.y90_c00198{bottom:372.360000pt;}
.y8f_c00198{bottom:372.560000pt;}
.y8c_c00198{bottom:373.693333pt;}
.y8b_c00198{bottom:387.026667pt;}
.y88_c00198{bottom:389.106667pt;}
.y89_c00198{bottom:389.893333pt;}
.y8a_c00198{bottom:391.026667pt;}
.y86_c00198{bottom:404.360000pt;}
.y83_c00198{bottom:405.306667pt;}
.y81_c00198{bottom:406.440000pt;}
.y82_c00198{bottom:406.640000pt;}
.y87_c00198{bottom:407.226667pt;}
.y84_c00198{bottom:407.400000pt;}
.y85_c00198{bottom:408.360000pt;}
.y80_c00198{bottom:409.306667pt;}
.y7f_c00198{bottom:423.773333pt;}
.y7d_c00198{bottom:424.733333pt;}
.y7c_c00198{bottom:425.693333pt;}
.y7e_c00198{bottom:425.893333pt;}
.y79_c00198{bottom:441.106667pt;}
.y7a_c00198{bottom:441.493333pt;}
.y76_c00198{bottom:442.440000pt;}
.y77_c00198{bottom:443.026667pt;}
.y7b_c00198{bottom:443.226667pt;}
.y78_c00198{bottom:443.973333pt;}
.y74_c00198{bottom:458.440000pt;}
.y75_c00198{bottom:459.400000pt;}
.y70_c00198{bottom:459.773333pt;}
.y72_c00198{bottom:460.360000pt;}
.y73_c00198{bottom:461.306667pt;}
.y71_c00198{bottom:461.693333pt;}
.y6d_c00198{bottom:477.106667pt;}
.y6e_c00198{bottom:477.693333pt;}
.y6f_c00198{bottom:477.893333pt;}
.y6b_c00198{bottom:478.066667pt;}
.y6c_c00198{bottom:478.640000pt;}
.y6a_c00198{bottom:479.026667pt;}
.y69_c00198{bottom:494.440000pt;}
.y68_c00198{bottom:496.360000pt;}
.y65_c00198{bottom:511.773333pt;}
.y67_c00198{bottom:512.560000pt;}
.y66_c00198{bottom:512.733333pt;}
.y64_c00198{bottom:513.693333pt;}
.y62_c00198{bottom:529.106667pt;}
.y61_c00198{bottom:531.026667pt;}
.y63_c00198{bottom:531.226667pt;}
.y60_c00198{bottom:557.693333pt;}
.y5e_c00198{bottom:589.106667pt;}
.y5d_c00198{bottom:590.440000pt;}
.y5c_c00198{bottom:592.360000pt;}
.y5f_c00198{bottom:592.560000pt;}
.y58_c00198{bottom:607.773333pt;}
.y56_c00198{bottom:608.733333pt;}
.y5a_c00198{bottom:608.933333pt;}
.y5b_c00198{bottom:609.106667pt;}
.y57_c00198{bottom:609.693333pt;}
.y59_c00198{bottom:610.640000pt;}
.y51_c00198{bottom:624.360000pt;}
.y53_c00198{bottom:625.106667pt;}
.y4f_c00198{bottom:625.693333pt;}
.y55_c00198{bottom:626.266667pt;}
.y54_c00198{bottom:627.026667pt;}
.y52_c00198{bottom:627.226667pt;}
.y50_c00198{bottom:627.973333pt;}
.y4e_c00198{bottom:628.360000pt;}
.y4c_c00198{bottom:641.693333pt;}
.y4d_c00198{bottom:644.360000pt;}
.y4b_c00198{bottom:644.733333pt;}
.y4a_c00198{bottom:645.693333pt;}
.y48_c00198{bottom:661.106667pt;}
.y49_c00198{bottom:661.693333pt;}
.y47_c00198{bottom:663.026667pt;}
.y45_c00198{bottom:678.440000pt;}
.y46_c00198{bottom:680.360000pt;}
.y43_c00198{bottom:693.693333pt;}
.y42_c00198{bottom:695.773333pt;}
.y44_c00198{bottom:696.560000pt;}
.y41_c00198{bottom:697.693333pt;}
.y40_c00198{bottom:711.973333pt;}
.y3f_c00198{bottom:713.106667pt;}
.y3e_c00198{bottom:715.026667pt;}
.y3d_c00198{bottom:715.226667pt;}
.y3c_c00198{bottom:728.360000pt;}
.y3a_c00198{bottom:729.306667pt;}
.y39_c00198{bottom:730.440000pt;}
.y3b_c00198{bottom:731.973333pt;}
.y38_c00198{bottom:732.360000pt;}
.y37_c00198{bottom:749.693333pt;}
.y35_c00198{bottom:764.360000pt;}
.y31_c00198{bottom:765.106667pt;}
.y36_c00198{bottom:765.306667pt;}
.y33_c00198{bottom:766.266667pt;}
.y34_c00198{bottom:766.640000pt;}
.y32_c00198{bottom:767.026667pt;}
.y2e_c00198{bottom:783.773333pt;}
.y2f_c00198{bottom:784.360000pt;}
.y30_c00198{bottom:785.306667pt;}
.y2d_c00198{bottom:785.693333pt;}
.y29_c00198{bottom:799.773333pt;}
.y2b_c00198{bottom:801.106667pt;}
.y2a_c00198{bottom:801.693333pt;}
.y2c_c00198{bottom:801.893333pt;}
.y28_c00198{bottom:803.026667pt;}
.y24_c00198{bottom:818.440000pt;}
.y27_c00198{bottom:819.226667pt;}
.y26_c00198{bottom:819.400000pt;}
.y25_c00198{bottom:820.360000pt;}
.y23_c00198{bottom:834.440000pt;}
.y22_c00198{bottom:835.773333pt;}
.y21_c00198{bottom:836.560000pt;}
.y20_c00198{bottom:837.693333pt;}
.y1e_c00198{bottom:853.106667pt;}
.y1c_c00198{bottom:855.026667pt;}
.y1d_c00198{bottom:855.226667pt;}
.y1f_c00198{bottom:855.973333pt;}
.y19_c00198{bottom:870.440000pt;}
.y1b_c00198{bottom:871.400000pt;}
.y18_c00198{bottom:872.360000pt;}
.y1a_c00198{bottom:872.560000pt;}
.y12_c00198{bottom:886.640000pt;}
.y17_c00198{bottom:887.400000pt;}
.y14_c00198{bottom:887.773333pt;}
.y16_c00198{bottom:889.693333pt;}
.y15_c00198{bottom:889.893333pt;}
.y13_c00198{bottom:890.640000pt;}
.yf_c00198{bottom:905.106667pt;}
.ye_c00198{bottom:907.026667pt;}
.y11_c00198{bottom:907.226667pt;}
.y10_c00198{bottom:907.973333pt;}
.y9_c00198{bottom:923.773333pt;}
.yc_c00198{bottom:924.360000pt;}
.yb_c00198{bottom:924.560000pt;}
.yd_c00198{bottom:924.733333pt;}
.ya_c00198{bottom:925.306667pt;}
.y8_c00198{bottom:925.693333pt;}
.y6_c00198{bottom:941.106667pt;}
.y3_c00198{bottom:941.693333pt;}
.y7_c00198{bottom:941.893333pt;}
.y5_c00198{bottom:943.026667pt;}
.y4_c00198{bottom:943.040000pt;}
.y1_c00198{bottom:975.773333pt;}
.y2_c00198{bottom:976.560000pt;}
.h4_c00198{height:3.739141pt;}
.h2_c00198{height:20.466875pt;}
.h7_c00198{height:22.303646pt;}
.h5_c00198{height:27.879557pt;}
.h3_c00198{height:31.618698pt;}
.h9_c00198{height:33.212891pt;}
.h6_c00198{height:35.357839pt;}
.h1_c00198{height:39.031380pt;}
.h8_c00198{height:42.770521pt;}
.h0_c00198{height:1186.666667pt;}
.w0_c00198{width:782.666667pt;}
.x0_c00198{left:0.000000pt;}
.xe_c00198{left:135.040000pt;}
.x88_c00198{left:136.000000pt;}
.xab_c00198{left:137.706667pt;}
.x3_c00198{left:148.573333pt;}
.x1b_c00198{left:151.040000pt;}
.x7f_c00198{left:152.373333pt;}
.xf2_c00198{left:157.333333pt;}
.xbc_c00198{left:158.666667pt;}
.x29_c00198{left:159.626667pt;}
.x72_c00198{left:161.333333pt;}
.xa2_c00198{left:163.626667pt;}
.x105_c00198{left:164.960000pt;}
.xf_c00198{left:168.000000pt;}
.xac_c00198{left:170.293333pt;}
.x57_c00198{left:172.373333pt;}
.x1c_c00198{left:173.333333pt;}
.xff_c00198{left:174.293333pt;}
.x80_c00198{left:176.373333pt;}
.x42_c00198{left:177.333333pt;}
.xe7_c00198{left:178.666667pt;}
.xb6_c00198{left:180.373333pt;}
.x37_c00198{left:182.293333pt;}
.x2a_c00198{left:185.333333pt;}
.xda_c00198{left:186.666667pt;}
.x9a_c00198{left:188.000000pt;}
.x4d_c00198{left:190.293333pt;}
.xf8_c00198{left:192.373333pt;}
.x81_c00198{left:193.333333pt;}
.x58_c00198{left:196.000000pt;}
.x89_c00198{left:197.333333pt;}
.x38_c00198{left:199.040000pt;}
.x61_c00198{left:200.373333pt;}
.xb7_c00198{left:201.333333pt;}
.xdb_c00198{left:202.666667pt;}
.xf3_c00198{left:204.000000pt;}
.xed_c00198{left:205.706667pt;}
.xa3_c00198{left:206.666667pt;}
.xad_c00198{left:208.960000pt;}
.x4_c00198{left:210.666667pt;}
.xdf_c00198{left:211.626667pt;}
.xc9_c00198{left:213.333333pt;}
.x82_c00198{left:214.293333pt;}
.x10_c00198{left:219.040000pt;}
.x6b_c00198{left:220.960000pt;}
.x39_c00198{left:222.666667pt;}
.x97_c00198{left:224.000000pt;}
.xd0_c00198{left:225.706667pt;}
.x5_c00198{left:228.000000pt;}
.x43_c00198{left:230.666667pt;}
.x1d_c00198{left:232.000000pt;}
.x4e_c00198{left:233.333333pt;}
.xdc_c00198{left:236.000000pt;}
.x6c_c00198{left:237.706667pt;}
.xa4_c00198{left:238.666667pt;}
.x92_c00198{left:240.373333pt;}
.x98_c00198{left:241.333333pt;}
.xc4_c00198{left:243.626667pt;}
.x4f_c00198{left:246.666667pt;}
.x11_c00198{left:248.000000pt;}
.xe0_c00198{left:249.333333pt;}
.x44_c00198{left:251.040000pt;}
.x2b_c00198{left:252.000000pt;}
.x73_c00198{left:253.706667pt;}
.x59_c00198{left:256.000000pt;}
.x3a_c00198{left:257.333333pt;}
.x6_c00198{left:258.293333pt;}
.xee_c00198{left:261.333333pt;}
.x62_c00198{left:262.293333pt;}
.xd4_c00198{left:264.000000pt;}
.x74_c00198{left:265.333333pt;}
.x99_c00198{left:269.706667pt;}
.xbd_c00198{left:272.000000pt;}
.xa5_c00198{left:273.333333pt;}
.x1e_c00198{left:274.666667pt;}
.x100_c00198{left:275.626667pt;}
.x63_c00198{left:277.706667pt;}
.x2c_c00198{left:278.666667pt;}
.xe1_c00198{left:279.626667pt;}
.x50_c00198{left:282.666667pt;}
.x3b_c00198{left:284.373333pt;}
.x8a_c00198{left:285.706667pt;}
.x45_c00198{left:286.666667pt;}
.x6d_c00198{left:287.626667pt;}
.x12_c00198{left:289.706667pt;}
.xe8_c00198{left:290.666667pt;}
.x5a_c00198{left:292.373333pt;}
.xca_c00198{left:294.293333pt;}
.x75_c00198{left:296.000000pt;}
.x64_c00198{left:300.000000pt;}
.x51_c00198{left:301.333333pt;}
.x1f_c00198{left:304.373333pt;}
.xb8_c00198{left:305.333333pt;}
.x93_c00198{left:306.666667pt;}
.x2d_c00198{left:308.373333pt;}
.xae_c00198{left:309.333333pt;}
.x5b_c00198{left:312.373333pt;}
.x101_c00198{left:313.333333pt;}
.x13_c00198{left:314.666667pt;}
.xfd_c00198{left:317.333333pt;}
.x8b_c00198{left:321.333333pt;}
.xf9_c00198{left:322.293333pt;}
.x7_c00198{left:323.626667pt;}
.xf5_c00198{left:324.960000pt;}
.x20_c00198{left:326.666667pt;}
.x52_c00198{left:328.373333pt;}
.x76_c00198{left:329.333333pt;}
.xd5_c00198{left:331.040000pt;}
.x6e_c00198{left:332.373333pt;}
.x14_c00198{left:333.706667pt;}
.x2e_c00198{left:335.040000pt;}
.xcb_c00198{left:337.706667pt;}
.xef_c00198{left:338.666667pt;}
.xe2_c00198{left:339.626667pt;}
.xe9_c00198{left:341.333333pt;}
.x94_c00198{left:344.000000pt;}
.x106_c00198{left:345.333333pt;}
.xb9_c00198{left:347.626667pt;}
.xd1_c00198{left:349.333333pt;}
.x104_c00198{left:350.293333pt;}
.x102_c00198{left:351.626667pt;}
.x2_c00198{left:353.333333pt;}
.x21_c00198{left:354.666667pt;}
.xd6_c00198{left:356.000000pt;}
.x5c_c00198{left:357.706667pt;}
.x65_c00198{left:360.000000pt;}
.xe3_c00198{left:361.706667pt;}
.xbe_c00198{left:366.666667pt;}
.x77_c00198{left:370.666667pt;}
.x15_c00198{left:374.293333pt;}
.xc5_c00198{left:375.626667pt;}
.x22_c00198{left:376.960000pt;}
.x46_c00198{left:379.040000pt;}
.x6f_c00198{left:380.373333pt;}
.x3c_c00198{left:381.333333pt;}
.xfa_c00198{left:382.666667pt;}
.x78_c00198{left:384.960000pt;}
.x5d_c00198{left:388.373333pt;}
.x8_c00198{left:389.333333pt;}
.xaf_c00198{left:391.040000pt;}
.x107_c00198{left:392.373333pt;}
.x66_c00198{left:393.333333pt;}
.x16_c00198{left:394.666667pt;}
.xa6_c00198{left:396.373333pt;}
.xc6_c00198{left:397.706667pt;}
.x2f_c00198{left:399.040000pt;}
.x83_c00198{left:401.706667pt;}
.xba_c00198{left:403.626667pt;}
.x109_c00198{left:406.666667pt;}
.xbf_c00198{left:408.000000pt;}
.x8c_c00198{left:408.960000pt;}
.x9b_c00198{left:412.960000pt;}
.x67_c00198{left:415.040000pt;}
.xd7_c00198{left:416.000000pt;}
.xc0_c00198{left:419.626667pt;}
.x103_c00198{left:421.706667pt;}
.x30_c00198{left:423.040000pt;}
.x79_c00198{left:424.960000pt;}
.x47_c00198{left:428.000000pt;}
.x9c_c00198{left:429.706667pt;}
.x95_c00198{left:430.666667pt;}
.x23_c00198{left:431.626667pt;}
.xc1_c00198{left:436.000000pt;}
.x84_c00198{left:437.333333pt;}
.x7a_c00198{left:438.666667pt;}
.x53_c00198{left:439.626667pt;}
.xb0_c00198{left:440.960000pt;}
.x96_c00198{left:442.666667pt;}
.xea_c00198{left:444.000000pt;}
.xc2_c00198{left:445.333333pt;}
.xf4_c00198{left:448.373333pt;}
.xfb_c00198{left:450.666667pt;}
.x8d_c00198{left:452.373333pt;}
.x31_c00198{left:453.706667pt;}
.x68_c00198{left:454.666667pt;}
.xd2_c00198{left:456.000000pt;}
.x9_c00198{left:457.333333pt;}
.x24_c00198{left:459.040000pt;}
.xd8_c00198{left:463.626667pt;}
.xf0_c00198{left:465.333333pt;}
.xc3_c00198{left:468.000000pt;}
.x5e_c00198{left:469.333333pt;}
.x70_c00198{left:470.666667pt;}
.x17_c00198{left:472.000000pt;}
.x7b_c00198{left:475.626667pt;}
.x48_c00198{left:477.706667pt;}
.x8e_c00198{left:479.040000pt;}
.x32_c00198{left:480.373333pt;}
.x25_c00198{left:481.333333pt;}
.xa_c00198{left:483.040000pt;}
.x3d_c00198{left:485.706667pt;}
.x69_c00198{left:486.666667pt;}
.x18_c00198{left:488.373333pt;}
.xcc_c00198{left:493.706667pt;}
.x54_c00198{left:495.040000pt;}
.xa7_c00198{left:496.373333pt;}
.x9d_c00198{left:497.333333pt;}
.x7c_c00198{left:501.706667pt;}
.xb_c00198{left:502.666667pt;}
.x10a_c00198{left:504.000000pt;}
.x3e_c00198{left:508.960000pt;}
.x9e_c00198{left:511.040000pt;}
.x19_c00198{left:512.000000pt;}
.x6a_c00198{left:513.706667pt;}
.x8f_c00198{left:516.000000pt;}
.xcd_c00198{left:517.333333pt;}
.x49_c00198{left:518.666667pt;}
.xf6_c00198{left:520.373333pt;}
.xeb_c00198{left:522.293333pt;}
.xa8_c00198{left:524.960000pt;}
.x33_c00198{left:528.000000pt;}
.x90_c00198{left:529.706667pt;}
.xfe_c00198{left:530.666667pt;}
.x85_c00198{left:532.000000pt;}
.x7d_c00198{left:532.960000pt;}
.xfc_c00198{left:534.293333pt;}
.x4a_c00198{left:536.960000pt;}
.xb1_c00198{left:541.706667pt;}
.xa9_c00198{left:543.040000pt;}
.x71_c00198{left:544.000000pt;}
.xc7_c00198{left:544.960000pt;}
.x55_c00198{left:546.666667pt;}
.xce_c00198{left:547.626667pt;}
.x108_c00198{left:549.706667pt;}
.x7e_c00198{left:551.040000pt;}
.xf1_c00198{left:552.373333pt;}
.x26_c00198{left:555.040000pt;}
.x4b_c00198{left:557.333333pt;}
.x34_c00198{left:559.626667pt;}
.xc_c00198{left:560.960000pt;}
.xaa_c00198{left:567.040000pt;}
.x3f_c00198{left:569.333333pt;}
.x86_c00198{left:570.666667pt;}
.x1a_c00198{left:575.040000pt;}
.xb2_c00198{left:576.373333pt;}
.x35_c00198{left:577.706667pt;}
.xbb_c00198{left:580.000000pt;}
.xdd_c00198{left:581.333333pt;}
.x9f_c00198{left:583.040000pt;}
.x5f_c00198{left:584.373333pt;}
.x27_c00198{left:586.293333pt;}
.x56_c00198{left:588.000000pt;}
.xe4_c00198{left:588.960000pt;}
.xf7_c00198{left:592.000000pt;}
.xb3_c00198{left:597.333333pt;}
.xd9_c00198{left:601.333333pt;}
.x36_c00198{left:603.040000pt;}
.xcf_c00198{left:605.706667pt;}
.x4c_c00198{left:609.333333pt;}
.xe5_c00198{left:610.666667pt;}
.x40_c00198{left:611.626667pt;}
.xa0_c00198{left:612.960000pt;}
.xb4_c00198{left:615.040000pt;}
.xd3_c00198{left:616.000000pt;}
.x91_c00198{left:617.333333pt;}
.x60_c00198{left:618.666667pt;}
.x87_c00198{left:620.000000pt;}
.xd_c00198{left:621.706667pt;}
.xe6_c00198{left:622.666667pt;}
.xb5_c00198{left:625.333333pt;}
.x1_c00198{left:626.466667pt;}
.x41_c00198{left:628.373333pt;}
.xa1_c00198{left:629.706667pt;}
.xde_c00198{left:632.373333pt;}
.x28_c00198{left:633.333333pt;}
.xec_c00198{left:634.666667pt;}
.xc8_c00198{left:636.960000pt;}
.x10b_c00198{left:644.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_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_610ffa2a0eee298edec9dbf7.woff2')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m64_c00199{transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);}
.m9d_c00199{transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);}
.mb6_c00199{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m4d_c00199{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.ma3_c00199{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.m49_c00199{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.md2_c00199{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.meb_c00199{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.me1_c00199{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m7d_c00199{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.ma0_c00199{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m74_c00199{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mbd_c00199{transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);}
.m98_c00199{transform:matrix(0.385436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385436,0.000000,0.000000,0.250000,0,0);}
.m6f_c00199{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m55_c00199{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m75_c00199{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m1c_c00199{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m70_c00199{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.ma8_c00199{transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);}
.m41_c00199{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.mc8_c00199{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mb5_c00199{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.ma7_c00199{transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);}
.m6b_c00199{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m6e_c00199{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.ma5_c00199{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m3f_c00199{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m29_c00199{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m57_c00199{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m15_c00199{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m63_c00199{transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);}
.m76_c00199{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.ma9_c00199{transform:matrix(0.406772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406772,0.000000,0.000000,0.250000,0,0);}
.m20_c00199{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.ma2_c00199{transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);}
.m6d_c00199{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m88_c00199{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m50_c00199{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mcd_c00199{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m46_c00199{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m65_c00199{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m82_c00199{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m86_c00199{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m32_c00199{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.me6_c00199{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m87_c00199{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mc5_c00199{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m2c_c00199{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m61_c00199{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m39_c00199{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m94_c00199{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m9e_c00199{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m16_c00199{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.ma_c00199{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m2b_c00199{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mc1_c00199{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m2f_c00199{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.mb7_c00199{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m8c_c00199{transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);}
.m6c_c00199{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m27_c00199{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m43_c00199{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.md4_c00199{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m8a_c00199{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mb_c00199{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m97_c00199{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.m5e_c00199{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.mb0_c00199{transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);}
.mb1_c00199{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mc7_c00199{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m48_c00199{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m8b_c00199{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.m9c_c00199{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.m4b_c00199{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m58_c00199{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m66_c00199{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.mdf_c00199{transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);}
.mca_c00199{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.mc2_c00199{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.maa_c00199{transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);}
.mbb_c00199{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m4a_c00199{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m8d_c00199{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m51_c00199{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m81_c00199{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m5b_c00199{transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);}
.m0_c00199{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m60_c00199{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m96_c00199{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m3b_c00199{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m7c_c00199{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m8f_c00199{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mac_c00199{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.mdb_c00199{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.mc4_c00199{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.me3_c00199{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m92_c00199{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.m25_c00199{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.mec_c00199{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m11_c00199{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m19_c00199{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m9b_c00199{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.m40_c00199{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.mbe_c00199{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m14_c00199{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m7_c00199{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m9a_c00199{transform:matrix(0.484034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484034,0.000000,0.000000,0.250000,0,0);}
.me7_c00199{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m35_c00199{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.me9_c00199{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m28_c00199{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m78_c00199{transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);}
.m89_c00199{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m5_c00199{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m10_c00199{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mab_c00199{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m1f_c00199{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m56_c00199{transform:matrix(0.494898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494898,0.000000,0.000000,0.250000,0,0);}
.m1d_c00199{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m2_c00199{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);}
.m52_c00199{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m90_c00199{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mc0_c00199{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m23_c00199{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mea_c00199{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m7f_c00199{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m71_c00199{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mb9_c00199{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m5c_c00199{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m7e_c00199{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mba_c00199{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m42_c00199{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m6a_c00199{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m5f_c00199{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m1b_c00199{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m99_c00199{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.md3_c00199{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.md5_c00199{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.me8_c00199{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.md1_c00199{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.me4_c00199{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m5d_c00199{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m54_c00199{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m59_c00199{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m22_c00199{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.md6_c00199{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m31_c00199{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m80_c00199{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m18_c00199{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m21_c00199{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m9_c00199{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mc3_c00199{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mee_c00199{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.md0_c00199{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m69_c00199{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.md9_c00199{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mda_c00199{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m84_c00199{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m1e_c00199{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m5a_c00199{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m83_c00199{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m44_c00199{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m7a_c00199{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mcb_c00199{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m1a_c00199{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m79_c00199{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mef_c00199{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.m4_c00199{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.ma1_c00199{transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);}
.m7b_c00199{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m47_c00199{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mae_c00199{transform:matrix(0.551176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551176,0.000000,0.000000,0.250000,0,0);}
.med_c00199{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m85_c00199{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m2a_c00199{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m93_c00199{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m77_c00199{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m24_c00199{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m53_c00199{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m3d_c00199{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.md7_c00199{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mb4_c00199{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m4c_c00199{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m2d_c00199{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.me2_c00199{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.m91_c00199{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.mde_c00199{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.md8_c00199{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.mcf_c00199{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m8_c00199{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mc9_c00199{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.ma6_c00199{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m3_c00199{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m73_c00199{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m12_c00199{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m34_c00199{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.me5_c00199{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m30_c00199{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.ma4_c00199{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m37_c00199{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.mf_c00199{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m95_c00199{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mad_c00199{transform:matrix(0.602206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602206,0.000000,0.000000,0.250000,0,0);}
.me_c00199{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.mbf_c00199{transform:matrix(0.606846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606846,0.000000,0.000000,0.250000,0,0);}
.mce_c00199{transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);}
.mb8_c00199{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m3e_c00199{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m26_c00199{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.md_c00199{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.me0_c00199{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m9f_c00199{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.m13_c00199{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m4f_c00199{transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);}
.m36_c00199{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m1_c00199{transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);}
.m72_c00199{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m4e_c00199{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m38_c00199{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m2e_c00199{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mc_c00199{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mdd_c00199{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.mbc_c00199{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m17_c00199{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mdc_c00199{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.mcc_c00199{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.mb3_c00199{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m33_c00199{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m3c_c00199{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m45_c00199{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m8e_c00199{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m3a_c00199{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m6_c00199{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m62_c00199{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m67_c00199{transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);}
.m68_c00199{transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);}
.maf_c00199{transform:matrix(1.040749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.040749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.040749,0.000000,0.000000,0.250000,0,0);}
.mb2_c00199{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.mc6_c00199{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00199{vertical-align:-12.000000px;}
.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:-9.030927px;}
.ws1_c00199{word-spacing:-0.815018px;}
.ws2_c00199{word-spacing:-0.269007px;}
.ws3_c00199{word-spacing:0.000000px;}
.fc0_c00199{color:transparent;}
.fs6_c00199{font-size:3.420000px;}
.fs7_c00199{font-size:6.780000px;}
.fs8_c00199{font-size:13.620000px;}
.fs1_c00199{font-size:18.720000px;}
.fs5_c00199{font-size:20.400000px;}
.fs3_c00199{font-size:25.500000px;}
.fs0_c00199{font-size:28.920000px;}
.fs4_c00199{font-size:32.340000px;}
.fs2_c00199{font-size:35.700000px;}
.y0_c00199{bottom:0.000000px;}
.yc0_c00199{bottom:253.245000px;}
.yc1_c00199{bottom:255.405000px;}
.ybe_c00199{bottom:272.745000px;}
.ybf_c00199{bottom:273.825000px;}
.ybc_c00199{bottom:274.905000px;}
.ybd_c00199{bottom:274.920000px;}
.ybb_c00199{bottom:294.405000px;}
.yb7_c00199{bottom:313.245000px;}
.yba_c00199{bottom:314.130000px;}
.yb9_c00199{bottom:314.325000px;}
.yb6_c00199{bottom:314.970000px;}
.yb8_c00199{bottom:315.405000px;}
.yb5_c00199{bottom:333.630000px;}
.yb3_c00199{bottom:333.825000px;}
.yb2_c00199{bottom:334.470000px;}
.yb1_c00199{bottom:334.905000px;}
.yb4_c00199{bottom:335.970000px;}
.yb0_c00199{bottom:352.245000px;}
.yaf_c00199{bottom:354.405000px;}
.yad_c00199{bottom:370.905000px;}
.yae_c00199{bottom:371.745000px;}
.yab_c00199{bottom:373.905000px;}
.yac_c00199{bottom:375.420000px;}
.ya9_c00199{bottom:392.745000px;}
.yaa_c00199{bottom:393.405000px;}
.ya7_c00199{bottom:393.630000px;}
.ya6_c00199{bottom:394.905000px;}
.ya8_c00199{bottom:394.920000px;}
.ya5_c00199{bottom:409.905000px;}
.ya2_c00199{bottom:410.745000px;}
.ya3_c00199{bottom:410.970000px;}
.ya4_c00199{bottom:411.825000px;}
.y9f_c00199{bottom:412.245000px;}
.ya1_c00199{bottom:413.325000px;}
.ya0_c00199{bottom:414.420000px;}
.y9e_c00199{bottom:431.745000px;}
.y9d_c00199{bottom:432.825000px;}
.y9c_c00199{bottom:433.905000px;}
.y9a_c00199{bottom:449.745000px;}
.y98_c00199{bottom:451.245000px;}
.y9b_c00199{bottom:451.905000px;}
.y99_c00199{bottom:452.970000px;}
.y97_c00199{bottom:453.405000px;}
.y93_c00199{bottom:470.745000px;}
.y96_c00199{bottom:471.630000px;}
.y95_c00199{bottom:472.905000px;}
.y94_c00199{bottom:472.920000px;}
.y8e_c00199{bottom:494.325000px;}
.y8f_c00199{bottom:495.405000px;}
.y90_c00199{bottom:496.470000px;}
.y92_c00199{bottom:496.695000px;}
.y91_c00199{bottom:497.550000px;}
.y8b_c00199{bottom:511.470000px;}
.y88_c00199{bottom:512.325000px;}
.y8d_c00199{bottom:512.550000px;}
.y8c_c00199{bottom:513.405000px;}
.y89_c00199{bottom:513.630000px;}
.y8a_c00199{bottom:515.550000px;}
.y86_c00199{bottom:535.245000px;}
.y87_c00199{bottom:536.325000px;}
.y84_c00199{bottom:566.970000px;}
.y85_c00199{bottom:567.405000px;}
.y82_c00199{bottom:568.245000px;}
.y81_c00199{bottom:569.325000px;}
.y80_c00199{bottom:570.405000px;}
.y83_c00199{bottom:570.630000px;}
.y7f_c00199{bottom:587.745000px;}
.y7d_c00199{bottom:589.245000px;}
.y7e_c00199{bottom:589.905000px;}
.y7c_c00199{bottom:591.405000px;}
.y7b_c00199{bottom:607.245000px;}
.y78_c00199{bottom:608.745000px;}
.y7a_c00199{bottom:609.405000px;}
.y79_c00199{bottom:609.630000px;}
.y77_c00199{bottom:610.905000px;}
.y76_c00199{bottom:625.905000px;}
.y75_c00199{bottom:626.970000px;}
.y74_c00199{bottom:628.245000px;}
.y73_c00199{bottom:629.130000px;}
.y72_c00199{bottom:630.405000px;}
.y71_c00199{bottom:646.245000px;}
.y70_c00199{bottom:649.905000px;}
.y6e_c00199{bottom:667.245000px;}
.y6f_c00199{bottom:668.130000px;}
.y6d_c00199{bottom:669.405000px;}
.y69_c00199{bottom:685.905000px;}
.y67_c00199{bottom:686.745000px;}
.y66_c00199{bottom:687.405000px;}
.y6a_c00199{bottom:687.825000px;}
.y68_c00199{bottom:688.905000px;}
.y6b_c00199{bottom:689.130000px;}
.y6c_c00199{bottom:689.970000px;}
.y63_c00199{bottom:705.405000px;}
.y65_c00199{bottom:706.905000px;}
.y64_c00199{bottom:708.630000px;}
.y62_c00199{bottom:709.905000px;}
.y61_c00199{bottom:725.745000px;}
.y60_c00199{bottom:727.245000px;}
.y5d_c00199{bottom:727.905000px;}
.y5f_c00199{bottom:728.130000px;}
.y5e_c00199{bottom:728.970000px;}
.y5c_c00199{bottom:729.405000px;}
.y5b_c00199{bottom:744.405000px;}
.y5a_c00199{bottom:745.245000px;}
.y56_c00199{bottom:745.905000px;}
.y59_c00199{bottom:746.745000px;}
.y58_c00199{bottom:747.630000px;}
.y57_c00199{bottom:748.470000px;}
.y55_c00199{bottom:766.245000px;}
.y54_c00199{bottom:768.405000px;}
.y53_c00199{bottom:769.470000px;}
.y4f_c00199{bottom:784.905000px;}
.y52_c00199{bottom:785.745000px;}
.y51_c00199{bottom:786.825000px;}
.y50_c00199{bottom:787.905000px;}
.y4b_c00199{bottom:804.405000px;}
.y4e_c00199{bottom:804.855000px;}
.y48_c00199{bottom:805.245000px;}
.y4d_c00199{bottom:805.920000px;}
.y4c_c00199{bottom:806.130000px;}
.y4a_c00199{bottom:806.325000px;}
.y49_c00199{bottom:806.970000px;}
.y47_c00199{bottom:807.405000px;}
.y46_c00199{bottom:823.470000px;}
.y45_c00199{bottom:824.745000px;}
.y40_c00199{bottom:844.470000px;}
.y41_c00199{bottom:845.745000px;}
.y44_c00199{bottom:846.630000px;}
.y43_c00199{bottom:846.825000px;}
.y42_c00199{bottom:847.905000px;}
.y3e_c00199{bottom:863.970000px;}
.y3d_c00199{bottom:865.245000px;}
.y3f_c00199{bottom:866.970000px;}
.y3c_c00199{bottom:867.405000px;}
.y39_c00199{bottom:884.745000px;}
.y3b_c00199{bottom:885.630000px;}
.y3a_c00199{bottom:886.905000px;}
.y35_c00199{bottom:903.405000px;}
.y37_c00199{bottom:904.245000px;}
.y36_c00199{bottom:905.130000px;}
.y38_c00199{bottom:905.325000px;}
.y34_c00199{bottom:906.405000px;}
.y31_c00199{bottom:922.905000px;}
.y33_c00199{bottom:923.550000px;}
.y2f_c00199{bottom:923.745000px;}
.y32_c00199{bottom:923.970000px;}
.y30_c00199{bottom:925.470000px;}
.y2e_c00199{bottom:925.905000px;}
.y2c_c00199{bottom:940.905000px;}
.y2d_c00199{bottom:942.405000px;}
.y29_c00199{bottom:943.245000px;}
.y2a_c00199{bottom:945.405000px;}
.y2b_c00199{bottom:945.630000px;}
.y28_c00199{bottom:962.745000px;}
.y23_c00199{bottom:963.405000px;}
.y27_c00199{bottom:963.825000px;}
.y26_c00199{bottom:964.245000px;}
.y22_c00199{bottom:964.905000px;}
.y24_c00199{bottom:965.130000px;}
.y25_c00199{bottom:965.970000px;}
.y1d_c00199{bottom:982.245000px;}
.y21_c00199{bottom:982.470000px;}
.y20_c00199{bottom:982.905000px;}
.y1f_c00199{bottom:984.405000px;}
.y1c_c00199{bottom:984.630000px;}
.y1e_c00199{bottom:985.470000px;}
.y1a_c00199{bottom:1001.745000px;}
.y1b_c00199{bottom:1001.970000px;}
.y19_c00199{bottom:1002.825000px;}
.y17_c00199{bottom:1003.905000px;}
.y18_c00199{bottom:1004.970000px;}
.y11_c00199{bottom:1020.405000px;}
.y14_c00199{bottom:1021.245000px;}
.y15_c00199{bottom:1021.470000px;}
.y12_c00199{bottom:1022.325000px;}
.y10_c00199{bottom:1022.745000px;}
.y13_c00199{bottom:1023.405000px;}
.y16_c00199{bottom:1024.470000px;}
.yf_c00199{bottom:1039.905000px;}
.yd_c00199{bottom:1040.745000px;}
.yc_c00199{bottom:1042.245000px;}
.ya_c00199{bottom:1042.905000px;}
.ye_c00199{bottom:1043.130000px;}
.y9_c00199{bottom:1043.325000px;}
.yb_c00199{bottom:1043.970000px;}
.y8_c00199{bottom:1044.405000px;}
.y4_c00199{bottom:1059.405000px;}
.y6_c00199{bottom:1061.745000px;}
.y5_c00199{bottom:1062.630000px;}
.y7_c00199{bottom:1063.470000px;}
.y3_c00199{bottom:1063.905000px;}
.y1_c00199{bottom:1099.905000px;}
.y2_c00199{bottom:1103.130000px;}
.h7_c00199{height:4.206533px;}
.h8_c00199{height:8.339268px;}
.h9_c00199{height:16.752334px;}
.h2_c00199{height:23.025234px;}
.h6_c00199{height:25.091602px;}
.h4_c00199{height:31.364502px;}
.h1_c00199{height:35.571035px;}
.h5_c00199{height:39.777568px;}
.h3_c00199{height:43.910303px;}
.h0_c00199{height:1335.000000px;}
.w0_c00199{width:880.500000px;}
.x0_c00199{left:0.000000px;}
.xe5_c00199{left:145.500000px;}
.xcc_c00199{left:147.420000px;}
.x7e_c00199{left:148.500000px;}
.x37_c00199{left:150.000000px;}
.x1_c00199{left:151.920000px;}
.xae_c00199{left:155.580000px;}
.x4f_c00199{left:157.080000px;}
.x3_c00199{left:160.080000px;}
.xdb_c00199{left:161.580000px;}
.xc1_c00199{left:163.500000px;}
.xcd_c00199{left:173.145000px;}
.xec_c00199{left:177.420000px;}
.x73_c00199{left:180.000000px;}
.x11_c00199{left:181.500000px;}
.x4_c00199{left:183.000000px;}
.xd3_c00199{left:192.000000px;}
.xe2_c00199{left:193.080000px;}
.xf2_c00199{left:199.920000px;}
.x86_c00199{left:201.420000px;}
.xed_c00199{left:203.580000px;}
.x8f_c00199{left:205.500000px;}
.xb4_c00199{left:208.080000px;}
.xab_c00199{left:211.920000px;}
.x1f_c00199{left:214.080000px;}
.x2a_c00199{left:216.000000px;}
.x12_c00199{left:217.080000px;}
.x5_c00199{left:220.500000px;}
.x44_c00199{left:221.580000px;}
.xa3_c00199{left:226.500000px;}
.x74_c00199{left:228.420000px;}
.x90_c00199{left:229.500000px;}
.x5a_c00199{left:234.000000px;}
.x38_c00199{left:235.080000px;}
.x62_c00199{left:237.000000px;}
.xf3_c00199{left:238.080000px;}
.x50_c00199{left:239.580000px;}
.x2b_c00199{left:241.500000px;}
.xd5_c00199{left:244.500000px;}
.x45_c00199{left:246.000000px;}
.x20_c00199{left:247.500000px;}
.x91_c00199{left:250.500000px;}
.xb5_c00199{left:252.000000px;}
.x39_c00199{left:253.920000px;}
.x13_c00199{left:255.000000px;}
.xa0_c00199{left:259.500000px;}
.x51_c00199{left:261.420000px;}
.x5b_c00199{left:262.920000px;}
.xba_c00199{left:264.420000px;}
.xc6_c00199{left:265.500000px;}
.x6_c00199{left:268.500000px;}
.xc0_c00199{left:271.920000px;}
.x93_c00199{left:274.500000px;}
.xdc_c00199{left:276.000000px;}
.xa4_c00199{left:281.580000px;}
.x2c_c00199{left:283.080000px;}
.xc7_c00199{left:285.000000px;}
.x21_c00199{left:286.920000px;}
.xc2_c00199{left:289.080000px;}
.x4c_c00199{left:291.000000px;}
.xd6_c00199{left:295.500000px;}
.x87_c00199{left:296.580000px;}
.x5c_c00199{left:298.080000px;}
.x14_c00199{left:301.080000px;}
.x6d_c00199{left:303.420000px;}
.x98_c00199{left:305.580000px;}
.x3a_c00199{left:310.920000px;}
.x88_c00199{left:313.920000px;}
.xd7_c00199{left:316.080000px;}
.x99_c00199{left:318.000000px;}
.x52_c00199{left:322.920000px;}
.x7f_c00199{left:324.000000px;}
.x7_c00199{left:325.500000px;}
.x22_c00199{left:327.420000px;}
.x63_c00199{left:328.500000px;}
.x15_c00199{left:331.920000px;}
.xaf_c00199{left:334.920000px;}
.xee_c00199{left:336.000000px;}
.xbb_c00199{left:339.000000px;}
.x2d_c00199{left:340.080000px;}
.x89_c00199{left:342.000000px;}
.xd8_c00199{left:343.080000px;}
.x5d_c00199{left:344.580000px;}
.x94_c00199{left:346.080000px;}
.x8_c00199{left:349.080000px;}
.xce_c00199{left:354.000000px;}
.x2e_c00199{left:357.420000px;}
.x16_c00199{left:359.580000px;}
.xc8_c00199{left:361.920000px;}
.xe3_c00199{left:363.000000px;}
.x3b_c00199{left:364.500000px;}
.x80_c00199{left:366.000000px;}
.x64_c00199{left:367.500000px;}
.x75_c00199{left:370.080000px;}
.xc3_c00199{left:374.580000px;}
.xb0_c00199{left:376.500000px;}
.x23_c00199{left:378.420000px;}
.x46_c00199{left:381.000000px;}
.x2f_c00199{left:382.500000px;}
.x53_c00199{left:384.420000px;}
.xdd_c00199{left:385.920000px;}
.xd9_c00199{left:388.080000px;}
.x8a_c00199{left:391.080000px;}
.x5e_c00199{left:393.000000px;}
.xc9_c00199{left:394.080000px;}
.x9_c00199{left:396.000000px;}
.x2_c00199{left:399.000000px;}
.xa5_c00199{left:400.920000px;}
.x3c_c00199{left:402.420000px;}
.x17_c00199{left:403.500000px;}
.x24_c00199{left:406.500000px;}
.xbc_c00199{left:408.420000px;}
.x76_c00199{left:411.000000px;}
.x9a_c00199{left:412.500000px;}
.xcf_c00199{left:414.420000px;}
.x65_c00199{left:415.500000px;}
.x6e_c00199{left:417.420000px;}
.xde_c00199{left:418.500000px;}
.x18_c00199{left:420.000000px;}
.x30_c00199{left:421.920000px;}
.xc4_c00199{left:423.000000px;}
.x54_c00199{left:424.080000px;}
.xbd_c00199{left:426.000000px;}
.xa6_c00199{left:427.920000px;}
.xa_c00199{left:430.080000px;}
.xda_c00199{left:431.580000px;}
.xb6_c00199{left:434.580000px;}
.xef_c00199{left:437.580000px;}
.x3d_c00199{left:439.500000px;}
.xd0_c00199{left:443.145000px;}
.x5f_c00199{left:445.080000px;}
.x25_c00199{left:448.080000px;}
.x81_c00199{left:450.000000px;}
.xb_c00199{left:451.920000px;}
.x31_c00199{left:457.500000px;}
.x3e_c00199{left:459.000000px;}
.xa1_c00199{left:460.920000px;}
.x47_c00199{left:462.420000px;}
.x9b_c00199{left:468.000000px;}
.x66_c00199{left:471.000000px;}
.x55_c00199{left:472.500000px;}
.xdf_c00199{left:475.080000px;}
.xd4_c00199{left:478.275000px;}
.xc_c00199{left:480.000000px;}
.xa7_c00199{left:481.080000px;}
.xac_c00199{left:482.580000px;}
.xf0_c00199{left:484.500000px;}
.xb7_c00199{left:485.580000px;}
.x67_c00199{left:490.500000px;}
.xe6_c00199{left:492.000000px;}
.x19_c00199{left:493.500000px;}
.x3f_c00199{left:495.000000px;}
.x56_c00199{left:496.500000px;}
.x32_c00199{left:501.420000px;}
.x82_c00199{left:504.420000px;}
.x69_c00199{left:506.580000px;}
.x26_c00199{left:509.580000px;}
.x92_c00199{left:511.080000px;}
.x8b_c00199{left:512.580000px;}
.xe7_c00199{left:514.920000px;}
.x1a_c00199{left:516.000000px;}
.x48_c00199{left:517.920000px;}
.x57_c00199{left:519.000000px;}
.x9c_c00199{left:522.420000px;}
.xc5_c00199{left:525.000000px;}
.x33_c00199{left:526.920000px;}
.x1b_c00199{left:531.000000px;}
.x8c_c00199{left:532.920000px;}
.x71_c00199{left:535.080000px;}
.x6f_c00199{left:536.580000px;}
.xe0_c00199{left:538.920000px;}
.x40_c00199{left:540.000000px;}
.xe8_c00199{left:541.080000px;}
.x4d_c00199{left:542.580000px;}
.x95_c00199{left:544.500000px;}
.x68_c00199{left:545.580000px;}
.x60_c00199{left:549.000000px;}
.x27_c00199{left:552.000000px;}
.xd1_c00199{left:554.580000px;}
.xbf_c00199{left:557.775000px;}
.xea_c00199{left:561.420000px;}
.xbe_c00199{left:563.580000px;}
.x83_c00199{left:565.500000px;}
.x77_c00199{left:567.000000px;}
.x34_c00199{left:570.000000px;}
.x6a_c00199{left:571.080000px;}
.x1c_c00199{left:573.000000px;}
.x49_c00199{left:574.920000px;}
.xa8_c00199{left:577.080000px;}
.x58_c00199{left:580.500000px;}
.x9d_c00199{left:582.000000px;}
.x35_c00199{left:583.920000px;}
.x41_c00199{left:585.000000px;}
.x72_c00199{left:588.000000px;}
.xd_c00199{left:589.920000px;}
.x8d_c00199{left:591.420000px;}
.xb8_c00199{left:592.500000px;}
.x78_c00199{left:594.420000px;}
.x28_c00199{left:597.000000px;}
.x70_c00199{left:601.500000px;}
.xa9_c00199{left:607.080000px;}
.xad_c00199{left:609.420000px;}
.x84_c00199{left:610.500000px;}
.xca_c00199{left:615.000000px;}
.x1d_c00199{left:616.920000px;}
.xf4_c00199{left:618.000000px;}
.x4e_c00199{left:625.080000px;}
.xeb_c00199{left:627.000000px;}
.xe_c00199{left:628.500000px;}
.x79_c00199{left:630.000000px;}
.x4a_c00199{left:633.000000px;}
.xf1_c00199{left:634.500000px;}
.xb1_c00199{left:636.000000px;}
.x42_c00199{left:639.000000px;}
.xe4_c00199{left:643.080000px;}
.x9e_c00199{left:646.500000px;}
.x7a_c00199{left:649.500000px;}
.xa2_c00199{left:650.775000px;}
.x29_c00199{left:652.080000px;}
.xe9_c00199{left:654.000000px;}
.xf_c00199{left:655.500000px;}
.x96_c00199{left:656.580000px;}
.xe1_c00199{left:666.000000px;}
.xaa_c00199{left:667.080000px;}
.x85_c00199{left:668.580000px;}
.xd2_c00199{left:670.080000px;}
.xb2_c00199{left:673.920000px;}
.x10_c00199{left:676.920000px;}
.x59_c00199{left:678.000000px;}
.x61_c00199{left:679.500000px;}
.x9f_c00199{left:682.080000px;}
.x1e_c00199{left:684.000000px;}
.x6b_c00199{left:685.080000px;}
.x8e_c00199{left:686.580000px;}
.x7b_c00199{left:690.000000px;}
.xb9_c00199{left:691.500000px;}
.x43_c00199{left:693.000000px;}
.xcb_c00199{left:694.500000px;}
.xb3_c00199{left:702.420000px;}
.x6c_c00199{left:703.920000px;}
.x4b_c00199{left:705.420000px;}
.x7c_c00199{left:706.500000px;}
.x97_c00199{left:713.580000px;}
.x7d_c00199{left:718.500000px;}
.x36_c00199{left:720.000000px;}
@media print{
.v1_c00199{vertical-align:-10.666667pt;}
.v0_c00199{vertical-align:0.000000pt;}
.ls0_c00199{letter-spacing:0.000000pt;}
.ws0_c00199{word-spacing:-8.027491pt;}
.ws1_c00199{word-spacing:-0.724461pt;}
.ws2_c00199{word-spacing:-0.239117pt;}
.ws3_c00199{word-spacing:0.000000pt;}
.fs6_c00199{font-size:3.040000pt;}
.fs7_c00199{font-size:6.026667pt;}
.fs8_c00199{font-size:12.106667pt;}
.fs1_c00199{font-size:16.640000pt;}
.fs5_c00199{font-size:18.133333pt;}
.fs3_c00199{font-size:22.666667pt;}
.fs0_c00199{font-size:25.706667pt;}
.fs4_c00199{font-size:28.746667pt;}
.fs2_c00199{font-size:31.733333pt;}
.y0_c00199{bottom:0.000000pt;}
.yc0_c00199{bottom:225.106667pt;}
.yc1_c00199{bottom:227.026667pt;}
.ybe_c00199{bottom:242.440000pt;}
.ybf_c00199{bottom:243.400000pt;}
.ybc_c00199{bottom:244.360000pt;}
.ybd_c00199{bottom:244.373333pt;}
.ybb_c00199{bottom:261.693333pt;}
.yb7_c00199{bottom:278.440000pt;}
.yba_c00199{bottom:279.226667pt;}
.yb9_c00199{bottom:279.400000pt;}
.yb6_c00199{bottom:279.973333pt;}
.yb8_c00199{bottom:280.360000pt;}
.yb5_c00199{bottom:296.560000pt;}
.yb3_c00199{bottom:296.733333pt;}
.yb2_c00199{bottom:297.306667pt;}
.yb1_c00199{bottom:297.693333pt;}
.yb4_c00199{bottom:298.640000pt;}
.yb0_c00199{bottom:313.106667pt;}
.yaf_c00199{bottom:315.026667pt;}
.yad_c00199{bottom:329.693333pt;}
.yae_c00199{bottom:330.440000pt;}
.yab_c00199{bottom:332.360000pt;}
.yac_c00199{bottom:333.706667pt;}
.ya9_c00199{bottom:349.106667pt;}
.yaa_c00199{bottom:349.693333pt;}
.ya7_c00199{bottom:349.893333pt;}
.ya6_c00199{bottom:351.026667pt;}
.ya8_c00199{bottom:351.040000pt;}
.ya5_c00199{bottom:364.360000pt;}
.ya2_c00199{bottom:365.106667pt;}
.ya3_c00199{bottom:365.306667pt;}
.ya4_c00199{bottom:366.066667pt;}
.y9f_c00199{bottom:366.440000pt;}
.ya1_c00199{bottom:367.400000pt;}
.ya0_c00199{bottom:368.373333pt;}
.y9e_c00199{bottom:383.773333pt;}
.y9d_c00199{bottom:384.733333pt;}
.y9c_c00199{bottom:385.693333pt;}
.y9a_c00199{bottom:399.773333pt;}
.y98_c00199{bottom:401.106667pt;}
.y9b_c00199{bottom:401.693333pt;}
.y99_c00199{bottom:402.640000pt;}
.y97_c00199{bottom:403.026667pt;}
.y93_c00199{bottom:418.440000pt;}
.y96_c00199{bottom:419.226667pt;}
.y95_c00199{bottom:420.360000pt;}
.y94_c00199{bottom:420.373333pt;}
.y8e_c00199{bottom:439.400000pt;}
.y8f_c00199{bottom:440.360000pt;}
.y90_c00199{bottom:441.306667pt;}
.y92_c00199{bottom:441.506667pt;}
.y91_c00199{bottom:442.266667pt;}
.y8b_c00199{bottom:454.640000pt;}
.y88_c00199{bottom:455.400000pt;}
.y8d_c00199{bottom:455.600000pt;}
.y8c_c00199{bottom:456.360000pt;}
.y89_c00199{bottom:456.560000pt;}
.y8a_c00199{bottom:458.266667pt;}
.y86_c00199{bottom:475.773333pt;}
.y87_c00199{bottom:476.733333pt;}
.y84_c00199{bottom:503.973333pt;}
.y85_c00199{bottom:504.360000pt;}
.y82_c00199{bottom:505.106667pt;}
.y81_c00199{bottom:506.066667pt;}
.y80_c00199{bottom:507.026667pt;}
.y83_c00199{bottom:507.226667pt;}
.y7f_c00199{bottom:522.440000pt;}
.y7d_c00199{bottom:523.773333pt;}
.y7e_c00199{bottom:524.360000pt;}
.y7c_c00199{bottom:525.693333pt;}
.y7b_c00199{bottom:539.773333pt;}
.y78_c00199{bottom:541.106667pt;}
.y7a_c00199{bottom:541.693333pt;}
.y79_c00199{bottom:541.893333pt;}
.y77_c00199{bottom:543.026667pt;}
.y76_c00199{bottom:556.360000pt;}
.y75_c00199{bottom:557.306667pt;}
.y74_c00199{bottom:558.440000pt;}
.y73_c00199{bottom:559.226667pt;}
.y72_c00199{bottom:560.360000pt;}
.y71_c00199{bottom:574.440000pt;}
.y70_c00199{bottom:577.693333pt;}
.y6e_c00199{bottom:593.106667pt;}
.y6f_c00199{bottom:593.893333pt;}
.y6d_c00199{bottom:595.026667pt;}
.y69_c00199{bottom:609.693333pt;}
.y67_c00199{bottom:610.440000pt;}
.y66_c00199{bottom:611.026667pt;}
.y6a_c00199{bottom:611.400000pt;}
.y68_c00199{bottom:612.360000pt;}
.y6b_c00199{bottom:612.560000pt;}
.y6c_c00199{bottom:613.306667pt;}
.y63_c00199{bottom:627.026667pt;}
.y65_c00199{bottom:628.360000pt;}
.y64_c00199{bottom:629.893333pt;}
.y62_c00199{bottom:631.026667pt;}
.y61_c00199{bottom:645.106667pt;}
.y60_c00199{bottom:646.440000pt;}
.y5d_c00199{bottom:647.026667pt;}
.y5f_c00199{bottom:647.226667pt;}
.y5e_c00199{bottom:647.973333pt;}
.y5c_c00199{bottom:648.360000pt;}
.y5b_c00199{bottom:661.693333pt;}
.y5a_c00199{bottom:662.440000pt;}
.y56_c00199{bottom:663.026667pt;}
.y59_c00199{bottom:663.773333pt;}
.y58_c00199{bottom:664.560000pt;}
.y57_c00199{bottom:665.306667pt;}
.y55_c00199{bottom:681.106667pt;}
.y54_c00199{bottom:683.026667pt;}
.y53_c00199{bottom:683.973333pt;}
.y4f_c00199{bottom:697.693333pt;}
.y52_c00199{bottom:698.440000pt;}
.y51_c00199{bottom:699.400000pt;}
.y50_c00199{bottom:700.360000pt;}
.y4b_c00199{bottom:715.026667pt;}
.y4e_c00199{bottom:715.426667pt;}
.y48_c00199{bottom:715.773333pt;}
.y4d_c00199{bottom:716.373333pt;}
.y4c_c00199{bottom:716.560000pt;}
.y4a_c00199{bottom:716.733333pt;}
.y49_c00199{bottom:717.306667pt;}
.y47_c00199{bottom:717.693333pt;}
.y46_c00199{bottom:731.973333pt;}
.y45_c00199{bottom:733.106667pt;}
.y40_c00199{bottom:750.640000pt;}
.y41_c00199{bottom:751.773333pt;}
.y44_c00199{bottom:752.560000pt;}
.y43_c00199{bottom:752.733333pt;}
.y42_c00199{bottom:753.693333pt;}
.y3e_c00199{bottom:767.973333pt;}
.y3d_c00199{bottom:769.106667pt;}
.y3f_c00199{bottom:770.640000pt;}
.y3c_c00199{bottom:771.026667pt;}
.y39_c00199{bottom:786.440000pt;}
.y3b_c00199{bottom:787.226667pt;}
.y3a_c00199{bottom:788.360000pt;}
.y35_c00199{bottom:803.026667pt;}
.y37_c00199{bottom:803.773333pt;}
.y36_c00199{bottom:804.560000pt;}
.y38_c00199{bottom:804.733333pt;}
.y34_c00199{bottom:805.693333pt;}
.y31_c00199{bottom:820.360000pt;}
.y33_c00199{bottom:820.933333pt;}
.y2f_c00199{bottom:821.106667pt;}
.y32_c00199{bottom:821.306667pt;}
.y30_c00199{bottom:822.640000pt;}
.y2e_c00199{bottom:823.026667pt;}
.y2c_c00199{bottom:836.360000pt;}
.y2d_c00199{bottom:837.693333pt;}
.y29_c00199{bottom:838.440000pt;}
.y2a_c00199{bottom:840.360000pt;}
.y2b_c00199{bottom:840.560000pt;}
.y28_c00199{bottom:855.773333pt;}
.y23_c00199{bottom:856.360000pt;}
.y27_c00199{bottom:856.733333pt;}
.y26_c00199{bottom:857.106667pt;}
.y22_c00199{bottom:857.693333pt;}
.y24_c00199{bottom:857.893333pt;}
.y25_c00199{bottom:858.640000pt;}
.y1d_c00199{bottom:873.106667pt;}
.y21_c00199{bottom:873.306667pt;}
.y20_c00199{bottom:873.693333pt;}
.y1f_c00199{bottom:875.026667pt;}
.y1c_c00199{bottom:875.226667pt;}
.y1e_c00199{bottom:875.973333pt;}
.y1a_c00199{bottom:890.440000pt;}
.y1b_c00199{bottom:890.640000pt;}
.y19_c00199{bottom:891.400000pt;}
.y17_c00199{bottom:892.360000pt;}
.y18_c00199{bottom:893.306667pt;}
.y11_c00199{bottom:907.026667pt;}
.y14_c00199{bottom:907.773333pt;}
.y15_c00199{bottom:907.973333pt;}
.y12_c00199{bottom:908.733333pt;}
.y10_c00199{bottom:909.106667pt;}
.y13_c00199{bottom:909.693333pt;}
.y16_c00199{bottom:910.640000pt;}
.yf_c00199{bottom:924.360000pt;}
.yd_c00199{bottom:925.106667pt;}
.yc_c00199{bottom:926.440000pt;}
.ya_c00199{bottom:927.026667pt;}
.ye_c00199{bottom:927.226667pt;}
.y9_c00199{bottom:927.400000pt;}
.yb_c00199{bottom:927.973333pt;}
.y8_c00199{bottom:928.360000pt;}
.y4_c00199{bottom:941.693333pt;}
.y6_c00199{bottom:943.773333pt;}
.y5_c00199{bottom:944.560000pt;}
.y7_c00199{bottom:945.306667pt;}
.y3_c00199{bottom:945.693333pt;}
.y1_c00199{bottom:977.693333pt;}
.y2_c00199{bottom:980.560000pt;}
.h7_c00199{height:3.739141pt;}
.h8_c00199{height:7.412682pt;}
.h9_c00199{height:14.890964pt;}
.h2_c00199{height:20.466875pt;}
.h6_c00199{height:22.303646pt;}
.h4_c00199{height:27.879557pt;}
.h1_c00199{height:31.618698pt;}
.h5_c00199{height:35.357839pt;}
.h3_c00199{height:39.031380pt;}
.h0_c00199{height:1186.666667pt;}
.w0_c00199{width:782.666667pt;}
.x0_c00199{left:0.000000pt;}
.xe5_c00199{left:129.333333pt;}
.xcc_c00199{left:131.040000pt;}
.x7e_c00199{left:132.000000pt;}
.x37_c00199{left:133.333333pt;}
.x1_c00199{left:135.040000pt;}
.xae_c00199{left:138.293333pt;}
.x4f_c00199{left:139.626667pt;}
.x3_c00199{left:142.293333pt;}
.xdb_c00199{left:143.626667pt;}
.xc1_c00199{left:145.333333pt;}
.xcd_c00199{left:153.906667pt;}
.xec_c00199{left:157.706667pt;}
.x73_c00199{left:160.000000pt;}
.x11_c00199{left:161.333333pt;}
.x4_c00199{left:162.666667pt;}
.xd3_c00199{left:170.666667pt;}
.xe2_c00199{left:171.626667pt;}
.xf2_c00199{left:177.706667pt;}
.x86_c00199{left:179.040000pt;}
.xed_c00199{left:180.960000pt;}
.x8f_c00199{left:182.666667pt;}
.xb4_c00199{left:184.960000pt;}
.xab_c00199{left:188.373333pt;}
.x1f_c00199{left:190.293333pt;}
.x2a_c00199{left:192.000000pt;}
.x12_c00199{left:192.960000pt;}
.x5_c00199{left:196.000000pt;}
.x44_c00199{left:196.960000pt;}
.xa3_c00199{left:201.333333pt;}
.x74_c00199{left:203.040000pt;}
.x90_c00199{left:204.000000pt;}
.x5a_c00199{left:208.000000pt;}
.x38_c00199{left:208.960000pt;}
.x62_c00199{left:210.666667pt;}
.xf3_c00199{left:211.626667pt;}
.x50_c00199{left:212.960000pt;}
.x2b_c00199{left:214.666667pt;}
.xd5_c00199{left:217.333333pt;}
.x45_c00199{left:218.666667pt;}
.x20_c00199{left:220.000000pt;}
.x91_c00199{left:222.666667pt;}
.xb5_c00199{left:224.000000pt;}
.x39_c00199{left:225.706667pt;}
.x13_c00199{left:226.666667pt;}
.xa0_c00199{left:230.666667pt;}
.x51_c00199{left:232.373333pt;}
.x5b_c00199{left:233.706667pt;}
.xba_c00199{left:235.040000pt;}
.xc6_c00199{left:236.000000pt;}
.x6_c00199{left:238.666667pt;}
.xc0_c00199{left:241.706667pt;}
.x93_c00199{left:244.000000pt;}
.xdc_c00199{left:245.333333pt;}
.xa4_c00199{left:250.293333pt;}
.x2c_c00199{left:251.626667pt;}
.xc7_c00199{left:253.333333pt;}
.x21_c00199{left:255.040000pt;}
.xc2_c00199{left:256.960000pt;}
.x4c_c00199{left:258.666667pt;}
.xd6_c00199{left:262.666667pt;}
.x87_c00199{left:263.626667pt;}
.x5c_c00199{left:264.960000pt;}
.x14_c00199{left:267.626667pt;}
.x6d_c00199{left:269.706667pt;}
.x98_c00199{left:271.626667pt;}
.x3a_c00199{left:276.373333pt;}
.x88_c00199{left:279.040000pt;}
.xd7_c00199{left:280.960000pt;}
.x99_c00199{left:282.666667pt;}
.x52_c00199{left:287.040000pt;}
.x7f_c00199{left:288.000000pt;}
.x7_c00199{left:289.333333pt;}
.x22_c00199{left:291.040000pt;}
.x63_c00199{left:292.000000pt;}
.x15_c00199{left:295.040000pt;}
.xaf_c00199{left:297.706667pt;}
.xee_c00199{left:298.666667pt;}
.xbb_c00199{left:301.333333pt;}
.x2d_c00199{left:302.293333pt;}
.x89_c00199{left:304.000000pt;}
.xd8_c00199{left:304.960000pt;}
.x5d_c00199{left:306.293333pt;}
.x94_c00199{left:307.626667pt;}
.x8_c00199{left:310.293333pt;}
.xce_c00199{left:314.666667pt;}
.x2e_c00199{left:317.706667pt;}
.x16_c00199{left:319.626667pt;}
.xc8_c00199{left:321.706667pt;}
.xe3_c00199{left:322.666667pt;}
.x3b_c00199{left:324.000000pt;}
.x80_c00199{left:325.333333pt;}
.x64_c00199{left:326.666667pt;}
.x75_c00199{left:328.960000pt;}
.xc3_c00199{left:332.960000pt;}
.xb0_c00199{left:334.666667pt;}
.x23_c00199{left:336.373333pt;}
.x46_c00199{left:338.666667pt;}
.x2f_c00199{left:340.000000pt;}
.x53_c00199{left:341.706667pt;}
.xdd_c00199{left:343.040000pt;}
.xd9_c00199{left:344.960000pt;}
.x8a_c00199{left:347.626667pt;}
.x5e_c00199{left:349.333333pt;}
.xc9_c00199{left:350.293333pt;}
.x9_c00199{left:352.000000pt;}
.x2_c00199{left:354.666667pt;}
.xa5_c00199{left:356.373333pt;}
.x3c_c00199{left:357.706667pt;}
.x17_c00199{left:358.666667pt;}
.x24_c00199{left:361.333333pt;}
.xbc_c00199{left:363.040000pt;}
.x76_c00199{left:365.333333pt;}
.x9a_c00199{left:366.666667pt;}
.xcf_c00199{left:368.373333pt;}
.x65_c00199{left:369.333333pt;}
.x6e_c00199{left:371.040000pt;}
.xde_c00199{left:372.000000pt;}
.x18_c00199{left:373.333333pt;}
.x30_c00199{left:375.040000pt;}
.xc4_c00199{left:376.000000pt;}
.x54_c00199{left:376.960000pt;}
.xbd_c00199{left:378.666667pt;}
.xa6_c00199{left:380.373333pt;}
.xa_c00199{left:382.293333pt;}
.xda_c00199{left:383.626667pt;}
.xb6_c00199{left:386.293333pt;}
.xef_c00199{left:388.960000pt;}
.x3d_c00199{left:390.666667pt;}
.xd0_c00199{left:393.906667pt;}
.x5f_c00199{left:395.626667pt;}
.x25_c00199{left:398.293333pt;}
.x81_c00199{left:400.000000pt;}
.xb_c00199{left:401.706667pt;}
.x31_c00199{left:406.666667pt;}
.x3e_c00199{left:408.000000pt;}
.xa1_c00199{left:409.706667pt;}
.x47_c00199{left:411.040000pt;}
.x9b_c00199{left:416.000000pt;}
.x66_c00199{left:418.666667pt;}
.x55_c00199{left:420.000000pt;}
.xdf_c00199{left:422.293333pt;}
.xd4_c00199{left:425.133333pt;}
.xc_c00199{left:426.666667pt;}
.xa7_c00199{left:427.626667pt;}
.xac_c00199{left:428.960000pt;}
.xf0_c00199{left:430.666667pt;}
.xb7_c00199{left:431.626667pt;}
.x67_c00199{left:436.000000pt;}
.xe6_c00199{left:437.333333pt;}
.x19_c00199{left:438.666667pt;}
.x3f_c00199{left:440.000000pt;}
.x56_c00199{left:441.333333pt;}
.x32_c00199{left:445.706667pt;}
.x82_c00199{left:448.373333pt;}
.x69_c00199{left:450.293333pt;}
.x26_c00199{left:452.960000pt;}
.x92_c00199{left:454.293333pt;}
.x8b_c00199{left:455.626667pt;}
.xe7_c00199{left:457.706667pt;}
.x1a_c00199{left:458.666667pt;}
.x48_c00199{left:460.373333pt;}
.x57_c00199{left:461.333333pt;}
.x9c_c00199{left:464.373333pt;}
.xc5_c00199{left:466.666667pt;}
.x33_c00199{left:468.373333pt;}
.x1b_c00199{left:472.000000pt;}
.x8c_c00199{left:473.706667pt;}
.x71_c00199{left:475.626667pt;}
.x6f_c00199{left:476.960000pt;}
.xe0_c00199{left:479.040000pt;}
.x40_c00199{left:480.000000pt;}
.xe8_c00199{left:480.960000pt;}
.x4d_c00199{left:482.293333pt;}
.x95_c00199{left:484.000000pt;}
.x68_c00199{left:484.960000pt;}
.x60_c00199{left:488.000000pt;}
.x27_c00199{left:490.666667pt;}
.xd1_c00199{left:492.960000pt;}
.xbf_c00199{left:495.800000pt;}
.xea_c00199{left:499.040000pt;}
.xbe_c00199{left:500.960000pt;}
.x83_c00199{left:502.666667pt;}
.x77_c00199{left:504.000000pt;}
.x34_c00199{left:506.666667pt;}
.x6a_c00199{left:507.626667pt;}
.x1c_c00199{left:509.333333pt;}
.x49_c00199{left:511.040000pt;}
.xa8_c00199{left:512.960000pt;}
.x58_c00199{left:516.000000pt;}
.x9d_c00199{left:517.333333pt;}
.x35_c00199{left:519.040000pt;}
.x41_c00199{left:520.000000pt;}
.x72_c00199{left:522.666667pt;}
.xd_c00199{left:524.373333pt;}
.x8d_c00199{left:525.706667pt;}
.xb8_c00199{left:526.666667pt;}
.x78_c00199{left:528.373333pt;}
.x28_c00199{left:530.666667pt;}
.x70_c00199{left:534.666667pt;}
.xa9_c00199{left:539.626667pt;}
.xad_c00199{left:541.706667pt;}
.x84_c00199{left:542.666667pt;}
.xca_c00199{left:546.666667pt;}
.x1d_c00199{left:548.373333pt;}
.xf4_c00199{left:549.333333pt;}
.x4e_c00199{left:555.626667pt;}
.xeb_c00199{left:557.333333pt;}
.xe_c00199{left:558.666667pt;}
.x79_c00199{left:560.000000pt;}
.x4a_c00199{left:562.666667pt;}
.xf1_c00199{left:564.000000pt;}
.xb1_c00199{left:565.333333pt;}
.x42_c00199{left:568.000000pt;}
.xe4_c00199{left:571.626667pt;}
.x9e_c00199{left:574.666667pt;}
.x7a_c00199{left:577.333333pt;}
.xa2_c00199{left:578.466667pt;}
.x29_c00199{left:579.626667pt;}
.xe9_c00199{left:581.333333pt;}
.xf_c00199{left:582.666667pt;}
.x96_c00199{left:583.626667pt;}
.xe1_c00199{left:592.000000pt;}
.xaa_c00199{left:592.960000pt;}
.x85_c00199{left:594.293333pt;}
.xd2_c00199{left:595.626667pt;}
.xb2_c00199{left:599.040000pt;}
.x10_c00199{left:601.706667pt;}
.x59_c00199{left:602.666667pt;}
.x61_c00199{left:604.000000pt;}
.x9f_c00199{left:606.293333pt;}
.x1e_c00199{left:608.000000pt;}
.x6b_c00199{left:608.960000pt;}
.x8e_c00199{left:610.293333pt;}
.x7b_c00199{left:613.333333pt;}
.xb9_c00199{left:614.666667pt;}
.x43_c00199{left:616.000000pt;}
.xcb_c00199{left:617.333333pt;}
.xb3_c00199{left:624.373333pt;}
.x6c_c00199{left:625.706667pt;}
.x4b_c00199{left:627.040000pt;}
.x7c_c00199{left:628.000000pt;}
.x97_c00199{left:634.293333pt;}
.x7d_c00199{left:638.666667pt;}
.x36_c00199{left:640.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_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_7b98ac1be1ed342ff39f2424.woff2')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:1.688965;font-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_c00200{transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);}
.m19_c00200{transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);}
.me0_c00200{transform:matrix(0.346218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346218,0.000000,0.000000,0.250000,0,0);}
.me5_c00200{transform:matrix(0.355882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355882,0.000000,0.000000,0.250000,0,0);}
.m10_c00200{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m72_c00200{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m61_c00200{transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);}
.m9_c00200{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m41_c00200{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m36_c00200{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.mc6_c00200{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mcb_c00200{transform:matrix(0.376050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376050,0.000000,0.000000,0.250000,0,0);}
.m5e_c00200{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m105_c00200{transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);}
.m26_c00200{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m3c_c00200{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.me1_c00200{transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);}
.m9b_c00200{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m3a_c00200{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m70_c00200{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.mc2_c00200{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m17_c00200{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.me6_c00200{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m88_c00200{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.ma3_c00200{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m63_c00200{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m9f_c00200{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mc0_c00200{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.me3_c00200{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m83_c00200{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.mb6_c00200{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m95_c00200{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.ma8_c00200{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m9e_c00200{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m108_c00200{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m79_c00200{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.ma4_c00200{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m94_c00200{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m109_c00200{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m6_c00200{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.me8_c00200{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m37_c00200{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m43_c00200{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m100_c00200{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m66_c00200{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mf9_c00200{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.me4_c00200{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.mea_c00200{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m69_c00200{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m46_c00200{transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);}
.mb2_c00200{transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);}
.mb_c00200{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m8f_c00200{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m25_c00200{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mfc_c00200{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.mad_c00200{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m54_c00200{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m7f_c00200{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m48_c00200{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.m106_c00200{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m82_c00200{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mdf_c00200{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m44_c00200{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m6b_c00200{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.mbf_c00200{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mc9_c00200{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.ma2_c00200{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mb8_c00200{transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);}
.mfd_c00200{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.mab_c00200{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m21_c00200{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.mec_c00200{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m7b_c00200{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.ma7_c00200{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m5f_c00200{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m45_c00200{transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);}
.m15_c00200{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.maf_c00200{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m73_c00200{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.mc5_c00200{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m1_c00200{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.mc4_c00200{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m8a_c00200{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m58_c00200{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m49_c00200{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.ma5_c00200{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.mee_c00200{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m65_c00200{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.mf8_c00200{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.mef_c00200{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.ma0_c00200{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.m103_c00200{transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);}
.m8e_c00200{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m89_c00200{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.md8_c00200{transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);}
.m55_c00200{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.mbe_c00200{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.m3d_c00200{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m5a_c00200{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.maa_c00200{transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);}
.m2d_c00200{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.md4_c00200{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m3f_c00200{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m5_c00200{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m80_c00200{transform:matrix(0.482773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482773,0.000000,0.000000,0.250000,0,0);}
.m38_c00200{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.mc7_c00200{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m6e_c00200{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mc1_c00200{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mf4_c00200{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.mbc_c00200{transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);}
.mf2_c00200{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m33_c00200{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mce_c00200{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.m86_c00200{transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);}
.m2c_c00200{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mf_c00200{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m22_c00200{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);}
.md6_c00200{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.ma9_c00200{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mcc_c00200{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.meb_c00200{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m18_c00200{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mf3_c00200{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m5b_c00200{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.md1_c00200{transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);}
.mf1_c00200{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m23_c00200{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.ma6_c00200{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m30_c00200{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.ma_c00200{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m64_c00200{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m56_c00200{transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);}
.mdb_c00200{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m35_c00200{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);}
.mff_c00200{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m20_c00200{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.mb4_c00200{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m107_c00200{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mac_c00200{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.mc8_c00200{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mb5_c00200{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m4c_c00200{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_c00200{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m102_c00200{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mcf_c00200{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m8_c00200{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m9d_c00200{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m6a_c00200{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m8d_c00200{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m1a_c00200{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mf5_c00200{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m2_c00200{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m1d_c00200{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m11_c00200{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.me_c00200{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m40_c00200{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.mda_c00200{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m71_c00200{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m97_c00200{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m32_c00200{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.md3_c00200{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m14_c00200{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m98_c00200{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m7a_c00200{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m3e_c00200{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m84_c00200{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mfe_c00200{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m1c_c00200{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m9c_c00200{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.md9_c00200{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m1b_c00200{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m6c_c00200{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m87_c00200{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m4d_c00200{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m1e_c00200{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m104_c00200{transform:matrix(0.549629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549629,0.000000,0.000000,0.250000,0,0);}
.m85_c00200{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m7c_c00200{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.med_c00200{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mdc_c00200{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m42_c00200{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.mbd_c00200{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m90_c00200{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m93_c00200{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m99_c00200{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.me9_c00200{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.me7_c00200{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m51_c00200{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.m8c_c00200{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);}
.mbb_c00200{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m76_c00200{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m74_c00200{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m59_c00200{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.mdd_c00200{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.md5_c00200{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m60_c00200{transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);}
.m7_c00200{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m77_c00200{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.mae_c00200{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m3_c00200{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m92_c00200{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.mca_c00200{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mcd_c00200{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m3b_c00200{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.me2_c00200{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m4b_c00200{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m50_c00200{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m96_c00200{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m7d_c00200{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m5c_c00200{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.mfb_c00200{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.ma1_c00200{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m0_c00200{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.mf0_c00200{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.m75_c00200{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m81_c00200{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mfa_c00200{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m78_c00200{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m4a_c00200{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m91_c00200{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m31_c00200{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);}
.mc3_c00200{transform:matrix(0.628235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628235,0.000000,0.000000,0.250000,0,0);}
.m29_c00200{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m4e_c00200{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m39_c00200{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.mb1_c00200{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m2f_c00200{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.mde_c00200{transform:matrix(0.639076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639076,0.000000,0.000000,0.250000,0,0);}
.m57_c00200{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m2e_c00200{transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);}
.md_c00200{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.mb0_c00200{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m12_c00200{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m8b_c00200{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m6d_c00200{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m47_c00200{transform:matrix(0.671324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.671324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.671324,0.000000,0.000000,0.250000,0,0);}
.m28_c00200{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m34_c00200{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mb3_c00200{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mf7_c00200{transform:matrix(0.696471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696471,0.000000,0.000000,0.250000,0,0);}
.m24_c00200{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.mf6_c00200{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.m62_c00200{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m4_c00200{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m5d_c00200{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m52_c00200{transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);}
.m1f_c00200{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.md0_c00200{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m2b_c00200{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.mba_c00200{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.mc_c00200{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m7e_c00200{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.md2_c00200{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m16_c00200{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m101_c00200{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.m13_c00200{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.md7_c00200{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.mb9_c00200{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m6f_c00200{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mb7_c00200{transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);}
.m27_c00200{transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);}
.m4f_c00200{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m2a_c00200{transform:matrix(1.034141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.034141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.034141,0.000000,0.000000,0.250000,0,0);}
.m53_c00200{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.m68_c00200{transform:matrix(3.978070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.978070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.978070,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;}
.fs8_c00200{font-size:3.420000px;}
.fs7_c00200{font-size:13.620000px;}
.fs3_c00200{font-size:18.720000px;}
.fs0_c00200{font-size:20.400000px;}
.fs4_c00200{font-size:25.500000px;}
.fs1_c00200{font-size:28.920000px;}
.fs5_c00200{font-size:32.340000px;}
.fs2_c00200{font-size:35.700000px;}
.fs6_c00200{font-size:39.120000px;}
.y0_c00200{bottom:0.000000px;}
.ye1_c00200{bottom:253.245000px;}
.ye2_c00200{bottom:254.130000px;}
.ye4_c00200{bottom:254.325000px;}
.ye3_c00200{bottom:255.405000px;}
.ydf_c00200{bottom:272.745000px;}
.ye0_c00200{bottom:273.630000px;}
.yde_c00200{bottom:273.825000px;}
.ydd_c00200{bottom:274.905000px;}
.yda_c00200{bottom:292.245000px;}
.ydb_c00200{bottom:293.325000px;}
.yd9_c00200{bottom:294.405000px;}
.ydc_c00200{bottom:294.630000px;}
.yd8_c00200{bottom:295.905000px;}
.yd7_c00200{bottom:310.905000px;}
.yd6_c00200{bottom:311.745000px;}
.yd4_c00200{bottom:313.245000px;}
.yd5_c00200{bottom:313.905000px;}
.yd3_c00200{bottom:314.130000px;}
.yd2_c00200{bottom:315.405000px;}
.yce_c00200{bottom:330.405000px;}
.ycf_c00200{bottom:332.745000px;}
.yd0_c00200{bottom:333.630000px;}
.yd1_c00200{bottom:333.825000px;}
.ycd_c00200{bottom:334.905000px;}
.ycc_c00200{bottom:352.245000px;}
.yca_c00200{bottom:353.130000px;}
.yc9_c00200{bottom:354.405000px;}
.ycb_c00200{bottom:355.470000px;}
.yc7_c00200{bottom:371.745000px;}
.yc8_c00200{bottom:372.825000px;}
.yc6_c00200{bottom:373.905000px;}
.yc3_c00200{bottom:390.405000px;}
.yc4_c00200{bottom:392.325000px;}
.yc5_c00200{bottom:392.970000px;}
.yc1_c00200{bottom:393.405000px;}
.yc2_c00200{bottom:393.630000px;}
.ybf_c00200{bottom:409.905000px;}
.ybe_c00200{bottom:410.745000px;}
.yc0_c00200{bottom:411.825000px;}
.ybc_c00200{bottom:412.905000px;}
.ybd_c00200{bottom:413.130000px;}
.yb8_c00200{bottom:430.245000px;}
.yb9_c00200{bottom:432.405000px;}
.yba_c00200{bottom:432.630000px;}
.ybb_c00200{bottom:433.470000px;}
.yb3_c00200{bottom:449.745000px;}
.yb5_c00200{bottom:450.180000px;}
.yb7_c00200{bottom:451.245000px;}
.yb4_c00200{bottom:451.905000px;}
.yb6_c00200{bottom:452.970000px;}
.yb2_c00200{bottom:453.405000px;}
.yaf_c00200{bottom:470.745000px;}
.yb0_c00200{bottom:471.405000px;}
.yb1_c00200{bottom:471.630000px;}
.yae_c00200{bottom:472.905000px;}
.yad_c00200{bottom:490.245000px;}
.yab_c00200{bottom:491.130000px;}
.yaa_c00200{bottom:491.325000px;}
.yac_c00200{bottom:492.405000px;}
.ya8_c00200{bottom:508.245000px;}
.ya9_c00200{bottom:509.325000px;}
.ya5_c00200{bottom:509.745000px;}
.ya7_c00200{bottom:510.630000px;}
.ya6_c00200{bottom:511.905000px;}
.ya3_c00200{bottom:529.245000px;}
.ya1_c00200{bottom:530.325000px;}
.ya2_c00200{bottom:531.405000px;}
.ya4_c00200{bottom:531.630000px;}
.y9e_c00200{bottom:548.325000px;}
.y9f_c00200{bottom:548.745000px;}
.y9d_c00200{bottom:550.905000px;}
.ya0_c00200{bottom:551.130000px;}
.y99_c00200{bottom:568.245000px;}
.y9b_c00200{bottom:569.325000px;}
.y97_c00200{bottom:570.405000px;}
.y98_c00200{bottom:570.630000px;}
.y9a_c00200{bottom:571.470000px;}
.y9c_c00200{bottom:572.325000px;}
.y96_c00200{bottom:587.325000px;}
.y95_c00200{bottom:587.970000px;}
.y90_c00200{bottom:588.825000px;}
.y94_c00200{bottom:589.245000px;}
.y91_c00200{bottom:589.905000px;}
.y93_c00200{bottom:590.130000px;}
.y92_c00200{bottom:591.405000px;}
.y8f_c00200{bottom:606.405000px;}
.y8c_c00200{bottom:608.745000px;}
.y8e_c00200{bottom:609.630000px;}
.y8d_c00200{bottom:610.905000px;}
.y8a_c00200{bottom:628.245000px;}
.y8b_c00200{bottom:629.130000px;}
.y89_c00200{bottom:630.405000px;}
.y88_c00200{bottom:631.470000px;}
.y87_c00200{bottom:647.325000px;}
.y83_c00200{bottom:647.745000px;}
.y86_c00200{bottom:649.470000px;}
.y84_c00200{bottom:649.905000px;}
.y85_c00200{bottom:650.970000px;}
.y7e_c00200{bottom:667.245000px;}
.y82_c00200{bottom:668.130000px;}
.y81_c00200{bottom:668.325000px;}
.y7f_c00200{bottom:669.405000px;}
.y80_c00200{bottom:670.470000px;}
.y78_c00200{bottom:686.745000px;}
.y7a_c00200{bottom:687.825000px;}
.y7c_c00200{bottom:688.245000px;}
.y79_c00200{bottom:688.905000px;}
.y7b_c00200{bottom:689.130000px;}
.y7d_c00200{bottom:690.405000px;}
.y75_c00200{bottom:706.245000px;}
.y76_c00200{bottom:707.325000px;}
.y73_c00200{bottom:707.745000px;}
.y74_c00200{bottom:708.405000px;}
.y77_c00200{bottom:709.905000px;}
.y72_c00200{bottom:727.245000px;}
.y71_c00200{bottom:727.905000px;}
.y70_c00200{bottom:728.970000px;}
.y6f_c00200{bottom:729.405000px;}
.y6e_c00200{bottom:745.470000px;}
.y6c_c00200{bottom:746.745000px;}
.y6d_c00200{bottom:748.905000px;}
.y67_c00200{bottom:765.825000px;}
.y65_c00200{bottom:766.245000px;}
.y6a_c00200{bottom:766.470000px;}
.y69_c00200{bottom:767.130000px;}
.y66_c00200{bottom:767.325000px;}
.y6b_c00200{bottom:767.970000px;}
.y68_c00200{bottom:768.405000px;}
.y60_c00200{bottom:785.745000px;}
.y64_c00200{bottom:786.825000px;}
.y63_c00200{bottom:787.470000px;}
.y61_c00200{bottom:787.905000px;}
.y62_c00200{bottom:788.970000px;}
.y5f_c00200{bottom:805.245000px;}
.y5c_c00200{bottom:805.470000px;}
.y5e_c00200{bottom:806.130000px;}
.y5d_c00200{bottom:806.550000px;}
.y5b_c00200{bottom:807.405000px;}
.y5a_c00200{bottom:807.630000px;}
.y58_c00200{bottom:823.905000px;}
.y53_c00200{bottom:824.745000px;}
.y56_c00200{bottom:824.970000px;}
.y55_c00200{bottom:826.905000px;}
.y54_c00200{bottom:826.920000px;}
.y59_c00200{bottom:827.130000px;}
.y57_c00200{bottom:827.970000px;}
.y50_c00200{bottom:847.905000px;}
.y51_c00200{bottom:848.130000px;}
.y52_c00200{bottom:848.970000px;}
.y4d_c00200{bottom:861.825000px;}
.y4a_c00200{bottom:862.905000px;}
.y4c_c00200{bottom:863.130000px;}
.y49_c00200{bottom:863.550000px;}
.y4b_c00200{bottom:863.970000px;}
.y4e_c00200{bottom:864.195000px;}
.y4f_c00200{bottom:865.050000px;}
.y48_c00200{bottom:876.825000px;}
.y45_c00200{bottom:877.905000px;}
.y47_c00200{bottom:878.970000px;}
.y44_c00200{bottom:879.195000px;}
.y46_c00200{bottom:880.050000px;}
.y40_c00200{bottom:890.970000px;}
.y3e_c00200{bottom:891.405000px;}
.y3d_c00200{bottom:892.050000px;}
.y3f_c00200{bottom:892.905000px;}
.y41_c00200{bottom:893.970000px;}
.y43_c00200{bottom:894.195000px;}
.y42_c00200{bottom:895.050000px;}
.y34_c00200{bottom:905.550000px;}
.y3c_c00200{bottom:906.405000px;}
.y39_c00200{bottom:906.825000px;}
.y3a_c00200{bottom:907.050000px;}
.y35_c00200{bottom:907.470000px;}
.y37_c00200{bottom:907.905000px;}
.y36_c00200{bottom:908.550000px;}
.y38_c00200{bottom:909.195000px;}
.y3b_c00200{bottom:910.050000px;}
.y30_c00200{bottom:920.325000px;}
.y33_c00200{bottom:921.405000px;}
.y32_c00200{bottom:922.470000px;}
.y31_c00200{bottom:922.695000px;}
.y2f_c00200{bottom:923.550000px;}
.y2a_c00200{bottom:934.470000px;}
.y2b_c00200{bottom:935.325000px;}
.y2d_c00200{bottom:936.405000px;}
.y2e_c00200{bottom:936.630000px;}
.y2c_c00200{bottom:938.550000px;}
.y28_c00200{bottom:949.470000px;}
.y23_c00200{bottom:950.325000px;}
.y24_c00200{bottom:951.405000px;}
.y22_c00200{bottom:951.630000px;}
.y27_c00200{bottom:951.825000px;}
.y25_c00200{bottom:952.470000px;}
.y26_c00200{bottom:952.695000px;}
.y29_c00200{bottom:953.550000px;}
.y20_c00200{bottom:964.470000px;}
.y1f_c00200{bottom:965.325000px;}
.y1c_c00200{bottom:966.405000px;}
.y1e_c00200{bottom:967.470000px;}
.y1d_c00200{bottom:967.695000px;}
.y21_c00200{bottom:968.550000px;}
.y1a_c00200{bottom:981.405000px;}
.y17_c00200{bottom:981.630000px;}
.y1b_c00200{bottom:982.470000px;}
.y19_c00200{bottom:982.695000px;}
.y18_c00200{bottom:983.550000px;}
.y16_c00200{bottom:1003.245000px;}
.y15_c00200{bottom:1003.905000px;}
.y14_c00200{bottom:1004.130000px;}
.y13_c00200{bottom:1005.405000px;}
.y11_c00200{bottom:1020.405000px;}
.y10_c00200{bottom:1021.470000px;}
.y12_c00200{bottom:1021.905000px;}
.ye_c00200{bottom:1023.405000px;}
.yf_c00200{bottom:1023.630000px;}
.yd_c00200{bottom:1024.905000px;}
.yc_c00200{bottom:1041.180000px;}
.y8_c00200{bottom:1042.245000px;}
.yb_c00200{bottom:1043.325000px;}
.y9_c00200{bottom:1043.970000px;}
.y7_c00200{bottom:1044.405000px;}
.ya_c00200{bottom:1044.630000px;}
.y4_c00200{bottom:1061.745000px;}
.y3_c00200{bottom:1063.905000px;}
.y5_c00200{bottom:1064.130000px;}
.y6_c00200{bottom:1064.970000px;}
.y2_c00200{bottom:1099.905000px;}
.y1_c00200{bottom:1102.050000px;}
.h9_c00200{height:4.206533px;}
.h8_c00200{height:16.752334px;}
.h4_c00200{height:23.025234px;}
.h1_c00200{height:25.091602px;}
.h5_c00200{height:31.364502px;}
.h2_c00200{height:35.571035px;}
.h6_c00200{height:39.777568px;}
.h3_c00200{height:43.910303px;}
.h7_c00200{height:48.116836px;}
.h0_c00200{height:1335.000000px;}
.w0_c00200{width:880.500000px;}
.x0_c00200{left:0.000000px;}
.x3b_c00200{left:155.580000px;}
.x3_c00200{left:157.500000px;}
.x31_c00200{left:171.000000px;}
.x75_c00200{left:172.080000px;}
.xee_c00200{left:173.580000px;}
.xf9_c00200{left:176.580000px;}
.x68_c00200{left:180.000000px;}
.x4_c00200{left:184.080000px;}
.x113_c00200{left:186.420000px;}
.x32_c00200{left:188.580000px;}
.x2b_c00200{left:192.000000px;}
.xbc_c00200{left:195.000000px;}
.x72_c00200{left:196.500000px;}
.xcb_c00200{left:198.420000px;}
.x10c_c00200{left:199.500000px;}
.x1d_c00200{left:201.000000px;}
.xa3_c00200{left:202.080000px;}
.xd2_c00200{left:205.920000px;}
.x92_c00200{left:208.500000px;}
.xeb_c00200{left:210.000000px;}
.x5_c00200{left:211.500000px;}
.x3c_c00200{left:213.000000px;}
.xf5_c00200{left:214.500000px;}
.x69_c00200{left:216.000000px;}
.x89_c00200{left:217.500000px;}
.x105_c00200{left:219.000000px;}
.x73_c00200{left:220.920000px;}
.xa4_c00200{left:222.000000px;}
.x2c_c00200{left:223.920000px;}
.x3d_c00200{left:225.000000px;}
.x53_c00200{left:226.500000px;}
.xef_c00200{left:228.420000px;}
.x11_c00200{left:229.920000px;}
.x6_c00200{left:231.000000px;}
.xe7_c00200{left:232.500000px;}
.xd3_c00200{left:234.420000px;}
.x33_c00200{left:235.920000px;}
.x80_c00200{left:237.000000px;}
.x54_c00200{left:238.500000px;}
.xf6_c00200{left:240.000000px;}
.xd8_c00200{left:241.920000px;}
.x5f_c00200{left:245.580000px;}
.x7_c00200{left:247.920000px;}
.xcc_c00200{left:249.000000px;}
.xe3_c00200{left:250.500000px;}
.xfa_c00200{left:252.420000px;}
.x12_c00200{left:255.000000px;}
.x2d_c00200{left:256.920000px;}
.xb1_c00200{left:258.000000px;}
.x76_c00200{left:259.500000px;}
.x77_c00200{left:262.500000px;}
.x1e_c00200{left:265.920000px;}
.x93_c00200{left:267.000000px;}
.x4d_c00200{left:268.080000px;}
.x6a_c00200{left:271.500000px;}
.x3e_c00200{left:275.580000px;}
.xdf_c00200{left:277.920000px;}
.xec_c00200{left:279.000000px;}
.x78_c00200{left:280.080000px;}
.x2e_c00200{left:282.420000px;}
.x74_c00200{left:284.580000px;}
.x43_c00200{left:285.645000px;}
.x60_c00200{left:289.500000px;}
.x106_c00200{left:291.000000px;}
.xfb_c00200{left:292.500000px;}
.xcd_c00200{left:294.000000px;}
.x81_c00200{left:295.080000px;}
.x9b_c00200{left:300.000000px;}
.x116_c00200{left:301.500000px;}
.xa9_c00200{left:303.420000px;}
.x1f_c00200{left:306.420000px;}
.x100_c00200{left:307.500000px;}
.x3f_c00200{left:309.420000px;}
.x13_c00200{left:310.500000px;}
.x110_c00200{left:312.420000px;}
.x94_c00200{left:316.080000px;}
.x9c_c00200{left:318.420000px;}
.xc2_c00200{left:322.500000px;}
.x34_c00200{left:324.000000px;}
.xa5_c00200{left:325.080000px;}
.x8_c00200{left:327.420000px;}
.xbd_c00200{left:328.500000px;}
.x57_c00200{left:329.580000px;}
.x20_c00200{left:334.500000px;}
.xf0_c00200{left:337.500000px;}
.xe8_c00200{left:339.000000px;}
.x8a_c00200{left:340.080000px;}
.x82_c00200{left:341.355000px;}
.xc3_c00200{left:343.500000px;}
.x9d_c00200{left:345.000000px;}
.x6b_c00200{left:346.500000px;}
.x2f_c00200{left:347.580000px;}
.xd9_c00200{left:350.580000px;}
.x40_c00200{left:352.080000px;}
.x55_c00200{left:354.000000px;}
.xd4_c00200{left:355.500000px;}
.x14_c00200{left:357.000000px;}
.x35_c00200{left:358.080000px;}
.x83_c00200{left:360.000000px;}
.x9_c00200{left:361.080000px;}
.xed_c00200{left:363.000000px;}
.x111_c00200{left:364.500000px;}
.x44_c00200{left:366.000000px;}
.xaa_c00200{left:369.420000px;}
.x15_c00200{left:372.000000px;}
.xf7_c00200{left:375.000000px;}
.xac_c00200{left:379.080000px;}
.x8b_c00200{left:382.500000px;}
.x56_c00200{left:384.420000px;}
.x58_c00200{left:385.500000px;}
.xc4_c00200{left:388.500000px;}
.x9e_c00200{left:390.420000px;}
.x84_c00200{left:391.500000px;}
.x6c_c00200{left:393.000000px;}
.x95_c00200{left:394.500000px;}
.x41_c00200{left:396.000000px;}
.xab_c00200{left:397.500000px;}
.x16_c00200{left:398.580000px;}
.xbe_c00200{left:400.080000px;}
.x21_c00200{left:401.580000px;}
.x1_c00200{left:403.500000px;}
.x79_c00200{left:408.420000px;}
.x4e_c00200{left:410.580000px;}
.x61_c00200{left:412.080000px;}
.x96_c00200{left:414.420000px;}
.x30_c00200{left:417.000000px;}
.xda_c00200{left:421.920000px;}
.xf8_c00200{left:423.420000px;}
.xa6_c00200{left:424.500000px;}
.xa_c00200{left:425.775000px;}
.x45_c00200{left:428.580000px;}
.xb2_c00200{left:430.920000px;}
.x17_c00200{left:432.000000px;}
.x59_c00200{left:436.080000px;}
.x8c_c00200{left:438.000000px;}
.x107_c00200{left:441.000000px;}
.xe0_c00200{left:442.500000px;}
.x6d_c00200{left:445.500000px;}
.xdb_c00200{left:448.920000px;}
.x18_c00200{left:450.000000px;}
.xe9_c00200{left:452.580000px;}
.x62_c00200{left:454.500000px;}
.xce_c00200{left:457.920000px;}
.x42_c00200{left:459.000000px;}
.xb_c00200{left:461.580000px;}
.x7a_c00200{left:463.920000px;}
.x5a_c00200{left:465.855000px;}
.x9f_c00200{left:468.000000px;}
.xc5_c00200{left:469.920000px;}
.x97_c00200{left:471.420000px;}
.xdc_c00200{left:473.580000px;}
.xb6_c00200{left:475.500000px;}
.xf3_c00200{left:477.000000px;}
.x101_c00200{left:478.500000px;}
.x108_c00200{left:480.000000px;}
.x85_c00200{left:481.920000px;}
.x36_c00200{left:483.420000px;}
.x46_c00200{left:484.500000px;}
.xe1_c00200{left:487.500000px;}
.x22_c00200{left:490.080000px;}
.x117_c00200{left:493.500000px;}
.x47_c00200{left:495.000000px;}
.xc_c00200{left:496.275000px;}
.xc6_c00200{left:498.000000px;}
.x98_c00200{left:499.080000px;}
.x4f_c00200{left:500.145000px;}
.xcf_c00200{left:504.000000px;}
.x10d_c00200{left:505.920000px;}
.x5b_c00200{left:507.000000px;}
.x86_c00200{left:508.500000px;}
.xb7_c00200{left:510.420000px;}
.xad_c00200{left:511.500000px;}
.x63_c00200{left:512.580000px;}
.xfc_c00200{left:514.500000px;}
.xd0_c00200{left:516.420000px;}
.x6e_c00200{left:517.500000px;}
.x7b_c00200{left:519.000000px;}
.x8d_c00200{left:520.500000px;}
.xe4_c00200{left:522.420000px;}
.x19_c00200{left:523.500000px;}
.xf1_c00200{left:524.580000px;}
.x6f_c00200{left:529.500000px;}
.xd_c00200{left:532.500000px;}
.xfd_c00200{left:534.420000px;}
.x118_c00200{left:535.500000px;}
.x23_c00200{left:537.000000px;}
.x37_c00200{left:538.500000px;}
.x48_c00200{left:539.580000px;}
.x5c_c00200{left:541.080000px;}
.xe2_c00200{left:543.420000px;}
.xbf_c00200{left:545.580000px;}
.x109_c00200{left:547.500000px;}
.xd5_c00200{left:549.000000px;}
.xc7_c00200{left:550.080000px;}
.xdd_c00200{left:553.920000px;}
.xb3_c00200{left:555.000000px;}
.x7c_c00200{left:556.500000px;}
.xae_c00200{left:557.580000px;}
.x1a_c00200{left:559.500000px;}
.xb8_c00200{left:560.580000px;}
.x8e_c00200{left:562.920000px;}
.x5d_c00200{left:565.080000px;}
.xea_c00200{left:567.000000px;}
.x49_c00200{left:568.920000px;}
.xb4_c00200{left:570.000000px;}
.xc8_c00200{left:571.920000px;}
.x10a_c00200{left:573.420000px;}
.xe5_c00200{left:576.000000px;}
.xb9_c00200{left:580.500000px;}
.x24_c00200{left:583.500000px;}
.xa0_c00200{left:585.000000px;}
.x7d_c00200{left:587.580000px;}
.xf4_c00200{left:589.920000px;}
.xd6_c00200{left:591.000000px;}
.x10e_c00200{left:592.500000px;}
.x64_c00200{left:595.500000px;}
.x50_c00200{left:597.000000px;}
.xc9_c00200{left:600.000000px;}
.xe_c00200{left:601.500000px;}
.x102_c00200{left:602.580000px;}
.xaf_c00200{left:604.500000px;}
.x8f_c00200{left:607.920000px;}
.x4a_c00200{left:610.500000px;}
.xb5_c00200{left:612.000000px;}
.x99_c00200{left:614.580000px;}
.x25_c00200{left:617.580000px;}
.xba_c00200{left:619.920000px;}
.xa1_c00200{left:621.420000px;}
.x87_c00200{left:624.000000px;}
.xf_c00200{left:625.080000px;}
.x38_c00200{left:628.080000px;}
.xa7_c00200{left:630.000000px;}
.x103_c00200{left:631.500000px;}
.x51_c00200{left:632.580000px;}
.x1b_c00200{left:634.500000px;}
.x5e_c00200{left:636.420000px;}
.x26_c00200{left:637.500000px;}
.x4b_c00200{left:640.080000px;}
.x114_c00200{left:641.580000px;}
.x90_c00200{left:643.500000px;}
.x10b_c00200{left:645.420000px;}
.xca_c00200{left:646.500000px;}
.x10f_c00200{left:647.580000px;}
.xde_c00200{left:649.500000px;}
.xd1_c00200{left:651.000000px;}
.x65_c00200{left:652.500000px;}
.xbb_c00200{left:654.420000px;}
.xfe_c00200{left:657.000000px;}
.x27_c00200{left:658.080000px;}
.x9a_c00200{left:660.000000px;}
.x119_c00200{left:661.080000px;}
.x39_c00200{left:663.420000px;}
.x66_c00200{left:664.500000px;}
.xd7_c00200{left:666.000000px;}
.x10_c00200{left:667.080000px;}
.x4c_c00200{left:669.000000px;}
.xa8_c00200{left:670.500000px;}
.x28_c00200{left:673.080000px;}
.x7e_c00200{left:675.000000px;}
.xa2_c00200{left:678.000000px;}
.xb0_c00200{left:679.920000px;}
.x112_c00200{left:681.000000px;}
.x3a_c00200{left:682.500000px;}
.x70_c00200{left:684.000000px;}
.x91_c00200{left:685.500000px;}
.xc0_c00200{left:688.500000px;}
.x1c_c00200{left:691.080000px;}
.x88_c00200{left:693.000000px;}
.x71_c00200{left:694.500000px;}
.x7f_c00200{left:696.000000px;}
.x67_c00200{left:699.000000px;}
.xf2_c00200{left:700.500000px;}
.xe6_c00200{left:703.920000px;}
.x29_c00200{left:706.080000px;}
.x52_c00200{left:708.000000px;}
.x2_c00200{left:709.920000px;}
.xc1_c00200{left:712.920000px;}
.xff_c00200{left:714.420000px;}
.x115_c00200{left:721.500000px;}
.x104_c00200{left:724.500000px;}
.x2a_c00200{left:726.000000px;}
@media print{
.v0_c00200{vertical-align:0.000000pt;}
.ls0_c00200{letter-spacing:0.000000pt;}
.ws0_c00200{word-spacing:0.000000pt;}
.fs8_c00200{font-size:3.040000pt;}
.fs7_c00200{font-size:12.106667pt;}
.fs3_c00200{font-size:16.640000pt;}
.fs0_c00200{font-size:18.133333pt;}
.fs4_c00200{font-size:22.666667pt;}
.fs1_c00200{font-size:25.706667pt;}
.fs5_c00200{font-size:28.746667pt;}
.fs2_c00200{font-size:31.733333pt;}
.fs6_c00200{font-size:34.773333pt;}
.y0_c00200{bottom:0.000000pt;}
.ye1_c00200{bottom:225.106667pt;}
.ye2_c00200{bottom:225.893333pt;}
.ye4_c00200{bottom:226.066667pt;}
.ye3_c00200{bottom:227.026667pt;}
.ydf_c00200{bottom:242.440000pt;}
.ye0_c00200{bottom:243.226667pt;}
.yde_c00200{bottom:243.400000pt;}
.ydd_c00200{bottom:244.360000pt;}
.yda_c00200{bottom:259.773333pt;}
.ydb_c00200{bottom:260.733333pt;}
.yd9_c00200{bottom:261.693333pt;}
.ydc_c00200{bottom:261.893333pt;}
.yd8_c00200{bottom:263.026667pt;}
.yd7_c00200{bottom:276.360000pt;}
.yd6_c00200{bottom:277.106667pt;}
.yd4_c00200{bottom:278.440000pt;}
.yd5_c00200{bottom:279.026667pt;}
.yd3_c00200{bottom:279.226667pt;}
.yd2_c00200{bottom:280.360000pt;}
.yce_c00200{bottom:293.693333pt;}
.ycf_c00200{bottom:295.773333pt;}
.yd0_c00200{bottom:296.560000pt;}
.yd1_c00200{bottom:296.733333pt;}
.ycd_c00200{bottom:297.693333pt;}
.ycc_c00200{bottom:313.106667pt;}
.yca_c00200{bottom:313.893333pt;}
.yc9_c00200{bottom:315.026667pt;}
.ycb_c00200{bottom:315.973333pt;}
.yc7_c00200{bottom:330.440000pt;}
.yc8_c00200{bottom:331.400000pt;}
.yc6_c00200{bottom:332.360000pt;}
.yc3_c00200{bottom:347.026667pt;}
.yc4_c00200{bottom:348.733333pt;}
.yc5_c00200{bottom:349.306667pt;}
.yc1_c00200{bottom:349.693333pt;}
.yc2_c00200{bottom:349.893333pt;}
.ybf_c00200{bottom:364.360000pt;}
.ybe_c00200{bottom:365.106667pt;}
.yc0_c00200{bottom:366.066667pt;}
.ybc_c00200{bottom:367.026667pt;}
.ybd_c00200{bottom:367.226667pt;}
.yb8_c00200{bottom:382.440000pt;}
.yb9_c00200{bottom:384.360000pt;}
.yba_c00200{bottom:384.560000pt;}
.ybb_c00200{bottom:385.306667pt;}
.yb3_c00200{bottom:399.773333pt;}
.yb5_c00200{bottom:400.160000pt;}
.yb7_c00200{bottom:401.106667pt;}
.yb4_c00200{bottom:401.693333pt;}
.yb6_c00200{bottom:402.640000pt;}
.yb2_c00200{bottom:403.026667pt;}
.yaf_c00200{bottom:418.440000pt;}
.yb0_c00200{bottom:419.026667pt;}
.yb1_c00200{bottom:419.226667pt;}
.yae_c00200{bottom:420.360000pt;}
.yad_c00200{bottom:435.773333pt;}
.yab_c00200{bottom:436.560000pt;}
.yaa_c00200{bottom:436.733333pt;}
.yac_c00200{bottom:437.693333pt;}
.ya8_c00200{bottom:451.773333pt;}
.ya9_c00200{bottom:452.733333pt;}
.ya5_c00200{bottom:453.106667pt;}
.ya7_c00200{bottom:453.893333pt;}
.ya6_c00200{bottom:455.026667pt;}
.ya3_c00200{bottom:470.440000pt;}
.ya1_c00200{bottom:471.400000pt;}
.ya2_c00200{bottom:472.360000pt;}
.ya4_c00200{bottom:472.560000pt;}
.y9e_c00200{bottom:487.400000pt;}
.y9f_c00200{bottom:487.773333pt;}
.y9d_c00200{bottom:489.693333pt;}
.ya0_c00200{bottom:489.893333pt;}
.y99_c00200{bottom:505.106667pt;}
.y9b_c00200{bottom:506.066667pt;}
.y97_c00200{bottom:507.026667pt;}
.y98_c00200{bottom:507.226667pt;}
.y9a_c00200{bottom:507.973333pt;}
.y9c_c00200{bottom:508.733333pt;}
.y96_c00200{bottom:522.066667pt;}
.y95_c00200{bottom:522.640000pt;}
.y90_c00200{bottom:523.400000pt;}
.y94_c00200{bottom:523.773333pt;}
.y91_c00200{bottom:524.360000pt;}
.y93_c00200{bottom:524.560000pt;}
.y92_c00200{bottom:525.693333pt;}
.y8f_c00200{bottom:539.026667pt;}
.y8c_c00200{bottom:541.106667pt;}
.y8e_c00200{bottom:541.893333pt;}
.y8d_c00200{bottom:543.026667pt;}
.y8a_c00200{bottom:558.440000pt;}
.y8b_c00200{bottom:559.226667pt;}
.y89_c00200{bottom:560.360000pt;}
.y88_c00200{bottom:561.306667pt;}
.y87_c00200{bottom:575.400000pt;}
.y83_c00200{bottom:575.773333pt;}
.y86_c00200{bottom:577.306667pt;}
.y84_c00200{bottom:577.693333pt;}
.y85_c00200{bottom:578.640000pt;}
.y7e_c00200{bottom:593.106667pt;}
.y82_c00200{bottom:593.893333pt;}
.y81_c00200{bottom:594.066667pt;}
.y7f_c00200{bottom:595.026667pt;}
.y80_c00200{bottom:595.973333pt;}
.y78_c00200{bottom:610.440000pt;}
.y7a_c00200{bottom:611.400000pt;}
.y7c_c00200{bottom:611.773333pt;}
.y79_c00200{bottom:612.360000pt;}
.y7b_c00200{bottom:612.560000pt;}
.y7d_c00200{bottom:613.693333pt;}
.y75_c00200{bottom:627.773333pt;}
.y76_c00200{bottom:628.733333pt;}
.y73_c00200{bottom:629.106667pt;}
.y74_c00200{bottom:629.693333pt;}
.y77_c00200{bottom:631.026667pt;}
.y72_c00200{bottom:646.440000pt;}
.y71_c00200{bottom:647.026667pt;}
.y70_c00200{bottom:647.973333pt;}
.y6f_c00200{bottom:648.360000pt;}
.y6e_c00200{bottom:662.640000pt;}
.y6c_c00200{bottom:663.773333pt;}
.y6d_c00200{bottom:665.693333pt;}
.y67_c00200{bottom:680.733333pt;}
.y65_c00200{bottom:681.106667pt;}
.y6a_c00200{bottom:681.306667pt;}
.y69_c00200{bottom:681.893333pt;}
.y66_c00200{bottom:682.066667pt;}
.y6b_c00200{bottom:682.640000pt;}
.y68_c00200{bottom:683.026667pt;}
.y60_c00200{bottom:698.440000pt;}
.y64_c00200{bottom:699.400000pt;}
.y63_c00200{bottom:699.973333pt;}
.y61_c00200{bottom:700.360000pt;}
.y62_c00200{bottom:701.306667pt;}
.y5f_c00200{bottom:715.773333pt;}
.y5c_c00200{bottom:715.973333pt;}
.y5e_c00200{bottom:716.560000pt;}
.y5d_c00200{bottom:716.933333pt;}
.y5b_c00200{bottom:717.693333pt;}
.y5a_c00200{bottom:717.893333pt;}
.y58_c00200{bottom:732.360000pt;}
.y53_c00200{bottom:733.106667pt;}
.y56_c00200{bottom:733.306667pt;}
.y55_c00200{bottom:735.026667pt;}
.y54_c00200{bottom:735.040000pt;}
.y59_c00200{bottom:735.226667pt;}
.y57_c00200{bottom:735.973333pt;}
.y50_c00200{bottom:753.693333pt;}
.y51_c00200{bottom:753.893333pt;}
.y52_c00200{bottom:754.640000pt;}
.y4d_c00200{bottom:766.066667pt;}
.y4a_c00200{bottom:767.026667pt;}
.y4c_c00200{bottom:767.226667pt;}
.y49_c00200{bottom:767.600000pt;}
.y4b_c00200{bottom:767.973333pt;}
.y4e_c00200{bottom:768.173333pt;}
.y4f_c00200{bottom:768.933333pt;}
.y48_c00200{bottom:779.400000pt;}
.y45_c00200{bottom:780.360000pt;}
.y47_c00200{bottom:781.306667pt;}
.y44_c00200{bottom:781.506667pt;}
.y46_c00200{bottom:782.266667pt;}
.y40_c00200{bottom:791.973333pt;}
.y3e_c00200{bottom:792.360000pt;}
.y3d_c00200{bottom:792.933333pt;}
.y3f_c00200{bottom:793.693333pt;}
.y41_c00200{bottom:794.640000pt;}
.y43_c00200{bottom:794.840000pt;}
.y42_c00200{bottom:795.600000pt;}
.y34_c00200{bottom:804.933333pt;}
.y3c_c00200{bottom:805.693333pt;}
.y39_c00200{bottom:806.066667pt;}
.y3a_c00200{bottom:806.266667pt;}
.y35_c00200{bottom:806.640000pt;}
.y37_c00200{bottom:807.026667pt;}
.y36_c00200{bottom:807.600000pt;}
.y38_c00200{bottom:808.173333pt;}
.y3b_c00200{bottom:808.933333pt;}
.y30_c00200{bottom:818.066667pt;}
.y33_c00200{bottom:819.026667pt;}
.y32_c00200{bottom:819.973333pt;}
.y31_c00200{bottom:820.173333pt;}
.y2f_c00200{bottom:820.933333pt;}
.y2a_c00200{bottom:830.640000pt;}
.y2b_c00200{bottom:831.400000pt;}
.y2d_c00200{bottom:832.360000pt;}
.y2e_c00200{bottom:832.560000pt;}
.y2c_c00200{bottom:834.266667pt;}
.y28_c00200{bottom:843.973333pt;}
.y23_c00200{bottom:844.733333pt;}
.y24_c00200{bottom:845.693333pt;}
.y22_c00200{bottom:845.893333pt;}
.y27_c00200{bottom:846.066667pt;}
.y25_c00200{bottom:846.640000pt;}
.y26_c00200{bottom:846.840000pt;}
.y29_c00200{bottom:847.600000pt;}
.y20_c00200{bottom:857.306667pt;}
.y1f_c00200{bottom:858.066667pt;}
.y1c_c00200{bottom:859.026667pt;}
.y1e_c00200{bottom:859.973333pt;}
.y1d_c00200{bottom:860.173333pt;}
.y21_c00200{bottom:860.933333pt;}
.y1a_c00200{bottom:872.360000pt;}
.y17_c00200{bottom:872.560000pt;}
.y1b_c00200{bottom:873.306667pt;}
.y19_c00200{bottom:873.506667pt;}
.y18_c00200{bottom:874.266667pt;}
.y16_c00200{bottom:891.773333pt;}
.y15_c00200{bottom:892.360000pt;}
.y14_c00200{bottom:892.560000pt;}
.y13_c00200{bottom:893.693333pt;}
.y11_c00200{bottom:907.026667pt;}
.y10_c00200{bottom:907.973333pt;}
.y12_c00200{bottom:908.360000pt;}
.ye_c00200{bottom:909.693333pt;}
.yf_c00200{bottom:909.893333pt;}
.yd_c00200{bottom:911.026667pt;}
.yc_c00200{bottom:925.493333pt;}
.y8_c00200{bottom:926.440000pt;}
.yb_c00200{bottom:927.400000pt;}
.y9_c00200{bottom:927.973333pt;}
.y7_c00200{bottom:928.360000pt;}
.ya_c00200{bottom:928.560000pt;}
.y4_c00200{bottom:943.773333pt;}
.y3_c00200{bottom:945.693333pt;}
.y5_c00200{bottom:945.893333pt;}
.y6_c00200{bottom:946.640000pt;}
.y2_c00200{bottom:977.693333pt;}
.y1_c00200{bottom:979.600000pt;}
.h9_c00200{height:3.739141pt;}
.h8_c00200{height:14.890964pt;}
.h4_c00200{height:20.466875pt;}
.h1_c00200{height:22.303646pt;}
.h5_c00200{height:27.879557pt;}
.h2_c00200{height:31.618698pt;}
.h6_c00200{height:35.357839pt;}
.h3_c00200{height:39.031380pt;}
.h7_c00200{height:42.770521pt;}
.h0_c00200{height:1186.666667pt;}
.w0_c00200{width:782.666667pt;}
.x0_c00200{left:0.000000pt;}
.x3b_c00200{left:138.293333pt;}
.x3_c00200{left:140.000000pt;}
.x31_c00200{left:152.000000pt;}
.x75_c00200{left:152.960000pt;}
.xee_c00200{left:154.293333pt;}
.xf9_c00200{left:156.960000pt;}
.x68_c00200{left:160.000000pt;}
.x4_c00200{left:163.626667pt;}
.x113_c00200{left:165.706667pt;}
.x32_c00200{left:167.626667pt;}
.x2b_c00200{left:170.666667pt;}
.xbc_c00200{left:173.333333pt;}
.x72_c00200{left:174.666667pt;}
.xcb_c00200{left:176.373333pt;}
.x10c_c00200{left:177.333333pt;}
.x1d_c00200{left:178.666667pt;}
.xa3_c00200{left:179.626667pt;}
.xd2_c00200{left:183.040000pt;}
.x92_c00200{left:185.333333pt;}
.xeb_c00200{left:186.666667pt;}
.x5_c00200{left:188.000000pt;}
.x3c_c00200{left:189.333333pt;}
.xf5_c00200{left:190.666667pt;}
.x69_c00200{left:192.000000pt;}
.x89_c00200{left:193.333333pt;}
.x105_c00200{left:194.666667pt;}
.x73_c00200{left:196.373333pt;}
.xa4_c00200{left:197.333333pt;}
.x2c_c00200{left:199.040000pt;}
.x3d_c00200{left:200.000000pt;}
.x53_c00200{left:201.333333pt;}
.xef_c00200{left:203.040000pt;}
.x11_c00200{left:204.373333pt;}
.x6_c00200{left:205.333333pt;}
.xe7_c00200{left:206.666667pt;}
.xd3_c00200{left:208.373333pt;}
.x33_c00200{left:209.706667pt;}
.x80_c00200{left:210.666667pt;}
.x54_c00200{left:212.000000pt;}
.xf6_c00200{left:213.333333pt;}
.xd8_c00200{left:215.040000pt;}
.x5f_c00200{left:218.293333pt;}
.x7_c00200{left:220.373333pt;}
.xcc_c00200{left:221.333333pt;}
.xe3_c00200{left:222.666667pt;}
.xfa_c00200{left:224.373333pt;}
.x12_c00200{left:226.666667pt;}
.x2d_c00200{left:228.373333pt;}
.xb1_c00200{left:229.333333pt;}
.x76_c00200{left:230.666667pt;}
.x77_c00200{left:233.333333pt;}
.x1e_c00200{left:236.373333pt;}
.x93_c00200{left:237.333333pt;}
.x4d_c00200{left:238.293333pt;}
.x6a_c00200{left:241.333333pt;}
.x3e_c00200{left:244.960000pt;}
.xdf_c00200{left:247.040000pt;}
.xec_c00200{left:248.000000pt;}
.x78_c00200{left:248.960000pt;}
.x2e_c00200{left:251.040000pt;}
.x74_c00200{left:252.960000pt;}
.x43_c00200{left:253.906667pt;}
.x60_c00200{left:257.333333pt;}
.x106_c00200{left:258.666667pt;}
.xfb_c00200{left:260.000000pt;}
.xcd_c00200{left:261.333333pt;}
.x81_c00200{left:262.293333pt;}
.x9b_c00200{left:266.666667pt;}
.x116_c00200{left:268.000000pt;}
.xa9_c00200{left:269.706667pt;}
.x1f_c00200{left:272.373333pt;}
.x100_c00200{left:273.333333pt;}
.x3f_c00200{left:275.040000pt;}
.x13_c00200{left:276.000000pt;}
.x110_c00200{left:277.706667pt;}
.x94_c00200{left:280.960000pt;}
.x9c_c00200{left:283.040000pt;}
.xc2_c00200{left:286.666667pt;}
.x34_c00200{left:288.000000pt;}
.xa5_c00200{left:288.960000pt;}
.x8_c00200{left:291.040000pt;}
.xbd_c00200{left:292.000000pt;}
.x57_c00200{left:292.960000pt;}
.x20_c00200{left:297.333333pt;}
.xf0_c00200{left:300.000000pt;}
.xe8_c00200{left:301.333333pt;}
.x8a_c00200{left:302.293333pt;}
.x82_c00200{left:303.426667pt;}
.xc3_c00200{left:305.333333pt;}
.x9d_c00200{left:306.666667pt;}
.x6b_c00200{left:308.000000pt;}
.x2f_c00200{left:308.960000pt;}
.xd9_c00200{left:311.626667pt;}
.x40_c00200{left:312.960000pt;}
.x55_c00200{left:314.666667pt;}
.xd4_c00200{left:316.000000pt;}
.x14_c00200{left:317.333333pt;}
.x35_c00200{left:318.293333pt;}
.x83_c00200{left:320.000000pt;}
.x9_c00200{left:320.960000pt;}
.xed_c00200{left:322.666667pt;}
.x111_c00200{left:324.000000pt;}
.x44_c00200{left:325.333333pt;}
.xaa_c00200{left:328.373333pt;}
.x15_c00200{left:330.666667pt;}
.xf7_c00200{left:333.333333pt;}
.xac_c00200{left:336.960000pt;}
.x8b_c00200{left:340.000000pt;}
.x56_c00200{left:341.706667pt;}
.x58_c00200{left:342.666667pt;}
.xc4_c00200{left:345.333333pt;}
.x9e_c00200{left:347.040000pt;}
.x84_c00200{left:348.000000pt;}
.x6c_c00200{left:349.333333pt;}
.x95_c00200{left:350.666667pt;}
.x41_c00200{left:352.000000pt;}
.xab_c00200{left:353.333333pt;}
.x16_c00200{left:354.293333pt;}
.xbe_c00200{left:355.626667pt;}
.x21_c00200{left:356.960000pt;}
.x1_c00200{left:358.666667pt;}
.x79_c00200{left:363.040000pt;}
.x4e_c00200{left:364.960000pt;}
.x61_c00200{left:366.293333pt;}
.x96_c00200{left:368.373333pt;}
.x30_c00200{left:370.666667pt;}
.xda_c00200{left:375.040000pt;}
.xf8_c00200{left:376.373333pt;}
.xa6_c00200{left:377.333333pt;}
.xa_c00200{left:378.466667pt;}
.x45_c00200{left:380.960000pt;}
.xb2_c00200{left:383.040000pt;}
.x17_c00200{left:384.000000pt;}
.x59_c00200{left:387.626667pt;}
.x8c_c00200{left:389.333333pt;}
.x107_c00200{left:392.000000pt;}
.xe0_c00200{left:393.333333pt;}
.x6d_c00200{left:396.000000pt;}
.xdb_c00200{left:399.040000pt;}
.x18_c00200{left:400.000000pt;}
.xe9_c00200{left:402.293333pt;}
.x62_c00200{left:404.000000pt;}
.xce_c00200{left:407.040000pt;}
.x42_c00200{left:408.000000pt;}
.xb_c00200{left:410.293333pt;}
.x7a_c00200{left:412.373333pt;}
.x5a_c00200{left:414.093333pt;}
.x9f_c00200{left:416.000000pt;}
.xc5_c00200{left:417.706667pt;}
.x97_c00200{left:419.040000pt;}
.xdc_c00200{left:420.960000pt;}
.xb6_c00200{left:422.666667pt;}
.xf3_c00200{left:424.000000pt;}
.x101_c00200{left:425.333333pt;}
.x108_c00200{left:426.666667pt;}
.x85_c00200{left:428.373333pt;}
.x36_c00200{left:429.706667pt;}
.x46_c00200{left:430.666667pt;}
.xe1_c00200{left:433.333333pt;}
.x22_c00200{left:435.626667pt;}
.x117_c00200{left:438.666667pt;}
.x47_c00200{left:440.000000pt;}
.xc_c00200{left:441.133333pt;}
.xc6_c00200{left:442.666667pt;}
.x98_c00200{left:443.626667pt;}
.x4f_c00200{left:444.573333pt;}
.xcf_c00200{left:448.000000pt;}
.x10d_c00200{left:449.706667pt;}
.x5b_c00200{left:450.666667pt;}
.x86_c00200{left:452.000000pt;}
.xb7_c00200{left:453.706667pt;}
.xad_c00200{left:454.666667pt;}
.x63_c00200{left:455.626667pt;}
.xfc_c00200{left:457.333333pt;}
.xd0_c00200{left:459.040000pt;}
.x6e_c00200{left:460.000000pt;}
.x7b_c00200{left:461.333333pt;}
.x8d_c00200{left:462.666667pt;}
.xe4_c00200{left:464.373333pt;}
.x19_c00200{left:465.333333pt;}
.xf1_c00200{left:466.293333pt;}
.x6f_c00200{left:470.666667pt;}
.xd_c00200{left:473.333333pt;}
.xfd_c00200{left:475.040000pt;}
.x118_c00200{left:476.000000pt;}
.x23_c00200{left:477.333333pt;}
.x37_c00200{left:478.666667pt;}
.x48_c00200{left:479.626667pt;}
.x5c_c00200{left:480.960000pt;}
.xe2_c00200{left:483.040000pt;}
.xbf_c00200{left:484.960000pt;}
.x109_c00200{left:486.666667pt;}
.xd5_c00200{left:488.000000pt;}
.xc7_c00200{left:488.960000pt;}
.xdd_c00200{left:492.373333pt;}
.xb3_c00200{left:493.333333pt;}
.x7c_c00200{left:494.666667pt;}
.xae_c00200{left:495.626667pt;}
.x1a_c00200{left:497.333333pt;}
.xb8_c00200{left:498.293333pt;}
.x8e_c00200{left:500.373333pt;}
.x5d_c00200{left:502.293333pt;}
.xea_c00200{left:504.000000pt;}
.x49_c00200{left:505.706667pt;}
.xb4_c00200{left:506.666667pt;}
.xc8_c00200{left:508.373333pt;}
.x10a_c00200{left:509.706667pt;}
.xe5_c00200{left:512.000000pt;}
.xb9_c00200{left:516.000000pt;}
.x24_c00200{left:518.666667pt;}
.xa0_c00200{left:520.000000pt;}
.x7d_c00200{left:522.293333pt;}
.xf4_c00200{left:524.373333pt;}
.xd6_c00200{left:525.333333pt;}
.x10e_c00200{left:526.666667pt;}
.x64_c00200{left:529.333333pt;}
.x50_c00200{left:530.666667pt;}
.xc9_c00200{left:533.333333pt;}
.xe_c00200{left:534.666667pt;}
.x102_c00200{left:535.626667pt;}
.xaf_c00200{left:537.333333pt;}
.x8f_c00200{left:540.373333pt;}
.x4a_c00200{left:542.666667pt;}
.xb5_c00200{left:544.000000pt;}
.x99_c00200{left:546.293333pt;}
.x25_c00200{left:548.960000pt;}
.xba_c00200{left:551.040000pt;}
.xa1_c00200{left:552.373333pt;}
.x87_c00200{left:554.666667pt;}
.xf_c00200{left:555.626667pt;}
.x38_c00200{left:558.293333pt;}
.xa7_c00200{left:560.000000pt;}
.x103_c00200{left:561.333333pt;}
.x51_c00200{left:562.293333pt;}
.x1b_c00200{left:564.000000pt;}
.x5e_c00200{left:565.706667pt;}
.x26_c00200{left:566.666667pt;}
.x4b_c00200{left:568.960000pt;}
.x114_c00200{left:570.293333pt;}
.x90_c00200{left:572.000000pt;}
.x10b_c00200{left:573.706667pt;}
.xca_c00200{left:574.666667pt;}
.x10f_c00200{left:575.626667pt;}
.xde_c00200{left:577.333333pt;}
.xd1_c00200{left:578.666667pt;}
.x65_c00200{left:580.000000pt;}
.xbb_c00200{left:581.706667pt;}
.xfe_c00200{left:584.000000pt;}
.x27_c00200{left:584.960000pt;}
.x9a_c00200{left:586.666667pt;}
.x119_c00200{left:587.626667pt;}
.x39_c00200{left:589.706667pt;}
.x66_c00200{left:590.666667pt;}
.xd7_c00200{left:592.000000pt;}
.x10_c00200{left:592.960000pt;}
.x4c_c00200{left:594.666667pt;}
.xa8_c00200{left:596.000000pt;}
.x28_c00200{left:598.293333pt;}
.x7e_c00200{left:600.000000pt;}
.xa2_c00200{left:602.666667pt;}
.xb0_c00200{left:604.373333pt;}
.x112_c00200{left:605.333333pt;}
.x3a_c00200{left:606.666667pt;}
.x70_c00200{left:608.000000pt;}
.x91_c00200{left:609.333333pt;}
.xc0_c00200{left:612.000000pt;}
.x1c_c00200{left:614.293333pt;}
.x88_c00200{left:616.000000pt;}
.x71_c00200{left:617.333333pt;}
.x7f_c00200{left:618.666667pt;}
.x67_c00200{left:621.333333pt;}
.xf2_c00200{left:622.666667pt;}
.xe6_c00200{left:625.706667pt;}
.x29_c00200{left:627.626667pt;}
.x52_c00200{left:629.333333pt;}
.x2_c00200{left:631.040000pt;}
.xc1_c00200{left:633.706667pt;}
.xff_c00200{left:635.040000pt;}
.x115_c00200{left:641.333333pt;}
.x104_c00200{left:644.000000pt;}
.x2a_c00200{left:645.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dca4927615b2df05f4395f62.woff2')format("woff");}.ff1_c00201{font-family:ff1_c00201;line-height:1.688965;font-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_c00201{transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);}
.m1e_c00201{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.m4_c00201{transform:matrix(0.398423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398423,0.000000,0.000000,0.250000,0,0);}
.m22_c00201{transform:matrix(0.406772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406772,0.000000,0.000000,0.250000,0,0);}
.m9_c00201{transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);}
.m13_c00201{transform:matrix(0.427905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427905,0.000000,0.000000,0.250000,0,0);}
.ma_c00201{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m3_c00201{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m15_c00201{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m17_c00201{transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);}
.me_c00201{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m2_c00201{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.m1d_c00201{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m1_c00201{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m1a_c00201{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.mf_c00201{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m21_c00201{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m6_c00201{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m1b_c00201{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m19_c00201{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_c00201{transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);}
.md_c00201{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m20_c00201{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m1f_c00201{transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);}
.mc_c00201{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);}
.m1c_c00201{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m28_c00201{transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);}
.m18_c00201{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m11_c00201{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m23_c00201{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m29_c00201{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m10_c00201{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m0_c00201{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m25_c00201{transform:matrix(0.607353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607353,0.000000,0.000000,0.250000,0,0);}
.m27_c00201{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m12_c00201{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);}
.m7_c00201{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m8_c00201{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_c00201{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m5_c00201{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m26_c00201{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);}
.mb_c00201{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,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;}
}
.ws1_c00201{word-spacing:-4.463621px;}
.ws0_c00201{word-spacing:-2.587290px;}
.ws2_c00201{word-spacing:0.000000px;}
.fc0_c00201{color:transparent;}
.fs4_c00201{font-size:18.720000px;}
.fs0_c00201{font-size:20.400000px;}
.fs2_c00201{font-size:25.500000px;}
.fs1_c00201{font-size:28.920000px;}
.fs3_c00201{font-size:32.340000px;}
.y0_c00201{bottom:0.000000px;}
.yf_c00201{bottom:236.970000px;}
.ye_c00201{bottom:238.050000px;}
.yd_c00201{bottom:238.905000px;}
.y10_c00201{bottom:241.050000px;}
.yc_c00201{bottom:251.970000px;}
.y9_c00201{bottom:252.825000px;}
.yb_c00201{bottom:253.050000px;}
.y4_c00201{bottom:253.470000px;}
.y3_c00201{bottom:253.905000px;}
.y8_c00201{bottom:254.130000px;}
.y5_c00201{bottom:254.325000px;}
.y7_c00201{bottom:254.970000px;}
.y6_c00201{bottom:255.630000px;}
.ya_c00201{bottom:256.050000px;}
.y13_c00201{bottom:267.825000px;}
.y11_c00201{bottom:268.905000px;}
.y12_c00201{bottom:269.130000px;}
.y17_c00201{bottom:269.550000px;}
.y15_c00201{bottom:269.970000px;}
.y16_c00201{bottom:270.630000px;}
.y14_c00201{bottom:271.470000px;}
.y1a_c00201{bottom:281.970000px;}
.y18_c00201{bottom:282.825000px;}
.y1c_c00201{bottom:283.050000px;}
.y1b_c00201{bottom:283.905000px;}
.y19_c00201{bottom:284.130000px;}
.y1d_c00201{bottom:284.970000px;}
.y1e_c00201{bottom:286.050000px;}
.y1f_c00201{bottom:286.470000px;}
.y2_c00201{bottom:1099.905000px;}
.y1_c00201{bottom:1102.050000px;}
.h5_c00201{height:23.025234px;}
.h1_c00201{height:25.091602px;}
.h3_c00201{height:31.364502px;}
.h2_c00201{height:35.571035px;}
.h4_c00201{height:39.777568px;}
.h0_c00201{height:1335.000000px;}
.w0_c00201{width:880.500000px;}
.x0_c00201{left:0.000000px;}
.x25_c00201{left:152.580000px;}
.x18_c00201{left:154.920000px;}
.x2_c00201{left:156.420000px;}
.x1a_c00201{left:170.580000px;}
.x28_c00201{left:183.420000px;}
.x19_c00201{left:198.420000px;}
.x29_c00201{left:207.000000px;}
.x3_c00201{left:214.080000px;}
.x1b_c00201{left:232.500000px;}
.x2a_c00201{left:259.920000px;}
.x4_c00201{left:284.580000px;}
.x2b_c00201{left:286.500000px;}
.x1f_c00201{left:316.500000px;}
.x5_c00201{left:331.080000px;}
.x2c_c00201{left:337.500000px;}
.x2d_c00201{left:354.000000px;}
.x10_c00201{left:380.580000px;}
.x20_c00201{left:382.500000px;}
.x2e_c00201{left:390.420000px;}
.x6_c00201{left:394.500000px;}
.x11_c00201{left:397.500000px;}
.x1_c00201{left:402.000000px;}
.x7_c00201{left:418.920000px;}
.x12_c00201{left:424.500000px;}
.x2f_c00201{left:427.500000px;}
.x13_c00201{left:439.500000px;}
.x21_c00201{left:442.080000px;}
.x26_c00201{left:444.000000px;}
.x8_c00201{left:459.000000px;}
.x14_c00201{left:468.420000px;}
.x22_c00201{left:481.500000px;}
.x15_c00201{left:483.000000px;}
.x27_c00201{left:492.420000px;}
.x1c_c00201{left:496.080000px;}
.x9_c00201{left:504.000000px;}
.xa_c00201{left:544.500000px;}
.x1d_c00201{left:556.080000px;}
.xb_c00201{left:592.500000px;}
.x1e_c00201{left:604.500000px;}
.x23_c00201{left:611.580000px;}
.xc_c00201{left:643.500000px;}
.x16_c00201{left:657.000000px;}
.xd_c00201{left:661.500000px;}
.x24_c00201{left:669.000000px;}
.xe_c00201{left:693.420000px;}
.xf_c00201{left:709.500000px;}
.x17_c00201{left:714.000000px;}
@media print{
.v0_c00201{vertical-align:0.000000pt;}
.ls0_c00201{letter-spacing:0.000000pt;}
.ws1_c00201{word-spacing:-3.967663pt;}
.ws0_c00201{word-spacing:-2.299814pt;}
.ws2_c00201{word-spacing:0.000000pt;}
.fs4_c00201{font-size:16.640000pt;}
.fs0_c00201{font-size:18.133333pt;}
.fs2_c00201{font-size:22.666667pt;}
.fs1_c00201{font-size:25.706667pt;}
.fs3_c00201{font-size:28.746667pt;}
.y0_c00201{bottom:0.000000pt;}
.yf_c00201{bottom:210.640000pt;}
.ye_c00201{bottom:211.600000pt;}
.yd_c00201{bottom:212.360000pt;}
.y10_c00201{bottom:214.266667pt;}
.yc_c00201{bottom:223.973333pt;}
.y9_c00201{bottom:224.733333pt;}
.yb_c00201{bottom:224.933333pt;}
.y4_c00201{bottom:225.306667pt;}
.y3_c00201{bottom:225.693333pt;}
.y8_c00201{bottom:225.893333pt;}
.y5_c00201{bottom:226.066667pt;}
.y7_c00201{bottom:226.640000pt;}
.y6_c00201{bottom:227.226667pt;}
.ya_c00201{bottom:227.600000pt;}
.y13_c00201{bottom:238.066667pt;}
.y11_c00201{bottom:239.026667pt;}
.y12_c00201{bottom:239.226667pt;}
.y17_c00201{bottom:239.600000pt;}
.y15_c00201{bottom:239.973333pt;}
.y16_c00201{bottom:240.560000pt;}
.y14_c00201{bottom:241.306667pt;}
.y1a_c00201{bottom:250.640000pt;}
.y18_c00201{bottom:251.400000pt;}
.y1c_c00201{bottom:251.600000pt;}
.y1b_c00201{bottom:252.360000pt;}
.y19_c00201{bottom:252.560000pt;}
.y1d_c00201{bottom:253.306667pt;}
.y1e_c00201{bottom:254.266667pt;}
.y1f_c00201{bottom:254.640000pt;}
.y2_c00201{bottom:977.693333pt;}
.y1_c00201{bottom:979.600000pt;}
.h5_c00201{height:20.466875pt;}
.h1_c00201{height:22.303646pt;}
.h3_c00201{height:27.879557pt;}
.h2_c00201{height:31.618698pt;}
.h4_c00201{height:35.357839pt;}
.h0_c00201{height:1186.666667pt;}
.w0_c00201{width:782.666667pt;}
.x0_c00201{left:0.000000pt;}
.x25_c00201{left:135.626667pt;}
.x18_c00201{left:137.706667pt;}
.x2_c00201{left:139.040000pt;}
.x1a_c00201{left:151.626667pt;}
.x28_c00201{left:163.040000pt;}
.x19_c00201{left:176.373333pt;}
.x29_c00201{left:184.000000pt;}
.x3_c00201{left:190.293333pt;}
.x1b_c00201{left:206.666667pt;}
.x2a_c00201{left:231.040000pt;}
.x4_c00201{left:252.960000pt;}
.x2b_c00201{left:254.666667pt;}
.x1f_c00201{left:281.333333pt;}
.x5_c00201{left:294.293333pt;}
.x2c_c00201{left:300.000000pt;}
.x2d_c00201{left:314.666667pt;}
.x10_c00201{left:338.293333pt;}
.x20_c00201{left:340.000000pt;}
.x2e_c00201{left:347.040000pt;}
.x6_c00201{left:350.666667pt;}
.x11_c00201{left:353.333333pt;}
.x1_c00201{left:357.333333pt;}
.x7_c00201{left:372.373333pt;}
.x12_c00201{left:377.333333pt;}
.x2f_c00201{left:380.000000pt;}
.x13_c00201{left:390.666667pt;}
.x21_c00201{left:392.960000pt;}
.x26_c00201{left:394.666667pt;}
.x8_c00201{left:408.000000pt;}
.x14_c00201{left:416.373333pt;}
.x22_c00201{left:428.000000pt;}
.x15_c00201{left:429.333333pt;}
.x27_c00201{left:437.706667pt;}
.x1c_c00201{left:440.960000pt;}
.x9_c00201{left:448.000000pt;}
.xa_c00201{left:484.000000pt;}
.x1d_c00201{left:494.293333pt;}
.xb_c00201{left:526.666667pt;}
.x1e_c00201{left:537.333333pt;}
.x23_c00201{left:543.626667pt;}
.xc_c00201{left:572.000000pt;}
.x16_c00201{left:584.000000pt;}
.xd_c00201{left:588.000000pt;}
.x24_c00201{left:594.666667pt;}
.xe_c00201{left:616.373333pt;}
.xf_c00201{left:630.666667pt;}
.x17_c00201{left:634.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_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_addbd4d7774ed8c6e59aca82.woff2')format("woff");}.ff1_c00202{font-family:ff1_c00202;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb0_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);}
.ma0_c00202{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m42_c00202{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.ma2_c00202{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00202{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m7e_c00202{transform:matrix(0.383581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383581,0.000000,0.000000,0.250000,0,0);}
.m30_c00202{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m41_c00202{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m44_c00202{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m17_c00202{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m2d_c00202{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m6a_c00202{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m7d_c00202{transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);}
.m68_c00202{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m49_c00202{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m1_c00202{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.m6c_c00202{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m7_c00202{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m7c_c00202{transform:matrix(0.406772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406772,0.000000,0.000000,0.250000,0,0);}
.m46_c00202{transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);}
.m3d_c00202{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m69_c00202{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m70_c00202{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m64_c00202{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m32_c00202{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m4b_c00202{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m1f_c00202{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m83_c00202{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m15_c00202{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m48_c00202{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m2a_c00202{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m58_c00202{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m86_c00202{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m43_c00202{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m2c_c00202{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m9_c00202{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.md_c00202{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m13_c00202{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m35_c00202{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m50_c00202{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m19_c00202{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m7a_c00202{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m59_c00202{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m9a_c00202{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m4a_c00202{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m94_c00202{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);}
.m60_c00202{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m6d_c00202{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m55_c00202{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.m97_c00202{transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);}
.m33_c00202{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m4c_c00202{transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);}
.m27_c00202{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m5b_c00202{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m80_c00202{transform:matrix(0.451765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451765,0.000000,0.000000,0.250000,0,0);}
.m3_c00202{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m4f_c00202{transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);}
.m8b_c00202{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mc1_c00202{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.m1a_c00202{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m8e_c00202{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.maa_c00202{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.m85_c00202{transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);}
.mb5_c00202{transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);}
.mb2_c00202{transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);}
.m47_c00202{transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);}
.ma7_c00202{transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);}
.me_c00202{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m5f_c00202{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m3f_c00202{transform:matrix(0.484034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484034,0.000000,0.000000,0.250000,0,0);}
.m5d_c00202{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m96_c00202{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m91_c00202{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.ma_c00202{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mb6_c00202{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.mb_c00202{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);}
.m84_c00202{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m26_c00202{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m34_c00202{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m25_c00202{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m57_c00202{transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);}
.m36_c00202{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mc3_c00202{transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);}
.m38_c00202{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m66_c00202{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m7b_c00202{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m63_c00202{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m1d_c00202{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m4_c00202{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m39_c00202{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m8f_c00202{transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);}
.mc_c00202{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m28_c00202{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.ma5_c00202{transform:matrix(0.532051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532051,0.000000,0.000000,0.250000,0,0);}
.m6_c00202{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m9f_c00202{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m82_c00202{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.m22_c00202{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m65_c00202{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m3b_c00202{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m1e_c00202{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m4d_c00202{transform:matrix(0.536029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536029,0.000000,0.000000,0.250000,0,0);}
.m29_c00202{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m2e_c00202{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m14_c00202{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m6e_c00202{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.mbc_c00202{transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);}
.m11_c00202{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m37_c00202{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m1c_c00202{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.ma8_c00202{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m1b_c00202{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m54_c00202{transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);}
.m40_c00202{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m71_c00202{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m5e_c00202{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m2b_c00202{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.mf_c00202{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m93_c00202{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.mb9_c00202{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m74_c00202{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);}
.m16_c00202{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m73_c00202{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.mae_c00202{transform:matrix(0.572115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572115,0.000000,0.000000,0.250000,0,0);}
.m20_c00202{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m24_c00202{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.ma1_c00202{transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);}
.ma4_c00202{transform:matrix(0.576923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576923,0.000000,0.000000,0.250000,0,0);}
.m90_c00202{transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);}
.m7f_c00202{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m5_c00202{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m67_c00202{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.m3a_c00202{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m56_c00202{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m75_c00202{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m12_c00202{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m23_c00202{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m0_c00202{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m45_c00202{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m72_c00202{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m18_c00202{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m89_c00202{transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);}
.m88_c00202{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m8_c00202{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m87_c00202{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.mb8_c00202{transform:matrix(0.614583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614583,0.000000,0.000000,0.250000,0,0);}
.m3e_c00202{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m52_c00202{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m8c_c00202{transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);}
.m77_c00202{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m62_c00202{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.ma9_c00202{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m78_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);}
.m76_c00202{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.mc2_c00202{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.m9c_c00202{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m10_c00202{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m9d_c00202{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m79_c00202{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m5c_c00202{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m51_c00202{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m81_c00202{transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);}
.mad_c00202{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.m9b_c00202{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m6f_c00202{transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);}
.mbd_c00202{transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);}
.mb7_c00202{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.m8a_c00202{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mc0_c00202{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m31_c00202{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m8d_c00202{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.mbe_c00202{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m53_c00202{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m95_c00202{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m2_c00202{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mb4_c00202{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.m2f_c00202{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m99_c00202{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m4e_c00202{transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);}
.m61_c00202{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mbb_c00202{transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);}
.mba_c00202{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.mb3_c00202{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.m92_c00202{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m21_c00202{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mab_c00202{transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);}
.mbf_c00202{transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);}
.m3c_c00202{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m98_c00202{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.mac_c00202{transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);}
.maf_c00202{transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);}
.ma3_c00202{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m9e_c00202{transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);}
.ma6_c00202{transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);}
.mb1_c00202{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m5a_c00202{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00202{vertical-align:-6.000000px;}
.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;}
}
.ws11_c00202{word-spacing:0.000000px;}
.ws7_c00202{word-spacing:10.017706px;}
.ws8_c00202{word-spacing:12.210014px;}
.ws10_c00202{word-spacing:18.138913px;}
.wsc_c00202{word-spacing:20.014946px;}
.ws0_c00202{word-spacing:20.322608px;}
.ws6_c00202{word-spacing:23.728109px;}
.wsb_c00202{word-spacing:23.767013px;}
.wsf_c00202{word-spacing:30.607622px;}
.ws5_c00202{word-spacing:31.838295px;}
.wsd_c00202{word-spacing:33.170813px;}
.wsa_c00202{word-spacing:33.422660px;}
.ws9_c00202{word-spacing:39.052735px;}
.ws3_c00202{word-spacing:40.994598px;}
.wse_c00202{word-spacing:41.867773px;}
.ws1_c00202{word-spacing:43.405892px;}
.ws4_c00202{word-spacing:49.006362px;}
.ws2_c00202{word-spacing:57.204655px;}
._1_c00202{width:14.207294px;}
._0_c00202{width:25.216999px;}
._4_c00202{width:31.721093px;}
._5_c00202{width:33.597126px;}
._3_c00202{width:49.985215px;}
._2_c00202{width:52.800253px;}
.fc0_c00202{color:transparent;}
.fs6_c00202{font-size:3.420000px;}
.fs8_c00202{font-size:11.880000px;}
.fs7_c00202{font-size:13.620000px;}
.fs2_c00202{font-size:18.720000px;}
.fs0_c00202{font-size:20.400000px;}
.fs5_c00202{font-size:25.500000px;}
.fs4_c00202{font-size:28.920000px;}
.fs1_c00202{font-size:32.340000px;}
.fs3_c00202{font-size:35.700000px;}
.y0_c00202{bottom:0.000000px;}
.y43_c00202{bottom:244.245000px;}
.y41_c00202{bottom:245.550000px;}
.y40_c00202{bottom:246.405000px;}
.y42_c00202{bottom:246.420000px;}
.y3f_c00202{bottom:262.905000px;}
.y3e_c00202{bottom:263.745000px;}
.y3c_c00202{bottom:263.970000px;}
.y3d_c00202{bottom:264.825000px;}
.y3a_c00202{bottom:265.245000px;}
.y3b_c00202{bottom:267.420000px;}
.y39_c00202{bottom:283.245000px;}
.y37_c00202{bottom:284.745000px;}
.y38_c00202{bottom:285.405000px;}
.y35_c00202{bottom:285.630000px;}
.y34_c00202{bottom:286.470000px;}
.y36_c00202{bottom:286.905000px;}
.y32_c00202{bottom:303.825000px;}
.y2e_c00202{bottom:304.245000px;}
.y30_c00202{bottom:304.905000px;}
.y33_c00202{bottom:305.130000px;}
.y31_c00202{bottom:305.970000px;}
.y2f_c00202{bottom:306.420000px;}
.y2d_c00202{bottom:325.470000px;}
.y2b_c00202{bottom:325.905000px;}
.y2c_c00202{bottom:326.970000px;}
.y29_c00202{bottom:327.405000px;}
.y2a_c00202{bottom:328.050000px;}
.y28_c00202{bottom:341.970000px;}
.y27_c00202{bottom:342.825000px;}
.y26_c00202{bottom:343.470000px;}
.y23_c00202{bottom:344.325000px;}
.y24_c00202{bottom:345.630000px;}
.y25_c00202{bottom:346.470000px;}
.y20_c00202{bottom:364.245000px;}
.y22_c00202{bottom:365.745000px;}
.y21_c00202{bottom:367.905000px;}
.ybe_c00202{bottom:396.630000px;}
.ybd_c00202{bottom:397.695000px;}
.ybb_c00202{bottom:398.130000px;}
.ybc_c00202{bottom:399.195000px;}
.yba_c00202{bottom:410.130000px;}
.yb9_c00202{bottom:410.775000px;}
.yb6_c00202{bottom:411.195000px;}
.yb7_c00202{bottom:412.275000px;}
.yb5_c00202{bottom:412.695000px;}
.yb8_c00202{bottom:412.920000px;}
.yb0_c00202{bottom:424.695000px;}
.yb4_c00202{bottom:425.130000px;}
.yb2_c00202{bottom:425.775000px;}
.yb1_c00202{bottom:426.195000px;}
.yb3_c00202{bottom:426.420000px;}
.yaf_c00202{bottom:438.195000px;}
.yac_c00202{bottom:438.630000px;}
.yab_c00202{bottom:439.275000px;}
.yad_c00202{bottom:439.695000px;}
.yae_c00202{bottom:439.920000px;}
.yaa_c00202{bottom:440.130000px;}
.ya9_c00202{bottom:452.130000px;}
.ya8_c00202{bottom:453.195000px;}
.ya7_c00202{bottom:454.275000px;}
.ya6_c00202{bottom:454.695000px;}
.ya4_c00202{bottom:467.130000px;}
.ya5_c00202{bottom:468.195000px;}
.ya3_c00202{bottom:479.130000px;}
.ya2_c00202{bottom:480.195000px;}
.ya1_c00202{bottom:480.630000px;}
.ya0_c00202{bottom:481.695000px;}
.y9f_c00202{bottom:492.630000px;}
.y9e_c00202{bottom:493.695000px;}
.y9b_c00202{bottom:494.550000px;}
.y9c_c00202{bottom:495.195000px;}
.y9d_c00202{bottom:495.630000px;}
.y9a_c00202{bottom:507.195000px;}
.y99_c00202{bottom:507.630000px;}
.y98_c00202{bottom:510.195000px;}
.y97_c00202{bottom:521.130000px;}
.y96_c00202{bottom:522.420000px;}
.y93_c00202{bottom:522.630000px;}
.y94_c00202{bottom:523.695000px;}
.y95_c00202{bottom:523.920000px;}
.y91_c00202{bottom:534.630000px;}
.y8e_c00202{bottom:536.130000px;}
.y8f_c00202{bottom:537.195000px;}
.y92_c00202{bottom:537.420000px;}
.y90_c00202{bottom:541.695000px;}
.y8d_c00202{bottom:548.130000px;}
.y8c_c00202{bottom:549.630000px;}
.y8b_c00202{bottom:550.695000px;}
.y8a_c00202{bottom:562.695000px;}
.y87_c00202{bottom:563.130000px;}
.y89_c00202{bottom:564.195000px;}
.y88_c00202{bottom:565.275000px;}
.y86_c00202{bottom:576.195000px;}
.y85_c00202{bottom:577.695000px;}
.y84_c00202{bottom:578.130000px;}
.y81_c00202{bottom:591.195000px;}
.y82_c00202{bottom:591.630000px;}
.y83_c00202{bottom:592.695000px;}
.y80_c00202{bottom:606.630000px;}
.y7f_c00202{bottom:617.130000px;}
.y7e_c00202{bottom:618.195000px;}
.y7d_c00202{bottom:621.195000px;}
.y7c_c00202{bottom:632.130000px;}
.y7b_c00202{bottom:633.195000px;}
.y7a_c00202{bottom:633.630000px;}
.y79_c00202{bottom:645.630000px;}
.y78_c00202{bottom:646.695000px;}
.y77_c00202{bottom:647.130000px;}
.y76_c00202{bottom:648.195000px;}
.y75_c00202{bottom:659.130000px;}
.y74_c00202{bottom:660.630000px;}
.y73_c00202{bottom:661.695000px;}
.y71_c00202{bottom:674.130000px;}
.y70_c00202{bottom:674.550000px;}
.y72_c00202{bottom:675.195000px;}
.y6f_c00202{bottom:676.695000px;}
.y6e_c00202{bottom:688.695000px;}
.y6d_c00202{bottom:689.130000px;}
.y6c_c00202{bottom:690.195000px;}
.y6b_c00202{bottom:702.195000px;}
.y6a_c00202{bottom:702.630000px;}
.y69_c00202{bottom:703.695000px;}
.y68_c00202{bottom:715.695000px;}
.y67_c00202{bottom:716.130000px;}
.y65_c00202{bottom:717.195000px;}
.y66_c00202{bottom:717.630000px;}
.y64_c00202{bottom:729.195000px;}
.y63_c00202{bottom:729.630000px;}
.y62_c00202{bottom:730.695000px;}
.y60_c00202{bottom:743.130000px;}
.y61_c00202{bottom:744.195000px;}
.y5f_c00202{bottom:744.630000px;}
.y5d_c00202{bottom:757.695000px;}
.y5e_c00202{bottom:758.130000px;}
.y5c_c00202{bottom:770.130000px;}
.y5b_c00202{bottom:771.195000px;}
.y5a_c00202{bottom:771.630000px;}
.y59_c00202{bottom:772.050000px;}
.y58_c00202{bottom:773.130000px;}
.y57_c00202{bottom:783.630000px;}
.y56_c00202{bottom:785.130000px;}
.y55_c00202{bottom:786.195000px;}
.y54_c00202{bottom:803.130000px;}
.y53_c00202{bottom:804.195000px;}
.y52_c00202{bottom:816.195000px;}
.y50_c00202{bottom:816.630000px;}
.y51_c00202{bottom:817.695000px;}
.y4f_c00202{bottom:829.695000px;}
.y4d_c00202{bottom:831.195000px;}
.y4e_c00202{bottom:832.275000px;}
.y4c_c00202{bottom:832.695000px;}
.y4b_c00202{bottom:846.630000px;}
.y4a_c00202{bottom:860.325000px;}
.y49_c00202{bottom:862.470000px;}
.y48_c00202{bottom:876.405000px;}
.y46_c00202{bottom:877.470000px;}
.y47_c00202{bottom:878.550000px;}
.y45_c00202{bottom:896.550000px;}
.y44_c00202{bottom:899.550000px;}
.y1f_c00202{bottom:922.905000px;}
.y1e_c00202{bottom:925.905000px;}
.y1c_c00202{bottom:943.245000px;}
.y1d_c00202{bottom:944.130000px;}
.y1b_c00202{bottom:944.970000px;}
.y1a_c00202{bottom:945.405000px;}
.y18_c00202{bottom:962.745000px;}
.y19_c00202{bottom:963.825000px;}
.y17_c00202{bottom:964.905000px;}
.y13_c00202{bottom:982.245000px;}
.y16_c00202{bottom:983.130000px;}
.y15_c00202{bottom:983.970000px;}
.y14_c00202{bottom:984.405000px;}
.y12_c00202{bottom:1000.470000px;}
.y10_c00202{bottom:1001.745000px;}
.yf_c00202{bottom:1003.905000px;}
.y11_c00202{bottom:1004.130000px;}
.ye_c00202{bottom:1020.825000px;}
.yd_c00202{bottom:1021.245000px;}
.yc_c00202{bottom:1023.405000px;}
.y8_c00202{bottom:1040.745000px;}
.yb_c00202{bottom:1041.825000px;}
.y9_c00202{bottom:1042.905000px;}
.ya_c00202{bottom:1043.130000px;}
.y7_c00202{bottom:1060.245000px;}
.y4_c00202{bottom:1061.745000px;}
.y6_c00202{bottom:1062.405000px;}
.y3_c00202{bottom:1062.630000px;}
.y5_c00202{bottom:1063.905000px;}
.y2_c00202{bottom:1098.825000px;}
.y1_c00202{bottom:1102.050000px;}
.h7_c00202{height:4.206533px;}
.h9_c00202{height:14.612168px;}
.h8_c00202{height:16.752334px;}
.h3_c00202{height:23.025234px;}
.h1_c00202{height:25.091602px;}
.h6_c00202{height:31.364502px;}
.h5_c00202{height:35.571035px;}
.h2_c00202{height:39.777568px;}
.h4_c00202{height:43.910303px;}
.h0_c00202{height:1335.000000px;}
.w0_c00202{width:880.500000px;}
.x0_c00202{left:0.000000px;}
.x11_c00202{left:151.500000px;}
.x3_c00202{left:153.000000px;}
.x71_c00202{left:154.500000px;}
.x41_c00202{left:166.500000px;}
.x48_c00202{left:168.000000px;}
.x5d_c00202{left:169.500000px;}
.x4e_c00202{left:171.000000px;}
.x20_c00202{left:172.920000px;}
.x42_c00202{left:180.000000px;}
.x4_c00202{left:181.920000px;}
.x2f_c00202{left:198.000000px;}
.x72_c00202{left:199.920000px;}
.x21_c00202{left:201.000000px;}
.x54_c00202{left:202.920000px;}
.x37_c00202{left:208.500000px;}
.x67_c00202{left:211.920000px;}
.x4f_c00202{left:214.080000px;}
.x12_c00202{left:217.500000px;}
.x73_c00202{left:225.420000px;}
.x13_c00202{left:232.080000px;}
.x43_c00202{left:234.855000px;}
.x5e_c00202{left:235.920000px;}
.x74_c00202{left:250.080000px;}
.x5_c00202{left:252.000000px;}
.x22_c00202{left:254.580000px;}
.x7d_c00202{left:259.500000px;}
.x49_c00202{left:262.080000px;}
.x55_c00202{left:266.580000px;}
.x68_c00202{left:270.000000px;}
.x38_c00202{left:271.500000px;}
.x30_c00202{left:273.420000px;}
.x14_c00202{left:277.500000px;}
.x7e_c00202{left:282.000000px;}
.x23_c00202{left:285.000000px;}
.x83_c00202{left:286.500000px;}
.x56_c00202{left:290.580000px;}
.x44_c00202{left:292.080000px;}
.x15_c00202{left:294.000000px;}
.xa5_c00202{left:297.000000px;}
.x9d_c00202{left:298.500000px;}
.x24_c00202{left:301.500000px;}
.x88_c00202{left:304.920000px;}
.x91_c00202{left:307.080000px;}
.x6_c00202{left:309.420000px;}
.x5f_c00202{left:310.500000px;}
.x96_c00202{left:312.420000px;}
.x31_c00202{left:315.000000px;}
.x9c_c00202{left:316.920000px;}
.x45_c00202{left:319.500000px;}
.x81_c00202{left:322.080000px;}
.x75_c00202{left:325.920000px;}
.x39_c00202{left:328.500000px;}
.x4a_c00202{left:330.000000px;}
.x16_c00202{left:331.500000px;}
.xa0_c00202{left:334.500000px;}
.x46_c00202{left:335.580000px;}
.x57_c00202{left:337.500000px;}
.x9e_c00202{left:338.580000px;}
.x84_c00202{left:343.920000px;}
.x7f_c00202{left:346.275000px;}
.x7_c00202{left:348.420000px;}
.x17_c00202{left:349.920000px;}
.x97_c00202{left:352.500000px;}
.x89_c00202{left:354.420000px;}
.xa6_c00202{left:355.500000px;}
.x9f_c00202{left:356.580000px;}
.x25_c00202{left:358.920000px;}
.x3a_c00202{left:360.000000px;}
.x58_c00202{left:364.080000px;}
.x50_c00202{left:365.580000px;}
.x85_c00202{left:370.500000px;}
.x60_c00202{left:372.420000px;}
.xa1_c00202{left:375.000000px;}
.x8_c00202{left:376.920000px;}
.xa3_c00202{left:379.080000px;}
.x18_c00202{left:382.080000px;}
.xa7_c00202{left:384.000000px;}
.x69_c00202{left:385.500000px;}
.x76_c00202{left:388.080000px;}
.xa4_c00202{left:393.000000px;}
.x1_c00202{left:399.000000px;}
.x19_c00202{left:400.920000px;}
.x86_c00202{left:402.000000px;}
.x61_c00202{left:408.000000px;}
.x82_c00202{left:411.000000px;}
.x26_c00202{left:412.920000px;}
.x8a_c00202{left:414.420000px;}
.x3b_c00202{left:417.420000px;}
.x9_c00202{left:418.920000px;}
.x80_c00202{left:421.500000px;}
.x8d_c00202{left:423.000000px;}
.x1a_c00202{left:426.000000px;}
.x47_c00202{left:430.920000px;}
.x6a_c00202{left:436.500000px;}
.x77_c00202{left:439.920000px;}
.x62_c00202{left:442.500000px;}
.x51_c00202{left:445.080000px;}
.x27_c00202{left:450.420000px;}
.x92_c00202{left:453.000000px;}
.x3c_c00202{left:454.500000px;}
.x8e_c00202{left:456.000000px;}
.x6b_c00202{left:457.080000px;}
.xa_c00202{left:459.000000px;}
.x9a_c00202{left:460.500000px;}
.xa8_c00202{left:462.000000px;}
.x78_c00202{left:465.000000px;}
.x3d_c00202{left:469.500000px;}
.x52_c00202{left:471.000000px;}
.x63_c00202{left:475.500000px;}
.x1b_c00202{left:478.500000px;}
.x6c_c00202{left:481.500000px;}
.x32_c00202{left:484.500000px;}
.x28_c00202{left:485.580000px;}
.x87_c00202{left:490.920000px;}
.x8f_c00202{left:496.080000px;}
.x99_c00202{left:498.000000px;}
.x1c_c00202{left:499.920000px;}
.x9b_c00202{left:501.000000px;}
.xa2_c00202{left:502.500000px;}
.x29_c00202{left:505.920000px;}
.x64_c00202{left:511.500000px;}
.x79_c00202{left:515.580000px;}
.x3e_c00202{left:523.920000px;}
.x59_c00202{left:526.920000px;}
.x8b_c00202{left:529.500000px;}
.x2a_c00202{left:532.920000px;}
.xb_c00202{left:534.420000px;}
.x90_c00202{left:537.000000px;}
.x98_c00202{left:538.500000px;}
.x53_c00202{left:541.275000px;}
.xa9_c00202{left:543.000000px;}
.x94_c00202{left:546.000000px;}
.x1d_c00202{left:547.500000px;}
.x6d_c00202{left:555.420000px;}
.x4b_c00202{left:558.420000px;}
.xc_c00202{left:562.080000px;}
.x33_c00202{left:564.420000px;}
.x8c_c00202{left:565.500000px;}
.x2b_c00202{left:567.000000px;}
.x95_c00202{left:573.000000px;}
.x93_c00202{left:574.500000px;}
.x7a_c00202{left:577.500000px;}
.x6e_c00202{left:578.580000px;}
.x65_c00202{left:581.580000px;}
.x34_c00202{left:594.000000px;}
.x4c_c00202{left:595.080000px;}
.x66_c00202{left:598.080000px;}
.xd_c00202{left:599.580000px;}
.x3f_c00202{left:601.500000px;}
.x5a_c00202{left:603.000000px;}
.x1e_c00202{left:606.420000px;}
.x2c_c00202{left:610.500000px;}
.xe_c00202{left:621.420000px;}
.x5b_c00202{left:624.000000px;}
.x5c_c00202{left:643.080000px;}
.x7b_c00202{left:644.775000px;}
.x35_c00202{left:648.000000px;}
.xf_c00202{left:649.920000px;}
.x40_c00202{left:660.000000px;}
.x2d_c00202{left:661.500000px;}
.x4d_c00202{left:666.000000px;}
.x6f_c00202{left:669.000000px;}
.x7c_c00202{left:686.775000px;}
.x10_c00202{left:691.500000px;}
.x2e_c00202{left:693.420000px;}
.x1f_c00202{left:699.420000px;}
.x2_c00202{left:704.355000px;}
.x70_c00202{left:709.500000px;}
.x36_c00202{left:717.000000px;}
@media print{
.v1_c00202{vertical-align:-5.333333pt;}
.v0_c00202{vertical-align:0.000000pt;}
.ls0_c00202{letter-spacing:0.000000pt;}
.ws11_c00202{word-spacing:0.000000pt;}
.ws7_c00202{word-spacing:8.904628pt;}
.ws8_c00202{word-spacing:10.853346pt;}
.ws10_c00202{word-spacing:16.123479pt;}
.wsc_c00202{word-spacing:17.791064pt;}
.ws0_c00202{word-spacing:18.064540pt;}
.ws6_c00202{word-spacing:21.091652pt;}
.wsb_c00202{word-spacing:21.126233pt;}
.wsf_c00202{word-spacing:27.206775pt;}
.ws5_c00202{word-spacing:28.300707pt;}
.wsd_c00202{word-spacing:29.485167pt;}
.wsa_c00202{word-spacing:29.709031pt;}
.ws9_c00202{word-spacing:34.713542pt;}
.ws3_c00202{word-spacing:36.439642pt;}
.wse_c00202{word-spacing:37.215798pt;}
.ws1_c00202{word-spacing:38.583015pt;}
.ws4_c00202{word-spacing:43.561211pt;}
.ws2_c00202{word-spacing:50.848582pt;}
._1_c00202{width:12.628706pt;}
._0_c00202{width:22.415110pt;}
._4_c00202{width:28.196527pt;}
._5_c00202{width:29.864112pt;}
._3_c00202{width:44.431302pt;}
._2_c00202{width:46.933558pt;}
.fs6_c00202{font-size:3.040000pt;}
.fs8_c00202{font-size:10.560000pt;}
.fs7_c00202{font-size:12.106667pt;}
.fs2_c00202{font-size:16.640000pt;}
.fs0_c00202{font-size:18.133333pt;}
.fs5_c00202{font-size:22.666667pt;}
.fs4_c00202{font-size:25.706667pt;}
.fs1_c00202{font-size:28.746667pt;}
.fs3_c00202{font-size:31.733333pt;}
.y0_c00202{bottom:0.000000pt;}
.y43_c00202{bottom:217.106667pt;}
.y41_c00202{bottom:218.266667pt;}
.y40_c00202{bottom:219.026667pt;}
.y42_c00202{bottom:219.040000pt;}
.y3f_c00202{bottom:233.693333pt;}
.y3e_c00202{bottom:234.440000pt;}
.y3c_c00202{bottom:234.640000pt;}
.y3d_c00202{bottom:235.400000pt;}
.y3a_c00202{bottom:235.773333pt;}
.y3b_c00202{bottom:237.706667pt;}
.y39_c00202{bottom:251.773333pt;}
.y37_c00202{bottom:253.106667pt;}
.y38_c00202{bottom:253.693333pt;}
.y35_c00202{bottom:253.893333pt;}
.y34_c00202{bottom:254.640000pt;}
.y36_c00202{bottom:255.026667pt;}
.y32_c00202{bottom:270.066667pt;}
.y2e_c00202{bottom:270.440000pt;}
.y30_c00202{bottom:271.026667pt;}
.y33_c00202{bottom:271.226667pt;}
.y31_c00202{bottom:271.973333pt;}
.y2f_c00202{bottom:272.373333pt;}
.y2d_c00202{bottom:289.306667pt;}
.y2b_c00202{bottom:289.693333pt;}
.y2c_c00202{bottom:290.640000pt;}
.y29_c00202{bottom:291.026667pt;}
.y2a_c00202{bottom:291.600000pt;}
.y28_c00202{bottom:303.973333pt;}
.y27_c00202{bottom:304.733333pt;}
.y26_c00202{bottom:305.306667pt;}
.y23_c00202{bottom:306.066667pt;}
.y24_c00202{bottom:307.226667pt;}
.y25_c00202{bottom:307.973333pt;}
.y20_c00202{bottom:323.773333pt;}
.y22_c00202{bottom:325.106667pt;}
.y21_c00202{bottom:327.026667pt;}
.ybe_c00202{bottom:352.560000pt;}
.ybd_c00202{bottom:353.506667pt;}
.ybb_c00202{bottom:353.893333pt;}
.ybc_c00202{bottom:354.840000pt;}
.yba_c00202{bottom:364.560000pt;}
.yb9_c00202{bottom:365.133333pt;}
.yb6_c00202{bottom:365.506667pt;}
.yb7_c00202{bottom:366.466667pt;}
.yb5_c00202{bottom:366.840000pt;}
.yb8_c00202{bottom:367.040000pt;}
.yb0_c00202{bottom:377.506667pt;}
.yb4_c00202{bottom:377.893333pt;}
.yb2_c00202{bottom:378.466667pt;}
.yb1_c00202{bottom:378.840000pt;}
.yb3_c00202{bottom:379.040000pt;}
.yaf_c00202{bottom:389.506667pt;}
.yac_c00202{bottom:389.893333pt;}
.yab_c00202{bottom:390.466667pt;}
.yad_c00202{bottom:390.840000pt;}
.yae_c00202{bottom:391.040000pt;}
.yaa_c00202{bottom:391.226667pt;}
.ya9_c00202{bottom:401.893333pt;}
.ya8_c00202{bottom:402.840000pt;}
.ya7_c00202{bottom:403.800000pt;}
.ya6_c00202{bottom:404.173333pt;}
.ya4_c00202{bottom:415.226667pt;}
.ya5_c00202{bottom:416.173333pt;}
.ya3_c00202{bottom:425.893333pt;}
.ya2_c00202{bottom:426.840000pt;}
.ya1_c00202{bottom:427.226667pt;}
.ya0_c00202{bottom:428.173333pt;}
.y9f_c00202{bottom:437.893333pt;}
.y9e_c00202{bottom:438.840000pt;}
.y9b_c00202{bottom:439.600000pt;}
.y9c_c00202{bottom:440.173333pt;}
.y9d_c00202{bottom:440.560000pt;}
.y9a_c00202{bottom:450.840000pt;}
.y99_c00202{bottom:451.226667pt;}
.y98_c00202{bottom:453.506667pt;}
.y97_c00202{bottom:463.226667pt;}
.y96_c00202{bottom:464.373333pt;}
.y93_c00202{bottom:464.560000pt;}
.y94_c00202{bottom:465.506667pt;}
.y95_c00202{bottom:465.706667pt;}
.y91_c00202{bottom:475.226667pt;}
.y8e_c00202{bottom:476.560000pt;}
.y8f_c00202{bottom:477.506667pt;}
.y92_c00202{bottom:477.706667pt;}
.y90_c00202{bottom:481.506667pt;}
.y8d_c00202{bottom:487.226667pt;}
.y8c_c00202{bottom:488.560000pt;}
.y8b_c00202{bottom:489.506667pt;}
.y8a_c00202{bottom:500.173333pt;}
.y87_c00202{bottom:500.560000pt;}
.y89_c00202{bottom:501.506667pt;}
.y88_c00202{bottom:502.466667pt;}
.y86_c00202{bottom:512.173333pt;}
.y85_c00202{bottom:513.506667pt;}
.y84_c00202{bottom:513.893333pt;}
.y81_c00202{bottom:525.506667pt;}
.y82_c00202{bottom:525.893333pt;}
.y83_c00202{bottom:526.840000pt;}
.y80_c00202{bottom:539.226667pt;}
.y7f_c00202{bottom:548.560000pt;}
.y7e_c00202{bottom:549.506667pt;}
.y7d_c00202{bottom:552.173333pt;}
.y7c_c00202{bottom:561.893333pt;}
.y7b_c00202{bottom:562.840000pt;}
.y7a_c00202{bottom:563.226667pt;}
.y79_c00202{bottom:573.893333pt;}
.y78_c00202{bottom:574.840000pt;}
.y77_c00202{bottom:575.226667pt;}
.y76_c00202{bottom:576.173333pt;}
.y75_c00202{bottom:585.893333pt;}
.y74_c00202{bottom:587.226667pt;}
.y73_c00202{bottom:588.173333pt;}
.y71_c00202{bottom:599.226667pt;}
.y70_c00202{bottom:599.600000pt;}
.y72_c00202{bottom:600.173333pt;}
.y6f_c00202{bottom:601.506667pt;}
.y6e_c00202{bottom:612.173333pt;}
.y6d_c00202{bottom:612.560000pt;}
.y6c_c00202{bottom:613.506667pt;}
.y6b_c00202{bottom:624.173333pt;}
.y6a_c00202{bottom:624.560000pt;}
.y69_c00202{bottom:625.506667pt;}
.y68_c00202{bottom:636.173333pt;}
.y67_c00202{bottom:636.560000pt;}
.y65_c00202{bottom:637.506667pt;}
.y66_c00202{bottom:637.893333pt;}
.y64_c00202{bottom:648.173333pt;}
.y63_c00202{bottom:648.560000pt;}
.y62_c00202{bottom:649.506667pt;}
.y60_c00202{bottom:660.560000pt;}
.y61_c00202{bottom:661.506667pt;}
.y5f_c00202{bottom:661.893333pt;}
.y5d_c00202{bottom:673.506667pt;}
.y5e_c00202{bottom:673.893333pt;}
.y5c_c00202{bottom:684.560000pt;}
.y5b_c00202{bottom:685.506667pt;}
.y5a_c00202{bottom:685.893333pt;}
.y59_c00202{bottom:686.266667pt;}
.y58_c00202{bottom:687.226667pt;}
.y57_c00202{bottom:696.560000pt;}
.y56_c00202{bottom:697.893333pt;}
.y55_c00202{bottom:698.840000pt;}
.y54_c00202{bottom:713.893333pt;}
.y53_c00202{bottom:714.840000pt;}
.y52_c00202{bottom:725.506667pt;}
.y50_c00202{bottom:725.893333pt;}
.y51_c00202{bottom:726.840000pt;}
.y4f_c00202{bottom:737.506667pt;}
.y4d_c00202{bottom:738.840000pt;}
.y4e_c00202{bottom:739.800000pt;}
.y4c_c00202{bottom:740.173333pt;}
.y4b_c00202{bottom:752.560000pt;}
.y4a_c00202{bottom:764.733333pt;}
.y49_c00202{bottom:766.640000pt;}
.y48_c00202{bottom:779.026667pt;}
.y46_c00202{bottom:779.973333pt;}
.y47_c00202{bottom:780.933333pt;}
.y45_c00202{bottom:796.933333pt;}
.y44_c00202{bottom:799.600000pt;}
.y1f_c00202{bottom:820.360000pt;}
.y1e_c00202{bottom:823.026667pt;}
.y1c_c00202{bottom:838.440000pt;}
.y1d_c00202{bottom:839.226667pt;}
.y1b_c00202{bottom:839.973333pt;}
.y1a_c00202{bottom:840.360000pt;}
.y18_c00202{bottom:855.773333pt;}
.y19_c00202{bottom:856.733333pt;}
.y17_c00202{bottom:857.693333pt;}
.y13_c00202{bottom:873.106667pt;}
.y16_c00202{bottom:873.893333pt;}
.y15_c00202{bottom:874.640000pt;}
.y14_c00202{bottom:875.026667pt;}
.y12_c00202{bottom:889.306667pt;}
.y10_c00202{bottom:890.440000pt;}
.yf_c00202{bottom:892.360000pt;}
.y11_c00202{bottom:892.560000pt;}
.ye_c00202{bottom:907.400000pt;}
.yd_c00202{bottom:907.773333pt;}
.yc_c00202{bottom:909.693333pt;}
.y8_c00202{bottom:925.106667pt;}
.yb_c00202{bottom:926.066667pt;}
.y9_c00202{bottom:927.026667pt;}
.ya_c00202{bottom:927.226667pt;}
.y7_c00202{bottom:942.440000pt;}
.y4_c00202{bottom:943.773333pt;}
.y6_c00202{bottom:944.360000pt;}
.y3_c00202{bottom:944.560000pt;}
.y5_c00202{bottom:945.693333pt;}
.y2_c00202{bottom:976.733333pt;}
.y1_c00202{bottom:979.600000pt;}
.h7_c00202{height:3.739141pt;}
.h9_c00202{height:12.988594pt;}
.h8_c00202{height:14.890964pt;}
.h3_c00202{height:20.466875pt;}
.h1_c00202{height:22.303646pt;}
.h6_c00202{height:27.879557pt;}
.h5_c00202{height:31.618698pt;}
.h2_c00202{height:35.357839pt;}
.h4_c00202{height:39.031380pt;}
.h0_c00202{height:1186.666667pt;}
.w0_c00202{width:782.666667pt;}
.x0_c00202{left:0.000000pt;}
.x11_c00202{left:134.666667pt;}
.x3_c00202{left:136.000000pt;}
.x71_c00202{left:137.333333pt;}
.x41_c00202{left:148.000000pt;}
.x48_c00202{left:149.333333pt;}
.x5d_c00202{left:150.666667pt;}
.x4e_c00202{left:152.000000pt;}
.x20_c00202{left:153.706667pt;}
.x42_c00202{left:160.000000pt;}
.x4_c00202{left:161.706667pt;}
.x2f_c00202{left:176.000000pt;}
.x72_c00202{left:177.706667pt;}
.x21_c00202{left:178.666667pt;}
.x54_c00202{left:180.373333pt;}
.x37_c00202{left:185.333333pt;}
.x67_c00202{left:188.373333pt;}
.x4f_c00202{left:190.293333pt;}
.x12_c00202{left:193.333333pt;}
.x73_c00202{left:200.373333pt;}
.x13_c00202{left:206.293333pt;}
.x43_c00202{left:208.760000pt;}
.x5e_c00202{left:209.706667pt;}
.x74_c00202{left:222.293333pt;}
.x5_c00202{left:224.000000pt;}
.x22_c00202{left:226.293333pt;}
.x7d_c00202{left:230.666667pt;}
.x49_c00202{left:232.960000pt;}
.x55_c00202{left:236.960000pt;}
.x68_c00202{left:240.000000pt;}
.x38_c00202{left:241.333333pt;}
.x30_c00202{left:243.040000pt;}
.x14_c00202{left:246.666667pt;}
.x7e_c00202{left:250.666667pt;}
.x23_c00202{left:253.333333pt;}
.x83_c00202{left:254.666667pt;}
.x56_c00202{left:258.293333pt;}
.x44_c00202{left:259.626667pt;}
.x15_c00202{left:261.333333pt;}
.xa5_c00202{left:264.000000pt;}
.x9d_c00202{left:265.333333pt;}
.x24_c00202{left:268.000000pt;}
.x88_c00202{left:271.040000pt;}
.x91_c00202{left:272.960000pt;}
.x6_c00202{left:275.040000pt;}
.x5f_c00202{left:276.000000pt;}
.x96_c00202{left:277.706667pt;}
.x31_c00202{left:280.000000pt;}
.x9c_c00202{left:281.706667pt;}
.x45_c00202{left:284.000000pt;}
.x81_c00202{left:286.293333pt;}
.x75_c00202{left:289.706667pt;}
.x39_c00202{left:292.000000pt;}
.x4a_c00202{left:293.333333pt;}
.x16_c00202{left:294.666667pt;}
.xa0_c00202{left:297.333333pt;}
.x46_c00202{left:298.293333pt;}
.x57_c00202{left:300.000000pt;}
.x9e_c00202{left:300.960000pt;}
.x84_c00202{left:305.706667pt;}
.x7f_c00202{left:307.800000pt;}
.x7_c00202{left:309.706667pt;}
.x17_c00202{left:311.040000pt;}
.x97_c00202{left:313.333333pt;}
.x89_c00202{left:315.040000pt;}
.xa6_c00202{left:316.000000pt;}
.x9f_c00202{left:316.960000pt;}
.x25_c00202{left:319.040000pt;}
.x3a_c00202{left:320.000000pt;}
.x58_c00202{left:323.626667pt;}
.x50_c00202{left:324.960000pt;}
.x85_c00202{left:329.333333pt;}
.x60_c00202{left:331.040000pt;}
.xa1_c00202{left:333.333333pt;}
.x8_c00202{left:335.040000pt;}
.xa3_c00202{left:336.960000pt;}
.x18_c00202{left:339.626667pt;}
.xa7_c00202{left:341.333333pt;}
.x69_c00202{left:342.666667pt;}
.x76_c00202{left:344.960000pt;}
.xa4_c00202{left:349.333333pt;}
.x1_c00202{left:354.666667pt;}
.x19_c00202{left:356.373333pt;}
.x86_c00202{left:357.333333pt;}
.x61_c00202{left:362.666667pt;}
.x82_c00202{left:365.333333pt;}
.x26_c00202{left:367.040000pt;}
.x8a_c00202{left:368.373333pt;}
.x3b_c00202{left:371.040000pt;}
.x9_c00202{left:372.373333pt;}
.x80_c00202{left:374.666667pt;}
.x8d_c00202{left:376.000000pt;}
.x1a_c00202{left:378.666667pt;}
.x47_c00202{left:383.040000pt;}
.x6a_c00202{left:388.000000pt;}
.x77_c00202{left:391.040000pt;}
.x62_c00202{left:393.333333pt;}
.x51_c00202{left:395.626667pt;}
.x27_c00202{left:400.373333pt;}
.x92_c00202{left:402.666667pt;}
.x3c_c00202{left:404.000000pt;}
.x8e_c00202{left:405.333333pt;}
.x6b_c00202{left:406.293333pt;}
.xa_c00202{left:408.000000pt;}
.x9a_c00202{left:409.333333pt;}
.xa8_c00202{left:410.666667pt;}
.x78_c00202{left:413.333333pt;}
.x3d_c00202{left:417.333333pt;}
.x52_c00202{left:418.666667pt;}
.x63_c00202{left:422.666667pt;}
.x1b_c00202{left:425.333333pt;}
.x6c_c00202{left:428.000000pt;}
.x32_c00202{left:430.666667pt;}
.x28_c00202{left:431.626667pt;}
.x87_c00202{left:436.373333pt;}
.x8f_c00202{left:440.960000pt;}
.x99_c00202{left:442.666667pt;}
.x1c_c00202{left:444.373333pt;}
.x9b_c00202{left:445.333333pt;}
.xa2_c00202{left:446.666667pt;}
.x29_c00202{left:449.706667pt;}
.x64_c00202{left:454.666667pt;}
.x79_c00202{left:458.293333pt;}
.x3e_c00202{left:465.706667pt;}
.x59_c00202{left:468.373333pt;}
.x8b_c00202{left:470.666667pt;}
.x2a_c00202{left:473.706667pt;}
.xb_c00202{left:475.040000pt;}
.x90_c00202{left:477.333333pt;}
.x98_c00202{left:478.666667pt;}
.x53_c00202{left:481.133333pt;}
.xa9_c00202{left:482.666667pt;}
.x94_c00202{left:485.333333pt;}
.x1d_c00202{left:486.666667pt;}
.x6d_c00202{left:493.706667pt;}
.x4b_c00202{left:496.373333pt;}
.xc_c00202{left:499.626667pt;}
.x33_c00202{left:501.706667pt;}
.x8c_c00202{left:502.666667pt;}
.x2b_c00202{left:504.000000pt;}
.x95_c00202{left:509.333333pt;}
.x93_c00202{left:510.666667pt;}
.x7a_c00202{left:513.333333pt;}
.x6e_c00202{left:514.293333pt;}
.x65_c00202{left:516.960000pt;}
.x34_c00202{left:528.000000pt;}
.x4c_c00202{left:528.960000pt;}
.x66_c00202{left:531.626667pt;}
.xd_c00202{left:532.960000pt;}
.x3f_c00202{left:534.666667pt;}
.x5a_c00202{left:536.000000pt;}
.x1e_c00202{left:539.040000pt;}
.x2c_c00202{left:542.666667pt;}
.xe_c00202{left:552.373333pt;}
.x5b_c00202{left:554.666667pt;}
.x5c_c00202{left:571.626667pt;}
.x7b_c00202{left:573.133333pt;}
.x35_c00202{left:576.000000pt;}
.xf_c00202{left:577.706667pt;}
.x40_c00202{left:586.666667pt;}
.x2d_c00202{left:588.000000pt;}
.x4d_c00202{left:592.000000pt;}
.x6f_c00202{left:594.666667pt;}
.x7c_c00202{left:610.466667pt;}
.x10_c00202{left:614.666667pt;}
.x2e_c00202{left:616.373333pt;}
.x1f_c00202{left:621.706667pt;}
.x2_c00202{left:626.093333pt;}
.x70_c00202{left:630.666667pt;}
.x36_c00202{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_50c83381351c90d299cf992e.woff2')format("woff");}.ff1_c00203{font-family:ff1_c00203;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6c_c00203{transform:matrix(0.321892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321892,0.000000,0.000000,0.250000,0,0);}
.mc7_c00203{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m3a_c00203{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.m30_c00203{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.mb7_c00203{transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);}
.mb3_c00203{transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);}
.m2c_c00203{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m16_c00203{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m8f_c00203{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.mb5_c00203{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m37_c00203{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mb4_c00203{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m5a_c00203{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mdb_c00203{transform:matrix(0.376534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376534,0.000000,0.000000,0.250000,0,0);}
.mba_c00203{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m40_c00203{transform:matrix(0.385436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385436,0.000000,0.000000,0.250000,0,0);}
.mcb_c00203{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m82_c00203{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m36_c00203{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m48_c00203{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m74_c00203{transform:matrix(0.394712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394712,0.000000,0.000000,0.250000,0,0);}
.m7a_c00203{transform:matrix(0.395228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395228,0.000000,0.000000,0.250000,0,0);}
.m72_c00203{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m61_c00203{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.ma9_c00203{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.mc9_c00203{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.md8_c00203{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m4e_c00203{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m1e_c00203{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m96_c00203{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.mff_c00203{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_c00203{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m46_c00203{transform:matrix(0.401840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401840,0.000000,0.000000,0.250000,0,0);}
.md_c00203{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.maf_c00203{transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);}
.m104_c00203{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m12_c00203{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.me3_c00203{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mae_c00203{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.mc4_c00203{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m9e_c00203{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.m10d_c00203{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.mf3_c00203{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m5_c00203{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m10b_c00203{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mc1_c00203{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.md2_c00203{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m45_c00203{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mb1_c00203{transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);}
.m38_c00203{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mcc_c00203{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m51_c00203{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.m4c_c00203{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.mfa_c00203{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m49_c00203{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mac_c00203{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m89_c00203{transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);}
.m6e_c00203{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.mc8_c00203{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m58_c00203{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m57_c00203{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m6f_c00203{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m68_c00203{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m3c_c00203{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.md4_c00203{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.me9_c00203{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m47_c00203{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.md0_c00203{transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);}
.m94_c00203{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.me1_c00203{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m116_c00203{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.ma6_c00203{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m60_c00203{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mec_c00203{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mad_c00203{transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);}
.mc5_c00203{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mc3_c00203{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.ma0_c00203{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m6_c00203{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m9f_c00203{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mcf_c00203{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.m66_c00203{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m7b_c00203{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.mb9_c00203{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m7e_c00203{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m23_c00203{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.mdc_c00203{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m95_c00203{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m111_c00203{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mde_c00203{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mfb_c00203{transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);}
.m4b_c00203{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m107_c00203{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.me5_c00203{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.mc_c00203{transform:matrix(0.443465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443465,0.000000,0.000000,0.250000,0,0);}
.mbf_c00203{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m4d_c00203{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m54_c00203{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m21_c00203{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.mdf_c00203{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m69_c00203{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m24_c00203{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m8e_c00203{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.m33_c00203{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.md1_c00203{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mca_c00203{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m113_c00203{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m7c_c00203{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.me4_c00203{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m100_c00203{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m8d_c00203{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.ma3_c00203{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.md7_c00203{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.m10f_c00203{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.mab_c00203{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m10c_c00203{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m9d_c00203{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.ma1_c00203{transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);}
.m88_c00203{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m42_c00203{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m85_c00203{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m28_c00203{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mf6_c00203{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mf7_c00203{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m3d_c00203{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m20_c00203{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.ma7_c00203{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m91_c00203{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m1_c00203{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m6b_c00203{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.me6_c00203{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mb0_c00203{transform:matrix(0.495294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495294,0.000000,0.000000,0.250000,0,0);}
.m1f_c00203{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.me_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);}
.mf9_c00203{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.md6_c00203{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mfd_c00203{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m70_c00203{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m63_c00203{transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);}
.m71_c00203{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m53_c00203{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m90_c00203{transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);}
.m109_c00203{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.me2_c00203{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m8_c00203{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m8b_c00203{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m34_c00203{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m13_c00203{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m5d_c00203{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m4a_c00203{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m10_c00203{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mbb_c00203{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m2b_c00203{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m81_c00203{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_c00203{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m118_c00203{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mda_c00203{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m35_c00203{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.mb8_c00203{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m27_c00203{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m18_c00203{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m22_c00203{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m9_c00203{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m1a_c00203{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m87_c00203{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m2d_c00203{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m7_c00203{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m78_c00203{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m10a_c00203{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mb2_c00203{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.mf2_c00203{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m26_c00203{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m77_c00203{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);}
.ma_c00203{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m84_c00203{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m11_c00203{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m19_c00203{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.md9_c00203{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m119_c00203{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m92_c00203{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m83_c00203{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m1b_c00203{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m4f_c00203{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m5b_c00203{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m2a_c00203{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m110_c00203{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m2e_c00203{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m112_c00203{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mf8_c00203{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m2f_c00203{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m25_c00203{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.md3_c00203{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m93_c00203{transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);}
.m108_c00203{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m55_c00203{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.mb6_c00203{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m101_c00203{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m3b_c00203{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m105_c00203{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_c00203{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m3e_c00203{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m79_c00203{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m115_c00203{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m64_c00203{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.m5c_c00203{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m32_c00203{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.mfe_c00203{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m59_c00203{transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);}
.m2_c00203{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m17_c00203{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m43_c00203{transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);}
.me8_c00203{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.mf1_c00203{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m67_c00203{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m41_c00203{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.meb_c00203{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m5e_c00203{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m52_c00203{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.md5_c00203{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.mee_c00203{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m73_c00203{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.me7_c00203{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m8c_c00203{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.mce_c00203{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m3f_c00203{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m114_c00203{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m117_c00203{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.mf0_c00203{transform:matrix(0.597756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597756,0.000000,0.000000,0.250000,0,0);}
.me0_c00203{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.mdd_c00203{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m106_c00203{transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);}
.m0_c00203{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m75_c00203{transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);}
.m39_c00203{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m29_c00203{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mf4_c00203{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.ma8_c00203{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.mc6_c00203{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m9c_c00203{transform:matrix(0.616176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616176,0.000000,0.000000,0.250000,0,0);}
.m99_c00203{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.mfc_c00203{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.m7d_c00203{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m76_c00203{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);}
.m4_c00203{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.maa_c00203{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m80_c00203{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.ma2_c00203{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m7f_c00203{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m31_c00203{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.mc2_c00203{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m6a_c00203{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m6d_c00203{transform:matrix(0.657051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657051,0.000000,0.000000,0.250000,0,0);}
.mbc_c00203{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m50_c00203{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mb_c00203{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m97_c00203{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.m9a_c00203{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.med_c00203{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.m86_c00203{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m44_c00203{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m5f_c00203{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.ma4_c00203{transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);}
.m8a_c00203{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m9b_c00203{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);}
.ma5_c00203{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m103_c00203{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mcd_c00203{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mf_c00203{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m14_c00203{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mbd_c00203{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m56_c00203{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m10e_c00203{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m1c_c00203{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m15_c00203{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mea_c00203{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.mef_c00203{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mc0_c00203{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mf5_c00203{transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);}
.m65_c00203{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m98_c00203{transform:matrix(1.066079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.066079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.066079,0.000000,0.000000,0.250000,0,0);}
.m62_c00203{transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);}
.m3_c00203{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00203{vertical-align:0.000000px;}
.v1_c00203{vertical-align:13.680000px;}
.ls1_c00203{letter-spacing:0.000000px;}
.ls0_c00203{letter-spacing:11.817600px;}
.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:-2.923710px;}
.ws1_c00203{word-spacing:0.000000px;}
.fc0_c00203{color:transparent;}
.fs2_c00203{font-size:3.420000px;}
.fs8_c00203{font-size:13.620000px;}
.fs5_c00203{font-size:18.720000px;}
.fs0_c00203{font-size:20.400000px;}
.fs3_c00203{font-size:25.500000px;}
.fs1_c00203{font-size:28.920000px;}
.fs6_c00203{font-size:32.340000px;}
.fs4_c00203{font-size:35.700000px;}
.fs7_c00203{font-size:39.120000px;}
.y0_c00203{bottom:0.000000px;}
.ye9_c00203{bottom:251.745000px;}
.ye8_c00203{bottom:253.905000px;}
.yeb_c00203{bottom:254.130000px;}
.yea_c00203{bottom:254.970000px;}
.yec_c00203{bottom:255.405000px;}
.ye7_c00203{bottom:270.405000px;}
.ye3_c00203{bottom:271.245000px;}
.ye5_c00203{bottom:272.745000px;}
.ye2_c00203{bottom:273.405000px;}
.ye4_c00203{bottom:273.630000px;}
.ye6_c00203{bottom:274.905000px;}
.yde_c00203{bottom:290.745000px;}
.ydf_c00203{bottom:292.905000px;}
.ye1_c00203{bottom:293.325000px;}
.ye0_c00203{bottom:294.405000px;}
.ydc_c00203{bottom:311.745000px;}
.ydd_c00203{bottom:312.825000px;}
.yda_c00203{bottom:313.905000px;}
.ydb_c00203{bottom:314.130000px;}
.yd7_c00203{bottom:331.245000px;}
.yd6_c00203{bottom:332.130000px;}
.yd5_c00203{bottom:333.405000px;}
.yd8_c00203{bottom:334.470000px;}
.yd9_c00203{bottom:334.905000px;}
.yd4_c00203{bottom:351.825000px;}
.yd3_c00203{bottom:352.245000px;}
.yd1_c00203{bottom:352.905000px;}
.yd2_c00203{bottom:354.405000px;}
.ycd_c00203{bottom:370.245000px;}
.yd0_c00203{bottom:371.325000px;}
.ycc_c00203{bottom:372.405000px;}
.ycf_c00203{bottom:373.470000px;}
.yce_c00203{bottom:373.905000px;}
.yca_c00203{bottom:390.825000px;}
.ycb_c00203{bottom:391.245000px;}
.yc8_c00203{bottom:391.905000px;}
.yc9_c00203{bottom:393.405000px;}
.yc6_c00203{bottom:409.905000px;}
.yc4_c00203{bottom:410.745000px;}
.yc0_c00203{bottom:411.405000px;}
.yc1_c00203{bottom:411.630000px;}
.yc7_c00203{bottom:411.825000px;}
.yc2_c00203{bottom:412.905000px;}
.yc3_c00203{bottom:413.130000px;}
.yc5_c00203{bottom:413.970000px;}
.ybd_c00203{bottom:430.245000px;}
.ybc_c00203{bottom:432.405000px;}
.ybf_c00203{bottom:432.630000px;}
.ybe_c00203{bottom:433.470000px;}
.yba_c00203{bottom:449.745000px;}
.yb9_c00203{bottom:450.825000px;}
.yb7_c00203{bottom:451.905000px;}
.ybb_c00203{bottom:452.130000px;}
.yb8_c00203{bottom:452.970000px;}
.yb2_c00203{bottom:469.245000px;}
.yb5_c00203{bottom:470.325000px;}
.yb3_c00203{bottom:470.745000px;}
.yb6_c00203{bottom:471.405000px;}
.yb4_c00203{bottom:472.905000px;}
.yac_c00203{bottom:489.180000px;}
.yae_c00203{bottom:489.825000px;}
.yaf_c00203{bottom:490.245000px;}
.yb0_c00203{bottom:491.325000px;}
.yb1_c00203{bottom:491.970000px;}
.yad_c00203{bottom:492.405000px;}
.yab_c00203{bottom:509.745000px;}
.yaa_c00203{bottom:510.825000px;}
.ya9_c00203{bottom:511.905000px;}
.ya3_c00203{bottom:529.245000px;}
.ya7_c00203{bottom:530.130000px;}
.ya8_c00203{bottom:530.325000px;}
.ya4_c00203{bottom:530.970000px;}
.ya6_c00203{bottom:531.405000px;}
.ya5_c00203{bottom:532.470000px;}
.ya0_c00203{bottom:548.325000px;}
.y9f_c00203{bottom:548.745000px;}
.ya1_c00203{bottom:550.905000px;}
.ya2_c00203{bottom:551.130000px;}
.y98_c00203{bottom:565.905000px;}
.y9a_c00203{bottom:568.245000px;}
.y99_c00203{bottom:569.130000px;}
.y9d_c00203{bottom:569.745000px;}
.y9c_c00203{bottom:569.970000px;}
.y9b_c00203{bottom:570.405000px;}
.y9e_c00203{bottom:570.630000px;}
.y95_c00203{bottom:586.905000px;}
.y92_c00203{bottom:587.745000px;}
.y96_c00203{bottom:587.970000px;}
.y93_c00203{bottom:589.905000px;}
.y97_c00203{bottom:590.130000px;}
.y94_c00203{bottom:590.970000px;}
.y90_c00203{bottom:617.325000px;}
.y91_c00203{bottom:618.825000px;}
.y8f_c00203{bottom:619.470000px;}
.y8e_c00203{bottom:619.695000px;}
.y8b_c00203{bottom:632.970000px;}
.y87_c00203{bottom:633.405000px;}
.y86_c00203{bottom:633.630000px;}
.y88_c00203{bottom:633.825000px;}
.y89_c00203{bottom:634.050000px;}
.y8a_c00203{bottom:635.970000px;}
.y8d_c00203{bottom:636.195000px;}
.y8c_c00203{bottom:637.050000px;}
.y82_c00203{bottom:647.325000px;}
.y80_c00203{bottom:647.550000px;}
.y84_c00203{bottom:648.405000px;}
.y83_c00203{bottom:648.825000px;}
.y81_c00203{bottom:649.470000px;}
.y7f_c00203{bottom:650.550000px;}
.y85_c00203{bottom:650.970000px;}
.y7e_c00203{bottom:662.325000px;}
.y7b_c00203{bottom:663.405000px;}
.y7d_c00203{bottom:663.630000px;}
.y7a_c00203{bottom:664.050000px;}
.y7c_c00203{bottom:665.550000px;}
.y79_c00203{bottom:676.470000px;}
.y78_c00203{bottom:677.325000px;}
.y77_c00203{bottom:678.405000px;}
.y75_c00203{bottom:679.050000px;}
.y76_c00203{bottom:680.550000px;}
.y6e_c00203{bottom:691.050000px;}
.y72_c00203{bottom:691.470000px;}
.y71_c00203{bottom:692.325000px;}
.y70_c00203{bottom:693.405000px;}
.y6f_c00203{bottom:694.470000px;}
.y74_c00203{bottom:694.695000px;}
.y73_c00203{bottom:695.550000px;}
.y69_c00203{bottom:705.825000px;}
.y6a_c00203{bottom:706.470000px;}
.y6d_c00203{bottom:708.405000px;}
.y6b_c00203{bottom:709.470000px;}
.y6c_c00203{bottom:710.550000px;}
.y60_c00203{bottom:721.050000px;}
.y66_c00203{bottom:721.905000px;}
.y64_c00203{bottom:722.325000px;}
.y68_c00203{bottom:723.195000px;}
.y61_c00203{bottom:723.405000px;}
.y65_c00203{bottom:723.630000px;}
.y67_c00203{bottom:724.050000px;}
.y62_c00203{bottom:724.470000px;}
.y63_c00203{bottom:724.695000px;}
.y5f_c00203{bottom:735.825000px;}
.y58_c00203{bottom:736.050000px;}
.y5d_c00203{bottom:736.905000px;}
.y59_c00203{bottom:737.325000px;}
.y5b_c00203{bottom:738.405000px;}
.y5e_c00203{bottom:739.050000px;}
.y5a_c00203{bottom:739.470000px;}
.y5c_c00203{bottom:739.695000px;}
.y54_c00203{bottom:751.905000px;}
.y57_c00203{bottom:752.325000px;}
.y55_c00203{bottom:754.050000px;}
.y56_c00203{bottom:755.550000px;}
.y4e_c00203{bottom:765.825000px;}
.y50_c00203{bottom:766.050000px;}
.y53_c00203{bottom:766.905000px;}
.y4d_c00203{bottom:767.130000px;}
.y4f_c00203{bottom:767.970000px;}
.y52_c00203{bottom:768.405000px;}
.y51_c00203{bottom:769.050000px;}
.y4c_c00203{bottom:780.825000px;}
.y4a_c00203{bottom:781.905000px;}
.y49_c00203{bottom:782.130000px;}
.y4b_c00203{bottom:782.970000px;}
.y45_c00203{bottom:794.970000px;}
.y44_c00203{bottom:795.825000px;}
.y48_c00203{bottom:796.050000px;}
.y46_c00203{bottom:796.905000px;}
.y43_c00203{bottom:797.970000px;}
.y42_c00203{bottom:798.195000px;}
.y47_c00203{bottom:799.050000px;}
.y3d_c00203{bottom:822.405000px;}
.y3c_c00203{bottom:823.470000px;}
.y41_c00203{bottom:824.745000px;}
.y3e_c00203{bottom:826.905000px;}
.y40_c00203{bottom:827.130000px;}
.y3f_c00203{bottom:827.970000px;}
.y38_c00203{bottom:842.745000px;}
.y3a_c00203{bottom:844.245000px;}
.y3b_c00203{bottom:846.405000px;}
.y39_c00203{bottom:847.470000px;}
.y37_c00203{bottom:863.745000px;}
.y34_c00203{bottom:865.245000px;}
.y33_c00203{bottom:865.905000px;}
.y36_c00203{bottom:866.130000px;}
.y35_c00203{bottom:867.405000px;}
.y2d_c00203{bottom:883.245000px;}
.y31_c00203{bottom:884.325000px;}
.y2e_c00203{bottom:884.745000px;}
.y32_c00203{bottom:885.405000px;}
.y30_c00203{bottom:885.630000px;}
.y2f_c00203{bottom:886.905000px;}
.y28_c00203{bottom:901.680000px;}
.y2c_c00203{bottom:902.745000px;}
.y29_c00203{bottom:904.245000px;}
.y2b_c00203{bottom:904.905000px;}
.y2a_c00203{bottom:906.405000px;}
.y23_c00203{bottom:921.405000px;}
.y27_c00203{bottom:922.245000px;}
.y25_c00203{bottom:923.745000px;}
.y26_c00203{bottom:924.825000px;}
.y24_c00203{bottom:925.905000px;}
.y22_c00203{bottom:943.245000px;}
.y20_c00203{bottom:943.905000px;}
.y21_c00203{bottom:945.405000px;}
.y1f_c00203{bottom:961.245000px;}
.y1c_c00203{bottom:962.745000px;}
.y1a_c00203{bottom:963.405000px;}
.y1e_c00203{bottom:964.470000px;}
.y1b_c00203{bottom:964.905000px;}
.y1d_c00203{bottom:965.970000px;}
.y16_c00203{bottom:981.405000px;}
.y15_c00203{bottom:982.245000px;}
.y17_c00203{bottom:984.405000px;}
.y19_c00203{bottom:985.470000px;}
.y18_c00203{bottom:985.905000px;}
.y12_c00203{bottom:1000.905000px;}
.y11_c00203{bottom:1001.745000px;}
.y14_c00203{bottom:1002.630000px;}
.yf_c00203{bottom:1003.905000px;}
.y10_c00203{bottom:1004.130000px;}
.y13_c00203{bottom:1004.970000px;}
.yd_c00203{bottom:1021.245000px;}
.ya_c00203{bottom:1023.405000px;}
.ye_c00203{bottom:1023.630000px;}
.yb_c00203{bottom:1024.470000px;}
.yc_c00203{bottom:1024.920000px;}
.y9_c00203{bottom:1040.745000px;}
.y6_c00203{bottom:1060.245000px;}
.y8_c00203{bottom:1061.970000px;}
.y3_c00203{bottom:1062.405000px;}
.y5_c00203{bottom:1063.470000px;}
.y7_c00203{bottom:1063.905000px;}
.y4_c00203{bottom:1063.920000px;}
.y2_c00203{bottom:1099.905000px;}
.y1_c00203{bottom:1102.050000px;}
.h3_c00203{height:4.206533px;}
.h9_c00203{height:16.752334px;}
.h6_c00203{height:23.025234px;}
.h1_c00203{height:25.091602px;}
.h4_c00203{height:31.364502px;}
.h2_c00203{height:35.571035px;}
.h7_c00203{height:39.777568px;}
.h5_c00203{height:43.910303px;}
.ha_c00203{height:45.044502px;}
.h8_c00203{height:48.116836px;}
.h0_c00203{height:1335.000000px;}
.w0_c00203{width:880.500000px;}
.x0_c00203{left:0.000000px;}
.xf6_c00203{left:151.500000px;}
.x9f_c00203{left:153.420000px;}
.x2_c00203{left:154.920000px;}
.xb2_c00203{left:165.000000px;}
.x7d_c00203{left:168.000000px;}
.x71_c00203{left:169.080000px;}
.x3_c00203{left:170.580000px;}
.x17_c00203{left:172.080000px;}
.x6a_c00203{left:174.000000px;}
.x62_c00203{left:178.500000px;}
.xeb_c00203{left:180.000000px;}
.x85_c00203{left:181.080000px;}
.xf1_c00203{left:183.420000px;}
.xe8_c00203{left:184.920000px;}
.x72_c00203{left:186.000000px;}
.x6b_c00203{left:188.580000px;}
.x7b_c00203{left:192.000000px;}
.xf7_c00203{left:193.500000px;}
.xa0_c00203{left:195.000000px;}
.xaa_c00203{left:196.500000px;}
.xb3_c00203{left:199.080000px;}
.x18_c00203{left:201.420000px;}
.x25_c00203{left:202.500000px;}
.xb7_c00203{left:204.420000px;}
.x2f_c00203{left:205.920000px;}
.xcf_c00203{left:208.920000px;}
.xc4_c00203{left:211.080000px;}
.x52_c00203{left:214.080000px;}
.x6c_c00203{left:217.080000px;}
.x7c_c00203{left:219.420000px;}
.xf8_c00203{left:220.500000px;}
.x95_c00203{left:223.500000px;}
.x86_c00203{left:226.500000px;}
.xdd_c00203{left:230.580000px;}
.x30_c00203{left:232.920000px;}
.xc5_c00203{left:234.000000px;}
.xd0_c00203{left:237.000000px;}
.x63_c00203{left:238.080000px;}
.x19_c00203{left:239.580000px;}
.x5b_c00203{left:241.500000px;}
.x6d_c00203{left:243.000000px;}
.x43_c00203{left:246.000000px;}
.x100_c00203{left:247.500000px;}
.x97_c00203{left:248.580000px;}
.xe9_c00203{left:252.000000px;}
.x96_c00203{left:253.920000px;}
.xe_c00203{left:255.000000px;}
.xa1_c00203{left:257.145000px;}
.x53_c00203{left:261.000000px;}
.x4_c00203{left:262.500000px;}
.x31_c00203{left:265.500000px;}
.xe5_c00203{left:267.000000px;}
.x8c_c00203{left:268.500000px;}
.x26_c00203{left:271.080000px;}
.xda_c00203{left:273.420000px;}
.xf_c00203{left:275.580000px;}
.x44_c00203{left:277.500000px;}
.x6e_c00203{left:280.500000px;}
.x5c_c00203{left:282.000000px;}
.x5_c00203{left:283.080000px;}
.xd7_c00203{left:285.000000px;}
.x73_c00203{left:286.080000px;}
.x64_c00203{left:288.000000px;}
.x27_c00203{left:292.080000px;}
.xc6_c00203{left:294.000000px;}
.xf2_c00203{left:296.580000px;}
.x54_c00203{left:298.920000px;}
.x98_c00203{left:300.000000px;}
.xb8_c00203{left:303.000000px;}
.xea_c00203{left:304.920000px;}
.xd1_c00203{left:306.000000px;}
.xa6_c00203{left:307.500000px;}
.x1a_c00203{left:309.000000px;}
.x45_c00203{left:311.580000px;}
.xbe_c00203{left:314.580000px;}
.x3b_c00203{left:317.580000px;}
.xde_c00203{left:319.080000px;}
.x99_c00203{left:322.500000px;}
.x32_c00203{left:324.000000px;}
.x65_c00203{left:325.500000px;}
.x4d_c00203{left:326.580000px;}
.x6_c00203{left:328.080000px;}
.xcc_c00203{left:331.500000px;}
.x8d_c00203{left:332.580000px;}
.x5d_c00203{left:334.920000px;}
.x101_c00203{left:339.000000px;}
.x55_c00203{left:341.775000px;}
.x6f_c00203{left:343.920000px;}
.x28_c00203{left:346.080000px;}
.x10_c00203{left:348.000000px;}
.x7e_c00203{left:349.080000px;}
.xdf_c00203{left:351.000000px;}
.xbf_c00203{left:352.275000px;}
.x1b_c00203{left:354.420000px;}
.xb9_c00203{left:355.500000px;}
.xec_c00203{left:357.000000px;}
.x33_c00203{left:358.500000px;}
.xd2_c00203{left:359.580000px;}
.x46_c00203{left:363.000000px;}
.x3c_c00203{left:365.775000px;}
.xa2_c00203{left:367.080000px;}
.x11_c00203{left:369.000000px;}
.x56_c00203{left:375.000000px;}
.xed_c00203{left:376.500000px;}
.xf9_c00203{left:378.420000px;}
.xdb_c00203{left:379.920000px;}
.x1c_c00203{left:381.000000px;}
.xba_c00203{left:382.500000px;}
.x104_c00203{left:383.580000px;}
.xae_c00203{left:385.500000px;}
.x7f_c00203{left:387.000000px;}
.xc0_c00203{left:388.920000px;}
.xc7_c00203{left:390.420000px;}
.x5e_c00203{left:391.500000px;}
.xe6_c00203{left:393.000000px;}
.x102_c00203{left:396.000000px;}
.x3d_c00203{left:400.920000px;}
.x1_c00203{left:402.000000px;}
.x66_c00203{left:403.500000px;}
.x7_c00203{left:405.420000px;}
.x29_c00203{left:412.080000px;}
.xe0_c00203{left:415.920000px;}
.x9a_c00203{left:418.500000px;}
.xe7_c00203{left:419.580000px;}
.xb4_c00203{left:421.920000px;}
.xd3_c00203{left:423.000000px;}
.x1d_c00203{left:424.080000px;}
.x87_c00203{left:425.580000px;}
.x74_c00203{left:427.500000px;}
.x47_c00203{left:428.580000px;}
.xab_c00203{left:430.080000px;}
.xaf_c00203{left:433.500000px;}
.x70_c00203{left:434.580000px;}
.xc1_c00203{left:439.080000px;}
.x8e_c00203{left:440.580000px;}
.xa3_c00203{left:442.500000px;}
.x2a_c00203{left:444.000000px;}
.xbb_c00203{left:447.000000px;}
.xee_c00203{left:448.080000px;}
.x12_c00203{left:449.580000px;}
.x57_c00203{left:454.920000px;}
.x48_c00203{left:456.000000px;}
.x80_c00203{left:459.000000px;}
.xc2_c00203{left:462.420000px;}
.xfc_c00203{left:463.920000px;}
.x8_c00203{left:467.580000px;}
.x75_c00203{left:469.500000px;}
.xd4_c00203{left:471.000000px;}
.x5f_c00203{left:472.920000px;}
.x9b_c00203{left:475.500000px;}
.x34_c00203{left:476.580000px;}
.x49_c00203{left:478.500000px;}
.x4e_c00203{left:480.000000px;}
.x88_c00203{left:481.500000px;}
.x3e_c00203{left:482.580000px;}
.x8f_c00203{left:484.500000px;}
.x103_c00203{left:485.580000px;}
.xd8_c00203{left:488.580000px;}
.x89_c00203{left:492.000000px;}
.xc8_c00203{left:493.500000px;}
.x35_c00203{left:498.000000px;}
.x1e_c00203{left:501.000000px;}
.x3f_c00203{left:504.000000px;}
.x67_c00203{left:507.420000px;}
.x90_c00203{left:509.580000px;}
.x81_c00203{left:512.580000px;}
.xa7_c00203{left:514.500000px;}
.x9c_c00203{left:516.420000px;}
.xf3_c00203{left:519.000000px;}
.xc9_c00203{left:523.500000px;}
.x9_c00203{left:524.580000px;}
.xbc_c00203{left:526.920000px;}
.x36_c00203{left:528.000000px;}
.xcd_c00203{left:529.500000px;}
.x76_c00203{left:530.580000px;}
.xfa_c00203{left:532.500000px;}
.x2b_c00203{left:534.000000px;}
.x68_c00203{left:535.500000px;}
.xf4_c00203{left:537.420000px;}
.x8a_c00203{left:538.500000px;}
.x40_c00203{left:540.000000px;}
.x58_c00203{left:541.500000px;}
.xe1_c00203{left:544.080000px;}
.xff_c00203{left:547.920000px;}
.xca_c00203{left:552.000000px;}
.x4f_c00203{left:554.145000px;}
.xfd_c00203{left:556.500000px;}
.xa_c00203{left:557.580000px;}
.x1f_c00203{left:561.000000px;}
.x13_c00203{left:562.920000px;}
.xd5_c00203{left:564.420000px;}
.x82_c00203{left:568.080000px;}
.x60_c00203{left:570.000000px;}
.x77_c00203{left:573.000000px;}
.x41_c00203{left:574.080000px;}
.xac_c00203{left:575.580000px;}
.x20_c00203{left:580.080000px;}
.x37_c00203{left:582.000000px;}
.x2c_c00203{left:583.500000px;}
.xb5_c00203{left:586.080000px;}
.x91_c00203{left:588.420000px;}
.x4a_c00203{left:591.000000px;}
.x9d_c00203{left:597.000000px;}
.xa4_c00203{left:598.500000px;}
.xbd_c00203{left:600.000000px;}
.x2d_c00203{left:601.500000px;}
.xe2_c00203{left:603.000000px;}
.xb_c00203{left:604.500000px;}
.x42_c00203{left:606.000000px;}
.x83_c00203{left:607.080000px;}
.x8b_c00203{left:609.000000px;}
.xa8_c00203{left:610.500000px;}
.xfb_c00203{left:615.000000px;}
.x92_c00203{left:618.000000px;}
.xb6_c00203{left:619.500000px;}
.x50_c00203{left:620.580000px;}
.x38_c00203{left:622.080000px;}
.xe3_c00203{left:625.920000px;}
.xb0_c00203{left:627.000000px;}
.x78_c00203{left:628.080000px;}
.x21_c00203{left:632.580000px;}
.x14_c00203{left:634.500000px;}
.xfe_c00203{left:637.920000px;}
.x4b_c00203{left:639.420000px;}
.x59_c00203{left:640.500000px;}
.xa9_c00203{left:641.580000px;}
.xef_c00203{left:643.080000px;}
.x69_c00203{left:644.580000px;}
.xd6_c00203{left:646.920000px;}
.x15_c00203{left:649.500000px;}
.xe4_c00203{left:652.500000px;}
.xd9_c00203{left:658.500000px;}
.xa5_c00203{left:661.500000px;}
.x93_c00203{left:663.000000px;}
.x4c_c00203{left:664.080000px;}
.x2e_c00203{left:665.580000px;}
.x9e_c00203{left:667.500000px;}
.xc_c00203{left:669.000000px;}
.x61_c00203{left:670.500000px;}
.xc3_c00203{left:673.920000px;}
.x94_c00203{left:676.500000px;}
.xcb_c00203{left:679.920000px;}
.x22_c00203{left:682.500000px;}
.x79_c00203{left:684.420000px;}
.x16_c00203{left:685.500000px;}
.xb1_c00203{left:688.500000px;}
.xd_c00203{left:690.645000px;}
.x84_c00203{left:691.920000px;}
.x39_c00203{left:694.500000px;}
.xf5_c00203{left:696.000000px;}
.x7a_c00203{left:697.500000px;}
.x5a_c00203{left:699.420000px;}
.xad_c00203{left:700.500000px;}
.x23_c00203{left:701.580000px;}
.xdc_c00203{left:703.500000px;}
.x51_c00203{left:706.080000px;}
.xce_c00203{left:712.920000px;}
.x3a_c00203{left:714.000000px;}
.xf0_c00203{left:716.580000px;}
.x24_c00203{left:723.000000px;}
@media print{
.v0_c00203{vertical-align:0.000000pt;}
.v1_c00203{vertical-align:12.160000pt;}
.ls1_c00203{letter-spacing:0.000000pt;}
.ls0_c00203{letter-spacing:10.504533pt;}
.ws0_c00203{word-spacing:-2.598853pt;}
.ws1_c00203{word-spacing:0.000000pt;}
.fs2_c00203{font-size:3.040000pt;}
.fs8_c00203{font-size:12.106667pt;}
.fs5_c00203{font-size:16.640000pt;}
.fs0_c00203{font-size:18.133333pt;}
.fs3_c00203{font-size:22.666667pt;}
.fs1_c00203{font-size:25.706667pt;}
.fs6_c00203{font-size:28.746667pt;}
.fs4_c00203{font-size:31.733333pt;}
.fs7_c00203{font-size:34.773333pt;}
.y0_c00203{bottom:0.000000pt;}
.ye9_c00203{bottom:223.773333pt;}
.ye8_c00203{bottom:225.693333pt;}
.yeb_c00203{bottom:225.893333pt;}
.yea_c00203{bottom:226.640000pt;}
.yec_c00203{bottom:227.026667pt;}
.ye7_c00203{bottom:240.360000pt;}
.ye3_c00203{bottom:241.106667pt;}
.ye5_c00203{bottom:242.440000pt;}
.ye2_c00203{bottom:243.026667pt;}
.ye4_c00203{bottom:243.226667pt;}
.ye6_c00203{bottom:244.360000pt;}
.yde_c00203{bottom:258.440000pt;}
.ydf_c00203{bottom:260.360000pt;}
.ye1_c00203{bottom:260.733333pt;}
.ye0_c00203{bottom:261.693333pt;}
.ydc_c00203{bottom:277.106667pt;}
.ydd_c00203{bottom:278.066667pt;}
.yda_c00203{bottom:279.026667pt;}
.ydb_c00203{bottom:279.226667pt;}
.yd7_c00203{bottom:294.440000pt;}
.yd6_c00203{bottom:295.226667pt;}
.yd5_c00203{bottom:296.360000pt;}
.yd8_c00203{bottom:297.306667pt;}
.yd9_c00203{bottom:297.693333pt;}
.yd4_c00203{bottom:312.733333pt;}
.yd3_c00203{bottom:313.106667pt;}
.yd1_c00203{bottom:313.693333pt;}
.yd2_c00203{bottom:315.026667pt;}
.ycd_c00203{bottom:329.106667pt;}
.yd0_c00203{bottom:330.066667pt;}
.ycc_c00203{bottom:331.026667pt;}
.ycf_c00203{bottom:331.973333pt;}
.yce_c00203{bottom:332.360000pt;}
.yca_c00203{bottom:347.400000pt;}
.ycb_c00203{bottom:347.773333pt;}
.yc8_c00203{bottom:348.360000pt;}
.yc9_c00203{bottom:349.693333pt;}
.yc6_c00203{bottom:364.360000pt;}
.yc4_c00203{bottom:365.106667pt;}
.yc0_c00203{bottom:365.693333pt;}
.yc1_c00203{bottom:365.893333pt;}
.yc7_c00203{bottom:366.066667pt;}
.yc2_c00203{bottom:367.026667pt;}
.yc3_c00203{bottom:367.226667pt;}
.yc5_c00203{bottom:367.973333pt;}
.ybd_c00203{bottom:382.440000pt;}
.ybc_c00203{bottom:384.360000pt;}
.ybf_c00203{bottom:384.560000pt;}
.ybe_c00203{bottom:385.306667pt;}
.yba_c00203{bottom:399.773333pt;}
.yb9_c00203{bottom:400.733333pt;}
.yb7_c00203{bottom:401.693333pt;}
.ybb_c00203{bottom:401.893333pt;}
.yb8_c00203{bottom:402.640000pt;}
.yb2_c00203{bottom:417.106667pt;}
.yb5_c00203{bottom:418.066667pt;}
.yb3_c00203{bottom:418.440000pt;}
.yb6_c00203{bottom:419.026667pt;}
.yb4_c00203{bottom:420.360000pt;}
.yac_c00203{bottom:434.826667pt;}
.yae_c00203{bottom:435.400000pt;}
.yaf_c00203{bottom:435.773333pt;}
.yb0_c00203{bottom:436.733333pt;}
.yb1_c00203{bottom:437.306667pt;}
.yad_c00203{bottom:437.693333pt;}
.yab_c00203{bottom:453.106667pt;}
.yaa_c00203{bottom:454.066667pt;}
.ya9_c00203{bottom:455.026667pt;}
.ya3_c00203{bottom:470.440000pt;}
.ya7_c00203{bottom:471.226667pt;}
.ya8_c00203{bottom:471.400000pt;}
.ya4_c00203{bottom:471.973333pt;}
.ya6_c00203{bottom:472.360000pt;}
.ya5_c00203{bottom:473.306667pt;}
.ya0_c00203{bottom:487.400000pt;}
.y9f_c00203{bottom:487.773333pt;}
.ya1_c00203{bottom:489.693333pt;}
.ya2_c00203{bottom:489.893333pt;}
.y98_c00203{bottom:503.026667pt;}
.y9a_c00203{bottom:505.106667pt;}
.y99_c00203{bottom:505.893333pt;}
.y9d_c00203{bottom:506.440000pt;}
.y9c_c00203{bottom:506.640000pt;}
.y9b_c00203{bottom:507.026667pt;}
.y9e_c00203{bottom:507.226667pt;}
.y95_c00203{bottom:521.693333pt;}
.y92_c00203{bottom:522.440000pt;}
.y96_c00203{bottom:522.640000pt;}
.y93_c00203{bottom:524.360000pt;}
.y97_c00203{bottom:524.560000pt;}
.y94_c00203{bottom:525.306667pt;}
.y90_c00203{bottom:548.733333pt;}
.y91_c00203{bottom:550.066667pt;}
.y8f_c00203{bottom:550.640000pt;}
.y8e_c00203{bottom:550.840000pt;}
.y8b_c00203{bottom:562.640000pt;}
.y87_c00203{bottom:563.026667pt;}
.y86_c00203{bottom:563.226667pt;}
.y88_c00203{bottom:563.400000pt;}
.y89_c00203{bottom:563.600000pt;}
.y8a_c00203{bottom:565.306667pt;}
.y8d_c00203{bottom:565.506667pt;}
.y8c_c00203{bottom:566.266667pt;}
.y82_c00203{bottom:575.400000pt;}
.y80_c00203{bottom:575.600000pt;}
.y84_c00203{bottom:576.360000pt;}
.y83_c00203{bottom:576.733333pt;}
.y81_c00203{bottom:577.306667pt;}
.y7f_c00203{bottom:578.266667pt;}
.y85_c00203{bottom:578.640000pt;}
.y7e_c00203{bottom:588.733333pt;}
.y7b_c00203{bottom:589.693333pt;}
.y7d_c00203{bottom:589.893333pt;}
.y7a_c00203{bottom:590.266667pt;}
.y7c_c00203{bottom:591.600000pt;}
.y79_c00203{bottom:601.306667pt;}
.y78_c00203{bottom:602.066667pt;}
.y77_c00203{bottom:603.026667pt;}
.y75_c00203{bottom:603.600000pt;}
.y76_c00203{bottom:604.933333pt;}
.y6e_c00203{bottom:614.266667pt;}
.y72_c00203{bottom:614.640000pt;}
.y71_c00203{bottom:615.400000pt;}
.y70_c00203{bottom:616.360000pt;}
.y6f_c00203{bottom:617.306667pt;}
.y74_c00203{bottom:617.506667pt;}
.y73_c00203{bottom:618.266667pt;}
.y69_c00203{bottom:627.400000pt;}
.y6a_c00203{bottom:627.973333pt;}
.y6d_c00203{bottom:629.693333pt;}
.y6b_c00203{bottom:630.640000pt;}
.y6c_c00203{bottom:631.600000pt;}
.y60_c00203{bottom:640.933333pt;}
.y66_c00203{bottom:641.693333pt;}
.y64_c00203{bottom:642.066667pt;}
.y68_c00203{bottom:642.840000pt;}
.y61_c00203{bottom:643.026667pt;}
.y65_c00203{bottom:643.226667pt;}
.y67_c00203{bottom:643.600000pt;}
.y62_c00203{bottom:643.973333pt;}
.y63_c00203{bottom:644.173333pt;}
.y5f_c00203{bottom:654.066667pt;}
.y58_c00203{bottom:654.266667pt;}
.y5d_c00203{bottom:655.026667pt;}
.y59_c00203{bottom:655.400000pt;}
.y5b_c00203{bottom:656.360000pt;}
.y5e_c00203{bottom:656.933333pt;}
.y5a_c00203{bottom:657.306667pt;}
.y5c_c00203{bottom:657.506667pt;}
.y54_c00203{bottom:668.360000pt;}
.y57_c00203{bottom:668.733333pt;}
.y55_c00203{bottom:670.266667pt;}
.y56_c00203{bottom:671.600000pt;}
.y4e_c00203{bottom:680.733333pt;}
.y50_c00203{bottom:680.933333pt;}
.y53_c00203{bottom:681.693333pt;}
.y4d_c00203{bottom:681.893333pt;}
.y4f_c00203{bottom:682.640000pt;}
.y52_c00203{bottom:683.026667pt;}
.y51_c00203{bottom:683.600000pt;}
.y4c_c00203{bottom:694.066667pt;}
.y4a_c00203{bottom:695.026667pt;}
.y49_c00203{bottom:695.226667pt;}
.y4b_c00203{bottom:695.973333pt;}
.y45_c00203{bottom:706.640000pt;}
.y44_c00203{bottom:707.400000pt;}
.y48_c00203{bottom:707.600000pt;}
.y46_c00203{bottom:708.360000pt;}
.y43_c00203{bottom:709.306667pt;}
.y42_c00203{bottom:709.506667pt;}
.y47_c00203{bottom:710.266667pt;}
.y3d_c00203{bottom:731.026667pt;}
.y3c_c00203{bottom:731.973333pt;}
.y41_c00203{bottom:733.106667pt;}
.y3e_c00203{bottom:735.026667pt;}
.y40_c00203{bottom:735.226667pt;}
.y3f_c00203{bottom:735.973333pt;}
.y38_c00203{bottom:749.106667pt;}
.y3a_c00203{bottom:750.440000pt;}
.y3b_c00203{bottom:752.360000pt;}
.y39_c00203{bottom:753.306667pt;}
.y37_c00203{bottom:767.773333pt;}
.y34_c00203{bottom:769.106667pt;}
.y33_c00203{bottom:769.693333pt;}
.y36_c00203{bottom:769.893333pt;}
.y35_c00203{bottom:771.026667pt;}
.y2d_c00203{bottom:785.106667pt;}
.y31_c00203{bottom:786.066667pt;}
.y2e_c00203{bottom:786.440000pt;}
.y32_c00203{bottom:787.026667pt;}
.y30_c00203{bottom:787.226667pt;}
.y2f_c00203{bottom:788.360000pt;}
.y28_c00203{bottom:801.493333pt;}
.y2c_c00203{bottom:802.440000pt;}
.y29_c00203{bottom:803.773333pt;}
.y2b_c00203{bottom:804.360000pt;}
.y2a_c00203{bottom:805.693333pt;}
.y23_c00203{bottom:819.026667pt;}
.y27_c00203{bottom:819.773333pt;}
.y25_c00203{bottom:821.106667pt;}
.y26_c00203{bottom:822.066667pt;}
.y24_c00203{bottom:823.026667pt;}
.y22_c00203{bottom:838.440000pt;}
.y20_c00203{bottom:839.026667pt;}
.y21_c00203{bottom:840.360000pt;}
.y1f_c00203{bottom:854.440000pt;}
.y1c_c00203{bottom:855.773333pt;}
.y1a_c00203{bottom:856.360000pt;}
.y1e_c00203{bottom:857.306667pt;}
.y1b_c00203{bottom:857.693333pt;}
.y1d_c00203{bottom:858.640000pt;}
.y16_c00203{bottom:872.360000pt;}
.y15_c00203{bottom:873.106667pt;}
.y17_c00203{bottom:875.026667pt;}
.y19_c00203{bottom:875.973333pt;}
.y18_c00203{bottom:876.360000pt;}
.y12_c00203{bottom:889.693333pt;}
.y11_c00203{bottom:890.440000pt;}
.y14_c00203{bottom:891.226667pt;}
.yf_c00203{bottom:892.360000pt;}
.y10_c00203{bottom:892.560000pt;}
.y13_c00203{bottom:893.306667pt;}
.yd_c00203{bottom:907.773333pt;}
.ya_c00203{bottom:909.693333pt;}
.ye_c00203{bottom:909.893333pt;}
.yb_c00203{bottom:910.640000pt;}
.yc_c00203{bottom:911.040000pt;}
.y9_c00203{bottom:925.106667pt;}
.y6_c00203{bottom:942.440000pt;}
.y8_c00203{bottom:943.973333pt;}
.y3_c00203{bottom:944.360000pt;}
.y5_c00203{bottom:945.306667pt;}
.y7_c00203{bottom:945.693333pt;}
.y4_c00203{bottom:945.706667pt;}
.y2_c00203{bottom:977.693333pt;}
.y1_c00203{bottom:979.600000pt;}
.h3_c00203{height:3.739141pt;}
.h9_c00203{height:14.890964pt;}
.h6_c00203{height:20.466875pt;}
.h1_c00203{height:22.303646pt;}
.h4_c00203{height:27.879557pt;}
.h2_c00203{height:31.618698pt;}
.h7_c00203{height:35.357839pt;}
.h5_c00203{height:39.031380pt;}
.ha_c00203{height:40.039557pt;}
.h8_c00203{height:42.770521pt;}
.h0_c00203{height:1186.666667pt;}
.w0_c00203{width:782.666667pt;}
.x0_c00203{left:0.000000pt;}
.xf6_c00203{left:134.666667pt;}
.x9f_c00203{left:136.373333pt;}
.x2_c00203{left:137.706667pt;}
.xb2_c00203{left:146.666667pt;}
.x7d_c00203{left:149.333333pt;}
.x71_c00203{left:150.293333pt;}
.x3_c00203{left:151.626667pt;}
.x17_c00203{left:152.960000pt;}
.x6a_c00203{left:154.666667pt;}
.x62_c00203{left:158.666667pt;}
.xeb_c00203{left:160.000000pt;}
.x85_c00203{left:160.960000pt;}
.xf1_c00203{left:163.040000pt;}
.xe8_c00203{left:164.373333pt;}
.x72_c00203{left:165.333333pt;}
.x6b_c00203{left:167.626667pt;}
.x7b_c00203{left:170.666667pt;}
.xf7_c00203{left:172.000000pt;}
.xa0_c00203{left:173.333333pt;}
.xaa_c00203{left:174.666667pt;}
.xb3_c00203{left:176.960000pt;}
.x18_c00203{left:179.040000pt;}
.x25_c00203{left:180.000000pt;}
.xb7_c00203{left:181.706667pt;}
.x2f_c00203{left:183.040000pt;}
.xcf_c00203{left:185.706667pt;}
.xc4_c00203{left:187.626667pt;}
.x52_c00203{left:190.293333pt;}
.x6c_c00203{left:192.960000pt;}
.x7c_c00203{left:195.040000pt;}
.xf8_c00203{left:196.000000pt;}
.x95_c00203{left:198.666667pt;}
.x86_c00203{left:201.333333pt;}
.xdd_c00203{left:204.960000pt;}
.x30_c00203{left:207.040000pt;}
.xc5_c00203{left:208.000000pt;}
.xd0_c00203{left:210.666667pt;}
.x63_c00203{left:211.626667pt;}
.x19_c00203{left:212.960000pt;}
.x5b_c00203{left:214.666667pt;}
.x6d_c00203{left:216.000000pt;}
.x43_c00203{left:218.666667pt;}
.x100_c00203{left:220.000000pt;}
.x97_c00203{left:220.960000pt;}
.xe9_c00203{left:224.000000pt;}
.x96_c00203{left:225.706667pt;}
.xe_c00203{left:226.666667pt;}
.xa1_c00203{left:228.573333pt;}
.x53_c00203{left:232.000000pt;}
.x4_c00203{left:233.333333pt;}
.x31_c00203{left:236.000000pt;}
.xe5_c00203{left:237.333333pt;}
.x8c_c00203{left:238.666667pt;}
.x26_c00203{left:240.960000pt;}
.xda_c00203{left:243.040000pt;}
.xf_c00203{left:244.960000pt;}
.x44_c00203{left:246.666667pt;}
.x6e_c00203{left:249.333333pt;}
.x5c_c00203{left:250.666667pt;}
.x5_c00203{left:251.626667pt;}
.xd7_c00203{left:253.333333pt;}
.x73_c00203{left:254.293333pt;}
.x64_c00203{left:256.000000pt;}
.x27_c00203{left:259.626667pt;}
.xc6_c00203{left:261.333333pt;}
.xf2_c00203{left:263.626667pt;}
.x54_c00203{left:265.706667pt;}
.x98_c00203{left:266.666667pt;}
.xb8_c00203{left:269.333333pt;}
.xea_c00203{left:271.040000pt;}
.xd1_c00203{left:272.000000pt;}
.xa6_c00203{left:273.333333pt;}
.x1a_c00203{left:274.666667pt;}
.x45_c00203{left:276.960000pt;}
.xbe_c00203{left:279.626667pt;}
.x3b_c00203{left:282.293333pt;}
.xde_c00203{left:283.626667pt;}
.x99_c00203{left:286.666667pt;}
.x32_c00203{left:288.000000pt;}
.x65_c00203{left:289.333333pt;}
.x4d_c00203{left:290.293333pt;}
.x6_c00203{left:291.626667pt;}
.xcc_c00203{left:294.666667pt;}
.x8d_c00203{left:295.626667pt;}
.x5d_c00203{left:297.706667pt;}
.x101_c00203{left:301.333333pt;}
.x55_c00203{left:303.800000pt;}
.x6f_c00203{left:305.706667pt;}
.x28_c00203{left:307.626667pt;}
.x10_c00203{left:309.333333pt;}
.x7e_c00203{left:310.293333pt;}
.xdf_c00203{left:312.000000pt;}
.xbf_c00203{left:313.133333pt;}
.x1b_c00203{left:315.040000pt;}
.xb9_c00203{left:316.000000pt;}
.xec_c00203{left:317.333333pt;}
.x33_c00203{left:318.666667pt;}
.xd2_c00203{left:319.626667pt;}
.x46_c00203{left:322.666667pt;}
.x3c_c00203{left:325.133333pt;}
.xa2_c00203{left:326.293333pt;}
.x11_c00203{left:328.000000pt;}
.x56_c00203{left:333.333333pt;}
.xed_c00203{left:334.666667pt;}
.xf9_c00203{left:336.373333pt;}
.xdb_c00203{left:337.706667pt;}
.x1c_c00203{left:338.666667pt;}
.xba_c00203{left:340.000000pt;}
.x104_c00203{left:340.960000pt;}
.xae_c00203{left:342.666667pt;}
.x7f_c00203{left:344.000000pt;}
.xc0_c00203{left:345.706667pt;}
.xc7_c00203{left:347.040000pt;}
.x5e_c00203{left:348.000000pt;}
.xe6_c00203{left:349.333333pt;}
.x102_c00203{left:352.000000pt;}
.x3d_c00203{left:356.373333pt;}
.x1_c00203{left:357.333333pt;}
.x66_c00203{left:358.666667pt;}
.x7_c00203{left:360.373333pt;}
.x29_c00203{left:366.293333pt;}
.xe0_c00203{left:369.706667pt;}
.x9a_c00203{left:372.000000pt;}
.xe7_c00203{left:372.960000pt;}
.xb4_c00203{left:375.040000pt;}
.xd3_c00203{left:376.000000pt;}
.x1d_c00203{left:376.960000pt;}
.x87_c00203{left:378.293333pt;}
.x74_c00203{left:380.000000pt;}
.x47_c00203{left:380.960000pt;}
.xab_c00203{left:382.293333pt;}
.xaf_c00203{left:385.333333pt;}
.x70_c00203{left:386.293333pt;}
.xc1_c00203{left:390.293333pt;}
.x8e_c00203{left:391.626667pt;}
.xa3_c00203{left:393.333333pt;}
.x2a_c00203{left:394.666667pt;}
.xbb_c00203{left:397.333333pt;}
.xee_c00203{left:398.293333pt;}
.x12_c00203{left:399.626667pt;}
.x57_c00203{left:404.373333pt;}
.x48_c00203{left:405.333333pt;}
.x80_c00203{left:408.000000pt;}
.xc2_c00203{left:411.040000pt;}
.xfc_c00203{left:412.373333pt;}
.x8_c00203{left:415.626667pt;}
.x75_c00203{left:417.333333pt;}
.xd4_c00203{left:418.666667pt;}
.x5f_c00203{left:420.373333pt;}
.x9b_c00203{left:422.666667pt;}
.x34_c00203{left:423.626667pt;}
.x49_c00203{left:425.333333pt;}
.x4e_c00203{left:426.666667pt;}
.x88_c00203{left:428.000000pt;}
.x3e_c00203{left:428.960000pt;}
.x8f_c00203{left:430.666667pt;}
.x103_c00203{left:431.626667pt;}
.xd8_c00203{left:434.293333pt;}
.x89_c00203{left:437.333333pt;}
.xc8_c00203{left:438.666667pt;}
.x35_c00203{left:442.666667pt;}
.x1e_c00203{left:445.333333pt;}
.x3f_c00203{left:448.000000pt;}
.x67_c00203{left:451.040000pt;}
.x90_c00203{left:452.960000pt;}
.x81_c00203{left:455.626667pt;}
.xa7_c00203{left:457.333333pt;}
.x9c_c00203{left:459.040000pt;}
.xf3_c00203{left:461.333333pt;}
.xc9_c00203{left:465.333333pt;}
.x9_c00203{left:466.293333pt;}
.xbc_c00203{left:468.373333pt;}
.x36_c00203{left:469.333333pt;}
.xcd_c00203{left:470.666667pt;}
.x76_c00203{left:471.626667pt;}
.xfa_c00203{left:473.333333pt;}
.x2b_c00203{left:474.666667pt;}
.x68_c00203{left:476.000000pt;}
.xf4_c00203{left:477.706667pt;}
.x8a_c00203{left:478.666667pt;}
.x40_c00203{left:480.000000pt;}
.x58_c00203{left:481.333333pt;}
.xe1_c00203{left:483.626667pt;}
.xff_c00203{left:487.040000pt;}
.xca_c00203{left:490.666667pt;}
.x4f_c00203{left:492.573333pt;}
.xfd_c00203{left:494.666667pt;}
.xa_c00203{left:495.626667pt;}
.x1f_c00203{left:498.666667pt;}
.x13_c00203{left:500.373333pt;}
.xd5_c00203{left:501.706667pt;}
.x82_c00203{left:504.960000pt;}
.x60_c00203{left:506.666667pt;}
.x77_c00203{left:509.333333pt;}
.x41_c00203{left:510.293333pt;}
.xac_c00203{left:511.626667pt;}
.x20_c00203{left:515.626667pt;}
.x37_c00203{left:517.333333pt;}
.x2c_c00203{left:518.666667pt;}
.xb5_c00203{left:520.960000pt;}
.x91_c00203{left:523.040000pt;}
.x4a_c00203{left:525.333333pt;}
.x9d_c00203{left:530.666667pt;}
.xa4_c00203{left:532.000000pt;}
.xbd_c00203{left:533.333333pt;}
.x2d_c00203{left:534.666667pt;}
.xe2_c00203{left:536.000000pt;}
.xb_c00203{left:537.333333pt;}
.x42_c00203{left:538.666667pt;}
.x83_c00203{left:539.626667pt;}
.x8b_c00203{left:541.333333pt;}
.xa8_c00203{left:542.666667pt;}
.xfb_c00203{left:546.666667pt;}
.x92_c00203{left:549.333333pt;}
.xb6_c00203{left:550.666667pt;}
.x50_c00203{left:551.626667pt;}
.x38_c00203{left:552.960000pt;}
.xe3_c00203{left:556.373333pt;}
.xb0_c00203{left:557.333333pt;}
.x78_c00203{left:558.293333pt;}
.x21_c00203{left:562.293333pt;}
.x14_c00203{left:564.000000pt;}
.xfe_c00203{left:567.040000pt;}
.x4b_c00203{left:568.373333pt;}
.x59_c00203{left:569.333333pt;}
.xa9_c00203{left:570.293333pt;}
.xef_c00203{left:571.626667pt;}
.x69_c00203{left:572.960000pt;}
.xd6_c00203{left:575.040000pt;}
.x15_c00203{left:577.333333pt;}
.xe4_c00203{left:580.000000pt;}
.xd9_c00203{left:585.333333pt;}
.xa5_c00203{left:588.000000pt;}
.x93_c00203{left:589.333333pt;}
.x4c_c00203{left:590.293333pt;}
.x2e_c00203{left:591.626667pt;}
.x9e_c00203{left:593.333333pt;}
.xc_c00203{left:594.666667pt;}
.x61_c00203{left:596.000000pt;}
.xc3_c00203{left:599.040000pt;}
.x94_c00203{left:601.333333pt;}
.xcb_c00203{left:604.373333pt;}
.x22_c00203{left:606.666667pt;}
.x79_c00203{left:608.373333pt;}
.x16_c00203{left:609.333333pt;}
.xb1_c00203{left:612.000000pt;}
.xd_c00203{left:613.906667pt;}
.x84_c00203{left:615.040000pt;}
.x39_c00203{left:617.333333pt;}
.xf5_c00203{left:618.666667pt;}
.x7a_c00203{left:620.000000pt;}
.x5a_c00203{left:621.706667pt;}
.xad_c00203{left:622.666667pt;}
.x23_c00203{left:623.626667pt;}
.xdc_c00203{left:625.333333pt;}
.x51_c00203{left:627.626667pt;}
.xce_c00203{left:633.706667pt;}
.x3a_c00203{left:634.666667pt;}
.xf0_c00203{left:636.960000pt;}
.x24_c00203{left:642.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_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_3007f26ddf9d713baf202fae.woff2')format("woff");}.ff1_c00204{font-family:ff1_c00204;line-height:1.688965;font-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_c00204{transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);}
.mbf_c00204{transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);}
.m8_c00204{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m67_c00204{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m5_c00204{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_c00204{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m47_c00204{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m75_c00204{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m33_c00204{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m35_c00204{transform:matrix(0.381513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381513,0.000000,0.000000,0.250000,0,0);}
.m28_c00204{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m43_c00204{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m4e_c00204{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m83_c00204{transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);}
.m79_c00204{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.mc_c00204{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m12_c00204{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m7a_c00204{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.ma_c00204{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m5c_c00204{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m15_c00204{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m1e_c00204{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m60_c00204{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m30_c00204{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m11_c00204{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m45_c00204{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m31_c00204{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m87_c00204{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m58_c00204{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m8e_c00204{transform:matrix(0.421324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421324,0.000000,0.000000,0.250000,0,0);}
.m6a_c00204{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m89_c00204{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m42_c00204{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m41_c00204{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m80_c00204{transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);}
.m3f_c00204{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m8b_c00204{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m6_c00204{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m10_c00204{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m1c_c00204{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m88_c00204{transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);}
.m4f_c00204{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m63_c00204{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m3a_c00204{transform:matrix(0.447614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447614,0.000000,0.000000,0.250000,0,0);}
.m54_c00204{transform:matrix(0.455937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455937,0.000000,0.000000,0.250000,0,0);}
.m2c_c00204{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mb2_c00204{transform:matrix(0.459936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459936,0.000000,0.000000,0.250000,0,0);}
.m69_c00204{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.m6c_c00204{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m4b_c00204{transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);}
.m93_c00204{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m40_c00204{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.mb5_c00204{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.mab_c00204{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.m5d_c00204{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.m77_c00204{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.ma4_c00204{transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);}
.m66_c00204{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.maa_c00204{transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);}
.m44_c00204{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m8d_c00204{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m37_c00204{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m5f_c00204{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m9a_c00204{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m82_c00204{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m96_c00204{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m0_c00204{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m48_c00204{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mb6_c00204{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.m84_c00204{transform:matrix(0.495294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495294,0.000000,0.000000,0.250000,0,0);}
.m59_c00204{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);}
.m6d_c00204{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m19_c00204{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m64_c00204{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m71_c00204{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m55_c00204{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m56_c00204{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m6b_c00204{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m5e_c00204{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.me_c00204{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m2d_c00204{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m3d_c00204{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m7_c00204{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m26_c00204{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m2f_c00204{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m94_c00204{transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);}
.m18_c00204{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.ma1_c00204{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m86_c00204{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.m7c_c00204{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m2a_c00204{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m24_c00204{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m78_c00204{transform:matrix(0.536029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536029,0.000000,0.000000,0.250000,0,0);}
.m2b_c00204{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m50_c00204{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m85_c00204{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m5a_c00204{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m57_c00204{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m36_c00204{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.mbb_c00204{transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);}
.m29_c00204{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m62_c00204{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m25_c00204{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mb_c00204{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m4d_c00204{transform:matrix(0.548237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548237,0.000000,0.000000,0.250000,0,0);}
.m1f_c00204{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.ma8_c00204{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m17_c00204{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m3_c00204{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m1b_c00204{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m46_c00204{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m3e_c00204{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m72_c00204{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m34_c00204{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m9b_c00204{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m38_c00204{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m3b_c00204{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m4_c00204{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m70_c00204{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);}
.mf_c00204{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m6f_c00204{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.ma3_c00204{transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);}
.m95_c00204{transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);}
.m7b_c00204{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m20_c00204{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m14_c00204{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m65_c00204{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m9_c00204{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m7e_c00204{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m52_c00204{transform:matrix(0.589212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589212,0.000000,0.000000,0.250000,0,0);}
.m27_c00204{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m39_c00204{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mb1_c00204{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.m22_c00204{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m13_c00204{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_c00204{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m6e_c00204{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m8c_c00204{transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);}
.m32_c00204{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m8a_c00204{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.mb8_c00204{transform:matrix(0.614583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614583,0.000000,0.000000,0.250000,0,0);}
.m21_c00204{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m91_c00204{transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);}
.m73_c00204{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m76_c00204{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_c00204{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.ma2_c00204{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.md_c00204{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mbd_c00204{transform:matrix(0.649780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649780,0.000000,0.000000,0.250000,0,0);}
.m7f_c00204{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.ma0_c00204{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m61_c00204{transform:matrix(0.656772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656772,0.000000,0.000000,0.250000,0,0);}
.mc0_c00204{transform:matrix(0.657828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657828,0.000000,0.000000,0.250000,0,0);}
.m8f_c00204{transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);}
.m49_c00204{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m16_c00204{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m9c_c00204{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m74_c00204{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m3c_c00204{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m81_c00204{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m9f_c00204{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mba_c00204{transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);}
.mb7_c00204{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.m5b_c00204{transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);}
.m90_c00204{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mbe_c00204{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m7d_c00204{transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);}
.m98_c00204{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.mbc_c00204{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m99_c00204{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.mb4_c00204{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.m9d_c00204{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.maf_c00204{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.mb3_c00204{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.m92_c00204{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m51_c00204{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mb0_c00204{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.m4a_c00204{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.m1a_c00204{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m2_c00204{transform:matrix(0.780837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780837,0.000000,0.000000,0.250000,0,0);}
.ma7_c00204{transform:matrix(0.786344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786344,0.000000,0.000000,0.250000,0,0);}
.ma6_c00204{transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);}
.m9e_c00204{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m4c_c00204{transform:matrix(0.807692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807692,0.000000,0.000000,0.250000,0,0);}
.ma5_c00204{transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);}
.mb9_c00204{transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);}
.mad_c00204{transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);}
.m53_c00204{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.mae_c00204{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mac_c00204{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.ma9_c00204{transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);}
.m97_c00204{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m2e_c00204{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00204{vertical-align:-6.000000px;}
.v0_c00204{vertical-align:0.000000px;}
.ls1_c00204{letter-spacing:0.000000px;}
.ls0_c00204{letter-spacing:44.811895px;}
.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;}
}
.ws9_c00204{word-spacing:0.000000px;}
.ws6_c00204{word-spacing:9.255046px;}
.ws5_c00204{word-spacing:10.017706px;}
.ws7_c00204{word-spacing:10.565783px;}
.ws1_c00204{word-spacing:13.611988px;}
.ws8_c00204{word-spacing:18.138913px;}
.ws4_c00204{word-spacing:19.417982px;}
.ws3_c00204{word-spacing:36.857815px;}
.ws0_c00204{word-spacing:42.893943px;}
.ws2_c00204{word-spacing:66.810731px;}
.fc0_c00204{color:transparent;}
.fs6_c00204{font-size:3.420000px;}
.fs8_c00204{font-size:11.880000px;}
.fs2_c00204{font-size:13.620000px;}
.fs5_c00204{font-size:18.720000px;}
.fs1_c00204{font-size:20.400000px;}
.fs4_c00204{font-size:25.500000px;}
.fs0_c00204{font-size:28.920000px;}
.fs7_c00204{font-size:32.340000px;}
.fs3_c00204{font-size:35.700000px;}
.y0_c00204{bottom:0.000000px;}
.y3_c00204{bottom:229.695000px;}
.y38_c00204{bottom:252.630000px;}
.y35_c00204{bottom:253.905000px;}
.y37_c00204{bottom:254.745000px;}
.y39_c00204{bottom:255.825000px;}
.y34_c00204{bottom:256.905000px;}
.y36_c00204{bottom:257.130000px;}
.y30_c00204{bottom:274.245000px;}
.y33_c00204{bottom:275.325000px;}
.y2f_c00204{bottom:276.405000px;}
.y31_c00204{bottom:276.630000px;}
.y32_c00204{bottom:277.470000px;}
.y2e_c00204{bottom:294.825000px;}
.y2c_c00204{bottom:295.905000px;}
.y2d_c00204{bottom:296.130000px;}
.y2a_c00204{bottom:313.245000px;}
.y29_c00204{bottom:314.745000px;}
.y2b_c00204{bottom:315.405000px;}
.y27_c00204{bottom:315.630000px;}
.y28_c00204{bottom:316.905000px;}
.y22_c00204{bottom:334.245000px;}
.y24_c00204{bottom:335.130000px;}
.y26_c00204{bottom:335.325000px;}
.y25_c00204{bottom:335.970000px;}
.y23_c00204{bottom:336.405000px;}
.y20_c00204{bottom:353.745000px;}
.y21_c00204{bottom:354.825000px;}
.y1f_c00204{bottom:355.905000px;}
.y1c_c00204{bottom:370.905000px;}
.y1d_c00204{bottom:373.245000px;}
.y1b_c00204{bottom:375.405000px;}
.y1e_c00204{bottom:376.470000px;}
.y1a_c00204{bottom:392.745000px;}
.y18_c00204{bottom:394.905000px;}
.y19_c00204{bottom:394.920000px;}
.yd6_c00204{bottom:429.195000px;}
.yd5_c00204{bottom:429.630000px;}
.yd4_c00204{bottom:430.695000px;}
.yd3_c00204{bottom:431.130000px;}
.yd0_c00204{bottom:442.695000px;}
.yd1_c00204{bottom:443.775000px;}
.ycf_c00204{bottom:444.195000px;}
.yce_c00204{bottom:445.695000px;}
.yd2_c00204{bottom:445.920000px;}
.yca_c00204{bottom:456.195000px;}
.ycb_c00204{bottom:457.275000px;}
.yc8_c00204{bottom:457.695000px;}
.ycd_c00204{bottom:458.970000px;}
.yc9_c00204{bottom:459.195000px;}
.ycc_c00204{bottom:459.420000px;}
.yc7_c00204{bottom:470.130000px;}
.yc6_c00204{bottom:471.195000px;}
.yc5_c00204{bottom:471.630000px;}
.yc4_c00204{bottom:472.275000px;}
.yc3_c00204{bottom:472.695000px;}
.yc1_c00204{bottom:484.695000px;}
.yc2_c00204{bottom:484.920000px;}
.ybf_c00204{bottom:485.775000px;}
.yc0_c00204{bottom:486.195000px;}
.ybe_c00204{bottom:487.695000px;}
.ybb_c00204{bottom:498.195000px;}
.ybd_c00204{bottom:498.420000px;}
.yba_c00204{bottom:499.695000px;}
.ybc_c00204{bottom:499.920000px;}
.yb9_c00204{bottom:500.130000px;}
.yb7_c00204{bottom:513.195000px;}
.yb8_c00204{bottom:513.420000px;}
.yb6_c00204{bottom:514.695000px;}
.yb4_c00204{bottom:525.630000px;}
.yb5_c00204{bottom:526.920000px;}
.yb1_c00204{bottom:527.130000px;}
.yb2_c00204{bottom:528.195000px;}
.yb3_c00204{bottom:528.420000px;}
.yae_c00204{bottom:539.130000px;}
.yaf_c00204{bottom:540.195000px;}
.yb0_c00204{bottom:540.420000px;}
.yad_c00204{bottom:541.695000px;}
.yac_c00204{bottom:553.920000px;}
.yaa_c00204{bottom:555.195000px;}
.yab_c00204{bottom:555.420000px;}
.ya9_c00204{bottom:555.630000px;}
.ya7_c00204{bottom:567.195000px;}
.ya8_c00204{bottom:567.420000px;}
.ya3_c00204{bottom:567.630000px;}
.ya4_c00204{bottom:568.695000px;}
.ya6_c00204{bottom:568.920000px;}
.ya2_c00204{bottom:569.130000px;}
.ya5_c00204{bottom:569.970000px;}
.y9f_c00204{bottom:582.195000px;}
.ya1_c00204{bottom:582.420000px;}
.y9e_c00204{bottom:582.630000px;}
.y9d_c00204{bottom:583.695000px;}
.ya0_c00204{bottom:584.970000px;}
.y9b_c00204{bottom:595.695000px;}
.y9c_c00204{bottom:595.920000px;}
.y98_c00204{bottom:596.130000px;}
.y99_c00204{bottom:596.775000px;}
.y9a_c00204{bottom:597.195000px;}
.y96_c00204{bottom:609.195000px;}
.y97_c00204{bottom:609.420000px;}
.y95_c00204{bottom:609.630000px;}
.y94_c00204{bottom:622.920000px;}
.y92_c00204{bottom:623.130000px;}
.y91_c00204{bottom:624.195000px;}
.y93_c00204{bottom:624.420000px;}
.y90_c00204{bottom:639.195000px;}
.y8f_c00204{bottom:649.695000px;}
.y8e_c00204{bottom:650.130000px;}
.y8d_c00204{bottom:651.420000px;}
.y8b_c00204{bottom:651.630000px;}
.y8c_c00204{bottom:652.695000px;}
.y89_c00204{bottom:663.630000px;}
.y8a_c00204{bottom:664.695000px;}
.y88_c00204{bottom:666.420000px;}
.y87_c00204{bottom:666.630000px;}
.y86_c00204{bottom:678.195000px;}
.y84_c00204{bottom:678.630000px;}
.y83_c00204{bottom:679.695000px;}
.y85_c00204{bottom:679.920000px;}
.y82_c00204{bottom:691.695000px;}
.y80_c00204{bottom:692.130000px;}
.y7f_c00204{bottom:693.195000px;}
.y81_c00204{bottom:693.420000px;}
.y7e_c00204{bottom:705.195000px;}
.y7c_c00204{bottom:705.630000px;}
.y7b_c00204{bottom:706.050000px;}
.y7d_c00204{bottom:706.920000px;}
.y7a_c00204{bottom:708.630000px;}
.y79_c00204{bottom:717.630000px;}
.y78_c00204{bottom:718.695000px;}
.y77_c00204{bottom:720.195000px;}
.y75_c00204{bottom:720.630000px;}
.y74_c00204{bottom:721.695000px;}
.y76_c00204{bottom:721.920000px;}
.y73_c00204{bottom:732.630000px;}
.y72_c00204{bottom:733.695000px;}
.y70_c00204{bottom:734.130000px;}
.y6f_c00204{bottom:735.195000px;}
.y71_c00204{bottom:735.420000px;}
.y6e_c00204{bottom:747.195000px;}
.y6c_c00204{bottom:747.630000px;}
.y6d_c00204{bottom:748.920000px;}
.y6b_c00204{bottom:749.130000px;}
.y6a_c00204{bottom:750.195000px;}
.y69_c00204{bottom:760.695000px;}
.y68_c00204{bottom:762.420000px;}
.y67_c00204{bottom:762.630000px;}
.y66_c00204{bottom:763.695000px;}
.y65_c00204{bottom:774.195000px;}
.y64_c00204{bottom:775.695000px;}
.y63_c00204{bottom:775.920000px;}
.y62_c00204{bottom:776.130000px;}
.y61_c00204{bottom:777.195000px;}
.y60_c00204{bottom:787.695000px;}
.y5f_c00204{bottom:789.195000px;}
.y5e_c00204{bottom:789.420000px;}
.y5d_c00204{bottom:789.630000px;}
.y5c_c00204{bottom:790.695000px;}
.y5b_c00204{bottom:801.630000px;}
.y5a_c00204{bottom:802.695000px;}
.y58_c00204{bottom:803.130000px;}
.y57_c00204{bottom:803.550000px;}
.y59_c00204{bottom:804.420000px;}
.y56_c00204{bottom:804.630000px;}
.y55_c00204{bottom:815.130000px;}
.y54_c00204{bottom:816.195000px;}
.y53_c00204{bottom:817.695000px;}
.y52_c00204{bottom:835.695000px;}
.y51_c00204{bottom:837.195000px;}
.y4f_c00204{bottom:847.050000px;}
.y50_c00204{bottom:847.695000px;}
.y4e_c00204{bottom:848.130000px;}
.y4d_c00204{bottom:849.195000px;}
.y4b_c00204{bottom:849.630000px;}
.y4c_c00204{bottom:850.695000px;}
.y4a_c00204{bottom:862.695000px;}
.y49_c00204{bottom:864.195000px;}
.y48_c00204{bottom:883.470000px;}
.y47_c00204{bottom:896.325000px;}
.y44_c00204{bottom:896.550000px;}
.y46_c00204{bottom:897.405000px;}
.y45_c00204{bottom:897.630000px;}
.y43_c00204{bottom:899.550000px;}
.y41_c00204{bottom:911.325000px;}
.y40_c00204{bottom:912.405000px;}
.y42_c00204{bottom:913.470000px;}
.y3f_c00204{bottom:914.550000px;}
.y3e_c00204{bottom:926.325000px;}
.y3c_c00204{bottom:928.050000px;}
.y3b_c00204{bottom:928.470000px;}
.y3d_c00204{bottom:929.550000px;}
.y3a_c00204{bottom:953.550000px;}
.y17_c00204{bottom:984.405000px;}
.y14_c00204{bottom:1001.745000px;}
.y12_c00204{bottom:1003.905000px;}
.y16_c00204{bottom:1004.130000px;}
.y13_c00204{bottom:1004.970000px;}
.y15_c00204{bottom:1005.405000px;}
.y10_c00204{bottom:1021.245000px;}
.y11_c00204{bottom:1023.405000px;}
.ya_c00204{bottom:1040.745000px;}
.yf_c00204{bottom:1042.245000px;}
.yc_c00204{bottom:1042.905000px;}
.yd_c00204{bottom:1043.130000px;}
.yb_c00204{bottom:1043.970000px;}
.ye_c00204{bottom:1044.405000px;}
.y6_c00204{bottom:1060.245000px;}
.y8_c00204{bottom:1061.745000px;}
.y4_c00204{bottom:1062.405000px;}
.y7_c00204{bottom:1063.470000px;}
.y5_c00204{bottom:1063.905000px;}
.y9_c00204{bottom:1064.970000px;}
.y1_c00204{bottom:1099.905000px;}
.y2_c00204{bottom:1102.050000px;}
.h7_c00204{height:4.206533px;}
.h9_c00204{height:14.612168px;}
.h3_c00204{height:16.752334px;}
.h6_c00204{height:23.025234px;}
.h2_c00204{height:25.091602px;}
.h5_c00204{height:31.364502px;}
.h1_c00204{height:35.571035px;}
.h8_c00204{height:39.777568px;}
.h4_c00204{height:43.910303px;}
.h0_c00204{height:1335.000000px;}
.w0_c00204{width:880.500000px;}
.x0_c00204{left:0.000000px;}
.x2f_c00204{left:150.000000px;}
.x13_c00204{left:151.920000px;}
.x55_c00204{left:153.000000px;}
.x4_c00204{left:166.080000px;}
.x32_c00204{left:167.145000px;}
.x30_c00204{left:169.500000px;}
.x65_c00204{left:194.580000px;}
.x25_c00204{left:197.580000px;}
.x56_c00204{left:202.500000px;}
.x3a_c00204{left:203.580000px;}
.x31_c00204{left:212.580000px;}
.x41_c00204{left:217.500000px;}
.x5_c00204{left:220.920000px;}
.x14_c00204{left:223.500000px;}
.x20_c00204{left:226.500000px;}
.x48_c00204{left:231.000000px;}
.x57_c00204{left:232.500000px;}
.x33_c00204{left:237.000000px;}
.x49_c00204{left:248.580000px;}
.x58_c00204{left:252.645000px;}
.x3b_c00204{left:255.000000px;}
.x15_c00204{left:256.500000px;}
.x34_c00204{left:257.580000px;}
.x26_c00204{left:259.080000px;}
.x21_c00204{left:268.920000px;}
.x4a_c00204{left:270.000000px;}
.x66_c00204{left:280.920000px;}
.x5e_c00204{left:285.000000px;}
.x6_c00204{left:286.275000px;}
.x27_c00204{left:289.500000px;}
.x7f_c00204{left:291.000000px;}
.x67_c00204{left:298.500000px;}
.x5f_c00204{left:301.500000px;}
.x74_c00204{left:303.000000px;}
.x3c_c00204{left:304.500000px;}
.x22_c00204{left:306.000000px;}
.x7_c00204{left:310.080000px;}
.x68_c00204{left:313.080000px;}
.x86_c00204{left:318.420000px;}
.x50_c00204{left:322.080000px;}
.x23_c00204{left:324.420000px;}
.x28_c00204{left:328.500000px;}
.x97_c00204{left:330.000000px;}
.x91_c00204{left:331.080000px;}
.x77_c00204{left:334.080000px;}
.x59_c00204{left:336.000000px;}
.x8_c00204{left:339.000000px;}
.x16_c00204{left:340.080000px;}
.x42_c00204{left:342.000000px;}
.x71_c00204{left:343.080000px;}
.x35_c00204{left:344.580000px;}
.x69_c00204{left:345.645000px;}
.x94_c00204{left:348.000000px;}
.x75_c00204{left:351.420000px;}
.x9_c00204{left:352.500000px;}
.x8b_c00204{left:357.000000px;}
.x24_c00204{left:358.500000px;}
.x87_c00204{left:360.000000px;}
.x78_c00204{left:361.500000px;}
.x8f_c00204{left:362.580000px;}
.xa_c00204{left:367.500000px;}
.x5a_c00204{left:368.580000px;}
.x93_c00204{left:370.500000px;}
.x8c_c00204{left:375.000000px;}
.x88_c00204{left:376.080000px;}
.x3d_c00204{left:379.080000px;}
.x60_c00204{left:380.580000px;}
.x7d_c00204{left:382.080000px;}
.x79_c00204{left:384.420000px;}
.x92_c00204{left:385.500000px;}
.xb_c00204{left:387.000000px;}
.x6a_c00204{left:388.920000px;}
.x17_c00204{left:390.000000px;}
.x90_c00204{left:393.420000px;}
.x99_c00204{left:396.000000px;}
.x2_c00204{left:397.500000px;}
.x72_c00204{left:400.500000px;}
.xc_c00204{left:402.000000px;}
.x18_c00204{left:409.500000px;}
.x4b_c00204{left:411.420000px;}
.x61_c00204{left:418.080000px;}
.x7a_c00204{left:421.500000px;}
.x7e_c00204{left:429.000000px;}
.x29_c00204{left:430.080000px;}
.x3e_c00204{left:433.080000px;}
.x43_c00204{left:435.000000px;}
.x19_c00204{left:444.000000px;}
.xd_c00204{left:447.000000px;}
.x2a_c00204{left:448.920000px;}
.x51_c00204{left:451.500000px;}
.x70_c00204{left:454.920000px;}
.x7b_c00204{left:459.000000px;}
.x80_c00204{left:462.000000px;}
.x6b_c00204{left:463.920000px;}
.x1a_c00204{left:465.420000px;}
.x5b_c00204{left:466.500000px;}
.x44_c00204{left:468.420000px;}
.x84_c00204{left:471.000000px;}
.x2b_c00204{left:481.500000px;}
.x6c_c00204{left:490.080000px;}
.x1b_c00204{left:493.080000px;}
.x45_c00204{left:497.580000px;}
.x89_c00204{left:499.500000px;}
.x95_c00204{left:501.000000px;}
.x8a_c00204{left:502.500000px;}
.x81_c00204{left:504.000000px;}
.x3f_c00204{left:505.080000px;}
.x62_c00204{left:511.500000px;}
.x36_c00204{left:512.580000px;}
.x7c_c00204{left:514.920000px;}
.xe_c00204{left:522.000000px;}
.x5c_c00204{left:526.080000px;}
.x82_c00204{left:529.920000px;}
.x76_c00204{left:532.500000px;}
.x73_c00204{left:534.000000px;}
.x37_c00204{left:535.500000px;}
.x9a_c00204{left:537.000000px;}
.x6d_c00204{left:538.500000px;}
.x96_c00204{left:541.500000px;}
.x8d_c00204{left:543.000000px;}
.xf_c00204{left:553.920000px;}
.x2c_c00204{left:555.420000px;}
.x1c_c00204{left:564.000000px;}
.x83_c00204{left:565.500000px;}
.x4c_c00204{left:567.000000px;}
.x63_c00204{left:568.500000px;}
.x85_c00204{left:570.000000px;}
.x46_c00204{left:571.080000px;}
.x98_c00204{left:573.000000px;}
.x38_c00204{left:574.500000px;}
.x8e_c00204{left:579.000000px;}
.x1d_c00204{left:590.580000px;}
.x10_c00204{left:593.580000px;}
.x6e_c00204{left:603.000000px;}
.x52_c00204{left:606.420000px;}
.x4d_c00204{left:610.500000px;}
.x11_c00204{left:611.580000px;}
.x1e_c00204{left:629.580000px;}
.x4e_c00204{left:631.920000px;}
.x53_c00204{left:634.500000px;}
.x39_c00204{left:643.500000px;}
.x47_c00204{left:655.500000px;}
.x64_c00204{left:657.000000px;}
.x4f_c00204{left:661.920000px;}
.x2d_c00204{left:663.000000px;}
.x12_c00204{left:664.920000px;}
.x54_c00204{left:687.000000px;}
.x2e_c00204{left:690.420000px;}
.x5d_c00204{left:692.580000px;}
.x1f_c00204{left:701.580000px;}
.x1_c00204{left:705.420000px;}
.x6f_c00204{left:709.920000px;}
.x40_c00204{left:711.000000px;}
.x3_c00204{left:720.000000px;}
@media print{
.v1_c00204{vertical-align:-5.333333pt;}
.v0_c00204{vertical-align:0.000000pt;}
.ls1_c00204{letter-spacing:0.000000pt;}
.ls0_c00204{letter-spacing:39.832796pt;}
.ws9_c00204{word-spacing:0.000000pt;}
.ws6_c00204{word-spacing:8.226708pt;}
.ws5_c00204{word-spacing:8.904628pt;}
.ws7_c00204{word-spacing:9.391807pt;}
.ws1_c00204{word-spacing:12.099545pt;}
.ws8_c00204{word-spacing:16.123479pt;}
.ws4_c00204{word-spacing:17.260429pt;}
.ws3_c00204{word-spacing:32.762503pt;}
.ws0_c00204{word-spacing:38.127949pt;}
.ws2_c00204{word-spacing:59.387317pt;}
.fs6_c00204{font-size:3.040000pt;}
.fs8_c00204{font-size:10.560000pt;}
.fs2_c00204{font-size:12.106667pt;}
.fs5_c00204{font-size:16.640000pt;}
.fs1_c00204{font-size:18.133333pt;}
.fs4_c00204{font-size:22.666667pt;}
.fs0_c00204{font-size:25.706667pt;}
.fs7_c00204{font-size:28.746667pt;}
.fs3_c00204{font-size:31.733333pt;}
.y0_c00204{bottom:0.000000pt;}
.y3_c00204{bottom:204.173333pt;}
.y38_c00204{bottom:224.560000pt;}
.y35_c00204{bottom:225.693333pt;}
.y37_c00204{bottom:226.440000pt;}
.y39_c00204{bottom:227.400000pt;}
.y34_c00204{bottom:228.360000pt;}
.y36_c00204{bottom:228.560000pt;}
.y30_c00204{bottom:243.773333pt;}
.y33_c00204{bottom:244.733333pt;}
.y2f_c00204{bottom:245.693333pt;}
.y31_c00204{bottom:245.893333pt;}
.y32_c00204{bottom:246.640000pt;}
.y2e_c00204{bottom:262.066667pt;}
.y2c_c00204{bottom:263.026667pt;}
.y2d_c00204{bottom:263.226667pt;}
.y2a_c00204{bottom:278.440000pt;}
.y29_c00204{bottom:279.773333pt;}
.y2b_c00204{bottom:280.360000pt;}
.y27_c00204{bottom:280.560000pt;}
.y28_c00204{bottom:281.693333pt;}
.y22_c00204{bottom:297.106667pt;}
.y24_c00204{bottom:297.893333pt;}
.y26_c00204{bottom:298.066667pt;}
.y25_c00204{bottom:298.640000pt;}
.y23_c00204{bottom:299.026667pt;}
.y20_c00204{bottom:314.440000pt;}
.y21_c00204{bottom:315.400000pt;}
.y1f_c00204{bottom:316.360000pt;}
.y1c_c00204{bottom:329.693333pt;}
.y1d_c00204{bottom:331.773333pt;}
.y1b_c00204{bottom:333.693333pt;}
.y1e_c00204{bottom:334.640000pt;}
.y1a_c00204{bottom:349.106667pt;}
.y18_c00204{bottom:351.026667pt;}
.y19_c00204{bottom:351.040000pt;}
.yd6_c00204{bottom:381.506667pt;}
.yd5_c00204{bottom:381.893333pt;}
.yd4_c00204{bottom:382.840000pt;}
.yd3_c00204{bottom:383.226667pt;}
.yd0_c00204{bottom:393.506667pt;}
.yd1_c00204{bottom:394.466667pt;}
.ycf_c00204{bottom:394.840000pt;}
.yce_c00204{bottom:396.173333pt;}
.yd2_c00204{bottom:396.373333pt;}
.yca_c00204{bottom:405.506667pt;}
.ycb_c00204{bottom:406.466667pt;}
.yc8_c00204{bottom:406.840000pt;}
.ycd_c00204{bottom:407.973333pt;}
.yc9_c00204{bottom:408.173333pt;}
.ycc_c00204{bottom:408.373333pt;}
.yc7_c00204{bottom:417.893333pt;}
.yc6_c00204{bottom:418.840000pt;}
.yc5_c00204{bottom:419.226667pt;}
.yc4_c00204{bottom:419.800000pt;}
.yc3_c00204{bottom:420.173333pt;}
.yc1_c00204{bottom:430.840000pt;}
.yc2_c00204{bottom:431.040000pt;}
.ybf_c00204{bottom:431.800000pt;}
.yc0_c00204{bottom:432.173333pt;}
.ybe_c00204{bottom:433.506667pt;}
.ybb_c00204{bottom:442.840000pt;}
.ybd_c00204{bottom:443.040000pt;}
.yba_c00204{bottom:444.173333pt;}
.ybc_c00204{bottom:444.373333pt;}
.yb9_c00204{bottom:444.560000pt;}
.yb7_c00204{bottom:456.173333pt;}
.yb8_c00204{bottom:456.373333pt;}
.yb6_c00204{bottom:457.506667pt;}
.yb4_c00204{bottom:467.226667pt;}
.yb5_c00204{bottom:468.373333pt;}
.yb1_c00204{bottom:468.560000pt;}
.yb2_c00204{bottom:469.506667pt;}
.yb3_c00204{bottom:469.706667pt;}
.yae_c00204{bottom:479.226667pt;}
.yaf_c00204{bottom:480.173333pt;}
.yb0_c00204{bottom:480.373333pt;}
.yad_c00204{bottom:481.506667pt;}
.yac_c00204{bottom:492.373333pt;}
.yaa_c00204{bottom:493.506667pt;}
.yab_c00204{bottom:493.706667pt;}
.ya9_c00204{bottom:493.893333pt;}
.ya7_c00204{bottom:504.173333pt;}
.ya8_c00204{bottom:504.373333pt;}
.ya3_c00204{bottom:504.560000pt;}
.ya4_c00204{bottom:505.506667pt;}
.ya6_c00204{bottom:505.706667pt;}
.ya2_c00204{bottom:505.893333pt;}
.ya5_c00204{bottom:506.640000pt;}
.y9f_c00204{bottom:517.506667pt;}
.ya1_c00204{bottom:517.706667pt;}
.y9e_c00204{bottom:517.893333pt;}
.y9d_c00204{bottom:518.840000pt;}
.ya0_c00204{bottom:519.973333pt;}
.y9b_c00204{bottom:529.506667pt;}
.y9c_c00204{bottom:529.706667pt;}
.y98_c00204{bottom:529.893333pt;}
.y99_c00204{bottom:530.466667pt;}
.y9a_c00204{bottom:530.840000pt;}
.y96_c00204{bottom:541.506667pt;}
.y97_c00204{bottom:541.706667pt;}
.y95_c00204{bottom:541.893333pt;}
.y94_c00204{bottom:553.706667pt;}
.y92_c00204{bottom:553.893333pt;}
.y91_c00204{bottom:554.840000pt;}
.y93_c00204{bottom:555.040000pt;}
.y90_c00204{bottom:568.173333pt;}
.y8f_c00204{bottom:577.506667pt;}
.y8e_c00204{bottom:577.893333pt;}
.y8d_c00204{bottom:579.040000pt;}
.y8b_c00204{bottom:579.226667pt;}
.y8c_c00204{bottom:580.173333pt;}
.y89_c00204{bottom:589.893333pt;}
.y8a_c00204{bottom:590.840000pt;}
.y88_c00204{bottom:592.373333pt;}
.y87_c00204{bottom:592.560000pt;}
.y86_c00204{bottom:602.840000pt;}
.y84_c00204{bottom:603.226667pt;}
.y83_c00204{bottom:604.173333pt;}
.y85_c00204{bottom:604.373333pt;}
.y82_c00204{bottom:614.840000pt;}
.y80_c00204{bottom:615.226667pt;}
.y7f_c00204{bottom:616.173333pt;}
.y81_c00204{bottom:616.373333pt;}
.y7e_c00204{bottom:626.840000pt;}
.y7c_c00204{bottom:627.226667pt;}
.y7b_c00204{bottom:627.600000pt;}
.y7d_c00204{bottom:628.373333pt;}
.y7a_c00204{bottom:629.893333pt;}
.y79_c00204{bottom:637.893333pt;}
.y78_c00204{bottom:638.840000pt;}
.y77_c00204{bottom:640.173333pt;}
.y75_c00204{bottom:640.560000pt;}
.y74_c00204{bottom:641.506667pt;}
.y76_c00204{bottom:641.706667pt;}
.y73_c00204{bottom:651.226667pt;}
.y72_c00204{bottom:652.173333pt;}
.y70_c00204{bottom:652.560000pt;}
.y6f_c00204{bottom:653.506667pt;}
.y71_c00204{bottom:653.706667pt;}
.y6e_c00204{bottom:664.173333pt;}
.y6c_c00204{bottom:664.560000pt;}
.y6d_c00204{bottom:665.706667pt;}
.y6b_c00204{bottom:665.893333pt;}
.y6a_c00204{bottom:666.840000pt;}
.y69_c00204{bottom:676.173333pt;}
.y68_c00204{bottom:677.706667pt;}
.y67_c00204{bottom:677.893333pt;}
.y66_c00204{bottom:678.840000pt;}
.y65_c00204{bottom:688.173333pt;}
.y64_c00204{bottom:689.506667pt;}
.y63_c00204{bottom:689.706667pt;}
.y62_c00204{bottom:689.893333pt;}
.y61_c00204{bottom:690.840000pt;}
.y60_c00204{bottom:700.173333pt;}
.y5f_c00204{bottom:701.506667pt;}
.y5e_c00204{bottom:701.706667pt;}
.y5d_c00204{bottom:701.893333pt;}
.y5c_c00204{bottom:702.840000pt;}
.y5b_c00204{bottom:712.560000pt;}
.y5a_c00204{bottom:713.506667pt;}
.y58_c00204{bottom:713.893333pt;}
.y57_c00204{bottom:714.266667pt;}
.y59_c00204{bottom:715.040000pt;}
.y56_c00204{bottom:715.226667pt;}
.y55_c00204{bottom:724.560000pt;}
.y54_c00204{bottom:725.506667pt;}
.y53_c00204{bottom:726.840000pt;}
.y52_c00204{bottom:742.840000pt;}
.y51_c00204{bottom:744.173333pt;}
.y4f_c00204{bottom:752.933333pt;}
.y50_c00204{bottom:753.506667pt;}
.y4e_c00204{bottom:753.893333pt;}
.y4d_c00204{bottom:754.840000pt;}
.y4b_c00204{bottom:755.226667pt;}
.y4c_c00204{bottom:756.173333pt;}
.y4a_c00204{bottom:766.840000pt;}
.y49_c00204{bottom:768.173333pt;}
.y48_c00204{bottom:785.306667pt;}
.y47_c00204{bottom:796.733333pt;}
.y44_c00204{bottom:796.933333pt;}
.y46_c00204{bottom:797.693333pt;}
.y45_c00204{bottom:797.893333pt;}
.y43_c00204{bottom:799.600000pt;}
.y41_c00204{bottom:810.066667pt;}
.y40_c00204{bottom:811.026667pt;}
.y42_c00204{bottom:811.973333pt;}
.y3f_c00204{bottom:812.933333pt;}
.y3e_c00204{bottom:823.400000pt;}
.y3c_c00204{bottom:824.933333pt;}
.y3b_c00204{bottom:825.306667pt;}
.y3d_c00204{bottom:826.266667pt;}
.y3a_c00204{bottom:847.600000pt;}
.y17_c00204{bottom:875.026667pt;}
.y14_c00204{bottom:890.440000pt;}
.y12_c00204{bottom:892.360000pt;}
.y16_c00204{bottom:892.560000pt;}
.y13_c00204{bottom:893.306667pt;}
.y15_c00204{bottom:893.693333pt;}
.y10_c00204{bottom:907.773333pt;}
.y11_c00204{bottom:909.693333pt;}
.ya_c00204{bottom:925.106667pt;}
.yf_c00204{bottom:926.440000pt;}
.yc_c00204{bottom:927.026667pt;}
.yd_c00204{bottom:927.226667pt;}
.yb_c00204{bottom:927.973333pt;}
.ye_c00204{bottom:928.360000pt;}
.y6_c00204{bottom:942.440000pt;}
.y8_c00204{bottom:943.773333pt;}
.y4_c00204{bottom:944.360000pt;}
.y7_c00204{bottom:945.306667pt;}
.y5_c00204{bottom:945.693333pt;}
.y9_c00204{bottom:946.640000pt;}
.y1_c00204{bottom:977.693333pt;}
.y2_c00204{bottom:979.600000pt;}
.h7_c00204{height:3.739141pt;}
.h9_c00204{height:12.988594pt;}
.h3_c00204{height:14.890964pt;}
.h6_c00204{height:20.466875pt;}
.h2_c00204{height:22.303646pt;}
.h5_c00204{height:27.879557pt;}
.h1_c00204{height:31.618698pt;}
.h8_c00204{height:35.357839pt;}
.h4_c00204{height:39.031380pt;}
.h0_c00204{height:1186.666667pt;}
.w0_c00204{width:782.666667pt;}
.x0_c00204{left:0.000000pt;}
.x2f_c00204{left:133.333333pt;}
.x13_c00204{left:135.040000pt;}
.x55_c00204{left:136.000000pt;}
.x4_c00204{left:147.626667pt;}
.x32_c00204{left:148.573333pt;}
.x30_c00204{left:150.666667pt;}
.x65_c00204{left:172.960000pt;}
.x25_c00204{left:175.626667pt;}
.x56_c00204{left:180.000000pt;}
.x3a_c00204{left:180.960000pt;}
.x31_c00204{left:188.960000pt;}
.x41_c00204{left:193.333333pt;}
.x5_c00204{left:196.373333pt;}
.x14_c00204{left:198.666667pt;}
.x20_c00204{left:201.333333pt;}
.x48_c00204{left:205.333333pt;}
.x57_c00204{left:206.666667pt;}
.x33_c00204{left:210.666667pt;}
.x49_c00204{left:220.960000pt;}
.x58_c00204{left:224.573333pt;}
.x3b_c00204{left:226.666667pt;}
.x15_c00204{left:228.000000pt;}
.x34_c00204{left:228.960000pt;}
.x26_c00204{left:230.293333pt;}
.x21_c00204{left:239.040000pt;}
.x4a_c00204{left:240.000000pt;}
.x66_c00204{left:249.706667pt;}
.x5e_c00204{left:253.333333pt;}
.x6_c00204{left:254.466667pt;}
.x27_c00204{left:257.333333pt;}
.x7f_c00204{left:258.666667pt;}
.x67_c00204{left:265.333333pt;}
.x5f_c00204{left:268.000000pt;}
.x74_c00204{left:269.333333pt;}
.x3c_c00204{left:270.666667pt;}
.x22_c00204{left:272.000000pt;}
.x7_c00204{left:275.626667pt;}
.x68_c00204{left:278.293333pt;}
.x86_c00204{left:283.040000pt;}
.x50_c00204{left:286.293333pt;}
.x23_c00204{left:288.373333pt;}
.x28_c00204{left:292.000000pt;}
.x97_c00204{left:293.333333pt;}
.x91_c00204{left:294.293333pt;}
.x77_c00204{left:296.960000pt;}
.x59_c00204{left:298.666667pt;}
.x8_c00204{left:301.333333pt;}
.x16_c00204{left:302.293333pt;}
.x42_c00204{left:304.000000pt;}
.x71_c00204{left:304.960000pt;}
.x35_c00204{left:306.293333pt;}
.x69_c00204{left:307.240000pt;}
.x94_c00204{left:309.333333pt;}
.x75_c00204{left:312.373333pt;}
.x9_c00204{left:313.333333pt;}
.x8b_c00204{left:317.333333pt;}
.x24_c00204{left:318.666667pt;}
.x87_c00204{left:320.000000pt;}
.x78_c00204{left:321.333333pt;}
.x8f_c00204{left:322.293333pt;}
.xa_c00204{left:326.666667pt;}
.x5a_c00204{left:327.626667pt;}
.x93_c00204{left:329.333333pt;}
.x8c_c00204{left:333.333333pt;}
.x88_c00204{left:334.293333pt;}
.x3d_c00204{left:336.960000pt;}
.x60_c00204{left:338.293333pt;}
.x7d_c00204{left:339.626667pt;}
.x79_c00204{left:341.706667pt;}
.x92_c00204{left:342.666667pt;}
.xb_c00204{left:344.000000pt;}
.x6a_c00204{left:345.706667pt;}
.x17_c00204{left:346.666667pt;}
.x90_c00204{left:349.706667pt;}
.x99_c00204{left:352.000000pt;}
.x2_c00204{left:353.333333pt;}
.x72_c00204{left:356.000000pt;}
.xc_c00204{left:357.333333pt;}
.x18_c00204{left:364.000000pt;}
.x4b_c00204{left:365.706667pt;}
.x61_c00204{left:371.626667pt;}
.x7a_c00204{left:374.666667pt;}
.x7e_c00204{left:381.333333pt;}
.x29_c00204{left:382.293333pt;}
.x3e_c00204{left:384.960000pt;}
.x43_c00204{left:386.666667pt;}
.x19_c00204{left:394.666667pt;}
.xd_c00204{left:397.333333pt;}
.x2a_c00204{left:399.040000pt;}
.x51_c00204{left:401.333333pt;}
.x70_c00204{left:404.373333pt;}
.x7b_c00204{left:408.000000pt;}
.x80_c00204{left:410.666667pt;}
.x6b_c00204{left:412.373333pt;}
.x1a_c00204{left:413.706667pt;}
.x5b_c00204{left:414.666667pt;}
.x44_c00204{left:416.373333pt;}
.x84_c00204{left:418.666667pt;}
.x2b_c00204{left:428.000000pt;}
.x6c_c00204{left:435.626667pt;}
.x1b_c00204{left:438.293333pt;}
.x45_c00204{left:442.293333pt;}
.x89_c00204{left:444.000000pt;}
.x95_c00204{left:445.333333pt;}
.x8a_c00204{left:446.666667pt;}
.x81_c00204{left:448.000000pt;}
.x3f_c00204{left:448.960000pt;}
.x62_c00204{left:454.666667pt;}
.x36_c00204{left:455.626667pt;}
.x7c_c00204{left:457.706667pt;}
.xe_c00204{left:464.000000pt;}
.x5c_c00204{left:467.626667pt;}
.x82_c00204{left:471.040000pt;}
.x76_c00204{left:473.333333pt;}
.x73_c00204{left:474.666667pt;}
.x37_c00204{left:476.000000pt;}
.x9a_c00204{left:477.333333pt;}
.x6d_c00204{left:478.666667pt;}
.x96_c00204{left:481.333333pt;}
.x8d_c00204{left:482.666667pt;}
.xf_c00204{left:492.373333pt;}
.x2c_c00204{left:493.706667pt;}
.x1c_c00204{left:501.333333pt;}
.x83_c00204{left:502.666667pt;}
.x4c_c00204{left:504.000000pt;}
.x63_c00204{left:505.333333pt;}
.x85_c00204{left:506.666667pt;}
.x46_c00204{left:507.626667pt;}
.x98_c00204{left:509.333333pt;}
.x38_c00204{left:510.666667pt;}
.x8e_c00204{left:514.666667pt;}
.x1d_c00204{left:524.960000pt;}
.x10_c00204{left:527.626667pt;}
.x6e_c00204{left:536.000000pt;}
.x52_c00204{left:539.040000pt;}
.x4d_c00204{left:542.666667pt;}
.x11_c00204{left:543.626667pt;}
.x1e_c00204{left:559.626667pt;}
.x4e_c00204{left:561.706667pt;}
.x53_c00204{left:564.000000pt;}
.x39_c00204{left:572.000000pt;}
.x47_c00204{left:582.666667pt;}
.x64_c00204{left:584.000000pt;}
.x4f_c00204{left:588.373333pt;}
.x2d_c00204{left:589.333333pt;}
.x12_c00204{left:591.040000pt;}
.x54_c00204{left:610.666667pt;}
.x2e_c00204{left:613.706667pt;}
.x5d_c00204{left:615.626667pt;}
.x1f_c00204{left:623.626667pt;}
.x1_c00204{left:627.040000pt;}
.x6f_c00204{left:631.040000pt;}
.x40_c00204{left:632.000000pt;}
.x3_c00204{left:640.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_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_925c0f24529fb3ee31bf9ca1.woff2')format("woff");}.ff1_c00205{font-family:ff1_c00205;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m83_c00205{transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);}
.m8b_c00205{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.m59_c00205{transform:matrix(0.328838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328838,0.000000,0.000000,0.250000,0,0);}
.m9a_c00205{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.mde_c00205{transform:matrix(0.337395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337395,0.000000,0.000000,0.250000,0,0);}
.m71_c00205{transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);}
.mdd_c00205{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m0_c00205{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m70_c00205{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.ma9_c00205{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mc6_c00205{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m44_c00205{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m84_c00205{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.m2e_c00205{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.m6d_c00205{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mc9_c00205{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m2d_c00205{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mee_c00205{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.mfa_c00205{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.ma1_c00205{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m3e_c00205{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m89_c00205{transform:matrix(0.385436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385436,0.000000,0.000000,0.250000,0,0);}
.m51_c00205{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m43_c00205{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m8e_c00205{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.md0_c00205{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.md6_c00205{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m13_c00205{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m81_c00205{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.mf3_c00205{transform:matrix(0.398390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398390,0.000000,0.000000,0.250000,0,0);}
.mf7_c00205{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mad_c00205{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m5c_c00205{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);}
.mc3_c00205{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mce_c00205{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m7b_c00205{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m58_c00205{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m42_c00205{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m76_c00205{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m96_c00205{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m19_c00205{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m5_c00205{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mc1_c00205{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m2b_c00205{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m1b_c00205{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.mc7_c00205{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.mbe_c00205{transform:matrix(0.412193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412193,0.000000,0.000000,0.250000,0,0);}
.me5_c00205{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m8f_c00205{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.maf_c00205{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.mf8_c00205{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m3_c00205{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m57_c00205{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m6b_c00205{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m48_c00205{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m100_c00205{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m28_c00205{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m10_c00205{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.mbd_c00205{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m8c_c00205{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m66_c00205{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.md9_c00205{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m3b_c00205{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.mea_c00205{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m1f_c00205{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m9e_c00205{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mac_c00205{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.mec_c00205{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.me4_c00205{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m6c_c00205{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.md2_c00205{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.md_c00205{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m5a_c00205{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m4b_c00205{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m87_c00205{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mb9_c00205{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.mbb_c00205{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m56_c00205{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m4c_c00205{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m95_c00205{transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);}
.me8_c00205{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m90_c00205{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.me3_c00205{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m6_c00205{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.md1_c00205{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mb0_c00205{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m105_c00205{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mc4_c00205{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m30_c00205{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.mf1_c00205{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.mb6_c00205{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m7d_c00205{transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);}
.m64_c00205{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mf9_c00205{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.mb1_c00205{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.m65_c00205{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m102_c00205{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.mab_c00205{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m77_c00205{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m16_c00205{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.mf2_c00205{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m8_c00205{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.m85_c00205{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m7e_c00205{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m99_c00205{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.mc8_c00205{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.mc2_c00205{transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);}
.me6_c00205{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.me1_c00205{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.maa_c00205{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.mb8_c00205{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mb2_c00205{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.mb7_c00205{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m73_c00205{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m1e_c00205{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m31_c00205{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mfc_c00205{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m20_c00205{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.ma7_c00205{transform:matrix(0.484034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484034,0.000000,0.000000,0.250000,0,0);}
.m15_c00205{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mfd_c00205{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m33_c00205{transform:matrix(0.487477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487477,0.000000,0.000000,0.250000,0,0);}
.m18_c00205{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.m104_c00205{transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);}
.m8d_c00205{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mb5_c00205{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m41_c00205{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m2c_c00205{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.mb4_c00205{transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);}
.m25_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);}
.ma5_c00205{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m6a_c00205{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m94_c00205{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m9_c00205{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.md8_c00205{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m7_c00205{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m1a_c00205{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mcc_c00205{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m1d_c00205{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m45_c00205{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mda_c00205{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m75_c00205{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.ma_c00205{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mb3_c00205{transform:matrix(0.517647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517647,0.000000,0.000000,0.250000,0,0);}
.m37_c00205{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mdf_c00205{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m79_c00205{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mdb_c00205{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.md5_c00205{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m40_c00205{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m3c_c00205{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m26_c00205{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m47_c00205{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m1c_c00205{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mdc_c00205{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m39_c00205{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m103_c00205{transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);}
.m5b_c00205{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m38_c00205{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m101_c00205{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m52_c00205{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m27_c00205{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m8a_c00205{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m93_c00205{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m63_c00205{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m32_c00205{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m2a_c00205{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.me9_c00205{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m9c_c00205{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mc5_c00205{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m23_c00205{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.md3_c00205{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mcf_c00205{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m35_c00205{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mff_c00205{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m78_c00205{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m67_c00205{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m12_c00205{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m91_c00205{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mf6_c00205{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.md7_c00205{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m49_c00205{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.ma0_c00205{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mb_c00205{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.me_c00205{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mf4_c00205{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m6e_c00205{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m53_c00205{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m4d_c00205{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m4e_c00205{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m54_c00205{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m2_c00205{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m60_c00205{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m72_c00205{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m9d_c00205{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m82_c00205{transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);}
.m29_c00205{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mae_c00205{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.mbc_c00205{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.mca_c00205{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m17_c00205{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.md4_c00205{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m55_c00205{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m74_c00205{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m92_c00205{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m50_c00205{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m3d_c00205{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m5f_c00205{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m86_c00205{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m2f_c00205{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m36_c00205{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m97_c00205{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m5e_c00205{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m62_c00205{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.mf5_c00205{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_c00205{transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);}
.me2_c00205{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mfb_c00205{transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);}
.m1_c00205{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m88_c00205{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.m69_c00205{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.m6f_c00205{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mf_c00205{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m21_c00205{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m34_c00205{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mc_c00205{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.med_c00205{transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);}
.mc0_c00205{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);}
.m68_c00205{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.ma3_c00205{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m9b_c00205{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.ma4_c00205{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.mba_c00205{transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);}
.m14_c00205{transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);}
.m24_c00205{transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);}
.mef_c00205{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.mfe_c00205{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m4_c00205{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m3f_c00205{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mcd_c00205{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m4a_c00205{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m3a_c00205{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m98_c00205{transform:matrix(0.718824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.718824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.718824,0.000000,0.000000,0.250000,0,0);}
.m4f_c00205{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mf0_c00205{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m61_c00205{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m22_c00205{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m80_c00205{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m5d_c00205{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.me7_c00205{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.ma6_c00205{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m7c_c00205{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m7a_c00205{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m9f_c00205{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mcb_c00205{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.me0_c00205{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m46_c00205{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.ma2_c00205{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m7f_c00205{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m11_c00205{transform:matrix(2.922980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.922980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.922980,0.000000,0.000000,0.250000,0,0);}
.meb_c00205{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.mbf_c00205{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00205{vertical-align:0.000000px;}
.v1_c00205{vertical-align:6.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;}
}
.ws1_c00205{word-spacing:-2.398920px;}
.ws0_c00205{word-spacing:-2.079441px;}
.ws2_c00205{word-spacing:0.000000px;}
.fc0_c00205{color:transparent;}
.fs8_c00205{font-size:3.420000px;}
.fs5_c00205{font-size:11.880000px;}
.fs3_c00205{font-size:18.720000px;}
.fs1_c00205{font-size:20.400000px;}
.fs4_c00205{font-size:25.500000px;}
.fs2_c00205{font-size:28.920000px;}
.fs6_c00205{font-size:32.340000px;}
.fs0_c00205{font-size:35.700000px;}
.fs7_c00205{font-size:39.120000px;}
.y0_c00205{bottom:0.000000px;}
.yc8_c00205{bottom:250.245000px;}
.yc6_c00205{bottom:251.325000px;}
.yc7_c00205{bottom:252.405000px;}
.yca_c00205{bottom:252.630000px;}
.yc9_c00205{bottom:253.470000px;}
.yc0_c00205{bottom:269.745000px;}
.ybf_c00205{bottom:270.405000px;}
.yc5_c00205{bottom:270.825000px;}
.yc4_c00205{bottom:271.470000px;}
.yc2_c00205{bottom:271.905000px;}
.yc3_c00205{bottom:272.130000px;}
.yc1_c00205{bottom:272.970000px;}
.ybb_c00205{bottom:289.245000px;}
.ybc_c00205{bottom:290.745000px;}
.yba_c00205{bottom:291.405000px;}
.ybe_c00205{bottom:291.825000px;}
.ybd_c00205{bottom:292.905000px;}
.yb8_c00205{bottom:307.905000px;}
.yb2_c00205{bottom:308.745000px;}
.yb4_c00205{bottom:310.245000px;}
.yb3_c00205{bottom:310.905000px;}
.yb7_c00205{bottom:311.130000px;}
.yb6_c00205{bottom:311.325000px;}
.yb9_c00205{bottom:311.970000px;}
.yb5_c00205{bottom:312.405000px;}
.yac_c00205{bottom:328.245000px;}
.yb0_c00205{bottom:328.470000px;}
.yae_c00205{bottom:328.680000px;}
.yb1_c00205{bottom:329.745000px;}
.yad_c00205{bottom:331.470000px;}
.yaf_c00205{bottom:331.905000px;}
.ya7_c00205{bottom:347.970000px;}
.yab_c00205{bottom:348.825000px;}
.ya4_c00205{bottom:349.245000px;}
.ya8_c00205{bottom:350.130000px;}
.yaa_c00205{bottom:350.325000px;}
.ya9_c00205{bottom:351.405000px;}
.ya5_c00205{bottom:351.420000px;}
.ya6_c00205{bottom:352.470000px;}
.ya0_c00205{bottom:368.745000px;}
.y9f_c00205{bottom:369.405000px;}
.ya2_c00205{bottom:369.825000px;}
.y9e_c00205{bottom:370.470000px;}
.ya1_c00205{bottom:370.905000px;}
.ya3_c00205{bottom:371.970000px;}
.y9d_c00205{bottom:388.245000px;}
.y9c_c00205{bottom:389.325000px;}
.y9a_c00205{bottom:390.405000px;}
.y9b_c00205{bottom:390.630000px;}
.y97_c00205{bottom:409.245000px;}
.y99_c00205{bottom:409.905000px;}
.y96_c00205{bottom:410.325000px;}
.y98_c00205{bottom:411.405000px;}
.y94_c00205{bottom:428.745000px;}
.y95_c00205{bottom:429.630000px;}
.y92_c00205{bottom:430.905000px;}
.y93_c00205{bottom:430.920000px;}
.y91_c00205{bottom:448.245000px;}
.y8f_c00205{bottom:450.405000px;}
.y90_c00205{bottom:450.420000px;}
.y8b_c00205{bottom:467.745000px;}
.y8d_c00205{bottom:468.825000px;}
.y8e_c00205{bottom:469.905000px;}
.y8c_c00205{bottom:469.920000px;}
.y89_c00205{bottom:487.245000px;}
.y88_c00205{bottom:488.130000px;}
.y87_c00205{bottom:489.405000px;}
.y8a_c00205{bottom:489.630000px;}
.y81_c00205{bottom:506.745000px;}
.y83_c00205{bottom:507.825000px;}
.y84_c00205{bottom:508.245000px;}
.y82_c00205{bottom:508.905000px;}
.y86_c00205{bottom:509.130000px;}
.y85_c00205{bottom:510.405000px;}
.y80_c00205{bottom:526.245000px;}
.y7c_c00205{bottom:526.680000px;}
.y7b_c00205{bottom:527.745000px;}
.y7f_c00205{bottom:528.825000px;}
.y7e_c00205{bottom:529.905000px;}
.y7d_c00205{bottom:529.920000px;}
.y7a_c00205{bottom:550.050000px;}
.y79_c00205{bottom:550.470000px;}
.y77_c00205{bottom:550.905000px;}
.y78_c00205{bottom:551.970000px;}
.y74_c00205{bottom:565.905000px;}
.y75_c00205{bottom:566.970000px;}
.y76_c00205{bottom:568.050000px;}
.y72_c00205{bottom:584.325000px;}
.y71_c00205{bottom:585.405000px;}
.y73_c00205{bottom:586.050000px;}
.y6e_c00205{bottom:608.745000px;}
.y70_c00205{bottom:609.825000px;}
.y6f_c00205{bottom:610.905000px;}
.y6c_c00205{bottom:644.745000px;}
.y6b_c00205{bottom:646.905000px;}
.y6d_c00205{bottom:647.130000px;}
.y6a_c00205{bottom:647.970000px;}
.y65_c00205{bottom:664.245000px;}
.y69_c00205{bottom:664.470000px;}
.y67_c00205{bottom:666.405000px;}
.y66_c00205{bottom:666.630000px;}
.y68_c00205{bottom:667.905000px;}
.y63_c00205{bottom:683.745000px;}
.y61_c00205{bottom:684.825000px;}
.y5f_c00205{bottom:685.905000px;}
.y62_c00205{bottom:686.130000px;}
.y60_c00205{bottom:686.970000px;}
.y64_c00205{bottom:687.405000px;}
.y5d_c00205{bottom:704.745000px;}
.y5c_c00205{bottom:705.405000px;}
.y5e_c00205{bottom:706.905000px;}
.y5b_c00205{bottom:723.180000px;}
.y57_c00205{bottom:723.825000px;}
.y5a_c00205{bottom:724.245000px;}
.y58_c00205{bottom:724.905000px;}
.y59_c00205{bottom:726.405000px;}
.y52_c00205{bottom:742.680000px;}
.y55_c00205{bottom:743.325000px;}
.y54_c00205{bottom:743.745000px;}
.y53_c00205{bottom:745.905000px;}
.y56_c00205{bottom:746.130000px;}
.y51_c00205{bottom:763.245000px;}
.y50_c00205{bottom:763.470000px;}
.y4c_c00205{bottom:764.325000px;}
.y4e_c00205{bottom:765.405000px;}
.y4d_c00205{bottom:765.630000px;}
.y4f_c00205{bottom:766.470000px;}
.y47_c00205{bottom:782.745000px;}
.y4b_c00205{bottom:784.245000px;}
.y48_c00205{bottom:784.905000px;}
.y4a_c00205{bottom:785.130000px;}
.y49_c00205{bottom:785.970000px;}
.y45_c00205{bottom:801.405000px;}
.y44_c00205{bottom:802.245000px;}
.y43_c00205{bottom:803.325000px;}
.y42_c00205{bottom:804.405000px;}
.y46_c00205{bottom:805.470000px;}
.y3f_c00205{bottom:820.905000px;}
.y41_c00205{bottom:822.180000px;}
.y3e_c00205{bottom:823.245000px;}
.y40_c00205{bottom:824.970000px;}
.y3d_c00205{bottom:825.405000px;}
.y3c_c00205{bottom:841.905000px;}
.y38_c00205{bottom:842.745000px;}
.y3a_c00205{bottom:843.630000px;}
.y3b_c00205{bottom:844.470000px;}
.y39_c00205{bottom:844.905000px;}
.y37_c00205{bottom:861.405000px;}
.y36_c00205{bottom:862.245000px;}
.y35_c00205{bottom:863.325000px;}
.y33_c00205{bottom:864.405000px;}
.y34_c00205{bottom:865.470000px;}
.y30_c00205{bottom:881.745000px;}
.y31_c00205{bottom:882.630000px;}
.y2f_c00205{bottom:883.470000px;}
.y2e_c00205{bottom:883.905000px;}
.y32_c00205{bottom:884.970000px;}
.y2d_c00205{bottom:901.245000px;}
.y2c_c00205{bottom:902.970000px;}
.y2b_c00205{bottom:903.405000px;}
.y2a_c00205{bottom:922.245000px;}
.y26_c00205{bottom:922.905000px;}
.y27_c00205{bottom:923.130000px;}
.y28_c00205{bottom:923.970000px;}
.y29_c00205{bottom:924.405000px;}
.y23_c00205{bottom:941.745000px;}
.y25_c00205{bottom:942.825000px;}
.y24_c00205{bottom:943.470000px;}
.y22_c00205{bottom:943.905000px;}
.y21_c00205{bottom:958.905000px;}
.y1f_c00205{bottom:961.245000px;}
.y1d_c00205{bottom:961.905000px;}
.y1c_c00205{bottom:962.130000px;}
.y20_c00205{bottom:962.970000px;}
.y1e_c00205{bottom:963.405000px;}
.y16_c00205{bottom:979.470000px;}
.y17_c00205{bottom:980.325000px;}
.y1b_c00205{bottom:980.745000px;}
.y1a_c00205{bottom:981.630000px;}
.y18_c00205{bottom:982.470000px;}
.y19_c00205{bottom:982.905000px;}
.y13_c00205{bottom:1000.245000px;}
.y14_c00205{bottom:1001.130000px;}
.y15_c00205{bottom:1001.325000px;}
.y12_c00205{bottom:1002.405000px;}
.ye_c00205{bottom:1017.405000px;}
.yf_c00205{bottom:1018.470000px;}
.yd_c00205{bottom:1019.745000px;}
.yc_c00205{bottom:1021.905000px;}
.y10_c00205{bottom:1022.130000px;}
.y11_c00205{bottom:1022.970000px;}
.y8_c00205{bottom:1039.245000px;}
.yb_c00205{bottom:1040.325000px;}
.ya_c00205{bottom:1041.405000px;}
.y7_c00205{bottom:1042.470000px;}
.y9_c00205{bottom:1046.775000px;}
.y4_c00205{bottom:1058.745000px;}
.y6_c00205{bottom:1058.970000px;}
.y5_c00205{bottom:1059.630000px;}
.y3_c00205{bottom:1060.905000px;}
.y1_c00205{bottom:1097.745000px;}
.y2_c00205{bottom:1099.050000px;}
.h9_c00205{height:4.206533px;}
.h6_c00205{height:14.612168px;}
.h4_c00205{height:23.025234px;}
.h2_c00205{height:25.091602px;}
.h5_c00205{height:31.364502px;}
.h3_c00205{height:35.571035px;}
.h7_c00205{height:39.777568px;}
.ha_c00205{height:41.571035px;}
.h1_c00205{height:43.910303px;}
.h8_c00205{height:48.116836px;}
.h0_c00205{height:1335.000000px;}
.w0_c00205{width:880.500000px;}
.x0_c00205{left:0.000000px;}
.x11_c00205{left:151.080000px;}
.x1_c00205{left:152.775000px;}
.xa5_c00205{left:154.080000px;}
.xd5_c00205{left:166.500000px;}
.x29_c00205{left:168.000000px;}
.x5a_c00205{left:169.500000px;}
.x106_c00205{left:171.000000px;}
.x3f_c00205{left:174.420000px;}
.xa6_c00205{left:178.920000px;}
.xda_c00205{left:181.080000px;}
.xb9_c00205{left:182.580000px;}
.x73_c00205{left:185.580000px;}
.x35_c00205{left:189.000000px;}
.xc0_c00205{left:192.420000px;}
.x12_c00205{left:193.500000px;}
.x3_c00205{left:195.420000px;}
.xf2_c00205{left:198.000000px;}
.x2a_c00205{left:199.920000px;}
.x5b_c00205{left:202.080000px;}
.x63_c00205{left:204.000000px;}
.x74_c00205{left:205.500000px;}
.x8a_c00205{left:208.500000px;}
.xc9_c00205{left:210.000000px;}
.x13_c00205{left:211.500000px;}
.xd6_c00205{left:214.500000px;}
.x92_c00205{left:217.920000px;}
.x1e_c00205{left:219.420000px;}
.x64_c00205{left:220.500000px;}
.xb0_c00205{left:221.580000px;}
.x40_c00205{left:223.500000px;}
.x54_c00205{left:225.420000px;}
.x107_c00205{left:226.500000px;}
.x100_c00205{left:228.000000px;}
.x80_c00205{left:229.500000px;}
.x98_c00205{left:230.580000px;}
.x14_c00205{left:232.920000px;}
.xdf_c00205{left:234.000000px;}
.x75_c00205{left:235.500000px;}
.xfc_c00205{left:238.500000px;}
.x41_c00205{left:243.000000px;}
.x65_c00205{left:247.500000px;}
.xa7_c00205{left:250.080000px;}
.xba_c00205{left:252.000000px;}
.xc1_c00205{left:255.000000px;}
.xf7_c00205{left:256.500000px;}
.xe6_c00205{left:259.500000px;}
.x42_c00205{left:261.000000px;}
.x55_c00205{left:262.080000px;}
.x2b_c00205{left:263.580000px;}
.x4_c00205{left:265.920000px;}
.xdb_c00205{left:268.500000px;}
.x99_c00205{left:271.080000px;}
.xe4_c00205{left:273.000000px;}
.x5c_c00205{left:274.500000px;}
.xeb_c00205{left:277.080000px;}
.x1f_c00205{left:278.580000px;}
.xe7_c00205{left:280.500000px;}
.x2c_c00205{left:282.000000px;}
.xc2_c00205{left:283.920000px;}
.x5_c00205{left:285.420000px;}
.x66_c00205{left:288.000000px;}
.xdc_c00205{left:289.500000px;}
.x15_c00205{left:291.420000px;}
.x43_c00205{left:292.500000px;}
.xbb_c00205{left:294.000000px;}
.x8b_c00205{left:296.580000px;}
.xd7_c00205{left:298.500000px;}
.x76_c00205{left:299.580000px;}
.x9e_c00205{left:301.920000px;}
.x81_c00205{left:304.500000px;}
.x67_c00205{left:307.920000px;}
.xe8_c00205{left:309.420000px;}
.xa8_c00205{left:311.580000px;}
.xd0_c00205{left:313.080000px;}
.xca_c00205{left:315.000000px;}
.x4d_c00205{left:316.080000px;}
.x6_c00205{left:319.080000px;}
.x56_c00205{left:322.500000px;}
.x9f_c00205{left:324.000000px;}
.xb1_c00205{left:327.000000px;}
.x20_c00205{left:328.920000px;}
.x77_c00205{left:331.080000px;}
.x9a_c00205{left:334.500000px;}
.x4e_c00205{left:336.420000px;}
.xe5_c00205{left:337.500000px;}
.x5d_c00205{left:338.580000px;}
.x68_c00205{left:340.500000px;}
.x7_c00205{left:342.420000px;}
.xa0_c00205{left:343.500000px;}
.xb2_c00205{left:345.000000px;}
.xc3_c00205{left:348.000000px;}
.x93_c00205{left:349.920000px;}
.x82_c00205{left:351.000000px;}
.x36_c00205{left:352.500000px;}
.x69_c00205{left:354.420000px;}
.xa1_c00205{left:355.920000px;}
.xc4_c00205{left:358.500000px;}
.x5e_c00205{left:360.000000px;}
.xe0_c00205{left:362.580000px;}
.x4f_c00205{left:364.920000px;}
.x83_c00205{left:367.920000px;}
.x8_c00205{left:369.645000px;}
.xb3_c00205{left:370.920000px;}
.x44_c00205{left:373.920000px;}
.xbc_c00205{left:376.500000px;}
.xe9_c00205{left:377.580000px;}
.xc5_c00205{left:379.920000px;}
.xdd_c00205{left:381.420000px;}
.x78_c00205{left:382.920000px;}
.x16_c00205{left:384.000000px;}
.x108_c00205{left:385.500000px;}
.xd8_c00205{left:390.000000px;}
.x101_c00205{left:393.420000px;}
.x84_c00205{left:394.500000px;}
.xe1_c00205{left:395.580000px;}
.x21_c00205{left:397.920000px;}
.x2_c00205{left:399.000000px;}
.x5f_c00205{left:400.080000px;}
.x6a_c00205{left:405.000000px;}
.xec_c00205{left:406.500000px;}
.x17_c00205{left:408.000000px;}
.x45_c00205{left:409.920000px;}
.x8c_c00205{left:411.420000px;}
.xa2_c00205{left:412.500000px;}
.x9_c00205{left:415.920000px;}
.xfd_c00205{left:419.580000px;}
.x102_c00205{left:421.500000px;}
.x57_c00205{left:422.580000px;}
.xf8_c00205{left:424.500000px;}
.xcd_c00205{left:426.000000px;}
.x94_c00205{left:427.080000px;}
.x18_c00205{left:429.000000px;}
.x50_c00205{left:432.000000px;}
.xe2_c00205{left:433.500000px;}
.xce_c00205{left:436.500000px;}
.xb4_c00205{left:437.580000px;}
.x58_c00205{left:439.920000px;}
.x8d_c00205{left:441.000000px;}
.xa_c00205{left:442.080000px;}
.x22_c00205{left:444.000000px;}
.x2d_c00205{left:446.580000px;}
.x79_c00205{left:451.500000px;}
.x46_c00205{left:452.580000px;}
.x37_c00205{left:455.580000px;}
.x6b_c00205{left:457.920000px;}
.xa9_c00205{left:459.000000px;}
.x60_c00205{left:460.080000px;}
.xc6_c00205{left:462.000000px;}
.x59_c00205{left:465.000000px;}
.xcf_c00205{left:466.500000px;}
.xb5_c00205{left:468.420000px;}
.x8e_c00205{left:470.580000px;}
.x7a_c00205{left:472.500000px;}
.xaa_c00205{left:475.080000px;}
.x23_c00205{left:478.920000px;}
.xd1_c00205{left:480.000000px;}
.x6c_c00205{left:483.420000px;}
.x38_c00205{left:485.580000px;}
.xd3_c00205{left:487.920000px;}
.x85_c00205{left:490.080000px;}
.x8f_c00205{left:492.000000px;}
.xab_c00205{left:493.920000px;}
.xb6_c00205{left:496.920000px;}
.x2e_c00205{left:499.080000px;}
.x7b_c00205{left:501.000000px;}
.x47_c00205{left:502.500000px;}
.xb_c00205{left:507.000000px;}
.xa3_c00205{left:508.500000px;}
.x51_c00205{left:513.000000px;}
.x24_c00205{left:514.500000px;}
.xc7_c00205{left:516.420000px;}
.x39_c00205{left:517.920000px;}
.x19_c00205{left:519.000000px;}
.xac_c00205{left:522.420000px;}
.xb7_c00205{left:524.580000px;}
.x103_c00205{left:526.920000px;}
.xf3_c00205{left:530.580000px;}
.x2f_c00205{left:532.275000px;}
.x48_c00205{left:533.580000px;}
.xf9_c00205{left:537.000000px;}
.x25_c00205{left:538.080000px;}
.xd2_c00205{left:541.275000px;}
.xfe_c00205{left:544.500000px;}
.x95_c00205{left:546.000000px;}
.xde_c00205{left:547.920000px;}
.x6d_c00205{left:550.500000px;}
.xef_c00205{left:551.580000px;}
.xc_c00205{left:553.920000px;}
.xb8_c00205{left:555.420000px;}
.x3a_c00205{left:557.580000px;}
.xf4_c00205{left:559.920000px;}
.xad_c00205{left:561.000000px;}
.x104_c00205{left:562.080000px;}
.x7c_c00205{left:563.580000px;}
.xea_c00205{left:565.080000px;}
.x90_c00205{left:568.080000px;}
.x6e_c00205{left:570.420000px;}
.x86_c00205{left:571.920000px;}
.x10c_c00205{left:574.500000px;}
.xbd_c00205{left:576.000000px;}
.x3b_c00205{left:577.920000px;}
.x1a_c00205{left:582.000000px;}
.x30_c00205{left:583.500000px;}
.xd4_c00205{left:584.580000px;}
.xf0_c00205{left:586.275000px;}
.x9b_c00205{left:588.000000px;}
.xd_c00205{left:589.500000px;}
.x10b_c00205{left:591.000000px;}
.x49_c00205{left:592.080000px;}
.x26_c00205{left:594.000000px;}
.x6f_c00205{left:595.920000px;}
.xfa_c00205{left:597.420000px;}
.xbe_c00205{left:601.080000px;}
.x3c_c00205{left:604.500000px;}
.x31_c00205{left:605.580000px;}
.xe_c00205{left:607.920000px;}
.x87_c00205{left:609.000000px;}
.x1b_c00205{left:610.500000px;}
.x52_c00205{left:612.000000px;}
.x7d_c00205{left:613.500000px;}
.x9c_c00205{left:615.000000px;}
.xf5_c00205{left:618.000000px;}
.x91_c00205{left:619.500000px;}
.x96_c00205{left:621.000000px;}
.xff_c00205{left:624.000000px;}
.xf1_c00205{left:627.000000px;}
.x70_c00205{left:630.000000px;}
.x27_c00205{left:631.920000px;}
.xa4_c00205{left:633.000000px;}
.xf_c00205{left:634.080000px;}
.xcb_c00205{left:636.420000px;}
.x4a_c00205{left:639.000000px;}
.xf6_c00205{left:640.920000px;}
.x3d_c00205{left:642.000000px;}
.x105_c00205{left:643.500000px;}
.xd9_c00205{left:644.580000px;}
.x32_c00205{left:646.500000px;}
.xed_c00205{left:648.000000px;}
.x61_c00205{left:652.080000px;}
.x88_c00205{left:655.500000px;}
.x1c_c00205{left:656.580000px;}
.x7e_c00205{left:659.580000px;}
.xbf_c00205{left:663.000000px;}
.x10d_c00205{left:664.500000px;}
.x28_c00205{left:666.000000px;}
.x9d_c00205{left:667.920000px;}
.x3e_c00205{left:669.000000px;}
.x53_c00205{left:670.500000px;}
.x4b_c00205{left:673.920000px;}
.x109_c00205{left:675.420000px;}
.x71_c00205{left:677.580000px;}
.xe3_c00205{left:682.080000px;}
.x62_c00205{left:684.000000px;}
.xee_c00205{left:685.920000px;}
.xfb_c00205{left:688.500000px;}
.xae_c00205{left:690.000000px;}
.x1d_c00205{left:691.500000px;}
.x7f_c00205{left:693.000000px;}
.x97_c00205{left:697.920000px;}
.xcc_c00205{left:699.000000px;}
.x33_c00205{left:700.500000px;}
.x10_c00205{left:703.500000px;}
.x10e_c00205{left:704.580000px;}
.x72_c00205{left:708.420000px;}
.xaf_c00205{left:709.500000px;}
.x4c_c00205{left:712.500000px;}
.x10a_c00205{left:714.000000px;}
.x34_c00205{left:715.500000px;}
.x89_c00205{left:717.000000px;}
.xc8_c00205{left:720.000000px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.v1_c00205{vertical-align:5.333333pt;}
.ls0_c00205{letter-spacing:0.000000pt;}
.ws1_c00205{word-spacing:-2.132373pt;}
.ws0_c00205{word-spacing:-1.848392pt;}
.ws2_c00205{word-spacing:0.000000pt;}
.fs8_c00205{font-size:3.040000pt;}
.fs5_c00205{font-size:10.560000pt;}
.fs3_c00205{font-size:16.640000pt;}
.fs1_c00205{font-size:18.133333pt;}
.fs4_c00205{font-size:22.666667pt;}
.fs2_c00205{font-size:25.706667pt;}
.fs6_c00205{font-size:28.746667pt;}
.fs0_c00205{font-size:31.733333pt;}
.fs7_c00205{font-size:34.773333pt;}
.y0_c00205{bottom:0.000000pt;}
.yc8_c00205{bottom:222.440000pt;}
.yc6_c00205{bottom:223.400000pt;}
.yc7_c00205{bottom:224.360000pt;}
.yca_c00205{bottom:224.560000pt;}
.yc9_c00205{bottom:225.306667pt;}
.yc0_c00205{bottom:239.773333pt;}
.ybf_c00205{bottom:240.360000pt;}
.yc5_c00205{bottom:240.733333pt;}
.yc4_c00205{bottom:241.306667pt;}
.yc2_c00205{bottom:241.693333pt;}
.yc3_c00205{bottom:241.893333pt;}
.yc1_c00205{bottom:242.640000pt;}
.ybb_c00205{bottom:257.106667pt;}
.ybc_c00205{bottom:258.440000pt;}
.yba_c00205{bottom:259.026667pt;}
.ybe_c00205{bottom:259.400000pt;}
.ybd_c00205{bottom:260.360000pt;}
.yb8_c00205{bottom:273.693333pt;}
.yb2_c00205{bottom:274.440000pt;}
.yb4_c00205{bottom:275.773333pt;}
.yb3_c00205{bottom:276.360000pt;}
.yb7_c00205{bottom:276.560000pt;}
.yb6_c00205{bottom:276.733333pt;}
.yb9_c00205{bottom:277.306667pt;}
.yb5_c00205{bottom:277.693333pt;}
.yac_c00205{bottom:291.773333pt;}
.yb0_c00205{bottom:291.973333pt;}
.yae_c00205{bottom:292.160000pt;}
.yb1_c00205{bottom:293.106667pt;}
.yad_c00205{bottom:294.640000pt;}
.yaf_c00205{bottom:295.026667pt;}
.ya7_c00205{bottom:309.306667pt;}
.yab_c00205{bottom:310.066667pt;}
.ya4_c00205{bottom:310.440000pt;}
.ya8_c00205{bottom:311.226667pt;}
.yaa_c00205{bottom:311.400000pt;}
.ya9_c00205{bottom:312.360000pt;}
.ya5_c00205{bottom:312.373333pt;}
.ya6_c00205{bottom:313.306667pt;}
.ya0_c00205{bottom:327.773333pt;}
.y9f_c00205{bottom:328.360000pt;}
.ya2_c00205{bottom:328.733333pt;}
.y9e_c00205{bottom:329.306667pt;}
.ya1_c00205{bottom:329.693333pt;}
.ya3_c00205{bottom:330.640000pt;}
.y9d_c00205{bottom:345.106667pt;}
.y9c_c00205{bottom:346.066667pt;}
.y9a_c00205{bottom:347.026667pt;}
.y9b_c00205{bottom:347.226667pt;}
.y97_c00205{bottom:363.773333pt;}
.y99_c00205{bottom:364.360000pt;}
.y96_c00205{bottom:364.733333pt;}
.y98_c00205{bottom:365.693333pt;}
.y94_c00205{bottom:381.106667pt;}
.y95_c00205{bottom:381.893333pt;}
.y92_c00205{bottom:383.026667pt;}
.y93_c00205{bottom:383.040000pt;}
.y91_c00205{bottom:398.440000pt;}
.y8f_c00205{bottom:400.360000pt;}
.y90_c00205{bottom:400.373333pt;}
.y8b_c00205{bottom:415.773333pt;}
.y8d_c00205{bottom:416.733333pt;}
.y8e_c00205{bottom:417.693333pt;}
.y8c_c00205{bottom:417.706667pt;}
.y89_c00205{bottom:433.106667pt;}
.y88_c00205{bottom:433.893333pt;}
.y87_c00205{bottom:435.026667pt;}
.y8a_c00205{bottom:435.226667pt;}
.y81_c00205{bottom:450.440000pt;}
.y83_c00205{bottom:451.400000pt;}
.y84_c00205{bottom:451.773333pt;}
.y82_c00205{bottom:452.360000pt;}
.y86_c00205{bottom:452.560000pt;}
.y85_c00205{bottom:453.693333pt;}
.y80_c00205{bottom:467.773333pt;}
.y7c_c00205{bottom:468.160000pt;}
.y7b_c00205{bottom:469.106667pt;}
.y7f_c00205{bottom:470.066667pt;}
.y7e_c00205{bottom:471.026667pt;}
.y7d_c00205{bottom:471.040000pt;}
.y7a_c00205{bottom:488.933333pt;}
.y79_c00205{bottom:489.306667pt;}
.y77_c00205{bottom:489.693333pt;}
.y78_c00205{bottom:490.640000pt;}
.y74_c00205{bottom:503.026667pt;}
.y75_c00205{bottom:503.973333pt;}
.y76_c00205{bottom:504.933333pt;}
.y72_c00205{bottom:519.400000pt;}
.y71_c00205{bottom:520.360000pt;}
.y73_c00205{bottom:520.933333pt;}
.y6e_c00205{bottom:541.106667pt;}
.y70_c00205{bottom:542.066667pt;}
.y6f_c00205{bottom:543.026667pt;}
.y6c_c00205{bottom:573.106667pt;}
.y6b_c00205{bottom:575.026667pt;}
.y6d_c00205{bottom:575.226667pt;}
.y6a_c00205{bottom:575.973333pt;}
.y65_c00205{bottom:590.440000pt;}
.y69_c00205{bottom:590.640000pt;}
.y67_c00205{bottom:592.360000pt;}
.y66_c00205{bottom:592.560000pt;}
.y68_c00205{bottom:593.693333pt;}
.y63_c00205{bottom:607.773333pt;}
.y61_c00205{bottom:608.733333pt;}
.y5f_c00205{bottom:609.693333pt;}
.y62_c00205{bottom:609.893333pt;}
.y60_c00205{bottom:610.640000pt;}
.y64_c00205{bottom:611.026667pt;}
.y5d_c00205{bottom:626.440000pt;}
.y5c_c00205{bottom:627.026667pt;}
.y5e_c00205{bottom:628.360000pt;}
.y5b_c00205{bottom:642.826667pt;}
.y57_c00205{bottom:643.400000pt;}
.y5a_c00205{bottom:643.773333pt;}
.y58_c00205{bottom:644.360000pt;}
.y59_c00205{bottom:645.693333pt;}
.y52_c00205{bottom:660.160000pt;}
.y55_c00205{bottom:660.733333pt;}
.y54_c00205{bottom:661.106667pt;}
.y53_c00205{bottom:663.026667pt;}
.y56_c00205{bottom:663.226667pt;}
.y51_c00205{bottom:678.440000pt;}
.y50_c00205{bottom:678.640000pt;}
.y4c_c00205{bottom:679.400000pt;}
.y4e_c00205{bottom:680.360000pt;}
.y4d_c00205{bottom:680.560000pt;}
.y4f_c00205{bottom:681.306667pt;}
.y47_c00205{bottom:695.773333pt;}
.y4b_c00205{bottom:697.106667pt;}
.y48_c00205{bottom:697.693333pt;}
.y4a_c00205{bottom:697.893333pt;}
.y49_c00205{bottom:698.640000pt;}
.y45_c00205{bottom:712.360000pt;}
.y44_c00205{bottom:713.106667pt;}
.y43_c00205{bottom:714.066667pt;}
.y42_c00205{bottom:715.026667pt;}
.y46_c00205{bottom:715.973333pt;}
.y3f_c00205{bottom:729.693333pt;}
.y41_c00205{bottom:730.826667pt;}
.y3e_c00205{bottom:731.773333pt;}
.y40_c00205{bottom:733.306667pt;}
.y3d_c00205{bottom:733.693333pt;}
.y3c_c00205{bottom:748.360000pt;}
.y38_c00205{bottom:749.106667pt;}
.y3a_c00205{bottom:749.893333pt;}
.y3b_c00205{bottom:750.640000pt;}
.y39_c00205{bottom:751.026667pt;}
.y37_c00205{bottom:765.693333pt;}
.y36_c00205{bottom:766.440000pt;}
.y35_c00205{bottom:767.400000pt;}
.y33_c00205{bottom:768.360000pt;}
.y34_c00205{bottom:769.306667pt;}
.y30_c00205{bottom:783.773333pt;}
.y31_c00205{bottom:784.560000pt;}
.y2f_c00205{bottom:785.306667pt;}
.y2e_c00205{bottom:785.693333pt;}
.y32_c00205{bottom:786.640000pt;}
.y2d_c00205{bottom:801.106667pt;}
.y2c_c00205{bottom:802.640000pt;}
.y2b_c00205{bottom:803.026667pt;}
.y2a_c00205{bottom:819.773333pt;}
.y26_c00205{bottom:820.360000pt;}
.y27_c00205{bottom:820.560000pt;}
.y28_c00205{bottom:821.306667pt;}
.y29_c00205{bottom:821.693333pt;}
.y23_c00205{bottom:837.106667pt;}
.y25_c00205{bottom:838.066667pt;}
.y24_c00205{bottom:838.640000pt;}
.y22_c00205{bottom:839.026667pt;}
.y21_c00205{bottom:852.360000pt;}
.y1f_c00205{bottom:854.440000pt;}
.y1d_c00205{bottom:855.026667pt;}
.y1c_c00205{bottom:855.226667pt;}
.y20_c00205{bottom:855.973333pt;}
.y1e_c00205{bottom:856.360000pt;}
.y16_c00205{bottom:870.640000pt;}
.y17_c00205{bottom:871.400000pt;}
.y1b_c00205{bottom:871.773333pt;}
.y1a_c00205{bottom:872.560000pt;}
.y18_c00205{bottom:873.306667pt;}
.y19_c00205{bottom:873.693333pt;}
.y13_c00205{bottom:889.106667pt;}
.y14_c00205{bottom:889.893333pt;}
.y15_c00205{bottom:890.066667pt;}
.y12_c00205{bottom:891.026667pt;}
.ye_c00205{bottom:904.360000pt;}
.yf_c00205{bottom:905.306667pt;}
.yd_c00205{bottom:906.440000pt;}
.yc_c00205{bottom:908.360000pt;}
.y10_c00205{bottom:908.560000pt;}
.y11_c00205{bottom:909.306667pt;}
.y8_c00205{bottom:923.773333pt;}
.yb_c00205{bottom:924.733333pt;}
.ya_c00205{bottom:925.693333pt;}
.y7_c00205{bottom:926.640000pt;}
.y9_c00205{bottom:930.466667pt;}
.y4_c00205{bottom:941.106667pt;}
.y6_c00205{bottom:941.306667pt;}
.y5_c00205{bottom:941.893333pt;}
.y3_c00205{bottom:943.026667pt;}
.y1_c00205{bottom:975.773333pt;}
.y2_c00205{bottom:976.933333pt;}
.h9_c00205{height:3.739141pt;}
.h6_c00205{height:12.988594pt;}
.h4_c00205{height:20.466875pt;}
.h2_c00205{height:22.303646pt;}
.h5_c00205{height:27.879557pt;}
.h3_c00205{height:31.618698pt;}
.h7_c00205{height:35.357839pt;}
.ha_c00205{height:36.952031pt;}
.h1_c00205{height:39.031380pt;}
.h8_c00205{height:42.770521pt;}
.h0_c00205{height:1186.666667pt;}
.w0_c00205{width:782.666667pt;}
.x0_c00205{left:0.000000pt;}
.x11_c00205{left:134.293333pt;}
.x1_c00205{left:135.800000pt;}
.xa5_c00205{left:136.960000pt;}
.xd5_c00205{left:148.000000pt;}
.x29_c00205{left:149.333333pt;}
.x5a_c00205{left:150.666667pt;}
.x106_c00205{left:152.000000pt;}
.x3f_c00205{left:155.040000pt;}
.xa6_c00205{left:159.040000pt;}
.xda_c00205{left:160.960000pt;}
.xb9_c00205{left:162.293333pt;}
.x73_c00205{left:164.960000pt;}
.x35_c00205{left:168.000000pt;}
.xc0_c00205{left:171.040000pt;}
.x12_c00205{left:172.000000pt;}
.x3_c00205{left:173.706667pt;}
.xf2_c00205{left:176.000000pt;}
.x2a_c00205{left:177.706667pt;}
.x5b_c00205{left:179.626667pt;}
.x63_c00205{left:181.333333pt;}
.x74_c00205{left:182.666667pt;}
.x8a_c00205{left:185.333333pt;}
.xc9_c00205{left:186.666667pt;}
.x13_c00205{left:188.000000pt;}
.xd6_c00205{left:190.666667pt;}
.x92_c00205{left:193.706667pt;}
.x1e_c00205{left:195.040000pt;}
.x64_c00205{left:196.000000pt;}
.xb0_c00205{left:196.960000pt;}
.x40_c00205{left:198.666667pt;}
.x54_c00205{left:200.373333pt;}
.x107_c00205{left:201.333333pt;}
.x100_c00205{left:202.666667pt;}
.x80_c00205{left:204.000000pt;}
.x98_c00205{left:204.960000pt;}
.x14_c00205{left:207.040000pt;}
.xdf_c00205{left:208.000000pt;}
.x75_c00205{left:209.333333pt;}
.xfc_c00205{left:212.000000pt;}
.x41_c00205{left:216.000000pt;}
.x65_c00205{left:220.000000pt;}
.xa7_c00205{left:222.293333pt;}
.xba_c00205{left:224.000000pt;}
.xc1_c00205{left:226.666667pt;}
.xf7_c00205{left:228.000000pt;}
.xe6_c00205{left:230.666667pt;}
.x42_c00205{left:232.000000pt;}
.x55_c00205{left:232.960000pt;}
.x2b_c00205{left:234.293333pt;}
.x4_c00205{left:236.373333pt;}
.xdb_c00205{left:238.666667pt;}
.x99_c00205{left:240.960000pt;}
.xe4_c00205{left:242.666667pt;}
.x5c_c00205{left:244.000000pt;}
.xeb_c00205{left:246.293333pt;}
.x1f_c00205{left:247.626667pt;}
.xe7_c00205{left:249.333333pt;}
.x2c_c00205{left:250.666667pt;}
.xc2_c00205{left:252.373333pt;}
.x5_c00205{left:253.706667pt;}
.x66_c00205{left:256.000000pt;}
.xdc_c00205{left:257.333333pt;}
.x15_c00205{left:259.040000pt;}
.x43_c00205{left:260.000000pt;}
.xbb_c00205{left:261.333333pt;}
.x8b_c00205{left:263.626667pt;}
.xd7_c00205{left:265.333333pt;}
.x76_c00205{left:266.293333pt;}
.x9e_c00205{left:268.373333pt;}
.x81_c00205{left:270.666667pt;}
.x67_c00205{left:273.706667pt;}
.xe8_c00205{left:275.040000pt;}
.xa8_c00205{left:276.960000pt;}
.xd0_c00205{left:278.293333pt;}
.xca_c00205{left:280.000000pt;}
.x4d_c00205{left:280.960000pt;}
.x6_c00205{left:283.626667pt;}
.x56_c00205{left:286.666667pt;}
.x9f_c00205{left:288.000000pt;}
.xb1_c00205{left:290.666667pt;}
.x20_c00205{left:292.373333pt;}
.x77_c00205{left:294.293333pt;}
.x9a_c00205{left:297.333333pt;}
.x4e_c00205{left:299.040000pt;}
.xe5_c00205{left:300.000000pt;}
.x5d_c00205{left:300.960000pt;}
.x68_c00205{left:302.666667pt;}
.x7_c00205{left:304.373333pt;}
.xa0_c00205{left:305.333333pt;}
.xb2_c00205{left:306.666667pt;}
.xc3_c00205{left:309.333333pt;}
.x93_c00205{left:311.040000pt;}
.x82_c00205{left:312.000000pt;}
.x36_c00205{left:313.333333pt;}
.x69_c00205{left:315.040000pt;}
.xa1_c00205{left:316.373333pt;}
.xc4_c00205{left:318.666667pt;}
.x5e_c00205{left:320.000000pt;}
.xe0_c00205{left:322.293333pt;}
.x4f_c00205{left:324.373333pt;}
.x83_c00205{left:327.040000pt;}
.x8_c00205{left:328.573333pt;}
.xb3_c00205{left:329.706667pt;}
.x44_c00205{left:332.373333pt;}
.xbc_c00205{left:334.666667pt;}
.xe9_c00205{left:335.626667pt;}
.xc5_c00205{left:337.706667pt;}
.xdd_c00205{left:339.040000pt;}
.x78_c00205{left:340.373333pt;}
.x16_c00205{left:341.333333pt;}
.x108_c00205{left:342.666667pt;}
.xd8_c00205{left:346.666667pt;}
.x101_c00205{left:349.706667pt;}
.x84_c00205{left:350.666667pt;}
.xe1_c00205{left:351.626667pt;}
.x21_c00205{left:353.706667pt;}
.x2_c00205{left:354.666667pt;}
.x5f_c00205{left:355.626667pt;}
.x6a_c00205{left:360.000000pt;}
.xec_c00205{left:361.333333pt;}
.x17_c00205{left:362.666667pt;}
.x45_c00205{left:364.373333pt;}
.x8c_c00205{left:365.706667pt;}
.xa2_c00205{left:366.666667pt;}
.x9_c00205{left:369.706667pt;}
.xfd_c00205{left:372.960000pt;}
.x102_c00205{left:374.666667pt;}
.x57_c00205{left:375.626667pt;}
.xf8_c00205{left:377.333333pt;}
.xcd_c00205{left:378.666667pt;}
.x94_c00205{left:379.626667pt;}
.x18_c00205{left:381.333333pt;}
.x50_c00205{left:384.000000pt;}
.xe2_c00205{left:385.333333pt;}
.xce_c00205{left:388.000000pt;}
.xb4_c00205{left:388.960000pt;}
.x58_c00205{left:391.040000pt;}
.x8d_c00205{left:392.000000pt;}
.xa_c00205{left:392.960000pt;}
.x22_c00205{left:394.666667pt;}
.x2d_c00205{left:396.960000pt;}
.x79_c00205{left:401.333333pt;}
.x46_c00205{left:402.293333pt;}
.x37_c00205{left:404.960000pt;}
.x6b_c00205{left:407.040000pt;}
.xa9_c00205{left:408.000000pt;}
.x60_c00205{left:408.960000pt;}
.xc6_c00205{left:410.666667pt;}
.x59_c00205{left:413.333333pt;}
.xcf_c00205{left:414.666667pt;}
.xb5_c00205{left:416.373333pt;}
.x8e_c00205{left:418.293333pt;}
.x7a_c00205{left:420.000000pt;}
.xaa_c00205{left:422.293333pt;}
.x23_c00205{left:425.706667pt;}
.xd1_c00205{left:426.666667pt;}
.x6c_c00205{left:429.706667pt;}
.x38_c00205{left:431.626667pt;}
.xd3_c00205{left:433.706667pt;}
.x85_c00205{left:435.626667pt;}
.x8f_c00205{left:437.333333pt;}
.xab_c00205{left:439.040000pt;}
.xb6_c00205{left:441.706667pt;}
.x2e_c00205{left:443.626667pt;}
.x7b_c00205{left:445.333333pt;}
.x47_c00205{left:446.666667pt;}
.xb_c00205{left:450.666667pt;}
.xa3_c00205{left:452.000000pt;}
.x51_c00205{left:456.000000pt;}
.x24_c00205{left:457.333333pt;}
.xc7_c00205{left:459.040000pt;}
.x39_c00205{left:460.373333pt;}
.x19_c00205{left:461.333333pt;}
.xac_c00205{left:464.373333pt;}
.xb7_c00205{left:466.293333pt;}
.x103_c00205{left:468.373333pt;}
.xf3_c00205{left:471.626667pt;}
.x2f_c00205{left:473.133333pt;}
.x48_c00205{left:474.293333pt;}
.xf9_c00205{left:477.333333pt;}
.x25_c00205{left:478.293333pt;}
.xd2_c00205{left:481.133333pt;}
.xfe_c00205{left:484.000000pt;}
.x95_c00205{left:485.333333pt;}
.xde_c00205{left:487.040000pt;}
.x6d_c00205{left:489.333333pt;}
.xef_c00205{left:490.293333pt;}
.xc_c00205{left:492.373333pt;}
.xb8_c00205{left:493.706667pt;}
.x3a_c00205{left:495.626667pt;}
.xf4_c00205{left:497.706667pt;}
.xad_c00205{left:498.666667pt;}
.x104_c00205{left:499.626667pt;}
.x7c_c00205{left:500.960000pt;}
.xea_c00205{left:502.293333pt;}
.x90_c00205{left:504.960000pt;}
.x6e_c00205{left:507.040000pt;}
.x86_c00205{left:508.373333pt;}
.x10c_c00205{left:510.666667pt;}
.xbd_c00205{left:512.000000pt;}
.x3b_c00205{left:513.706667pt;}
.x1a_c00205{left:517.333333pt;}
.x30_c00205{left:518.666667pt;}
.xd4_c00205{left:519.626667pt;}
.xf0_c00205{left:521.133333pt;}
.x9b_c00205{left:522.666667pt;}
.xd_c00205{left:524.000000pt;}
.x10b_c00205{left:525.333333pt;}
.x49_c00205{left:526.293333pt;}
.x26_c00205{left:528.000000pt;}
.x6f_c00205{left:529.706667pt;}
.xfa_c00205{left:531.040000pt;}
.xbe_c00205{left:534.293333pt;}
.x3c_c00205{left:537.333333pt;}
.x31_c00205{left:538.293333pt;}
.xe_c00205{left:540.373333pt;}
.x87_c00205{left:541.333333pt;}
.x1b_c00205{left:542.666667pt;}
.x52_c00205{left:544.000000pt;}
.x7d_c00205{left:545.333333pt;}
.x9c_c00205{left:546.666667pt;}
.xf5_c00205{left:549.333333pt;}
.x91_c00205{left:550.666667pt;}
.x96_c00205{left:552.000000pt;}
.xff_c00205{left:554.666667pt;}
.xf1_c00205{left:557.333333pt;}
.x70_c00205{left:560.000000pt;}
.x27_c00205{left:561.706667pt;}
.xa4_c00205{left:562.666667pt;}
.xf_c00205{left:563.626667pt;}
.xcb_c00205{left:565.706667pt;}
.x4a_c00205{left:568.000000pt;}
.xf6_c00205{left:569.706667pt;}
.x3d_c00205{left:570.666667pt;}
.x105_c00205{left:572.000000pt;}
.xd9_c00205{left:572.960000pt;}
.x32_c00205{left:574.666667pt;}
.xed_c00205{left:576.000000pt;}
.x61_c00205{left:579.626667pt;}
.x88_c00205{left:582.666667pt;}
.x1c_c00205{left:583.626667pt;}
.x7e_c00205{left:586.293333pt;}
.xbf_c00205{left:589.333333pt;}
.x10d_c00205{left:590.666667pt;}
.x28_c00205{left:592.000000pt;}
.x9d_c00205{left:593.706667pt;}
.x3e_c00205{left:594.666667pt;}
.x53_c00205{left:596.000000pt;}
.x4b_c00205{left:599.040000pt;}
.x109_c00205{left:600.373333pt;}
.x71_c00205{left:602.293333pt;}
.xe3_c00205{left:606.293333pt;}
.x62_c00205{left:608.000000pt;}
.xee_c00205{left:609.706667pt;}
.xfb_c00205{left:612.000000pt;}
.xae_c00205{left:613.333333pt;}
.x1d_c00205{left:614.666667pt;}
.x7f_c00205{left:616.000000pt;}
.x97_c00205{left:620.373333pt;}
.xcc_c00205{left:621.333333pt;}
.x33_c00205{left:622.666667pt;}
.x10_c00205{left:625.333333pt;}
.x10e_c00205{left:626.293333pt;}
.x72_c00205{left:629.706667pt;}
.xaf_c00205{left:630.666667pt;}
.x4c_c00205{left:633.333333pt;}
.x10a_c00205{left:634.666667pt;}
.x34_c00205{left:636.000000pt;}
.x89_c00205{left:637.333333pt;}
.xc8_c00205{left:640.000000pt;}
}





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

.ir_c00206:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00206{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00206;src:url('chunks/assets/font_73de2f28732bbd82114188df.woff2')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3e_c00206{transform:matrix(0.236963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236963,0.000000,0.000000,0.250000,0,0);}
.m82_c00206{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00206{transform:matrix(0.343558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343558,0.000000,0.000000,0.250000,0,0);}
.mb7_c00206{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m9d_c00206{transform:matrix(0.369248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369248,0.000000,0.000000,0.250000,0,0);}
.m53_c00206{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mb8_c00206{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00206{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mba_c00206{transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);}
.m60_c00206{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.mda_c00206{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.md1_c00206{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mf5_c00206{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m36_c00206{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m84_c00206{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m70_c00206{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.me9_c00206{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m6d_c00206{transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);}
.m44_c00206{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.mc4_c00206{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.ma2_c00206{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.mab_c00206{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.mc3_c00206{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.me2_c00206{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m9b_c00206{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m41_c00206{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m54_c00206{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mdc_c00206{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m47_c00206{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m29_c00206{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.mac_c00206{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.md3_c00206{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.mf1_c00206{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m49_c00206{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m75_c00206{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.ma_c00206{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m3c_c00206{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m9c_c00206{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m9e_c00206{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m1a_c00206{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mf8_c00206{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m55_c00206{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mbf_c00206{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m81_c00206{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m88_c00206{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.mc6_c00206{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m32_c00206{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m43_c00206{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m50_c00206{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m72_c00206{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.mb3_c00206{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m89_c00206{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m6b_c00206{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m1c_c00206{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mc9_c00206{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m48_c00206{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m9_c00206{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.mef_c00206{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m8a_c00206{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m15_c00206{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m3f_c00206{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.mbd_c00206{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.ma7_c00206{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m4d_c00206{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m61_c00206{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.mc2_c00206{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m68_c00206{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.ma0_c00206{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m87_c00206{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.ma6_c00206{transform:matrix(0.432515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432515,0.000000,0.000000,0.250000,0,0);}
.mdb_c00206{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m24_c00206{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m1f_c00206{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.md_c00206{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.mf2_c00206{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m3a_c00206{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m8f_c00206{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m99_c00206{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.m59_c00206{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m10_c00206{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.md5_c00206{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.mad_c00206{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.ma9_c00206{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m52_c00206{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.md6_c00206{transform:matrix(0.442101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442101,0.000000,0.000000,0.250000,0,0);}
.m19_c00206{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mca_c00206{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mbe_c00206{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.ma3_c00206{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.m93_c00206{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.m74_c00206{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.me0_c00206{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_c00206{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m12_c00206{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m8c_c00206{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m69_c00206{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m1_c00206{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m13_c00206{transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);}
.mea_c00206{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m2c_c00206{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.mf_c00206{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mb5_c00206{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m45_c00206{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m65_c00206{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m4a_c00206{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m73_c00206{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.mb2_c00206{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.m90_c00206{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.md0_c00206{transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);}
.m86_c00206{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.m7_c00206{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m1e_c00206{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.ma8_c00206{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.ma4_c00206{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m51_c00206{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mbc_c00206{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m80_c00206{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.maf_c00206{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m18_c00206{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mc7_c00206{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m31_c00206{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m28_c00206{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m79_c00206{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.mee_c00206{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m63_c00206{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m40_c00206{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m4b_c00206{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mcf_c00206{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m67_c00206{transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);}
.m3d_c00206{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_c00206{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m21_c00206{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m91_c00206{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.m1b_c00206{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mbb_c00206{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.mce_c00206{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mdd_c00206{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m56_c00206{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.me1_c00206{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mc0_c00206{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.mc_c00206{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m8_c00206{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m35_c00206{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m5f_c00206{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m6f_c00206{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m5_c00206{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.mf7_c00206{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m11_c00206{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m85_c00206{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m5e_c00206{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m7e_c00206{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m25_c00206{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mf3_c00206{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.ma1_c00206{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m5c_c00206{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m3_c00206{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m20_c00206{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m7c_c00206{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m77_c00206{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m2b_c00206{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m83_c00206{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mc1_c00206{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m6a_c00206{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mec_c00206{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.mcb_c00206{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m66_c00206{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m6e_c00206{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m7d_c00206{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.me7_c00206{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m46_c00206{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m2f_c00206{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.maa_c00206{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m23_c00206{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mf4_c00206{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m62_c00206{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.meb_c00206{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m7a_c00206{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m64_c00206{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.me_c00206{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.md9_c00206{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mb9_c00206{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.mdf_c00206{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m4f_c00206{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m4_c00206{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m95_c00206{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m16_c00206{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.me3_c00206{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m2a_c00206{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);}
.m4c_c00206{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m96_c00206{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m38_c00206{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m34_c00206{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m37_c00206{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m3b_c00206{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m27_c00206{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.me4_c00206{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_c00206{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m92_c00206{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m9f_c00206{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m71_c00206{transform:matrix(0.574675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574675,0.000000,0.000000,0.250000,0,0);}
.m8b_c00206{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m8e_c00206{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m94_c00206{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.mae_c00206{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m7f_c00206{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.mc5_c00206{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.mb0_c00206{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m17_c00206{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m4e_c00206{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m7b_c00206{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m2e_c00206{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.me8_c00206{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_c00206{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.me6_c00206{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m5b_c00206{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m6c_c00206{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m42_c00206{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m14_c00206{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m8d_c00206{transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);}
.m78_c00206{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m5a_c00206{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.mc8_c00206{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.m39_c00206{transform:matrix(0.638804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638804,0.000000,0.000000,0.250000,0,0);}
.m58_c00206{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.mf0_c00206{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m2d_c00206{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m6_c00206{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.md7_c00206{transform:matrix(0.671324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.671324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.671324,0.000000,0.000000,0.250000,0,0);}
.m33_c00206{transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);}
.med_c00206{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.md8_c00206{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m30_c00206{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.mb1_c00206{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m5d_c00206{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.mcd_c00206{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mde_c00206{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.md4_c00206{transform:matrix(0.714744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.714744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.714744,0.000000,0.000000,0.250000,0,0);}
.m1d_c00206{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m2_c00206{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mf6_c00206{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.mb4_c00206{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m22_c00206{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m76_c00206{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.md2_c00206{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m97_c00206{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.me5_c00206{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mb_c00206{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m9a_c00206{transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);}
.m98_c00206{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00206{vertical-align:0.000000px;}
.v1_c00206{vertical-align:6.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:-1.799212px;}
.ws1_c00206{word-spacing:0.000000px;}
.fc0_c00206{color:transparent;}
.fs7_c00206{font-size:3.420000px;}
.fs8_c00206{font-size:11.880000px;}
.fs2_c00206{font-size:18.720000px;}
.fs0_c00206{font-size:20.400000px;}
.fs3_c00206{font-size:25.500000px;}
.fs1_c00206{font-size:28.920000px;}
.fs4_c00206{font-size:32.340000px;}
.fs5_c00206{font-size:35.700000px;}
.fs6_c00206{font-size:39.120000px;}
.y0_c00206{bottom:0.000000px;}
.ye7_c00206{bottom:250.905000px;}
.yeb_c00206{bottom:251.745000px;}
.yea_c00206{bottom:252.405000px;}
.ye6_c00206{bottom:253.245000px;}
.ye9_c00206{bottom:255.405000px;}
.ye8_c00206{bottom:256.470000px;}
.ye5_c00206{bottom:272.745000px;}
.ye3_c00206{bottom:273.630000px;}
.ye2_c00206{bottom:274.470000px;}
.ye1_c00206{bottom:274.905000px;}
.ye4_c00206{bottom:275.970000px;}
.ydf_c00206{bottom:290.745000px;}
.ydc_c00206{bottom:292.245000px;}
.ye0_c00206{bottom:293.130000px;}
.yde_c00206{bottom:293.970000px;}
.ydd_c00206{bottom:294.405000px;}
.ydb_c00206{bottom:313.245000px;}
.yd9_c00206{bottom:313.905000px;}
.yd8_c00206{bottom:314.970000px;}
.yda_c00206{bottom:315.405000px;}
.yd6_c00206{bottom:331.470000px;}
.yd3_c00206{bottom:332.745000px;}
.yd4_c00206{bottom:333.405000px;}
.yd7_c00206{bottom:333.630000px;}
.yd5_c00206{bottom:334.470000px;}
.yd2_c00206{bottom:334.905000px;}
.yce_c00206{bottom:350.970000px;}
.yd1_c00206{bottom:351.825000px;}
.ycc_c00206{bottom:352.245000px;}
.ycf_c00206{bottom:353.130000px;}
.yd0_c00206{bottom:353.970000px;}
.ycd_c00206{bottom:354.405000px;}
.yc9_c00206{bottom:371.745000px;}
.ycb_c00206{bottom:373.470000px;}
.yca_c00206{bottom:373.905000px;}
.yc8_c00206{bottom:389.745000px;}
.yc4_c00206{bottom:390.405000px;}
.yc5_c00206{bottom:391.245000px;}
.yc2_c00206{bottom:392.550000px;}
.yc7_c00206{bottom:392.970000px;}
.yc3_c00206{bottom:393.405000px;}
.yc6_c00206{bottom:393.630000px;}
.yc0_c00206{bottom:409.680000px;}
.ybd_c00206{bottom:410.745000px;}
.ybf_c00206{bottom:412.905000px;}
.ybe_c00206{bottom:413.130000px;}
.yc1_c00206{bottom:413.970000px;}
.yba_c00206{bottom:430.245000px;}
.ybb_c00206{bottom:432.405000px;}
.ybc_c00206{bottom:432.630000px;}
.yb9_c00206{bottom:433.470000px;}
.yb7_c00206{bottom:449.745000px;}
.yb5_c00206{bottom:450.825000px;}
.yb8_c00206{bottom:451.245000px;}
.yb4_c00206{bottom:451.905000px;}
.yb3_c00206{bottom:452.970000px;}
.yb6_c00206{bottom:453.405000px;}
.yad_c00206{bottom:468.825000px;}
.yb2_c00206{bottom:469.245000px;}
.yb0_c00206{bottom:469.905000px;}
.yb1_c00206{bottom:470.325000px;}
.yac_c00206{bottom:470.745000px;}
.yae_c00206{bottom:471.630000px;}
.yaf_c00206{bottom:471.825000px;}
.yab_c00206{bottom:472.905000px;}
.yaa_c00206{bottom:490.245000px;}
.ya8_c00206{bottom:492.405000px;}
.ya9_c00206{bottom:492.420000px;}
.ya1_c00206{bottom:506.775000px;}
.ya0_c00206{bottom:507.630000px;}
.ya3_c00206{bottom:508.680000px;}
.ya2_c00206{bottom:508.905000px;}
.ya4_c00206{bottom:509.745000px;}
.ya7_c00206{bottom:509.970000px;}
.ya6_c00206{bottom:510.825000px;}
.ya5_c00206{bottom:511.905000px;}
.y9f_c00206{bottom:512.130000px;}
.y9d_c00206{bottom:527.775000px;}
.y9b_c00206{bottom:528.405000px;}
.y98_c00206{bottom:529.245000px;}
.y9a_c00206{bottom:529.905000px;}
.y99_c00206{bottom:530.325000px;}
.y9e_c00206{bottom:531.405000px;}
.y97_c00206{bottom:531.630000px;}
.y9c_c00206{bottom:534.630000px;}
.y96_c00206{bottom:547.905000px;}
.y94_c00206{bottom:549.405000px;}
.y91_c00206{bottom:550.245000px;}
.y95_c00206{bottom:551.130000px;}
.y93_c00206{bottom:551.325000px;}
.y92_c00206{bottom:552.405000px;}
.y90_c00206{bottom:566.130000px;}
.y8c_c00206{bottom:567.630000px;}
.y8b_c00206{bottom:569.745000px;}
.y8f_c00206{bottom:570.180000px;}
.y8e_c00206{bottom:570.405000px;}
.y8d_c00206{bottom:570.825000px;}
.y8a_c00206{bottom:571.905000px;}
.y89_c00206{bottom:586.905000px;}
.y84_c00206{bottom:587.130000px;}
.y85_c00206{bottom:588.180000px;}
.y86_c00206{bottom:589.245000px;}
.y88_c00206{bottom:590.325000px;}
.y87_c00206{bottom:591.405000px;}
.y7e_c00206{bottom:606.630000px;}
.y7f_c00206{bottom:607.680000px;}
.y80_c00206{bottom:608.745000px;}
.y83_c00206{bottom:609.825000px;}
.y81_c00206{bottom:610.470000px;}
.y82_c00206{bottom:610.905000px;}
.y7d_c00206{bottom:626.130000px;}
.y78_c00206{bottom:626.970000px;}
.y76_c00206{bottom:627.405000px;}
.y7b_c00206{bottom:627.825000px;}
.y7c_c00206{bottom:628.245000px;}
.y79_c00206{bottom:629.130000px;}
.y77_c00206{bottom:630.405000px;}
.y7a_c00206{bottom:630.420000px;}
.y70_c00206{bottom:646.470000px;}
.y72_c00206{bottom:646.905000px;}
.y6f_c00206{bottom:647.745000px;}
.y6e_c00206{bottom:647.970000px;}
.y74_c00206{bottom:648.405000px;}
.y71_c00206{bottom:648.825000px;}
.y75_c00206{bottom:649.470000px;}
.y73_c00206{bottom:649.905000px;}
.y69_c00206{bottom:666.405000px;}
.y68_c00206{bottom:667.245000px;}
.y6b_c00206{bottom:667.470000px;}
.y6d_c00206{bottom:668.325000px;}
.y6c_c00206{bottom:668.745000px;}
.y6a_c00206{bottom:669.405000px;}
.y67_c00206{bottom:685.905000px;}
.y66_c00206{bottom:686.325000px;}
.y64_c00206{bottom:686.745000px;}
.y63_c00206{bottom:687.825000px;}
.y62_c00206{bottom:688.245000px;}
.y61_c00206{bottom:688.905000px;}
.y65_c00206{bottom:690.405000px;}
.y5c_c00206{bottom:706.245000px;}
.y60_c00206{bottom:706.905000px;}
.y5d_c00206{bottom:707.325000px;}
.y5e_c00206{bottom:707.745000px;}
.y5f_c00206{bottom:709.905000px;}
.y59_c00206{bottom:725.745000px;}
.y57_c00206{bottom:725.970000px;}
.y56_c00206{bottom:727.245000px;}
.y5a_c00206{bottom:728.130000px;}
.y5b_c00206{bottom:728.970000px;}
.y58_c00206{bottom:729.405000px;}
.y55_c00206{bottom:746.325000px;}
.y52_c00206{bottom:746.745000px;}
.y53_c00206{bottom:747.630000px;}
.y54_c00206{bottom:748.470000px;}
.y51_c00206{bottom:748.905000px;}
.y50_c00206{bottom:767.970000px;}
.y4e_c00206{bottom:768.405000px;}
.y4f_c00206{bottom:769.470000px;}
.y4b_c00206{bottom:785.745000px;}
.y49_c00206{bottom:786.825000px;}
.y4a_c00206{bottom:787.905000px;}
.y4c_c00206{bottom:788.130000px;}
.y4d_c00206{bottom:788.970000px;}
.y45_c00206{bottom:805.245000px;}
.y48_c00206{bottom:805.470000px;}
.y46_c00206{bottom:806.325000px;}
.y44_c00206{bottom:807.405000px;}
.y47_c00206{bottom:808.470000px;}
.y40_c00206{bottom:824.745000px;}
.y42_c00206{bottom:825.180000px;}
.y41_c00206{bottom:826.905000px;}
.y43_c00206{bottom:827.970000px;}
.y3f_c00206{bottom:845.745000px;}
.y3e_c00206{bottom:846.825000px;}
.y3d_c00206{bottom:847.905000px;}
.y3b_c00206{bottom:862.905000px;}
.y3c_c00206{bottom:863.970000px;}
.y3a_c00206{bottom:865.245000px;}
.y38_c00206{bottom:865.905000px;}
.y37_c00206{bottom:866.970000px;}
.y39_c00206{bottom:867.405000px;}
.y36_c00206{bottom:883.470000px;}
.y2f_c00206{bottom:884.745000px;}
.y31_c00206{bottom:885.405000px;}
.y35_c00206{bottom:885.630000px;}
.y32_c00206{bottom:885.825000px;}
.y30_c00206{bottom:886.470000px;}
.y34_c00206{bottom:886.905000px;}
.y33_c00206{bottom:887.970000px;}
.y2d_c00206{bottom:901.905000px;}
.y2c_c00206{bottom:904.245000px;}
.y2a_c00206{bottom:905.130000px;}
.y2e_c00206{bottom:905.970000px;}
.y2b_c00206{bottom:906.405000px;}
.y29_c00206{bottom:922.905000px;}
.y27_c00206{bottom:923.745000px;}
.y25_c00206{bottom:924.825000px;}
.y26_c00206{bottom:925.905000px;}
.y28_c00206{bottom:926.130000px;}
.y22_c00206{bottom:942.180000px;}
.y23_c00206{bottom:943.245000px;}
.y24_c00206{bottom:944.745000px;}
.y21_c00206{bottom:945.405000px;}
.y1f_c00206{bottom:962.745000px;}
.y1d_c00206{bottom:964.470000px;}
.y1e_c00206{bottom:964.905000px;}
.y1c_c00206{bottom:965.130000px;}
.y20_c00206{bottom:965.970000px;}
.y19_c00206{bottom:982.245000px;}
.y1b_c00206{bottom:983.325000px;}
.y17_c00206{bottom:984.405000px;}
.y18_c00206{bottom:984.630000px;}
.y1a_c00206{bottom:985.470000px;}
.y16_c00206{bottom:1001.745000px;}
.y14_c00206{bottom:1003.905000px;}
.y15_c00206{bottom:1004.130000px;}
.ye_c00206{bottom:1021.245000px;}
.yd_c00206{bottom:1021.470000px;}
.y13_c00206{bottom:1022.325000px;}
.y11_c00206{bottom:1022.745000px;}
.y10_c00206{bottom:1023.405000px;}
.y12_c00206{bottom:1023.630000px;}
.yf_c00206{bottom:1024.905000px;}
.yc_c00206{bottom:1040.745000px;}
.y9_c00206{bottom:1041.825000px;}
.ya_c00206{bottom:1042.905000px;}
.yb_c00206{bottom:1043.130000px;}
.y8_c00206{bottom:1061.745000px;}
.y3_c00206{bottom:1062.630000px;}
.y7_c00206{bottom:1062.825000px;}
.y5_c00206{bottom:1063.470000px;}
.y4_c00206{bottom:1063.905000px;}
.y6_c00206{bottom:1064.970000px;}
.y2_c00206{bottom:1099.905000px;}
.y1_c00206{bottom:1102.050000px;}
.h8_c00206{height:4.206533px;}
.h9_c00206{height:14.612168px;}
.h3_c00206{height:23.025234px;}
.h1_c00206{height:25.091602px;}
.h4_c00206{height:31.364502px;}
.h2_c00206{height:35.571035px;}
.ha_c00206{height:37.364502px;}
.h5_c00206{height:39.777568px;}
.h6_c00206{height:43.910303px;}
.h7_c00206{height:48.116836px;}
.h0_c00206{height:1335.000000px;}
.w0_c00206{width:880.500000px;}
.x0_c00206{left:0.000000px;}
.x9e_c00206{left:151.920000px;}
.x73_c00206{left:153.000000px;}
.x3_c00206{left:154.500000px;}
.x4a_c00206{left:169.080000px;}
.x102_c00206{left:170.580000px;}
.x6b_c00206{left:172.500000px;}
.x4_c00206{left:177.420000px;}
.xdc_c00206{left:178.500000px;}
.x93_c00206{left:180.000000px;}
.x2a_c00206{left:181.500000px;}
.xdd_c00206{left:184.080000px;}
.xbb_c00206{left:186.420000px;}
.x10b_c00206{left:188.580000px;}
.xc2_c00206{left:190.920000px;}
.xe6_c00206{left:192.000000px;}
.xde_c00206{left:193.080000px;}
.x82_c00206{left:194.580000px;}
.xd7_c00206{left:198.000000px;}
.x43_c00206{left:199.500000px;}
.x1d_c00206{left:201.000000px;}
.x5_c00206{left:202.500000px;}
.x6c_c00206{left:205.080000px;}
.xad_c00206{left:207.000000px;}
.x37_c00206{left:208.500000px;}
.x79_c00206{left:211.500000px;}
.xd2_c00206{left:212.580000px;}
.x12_c00206{left:214.500000px;}
.x8a_c00206{left:216.420000px;}
.x44_c00206{left:218.580000px;}
.xb5_c00206{left:220.080000px;}
.x74_c00206{left:222.420000px;}
.x53_c00206{left:223.500000px;}
.x2b_c00206{left:226.500000px;}
.x105_c00206{left:228.420000px;}
.x94_c00206{left:229.500000px;}
.x9f_c00206{left:230.580000px;}
.xe7_c00206{left:233.580000px;}
.x38_c00206{left:237.420000px;}
.xe0_c00206{left:238.500000px;}
.x45_c00206{left:240.420000px;}
.x63_c00206{left:243.000000px;}
.x1e_c00206{left:247.920000px;}
.x8b_c00206{left:250.080000px;}
.xb6_c00206{left:252.420000px;}
.xd8_c00206{left:253.500000px;}
.xf2_c00206{left:256.080000px;}
.xf6_c00206{left:258.000000px;}
.xa0_c00206{left:259.500000px;}
.x54_c00206{left:262.500000px;}
.x7a_c00206{left:264.000000px;}
.x6d_c00206{left:265.500000px;}
.xf9_c00206{left:266.580000px;}
.x95_c00206{left:268.500000px;}
.x75_c00206{left:270.000000px;}
.x13_c00206{left:271.500000px;}
.xcb_c00206{left:273.420000px;}
.x39_c00206{left:274.920000px;}
.x1f_c00206{left:276.420000px;}
.xf3_c00206{left:277.500000px;}
.x2c_c00206{left:280.500000px;}
.x103_c00206{left:281.580000px;}
.xe2_c00206{left:283.500000px;}
.xc8_c00206{left:285.000000px;}
.x7b_c00206{left:288.420000px;}
.xfb_c00206{left:289.920000px;}
.x6_c00206{left:291.000000px;}
.x2d_c00206{left:292.500000px;}
.x5d_c00206{left:294.000000px;}
.x14_c00206{left:295.920000px;}
.x98_c00206{left:297.420000px;}
.x104_c00206{left:298.500000px;}
.xe8_c00206{left:300.000000px;}
.x64_c00206{left:301.500000px;}
.xae_c00206{left:303.420000px;}
.xbc_c00206{left:304.500000px;}
.xd3_c00206{left:306.000000px;}
.x83_c00206{left:307.500000px;}
.xfa_c00206{left:308.580000px;}
.xc3_c00206{left:310.500000px;}
.xd9_c00206{left:313.080000px;}
.x7c_c00206{left:315.000000px;}
.x46_c00206{left:316.500000px;}
.x55_c00206{left:319.500000px;}
.x96_c00206{left:320.580000px;}
.xcc_c00206{left:322.920000px;}
.x15_c00206{left:324.420000px;}
.x76_c00206{left:330.420000px;}
.x8c_c00206{left:331.500000px;}
.xd4_c00206{left:332.580000px;}
.x3a_c00206{left:334.920000px;}
.xe9_c00206{left:336.000000px;}
.x97_c00206{left:337.500000px;}
.x20_c00206{left:340.920000px;}
.xa1_c00206{left:343.500000px;}
.xc4_c00206{left:346.500000px;}
.x2e_c00206{left:347.580000px;}
.xe3_c00206{left:349.080000px;}
.x106_c00206{left:351.420000px;}
.x47_c00206{left:352.920000px;}
.xfc_c00206{left:354.000000px;}
.x4b_c00206{left:356.145000px;}
.x65_c00206{left:358.500000px;}
.xcd_c00206{left:360.420000px;}
.x3b_c00206{left:362.580000px;}
.xf7_c00206{left:364.500000px;}
.x7_c00206{left:367.080000px;}
.x6e_c00206{left:369.420000px;}
.xa2_c00206{left:370.920000px;}
.x4c_c00206{left:372.000000px;}
.xaf_c00206{left:373.920000px;}
.x21_c00206{left:379.500000px;}
.x16_c00206{left:381.000000px;}
.x84_c00206{left:382.500000px;}
.x7d_c00206{left:383.580000px;}
.x99_c00206{left:385.080000px;}
.x8_c00206{left:387.420000px;}
.x10c_c00206{left:388.500000px;}
.x4d_c00206{left:390.000000px;}
.x56_c00206{left:391.500000px;}
.x77_c00206{left:394.500000px;}
.x3c_c00206{left:396.000000px;}
.x22_c00206{left:397.920000px;}
.xe1_c00206{left:400.500000px;}
.x1_c00206{left:402.000000px;}
.x8d_c00206{left:405.000000px;}
.x4e_c00206{left:406.500000px;}
.x6f_c00206{left:409.080000px;}
.xc5_c00206{left:411.420000px;}
.x9_c00206{left:413.580000px;}
.x9a_c00206{left:417.000000px;}
.x5e_c00206{left:418.500000px;}
.x107_c00206{left:421.080000px;}
.xb0_c00206{left:423.000000px;}
.x4f_c00206{left:425.580000px;}
.x17_c00206{left:427.500000px;}
.x7e_c00206{left:429.420000px;}
.x66_c00206{left:430.500000px;}
.x85_c00206{left:432.000000px;}
.x23_c00206{left:435.420000px;}
.x48_c00206{left:437.580000px;}
.xa3_c00206{left:441.000000px;}
.x2f_c00206{left:442.920000px;}
.xf4_c00206{left:447.000000px;}
.xa_c00206{left:448.080000px;}
.x3d_c00206{left:451.500000px;}
.x5f_c00206{left:454.080000px;}
.x70_c00206{left:456.000000px;}
.xa8_c00206{left:459.000000px;}
.xbd_c00206{left:463.500000px;}
.xb_c00206{left:466.920000px;}
.x49_c00206{left:468.000000px;}
.x30_c00206{left:470.580000px;}
.x8e_c00206{left:472.080000px;}
.x78_c00206{left:474.000000px;}
.x50_c00206{left:477.000000px;}
.xa4_c00206{left:478.500000px;}
.xfd_c00206{left:481.500000px;}
.xc9_c00206{left:484.080000px;}
.xdf_c00206{left:486.000000px;}
.x18_c00206{left:487.500000px;}
.xf8_c00206{left:492.000000px;}
.xc_c00206{left:493.500000px;}
.x67_c00206{left:498.000000px;}
.x60_c00206{left:500.580000px;}
.xea_c00206{left:502.080000px;}
.x8f_c00206{left:504.000000px;}
.x3e_c00206{left:505.920000px;}
.x24_c00206{left:508.920000px;}
.x108_c00206{left:510.000000px;}
.xb1_c00206{left:511.500000px;}
.x57_c00206{left:513.420000px;}
.x86_c00206{left:516.420000px;}
.xc6_c00206{left:519.000000px;}
.xd_c00206{left:525.000000px;}
.x3f_c00206{left:526.920000px;}
.x19_c00206{left:528.420000px;}
.xda_c00206{left:529.500000px;}
.xe4_c00206{left:531.420000px;}
.x61_c00206{left:532.500000px;}
.x7f_c00206{left:535.500000px;}
.x25_c00206{left:536.580000px;}
.x58_c00206{left:539.580000px;}
.xbe_c00206{left:541.920000px;}
.xc7_c00206{left:544.080000px;}
.x90_c00206{left:546.000000px;}
.xa9_c00206{left:547.500000px;}
.xeb_c00206{left:550.500000px;}
.x31_c00206{left:551.580000px;}
.xb2_c00206{left:553.920000px;}
.x68_c00206{left:555.000000px;}
.x10d_c00206{left:556.500000px;}
.x9b_c00206{left:557.580000px;}
.x71_c00206{left:559.080000px;}
.x40_c00206{left:561.420000px;}
.xfe_c00206{left:562.920000px;}
.x87_c00206{left:564.000000px;}
.x32_c00206{left:570.420000px;}
.xb7_c00206{left:571.920000px;}
.x59_c00206{left:575.580000px;}
.x26_c00206{left:579.000000px;}
.xa5_c00206{left:580.080000px;}
.xbf_c00206{left:582.000000px;}
.xd5_c00206{left:585.000000px;}
.x109_c00206{left:586.920000px;}
.xb3_c00206{left:588.000000px;}
.x41_c00206{left:589.500000px;}
.xaa_c00206{left:591.420000px;}
.x62_c00206{left:592.500000px;}
.x5a_c00206{left:594.420000px;}
.x88_c00206{left:595.500000px;}
.x33_c00206{left:597.000000px;}
.xb8_c00206{left:598.500000px;}
.xa6_c00206{left:600.000000px;}
.x1a_c00206{left:601.500000px;}
.xef_c00206{left:603.420000px;}
.x9c_c00206{left:604.500000px;}
.xe_c00206{left:606.420000px;}
.xce_c00206{left:609.000000px;}
.x91_c00206{left:612.000000px;}
.xa7_c00206{left:613.500000px;}
.xdb_c00206{left:616.500000px;}
.x10a_c00206{left:618.000000px;}
.x27_c00206{left:619.500000px;}
.x10e_c00206{left:624.000000px;}
.xf0_c00206{left:625.920000px;}
.xab_c00206{left:627.000000px;}
.x51_c00206{left:628.920000px;}
.x80_c00206{left:630.420000px;}
.x5b_c00206{left:631.500000px;}
.xf5_c00206{left:632.580000px;}
.xc0_c00206{left:634.500000px;}
.x34_c00206{left:635.580000px;}
.x72_c00206{left:639.000000px;}
.xf_c00206{left:640.500000px;}
.x89_c00206{left:641.580000px;}
.xff_c00206{left:643.500000px;}
.xd6_c00206{left:645.000000px;}
.x28_c00206{left:647.355000px;}
.xb9_c00206{left:649.500000px;}
.x69_c00206{left:651.000000px;}
.x35_c00206{left:654.420000px;}
.xb4_c00206{left:655.920000px;}
.xec_c00206{left:657.000000px;}
.x92_c00206{left:658.500000px;}
.x9d_c00206{left:659.580000px;}
.xee_c00206{left:661.500000px;}
.x10_c00206{left:663.420000px;}
.x81_c00206{left:667.920000px;}
.xcf_c00206{left:672.000000px;}
.xc1_c00206{left:673.080000px;}
.xca_c00206{left:675.420000px;}
.x100_c00206{left:676.500000px;}
.x36_c00206{left:681.420000px;}
.x42_c00206{left:682.500000px;}
.x1b_c00206{left:684.000000px;}
.x52_c00206{left:685.500000px;}
.xe5_c00206{left:687.000000px;}
.x29_c00206{left:688.920000px;}
.x11_c00206{left:690.420000px;}
.x6a_c00206{left:694.500000px;}
.xac_c00206{left:696.420000px;}
.xd0_c00206{left:698.580000px;}
.x5c_c00206{left:700.500000px;}
.xed_c00206{left:702.420000px;}
.xd1_c00206{left:703.500000px;}
.xf1_c00206{left:705.420000px;}
.x2_c00206{left:708.420000px;}
.x1c_c00206{left:709.920000px;}
.xba_c00206{left:717.000000px;}
.x101_c00206{left:720.000000px;}
.x10f_c00206{left:723.000000px;}
@media print{
.v0_c00206{vertical-align:0.000000pt;}
.v1_c00206{vertical-align:5.333333pt;}
.ls0_c00206{letter-spacing:0.000000pt;}
.ws0_c00206{word-spacing:-1.599299pt;}
.ws1_c00206{word-spacing:0.000000pt;}
.fs7_c00206{font-size:3.040000pt;}
.fs8_c00206{font-size:10.560000pt;}
.fs2_c00206{font-size:16.640000pt;}
.fs0_c00206{font-size:18.133333pt;}
.fs3_c00206{font-size:22.666667pt;}
.fs1_c00206{font-size:25.706667pt;}
.fs4_c00206{font-size:28.746667pt;}
.fs5_c00206{font-size:31.733333pt;}
.fs6_c00206{font-size:34.773333pt;}
.y0_c00206{bottom:0.000000pt;}
.ye7_c00206{bottom:223.026667pt;}
.yeb_c00206{bottom:223.773333pt;}
.yea_c00206{bottom:224.360000pt;}
.ye6_c00206{bottom:225.106667pt;}
.ye9_c00206{bottom:227.026667pt;}
.ye8_c00206{bottom:227.973333pt;}
.ye5_c00206{bottom:242.440000pt;}
.ye3_c00206{bottom:243.226667pt;}
.ye2_c00206{bottom:243.973333pt;}
.ye1_c00206{bottom:244.360000pt;}
.ye4_c00206{bottom:245.306667pt;}
.ydf_c00206{bottom:258.440000pt;}
.ydc_c00206{bottom:259.773333pt;}
.ye0_c00206{bottom:260.560000pt;}
.yde_c00206{bottom:261.306667pt;}
.ydd_c00206{bottom:261.693333pt;}
.ydb_c00206{bottom:278.440000pt;}
.yd9_c00206{bottom:279.026667pt;}
.yd8_c00206{bottom:279.973333pt;}
.yda_c00206{bottom:280.360000pt;}
.yd6_c00206{bottom:294.640000pt;}
.yd3_c00206{bottom:295.773333pt;}
.yd4_c00206{bottom:296.360000pt;}
.yd7_c00206{bottom:296.560000pt;}
.yd5_c00206{bottom:297.306667pt;}
.yd2_c00206{bottom:297.693333pt;}
.yce_c00206{bottom:311.973333pt;}
.yd1_c00206{bottom:312.733333pt;}
.ycc_c00206{bottom:313.106667pt;}
.ycf_c00206{bottom:313.893333pt;}
.yd0_c00206{bottom:314.640000pt;}
.ycd_c00206{bottom:315.026667pt;}
.yc9_c00206{bottom:330.440000pt;}
.ycb_c00206{bottom:331.973333pt;}
.yca_c00206{bottom:332.360000pt;}
.yc8_c00206{bottom:346.440000pt;}
.yc4_c00206{bottom:347.026667pt;}
.yc5_c00206{bottom:347.773333pt;}
.yc2_c00206{bottom:348.933333pt;}
.yc7_c00206{bottom:349.306667pt;}
.yc3_c00206{bottom:349.693333pt;}
.yc6_c00206{bottom:349.893333pt;}
.yc0_c00206{bottom:364.160000pt;}
.ybd_c00206{bottom:365.106667pt;}
.ybf_c00206{bottom:367.026667pt;}
.ybe_c00206{bottom:367.226667pt;}
.yc1_c00206{bottom:367.973333pt;}
.yba_c00206{bottom:382.440000pt;}
.ybb_c00206{bottom:384.360000pt;}
.ybc_c00206{bottom:384.560000pt;}
.yb9_c00206{bottom:385.306667pt;}
.yb7_c00206{bottom:399.773333pt;}
.yb5_c00206{bottom:400.733333pt;}
.yb8_c00206{bottom:401.106667pt;}
.yb4_c00206{bottom:401.693333pt;}
.yb3_c00206{bottom:402.640000pt;}
.yb6_c00206{bottom:403.026667pt;}
.yad_c00206{bottom:416.733333pt;}
.yb2_c00206{bottom:417.106667pt;}
.yb0_c00206{bottom:417.693333pt;}
.yb1_c00206{bottom:418.066667pt;}
.yac_c00206{bottom:418.440000pt;}
.yae_c00206{bottom:419.226667pt;}
.yaf_c00206{bottom:419.400000pt;}
.yab_c00206{bottom:420.360000pt;}
.yaa_c00206{bottom:435.773333pt;}
.ya8_c00206{bottom:437.693333pt;}
.ya9_c00206{bottom:437.706667pt;}
.ya1_c00206{bottom:450.466667pt;}
.ya0_c00206{bottom:451.226667pt;}
.ya3_c00206{bottom:452.160000pt;}
.ya2_c00206{bottom:452.360000pt;}
.ya4_c00206{bottom:453.106667pt;}
.ya7_c00206{bottom:453.306667pt;}
.ya6_c00206{bottom:454.066667pt;}
.ya5_c00206{bottom:455.026667pt;}
.y9f_c00206{bottom:455.226667pt;}
.y9d_c00206{bottom:469.133333pt;}
.y9b_c00206{bottom:469.693333pt;}
.y98_c00206{bottom:470.440000pt;}
.y9a_c00206{bottom:471.026667pt;}
.y99_c00206{bottom:471.400000pt;}
.y9e_c00206{bottom:472.360000pt;}
.y97_c00206{bottom:472.560000pt;}
.y9c_c00206{bottom:475.226667pt;}
.y96_c00206{bottom:487.026667pt;}
.y94_c00206{bottom:488.360000pt;}
.y91_c00206{bottom:489.106667pt;}
.y95_c00206{bottom:489.893333pt;}
.y93_c00206{bottom:490.066667pt;}
.y92_c00206{bottom:491.026667pt;}
.y90_c00206{bottom:503.226667pt;}
.y8c_c00206{bottom:504.560000pt;}
.y8b_c00206{bottom:506.440000pt;}
.y8f_c00206{bottom:506.826667pt;}
.y8e_c00206{bottom:507.026667pt;}
.y8d_c00206{bottom:507.400000pt;}
.y8a_c00206{bottom:508.360000pt;}
.y89_c00206{bottom:521.693333pt;}
.y84_c00206{bottom:521.893333pt;}
.y85_c00206{bottom:522.826667pt;}
.y86_c00206{bottom:523.773333pt;}
.y88_c00206{bottom:524.733333pt;}
.y87_c00206{bottom:525.693333pt;}
.y7e_c00206{bottom:539.226667pt;}
.y7f_c00206{bottom:540.160000pt;}
.y80_c00206{bottom:541.106667pt;}
.y83_c00206{bottom:542.066667pt;}
.y81_c00206{bottom:542.640000pt;}
.y82_c00206{bottom:543.026667pt;}
.y7d_c00206{bottom:556.560000pt;}
.y78_c00206{bottom:557.306667pt;}
.y76_c00206{bottom:557.693333pt;}
.y7b_c00206{bottom:558.066667pt;}
.y7c_c00206{bottom:558.440000pt;}
.y79_c00206{bottom:559.226667pt;}
.y77_c00206{bottom:560.360000pt;}
.y7a_c00206{bottom:560.373333pt;}
.y70_c00206{bottom:574.640000pt;}
.y72_c00206{bottom:575.026667pt;}
.y6f_c00206{bottom:575.773333pt;}
.y6e_c00206{bottom:575.973333pt;}
.y74_c00206{bottom:576.360000pt;}
.y71_c00206{bottom:576.733333pt;}
.y75_c00206{bottom:577.306667pt;}
.y73_c00206{bottom:577.693333pt;}
.y69_c00206{bottom:592.360000pt;}
.y68_c00206{bottom:593.106667pt;}
.y6b_c00206{bottom:593.306667pt;}
.y6d_c00206{bottom:594.066667pt;}
.y6c_c00206{bottom:594.440000pt;}
.y6a_c00206{bottom:595.026667pt;}
.y67_c00206{bottom:609.693333pt;}
.y66_c00206{bottom:610.066667pt;}
.y64_c00206{bottom:610.440000pt;}
.y63_c00206{bottom:611.400000pt;}
.y62_c00206{bottom:611.773333pt;}
.y61_c00206{bottom:612.360000pt;}
.y65_c00206{bottom:613.693333pt;}
.y5c_c00206{bottom:627.773333pt;}
.y60_c00206{bottom:628.360000pt;}
.y5d_c00206{bottom:628.733333pt;}
.y5e_c00206{bottom:629.106667pt;}
.y5f_c00206{bottom:631.026667pt;}
.y59_c00206{bottom:645.106667pt;}
.y57_c00206{bottom:645.306667pt;}
.y56_c00206{bottom:646.440000pt;}
.y5a_c00206{bottom:647.226667pt;}
.y5b_c00206{bottom:647.973333pt;}
.y58_c00206{bottom:648.360000pt;}
.y55_c00206{bottom:663.400000pt;}
.y52_c00206{bottom:663.773333pt;}
.y53_c00206{bottom:664.560000pt;}
.y54_c00206{bottom:665.306667pt;}
.y51_c00206{bottom:665.693333pt;}
.y50_c00206{bottom:682.640000pt;}
.y4e_c00206{bottom:683.026667pt;}
.y4f_c00206{bottom:683.973333pt;}
.y4b_c00206{bottom:698.440000pt;}
.y49_c00206{bottom:699.400000pt;}
.y4a_c00206{bottom:700.360000pt;}
.y4c_c00206{bottom:700.560000pt;}
.y4d_c00206{bottom:701.306667pt;}
.y45_c00206{bottom:715.773333pt;}
.y48_c00206{bottom:715.973333pt;}
.y46_c00206{bottom:716.733333pt;}
.y44_c00206{bottom:717.693333pt;}
.y47_c00206{bottom:718.640000pt;}
.y40_c00206{bottom:733.106667pt;}
.y42_c00206{bottom:733.493333pt;}
.y41_c00206{bottom:735.026667pt;}
.y43_c00206{bottom:735.973333pt;}
.y3f_c00206{bottom:751.773333pt;}
.y3e_c00206{bottom:752.733333pt;}
.y3d_c00206{bottom:753.693333pt;}
.y3b_c00206{bottom:767.026667pt;}
.y3c_c00206{bottom:767.973333pt;}
.y3a_c00206{bottom:769.106667pt;}
.y38_c00206{bottom:769.693333pt;}
.y37_c00206{bottom:770.640000pt;}
.y39_c00206{bottom:771.026667pt;}
.y36_c00206{bottom:785.306667pt;}
.y2f_c00206{bottom:786.440000pt;}
.y31_c00206{bottom:787.026667pt;}
.y35_c00206{bottom:787.226667pt;}
.y32_c00206{bottom:787.400000pt;}
.y30_c00206{bottom:787.973333pt;}
.y34_c00206{bottom:788.360000pt;}
.y33_c00206{bottom:789.306667pt;}
.y2d_c00206{bottom:801.693333pt;}
.y2c_c00206{bottom:803.773333pt;}
.y2a_c00206{bottom:804.560000pt;}
.y2e_c00206{bottom:805.306667pt;}
.y2b_c00206{bottom:805.693333pt;}
.y29_c00206{bottom:820.360000pt;}
.y27_c00206{bottom:821.106667pt;}
.y25_c00206{bottom:822.066667pt;}
.y26_c00206{bottom:823.026667pt;}
.y28_c00206{bottom:823.226667pt;}
.y22_c00206{bottom:837.493333pt;}
.y23_c00206{bottom:838.440000pt;}
.y24_c00206{bottom:839.773333pt;}
.y21_c00206{bottom:840.360000pt;}
.y1f_c00206{bottom:855.773333pt;}
.y1d_c00206{bottom:857.306667pt;}
.y1e_c00206{bottom:857.693333pt;}
.y1c_c00206{bottom:857.893333pt;}
.y20_c00206{bottom:858.640000pt;}
.y19_c00206{bottom:873.106667pt;}
.y1b_c00206{bottom:874.066667pt;}
.y17_c00206{bottom:875.026667pt;}
.y18_c00206{bottom:875.226667pt;}
.y1a_c00206{bottom:875.973333pt;}
.y16_c00206{bottom:890.440000pt;}
.y14_c00206{bottom:892.360000pt;}
.y15_c00206{bottom:892.560000pt;}
.ye_c00206{bottom:907.773333pt;}
.yd_c00206{bottom:907.973333pt;}
.y13_c00206{bottom:908.733333pt;}
.y11_c00206{bottom:909.106667pt;}
.y10_c00206{bottom:909.693333pt;}
.y12_c00206{bottom:909.893333pt;}
.yf_c00206{bottom:911.026667pt;}
.yc_c00206{bottom:925.106667pt;}
.y9_c00206{bottom:926.066667pt;}
.ya_c00206{bottom:927.026667pt;}
.yb_c00206{bottom:927.226667pt;}
.y8_c00206{bottom:943.773333pt;}
.y3_c00206{bottom:944.560000pt;}
.y7_c00206{bottom:944.733333pt;}
.y5_c00206{bottom:945.306667pt;}
.y4_c00206{bottom:945.693333pt;}
.y6_c00206{bottom:946.640000pt;}
.y2_c00206{bottom:977.693333pt;}
.y1_c00206{bottom:979.600000pt;}
.h8_c00206{height:3.739141pt;}
.h9_c00206{height:12.988594pt;}
.h3_c00206{height:20.466875pt;}
.h1_c00206{height:22.303646pt;}
.h4_c00206{height:27.879557pt;}
.h2_c00206{height:31.618698pt;}
.ha_c00206{height:33.212891pt;}
.h5_c00206{height:35.357839pt;}
.h6_c00206{height:39.031380pt;}
.h7_c00206{height:42.770521pt;}
.h0_c00206{height:1186.666667pt;}
.w0_c00206{width:782.666667pt;}
.x0_c00206{left:0.000000pt;}
.x9e_c00206{left:135.040000pt;}
.x73_c00206{left:136.000000pt;}
.x3_c00206{left:137.333333pt;}
.x4a_c00206{left:150.293333pt;}
.x102_c00206{left:151.626667pt;}
.x6b_c00206{left:153.333333pt;}
.x4_c00206{left:157.706667pt;}
.xdc_c00206{left:158.666667pt;}
.x93_c00206{left:160.000000pt;}
.x2a_c00206{left:161.333333pt;}
.xdd_c00206{left:163.626667pt;}
.xbb_c00206{left:165.706667pt;}
.x10b_c00206{left:167.626667pt;}
.xc2_c00206{left:169.706667pt;}
.xe6_c00206{left:170.666667pt;}
.xde_c00206{left:171.626667pt;}
.x82_c00206{left:172.960000pt;}
.xd7_c00206{left:176.000000pt;}
.x43_c00206{left:177.333333pt;}
.x1d_c00206{left:178.666667pt;}
.x5_c00206{left:180.000000pt;}
.x6c_c00206{left:182.293333pt;}
.xad_c00206{left:184.000000pt;}
.x37_c00206{left:185.333333pt;}
.x79_c00206{left:188.000000pt;}
.xd2_c00206{left:188.960000pt;}
.x12_c00206{left:190.666667pt;}
.x8a_c00206{left:192.373333pt;}
.x44_c00206{left:194.293333pt;}
.xb5_c00206{left:195.626667pt;}
.x74_c00206{left:197.706667pt;}
.x53_c00206{left:198.666667pt;}
.x2b_c00206{left:201.333333pt;}
.x105_c00206{left:203.040000pt;}
.x94_c00206{left:204.000000pt;}
.x9f_c00206{left:204.960000pt;}
.xe7_c00206{left:207.626667pt;}
.x38_c00206{left:211.040000pt;}
.xe0_c00206{left:212.000000pt;}
.x45_c00206{left:213.706667pt;}
.x63_c00206{left:216.000000pt;}
.x1e_c00206{left:220.373333pt;}
.x8b_c00206{left:222.293333pt;}
.xb6_c00206{left:224.373333pt;}
.xd8_c00206{left:225.333333pt;}
.xf2_c00206{left:227.626667pt;}
.xf6_c00206{left:229.333333pt;}
.xa0_c00206{left:230.666667pt;}
.x54_c00206{left:233.333333pt;}
.x7a_c00206{left:234.666667pt;}
.x6d_c00206{left:236.000000pt;}
.xf9_c00206{left:236.960000pt;}
.x95_c00206{left:238.666667pt;}
.x75_c00206{left:240.000000pt;}
.x13_c00206{left:241.333333pt;}
.xcb_c00206{left:243.040000pt;}
.x39_c00206{left:244.373333pt;}
.x1f_c00206{left:245.706667pt;}
.xf3_c00206{left:246.666667pt;}
.x2c_c00206{left:249.333333pt;}
.x103_c00206{left:250.293333pt;}
.xe2_c00206{left:252.000000pt;}
.xc8_c00206{left:253.333333pt;}
.x7b_c00206{left:256.373333pt;}
.xfb_c00206{left:257.706667pt;}
.x6_c00206{left:258.666667pt;}
.x2d_c00206{left:260.000000pt;}
.x5d_c00206{left:261.333333pt;}
.x14_c00206{left:263.040000pt;}
.x98_c00206{left:264.373333pt;}
.x104_c00206{left:265.333333pt;}
.xe8_c00206{left:266.666667pt;}
.x64_c00206{left:268.000000pt;}
.xae_c00206{left:269.706667pt;}
.xbc_c00206{left:270.666667pt;}
.xd3_c00206{left:272.000000pt;}
.x83_c00206{left:273.333333pt;}
.xfa_c00206{left:274.293333pt;}
.xc3_c00206{left:276.000000pt;}
.xd9_c00206{left:278.293333pt;}
.x7c_c00206{left:280.000000pt;}
.x46_c00206{left:281.333333pt;}
.x55_c00206{left:284.000000pt;}
.x96_c00206{left:284.960000pt;}
.xcc_c00206{left:287.040000pt;}
.x15_c00206{left:288.373333pt;}
.x76_c00206{left:293.706667pt;}
.x8c_c00206{left:294.666667pt;}
.xd4_c00206{left:295.626667pt;}
.x3a_c00206{left:297.706667pt;}
.xe9_c00206{left:298.666667pt;}
.x97_c00206{left:300.000000pt;}
.x20_c00206{left:303.040000pt;}
.xa1_c00206{left:305.333333pt;}
.xc4_c00206{left:308.000000pt;}
.x2e_c00206{left:308.960000pt;}
.xe3_c00206{left:310.293333pt;}
.x106_c00206{left:312.373333pt;}
.x47_c00206{left:313.706667pt;}
.xfc_c00206{left:314.666667pt;}
.x4b_c00206{left:316.573333pt;}
.x65_c00206{left:318.666667pt;}
.xcd_c00206{left:320.373333pt;}
.x3b_c00206{left:322.293333pt;}
.xf7_c00206{left:324.000000pt;}
.x7_c00206{left:326.293333pt;}
.x6e_c00206{left:328.373333pt;}
.xa2_c00206{left:329.706667pt;}
.x4c_c00206{left:330.666667pt;}
.xaf_c00206{left:332.373333pt;}
.x21_c00206{left:337.333333pt;}
.x16_c00206{left:338.666667pt;}
.x84_c00206{left:340.000000pt;}
.x7d_c00206{left:340.960000pt;}
.x99_c00206{left:342.293333pt;}
.x8_c00206{left:344.373333pt;}
.x10c_c00206{left:345.333333pt;}
.x4d_c00206{left:346.666667pt;}
.x56_c00206{left:348.000000pt;}
.x77_c00206{left:350.666667pt;}
.x3c_c00206{left:352.000000pt;}
.x22_c00206{left:353.706667pt;}
.xe1_c00206{left:356.000000pt;}
.x1_c00206{left:357.333333pt;}
.x8d_c00206{left:360.000000pt;}
.x4e_c00206{left:361.333333pt;}
.x6f_c00206{left:363.626667pt;}
.xc5_c00206{left:365.706667pt;}
.x9_c00206{left:367.626667pt;}
.x9a_c00206{left:370.666667pt;}
.x5e_c00206{left:372.000000pt;}
.x107_c00206{left:374.293333pt;}
.xb0_c00206{left:376.000000pt;}
.x4f_c00206{left:378.293333pt;}
.x17_c00206{left:380.000000pt;}
.x7e_c00206{left:381.706667pt;}
.x66_c00206{left:382.666667pt;}
.x85_c00206{left:384.000000pt;}
.x23_c00206{left:387.040000pt;}
.x48_c00206{left:388.960000pt;}
.xa3_c00206{left:392.000000pt;}
.x2f_c00206{left:393.706667pt;}
.xf4_c00206{left:397.333333pt;}
.xa_c00206{left:398.293333pt;}
.x3d_c00206{left:401.333333pt;}
.x5f_c00206{left:403.626667pt;}
.x70_c00206{left:405.333333pt;}
.xa8_c00206{left:408.000000pt;}
.xbd_c00206{left:412.000000pt;}
.xb_c00206{left:415.040000pt;}
.x49_c00206{left:416.000000pt;}
.x30_c00206{left:418.293333pt;}
.x8e_c00206{left:419.626667pt;}
.x78_c00206{left:421.333333pt;}
.x50_c00206{left:424.000000pt;}
.xa4_c00206{left:425.333333pt;}
.xfd_c00206{left:428.000000pt;}
.xc9_c00206{left:430.293333pt;}
.xdf_c00206{left:432.000000pt;}
.x18_c00206{left:433.333333pt;}
.xf8_c00206{left:437.333333pt;}
.xc_c00206{left:438.666667pt;}
.x67_c00206{left:442.666667pt;}
.x60_c00206{left:444.960000pt;}
.xea_c00206{left:446.293333pt;}
.x8f_c00206{left:448.000000pt;}
.x3e_c00206{left:449.706667pt;}
.x24_c00206{left:452.373333pt;}
.x108_c00206{left:453.333333pt;}
.xb1_c00206{left:454.666667pt;}
.x57_c00206{left:456.373333pt;}
.x86_c00206{left:459.040000pt;}
.xc6_c00206{left:461.333333pt;}
.xd_c00206{left:466.666667pt;}
.x3f_c00206{left:468.373333pt;}
.x19_c00206{left:469.706667pt;}
.xda_c00206{left:470.666667pt;}
.xe4_c00206{left:472.373333pt;}
.x61_c00206{left:473.333333pt;}
.x7f_c00206{left:476.000000pt;}
.x25_c00206{left:476.960000pt;}
.x58_c00206{left:479.626667pt;}
.xbe_c00206{left:481.706667pt;}
.xc7_c00206{left:483.626667pt;}
.x90_c00206{left:485.333333pt;}
.xa9_c00206{left:486.666667pt;}
.xeb_c00206{left:489.333333pt;}
.x31_c00206{left:490.293333pt;}
.xb2_c00206{left:492.373333pt;}
.x68_c00206{left:493.333333pt;}
.x10d_c00206{left:494.666667pt;}
.x9b_c00206{left:495.626667pt;}
.x71_c00206{left:496.960000pt;}
.x40_c00206{left:499.040000pt;}
.xfe_c00206{left:500.373333pt;}
.x87_c00206{left:501.333333pt;}
.x32_c00206{left:507.040000pt;}
.xb7_c00206{left:508.373333pt;}
.x59_c00206{left:511.626667pt;}
.x26_c00206{left:514.666667pt;}
.xa5_c00206{left:515.626667pt;}
.xbf_c00206{left:517.333333pt;}
.xd5_c00206{left:520.000000pt;}
.x109_c00206{left:521.706667pt;}
.xb3_c00206{left:522.666667pt;}
.x41_c00206{left:524.000000pt;}
.xaa_c00206{left:525.706667pt;}
.x62_c00206{left:526.666667pt;}
.x5a_c00206{left:528.373333pt;}
.x88_c00206{left:529.333333pt;}
.x33_c00206{left:530.666667pt;}
.xb8_c00206{left:532.000000pt;}
.xa6_c00206{left:533.333333pt;}
.x1a_c00206{left:534.666667pt;}
.xef_c00206{left:536.373333pt;}
.x9c_c00206{left:537.333333pt;}
.xe_c00206{left:539.040000pt;}
.xce_c00206{left:541.333333pt;}
.x91_c00206{left:544.000000pt;}
.xa7_c00206{left:545.333333pt;}
.xdb_c00206{left:548.000000pt;}
.x10a_c00206{left:549.333333pt;}
.x27_c00206{left:550.666667pt;}
.x10e_c00206{left:554.666667pt;}
.xf0_c00206{left:556.373333pt;}
.xab_c00206{left:557.333333pt;}
.x51_c00206{left:559.040000pt;}
.x80_c00206{left:560.373333pt;}
.x5b_c00206{left:561.333333pt;}
.xf5_c00206{left:562.293333pt;}
.xc0_c00206{left:564.000000pt;}
.x34_c00206{left:564.960000pt;}
.x72_c00206{left:568.000000pt;}
.xf_c00206{left:569.333333pt;}
.x89_c00206{left:570.293333pt;}
.xff_c00206{left:572.000000pt;}
.xd6_c00206{left:573.333333pt;}
.x28_c00206{left:575.426667pt;}
.xb9_c00206{left:577.333333pt;}
.x69_c00206{left:578.666667pt;}
.x35_c00206{left:581.706667pt;}
.xb4_c00206{left:583.040000pt;}
.xec_c00206{left:584.000000pt;}
.x92_c00206{left:585.333333pt;}
.x9d_c00206{left:586.293333pt;}
.xee_c00206{left:588.000000pt;}
.x10_c00206{left:589.706667pt;}
.x81_c00206{left:593.706667pt;}
.xcf_c00206{left:597.333333pt;}
.xc1_c00206{left:598.293333pt;}
.xca_c00206{left:600.373333pt;}
.x100_c00206{left:601.333333pt;}
.x36_c00206{left:605.706667pt;}
.x42_c00206{left:606.666667pt;}
.x1b_c00206{left:608.000000pt;}
.x52_c00206{left:609.333333pt;}
.xe5_c00206{left:610.666667pt;}
.x29_c00206{left:612.373333pt;}
.x11_c00206{left:613.706667pt;}
.x6a_c00206{left:617.333333pt;}
.xac_c00206{left:619.040000pt;}
.xd0_c00206{left:620.960000pt;}
.x5c_c00206{left:622.666667pt;}
.xed_c00206{left:624.373333pt;}
.xd1_c00206{left:625.333333pt;}
.xf1_c00206{left:627.040000pt;}
.x2_c00206{left:629.706667pt;}
.x1c_c00206{left:631.040000pt;}
.xba_c00206{left:637.333333pt;}
.x101_c00206{left:640.000000pt;}
.x10f_c00206{left:642.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_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_36f687a6a4a71831434cfece.woff2')format("woff");}.ff1_c00207{font-family:ff1_c00207;line-height:1.688965;font-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_c00207{transform:matrix(0.009801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009801,0.000000,0.000000,0.250000,0,0);}
.m8_c00207{transform:matrix(0.013602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013602,0.000000,0.000000,0.250000,0,0);}
.m6_c00207{transform:matrix(0.028436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028436,0.000000,0.000000,0.250000,0,0);}
.m4_c00207{transform:matrix(0.040969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040969,0.000000,0.000000,0.250000,0,0);}
.m7_c00207{transform:matrix(0.066358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066358,0.000000,0.000000,0.250000,0,0);}
.m9_c00207{transform:matrix(0.067380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067380,0.000000,0.000000,0.250000,0,0);}
.m2_c00207{transform:matrix(0.134528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134528,0.000000,0.000000,0.250000,0,0);}
.m3_c00207{transform:matrix(0.164110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164110,0.000000,0.000000,0.250000,0,0);}
.m0_c00207{transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);}
.m1_c00207{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,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;}
.fs1_c00207{font-size:20.400000px;}
.fs0_c00207{font-size:35.700000px;}
.fs3_c00207{font-size:39.120000px;}
.fs2_c00207{font-size:52.740000px;}
.fs7_c00207{font-size:68.040000px;}
.fs9_c00207{font-size:71.460000px;}
.fs4_c00207{font-size:100.320000px;}
.fs6_c00207{font-size:113.940000px;}
.fs8_c00207{font-size:159.900000px;}
.fs5_c00207{font-size:183.660000px;}
.y0_c00207{bottom:0.000000px;}
.y3_c00207{bottom:475.455000px;}
.y4_c00207{bottom:502.680000px;}
.y5_c00207{bottom:534.975000px;}
.y6_c00207{bottom:591.255000px;}
.y7_c00207{bottom:667.185000px;}
.y8_c00207{bottom:715.650000px;}
.y9_c00207{bottom:760.785000px;}
.ya_c00207{bottom:825.585000px;}
.y1_c00207{bottom:1097.745000px;}
.y2_c00207{bottom:1099.050000px;}
.h2_c00207{height:25.091602px;}
.h1_c00207{height:43.910303px;}
.h4_c00207{height:48.116836px;}
.h3_c00207{height:64.869170px;}
.h8_c00207{height:83.687871px;}
.ha_c00207{height:87.894404px;}
.h5_c00207{height:123.391641px;}
.h7_c00207{height:140.143975px;}
.h9_c00207{height:196.673877px;}
.h6_c00207{height:225.898213px;}
.h0_c00207{height:1335.000000px;}
.w0_c00207{width:880.500000px;}
.x0_c00207{left:0.000000px;}
.x1_c00207{left:152.775000px;}
.x2_c00207{left:399.000000px;}
.x3_c00207{left:665.145000px;}
.x5_c00207{left:667.695000px;}
.x4_c00207{left:669.000000px;}
@media print{
.v0_c00207{vertical-align:0.000000pt;}
.ls0_c00207{letter-spacing:0.000000pt;}
.ws0_c00207{word-spacing:0.000000pt;}
.fs1_c00207{font-size:18.133333pt;}
.fs0_c00207{font-size:31.733333pt;}
.fs3_c00207{font-size:34.773333pt;}
.fs2_c00207{font-size:46.880000pt;}
.fs7_c00207{font-size:60.480000pt;}
.fs9_c00207{font-size:63.520000pt;}
.fs4_c00207{font-size:89.173333pt;}
.fs6_c00207{font-size:101.280000pt;}
.fs8_c00207{font-size:142.133333pt;}
.fs5_c00207{font-size:163.253333pt;}
.y0_c00207{bottom:0.000000pt;}
.y3_c00207{bottom:422.626667pt;}
.y4_c00207{bottom:446.826667pt;}
.y5_c00207{bottom:475.533333pt;}
.y6_c00207{bottom:525.560000pt;}
.y7_c00207{bottom:593.053333pt;}
.y8_c00207{bottom:636.133333pt;}
.y9_c00207{bottom:676.253333pt;}
.ya_c00207{bottom:733.853333pt;}
.y1_c00207{bottom:975.773333pt;}
.y2_c00207{bottom:976.933333pt;}
.h2_c00207{height:22.303646pt;}
.h1_c00207{height:39.031380pt;}
.h4_c00207{height:42.770521pt;}
.h3_c00207{height:57.661484pt;}
.h8_c00207{height:74.389219pt;}
.ha_c00207{height:78.128359pt;}
.h5_c00207{height:109.681458pt;}
.h7_c00207{height:124.572422pt;}
.h9_c00207{height:174.821224pt;}
.h6_c00207{height:200.798411pt;}
.h0_c00207{height:1186.666667pt;}
.w0_c00207{width:782.666667pt;}
.x0_c00207{left:0.000000pt;}
.x1_c00207{left:135.800000pt;}
.x2_c00207{left:354.666667pt;}
.x3_c00207{left:591.240000pt;}
.x5_c00207{left:593.506667pt;}
.x4_c00207{left:594.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_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_b3600a8fa2f1be7a28cb06c0.woff2')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7c_c00208{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00208{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m9c_c00208{transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);}
.m86_c00208{transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);}
.m26_c00208{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m67_c00208{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m64_c00208{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m11_c00208{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mcb_c00208{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mb1_c00208{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m76_c00208{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mb_c00208{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.mb6_c00208{transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);}
.m69_c00208{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m3f_c00208{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.md_c00208{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.me1_c00208{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m10_c00208{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mc5_c00208{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m21_c00208{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m9a_c00208{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.ma5_c00208{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.me3_c00208{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m49_c00208{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m65_c00208{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mb4_c00208{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m99_c00208{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m3_c00208{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.md2_c00208{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.m8c_c00208{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m66_c00208{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m82_c00208{transform:matrix(0.405675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405675,0.000000,0.000000,0.250000,0,0);}
.mdf_c00208{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m55_c00208{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m92_c00208{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m48_c00208{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m78_c00208{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m4a_c00208{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m7b_c00208{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.md3_c00208{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m91_c00208{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.ma_c00208{transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);}
.m94_c00208{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.mc0_c00208{transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);}
.mb8_c00208{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m7_c00208{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m96_c00208{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.md0_c00208{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.mde_c00208{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.ma7_c00208{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m8e_c00208{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.mba_c00208{transform:matrix(0.421150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421150,0.000000,0.000000,0.250000,0,0);}
.m27_c00208{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.mb9_c00208{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m5c_c00208{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.ma3_c00208{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m29_c00208{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m18_c00208{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m4_c00208{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m73_c00208{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mc6_c00208{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.m4e_c00208{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.mb3_c00208{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.m45_c00208{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.mae_c00208{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m31_c00208{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mdc_c00208{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.md9_c00208{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m5d_c00208{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.ma1_c00208{transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);}
.mab_c00208{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.mc1_c00208{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m12_c00208{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m8a_c00208{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m9_c00208{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.ma4_c00208{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.m32_c00208{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.mc3_c00208{transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);}
.m25_c00208{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mc4_c00208{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m5f_c00208{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m59_c00208{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m88_c00208{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.mac_c00208{transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);}
.mb5_c00208{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m1c_c00208{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.ma8_c00208{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m4b_c00208{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mbb_c00208{transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);}
.mad_c00208{transform:matrix(0.467647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467647,0.000000,0.000000,0.250000,0,0);}
.maf_c00208{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.mbd_c00208{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m83_c00208{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.md4_c00208{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.mda_c00208{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m22_c00208{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.md6_c00208{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mb7_c00208{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m6c_c00208{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m6b_c00208{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m6a_c00208{transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);}
.m0_c00208{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m57_c00208{transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);}
.m93_c00208{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m9b_c00208{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m44_c00208{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);}
.m63_c00208{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m3a_c00208{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m9d_c00208{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m53_c00208{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m43_c00208{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m5b_c00208{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.mdd_c00208{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m72_c00208{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m71_c00208{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m85_c00208{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.mcf_c00208{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mbe_c00208{transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);}
.me2_c00208{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m3e_c00208{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m5_c00208{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m16_c00208{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m4f_c00208{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m70_c00208{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m1d_c00208{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m5e_c00208{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m80_c00208{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m7d_c00208{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m60_c00208{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m79_c00208{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.mf_c00208{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mdb_c00208{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m15_c00208{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m9e_c00208{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m46_c00208{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.md5_c00208{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m9f_c00208{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m14_c00208{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m89_c00208{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m34_c00208{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m6d_c00208{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m42_c00208{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mcc_c00208{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m47_c00208{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m95_c00208{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m13_c00208{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.md7_c00208{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m3b_c00208{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m87_c00208{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m8f_c00208{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m2_c00208{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m4d_c00208{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mc8_c00208{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m8b_c00208{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m35_c00208{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m2b_c00208{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.maa_c00208{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m50_c00208{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mc_c00208{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.ma6_c00208{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m54_c00208{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m98_c00208{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m1e_c00208{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m23_c00208{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m84_c00208{transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);}
.me0_c00208{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m20_c00208{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m30_c00208{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m5a_c00208{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m6f_c00208{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m37_c00208{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m52_c00208{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m41_c00208{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m77_c00208{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m74_c00208{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m39_c00208{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.me_c00208{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m6_c00208{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m75_c00208{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.md1_c00208{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m1f_c00208{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m58_c00208{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m97_c00208{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m38_c00208{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m2a_c00208{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mb2_c00208{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m81_c00208{transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);}
.m24_c00208{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m40_c00208{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m33_c00208{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.m4c_c00208{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m17_c00208{transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);}
.ma2_c00208{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_c00208{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m2e_c00208{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.ma0_c00208{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mbc_c00208{transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);}
.m1b_c00208{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m2d_c00208{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mbf_c00208{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.md8_c00208{transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);}
.m28_c00208{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mcd_c00208{transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);}
.m2f_c00208{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.m61_c00208{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m90_c00208{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.mce_c00208{transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);}
.m3d_c00208{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m51_c00208{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m36_c00208{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m19_c00208{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m7f_c00208{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m2c_c00208{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m68_c00208{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m56_c00208{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m6e_c00208{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m7e_c00208{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mb0_c00208{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);}
.mc9_c00208{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.mc7_c00208{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.ma9_c00208{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m1a_c00208{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m62_c00208{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m8d_c00208{transform:matrix(0.781765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.781765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.781765,0.000000,0.000000,0.250000,0,0);}
.m3c_c00208{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m7a_c00208{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mc2_c00208{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.mca_c00208{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-5.273301px;}
.ws1_c00208{word-spacing:0.000000px;}
.fc0_c00208{color:transparent;}
.fs7_c00208{font-size:3.420000px;}
.fs5_c00208{font-size:18.720000px;}
.fs1_c00208{font-size:20.400000px;}
.fs3_c00208{font-size:25.500000px;}
.fs0_c00208{font-size:28.920000px;}
.fs4_c00208{font-size:32.340000px;}
.fs2_c00208{font-size:35.700000px;}
.fs6_c00208{font-size:39.120000px;}
.y0_c00208{bottom:0.000000px;}
.ybe_c00208{bottom:253.245000px;}
.ybd_c00208{bottom:255.405000px;}
.yb9_c00208{bottom:271.905000px;}
.yb8_c00208{bottom:272.745000px;}
.yb7_c00208{bottom:274.905000px;}
.ybb_c00208{bottom:275.130000px;}
.yba_c00208{bottom:275.970000px;}
.ybc_c00208{bottom:276.405000px;}
.yb2_c00208{bottom:291.405000px;}
.yb1_c00208{bottom:292.245000px;}
.yb6_c00208{bottom:293.745000px;}
.yb4_c00208{bottom:294.405000px;}
.yb3_c00208{bottom:294.630000px;}
.yb5_c00208{bottom:295.470000px;}
.yae_c00208{bottom:312.825000px;}
.yad_c00208{bottom:313.245000px;}
.ya9_c00208{bottom:313.905000px;}
.yaf_c00208{bottom:314.130000px;}
.yb0_c00208{bottom:314.970000px;}
.yab_c00208{bottom:315.405000px;}
.yac_c00208{bottom:315.420000px;}
.yaa_c00208{bottom:316.470000px;}
.ya7_c00208{bottom:333.405000px;}
.ya8_c00208{bottom:334.470000px;}
.ya4_c00208{bottom:348.825000px;}
.ya6_c00208{bottom:349.905000px;}
.y9f_c00208{bottom:350.745000px;}
.ya5_c00208{bottom:351.630000px;}
.ya3_c00208{bottom:351.825000px;}
.ya2_c00208{bottom:352.245000px;}
.y9e_c00208{bottom:352.905000px;}
.ya0_c00208{bottom:353.325000px;}
.ya1_c00208{bottom:354.405000px;}
.y9c_c00208{bottom:370.245000px;}
.y9d_c00208{bottom:371.745000px;}
.y9a_c00208{bottom:373.905000px;}
.y9b_c00208{bottom:373.920000px;}
.y98_c00208{bottom:391.245000px;}
.y95_c00208{bottom:393.405000px;}
.y96_c00208{bottom:393.630000px;}
.y99_c00208{bottom:394.470000px;}
.y97_c00208{bottom:394.920000px;}
.y93_c00208{bottom:409.905000px;}
.y90_c00208{bottom:410.745000px;}
.y94_c00208{bottom:411.630000px;}
.y92_c00208{bottom:411.825000px;}
.y91_c00208{bottom:412.920000px;}
.y8d_c00208{bottom:430.245000px;}
.y8f_c00208{bottom:432.405000px;}
.y8e_c00208{bottom:432.420000px;}
.y88_c00208{bottom:461.970000px;}
.y8c_c00208{bottom:462.405000px;}
.y87_c00208{bottom:462.825000px;}
.y8b_c00208{bottom:463.050000px;}
.y86_c00208{bottom:463.905000px;}
.y8a_c00208{bottom:464.970000px;}
.y89_c00208{bottom:466.050000px;}
.y85_c00208{bottom:481.905000px;}
.y82_c00208{bottom:482.325000px;}
.y83_c00208{bottom:482.550000px;}
.y80_c00208{bottom:483.405000px;}
.y84_c00208{bottom:484.050000px;}
.y81_c00208{bottom:485.550000px;}
.y7f_c00208{bottom:514.245000px;}
.y7c_c00208{bottom:568.245000px;}
.y7e_c00208{bottom:569.130000px;}
.y7d_c00208{bottom:570.405000px;}
.y78_c00208{bottom:587.745000px;}
.y7b_c00208{bottom:588.630000px;}
.y7a_c00208{bottom:588.825000px;}
.y77_c00208{bottom:589.470000px;}
.y79_c00208{bottom:589.905000px;}
.y73_c00208{bottom:607.245000px;}
.y76_c00208{bottom:608.325000px;}
.y75_c00208{bottom:608.745000px;}
.y72_c00208{bottom:609.405000px;}
.y74_c00208{bottom:610.470000px;}
.y70_c00208{bottom:626.745000px;}
.y6c_c00208{bottom:627.180000px;}
.y71_c00208{bottom:628.245000px;}
.y6f_c00208{bottom:628.905000px;}
.y6e_c00208{bottom:629.130000px;}
.y6d_c00208{bottom:630.405000px;}
.y6a_c00208{bottom:647.745000px;}
.y6b_c00208{bottom:649.905000px;}
.y67_c00208{bottom:664.905000px;}
.y68_c00208{bottom:667.245000px;}
.y69_c00208{bottom:668.970000px;}
.y66_c00208{bottom:669.405000px;}
.y63_c00208{bottom:686.745000px;}
.y62_c00208{bottom:688.905000px;}
.y64_c00208{bottom:689.130000px;}
.y65_c00208{bottom:689.970000px;}
.y5d_c00208{bottom:705.405000px;}
.y5c_c00208{bottom:706.245000px;}
.y61_c00208{bottom:707.325000px;}
.y5e_c00208{bottom:708.405000px;}
.y60_c00208{bottom:708.825000px;}
.y5f_c00208{bottom:709.470000px;}
.y59_c00208{bottom:724.905000px;}
.y56_c00208{bottom:725.745000px;}
.y54_c00208{bottom:725.970000px;}
.y57_c00208{bottom:726.825000px;}
.y5a_c00208{bottom:727.245000px;}
.y55_c00208{bottom:727.905000px;}
.y5b_c00208{bottom:728.130000px;}
.y58_c00208{bottom:728.970000px;}
.y52_c00208{bottom:745.245000px;}
.y53_c00208{bottom:745.680000px;}
.y4d_c00208{bottom:746.745000px;}
.y50_c00208{bottom:747.405000px;}
.y4e_c00208{bottom:747.630000px;}
.y4f_c00208{bottom:748.470000px;}
.y51_c00208{bottom:748.905000px;}
.y4c_c00208{bottom:764.970000px;}
.y4a_c00208{bottom:766.245000px;}
.y49_c00208{bottom:767.130000px;}
.y4b_c00208{bottom:768.405000px;}
.y44_c00208{bottom:785.745000px;}
.y47_c00208{bottom:786.630000px;}
.y46_c00208{bottom:786.825000px;}
.y45_c00208{bottom:787.905000px;}
.y48_c00208{bottom:788.970000px;}
.y43_c00208{bottom:804.405000px;}
.y41_c00208{bottom:807.405000px;}
.y42_c00208{bottom:808.470000px;}
.y3f_c00208{bottom:823.905000px;}
.y3d_c00208{bottom:824.745000px;}
.y3e_c00208{bottom:826.905000px;}
.y40_c00208{bottom:827.130000px;}
.y3b_c00208{bottom:844.245000px;}
.y37_c00208{bottom:844.905000px;}
.y3a_c00208{bottom:845.745000px;}
.y36_c00208{bottom:846.405000px;}
.y39_c00208{bottom:846.630000px;}
.y38_c00208{bottom:847.470000px;}
.y3c_c00208{bottom:847.905000px;}
.y35_c00208{bottom:862.905000px;}
.y2d_c00208{bottom:863.745000px;}
.y32_c00208{bottom:864.405000px;}
.y2f_c00208{bottom:864.630000px;}
.y30_c00208{bottom:864.825000px;}
.y33_c00208{bottom:865.245000px;}
.y2e_c00208{bottom:865.470000px;}
.y34_c00208{bottom:866.130000px;}
.y31_c00208{bottom:867.405000px;}
.y2a_c00208{bottom:882.405000px;}
.y2b_c00208{bottom:884.745000px;}
.y27_c00208{bottom:885.405000px;}
.y28_c00208{bottom:885.630000px;}
.y2c_c00208{bottom:885.825000px;}
.y29_c00208{bottom:886.905000px;}
.y25_c00208{bottom:904.245000px;}
.y26_c00208{bottom:906.405000px;}
.y24_c00208{bottom:921.405000px;}
.y23_c00208{bottom:923.745000px;}
.y22_c00208{bottom:924.630000px;}
.y21_c00208{bottom:925.905000px;}
.y1f_c00208{bottom:943.245000px;}
.y1e_c00208{bottom:944.970000px;}
.y1d_c00208{bottom:945.405000px;}
.y20_c00208{bottom:946.470000px;}
.y1b_c00208{bottom:964.470000px;}
.y1a_c00208{bottom:964.905000px;}
.y1c_c00208{bottom:965.130000px;}
.y18_c00208{bottom:982.245000px;}
.y15_c00208{bottom:984.405000px;}
.y16_c00208{bottom:984.630000px;}
.y17_c00208{bottom:985.470000px;}
.y19_c00208{bottom:985.905000px;}
.y12_c00208{bottom:1001.325000px;}
.y13_c00208{bottom:1001.745000px;}
.y14_c00208{bottom:1003.470000px;}
.y10_c00208{bottom:1003.905000px;}
.y11_c00208{bottom:1004.970000px;}
.yd_c00208{bottom:1021.245000px;}
.yc_c00208{bottom:1023.405000px;}
.yf_c00208{bottom:1023.630000px;}
.ye_c00208{bottom:1024.470000px;}
.y9_c00208{bottom:1040.745000px;}
.ya_c00208{bottom:1042.905000px;}
.yb_c00208{bottom:1043.130000px;}
.y8_c00208{bottom:1059.825000px;}
.y7_c00208{bottom:1061.325000px;}
.y4_c00208{bottom:1061.745000px;}
.y3_c00208{bottom:1062.405000px;}
.y6_c00208{bottom:1063.470000px;}
.y5_c00208{bottom:1063.905000px;}
.y1_c00208{bottom:1099.905000px;}
.y2_c00208{bottom:1102.050000px;}
.h8_c00208{height:4.206533px;}
.h6_c00208{height:23.025234px;}
.h2_c00208{height:25.091602px;}
.h4_c00208{height:31.364502px;}
.h1_c00208{height:35.571035px;}
.h5_c00208{height:39.777568px;}
.h3_c00208{height:43.910303px;}
.h7_c00208{height:48.116836px;}
.h0_c00208{height:1335.000000px;}
.w0_c00208{width:880.500000px;}
.x0_c00208{left:0.000000px;}
.x3_c00208{left:151.500000px;}
.x59_c00208{left:152.580000px;}
.xe2_c00208{left:154.080000px;}
.x4d_c00208{left:166.500000px;}
.xce_c00208{left:168.000000px;}
.x45_c00208{left:169.500000px;}
.x8d_c00208{left:172.920000px;}
.x3b_c00208{left:178.080000px;}
.xef_c00208{left:180.420000px;}
.xbe_c00208{left:183.420000px;}
.xdc_c00208{left:184.920000px;}
.x30_c00208{left:190.500000px;}
.x6a_c00208{left:191.580000px;}
.xbb_c00208{left:195.000000px;}
.x46_c00208{left:198.000000px;}
.x1a_c00208{left:199.500000px;}
.x60_c00208{left:201.420000px;}
.x7e_c00208{left:205.080000px;}
.xb1_c00208{left:207.420000px;}
.x86_c00208{left:208.500000px;}
.x4e_c00208{left:210.000000px;}
.x4_c00208{left:212.580000px;}
.x31_c00208{left:216.000000px;}
.x26_c00208{left:217.500000px;}
.x78_c00208{left:218.580000px;}
.x1b_c00208{left:222.855000px;}
.xe_c00208{left:223.920000px;}
.xbf_c00208{left:225.420000px;}
.x5a_c00208{left:226.920000px;}
.x47_c00208{left:228.000000px;}
.x71_c00208{left:230.580000px;}
.xe3_c00208{left:232.080000px;}
.x4f_c00208{left:235.920000px;}
.x6b_c00208{left:237.000000px;}
.xcc_c00208{left:241.080000px;}
.x8e_c00208{left:243.000000px;}
.x3c_c00208{left:244.500000px;}
.xaa_c00208{left:246.000000px;}
.xa3_c00208{left:247.500000px;}
.xd5_c00208{left:249.000000px;}
.x72_c00208{left:250.920000px;}
.xb4_c00208{left:253.500000px;}
.x27_c00208{left:255.000000px;}
.xf_c00208{left:256.080000px;}
.xd3_c00208{left:259.500000px;}
.xd7_c00208{left:261.000000px;}
.x61_c00208{left:262.500000px;}
.x7f_c00208{left:268.500000px;}
.xbc_c00208{left:270.000000px;}
.x87_c00208{left:271.500000px;}
.x97_c00208{left:274.080000px;}
.xc0_c00208{left:276.000000px;}
.x32_c00208{left:280.500000px;}
.xd8_c00208{left:282.000000px;}
.x1c_c00208{left:283.500000px;}
.x28_c00208{left:285.000000px;}
.xb5_c00208{left:286.920000px;}
.x9d_c00208{left:288.420000px;}
.x73_c00208{left:289.500000px;}
.x5_c00208{left:291.420000px;}
.x6c_c00208{left:292.500000px;}
.xe4_c00208{left:294.000000px;}
.xc9_c00208{left:295.080000px;}
.x1d_c00208{left:297.000000px;}
.x33_c00208{left:298.500000px;}
.x48_c00208{left:301.920000px;}
.x3d_c00208{left:305.580000px;}
.xcf_c00208{left:308.355000px;}
.x50_c00208{left:313.080000px;}
.x10_c00208{left:314.580000px;}
.x9e_c00208{left:316.920000px;}
.xc7_c00208{left:321.000000px;}
.x1e_c00208{left:322.500000px;}
.x3e_c00208{left:324.000000px;}
.x34_c00208{left:325.500000px;}
.x49_c00208{left:328.500000px;}
.x51_c00208{left:331.500000px;}
.xe5_c00208{left:333.000000px;}
.xab_c00208{left:334.920000px;}
.xa4_c00208{left:337.500000px;}
.x6_c00208{left:341.580000px;}
.x62_c00208{left:343.500000px;}
.xe6_c00208{left:345.420000px;}
.xc8_c00208{left:346.920000px;}
.x92_c00208{left:348.000000px;}
.xd6_c00208{left:349.080000px;}
.x1f_c00208{left:351.420000px;}
.x98_c00208{left:354.000000px;}
.x35_c00208{left:355.500000px;}
.xb6_c00208{left:357.000000px;}
.x6d_c00208{left:360.000000px;}
.x11_c00208{left:363.000000px;}
.xd0_c00208{left:364.920000px;}
.xdd_c00208{left:366.000000px;}
.xac_c00208{left:370.920000px;}
.xd9_c00208{left:372.000000px;}
.x79_c00208{left:373.080000px;}
.xca_c00208{left:375.000000px;}
.x7_c00208{left:376.500000px;}
.x3f_c00208{left:378.000000px;}
.x8f_c00208{left:379.500000px;}
.xb7_c00208{left:382.500000px;}
.x74_c00208{left:383.580000px;}
.x20_c00208{left:387.000000px;}
.x52_c00208{left:388.080000px;}
.x88_c00208{left:390.420000px;}
.xa5_c00208{left:391.500000px;}
.xe7_c00208{left:393.420000px;}
.x40_c00208{left:394.920000px;}
.x12_c00208{left:396.000000px;}
.x2_c00208{left:397.500000px;}
.x63_c00208{left:399.000000px;}
.x29_c00208{left:400.920000px;}
.xbd_c00208{left:402.000000px;}
.x4a_c00208{left:405.420000px;}
.xa6_c00208{left:409.500000px;}
.x9f_c00208{left:410.580000px;}
.x80_c00208{left:412.500000px;}
.x5b_c00208{left:414.420000px;}
.xec_c00208{left:418.500000px;}
.xad_c00208{left:420.000000px;}
.xc1_c00208{left:421.500000px;}
.xd4_c00208{left:423.000000px;}
.xa7_c00208{left:424.500000px;}
.xe8_c00208{left:429.000000px;}
.xa0_c00208{left:430.080000px;}
.x99_c00208{left:432.000000px;}
.x36_c00208{left:433.500000px;}
.x93_c00208{left:436.920000px;}
.x53_c00208{left:439.080000px;}
.x75_c00208{left:443.580000px;}
.x5c_c00208{left:445.920000px;}
.x90_c00208{left:447.000000px;}
.x7a_c00208{left:448.500000px;}
.xb2_c00208{left:450.420000px;}
.x41_c00208{left:453.000000px;}
.xda_c00208{left:454.080000px;}
.x89_c00208{left:455.580000px;}
.xa8_c00208{left:458.580000px;}
.x21_c00208{left:460.920000px;}
.x13_c00208{left:463.500000px;}
.xe1_c00208{left:468.000000px;}
.x4b_c00208{left:470.580000px;}
.x42_c00208{left:472.920000px;}
.xde_c00208{left:475.920000px;}
.x64_c00208{left:478.080000px;}
.x5d_c00208{left:480.000000px;}
.x8_c00208{left:482.580000px;}
.xcb_c00208{left:485.580000px;}
.x9a_c00208{left:487.500000px;}
.xd1_c00208{left:489.000000px;}
.x2a_c00208{left:490.500000px;}
.x76_c00208{left:492.000000px;}
.x22_c00208{left:493.920000px;}
.x54_c00208{left:496.500000px;}
.x8a_c00208{left:499.920000px;}
.x37_c00208{left:501.420000px;}
.xb8_c00208{left:502.500000px;}
.xc2_c00208{left:507.420000px;}
.x65_c00208{left:508.500000px;}
.xcd_c00208{left:509.580000px;}
.x9_c00208{left:514.500000px;}
.x4c_c00208{left:516.000000px;}
.xae_c00208{left:517.500000px;}
.x14_c00208{left:519.420000px;}
.x81_c00208{left:522.000000px;}
.x23_c00208{left:525.000000px;}
.xd2_c00208{left:526.920000px;}
.x6e_c00208{left:531.000000px;}
.xc3_c00208{left:532.500000px;}
.x7b_c00208{left:533.580000px;}
.xed_c00208{left:536.580000px;}
.xe9_c00208{left:538.500000px;}
.x91_c00208{left:539.580000px;}
.x38_c00208{left:541.920000px;}
.x77_c00208{left:544.500000px;}
.x15_c00208{left:547.500000px;}
.x66_c00208{left:550.500000px;}
.x7c_c00208{left:553.920000px;}
.x5e_c00208{left:558.420000px;}
.x2b_c00208{left:560.580000px;}
.xdf_c00208{left:564.000000px;}
.xaf_c00208{left:565.080000px;}
.xb9_c00208{left:567.420000px;}
.x6f_c00208{left:568.500000px;}
.xb3_c00208{left:571.500000px;}
.x67_c00208{left:573.420000px;}
.x55_c00208{left:574.920000px;}
.xa_c00208{left:579.855000px;}
.xea_c00208{left:583.500000px;}
.x16_c00208{left:584.580000px;}
.x9b_c00208{left:588.420000px;}
.xc4_c00208{left:591.420000px;}
.x94_c00208{left:592.500000px;}
.x2c_c00208{left:594.000000px;}
.x82_c00208{left:595.920000px;}
.xdb_c00208{left:597.000000px;}
.x43_c00208{left:598.500000px;}
.x56_c00208{left:601.920000px;}
.x17_c00208{left:604.920000px;}
.xba_c00208{left:606.000000px;}
.xa9_c00208{left:609.000000px;}
.x68_c00208{left:615.000000px;}
.xc5_c00208{left:618.000000px;}
.x2d_c00208{left:622.500000px;}
.xeb_c00208{left:623.580000px;}
.xb_c00208{left:625.275000px;}
.x7d_c00208{left:627.420000px;}
.x8b_c00208{left:628.920000px;}
.x18_c00208{left:631.500000px;}
.x70_c00208{left:633.000000px;}
.x5f_c00208{left:637.920000px;}
.x83_c00208{left:640.080000px;}
.x39_c00208{left:643.500000px;}
.xa1_c00208{left:646.500000px;}
.x24_c00208{left:649.500000px;}
.x44_c00208{left:652.920000px;}
.x57_c00208{left:655.500000px;}
.x95_c00208{left:658.920000px;}
.x3a_c00208{left:660.000000px;}
.x84_c00208{left:661.920000px;}
.xc6_c00208{left:664.500000px;}
.xee_c00208{left:665.580000px;}
.xa2_c00208{left:667.920000px;}
.xb0_c00208{left:672.000000px;}
.x8c_c00208{left:675.420000px;}
.x69_c00208{left:679.920000px;}
.x2e_c00208{left:685.080000px;}
.xc_c00208{left:688.080000px;}
.x85_c00208{left:690.420000px;}
.x19_c00208{left:693.000000px;}
.xe0_c00208{left:699.420000px;}
.x9c_c00208{left:700.500000px;}
.x1_c00208{left:703.920000px;}
.x2f_c00208{left:706.920000px;}
.x96_c00208{left:709.500000px;}
.x58_c00208{left:715.080000px;}
.x25_c00208{left:717.000000px;}
.xd_c00208{left:721.500000px;}
@media print{
.v0_c00208{vertical-align:0.000000pt;}
.ls0_c00208{letter-spacing:0.000000pt;}
.ws0_c00208{word-spacing:-4.687378pt;}
.ws1_c00208{word-spacing:0.000000pt;}
.fs7_c00208{font-size:3.040000pt;}
.fs5_c00208{font-size:16.640000pt;}
.fs1_c00208{font-size:18.133333pt;}
.fs3_c00208{font-size:22.666667pt;}
.fs0_c00208{font-size:25.706667pt;}
.fs4_c00208{font-size:28.746667pt;}
.fs2_c00208{font-size:31.733333pt;}
.fs6_c00208{font-size:34.773333pt;}
.y0_c00208{bottom:0.000000pt;}
.ybe_c00208{bottom:225.106667pt;}
.ybd_c00208{bottom:227.026667pt;}
.yb9_c00208{bottom:241.693333pt;}
.yb8_c00208{bottom:242.440000pt;}
.yb7_c00208{bottom:244.360000pt;}
.ybb_c00208{bottom:244.560000pt;}
.yba_c00208{bottom:245.306667pt;}
.ybc_c00208{bottom:245.693333pt;}
.yb2_c00208{bottom:259.026667pt;}
.yb1_c00208{bottom:259.773333pt;}
.yb6_c00208{bottom:261.106667pt;}
.yb4_c00208{bottom:261.693333pt;}
.yb3_c00208{bottom:261.893333pt;}
.yb5_c00208{bottom:262.640000pt;}
.yae_c00208{bottom:278.066667pt;}
.yad_c00208{bottom:278.440000pt;}
.ya9_c00208{bottom:279.026667pt;}
.yaf_c00208{bottom:279.226667pt;}
.yb0_c00208{bottom:279.973333pt;}
.yab_c00208{bottom:280.360000pt;}
.yac_c00208{bottom:280.373333pt;}
.yaa_c00208{bottom:281.306667pt;}
.ya7_c00208{bottom:296.360000pt;}
.ya8_c00208{bottom:297.306667pt;}
.ya4_c00208{bottom:310.066667pt;}
.ya6_c00208{bottom:311.026667pt;}
.y9f_c00208{bottom:311.773333pt;}
.ya5_c00208{bottom:312.560000pt;}
.ya3_c00208{bottom:312.733333pt;}
.ya2_c00208{bottom:313.106667pt;}
.y9e_c00208{bottom:313.693333pt;}
.ya0_c00208{bottom:314.066667pt;}
.ya1_c00208{bottom:315.026667pt;}
.y9c_c00208{bottom:329.106667pt;}
.y9d_c00208{bottom:330.440000pt;}
.y9a_c00208{bottom:332.360000pt;}
.y9b_c00208{bottom:332.373333pt;}
.y98_c00208{bottom:347.773333pt;}
.y95_c00208{bottom:349.693333pt;}
.y96_c00208{bottom:349.893333pt;}
.y99_c00208{bottom:350.640000pt;}
.y97_c00208{bottom:351.040000pt;}
.y93_c00208{bottom:364.360000pt;}
.y90_c00208{bottom:365.106667pt;}
.y94_c00208{bottom:365.893333pt;}
.y92_c00208{bottom:366.066667pt;}
.y91_c00208{bottom:367.040000pt;}
.y8d_c00208{bottom:382.440000pt;}
.y8f_c00208{bottom:384.360000pt;}
.y8e_c00208{bottom:384.373333pt;}
.y88_c00208{bottom:410.640000pt;}
.y8c_c00208{bottom:411.026667pt;}
.y87_c00208{bottom:411.400000pt;}
.y8b_c00208{bottom:411.600000pt;}
.y86_c00208{bottom:412.360000pt;}
.y8a_c00208{bottom:413.306667pt;}
.y89_c00208{bottom:414.266667pt;}
.y85_c00208{bottom:428.360000pt;}
.y82_c00208{bottom:428.733333pt;}
.y83_c00208{bottom:428.933333pt;}
.y80_c00208{bottom:429.693333pt;}
.y84_c00208{bottom:430.266667pt;}
.y81_c00208{bottom:431.600000pt;}
.y7f_c00208{bottom:457.106667pt;}
.y7c_c00208{bottom:505.106667pt;}
.y7e_c00208{bottom:505.893333pt;}
.y7d_c00208{bottom:507.026667pt;}
.y78_c00208{bottom:522.440000pt;}
.y7b_c00208{bottom:523.226667pt;}
.y7a_c00208{bottom:523.400000pt;}
.y77_c00208{bottom:523.973333pt;}
.y79_c00208{bottom:524.360000pt;}
.y73_c00208{bottom:539.773333pt;}
.y76_c00208{bottom:540.733333pt;}
.y75_c00208{bottom:541.106667pt;}
.y72_c00208{bottom:541.693333pt;}
.y74_c00208{bottom:542.640000pt;}
.y70_c00208{bottom:557.106667pt;}
.y6c_c00208{bottom:557.493333pt;}
.y71_c00208{bottom:558.440000pt;}
.y6f_c00208{bottom:559.026667pt;}
.y6e_c00208{bottom:559.226667pt;}
.y6d_c00208{bottom:560.360000pt;}
.y6a_c00208{bottom:575.773333pt;}
.y6b_c00208{bottom:577.693333pt;}
.y67_c00208{bottom:591.026667pt;}
.y68_c00208{bottom:593.106667pt;}
.y69_c00208{bottom:594.640000pt;}
.y66_c00208{bottom:595.026667pt;}
.y63_c00208{bottom:610.440000pt;}
.y62_c00208{bottom:612.360000pt;}
.y64_c00208{bottom:612.560000pt;}
.y65_c00208{bottom:613.306667pt;}
.y5d_c00208{bottom:627.026667pt;}
.y5c_c00208{bottom:627.773333pt;}
.y61_c00208{bottom:628.733333pt;}
.y5e_c00208{bottom:629.693333pt;}
.y60_c00208{bottom:630.066667pt;}
.y5f_c00208{bottom:630.640000pt;}
.y59_c00208{bottom:644.360000pt;}
.y56_c00208{bottom:645.106667pt;}
.y54_c00208{bottom:645.306667pt;}
.y57_c00208{bottom:646.066667pt;}
.y5a_c00208{bottom:646.440000pt;}
.y55_c00208{bottom:647.026667pt;}
.y5b_c00208{bottom:647.226667pt;}
.y58_c00208{bottom:647.973333pt;}
.y52_c00208{bottom:662.440000pt;}
.y53_c00208{bottom:662.826667pt;}
.y4d_c00208{bottom:663.773333pt;}
.y50_c00208{bottom:664.360000pt;}
.y4e_c00208{bottom:664.560000pt;}
.y4f_c00208{bottom:665.306667pt;}
.y51_c00208{bottom:665.693333pt;}
.y4c_c00208{bottom:679.973333pt;}
.y4a_c00208{bottom:681.106667pt;}
.y49_c00208{bottom:681.893333pt;}
.y4b_c00208{bottom:683.026667pt;}
.y44_c00208{bottom:698.440000pt;}
.y47_c00208{bottom:699.226667pt;}
.y46_c00208{bottom:699.400000pt;}
.y45_c00208{bottom:700.360000pt;}
.y48_c00208{bottom:701.306667pt;}
.y43_c00208{bottom:715.026667pt;}
.y41_c00208{bottom:717.693333pt;}
.y42_c00208{bottom:718.640000pt;}
.y3f_c00208{bottom:732.360000pt;}
.y3d_c00208{bottom:733.106667pt;}
.y3e_c00208{bottom:735.026667pt;}
.y40_c00208{bottom:735.226667pt;}
.y3b_c00208{bottom:750.440000pt;}
.y37_c00208{bottom:751.026667pt;}
.y3a_c00208{bottom:751.773333pt;}
.y36_c00208{bottom:752.360000pt;}
.y39_c00208{bottom:752.560000pt;}
.y38_c00208{bottom:753.306667pt;}
.y3c_c00208{bottom:753.693333pt;}
.y35_c00208{bottom:767.026667pt;}
.y2d_c00208{bottom:767.773333pt;}
.y32_c00208{bottom:768.360000pt;}
.y2f_c00208{bottom:768.560000pt;}
.y30_c00208{bottom:768.733333pt;}
.y33_c00208{bottom:769.106667pt;}
.y2e_c00208{bottom:769.306667pt;}
.y34_c00208{bottom:769.893333pt;}
.y31_c00208{bottom:771.026667pt;}
.y2a_c00208{bottom:784.360000pt;}
.y2b_c00208{bottom:786.440000pt;}
.y27_c00208{bottom:787.026667pt;}
.y28_c00208{bottom:787.226667pt;}
.y2c_c00208{bottom:787.400000pt;}
.y29_c00208{bottom:788.360000pt;}
.y25_c00208{bottom:803.773333pt;}
.y26_c00208{bottom:805.693333pt;}
.y24_c00208{bottom:819.026667pt;}
.y23_c00208{bottom:821.106667pt;}
.y22_c00208{bottom:821.893333pt;}
.y21_c00208{bottom:823.026667pt;}
.y1f_c00208{bottom:838.440000pt;}
.y1e_c00208{bottom:839.973333pt;}
.y1d_c00208{bottom:840.360000pt;}
.y20_c00208{bottom:841.306667pt;}
.y1b_c00208{bottom:857.306667pt;}
.y1a_c00208{bottom:857.693333pt;}
.y1c_c00208{bottom:857.893333pt;}
.y18_c00208{bottom:873.106667pt;}
.y15_c00208{bottom:875.026667pt;}
.y16_c00208{bottom:875.226667pt;}
.y17_c00208{bottom:875.973333pt;}
.y19_c00208{bottom:876.360000pt;}
.y12_c00208{bottom:890.066667pt;}
.y13_c00208{bottom:890.440000pt;}
.y14_c00208{bottom:891.973333pt;}
.y10_c00208{bottom:892.360000pt;}
.y11_c00208{bottom:893.306667pt;}
.yd_c00208{bottom:907.773333pt;}
.yc_c00208{bottom:909.693333pt;}
.yf_c00208{bottom:909.893333pt;}
.ye_c00208{bottom:910.640000pt;}
.y9_c00208{bottom:925.106667pt;}
.ya_c00208{bottom:927.026667pt;}
.yb_c00208{bottom:927.226667pt;}
.y8_c00208{bottom:942.066667pt;}
.y7_c00208{bottom:943.400000pt;}
.y4_c00208{bottom:943.773333pt;}
.y3_c00208{bottom:944.360000pt;}
.y6_c00208{bottom:945.306667pt;}
.y5_c00208{bottom:945.693333pt;}
.y1_c00208{bottom:977.693333pt;}
.y2_c00208{bottom:979.600000pt;}
.h8_c00208{height:3.739141pt;}
.h6_c00208{height:20.466875pt;}
.h2_c00208{height:22.303646pt;}
.h4_c00208{height:27.879557pt;}
.h1_c00208{height:31.618698pt;}
.h5_c00208{height:35.357839pt;}
.h3_c00208{height:39.031380pt;}
.h7_c00208{height:42.770521pt;}
.h0_c00208{height:1186.666667pt;}
.w0_c00208{width:782.666667pt;}
.x0_c00208{left:0.000000pt;}
.x3_c00208{left:134.666667pt;}
.x59_c00208{left:135.626667pt;}
.xe2_c00208{left:136.960000pt;}
.x4d_c00208{left:148.000000pt;}
.xce_c00208{left:149.333333pt;}
.x45_c00208{left:150.666667pt;}
.x8d_c00208{left:153.706667pt;}
.x3b_c00208{left:158.293333pt;}
.xef_c00208{left:160.373333pt;}
.xbe_c00208{left:163.040000pt;}
.xdc_c00208{left:164.373333pt;}
.x30_c00208{left:169.333333pt;}
.x6a_c00208{left:170.293333pt;}
.xbb_c00208{left:173.333333pt;}
.x46_c00208{left:176.000000pt;}
.x1a_c00208{left:177.333333pt;}
.x60_c00208{left:179.040000pt;}
.x7e_c00208{left:182.293333pt;}
.xb1_c00208{left:184.373333pt;}
.x86_c00208{left:185.333333pt;}
.x4e_c00208{left:186.666667pt;}
.x4_c00208{left:188.960000pt;}
.x31_c00208{left:192.000000pt;}
.x26_c00208{left:193.333333pt;}
.x78_c00208{left:194.293333pt;}
.x1b_c00208{left:198.093333pt;}
.xe_c00208{left:199.040000pt;}
.xbf_c00208{left:200.373333pt;}
.x5a_c00208{left:201.706667pt;}
.x47_c00208{left:202.666667pt;}
.x71_c00208{left:204.960000pt;}
.xe3_c00208{left:206.293333pt;}
.x4f_c00208{left:209.706667pt;}
.x6b_c00208{left:210.666667pt;}
.xcc_c00208{left:214.293333pt;}
.x8e_c00208{left:216.000000pt;}
.x3c_c00208{left:217.333333pt;}
.xaa_c00208{left:218.666667pt;}
.xa3_c00208{left:220.000000pt;}
.xd5_c00208{left:221.333333pt;}
.x72_c00208{left:223.040000pt;}
.xb4_c00208{left:225.333333pt;}
.x27_c00208{left:226.666667pt;}
.xf_c00208{left:227.626667pt;}
.xd3_c00208{left:230.666667pt;}
.xd7_c00208{left:232.000000pt;}
.x61_c00208{left:233.333333pt;}
.x7f_c00208{left:238.666667pt;}
.xbc_c00208{left:240.000000pt;}
.x87_c00208{left:241.333333pt;}
.x97_c00208{left:243.626667pt;}
.xc0_c00208{left:245.333333pt;}
.x32_c00208{left:249.333333pt;}
.xd8_c00208{left:250.666667pt;}
.x1c_c00208{left:252.000000pt;}
.x28_c00208{left:253.333333pt;}
.xb5_c00208{left:255.040000pt;}
.x9d_c00208{left:256.373333pt;}
.x73_c00208{left:257.333333pt;}
.x5_c00208{left:259.040000pt;}
.x6c_c00208{left:260.000000pt;}
.xe4_c00208{left:261.333333pt;}
.xc9_c00208{left:262.293333pt;}
.x1d_c00208{left:264.000000pt;}
.x33_c00208{left:265.333333pt;}
.x48_c00208{left:268.373333pt;}
.x3d_c00208{left:271.626667pt;}
.xcf_c00208{left:274.093333pt;}
.x50_c00208{left:278.293333pt;}
.x10_c00208{left:279.626667pt;}
.x9e_c00208{left:281.706667pt;}
.xc7_c00208{left:285.333333pt;}
.x1e_c00208{left:286.666667pt;}
.x3e_c00208{left:288.000000pt;}
.x34_c00208{left:289.333333pt;}
.x49_c00208{left:292.000000pt;}
.x51_c00208{left:294.666667pt;}
.xe5_c00208{left:296.000000pt;}
.xab_c00208{left:297.706667pt;}
.xa4_c00208{left:300.000000pt;}
.x6_c00208{left:303.626667pt;}
.x62_c00208{left:305.333333pt;}
.xe6_c00208{left:307.040000pt;}
.xc8_c00208{left:308.373333pt;}
.x92_c00208{left:309.333333pt;}
.xd6_c00208{left:310.293333pt;}
.x1f_c00208{left:312.373333pt;}
.x98_c00208{left:314.666667pt;}
.x35_c00208{left:316.000000pt;}
.xb6_c00208{left:317.333333pt;}
.x6d_c00208{left:320.000000pt;}
.x11_c00208{left:322.666667pt;}
.xd0_c00208{left:324.373333pt;}
.xdd_c00208{left:325.333333pt;}
.xac_c00208{left:329.706667pt;}
.xd9_c00208{left:330.666667pt;}
.x79_c00208{left:331.626667pt;}
.xca_c00208{left:333.333333pt;}
.x7_c00208{left:334.666667pt;}
.x3f_c00208{left:336.000000pt;}
.x8f_c00208{left:337.333333pt;}
.xb7_c00208{left:340.000000pt;}
.x74_c00208{left:340.960000pt;}
.x20_c00208{left:344.000000pt;}
.x52_c00208{left:344.960000pt;}
.x88_c00208{left:347.040000pt;}
.xa5_c00208{left:348.000000pt;}
.xe7_c00208{left:349.706667pt;}
.x40_c00208{left:351.040000pt;}
.x12_c00208{left:352.000000pt;}
.x2_c00208{left:353.333333pt;}
.x63_c00208{left:354.666667pt;}
.x29_c00208{left:356.373333pt;}
.xbd_c00208{left:357.333333pt;}
.x4a_c00208{left:360.373333pt;}
.xa6_c00208{left:364.000000pt;}
.x9f_c00208{left:364.960000pt;}
.x80_c00208{left:366.666667pt;}
.x5b_c00208{left:368.373333pt;}
.xec_c00208{left:372.000000pt;}
.xad_c00208{left:373.333333pt;}
.xc1_c00208{left:374.666667pt;}
.xd4_c00208{left:376.000000pt;}
.xa7_c00208{left:377.333333pt;}
.xe8_c00208{left:381.333333pt;}
.xa0_c00208{left:382.293333pt;}
.x99_c00208{left:384.000000pt;}
.x36_c00208{left:385.333333pt;}
.x93_c00208{left:388.373333pt;}
.x53_c00208{left:390.293333pt;}
.x75_c00208{left:394.293333pt;}
.x5c_c00208{left:396.373333pt;}
.x90_c00208{left:397.333333pt;}
.x7a_c00208{left:398.666667pt;}
.xb2_c00208{left:400.373333pt;}
.x41_c00208{left:402.666667pt;}
.xda_c00208{left:403.626667pt;}
.x89_c00208{left:404.960000pt;}
.xa8_c00208{left:407.626667pt;}
.x21_c00208{left:409.706667pt;}
.x13_c00208{left:412.000000pt;}
.xe1_c00208{left:416.000000pt;}
.x4b_c00208{left:418.293333pt;}
.x42_c00208{left:420.373333pt;}
.xde_c00208{left:423.040000pt;}
.x64_c00208{left:424.960000pt;}
.x5d_c00208{left:426.666667pt;}
.x8_c00208{left:428.960000pt;}
.xcb_c00208{left:431.626667pt;}
.x9a_c00208{left:433.333333pt;}
.xd1_c00208{left:434.666667pt;}
.x2a_c00208{left:436.000000pt;}
.x76_c00208{left:437.333333pt;}
.x22_c00208{left:439.040000pt;}
.x54_c00208{left:441.333333pt;}
.x8a_c00208{left:444.373333pt;}
.x37_c00208{left:445.706667pt;}
.xb8_c00208{left:446.666667pt;}
.xc2_c00208{left:451.040000pt;}
.x65_c00208{left:452.000000pt;}
.xcd_c00208{left:452.960000pt;}
.x9_c00208{left:457.333333pt;}
.x4c_c00208{left:458.666667pt;}
.xae_c00208{left:460.000000pt;}
.x14_c00208{left:461.706667pt;}
.x81_c00208{left:464.000000pt;}
.x23_c00208{left:466.666667pt;}
.xd2_c00208{left:468.373333pt;}
.x6e_c00208{left:472.000000pt;}
.xc3_c00208{left:473.333333pt;}
.x7b_c00208{left:474.293333pt;}
.xed_c00208{left:476.960000pt;}
.xe9_c00208{left:478.666667pt;}
.x91_c00208{left:479.626667pt;}
.x38_c00208{left:481.706667pt;}
.x77_c00208{left:484.000000pt;}
.x15_c00208{left:486.666667pt;}
.x66_c00208{left:489.333333pt;}
.x7c_c00208{left:492.373333pt;}
.x5e_c00208{left:496.373333pt;}
.x2b_c00208{left:498.293333pt;}
.xdf_c00208{left:501.333333pt;}
.xaf_c00208{left:502.293333pt;}
.xb9_c00208{left:504.373333pt;}
.x6f_c00208{left:505.333333pt;}
.xb3_c00208{left:508.000000pt;}
.x67_c00208{left:509.706667pt;}
.x55_c00208{left:511.040000pt;}
.xa_c00208{left:515.426667pt;}
.xea_c00208{left:518.666667pt;}
.x16_c00208{left:519.626667pt;}
.x9b_c00208{left:523.040000pt;}
.xc4_c00208{left:525.706667pt;}
.x94_c00208{left:526.666667pt;}
.x2c_c00208{left:528.000000pt;}
.x82_c00208{left:529.706667pt;}
.xdb_c00208{left:530.666667pt;}
.x43_c00208{left:532.000000pt;}
.x56_c00208{left:535.040000pt;}
.x17_c00208{left:537.706667pt;}
.xba_c00208{left:538.666667pt;}
.xa9_c00208{left:541.333333pt;}
.x68_c00208{left:546.666667pt;}
.xc5_c00208{left:549.333333pt;}
.x2d_c00208{left:553.333333pt;}
.xeb_c00208{left:554.293333pt;}
.xb_c00208{left:555.800000pt;}
.x7d_c00208{left:557.706667pt;}
.x8b_c00208{left:559.040000pt;}
.x18_c00208{left:561.333333pt;}
.x70_c00208{left:562.666667pt;}
.x5f_c00208{left:567.040000pt;}
.x83_c00208{left:568.960000pt;}
.x39_c00208{left:572.000000pt;}
.xa1_c00208{left:574.666667pt;}
.x24_c00208{left:577.333333pt;}
.x44_c00208{left:580.373333pt;}
.x57_c00208{left:582.666667pt;}
.x95_c00208{left:585.706667pt;}
.x3a_c00208{left:586.666667pt;}
.x84_c00208{left:588.373333pt;}
.xc6_c00208{left:590.666667pt;}
.xee_c00208{left:591.626667pt;}
.xa2_c00208{left:593.706667pt;}
.xb0_c00208{left:597.333333pt;}
.x8c_c00208{left:600.373333pt;}
.x69_c00208{left:604.373333pt;}
.x2e_c00208{left:608.960000pt;}
.xc_c00208{left:611.626667pt;}
.x85_c00208{left:613.706667pt;}
.x19_c00208{left:616.000000pt;}
.xe0_c00208{left:621.706667pt;}
.x9c_c00208{left:622.666667pt;}
.x1_c00208{left:625.706667pt;}
.x2f_c00208{left:628.373333pt;}
.x96_c00208{left:630.666667pt;}
.x58_c00208{left:635.626667pt;}
.x25_c00208{left:637.333333pt;}
.xd_c00208{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_61078115f585c49e0ba62424.woff2')format("woff");}.ff1_c00209{font-family:ff1_c00209;line-height:1.688965;font-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_c00209{transform:matrix(0.125294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125294,0.000000,0.000000,0.250000,0,0);}
.m9d_c00209{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m83_c00209{transform:matrix(0.361317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361317,0.000000,0.000000,0.250000,0,0);}
.m1e_c00209{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m7a_c00209{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.ma7_c00209{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m55_c00209{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m84_c00209{transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);}
.m28_c00209{transform:matrix(0.393321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393321,0.000000,0.000000,0.250000,0,0);}
.m44_c00209{transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);}
.m5b_c00209{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m5e_c00209{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m2c_c00209{transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);}
.m25_c00209{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m59_c00209{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m30_c00209{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m7d_c00209{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m87_c00209{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m61_c00209{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m85_c00209{transform:matrix(0.421150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421150,0.000000,0.000000,0.250000,0,0);}
.m10_c00209{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m70_c00209{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m89_c00209{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m1b_c00209{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m33_c00209{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m4d_c00209{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m2e_c00209{transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);}
.m4f_c00209{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m42_c00209{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m41_c00209{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m9e_c00209{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m47_c00209{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m52_c00209{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m11_c00209{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m7b_c00209{transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);}
.m88_c00209{transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);}
.m7c_c00209{transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);}
.m73_c00209{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.mc7_c00209{transform:matrix(0.450758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450758,0.000000,0.000000,0.250000,0,0);}
.m29_c00209{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m4c_c00209{transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);}
.m0_c00209{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m4b_c00209{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mc4_c00209{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.m2d_c00209{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m14_c00209{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m20_c00209{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m90_c00209{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m15_c00209{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.mb6_c00209{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.m3_c00209{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.m64_c00209{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.mb7_c00209{transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);}
.md_c00209{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m3e_c00209{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m34_c00209{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m23_c00209{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m6a_c00209{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m3a_c00209{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m97_c00209{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m4a_c00209{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.ma0_c00209{transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);}
.m82_c00209{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m94_c00209{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m5_c00209{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m31_c00209{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.mc8_c00209{transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);}
.m6c_c00209{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.mad_c00209{transform:matrix(0.495994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495994,0.000000,0.000000,0.250000,0,0);}
.m6e_c00209{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m1d_c00209{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_c00209{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m32_c00209{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m39_c00209{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m1c_c00209{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);}
.m26_c00209{transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);}
.m72_c00209{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m36_c00209{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m68_c00209{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mbf_c00209{transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);}
.m51_c00209{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m62_c00209{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m9a_c00209{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m86_c00209{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.m66_c00209{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m45_c00209{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m65_c00209{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m27_c00209{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m2f_c00209{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m3b_c00209{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.mc0_c00209{transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);}
.m53_c00209{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m67_c00209{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m17_c00209{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m9_c00209{transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);}
.m7f_c00209{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.ma1_c00209{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m5a_c00209{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m71_c00209{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m46_c00209{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m58_c00209{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m2b_c00209{transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);}
.m6b_c00209{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m1f_c00209{transform:matrix(0.557353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557353,0.000000,0.000000,0.250000,0,0);}
.m77_c00209{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.mbd_c00209{transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);}
.m79_c00209{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);}
.m60_c00209{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m95_c00209{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.mbc_c00209{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m80_c00209{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.m50_c00209{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m75_c00209{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m6d_c00209{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m40_c00209{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.ma6_c00209{transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);}
.m9b_c00209{transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);}
.m5d_c00209{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m19_c00209{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);}
.m69_c00209{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m3c_c00209{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m24_c00209{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m3d_c00209{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m48_c00209{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.mb3_c00209{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.m63_c00209{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);}
.m6f_c00209{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m4_c00209{transform:matrix(0.602206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602206,0.000000,0.000000,0.250000,0,0);}
.m74_c00209{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.ma5_c00209{transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);}
.m78_c00209{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m8b_c00209{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m5c_c00209{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m1_c00209{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.m8a_c00209{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.mbb_c00209{transform:matrix(0.614583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614583,0.000000,0.000000,0.250000,0,0);}
.m8d_c00209{transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);}
.m8e_c00209{transform:matrix(0.616740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616740,0.000000,0.000000,0.250000,0,0);}
.m1a_c00209{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mf_c00209{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.mb0_c00209{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.mc_c00209{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);}
.m9f_c00209{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m13_c00209{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m18_c00209{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m6_c00209{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.mba_c00209{transform:matrix(0.636218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636218,0.000000,0.000000,0.250000,0,0);}
.m12_c00209{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m5f_c00209{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.mb_c00209{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.mc5_c00209{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.m43_c00209{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m8_c00209{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m8c_c00209{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.ma_c00209{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m35_c00209{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m56_c00209{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m3f_c00209{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m98_c00209{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m54_c00209{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m37_c00209{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.m81_c00209{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.mb1_c00209{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.ma4_c00209{transform:matrix(0.680617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680617,0.000000,0.000000,0.250000,0,0);}
.m93_c00209{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mc1_c00209{transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);}
.mbe_c00209{transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);}
.m21_c00209{transform:matrix(0.683088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683088,0.000000,0.000000,0.250000,0,0);}
.m76_c00209{transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);}
.mb9_c00209{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.me_c00209{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.ma2_c00209{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.ma9_c00209{transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);}
.m91_c00209{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.m38_c00209{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.mc2_c00209{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m7e_c00209{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m9c_c00209{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m22_c00209{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m16_c00209{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);}
.m49_c00209{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.mb8_c00209{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.m57_c00209{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m99_c00209{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m92_c00209{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.ma3_c00209{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.m8f_c00209{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.mb2_c00209{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.mc6_c00209{transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);}
.mab_c00209{transform:matrix(0.786344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786344,0.000000,0.000000,0.250000,0,0);}
.maa_c00209{transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);}
.m96_c00209{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.ma8_c00209{transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);}
.maf_c00209{transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);}
.mc3_c00209{transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);}
.mb4_c00209{transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);}
.m2_c00209{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mae_c00209{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.m7_c00209{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.mac_c00209{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m4e_c00209{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00209{vertical-align:0.000000px;}
.v1_c00209{vertical-align:1.680000px;}
.ls1_c00209{letter-spacing:0.000000px;}
.ls0_c00209{letter-spacing:11.817600px;}
.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;}
}
.wse_c00209{word-spacing:0.000000px;}
.wsa_c00209{word-spacing:13.306168px;}
.wsb_c00209{word-spacing:29.395112px;}
.ws3_c00209{word-spacing:30.193299px;}
.ws1_c00209{word-spacing:30.427309px;}
.ws7_c00209{word-spacing:31.271145px;}
.ws8_c00209{word-spacing:32.702369px;}
.ws9_c00209{word-spacing:37.604892px;}
.ws6_c00209{word-spacing:45.638400px;}
.wsc_c00209{word-spacing:47.497848px;}
.wsd_c00209{word-spacing:49.633219px;}
.ws5_c00209{word-spacing:49.953969px;}
.ws4_c00209{word-spacing:57.018127px;}
.ws0_c00209{word-spacing:63.171858px;}
.ws2_c00209{word-spacing:76.841018px;}
._0_c00209{width:39.225225px;}
.fc0_c00209{color:transparent;}
.fs7_c00209{font-size:3.420000px;}
.fs8_c00209{font-size:11.880000px;}
.fs2_c00209{font-size:13.620000px;}
.fs5_c00209{font-size:18.720000px;}
.fs1_c00209{font-size:20.400000px;}
.fs4_c00209{font-size:25.500000px;}
.fs0_c00209{font-size:28.920000px;}
.fs3_c00209{font-size:32.340000px;}
.fs6_c00209{font-size:35.700000px;}
.y0_c00209{bottom:0.000000px;}
.yd2_c00209{bottom:243.630000px;}
.yd0_c00209{bottom:244.695000px;}
.yd1_c00209{bottom:244.920000px;}
.ycf_c00209{bottom:245.130000px;}
.yce_c00209{bottom:257.130000px;}
.ycb_c00209{bottom:258.195000px;}
.ycc_c00209{bottom:259.275000px;}
.yca_c00209{bottom:259.695000px;}
.ycd_c00209{bottom:259.920000px;}
.yc4_c00209{bottom:271.695000px;}
.yc9_c00209{bottom:272.130000px;}
.yc7_c00209{bottom:272.775000px;}
.yc5_c00209{bottom:273.195000px;}
.yc8_c00209{bottom:274.920000px;}
.yc6_c00209{bottom:277.275000px;}
.yc2_c00209{bottom:286.275000px;}
.yc3_c00209{bottom:286.695000px;}
.yc1_c00209{bottom:287.130000px;}
.yc0_c00209{bottom:299.130000px;}
.ybf_c00209{bottom:300.195000px;}
.ybc_c00209{bottom:300.630000px;}
.ybd_c00209{bottom:301.275000px;}
.ybe_c00209{bottom:301.695000px;}
.ybb_c00209{bottom:312.630000px;}
.yb9_c00209{bottom:314.130000px;}
.yba_c00209{bottom:315.420000px;}
.yb7_c00209{bottom:326.130000px;}
.yb8_c00209{bottom:327.195000px;}
.yb5_c00209{bottom:328.695000px;}
.yb6_c00209{bottom:328.920000px;}
.yb4_c00209{bottom:341.130000px;}
.yb3_c00209{bottom:342.420000px;}
.yb1_c00209{bottom:342.630000px;}
.yb2_c00209{bottom:343.695000px;}
.yb0_c00209{bottom:355.695000px;}
.yaf_c00209{bottom:355.920000px;}
.yae_c00209{bottom:357.195000px;}
.yad_c00209{bottom:369.195000px;}
.yac_c00209{bottom:369.420000px;}
.yaa_c00209{bottom:369.630000px;}
.yab_c00209{bottom:370.695000px;}
.ya9_c00209{bottom:381.630000px;}
.ya8_c00209{bottom:382.695000px;}
.ya4_c00209{bottom:383.130000px;}
.ya5_c00209{bottom:384.195000px;}
.ya7_c00209{bottom:384.420000px;}
.ya6_c00209{bottom:385.470000px;}
.ya1_c00209{bottom:397.695000px;}
.ya3_c00209{bottom:397.920000px;}
.ya0_c00209{bottom:398.130000px;}
.ya2_c00209{bottom:398.970000px;}
.y9f_c00209{bottom:399.195000px;}
.y9e_c00209{bottom:410.130000px;}
.y9c_c00209{bottom:411.195000px;}
.y9d_c00209{bottom:411.420000px;}
.y99_c00209{bottom:411.630000px;}
.y9a_c00209{bottom:412.275000px;}
.y9b_c00209{bottom:412.695000px;}
.y98_c00209{bottom:424.695000px;}
.y96_c00209{bottom:425.130000px;}
.y97_c00209{bottom:426.420000px;}
.y95_c00209{bottom:437.130000px;}
.y94_c00209{bottom:438.195000px;}
.y92_c00209{bottom:438.630000px;}
.y91_c00209{bottom:439.695000px;}
.y93_c00209{bottom:439.920000px;}
.y90_c00209{bottom:453.195000px;}
.y8f_c00209{bottom:465.630000px;}
.y8e_c00209{bottom:466.695000px;}
.y8d_c00209{bottom:468.195000px;}
.y8c_c00209{bottom:479.130000px;}
.y8b_c00209{bottom:480.195000px;}
.y8a_c00209{bottom:481.695000px;}
.y89_c00209{bottom:492.630000px;}
.y88_c00209{bottom:493.695000px;}
.y87_c00209{bottom:494.130000px;}
.y86_c00209{bottom:507.195000px;}
.y83_c00209{bottom:507.630000px;}
.y84_c00209{bottom:508.275000px;}
.y85_c00209{bottom:508.695000px;}
.y82_c00209{bottom:521.130000px;}
.y81_c00209{bottom:522.195000px;}
.y80_c00209{bottom:534.630000px;}
.y7f_c00209{bottom:535.695000px;}
.y7d_c00209{bottom:548.130000px;}
.y7c_c00209{bottom:548.550000px;}
.y7e_c00209{bottom:549.195000px;}
.y7b_c00209{bottom:549.630000px;}
.y7a_c00209{bottom:561.630000px;}
.y79_c00209{bottom:562.695000px;}
.y78_c00209{bottom:563.130000px;}
.y77_c00209{bottom:564.195000px;}
.y76_c00209{bottom:576.195000px;}
.y75_c00209{bottom:576.630000px;}
.y74_c00209{bottom:577.695000px;}
.y73_c00209{bottom:590.130000px;}
.y72_c00209{bottom:590.550000px;}
.y71_c00209{bottom:591.195000px;}
.y6f_c00209{bottom:603.630000px;}
.y70_c00209{bottom:604.695000px;}
.y6e_c00209{bottom:606.195000px;}
.y6d_c00209{bottom:618.195000px;}
.y6c_c00209{bottom:618.630000px;}
.y6b_c00209{bottom:619.695000px;}
.y6a_c00209{bottom:631.695000px;}
.y69_c00209{bottom:632.130000px;}
.y68_c00209{bottom:633.195000px;}
.y67_c00209{bottom:645.195000px;}
.y66_c00209{bottom:645.630000px;}
.y65_c00209{bottom:646.695000px;}
.y64_c00209{bottom:659.130000px;}
.y63_c00209{bottom:660.195000px;}
.y62_c00209{bottom:661.695000px;}
.y61_c00209{bottom:678.630000px;}
.y60_c00209{bottom:679.695000px;}
.y5f_c00209{bottom:691.695000px;}
.y5d_c00209{bottom:692.130000px;}
.y5e_c00209{bottom:693.195000px;}
.y5c_c00209{bottom:705.195000px;}
.y5b_c00209{bottom:706.695000px;}
.y5a_c00209{bottom:720.825000px;}
.y59_c00209{bottom:735.825000px;}
.y54_c00209{bottom:736.050000px;}
.y58_c00209{bottom:736.905000px;}
.y55_c00209{bottom:737.130000px;}
.y56_c00209{bottom:737.550000px;}
.y57_c00209{bottom:739.050000px;}
.y51_c00209{bottom:750.825000px;}
.y50_c00209{bottom:751.905000px;}
.y53_c00209{bottom:752.970000px;}
.y52_c00209{bottom:754.050000px;}
.y4f_c00209{bottom:765.825000px;}
.y4e_c00209{bottom:767.550000px;}
.y4d_c00209{bottom:767.970000px;}
.y4c_c00209{bottom:769.050000px;}
.y4b_c00209{bottom:785.550000px;}
.y4a_c00209{bottom:788.550000px;}
.y48_c00209{bottom:812.745000px;}
.y47_c00209{bottom:813.825000px;}
.y49_c00209{bottom:814.470000px;}
.y46_c00209{bottom:814.905000px;}
.y45_c00209{bottom:832.245000px;}
.y44_c00209{bottom:834.405000px;}
.y41_c00209{bottom:851.745000px;}
.y43_c00209{bottom:851.970000px;}
.y40_c00209{bottom:853.905000px;}
.y42_c00209{bottom:854.970000px;}
.y3c_c00209{bottom:870.405000px;}
.y39_c00209{bottom:871.245000px;}
.y3e_c00209{bottom:871.470000px;}
.y3b_c00209{bottom:873.405000px;}
.y3f_c00209{bottom:873.630000px;}
.y3d_c00209{bottom:874.470000px;}
.y3a_c00209{bottom:874.920000px;}
.y38_c00209{bottom:898.905000px;}
.y37_c00209{bottom:901.050000px;}
.y32_c00209{bottom:913.470000px;}
.y33_c00209{bottom:913.905000px;}
.y35_c00209{bottom:914.130000px;}
.y34_c00209{bottom:914.970000px;}
.y36_c00209{bottom:915.630000px;}
.y31_c00209{bottom:927.825000px;}
.y30_c00209{bottom:929.970000px;}
.y2c_c00209{bottom:942.825000px;}
.y2d_c00209{bottom:943.905000px;}
.y2f_c00209{bottom:944.970000px;}
.y2e_c00209{bottom:945.195000px;}
.y2b_c00209{bottom:946.050000px;}
.y27_c00209{bottom:958.050000px;}
.y28_c00209{bottom:958.905000px;}
.y26_c00209{bottom:959.130000px;}
.y2a_c00209{bottom:960.195000px;}
.y29_c00209{bottom:961.050000px;}
.y20_c00209{bottom:972.405000px;}
.y1f_c00209{bottom:973.050000px;}
.y24_c00209{bottom:973.470000px;}
.y23_c00209{bottom:973.905000px;}
.y25_c00209{bottom:974.130000px;}
.y21_c00209{bottom:974.550000px;}
.y22_c00209{bottom:974.970000px;}
.y1a_c00209{bottom:987.825000px;}
.y1c_c00209{bottom:988.470000px;}
.y1b_c00209{bottom:989.130000px;}
.y1e_c00209{bottom:989.550000px;}
.y1d_c00209{bottom:989.970000px;}
.y16_c00209{bottom:1001.550000px;}
.y18_c00209{bottom:1002.825000px;}
.y17_c00209{bottom:1004.970000px;}
.y19_c00209{bottom:1005.195000px;}
.y12_c00209{bottom:1016.325000px;}
.y11_c00209{bottom:1017.405000px;}
.y10_c00209{bottom:1018.050000px;}
.y15_c00209{bottom:1018.470000px;}
.y14_c00209{bottom:1019.130000px;}
.y13_c00209{bottom:1019.550000px;}
.yd_c00209{bottom:1031.325000px;}
.yc_c00209{bottom:1032.405000px;}
.yf_c00209{bottom:1033.470000px;}
.yb_c00209{bottom:1033.695000px;}
.ye_c00209{bottom:1034.550000px;}
.y9_c00209{bottom:1047.405000px;}
.ya_c00209{bottom:1049.550000px;}
.y7_c00209{bottom:1061.550000px;}
.y6_c00209{bottom:1062.195000px;}
.y4_c00209{bottom:1062.405000px;}
.y8_c00209{bottom:1063.050000px;}
.y3_c00209{bottom:1063.695000px;}
.y5_c00209{bottom:1064.550000px;}
.y2_c00209{bottom:1099.050000px;}
.y1_c00209{bottom:1099.905000px;}
.h9_c00209{height:4.206533px;}
.ha_c00209{height:14.612168px;}
.h3_c00209{height:16.752334px;}
.h7_c00209{height:23.025234px;}
.h2_c00209{height:25.091602px;}
.h5_c00209{height:31.364502px;}
.h6_c00209{height:33.044502px;}
.h1_c00209{height:35.571035px;}
.h4_c00209{height:39.777568px;}
.h8_c00209{height:43.910303px;}
.h0_c00209{height:1335.000000px;}
.w0_c00209{width:880.500000px;}
.x0_c00209{left:0.000000px;}
.x70_c00209{left:153.000000px;}
.x1_c00209{left:154.920000px;}
.x15_c00209{left:168.000000px;}
.x3_c00209{left:169.500000px;}
.x11_c00209{left:181.080000px;}
.x44_c00209{left:183.420000px;}
.x4_c00209{left:185.580000px;}
.x16_c00209{left:187.080000px;}
.x63_c00209{left:189.420000px;}
.x36_c00209{left:195.000000px;}
.x77_c00209{left:210.000000px;}
.x37_c00209{left:215.580000px;}
.x45_c00209{left:218.580000px;}
.x12_c00209{left:225.000000px;}
.x2f_c00209{left:243.000000px;}
.x5_c00209{left:252.000000px;}
.x13_c00209{left:255.420000px;}
.x64_c00209{left:258.000000px;}
.x17_c00209{left:262.920000px;}
.x24_c00209{left:265.920000px;}
.x4f_c00209{left:267.000000px;}
.x84_c00209{left:268.500000px;}
.x39_c00209{left:271.500000px;}
.x91_c00209{left:277.500000px;}
.x65_c00209{left:278.580000px;}
.x14_c00209{left:282.000000px;}
.x78_c00209{left:286.500000px;}
.x18_c00209{left:289.500000px;}
.x46_c00209{left:291.420000px;}
.x71_c00209{left:294.000000px;}
.x8c_c00209{left:297.000000px;}
.x93_c00209{left:299.580000px;}
.x50_c00209{left:301.920000px;}
.x3a_c00209{left:304.500000px;}
.x6_c00209{left:305.580000px;}
.x38_c00209{left:309.000000px;}
.x47_c00209{left:316.500000px;}
.x51_c00209{left:317.580000px;}
.x19_c00209{left:321.420000px;}
.x7e_c00209{left:322.500000px;}
.x25_c00209{left:326.580000px;}
.x8a_c00209{left:328.500000px;}
.x85_c00209{left:330.420000px;}
.x66_c00209{left:332.580000px;}
.xac_c00209{left:334.500000px;}
.x1a_c00209{left:336.000000px;}
.x72_c00209{left:337.080000px;}
.x59_c00209{left:338.580000px;}
.x9e_c00209{left:340.500000px;}
.x3b_c00209{left:342.420000px;}
.x30_c00209{left:344.580000px;}
.x9c_c00209{left:346.500000px;}
.xa8_c00209{left:348.000000px;}
.xa1_c00209{left:349.080000px;}
.x67_c00209{left:351.420000px;}
.x86_c00209{left:358.500000px;}
.x26_c00209{left:360.855000px;}
.x7_c00209{left:363.000000px;}
.x48_c00209{left:364.500000px;}
.x7f_c00209{left:366.000000px;}
.xa2_c00209{left:367.500000px;}
.xa4_c00209{left:372.000000px;}
.x49_c00209{left:375.000000px;}
.xaa_c00209{left:376.500000px;}
.xa3_c00209{left:381.420000px;}
.xab_c00209{left:384.420000px;}
.x5a_c00209{left:385.500000px;}
.xa9_c00209{left:390.420000px;}
.x87_c00209{left:394.500000px;}
.x79_c00209{left:396.000000px;}
.x27_c00209{left:399.000000px;}
.x2_c00209{left:402.000000px;}
.x8d_c00209{left:403.500000px;}
.xa5_c00209{left:408.000000px;}
.x68_c00209{left:409.920000px;}
.x8_c00209{left:412.500000px;}
.x1b_c00209{left:414.000000px;}
.x90_c00209{left:417.855000px;}
.x4a_c00209{left:420.000000px;}
.x73_c00209{left:421.080000px;}
.x3c_c00209{left:423.000000px;}
.xa6_c00209{left:427.920000px;}
.x31_c00209{left:430.500000px;}
.x5b_c00209{left:436.500000px;}
.x52_c00209{left:439.080000px;}
.x9_c00209{left:445.920000px;}
.x94_c00209{left:450.000000px;}
.x98_c00209{left:453.000000px;}
.x92_c00209{left:454.500000px;}
.x83_c00209{left:457.920000px;}
.x4b_c00209{left:459.000000px;}
.x96_c00209{left:462.000000px;}
.x3d_c00209{left:463.500000px;}
.x69_c00209{left:466.920000px;}
.x28_c00209{left:469.080000px;}
.x8b_c00209{left:471.000000px;}
.x1c_c00209{left:475.500000px;}
.x80_c00209{left:479.580000px;}
.x4c_c00209{left:481.920000px;}
.x8e_c00209{left:483.000000px;}
.x32_c00209{left:488.580000px;}
.xa_c00209{left:489.855000px;}
.x9f_c00209{left:495.000000px;}
.x81_c00209{left:496.920000px;}
.x9a_c00209{left:498.000000px;}
.x95_c00209{left:499.500000px;}
.xa7_c00209{left:502.500000px;}
.x3e_c00209{left:503.580000px;}
.x88_c00209{left:505.500000px;}
.x5c_c00209{left:507.420000px;}
.x29_c00209{left:513.000000px;}
.xb_c00209{left:515.580000px;}
.x4d_c00209{left:517.500000px;}
.x53_c00209{left:518.580000px;}
.x3f_c00209{left:521.580000px;}
.x1d_c00209{left:529.500000px;}
.xa0_c00209{left:531.000000px;}
.x6a_c00209{left:537.000000px;}
.x8f_c00209{left:538.920000px;}
.x1e_c00209{left:540.000000px;}
.xc_c00209{left:543.000000px;}
.x99_c00209{left:544.500000px;}
.x4e_c00209{left:546.420000px;}
.x2a_c00209{left:547.500000px;}
.x9b_c00209{left:549.000000px;}
.x5d_c00209{left:551.580000px;}
.x97_c00209{left:553.500000px;}
.x6b_c00209{left:556.500000px;}
.x74_c00209{left:564.420000px;}
.x82_c00209{left:567.000000px;}
.x2b_c00209{left:571.920000px;}
.x1f_c00209{left:573.000000px;}
.x54_c00209{left:576.000000px;}
.xd_c00209{left:577.920000px;}
.x5e_c00209{left:580.920000px;}
.x55_c00209{left:588.000000px;}
.x6c_c00209{left:589.500000px;}
.x5f_c00209{left:592.500000px;}
.x9d_c00209{left:594.000000px;}
.xe_c00209{left:596.145000px;}
.x20_c00209{left:598.080000px;}
.x40_c00209{left:601.080000px;}
.x89_c00209{left:604.080000px;}
.x2c_c00209{left:613.500000px;}
.x7a_c00209{left:624.420000px;}
.x6d_c00209{left:627.000000px;}
.x75_c00209{left:633.420000px;}
.x56_c00209{left:634.500000px;}
.x33_c00209{left:636.000000px;}
.x60_c00209{left:637.500000px;}
.x21_c00209{left:640.500000px;}
.x41_c00209{left:642.000000px;}
.x34_c00209{left:648.420000px;}
.x2d_c00209{left:649.920000px;}
.x7b_c00209{left:651.000000px;}
.x42_c00209{left:655.500000px;}
.x6e_c00209{left:658.080000px;}
.x76_c00209{left:661.080000px;}
.x57_c00209{left:662.580000px;}
.x22_c00209{left:669.420000px;}
.x2e_c00209{left:675.000000px;}
.x61_c00209{left:676.500000px;}
.xf_c00209{left:679.500000px;}
.x6f_c00209{left:688.920000px;}
.x7c_c00209{left:691.080000px;}
.x10_c00209{left:693.000000px;}
.x23_c00209{left:694.500000px;}
.x43_c00209{left:697.500000px;}
.x62_c00209{left:700.080000px;}
.x35_c00209{left:703.500000px;}
.x58_c00209{left:706.500000px;}
.x7d_c00209{left:709.920000px;}
@media print{
.v0_c00209{vertical-align:0.000000pt;}
.v1_c00209{vertical-align:1.493333pt;}
.ls1_c00209{letter-spacing:0.000000pt;}
.ls0_c00209{letter-spacing:10.504533pt;}
.wse_c00209{word-spacing:0.000000pt;}
.wsa_c00209{word-spacing:11.827705pt;}
.wsb_c00209{word-spacing:26.128988pt;}
.ws3_c00209{word-spacing:26.838488pt;}
.ws1_c00209{word-spacing:27.046497pt;}
.ws7_c00209{word-spacing:27.796573pt;}
.ws8_c00209{word-spacing:29.068773pt;}
.ws9_c00209{word-spacing:33.426571pt;}
.ws6_c00209{word-spacing:40.567467pt;}
.wsc_c00209{word-spacing:42.220309pt;}
.wsd_c00209{word-spacing:44.118417pt;}
.ws5_c00209{word-spacing:44.403528pt;}
.ws4_c00209{word-spacing:50.682780pt;}
.ws0_c00209{word-spacing:56.152763pt;}
.ws2_c00209{word-spacing:68.303127pt;}
._0_c00209{width:34.866866pt;}
.fs7_c00209{font-size:3.040000pt;}
.fs8_c00209{font-size:10.560000pt;}
.fs2_c00209{font-size:12.106667pt;}
.fs5_c00209{font-size:16.640000pt;}
.fs1_c00209{font-size:18.133333pt;}
.fs4_c00209{font-size:22.666667pt;}
.fs0_c00209{font-size:25.706667pt;}
.fs3_c00209{font-size:28.746667pt;}
.fs6_c00209{font-size:31.733333pt;}
.y0_c00209{bottom:0.000000pt;}
.yd2_c00209{bottom:216.560000pt;}
.yd0_c00209{bottom:217.506667pt;}
.yd1_c00209{bottom:217.706667pt;}
.ycf_c00209{bottom:217.893333pt;}
.yce_c00209{bottom:228.560000pt;}
.ycb_c00209{bottom:229.506667pt;}
.ycc_c00209{bottom:230.466667pt;}
.yca_c00209{bottom:230.840000pt;}
.ycd_c00209{bottom:231.040000pt;}
.yc4_c00209{bottom:241.506667pt;}
.yc9_c00209{bottom:241.893333pt;}
.yc7_c00209{bottom:242.466667pt;}
.yc5_c00209{bottom:242.840000pt;}
.yc8_c00209{bottom:244.373333pt;}
.yc6_c00209{bottom:246.466667pt;}
.yc2_c00209{bottom:254.466667pt;}
.yc3_c00209{bottom:254.840000pt;}
.yc1_c00209{bottom:255.226667pt;}
.yc0_c00209{bottom:265.893333pt;}
.ybf_c00209{bottom:266.840000pt;}
.ybc_c00209{bottom:267.226667pt;}
.ybd_c00209{bottom:267.800000pt;}
.ybe_c00209{bottom:268.173333pt;}
.ybb_c00209{bottom:277.893333pt;}
.yb9_c00209{bottom:279.226667pt;}
.yba_c00209{bottom:280.373333pt;}
.yb7_c00209{bottom:289.893333pt;}
.yb8_c00209{bottom:290.840000pt;}
.yb5_c00209{bottom:292.173333pt;}
.yb6_c00209{bottom:292.373333pt;}
.yb4_c00209{bottom:303.226667pt;}
.yb3_c00209{bottom:304.373333pt;}
.yb1_c00209{bottom:304.560000pt;}
.yb2_c00209{bottom:305.506667pt;}
.yb0_c00209{bottom:316.173333pt;}
.yaf_c00209{bottom:316.373333pt;}
.yae_c00209{bottom:317.506667pt;}
.yad_c00209{bottom:328.173333pt;}
.yac_c00209{bottom:328.373333pt;}
.yaa_c00209{bottom:328.560000pt;}
.yab_c00209{bottom:329.506667pt;}
.ya9_c00209{bottom:339.226667pt;}
.ya8_c00209{bottom:340.173333pt;}
.ya4_c00209{bottom:340.560000pt;}
.ya5_c00209{bottom:341.506667pt;}
.ya7_c00209{bottom:341.706667pt;}
.ya6_c00209{bottom:342.640000pt;}
.ya1_c00209{bottom:353.506667pt;}
.ya3_c00209{bottom:353.706667pt;}
.ya0_c00209{bottom:353.893333pt;}
.ya2_c00209{bottom:354.640000pt;}
.y9f_c00209{bottom:354.840000pt;}
.y9e_c00209{bottom:364.560000pt;}
.y9c_c00209{bottom:365.506667pt;}
.y9d_c00209{bottom:365.706667pt;}
.y99_c00209{bottom:365.893333pt;}
.y9a_c00209{bottom:366.466667pt;}
.y9b_c00209{bottom:366.840000pt;}
.y98_c00209{bottom:377.506667pt;}
.y96_c00209{bottom:377.893333pt;}
.y97_c00209{bottom:379.040000pt;}
.y95_c00209{bottom:388.560000pt;}
.y94_c00209{bottom:389.506667pt;}
.y92_c00209{bottom:389.893333pt;}
.y91_c00209{bottom:390.840000pt;}
.y93_c00209{bottom:391.040000pt;}
.y90_c00209{bottom:402.840000pt;}
.y8f_c00209{bottom:413.893333pt;}
.y8e_c00209{bottom:414.840000pt;}
.y8d_c00209{bottom:416.173333pt;}
.y8c_c00209{bottom:425.893333pt;}
.y8b_c00209{bottom:426.840000pt;}
.y8a_c00209{bottom:428.173333pt;}
.y89_c00209{bottom:437.893333pt;}
.y88_c00209{bottom:438.840000pt;}
.y87_c00209{bottom:439.226667pt;}
.y86_c00209{bottom:450.840000pt;}
.y83_c00209{bottom:451.226667pt;}
.y84_c00209{bottom:451.800000pt;}
.y85_c00209{bottom:452.173333pt;}
.y82_c00209{bottom:463.226667pt;}
.y81_c00209{bottom:464.173333pt;}
.y80_c00209{bottom:475.226667pt;}
.y7f_c00209{bottom:476.173333pt;}
.y7d_c00209{bottom:487.226667pt;}
.y7c_c00209{bottom:487.600000pt;}
.y7e_c00209{bottom:488.173333pt;}
.y7b_c00209{bottom:488.560000pt;}
.y7a_c00209{bottom:499.226667pt;}
.y79_c00209{bottom:500.173333pt;}
.y78_c00209{bottom:500.560000pt;}
.y77_c00209{bottom:501.506667pt;}
.y76_c00209{bottom:512.173333pt;}
.y75_c00209{bottom:512.560000pt;}
.y74_c00209{bottom:513.506667pt;}
.y73_c00209{bottom:524.560000pt;}
.y72_c00209{bottom:524.933333pt;}
.y71_c00209{bottom:525.506667pt;}
.y6f_c00209{bottom:536.560000pt;}
.y70_c00209{bottom:537.506667pt;}
.y6e_c00209{bottom:538.840000pt;}
.y6d_c00209{bottom:549.506667pt;}
.y6c_c00209{bottom:549.893333pt;}
.y6b_c00209{bottom:550.840000pt;}
.y6a_c00209{bottom:561.506667pt;}
.y69_c00209{bottom:561.893333pt;}
.y68_c00209{bottom:562.840000pt;}
.y67_c00209{bottom:573.506667pt;}
.y66_c00209{bottom:573.893333pt;}
.y65_c00209{bottom:574.840000pt;}
.y64_c00209{bottom:585.893333pt;}
.y63_c00209{bottom:586.840000pt;}
.y62_c00209{bottom:588.173333pt;}
.y61_c00209{bottom:603.226667pt;}
.y60_c00209{bottom:604.173333pt;}
.y5f_c00209{bottom:614.840000pt;}
.y5d_c00209{bottom:615.226667pt;}
.y5e_c00209{bottom:616.173333pt;}
.y5c_c00209{bottom:626.840000pt;}
.y5b_c00209{bottom:628.173333pt;}
.y5a_c00209{bottom:640.733333pt;}
.y59_c00209{bottom:654.066667pt;}
.y54_c00209{bottom:654.266667pt;}
.y58_c00209{bottom:655.026667pt;}
.y55_c00209{bottom:655.226667pt;}
.y56_c00209{bottom:655.600000pt;}
.y57_c00209{bottom:656.933333pt;}
.y51_c00209{bottom:667.400000pt;}
.y50_c00209{bottom:668.360000pt;}
.y53_c00209{bottom:669.306667pt;}
.y52_c00209{bottom:670.266667pt;}
.y4f_c00209{bottom:680.733333pt;}
.y4e_c00209{bottom:682.266667pt;}
.y4d_c00209{bottom:682.640000pt;}
.y4c_c00209{bottom:683.600000pt;}
.y4b_c00209{bottom:698.266667pt;}
.y4a_c00209{bottom:700.933333pt;}
.y48_c00209{bottom:722.440000pt;}
.y47_c00209{bottom:723.400000pt;}
.y49_c00209{bottom:723.973333pt;}
.y46_c00209{bottom:724.360000pt;}
.y45_c00209{bottom:739.773333pt;}
.y44_c00209{bottom:741.693333pt;}
.y41_c00209{bottom:757.106667pt;}
.y43_c00209{bottom:757.306667pt;}
.y40_c00209{bottom:759.026667pt;}
.y42_c00209{bottom:759.973333pt;}
.y3c_c00209{bottom:773.693333pt;}
.y39_c00209{bottom:774.440000pt;}
.y3e_c00209{bottom:774.640000pt;}
.y3b_c00209{bottom:776.360000pt;}
.y3f_c00209{bottom:776.560000pt;}
.y3d_c00209{bottom:777.306667pt;}
.y3a_c00209{bottom:777.706667pt;}
.y38_c00209{bottom:799.026667pt;}
.y37_c00209{bottom:800.933333pt;}
.y32_c00209{bottom:811.973333pt;}
.y33_c00209{bottom:812.360000pt;}
.y35_c00209{bottom:812.560000pt;}
.y34_c00209{bottom:813.306667pt;}
.y36_c00209{bottom:813.893333pt;}
.y31_c00209{bottom:824.733333pt;}
.y30_c00209{bottom:826.640000pt;}
.y2c_c00209{bottom:838.066667pt;}
.y2d_c00209{bottom:839.026667pt;}
.y2f_c00209{bottom:839.973333pt;}
.y2e_c00209{bottom:840.173333pt;}
.y2b_c00209{bottom:840.933333pt;}
.y27_c00209{bottom:851.600000pt;}
.y28_c00209{bottom:852.360000pt;}
.y26_c00209{bottom:852.560000pt;}
.y2a_c00209{bottom:853.506667pt;}
.y29_c00209{bottom:854.266667pt;}
.y20_c00209{bottom:864.360000pt;}
.y1f_c00209{bottom:864.933333pt;}
.y24_c00209{bottom:865.306667pt;}
.y23_c00209{bottom:865.693333pt;}
.y25_c00209{bottom:865.893333pt;}
.y21_c00209{bottom:866.266667pt;}
.y22_c00209{bottom:866.640000pt;}
.y1a_c00209{bottom:878.066667pt;}
.y1c_c00209{bottom:878.640000pt;}
.y1b_c00209{bottom:879.226667pt;}
.y1e_c00209{bottom:879.600000pt;}
.y1d_c00209{bottom:879.973333pt;}
.y16_c00209{bottom:890.266667pt;}
.y18_c00209{bottom:891.400000pt;}
.y17_c00209{bottom:893.306667pt;}
.y19_c00209{bottom:893.506667pt;}
.y12_c00209{bottom:903.400000pt;}
.y11_c00209{bottom:904.360000pt;}
.y10_c00209{bottom:904.933333pt;}
.y15_c00209{bottom:905.306667pt;}
.y14_c00209{bottom:905.893333pt;}
.y13_c00209{bottom:906.266667pt;}
.yd_c00209{bottom:916.733333pt;}
.yc_c00209{bottom:917.693333pt;}
.yf_c00209{bottom:918.640000pt;}
.yb_c00209{bottom:918.840000pt;}
.ye_c00209{bottom:919.600000pt;}
.y9_c00209{bottom:931.026667pt;}
.ya_c00209{bottom:932.933333pt;}
.y7_c00209{bottom:943.600000pt;}
.y6_c00209{bottom:944.173333pt;}
.y4_c00209{bottom:944.360000pt;}
.y8_c00209{bottom:944.933333pt;}
.y3_c00209{bottom:945.506667pt;}
.y5_c00209{bottom:946.266667pt;}
.y2_c00209{bottom:976.933333pt;}
.y1_c00209{bottom:977.693333pt;}
.h9_c00209{height:3.739141pt;}
.ha_c00209{height:12.988594pt;}
.h3_c00209{height:14.890964pt;}
.h7_c00209{height:20.466875pt;}
.h2_c00209{height:22.303646pt;}
.h5_c00209{height:27.879557pt;}
.h6_c00209{height:29.372891pt;}
.h1_c00209{height:31.618698pt;}
.h4_c00209{height:35.357839pt;}
.h8_c00209{height:39.031380pt;}
.h0_c00209{height:1186.666667pt;}
.w0_c00209{width:782.666667pt;}
.x0_c00209{left:0.000000pt;}
.x70_c00209{left:136.000000pt;}
.x1_c00209{left:137.706667pt;}
.x15_c00209{left:149.333333pt;}
.x3_c00209{left:150.666667pt;}
.x11_c00209{left:160.960000pt;}
.x44_c00209{left:163.040000pt;}
.x4_c00209{left:164.960000pt;}
.x16_c00209{left:166.293333pt;}
.x63_c00209{left:168.373333pt;}
.x36_c00209{left:173.333333pt;}
.x77_c00209{left:186.666667pt;}
.x37_c00209{left:191.626667pt;}
.x45_c00209{left:194.293333pt;}
.x12_c00209{left:200.000000pt;}
.x2f_c00209{left:216.000000pt;}
.x5_c00209{left:224.000000pt;}
.x13_c00209{left:227.040000pt;}
.x64_c00209{left:229.333333pt;}
.x17_c00209{left:233.706667pt;}
.x24_c00209{left:236.373333pt;}
.x4f_c00209{left:237.333333pt;}
.x84_c00209{left:238.666667pt;}
.x39_c00209{left:241.333333pt;}
.x91_c00209{left:246.666667pt;}
.x65_c00209{left:247.626667pt;}
.x14_c00209{left:250.666667pt;}
.x78_c00209{left:254.666667pt;}
.x18_c00209{left:257.333333pt;}
.x46_c00209{left:259.040000pt;}
.x71_c00209{left:261.333333pt;}
.x8c_c00209{left:264.000000pt;}
.x93_c00209{left:266.293333pt;}
.x50_c00209{left:268.373333pt;}
.x3a_c00209{left:270.666667pt;}
.x6_c00209{left:271.626667pt;}
.x38_c00209{left:274.666667pt;}
.x47_c00209{left:281.333333pt;}
.x51_c00209{left:282.293333pt;}
.x19_c00209{left:285.706667pt;}
.x7e_c00209{left:286.666667pt;}
.x25_c00209{left:290.293333pt;}
.x8a_c00209{left:292.000000pt;}
.x85_c00209{left:293.706667pt;}
.x66_c00209{left:295.626667pt;}
.xac_c00209{left:297.333333pt;}
.x1a_c00209{left:298.666667pt;}
.x72_c00209{left:299.626667pt;}
.x59_c00209{left:300.960000pt;}
.x9e_c00209{left:302.666667pt;}
.x3b_c00209{left:304.373333pt;}
.x30_c00209{left:306.293333pt;}
.x9c_c00209{left:308.000000pt;}
.xa8_c00209{left:309.333333pt;}
.xa1_c00209{left:310.293333pt;}
.x67_c00209{left:312.373333pt;}
.x86_c00209{left:318.666667pt;}
.x26_c00209{left:320.760000pt;}
.x7_c00209{left:322.666667pt;}
.x48_c00209{left:324.000000pt;}
.x7f_c00209{left:325.333333pt;}
.xa2_c00209{left:326.666667pt;}
.xa4_c00209{left:330.666667pt;}
.x49_c00209{left:333.333333pt;}
.xaa_c00209{left:334.666667pt;}
.xa3_c00209{left:339.040000pt;}
.xab_c00209{left:341.706667pt;}
.x5a_c00209{left:342.666667pt;}
.xa9_c00209{left:347.040000pt;}
.x87_c00209{left:350.666667pt;}
.x79_c00209{left:352.000000pt;}
.x27_c00209{left:354.666667pt;}
.x2_c00209{left:357.333333pt;}
.x8d_c00209{left:358.666667pt;}
.xa5_c00209{left:362.666667pt;}
.x68_c00209{left:364.373333pt;}
.x8_c00209{left:366.666667pt;}
.x1b_c00209{left:368.000000pt;}
.x90_c00209{left:371.426667pt;}
.x4a_c00209{left:373.333333pt;}
.x73_c00209{left:374.293333pt;}
.x3c_c00209{left:376.000000pt;}
.xa6_c00209{left:380.373333pt;}
.x31_c00209{left:382.666667pt;}
.x5b_c00209{left:388.000000pt;}
.x52_c00209{left:390.293333pt;}
.x9_c00209{left:396.373333pt;}
.x94_c00209{left:400.000000pt;}
.x98_c00209{left:402.666667pt;}
.x92_c00209{left:404.000000pt;}
.x83_c00209{left:407.040000pt;}
.x4b_c00209{left:408.000000pt;}
.x96_c00209{left:410.666667pt;}
.x3d_c00209{left:412.000000pt;}
.x69_c00209{left:415.040000pt;}
.x28_c00209{left:416.960000pt;}
.x8b_c00209{left:418.666667pt;}
.x1c_c00209{left:422.666667pt;}
.x80_c00209{left:426.293333pt;}
.x4c_c00209{left:428.373333pt;}
.x8e_c00209{left:429.333333pt;}
.x32_c00209{left:434.293333pt;}
.xa_c00209{left:435.426667pt;}
.x9f_c00209{left:440.000000pt;}
.x81_c00209{left:441.706667pt;}
.x9a_c00209{left:442.666667pt;}
.x95_c00209{left:444.000000pt;}
.xa7_c00209{left:446.666667pt;}
.x3e_c00209{left:447.626667pt;}
.x88_c00209{left:449.333333pt;}
.x5c_c00209{left:451.040000pt;}
.x29_c00209{left:456.000000pt;}
.xb_c00209{left:458.293333pt;}
.x4d_c00209{left:460.000000pt;}
.x53_c00209{left:460.960000pt;}
.x3f_c00209{left:463.626667pt;}
.x1d_c00209{left:470.666667pt;}
.xa0_c00209{left:472.000000pt;}
.x6a_c00209{left:477.333333pt;}
.x8f_c00209{left:479.040000pt;}
.x1e_c00209{left:480.000000pt;}
.xc_c00209{left:482.666667pt;}
.x99_c00209{left:484.000000pt;}
.x4e_c00209{left:485.706667pt;}
.x2a_c00209{left:486.666667pt;}
.x9b_c00209{left:488.000000pt;}
.x5d_c00209{left:490.293333pt;}
.x97_c00209{left:492.000000pt;}
.x6b_c00209{left:494.666667pt;}
.x74_c00209{left:501.706667pt;}
.x82_c00209{left:504.000000pt;}
.x2b_c00209{left:508.373333pt;}
.x1f_c00209{left:509.333333pt;}
.x54_c00209{left:512.000000pt;}
.xd_c00209{left:513.706667pt;}
.x5e_c00209{left:516.373333pt;}
.x55_c00209{left:522.666667pt;}
.x6c_c00209{left:524.000000pt;}
.x5f_c00209{left:526.666667pt;}
.x9d_c00209{left:528.000000pt;}
.xe_c00209{left:529.906667pt;}
.x20_c00209{left:531.626667pt;}
.x40_c00209{left:534.293333pt;}
.x89_c00209{left:536.960000pt;}
.x2c_c00209{left:545.333333pt;}
.x7a_c00209{left:555.040000pt;}
.x6d_c00209{left:557.333333pt;}
.x75_c00209{left:563.040000pt;}
.x56_c00209{left:564.000000pt;}
.x33_c00209{left:565.333333pt;}
.x60_c00209{left:566.666667pt;}
.x21_c00209{left:569.333333pt;}
.x41_c00209{left:570.666667pt;}
.x34_c00209{left:576.373333pt;}
.x2d_c00209{left:577.706667pt;}
.x7b_c00209{left:578.666667pt;}
.x42_c00209{left:582.666667pt;}
.x6e_c00209{left:584.960000pt;}
.x76_c00209{left:587.626667pt;}
.x57_c00209{left:588.960000pt;}
.x22_c00209{left:595.040000pt;}
.x2e_c00209{left:600.000000pt;}
.x61_c00209{left:601.333333pt;}
.xf_c00209{left:604.000000pt;}
.x6f_c00209{left:612.373333pt;}
.x7c_c00209{left:614.293333pt;}
.x10_c00209{left:616.000000pt;}
.x23_c00209{left:617.333333pt;}
.x43_c00209{left:620.000000pt;}
.x62_c00209{left:622.293333pt;}
.x35_c00209{left:625.333333pt;}
.x58_c00209{left:628.000000pt;}
.x7d_c00209{left:631.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_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_04b860dab2340f447c24385a.woff2')format("woff");}.ff1_c00210{font-family:ff1_c00210;line-height:1.688965;font-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_c00210{transform:matrix(0.236963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236963,0.000000,0.000000,0.250000,0,0);}
.m42_c00210{transform:matrix(0.327922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327922,0.000000,0.000000,0.250000,0,0);}
.mc8_c00210{transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);}
.mb4_c00210{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m40_c00210{transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);}
.m92_c00210{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.m8b_c00210{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.me1_c00210{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mbe_c00210{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m44_c00210{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m90_c00210{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.md6_c00210{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.mab_c00210{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m85_c00210{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m8a_c00210{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.maa_c00210{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m14_c00210{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m65_c00210{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mdb_c00210{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m8f_c00210{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m21_c00210{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mbd_c00210{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m50_c00210{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m9a_c00210{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m86_c00210{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m31_c00210{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m97_c00210{transform:matrix(0.411874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411874,0.000000,0.000000,0.250000,0,0);}
.m9_c00210{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m96_c00210{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.ma9_c00210{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m4c_c00210{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m39_c00210{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m24_c00210{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m1d_c00210{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m6e_c00210{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m7b_c00210{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m75_c00210{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m19_c00210{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m33_c00210{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m8c_c00210{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m52_c00210{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mb7_c00210{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.md8_c00210{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mae_c00210{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.m7e_c00210{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.mba_c00210{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.mc4_c00210{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.mca_c00210{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m64_c00210{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m68_c00210{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.mb8_c00210{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.ma0_c00210{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m58_c00210{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.ma1_c00210{transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);}
.m5d_c00210{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.ma2_c00210{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m41_c00210{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m94_c00210{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m95_c00210{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.ma_c00210{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m38_c00210{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mce_c00210{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mad_c00210{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.me6_c00210{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m70_c00210{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m77_c00210{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.md2_c00210{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m67_c00210{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m48_c00210{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m60_c00210{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m3c_c00210{transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);}
.mcb_c00210{transform:matrix(0.455937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455937,0.000000,0.000000,0.250000,0,0);}
.mc3_c00210{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m7_c00210{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.md1_c00210{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m2d_c00210{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m6f_c00210{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.mb9_c00210{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.me_c00210{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m2a_c00210{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m11_c00210{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m2f_c00210{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.md9_c00210{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.m2c_c00210{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.md5_c00210{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.m5f_c00210{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m63_c00210{transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);}
.m53_c00210{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m78_c00210{transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);}
.m43_c00210{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mcc_c00210{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.md3_c00210{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.mbf_c00210{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mc2_c00210{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m8e_c00210{transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);}
.m23_c00210{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m9c_c00210{transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);}
.m3a_c00210{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m72_c00210{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.md0_c00210{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m57_c00210{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m4b_c00210{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m9e_c00210{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m4d_c00210{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mdf_c00210{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m7a_c00210{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.mf_c00210{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_c00210{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m99_c00210{transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);}
.m49_c00210{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.m34_c00210{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m5_c00210{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m47_c00210{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mb5_c00210{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m0_c00210{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.me7_c00210{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mc5_c00210{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m12_c00210{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m28_c00210{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mbc_c00210{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m6b_c00210{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.me4_c00210{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.ma7_c00210{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.mc7_c00210{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mdd_c00210{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m5a_c00210{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m6c_c00210{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m32_c00210{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m83_c00210{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m27_c00210{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m81_c00210{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.ma4_c00210{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mc1_c00210{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m35_c00210{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m3d_c00210{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m1b_c00210{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mb1_c00210{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m26_c00210{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m84_c00210{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m7f_c00210{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m55_c00210{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mbb_c00210{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m9b_c00210{transform:matrix(0.537647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537647,0.000000,0.000000,0.250000,0,0);}
.m2e_c00210{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m71_c00210{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.ma6_c00210{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mb6_c00210{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m2_c00210{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m61_c00210{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.maf_c00210{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m51_c00210{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m79_c00210{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m80_c00210{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m4a_c00210{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m59_c00210{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m2b_c00210{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m6d_c00210{transform:matrix(0.549629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549629,0.000000,0.000000,0.250000,0,0);}
.m4_c00210{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m13_c00210{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m3e_c00210{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m76_c00210{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m20_c00210{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m25_c00210{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m29_c00210{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m36_c00210{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mb2_c00210{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m46_c00210{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m7c_c00210{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m6_c00210{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m9f_c00210{transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);}
.me5_c00210{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m3f_c00210{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mc9_c00210{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.ma8_c00210{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.me2_c00210{transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);}
.mc6_c00210{transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);}
.mb3_c00210{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m1a_c00210{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m8d_c00210{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m1f_c00210{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m3b_c00210{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m91_c00210{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00210{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.ma5_c00210{transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);}
.m82_c00210{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.mda_c00210{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m18_c00210{transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);}
.m98_c00210{transform:matrix(0.588824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588824,0.000000,0.000000,0.250000,0,0);}
.m15_c00210{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m5c_c00210{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.me0_c00210{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.mc0_c00210{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m88_c00210{transform:matrix(0.597510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597510,0.000000,0.000000,0.250000,0,0);}
.mcd_c00210{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m30_c00210{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.m3_c00210{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);}
.mb_c00210{transform:matrix(0.601765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601765,0.000000,0.000000,0.250000,0,0);}
.mcf_c00210{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m1_c00210{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m6a_c00210{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.m87_c00210{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.m7d_c00210{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m4e_c00210{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.md_c00210{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m69_c00210{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m5e_c00210{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m93_c00210{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.mc_c00210{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m73_c00210{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m89_c00210{transform:matrix(0.642116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642116,0.000000,0.000000,0.250000,0,0);}
.md4_c00210{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.m10_c00210{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m1e_c00210{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m22_c00210{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m9d_c00210{transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);}
.me3_c00210{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.m4f_c00210{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m1c_c00210{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mde_c00210{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m62_c00210{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m16_c00210{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mb0_c00210{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m54_c00210{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m5b_c00210{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.md7_c00210{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m37_c00210{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m66_c00210{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.mdc_c00210{transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);}
.m17_c00210{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.m8_c00210{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mac_c00210{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.ma3_c00210{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
.fs7_c00210{font-size:3.420000px;}
.fs4_c00210{font-size:18.720000px;}
.fs1_c00210{font-size:20.400000px;}
.fs0_c00210{font-size:25.500000px;}
.fs2_c00210{font-size:28.920000px;}
.fs3_c00210{font-size:32.340000px;}
.fs5_c00210{font-size:35.700000px;}
.fs6_c00210{font-size:39.120000px;}
.y0_c00210{bottom:0.000000px;}
.yb6_c00210{bottom:250.245000px;}
.yb5_c00210{bottom:252.405000px;}
.yb3_c00210{bottom:268.470000px;}
.yb4_c00210{bottom:269.745000px;}
.yb2_c00210{bottom:269.970000px;}
.yb1_c00210{bottom:270.630000px;}
.yb0_c00210{bottom:271.905000px;}
.yae_c00210{bottom:289.245000px;}
.yab_c00210{bottom:290.130000px;}
.yad_c00210{bottom:291.405000px;}
.yac_c00210{bottom:291.630000px;}
.yaf_c00210{bottom:292.470000px;}
.ya8_c00210{bottom:308.745000px;}
.ya7_c00210{bottom:310.905000px;}
.yaa_c00210{bottom:311.130000px;}
.ya9_c00210{bottom:311.970000px;}
.ya4_c00210{bottom:328.245000px;}
.ya3_c00210{bottom:329.550000px;}
.ya1_c00210{bottom:329.745000px;}
.ya5_c00210{bottom:330.405000px;}
.ya6_c00210{bottom:330.630000px;}
.ya2_c00210{bottom:330.825000px;}
.ya0_c00210{bottom:347.745000px;}
.y9d_c00210{bottom:349.245000px;}
.y9e_c00210{bottom:349.905000px;}
.y9f_c00210{bottom:350.130000px;}
.y9c_c00210{bottom:351.405000px;}
.y9a_c00210{bottom:368.325000px;}
.y97_c00210{bottom:368.745000px;}
.y99_c00210{bottom:369.405000px;}
.y96_c00210{bottom:369.630000px;}
.y98_c00210{bottom:369.825000px;}
.y9b_c00210{bottom:370.470000px;}
.y95_c00210{bottom:370.905000px;}
.y93_c00210{bottom:388.245000px;}
.y94_c00210{bottom:389.130000px;}
.y91_c00210{bottom:390.405000px;}
.y92_c00210{bottom:391.920000px;}
.y90_c00210{bottom:409.905000px;}
.y8f_c00210{bottom:427.245000px;}
.y8e_c00210{bottom:428.325000px;}
.y8d_c00210{bottom:429.405000px;}
.y8c_c00210{bottom:430.470000px;}
.y8b_c00210{bottom:446.745000px;}
.y8a_c00210{bottom:448.905000px;}
.y88_c00210{bottom:466.245000px;}
.y87_c00210{bottom:467.325000px;}
.y86_c00210{bottom:467.745000px;}
.y89_c00210{bottom:468.405000px;}
.y85_c00210{bottom:468.630000px;}
.y84_c00210{bottom:469.905000px;}
.y82_c00210{bottom:484.905000px;}
.y81_c00210{bottom:487.245000px;}
.y83_c00210{bottom:488.970000px;}
.y7f_c00210{bottom:489.405000px;}
.y80_c00210{bottom:489.420000px;}
.y7e_c00210{bottom:506.745000px;}
.y7c_c00210{bottom:507.630000px;}
.y7b_c00210{bottom:508.905000px;}
.y7d_c00210{bottom:508.920000px;}
.y7a_c00210{bottom:525.405000px;}
.y77_c00210{bottom:526.245000px;}
.y79_c00210{bottom:527.325000px;}
.y78_c00210{bottom:528.420000px;}
.y76_c00210{bottom:547.245000px;}
.y75_c00210{bottom:547.905000px;}
.y6f_c00210{bottom:565.245000px;}
.y70_c00210{bottom:566.745000px;}
.y73_c00210{bottom:567.405000px;}
.y74_c00210{bottom:568.470000px;}
.y72_c00210{bottom:568.905000px;}
.y71_c00210{bottom:568.920000px;}
.y6e_c00210{bottom:594.405000px;}
.y6a_c00210{bottom:607.905000px;}
.y68_c00210{bottom:608.325000px;}
.y6d_c00210{bottom:608.970000px;}
.y6b_c00210{bottom:609.405000px;}
.y6c_c00210{bottom:610.050000px;}
.y69_c00210{bottom:610.470000px;}
.y67_c00210{bottom:626.970000px;}
.y62_c00210{bottom:627.825000px;}
.y66_c00210{bottom:628.050000px;}
.y64_c00210{bottom:628.905000px;}
.y65_c00210{bottom:629.130000px;}
.y63_c00210{bottom:631.050000px;}
.y61_c00210{bottom:655.245000px;}
.y60_c00210{bottom:657.405000px;}
.y5f_c00210{bottom:702.405000px;}
.y5d_c00210{bottom:703.245000px;}
.y5e_c00210{bottom:705.405000px;}
.y5c_c00210{bottom:705.630000px;}
.y5b_c00210{bottom:722.745000px;}
.y59_c00210{bottom:724.905000px;}
.y5a_c00210{bottom:725.970000px;}
.y58_c00210{bottom:743.745000px;}
.y56_c00210{bottom:762.825000px;}
.y54_c00210{bottom:763.245000px;}
.y57_c00210{bottom:764.970000px;}
.y53_c00210{bottom:765.405000px;}
.y55_c00210{bottom:766.470000px;}
.y4f_c00210{bottom:782.745000px;}
.y51_c00210{bottom:783.825000px;}
.y52_c00210{bottom:784.470000px;}
.y50_c00210{bottom:784.905000px;}
.y4e_c00210{bottom:799.905000px;}
.y4d_c00210{bottom:802.245000px;}
.y4c_c00210{bottom:803.325000px;}
.y4b_c00210{bottom:804.405000px;}
.y49_c00210{bottom:822.825000px;}
.y4a_c00210{bottom:823.470000px;}
.y48_c00210{bottom:823.905000px;}
.y47_c00210{bottom:840.405000px;}
.y44_c00210{bottom:840.825000px;}
.y41_c00210{bottom:841.245000px;}
.y46_c00210{bottom:842.325000px;}
.y42_c00210{bottom:842.970000px;}
.y43_c00210{bottom:843.405000px;}
.y45_c00210{bottom:843.630000px;}
.y3d_c00210{bottom:859.470000px;}
.y40_c00210{bottom:859.905000px;}
.y3c_c00210{bottom:860.745000px;}
.y3f_c00210{bottom:861.630000px;}
.y3e_c00210{bottom:862.470000px;}
.y3b_c00210{bottom:862.905000px;}
.y35_c00210{bottom:879.405000px;}
.y38_c00210{bottom:880.245000px;}
.y3a_c00210{bottom:880.470000px;}
.y36_c00210{bottom:882.405000px;}
.y37_c00210{bottom:882.630000px;}
.y39_c00210{bottom:883.470000px;}
.y2f_c00210{bottom:898.905000px;}
.y31_c00210{bottom:899.745000px;}
.y30_c00210{bottom:901.905000px;}
.y34_c00210{bottom:902.130000px;}
.y32_c00210{bottom:902.970000px;}
.y33_c00210{bottom:903.405000px;}
.y2d_c00210{bottom:918.405000px;}
.y2c_c00210{bottom:919.245000px;}
.y2a_c00210{bottom:919.680000px;}
.y2e_c00210{bottom:920.745000px;}
.y2b_c00210{bottom:921.825000px;}
.y29_c00210{bottom:922.905000px;}
.y27_c00210{bottom:940.245000px;}
.y25_c00210{bottom:941.325000px;}
.y28_c00210{bottom:941.970000px;}
.y26_c00210{bottom:942.405000px;}
.y21_c00210{bottom:959.325000px;}
.y24_c00210{bottom:959.745000px;}
.y22_c00210{bottom:960.825000px;}
.y20_c00210{bottom:961.905000px;}
.y23_c00210{bottom:962.130000px;}
.y1e_c00210{bottom:979.245000px;}
.y1c_c00210{bottom:980.325000px;}
.y1d_c00210{bottom:980.970000px;}
.y1b_c00210{bottom:981.405000px;}
.y1f_c00210{bottom:982.470000px;}
.y17_c00210{bottom:997.905000px;}
.y18_c00210{bottom:998.325000px;}
.y19_c00210{bottom:998.745000px;}
.y16_c00210{bottom:999.825000px;}
.y1a_c00210{bottom:1000.470000px;}
.y15_c00210{bottom:1000.905000px;}
.y11_c00210{bottom:1018.245000px;}
.y13_c00210{bottom:1020.405000px;}
.y12_c00210{bottom:1020.630000px;}
.y14_c00210{bottom:1021.470000px;}
.yd_c00210{bottom:1037.745000px;}
.yb_c00210{bottom:1038.825000px;}
.yc_c00210{bottom:1039.905000px;}
.ye_c00210{bottom:1040.130000px;}
.yf_c00210{bottom:1040.970000px;}
.y10_c00210{bottom:1041.405000px;}
.y5_c00210{bottom:1056.825000px;}
.y6_c00210{bottom:1057.905000px;}
.y8_c00210{bottom:1058.745000px;}
.ya_c00210{bottom:1058.970000px;}
.y3_c00210{bottom:1059.405000px;}
.y7_c00210{bottom:1059.630000px;}
.y4_c00210{bottom:1060.470000px;}
.y9_c00210{bottom:1060.905000px;}
.y2_c00210{bottom:1099.050000px;}
.y1_c00210{bottom:1099.470000px;}
.h8_c00210{height:4.206533px;}
.h5_c00210{height:23.025234px;}
.h2_c00210{height:25.091602px;}
.h1_c00210{height:31.364502px;}
.h3_c00210{height:35.571035px;}
.h4_c00210{height:39.777568px;}
.h6_c00210{height:43.910303px;}
.h7_c00210{height:48.116836px;}
.h0_c00210{height:1335.000000px;}
.w0_c00210{width:880.500000px;}
.x0_c00210{left:0.000000px;}
.x3_c00210{left:151.500000px;}
.xa6_c00210{left:153.000000px;}
.xb0_c00210{left:154.920000px;}
.xaa_c00210{left:165.420000px;}
.x54_c00210{left:167.580000px;}
.xbb_c00210{left:169.500000px;}
.x4_c00210{left:175.500000px;}
.xcd_c00210{left:177.000000px;}
.xa7_c00210{left:178.920000px;}
.x43_c00210{left:180.000000px;}
.xd1_c00210{left:181.500000px;}
.xc9_c00210{left:183.420000px;}
.x86_c00210{left:186.420000px;}
.x13_c00210{left:187.500000px;}
.x37_c00210{left:189.000000px;}
.x72_c00210{left:190.500000px;}
.x7d_c00210{left:193.500000px;}
.x68_c00210{left:197.580000px;}
.x1e_c00210{left:199.500000px;}
.x91_c00210{left:201.000000px;}
.xe6_c00210{left:203.580000px;}
.x4f_c00210{left:205.920000px;}
.x5_c00210{left:207.420000px;}
.xca_c00210{left:210.000000px;}
.x7e_c00210{left:211.920000px;}
.x2b_c00210{left:213.420000px;}
.x87_c00210{left:214.500000px;}
.xb9_c00210{left:216.645000px;}
.x1f_c00210{left:217.920000px;}
.x95_c00210{left:220.500000px;}
.x55_c00210{left:222.420000px;}
.x73_c00210{left:223.920000px;}
.x44_c00210{left:225.000000px;}
.x69_c00210{left:228.000000px;}
.x50_c00210{left:231.000000px;}
.x14_c00210{left:234.000000px;}
.xd7_c00210{left:237.000000px;}
.x7f_c00210{left:238.920000px;}
.x2c_c00210{left:240.000000px;}
.x38_c00210{left:243.420000px;}
.x20_c00210{left:244.920000px;}
.xab_c00210{left:247.500000px;}
.xbd_c00210{left:249.000000px;}
.x6_c00210{left:250.500000px;}
.x6a_c00210{left:252.000000px;}
.xce_c00210{left:253.500000px;}
.xe3_c00210{left:254.580000px;}
.xeb_c00210{left:257.580000px;}
.x92_c00210{left:259.500000px;}
.x74_c00210{left:261.420000px;}
.xc4_c00210{left:262.500000px;}
.x45_c00210{left:267.420000px;}
.x15_c00210{left:270.420000px;}
.xb1_c00210{left:271.500000px;}
.x5f_c00210{left:273.420000px;}
.xae_c00210{left:279.000000px;}
.x21_c00210{left:280.080000px;}
.xbf_c00210{left:282.000000px;}
.x2d_c00210{left:283.500000px;}
.x7_c00210{left:284.580000px;}
.xd8_c00210{left:286.080000px;}
.x56_c00210{left:289.275000px;}
.xb2_c00210{left:292.500000px;}
.x6b_c00210{left:294.420000px;}
.x88_c00210{left:295.500000px;}
.x80_c00210{left:297.420000px;}
.x96_c00210{left:301.920000px;}
.xec_c00210{left:303.000000px;}
.x46_c00210{left:304.500000px;}
.xd9_c00210{left:306.420000px;}
.x9f_c00210{left:309.000000px;}
.x22_c00210{left:310.080000px;}
.x60_c00210{left:312.000000px;}
.x57_c00210{left:313.080000px;}
.x75_c00210{left:316.500000px;}
.x2e_c00210{left:317.580000px;}
.xc0_c00210{left:319.500000px;}
.xbe_c00210{left:322.080000px;}
.xba_c00210{left:323.775000px;}
.x58_c00210{left:327.855000px;}
.x97_c00210{left:330.000000px;}
.x8_c00210{left:331.080000px;}
.x39_c00210{left:333.420000px;}
.x6c_c00210{left:337.920000px;}
.xd2_c00210{left:341.355000px;}
.x59_c00210{left:342.645000px;}
.xb3_c00210{left:347.145000px;}
.x2f_c00210{left:348.420000px;}
.x51_c00210{left:349.500000px;}
.x16_c00210{left:351.000000px;}
.x9_c00210{left:354.000000px;}
.x47_c00210{left:358.920000px;}
.x76_c00210{left:362.580000px;}
.x3a_c00210{left:364.080000px;}
.xa8_c00210{left:365.580000px;}
.x52_c00210{left:367.920000px;}
.x89_c00210{left:372.420000px;}
.x5a_c00210{left:373.500000px;}
.x30_c00210{left:375.420000px;}
.xcf_c00210{left:376.920000px;}
.xed_c00210{left:379.920000px;}
.x61_c00210{left:381.000000px;}
.xde_c00210{left:382.500000px;}
.x3b_c00210{left:384.000000px;}
.x93_c00210{left:385.920000px;}
.xa_c00210{left:387.420000px;}
.x17_c00210{left:388.500000px;}
.xd3_c00210{left:390.420000px;}
.x5b_c00210{left:391.500000px;}
.xe7_c00210{left:393.420000px;}
.x53_c00210{left:394.500000px;}
.x23_c00210{left:396.000000px;}
.x2_c00210{left:397.500000px;}
.x6d_c00210{left:398.580000px;}
.x31_c00210{left:402.000000px;}
.x77_c00210{left:403.500000px;}
.x18_c00210{left:405.000000px;}
.x5c_c00210{left:406.500000px;}
.x81_c00210{left:407.580000px;}
.xee_c00210{left:409.080000px;}
.x3c_c00210{left:411.000000px;}
.x24_c00210{left:414.420000px;}
.xa0_c00210{left:417.000000px;}
.xbc_c00210{left:420.000000px;}
.xda_c00210{left:424.080000px;}
.xe8_c00210{left:426.000000px;}
.xb_c00210{left:427.500000px;}
.x48_c00210{left:430.500000px;}
.x94_c00210{left:432.420000px;}
.xd0_c00210{left:434.580000px;}
.x62_c00210{left:436.500000px;}
.x32_c00210{left:438.000000px;}
.x6e_c00210{left:439.500000px;}
.x25_c00210{left:441.420000px;}
.xc1_c00210{left:446.580000px;}
.x3d_c00210{left:450.420000px;}
.x98_c00210{left:454.500000px;}
.xa2_c00210{left:456.420000px;}
.xe4_c00210{left:459.000000px;}
.x19_c00210{left:460.920000px;}
.x49_c00210{left:462.000000px;}
.xc_c00210{left:466.500000px;}
.x8a_c00210{left:467.580000px;}
.xd4_c00210{left:469.500000px;}
.x26_c00210{left:471.000000px;}
.xc5_c00210{left:473.580000px;}
.xe5_c00210{left:477.420000px;}
.xac_c00210{left:478.920000px;}
.x33_c00210{left:481.500000px;}
.x6f_c00210{left:483.000000px;}
.xa3_c00210{left:484.920000px;}
.x99_c00210{left:486.420000px;}
.x5d_c00210{left:495.000000px;}
.x82_c00210{left:504.000000px;}
.xc6_c00210{left:505.080000px;}
.x8b_c00210{left:507.420000px;}
.xdb_c00210{left:511.920000px;}
.xdf_c00210{left:513.000000px;}
.x9a_c00210{left:514.920000px;}
.xe9_c00210{left:517.500000px;}
.x4a_c00210{left:519.000000px;}
.xb4_c00210{left:521.145000px;}
.x27_c00210{left:523.080000px;}
.x3e_c00210{left:526.500000px;}
.xcb_c00210{left:528.420000px;}
.x63_c00210{left:531.420000px;}
.x78_c00210{left:532.920000px;}
.x8c_c00210{left:535.500000px;}
.x1a_c00210{left:537.000000px;}
.x4b_c00210{left:538.920000px;}
.xef_c00210{left:540.000000px;}
.x28_c00210{left:541.920000px;}
.xd_c00210{left:544.500000px;}
.xc7_c00210{left:547.920000px;}
.x83_c00210{left:549.000000px;}
.xa1_c00210{left:552.000000px;}
.xa9_c00210{left:553.275000px;}
.x3f_c00210{left:554.580000px;}
.x9b_c00210{left:563.580000px;}
.xcc_c00210{left:565.080000px;}
.x29_c00210{left:567.000000px;}
.x64_c00210{left:568.080000px;}
.x79_c00210{left:570.420000px;}
.x4c_c00210{left:576.420000px;}
.xe_c00210{left:582.000000px;}
.x9c_c00210{left:583.920000px;}
.x8d_c00210{left:586.080000px;}
.xa4_c00210{left:589.080000px;}
.xdc_c00210{left:591.420000px;}
.x34_c00210{left:595.500000px;}
.x1b_c00210{left:596.580000px;}
.x7a_c00210{left:598.500000px;}
.xe0_c00210{left:600.420000px;}
.xb5_c00210{left:601.500000px;}
.x65_c00210{left:602.580000px;}
.xc2_c00210{left:605.580000px;}
.xf_c00210{left:608.580000px;}
.x9d_c00210{left:610.500000px;}
.x84_c00210{left:615.420000px;}
.x70_c00210{left:616.500000px;}
.x1c_c00210{left:617.580000px;}
.x8e_c00210{left:619.920000px;}
.x5e_c00210{left:624.000000px;}
.xb6_c00210{left:625.080000px;}
.xe1_c00210{left:627.000000px;}
.x40_c00210{left:628.080000px;}
.xd5_c00210{left:631.920000px;}
.xad_c00210{left:640.500000px;}
.xf0_c00210{left:642.420000px;}
.x66_c00210{left:643.500000px;}
.x10_c00210{left:646.080000px;}
.x41_c00210{left:648.000000px;}
.x8f_c00210{left:649.920000px;}
.x4d_c00210{left:652.500000px;}
.x7b_c00210{left:654.000000px;}
.x2a_c00210{left:655.500000px;}
.x85_c00210{left:657.000000px;}
.xa5_c00210{left:661.500000px;}
.x9e_c00210{left:663.000000px;}
.x11_c00210{left:664.500000px;}
.x35_c00210{left:665.580000px;}
.xc3_c00210{left:667.500000px;}
.xe2_c00210{left:669.000000px;}
.xb7_c00210{left:671.145000px;}
.x71_c00210{left:672.420000px;}
.xc8_c00210{left:673.500000px;}
.x42_c00210{left:676.500000px;}
.x67_c00210{left:678.420000px;}
.xdd_c00210{left:681.645000px;}
.xd6_c00210{left:684.000000px;}
.x90_c00210{left:685.500000px;}
.xaf_c00210{left:688.500000px;}
.x7c_c00210{left:691.500000px;}
.x12_c00210{left:692.580000px;}
.x1d_c00210{left:694.920000px;}
.x4e_c00210{left:697.920000px;}
.x1_c00210{left:703.920000px;}
.xea_c00210{left:709.920000px;}
.xb8_c00210{left:712.500000px;}
.x36_c00210{left:715.500000px;}
@media print{
.v0_c00210{vertical-align:0.000000pt;}
.ls0_c00210{letter-spacing:0.000000pt;}
.ws0_c00210{word-spacing:0.000000pt;}
.fs7_c00210{font-size:3.040000pt;}
.fs4_c00210{font-size:16.640000pt;}
.fs1_c00210{font-size:18.133333pt;}
.fs0_c00210{font-size:22.666667pt;}
.fs2_c00210{font-size:25.706667pt;}
.fs3_c00210{font-size:28.746667pt;}
.fs5_c00210{font-size:31.733333pt;}
.fs6_c00210{font-size:34.773333pt;}
.y0_c00210{bottom:0.000000pt;}
.yb6_c00210{bottom:222.440000pt;}
.yb5_c00210{bottom:224.360000pt;}
.yb3_c00210{bottom:238.640000pt;}
.yb4_c00210{bottom:239.773333pt;}
.yb2_c00210{bottom:239.973333pt;}
.yb1_c00210{bottom:240.560000pt;}
.yb0_c00210{bottom:241.693333pt;}
.yae_c00210{bottom:257.106667pt;}
.yab_c00210{bottom:257.893333pt;}
.yad_c00210{bottom:259.026667pt;}
.yac_c00210{bottom:259.226667pt;}
.yaf_c00210{bottom:259.973333pt;}
.ya8_c00210{bottom:274.440000pt;}
.ya7_c00210{bottom:276.360000pt;}
.yaa_c00210{bottom:276.560000pt;}
.ya9_c00210{bottom:277.306667pt;}
.ya4_c00210{bottom:291.773333pt;}
.ya3_c00210{bottom:292.933333pt;}
.ya1_c00210{bottom:293.106667pt;}
.ya5_c00210{bottom:293.693333pt;}
.ya6_c00210{bottom:293.893333pt;}
.ya2_c00210{bottom:294.066667pt;}
.ya0_c00210{bottom:309.106667pt;}
.y9d_c00210{bottom:310.440000pt;}
.y9e_c00210{bottom:311.026667pt;}
.y9f_c00210{bottom:311.226667pt;}
.y9c_c00210{bottom:312.360000pt;}
.y9a_c00210{bottom:327.400000pt;}
.y97_c00210{bottom:327.773333pt;}
.y99_c00210{bottom:328.360000pt;}
.y96_c00210{bottom:328.560000pt;}
.y98_c00210{bottom:328.733333pt;}
.y9b_c00210{bottom:329.306667pt;}
.y95_c00210{bottom:329.693333pt;}
.y93_c00210{bottom:345.106667pt;}
.y94_c00210{bottom:345.893333pt;}
.y91_c00210{bottom:347.026667pt;}
.y92_c00210{bottom:348.373333pt;}
.y90_c00210{bottom:364.360000pt;}
.y8f_c00210{bottom:379.773333pt;}
.y8e_c00210{bottom:380.733333pt;}
.y8d_c00210{bottom:381.693333pt;}
.y8c_c00210{bottom:382.640000pt;}
.y8b_c00210{bottom:397.106667pt;}
.y8a_c00210{bottom:399.026667pt;}
.y88_c00210{bottom:414.440000pt;}
.y87_c00210{bottom:415.400000pt;}
.y86_c00210{bottom:415.773333pt;}
.y89_c00210{bottom:416.360000pt;}
.y85_c00210{bottom:416.560000pt;}
.y84_c00210{bottom:417.693333pt;}
.y82_c00210{bottom:431.026667pt;}
.y81_c00210{bottom:433.106667pt;}
.y83_c00210{bottom:434.640000pt;}
.y7f_c00210{bottom:435.026667pt;}
.y80_c00210{bottom:435.040000pt;}
.y7e_c00210{bottom:450.440000pt;}
.y7c_c00210{bottom:451.226667pt;}
.y7b_c00210{bottom:452.360000pt;}
.y7d_c00210{bottom:452.373333pt;}
.y7a_c00210{bottom:467.026667pt;}
.y77_c00210{bottom:467.773333pt;}
.y79_c00210{bottom:468.733333pt;}
.y78_c00210{bottom:469.706667pt;}
.y76_c00210{bottom:486.440000pt;}
.y75_c00210{bottom:487.026667pt;}
.y6f_c00210{bottom:502.440000pt;}
.y70_c00210{bottom:503.773333pt;}
.y73_c00210{bottom:504.360000pt;}
.y74_c00210{bottom:505.306667pt;}
.y72_c00210{bottom:505.693333pt;}
.y71_c00210{bottom:505.706667pt;}
.y6e_c00210{bottom:528.360000pt;}
.y6a_c00210{bottom:540.360000pt;}
.y68_c00210{bottom:540.733333pt;}
.y6d_c00210{bottom:541.306667pt;}
.y6b_c00210{bottom:541.693333pt;}
.y6c_c00210{bottom:542.266667pt;}
.y69_c00210{bottom:542.640000pt;}
.y67_c00210{bottom:557.306667pt;}
.y62_c00210{bottom:558.066667pt;}
.y66_c00210{bottom:558.266667pt;}
.y64_c00210{bottom:559.026667pt;}
.y65_c00210{bottom:559.226667pt;}
.y63_c00210{bottom:560.933333pt;}
.y61_c00210{bottom:582.440000pt;}
.y60_c00210{bottom:584.360000pt;}
.y5f_c00210{bottom:624.360000pt;}
.y5d_c00210{bottom:625.106667pt;}
.y5e_c00210{bottom:627.026667pt;}
.y5c_c00210{bottom:627.226667pt;}
.y5b_c00210{bottom:642.440000pt;}
.y59_c00210{bottom:644.360000pt;}
.y5a_c00210{bottom:645.306667pt;}
.y58_c00210{bottom:661.106667pt;}
.y56_c00210{bottom:678.066667pt;}
.y54_c00210{bottom:678.440000pt;}
.y57_c00210{bottom:679.973333pt;}
.y53_c00210{bottom:680.360000pt;}
.y55_c00210{bottom:681.306667pt;}
.y4f_c00210{bottom:695.773333pt;}
.y51_c00210{bottom:696.733333pt;}
.y52_c00210{bottom:697.306667pt;}
.y50_c00210{bottom:697.693333pt;}
.y4e_c00210{bottom:711.026667pt;}
.y4d_c00210{bottom:713.106667pt;}
.y4c_c00210{bottom:714.066667pt;}
.y4b_c00210{bottom:715.026667pt;}
.y49_c00210{bottom:731.400000pt;}
.y4a_c00210{bottom:731.973333pt;}
.y48_c00210{bottom:732.360000pt;}
.y47_c00210{bottom:747.026667pt;}
.y44_c00210{bottom:747.400000pt;}
.y41_c00210{bottom:747.773333pt;}
.y46_c00210{bottom:748.733333pt;}
.y42_c00210{bottom:749.306667pt;}
.y43_c00210{bottom:749.693333pt;}
.y45_c00210{bottom:749.893333pt;}
.y3d_c00210{bottom:763.973333pt;}
.y40_c00210{bottom:764.360000pt;}
.y3c_c00210{bottom:765.106667pt;}
.y3f_c00210{bottom:765.893333pt;}
.y3e_c00210{bottom:766.640000pt;}
.y3b_c00210{bottom:767.026667pt;}
.y35_c00210{bottom:781.693333pt;}
.y38_c00210{bottom:782.440000pt;}
.y3a_c00210{bottom:782.640000pt;}
.y36_c00210{bottom:784.360000pt;}
.y37_c00210{bottom:784.560000pt;}
.y39_c00210{bottom:785.306667pt;}
.y2f_c00210{bottom:799.026667pt;}
.y31_c00210{bottom:799.773333pt;}
.y30_c00210{bottom:801.693333pt;}
.y34_c00210{bottom:801.893333pt;}
.y32_c00210{bottom:802.640000pt;}
.y33_c00210{bottom:803.026667pt;}
.y2d_c00210{bottom:816.360000pt;}
.y2c_c00210{bottom:817.106667pt;}
.y2a_c00210{bottom:817.493333pt;}
.y2e_c00210{bottom:818.440000pt;}
.y2b_c00210{bottom:819.400000pt;}
.y29_c00210{bottom:820.360000pt;}
.y27_c00210{bottom:835.773333pt;}
.y25_c00210{bottom:836.733333pt;}
.y28_c00210{bottom:837.306667pt;}
.y26_c00210{bottom:837.693333pt;}
.y21_c00210{bottom:852.733333pt;}
.y24_c00210{bottom:853.106667pt;}
.y22_c00210{bottom:854.066667pt;}
.y20_c00210{bottom:855.026667pt;}
.y23_c00210{bottom:855.226667pt;}
.y1e_c00210{bottom:870.440000pt;}
.y1c_c00210{bottom:871.400000pt;}
.y1d_c00210{bottom:871.973333pt;}
.y1b_c00210{bottom:872.360000pt;}
.y1f_c00210{bottom:873.306667pt;}
.y17_c00210{bottom:887.026667pt;}
.y18_c00210{bottom:887.400000pt;}
.y19_c00210{bottom:887.773333pt;}
.y16_c00210{bottom:888.733333pt;}
.y1a_c00210{bottom:889.306667pt;}
.y15_c00210{bottom:889.693333pt;}
.y11_c00210{bottom:905.106667pt;}
.y13_c00210{bottom:907.026667pt;}
.y12_c00210{bottom:907.226667pt;}
.y14_c00210{bottom:907.973333pt;}
.yd_c00210{bottom:922.440000pt;}
.yb_c00210{bottom:923.400000pt;}
.yc_c00210{bottom:924.360000pt;}
.ye_c00210{bottom:924.560000pt;}
.yf_c00210{bottom:925.306667pt;}
.y10_c00210{bottom:925.693333pt;}
.y5_c00210{bottom:939.400000pt;}
.y6_c00210{bottom:940.360000pt;}
.y8_c00210{bottom:941.106667pt;}
.ya_c00210{bottom:941.306667pt;}
.y3_c00210{bottom:941.693333pt;}
.y7_c00210{bottom:941.893333pt;}
.y4_c00210{bottom:942.640000pt;}
.y9_c00210{bottom:943.026667pt;}
.y2_c00210{bottom:976.933333pt;}
.y1_c00210{bottom:977.306667pt;}
.h8_c00210{height:3.739141pt;}
.h5_c00210{height:20.466875pt;}
.h2_c00210{height:22.303646pt;}
.h1_c00210{height:27.879557pt;}
.h3_c00210{height:31.618698pt;}
.h4_c00210{height:35.357839pt;}
.h6_c00210{height:39.031380pt;}
.h7_c00210{height:42.770521pt;}
.h0_c00210{height:1186.666667pt;}
.w0_c00210{width:782.666667pt;}
.x0_c00210{left:0.000000pt;}
.x3_c00210{left:134.666667pt;}
.xa6_c00210{left:136.000000pt;}
.xb0_c00210{left:137.706667pt;}
.xaa_c00210{left:147.040000pt;}
.x54_c00210{left:148.960000pt;}
.xbb_c00210{left:150.666667pt;}
.x4_c00210{left:156.000000pt;}
.xcd_c00210{left:157.333333pt;}
.xa7_c00210{left:159.040000pt;}
.x43_c00210{left:160.000000pt;}
.xd1_c00210{left:161.333333pt;}
.xc9_c00210{left:163.040000pt;}
.x86_c00210{left:165.706667pt;}
.x13_c00210{left:166.666667pt;}
.x37_c00210{left:168.000000pt;}
.x72_c00210{left:169.333333pt;}
.x7d_c00210{left:172.000000pt;}
.x68_c00210{left:175.626667pt;}
.x1e_c00210{left:177.333333pt;}
.x91_c00210{left:178.666667pt;}
.xe6_c00210{left:180.960000pt;}
.x4f_c00210{left:183.040000pt;}
.x5_c00210{left:184.373333pt;}
.xca_c00210{left:186.666667pt;}
.x7e_c00210{left:188.373333pt;}
.x2b_c00210{left:189.706667pt;}
.x87_c00210{left:190.666667pt;}
.xb9_c00210{left:192.573333pt;}
.x1f_c00210{left:193.706667pt;}
.x95_c00210{left:196.000000pt;}
.x55_c00210{left:197.706667pt;}
.x73_c00210{left:199.040000pt;}
.x44_c00210{left:200.000000pt;}
.x69_c00210{left:202.666667pt;}
.x50_c00210{left:205.333333pt;}
.x14_c00210{left:208.000000pt;}
.xd7_c00210{left:210.666667pt;}
.x7f_c00210{left:212.373333pt;}
.x2c_c00210{left:213.333333pt;}
.x38_c00210{left:216.373333pt;}
.x20_c00210{left:217.706667pt;}
.xab_c00210{left:220.000000pt;}
.xbd_c00210{left:221.333333pt;}
.x6_c00210{left:222.666667pt;}
.x6a_c00210{left:224.000000pt;}
.xce_c00210{left:225.333333pt;}
.xe3_c00210{left:226.293333pt;}
.xeb_c00210{left:228.960000pt;}
.x92_c00210{left:230.666667pt;}
.x74_c00210{left:232.373333pt;}
.xc4_c00210{left:233.333333pt;}
.x45_c00210{left:237.706667pt;}
.x15_c00210{left:240.373333pt;}
.xb1_c00210{left:241.333333pt;}
.x5f_c00210{left:243.040000pt;}
.xae_c00210{left:248.000000pt;}
.x21_c00210{left:248.960000pt;}
.xbf_c00210{left:250.666667pt;}
.x2d_c00210{left:252.000000pt;}
.x7_c00210{left:252.960000pt;}
.xd8_c00210{left:254.293333pt;}
.x56_c00210{left:257.133333pt;}
.xb2_c00210{left:260.000000pt;}
.x6b_c00210{left:261.706667pt;}
.x88_c00210{left:262.666667pt;}
.x80_c00210{left:264.373333pt;}
.x96_c00210{left:268.373333pt;}
.xec_c00210{left:269.333333pt;}
.x46_c00210{left:270.666667pt;}
.xd9_c00210{left:272.373333pt;}
.x9f_c00210{left:274.666667pt;}
.x22_c00210{left:275.626667pt;}
.x60_c00210{left:277.333333pt;}
.x57_c00210{left:278.293333pt;}
.x75_c00210{left:281.333333pt;}
.x2e_c00210{left:282.293333pt;}
.xc0_c00210{left:284.000000pt;}
.xbe_c00210{left:286.293333pt;}
.xba_c00210{left:287.800000pt;}
.x58_c00210{left:291.426667pt;}
.x97_c00210{left:293.333333pt;}
.x8_c00210{left:294.293333pt;}
.x39_c00210{left:296.373333pt;}
.x6c_c00210{left:300.373333pt;}
.xd2_c00210{left:303.426667pt;}
.x59_c00210{left:304.573333pt;}
.xb3_c00210{left:308.573333pt;}
.x2f_c00210{left:309.706667pt;}
.x51_c00210{left:310.666667pt;}
.x16_c00210{left:312.000000pt;}
.x9_c00210{left:314.666667pt;}
.x47_c00210{left:319.040000pt;}
.x76_c00210{left:322.293333pt;}
.x3a_c00210{left:323.626667pt;}
.xa8_c00210{left:324.960000pt;}
.x52_c00210{left:327.040000pt;}
.x89_c00210{left:331.040000pt;}
.x5a_c00210{left:332.000000pt;}
.x30_c00210{left:333.706667pt;}
.xcf_c00210{left:335.040000pt;}
.xed_c00210{left:337.706667pt;}
.x61_c00210{left:338.666667pt;}
.xde_c00210{left:340.000000pt;}
.x3b_c00210{left:341.333333pt;}
.x93_c00210{left:343.040000pt;}
.xa_c00210{left:344.373333pt;}
.x17_c00210{left:345.333333pt;}
.xd3_c00210{left:347.040000pt;}
.x5b_c00210{left:348.000000pt;}
.xe7_c00210{left:349.706667pt;}
.x53_c00210{left:350.666667pt;}
.x23_c00210{left:352.000000pt;}
.x2_c00210{left:353.333333pt;}
.x6d_c00210{left:354.293333pt;}
.x31_c00210{left:357.333333pt;}
.x77_c00210{left:358.666667pt;}
.x18_c00210{left:360.000000pt;}
.x5c_c00210{left:361.333333pt;}
.x81_c00210{left:362.293333pt;}
.xee_c00210{left:363.626667pt;}
.x3c_c00210{left:365.333333pt;}
.x24_c00210{left:368.373333pt;}
.xa0_c00210{left:370.666667pt;}
.xbc_c00210{left:373.333333pt;}
.xda_c00210{left:376.960000pt;}
.xe8_c00210{left:378.666667pt;}
.xb_c00210{left:380.000000pt;}
.x48_c00210{left:382.666667pt;}
.x94_c00210{left:384.373333pt;}
.xd0_c00210{left:386.293333pt;}
.x62_c00210{left:388.000000pt;}
.x32_c00210{left:389.333333pt;}
.x6e_c00210{left:390.666667pt;}
.x25_c00210{left:392.373333pt;}
.xc1_c00210{left:396.960000pt;}
.x3d_c00210{left:400.373333pt;}
.x98_c00210{left:404.000000pt;}
.xa2_c00210{left:405.706667pt;}
.xe4_c00210{left:408.000000pt;}
.x19_c00210{left:409.706667pt;}
.x49_c00210{left:410.666667pt;}
.xc_c00210{left:414.666667pt;}
.x8a_c00210{left:415.626667pt;}
.xd4_c00210{left:417.333333pt;}
.x26_c00210{left:418.666667pt;}
.xc5_c00210{left:420.960000pt;}
.xe5_c00210{left:424.373333pt;}
.xac_c00210{left:425.706667pt;}
.x33_c00210{left:428.000000pt;}
.x6f_c00210{left:429.333333pt;}
.xa3_c00210{left:431.040000pt;}
.x99_c00210{left:432.373333pt;}
.x5d_c00210{left:440.000000pt;}
.x82_c00210{left:448.000000pt;}
.xc6_c00210{left:448.960000pt;}
.x8b_c00210{left:451.040000pt;}
.xdb_c00210{left:455.040000pt;}
.xdf_c00210{left:456.000000pt;}
.x9a_c00210{left:457.706667pt;}
.xe9_c00210{left:460.000000pt;}
.x4a_c00210{left:461.333333pt;}
.xb4_c00210{left:463.240000pt;}
.x27_c00210{left:464.960000pt;}
.x3e_c00210{left:468.000000pt;}
.xcb_c00210{left:469.706667pt;}
.x63_c00210{left:472.373333pt;}
.x78_c00210{left:473.706667pt;}
.x8c_c00210{left:476.000000pt;}
.x1a_c00210{left:477.333333pt;}
.x4b_c00210{left:479.040000pt;}
.xef_c00210{left:480.000000pt;}
.x28_c00210{left:481.706667pt;}
.xd_c00210{left:484.000000pt;}
.xc7_c00210{left:487.040000pt;}
.x83_c00210{left:488.000000pt;}
.xa1_c00210{left:490.666667pt;}
.xa9_c00210{left:491.800000pt;}
.x3f_c00210{left:492.960000pt;}
.x9b_c00210{left:500.960000pt;}
.xcc_c00210{left:502.293333pt;}
.x29_c00210{left:504.000000pt;}
.x64_c00210{left:504.960000pt;}
.x79_c00210{left:507.040000pt;}
.x4c_c00210{left:512.373333pt;}
.xe_c00210{left:517.333333pt;}
.x9c_c00210{left:519.040000pt;}
.x8d_c00210{left:520.960000pt;}
.xa4_c00210{left:523.626667pt;}
.xdc_c00210{left:525.706667pt;}
.x34_c00210{left:529.333333pt;}
.x1b_c00210{left:530.293333pt;}
.x7a_c00210{left:532.000000pt;}
.xe0_c00210{left:533.706667pt;}
.xb5_c00210{left:534.666667pt;}
.x65_c00210{left:535.626667pt;}
.xc2_c00210{left:538.293333pt;}
.xf_c00210{left:540.960000pt;}
.x9d_c00210{left:542.666667pt;}
.x84_c00210{left:547.040000pt;}
.x70_c00210{left:548.000000pt;}
.x1c_c00210{left:548.960000pt;}
.x8e_c00210{left:551.040000pt;}
.x5e_c00210{left:554.666667pt;}
.xb6_c00210{left:555.626667pt;}
.xe1_c00210{left:557.333333pt;}
.x40_c00210{left:558.293333pt;}
.xd5_c00210{left:561.706667pt;}
.xad_c00210{left:569.333333pt;}
.xf0_c00210{left:571.040000pt;}
.x66_c00210{left:572.000000pt;}
.x10_c00210{left:574.293333pt;}
.x41_c00210{left:576.000000pt;}
.x8f_c00210{left:577.706667pt;}
.x4d_c00210{left:580.000000pt;}
.x7b_c00210{left:581.333333pt;}
.x2a_c00210{left:582.666667pt;}
.x85_c00210{left:584.000000pt;}
.xa5_c00210{left:588.000000pt;}
.x9e_c00210{left:589.333333pt;}
.x11_c00210{left:590.666667pt;}
.x35_c00210{left:591.626667pt;}
.xc3_c00210{left:593.333333pt;}
.xe2_c00210{left:594.666667pt;}
.xb7_c00210{left:596.573333pt;}
.x71_c00210{left:597.706667pt;}
.xc8_c00210{left:598.666667pt;}
.x42_c00210{left:601.333333pt;}
.x67_c00210{left:603.040000pt;}
.xdd_c00210{left:605.906667pt;}
.xd6_c00210{left:608.000000pt;}
.x90_c00210{left:609.333333pt;}
.xaf_c00210{left:612.000000pt;}
.x7c_c00210{left:614.666667pt;}
.x12_c00210{left:615.626667pt;}
.x1d_c00210{left:617.706667pt;}
.x4e_c00210{left:620.373333pt;}
.x1_c00210{left:625.706667pt;}
.xea_c00210{left:631.040000pt;}
.xb8_c00210{left:633.333333pt;}
.x36_c00210{left:636.000000pt;}
}





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

.ir_c00211:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00211{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00211;src:url('chunks/assets/font_000041833660be18b3779fae.woff2')format("woff");}.ff1_c00211{font-family:ff1_c00211;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m102_c00211{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m100_c00211{transform:matrix(0.276457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276457,0.000000,0.000000,0.250000,0,0);}
.m3a_c00211{transform:matrix(0.365028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365028,0.000000,0.000000,0.250000,0,0);}
.m3b_c00211{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.m105_c00211{transform:matrix(0.368482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368482,0.000000,0.000000,0.250000,0,0);}
.mde_c00211{transform:matrix(0.368865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368865,0.000000,0.000000,0.250000,0,0);}
.m27_c00211{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.mf7_c00211{transform:matrix(0.372699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372699,0.000000,0.000000,0.250000,0,0);}
.m40_c00211{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m106_c00211{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m49_c00211{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.mc5_c00211{transform:matrix(0.382285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382285,0.000000,0.000000,0.250000,0,0);}
.m10c_c00211{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.me0_c00211{transform:matrix(0.386120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386120,0.000000,0.000000,0.250000,0,0);}
.mf5_c00211{transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);}
.m5d_c00211{transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);}
.m69_c00211{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m101_c00211{transform:matrix(0.395322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395322,0.000000,0.000000,0.250000,0,0);}
.m32_c00211{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m59_c00211{transform:matrix(0.399156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399156,0.000000,0.000000,0.250000,0,0);}
.ma2_c00211{transform:matrix(0.399923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399923,0.000000,0.000000,0.250000,0,0);}
.mb3_c00211{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m78_c00211{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m2a_c00211{transform:matrix(0.401452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401452,0.000000,0.000000,0.250000,0,0);}
.m9c_c00211{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m6c_c00211{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.md3_c00211{transform:matrix(0.406058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406058,0.000000,0.000000,0.250000,0,0);}
.m10f_c00211{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m52_c00211{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m3e_c00211{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.m5b_c00211{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mb4_c00211{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m98_c00211{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m58_c00211{transform:matrix(0.416794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416794,0.000000,0.000000,0.250000,0,0);}
.mba_c00211{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m36_c00211{transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);}
.med_c00211{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m42_c00211{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m7a_c00211{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m41_c00211{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m62_c00211{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mb_c00211{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m12_c00211{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.mbb_c00211{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m84_c00211{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.mcb_c00211{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m13_c00211{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.mf3_c00211{transform:matrix(0.424847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424847,0.000000,0.000000,0.250000,0,0);}
.mf_c00211{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.md1_c00211{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.ma5_c00211{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m103_c00211{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m44_c00211{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m109_c00211{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m8e_c00211{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.mbc_c00211{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m66_c00211{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m2c_c00211{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m108_c00211{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mdf_c00211{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.ma0_c00211{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.me5_c00211{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m9d_c00211{transform:matrix(0.434433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434433,0.000000,0.000000,0.250000,0,0);}
.m7b_c00211{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mc8_c00211{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m33_c00211{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m104_c00211{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m21_c00211{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.m47_c00211{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m1e_c00211{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.md0_c00211{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.mc3_c00211{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m6f_c00211{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.ma4_c00211{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.maf_c00211{transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);}
.m88_c00211{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.mb7_c00211{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m86_c00211{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.me4_c00211{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.mf6_c00211{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m71_c00211{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.mbd_c00211{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.mda_c00211{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m54_c00211{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.ma6_c00211{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m57_c00211{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mc0_c00211{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m0_c00211{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.mf9_c00211{transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);}
.m64_c00211{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.md4_c00211{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m2e_c00211{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m7e_c00211{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.mf2_c00211{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mc7_c00211{transform:matrix(0.461345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461345,0.000000,0.000000,0.250000,0,0);}
.mc2_c00211{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m15_c00211{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.mcd_c00211{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.mdd_c00211{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m4e_c00211{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m92_c00211{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.mf8_c00211{transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);}
.m74_c00211{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.mdc_c00211{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.mec_c00211{transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);}
.m5a_c00211{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.mee_c00211{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m38_c00211{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m25_c00211{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m1d_c00211{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m94_c00211{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m111_c00211{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.md_c00211{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.mfa_c00211{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mfb_c00211{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mf0_c00211{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m97_c00211{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mc1_c00211{transform:matrix(0.489796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489796,0.000000,0.000000,0.250000,0,0);}
.m110_c00211{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m17_c00211{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.me2_c00211{transform:matrix(0.492115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492115,0.000000,0.000000,0.250000,0,0);}
.m81_c00211{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mbf_c00211{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m29_c00211{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);}
.maa_c00211{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.me3_c00211{transform:matrix(0.504638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504638,0.000000,0.000000,0.250000,0,0);}
.m4c_c00211{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mbe_c00211{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m112_c00211{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m6_c00211{transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);}
.m63_c00211{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m28_c00211{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m9e_c00211{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m75_c00211{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m23_c00211{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m18_c00211{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m14_c00211{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m89_c00211{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m10e_c00211{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mac_c00211{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.ma8_c00211{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m6d_c00211{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m20_c00211{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);}
.m68_c00211{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.mcc_c00211{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.md5_c00211{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mb5_c00211{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m37_c00211{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m6b_c00211{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m95_c00211{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m9a_c00211{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m34_c00211{transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);}
.m4d_c00211{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m65_c00211{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m9b_c00211{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m11_c00211{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.md9_c00211{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mf1_c00211{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.me9_c00211{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m4f_c00211{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m8c_c00211{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.meb_c00211{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m1c_c00211{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.mc4_c00211{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m7f_c00211{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m6a_c00211{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m10b_c00211{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m1b_c00211{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m60_c00211{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mca_c00211{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m8d_c00211{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m107_c00211{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.me7_c00211{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m10a_c00211{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m5c_c00211{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m67_c00211{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m6e_c00211{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m3f_c00211{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.mce_c00211{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mc_c00211{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.m83_c00211{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m5f_c00211{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);}
.m50_c00211{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m96_c00211{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m39_c00211{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.md8_c00211{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.md7_c00211{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m35_c00211{transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);}
.m22_c00211{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);}
.m5e_c00211{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m4a_c00211{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m30_c00211{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.md2_c00211{transform:matrix(0.574519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574519,0.000000,0.000000,0.250000,0,0);}
.m113_c00211{transform:matrix(0.574675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574675,0.000000,0.000000,0.250000,0,0);}
.ma1_c00211{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mb9_c00211{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.me6_c00211{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.m2b_c00211{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m16_c00211{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m7c_c00211{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.me_c00211{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.mcf_c00211{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.ma_c00211{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m9f_c00211{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mc9_c00211{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m10d_c00211{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.mb6_c00211{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m73_c00211{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.mea_c00211{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);}
.m93_c00211{transform:matrix(0.601765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601765,0.000000,0.000000,0.250000,0,0);}
.m3_c00211{transform:matrix(0.602206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602206,0.000000,0.000000,0.250000,0,0);}
.mfe_c00211{transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);}
.m1_c00211{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m3c_c00211{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.mef_c00211{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m72_c00211{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m8f_c00211{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m61_c00211{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m46_c00211{transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);}
.m8a_c00211{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m2f_c00211{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.mad_c00211{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.mae_c00211{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m26_c00211{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m90_c00211{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m1a_c00211{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_c00211{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m31_c00211{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.mb8_c00211{transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);}
.mb2_c00211{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m7_c00211{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m79_c00211{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m1f_c00211{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m48_c00211{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.me1_c00211{transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);}
.m76_c00211{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m19_c00211{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.md6_c00211{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m82_c00211{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m7d_c00211{transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);}
.ma9_c00211{transform:matrix(0.659412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659412,0.000000,0.000000,0.250000,0,0);}
.m4b_c00211{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m3d_c00211{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m45_c00211{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m8_c00211{transform:matrix(0.669872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669872,0.000000,0.000000,0.250000,0,0);}
.mab_c00211{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.mc6_c00211{transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);}
.m10_c00211{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m85_c00211{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mfc_c00211{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.mdb_c00211{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.mff_c00211{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m24_c00211{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);}
.m80_c00211{transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);}
.ma7_c00211{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m70_c00211{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.mf4_c00211{transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);}
.mfd_c00211{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m99_c00211{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m4_c00211{transform:matrix(0.736765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736765,0.000000,0.000000,0.250000,0,0);}
.m8b_c00211{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mb1_c00211{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.me8_c00211{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m77_c00211{transform:matrix(0.772059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772059,0.000000,0.000000,0.250000,0,0);}
.ma3_c00211{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m56_c00211{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m55_c00211{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m87_c00211{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mb0_c00211{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.m51_c00211{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m91_c00211{transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);}
.m9_c00211{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m5_c00211{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m2_c00211{transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);}
.m2d_c00211{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m43_c00211{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-7.228080px;}
.ws1_c00211{word-spacing:0.000000px;}
.fc0_c00211{color:transparent;}
.fs7_c00211{font-size:3.420000px;}
.fs2_c00211{font-size:13.620000px;}
.fs4_c00211{font-size:18.720000px;}
.fs1_c00211{font-size:20.400000px;}
.fs3_c00211{font-size:25.500000px;}
.fs0_c00211{font-size:28.920000px;}
.fs5_c00211{font-size:32.340000px;}
.fs6_c00211{font-size:35.700000px;}
.fs8_c00211{font-size:39.120000px;}
.y0_c00211{bottom:0.000000px;}
.ydf_c00211{bottom:250.245000px;}
.ye0_c00211{bottom:251.130000px;}
.yde_c00211{bottom:251.325000px;}
.ydd_c00211{bottom:252.405000px;}
.ye1_c00211{bottom:253.470000px;}
.ydb_c00211{bottom:269.745000px;}
.ydc_c00211{bottom:270.630000px;}
.yd9_c00211{bottom:271.470000px;}
.yda_c00211{bottom:271.905000px;}
.yd6_c00211{bottom:288.405000px;}
.yd8_c00211{bottom:289.245000px;}
.yd4_c00211{bottom:289.680000px;}
.yd7_c00211{bottom:290.745000px;}
.yd2_c00211{bottom:291.405000px;}
.yd3_c00211{bottom:291.825000px;}
.yd5_c00211{bottom:292.905000px;}
.ycf_c00211{bottom:309.180000px;}
.yd0_c00211{bottom:310.245000px;}
.yd1_c00211{bottom:310.905000px;}
.yce_c00211{bottom:311.325000px;}
.ycd_c00211{bottom:312.405000px;}
.ycb_c00211{bottom:331.470000px;}
.ycc_c00211{bottom:332.970000px;}
.yc8_c00211{bottom:346.905000px;}
.yca_c00211{bottom:347.970000px;}
.yc9_c00211{bottom:348.825000px;}
.yc5_c00211{bottom:349.245000px;}
.yc4_c00211{bottom:349.905000px;}
.yc7_c00211{bottom:350.130000px;}
.yc6_c00211{bottom:351.405000px;}
.yc2_c00211{bottom:369.180000px;}
.yc3_c00211{bottom:369.825000px;}
.yc1_c00211{bottom:370.050000px;}
.ybf_c00211{bottom:370.905000px;}
.yc0_c00211{bottom:371.325000px;}
.ybe_c00211{bottom:387.825000px;}
.ybd_c00211{bottom:388.245000px;}
.ybb_c00211{bottom:389.325000px;}
.yb9_c00211{bottom:390.405000px;}
.yba_c00211{bottom:390.630000px;}
.ybc_c00211{bottom:391.470000px;}
.yb4_c00211{bottom:407.745000px;}
.yb6_c00211{bottom:409.245000px;}
.yb7_c00211{bottom:409.905000px;}
.yb5_c00211{bottom:410.130000px;}
.yb8_c00211{bottom:410.970000px;}
.yb1_c00211{bottom:427.245000px;}
.yae_c00211{bottom:427.680000px;}
.yb3_c00211{bottom:428.325000px;}
.yb2_c00211{bottom:428.550000px;}
.yad_c00211{bottom:428.745000px;}
.yb0_c00211{bottom:429.825000px;}
.yaf_c00211{bottom:430.905000px;}
.yab_c00211{bottom:446.745000px;}
.yaa_c00211{bottom:447.825000px;}
.ya8_c00211{bottom:448.245000px;}
.ya9_c00211{bottom:449.325000px;}
.yac_c00211{bottom:449.970000px;}
.ya6_c00211{bottom:450.405000px;}
.ya7_c00211{bottom:451.470000px;}
.ya3_c00211{bottom:466.680000px;}
.ya5_c00211{bottom:467.745000px;}
.ya1_c00211{bottom:469.905000px;}
.ya2_c00211{bottom:470.130000px;}
.ya4_c00211{bottom:470.970000px;}
.y9d_c00211{bottom:487.245000px;}
.ya0_c00211{bottom:488.130000px;}
.y9f_c00211{bottom:488.325000px;}
.y9e_c00211{bottom:489.405000px;}
.y99_c00211{bottom:506.745000px;}
.y9b_c00211{bottom:507.825000px;}
.y98_c00211{bottom:508.245000px;}
.y9a_c00211{bottom:508.905000px;}
.y9c_c00211{bottom:509.130000px;}
.y96_c00211{bottom:526.680000px;}
.y95_c00211{bottom:528.825000px;}
.y97_c00211{bottom:529.050000px;}
.y94_c00211{bottom:529.905000px;}
.y93_c00211{bottom:530.325000px;}
.y90_c00211{bottom:547.245000px;}
.y92_c00211{bottom:547.905000px;}
.y91_c00211{bottom:548.325000px;}
.y8f_c00211{bottom:549.405000px;}
.y8a_c00211{bottom:566.745000px;}
.y8e_c00211{bottom:567.405000px;}
.y8d_c00211{bottom:568.470000px;}
.y8b_c00211{bottom:568.905000px;}
.y8c_c00211{bottom:569.970000px;}
.y87_c00211{bottom:586.245000px;}
.y89_c00211{bottom:587.130000px;}
.y88_c00211{bottom:588.405000px;}
.y86_c00211{bottom:605.745000px;}
.y84_c00211{bottom:606.825000px;}
.y83_c00211{bottom:607.470000px;}
.y81_c00211{bottom:607.905000px;}
.y85_c00211{bottom:608.130000px;}
.y82_c00211{bottom:608.970000px;}
.y7f_c00211{bottom:625.245000px;}
.y80_c00211{bottom:626.130000px;}
.y7d_c00211{bottom:627.405000px;}
.y7e_c00211{bottom:628.470000px;}
.y7b_c00211{bottom:644.745000px;}
.y7c_c00211{bottom:645.630000px;}
.y7a_c00211{bottom:646.905000px;}
.y75_c00211{bottom:664.680000px;}
.y77_c00211{bottom:665.745000px;}
.y78_c00211{bottom:666.630000px;}
.y79_c00211{bottom:666.825000px;}
.y76_c00211{bottom:667.905000px;}
.y72_c00211{bottom:685.245000px;}
.y74_c00211{bottom:685.905000px;}
.y71_c00211{bottom:686.130000px;}
.y73_c00211{bottom:686.970000px;}
.y70_c00211{bottom:687.405000px;}
.y6a_c00211{bottom:703.470000px;}
.y6f_c00211{bottom:704.130000px;}
.y6d_c00211{bottom:704.325000px;}
.y6c_c00211{bottom:704.970000px;}
.y69_c00211{bottom:705.405000px;}
.y6b_c00211{bottom:705.630000px;}
.y6e_c00211{bottom:706.470000px;}
.y68_c00211{bottom:724.050000px;}
.y63_c00211{bottom:724.245000px;}
.y67_c00211{bottom:724.905000px;}
.y66_c00211{bottom:725.130000px;}
.y65_c00211{bottom:725.325000px;}
.y64_c00211{bottom:726.405000px;}
.y5f_c00211{bottom:743.745000px;}
.y5e_c00211{bottom:744.825000px;}
.y61_c00211{bottom:745.050000px;}
.y60_c00211{bottom:745.905000px;}
.y62_c00211{bottom:746.970000px;}
.y5c_c00211{bottom:763.245000px;}
.y58_c00211{bottom:764.325000px;}
.y5b_c00211{bottom:764.550000px;}
.y5d_c00211{bottom:764.970000px;}
.y59_c00211{bottom:765.405000px;}
.y5a_c00211{bottom:766.470000px;}
.y57_c00211{bottom:781.245000px;}
.y51_c00211{bottom:782.745000px;}
.y53_c00211{bottom:783.405000px;}
.y55_c00211{bottom:783.825000px;}
.y56_c00211{bottom:784.470000px;}
.y52_c00211{bottom:784.905000px;}
.y54_c00211{bottom:785.970000px;}
.y4f_c00211{bottom:802.245000px;}
.y50_c00211{bottom:804.405000px;}
.y4d_c00211{bottom:821.745000px;}
.y4e_c00211{bottom:821.970000px;}
.y4b_c00211{bottom:822.180000px;}
.y4c_c00211{bottom:824.325000px;}
.y4a_c00211{bottom:825.405000px;}
.y46_c00211{bottom:841.905000px;}
.y48_c00211{bottom:842.745000px;}
.y45_c00211{bottom:842.970000px;}
.y47_c00211{bottom:843.630000px;}
.y44_c00211{bottom:843.825000px;}
.y43_c00211{bottom:844.905000px;}
.y49_c00211{bottom:845.970000px;}
.y40_c00211{bottom:860.970000px;}
.y3c_c00211{bottom:862.245000px;}
.y42_c00211{bottom:862.905000px;}
.y3f_c00211{bottom:863.970000px;}
.y41_c00211{bottom:864.405000px;}
.y3d_c00211{bottom:864.420000px;}
.y3e_c00211{bottom:865.470000px;}
.y3b_c00211{bottom:897.825000px;}
.y3a_c00211{bottom:899.970000px;}
.y36_c00211{bottom:912.825000px;}
.y38_c00211{bottom:913.905000px;}
.y35_c00211{bottom:914.130000px;}
.y37_c00211{bottom:914.970000px;}
.y39_c00211{bottom:915.195000px;}
.y34_c00211{bottom:916.050000px;}
.y30_c00211{bottom:928.905000px;}
.y32_c00211{bottom:929.970000px;}
.y31_c00211{bottom:930.195000px;}
.y33_c00211{bottom:931.050000px;}
.y2b_c00211{bottom:941.970000px;}
.y2d_c00211{bottom:942.825000px;}
.y2f_c00211{bottom:943.905000px;}
.y2c_c00211{bottom:944.970000px;}
.y2e_c00211{bottom:946.050000px;}
.y2a_c00211{bottom:957.825000px;}
.y23_c00211{bottom:971.550000px;}
.y27_c00211{bottom:972.405000px;}
.y29_c00211{bottom:973.050000px;}
.y24_c00211{bottom:973.470000px;}
.y28_c00211{bottom:974.130000px;}
.y26_c00211{bottom:974.550000px;}
.y25_c00211{bottom:975.195000px;}
.y1f_c00211{bottom:986.550000px;}
.y22_c00211{bottom:987.405000px;}
.y21_c00211{bottom:988.470000px;}
.y20_c00211{bottom:989.550000px;}
.y1d_c00211{bottom:1000.470000px;}
.y1c_c00211{bottom:1001.325000px;}
.y17_c00211{bottom:1001.550000px;}
.y18_c00211{bottom:1002.405000px;}
.y1e_c00211{bottom:1002.630000px;}
.y19_c00211{bottom:1003.470000px;}
.y1b_c00211{bottom:1003.695000px;}
.y1a_c00211{bottom:1004.550000px;}
.y16_c00211{bottom:1016.325000px;}
.y12_c00211{bottom:1032.405000px;}
.y11_c00211{bottom:1032.630000px;}
.y14_c00211{bottom:1033.470000px;}
.y15_c00211{bottom:1033.695000px;}
.y13_c00211{bottom:1034.550000px;}
.yf_c00211{bottom:1045.905000px;}
.ye_c00211{bottom:1047.405000px;}
.yd_c00211{bottom:1048.470000px;}
.yc_c00211{bottom:1048.695000px;}
.y10_c00211{bottom:1049.550000px;}
.yb_c00211{bottom:1059.825000px;}
.y9_c00211{bottom:1060.470000px;}
.y7_c00211{bottom:1060.905000px;}
.y8_c00211{bottom:1061.550000px;}
.y6_c00211{bottom:1062.630000px;}
.ya_c00211{bottom:1063.050000px;}
.y5_c00211{bottom:1063.470000px;}
.y3_c00211{bottom:1063.695000px;}
.y4_c00211{bottom:1064.550000px;}
.y2_c00211{bottom:1099.050000px;}
.y1_c00211{bottom:1099.905000px;}
.h8_c00211{height:4.206533px;}
.h3_c00211{height:16.752334px;}
.h5_c00211{height:23.025234px;}
.h2_c00211{height:25.091602px;}
.h4_c00211{height:31.364502px;}
.h1_c00211{height:35.571035px;}
.h6_c00211{height:39.777568px;}
.h7_c00211{height:43.910303px;}
.h9_c00211{height:48.116836px;}
.h0_c00211{height:1335.000000px;}
.w0_c00211{width:880.500000px;}
.x0_c00211{left:0.000000px;}
.x10c_c00211{left:148.500000px;}
.xe2_c00211{left:150.420000px;}
.xad_c00211{left:151.500000px;}
.x78_c00211{left:153.000000px;}
.x25_c00211{left:154.500000px;}
.x1_c00211{left:156.420000px;}
.x104_c00211{left:164.580000px;}
.x12_c00211{left:166.500000px;}
.x42_c00211{left:167.580000px;}
.x3_c00211{left:169.080000px;}
.xdb_c00211{left:172.500000px;}
.x101_c00211{left:175.080000px;}
.xe7_c00211{left:177.420000px;}
.xbe_c00211{left:180.420000px;}
.x5b_c00211{left:181.500000px;}
.xc3_c00211{left:183.420000px;}
.x4_c00211{left:186.000000px;}
.x18_c00211{left:187.080000px;}
.xd1_c00211{left:190.080000px;}
.x89_c00211{left:192.000000px;}
.x6e_c00211{left:193.500000px;}
.x32_c00211{left:198.420000px;}
.xdc_c00211{left:202.500000px;}
.x102_c00211{left:203.580000px;}
.xd8_c00211{left:205.080000px;}
.xc9_c00211{left:207.420000px;}
.x79_c00211{left:208.920000px;}
.x4b_c00211{left:210.000000px;}
.x13_c00211{left:211.500000px;}
.x9c_c00211{left:213.420000px;}
.x94_c00211{left:214.500000px;}
.x81_c00211{left:216.420000px;}
.x105_c00211{left:217.500000px;}
.x4c_c00211{left:220.500000px;}
.xd2_c00211{left:223.500000px;}
.xa7_c00211{left:225.420000px;}
.x6f_c00211{left:226.500000px;}
.xf4_c00211{left:228.420000px;}
.x51_c00211{left:231.000000px;}
.x7a_c00211{left:235.080000px;}
.x5_c00211{left:237.000000px;}
.x14_c00211{left:238.920000px;}
.x33_c00211{left:240.000000px;}
.x9d_c00211{left:241.500000px;}
.xd3_c00211{left:243.420000px;}
.x103_c00211{left:246.000000px;}
.xb8_c00211{left:247.500000px;}
.x43_c00211{left:252.000000px;}
.x4d_c00211{left:255.000000px;}
.x5c_c00211{left:256.500000px;}
.xe3_c00211{left:262.500000px;}
.xca_c00211{left:264.000000px;}
.x19_c00211{left:265.920000px;}
.xae_c00211{left:267.000000px;}
.x36_c00211{left:268.080000px;}
.xa8_c00211{left:270.000000px;}
.x34_c00211{left:274.080000px;}
.x66_c00211{left:275.580000px;}
.x5d_c00211{left:277.080000px;}
.xd4_c00211{left:278.580000px;}
.x15_c00211{left:280.500000px;}
.x4e_c00211{left:281.580000px;}
.x70_c00211{left:284.580000px;}
.x106_c00211{left:286.500000px;}
.x6_c00211{left:287.580000px;}
.xb9_c00211{left:289.920000px;}
.x95_c00211{left:291.000000px;}
.x26_c00211{left:293.580000px;}
.x1a_c00211{left:295.500000px;}
.x107_c00211{left:297.000000px;}
.xf5_c00211{left:298.080000px;}
.x35_c00211{left:300.000000px;}
.xe8_c00211{left:301.500000px;}
.xaf_c00211{left:304.920000px;}
.x7b_c00211{left:307.500000px;}
.xbf_c00211{left:309.000000px;}
.x16_c00211{left:310.920000px;}
.xe0_c00211{left:312.420000px;}
.x96_c00211{left:313.920000px;}
.x108_c00211{left:315.000000px;}
.x37_c00211{left:316.500000px;}
.xba_c00211{left:318.000000px;}
.x7_c00211{left:319.500000px;}
.x52_c00211{left:322.500000px;}
.x27_c00211{left:325.920000px;}
.x1b_c00211{left:328.920000px;}
.xf6_c00211{left:331.500000px;}
.x5e_c00211{left:332.580000px;}
.x117_c00211{left:334.500000px;}
.x17_c00211{left:337.500000px;}
.xe1_c00211{left:340.080000px;}
.x28_c00211{left:341.145000px;}
.x9e_c00211{left:342.420000px;}
.xe9_c00211{left:343.920000px;}
.x38_c00211{left:345.420000px;}
.x1c_c00211{left:346.500000px;}
.xcb_c00211{left:349.920000px;}
.x8e_c00211{left:351.420000px;}
.x4f_c00211{left:353.580000px;}
.x7c_c00211{left:358.920000px;}
.x82_c00211{left:360.420000px;}
.x53_c00211{left:362.580000px;}
.xf7_c00211{left:364.920000px;}
.x9f_c00211{left:370.080000px;}
.x10d_c00211{left:372.000000px;}
.x8_c00211{left:373.500000px;}
.x44_c00211{left:375.000000px;}
.xc0_c00211{left:376.500000px;}
.x67_c00211{left:379.920000px;}
.x50_c00211{left:381.000000px;}
.x97_c00211{left:382.500000px;}
.xeb_c00211{left:384.000000px;}
.xb0_c00211{left:385.920000px;}
.x83_c00211{left:387.000000px;}
.x39_c00211{left:388.500000px;}
.xcc_c00211{left:393.000000px;}
.xbb_c00211{left:394.920000px;}
.x109_c00211{left:396.000000px;}
.x2_c00211{left:402.000000px;}
.x54_c00211{left:405.000000px;}
.x45_c00211{left:408.420000px;}
.x8a_c00211{left:409.920000px;}
.xa9_c00211{left:411.420000px;}
.xf8_c00211{left:412.500000px;}
.x5f_c00211{left:414.420000px;}
.x10e_c00211{left:417.000000px;}
.xb1_c00211{left:418.920000px;}
.x3a_c00211{left:420.420000px;}
.x9_c00211{left:421.500000px;}
.x29_c00211{left:423.000000px;}
.x46_c00211{left:426.000000px;}
.x1d_c00211{left:427.500000px;}
.xec_c00211{left:429.000000px;}
.xc4_c00211{left:430.500000px;}
.xa0_c00211{left:433.920000px;}
.x2a_c00211{left:435.000000px;}
.xfe_c00211{left:436.500000px;}
.x84_c00211{left:437.580000px;}
.xd5_c00211{left:439.920000px;}
.xe5_c00211{left:441.000000px;}
.xc5_c00211{left:442.500000px;}
.xb2_c00211{left:445.080000px;}
.x68_c00211{left:447.000000px;}
.x3b_c00211{left:448.500000px;}
.x71_c00211{left:450.000000px;}
.xbc_c00211{left:453.000000px;}
.x55_c00211{left:454.920000px;}
.xa_c00211{left:456.000000px;}
.x8b_c00211{left:459.000000px;}
.xa1_c00211{left:462.000000px;}
.xea_c00211{left:464.580000px;}
.x98_c00211{left:466.920000px;}
.xb_c00211{left:468.000000px;}
.x2b_c00211{left:469.080000px;}
.x69_c00211{left:472.500000px;}
.x60_c00211{left:474.000000px;}
.x8c_c00211{left:480.000000px;}
.xf0_c00211{left:481.080000px;}
.x72_c00211{left:483.420000px;}
.x10f_c00211{left:484.500000px;}
.xcd_c00211{left:485.580000px;}
.x99_c00211{left:487.920000px;}
.x1e_c00211{left:490.080000px;}
.x3c_c00211{left:492.000000px;}
.xc6_c00211{left:496.500000px;}
.x2c_c00211{left:498.420000px;}
.x85_c00211{left:499.500000px;}
.x8f_c00211{left:501.420000px;}
.xf9_c00211{left:502.500000px;}
.x3d_c00211{left:504.000000px;}
.x6a_c00211{left:505.500000px;}
.xc_c00211{left:507.000000px;}
.xb3_c00211{left:508.920000px;}
.x7d_c00211{left:510.000000px;}
.x73_c00211{left:511.080000px;}
.x61_c00211{left:513.000000px;}
.x86_c00211{left:517.920000px;}
.xd6_c00211{left:519.420000px;}
.xaa_c00211{left:522.420000px;}
.x10a_c00211{left:523.500000px;}
.x56_c00211{left:524.580000px;}
.x90_c00211{left:526.080000px;}
.xe6_c00211{left:528.000000px;}
.xc7_c00211{left:529.080000px;}
.xd9_c00211{left:531.420000px;}
.x9a_c00211{left:532.500000px;}
.x47_c00211{left:533.580000px;}
.xd_c00211{left:540.855000px;}
.x110_c00211{left:543.000000px;}
.x87_c00211{left:544.920000px;}
.xdd_c00211{left:546.000000px;}
.x1f_c00211{left:547.500000px;}
.xce_c00211{left:549.420000px;}
.xab_c00211{left:550.500000px;}
.xa2_c00211{left:553.500000px;}
.x3e_c00211{left:556.500000px;}
.x20_c00211{left:559.500000px;}
.x114_c00211{left:561.000000px;}
.x74_c00211{left:562.080000px;}
.xf1_c00211{left:565.920000px;}
.x91_c00211{left:567.000000px;}
.x62_c00211{left:570.000000px;}
.x2d_c00211{left:571.080000px;}
.xda_c00211{left:573.420000px;}
.x48_c00211{left:574.500000px;}
.xfa_c00211{left:577.920000px;}
.x9b_c00211{left:579.420000px;}
.xb4_c00211{left:580.500000px;}
.x75_c00211{left:582.420000px;}
.xe_c00211{left:583.920000px;}
.x7e_c00211{left:586.920000px;}
.x3f_c00211{left:591.000000px;}
.x57_c00211{left:595.500000px;}
.x6b_c00211{left:597.000000px;}
.x2e_c00211{left:598.500000px;}
.x10b_c00211{left:599.580000px;}
.x63_c00211{left:601.500000px;}
.x111_c00211{left:604.500000px;}
.x21_c00211{left:606.000000px;}
.xed_c00211{left:607.500000px;}
.x76_c00211{left:610.080000px;}
.xde_c00211{left:615.000000px;}
.xfc_c00211{left:616.500000px;}
.x6c_c00211{left:618.000000px;}
.x49_c00211{left:621.000000px;}
.xb5_c00211{left:622.500000px;}
.xff_c00211{left:624.000000px;}
.xf_c00211{left:625.500000px;}
.x7f_c00211{left:627.000000px;}
.x40_c00211{left:628.920000px;}
.xe4_c00211{left:630.420000px;}
.xa3_c00211{left:631.500000px;}
.x58_c00211{left:632.580000px;}
.x22_c00211{left:634.080000px;}
.xdf_c00211{left:636.420000px;}
.xcf_c00211{left:638.580000px;}
.x2f_c00211{left:640.500000px;}
.x64_c00211{left:642.000000px;}
.x77_c00211{left:643.080000px;}
.xfd_c00211{left:645.000000px;}
.x8d_c00211{left:646.500000px;}
.x6d_c00211{left:647.580000px;}
.xa4_c00211{left:649.500000px;}
.x112_c00211{left:651.000000px;}
.x30_c00211{left:652.500000px;}
.xf2_c00211{left:654.000000px;}
.x92_c00211{left:656.580000px;}
.xbd_c00211{left:658.500000px;}
.x10_c00211{left:661.920000px;}
.x59_c00211{left:663.420000px;}
.xa5_c00211{left:665.580000px;}
.x80_c00211{left:667.500000px;}
.xb6_c00211{left:669.420000px;}
.xee_c00211{left:670.500000px;}
.x41_c00211{left:672.000000px;}
.x4a_c00211{left:675.000000px;}
.xc1_c00211{left:676.500000px;}
.x23_c00211{left:678.000000px;}
.x115_c00211{left:679.920000px;}
.xc8_c00211{left:682.920000px;}
.xf3_c00211{left:685.500000px;}
.x93_c00211{left:687.420000px;}
.x11_c00211{left:688.500000px;}
.xfb_c00211{left:691.500000px;}
.x113_c00211{left:693.000000px;}
.x65_c00211{left:696.000000px;}
.xd0_c00211{left:700.920000px;}
.xc2_c00211{left:702.000000px;}
.x31_c00211{left:703.500000px;}
.x5a_c00211{left:706.500000px;}
.xd7_c00211{left:708.420000px;}
.x24_c00211{left:709.920000px;}
.x88_c00211{left:711.420000px;}
.x100_c00211{left:712.500000px;}
.x116_c00211{left:714.000000px;}
.xa6_c00211{left:717.000000px;}
.xef_c00211{left:718.500000px;}
.xac_c00211{left:720.000000px;}
.xb7_c00211{left:723.000000px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.ls0_c00211{letter-spacing:0.000000pt;}
.ws0_c00211{word-spacing:-6.424960pt;}
.ws1_c00211{word-spacing:0.000000pt;}
.fs7_c00211{font-size:3.040000pt;}
.fs2_c00211{font-size:12.106667pt;}
.fs4_c00211{font-size:16.640000pt;}
.fs1_c00211{font-size:18.133333pt;}
.fs3_c00211{font-size:22.666667pt;}
.fs0_c00211{font-size:25.706667pt;}
.fs5_c00211{font-size:28.746667pt;}
.fs6_c00211{font-size:31.733333pt;}
.fs8_c00211{font-size:34.773333pt;}
.y0_c00211{bottom:0.000000pt;}
.ydf_c00211{bottom:222.440000pt;}
.ye0_c00211{bottom:223.226667pt;}
.yde_c00211{bottom:223.400000pt;}
.ydd_c00211{bottom:224.360000pt;}
.ye1_c00211{bottom:225.306667pt;}
.ydb_c00211{bottom:239.773333pt;}
.ydc_c00211{bottom:240.560000pt;}
.yd9_c00211{bottom:241.306667pt;}
.yda_c00211{bottom:241.693333pt;}
.yd6_c00211{bottom:256.360000pt;}
.yd8_c00211{bottom:257.106667pt;}
.yd4_c00211{bottom:257.493333pt;}
.yd7_c00211{bottom:258.440000pt;}
.yd2_c00211{bottom:259.026667pt;}
.yd3_c00211{bottom:259.400000pt;}
.yd5_c00211{bottom:260.360000pt;}
.ycf_c00211{bottom:274.826667pt;}
.yd0_c00211{bottom:275.773333pt;}
.yd1_c00211{bottom:276.360000pt;}
.yce_c00211{bottom:276.733333pt;}
.ycd_c00211{bottom:277.693333pt;}
.ycb_c00211{bottom:294.640000pt;}
.ycc_c00211{bottom:295.973333pt;}
.yc8_c00211{bottom:308.360000pt;}
.yca_c00211{bottom:309.306667pt;}
.yc9_c00211{bottom:310.066667pt;}
.yc5_c00211{bottom:310.440000pt;}
.yc4_c00211{bottom:311.026667pt;}
.yc7_c00211{bottom:311.226667pt;}
.yc6_c00211{bottom:312.360000pt;}
.yc2_c00211{bottom:328.160000pt;}
.yc3_c00211{bottom:328.733333pt;}
.yc1_c00211{bottom:328.933333pt;}
.ybf_c00211{bottom:329.693333pt;}
.yc0_c00211{bottom:330.066667pt;}
.ybe_c00211{bottom:344.733333pt;}
.ybd_c00211{bottom:345.106667pt;}
.ybb_c00211{bottom:346.066667pt;}
.yb9_c00211{bottom:347.026667pt;}
.yba_c00211{bottom:347.226667pt;}
.ybc_c00211{bottom:347.973333pt;}
.yb4_c00211{bottom:362.440000pt;}
.yb6_c00211{bottom:363.773333pt;}
.yb7_c00211{bottom:364.360000pt;}
.yb5_c00211{bottom:364.560000pt;}
.yb8_c00211{bottom:365.306667pt;}
.yb1_c00211{bottom:379.773333pt;}
.yae_c00211{bottom:380.160000pt;}
.yb3_c00211{bottom:380.733333pt;}
.yb2_c00211{bottom:380.933333pt;}
.yad_c00211{bottom:381.106667pt;}
.yb0_c00211{bottom:382.066667pt;}
.yaf_c00211{bottom:383.026667pt;}
.yab_c00211{bottom:397.106667pt;}
.yaa_c00211{bottom:398.066667pt;}
.ya8_c00211{bottom:398.440000pt;}
.ya9_c00211{bottom:399.400000pt;}
.yac_c00211{bottom:399.973333pt;}
.ya6_c00211{bottom:400.360000pt;}
.ya7_c00211{bottom:401.306667pt;}
.ya3_c00211{bottom:414.826667pt;}
.ya5_c00211{bottom:415.773333pt;}
.ya1_c00211{bottom:417.693333pt;}
.ya2_c00211{bottom:417.893333pt;}
.ya4_c00211{bottom:418.640000pt;}
.y9d_c00211{bottom:433.106667pt;}
.ya0_c00211{bottom:433.893333pt;}
.y9f_c00211{bottom:434.066667pt;}
.y9e_c00211{bottom:435.026667pt;}
.y99_c00211{bottom:450.440000pt;}
.y9b_c00211{bottom:451.400000pt;}
.y98_c00211{bottom:451.773333pt;}
.y9a_c00211{bottom:452.360000pt;}
.y9c_c00211{bottom:452.560000pt;}
.y96_c00211{bottom:468.160000pt;}
.y95_c00211{bottom:470.066667pt;}
.y97_c00211{bottom:470.266667pt;}
.y94_c00211{bottom:471.026667pt;}
.y93_c00211{bottom:471.400000pt;}
.y90_c00211{bottom:486.440000pt;}
.y92_c00211{bottom:487.026667pt;}
.y91_c00211{bottom:487.400000pt;}
.y8f_c00211{bottom:488.360000pt;}
.y8a_c00211{bottom:503.773333pt;}
.y8e_c00211{bottom:504.360000pt;}
.y8d_c00211{bottom:505.306667pt;}
.y8b_c00211{bottom:505.693333pt;}
.y8c_c00211{bottom:506.640000pt;}
.y87_c00211{bottom:521.106667pt;}
.y89_c00211{bottom:521.893333pt;}
.y88_c00211{bottom:523.026667pt;}
.y86_c00211{bottom:538.440000pt;}
.y84_c00211{bottom:539.400000pt;}
.y83_c00211{bottom:539.973333pt;}
.y81_c00211{bottom:540.360000pt;}
.y85_c00211{bottom:540.560000pt;}
.y82_c00211{bottom:541.306667pt;}
.y7f_c00211{bottom:555.773333pt;}
.y80_c00211{bottom:556.560000pt;}
.y7d_c00211{bottom:557.693333pt;}
.y7e_c00211{bottom:558.640000pt;}
.y7b_c00211{bottom:573.106667pt;}
.y7c_c00211{bottom:573.893333pt;}
.y7a_c00211{bottom:575.026667pt;}
.y75_c00211{bottom:590.826667pt;}
.y77_c00211{bottom:591.773333pt;}
.y78_c00211{bottom:592.560000pt;}
.y79_c00211{bottom:592.733333pt;}
.y76_c00211{bottom:593.693333pt;}
.y72_c00211{bottom:609.106667pt;}
.y74_c00211{bottom:609.693333pt;}
.y71_c00211{bottom:609.893333pt;}
.y73_c00211{bottom:610.640000pt;}
.y70_c00211{bottom:611.026667pt;}
.y6a_c00211{bottom:625.306667pt;}
.y6f_c00211{bottom:625.893333pt;}
.y6d_c00211{bottom:626.066667pt;}
.y6c_c00211{bottom:626.640000pt;}
.y69_c00211{bottom:627.026667pt;}
.y6b_c00211{bottom:627.226667pt;}
.y6e_c00211{bottom:627.973333pt;}
.y68_c00211{bottom:643.600000pt;}
.y63_c00211{bottom:643.773333pt;}
.y67_c00211{bottom:644.360000pt;}
.y66_c00211{bottom:644.560000pt;}
.y65_c00211{bottom:644.733333pt;}
.y64_c00211{bottom:645.693333pt;}
.y5f_c00211{bottom:661.106667pt;}
.y5e_c00211{bottom:662.066667pt;}
.y61_c00211{bottom:662.266667pt;}
.y60_c00211{bottom:663.026667pt;}
.y62_c00211{bottom:663.973333pt;}
.y5c_c00211{bottom:678.440000pt;}
.y58_c00211{bottom:679.400000pt;}
.y5b_c00211{bottom:679.600000pt;}
.y5d_c00211{bottom:679.973333pt;}
.y59_c00211{bottom:680.360000pt;}
.y5a_c00211{bottom:681.306667pt;}
.y57_c00211{bottom:694.440000pt;}
.y51_c00211{bottom:695.773333pt;}
.y53_c00211{bottom:696.360000pt;}
.y55_c00211{bottom:696.733333pt;}
.y56_c00211{bottom:697.306667pt;}
.y52_c00211{bottom:697.693333pt;}
.y54_c00211{bottom:698.640000pt;}
.y4f_c00211{bottom:713.106667pt;}
.y50_c00211{bottom:715.026667pt;}
.y4d_c00211{bottom:730.440000pt;}
.y4e_c00211{bottom:730.640000pt;}
.y4b_c00211{bottom:730.826667pt;}
.y4c_c00211{bottom:732.733333pt;}
.y4a_c00211{bottom:733.693333pt;}
.y46_c00211{bottom:748.360000pt;}
.y48_c00211{bottom:749.106667pt;}
.y45_c00211{bottom:749.306667pt;}
.y47_c00211{bottom:749.893333pt;}
.y44_c00211{bottom:750.066667pt;}
.y43_c00211{bottom:751.026667pt;}
.y49_c00211{bottom:751.973333pt;}
.y40_c00211{bottom:765.306667pt;}
.y3c_c00211{bottom:766.440000pt;}
.y42_c00211{bottom:767.026667pt;}
.y3f_c00211{bottom:767.973333pt;}
.y41_c00211{bottom:768.360000pt;}
.y3d_c00211{bottom:768.373333pt;}
.y3e_c00211{bottom:769.306667pt;}
.y3b_c00211{bottom:798.066667pt;}
.y3a_c00211{bottom:799.973333pt;}
.y36_c00211{bottom:811.400000pt;}
.y38_c00211{bottom:812.360000pt;}
.y35_c00211{bottom:812.560000pt;}
.y37_c00211{bottom:813.306667pt;}
.y39_c00211{bottom:813.506667pt;}
.y34_c00211{bottom:814.266667pt;}
.y30_c00211{bottom:825.693333pt;}
.y32_c00211{bottom:826.640000pt;}
.y31_c00211{bottom:826.840000pt;}
.y33_c00211{bottom:827.600000pt;}
.y2b_c00211{bottom:837.306667pt;}
.y2d_c00211{bottom:838.066667pt;}
.y2f_c00211{bottom:839.026667pt;}
.y2c_c00211{bottom:839.973333pt;}
.y2e_c00211{bottom:840.933333pt;}
.y2a_c00211{bottom:851.400000pt;}
.y23_c00211{bottom:863.600000pt;}
.y27_c00211{bottom:864.360000pt;}
.y29_c00211{bottom:864.933333pt;}
.y24_c00211{bottom:865.306667pt;}
.y28_c00211{bottom:865.893333pt;}
.y26_c00211{bottom:866.266667pt;}
.y25_c00211{bottom:866.840000pt;}
.y1f_c00211{bottom:876.933333pt;}
.y22_c00211{bottom:877.693333pt;}
.y21_c00211{bottom:878.640000pt;}
.y20_c00211{bottom:879.600000pt;}
.y1d_c00211{bottom:889.306667pt;}
.y1c_c00211{bottom:890.066667pt;}
.y17_c00211{bottom:890.266667pt;}
.y18_c00211{bottom:891.026667pt;}
.y1e_c00211{bottom:891.226667pt;}
.y19_c00211{bottom:891.973333pt;}
.y1b_c00211{bottom:892.173333pt;}
.y1a_c00211{bottom:892.933333pt;}
.y16_c00211{bottom:903.400000pt;}
.y12_c00211{bottom:917.693333pt;}
.y11_c00211{bottom:917.893333pt;}
.y14_c00211{bottom:918.640000pt;}
.y15_c00211{bottom:918.840000pt;}
.y13_c00211{bottom:919.600000pt;}
.yf_c00211{bottom:929.693333pt;}
.ye_c00211{bottom:931.026667pt;}
.yd_c00211{bottom:931.973333pt;}
.yc_c00211{bottom:932.173333pt;}
.y10_c00211{bottom:932.933333pt;}
.yb_c00211{bottom:942.066667pt;}
.y9_c00211{bottom:942.640000pt;}
.y7_c00211{bottom:943.026667pt;}
.y8_c00211{bottom:943.600000pt;}
.y6_c00211{bottom:944.560000pt;}
.ya_c00211{bottom:944.933333pt;}
.y5_c00211{bottom:945.306667pt;}
.y3_c00211{bottom:945.506667pt;}
.y4_c00211{bottom:946.266667pt;}
.y2_c00211{bottom:976.933333pt;}
.y1_c00211{bottom:977.693333pt;}
.h8_c00211{height:3.739141pt;}
.h3_c00211{height:14.890964pt;}
.h5_c00211{height:20.466875pt;}
.h2_c00211{height:22.303646pt;}
.h4_c00211{height:27.879557pt;}
.h1_c00211{height:31.618698pt;}
.h6_c00211{height:35.357839pt;}
.h7_c00211{height:39.031380pt;}
.h9_c00211{height:42.770521pt;}
.h0_c00211{height:1186.666667pt;}
.w0_c00211{width:782.666667pt;}
.x0_c00211{left:0.000000pt;}
.x10c_c00211{left:132.000000pt;}
.xe2_c00211{left:133.706667pt;}
.xad_c00211{left:134.666667pt;}
.x78_c00211{left:136.000000pt;}
.x25_c00211{left:137.333333pt;}
.x1_c00211{left:139.040000pt;}
.x104_c00211{left:146.293333pt;}
.x12_c00211{left:148.000000pt;}
.x42_c00211{left:148.960000pt;}
.x3_c00211{left:150.293333pt;}
.xdb_c00211{left:153.333333pt;}
.x101_c00211{left:155.626667pt;}
.xe7_c00211{left:157.706667pt;}
.xbe_c00211{left:160.373333pt;}
.x5b_c00211{left:161.333333pt;}
.xc3_c00211{left:163.040000pt;}
.x4_c00211{left:165.333333pt;}
.x18_c00211{left:166.293333pt;}
.xd1_c00211{left:168.960000pt;}
.x89_c00211{left:170.666667pt;}
.x6e_c00211{left:172.000000pt;}
.x32_c00211{left:176.373333pt;}
.xdc_c00211{left:180.000000pt;}
.x102_c00211{left:180.960000pt;}
.xd8_c00211{left:182.293333pt;}
.xc9_c00211{left:184.373333pt;}
.x79_c00211{left:185.706667pt;}
.x4b_c00211{left:186.666667pt;}
.x13_c00211{left:188.000000pt;}
.x9c_c00211{left:189.706667pt;}
.x94_c00211{left:190.666667pt;}
.x81_c00211{left:192.373333pt;}
.x105_c00211{left:193.333333pt;}
.x4c_c00211{left:196.000000pt;}
.xd2_c00211{left:198.666667pt;}
.xa7_c00211{left:200.373333pt;}
.x6f_c00211{left:201.333333pt;}
.xf4_c00211{left:203.040000pt;}
.x51_c00211{left:205.333333pt;}
.x7a_c00211{left:208.960000pt;}
.x5_c00211{left:210.666667pt;}
.x14_c00211{left:212.373333pt;}
.x33_c00211{left:213.333333pt;}
.x9d_c00211{left:214.666667pt;}
.xd3_c00211{left:216.373333pt;}
.x103_c00211{left:218.666667pt;}
.xb8_c00211{left:220.000000pt;}
.x43_c00211{left:224.000000pt;}
.x4d_c00211{left:226.666667pt;}
.x5c_c00211{left:228.000000pt;}
.xe3_c00211{left:233.333333pt;}
.xca_c00211{left:234.666667pt;}
.x19_c00211{left:236.373333pt;}
.xae_c00211{left:237.333333pt;}
.x36_c00211{left:238.293333pt;}
.xa8_c00211{left:240.000000pt;}
.x34_c00211{left:243.626667pt;}
.x66_c00211{left:244.960000pt;}
.x5d_c00211{left:246.293333pt;}
.xd4_c00211{left:247.626667pt;}
.x15_c00211{left:249.333333pt;}
.x4e_c00211{left:250.293333pt;}
.x70_c00211{left:252.960000pt;}
.x106_c00211{left:254.666667pt;}
.x6_c00211{left:255.626667pt;}
.xb9_c00211{left:257.706667pt;}
.x95_c00211{left:258.666667pt;}
.x26_c00211{left:260.960000pt;}
.x1a_c00211{left:262.666667pt;}
.x107_c00211{left:264.000000pt;}
.xf5_c00211{left:264.960000pt;}
.x35_c00211{left:266.666667pt;}
.xe8_c00211{left:268.000000pt;}
.xaf_c00211{left:271.040000pt;}
.x7b_c00211{left:273.333333pt;}
.xbf_c00211{left:274.666667pt;}
.x16_c00211{left:276.373333pt;}
.xe0_c00211{left:277.706667pt;}
.x96_c00211{left:279.040000pt;}
.x108_c00211{left:280.000000pt;}
.x37_c00211{left:281.333333pt;}
.xba_c00211{left:282.666667pt;}
.x7_c00211{left:284.000000pt;}
.x52_c00211{left:286.666667pt;}
.x27_c00211{left:289.706667pt;}
.x1b_c00211{left:292.373333pt;}
.xf6_c00211{left:294.666667pt;}
.x5e_c00211{left:295.626667pt;}
.x117_c00211{left:297.333333pt;}
.x17_c00211{left:300.000000pt;}
.xe1_c00211{left:302.293333pt;}
.x28_c00211{left:303.240000pt;}
.x9e_c00211{left:304.373333pt;}
.xe9_c00211{left:305.706667pt;}
.x38_c00211{left:307.040000pt;}
.x1c_c00211{left:308.000000pt;}
.xcb_c00211{left:311.040000pt;}
.x8e_c00211{left:312.373333pt;}
.x4f_c00211{left:314.293333pt;}
.x7c_c00211{left:319.040000pt;}
.x82_c00211{left:320.373333pt;}
.x53_c00211{left:322.293333pt;}
.xf7_c00211{left:324.373333pt;}
.x9f_c00211{left:328.960000pt;}
.x10d_c00211{left:330.666667pt;}
.x8_c00211{left:332.000000pt;}
.x44_c00211{left:333.333333pt;}
.xc0_c00211{left:334.666667pt;}
.x67_c00211{left:337.706667pt;}
.x50_c00211{left:338.666667pt;}
.x97_c00211{left:340.000000pt;}
.xeb_c00211{left:341.333333pt;}
.xb0_c00211{left:343.040000pt;}
.x83_c00211{left:344.000000pt;}
.x39_c00211{left:345.333333pt;}
.xcc_c00211{left:349.333333pt;}
.xbb_c00211{left:351.040000pt;}
.x109_c00211{left:352.000000pt;}
.x2_c00211{left:357.333333pt;}
.x54_c00211{left:360.000000pt;}
.x45_c00211{left:363.040000pt;}
.x8a_c00211{left:364.373333pt;}
.xa9_c00211{left:365.706667pt;}
.xf8_c00211{left:366.666667pt;}
.x5f_c00211{left:368.373333pt;}
.x10e_c00211{left:370.666667pt;}
.xb1_c00211{left:372.373333pt;}
.x3a_c00211{left:373.706667pt;}
.x9_c00211{left:374.666667pt;}
.x29_c00211{left:376.000000pt;}
.x46_c00211{left:378.666667pt;}
.x1d_c00211{left:380.000000pt;}
.xec_c00211{left:381.333333pt;}
.xc4_c00211{left:382.666667pt;}
.xa0_c00211{left:385.706667pt;}
.x2a_c00211{left:386.666667pt;}
.xfe_c00211{left:388.000000pt;}
.x84_c00211{left:388.960000pt;}
.xd5_c00211{left:391.040000pt;}
.xe5_c00211{left:392.000000pt;}
.xc5_c00211{left:393.333333pt;}
.xb2_c00211{left:395.626667pt;}
.x68_c00211{left:397.333333pt;}
.x3b_c00211{left:398.666667pt;}
.x71_c00211{left:400.000000pt;}
.xbc_c00211{left:402.666667pt;}
.x55_c00211{left:404.373333pt;}
.xa_c00211{left:405.333333pt;}
.x8b_c00211{left:408.000000pt;}
.xa1_c00211{left:410.666667pt;}
.xea_c00211{left:412.960000pt;}
.x98_c00211{left:415.040000pt;}
.xb_c00211{left:416.000000pt;}
.x2b_c00211{left:416.960000pt;}
.x69_c00211{left:420.000000pt;}
.x60_c00211{left:421.333333pt;}
.x8c_c00211{left:426.666667pt;}
.xf0_c00211{left:427.626667pt;}
.x72_c00211{left:429.706667pt;}
.x10f_c00211{left:430.666667pt;}
.xcd_c00211{left:431.626667pt;}
.x99_c00211{left:433.706667pt;}
.x1e_c00211{left:435.626667pt;}
.x3c_c00211{left:437.333333pt;}
.xc6_c00211{left:441.333333pt;}
.x2c_c00211{left:443.040000pt;}
.x85_c00211{left:444.000000pt;}
.x8f_c00211{left:445.706667pt;}
.xf9_c00211{left:446.666667pt;}
.x3d_c00211{left:448.000000pt;}
.x6a_c00211{left:449.333333pt;}
.xc_c00211{left:450.666667pt;}
.xb3_c00211{left:452.373333pt;}
.x7d_c00211{left:453.333333pt;}
.x73_c00211{left:454.293333pt;}
.x61_c00211{left:456.000000pt;}
.x86_c00211{left:460.373333pt;}
.xd6_c00211{left:461.706667pt;}
.xaa_c00211{left:464.373333pt;}
.x10a_c00211{left:465.333333pt;}
.x56_c00211{left:466.293333pt;}
.x90_c00211{left:467.626667pt;}
.xe6_c00211{left:469.333333pt;}
.xc7_c00211{left:470.293333pt;}
.xd9_c00211{left:472.373333pt;}
.x9a_c00211{left:473.333333pt;}
.x47_c00211{left:474.293333pt;}
.xd_c00211{left:480.760000pt;}
.x110_c00211{left:482.666667pt;}
.x87_c00211{left:484.373333pt;}
.xdd_c00211{left:485.333333pt;}
.x1f_c00211{left:486.666667pt;}
.xce_c00211{left:488.373333pt;}
.xab_c00211{left:489.333333pt;}
.xa2_c00211{left:492.000000pt;}
.x3e_c00211{left:494.666667pt;}
.x20_c00211{left:497.333333pt;}
.x114_c00211{left:498.666667pt;}
.x74_c00211{left:499.626667pt;}
.xf1_c00211{left:503.040000pt;}
.x91_c00211{left:504.000000pt;}
.x62_c00211{left:506.666667pt;}
.x2d_c00211{left:507.626667pt;}
.xda_c00211{left:509.706667pt;}
.x48_c00211{left:510.666667pt;}
.xfa_c00211{left:513.706667pt;}
.x9b_c00211{left:515.040000pt;}
.xb4_c00211{left:516.000000pt;}
.x75_c00211{left:517.706667pt;}
.xe_c00211{left:519.040000pt;}
.x7e_c00211{left:521.706667pt;}
.x3f_c00211{left:525.333333pt;}
.x57_c00211{left:529.333333pt;}
.x6b_c00211{left:530.666667pt;}
.x2e_c00211{left:532.000000pt;}
.x10b_c00211{left:532.960000pt;}
.x63_c00211{left:534.666667pt;}
.x111_c00211{left:537.333333pt;}
.x21_c00211{left:538.666667pt;}
.xed_c00211{left:540.000000pt;}
.x76_c00211{left:542.293333pt;}
.xde_c00211{left:546.666667pt;}
.xfc_c00211{left:548.000000pt;}
.x6c_c00211{left:549.333333pt;}
.x49_c00211{left:552.000000pt;}
.xb5_c00211{left:553.333333pt;}
.xff_c00211{left:554.666667pt;}
.xf_c00211{left:556.000000pt;}
.x7f_c00211{left:557.333333pt;}
.x40_c00211{left:559.040000pt;}
.xe4_c00211{left:560.373333pt;}
.xa3_c00211{left:561.333333pt;}
.x58_c00211{left:562.293333pt;}
.x22_c00211{left:563.626667pt;}
.xdf_c00211{left:565.706667pt;}
.xcf_c00211{left:567.626667pt;}
.x2f_c00211{left:569.333333pt;}
.x64_c00211{left:570.666667pt;}
.x77_c00211{left:571.626667pt;}
.xfd_c00211{left:573.333333pt;}
.x8d_c00211{left:574.666667pt;}
.x6d_c00211{left:575.626667pt;}
.xa4_c00211{left:577.333333pt;}
.x112_c00211{left:578.666667pt;}
.x30_c00211{left:580.000000pt;}
.xf2_c00211{left:581.333333pt;}
.x92_c00211{left:583.626667pt;}
.xbd_c00211{left:585.333333pt;}
.x10_c00211{left:588.373333pt;}
.x59_c00211{left:589.706667pt;}
.xa5_c00211{left:591.626667pt;}
.x80_c00211{left:593.333333pt;}
.xb6_c00211{left:595.040000pt;}
.xee_c00211{left:596.000000pt;}
.x41_c00211{left:597.333333pt;}
.x4a_c00211{left:600.000000pt;}
.xc1_c00211{left:601.333333pt;}
.x23_c00211{left:602.666667pt;}
.x115_c00211{left:604.373333pt;}
.xc8_c00211{left:607.040000pt;}
.xf3_c00211{left:609.333333pt;}
.x93_c00211{left:611.040000pt;}
.x11_c00211{left:612.000000pt;}
.xfb_c00211{left:614.666667pt;}
.x113_c00211{left:616.000000pt;}
.x65_c00211{left:618.666667pt;}
.xd0_c00211{left:623.040000pt;}
.xc2_c00211{left:624.000000pt;}
.x31_c00211{left:625.333333pt;}
.x5a_c00211{left:628.000000pt;}
.xd7_c00211{left:629.706667pt;}
.x24_c00211{left:631.040000pt;}
.x88_c00211{left:632.373333pt;}
.x100_c00211{left:633.333333pt;}
.x116_c00211{left:634.666667pt;}
.xa6_c00211{left:637.333333pt;}
.xef_c00211{left:638.666667pt;}
.xac_c00211{left:640.000000pt;}
.xb7_c00211{left:642.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_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_720d6e7ef38f4a31efbba33b.woff2')format("woff");}.ff1_c00212{font-family:ff1_c00212;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mcd_c00212{transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);}
.m41_c00212{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.m65_c00212{transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);}
.m38_c00212{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m44_c00212{transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);}
.m0_c00212{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m82_c00212{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m43_c00212{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00212{transform:matrix(0.379218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379218,0.000000,0.000000,0.250000,0,0);}
.m2b_c00212{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.ma5_c00212{transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);}
.m1d_c00212{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m47_c00212{transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);}
.m52_c00212{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m56_c00212{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m79_c00212{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);}
.m62_c00212{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m49_c00212{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m55_c00212{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m2f_c00212{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mbe_c00212{transform:matrix(0.410588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410588,0.000000,0.000000,0.250000,0,0);}
.m3e_c00212{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m1e_c00212{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m4c_c00212{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m7a_c00212{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.me_c00212{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.m19_c00212{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m99_c00212{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m77_c00212{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m5b_c00212{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m15_c00212{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m8a_c00212{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m23_c00212{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m63_c00212{transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);}
.m1c_c00212{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m6b_c00212{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.mb_c00212{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m85_c00212{transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);}
.m8_c00212{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m5e_c00212{transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);}
.m74_c00212{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.ma2_c00212{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m96_c00212{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);}
.m75_c00212{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m72_c00212{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m37_c00212{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m78_c00212{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.m2_c00212{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.mae_c00212{transform:matrix(0.448529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448529,0.000000,0.000000,0.250000,0,0);}
.m3d_c00212{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m4a_c00212{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m84_c00212{transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);}
.m32_c00212{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m3a_c00212{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.ma6_c00212{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m6c_c00212{transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);}
.m18_c00212{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.ma3_c00212{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m98_c00212{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.m46_c00212{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.mc9_c00212{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.m54_c00212{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.mac_c00212{transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);}
.mce_c00212{transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);}
.m94_c00212{transform:matrix(0.471955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471955,0.000000,0.000000,0.250000,0,0);}
.mba_c00212{transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);}
.maa_c00212{transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);}
.mb2_c00212{transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);}
.m4d_c00212{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m5d_c00212{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m4e_c00212{transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);}
.m20_c00212{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m9b_c00212{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m58_c00212{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m71_c00212{transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);}
.ma0_c00212{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m14_c00212{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mcf_c00212{transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);}
.mc0_c00212{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.m61_c00212{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_c00212{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.mc_c00212{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m17_c00212{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mcb_c00212{transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);}
.m12_c00212{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m80_c00212{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m69_c00212{transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);}
.m6_c00212{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m51_c00212{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m40_c00212{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.ma_c00212{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m7_c00212{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.ma4_c00212{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.mad_c00212{transform:matrix(0.533088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533088,0.000000,0.000000,0.250000,0,0);}
.m4_c00212{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m2d_c00212{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m26_c00212{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m31_c00212{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m1f_c00212{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m5f_c00212{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m21_c00212{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m87_c00212{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.mc8_c00212{transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);}
.m6a_c00212{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m25_c00212{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m16_c00212{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m83_c00212{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.mb1_c00212{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m9_c00212{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m53_c00212{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mb3_c00212{transform:matrix(0.554487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554487,0.000000,0.000000,0.250000,0,0);}
.m6d_c00212{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m64_c00212{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m1a_c00212{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m42_c00212{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m95_c00212{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m35_c00212{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mc3_c00212{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m3c_c00212{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m7c_c00212{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_c00212{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m8d_c00212{transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);}
.m8b_c00212{transform:matrix(0.575991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575991,0.000000,0.000000,0.250000,0,0);}
.m93_c00212{transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);}
.m86_c00212{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.md_c00212{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m28_c00212{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.mbf_c00212{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m7d_c00212{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m50_c00212{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m4b_c00212{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m11_c00212{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mb9_c00212{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.m6f_c00212{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m24_c00212{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);}
.mb6_c00212{transform:matrix(0.601763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601763,0.000000,0.000000,0.250000,0,0);}
.m1_c00212{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m10_c00212{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.m7b_c00212{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m3b_c00212{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m8c_c00212{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m1b_c00212{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m4f_c00212{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m39_c00212{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m5a_c00212{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m8e_c00212{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.mf_c00212{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m90_c00212{transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);}
.m27_c00212{transform:matrix(0.617059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617059,0.000000,0.000000,0.250000,0,0);}
.m88_c00212{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m7f_c00212{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mb5_c00212{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m34_c00212{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);}
.ma7_c00212{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m60_c00212{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.mc2_c00212{transform:matrix(0.634615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634615,0.000000,0.000000,0.250000,0,0);}
.m89_c00212{transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);}
.m2c_c00212{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m67_c00212{transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);}
.m81_c00212{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m97_c00212{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m76_c00212{transform:matrix(0.657059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657059,0.000000,0.000000,0.250000,0,0);}
.m3f_c00212{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m73_c00212{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m13_c00212{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m9a_c00212{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m29_c00212{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m7e_c00212{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m45_c00212{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.mb7_c00212{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.m9f_c00212{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mc7_c00212{transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);}
.m8f_c00212{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mcc_c00212{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m9c_c00212{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.mca_c00212{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m6e_c00212{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.ma1_c00212{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m66_c00212{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m2e_c00212{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mbd_c00212{transform:matrix(0.719697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719697,0.000000,0.000000,0.250000,0,0);}
.m57_c00212{transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);}
.m59_c00212{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m9d_c00212{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m30_c00212{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.mc6_c00212{transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);}
.m2a_c00212{transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);}
.m92_c00212{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.mc1_c00212{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.m91_c00212{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m3_c00212{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mbc_c00212{transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);}
.m5c_c00212{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mbb_c00212{transform:matrix(0.772727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772727,0.000000,0.000000,0.250000,0,0);}
.m5_c00212{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.mc4_c00212{transform:matrix(0.777533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777533,0.000000,0.000000,0.250000,0,0);}
.ma8_c00212{transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);}
.mb0_c00212{transform:matrix(0.786344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786344,0.000000,0.000000,0.250000,0,0);}
.maf_c00212{transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);}
.m9e_c00212{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.mab_c00212{transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);}
.m70_c00212{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mb4_c00212{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m48_c00212{transform:matrix(1.002525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.002525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.002525,0.000000,0.000000,0.250000,0,0);}
.mc5_c00212{transform:matrix(1.367257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.367257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.367257,0.000000,0.000000,0.250000,0,0);}
.mb8_c00212{transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);}
.ma9_c00212{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m33_c00212{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00212{vertical-align:-6.000000px;}
.v0_c00212{vertical-align:0.000000px;}
.ls2_c00212{letter-spacing:0.000000px;}
.ls0_c00212{letter-spacing:57.908049px;}
.ls1_c00212{letter-spacing:95.349194px;}
.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;}
}
.wsb_c00212{word-spacing:-103.303274px;}
.ws2_c00212{word-spacing:-65.862129px;}
.ws14_c00212{word-spacing:0.000000px;}
.ws0_c00212{word-spacing:1.800296px;}
.wsd_c00212{word-spacing:13.306168px;}
.ws3_c00212{word-spacing:25.629635px;}
.ws1_c00212{word-spacing:27.671529px;}
.ws8_c00212{word-spacing:29.395112px;}
.wsf_c00212{word-spacing:30.193299px;}
.wsc_c00212{word-spacing:31.271145px;}
.ws11_c00212{word-spacing:37.460577px;}
.ws4_c00212{word-spacing:39.638400px;}
.wsa_c00212{word-spacing:45.572749px;}
.ws13_c00212{word-spacing:47.497848px;}
.ws10_c00212{word-spacing:49.633219px;}
.ws7_c00212{word-spacing:49.953969px;}
.ws5_c00212{word-spacing:57.018127px;}
.ws12_c00212{word-spacing:59.541565px;}
.wse_c00212{word-spacing:71.108023px;}
.ws9_c00212{word-spacing:79.822394px;}
.ws6_c00212{word-spacing:88.250880px;}
._3_c00212{margin-left:-95.349194px;}
._0_c00212{margin-left:-57.908049px;}
._2_c00212{width:35.473159px;}
._4_c00212{width:39.225225px;}
._1_c00212{width:56.570880px;}
._5_c00212{width:61.245365px;}
.fc0_c00212{color:transparent;}
.fs6_c00212{font-size:3.420000px;}
.fsa_c00212{font-size:6.780000px;}
.fs8_c00212{font-size:11.880000px;}
.fs9_c00212{font-size:13.620000px;}
.fs2_c00212{font-size:18.720000px;}
.fs1_c00212{font-size:20.400000px;}
.fs5_c00212{font-size:25.500000px;}
.fs3_c00212{font-size:28.920000px;}
.fs4_c00212{font-size:32.340000px;}
.fs0_c00212{font-size:35.700000px;}
.fs7_c00212{font-size:39.120000px;}
.y0_c00212{bottom:0.000000px;}
.y54_c00212{bottom:251.745000px;}
.y53_c00212{bottom:252.825000px;}
.y50_c00212{bottom:253.245000px;}
.y4f_c00212{bottom:254.325000px;}
.y52_c00212{bottom:254.970000px;}
.y51_c00212{bottom:255.405000px;}
.y4b_c00212{bottom:271.245000px;}
.y4c_c00212{bottom:272.325000px;}
.y4d_c00212{bottom:273.405000px;}
.y4a_c00212{bottom:273.630000px;}
.y4e_c00212{bottom:274.470000px;}
.y46_c00212{bottom:291.180000px;}
.y45_c00212{bottom:292.050000px;}
.y49_c00212{bottom:292.245000px;}
.y48_c00212{bottom:292.905000px;}
.y47_c00212{bottom:293.325000px;}
.y44_c00212{bottom:294.405000px;}
.y43_c00212{bottom:310.680000px;}
.y42_c00212{bottom:310.905000px;}
.y40_c00212{bottom:311.745000px;}
.y3f_c00212{bottom:313.050000px;}
.y41_c00212{bottom:313.905000px;}
.y3c_c00212{bottom:314.130000px;}
.y3e_c00212{bottom:314.325000px;}
.y3d_c00212{bottom:315.405000px;}
.y37_c00212{bottom:331.245000px;}
.y35_c00212{bottom:332.325000px;}
.y3b_c00212{bottom:332.745000px;}
.y3a_c00212{bottom:333.405000px;}
.y38_c00212{bottom:333.630000px;}
.y39_c00212{bottom:334.050000px;}
.y36_c00212{bottom:334.470000px;}
.y34_c00212{bottom:350.325000px;}
.y33_c00212{bottom:350.745000px;}
.y32_c00212{bottom:352.905000px;}
.y31_c00212{bottom:353.970000px;}
.y2a_c00212{bottom:368.775000px;}
.y29_c00212{bottom:369.825000px;}
.y2e_c00212{bottom:370.245000px;}
.y30_c00212{bottom:371.325000px;}
.y28_c00212{bottom:371.550000px;}
.y2b_c00212{bottom:371.745000px;}
.y2f_c00212{bottom:372.405000px;}
.y2c_c00212{bottom:372.825000px;}
.y2d_c00212{bottom:373.905000px;}
.y27_c00212{bottom:390.180000px;}
.y25_c00212{bottom:391.245000px;}
.y23_c00212{bottom:392.325000px;}
.y26_c00212{bottom:393.405000px;}
.y24_c00212{bottom:394.470000px;}
.y21_c00212{bottom:410.325000px;}
.y20_c00212{bottom:410.745000px;}
.y22_c00212{bottom:411.405000px;}
.y1e_c00212{bottom:412.905000px;}
.y1f_c00212{bottom:412.920000px;}
.yf5_c00212{bottom:432.195000px;}
.yf4_c00212{bottom:433.695000px;}
.yf6_c00212{bottom:433.920000px;}
.yf3_c00212{bottom:434.130000px;}
.yf2_c00212{bottom:434.550000px;}
.yef_c00212{bottom:449.130000px;}
.yf0_c00212{bottom:449.775000px;}
.yee_c00212{bottom:451.695000px;}
.yf1_c00212{bottom:451.920000px;}
.yed_c00212{bottom:461.130000px;}
.ye8_c00212{bottom:462.195000px;}
.ye9_c00212{bottom:462.630000px;}
.yea_c00212{bottom:463.275000px;}
.yeb_c00212{bottom:463.920000px;}
.yec_c00212{bottom:464.970000px;}
.ye6_c00212{bottom:474.630000px;}
.ye7_c00212{bottom:475.920000px;}
.ye5_c00212{bottom:476.130000px;}
.ye4_c00212{bottom:477.630000px;}
.ye3_c00212{bottom:478.275000px;}
.ye2_c00212{bottom:478.695000px;}
.ye0_c00212{bottom:489.195000px;}
.ye1_c00212{bottom:489.420000px;}
.yde_c00212{bottom:489.855000px;}
.ydf_c00212{bottom:490.275000px;}
.ydd_c00212{bottom:490.695000px;}
.ydc_c00212{bottom:501.195000px;}
.yda_c00212{bottom:501.630000px;}
.ydb_c00212{bottom:502.695000px;}
.yd9_c00212{bottom:503.130000px;}
.yd8_c00212{bottom:504.630000px;}
.yd7_c00212{bottom:516.630000px;}
.yd6_c00212{bottom:517.695000px;}
.yd4_c00212{bottom:518.130000px;}
.yd5_c00212{bottom:519.195000px;}
.yd3_c00212{bottom:528.630000px;}
.yd2_c00212{bottom:531.195000px;}
.yd1_c00212{bottom:531.630000px;}
.ycf_c00212{bottom:532.470000px;}
.yd0_c00212{bottom:533.130000px;}
.yce_c00212{bottom:543.630000px;}
.ycd_c00212{bottom:545.130000px;}
.ycc_c00212{bottom:546.195000px;}
.ycb_c00212{bottom:547.275000px;}
.yca_c00212{bottom:558.195000px;}
.yc9_c00212{bottom:558.630000px;}
.yc8_c00212{bottom:559.695000px;}
.yc7_c00212{bottom:560.130000px;}
.yc6_c00212{bottom:570.630000px;}
.yc5_c00212{bottom:571.695000px;}
.yc3_c00212{bottom:573.195000px;}
.yc2_c00212{bottom:573.630000px;}
.yc4_c00212{bottom:574.695000px;}
.yc0_c00212{bottom:584.130000px;}
.yc1_c00212{bottom:585.195000px;}
.ybf_c00212{bottom:585.630000px;}
.ybe_c00212{bottom:586.695000px;}
.ybd_c00212{bottom:587.130000px;}
.ybc_c00212{bottom:588.195000px;}
.ybb_c00212{bottom:598.695000px;}
.yba_c00212{bottom:599.130000px;}
.yb9_c00212{bottom:600.195000px;}
.yb7_c00212{bottom:600.630000px;}
.yb8_c00212{bottom:601.695000px;}
.yb5_c00212{bottom:612.630000px;}
.yb6_c00212{bottom:613.695000px;}
.yb3_c00212{bottom:614.130000px;}
.yb4_c00212{bottom:615.195000px;}
.yb2_c00212{bottom:615.630000px;}
.yb1_c00212{bottom:626.130000px;}
.yb0_c00212{bottom:627.195000px;}
.yaf_c00212{bottom:627.630000px;}
.yad_c00212{bottom:628.695000px;}
.yae_c00212{bottom:629.130000px;}
.yac_c00212{bottom:643.695000px;}
.yab_c00212{bottom:654.195000px;}
.ya8_c00212{bottom:654.630000px;}
.ya9_c00212{bottom:655.695000px;}
.yaa_c00212{bottom:655.920000px;}
.ya7_c00212{bottom:656.550000px;}
.ya6_c00212{bottom:668.130000px;}
.ya5_c00212{bottom:669.195000px;}
.ya4_c00212{bottom:669.630000px;}
.ya3_c00212{bottom:671.130000px;}
.ya2_c00212{bottom:682.695000px;}
.ya0_c00212{bottom:684.195000px;}
.ya1_c00212{bottom:684.420000px;}
.y9e_c00212{bottom:685.695000px;}
.y9f_c00212{bottom:685.920000px;}
.y9d_c00212{bottom:686.130000px;}
.y9c_c00212{bottom:696.195000px;}
.y9a_c00212{bottom:697.695000px;}
.y9b_c00212{bottom:697.920000px;}
.y98_c00212{bottom:699.195000px;}
.y99_c00212{bottom:699.420000px;}
.y97_c00212{bottom:709.695000px;}
.y95_c00212{bottom:710.130000px;}
.y96_c00212{bottom:711.195000px;}
.y94_c00212{bottom:712.695000px;}
.y93_c00212{bottom:723.195000px;}
.y91_c00212{bottom:723.630000px;}
.y92_c00212{bottom:724.695000px;}
.y90_c00212{bottom:726.195000px;}
.y8f_c00212{bottom:736.695000px;}
.y8e_c00212{bottom:737.130000px;}
.y8d_c00212{bottom:738.195000px;}
.y8c_c00212{bottom:738.630000px;}
.y8b_c00212{bottom:739.050000px;}
.y8a_c00212{bottom:740.130000px;}
.y89_c00212{bottom:750.630000px;}
.y88_c00212{bottom:751.695000px;}
.y86_c00212{bottom:752.550000px;}
.y87_c00212{bottom:753.195000px;}
.y85_c00212{bottom:753.630000px;}
.y84_c00212{bottom:764.130000px;}
.y83_c00212{bottom:765.195000px;}
.y82_c00212{bottom:765.630000px;}
.y81_c00212{bottom:766.695000px;}
.y80_c00212{bottom:767.130000px;}
.y7f_c00212{bottom:768.195000px;}
.y7e_c00212{bottom:778.695000px;}
.y7c_c00212{bottom:779.130000px;}
.y7d_c00212{bottom:780.195000px;}
.y7b_c00212{bottom:780.630000px;}
.y7a_c00212{bottom:781.695000px;}
.y79_c00212{bottom:793.695000px;}
.y78_c00212{bottom:794.130000px;}
.y77_c00212{bottom:795.195000px;}
.y76_c00212{bottom:805.695000px;}
.y75_c00212{bottom:807.195000px;}
.y74_c00212{bottom:807.630000px;}
.y73_c00212{bottom:808.695000px;}
.y71_c00212{bottom:819.630000px;}
.y72_c00212{bottom:820.695000px;}
.y6f_c00212{bottom:821.550000px;}
.y70_c00212{bottom:822.195000px;}
.y6e_c00212{bottom:822.630000px;}
.y6d_c00212{bottom:833.130000px;}
.y6c_c00212{bottom:834.630000px;}
.y69_c00212{bottom:835.050000px;}
.y6b_c00212{bottom:835.695000px;}
.y6a_c00212{bottom:836.130000px;}
.y68_c00212{bottom:837.195000px;}
.y67_c00212{bottom:848.130000px;}
.y66_c00212{bottom:849.195000px;}
.y65_c00212{bottom:849.630000px;}
.y64_c00212{bottom:850.695000px;}
.y63_c00212{bottom:868.695000px;}
.y62_c00212{bottom:879.195000px;}
.y61_c00212{bottom:880.695000px;}
.y5f_c00212{bottom:881.130000px;}
.y60_c00212{bottom:882.195000px;}
.y5c_c00212{bottom:894.405000px;}
.y5b_c00212{bottom:894.825000px;}
.y5d_c00212{bottom:895.470000px;}
.y5e_c00212{bottom:896.550000px;}
.y5a_c00212{bottom:908.325000px;}
.y59_c00212{bottom:909.630000px;}
.y57_c00212{bottom:910.470000px;}
.y58_c00212{bottom:911.550000px;}
.y56_c00212{bottom:932.970000px;}
.y55_c00212{bottom:937.050000px;}
.y1d_c00212{bottom:960.405000px;}
.y1a_c00212{bottom:961.245000px;}
.y1c_c00212{bottom:963.405000px;}
.y1b_c00212{bottom:964.470000px;}
.y19_c00212{bottom:980.745000px;}
.y18_c00212{bottom:981.630000px;}
.y17_c00212{bottom:982.470000px;}
.y16_c00212{bottom:982.905000px;}
.y15_c00212{bottom:983.970000px;}
.y14_c00212{bottom:1000.245000px;}
.y11_c00212{bottom:1018.245000px;}
.y10_c00212{bottom:1018.470000px;}
.y13_c00212{bottom:1019.325000px;}
.ye_c00212{bottom:1019.745000px;}
.y12_c00212{bottom:1020.405000px;}
.yd_c00212{bottom:1020.825000px;}
.yf_c00212{bottom:1021.470000px;}
.yc_c00212{bottom:1021.905000px;}
.yb_c00212{bottom:1039.245000px;}
.ya_c00212{bottom:1040.130000px;}
.y7_c00212{bottom:1040.325000px;}
.y8_c00212{bottom:1041.405000px;}
.y9_c00212{bottom:1042.470000px;}
.y3_c00212{bottom:1058.745000px;}
.y6_c00212{bottom:1059.825000px;}
.y5_c00212{bottom:1060.905000px;}
.y4_c00212{bottom:1061.130000px;}
.y1_c00212{bottom:1097.745000px;}
.y2_c00212{bottom:1099.050000px;}
.h7_c00212{height:4.206533px;}
.hb_c00212{height:8.339268px;}
.h9_c00212{height:14.612168px;}
.ha_c00212{height:16.752334px;}
.h3_c00212{height:23.025234px;}
.h2_c00212{height:25.091602px;}
.h6_c00212{height:31.364502px;}
.h4_c00212{height:35.571035px;}
.h5_c00212{height:39.777568px;}
.h1_c00212{height:43.910303px;}
.h8_c00212{height:48.116836px;}
.h0_c00212{height:1335.000000px;}
.w0_c00212{width:880.500000px;}
.x0_c00212{left:0.000000px;}
.x3_c00212{left:151.920000px;}
.x41_c00212{left:153.420000px;}
.x4d_c00212{left:154.500000px;}
.x28_c00212{left:166.500000px;}
.x34_c00212{left:168.645000px;}
.x4e_c00212{left:179.580000px;}
.x1e_c00212{left:181.500000px;}
.x5b_c00212{left:183.000000px;}
.x31_c00212{left:193.500000px;}
.x71_c00212{left:196.500000px;}
.x83_c00212{left:198.000000px;}
.x29_c00212{left:202.080000px;}
.x10_c00212{left:207.000000px;}
.x4_c00212{left:210.000000px;}
.x32_c00212{left:211.500000px;}
.x4f_c00212{left:213.855000px;}
.x9b_c00212{left:216.000000px;}
.x8e_c00212{left:219.000000px;}
.x50_c00212{left:220.500000px;}
.x5_c00212{left:223.500000px;}
.x72_c00212{left:224.775000px;}
.x11_c00212{left:226.920000px;}
.x79_c00212{left:228.000000px;}
.x51_c00212{left:229.920000px;}
.x1f_c00212{left:232.500000px;}
.x42_c00212{left:236.580000px;}
.x35_c00212{left:238.500000px;}
.xb0_c00212{left:241.920000px;}
.x9f_c00212{left:243.420000px;}
.x66_c00212{left:244.500000px;}
.xa5_c00212{left:247.920000px;}
.x33_c00212{left:254.580000px;}
.x84_c00212{left:258.000000px;}
.x36_c00212{left:259.500000px;}
.xb4_c00212{left:264.000000px;}
.x2a_c00212{left:265.080000px;}
.xb2_c00212{left:268.080000px;}
.x95_c00212{left:271.500000px;}
.x85_c00212{left:273.000000px;}
.x43_c00212{left:276.000000px;}
.x73_c00212{left:277.500000px;}
.x12_c00212{left:282.000000px;}
.x37_c00212{left:283.920000px;}
.x5c_c00212{left:286.080000px;}
.x20_c00212{left:289.920000px;}
.xb6_c00212{left:291.000000px;}
.x44_c00212{left:292.920000px;}
.x52_c00212{left:295.500000px;}
.x2b_c00212{left:300.000000px;}
.x6_c00212{left:301.080000px;}
.x6b_c00212{left:303.420000px;}
.xb5_c00212{left:304.500000px;}
.x5d_c00212{left:306.420000px;}
.x38_c00212{left:313.080000px;}
.x13_c00212{left:318.420000px;}
.x96_c00212{left:322.500000px;}
.x53_c00212{left:324.420000px;}
.x21_c00212{left:327.420000px;}
.x7_c00212{left:331.080000px;}
.x5e_c00212{left:334.500000px;}
.x8f_c00212{left:336.000000px;}
.x2c_c00212{left:340.500000px;}
.x14_c00212{left:345.000000px;}
.xb3_c00212{left:346.080000px;}
.x39_c00212{left:356.580000px;}
.x22_c00212{left:363.000000px;}
.x45_c00212{left:364.920000px;}
.x7a_c00212{left:369.000000px;}
.x97_c00212{left:372.000000px;}
.x5f_c00212{left:373.080000px;}
.xa4_c00212{left:376.500000px;}
.xa6_c00212{left:378.000000px;}
.x86_c00212{left:379.080000px;}
.x9d_c00212{left:381.000000px;}
.xab_c00212{left:382.500000px;}
.x8_c00212{left:391.920000px;}
.x60_c00212{left:393.420000px;}
.x15_c00212{left:394.500000px;}
.x2_c00212{left:396.000000px;}
.x67_c00212{left:402.000000px;}
.x6c_c00212{left:405.000000px;}
.x98_c00212{left:406.500000px;}
.x8c_c00212{left:411.000000px;}
.x46_c00212{left:412.500000px;}
.x16_c00212{left:414.000000px;}
.x9_c00212{left:417.000000px;}
.xa3_c00212{left:418.500000px;}
.xaf_c00212{left:421.500000px;}
.xa7_c00212{left:423.000000px;}
.x61_c00212{left:424.500000px;}
.x90_c00212{left:425.580000px;}
.x3a_c00212{left:429.000000px;}
.x68_c00212{left:432.000000px;}
.x74_c00212{left:441.420000px;}
.x91_c00212{left:442.920000px;}
.x54_c00212{left:445.500000px;}
.x17_c00212{left:447.000000px;}
.x47_c00212{left:451.920000px;}
.x8d_c00212{left:454.500000px;}
.x55_c00212{left:460.500000px;}
.x9e_c00212{left:462.000000px;}
.x69_c00212{left:463.080000px;}
.x18_c00212{left:466.500000px;}
.x2d_c00212{left:468.420000px;}
.x7b_c00212{left:469.920000px;}
.xac_c00212{left:471.000000px;}
.x6d_c00212{left:475.080000px;}
.xa_c00212{left:478.920000px;}
.x48_c00212{left:480.420000px;}
.x99_c00212{left:484.500000px;}
.x87_c00212{left:486.420000px;}
.x62_c00212{left:493.500000px;}
.x23_c00212{left:495.000000px;}
.x19_c00212{left:502.920000px;}
.x56_c00212{left:504.000000px;}
.x3b_c00212{left:505.080000px;}
.x9a_c00212{left:507.000000px;}
.xa0_c00212{left:508.500000px;}
.xb_c00212{left:510.000000px;}
.xb7_c00212{left:511.500000px;}
.xa9_c00212{left:513.000000px;}
.x2e_c00212{left:514.500000px;}
.xad_c00212{left:517.500000px;}
.x7c_c00212{left:523.500000px;}
.x75_c00212{left:525.000000px;}
.x3c_c00212{left:526.920000px;}
.x1a_c00212{left:529.500000px;}
.x49_c00212{left:539.580000px;}
.x92_c00212{left:544.920000px;}
.xc_c00212{left:550.500000px;}
.x7d_c00212{left:552.000000px;}
.x88_c00212{left:553.500000px;}
.x3d_c00212{left:555.000000px;}
.x57_c00212{left:556.920000px;}
.xaa_c00212{left:558.000000px;}
.x93_c00212{left:560.580000px;}
.x6a_c00212{left:562.920000px;}
.x4a_c00212{left:571.500000px;}
.x6e_c00212{left:577.080000px;}
.x63_c00212{left:578.580000px;}
.x1b_c00212{left:580.500000px;}
.x7e_c00212{left:589.500000px;}
.x2f_c00212{left:592.500000px;}
.x58_c00212{left:594.420000px;}
.xb1_c00212{left:597.000000px;}
.xa1_c00212{left:598.500000px;}
.xb8_c00212{left:601.500000px;}
.xa8_c00212{left:603.000000px;}
.x24_c00212{left:606.000000px;}
.xae_c00212{left:607.500000px;}
.x76_c00212{left:612.420000px;}
.x3e_c00212{left:613.500000px;}
.xd_c00212{left:616.500000px;}
.x94_c00212{left:617.580000px;}
.x59_c00212{left:621.000000px;}
.x25_c00212{left:625.500000px;}
.x89_c00212{left:628.500000px;}
.x7f_c00212{left:630.000000px;}
.x30_c00212{left:632.580000px;}
.x6f_c00212{left:634.080000px;}
.x77_c00212{left:640.500000px;}
.xa2_c00212{left:642.000000px;}
.x9c_c00212{left:643.500000px;}
.x8a_c00212{left:646.920000px;}
.x26_c00212{left:648.000000px;}
.x4b_c00212{left:649.500000px;}
.x1c_c00212{left:652.080000px;}
.x80_c00212{left:661.920000px;}
.x70_c00212{left:666.000000px;}
.x3f_c00212{left:667.920000px;}
.x4c_c00212{left:669.000000px;}
.xe_c00212{left:670.920000px;}
.x8b_c00212{left:679.500000px;}
.x5a_c00212{left:684.420000px;}
.x64_c00212{left:689.580000px;}
.x1d_c00212{left:693.000000px;}
.x81_c00212{left:695.580000px;}
.x40_c00212{left:697.920000px;}
.x27_c00212{left:699.000000px;}
.x1_c00212{left:704.775000px;}
.xf_c00212{left:706.920000px;}
.x65_c00212{left:711.420000px;}
.x82_c00212{left:715.500000px;}
.x78_c00212{left:721.500000px;}
@media print{
.v1_c00212{vertical-align:-5.333333pt;}
.v0_c00212{vertical-align:0.000000pt;}
.ls2_c00212{letter-spacing:0.000000pt;}
.ls0_c00212{letter-spacing:51.473822pt;}
.ls1_c00212{letter-spacing:84.754839pt;}
.wsb_c00212{word-spacing:-91.825133pt;}
.ws2_c00212{word-spacing:-58.544115pt;}
.ws14_c00212{word-spacing:0.000000pt;}
.ws0_c00212{word-spacing:1.600263pt;}
.wsd_c00212{word-spacing:11.827705pt;}
.ws3_c00212{word-spacing:22.781898pt;}
.ws1_c00212{word-spacing:24.596914pt;}
.ws8_c00212{word-spacing:26.128988pt;}
.wsf_c00212{word-spacing:26.838488pt;}
.wsc_c00212{word-spacing:27.796573pt;}
.ws11_c00212{word-spacing:33.298290pt;}
.ws4_c00212{word-spacing:35.234133pt;}
.wsa_c00212{word-spacing:40.509110pt;}
.ws13_c00212{word-spacing:42.220309pt;}
.ws10_c00212{word-spacing:44.118417pt;}
.ws7_c00212{word-spacing:44.403528pt;}
.ws5_c00212{word-spacing:50.682780pt;}
.ws12_c00212{word-spacing:52.925836pt;}
.wse_c00212{word-spacing:63.207131pt;}
.ws9_c00212{word-spacing:70.953239pt;}
.ws6_c00212{word-spacing:78.445227pt;}
._3_c00212{margin-left:-84.754839pt;}
._0_c00212{margin-left:-51.473822pt;}
._2_c00212{width:31.531697pt;}
._4_c00212{width:34.866866pt;}
._1_c00212{width:50.285227pt;}
._5_c00212{width:54.440325pt;}
.fs6_c00212{font-size:3.040000pt;}
.fsa_c00212{font-size:6.026667pt;}
.fs8_c00212{font-size:10.560000pt;}
.fs9_c00212{font-size:12.106667pt;}
.fs2_c00212{font-size:16.640000pt;}
.fs1_c00212{font-size:18.133333pt;}
.fs5_c00212{font-size:22.666667pt;}
.fs3_c00212{font-size:25.706667pt;}
.fs4_c00212{font-size:28.746667pt;}
.fs0_c00212{font-size:31.733333pt;}
.fs7_c00212{font-size:34.773333pt;}
.y0_c00212{bottom:0.000000pt;}
.y54_c00212{bottom:223.773333pt;}
.y53_c00212{bottom:224.733333pt;}
.y50_c00212{bottom:225.106667pt;}
.y4f_c00212{bottom:226.066667pt;}
.y52_c00212{bottom:226.640000pt;}
.y51_c00212{bottom:227.026667pt;}
.y4b_c00212{bottom:241.106667pt;}
.y4c_c00212{bottom:242.066667pt;}
.y4d_c00212{bottom:243.026667pt;}
.y4a_c00212{bottom:243.226667pt;}
.y4e_c00212{bottom:243.973333pt;}
.y46_c00212{bottom:258.826667pt;}
.y45_c00212{bottom:259.600000pt;}
.y49_c00212{bottom:259.773333pt;}
.y48_c00212{bottom:260.360000pt;}
.y47_c00212{bottom:260.733333pt;}
.y44_c00212{bottom:261.693333pt;}
.y43_c00212{bottom:276.160000pt;}
.y42_c00212{bottom:276.360000pt;}
.y40_c00212{bottom:277.106667pt;}
.y3f_c00212{bottom:278.266667pt;}
.y41_c00212{bottom:279.026667pt;}
.y3c_c00212{bottom:279.226667pt;}
.y3e_c00212{bottom:279.400000pt;}
.y3d_c00212{bottom:280.360000pt;}
.y37_c00212{bottom:294.440000pt;}
.y35_c00212{bottom:295.400000pt;}
.y3b_c00212{bottom:295.773333pt;}
.y3a_c00212{bottom:296.360000pt;}
.y38_c00212{bottom:296.560000pt;}
.y39_c00212{bottom:296.933333pt;}
.y36_c00212{bottom:297.306667pt;}
.y34_c00212{bottom:311.400000pt;}
.y33_c00212{bottom:311.773333pt;}
.y32_c00212{bottom:313.693333pt;}
.y31_c00212{bottom:314.640000pt;}
.y2a_c00212{bottom:327.800000pt;}
.y29_c00212{bottom:328.733333pt;}
.y2e_c00212{bottom:329.106667pt;}
.y30_c00212{bottom:330.066667pt;}
.y28_c00212{bottom:330.266667pt;}
.y2b_c00212{bottom:330.440000pt;}
.y2f_c00212{bottom:331.026667pt;}
.y2c_c00212{bottom:331.400000pt;}
.y2d_c00212{bottom:332.360000pt;}
.y27_c00212{bottom:346.826667pt;}
.y25_c00212{bottom:347.773333pt;}
.y23_c00212{bottom:348.733333pt;}
.y26_c00212{bottom:349.693333pt;}
.y24_c00212{bottom:350.640000pt;}
.y21_c00212{bottom:364.733333pt;}
.y20_c00212{bottom:365.106667pt;}
.y22_c00212{bottom:365.693333pt;}
.y1e_c00212{bottom:367.026667pt;}
.y1f_c00212{bottom:367.040000pt;}
.yf5_c00212{bottom:384.173333pt;}
.yf4_c00212{bottom:385.506667pt;}
.yf6_c00212{bottom:385.706667pt;}
.yf3_c00212{bottom:385.893333pt;}
.yf2_c00212{bottom:386.266667pt;}
.yef_c00212{bottom:399.226667pt;}
.yf0_c00212{bottom:399.800000pt;}
.yee_c00212{bottom:401.506667pt;}
.yf1_c00212{bottom:401.706667pt;}
.yed_c00212{bottom:409.893333pt;}
.ye8_c00212{bottom:410.840000pt;}
.ye9_c00212{bottom:411.226667pt;}
.yea_c00212{bottom:411.800000pt;}
.yeb_c00212{bottom:412.373333pt;}
.yec_c00212{bottom:413.306667pt;}
.ye6_c00212{bottom:421.893333pt;}
.ye7_c00212{bottom:423.040000pt;}
.ye5_c00212{bottom:423.226667pt;}
.ye4_c00212{bottom:424.560000pt;}
.ye3_c00212{bottom:425.133333pt;}
.ye2_c00212{bottom:425.506667pt;}
.ye0_c00212{bottom:434.840000pt;}
.ye1_c00212{bottom:435.040000pt;}
.yde_c00212{bottom:435.426667pt;}
.ydf_c00212{bottom:435.800000pt;}
.ydd_c00212{bottom:436.173333pt;}
.ydc_c00212{bottom:445.506667pt;}
.yda_c00212{bottom:445.893333pt;}
.ydb_c00212{bottom:446.840000pt;}
.yd9_c00212{bottom:447.226667pt;}
.yd8_c00212{bottom:448.560000pt;}
.yd7_c00212{bottom:459.226667pt;}
.yd6_c00212{bottom:460.173333pt;}
.yd4_c00212{bottom:460.560000pt;}
.yd5_c00212{bottom:461.506667pt;}
.yd3_c00212{bottom:469.893333pt;}
.yd2_c00212{bottom:472.173333pt;}
.yd1_c00212{bottom:472.560000pt;}
.ycf_c00212{bottom:473.306667pt;}
.yd0_c00212{bottom:473.893333pt;}
.yce_c00212{bottom:483.226667pt;}
.ycd_c00212{bottom:484.560000pt;}
.ycc_c00212{bottom:485.506667pt;}
.ycb_c00212{bottom:486.466667pt;}
.yca_c00212{bottom:496.173333pt;}
.yc9_c00212{bottom:496.560000pt;}
.yc8_c00212{bottom:497.506667pt;}
.yc7_c00212{bottom:497.893333pt;}
.yc6_c00212{bottom:507.226667pt;}
.yc5_c00212{bottom:508.173333pt;}
.yc3_c00212{bottom:509.506667pt;}
.yc2_c00212{bottom:509.893333pt;}
.yc4_c00212{bottom:510.840000pt;}
.yc0_c00212{bottom:519.226667pt;}
.yc1_c00212{bottom:520.173333pt;}
.ybf_c00212{bottom:520.560000pt;}
.ybe_c00212{bottom:521.506667pt;}
.ybd_c00212{bottom:521.893333pt;}
.ybc_c00212{bottom:522.840000pt;}
.ybb_c00212{bottom:532.173333pt;}
.yba_c00212{bottom:532.560000pt;}
.yb9_c00212{bottom:533.506667pt;}
.yb7_c00212{bottom:533.893333pt;}
.yb8_c00212{bottom:534.840000pt;}
.yb5_c00212{bottom:544.560000pt;}
.yb6_c00212{bottom:545.506667pt;}
.yb3_c00212{bottom:545.893333pt;}
.yb4_c00212{bottom:546.840000pt;}
.yb2_c00212{bottom:547.226667pt;}
.yb1_c00212{bottom:556.560000pt;}
.yb0_c00212{bottom:557.506667pt;}
.yaf_c00212{bottom:557.893333pt;}
.yad_c00212{bottom:558.840000pt;}
.yae_c00212{bottom:559.226667pt;}
.yac_c00212{bottom:572.173333pt;}
.yab_c00212{bottom:581.506667pt;}
.ya8_c00212{bottom:581.893333pt;}
.ya9_c00212{bottom:582.840000pt;}
.yaa_c00212{bottom:583.040000pt;}
.ya7_c00212{bottom:583.600000pt;}
.ya6_c00212{bottom:593.893333pt;}
.ya5_c00212{bottom:594.840000pt;}
.ya4_c00212{bottom:595.226667pt;}
.ya3_c00212{bottom:596.560000pt;}
.ya2_c00212{bottom:606.840000pt;}
.ya0_c00212{bottom:608.173333pt;}
.ya1_c00212{bottom:608.373333pt;}
.y9e_c00212{bottom:609.506667pt;}
.y9f_c00212{bottom:609.706667pt;}
.y9d_c00212{bottom:609.893333pt;}
.y9c_c00212{bottom:618.840000pt;}
.y9a_c00212{bottom:620.173333pt;}
.y9b_c00212{bottom:620.373333pt;}
.y98_c00212{bottom:621.506667pt;}
.y99_c00212{bottom:621.706667pt;}
.y97_c00212{bottom:630.840000pt;}
.y95_c00212{bottom:631.226667pt;}
.y96_c00212{bottom:632.173333pt;}
.y94_c00212{bottom:633.506667pt;}
.y93_c00212{bottom:642.840000pt;}
.y91_c00212{bottom:643.226667pt;}
.y92_c00212{bottom:644.173333pt;}
.y90_c00212{bottom:645.506667pt;}
.y8f_c00212{bottom:654.840000pt;}
.y8e_c00212{bottom:655.226667pt;}
.y8d_c00212{bottom:656.173333pt;}
.y8c_c00212{bottom:656.560000pt;}
.y8b_c00212{bottom:656.933333pt;}
.y8a_c00212{bottom:657.893333pt;}
.y89_c00212{bottom:667.226667pt;}
.y88_c00212{bottom:668.173333pt;}
.y86_c00212{bottom:668.933333pt;}
.y87_c00212{bottom:669.506667pt;}
.y85_c00212{bottom:669.893333pt;}
.y84_c00212{bottom:679.226667pt;}
.y83_c00212{bottom:680.173333pt;}
.y82_c00212{bottom:680.560000pt;}
.y81_c00212{bottom:681.506667pt;}
.y80_c00212{bottom:681.893333pt;}
.y7f_c00212{bottom:682.840000pt;}
.y7e_c00212{bottom:692.173333pt;}
.y7c_c00212{bottom:692.560000pt;}
.y7d_c00212{bottom:693.506667pt;}
.y7b_c00212{bottom:693.893333pt;}
.y7a_c00212{bottom:694.840000pt;}
.y79_c00212{bottom:705.506667pt;}
.y78_c00212{bottom:705.893333pt;}
.y77_c00212{bottom:706.840000pt;}
.y76_c00212{bottom:716.173333pt;}
.y75_c00212{bottom:717.506667pt;}
.y74_c00212{bottom:717.893333pt;}
.y73_c00212{bottom:718.840000pt;}
.y71_c00212{bottom:728.560000pt;}
.y72_c00212{bottom:729.506667pt;}
.y6f_c00212{bottom:730.266667pt;}
.y70_c00212{bottom:730.840000pt;}
.y6e_c00212{bottom:731.226667pt;}
.y6d_c00212{bottom:740.560000pt;}
.y6c_c00212{bottom:741.893333pt;}
.y69_c00212{bottom:742.266667pt;}
.y6b_c00212{bottom:742.840000pt;}
.y6a_c00212{bottom:743.226667pt;}
.y68_c00212{bottom:744.173333pt;}
.y67_c00212{bottom:753.893333pt;}
.y66_c00212{bottom:754.840000pt;}
.y65_c00212{bottom:755.226667pt;}
.y64_c00212{bottom:756.173333pt;}
.y63_c00212{bottom:772.173333pt;}
.y62_c00212{bottom:781.506667pt;}
.y61_c00212{bottom:782.840000pt;}
.y5f_c00212{bottom:783.226667pt;}
.y60_c00212{bottom:784.173333pt;}
.y5c_c00212{bottom:795.026667pt;}
.y5b_c00212{bottom:795.400000pt;}
.y5d_c00212{bottom:795.973333pt;}
.y5e_c00212{bottom:796.933333pt;}
.y5a_c00212{bottom:807.400000pt;}
.y59_c00212{bottom:808.560000pt;}
.y57_c00212{bottom:809.306667pt;}
.y58_c00212{bottom:810.266667pt;}
.y56_c00212{bottom:829.306667pt;}
.y55_c00212{bottom:832.933333pt;}
.y1d_c00212{bottom:853.693333pt;}
.y1a_c00212{bottom:854.440000pt;}
.y1c_c00212{bottom:856.360000pt;}
.y1b_c00212{bottom:857.306667pt;}
.y19_c00212{bottom:871.773333pt;}
.y18_c00212{bottom:872.560000pt;}
.y17_c00212{bottom:873.306667pt;}
.y16_c00212{bottom:873.693333pt;}
.y15_c00212{bottom:874.640000pt;}
.y14_c00212{bottom:889.106667pt;}
.y11_c00212{bottom:905.106667pt;}
.y10_c00212{bottom:905.306667pt;}
.y13_c00212{bottom:906.066667pt;}
.ye_c00212{bottom:906.440000pt;}
.y12_c00212{bottom:907.026667pt;}
.yd_c00212{bottom:907.400000pt;}
.yf_c00212{bottom:907.973333pt;}
.yc_c00212{bottom:908.360000pt;}
.yb_c00212{bottom:923.773333pt;}
.ya_c00212{bottom:924.560000pt;}
.y7_c00212{bottom:924.733333pt;}
.y8_c00212{bottom:925.693333pt;}
.y9_c00212{bottom:926.640000pt;}
.y3_c00212{bottom:941.106667pt;}
.y6_c00212{bottom:942.066667pt;}
.y5_c00212{bottom:943.026667pt;}
.y4_c00212{bottom:943.226667pt;}
.y1_c00212{bottom:975.773333pt;}
.y2_c00212{bottom:976.933333pt;}
.h7_c00212{height:3.739141pt;}
.hb_c00212{height:7.412682pt;}
.h9_c00212{height:12.988594pt;}
.ha_c00212{height:14.890964pt;}
.h3_c00212{height:20.466875pt;}
.h2_c00212{height:22.303646pt;}
.h6_c00212{height:27.879557pt;}
.h4_c00212{height:31.618698pt;}
.h5_c00212{height:35.357839pt;}
.h1_c00212{height:39.031380pt;}
.h8_c00212{height:42.770521pt;}
.h0_c00212{height:1186.666667pt;}
.w0_c00212{width:782.666667pt;}
.x0_c00212{left:0.000000pt;}
.x3_c00212{left:135.040000pt;}
.x41_c00212{left:136.373333pt;}
.x4d_c00212{left:137.333333pt;}
.x28_c00212{left:148.000000pt;}
.x34_c00212{left:149.906667pt;}
.x4e_c00212{left:159.626667pt;}
.x1e_c00212{left:161.333333pt;}
.x5b_c00212{left:162.666667pt;}
.x31_c00212{left:172.000000pt;}
.x71_c00212{left:174.666667pt;}
.x83_c00212{left:176.000000pt;}
.x29_c00212{left:179.626667pt;}
.x10_c00212{left:184.000000pt;}
.x4_c00212{left:186.666667pt;}
.x32_c00212{left:188.000000pt;}
.x4f_c00212{left:190.093333pt;}
.x9b_c00212{left:192.000000pt;}
.x8e_c00212{left:194.666667pt;}
.x50_c00212{left:196.000000pt;}
.x5_c00212{left:198.666667pt;}
.x72_c00212{left:199.800000pt;}
.x11_c00212{left:201.706667pt;}
.x79_c00212{left:202.666667pt;}
.x51_c00212{left:204.373333pt;}
.x1f_c00212{left:206.666667pt;}
.x42_c00212{left:210.293333pt;}
.x35_c00212{left:212.000000pt;}
.xb0_c00212{left:215.040000pt;}
.x9f_c00212{left:216.373333pt;}
.x66_c00212{left:217.333333pt;}
.xa5_c00212{left:220.373333pt;}
.x33_c00212{left:226.293333pt;}
.x84_c00212{left:229.333333pt;}
.x36_c00212{left:230.666667pt;}
.xb4_c00212{left:234.666667pt;}
.x2a_c00212{left:235.626667pt;}
.xb2_c00212{left:238.293333pt;}
.x95_c00212{left:241.333333pt;}
.x85_c00212{left:242.666667pt;}
.x43_c00212{left:245.333333pt;}
.x73_c00212{left:246.666667pt;}
.x12_c00212{left:250.666667pt;}
.x37_c00212{left:252.373333pt;}
.x5c_c00212{left:254.293333pt;}
.x20_c00212{left:257.706667pt;}
.xb6_c00212{left:258.666667pt;}
.x44_c00212{left:260.373333pt;}
.x52_c00212{left:262.666667pt;}
.x2b_c00212{left:266.666667pt;}
.x6_c00212{left:267.626667pt;}
.x6b_c00212{left:269.706667pt;}
.xb5_c00212{left:270.666667pt;}
.x5d_c00212{left:272.373333pt;}
.x38_c00212{left:278.293333pt;}
.x13_c00212{left:283.040000pt;}
.x96_c00212{left:286.666667pt;}
.x53_c00212{left:288.373333pt;}
.x21_c00212{left:291.040000pt;}
.x7_c00212{left:294.293333pt;}
.x5e_c00212{left:297.333333pt;}
.x8f_c00212{left:298.666667pt;}
.x2c_c00212{left:302.666667pt;}
.x14_c00212{left:306.666667pt;}
.xb3_c00212{left:307.626667pt;}
.x39_c00212{left:316.960000pt;}
.x22_c00212{left:322.666667pt;}
.x45_c00212{left:324.373333pt;}
.x7a_c00212{left:328.000000pt;}
.x97_c00212{left:330.666667pt;}
.x5f_c00212{left:331.626667pt;}
.xa4_c00212{left:334.666667pt;}
.xa6_c00212{left:336.000000pt;}
.x86_c00212{left:336.960000pt;}
.x9d_c00212{left:338.666667pt;}
.xab_c00212{left:340.000000pt;}
.x8_c00212{left:348.373333pt;}
.x60_c00212{left:349.706667pt;}
.x15_c00212{left:350.666667pt;}
.x2_c00212{left:352.000000pt;}
.x67_c00212{left:357.333333pt;}
.x6c_c00212{left:360.000000pt;}
.x98_c00212{left:361.333333pt;}
.x8c_c00212{left:365.333333pt;}
.x46_c00212{left:366.666667pt;}
.x16_c00212{left:368.000000pt;}
.x9_c00212{left:370.666667pt;}
.xa3_c00212{left:372.000000pt;}
.xaf_c00212{left:374.666667pt;}
.xa7_c00212{left:376.000000pt;}
.x61_c00212{left:377.333333pt;}
.x90_c00212{left:378.293333pt;}
.x3a_c00212{left:381.333333pt;}
.x68_c00212{left:384.000000pt;}
.x74_c00212{left:392.373333pt;}
.x91_c00212{left:393.706667pt;}
.x54_c00212{left:396.000000pt;}
.x17_c00212{left:397.333333pt;}
.x47_c00212{left:401.706667pt;}
.x8d_c00212{left:404.000000pt;}
.x55_c00212{left:409.333333pt;}
.x9e_c00212{left:410.666667pt;}
.x69_c00212{left:411.626667pt;}
.x18_c00212{left:414.666667pt;}
.x2d_c00212{left:416.373333pt;}
.x7b_c00212{left:417.706667pt;}
.xac_c00212{left:418.666667pt;}
.x6d_c00212{left:422.293333pt;}
.xa_c00212{left:425.706667pt;}
.x48_c00212{left:427.040000pt;}
.x99_c00212{left:430.666667pt;}
.x87_c00212{left:432.373333pt;}
.x62_c00212{left:438.666667pt;}
.x23_c00212{left:440.000000pt;}
.x19_c00212{left:447.040000pt;}
.x56_c00212{left:448.000000pt;}
.x3b_c00212{left:448.960000pt;}
.x9a_c00212{left:450.666667pt;}
.xa0_c00212{left:452.000000pt;}
.xb_c00212{left:453.333333pt;}
.xb7_c00212{left:454.666667pt;}
.xa9_c00212{left:456.000000pt;}
.x2e_c00212{left:457.333333pt;}
.xad_c00212{left:460.000000pt;}
.x7c_c00212{left:465.333333pt;}
.x75_c00212{left:466.666667pt;}
.x3c_c00212{left:468.373333pt;}
.x1a_c00212{left:470.666667pt;}
.x49_c00212{left:479.626667pt;}
.x92_c00212{left:484.373333pt;}
.xc_c00212{left:489.333333pt;}
.x7d_c00212{left:490.666667pt;}
.x88_c00212{left:492.000000pt;}
.x3d_c00212{left:493.333333pt;}
.x57_c00212{left:495.040000pt;}
.xaa_c00212{left:496.000000pt;}
.x93_c00212{left:498.293333pt;}
.x6a_c00212{left:500.373333pt;}
.x4a_c00212{left:508.000000pt;}
.x6e_c00212{left:512.960000pt;}
.x63_c00212{left:514.293333pt;}
.x1b_c00212{left:516.000000pt;}
.x7e_c00212{left:524.000000pt;}
.x2f_c00212{left:526.666667pt;}
.x58_c00212{left:528.373333pt;}
.xb1_c00212{left:530.666667pt;}
.xa1_c00212{left:532.000000pt;}
.xb8_c00212{left:534.666667pt;}
.xa8_c00212{left:536.000000pt;}
.x24_c00212{left:538.666667pt;}
.xae_c00212{left:540.000000pt;}
.x76_c00212{left:544.373333pt;}
.x3e_c00212{left:545.333333pt;}
.xd_c00212{left:548.000000pt;}
.x94_c00212{left:548.960000pt;}
.x59_c00212{left:552.000000pt;}
.x25_c00212{left:556.000000pt;}
.x89_c00212{left:558.666667pt;}
.x7f_c00212{left:560.000000pt;}
.x30_c00212{left:562.293333pt;}
.x6f_c00212{left:563.626667pt;}
.x77_c00212{left:569.333333pt;}
.xa2_c00212{left:570.666667pt;}
.x9c_c00212{left:572.000000pt;}
.x8a_c00212{left:575.040000pt;}
.x26_c00212{left:576.000000pt;}
.x4b_c00212{left:577.333333pt;}
.x1c_c00212{left:579.626667pt;}
.x80_c00212{left:588.373333pt;}
.x70_c00212{left:592.000000pt;}
.x3f_c00212{left:593.706667pt;}
.x4c_c00212{left:594.666667pt;}
.xe_c00212{left:596.373333pt;}
.x8b_c00212{left:604.000000pt;}
.x5a_c00212{left:608.373333pt;}
.x64_c00212{left:612.960000pt;}
.x1d_c00212{left:616.000000pt;}
.x81_c00212{left:618.293333pt;}
.x40_c00212{left:620.373333pt;}
.x27_c00212{left:621.333333pt;}
.x1_c00212{left:626.466667pt;}
.xf_c00212{left:628.373333pt;}
.x65_c00212{left:632.373333pt;}
.x82_c00212{left:636.000000pt;}
.x78_c00212{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cd7a103121218070ba6b72ea.woff2')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma8_c00213{transform:matrix(0.343558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343558,0.000000,0.000000,0.250000,0,0);}
.m9e_c00213{transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);}
.me5_c00213{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_c00213{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m6c_c00213{transform:matrix(0.363173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363173,0.000000,0.000000,0.250000,0,0);}
.m4c_c00213{transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);}
.m5d_c00213{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.m35_c00213{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m4d_c00213{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m40_c00213{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mac_c00213{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m0_c00213{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m8e_c00213{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m11_c00213{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m42_c00213{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.m52_c00213{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m62_c00213{transform:matrix(0.378479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378479,0.000000,0.000000,0.250000,0,0);}
.m90_c00213{transform:matrix(0.378834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378834,0.000000,0.000000,0.250000,0,0);}
.mb9_c00213{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.med_c00213{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m59_c00213{transform:matrix(0.382780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382780,0.000000,0.000000,0.250000,0,0);}
.m3c_c00213{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m93_c00213{transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);}
.m58_c00213{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.mb1_c00213{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m6d_c00213{transform:matrix(0.393321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393321,0.000000,0.000000,0.250000,0,0);}
.m7b_c00213{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m55_c00213{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.ma3_c00213{transform:matrix(0.398390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398390,0.000000,0.000000,0.250000,0,0);}
.m5b_c00213{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.mb6_c00213{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m46_c00213{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m9b_c00213{transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);}
.m61_c00213{transform:matrix(0.406772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406772,0.000000,0.000000,0.250000,0,0);}
.mc7_c00213{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.md2_c00213{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m79_c00213{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m7_c00213{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m7e_c00213{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m6b_c00213{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.m37_c00213{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mce_c00213{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.ma_c00213{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m34_c00213{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m60_c00213{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.mc4_c00213{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.md7_c00213{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.ma7_c00213{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m2f_c00213{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m85_c00213{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m56_c00213{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m99_c00213{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m4f_c00213{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m8a_c00213{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m3e_c00213{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.m5a_c00213{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.ma4_c00213{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m7f_c00213{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.mb7_c00213{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.mcd_c00213{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m97_c00213{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m16_c00213{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m8c_c00213{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m64_c00213{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m5_c00213{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.md3_c00213{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m73_c00213{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mf_c00213{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m5f_c00213{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m3b_c00213{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m2e_c00213{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.mb8_c00213{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m94_c00213{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.m10_c00213{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.mcb_c00213{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m7c_c00213{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m63_c00213{transform:matrix(0.441390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441390,0.000000,0.000000,0.250000,0,0);}
.me0_c00213{transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);}
.m72_c00213{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.md8_c00213{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.mc2_c00213{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m2d_c00213{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m7a_c00213{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.mb2_c00213{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.md1_c00213{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.mc0_c00213{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m67_c00213{transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);}
.m2c_c00213{transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);}
.m5c_c00213{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m54_c00213{transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);}
.mcf_c00213{transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);}
.m70_c00213{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.maa_c00213{transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);}
.md5_c00213{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m1b_c00213{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.me7_c00213{transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);}
.m75_c00213{transform:matrix(0.470168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470168,0.000000,0.000000,0.250000,0,0);}
.m9d_c00213{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.mda_c00213{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mbe_c00213{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.m47_c00213{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.mb5_c00213{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m24_c00213{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m9c_c00213{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m8_c00213{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mbc_c00213{transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);}
.m39_c00213{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m6f_c00213{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m41_c00213{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m2b_c00213{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m4b_c00213{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m23_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);}
.m36_c00213{transform:matrix(0.502319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502319,0.000000,0.000000,0.250000,0,0);}
.mde_c00213{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m84_c00213{transform:matrix(0.504638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504638,0.000000,0.000000,0.250000,0,0);}
.mbb_c00213{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m8d_c00213{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mab_c00213{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m1e_c00213{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m21_c00213{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m5e_c00213{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m45_c00213{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.meb_c00213{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m28_c00213{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m6e_c00213{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.m44_c00213{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.md6_c00213{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m4a_c00213{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m53_c00213{transform:matrix(0.517161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517161,0.000000,0.000000,0.250000,0,0);}
.m4_c00213{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.md9_c00213{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m3a_c00213{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.me3_c00213{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m1c_c00213{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m51_c00213{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m98_c00213{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mec_c00213{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m33_c00213{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m86_c00213{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mc9_c00213{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m38_c00213{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m78_c00213{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.md_c00213{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m9f_c00213{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.me8_c00213{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.mc6_c00213{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m12_c00213{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m83_c00213{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m26_c00213{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m77_c00213{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m2a_c00213{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m17_c00213{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m9a_c00213{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.ma0_c00213{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m31_c00213{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.mb_c00213{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m3f_c00213{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m3d_c00213{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mc8_c00213{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m25_c00213{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m92_c00213{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m76_c00213{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mad_c00213{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m91_c00213{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.ma9_c00213{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m14_c00213{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m8f_c00213{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m89_c00213{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m1a_c00213{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mdc_c00213{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m87_c00213{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m80_c00213{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m8b_c00213{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m48_c00213{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m81_c00213{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m6_c00213{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m4e_c00213{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m95_c00213{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m88_c00213{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m32_c00213{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.me9_c00213{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m82_c00213{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.mb3_c00213{transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);}
.m13_c00213{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m22_c00213{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m57_c00213{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.me1_c00213{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m2_c00213{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.me4_c00213{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.ma6_c00213{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.maf_c00213{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.mea_c00213{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mc1_c00213{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mc3_c00213{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.md0_c00213{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.md4_c00213{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mc5_c00213{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);}
.mdd_c00213{transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);}
.mcc_c00213{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m1_c00213{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m66_c00213{transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);}
.m9_c00213{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mc_c00213{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mca_c00213{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m15_c00213{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m65_c00213{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_c00213{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m49_c00213{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m1f_c00213{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.mdb_c00213{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.mba_c00213{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.me_c00213{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.ma2_c00213{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mbd_c00213{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m30_c00213{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m68_c00213{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.ma1_c00213{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m96_c00213{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m69_c00213{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.me2_c00213{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m20_c00213{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m27_c00213{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m29_c00213{transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);}
.m18_c00213{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m1d_c00213{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.ma5_c00213{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.m7d_c00213{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.me6_c00213{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mb4_c00213{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m43_c00213{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mb0_c00213{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m19_c00213{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m3_c00213{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mbf_c00213{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mdf_c00213{transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);}
.m71_c00213{transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);}
.m6a_c00213{transform:matrix(0.929515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.929515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.929515,0.000000,0.000000,0.250000,0,0);}
.m74_c00213{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00213{vertical-align:0.000000px;}
.ls0_c00213{letter-spacing:0.000000px;}
.sc__c00213{text-shadow:none;}
.sc0_c00213{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00213{-webkit-text-stroke:0px transparent;}
.sc0_c00213{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00213{word-spacing:-6.400641px;}
.ws1_c00213{word-spacing:-3.458893px;}
.ws3_c00213{word-spacing:0.000000px;}
.ws2_c00213{word-spacing:0.773989px;}
.fc0_c00213{color:transparent;}
.fs7_c00213{font-size:3.420000px;}
.fs6_c00213{font-size:13.620000px;}
.fs3_c00213{font-size:18.720000px;}
.fs1_c00213{font-size:20.400000px;}
.fs5_c00213{font-size:25.500000px;}
.fs2_c00213{font-size:28.920000px;}
.fs0_c00213{font-size:32.340000px;}
.fs4_c00213{font-size:35.700000px;}
.fs8_c00213{font-size:39.120000px;}
.y0_c00213{bottom:0.000000px;}
.yc3_c00213{bottom:249.825000px;}
.yc0_c00213{bottom:250.245000px;}
.ybf_c00213{bottom:251.130000px;}
.yc2_c00213{bottom:252.405000px;}
.yc1_c00213{bottom:253.470000px;}
.yba_c00213{bottom:269.745000px;}
.ybc_c00213{bottom:270.630000px;}
.ybe_c00213{bottom:270.825000px;}
.ybd_c00213{bottom:271.470000px;}
.ybb_c00213{bottom:271.905000px;}
.yb7_c00213{bottom:289.245000px;}
.yb6_c00213{bottom:290.745000px;}
.yb4_c00213{bottom:291.405000px;}
.yb8_c00213{bottom:291.630000px;}
.yb5_c00213{bottom:292.470000px;}
.yb9_c00213{bottom:292.905000px;}
.yb3_c00213{bottom:310.245000px;}
.yb2_c00213{bottom:311.130000px;}
.yb1_c00213{bottom:312.405000px;}
.yae_c00213{bottom:328.470000px;}
.yac_c00213{bottom:330.405000px;}
.yab_c00213{bottom:330.630000px;}
.yb0_c00213{bottom:330.825000px;}
.yaf_c00213{bottom:331.470000px;}
.yad_c00213{bottom:331.905000px;}
.ya9_c00213{bottom:349.245000px;}
.yaa_c00213{bottom:350.130000px;}
.ya8_c00213{bottom:351.405000px;}
.ya6_c00213{bottom:368.745000px;}
.ya7_c00213{bottom:370.470000px;}
.ya5_c00213{bottom:370.905000px;}
.ya4_c00213{bottom:388.245000px;}
.ya2_c00213{bottom:389.325000px;}
.ya1_c00213{bottom:389.745000px;}
.ya0_c00213{bottom:390.405000px;}
.ya3_c00213{bottom:390.630000px;}
.y9f_c00213{bottom:391.470000px;}
.y9a_c00213{bottom:407.745000px;}
.y9e_c00213{bottom:408.825000px;}
.y9d_c00213{bottom:409.245000px;}
.y9b_c00213{bottom:409.905000px;}
.y9c_c00213{bottom:411.405000px;}
.y96_c00213{bottom:427.245000px;}
.y98_c00213{bottom:428.325000px;}
.y94_c00213{bottom:428.745000px;}
.y95_c00213{bottom:429.405000px;}
.y99_c00213{bottom:429.630000px;}
.y97_c00213{bottom:430.470000px;}
.y93_c00213{bottom:430.905000px;}
.y8f_c00213{bottom:446.745000px;}
.y92_c00213{bottom:446.970000px;}
.y8e_c00213{bottom:448.245000px;}
.y90_c00213{bottom:449.325000px;}
.y91_c00213{bottom:450.405000px;}
.y8a_c00213{bottom:466.905000px;}
.y8c_c00213{bottom:467.745000px;}
.y8b_c00213{bottom:468.630000px;}
.y88_c00213{bottom:468.825000px;}
.y89_c00213{bottom:469.050000px;}
.y87_c00213{bottom:469.905000px;}
.y8d_c00213{bottom:470.130000px;}
.y82_c00213{bottom:487.245000px;}
.y86_c00213{bottom:487.470000px;}
.y85_c00213{bottom:487.905000px;}
.y80_c00213{bottom:488.745000px;}
.y83_c00213{bottom:489.405000px;}
.y84_c00213{bottom:490.470000px;}
.y81_c00213{bottom:490.920000px;}
.y7d_c00213{bottom:506.745000px;}
.y7c_c00213{bottom:508.905000px;}
.y7e_c00213{bottom:509.130000px;}
.y7f_c00213{bottom:509.970000px;}
.y77_c00213{bottom:525.405000px;}
.y7b_c00213{bottom:526.245000px;}
.y79_c00213{bottom:526.905000px;}
.y75_c00213{bottom:527.745000px;}
.y7a_c00213{bottom:528.405000px;}
.y78_c00213{bottom:528.630000px;}
.y76_c00213{bottom:529.905000px;}
.y71_c00213{bottom:547.245000px;}
.y74_c00213{bottom:548.130000px;}
.y72_c00213{bottom:549.405000px;}
.y73_c00213{bottom:550.470000px;}
.y6f_c00213{bottom:565.680000px;}
.y6b_c00213{bottom:566.745000px;}
.y70_c00213{bottom:567.405000px;}
.y6e_c00213{bottom:567.630000px;}
.y6d_c00213{bottom:568.905000px;}
.y6c_c00213{bottom:569.970000px;}
.y6a_c00213{bottom:583.905000px;}
.y65_c00213{bottom:585.180000px;}
.y68_c00213{bottom:586.245000px;}
.y69_c00213{bottom:587.130000px;}
.y66_c00213{bottom:587.325000px;}
.y67_c00213{bottom:587.550000px;}
.y64_c00213{bottom:588.405000px;}
.y62_c00213{bottom:605.745000px;}
.y63_c00213{bottom:606.630000px;}
.y60_c00213{bottom:607.905000px;}
.y61_c00213{bottom:607.920000px;}
.y5e_c00213{bottom:625.245000px;}
.y5d_c00213{bottom:625.680000px;}
.y5f_c00213{bottom:626.325000px;}
.y5c_c00213{bottom:627.405000px;}
.y5b_c00213{bottom:646.245000px;}
.y5a_c00213{bottom:647.970000px;}
.y59_c00213{bottom:648.405000px;}
.y58_c00213{bottom:665.745000px;}
.y57_c00213{bottom:667.905000px;}
.y55_c00213{bottom:682.905000px;}
.y53_c00213{bottom:685.245000px;}
.y54_c00213{bottom:686.130000px;}
.y56_c00213{bottom:686.325000px;}
.y51_c00213{bottom:687.405000px;}
.y52_c00213{bottom:687.420000px;}
.y50_c00213{bottom:704.745000px;}
.y4e_c00213{bottom:705.630000px;}
.y4d_c00213{bottom:706.905000px;}
.y4f_c00213{bottom:706.920000px;}
.y4c_c00213{bottom:723.405000px;}
.y49_c00213{bottom:724.245000px;}
.y4b_c00213{bottom:725.325000px;}
.y4a_c00213{bottom:726.420000px;}
.y46_c00213{bottom:742.905000px;}
.y44_c00213{bottom:743.745000px;}
.y48_c00213{bottom:744.825000px;}
.y47_c00213{bottom:745.905000px;}
.y45_c00213{bottom:747.420000px;}
.y40_c00213{bottom:770.325000px;}
.y41_c00213{bottom:770.550000px;}
.y42_c00213{bottom:771.405000px;}
.y43_c00213{bottom:771.630000px;}
.y3b_c00213{bottom:783.825000px;}
.y3c_c00213{bottom:784.905000px;}
.y3e_c00213{bottom:785.130000px;}
.y3f_c00213{bottom:786.195000px;}
.y3d_c00213{bottom:787.050000px;}
.y3a_c00213{bottom:802.470000px;}
.y37_c00213{bottom:803.325000px;}
.y38_c00213{bottom:804.405000px;}
.y39_c00213{bottom:805.470000px;}
.y35_c00213{bottom:827.325000px;}
.y36_c00213{bottom:827.745000px;}
.y34_c00213{bottom:828.825000px;}
.y33_c00213{bottom:880.905000px;}
.y30_c00213{bottom:881.745000px;}
.y32_c00213{bottom:882.630000px;}
.y2f_c00213{bottom:883.905000px;}
.y31_c00213{bottom:884.970000px;}
.y2d_c00213{bottom:900.405000px;}
.y2c_c00213{bottom:901.245000px;}
.y2e_c00213{bottom:902.130000px;}
.y29_c00213{bottom:902.325000px;}
.y2a_c00213{bottom:903.405000px;}
.y2b_c00213{bottom:904.470000px;}
.y25_c00213{bottom:919.905000px;}
.y27_c00213{bottom:920.745000px;}
.y24_c00213{bottom:922.245000px;}
.y26_c00213{bottom:922.905000px;}
.y28_c00213{bottom:923.130000px;}
.y23_c00213{bottom:924.405000px;}
.y1f_c00213{bottom:939.405000px;}
.y22_c00213{bottom:941.325000px;}
.y1e_c00213{bottom:941.745000px;}
.y21_c00213{bottom:942.405000px;}
.y1d_c00213{bottom:942.825000px;}
.y20_c00213{bottom:943.905000px;}
.y1c_c00213{bottom:959.745000px;}
.y1b_c00213{bottom:960.825000px;}
.y18_c00213{bottom:961.245000px;}
.y1a_c00213{bottom:961.905000px;}
.y19_c00213{bottom:962.970000px;}
.y17_c00213{bottom:978.825000px;}
.y15_c00213{bottom:979.245000px;}
.y14_c00213{bottom:979.470000px;}
.y16_c00213{bottom:980.325000px;}
.y13_c00213{bottom:981.405000px;}
.y11_c00213{bottom:997.905000px;}
.y12_c00213{bottom:1000.905000px;}
.yf_c00213{bottom:1001.130000px;}
.y10_c00213{bottom:1001.970000px;}
.ye_c00213{bottom:1002.405000px;}
.yb_c00213{bottom:1018.470000px;}
.y9_c00213{bottom:1019.745000px;}
.yd_c00213{bottom:1020.405000px;}
.yc_c00213{bottom:1020.630000px;}
.ya_c00213{bottom:1021.905000px;}
.y8_c00213{bottom:1042.470000px;}
.y5_c00213{bottom:1058.745000px;}
.y7_c00213{bottom:1059.405000px;}
.y4_c00213{bottom:1059.630000px;}
.y6_c00213{bottom:1060.470000px;}
.y3_c00213{bottom:1060.905000px;}
.y1_c00213{bottom:1098.825000px;}
.y2_c00213{bottom:1099.050000px;}
.h8_c00213{height:4.206533px;}
.h7_c00213{height:16.752334px;}
.h4_c00213{height:23.025234px;}
.h2_c00213{height:25.091602px;}
.h6_c00213{height:31.364502px;}
.h3_c00213{height:35.571035px;}
.h1_c00213{height:39.777568px;}
.h5_c00213{height:43.910303px;}
.h9_c00213{height:48.116836px;}
.h0_c00213{height:1335.000000px;}
.w0_c00213{width:880.500000px;}
.x0_c00213{left:0.000000px;}
.xeb_c00213{left:148.080000px;}
.xe2_c00213{left:149.145000px;}
.xcc_c00213{left:150.420000px;}
.x72_c00213{left:151.500000px;}
.x3_c00213{left:153.000000px;}
.x1_c00213{left:155.355000px;}
.x61_c00213{left:162.420000px;}
.xe7_c00213{left:163.500000px;}
.x69_c00213{left:166.920000px;}
.x7b_c00213{left:168.000000px;}
.x10_c00213{left:169.080000px;}
.xec_c00213{left:171.420000px;}
.xef_c00213{left:175.920000px;}
.x1e_c00213{left:177.000000px;}
.xe3_c00213{left:180.000000px;}
.xc6_c00213{left:183.000000px;}
.xf9_c00213{left:186.000000px;}
.xd5_c00213{left:188.580000px;}
.x94_c00213{left:190.080000px;}
.x2a_c00213{left:194.580000px;}
.x58_c00213{left:196.920000px;}
.xdb_c00213{left:198.000000px;}
.xaf_c00213{left:199.500000px;}
.x4f_c00213{left:201.000000px;}
.xf0_c00213{left:202.500000px;}
.xb4_c00213{left:205.920000px;}
.x1f_c00213{left:208.080000px;}
.x2b_c00213{left:210.000000px;}
.xe4_c00213{left:211.080000px;}
.x8f_c00213{left:214.080000px;}
.x73_c00213{left:215.580000px;}
.xba_c00213{left:217.080000px;}
.x8a_c00213{left:218.580000px;}
.xd6_c00213{left:220.500000px;}
.xf1_c00213{left:221.580000px;}
.x62_c00213{left:225.000000px;}
.xa8_c00213{left:226.500000px;}
.x6a_c00213{left:230.580000px;}
.x11_c00213{left:233.580000px;}
.x74_c00213{left:237.855000px;}
.x4_c00213{left:240.000000px;}
.x46_c00213{left:241.080000px;}
.x50_c00213{left:243.420000px;}
.x63_c00213{left:247.080000px;}
.x36_c00213{left:249.000000px;}
.x99_c00213{left:250.500000px;}
.xbf_c00213{left:253.500000px;}
.x75_c00213{left:255.420000px;}
.x20_c00213{left:256.500000px;}
.x6b_c00213{left:259.500000px;}
.x84_c00213{left:261.000000px;}
.x5_c00213{left:262.920000px;}
.xb5_c00213{left:264.000000px;}
.xf2_c00213{left:265.920000px;}
.xfd_c00213{left:267.000000px;}
.x77_c00213{left:268.500000px;}
.x9f_c00213{left:269.580000px;}
.x9a_c00213{left:271.080000px;}
.x59_c00213{left:273.000000px;}
.x37_c00213{left:274.500000px;}
.x21_c00213{left:275.580000px;}
.x76_c00213{left:277.500000px;}
.x12_c00213{left:279.000000px;}
.x47_c00213{left:280.920000px;}
.x90_c00213{left:283.500000px;}
.x5a_c00213{left:285.000000px;}
.xbb_c00213{left:288.000000px;}
.x78_c00213{left:289.500000px;}
.x8b_c00213{left:292.920000px;}
.x6_c00213{left:294.000000px;}
.xfa_c00213{left:297.420000px;}
.x80_c00213{left:300.000000px;}
.x2c_c00213{left:301.500000px;}
.x95_c00213{left:305.145000px;}
.xa0_c00213{left:309.000000px;}
.x51_c00213{left:310.500000px;}
.x5d_c00213{left:311.580000px;}
.x13_c00213{left:313.500000px;}
.x85_c00213{left:316.500000px;}
.xdc_c00213{left:317.580000px;}
.x22_c00213{left:319.920000px;}
.xfe_c00213{left:321.000000px;}
.x81_c00213{left:322.080000px;}
.x48_c00213{left:325.080000px;}
.x5b_c00213{left:326.580000px;}
.xc0_c00213{left:331.080000px;}
.x23_c00213{left:338.580000px;}
.x7_c00213{left:342.000000px;}
.x38_c00213{left:343.080000px;}
.x7c_c00213{left:344.775000px;}
.xa9_c00213{left:346.920000px;}
.x6c_c00213{left:348.000000px;}
.x96_c00213{left:350.580000px;}
.x8c_c00213{left:353.580000px;}
.xe5_c00213{left:357.000000px;}
.x49_c00213{left:358.275000px;}
.x2d_c00213{left:359.580000px;}
.xbc_c00213{left:363.000000px;}
.x6d_c00213{left:364.500000px;}
.x24_c00213{left:367.920000px;}
.x3e_c00213{left:369.420000px;}
.x86_c00213{left:372.000000px;}
.xd7_c00213{left:373.500000px;}
.xaa_c00213{left:375.000000px;}
.x2e_c00213{left:376.080000px;}
.x82_c00213{left:378.000000px;}
.xd1_c00213{left:379.080000px;}
.xb6_c00213{left:381.420000px;}
.x14_c00213{left:382.920000px;}
.x8_c00213{left:384.420000px;}
.x7d_c00213{left:385.920000px;}
.x79_c00213{left:387.000000px;}
.xbd_c00213{left:388.080000px;}
.xb0_c00213{left:390.420000px;}
.x52_c00213{left:391.500000px;}
.x2f_c00213{left:394.080000px;}
.xff_c00213{left:396.420000px;}
.x9b_c00213{left:397.500000px;}
.x3f_c00213{left:399.000000px;}
.x2_c00213{left:400.500000px;}
.xcd_c00213{left:402.420000px;}
.x64_c00213{left:403.920000px;}
.x5e_c00213{left:405.000000px;}
.xf3_c00213{left:406.500000px;}
.xc7_c00213{left:408.420000px;}
.x4a_c00213{left:411.000000px;}
.x5c_c00213{left:412.920000px;}
.x9_c00213{left:414.000000px;}
.x15_c00213{left:417.420000px;}
.x25_c00213{left:418.500000px;}
.x7e_c00213{left:421.500000px;}
.x100_c00213{left:423.000000px;}
.xfb_c00213{left:424.500000px;}
.xc8_c00213{left:427.500000px;}
.x53_c00213{left:428.580000px;}
.x83_c00213{left:430.080000px;}
.xf4_c00213{left:432.420000px;}
.xd8_c00213{left:436.500000px;}
.x39_c00213{left:437.580000px;}
.xbe_c00213{left:439.500000px;}
.xb1_c00213{left:441.000000px;}
.x16_c00213{left:442.920000px;}
.xd2_c00213{left:444.000000px;}
.x30_c00213{left:445.920000px;}
.x40_c00213{left:449.580000px;}
.x6e_c00213{left:451.500000px;}
.xa1_c00213{left:455.775000px;}
.x87_c00213{left:459.000000px;}
.xc9_c00213{left:460.920000px;}
.x101_c00213{left:463.920000px;}
.x5f_c00213{left:467.580000px;}
.x41_c00213{left:472.920000px;}
.x17_c00213{left:475.500000px;}
.xce_c00213{left:477.420000px;}
.xf5_c00213{left:478.500000px;}
.x65_c00213{left:479.580000px;}
.x7f_c00213{left:482.775000px;}
.x9c_c00213{left:484.920000px;}
.x54_c00213{left:487.080000px;}
.xab_c00213{left:488.580000px;}
.x91_c00213{left:493.500000px;}
.x7a_c00213{left:497.580000px;}
.xa2_c00213{left:499.500000px;}
.x26_c00213{left:502.080000px;}
.x31_c00213{left:504.420000px;}
.xa_c00213{left:507.000000px;}
.xed_c00213{left:508.080000px;}
.xe8_c00213{left:510.420000px;}
.x6f_c00213{left:511.500000px;}
.xd9_c00213{left:513.000000px;}
.x97_c00213{left:514.080000px;}
.x4b_c00213{left:516.000000px;}
.x102_c00213{left:517.500000px;}
.x27_c00213{left:518.580000px;}
.x18_c00213{left:520.500000px;}
.x3a_c00213{left:523.920000px;}
.xb_c00213{left:525.000000px;}
.xb7_c00213{left:526.500000px;}
.x42_c00213{left:527.580000px;}
.x88_c00213{left:528.855000px;}
.xca_c00213{left:531.420000px;}
.xa3_c00213{left:534.000000px;}
.x4c_c00213{left:535.500000px;}
.x60_c00213{left:536.775000px;}
.xe9_c00213{left:538.080000px;}
.x103_c00213{left:541.920000px;}
.xc1_c00213{left:546.000000px;}
.xdd_c00213{left:547.500000px;}
.x4d_c00213{left:549.000000px;}
.xcb_c00213{left:550.500000px;}
.xc_c00213{left:553.500000px;}
.xb8_c00213{left:555.420000px;}
.x3b_c00213{left:558.000000px;}
.x43_c00213{left:559.500000px;}
.xac_c00213{left:560.580000px;}
.xb2_c00213{left:564.000000px;}
.xc2_c00213{left:566.580000px;}
.x32_c00213{left:568.920000px;}
.xa4_c00213{left:573.000000px;}
.x70_c00213{left:574.080000px;}
.x55_c00213{left:575.775000px;}
.xcf_c00213{left:579.420000px;}
.xea_c00213{left:582.000000px;}
.x9d_c00213{left:583.920000px;}
.x19_c00213{left:586.500000px;}
.xe6_c00213{left:588.000000px;}
.xa5_c00213{left:589.500000px;}
.x92_c00213{left:592.500000px;}
.x4e_c00213{left:594.000000px;}
.x33_c00213{left:597.000000px;}
.xc3_c00213{left:600.000000px;}
.xde_c00213{left:601.500000px;}
.xda_c00213{left:603.420000px;}
.x1a_c00213{left:604.500000px;}
.x8d_c00213{left:605.580000px;}
.xdf_c00213{left:607.080000px;}
.x71_c00213{left:609.420000px;}
.x98_c00213{left:611.580000px;}
.xad_c00213{left:613.920000px;}
.xd3_c00213{left:616.080000px;}
.x56_c00213{left:617.580000px;}
.x3c_c00213{left:621.000000px;}
.x28_c00213{left:624.420000px;}
.xe0_c00213{left:627.420000px;}
.x1b_c00213{left:633.000000px;}
.xd_c00213{left:634.920000px;}
.xf6_c00213{left:636.000000px;}
.x44_c00213{left:637.920000px;}
.xc4_c00213{left:639.000000px;}
.x66_c00213{left:643.500000px;}
.xd0_c00213{left:645.000000px;}
.xb9_c00213{left:647.580000px;}
.x1c_c00213{left:650.580000px;}
.xe1_c00213{left:655.080000px;}
.x104_c00213{left:658.920000px;}
.x34_c00213{left:661.500000px;}
.xfc_c00213{left:663.420000px;}
.x67_c00213{left:664.500000px;}
.x29_c00213{left:665.580000px;}
.x93_c00213{left:667.500000px;}
.x8e_c00213{left:672.000000px;}
.x35_c00213{left:676.500000px;}
.xa6_c00213{left:677.580000px;}
.xae_c00213{left:679.500000px;}
.x45_c00213{left:681.000000px;}
.x3d_c00213{left:682.500000px;}
.x68_c00213{left:683.580000px;}
.x105_c00213{left:685.920000px;}
.x1d_c00213{left:687.000000px;}
.xf7_c00213{left:688.080000px;}
.xe_c00213{left:690.000000px;}
.xee_c00213{left:691.500000px;}
.xc5_c00213{left:694.500000px;}
.xb3_c00213{left:696.000000px;}
.x89_c00213{left:697.920000px;}
.x57_c00213{left:699.000000px;}
.xa7_c00213{left:703.080000px;}
.xf8_c00213{left:706.920000px;}
.x9e_c00213{left:708.420000px;}
.xf_c00213{left:709.920000px;}
.xd4_c00213{left:715.500000px;}
@media print{
.v0_c00213{vertical-align:0.000000pt;}
.ls0_c00213{letter-spacing:0.000000pt;}
.ws0_c00213{word-spacing:-5.689459pt;}
.ws1_c00213{word-spacing:-3.074572pt;}
.ws3_c00213{word-spacing:0.000000pt;}
.ws2_c00213{word-spacing:0.687990pt;}
.fs7_c00213{font-size:3.040000pt;}
.fs6_c00213{font-size:12.106667pt;}
.fs3_c00213{font-size:16.640000pt;}
.fs1_c00213{font-size:18.133333pt;}
.fs5_c00213{font-size:22.666667pt;}
.fs2_c00213{font-size:25.706667pt;}
.fs0_c00213{font-size:28.746667pt;}
.fs4_c00213{font-size:31.733333pt;}
.fs8_c00213{font-size:34.773333pt;}
.y0_c00213{bottom:0.000000pt;}
.yc3_c00213{bottom:222.066667pt;}
.yc0_c00213{bottom:222.440000pt;}
.ybf_c00213{bottom:223.226667pt;}
.yc2_c00213{bottom:224.360000pt;}
.yc1_c00213{bottom:225.306667pt;}
.yba_c00213{bottom:239.773333pt;}
.ybc_c00213{bottom:240.560000pt;}
.ybe_c00213{bottom:240.733333pt;}
.ybd_c00213{bottom:241.306667pt;}
.ybb_c00213{bottom:241.693333pt;}
.yb7_c00213{bottom:257.106667pt;}
.yb6_c00213{bottom:258.440000pt;}
.yb4_c00213{bottom:259.026667pt;}
.yb8_c00213{bottom:259.226667pt;}
.yb5_c00213{bottom:259.973333pt;}
.yb9_c00213{bottom:260.360000pt;}
.yb3_c00213{bottom:275.773333pt;}
.yb2_c00213{bottom:276.560000pt;}
.yb1_c00213{bottom:277.693333pt;}
.yae_c00213{bottom:291.973333pt;}
.yac_c00213{bottom:293.693333pt;}
.yab_c00213{bottom:293.893333pt;}
.yb0_c00213{bottom:294.066667pt;}
.yaf_c00213{bottom:294.640000pt;}
.yad_c00213{bottom:295.026667pt;}
.ya9_c00213{bottom:310.440000pt;}
.yaa_c00213{bottom:311.226667pt;}
.ya8_c00213{bottom:312.360000pt;}
.ya6_c00213{bottom:327.773333pt;}
.ya7_c00213{bottom:329.306667pt;}
.ya5_c00213{bottom:329.693333pt;}
.ya4_c00213{bottom:345.106667pt;}
.ya2_c00213{bottom:346.066667pt;}
.ya1_c00213{bottom:346.440000pt;}
.ya0_c00213{bottom:347.026667pt;}
.ya3_c00213{bottom:347.226667pt;}
.y9f_c00213{bottom:347.973333pt;}
.y9a_c00213{bottom:362.440000pt;}
.y9e_c00213{bottom:363.400000pt;}
.y9d_c00213{bottom:363.773333pt;}
.y9b_c00213{bottom:364.360000pt;}
.y9c_c00213{bottom:365.693333pt;}
.y96_c00213{bottom:379.773333pt;}
.y98_c00213{bottom:380.733333pt;}
.y94_c00213{bottom:381.106667pt;}
.y95_c00213{bottom:381.693333pt;}
.y99_c00213{bottom:381.893333pt;}
.y97_c00213{bottom:382.640000pt;}
.y93_c00213{bottom:383.026667pt;}
.y8f_c00213{bottom:397.106667pt;}
.y92_c00213{bottom:397.306667pt;}
.y8e_c00213{bottom:398.440000pt;}
.y90_c00213{bottom:399.400000pt;}
.y91_c00213{bottom:400.360000pt;}
.y8a_c00213{bottom:415.026667pt;}
.y8c_c00213{bottom:415.773333pt;}
.y8b_c00213{bottom:416.560000pt;}
.y88_c00213{bottom:416.733333pt;}
.y89_c00213{bottom:416.933333pt;}
.y87_c00213{bottom:417.693333pt;}
.y8d_c00213{bottom:417.893333pt;}
.y82_c00213{bottom:433.106667pt;}
.y86_c00213{bottom:433.306667pt;}
.y85_c00213{bottom:433.693333pt;}
.y80_c00213{bottom:434.440000pt;}
.y83_c00213{bottom:435.026667pt;}
.y84_c00213{bottom:435.973333pt;}
.y81_c00213{bottom:436.373333pt;}
.y7d_c00213{bottom:450.440000pt;}
.y7c_c00213{bottom:452.360000pt;}
.y7e_c00213{bottom:452.560000pt;}
.y7f_c00213{bottom:453.306667pt;}
.y77_c00213{bottom:467.026667pt;}
.y7b_c00213{bottom:467.773333pt;}
.y79_c00213{bottom:468.360000pt;}
.y75_c00213{bottom:469.106667pt;}
.y7a_c00213{bottom:469.693333pt;}
.y78_c00213{bottom:469.893333pt;}
.y76_c00213{bottom:471.026667pt;}
.y71_c00213{bottom:486.440000pt;}
.y74_c00213{bottom:487.226667pt;}
.y72_c00213{bottom:488.360000pt;}
.y73_c00213{bottom:489.306667pt;}
.y6f_c00213{bottom:502.826667pt;}
.y6b_c00213{bottom:503.773333pt;}
.y70_c00213{bottom:504.360000pt;}
.y6e_c00213{bottom:504.560000pt;}
.y6d_c00213{bottom:505.693333pt;}
.y6c_c00213{bottom:506.640000pt;}
.y6a_c00213{bottom:519.026667pt;}
.y65_c00213{bottom:520.160000pt;}
.y68_c00213{bottom:521.106667pt;}
.y69_c00213{bottom:521.893333pt;}
.y66_c00213{bottom:522.066667pt;}
.y67_c00213{bottom:522.266667pt;}
.y64_c00213{bottom:523.026667pt;}
.y62_c00213{bottom:538.440000pt;}
.y63_c00213{bottom:539.226667pt;}
.y60_c00213{bottom:540.360000pt;}
.y61_c00213{bottom:540.373333pt;}
.y5e_c00213{bottom:555.773333pt;}
.y5d_c00213{bottom:556.160000pt;}
.y5f_c00213{bottom:556.733333pt;}
.y5c_c00213{bottom:557.693333pt;}
.y5b_c00213{bottom:574.440000pt;}
.y5a_c00213{bottom:575.973333pt;}
.y59_c00213{bottom:576.360000pt;}
.y58_c00213{bottom:591.773333pt;}
.y57_c00213{bottom:593.693333pt;}
.y55_c00213{bottom:607.026667pt;}
.y53_c00213{bottom:609.106667pt;}
.y54_c00213{bottom:609.893333pt;}
.y56_c00213{bottom:610.066667pt;}
.y51_c00213{bottom:611.026667pt;}
.y52_c00213{bottom:611.040000pt;}
.y50_c00213{bottom:626.440000pt;}
.y4e_c00213{bottom:627.226667pt;}
.y4d_c00213{bottom:628.360000pt;}
.y4f_c00213{bottom:628.373333pt;}
.y4c_c00213{bottom:643.026667pt;}
.y49_c00213{bottom:643.773333pt;}
.y4b_c00213{bottom:644.733333pt;}
.y4a_c00213{bottom:645.706667pt;}
.y46_c00213{bottom:660.360000pt;}
.y44_c00213{bottom:661.106667pt;}
.y48_c00213{bottom:662.066667pt;}
.y47_c00213{bottom:663.026667pt;}
.y45_c00213{bottom:664.373333pt;}
.y40_c00213{bottom:684.733333pt;}
.y41_c00213{bottom:684.933333pt;}
.y42_c00213{bottom:685.693333pt;}
.y43_c00213{bottom:685.893333pt;}
.y3b_c00213{bottom:696.733333pt;}
.y3c_c00213{bottom:697.693333pt;}
.y3e_c00213{bottom:697.893333pt;}
.y3f_c00213{bottom:698.840000pt;}
.y3d_c00213{bottom:699.600000pt;}
.y3a_c00213{bottom:713.306667pt;}
.y37_c00213{bottom:714.066667pt;}
.y38_c00213{bottom:715.026667pt;}
.y39_c00213{bottom:715.973333pt;}
.y35_c00213{bottom:735.400000pt;}
.y36_c00213{bottom:735.773333pt;}
.y34_c00213{bottom:736.733333pt;}
.y33_c00213{bottom:783.026667pt;}
.y30_c00213{bottom:783.773333pt;}
.y32_c00213{bottom:784.560000pt;}
.y2f_c00213{bottom:785.693333pt;}
.y31_c00213{bottom:786.640000pt;}
.y2d_c00213{bottom:800.360000pt;}
.y2c_c00213{bottom:801.106667pt;}
.y2e_c00213{bottom:801.893333pt;}
.y29_c00213{bottom:802.066667pt;}
.y2a_c00213{bottom:803.026667pt;}
.y2b_c00213{bottom:803.973333pt;}
.y25_c00213{bottom:817.693333pt;}
.y27_c00213{bottom:818.440000pt;}
.y24_c00213{bottom:819.773333pt;}
.y26_c00213{bottom:820.360000pt;}
.y28_c00213{bottom:820.560000pt;}
.y23_c00213{bottom:821.693333pt;}
.y1f_c00213{bottom:835.026667pt;}
.y22_c00213{bottom:836.733333pt;}
.y1e_c00213{bottom:837.106667pt;}
.y21_c00213{bottom:837.693333pt;}
.y1d_c00213{bottom:838.066667pt;}
.y20_c00213{bottom:839.026667pt;}
.y1c_c00213{bottom:853.106667pt;}
.y1b_c00213{bottom:854.066667pt;}
.y18_c00213{bottom:854.440000pt;}
.y1a_c00213{bottom:855.026667pt;}
.y19_c00213{bottom:855.973333pt;}
.y17_c00213{bottom:870.066667pt;}
.y15_c00213{bottom:870.440000pt;}
.y14_c00213{bottom:870.640000pt;}
.y16_c00213{bottom:871.400000pt;}
.y13_c00213{bottom:872.360000pt;}
.y11_c00213{bottom:887.026667pt;}
.y12_c00213{bottom:889.693333pt;}
.yf_c00213{bottom:889.893333pt;}
.y10_c00213{bottom:890.640000pt;}
.ye_c00213{bottom:891.026667pt;}
.yb_c00213{bottom:905.306667pt;}
.y9_c00213{bottom:906.440000pt;}
.yd_c00213{bottom:907.026667pt;}
.yc_c00213{bottom:907.226667pt;}
.ya_c00213{bottom:908.360000pt;}
.y8_c00213{bottom:926.640000pt;}
.y5_c00213{bottom:941.106667pt;}
.y7_c00213{bottom:941.693333pt;}
.y4_c00213{bottom:941.893333pt;}
.y6_c00213{bottom:942.640000pt;}
.y3_c00213{bottom:943.026667pt;}
.y1_c00213{bottom:976.733333pt;}
.y2_c00213{bottom:976.933333pt;}
.h8_c00213{height:3.739141pt;}
.h7_c00213{height:14.890964pt;}
.h4_c00213{height:20.466875pt;}
.h2_c00213{height:22.303646pt;}
.h6_c00213{height:27.879557pt;}
.h3_c00213{height:31.618698pt;}
.h1_c00213{height:35.357839pt;}
.h5_c00213{height:39.031380pt;}
.h9_c00213{height:42.770521pt;}
.h0_c00213{height:1186.666667pt;}
.w0_c00213{width:782.666667pt;}
.x0_c00213{left:0.000000pt;}
.xeb_c00213{left:131.626667pt;}
.xe2_c00213{left:132.573333pt;}
.xcc_c00213{left:133.706667pt;}
.x72_c00213{left:134.666667pt;}
.x3_c00213{left:136.000000pt;}
.x1_c00213{left:138.093333pt;}
.x61_c00213{left:144.373333pt;}
.xe7_c00213{left:145.333333pt;}
.x69_c00213{left:148.373333pt;}
.x7b_c00213{left:149.333333pt;}
.x10_c00213{left:150.293333pt;}
.xec_c00213{left:152.373333pt;}
.xef_c00213{left:156.373333pt;}
.x1e_c00213{left:157.333333pt;}
.xe3_c00213{left:160.000000pt;}
.xc6_c00213{left:162.666667pt;}
.xf9_c00213{left:165.333333pt;}
.xd5_c00213{left:167.626667pt;}
.x94_c00213{left:168.960000pt;}
.x2a_c00213{left:172.960000pt;}
.x58_c00213{left:175.040000pt;}
.xdb_c00213{left:176.000000pt;}
.xaf_c00213{left:177.333333pt;}
.x4f_c00213{left:178.666667pt;}
.xf0_c00213{left:180.000000pt;}
.xb4_c00213{left:183.040000pt;}
.x1f_c00213{left:184.960000pt;}
.x2b_c00213{left:186.666667pt;}
.xe4_c00213{left:187.626667pt;}
.x8f_c00213{left:190.293333pt;}
.x73_c00213{left:191.626667pt;}
.xba_c00213{left:192.960000pt;}
.x8a_c00213{left:194.293333pt;}
.xd6_c00213{left:196.000000pt;}
.xf1_c00213{left:196.960000pt;}
.x62_c00213{left:200.000000pt;}
.xa8_c00213{left:201.333333pt;}
.x6a_c00213{left:204.960000pt;}
.x11_c00213{left:207.626667pt;}
.x74_c00213{left:211.426667pt;}
.x4_c00213{left:213.333333pt;}
.x46_c00213{left:214.293333pt;}
.x50_c00213{left:216.373333pt;}
.x63_c00213{left:219.626667pt;}
.x36_c00213{left:221.333333pt;}
.x99_c00213{left:222.666667pt;}
.xbf_c00213{left:225.333333pt;}
.x75_c00213{left:227.040000pt;}
.x20_c00213{left:228.000000pt;}
.x6b_c00213{left:230.666667pt;}
.x84_c00213{left:232.000000pt;}
.x5_c00213{left:233.706667pt;}
.xb5_c00213{left:234.666667pt;}
.xf2_c00213{left:236.373333pt;}
.xfd_c00213{left:237.333333pt;}
.x77_c00213{left:238.666667pt;}
.x9f_c00213{left:239.626667pt;}
.x9a_c00213{left:240.960000pt;}
.x59_c00213{left:242.666667pt;}
.x37_c00213{left:244.000000pt;}
.x21_c00213{left:244.960000pt;}
.x76_c00213{left:246.666667pt;}
.x12_c00213{left:248.000000pt;}
.x47_c00213{left:249.706667pt;}
.x90_c00213{left:252.000000pt;}
.x5a_c00213{left:253.333333pt;}
.xbb_c00213{left:256.000000pt;}
.x78_c00213{left:257.333333pt;}
.x8b_c00213{left:260.373333pt;}
.x6_c00213{left:261.333333pt;}
.xfa_c00213{left:264.373333pt;}
.x80_c00213{left:266.666667pt;}
.x2c_c00213{left:268.000000pt;}
.x95_c00213{left:271.240000pt;}
.xa0_c00213{left:274.666667pt;}
.x51_c00213{left:276.000000pt;}
.x5d_c00213{left:276.960000pt;}
.x13_c00213{left:278.666667pt;}
.x85_c00213{left:281.333333pt;}
.xdc_c00213{left:282.293333pt;}
.x22_c00213{left:284.373333pt;}
.xfe_c00213{left:285.333333pt;}
.x81_c00213{left:286.293333pt;}
.x48_c00213{left:288.960000pt;}
.x5b_c00213{left:290.293333pt;}
.xc0_c00213{left:294.293333pt;}
.x23_c00213{left:300.960000pt;}
.x7_c00213{left:304.000000pt;}
.x38_c00213{left:304.960000pt;}
.x7c_c00213{left:306.466667pt;}
.xa9_c00213{left:308.373333pt;}
.x6c_c00213{left:309.333333pt;}
.x96_c00213{left:311.626667pt;}
.x8c_c00213{left:314.293333pt;}
.xe5_c00213{left:317.333333pt;}
.x49_c00213{left:318.466667pt;}
.x2d_c00213{left:319.626667pt;}
.xbc_c00213{left:322.666667pt;}
.x6d_c00213{left:324.000000pt;}
.x24_c00213{left:327.040000pt;}
.x3e_c00213{left:328.373333pt;}
.x86_c00213{left:330.666667pt;}
.xd7_c00213{left:332.000000pt;}
.xaa_c00213{left:333.333333pt;}
.x2e_c00213{left:334.293333pt;}
.x82_c00213{left:336.000000pt;}
.xd1_c00213{left:336.960000pt;}
.xb6_c00213{left:339.040000pt;}
.x14_c00213{left:340.373333pt;}
.x8_c00213{left:341.706667pt;}
.x7d_c00213{left:343.040000pt;}
.x79_c00213{left:344.000000pt;}
.xbd_c00213{left:344.960000pt;}
.xb0_c00213{left:347.040000pt;}
.x52_c00213{left:348.000000pt;}
.x2f_c00213{left:350.293333pt;}
.xff_c00213{left:352.373333pt;}
.x9b_c00213{left:353.333333pt;}
.x3f_c00213{left:354.666667pt;}
.x2_c00213{left:356.000000pt;}
.xcd_c00213{left:357.706667pt;}
.x64_c00213{left:359.040000pt;}
.x5e_c00213{left:360.000000pt;}
.xf3_c00213{left:361.333333pt;}
.xc7_c00213{left:363.040000pt;}
.x4a_c00213{left:365.333333pt;}
.x5c_c00213{left:367.040000pt;}
.x9_c00213{left:368.000000pt;}
.x15_c00213{left:371.040000pt;}
.x25_c00213{left:372.000000pt;}
.x7e_c00213{left:374.666667pt;}
.x100_c00213{left:376.000000pt;}
.xfb_c00213{left:377.333333pt;}
.xc8_c00213{left:380.000000pt;}
.x53_c00213{left:380.960000pt;}
.x83_c00213{left:382.293333pt;}
.xf4_c00213{left:384.373333pt;}
.xd8_c00213{left:388.000000pt;}
.x39_c00213{left:388.960000pt;}
.xbe_c00213{left:390.666667pt;}
.xb1_c00213{left:392.000000pt;}
.x16_c00213{left:393.706667pt;}
.xd2_c00213{left:394.666667pt;}
.x30_c00213{left:396.373333pt;}
.x40_c00213{left:399.626667pt;}
.x6e_c00213{left:401.333333pt;}
.xa1_c00213{left:405.133333pt;}
.x87_c00213{left:408.000000pt;}
.xc9_c00213{left:409.706667pt;}
.x101_c00213{left:412.373333pt;}
.x5f_c00213{left:415.626667pt;}
.x41_c00213{left:420.373333pt;}
.x17_c00213{left:422.666667pt;}
.xce_c00213{left:424.373333pt;}
.xf5_c00213{left:425.333333pt;}
.x65_c00213{left:426.293333pt;}
.x7f_c00213{left:429.133333pt;}
.x9c_c00213{left:431.040000pt;}
.x54_c00213{left:432.960000pt;}
.xab_c00213{left:434.293333pt;}
.x91_c00213{left:438.666667pt;}
.x7a_c00213{left:442.293333pt;}
.xa2_c00213{left:444.000000pt;}
.x26_c00213{left:446.293333pt;}
.x31_c00213{left:448.373333pt;}
.xa_c00213{left:450.666667pt;}
.xed_c00213{left:451.626667pt;}
.xe8_c00213{left:453.706667pt;}
.x6f_c00213{left:454.666667pt;}
.xd9_c00213{left:456.000000pt;}
.x97_c00213{left:456.960000pt;}
.x4b_c00213{left:458.666667pt;}
.x102_c00213{left:460.000000pt;}
.x27_c00213{left:460.960000pt;}
.x18_c00213{left:462.666667pt;}
.x3a_c00213{left:465.706667pt;}
.xb_c00213{left:466.666667pt;}
.xb7_c00213{left:468.000000pt;}
.x42_c00213{left:468.960000pt;}
.x88_c00213{left:470.093333pt;}
.xca_c00213{left:472.373333pt;}
.xa3_c00213{left:474.666667pt;}
.x4c_c00213{left:476.000000pt;}
.x60_c00213{left:477.133333pt;}
.xe9_c00213{left:478.293333pt;}
.x103_c00213{left:481.706667pt;}
.xc1_c00213{left:485.333333pt;}
.xdd_c00213{left:486.666667pt;}
.x4d_c00213{left:488.000000pt;}
.xcb_c00213{left:489.333333pt;}
.xc_c00213{left:492.000000pt;}
.xb8_c00213{left:493.706667pt;}
.x3b_c00213{left:496.000000pt;}
.x43_c00213{left:497.333333pt;}
.xac_c00213{left:498.293333pt;}
.xb2_c00213{left:501.333333pt;}
.xc2_c00213{left:503.626667pt;}
.x32_c00213{left:505.706667pt;}
.xa4_c00213{left:509.333333pt;}
.x70_c00213{left:510.293333pt;}
.x55_c00213{left:511.800000pt;}
.xcf_c00213{left:515.040000pt;}
.xea_c00213{left:517.333333pt;}
.x9d_c00213{left:519.040000pt;}
.x19_c00213{left:521.333333pt;}
.xe6_c00213{left:522.666667pt;}
.xa5_c00213{left:524.000000pt;}
.x92_c00213{left:526.666667pt;}
.x4e_c00213{left:528.000000pt;}
.x33_c00213{left:530.666667pt;}
.xc3_c00213{left:533.333333pt;}
.xde_c00213{left:534.666667pt;}
.xda_c00213{left:536.373333pt;}
.x1a_c00213{left:537.333333pt;}
.x8d_c00213{left:538.293333pt;}
.xdf_c00213{left:539.626667pt;}
.x71_c00213{left:541.706667pt;}
.x98_c00213{left:543.626667pt;}
.xad_c00213{left:545.706667pt;}
.xd3_c00213{left:547.626667pt;}
.x56_c00213{left:548.960000pt;}
.x3c_c00213{left:552.000000pt;}
.x28_c00213{left:555.040000pt;}
.xe0_c00213{left:557.706667pt;}
.x1b_c00213{left:562.666667pt;}
.xd_c00213{left:564.373333pt;}
.xf6_c00213{left:565.333333pt;}
.x44_c00213{left:567.040000pt;}
.xc4_c00213{left:568.000000pt;}
.x66_c00213{left:572.000000pt;}
.xd0_c00213{left:573.333333pt;}
.xb9_c00213{left:575.626667pt;}
.x1c_c00213{left:578.293333pt;}
.xe1_c00213{left:582.293333pt;}
.x104_c00213{left:585.706667pt;}
.x34_c00213{left:588.000000pt;}
.xfc_c00213{left:589.706667pt;}
.x67_c00213{left:590.666667pt;}
.x29_c00213{left:591.626667pt;}
.x93_c00213{left:593.333333pt;}
.x8e_c00213{left:597.333333pt;}
.x35_c00213{left:601.333333pt;}
.xa6_c00213{left:602.293333pt;}
.xae_c00213{left:604.000000pt;}
.x45_c00213{left:605.333333pt;}
.x3d_c00213{left:606.666667pt;}
.x68_c00213{left:607.626667pt;}
.x105_c00213{left:609.706667pt;}
.x1d_c00213{left:610.666667pt;}
.xf7_c00213{left:611.626667pt;}
.xe_c00213{left:613.333333pt;}
.xee_c00213{left:614.666667pt;}
.xc5_c00213{left:617.333333pt;}
.xb3_c00213{left:618.666667pt;}
.x89_c00213{left:620.373333pt;}
.x57_c00213{left:621.333333pt;}
.xa7_c00213{left:624.960000pt;}
.xf8_c00213{left:628.373333pt;}
.x9e_c00213{left:629.706667pt;}
.xf_c00213{left:631.040000pt;}
.xd4_c00213{left:636.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_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_ac2207d54b801c03395f5296.woff2')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00214{transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);}
.m44_c00214{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);}
.m5a_c00214{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m62_c00214{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m60_c00214{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.m8d_c00214{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00214{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m5d_c00214{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m36_c00214{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m53_c00214{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m52_c00214{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m5f_c00214{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m1d_c00214{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.m48_c00214{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m24_c00214{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m59_c00214{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m47_c00214{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m2_c00214{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.ma4_c00214{transform:matrix(0.418382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418382,0.000000,0.000000,0.250000,0,0);}
.m7a_c00214{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m3a_c00214{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m22_c00214{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m28_c00214{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m3e_c00214{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m7c_c00214{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m1f_c00214{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m5c_c00214{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m37_c00214{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m51_c00214{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m3b_c00214{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m2c_c00214{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m3f_c00214{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m8f_c00214{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m45_c00214{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m75_c00214{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mb3_c00214{transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);}
.me_c00214{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m3c_c00214{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m98_c00214{transform:matrix(0.448529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448529,0.000000,0.000000,0.250000,0,0);}
.m74_c00214{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.m4c_c00214{transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);}
.m6b_c00214{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mb5_c00214{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.m88_c00214{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m9e_c00214{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.m7b_c00214{transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);}
.ma6_c00214{transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);}
.m4b_c00214{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m23_c00214{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.md_c00214{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m39_c00214{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m63_c00214{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m87_c00214{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m34_c00214{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m81_c00214{transform:matrix(0.489583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489583,0.000000,0.000000,0.250000,0,0);}
.m83_c00214{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m68_c00214{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m5b_c00214{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.ma7_c00214{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.m9c_c00214{transform:matrix(0.495994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495994,0.000000,0.000000,0.250000,0,0);}
.m2a_c00214{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_c00214{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m11_c00214{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m6_c00214{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m6e_c00214{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.mf_c00214{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m54_c00214{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m19_c00214{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m15_c00214{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m3_c00214{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m33_c00214{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m73_c00214{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);}
.m26_c00214{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m46_c00214{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m13_c00214{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m66_c00214{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m41_c00214{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m27_c00214{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m9a_c00214{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.m5_c00214{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mab_c00214{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m79_c00214{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.m97_c00214{transform:matrix(0.533088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533088,0.000000,0.000000,0.250000,0,0);}
.m78_c00214{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.mc_c00214{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m6a_c00214{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m29_c00214{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m1b_c00214{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m25_c00214{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m31_c00214{transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);}
.m64_c00214{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m2e_c00214{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m21_c00214{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m57_c00214{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.mb0_c00214{transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);}
.m69_c00214{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m49_c00214{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m65_c00214{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m20_c00214{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m1e_c00214{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m4a_c00214{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m9b_c00214{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m4f_c00214{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m2b_c00214{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m18_c00214{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m38_c00214{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mb_c00214{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.ma_c00214{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m55_c00214{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m35_c00214{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m6f_c00214{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m30_c00214{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m5e_c00214{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m32_c00214{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m8a_c00214{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.mb8_c00214{transform:matrix(0.563131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563131,0.000000,0.000000,0.250000,0,0);}
.m43_c00214{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m42_c00214{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m8_c00214{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.ma3_c00214{transform:matrix(0.572115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572115,0.000000,0.000000,0.250000,0,0);}
.m4d_c00214{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m82_c00214{transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);}
.m3d_c00214{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m67_c00214{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m17_c00214{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m10_c00214{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m12_c00214{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_c00214{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m61_c00214{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m7e_c00214{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m14_c00214{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m7_c00214{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m1_c00214{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.m7d_c00214{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m58_c00214{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m7f_c00214{transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);}
.m1c_c00214{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m70_c00214{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m50_c00214{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m8e_c00214{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m4_c00214{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);}
.m91_c00214{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m72_c00214{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.mb6_c00214{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.m85_c00214{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m4e_c00214{transform:matrix(0.657059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657059,0.000000,0.000000,0.250000,0,0);}
.m89_c00214{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m2f_c00214{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.ma1_c00214{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.m92_c00214{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mad_c00214{transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);}
.m6d_c00214{transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);}
.ma8_c00214{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.m8c_c00214{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mb4_c00214{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m96_c00214{transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694934,0.000000,0.000000,0.250000,0,0);}
.m80_c00214{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.mb1_c00214{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m77_c00214{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m86_c00214{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m71_c00214{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);}
.m2d_c00214{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m8b_c00214{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.maf_c00214{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.ma5_c00214{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.m84_c00214{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m1a_c00214{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m9f_c00214{transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);}
.m9_c00214{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mb2_c00214{transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);}
.m40_c00214{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mac_c00214{transform:matrix(0.777533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777533,0.000000,0.000000,0.250000,0,0);}
.m93_c00214{transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);}
.m56_c00214{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m99_c00214{transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);}
.m90_c00214{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m94_c00214{transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);}
.maa_c00214{transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);}
.mb7_c00214{transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);}
.ma9_c00214{transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);}
.ma2_c00214{transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);}
.m9d_c00214{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.ma0_c00214{transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);}
.m95_c00214{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.mae_c00214{transform:matrix(2.758850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.758850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.758850,0.000000,0.000000,0.250000,0,0);}
.v0_c00214{vertical-align:0.000000px;}
.v1_c00214{vertical-align:6.000000px;}
.ls1_c00214{letter-spacing:0.000000px;}
.ls0_c00214{letter-spacing:77.552280px;}
.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;}
}
.ws6_c00214{word-spacing:-85.506360px;}
.ws0_c00214{word-spacing:-4.876711px;}
.wsd_c00214{word-spacing:0.000000px;}
.ws1_c00214{word-spacing:4.267548px;}
.wsa_c00214{word-spacing:18.238860px;}
.ws7_c00214{word-spacing:43.656106px;}
.wsb_c00214{word-spacing:46.279409px;}
.wsc_c00214{word-spacing:47.433805px;}
.ws4_c00214{word-spacing:49.588868px;}
.ws3_c00214{word-spacing:49.718291px;}
.ws9_c00214{word-spacing:66.174430px;}
.ws8_c00214{word-spacing:69.598200px;}
.ws5_c00214{word-spacing:81.053421px;}
.ws2_c00214{word-spacing:94.191666px;}
._1_c00214{margin-left:-77.552280px;}
._2_c00214{width:59.698012px;}
._0_c00214{width:65.021292px;}
.fc0_c00214{color:transparent;}
.fs7_c00214{font-size:3.420000px;}
.fs9_c00214{font-size:6.780000px;}
.fs8_c00214{font-size:11.880000px;}
.fs6_c00214{font-size:13.620000px;}
.fs3_c00214{font-size:18.720000px;}
.fs1_c00214{font-size:20.400000px;}
.fs4_c00214{font-size:25.500000px;}
.fs2_c00214{font-size:28.920000px;}
.fs5_c00214{font-size:32.340000px;}
.fs0_c00214{font-size:35.700000px;}
.y0_c00214{bottom:0.000000px;}
.ya8_c00214{bottom:248.130000px;}
.ya9_c00214{bottom:249.195000px;}
.yaa_c00214{bottom:250.695000px;}
.ya5_c00214{bottom:262.695000px;}
.ya6_c00214{bottom:263.775000px;}
.ya4_c00214{bottom:264.195000px;}
.ya7_c00214{bottom:264.420000px;}
.y9e_c00214{bottom:276.195000px;}
.ya3_c00214{bottom:276.630000px;}
.ya1_c00214{bottom:277.275000px;}
.y9f_c00214{bottom:277.695000px;}
.ya2_c00214{bottom:277.920000px;}
.ya0_c00214{bottom:281.775000px;}
.y9b_c00214{bottom:290.130000px;}
.y9a_c00214{bottom:290.775000px;}
.y99_c00214{bottom:291.195000px;}
.y9c_c00214{bottom:291.630000px;}
.y9d_c00214{bottom:292.920000px;}
.y96_c00214{bottom:303.630000px;}
.y95_c00214{bottom:304.275000px;}
.y97_c00214{bottom:305.355000px;}
.y94_c00214{bottom:306.195000px;}
.y98_c00214{bottom:306.420000px;}
.y92_c00214{bottom:318.630000px;}
.y91_c00214{bottom:319.695000px;}
.y93_c00214{bottom:319.920000px;}
.y8f_c00214{bottom:333.195000px;}
.y90_c00214{bottom:334.920000px;}
.y8b_c00214{bottom:346.050000px;}
.y8c_c00214{bottom:346.695000px;}
.y8e_c00214{bottom:346.920000px;}
.y8d_c00214{bottom:347.130000px;}
.y88_c00214{bottom:360.195000px;}
.y89_c00214{bottom:361.695000px;}
.y8a_c00214{bottom:361.920000px;}
.y84_c00214{bottom:373.050000px;}
.y86_c00214{bottom:373.695000px;}
.y85_c00214{bottom:375.195000px;}
.y87_c00214{bottom:375.420000px;}
.y81_c00214{bottom:387.630000px;}
.y82_c00214{bottom:388.695000px;}
.y83_c00214{bottom:388.920000px;}
.y7e_c00214{bottom:401.130000px;}
.y7d_c00214{bottom:402.195000px;}
.y80_c00214{bottom:402.420000px;}
.y7f_c00214{bottom:402.630000px;}
.y78_c00214{bottom:414.630000px;}
.y7a_c00214{bottom:415.695000px;}
.y7b_c00214{bottom:416.130000px;}
.y79_c00214{bottom:416.775000px;}
.y7c_c00214{bottom:417.420000px;}
.y75_c00214{bottom:429.630000px;}
.y76_c00214{bottom:430.695000px;}
.y77_c00214{bottom:430.920000px;}
.y71_c00214{bottom:441.630000px;}
.y72_c00214{bottom:443.130000px;}
.y73_c00214{bottom:444.195000px;}
.y74_c00214{bottom:444.420000px;}
.y70_c00214{bottom:457.695000px;}
.y6d_c00214{bottom:469.050000px;}
.y6e_c00214{bottom:471.195000px;}
.y6f_c00214{bottom:471.420000px;}
.y6c_c00214{bottom:483.630000px;}
.y6a_c00214{bottom:484.695000px;}
.y6b_c00214{bottom:486.420000px;}
.y68_c00214{bottom:498.195000px;}
.y67_c00214{bottom:499.695000px;}
.y69_c00214{bottom:499.920000px;}
.y66_c00214{bottom:513.195000px;}
.y65_c00214{bottom:525.630000px;}
.y64_c00214{bottom:526.695000px;}
.y63_c00214{bottom:539.130000px;}
.y62_c00214{bottom:540.195000px;}
.y60_c00214{bottom:552.630000px;}
.y61_c00214{bottom:553.695000px;}
.y5f_c00214{bottom:554.130000px;}
.y5e_c00214{bottom:567.630000px;}
.y5d_c00214{bottom:568.695000px;}
.y5c_c00214{bottom:581.130000px;}
.y5b_c00214{bottom:582.195000px;}
.y59_c00214{bottom:594.630000px;}
.y58_c00214{bottom:595.050000px;}
.y57_c00214{bottom:595.695000px;}
.y5a_c00214{bottom:596.130000px;}
.y56_c00214{bottom:609.630000px;}
.y55_c00214{bottom:610.695000px;}
.y54_c00214{bottom:623.130000px;}
.y53_c00214{bottom:624.195000px;}
.y52_c00214{bottom:636.630000px;}
.y51_c00214{bottom:637.695000px;}
.y4e_c00214{bottom:650.130000px;}
.y4d_c00214{bottom:650.550000px;}
.y4f_c00214{bottom:651.195000px;}
.y4c_c00214{bottom:651.630000px;}
.y50_c00214{bottom:652.695000px;}
.y49_c00214{bottom:664.695000px;}
.y4a_c00214{bottom:665.130000px;}
.y4b_c00214{bottom:666.195000px;}
.y47_c00214{bottom:683.130000px;}
.y48_c00214{bottom:684.195000px;}
.y46_c00214{bottom:697.695000px;}
.y43_c00214{bottom:715.470000px;}
.y44_c00214{bottom:716.325000px;}
.y42_c00214{bottom:717.405000px;}
.y45_c00214{bottom:718.470000px;}
.y41_c00214{bottom:719.550000px;}
.y3f_c00214{bottom:733.050000px;}
.y40_c00214{bottom:733.470000px;}
.y3e_c00214{bottom:755.550000px;}
.y3d_c00214{bottom:758.550000px;}
.y3c_c00214{bottom:781.905000px;}
.y3b_c00214{bottom:784.905000px;}
.y3a_c00214{bottom:802.245000px;}
.y39_c00214{bottom:803.130000px;}
.y38_c00214{bottom:803.970000px;}
.y37_c00214{bottom:804.405000px;}
.y35_c00214{bottom:820.905000px;}
.y34_c00214{bottom:821.745000px;}
.y36_c00214{bottom:823.905000px;}
.y30_c00214{bottom:841.245000px;}
.y32_c00214{bottom:842.130000px;}
.y33_c00214{bottom:842.970000px;}
.y31_c00214{bottom:843.405000px;}
.y2c_c00214{bottom:860.745000px;}
.y2f_c00214{bottom:861.405000px;}
.y2a_c00214{bottom:861.630000px;}
.y2e_c00214{bottom:862.245000px;}
.y2b_c00214{bottom:862.905000px;}
.y2d_c00214{bottom:864.405000px;}
.y26_c00214{bottom:880.245000px;}
.y28_c00214{bottom:880.470000px;}
.y25_c00214{bottom:882.405000px;}
.y27_c00214{bottom:883.470000px;}
.y29_c00214{bottom:883.905000px;}
.y21_c00214{bottom:899.745000px;}
.y24_c00214{bottom:901.245000px;}
.y20_c00214{bottom:901.905000px;}
.y22_c00214{bottom:902.970000px;}
.y23_c00214{bottom:903.405000px;}
.y1c_c00214{bottom:920.745000px;}
.y1e_c00214{bottom:921.630000px;}
.y1f_c00214{bottom:922.470000px;}
.y1d_c00214{bottom:922.905000px;}
.y1a_c00214{bottom:940.245000px;}
.y1b_c00214{bottom:941.325000px;}
.y19_c00214{bottom:942.405000px;}
.y18_c00214{bottom:959.745000px;}
.y16_c00214{bottom:961.905000px;}
.y17_c00214{bottom:962.130000px;}
.y15_c00214{bottom:979.245000px;}
.y14_c00214{bottom:980.325000px;}
.y11_c00214{bottom:981.405000px;}
.y12_c00214{bottom:981.630000px;}
.y13_c00214{bottom:982.470000px;}
.y10_c00214{bottom:998.745000px;}
.yf_c00214{bottom:1000.905000px;}
.ye_c00214{bottom:1018.245000px;}
.yd_c00214{bottom:1019.325000px;}
.yb_c00214{bottom:1020.405000px;}
.ya_c00214{bottom:1020.630000px;}
.yc_c00214{bottom:1021.470000px;}
.y9_c00214{bottom:1036.905000px;}
.y7_c00214{bottom:1039.245000px;}
.y6_c00214{bottom:1041.405000px;}
.y8_c00214{bottom:1042.470000px;}
.y3_c00214{bottom:1058.745000px;}
.y5_c00214{bottom:1059.630000px;}
.y4_c00214{bottom:1060.905000px;}
.y1_c00214{bottom:1097.745000px;}
.y2_c00214{bottom:1099.050000px;}
.h9_c00214{height:4.206533px;}
.hb_c00214{height:8.339268px;}
.ha_c00214{height:14.612168px;}
.h7_c00214{height:16.752334px;}
.h8_c00214{height:22.752334px;}
.h4_c00214{height:23.025234px;}
.h2_c00214{height:25.091602px;}
.h5_c00214{height:31.364502px;}
.h3_c00214{height:35.571035px;}
.h6_c00214{height:39.777568px;}
.h1_c00214{height:43.910303px;}
.h0_c00214{height:1335.000000px;}
.w0_c00214{width:880.500000px;}
.x0_c00214{left:0.000000px;}
.x12_c00214{left:151.500000px;}
.x3_c00214{left:153.000000px;}
.x13_c00214{left:166.920000px;}
.x59_c00214{left:169.080000px;}
.x85_c00214{left:171.000000px;}
.x4a_c00214{left:182.580000px;}
.x38_c00214{left:193.500000px;}
.x7e_c00214{left:200.580000px;}
.x7b_c00214{left:202.500000px;}
.x21_c00214{left:205.080000px;}
.x53_c00214{left:211.080000px;}
.x4b_c00214{left:216.000000px;}
.x39_c00214{left:221.580000px;}
.x2e_c00214{left:228.420000px;}
.x6f_c00214{left:231.000000px;}
.x4_c00214{left:232.080000px;}
.x14_c00214{left:234.000000px;}
.x41_c00214{left:237.000000px;}
.x54_c00214{left:240.420000px;}
.x6a_c00214{left:244.920000px;}
.x70_c00214{left:247.500000px;}
.x22_c00214{left:255.000000px;}
.x4c_c00214{left:258.420000px;}
.x7c_c00214{left:259.500000px;}
.x42_c00214{left:262.080000px;}
.x7f_c00214{left:263.580000px;}
.x65_c00214{left:268.080000px;}
.x5_c00214{left:274.500000px;}
.x2f_c00214{left:280.920000px;}
.x6b_c00214{left:283.500000px;}
.x4d_c00214{left:285.000000px;}
.x8d_c00214{left:286.500000px;}
.x86_c00214{left:288.000000px;}
.x5a_c00214{left:289.275000px;}
.x15_c00214{left:291.000000px;}
.x6_c00214{left:294.420000px;}
.x80_c00214{left:295.500000px;}
.x23_c00214{left:297.420000px;}
.x9b_c00214{left:301.920000px;}
.x6c_c00214{left:303.420000px;}
.x8a_c00214{left:307.080000px;}
.x55_c00214{left:309.000000px;}
.x99_c00214{left:310.500000px;}
.x30_c00214{left:312.000000px;}
.x3a_c00214{left:313.920000px;}
.x5b_c00214{left:316.080000px;}
.x7_c00214{left:319.080000px;}
.x16_c00214{left:325.500000px;}
.x7d_c00214{left:328.500000px;}
.xa1_c00214{left:329.580000px;}
.x43_c00214{left:331.500000px;}
.x56_c00214{left:334.500000px;}
.x9e_c00214{left:339.000000px;}
.x3b_c00214{left:342.000000px;}
.x5c_c00214{left:345.000000px;}
.x31_c00214{left:346.500000px;}
.x71_c00214{left:348.645000px;}
.x9f_c00214{left:351.000000px;}
.x4e_c00214{left:352.500000px;}
.x92_c00214{left:354.000000px;}
.x94_c00214{left:355.500000px;}
.x97_c00214{left:357.000000px;}
.x8_c00214{left:358.920000px;}
.x24_c00214{left:360.000000px;}
.xa5_c00214{left:361.500000px;}
.x17_c00214{left:367.500000px;}
.xa3_c00214{left:369.000000px;}
.x5d_c00214{left:372.000000px;}
.x87_c00214{left:373.500000px;}
.xa0_c00214{left:378.000000px;}
.x66_c00214{left:379.920000px;}
.x8b_c00214{left:382.080000px;}
.x25_c00214{left:384.000000px;}
.x5e_c00214{left:388.500000px;}
.x9d_c00214{left:391.500000px;}
.x72_c00214{left:393.000000px;}
.x9_c00214{left:395.580000px;}
.xa7_c00214{left:397.920000px;}
.x2_c00214{left:399.000000px;}
.x57_c00214{left:402.420000px;}
.x5f_c00214{left:405.000000px;}
.x88_c00214{left:408.000000px;}
.x4f_c00214{left:412.920000px;}
.xa_c00214{left:414.420000px;}
.x32_c00214{left:417.420000px;}
.x44_c00214{left:421.080000px;}
.x3c_c00214{left:427.500000px;}
.x18_c00214{left:436.080000px;}
.x81_c00214{left:437.580000px;}
.xb_c00214{left:439.500000px;}
.x45_c00214{left:441.000000px;}
.x26_c00214{left:445.080000px;}
.x33_c00214{left:447.420000px;}
.x60_c00214{left:453.000000px;}
.x19_c00214{left:454.500000px;}
.x3d_c00214{left:457.500000px;}
.x90_c00214{left:459.000000px;}
.x8e_c00214{left:462.000000px;}
.x95_c00214{left:463.920000px;}
.x9c_c00214{left:465.000000px;}
.x96_c00214{left:468.000000px;}
.xa4_c00214{left:469.500000px;}
.xc_c00214{left:472.080000px;}
.x73_c00214{left:475.080000px;}
.x50_c00214{left:478.080000px;}
.x1a_c00214{left:481.920000px;}
.x58_c00214{left:483.000000px;}
.x27_c00214{left:487.080000px;}
.xd_c00214{left:490.920000px;}
.x74_c00214{left:495.420000px;}
.x6d_c00214{left:496.920000px;}
.x51_c00214{left:498.420000px;}
.x89_c00214{left:499.920000px;}
.x34_c00214{left:504.000000px;}
.x28_c00214{left:507.420000px;}
.x46_c00214{left:510.000000px;}
.xe_c00214{left:516.420000px;}
.x91_c00214{left:522.000000px;}
.x75_c00214{left:523.500000px;}
.x52_c00214{left:525.000000px;}
.x1b_c00214{left:526.500000px;}
.x61_c00214{left:529.500000px;}
.x9a_c00214{left:531.000000px;}
.xa2_c00214{left:532.500000px;}
.x3e_c00214{left:534.000000px;}
.x8c_c00214{left:535.500000px;}
.xf_c00214{left:541.920000px;}
.x3f_c00214{left:552.420000px;}
.x82_c00214{left:555.420000px;}
.x35_c00214{left:559.500000px;}
.x47_c00214{left:567.000000px;}
.x10_c00214{left:568.500000px;}
.x29_c00214{left:577.500000px;}
.x1c_c00214{left:578.580000px;}
.x93_c00214{left:580.500000px;}
.x98_c00214{left:582.000000px;}
.x62_c00214{left:583.500000px;}
.x8f_c00214{left:585.000000px;}
.x76_c00214{left:586.920000px;}
.xa6_c00214{left:591.000000px;}
.x67_c00214{left:593.580000px;}
.x1d_c00214{left:597.000000px;}
.x63_c00214{left:604.920000px;}
.x77_c00214{left:613.500000px;}
.x2a_c00214{left:616.080000px;}
.x40_c00214{left:622.080000px;}
.x1e_c00214{left:624.000000px;}
.x6e_c00214{left:627.420000px;}
.x2b_c00214{left:649.500000px;}
.x36_c00214{left:654.420000px;}
.x11_c00214{left:657.000000px;}
.x78_c00214{left:658.080000px;}
.x48_c00214{left:661.920000px;}
.x1f_c00214{left:663.000000px;}
.x83_c00214{left:666.000000px;}
.x64_c00214{left:670.080000px;}
.x79_c00214{left:678.420000px;}
.x68_c00214{left:681.000000px;}
.x49_c00214{left:691.920000px;}
.x84_c00214{left:693.420000px;}
.x20_c00214{left:697.500000px;}
.x2c_c00214{left:700.500000px;}
.x7a_c00214{left:705.000000px;}
.x1_c00214{left:706.275000px;}
.x37_c00214{left:708.420000px;}
.x69_c00214{left:720.000000px;}
.x2d_c00214{left:721.500000px;}
@media print{
.v0_c00214{vertical-align:0.000000pt;}
.v1_c00214{vertical-align:5.333333pt;}
.ls1_c00214{letter-spacing:0.000000pt;}
.ls0_c00214{letter-spacing:68.935360pt;}
.ws6_c00214{word-spacing:-76.005653pt;}
.ws0_c00214{word-spacing:-4.334854pt;}
.wsd_c00214{word-spacing:0.000000pt;}
.ws1_c00214{word-spacing:3.793376pt;}
.wsa_c00214{word-spacing:16.212320pt;}
.ws7_c00214{word-spacing:38.805427pt;}
.wsb_c00214{word-spacing:41.137253pt;}
.wsc_c00214{word-spacing:42.163382pt;}
.ws4_c00214{word-spacing:44.078994pt;}
.ws3_c00214{word-spacing:44.194037pt;}
.ws9_c00214{word-spacing:58.821715pt;}
.ws8_c00214{word-spacing:61.865067pt;}
.ws5_c00214{word-spacing:72.047485pt;}
.ws2_c00214{word-spacing:83.725925pt;}
._1_c00214{margin-left:-68.935360pt;}
._2_c00214{width:53.064899pt;}
._0_c00214{width:57.796704pt;}
.fs7_c00214{font-size:3.040000pt;}
.fs9_c00214{font-size:6.026667pt;}
.fs8_c00214{font-size:10.560000pt;}
.fs6_c00214{font-size:12.106667pt;}
.fs3_c00214{font-size:16.640000pt;}
.fs1_c00214{font-size:18.133333pt;}
.fs4_c00214{font-size:22.666667pt;}
.fs2_c00214{font-size:25.706667pt;}
.fs5_c00214{font-size:28.746667pt;}
.fs0_c00214{font-size:31.733333pt;}
.y0_c00214{bottom:0.000000pt;}
.ya8_c00214{bottom:220.560000pt;}
.ya9_c00214{bottom:221.506667pt;}
.yaa_c00214{bottom:222.840000pt;}
.ya5_c00214{bottom:233.506667pt;}
.ya6_c00214{bottom:234.466667pt;}
.ya4_c00214{bottom:234.840000pt;}
.ya7_c00214{bottom:235.040000pt;}
.y9e_c00214{bottom:245.506667pt;}
.ya3_c00214{bottom:245.893333pt;}
.ya1_c00214{bottom:246.466667pt;}
.y9f_c00214{bottom:246.840000pt;}
.ya2_c00214{bottom:247.040000pt;}
.ya0_c00214{bottom:250.466667pt;}
.y9b_c00214{bottom:257.893333pt;}
.y9a_c00214{bottom:258.466667pt;}
.y99_c00214{bottom:258.840000pt;}
.y9c_c00214{bottom:259.226667pt;}
.y9d_c00214{bottom:260.373333pt;}
.y96_c00214{bottom:269.893333pt;}
.y95_c00214{bottom:270.466667pt;}
.y97_c00214{bottom:271.426667pt;}
.y94_c00214{bottom:272.173333pt;}
.y98_c00214{bottom:272.373333pt;}
.y92_c00214{bottom:283.226667pt;}
.y91_c00214{bottom:284.173333pt;}
.y93_c00214{bottom:284.373333pt;}
.y8f_c00214{bottom:296.173333pt;}
.y90_c00214{bottom:297.706667pt;}
.y8b_c00214{bottom:307.600000pt;}
.y8c_c00214{bottom:308.173333pt;}
.y8e_c00214{bottom:308.373333pt;}
.y8d_c00214{bottom:308.560000pt;}
.y88_c00214{bottom:320.173333pt;}
.y89_c00214{bottom:321.506667pt;}
.y8a_c00214{bottom:321.706667pt;}
.y84_c00214{bottom:331.600000pt;}
.y86_c00214{bottom:332.173333pt;}
.y85_c00214{bottom:333.506667pt;}
.y87_c00214{bottom:333.706667pt;}
.y81_c00214{bottom:344.560000pt;}
.y82_c00214{bottom:345.506667pt;}
.y83_c00214{bottom:345.706667pt;}
.y7e_c00214{bottom:356.560000pt;}
.y7d_c00214{bottom:357.506667pt;}
.y80_c00214{bottom:357.706667pt;}
.y7f_c00214{bottom:357.893333pt;}
.y78_c00214{bottom:368.560000pt;}
.y7a_c00214{bottom:369.506667pt;}
.y7b_c00214{bottom:369.893333pt;}
.y79_c00214{bottom:370.466667pt;}
.y7c_c00214{bottom:371.040000pt;}
.y75_c00214{bottom:381.893333pt;}
.y76_c00214{bottom:382.840000pt;}
.y77_c00214{bottom:383.040000pt;}
.y71_c00214{bottom:392.560000pt;}
.y72_c00214{bottom:393.893333pt;}
.y73_c00214{bottom:394.840000pt;}
.y74_c00214{bottom:395.040000pt;}
.y70_c00214{bottom:406.840000pt;}
.y6d_c00214{bottom:416.933333pt;}
.y6e_c00214{bottom:418.840000pt;}
.y6f_c00214{bottom:419.040000pt;}
.y6c_c00214{bottom:429.893333pt;}
.y6a_c00214{bottom:430.840000pt;}
.y6b_c00214{bottom:432.373333pt;}
.y68_c00214{bottom:442.840000pt;}
.y67_c00214{bottom:444.173333pt;}
.y69_c00214{bottom:444.373333pt;}
.y66_c00214{bottom:456.173333pt;}
.y65_c00214{bottom:467.226667pt;}
.y64_c00214{bottom:468.173333pt;}
.y63_c00214{bottom:479.226667pt;}
.y62_c00214{bottom:480.173333pt;}
.y60_c00214{bottom:491.226667pt;}
.y61_c00214{bottom:492.173333pt;}
.y5f_c00214{bottom:492.560000pt;}
.y5e_c00214{bottom:504.560000pt;}
.y5d_c00214{bottom:505.506667pt;}
.y5c_c00214{bottom:516.560000pt;}
.y5b_c00214{bottom:517.506667pt;}
.y59_c00214{bottom:528.560000pt;}
.y58_c00214{bottom:528.933333pt;}
.y57_c00214{bottom:529.506667pt;}
.y5a_c00214{bottom:529.893333pt;}
.y56_c00214{bottom:541.893333pt;}
.y55_c00214{bottom:542.840000pt;}
.y54_c00214{bottom:553.893333pt;}
.y53_c00214{bottom:554.840000pt;}
.y52_c00214{bottom:565.893333pt;}
.y51_c00214{bottom:566.840000pt;}
.y4e_c00214{bottom:577.893333pt;}
.y4d_c00214{bottom:578.266667pt;}
.y4f_c00214{bottom:578.840000pt;}
.y4c_c00214{bottom:579.226667pt;}
.y50_c00214{bottom:580.173333pt;}
.y49_c00214{bottom:590.840000pt;}
.y4a_c00214{bottom:591.226667pt;}
.y4b_c00214{bottom:592.173333pt;}
.y47_c00214{bottom:607.226667pt;}
.y48_c00214{bottom:608.173333pt;}
.y46_c00214{bottom:620.173333pt;}
.y43_c00214{bottom:635.973333pt;}
.y44_c00214{bottom:636.733333pt;}
.y42_c00214{bottom:637.693333pt;}
.y45_c00214{bottom:638.640000pt;}
.y41_c00214{bottom:639.600000pt;}
.y3f_c00214{bottom:651.600000pt;}
.y40_c00214{bottom:651.973333pt;}
.y3e_c00214{bottom:671.600000pt;}
.y3d_c00214{bottom:674.266667pt;}
.y3c_c00214{bottom:695.026667pt;}
.y3b_c00214{bottom:697.693333pt;}
.y3a_c00214{bottom:713.106667pt;}
.y39_c00214{bottom:713.893333pt;}
.y38_c00214{bottom:714.640000pt;}
.y37_c00214{bottom:715.026667pt;}
.y35_c00214{bottom:729.693333pt;}
.y34_c00214{bottom:730.440000pt;}
.y36_c00214{bottom:732.360000pt;}
.y30_c00214{bottom:747.773333pt;}
.y32_c00214{bottom:748.560000pt;}
.y33_c00214{bottom:749.306667pt;}
.y31_c00214{bottom:749.693333pt;}
.y2c_c00214{bottom:765.106667pt;}
.y2f_c00214{bottom:765.693333pt;}
.y2a_c00214{bottom:765.893333pt;}
.y2e_c00214{bottom:766.440000pt;}
.y2b_c00214{bottom:767.026667pt;}
.y2d_c00214{bottom:768.360000pt;}
.y26_c00214{bottom:782.440000pt;}
.y28_c00214{bottom:782.640000pt;}
.y25_c00214{bottom:784.360000pt;}
.y27_c00214{bottom:785.306667pt;}
.y29_c00214{bottom:785.693333pt;}
.y21_c00214{bottom:799.773333pt;}
.y24_c00214{bottom:801.106667pt;}
.y20_c00214{bottom:801.693333pt;}
.y22_c00214{bottom:802.640000pt;}
.y23_c00214{bottom:803.026667pt;}
.y1c_c00214{bottom:818.440000pt;}
.y1e_c00214{bottom:819.226667pt;}
.y1f_c00214{bottom:819.973333pt;}
.y1d_c00214{bottom:820.360000pt;}
.y1a_c00214{bottom:835.773333pt;}
.y1b_c00214{bottom:836.733333pt;}
.y19_c00214{bottom:837.693333pt;}
.y18_c00214{bottom:853.106667pt;}
.y16_c00214{bottom:855.026667pt;}
.y17_c00214{bottom:855.226667pt;}
.y15_c00214{bottom:870.440000pt;}
.y14_c00214{bottom:871.400000pt;}
.y11_c00214{bottom:872.360000pt;}
.y12_c00214{bottom:872.560000pt;}
.y13_c00214{bottom:873.306667pt;}
.y10_c00214{bottom:887.773333pt;}
.yf_c00214{bottom:889.693333pt;}
.ye_c00214{bottom:905.106667pt;}
.yd_c00214{bottom:906.066667pt;}
.yb_c00214{bottom:907.026667pt;}
.ya_c00214{bottom:907.226667pt;}
.yc_c00214{bottom:907.973333pt;}
.y9_c00214{bottom:921.693333pt;}
.y7_c00214{bottom:923.773333pt;}
.y6_c00214{bottom:925.693333pt;}
.y8_c00214{bottom:926.640000pt;}
.y3_c00214{bottom:941.106667pt;}
.y5_c00214{bottom:941.893333pt;}
.y4_c00214{bottom:943.026667pt;}
.y1_c00214{bottom:975.773333pt;}
.y2_c00214{bottom:976.933333pt;}
.h9_c00214{height:3.739141pt;}
.hb_c00214{height:7.412682pt;}
.ha_c00214{height:12.988594pt;}
.h7_c00214{height:14.890964pt;}
.h8_c00214{height:20.224297pt;}
.h4_c00214{height:20.466875pt;}
.h2_c00214{height:22.303646pt;}
.h5_c00214{height:27.879557pt;}
.h3_c00214{height:31.618698pt;}
.h6_c00214{height:35.357839pt;}
.h1_c00214{height:39.031380pt;}
.h0_c00214{height:1186.666667pt;}
.w0_c00214{width:782.666667pt;}
.x0_c00214{left:0.000000pt;}
.x12_c00214{left:134.666667pt;}
.x3_c00214{left:136.000000pt;}
.x13_c00214{left:148.373333pt;}
.x59_c00214{left:150.293333pt;}
.x85_c00214{left:152.000000pt;}
.x4a_c00214{left:162.293333pt;}
.x38_c00214{left:172.000000pt;}
.x7e_c00214{left:178.293333pt;}
.x7b_c00214{left:180.000000pt;}
.x21_c00214{left:182.293333pt;}
.x53_c00214{left:187.626667pt;}
.x4b_c00214{left:192.000000pt;}
.x39_c00214{left:196.960000pt;}
.x2e_c00214{left:203.040000pt;}
.x6f_c00214{left:205.333333pt;}
.x4_c00214{left:206.293333pt;}
.x14_c00214{left:208.000000pt;}
.x41_c00214{left:210.666667pt;}
.x54_c00214{left:213.706667pt;}
.x6a_c00214{left:217.706667pt;}
.x70_c00214{left:220.000000pt;}
.x22_c00214{left:226.666667pt;}
.x4c_c00214{left:229.706667pt;}
.x7c_c00214{left:230.666667pt;}
.x42_c00214{left:232.960000pt;}
.x7f_c00214{left:234.293333pt;}
.x65_c00214{left:238.293333pt;}
.x5_c00214{left:244.000000pt;}
.x2f_c00214{left:249.706667pt;}
.x6b_c00214{left:252.000000pt;}
.x4d_c00214{left:253.333333pt;}
.x8d_c00214{left:254.666667pt;}
.x86_c00214{left:256.000000pt;}
.x5a_c00214{left:257.133333pt;}
.x15_c00214{left:258.666667pt;}
.x6_c00214{left:261.706667pt;}
.x80_c00214{left:262.666667pt;}
.x23_c00214{left:264.373333pt;}
.x9b_c00214{left:268.373333pt;}
.x6c_c00214{left:269.706667pt;}
.x8a_c00214{left:272.960000pt;}
.x55_c00214{left:274.666667pt;}
.x99_c00214{left:276.000000pt;}
.x30_c00214{left:277.333333pt;}
.x3a_c00214{left:279.040000pt;}
.x5b_c00214{left:280.960000pt;}
.x7_c00214{left:283.626667pt;}
.x16_c00214{left:289.333333pt;}
.x7d_c00214{left:292.000000pt;}
.xa1_c00214{left:292.960000pt;}
.x43_c00214{left:294.666667pt;}
.x56_c00214{left:297.333333pt;}
.x9e_c00214{left:301.333333pt;}
.x3b_c00214{left:304.000000pt;}
.x5c_c00214{left:306.666667pt;}
.x31_c00214{left:308.000000pt;}
.x71_c00214{left:309.906667pt;}
.x9f_c00214{left:312.000000pt;}
.x4e_c00214{left:313.333333pt;}
.x92_c00214{left:314.666667pt;}
.x94_c00214{left:316.000000pt;}
.x97_c00214{left:317.333333pt;}
.x8_c00214{left:319.040000pt;}
.x24_c00214{left:320.000000pt;}
.xa5_c00214{left:321.333333pt;}
.x17_c00214{left:326.666667pt;}
.xa3_c00214{left:328.000000pt;}
.x5d_c00214{left:330.666667pt;}
.x87_c00214{left:332.000000pt;}
.xa0_c00214{left:336.000000pt;}
.x66_c00214{left:337.706667pt;}
.x8b_c00214{left:339.626667pt;}
.x25_c00214{left:341.333333pt;}
.x5e_c00214{left:345.333333pt;}
.x9d_c00214{left:348.000000pt;}
.x72_c00214{left:349.333333pt;}
.x9_c00214{left:351.626667pt;}
.xa7_c00214{left:353.706667pt;}
.x2_c00214{left:354.666667pt;}
.x57_c00214{left:357.706667pt;}
.x5f_c00214{left:360.000000pt;}
.x88_c00214{left:362.666667pt;}
.x4f_c00214{left:367.040000pt;}
.xa_c00214{left:368.373333pt;}
.x32_c00214{left:371.040000pt;}
.x44_c00214{left:374.293333pt;}
.x3c_c00214{left:380.000000pt;}
.x18_c00214{left:387.626667pt;}
.x81_c00214{left:388.960000pt;}
.xb_c00214{left:390.666667pt;}
.x45_c00214{left:392.000000pt;}
.x26_c00214{left:395.626667pt;}
.x33_c00214{left:397.706667pt;}
.x60_c00214{left:402.666667pt;}
.x19_c00214{left:404.000000pt;}
.x3d_c00214{left:406.666667pt;}
.x90_c00214{left:408.000000pt;}
.x8e_c00214{left:410.666667pt;}
.x95_c00214{left:412.373333pt;}
.x9c_c00214{left:413.333333pt;}
.x96_c00214{left:416.000000pt;}
.xa4_c00214{left:417.333333pt;}
.xc_c00214{left:419.626667pt;}
.x73_c00214{left:422.293333pt;}
.x50_c00214{left:424.960000pt;}
.x1a_c00214{left:428.373333pt;}
.x58_c00214{left:429.333333pt;}
.x27_c00214{left:432.960000pt;}
.xd_c00214{left:436.373333pt;}
.x74_c00214{left:440.373333pt;}
.x6d_c00214{left:441.706667pt;}
.x51_c00214{left:443.040000pt;}
.x89_c00214{left:444.373333pt;}
.x34_c00214{left:448.000000pt;}
.x28_c00214{left:451.040000pt;}
.x46_c00214{left:453.333333pt;}
.xe_c00214{left:459.040000pt;}
.x91_c00214{left:464.000000pt;}
.x75_c00214{left:465.333333pt;}
.x52_c00214{left:466.666667pt;}
.x1b_c00214{left:468.000000pt;}
.x61_c00214{left:470.666667pt;}
.x9a_c00214{left:472.000000pt;}
.xa2_c00214{left:473.333333pt;}
.x3e_c00214{left:474.666667pt;}
.x8c_c00214{left:476.000000pt;}
.xf_c00214{left:481.706667pt;}
.x3f_c00214{left:491.040000pt;}
.x82_c00214{left:493.706667pt;}
.x35_c00214{left:497.333333pt;}
.x47_c00214{left:504.000000pt;}
.x10_c00214{left:505.333333pt;}
.x29_c00214{left:513.333333pt;}
.x1c_c00214{left:514.293333pt;}
.x93_c00214{left:516.000000pt;}
.x98_c00214{left:517.333333pt;}
.x62_c00214{left:518.666667pt;}
.x8f_c00214{left:520.000000pt;}
.x76_c00214{left:521.706667pt;}
.xa6_c00214{left:525.333333pt;}
.x67_c00214{left:527.626667pt;}
.x1d_c00214{left:530.666667pt;}
.x63_c00214{left:537.706667pt;}
.x77_c00214{left:545.333333pt;}
.x2a_c00214{left:547.626667pt;}
.x40_c00214{left:552.960000pt;}
.x1e_c00214{left:554.666667pt;}
.x6e_c00214{left:557.706667pt;}
.x2b_c00214{left:577.333333pt;}
.x36_c00214{left:581.706667pt;}
.x11_c00214{left:584.000000pt;}
.x78_c00214{left:584.960000pt;}
.x48_c00214{left:588.373333pt;}
.x1f_c00214{left:589.333333pt;}
.x83_c00214{left:592.000000pt;}
.x64_c00214{left:595.626667pt;}
.x79_c00214{left:603.040000pt;}
.x68_c00214{left:605.333333pt;}
.x49_c00214{left:615.040000pt;}
.x84_c00214{left:616.373333pt;}
.x20_c00214{left:620.000000pt;}
.x2c_c00214{left:622.666667pt;}
.x7a_c00214{left:626.666667pt;}
.x1_c00214{left:627.800000pt;}
.x37_c00214{left:629.706667pt;}
.x69_c00214{left:640.000000pt;}
.x2d_c00214{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d9648cef169fc4558e3d0461.woff2')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mbc_c00215{transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);}
.m9d_c00215{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m32_c00215{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m8f_c00215{transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);}
.md2_c00215{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_c00215{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m9f_c00215{transform:matrix(0.365966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365966,0.000000,0.000000,0.250000,0,0);}
.mba_c00215{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m5_c00215{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m4f_c00215{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.me6_c00215{transform:matrix(0.373950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373950,0.000000,0.000000,0.250000,0,0);}
.m3a_c00215{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mb9_c00215{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.maa_c00215{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m99_c00215{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m3e_c00215{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.md7_c00215{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.mcd_c00215{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.ma9_c00215{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.mc1_c00215{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m9e_c00215{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m85_c00215{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m38_c00215{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m3c_c00215{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m2e_c00215{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m70_c00215{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);}
.m48_c00215{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mb3_c00215{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m28_c00215{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m69_c00215{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m1c_c00215{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m1f_c00215{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mca_c00215{transform:matrix(0.411043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411043,0.000000,0.000000,0.250000,0,0);}
.md0_c00215{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m7d_c00215{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.ma2_c00215{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m43_c00215{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.md1_c00215{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m5c_c00215{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m31_c00215{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m42_c00215{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.ma3_c00215{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m1e_c00215{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m1d_c00215{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mdd_c00215{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.maf_c00215{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m35_c00215{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.md_c00215{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m2a_c00215{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m4b_c00215{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m67_c00215{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m3f_c00215{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m4a_c00215{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.mcf_c00215{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m88_c00215{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m8d_c00215{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m55_c00215{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m45_c00215{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mc3_c00215{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m1a_c00215{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.md9_c00215{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.mc0_c00215{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mb_c00215{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.mcc_c00215{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mc9_c00215{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.mab_c00215{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.mc5_c00215{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m8a_c00215{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m6f_c00215{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m58_c00215{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m6d_c00215{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m53_c00215{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m47_c00215{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.mbd_c00215{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.mc2_c00215{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m2d_c00215{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m8b_c00215{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.ma7_c00215{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m23_c00215{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.mbe_c00215{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.m8e_c00215{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m64_c00215{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.m50_c00215{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.m4e_c00215{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m52_c00215{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m78_c00215{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m84_c00215{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m7f_c00215{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m0_c00215{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m8_c00215{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.mb5_c00215{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m12_c00215{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.md8_c00215{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.m62_c00215{transform:matrix(0.457563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457563,0.000000,0.000000,0.250000,0,0);}
.m79_c00215{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m66_c00215{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mad_c00215{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.m26_c00215{transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);}
.mdf_c00215{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m39_c00215{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.mb4_c00215{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.me4_c00215{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.md5_c00215{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m97_c00215{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.m34_c00215{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m51_c00215{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m56_c00215{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m6b_c00215{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mbf_c00215{transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);}
.mdb_c00215{transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);}
.m29_c00215{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.ma5_c00215{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m63_c00215{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.me1_c00215{transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);}
.mc7_c00215{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.mc4_c00215{transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);}
.m9_c00215{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m6_c00215{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);}
.me5_c00215{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m76_c00215{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m24_c00215{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.me0_c00215{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.mb2_c00215{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m2_c00215{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m40_c00215{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m14_c00215{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m87_c00215{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m7a_c00215{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m68_c00215{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mac_c00215{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m1b_c00215{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m86_c00215{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m21_c00215{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m5f_c00215{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m7e_c00215{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m89_c00215{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m93_c00215{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.mae_c00215{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m7_c00215{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m37_c00215{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m5e_c00215{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m10_c00215{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m4_c00215{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m94_c00215{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m36_c00215{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m3b_c00215{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m72_c00215{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m9c_c00215{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m19_c00215{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m44_c00215{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m9a_c00215{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mc_c00215{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.mb1_c00215{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m22_c00215{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m73_c00215{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.md6_c00215{transform:matrix(0.550420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550420,0.000000,0.000000,0.250000,0,0);}
.mce_c00215{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.ma1_c00215{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m15_c00215{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m59_c00215{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m5b_c00215{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m18_c00215{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m20_c00215{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.ma0_c00215{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mb8_c00215{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mf_c00215{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m4d_c00215{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.mdc_c00215{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);}
.mcb_c00215{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m17_c00215{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m3_c00215{transform:matrix(0.561203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561203,0.000000,0.000000,0.250000,0,0);}
.m13_c00215{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.ma6_c00215{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mda_c00215{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m9b_c00215{transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);}
.m2b_c00215{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m33_c00215{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.me_c00215{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m41_c00215{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m16_c00215{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.md3_c00215{transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);}
.m61_c00215{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m82_c00215{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m81_c00215{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.ma8_c00215{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m5d_c00215{transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);}
.m54_c00215{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m74_c00215{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m98_c00215{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m75_c00215{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.mb0_c00215{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m11_c00215{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.ma4_c00215{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.md4_c00215{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m77_c00215{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m30_c00215{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m1_c00215{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.m3d_c00215{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m96_c00215{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m6a_c00215{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.m57_c00215{transform:matrix(0.628205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628205,0.000000,0.000000,0.250000,0,0);}
.mde_c00215{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.me3_c00215{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m7b_c00215{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m7c_c00215{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.mc6_c00215{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m6e_c00215{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m65_c00215{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m6c_c00215{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m83_c00215{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m2f_c00215{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.m60_c00215{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m90_c00215{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m46_c00215{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m2c_c00215{transform:matrix(0.728824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728824,0.000000,0.000000,0.250000,0,0);}
.mc8_c00215{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.ma_c00215{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m4c_c00215{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m27_c00215{transform:matrix(0.758013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758013,0.000000,0.000000,0.250000,0,0);}
.m71_c00215{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m49_c00215{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m91_c00215{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m25_c00215{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.m5a_c00215{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m92_c00215{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m8c_c00215{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.me2_c00215{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m80_c00215{transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);}
.mb6_c00215{transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);}
.mb7_c00215{transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);}
.m95_c00215{transform:matrix(6.522124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.522124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.522124,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:-5.593222px;}
.ws1_c00215{word-spacing:-4.373143px;}
.ws2_c00215{word-spacing:-2.749552px;}
.ws4_c00215{word-spacing:0.000000px;}
.ws3_c00215{word-spacing:59.151033px;}
.fc0_c00215{color:transparent;}
.fs7_c00215{font-size:3.420000px;}
.fs6_c00215{font-size:6.780000px;}
.fs3_c00215{font-size:18.720000px;}
.fs1_c00215{font-size:20.400000px;}
.fs4_c00215{font-size:25.500000px;}
.fs0_c00215{font-size:28.920000px;}
.fs5_c00215{font-size:32.340000px;}
.fs2_c00215{font-size:35.700000px;}
.fs8_c00215{font-size:39.120000px;}
.y0_c00215{bottom:0.000000px;}
.yd3_c00215{bottom:249.405000px;}
.yd2_c00215{bottom:251.745000px;}
.yd0_c00215{bottom:252.405000px;}
.yd1_c00215{bottom:253.905000px;}
.ycc_c00215{bottom:268.905000px;}
.yca_c00215{bottom:269.745000px;}
.ycf_c00215{bottom:271.245000px;}
.yc9_c00215{bottom:271.905000px;}
.yce_c00215{bottom:272.130000px;}
.ycd_c00215{bottom:272.970000px;}
.ycb_c00215{bottom:273.405000px;}
.yc8_c00215{bottom:289.920000px;}
.yc6_c00215{bottom:290.325000px;}
.yc5_c00215{bottom:291.405000px;}
.yc7_c00215{bottom:292.905000px;}
.yc3_c00215{bottom:307.905000px;}
.yc2_c00215{bottom:309.825000px;}
.yc4_c00215{bottom:310.050000px;}
.yc1_c00215{bottom:311.970000px;}
.yc0_c00215{bottom:312.405000px;}
.ybb_c00215{bottom:328.245000px;}
.ybe_c00215{bottom:328.905000px;}
.ybc_c00215{bottom:329.745000px;}
.yb9_c00215{bottom:330.405000px;}
.ybd_c00215{bottom:331.470000px;}
.yba_c00215{bottom:331.905000px;}
.ybf_c00215{bottom:332.130000px;}
.yb2_c00215{bottom:347.325000px;}
.yb7_c00215{bottom:347.745000px;}
.yb3_c00215{bottom:349.905000px;}
.yb5_c00215{bottom:350.325000px;}
.yb8_c00215{bottom:350.970000px;}
.yb4_c00215{bottom:351.405000px;}
.yb6_c00215{bottom:352.470000px;}
.yaa_c00215{bottom:367.245000px;}
.yab_c00215{bottom:367.470000px;}
.yb1_c00215{bottom:367.905000px;}
.yad_c00215{bottom:368.745000px;}
.yae_c00215{bottom:368.970000px;}
.yb0_c00215{bottom:369.630000px;}
.yaf_c00215{bottom:369.825000px;}
.yac_c00215{bottom:370.905000px;}
.ya9_c00215{bottom:387.405000px;}
.ya7_c00215{bottom:388.245000px;}
.ya6_c00215{bottom:390.405000px;}
.ya8_c00215{bottom:390.630000px;}
.ya5_c00215{bottom:406.905000px;}
.ya4_c00215{bottom:407.745000px;}
.ya0_c00215{bottom:408.180000px;}
.ya3_c00215{bottom:409.245000px;}
.ya1_c00215{bottom:410.970000px;}
.ya2_c00215{bottom:411.405000px;}
.y9c_c00215{bottom:427.245000px;}
.y9a_c00215{bottom:428.325000px;}
.y9f_c00215{bottom:428.745000px;}
.y9d_c00215{bottom:429.405000px;}
.y9e_c00215{bottom:430.470000px;}
.y9b_c00215{bottom:430.905000px;}
.y94_c00215{bottom:445.905000px;}
.y95_c00215{bottom:448.245000px;}
.y98_c00215{bottom:449.130000px;}
.y96_c00215{bottom:449.325000px;}
.y97_c00215{bottom:450.405000px;}
.y99_c00215{bottom:450.630000px;}
.y92_c00215{bottom:465.405000px;}
.y93_c00215{bottom:466.905000px;}
.y90_c00215{bottom:467.355000px;}
.y8d_c00215{bottom:467.745000px;}
.y8f_c00215{bottom:468.630000px;}
.y91_c00215{bottom:468.825000px;}
.y8e_c00215{bottom:469.470000px;}
.y8c_c00215{bottom:469.905000px;}
.y83_c00215{bottom:486.405000px;}
.y8a_c00215{bottom:486.855000px;}
.y84_c00215{bottom:487.245000px;}
.y8b_c00215{bottom:487.470000px;}
.y89_c00215{bottom:487.920000px;}
.y87_c00215{bottom:488.970000px;}
.y86_c00215{bottom:489.405000px;}
.y88_c00215{bottom:489.630000px;}
.y85_c00215{bottom:490.470000px;}
.y82_c00215{bottom:505.905000px;}
.y80_c00215{bottom:506.745000px;}
.y81_c00215{bottom:508.905000px;}
.y7e_c00215{bottom:509.130000px;}
.y7f_c00215{bottom:509.970000px;}
.y78_c00215{bottom:525.405000px;}
.y7b_c00215{bottom:526.245000px;}
.y79_c00215{bottom:527.745000px;}
.y7a_c00215{bottom:528.405000px;}
.y7c_c00215{bottom:528.630000px;}
.y7d_c00215{bottom:529.905000px;}
.y75_c00215{bottom:544.905000px;}
.y77_c00215{bottom:545.970000px;}
.y72_c00215{bottom:547.245000px;}
.y71_c00215{bottom:547.905000px;}
.y76_c00215{bottom:548.130000px;}
.y73_c00215{bottom:548.325000px;}
.y74_c00215{bottom:549.405000px;}
.y70_c00215{bottom:565.470000px;}
.y6e_c00215{bottom:566.745000px;}
.y6f_c00215{bottom:568.470000px;}
.y6d_c00215{bottom:568.905000px;}
.y68_c00215{bottom:584.745000px;}
.y6b_c00215{bottom:584.970000px;}
.y67_c00215{bottom:586.050000px;}
.y69_c00215{bottom:586.245000px;}
.y6c_c00215{bottom:587.130000px;}
.y6a_c00215{bottom:588.405000px;}
.y63_c00215{bottom:604.905000px;}
.y65_c00215{bottom:605.355000px;}
.y60_c00215{bottom:605.745000px;}
.y61_c00215{bottom:606.630000px;}
.y64_c00215{bottom:607.470000px;}
.y62_c00215{bottom:607.905000px;}
.y66_c00215{bottom:608.130000px;}
.y5e_c00215{bottom:625.245000px;}
.y5d_c00215{bottom:627.405000px;}
.y5f_c00215{bottom:627.630000px;}
.y5b_c00215{bottom:643.905000px;}
.y5c_c00215{bottom:644.745000px;}
.y5a_c00215{bottom:646.245000px;}
.y57_c00215{bottom:663.405000px;}
.y52_c00215{bottom:664.245000px;}
.y59_c00215{bottom:664.905000px;}
.y55_c00215{bottom:665.745000px;}
.y54_c00215{bottom:666.405000px;}
.y53_c00215{bottom:666.630000px;}
.y58_c00215{bottom:667.470000px;}
.y56_c00215{bottom:667.905000px;}
.y4e_c00215{bottom:683.745000px;}
.y4f_c00215{bottom:685.245000px;}
.y4d_c00215{bottom:685.905000px;}
.y4c_c00215{bottom:686.130000px;}
.y51_c00215{bottom:686.970000px;}
.y50_c00215{bottom:687.405000px;}
.y48_c00215{bottom:713.745000px;}
.y49_c00215{bottom:715.470000px;}
.y4a_c00215{bottom:715.905000px;}
.y4b_c00215{bottom:717.405000px;}
.y43_c00215{bottom:751.905000px;}
.y47_c00215{bottom:754.245000px;}
.y45_c00215{bottom:754.905000px;}
.y42_c00215{bottom:755.130000px;}
.y44_c00215{bottom:755.970000px;}
.y46_c00215{bottom:756.405000px;}
.y3e_c00215{bottom:772.245000px;}
.y40_c00215{bottom:773.325000px;}
.y41_c00215{bottom:773.745000px;}
.y3b_c00215{bottom:774.405000px;}
.y3c_c00215{bottom:774.630000px;}
.y3d_c00215{bottom:775.470000px;}
.y3f_c00215{bottom:775.905000px;}
.y36_c00215{bottom:792.825000px;}
.y38_c00215{bottom:793.245000px;}
.y3a_c00215{bottom:794.130000px;}
.y37_c00215{bottom:794.970000px;}
.y39_c00215{bottom:795.405000px;}
.y34_c00215{bottom:810.405000px;}
.y33_c00215{bottom:812.325000px;}
.y31_c00215{bottom:812.745000px;}
.y35_c00215{bottom:814.470000px;}
.y32_c00215{bottom:814.905000px;}
.y2c_c00215{bottom:829.905000px;}
.y30_c00215{bottom:832.245000px;}
.y2d_c00215{bottom:833.130000px;}
.y2e_c00215{bottom:834.405000px;}
.y2f_c00215{bottom:835.470000px;}
.y28_c00215{bottom:851.745000px;}
.y2a_c00215{bottom:853.905000px;}
.y2b_c00215{bottom:854.130000px;}
.y29_c00215{bottom:854.970000px;}
.y23_c00215{bottom:871.245000px;}
.y25_c00215{bottom:872.325000px;}
.y24_c00215{bottom:873.405000px;}
.y27_c00215{bottom:873.630000px;}
.y26_c00215{bottom:874.470000px;}
.y20_c00215{bottom:890.745000px;}
.y22_c00215{bottom:891.825000px;}
.y21_c00215{bottom:892.905000px;}
.y1f_c00215{bottom:893.130000px;}
.y1c_c00215{bottom:910.245000px;}
.y1a_c00215{bottom:910.470000px;}
.y1d_c00215{bottom:911.745000px;}
.y1b_c00215{bottom:912.405000px;}
.y1e_c00215{bottom:913.905000px;}
.y16_c00215{bottom:930.825000px;}
.y17_c00215{bottom:931.245000px;}
.y15_c00215{bottom:931.905000px;}
.y19_c00215{bottom:932.325000px;}
.y18_c00215{bottom:933.405000px;}
.y13_c00215{bottom:950.745000px;}
.y12_c00215{bottom:952.905000px;}
.y14_c00215{bottom:953.970000px;}
.yf_c00215{bottom:970.245000px;}
.y11_c00215{bottom:971.130000px;}
.y10_c00215{bottom:972.405000px;}
.yd_c00215{bottom:989.745000px;}
.ye_c00215{bottom:991.905000px;}
.ya_c00215{bottom:1009.245000px;}
.yb_c00215{bottom:1010.325000px;}
.y8_c00215{bottom:1011.405000px;}
.y9_c00215{bottom:1012.470000px;}
.yc_c00215{bottom:1012.905000px;}
.y5_c00215{bottom:1028.745000px;}
.y6_c00215{bottom:1029.630000px;}
.y4_c00215{bottom:1030.905000px;}
.y7_c00215{bottom:1031.970000px;}
.y3_c00215{bottom:1060.905000px;}
.y2_c00215{bottom:1099.050000px;}
.y1_c00215{bottom:1099.905000px;}
.h8_c00215{height:4.206533px;}
.h7_c00215{height:8.339268px;}
.h4_c00215{height:23.025234px;}
.h2_c00215{height:25.091602px;}
.h5_c00215{height:31.364502px;}
.h1_c00215{height:35.571035px;}
.h6_c00215{height:39.777568px;}
.h3_c00215{height:43.910303px;}
.h9_c00215{height:48.116836px;}
.h0_c00215{height:1335.000000px;}
.w0_c00215{width:880.500000px;}
.x0_c00215{left:0.000000px;}
.xd5_c00215{left:150.000000px;}
.x1c_c00215{left:151.500000px;}
.x1_c00215{left:153.420000px;}
.xde_c00215{left:157.080000px;}
.xa7_c00215{left:158.580000px;}
.x4_c00215{left:168.000000px;}
.x60_c00215{left:175.920000px;}
.x32_c00215{left:180.420000px;}
.xdf_c00215{left:181.500000px;}
.x58_c00215{left:183.000000px;}
.xe4_c00215{left:187.080000px;}
.x4d_c00215{left:189.000000px;}
.x6b_c00215{left:193.500000px;}
.xf_c00215{left:196.080000px;}
.x3f_c00215{left:198.000000px;}
.xc3_c00215{left:199.920000px;}
.x5_c00215{left:201.000000px;}
.x61_c00215{left:202.500000px;}
.x1d_c00215{left:208.920000px;}
.xc8_c00215{left:210.000000px;}
.x26_c00215{left:211.500000px;}
.x81_c00215{left:214.500000px;}
.x7a_c00215{left:220.500000px;}
.x9e_c00215{left:222.000000px;}
.x75_c00215{left:223.500000px;}
.xa8_c00215{left:225.000000px;}
.x59_c00215{left:226.500000px;}
.x93_c00215{left:227.580000px;}
.x33_c00215{left:229.080000px;}
.x6c_c00215{left:230.580000px;}
.x40_c00215{left:234.000000px;}
.x4e_c00215{left:235.080000px;}
.xc9_c00215{left:237.000000px;}
.x1e_c00215{left:238.500000px;}
.xe5_c00215{left:239.580000px;}
.x82_c00215{left:241.500000px;}
.x9f_c00215{left:243.420000px;}
.xfd_c00215{left:244.500000px;}
.x62_c00215{left:245.580000px;}
.x34_c00215{left:249.420000px;}
.x6d_c00215{left:250.500000px;}
.xb5_c00215{left:252.000000px;}
.x6_c00215{left:254.580000px;}
.xf8_c00215{left:256.920000px;}
.xe0_c00215{left:261.000000px;}
.xd6_c00215{left:262.500000px;}
.x63_c00215{left:264.420000px;}
.xef_c00215{left:265.500000px;}
.xae_c00215{left:268.500000px;}
.x10_c00215{left:269.580000px;}
.x41_c00215{left:271.080000px;}
.x7_c00215{left:273.420000px;}
.xdd_c00215{left:276.000000px;}
.x35_c00215{left:277.500000px;}
.xaf_c00215{left:280.500000px;}
.xc4_c00215{left:284.580000px;}
.x94_c00215{left:286.080000px;}
.xb6_c00215{left:288.420000px;}
.x27_c00215{left:289.500000px;}
.x4f_c00215{left:291.000000px;}
.x98_c00215{left:292.080000px;}
.x42_c00215{left:294.420000px;}
.xe6_c00215{left:298.500000px;}
.x8_c00215{left:301.920000px;}
.x1f_c00215{left:306.000000px;}
.x11_c00215{left:307.500000px;}
.x50_c00215{left:308.580000px;}
.x83_c00215{left:310.920000px;}
.x36_c00215{left:313.920000px;}
.xf9_c00215{left:316.920000px;}
.x6e_c00215{left:319.500000px;}
.x43_c00215{left:322.500000px;}
.x28_c00215{left:325.080000px;}
.x96_c00215{left:327.645000px;}
.xca_c00215{left:331.500000px;}
.x12_c00215{left:333.420000px;}
.xba_c00215{left:334.500000px;}
.xd7_c00215{left:336.000000px;}
.x6f_c00215{left:339.420000px;}
.x3_c00215{left:341.145000px;}
.x84_c00215{left:342.420000px;}
.xcb_c00215{left:345.420000px;}
.x64_c00215{left:346.500000px;}
.x5a_c00215{left:348.000000px;}
.x29_c00215{left:349.920000px;}
.x37_c00215{left:351.000000px;}
.x9_c00215{left:352.500000px;}
.x99_c00215{left:354.000000px;}
.xf0_c00215{left:355.080000px;}
.x44_c00215{left:358.500000px;}
.x20_c00215{left:359.580000px;}
.x13_c00215{left:363.420000px;}
.xd2_c00215{left:366.420000px;}
.xf3_c00215{left:367.920000px;}
.xbc_c00215{left:369.420000px;}
.xcd_c00215{left:370.920000px;}
.xd8_c00215{left:372.000000px;}
.xe7_c00215{left:373.500000px;}
.xfa_c00215{left:376.920000px;}
.x2a_c00215{left:378.000000px;}
.x21_c00215{left:379.920000px;}
.xa9_c00215{left:381.000000px;}
.x51_c00215{left:382.500000px;}
.x8c_c00215{left:383.580000px;}
.xa0_c00215{left:388.080000px;}
.x9a_c00215{left:390.420000px;}
.x65_c00215{left:393.000000px;}
.x85_c00215{left:396.000000px;}
.x95_c00215{left:397.920000px;}
.xc5_c00215{left:399.000000px;}
.x2_c00215{left:400.500000px;}
.xcc_c00215{left:402.000000px;}
.xd9_c00215{left:403.500000px;}
.x45_c00215{left:404.580000px;}
.x14_c00215{left:406.500000px;}
.x22_c00215{left:408.000000px;}
.x70_c00215{left:409.080000px;}
.xbb_c00215{left:412.920000px;}
.x8d_c00215{left:414.000000px;}
.xfb_c00215{left:416.580000px;}
.xe8_c00215{left:418.500000px;}
.x5b_c00215{left:426.000000px;}
.x86_c00215{left:427.500000px;}
.xce_c00215{left:429.000000px;}
.xa_c00215{left:432.420000px;}
.x7b_c00215{left:433.500000px;}
.x38_c00215{left:434.580000px;}
.xb7_c00215{left:436.500000px;}
.x46_c00215{left:439.920000px;}
.x8e_c00215{left:441.000000px;}
.x15_c00215{left:442.500000px;}
.xa5_c00215{left:445.080000px;}
.xcf_c00215{left:447.000000px;}
.xd3_c00215{left:451.500000px;}
.x7c_c00215{left:452.580000px;}
.x39_c00215{left:454.920000px;}
.x66_c00215{left:456.000000px;}
.x71_c00215{left:458.580000px;}
.xe9_c00215{left:459.855000px;}
.xb_c00215{left:462.420000px;}
.x9b_c00215{left:463.500000px;}
.xea_c00215{left:465.000000px;}
.xda_c00215{left:466.500000px;}
.x5c_c00215{left:469.500000px;}
.x52_c00215{left:471.000000px;}
.xaa_c00215{left:472.500000px;}
.x47_c00215{left:474.000000px;}
.x97_c00215{left:480.000000px;}
.x2b_c00215{left:481.920000px;}
.x3a_c00215{left:483.420000px;}
.xb0_c00215{left:486.420000px;}
.xdb_c00215{left:487.920000px;}
.x16_c00215{left:490.920000px;}
.x7d_c00215{left:493.920000px;}
.x87_c00215{left:496.080000px;}
.xec_c00215{left:499.080000px;}
.xab_c00215{left:504.000000px;}
.x53_c00215{left:508.920000px;}
.x2c_c00215{left:510.000000px;}
.x67_c00215{left:511.080000px;}
.x23_c00215{left:516.000000px;}
.x8f_c00215{left:517.500000px;}
.x17_c00215{left:518.580000px;}
.xeb_c00215{left:522.420000px;}
.x3b_c00215{left:523.500000px;}
.x48_c00215{left:526.500000px;}
.x76_c00215{left:535.080000px;}
.xbd_c00215{left:538.500000px;}
.x68_c00215{left:541.500000px;}
.xd0_c00215{left:543.000000px;}
.xb1_c00215{left:544.920000px;}
.x54_c00215{left:546.000000px;}
.xac_c00215{left:547.500000px;}
.xf4_c00215{left:549.420000px;}
.x72_c00215{left:550.920000px;}
.xc_c00215{left:553.080000px;}
.xa1_c00215{left:554.580000px;}
.xbe_c00215{left:556.500000px;}
.x5d_c00215{left:558.420000px;}
.xd4_c00215{left:559.500000px;}
.x2d_c00215{left:561.000000px;}
.xdc_c00215{left:562.500000px;}
.xe1_c00215{left:564.000000px;}
.x7e_c00215{left:565.500000px;}
.x18_c00215{left:567.000000px;}
.xad_c00215{left:570.420000px;}
.x77_c00215{left:571.920000px;}
.xa2_c00215{left:573.000000px;}
.xd_c00215{left:576.420000px;}
.xc6_c00215{left:577.920000px;}
.xf1_c00215{left:579.000000px;}
.x88_c00215{left:580.920000px;}
.x55_c00215{left:586.500000px;}
.xf5_c00215{left:589.500000px;}
.xa3_c00215{left:590.580000px;}
.x90_c00215{left:595.080000px;}
.xe2_c00215{left:598.500000px;}
.x49_c00215{left:600.420000px;}
.x19_c00215{left:601.500000px;}
.xb2_c00215{left:603.000000px;}
.xb8_c00215{left:604.920000px;}
.x7f_c00215{left:606.420000px;}
.x24_c00215{left:607.500000px;}
.x69_c00215{left:609.000000px;}
.x3c_c00215{left:611.580000px;}
.x2e_c00215{left:613.500000px;}
.x91_c00215{left:615.000000px;}
.xbf_c00215{left:619.080000px;}
.x5e_c00215{left:622.500000px;}
.xa4_c00215{left:624.000000px;}
.x1a_c00215{left:625.920000px;}
.x73_c00215{left:630.000000px;}
.x3d_c00215{left:634.920000px;}
.xd1_c00215{left:636.000000px;}
.xc7_c00215{left:637.500000px;}
.x2f_c00215{left:639.420000px;}
.x92_c00215{left:642.000000px;}
.xb3_c00215{left:643.500000px;}
.x4a_c00215{left:644.580000px;}
.x56_c00215{left:646.500000px;}
.xc0_c00215{left:649.500000px;}
.x89_c00215{left:651.420000px;}
.xf2_c00215{left:652.500000px;}
.xfc_c00215{left:653.580000px;}
.xf6_c00215{left:656.580000px;}
.x78_c00215{left:658.920000px;}
.x5f_c00215{left:661.500000px;}
.xed_c00215{left:663.420000px;}
.x9c_c00215{left:666.420000px;}
.x4b_c00215{left:667.920000px;}
.x30_c00215{left:669.420000px;}
.xe3_c00215{left:670.500000px;}
.xe_c00215{left:673.920000px;}
.x1b_c00215{left:677.580000px;}
.x74_c00215{left:679.920000px;}
.xc1_c00215{left:682.500000px;}
.xb9_c00215{left:683.580000px;}
.x6a_c00215{left:685.080000px;}
.xfe_c00215{left:686.580000px;}
.xa6_c00215{left:688.080000px;}
.x8a_c00215{left:689.580000px;}
.x25_c00215{left:691.080000px;}
.x4c_c00215{left:696.420000px;}
.x57_c00215{left:699.420000px;}
.xee_c00215{left:700.920000px;}
.x31_c00215{left:702.420000px;}
.x3e_c00215{left:704.580000px;}
.x9d_c00215{left:706.500000px;}
.x8b_c00215{left:708.420000px;}
.x79_c00215{left:712.500000px;}
.x80_c00215{left:717.000000px;}
.xc2_c00215{left:718.080000px;}
.xf7_c00215{left:719.580000px;}
.xb4_c00215{left:721.500000px;}
@media print{
.v0_c00215{vertical-align:0.000000pt;}
.ls0_c00215{letter-spacing:0.000000pt;}
.ws0_c00215{word-spacing:-4.971753pt;}
.ws1_c00215{word-spacing:-3.887238pt;}
.ws2_c00215{word-spacing:-2.444046pt;}
.ws4_c00215{word-spacing:0.000000pt;}
.ws3_c00215{word-spacing:52.578696pt;}
.fs7_c00215{font-size:3.040000pt;}
.fs6_c00215{font-size:6.026667pt;}
.fs3_c00215{font-size:16.640000pt;}
.fs1_c00215{font-size:18.133333pt;}
.fs4_c00215{font-size:22.666667pt;}
.fs0_c00215{font-size:25.706667pt;}
.fs5_c00215{font-size:28.746667pt;}
.fs2_c00215{font-size:31.733333pt;}
.fs8_c00215{font-size:34.773333pt;}
.y0_c00215{bottom:0.000000pt;}
.yd3_c00215{bottom:221.693333pt;}
.yd2_c00215{bottom:223.773333pt;}
.yd0_c00215{bottom:224.360000pt;}
.yd1_c00215{bottom:225.693333pt;}
.ycc_c00215{bottom:239.026667pt;}
.yca_c00215{bottom:239.773333pt;}
.ycf_c00215{bottom:241.106667pt;}
.yc9_c00215{bottom:241.693333pt;}
.yce_c00215{bottom:241.893333pt;}
.ycd_c00215{bottom:242.640000pt;}
.ycb_c00215{bottom:243.026667pt;}
.yc8_c00215{bottom:257.706667pt;}
.yc6_c00215{bottom:258.066667pt;}
.yc5_c00215{bottom:259.026667pt;}
.yc7_c00215{bottom:260.360000pt;}
.yc3_c00215{bottom:273.693333pt;}
.yc2_c00215{bottom:275.400000pt;}
.yc4_c00215{bottom:275.600000pt;}
.yc1_c00215{bottom:277.306667pt;}
.yc0_c00215{bottom:277.693333pt;}
.ybb_c00215{bottom:291.773333pt;}
.ybe_c00215{bottom:292.360000pt;}
.ybc_c00215{bottom:293.106667pt;}
.yb9_c00215{bottom:293.693333pt;}
.ybd_c00215{bottom:294.640000pt;}
.yba_c00215{bottom:295.026667pt;}
.ybf_c00215{bottom:295.226667pt;}
.yb2_c00215{bottom:308.733333pt;}
.yb7_c00215{bottom:309.106667pt;}
.yb3_c00215{bottom:311.026667pt;}
.yb5_c00215{bottom:311.400000pt;}
.yb8_c00215{bottom:311.973333pt;}
.yb4_c00215{bottom:312.360000pt;}
.yb6_c00215{bottom:313.306667pt;}
.yaa_c00215{bottom:326.440000pt;}
.yab_c00215{bottom:326.640000pt;}
.yb1_c00215{bottom:327.026667pt;}
.yad_c00215{bottom:327.773333pt;}
.yae_c00215{bottom:327.973333pt;}
.yb0_c00215{bottom:328.560000pt;}
.yaf_c00215{bottom:328.733333pt;}
.yac_c00215{bottom:329.693333pt;}
.ya9_c00215{bottom:344.360000pt;}
.ya7_c00215{bottom:345.106667pt;}
.ya6_c00215{bottom:347.026667pt;}
.ya8_c00215{bottom:347.226667pt;}
.ya5_c00215{bottom:361.693333pt;}
.ya4_c00215{bottom:362.440000pt;}
.ya0_c00215{bottom:362.826667pt;}
.ya3_c00215{bottom:363.773333pt;}
.ya1_c00215{bottom:365.306667pt;}
.ya2_c00215{bottom:365.693333pt;}
.y9c_c00215{bottom:379.773333pt;}
.y9a_c00215{bottom:380.733333pt;}
.y9f_c00215{bottom:381.106667pt;}
.y9d_c00215{bottom:381.693333pt;}
.y9e_c00215{bottom:382.640000pt;}
.y9b_c00215{bottom:383.026667pt;}
.y94_c00215{bottom:396.360000pt;}
.y95_c00215{bottom:398.440000pt;}
.y98_c00215{bottom:399.226667pt;}
.y96_c00215{bottom:399.400000pt;}
.y97_c00215{bottom:400.360000pt;}
.y99_c00215{bottom:400.560000pt;}
.y92_c00215{bottom:413.693333pt;}
.y93_c00215{bottom:415.026667pt;}
.y90_c00215{bottom:415.426667pt;}
.y8d_c00215{bottom:415.773333pt;}
.y8f_c00215{bottom:416.560000pt;}
.y91_c00215{bottom:416.733333pt;}
.y8e_c00215{bottom:417.306667pt;}
.y8c_c00215{bottom:417.693333pt;}
.y83_c00215{bottom:432.360000pt;}
.y8a_c00215{bottom:432.760000pt;}
.y84_c00215{bottom:433.106667pt;}
.y8b_c00215{bottom:433.306667pt;}
.y89_c00215{bottom:433.706667pt;}
.y87_c00215{bottom:434.640000pt;}
.y86_c00215{bottom:435.026667pt;}
.y88_c00215{bottom:435.226667pt;}
.y85_c00215{bottom:435.973333pt;}
.y82_c00215{bottom:449.693333pt;}
.y80_c00215{bottom:450.440000pt;}
.y81_c00215{bottom:452.360000pt;}
.y7e_c00215{bottom:452.560000pt;}
.y7f_c00215{bottom:453.306667pt;}
.y78_c00215{bottom:467.026667pt;}
.y7b_c00215{bottom:467.773333pt;}
.y79_c00215{bottom:469.106667pt;}
.y7a_c00215{bottom:469.693333pt;}
.y7c_c00215{bottom:469.893333pt;}
.y7d_c00215{bottom:471.026667pt;}
.y75_c00215{bottom:484.360000pt;}
.y77_c00215{bottom:485.306667pt;}
.y72_c00215{bottom:486.440000pt;}
.y71_c00215{bottom:487.026667pt;}
.y76_c00215{bottom:487.226667pt;}
.y73_c00215{bottom:487.400000pt;}
.y74_c00215{bottom:488.360000pt;}
.y70_c00215{bottom:502.640000pt;}
.y6e_c00215{bottom:503.773333pt;}
.y6f_c00215{bottom:505.306667pt;}
.y6d_c00215{bottom:505.693333pt;}
.y68_c00215{bottom:519.773333pt;}
.y6b_c00215{bottom:519.973333pt;}
.y67_c00215{bottom:520.933333pt;}
.y69_c00215{bottom:521.106667pt;}
.y6c_c00215{bottom:521.893333pt;}
.y6a_c00215{bottom:523.026667pt;}
.y63_c00215{bottom:537.693333pt;}
.y65_c00215{bottom:538.093333pt;}
.y60_c00215{bottom:538.440000pt;}
.y61_c00215{bottom:539.226667pt;}
.y64_c00215{bottom:539.973333pt;}
.y62_c00215{bottom:540.360000pt;}
.y66_c00215{bottom:540.560000pt;}
.y5e_c00215{bottom:555.773333pt;}
.y5d_c00215{bottom:557.693333pt;}
.y5f_c00215{bottom:557.893333pt;}
.y5b_c00215{bottom:572.360000pt;}
.y5c_c00215{bottom:573.106667pt;}
.y5a_c00215{bottom:574.440000pt;}
.y57_c00215{bottom:589.693333pt;}
.y52_c00215{bottom:590.440000pt;}
.y59_c00215{bottom:591.026667pt;}
.y55_c00215{bottom:591.773333pt;}
.y54_c00215{bottom:592.360000pt;}
.y53_c00215{bottom:592.560000pt;}
.y58_c00215{bottom:593.306667pt;}
.y56_c00215{bottom:593.693333pt;}
.y4e_c00215{bottom:607.773333pt;}
.y4f_c00215{bottom:609.106667pt;}
.y4d_c00215{bottom:609.693333pt;}
.y4c_c00215{bottom:609.893333pt;}
.y51_c00215{bottom:610.640000pt;}
.y50_c00215{bottom:611.026667pt;}
.y48_c00215{bottom:634.440000pt;}
.y49_c00215{bottom:635.973333pt;}
.y4a_c00215{bottom:636.360000pt;}
.y4b_c00215{bottom:637.693333pt;}
.y43_c00215{bottom:668.360000pt;}
.y47_c00215{bottom:670.440000pt;}
.y45_c00215{bottom:671.026667pt;}
.y42_c00215{bottom:671.226667pt;}
.y44_c00215{bottom:671.973333pt;}
.y46_c00215{bottom:672.360000pt;}
.y3e_c00215{bottom:686.440000pt;}
.y40_c00215{bottom:687.400000pt;}
.y41_c00215{bottom:687.773333pt;}
.y3b_c00215{bottom:688.360000pt;}
.y3c_c00215{bottom:688.560000pt;}
.y3d_c00215{bottom:689.306667pt;}
.y3f_c00215{bottom:689.693333pt;}
.y36_c00215{bottom:704.733333pt;}
.y38_c00215{bottom:705.106667pt;}
.y3a_c00215{bottom:705.893333pt;}
.y37_c00215{bottom:706.640000pt;}
.y39_c00215{bottom:707.026667pt;}
.y34_c00215{bottom:720.360000pt;}
.y33_c00215{bottom:722.066667pt;}
.y31_c00215{bottom:722.440000pt;}
.y35_c00215{bottom:723.973333pt;}
.y32_c00215{bottom:724.360000pt;}
.y2c_c00215{bottom:737.693333pt;}
.y30_c00215{bottom:739.773333pt;}
.y2d_c00215{bottom:740.560000pt;}
.y2e_c00215{bottom:741.693333pt;}
.y2f_c00215{bottom:742.640000pt;}
.y28_c00215{bottom:757.106667pt;}
.y2a_c00215{bottom:759.026667pt;}
.y2b_c00215{bottom:759.226667pt;}
.y29_c00215{bottom:759.973333pt;}
.y23_c00215{bottom:774.440000pt;}
.y25_c00215{bottom:775.400000pt;}
.y24_c00215{bottom:776.360000pt;}
.y27_c00215{bottom:776.560000pt;}
.y26_c00215{bottom:777.306667pt;}
.y20_c00215{bottom:791.773333pt;}
.y22_c00215{bottom:792.733333pt;}
.y21_c00215{bottom:793.693333pt;}
.y1f_c00215{bottom:793.893333pt;}
.y1c_c00215{bottom:809.106667pt;}
.y1a_c00215{bottom:809.306667pt;}
.y1d_c00215{bottom:810.440000pt;}
.y1b_c00215{bottom:811.026667pt;}
.y1e_c00215{bottom:812.360000pt;}
.y16_c00215{bottom:827.400000pt;}
.y17_c00215{bottom:827.773333pt;}
.y15_c00215{bottom:828.360000pt;}
.y19_c00215{bottom:828.733333pt;}
.y18_c00215{bottom:829.693333pt;}
.y13_c00215{bottom:845.106667pt;}
.y12_c00215{bottom:847.026667pt;}
.y14_c00215{bottom:847.973333pt;}
.yf_c00215{bottom:862.440000pt;}
.y11_c00215{bottom:863.226667pt;}
.y10_c00215{bottom:864.360000pt;}
.yd_c00215{bottom:879.773333pt;}
.ye_c00215{bottom:881.693333pt;}
.ya_c00215{bottom:897.106667pt;}
.yb_c00215{bottom:898.066667pt;}
.y8_c00215{bottom:899.026667pt;}
.y9_c00215{bottom:899.973333pt;}
.yc_c00215{bottom:900.360000pt;}
.y5_c00215{bottom:914.440000pt;}
.y6_c00215{bottom:915.226667pt;}
.y4_c00215{bottom:916.360000pt;}
.y7_c00215{bottom:917.306667pt;}
.y3_c00215{bottom:943.026667pt;}
.y2_c00215{bottom:976.933333pt;}
.y1_c00215{bottom:977.693333pt;}
.h8_c00215{height:3.739141pt;}
.h7_c00215{height:7.412682pt;}
.h4_c00215{height:20.466875pt;}
.h2_c00215{height:22.303646pt;}
.h5_c00215{height:27.879557pt;}
.h1_c00215{height:31.618698pt;}
.h6_c00215{height:35.357839pt;}
.h3_c00215{height:39.031380pt;}
.h9_c00215{height:42.770521pt;}
.h0_c00215{height:1186.666667pt;}
.w0_c00215{width:782.666667pt;}
.x0_c00215{left:0.000000pt;}
.xd5_c00215{left:133.333333pt;}
.x1c_c00215{left:134.666667pt;}
.x1_c00215{left:136.373333pt;}
.xde_c00215{left:139.626667pt;}
.xa7_c00215{left:140.960000pt;}
.x4_c00215{left:149.333333pt;}
.x60_c00215{left:156.373333pt;}
.x32_c00215{left:160.373333pt;}
.xdf_c00215{left:161.333333pt;}
.x58_c00215{left:162.666667pt;}
.xe4_c00215{left:166.293333pt;}
.x4d_c00215{left:168.000000pt;}
.x6b_c00215{left:172.000000pt;}
.xf_c00215{left:174.293333pt;}
.x3f_c00215{left:176.000000pt;}
.xc3_c00215{left:177.706667pt;}
.x5_c00215{left:178.666667pt;}
.x61_c00215{left:180.000000pt;}
.x1d_c00215{left:185.706667pt;}
.xc8_c00215{left:186.666667pt;}
.x26_c00215{left:188.000000pt;}
.x81_c00215{left:190.666667pt;}
.x7a_c00215{left:196.000000pt;}
.x9e_c00215{left:197.333333pt;}
.x75_c00215{left:198.666667pt;}
.xa8_c00215{left:200.000000pt;}
.x59_c00215{left:201.333333pt;}
.x93_c00215{left:202.293333pt;}
.x33_c00215{left:203.626667pt;}
.x6c_c00215{left:204.960000pt;}
.x40_c00215{left:208.000000pt;}
.x4e_c00215{left:208.960000pt;}
.xc9_c00215{left:210.666667pt;}
.x1e_c00215{left:212.000000pt;}
.xe5_c00215{left:212.960000pt;}
.x82_c00215{left:214.666667pt;}
.x9f_c00215{left:216.373333pt;}
.xfd_c00215{left:217.333333pt;}
.x62_c00215{left:218.293333pt;}
.x34_c00215{left:221.706667pt;}
.x6d_c00215{left:222.666667pt;}
.xb5_c00215{left:224.000000pt;}
.x6_c00215{left:226.293333pt;}
.xf8_c00215{left:228.373333pt;}
.xe0_c00215{left:232.000000pt;}
.xd6_c00215{left:233.333333pt;}
.x63_c00215{left:235.040000pt;}
.xef_c00215{left:236.000000pt;}
.xae_c00215{left:238.666667pt;}
.x10_c00215{left:239.626667pt;}
.x41_c00215{left:240.960000pt;}
.x7_c00215{left:243.040000pt;}
.xdd_c00215{left:245.333333pt;}
.x35_c00215{left:246.666667pt;}
.xaf_c00215{left:249.333333pt;}
.xc4_c00215{left:252.960000pt;}
.x94_c00215{left:254.293333pt;}
.xb6_c00215{left:256.373333pt;}
.x27_c00215{left:257.333333pt;}
.x4f_c00215{left:258.666667pt;}
.x98_c00215{left:259.626667pt;}
.x42_c00215{left:261.706667pt;}
.xe6_c00215{left:265.333333pt;}
.x8_c00215{left:268.373333pt;}
.x1f_c00215{left:272.000000pt;}
.x11_c00215{left:273.333333pt;}
.x50_c00215{left:274.293333pt;}
.x83_c00215{left:276.373333pt;}
.x36_c00215{left:279.040000pt;}
.xf9_c00215{left:281.706667pt;}
.x6e_c00215{left:284.000000pt;}
.x43_c00215{left:286.666667pt;}
.x28_c00215{left:288.960000pt;}
.x96_c00215{left:291.240000pt;}
.xca_c00215{left:294.666667pt;}
.x12_c00215{left:296.373333pt;}
.xba_c00215{left:297.333333pt;}
.xd7_c00215{left:298.666667pt;}
.x6f_c00215{left:301.706667pt;}
.x3_c00215{left:303.240000pt;}
.x84_c00215{left:304.373333pt;}
.xcb_c00215{left:307.040000pt;}
.x64_c00215{left:308.000000pt;}
.x5a_c00215{left:309.333333pt;}
.x29_c00215{left:311.040000pt;}
.x37_c00215{left:312.000000pt;}
.x9_c00215{left:313.333333pt;}
.x99_c00215{left:314.666667pt;}
.xf0_c00215{left:315.626667pt;}
.x44_c00215{left:318.666667pt;}
.x20_c00215{left:319.626667pt;}
.x13_c00215{left:323.040000pt;}
.xd2_c00215{left:325.706667pt;}
.xf3_c00215{left:327.040000pt;}
.xbc_c00215{left:328.373333pt;}
.xcd_c00215{left:329.706667pt;}
.xd8_c00215{left:330.666667pt;}
.xe7_c00215{left:332.000000pt;}
.xfa_c00215{left:335.040000pt;}
.x2a_c00215{left:336.000000pt;}
.x21_c00215{left:337.706667pt;}
.xa9_c00215{left:338.666667pt;}
.x51_c00215{left:340.000000pt;}
.x8c_c00215{left:340.960000pt;}
.xa0_c00215{left:344.960000pt;}
.x9a_c00215{left:347.040000pt;}
.x65_c00215{left:349.333333pt;}
.x85_c00215{left:352.000000pt;}
.x95_c00215{left:353.706667pt;}
.xc5_c00215{left:354.666667pt;}
.x2_c00215{left:356.000000pt;}
.xcc_c00215{left:357.333333pt;}
.xd9_c00215{left:358.666667pt;}
.x45_c00215{left:359.626667pt;}
.x14_c00215{left:361.333333pt;}
.x22_c00215{left:362.666667pt;}
.x70_c00215{left:363.626667pt;}
.xbb_c00215{left:367.040000pt;}
.x8d_c00215{left:368.000000pt;}
.xfb_c00215{left:370.293333pt;}
.xe8_c00215{left:372.000000pt;}
.x5b_c00215{left:378.666667pt;}
.x86_c00215{left:380.000000pt;}
.xce_c00215{left:381.333333pt;}
.xa_c00215{left:384.373333pt;}
.x7b_c00215{left:385.333333pt;}
.x38_c00215{left:386.293333pt;}
.xb7_c00215{left:388.000000pt;}
.x46_c00215{left:391.040000pt;}
.x8e_c00215{left:392.000000pt;}
.x15_c00215{left:393.333333pt;}
.xa5_c00215{left:395.626667pt;}
.xcf_c00215{left:397.333333pt;}
.xd3_c00215{left:401.333333pt;}
.x7c_c00215{left:402.293333pt;}
.x39_c00215{left:404.373333pt;}
.x66_c00215{left:405.333333pt;}
.x71_c00215{left:407.626667pt;}
.xe9_c00215{left:408.760000pt;}
.xb_c00215{left:411.040000pt;}
.x9b_c00215{left:412.000000pt;}
.xea_c00215{left:413.333333pt;}
.xda_c00215{left:414.666667pt;}
.x5c_c00215{left:417.333333pt;}
.x52_c00215{left:418.666667pt;}
.xaa_c00215{left:420.000000pt;}
.x47_c00215{left:421.333333pt;}
.x97_c00215{left:426.666667pt;}
.x2b_c00215{left:428.373333pt;}
.x3a_c00215{left:429.706667pt;}
.xb0_c00215{left:432.373333pt;}
.xdb_c00215{left:433.706667pt;}
.x16_c00215{left:436.373333pt;}
.x7d_c00215{left:439.040000pt;}
.x87_c00215{left:440.960000pt;}
.xec_c00215{left:443.626667pt;}
.xab_c00215{left:448.000000pt;}
.x53_c00215{left:452.373333pt;}
.x2c_c00215{left:453.333333pt;}
.x67_c00215{left:454.293333pt;}
.x23_c00215{left:458.666667pt;}
.x8f_c00215{left:460.000000pt;}
.x17_c00215{left:460.960000pt;}
.xeb_c00215{left:464.373333pt;}
.x3b_c00215{left:465.333333pt;}
.x48_c00215{left:468.000000pt;}
.x76_c00215{left:475.626667pt;}
.xbd_c00215{left:478.666667pt;}
.x68_c00215{left:481.333333pt;}
.xd0_c00215{left:482.666667pt;}
.xb1_c00215{left:484.373333pt;}
.x54_c00215{left:485.333333pt;}
.xac_c00215{left:486.666667pt;}
.xf4_c00215{left:488.373333pt;}
.x72_c00215{left:489.706667pt;}
.xc_c00215{left:491.626667pt;}
.xa1_c00215{left:492.960000pt;}
.xbe_c00215{left:494.666667pt;}
.x5d_c00215{left:496.373333pt;}
.xd4_c00215{left:497.333333pt;}
.x2d_c00215{left:498.666667pt;}
.xdc_c00215{left:500.000000pt;}
.xe1_c00215{left:501.333333pt;}
.x7e_c00215{left:502.666667pt;}
.x18_c00215{left:504.000000pt;}
.xad_c00215{left:507.040000pt;}
.x77_c00215{left:508.373333pt;}
.xa2_c00215{left:509.333333pt;}
.xd_c00215{left:512.373333pt;}
.xc6_c00215{left:513.706667pt;}
.xf1_c00215{left:514.666667pt;}
.x88_c00215{left:516.373333pt;}
.x55_c00215{left:521.333333pt;}
.xf5_c00215{left:524.000000pt;}
.xa3_c00215{left:524.960000pt;}
.x90_c00215{left:528.960000pt;}
.xe2_c00215{left:532.000000pt;}
.x49_c00215{left:533.706667pt;}
.x19_c00215{left:534.666667pt;}
.xb2_c00215{left:536.000000pt;}
.xb8_c00215{left:537.706667pt;}
.x7f_c00215{left:539.040000pt;}
.x24_c00215{left:540.000000pt;}
.x69_c00215{left:541.333333pt;}
.x3c_c00215{left:543.626667pt;}
.x2e_c00215{left:545.333333pt;}
.x91_c00215{left:546.666667pt;}
.xbf_c00215{left:550.293333pt;}
.x5e_c00215{left:553.333333pt;}
.xa4_c00215{left:554.666667pt;}
.x1a_c00215{left:556.373333pt;}
.x73_c00215{left:560.000000pt;}
.x3d_c00215{left:564.373333pt;}
.xd1_c00215{left:565.333333pt;}
.xc7_c00215{left:566.666667pt;}
.x2f_c00215{left:568.373333pt;}
.x92_c00215{left:570.666667pt;}
.xb3_c00215{left:572.000000pt;}
.x4a_c00215{left:572.960000pt;}
.x56_c00215{left:574.666667pt;}
.xc0_c00215{left:577.333333pt;}
.x89_c00215{left:579.040000pt;}
.xf2_c00215{left:580.000000pt;}
.xfc_c00215{left:580.960000pt;}
.xf6_c00215{left:583.626667pt;}
.x78_c00215{left:585.706667pt;}
.x5f_c00215{left:588.000000pt;}
.xed_c00215{left:589.706667pt;}
.x9c_c00215{left:592.373333pt;}
.x4b_c00215{left:593.706667pt;}
.x30_c00215{left:595.040000pt;}
.xe3_c00215{left:596.000000pt;}
.xe_c00215{left:599.040000pt;}
.x1b_c00215{left:602.293333pt;}
.x74_c00215{left:604.373333pt;}
.xc1_c00215{left:606.666667pt;}
.xb9_c00215{left:607.626667pt;}
.x6a_c00215{left:608.960000pt;}
.xfe_c00215{left:610.293333pt;}
.xa6_c00215{left:611.626667pt;}
.x8a_c00215{left:612.960000pt;}
.x25_c00215{left:614.293333pt;}
.x4c_c00215{left:619.040000pt;}
.x57_c00215{left:621.706667pt;}
.xee_c00215{left:623.040000pt;}
.x31_c00215{left:624.373333pt;}
.x3e_c00215{left:626.293333pt;}
.x9d_c00215{left:628.000000pt;}
.x8b_c00215{left:629.706667pt;}
.x79_c00215{left:633.333333pt;}
.x80_c00215{left:637.333333pt;}
.xc2_c00215{left:638.293333pt;}
.xf7_c00215{left:639.626667pt;}
.xb4_c00215{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3a9e24312327540bc0e1c796.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m98_c00216{transform:matrix(0.325210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325210,0.000000,0.000000,0.250000,0,0);}
.m0_c00216{transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);}
.md1_c00216{transform:matrix(0.344118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344118,0.000000,0.000000,0.250000,0,0);}
.mc0_c00216{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m42_c00216{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.mbe_c00216{transform:matrix(0.366387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366387,0.000000,0.000000,0.250000,0,0);}
.m75_c00216{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.m70_c00216{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.me2_c00216{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.ma8_c00216{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.md2_c00216{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m7b_c00216{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m9f_c00216{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m73_c00216{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m93_c00216{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m6_c00216{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m9b_c00216{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m39_c00216{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m6f_c00216{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m1d_c00216{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m9a_c00216{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.mbb_c00216{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m99_c00216{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.ma6_c00216{transform:matrix(0.393405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393405,0.000000,0.000000,0.250000,0,0);}
.m96_c00216{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mb7_c00216{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m43_c00216{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.md6_c00216{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m77_c00216{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m78_c00216{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m94_c00216{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m6c_c00216{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m54_c00216{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m48_c00216{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m38_c00216{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m6b_c00216{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m17_c00216{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m91_c00216{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mb_c00216{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m60_c00216{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m69_c00216{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m35_c00216{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mdb_c00216{transform:matrix(0.415584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415584,0.000000,0.000000,0.250000,0,0);}
.mac_c00216{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m79_c00216{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m62_c00216{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m67_c00216{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m71_c00216{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m92_c00216{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.me4_c00216{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m63_c00216{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m72_c00216{transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);}
.m97_c00216{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.m59_c00216{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m7c_c00216{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.mb5_c00216{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m36_c00216{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m30_c00216{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.mb1_c00216{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m8f_c00216{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m11_c00216{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m1a_c00216{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.mba_c00216{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m24_c00216{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m95_c00216{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m3_c00216{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m7e_c00216{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.mc8_c00216{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m37_c00216{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m6d_c00216{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m2b_c00216{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m1f_c00216{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m84_c00216{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m22_c00216{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m45_c00216{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mc_c00216{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m3b_c00216{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m5c_c00216{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m14_c00216{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mb9_c00216{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m4c_c00216{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m4a_c00216{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mec_c00216{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m88_c00216{transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);}
.m5a_c00216{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m85_c00216{transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);}
.mcf_c00216{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m49_c00216{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.m68_c00216{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m2f_c00216{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.md3_c00216{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.mb4_c00216{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m80_c00216{transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);}
.m8_c00216{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m8e_c00216{transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);}
.m16_c00216{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m51_c00216{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m7a_c00216{transform:matrix(0.488235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488235,0.000000,0.000000,0.250000,0,0);}
.mbd_c00216{transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);}
.m13_c00216{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.md0_c00216{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m58_c00216{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m44_c00216{transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);}
.m82_c00216{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m83_c00216{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m6e_c00216{transform:matrix(0.495378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495378,0.000000,0.000000,0.250000,0,0);}
.me7_c00216{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m2_c00216{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_c00216{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m2d_c00216{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m7d_c00216{transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);}
.m8c_c00216{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.md4_c00216{transform:matrix(0.505882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505882,0.000000,0.000000,0.250000,0,0);}
.mb2_c00216{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.md5_c00216{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.mbf_c00216{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m76_c00216{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.maa_c00216{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m20_c00216{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.mc2_c00216{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.maf_c00216{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m2e_c00216{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.me1_c00216{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.m2c_c00216{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.meb_c00216{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.md7_c00216{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);}
.m53_c00216{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mdf_c00216{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.ma7_c00216{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mb6_c00216{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m4d_c00216{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mda_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);}
.m31_c00216{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m3c_c00216{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m3d_c00216{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m23_c00216{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.me9_c00216{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.mab_c00216{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m4_c00216{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m4f_c00216{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m65_c00216{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m33_c00216{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mf_c00216{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mae_c00216{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mea_c00216{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.ma2_c00216{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m5f_c00216{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m5b_c00216{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m3a_c00216{transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);}
.m90_c00216{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.ma5_c00216{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mcc_c00216{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m8a_c00216{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m9d_c00216{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m5_c00216{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m5e_c00216{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m4b_c00216{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.ma3_c00216{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m7f_c00216{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m26_c00216{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m34_c00216{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m4e_c00216{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.ma9_c00216{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m32_c00216{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m3f_c00216{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m46_c00216{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m25_c00216{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.me_c00216{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m8d_c00216{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mc5_c00216{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mcd_c00216{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.ma0_c00216{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m81_c00216{transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);}
.md8_c00216{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.m8b_c00216{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m1b_c00216{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m1c_c00216{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mdc_c00216{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m21_c00216{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m9c_c00216{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.m61_c00216{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m15_c00216{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.ma4_c00216{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.me6_c00216{transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);}
.ma1_c00216{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m2a_c00216{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mbc_c00216{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m41_c00216{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mc7_c00216{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m89_c00216{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.mb0_c00216{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mc6_c00216{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m12_c00216{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mb3_c00216{transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);}
.m74_c00216{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m18_c00216{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.me5_c00216{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m66_c00216{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.m29_c00216{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m64_c00216{transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);}
.m1_c00216{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m57_c00216{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.m87_c00216{transform:matrix(0.606328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606328,0.000000,0.000000,0.250000,0,0);}
.mad_c00216{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m50_c00216{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m56_c00216{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m6a_c00216{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m28_c00216{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.md_c00216{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.md9_c00216{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.ma_c00216{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.me3_c00216{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.mc9_c00216{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.mde_c00216{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.mdd_c00216{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.mca_c00216{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.mce_c00216{transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);}
.m52_c00216{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m7_c00216{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.me0_c00216{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mc4_c00216{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.mb8_c00216{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mcb_c00216{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);}
.m3e_c00216{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m19_c00216{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m9e_c00216{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m55_c00216{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m47_c00216{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m40_c00216{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mc3_c00216{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m5d_c00216{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m1e_c00216{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m27_c00216{transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);}
.m9_c00216{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.me8_c00216{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mc1_c00216{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m86_c00216{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-3.920324px;}
.ws3_c00216{word-spacing:0.000000px;}
.ws2_c00216{word-spacing:0.368749px;}
.ws1_c00216{word-spacing:0.821395px;}
.fc0_c00216{color:transparent;}
.fs6_c00216{font-size:3.420000px;}
.fs8_c00216{font-size:13.620000px;}
.fs4_c00216{font-size:18.720000px;}
.fs1_c00216{font-size:20.400000px;}
.fs3_c00216{font-size:25.500000px;}
.fs2_c00216{font-size:28.920000px;}
.fs5_c00216{font-size:32.340000px;}
.fs0_c00216{font-size:35.700000px;}
.fs7_c00216{font-size:39.120000px;}
.y0_c00216{bottom:0.000000px;}
.yc0_c00216{bottom:227.970000px;}
.yc3_c00216{bottom:228.405000px;}
.yc2_c00216{bottom:229.470000px;}
.yc1_c00216{bottom:230.970000px;}
.ybf_c00216{bottom:242.325000px;}
.yba_c00216{bottom:242.550000px;}
.ybe_c00216{bottom:244.470000px;}
.ybd_c00216{bottom:244.695000px;}
.ybc_c00216{bottom:244.905000px;}
.ybb_c00216{bottom:245.970000px;}
.yb9_c00216{bottom:258.825000px;}
.yb8_c00216{bottom:262.050000px;}
.yb4_c00216{bottom:272.325000px;}
.yb2_c00216{bottom:272.550000px;}
.yb5_c00216{bottom:273.405000px;}
.yb3_c00216{bottom:274.470000px;}
.yb7_c00216{bottom:274.695000px;}
.yb6_c00216{bottom:275.550000px;}
.yae_c00216{bottom:287.325000px;}
.yad_c00216{bottom:287.550000px;}
.yaf_c00216{bottom:287.970000px;}
.yb0_c00216{bottom:288.405000px;}
.yac_c00216{bottom:289.470000px;}
.yab_c00216{bottom:290.130000px;}
.yb1_c00216{bottom:290.550000px;}
.ya8_c00216{bottom:301.470000px;}
.ya9_c00216{bottom:302.325000px;}
.yaa_c00216{bottom:302.970000px;}
.ya7_c00216{bottom:303.405000px;}
.ya6_c00216{bottom:304.470000px;}
.ya3_c00216{bottom:317.325000px;}
.ya5_c00216{bottom:318.405000px;}
.ya1_c00216{bottom:318.630000px;}
.ya2_c00216{bottom:319.470000px;}
.ya4_c00216{bottom:320.550000px;}
.ya0_c00216{bottom:344.745000px;}
.y9f_c00216{bottom:346.905000px;}
.y9e_c00216{bottom:347.130000px;}
.y9b_c00216{bottom:363.180000px;}
.y9a_c00216{bottom:364.245000px;}
.y97_c00216{bottom:364.470000px;}
.y9d_c00216{bottom:365.130000px;}
.y96_c00216{bottom:365.745000px;}
.y99_c00216{bottom:366.405000px;}
.y98_c00216{bottom:366.630000px;}
.y9c_c00216{bottom:367.470000px;}
.y92_c00216{bottom:383.745000px;}
.y94_c00216{bottom:385.245000px;}
.y93_c00216{bottom:385.905000px;}
.y95_c00216{bottom:386.130000px;}
.y90_c00216{bottom:403.245000px;}
.y8c_c00216{bottom:404.745000px;}
.y91_c00216{bottom:405.405000px;}
.y8e_c00216{bottom:405.630000px;}
.y8f_c00216{bottom:406.470000px;}
.y8d_c00216{bottom:406.905000px;}
.y8a_c00216{bottom:422.970000px;}
.y89_c00216{bottom:424.245000px;}
.y8b_c00216{bottom:425.130000px;}
.y87_c00216{bottom:426.405000px;}
.y88_c00216{bottom:426.420000px;}
.y86_c00216{bottom:445.470000px;}
.y85_c00216{bottom:445.905000px;}
.y84_c00216{bottom:463.245000px;}
.y83_c00216{bottom:464.970000px;}
.y82_c00216{bottom:465.405000px;}
.y81_c00216{bottom:481.680000px;}
.y80_c00216{bottom:482.745000px;}
.y7e_c00216{bottom:484.905000px;}
.y7f_c00216{bottom:484.920000px;}
.y7d_c00216{bottom:502.245000px;}
.y7a_c00216{bottom:504.405000px;}
.y7b_c00216{bottom:504.630000px;}
.y7c_c00216{bottom:505.920000px;}
.y79_c00216{bottom:524.970000px;}
.y78_c00216{bottom:540.405000px;}
.y74_c00216{bottom:541.245000px;}
.y76_c00216{bottom:542.325000px;}
.y77_c00216{bottom:542.745000px;}
.y75_c00216{bottom:544.920000px;}
.y73_c00216{bottom:560.745000px;}
.y71_c00216{bottom:562.245000px;}
.y70_c00216{bottom:563.325000px;}
.y72_c00216{bottom:563.970000px;}
.y6f_c00216{bottom:564.405000px;}
.y6d_c00216{bottom:579.405000px;}
.y69_c00216{bottom:581.745000px;}
.y6c_c00216{bottom:582.825000px;}
.y6b_c00216{bottom:583.905000px;}
.y6a_c00216{bottom:583.920000px;}
.y6e_c00216{bottom:584.970000px;}
.y68_c00216{bottom:607.470000px;}
.y67_c00216{bottom:609.405000px;}
.y66_c00216{bottom:610.470000px;}
.y64_c00216{bottom:623.325000px;}
.y65_c00216{bottom:624.405000px;}
.y63_c00216{bottom:625.470000px;}
.y5f_c00216{bottom:642.825000px;}
.y61_c00216{bottom:643.050000px;}
.y60_c00216{bottom:643.905000px;}
.y62_c00216{bottom:644.970000px;}
.y5e_c00216{bottom:670.245000px;}
.y5d_c00216{bottom:702.405000px;}
.y5c_c00216{bottom:703.470000px;}
.y59_c00216{bottom:704.745000px;}
.y5b_c00216{bottom:705.630000px;}
.y5a_c00216{bottom:706.470000px;}
.y58_c00216{bottom:706.905000px;}
.y57_c00216{bottom:723.825000px;}
.y55_c00216{bottom:724.245000px;}
.y54_c00216{bottom:726.405000px;}
.y56_c00216{bottom:727.470000px;}
.y53_c00216{bottom:743.745000px;}
.y52_c00216{bottom:743.970000px;}
.y50_c00216{bottom:745.905000px;}
.y51_c00216{bottom:746.970000px;}
.y4f_c00216{bottom:762.405000px;}
.y4d_c00216{bottom:763.245000px;}
.y4e_c00216{bottom:764.325000px;}
.y4c_c00216{bottom:765.405000px;}
.y4b_c00216{bottom:781.905000px;}
.y4a_c00216{bottom:782.745000px;}
.y46_c00216{bottom:802.245000px;}
.y47_c00216{bottom:803.745000px;}
.y45_c00216{bottom:804.405000px;}
.y49_c00216{bottom:804.630000px;}
.y48_c00216{bottom:805.470000px;}
.y42_c00216{bottom:822.825000px;}
.y41_c00216{bottom:823.245000px;}
.y44_c00216{bottom:824.130000px;}
.y43_c00216{bottom:824.325000px;}
.y40_c00216{bottom:825.405000px;}
.y3e_c00216{bottom:842.745000px;}
.y3d_c00216{bottom:843.630000px;}
.y3c_c00216{bottom:843.825000px;}
.y3a_c00216{bottom:844.470000px;}
.y3b_c00216{bottom:844.905000px;}
.y3f_c00216{bottom:845.130000px;}
.y36_c00216{bottom:861.405000px;}
.y37_c00216{bottom:862.245000px;}
.y38_c00216{bottom:863.325000px;}
.y39_c00216{bottom:864.405000px;}
.y35_c00216{bottom:879.405000px;}
.y32_c00216{bottom:881.745000px;}
.y34_c00216{bottom:882.630000px;}
.y33_c00216{bottom:883.905000px;}
.y31_c00216{bottom:884.970000px;}
.y30_c00216{bottom:900.405000px;}
.y2c_c00216{bottom:901.245000px;}
.y2f_c00216{bottom:901.470000px;}
.y2e_c00216{bottom:902.325000px;}
.y2b_c00216{bottom:903.405000px;}
.y2d_c00216{bottom:903.630000px;}
.y2a_c00216{bottom:922.245000px;}
.y27_c00216{bottom:922.905000px;}
.y28_c00216{bottom:923.130000px;}
.y29_c00216{bottom:924.405000px;}
.y26_c00216{bottom:939.405000px;}
.y24_c00216{bottom:940.245000px;}
.y25_c00216{bottom:940.470000px;}
.y21_c00216{bottom:960.405000px;}
.y20_c00216{bottom:961.245000px;}
.y23_c00216{bottom:962.130000px;}
.y22_c00216{bottom:962.970000px;}
.y1f_c00216{bottom:963.405000px;}
.y1c_c00216{bottom:980.745000px;}
.y1e_c00216{bottom:981.405000px;}
.y1d_c00216{bottom:982.470000px;}
.y1b_c00216{bottom:982.905000px;}
.y18_c00216{bottom:997.905000px;}
.y16_c00216{bottom:1000.245000px;}
.y19_c00216{bottom:1001.130000px;}
.y15_c00216{bottom:1001.325000px;}
.y1a_c00216{bottom:1001.970000px;}
.y14_c00216{bottom:1002.405000px;}
.y17_c00216{bottom:1003.470000px;}
.y12_c00216{bottom:1018.470000px;}
.yd_c00216{bottom:1018.905000px;}
.y10_c00216{bottom:1019.745000px;}
.y11_c00216{bottom:1020.630000px;}
.y13_c00216{bottom:1020.825000px;}
.ye_c00216{bottom:1021.905000px;}
.yf_c00216{bottom:1022.970000px;}
.yb_c00216{bottom:1037.970000px;}
.yc_c00216{bottom:1038.405000px;}
.ya_c00216{bottom:1039.245000px;}
.y9_c00216{bottom:1041.405000px;}
.y6_c00216{bottom:1057.905000px;}
.y4_c00216{bottom:1058.745000px;}
.y5_c00216{bottom:1060.470000px;}
.y3_c00216{bottom:1060.905000px;}
.y7_c00216{bottom:1061.130000px;}
.y8_c00216{bottom:1061.970000px;}
.y1_c00216{bottom:1097.745000px;}
.y2_c00216{bottom:1099.050000px;}
.h7_c00216{height:4.206533px;}
.h9_c00216{height:16.752334px;}
.h5_c00216{height:23.025234px;}
.h2_c00216{height:25.091602px;}
.h4_c00216{height:31.364502px;}
.h3_c00216{height:35.571035px;}
.h6_c00216{height:39.777568px;}
.h1_c00216{height:43.910303px;}
.h8_c00216{height:48.116836px;}
.h0_c00216{height:1335.000000px;}
.w0_c00216{width:880.500000px;}
.x0_c00216{left:0.000000px;}
.x16_c00216{left:151.080000px;}
.xac_c00216{left:152.580000px;}
.x3_c00216{left:158.580000px;}
.x74_c00216{left:160.080000px;}
.x94_c00216{left:165.000000px;}
.x9b_c00216{left:166.920000px;}
.xa6_c00216{left:168.000000px;}
.x4_c00216{left:182.580000px;}
.xcf_c00216{left:186.420000px;}
.xe3_c00216{left:195.000000px;}
.x38_c00216{left:199.920000px;}
.x7b_c00216{left:202.920000px;}
.xb4_c00216{left:204.000000px;}
.x43_c00216{left:205.500000px;}
.xe0_c00216{left:208.500000px;}
.x5c_c00216{left:211.080000px;}
.xd0_c00216{left:213.420000px;}
.xc7_c00216{left:215.580000px;}
.x2c_c00216{left:217.080000px;}
.x65_c00216{left:221.580000px;}
.xc1_c00216{left:223.080000px;}
.x39_c00216{left:225.000000px;}
.xb5_c00216{left:226.500000px;}
.x95_c00216{left:227.580000px;}
.x5d_c00216{left:231.420000px;}
.x2d_c00216{left:234.420000px;}
.x4b_c00216{left:236.580000px;}
.x5_c00216{left:239.580000px;}
.x17_c00216{left:241.500000px;}
.x21_c00216{left:243.000000px;}
.xc2_c00216{left:244.920000px;}
.xad_c00216{left:247.500000px;}
.x7c_c00216{left:250.080000px;}
.x44_c00216{left:251.580000px;}
.xbc_c00216{left:253.500000px;}
.x8a_c00216{left:254.580000px;}
.x4c_c00216{left:256.920000px;}
.x6_c00216{left:258.420000px;}
.xb1_c00216{left:259.500000px;}
.x66_c00216{left:260.580000px;}
.x88_c00216{left:263.580000px;}
.x3a_c00216{left:268.080000px;}
.x9c_c00216{left:271.500000px;}
.xbd_c00216{left:275.580000px;}
.x11_c00216{left:277.500000px;}
.xa7_c00216{left:279.000000px;}
.xb2_c00216{left:280.500000px;}
.x22_c00216{left:282.000000px;}
.x89_c00216{left:283.500000px;}
.x57_c00216{left:289.500000px;}
.x9d_c00216{left:292.500000px;}
.x18_c00216{left:296.580000px;}
.xae_c00216{left:300.000000px;}
.xba_c00216{left:301.080000px;}
.x96_c00216{left:303.000000px;}
.x9a_c00216{left:304.080000px;}
.x67_c00216{left:308.580000px;}
.x45_c00216{left:310.500000px;}
.x2e_c00216{left:312.000000px;}
.x53_c00216{left:313.500000px;}
.x4d_c00216{left:315.000000px;}
.x7_c00216{left:316.920000px;}
.x3b_c00216{left:319.080000px;}
.xaf_c00216{left:320.580000px;}
.x82_c00216{left:324.420000px;}
.x23_c00216{left:327.420000px;}
.xbb_c00216{left:329.145000px;}
.xc3_c00216{left:334.080000px;}
.x5e_c00216{left:336.420000px;}
.x3c_c00216{left:337.920000px;}
.x8b_c00216{left:340.500000px;}
.x8e_c00216{left:341.580000px;}
.x54_c00216{left:343.920000px;}
.x46_c00216{left:346.500000px;}
.xb0_c00216{left:347.580000px;}
.xd1_c00216{left:351.000000px;}
.x4e_c00216{left:354.420000px;}
.x75_c00216{left:355.500000px;}
.x5f_c00216{left:357.420000px;}
.x2f_c00216{left:359.580000px;}
.xd6_c00216{left:362.580000px;}
.xdb_c00216{left:364.080000px;}
.x6c_c00216{left:366.420000px;}
.x47_c00216{left:367.920000px;}
.xbe_c00216{left:369.000000px;}
.x24_c00216{left:370.500000px;}
.xb3_c00216{left:372.000000px;}
.x7d_c00216{left:373.500000px;}
.x8_c00216{left:375.420000px;}
.x30_c00216{left:376.500000px;}
.x55_c00216{left:379.500000px;}
.xca_c00216{left:382.080000px;}
.xd2_c00216{left:384.000000px;}
.xe1_c00216{left:385.080000px;}
.x8f_c00216{left:387.420000px;}
.xa8_c00216{left:390.420000px;}
.x4f_c00216{left:391.500000px;}
.x3d_c00216{left:393.420000px;}
.x2_c00216{left:397.500000px;}
.x56_c00216{left:402.000000px;}
.x68_c00216{left:403.920000px;}
.xdc_c00216{left:405.000000px;}
.xb6_c00216{left:406.500000px;}
.x50_c00216{left:411.000000px;}
.x9_c00216{left:414.000000px;}
.x76_c00216{left:415.500000px;}
.xdd_c00216{left:418.080000px;}
.x31_c00216{left:420.000000px;}
.x19_c00216{left:421.500000px;}
.x6d_c00216{left:424.920000px;}
.xa9_c00216{left:427.500000px;}
.x97_c00216{left:429.420000px;}
.x9e_c00216{left:432.000000px;}
.x72_c00216{left:436.080000px;}
.xd3_c00216{left:438.000000px;}
.x58_c00216{left:439.920000px;}
.x69_c00216{left:442.080000px;}
.x25_c00216{left:443.580000px;}
.xa_c00216{left:447.000000px;}
.xc4_c00216{left:448.500000px;}
.x3e_c00216{left:450.420000px;}
.x7e_c00216{left:453.000000px;}
.x83_c00216{left:454.500000px;}
.xc8_c00216{left:457.500000px;}
.x1a_c00216{left:459.000000px;}
.x6e_c00216{left:461.580000px;}
.xb_c00216{left:466.080000px;}
.xc5_c00216{left:468.000000px;}
.x77_c00216{left:469.500000px;}
.x48_c00216{left:470.580000px;}
.x1b_c00216{left:472.920000px;}
.x98_c00216{left:474.000000px;}
.x32_c00216{left:481.500000px;}
.xcb_c00216{left:483.000000px;}
.xc_c00216{left:486.000000px;}
.x49_c00216{left:487.500000px;}
.x9f_c00216{left:489.420000px;}
.xaa_c00216{left:491.775000px;}
.x90_c00216{left:493.500000px;}
.x73_c00216{left:496.500000px;}
.x84_c00216{left:498.000000px;}
.xa3_c00216{left:501.000000px;}
.x7f_c00216{left:504.000000px;}
.x26_c00216{left:505.500000px;}
.x6a_c00216{left:507.000000px;}
.x60_c00216{left:511.500000px;}
.xb7_c00216{left:514.500000px;}
.xde_c00216{left:515.580000px;}
.xa0_c00216{left:516.645000px;}
.x59_c00216{left:519.420000px;}
.x3f_c00216{left:521.580000px;}
.xd_c00216{left:523.080000px;}
.xa4_c00216{left:525.000000px;}
.x6f_c00216{left:528.000000px;}
.xc9_c00216{left:529.500000px;}
.x8c_c00216{left:532.080000px;}
.x78_c00216{left:534.000000px;}
.x33_c00216{left:537.000000px;}
.x12_c00216{left:538.500000px;}
.xd4_c00216{left:540.420000px;}
.x40_c00216{left:543.000000px;}
.xe2_c00216{left:545.580000px;}
.x70_c00216{left:547.500000px;}
.x51_c00216{left:548.580000px;}
.x91_c00216{left:550.500000px;}
.xa1_c00216{left:552.000000px;}
.xe_c00216{left:553.500000px;}
.x5a_c00216{left:555.000000px;}
.xda_c00216{left:556.500000px;}
.x1c_c00216{left:560.580000px;}
.x41_c00216{left:562.080000px;}
.x61_c00216{left:564.000000px;}
.x71_c00216{left:567.000000px;}
.x92_c00216{left:569.580000px;}
.x27_c00216{left:573.000000px;}
.x80_c00216{left:575.580000px;}
.x34_c00216{left:585.420000px;}
.x79_c00216{left:586.920000px;}
.x93_c00216{left:589.080000px;}
.x8d_c00216{left:590.775000px;}
.xab_c00216{left:592.500000px;}
.x85_c00216{left:596.580000px;}
.xa2_c00216{left:598.500000px;}
.x1d_c00216{left:601.080000px;}
.xbf_c00216{left:604.500000px;}
.x28_c00216{left:605.580000px;}
.x13_c00216{left:610.920000px;}
.x52_c00216{left:612.000000px;}
.xdf_c00216{left:615.000000px;}
.x86_c00216{left:616.920000px;}
.xd7_c00216{left:618.000000px;}
.x42_c00216{left:621.420000px;}
.x35_c00216{left:622.920000px;}
.x29_c00216{left:624.000000px;}
.xa5_c00216{left:625.500000px;}
.xf_c00216{left:627.420000px;}
.x62_c00216{left:631.500000px;}
.xd5_c00216{left:637.080000px;}
.x99_c00216{left:642.000000px;}
.xc0_c00216{left:646.500000px;}
.x1e_c00216{left:647.580000px;}
.x36_c00216{left:649.920000px;}
.xcc_c00216{left:651.000000px;}
.xd8_c00216{left:652.080000px;}
.x6b_c00216{left:654.000000px;}
.x63_c00216{left:658.500000px;}
.x1f_c00216{left:660.000000px;}
.xcd_c00216{left:663.000000px;}
.x81_c00216{left:664.500000px;}
.xb8_c00216{left:666.420000px;}
.x7a_c00216{left:667.500000px;}
.x2a_c00216{left:669.000000px;}
.x5b_c00216{left:672.000000px;}
.x87_c00216{left:676.920000px;}
.x64_c00216{left:678.420000px;}
.xd9_c00216{left:679.500000px;}
.x37_c00216{left:685.080000px;}
.x14_c00216{left:686.580000px;}
.x20_c00216{left:691.920000px;}
.x10_c00216{left:697.080000px;}
.xce_c00216{left:702.000000px;}
.x2b_c00216{left:703.080000px;}
.x15_c00216{left:704.580000px;}
.x1_c00216{left:706.275000px;}
.xb9_c00216{left:708.420000px;}
.xc6_c00216{left:709.500000px;}
.x4a_c00216{left:719.580000px;}
@media print{
.v0_c00216{vertical-align:0.000000pt;}
.ls0_c00216{letter-spacing:0.000000pt;}
.ws0_c00216{word-spacing:-3.484733pt;}
.ws3_c00216{word-spacing:0.000000pt;}
.ws2_c00216{word-spacing:0.327777pt;}
.ws1_c00216{word-spacing:0.730129pt;}
.fs6_c00216{font-size:3.040000pt;}
.fs8_c00216{font-size:12.106667pt;}
.fs4_c00216{font-size:16.640000pt;}
.fs1_c00216{font-size:18.133333pt;}
.fs3_c00216{font-size:22.666667pt;}
.fs2_c00216{font-size:25.706667pt;}
.fs5_c00216{font-size:28.746667pt;}
.fs0_c00216{font-size:31.733333pt;}
.fs7_c00216{font-size:34.773333pt;}
.y0_c00216{bottom:0.000000pt;}
.yc0_c00216{bottom:202.640000pt;}
.yc3_c00216{bottom:203.026667pt;}
.yc2_c00216{bottom:203.973333pt;}
.yc1_c00216{bottom:205.306667pt;}
.ybf_c00216{bottom:215.400000pt;}
.yba_c00216{bottom:215.600000pt;}
.ybe_c00216{bottom:217.306667pt;}
.ybd_c00216{bottom:217.506667pt;}
.ybc_c00216{bottom:217.693333pt;}
.ybb_c00216{bottom:218.640000pt;}
.yb9_c00216{bottom:230.066667pt;}
.yb8_c00216{bottom:232.933333pt;}
.yb4_c00216{bottom:242.066667pt;}
.yb2_c00216{bottom:242.266667pt;}
.yb5_c00216{bottom:243.026667pt;}
.yb3_c00216{bottom:243.973333pt;}
.yb7_c00216{bottom:244.173333pt;}
.yb6_c00216{bottom:244.933333pt;}
.yae_c00216{bottom:255.400000pt;}
.yad_c00216{bottom:255.600000pt;}
.yaf_c00216{bottom:255.973333pt;}
.yb0_c00216{bottom:256.360000pt;}
.yac_c00216{bottom:257.306667pt;}
.yab_c00216{bottom:257.893333pt;}
.yb1_c00216{bottom:258.266667pt;}
.ya8_c00216{bottom:267.973333pt;}
.ya9_c00216{bottom:268.733333pt;}
.yaa_c00216{bottom:269.306667pt;}
.ya7_c00216{bottom:269.693333pt;}
.ya6_c00216{bottom:270.640000pt;}
.ya3_c00216{bottom:282.066667pt;}
.ya5_c00216{bottom:283.026667pt;}
.ya1_c00216{bottom:283.226667pt;}
.ya2_c00216{bottom:283.973333pt;}
.ya4_c00216{bottom:284.933333pt;}
.ya0_c00216{bottom:306.440000pt;}
.y9f_c00216{bottom:308.360000pt;}
.y9e_c00216{bottom:308.560000pt;}
.y9b_c00216{bottom:322.826667pt;}
.y9a_c00216{bottom:323.773333pt;}
.y97_c00216{bottom:323.973333pt;}
.y9d_c00216{bottom:324.560000pt;}
.y96_c00216{bottom:325.106667pt;}
.y99_c00216{bottom:325.693333pt;}
.y98_c00216{bottom:325.893333pt;}
.y9c_c00216{bottom:326.640000pt;}
.y92_c00216{bottom:341.106667pt;}
.y94_c00216{bottom:342.440000pt;}
.y93_c00216{bottom:343.026667pt;}
.y95_c00216{bottom:343.226667pt;}
.y90_c00216{bottom:358.440000pt;}
.y8c_c00216{bottom:359.773333pt;}
.y91_c00216{bottom:360.360000pt;}
.y8e_c00216{bottom:360.560000pt;}
.y8f_c00216{bottom:361.306667pt;}
.y8d_c00216{bottom:361.693333pt;}
.y8a_c00216{bottom:375.973333pt;}
.y89_c00216{bottom:377.106667pt;}
.y8b_c00216{bottom:377.893333pt;}
.y87_c00216{bottom:379.026667pt;}
.y88_c00216{bottom:379.040000pt;}
.y86_c00216{bottom:395.973333pt;}
.y85_c00216{bottom:396.360000pt;}
.y84_c00216{bottom:411.773333pt;}
.y83_c00216{bottom:413.306667pt;}
.y82_c00216{bottom:413.693333pt;}
.y81_c00216{bottom:428.160000pt;}
.y80_c00216{bottom:429.106667pt;}
.y7e_c00216{bottom:431.026667pt;}
.y7f_c00216{bottom:431.040000pt;}
.y7d_c00216{bottom:446.440000pt;}
.y7a_c00216{bottom:448.360000pt;}
.y7b_c00216{bottom:448.560000pt;}
.y7c_c00216{bottom:449.706667pt;}
.y79_c00216{bottom:466.640000pt;}
.y78_c00216{bottom:480.360000pt;}
.y74_c00216{bottom:481.106667pt;}
.y76_c00216{bottom:482.066667pt;}
.y77_c00216{bottom:482.440000pt;}
.y75_c00216{bottom:484.373333pt;}
.y73_c00216{bottom:498.440000pt;}
.y71_c00216{bottom:499.773333pt;}
.y70_c00216{bottom:500.733333pt;}
.y72_c00216{bottom:501.306667pt;}
.y6f_c00216{bottom:501.693333pt;}
.y6d_c00216{bottom:515.026667pt;}
.y69_c00216{bottom:517.106667pt;}
.y6c_c00216{bottom:518.066667pt;}
.y6b_c00216{bottom:519.026667pt;}
.y6a_c00216{bottom:519.040000pt;}
.y6e_c00216{bottom:519.973333pt;}
.y68_c00216{bottom:539.973333pt;}
.y67_c00216{bottom:541.693333pt;}
.y66_c00216{bottom:542.640000pt;}
.y64_c00216{bottom:554.066667pt;}
.y65_c00216{bottom:555.026667pt;}
.y63_c00216{bottom:555.973333pt;}
.y5f_c00216{bottom:571.400000pt;}
.y61_c00216{bottom:571.600000pt;}
.y60_c00216{bottom:572.360000pt;}
.y62_c00216{bottom:573.306667pt;}
.y5e_c00216{bottom:595.773333pt;}
.y5d_c00216{bottom:624.360000pt;}
.y5c_c00216{bottom:625.306667pt;}
.y59_c00216{bottom:626.440000pt;}
.y5b_c00216{bottom:627.226667pt;}
.y5a_c00216{bottom:627.973333pt;}
.y58_c00216{bottom:628.360000pt;}
.y57_c00216{bottom:643.400000pt;}
.y55_c00216{bottom:643.773333pt;}
.y54_c00216{bottom:645.693333pt;}
.y56_c00216{bottom:646.640000pt;}
.y53_c00216{bottom:661.106667pt;}
.y52_c00216{bottom:661.306667pt;}
.y50_c00216{bottom:663.026667pt;}
.y51_c00216{bottom:663.973333pt;}
.y4f_c00216{bottom:677.693333pt;}
.y4d_c00216{bottom:678.440000pt;}
.y4e_c00216{bottom:679.400000pt;}
.y4c_c00216{bottom:680.360000pt;}
.y4b_c00216{bottom:695.026667pt;}
.y4a_c00216{bottom:695.773333pt;}
.y46_c00216{bottom:713.106667pt;}
.y47_c00216{bottom:714.440000pt;}
.y45_c00216{bottom:715.026667pt;}
.y49_c00216{bottom:715.226667pt;}
.y48_c00216{bottom:715.973333pt;}
.y42_c00216{bottom:731.400000pt;}
.y41_c00216{bottom:731.773333pt;}
.y44_c00216{bottom:732.560000pt;}
.y43_c00216{bottom:732.733333pt;}
.y40_c00216{bottom:733.693333pt;}
.y3e_c00216{bottom:749.106667pt;}
.y3d_c00216{bottom:749.893333pt;}
.y3c_c00216{bottom:750.066667pt;}
.y3a_c00216{bottom:750.640000pt;}
.y3b_c00216{bottom:751.026667pt;}
.y3f_c00216{bottom:751.226667pt;}
.y36_c00216{bottom:765.693333pt;}
.y37_c00216{bottom:766.440000pt;}
.y38_c00216{bottom:767.400000pt;}
.y39_c00216{bottom:768.360000pt;}
.y35_c00216{bottom:781.693333pt;}
.y32_c00216{bottom:783.773333pt;}
.y34_c00216{bottom:784.560000pt;}
.y33_c00216{bottom:785.693333pt;}
.y31_c00216{bottom:786.640000pt;}
.y30_c00216{bottom:800.360000pt;}
.y2c_c00216{bottom:801.106667pt;}
.y2f_c00216{bottom:801.306667pt;}
.y2e_c00216{bottom:802.066667pt;}
.y2b_c00216{bottom:803.026667pt;}
.y2d_c00216{bottom:803.226667pt;}
.y2a_c00216{bottom:819.773333pt;}
.y27_c00216{bottom:820.360000pt;}
.y28_c00216{bottom:820.560000pt;}
.y29_c00216{bottom:821.693333pt;}
.y26_c00216{bottom:835.026667pt;}
.y24_c00216{bottom:835.773333pt;}
.y25_c00216{bottom:835.973333pt;}
.y21_c00216{bottom:853.693333pt;}
.y20_c00216{bottom:854.440000pt;}
.y23_c00216{bottom:855.226667pt;}
.y22_c00216{bottom:855.973333pt;}
.y1f_c00216{bottom:856.360000pt;}
.y1c_c00216{bottom:871.773333pt;}
.y1e_c00216{bottom:872.360000pt;}
.y1d_c00216{bottom:873.306667pt;}
.y1b_c00216{bottom:873.693333pt;}
.y18_c00216{bottom:887.026667pt;}
.y16_c00216{bottom:889.106667pt;}
.y19_c00216{bottom:889.893333pt;}
.y15_c00216{bottom:890.066667pt;}
.y1a_c00216{bottom:890.640000pt;}
.y14_c00216{bottom:891.026667pt;}
.y17_c00216{bottom:891.973333pt;}
.y12_c00216{bottom:905.306667pt;}
.yd_c00216{bottom:905.693333pt;}
.y10_c00216{bottom:906.440000pt;}
.y11_c00216{bottom:907.226667pt;}
.y13_c00216{bottom:907.400000pt;}
.ye_c00216{bottom:908.360000pt;}
.yf_c00216{bottom:909.306667pt;}
.yb_c00216{bottom:922.640000pt;}
.yc_c00216{bottom:923.026667pt;}
.ya_c00216{bottom:923.773333pt;}
.y9_c00216{bottom:925.693333pt;}
.y6_c00216{bottom:940.360000pt;}
.y4_c00216{bottom:941.106667pt;}
.y5_c00216{bottom:942.640000pt;}
.y3_c00216{bottom:943.026667pt;}
.y7_c00216{bottom:943.226667pt;}
.y8_c00216{bottom:943.973333pt;}
.y1_c00216{bottom:975.773333pt;}
.y2_c00216{bottom:976.933333pt;}
.h7_c00216{height:3.739141pt;}
.h9_c00216{height:14.890964pt;}
.h5_c00216{height:20.466875pt;}
.h2_c00216{height:22.303646pt;}
.h4_c00216{height:27.879557pt;}
.h3_c00216{height:31.618698pt;}
.h6_c00216{height:35.357839pt;}
.h1_c00216{height:39.031380pt;}
.h8_c00216{height:42.770521pt;}
.h0_c00216{height:1186.666667pt;}
.w0_c00216{width:782.666667pt;}
.x0_c00216{left:0.000000pt;}
.x16_c00216{left:134.293333pt;}
.xac_c00216{left:135.626667pt;}
.x3_c00216{left:140.960000pt;}
.x74_c00216{left:142.293333pt;}
.x94_c00216{left:146.666667pt;}
.x9b_c00216{left:148.373333pt;}
.xa6_c00216{left:149.333333pt;}
.x4_c00216{left:162.293333pt;}
.xcf_c00216{left:165.706667pt;}
.xe3_c00216{left:173.333333pt;}
.x38_c00216{left:177.706667pt;}
.x7b_c00216{left:180.373333pt;}
.xb4_c00216{left:181.333333pt;}
.x43_c00216{left:182.666667pt;}
.xe0_c00216{left:185.333333pt;}
.x5c_c00216{left:187.626667pt;}
.xd0_c00216{left:189.706667pt;}
.xc7_c00216{left:191.626667pt;}
.x2c_c00216{left:192.960000pt;}
.x65_c00216{left:196.960000pt;}
.xc1_c00216{left:198.293333pt;}
.x39_c00216{left:200.000000pt;}
.xb5_c00216{left:201.333333pt;}
.x95_c00216{left:202.293333pt;}
.x5d_c00216{left:205.706667pt;}
.x2d_c00216{left:208.373333pt;}
.x4b_c00216{left:210.293333pt;}
.x5_c00216{left:212.960000pt;}
.x17_c00216{left:214.666667pt;}
.x21_c00216{left:216.000000pt;}
.xc2_c00216{left:217.706667pt;}
.xad_c00216{left:220.000000pt;}
.x7c_c00216{left:222.293333pt;}
.x44_c00216{left:223.626667pt;}
.xbc_c00216{left:225.333333pt;}
.x8a_c00216{left:226.293333pt;}
.x4c_c00216{left:228.373333pt;}
.x6_c00216{left:229.706667pt;}
.xb1_c00216{left:230.666667pt;}
.x66_c00216{left:231.626667pt;}
.x88_c00216{left:234.293333pt;}
.x3a_c00216{left:238.293333pt;}
.x9c_c00216{left:241.333333pt;}
.xbd_c00216{left:244.960000pt;}
.x11_c00216{left:246.666667pt;}
.xa7_c00216{left:248.000000pt;}
.xb2_c00216{left:249.333333pt;}
.x22_c00216{left:250.666667pt;}
.x89_c00216{left:252.000000pt;}
.x57_c00216{left:257.333333pt;}
.x9d_c00216{left:260.000000pt;}
.x18_c00216{left:263.626667pt;}
.xae_c00216{left:266.666667pt;}
.xba_c00216{left:267.626667pt;}
.x96_c00216{left:269.333333pt;}
.x9a_c00216{left:270.293333pt;}
.x67_c00216{left:274.293333pt;}
.x45_c00216{left:276.000000pt;}
.x2e_c00216{left:277.333333pt;}
.x53_c00216{left:278.666667pt;}
.x4d_c00216{left:280.000000pt;}
.x7_c00216{left:281.706667pt;}
.x3b_c00216{left:283.626667pt;}
.xaf_c00216{left:284.960000pt;}
.x82_c00216{left:288.373333pt;}
.x23_c00216{left:291.040000pt;}
.xbb_c00216{left:292.573333pt;}
.xc3_c00216{left:296.960000pt;}
.x5e_c00216{left:299.040000pt;}
.x3c_c00216{left:300.373333pt;}
.x8b_c00216{left:302.666667pt;}
.x8e_c00216{left:303.626667pt;}
.x54_c00216{left:305.706667pt;}
.x46_c00216{left:308.000000pt;}
.xb0_c00216{left:308.960000pt;}
.xd1_c00216{left:312.000000pt;}
.x4e_c00216{left:315.040000pt;}
.x75_c00216{left:316.000000pt;}
.x5f_c00216{left:317.706667pt;}
.x2f_c00216{left:319.626667pt;}
.xd6_c00216{left:322.293333pt;}
.xdb_c00216{left:323.626667pt;}
.x6c_c00216{left:325.706667pt;}
.x47_c00216{left:327.040000pt;}
.xbe_c00216{left:328.000000pt;}
.x24_c00216{left:329.333333pt;}
.xb3_c00216{left:330.666667pt;}
.x7d_c00216{left:332.000000pt;}
.x8_c00216{left:333.706667pt;}
.x30_c00216{left:334.666667pt;}
.x55_c00216{left:337.333333pt;}
.xca_c00216{left:339.626667pt;}
.xd2_c00216{left:341.333333pt;}
.xe1_c00216{left:342.293333pt;}
.x8f_c00216{left:344.373333pt;}
.xa8_c00216{left:347.040000pt;}
.x4f_c00216{left:348.000000pt;}
.x3d_c00216{left:349.706667pt;}
.x2_c00216{left:353.333333pt;}
.x56_c00216{left:357.333333pt;}
.x68_c00216{left:359.040000pt;}
.xdc_c00216{left:360.000000pt;}
.xb6_c00216{left:361.333333pt;}
.x50_c00216{left:365.333333pt;}
.x9_c00216{left:368.000000pt;}
.x76_c00216{left:369.333333pt;}
.xdd_c00216{left:371.626667pt;}
.x31_c00216{left:373.333333pt;}
.x19_c00216{left:374.666667pt;}
.x6d_c00216{left:377.706667pt;}
.xa9_c00216{left:380.000000pt;}
.x97_c00216{left:381.706667pt;}
.x9e_c00216{left:384.000000pt;}
.x72_c00216{left:387.626667pt;}
.xd3_c00216{left:389.333333pt;}
.x58_c00216{left:391.040000pt;}
.x69_c00216{left:392.960000pt;}
.x25_c00216{left:394.293333pt;}
.xa_c00216{left:397.333333pt;}
.xc4_c00216{left:398.666667pt;}
.x3e_c00216{left:400.373333pt;}
.x7e_c00216{left:402.666667pt;}
.x83_c00216{left:404.000000pt;}
.xc8_c00216{left:406.666667pt;}
.x1a_c00216{left:408.000000pt;}
.x6e_c00216{left:410.293333pt;}
.xb_c00216{left:414.293333pt;}
.xc5_c00216{left:416.000000pt;}
.x77_c00216{left:417.333333pt;}
.x48_c00216{left:418.293333pt;}
.x1b_c00216{left:420.373333pt;}
.x98_c00216{left:421.333333pt;}
.x32_c00216{left:428.000000pt;}
.xcb_c00216{left:429.333333pt;}
.xc_c00216{left:432.000000pt;}
.x49_c00216{left:433.333333pt;}
.x9f_c00216{left:435.040000pt;}
.xaa_c00216{left:437.133333pt;}
.x90_c00216{left:438.666667pt;}
.x73_c00216{left:441.333333pt;}
.x84_c00216{left:442.666667pt;}
.xa3_c00216{left:445.333333pt;}
.x7f_c00216{left:448.000000pt;}
.x26_c00216{left:449.333333pt;}
.x6a_c00216{left:450.666667pt;}
.x60_c00216{left:454.666667pt;}
.xb7_c00216{left:457.333333pt;}
.xde_c00216{left:458.293333pt;}
.xa0_c00216{left:459.240000pt;}
.x59_c00216{left:461.706667pt;}
.x3f_c00216{left:463.626667pt;}
.xd_c00216{left:464.960000pt;}
.xa4_c00216{left:466.666667pt;}
.x6f_c00216{left:469.333333pt;}
.xc9_c00216{left:470.666667pt;}
.x8c_c00216{left:472.960000pt;}
.x78_c00216{left:474.666667pt;}
.x33_c00216{left:477.333333pt;}
.x12_c00216{left:478.666667pt;}
.xd4_c00216{left:480.373333pt;}
.x40_c00216{left:482.666667pt;}
.xe2_c00216{left:484.960000pt;}
.x70_c00216{left:486.666667pt;}
.x51_c00216{left:487.626667pt;}
.x91_c00216{left:489.333333pt;}
.xa1_c00216{left:490.666667pt;}
.xe_c00216{left:492.000000pt;}
.x5a_c00216{left:493.333333pt;}
.xda_c00216{left:494.666667pt;}
.x1c_c00216{left:498.293333pt;}
.x41_c00216{left:499.626667pt;}
.x61_c00216{left:501.333333pt;}
.x71_c00216{left:504.000000pt;}
.x92_c00216{left:506.293333pt;}
.x27_c00216{left:509.333333pt;}
.x80_c00216{left:511.626667pt;}
.x34_c00216{left:520.373333pt;}
.x79_c00216{left:521.706667pt;}
.x93_c00216{left:523.626667pt;}
.x8d_c00216{left:525.133333pt;}
.xab_c00216{left:526.666667pt;}
.x85_c00216{left:530.293333pt;}
.xa2_c00216{left:532.000000pt;}
.x1d_c00216{left:534.293333pt;}
.xbf_c00216{left:537.333333pt;}
.x28_c00216{left:538.293333pt;}
.x13_c00216{left:543.040000pt;}
.x52_c00216{left:544.000000pt;}
.xdf_c00216{left:546.666667pt;}
.x86_c00216{left:548.373333pt;}
.xd7_c00216{left:549.333333pt;}
.x42_c00216{left:552.373333pt;}
.x35_c00216{left:553.706667pt;}
.x29_c00216{left:554.666667pt;}
.xa5_c00216{left:556.000000pt;}
.xf_c00216{left:557.706667pt;}
.x62_c00216{left:561.333333pt;}
.xd5_c00216{left:566.293333pt;}
.x99_c00216{left:570.666667pt;}
.xc0_c00216{left:574.666667pt;}
.x1e_c00216{left:575.626667pt;}
.x36_c00216{left:577.706667pt;}
.xcc_c00216{left:578.666667pt;}
.xd8_c00216{left:579.626667pt;}
.x6b_c00216{left:581.333333pt;}
.x63_c00216{left:585.333333pt;}
.x1f_c00216{left:586.666667pt;}
.xcd_c00216{left:589.333333pt;}
.x81_c00216{left:590.666667pt;}
.xb8_c00216{left:592.373333pt;}
.x7a_c00216{left:593.333333pt;}
.x2a_c00216{left:594.666667pt;}
.x5b_c00216{left:597.333333pt;}
.x87_c00216{left:601.706667pt;}
.x64_c00216{left:603.040000pt;}
.xd9_c00216{left:604.000000pt;}
.x37_c00216{left:608.960000pt;}
.x14_c00216{left:610.293333pt;}
.x20_c00216{left:615.040000pt;}
.x10_c00216{left:619.626667pt;}
.xce_c00216{left:624.000000pt;}
.x2b_c00216{left:624.960000pt;}
.x15_c00216{left:626.293333pt;}
.x1_c00216{left:627.800000pt;}
.xb9_c00216{left:629.706667pt;}
.xc6_c00216{left:630.666667pt;}
.x4a_c00216{left:639.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_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_0cd3183162ef1570804731e9.woff2')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:1.688965;font-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_c00217{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m1e_c00217{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m10_c00217{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m70_c00217{transform:matrix(0.376160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376160,0.000000,0.000000,0.250000,0,0);}
.m4e_c00217{transform:matrix(0.385900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385900,0.000000,0.000000,0.250000,0,0);}
.m25_c00217{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m5f_c00217{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m5a_c00217{transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);}
.m61_c00217{transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);}
.m14_c00217{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m68_c00217{transform:matrix(0.397032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397032,0.000000,0.000000,0.250000,0,0);}
.m35_c00217{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m56_c00217{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.m6b_c00217{transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);}
.m45_c00217{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m2c_c00217{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m23_c00217{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m40_c00217{transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);}
.m54_c00217{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.m32_c00217{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m1f_c00217{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m22_c00217{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m27_c00217{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m3f_c00217{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m59_c00217{transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);}
.m19_c00217{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m37_c00217{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m6e_c00217{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m42_c00217{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m6d_c00217{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m71_c00217{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.m3a_c00217{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m5b_c00217{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.m63_c00217{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m52_c00217{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m6a_c00217{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m60_c00217{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_c00217{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.m51_c00217{transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);}
.m0_c00217{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m69_c00217{transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);}
.ma_c00217{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m55_c00217{transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);}
.m65_c00217{transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);}
.m53_c00217{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.mb_c00217{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m6f_c00217{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m4_c00217{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m1a_c00217{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m72_c00217{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m2b_c00217{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m49_c00217{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m4b_c00217{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.m26_c00217{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m11_c00217{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_c00217{transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);}
.m74_c00217{transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);}
.m31_c00217{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m2e_c00217{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m20_c00217{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.mf_c00217{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);}
.m5e_c00217{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m2_c00217{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);}
.m46_c00217{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m34_c00217{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m39_c00217{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m36_c00217{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m16_c00217{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m30_c00217{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m1d_c00217{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m6c_c00217{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m2d_c00217{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m48_c00217{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m21_c00217{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m43_c00217{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m4a_c00217{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m6_c00217{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m41_c00217{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m58_c00217{transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);}
.m3d_c00217{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m9_c00217{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m2f_c00217{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m1b_c00217{transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);}
.m38_c00217{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m57_c00217{transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);}
.m5d_c00217{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.me_c00217{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);}
.m67_c00217{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m4d_c00217{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m73_c00217{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.m5_c00217{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m1_c00217{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.m15_c00217{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);}
.m3c_c00217{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m13_c00217{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m8_c00217{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m3b_c00217{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m12_c00217{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m47_c00217{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m66_c00217{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.mc_c00217{transform:matrix(0.652206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652206,0.000000,0.000000,0.250000,0,0);}
.m29_c00217{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m3_c00217{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.m1c_c00217{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m17_c00217{transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);}
.m62_c00217{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m7_c00217{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);}
.m4f_c00217{transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);}
.m64_c00217{transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);}
.m2a_c00217{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m44_c00217{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m28_c00217{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.md_c00217{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m5c_c00217{transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);}
.m18_c00217{transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);}
.m50_c00217{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.m24_c00217{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,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:-5.871000px;}
.ws3_c00217{word-spacing:0.000000px;}
.ws2_c00217{word-spacing:3.107756px;}
.ws1_c00217{word-spacing:5.093961px;}
.fc0_c00217{color:transparent;}
.fs6_c00217{font-size:3.420000px;}
.fs3_c00217{font-size:13.620000px;}
.fs7_c00217{font-size:18.720000px;}
.fs1_c00217{font-size:20.400000px;}
.fs2_c00217{font-size:25.500000px;}
.fs0_c00217{font-size:28.920000px;}
.fs4_c00217{font-size:32.340000px;}
.fs5_c00217{font-size:35.700000px;}
.y0_c00217{bottom:0.000000px;}
.y52_c00217{bottom:248.970000px;}
.y50_c00217{bottom:249.825000px;}
.y43_c00217{bottom:250.905000px;}
.y51_c00217{bottom:252.195000px;}
.y4d_c00217{bottom:263.325000px;}
.y4f_c00217{bottom:263.970000px;}
.y4c_c00217{bottom:264.405000px;}
.y40_c00217{bottom:264.825000px;}
.y54_c00217{bottom:265.470000px;}
.y42_c00217{bottom:265.905000px;}
.y41_c00217{bottom:266.130000px;}
.y53_c00217{bottom:266.970000px;}
.y4e_c00217{bottom:268.050000px;}
.y3c_c00217{bottom:278.325000px;}
.y3f_c00217{bottom:278.550000px;}
.y3e_c00217{bottom:278.970000px;}
.y48_c00217{bottom:279.825000px;}
.y3d_c00217{bottom:280.695000px;}
.y4b_c00217{bottom:280.905000px;}
.y4a_c00217{bottom:281.130000px;}
.y49_c00217{bottom:281.970000px;}
.y46_c00217{bottom:293.970000px;}
.y39_c00217{bottom:294.405000px;}
.y45_c00217{bottom:294.630000px;}
.y3a_c00217{bottom:294.825000px;}
.y2f_c00217{bottom:295.050000px;}
.y47_c00217{bottom:296.130000px;}
.y44_c00217{bottom:296.550000px;}
.y37_c00217{bottom:296.970000px;}
.y3b_c00217{bottom:297.195000px;}
.y38_c00217{bottom:298.050000px;}
.y34_c00217{bottom:307.905000px;}
.y35_c00217{bottom:308.550000px;}
.y36_c00217{bottom:309.405000px;}
.y30_c00217{bottom:309.825000px;}
.y33_c00217{bottom:310.905000px;}
.y2e_c00217{bottom:311.550000px;}
.y2d_c00217{bottom:311.970000px;}
.y32_c00217{bottom:312.195000px;}
.y31_c00217{bottom:313.050000px;}
.y28_c00217{bottom:940.245000px;}
.y29_c00217{bottom:941.970000px;}
.y2a_c00217{bottom:942.405000px;}
.y2b_c00217{bottom:943.470000px;}
.y2c_c00217{bottom:943.905000px;}
.y21_c00217{bottom:959.970000px;}
.y23_c00217{bottom:960.405000px;}
.y24_c00217{bottom:961.245000px;}
.y20_c00217{bottom:961.905000px;}
.y27_c00217{bottom:962.130000px;}
.y26_c00217{bottom:962.325000px;}
.y22_c00217{bottom:962.970000px;}
.y25_c00217{bottom:963.405000px;}
.y1d_c00217{bottom:979.245000px;}
.y1e_c00217{bottom:980.325000px;}
.y1c_c00217{bottom:980.745000px;}
.y1b_c00217{bottom:981.405000px;}
.y1f_c00217{bottom:982.905000px;}
.y14_c00217{bottom:998.745000px;}
.y17_c00217{bottom:999.825000px;}
.y16_c00217{bottom:1000.245000px;}
.y18_c00217{bottom:1001.130000px;}
.y19_c00217{bottom:1001.970000px;}
.y1a_c00217{bottom:1002.405000px;}
.y15_c00217{bottom:1002.420000px;}
.y13_c00217{bottom:1031.325000px;}
.y12_c00217{bottom:1032.405000px;}
.ye_c00217{bottom:1033.050000px;}
.yf_c00217{bottom:1033.470000px;}
.y11_c00217{bottom:1033.695000px;}
.y10_c00217{bottom:1034.550000px;}
.yc_c00217{bottom:1045.470000px;}
.yb_c00217{bottom:1046.325000px;}
.y8_c00217{bottom:1046.970000px;}
.y9_c00217{bottom:1047.195000px;}
.ya_c00217{bottom:1048.470000px;}
.yd_c00217{bottom:1049.550000px;}
.y3_c00217{bottom:1060.050000px;}
.y7_c00217{bottom:1062.195000px;}
.y5_c00217{bottom:1062.405000px;}
.y4_c00217{bottom:1063.050000px;}
.y6_c00217{bottom:1063.470000px;}
.y2_c00217{bottom:1099.050000px;}
.y1_c00217{bottom:1099.905000px;}
.h7_c00217{height:4.206533px;}
.h4_c00217{height:16.752334px;}
.h8_c00217{height:23.025234px;}
.h2_c00217{height:25.091602px;}
.h3_c00217{height:31.364502px;}
.h1_c00217{height:35.571035px;}
.h5_c00217{height:39.777568px;}
.h6_c00217{height:43.910303px;}
.h0_c00217{height:1335.000000px;}
.w0_c00217{width:880.500000px;}
.x0_c00217{left:0.000000px;}
.x1_c00217{left:151.920000px;}
.xf_c00217{left:153.000000px;}
.x3_c00217{left:166.920000px;}
.x70_c00217{left:169.500000px;}
.x53_c00217{left:181.080000px;}
.x4_c00217{left:184.500000px;}
.x38_c00217{left:190.500000px;}
.x2b_c00217{left:193.080000px;}
.x64_c00217{left:199.500000px;}
.x54_c00217{left:205.920000px;}
.x10_c00217{left:207.000000px;}
.x39_c00217{left:211.500000px;}
.x11_c00217{left:219.000000px;}
.x55_c00217{left:223.080000px;}
.x71_c00217{left:229.500000px;}
.x3a_c00217{left:230.580000px;}
.x5e_c00217{left:235.920000px;}
.x17_c00217{left:249.000000px;}
.x46_c00217{left:252.420000px;}
.x5_c00217{left:256.500000px;}
.x3b_c00217{left:262.500000px;}
.x2c_c00217{left:264.000000px;}
.x12_c00217{left:268.080000px;}
.x22_c00217{left:275.580000px;}
.x56_c00217{left:279.000000px;}
.x5f_c00217{left:285.420000px;}
.x65_c00217{left:286.920000px;}
.x47_c00217{left:288.420000px;}
.x3c_c00217{left:298.080000px;}
.x13_c00217{left:301.080000px;}
.x6a_c00217{left:303.000000px;}
.x48_c00217{left:313.080000px;}
.x63_c00217{left:324.000000px;}
.x3d_c00217{left:331.080000px;}
.x66_c00217{left:333.420000px;}
.x18_c00217{left:335.580000px;}
.x6_c00217{left:337.920000px;}
.x6c_c00217{left:340.080000px;}
.x2d_c00217{left:342.000000px;}
.x49_c00217{left:343.080000px;}
.x23_c00217{left:351.000000px;}
.x3e_c00217{left:354.420000px;}
.x2e_c00217{left:365.580000px;}
.x7_c00217{left:368.580000px;}
.x24_c00217{left:372.000000px;}
.x6b_c00217{left:373.080000px;}
.x3f_c00217{left:381.000000px;}
.x19_c00217{left:382.500000px;}
.x14_c00217{left:387.000000px;}
.x2f_c00217{left:388.500000px;}
.x4a_c00217{left:391.500000px;}
.x2_c00217{left:399.000000px;}
.x8_c00217{left:406.920000px;}
.x30_c00217{left:409.500000px;}
.x59_c00217{left:410.580000px;}
.x15_c00217{left:421.920000px;}
.x9_c00217{left:426.000000px;}
.x4b_c00217{left:427.080000px;}
.x1a_c00217{left:432.000000px;}
.x40_c00217{left:436.500000px;}
.x4c_c00217{left:444.420000px;}
.x50_c00217{left:446.580000px;}
.x16_c00217{left:448.500000px;}
.x25_c00217{left:457.920000px;}
.x31_c00217{left:465.000000px;}
.x69_c00217{left:468.420000px;}
.x4d_c00217{left:469.920000px;}
.x41_c00217{left:474.420000px;}
.x5a_c00217{left:481.920000px;}
.x6e_c00217{left:484.080000px;}
.xa_c00217{left:490.500000px;}
.x32_c00217{left:498.420000px;}
.x51_c00217{left:499.500000px;}
.x1b_c00217{left:502.500000px;}
.x26_c00217{left:511.500000px;}
.x1c_c00217{left:513.000000px;}
.x42_c00217{left:516.000000px;}
.x4e_c00217{left:522.000000px;}
.x6d_c00217{left:523.920000px;}
.x33_c00217{left:525.420000px;}
.x5b_c00217{left:529.080000px;}
.xb_c00217{left:532.080000px;}
.x6f_c00217{left:540.000000px;}
.x27_c00217{left:550.080000px;}
.x5c_c00217{left:554.355000px;}
.x1d_c00217{left:557.580000px;}
.x43_c00217{left:560.580000px;}
.x34_c00217{left:572.580000px;}
.x28_c00217{left:574.920000px;}
.x1e_c00217{left:586.920000px;}
.xc_c00217{left:588.645000px;}
.x35_c00217{left:592.920000px;}
.x5d_c00217{left:598.920000px;}
.x60_c00217{left:601.080000px;}
.x57_c00217{left:618.000000px;}
.x36_c00217{left:619.920000px;}
.x1f_c00217{left:628.500000px;}
.x52_c00217{left:629.580000px;}
.x67_c00217{left:643.500000px;}
.x4f_c00217{left:648.000000px;}
.x20_c00217{left:658.080000px;}
.x44_c00217{left:663.000000px;}
.x68_c00217{left:665.580000px;}
.x61_c00217{left:669.000000px;}
.xd_c00217{left:672.000000px;}
.x29_c00217{left:673.920000px;}
.x37_c00217{left:678.420000px;}
.x58_c00217{left:679.500000px;}
.x21_c00217{left:685.500000px;}
.x62_c00217{left:691.920000px;}
.x45_c00217{left:709.500000px;}
.x2a_c00217{left:713.580000px;}
.xe_c00217{left:724.500000px;}
@media print{
.v0_c00217{vertical-align:0.000000pt;}
.ls0_c00217{letter-spacing:0.000000pt;}
.ws0_c00217{word-spacing:-5.218667pt;}
.ws3_c00217{word-spacing:0.000000pt;}
.ws2_c00217{word-spacing:2.762450pt;}
.ws1_c00217{word-spacing:4.527965pt;}
.fs6_c00217{font-size:3.040000pt;}
.fs3_c00217{font-size:12.106667pt;}
.fs7_c00217{font-size:16.640000pt;}
.fs1_c00217{font-size:18.133333pt;}
.fs2_c00217{font-size:22.666667pt;}
.fs0_c00217{font-size:25.706667pt;}
.fs4_c00217{font-size:28.746667pt;}
.fs5_c00217{font-size:31.733333pt;}
.y0_c00217{bottom:0.000000pt;}
.y52_c00217{bottom:221.306667pt;}
.y50_c00217{bottom:222.066667pt;}
.y43_c00217{bottom:223.026667pt;}
.y51_c00217{bottom:224.173333pt;}
.y4d_c00217{bottom:234.066667pt;}
.y4f_c00217{bottom:234.640000pt;}
.y4c_c00217{bottom:235.026667pt;}
.y40_c00217{bottom:235.400000pt;}
.y54_c00217{bottom:235.973333pt;}
.y42_c00217{bottom:236.360000pt;}
.y41_c00217{bottom:236.560000pt;}
.y53_c00217{bottom:237.306667pt;}
.y4e_c00217{bottom:238.266667pt;}
.y3c_c00217{bottom:247.400000pt;}
.y3f_c00217{bottom:247.600000pt;}
.y3e_c00217{bottom:247.973333pt;}
.y48_c00217{bottom:248.733333pt;}
.y3d_c00217{bottom:249.506667pt;}
.y4b_c00217{bottom:249.693333pt;}
.y4a_c00217{bottom:249.893333pt;}
.y49_c00217{bottom:250.640000pt;}
.y46_c00217{bottom:261.306667pt;}
.y39_c00217{bottom:261.693333pt;}
.y45_c00217{bottom:261.893333pt;}
.y3a_c00217{bottom:262.066667pt;}
.y2f_c00217{bottom:262.266667pt;}
.y47_c00217{bottom:263.226667pt;}
.y44_c00217{bottom:263.600000pt;}
.y37_c00217{bottom:263.973333pt;}
.y3b_c00217{bottom:264.173333pt;}
.y38_c00217{bottom:264.933333pt;}
.y34_c00217{bottom:273.693333pt;}
.y35_c00217{bottom:274.266667pt;}
.y36_c00217{bottom:275.026667pt;}
.y30_c00217{bottom:275.400000pt;}
.y33_c00217{bottom:276.360000pt;}
.y2e_c00217{bottom:276.933333pt;}
.y2d_c00217{bottom:277.306667pt;}
.y32_c00217{bottom:277.506667pt;}
.y31_c00217{bottom:278.266667pt;}
.y28_c00217{bottom:835.773333pt;}
.y29_c00217{bottom:837.306667pt;}
.y2a_c00217{bottom:837.693333pt;}
.y2b_c00217{bottom:838.640000pt;}
.y2c_c00217{bottom:839.026667pt;}
.y21_c00217{bottom:853.306667pt;}
.y23_c00217{bottom:853.693333pt;}
.y24_c00217{bottom:854.440000pt;}
.y20_c00217{bottom:855.026667pt;}
.y27_c00217{bottom:855.226667pt;}
.y26_c00217{bottom:855.400000pt;}
.y22_c00217{bottom:855.973333pt;}
.y25_c00217{bottom:856.360000pt;}
.y1d_c00217{bottom:870.440000pt;}
.y1e_c00217{bottom:871.400000pt;}
.y1c_c00217{bottom:871.773333pt;}
.y1b_c00217{bottom:872.360000pt;}
.y1f_c00217{bottom:873.693333pt;}
.y14_c00217{bottom:887.773333pt;}
.y17_c00217{bottom:888.733333pt;}
.y16_c00217{bottom:889.106667pt;}
.y18_c00217{bottom:889.893333pt;}
.y19_c00217{bottom:890.640000pt;}
.y1a_c00217{bottom:891.026667pt;}
.y15_c00217{bottom:891.040000pt;}
.y13_c00217{bottom:916.733333pt;}
.y12_c00217{bottom:917.693333pt;}
.ye_c00217{bottom:918.266667pt;}
.yf_c00217{bottom:918.640000pt;}
.y11_c00217{bottom:918.840000pt;}
.y10_c00217{bottom:919.600000pt;}
.yc_c00217{bottom:929.306667pt;}
.yb_c00217{bottom:930.066667pt;}
.y8_c00217{bottom:930.640000pt;}
.y9_c00217{bottom:930.840000pt;}
.ya_c00217{bottom:931.973333pt;}
.yd_c00217{bottom:932.933333pt;}
.y3_c00217{bottom:942.266667pt;}
.y7_c00217{bottom:944.173333pt;}
.y5_c00217{bottom:944.360000pt;}
.y4_c00217{bottom:944.933333pt;}
.y6_c00217{bottom:945.306667pt;}
.y2_c00217{bottom:976.933333pt;}
.y1_c00217{bottom:977.693333pt;}
.h7_c00217{height:3.739141pt;}
.h4_c00217{height:14.890964pt;}
.h8_c00217{height:20.466875pt;}
.h2_c00217{height:22.303646pt;}
.h3_c00217{height:27.879557pt;}
.h1_c00217{height:31.618698pt;}
.h5_c00217{height:35.357839pt;}
.h6_c00217{height:39.031380pt;}
.h0_c00217{height:1186.666667pt;}
.w0_c00217{width:782.666667pt;}
.x0_c00217{left:0.000000pt;}
.x1_c00217{left:135.040000pt;}
.xf_c00217{left:136.000000pt;}
.x3_c00217{left:148.373333pt;}
.x70_c00217{left:150.666667pt;}
.x53_c00217{left:160.960000pt;}
.x4_c00217{left:164.000000pt;}
.x38_c00217{left:169.333333pt;}
.x2b_c00217{left:171.626667pt;}
.x64_c00217{left:177.333333pt;}
.x54_c00217{left:183.040000pt;}
.x10_c00217{left:184.000000pt;}
.x39_c00217{left:188.000000pt;}
.x11_c00217{left:194.666667pt;}
.x55_c00217{left:198.293333pt;}
.x71_c00217{left:204.000000pt;}
.x3a_c00217{left:204.960000pt;}
.x5e_c00217{left:209.706667pt;}
.x17_c00217{left:221.333333pt;}
.x46_c00217{left:224.373333pt;}
.x5_c00217{left:228.000000pt;}
.x3b_c00217{left:233.333333pt;}
.x2c_c00217{left:234.666667pt;}
.x12_c00217{left:238.293333pt;}
.x22_c00217{left:244.960000pt;}
.x56_c00217{left:248.000000pt;}
.x5f_c00217{left:253.706667pt;}
.x65_c00217{left:255.040000pt;}
.x47_c00217{left:256.373333pt;}
.x3c_c00217{left:264.960000pt;}
.x13_c00217{left:267.626667pt;}
.x6a_c00217{left:269.333333pt;}
.x48_c00217{left:278.293333pt;}
.x63_c00217{left:288.000000pt;}
.x3d_c00217{left:294.293333pt;}
.x66_c00217{left:296.373333pt;}
.x18_c00217{left:298.293333pt;}
.x6_c00217{left:300.373333pt;}
.x6c_c00217{left:302.293333pt;}
.x2d_c00217{left:304.000000pt;}
.x49_c00217{left:304.960000pt;}
.x23_c00217{left:312.000000pt;}
.x3e_c00217{left:315.040000pt;}
.x2e_c00217{left:324.960000pt;}
.x7_c00217{left:327.626667pt;}
.x24_c00217{left:330.666667pt;}
.x6b_c00217{left:331.626667pt;}
.x3f_c00217{left:338.666667pt;}
.x19_c00217{left:340.000000pt;}
.x14_c00217{left:344.000000pt;}
.x2f_c00217{left:345.333333pt;}
.x4a_c00217{left:348.000000pt;}
.x2_c00217{left:354.666667pt;}
.x8_c00217{left:361.706667pt;}
.x30_c00217{left:364.000000pt;}
.x59_c00217{left:364.960000pt;}
.x15_c00217{left:375.040000pt;}
.x9_c00217{left:378.666667pt;}
.x4b_c00217{left:379.626667pt;}
.x1a_c00217{left:384.000000pt;}
.x40_c00217{left:388.000000pt;}
.x4c_c00217{left:395.040000pt;}
.x50_c00217{left:396.960000pt;}
.x16_c00217{left:398.666667pt;}
.x25_c00217{left:407.040000pt;}
.x31_c00217{left:413.333333pt;}
.x69_c00217{left:416.373333pt;}
.x4d_c00217{left:417.706667pt;}
.x41_c00217{left:421.706667pt;}
.x5a_c00217{left:428.373333pt;}
.x6e_c00217{left:430.293333pt;}
.xa_c00217{left:436.000000pt;}
.x32_c00217{left:443.040000pt;}
.x51_c00217{left:444.000000pt;}
.x1b_c00217{left:446.666667pt;}
.x26_c00217{left:454.666667pt;}
.x1c_c00217{left:456.000000pt;}
.x42_c00217{left:458.666667pt;}
.x4e_c00217{left:464.000000pt;}
.x6d_c00217{left:465.706667pt;}
.x33_c00217{left:467.040000pt;}
.x5b_c00217{left:470.293333pt;}
.xb_c00217{left:472.960000pt;}
.x6f_c00217{left:480.000000pt;}
.x27_c00217{left:488.960000pt;}
.x5c_c00217{left:492.760000pt;}
.x1d_c00217{left:495.626667pt;}
.x43_c00217{left:498.293333pt;}
.x34_c00217{left:508.960000pt;}
.x28_c00217{left:511.040000pt;}
.x1e_c00217{left:521.706667pt;}
.xc_c00217{left:523.240000pt;}
.x35_c00217{left:527.040000pt;}
.x5d_c00217{left:532.373333pt;}
.x60_c00217{left:534.293333pt;}
.x57_c00217{left:549.333333pt;}
.x36_c00217{left:551.040000pt;}
.x1f_c00217{left:558.666667pt;}
.x52_c00217{left:559.626667pt;}
.x67_c00217{left:572.000000pt;}
.x4f_c00217{left:576.000000pt;}
.x20_c00217{left:584.960000pt;}
.x44_c00217{left:589.333333pt;}
.x68_c00217{left:591.626667pt;}
.x61_c00217{left:594.666667pt;}
.xd_c00217{left:597.333333pt;}
.x29_c00217{left:599.040000pt;}
.x37_c00217{left:603.040000pt;}
.x58_c00217{left:604.000000pt;}
.x21_c00217{left:609.333333pt;}
.x62_c00217{left:615.040000pt;}
.x45_c00217{left:630.666667pt;}
.x2a_c00217{left:634.293333pt;}
.xe_c00217{left:644.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_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_ea2bad5a6e3e22e75bfb928f.woff2')format("woff");}.ff1_c00218{font-family:ff1_c00218;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m66_c00218{transform:matrix(0.236963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236963,0.000000,0.000000,0.250000,0,0);}
.m0_c00218{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.mc8_c00218{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.ma8_c00218{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mbd_c00218{transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);}
.m92_c00218{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m29_c00218{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.mb3_c00218{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.mcb_c00218{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m22_c00218{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m79_c00218{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m1f_c00218{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m6b_c00218{transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);}
.m81_c00218{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mce_c00218{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m41_c00218{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m78_c00218{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m6e_c00218{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m71_c00218{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.md1_c00218{transform:matrix(0.406772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406772,0.000000,0.000000,0.250000,0,0);}
.m14_c00218{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m2f_c00218{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m89_c00218{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m62_c00218{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.mbc_c00218{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.maa_c00218{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m86_c00218{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m6c_c00218{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.md_c00218{transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);}
.mc2_c00218{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.m51_c00218{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m59_c00218{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.me1_c00218{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.md0_c00218{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m9a_c00218{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m12_c00218{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m5c_c00218{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m2d_c00218{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m31_c00218{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m34_c00218{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m68_c00218{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m9b_c00218{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m1d_c00218{transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);}
.mdd_c00218{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m5f_c00218{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m6d_c00218{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m6f_c00218{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m50_c00218{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.mca_c00218{transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);}
.mae_c00218{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m1e_c00218{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.me7_c00218{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.me_c00218{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m2_c00218{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.mac_c00218{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.m85_c00218{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m95_c00218{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.md2_c00218{transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);}
.m7a_c00218{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m77_c00218{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m72_c00218{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m98_c00218{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m10_c00218{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m55_c00218{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.mdc_c00218{transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);}
.m43_c00218{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m7b_c00218{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.me5_c00218{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.maf_c00218{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.mec_c00218{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.ma7_c00218{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.m5_c00218{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.mb2_c00218{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m48_c00218{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m19_c00218{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m5b_c00218{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m7f_c00218{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.ma2_c00218{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m67_c00218{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.m70_c00218{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m46_c00218{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.mf0_c00218{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m18_c00218{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m13_c00218{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.ma9_c00218{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.mcc_c00218{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m9c_c00218{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m15_c00218{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mc0_c00218{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m33_c00218{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m7d_c00218{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mba_c00218{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.m53_c00218{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m44_c00218{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m96_c00218{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.md5_c00218{transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);}
.m75_c00218{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.md9_c00218{transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);}
.mc3_c00218{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m83_c00218{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m3f_c00218{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.me2_c00218{transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);}
.mb0_c00218{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m63_c00218{transform:matrix(0.471429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471429,0.000000,0.000000,0.250000,0,0);}
.mc9_c00218{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.m40_c00218{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mc5_c00218{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.ma0_c00218{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m4f_c00218{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m64_c00218{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m65_c00218{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.m3b_c00218{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.mad_c00218{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m87_c00218{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mef_c00218{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.mda_c00218{transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);}
.md4_c00218{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m2e_c00218{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m8a_c00218{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m7_c00218{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mbe_c00218{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m8c_c00218{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m26_c00218{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m4b_c00218{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m24_c00218{transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);}
.m38_c00218{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m3_c00218{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);}
.mc1_c00218{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m3d_c00218{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m7e_c00218{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.m76_c00218{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m7c_c00218{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mf1_c00218{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m94_c00218{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m45_c00218{transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);}
.me0_c00218{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m23_c00218{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m47_c00218{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m35_c00218{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m8b_c00218{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m9d_c00218{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.me3_c00218{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m97_c00218{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m82_c00218{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m3c_c00218{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m91_c00218{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m8e_c00218{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m4_c00218{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m5d_c00218{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mb_c00218{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m4d_c00218{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mb7_c00218{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m42_c00218{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m28_c00218{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m27_c00218{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mdf_c00218{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mea_c00218{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m49_c00218{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.me8_c00218{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m6_c00218{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m21_c00218{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m80_c00218{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m1c_c00218{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mb1_c00218{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m36_c00218{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m74_c00218{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m56_c00218{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m54_c00218{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m84_c00218{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mb5_c00218{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m4c_c00218{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m32_c00218{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m2c_c00218{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m4e_c00218{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.med_c00218{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m2a_c00218{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m2b_c00218{transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);}
.m93_c00218{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.ma4_c00218{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m61_c00218{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m20_c00218{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.m60_c00218{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m8d_c00218{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.mee_c00218{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.mf_c00218{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.me6_c00218{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.mcf_c00218{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.mab_c00218{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m11_c00218{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m39_c00218{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m9e_c00218{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m9f_c00218{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.mc_c00218{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mb6_c00218{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m5e_c00218{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m8f_c00218{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m8_c00218{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mb8_c00218{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m6a_c00218{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m1a_c00218{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.ma1_c00218{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.ma3_c00218{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mde_c00218{transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);}
.m1_c00218{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m69_c00218{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.m90_c00218{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.meb_c00218{transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);}
.m30_c00218{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m99_c00218{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m73_c00218{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mdb_c00218{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m52_c00218{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.mc7_c00218{transform:matrix(0.622925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622925,0.000000,0.000000,0.250000,0,0);}
.m3a_c00218{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mcd_c00218{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m9_c00218{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.md6_c00218{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m3e_c00218{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.md8_c00218{transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);}
.mb4_c00218{transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);}
.mbb_c00218{transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);}
.m88_c00218{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.md7_c00218{transform:matrix(0.663971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.663971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.663971,0.000000,0.000000,0.250000,0,0);}
.m5a_c00218{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.md3_c00218{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m25_c00218{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.ma_c00218{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mb9_c00218{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m58_c00218{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m37_c00218{transform:matrix(0.723529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.723529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.723529,0.000000,0.000000,0.250000,0,0);}
.m4a_c00218{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.me9_c00218{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mbf_c00218{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m1b_c00218{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m57_c00218{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m16_c00218{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.ma5_c00218{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m17_c00218{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mc6_c00218{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.mc4_c00218{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.me4_c00218{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.ma6_c00218{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00218{vertical-align:0.000000px;}
.v1_c00218{vertical-align:6.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;}
}
.ws3_c00218{word-spacing:-7.145860px;}
.ws1_c00218{word-spacing:-6.184625px;}
.ws0_c00218{word-spacing:-3.908356px;}
.ws2_c00218{word-spacing:-3.207360px;}
.ws4_c00218{word-spacing:0.000000px;}
.fc0_c00218{color:transparent;}
.fs7_c00218{font-size:3.420000px;}
.fs8_c00218{font-size:11.880000px;}
.fs4_c00218{font-size:18.720000px;}
.fs1_c00218{font-size:20.400000px;}
.fs3_c00218{font-size:25.500000px;}
.fs2_c00218{font-size:28.920000px;}
.fs5_c00218{font-size:32.340000px;}
.fs0_c00218{font-size:35.700000px;}
.fs6_c00218{font-size:39.120000px;}
.y0_c00218{bottom:0.000000px;}
.ycd_c00218{bottom:252.405000px;}
.ycb_c00218{bottom:269.745000px;}
.yc9_c00218{bottom:271.245000px;}
.yca_c00218{bottom:271.905000px;}
.ycc_c00218{bottom:272.325000px;}
.yc7_c00218{bottom:273.405000px;}
.yc8_c00218{bottom:273.420000px;}
.yc6_c00218{bottom:289.245000px;}
.yc4_c00218{bottom:290.745000px;}
.yc5_c00218{bottom:291.405000px;}
.yc2_c00218{bottom:291.630000px;}
.yc1_c00218{bottom:292.905000px;}
.yc3_c00218{bottom:292.920000px;}
.yc0_c00218{bottom:307.905000px;}
.ybe_c00218{bottom:308.970000px;}
.ybf_c00218{bottom:309.825000px;}
.ybb_c00218{bottom:310.245000px;}
.ybd_c00218{bottom:311.325000px;}
.ybc_c00218{bottom:312.420000px;}
.yba_c00218{bottom:331.905000px;}
.yb5_c00218{bottom:349.245000px;}
.yb9_c00218{bottom:350.325000px;}
.yb8_c00218{bottom:350.970000px;}
.yb7_c00218{bottom:351.405000px;}
.yb6_c00218{bottom:351.420000px;}
.yb1_c00218{bottom:376.905000px;}
.yb0_c00218{bottom:377.325000px;}
.yb4_c00218{bottom:377.550000px;}
.yb3_c00218{bottom:377.970000px;}
.yb2_c00218{bottom:379.050000px;}
.yad_c00218{bottom:395.325000px;}
.yaf_c00218{bottom:395.550000px;}
.yac_c00218{bottom:396.405000px;}
.yae_c00218{bottom:398.550000px;}
.yaa_c00218{bottom:422.745000px;}
.ya9_c00218{bottom:422.970000px;}
.yab_c00218{bottom:423.825000px;}
.ya8_c00218{bottom:424.905000px;}
.ya7_c00218{bottom:468.630000px;}
.ya6_c00218{bottom:469.905000px;}
.ya2_c00218{bottom:483.630000px;}
.ya0_c00218{bottom:484.275000px;}
.ya5_c00218{bottom:485.970000px;}
.ya4_c00218{bottom:486.405000px;}
.ya3_c00218{bottom:487.245000px;}
.y9e_c00218{bottom:488.130000px;}
.y9d_c00218{bottom:488.325000px;}
.ya1_c00218{bottom:489.405000px;}
.y9f_c00218{bottom:492.630000px;}
.y9c_c00218{bottom:504.405000px;}
.y96_c00218{bottom:505.905000px;}
.y9b_c00218{bottom:506.745000px;}
.y99_c00218{bottom:507.825000px;}
.y9a_c00218{bottom:508.050000px;}
.y97_c00218{bottom:508.905000px;}
.y98_c00218{bottom:509.130000px;}
.y94_c00218{bottom:525.405000px;}
.y95_c00218{bottom:526.245000px;}
.y92_c00218{bottom:526.470000px;}
.y91_c00218{bottom:527.745000px;}
.y93_c00218{bottom:528.405000px;}
.y90_c00218{bottom:528.825000px;}
.y8f_c00218{bottom:529.905000px;}
.y89_c00218{bottom:545.325000px;}
.y8e_c00218{bottom:545.745000px;}
.y8b_c00218{bottom:546.405000px;}
.y8d_c00218{bottom:546.825000px;}
.y88_c00218{bottom:547.245000px;}
.y8a_c00218{bottom:548.325000px;}
.y8c_c00218{bottom:549.405000px;}
.y86_c00218{bottom:564.405000px;}
.y87_c00218{bottom:565.245000px;}
.y80_c00218{bottom:565.905000px;}
.y82_c00218{bottom:566.745000px;}
.y81_c00218{bottom:567.825000px;}
.y83_c00218{bottom:568.470000px;}
.y84_c00218{bottom:568.905000px;}
.y85_c00218{bottom:569.970000px;}
.y7a_c00218{bottom:584.970000px;}
.y7b_c00218{bottom:585.405000px;}
.y7e_c00218{bottom:585.825000px;}
.y7f_c00218{bottom:586.245000px;}
.y7c_c00218{bottom:587.130000px;}
.y79_c00218{bottom:588.405000px;}
.y7d_c00218{bottom:588.420000px;}
.y78_c00218{bottom:603.405000px;}
.y74_c00218{bottom:604.905000px;}
.y75_c00218{bottom:605.745000px;}
.y77_c00218{bottom:605.970000px;}
.y76_c00218{bottom:607.905000px;}
.y73_c00218{bottom:624.405000px;}
.y71_c00218{bottom:625.245000px;}
.y70_c00218{bottom:625.470000px;}
.y72_c00218{bottom:627.405000px;}
.y6c_c00218{bottom:643.905000px;}
.y6b_c00218{bottom:644.745000px;}
.y6f_c00218{bottom:644.970000px;}
.y6d_c00218{bottom:645.405000px;}
.y6e_c00218{bottom:646.905000px;}
.y69_c00218{bottom:664.470000px;}
.y6a_c00218{bottom:664.905000px;}
.y68_c00218{bottom:665.325000px;}
.y67_c00218{bottom:665.745000px;}
.y66_c00218{bottom:666.405000px;}
.y64_c00218{bottom:666.825000px;}
.y65_c00218{bottom:667.905000px;}
.y63_c00218{bottom:685.245000px;}
.y62_c00218{bottom:686.970000px;}
.y61_c00218{bottom:687.405000px;}
.y5f_c00218{bottom:705.825000px;}
.y60_c00218{bottom:706.905000px;}
.y59_c00218{bottom:724.245000px;}
.y5e_c00218{bottom:724.905000px;}
.y5c_c00218{bottom:725.130000px;}
.y5d_c00218{bottom:725.325000px;}
.y5b_c00218{bottom:725.970000px;}
.y58_c00218{bottom:726.405000px;}
.y5a_c00218{bottom:727.470000px;}
.y55_c00218{bottom:743.325000px;}
.y56_c00218{bottom:743.745000px;}
.y57_c00218{bottom:744.825000px;}
.y54_c00218{bottom:745.905000px;}
.y50_c00218{bottom:763.245000px;}
.y53_c00218{bottom:764.325000px;}
.y52_c00218{bottom:765.405000px;}
.y51_c00218{bottom:766.470000px;}
.y4e_c00218{bottom:781.905000px;}
.y4c_c00218{bottom:782.745000px;}
.y4f_c00218{bottom:783.825000px;}
.y4b_c00218{bottom:784.905000px;}
.y4d_c00218{bottom:785.130000px;}
.y46_c00218{bottom:801.405000px;}
.y49_c00218{bottom:802.245000px;}
.y48_c00218{bottom:803.325000px;}
.y47_c00218{bottom:804.405000px;}
.y4a_c00218{bottom:805.470000px;}
.y43_c00218{bottom:821.745000px;}
.y42_c00218{bottom:823.245000px;}
.y41_c00218{bottom:823.470000px;}
.y45_c00218{bottom:823.905000px;}
.y44_c00218{bottom:824.130000px;}
.y3e_c00218{bottom:824.325000px;}
.y40_c00218{bottom:824.970000px;}
.y3f_c00218{bottom:825.405000px;}
.y39_c00218{bottom:841.245000px;}
.y3b_c00218{bottom:841.680000px;}
.y3a_c00218{bottom:842.745000px;}
.y3d_c00218{bottom:843.405000px;}
.y3c_c00218{bottom:843.825000px;}
.y38_c00218{bottom:844.905000px;}
.y37_c00218{bottom:862.245000px;}
.y36_c00218{bottom:864.405000px;}
.y35_c00218{bottom:881.745000px;}
.y32_c00218{bottom:882.825000px;}
.y33_c00218{bottom:883.905000px;}
.y34_c00218{bottom:884.130000px;}
.y2d_c00218{bottom:901.245000px;}
.y2c_c00218{bottom:902.130000px;}
.y2e_c00218{bottom:902.325000px;}
.y31_c00218{bottom:902.970000px;}
.y2f_c00218{bottom:903.405000px;}
.y30_c00218{bottom:904.470000px;}
.y2b_c00218{bottom:920.745000px;}
.y28_c00218{bottom:921.825000px;}
.y29_c00218{bottom:922.905000px;}
.y2a_c00218{bottom:923.130000px;}
.y26_c00218{bottom:941.745000px;}
.y27_c00218{bottom:941.970000px;}
.y25_c00218{bottom:942.825000px;}
.y24_c00218{bottom:943.470000px;}
.y23_c00218{bottom:943.905000px;}
.y1f_c00218{bottom:961.905000px;}
.y22_c00218{bottom:962.325000px;}
.y21_c00218{bottom:962.970000px;}
.y20_c00218{bottom:963.405000px;}
.y1e_c00218{bottom:979.245000px;}
.y1d_c00218{bottom:980.325000px;}
.y1b_c00218{bottom:980.745000px;}
.y1c_c00218{bottom:982.470000px;}
.y1a_c00218{bottom:982.905000px;}
.y15_c00218{bottom:1000.245000px;}
.y19_c00218{bottom:1000.905000px;}
.y17_c00218{bottom:1001.325000px;}
.y18_c00218{bottom:1001.970000px;}
.y16_c00218{bottom:1002.405000px;}
.y13_c00218{bottom:1018.470000px;}
.yf_c00218{bottom:1019.745000px;}
.y14_c00218{bottom:1020.405000px;}
.y11_c00218{bottom:1020.630000px;}
.y12_c00218{bottom:1020.825000px;}
.y10_c00218{bottom:1021.905000px;}
.yc_c00218{bottom:1038.825000px;}
.ya_c00218{bottom:1039.245000px;}
.ye_c00218{bottom:1040.130000px;}
.yb_c00218{bottom:1041.405000px;}
.yd_c00218{bottom:1041.630000px;}
.y5_c00218{bottom:1057.905000px;}
.y3_c00218{bottom:1058.745000px;}
.y7_c00218{bottom:1058.970000px;}
.y9_c00218{bottom:1059.825000px;}
.y6_c00218{bottom:1060.470000px;}
.y4_c00218{bottom:1060.905000px;}
.y8_c00218{bottom:1061.130000px;}
.y1_c00218{bottom:1097.745000px;}
.y2_c00218{bottom:1099.050000px;}
.h9_c00218{height:4.206533px;}
.ha_c00218{height:14.612168px;}
.h5_c00218{height:23.025234px;}
.h2_c00218{height:25.091602px;}
.h4_c00218{height:31.364502px;}
.h3_c00218{height:35.571035px;}
.h6_c00218{height:39.777568px;}
.h1_c00218{height:43.910303px;}
.h7_c00218{height:45.777568px;}
.h8_c00218{height:48.116836px;}
.h0_c00218{height:1335.000000px;}
.w0_c00218{width:880.500000px;}
.x0_c00218{left:0.000000px;}
.x10_c00218{left:151.500000px;}
.xca_c00218{left:153.420000px;}
.x6f_c00218{left:167.580000px;}
.x3_c00218{left:169.080000px;}
.x5d_c00218{left:171.420000px;}
.xd3_c00218{left:174.000000px;}
.x94_c00218{left:180.000000px;}
.x34_c00218{left:181.500000px;}
.xd7_c00218{left:184.500000px;}
.xb9_c00218{left:190.920000px;}
.x9c_c00218{left:193.500000px;}
.x7f_c00218{left:195.420000px;}
.xa5_c00218{left:196.920000px;}
.x11_c00218{left:199.080000px;}
.xbc_c00218{left:201.420000px;}
.xd1_c00218{left:204.000000px;}
.x29_c00218{left:205.500000px;}
.x48_c00218{left:206.580000px;}
.x6d_c00218{left:211.920000px;}
.x64_c00218{left:213.000000px;}
.x53_c00218{left:214.500000px;}
.xc2_c00218{left:215.580000px;}
.x12_c00218{left:217.500000px;}
.xea_c00218{left:222.000000px;}
.x4_c00218{left:223.080000px;}
.x1d_c00218{left:226.500000px;}
.x8f_c00218{left:228.420000px;}
.xdd_c00218{left:231.420000px;}
.xcb_c00218{left:232.500000px;}
.x3e_c00218{left:234.420000px;}
.x35_c00218{left:235.920000px;}
.x79_c00218{left:237.420000px;}
.x49_c00218{left:240.000000px;}
.xe4_c00218{left:241.080000px;}
.x5_c00218{left:243.420000px;}
.xed_c00218{left:247.500000px;}
.xbd_c00218{left:248.580000px;}
.x2a_c00218{left:250.500000px;}
.xa6_c00218{left:253.080000px;}
.x54_c00218{left:255.000000px;}
.xc3_c00218{left:256.080000px;}
.xae_c00218{left:258.420000px;}
.xba_c00218{left:259.920000px;}
.x65_c00218{left:261.000000px;}
.x13_c00218{left:262.080000px;}
.x1e_c00218{left:264.000000px;}
.x95_c00218{left:267.420000px;}
.x36_c00218{left:268.500000px;}
.x3f_c00218{left:271.920000px;}
.xde_c00218{left:273.000000px;}
.x5e_c00218{left:274.920000px;}
.x1f_c00218{left:278.580000px;}
.x14_c00218{left:280.920000px;}
.xd8_c00218{left:282.420000px;}
.xa7_c00218{left:283.500000px;}
.xe5_c00218{left:285.000000px;}
.x66_c00218{left:289.080000px;}
.x70_c00218{left:291.000000px;}
.x55_c00218{left:292.080000px;}
.x4a_c00218{left:294.420000px;}
.x87_c00218{left:297.000000px;}
.x40_c00218{left:298.920000px;}
.x71_c00218{left:301.500000px;}
.x6_c00218{left:303.420000px;}
.xe6_c00218{left:304.500000px;}
.x15_c00218{left:307.500000px;}
.xbb_c00218{left:309.000000px;}
.x67_c00218{left:310.920000px;}
.xcc_c00218{left:313.920000px;}
.x6e_c00218{left:315.420000px;}
.x96_c00218{left:316.500000px;}
.x72_c00218{left:318.000000px;}
.x88_c00218{left:319.500000px;}
.x5f_c00218{left:321.000000px;}
.x2b_c00218{left:323.580000px;}
.x20_c00218{left:325.500000px;}
.x9d_c00218{left:329.580000px;}
.xb3_c00218{left:331.500000px;}
.x89_c00218{left:333.000000px;}
.xdf_c00218{left:334.500000px;}
.xc4_c00218{left:336.000000px;}
.x56_c00218{left:338.580000px;}
.x41_c00218{left:340.500000px;}
.xa8_c00218{left:342.000000px;}
.x2c_c00218{left:343.500000px;}
.xeb_c00218{left:344.775000px;}
.xe7_c00218{left:346.920000px;}
.x16_c00218{left:348.000000px;}
.x37_c00218{left:352.500000px;}
.x80_c00218{left:354.420000px;}
.xc5_c00218{left:356.580000px;}
.x7a_c00218{left:358.500000px;}
.x97_c00218{left:360.000000px;}
.x7_c00218{left:361.920000px;}
.x73_c00218{left:363.000000px;}
.x4b_c00218{left:366.000000px;}
.x21_c00218{left:367.500000px;}
.x8a_c00218{left:373.500000px;}
.xd4_c00218{left:376.500000px;}
.x2d_c00218{left:379.500000px;}
.x68_c00218{left:382.920000px;}
.x57_c00218{left:385.920000px;}
.xaf_c00218{left:388.080000px;}
.xa9_c00218{left:389.580000px;}
.x81_c00218{left:393.000000px;}
.xee_c00218{left:394.080000px;}
.x74_c00218{left:396.000000px;}
.x2e_c00218{left:397.920000px;}
.x2_c00218{left:399.000000px;}
.xc6_c00218{left:402.420000px;}
.x60_c00218{left:403.500000px;}
.x90_c00218{left:405.000000px;}
.x17_c00218{left:408.420000px;}
.x4c_c00218{left:409.500000px;}
.x75_c00218{left:413.580000px;}
.x8b_c00218{left:415.920000px;}
.xaa_c00218{left:418.920000px;}
.x38_c00218{left:420.000000px;}
.x8_c00218{left:421.500000px;}
.x2f_c00218{left:424.080000px;}
.xb4_c00218{left:426.420000px;}
.xcd_c00218{left:430.275000px;}
.x98_c00218{left:433.920000px;}
.x9e_c00218{left:436.920000px;}
.x82_c00218{left:439.500000px;}
.x9_c00218{left:440.580000px;}
.xd5_c00218{left:442.920000px;}
.x22_c00218{left:445.920000px;}
.xab_c00218{left:448.500000px;}
.x7b_c00218{left:450.420000px;}
.x8c_c00218{left:451.920000px;}
.x4d_c00218{left:453.420000px;}
.x9f_c00218{left:454.920000px;}
.xd9_c00218{left:456.420000px;}
.x61_c00218{left:457.500000px;}
.xc7_c00218{left:462.420000px;}
.x76_c00218{left:463.500000px;}
.xce_c00218{left:468.855000px;}
.xa_c00218{left:472.500000px;}
.x39_c00218{left:473.580000px;}
.x69_c00218{left:475.920000px;}
.x18_c00218{left:477.000000px;}
.x8d_c00218{left:478.500000px;}
.xe0_c00218{left:480.000000px;}
.xb0_c00218{left:481.080000px;}
.x7c_c00218{left:483.420000px;}
.xd6_c00218{left:484.920000px;}
.xa0_c00218{left:489.000000px;}
.x23_c00218{left:490.500000px;}
.x3a_c00218{left:493.500000px;}
.x30_c00218{left:495.000000px;}
.x91_c00218{left:496.500000px;}
.x42_c00218{left:498.000000px;}
.xb5_c00218{left:505.500000px;}
.x83_c00218{left:507.000000px;}
.x4e_c00218{left:508.920000px;}
.xb_c00218{left:511.500000px;}
.x58_c00218{left:514.500000px;}
.xc8_c00218{left:515.775000px;}
.x62_c00218{left:518.580000px;}
.xef_c00218{left:520.500000px;}
.x3b_c00218{left:522.000000px;}
.xec_c00218{left:523.080000px;}
.x6a_c00218{left:525.000000px;}
.x77_c00218{left:526.080000px;}
.x43_c00218{left:527.580000px;}
.xe2_c00218{left:529.275000px;}
.x24_c00218{left:531.000000px;}
.x8e_c00218{left:534.420000px;}
.xa1_c00218{left:535.500000px;}
.x59_c00218{left:537.000000px;}
.xbe_c00218{left:538.080000px;}
.xe8_c00218{left:542.580000px;}
.xc_c00218{left:544.500000px;}
.xcf_c00218{left:547.920000px;}
.xc9_c00218{left:550.920000px;}
.x25_c00218{left:552.000000px;}
.x19_c00218{left:553.500000px;}
.x99_c00218{left:555.000000px;}
.xbf_c00218{left:556.920000px;}
.x44_c00218{left:558.000000px;}
.x7d_c00218{left:559.500000px;}
.xda_c00218{left:562.500000px;}
.x92_c00218{left:564.420000px;}
.x4f_c00218{left:568.920000px;}
.x31_c00218{left:572.580000px;}
.x5a_c00218{left:578.580000px;}
.xb1_c00218{left:580.080000px;}
.xc0_c00218{left:582.000000px;}
.x26_c00218{left:583.500000px;}
.x84_c00218{left:585.000000px;}
.x6b_c00218{left:586.500000px;}
.xa2_c00218{left:589.500000px;}
.xe3_c00218{left:590.580000px;}
.x93_c00218{left:594.000000px;}
.xd_c00218{left:598.920000px;}
.xb6_c00218{left:600.420000px;}
.xd0_c00218{left:603.420000px;}
.x45_c00218{left:604.500000px;}
.xe1_c00218{left:605.580000px;}
.x50_c00218{left:607.920000px;}
.x5b_c00218{left:610.080000px;}
.x3c_c00218{left:612.420000px;}
.x32_c00218{left:618.420000px;}
.x85_c00218{left:622.920000px;}
.x9a_c00218{left:625.080000px;}
.xd2_c00218{left:627.000000px;}
.xb7_c00218{left:628.920000px;}
.xe9_c00218{left:630.000000px;}
.x6c_c00218{left:633.420000px;}
.x27_c00218{left:634.500000px;}
.xe_c00218{left:636.420000px;}
.xac_c00218{left:639.420000px;}
.xf0_c00218{left:642.000000px;}
.x46_c00218{left:643.080000px;}
.x51_c00218{left:645.420000px;}
.x1a_c00218{left:646.500000px;}
.x86_c00218{left:651.420000px;}
.x63_c00218{left:654.000000px;}
.xdb_c00218{left:655.080000px;}
.x47_c00218{left:661.500000px;}
.xa3_c00218{left:663.000000px;}
.xf_c00218{left:664.920000px;}
.xb8_c00218{left:669.000000px;}
.x28_c00218{left:672.000000px;}
.x9b_c00218{left:673.500000px;}
.x7e_c00218{left:678.420000px;}
.x5c_c00218{left:679.500000px;}
.xad_c00218{left:682.080000px;}
.x1b_c00218{left:685.500000px;}
.x78_c00218{left:686.580000px;}
.x33_c00218{left:688.080000px;}
.xdc_c00218{left:690.000000px;}
.xb2_c00218{left:694.920000px;}
.x3d_c00218{left:696.000000px;}
.xc1_c00218{left:697.080000px;}
.xa4_c00218{left:698.580000px;}
.x1c_c00218{left:705.000000px;}
.x1_c00218{left:706.275000px;}
.x52_c00218{left:715.500000px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.v1_c00218{vertical-align:5.333333pt;}
.ls0_c00218{letter-spacing:0.000000pt;}
.ws3_c00218{word-spacing:-6.351876pt;}
.ws1_c00218{word-spacing:-5.497444pt;}
.ws0_c00218{word-spacing:-3.474094pt;}
.ws2_c00218{word-spacing:-2.850987pt;}
.ws4_c00218{word-spacing:0.000000pt;}
.fs7_c00218{font-size:3.040000pt;}
.fs8_c00218{font-size:10.560000pt;}
.fs4_c00218{font-size:16.640000pt;}
.fs1_c00218{font-size:18.133333pt;}
.fs3_c00218{font-size:22.666667pt;}
.fs2_c00218{font-size:25.706667pt;}
.fs5_c00218{font-size:28.746667pt;}
.fs0_c00218{font-size:31.733333pt;}
.fs6_c00218{font-size:34.773333pt;}
.y0_c00218{bottom:0.000000pt;}
.ycd_c00218{bottom:224.360000pt;}
.ycb_c00218{bottom:239.773333pt;}
.yc9_c00218{bottom:241.106667pt;}
.yca_c00218{bottom:241.693333pt;}
.ycc_c00218{bottom:242.066667pt;}
.yc7_c00218{bottom:243.026667pt;}
.yc8_c00218{bottom:243.040000pt;}
.yc6_c00218{bottom:257.106667pt;}
.yc4_c00218{bottom:258.440000pt;}
.yc5_c00218{bottom:259.026667pt;}
.yc2_c00218{bottom:259.226667pt;}
.yc1_c00218{bottom:260.360000pt;}
.yc3_c00218{bottom:260.373333pt;}
.yc0_c00218{bottom:273.693333pt;}
.ybe_c00218{bottom:274.640000pt;}
.ybf_c00218{bottom:275.400000pt;}
.ybb_c00218{bottom:275.773333pt;}
.ybd_c00218{bottom:276.733333pt;}
.ybc_c00218{bottom:277.706667pt;}
.yba_c00218{bottom:295.026667pt;}
.yb5_c00218{bottom:310.440000pt;}
.yb9_c00218{bottom:311.400000pt;}
.yb8_c00218{bottom:311.973333pt;}
.yb7_c00218{bottom:312.360000pt;}
.yb6_c00218{bottom:312.373333pt;}
.yb1_c00218{bottom:335.026667pt;}
.yb0_c00218{bottom:335.400000pt;}
.yb4_c00218{bottom:335.600000pt;}
.yb3_c00218{bottom:335.973333pt;}
.yb2_c00218{bottom:336.933333pt;}
.yad_c00218{bottom:351.400000pt;}
.yaf_c00218{bottom:351.600000pt;}
.yac_c00218{bottom:352.360000pt;}
.yae_c00218{bottom:354.266667pt;}
.yaa_c00218{bottom:375.773333pt;}
.ya9_c00218{bottom:375.973333pt;}
.yab_c00218{bottom:376.733333pt;}
.ya8_c00218{bottom:377.693333pt;}
.ya7_c00218{bottom:416.560000pt;}
.ya6_c00218{bottom:417.693333pt;}
.ya2_c00218{bottom:429.893333pt;}
.ya0_c00218{bottom:430.466667pt;}
.ya5_c00218{bottom:431.973333pt;}
.ya4_c00218{bottom:432.360000pt;}
.ya3_c00218{bottom:433.106667pt;}
.y9e_c00218{bottom:433.893333pt;}
.y9d_c00218{bottom:434.066667pt;}
.ya1_c00218{bottom:435.026667pt;}
.y9f_c00218{bottom:437.893333pt;}
.y9c_c00218{bottom:448.360000pt;}
.y96_c00218{bottom:449.693333pt;}
.y9b_c00218{bottom:450.440000pt;}
.y99_c00218{bottom:451.400000pt;}
.y9a_c00218{bottom:451.600000pt;}
.y97_c00218{bottom:452.360000pt;}
.y98_c00218{bottom:452.560000pt;}
.y94_c00218{bottom:467.026667pt;}
.y95_c00218{bottom:467.773333pt;}
.y92_c00218{bottom:467.973333pt;}
.y91_c00218{bottom:469.106667pt;}
.y93_c00218{bottom:469.693333pt;}
.y90_c00218{bottom:470.066667pt;}
.y8f_c00218{bottom:471.026667pt;}
.y89_c00218{bottom:484.733333pt;}
.y8e_c00218{bottom:485.106667pt;}
.y8b_c00218{bottom:485.693333pt;}
.y8d_c00218{bottom:486.066667pt;}
.y88_c00218{bottom:486.440000pt;}
.y8a_c00218{bottom:487.400000pt;}
.y8c_c00218{bottom:488.360000pt;}
.y86_c00218{bottom:501.693333pt;}
.y87_c00218{bottom:502.440000pt;}
.y80_c00218{bottom:503.026667pt;}
.y82_c00218{bottom:503.773333pt;}
.y81_c00218{bottom:504.733333pt;}
.y83_c00218{bottom:505.306667pt;}
.y84_c00218{bottom:505.693333pt;}
.y85_c00218{bottom:506.640000pt;}
.y7a_c00218{bottom:519.973333pt;}
.y7b_c00218{bottom:520.360000pt;}
.y7e_c00218{bottom:520.733333pt;}
.y7f_c00218{bottom:521.106667pt;}
.y7c_c00218{bottom:521.893333pt;}
.y79_c00218{bottom:523.026667pt;}
.y7d_c00218{bottom:523.040000pt;}
.y78_c00218{bottom:536.360000pt;}
.y74_c00218{bottom:537.693333pt;}
.y75_c00218{bottom:538.440000pt;}
.y77_c00218{bottom:538.640000pt;}
.y76_c00218{bottom:540.360000pt;}
.y73_c00218{bottom:555.026667pt;}
.y71_c00218{bottom:555.773333pt;}
.y70_c00218{bottom:555.973333pt;}
.y72_c00218{bottom:557.693333pt;}
.y6c_c00218{bottom:572.360000pt;}
.y6b_c00218{bottom:573.106667pt;}
.y6f_c00218{bottom:573.306667pt;}
.y6d_c00218{bottom:573.693333pt;}
.y6e_c00218{bottom:575.026667pt;}
.y69_c00218{bottom:590.640000pt;}
.y6a_c00218{bottom:591.026667pt;}
.y68_c00218{bottom:591.400000pt;}
.y67_c00218{bottom:591.773333pt;}
.y66_c00218{bottom:592.360000pt;}
.y64_c00218{bottom:592.733333pt;}
.y65_c00218{bottom:593.693333pt;}
.y63_c00218{bottom:609.106667pt;}
.y62_c00218{bottom:610.640000pt;}
.y61_c00218{bottom:611.026667pt;}
.y5f_c00218{bottom:627.400000pt;}
.y60_c00218{bottom:628.360000pt;}
.y59_c00218{bottom:643.773333pt;}
.y5e_c00218{bottom:644.360000pt;}
.y5c_c00218{bottom:644.560000pt;}
.y5d_c00218{bottom:644.733333pt;}
.y5b_c00218{bottom:645.306667pt;}
.y58_c00218{bottom:645.693333pt;}
.y5a_c00218{bottom:646.640000pt;}
.y55_c00218{bottom:660.733333pt;}
.y56_c00218{bottom:661.106667pt;}
.y57_c00218{bottom:662.066667pt;}
.y54_c00218{bottom:663.026667pt;}
.y50_c00218{bottom:678.440000pt;}
.y53_c00218{bottom:679.400000pt;}
.y52_c00218{bottom:680.360000pt;}
.y51_c00218{bottom:681.306667pt;}
.y4e_c00218{bottom:695.026667pt;}
.y4c_c00218{bottom:695.773333pt;}
.y4f_c00218{bottom:696.733333pt;}
.y4b_c00218{bottom:697.693333pt;}
.y4d_c00218{bottom:697.893333pt;}
.y46_c00218{bottom:712.360000pt;}
.y49_c00218{bottom:713.106667pt;}
.y48_c00218{bottom:714.066667pt;}
.y47_c00218{bottom:715.026667pt;}
.y4a_c00218{bottom:715.973333pt;}
.y43_c00218{bottom:730.440000pt;}
.y42_c00218{bottom:731.773333pt;}
.y41_c00218{bottom:731.973333pt;}
.y45_c00218{bottom:732.360000pt;}
.y44_c00218{bottom:732.560000pt;}
.y3e_c00218{bottom:732.733333pt;}
.y40_c00218{bottom:733.306667pt;}
.y3f_c00218{bottom:733.693333pt;}
.y39_c00218{bottom:747.773333pt;}
.y3b_c00218{bottom:748.160000pt;}
.y3a_c00218{bottom:749.106667pt;}
.y3d_c00218{bottom:749.693333pt;}
.y3c_c00218{bottom:750.066667pt;}
.y38_c00218{bottom:751.026667pt;}
.y37_c00218{bottom:766.440000pt;}
.y36_c00218{bottom:768.360000pt;}
.y35_c00218{bottom:783.773333pt;}
.y32_c00218{bottom:784.733333pt;}
.y33_c00218{bottom:785.693333pt;}
.y34_c00218{bottom:785.893333pt;}
.y2d_c00218{bottom:801.106667pt;}
.y2c_c00218{bottom:801.893333pt;}
.y2e_c00218{bottom:802.066667pt;}
.y31_c00218{bottom:802.640000pt;}
.y2f_c00218{bottom:803.026667pt;}
.y30_c00218{bottom:803.973333pt;}
.y2b_c00218{bottom:818.440000pt;}
.y28_c00218{bottom:819.400000pt;}
.y29_c00218{bottom:820.360000pt;}
.y2a_c00218{bottom:820.560000pt;}
.y26_c00218{bottom:837.106667pt;}
.y27_c00218{bottom:837.306667pt;}
.y25_c00218{bottom:838.066667pt;}
.y24_c00218{bottom:838.640000pt;}
.y23_c00218{bottom:839.026667pt;}
.y1f_c00218{bottom:855.026667pt;}
.y22_c00218{bottom:855.400000pt;}
.y21_c00218{bottom:855.973333pt;}
.y20_c00218{bottom:856.360000pt;}
.y1e_c00218{bottom:870.440000pt;}
.y1d_c00218{bottom:871.400000pt;}
.y1b_c00218{bottom:871.773333pt;}
.y1c_c00218{bottom:873.306667pt;}
.y1a_c00218{bottom:873.693333pt;}
.y15_c00218{bottom:889.106667pt;}
.y19_c00218{bottom:889.693333pt;}
.y17_c00218{bottom:890.066667pt;}
.y18_c00218{bottom:890.640000pt;}
.y16_c00218{bottom:891.026667pt;}
.y13_c00218{bottom:905.306667pt;}
.yf_c00218{bottom:906.440000pt;}
.y14_c00218{bottom:907.026667pt;}
.y11_c00218{bottom:907.226667pt;}
.y12_c00218{bottom:907.400000pt;}
.y10_c00218{bottom:908.360000pt;}
.yc_c00218{bottom:923.400000pt;}
.ya_c00218{bottom:923.773333pt;}
.ye_c00218{bottom:924.560000pt;}
.yb_c00218{bottom:925.693333pt;}
.yd_c00218{bottom:925.893333pt;}
.y5_c00218{bottom:940.360000pt;}
.y3_c00218{bottom:941.106667pt;}
.y7_c00218{bottom:941.306667pt;}
.y9_c00218{bottom:942.066667pt;}
.y6_c00218{bottom:942.640000pt;}
.y4_c00218{bottom:943.026667pt;}
.y8_c00218{bottom:943.226667pt;}
.y1_c00218{bottom:975.773333pt;}
.y2_c00218{bottom:976.933333pt;}
.h9_c00218{height:3.739141pt;}
.ha_c00218{height:12.988594pt;}
.h5_c00218{height:20.466875pt;}
.h2_c00218{height:22.303646pt;}
.h4_c00218{height:27.879557pt;}
.h3_c00218{height:31.618698pt;}
.h6_c00218{height:35.357839pt;}
.h1_c00218{height:39.031380pt;}
.h7_c00218{height:40.691172pt;}
.h8_c00218{height:42.770521pt;}
.h0_c00218{height:1186.666667pt;}
.w0_c00218{width:782.666667pt;}
.x0_c00218{left:0.000000pt;}
.x10_c00218{left:134.666667pt;}
.xca_c00218{left:136.373333pt;}
.x6f_c00218{left:148.960000pt;}
.x3_c00218{left:150.293333pt;}
.x5d_c00218{left:152.373333pt;}
.xd3_c00218{left:154.666667pt;}
.x94_c00218{left:160.000000pt;}
.x34_c00218{left:161.333333pt;}
.xd7_c00218{left:164.000000pt;}
.xb9_c00218{left:169.706667pt;}
.x9c_c00218{left:172.000000pt;}
.x7f_c00218{left:173.706667pt;}
.xa5_c00218{left:175.040000pt;}
.x11_c00218{left:176.960000pt;}
.xbc_c00218{left:179.040000pt;}
.xd1_c00218{left:181.333333pt;}
.x29_c00218{left:182.666667pt;}
.x48_c00218{left:183.626667pt;}
.x6d_c00218{left:188.373333pt;}
.x64_c00218{left:189.333333pt;}
.x53_c00218{left:190.666667pt;}
.xc2_c00218{left:191.626667pt;}
.x12_c00218{left:193.333333pt;}
.xea_c00218{left:197.333333pt;}
.x4_c00218{left:198.293333pt;}
.x1d_c00218{left:201.333333pt;}
.x8f_c00218{left:203.040000pt;}
.xdd_c00218{left:205.706667pt;}
.xcb_c00218{left:206.666667pt;}
.x3e_c00218{left:208.373333pt;}
.x35_c00218{left:209.706667pt;}
.x79_c00218{left:211.040000pt;}
.x49_c00218{left:213.333333pt;}
.xe4_c00218{left:214.293333pt;}
.x5_c00218{left:216.373333pt;}
.xed_c00218{left:220.000000pt;}
.xbd_c00218{left:220.960000pt;}
.x2a_c00218{left:222.666667pt;}
.xa6_c00218{left:224.960000pt;}
.x54_c00218{left:226.666667pt;}
.xc3_c00218{left:227.626667pt;}
.xae_c00218{left:229.706667pt;}
.xba_c00218{left:231.040000pt;}
.x65_c00218{left:232.000000pt;}
.x13_c00218{left:232.960000pt;}
.x1e_c00218{left:234.666667pt;}
.x95_c00218{left:237.706667pt;}
.x36_c00218{left:238.666667pt;}
.x3f_c00218{left:241.706667pt;}
.xde_c00218{left:242.666667pt;}
.x5e_c00218{left:244.373333pt;}
.x1f_c00218{left:247.626667pt;}
.x14_c00218{left:249.706667pt;}
.xd8_c00218{left:251.040000pt;}
.xa7_c00218{left:252.000000pt;}
.xe5_c00218{left:253.333333pt;}
.x66_c00218{left:256.960000pt;}
.x70_c00218{left:258.666667pt;}
.x55_c00218{left:259.626667pt;}
.x4a_c00218{left:261.706667pt;}
.x87_c00218{left:264.000000pt;}
.x40_c00218{left:265.706667pt;}
.x71_c00218{left:268.000000pt;}
.x6_c00218{left:269.706667pt;}
.xe6_c00218{left:270.666667pt;}
.x15_c00218{left:273.333333pt;}
.xbb_c00218{left:274.666667pt;}
.x67_c00218{left:276.373333pt;}
.xcc_c00218{left:279.040000pt;}
.x6e_c00218{left:280.373333pt;}
.x96_c00218{left:281.333333pt;}
.x72_c00218{left:282.666667pt;}
.x88_c00218{left:284.000000pt;}
.x5f_c00218{left:285.333333pt;}
.x2b_c00218{left:287.626667pt;}
.x20_c00218{left:289.333333pt;}
.x9d_c00218{left:292.960000pt;}
.xb3_c00218{left:294.666667pt;}
.x89_c00218{left:296.000000pt;}
.xdf_c00218{left:297.333333pt;}
.xc4_c00218{left:298.666667pt;}
.x56_c00218{left:300.960000pt;}
.x41_c00218{left:302.666667pt;}
.xa8_c00218{left:304.000000pt;}
.x2c_c00218{left:305.333333pt;}
.xeb_c00218{left:306.466667pt;}
.xe7_c00218{left:308.373333pt;}
.x16_c00218{left:309.333333pt;}
.x37_c00218{left:313.333333pt;}
.x80_c00218{left:315.040000pt;}
.xc5_c00218{left:316.960000pt;}
.x7a_c00218{left:318.666667pt;}
.x97_c00218{left:320.000000pt;}
.x7_c00218{left:321.706667pt;}
.x73_c00218{left:322.666667pt;}
.x4b_c00218{left:325.333333pt;}
.x21_c00218{left:326.666667pt;}
.x8a_c00218{left:332.000000pt;}
.xd4_c00218{left:334.666667pt;}
.x2d_c00218{left:337.333333pt;}
.x68_c00218{left:340.373333pt;}
.x57_c00218{left:343.040000pt;}
.xaf_c00218{left:344.960000pt;}
.xa9_c00218{left:346.293333pt;}
.x81_c00218{left:349.333333pt;}
.xee_c00218{left:350.293333pt;}
.x74_c00218{left:352.000000pt;}
.x2e_c00218{left:353.706667pt;}
.x2_c00218{left:354.666667pt;}
.xc6_c00218{left:357.706667pt;}
.x60_c00218{left:358.666667pt;}
.x90_c00218{left:360.000000pt;}
.x17_c00218{left:363.040000pt;}
.x4c_c00218{left:364.000000pt;}
.x75_c00218{left:367.626667pt;}
.x8b_c00218{left:369.706667pt;}
.xaa_c00218{left:372.373333pt;}
.x38_c00218{left:373.333333pt;}
.x8_c00218{left:374.666667pt;}
.x2f_c00218{left:376.960000pt;}
.xb4_c00218{left:379.040000pt;}
.xcd_c00218{left:382.466667pt;}
.x98_c00218{left:385.706667pt;}
.x9e_c00218{left:388.373333pt;}
.x82_c00218{left:390.666667pt;}
.x9_c00218{left:391.626667pt;}
.xd5_c00218{left:393.706667pt;}
.x22_c00218{left:396.373333pt;}
.xab_c00218{left:398.666667pt;}
.x7b_c00218{left:400.373333pt;}
.x8c_c00218{left:401.706667pt;}
.x4d_c00218{left:403.040000pt;}
.x9f_c00218{left:404.373333pt;}
.xd9_c00218{left:405.706667pt;}
.x61_c00218{left:406.666667pt;}
.xc7_c00218{left:411.040000pt;}
.x76_c00218{left:412.000000pt;}
.xce_c00218{left:416.760000pt;}
.xa_c00218{left:420.000000pt;}
.x39_c00218{left:420.960000pt;}
.x69_c00218{left:423.040000pt;}
.x18_c00218{left:424.000000pt;}
.x8d_c00218{left:425.333333pt;}
.xe0_c00218{left:426.666667pt;}
.xb0_c00218{left:427.626667pt;}
.x7c_c00218{left:429.706667pt;}
.xd6_c00218{left:431.040000pt;}
.xa0_c00218{left:434.666667pt;}
.x23_c00218{left:436.000000pt;}
.x3a_c00218{left:438.666667pt;}
.x30_c00218{left:440.000000pt;}
.x91_c00218{left:441.333333pt;}
.x42_c00218{left:442.666667pt;}
.xb5_c00218{left:449.333333pt;}
.x83_c00218{left:450.666667pt;}
.x4e_c00218{left:452.373333pt;}
.xb_c00218{left:454.666667pt;}
.x58_c00218{left:457.333333pt;}
.xc8_c00218{left:458.466667pt;}
.x62_c00218{left:460.960000pt;}
.xef_c00218{left:462.666667pt;}
.x3b_c00218{left:464.000000pt;}
.xec_c00218{left:464.960000pt;}
.x6a_c00218{left:466.666667pt;}
.x77_c00218{left:467.626667pt;}
.x43_c00218{left:468.960000pt;}
.xe2_c00218{left:470.466667pt;}
.x24_c00218{left:472.000000pt;}
.x8e_c00218{left:475.040000pt;}
.xa1_c00218{left:476.000000pt;}
.x59_c00218{left:477.333333pt;}
.xbe_c00218{left:478.293333pt;}
.xe8_c00218{left:482.293333pt;}
.xc_c00218{left:484.000000pt;}
.xcf_c00218{left:487.040000pt;}
.xc9_c00218{left:489.706667pt;}
.x25_c00218{left:490.666667pt;}
.x19_c00218{left:492.000000pt;}
.x99_c00218{left:493.333333pt;}
.xbf_c00218{left:495.040000pt;}
.x44_c00218{left:496.000000pt;}
.x7d_c00218{left:497.333333pt;}
.xda_c00218{left:500.000000pt;}
.x92_c00218{left:501.706667pt;}
.x4f_c00218{left:505.706667pt;}
.x31_c00218{left:508.960000pt;}
.x5a_c00218{left:514.293333pt;}
.xb1_c00218{left:515.626667pt;}
.xc0_c00218{left:517.333333pt;}
.x26_c00218{left:518.666667pt;}
.x84_c00218{left:520.000000pt;}
.x6b_c00218{left:521.333333pt;}
.xa2_c00218{left:524.000000pt;}
.xe3_c00218{left:524.960000pt;}
.x93_c00218{left:528.000000pt;}
.xd_c00218{left:532.373333pt;}
.xb6_c00218{left:533.706667pt;}
.xd0_c00218{left:536.373333pt;}
.x45_c00218{left:537.333333pt;}
.xe1_c00218{left:538.293333pt;}
.x50_c00218{left:540.373333pt;}
.x5b_c00218{left:542.293333pt;}
.x3c_c00218{left:544.373333pt;}
.x32_c00218{left:549.706667pt;}
.x85_c00218{left:553.706667pt;}
.x9a_c00218{left:555.626667pt;}
.xd2_c00218{left:557.333333pt;}
.xb7_c00218{left:559.040000pt;}
.xe9_c00218{left:560.000000pt;}
.x6c_c00218{left:563.040000pt;}
.x27_c00218{left:564.000000pt;}
.xe_c00218{left:565.706667pt;}
.xac_c00218{left:568.373333pt;}
.xf0_c00218{left:570.666667pt;}
.x46_c00218{left:571.626667pt;}
.x51_c00218{left:573.706667pt;}
.x1a_c00218{left:574.666667pt;}
.x86_c00218{left:579.040000pt;}
.x63_c00218{left:581.333333pt;}
.xdb_c00218{left:582.293333pt;}
.x47_c00218{left:588.000000pt;}
.xa3_c00218{left:589.333333pt;}
.xf_c00218{left:591.040000pt;}
.xb8_c00218{left:594.666667pt;}
.x28_c00218{left:597.333333pt;}
.x9b_c00218{left:598.666667pt;}
.x7e_c00218{left:603.040000pt;}
.x5c_c00218{left:604.000000pt;}
.xad_c00218{left:606.293333pt;}
.x1b_c00218{left:609.333333pt;}
.x78_c00218{left:610.293333pt;}
.x33_c00218{left:611.626667pt;}
.xdc_c00218{left:613.333333pt;}
.xb2_c00218{left:617.706667pt;}
.x3d_c00218{left:618.666667pt;}
.xc1_c00218{left:619.626667pt;}
.xa4_c00218{left:620.960000pt;}
.x1c_c00218{left:626.666667pt;}
.x1_c00218{left:627.800000pt;}
.x52_c00218{left:636.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_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_6777b56e39353810dbc31f24.woff2')format("woff");}.ff1_c00219{font-family:ff1_c00219;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m10a_c00219{transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);}
.mbb_c00219{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00219{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m4f_c00219{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.mea_c00219{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);}
.mb3_c00219{transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);}
.m7_c00219{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.md5_c00219{transform:matrix(0.363880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363880,0.000000,0.000000,0.250000,0,0);}
.md4_c00219{transform:matrix(0.365031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365031,0.000000,0.000000,0.250000,0,0);}
.md9_c00219{transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);}
.m103_c00219{transform:matrix(0.368482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368482,0.000000,0.000000,0.250000,0,0);}
.m6b_c00219{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m1_c00219{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m37_c00219{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m12_c00219{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mf3_c00219{transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);}
.mc2_c00219{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.mf4_c00219{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m9a_c00219{transform:matrix(0.386120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386120,0.000000,0.000000,0.250000,0,0);}
.m21_c00219{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m2d_c00219{transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);}
.mfe_c00219{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.meb_c00219{transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);}
.m9f_c00219{transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);}
.me7_c00219{transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);}
.m45_c00219{transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);}
.m71_c00219{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.md1_c00219{transform:matrix(0.394555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394555,0.000000,0.000000,0.250000,0,0);}
.m32_c00219{transform:matrix(0.395228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395228,0.000000,0.000000,0.250000,0,0);}
.mcf_c00219{transform:matrix(0.397239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397239,0.000000,0.000000,0.250000,0,0);}
.mb1_c00219{transform:matrix(0.398773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398773,0.000000,0.000000,0.250000,0,0);}
.md2_c00219{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.mae_c00219{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m7a_c00219{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.mc8_c00219{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m101_c00219{transform:matrix(0.406442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406442,0.000000,0.000000,0.250000,0,0);}
.mbd_c00219{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m55_c00219{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mbc_c00219{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.mf5_c00219{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mdb_c00219{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m3c_c00219{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m9c_c00219{transform:matrix(0.413344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413344,0.000000,0.000000,0.250000,0,0);}
.m109_c00219{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.m75_c00219{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m88_c00219{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m113_c00219{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.mfc_c00219{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m7e_c00219{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m74_c00219{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m9_c00219{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.mf1_c00219{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mde_c00219{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m104_c00219{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m105_c00219{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.me1_c00219{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m47_c00219{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m38_c00219{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.mc3_c00219{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mb4_c00219{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m8e_c00219{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.ma0_c00219{transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);}
.m97_c00219{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m10_c00219{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.ma2_c00219{transform:matrix(0.424847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424847,0.000000,0.000000,0.250000,0,0);}
.m4a_c00219{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mf9_c00219{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m86_c00219{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m65_c00219{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.me9_c00219{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.m61_c00219{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m49_c00219{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.mf7_c00219{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m10b_c00219{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m99_c00219{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m9e_c00219{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m80_c00219{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m81_c00219{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m48_c00219{transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);}
.mb9_c00219{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.me6_c00219{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m67_c00219{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m94_c00219{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.mff_c00219{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m7b_c00219{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m6a_c00219{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.mb0_c00219{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m4c_c00219{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.me5_c00219{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.mce_c00219{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.maf_c00219{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m2e_c00219{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m77_c00219{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.mac_c00219{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m89_c00219{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m90_c00219{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m33_c00219{transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);}
.me2_c00219{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m59_c00219{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mab_c00219{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m72_c00219{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.m7c_c00219{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m83_c00219{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mc4_c00219{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m7d_c00219{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m91_c00219{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.mf8_c00219{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.mdc_c00219{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.ma5_c00219{transform:matrix(0.467069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467069,0.000000,0.000000,0.250000,0,0);}
.m96_c00219{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.mfd_c00219{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m30_c00219{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m10c_c00219{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.mfb_c00219{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.mfa_c00219{transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);}
.m42_c00219{transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);}
.m98_c00219{transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);}
.m35_c00219{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.mec_c00219{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m102_c00219{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m29_c00219{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m1d_c00219{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m6f_c00219{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.m39_c00219{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.ma4_c00219{transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);}
.m68_c00219{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.md0_c00219{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m106_c00219{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m17_c00219{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m18_c00219{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m64_c00219{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.mda_c00219{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m93_c00219{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m2_c00219{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);}
.m108_c00219{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.mbf_c00219{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.mad_c00219{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m58_c00219{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.m4d_c00219{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m5d_c00219{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m11_c00219{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m60_c00219{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m23_c00219{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m24_c00219{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m1c_c00219{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m53_c00219{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.med_c00219{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m16_c00219{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mc6_c00219{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m40_c00219{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.ma1_c00219{transform:matrix(0.522263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522263,0.000000,0.000000,0.250000,0,0);}
.m4_c00219{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.ma_c00219{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.me0_c00219{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.mdd_c00219{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m112_c00219{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.md7_c00219{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m66_c00219{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m79_c00219{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m9b_c00219{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mb_c00219{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m13_c00219{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mf_c00219{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m6_c00219{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m87_c00219{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m1a_c00219{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m85_c00219{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m14_c00219{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.me_c00219{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m43_c00219{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m28_c00219{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m92_c00219{transform:matrix(0.546846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546846,0.000000,0.000000,0.250000,0,0);}
.mef_c00219{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m73_c00219{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m3d_c00219{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m7f_c00219{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mc9_c00219{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m2f_c00219{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m56_c00219{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mc_c00219{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mb6_c00219{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.me4_c00219{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m5a_c00219{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m8a_c00219{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.md_c00219{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mf2_c00219{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m5b_c00219{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.maa_c00219{transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);}
.mbe_c00219{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.ma8_c00219{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m6c_c00219{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m82_c00219{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m9d_c00219{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mee_c00219{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mb5_c00219{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m44_c00219{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.mb7_c00219{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mc5_c00219{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.md6_c00219{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m1e_c00219{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m95_c00219{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.mf6_c00219{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m62_c00219{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.me8_c00219{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.me3_c00219{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.md3_c00219{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m8b_c00219{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.m27_c00219{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m22_c00219{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m6d_c00219{transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);}
.m19_c00219{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m36_c00219{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m8d_c00219{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m3b_c00219{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.mca_c00219{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.md8_c00219{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m46_c00219{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m15_c00219{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m50_c00219{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.ma9_c00219{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m5e_c00219{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m111_c00219{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.mc1_c00219{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m26_c00219{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);}
.ma6_c00219{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.m1f_c00219{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m4b_c00219{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m52_c00219{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mdf_c00219{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m0_c00219{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.m3_c00219{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m5c_c00219{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.mcb_c00219{transform:matrix(0.622941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622941,0.000000,0.000000,0.250000,0,0);}
.mba_c00219{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m2b_c00219{transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);}
.m3a_c00219{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m115_c00219{transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);}
.m25_c00219{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m54_c00219{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.mc7_c00219{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m34_c00219{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m10d_c00219{transform:matrix(0.651971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651971,0.000000,0.000000,0.250000,0,0);}
.m8c_c00219{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m31_c00219{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m69_c00219{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m8f_c00219{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m2a_c00219{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m1b_c00219{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m3e_c00219{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.mcc_c00219{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.m70_c00219{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mcd_c00219{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.mb8_c00219{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mf0_c00219{transform:matrix(0.702941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702941,0.000000,0.000000,0.250000,0,0);}
.m4e_c00219{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mb2_c00219{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m57_c00219{transform:matrix(0.723529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.723529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.723529,0.000000,0.000000,0.250000,0,0);}
.m3f_c00219{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m51_c00219{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m41_c00219{transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);}
.m63_c00219{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m110_c00219{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m76_c00219{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m107_c00219{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m8_c00219{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m5f_c00219{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m20_c00219{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m114_c00219{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.ma3_c00219{transform:matrix(0.793269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.793269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.793269,0.000000,0.000000,0.250000,0,0);}
.m10e_c00219{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m6e_c00219{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.ma7_c00219{transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);}
.m78_c00219{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m100_c00219{transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);}
.m84_c00219{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m2c_c00219{transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);}
.m10f_c00219{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m5_c00219{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00219{vertical-align:0.000000px;}
.ls0_c00219{letter-spacing:0.000000px;}
.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;}
.fs3_c00219{font-size:3.420000px;}
.fs9_c00219{font-size:11.880000px;}
.fs7_c00219{font-size:13.620000px;}
.fs5_c00219{font-size:18.720000px;}
.fs0_c00219{font-size:20.400000px;}
.fs6_c00219{font-size:25.500000px;}
.fs2_c00219{font-size:28.920000px;}
.fs1_c00219{font-size:32.340000px;}
.fs4_c00219{font-size:35.700000px;}
.fs8_c00219{font-size:39.120000px;}
.y0_c00219{bottom:0.000000px;}
.yf0_c00219{bottom:250.905000px;}
.yed_c00219{bottom:251.745000px;}
.yeb_c00219{bottom:252.630000px;}
.yec_c00219{bottom:253.905000px;}
.yf1_c00219{bottom:254.130000px;}
.yee_c00219{bottom:254.970000px;}
.yef_c00219{bottom:255.405000px;}
.ye9_c00219{bottom:271.245000px;}
.yea_c00219{bottom:272.325000px;}
.ye6_c00219{bottom:273.405000px;}
.ye7_c00219{bottom:273.420000px;}
.ye8_c00219{bottom:274.470000px;}
.yde_c00219{bottom:287.130000px;}
.ye0_c00219{bottom:289.905000px;}
.ye2_c00219{bottom:290.745000px;}
.ydf_c00219{bottom:291.180000px;}
.ydd_c00219{bottom:291.630000px;}
.ye1_c00219{bottom:291.825000px;}
.ye3_c00219{bottom:292.905000px;}
.ye5_c00219{bottom:293.130000px;}
.ye4_c00219{bottom:293.325000px;}
.yda_c00219{bottom:308.775000px;}
.yd4_c00219{bottom:310.245000px;}
.yd7_c00219{bottom:310.905000px;}
.yd3_c00219{bottom:311.130000px;}
.ydc_c00219{bottom:311.325000px;}
.yd6_c00219{bottom:311.745000px;}
.yd8_c00219{bottom:312.630000px;}
.yd5_c00219{bottom:312.825000px;}
.ydb_c00219{bottom:313.905000px;}
.yd9_c00219{bottom:315.630000px;}
.ycb_c00219{bottom:328.905000px;}
.ycc_c00219{bottom:329.325000px;}
.ycd_c00219{bottom:330.180000px;}
.ycf_c00219{bottom:330.405000px;}
.yd0_c00219{bottom:331.470000px;}
.yd2_c00219{bottom:332.130000px;}
.yce_c00219{bottom:332.325000px;}
.yd1_c00219{bottom:333.405000px;}
.yca_c00219{bottom:348.630000px;}
.yc5_c00219{bottom:349.245000px;}
.yc6_c00219{bottom:350.745000px;}
.yc8_c00219{bottom:350.970000px;}
.yc7_c00219{bottom:351.825000px;}
.yc9_c00219{bottom:352.905000px;}
.ybc_c00219{bottom:368.745000px;}
.yc1_c00219{bottom:369.405000px;}
.yc4_c00219{bottom:369.825000px;}
.yc2_c00219{bottom:370.245000px;}
.ybd_c00219{bottom:370.905000px;}
.yc0_c00219{bottom:371.325000px;}
.yc3_c00219{bottom:371.970000px;}
.ybe_c00219{bottom:372.405000px;}
.ybf_c00219{bottom:373.470000px;}
.yb5_c00219{bottom:388.245000px;}
.yb6_c00219{bottom:388.680000px;}
.ybb_c00219{bottom:388.905000px;}
.yb7_c00219{bottom:389.745000px;}
.yb8_c00219{bottom:390.825000px;}
.yb9_c00219{bottom:391.470000px;}
.yba_c00219{bottom:391.905000px;}
.yac_c00219{bottom:406.905000px;}
.yb4_c00219{bottom:407.745000px;}
.yb2_c00219{bottom:407.970000px;}
.yaf_c00219{bottom:408.405000px;}
.yad_c00219{bottom:408.825000px;}
.yb0_c00219{bottom:409.470000px;}
.yae_c00219{bottom:410.325000px;}
.yb3_c00219{bottom:410.970000px;}
.yb1_c00219{bottom:412.470000px;}
.ya5_c00219{bottom:426.405000px;}
.yaa_c00219{bottom:427.245000px;}
.yab_c00219{bottom:427.470000px;}
.ya8_c00219{bottom:427.905000px;}
.ya4_c00219{bottom:428.325000px;}
.ya6_c00219{bottom:428.745000px;}
.ya9_c00219{bottom:429.405000px;}
.ya7_c00219{bottom:430.905000px;}
.y9c_c00219{bottom:446.325000px;}
.ya2_c00219{bottom:447.180000px;}
.y9b_c00219{bottom:447.405000px;}
.ya0_c00219{bottom:447.825000px;}
.ya3_c00219{bottom:448.245000px;}
.y9d_c00219{bottom:448.680000px;}
.y9f_c00219{bottom:449.745000px;}
.ya1_c00219{bottom:450.405000px;}
.y9e_c00219{bottom:451.905000px;}
.y9a_c00219{bottom:466.905000px;}
.y95_c00219{bottom:467.745000px;}
.y96_c00219{bottom:467.970000px;}
.y97_c00219{bottom:468.405000px;}
.y99_c00219{bottom:469.245000px;}
.y98_c00219{bottom:470.970000px;}
.y93_c00219{bottom:484.905000px;}
.y92_c00219{bottom:485.970000px;}
.y8f_c00219{bottom:486.405000px;}
.y8d_c00219{bottom:487.245000px;}
.y91_c00219{bottom:488.325000px;}
.y94_c00219{bottom:489.405000px;}
.y90_c00219{bottom:489.630000px;}
.y8e_c00219{bottom:490.470000px;}
.y8c_c00219{bottom:506.325000px;}
.y8b_c00219{bottom:506.745000px;}
.y8a_c00219{bottom:508.470000px;}
.y88_c00219{bottom:508.905000px;}
.y89_c00219{bottom:509.970000px;}
.y85_c00219{bottom:526.680000px;}
.y87_c00219{bottom:527.745000px;}
.y86_c00219{bottom:529.905000px;}
.y82_c00219{bottom:548.130000px;}
.y84_c00219{bottom:548.325000px;}
.y81_c00219{bottom:549.405000px;}
.y83_c00219{bottom:550.470000px;}
.y80_c00219{bottom:566.745000px;}
.y7f_c00219{bottom:567.630000px;}
.y7d_c00219{bottom:568.905000px;}
.y7e_c00219{bottom:569.970000px;}
.y77_c00219{bottom:584.745000px;}
.y7b_c00219{bottom:584.970000px;}
.y7c_c00219{bottom:585.825000px;}
.y79_c00219{bottom:586.245000px;}
.y7a_c00219{bottom:586.905000px;}
.y78_c00219{bottom:588.405000px;}
.y76_c00219{bottom:604.245000px;}
.y75_c00219{bottom:605.745000px;}
.y73_c00219{bottom:607.905000px;}
.y74_c00219{bottom:608.970000px;}
.y6f_c00219{bottom:625.680000px;}
.y71_c00219{bottom:626.745000px;}
.y70_c00219{bottom:627.630000px;}
.y72_c00219{bottom:628.470000px;}
.y6e_c00219{bottom:628.905000px;}
.y6b_c00219{bottom:646.245000px;}
.y6d_c00219{bottom:647.325000px;}
.y6c_c00219{bottom:648.405000px;}
.y67_c00219{bottom:665.325000px;}
.y6a_c00219{bottom:666.405000px;}
.y66_c00219{bottom:666.630000px;}
.y68_c00219{bottom:667.470000px;}
.y69_c00219{bottom:668.550000px;}
.y60_c00219{bottom:684.180000px;}
.y62_c00219{bottom:685.245000px;}
.y63_c00219{bottom:685.680000px;}
.y65_c00219{bottom:686.325000px;}
.y61_c00219{bottom:687.405000px;}
.y64_c00219{bottom:687.825000px;}
.y5e_c00219{bottom:704.745000px;}
.y5f_c00219{bottom:705.180000px;}
.y5c_c00219{bottom:706.245000px;}
.y5a_c00219{bottom:706.905000px;}
.y5b_c00219{bottom:707.325000px;}
.y5d_c00219{bottom:708.405000px;}
.y57_c00219{bottom:725.745000px;}
.y59_c00219{bottom:727.245000px;}
.y53_c00219{bottom:727.905000px;}
.y54_c00219{bottom:728.130000px;}
.y55_c00219{bottom:728.970000px;}
.y56_c00219{bottom:729.405000px;}
.y58_c00219{bottom:730.470000px;}
.y50_c00219{bottom:744.405000px;}
.y4c_c00219{bottom:745.245000px;}
.y52_c00219{bottom:745.905000px;}
.y4d_c00219{bottom:746.745000px;}
.y4f_c00219{bottom:747.630000px;}
.y51_c00219{bottom:748.470000px;}
.y4e_c00219{bottom:748.905000px;}
.y49_c00219{bottom:765.405000px;}
.y47_c00219{bottom:765.825000px;}
.y46_c00219{bottom:766.245000px;}
.y4b_c00219{bottom:767.130000px;}
.y48_c00219{bottom:767.325000px;}
.y45_c00219{bottom:768.405000px;}
.y4a_c00219{bottom:768.630000px;}
.y3f_c00219{bottom:784.470000px;}
.y43_c00219{bottom:785.745000px;}
.y40_c00219{bottom:786.630000px;}
.y41_c00219{bottom:786.825000px;}
.y44_c00219{bottom:787.905000px;}
.y42_c00219{bottom:788.130000px;}
.y3d_c00219{bottom:804.405000px;}
.y3a_c00219{bottom:805.245000px;}
.y3e_c00219{bottom:805.470000px;}
.y3c_c00219{bottom:807.405000px;}
.y3b_c00219{bottom:808.470000px;}
.y38_c00219{bottom:826.905000px;}
.y39_c00219{bottom:827.130000px;}
.y33_c00219{bottom:844.470000px;}
.y34_c00219{bottom:845.325000px;}
.y37_c00219{bottom:845.745000px;}
.y32_c00219{bottom:846.405000px;}
.y36_c00219{bottom:846.630000px;}
.y35_c00219{bottom:847.905000px;}
.y31_c00219{bottom:863.745000px;}
.y2d_c00219{bottom:865.245000px;}
.y2b_c00219{bottom:865.905000px;}
.y30_c00219{bottom:866.325000px;}
.y2c_c00219{bottom:866.970000px;}
.y2e_c00219{bottom:867.405000px;}
.y2f_c00219{bottom:868.470000px;}
.y2a_c00219{bottom:882.405000px;}
.y25_c00219{bottom:884.745000px;}
.y29_c00219{bottom:885.630000px;}
.y28_c00219{bottom:886.470000px;}
.y27_c00219{bottom:886.905000px;}
.y26_c00219{bottom:886.920000px;}
.y23_c00219{bottom:921.405000px;}
.y24_c00219{bottom:923.550000px;}
.y22_c00219{bottom:935.550000px;}
.y20_c00219{bottom:936.405000px;}
.y1d_c00219{bottom:936.630000px;}
.y1e_c00219{bottom:937.470000px;}
.y21_c00219{bottom:937.905000px;}
.y1f_c00219{bottom:938.550000px;}
.y1a_c00219{bottom:949.470000px;}
.y1c_c00219{bottom:950.325000px;}
.y19_c00219{bottom:951.405000px;}
.y1b_c00219{bottom:953.550000px;}
.y14_c00219{bottom:965.325000px;}
.y15_c00219{bottom:966.405000px;}
.y18_c00219{bottom:966.630000px;}
.y16_c00219{bottom:967.470000px;}
.y13_c00219{bottom:967.695000px;}
.y17_c00219{bottom:968.550000px;}
.y10_c00219{bottom:1003.905000px;}
.y12_c00219{bottom:1004.130000px;}
.y11_c00219{bottom:1004.970000px;}
.yf_c00219{bottom:1021.245000px;}
.yc_c00219{bottom:1022.970000px;}
.yb_c00219{bottom:1023.405000px;}
.ye_c00219{bottom:1023.630000px;}
.yd_c00219{bottom:1024.470000px;}
.y9_c00219{bottom:1040.745000px;}
.y8_c00219{bottom:1042.905000px;}
.ya_c00219{bottom:1044.405000px;}
.y6_c00219{bottom:1061.745000px;}
.y3_c00219{bottom:1062.405000px;}
.y7_c00219{bottom:1062.630000px;}
.y4_c00219{bottom:1063.905000px;}
.y5_c00219{bottom:1063.920000px;}
.y2_c00219{bottom:1098.825000px;}
.y1_c00219{bottom:1102.050000px;}
.h4_c00219{height:4.206533px;}
.ha_c00219{height:14.612168px;}
.h8_c00219{height:16.752334px;}
.h6_c00219{height:23.025234px;}
.h1_c00219{height:25.091602px;}
.h7_c00219{height:31.364502px;}
.h3_c00219{height:35.571035px;}
.h2_c00219{height:39.777568px;}
.h5_c00219{height:43.910303px;}
.h9_c00219{height:48.116836px;}
.h0_c00219{height:1335.000000px;}
.w0_c00219{width:880.500000px;}
.x0_c00219{left:0.000000px;}
.x10_c00219{left:151.080000px;}
.x2_c00219{left:152.355000px;}
.x46_c00219{left:153.420000px;}
.x3b_c00219{left:165.000000px;}
.x2d_c00219{left:166.080000px;}
.x3_c00219{left:167.580000px;}
.xa5_c00219{left:171.000000px;}
.x100_c00219{left:177.000000px;}
.x37_c00219{left:178.080000px;}
.x6e_c00219{left:180.420000px;}
.x2e_c00219{left:182.580000px;}
.x52_c00219{left:184.500000px;}
.xdf_c00219{left:185.580000px;}
.x9a_c00219{left:189.000000px;}
.xe5_c00219{left:192.420000px;}
.xed_c00219{left:193.500000px;}
.xb2_c00219{left:195.420000px;}
.xa6_c00219{left:196.500000px;}
.xfb_c00219{left:201.000000px;}
.x53_c00219{left:202.500000px;}
.xe8_c00219{left:204.000000px;}
.x6f_c00219{left:205.500000px;}
.x90_c00219{left:207.000000px;}
.x7d_c00219{left:208.500000px;}
.x9b_c00219{left:210.420000px;}
.x1d_c00219{left:211.500000px;}
.x62_c00219{left:213.000000px;}
.x27_c00219{left:216.000000px;}
.x85_c00219{left:217.080000px;}
.xc5_c00219{left:220.920000px;}
.x38_c00219{left:222.000000px;}
.x11_c00219{left:223.500000px;}
.x72_c00219{left:224.580000px;}
.x70_c00219{left:226.920000px;}
.x3c_c00219{left:229.500000px;}
.x54_c00219{left:231.000000px;}
.x1e_c00219{left:233.580000px;}
.x28_c00219{left:235.080000px;}
.x9c_c00219{left:237.420000px;}
.xa7_c00219{left:238.500000px;}
.xd5_c00219{left:241.080000px;}
.xd9_c00219{left:243.000000px;}
.x73_c00219{left:246.420000px;}
.x86_c00219{left:247.920000px;}
.x12_c00219{left:249.000000px;}
.x4_c00219{left:252.000000px;}
.x49_c00219{left:255.000000px;}
.x39_c00219{left:256.920000px;}
.xf2_c00219{left:258.000000px;}
.x63_c00219{left:259.500000px;}
.x2f_c00219{left:261.645000px;}
.xe6_c00219{left:262.920000px;}
.x55_c00219{left:265.500000px;}
.x47_c00219{left:268.920000px;}
.x3d_c00219{left:270.000000px;}
.xc2_c00219{left:271.500000px;}
.xb3_c00219{left:273.000000px;}
.x5_c00219{left:274.080000px;}
.x4a_c00219{left:276.000000px;}
.xa8_c00219{left:277.500000px;}
.x102_c00219{left:280.500000px;}
.x91_c00219{left:281.580000px;}
.x3a_c00219{left:283.500000px;}
.x1f_c00219{left:284.580000px;}
.xe9_c00219{left:286.920000px;}
.xee_c00219{left:288.420000px;}
.x9d_c00219{left:289.500000px;}
.x64_c00219{left:293.580000px;}
.x48_c00219{left:295.500000px;}
.xa9_c00219{left:297.000000px;}
.xe7_c00219{left:298.500000px;}
.x71_c00219{left:300.000000px;}
.xdc_c00219{left:301.500000px;}
.x30_c00219{left:302.580000px;}
.x103_c00219{left:306.000000px;}
.x87_c00219{left:307.500000px;}
.x13_c00219{left:308.580000px;}
.xc6_c00219{left:310.080000px;}
.xb4_c00219{left:312.420000px;}
.xd0_c00219{left:313.500000px;}
.x65_c00219{left:315.420000px;}
.xfc_c00219{left:319.500000px;}
.xaa_c00219{left:322.920000px;}
.x7e_c00219{left:325.920000px;}
.x92_c00219{left:327.000000px;}
.x20_c00219{left:328.920000px;}
.x56_c00219{left:331.500000px;}
.xcd_c00219{left:334.920000px;}
.x104_c00219{left:337.500000px;}
.xc7_c00219{left:339.000000px;}
.x29_c00219{left:340.920000px;}
.xb9_c00219{left:342.420000px;}
.x66_c00219{left:343.920000px;}
.x93_c00219{left:345.420000px;}
.x6_c00219{left:348.000000px;}
.x4b_c00219{left:349.500000px;}
.xfd_c00219{left:350.580000px;}
.xc8_c00219{left:352.500000px;}
.xbe_c00219{left:354.420000px;}
.x88_c00219{left:355.500000px;}
.xf3_c00219{left:360.000000px;}
.x14_c00219{left:361.500000px;}
.xab_c00219{left:363.000000px;}
.x21_c00219{left:364.920000px;}
.x31_c00219{left:366.645000px;}
.x74_c00219{left:367.920000px;}
.x7_c00219{left:369.000000px;}
.x3e_c00219{left:372.000000px;}
.x57_c00219{left:373.500000px;}
.x105_c00219{left:375.000000px;}
.x2a_c00219{left:379.500000px;}
.x67_c00219{left:381.000000px;}
.xd6_c00219{left:382.500000px;}
.xba_c00219{left:384.000000px;}
.xc9_c00219{left:385.500000px;}
.xea_c00219{left:388.080000px;}
.xac_c00219{left:390.000000px;}
.xd1_c00219{left:391.500000px;}
.x58_c00219{left:393.420000px;}
.xf0_c00219{left:396.420000px;}
.x1_c00219{left:397.500000px;}
.x94_c00219{left:399.420000px;}
.x89_c00219{left:400.920000px;}
.x8_c00219{left:403.500000px;}
.x3f_c00219{left:406.500000px;}
.x75_c00219{left:408.000000px;}
.x68_c00219{left:409.500000px;}
.x32_c00219{left:411.420000px;}
.x9e_c00219{left:414.000000px;}
.xc3_c00219{left:415.500000px;}
.x59_c00219{left:420.000000px;}
.xe0_c00219{left:421.500000px;}
.xdd_c00219{left:424.080000px;}
.xad_c00219{left:426.000000px;}
.xb5_c00219{left:427.500000px;}
.x76_c00219{left:430.500000px;}
.x7f_c00219{left:433.500000px;}
.x22_c00219{left:436.500000px;}
.x101_c00219{left:438.000000px;}
.x15_c00219{left:439.500000px;}
.x2b_c00219{left:441.000000px;}
.xca_c00219{left:444.000000px;}
.xce_c00219{left:445.500000px;}
.x9f_c00219{left:448.500000px;}
.xbf_c00219{left:450.420000px;}
.x33_c00219{left:451.500000px;}
.x77_c00219{left:453.000000px;}
.x2c_c00219{left:457.500000px;}
.x9_c00219{left:459.000000px;}
.xe1_c00219{left:460.920000px;}
.x95_c00219{left:462.000000px;}
.x5a_c00219{left:463.500000px;}
.xda_c00219{left:466.500000px;}
.x106_c00219{left:468.000000px;}
.xf6_c00219{left:469.500000px;}
.x8a_c00219{left:471.000000px;}
.x80_c00219{left:472.500000px;}
.x4c_c00219{left:474.000000px;}
.x40_c00219{left:475.500000px;}
.x23_c00219{left:477.000000px;}
.x16_c00219{left:478.920000px;}
.xeb_c00219{left:480.000000px;}
.x69_c00219{left:481.920000px;}
.x78_c00219{left:486.000000px;}
.xae_c00219{left:487.500000px;}
.xbb_c00219{left:489.000000px;}
.xd2_c00219{left:490.920000px;}
.xcf_c00219{left:492.000000px;}
.xa_c00219{left:493.080000px;}
.xa0_c00219{left:498.000000px;}
.xef_c00219{left:501.420000px;}
.xc4_c00219{left:502.500000px;}
.x5b_c00219{left:503.580000px;}
.x17_c00219{left:507.420000px;}
.xfe_c00219{left:510.420000px;}
.x8b_c00219{left:514.500000px;}
.xbc_c00219{left:516.420000px;}
.xf7_c00219{left:517.500000px;}
.x41_c00219{left:519.000000px;}
.x5c_c00219{left:522.000000px;}
.x96_c00219{left:525.420000px;}
.x79_c00219{left:526.500000px;}
.xaf_c00219{left:529.500000px;}
.x81_c00219{left:531.000000px;}
.xff_c00219{left:535.500000px;}
.x107_c00219{left:537.000000px;}
.x18_c00219{left:540.000000px;}
.x34_c00219{left:541.500000px;}
.xd7_c00219{left:546.000000px;}
.xb6_c00219{left:547.500000px;}
.xcb_c00219{left:549.420000px;}
.x5d_c00219{left:550.500000px;}
.x4d_c00219{left:552.000000px;}
.x24_c00219{left:553.080000px;}
.x6a_c00219{left:554.580000px;}
.xa1_c00219{left:556.500000px;}
.xb_c00219{left:559.920000px;}
.xc0_c00219{left:562.500000px;}
.xb0_c00219{left:563.580000px;}
.x97_c00219{left:565.920000px;}
.x8c_c00219{left:567.000000px;}
.x7a_c00219{left:573.420000px;}
.x25_c00219{left:574.920000px;}
.xf4_c00219{left:577.500000px;}
.x4e_c00219{left:580.080000px;}
.xd3_c00219{left:582.000000px;}
.xe2_c00219{left:584.355000px;}
.x19_c00219{left:586.920000px;}
.xc_c00219{left:588.420000px;}
.x42_c00219{left:589.500000px;}
.x5e_c00219{left:592.500000px;}
.xd8_c00219{left:594.000000px;}
.x35_c00219{left:598.080000px;}
.x26_c00219{left:603.000000px;}
.x4f_c00219{left:606.420000px;}
.xbd_c00219{left:607.500000px;}
.xcc_c00219{left:609.000000px;}
.x98_c00219{left:610.080000px;}
.x6b_c00219{left:612.420000px;}
.xb7_c00219{left:613.500000px;}
.x5f_c00219{left:615.000000px;}
.x82_c00219{left:618.000000px;}
.xd_c00219{left:619.920000px;}
.xe3_c00219{left:621.000000px;}
.xdb_c00219{left:623.580000px;}
.xf8_c00219{left:625.080000px;}
.x1a_c00219{left:627.420000px;}
.xa2_c00219{left:628.500000px;}
.x8d_c00219{left:629.580000px;}
.xde_c00219{left:631.500000px;}
.x50_c00219{left:634.080000px;}
.x7b_c00219{left:637.920000px;}
.x6c_c00219{left:640.920000px;}
.xb1_c00219{left:643.500000px;}
.x43_c00219{left:646.920000px;}
.xd4_c00219{left:653.145000px;}
.xe_c00219{left:655.920000px;}
.x1b_c00219{left:657.000000px;}
.xf9_c00219{left:658.500000px;}
.x44_c00219{left:660.000000px;}
.x60_c00219{left:661.500000px;}
.xa3_c00219{left:666.000000px;}
.x36_c00219{left:667.500000px;}
.xb8_c00219{left:670.500000px;}
.xe4_c00219{left:672.000000px;}
.xf5_c00219{left:673.500000px;}
.x8e_c00219{left:675.420000px;}
.x7c_c00219{left:676.920000px;}
.x99_c00219{left:682.500000px;}
.x8f_c00219{left:685.500000px;}
.x83_c00219{left:687.000000px;}
.x61_c00219{left:688.920000px;}
.xfa_c00219{left:691.500000px;}
.xa4_c00219{left:693.000000px;}
.xf_c00219{left:696.420000px;}
.xc1_c00219{left:697.920000px;}
.xec_c00219{left:699.420000px;}
.x45_c00219{left:700.500000px;}
.xf1_c00219{left:706.080000px;}
.x84_c00219{left:708.420000px;}
.x1c_c00219{left:709.500000px;}
.x6d_c00219{left:716.580000px;}
.x51_c00219{left:721.500000px;}
@media print{
.v0_c00219{vertical-align:0.000000pt;}
.ls0_c00219{letter-spacing:0.000000pt;}
.ws0_c00219{word-spacing:0.000000pt;}
.fs3_c00219{font-size:3.040000pt;}
.fs9_c00219{font-size:10.560000pt;}
.fs7_c00219{font-size:12.106667pt;}
.fs5_c00219{font-size:16.640000pt;}
.fs0_c00219{font-size:18.133333pt;}
.fs6_c00219{font-size:22.666667pt;}
.fs2_c00219{font-size:25.706667pt;}
.fs1_c00219{font-size:28.746667pt;}
.fs4_c00219{font-size:31.733333pt;}
.fs8_c00219{font-size:34.773333pt;}
.y0_c00219{bottom:0.000000pt;}
.yf0_c00219{bottom:223.026667pt;}
.yed_c00219{bottom:223.773333pt;}
.yeb_c00219{bottom:224.560000pt;}
.yec_c00219{bottom:225.693333pt;}
.yf1_c00219{bottom:225.893333pt;}
.yee_c00219{bottom:226.640000pt;}
.yef_c00219{bottom:227.026667pt;}
.ye9_c00219{bottom:241.106667pt;}
.yea_c00219{bottom:242.066667pt;}
.ye6_c00219{bottom:243.026667pt;}
.ye7_c00219{bottom:243.040000pt;}
.ye8_c00219{bottom:243.973333pt;}
.yde_c00219{bottom:255.226667pt;}
.ye0_c00219{bottom:257.693333pt;}
.ye2_c00219{bottom:258.440000pt;}
.ydf_c00219{bottom:258.826667pt;}
.ydd_c00219{bottom:259.226667pt;}
.ye1_c00219{bottom:259.400000pt;}
.ye3_c00219{bottom:260.360000pt;}
.ye5_c00219{bottom:260.560000pt;}
.ye4_c00219{bottom:260.733333pt;}
.yda_c00219{bottom:274.466667pt;}
.yd4_c00219{bottom:275.773333pt;}
.yd7_c00219{bottom:276.360000pt;}
.yd3_c00219{bottom:276.560000pt;}
.ydc_c00219{bottom:276.733333pt;}
.yd6_c00219{bottom:277.106667pt;}
.yd8_c00219{bottom:277.893333pt;}
.yd5_c00219{bottom:278.066667pt;}
.ydb_c00219{bottom:279.026667pt;}
.yd9_c00219{bottom:280.560000pt;}
.ycb_c00219{bottom:292.360000pt;}
.ycc_c00219{bottom:292.733333pt;}
.ycd_c00219{bottom:293.493333pt;}
.ycf_c00219{bottom:293.693333pt;}
.yd0_c00219{bottom:294.640000pt;}
.yd2_c00219{bottom:295.226667pt;}
.yce_c00219{bottom:295.400000pt;}
.yd1_c00219{bottom:296.360000pt;}
.yca_c00219{bottom:309.893333pt;}
.yc5_c00219{bottom:310.440000pt;}
.yc6_c00219{bottom:311.773333pt;}
.yc8_c00219{bottom:311.973333pt;}
.yc7_c00219{bottom:312.733333pt;}
.yc9_c00219{bottom:313.693333pt;}
.ybc_c00219{bottom:327.773333pt;}
.yc1_c00219{bottom:328.360000pt;}
.yc4_c00219{bottom:328.733333pt;}
.yc2_c00219{bottom:329.106667pt;}
.ybd_c00219{bottom:329.693333pt;}
.yc0_c00219{bottom:330.066667pt;}
.yc3_c00219{bottom:330.640000pt;}
.ybe_c00219{bottom:331.026667pt;}
.ybf_c00219{bottom:331.973333pt;}
.yb5_c00219{bottom:345.106667pt;}
.yb6_c00219{bottom:345.493333pt;}
.ybb_c00219{bottom:345.693333pt;}
.yb7_c00219{bottom:346.440000pt;}
.yb8_c00219{bottom:347.400000pt;}
.yb9_c00219{bottom:347.973333pt;}
.yba_c00219{bottom:348.360000pt;}
.yac_c00219{bottom:361.693333pt;}
.yb4_c00219{bottom:362.440000pt;}
.yb2_c00219{bottom:362.640000pt;}
.yaf_c00219{bottom:363.026667pt;}
.yad_c00219{bottom:363.400000pt;}
.yb0_c00219{bottom:363.973333pt;}
.yae_c00219{bottom:364.733333pt;}
.yb3_c00219{bottom:365.306667pt;}
.yb1_c00219{bottom:366.640000pt;}
.ya5_c00219{bottom:379.026667pt;}
.yaa_c00219{bottom:379.773333pt;}
.yab_c00219{bottom:379.973333pt;}
.ya8_c00219{bottom:380.360000pt;}
.ya4_c00219{bottom:380.733333pt;}
.ya6_c00219{bottom:381.106667pt;}
.ya9_c00219{bottom:381.693333pt;}
.ya7_c00219{bottom:383.026667pt;}
.y9c_c00219{bottom:396.733333pt;}
.ya2_c00219{bottom:397.493333pt;}
.y9b_c00219{bottom:397.693333pt;}
.ya0_c00219{bottom:398.066667pt;}
.ya3_c00219{bottom:398.440000pt;}
.y9d_c00219{bottom:398.826667pt;}
.y9f_c00219{bottom:399.773333pt;}
.ya1_c00219{bottom:400.360000pt;}
.y9e_c00219{bottom:401.693333pt;}
.y9a_c00219{bottom:415.026667pt;}
.y95_c00219{bottom:415.773333pt;}
.y96_c00219{bottom:415.973333pt;}
.y97_c00219{bottom:416.360000pt;}
.y99_c00219{bottom:417.106667pt;}
.y98_c00219{bottom:418.640000pt;}
.y93_c00219{bottom:431.026667pt;}
.y92_c00219{bottom:431.973333pt;}
.y8f_c00219{bottom:432.360000pt;}
.y8d_c00219{bottom:433.106667pt;}
.y91_c00219{bottom:434.066667pt;}
.y94_c00219{bottom:435.026667pt;}
.y90_c00219{bottom:435.226667pt;}
.y8e_c00219{bottom:435.973333pt;}
.y8c_c00219{bottom:450.066667pt;}
.y8b_c00219{bottom:450.440000pt;}
.y8a_c00219{bottom:451.973333pt;}
.y88_c00219{bottom:452.360000pt;}
.y89_c00219{bottom:453.306667pt;}
.y85_c00219{bottom:468.160000pt;}
.y87_c00219{bottom:469.106667pt;}
.y86_c00219{bottom:471.026667pt;}
.y82_c00219{bottom:487.226667pt;}
.y84_c00219{bottom:487.400000pt;}
.y81_c00219{bottom:488.360000pt;}
.y83_c00219{bottom:489.306667pt;}
.y80_c00219{bottom:503.773333pt;}
.y7f_c00219{bottom:504.560000pt;}
.y7d_c00219{bottom:505.693333pt;}
.y7e_c00219{bottom:506.640000pt;}
.y77_c00219{bottom:519.773333pt;}
.y7b_c00219{bottom:519.973333pt;}
.y7c_c00219{bottom:520.733333pt;}
.y79_c00219{bottom:521.106667pt;}
.y7a_c00219{bottom:521.693333pt;}
.y78_c00219{bottom:523.026667pt;}
.y76_c00219{bottom:537.106667pt;}
.y75_c00219{bottom:538.440000pt;}
.y73_c00219{bottom:540.360000pt;}
.y74_c00219{bottom:541.306667pt;}
.y6f_c00219{bottom:556.160000pt;}
.y71_c00219{bottom:557.106667pt;}
.y70_c00219{bottom:557.893333pt;}
.y72_c00219{bottom:558.640000pt;}
.y6e_c00219{bottom:559.026667pt;}
.y6b_c00219{bottom:574.440000pt;}
.y6d_c00219{bottom:575.400000pt;}
.y6c_c00219{bottom:576.360000pt;}
.y67_c00219{bottom:591.400000pt;}
.y6a_c00219{bottom:592.360000pt;}
.y66_c00219{bottom:592.560000pt;}
.y68_c00219{bottom:593.306667pt;}
.y69_c00219{bottom:594.266667pt;}
.y60_c00219{bottom:608.160000pt;}
.y62_c00219{bottom:609.106667pt;}
.y63_c00219{bottom:609.493333pt;}
.y65_c00219{bottom:610.066667pt;}
.y61_c00219{bottom:611.026667pt;}
.y64_c00219{bottom:611.400000pt;}
.y5e_c00219{bottom:626.440000pt;}
.y5f_c00219{bottom:626.826667pt;}
.y5c_c00219{bottom:627.773333pt;}
.y5a_c00219{bottom:628.360000pt;}
.y5b_c00219{bottom:628.733333pt;}
.y5d_c00219{bottom:629.693333pt;}
.y57_c00219{bottom:645.106667pt;}
.y59_c00219{bottom:646.440000pt;}
.y53_c00219{bottom:647.026667pt;}
.y54_c00219{bottom:647.226667pt;}
.y55_c00219{bottom:647.973333pt;}
.y56_c00219{bottom:648.360000pt;}
.y58_c00219{bottom:649.306667pt;}
.y50_c00219{bottom:661.693333pt;}
.y4c_c00219{bottom:662.440000pt;}
.y52_c00219{bottom:663.026667pt;}
.y4d_c00219{bottom:663.773333pt;}
.y4f_c00219{bottom:664.560000pt;}
.y51_c00219{bottom:665.306667pt;}
.y4e_c00219{bottom:665.693333pt;}
.y49_c00219{bottom:680.360000pt;}
.y47_c00219{bottom:680.733333pt;}
.y46_c00219{bottom:681.106667pt;}
.y4b_c00219{bottom:681.893333pt;}
.y48_c00219{bottom:682.066667pt;}
.y45_c00219{bottom:683.026667pt;}
.y4a_c00219{bottom:683.226667pt;}
.y3f_c00219{bottom:697.306667pt;}
.y43_c00219{bottom:698.440000pt;}
.y40_c00219{bottom:699.226667pt;}
.y41_c00219{bottom:699.400000pt;}
.y44_c00219{bottom:700.360000pt;}
.y42_c00219{bottom:700.560000pt;}
.y3d_c00219{bottom:715.026667pt;}
.y3a_c00219{bottom:715.773333pt;}
.y3e_c00219{bottom:715.973333pt;}
.y3c_c00219{bottom:717.693333pt;}
.y3b_c00219{bottom:718.640000pt;}
.y38_c00219{bottom:735.026667pt;}
.y39_c00219{bottom:735.226667pt;}
.y33_c00219{bottom:750.640000pt;}
.y34_c00219{bottom:751.400000pt;}
.y37_c00219{bottom:751.773333pt;}
.y32_c00219{bottom:752.360000pt;}
.y36_c00219{bottom:752.560000pt;}
.y35_c00219{bottom:753.693333pt;}
.y31_c00219{bottom:767.773333pt;}
.y2d_c00219{bottom:769.106667pt;}
.y2b_c00219{bottom:769.693333pt;}
.y30_c00219{bottom:770.066667pt;}
.y2c_c00219{bottom:770.640000pt;}
.y2e_c00219{bottom:771.026667pt;}
.y2f_c00219{bottom:771.973333pt;}
.y2a_c00219{bottom:784.360000pt;}
.y25_c00219{bottom:786.440000pt;}
.y29_c00219{bottom:787.226667pt;}
.y28_c00219{bottom:787.973333pt;}
.y27_c00219{bottom:788.360000pt;}
.y26_c00219{bottom:788.373333pt;}
.y23_c00219{bottom:819.026667pt;}
.y24_c00219{bottom:820.933333pt;}
.y22_c00219{bottom:831.600000pt;}
.y20_c00219{bottom:832.360000pt;}
.y1d_c00219{bottom:832.560000pt;}
.y1e_c00219{bottom:833.306667pt;}
.y21_c00219{bottom:833.693333pt;}
.y1f_c00219{bottom:834.266667pt;}
.y1a_c00219{bottom:843.973333pt;}
.y1c_c00219{bottom:844.733333pt;}
.y19_c00219{bottom:845.693333pt;}
.y1b_c00219{bottom:847.600000pt;}
.y14_c00219{bottom:858.066667pt;}
.y15_c00219{bottom:859.026667pt;}
.y18_c00219{bottom:859.226667pt;}
.y16_c00219{bottom:859.973333pt;}
.y13_c00219{bottom:860.173333pt;}
.y17_c00219{bottom:860.933333pt;}
.y10_c00219{bottom:892.360000pt;}
.y12_c00219{bottom:892.560000pt;}
.y11_c00219{bottom:893.306667pt;}
.yf_c00219{bottom:907.773333pt;}
.yc_c00219{bottom:909.306667pt;}
.yb_c00219{bottom:909.693333pt;}
.ye_c00219{bottom:909.893333pt;}
.yd_c00219{bottom:910.640000pt;}
.y9_c00219{bottom:925.106667pt;}
.y8_c00219{bottom:927.026667pt;}
.ya_c00219{bottom:928.360000pt;}
.y6_c00219{bottom:943.773333pt;}
.y3_c00219{bottom:944.360000pt;}
.y7_c00219{bottom:944.560000pt;}
.y4_c00219{bottom:945.693333pt;}
.y5_c00219{bottom:945.706667pt;}
.y2_c00219{bottom:976.733333pt;}
.y1_c00219{bottom:979.600000pt;}
.h4_c00219{height:3.739141pt;}
.ha_c00219{height:12.988594pt;}
.h8_c00219{height:14.890964pt;}
.h6_c00219{height:20.466875pt;}
.h1_c00219{height:22.303646pt;}
.h7_c00219{height:27.879557pt;}
.h3_c00219{height:31.618698pt;}
.h2_c00219{height:35.357839pt;}
.h5_c00219{height:39.031380pt;}
.h9_c00219{height:42.770521pt;}
.h0_c00219{height:1186.666667pt;}
.w0_c00219{width:782.666667pt;}
.x0_c00219{left:0.000000pt;}
.x10_c00219{left:134.293333pt;}
.x2_c00219{left:135.426667pt;}
.x46_c00219{left:136.373333pt;}
.x3b_c00219{left:146.666667pt;}
.x2d_c00219{left:147.626667pt;}
.x3_c00219{left:148.960000pt;}
.xa5_c00219{left:152.000000pt;}
.x100_c00219{left:157.333333pt;}
.x37_c00219{left:158.293333pt;}
.x6e_c00219{left:160.373333pt;}
.x2e_c00219{left:162.293333pt;}
.x52_c00219{left:164.000000pt;}
.xdf_c00219{left:164.960000pt;}
.x9a_c00219{left:168.000000pt;}
.xe5_c00219{left:171.040000pt;}
.xed_c00219{left:172.000000pt;}
.xb2_c00219{left:173.706667pt;}
.xa6_c00219{left:174.666667pt;}
.xfb_c00219{left:178.666667pt;}
.x53_c00219{left:180.000000pt;}
.xe8_c00219{left:181.333333pt;}
.x6f_c00219{left:182.666667pt;}
.x90_c00219{left:184.000000pt;}
.x7d_c00219{left:185.333333pt;}
.x9b_c00219{left:187.040000pt;}
.x1d_c00219{left:188.000000pt;}
.x62_c00219{left:189.333333pt;}
.x27_c00219{left:192.000000pt;}
.x85_c00219{left:192.960000pt;}
.xc5_c00219{left:196.373333pt;}
.x38_c00219{left:197.333333pt;}
.x11_c00219{left:198.666667pt;}
.x72_c00219{left:199.626667pt;}
.x70_c00219{left:201.706667pt;}
.x3c_c00219{left:204.000000pt;}
.x54_c00219{left:205.333333pt;}
.x1e_c00219{left:207.626667pt;}
.x28_c00219{left:208.960000pt;}
.x9c_c00219{left:211.040000pt;}
.xa7_c00219{left:212.000000pt;}
.xd5_c00219{left:214.293333pt;}
.xd9_c00219{left:216.000000pt;}
.x73_c00219{left:219.040000pt;}
.x86_c00219{left:220.373333pt;}
.x12_c00219{left:221.333333pt;}
.x4_c00219{left:224.000000pt;}
.x49_c00219{left:226.666667pt;}
.x39_c00219{left:228.373333pt;}
.xf2_c00219{left:229.333333pt;}
.x63_c00219{left:230.666667pt;}
.x2f_c00219{left:232.573333pt;}
.xe6_c00219{left:233.706667pt;}
.x55_c00219{left:236.000000pt;}
.x47_c00219{left:239.040000pt;}
.x3d_c00219{left:240.000000pt;}
.xc2_c00219{left:241.333333pt;}
.xb3_c00219{left:242.666667pt;}
.x5_c00219{left:243.626667pt;}
.x4a_c00219{left:245.333333pt;}
.xa8_c00219{left:246.666667pt;}
.x102_c00219{left:249.333333pt;}
.x91_c00219{left:250.293333pt;}
.x3a_c00219{left:252.000000pt;}
.x1f_c00219{left:252.960000pt;}
.xe9_c00219{left:255.040000pt;}
.xee_c00219{left:256.373333pt;}
.x9d_c00219{left:257.333333pt;}
.x64_c00219{left:260.960000pt;}
.x48_c00219{left:262.666667pt;}
.xa9_c00219{left:264.000000pt;}
.xe7_c00219{left:265.333333pt;}
.x71_c00219{left:266.666667pt;}
.xdc_c00219{left:268.000000pt;}
.x30_c00219{left:268.960000pt;}
.x103_c00219{left:272.000000pt;}
.x87_c00219{left:273.333333pt;}
.x13_c00219{left:274.293333pt;}
.xc6_c00219{left:275.626667pt;}
.xb4_c00219{left:277.706667pt;}
.xd0_c00219{left:278.666667pt;}
.x65_c00219{left:280.373333pt;}
.xfc_c00219{left:284.000000pt;}
.xaa_c00219{left:287.040000pt;}
.x7e_c00219{left:289.706667pt;}
.x92_c00219{left:290.666667pt;}
.x20_c00219{left:292.373333pt;}
.x56_c00219{left:294.666667pt;}
.xcd_c00219{left:297.706667pt;}
.x104_c00219{left:300.000000pt;}
.xc7_c00219{left:301.333333pt;}
.x29_c00219{left:303.040000pt;}
.xb9_c00219{left:304.373333pt;}
.x66_c00219{left:305.706667pt;}
.x93_c00219{left:307.040000pt;}
.x6_c00219{left:309.333333pt;}
.x4b_c00219{left:310.666667pt;}
.xfd_c00219{left:311.626667pt;}
.xc8_c00219{left:313.333333pt;}
.xbe_c00219{left:315.040000pt;}
.x88_c00219{left:316.000000pt;}
.xf3_c00219{left:320.000000pt;}
.x14_c00219{left:321.333333pt;}
.xab_c00219{left:322.666667pt;}
.x21_c00219{left:324.373333pt;}
.x31_c00219{left:325.906667pt;}
.x74_c00219{left:327.040000pt;}
.x7_c00219{left:328.000000pt;}
.x3e_c00219{left:330.666667pt;}
.x57_c00219{left:332.000000pt;}
.x105_c00219{left:333.333333pt;}
.x2a_c00219{left:337.333333pt;}
.x67_c00219{left:338.666667pt;}
.xd6_c00219{left:340.000000pt;}
.xba_c00219{left:341.333333pt;}
.xc9_c00219{left:342.666667pt;}
.xea_c00219{left:344.960000pt;}
.xac_c00219{left:346.666667pt;}
.xd1_c00219{left:348.000000pt;}
.x58_c00219{left:349.706667pt;}
.xf0_c00219{left:352.373333pt;}
.x1_c00219{left:353.333333pt;}
.x94_c00219{left:355.040000pt;}
.x89_c00219{left:356.373333pt;}
.x8_c00219{left:358.666667pt;}
.x3f_c00219{left:361.333333pt;}
.x75_c00219{left:362.666667pt;}
.x68_c00219{left:364.000000pt;}
.x32_c00219{left:365.706667pt;}
.x9e_c00219{left:368.000000pt;}
.xc3_c00219{left:369.333333pt;}
.x59_c00219{left:373.333333pt;}
.xe0_c00219{left:374.666667pt;}
.xdd_c00219{left:376.960000pt;}
.xad_c00219{left:378.666667pt;}
.xb5_c00219{left:380.000000pt;}
.x76_c00219{left:382.666667pt;}
.x7f_c00219{left:385.333333pt;}
.x22_c00219{left:388.000000pt;}
.x101_c00219{left:389.333333pt;}
.x15_c00219{left:390.666667pt;}
.x2b_c00219{left:392.000000pt;}
.xca_c00219{left:394.666667pt;}
.xce_c00219{left:396.000000pt;}
.x9f_c00219{left:398.666667pt;}
.xbf_c00219{left:400.373333pt;}
.x33_c00219{left:401.333333pt;}
.x77_c00219{left:402.666667pt;}
.x2c_c00219{left:406.666667pt;}
.x9_c00219{left:408.000000pt;}
.xe1_c00219{left:409.706667pt;}
.x95_c00219{left:410.666667pt;}
.x5a_c00219{left:412.000000pt;}
.xda_c00219{left:414.666667pt;}
.x106_c00219{left:416.000000pt;}
.xf6_c00219{left:417.333333pt;}
.x8a_c00219{left:418.666667pt;}
.x80_c00219{left:420.000000pt;}
.x4c_c00219{left:421.333333pt;}
.x40_c00219{left:422.666667pt;}
.x23_c00219{left:424.000000pt;}
.x16_c00219{left:425.706667pt;}
.xeb_c00219{left:426.666667pt;}
.x69_c00219{left:428.373333pt;}
.x78_c00219{left:432.000000pt;}
.xae_c00219{left:433.333333pt;}
.xbb_c00219{left:434.666667pt;}
.xd2_c00219{left:436.373333pt;}
.xcf_c00219{left:437.333333pt;}
.xa_c00219{left:438.293333pt;}
.xa0_c00219{left:442.666667pt;}
.xef_c00219{left:445.706667pt;}
.xc4_c00219{left:446.666667pt;}
.x5b_c00219{left:447.626667pt;}
.x17_c00219{left:451.040000pt;}
.xfe_c00219{left:453.706667pt;}
.x8b_c00219{left:457.333333pt;}
.xbc_c00219{left:459.040000pt;}
.xf7_c00219{left:460.000000pt;}
.x41_c00219{left:461.333333pt;}
.x5c_c00219{left:464.000000pt;}
.x96_c00219{left:467.040000pt;}
.x79_c00219{left:468.000000pt;}
.xaf_c00219{left:470.666667pt;}
.x81_c00219{left:472.000000pt;}
.xff_c00219{left:476.000000pt;}
.x107_c00219{left:477.333333pt;}
.x18_c00219{left:480.000000pt;}
.x34_c00219{left:481.333333pt;}
.xd7_c00219{left:485.333333pt;}
.xb6_c00219{left:486.666667pt;}
.xcb_c00219{left:488.373333pt;}
.x5d_c00219{left:489.333333pt;}
.x4d_c00219{left:490.666667pt;}
.x24_c00219{left:491.626667pt;}
.x6a_c00219{left:492.960000pt;}
.xa1_c00219{left:494.666667pt;}
.xb_c00219{left:497.706667pt;}
.xc0_c00219{left:500.000000pt;}
.xb0_c00219{left:500.960000pt;}
.x97_c00219{left:503.040000pt;}
.x8c_c00219{left:504.000000pt;}
.x7a_c00219{left:509.706667pt;}
.x25_c00219{left:511.040000pt;}
.xf4_c00219{left:513.333333pt;}
.x4e_c00219{left:515.626667pt;}
.xd3_c00219{left:517.333333pt;}
.xe2_c00219{left:519.426667pt;}
.x19_c00219{left:521.706667pt;}
.xc_c00219{left:523.040000pt;}
.x42_c00219{left:524.000000pt;}
.x5e_c00219{left:526.666667pt;}
.xd8_c00219{left:528.000000pt;}
.x35_c00219{left:531.626667pt;}
.x26_c00219{left:536.000000pt;}
.x4f_c00219{left:539.040000pt;}
.xbd_c00219{left:540.000000pt;}
.xcc_c00219{left:541.333333pt;}
.x98_c00219{left:542.293333pt;}
.x6b_c00219{left:544.373333pt;}
.xb7_c00219{left:545.333333pt;}
.x5f_c00219{left:546.666667pt;}
.x82_c00219{left:549.333333pt;}
.xd_c00219{left:551.040000pt;}
.xe3_c00219{left:552.000000pt;}
.xdb_c00219{left:554.293333pt;}
.xf8_c00219{left:555.626667pt;}
.x1a_c00219{left:557.706667pt;}
.xa2_c00219{left:558.666667pt;}
.x8d_c00219{left:559.626667pt;}
.xde_c00219{left:561.333333pt;}
.x50_c00219{left:563.626667pt;}
.x7b_c00219{left:567.040000pt;}
.x6c_c00219{left:569.706667pt;}
.xb1_c00219{left:572.000000pt;}
.x43_c00219{left:575.040000pt;}
.xd4_c00219{left:580.573333pt;}
.xe_c00219{left:583.040000pt;}
.x1b_c00219{left:584.000000pt;}
.xf9_c00219{left:585.333333pt;}
.x44_c00219{left:586.666667pt;}
.x60_c00219{left:588.000000pt;}
.xa3_c00219{left:592.000000pt;}
.x36_c00219{left:593.333333pt;}
.xb8_c00219{left:596.000000pt;}
.xe4_c00219{left:597.333333pt;}
.xf5_c00219{left:598.666667pt;}
.x8e_c00219{left:600.373333pt;}
.x7c_c00219{left:601.706667pt;}
.x99_c00219{left:606.666667pt;}
.x8f_c00219{left:609.333333pt;}
.x83_c00219{left:610.666667pt;}
.x61_c00219{left:612.373333pt;}
.xfa_c00219{left:614.666667pt;}
.xa4_c00219{left:616.000000pt;}
.xf_c00219{left:619.040000pt;}
.xc1_c00219{left:620.373333pt;}
.xec_c00219{left:621.706667pt;}
.x45_c00219{left:622.666667pt;}
.xf1_c00219{left:627.626667pt;}
.x84_c00219{left:629.706667pt;}
.x1c_c00219{left:630.666667pt;}
.x6d_c00219{left:636.960000pt;}
.x51_c00219{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3c2dc40d9819b6a70ab78d8c.woff2')format("woff");}.ff1_c00220{font-family:ff1_c00220;line-height:1.688965;font-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_c00220{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m12_c00220{transform:matrix(0.385900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385900,0.000000,0.000000,0.250000,0,0);}
.m22_c00220{transform:matrix(0.397032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397032,0.000000,0.000000,0.250000,0,0);}
.m19_c00220{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.m1c_c00220{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m21_c00220{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.m1f_c00220{transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);}
.m15_c00220{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m4_c00220{transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);}
.m1_c00220{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m1b_c00220{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m18_c00220{transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);}
.m23_c00220{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m1a_c00220{transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);}
.m9_c00220{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m6_c00220{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m24_c00220{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.ma_c00220{transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);}
.m16_c00220{transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);}
.m25_c00220{transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);}
.m10_c00220{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m26_c00220{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);}
.m2_c00220{transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);}
.mf_c00220{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m29_c00220{transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);}
.m2a_c00220{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);}
.me_c00220{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m14_c00220{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.md_c00220{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m11_c00220{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m28_c00220{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.mb_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);}
.m27_c00220{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m17_c00220{transform:matrix(0.644231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644231,0.000000,0.000000,0.250000,0,0);}
.m1e_c00220{transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);}
.m0_c00220{transform:matrix(0.673077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673077,0.000000,0.000000,0.250000,0,0);}
.m1d_c00220{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m3_c00220{transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);}
.m7_c00220{transform:matrix(0.741912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741912,0.000000,0.000000,0.250000,0,0);}
.mc_c00220{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m8_c00220{transform:matrix(0.922907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.922907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.922907,0.000000,0.000000,0.250000,0,0);}
.m5_c00220{transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);}
.m13_c00220{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,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:-3.604950px;}
.ws2_c00220{word-spacing:0.000000px;}
.ws1_c00220{word-spacing:3.863313px;}
.fc0_c00220{color:transparent;}
.fs3_c00220{font-size:13.620000px;}
.fs0_c00220{font-size:18.720000px;}
.fs2_c00220{font-size:20.400000px;}
.fs4_c00220{font-size:25.500000px;}
.fs1_c00220{font-size:28.920000px;}
.fs5_c00220{font-size:32.340000px;}
.y0_c00220{bottom:0.000000px;}
.y3_c00220{bottom:227.130000px;}
.ya_c00220{bottom:265.470000px;}
.yc_c00220{bottom:266.550000px;}
.yd_c00220{bottom:266.970000px;}
.y9_c00220{bottom:267.630000px;}
.yb_c00220{bottom:268.470000px;}
.y8_c00220{bottom:269.550000px;}
.y5_c00220{bottom:280.905000px;}
.ye_c00220{bottom:281.325000px;}
.y10_c00220{bottom:281.550000px;}
.y7_c00220{bottom:281.970000px;}
.y6_c00220{bottom:282.195000px;}
.y11_c00220{bottom:282.405000px;}
.y4_c00220{bottom:283.050000px;}
.y12_c00220{bottom:283.470000px;}
.yf_c00220{bottom:283.695000px;}
.y13_c00220{bottom:284.130000px;}
.y15_c00220{bottom:294.825000px;}
.y17_c00220{bottom:295.050000px;}
.y14_c00220{bottom:295.905000px;}
.y16_c00220{bottom:296.130000px;}
.y18_c00220{bottom:298.050000px;}
.y1b_c00220{bottom:308.970000px;}
.y19_c00220{bottom:309.825000px;}
.y1d_c00220{bottom:310.050000px;}
.y1a_c00220{bottom:310.905000px;}
.y1c_c00220{bottom:311.970000px;}
.y2_c00220{bottom:1099.905000px;}
.y1_c00220{bottom:1103.130000px;}
.h4_c00220{height:16.752334px;}
.h1_c00220{height:23.025234px;}
.h3_c00220{height:25.091602px;}
.h5_c00220{height:31.364502px;}
.h2_c00220{height:35.571035px;}
.h6_c00220{height:39.777568px;}
.h0_c00220{height:1335.000000px;}
.w0_c00220{width:880.500000px;}
.x0_c00220{left:0.000000px;}
.x15_c00220{left:151.080000px;}
.x26_c00220{left:176.355000px;}
.x28_c00220{left:180.000000px;}
.x16_c00220{left:202.080000px;}
.x29_c00220{left:204.000000px;}
.x27_c00220{left:221.580000px;}
.x17_c00220{left:227.355000px;}
.x21_c00220{left:243.000000px;}
.x2a_c00220{left:259.080000px;}
.x18_c00220{left:270.420000px;}
.x19_c00220{left:288.000000px;}
.x2b_c00220{left:289.500000px;}
.x22_c00220{left:304.080000px;}
.xc_c00220{left:331.500000px;}
.x2c_c00220{left:342.000000px;}
.xd_c00220{left:348.000000px;}
.x1c_c00220{left:351.000000px;}
.x2d_c00220{left:363.000000px;}
.x1d_c00220{left:375.420000px;}
.xe_c00220{left:382.500000px;}
.x1_c00220{left:396.000000px;}
.x2e_c00220{left:400.920000px;}
.x4_c00220{left:402.000000px;}
.x5_c00220{left:420.000000px;}
.x1e_c00220{left:423.000000px;}
.xf_c00220{left:424.080000px;}
.x10_c00220{left:441.000000px;}
.x1f_c00220{left:447.855000px;}
.x23_c00220{left:459.420000px;}
.x11_c00220{left:469.500000px;}
.x6_c00220{left:481.080000px;}
.x12_c00220{left:482.580000px;}
.x20_c00220{left:493.500000px;}
.x7_c00220{left:504.420000px;}
.x13_c00220{left:511.920000px;}
.x24_c00220{left:526.500000px;}
.x14_c00220{left:527.580000px;}
.x8_c00220{left:547.500000px;}
.x1a_c00220{left:567.000000px;}
.x9_c00220{left:591.000000px;}
.xa_c00220{left:633.000000px;}
.x1b_c00220{left:652.080000px;}
.x25_c00220{left:679.080000px;}
.xb_c00220{left:682.920000px;}
.x2_c00220{left:703.920000px;}
.x3_c00220{left:720.420000px;}
@media print{
.v0_c00220{vertical-align:0.000000pt;}
.ls0_c00220{letter-spacing:0.000000pt;}
.ws0_c00220{word-spacing:-3.204400pt;}
.ws2_c00220{word-spacing:0.000000pt;}
.ws1_c00220{word-spacing:3.434056pt;}
.fs3_c00220{font-size:12.106667pt;}
.fs0_c00220{font-size:16.640000pt;}
.fs2_c00220{font-size:18.133333pt;}
.fs4_c00220{font-size:22.666667pt;}
.fs1_c00220{font-size:25.706667pt;}
.fs5_c00220{font-size:28.746667pt;}
.y0_c00220{bottom:0.000000pt;}
.y3_c00220{bottom:201.893333pt;}
.ya_c00220{bottom:235.973333pt;}
.yc_c00220{bottom:236.933333pt;}
.yd_c00220{bottom:237.306667pt;}
.y9_c00220{bottom:237.893333pt;}
.yb_c00220{bottom:238.640000pt;}
.y8_c00220{bottom:239.600000pt;}
.y5_c00220{bottom:249.693333pt;}
.ye_c00220{bottom:250.066667pt;}
.y10_c00220{bottom:250.266667pt;}
.y7_c00220{bottom:250.640000pt;}
.y6_c00220{bottom:250.840000pt;}
.y11_c00220{bottom:251.026667pt;}
.y4_c00220{bottom:251.600000pt;}
.y12_c00220{bottom:251.973333pt;}
.yf_c00220{bottom:252.173333pt;}
.y13_c00220{bottom:252.560000pt;}
.y15_c00220{bottom:262.066667pt;}
.y17_c00220{bottom:262.266667pt;}
.y14_c00220{bottom:263.026667pt;}
.y16_c00220{bottom:263.226667pt;}
.y18_c00220{bottom:264.933333pt;}
.y1b_c00220{bottom:274.640000pt;}
.y19_c00220{bottom:275.400000pt;}
.y1d_c00220{bottom:275.600000pt;}
.y1a_c00220{bottom:276.360000pt;}
.y1c_c00220{bottom:277.306667pt;}
.y2_c00220{bottom:977.693333pt;}
.y1_c00220{bottom:980.560000pt;}
.h4_c00220{height:14.890964pt;}
.h1_c00220{height:20.466875pt;}
.h3_c00220{height:22.303646pt;}
.h5_c00220{height:27.879557pt;}
.h2_c00220{height:31.618698pt;}
.h6_c00220{height:35.357839pt;}
.h0_c00220{height:1186.666667pt;}
.w0_c00220{width:782.666667pt;}
.x0_c00220{left:0.000000pt;}
.x15_c00220{left:134.293333pt;}
.x26_c00220{left:156.760000pt;}
.x28_c00220{left:160.000000pt;}
.x16_c00220{left:179.626667pt;}
.x29_c00220{left:181.333333pt;}
.x27_c00220{left:196.960000pt;}
.x17_c00220{left:202.093333pt;}
.x21_c00220{left:216.000000pt;}
.x2a_c00220{left:230.293333pt;}
.x18_c00220{left:240.373333pt;}
.x19_c00220{left:256.000000pt;}
.x2b_c00220{left:257.333333pt;}
.x22_c00220{left:270.293333pt;}
.xc_c00220{left:294.666667pt;}
.x2c_c00220{left:304.000000pt;}
.xd_c00220{left:309.333333pt;}
.x1c_c00220{left:312.000000pt;}
.x2d_c00220{left:322.666667pt;}
.x1d_c00220{left:333.706667pt;}
.xe_c00220{left:340.000000pt;}
.x1_c00220{left:352.000000pt;}
.x2e_c00220{left:356.373333pt;}
.x4_c00220{left:357.333333pt;}
.x5_c00220{left:373.333333pt;}
.x1e_c00220{left:376.000000pt;}
.xf_c00220{left:376.960000pt;}
.x10_c00220{left:392.000000pt;}
.x1f_c00220{left:398.093333pt;}
.x23_c00220{left:408.373333pt;}
.x11_c00220{left:417.333333pt;}
.x6_c00220{left:427.626667pt;}
.x12_c00220{left:428.960000pt;}
.x20_c00220{left:438.666667pt;}
.x7_c00220{left:448.373333pt;}
.x13_c00220{left:455.040000pt;}
.x24_c00220{left:468.000000pt;}
.x14_c00220{left:468.960000pt;}
.x8_c00220{left:486.666667pt;}
.x1a_c00220{left:504.000000pt;}
.x9_c00220{left:525.333333pt;}
.xa_c00220{left:562.666667pt;}
.x1b_c00220{left:579.626667pt;}
.x25_c00220{left:603.626667pt;}
.xb_c00220{left:607.040000pt;}
.x2_c00220{left:625.706667pt;}
.x3_c00220{left:640.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_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_ed384864775b0e77c3b4a05c.woff2')format("woff");}.ff1_c00221{font-family:ff1_c00221;line-height:1.688965;font-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_c00221{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00221{transform:matrix(0.325210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325210,0.000000,0.000000,0.250000,0,0);}
.ma7_c00221{transform:matrix(0.327922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327922,0.000000,0.000000,0.250000,0,0);}
.m68_c00221{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m5_c00221{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m70_c00221{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m54_c00221{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m8_c00221{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.mde_c00221{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m57_c00221{transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);}
.m6c_c00221{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m26_c00221{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m59_c00221{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.me0_c00221{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.md2_c00221{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.md3_c00221{transform:matrix(0.387653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387653,0.000000,0.000000,0.250000,0,0);}
.m53_c00221{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mda_c00221{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m22_c00221{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m67_c00221{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mc0_c00221{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.me1_c00221{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.mb0_c00221{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mac_c00221{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m98_c00221{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m94_c00221{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.mee_c00221{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.mbe_c00221{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.mc6_c00221{transform:matrix(0.405675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405675,0.000000,0.000000,0.250000,0,0);}
.m73_c00221{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m20_c00221{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.maa_c00221{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m90_c00221{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m2b_c00221{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m89_c00221{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m39_c00221{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m28_c00221{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.ma1_c00221{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.ma4_c00221{transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);}
.mdb_c00221{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m7d_c00221{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m76_c00221{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.md7_c00221{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m4_c00221{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m7e_c00221{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m5f_c00221{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mb6_c00221{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.me2_c00221{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m15_c00221{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mad_c00221{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mc4_c00221{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mdc_c00221{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mbf_c00221{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.me6_c00221{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m82_c00221{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m86_c00221{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mbd_c00221{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mc9_c00221{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m83_c00221{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mf_c00221{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.mae_c00221{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m85_c00221{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m7f_c00221{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m16_c00221{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m21_c00221{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.ma6_c00221{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.me4_c00221{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.ma5_c00221{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m6b_c00221{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m64_c00221{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m27_c00221{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m43_c00221{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.mef_c00221{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m6f_c00221{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m65_c00221{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.md0_c00221{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mb4_c00221{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.mb3_c00221{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m7a_c00221{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.m2c_c00221{transform:matrix(0.451681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451681,0.000000,0.000000,0.250000,0,0);}
.mb_c00221{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.ma2_c00221{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.me3_c00221{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m1_c00221{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.mbc_c00221{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m7_c00221{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m69_c00221{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m74_c00221{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.m7b_c00221{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m8d_c00221{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m7c_c00221{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mce_c00221{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.mb9_c00221{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.me_c00221{transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);}
.mdf_c00221{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.mc_c00221{transform:matrix(0.466286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466286,0.000000,0.000000,0.250000,0,0);}
.me9_c00221{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.mc1_c00221{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mec_c00221{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m46_c00221{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.md8_c00221{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m71_c00221{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.m6_c00221{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m9_c00221{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m8c_c00221{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m99_c00221{transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);}
.m12_c00221{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m32_c00221{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m5b_c00221{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m4b_c00221{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m50_c00221{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_c00221{transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);}
.m5a_c00221{transform:matrix(0.502319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502319,0.000000,0.000000,0.250000,0,0);}
.m9e_c00221{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m36_c00221{transform:matrix(0.504638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504638,0.000000,0.000000,0.250000,0,0);}
.m40_c00221{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mea_c00221{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.m8b_c00221{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m55_c00221{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m9b_c00221{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m97_c00221{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m62_c00221{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m9d_c00221{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m87_c00221{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.mdd_c00221{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m41_c00221{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mc3_c00221{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m38_c00221{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m52_c00221{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.ma3_c00221{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m14_c00221{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);}
.med_c00221{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m5e_c00221{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m4e_c00221{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m19_c00221{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m44_c00221{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mc2_c00221{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.md5_c00221{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m6a_c00221{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m8f_c00221{transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);}
.mcf_c00221{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mcb_c00221{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m1b_c00221{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m3c_c00221{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m9a_c00221{transform:matrix(0.534787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534787,0.000000,0.000000,0.250000,0,0);}
.m63_c00221{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m31_c00221{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mbb_c00221{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m3e_c00221{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mb1_c00221{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m91_c00221{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m3d_c00221{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.md1_c00221{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m5d_c00221{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m1e_c00221{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m29_c00221{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m34_c00221{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m84_c00221{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m18_c00221{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m4f_c00221{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m75_c00221{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m6e_c00221{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.maf_c00221{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m93_c00221{transform:matrix(0.549629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549629,0.000000,0.000000,0.250000,0,0);}
.m2d_c00221{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mb8_c00221{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m66_c00221{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m37_c00221{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m3a_c00221{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m92_c00221{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m3b_c00221{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m25_c00221{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m2e_c00221{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.mb7_c00221{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m78_c00221{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.me8_c00221{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);}
.m47_c00221{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m79_c00221{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mf0_c00221{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mc7_c00221{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m77_c00221{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m42_c00221{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.ma8_c00221{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m2f_c00221{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m1d_c00221{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.ma_c00221{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.meb_c00221{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m1a_c00221{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m49_c00221{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.me5_c00221{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m9c_c00221{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m1c_c00221{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m8a_c00221{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m4a_c00221{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mab_c00221{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m96_c00221{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m61_c00221{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.md6_c00221{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m5c_c00221{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mb5_c00221{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m35_c00221{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.mcd_c00221{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.mc8_c00221{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m88_c00221{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.ma0_c00221{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m95_c00221{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m8e_c00221{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.md_c00221{transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);}
.m51_c00221{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.md9_c00221{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);}
.md4_c00221{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.me7_c00221{transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);}
.m2_c00221{transform:matrix(0.638485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638485,0.000000,0.000000,0.250000,0,0);}
.m80_c00221{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.m10_c00221{transform:matrix(0.651471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651471,0.000000,0.000000,0.250000,0,0);}
.m6d_c00221{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m0_c00221{transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);}
.mca_c00221{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m48_c00221{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m3f_c00221{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m23_c00221{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m2a_c00221{transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);}
.m11_c00221{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.m45_c00221{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mb2_c00221{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m3_c00221{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);}
.m72_c00221{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m4c_c00221{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m4d_c00221{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m9f_c00221{transform:matrix(0.744118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.744118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.744118,0.000000,0.000000,0.250000,0,0);}
.m33_c00221{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m13_c00221{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);}
.m58_c00221{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mba_c00221{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mc5_c00221{transform:matrix(0.773237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.773237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.773237,0.000000,0.000000,0.250000,0,0);}
.mf1_c00221{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m56_c00221{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m60_c00221{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m81_c00221{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m1f_c00221{transform:matrix(1.002525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.002525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.002525,0.000000,0.000000,0.250000,0,0);}
.m30_c00221{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m17_c00221{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
.fs6_c00221{font-size:3.420000px;}
.fs7_c00221{font-size:11.880000px;}
.fs0_c00221{font-size:18.720000px;}
.fs5_c00221{font-size:20.400000px;}
.fs2_c00221{font-size:25.500000px;}
.fs1_c00221{font-size:28.920000px;}
.fs4_c00221{font-size:32.340000px;}
.fs3_c00221{font-size:35.700000px;}
.fs8_c00221{font-size:39.120000px;}
.y0_c00221{bottom:0.000000px;}
.yc0_c00221{bottom:250.905000px;}
.yc1_c00221{bottom:251.745000px;}
.ybe_c00221{bottom:251.970000px;}
.yc4_c00221{bottom:252.405000px;}
.ybf_c00221{bottom:252.825000px;}
.yc3_c00221{bottom:253.245000px;}
.yc2_c00221{bottom:253.905000px;}
.yc5_c00221{bottom:254.130000px;}
.yc7_c00221{bottom:255.405000px;}
.yc6_c00221{bottom:255.420000px;}
.ybb_c00221{bottom:270.825000px;}
.ybd_c00221{bottom:271.470000px;}
.yb9_c00221{bottom:272.745000px;}
.yb8_c00221{bottom:273.405000px;}
.ybc_c00221{bottom:273.825000px;}
.yba_c00221{bottom:274.905000px;}
.yb6_c00221{bottom:291.405000px;}
.yb4_c00221{bottom:292.245000px;}
.yb7_c00221{bottom:293.325000px;}
.yb5_c00221{bottom:294.405000px;}
.yb2_c00221{bottom:309.825000px;}
.yb1_c00221{bottom:310.905000px;}
.yb0_c00221{bottom:311.745000px;}
.yb3_c00221{bottom:312.825000px;}
.yaf_c00221{bottom:313.905000px;}
.yad_c00221{bottom:330.405000px;}
.yaa_c00221{bottom:331.245000px;}
.yae_c00221{bottom:332.325000px;}
.yac_c00221{bottom:332.745000px;}
.ya9_c00221{bottom:333.405000px;}
.yab_c00221{bottom:333.630000px;}
.ya7_c00221{bottom:350.745000px;}
.ya5_c00221{bottom:352.245000px;}
.ya2_c00221{bottom:352.905000px;}
.ya6_c00221{bottom:353.130000px;}
.ya4_c00221{bottom:353.325000px;}
.ya8_c00221{bottom:353.970000px;}
.ya3_c00221{bottom:354.405000px;}
.y9e_c00221{bottom:371.745000px;}
.y9d_c00221{bottom:372.405000px;}
.y9f_c00221{bottom:372.630000px;}
.ya1_c00221{bottom:373.470000px;}
.ya0_c00221{bottom:373.905000px;}
.y99_c00221{bottom:390.180000px;}
.y9b_c00221{bottom:391.245000px;}
.y9c_c00221{bottom:392.130000px;}
.y98_c00221{bottom:393.405000px;}
.y9a_c00221{bottom:393.630000px;}
.y94_c00221{bottom:410.745000px;}
.y96_c00221{bottom:411.825000px;}
.y97_c00221{bottom:412.470000px;}
.y95_c00221{bottom:412.905000px;}
.y92_c00221{bottom:430.245000px;}
.y93_c00221{bottom:431.325000px;}
.y8f_c00221{bottom:432.405000px;}
.y91_c00221{bottom:432.630000px;}
.y90_c00221{bottom:433.470000px;}
.y89_c00221{bottom:448.680000px;}
.y8b_c00221{bottom:448.905000px;}
.y8c_c00221{bottom:449.745000px;}
.y8e_c00221{bottom:450.825000px;}
.y8a_c00221{bottom:451.905000px;}
.y8d_c00221{bottom:452.130000px;}
.y86_c00221{bottom:470.745000px;}
.y87_c00221{bottom:471.630000px;}
.y88_c00221{bottom:472.470000px;}
.y85_c00221{bottom:472.905000px;}
.y83_c00221{bottom:487.905000px;}
.y81_c00221{bottom:490.245000px;}
.y84_c00221{bottom:490.905000px;}
.y82_c00221{bottom:492.405000px;}
.y7f_c00221{bottom:507.405000px;}
.y7e_c00221{bottom:509.745000px;}
.y80_c00221{bottom:510.630000px;}
.y7d_c00221{bottom:511.905000px;}
.y7b_c00221{bottom:529.245000px;}
.y7a_c00221{bottom:530.130000px;}
.y7c_c00221{bottom:530.325000px;}
.y79_c00221{bottom:531.405000px;}
.y78_c00221{bottom:547.905000px;}
.y74_c00221{bottom:548.745000px;}
.y77_c00221{bottom:549.825000px;}
.y75_c00221{bottom:550.470000px;}
.y73_c00221{bottom:550.905000px;}
.y76_c00221{bottom:551.130000px;}
.y70_c00221{bottom:567.180000px;}
.y71_c00221{bottom:568.245000px;}
.y72_c00221{bottom:569.325000px;}
.y6f_c00221{bottom:570.405000px;}
.y6e_c00221{bottom:587.745000px;}
.y6b_c00221{bottom:589.245000px;}
.y6d_c00221{bottom:590.130000px;}
.y6c_c00221{bottom:591.405000px;}
.y6a_c00221{bottom:607.470000px;}
.y69_c00221{bottom:608.550000px;}
.y67_c00221{bottom:608.745000px;}
.y65_c00221{bottom:609.405000px;}
.y68_c00221{bottom:609.630000px;}
.y66_c00221{bottom:610.905000px;}
.y62_c00221{bottom:628.245000px;}
.y64_c00221{bottom:629.130000px;}
.y63_c00221{bottom:629.325000px;}
.y61_c00221{bottom:630.405000px;}
.y5d_c00221{bottom:647.745000px;}
.y5c_c00221{bottom:648.825000px;}
.y5e_c00221{bottom:649.470000px;}
.y5f_c00221{bottom:649.905000px;}
.y60_c00221{bottom:650.970000px;}
.y5a_c00221{bottom:667.245000px;}
.y59_c00221{bottom:668.325000px;}
.y5b_c00221{bottom:668.970000px;}
.y58_c00221{bottom:669.405000px;}
.y57_c00221{bottom:686.745000px;}
.y56_c00221{bottom:687.825000px;}
.y55_c00221{bottom:688.905000px;}
.y52_c00221{bottom:706.245000px;}
.y50_c00221{bottom:707.550000px;}
.y53_c00221{bottom:707.745000px;}
.y4f_c00221{bottom:708.405000px;}
.y51_c00221{bottom:708.630000px;}
.y54_c00221{bottom:709.905000px;}
.y49_c00221{bottom:725.745000px;}
.y4d_c00221{bottom:726.825000px;}
.y4e_c00221{bottom:727.245000px;}
.y4b_c00221{bottom:727.905000px;}
.y4a_c00221{bottom:728.130000px;}
.y4c_c00221{bottom:728.325000px;}
.y44_c00221{bottom:744.405000px;}
.y43_c00221{bottom:745.245000px;}
.y47_c00221{bottom:746.745000px;}
.y42_c00221{bottom:747.405000px;}
.y45_c00221{bottom:747.630000px;}
.y46_c00221{bottom:747.825000px;}
.y48_c00221{bottom:748.905000px;}
.y41_c00221{bottom:763.905000px;}
.y40_c00221{bottom:764.970000px;}
.y3d_c00221{bottom:766.245000px;}
.y3f_c00221{bottom:767.970000px;}
.y3e_c00221{bottom:768.405000px;}
.y3c_c00221{bottom:785.745000px;}
.y3a_c00221{bottom:786.630000px;}
.y3b_c00221{bottom:787.905000px;}
.y37_c00221{bottom:805.245000px;}
.y39_c00221{bottom:806.325000px;}
.y36_c00221{bottom:807.405000px;}
.y38_c00221{bottom:807.630000px;}
.y33_c00221{bottom:824.745000px;}
.y32_c00221{bottom:825.630000px;}
.y35_c00221{bottom:825.825000px;}
.y34_c00221{bottom:826.905000px;}
.y31_c00221{bottom:844.245000px;}
.y2f_c00221{bottom:845.745000px;}
.y2c_c00221{bottom:846.405000px;}
.y30_c00221{bottom:846.630000px;}
.y2d_c00221{bottom:847.905000px;}
.y2e_c00221{bottom:847.920000px;}
.y2a_c00221{bottom:865.905000px;}
.y29_c00221{bottom:866.130000px;}
.y2b_c00221{bottom:867.405000px;}
.y28_c00221{bottom:885.630000px;}
.y27_c00221{bottom:885.825000px;}
.y26_c00221{bottom:886.905000px;}
.y22_c00221{bottom:902.745000px;}
.y24_c00221{bottom:904.245000px;}
.y21_c00221{bottom:904.905000px;}
.y25_c00221{bottom:905.970000px;}
.y23_c00221{bottom:906.405000px;}
.y1f_c00221{bottom:922.470000px;}
.y1d_c00221{bottom:923.745000px;}
.y1e_c00221{bottom:924.630000px;}
.y20_c00221{bottom:924.825000px;}
.y1b_c00221{bottom:925.905000px;}
.y1c_c00221{bottom:925.920000px;}
.y1a_c00221{bottom:943.245000px;}
.y18_c00221{bottom:944.550000px;}
.y17_c00221{bottom:945.405000px;}
.y19_c00221{bottom:945.420000px;}
.y11_c00221{bottom:962.745000px;}
.y13_c00221{bottom:963.825000px;}
.y16_c00221{bottom:964.245000px;}
.y14_c00221{bottom:965.130000px;}
.y15_c00221{bottom:966.405000px;}
.y12_c00221{bottom:966.420000px;}
.yd_c00221{bottom:982.245000px;}
.yf_c00221{bottom:984.405000px;}
.ye_c00221{bottom:985.920000px;}
.y10_c00221{bottom:989.775000px;}
.ya_c00221{bottom:1009.905000px;}
.yc_c00221{bottom:1010.550000px;}
.yb_c00221{bottom:1012.050000px;}
.y6_c00221{bottom:1030.905000px;}
.y7_c00221{bottom:1031.325000px;}
.y8_c00221{bottom:1031.550000px;}
.y9_c00221{bottom:1032.405000px;}
.y5_c00221{bottom:1061.745000px;}
.y4_c00221{bottom:1063.470000px;}
.y3_c00221{bottom:1063.905000px;}
.y2_c00221{bottom:1098.405000px;}
.y1_c00221{bottom:1101.630000px;}
.h7_c00221{height:4.206533px;}
.h8_c00221{height:14.612168px;}
.h1_c00221{height:23.025234px;}
.h6_c00221{height:25.091602px;}
.h3_c00221{height:31.364502px;}
.h2_c00221{height:35.571035px;}
.h5_c00221{height:39.777568px;}
.h4_c00221{height:43.910303px;}
.h9_c00221{height:48.116836px;}
.h0_c00221{height:1335.000000px;}
.w0_c00221{width:880.500000px;}
.x0_c00221{left:0.000000px;}
.x2_c00221{left:151.920000px;}
.x39_c00221{left:153.420000px;}
.xc1_c00221{left:154.500000px;}
.xd_c00221{left:165.000000px;}
.x16_c00221{left:166.920000px;}
.x21_c00221{left:168.000000px;}
.x50_c00221{left:169.080000px;}
.x6a_c00221{left:171.420000px;}
.x4d_c00221{left:172.920000px;}
.xf9_c00221{left:175.500000px;}
.x7e_c00221{left:177.000000px;}
.xa8_c00221{left:180.420000px;}
.x100_c00221{left:183.000000px;}
.xd5_c00221{left:186.420000px;}
.x5b_c00221{left:187.500000px;}
.xa1_c00221{left:189.000000px;}
.x3a_c00221{left:190.080000px;}
.x7f_c00221{left:192.000000px;}
.x6b_c00221{left:193.500000px;}
.xb0_c00221{left:194.580000px;}
.x87_c00221{left:198.420000px;}
.x4e_c00221{left:199.500000px;}
.xc8_c00221{left:201.000000px;}
.xe0_c00221{left:202.500000px;}
.xed_c00221{left:204.000000px;}
.x17_c00221{left:205.920000px;}
.x6c_c00221{left:208.920000px;}
.x88_c00221{left:210.000000px;}
.xce_c00221{left:211.500000px;}
.xd6_c00221{left:213.420000px;}
.x61_c00221{left:215.580000px;}
.x8f_c00221{left:217.080000px;}
.xb7_c00221{left:222.000000px;}
.x80_c00221{left:223.080000px;}
.x79_c00221{left:225.420000px;}
.xa9_c00221{left:226.500000px;}
.xe1_c00221{left:229.920000px;}
.x6d_c00221{left:234.000000px;}
.x43_c00221{left:237.420000px;}
.xe_c00221{left:240.000000px;}
.xc2_c00221{left:241.080000px;}
.xfa_c00221{left:243.000000px;}
.xb1_c00221{left:244.920000px;}
.xa2_c00221{left:246.420000px;}
.xe2_c00221{left:247.920000px;}
.x2a_c00221{left:249.000000px;}
.x51_c00221{left:250.500000px;}
.xd7_c00221{left:253.500000px;}
.x4f_c00221{left:255.000000px;}
.xe8_c00221{left:256.500000px;}
.x22_c00221{left:258.000000px;}
.x30_c00221{left:261.000000px;}
.x44_c00221{left:262.500000px;}
.x81_c00221{left:264.000000px;}
.x18_c00221{left:265.500000px;}
.x6e_c00221{left:266.580000px;}
.x52_c00221{left:268.080000px;}
.xb2_c00221{left:270.420000px;}
.xfd_c00221{left:274.500000px;}
.xee_c00221{left:276.000000px;}
.xaa_c00221{left:278.580000px;}
.x23_c00221{left:280.500000px;}
.x62_c00221{left:282.420000px;}
.x19_c00221{left:286.500000px;}
.xc3_c00221{left:288.000000px;}
.x9d_c00221{left:289.080000px;}
.x3b_c00221{left:290.580000px;}
.xf_c00221{left:294.000000px;}
.xcf_c00221{left:295.500000px;}
.x90_c00221{left:297.000000px;}
.xe3_c00221{left:298.920000px;}
.x2b_c00221{left:300.000000px;}
.xd8_c00221{left:304.500000px;}
.x101_c00221{left:306.000000px;}
.xb8_c00221{left:310.080000px;}
.x89_c00221{left:312.000000px;}
.xd3_c00221{left:313.500000px;}
.xb3_c00221{left:314.580000px;}
.x31_c00221{left:316.500000px;}
.xef_c00221{left:321.000000px;}
.x2c_c00221{left:322.080000px;}
.xe4_c00221{left:324.000000px;}
.x3_c00221{left:325.500000px;}
.xc4_c00221{left:331.500000px;}
.xf4_c00221{left:332.580000px;}
.x10_c00221{left:334.920000px;}
.xb9_c00221{left:336.645000px;}
.x3c_c00221{left:337.920000px;}
.x7_c00221{left:339.000000px;}
.x53_c00221{left:342.000000px;}
.xe9_c00221{left:343.500000px;}
.xfc_c00221{left:345.000000px;}
.x24_c00221{left:346.275000px;}
.x2d_c00221{left:347.580000px;}
.x63_c00221{left:349.500000px;}
.xba_c00221{left:351.000000px;}
.xb4_c00221{left:352.500000px;}
.xdd_c00221{left:354.000000px;}
.x7a_c00221{left:355.920000px;}
.xf0_c00221{left:357.420000px;}
.x72_c00221{left:358.920000px;}
.x54_c00221{left:362.580000px;}
.xbb_c00221{left:364.500000px;}
.x45_c00221{left:367.500000px;}
.x11_c00221{left:370.500000px;}
.x32_c00221{left:372.000000px;}
.x2e_c00221{left:375.645000px;}
.x1a_c00221{left:376.920000px;}
.x5c_c00221{left:381.000000px;}
.xbc_c00221{left:382.500000px;}
.x6f_c00221{left:384.000000px;}
.xb5_c00221{left:385.080000px;}
.x82_c00221{left:387.000000px;}
.x25_c00221{left:390.420000px;}
.xf1_c00221{left:391.500000px;}
.x9e_c00221{left:393.000000px;}
.xbd_c00221{left:394.500000px;}
.x8_c00221{left:395.580000px;}
.x96_c00221{left:397.500000px;}
.x1_c00221{left:399.000000px;}
.x4_c00221{left:402.000000px;}
.xfe_c00221{left:403.920000px;}
.x33_c00221{left:405.000000px;}
.xf2_c00221{left:411.420000px;}
.x1b_c00221{left:412.920000px;}
.x64_c00221{left:414.000000px;}
.x97_c00221{left:415.500000px;}
.x12_c00221{left:417.000000px;}
.x9_c00221{left:419.580000px;}
.x34_c00221{left:421.500000px;}
.x26_c00221{left:422.580000px;}
.xd0_c00221{left:424.080000px;}
.x5d_c00221{left:427.500000px;}
.x46_c00221{left:429.000000px;}
.xab_c00221{left:430.920000px;}
.x8a_c00221{left:433.920000px;}
.x83_c00221{left:436.500000px;}
.x1c_c00221{left:438.000000px;}
.x91_c00221{left:439.920000px;}
.xc5_c00221{left:442.500000px;}
.x47_c00221{left:444.420000px;}
.x13_c00221{left:450.000000px;}
.x65_c00221{left:451.500000px;}
.xd9_c00221{left:453.000000px;}
.x7b_c00221{left:454.920000px;}
.xbe_c00221{left:456.000000px;}
.x2f_c00221{left:457.080000px;}
.xfb_c00221{left:458.580000px;}
.x3d_c00221{left:461.580000px;}
.x35_c00221{left:463.080000px;}
.xa_c00221{left:464.580000px;}
.x70_c00221{left:466.920000px;}
.x55_c00221{left:468.000000px;}
.x66_c00221{left:469.920000px;}
.xd4_c00221{left:471.000000px;}
.xf3_c00221{left:472.500000px;}
.x8b_c00221{left:474.000000px;}
.x5_c00221{left:476.580000px;}
.xff_c00221{left:478.500000px;}
.x9f_c00221{left:481.500000px;}
.xea_c00221{left:483.000000px;}
.x73_c00221{left:484.920000px;}
.xb_c00221{left:486.420000px;}
.x14_c00221{left:489.420000px;}
.xac_c00221{left:490.500000px;}
.x71_c00221{left:492.000000px;}
.x1d_c00221{left:493.080000px;}
.xa3_c00221{left:495.000000px;}
.x5e_c00221{left:496.080000px;}
.x67_c00221{left:498.000000px;}
.xa0_c00221{left:499.500000px;}
.xda_c00221{left:501.000000px;}
.x56_c00221{left:502.920000px;}
.xc_c00221{left:504.000000px;}
.x3e_c00221{left:507.000000px;}
.xad_c00221{left:508.500000px;}
.x1e_c00221{left:510.420000px;}
.xc9_c00221{left:514.080000px;}
.xb6_c00221{left:516.000000px;}
.x27_c00221{left:519.000000px;}
.x15_c00221{left:520.500000px;}
.x7c_c00221{left:521.580000px;}
.xbf_c00221{left:525.000000px;}
.x6_c00221{left:526.275000px;}
.xe5_c00221{left:530.580000px;}
.x36_c00221{left:533.355000px;}
.x1f_c00221{left:535.500000px;}
.xc6_c00221{left:537.420000px;}
.x8c_c00221{left:544.920000px;}
.x92_c00221{left:550.500000px;}
.xca_c00221{left:551.580000px;}
.x84_c00221{left:556.500000px;}
.xde_c00221{left:561.000000px;}
.x74_c00221{left:564.000000px;}
.xf5_c00221{left:565.080000px;}
.xc7_c00221{left:567.000000px;}
.x3f_c00221{left:568.080000px;}
.xc0_c00221{left:571.500000px;}
.x57_c00221{left:573.000000px;}
.x102_c00221{left:574.080000px;}
.x48_c00221{left:576.000000px;}
.x98_c00221{left:580.080000px;}
.xf6_c00221{left:583.500000px;}
.x20_c00221{left:585.000000px;}
.x58_c00221{left:586.500000px;}
.x75_c00221{left:588.000000px;}
.xd1_c00221{left:589.920000px;}
.xe6_c00221{left:591.420000px;}
.x49_c00221{left:593.580000px;}
.xcb_c00221{left:595.500000px;}
.x28_c00221{left:597.000000px;}
.x40_c00221{left:598.080000px;}
.x99_c00221{left:600.000000px;}
.x103_c00221{left:602.580000px;}
.xa4_c00221{left:604.920000px;}
.xeb_c00221{left:607.500000px;}
.xae_c00221{left:611.580000px;}
.xdf_c00221{left:613.080000px;}
.x68_c00221{left:614.580000px;}
.xe7_c00221{left:616.500000px;}
.x85_c00221{left:618.000000px;}
.x59_c00221{left:619.500000px;}
.x76_c00221{left:621.000000px;}
.xd2_c00221{left:624.000000px;}
.x93_c00221{left:625.920000px;}
.x37_c00221{left:627.000000px;}
.x5f_c00221{left:630.000000px;}
.xa5_c00221{left:631.920000px;}
.x104_c00221{left:636.000000px;}
.xdb_c00221{left:637.500000px;}
.x4a_c00221{left:639.000000px;}
.x9a_c00221{left:640.080000px;}
.x8d_c00221{left:643.080000px;}
.xcc_c00221{left:649.500000px;}
.x94_c00221{left:652.920000px;}
.x41_c00221{left:654.000000px;}
.x4b_c00221{left:655.500000px;}
.xa6_c00221{left:656.580000px;}
.x9b_c00221{left:658.920000px;}
.x29_c00221{left:661.275000px;}
.x77_c00221{left:663.000000px;}
.xaf_c00221{left:666.000000px;}
.x69_c00221{left:667.920000px;}
.x60_c00221{left:669.000000px;}
.x5a_c00221{left:670.080000px;}
.x86_c00221{left:672.000000px;}
.x38_c00221{left:676.080000px;}
.xf7_c00221{left:681.420000px;}
.xdc_c00221{left:685.500000px;}
.x7d_c00221{left:687.000000px;}
.x8e_c00221{left:688.920000px;}
.xec_c00221{left:691.080000px;}
.x95_c00221{left:696.420000px;}
.x4c_c00221{left:703.080000px;}
.x9c_c00221{left:704.580000px;}
.xcd_c00221{left:709.920000px;}
.x78_c00221{left:712.920000px;}
.xa7_c00221{left:714.000000px;}
.x42_c00221{left:715.500000px;}
.xf8_c00221{left:718.080000px;}
@media print{
.v0_c00221{vertical-align:0.000000pt;}
.ls0_c00221{letter-spacing:0.000000pt;}
.ws0_c00221{word-spacing:0.000000pt;}
.fs6_c00221{font-size:3.040000pt;}
.fs7_c00221{font-size:10.560000pt;}
.fs0_c00221{font-size:16.640000pt;}
.fs5_c00221{font-size:18.133333pt;}
.fs2_c00221{font-size:22.666667pt;}
.fs1_c00221{font-size:25.706667pt;}
.fs4_c00221{font-size:28.746667pt;}
.fs3_c00221{font-size:31.733333pt;}
.fs8_c00221{font-size:34.773333pt;}
.y0_c00221{bottom:0.000000pt;}
.yc0_c00221{bottom:223.026667pt;}
.yc1_c00221{bottom:223.773333pt;}
.ybe_c00221{bottom:223.973333pt;}
.yc4_c00221{bottom:224.360000pt;}
.ybf_c00221{bottom:224.733333pt;}
.yc3_c00221{bottom:225.106667pt;}
.yc2_c00221{bottom:225.693333pt;}
.yc5_c00221{bottom:225.893333pt;}
.yc7_c00221{bottom:227.026667pt;}
.yc6_c00221{bottom:227.040000pt;}
.ybb_c00221{bottom:240.733333pt;}
.ybd_c00221{bottom:241.306667pt;}
.yb9_c00221{bottom:242.440000pt;}
.yb8_c00221{bottom:243.026667pt;}
.ybc_c00221{bottom:243.400000pt;}
.yba_c00221{bottom:244.360000pt;}
.yb6_c00221{bottom:259.026667pt;}
.yb4_c00221{bottom:259.773333pt;}
.yb7_c00221{bottom:260.733333pt;}
.yb5_c00221{bottom:261.693333pt;}
.yb2_c00221{bottom:275.400000pt;}
.yb1_c00221{bottom:276.360000pt;}
.yb0_c00221{bottom:277.106667pt;}
.yb3_c00221{bottom:278.066667pt;}
.yaf_c00221{bottom:279.026667pt;}
.yad_c00221{bottom:293.693333pt;}
.yaa_c00221{bottom:294.440000pt;}
.yae_c00221{bottom:295.400000pt;}
.yac_c00221{bottom:295.773333pt;}
.ya9_c00221{bottom:296.360000pt;}
.yab_c00221{bottom:296.560000pt;}
.ya7_c00221{bottom:311.773333pt;}
.ya5_c00221{bottom:313.106667pt;}
.ya2_c00221{bottom:313.693333pt;}
.ya6_c00221{bottom:313.893333pt;}
.ya4_c00221{bottom:314.066667pt;}
.ya8_c00221{bottom:314.640000pt;}
.ya3_c00221{bottom:315.026667pt;}
.y9e_c00221{bottom:330.440000pt;}
.y9d_c00221{bottom:331.026667pt;}
.y9f_c00221{bottom:331.226667pt;}
.ya1_c00221{bottom:331.973333pt;}
.ya0_c00221{bottom:332.360000pt;}
.y99_c00221{bottom:346.826667pt;}
.y9b_c00221{bottom:347.773333pt;}
.y9c_c00221{bottom:348.560000pt;}
.y98_c00221{bottom:349.693333pt;}
.y9a_c00221{bottom:349.893333pt;}
.y94_c00221{bottom:365.106667pt;}
.y96_c00221{bottom:366.066667pt;}
.y97_c00221{bottom:366.640000pt;}
.y95_c00221{bottom:367.026667pt;}
.y92_c00221{bottom:382.440000pt;}
.y93_c00221{bottom:383.400000pt;}
.y8f_c00221{bottom:384.360000pt;}
.y91_c00221{bottom:384.560000pt;}
.y90_c00221{bottom:385.306667pt;}
.y89_c00221{bottom:398.826667pt;}
.y8b_c00221{bottom:399.026667pt;}
.y8c_c00221{bottom:399.773333pt;}
.y8e_c00221{bottom:400.733333pt;}
.y8a_c00221{bottom:401.693333pt;}
.y8d_c00221{bottom:401.893333pt;}
.y86_c00221{bottom:418.440000pt;}
.y87_c00221{bottom:419.226667pt;}
.y88_c00221{bottom:419.973333pt;}
.y85_c00221{bottom:420.360000pt;}
.y83_c00221{bottom:433.693333pt;}
.y81_c00221{bottom:435.773333pt;}
.y84_c00221{bottom:436.360000pt;}
.y82_c00221{bottom:437.693333pt;}
.y7f_c00221{bottom:451.026667pt;}
.y7e_c00221{bottom:453.106667pt;}
.y80_c00221{bottom:453.893333pt;}
.y7d_c00221{bottom:455.026667pt;}
.y7b_c00221{bottom:470.440000pt;}
.y7a_c00221{bottom:471.226667pt;}
.y7c_c00221{bottom:471.400000pt;}
.y79_c00221{bottom:472.360000pt;}
.y78_c00221{bottom:487.026667pt;}
.y74_c00221{bottom:487.773333pt;}
.y77_c00221{bottom:488.733333pt;}
.y75_c00221{bottom:489.306667pt;}
.y73_c00221{bottom:489.693333pt;}
.y76_c00221{bottom:489.893333pt;}
.y70_c00221{bottom:504.160000pt;}
.y71_c00221{bottom:505.106667pt;}
.y72_c00221{bottom:506.066667pt;}
.y6f_c00221{bottom:507.026667pt;}
.y6e_c00221{bottom:522.440000pt;}
.y6b_c00221{bottom:523.773333pt;}
.y6d_c00221{bottom:524.560000pt;}
.y6c_c00221{bottom:525.693333pt;}
.y6a_c00221{bottom:539.973333pt;}
.y69_c00221{bottom:540.933333pt;}
.y67_c00221{bottom:541.106667pt;}
.y65_c00221{bottom:541.693333pt;}
.y68_c00221{bottom:541.893333pt;}
.y66_c00221{bottom:543.026667pt;}
.y62_c00221{bottom:558.440000pt;}
.y64_c00221{bottom:559.226667pt;}
.y63_c00221{bottom:559.400000pt;}
.y61_c00221{bottom:560.360000pt;}
.y5d_c00221{bottom:575.773333pt;}
.y5c_c00221{bottom:576.733333pt;}
.y5e_c00221{bottom:577.306667pt;}
.y5f_c00221{bottom:577.693333pt;}
.y60_c00221{bottom:578.640000pt;}
.y5a_c00221{bottom:593.106667pt;}
.y59_c00221{bottom:594.066667pt;}
.y5b_c00221{bottom:594.640000pt;}
.y58_c00221{bottom:595.026667pt;}
.y57_c00221{bottom:610.440000pt;}
.y56_c00221{bottom:611.400000pt;}
.y55_c00221{bottom:612.360000pt;}
.y52_c00221{bottom:627.773333pt;}
.y50_c00221{bottom:628.933333pt;}
.y53_c00221{bottom:629.106667pt;}
.y4f_c00221{bottom:629.693333pt;}
.y51_c00221{bottom:629.893333pt;}
.y54_c00221{bottom:631.026667pt;}
.y49_c00221{bottom:645.106667pt;}
.y4d_c00221{bottom:646.066667pt;}
.y4e_c00221{bottom:646.440000pt;}
.y4b_c00221{bottom:647.026667pt;}
.y4a_c00221{bottom:647.226667pt;}
.y4c_c00221{bottom:647.400000pt;}
.y44_c00221{bottom:661.693333pt;}
.y43_c00221{bottom:662.440000pt;}
.y47_c00221{bottom:663.773333pt;}
.y42_c00221{bottom:664.360000pt;}
.y45_c00221{bottom:664.560000pt;}
.y46_c00221{bottom:664.733333pt;}
.y48_c00221{bottom:665.693333pt;}
.y41_c00221{bottom:679.026667pt;}
.y40_c00221{bottom:679.973333pt;}
.y3d_c00221{bottom:681.106667pt;}
.y3f_c00221{bottom:682.640000pt;}
.y3e_c00221{bottom:683.026667pt;}
.y3c_c00221{bottom:698.440000pt;}
.y3a_c00221{bottom:699.226667pt;}
.y3b_c00221{bottom:700.360000pt;}
.y37_c00221{bottom:715.773333pt;}
.y39_c00221{bottom:716.733333pt;}
.y36_c00221{bottom:717.693333pt;}
.y38_c00221{bottom:717.893333pt;}
.y33_c00221{bottom:733.106667pt;}
.y32_c00221{bottom:733.893333pt;}
.y35_c00221{bottom:734.066667pt;}
.y34_c00221{bottom:735.026667pt;}
.y31_c00221{bottom:750.440000pt;}
.y2f_c00221{bottom:751.773333pt;}
.y2c_c00221{bottom:752.360000pt;}
.y30_c00221{bottom:752.560000pt;}
.y2d_c00221{bottom:753.693333pt;}
.y2e_c00221{bottom:753.706667pt;}
.y2a_c00221{bottom:769.693333pt;}
.y29_c00221{bottom:769.893333pt;}
.y2b_c00221{bottom:771.026667pt;}
.y28_c00221{bottom:787.226667pt;}
.y27_c00221{bottom:787.400000pt;}
.y26_c00221{bottom:788.360000pt;}
.y22_c00221{bottom:802.440000pt;}
.y24_c00221{bottom:803.773333pt;}
.y21_c00221{bottom:804.360000pt;}
.y25_c00221{bottom:805.306667pt;}
.y23_c00221{bottom:805.693333pt;}
.y1f_c00221{bottom:819.973333pt;}
.y1d_c00221{bottom:821.106667pt;}
.y1e_c00221{bottom:821.893333pt;}
.y20_c00221{bottom:822.066667pt;}
.y1b_c00221{bottom:823.026667pt;}
.y1c_c00221{bottom:823.040000pt;}
.y1a_c00221{bottom:838.440000pt;}
.y18_c00221{bottom:839.600000pt;}
.y17_c00221{bottom:840.360000pt;}
.y19_c00221{bottom:840.373333pt;}
.y11_c00221{bottom:855.773333pt;}
.y13_c00221{bottom:856.733333pt;}
.y16_c00221{bottom:857.106667pt;}
.y14_c00221{bottom:857.893333pt;}
.y15_c00221{bottom:859.026667pt;}
.y12_c00221{bottom:859.040000pt;}
.yd_c00221{bottom:873.106667pt;}
.yf_c00221{bottom:875.026667pt;}
.ye_c00221{bottom:876.373333pt;}
.y10_c00221{bottom:879.800000pt;}
.ya_c00221{bottom:897.693333pt;}
.yc_c00221{bottom:898.266667pt;}
.yb_c00221{bottom:899.600000pt;}
.y6_c00221{bottom:916.360000pt;}
.y7_c00221{bottom:916.733333pt;}
.y8_c00221{bottom:916.933333pt;}
.y9_c00221{bottom:917.693333pt;}
.y5_c00221{bottom:943.773333pt;}
.y4_c00221{bottom:945.306667pt;}
.y3_c00221{bottom:945.693333pt;}
.y2_c00221{bottom:976.360000pt;}
.y1_c00221{bottom:979.226667pt;}
.h7_c00221{height:3.739141pt;}
.h8_c00221{height:12.988594pt;}
.h1_c00221{height:20.466875pt;}
.h6_c00221{height:22.303646pt;}
.h3_c00221{height:27.879557pt;}
.h2_c00221{height:31.618698pt;}
.h5_c00221{height:35.357839pt;}
.h4_c00221{height:39.031380pt;}
.h9_c00221{height:42.770521pt;}
.h0_c00221{height:1186.666667pt;}
.w0_c00221{width:782.666667pt;}
.x0_c00221{left:0.000000pt;}
.x2_c00221{left:135.040000pt;}
.x39_c00221{left:136.373333pt;}
.xc1_c00221{left:137.333333pt;}
.xd_c00221{left:146.666667pt;}
.x16_c00221{left:148.373333pt;}
.x21_c00221{left:149.333333pt;}
.x50_c00221{left:150.293333pt;}
.x6a_c00221{left:152.373333pt;}
.x4d_c00221{left:153.706667pt;}
.xf9_c00221{left:156.000000pt;}
.x7e_c00221{left:157.333333pt;}
.xa8_c00221{left:160.373333pt;}
.x100_c00221{left:162.666667pt;}
.xd5_c00221{left:165.706667pt;}
.x5b_c00221{left:166.666667pt;}
.xa1_c00221{left:168.000000pt;}
.x3a_c00221{left:168.960000pt;}
.x7f_c00221{left:170.666667pt;}
.x6b_c00221{left:172.000000pt;}
.xb0_c00221{left:172.960000pt;}
.x87_c00221{left:176.373333pt;}
.x4e_c00221{left:177.333333pt;}
.xc8_c00221{left:178.666667pt;}
.xe0_c00221{left:180.000000pt;}
.xed_c00221{left:181.333333pt;}
.x17_c00221{left:183.040000pt;}
.x6c_c00221{left:185.706667pt;}
.x88_c00221{left:186.666667pt;}
.xce_c00221{left:188.000000pt;}
.xd6_c00221{left:189.706667pt;}
.x61_c00221{left:191.626667pt;}
.x8f_c00221{left:192.960000pt;}
.xb7_c00221{left:197.333333pt;}
.x80_c00221{left:198.293333pt;}
.x79_c00221{left:200.373333pt;}
.xa9_c00221{left:201.333333pt;}
.xe1_c00221{left:204.373333pt;}
.x6d_c00221{left:208.000000pt;}
.x43_c00221{left:211.040000pt;}
.xe_c00221{left:213.333333pt;}
.xc2_c00221{left:214.293333pt;}
.xfa_c00221{left:216.000000pt;}
.xb1_c00221{left:217.706667pt;}
.xa2_c00221{left:219.040000pt;}
.xe2_c00221{left:220.373333pt;}
.x2a_c00221{left:221.333333pt;}
.x51_c00221{left:222.666667pt;}
.xd7_c00221{left:225.333333pt;}
.x4f_c00221{left:226.666667pt;}
.xe8_c00221{left:228.000000pt;}
.x22_c00221{left:229.333333pt;}
.x30_c00221{left:232.000000pt;}
.x44_c00221{left:233.333333pt;}
.x81_c00221{left:234.666667pt;}
.x18_c00221{left:236.000000pt;}
.x6e_c00221{left:236.960000pt;}
.x52_c00221{left:238.293333pt;}
.xb2_c00221{left:240.373333pt;}
.xfd_c00221{left:244.000000pt;}
.xee_c00221{left:245.333333pt;}
.xaa_c00221{left:247.626667pt;}
.x23_c00221{left:249.333333pt;}
.x62_c00221{left:251.040000pt;}
.x19_c00221{left:254.666667pt;}
.xc3_c00221{left:256.000000pt;}
.x9d_c00221{left:256.960000pt;}
.x3b_c00221{left:258.293333pt;}
.xf_c00221{left:261.333333pt;}
.xcf_c00221{left:262.666667pt;}
.x90_c00221{left:264.000000pt;}
.xe3_c00221{left:265.706667pt;}
.x2b_c00221{left:266.666667pt;}
.xd8_c00221{left:270.666667pt;}
.x101_c00221{left:272.000000pt;}
.xb8_c00221{left:275.626667pt;}
.x89_c00221{left:277.333333pt;}
.xd3_c00221{left:278.666667pt;}
.xb3_c00221{left:279.626667pt;}
.x31_c00221{left:281.333333pt;}
.xef_c00221{left:285.333333pt;}
.x2c_c00221{left:286.293333pt;}
.xe4_c00221{left:288.000000pt;}
.x3_c00221{left:289.333333pt;}
.xc4_c00221{left:294.666667pt;}
.xf4_c00221{left:295.626667pt;}
.x10_c00221{left:297.706667pt;}
.xb9_c00221{left:299.240000pt;}
.x3c_c00221{left:300.373333pt;}
.x7_c00221{left:301.333333pt;}
.x53_c00221{left:304.000000pt;}
.xe9_c00221{left:305.333333pt;}
.xfc_c00221{left:306.666667pt;}
.x24_c00221{left:307.800000pt;}
.x2d_c00221{left:308.960000pt;}
.x63_c00221{left:310.666667pt;}
.xba_c00221{left:312.000000pt;}
.xb4_c00221{left:313.333333pt;}
.xdd_c00221{left:314.666667pt;}
.x7a_c00221{left:316.373333pt;}
.xf0_c00221{left:317.706667pt;}
.x72_c00221{left:319.040000pt;}
.x54_c00221{left:322.293333pt;}
.xbb_c00221{left:324.000000pt;}
.x45_c00221{left:326.666667pt;}
.x11_c00221{left:329.333333pt;}
.x32_c00221{left:330.666667pt;}
.x2e_c00221{left:333.906667pt;}
.x1a_c00221{left:335.040000pt;}
.x5c_c00221{left:338.666667pt;}
.xbc_c00221{left:340.000000pt;}
.x6f_c00221{left:341.333333pt;}
.xb5_c00221{left:342.293333pt;}
.x82_c00221{left:344.000000pt;}
.x25_c00221{left:347.040000pt;}
.xf1_c00221{left:348.000000pt;}
.x9e_c00221{left:349.333333pt;}
.xbd_c00221{left:350.666667pt;}
.x8_c00221{left:351.626667pt;}
.x96_c00221{left:353.333333pt;}
.x1_c00221{left:354.666667pt;}
.x4_c00221{left:357.333333pt;}
.xfe_c00221{left:359.040000pt;}
.x33_c00221{left:360.000000pt;}
.xf2_c00221{left:365.706667pt;}
.x1b_c00221{left:367.040000pt;}
.x64_c00221{left:368.000000pt;}
.x97_c00221{left:369.333333pt;}
.x12_c00221{left:370.666667pt;}
.x9_c00221{left:372.960000pt;}
.x34_c00221{left:374.666667pt;}
.x26_c00221{left:375.626667pt;}
.xd0_c00221{left:376.960000pt;}
.x5d_c00221{left:380.000000pt;}
.x46_c00221{left:381.333333pt;}
.xab_c00221{left:383.040000pt;}
.x8a_c00221{left:385.706667pt;}
.x83_c00221{left:388.000000pt;}
.x1c_c00221{left:389.333333pt;}
.x91_c00221{left:391.040000pt;}
.xc5_c00221{left:393.333333pt;}
.x47_c00221{left:395.040000pt;}
.x13_c00221{left:400.000000pt;}
.x65_c00221{left:401.333333pt;}
.xd9_c00221{left:402.666667pt;}
.x7b_c00221{left:404.373333pt;}
.xbe_c00221{left:405.333333pt;}
.x2f_c00221{left:406.293333pt;}
.xfb_c00221{left:407.626667pt;}
.x3d_c00221{left:410.293333pt;}
.x35_c00221{left:411.626667pt;}
.xa_c00221{left:412.960000pt;}
.x70_c00221{left:415.040000pt;}
.x55_c00221{left:416.000000pt;}
.x66_c00221{left:417.706667pt;}
.xd4_c00221{left:418.666667pt;}
.xf3_c00221{left:420.000000pt;}
.x8b_c00221{left:421.333333pt;}
.x5_c00221{left:423.626667pt;}
.xff_c00221{left:425.333333pt;}
.x9f_c00221{left:428.000000pt;}
.xea_c00221{left:429.333333pt;}
.x73_c00221{left:431.040000pt;}
.xb_c00221{left:432.373333pt;}
.x14_c00221{left:435.040000pt;}
.xac_c00221{left:436.000000pt;}
.x71_c00221{left:437.333333pt;}
.x1d_c00221{left:438.293333pt;}
.xa3_c00221{left:440.000000pt;}
.x5e_c00221{left:440.960000pt;}
.x67_c00221{left:442.666667pt;}
.xa0_c00221{left:444.000000pt;}
.xda_c00221{left:445.333333pt;}
.x56_c00221{left:447.040000pt;}
.xc_c00221{left:448.000000pt;}
.x3e_c00221{left:450.666667pt;}
.xad_c00221{left:452.000000pt;}
.x1e_c00221{left:453.706667pt;}
.xc9_c00221{left:456.960000pt;}
.xb6_c00221{left:458.666667pt;}
.x27_c00221{left:461.333333pt;}
.x15_c00221{left:462.666667pt;}
.x7c_c00221{left:463.626667pt;}
.xbf_c00221{left:466.666667pt;}
.x6_c00221{left:467.800000pt;}
.xe5_c00221{left:471.626667pt;}
.x36_c00221{left:474.093333pt;}
.x1f_c00221{left:476.000000pt;}
.xc6_c00221{left:477.706667pt;}
.x8c_c00221{left:484.373333pt;}
.x92_c00221{left:489.333333pt;}
.xca_c00221{left:490.293333pt;}
.x84_c00221{left:494.666667pt;}
.xde_c00221{left:498.666667pt;}
.x74_c00221{left:501.333333pt;}
.xf5_c00221{left:502.293333pt;}
.xc7_c00221{left:504.000000pt;}
.x3f_c00221{left:504.960000pt;}
.xc0_c00221{left:508.000000pt;}
.x57_c00221{left:509.333333pt;}
.x102_c00221{left:510.293333pt;}
.x48_c00221{left:512.000000pt;}
.x98_c00221{left:515.626667pt;}
.xf6_c00221{left:518.666667pt;}
.x20_c00221{left:520.000000pt;}
.x58_c00221{left:521.333333pt;}
.x75_c00221{left:522.666667pt;}
.xd1_c00221{left:524.373333pt;}
.xe6_c00221{left:525.706667pt;}
.x49_c00221{left:527.626667pt;}
.xcb_c00221{left:529.333333pt;}
.x28_c00221{left:530.666667pt;}
.x40_c00221{left:531.626667pt;}
.x99_c00221{left:533.333333pt;}
.x103_c00221{left:535.626667pt;}
.xa4_c00221{left:537.706667pt;}
.xeb_c00221{left:540.000000pt;}
.xae_c00221{left:543.626667pt;}
.xdf_c00221{left:544.960000pt;}
.x68_c00221{left:546.293333pt;}
.xe7_c00221{left:548.000000pt;}
.x85_c00221{left:549.333333pt;}
.x59_c00221{left:550.666667pt;}
.x76_c00221{left:552.000000pt;}
.xd2_c00221{left:554.666667pt;}
.x93_c00221{left:556.373333pt;}
.x37_c00221{left:557.333333pt;}
.x5f_c00221{left:560.000000pt;}
.xa5_c00221{left:561.706667pt;}
.x104_c00221{left:565.333333pt;}
.xdb_c00221{left:566.666667pt;}
.x4a_c00221{left:568.000000pt;}
.x9a_c00221{left:568.960000pt;}
.x8d_c00221{left:571.626667pt;}
.xcc_c00221{left:577.333333pt;}
.x94_c00221{left:580.373333pt;}
.x41_c00221{left:581.333333pt;}
.x4b_c00221{left:582.666667pt;}
.xa6_c00221{left:583.626667pt;}
.x9b_c00221{left:585.706667pt;}
.x29_c00221{left:587.800000pt;}
.x77_c00221{left:589.333333pt;}
.xaf_c00221{left:592.000000pt;}
.x69_c00221{left:593.706667pt;}
.x60_c00221{left:594.666667pt;}
.x5a_c00221{left:595.626667pt;}
.x86_c00221{left:597.333333pt;}
.x38_c00221{left:600.960000pt;}
.xf7_c00221{left:605.706667pt;}
.xdc_c00221{left:609.333333pt;}
.x7d_c00221{left:610.666667pt;}
.x8e_c00221{left:612.373333pt;}
.xec_c00221{left:614.293333pt;}
.x95_c00221{left:619.040000pt;}
.x4c_c00221{left:624.960000pt;}
.x9c_c00221{left:626.293333pt;}
.xcd_c00221{left:631.040000pt;}
.x78_c00221{left:633.706667pt;}
.xa7_c00221{left:634.666667pt;}
.x42_c00221{left:636.000000pt;}
.xf8_c00221{left:638.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_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_85367fd31c8f845073881a1b.woff2')format("woff");}.ff1_c00222{font-family:ff1_c00222;line-height:1.688965;font-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_c00222{transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);}
.m64_c00222{transform:matrix(0.358129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358129,0.000000,0.000000,0.250000,0,0);}
.m7d_c00222{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m88_c00222{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m2c_c00222{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m38_c00222{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m4f_c00222{transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);}
.me3_c00222{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.ma5_c00222{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mdb_c00222{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m33_c00222{transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);}
.mc4_c00222{transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);}
.m93_c00222{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mcd_c00222{transform:matrix(0.386364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386364,0.000000,0.000000,0.250000,0,0);}
.mbf_c00222{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.m1a_c00222{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.mc2_c00222{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m6c_c00222{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m7c_c00222{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.mc8_c00222{transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);}
.m49_c00222{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mc6_c00222{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m4a_c00222{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m5_c00222{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.md6_c00222{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m6f_c00222{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.maf_c00222{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m2d_c00222{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m98_c00222{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m77_c00222{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m82_c00222{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m3c_c00222{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m47_c00222{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m6_c00222{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m8_c00222{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m3f_c00222{transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);}
.md2_c00222{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.m50_c00222{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m7b_c00222{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m37_c00222{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m4_c00222{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m89_c00222{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m95_c00222{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m46_c00222{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.ma1_c00222{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mc7_c00222{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m26_c00222{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m13_c00222{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m3_c00222{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m19_c00222{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m74_c00222{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m25_c00222{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m41_c00222{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.md7_c00222{transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);}
.mc0_c00222{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m6a_c00222{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m72_c00222{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mc1_c00222{transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);}
.m11_c00222{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mda_c00222{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.m39_c00222{transform:matrix(0.427905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427905,0.000000,0.000000,0.250000,0,0);}
.m8d_c00222{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mc_c00222{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m31_c00222{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mcb_c00222{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m1d_c00222{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.mb4_c00222{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m8a_c00222{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.mba_c00222{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m42_c00222{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m40_c00222{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m23_c00222{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.mca_c00222{transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);}
.m4b_c00222{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m17_c00222{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.mae_c00222{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mb2_c00222{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m66_c00222{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m73_c00222{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m48_c00222{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m22_c00222{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.ma2_c00222{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m44_c00222{transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);}
.md8_c00222{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.m67_c00222{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.maa_c00222{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.md9_c00222{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m2_c00222{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m1_c00222{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.ma7_c00222{transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);}
.ma0_c00222{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m62_c00222{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m86_c00222{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m2a_c00222{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m36_c00222{transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);}
.m3b_c00222{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m14_c00222{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m3a_c00222{transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);}
.ma8_c00222{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m10_c00222{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m3e_c00222{transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);}
.m54_c00222{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.mac_c00222{transform:matrix(0.467069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467069,0.000000,0.000000,0.250000,0,0);}
.m87_c00222{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.mbe_c00222{transform:matrix(0.470168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470168,0.000000,0.000000,0.250000,0,0);}
.mb7_c00222{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m1c_c00222{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m90_c00222{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m30_c00222{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.mcf_c00222{transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);}
.mc9_c00222{transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);}
.mc3_c00222{transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);}
.m32_c00222{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m1e_c00222{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m70_c00222{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m5c_c00222{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m61_c00222{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m28_c00222{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.mb9_c00222{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m85_c00222{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m68_c00222{transform:matrix(0.492115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492115,0.000000,0.000000,0.250000,0,0);}
.m9c_c00222{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.md0_c00222{transform:matrix(0.493506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493506,0.000000,0.000000,0.250000,0,0);}
.m7f_c00222{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.mb_c00222{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_c00222{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m6e_c00222{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m35_c00222{transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);}
.mb1_c00222{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m55_c00222{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m81_c00222{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.me_c00222{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.me0_c00222{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m63_c00222{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m5b_c00222{transform:matrix(0.513915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513915,0.000000,0.000000,0.250000,0,0);}
.m79_c00222{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m75_c00222{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m5e_c00222{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mdf_c00222{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m60_c00222{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mb3_c00222{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.me2_c00222{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mcc_c00222{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.mbd_c00222{transform:matrix(0.526438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526438,0.000000,0.000000,0.250000,0,0);}
.m6b_c00222{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.md_c00222{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.me1_c00222{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m91_c00222{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m2e_c00222{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m97_c00222{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m65_c00222{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mdd_c00222{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m9d_c00222{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.md1_c00222{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m1f_c00222{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m59_c00222{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m57_c00222{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m1b_c00222{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m5f_c00222{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mdc_c00222{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m58_c00222{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m78_c00222{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m5d_c00222{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m4c_c00222{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.mf_c00222{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.ma4_c00222{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m45_c00222{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m27_c00222{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m16_c00222{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.ma9_c00222{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m8b_c00222{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.md5_c00222{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m51_c00222{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.mab_c00222{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m18_c00222{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.md4_c00222{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m56_c00222{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m5a_c00222{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m52_c00222{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m76_c00222{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mbb_c00222{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.md3_c00222{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.m71_c00222{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m53_c00222{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m12_c00222{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m94_c00222{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.ma_c00222{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.ma6_c00222{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m83_c00222{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.ma3_c00222{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m84_c00222{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mc5_c00222{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m20_c00222{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m9b_c00222{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mde_c00222{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.mb0_c00222{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m9f_c00222{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.mad_c00222{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.mbc_c00222{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m8e_c00222{transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);}
.m9a_c00222{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.m9e_c00222{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m7_c00222{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m8f_c00222{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m7a_c00222{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mb6_c00222{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m8c_c00222{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m15_c00222{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);}
.m92_c00222{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_c00222{transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);}
.m21_c00222{transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);}
.m6d_c00222{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m9_c00222{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mce_c00222{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m24_c00222{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m3d_c00222{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m7e_c00222{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mb8_c00222{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m69_c00222{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m29_c00222{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m80_c00222{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m4d_c00222{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m99_c00222{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m96_c00222{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m34_c00222{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m2b_c00222{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.m43_c00222{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m4e_c00222{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-6.743747px;}
.ws1_c00222{word-spacing:0.000000px;}
.fc0_c00222{color:transparent;}
.fs7_c00222{font-size:3.420000px;}
.fs6_c00222{font-size:11.880000px;}
.fs9_c00222{font-size:13.620000px;}
.fs5_c00222{font-size:18.720000px;}
.fs0_c00222{font-size:20.400000px;}
.fs4_c00222{font-size:25.500000px;}
.fs1_c00222{font-size:28.920000px;}
.fs2_c00222{font-size:32.340000px;}
.fs3_c00222{font-size:35.700000px;}
.fs8_c00222{font-size:39.120000px;}
.y0_c00222{bottom:0.000000px;}
.yc9_c00222{bottom:252.405000px;}
.yca_c00222{bottom:253.245000px;}
.yc8_c00222{bottom:254.970000px;}
.yc7_c00222{bottom:255.405000px;}
.yc5_c00222{bottom:271.470000px;}
.yc6_c00222{bottom:272.745000px;}
.yc3_c00222{bottom:274.905000px;}
.yc4_c00222{bottom:274.920000px;}
.yc2_c00222{bottom:292.245000px;}
.ybf_c00222{bottom:294.405000px;}
.yc1_c00222{bottom:294.420000px;}
.yc0_c00222{bottom:294.630000px;}
.ybe_c00222{bottom:310.905000px;}
.ybd_c00222{bottom:313.245000px;}
.ybb_c00222{bottom:331.245000px;}
.ybc_c00222{bottom:331.905000px;}
.yba_c00222{bottom:332.325000px;}
.yb5_c00222{bottom:332.745000px;}
.yb9_c00222{bottom:333.405000px;}
.yb8_c00222{bottom:333.630000px;}
.yb7_c00222{bottom:333.825000px;}
.yb6_c00222{bottom:334.920000px;}
.yb4_c00222{bottom:352.245000px;}
.yb3_c00222{bottom:354.405000px;}
.yb1_c00222{bottom:370.245000px;}
.yad_c00222{bottom:371.745000px;}
.yaf_c00222{bottom:372.825000px;}
.yb2_c00222{bottom:373.470000px;}
.yb0_c00222{bottom:373.905000px;}
.yae_c00222{bottom:375.420000px;}
.yac_c00222{bottom:394.470000px;}
.ya8_c00222{bottom:395.325000px;}
.ya9_c00222{bottom:396.405000px;}
.yaa_c00222{bottom:397.470000px;}
.yab_c00222{bottom:397.695000px;}
.ya6_c00222{bottom:412.470000px;}
.ya4_c00222{bottom:413.325000px;}
.ya5_c00222{bottom:414.405000px;}
.ya7_c00222{bottom:416.550000px;}
.ya3_c00222{bottom:436.245000px;}
.ya0_c00222{bottom:437.325000px;}
.ya2_c00222{bottom:437.745000px;}
.ya1_c00222{bottom:438.825000px;}
.y9b_c00222{bottom:470.745000px;}
.y9e_c00222{bottom:472.245000px;}
.y9a_c00222{bottom:472.905000px;}
.y9c_c00222{bottom:473.130000px;}
.y9f_c00222{bottom:473.970000px;}
.y9d_c00222{bottom:474.405000px;}
.y97_c00222{bottom:489.405000px;}
.y96_c00222{bottom:490.245000px;}
.y98_c00222{bottom:491.325000px;}
.y95_c00222{bottom:491.550000px;}
.y94_c00222{bottom:491.745000px;}
.y99_c00222{bottom:492.405000px;}
.y92_c00222{bottom:492.630000px;}
.y93_c00222{bottom:493.905000px;}
.y8f_c00222{bottom:508.905000px;}
.y90_c00222{bottom:511.245000px;}
.y91_c00222{bottom:513.405000px;}
.y8e_c00222{bottom:529.470000px;}
.y8c_c00222{bottom:530.745000px;}
.y89_c00222{bottom:531.825000px;}
.y8b_c00222{bottom:532.470000px;}
.y8a_c00222{bottom:532.905000px;}
.y8d_c00222{bottom:533.130000px;}
.y86_c00222{bottom:550.245000px;}
.y87_c00222{bottom:551.325000px;}
.y88_c00222{bottom:551.970000px;}
.y85_c00222{bottom:552.405000px;}
.y83_c00222{bottom:569.745000px;}
.y81_c00222{bottom:570.825000px;}
.y84_c00222{bottom:571.470000px;}
.y82_c00222{bottom:571.905000px;}
.y80_c00222{bottom:572.970000px;}
.y7f_c00222{bottom:589.245000px;}
.y7b_c00222{bottom:590.745000px;}
.y7a_c00222{bottom:591.405000px;}
.y7c_c00222{bottom:591.630000px;}
.y7e_c00222{bottom:592.470000px;}
.y7d_c00222{bottom:592.905000px;}
.y73_c00222{bottom:607.905000px;}
.y79_c00222{bottom:608.745000px;}
.y74_c00222{bottom:610.245000px;}
.y78_c00222{bottom:611.130000px;}
.y77_c00222{bottom:611.325000px;}
.y76_c00222{bottom:611.970000px;}
.y75_c00222{bottom:612.405000px;}
.y72_c00222{bottom:629.325000px;}
.y70_c00222{bottom:629.745000px;}
.y6e_c00222{bottom:631.905000px;}
.y71_c00222{bottom:632.130000px;}
.y6f_c00222{bottom:632.970000px;}
.y6c_c00222{bottom:648.405000px;}
.y6d_c00222{bottom:649.245000px;}
.y6a_c00222{bottom:650.970000px;}
.y69_c00222{bottom:651.405000px;}
.y6b_c00222{bottom:652.470000px;}
.y63_c00222{bottom:668.325000px;}
.y65_c00222{bottom:668.745000px;}
.y68_c00222{bottom:668.970000px;}
.y67_c00222{bottom:669.825000px;}
.y64_c00222{bottom:670.905000px;}
.y66_c00222{bottom:671.970000px;}
.y60_c00222{bottom:687.405000px;}
.y5f_c00222{bottom:689.325000px;}
.y5e_c00222{bottom:689.745000px;}
.y62_c00222{bottom:690.405000px;}
.y61_c00222{bottom:690.630000px;}
.y5d_c00222{bottom:691.470000px;}
.y5c_c00222{bottom:691.905000px;}
.y5a_c00222{bottom:709.245000px;}
.y5b_c00222{bottom:710.130000px;}
.y59_c00222{bottom:711.405000px;}
.y55_c00222{bottom:728.745000px;}
.y58_c00222{bottom:730.470000px;}
.y57_c00222{bottom:730.905000px;}
.y56_c00222{bottom:730.920000px;}
.y54_c00222{bottom:750.405000px;}
.y52_c00222{bottom:766.905000px;}
.y4e_c00222{bottom:767.745000px;}
.y53_c00222{bottom:768.630000px;}
.y50_c00222{bottom:768.825000px;}
.y4f_c00222{bottom:769.905000px;}
.y51_c00222{bottom:770.130000px;}
.y4c_c00222{bottom:787.245000px;}
.y4d_c00222{bottom:787.680000px;}
.y4a_c00222{bottom:789.405000px;}
.y4b_c00222{bottom:789.420000px;}
.y47_c00222{bottom:808.905000px;}
.y48_c00222{bottom:809.325000px;}
.y49_c00222{bottom:810.405000px;}
.y42_c00222{bottom:828.405000px;}
.y44_c00222{bottom:828.825000px;}
.y46_c00222{bottom:829.470000px;}
.y45_c00222{bottom:829.905000px;}
.y43_c00222{bottom:829.920000px;}
.y40_c00222{bottom:846.180000px;}
.y41_c00222{bottom:847.245000px;}
.y3e_c00222{bottom:848.130000px;}
.y3d_c00222{bottom:849.405000px;}
.y3f_c00222{bottom:849.420000px;}
.y3c_c00222{bottom:865.905000px;}
.y39_c00222{bottom:866.745000px;}
.y3b_c00222{bottom:867.825000px;}
.y3a_c00222{bottom:868.920000px;}
.y35_c00222{bottom:886.245000px;}
.y38_c00222{bottom:887.325000px;}
.y37_c00222{bottom:888.405000px;}
.y36_c00222{bottom:888.420000px;}
.y34_c00222{bottom:909.825000px;}
.y33_c00222{bottom:910.050000px;}
.y31_c00222{bottom:910.905000px;}
.y32_c00222{bottom:913.050000px;}
.y30_c00222{bottom:931.245000px;}
.y2f_c00222{bottom:932.325000px;}
.y2a_c00222{bottom:960.630000px;}
.y2b_c00222{bottom:961.275000px;}
.y2c_c00222{bottom:961.905000px;}
.y2e_c00222{bottom:963.405000px;}
.y2d_c00222{bottom:964.245000px;}
.y29_c00222{bottom:965.130000px;}
.y28_c00222{bottom:965.325000px;}
.y27_c00222{bottom:966.405000px;}
.y26_c00222{bottom:980.775000px;}
.y24_c00222{bottom:981.405000px;}
.y22_c00222{bottom:982.245000px;}
.y1f_c00222{bottom:983.325000px;}
.y23_c00222{bottom:983.745000px;}
.y20_c00222{bottom:984.405000px;}
.y21_c00222{bottom:984.630000px;}
.y25_c00222{bottom:987.630000px;}
.y1d_c00222{bottom:1000.905000px;}
.y18_c00222{bottom:1001.745000px;}
.y1b_c00222{bottom:1001.970000px;}
.y17_c00222{bottom:1002.825000px;}
.y1e_c00222{bottom:1003.050000px;}
.y1c_c00222{bottom:1003.245000px;}
.y1a_c00222{bottom:1004.325000px;}
.y19_c00222{bottom:1005.405000px;}
.y10_c00222{bottom:1020.405000px;}
.y15_c00222{bottom:1021.470000px;}
.y13_c00222{bottom:1022.550000px;}
.y11_c00222{bottom:1022.745000px;}
.y12_c00222{bottom:1023.825000px;}
.y16_c00222{bottom:1024.470000px;}
.y14_c00222{bottom:1024.905000px;}
.yb_c00222{bottom:1040.745000px;}
.y9_c00222{bottom:1041.405000px;}
.yf_c00222{bottom:1041.825000px;}
.ye_c00222{bottom:1042.245000px;}
.ya_c00222{bottom:1042.905000px;}
.yd_c00222{bottom:1043.325000px;}
.yc_c00222{bottom:1044.405000px;}
.y3_c00222{bottom:1061.325000px;}
.y4_c00222{bottom:1061.745000px;}
.y6_c00222{bottom:1061.970000px;}
.y5_c00222{bottom:1062.825000px;}
.y7_c00222{bottom:1063.470000px;}
.y8_c00222{bottom:1063.905000px;}
.y2_c00222{bottom:1099.905000px;}
.y1_c00222{bottom:1102.050000px;}
.h8_c00222{height:4.206533px;}
.h7_c00222{height:14.612168px;}
.ha_c00222{height:16.752334px;}
.h6_c00222{height:23.025234px;}
.h1_c00222{height:25.091602px;}
.h5_c00222{height:31.364502px;}
.h2_c00222{height:35.571035px;}
.h3_c00222{height:39.777568px;}
.h4_c00222{height:43.910303px;}
.h9_c00222{height:48.116836px;}
.h0_c00222{height:1335.000000px;}
.w0_c00222{width:880.500000px;}
.x0_c00222{left:0.000000px;}
.x25_c00222{left:153.000000px;}
.x3_c00222{left:154.920000px;}
.x49_c00222{left:166.080000px;}
.xe1_c00222{left:168.420000px;}
.x50_c00222{left:169.920000px;}
.xac_c00222{left:172.500000px;}
.xa4_c00222{left:178.920000px;}
.xea_c00222{left:180.000000px;}
.x6c_c00222{left:184.500000px;}
.x1b_c00222{left:187.500000px;}
.xc2_c00222{left:189.000000px;}
.xf_c00222{left:193.080000px;}
.x3a_c00222{left:196.500000px;}
.xcb_c00222{left:198.420000px;}
.xb5_c00222{left:199.500000px;}
.x7a_c00222{left:205.920000px;}
.x51_c00222{left:207.420000px;}
.x2e_c00222{left:211.500000px;}
.xd2_c00222{left:212.580000px;}
.x4_c00222{left:214.920000px;}
.xe4_c00222{left:217.080000px;}
.x4a_c00222{left:220.920000px;}
.xa5_c00222{left:224.580000px;}
.x26_c00222{left:229.500000px;}
.x9d_c00222{left:231.000000px;}
.x10_c00222{left:234.420000px;}
.xd3_c00222{left:235.500000px;}
.x6d_c00222{left:236.580000px;}
.x92_c00222{left:241.500000px;}
.x7b_c00222{left:243.000000px;}
.x2f_c00222{left:244.500000px;}
.x5c_c00222{left:250.500000px;}
.x6f_c00222{left:252.000000px;}
.xd9_c00222{left:255.420000px;}
.x85_c00222{left:256.500000px;}
.x8a_c00222{left:258.000000px;}
.x56_c00222{left:259.500000px;}
.x61_c00222{left:261.000000px;}
.x93_c00222{left:262.080000px;}
.x27_c00222{left:264.000000px;}
.x1c_c00222{left:265.500000px;}
.x52_c00222{left:267.000000px;}
.x5_c00222{left:268.500000px;}
.x70_c00222{left:271.080000px;}
.x3b_c00222{left:273.420000px;}
.x86_c00222{left:277.500000px;}
.x4b_c00222{left:280.500000px;}
.x62_c00222{left:282.000000px;}
.x94_c00222{left:283.500000px;}
.xad_c00222{left:286.080000px;}
.x11_c00222{left:288.420000px;}
.xc5_c00222{left:291.420000px;}
.x30_c00222{left:292.500000px;}
.x3c_c00222{left:298.500000px;}
.xbc_c00222{left:300.000000px;}
.x5d_c00222{left:301.500000px;}
.x3d_c00222{left:304.080000px;}
.x6_c00222{left:307.080000px;}
.xa6_c00222{left:308.580000px;}
.x8b_c00222{left:310.500000px;}
.x3e_c00222{left:313.080000px;}
.x63_c00222{left:315.000000px;}
.x7c_c00222{left:318.420000px;}
.xbd_c00222{left:319.920000px;}
.x5e_c00222{left:322.080000px;}
.x45_c00222{left:323.580000px;}
.x12_c00222{left:325.920000px;}
.xd0_c00222{left:328.080000px;}
.x1d_c00222{left:332.355000px;}
.x6e_c00222{left:334.080000px;}
.x4c_c00222{left:337.920000px;}
.x31_c00222{left:340.500000px;}
.x71_c00222{left:343.500000px;}
.x3f_c00222{left:344.580000px;}
.x57_c00222{left:346.275000px;}
.x5f_c00222{left:348.000000px;}
.x8c_c00222{left:349.080000px;}
.x7d_c00222{left:352.920000px;}
.x64_c00222{left:355.080000px;}
.x7_c00222{left:357.000000px;}
.xae_c00222{left:358.500000px;}
.xeb_c00222{left:360.000000px;}
.x9e_c00222{left:361.080000px;}
.xc6_c00222{left:362.580000px;}
.x53_c00222{left:364.500000px;}
.x13_c00222{left:365.580000px;}
.x1e_c00222{left:367.080000px;}
.xa7_c00222{left:369.420000px;}
.xe2_c00222{left:372.000000px;}
.x4d_c00222{left:373.500000px;}
.xb6_c00222{left:376.080000px;}
.x7e_c00222{left:379.500000px;}
.xaf_c00222{left:381.000000px;}
.x95_c00222{left:382.080000px;}
.x14_c00222{left:384.000000px;}
.x40_c00222{left:385.920000px;}
.x58_c00222{left:388.275000px;}
.xda_c00222{left:390.000000px;}
.x28_c00222{left:391.920000px;}
.x46_c00222{left:393.420000px;}
.xa8_c00222{left:394.500000px;}
.xb7_c00222{left:396.420000px;}
.x32_c00222{left:397.500000px;}
.x1_c00222{left:400.500000px;}
.x54_c00222{left:403.920000px;}
.x65_c00222{left:406.500000px;}
.x7f_c00222{left:409.500000px;}
.x96_c00222{left:411.000000px;}
.xbe_c00222{left:413.580000px;}
.xdb_c00222{left:415.080000px;}
.x1f_c00222{left:418.080000px;}
.x4e_c00222{left:420.000000px;}
.x59_c00222{left:421.500000px;}
.x9f_c00222{left:424.920000px;}
.xc3_c00222{left:426.420000px;}
.x97_c00222{left:427.500000px;}
.x80_c00222{left:431.580000px;}
.x29_c00222{left:433.500000px;}
.xb0_c00222{left:435.000000px;}
.x72_c00222{left:436.500000px;}
.xe8_c00222{left:438.000000px;}
.x15_c00222{left:439.920000px;}
.xa9_c00222{left:442.080000px;}
.xe3_c00222{left:445.500000px;}
.xe5_c00222{left:446.580000px;}
.xde_c00222{left:448.500000px;}
.x8_c00222{left:450.420000px;}
.xc7_c00222{left:451.500000px;}
.x41_c00222{left:453.420000px;}
.x55_c00222{left:457.080000px;}
.x33_c00222{left:459.000000px;}
.x66_c00222{left:460.080000px;}
.x73_c00222{left:462.000000px;}
.x8d_c00222{left:466.500000px;}
.xc8_c00222{left:468.000000px;}
.x47_c00222{left:470.580000px;}
.x60_c00222{left:472.080000px;}
.x16_c00222{left:478.500000px;}
.xb1_c00222{left:483.000000px;}
.x5a_c00222{left:484.275000px;}
.x8e_c00222{left:486.420000px;}
.xd4_c00222{left:487.500000px;}
.x81_c00222{left:490.080000px;}
.x67_c00222{left:491.580000px;}
.x34_c00222{left:493.500000px;}
.xa0_c00222{left:495.420000px;}
.xaa_c00222{left:498.000000px;}
.x20_c00222{left:499.500000px;}
.x87_c00222{left:501.420000px;}
.xec_c00222{left:502.500000px;}
.x9_c00222{left:503.580000px;}
.xdf_c00222{left:505.500000px;}
.x8f_c00222{left:514.080000px;}
.x2a_c00222{left:516.000000px;}
.xc4_c00222{left:517.080000px;}
.x74_c00222{left:518.580000px;}
.x5b_c00222{left:524.580000px;}
.x42_c00222{left:526.920000px;}
.xd5_c00222{left:528.000000px;}
.xa1_c00222{left:529.500000px;}
.x17_c00222{left:531.420000px;}
.x98_c00222{left:533.580000px;}
.xed_c00222{left:535.080000px;}
.x82_c00222{left:536.580000px;}
.x4f_c00222{left:538.080000px;}
.x35_c00222{left:540.000000px;}
.x48_c00222{left:541.275000px;}
.xe0_c00222{left:543.420000px;}
.xa_c00222{left:544.500000px;}
.xd1_c00222{left:546.000000px;}
.x68_c00222{left:547.500000px;}
.x90_c00222{left:550.080000px;}
.xdc_c00222{left:553.500000px;}
.xd6_c00222{left:554.580000px;}
.xb8_c00222{left:558.420000px;}
.xbf_c00222{left:562.500000px;}
.x43_c00222{left:563.580000px;}
.xcc_c00222{left:567.420000px;}
.x75_c00222{left:571.920000px;}
.xdd_c00222{left:573.000000px;}
.x21_c00222{left:576.420000px;}
.x99_c00222{left:578.580000px;}
.xee_c00222{left:583.500000px;}
.x18_c00222{left:585.420000px;}
.xb9_c00222{left:586.500000px;}
.x83_c00222{left:589.500000px;}
.xd8_c00222{left:592.275000px;}
.xe9_c00222{left:598.500000px;}
.x76_c00222{left:600.000000px;}
.xb_c00222{left:603.000000px;}
.xcd_c00222{left:604.920000px;}
.x44_c00222{left:606.000000px;}
.x2b_c00222{left:607.500000px;}
.x69_c00222{left:609.000000px;}
.x9a_c00222{left:610.500000px;}
.xc9_c00222{left:611.580000px;}
.x91_c00222{left:613.500000px;}
.x22_c00222{left:616.080000px;}
.xab_c00222{left:618.000000px;}
.x36_c00222{left:619.920000px;}
.xc_c00222{left:624.420000px;}
.xef_c00222{left:626.580000px;}
.xca_c00222{left:631.920000px;}
.xb2_c00222{left:633.000000px;}
.xce_c00222{left:634.500000px;}
.x77_c00222{left:636.000000px;}
.xba_c00222{left:637.080000px;}
.x88_c00222{left:640.500000px;}
.x2c_c00222{left:642.000000px;}
.xa2_c00222{left:643.500000px;}
.x37_c00222{left:645.000000px;}
.x38_c00222{left:650.580000px;}
.x6a_c00222{left:652.500000px;}
.xe6_c00222{left:653.580000px;}
.x84_c00222{left:657.420000px;}
.xc0_c00222{left:659.580000px;}
.x9b_c00222{left:661.500000px;}
.x19_c00222{left:662.580000px;}
.xd_c00222{left:664.080000px;}
.xd7_c00222{left:666.000000px;}
.x23_c00222{left:667.920000px;}
.xbb_c00222{left:669.420000px;}
.x6b_c00222{left:671.580000px;}
.xb3_c00222{left:675.420000px;}
.xe7_c00222{left:676.500000px;}
.x1a_c00222{left:681.000000px;}
.xcf_c00222{left:682.500000px;}
.xe_c00222{left:684.000000px;}
.x78_c00222{left:685.080000px;}
.x2d_c00222{left:690.420000px;}
.xc1_c00222{left:691.500000px;}
.x39_c00222{left:694.080000px;}
.x89_c00222{left:697.920000px;}
.xb4_c00222{left:702.420000px;}
.x79_c00222{left:705.420000px;}
.x2_c00222{left:708.420000px;}
.x9c_c00222{left:709.920000px;}
.xa3_c00222{left:717.000000px;}
.x24_c00222{left:718.080000px;}
.xf0_c00222{left:720.000000px;}
@media print{
.v0_c00222{vertical-align:0.000000pt;}
.ls0_c00222{letter-spacing:0.000000pt;}
.ws0_c00222{word-spacing:-5.994441pt;}
.ws1_c00222{word-spacing:0.000000pt;}
.fs7_c00222{font-size:3.040000pt;}
.fs6_c00222{font-size:10.560000pt;}
.fs9_c00222{font-size:12.106667pt;}
.fs5_c00222{font-size:16.640000pt;}
.fs0_c00222{font-size:18.133333pt;}
.fs4_c00222{font-size:22.666667pt;}
.fs1_c00222{font-size:25.706667pt;}
.fs2_c00222{font-size:28.746667pt;}
.fs3_c00222{font-size:31.733333pt;}
.fs8_c00222{font-size:34.773333pt;}
.y0_c00222{bottom:0.000000pt;}
.yc9_c00222{bottom:224.360000pt;}
.yca_c00222{bottom:225.106667pt;}
.yc8_c00222{bottom:226.640000pt;}
.yc7_c00222{bottom:227.026667pt;}
.yc5_c00222{bottom:241.306667pt;}
.yc6_c00222{bottom:242.440000pt;}
.yc3_c00222{bottom:244.360000pt;}
.yc4_c00222{bottom:244.373333pt;}
.yc2_c00222{bottom:259.773333pt;}
.ybf_c00222{bottom:261.693333pt;}
.yc1_c00222{bottom:261.706667pt;}
.yc0_c00222{bottom:261.893333pt;}
.ybe_c00222{bottom:276.360000pt;}
.ybd_c00222{bottom:278.440000pt;}
.ybb_c00222{bottom:294.440000pt;}
.ybc_c00222{bottom:295.026667pt;}
.yba_c00222{bottom:295.400000pt;}
.yb5_c00222{bottom:295.773333pt;}
.yb9_c00222{bottom:296.360000pt;}
.yb8_c00222{bottom:296.560000pt;}
.yb7_c00222{bottom:296.733333pt;}
.yb6_c00222{bottom:297.706667pt;}
.yb4_c00222{bottom:313.106667pt;}
.yb3_c00222{bottom:315.026667pt;}
.yb1_c00222{bottom:329.106667pt;}
.yad_c00222{bottom:330.440000pt;}
.yaf_c00222{bottom:331.400000pt;}
.yb2_c00222{bottom:331.973333pt;}
.yb0_c00222{bottom:332.360000pt;}
.yae_c00222{bottom:333.706667pt;}
.yac_c00222{bottom:350.640000pt;}
.ya8_c00222{bottom:351.400000pt;}
.ya9_c00222{bottom:352.360000pt;}
.yaa_c00222{bottom:353.306667pt;}
.yab_c00222{bottom:353.506667pt;}
.ya6_c00222{bottom:366.640000pt;}
.ya4_c00222{bottom:367.400000pt;}
.ya5_c00222{bottom:368.360000pt;}
.ya7_c00222{bottom:370.266667pt;}
.ya3_c00222{bottom:387.773333pt;}
.ya0_c00222{bottom:388.733333pt;}
.ya2_c00222{bottom:389.106667pt;}
.ya1_c00222{bottom:390.066667pt;}
.y9b_c00222{bottom:418.440000pt;}
.y9e_c00222{bottom:419.773333pt;}
.y9a_c00222{bottom:420.360000pt;}
.y9c_c00222{bottom:420.560000pt;}
.y9f_c00222{bottom:421.306667pt;}
.y9d_c00222{bottom:421.693333pt;}
.y97_c00222{bottom:435.026667pt;}
.y96_c00222{bottom:435.773333pt;}
.y98_c00222{bottom:436.733333pt;}
.y95_c00222{bottom:436.933333pt;}
.y94_c00222{bottom:437.106667pt;}
.y99_c00222{bottom:437.693333pt;}
.y92_c00222{bottom:437.893333pt;}
.y93_c00222{bottom:439.026667pt;}
.y8f_c00222{bottom:452.360000pt;}
.y90_c00222{bottom:454.440000pt;}
.y91_c00222{bottom:456.360000pt;}
.y8e_c00222{bottom:470.640000pt;}
.y8c_c00222{bottom:471.773333pt;}
.y89_c00222{bottom:472.733333pt;}
.y8b_c00222{bottom:473.306667pt;}
.y8a_c00222{bottom:473.693333pt;}
.y8d_c00222{bottom:473.893333pt;}
.y86_c00222{bottom:489.106667pt;}
.y87_c00222{bottom:490.066667pt;}
.y88_c00222{bottom:490.640000pt;}
.y85_c00222{bottom:491.026667pt;}
.y83_c00222{bottom:506.440000pt;}
.y81_c00222{bottom:507.400000pt;}
.y84_c00222{bottom:507.973333pt;}
.y82_c00222{bottom:508.360000pt;}
.y80_c00222{bottom:509.306667pt;}
.y7f_c00222{bottom:523.773333pt;}
.y7b_c00222{bottom:525.106667pt;}
.y7a_c00222{bottom:525.693333pt;}
.y7c_c00222{bottom:525.893333pt;}
.y7e_c00222{bottom:526.640000pt;}
.y7d_c00222{bottom:527.026667pt;}
.y73_c00222{bottom:540.360000pt;}
.y79_c00222{bottom:541.106667pt;}
.y74_c00222{bottom:542.440000pt;}
.y78_c00222{bottom:543.226667pt;}
.y77_c00222{bottom:543.400000pt;}
.y76_c00222{bottom:543.973333pt;}
.y75_c00222{bottom:544.360000pt;}
.y72_c00222{bottom:559.400000pt;}
.y70_c00222{bottom:559.773333pt;}
.y6e_c00222{bottom:561.693333pt;}
.y71_c00222{bottom:561.893333pt;}
.y6f_c00222{bottom:562.640000pt;}
.y6c_c00222{bottom:576.360000pt;}
.y6d_c00222{bottom:577.106667pt;}
.y6a_c00222{bottom:578.640000pt;}
.y69_c00222{bottom:579.026667pt;}
.y6b_c00222{bottom:579.973333pt;}
.y63_c00222{bottom:594.066667pt;}
.y65_c00222{bottom:594.440000pt;}
.y68_c00222{bottom:594.640000pt;}
.y67_c00222{bottom:595.400000pt;}
.y64_c00222{bottom:596.360000pt;}
.y66_c00222{bottom:597.306667pt;}
.y60_c00222{bottom:611.026667pt;}
.y5f_c00222{bottom:612.733333pt;}
.y5e_c00222{bottom:613.106667pt;}
.y62_c00222{bottom:613.693333pt;}
.y61_c00222{bottom:613.893333pt;}
.y5d_c00222{bottom:614.640000pt;}
.y5c_c00222{bottom:615.026667pt;}
.y5a_c00222{bottom:630.440000pt;}
.y5b_c00222{bottom:631.226667pt;}
.y59_c00222{bottom:632.360000pt;}
.y55_c00222{bottom:647.773333pt;}
.y58_c00222{bottom:649.306667pt;}
.y57_c00222{bottom:649.693333pt;}
.y56_c00222{bottom:649.706667pt;}
.y54_c00222{bottom:667.026667pt;}
.y52_c00222{bottom:681.693333pt;}
.y4e_c00222{bottom:682.440000pt;}
.y53_c00222{bottom:683.226667pt;}
.y50_c00222{bottom:683.400000pt;}
.y4f_c00222{bottom:684.360000pt;}
.y51_c00222{bottom:684.560000pt;}
.y4c_c00222{bottom:699.773333pt;}
.y4d_c00222{bottom:700.160000pt;}
.y4a_c00222{bottom:701.693333pt;}
.y4b_c00222{bottom:701.706667pt;}
.y47_c00222{bottom:719.026667pt;}
.y48_c00222{bottom:719.400000pt;}
.y49_c00222{bottom:720.360000pt;}
.y42_c00222{bottom:736.360000pt;}
.y44_c00222{bottom:736.733333pt;}
.y46_c00222{bottom:737.306667pt;}
.y45_c00222{bottom:737.693333pt;}
.y43_c00222{bottom:737.706667pt;}
.y40_c00222{bottom:752.160000pt;}
.y41_c00222{bottom:753.106667pt;}
.y3e_c00222{bottom:753.893333pt;}
.y3d_c00222{bottom:755.026667pt;}
.y3f_c00222{bottom:755.040000pt;}
.y3c_c00222{bottom:769.693333pt;}
.y39_c00222{bottom:770.440000pt;}
.y3b_c00222{bottom:771.400000pt;}
.y3a_c00222{bottom:772.373333pt;}
.y35_c00222{bottom:787.773333pt;}
.y38_c00222{bottom:788.733333pt;}
.y37_c00222{bottom:789.693333pt;}
.y36_c00222{bottom:789.706667pt;}
.y34_c00222{bottom:808.733333pt;}
.y33_c00222{bottom:808.933333pt;}
.y31_c00222{bottom:809.693333pt;}
.y32_c00222{bottom:811.600000pt;}
.y30_c00222{bottom:827.773333pt;}
.y2f_c00222{bottom:828.733333pt;}
.y2a_c00222{bottom:853.893333pt;}
.y2b_c00222{bottom:854.466667pt;}
.y2c_c00222{bottom:855.026667pt;}
.y2e_c00222{bottom:856.360000pt;}
.y2d_c00222{bottom:857.106667pt;}
.y29_c00222{bottom:857.893333pt;}
.y28_c00222{bottom:858.066667pt;}
.y27_c00222{bottom:859.026667pt;}
.y26_c00222{bottom:871.800000pt;}
.y24_c00222{bottom:872.360000pt;}
.y22_c00222{bottom:873.106667pt;}
.y1f_c00222{bottom:874.066667pt;}
.y23_c00222{bottom:874.440000pt;}
.y20_c00222{bottom:875.026667pt;}
.y21_c00222{bottom:875.226667pt;}
.y25_c00222{bottom:877.893333pt;}
.y1d_c00222{bottom:889.693333pt;}
.y18_c00222{bottom:890.440000pt;}
.y1b_c00222{bottom:890.640000pt;}
.y17_c00222{bottom:891.400000pt;}
.y1e_c00222{bottom:891.600000pt;}
.y1c_c00222{bottom:891.773333pt;}
.y1a_c00222{bottom:892.733333pt;}
.y19_c00222{bottom:893.693333pt;}
.y10_c00222{bottom:907.026667pt;}
.y15_c00222{bottom:907.973333pt;}
.y13_c00222{bottom:908.933333pt;}
.y11_c00222{bottom:909.106667pt;}
.y12_c00222{bottom:910.066667pt;}
.y16_c00222{bottom:910.640000pt;}
.y14_c00222{bottom:911.026667pt;}
.yb_c00222{bottom:925.106667pt;}
.y9_c00222{bottom:925.693333pt;}
.yf_c00222{bottom:926.066667pt;}
.ye_c00222{bottom:926.440000pt;}
.ya_c00222{bottom:927.026667pt;}
.yd_c00222{bottom:927.400000pt;}
.yc_c00222{bottom:928.360000pt;}
.y3_c00222{bottom:943.400000pt;}
.y4_c00222{bottom:943.773333pt;}
.y6_c00222{bottom:943.973333pt;}
.y5_c00222{bottom:944.733333pt;}
.y7_c00222{bottom:945.306667pt;}
.y8_c00222{bottom:945.693333pt;}
.y2_c00222{bottom:977.693333pt;}
.y1_c00222{bottom:979.600000pt;}
.h8_c00222{height:3.739141pt;}
.h7_c00222{height:12.988594pt;}
.ha_c00222{height:14.890964pt;}
.h6_c00222{height:20.466875pt;}
.h1_c00222{height:22.303646pt;}
.h5_c00222{height:27.879557pt;}
.h2_c00222{height:31.618698pt;}
.h3_c00222{height:35.357839pt;}
.h4_c00222{height:39.031380pt;}
.h9_c00222{height:42.770521pt;}
.h0_c00222{height:1186.666667pt;}
.w0_c00222{width:782.666667pt;}
.x0_c00222{left:0.000000pt;}
.x25_c00222{left:136.000000pt;}
.x3_c00222{left:137.706667pt;}
.x49_c00222{left:147.626667pt;}
.xe1_c00222{left:149.706667pt;}
.x50_c00222{left:151.040000pt;}
.xac_c00222{left:153.333333pt;}
.xa4_c00222{left:159.040000pt;}
.xea_c00222{left:160.000000pt;}
.x6c_c00222{left:164.000000pt;}
.x1b_c00222{left:166.666667pt;}
.xc2_c00222{left:168.000000pt;}
.xf_c00222{left:171.626667pt;}
.x3a_c00222{left:174.666667pt;}
.xcb_c00222{left:176.373333pt;}
.xb5_c00222{left:177.333333pt;}
.x7a_c00222{left:183.040000pt;}
.x51_c00222{left:184.373333pt;}
.x2e_c00222{left:188.000000pt;}
.xd2_c00222{left:188.960000pt;}
.x4_c00222{left:191.040000pt;}
.xe4_c00222{left:192.960000pt;}
.x4a_c00222{left:196.373333pt;}
.xa5_c00222{left:199.626667pt;}
.x26_c00222{left:204.000000pt;}
.x9d_c00222{left:205.333333pt;}
.x10_c00222{left:208.373333pt;}
.xd3_c00222{left:209.333333pt;}
.x6d_c00222{left:210.293333pt;}
.x92_c00222{left:214.666667pt;}
.x7b_c00222{left:216.000000pt;}
.x2f_c00222{left:217.333333pt;}
.x5c_c00222{left:222.666667pt;}
.x6f_c00222{left:224.000000pt;}
.xd9_c00222{left:227.040000pt;}
.x85_c00222{left:228.000000pt;}
.x8a_c00222{left:229.333333pt;}
.x56_c00222{left:230.666667pt;}
.x61_c00222{left:232.000000pt;}
.x93_c00222{left:232.960000pt;}
.x27_c00222{left:234.666667pt;}
.x1c_c00222{left:236.000000pt;}
.x52_c00222{left:237.333333pt;}
.x5_c00222{left:238.666667pt;}
.x70_c00222{left:240.960000pt;}
.x3b_c00222{left:243.040000pt;}
.x86_c00222{left:246.666667pt;}
.x4b_c00222{left:249.333333pt;}
.x62_c00222{left:250.666667pt;}
.x94_c00222{left:252.000000pt;}
.xad_c00222{left:254.293333pt;}
.x11_c00222{left:256.373333pt;}
.xc5_c00222{left:259.040000pt;}
.x30_c00222{left:260.000000pt;}
.x3c_c00222{left:265.333333pt;}
.xbc_c00222{left:266.666667pt;}
.x5d_c00222{left:268.000000pt;}
.x3d_c00222{left:270.293333pt;}
.x6_c00222{left:272.960000pt;}
.xa6_c00222{left:274.293333pt;}
.x8b_c00222{left:276.000000pt;}
.x3e_c00222{left:278.293333pt;}
.x63_c00222{left:280.000000pt;}
.x7c_c00222{left:283.040000pt;}
.xbd_c00222{left:284.373333pt;}
.x5e_c00222{left:286.293333pt;}
.x45_c00222{left:287.626667pt;}
.x12_c00222{left:289.706667pt;}
.xd0_c00222{left:291.626667pt;}
.x1d_c00222{left:295.426667pt;}
.x6e_c00222{left:296.960000pt;}
.x4c_c00222{left:300.373333pt;}
.x31_c00222{left:302.666667pt;}
.x71_c00222{left:305.333333pt;}
.x3f_c00222{left:306.293333pt;}
.x57_c00222{left:307.800000pt;}
.x5f_c00222{left:309.333333pt;}
.x8c_c00222{left:310.293333pt;}
.x7d_c00222{left:313.706667pt;}
.x64_c00222{left:315.626667pt;}
.x7_c00222{left:317.333333pt;}
.xae_c00222{left:318.666667pt;}
.xeb_c00222{left:320.000000pt;}
.x9e_c00222{left:320.960000pt;}
.xc6_c00222{left:322.293333pt;}
.x53_c00222{left:324.000000pt;}
.x13_c00222{left:324.960000pt;}
.x1e_c00222{left:326.293333pt;}
.xa7_c00222{left:328.373333pt;}
.xe2_c00222{left:330.666667pt;}
.x4d_c00222{left:332.000000pt;}
.xb6_c00222{left:334.293333pt;}
.x7e_c00222{left:337.333333pt;}
.xaf_c00222{left:338.666667pt;}
.x95_c00222{left:339.626667pt;}
.x14_c00222{left:341.333333pt;}
.x40_c00222{left:343.040000pt;}
.x58_c00222{left:345.133333pt;}
.xda_c00222{left:346.666667pt;}
.x28_c00222{left:348.373333pt;}
.x46_c00222{left:349.706667pt;}
.xa8_c00222{left:350.666667pt;}
.xb7_c00222{left:352.373333pt;}
.x32_c00222{left:353.333333pt;}
.x1_c00222{left:356.000000pt;}
.x54_c00222{left:359.040000pt;}
.x65_c00222{left:361.333333pt;}
.x7f_c00222{left:364.000000pt;}
.x96_c00222{left:365.333333pt;}
.xbe_c00222{left:367.626667pt;}
.xdb_c00222{left:368.960000pt;}
.x1f_c00222{left:371.626667pt;}
.x4e_c00222{left:373.333333pt;}
.x59_c00222{left:374.666667pt;}
.x9f_c00222{left:377.706667pt;}
.xc3_c00222{left:379.040000pt;}
.x97_c00222{left:380.000000pt;}
.x80_c00222{left:383.626667pt;}
.x29_c00222{left:385.333333pt;}
.xb0_c00222{left:386.666667pt;}
.x72_c00222{left:388.000000pt;}
.xe8_c00222{left:389.333333pt;}
.x15_c00222{left:391.040000pt;}
.xa9_c00222{left:392.960000pt;}
.xe3_c00222{left:396.000000pt;}
.xe5_c00222{left:396.960000pt;}
.xde_c00222{left:398.666667pt;}
.x8_c00222{left:400.373333pt;}
.xc7_c00222{left:401.333333pt;}
.x41_c00222{left:403.040000pt;}
.x55_c00222{left:406.293333pt;}
.x33_c00222{left:408.000000pt;}
.x66_c00222{left:408.960000pt;}
.x73_c00222{left:410.666667pt;}
.x8d_c00222{left:414.666667pt;}
.xc8_c00222{left:416.000000pt;}
.x47_c00222{left:418.293333pt;}
.x60_c00222{left:419.626667pt;}
.x16_c00222{left:425.333333pt;}
.xb1_c00222{left:429.333333pt;}
.x5a_c00222{left:430.466667pt;}
.x8e_c00222{left:432.373333pt;}
.xd4_c00222{left:433.333333pt;}
.x81_c00222{left:435.626667pt;}
.x67_c00222{left:436.960000pt;}
.x34_c00222{left:438.666667pt;}
.xa0_c00222{left:440.373333pt;}
.xaa_c00222{left:442.666667pt;}
.x20_c00222{left:444.000000pt;}
.x87_c00222{left:445.706667pt;}
.xec_c00222{left:446.666667pt;}
.x9_c00222{left:447.626667pt;}
.xdf_c00222{left:449.333333pt;}
.x8f_c00222{left:456.960000pt;}
.x2a_c00222{left:458.666667pt;}
.xc4_c00222{left:459.626667pt;}
.x74_c00222{left:460.960000pt;}
.x5b_c00222{left:466.293333pt;}
.x42_c00222{left:468.373333pt;}
.xd5_c00222{left:469.333333pt;}
.xa1_c00222{left:470.666667pt;}
.x17_c00222{left:472.373333pt;}
.x98_c00222{left:474.293333pt;}
.xed_c00222{left:475.626667pt;}
.x82_c00222{left:476.960000pt;}
.x4f_c00222{left:478.293333pt;}
.x35_c00222{left:480.000000pt;}
.x48_c00222{left:481.133333pt;}
.xe0_c00222{left:483.040000pt;}
.xa_c00222{left:484.000000pt;}
.xd1_c00222{left:485.333333pt;}
.x68_c00222{left:486.666667pt;}
.x90_c00222{left:488.960000pt;}
.xdc_c00222{left:492.000000pt;}
.xd6_c00222{left:492.960000pt;}
.xb8_c00222{left:496.373333pt;}
.xbf_c00222{left:500.000000pt;}
.x43_c00222{left:500.960000pt;}
.xcc_c00222{left:504.373333pt;}
.x75_c00222{left:508.373333pt;}
.xdd_c00222{left:509.333333pt;}
.x21_c00222{left:512.373333pt;}
.x99_c00222{left:514.293333pt;}
.xee_c00222{left:518.666667pt;}
.x18_c00222{left:520.373333pt;}
.xb9_c00222{left:521.333333pt;}
.x83_c00222{left:524.000000pt;}
.xd8_c00222{left:526.466667pt;}
.xe9_c00222{left:532.000000pt;}
.x76_c00222{left:533.333333pt;}
.xb_c00222{left:536.000000pt;}
.xcd_c00222{left:537.706667pt;}
.x44_c00222{left:538.666667pt;}
.x2b_c00222{left:540.000000pt;}
.x69_c00222{left:541.333333pt;}
.x9a_c00222{left:542.666667pt;}
.xc9_c00222{left:543.626667pt;}
.x91_c00222{left:545.333333pt;}
.x22_c00222{left:547.626667pt;}
.xab_c00222{left:549.333333pt;}
.x36_c00222{left:551.040000pt;}
.xc_c00222{left:555.040000pt;}
.xef_c00222{left:556.960000pt;}
.xca_c00222{left:561.706667pt;}
.xb2_c00222{left:562.666667pt;}
.xce_c00222{left:564.000000pt;}
.x77_c00222{left:565.333333pt;}
.xba_c00222{left:566.293333pt;}
.x88_c00222{left:569.333333pt;}
.x2c_c00222{left:570.666667pt;}
.xa2_c00222{left:572.000000pt;}
.x37_c00222{left:573.333333pt;}
.x38_c00222{left:578.293333pt;}
.x6a_c00222{left:580.000000pt;}
.xe6_c00222{left:580.960000pt;}
.x84_c00222{left:584.373333pt;}
.xc0_c00222{left:586.293333pt;}
.x9b_c00222{left:588.000000pt;}
.x19_c00222{left:588.960000pt;}
.xd_c00222{left:590.293333pt;}
.xd7_c00222{left:592.000000pt;}
.x23_c00222{left:593.706667pt;}
.xbb_c00222{left:595.040000pt;}
.x6b_c00222{left:596.960000pt;}
.xb3_c00222{left:600.373333pt;}
.xe7_c00222{left:601.333333pt;}
.x1a_c00222{left:605.333333pt;}
.xcf_c00222{left:606.666667pt;}
.xe_c00222{left:608.000000pt;}
.x78_c00222{left:608.960000pt;}
.x2d_c00222{left:613.706667pt;}
.xc1_c00222{left:614.666667pt;}
.x39_c00222{left:616.960000pt;}
.x89_c00222{left:620.373333pt;}
.xb4_c00222{left:624.373333pt;}
.x79_c00222{left:627.040000pt;}
.x2_c00222{left:629.706667pt;}
.x9c_c00222{left:631.040000pt;}
.xa3_c00222{left:637.333333pt;}
.x24_c00222{left:638.293333pt;}
.xf0_c00222{left:640.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_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_98a5aa14e89af4a4a3335d53.woff2')format("woff");}.ff1_c00223{font-family:ff1_c00223;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mfd_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);}
.mfe_c00223{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.mfa_c00223{transform:matrix(0.328221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328221,0.000000,0.000000,0.250000,0,0);}
.m42_c00223{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m5d_c00223{transform:matrix(0.348794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348794,0.000000,0.000000,0.250000,0,0);}
.m40_c00223{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m4f_c00223{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.ma_c00223{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mc3_c00223{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m1e_c00223{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m9d_c00223{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m8e_c00223{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m12_c00223{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m1c_c00223{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.ma6_c00223{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m79_c00223{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m45_c00223{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m7d_c00223{transform:matrix(0.379406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379406,0.000000,0.000000,0.250000,0,0);}
.m31_c00223{transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);}
.m3d_c00223{transform:matrix(0.383819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383819,0.000000,0.000000,0.250000,0,0);}
.m34_c00223{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.me8_c00223{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m7c_c00223{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m1b_c00223{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m44_c00223{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m9a_c00223{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m103_c00223{transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);}
.md_c00223{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m10a_c00223{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m3c_c00223{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.mf5_c00223{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.mb4_c00223{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.me5_c00223{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m25_c00223{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m8d_c00223{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.m10c_c00223{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mb3_c00223{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.md6_c00223{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m80_c00223{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.me2_c00223{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.md2_c00223{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m70_c00223{transform:matrix(0.415584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415584,0.000000,0.000000,0.250000,0,0);}
.md0_c00223{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m1f_c00223{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.m111_c00223{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.md4_c00223{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.mbf_c00223{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m9f_c00223{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m8c_c00223{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m112_c00223{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m96_c00223{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.me3_c00223{transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);}
.m68_c00223{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.mf3_c00223{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m2a_c00223{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m5e_c00223{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m82_c00223{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.me0_c00223{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.me_c00223{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.me4_c00223{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mff_c00223{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.mc0_c00223{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.mb7_c00223{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.me9_c00223{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m3f_c00223{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m65_c00223{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m93_c00223{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.m56_c00223{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m113_c00223{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m62_c00223{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m9c_c00223{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m8_c00223{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m52_c00223{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.mae_c00223{transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);}
.m53_c00223{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m99_c00223{transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);}
.mfb_c00223{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m5b_c00223{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mec_c00223{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m87_c00223{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.mc2_c00223{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.mdc_c00223{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m43_c00223{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m6b_c00223{transform:matrix(0.441390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441390,0.000000,0.000000,0.250000,0,0);}
.md9_c00223{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.m86_c00223{transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);}
.m30_c00223{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m51_c00223{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.mea_c00223{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m47_c00223{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m33_c00223{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m4e_c00223{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.mcd_c00223{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.m9_c00223{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m106_c00223{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.ma1_c00223{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m2d_c00223{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.mcc_c00223{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m6d_c00223{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.mb2_c00223{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.md7_c00223{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.mb0_c00223{transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);}
.m71_c00223{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m4d_c00223{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mdd_c00223{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m88_c00223{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mde_c00223{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m8b_c00223{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m90_c00223{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m84_c00223{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m27_c00223{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.med_c00223{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m85_c00223{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m58_c00223{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.mdf_c00223{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.mfc_c00223{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mc6_c00223{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.m26_c00223{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m13_c00223{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m10b_c00223{transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);}
.mca_c00223{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.m5f_c00223{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.mbb_c00223{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m37_c00223{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m94_c00223{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.me6_c00223{transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);}
.m97_c00223{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m2_c00223{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m77_c00223{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m1_c00223{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m5a_c00223{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m101_c00223{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m3b_c00223{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);}
.m10e_c00223{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mb9_c00223{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m9e_c00223{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m9b_c00223{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m10f_c00223{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.mf2_c00223{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m1d_c00223{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m7a_c00223{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m63_c00223{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m2b_c00223{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mf4_c00223{transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);}
.m95_c00223{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.mb1_c00223{transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);}
.mf7_c00223{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m29_c00223{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.mb5_c00223{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.m4c_c00223{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m81_c00223{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m5c_c00223{transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);}
.meb_c00223{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m109_c00223{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m16_c00223{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m83_c00223{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);}
.m55_c00223{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mef_c00223{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mf1_c00223{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m2e_c00223{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m49_c00223{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m3a_c00223{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m108_c00223{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m7_c00223{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m39_c00223{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m89_c00223{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.mb6_c00223{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mee_c00223{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m98_c00223{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.mbd_c00223{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m4a_c00223{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m59_c00223{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m72_c00223{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m5_c00223{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mce_c00223{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mc8_c00223{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.ma5_c00223{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.ma2_c00223{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mab_c00223{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.ma3_c00223{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m3e_c00223{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mf0_c00223{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m38_c00223{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m35_c00223{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m21_c00223{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m110_c00223{transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);}
.mbe_c00223{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mad_c00223{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m2f_c00223{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m11_c00223{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m102_c00223{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m60_c00223{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.mba_c00223{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m14_c00223{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m7b_c00223{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m17_c00223{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.m107_c00223{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.mf9_c00223{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mda_c00223{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m22_c00223{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.mf8_c00223{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.ma4_c00223{transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);}
.m6_c00223{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m54_c00223{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.md3_c00223{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m36_c00223{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m76_c00223{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m3_c00223{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mac_c00223{transform:matrix(0.575735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575735,0.000000,0.000000,0.250000,0,0);}
.mcf_c00223{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m75_c00223{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.m10d_c00223{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mc7_c00223{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m6e_c00223{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m73_c00223{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m64_c00223{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m50_c00223{transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);}
.mdb_c00223{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m24_c00223{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m91_c00223{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m6f_c00223{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.mf_c00223{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.md1_c00223{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.m100_c00223{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.m1a_c00223{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m2c_c00223{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m10_c00223{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m0_c00223{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.m4_c00223{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mc1_c00223{transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);}
.m67_c00223{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.m7f_c00223{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mc5_c00223{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m8f_c00223{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);}
.me1_c00223{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m74_c00223{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.mc4_c00223{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m6c_c00223{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m15_c00223{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m8a_c00223{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m41_c00223{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.me7_c00223{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.ma8_c00223{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m61_c00223{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m78_c00223{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.ma9_c00223{transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);}
.m46_c00223{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m28_c00223{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mf6_c00223{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m32_c00223{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.ma7_c00223{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.md5_c00223{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m7e_c00223{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m23_c00223{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m105_c00223{transform:matrix(0.695882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695882,0.000000,0.000000,0.250000,0,0);}
.maf_c00223{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);}
.m69_c00223{transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);}
.m4b_c00223{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mcb_c00223{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.mbc_c00223{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m18_c00223{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.mc_c00223{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mb_c00223{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m104_c00223{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m48_c00223{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m20_c00223{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.mb8_c00223{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.mc9_c00223{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.md8_c00223{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.ma0_c00223{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m66_c00223{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m92_c00223{transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);}
.m6a_c00223{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.m57_c00223{transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);}
.maa_c00223{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m19_c00223{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,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:-7.305001px;}
.ws1_c00223{word-spacing:0.000000px;}
.fc0_c00223{color:transparent;}
.fs6_c00223{font-size:3.420000px;}
.fs8_c00223{font-size:13.620000px;}
.fs4_c00223{font-size:18.720000px;}
.fs0_c00223{font-size:20.400000px;}
.fs5_c00223{font-size:25.500000px;}
.fs1_c00223{font-size:28.920000px;}
.fs2_c00223{font-size:32.340000px;}
.fs3_c00223{font-size:35.700000px;}
.fs7_c00223{font-size:39.120000px;}
.y0_c00223{bottom:0.000000px;}
.ye2_c00223{bottom:251.745000px;}
.ye5_c00223{bottom:252.825000px;}
.ye3_c00223{bottom:253.905000px;}
.ye6_c00223{bottom:254.130000px;}
.ye4_c00223{bottom:254.970000px;}
.ydc_c00223{bottom:270.405000px;}
.ydd_c00223{bottom:271.245000px;}
.ye0_c00223{bottom:272.325000px;}
.yde_c00223{bottom:273.405000px;}
.ye1_c00223{bottom:273.630000px;}
.ydf_c00223{bottom:274.905000px;}
.yd7_c00223{bottom:291.825000px;}
.ydb_c00223{bottom:292.245000px;}
.yd9_c00223{bottom:292.905000px;}
.yd8_c00223{bottom:293.130000px;}
.yda_c00223{bottom:294.405000px;}
.yd5_c00223{bottom:310.470000px;}
.yd2_c00223{bottom:311.745000px;}
.yd1_c00223{bottom:312.630000px;}
.yd4_c00223{bottom:312.825000px;}
.yd6_c00223{bottom:313.470000px;}
.yd3_c00223{bottom:313.905000px;}
.ycf_c00223{bottom:331.245000px;}
.yd0_c00223{bottom:332.130000px;}
.yce_c00223{bottom:332.325000px;}
.ycc_c00223{bottom:333.405000px;}
.ycd_c00223{bottom:334.470000px;}
.yc9_c00223{bottom:349.680000px;}
.yca_c00223{bottom:350.745000px;}
.ycb_c00223{bottom:352.470000px;}
.yc8_c00223{bottom:352.905000px;}
.yc4_c00223{bottom:370.245000px;}
.yc5_c00223{bottom:371.550000px;}
.yc7_c00223{bottom:372.405000px;}
.yc3_c00223{bottom:372.630000px;}
.yc6_c00223{bottom:373.905000px;}
.ybf_c00223{bottom:389.745000px;}
.yc1_c00223{bottom:390.825000px;}
.yc0_c00223{bottom:391.245000px;}
.yc2_c00223{bottom:391.905000px;}
.ybd_c00223{bottom:392.325000px;}
.ybe_c00223{bottom:393.405000px;}
.yba_c00223{bottom:408.405000px;}
.ybb_c00223{bottom:410.325000px;}
.yb6_c00223{bottom:410.745000px;}
.yb9_c00223{bottom:411.825000px;}
.ybc_c00223{bottom:412.470000px;}
.yb7_c00223{bottom:412.905000px;}
.yb8_c00223{bottom:413.970000px;}
.yb5_c00223{bottom:428.745000px;}
.yb4_c00223{bottom:429.405000px;}
.yb0_c00223{bottom:430.245000px;}
.yaf_c00223{bottom:431.130000px;}
.yb2_c00223{bottom:431.325000px;}
.yae_c00223{bottom:432.405000px;}
.yb1_c00223{bottom:432.630000px;}
.yb3_c00223{bottom:433.470000px;}
.ya8_c00223{bottom:449.745000px;}
.yac_c00223{bottom:450.630000px;}
.yad_c00223{bottom:450.825000px;}
.ya9_c00223{bottom:451.905000px;}
.yaa_c00223{bottom:452.130000px;}
.yab_c00223{bottom:452.970000px;}
.ya3_c00223{bottom:469.245000px;}
.ya5_c00223{bottom:470.325000px;}
.ya7_c00223{bottom:470.970000px;}
.ya6_c00223{bottom:471.405000px;}
.ya2_c00223{bottom:471.630000px;}
.ya4_c00223{bottom:472.470000px;}
.ya1_c00223{bottom:488.745000px;}
.y9c_c00223{bottom:490.245000px;}
.y9f_c00223{bottom:490.905000px;}
.ya0_c00223{bottom:491.130000px;}
.y9e_c00223{bottom:491.970000px;}
.y9d_c00223{bottom:492.405000px;}
.y97_c00223{bottom:507.405000px;}
.y9a_c00223{bottom:509.745000px;}
.y9b_c00223{bottom:509.970000px;}
.y98_c00223{bottom:510.630000px;}
.y99_c00223{bottom:510.825000px;}
.y96_c00223{bottom:511.905000px;}
.y94_c00223{bottom:527.970000px;}
.y8f_c00223{bottom:529.245000px;}
.y95_c00223{bottom:529.905000px;}
.y93_c00223{bottom:530.970000px;}
.y92_c00223{bottom:531.405000px;}
.y90_c00223{bottom:531.420000px;}
.y91_c00223{bottom:532.470000px;}
.y8e_c00223{bottom:550.905000px;}
.y8d_c00223{bottom:566.970000px;}
.y8b_c00223{bottom:568.245000px;}
.y8c_c00223{bottom:569.130000px;}
.y8a_c00223{bottom:570.405000px;}
.y88_c00223{bottom:590.970000px;}
.y85_c00223{bottom:591.825000px;}
.y84_c00223{bottom:592.905000px;}
.y87_c00223{bottom:593.970000px;}
.y86_c00223{bottom:594.195000px;}
.y89_c00223{bottom:595.050000px;}
.y82_c00223{bottom:606.825000px;}
.y7e_c00223{bottom:607.050000px;}
.y83_c00223{bottom:607.905000px;}
.y80_c00223{bottom:608.130000px;}
.y81_c00223{bottom:608.970000px;}
.y7f_c00223{bottom:610.050000px;}
.y7c_c00223{bottom:620.970000px;}
.y7b_c00223{bottom:621.825000px;}
.y79_c00223{bottom:622.905000px;}
.y77_c00223{bottom:623.550000px;}
.y78_c00223{bottom:623.970000px;}
.y7a_c00223{bottom:624.195000px;}
.y7d_c00223{bottom:625.050000px;}
.y76_c00223{bottom:636.825000px;}
.y74_c00223{bottom:638.970000px;}
.y75_c00223{bottom:640.050000px;}
.y73_c00223{bottom:650.325000px;}
.y6e_c00223{bottom:650.970000px;}
.y6f_c00223{bottom:651.405000px;}
.y72_c00223{bottom:652.470000px;}
.y71_c00223{bottom:652.695000px;}
.y70_c00223{bottom:653.550000px;}
.y6d_c00223{bottom:671.745000px;}
.y6b_c00223{bottom:673.905000px;}
.y6c_c00223{bottom:674.970000px;}
.y69_c00223{bottom:690.405000px;}
.y68_c00223{bottom:691.245000px;}
.y67_c00223{bottom:693.405000px;}
.y6a_c00223{bottom:693.630000px;}
.y66_c00223{bottom:714.825000px;}
.y62_c00223{bottom:715.905000px;}
.y64_c00223{bottom:716.130000px;}
.y63_c00223{bottom:716.970000px;}
.y65_c00223{bottom:718.050000px;}
.y60_c00223{bottom:729.825000px;}
.y61_c00223{bottom:730.050000px;}
.y5d_c00223{bottom:730.905000px;}
.y5e_c00223{bottom:731.970000px;}
.y5f_c00223{bottom:732.195000px;}
.y5c_c00223{bottom:733.050000px;}
.y5b_c00223{bottom:743.970000px;}
.y57_c00223{bottom:744.825000px;}
.y56_c00223{bottom:745.050000px;}
.y58_c00223{bottom:745.905000px;}
.y5a_c00223{bottom:746.970000px;}
.y59_c00223{bottom:747.195000px;}
.y52_c00223{bottom:759.405000px;}
.y53_c00223{bottom:760.050000px;}
.y55_c00223{bottom:760.905000px;}
.y54_c00223{bottom:763.050000px;}
.y4b_c00223{bottom:773.550000px;}
.y50_c00223{bottom:774.405000px;}
.y4c_c00223{bottom:774.825000px;}
.y51_c00223{bottom:775.470000px;}
.y4e_c00223{bottom:775.905000px;}
.y4d_c00223{bottom:776.130000px;}
.y4f_c00223{bottom:776.970000px;}
.y48_c00223{bottom:789.825000px;}
.y49_c00223{bottom:790.050000px;}
.y46_c00223{bottom:790.695000px;}
.y47_c00223{bottom:791.550000px;}
.y4a_c00223{bottom:791.970000px;}
.y40_c00223{bottom:802.470000px;}
.y44_c00223{bottom:803.325000px;}
.y45_c00223{bottom:804.405000px;}
.y41_c00223{bottom:805.470000px;}
.y42_c00223{bottom:805.905000px;}
.y43_c00223{bottom:806.550000px;}
.y3e_c00223{bottom:819.405000px;}
.y3f_c00223{bottom:821.550000px;}
.y3a_c00223{bottom:833.325000px;}
.y3d_c00223{bottom:833.550000px;}
.y3c_c00223{bottom:834.405000px;}
.y38_c00223{bottom:834.630000px;}
.y39_c00223{bottom:835.470000px;}
.y3b_c00223{bottom:835.905000px;}
.y35_c00223{bottom:849.405000px;}
.y37_c00223{bottom:850.470000px;}
.y36_c00223{bottom:850.695000px;}
.y34_c00223{bottom:851.550000px;}
.y30_c00223{bottom:862.470000px;}
.y33_c00223{bottom:862.905000px;}
.y31_c00223{bottom:863.325000px;}
.y32_c00223{bottom:863.550000px;}
.y2e_c00223{bottom:864.405000px;}
.y2d_c00223{bottom:864.630000px;}
.y2f_c00223{bottom:865.470000px;}
.y2b_c00223{bottom:883.245000px;}
.y2c_c00223{bottom:885.405000px;}
.y2a_c00223{bottom:886.470000px;}
.y26_c00223{bottom:902.745000px;}
.y29_c00223{bottom:903.180000px;}
.y27_c00223{bottom:904.245000px;}
.y28_c00223{bottom:906.405000px;}
.y25_c00223{bottom:922.680000px;}
.y22_c00223{bottom:923.745000px;}
.y21_c00223{bottom:924.405000px;}
.y24_c00223{bottom:924.630000px;}
.y23_c00223{bottom:925.905000px;}
.y1d_c00223{bottom:941.745000px;}
.y1f_c00223{bottom:942.825000px;}
.y1c_c00223{bottom:943.905000px;}
.y20_c00223{bottom:944.130000px;}
.y1e_c00223{bottom:944.970000px;}
.y1b_c00223{bottom:961.680000px;}
.y1a_c00223{bottom:962.745000px;}
.y19_c00223{bottom:964.905000px;}
.y18_c00223{bottom:981.825000px;}
.y15_c00223{bottom:982.245000px;}
.y17_c00223{bottom:983.970000px;}
.y16_c00223{bottom:984.405000px;}
.y12_c00223{bottom:1001.745000px;}
.y10_c00223{bottom:1002.630000px;}
.y13_c00223{bottom:1002.825000px;}
.y11_c00223{bottom:1003.905000px;}
.y14_c00223{bottom:1004.130000px;}
.ye_c00223{bottom:1021.245000px;}
.yf_c00223{bottom:1022.130000px;}
.yc_c00223{bottom:1023.405000px;}
.yd_c00223{bottom:1023.420000px;}
.yb_c00223{bottom:1024.470000px;}
.ya_c00223{bottom:1040.745000px;}
.y9_c00223{bottom:1042.905000px;}
.y8_c00223{bottom:1043.970000px;}
.y7_c00223{bottom:1059.825000px;}
.y5_c00223{bottom:1060.245000px;}
.y3_c00223{bottom:1061.325000px;}
.y4_c00223{bottom:1062.405000px;}
.y6_c00223{bottom:1062.630000px;}
.y2_c00223{bottom:1098.405000px;}
.y1_c00223{bottom:1100.550000px;}
.h7_c00223{height:4.206533px;}
.h9_c00223{height:16.752334px;}
.h5_c00223{height:23.025234px;}
.h1_c00223{height:25.091602px;}
.h6_c00223{height:31.364502px;}
.h2_c00223{height:35.571035px;}
.h3_c00223{height:39.777568px;}
.h4_c00223{height:43.910303px;}
.h8_c00223{height:48.116836px;}
.h0_c00223{height:1335.000000px;}
.w0_c00223{width:880.500000px;}
.x0_c00223{left:0.000000px;}
.x2_c00223{left:148.920000px;}
.x3_c00223{left:150.420000px;}
.x6d_c00223{left:151.920000px;}
.x7f_c00223{left:153.420000px;}
.x87_c00223{left:163.500000px;}
.x19_c00223{left:166.500000px;}
.xa1_c00223{left:167.580000px;}
.xbc_c00223{left:169.500000px;}
.xf2_c00223{left:172.920000px;}
.x62_c00223{left:175.500000px;}
.x13_c00223{left:177.000000px;}
.x6e_c00223{left:178.500000px;}
.x3d_c00223{left:180.420000px;}
.x31_c00223{left:181.500000px;}
.x76_c00223{left:183.000000px;}
.x98_c00223{left:184.080000px;}
.x48_c00223{left:185.580000px;}
.xdd_c00223{left:189.000000px;}
.xeb_c00223{left:190.080000px;}
.x25_c00223{left:191.580000px;}
.x32_c00223{left:195.000000px;}
.xd8_c00223{left:196.500000px;}
.xf9_c00223{left:198.000000px;}
.x88_c00223{left:199.080000px;}
.xbd_c00223{left:201.000000px;}
.xe0_c00223{left:206.580000px;}
.xaf_c00223{left:208.500000px;}
.x33_c00223{left:210.000000px;}
.xa5_c00223{left:211.080000px;}
.x3e_c00223{left:213.000000px;}
.x53_c00223{left:214.920000px;}
.xd9_c00223{left:216.420000px;}
.xcf_c00223{left:217.920000px;}
.x93_c00223{left:222.000000px;}
.x26_c00223{left:223.500000px;}
.x6f_c00223{left:226.500000px;}
.x4_c00223{left:227.580000px;}
.x80_c00223{left:229.920000px;}
.xb5_c00223{left:231.000000px;}
.x70_c00223{left:238.500000px;}
.x81_c00223{left:239.580000px;}
.x5c_c00223{left:241.080000px;}
.x14_c00223{left:244.500000px;}
.x34_c00223{left:246.420000px;}
.xe1_c00223{left:247.500000px;}
.x1a_c00223{left:249.000000px;}
.x9e_c00223{left:250.500000px;}
.x77_c00223{left:252.000000px;}
.xbe_c00223{left:255.000000px;}
.x5_c00223{left:256.500000px;}
.x3f_c00223{left:259.080000px;}
.x63_c00223{left:262.920000px;}
.x65_c00223{left:264.000000px;}
.xfa_c00223{left:265.500000px;}
.x8a_c00223{left:266.580000px;}
.xaa_c00223{left:268.500000px;}
.x1b_c00223{left:269.580000px;}
.xda_c00223{left:271.920000px;}
.x54_c00223{left:273.000000px;}
.x6_c00223{left:274.920000px;}
.x49_c00223{left:277.500000px;}
.x40_c00223{left:279.420000px;}
.xe5_c00223{left:281.580000px;}
.x35_c00223{left:288.420000px;}
.x64_c00223{left:289.920000px;}
.xec_c00223{left:291.420000px;}
.x27_c00223{left:292.500000px;}
.x94_c00223{left:294.420000px;}
.xc9_c00223{left:295.920000px;}
.xa6_c00223{left:300.420000px;}
.x41_c00223{left:304.920000px;}
.x89_c00223{left:306.000000px;}
.x28_c00223{left:307.500000px;}
.xb6_c00223{left:310.500000px;}
.x7_c00223{left:311.580000px;}
.xe6_c00223{left:314.580000px;}
.xff_c00223{left:316.920000px;}
.x15_c00223{left:318.000000px;}
.x36_c00223{left:320.580000px;}
.xbf_c00223{left:324.000000px;}
.xb0_c00223{left:325.080000px;}
.x66_c00223{left:326.580000px;}
.x4a_c00223{left:328.500000px;}
.xfb_c00223{left:330.420000px;}
.x8_c00223{left:331.920000px;}
.x16_c00223{left:333.420000px;}
.x78_c00223{left:335.580000px;}
.x42_c00223{left:337.080000px;}
.x9f_c00223{left:340.920000px;}
.x1c_c00223{left:342.000000px;}
.x29_c00223{left:344.580000px;}
.x100_c00223{left:346.500000px;}
.xd6_c00223{left:347.580000px;}
.x8b_c00223{left:348.645000px;}
.xc4_c00223{left:351.000000px;}
.x82_c00223{left:352.500000px;}
.x55_c00223{left:354.000000px;}
.xa2_c00223{left:355.500000px;}
.x9_c00223{left:358.920000px;}
.x79_c00223{left:360.000000px;}
.x71_c00223{left:361.500000px;}
.x1d_c00223{left:362.580000px;}
.x4b_c00223{left:364.500000px;}
.xa7_c00223{left:365.580000px;}
.xa0_c00223{left:367.500000px;}
.xb9_c00223{left:371.580000px;}
.xe7_c00223{left:373.500000px;}
.x17_c00223{left:375.000000px;}
.xed_c00223{left:376.920000px;}
.xd0_c00223{left:378.000000px;}
.x56_c00223{left:381.420000px;}
.x5d_c00223{left:382.500000px;}
.xd2_c00223{left:383.580000px;}
.xab_c00223{left:385.080000px;}
.x99_c00223{left:390.000000px;}
.x18_c00223{left:391.080000px;}
.x8c_c00223{left:392.580000px;}
.xa_c00223{left:394.920000px;}
.xfc_c00223{left:396.000000px;}
.x1_c00223{left:397.500000px;}
.x83_c00223{left:400.080000px;}
.x37_c00223{left:402.000000px;}
.x43_c00223{left:405.000000px;}
.xe8_c00223{left:406.080000px;}
.x72_c00223{left:410.580000px;}
.x7a_c00223{left:413.145000px;}
.xba_c00223{left:415.500000px;}
.xb7_c00223{left:416.580000px;}
.x5e_c00223{left:418.500000px;}
.x2a_c00223{left:420.000000px;}
.xdb_c00223{left:421.920000px;}
.x57_c00223{left:423.000000px;}
.xc0_c00223{left:424.920000px;}
.xd7_c00223{left:427.920000px;}
.x95_c00223{left:429.000000px;}
.x73_c00223{left:433.080000px;}
.x4c_c00223{left:434.580000px;}
.x1e_c00223{left:436.080000px;}
.xb1_c00223{left:437.580000px;}
.xa8_c00223{left:439.080000px;}
.x9a_c00223{left:442.500000px;}
.xbb_c00223{left:443.580000px;}
.x58_c00223{left:447.855000px;}
.xb_c00223{left:449.580000px;}
.x84_c00223{left:451.500000px;}
.x44_c00223{left:452.580000px;}
.xe9_c00223{left:454.500000px;}
.xee_c00223{left:457.500000px;}
.x38_c00223{left:463.500000px;}
.x4d_c00223{left:465.000000px;}
.xe2_c00223{left:466.500000px;}
.xc_c00223{left:469.920000px;}
.x67_c00223{left:471.420000px;}
.x8d_c00223{left:475.080000px;}
.xde_c00223{left:477.420000px;}
.xd3_c00223{left:478.500000px;}
.xa3_c00223{left:481.920000px;}
.x2b_c00223{left:484.080000px;}
.x1f_c00223{left:485.775000px;}
.x74_c00223{left:489.000000px;}
.x7b_c00223{left:492.000000px;}
.xdc_c00223{left:493.080000px;}
.xd_c00223{left:496.500000px;}
.xca_c00223{left:499.080000px;}
.x96_c00223{left:504.420000px;}
.xc1_c00223{left:505.500000px;}
.x59_c00223{left:506.580000px;}
.xb2_c00223{left:508.500000px;}
.xe3_c00223{left:511.500000px;}
.x9b_c00223{left:513.000000px;}
.x68_c00223{left:514.920000px;}
.x20_c00223{left:519.420000px;}
.x39_c00223{left:523.500000px;}
.x85_c00223{left:524.580000px;}
.x4e_c00223{left:526.275000px;}
.x45_c00223{left:528.000000px;}
.xc5_c00223{left:529.500000px;}
.x8e_c00223{left:530.580000px;}
.xac_c00223{left:532.080000px;}
.x2c_c00223{left:535.500000px;}
.xb3_c00223{left:538.920000px;}
.x97_c00223{left:546.000000px;}
.xc6_c00223{left:550.500000px;}
.x75_c00223{left:552.000000px;}
.xe_c00223{left:553.500000px;}
.x2d_c00223{left:555.000000px;}
.xfd_c00223{left:556.500000px;}
.x69_c00223{left:558.855000px;}
.x9c_c00223{left:562.080000px;}
.xb4_c00223{left:565.500000px;}
.x4f_c00223{left:567.000000px;}
.xcb_c00223{left:568.500000px;}
.xc7_c00223{left:570.000000px;}
.x8f_c00223{left:572.580000px;}
.xf_c00223{left:577.920000px;}
.xf3_c00223{left:580.500000px;}
.xf6_c00223{left:582.000000px;}
.x86_c00223{left:583.080000px;}
.x5f_c00223{left:586.080000px;}
.x21_c00223{left:589.500000px;}
.x9d_c00223{left:591.000000px;}
.x101_c00223{left:592.500000px;}
.xef_c00223{left:594.420000px;}
.x3a_c00223{left:595.920000px;}
.xf4_c00223{left:597.000000px;}
.xf7_c00223{left:600.000000px;}
.xad_c00223{left:601.080000px;}
.x22_c00223{left:603.000000px;}
.x2e_c00223{left:604.500000px;}
.x10_c00223{left:606.000000px;}
.x7c_c00223{left:609.000000px;}
.xd4_c00223{left:610.500000px;}
.xcc_c00223{left:612.000000px;}
.xa9_c00223{left:613.500000px;}
.xa4_c00223{left:615.420000px;}
.x90_c00223{left:617.580000px;}
.x7d_c00223{left:619.500000px;}
.x3b_c00223{left:621.000000px;}
.x46_c00223{left:623.580000px;}
.x2f_c00223{left:627.000000px;}
.xf0_c00223{left:631.500000px;}
.x50_c00223{left:633.000000px;}
.x60_c00223{left:636.000000px;}
.x6a_c00223{left:637.500000px;}
.xdf_c00223{left:639.420000px;}
.xcd_c00223{left:646.920000px;}
.xd1_c00223{left:648.000000px;}
.x11_c00223{left:651.000000px;}
.xb8_c00223{left:655.080000px;}
.x23_c00223{left:657.420000px;}
.xd5_c00223{left:658.500000px;}
.x51_c00223{left:660.000000px;}
.x5a_c00223{left:661.080000px;}
.x6b_c00223{left:663.420000px;}
.xc2_c00223{left:669.000000px;}
.x61_c00223{left:670.080000px;}
.xe4_c00223{left:672.420000px;}
.x3c_c00223{left:675.000000px;}
.x47_c00223{left:676.080000px;}
.xc8_c00223{left:678.000000px;}
.x91_c00223{left:679.920000px;}
.xf8_c00223{left:685.500000px;}
.x30_c00223{left:686.580000px;}
.x5b_c00223{left:688.500000px;}
.x92_c00223{left:690.000000px;}
.xae_c00223{left:691.080000px;}
.x7e_c00223{left:692.355000px;}
.x52_c00223{left:694.500000px;}
.x24_c00223{left:695.580000px;}
.x6c_c00223{left:699.000000px;}
.x12_c00223{left:700.920000px;}
.xfe_c00223{left:703.920000px;}
.xf1_c00223{left:705.000000px;}
.xea_c00223{left:706.080000px;}
.xce_c00223{left:708.000000px;}
.xf5_c00223{left:709.920000px;}
.xc3_c00223{left:717.000000px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.ls0_c00223{letter-spacing:0.000000pt;}
.ws0_c00223{word-spacing:-6.493334pt;}
.ws1_c00223{word-spacing:0.000000pt;}
.fs6_c00223{font-size:3.040000pt;}
.fs8_c00223{font-size:12.106667pt;}
.fs4_c00223{font-size:16.640000pt;}
.fs0_c00223{font-size:18.133333pt;}
.fs5_c00223{font-size:22.666667pt;}
.fs1_c00223{font-size:25.706667pt;}
.fs2_c00223{font-size:28.746667pt;}
.fs3_c00223{font-size:31.733333pt;}
.fs7_c00223{font-size:34.773333pt;}
.y0_c00223{bottom:0.000000pt;}
.ye2_c00223{bottom:223.773333pt;}
.ye5_c00223{bottom:224.733333pt;}
.ye3_c00223{bottom:225.693333pt;}
.ye6_c00223{bottom:225.893333pt;}
.ye4_c00223{bottom:226.640000pt;}
.ydc_c00223{bottom:240.360000pt;}
.ydd_c00223{bottom:241.106667pt;}
.ye0_c00223{bottom:242.066667pt;}
.yde_c00223{bottom:243.026667pt;}
.ye1_c00223{bottom:243.226667pt;}
.ydf_c00223{bottom:244.360000pt;}
.yd7_c00223{bottom:259.400000pt;}
.ydb_c00223{bottom:259.773333pt;}
.yd9_c00223{bottom:260.360000pt;}
.yd8_c00223{bottom:260.560000pt;}
.yda_c00223{bottom:261.693333pt;}
.yd5_c00223{bottom:275.973333pt;}
.yd2_c00223{bottom:277.106667pt;}
.yd1_c00223{bottom:277.893333pt;}
.yd4_c00223{bottom:278.066667pt;}
.yd6_c00223{bottom:278.640000pt;}
.yd3_c00223{bottom:279.026667pt;}
.ycf_c00223{bottom:294.440000pt;}
.yd0_c00223{bottom:295.226667pt;}
.yce_c00223{bottom:295.400000pt;}
.ycc_c00223{bottom:296.360000pt;}
.ycd_c00223{bottom:297.306667pt;}
.yc9_c00223{bottom:310.826667pt;}
.yca_c00223{bottom:311.773333pt;}
.ycb_c00223{bottom:313.306667pt;}
.yc8_c00223{bottom:313.693333pt;}
.yc4_c00223{bottom:329.106667pt;}
.yc5_c00223{bottom:330.266667pt;}
.yc7_c00223{bottom:331.026667pt;}
.yc3_c00223{bottom:331.226667pt;}
.yc6_c00223{bottom:332.360000pt;}
.ybf_c00223{bottom:346.440000pt;}
.yc1_c00223{bottom:347.400000pt;}
.yc0_c00223{bottom:347.773333pt;}
.yc2_c00223{bottom:348.360000pt;}
.ybd_c00223{bottom:348.733333pt;}
.ybe_c00223{bottom:349.693333pt;}
.yba_c00223{bottom:363.026667pt;}
.ybb_c00223{bottom:364.733333pt;}
.yb6_c00223{bottom:365.106667pt;}
.yb9_c00223{bottom:366.066667pt;}
.ybc_c00223{bottom:366.640000pt;}
.yb7_c00223{bottom:367.026667pt;}
.yb8_c00223{bottom:367.973333pt;}
.yb5_c00223{bottom:381.106667pt;}
.yb4_c00223{bottom:381.693333pt;}
.yb0_c00223{bottom:382.440000pt;}
.yaf_c00223{bottom:383.226667pt;}
.yb2_c00223{bottom:383.400000pt;}
.yae_c00223{bottom:384.360000pt;}
.yb1_c00223{bottom:384.560000pt;}
.yb3_c00223{bottom:385.306667pt;}
.ya8_c00223{bottom:399.773333pt;}
.yac_c00223{bottom:400.560000pt;}
.yad_c00223{bottom:400.733333pt;}
.ya9_c00223{bottom:401.693333pt;}
.yaa_c00223{bottom:401.893333pt;}
.yab_c00223{bottom:402.640000pt;}
.ya3_c00223{bottom:417.106667pt;}
.ya5_c00223{bottom:418.066667pt;}
.ya7_c00223{bottom:418.640000pt;}
.ya6_c00223{bottom:419.026667pt;}
.ya2_c00223{bottom:419.226667pt;}
.ya4_c00223{bottom:419.973333pt;}
.ya1_c00223{bottom:434.440000pt;}
.y9c_c00223{bottom:435.773333pt;}
.y9f_c00223{bottom:436.360000pt;}
.ya0_c00223{bottom:436.560000pt;}
.y9e_c00223{bottom:437.306667pt;}
.y9d_c00223{bottom:437.693333pt;}
.y97_c00223{bottom:451.026667pt;}
.y9a_c00223{bottom:453.106667pt;}
.y9b_c00223{bottom:453.306667pt;}
.y98_c00223{bottom:453.893333pt;}
.y99_c00223{bottom:454.066667pt;}
.y96_c00223{bottom:455.026667pt;}
.y94_c00223{bottom:469.306667pt;}
.y8f_c00223{bottom:470.440000pt;}
.y95_c00223{bottom:471.026667pt;}
.y93_c00223{bottom:471.973333pt;}
.y92_c00223{bottom:472.360000pt;}
.y90_c00223{bottom:472.373333pt;}
.y91_c00223{bottom:473.306667pt;}
.y8e_c00223{bottom:489.693333pt;}
.y8d_c00223{bottom:503.973333pt;}
.y8b_c00223{bottom:505.106667pt;}
.y8c_c00223{bottom:505.893333pt;}
.y8a_c00223{bottom:507.026667pt;}
.y88_c00223{bottom:525.306667pt;}
.y85_c00223{bottom:526.066667pt;}
.y84_c00223{bottom:527.026667pt;}
.y87_c00223{bottom:527.973333pt;}
.y86_c00223{bottom:528.173333pt;}
.y89_c00223{bottom:528.933333pt;}
.y82_c00223{bottom:539.400000pt;}
.y7e_c00223{bottom:539.600000pt;}
.y83_c00223{bottom:540.360000pt;}
.y80_c00223{bottom:540.560000pt;}
.y81_c00223{bottom:541.306667pt;}
.y7f_c00223{bottom:542.266667pt;}
.y7c_c00223{bottom:551.973333pt;}
.y7b_c00223{bottom:552.733333pt;}
.y79_c00223{bottom:553.693333pt;}
.y77_c00223{bottom:554.266667pt;}
.y78_c00223{bottom:554.640000pt;}
.y7a_c00223{bottom:554.840000pt;}
.y7d_c00223{bottom:555.600000pt;}
.y76_c00223{bottom:566.066667pt;}
.y74_c00223{bottom:567.973333pt;}
.y75_c00223{bottom:568.933333pt;}
.y73_c00223{bottom:578.066667pt;}
.y6e_c00223{bottom:578.640000pt;}
.y6f_c00223{bottom:579.026667pt;}
.y72_c00223{bottom:579.973333pt;}
.y71_c00223{bottom:580.173333pt;}
.y70_c00223{bottom:580.933333pt;}
.y6d_c00223{bottom:597.106667pt;}
.y6b_c00223{bottom:599.026667pt;}
.y6c_c00223{bottom:599.973333pt;}
.y69_c00223{bottom:613.693333pt;}
.y68_c00223{bottom:614.440000pt;}
.y67_c00223{bottom:616.360000pt;}
.y6a_c00223{bottom:616.560000pt;}
.y66_c00223{bottom:635.400000pt;}
.y62_c00223{bottom:636.360000pt;}
.y64_c00223{bottom:636.560000pt;}
.y63_c00223{bottom:637.306667pt;}
.y65_c00223{bottom:638.266667pt;}
.y60_c00223{bottom:648.733333pt;}
.y61_c00223{bottom:648.933333pt;}
.y5d_c00223{bottom:649.693333pt;}
.y5e_c00223{bottom:650.640000pt;}
.y5f_c00223{bottom:650.840000pt;}
.y5c_c00223{bottom:651.600000pt;}
.y5b_c00223{bottom:661.306667pt;}
.y57_c00223{bottom:662.066667pt;}
.y56_c00223{bottom:662.266667pt;}
.y58_c00223{bottom:663.026667pt;}
.y5a_c00223{bottom:663.973333pt;}
.y59_c00223{bottom:664.173333pt;}
.y52_c00223{bottom:675.026667pt;}
.y53_c00223{bottom:675.600000pt;}
.y55_c00223{bottom:676.360000pt;}
.y54_c00223{bottom:678.266667pt;}
.y4b_c00223{bottom:687.600000pt;}
.y50_c00223{bottom:688.360000pt;}
.y4c_c00223{bottom:688.733333pt;}
.y51_c00223{bottom:689.306667pt;}
.y4e_c00223{bottom:689.693333pt;}
.y4d_c00223{bottom:689.893333pt;}
.y4f_c00223{bottom:690.640000pt;}
.y48_c00223{bottom:702.066667pt;}
.y49_c00223{bottom:702.266667pt;}
.y46_c00223{bottom:702.840000pt;}
.y47_c00223{bottom:703.600000pt;}
.y4a_c00223{bottom:703.973333pt;}
.y40_c00223{bottom:713.306667pt;}
.y44_c00223{bottom:714.066667pt;}
.y45_c00223{bottom:715.026667pt;}
.y41_c00223{bottom:715.973333pt;}
.y42_c00223{bottom:716.360000pt;}
.y43_c00223{bottom:716.933333pt;}
.y3e_c00223{bottom:728.360000pt;}
.y3f_c00223{bottom:730.266667pt;}
.y3a_c00223{bottom:740.733333pt;}
.y3d_c00223{bottom:740.933333pt;}
.y3c_c00223{bottom:741.693333pt;}
.y38_c00223{bottom:741.893333pt;}
.y39_c00223{bottom:742.640000pt;}
.y3b_c00223{bottom:743.026667pt;}
.y35_c00223{bottom:755.026667pt;}
.y37_c00223{bottom:755.973333pt;}
.y36_c00223{bottom:756.173333pt;}
.y34_c00223{bottom:756.933333pt;}
.y30_c00223{bottom:766.640000pt;}
.y33_c00223{bottom:767.026667pt;}
.y31_c00223{bottom:767.400000pt;}
.y32_c00223{bottom:767.600000pt;}
.y2e_c00223{bottom:768.360000pt;}
.y2d_c00223{bottom:768.560000pt;}
.y2f_c00223{bottom:769.306667pt;}
.y2b_c00223{bottom:785.106667pt;}
.y2c_c00223{bottom:787.026667pt;}
.y2a_c00223{bottom:787.973333pt;}
.y26_c00223{bottom:802.440000pt;}
.y29_c00223{bottom:802.826667pt;}
.y27_c00223{bottom:803.773333pt;}
.y28_c00223{bottom:805.693333pt;}
.y25_c00223{bottom:820.160000pt;}
.y22_c00223{bottom:821.106667pt;}
.y21_c00223{bottom:821.693333pt;}
.y24_c00223{bottom:821.893333pt;}
.y23_c00223{bottom:823.026667pt;}
.y1d_c00223{bottom:837.106667pt;}
.y1f_c00223{bottom:838.066667pt;}
.y1c_c00223{bottom:839.026667pt;}
.y20_c00223{bottom:839.226667pt;}
.y1e_c00223{bottom:839.973333pt;}
.y1b_c00223{bottom:854.826667pt;}
.y1a_c00223{bottom:855.773333pt;}
.y19_c00223{bottom:857.693333pt;}
.y18_c00223{bottom:872.733333pt;}
.y15_c00223{bottom:873.106667pt;}
.y17_c00223{bottom:874.640000pt;}
.y16_c00223{bottom:875.026667pt;}
.y12_c00223{bottom:890.440000pt;}
.y10_c00223{bottom:891.226667pt;}
.y13_c00223{bottom:891.400000pt;}
.y11_c00223{bottom:892.360000pt;}
.y14_c00223{bottom:892.560000pt;}
.ye_c00223{bottom:907.773333pt;}
.yf_c00223{bottom:908.560000pt;}
.yc_c00223{bottom:909.693333pt;}
.yd_c00223{bottom:909.706667pt;}
.yb_c00223{bottom:910.640000pt;}
.ya_c00223{bottom:925.106667pt;}
.y9_c00223{bottom:927.026667pt;}
.y8_c00223{bottom:927.973333pt;}
.y7_c00223{bottom:942.066667pt;}
.y5_c00223{bottom:942.440000pt;}
.y3_c00223{bottom:943.400000pt;}
.y4_c00223{bottom:944.360000pt;}
.y6_c00223{bottom:944.560000pt;}
.y2_c00223{bottom:976.360000pt;}
.y1_c00223{bottom:978.266667pt;}
.h7_c00223{height:3.739141pt;}
.h9_c00223{height:14.890964pt;}
.h5_c00223{height:20.466875pt;}
.h1_c00223{height:22.303646pt;}
.h6_c00223{height:27.879557pt;}
.h2_c00223{height:31.618698pt;}
.h3_c00223{height:35.357839pt;}
.h4_c00223{height:39.031380pt;}
.h8_c00223{height:42.770521pt;}
.h0_c00223{height:1186.666667pt;}
.w0_c00223{width:782.666667pt;}
.x0_c00223{left:0.000000pt;}
.x2_c00223{left:132.373333pt;}
.x3_c00223{left:133.706667pt;}
.x6d_c00223{left:135.040000pt;}
.x7f_c00223{left:136.373333pt;}
.x87_c00223{left:145.333333pt;}
.x19_c00223{left:148.000000pt;}
.xa1_c00223{left:148.960000pt;}
.xbc_c00223{left:150.666667pt;}
.xf2_c00223{left:153.706667pt;}
.x62_c00223{left:156.000000pt;}
.x13_c00223{left:157.333333pt;}
.x6e_c00223{left:158.666667pt;}
.x3d_c00223{left:160.373333pt;}
.x31_c00223{left:161.333333pt;}
.x76_c00223{left:162.666667pt;}
.x98_c00223{left:163.626667pt;}
.x48_c00223{left:164.960000pt;}
.xdd_c00223{left:168.000000pt;}
.xeb_c00223{left:168.960000pt;}
.x25_c00223{left:170.293333pt;}
.x32_c00223{left:173.333333pt;}
.xd8_c00223{left:174.666667pt;}
.xf9_c00223{left:176.000000pt;}
.x88_c00223{left:176.960000pt;}
.xbd_c00223{left:178.666667pt;}
.xe0_c00223{left:183.626667pt;}
.xaf_c00223{left:185.333333pt;}
.x33_c00223{left:186.666667pt;}
.xa5_c00223{left:187.626667pt;}
.x3e_c00223{left:189.333333pt;}
.x53_c00223{left:191.040000pt;}
.xd9_c00223{left:192.373333pt;}
.xcf_c00223{left:193.706667pt;}
.x93_c00223{left:197.333333pt;}
.x26_c00223{left:198.666667pt;}
.x6f_c00223{left:201.333333pt;}
.x4_c00223{left:202.293333pt;}
.x80_c00223{left:204.373333pt;}
.xb5_c00223{left:205.333333pt;}
.x70_c00223{left:212.000000pt;}
.x81_c00223{left:212.960000pt;}
.x5c_c00223{left:214.293333pt;}
.x14_c00223{left:217.333333pt;}
.x34_c00223{left:219.040000pt;}
.xe1_c00223{left:220.000000pt;}
.x1a_c00223{left:221.333333pt;}
.x9e_c00223{left:222.666667pt;}
.x77_c00223{left:224.000000pt;}
.xbe_c00223{left:226.666667pt;}
.x5_c00223{left:228.000000pt;}
.x3f_c00223{left:230.293333pt;}
.x63_c00223{left:233.706667pt;}
.x65_c00223{left:234.666667pt;}
.xfa_c00223{left:236.000000pt;}
.x8a_c00223{left:236.960000pt;}
.xaa_c00223{left:238.666667pt;}
.x1b_c00223{left:239.626667pt;}
.xda_c00223{left:241.706667pt;}
.x54_c00223{left:242.666667pt;}
.x6_c00223{left:244.373333pt;}
.x49_c00223{left:246.666667pt;}
.x40_c00223{left:248.373333pt;}
.xe5_c00223{left:250.293333pt;}
.x35_c00223{left:256.373333pt;}
.x64_c00223{left:257.706667pt;}
.xec_c00223{left:259.040000pt;}
.x27_c00223{left:260.000000pt;}
.x94_c00223{left:261.706667pt;}
.xc9_c00223{left:263.040000pt;}
.xa6_c00223{left:267.040000pt;}
.x41_c00223{left:271.040000pt;}
.x89_c00223{left:272.000000pt;}
.x28_c00223{left:273.333333pt;}
.xb6_c00223{left:276.000000pt;}
.x7_c00223{left:276.960000pt;}
.xe6_c00223{left:279.626667pt;}
.xff_c00223{left:281.706667pt;}
.x15_c00223{left:282.666667pt;}
.x36_c00223{left:284.960000pt;}
.xbf_c00223{left:288.000000pt;}
.xb0_c00223{left:288.960000pt;}
.x66_c00223{left:290.293333pt;}
.x4a_c00223{left:292.000000pt;}
.xfb_c00223{left:293.706667pt;}
.x8_c00223{left:295.040000pt;}
.x16_c00223{left:296.373333pt;}
.x78_c00223{left:298.293333pt;}
.x42_c00223{left:299.626667pt;}
.x9f_c00223{left:303.040000pt;}
.x1c_c00223{left:304.000000pt;}
.x29_c00223{left:306.293333pt;}
.x100_c00223{left:308.000000pt;}
.xd6_c00223{left:308.960000pt;}
.x8b_c00223{left:309.906667pt;}
.xc4_c00223{left:312.000000pt;}
.x82_c00223{left:313.333333pt;}
.x55_c00223{left:314.666667pt;}
.xa2_c00223{left:316.000000pt;}
.x9_c00223{left:319.040000pt;}
.x79_c00223{left:320.000000pt;}
.x71_c00223{left:321.333333pt;}
.x1d_c00223{left:322.293333pt;}
.x4b_c00223{left:324.000000pt;}
.xa7_c00223{left:324.960000pt;}
.xa0_c00223{left:326.666667pt;}
.xb9_c00223{left:330.293333pt;}
.xe7_c00223{left:332.000000pt;}
.x17_c00223{left:333.333333pt;}
.xed_c00223{left:335.040000pt;}
.xd0_c00223{left:336.000000pt;}
.x56_c00223{left:339.040000pt;}
.x5d_c00223{left:340.000000pt;}
.xd2_c00223{left:340.960000pt;}
.xab_c00223{left:342.293333pt;}
.x99_c00223{left:346.666667pt;}
.x18_c00223{left:347.626667pt;}
.x8c_c00223{left:348.960000pt;}
.xa_c00223{left:351.040000pt;}
.xfc_c00223{left:352.000000pt;}
.x1_c00223{left:353.333333pt;}
.x83_c00223{left:355.626667pt;}
.x37_c00223{left:357.333333pt;}
.x43_c00223{left:360.000000pt;}
.xe8_c00223{left:360.960000pt;}
.x72_c00223{left:364.960000pt;}
.x7a_c00223{left:367.240000pt;}
.xba_c00223{left:369.333333pt;}
.xb7_c00223{left:370.293333pt;}
.x5e_c00223{left:372.000000pt;}
.x2a_c00223{left:373.333333pt;}
.xdb_c00223{left:375.040000pt;}
.x57_c00223{left:376.000000pt;}
.xc0_c00223{left:377.706667pt;}
.xd7_c00223{left:380.373333pt;}
.x95_c00223{left:381.333333pt;}
.x73_c00223{left:384.960000pt;}
.x4c_c00223{left:386.293333pt;}
.x1e_c00223{left:387.626667pt;}
.xb1_c00223{left:388.960000pt;}
.xa8_c00223{left:390.293333pt;}
.x9a_c00223{left:393.333333pt;}
.xbb_c00223{left:394.293333pt;}
.x58_c00223{left:398.093333pt;}
.xb_c00223{left:399.626667pt;}
.x84_c00223{left:401.333333pt;}
.x44_c00223{left:402.293333pt;}
.xe9_c00223{left:404.000000pt;}
.xee_c00223{left:406.666667pt;}
.x38_c00223{left:412.000000pt;}
.x4d_c00223{left:413.333333pt;}
.xe2_c00223{left:414.666667pt;}
.xc_c00223{left:417.706667pt;}
.x67_c00223{left:419.040000pt;}
.x8d_c00223{left:422.293333pt;}
.xde_c00223{left:424.373333pt;}
.xd3_c00223{left:425.333333pt;}
.xa3_c00223{left:428.373333pt;}
.x2b_c00223{left:430.293333pt;}
.x1f_c00223{left:431.800000pt;}
.x74_c00223{left:434.666667pt;}
.x7b_c00223{left:437.333333pt;}
.xdc_c00223{left:438.293333pt;}
.xd_c00223{left:441.333333pt;}
.xca_c00223{left:443.626667pt;}
.x96_c00223{left:448.373333pt;}
.xc1_c00223{left:449.333333pt;}
.x59_c00223{left:450.293333pt;}
.xb2_c00223{left:452.000000pt;}
.xe3_c00223{left:454.666667pt;}
.x9b_c00223{left:456.000000pt;}
.x68_c00223{left:457.706667pt;}
.x20_c00223{left:461.706667pt;}
.x39_c00223{left:465.333333pt;}
.x85_c00223{left:466.293333pt;}
.x4e_c00223{left:467.800000pt;}
.x45_c00223{left:469.333333pt;}
.xc5_c00223{left:470.666667pt;}
.x8e_c00223{left:471.626667pt;}
.xac_c00223{left:472.960000pt;}
.x2c_c00223{left:476.000000pt;}
.xb3_c00223{left:479.040000pt;}
.x97_c00223{left:485.333333pt;}
.xc6_c00223{left:489.333333pt;}
.x75_c00223{left:490.666667pt;}
.xe_c00223{left:492.000000pt;}
.x2d_c00223{left:493.333333pt;}
.xfd_c00223{left:494.666667pt;}
.x69_c00223{left:496.760000pt;}
.x9c_c00223{left:499.626667pt;}
.xb4_c00223{left:502.666667pt;}
.x4f_c00223{left:504.000000pt;}
.xcb_c00223{left:505.333333pt;}
.xc7_c00223{left:506.666667pt;}
.x8f_c00223{left:508.960000pt;}
.xf_c00223{left:513.706667pt;}
.xf3_c00223{left:516.000000pt;}
.xf6_c00223{left:517.333333pt;}
.x86_c00223{left:518.293333pt;}
.x5f_c00223{left:520.960000pt;}
.x21_c00223{left:524.000000pt;}
.x9d_c00223{left:525.333333pt;}
.x101_c00223{left:526.666667pt;}
.xef_c00223{left:528.373333pt;}
.x3a_c00223{left:529.706667pt;}
.xf4_c00223{left:530.666667pt;}
.xf7_c00223{left:533.333333pt;}
.xad_c00223{left:534.293333pt;}
.x22_c00223{left:536.000000pt;}
.x2e_c00223{left:537.333333pt;}
.x10_c00223{left:538.666667pt;}
.x7c_c00223{left:541.333333pt;}
.xd4_c00223{left:542.666667pt;}
.xcc_c00223{left:544.000000pt;}
.xa9_c00223{left:545.333333pt;}
.xa4_c00223{left:547.040000pt;}
.x90_c00223{left:548.960000pt;}
.x7d_c00223{left:550.666667pt;}
.x3b_c00223{left:552.000000pt;}
.x46_c00223{left:554.293333pt;}
.x2f_c00223{left:557.333333pt;}
.xf0_c00223{left:561.333333pt;}
.x50_c00223{left:562.666667pt;}
.x60_c00223{left:565.333333pt;}
.x6a_c00223{left:566.666667pt;}
.xdf_c00223{left:568.373333pt;}
.xcd_c00223{left:575.040000pt;}
.xd1_c00223{left:576.000000pt;}
.x11_c00223{left:578.666667pt;}
.xb8_c00223{left:582.293333pt;}
.x23_c00223{left:584.373333pt;}
.xd5_c00223{left:585.333333pt;}
.x51_c00223{left:586.666667pt;}
.x5a_c00223{left:587.626667pt;}
.x6b_c00223{left:589.706667pt;}
.xc2_c00223{left:594.666667pt;}
.x61_c00223{left:595.626667pt;}
.xe4_c00223{left:597.706667pt;}
.x3c_c00223{left:600.000000pt;}
.x47_c00223{left:600.960000pt;}
.xc8_c00223{left:602.666667pt;}
.x91_c00223{left:604.373333pt;}
.xf8_c00223{left:609.333333pt;}
.x30_c00223{left:610.293333pt;}
.x5b_c00223{left:612.000000pt;}
.x92_c00223{left:613.333333pt;}
.xae_c00223{left:614.293333pt;}
.x7e_c00223{left:615.426667pt;}
.x52_c00223{left:617.333333pt;}
.x24_c00223{left:618.293333pt;}
.x6c_c00223{left:621.333333pt;}
.x12_c00223{left:623.040000pt;}
.xfe_c00223{left:625.706667pt;}
.xf1_c00223{left:626.666667pt;}
.xea_c00223{left:627.626667pt;}
.xce_c00223{left:629.333333pt;}
.xf5_c00223{left:631.040000pt;}
.xc3_c00223{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c382216614ffec63663791b0.woff2')format("woff");}.ff1_c00224{font-family:ff1_c00224;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7c_c00224{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.ma6_c00224{transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);}
.m32_c00224{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m4b_c00224{transform:matrix(0.366181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366181,0.000000,0.000000,0.250000,0,0);}
.m36_c00224{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m0_c00224{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.mb_c00224{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m78_c00224{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00224{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m4c_c00224{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m3b_c00224{transform:matrix(0.382780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382780,0.000000,0.000000,0.250000,0,0);}
.m25_c00224{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m3c_c00224{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m1d_c00224{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m3a_c00224{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m9_c00224{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m43_c00224{transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);}
.m67_c00224{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m26_c00224{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m12_c00224{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m3e_c00224{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m2d_c00224{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m97_c00224{transform:matrix(0.418382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418382,0.000000,0.000000,0.250000,0,0);}
.m6_c00224{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m62_c00224{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m76_c00224{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m8e_c00224{transform:matrix(0.421324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421324,0.000000,0.000000,0.250000,0,0);}
.m47_c00224{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m65_c00224{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m35_c00224{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.m39_c00224{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.m41_c00224{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m18_c00224{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m5b_c00224{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m48_c00224{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m2f_c00224{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m80_c00224{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m3d_c00224{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m77_c00224{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_c00224{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.m4a_c00224{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m6b_c00224{transform:matrix(0.443109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443109,0.000000,0.000000,0.250000,0,0);}
.m4f_c00224{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m64_c00224{transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);}
.m31_c00224{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m46_c00224{transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);}
.m3f_c00224{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m15_c00224{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m81_c00224{transform:matrix(0.449339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449339,0.000000,0.000000,0.250000,0,0);}
.m42_c00224{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m34_c00224{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m45_c00224{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m51_c00224{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m7d_c00224{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.ma3_c00224{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.m9f_c00224{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);}
.m5c_c00224{transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);}
.m6e_c00224{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m33_c00224{transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);}
.m75_c00224{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.m8f_c00224{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.m93_c00224{transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);}
.m63_c00224{transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);}
.m96_c00224{transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);}
.m37_c00224{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.m44_c00224{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m5d_c00224{transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);}
.m52_c00224{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m1a_c00224{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m17_c00224{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m7a_c00224{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m2e_c00224{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m71_c00224{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m5a_c00224{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m99_c00224{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.m23_c00224{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_c00224{transform:matrix(0.505609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505609,0.000000,0.000000,0.250000,0,0);}
.m2c_c00224{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.ma7_c00224{transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);}
.ma1_c00224{transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);}
.m2a_c00224{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mf_c00224{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m29_c00224{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m10_c00224{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m20_c00224{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m9e_c00224{transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);}
.m4_c00224{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m9c_c00224{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m61_c00224{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.m60_c00224{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m24_c00224{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m1e_c00224{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m28_c00224{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m1b_c00224{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.ma_c00224{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m30_c00224{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m53_c00224{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m1f_c00224{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m2_c00224{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m5_c00224{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m8d_c00224{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m16_c00224{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m50_c00224{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m86_c00224{transform:matrix(0.552083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552083,0.000000,0.000000,0.250000,0,0);}
.m1c_c00224{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mc_c00224{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m19_c00224{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m8_c00224{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m74_c00224{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m9b_c00224{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m4d_c00224{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m22_c00224{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m38_c00224{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m95_c00224{transform:matrix(0.572115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572115,0.000000,0.000000,0.250000,0,0);}
.m84_c00224{transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);}
.m11_c00224{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m14_c00224{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m9a_c00224{transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);}
.m85_c00224{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m56_c00224{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m21_c00224{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.md_c00224{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m54_c00224{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m69_c00224{transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);}
.m88_c00224{transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);}
.m68_c00224{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m13_c00224{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m1_c00224{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.m66_c00224{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m27_c00224{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m6d_c00224{transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);}
.m58_c00224{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m59_c00224{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_c00224{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.ma4_c00224{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.m72_c00224{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m89_c00224{transform:matrix(0.657828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657828,0.000000,0.000000,0.250000,0,0);}
.m79_c00224{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m57_c00224{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m6f_c00224{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.m70_c00224{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m55_c00224{transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);}
.m6a_c00224{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.m6c_c00224{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.ma5_c00224{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m7f_c00224{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.ma0_c00224{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m5f_c00224{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m7e_c00224{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m7b_c00224{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m9d_c00224{transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);}
.m94_c00224{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.m98_c00224{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.m73_c00224{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.me_c00224{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m90_c00224{transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);}
.m7_c00224{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m8b_c00224{transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);}
.m83_c00224{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m91_c00224{transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);}
.m92_c00224{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.ma2_c00224{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.m82_c00224{transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);}
.m8a_c00224{transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);}
.m87_c00224{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m4e_c00224{transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);}
.m49_c00224{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m2b_c00224{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00224{vertical-align:-6.000000px;}
.v0_c00224{vertical-align:0.000000px;}
.v2_c00224{vertical-align:6.000000px;}
.ls1_c00224{letter-spacing:0.000000px;}
.ls0_c00224{letter-spacing:51.359972px;}
.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:-5.806057px;}
.ws1d_c00224{word-spacing:0.000000px;}
.ws9_c00224{word-spacing:11.609047px;}
.wsb_c00224{word-spacing:13.611988px;}
.ws1c_c00224{word-spacing:15.107856px;}
.ws5_c00224{word-spacing:15.614929px;}
.wse_c00224{word-spacing:17.262919px;}
.ws17_c00224{word-spacing:18.138913px;}
.ws19_c00224{word-spacing:19.417982px;}
.ws11_c00224{word-spacing:19.620812px;}
.ws16_c00224{word-spacing:21.623753px;}
.wsa_c00224{word-spacing:23.728109px;}
.ws1b_c00224{word-spacing:23.767013px;}
.ws4_c00224{word-spacing:24.638400px;}
.wsd_c00224{word-spacing:27.001094px;}
.ws15_c00224{word-spacing:30.234255px;}
.ws1a_c00224{word-spacing:30.607622px;}
.ws7_c00224{word-spacing:31.838295px;}
.ws13_c00224{word-spacing:33.467416px;}
.ws12_c00224{word-spacing:33.638400px;}
.ws3_c00224{word-spacing:36.857815px;}
.wsf_c00224{word-spacing:38.324009px;}
.ws10_c00224{word-spacing:38.705522px;}
.ws18_c00224{word-spacing:39.052735px;}
.ws2_c00224{word-spacing:39.846793px;}
.ws14_c00224{word-spacing:39.933737px;}
.ws8_c00224{word-spacing:41.223200px;}
.wsc_c00224{word-spacing:43.405892px;}
.ws1_c00224{word-spacing:47.719225px;}
.ws6_c00224{word-spacing:64.250880px;}
._4_c00224{width:21.566068px;}
._5_c00224{width:23.569009px;}
._9_c00224{width:24.975266px;}
._7_c00224{width:27.574892px;}
._3_c00224{width:29.577833px;}
._8_c00224{width:31.721093px;}
._6_c00224{width:38.570880px;}
._1_c00224{width:44.570880px;}
._0_c00224{width:51.359972px;}
._2_c00224{width:53.542665px;}
.fc0_c00224{color:transparent;}
.fs6_c00224{font-size:3.420000px;}
.fs9_c00224{font-size:11.880000px;}
.fs8_c00224{font-size:13.620000px;}
.fs5_c00224{font-size:18.720000px;}
.fs1_c00224{font-size:20.400000px;}
.fs3_c00224{font-size:25.500000px;}
.fs2_c00224{font-size:28.920000px;}
.fs0_c00224{font-size:32.340000px;}
.fs4_c00224{font-size:35.700000px;}
.fs7_c00224{font-size:39.120000px;}
.y0_c00224{bottom:0.000000px;}
.y30_c00224{bottom:253.245000px;}
.y33_c00224{bottom:254.325000px;}
.y31_c00224{bottom:255.405000px;}
.y32_c00224{bottom:256.470000px;}
.y2e_c00224{bottom:256.905000px;}
.y2f_c00224{bottom:256.920000px;}
.y2d_c00224{bottom:273.180000px;}
.y2a_c00224{bottom:274.245000px;}
.y2c_c00224{bottom:275.325000px;}
.y2b_c00224{bottom:276.420000px;}
.y27_c00224{bottom:293.745000px;}
.y29_c00224{bottom:295.905000px;}
.y28_c00224{bottom:295.920000px;}
.y26_c00224{bottom:317.325000px;}
.y25_c00224{bottom:318.405000px;}
.y23_c00224{bottom:336.825000px;}
.y24_c00224{bottom:337.050000px;}
.y21_c00224{bottom:337.905000px;}
.y22_c00224{bottom:340.050000px;}
.y20_c00224{bottom:360.825000px;}
.y1f_c00224{bottom:361.245000px;}
.y1d_c00224{bottom:395.325000px;}
.y1e_c00224{bottom:395.745000px;}
.y1c_c00224{bottom:412.905000px;}
.y1b_c00224{bottom:413.745000px;}
.y1a_c00224{bottom:415.245000px;}
.y18_c00224{bottom:417.405000px;}
.y19_c00224{bottom:417.420000px;}
.y15_c00224{bottom:434.745000px;}
.y17_c00224{bottom:434.970000px;}
.y16_c00224{bottom:436.905000px;}
.y12_c00224{bottom:453.405000px;}
.y13_c00224{bottom:454.245000px;}
.y14_c00224{bottom:455.130000px;}
.y10_c00224{bottom:455.970000px;}
.yf_c00224{bottom:456.405000px;}
.y11_c00224{bottom:456.630000px;}
.yc_c00224{bottom:473.745000px;}
.ye_c00224{bottom:475.905000px;}
.yd_c00224{bottom:476.970000px;}
.y9_c00224{bottom:494.745000px;}
.y8_c00224{bottom:495.405000px;}
.yb_c00224{bottom:495.825000px;}
.ya_c00224{bottom:496.470000px;}
.y7_c00224{bottom:496.905000px;}
.y4_c00224{bottom:512.970000px;}
.y5_c00224{bottom:514.245000px;}
.y6_c00224{bottom:515.130000px;}
.y3_c00224{bottom:516.405000px;}
.ya5_c00224{bottom:548.130000px;}
.ya6_c00224{bottom:549.195000px;}
.ya4_c00224{bottom:559.050000px;}
.ya1_c00224{bottom:561.630000px;}
.ya2_c00224{bottom:562.275000px;}
.ya0_c00224{bottom:562.695000px;}
.ya3_c00224{bottom:564.420000px;}
.y9b_c00224{bottom:574.695000px;}
.y9c_c00224{bottom:575.130000px;}
.y9d_c00224{bottom:575.775000px;}
.y9e_c00224{bottom:576.195000px;}
.y9f_c00224{bottom:576.630000px;}
.y99_c00224{bottom:589.695000px;}
.y98_c00224{bottom:590.130000px;}
.y9a_c00224{bottom:591.195000px;}
.y97_c00224{bottom:602.550000px;}
.y95_c00224{bottom:603.630000px;}
.y96_c00224{bottom:604.275000px;}
.y94_c00224{bottom:617.130000px;}
.y93_c00224{bottom:617.775000px;}
.y92_c00224{bottom:618.195000px;}
.y8f_c00224{bottom:630.630000px;}
.y90_c00224{bottom:631.695000px;}
.y8e_c00224{bottom:632.130000px;}
.y91_c00224{bottom:633.195000px;}
.y8c_c00224{bottom:645.195000px;}
.y8d_c00224{bottom:645.630000px;}
.y8b_c00224{bottom:646.695000px;}
.y8a_c00224{bottom:658.695000px;}
.y89_c00224{bottom:659.130000px;}
.y88_c00224{bottom:660.195000px;}
.y84_c00224{bottom:671.550000px;}
.y86_c00224{bottom:672.630000px;}
.y85_c00224{bottom:673.695000px;}
.y87_c00224{bottom:674.130000px;}
.y81_c00224{bottom:686.130000px;}
.y82_c00224{bottom:686.550000px;}
.y83_c00224{bottom:687.195000px;}
.y7d_c00224{bottom:699.630000px;}
.y7c_c00224{bottom:700.695000px;}
.y7f_c00224{bottom:701.130000px;}
.y80_c00224{bottom:702.195000px;}
.y7e_c00224{bottom:702.420000px;}
.y77_c00224{bottom:713.130000px;}
.y7a_c00224{bottom:714.630000px;}
.y78_c00224{bottom:715.275000px;}
.y79_c00224{bottom:715.695000px;}
.y7b_c00224{bottom:715.920000px;}
.y73_c00224{bottom:727.050000px;}
.y74_c00224{bottom:728.130000px;}
.y76_c00224{bottom:729.195000px;}
.y75_c00224{bottom:729.420000px;}
.y6e_c00224{bottom:740.130000px;}
.y6f_c00224{bottom:741.630000px;}
.y70_c00224{bottom:742.695000px;}
.y71_c00224{bottom:743.130000px;}
.y72_c00224{bottom:744.195000px;}
.y6d_c00224{bottom:756.195000px;}
.y6b_c00224{bottom:769.695000px;}
.y6c_c00224{bottom:771.195000px;}
.y68_c00224{bottom:782.775000px;}
.y67_c00224{bottom:783.195000px;}
.y66_c00224{bottom:783.630000px;}
.y6a_c00224{bottom:784.695000px;}
.y69_c00224{bottom:784.920000px;}
.y64_c00224{bottom:797.130000px;}
.y63_c00224{bottom:798.195000px;}
.y65_c00224{bottom:798.420000px;}
.y61_c00224{bottom:810.630000px;}
.y62_c00224{bottom:811.695000px;}
.y60_c00224{bottom:825.195000px;}
.y5f_c00224{bottom:825.630000px;}
.y5e_c00224{bottom:826.695000px;}
.y5b_c00224{bottom:838.050000px;}
.y5a_c00224{bottom:838.695000px;}
.y5c_c00224{bottom:839.130000px;}
.y5d_c00224{bottom:840.195000px;}
.y59_c00224{bottom:852.630000px;}
.y58_c00224{bottom:853.695000px;}
.y55_c00224{bottom:865.695000px;}
.y56_c00224{bottom:866.130000px;}
.y57_c00224{bottom:867.195000px;}
.y53_c00224{bottom:879.630000px;}
.y52_c00224{bottom:880.695000px;}
.y54_c00224{bottom:882.195000px;}
.y51_c00224{bottom:893.130000px;}
.y50_c00224{bottom:894.195000px;}
.y4f_c00224{bottom:908.130000px;}
.y4e_c00224{bottom:909.195000px;}
.y4d_c00224{bottom:921.630000px;}
.y4c_c00224{bottom:922.695000px;}
.y49_c00224{bottom:934.050000px;}
.y48_c00224{bottom:935.130000px;}
.y4b_c00224{bottom:936.195000px;}
.y4a_c00224{bottom:936.630000px;}
.y45_c00224{bottom:948.630000px;}
.y44_c00224{bottom:949.695000px;}
.y46_c00224{bottom:950.130000px;}
.y47_c00224{bottom:951.195000px;}
.y42_c00224{bottom:963.195000px;}
.y43_c00224{bottom:963.630000px;}
.y40_c00224{bottom:981.195000px;}
.y41_c00224{bottom:982.695000px;}
.y3d_c00224{bottom:993.630000px;}
.y3f_c00224{bottom:995.130000px;}
.y3e_c00224{bottom:996.195000px;}
.y3c_c00224{bottom:1009.695000px;}
.y38_c00224{bottom:1024.905000px;}
.y39_c00224{bottom:1025.325000px;}
.y3b_c00224{bottom:1025.970000px;}
.y3a_c00224{bottom:1027.050000px;}
.y37_c00224{bottom:1039.905000px;}
.y36_c00224{bottom:1042.050000px;}
.y35_c00224{bottom:1063.050000px;}
.y34_c00224{bottom:1066.050000px;}
.y1_c00224{bottom:1098.825000px;}
.y2_c00224{bottom:1102.050000px;}
.h7_c00224{height:4.206533px;}
.hb_c00224{height:14.612168px;}
.h9_c00224{height:16.752334px;}
.ha_c00224{height:22.752334px;}
.h6_c00224{height:23.025234px;}
.h2_c00224{height:25.091602px;}
.hc_c00224{height:29.025234px;}
.h4_c00224{height:31.364502px;}
.h3_c00224{height:35.571035px;}
.h1_c00224{height:39.777568px;}
.h5_c00224{height:43.910303px;}
.h8_c00224{height:48.116836px;}
.h0_c00224{height:1335.000000px;}
.w0_c00224{width:880.500000px;}
.x0_c00224{left:0.000000px;}
.x3_c00224{left:153.000000px;}
.x3a_c00224{left:154.500000px;}
.x47_c00224{left:167.580000px;}
.x25_c00224{left:169.500000px;}
.x4e_c00224{left:171.420000px;}
.x4_c00224{left:191.580000px;}
.x2f_c00224{left:195.000000px;}
.x12_c00224{left:198.000000px;}
.x26_c00224{left:203.580000px;}
.x3b_c00224{left:207.000000px;}
.x1f_c00224{left:208.920000px;}
.x4f_c00224{left:210.420000px;}
.x66_c00224{left:211.500000px;}
.x86_c00224{left:212.580000px;}
.x30_c00224{left:214.500000px;}
.x48_c00224{left:220.920000px;}
.x8f_c00224{left:226.920000px;}
.x5_c00224{left:228.420000px;}
.x6c_c00224{left:233.580000px;}
.x87_c00224{left:235.500000px;}
.x13_c00224{left:238.920000px;}
.x31_c00224{left:240.000000px;}
.x9c_c00224{left:241.920000px;}
.x20_c00224{left:244.500000px;}
.x40_c00224{left:249.000000px;}
.x8d_c00224{left:253.500000px;}
.x6_c00224{left:255.000000px;}
.x21_c00224{left:258.420000px;}
.xa1_c00224{left:259.500000px;}
.x32_c00224{left:261.000000px;}
.x55_c00224{left:262.500000px;}
.x90_c00224{left:264.000000px;}
.x5e_c00224{left:265.920000px;}
.x8e_c00224{left:267.000000px;}
.x27_c00224{left:268.080000px;}
.x50_c00224{left:270.000000px;}
.x92_c00224{left:271.500000px;}
.x93_c00224{left:275.580000px;}
.x14_c00224{left:277.920000px;}
.x78_c00224{left:279.000000px;}
.x7c_c00224{left:280.920000px;}
.x95_c00224{left:282.420000px;}
.x52_c00224{left:283.500000px;}
.x88_c00224{left:285.000000px;}
.x9b_c00224{left:286.500000px;}
.x51_c00224{left:291.000000px;}
.x5f_c00224{left:292.500000px;}
.x7_c00224{left:295.500000px;}
.x7f_c00224{left:296.580000px;}
.x7d_c00224{left:298.500000px;}
.x28_c00224{left:301.500000px;}
.x91_c00224{left:303.000000px;}
.x9e_c00224{left:304.920000px;}
.x15_c00224{left:306.000000px;}
.x22_c00224{left:313.080000px;}
.x9f_c00224{left:316.920000px;}
.x33_c00224{left:318.000000px;}
.x56_c00224{left:322.080000px;}
.x60_c00224{left:324.000000px;}
.x49_c00224{left:328.920000px;}
.x41_c00224{left:331.080000px;}
.x3c_c00224{left:335.580000px;}
.x23_c00224{left:342.000000px;}
.x53_c00224{left:344.775000px;}
.x4a_c00224{left:364.500000px;}
.x8_c00224{left:367.500000px;}
.x24_c00224{left:373.920000px;}
.x16_c00224{left:378.000000px;}
.x6d_c00224{left:379.920000px;}
.x67_c00224{left:382.500000px;}
.x80_c00224{left:384.000000px;}
.x54_c00224{left:385.500000px;}
.x81_c00224{left:388.500000px;}
.x96_c00224{left:390.000000px;}
.x75_c00224{left:391.500000px;}
.x9_c00224{left:392.580000px;}
.x57_c00224{left:396.000000px;}
.x2_c00224{left:397.500000px;}
.x34_c00224{left:402.420000px;}
.x3d_c00224{left:405.420000px;}
.x17_c00224{left:406.500000px;}
.x5c_c00224{left:409.500000px;}
.x64_c00224{left:410.580000px;}
.x42_c00224{left:414.420000px;}
.x6e_c00224{left:420.000000px;}
.x79_c00224{left:423.000000px;}
.x58_c00224{left:424.500000px;}
.x89_c00224{left:426.000000px;}
.x61_c00224{left:428.580000px;}
.x97_c00224{left:430.500000px;}
.xa_c00224{left:438.000000px;}
.x4b_c00224{left:439.500000px;}
.x29_c00224{left:446.580000px;}
.x18_c00224{left:451.500000px;}
.x5d_c00224{left:454.920000px;}
.x65_c00224{left:456.000000px;}
.x59_c00224{left:459.000000px;}
.x6f_c00224{left:460.920000px;}
.x62_c00224{left:463.500000px;}
.x7a_c00224{left:465.000000px;}
.x94_c00224{left:466.920000px;}
.x2a_c00224{left:468.420000px;}
.xa0_c00224{left:471.000000px;}
.x35_c00224{left:472.920000px;}
.x8c_c00224{left:474.000000px;}
.x3e_c00224{left:475.500000px;}
.xb_c00224{left:478.500000px;}
.x43_c00224{left:490.080000px;}
.xc_c00224{left:496.500000px;}
.x70_c00224{left:501.000000px;}
.x36_c00224{left:502.920000px;}
.x68_c00224{left:504.000000px;}
.x82_c00224{left:505.500000px;}
.x9d_c00224{left:507.000000px;}
.x19_c00224{left:510.000000px;}
.x44_c00224{left:517.080000px;}
.x63_c00224{left:526.920000px;}
.xd_c00224{left:529.920000px;}
.x2b_c00224{left:531.000000px;}
.x5a_c00224{left:532.920000px;}
.x7b_c00224{left:535.500000px;}
.x71_c00224{left:537.000000px;}
.x3f_c00224{left:538.275000px;}
.x4c_c00224{left:541.080000px;}
.x98_c00224{left:543.000000px;}
.x8a_c00224{left:546.000000px;}
.x1a_c00224{left:553.920000px;}
.xe_c00224{left:556.080000px;}
.x2c_c00224{left:560.580000px;}
.x72_c00224{left:567.000000px;}
.x5b_c00224{left:571.080000px;}
.x76_c00224{left:573.000000px;}
.x8b_c00224{left:574.500000px;}
.x69_c00224{left:576.000000px;}
.x83_c00224{left:577.500000px;}
.x37_c00224{left:578.580000px;}
.x45_c00224{left:582.420000px;}
.x4d_c00224{left:590.580000px;}
.x1b_c00224{left:592.920000px;}
.x46_c00224{left:601.080000px;}
.x73_c00224{left:609.000000px;}
.x38_c00224{left:610.500000px;}
.x6a_c00224{left:612.000000px;}
.x7e_c00224{left:613.500000px;}
.xf_c00224{left:615.000000px;}
.xa2_c00224{left:616.920000px;}
.x84_c00224{left:618.000000px;}
.x9a_c00224{left:619.500000px;}
.x1c_c00224{left:621.420000px;}
.x2d_c00224{left:634.500000px;}
.x74_c00224{left:643.500000px;}
.x77_c00224{left:649.500000px;}
.x10_c00224{left:651.000000px;}
.x6b_c00224{left:652.500000px;}
.x85_c00224{left:654.000000px;}
.x99_c00224{left:655.500000px;}
.x1d_c00224{left:657.420000px;}
.x11_c00224{left:663.000000px;}
.x39_c00224{left:689.580000px;}
.x1_c00224{left:705.855000px;}
.x1e_c00224{left:709.920000px;}
.x2e_c00224{left:711.000000px;}
@media print{
.v1_c00224{vertical-align:-5.333333pt;}
.v0_c00224{vertical-align:0.000000pt;}
.v2_c00224{vertical-align:5.333333pt;}
.ls1_c00224{letter-spacing:0.000000pt;}
.ls0_c00224{letter-spacing:45.653309pt;}
.ws0_c00224{word-spacing:-5.160940pt;}
.ws1d_c00224{word-spacing:0.000000pt;}
.ws9_c00224{word-spacing:10.319153pt;}
.wsb_c00224{word-spacing:12.099545pt;}
.ws1c_c00224{word-spacing:13.429205pt;}
.ws5_c00224{word-spacing:13.879937pt;}
.wse_c00224{word-spacing:15.344817pt;}
.ws17_c00224{word-spacing:16.123479pt;}
.ws19_c00224{word-spacing:17.260429pt;}
.ws11_c00224{word-spacing:17.440722pt;}
.ws16_c00224{word-spacing:19.221114pt;}
.wsa_c00224{word-spacing:21.091652pt;}
.ws1b_c00224{word-spacing:21.126233pt;}
.ws4_c00224{word-spacing:21.900800pt;}
.wsd_c00224{word-spacing:24.000973pt;}
.ws15_c00224{word-spacing:26.874893pt;}
.ws1a_c00224{word-spacing:27.206775pt;}
.ws7_c00224{word-spacing:28.300707pt;}
.ws13_c00224{word-spacing:29.748814pt;}
.ws12_c00224{word-spacing:29.900800pt;}
.ws3_c00224{word-spacing:32.762503pt;}
.wsf_c00224{word-spacing:34.065786pt;}
.ws10_c00224{word-spacing:34.404908pt;}
.ws18_c00224{word-spacing:34.713542pt;}
.ws2_c00224{word-spacing:35.419372pt;}
.ws14_c00224{word-spacing:35.496655pt;}
.ws8_c00224{word-spacing:36.642844pt;}
.wsc_c00224{word-spacing:38.583015pt;}
.ws1_c00224{word-spacing:42.417089pt;}
.ws6_c00224{word-spacing:57.111893pt;}
._4_c00224{width:19.169838pt;}
._5_c00224{width:20.950231pt;}
._9_c00224{width:22.200236pt;}
._7_c00224{width:24.511015pt;}
._3_c00224{width:26.291407pt;}
._8_c00224{width:28.196527pt;}
._6_c00224{width:34.285227pt;}
._1_c00224{width:39.618560pt;}
._0_c00224{width:45.653309pt;}
._2_c00224{width:47.593480pt;}
.fs6_c00224{font-size:3.040000pt;}
.fs9_c00224{font-size:10.560000pt;}
.fs8_c00224{font-size:12.106667pt;}
.fs5_c00224{font-size:16.640000pt;}
.fs1_c00224{font-size:18.133333pt;}
.fs3_c00224{font-size:22.666667pt;}
.fs2_c00224{font-size:25.706667pt;}
.fs0_c00224{font-size:28.746667pt;}
.fs4_c00224{font-size:31.733333pt;}
.fs7_c00224{font-size:34.773333pt;}
.y0_c00224{bottom:0.000000pt;}
.y30_c00224{bottom:225.106667pt;}
.y33_c00224{bottom:226.066667pt;}
.y31_c00224{bottom:227.026667pt;}
.y32_c00224{bottom:227.973333pt;}
.y2e_c00224{bottom:228.360000pt;}
.y2f_c00224{bottom:228.373333pt;}
.y2d_c00224{bottom:242.826667pt;}
.y2a_c00224{bottom:243.773333pt;}
.y2c_c00224{bottom:244.733333pt;}
.y2b_c00224{bottom:245.706667pt;}
.y27_c00224{bottom:261.106667pt;}
.y29_c00224{bottom:263.026667pt;}
.y28_c00224{bottom:263.040000pt;}
.y26_c00224{bottom:282.066667pt;}
.y25_c00224{bottom:283.026667pt;}
.y23_c00224{bottom:299.400000pt;}
.y24_c00224{bottom:299.600000pt;}
.y21_c00224{bottom:300.360000pt;}
.y22_c00224{bottom:302.266667pt;}
.y20_c00224{bottom:320.733333pt;}
.y1f_c00224{bottom:321.106667pt;}
.y1d_c00224{bottom:351.400000pt;}
.y1e_c00224{bottom:351.773333pt;}
.y1c_c00224{bottom:367.026667pt;}
.y1b_c00224{bottom:367.773333pt;}
.y1a_c00224{bottom:369.106667pt;}
.y18_c00224{bottom:371.026667pt;}
.y19_c00224{bottom:371.040000pt;}
.y15_c00224{bottom:386.440000pt;}
.y17_c00224{bottom:386.640000pt;}
.y16_c00224{bottom:388.360000pt;}
.y12_c00224{bottom:403.026667pt;}
.y13_c00224{bottom:403.773333pt;}
.y14_c00224{bottom:404.560000pt;}
.y10_c00224{bottom:405.306667pt;}
.yf_c00224{bottom:405.693333pt;}
.y11_c00224{bottom:405.893333pt;}
.yc_c00224{bottom:421.106667pt;}
.ye_c00224{bottom:423.026667pt;}
.yd_c00224{bottom:423.973333pt;}
.y9_c00224{bottom:439.773333pt;}
.y8_c00224{bottom:440.360000pt;}
.yb_c00224{bottom:440.733333pt;}
.ya_c00224{bottom:441.306667pt;}
.y7_c00224{bottom:441.693333pt;}
.y4_c00224{bottom:455.973333pt;}
.y5_c00224{bottom:457.106667pt;}
.y6_c00224{bottom:457.893333pt;}
.y3_c00224{bottom:459.026667pt;}
.ya5_c00224{bottom:487.226667pt;}
.ya6_c00224{bottom:488.173333pt;}
.ya4_c00224{bottom:496.933333pt;}
.ya1_c00224{bottom:499.226667pt;}
.ya2_c00224{bottom:499.800000pt;}
.ya0_c00224{bottom:500.173333pt;}
.ya3_c00224{bottom:501.706667pt;}
.y9b_c00224{bottom:510.840000pt;}
.y9c_c00224{bottom:511.226667pt;}
.y9d_c00224{bottom:511.800000pt;}
.y9e_c00224{bottom:512.173333pt;}
.y9f_c00224{bottom:512.560000pt;}
.y99_c00224{bottom:524.173333pt;}
.y98_c00224{bottom:524.560000pt;}
.y9a_c00224{bottom:525.506667pt;}
.y97_c00224{bottom:535.600000pt;}
.y95_c00224{bottom:536.560000pt;}
.y96_c00224{bottom:537.133333pt;}
.y94_c00224{bottom:548.560000pt;}
.y93_c00224{bottom:549.133333pt;}
.y92_c00224{bottom:549.506667pt;}
.y8f_c00224{bottom:560.560000pt;}
.y90_c00224{bottom:561.506667pt;}
.y8e_c00224{bottom:561.893333pt;}
.y91_c00224{bottom:562.840000pt;}
.y8c_c00224{bottom:573.506667pt;}
.y8d_c00224{bottom:573.893333pt;}
.y8b_c00224{bottom:574.840000pt;}
.y8a_c00224{bottom:585.506667pt;}
.y89_c00224{bottom:585.893333pt;}
.y88_c00224{bottom:586.840000pt;}
.y84_c00224{bottom:596.933333pt;}
.y86_c00224{bottom:597.893333pt;}
.y85_c00224{bottom:598.840000pt;}
.y87_c00224{bottom:599.226667pt;}
.y81_c00224{bottom:609.893333pt;}
.y82_c00224{bottom:610.266667pt;}
.y83_c00224{bottom:610.840000pt;}
.y7d_c00224{bottom:621.893333pt;}
.y7c_c00224{bottom:622.840000pt;}
.y7f_c00224{bottom:623.226667pt;}
.y80_c00224{bottom:624.173333pt;}
.y7e_c00224{bottom:624.373333pt;}
.y77_c00224{bottom:633.893333pt;}
.y7a_c00224{bottom:635.226667pt;}
.y78_c00224{bottom:635.800000pt;}
.y79_c00224{bottom:636.173333pt;}
.y7b_c00224{bottom:636.373333pt;}
.y73_c00224{bottom:646.266667pt;}
.y74_c00224{bottom:647.226667pt;}
.y76_c00224{bottom:648.173333pt;}
.y75_c00224{bottom:648.373333pt;}
.y6e_c00224{bottom:657.893333pt;}
.y6f_c00224{bottom:659.226667pt;}
.y70_c00224{bottom:660.173333pt;}
.y71_c00224{bottom:660.560000pt;}
.y72_c00224{bottom:661.506667pt;}
.y6d_c00224{bottom:672.173333pt;}
.y6b_c00224{bottom:684.173333pt;}
.y6c_c00224{bottom:685.506667pt;}
.y68_c00224{bottom:695.800000pt;}
.y67_c00224{bottom:696.173333pt;}
.y66_c00224{bottom:696.560000pt;}
.y6a_c00224{bottom:697.506667pt;}
.y69_c00224{bottom:697.706667pt;}
.y64_c00224{bottom:708.560000pt;}
.y63_c00224{bottom:709.506667pt;}
.y65_c00224{bottom:709.706667pt;}
.y61_c00224{bottom:720.560000pt;}
.y62_c00224{bottom:721.506667pt;}
.y60_c00224{bottom:733.506667pt;}
.y5f_c00224{bottom:733.893333pt;}
.y5e_c00224{bottom:734.840000pt;}
.y5b_c00224{bottom:744.933333pt;}
.y5a_c00224{bottom:745.506667pt;}
.y5c_c00224{bottom:745.893333pt;}
.y5d_c00224{bottom:746.840000pt;}
.y59_c00224{bottom:757.893333pt;}
.y58_c00224{bottom:758.840000pt;}
.y55_c00224{bottom:769.506667pt;}
.y56_c00224{bottom:769.893333pt;}
.y57_c00224{bottom:770.840000pt;}
.y53_c00224{bottom:781.893333pt;}
.y52_c00224{bottom:782.840000pt;}
.y54_c00224{bottom:784.173333pt;}
.y51_c00224{bottom:793.893333pt;}
.y50_c00224{bottom:794.840000pt;}
.y4f_c00224{bottom:807.226667pt;}
.y4e_c00224{bottom:808.173333pt;}
.y4d_c00224{bottom:819.226667pt;}
.y4c_c00224{bottom:820.173333pt;}
.y49_c00224{bottom:830.266667pt;}
.y48_c00224{bottom:831.226667pt;}
.y4b_c00224{bottom:832.173333pt;}
.y4a_c00224{bottom:832.560000pt;}
.y45_c00224{bottom:843.226667pt;}
.y44_c00224{bottom:844.173333pt;}
.y46_c00224{bottom:844.560000pt;}
.y47_c00224{bottom:845.506667pt;}
.y42_c00224{bottom:856.173333pt;}
.y43_c00224{bottom:856.560000pt;}
.y40_c00224{bottom:872.173333pt;}
.y41_c00224{bottom:873.506667pt;}
.y3d_c00224{bottom:883.226667pt;}
.y3f_c00224{bottom:884.560000pt;}
.y3e_c00224{bottom:885.506667pt;}
.y3c_c00224{bottom:897.506667pt;}
.y38_c00224{bottom:911.026667pt;}
.y39_c00224{bottom:911.400000pt;}
.y3b_c00224{bottom:911.973333pt;}
.y3a_c00224{bottom:912.933333pt;}
.y37_c00224{bottom:924.360000pt;}
.y36_c00224{bottom:926.266667pt;}
.y35_c00224{bottom:944.933333pt;}
.y34_c00224{bottom:947.600000pt;}
.y1_c00224{bottom:976.733333pt;}
.y2_c00224{bottom:979.600000pt;}
.h7_c00224{height:3.739141pt;}
.hb_c00224{height:12.988594pt;}
.h9_c00224{height:14.890964pt;}
.ha_c00224{height:20.224297pt;}
.h6_c00224{height:20.466875pt;}
.h2_c00224{height:22.303646pt;}
.hc_c00224{height:25.800208pt;}
.h4_c00224{height:27.879557pt;}
.h3_c00224{height:31.618698pt;}
.h1_c00224{height:35.357839pt;}
.h5_c00224{height:39.031380pt;}
.h8_c00224{height:42.770521pt;}
.h0_c00224{height:1186.666667pt;}
.w0_c00224{width:782.666667pt;}
.x0_c00224{left:0.000000pt;}
.x3_c00224{left:136.000000pt;}
.x3a_c00224{left:137.333333pt;}
.x47_c00224{left:148.960000pt;}
.x25_c00224{left:150.666667pt;}
.x4e_c00224{left:152.373333pt;}
.x4_c00224{left:170.293333pt;}
.x2f_c00224{left:173.333333pt;}
.x12_c00224{left:176.000000pt;}
.x26_c00224{left:180.960000pt;}
.x3b_c00224{left:184.000000pt;}
.x1f_c00224{left:185.706667pt;}
.x4f_c00224{left:187.040000pt;}
.x66_c00224{left:188.000000pt;}
.x86_c00224{left:188.960000pt;}
.x30_c00224{left:190.666667pt;}
.x48_c00224{left:196.373333pt;}
.x8f_c00224{left:201.706667pt;}
.x5_c00224{left:203.040000pt;}
.x6c_c00224{left:207.626667pt;}
.x87_c00224{left:209.333333pt;}
.x13_c00224{left:212.373333pt;}
.x31_c00224{left:213.333333pt;}
.x9c_c00224{left:215.040000pt;}
.x20_c00224{left:217.333333pt;}
.x40_c00224{left:221.333333pt;}
.x8d_c00224{left:225.333333pt;}
.x6_c00224{left:226.666667pt;}
.x21_c00224{left:229.706667pt;}
.xa1_c00224{left:230.666667pt;}
.x32_c00224{left:232.000000pt;}
.x55_c00224{left:233.333333pt;}
.x90_c00224{left:234.666667pt;}
.x5e_c00224{left:236.373333pt;}
.x8e_c00224{left:237.333333pt;}
.x27_c00224{left:238.293333pt;}
.x50_c00224{left:240.000000pt;}
.x92_c00224{left:241.333333pt;}
.x93_c00224{left:244.960000pt;}
.x14_c00224{left:247.040000pt;}
.x78_c00224{left:248.000000pt;}
.x7c_c00224{left:249.706667pt;}
.x95_c00224{left:251.040000pt;}
.x52_c00224{left:252.000000pt;}
.x88_c00224{left:253.333333pt;}
.x9b_c00224{left:254.666667pt;}
.x51_c00224{left:258.666667pt;}
.x5f_c00224{left:260.000000pt;}
.x7_c00224{left:262.666667pt;}
.x7f_c00224{left:263.626667pt;}
.x7d_c00224{left:265.333333pt;}
.x28_c00224{left:268.000000pt;}
.x91_c00224{left:269.333333pt;}
.x9e_c00224{left:271.040000pt;}
.x15_c00224{left:272.000000pt;}
.x22_c00224{left:278.293333pt;}
.x9f_c00224{left:281.706667pt;}
.x33_c00224{left:282.666667pt;}
.x56_c00224{left:286.293333pt;}
.x60_c00224{left:288.000000pt;}
.x49_c00224{left:292.373333pt;}
.x41_c00224{left:294.293333pt;}
.x3c_c00224{left:298.293333pt;}
.x23_c00224{left:304.000000pt;}
.x53_c00224{left:306.466667pt;}
.x4a_c00224{left:324.000000pt;}
.x8_c00224{left:326.666667pt;}
.x24_c00224{left:332.373333pt;}
.x16_c00224{left:336.000000pt;}
.x6d_c00224{left:337.706667pt;}
.x67_c00224{left:340.000000pt;}
.x80_c00224{left:341.333333pt;}
.x54_c00224{left:342.666667pt;}
.x81_c00224{left:345.333333pt;}
.x96_c00224{left:346.666667pt;}
.x75_c00224{left:348.000000pt;}
.x9_c00224{left:348.960000pt;}
.x57_c00224{left:352.000000pt;}
.x2_c00224{left:353.333333pt;}
.x34_c00224{left:357.706667pt;}
.x3d_c00224{left:360.373333pt;}
.x17_c00224{left:361.333333pt;}
.x5c_c00224{left:364.000000pt;}
.x64_c00224{left:364.960000pt;}
.x42_c00224{left:368.373333pt;}
.x6e_c00224{left:373.333333pt;}
.x79_c00224{left:376.000000pt;}
.x58_c00224{left:377.333333pt;}
.x89_c00224{left:378.666667pt;}
.x61_c00224{left:380.960000pt;}
.x97_c00224{left:382.666667pt;}
.xa_c00224{left:389.333333pt;}
.x4b_c00224{left:390.666667pt;}
.x29_c00224{left:396.960000pt;}
.x18_c00224{left:401.333333pt;}
.x5d_c00224{left:404.373333pt;}
.x65_c00224{left:405.333333pt;}
.x59_c00224{left:408.000000pt;}
.x6f_c00224{left:409.706667pt;}
.x62_c00224{left:412.000000pt;}
.x7a_c00224{left:413.333333pt;}
.x94_c00224{left:415.040000pt;}
.x2a_c00224{left:416.373333pt;}
.xa0_c00224{left:418.666667pt;}
.x35_c00224{left:420.373333pt;}
.x8c_c00224{left:421.333333pt;}
.x3e_c00224{left:422.666667pt;}
.xb_c00224{left:425.333333pt;}
.x43_c00224{left:435.626667pt;}
.xc_c00224{left:441.333333pt;}
.x70_c00224{left:445.333333pt;}
.x36_c00224{left:447.040000pt;}
.x68_c00224{left:448.000000pt;}
.x82_c00224{left:449.333333pt;}
.x9d_c00224{left:450.666667pt;}
.x19_c00224{left:453.333333pt;}
.x44_c00224{left:459.626667pt;}
.x63_c00224{left:468.373333pt;}
.xd_c00224{left:471.040000pt;}
.x2b_c00224{left:472.000000pt;}
.x5a_c00224{left:473.706667pt;}
.x7b_c00224{left:476.000000pt;}
.x71_c00224{left:477.333333pt;}
.x3f_c00224{left:478.466667pt;}
.x4c_c00224{left:480.960000pt;}
.x98_c00224{left:482.666667pt;}
.x8a_c00224{left:485.333333pt;}
.x1a_c00224{left:492.373333pt;}
.xe_c00224{left:494.293333pt;}
.x2c_c00224{left:498.293333pt;}
.x72_c00224{left:504.000000pt;}
.x5b_c00224{left:507.626667pt;}
.x76_c00224{left:509.333333pt;}
.x8b_c00224{left:510.666667pt;}
.x69_c00224{left:512.000000pt;}
.x83_c00224{left:513.333333pt;}
.x37_c00224{left:514.293333pt;}
.x45_c00224{left:517.706667pt;}
.x4d_c00224{left:524.960000pt;}
.x1b_c00224{left:527.040000pt;}
.x46_c00224{left:534.293333pt;}
.x73_c00224{left:541.333333pt;}
.x38_c00224{left:542.666667pt;}
.x6a_c00224{left:544.000000pt;}
.x7e_c00224{left:545.333333pt;}
.xf_c00224{left:546.666667pt;}
.xa2_c00224{left:548.373333pt;}
.x84_c00224{left:549.333333pt;}
.x9a_c00224{left:550.666667pt;}
.x1c_c00224{left:552.373333pt;}
.x2d_c00224{left:564.000000pt;}
.x74_c00224{left:572.000000pt;}
.x77_c00224{left:577.333333pt;}
.x10_c00224{left:578.666667pt;}
.x6b_c00224{left:580.000000pt;}
.x85_c00224{left:581.333333pt;}
.x99_c00224{left:582.666667pt;}
.x1d_c00224{left:584.373333pt;}
.x11_c00224{left:589.333333pt;}
.x39_c00224{left:612.960000pt;}
.x1_c00224{left:627.426667pt;}
.x1e_c00224{left:631.040000pt;}
.x2e_c00224{left:632.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_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_dc3f90a8ea5fc2b7dd4ceb69.woff2')format("woff");}.ff1_c00225{font-family:ff1_c00225;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc3_c00225{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.mc0_c00225{transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);}
.mde_c00225{transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);}
.m0_c00225{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m15_c00225{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mb3_c00225{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.mc2_c00225{transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);}
.m9f_c00225{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.mc5_c00225{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m5f_c00225{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.md9_c00225{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mcd_c00225{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m2a_c00225{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mb8_c00225{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mbc_c00225{transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);}
.md7_c00225{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m3b_c00225{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m32_c00225{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m61_c00225{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m29_c00225{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.mcc_c00225{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m7f_c00225{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.mab_c00225{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m33_c00225{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m93_c00225{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mda_c00225{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m2c_c00225{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m8b_c00225{transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);}
.mb9_c00225{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m1a_c00225{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m21_c00225{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.ma7_c00225{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m11_c00225{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m54_c00225{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.me3_c00225{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mb6_c00225{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m68_c00225{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m4b_c00225{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m83_c00225{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m60_c00225{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m9e_c00225{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.m49_c00225{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.me1_c00225{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.mac_c00225{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m87_c00225{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m84_c00225{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m51_c00225{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.md0_c00225{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m40_c00225{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m9b_c00225{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m42_c00225{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mc1_c00225{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.ma3_c00225{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m81_c00225{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m8d_c00225{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m9c_c00225{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.mdd_c00225{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m7c_c00225{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.mbb_c00225{transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);}
.ma2_c00225{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m14_c00225{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m6f_c00225{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.m7b_c00225{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.me_c00225{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m8f_c00225{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m6_c00225{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mb0_c00225{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m8a_c00225{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m20_c00225{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m65_c00225{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m3c_c00225{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.m4c_c00225{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m97_c00225{transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);}
.m4d_c00225{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m7a_c00225{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m30_c00225{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.mb2_c00225{transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);}
.ma0_c00225{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.mcb_c00225{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m6e_c00225{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m72_c00225{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.mce_c00225{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m44_c00225{transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);}
.m4e_c00225{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.mf_c00225{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m78_c00225{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mb1_c00225{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m2b_c00225{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m63_c00225{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m85_c00225{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mc7_c00225{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m67_c00225{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m2e_c00225{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.mbd_c00225{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m2_c00225{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_c00225{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.md4_c00225{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m31_c00225{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m41_c00225{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m71_c00225{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m9a_c00225{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m96_c00225{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m38_c00225{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m1f_c00225{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m88_c00225{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.ma4_c00225{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m90_c00225{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.mc4_c00225{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m1c_c00225{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m69_c00225{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.ma8_c00225{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.ma_c00225{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m4a_c00225{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.md3_c00225{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m70_c00225{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m5b_c00225{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mae_c00225{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m94_c00225{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m22_c00225{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m25_c00225{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m6d_c00225{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m3f_c00225{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.md8_c00225{transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);}
.ma1_c00225{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.md1_c00225{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m4_c00225{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mdc_c00225{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m1e_c00225{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m39_c00225{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m35_c00225{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.me2_c00225{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m64_c00225{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m73_c00225{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m58_c00225{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m66_c00225{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m8_c00225{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m59_c00225{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m37_c00225{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m1b_c00225{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m3d_c00225{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m50_c00225{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m19_c00225{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m10_c00225{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m43_c00225{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.ma5_c00225{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mbf_c00225{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m9d_c00225{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.mcf_c00225{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.maf_c00225{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m95_c00225{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m99_c00225{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m91_c00225{transform:matrix(0.555195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555195,0.000000,0.000000,0.250000,0,0);}
.m4f_c00225{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mad_c00225{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m98_c00225{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mc9_c00225{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.me0_c00225{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.me4_c00225{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m55_c00225{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m62_c00225{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m24_c00225{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m53_c00225{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m47_c00225{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m6c_c00225{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.mbe_c00225{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.md2_c00225{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m27_c00225{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m23_c00225{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m36_c00225{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m45_c00225{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m48_c00225{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m9_c00225{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m34_c00225{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m3e_c00225{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.md6_c00225{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m5d_c00225{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mdf_c00225{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m56_c00225{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m6b_c00225{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.md_c00225{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.m8e_c00225{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m52_c00225{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m77_c00225{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m7d_c00225{transform:matrix(0.597756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597756,0.000000,0.000000,0.250000,0,0);}
.m75_c00225{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m57_c00225{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m13_c00225{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);}
.ma9_c00225{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m1_c00225{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.mc8_c00225{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.m5_c00225{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.mb5_c00225{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.mdb_c00225{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m7e_c00225{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.md5_c00225{transform:matrix(0.610588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610588,0.000000,0.000000,0.250000,0,0);}
.m6a_c00225{transform:matrix(0.612552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612552,0.000000,0.000000,0.250000,0,0);}
.m86_c00225{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m3_c00225{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mc6_c00225{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.mb4_c00225{transform:matrix(0.636411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636411,0.000000,0.000000,0.250000,0,0);}
.mca_c00225{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mb7_c00225{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.m1d_c00225{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.ma6_c00225{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m74_c00225{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m79_c00225{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m17_c00225{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mba_c00225{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m5a_c00225{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m2d_c00225{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m7_c00225{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m3a_c00225{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m82_c00225{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.mb_c00225{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m89_c00225{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m76_c00225{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m18_c00225{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m2f_c00225{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m92_c00225{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m46_c00225{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m16_c00225{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.mc_c00225{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.maa_c00225{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.me5_c00225{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m5c_c00225{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m26_c00225{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m8c_c00225{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.m5e_c00225{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m80_c00225{transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);}
.m12_c00225{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-16.889280px;}
.ws1_c00225{word-spacing:0.000000px;}
._0_c00225{width:5.225879px;}
.fc0_c00225{color:transparent;}
.fs6_c00225{font-size:3.420000px;}
.fs4_c00225{font-size:18.720000px;}
.fs1_c00225{font-size:20.400000px;}
.fs5_c00225{font-size:25.500000px;}
.fs2_c00225{font-size:28.920000px;}
.fs3_c00225{font-size:32.340000px;}
.fs0_c00225{font-size:35.700000px;}
.fs7_c00225{font-size:39.120000px;}
.y0_c00225{bottom:0.000000px;}
.yc6_c00225{bottom:250.245000px;}
.yc4_c00225{bottom:250.905000px;}
.yc8_c00225{bottom:251.130000px;}
.yc7_c00225{bottom:251.970000px;}
.yc5_c00225{bottom:252.405000px;}
.yc3_c00225{bottom:269.745000px;}
.yc2_c00225{bottom:270.630000px;}
.yc1_c00225{bottom:271.470000px;}
.ybf_c00225{bottom:271.905000px;}
.yc0_c00225{bottom:272.970000px;}
.yba_c00225{bottom:289.245000px;}
.ybe_c00225{bottom:290.130000px;}
.ybd_c00225{bottom:290.970000px;}
.ybb_c00225{bottom:291.405000px;}
.ybc_c00225{bottom:292.470000px;}
.yb7_c00225{bottom:308.745000px;}
.yb6_c00225{bottom:309.825000px;}
.yb5_c00225{bottom:310.245000px;}
.yb3_c00225{bottom:310.905000px;}
.yb4_c00225{bottom:311.130000px;}
.yb9_c00225{bottom:311.970000px;}
.yb8_c00225{bottom:312.405000px;}
.yae_c00225{bottom:328.245000px;}
.yb0_c00225{bottom:329.745000px;}
.yad_c00225{bottom:330.405000px;}
.yb1_c00225{bottom:330.630000px;}
.yb2_c00225{bottom:331.470000px;}
.yaf_c00225{bottom:331.905000px;}
.yaa_c00225{bottom:346.905000px;}
.yab_c00225{bottom:349.245000px;}
.yac_c00225{bottom:350.970000px;}
.ya9_c00225{bottom:351.405000px;}
.ya8_c00225{bottom:368.745000px;}
.ya7_c00225{bottom:369.825000px;}
.ya5_c00225{bottom:370.470000px;}
.ya4_c00225{bottom:370.905000px;}
.ya6_c00225{bottom:371.970000px;}
.ya2_c00225{bottom:386.970000px;}
.y9d_c00225{bottom:387.405000px;}
.ya1_c00225{bottom:388.245000px;}
.ya3_c00225{bottom:389.130000px;}
.y9e_c00225{bottom:390.405000px;}
.y9f_c00225{bottom:390.630000px;}
.ya0_c00225{bottom:391.905000px;}
.y9c_c00225{bottom:406.680000px;}
.y9b_c00225{bottom:407.745000px;}
.y9a_c00225{bottom:409.905000px;}
.y99_c00225{bottom:427.245000px;}
.y97_c00225{bottom:429.405000px;}
.y98_c00225{bottom:429.630000px;}
.y94_c00225{bottom:446.745000px;}
.y96_c00225{bottom:447.825000px;}
.y91_c00225{bottom:448.245000px;}
.y93_c00225{bottom:448.905000px;}
.y95_c00225{bottom:449.130000px;}
.y92_c00225{bottom:450.405000px;}
.y8e_c00225{bottom:467.745000px;}
.y8f_c00225{bottom:468.630000px;}
.y90_c00225{bottom:469.905000px;}
.y8d_c00225{bottom:488.130000px;}
.y8c_c00225{bottom:489.405000px;}
.y8b_c00225{bottom:505.245000px;}
.y88_c00225{bottom:506.745000px;}
.y8a_c00225{bottom:507.630000px;}
.y89_c00225{bottom:508.470000px;}
.y87_c00225{bottom:508.905000px;}
.y86_c00225{bottom:526.245000px;}
.y84_c00225{bottom:527.550000px;}
.y85_c00225{bottom:528.405000px;}
.y83_c00225{bottom:528.630000px;}
.y82_c00225{bottom:546.825000px;}
.y80_c00225{bottom:547.905000px;}
.y7f_c00225{bottom:548.130000px;}
.y81_c00225{bottom:548.325000px;}
.y7e_c00225{bottom:549.405000px;}
.y7a_c00225{bottom:565.245000px;}
.y7b_c00225{bottom:566.325000px;}
.y7c_c00225{bottom:567.405000px;}
.y7d_c00225{bottom:567.630000px;}
.y79_c00225{bottom:568.905000px;}
.y76_c00225{bottom:585.825000px;}
.y78_c00225{bottom:586.245000px;}
.y77_c00225{bottom:588.405000px;}
.y74_c00225{bottom:603.405000px;}
.y73_c00225{bottom:605.745000px;}
.y75_c00225{bottom:606.630000px;}
.y72_c00225{bottom:607.905000px;}
.y6e_c00225{bottom:625.245000px;}
.y71_c00225{bottom:626.130000px;}
.y70_c00225{bottom:626.970000px;}
.y6d_c00225{bottom:627.405000px;}
.y6f_c00225{bottom:627.630000px;}
.y6a_c00225{bottom:644.745000px;}
.y65_c00225{bottom:644.970000px;}
.y67_c00225{bottom:645.405000px;}
.y6b_c00225{bottom:645.630000px;}
.y69_c00225{bottom:645.825000px;}
.y6c_c00225{bottom:646.470000px;}
.y66_c00225{bottom:646.905000px;}
.y68_c00225{bottom:647.130000px;}
.y61_c00225{bottom:664.245000px;}
.y63_c00225{bottom:665.745000px;}
.y62_c00225{bottom:666.405000px;}
.y64_c00225{bottom:666.630000px;}
.y5f_c00225{bottom:685.245000px;}
.y5e_c00225{bottom:686.325000px;}
.y60_c00225{bottom:686.970000px;}
.y5d_c00225{bottom:687.405000px;}
.y59_c00225{bottom:704.745000px;}
.y5c_c00225{bottom:705.405000px;}
.y5b_c00225{bottom:705.630000px;}
.y5a_c00225{bottom:706.470000px;}
.y58_c00225{bottom:706.905000px;}
.y55_c00225{bottom:724.245000px;}
.y57_c00225{bottom:725.130000px;}
.y56_c00225{bottom:726.405000px;}
.y53_c00225{bottom:741.405000px;}
.y4f_c00225{bottom:742.470000px;}
.y52_c00225{bottom:743.745000px;}
.y51_c00225{bottom:744.630000px;}
.y54_c00225{bottom:744.825000px;}
.y50_c00225{bottom:745.470000px;}
.y4e_c00225{bottom:745.905000px;}
.y4c_c00225{bottom:763.245000px;}
.y4b_c00225{bottom:764.325000px;}
.y4a_c00225{bottom:764.550000px;}
.y48_c00225{bottom:765.405000px;}
.y4d_c00225{bottom:765.630000px;}
.y49_c00225{bottom:766.470000px;}
.y46_c00225{bottom:782.970000px;}
.y45_c00225{bottom:783.825000px;}
.y42_c00225{bottom:784.905000px;}
.y47_c00225{bottom:785.130000px;}
.y43_c00225{bottom:785.970000px;}
.y44_c00225{bottom:786.405000px;}
.y41_c00225{bottom:802.245000px;}
.y40_c00225{bottom:803.325000px;}
.y3c_c00225{bottom:804.405000px;}
.y3e_c00225{bottom:804.630000px;}
.y3d_c00225{bottom:805.470000px;}
.y3f_c00225{bottom:805.905000px;}
.y38_c00225{bottom:820.905000px;}
.y3a_c00225{bottom:823.245000px;}
.y39_c00225{bottom:824.325000px;}
.y3b_c00225{bottom:824.970000px;}
.y37_c00225{bottom:825.405000px;}
.y36_c00225{bottom:842.745000px;}
.y35_c00225{bottom:860.970000px;}
.y34_c00225{bottom:861.405000px;}
.y33_c00225{bottom:862.245000px;}
.y30_c00225{bottom:863.130000px;}
.y31_c00225{bottom:864.405000px;}
.y32_c00225{bottom:864.630000px;}
.y2f_c00225{bottom:880.470000px;}
.y2d_c00225{bottom:881.325000px;}
.y2c_c00225{bottom:881.745000px;}
.y2a_c00225{bottom:882.630000px;}
.y2b_c00225{bottom:883.905000px;}
.y2e_c00225{bottom:884.130000px;}
.y28_c00225{bottom:900.825000px;}
.y26_c00225{bottom:901.245000px;}
.y29_c00225{bottom:902.325000px;}
.y27_c00225{bottom:903.405000px;}
.y22_c00225{bottom:919.905000px;}
.y23_c00225{bottom:922.245000px;}
.y21_c00225{bottom:922.905000px;}
.y25_c00225{bottom:923.130000px;}
.y24_c00225{bottom:924.405000px;}
.y1f_c00225{bottom:941.745000px;}
.y1e_c00225{bottom:942.630000px;}
.y20_c00225{bottom:942.825000px;}
.y1d_c00225{bottom:943.905000px;}
.y19_c00225{bottom:959.745000px;}
.y1a_c00225{bottom:961.245000px;}
.y1b_c00225{bottom:961.905000px;}
.y1c_c00225{bottom:963.405000px;}
.y16_c00225{bottom:980.745000px;}
.y17_c00225{bottom:981.630000px;}
.y18_c00225{bottom:982.470000px;}
.y15_c00225{bottom:982.905000px;}
.y12_c00225{bottom:1000.245000px;}
.y14_c00225{bottom:1000.905000px;}
.y13_c00225{bottom:1001.130000px;}
.y11_c00225{bottom:1002.405000px;}
.yd_c00225{bottom:1019.325000px;}
.ya_c00225{bottom:1019.745000px;}
.ye_c00225{bottom:1020.630000px;}
.yf_c00225{bottom:1021.470000px;}
.y10_c00225{bottom:1021.905000px;}
.yb_c00225{bottom:1021.920000px;}
.yc_c00225{bottom:1022.970000px;}
.y8_c00225{bottom:1039.245000px;}
.y7_c00225{bottom:1040.970000px;}
.y9_c00225{bottom:1041.405000px;}
.y4_c00225{bottom:1058.325000px;}
.y6_c00225{bottom:1059.630000px;}
.y3_c00225{bottom:1060.905000px;}
.y5_c00225{bottom:1061.130000px;}
.y1_c00225{bottom:1097.745000px;}
.y2_c00225{bottom:1099.050000px;}
.h7_c00225{height:4.206533px;}
.h5_c00225{height:23.025234px;}
.h2_c00225{height:25.091602px;}
.h6_c00225{height:31.364502px;}
.h3_c00225{height:35.571035px;}
.h4_c00225{height:39.777568px;}
.h1_c00225{height:43.910303px;}
.h8_c00225{height:48.116836px;}
.h0_c00225{height:1335.000000px;}
.w0_c00225{width:880.500000px;}
.x0_c00225{left:0.000000px;}
.xdb_c00225{left:151.500000px;}
.x33_c00225{left:152.580000px;}
.xe_c00225{left:154.080000px;}
.x1_c00225{left:155.775000px;}
.x5e_c00225{left:166.080000px;}
.xcc_c00225{left:168.000000px;}
.x3_c00225{left:169.080000px;}
.x91_c00225{left:172.920000px;}
.x46_c00225{left:174.420000px;}
.x10b_c00225{left:178.500000px;}
.x86_c00225{left:179.580000px;}
.xed_c00225{left:181.920000px;}
.x28_c00225{left:183.000000px;}
.xb2_c00225{left:185.580000px;}
.xe3_c00225{left:189.000000px;}
.xbb_c00225{left:191.580000px;}
.x6d_c00225{left:195.420000px;}
.x109_c00225{left:196.920000px;}
.xdc_c00225{left:198.000000px;}
.x92_c00225{left:199.080000px;}
.x3b_c00225{left:201.000000px;}
.x47_c00225{left:202.500000px;}
.xb3_c00225{left:204.420000px;}
.x9d_c00225{left:205.500000px;}
.xd7_c00225{left:207.420000px;}
.x5f_c00225{left:211.080000px;}
.x34_c00225{left:213.000000px;}
.xdd_c00225{left:214.080000px;}
.xf_c00225{left:216.420000px;}
.xee_c00225{left:220.080000px;}
.xa6_c00225{left:222.420000px;}
.x1c_c00225{left:223.500000px;}
.xc1_c00225{left:224.580000px;}
.xd1_c00225{left:226.920000px;}
.x54_c00225{left:228.000000px;}
.x7a_c00225{left:229.500000px;}
.xa4_c00225{left:231.420000px;}
.x3c_c00225{left:232.500000px;}
.x6e_c00225{left:234.420000px;}
.xbc_c00225{left:236.580000px;}
.x87_c00225{left:238.500000px;}
.x93_c00225{left:240.000000px;}
.x6f_c00225{left:246.000000px;}
.x104_c00225{left:247.080000px;}
.x48_c00225{left:249.420000px;}
.x9e_c00225{left:250.500000px;}
.xf8_c00225{left:252.420000px;}
.x60_c00225{left:253.920000px;}
.x4_c00225{left:255.000000px;}
.x12_c00225{left:256.500000px;}
.x3d_c00225{left:258.420000px;}
.x88_c00225{left:259.920000px;}
.xae_c00225{left:261.420000px;}
.x9f_c00225{left:264.000000px;}
.xf5_c00225{left:266.580000px;}
.x55_c00225{left:268.920000px;}
.x10c_c00225{left:270.000000px;}
.x94_c00225{left:271.080000px;}
.x10_c00225{left:273.000000px;}
.xe8_c00225{left:274.500000px;}
.x5_c00225{left:277.080000px;}
.x49_c00225{left:279.420000px;}
.x61_c00225{left:280.920000px;}
.xc2_c00225{left:283.920000px;}
.x80_c00225{left:285.420000px;}
.x11_c00225{left:287.580000px;}
.x95_c00225{left:289.920000px;}
.x29_c00225{left:291.000000px;}
.xe9_c00225{left:292.920000px;}
.x3e_c00225{left:295.080000px;}
.xa0_c00225{left:297.000000px;}
.x10d_c00225{left:299.580000px;}
.x1d_c00225{left:303.000000px;}
.xf6_c00225{left:304.080000px;}
.x35_c00225{left:305.580000px;}
.x4a_c00225{left:307.500000px;}
.x13_c00225{left:310.500000px;}
.xd8_c00225{left:312.420000px;}
.x101_c00225{left:315.000000px;}
.x96_c00225{left:316.920000px;}
.x70_c00225{left:318.000000px;}
.xf0_c00225{left:319.080000px;}
.xde_c00225{left:322.500000px;}
.xe4_c00225{left:323.580000px;}
.x1e_c00225{left:325.920000px;}
.x81_c00225{left:328.080000px;}
.x56_c00225{left:330.000000px;}
.xa7_c00225{left:331.080000px;}
.x2a_c00225{left:334.920000px;}
.xf9_c00225{left:337.500000px;}
.xb4_c00225{left:339.000000px;}
.xd2_c00225{left:340.500000px;}
.x102_c00225{left:342.000000px;}
.xaf_c00225{left:343.500000px;}
.x7b_c00225{left:345.000000px;}
.x62_c00225{left:348.420000px;}
.x4b_c00225{left:349.500000px;}
.x36_c00225{left:351.000000px;}
.x6_c00225{left:352.500000px;}
.xd9_c00225{left:357.000000px;}
.x82_c00225{left:361.500000px;}
.xd3_c00225{left:363.420000px;}
.x2b_c00225{left:364.500000px;}
.x14_c00225{left:367.500000px;}
.x57_c00225{left:369.000000px;}
.xe5_c00225{left:373.920000px;}
.x63_c00225{left:375.000000px;}
.x7c_c00225{left:376.920000px;}
.xb5_c00225{left:379.920000px;}
.xf1_c00225{left:381.000000px;}
.x89_c00225{left:382.920000px;}
.xc3_c00225{left:385.500000px;}
.xbd_c00225{left:387.000000px;}
.xff_c00225{left:388.920000px;}
.x3f_c00225{left:390.000000px;}
.xd4_c00225{left:391.920000px;}
.x37_c00225{left:394.500000px;}
.xfa_c00225{left:396.000000px;}
.xb0_c00225{left:397.080000px;}
.xef_c00225{left:399.000000px;}
.x2_c00225{left:400.500000px;}
.x2c_c00225{left:404.580000px;}
.xb6_c00225{left:406.500000px;}
.x7_c00225{left:408.000000px;}
.x8a_c00225{left:409.080000px;}
.x4c_c00225{left:410.580000px;}
.x1f_c00225{left:412.500000px;}
.xf2_c00225{left:414.000000px;}
.x97_c00225{left:415.920000px;}
.xa8_c00225{left:417.420000px;}
.x7d_c00225{left:420.420000px;}
.x15_c00225{left:421.920000px;}
.x83_c00225{left:423.420000px;}
.x64_c00225{left:424.500000px;}
.x2d_c00225{left:426.420000px;}
.xfb_c00225{left:427.500000px;}
.x40_c00225{left:430.500000px;}
.xcd_c00225{left:432.420000px;}
.x105_c00225{left:435.000000px;}
.xa5_c00225{left:436.080000px;}
.x65_c00225{left:439.080000px;}
.x71_c00225{left:441.000000px;}
.xb7_c00225{left:442.080000px;}
.xa9_c00225{left:444.420000px;}
.xc5_c00225{left:445.500000px;}
.xd5_c00225{left:447.000000px;}
.x38_c00225{left:448.500000px;}
.x8b_c00225{left:450.000000px;}
.x16_c00225{left:452.580000px;}
.x8_c00225{left:454.500000px;}
.x100_c00225{left:457.500000px;}
.x4d_c00225{left:459.000000px;}
.x20_c00225{left:460.080000px;}
.x41_c00225{left:462.420000px;}
.x58_c00225{left:465.000000px;}
.x39_c00225{left:467.580000px;}
.xaa_c00225{left:469.500000px;}
.xa1_c00225{left:472.500000px;}
.x17_c00225{left:474.000000px;}
.x21_c00225{left:478.500000px;}
.x9_c00225{left:484.500000px;}
.xb8_c00225{left:486.000000px;}
.x10a_c00225{left:487.500000px;}
.x3a_c00225{left:489.000000px;}
.x8c_c00225{left:491.580000px;}
.x4e_c00225{left:493.500000px;}
.xdf_c00225{left:495.000000px;}
.xea_c00225{left:496.920000px;}
.x66_c00225{left:498.000000px;}
.xc6_c00225{left:499.920000px;}
.xfc_c00225{left:501.000000px;}
.x2e_c00225{left:502.500000px;}
.xf3_c00225{left:504.000000px;}
.x98_c00225{left:505.920000px;}
.xbe_c00225{left:507.000000px;}
.x106_c00225{left:508.920000px;}
.x59_c00225{left:510.000000px;}
.x18_c00225{left:511.080000px;}
.xce_c00225{left:514.500000px;}
.x72_c00225{left:516.000000px;}
.xf4_c00225{left:519.000000px;}
.x22_c00225{left:522.000000px;}
.xbf_c00225{left:523.500000px;}
.x42_c00225{left:525.420000px;}
.xe0_c00225{left:526.500000px;}
.xc7_c00225{left:528.000000px;}
.x84_c00225{left:530.580000px;}
.x67_c00225{left:532.500000px;}
.x73_c00225{left:533.580000px;}
.x19_c00225{left:535.920000px;}
.x8d_c00225{left:538.080000px;}
.xcf_c00225{left:541.500000px;}
.xfd_c00225{left:546.000000px;}
.xa_c00225{left:547.500000px;}
.x68_c00225{left:552.420000px;}
.xa2_c00225{left:553.500000px;}
.xb1_c00225{left:555.420000px;}
.x5a_c00225{left:557.580000px;}
.x23_c00225{left:561.000000px;}
.xda_c00225{left:564.420000px;}
.x107_c00225{left:567.420000px;}
.xb9_c00225{left:568.500000px;}
.x2f_c00225{left:570.000000px;}
.x4f_c00225{left:571.500000px;}
.xe1_c00225{left:573.000000px;}
.xc8_c00225{left:574.500000px;}
.x8e_c00225{left:576.420000px;}
.xc4_c00225{left:577.500000px;}
.x69_c00225{left:579.000000px;}
.x74_c00225{left:580.080000px;}
.xeb_c00225{left:582.000000px;}
.x24_c00225{left:583.920000px;}
.x30_c00225{left:586.500000px;}
.x99_c00225{left:588.000000px;}
.x5b_c00225{left:589.500000px;}
.x75_c00225{left:592.500000px;}
.x50_c00225{left:595.920000px;}
.xa3_c00225{left:600.000000px;}
.x43_c00225{left:601.920000px;}
.xc0_c00225{left:604.080000px;}
.x108_c00225{left:606.000000px;}
.xc9_c00225{left:607.080000px;}
.x9a_c00225{left:609.000000px;}
.x25_c00225{left:610.920000px;}
.xfe_c00225{left:612.000000px;}
.xf7_c00225{left:618.420000px;}
.xab_c00225{left:619.500000px;}
.xe6_c00225{left:620.580000px;}
.x51_c00225{left:624.420000px;}
.x76_c00225{left:625.920000px;}
.x31_c00225{left:627.000000px;}
.x44_c00225{left:628.500000px;}
.x8f_c00225{left:629.580000px;}
.x6a_c00225{left:631.500000px;}
.x1a_c00225{left:633.420000px;}
.x85_c00225{left:636.000000px;}
.xb_c00225{left:637.080000px;}
.xec_c00225{left:639.000000px;}
.xca_c00225{left:640.920000px;}
.x6b_c00225{left:646.500000px;}
.xba_c00225{left:648.420000px;}
.x5c_c00225{left:651.000000px;}
.x7e_c00225{left:652.920000px;}
.x9b_c00225{left:655.500000px;}
.xd6_c00225{left:658.500000px;}
.x77_c00225{left:661.080000px;}
.x6c_c00225{left:663.000000px;}
.x26_c00225{left:664.500000px;}
.xac_c00225{left:667.500000px;}
.xcb_c00225{left:669.000000px;}
.xc_c00225{left:672.000000px;}
.xe2_c00225{left:673.920000px;}
.x90_c00225{left:675.000000px;}
.xd0_c00225{left:679.500000px;}
.x45_c00225{left:684.000000px;}
.xad_c00225{left:687.000000px;}
.x52_c00225{left:688.920000px;}
.x9c_c00225{left:691.500000px;}
.x78_c00225{left:693.000000px;}
.x103_c00225{left:694.500000px;}
.x1b_c00225{left:695.580000px;}
.xd_c00225{left:697.500000px;}
.x5d_c00225{left:700.500000px;}
.x79_c00225{left:705.000000px;}
.xe7_c00225{left:708.420000px;}
.x7f_c00225{left:709.920000px;}
.x53_c00225{left:715.500000px;}
.x32_c00225{left:717.000000px;}
.x27_c00225{left:718.080000px;}
@media print{
.v0_c00225{vertical-align:0.000000pt;}
.ls0_c00225{letter-spacing:0.000000pt;}
.ws0_c00225{word-spacing:-15.012693pt;}
.ws1_c00225{word-spacing:0.000000pt;}
._0_c00225{width:4.645226pt;}
.fs6_c00225{font-size:3.040000pt;}
.fs4_c00225{font-size:16.640000pt;}
.fs1_c00225{font-size:18.133333pt;}
.fs5_c00225{font-size:22.666667pt;}
.fs2_c00225{font-size:25.706667pt;}
.fs3_c00225{font-size:28.746667pt;}
.fs0_c00225{font-size:31.733333pt;}
.fs7_c00225{font-size:34.773333pt;}
.y0_c00225{bottom:0.000000pt;}
.yc6_c00225{bottom:222.440000pt;}
.yc4_c00225{bottom:223.026667pt;}
.yc8_c00225{bottom:223.226667pt;}
.yc7_c00225{bottom:223.973333pt;}
.yc5_c00225{bottom:224.360000pt;}
.yc3_c00225{bottom:239.773333pt;}
.yc2_c00225{bottom:240.560000pt;}
.yc1_c00225{bottom:241.306667pt;}
.ybf_c00225{bottom:241.693333pt;}
.yc0_c00225{bottom:242.640000pt;}
.yba_c00225{bottom:257.106667pt;}
.ybe_c00225{bottom:257.893333pt;}
.ybd_c00225{bottom:258.640000pt;}
.ybb_c00225{bottom:259.026667pt;}
.ybc_c00225{bottom:259.973333pt;}
.yb7_c00225{bottom:274.440000pt;}
.yb6_c00225{bottom:275.400000pt;}
.yb5_c00225{bottom:275.773333pt;}
.yb3_c00225{bottom:276.360000pt;}
.yb4_c00225{bottom:276.560000pt;}
.yb9_c00225{bottom:277.306667pt;}
.yb8_c00225{bottom:277.693333pt;}
.yae_c00225{bottom:291.773333pt;}
.yb0_c00225{bottom:293.106667pt;}
.yad_c00225{bottom:293.693333pt;}
.yb1_c00225{bottom:293.893333pt;}
.yb2_c00225{bottom:294.640000pt;}
.yaf_c00225{bottom:295.026667pt;}
.yaa_c00225{bottom:308.360000pt;}
.yab_c00225{bottom:310.440000pt;}
.yac_c00225{bottom:311.973333pt;}
.ya9_c00225{bottom:312.360000pt;}
.ya8_c00225{bottom:327.773333pt;}
.ya7_c00225{bottom:328.733333pt;}
.ya5_c00225{bottom:329.306667pt;}
.ya4_c00225{bottom:329.693333pt;}
.ya6_c00225{bottom:330.640000pt;}
.ya2_c00225{bottom:343.973333pt;}
.y9d_c00225{bottom:344.360000pt;}
.ya1_c00225{bottom:345.106667pt;}
.ya3_c00225{bottom:345.893333pt;}
.y9e_c00225{bottom:347.026667pt;}
.y9f_c00225{bottom:347.226667pt;}
.ya0_c00225{bottom:348.360000pt;}
.y9c_c00225{bottom:361.493333pt;}
.y9b_c00225{bottom:362.440000pt;}
.y9a_c00225{bottom:364.360000pt;}
.y99_c00225{bottom:379.773333pt;}
.y97_c00225{bottom:381.693333pt;}
.y98_c00225{bottom:381.893333pt;}
.y94_c00225{bottom:397.106667pt;}
.y96_c00225{bottom:398.066667pt;}
.y91_c00225{bottom:398.440000pt;}
.y93_c00225{bottom:399.026667pt;}
.y95_c00225{bottom:399.226667pt;}
.y92_c00225{bottom:400.360000pt;}
.y8e_c00225{bottom:415.773333pt;}
.y8f_c00225{bottom:416.560000pt;}
.y90_c00225{bottom:417.693333pt;}
.y8d_c00225{bottom:433.893333pt;}
.y8c_c00225{bottom:435.026667pt;}
.y8b_c00225{bottom:449.106667pt;}
.y88_c00225{bottom:450.440000pt;}
.y8a_c00225{bottom:451.226667pt;}
.y89_c00225{bottom:451.973333pt;}
.y87_c00225{bottom:452.360000pt;}
.y86_c00225{bottom:467.773333pt;}
.y84_c00225{bottom:468.933333pt;}
.y85_c00225{bottom:469.693333pt;}
.y83_c00225{bottom:469.893333pt;}
.y82_c00225{bottom:486.066667pt;}
.y80_c00225{bottom:487.026667pt;}
.y7f_c00225{bottom:487.226667pt;}
.y81_c00225{bottom:487.400000pt;}
.y7e_c00225{bottom:488.360000pt;}
.y7a_c00225{bottom:502.440000pt;}
.y7b_c00225{bottom:503.400000pt;}
.y7c_c00225{bottom:504.360000pt;}
.y7d_c00225{bottom:504.560000pt;}
.y79_c00225{bottom:505.693333pt;}
.y76_c00225{bottom:520.733333pt;}
.y78_c00225{bottom:521.106667pt;}
.y77_c00225{bottom:523.026667pt;}
.y74_c00225{bottom:536.360000pt;}
.y73_c00225{bottom:538.440000pt;}
.y75_c00225{bottom:539.226667pt;}
.y72_c00225{bottom:540.360000pt;}
.y6e_c00225{bottom:555.773333pt;}
.y71_c00225{bottom:556.560000pt;}
.y70_c00225{bottom:557.306667pt;}
.y6d_c00225{bottom:557.693333pt;}
.y6f_c00225{bottom:557.893333pt;}
.y6a_c00225{bottom:573.106667pt;}
.y65_c00225{bottom:573.306667pt;}
.y67_c00225{bottom:573.693333pt;}
.y6b_c00225{bottom:573.893333pt;}
.y69_c00225{bottom:574.066667pt;}
.y6c_c00225{bottom:574.640000pt;}
.y66_c00225{bottom:575.026667pt;}
.y68_c00225{bottom:575.226667pt;}
.y61_c00225{bottom:590.440000pt;}
.y63_c00225{bottom:591.773333pt;}
.y62_c00225{bottom:592.360000pt;}
.y64_c00225{bottom:592.560000pt;}
.y5f_c00225{bottom:609.106667pt;}
.y5e_c00225{bottom:610.066667pt;}
.y60_c00225{bottom:610.640000pt;}
.y5d_c00225{bottom:611.026667pt;}
.y59_c00225{bottom:626.440000pt;}
.y5c_c00225{bottom:627.026667pt;}
.y5b_c00225{bottom:627.226667pt;}
.y5a_c00225{bottom:627.973333pt;}
.y58_c00225{bottom:628.360000pt;}
.y55_c00225{bottom:643.773333pt;}
.y57_c00225{bottom:644.560000pt;}
.y56_c00225{bottom:645.693333pt;}
.y53_c00225{bottom:659.026667pt;}
.y4f_c00225{bottom:659.973333pt;}
.y52_c00225{bottom:661.106667pt;}
.y51_c00225{bottom:661.893333pt;}
.y54_c00225{bottom:662.066667pt;}
.y50_c00225{bottom:662.640000pt;}
.y4e_c00225{bottom:663.026667pt;}
.y4c_c00225{bottom:678.440000pt;}
.y4b_c00225{bottom:679.400000pt;}
.y4a_c00225{bottom:679.600000pt;}
.y48_c00225{bottom:680.360000pt;}
.y4d_c00225{bottom:680.560000pt;}
.y49_c00225{bottom:681.306667pt;}
.y46_c00225{bottom:695.973333pt;}
.y45_c00225{bottom:696.733333pt;}
.y42_c00225{bottom:697.693333pt;}
.y47_c00225{bottom:697.893333pt;}
.y43_c00225{bottom:698.640000pt;}
.y44_c00225{bottom:699.026667pt;}
.y41_c00225{bottom:713.106667pt;}
.y40_c00225{bottom:714.066667pt;}
.y3c_c00225{bottom:715.026667pt;}
.y3e_c00225{bottom:715.226667pt;}
.y3d_c00225{bottom:715.973333pt;}
.y3f_c00225{bottom:716.360000pt;}
.y38_c00225{bottom:729.693333pt;}
.y3a_c00225{bottom:731.773333pt;}
.y39_c00225{bottom:732.733333pt;}
.y3b_c00225{bottom:733.306667pt;}
.y37_c00225{bottom:733.693333pt;}
.y36_c00225{bottom:749.106667pt;}
.y35_c00225{bottom:765.306667pt;}
.y34_c00225{bottom:765.693333pt;}
.y33_c00225{bottom:766.440000pt;}
.y30_c00225{bottom:767.226667pt;}
.y31_c00225{bottom:768.360000pt;}
.y32_c00225{bottom:768.560000pt;}
.y2f_c00225{bottom:782.640000pt;}
.y2d_c00225{bottom:783.400000pt;}
.y2c_c00225{bottom:783.773333pt;}
.y2a_c00225{bottom:784.560000pt;}
.y2b_c00225{bottom:785.693333pt;}
.y2e_c00225{bottom:785.893333pt;}
.y28_c00225{bottom:800.733333pt;}
.y26_c00225{bottom:801.106667pt;}
.y29_c00225{bottom:802.066667pt;}
.y27_c00225{bottom:803.026667pt;}
.y22_c00225{bottom:817.693333pt;}
.y23_c00225{bottom:819.773333pt;}
.y21_c00225{bottom:820.360000pt;}
.y25_c00225{bottom:820.560000pt;}
.y24_c00225{bottom:821.693333pt;}
.y1f_c00225{bottom:837.106667pt;}
.y1e_c00225{bottom:837.893333pt;}
.y20_c00225{bottom:838.066667pt;}
.y1d_c00225{bottom:839.026667pt;}
.y19_c00225{bottom:853.106667pt;}
.y1a_c00225{bottom:854.440000pt;}
.y1b_c00225{bottom:855.026667pt;}
.y1c_c00225{bottom:856.360000pt;}
.y16_c00225{bottom:871.773333pt;}
.y17_c00225{bottom:872.560000pt;}
.y18_c00225{bottom:873.306667pt;}
.y15_c00225{bottom:873.693333pt;}
.y12_c00225{bottom:889.106667pt;}
.y14_c00225{bottom:889.693333pt;}
.y13_c00225{bottom:889.893333pt;}
.y11_c00225{bottom:891.026667pt;}
.yd_c00225{bottom:906.066667pt;}
.ya_c00225{bottom:906.440000pt;}
.ye_c00225{bottom:907.226667pt;}
.yf_c00225{bottom:907.973333pt;}
.y10_c00225{bottom:908.360000pt;}
.yb_c00225{bottom:908.373333pt;}
.yc_c00225{bottom:909.306667pt;}
.y8_c00225{bottom:923.773333pt;}
.y7_c00225{bottom:925.306667pt;}
.y9_c00225{bottom:925.693333pt;}
.y4_c00225{bottom:940.733333pt;}
.y6_c00225{bottom:941.893333pt;}
.y3_c00225{bottom:943.026667pt;}
.y5_c00225{bottom:943.226667pt;}
.y1_c00225{bottom:975.773333pt;}
.y2_c00225{bottom:976.933333pt;}
.h7_c00225{height:3.739141pt;}
.h5_c00225{height:20.466875pt;}
.h2_c00225{height:22.303646pt;}
.h6_c00225{height:27.879557pt;}
.h3_c00225{height:31.618698pt;}
.h4_c00225{height:35.357839pt;}
.h1_c00225{height:39.031380pt;}
.h8_c00225{height:42.770521pt;}
.h0_c00225{height:1186.666667pt;}
.w0_c00225{width:782.666667pt;}
.x0_c00225{left:0.000000pt;}
.xdb_c00225{left:134.666667pt;}
.x33_c00225{left:135.626667pt;}
.xe_c00225{left:136.960000pt;}
.x1_c00225{left:138.466667pt;}
.x5e_c00225{left:147.626667pt;}
.xcc_c00225{left:149.333333pt;}
.x3_c00225{left:150.293333pt;}
.x91_c00225{left:153.706667pt;}
.x46_c00225{left:155.040000pt;}
.x10b_c00225{left:158.666667pt;}
.x86_c00225{left:159.626667pt;}
.xed_c00225{left:161.706667pt;}
.x28_c00225{left:162.666667pt;}
.xb2_c00225{left:164.960000pt;}
.xe3_c00225{left:168.000000pt;}
.xbb_c00225{left:170.293333pt;}
.x6d_c00225{left:173.706667pt;}
.x109_c00225{left:175.040000pt;}
.xdc_c00225{left:176.000000pt;}
.x92_c00225{left:176.960000pt;}
.x3b_c00225{left:178.666667pt;}
.x47_c00225{left:180.000000pt;}
.xb3_c00225{left:181.706667pt;}
.x9d_c00225{left:182.666667pt;}
.xd7_c00225{left:184.373333pt;}
.x5f_c00225{left:187.626667pt;}
.x34_c00225{left:189.333333pt;}
.xdd_c00225{left:190.293333pt;}
.xf_c00225{left:192.373333pt;}
.xee_c00225{left:195.626667pt;}
.xa6_c00225{left:197.706667pt;}
.x1c_c00225{left:198.666667pt;}
.xc1_c00225{left:199.626667pt;}
.xd1_c00225{left:201.706667pt;}
.x54_c00225{left:202.666667pt;}
.x7a_c00225{left:204.000000pt;}
.xa4_c00225{left:205.706667pt;}
.x3c_c00225{left:206.666667pt;}
.x6e_c00225{left:208.373333pt;}
.xbc_c00225{left:210.293333pt;}
.x87_c00225{left:212.000000pt;}
.x93_c00225{left:213.333333pt;}
.x6f_c00225{left:218.666667pt;}
.x104_c00225{left:219.626667pt;}
.x48_c00225{left:221.706667pt;}
.x9e_c00225{left:222.666667pt;}
.xf8_c00225{left:224.373333pt;}
.x60_c00225{left:225.706667pt;}
.x4_c00225{left:226.666667pt;}
.x12_c00225{left:228.000000pt;}
.x3d_c00225{left:229.706667pt;}
.x88_c00225{left:231.040000pt;}
.xae_c00225{left:232.373333pt;}
.x9f_c00225{left:234.666667pt;}
.xf5_c00225{left:236.960000pt;}
.x55_c00225{left:239.040000pt;}
.x10c_c00225{left:240.000000pt;}
.x94_c00225{left:240.960000pt;}
.x10_c00225{left:242.666667pt;}
.xe8_c00225{left:244.000000pt;}
.x5_c00225{left:246.293333pt;}
.x49_c00225{left:248.373333pt;}
.x61_c00225{left:249.706667pt;}
.xc2_c00225{left:252.373333pt;}
.x80_c00225{left:253.706667pt;}
.x11_c00225{left:255.626667pt;}
.x95_c00225{left:257.706667pt;}
.x29_c00225{left:258.666667pt;}
.xe9_c00225{left:260.373333pt;}
.x3e_c00225{left:262.293333pt;}
.xa0_c00225{left:264.000000pt;}
.x10d_c00225{left:266.293333pt;}
.x1d_c00225{left:269.333333pt;}
.xf6_c00225{left:270.293333pt;}
.x35_c00225{left:271.626667pt;}
.x4a_c00225{left:273.333333pt;}
.x13_c00225{left:276.000000pt;}
.xd8_c00225{left:277.706667pt;}
.x101_c00225{left:280.000000pt;}
.x96_c00225{left:281.706667pt;}
.x70_c00225{left:282.666667pt;}
.xf0_c00225{left:283.626667pt;}
.xde_c00225{left:286.666667pt;}
.xe4_c00225{left:287.626667pt;}
.x1e_c00225{left:289.706667pt;}
.x81_c00225{left:291.626667pt;}
.x56_c00225{left:293.333333pt;}
.xa7_c00225{left:294.293333pt;}
.x2a_c00225{left:297.706667pt;}
.xf9_c00225{left:300.000000pt;}
.xb4_c00225{left:301.333333pt;}
.xd2_c00225{left:302.666667pt;}
.x102_c00225{left:304.000000pt;}
.xaf_c00225{left:305.333333pt;}
.x7b_c00225{left:306.666667pt;}
.x62_c00225{left:309.706667pt;}
.x4b_c00225{left:310.666667pt;}
.x36_c00225{left:312.000000pt;}
.x6_c00225{left:313.333333pt;}
.xd9_c00225{left:317.333333pt;}
.x82_c00225{left:321.333333pt;}
.xd3_c00225{left:323.040000pt;}
.x2b_c00225{left:324.000000pt;}
.x14_c00225{left:326.666667pt;}
.x57_c00225{left:328.000000pt;}
.xe5_c00225{left:332.373333pt;}
.x63_c00225{left:333.333333pt;}
.x7c_c00225{left:335.040000pt;}
.xb5_c00225{left:337.706667pt;}
.xf1_c00225{left:338.666667pt;}
.x89_c00225{left:340.373333pt;}
.xc3_c00225{left:342.666667pt;}
.xbd_c00225{left:344.000000pt;}
.xff_c00225{left:345.706667pt;}
.x3f_c00225{left:346.666667pt;}
.xd4_c00225{left:348.373333pt;}
.x37_c00225{left:350.666667pt;}
.xfa_c00225{left:352.000000pt;}
.xb0_c00225{left:352.960000pt;}
.xef_c00225{left:354.666667pt;}
.x2_c00225{left:356.000000pt;}
.x2c_c00225{left:359.626667pt;}
.xb6_c00225{left:361.333333pt;}
.x7_c00225{left:362.666667pt;}
.x8a_c00225{left:363.626667pt;}
.x4c_c00225{left:364.960000pt;}
.x1f_c00225{left:366.666667pt;}
.xf2_c00225{left:368.000000pt;}
.x97_c00225{left:369.706667pt;}
.xa8_c00225{left:371.040000pt;}
.x7d_c00225{left:373.706667pt;}
.x15_c00225{left:375.040000pt;}
.x83_c00225{left:376.373333pt;}
.x64_c00225{left:377.333333pt;}
.x2d_c00225{left:379.040000pt;}
.xfb_c00225{left:380.000000pt;}
.x40_c00225{left:382.666667pt;}
.xcd_c00225{left:384.373333pt;}
.x105_c00225{left:386.666667pt;}
.xa5_c00225{left:387.626667pt;}
.x65_c00225{left:390.293333pt;}
.x71_c00225{left:392.000000pt;}
.xb7_c00225{left:392.960000pt;}
.xa9_c00225{left:395.040000pt;}
.xc5_c00225{left:396.000000pt;}
.xd5_c00225{left:397.333333pt;}
.x38_c00225{left:398.666667pt;}
.x8b_c00225{left:400.000000pt;}
.x16_c00225{left:402.293333pt;}
.x8_c00225{left:404.000000pt;}
.x100_c00225{left:406.666667pt;}
.x4d_c00225{left:408.000000pt;}
.x20_c00225{left:408.960000pt;}
.x41_c00225{left:411.040000pt;}
.x58_c00225{left:413.333333pt;}
.x39_c00225{left:415.626667pt;}
.xaa_c00225{left:417.333333pt;}
.xa1_c00225{left:420.000000pt;}
.x17_c00225{left:421.333333pt;}
.x21_c00225{left:425.333333pt;}
.x9_c00225{left:430.666667pt;}
.xb8_c00225{left:432.000000pt;}
.x10a_c00225{left:433.333333pt;}
.x3a_c00225{left:434.666667pt;}
.x8c_c00225{left:436.960000pt;}
.x4e_c00225{left:438.666667pt;}
.xdf_c00225{left:440.000000pt;}
.xea_c00225{left:441.706667pt;}
.x66_c00225{left:442.666667pt;}
.xc6_c00225{left:444.373333pt;}
.xfc_c00225{left:445.333333pt;}
.x2e_c00225{left:446.666667pt;}
.xf3_c00225{left:448.000000pt;}
.x98_c00225{left:449.706667pt;}
.xbe_c00225{left:450.666667pt;}
.x106_c00225{left:452.373333pt;}
.x59_c00225{left:453.333333pt;}
.x18_c00225{left:454.293333pt;}
.xce_c00225{left:457.333333pt;}
.x72_c00225{left:458.666667pt;}
.xf4_c00225{left:461.333333pt;}
.x22_c00225{left:464.000000pt;}
.xbf_c00225{left:465.333333pt;}
.x42_c00225{left:467.040000pt;}
.xe0_c00225{left:468.000000pt;}
.xc7_c00225{left:469.333333pt;}
.x84_c00225{left:471.626667pt;}
.x67_c00225{left:473.333333pt;}
.x73_c00225{left:474.293333pt;}
.x19_c00225{left:476.373333pt;}
.x8d_c00225{left:478.293333pt;}
.xcf_c00225{left:481.333333pt;}
.xfd_c00225{left:485.333333pt;}
.xa_c00225{left:486.666667pt;}
.x68_c00225{left:491.040000pt;}
.xa2_c00225{left:492.000000pt;}
.xb1_c00225{left:493.706667pt;}
.x5a_c00225{left:495.626667pt;}
.x23_c00225{left:498.666667pt;}
.xda_c00225{left:501.706667pt;}
.x107_c00225{left:504.373333pt;}
.xb9_c00225{left:505.333333pt;}
.x2f_c00225{left:506.666667pt;}
.x4f_c00225{left:508.000000pt;}
.xe1_c00225{left:509.333333pt;}
.xc8_c00225{left:510.666667pt;}
.x8e_c00225{left:512.373333pt;}
.xc4_c00225{left:513.333333pt;}
.x69_c00225{left:514.666667pt;}
.x74_c00225{left:515.626667pt;}
.xeb_c00225{left:517.333333pt;}
.x24_c00225{left:519.040000pt;}
.x30_c00225{left:521.333333pt;}
.x99_c00225{left:522.666667pt;}
.x5b_c00225{left:524.000000pt;}
.x75_c00225{left:526.666667pt;}
.x50_c00225{left:529.706667pt;}
.xa3_c00225{left:533.333333pt;}
.x43_c00225{left:535.040000pt;}
.xc0_c00225{left:536.960000pt;}
.x108_c00225{left:538.666667pt;}
.xc9_c00225{left:539.626667pt;}
.x9a_c00225{left:541.333333pt;}
.x25_c00225{left:543.040000pt;}
.xfe_c00225{left:544.000000pt;}
.xf7_c00225{left:549.706667pt;}
.xab_c00225{left:550.666667pt;}
.xe6_c00225{left:551.626667pt;}
.x51_c00225{left:555.040000pt;}
.x76_c00225{left:556.373333pt;}
.x31_c00225{left:557.333333pt;}
.x44_c00225{left:558.666667pt;}
.x8f_c00225{left:559.626667pt;}
.x6a_c00225{left:561.333333pt;}
.x1a_c00225{left:563.040000pt;}
.x85_c00225{left:565.333333pt;}
.xb_c00225{left:566.293333pt;}
.xec_c00225{left:568.000000pt;}
.xca_c00225{left:569.706667pt;}
.x6b_c00225{left:574.666667pt;}
.xba_c00225{left:576.373333pt;}
.x5c_c00225{left:578.666667pt;}
.x7e_c00225{left:580.373333pt;}
.x9b_c00225{left:582.666667pt;}
.xd6_c00225{left:585.333333pt;}
.x77_c00225{left:587.626667pt;}
.x6c_c00225{left:589.333333pt;}
.x26_c00225{left:590.666667pt;}
.xac_c00225{left:593.333333pt;}
.xcb_c00225{left:594.666667pt;}
.xc_c00225{left:597.333333pt;}
.xe2_c00225{left:599.040000pt;}
.x90_c00225{left:600.000000pt;}
.xd0_c00225{left:604.000000pt;}
.x45_c00225{left:608.000000pt;}
.xad_c00225{left:610.666667pt;}
.x52_c00225{left:612.373333pt;}
.x9c_c00225{left:614.666667pt;}
.x78_c00225{left:616.000000pt;}
.x103_c00225{left:617.333333pt;}
.x1b_c00225{left:618.293333pt;}
.xd_c00225{left:620.000000pt;}
.x5d_c00225{left:622.666667pt;}
.x79_c00225{left:626.666667pt;}
.xe7_c00225{left:629.706667pt;}
.x7f_c00225{left:631.040000pt;}
.x53_c00225{left:636.000000pt;}
.x32_c00225{left:637.333333pt;}
.x27_c00225{left:638.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_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_14c3af9c31e0626ba4eecc59.woff2')format("woff");}.ff1_c00226{font-family:ff1_c00226;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m71_c00226{transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);}
.me0_c00226{transform:matrix(0.344118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344118,0.000000,0.000000,0.250000,0,0);}
.m85_c00226{transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);}
.m92_c00226{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.m9a_c00226{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.mb6_c00226{transform:matrix(0.362033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362033,0.000000,0.000000,0.250000,0,0);}
.m69_c00226{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m77_c00226{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m2b_c00226{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mc1_c00226{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.me1_c00226{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.mb9_c00226{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mda_c00226{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m7a_c00226{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.ma5_c00226{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mad_c00226{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m6b_c00226{transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);}
.m15_c00226{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m7e_c00226{transform:matrix(0.384508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384508,0.000000,0.000000,0.250000,0,0);}
.m40_c00226{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.me5_c00226{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m3d_c00226{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m3b_c00226{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m14_c00226{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m3e_c00226{transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);}
.m90_c00226{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m82_c00226{transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);}
.ma9_c00226{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m22_c00226{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.mbb_c00226{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.md2_c00226{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m1c_c00226{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m29_c00226{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m76_c00226{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mf4_c00226{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.mf2_c00226{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m54_c00226{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.mac_c00226{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.mce_c00226{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m31_c00226{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m8e_c00226{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m27_c00226{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m6_c00226{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m95_c00226{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m9_c00226{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m58_c00226{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m3_c00226{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m5b_c00226{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.m4f_c00226{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m7d_c00226{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m2a_c00226{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m2f_c00226{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m33_c00226{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.ma7_c00226{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m16_c00226{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m38_c00226{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m53_c00226{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m6a_c00226{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m21_c00226{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m88_c00226{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m5d_c00226{transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);}
.ma3_c00226{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mc2_c00226{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.mc5_c00226{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m44_c00226{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m5a_c00226{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m91_c00226{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.md6_c00226{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.mea_c00226{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.mf_c00226{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m9b_c00226{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.mc9_c00226{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.mba_c00226{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m57_c00226{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m2d_c00226{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m63_c00226{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m9c_c00226{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.me9_c00226{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m89_c00226{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m5c_c00226{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m7c_c00226{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.meb_c00226{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m81_c00226{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.mb3_c00226{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m61_c00226{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m8d_c00226{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.maf_c00226{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m4b_c00226{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.ma4_c00226{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m8f_c00226{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m37_c00226{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m4a_c00226{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.md8_c00226{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.mf3_c00226{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m2c_c00226{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m79_c00226{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m26_c00226{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m30_c00226{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mb5_c00226{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m6e_c00226{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m68_c00226{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.m72_c00226{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m9d_c00226{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m80_c00226{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m52_c00226{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m5f_c00226{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m11_c00226{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m36_c00226{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.mdd_c00226{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.mcc_c00226{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.med_c00226{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.m3a_c00226{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m64_c00226{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m10_c00226{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m7b_c00226{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m84_c00226{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m6c_c00226{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m1b_c00226{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m1_c00226{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mdf_c00226{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.me6_c00226{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m78_c00226{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m17_c00226{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);}
.mab_c00226{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m74_c00226{transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);}
.m12_c00226{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.md4_c00226{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m3f_c00226{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.me2_c00226{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m23_c00226{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.me4_c00226{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m7_c00226{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.md9_c00226{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m8b_c00226{transform:matrix(0.512059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512059,0.000000,0.000000,0.250000,0,0);}
.m25_c00226{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mb2_c00226{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.ma2_c00226{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m9e_c00226{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mc3_c00226{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m86_c00226{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m9f_c00226{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mc6_c00226{transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);}
.mdb_c00226{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_c00226{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m96_c00226{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m4e_c00226{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mb4_c00226{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m51_c00226{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m59_c00226{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m5_c00226{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.ma6_c00226{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m97_c00226{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.ma1_c00226{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.me3_c00226{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m42_c00226{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m8c_c00226{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m62_c00226{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mbe_c00226{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m93_c00226{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m48_c00226{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m1f_c00226{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m13_c00226{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mbd_c00226{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m28_c00226{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m60_c00226{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.ma_c00226{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m32_c00226{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mc4_c00226{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m87_c00226{transform:matrix(0.554412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554412,0.000000,0.000000,0.250000,0,0);}
.m55_c00226{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m1e_c00226{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m47_c00226{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m18_c00226{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m98_c00226{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.me_c00226{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m5e_c00226{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m50_c00226{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m49_c00226{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mbf_c00226{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.mef_c00226{transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);}
.m1d_c00226{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.mb8_c00226{transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);}
.mca_c00226{transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);}
.m99_c00226{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m19_c00226{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m41_c00226{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.md_c00226{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mb_c00226{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m39_c00226{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m34_c00226{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.mb1_c00226{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mee_c00226{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m20_c00226{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.mbc_c00226{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m24_c00226{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.md3_c00226{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m7f_c00226{transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);}
.m66_c00226{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m43_c00226{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m2_c00226{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.mc7_c00226{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m3c_c00226{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m0_c00226{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m56_c00226{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m1a_c00226{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m2e_c00226{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.ma0_c00226{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mcb_c00226{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.md5_c00226{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.md1_c00226{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.mc_c00226{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);}
.m65_c00226{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.md0_c00226{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.mcf_c00226{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.mb0_c00226{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.mde_c00226{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m46_c00226{transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);}
.mdc_c00226{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);}
.mec_c00226{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.maa_c00226{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m4_c00226{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m83_c00226{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.mc0_c00226{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m8_c00226{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.me7_c00226{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m67_c00226{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.mae_c00226{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m6d_c00226{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);}
.mc8_c00226{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.mf1_c00226{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.mb7_c00226{transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);}
.me8_c00226{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m70_c00226{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.ma8_c00226{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m94_c00226{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m4c_c00226{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.mf0_c00226{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m75_c00226{transform:matrix(0.801176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.801176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.801176,0.000000,0.000000,0.250000,0,0);}
.m45_c00226{transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);}
.md7_c00226{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m73_c00226{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m6f_c00226{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.mcd_c00226{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.m4d_c00226{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m8a_c00226{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws1_c00226{word-spacing:-4.506262px;}
.ws0_c00226{word-spacing:-1.792767px;}
.ws3_c00226{word-spacing:0.000000px;}
.ws2_c00226{word-spacing:1.767045px;}
.fc0_c00226{color:transparent;}
.fs6_c00226{font-size:3.420000px;}
.fs7_c00226{font-size:11.880000px;}
.fs8_c00226{font-size:13.620000px;}
.fs5_c00226{font-size:18.720000px;}
.fs0_c00226{font-size:20.400000px;}
.fs3_c00226{font-size:25.500000px;}
.fs1_c00226{font-size:28.920000px;}
.fs4_c00226{font-size:32.340000px;}
.fs2_c00226{font-size:35.700000px;}
.y0_c00226{bottom:0.000000px;}
.ybf_c00226{bottom:251.745000px;}
.yc1_c00226{bottom:251.970000px;}
.yc5_c00226{bottom:252.825000px;}
.yc3_c00226{bottom:253.245000px;}
.yc4_c00226{bottom:253.905000px;}
.yc2_c00226{bottom:254.130000px;}
.yc0_c00226{bottom:255.405000px;}
.ybc_c00226{bottom:270.405000px;}
.ybe_c00226{bottom:271.470000px;}
.yb9_c00226{bottom:272.745000px;}
.ybd_c00226{bottom:274.470000px;}
.ybb_c00226{bottom:274.905000px;}
.yba_c00226{bottom:274.920000px;}
.yb7_c00226{bottom:292.245000px;}
.yb8_c00226{bottom:293.130000px;}
.yb6_c00226{bottom:294.405000px;}
.yb5_c00226{bottom:320.325000px;}
.yb3_c00226{bottom:321.405000px;}
.yb1_c00226{bottom:322.470000px;}
.yb4_c00226{bottom:323.130000px;}
.yb2_c00226{bottom:323.550000px;}
.yaf_c00226{bottom:334.470000px;}
.yb0_c00226{bottom:335.325000px;}
.yaa_c00226{bottom:335.550000px;}
.yac_c00226{bottom:335.970000px;}
.yab_c00226{bottom:336.405000px;}
.yad_c00226{bottom:337.470000px;}
.yae_c00226{bottom:338.550000px;}
.ya9_c00226{bottom:364.245000px;}
.ya7_c00226{bottom:365.745000px;}
.ya6_c00226{bottom:366.405000px;}
.ya8_c00226{bottom:367.905000px;}
.ya2_c00226{bottom:382.905000px;}
.ya4_c00226{bottom:383.745000px;}
.ya3_c00226{bottom:383.970000px;}
.ya5_c00226{bottom:384.630000px;}
.ya1_c00226{bottom:385.245000px;}
.ya0_c00226{bottom:385.905000px;}
.y9c_c00226{bottom:413.325000px;}
.y9f_c00226{bottom:413.550000px;}
.y9d_c00226{bottom:415.695000px;}
.y9e_c00226{bottom:416.550000px;}
.y98_c00226{bottom:427.905000px;}
.y96_c00226{bottom:428.970000px;}
.y9b_c00226{bottom:429.195000px;}
.y99_c00226{bottom:429.405000px;}
.y95_c00226{bottom:429.630000px;}
.y9a_c00226{bottom:430.050000px;}
.y97_c00226{bottom:430.470000px;}
.y94_c00226{bottom:441.825000px;}
.y93_c00226{bottom:442.905000px;}
.y92_c00226{bottom:443.325000px;}
.y8f_c00226{bottom:443.970000px;}
.y8e_c00226{bottom:444.630000px;}
.y90_c00226{bottom:445.470000px;}
.y91_c00226{bottom:445.695000px;}
.y8c_c00226{bottom:470.745000px;}
.y8d_c00226{bottom:472.905000px;}
.y8a_c00226{bottom:473.130000px;}
.y8b_c00226{bottom:473.970000px;}
.y89_c00226{bottom:490.245000px;}
.y85_c00226{bottom:491.325000px;}
.y87_c00226{bottom:491.745000px;}
.y88_c00226{bottom:492.405000px;}
.y86_c00226{bottom:492.630000px;}
.y84_c00226{bottom:493.905000px;}
.y7e_c00226{bottom:509.745000px;}
.y7f_c00226{bottom:511.245000px;}
.y83_c00226{bottom:511.905000px;}
.y80_c00226{bottom:512.130000px;}
.y82_c00226{bottom:512.970000px;}
.y81_c00226{bottom:513.405000px;}
.y7b_c00226{bottom:529.905000px;}
.y79_c00226{bottom:530.745000px;}
.y7d_c00226{bottom:531.630000px;}
.y7a_c00226{bottom:532.905000px;}
.y7c_c00226{bottom:533.130000px;}
.y78_c00226{bottom:550.245000px;}
.y76_c00226{bottom:552.405000px;}
.y77_c00226{bottom:553.920000px;}
.y75_c00226{bottom:571.905000px;}
.y73_c00226{bottom:589.245000px;}
.y74_c00226{bottom:590.325000px;}
.y72_c00226{bottom:590.745000px;}
.y71_c00226{bottom:591.405000px;}
.y6f_c00226{bottom:592.905000px;}
.y70_c00226{bottom:592.920000px;}
.y6e_c00226{bottom:610.245000px;}
.y6b_c00226{bottom:610.905000px;}
.y6c_c00226{bottom:611.130000px;}
.y6d_c00226{bottom:612.420000px;}
.y6a_c00226{bottom:628.905000px;}
.y67_c00226{bottom:629.745000px;}
.y69_c00226{bottom:630.825000px;}
.y68_c00226{bottom:631.920000px;}
.y63_c00226{bottom:649.245000px;}
.y65_c00226{bottom:650.325000px;}
.y66_c00226{bottom:651.405000px;}
.y64_c00226{bottom:651.420000px;}
.y61_c00226{bottom:674.970000px;}
.y5d_c00226{bottom:675.825000px;}
.y62_c00226{bottom:676.050000px;}
.y5f_c00226{bottom:676.905000px;}
.y5e_c00226{bottom:677.970000px;}
.y60_c00226{bottom:679.050000px;}
.y5b_c00226{bottom:695.325000px;}
.y5c_c00226{bottom:695.970000px;}
.y5a_c00226{bottom:696.405000px;}
.y59_c00226{bottom:722.745000px;}
.y57_c00226{bottom:723.825000px;}
.y58_c00226{bottom:725.970000px;}
.y55_c00226{bottom:762.630000px;}
.y50_c00226{bottom:763.275000px;}
.y56_c00226{bottom:765.405000px;}
.y4e_c00226{bottom:766.050000px;}
.y51_c00226{bottom:766.245000px;}
.y54_c00226{bottom:767.130000px;}
.y52_c00226{bottom:767.325000px;}
.y53_c00226{bottom:768.405000px;}
.y4f_c00226{bottom:771.630000px;}
.y4b_c00226{bottom:783.405000px;}
.y4d_c00226{bottom:784.905000px;}
.y4a_c00226{bottom:785.745000px;}
.y48_c00226{bottom:786.630000px;}
.y49_c00226{bottom:786.825000px;}
.y4c_c00226{bottom:787.905000px;}
.y43_c00226{bottom:804.405000px;}
.y46_c00226{bottom:805.245000px;}
.y47_c00226{bottom:805.470000px;}
.y45_c00226{bottom:806.325000px;}
.y44_c00226{bottom:807.405000px;}
.y41_c00226{bottom:823.905000px;}
.y42_c00226{bottom:824.745000px;}
.y40_c00226{bottom:825.825000px;}
.y3f_c00226{bottom:826.905000px;}
.y3e_c00226{bottom:843.405000px;}
.y3c_c00226{bottom:844.245000px;}
.y3b_c00226{bottom:845.325000px;}
.y3d_c00226{bottom:845.745000px;}
.y38_c00226{bottom:846.405000px;}
.y3a_c00226{bottom:846.825000px;}
.y39_c00226{bottom:847.905000px;}
.y35_c00226{bottom:863.745000px;}
.y36_c00226{bottom:863.970000px;}
.y33_c00226{bottom:864.825000px;}
.y34_c00226{bottom:865.245000px;}
.y32_c00226{bottom:865.905000px;}
.y37_c00226{bottom:866.970000px;}
.y2c_c00226{bottom:882.405000px;}
.y2a_c00226{bottom:882.630000px;}
.y29_c00226{bottom:883.470000px;}
.y28_c00226{bottom:884.325000px;}
.y31_c00226{bottom:884.745000px;}
.y2b_c00226{bottom:885.405000px;}
.y2e_c00226{bottom:885.630000px;}
.y2d_c00226{bottom:885.825000px;}
.y30_c00226{bottom:886.905000px;}
.y2f_c00226{bottom:886.920000px;}
.y24_c00226{bottom:901.905000px;}
.y26_c00226{bottom:902.325000px;}
.y23_c00226{bottom:903.405000px;}
.y22_c00226{bottom:904.245000px;}
.y27_c00226{bottom:905.325000px;}
.y25_c00226{bottom:906.405000px;}
.y1e_c00226{bottom:922.905000px;}
.y20_c00226{bottom:923.745000px;}
.y21_c00226{bottom:924.825000px;}
.y1f_c00226{bottom:925.905000px;}
.y1c_c00226{bottom:942.405000px;}
.y1b_c00226{bottom:943.245000px;}
.y1d_c00226{bottom:943.470000px;}
.y1a_c00226{bottom:945.405000px;}
.y18_c00226{bottom:961.905000px;}
.y17_c00226{bottom:962.745000px;}
.y19_c00226{bottom:962.970000px;}
.y16_c00226{bottom:964.905000px;}
.y15_c00226{bottom:980.325000px;}
.y14_c00226{bottom:981.405000px;}
.y12_c00226{bottom:981.825000px;}
.y13_c00226{bottom:982.245000px;}
.y11_c00226{bottom:984.405000px;}
.y10_c00226{bottom:1001.745000px;}
.ye_c00226{bottom:1003.905000px;}
.yf_c00226{bottom:1004.970000px;}
.yc_c00226{bottom:1020.405000px;}
.yd_c00226{bottom:1021.245000px;}
.ya_c00226{bottom:1023.405000px;}
.yb_c00226{bottom:1024.470000px;}
.y6_c00226{bottom:1040.325000px;}
.y9_c00226{bottom:1040.745000px;}
.y7_c00226{bottom:1042.905000px;}
.y8_c00226{bottom:1043.970000px;}
.y4_c00226{bottom:1061.745000px;}
.y5_c00226{bottom:1063.470000px;}
.y3_c00226{bottom:1063.905000px;}
.y2_c00226{bottom:1099.905000px;}
.y1_c00226{bottom:1100.550000px;}
.h7_c00226{height:4.206533px;}
.h8_c00226{height:14.612168px;}
.h9_c00226{height:16.752334px;}
.h6_c00226{height:23.025234px;}
.h1_c00226{height:25.091602px;}
.h4_c00226{height:31.364502px;}
.h2_c00226{height:35.571035px;}
.h5_c00226{height:39.777568px;}
.h3_c00226{height:43.910303px;}
.h0_c00226{height:1335.000000px;}
.w0_c00226{width:880.500000px;}
.x0_c00226{left:0.000000px;}
.x3_c00226{left:151.080000px;}
.x86_c00226{left:153.000000px;}
.xb6_c00226{left:154.080000px;}
.xc3_c00226{left:155.580000px;}
.x20_c00226{left:166.080000px;}
.xa2_c00226{left:169.920000px;}
.xa8_c00226{left:171.000000px;}
.xed_c00226{left:172.500000px;}
.x8f_c00226{left:178.500000px;}
.x90_c00226{left:182.580000px;}
.x69_c00226{left:184.080000px;}
.x80_c00226{left:185.580000px;}
.x1d_c00226{left:187.080000px;}
.x2a_c00226{left:189.000000px;}
.x33_c00226{left:190.500000px;}
.x3f_c00226{left:192.000000px;}
.x71_c00226{left:193.080000px;}
.xcd_c00226{left:194.580000px;}
.x5e_c00226{left:198.420000px;}
.xbe_c00226{left:201.000000px;}
.x4_c00226{left:202.080000px;}
.x1e_c00226{left:204.000000px;}
.xe2_c00226{left:207.000000px;}
.xa3_c00226{left:208.920000px;}
.x11_c00226{left:210.420000px;}
.x72_c00226{left:211.500000px;}
.xce_c00226{left:214.500000px;}
.x4a_c00226{left:217.500000px;}
.x5f_c00226{left:220.500000px;}
.xb7_c00226{left:221.580000px;}
.x81_c00226{left:223.500000px;}
.x91_c00226{left:225.000000px;}
.x6a_c00226{left:228.420000px;}
.x1f_c00226{left:229.920000px;}
.x21_c00226{left:233.580000px;}
.xe4_c00226{left:237.000000px;}
.xee_c00226{left:238.500000px;}
.xbf_c00226{left:243.000000px;}
.xe8_c00226{left:244.920000px;}
.x60_c00226{left:246.000000px;}
.xea_c00226{left:247.500000px;}
.x12_c00226{left:249.000000px;}
.xa9_c00226{left:250.500000px;}
.x5_c00226{left:252.000000px;}
.xd4_c00226{left:253.080000px;}
.xc4_c00226{left:255.000000px;}
.x40_c00226{left:256.080000px;}
.x87_c00226{left:259.500000px;}
.xef_c00226{left:261.000000px;}
.xaf_c00226{left:262.500000px;}
.x13_c00226{left:264.420000px;}
.x2b_c00226{left:266.580000px;}
.x73_c00226{left:267.855000px;}
.x4b_c00226{left:270.000000px;}
.x6_c00226{left:271.920000px;}
.x61_c00226{left:273.420000px;}
.xec_c00226{left:276.000000px;}
.x34_c00226{left:277.080000px;}
.xcf_c00226{left:279.000000px;}
.x6b_c00226{left:280.500000px;}
.x52_c00226{left:282.420000px;}
.xc5_c00226{left:283.500000px;}
.x82_c00226{left:286.500000px;}
.x41_c00226{left:287.580000px;}
.xa4_c00226{left:289.500000px;}
.x14_c00226{left:291.000000px;}
.x88_c00226{left:292.080000px;}
.x7_c00226{left:298.500000px;}
.x62_c00226{left:300.420000px;}
.xaa_c00226{left:301.500000px;}
.x42_c00226{left:305.580000px;}
.x74_c00226{left:307.275000px;}
.x53_c00226{left:309.000000px;}
.xdb_c00226{left:310.500000px;}
.xe9_c00226{left:311.580000px;}
.xb0_c00226{left:313.500000px;}
.x35_c00226{left:314.580000px;}
.x22_c00226{left:316.500000px;}
.xd0_c00226{left:319.080000px;}
.xab_c00226{left:322.080000px;}
.x43_c00226{left:325.920000px;}
.x89_c00226{left:327.000000px;}
.xd8_c00226{left:330.000000px;}
.xd5_c00226{left:331.500000px;}
.x4c_c00226{left:335.580000px;}
.xe5_c00226{left:337.500000px;}
.x15_c00226{left:339.000000px;}
.xb8_c00226{left:342.000000px;}
.x75_c00226{left:344.580000px;}
.x7a_c00226{left:346.080000px;}
.xa5_c00226{left:348.000000px;}
.xac_c00226{left:349.500000px;}
.x6c_c00226{left:353.580000px;}
.x83_c00226{left:356.355000px;}
.x2c_c00226{left:357.645000px;}
.x54_c00226{left:360.000000px;}
.xb9_c00226{left:361.500000px;}
.xb1_c00226{left:364.500000px;}
.x4d_c00226{left:366.000000px;}
.x36_c00226{left:367.920000px;}
.xe3_c00226{left:370.920000px;}
.x44_c00226{left:373.080000px;}
.x63_c00226{left:376.500000px;}
.x92_c00226{left:378.420000px;}
.x98_c00226{left:382.500000px;}
.x76_c00226{left:387.420000px;}
.x9e_c00226{left:388.500000px;}
.xa6_c00226{left:391.500000px;}
.x8_c00226{left:393.000000px;}
.x9b_c00226{left:395.580000px;}
.x1_c00226{left:397.500000px;}
.xd6_c00226{left:399.420000px;}
.x37_c00226{left:400.500000px;}
.xc6_c00226{left:401.580000px;}
.x93_c00226{left:403.500000px;}
.xad_c00226{left:406.500000px;}
.x7b_c00226{left:407.580000px;}
.x94_c00226{left:409.500000px;}
.xf0_c00226{left:415.920000px;}
.x4e_c00226{left:417.420000px;}
.x23_c00226{left:419.580000px;}
.x9c_c00226{left:421.080000px;}
.x8a_c00226{left:423.000000px;}
.x2d_c00226{left:424.080000px;}
.x55_c00226{left:426.000000px;}
.x16_c00226{left:427.500000px;}
.x7c_c00226{left:429.000000px;}
.xb2_c00226{left:430.080000px;}
.xd9_c00226{left:431.580000px;}
.x9f_c00226{left:435.420000px;}
.x9_c00226{left:439.500000px;}
.x45_c00226{left:442.500000px;}
.x56_c00226{left:443.580000px;}
.x17_c00226{left:445.500000px;}
.xdc_c00226{left:447.000000px;}
.xc7_c00226{left:448.500000px;}
.x95_c00226{left:449.580000px;}
.x64_c00226{left:451.500000px;}
.xa7_c00226{left:453.000000px;}
.xa_c00226{left:455.355000px;}
.xae_c00226{left:458.580000px;}
.x38_c00226{left:460.080000px;}
.x57_c00226{left:462.000000px;}
.x99_c00226{left:463.080000px;}
.xd7_c00226{left:464.580000px;}
.x24_c00226{left:466.920000px;}
.xe6_c00226{left:469.080000px;}
.xf1_c00226{left:474.420000px;}
.x2e_c00226{left:475.500000px;}
.xc0_c00226{left:478.920000px;}
.x8b_c00226{left:480.000000px;}
.x58_c00226{left:481.500000px;}
.x96_c00226{left:483.420000px;}
.x39_c00226{left:485.580000px;}
.x9d_c00226{left:487.500000px;}
.xb_c00226{left:493.920000px;}
.xba_c00226{left:495.000000px;}
.xa0_c00226{left:498.000000px;}
.xc8_c00226{left:499.500000px;}
.x18_c00226{left:500.580000px;}
.x65_c00226{left:501.855000px;}
.xda_c00226{left:504.000000px;}
.x7d_c00226{left:505.920000px;}
.x3a_c00226{left:512.580000px;}
.xd1_c00226{left:514.080000px;}
.x6d_c00226{left:517.920000px;}
.xf4_c00226{left:519.000000px;}
.xc_c00226{left:520.500000px;}
.xdd_c00226{left:522.420000px;}
.x59_c00226{left:525.420000px;}
.xc9_c00226{left:526.500000px;}
.x46_c00226{left:529.080000px;}
.x25_c00226{left:532.080000px;}
.x9a_c00226{left:533.775000px;}
.x3b_c00226{left:538.500000px;}
.x8c_c00226{left:542.580000px;}
.x7e_c00226{left:546.420000px;}
.x19_c00226{left:547.500000px;}
.x2f_c00226{left:550.500000px;}
.x5a_c00226{left:551.775000px;}
.xf2_c00226{left:553.080000px;}
.x47_c00226{left:555.000000px;}
.xb3_c00226{left:558.420000px;}
.xbb_c00226{left:561.420000px;}
.xe7_c00226{left:565.920000px;}
.x66_c00226{left:570.000000px;}
.xde_c00226{left:571.500000px;}
.x6e_c00226{left:572.580000px;}
.x77_c00226{left:574.920000px;}
.x8d_c00226{left:576.000000px;}
.x48_c00226{left:580.500000px;}
.xd2_c00226{left:586.080000px;}
.x30_c00226{left:587.580000px;}
.x3c_c00226{left:589.500000px;}
.x5b_c00226{left:590.775000px;}
.x26_c00226{left:592.080000px;}
.xb4_c00226{left:594.420000px;}
.xd_c00226{left:603.420000px;}
.x67_c00226{left:604.500000px;}
.x4f_c00226{left:607.080000px;}
.xa1_c00226{left:608.355000px;}
.x1a_c00226{left:609.420000px;}
.x6f_c00226{left:611.580000px;}
.xdf_c00226{left:613.080000px;}
.xc1_c00226{left:616.500000px;}
.x84_c00226{left:618.000000px;}
.xca_c00226{left:621.000000px;}
.x27_c00226{left:624.420000px;}
.x31_c00226{left:625.500000px;}
.x5c_c00226{left:627.000000px;}
.x78_c00226{left:628.500000px;}
.xd3_c00226{left:634.500000px;}
.xf5_c00226{left:637.500000px;}
.x7f_c00226{left:638.580000px;}
.xbc_c00226{left:640.500000px;}
.x49_c00226{left:642.000000px;}
.xe_c00226{left:645.000000px;}
.x50_c00226{left:646.500000px;}
.x28_c00226{left:651.420000px;}
.x85_c00226{left:652.500000px;}
.x70_c00226{left:654.000000px;}
.x3d_c00226{left:655.080000px;}
.x8e_c00226{left:657.000000px;}
.xf3_c00226{left:658.920000px;}
.x79_c00226{left:660.000000px;}
.x68_c00226{left:664.080000px;}
.xf_c00226{left:665.580000px;}
.x51_c00226{left:672.000000px;}
.xe0_c00226{left:678.000000px;}
.xbd_c00226{left:680.355000px;}
.xc2_c00226{left:687.000000px;}
.x1b_c00226{left:688.080000px;}
.xcb_c00226{left:689.580000px;}
.x10_c00226{left:691.080000px;}
.xb5_c00226{left:692.580000px;}
.xeb_c00226{left:695.580000px;}
.x5d_c00226{left:697.500000px;}
.x97_c00226{left:699.000000px;}
.x29_c00226{left:701.580000px;}
.x2_c00226{left:703.920000px;}
.x1c_c00226{left:705.420000px;}
.x3e_c00226{left:706.920000px;}
.xcc_c00226{left:709.920000px;}
.xe1_c00226{left:711.420000px;}
.x32_c00226{left:713.580000px;}
@media print{
.v0_c00226{vertical-align:0.000000pt;}
.ls0_c00226{letter-spacing:0.000000pt;}
.ws1_c00226{word-spacing:-4.005566pt;}
.ws0_c00226{word-spacing:-1.593571pt;}
.ws3_c00226{word-spacing:0.000000pt;}
.ws2_c00226{word-spacing:1.570707pt;}
.fs6_c00226{font-size:3.040000pt;}
.fs7_c00226{font-size:10.560000pt;}
.fs8_c00226{font-size:12.106667pt;}
.fs5_c00226{font-size:16.640000pt;}
.fs0_c00226{font-size:18.133333pt;}
.fs3_c00226{font-size:22.666667pt;}
.fs1_c00226{font-size:25.706667pt;}
.fs4_c00226{font-size:28.746667pt;}
.fs2_c00226{font-size:31.733333pt;}
.y0_c00226{bottom:0.000000pt;}
.ybf_c00226{bottom:223.773333pt;}
.yc1_c00226{bottom:223.973333pt;}
.yc5_c00226{bottom:224.733333pt;}
.yc3_c00226{bottom:225.106667pt;}
.yc4_c00226{bottom:225.693333pt;}
.yc2_c00226{bottom:225.893333pt;}
.yc0_c00226{bottom:227.026667pt;}
.ybc_c00226{bottom:240.360000pt;}
.ybe_c00226{bottom:241.306667pt;}
.yb9_c00226{bottom:242.440000pt;}
.ybd_c00226{bottom:243.973333pt;}
.ybb_c00226{bottom:244.360000pt;}
.yba_c00226{bottom:244.373333pt;}
.yb7_c00226{bottom:259.773333pt;}
.yb8_c00226{bottom:260.560000pt;}
.yb6_c00226{bottom:261.693333pt;}
.yb5_c00226{bottom:284.733333pt;}
.yb3_c00226{bottom:285.693333pt;}
.yb1_c00226{bottom:286.640000pt;}
.yb4_c00226{bottom:287.226667pt;}
.yb2_c00226{bottom:287.600000pt;}
.yaf_c00226{bottom:297.306667pt;}
.yb0_c00226{bottom:298.066667pt;}
.yaa_c00226{bottom:298.266667pt;}
.yac_c00226{bottom:298.640000pt;}
.yab_c00226{bottom:299.026667pt;}
.yad_c00226{bottom:299.973333pt;}
.yae_c00226{bottom:300.933333pt;}
.ya9_c00226{bottom:323.773333pt;}
.ya7_c00226{bottom:325.106667pt;}
.ya6_c00226{bottom:325.693333pt;}
.ya8_c00226{bottom:327.026667pt;}
.ya2_c00226{bottom:340.360000pt;}
.ya4_c00226{bottom:341.106667pt;}
.ya3_c00226{bottom:341.306667pt;}
.ya5_c00226{bottom:341.893333pt;}
.ya1_c00226{bottom:342.440000pt;}
.ya0_c00226{bottom:343.026667pt;}
.y9c_c00226{bottom:367.400000pt;}
.y9f_c00226{bottom:367.600000pt;}
.y9d_c00226{bottom:369.506667pt;}
.y9e_c00226{bottom:370.266667pt;}
.y98_c00226{bottom:380.360000pt;}
.y96_c00226{bottom:381.306667pt;}
.y9b_c00226{bottom:381.506667pt;}
.y99_c00226{bottom:381.693333pt;}
.y95_c00226{bottom:381.893333pt;}
.y9a_c00226{bottom:382.266667pt;}
.y97_c00226{bottom:382.640000pt;}
.y94_c00226{bottom:392.733333pt;}
.y93_c00226{bottom:393.693333pt;}
.y92_c00226{bottom:394.066667pt;}
.y8f_c00226{bottom:394.640000pt;}
.y8e_c00226{bottom:395.226667pt;}
.y90_c00226{bottom:395.973333pt;}
.y91_c00226{bottom:396.173333pt;}
.y8c_c00226{bottom:418.440000pt;}
.y8d_c00226{bottom:420.360000pt;}
.y8a_c00226{bottom:420.560000pt;}
.y8b_c00226{bottom:421.306667pt;}
.y89_c00226{bottom:435.773333pt;}
.y85_c00226{bottom:436.733333pt;}
.y87_c00226{bottom:437.106667pt;}
.y88_c00226{bottom:437.693333pt;}
.y86_c00226{bottom:437.893333pt;}
.y84_c00226{bottom:439.026667pt;}
.y7e_c00226{bottom:453.106667pt;}
.y7f_c00226{bottom:454.440000pt;}
.y83_c00226{bottom:455.026667pt;}
.y80_c00226{bottom:455.226667pt;}
.y82_c00226{bottom:455.973333pt;}
.y81_c00226{bottom:456.360000pt;}
.y7b_c00226{bottom:471.026667pt;}
.y79_c00226{bottom:471.773333pt;}
.y7d_c00226{bottom:472.560000pt;}
.y7a_c00226{bottom:473.693333pt;}
.y7c_c00226{bottom:473.893333pt;}
.y78_c00226{bottom:489.106667pt;}
.y76_c00226{bottom:491.026667pt;}
.y77_c00226{bottom:492.373333pt;}
.y75_c00226{bottom:508.360000pt;}
.y73_c00226{bottom:523.773333pt;}
.y74_c00226{bottom:524.733333pt;}
.y72_c00226{bottom:525.106667pt;}
.y71_c00226{bottom:525.693333pt;}
.y6f_c00226{bottom:527.026667pt;}
.y70_c00226{bottom:527.040000pt;}
.y6e_c00226{bottom:542.440000pt;}
.y6b_c00226{bottom:543.026667pt;}
.y6c_c00226{bottom:543.226667pt;}
.y6d_c00226{bottom:544.373333pt;}
.y6a_c00226{bottom:559.026667pt;}
.y67_c00226{bottom:559.773333pt;}
.y69_c00226{bottom:560.733333pt;}
.y68_c00226{bottom:561.706667pt;}
.y63_c00226{bottom:577.106667pt;}
.y65_c00226{bottom:578.066667pt;}
.y66_c00226{bottom:579.026667pt;}
.y64_c00226{bottom:579.040000pt;}
.y61_c00226{bottom:599.973333pt;}
.y5d_c00226{bottom:600.733333pt;}
.y62_c00226{bottom:600.933333pt;}
.y5f_c00226{bottom:601.693333pt;}
.y5e_c00226{bottom:602.640000pt;}
.y60_c00226{bottom:603.600000pt;}
.y5b_c00226{bottom:618.066667pt;}
.y5c_c00226{bottom:618.640000pt;}
.y5a_c00226{bottom:619.026667pt;}
.y59_c00226{bottom:642.440000pt;}
.y57_c00226{bottom:643.400000pt;}
.y58_c00226{bottom:645.306667pt;}
.y55_c00226{bottom:677.893333pt;}
.y50_c00226{bottom:678.466667pt;}
.y56_c00226{bottom:680.360000pt;}
.y4e_c00226{bottom:680.933333pt;}
.y51_c00226{bottom:681.106667pt;}
.y54_c00226{bottom:681.893333pt;}
.y52_c00226{bottom:682.066667pt;}
.y53_c00226{bottom:683.026667pt;}
.y4f_c00226{bottom:685.893333pt;}
.y4b_c00226{bottom:696.360000pt;}
.y4d_c00226{bottom:697.693333pt;}
.y4a_c00226{bottom:698.440000pt;}
.y48_c00226{bottom:699.226667pt;}
.y49_c00226{bottom:699.400000pt;}
.y4c_c00226{bottom:700.360000pt;}
.y43_c00226{bottom:715.026667pt;}
.y46_c00226{bottom:715.773333pt;}
.y47_c00226{bottom:715.973333pt;}
.y45_c00226{bottom:716.733333pt;}
.y44_c00226{bottom:717.693333pt;}
.y41_c00226{bottom:732.360000pt;}
.y42_c00226{bottom:733.106667pt;}
.y40_c00226{bottom:734.066667pt;}
.y3f_c00226{bottom:735.026667pt;}
.y3e_c00226{bottom:749.693333pt;}
.y3c_c00226{bottom:750.440000pt;}
.y3b_c00226{bottom:751.400000pt;}
.y3d_c00226{bottom:751.773333pt;}
.y38_c00226{bottom:752.360000pt;}
.y3a_c00226{bottom:752.733333pt;}
.y39_c00226{bottom:753.693333pt;}
.y35_c00226{bottom:767.773333pt;}
.y36_c00226{bottom:767.973333pt;}
.y33_c00226{bottom:768.733333pt;}
.y34_c00226{bottom:769.106667pt;}
.y32_c00226{bottom:769.693333pt;}
.y37_c00226{bottom:770.640000pt;}
.y2c_c00226{bottom:784.360000pt;}
.y2a_c00226{bottom:784.560000pt;}
.y29_c00226{bottom:785.306667pt;}
.y28_c00226{bottom:786.066667pt;}
.y31_c00226{bottom:786.440000pt;}
.y2b_c00226{bottom:787.026667pt;}
.y2e_c00226{bottom:787.226667pt;}
.y2d_c00226{bottom:787.400000pt;}
.y30_c00226{bottom:788.360000pt;}
.y2f_c00226{bottom:788.373333pt;}
.y24_c00226{bottom:801.693333pt;}
.y26_c00226{bottom:802.066667pt;}
.y23_c00226{bottom:803.026667pt;}
.y22_c00226{bottom:803.773333pt;}
.y27_c00226{bottom:804.733333pt;}
.y25_c00226{bottom:805.693333pt;}
.y1e_c00226{bottom:820.360000pt;}
.y20_c00226{bottom:821.106667pt;}
.y21_c00226{bottom:822.066667pt;}
.y1f_c00226{bottom:823.026667pt;}
.y1c_c00226{bottom:837.693333pt;}
.y1b_c00226{bottom:838.440000pt;}
.y1d_c00226{bottom:838.640000pt;}
.y1a_c00226{bottom:840.360000pt;}
.y18_c00226{bottom:855.026667pt;}
.y17_c00226{bottom:855.773333pt;}
.y19_c00226{bottom:855.973333pt;}
.y16_c00226{bottom:857.693333pt;}
.y15_c00226{bottom:871.400000pt;}
.y14_c00226{bottom:872.360000pt;}
.y12_c00226{bottom:872.733333pt;}
.y13_c00226{bottom:873.106667pt;}
.y11_c00226{bottom:875.026667pt;}
.y10_c00226{bottom:890.440000pt;}
.ye_c00226{bottom:892.360000pt;}
.yf_c00226{bottom:893.306667pt;}
.yc_c00226{bottom:907.026667pt;}
.yd_c00226{bottom:907.773333pt;}
.ya_c00226{bottom:909.693333pt;}
.yb_c00226{bottom:910.640000pt;}
.y6_c00226{bottom:924.733333pt;}
.y9_c00226{bottom:925.106667pt;}
.y7_c00226{bottom:927.026667pt;}
.y8_c00226{bottom:927.973333pt;}
.y4_c00226{bottom:943.773333pt;}
.y5_c00226{bottom:945.306667pt;}
.y3_c00226{bottom:945.693333pt;}
.y2_c00226{bottom:977.693333pt;}
.y1_c00226{bottom:978.266667pt;}
.h7_c00226{height:3.739141pt;}
.h8_c00226{height:12.988594pt;}
.h9_c00226{height:14.890964pt;}
.h6_c00226{height:20.466875pt;}
.h1_c00226{height:22.303646pt;}
.h4_c00226{height:27.879557pt;}
.h2_c00226{height:31.618698pt;}
.h5_c00226{height:35.357839pt;}
.h3_c00226{height:39.031380pt;}
.h0_c00226{height:1186.666667pt;}
.w0_c00226{width:782.666667pt;}
.x0_c00226{left:0.000000pt;}
.x3_c00226{left:134.293333pt;}
.x86_c00226{left:136.000000pt;}
.xb6_c00226{left:136.960000pt;}
.xc3_c00226{left:138.293333pt;}
.x20_c00226{left:147.626667pt;}
.xa2_c00226{left:151.040000pt;}
.xa8_c00226{left:152.000000pt;}
.xed_c00226{left:153.333333pt;}
.x8f_c00226{left:158.666667pt;}
.x90_c00226{left:162.293333pt;}
.x69_c00226{left:163.626667pt;}
.x80_c00226{left:164.960000pt;}
.x1d_c00226{left:166.293333pt;}
.x2a_c00226{left:168.000000pt;}
.x33_c00226{left:169.333333pt;}
.x3f_c00226{left:170.666667pt;}
.x71_c00226{left:171.626667pt;}
.xcd_c00226{left:172.960000pt;}
.x5e_c00226{left:176.373333pt;}
.xbe_c00226{left:178.666667pt;}
.x4_c00226{left:179.626667pt;}
.x1e_c00226{left:181.333333pt;}
.xe2_c00226{left:184.000000pt;}
.xa3_c00226{left:185.706667pt;}
.x11_c00226{left:187.040000pt;}
.x72_c00226{left:188.000000pt;}
.xce_c00226{left:190.666667pt;}
.x4a_c00226{left:193.333333pt;}
.x5f_c00226{left:196.000000pt;}
.xb7_c00226{left:196.960000pt;}
.x81_c00226{left:198.666667pt;}
.x91_c00226{left:200.000000pt;}
.x6a_c00226{left:203.040000pt;}
.x1f_c00226{left:204.373333pt;}
.x21_c00226{left:207.626667pt;}
.xe4_c00226{left:210.666667pt;}
.xee_c00226{left:212.000000pt;}
.xbf_c00226{left:216.000000pt;}
.xe8_c00226{left:217.706667pt;}
.x60_c00226{left:218.666667pt;}
.xea_c00226{left:220.000000pt;}
.x12_c00226{left:221.333333pt;}
.xa9_c00226{left:222.666667pt;}
.x5_c00226{left:224.000000pt;}
.xd4_c00226{left:224.960000pt;}
.xc4_c00226{left:226.666667pt;}
.x40_c00226{left:227.626667pt;}
.x87_c00226{left:230.666667pt;}
.xef_c00226{left:232.000000pt;}
.xaf_c00226{left:233.333333pt;}
.x13_c00226{left:235.040000pt;}
.x2b_c00226{left:236.960000pt;}
.x73_c00226{left:238.093333pt;}
.x4b_c00226{left:240.000000pt;}
.x6_c00226{left:241.706667pt;}
.x61_c00226{left:243.040000pt;}
.xec_c00226{left:245.333333pt;}
.x34_c00226{left:246.293333pt;}
.xcf_c00226{left:248.000000pt;}
.x6b_c00226{left:249.333333pt;}
.x52_c00226{left:251.040000pt;}
.xc5_c00226{left:252.000000pt;}
.x82_c00226{left:254.666667pt;}
.x41_c00226{left:255.626667pt;}
.xa4_c00226{left:257.333333pt;}
.x14_c00226{left:258.666667pt;}
.x88_c00226{left:259.626667pt;}
.x7_c00226{left:265.333333pt;}
.x62_c00226{left:267.040000pt;}
.xaa_c00226{left:268.000000pt;}
.x42_c00226{left:271.626667pt;}
.x74_c00226{left:273.133333pt;}
.x53_c00226{left:274.666667pt;}
.xdb_c00226{left:276.000000pt;}
.xe9_c00226{left:276.960000pt;}
.xb0_c00226{left:278.666667pt;}
.x35_c00226{left:279.626667pt;}
.x22_c00226{left:281.333333pt;}
.xd0_c00226{left:283.626667pt;}
.xab_c00226{left:286.293333pt;}
.x43_c00226{left:289.706667pt;}
.x89_c00226{left:290.666667pt;}
.xd8_c00226{left:293.333333pt;}
.xd5_c00226{left:294.666667pt;}
.x4c_c00226{left:298.293333pt;}
.xe5_c00226{left:300.000000pt;}
.x15_c00226{left:301.333333pt;}
.xb8_c00226{left:304.000000pt;}
.x75_c00226{left:306.293333pt;}
.x7a_c00226{left:307.626667pt;}
.xa5_c00226{left:309.333333pt;}
.xac_c00226{left:310.666667pt;}
.x6c_c00226{left:314.293333pt;}
.x83_c00226{left:316.760000pt;}
.x2c_c00226{left:317.906667pt;}
.x54_c00226{left:320.000000pt;}
.xb9_c00226{left:321.333333pt;}
.xb1_c00226{left:324.000000pt;}
.x4d_c00226{left:325.333333pt;}
.x36_c00226{left:327.040000pt;}
.xe3_c00226{left:329.706667pt;}
.x44_c00226{left:331.626667pt;}
.x63_c00226{left:334.666667pt;}
.x92_c00226{left:336.373333pt;}
.x98_c00226{left:340.000000pt;}
.x76_c00226{left:344.373333pt;}
.x9e_c00226{left:345.333333pt;}
.xa6_c00226{left:348.000000pt;}
.x8_c00226{left:349.333333pt;}
.x9b_c00226{left:351.626667pt;}
.x1_c00226{left:353.333333pt;}
.xd6_c00226{left:355.040000pt;}
.x37_c00226{left:356.000000pt;}
.xc6_c00226{left:356.960000pt;}
.x93_c00226{left:358.666667pt;}
.xad_c00226{left:361.333333pt;}
.x7b_c00226{left:362.293333pt;}
.x94_c00226{left:364.000000pt;}
.xf0_c00226{left:369.706667pt;}
.x4e_c00226{left:371.040000pt;}
.x23_c00226{left:372.960000pt;}
.x9c_c00226{left:374.293333pt;}
.x8a_c00226{left:376.000000pt;}
.x2d_c00226{left:376.960000pt;}
.x55_c00226{left:378.666667pt;}
.x16_c00226{left:380.000000pt;}
.x7c_c00226{left:381.333333pt;}
.xb2_c00226{left:382.293333pt;}
.xd9_c00226{left:383.626667pt;}
.x9f_c00226{left:387.040000pt;}
.x9_c00226{left:390.666667pt;}
.x45_c00226{left:393.333333pt;}
.x56_c00226{left:394.293333pt;}
.x17_c00226{left:396.000000pt;}
.xdc_c00226{left:397.333333pt;}
.xc7_c00226{left:398.666667pt;}
.x95_c00226{left:399.626667pt;}
.x64_c00226{left:401.333333pt;}
.xa7_c00226{left:402.666667pt;}
.xa_c00226{left:404.760000pt;}
.xae_c00226{left:407.626667pt;}
.x38_c00226{left:408.960000pt;}
.x57_c00226{left:410.666667pt;}
.x99_c00226{left:411.626667pt;}
.xd7_c00226{left:412.960000pt;}
.x24_c00226{left:415.040000pt;}
.xe6_c00226{left:416.960000pt;}
.xf1_c00226{left:421.706667pt;}
.x2e_c00226{left:422.666667pt;}
.xc0_c00226{left:425.706667pt;}
.x8b_c00226{left:426.666667pt;}
.x58_c00226{left:428.000000pt;}
.x96_c00226{left:429.706667pt;}
.x39_c00226{left:431.626667pt;}
.x9d_c00226{left:433.333333pt;}
.xb_c00226{left:439.040000pt;}
.xba_c00226{left:440.000000pt;}
.xa0_c00226{left:442.666667pt;}
.xc8_c00226{left:444.000000pt;}
.x18_c00226{left:444.960000pt;}
.x65_c00226{left:446.093333pt;}
.xda_c00226{left:448.000000pt;}
.x7d_c00226{left:449.706667pt;}
.x3a_c00226{left:455.626667pt;}
.xd1_c00226{left:456.960000pt;}
.x6d_c00226{left:460.373333pt;}
.xf4_c00226{left:461.333333pt;}
.xc_c00226{left:462.666667pt;}
.xdd_c00226{left:464.373333pt;}
.x59_c00226{left:467.040000pt;}
.xc9_c00226{left:468.000000pt;}
.x46_c00226{left:470.293333pt;}
.x25_c00226{left:472.960000pt;}
.x9a_c00226{left:474.466667pt;}
.x3b_c00226{left:478.666667pt;}
.x8c_c00226{left:482.293333pt;}
.x7e_c00226{left:485.706667pt;}
.x19_c00226{left:486.666667pt;}
.x2f_c00226{left:489.333333pt;}
.x5a_c00226{left:490.466667pt;}
.xf2_c00226{left:491.626667pt;}
.x47_c00226{left:493.333333pt;}
.xb3_c00226{left:496.373333pt;}
.xbb_c00226{left:499.040000pt;}
.xe7_c00226{left:503.040000pt;}
.x66_c00226{left:506.666667pt;}
.xde_c00226{left:508.000000pt;}
.x6e_c00226{left:508.960000pt;}
.x77_c00226{left:511.040000pt;}
.x8d_c00226{left:512.000000pt;}
.x48_c00226{left:516.000000pt;}
.xd2_c00226{left:520.960000pt;}
.x30_c00226{left:522.293333pt;}
.x3c_c00226{left:524.000000pt;}
.x5b_c00226{left:525.133333pt;}
.x26_c00226{left:526.293333pt;}
.xb4_c00226{left:528.373333pt;}
.xd_c00226{left:536.373333pt;}
.x67_c00226{left:537.333333pt;}
.x4f_c00226{left:539.626667pt;}
.xa1_c00226{left:540.760000pt;}
.x1a_c00226{left:541.706667pt;}
.x6f_c00226{left:543.626667pt;}
.xdf_c00226{left:544.960000pt;}
.xc1_c00226{left:548.000000pt;}
.x84_c00226{left:549.333333pt;}
.xca_c00226{left:552.000000pt;}
.x27_c00226{left:555.040000pt;}
.x31_c00226{left:556.000000pt;}
.x5c_c00226{left:557.333333pt;}
.x78_c00226{left:558.666667pt;}
.xd3_c00226{left:564.000000pt;}
.xf5_c00226{left:566.666667pt;}
.x7f_c00226{left:567.626667pt;}
.xbc_c00226{left:569.333333pt;}
.x49_c00226{left:570.666667pt;}
.xe_c00226{left:573.333333pt;}
.x50_c00226{left:574.666667pt;}
.x28_c00226{left:579.040000pt;}
.x85_c00226{left:580.000000pt;}
.x70_c00226{left:581.333333pt;}
.x3d_c00226{left:582.293333pt;}
.x8e_c00226{left:584.000000pt;}
.xf3_c00226{left:585.706667pt;}
.x79_c00226{left:586.666667pt;}
.x68_c00226{left:590.293333pt;}
.xf_c00226{left:591.626667pt;}
.x51_c00226{left:597.333333pt;}
.xe0_c00226{left:602.666667pt;}
.xbd_c00226{left:604.760000pt;}
.xc2_c00226{left:610.666667pt;}
.x1b_c00226{left:611.626667pt;}
.xcb_c00226{left:612.960000pt;}
.x10_c00226{left:614.293333pt;}
.xb5_c00226{left:615.626667pt;}
.xeb_c00226{left:618.293333pt;}
.x5d_c00226{left:620.000000pt;}
.x97_c00226{left:621.333333pt;}
.x29_c00226{left:623.626667pt;}
.x2_c00226{left:625.706667pt;}
.x1c_c00226{left:627.040000pt;}
.x3e_c00226{left:628.373333pt;}
.xcc_c00226{left:631.040000pt;}
.xe1_c00226{left:632.373333pt;}
.x32_c00226{left:634.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_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_1b0bf4050c02374caa908b93.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:1.688965;font-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_c00227{transform:matrix(0.225210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225210,0.000000,0.000000,0.250000,0,0);}
.m47_c00227{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.me0_c00227{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.ma1_c00227{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);}
.m93_c00227{transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);}
.m0_c00227{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.mce_c00227{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mc2_c00227{transform:matrix(0.369248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369248,0.000000,0.000000,0.250000,0,0);}
.ma9_c00227{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mcc_c00227{transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);}
.me7_c00227{transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);}
.ma5_c00227{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m7d_c00227{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mb8_c00227{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m87_c00227{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m8c_c00227{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m65_c00227{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m8f_c00227{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m84_c00227{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m4a_c00227{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.md0_c00227{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m64_c00227{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.mae_c00227{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m33_c00227{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.me8_c00227{transform:matrix(0.398006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398006,0.000000,0.000000,0.250000,0,0);}
.m55_c00227{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mbf_c00227{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m76_c00227{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m38_c00227{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m90_c00227{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.mcd_c00227{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m94_c00227{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m6f_c00227{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.mb9_c00227{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.md2_c00227{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m67_c00227{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.ma_c00227{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m8a_c00227{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m86_c00227{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m15_c00227{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m89_c00227{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.ma6_c00227{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m79_c00227{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.me2_c00227{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.mb6_c00227{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.mb1_c00227{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.m16_c00227{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mca_c00227{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m9_c00227{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m75_c00227{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.mb_c00227{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mf_c00227{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m57_c00227{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m4e_c00227{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m97_c00227{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m5e_c00227{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m37_c00227{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m3_c00227{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mab_c00227{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m60_c00227{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.m12_c00227{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m48_c00227{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m4b_c00227{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m28_c00227{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m9a_c00227{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.m66_c00227{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m83_c00227{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m1b_c00227{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m63_c00227{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.ma8_c00227{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m73_c00227{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.med_c00227{transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);}
.m44_c00227{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.mb7_c00227{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.md_c00227{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mb0_c00227{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m1c_c00227{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m58_c00227{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m99_c00227{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.mda_c00227{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.m69_c00227{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m6a_c00227{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.m80_c00227{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m96_c00227{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m10_c00227{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.me6_c00227{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m82_c00227{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m7_c00227{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mbd_c00227{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m8_c00227{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m4c_c00227{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.mb5_c00227{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.md6_c00227{transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);}
.mc8_c00227{transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);}
.m6_c00227{transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);}
.m91_c00227{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.mc6_c00227{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m8d_c00227{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.mdc_c00227{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m18_c00227{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m54_c00227{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m36_c00227{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m5_c00227{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mc5_c00227{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.mc4_c00227{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m46_c00227{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m9e_c00227{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m9c_c00227{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.mcf_c00227{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m6b_c00227{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mbb_c00227{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m4d_c00227{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m6d_c00227{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m6e_c00227{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m53_c00227{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mde_c00227{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m61_c00227{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.me9_c00227{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m6c_c00227{transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);}
.m13_c00227{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);}
.mbe_c00227{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m34_c00227{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m68_c00227{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mdf_c00227{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m70_c00227{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.m5d_c00227{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m2a_c00227{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m21_c00227{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m49_c00227{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m26_c00227{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.me3_c00227{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m3e_c00227{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m9f_c00227{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m7e_c00227{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m59_c00227{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m78_c00227{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mba_c00227{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m98_c00227{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m3a_c00227{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m3f_c00227{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m7b_c00227{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m29_c00227{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.md8_c00227{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m5f_c00227{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m71_c00227{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m25_c00227{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mb2_c00227{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mc_c00227{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mea_c00227{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m2b_c00227{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m72_c00227{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m2c_c00227{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.md9_c00227{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m2d_c00227{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m81_c00227{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m1e_c00227{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m32_c00227{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m5c_c00227{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m62_c00227{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m31_c00227{transform:matrix(0.548237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548237,0.000000,0.000000,0.250000,0,0);}
.mad_c00227{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m20_c00227{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m52_c00227{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m41_c00227{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mc9_c00227{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.md1_c00227{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.mac_c00227{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m3d_c00227{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m39_c00227{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m77_c00227{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m35_c00227{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mdd_c00227{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m4_c00227{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.md3_c00227{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.ma0_c00227{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m42_c00227{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m2_c00227{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m40_c00227{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m7a_c00227{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m22_c00227{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.md7_c00227{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m9d_c00227{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.ma7_c00227{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mec_c00227{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.mdb_c00227{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m3c_c00227{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m30_c00227{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mcb_c00227{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.mc7_c00227{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.m1a_c00227{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mb3_c00227{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m7c_c00227{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m2f_c00227{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m51_c00227{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mc3_c00227{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.me5_c00227{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.md4_c00227{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.m23_c00227{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.me_c00227{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m5b_c00227{transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);}
.m1_c00227{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m50_c00227{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.md5_c00227{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.maf_c00227{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m1d_c00227{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m1f_c00227{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m95_c00227{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m4f_c00227{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m9b_c00227{transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);}
.m74_c00227{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m8b_c00227{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.maa_c00227{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.m17_c00227{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.mc0_c00227{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m11_c00227{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.mee_c00227{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m14_c00227{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m56_c00227{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.me4_c00227{transform:matrix(0.675481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675481,0.000000,0.000000,0.250000,0,0);}
.mb4_c00227{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m43_c00227{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.me1_c00227{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m85_c00227{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.meb_c00227{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m27_c00227{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.mc1_c00227{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m5a_c00227{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m88_c00227{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m8e_c00227{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m2e_c00227{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mbc_c00227{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.m24_c00227{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m3b_c00227{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.ma4_c00227{transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);}
.m19_c00227{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.ma2_c00227{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m92_c00227{transform:matrix(1.165865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.165865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.165865,0.000000,0.000000,0.250000,0,0);}
.m7f_c00227{transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);}
.ma3_c00227{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.v1_c00227{vertical-align:-6.000000px;}
.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;}
}
.ws2_c00227{word-spacing:-6.207360px;}
.ws4_c00227{word-spacing:-4.648310px;}
.ws8_c00227{word-spacing:-2.008560px;}
.ws3_c00227{word-spacing:-1.792767px;}
.ws5_c00227{word-spacing:-1.219898px;}
.ws9_c00227{word-spacing:0.000000px;}
.ws0_c00227{word-spacing:2.066465px;}
.ws1_c00227{word-spacing:2.656945px;}
.ws7_c00227{word-spacing:4.635318px;}
.ws6_c00227{word-spacing:9.460748px;}
.fc0_c00227{color:transparent;}
.fs6_c00227{font-size:3.420000px;}
.fs7_c00227{font-size:11.880000px;}
.fs5_c00227{font-size:18.720000px;}
.fs1_c00227{font-size:20.400000px;}
.fs4_c00227{font-size:25.500000px;}
.fs2_c00227{font-size:28.920000px;}
.fs3_c00227{font-size:32.340000px;}
.fs0_c00227{font-size:35.700000px;}
.fs8_c00227{font-size:39.120000px;}
.y0_c00227{bottom:0.000000px;}
.ye7_c00227{bottom:248.745000px;}
.ye5_c00227{bottom:250.905000px;}
.ye6_c00227{bottom:251.970000px;}
.ye1_c00227{bottom:268.680000px;}
.ye3_c00227{bottom:270.630000px;}
.ye4_c00227{bottom:270.825000px;}
.ye2_c00227{bottom:271.905000px;}
.yde_c00227{bottom:289.245000px;}
.ydd_c00227{bottom:290.970000px;}
.ydf_c00227{bottom:291.405000px;}
.ye0_c00227{bottom:292.470000px;}
.yd9_c00227{bottom:308.745000px;}
.yda_c00227{bottom:310.905000px;}
.ydb_c00227{bottom:311.130000px;}
.ydc_c00227{bottom:311.970000px;}
.yd7_c00227{bottom:327.405000px;}
.yd4_c00227{bottom:328.245000px;}
.yd8_c00227{bottom:328.470000px;}
.yd3_c00227{bottom:330.405000px;}
.yd6_c00227{bottom:330.630000px;}
.yd5_c00227{bottom:331.905000px;}
.yd0_c00227{bottom:346.905000px;}
.ycc_c00227{bottom:347.745000px;}
.yd2_c00227{bottom:347.970000px;}
.yce_c00227{bottom:348.825000px;}
.ycb_c00227{bottom:349.905000px;}
.ycf_c00227{bottom:350.130000px;}
.yd1_c00227{bottom:350.970000px;}
.ycd_c00227{bottom:351.405000px;}
.yc9_c00227{bottom:368.745000px;}
.yc6_c00227{bottom:369.405000px;}
.yca_c00227{bottom:369.630000px;}
.yc7_c00227{bottom:370.470000px;}
.yc8_c00227{bottom:370.905000px;}
.yc3_c00227{bottom:386.745000px;}
.yc4_c00227{bottom:388.245000px;}
.yc5_c00227{bottom:389.970000px;}
.yc2_c00227{bottom:390.405000px;}
.yc0_c00227{bottom:407.745000px;}
.yc1_c00227{bottom:408.630000px;}
.ybc_c00227{bottom:426.405000px;}
.ybe_c00227{bottom:427.245000px;}
.ybd_c00227{bottom:427.470000px;}
.yba_c00227{bottom:428.325000px;}
.ybf_c00227{bottom:429.405000px;}
.ybb_c00227{bottom:430.470000px;}
.yb5_c00227{bottom:446.745000px;}
.yb3_c00227{bottom:447.180000px;}
.yb8_c00227{bottom:447.405000px;}
.yb7_c00227{bottom:447.825000px;}
.yb9_c00227{bottom:448.905000px;}
.yb6_c00227{bottom:449.970000px;}
.yb4_c00227{bottom:450.405000px;}
.yaf_c00227{bottom:464.130000px;}
.yb0_c00227{bottom:464.775000px;}
.yb2_c00227{bottom:465.405000px;}
.yac_c00227{bottom:465.630000px;}
.yb1_c00227{bottom:466.470000px;}
.yab_c00227{bottom:467.745000px;}
.yae_c00227{bottom:468.630000px;}
.yad_c00227{bottom:468.825000px;}
.yaa_c00227{bottom:469.905000px;}
.ya2_c00227{bottom:484.275000px;}
.y9e_c00227{bottom:484.905000px;}
.ya4_c00227{bottom:485.130000px;}
.ya5_c00227{bottom:485.970000px;}
.ya3_c00227{bottom:486.405000px;}
.ya9_c00227{bottom:486.825000px;}
.ya6_c00227{bottom:487.245000px;}
.ya7_c00227{bottom:487.905000px;}
.ya0_c00227{bottom:488.130000px;}
.y9f_c00227{bottom:488.325000px;}
.ya8_c00227{bottom:488.970000px;}
.ya1_c00227{bottom:492.630000px;}
.y9b_c00227{bottom:504.630000px;}
.y9c_c00227{bottom:505.470000px;}
.y9d_c00227{bottom:506.745000px;}
.y99_c00227{bottom:507.630000px;}
.y9a_c00227{bottom:507.825000px;}
.y98_c00227{bottom:508.905000px;}
.y97_c00227{bottom:523.905000px;}
.y94_c00227{bottom:524.130000px;}
.y96_c00227{bottom:524.325000px;}
.y91_c00227{bottom:525.405000px;}
.y93_c00227{bottom:526.245000px;}
.y95_c00227{bottom:526.470000px;}
.y92_c00227{bottom:528.405000px;}
.y8c_c00227{bottom:543.630000px;}
.y8e_c00227{bottom:544.905000px;}
.y8f_c00227{bottom:545.130000px;}
.y8d_c00227{bottom:545.325000px;}
.y8b_c00227{bottom:545.745000px;}
.y90_c00227{bottom:545.970000px;}
.y8a_c00227{bottom:546.825000px;}
.y89_c00227{bottom:547.905000px;}
.y85_c00227{bottom:564.405000px;}
.y86_c00227{bottom:564.630000px;}
.y84_c00227{bottom:565.245000px;}
.y87_c00227{bottom:566.325000px;}
.y88_c00227{bottom:566.970000px;}
.y7d_c00227{bottom:583.905000px;}
.y81_c00227{bottom:584.745000px;}
.y7f_c00227{bottom:584.970000px;}
.y7e_c00227{bottom:585.825000px;}
.y80_c00227{bottom:586.905000px;}
.y83_c00227{bottom:586.920000px;}
.y82_c00227{bottom:587.130000px;}
.y7c_c00227{bottom:603.405000px;}
.y7a_c00227{bottom:604.245000px;}
.y7b_c00227{bottom:604.470000px;}
.y79_c00227{bottom:604.905000px;}
.y78_c00227{bottom:605.745000px;}
.y77_c00227{bottom:606.405000px;}
.y73_c00227{bottom:622.905000px;}
.y6f_c00227{bottom:623.325000px;}
.y76_c00227{bottom:623.745000px;}
.y75_c00227{bottom:623.970000px;}
.y70_c00227{bottom:624.405000px;}
.y71_c00227{bottom:625.245000px;}
.y74_c00227{bottom:625.905000px;}
.y72_c00227{bottom:627.405000px;}
.y6e_c00227{bottom:642.405000px;}
.y6c_c00227{bottom:643.905000px;}
.y6b_c00227{bottom:644.745000px;}
.y6d_c00227{bottom:645.825000px;}
.y6a_c00227{bottom:646.905000px;}
.y68_c00227{bottom:662.325000px;}
.y64_c00227{bottom:663.405000px;}
.y66_c00227{bottom:664.245000px;}
.y69_c00227{bottom:664.470000px;}
.y67_c00227{bottom:666.405000px;}
.y65_c00227{bottom:666.630000px;}
.y5f_c00227{bottom:683.745000px;}
.y62_c00227{bottom:684.630000px;}
.y63_c00227{bottom:684.825000px;}
.y60_c00227{bottom:685.905000px;}
.y61_c00227{bottom:686.970000px;}
.y5c_c00227{bottom:703.245000px;}
.y5e_c00227{bottom:704.130000px;}
.y5a_c00227{bottom:705.405000px;}
.y5d_c00227{bottom:705.630000px;}
.y5b_c00227{bottom:706.470000px;}
.y58_c00227{bottom:722.745000px;}
.y57_c00227{bottom:723.825000px;}
.y56_c00227{bottom:724.905000px;}
.y59_c00227{bottom:725.130000px;}
.y54_c00227{bottom:743.550000px;}
.y52_c00227{bottom:743.745000px;}
.y55_c00227{bottom:744.405000px;}
.y53_c00227{bottom:744.630000px;}
.y51_c00227{bottom:745.470000px;}
.y50_c00227{bottom:745.905000px;}
.y4f_c00227{bottom:763.245000px;}
.y4d_c00227{bottom:765.405000px;}
.y4e_c00227{bottom:766.470000px;}
.y4a_c00227{bottom:781.470000px;}
.y48_c00227{bottom:782.745000px;}
.y4c_c00227{bottom:783.405000px;}
.y47_c00227{bottom:783.630000px;}
.y4b_c00227{bottom:783.825000px;}
.y49_c00227{bottom:784.905000px;}
.y45_c00227{bottom:802.245000px;}
.y46_c00227{bottom:803.325000px;}
.y44_c00227{bottom:804.405000px;}
.y42_c00227{bottom:821.745000px;}
.y41_c00227{bottom:822.825000px;}
.y43_c00227{bottom:823.470000px;}
.y3f_c00227{bottom:823.905000px;}
.y40_c00227{bottom:824.970000px;}
.y3c_c00227{bottom:841.245000px;}
.y3b_c00227{bottom:842.325000px;}
.y3d_c00227{bottom:843.405000px;}
.y3e_c00227{bottom:844.470000px;}
.y3a_c00227{bottom:858.405000px;}
.y38_c00227{bottom:860.325000px;}
.y37_c00227{bottom:860.745000px;}
.y39_c00227{bottom:861.825000px;}
.y35_c00227{bottom:862.905000px;}
.y36_c00227{bottom:864.405000px;}
.y30_c00227{bottom:880.245000px;}
.y34_c00227{bottom:881.970000px;}
.y32_c00227{bottom:882.405000px;}
.y33_c00227{bottom:882.630000px;}
.y31_c00227{bottom:883.470000px;}
.y29_c00227{bottom:898.905000px;}
.y2f_c00227{bottom:900.825000px;}
.y2e_c00227{bottom:901.905000px;}
.y2d_c00227{bottom:902.130000px;}
.y2b_c00227{bottom:902.325000px;}
.y2c_c00227{bottom:902.970000px;}
.y2a_c00227{bottom:903.405000px;}
.y26_c00227{bottom:919.245000px;}
.y27_c00227{bottom:920.745000px;}
.y28_c00227{bottom:921.405000px;}
.y25_c00227{bottom:922.905000px;}
.y23_c00227{bottom:937.905000px;}
.y24_c00227{bottom:942.405000px;}
.y21_c00227{bottom:959.745000px;}
.y22_c00227{bottom:960.630000px;}
.y20_c00227{bottom:960.825000px;}
.y1f_c00227{bottom:961.905000px;}
.y1e_c00227{bottom:979.245000px;}
.y1c_c00227{bottom:981.405000px;}
.y1d_c00227{bottom:981.630000px;}
.y19_c00227{bottom:998.745000px;}
.y1b_c00227{bottom:999.630000px;}
.y1a_c00227{bottom:1000.470000px;}
.y18_c00227{bottom:1000.905000px;}
.y17_c00227{bottom:1001.970000px;}
.y11_c00227{bottom:1017.405000px;}
.y15_c00227{bottom:1017.825000px;}
.y13_c00227{bottom:1018.245000px;}
.y16_c00227{bottom:1019.130000px;}
.y14_c00227{bottom:1020.405000px;}
.y12_c00227{bottom:1020.630000px;}
.y10_c00227{bottom:1021.470000px;}
.yf_c00227{bottom:1036.905000px;}
.y9_c00227{bottom:1037.745000px;}
.yc_c00227{bottom:1037.970000px;}
.yb_c00227{bottom:1038.405000px;}
.yd_c00227{bottom:1038.630000px;}
.ya_c00227{bottom:1039.905000px;}
.ye_c00227{bottom:1040.970000px;}
.y8_c00227{bottom:1055.970000px;}
.y6_c00227{bottom:1056.825000px;}
.y5_c00227{bottom:1057.245000px;}
.y7_c00227{bottom:1058.325000px;}
.y4_c00227{bottom:1058.745000px;}
.y3_c00227{bottom:1059.405000px;}
.y2_c00227{bottom:1097.550000px;}
.y1_c00227{bottom:1097.745000px;}
.h7_c00227{height:4.206533px;}
.h8_c00227{height:14.612168px;}
.h6_c00227{height:23.025234px;}
.h2_c00227{height:25.091602px;}
.h5_c00227{height:31.364502px;}
.h3_c00227{height:35.571035px;}
.h4_c00227{height:39.777568px;}
.h1_c00227{height:43.910303px;}
.h9_c00227{height:48.116836px;}
.h0_c00227{height:1335.000000px;}
.w0_c00227{width:880.500000px;}
.x0_c00227{left:0.000000px;}
.x104_c00227{left:148.500000px;}
.xeb_c00227{left:150.420000px;}
.xa5_c00227{left:151.920000px;}
.x10_c00227{left:153.420000px;}
.x3_c00227{left:154.500000px;}
.x1_c00227{left:155.775000px;}
.xb2_c00227{left:160.500000px;}
.x10a_c00227{left:165.000000px;}
.x90_c00227{left:166.920000px;}
.x4f_c00227{left:169.080000px;}
.x2c_c00227{left:174.420000px;}
.xf9_c00227{left:175.920000px;}
.xa6_c00227{left:178.080000px;}
.x1d_c00227{left:185.580000px;}
.xb3_c00227{left:190.080000px;}
.xd3_c00227{left:191.580000px;}
.x6d_c00227{left:193.080000px;}
.x4a_c00227{left:195.420000px;}
.x76_c00227{left:196.500000px;}
.x5a_c00227{left:197.580000px;}
.xf0_c00227{left:199.500000px;}
.x33_c00227{left:200.580000px;}
.x11_c00227{left:202.080000px;}
.x7e_c00227{left:203.580000px;}
.x4_c00227{left:205.500000px;}
.x86_c00227{left:208.500000px;}
.x1e_c00227{left:210.000000px;}
.xf5_c00227{left:211.080000px;}
.xcf_c00227{left:214.920000px;}
.x91_c00227{left:217.500000px;}
.x107_c00227{left:218.580000px;}
.xae_c00227{left:220.500000px;}
.x7f_c00227{left:223.500000px;}
.x50_c00227{left:225.420000px;}
.x4b_c00227{left:227.580000px;}
.x5_c00227{left:229.920000px;}
.x6e_c00227{left:234.000000px;}
.x9b_c00227{left:235.080000px;}
.x108_c00227{left:237.420000px;}
.xe9_c00227{left:240.000000px;}
.x1f_c00227{left:241.920000px;}
.xdb_c00227{left:243.420000px;}
.x34_c00227{left:246.000000px;}
.x12_c00227{left:249.000000px;}
.x80_c00227{left:250.500000px;}
.x65_c00227{left:253.920000px;}
.x77_c00227{left:256.500000px;}
.x4c_c00227{left:258.000000px;}
.xaf_c00227{left:259.500000px;}
.x2d_c00227{left:261.420000px;}
.xd4_c00227{left:264.000000px;}
.x3e_c00227{left:265.500000px;}
.x6_c00227{left:268.080000px;}
.xc2_c00227{left:271.500000px;}
.x13_c00227{left:273.000000px;}
.xe3_c00227{left:274.920000px;}
.xf6_c00227{left:276.420000px;}
.xd8_c00227{left:277.500000px;}
.x87_c00227{left:279.000000px;}
.xc7_c00227{left:280.080000px;}
.x100_c00227{left:282.420000px;}
.x20_c00227{left:283.500000px;}
.xe8_c00227{left:285.000000px;}
.x35_c00227{left:286.500000px;}
.x10b_c00227{left:288.000000px;}
.x5b_c00227{left:289.500000px;}
.x4d_c00227{left:292.080000px;}
.x51_c00227{left:294.000000px;}
.xaa_c00227{left:299.580000px;}
.xd5_c00227{left:301.500000px;}
.x99_c00227{left:303.000000px;}
.x6f_c00227{left:306.420000px;}
.x3f_c00227{left:307.500000px;}
.xf1_c00227{left:309.000000px;}
.x7_c00227{left:312.000000px;}
.x109_c00227{left:313.500000px;}
.xb4_c00227{left:317.580000px;}
.x88_c00227{left:319.500000px;}
.x21_c00227{left:321.000000px;}
.x66_c00227{left:322.920000px;}
.x52_c00227{left:325.080000px;}
.xf2_c00227{left:327.000000px;}
.x78_c00227{left:328.920000px;}
.x81_c00227{left:331.920000px;}
.xdc_c00227{left:336.000000px;}
.xb5_c00227{left:337.920000px;}
.x53_c00227{left:339.000000px;}
.xc8_c00227{left:342.000000px;}
.x2e_c00227{left:343.500000px;}
.x92_c00227{left:345.000000px;}
.x5c_c00227{left:346.500000px;}
.xec_c00227{left:348.420000px;}
.x40_c00227{left:351.420000px;}
.xa7_c00227{left:352.500000px;}
.x4e_c00227{left:353.580000px;}
.x8_c00227{left:355.500000px;}
.xba_c00227{left:357.420000px;}
.x82_c00227{left:358.500000px;}
.xbe_c00227{left:359.580000px;}
.x67_c00227{left:361.920000px;}
.x89_c00227{left:363.000000px;}
.x9a_c00227{left:364.500000px;}
.x5d_c00227{left:366.420000px;}
.x54_c00227{left:370.500000px;}
.xfa_c00227{left:372.420000px;}
.x70_c00227{left:373.920000px;}
.xb6_c00227{left:376.500000px;}
.xc9_c00227{left:378.420000px;}
.x41_c00227{left:379.500000px;}
.xe4_c00227{left:382.920000px;}
.x36_c00227{left:384.420000px;}
.xc3_c00227{left:385.920000px;}
.x14_c00227{left:388.080000px;}
.x68_c00227{left:390.000000px;}
.xf7_c00227{left:393.000000px;}
.xd9_c00227{left:394.500000px;}
.x101_c00227{left:397.080000px;}
.x22_c00227{left:399.420000px;}
.xdd_c00227{left:400.500000px;}
.x2_c00227{left:402.000000px;}
.x9_c00227{left:405.000000px;}
.x83_c00227{left:409.080000px;}
.x9c_c00227{left:410.580000px;}
.xbf_c00227{left:413.580000px;}
.x8a_c00227{left:417.420000px;}
.x37_c00227{left:420.420000px;}
.x105_c00227{left:421.500000px;}
.x55_c00227{left:422.580000px;}
.xca_c00227{left:427.920000px;}
.x9d_c00227{left:430.920000px;}
.xf3_c00227{left:432.000000px;}
.x42_c00227{left:433.500000px;}
.x15_c00227{left:436.920000px;}
.x23_c00227{left:438.000000px;}
.x69_c00227{left:439.500000px;}
.x79_c00227{left:441.000000px;}
.x38_c00227{left:447.000000px;}
.x71_c00227{left:450.000000px;}
.xa_c00227{left:453.420000px;}
.x5e_c00227{left:456.000000px;}
.x9e_c00227{left:458.580000px;}
.xd6_c00227{left:461.580000px;}
.x93_c00227{left:463.080000px;}
.x24_c00227{left:465.420000px;}
.x7a_c00227{left:468.420000px;}
.xfb_c00227{left:471.000000px;}
.x43_c00227{left:472.920000px;}
.x56_c00227{left:474.000000px;}
.x2f_c00227{left:475.920000px;}
.x16_c00227{left:477.000000px;}
.xed_c00227{left:480.420000px;}
.x8b_c00227{left:481.500000px;}
.xd0_c00227{left:483.420000px;}
.x5f_c00227{left:484.500000px;}
.xcb_c00227{left:486.420000px;}
.x6a_c00227{left:490.920000px;}
.xde_c00227{left:493.500000px;}
.x17_c00227{left:496.920000px;}
.x72_c00227{left:499.080000px;}
.x44_c00227{left:501.420000px;}
.xab_c00227{left:502.500000px;}
.x30_c00227{left:504.420000px;}
.xc0_c00227{left:505.500000px;}
.x7b_c00227{left:507.000000px;}
.x25_c00227{left:508.500000px;}
.x94_c00227{left:510.000000px;}
.xe5_c00227{left:513.000000px;}
.xfc_c00227{left:514.500000px;}
.xb7_c00227{left:516.000000px;}
.x73_c00227{left:517.920000px;}
.x84_c00227{left:520.500000px;}
.xcc_c00227{left:523.080000px;}
.xb_c00227{left:525.000000px;}
.xbb_c00227{left:526.920000px;}
.xee_c00227{left:529.080000px;}
.x9f_c00227{left:531.000000px;}
.x18_c00227{left:532.500000px;}
.x45_c00227{left:537.000000px;}
.x31_c00227{left:540.000000px;}
.x60_c00227{left:541.500000px;}
.x26_c00227{left:542.580000px;}
.x39_c00227{left:544.080000px;}
.xea_c00227{left:546.420000px;}
.xdf_c00227{left:547.500000px;}
.x6b_c00227{left:549.000000px;}
.x8c_c00227{left:550.080000px;}
.x19_c00227{left:552.420000px;}
.x95_c00227{left:553.500000px;}
.x7c_c00227{left:556.500000px;}
.x3a_c00227{left:560.145000px;}
.x102_c00227{left:561.420000px;}
.x27_c00227{left:562.500000px;}
.xcd_c00227{left:564.000000px;}
.xd7_c00227{left:565.500000px;}
.x8d_c00227{left:568.920000px;}
.xc4_c00227{left:570.000000px;}
.x96_c00227{left:573.000000px;}
.x46_c00227{left:577.500000px;}
.x57_c00227{left:579.000000px;}
.xd1_c00227{left:580.500000px;}
.x3b_c00227{left:582.000000px;}
.xac_c00227{left:583.080000px;}
.xc_c00227{left:588.000000px;}
.x28_c00227{left:589.920000px;}
.xa8_c00227{left:591.000000px;}
.x1a_c00227{left:592.080000px;}
.x106_c00227{left:594.000000px;}
.x61_c00227{left:595.500000px;}
.xbc_c00227{left:598.920000px;}
.xc1_c00227{left:600.420000px;}
.x47_c00227{left:601.920000px;}
.xfd_c00227{left:603.420000px;}
.xa0_c00227{left:605.580000px;}
.xe0_c00227{left:607.500000px;}
.x97_c00227{left:609.420000px;}
.x32_c00227{left:610.920000px;}
.x6c_c00227{left:613.920000px;}
.x103_c00227{left:615.000000px;}
.x62_c00227{left:616.500000px;}
.xb0_c00227{left:618.000000px;}
.xf8_c00227{left:619.500000px;}
.xc5_c00227{left:621.000000px;}
.x74_c00227{left:624.000000px;}
.xa1_c00227{left:625.500000px;}
.x29_c00227{left:627.000000px;}
.x7d_c00227{left:628.500000px;}
.x48_c00227{left:631.920000px;}
.xce_c00227{left:633.000000px;}
.x3c_c00227{left:636.000000px;}
.xe1_c00227{left:637.500000px;}
.x1b_c00227{left:639.420000px;}
.x85_c00227{left:640.920000px;}
.xda_c00227{left:642.000000px;}
.xd_c00227{left:643.080000px;}
.xe6_c00227{left:646.500000px;}
.xbd_c00227{left:649.500000px;}
.x63_c00227{left:653.580000px;}
.x8e_c00227{left:655.500000px;}
.xa2_c00227{left:658.080000px;}
.xfe_c00227{left:660.000000px;}
.x58_c00227{left:661.920000px;}
.x2a_c00227{left:663.420000px;}
.xf4_c00227{left:664.500000px;}
.xb1_c00227{left:667.080000px;}
.x75_c00227{left:669.000000px;}
.x1c_c00227{left:670.500000px;}
.xa3_c00227{left:671.580000px;}
.xad_c00227{left:675.000000px;}
.xff_c00227{left:677.580000px;}
.xe7_c00227{left:679.920000px;}
.x49_c00227{left:681.000000px;}
.xb8_c00227{left:682.080000px;}
.x3d_c00227{left:684.000000px;}
.xc6_c00227{left:685.920000px;}
.xe_c00227{left:688.500000px;}
.x2b_c00227{left:689.580000px;}
.x64_c00227{left:691.500000px;}
.xe2_c00227{left:692.580000px;}
.xa9_c00227{left:696.420000px;}
.xef_c00227{left:698.775000px;}
.x98_c00227{left:700.500000px;}
.xf_c00227{left:702.000000px;}
.xa4_c00227{left:703.920000px;}
.xb9_c00227{left:707.580000px;}
.x59_c00227{left:709.920000px;}
.xd2_c00227{left:715.500000px;}
.x8f_c00227{left:717.000000px;}
@media print{
.v1_c00227{vertical-align:-5.333333pt;}
.v0_c00227{vertical-align:0.000000pt;}
.ls0_c00227{letter-spacing:0.000000pt;}
.ws2_c00227{word-spacing:-5.517653pt;}
.ws4_c00227{word-spacing:-4.131831pt;}
.ws8_c00227{word-spacing:-1.785387pt;}
.ws3_c00227{word-spacing:-1.593571pt;}
.ws5_c00227{word-spacing:-1.084354pt;}
.ws9_c00227{word-spacing:0.000000pt;}
.ws0_c00227{word-spacing:1.836858pt;}
.ws1_c00227{word-spacing:2.361729pt;}
.ws7_c00227{word-spacing:4.120283pt;}
.ws6_c00227{word-spacing:8.409554pt;}
.fs6_c00227{font-size:3.040000pt;}
.fs7_c00227{font-size:10.560000pt;}
.fs5_c00227{font-size:16.640000pt;}
.fs1_c00227{font-size:18.133333pt;}
.fs4_c00227{font-size:22.666667pt;}
.fs2_c00227{font-size:25.706667pt;}
.fs3_c00227{font-size:28.746667pt;}
.fs0_c00227{font-size:31.733333pt;}
.fs8_c00227{font-size:34.773333pt;}
.y0_c00227{bottom:0.000000pt;}
.ye7_c00227{bottom:221.106667pt;}
.ye5_c00227{bottom:223.026667pt;}
.ye6_c00227{bottom:223.973333pt;}
.ye1_c00227{bottom:238.826667pt;}
.ye3_c00227{bottom:240.560000pt;}
.ye4_c00227{bottom:240.733333pt;}
.ye2_c00227{bottom:241.693333pt;}
.yde_c00227{bottom:257.106667pt;}
.ydd_c00227{bottom:258.640000pt;}
.ydf_c00227{bottom:259.026667pt;}
.ye0_c00227{bottom:259.973333pt;}
.yd9_c00227{bottom:274.440000pt;}
.yda_c00227{bottom:276.360000pt;}
.ydb_c00227{bottom:276.560000pt;}
.ydc_c00227{bottom:277.306667pt;}
.yd7_c00227{bottom:291.026667pt;}
.yd4_c00227{bottom:291.773333pt;}
.yd8_c00227{bottom:291.973333pt;}
.yd3_c00227{bottom:293.693333pt;}
.yd6_c00227{bottom:293.893333pt;}
.yd5_c00227{bottom:295.026667pt;}
.yd0_c00227{bottom:308.360000pt;}
.ycc_c00227{bottom:309.106667pt;}
.yd2_c00227{bottom:309.306667pt;}
.yce_c00227{bottom:310.066667pt;}
.ycb_c00227{bottom:311.026667pt;}
.ycf_c00227{bottom:311.226667pt;}
.yd1_c00227{bottom:311.973333pt;}
.ycd_c00227{bottom:312.360000pt;}
.yc9_c00227{bottom:327.773333pt;}
.yc6_c00227{bottom:328.360000pt;}
.yca_c00227{bottom:328.560000pt;}
.yc7_c00227{bottom:329.306667pt;}
.yc8_c00227{bottom:329.693333pt;}
.yc3_c00227{bottom:343.773333pt;}
.yc4_c00227{bottom:345.106667pt;}
.yc5_c00227{bottom:346.640000pt;}
.yc2_c00227{bottom:347.026667pt;}
.yc0_c00227{bottom:362.440000pt;}
.yc1_c00227{bottom:363.226667pt;}
.ybc_c00227{bottom:379.026667pt;}
.ybe_c00227{bottom:379.773333pt;}
.ybd_c00227{bottom:379.973333pt;}
.yba_c00227{bottom:380.733333pt;}
.ybf_c00227{bottom:381.693333pt;}
.ybb_c00227{bottom:382.640000pt;}
.yb5_c00227{bottom:397.106667pt;}
.yb3_c00227{bottom:397.493333pt;}
.yb8_c00227{bottom:397.693333pt;}
.yb7_c00227{bottom:398.066667pt;}
.yb9_c00227{bottom:399.026667pt;}
.yb6_c00227{bottom:399.973333pt;}
.yb4_c00227{bottom:400.360000pt;}
.yaf_c00227{bottom:412.560000pt;}
.yb0_c00227{bottom:413.133333pt;}
.yb2_c00227{bottom:413.693333pt;}
.yac_c00227{bottom:413.893333pt;}
.yb1_c00227{bottom:414.640000pt;}
.yab_c00227{bottom:415.773333pt;}
.yae_c00227{bottom:416.560000pt;}
.yad_c00227{bottom:416.733333pt;}
.yaa_c00227{bottom:417.693333pt;}
.ya2_c00227{bottom:430.466667pt;}
.y9e_c00227{bottom:431.026667pt;}
.ya4_c00227{bottom:431.226667pt;}
.ya5_c00227{bottom:431.973333pt;}
.ya3_c00227{bottom:432.360000pt;}
.ya9_c00227{bottom:432.733333pt;}
.ya6_c00227{bottom:433.106667pt;}
.ya7_c00227{bottom:433.693333pt;}
.ya0_c00227{bottom:433.893333pt;}
.y9f_c00227{bottom:434.066667pt;}
.ya8_c00227{bottom:434.640000pt;}
.ya1_c00227{bottom:437.893333pt;}
.y9b_c00227{bottom:448.560000pt;}
.y9c_c00227{bottom:449.306667pt;}
.y9d_c00227{bottom:450.440000pt;}
.y99_c00227{bottom:451.226667pt;}
.y9a_c00227{bottom:451.400000pt;}
.y98_c00227{bottom:452.360000pt;}
.y97_c00227{bottom:465.693333pt;}
.y94_c00227{bottom:465.893333pt;}
.y96_c00227{bottom:466.066667pt;}
.y91_c00227{bottom:467.026667pt;}
.y93_c00227{bottom:467.773333pt;}
.y95_c00227{bottom:467.973333pt;}
.y92_c00227{bottom:469.693333pt;}
.y8c_c00227{bottom:483.226667pt;}
.y8e_c00227{bottom:484.360000pt;}
.y8f_c00227{bottom:484.560000pt;}
.y8d_c00227{bottom:484.733333pt;}
.y8b_c00227{bottom:485.106667pt;}
.y90_c00227{bottom:485.306667pt;}
.y8a_c00227{bottom:486.066667pt;}
.y89_c00227{bottom:487.026667pt;}
.y85_c00227{bottom:501.693333pt;}
.y86_c00227{bottom:501.893333pt;}
.y84_c00227{bottom:502.440000pt;}
.y87_c00227{bottom:503.400000pt;}
.y88_c00227{bottom:503.973333pt;}
.y7d_c00227{bottom:519.026667pt;}
.y81_c00227{bottom:519.773333pt;}
.y7f_c00227{bottom:519.973333pt;}
.y7e_c00227{bottom:520.733333pt;}
.y80_c00227{bottom:521.693333pt;}
.y83_c00227{bottom:521.706667pt;}
.y82_c00227{bottom:521.893333pt;}
.y7c_c00227{bottom:536.360000pt;}
.y7a_c00227{bottom:537.106667pt;}
.y7b_c00227{bottom:537.306667pt;}
.y79_c00227{bottom:537.693333pt;}
.y78_c00227{bottom:538.440000pt;}
.y77_c00227{bottom:539.026667pt;}
.y73_c00227{bottom:553.693333pt;}
.y6f_c00227{bottom:554.066667pt;}
.y76_c00227{bottom:554.440000pt;}
.y75_c00227{bottom:554.640000pt;}
.y70_c00227{bottom:555.026667pt;}
.y71_c00227{bottom:555.773333pt;}
.y74_c00227{bottom:556.360000pt;}
.y72_c00227{bottom:557.693333pt;}
.y6e_c00227{bottom:571.026667pt;}
.y6c_c00227{bottom:572.360000pt;}
.y6b_c00227{bottom:573.106667pt;}
.y6d_c00227{bottom:574.066667pt;}
.y6a_c00227{bottom:575.026667pt;}
.y68_c00227{bottom:588.733333pt;}
.y64_c00227{bottom:589.693333pt;}
.y66_c00227{bottom:590.440000pt;}
.y69_c00227{bottom:590.640000pt;}
.y67_c00227{bottom:592.360000pt;}
.y65_c00227{bottom:592.560000pt;}
.y5f_c00227{bottom:607.773333pt;}
.y62_c00227{bottom:608.560000pt;}
.y63_c00227{bottom:608.733333pt;}
.y60_c00227{bottom:609.693333pt;}
.y61_c00227{bottom:610.640000pt;}
.y5c_c00227{bottom:625.106667pt;}
.y5e_c00227{bottom:625.893333pt;}
.y5a_c00227{bottom:627.026667pt;}
.y5d_c00227{bottom:627.226667pt;}
.y5b_c00227{bottom:627.973333pt;}
.y58_c00227{bottom:642.440000pt;}
.y57_c00227{bottom:643.400000pt;}
.y56_c00227{bottom:644.360000pt;}
.y59_c00227{bottom:644.560000pt;}
.y54_c00227{bottom:660.933333pt;}
.y52_c00227{bottom:661.106667pt;}
.y55_c00227{bottom:661.693333pt;}
.y53_c00227{bottom:661.893333pt;}
.y51_c00227{bottom:662.640000pt;}
.y50_c00227{bottom:663.026667pt;}
.y4f_c00227{bottom:678.440000pt;}
.y4d_c00227{bottom:680.360000pt;}
.y4e_c00227{bottom:681.306667pt;}
.y4a_c00227{bottom:694.640000pt;}
.y48_c00227{bottom:695.773333pt;}
.y4c_c00227{bottom:696.360000pt;}
.y47_c00227{bottom:696.560000pt;}
.y4b_c00227{bottom:696.733333pt;}
.y49_c00227{bottom:697.693333pt;}
.y45_c00227{bottom:713.106667pt;}
.y46_c00227{bottom:714.066667pt;}
.y44_c00227{bottom:715.026667pt;}
.y42_c00227{bottom:730.440000pt;}
.y41_c00227{bottom:731.400000pt;}
.y43_c00227{bottom:731.973333pt;}
.y3f_c00227{bottom:732.360000pt;}
.y40_c00227{bottom:733.306667pt;}
.y3c_c00227{bottom:747.773333pt;}
.y3b_c00227{bottom:748.733333pt;}
.y3d_c00227{bottom:749.693333pt;}
.y3e_c00227{bottom:750.640000pt;}
.y3a_c00227{bottom:763.026667pt;}
.y38_c00227{bottom:764.733333pt;}
.y37_c00227{bottom:765.106667pt;}
.y39_c00227{bottom:766.066667pt;}
.y35_c00227{bottom:767.026667pt;}
.y36_c00227{bottom:768.360000pt;}
.y30_c00227{bottom:782.440000pt;}
.y34_c00227{bottom:783.973333pt;}
.y32_c00227{bottom:784.360000pt;}
.y33_c00227{bottom:784.560000pt;}
.y31_c00227{bottom:785.306667pt;}
.y29_c00227{bottom:799.026667pt;}
.y2f_c00227{bottom:800.733333pt;}
.y2e_c00227{bottom:801.693333pt;}
.y2d_c00227{bottom:801.893333pt;}
.y2b_c00227{bottom:802.066667pt;}
.y2c_c00227{bottom:802.640000pt;}
.y2a_c00227{bottom:803.026667pt;}
.y26_c00227{bottom:817.106667pt;}
.y27_c00227{bottom:818.440000pt;}
.y28_c00227{bottom:819.026667pt;}
.y25_c00227{bottom:820.360000pt;}
.y23_c00227{bottom:833.693333pt;}
.y24_c00227{bottom:837.693333pt;}
.y21_c00227{bottom:853.106667pt;}
.y22_c00227{bottom:853.893333pt;}
.y20_c00227{bottom:854.066667pt;}
.y1f_c00227{bottom:855.026667pt;}
.y1e_c00227{bottom:870.440000pt;}
.y1c_c00227{bottom:872.360000pt;}
.y1d_c00227{bottom:872.560000pt;}
.y19_c00227{bottom:887.773333pt;}
.y1b_c00227{bottom:888.560000pt;}
.y1a_c00227{bottom:889.306667pt;}
.y18_c00227{bottom:889.693333pt;}
.y17_c00227{bottom:890.640000pt;}
.y11_c00227{bottom:904.360000pt;}
.y15_c00227{bottom:904.733333pt;}
.y13_c00227{bottom:905.106667pt;}
.y16_c00227{bottom:905.893333pt;}
.y14_c00227{bottom:907.026667pt;}
.y12_c00227{bottom:907.226667pt;}
.y10_c00227{bottom:907.973333pt;}
.yf_c00227{bottom:921.693333pt;}
.y9_c00227{bottom:922.440000pt;}
.yc_c00227{bottom:922.640000pt;}
.yb_c00227{bottom:923.026667pt;}
.yd_c00227{bottom:923.226667pt;}
.ya_c00227{bottom:924.360000pt;}
.ye_c00227{bottom:925.306667pt;}
.y8_c00227{bottom:938.640000pt;}
.y6_c00227{bottom:939.400000pt;}
.y5_c00227{bottom:939.773333pt;}
.y7_c00227{bottom:940.733333pt;}
.y4_c00227{bottom:941.106667pt;}
.y3_c00227{bottom:941.693333pt;}
.y2_c00227{bottom:975.600000pt;}
.y1_c00227{bottom:975.773333pt;}
.h7_c00227{height:3.739141pt;}
.h8_c00227{height:12.988594pt;}
.h6_c00227{height:20.466875pt;}
.h2_c00227{height:22.303646pt;}
.h5_c00227{height:27.879557pt;}
.h3_c00227{height:31.618698pt;}
.h4_c00227{height:35.357839pt;}
.h1_c00227{height:39.031380pt;}
.h9_c00227{height:42.770521pt;}
.h0_c00227{height:1186.666667pt;}
.w0_c00227{width:782.666667pt;}
.x0_c00227{left:0.000000pt;}
.x104_c00227{left:132.000000pt;}
.xeb_c00227{left:133.706667pt;}
.xa5_c00227{left:135.040000pt;}
.x10_c00227{left:136.373333pt;}
.x3_c00227{left:137.333333pt;}
.x1_c00227{left:138.466667pt;}
.xb2_c00227{left:142.666667pt;}
.x10a_c00227{left:146.666667pt;}
.x90_c00227{left:148.373333pt;}
.x4f_c00227{left:150.293333pt;}
.x2c_c00227{left:155.040000pt;}
.xf9_c00227{left:156.373333pt;}
.xa6_c00227{left:158.293333pt;}
.x1d_c00227{left:164.960000pt;}
.xb3_c00227{left:168.960000pt;}
.xd3_c00227{left:170.293333pt;}
.x6d_c00227{left:171.626667pt;}
.x4a_c00227{left:173.706667pt;}
.x76_c00227{left:174.666667pt;}
.x5a_c00227{left:175.626667pt;}
.xf0_c00227{left:177.333333pt;}
.x33_c00227{left:178.293333pt;}
.x11_c00227{left:179.626667pt;}
.x7e_c00227{left:180.960000pt;}
.x4_c00227{left:182.666667pt;}
.x86_c00227{left:185.333333pt;}
.x1e_c00227{left:186.666667pt;}
.xf5_c00227{left:187.626667pt;}
.xcf_c00227{left:191.040000pt;}
.x91_c00227{left:193.333333pt;}
.x107_c00227{left:194.293333pt;}
.xae_c00227{left:196.000000pt;}
.x7f_c00227{left:198.666667pt;}
.x50_c00227{left:200.373333pt;}
.x4b_c00227{left:202.293333pt;}
.x5_c00227{left:204.373333pt;}
.x6e_c00227{left:208.000000pt;}
.x9b_c00227{left:208.960000pt;}
.x108_c00227{left:211.040000pt;}
.xe9_c00227{left:213.333333pt;}
.x1f_c00227{left:215.040000pt;}
.xdb_c00227{left:216.373333pt;}
.x34_c00227{left:218.666667pt;}
.x12_c00227{left:221.333333pt;}
.x80_c00227{left:222.666667pt;}
.x65_c00227{left:225.706667pt;}
.x77_c00227{left:228.000000pt;}
.x4c_c00227{left:229.333333pt;}
.xaf_c00227{left:230.666667pt;}
.x2d_c00227{left:232.373333pt;}
.xd4_c00227{left:234.666667pt;}
.x3e_c00227{left:236.000000pt;}
.x6_c00227{left:238.293333pt;}
.xc2_c00227{left:241.333333pt;}
.x13_c00227{left:242.666667pt;}
.xe3_c00227{left:244.373333pt;}
.xf6_c00227{left:245.706667pt;}
.xd8_c00227{left:246.666667pt;}
.x87_c00227{left:248.000000pt;}
.xc7_c00227{left:248.960000pt;}
.x100_c00227{left:251.040000pt;}
.x20_c00227{left:252.000000pt;}
.xe8_c00227{left:253.333333pt;}
.x35_c00227{left:254.666667pt;}
.x10b_c00227{left:256.000000pt;}
.x5b_c00227{left:257.333333pt;}
.x4d_c00227{left:259.626667pt;}
.x51_c00227{left:261.333333pt;}
.xaa_c00227{left:266.293333pt;}
.xd5_c00227{left:268.000000pt;}
.x99_c00227{left:269.333333pt;}
.x6f_c00227{left:272.373333pt;}
.x3f_c00227{left:273.333333pt;}
.xf1_c00227{left:274.666667pt;}
.x7_c00227{left:277.333333pt;}
.x109_c00227{left:278.666667pt;}
.xb4_c00227{left:282.293333pt;}
.x88_c00227{left:284.000000pt;}
.x21_c00227{left:285.333333pt;}
.x66_c00227{left:287.040000pt;}
.x52_c00227{left:288.960000pt;}
.xf2_c00227{left:290.666667pt;}
.x78_c00227{left:292.373333pt;}
.x81_c00227{left:295.040000pt;}
.xdc_c00227{left:298.666667pt;}
.xb5_c00227{left:300.373333pt;}
.x53_c00227{left:301.333333pt;}
.xc8_c00227{left:304.000000pt;}
.x2e_c00227{left:305.333333pt;}
.x92_c00227{left:306.666667pt;}
.x5c_c00227{left:308.000000pt;}
.xec_c00227{left:309.706667pt;}
.x40_c00227{left:312.373333pt;}
.xa7_c00227{left:313.333333pt;}
.x4e_c00227{left:314.293333pt;}
.x8_c00227{left:316.000000pt;}
.xba_c00227{left:317.706667pt;}
.x82_c00227{left:318.666667pt;}
.xbe_c00227{left:319.626667pt;}
.x67_c00227{left:321.706667pt;}
.x89_c00227{left:322.666667pt;}
.x9a_c00227{left:324.000000pt;}
.x5d_c00227{left:325.706667pt;}
.x54_c00227{left:329.333333pt;}
.xfa_c00227{left:331.040000pt;}
.x70_c00227{left:332.373333pt;}
.xb6_c00227{left:334.666667pt;}
.xc9_c00227{left:336.373333pt;}
.x41_c00227{left:337.333333pt;}
.xe4_c00227{left:340.373333pt;}
.x36_c00227{left:341.706667pt;}
.xc3_c00227{left:343.040000pt;}
.x14_c00227{left:344.960000pt;}
.x68_c00227{left:346.666667pt;}
.xf7_c00227{left:349.333333pt;}
.xd9_c00227{left:350.666667pt;}
.x101_c00227{left:352.960000pt;}
.x22_c00227{left:355.040000pt;}
.xdd_c00227{left:356.000000pt;}
.x2_c00227{left:357.333333pt;}
.x9_c00227{left:360.000000pt;}
.x83_c00227{left:363.626667pt;}
.x9c_c00227{left:364.960000pt;}
.xbf_c00227{left:367.626667pt;}
.x8a_c00227{left:371.040000pt;}
.x37_c00227{left:373.706667pt;}
.x105_c00227{left:374.666667pt;}
.x55_c00227{left:375.626667pt;}
.xca_c00227{left:380.373333pt;}
.x9d_c00227{left:383.040000pt;}
.xf3_c00227{left:384.000000pt;}
.x42_c00227{left:385.333333pt;}
.x15_c00227{left:388.373333pt;}
.x23_c00227{left:389.333333pt;}
.x69_c00227{left:390.666667pt;}
.x79_c00227{left:392.000000pt;}
.x38_c00227{left:397.333333pt;}
.x71_c00227{left:400.000000pt;}
.xa_c00227{left:403.040000pt;}
.x5e_c00227{left:405.333333pt;}
.x9e_c00227{left:407.626667pt;}
.xd6_c00227{left:410.293333pt;}
.x93_c00227{left:411.626667pt;}
.x24_c00227{left:413.706667pt;}
.x7a_c00227{left:416.373333pt;}
.xfb_c00227{left:418.666667pt;}
.x43_c00227{left:420.373333pt;}
.x56_c00227{left:421.333333pt;}
.x2f_c00227{left:423.040000pt;}
.x16_c00227{left:424.000000pt;}
.xed_c00227{left:427.040000pt;}
.x8b_c00227{left:428.000000pt;}
.xd0_c00227{left:429.706667pt;}
.x5f_c00227{left:430.666667pt;}
.xcb_c00227{left:432.373333pt;}
.x6a_c00227{left:436.373333pt;}
.xde_c00227{left:438.666667pt;}
.x17_c00227{left:441.706667pt;}
.x72_c00227{left:443.626667pt;}
.x44_c00227{left:445.706667pt;}
.xab_c00227{left:446.666667pt;}
.x30_c00227{left:448.373333pt;}
.xc0_c00227{left:449.333333pt;}
.x7b_c00227{left:450.666667pt;}
.x25_c00227{left:452.000000pt;}
.x94_c00227{left:453.333333pt;}
.xe5_c00227{left:456.000000pt;}
.xfc_c00227{left:457.333333pt;}
.xb7_c00227{left:458.666667pt;}
.x73_c00227{left:460.373333pt;}
.x84_c00227{left:462.666667pt;}
.xcc_c00227{left:464.960000pt;}
.xb_c00227{left:466.666667pt;}
.xbb_c00227{left:468.373333pt;}
.xee_c00227{left:470.293333pt;}
.x9f_c00227{left:472.000000pt;}
.x18_c00227{left:473.333333pt;}
.x45_c00227{left:477.333333pt;}
.x31_c00227{left:480.000000pt;}
.x60_c00227{left:481.333333pt;}
.x26_c00227{left:482.293333pt;}
.x39_c00227{left:483.626667pt;}
.xea_c00227{left:485.706667pt;}
.xdf_c00227{left:486.666667pt;}
.x6b_c00227{left:488.000000pt;}
.x8c_c00227{left:488.960000pt;}
.x19_c00227{left:491.040000pt;}
.x95_c00227{left:492.000000pt;}
.x7c_c00227{left:494.666667pt;}
.x3a_c00227{left:497.906667pt;}
.x102_c00227{left:499.040000pt;}
.x27_c00227{left:500.000000pt;}
.xcd_c00227{left:501.333333pt;}
.xd7_c00227{left:502.666667pt;}
.x8d_c00227{left:505.706667pt;}
.xc4_c00227{left:506.666667pt;}
.x96_c00227{left:509.333333pt;}
.x46_c00227{left:513.333333pt;}
.x57_c00227{left:514.666667pt;}
.xd1_c00227{left:516.000000pt;}
.x3b_c00227{left:517.333333pt;}
.xac_c00227{left:518.293333pt;}
.xc_c00227{left:522.666667pt;}
.x28_c00227{left:524.373333pt;}
.xa8_c00227{left:525.333333pt;}
.x1a_c00227{left:526.293333pt;}
.x106_c00227{left:528.000000pt;}
.x61_c00227{left:529.333333pt;}
.xbc_c00227{left:532.373333pt;}
.xc1_c00227{left:533.706667pt;}
.x47_c00227{left:535.040000pt;}
.xfd_c00227{left:536.373333pt;}
.xa0_c00227{left:538.293333pt;}
.xe0_c00227{left:540.000000pt;}
.x97_c00227{left:541.706667pt;}
.x32_c00227{left:543.040000pt;}
.x6c_c00227{left:545.706667pt;}
.x103_c00227{left:546.666667pt;}
.x62_c00227{left:548.000000pt;}
.xb0_c00227{left:549.333333pt;}
.xf8_c00227{left:550.666667pt;}
.xc5_c00227{left:552.000000pt;}
.x74_c00227{left:554.666667pt;}
.xa1_c00227{left:556.000000pt;}
.x29_c00227{left:557.333333pt;}
.x7d_c00227{left:558.666667pt;}
.x48_c00227{left:561.706667pt;}
.xce_c00227{left:562.666667pt;}
.x3c_c00227{left:565.333333pt;}
.xe1_c00227{left:566.666667pt;}
.x1b_c00227{left:568.373333pt;}
.x85_c00227{left:569.706667pt;}
.xda_c00227{left:570.666667pt;}
.xd_c00227{left:571.626667pt;}
.xe6_c00227{left:574.666667pt;}
.xbd_c00227{left:577.333333pt;}
.x63_c00227{left:580.960000pt;}
.x8e_c00227{left:582.666667pt;}
.xa2_c00227{left:584.960000pt;}
.xfe_c00227{left:586.666667pt;}
.x58_c00227{left:588.373333pt;}
.x2a_c00227{left:589.706667pt;}
.xf4_c00227{left:590.666667pt;}
.xb1_c00227{left:592.960000pt;}
.x75_c00227{left:594.666667pt;}
.x1c_c00227{left:596.000000pt;}
.xa3_c00227{left:596.960000pt;}
.xad_c00227{left:600.000000pt;}
.xff_c00227{left:602.293333pt;}
.xe7_c00227{left:604.373333pt;}
.x49_c00227{left:605.333333pt;}
.xb8_c00227{left:606.293333pt;}
.x3d_c00227{left:608.000000pt;}
.xc6_c00227{left:609.706667pt;}
.xe_c00227{left:612.000000pt;}
.x2b_c00227{left:612.960000pt;}
.x64_c00227{left:614.666667pt;}
.xe2_c00227{left:615.626667pt;}
.xa9_c00227{left:619.040000pt;}
.xef_c00227{left:621.133333pt;}
.x98_c00227{left:622.666667pt;}
.xf_c00227{left:624.000000pt;}
.xa4_c00227{left:625.706667pt;}
.xb9_c00227{left:628.960000pt;}
.x59_c00227{left:631.040000pt;}
.xd2_c00227{left:636.000000pt;}
.x8f_c00227{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a4069db3aced9c56dc7715d5.woff2')format("woff");}.ff1_c00228{font-family:ff1_c00228;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m91_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);}
.m98_c00228{transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);}
.m27_c00228{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);}
.m57_c00228{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m4_c00228{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m2e_c00228{transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);}
.m9d_c00228{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mb6_c00228{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.ma9_c00228{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m47_c00228{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mc8_c00228{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m52_c00228{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m21_c00228{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m97_c00228{transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);}
.m55_c00228{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m6_c00228{transform:matrix(0.382780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382780,0.000000,0.000000,0.250000,0,0);}
.m7e_c00228{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m20_c00228{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m4f_c00228{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m9a_c00228{transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);}
.mb3_c00228{transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);}
.mb_c00228{transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);}
.m3_c00228{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.md9_c00228{transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);}
.m25_c00228{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m54_c00228{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mbb_c00228{transform:matrix(0.394712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394712,0.000000,0.000000,0.250000,0,0);}
.mad_c00228{transform:matrix(0.395176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395176,0.000000,0.000000,0.250000,0,0);}
.mc6_c00228{transform:matrix(0.395228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395228,0.000000,0.000000,0.250000,0,0);}
.mcc_c00228{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.mdb_c00228{transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);}
.ma2_c00228{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.ma4_c00228{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.mfa_c00228{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m6f_c00228{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.mfc_c00228{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.m22_c00228{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.mfb_c00228{transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);}
.m7f_c00228{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m72_c00228{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m8d_c00228{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m49_c00228{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.mac_c00228{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.mf6_c00228{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m29_c00228{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mc7_c00228{transform:matrix(0.415456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415456,0.000000,0.000000,0.250000,0,0);}
.m7b_c00228{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.ma_c00228{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m51_c00228{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m94_c00228{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.me6_c00228{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m87_c00228{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m12_c00228{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m78_c00228{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mea_c00228{transform:matrix(0.424397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424397,0.000000,0.000000,0.250000,0,0);}
.md4_c00228{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.mb9_c00228{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m1d_c00228{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m4b_c00228{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m73_c00228{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m86_c00228{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m5a_c00228{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m3e_c00228{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m77_c00228{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m56_c00228{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.me8_c00228{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m18_c00228{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.me_c00228{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m7_c00228{transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);}
.mfd_c00228{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m13_c00228{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.me7_c00228{transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);}
.m24_c00228{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.md8_c00228{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.md6_c00228{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.m2a_c00228{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.maa_c00228{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m8c_c00228{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m2b_c00228{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m34_c00228{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m53_c00228{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m6e_c00228{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.mfe_c00228{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.md_c00228{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.m61_c00228{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m6a_c00228{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m81_c00228{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m26_c00228{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m92_c00228{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.mdc_c00228{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.me0_c00228{transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);}
.m1b_c00228{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mb4_c00228{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m6d_c00228{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mdf_c00228{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m3d_c00228{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m1a_c00228{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.mec_c00228{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.m10_c00228{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.m64_c00228{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.m7d_c00228{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m50_c00228{transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);}
.me2_c00228{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m11_c00228{transform:matrix(0.475882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475882,0.000000,0.000000,0.250000,0,0);}
.m4c_c00228{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.md5_c00228{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m62_c00228{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m45_c00228{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mcd_c00228{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.mc9_c00228{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.md0_c00228{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m8_c00228{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m9b_c00228{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m9c_c00228{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.m93_c00228{transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);}
.m1_c00228{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.ma7_c00228{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m83_c00228{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mf8_c00228{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.me3_c00228{transform:matrix(0.494706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494706,0.000000,0.000000,0.250000,0,0);}
.m84_c00228{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m5_c00228{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m9_c00228{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_c00228{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.mc_c00228{transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);}
.md7_c00228{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.mab_c00228{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m1f_c00228{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mb8_c00228{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m71_c00228{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.ma0_c00228{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m1e_c00228{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m31_c00228{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.mc2_c00228{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m3b_c00228{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mb7_c00228{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m19_c00228{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.mf3_c00228{transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);}
.mda_c00228{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);}
.m8b_c00228{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mcf_c00228{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m76_c00228{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m40_c00228{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m89_c00228{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mba_c00228{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_c00228{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.mf_c00228{transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);}
.m5b_c00228{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m80_c00228{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m3f_c00228{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m42_c00228{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m1c_c00228{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m3c_c00228{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m44_c00228{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mb5_c00228{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m33_c00228{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m3a_c00228{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.ma6_c00228{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m16_c00228{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m95_c00228{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.mc1_c00228{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);}
.m5f_c00228{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mde_c00228{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m46_c00228{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m2c_c00228{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m58_c00228{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m37_c00228{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m85_c00228{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m7a_c00228{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m60_c00228{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m4d_c00228{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m5d_c00228{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.med_c00228{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m30_c00228{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m41_c00228{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m65_c00228{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m35_c00228{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m6b_c00228{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m48_c00228{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m59_c00228{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m9e_c00228{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.md1_c00228{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m32_c00228{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.md3_c00228{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m5c_c00228{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mee_c00228{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.m7c_c00228{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.maf_c00228{transform:matrix(0.561765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561765,0.000000,0.000000,0.250000,0,0);}
.mb0_c00228{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mbd_c00228{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m15_c00228{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m38_c00228{transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);}
.m43_c00228{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mf2_c00228{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.mf5_c00228{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.mc3_c00228{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m75_c00228{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m2_c00228{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m68_c00228{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m5e_c00228{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mf9_c00228{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m66_c00228{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.ma3_c00228{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m4a_c00228{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mcb_c00228{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m79_c00228{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.mc4_c00228{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.me9_c00228{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m96_c00228{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m0_c00228{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.mbe_c00228{transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);}
.m2f_c00228{transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);}
.me5_c00228{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.m39_c00228{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mc0_c00228{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.mbf_c00228{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);}
.mf7_c00228{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.md2_c00228{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.mca_c00228{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.me1_c00228{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m63_c00228{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.mb2_c00228{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);}
.meb_c00228{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m67_c00228{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m17_c00228{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.ma5_c00228{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.mdd_c00228{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m82_c00228{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.ma1_c00228{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m8e_c00228{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.m9f_c00228{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mc5_c00228{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);}
.mf4_c00228{transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);}
.m74_c00228{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mce_c00228{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m6c_c00228{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m70_c00228{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m90_c00228{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m36_c00228{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m2d_c00228{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m8a_c00228{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.me4_c00228{transform:matrix(0.780837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780837,0.000000,0.000000,0.250000,0,0);}
.m4e_c00228{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m99_c00228{transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);}
.mf1_c00228{transform:matrix(0.794872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.794872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.794872,0.000000,0.000000,0.250000,0,0);}
.m69_c00228{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m8f_c00228{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m88_c00228{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.ma8_c00228{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mae_c00228{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.mf0_c00228{transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);}
.mbc_c00228{transform:matrix(1.123348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.123348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.123348,0.000000,0.000000,0.250000,0,0);}
.mef_c00228{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m23_c00228{transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);}
.m14_c00228{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws1_c00228{word-spacing:-6.425697px;}
.ws0_c00228{word-spacing:-6.262364px;}
.ws2_c00228{word-spacing:0.000000px;}
._0_c00228{width:7.053206px;}
.fc0_c00228{color:transparent;}
.fs5_c00228{font-size:3.420000px;}
.fs9_c00228{font-size:6.780000px;}
.fs8_c00228{font-size:13.620000px;}
.fs6_c00228{font-size:18.720000px;}
.fs0_c00228{font-size:20.400000px;}
.fs4_c00228{font-size:25.500000px;}
.fs1_c00228{font-size:28.920000px;}
.fs3_c00228{font-size:32.340000px;}
.fs2_c00228{font-size:35.700000px;}
.fs7_c00228{font-size:39.120000px;}
.y0_c00228{bottom:0.000000px;}
.yed_c00228{bottom:248.970000px;}
.yf0_c00228{bottom:249.825000px;}
.yf1_c00228{bottom:250.050000px;}
.yf2_c00228{bottom:250.905000px;}
.yee_c00228{bottom:251.970000px;}
.yef_c00228{bottom:253.050000px;}
.yeb_c00228{bottom:263.970000px;}
.ye8_c00228{bottom:264.405000px;}
.ye6_c00228{bottom:264.825000px;}
.ye7_c00228{bottom:265.470000px;}
.yea_c00228{bottom:265.905000px;}
.ye5_c00228{bottom:266.130000px;}
.ye9_c00228{bottom:266.970000px;}
.yec_c00228{bottom:267.195000px;}
.ye4_c00228{bottom:279.825000px;}
.ye1_c00228{bottom:280.050000px;}
.ye0_c00228{bottom:280.905000px;}
.ye2_c00228{bottom:281.970000px;}
.ye3_c00228{bottom:283.050000px;}
.ydd_c00228{bottom:293.550000px;}
.ydc_c00228{bottom:293.970000px;}
.yd9_c00228{bottom:294.825000px;}
.yda_c00228{bottom:295.050000px;}
.yde_c00228{bottom:295.470000px;}
.ydb_c00228{bottom:296.130000px;}
.ydf_c00228{bottom:296.550000px;}
.yd7_c00228{bottom:296.970000px;}
.yd8_c00228{bottom:298.050000px;}
.yd3_c00228{bottom:307.470000px;}
.ycf_c00228{bottom:308.550000px;}
.yd2_c00228{bottom:309.405000px;}
.yd1_c00228{bottom:309.825000px;}
.yd6_c00228{bottom:310.050000px;}
.yd0_c00228{bottom:310.470000px;}
.yd5_c00228{bottom:310.695000px;}
.yce_c00228{bottom:310.905000px;}
.ycd_c00228{bottom:311.130000px;}
.yd4_c00228{bottom:311.550000px;}
.yc6_c00228{bottom:322.470000px;}
.ycc_c00228{bottom:323.325000px;}
.yc8_c00228{bottom:323.355000px;}
.yc9_c00228{bottom:323.550000px;}
.yc4_c00228{bottom:323.970000px;}
.yc3_c00228{bottom:324.405000px;}
.yc7_c00228{bottom:324.630000px;}
.yca_c00228{bottom:325.470000px;}
.yc5_c00228{bottom:325.695000px;}
.ycb_c00228{bottom:326.550000px;}
.yc2_c00228{bottom:338.325000px;}
.ybd_c00228{bottom:338.550000px;}
.ybe_c00228{bottom:339.405000px;}
.yc0_c00228{bottom:339.630000px;}
.yc1_c00228{bottom:340.470000px;}
.ybf_c00228{bottom:341.550000px;}
.ybb_c00228{bottom:353.325000px;}
.ybc_c00228{bottom:354.405000px;}
.yb9_c00228{bottom:354.630000px;}
.yba_c00228{bottom:355.470000px;}
.yb7_c00228{bottom:368.325000px;}
.yb8_c00228{bottom:369.405000px;}
.yb6_c00228{bottom:370.470000px;}
.yb5_c00228{bottom:371.550000px;}
.yb4_c00228{bottom:383.325000px;}
.yb3_c00228{bottom:383.550000px;}
.yb2_c00228{bottom:384.405000px;}
.yb1_c00228{bottom:385.470000px;}
.yaa_c00228{bottom:397.470000px;}
.yab_c00228{bottom:397.905000px;}
.yaf_c00228{bottom:398.970000px;}
.yb0_c00228{bottom:399.195000px;}
.yae_c00228{bottom:399.405000px;}
.yac_c00228{bottom:400.050000px;}
.yad_c00228{bottom:400.470000px;}
.ya9_c00228{bottom:413.325000px;}
.ya8_c00228{bottom:415.470000px;}
.ya7_c00228{bottom:426.825000px;}
.ya6_c00228{bottom:427.470000px;}
.ya4_c00228{bottom:427.905000px;}
.ya5_c00228{bottom:428.970000px;}
.ya3_c00228{bottom:430.050000px;}
.y9e_c00228{bottom:442.470000px;}
.ya1_c00228{bottom:442.905000px;}
.y9f_c00228{bottom:443.325000px;}
.ya0_c00228{bottom:443.970000px;}
.ya2_c00228{bottom:444.195000px;}
.y9d_c00228{bottom:456.825000px;}
.y9a_c00228{bottom:457.905000px;}
.y9b_c00228{bottom:458.970000px;}
.y9c_c00228{bottom:460.050000px;}
.y96_c00228{bottom:470.970000px;}
.y97_c00228{bottom:471.825000px;}
.y99_c00228{bottom:472.050000px;}
.y95_c00228{bottom:472.905000px;}
.y94_c00228{bottom:473.970000px;}
.y98_c00228{bottom:475.050000px;}
.y8f_c00228{bottom:487.050000px;}
.y90_c00228{bottom:487.905000px;}
.y91_c00228{bottom:488.130000px;}
.y92_c00228{bottom:488.970000px;}
.y93_c00228{bottom:490.050000px;}
.y8d_c00228{bottom:500.970000px;}
.y8c_c00228{bottom:501.825000px;}
.y8a_c00228{bottom:502.905000px;}
.y8b_c00228{bottom:503.130000px;}
.y8e_c00228{bottom:505.050000px;}
.y88_c00228{bottom:516.405000px;}
.y84_c00228{bottom:516.825000px;}
.y83_c00228{bottom:517.050000px;}
.y89_c00228{bottom:518.550000px;}
.y86_c00228{bottom:518.970000px;}
.y85_c00228{bottom:519.195000px;}
.y87_c00228{bottom:520.050000px;}
.y82_c00228{bottom:530.325000px;}
.y81_c00228{bottom:532.470000px;}
.y80_c00228{bottom:545.325000px;}
.y7c_c00228{bottom:546.405000px;}
.y7e_c00228{bottom:546.630000px;}
.y79_c00228{bottom:546.825000px;}
.y7d_c00228{bottom:547.470000px;}
.y7a_c00228{bottom:547.695000px;}
.y78_c00228{bottom:548.130000px;}
.y7f_c00228{bottom:548.550000px;}
.y7b_c00228{bottom:548.970000px;}
.y77_c00228{bottom:560.970000px;}
.y76_c00228{bottom:561.405000px;}
.y70_c00228{bottom:561.825000px;}
.y75_c00228{bottom:562.470000px;}
.y74_c00228{bottom:562.695000px;}
.y73_c00228{bottom:562.905000px;}
.y6f_c00228{bottom:563.130000px;}
.y71_c00228{bottom:563.550000px;}
.y72_c00228{bottom:563.970000px;}
.y6e_c00228{bottom:592.245000px;}
.y6d_c00228{bottom:593.745000px;}
.y6b_c00228{bottom:594.405000px;}
.y6c_c00228{bottom:594.630000px;}
.y6a_c00228{bottom:595.905000px;}
.y67_c00228{bottom:610.905000px;}
.y65_c00228{bottom:611.745000px;}
.y68_c00228{bottom:612.405000px;}
.y66_c00228{bottom:612.825000px;}
.y69_c00228{bottom:613.245000px;}
.y64_c00228{bottom:613.905000px;}
.y62_c00228{bottom:614.130000px;}
.y63_c00228{bottom:615.405000px;}
.y61_c00228{bottom:631.680000px;}
.y5f_c00228{bottom:632.745000px;}
.y60_c00228{bottom:634.470000px;}
.y5e_c00228{bottom:634.905000px;}
.y5c_c00228{bottom:652.245000px;}
.y5d_c00228{bottom:653.325000px;}
.y5a_c00228{bottom:654.405000px;}
.y5b_c00228{bottom:654.630000px;}
.y54_c00228{bottom:671.745000px;}
.y56_c00228{bottom:672.825000px;}
.y58_c00228{bottom:673.245000px;}
.y57_c00228{bottom:673.905000px;}
.y55_c00228{bottom:674.130000px;}
.y59_c00228{bottom:674.970000px;}
.y51_c00228{bottom:692.325000px;}
.y50_c00228{bottom:693.405000px;}
.y52_c00228{bottom:693.630000px;}
.y53_c00228{bottom:694.905000px;}
.y4e_c00228{bottom:712.245000px;}
.y4f_c00228{bottom:713.325000px;}
.y4d_c00228{bottom:714.405000px;}
.y4c_c00228{bottom:730.905000px;}
.y49_c00228{bottom:731.745000px;}
.y4a_c00228{bottom:732.630000px;}
.y4b_c00228{bottom:733.470000px;}
.y48_c00228{bottom:733.905000px;}
.y44_c00228{bottom:750.825000px;}
.y46_c00228{bottom:751.245000px;}
.y42_c00228{bottom:752.130000px;}
.y45_c00228{bottom:752.325000px;}
.y43_c00228{bottom:753.405000px;}
.y47_c00228{bottom:754.470000px;}
.y3e_c00228{bottom:770.745000px;}
.y40_c00228{bottom:771.630000px;}
.y3c_c00228{bottom:771.825000px;}
.y3d_c00228{bottom:772.050000px;}
.y41_c00228{bottom:772.470000px;}
.y3f_c00228{bottom:772.905000px;}
.y3b_c00228{bottom:790.245000px;}
.y3a_c00228{bottom:792.405000px;}
.y36_c00228{bottom:809.745000px;}
.y39_c00228{bottom:811.245000px;}
.y37_c00228{bottom:811.905000px;}
.y38_c00228{bottom:813.405000px;}
.y34_c00228{bottom:829.245000px;}
.y35_c00228{bottom:830.745000px;}
.y33_c00228{bottom:831.630000px;}
.y32_c00228{bottom:832.905000px;}
.y2d_c00228{bottom:848.745000px;}
.y2e_c00228{bottom:848.970000px;}
.y2c_c00228{bottom:850.245000px;}
.y2b_c00228{bottom:850.905000px;}
.y2f_c00228{bottom:851.130000px;}
.y30_c00228{bottom:851.970000px;}
.y31_c00228{bottom:852.405000px;}
.y2a_c00228{bottom:869.745000px;}
.y27_c00228{bottom:870.405000px;}
.y28_c00228{bottom:871.905000px;}
.y29_c00228{bottom:871.920000px;}
.y25_c00228{bottom:889.245000px;}
.y24_c00228{bottom:890.325000px;}
.y26_c00228{bottom:891.405000px;}
.y20_c00228{bottom:908.325000px;}
.y21_c00228{bottom:908.745000px;}
.y1e_c00228{bottom:910.905000px;}
.y1f_c00228{bottom:910.920000px;}
.y23_c00228{bottom:911.130000px;}
.y22_c00228{bottom:911.970000px;}
.y1d_c00228{bottom:927.180000px;}
.y1a_c00228{bottom:930.405000px;}
.y1c_c00228{bottom:930.420000px;}
.y1b_c00228{bottom:930.630000px;}
.y17_c00228{bottom:946.905000px;}
.y14_c00228{bottom:947.745000px;}
.y19_c00228{bottom:948.405000px;}
.y16_c00228{bottom:948.825000px;}
.y18_c00228{bottom:949.905000px;}
.y15_c00228{bottom:951.420000px;}
.y11_c00228{bottom:967.245000px;}
.y13_c00228{bottom:968.745000px;}
.y12_c00228{bottom:969.405000px;}
.yc_c00228{bottom:986.745000px;}
.y10_c00228{bottom:987.825000px;}
.ye_c00228{bottom:988.905000px;}
.yf_c00228{bottom:989.970000px;}
.yd_c00228{bottom:990.420000px;}
.yb_c00228{bottom:1013.970000px;}
.y8_c00228{bottom:1014.825000px;}
.ya_c00228{bottom:1015.905000px;}
.y9_c00228{bottom:1016.970000px;}
.y7_c00228{bottom:1034.325000px;}
.y6_c00228{bottom:1034.550000px;}
.y5_c00228{bottom:1035.405000px;}
.y4_c00228{bottom:1061.745000px;}
.y3_c00228{bottom:1063.905000px;}
.y2_c00228{bottom:1099.905000px;}
.y1_c00228{bottom:1102.050000px;}
.h6_c00228{height:4.206533px;}
.ha_c00228{height:8.339268px;}
.h9_c00228{height:16.752334px;}
.h7_c00228{height:23.025234px;}
.h1_c00228{height:25.091602px;}
.h5_c00228{height:31.364502px;}
.h2_c00228{height:35.571035px;}
.h4_c00228{height:39.777568px;}
.h3_c00228{height:43.910303px;}
.h8_c00228{height:48.116836px;}
.h0_c00228{height:1335.000000px;}
.w0_c00228{width:880.500000px;}
.x0_c00228{left:0.000000px;}
.x1c_c00228{left:150.420000px;}
.x3f_c00228{left:151.920000px;}
.xe3_c00228{left:153.000000px;}
.xc_c00228{left:165.000000px;}
.x13_c00228{left:166.920000px;}
.xf8_c00228{left:168.420000px;}
.xbb_c00228{left:178.500000px;}
.xda_c00228{left:180.000000px;}
.xac_c00228{left:183.000000px;}
.x8d_c00228{left:184.500000px;}
.xf1_c00228{left:189.420000px;}
.xec_c00228{left:191.145000px;}
.x62_c00228{left:193.080000px;}
.x52_c00228{left:196.920000px;}
.xf7_c00228{left:198.420000px;}
.x7e_c00228{left:199.920000px;}
.x74_c00228{left:201.000000px;}
.x8e_c00228{left:205.500000px;}
.x96_c00228{left:210.000000px;}
.x14_c00228{left:211.920000px;}
.xa3_c00228{left:213.000000px;}
.x5a_c00228{left:214.080000px;}
.xe4_c00228{left:215.580000px;}
.x1d_c00228{left:217.500000px;}
.x75_c00228{left:220.920000px;}
.x53_c00228{left:225.000000px;}
.xf9_c00228{left:226.500000px;}
.x4a_c00228{left:229.080000px;}
.xd_c00228{left:231.000000px;}
.xb3_c00228{left:234.000000px;}
.x9f_c00228{left:236.580000px;}
.xc4_c00228{left:238.920000px;}
.x6a_c00228{left:240.420000px;}
.x2d_c00228{left:246.000000px;}
.xc8_c00228{left:247.500000px;}
.x43_c00228{left:249.000000px;}
.x63_c00228{left:252.000000px;}
.x6b_c00228{left:253.500000px;}
.x22_c00228{left:256.500000px;}
.x34_c00228{left:258.000000px;}
.x76_c00228{left:261.420000px;}
.xd7_c00228{left:264.000000px;}
.x8f_c00228{left:265.080000px;}
.xad_c00228{left:267.000000px;}
.x44_c00228{left:268.080000px;}
.x15_c00228{left:270.000000px;}
.xed_c00228{left:273.420000px;}
.xd0_c00228{left:274.920000px;}
.x4b_c00228{left:276.000000px;}
.x23_c00228{left:277.500000px;}
.x35_c00228{left:279.000000px;}
.x5b_c00228{left:280.920000px;}
.x1e_c00228{left:282.000000px;}
.x40_c00228{left:285.420000px;}
.xbc_c00228{left:286.500000px;}
.xa0_c00228{left:287.580000px;}
.xe_c00228{left:290.145000px;}
.xd2_c00228{left:292.080000px;}
.xe5_c00228{left:293.580000px;}
.x6c_c00228{left:295.275000px;}
.x90_c00228{left:297.000000px;}
.x2e_c00228{left:298.500000px;}
.x97_c00228{left:300.000000px;}
.xd1_c00228{left:301.500000px;}
.xeb_c00228{left:302.580000px;}
.x1f_c00228{left:306.000000px;}
.x86_c00228{left:307.920000px;}
.x5c_c00228{left:309.000000px;}
.x36_c00228{left:310.500000px;}
.x41_c00228{left:312.000000px;}
.xd4_c00228{left:313.920000px;}
.x3_c00228{left:316.500000px;}
.x2f_c00228{left:319.080000px;}
.x98_c00228{left:322.500000px;}
.xae_c00228{left:324.000000px;}
.x7f_c00228{left:325.500000px;}
.xcd_c00228{left:326.580000px;}
.xa4_c00228{left:328.500000px;}
.xf2_c00228{left:329.580000px;}
.x54_c00228{left:331.080000px;}
.x6_c00228{left:334.500000px;}
.x6d_c00228{left:336.000000px;}
.xf_c00228{left:337.920000px;}
.xe6_c00228{left:339.645000px;}
.x24_c00228{left:341.775000px;}
.x30_c00228{left:346.080000px;}
.xc5_c00228{left:349.080000px;}
.x42_c00228{left:354.000000px;}
.xde_c00228{left:355.500000px;}
.x80_c00228{left:356.580000px;}
.x64_c00228{left:360.000000px;}
.xbd_c00228{left:361.080000px;}
.x20_c00228{left:362.580000px;}
.xb4_c00228{left:364.080000px;}
.x37_c00228{left:366.000000px;}
.xf3_c00228{left:369.000000px;}
.xee_c00228{left:372.420000px;}
.x10_c00228{left:373.500000px;}
.x81_c00228{left:378.000000px;}
.x16_c00228{left:380.145000px;}
.x25_c00228{left:382.920000px;}
.xa5_c00228{left:384.000000px;}
.x91_c00228{left:387.000000px;}
.x31_c00228{left:389.145000px;}
.x7_c00228{left:391.080000px;}
.xc6_c00228{left:393.000000px;}
.x55_c00228{left:394.080000px;}
.x45_c00228{left:396.420000px;}
.x1_c00228{left:397.500000px;}
.xf4_c00228{left:398.580000px;}
.xfa_c00228{left:399.645000px;}
.x5d_c00228{left:401.145000px;}
.x6e_c00228{left:403.500000px;}
.x92_c00228{left:404.580000px;}
.x87_c00228{left:406.500000px;}
.x21_c00228{left:409.500000px;}
.x26_c00228{left:410.580000px;}
.xdb_c00228{left:412.500000px;}
.x65_c00228{left:414.420000px;}
.xbe_c00228{left:417.000000px;}
.x8_c00228{left:418.500000px;}
.xb5_c00228{left:421.080000px;}
.xdf_c00228{left:424.080000px;}
.x77_c00228{left:426.420000px;}
.xc7_c00228{left:427.920000px;}
.x46_c00228{left:430.500000px;}
.x99_c00228{left:432.000000px;}
.x27_c00228{left:433.500000px;}
.xa9_c00228{left:436.080000px;}
.x6f_c00228{left:438.420000px;}
.xbf_c00228{left:441.000000px;}
.x100_c00228{left:444.000000px;}
.x38_c00228{left:445.500000px;}
.x11_c00228{left:447.000000px;}
.xdc_c00228{left:448.080000px;}
.x82_c00228{left:450.855000px;}
.x88_c00228{left:451.920000px;}
.x66_c00228{left:454.500000px;}
.xa1_c00228{left:456.000000px;}
.x39_c00228{left:459.000000px;}
.x17_c00228{left:462.000000px;}
.x9_c00228{left:463.080000px;}
.x70_c00228{left:465.000000px;}
.xe7_c00228{left:467.580000px;}
.x32_c00228{left:469.500000px;}
.x4_c00228{left:470.580000px;}
.x56_c00228{left:472.275000px;}
.xf5_c00228{left:473.580000px;}
.xdd_c00228{left:475.500000px;}
.x4c_c00228{left:478.080000px;}
.x47_c00228{left:479.580000px;}
.xb6_c00228{left:481.080000px;}
.xa_c00228{left:484.920000px;}
.x5e_c00228{left:488.580000px;}
.xc9_c00228{left:490.500000px;}
.x78_c00228{left:493.500000px;}
.x3a_c00228{left:496.920000px;}
.xb7_c00228{left:498.000000px;}
.x28_c00228{left:499.500000px;}
.xb_c00228{left:503.580000px;}
.x89_c00228{left:505.500000px;}
.x93_c00228{left:508.500000px;}
.x4d_c00228{left:510.420000px;}
.xf6_c00228{left:511.500000px;}
.x79_c00228{left:512.580000px;}
.x12_c00228{left:514.500000px;}
.xaf_c00228{left:517.080000px;}
.x33_c00228{left:518.580000px;}
.x5f_c00228{left:520.920000px;}
.x94_c00228{left:522.000000px;}
.xce_c00228{left:523.920000px;}
.x5_c00228{left:527.775000px;}
.x9a_c00228{left:529.500000px;}
.xfb_c00228{left:532.080000px;}
.xd5_c00228{left:533.580000px;}
.x83_c00228{left:537.420000px;}
.xd8_c00228{left:538.500000px;}
.x67_c00228{left:540.000000px;}
.xd3_c00228{left:541.500000px;}
.x29_c00228{left:543.000000px;}
.x7a_c00228{left:544.500000px;}
.xc0_c00228{left:546.000000px;}
.x8a_c00228{left:547.080000px;}
.x9b_c00228{left:549.000000px;}
.x60_c00228{left:550.080000px;}
.xca_c00228{left:551.580000px;}
.x4e_c00228{left:554.580000px;}
.xb0_c00228{left:560.580000px;}
.x9c_c00228{left:562.500000px;}
.xfc_c00228{left:564.420000px;}
.xa6_c00228{left:565.500000px;}
.x71_c00228{left:566.580000px;}
.xc1_c00228{left:570.000000px;}
.xe0_c00228{left:571.500000px;}
.x4f_c00228{left:574.500000px;}
.x18_c00228{left:576.000000px;}
.x57_c00228{left:577.080000px;}
.x8b_c00228{left:579.000000px;}
.xb8_c00228{left:580.920000px;}
.x3b_c00228{left:582.000000px;}
.xd6_c00228{left:584.580000px;}
.xaa_c00228{left:589.500000px;}
.x7b_c00228{left:591.420000px;}
.xef_c00228{left:592.500000px;}
.x72_c00228{left:595.080000px;}
.xe8_c00228{left:597.000000px;}
.x2a_c00228{left:598.500000px;}
.x50_c00228{left:599.580000px;}
.x3c_c00228{left:601.080000px;}
.xb1_c00228{left:604.500000px;}
.xfd_c00228{left:607.500000px;}
.xa2_c00228{left:609.000000px;}
.xa7_c00228{left:610.920000px;}
.x73_c00228{left:613.500000px;}
.xd9_c00228{left:616.920000px;}
.x9d_c00228{left:618.000000px;}
.x7c_c00228{left:619.500000px;}
.x19_c00228{left:620.580000px;}
.x58_c00228{left:624.000000px;}
.xc2_c00228{left:625.500000px;}
.x61_c00228{left:627.645000px;}
.xf0_c00228{left:629.580000px;}
.xcb_c00228{left:631.080000px;}
.x8c_c00228{left:634.500000px;}
.xb9_c00228{left:635.580000px;}
.xe1_c00228{left:637.080000px;}
.x68_c00228{left:638.145000px;}
.xe9_c00228{left:640.920000px;}
.xa8_c00228{left:642.000000px;}
.x84_c00228{left:643.500000px;}
.xfe_c00228{left:649.500000px;}
.xea_c00228{left:652.500000px;}
.xe2_c00228{left:654.645000px;}
.x3d_c00228{left:656.580000px;}
.xcf_c00228{left:658.080000px;}
.x2b_c00228{left:659.775000px;}
.xff_c00228{left:661.500000px;}
.xba_c00228{left:662.580000px;}
.xab_c00228{left:664.500000px;}
.xb2_c00228{left:666.000000px;}
.x51_c00228{left:670.500000px;}
.xcc_c00228{left:674.580000px;}
.x1a_c00228{left:678.000000px;}
.x7d_c00228{left:679.920000px;}
.x3e_c00228{left:686.580000px;}
.x59_c00228{left:690.420000px;}
.x48_c00228{left:693.000000px;}
.xc3_c00228{left:694.080000px;}
.x69_c00228{left:695.580000px;}
.x2c_c00228{left:698.580000px;}
.x9e_c00228{left:700.500000px;}
.x2_c00228{left:703.920000px;}
.x1b_c00228{left:705.420000px;}
.x85_c00228{left:706.500000px;}
.x49_c00228{left:709.500000px;}
.x95_c00228{left:715.500000px;}
@media print{
.v0_c00228{vertical-align:0.000000pt;}
.ls0_c00228{letter-spacing:0.000000pt;}
.ws1_c00228{word-spacing:-5.711730pt;}
.ws0_c00228{word-spacing:-5.566546pt;}
.ws2_c00228{word-spacing:0.000000pt;}
._0_c00228{width:6.269516pt;}
.fs5_c00228{font-size:3.040000pt;}
.fs9_c00228{font-size:6.026667pt;}
.fs8_c00228{font-size:12.106667pt;}
.fs6_c00228{font-size:16.640000pt;}
.fs0_c00228{font-size:18.133333pt;}
.fs4_c00228{font-size:22.666667pt;}
.fs1_c00228{font-size:25.706667pt;}
.fs3_c00228{font-size:28.746667pt;}
.fs2_c00228{font-size:31.733333pt;}
.fs7_c00228{font-size:34.773333pt;}
.y0_c00228{bottom:0.000000pt;}
.yed_c00228{bottom:221.306667pt;}
.yf0_c00228{bottom:222.066667pt;}
.yf1_c00228{bottom:222.266667pt;}
.yf2_c00228{bottom:223.026667pt;}
.yee_c00228{bottom:223.973333pt;}
.yef_c00228{bottom:224.933333pt;}
.yeb_c00228{bottom:234.640000pt;}
.ye8_c00228{bottom:235.026667pt;}
.ye6_c00228{bottom:235.400000pt;}
.ye7_c00228{bottom:235.973333pt;}
.yea_c00228{bottom:236.360000pt;}
.ye5_c00228{bottom:236.560000pt;}
.ye9_c00228{bottom:237.306667pt;}
.yec_c00228{bottom:237.506667pt;}
.ye4_c00228{bottom:248.733333pt;}
.ye1_c00228{bottom:248.933333pt;}
.ye0_c00228{bottom:249.693333pt;}
.ye2_c00228{bottom:250.640000pt;}
.ye3_c00228{bottom:251.600000pt;}
.ydd_c00228{bottom:260.933333pt;}
.ydc_c00228{bottom:261.306667pt;}
.yd9_c00228{bottom:262.066667pt;}
.yda_c00228{bottom:262.266667pt;}
.yde_c00228{bottom:262.640000pt;}
.ydb_c00228{bottom:263.226667pt;}
.ydf_c00228{bottom:263.600000pt;}
.yd7_c00228{bottom:263.973333pt;}
.yd8_c00228{bottom:264.933333pt;}
.yd3_c00228{bottom:273.306667pt;}
.ycf_c00228{bottom:274.266667pt;}
.yd2_c00228{bottom:275.026667pt;}
.yd1_c00228{bottom:275.400000pt;}
.yd6_c00228{bottom:275.600000pt;}
.yd0_c00228{bottom:275.973333pt;}
.yd5_c00228{bottom:276.173333pt;}
.yce_c00228{bottom:276.360000pt;}
.ycd_c00228{bottom:276.560000pt;}
.yd4_c00228{bottom:276.933333pt;}
.yc6_c00228{bottom:286.640000pt;}
.ycc_c00228{bottom:287.400000pt;}
.yc8_c00228{bottom:287.426667pt;}
.yc9_c00228{bottom:287.600000pt;}
.yc4_c00228{bottom:287.973333pt;}
.yc3_c00228{bottom:288.360000pt;}
.yc7_c00228{bottom:288.560000pt;}
.yca_c00228{bottom:289.306667pt;}
.yc5_c00228{bottom:289.506667pt;}
.ycb_c00228{bottom:290.266667pt;}
.yc2_c00228{bottom:300.733333pt;}
.ybd_c00228{bottom:300.933333pt;}
.ybe_c00228{bottom:301.693333pt;}
.yc0_c00228{bottom:301.893333pt;}
.yc1_c00228{bottom:302.640000pt;}
.ybf_c00228{bottom:303.600000pt;}
.ybb_c00228{bottom:314.066667pt;}
.ybc_c00228{bottom:315.026667pt;}
.yb9_c00228{bottom:315.226667pt;}
.yba_c00228{bottom:315.973333pt;}
.yb7_c00228{bottom:327.400000pt;}
.yb8_c00228{bottom:328.360000pt;}
.yb6_c00228{bottom:329.306667pt;}
.yb5_c00228{bottom:330.266667pt;}
.yb4_c00228{bottom:340.733333pt;}
.yb3_c00228{bottom:340.933333pt;}
.yb2_c00228{bottom:341.693333pt;}
.yb1_c00228{bottom:342.640000pt;}
.yaa_c00228{bottom:353.306667pt;}
.yab_c00228{bottom:353.693333pt;}
.yaf_c00228{bottom:354.640000pt;}
.yb0_c00228{bottom:354.840000pt;}
.yae_c00228{bottom:355.026667pt;}
.yac_c00228{bottom:355.600000pt;}
.yad_c00228{bottom:355.973333pt;}
.ya9_c00228{bottom:367.400000pt;}
.ya8_c00228{bottom:369.306667pt;}
.ya7_c00228{bottom:379.400000pt;}
.ya6_c00228{bottom:379.973333pt;}
.ya4_c00228{bottom:380.360000pt;}
.ya5_c00228{bottom:381.306667pt;}
.ya3_c00228{bottom:382.266667pt;}
.y9e_c00228{bottom:393.306667pt;}
.ya1_c00228{bottom:393.693333pt;}
.y9f_c00228{bottom:394.066667pt;}
.ya0_c00228{bottom:394.640000pt;}
.ya2_c00228{bottom:394.840000pt;}
.y9d_c00228{bottom:406.066667pt;}
.y9a_c00228{bottom:407.026667pt;}
.y9b_c00228{bottom:407.973333pt;}
.y9c_c00228{bottom:408.933333pt;}
.y96_c00228{bottom:418.640000pt;}
.y97_c00228{bottom:419.400000pt;}
.y99_c00228{bottom:419.600000pt;}
.y95_c00228{bottom:420.360000pt;}
.y94_c00228{bottom:421.306667pt;}
.y98_c00228{bottom:422.266667pt;}
.y8f_c00228{bottom:432.933333pt;}
.y90_c00228{bottom:433.693333pt;}
.y91_c00228{bottom:433.893333pt;}
.y92_c00228{bottom:434.640000pt;}
.y93_c00228{bottom:435.600000pt;}
.y8d_c00228{bottom:445.306667pt;}
.y8c_c00228{bottom:446.066667pt;}
.y8a_c00228{bottom:447.026667pt;}
.y8b_c00228{bottom:447.226667pt;}
.y8e_c00228{bottom:448.933333pt;}
.y88_c00228{bottom:459.026667pt;}
.y84_c00228{bottom:459.400000pt;}
.y83_c00228{bottom:459.600000pt;}
.y89_c00228{bottom:460.933333pt;}
.y86_c00228{bottom:461.306667pt;}
.y85_c00228{bottom:461.506667pt;}
.y87_c00228{bottom:462.266667pt;}
.y82_c00228{bottom:471.400000pt;}
.y81_c00228{bottom:473.306667pt;}
.y80_c00228{bottom:484.733333pt;}
.y7c_c00228{bottom:485.693333pt;}
.y7e_c00228{bottom:485.893333pt;}
.y79_c00228{bottom:486.066667pt;}
.y7d_c00228{bottom:486.640000pt;}
.y7a_c00228{bottom:486.840000pt;}
.y78_c00228{bottom:487.226667pt;}
.y7f_c00228{bottom:487.600000pt;}
.y7b_c00228{bottom:487.973333pt;}
.y77_c00228{bottom:498.640000pt;}
.y76_c00228{bottom:499.026667pt;}
.y70_c00228{bottom:499.400000pt;}
.y75_c00228{bottom:499.973333pt;}
.y74_c00228{bottom:500.173333pt;}
.y73_c00228{bottom:500.360000pt;}
.y6f_c00228{bottom:500.560000pt;}
.y71_c00228{bottom:500.933333pt;}
.y72_c00228{bottom:501.306667pt;}
.y6e_c00228{bottom:526.440000pt;}
.y6d_c00228{bottom:527.773333pt;}
.y6b_c00228{bottom:528.360000pt;}
.y6c_c00228{bottom:528.560000pt;}
.y6a_c00228{bottom:529.693333pt;}
.y67_c00228{bottom:543.026667pt;}
.y65_c00228{bottom:543.773333pt;}
.y68_c00228{bottom:544.360000pt;}
.y66_c00228{bottom:544.733333pt;}
.y69_c00228{bottom:545.106667pt;}
.y64_c00228{bottom:545.693333pt;}
.y62_c00228{bottom:545.893333pt;}
.y63_c00228{bottom:547.026667pt;}
.y61_c00228{bottom:561.493333pt;}
.y5f_c00228{bottom:562.440000pt;}
.y60_c00228{bottom:563.973333pt;}
.y5e_c00228{bottom:564.360000pt;}
.y5c_c00228{bottom:579.773333pt;}
.y5d_c00228{bottom:580.733333pt;}
.y5a_c00228{bottom:581.693333pt;}
.y5b_c00228{bottom:581.893333pt;}
.y54_c00228{bottom:597.106667pt;}
.y56_c00228{bottom:598.066667pt;}
.y58_c00228{bottom:598.440000pt;}
.y57_c00228{bottom:599.026667pt;}
.y55_c00228{bottom:599.226667pt;}
.y59_c00228{bottom:599.973333pt;}
.y51_c00228{bottom:615.400000pt;}
.y50_c00228{bottom:616.360000pt;}
.y52_c00228{bottom:616.560000pt;}
.y53_c00228{bottom:617.693333pt;}
.y4e_c00228{bottom:633.106667pt;}
.y4f_c00228{bottom:634.066667pt;}
.y4d_c00228{bottom:635.026667pt;}
.y4c_c00228{bottom:649.693333pt;}
.y49_c00228{bottom:650.440000pt;}
.y4a_c00228{bottom:651.226667pt;}
.y4b_c00228{bottom:651.973333pt;}
.y48_c00228{bottom:652.360000pt;}
.y44_c00228{bottom:667.400000pt;}
.y46_c00228{bottom:667.773333pt;}
.y42_c00228{bottom:668.560000pt;}
.y45_c00228{bottom:668.733333pt;}
.y43_c00228{bottom:669.693333pt;}
.y47_c00228{bottom:670.640000pt;}
.y3e_c00228{bottom:685.106667pt;}
.y40_c00228{bottom:685.893333pt;}
.y3c_c00228{bottom:686.066667pt;}
.y3d_c00228{bottom:686.266667pt;}
.y41_c00228{bottom:686.640000pt;}
.y3f_c00228{bottom:687.026667pt;}
.y3b_c00228{bottom:702.440000pt;}
.y3a_c00228{bottom:704.360000pt;}
.y36_c00228{bottom:719.773333pt;}
.y39_c00228{bottom:721.106667pt;}
.y37_c00228{bottom:721.693333pt;}
.y38_c00228{bottom:723.026667pt;}
.y34_c00228{bottom:737.106667pt;}
.y35_c00228{bottom:738.440000pt;}
.y33_c00228{bottom:739.226667pt;}
.y32_c00228{bottom:740.360000pt;}
.y2d_c00228{bottom:754.440000pt;}
.y2e_c00228{bottom:754.640000pt;}
.y2c_c00228{bottom:755.773333pt;}
.y2b_c00228{bottom:756.360000pt;}
.y2f_c00228{bottom:756.560000pt;}
.y30_c00228{bottom:757.306667pt;}
.y31_c00228{bottom:757.693333pt;}
.y2a_c00228{bottom:773.106667pt;}
.y27_c00228{bottom:773.693333pt;}
.y28_c00228{bottom:775.026667pt;}
.y29_c00228{bottom:775.040000pt;}
.y25_c00228{bottom:790.440000pt;}
.y24_c00228{bottom:791.400000pt;}
.y26_c00228{bottom:792.360000pt;}
.y20_c00228{bottom:807.400000pt;}
.y21_c00228{bottom:807.773333pt;}
.y1e_c00228{bottom:809.693333pt;}
.y1f_c00228{bottom:809.706667pt;}
.y23_c00228{bottom:809.893333pt;}
.y22_c00228{bottom:810.640000pt;}
.y1d_c00228{bottom:824.160000pt;}
.y1a_c00228{bottom:827.026667pt;}
.y1c_c00228{bottom:827.040000pt;}
.y1b_c00228{bottom:827.226667pt;}
.y17_c00228{bottom:841.693333pt;}
.y14_c00228{bottom:842.440000pt;}
.y19_c00228{bottom:843.026667pt;}
.y16_c00228{bottom:843.400000pt;}
.y18_c00228{bottom:844.360000pt;}
.y15_c00228{bottom:845.706667pt;}
.y11_c00228{bottom:859.773333pt;}
.y13_c00228{bottom:861.106667pt;}
.y12_c00228{bottom:861.693333pt;}
.yc_c00228{bottom:877.106667pt;}
.y10_c00228{bottom:878.066667pt;}
.ye_c00228{bottom:879.026667pt;}
.yf_c00228{bottom:879.973333pt;}
.yd_c00228{bottom:880.373333pt;}
.yb_c00228{bottom:901.306667pt;}
.y8_c00228{bottom:902.066667pt;}
.ya_c00228{bottom:903.026667pt;}
.y9_c00228{bottom:903.973333pt;}
.y7_c00228{bottom:919.400000pt;}
.y6_c00228{bottom:919.600000pt;}
.y5_c00228{bottom:920.360000pt;}
.y4_c00228{bottom:943.773333pt;}
.y3_c00228{bottom:945.693333pt;}
.y2_c00228{bottom:977.693333pt;}
.y1_c00228{bottom:979.600000pt;}
.h6_c00228{height:3.739141pt;}
.ha_c00228{height:7.412682pt;}
.h9_c00228{height:14.890964pt;}
.h7_c00228{height:20.466875pt;}
.h1_c00228{height:22.303646pt;}
.h5_c00228{height:27.879557pt;}
.h2_c00228{height:31.618698pt;}
.h4_c00228{height:35.357839pt;}
.h3_c00228{height:39.031380pt;}
.h8_c00228{height:42.770521pt;}
.h0_c00228{height:1186.666667pt;}
.w0_c00228{width:782.666667pt;}
.x0_c00228{left:0.000000pt;}
.x1c_c00228{left:133.706667pt;}
.x3f_c00228{left:135.040000pt;}
.xe3_c00228{left:136.000000pt;}
.xc_c00228{left:146.666667pt;}
.x13_c00228{left:148.373333pt;}
.xf8_c00228{left:149.706667pt;}
.xbb_c00228{left:158.666667pt;}
.xda_c00228{left:160.000000pt;}
.xac_c00228{left:162.666667pt;}
.x8d_c00228{left:164.000000pt;}
.xf1_c00228{left:168.373333pt;}
.xec_c00228{left:169.906667pt;}
.x62_c00228{left:171.626667pt;}
.x52_c00228{left:175.040000pt;}
.xf7_c00228{left:176.373333pt;}
.x7e_c00228{left:177.706667pt;}
.x74_c00228{left:178.666667pt;}
.x8e_c00228{left:182.666667pt;}
.x96_c00228{left:186.666667pt;}
.x14_c00228{left:188.373333pt;}
.xa3_c00228{left:189.333333pt;}
.x5a_c00228{left:190.293333pt;}
.xe4_c00228{left:191.626667pt;}
.x1d_c00228{left:193.333333pt;}
.x75_c00228{left:196.373333pt;}
.x53_c00228{left:200.000000pt;}
.xf9_c00228{left:201.333333pt;}
.x4a_c00228{left:203.626667pt;}
.xd_c00228{left:205.333333pt;}
.xb3_c00228{left:208.000000pt;}
.x9f_c00228{left:210.293333pt;}
.xc4_c00228{left:212.373333pt;}
.x6a_c00228{left:213.706667pt;}
.x2d_c00228{left:218.666667pt;}
.xc8_c00228{left:220.000000pt;}
.x43_c00228{left:221.333333pt;}
.x63_c00228{left:224.000000pt;}
.x6b_c00228{left:225.333333pt;}
.x22_c00228{left:228.000000pt;}
.x34_c00228{left:229.333333pt;}
.x76_c00228{left:232.373333pt;}
.xd7_c00228{left:234.666667pt;}
.x8f_c00228{left:235.626667pt;}
.xad_c00228{left:237.333333pt;}
.x44_c00228{left:238.293333pt;}
.x15_c00228{left:240.000000pt;}
.xed_c00228{left:243.040000pt;}
.xd0_c00228{left:244.373333pt;}
.x4b_c00228{left:245.333333pt;}
.x23_c00228{left:246.666667pt;}
.x35_c00228{left:248.000000pt;}
.x5b_c00228{left:249.706667pt;}
.x1e_c00228{left:250.666667pt;}
.x40_c00228{left:253.706667pt;}
.xbc_c00228{left:254.666667pt;}
.xa0_c00228{left:255.626667pt;}
.xe_c00228{left:257.906667pt;}
.xd2_c00228{left:259.626667pt;}
.xe5_c00228{left:260.960000pt;}
.x6c_c00228{left:262.466667pt;}
.x90_c00228{left:264.000000pt;}
.x2e_c00228{left:265.333333pt;}
.x97_c00228{left:266.666667pt;}
.xd1_c00228{left:268.000000pt;}
.xeb_c00228{left:268.960000pt;}
.x1f_c00228{left:272.000000pt;}
.x86_c00228{left:273.706667pt;}
.x5c_c00228{left:274.666667pt;}
.x36_c00228{left:276.000000pt;}
.x41_c00228{left:277.333333pt;}
.xd4_c00228{left:279.040000pt;}
.x3_c00228{left:281.333333pt;}
.x2f_c00228{left:283.626667pt;}
.x98_c00228{left:286.666667pt;}
.xae_c00228{left:288.000000pt;}
.x7f_c00228{left:289.333333pt;}
.xcd_c00228{left:290.293333pt;}
.xa4_c00228{left:292.000000pt;}
.xf2_c00228{left:292.960000pt;}
.x54_c00228{left:294.293333pt;}
.x6_c00228{left:297.333333pt;}
.x6d_c00228{left:298.666667pt;}
.xf_c00228{left:300.373333pt;}
.xe6_c00228{left:301.906667pt;}
.x24_c00228{left:303.800000pt;}
.x30_c00228{left:307.626667pt;}
.xc5_c00228{left:310.293333pt;}
.x42_c00228{left:314.666667pt;}
.xde_c00228{left:316.000000pt;}
.x80_c00228{left:316.960000pt;}
.x64_c00228{left:320.000000pt;}
.xbd_c00228{left:320.960000pt;}
.x20_c00228{left:322.293333pt;}
.xb4_c00228{left:323.626667pt;}
.x37_c00228{left:325.333333pt;}
.xf3_c00228{left:328.000000pt;}
.xee_c00228{left:331.040000pt;}
.x10_c00228{left:332.000000pt;}
.x81_c00228{left:336.000000pt;}
.x16_c00228{left:337.906667pt;}
.x25_c00228{left:340.373333pt;}
.xa5_c00228{left:341.333333pt;}
.x91_c00228{left:344.000000pt;}
.x31_c00228{left:345.906667pt;}
.x7_c00228{left:347.626667pt;}
.xc6_c00228{left:349.333333pt;}
.x55_c00228{left:350.293333pt;}
.x45_c00228{left:352.373333pt;}
.x1_c00228{left:353.333333pt;}
.xf4_c00228{left:354.293333pt;}
.xfa_c00228{left:355.240000pt;}
.x5d_c00228{left:356.573333pt;}
.x6e_c00228{left:358.666667pt;}
.x92_c00228{left:359.626667pt;}
.x87_c00228{left:361.333333pt;}
.x21_c00228{left:364.000000pt;}
.x26_c00228{left:364.960000pt;}
.xdb_c00228{left:366.666667pt;}
.x65_c00228{left:368.373333pt;}
.xbe_c00228{left:370.666667pt;}
.x8_c00228{left:372.000000pt;}
.xb5_c00228{left:374.293333pt;}
.xdf_c00228{left:376.960000pt;}
.x77_c00228{left:379.040000pt;}
.xc7_c00228{left:380.373333pt;}
.x46_c00228{left:382.666667pt;}
.x99_c00228{left:384.000000pt;}
.x27_c00228{left:385.333333pt;}
.xa9_c00228{left:387.626667pt;}
.x6f_c00228{left:389.706667pt;}
.xbf_c00228{left:392.000000pt;}
.x100_c00228{left:394.666667pt;}
.x38_c00228{left:396.000000pt;}
.x11_c00228{left:397.333333pt;}
.xdc_c00228{left:398.293333pt;}
.x82_c00228{left:400.760000pt;}
.x88_c00228{left:401.706667pt;}
.x66_c00228{left:404.000000pt;}
.xa1_c00228{left:405.333333pt;}
.x39_c00228{left:408.000000pt;}
.x17_c00228{left:410.666667pt;}
.x9_c00228{left:411.626667pt;}
.x70_c00228{left:413.333333pt;}
.xe7_c00228{left:415.626667pt;}
.x32_c00228{left:417.333333pt;}
.x4_c00228{left:418.293333pt;}
.x56_c00228{left:419.800000pt;}
.xf5_c00228{left:420.960000pt;}
.xdd_c00228{left:422.666667pt;}
.x4c_c00228{left:424.960000pt;}
.x47_c00228{left:426.293333pt;}
.xb6_c00228{left:427.626667pt;}
.xa_c00228{left:431.040000pt;}
.x5e_c00228{left:434.293333pt;}
.xc9_c00228{left:436.000000pt;}
.x78_c00228{left:438.666667pt;}
.x3a_c00228{left:441.706667pt;}
.xb7_c00228{left:442.666667pt;}
.x28_c00228{left:444.000000pt;}
.xb_c00228{left:447.626667pt;}
.x89_c00228{left:449.333333pt;}
.x93_c00228{left:452.000000pt;}
.x4d_c00228{left:453.706667pt;}
.xf6_c00228{left:454.666667pt;}
.x79_c00228{left:455.626667pt;}
.x12_c00228{left:457.333333pt;}
.xaf_c00228{left:459.626667pt;}
.x33_c00228{left:460.960000pt;}
.x5f_c00228{left:463.040000pt;}
.x94_c00228{left:464.000000pt;}
.xce_c00228{left:465.706667pt;}
.x5_c00228{left:469.133333pt;}
.x9a_c00228{left:470.666667pt;}
.xfb_c00228{left:472.960000pt;}
.xd5_c00228{left:474.293333pt;}
.x83_c00228{left:477.706667pt;}
.xd8_c00228{left:478.666667pt;}
.x67_c00228{left:480.000000pt;}
.xd3_c00228{left:481.333333pt;}
.x29_c00228{left:482.666667pt;}
.x7a_c00228{left:484.000000pt;}
.xc0_c00228{left:485.333333pt;}
.x8a_c00228{left:486.293333pt;}
.x9b_c00228{left:488.000000pt;}
.x60_c00228{left:488.960000pt;}
.xca_c00228{left:490.293333pt;}
.x4e_c00228{left:492.960000pt;}
.xb0_c00228{left:498.293333pt;}
.x9c_c00228{left:500.000000pt;}
.xfc_c00228{left:501.706667pt;}
.xa6_c00228{left:502.666667pt;}
.x71_c00228{left:503.626667pt;}
.xc1_c00228{left:506.666667pt;}
.xe0_c00228{left:508.000000pt;}
.x4f_c00228{left:510.666667pt;}
.x18_c00228{left:512.000000pt;}
.x57_c00228{left:512.960000pt;}
.x8b_c00228{left:514.666667pt;}
.xb8_c00228{left:516.373333pt;}
.x3b_c00228{left:517.333333pt;}
.xd6_c00228{left:519.626667pt;}
.xaa_c00228{left:524.000000pt;}
.x7b_c00228{left:525.706667pt;}
.xef_c00228{left:526.666667pt;}
.x72_c00228{left:528.960000pt;}
.xe8_c00228{left:530.666667pt;}
.x2a_c00228{left:532.000000pt;}
.x50_c00228{left:532.960000pt;}
.x3c_c00228{left:534.293333pt;}
.xb1_c00228{left:537.333333pt;}
.xfd_c00228{left:540.000000pt;}
.xa2_c00228{left:541.333333pt;}
.xa7_c00228{left:543.040000pt;}
.x73_c00228{left:545.333333pt;}
.xd9_c00228{left:548.373333pt;}
.x9d_c00228{left:549.333333pt;}
.x7c_c00228{left:550.666667pt;}
.x19_c00228{left:551.626667pt;}
.x58_c00228{left:554.666667pt;}
.xc2_c00228{left:556.000000pt;}
.x61_c00228{left:557.906667pt;}
.xf0_c00228{left:559.626667pt;}
.xcb_c00228{left:560.960000pt;}
.x8c_c00228{left:564.000000pt;}
.xb9_c00228{left:564.960000pt;}
.xe1_c00228{left:566.293333pt;}
.x68_c00228{left:567.240000pt;}
.xe9_c00228{left:569.706667pt;}
.xa8_c00228{left:570.666667pt;}
.x84_c00228{left:572.000000pt;}
.xfe_c00228{left:577.333333pt;}
.xea_c00228{left:580.000000pt;}
.xe2_c00228{left:581.906667pt;}
.x3d_c00228{left:583.626667pt;}
.xcf_c00228{left:584.960000pt;}
.x2b_c00228{left:586.466667pt;}
.xff_c00228{left:588.000000pt;}
.xba_c00228{left:588.960000pt;}
.xab_c00228{left:590.666667pt;}
.xb2_c00228{left:592.000000pt;}
.x51_c00228{left:596.000000pt;}
.xcc_c00228{left:599.626667pt;}
.x1a_c00228{left:602.666667pt;}
.x7d_c00228{left:604.373333pt;}
.x3e_c00228{left:610.293333pt;}
.x59_c00228{left:613.706667pt;}
.x48_c00228{left:616.000000pt;}
.xc3_c00228{left:616.960000pt;}
.x69_c00228{left:618.293333pt;}
.x2c_c00228{left:620.960000pt;}
.x9e_c00228{left:622.666667pt;}
.x2_c00228{left:625.706667pt;}
.x1b_c00228{left:627.040000pt;}
.x85_c00228{left:628.000000pt;}
.x49_c00228{left:630.666667pt;}
.x95_c00228{left:636.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_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_fdb73bd8244ed2adf476fed4.woff2')format("woff");}.ff1_c00229{font-family:ff1_c00229;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf6_c00229{transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);}
.m100_c00229{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);}
.m5e_c00229{transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);}
.m77_c00229{transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);}
.m8e_c00229{transform:matrix(0.370594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370594,0.000000,0.000000,0.250000,0,0);}
.me_c00229{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m61_c00229{transform:matrix(0.371521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371521,0.000000,0.000000,0.250000,0,0);}
.m4a_c00229{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m5f_c00229{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.mfd_c00229{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m8b_c00229{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.mde_c00229{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m92_c00229{transform:matrix(0.380334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380334,0.000000,0.000000,0.250000,0,0);}
.m25_c00229{transform:matrix(0.382189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382189,0.000000,0.000000,0.250000,0,0);}
.maa_c00229{transform:matrix(0.384202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384202,0.000000,0.000000,0.250000,0,0);}
.mad_c00229{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mc8_c00229{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m87_c00229{transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);}
.m60_c00229{transform:matrix(0.394710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394710,0.000000,0.000000,0.250000,0,0);}
.m108_c00229{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m3d_c00229{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m65_c00229{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m106_c00229{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.mfb_c00229{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.me4_c00229{transform:matrix(0.401840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401840,0.000000,0.000000,0.250000,0,0);}
.mb5_c00229{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m49_c00229{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.mf5_c00229{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m3e_c00229{transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);}
.m74_c00229{transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);}
.meb_c00229{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m6a_c00229{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m44_c00229{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m4_c00229{transform:matrix(0.415584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415584,0.000000,0.000000,0.250000,0,0);}
.m104_c00229{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m10e_c00229{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.md9_c00229{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m98_c00229{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.mbc_c00229{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m75_c00229{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.mbd_c00229{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.ma1_c00229{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m3b_c00229{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m21_c00229{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.mdb_c00229{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mfa_c00229{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mc7_c00229{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m22_c00229{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m30_c00229{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.mbf_c00229{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m4c_c00229{transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);}
.m9a_c00229{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.mbb_c00229{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m15_c00229{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.mc3_c00229{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m8f_c00229{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.md6_c00229{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m93_c00229{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.mcb_c00229{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.md7_c00229{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m68_c00229{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.mbe_c00229{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m40_c00229{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m41_c00229{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m51_c00229{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.m9d_c00229{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m84_c00229{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m85_c00229{transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);}
.m81_c00229{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m7a_c00229{transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);}
.mb0_c00229{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.mcc_c00229{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.me8_c00229{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.me0_c00229{transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);}
.m69_c00229{transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);}
.m10c_c00229{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.md3_c00229{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m8c_c00229{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.ma9_c00229{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m6f_c00229{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m46_c00229{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.mc2_c00229{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mae_c00229{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m50_c00229{transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);}
.mda_c00229{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m5_c00229{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mba_c00229{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m1f_c00229{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.md8_c00229{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m12_c00229{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m88_c00229{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m97_c00229{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m6e_c00229{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.mfc_c00229{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m48_c00229{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m1e_c00229{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.mb_c00229{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m55_c00229{transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);}
.ma4_c00229{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m38_c00229{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.mce_c00229{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m83_c00229{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m33_c00229{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m2e_c00229{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m82_c00229{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.mf8_c00229{transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);}
.m52_c00229{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m32_c00229{transform:matrix(0.486029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486029,0.000000,0.000000,0.250000,0,0);}
.m7c_c00229{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m24_c00229{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.md1_c00229{transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);}
.m6c_c00229{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m7e_c00229{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.ma5_c00229{transform:matrix(0.490724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490724,0.000000,0.000000,0.250000,0,0);}
.m2b_c00229{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m59_c00229{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.mf1_c00229{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mcf_c00229{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.mf3_c00229{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m67_c00229{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.mb9_c00229{transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);}
.me1_c00229{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m7_c00229{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);}
.me7_c00229{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.ma3_c00229{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m78_c00229{transform:matrix(0.505882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505882,0.000000,0.000000,0.250000,0,0);}
.mec_c00229{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m47_c00229{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m3c_c00229{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m23_c00229{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m73_c00229{transform:matrix(0.514378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514378,0.000000,0.000000,0.250000,0,0);}
.m13_c00229{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.m7d_c00229{transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);}
.me6_c00229{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.md_c00229{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.ma8_c00229{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m10_c00229{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m8d_c00229{transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);}
.m79_c00229{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);}
.mb6_c00229{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.me5_c00229{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.md4_c00229{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m2a_c00229{transform:matrix(0.525882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525882,0.000000,0.000000,0.250000,0,0);}
.m109_c00229{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m101_c00229{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mca_c00229{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m94_c00229{transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);}
.m9c_c00229{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mb7_c00229{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.mdf_c00229{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.ma7_c00229{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mc6_c00229{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m20_c00229{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.me2_c00229{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mfe_c00229{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mb4_c00229{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m42_c00229{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m107_c00229{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.md2_c00229{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m70_c00229{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);}
.m27_c00229{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.mff_c00229{transform:matrix(0.541667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541667,0.000000,0.000000,0.250000,0,0);}
.m5d_c00229{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m9e_c00229{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mc9_c00229{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m1a_c00229{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m7f_c00229{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m36_c00229{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.mee_c00229{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m10b_c00229{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mb3_c00229{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m5a_c00229{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.mb1_c00229{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m26_c00229{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.mf9_c00229{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.md5_c00229{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mc5_c00229{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m80_c00229{transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);}
.mf2_c00229{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mb2_c00229{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m28_c00229{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.mf_c00229{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.m9f_c00229{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mf4_c00229{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m64_c00229{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_c00229{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m105_c00229{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m9b_c00229{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m3f_c00229{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.mcd_c00229{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m6b_c00229{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.mab_c00229{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.me3_c00229{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m102_c00229{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m4f_c00229{transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);}
.m3_c00229{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m7b_c00229{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m53_c00229{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);}
.me9_c00229{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m39_c00229{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.ma_c00229{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m11_c00229{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m3a_c00229{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.mf0_c00229{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m89_c00229{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m5c_c00229{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m66_c00229{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m10d_c00229{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.md0_c00229{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m1_c00229{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m16_c00229{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m72_c00229{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.mb8_c00229{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.med_c00229{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.mdd_c00229{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mea_c00229{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m90_c00229{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.m2d_c00229{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m86_c00229{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m35_c00229{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);}
.m95_c00229{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.m2f_c00229{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m19_c00229{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m6d_c00229{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m103_c00229{transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);}
.m4b_c00229{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m1d_c00229{transform:matrix(0.636029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636029,0.000000,0.000000,0.250000,0,0);}
.m31_c00229{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m62_c00229{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m57_c00229{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m1c_c00229{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.m9_c00229{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m37_c00229{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m45_c00229{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m34_c00229{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);}
.m1b_c00229{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m4e_c00229{transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);}
.m8_c00229{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m17_c00229{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.ma2_c00229{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.mc4_c00229{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.ma0_c00229{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m76_c00229{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.mdc_c00229{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m43_c00229{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m2c_c00229{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m14_c00229{transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);}
.m4d_c00229{transform:matrix(0.696324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696324,0.000000,0.000000,0.250000,0,0);}
.m56_c00229{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m71_c00229{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m18_c00229{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);}
.m8a_c00229{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m29_c00229{transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);}
.ma6_c00229{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.mf7_c00229{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m0_c00229{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mac_c00229{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m10a_c00229{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m96_c00229{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.mc0_c00229{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mc1_c00229{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.maf_c00229{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mef_c00229{transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);}
.m2_c00229{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m91_c00229{transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);}
.m54_c00229{transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);}
.m63_c00229{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m58_c00229{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.m5b_c00229{transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);}
.mc_c00229{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m99_c00229{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.v0_c00229{vertical-align:0.000000px;}
.v1_c00229{vertical-align:7.680000px;}
.ls2_c00229{letter-spacing:0.000000px;}
.ls1_c00229{letter-spacing:11.817600px;}
.ls0_c00229{letter-spacing:17.817600px;}
.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:-7.305001px;}
.ws3_c00229{word-spacing:0.000000px;}
.ws1_c00229{word-spacing:0.607426px;}
.ws2_c00229{word-spacing:3.443016px;}
.fc0_c00229{color:transparent;}
.fs7_c00229{font-size:3.420000px;}
.fs2_c00229{font-size:13.620000px;}
.fs0_c00229{font-size:18.720000px;}
.fs1_c00229{font-size:20.400000px;}
.fs3_c00229{font-size:25.500000px;}
.fs5_c00229{font-size:28.920000px;}
.fs4_c00229{font-size:32.340000px;}
.fs6_c00229{font-size:35.700000px;}
.fs8_c00229{font-size:39.120000px;}
.y0_c00229{bottom:0.000000px;}
.yf9_c00229{bottom:252.825000px;}
.yfa_c00229{bottom:253.245000px;}
.yf7_c00229{bottom:254.130000px;}
.yf8_c00229{bottom:255.405000px;}
.yf5_c00229{bottom:272.745000px;}
.yf4_c00229{bottom:273.630000px;}
.yf6_c00229{bottom:273.825000px;}
.yf3_c00229{bottom:274.905000px;}
.yf1_c00229{bottom:292.245000px;}
.yf2_c00229{bottom:293.745000px;}
.yf0_c00229{bottom:294.405000px;}
.yef_c00229{bottom:311.745000px;}
.yee_c00229{bottom:312.180000px;}
.yec_c00229{bottom:313.245000px;}
.ye9_c00229{bottom:313.905000px;}
.yea_c00229{bottom:314.130000px;}
.yed_c00229{bottom:314.325000px;}
.yeb_c00229{bottom:315.405000px;}
.ye5_c00229{bottom:332.745000px;}
.ye4_c00229{bottom:333.405000px;}
.ye8_c00229{bottom:333.630000px;}
.ye7_c00229{bottom:333.825000px;}
.ye6_c00229{bottom:334.905000px;}
.ye1_c00229{bottom:351.180000px;}
.ydf_c00229{bottom:352.245000px;}
.yde_c00229{bottom:352.905000px;}
.ye2_c00229{bottom:353.130000px;}
.ye3_c00229{bottom:353.970000px;}
.ye0_c00229{bottom:354.405000px;}
.ydc_c00229{bottom:369.405000px;}
.ydd_c00229{bottom:372.630000px;}
.ydb_c00229{bottom:373.905000px;}
.yd8_c00229{bottom:391.245000px;}
.yd9_c00229{bottom:392.550000px;}
.yd6_c00229{bottom:393.405000px;}
.yda_c00229{bottom:393.630000px;}
.yd7_c00229{bottom:394.905000px;}
.yd5_c00229{bottom:411.180000px;}
.yd2_c00229{bottom:412.245000px;}
.yd1_c00229{bottom:412.905000px;}
.yd4_c00229{bottom:413.130000px;}
.yd3_c00229{bottom:414.405000px;}
.yce_c00229{bottom:430.245000px;}
.ycd_c00229{bottom:431.325000px;}
.ycb_c00229{bottom:431.745000px;}
.yca_c00229{bottom:432.405000px;}
.yd0_c00229{bottom:432.630000px;}
.ycf_c00229{bottom:432.825000px;}
.ycc_c00229{bottom:433.470000px;}
.yc8_c00229{bottom:450.825000px;}
.yc9_c00229{bottom:451.245000px;}
.yc7_c00229{bottom:453.405000px;}
.yc4_c00229{bottom:470.745000px;}
.yc6_c00229{bottom:471.825000px;}
.yc5_c00229{bottom:472.905000px;}
.yc3_c00229{bottom:490.245000px;}
.yc1_c00229{bottom:492.405000px;}
.yc2_c00229{bottom:492.630000px;}
.ybd_c00229{bottom:509.745000px;}
.yc0_c00229{bottom:510.630000px;}
.ybc_c00229{bottom:510.825000px;}
.ybf_c00229{bottom:511.905000px;}
.ybe_c00229{bottom:512.130000px;}
.yba_c00229{bottom:529.245000px;}
.ybb_c00229{bottom:530.325000px;}
.yb8_c00229{bottom:531.405000px;}
.yb9_c00229{bottom:531.630000px;}
.yb7_c00229{bottom:532.470000px;}
.yb5_c00229{bottom:549.180000px;}
.yb6_c00229{bottom:550.245000px;}
.yb3_c00229{bottom:551.130000px;}
.yb2_c00229{bottom:551.325000px;}
.yb4_c00229{bottom:552.405000px;}
.yb0_c00229{bottom:567.825000px;}
.yb1_c00229{bottom:568.470000px;}
.yae_c00229{bottom:568.905000px;}
.yab_c00229{bottom:569.745000px;}
.yaf_c00229{bottom:571.470000px;}
.yad_c00229{bottom:571.905000px;}
.yac_c00229{bottom:571.920000px;}
.ya8_c00229{bottom:605.325000px;}
.ya7_c00229{bottom:605.550000px;}
.ya9_c00229{bottom:605.970000px;}
.ya6_c00229{bottom:606.405000px;}
.yaa_c00229{bottom:606.630000px;}
.ya5_c00229{bottom:608.550000px;}
.ya2_c00229{bottom:619.470000px;}
.y9f_c00229{bottom:620.325000px;}
.ya1_c00229{bottom:620.550000px;}
.ya0_c00229{bottom:621.405000px;}
.y9e_c00229{bottom:621.630000px;}
.ya4_c00229{bottom:622.470000px;}
.ya3_c00229{bottom:622.695000px;}
.y9d_c00229{bottom:623.550000px;}
.y96_c00229{bottom:634.470000px;}
.y9b_c00229{bottom:635.325000px;}
.y9c_c00229{bottom:635.970000px;}
.y97_c00229{bottom:636.405000px;}
.y9a_c00229{bottom:636.630000px;}
.y98_c00229{bottom:637.470000px;}
.y99_c00229{bottom:637.695000px;}
.y92_c00229{bottom:650.325000px;}
.y91_c00229{bottom:650.550000px;}
.y93_c00229{bottom:651.405000px;}
.y94_c00229{bottom:652.470000px;}
.y95_c00229{bottom:653.550000px;}
.y8e_c00229{bottom:665.325000px;}
.y8d_c00229{bottom:666.405000px;}
.y8f_c00229{bottom:666.630000px;}
.y90_c00229{bottom:668.550000px;}
.y8c_c00229{bottom:679.470000px;}
.y8b_c00229{bottom:680.325000px;}
.y8a_c00229{bottom:681.405000px;}
.y88_c00229{bottom:682.050000px;}
.y89_c00229{bottom:682.470000px;}
.y83_c00229{bottom:694.470000px;}
.y87_c00229{bottom:695.325000px;}
.y84_c00229{bottom:696.405000px;}
.y85_c00229{bottom:697.695000px;}
.y86_c00229{bottom:698.550000px;}
.y81_c00229{bottom:709.905000px;}
.y82_c00229{bottom:710.550000px;}
.y7d_c00229{bottom:723.825000px;}
.y7b_c00229{bottom:724.470000px;}
.y7f_c00229{bottom:724.905000px;}
.y7c_c00229{bottom:725.970000px;}
.y7e_c00229{bottom:726.630000px;}
.y80_c00229{bottom:727.050000px;}
.y7a_c00229{bottom:737.970000px;}
.y77_c00229{bottom:738.825000px;}
.y75_c00229{bottom:739.050000px;}
.y79_c00229{bottom:740.970000px;}
.y78_c00229{bottom:741.195000px;}
.y76_c00229{bottom:742.050000px;}
.y70_c00229{bottom:752.970000px;}
.y74_c00229{bottom:753.825000px;}
.y72_c00229{bottom:755.130000px;}
.y71_c00229{bottom:755.325000px;}
.y6f_c00229{bottom:755.970000px;}
.y6e_c00229{bottom:756.195000px;}
.y73_c00229{bottom:757.470000px;}
.y6b_c00229{bottom:769.050000px;}
.y6c_c00229{bottom:769.905000px;}
.y6d_c00229{bottom:770.970000px;}
.y66_c00229{bottom:783.825000px;}
.y67_c00229{bottom:784.905000px;}
.y6a_c00229{bottom:785.130000px;}
.y69_c00229{bottom:785.970000px;}
.y68_c00229{bottom:787.050000px;}
.y63_c00229{bottom:799.905000px;}
.y60_c00229{bottom:800.130000px;}
.y65_c00229{bottom:800.550000px;}
.y62_c00229{bottom:800.970000px;}
.y64_c00229{bottom:801.195000px;}
.y61_c00229{bottom:802.050000px;}
.y5d_c00229{bottom:813.825000px;}
.y5f_c00229{bottom:814.905000px;}
.y5e_c00229{bottom:815.970000px;}
.y59_c00229{bottom:828.405000px;}
.y58_c00229{bottom:828.630000px;}
.y5b_c00229{bottom:829.470000px;}
.y5c_c00229{bottom:829.695000px;}
.y5a_c00229{bottom:830.550000px;}
.y57_c00229{bottom:843.825000px;}
.y56_c00229{bottom:845.970000px;}
.y55_c00229{bottom:856.470000px;}
.y54_c00229{bottom:857.325000px;}
.y51_c00229{bottom:858.405000px;}
.y53_c00229{bottom:859.470000px;}
.y50_c00229{bottom:859.695000px;}
.y52_c00229{bottom:860.550000px;}
.y4e_c00229{bottom:871.470000px;}
.y4d_c00229{bottom:872.325000px;}
.y4f_c00229{bottom:874.470000px;}
.y4a_c00229{bottom:886.905000px;}
.y4c_c00229{bottom:887.970000px;}
.y4b_c00229{bottom:888.405000px;}
.y47_c00229{bottom:888.630000px;}
.y48_c00229{bottom:889.050000px;}
.y49_c00229{bottom:889.470000px;}
.y44_c00229{bottom:901.905000px;}
.y41_c00229{bottom:902.325000px;}
.y42_c00229{bottom:903.630000px;}
.y45_c00229{bottom:904.050000px;}
.y43_c00229{bottom:904.470000px;}
.y46_c00229{bottom:905.550000px;}
.y3c_c00229{bottom:917.325000px;}
.y3f_c00229{bottom:917.550000px;}
.y3b_c00229{bottom:917.970000px;}
.y3e_c00229{bottom:918.405000px;}
.y40_c00229{bottom:919.050000px;}
.y3d_c00229{bottom:919.470000px;}
.y34_c00229{bottom:931.470000px;}
.y3a_c00229{bottom:931.905000px;}
.y39_c00229{bottom:932.325000px;}
.y37_c00229{bottom:933.405000px;}
.y36_c00229{bottom:933.630000px;}
.y35_c00229{bottom:934.470000px;}
.y38_c00229{bottom:934.695000px;}
.y31_c00229{bottom:945.825000px;}
.y2e_c00229{bottom:946.050000px;}
.y32_c00229{bottom:946.470000px;}
.y2c_c00229{bottom:947.325000px;}
.y33_c00229{bottom:947.970000px;}
.y30_c00229{bottom:948.195000px;}
.y2f_c00229{bottom:948.405000px;}
.y2b_c00229{bottom:949.050000px;}
.y2d_c00229{bottom:949.470000px;}
.y2a_c00229{bottom:960.825000px;}
.y28_c00229{bottom:962.970000px;}
.y29_c00229{bottom:964.050000px;}
.y27_c00229{bottom:974.970000px;}
.y22_c00229{bottom:976.050000px;}
.y23_c00229{bottom:976.905000px;}
.y26_c00229{bottom:977.130000px;}
.y24_c00229{bottom:977.970000px;}
.y25_c00229{bottom:979.050000px;}
.y1f_c00229{bottom:989.970000px;}
.y21_c00229{bottom:990.405000px;}
.y1e_c00229{bottom:990.825000px;}
.y1b_c00229{bottom:991.905000px;}
.y20_c00229{bottom:992.550000px;}
.y1a_c00229{bottom:992.970000px;}
.y1c_c00229{bottom:993.195000px;}
.y1d_c00229{bottom:994.050000px;}
.y14_c00229{bottom:1004.970000px;}
.y15_c00229{bottom:1005.825000px;}
.y19_c00229{bottom:1006.905000px;}
.y16_c00229{bottom:1007.550000px;}
.y17_c00229{bottom:1007.970000px;}
.y18_c00229{bottom:1009.050000px;}
.y11_c00229{bottom:1020.405000px;}
.y13_c00229{bottom:1021.470000px;}
.y12_c00229{bottom:1022.130000px;}
.yf_c00229{bottom:1034.325000px;}
.yd_c00229{bottom:1034.550000px;}
.y10_c00229{bottom:1036.470000px;}
.ye_c00229{bottom:1037.550000px;}
.yc_c00229{bottom:1050.405000px;}
.ya_c00229{bottom:1051.470000px;}
.yb_c00229{bottom:1052.550000px;}
.y5_c00229{bottom:1064.325000px;}
.y9_c00229{bottom:1064.550000px;}
.y6_c00229{bottom:1065.405000px;}
.y7_c00229{bottom:1066.050000px;}
.y4_c00229{bottom:1066.470000px;}
.y3_c00229{bottom:1066.695000px;}
.y8_c00229{bottom:1067.550000px;}
.y2_c00229{bottom:1102.050000px;}
.y1_c00229{bottom:1103.130000px;}
.h9_c00229{height:4.206533px;}
.h3_c00229{height:16.752334px;}
.h1_c00229{height:23.025234px;}
.h2_c00229{height:25.091602px;}
.h4_c00229{height:31.364502px;}
.h6_c00229{height:35.571035px;}
.h7_c00229{height:39.044502px;}
.h5_c00229{height:39.777568px;}
.h8_c00229{height:43.910303px;}
.ha_c00229{height:48.116836px;}
.h0_c00229{height:1335.000000px;}
.w0_c00229{width:880.500000px;}
.x0_c00229{left:0.000000px;}
.xe8_c00229{left:151.500000px;}
.x81_c00229{left:153.000000px;}
.x1_c00229{left:154.500000px;}
.xbf_c00229{left:165.000000px;}
.xa2_c00229{left:166.500000px;}
.x77_c00229{left:168.000000px;}
.x24_c00229{left:169.920000px;}
.x3_c00229{left:171.000000px;}
.x114_c00229{left:175.080000px;}
.xb1_c00229{left:180.420000px;}
.xf5_c00229{left:181.500000px;}
.x74_c00229{left:182.580000px;}
.x8c_c00229{left:183.855000px;}
.x11_c00229{left:184.920000px;}
.x48_c00229{left:189.420000px;}
.xc3_c00229{left:191.580000px;}
.x3c_c00229{left:192.645000px;}
.x4_c00229{left:195.000000px;}
.xd7_c00229{left:198.000000px;}
.xa3_c00229{left:199.080000px;}
.x10a_c00229{left:200.580000px;}
.x64_c00229{left:202.920000px;}
.x1d_c00229{left:205.920000px;}
.x10f_c00229{left:210.000000px;}
.x12_c00229{left:211.500000px;}
.xba_c00229{left:213.420000px;}
.x65_c00229{left:214.920000px;}
.x1e_c00229{left:216.000000px;}
.x30_c00229{left:217.080000px;}
.x103_c00229{left:220.500000px;}
.xff_c00229{left:222.420000px;}
.xb2_c00229{left:223.500000px;}
.x6b_c00229{left:224.580000px;}
.x75_c00229{left:226.500000px;}
.xcf_c00229{left:228.420000px;}
.xfb_c00229{left:229.500000px;}
.xc0_c00229{left:230.580000px;}
.xed_c00229{left:234.420000px;}
.x109_c00229{left:235.920000px;}
.x5d_c00229{left:238.500000px;}
.xd0_c00229{left:240.000000px;}
.xa7_c00229{left:241.080000px;}
.xdf_c00229{left:243.420000px;}
.xf1_c00229{left:246.000000px;}
.x49_c00229{left:251.580000px;}
.x82_c00229{left:253.500000px;}
.x53_c00229{left:255.000000px;}
.x76_c00229{left:256.080000px;}
.xc4_c00229{left:258.000000px;}
.x1f_c00229{left:259.500000px;}
.x90_c00229{left:260.580000px;}
.x97_c00229{left:262.080000px;}
.x5_c00229{left:264.000000px;}
.x13_c00229{left:265.500000px;}
.x66_c00229{left:267.000000px;}
.x78_c00229{left:268.500000px;}
.x31_c00229{left:273.000000px;}
.xf6_c00229{left:274.500000px;}
.xae_c00229{left:275.580000px;}
.xd1_c00229{left:277.080000px;}
.xca_c00229{left:279.000000px;}
.x6c_c00229{left:280.920000px;}
.x32_c00229{left:283.500000px;}
.x54_c00229{left:285.000000px;}
.x20_c00229{left:288.420000px;}
.x25_c00229{left:289.920000px;}
.x4a_c00229{left:291.420000px;}
.xf7_c00229{left:293.580000px;}
.x91_c00229{left:295.500000px;}
.x6d_c00229{left:296.580000px;}
.x98_c00229{left:298.080000px;}
.xeb_c00229{left:299.580000px;}
.x3d_c00229{left:303.420000px;}
.xb5_c00229{left:304.500000px;}
.x79_c00229{left:306.000000px;}
.xd8_c00229{left:309.000000px;}
.x4b_c00229{left:310.080000px;}
.x67_c00229{left:313.080000px;}
.x9f_c00229{left:315.000000px;}
.xb3_c00229{left:316.500000px;}
.x110_c00229{left:318.000000px;}
.x26_c00229{left:319.080000px;}
.x3e_c00229{left:320.580000px;}
.xc5_c00229{left:322.500000px;}
.x83_c00229{left:325.920000px;}
.x99_c00229{left:327.000000px;}
.x21_c00229{left:328.500000px;}
.x4c_c00229{left:334.500000px;}
.xe0_c00229{left:336.000000px;}
.x9a_c00229{left:337.920000px;}
.xc1_c00229{left:339.420000px;}
.xbb_c00229{left:340.920000px;}
.x68_c00229{left:342.420000px;}
.x84_c00229{left:343.500000px;}
.x14_c00229{left:345.420000px;}
.x6_c00229{left:347.580000px;}
.xd9_c00229{left:349.080000px;}
.x8d_c00229{left:351.000000px;}
.xa4_c00229{left:352.500000px;}
.x5e_c00229{left:355.500000px;}
.x27_c00229{left:356.580000px;}
.x22_c00229{left:358.080000px;}
.x10b_c00229{left:359.580000px;}
.x7a_c00229{left:361.500000px;}
.xc2_c00229{left:366.000000px;}
.xaf_c00229{left:369.000000px;}
.xe3_c00229{left:370.500000px;}
.x7_c00229{left:373.080000px;}
.x92_c00229{left:375.000000px;}
.x28_c00229{left:376.500000px;}
.x55_c00229{left:377.580000px;}
.xda_c00229{left:379.500000px;}
.xb4_c00229{left:381.420000px;}
.x3f_c00229{left:382.920000px;}
.x23_c00229{left:384.000000px;}
.x69_c00229{left:385.500000px;}
.x4d_c00229{left:387.645000px;}
.xcb_c00229{left:388.920000px;}
.x33_c00229{left:390.000000px;}
.x9b_c00229{left:391.500000px;}
.xa8_c00229{left:393.420000px;}
.x111_c00229{left:397.920000px;}
.x40_c00229{left:399.000000px;}
.xcc_c00229{left:400.500000px;}
.x2_c00229{left:402.000000px;}
.xc6_c00229{left:403.500000px;}
.xa0_c00229{left:404.580000px;}
.xf8_c00229{left:406.920000px;}
.x85_c00229{left:408.000000px;}
.x15_c00229{left:411.420000px;}
.x10c_c00229{left:412.920000px;}
.x8_c00229{left:414.000000px;}
.x6e_c00229{left:415.920000px;}
.xd2_c00229{left:417.420000px;}
.x34_c00229{left:418.920000px;}
.xb6_c00229{left:420.000000px;}
.x7b_c00229{left:421.500000px;}
.xa5_c00229{left:424.080000px;}
.x9_c00229{left:425.580000px;}
.x16_c00229{left:427.500000px;}
.xdb_c00229{left:429.000000px;}
.xe9_c00229{left:430.500000px;}
.x56_c00229{left:433.500000px;}
.xee_c00229{left:435.000000px;}
.xe4_c00229{left:436.500000px;}
.x5f_c00229{left:437.580000px;}
.x29_c00229{left:441.000000px;}
.x6a_c00229{left:442.500000px;}
.x57_c00229{left:444.000000px;}
.x35_c00229{left:447.000000px;}
.x86_c00229{left:448.500000px;}
.xa_c00229{left:450.000000px;}
.xa6_c00229{left:451.500000px;}
.xfc_c00229{left:453.000000px;}
.xc7_c00229{left:454.500000px;}
.x6f_c00229{left:455.580000px;}
.x9c_c00229{left:457.080000px;}
.xa9_c00229{left:462.000000px;}
.x8e_c00229{left:465.000000px;}
.x93_c00229{left:467.580000px;}
.x4e_c00229{left:469.500000px;}
.x7c_c00229{left:471.000000px;}
.xf2_c00229{left:474.420000px;}
.xb7_c00229{left:477.000000px;}
.x41_c00229{left:478.500000px;}
.x4f_c00229{left:480.000000px;}
.x2a_c00229{left:481.080000px;}
.x115_c00229{left:484.920000px;}
.x58_c00229{left:488.580000px;}
.x17_c00229{left:490.500000px;}
.x100_c00229{left:494.145000px;}
.x60_c00229{left:495.420000px;}
.xec_c00229{left:496.920000px;}
.xf9_c00229{left:498.000000px;}
.x36_c00229{left:499.500000px;}
.xaa_c00229{left:501.420000px;}
.xbc_c00229{left:502.920000px;}
.x112_c00229{left:507.420000px;}
.x87_c00229{left:510.000000px;}
.x42_c00229{left:511.080000px;}
.xe5_c00229{left:513.000000px;}
.x50_c00229{left:514.080000px;}
.xb8_c00229{left:516.000000px;}
.xd3_c00229{left:517.080000px;}
.xab_c00229{left:518.580000px;}
.xb_c00229{left:520.080000px;}
.xcd_c00229{left:522.000000px;}
.x2b_c00229{left:523.080000px;}
.xc8_c00229{left:524.580000px;}
.x8f_c00229{left:526.500000px;}
.x59_c00229{left:528.000000px;}
.xdc_c00229{left:529.500000px;}
.xfa_c00229{left:531.420000px;}
.x7d_c00229{left:534.000000px;}
.xef_c00229{left:535.080000px;}
.xc_c00229{left:536.145000px;}
.xf3_c00229{left:538.500000px;}
.x10d_c00229{left:540.420000px;}
.x2c_c00229{left:542.580000px;}
.x37_c00229{left:545.580000px;}
.x88_c00229{left:547.920000px;}
.x94_c00229{left:550.080000px;}
.x5a_c00229{left:552.000000px;}
.x70_c00229{left:554.580000px;}
.xac_c00229{left:558.000000px;}
.xbd_c00229{left:560.580000px;}
.x104_c00229{left:562.080000px;}
.xd4_c00229{left:565.080000px;}
.x43_c00229{left:567.000000px;}
.x2d_c00229{left:570.000000px;}
.x9d_c00229{left:573.000000px;}
.x38_c00229{left:574.920000px;}
.x18_c00229{left:576.000000px;}
.x44_c00229{left:579.000000px;}
.xf0_c00229{left:580.500000px;}
.x51_c00229{left:583.500000px;}
.xce_c00229{left:586.500000px;}
.x19_c00229{left:587.580000px;}
.x61_c00229{left:588.855000px;}
.xa1_c00229{left:595.080000px;}
.xb9_c00229{left:597.000000px;}
.x5b_c00229{left:598.500000px;}
.x105_c00229{left:601.080000px;}
.x107_c00229{left:604.500000px;}
.x10e_c00229{left:606.000000px;}
.x9e_c00229{left:607.080000px;}
.xc9_c00229{left:609.855000px;}
.x116_c00229{left:612.420000px;}
.x1a_c00229{left:613.500000px;}
.x39_c00229{left:616.500000px;}
.x45_c00229{left:618.000000px;}
.xd_c00229{left:619.080000px;}
.xe1_c00229{left:621.000000px;}
.xfd_c00229{left:625.500000px;}
.x5c_c00229{left:626.580000px;}
.xe_c00229{left:630.000000px;}
.x71_c00229{left:634.500000px;}
.x7e_c00229{left:635.580000px;}
.x2e_c00229{left:637.080000px;}
.xdd_c00229{left:639.420000px;}
.x52_c00229{left:640.500000px;}
.xd5_c00229{left:643.500000px;}
.xe2_c00229{left:645.000000px;}
.x3a_c00229{left:646.080000px;}
.x89_c00229{left:647.580000px;}
.x95_c00229{left:649.080000px;}
.x46_c00229{left:651.420000px;}
.x2f_c00229{left:656.145000px;}
.xfe_c00229{left:658.500000px;}
.xad_c00229{left:659.580000px;}
.xf4_c00229{left:661.920000px;}
.x101_c00229{left:663.000000px;}
.xf_c00229{left:664.080000px;}
.xbe_c00229{left:666.420000px;}
.x106_c00229{left:667.920000px;}
.xde_c00229{left:669.000000px;}
.xe6_c00229{left:670.080000px;}
.x62_c00229{left:672.000000px;}
.x3b_c00229{left:673.500000px;}
.x7f_c00229{left:674.580000px;}
.xb0_c00229{left:676.500000px;}
.x113_c00229{left:679.500000px;}
.x1b_c00229{left:681.420000px;}
.xd6_c00229{left:684.000000px;}
.x96_c00229{left:688.500000px;}
.x8a_c00229{left:690.420000px;}
.x72_c00229{left:691.920000px;}
.x47_c00229{left:693.855000px;}
.x10_c00229{left:695.355000px;}
.x108_c00229{left:697.080000px;}
.x1c_c00229{left:699.000000px;}
.x80_c00229{left:700.080000px;}
.x8b_c00229{left:702.000000px;}
.x73_c00229{left:703.500000px;}
.x63_c00229{left:709.080000px;}
.xea_c00229{left:711.000000px;}
.xe7_c00229{left:717.000000px;}
.x102_c00229{left:718.080000px;}
@media print{
.v0_c00229{vertical-align:0.000000pt;}
.v1_c00229{vertical-align:6.826667pt;}
.ls2_c00229{letter-spacing:0.000000pt;}
.ls1_c00229{letter-spacing:10.504533pt;}
.ls0_c00229{letter-spacing:15.837867pt;}
.ws0_c00229{word-spacing:-6.493334pt;}
.ws3_c00229{word-spacing:0.000000pt;}
.ws1_c00229{word-spacing:0.539934pt;}
.ws2_c00229{word-spacing:3.060459pt;}
.fs7_c00229{font-size:3.040000pt;}
.fs2_c00229{font-size:12.106667pt;}
.fs0_c00229{font-size:16.640000pt;}
.fs1_c00229{font-size:18.133333pt;}
.fs3_c00229{font-size:22.666667pt;}
.fs5_c00229{font-size:25.706667pt;}
.fs4_c00229{font-size:28.746667pt;}
.fs6_c00229{font-size:31.733333pt;}
.fs8_c00229{font-size:34.773333pt;}
.y0_c00229{bottom:0.000000pt;}
.yf9_c00229{bottom:224.733333pt;}
.yfa_c00229{bottom:225.106667pt;}
.yf7_c00229{bottom:225.893333pt;}
.yf8_c00229{bottom:227.026667pt;}
.yf5_c00229{bottom:242.440000pt;}
.yf4_c00229{bottom:243.226667pt;}
.yf6_c00229{bottom:243.400000pt;}
.yf3_c00229{bottom:244.360000pt;}
.yf1_c00229{bottom:259.773333pt;}
.yf2_c00229{bottom:261.106667pt;}
.yf0_c00229{bottom:261.693333pt;}
.yef_c00229{bottom:277.106667pt;}
.yee_c00229{bottom:277.493333pt;}
.yec_c00229{bottom:278.440000pt;}
.ye9_c00229{bottom:279.026667pt;}
.yea_c00229{bottom:279.226667pt;}
.yed_c00229{bottom:279.400000pt;}
.yeb_c00229{bottom:280.360000pt;}
.ye5_c00229{bottom:295.773333pt;}
.ye4_c00229{bottom:296.360000pt;}
.ye8_c00229{bottom:296.560000pt;}
.ye7_c00229{bottom:296.733333pt;}
.ye6_c00229{bottom:297.693333pt;}
.ye1_c00229{bottom:312.160000pt;}
.ydf_c00229{bottom:313.106667pt;}
.yde_c00229{bottom:313.693333pt;}
.ye2_c00229{bottom:313.893333pt;}
.ye3_c00229{bottom:314.640000pt;}
.ye0_c00229{bottom:315.026667pt;}
.ydc_c00229{bottom:328.360000pt;}
.ydd_c00229{bottom:331.226667pt;}
.ydb_c00229{bottom:332.360000pt;}
.yd8_c00229{bottom:347.773333pt;}
.yd9_c00229{bottom:348.933333pt;}
.yd6_c00229{bottom:349.693333pt;}
.yda_c00229{bottom:349.893333pt;}
.yd7_c00229{bottom:351.026667pt;}
.yd5_c00229{bottom:365.493333pt;}
.yd2_c00229{bottom:366.440000pt;}
.yd1_c00229{bottom:367.026667pt;}
.yd4_c00229{bottom:367.226667pt;}
.yd3_c00229{bottom:368.360000pt;}
.yce_c00229{bottom:382.440000pt;}
.ycd_c00229{bottom:383.400000pt;}
.ycb_c00229{bottom:383.773333pt;}
.yca_c00229{bottom:384.360000pt;}
.yd0_c00229{bottom:384.560000pt;}
.ycf_c00229{bottom:384.733333pt;}
.ycc_c00229{bottom:385.306667pt;}
.yc8_c00229{bottom:400.733333pt;}
.yc9_c00229{bottom:401.106667pt;}
.yc7_c00229{bottom:403.026667pt;}
.yc4_c00229{bottom:418.440000pt;}
.yc6_c00229{bottom:419.400000pt;}
.yc5_c00229{bottom:420.360000pt;}
.yc3_c00229{bottom:435.773333pt;}
.yc1_c00229{bottom:437.693333pt;}
.yc2_c00229{bottom:437.893333pt;}
.ybd_c00229{bottom:453.106667pt;}
.yc0_c00229{bottom:453.893333pt;}
.ybc_c00229{bottom:454.066667pt;}
.ybf_c00229{bottom:455.026667pt;}
.ybe_c00229{bottom:455.226667pt;}
.yba_c00229{bottom:470.440000pt;}
.ybb_c00229{bottom:471.400000pt;}
.yb8_c00229{bottom:472.360000pt;}
.yb9_c00229{bottom:472.560000pt;}
.yb7_c00229{bottom:473.306667pt;}
.yb5_c00229{bottom:488.160000pt;}
.yb6_c00229{bottom:489.106667pt;}
.yb3_c00229{bottom:489.893333pt;}
.yb2_c00229{bottom:490.066667pt;}
.yb4_c00229{bottom:491.026667pt;}
.yb0_c00229{bottom:504.733333pt;}
.yb1_c00229{bottom:505.306667pt;}
.yae_c00229{bottom:505.693333pt;}
.yab_c00229{bottom:506.440000pt;}
.yaf_c00229{bottom:507.973333pt;}
.yad_c00229{bottom:508.360000pt;}
.yac_c00229{bottom:508.373333pt;}
.ya8_c00229{bottom:538.066667pt;}
.ya7_c00229{bottom:538.266667pt;}
.ya9_c00229{bottom:538.640000pt;}
.ya6_c00229{bottom:539.026667pt;}
.yaa_c00229{bottom:539.226667pt;}
.ya5_c00229{bottom:540.933333pt;}
.ya2_c00229{bottom:550.640000pt;}
.y9f_c00229{bottom:551.400000pt;}
.ya1_c00229{bottom:551.600000pt;}
.ya0_c00229{bottom:552.360000pt;}
.y9e_c00229{bottom:552.560000pt;}
.ya4_c00229{bottom:553.306667pt;}
.ya3_c00229{bottom:553.506667pt;}
.y9d_c00229{bottom:554.266667pt;}
.y96_c00229{bottom:563.973333pt;}
.y9b_c00229{bottom:564.733333pt;}
.y9c_c00229{bottom:565.306667pt;}
.y97_c00229{bottom:565.693333pt;}
.y9a_c00229{bottom:565.893333pt;}
.y98_c00229{bottom:566.640000pt;}
.y99_c00229{bottom:566.840000pt;}
.y92_c00229{bottom:578.066667pt;}
.y91_c00229{bottom:578.266667pt;}
.y93_c00229{bottom:579.026667pt;}
.y94_c00229{bottom:579.973333pt;}
.y95_c00229{bottom:580.933333pt;}
.y8e_c00229{bottom:591.400000pt;}
.y8d_c00229{bottom:592.360000pt;}
.y8f_c00229{bottom:592.560000pt;}
.y90_c00229{bottom:594.266667pt;}
.y8c_c00229{bottom:603.973333pt;}
.y8b_c00229{bottom:604.733333pt;}
.y8a_c00229{bottom:605.693333pt;}
.y88_c00229{bottom:606.266667pt;}
.y89_c00229{bottom:606.640000pt;}
.y83_c00229{bottom:617.306667pt;}
.y87_c00229{bottom:618.066667pt;}
.y84_c00229{bottom:619.026667pt;}
.y85_c00229{bottom:620.173333pt;}
.y86_c00229{bottom:620.933333pt;}
.y81_c00229{bottom:631.026667pt;}
.y82_c00229{bottom:631.600000pt;}
.y7d_c00229{bottom:643.400000pt;}
.y7b_c00229{bottom:643.973333pt;}
.y7f_c00229{bottom:644.360000pt;}
.y7c_c00229{bottom:645.306667pt;}
.y7e_c00229{bottom:645.893333pt;}
.y80_c00229{bottom:646.266667pt;}
.y7a_c00229{bottom:655.973333pt;}
.y77_c00229{bottom:656.733333pt;}
.y75_c00229{bottom:656.933333pt;}
.y79_c00229{bottom:658.640000pt;}
.y78_c00229{bottom:658.840000pt;}
.y76_c00229{bottom:659.600000pt;}
.y70_c00229{bottom:669.306667pt;}
.y74_c00229{bottom:670.066667pt;}
.y72_c00229{bottom:671.226667pt;}
.y71_c00229{bottom:671.400000pt;}
.y6f_c00229{bottom:671.973333pt;}
.y6e_c00229{bottom:672.173333pt;}
.y73_c00229{bottom:673.306667pt;}
.y6b_c00229{bottom:683.600000pt;}
.y6c_c00229{bottom:684.360000pt;}
.y6d_c00229{bottom:685.306667pt;}
.y66_c00229{bottom:696.733333pt;}
.y67_c00229{bottom:697.693333pt;}
.y6a_c00229{bottom:697.893333pt;}
.y69_c00229{bottom:698.640000pt;}
.y68_c00229{bottom:699.600000pt;}
.y63_c00229{bottom:711.026667pt;}
.y60_c00229{bottom:711.226667pt;}
.y65_c00229{bottom:711.600000pt;}
.y62_c00229{bottom:711.973333pt;}
.y64_c00229{bottom:712.173333pt;}
.y61_c00229{bottom:712.933333pt;}
.y5d_c00229{bottom:723.400000pt;}
.y5f_c00229{bottom:724.360000pt;}
.y5e_c00229{bottom:725.306667pt;}
.y59_c00229{bottom:736.360000pt;}
.y58_c00229{bottom:736.560000pt;}
.y5b_c00229{bottom:737.306667pt;}
.y5c_c00229{bottom:737.506667pt;}
.y5a_c00229{bottom:738.266667pt;}
.y57_c00229{bottom:750.066667pt;}
.y56_c00229{bottom:751.973333pt;}
.y55_c00229{bottom:761.306667pt;}
.y54_c00229{bottom:762.066667pt;}
.y51_c00229{bottom:763.026667pt;}
.y53_c00229{bottom:763.973333pt;}
.y50_c00229{bottom:764.173333pt;}
.y52_c00229{bottom:764.933333pt;}
.y4e_c00229{bottom:774.640000pt;}
.y4d_c00229{bottom:775.400000pt;}
.y4f_c00229{bottom:777.306667pt;}
.y4a_c00229{bottom:788.360000pt;}
.y4c_c00229{bottom:789.306667pt;}
.y4b_c00229{bottom:789.693333pt;}
.y47_c00229{bottom:789.893333pt;}
.y48_c00229{bottom:790.266667pt;}
.y49_c00229{bottom:790.640000pt;}
.y44_c00229{bottom:801.693333pt;}
.y41_c00229{bottom:802.066667pt;}
.y42_c00229{bottom:803.226667pt;}
.y45_c00229{bottom:803.600000pt;}
.y43_c00229{bottom:803.973333pt;}
.y46_c00229{bottom:804.933333pt;}
.y3c_c00229{bottom:815.400000pt;}
.y3f_c00229{bottom:815.600000pt;}
.y3b_c00229{bottom:815.973333pt;}
.y3e_c00229{bottom:816.360000pt;}
.y40_c00229{bottom:816.933333pt;}
.y3d_c00229{bottom:817.306667pt;}
.y34_c00229{bottom:827.973333pt;}
.y3a_c00229{bottom:828.360000pt;}
.y39_c00229{bottom:828.733333pt;}
.y37_c00229{bottom:829.693333pt;}
.y36_c00229{bottom:829.893333pt;}
.y35_c00229{bottom:830.640000pt;}
.y38_c00229{bottom:830.840000pt;}
.y31_c00229{bottom:840.733333pt;}
.y2e_c00229{bottom:840.933333pt;}
.y32_c00229{bottom:841.306667pt;}
.y2c_c00229{bottom:842.066667pt;}
.y33_c00229{bottom:842.640000pt;}
.y30_c00229{bottom:842.840000pt;}
.y2f_c00229{bottom:843.026667pt;}
.y2b_c00229{bottom:843.600000pt;}
.y2d_c00229{bottom:843.973333pt;}
.y2a_c00229{bottom:854.066667pt;}
.y28_c00229{bottom:855.973333pt;}
.y29_c00229{bottom:856.933333pt;}
.y27_c00229{bottom:866.640000pt;}
.y22_c00229{bottom:867.600000pt;}
.y23_c00229{bottom:868.360000pt;}
.y26_c00229{bottom:868.560000pt;}
.y24_c00229{bottom:869.306667pt;}
.y25_c00229{bottom:870.266667pt;}
.y1f_c00229{bottom:879.973333pt;}
.y21_c00229{bottom:880.360000pt;}
.y1e_c00229{bottom:880.733333pt;}
.y1b_c00229{bottom:881.693333pt;}
.y20_c00229{bottom:882.266667pt;}
.y1a_c00229{bottom:882.640000pt;}
.y1c_c00229{bottom:882.840000pt;}
.y1d_c00229{bottom:883.600000pt;}
.y14_c00229{bottom:893.306667pt;}
.y15_c00229{bottom:894.066667pt;}
.y19_c00229{bottom:895.026667pt;}
.y16_c00229{bottom:895.600000pt;}
.y17_c00229{bottom:895.973333pt;}
.y18_c00229{bottom:896.933333pt;}
.y11_c00229{bottom:907.026667pt;}
.y13_c00229{bottom:907.973333pt;}
.y12_c00229{bottom:908.560000pt;}
.yf_c00229{bottom:919.400000pt;}
.yd_c00229{bottom:919.600000pt;}
.y10_c00229{bottom:921.306667pt;}
.ye_c00229{bottom:922.266667pt;}
.yc_c00229{bottom:933.693333pt;}
.ya_c00229{bottom:934.640000pt;}
.yb_c00229{bottom:935.600000pt;}
.y5_c00229{bottom:946.066667pt;}
.y9_c00229{bottom:946.266667pt;}
.y6_c00229{bottom:947.026667pt;}
.y7_c00229{bottom:947.600000pt;}
.y4_c00229{bottom:947.973333pt;}
.y3_c00229{bottom:948.173333pt;}
.y8_c00229{bottom:948.933333pt;}
.y2_c00229{bottom:979.600000pt;}
.y1_c00229{bottom:980.560000pt;}
.h9_c00229{height:3.739141pt;}
.h3_c00229{height:14.890964pt;}
.h1_c00229{height:20.466875pt;}
.h2_c00229{height:22.303646pt;}
.h4_c00229{height:27.879557pt;}
.h6_c00229{height:31.618698pt;}
.h7_c00229{height:34.706224pt;}
.h5_c00229{height:35.357839pt;}
.h8_c00229{height:39.031380pt;}
.ha_c00229{height:42.770521pt;}
.h0_c00229{height:1186.666667pt;}
.w0_c00229{width:782.666667pt;}
.x0_c00229{left:0.000000pt;}
.xe8_c00229{left:134.666667pt;}
.x81_c00229{left:136.000000pt;}
.x1_c00229{left:137.333333pt;}
.xbf_c00229{left:146.666667pt;}
.xa2_c00229{left:148.000000pt;}
.x77_c00229{left:149.333333pt;}
.x24_c00229{left:151.040000pt;}
.x3_c00229{left:152.000000pt;}
.x114_c00229{left:155.626667pt;}
.xb1_c00229{left:160.373333pt;}
.xf5_c00229{left:161.333333pt;}
.x74_c00229{left:162.293333pt;}
.x8c_c00229{left:163.426667pt;}
.x11_c00229{left:164.373333pt;}
.x48_c00229{left:168.373333pt;}
.xc3_c00229{left:170.293333pt;}
.x3c_c00229{left:171.240000pt;}
.x4_c00229{left:173.333333pt;}
.xd7_c00229{left:176.000000pt;}
.xa3_c00229{left:176.960000pt;}
.x10a_c00229{left:178.293333pt;}
.x64_c00229{left:180.373333pt;}
.x1d_c00229{left:183.040000pt;}
.x10f_c00229{left:186.666667pt;}
.x12_c00229{left:188.000000pt;}
.xba_c00229{left:189.706667pt;}
.x65_c00229{left:191.040000pt;}
.x1e_c00229{left:192.000000pt;}
.x30_c00229{left:192.960000pt;}
.x103_c00229{left:196.000000pt;}
.xff_c00229{left:197.706667pt;}
.xb2_c00229{left:198.666667pt;}
.x6b_c00229{left:199.626667pt;}
.x75_c00229{left:201.333333pt;}
.xcf_c00229{left:203.040000pt;}
.xfb_c00229{left:204.000000pt;}
.xc0_c00229{left:204.960000pt;}
.xed_c00229{left:208.373333pt;}
.x109_c00229{left:209.706667pt;}
.x5d_c00229{left:212.000000pt;}
.xd0_c00229{left:213.333333pt;}
.xa7_c00229{left:214.293333pt;}
.xdf_c00229{left:216.373333pt;}
.xf1_c00229{left:218.666667pt;}
.x49_c00229{left:223.626667pt;}
.x82_c00229{left:225.333333pt;}
.x53_c00229{left:226.666667pt;}
.x76_c00229{left:227.626667pt;}
.xc4_c00229{left:229.333333pt;}
.x1f_c00229{left:230.666667pt;}
.x90_c00229{left:231.626667pt;}
.x97_c00229{left:232.960000pt;}
.x5_c00229{left:234.666667pt;}
.x13_c00229{left:236.000000pt;}
.x66_c00229{left:237.333333pt;}
.x78_c00229{left:238.666667pt;}
.x31_c00229{left:242.666667pt;}
.xf6_c00229{left:244.000000pt;}
.xae_c00229{left:244.960000pt;}
.xd1_c00229{left:246.293333pt;}
.xca_c00229{left:248.000000pt;}
.x6c_c00229{left:249.706667pt;}
.x32_c00229{left:252.000000pt;}
.x54_c00229{left:253.333333pt;}
.x20_c00229{left:256.373333pt;}
.x25_c00229{left:257.706667pt;}
.x4a_c00229{left:259.040000pt;}
.xf7_c00229{left:260.960000pt;}
.x91_c00229{left:262.666667pt;}
.x6d_c00229{left:263.626667pt;}
.x98_c00229{left:264.960000pt;}
.xeb_c00229{left:266.293333pt;}
.x3d_c00229{left:269.706667pt;}
.xb5_c00229{left:270.666667pt;}
.x79_c00229{left:272.000000pt;}
.xd8_c00229{left:274.666667pt;}
.x4b_c00229{left:275.626667pt;}
.x67_c00229{left:278.293333pt;}
.x9f_c00229{left:280.000000pt;}
.xb3_c00229{left:281.333333pt;}
.x110_c00229{left:282.666667pt;}
.x26_c00229{left:283.626667pt;}
.x3e_c00229{left:284.960000pt;}
.xc5_c00229{left:286.666667pt;}
.x83_c00229{left:289.706667pt;}
.x99_c00229{left:290.666667pt;}
.x21_c00229{left:292.000000pt;}
.x4c_c00229{left:297.333333pt;}
.xe0_c00229{left:298.666667pt;}
.x9a_c00229{left:300.373333pt;}
.xc1_c00229{left:301.706667pt;}
.xbb_c00229{left:303.040000pt;}
.x68_c00229{left:304.373333pt;}
.x84_c00229{left:305.333333pt;}
.x14_c00229{left:307.040000pt;}
.x6_c00229{left:308.960000pt;}
.xd9_c00229{left:310.293333pt;}
.x8d_c00229{left:312.000000pt;}
.xa4_c00229{left:313.333333pt;}
.x5e_c00229{left:316.000000pt;}
.x27_c00229{left:316.960000pt;}
.x22_c00229{left:318.293333pt;}
.x10b_c00229{left:319.626667pt;}
.x7a_c00229{left:321.333333pt;}
.xc2_c00229{left:325.333333pt;}
.xaf_c00229{left:328.000000pt;}
.xe3_c00229{left:329.333333pt;}
.x7_c00229{left:331.626667pt;}
.x92_c00229{left:333.333333pt;}
.x28_c00229{left:334.666667pt;}
.x55_c00229{left:335.626667pt;}
.xda_c00229{left:337.333333pt;}
.xb4_c00229{left:339.040000pt;}
.x3f_c00229{left:340.373333pt;}
.x23_c00229{left:341.333333pt;}
.x69_c00229{left:342.666667pt;}
.x4d_c00229{left:344.573333pt;}
.xcb_c00229{left:345.706667pt;}
.x33_c00229{left:346.666667pt;}
.x9b_c00229{left:348.000000pt;}
.xa8_c00229{left:349.706667pt;}
.x111_c00229{left:353.706667pt;}
.x40_c00229{left:354.666667pt;}
.xcc_c00229{left:356.000000pt;}
.x2_c00229{left:357.333333pt;}
.xc6_c00229{left:358.666667pt;}
.xa0_c00229{left:359.626667pt;}
.xf8_c00229{left:361.706667pt;}
.x85_c00229{left:362.666667pt;}
.x15_c00229{left:365.706667pt;}
.x10c_c00229{left:367.040000pt;}
.x8_c00229{left:368.000000pt;}
.x6e_c00229{left:369.706667pt;}
.xd2_c00229{left:371.040000pt;}
.x34_c00229{left:372.373333pt;}
.xb6_c00229{left:373.333333pt;}
.x7b_c00229{left:374.666667pt;}
.xa5_c00229{left:376.960000pt;}
.x9_c00229{left:378.293333pt;}
.x16_c00229{left:380.000000pt;}
.xdb_c00229{left:381.333333pt;}
.xe9_c00229{left:382.666667pt;}
.x56_c00229{left:385.333333pt;}
.xee_c00229{left:386.666667pt;}
.xe4_c00229{left:388.000000pt;}
.x5f_c00229{left:388.960000pt;}
.x29_c00229{left:392.000000pt;}
.x6a_c00229{left:393.333333pt;}
.x57_c00229{left:394.666667pt;}
.x35_c00229{left:397.333333pt;}
.x86_c00229{left:398.666667pt;}
.xa_c00229{left:400.000000pt;}
.xa6_c00229{left:401.333333pt;}
.xfc_c00229{left:402.666667pt;}
.xc7_c00229{left:404.000000pt;}
.x6f_c00229{left:404.960000pt;}
.x9c_c00229{left:406.293333pt;}
.xa9_c00229{left:410.666667pt;}
.x8e_c00229{left:413.333333pt;}
.x93_c00229{left:415.626667pt;}
.x4e_c00229{left:417.333333pt;}
.x7c_c00229{left:418.666667pt;}
.xf2_c00229{left:421.706667pt;}
.xb7_c00229{left:424.000000pt;}
.x41_c00229{left:425.333333pt;}
.x4f_c00229{left:426.666667pt;}
.x2a_c00229{left:427.626667pt;}
.x115_c00229{left:431.040000pt;}
.x58_c00229{left:434.293333pt;}
.x17_c00229{left:436.000000pt;}
.x100_c00229{left:439.240000pt;}
.x60_c00229{left:440.373333pt;}
.xec_c00229{left:441.706667pt;}
.xf9_c00229{left:442.666667pt;}
.x36_c00229{left:444.000000pt;}
.xaa_c00229{left:445.706667pt;}
.xbc_c00229{left:447.040000pt;}
.x112_c00229{left:451.040000pt;}
.x87_c00229{left:453.333333pt;}
.x42_c00229{left:454.293333pt;}
.xe5_c00229{left:456.000000pt;}
.x50_c00229{left:456.960000pt;}
.xb8_c00229{left:458.666667pt;}
.xd3_c00229{left:459.626667pt;}
.xab_c00229{left:460.960000pt;}
.xb_c00229{left:462.293333pt;}
.xcd_c00229{left:464.000000pt;}
.x2b_c00229{left:464.960000pt;}
.xc8_c00229{left:466.293333pt;}
.x8f_c00229{left:468.000000pt;}
.x59_c00229{left:469.333333pt;}
.xdc_c00229{left:470.666667pt;}
.xfa_c00229{left:472.373333pt;}
.x7d_c00229{left:474.666667pt;}
.xef_c00229{left:475.626667pt;}
.xc_c00229{left:476.573333pt;}
.xf3_c00229{left:478.666667pt;}
.x10d_c00229{left:480.373333pt;}
.x2c_c00229{left:482.293333pt;}
.x37_c00229{left:484.960000pt;}
.x88_c00229{left:487.040000pt;}
.x94_c00229{left:488.960000pt;}
.x5a_c00229{left:490.666667pt;}
.x70_c00229{left:492.960000pt;}
.xac_c00229{left:496.000000pt;}
.xbd_c00229{left:498.293333pt;}
.x104_c00229{left:499.626667pt;}
.xd4_c00229{left:502.293333pt;}
.x43_c00229{left:504.000000pt;}
.x2d_c00229{left:506.666667pt;}
.x9d_c00229{left:509.333333pt;}
.x38_c00229{left:511.040000pt;}
.x18_c00229{left:512.000000pt;}
.x44_c00229{left:514.666667pt;}
.xf0_c00229{left:516.000000pt;}
.x51_c00229{left:518.666667pt;}
.xce_c00229{left:521.333333pt;}
.x19_c00229{left:522.293333pt;}
.x61_c00229{left:523.426667pt;}
.xa1_c00229{left:528.960000pt;}
.xb9_c00229{left:530.666667pt;}
.x5b_c00229{left:532.000000pt;}
.x105_c00229{left:534.293333pt;}
.x107_c00229{left:537.333333pt;}
.x10e_c00229{left:538.666667pt;}
.x9e_c00229{left:539.626667pt;}
.xc9_c00229{left:542.093333pt;}
.x116_c00229{left:544.373333pt;}
.x1a_c00229{left:545.333333pt;}
.x39_c00229{left:548.000000pt;}
.x45_c00229{left:549.333333pt;}
.xd_c00229{left:550.293333pt;}
.xe1_c00229{left:552.000000pt;}
.xfd_c00229{left:556.000000pt;}
.x5c_c00229{left:556.960000pt;}
.xe_c00229{left:560.000000pt;}
.x71_c00229{left:564.000000pt;}
.x7e_c00229{left:564.960000pt;}
.x2e_c00229{left:566.293333pt;}
.xdd_c00229{left:568.373333pt;}
.x52_c00229{left:569.333333pt;}
.xd5_c00229{left:572.000000pt;}
.xe2_c00229{left:573.333333pt;}
.x3a_c00229{left:574.293333pt;}
.x89_c00229{left:575.626667pt;}
.x95_c00229{left:576.960000pt;}
.x46_c00229{left:579.040000pt;}
.x2f_c00229{left:583.240000pt;}
.xfe_c00229{left:585.333333pt;}
.xad_c00229{left:586.293333pt;}
.xf4_c00229{left:588.373333pt;}
.x101_c00229{left:589.333333pt;}
.xf_c00229{left:590.293333pt;}
.xbe_c00229{left:592.373333pt;}
.x106_c00229{left:593.706667pt;}
.xde_c00229{left:594.666667pt;}
.xe6_c00229{left:595.626667pt;}
.x62_c00229{left:597.333333pt;}
.x3b_c00229{left:598.666667pt;}
.x7f_c00229{left:599.626667pt;}
.xb0_c00229{left:601.333333pt;}
.x113_c00229{left:604.000000pt;}
.x1b_c00229{left:605.706667pt;}
.xd6_c00229{left:608.000000pt;}
.x96_c00229{left:612.000000pt;}
.x8a_c00229{left:613.706667pt;}
.x72_c00229{left:615.040000pt;}
.x47_c00229{left:616.760000pt;}
.x10_c00229{left:618.093333pt;}
.x108_c00229{left:619.626667pt;}
.x1c_c00229{left:621.333333pt;}
.x80_c00229{left:622.293333pt;}
.x8b_c00229{left:624.000000pt;}
.x73_c00229{left:625.333333pt;}
.x63_c00229{left:630.293333pt;}
.xea_c00229{left:632.000000pt;}
.xe7_c00229{left:637.333333pt;}
.x102_c00229{left:638.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_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_4b543bc27fd65ff8a1faa8c8.woff2')format("woff");}.ff1_c00230{font-family:ff1_c00230;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mce_c00230{transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);}
.m54_c00230{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m84_c00230{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m9f_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);}
.m5a_c00230{transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);}
.m65_c00230{transform:matrix(0.386887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386887,0.000000,0.000000,0.250000,0,0);}
.m88_c00230{transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);}
.m50_c00230{transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);}
.m72_c00230{transform:matrix(0.404908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404908,0.000000,0.000000,0.250000,0,0);}
.m4b_c00230{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m14_c00230{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mb7_c00230{transform:matrix(0.411176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411176,0.000000,0.000000,0.250000,0,0);}
.m3a_c00230{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m47_c00230{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m23_c00230{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m6b_c00230{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mb5_c00230{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.m48_c00230{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m8d_c00230{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m60_c00230{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m57_c00230{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m38_c00230{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.ma2_c00230{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m63_c00230{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m5e_c00230{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m29_c00230{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m8e_c00230{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m42_c00230{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m26_c00230{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m55_c00230{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m11_c00230{transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);}
.m5b_c00230{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m1d_c00230{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m4a_c00230{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.m64_c00230{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mc0_c00230{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m74_c00230{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.me_c00230{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.ma8_c00230{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m9e_c00230{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);}
.ma1_c00230{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);}
.m8c_c00230{transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);}
.m90_c00230{transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);}
.m45_c00230{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m71_c00230{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m6f_c00230{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m78_c00230{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m62_c00230{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m30_c00230{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m95_c00230{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m58_c00230{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.m5f_c00230{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.m87_c00230{transform:matrix(0.460588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460588,0.000000,0.000000,0.250000,0,0);}
.m37_c00230{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m9d_c00230{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.mbe_c00230{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.mb8_c00230{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.m93_c00230{transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);}
.m24_c00230{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.mc3_c00230{transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);}
.m3f_c00230{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m59_c00230{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m19_c00230{transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);}
.maf_c00230{transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);}
.m51_c00230{transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);}
.mc_c00230{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m69_c00230{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.md_c00230{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m94_c00230{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m25_c00230{transform:matrix(0.485577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485577,0.000000,0.000000,0.250000,0,0);}
.ma5_c00230{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m3e_c00230{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m9c_c00230{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m2c_c00230{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m5c_c00230{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mcf_c00230{transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);}
.mc2_c00230{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.mb6_c00230{transform:matrix(0.495994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495994,0.000000,0.000000,0.250000,0,0);}
.m52_c00230{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m1b_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);}
.m86_c00230{transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);}
.m9_c00230{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m16_c00230{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m79_c00230{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.m4_c00230{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m31_c00230{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m56_c00230{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mbf_c00230{transform:matrix(0.512821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512821,0.000000,0.000000,0.250000,0,0);}
.m7b_c00230{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m4c_c00230{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m18_c00230{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m7a_c00230{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mcc_c00230{transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);}
.m85_c00230{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m2_c00230{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m53_c00230{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.mb_c00230{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m33_c00230{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m49_c00230{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m9a_c00230{transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);}
.m10_c00230{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mb3_c00230{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.m3_c00230{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.ma6_c00230{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m8b_c00230{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.m8a_c00230{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m15_c00230{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m17_c00230{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m12_c00230{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m61_c00230{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m13_c00230{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m2b_c00230{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m44_c00230{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m7_c00230{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mca_c00230{transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);}
.m1f_c00230{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m73_c00230{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m43_c00230{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m41_c00230{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m20_c00230{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mb4_c00230{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m68_c00230{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m80_c00230{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m28_c00230{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m7c_c00230{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m5d_c00230{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.ma_c00230{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m35_c00230{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m39_c00230{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m22_c00230{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.ma3_c00230{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.mc8_c00230{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m34_c00230{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m8_c00230{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m7f_c00230{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_c00230{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m7e_c00230{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m3d_c00230{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.mad_c00230{transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);}
.m9b_c00230{transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);}
.m2e_c00230{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m89_c00230{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m92_c00230{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.m32_c00230{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m2f_c00230{transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);}
.m5_c00230{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.mf_c00230{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mbd_c00230{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.m75_c00230{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m46_c00230{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.m76_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);}
.m0_c00230{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m7d_c00230{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m91_c00230{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m1c_c00230{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m8f_c00230{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m66_c00230{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m97_c00230{transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);}
.mb1_c00230{transform:matrix(0.616987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616987,0.000000,0.000000,0.250000,0,0);}
.m83_c00230{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m3c_c00230{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.m82_c00230{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mbb_c00230{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m77_c00230{transform:matrix(0.628824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628824,0.000000,0.000000,0.250000,0,0);}
.mac_c00230{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m1_c00230{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m6d_c00230{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mc7_c00230{transform:matrix(0.634615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634615,0.000000,0.000000,0.250000,0,0);}
.m4d_c00230{transform:matrix(0.648824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648824,0.000000,0.000000,0.250000,0,0);}
.m6e_c00230{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.ma0_c00230{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m4e_c00230{transform:matrix(0.663529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.663529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.663529,0.000000,0.000000,0.250000,0,0);}
.m67_c00230{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.ma4_c00230{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m21_c00230{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m81_c00230{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m2a_c00230{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.maa_c00230{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m96_c00230{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m4f_c00230{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.mcd_c00230{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m1e_c00230{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m98_c00230{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.mcb_c00230{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m70_c00230{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.mab_c00230{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m40_c00230{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.ma9_c00230{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.mc9_c00230{transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);}
.mbc_c00230{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.mc1_c00230{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.m99_c00230{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m2d_c00230{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mb9_c00230{transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);}
.m27_c00230{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m3b_c00230{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mc5_c00230{transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);}
.mc6_c00230{transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);}
.m6c_c00230{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mb2_c00230{transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);}
.m6a_c00230{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.ma7_c00230{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m36_c00230{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mb0_c00230{transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);}
.m1a_c00230{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mc4_c00230{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mba_c00230{transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.882159,0.000000,0.000000,0.250000,0,0);}
.mae_c00230{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.v2_c00230{vertical-align:-6.000000px;}
.v0_c00230{vertical-align:0.000000px;}
.v1_c00230{vertical-align:6.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:-6.184625px;}
.ws23_c00230{word-spacing:0.000000px;}
.ws1d_c00230{word-spacing:11.661937px;}
.ws15_c00230{word-spacing:13.306168px;}
.wse_c00230{word-spacing:19.620812px;}
.ws12_c00230{word-spacing:23.767013px;}
.ws7_c00230{word-spacing:25.629635px;}
.ws9_c00230{word-spacing:27.632576px;}
.ws5_c00230{word-spacing:27.671529px;}
.ws1e_c00230{word-spacing:29.395112px;}
.ws1b_c00230{word-spacing:30.193299px;}
.ws14_c00230{word-spacing:33.638400px;}
.ws22_c00230{word-spacing:36.237697px;}
.ws1c_c00230{word-spacing:37.460577px;}
.ws11_c00230{word-spacing:38.705522px;}
.ws20_c00230{word-spacing:39.052735px;}
.ws1a_c00230{word-spacing:39.933737px;}
.ws8_c00230{word-spacing:42.638400px;}
.ws10_c00230{word-spacing:43.405892px;}
.ws13_c00230{word-spacing:45.572749px;}
.ws1f_c00230{word-spacing:47.497848px;}
.wsc_c00230{word-spacing:49.006362px;}
.ws19_c00230{word-spacing:49.633219px;}
.ws3_c00230{word-spacing:49.653248px;}
.ws6_c00230{word-spacing:49.953969px;}
.ws16_c00230{word-spacing:51.676951px;}
.wsf_c00230{word-spacing:52.136662px;}
.wsb_c00230{word-spacing:54.347539px;}
.ws1_c00230{word-spacing:54.868831px;}
.wsd_c00230{word-spacing:57.018127px;}
.ws2_c00230{word-spacing:58.443634px;}
.ws21_c00230{word-spacing:59.541565px;}
.wsa_c00230{word-spacing:59.688715px;}
.ws18_c00230{word-spacing:60.822309px;}
.ws4_c00230{word-spacing:62.018438px;}
.ws17_c00230{word-spacing:87.395114px;}
._b_c00230{width:31.682189px;}
._a_c00230{width:49.985215px;}
._2_c00230{width:51.359972px;}
._d_c00230{width:52.800253px;}
._6_c00230{width:54.289854px;}
._5_c00230{width:56.960442px;}
._c_c00230{width:58.430328px;}
._7_c00230{width:59.631031px;}
._1_c00230{width:60.986980px;}
._8_c00230{width:62.301619px;}
._9_c00230{width:63.798859px;}
._3_c00230{width:64.972207px;}
._0_c00230{width:66.397714px;}
._4_c00230{width:67.642795px;}
.fc0_c00230{color:transparent;}
.fs8_c00230{font-size:3.420000px;}
.fs9_c00230{font-size:11.880000px;}
.fs7_c00230{font-size:13.620000px;}
.fs5_c00230{font-size:18.720000px;}
.fs0_c00230{font-size:20.400000px;}
.fs3_c00230{font-size:25.500000px;}
.fs1_c00230{font-size:28.920000px;}
.fs4_c00230{font-size:32.340000px;}
.fs2_c00230{font-size:35.700000px;}
.fs6_c00230{font-size:39.120000px;}
.y0_c00230{bottom:0.000000px;}
.yc4_c00230{bottom:249.630000px;}
.yc1_c00230{bottom:250.050000px;}
.yc2_c00230{bottom:250.695000px;}
.yc3_c00230{bottom:251.130000px;}
.yc0_c00230{bottom:263.130000px;}
.ybf_c00230{bottom:264.195000px;}
.ybc_c00230{bottom:264.630000px;}
.ybd_c00230{bottom:265.275000px;}
.ybb_c00230{bottom:265.695000px;}
.ybe_c00230{bottom:265.920000px;}
.yb9_c00230{bottom:276.630000px;}
.yb4_c00230{bottom:277.695000px;}
.yb5_c00230{bottom:278.130000px;}
.yb6_c00230{bottom:278.775000px;}
.yba_c00230{bottom:279.195000px;}
.yb7_c00230{bottom:279.420000px;}
.yb8_c00230{bottom:280.470000px;}
.yb1_c00230{bottom:291.630000px;}
.yb2_c00230{bottom:292.275000px;}
.yb3_c00230{bottom:292.695000px;}
.yb0_c00230{bottom:305.130000px;}
.yae_c00230{bottom:305.775000px;}
.yaf_c00230{bottom:306.195000px;}
.yad_c00230{bottom:306.630000px;}
.yab_c00230{bottom:318.630000px;}
.yac_c00230{bottom:319.695000px;}
.yaa_c00230{bottom:320.130000px;}
.ya8_c00230{bottom:333.630000px;}
.ya9_c00230{bottom:334.695000px;}
.ya7_c00230{bottom:347.130000px;}
.ya6_c00230{bottom:348.195000px;}
.ya3_c00230{bottom:361.050000px;}
.ya4_c00230{bottom:361.695000px;}
.ya5_c00230{bottom:362.130000px;}
.ya2_c00230{bottom:374.130000px;}
.ya1_c00230{bottom:375.195000px;}
.ya0_c00230{bottom:375.630000px;}
.y9f_c00230{bottom:376.695000px;}
.y9b_c00230{bottom:387.630000px;}
.y99_c00230{bottom:388.050000px;}
.y9c_c00230{bottom:388.695000px;}
.y9d_c00230{bottom:388.920000px;}
.y9e_c00230{bottom:389.130000px;}
.y9a_c00230{bottom:390.195000px;}
.y98_c00230{bottom:401.130000px;}
.y97_c00230{bottom:402.195000px;}
.y96_c00230{bottom:402.630000px;}
.y95_c00230{bottom:416.130000px;}
.y94_c00230{bottom:417.195000px;}
.y90_c00230{bottom:429.630000px;}
.y92_c00230{bottom:430.695000px;}
.y93_c00230{bottom:431.130000px;}
.y91_c00230{bottom:431.775000px;}
.y8f_c00230{bottom:442.470000px;}
.y8c_c00230{bottom:443.130000px;}
.y8e_c00230{bottom:444.195000px;}
.y8b_c00230{bottom:444.630000px;}
.y8d_c00230{bottom:445.695000px;}
.y89_c00230{bottom:456.630000px;}
.y8a_c00230{bottom:458.130000px;}
.y88_c00230{bottom:472.695000px;}
.y86_c00230{bottom:485.130000px;}
.y87_c00230{bottom:486.195000px;}
.y85_c00230{bottom:486.630000px;}
.y83_c00230{bottom:499.695000px;}
.y81_c00230{bottom:500.130000px;}
.y82_c00230{bottom:501.195000px;}
.y84_c00230{bottom:501.420000px;}
.y7e_c00230{bottom:513.195000px;}
.y7d_c00230{bottom:513.630000px;}
.y80_c00230{bottom:514.695000px;}
.y7f_c00230{bottom:514.920000px;}
.y7c_c00230{bottom:527.130000px;}
.y7b_c00230{bottom:528.195000px;}
.y7a_c00230{bottom:540.630000px;}
.y79_c00230{bottom:541.695000px;}
.y78_c00230{bottom:554.130000px;}
.y75_c00230{bottom:554.550000px;}
.y76_c00230{bottom:555.195000px;}
.y74_c00230{bottom:555.630000px;}
.y77_c00230{bottom:556.695000px;}
.y73_c00230{bottom:568.695000px;}
.y72_c00230{bottom:569.130000px;}
.y71_c00230{bottom:570.195000px;}
.y70_c00230{bottom:582.630000px;}
.y6f_c00230{bottom:583.695000px;}
.y6e_c00230{bottom:596.130000px;}
.y6c_c00230{bottom:597.195000px;}
.y6d_c00230{bottom:597.630000px;}
.y6b_c00230{bottom:609.630000px;}
.y6a_c00230{bottom:610.695000px;}
.y69_c00230{bottom:611.130000px;}
.y67_c00230{bottom:624.195000px;}
.y68_c00230{bottom:624.630000px;}
.y63_c00230{bottom:637.050000px;}
.y66_c00230{bottom:637.695000px;}
.y64_c00230{bottom:638.130000px;}
.y65_c00230{bottom:639.195000px;}
.y61_c00230{bottom:651.630000px;}
.y60_c00230{bottom:652.050000px;}
.y62_c00230{bottom:652.695000px;}
.y5f_c00230{bottom:653.130000px;}
.y5e_c00230{bottom:665.130000px;}
.y5d_c00230{bottom:666.195000px;}
.y5c_c00230{bottom:667.695000px;}
.y5b_c00230{bottom:684.630000px;}
.y5a_c00230{bottom:685.695000px;}
.y58_c00230{bottom:696.630000px;}
.y59_c00230{bottom:697.695000px;}
.y56_c00230{bottom:698.130000px;}
.y57_c00230{bottom:699.195000px;}
.y55_c00230{bottom:711.195000px;}
.y54_c00230{bottom:712.695000px;}
.y51_c00230{bottom:728.325000px;}
.y53_c00230{bottom:729.825000px;}
.y4f_c00230{bottom:730.470000px;}
.y50_c00230{bottom:731.550000px;}
.y52_c00230{bottom:731.970000px;}
.y4e_c00230{bottom:754.050000px;}
.y4d_c00230{bottom:755.550000px;}
.y4b_c00230{bottom:785.745000px;}
.y4a_c00230{bottom:786.630000px;}
.y4c_c00230{bottom:786.825000px;}
.y49_c00230{bottom:787.905000px;}
.y45_c00230{bottom:804.180000px;}
.y44_c00230{bottom:805.245000px;}
.y47_c00230{bottom:806.130000px;}
.y46_c00230{bottom:807.405000px;}
.y48_c00230{bottom:808.470000px;}
.y42_c00230{bottom:824.745000px;}
.y3f_c00230{bottom:825.630000px;}
.y41_c00230{bottom:825.825000px;}
.y40_c00230{bottom:826.905000px;}
.y43_c00230{bottom:827.970000px;}
.y3c_c00230{bottom:843.405000px;}
.y3d_c00230{bottom:844.680000px;}
.y3e_c00230{bottom:845.550000px;}
.y38_c00230{bottom:845.745000px;}
.y39_c00230{bottom:846.405000px;}
.y3b_c00230{bottom:846.825000px;}
.y3a_c00230{bottom:847.905000px;}
.y35_c00230{bottom:865.245000px;}
.y33_c00230{bottom:865.905000px;}
.y37_c00230{bottom:866.325000px;}
.y36_c00230{bottom:866.970000px;}
.y34_c00230{bottom:867.405000px;}
.y32_c00230{bottom:882.405000px;}
.y2e_c00230{bottom:883.245000px;}
.y2f_c00230{bottom:884.325000px;}
.y31_c00230{bottom:884.745000px;}
.y2d_c00230{bottom:886.470000px;}
.y30_c00230{bottom:886.905000px;}
.y2c_c00230{bottom:904.245000px;}
.y2b_c00230{bottom:906.405000px;}
.y29_c00230{bottom:923.745000px;}
.y2a_c00230{bottom:924.630000px;}
.y26_c00230{bottom:924.825000px;}
.y28_c00230{bottom:925.470000px;}
.y27_c00230{bottom:925.905000px;}
.y22_c00230{bottom:942.825000px;}
.y24_c00230{bottom:943.245000px;}
.y21_c00230{bottom:945.405000px;}
.y23_c00230{bottom:945.630000px;}
.y25_c00230{bottom:946.905000px;}
.y1c_c00230{bottom:962.745000px;}
.y1d_c00230{bottom:963.825000px;}
.y1e_c00230{bottom:964.245000px;}
.y1a_c00230{bottom:964.905000px;}
.y1b_c00230{bottom:965.130000px;}
.y1f_c00230{bottom:965.970000px;}
.y20_c00230{bottom:966.405000px;}
.y16_c00230{bottom:982.245000px;}
.y15_c00230{bottom:982.470000px;}
.y18_c00230{bottom:983.325000px;}
.y13_c00230{bottom:984.405000px;}
.y14_c00230{bottom:984.630000px;}
.y19_c00230{bottom:985.470000px;}
.y17_c00230{bottom:985.905000px;}
.y11_c00230{bottom:1001.745000px;}
.y10_c00230{bottom:1003.905000px;}
.y12_c00230{bottom:1004.130000px;}
.yb_c00230{bottom:1021.245000px;}
.ye_c00230{bottom:1022.325000px;}
.yd_c00230{bottom:1022.745000px;}
.yc_c00230{bottom:1023.405000px;}
.yf_c00230{bottom:1023.630000px;}
.ya_c00230{bottom:1024.470000px;}
.y9_c00230{bottom:1024.905000px;}
.y5_c00230{bottom:1042.245000px;}
.y8_c00230{bottom:1043.130000px;}
.y7_c00230{bottom:1043.325000px;}
.y6_c00230{bottom:1043.970000px;}
.y4_c00230{bottom:1044.405000px;}
.y3_c00230{bottom:1061.745000px;}
.y2_c00230{bottom:1063.905000px;}
.y1_c00230{bottom:1102.050000px;}
.hb_c00230{height:4.206533px;}
.hd_c00230{height:14.612168px;}
.h9_c00230{height:16.752334px;}
.ha_c00230{height:22.752334px;}
.h6_c00230{height:23.025234px;}
.h1_c00230{height:25.091602px;}
.hc_c00230{height:29.025234px;}
.h4_c00230{height:31.364502px;}
.h2_c00230{height:35.571035px;}
.h5_c00230{height:39.777568px;}
.h7_c00230{height:41.571035px;}
.h3_c00230{height:43.910303px;}
.h8_c00230{height:48.116836px;}
.h0_c00230{height:1335.000000px;}
.w0_c00230{width:880.500000px;}
.x0_c00230{left:0.000000px;}
.x11_c00230{left:151.500000px;}
.x3_c00230{left:152.580000px;}
.x9f_c00230{left:154.500000px;}
.xab_c00230{left:156.000000px;}
.x63_c00230{left:169.500000px;}
.xd3_c00230{left:171.000000px;}
.x82_c00230{left:172.920000px;}
.x4_c00230{left:177.420000px;}
.xbf_c00230{left:178.500000px;}
.x39_c00230{left:183.000000px;}
.xbb_c00230{left:187.920000px;}
.x12_c00230{left:189.420000px;}
.x20_c00230{left:198.000000px;}
.xcf_c00230{left:201.000000px;}
.x78_c00230{left:202.080000px;}
.x5_c00230{left:203.580000px;}
.x8f_c00230{left:205.500000px;}
.x4f_c00230{left:207.000000px;}
.x9a_c00230{left:208.500000px;}
.x46_c00230{left:210.000000px;}
.xa0_c00230{left:211.080000px;}
.xca_c00230{left:214.500000px;}
.x6d_c00230{left:217.920000px;}
.xc2_c00230{left:219.000000px;}
.x13_c00230{left:220.080000px;}
.xb3_c00230{left:222.000000px;}
.xb6_c00230{left:223.500000px;}
.x61_c00230{left:225.000000px;}
.x64_c00230{left:226.500000px;}
.xc0_c00230{left:227.580000px;}
.xd0_c00230{left:229.920000px;}
.x47_c00230{left:231.420000px;}
.x83_c00230{left:234.420000px;}
.xa1_c00230{left:237.000000px;}
.x5a_c00230{left:241.920000px;}
.x6_c00230{left:244.920000px;}
.x6e_c00230{left:246.000000px;}
.x79_c00230{left:247.080000px;}
.x21_c00230{left:251.580000px;}
.x2d_c00230{left:256.500000px;}
.x3a_c00230{left:257.580000px;}
.x50_c00230{left:259.920000px;}
.x62_c00230{left:262.080000px;}
.xd2_c00230{left:264.000000px;}
.xd1_c00230{left:265.920000px;}
.x2e_c00230{left:270.000000px;}
.x22_c00230{left:271.500000px;}
.x90_c00230{left:280.500000px;}
.x7_c00230{left:283.080000px;}
.x14_c00230{left:285.420000px;}
.x65_c00230{left:295.500000px;}
.x23_c00230{left:297.000000px;}
.x8_c00230{left:300.000000px;}
.x91_c00230{left:303.000000px;}
.x66_c00230{left:306.000000px;}
.x84_c00230{left:307.920000px;}
.x6f_c00230{left:309.420000px;}
.x15_c00230{left:315.000000px;}
.x7a_c00230{left:316.920000px;}
.xac_c00230{left:318.000000px;}
.x9_c00230{left:322.920000px;}
.x67_c00230{left:324.000000px;}
.x51_c00230{left:325.500000px;}
.xa8_c00230{left:327.000000px;}
.xc4_c00230{left:328.500000px;}
.x2f_c00230{left:330.420000px;}
.x5b_c00230{left:333.420000px;}
.x24_c00230{left:337.500000px;}
.x48_c00230{left:340.500000px;}
.x3b_c00230{left:343.500000px;}
.x16_c00230{left:347.580000px;}
.x25_c00230{left:354.420000px;}
.x85_c00230{left:355.500000px;}
.x30_c00230{left:357.000000px;}
.xa2_c00230{left:358.080000px;}
.x92_c00230{left:359.580000px;}
.xad_c00230{left:363.000000px;}
.x52_c00230{left:364.080000px;}
.xa9_c00230{left:367.500000px;}
.xcb_c00230{left:369.000000px;}
.x7b_c00230{left:370.500000px;}
.xbd_c00230{left:372.000000px;}
.xa3_c00230{left:373.500000px;}
.x70_c00230{left:374.580000px;}
.xa_c00230{left:376.500000px;}
.x53_c00230{left:382.920000px;}
.x17_c00230{left:384.420000px;}
.x9b_c00230{left:385.500000px;}
.x31_c00230{left:388.080000px;}
.x86_c00230{left:390.000000px;}
.x5c_c00230{left:391.920000px;}
.x3c_c00230{left:396.000000px;}
.xa4_c00230{left:397.500000px;}
.x1_c00230{left:399.000000px;}
.x68_c00230{left:402.000000px;}
.x93_c00230{left:405.420000px;}
.x54_c00230{left:409.500000px;}
.xb4_c00230{left:412.500000px;}
.x71_c00230{left:413.580000px;}
.xb8_c00230{left:417.000000px;}
.xc5_c00230{left:418.500000px;}
.x18_c00230{left:420.000000px;}
.x3d_c00230{left:421.920000px;}
.xb_c00230{left:429.420000px;}
.x87_c00230{left:433.500000px;}
.x26_c00230{left:436.920000px;}
.x49_c00230{left:439.920000px;}
.x32_c00230{left:441.420000px;}
.x55_c00230{left:447.000000px;}
.x3e_c00230{left:451.920000px;}
.xc_c00230{left:456.000000px;}
.x72_c00230{left:457.080000px;}
.x7c_c00230{left:459.000000px;}
.xa5_c00230{left:461.580000px;}
.xce_c00230{left:463.500000px;}
.x5d_c00230{left:466.500000px;}
.x33_c00230{left:468.420000px;}
.x69_c00230{left:471.000000px;}
.x19_c00230{left:472.500000px;}
.x27_c00230{left:473.580000px;}
.xa6_c00230{left:475.500000px;}
.x3f_c00230{left:484.920000px;}
.x73_c00230{left:490.920000px;}
.x7d_c00230{left:492.000000px;}
.x5e_c00230{left:499.500000px;}
.x4a_c00230{left:501.000000px;}
.xb7_c00230{left:502.500000px;}
.x94_c00230{left:504.000000px;}
.xcc_c00230{left:505.920000px;}
.x34_c00230{left:507.420000px;}
.xc6_c00230{left:508.500000px;}
.x88_c00230{left:510.000000px;}
.x9c_c00230{left:516.420000px;}
.x1a_c00230{left:517.500000px;}
.x74_c00230{left:519.000000px;}
.x40_c00230{left:520.920000px;}
.x28_c00230{left:522.000000px;}
.x95_c00230{left:523.920000px;}
.x56_c00230{left:526.920000px;}
.x4b_c00230{left:529.920000px;}
.x35_c00230{left:531.000000px;}
.xa7_c00230{left:534.000000px;}
.x7e_c00230{left:538.500000px;}
.x29_c00230{left:541.920000px;}
.x89_c00230{left:543.000000px;}
.xd_c00230{left:544.500000px;}
.x36_c00230{left:546.000000px;}
.xaa_c00230{left:547.500000px;}
.xc7_c00230{left:549.000000px;}
.x1b_c00230{left:550.500000px;}
.x96_c00230{left:557.580000px;}
.x4c_c00230{left:568.920000px;}
.x8a_c00230{left:570.000000px;}
.x5f_c00230{left:572.580000px;}
.x2a_c00230{left:577.920000px;}
.x9d_c00230{left:579.000000px;}
.xb1_c00230{left:583.500000px;}
.xbe_c00230{left:585.420000px;}
.xd4_c00230{left:586.920000px;}
.xb9_c00230{left:588.000000px;}
.x57_c00230{left:589.500000px;}
.x75_c00230{left:590.580000px;}
.x41_c00230{left:592.500000px;}
.xcd_c00230{left:594.000000px;}
.x1c_c00230{left:600.000000px;}
.x8b_c00230{left:601.080000px;}
.x37_c00230{left:604.500000px;}
.x97_c00230{left:606.000000px;}
.x58_c00230{left:610.500000px;}
.x6a_c00230{left:615.420000px;}
.x1d_c00230{left:616.920000px;}
.xae_c00230{left:618.000000px;}
.xe_c00230{left:621.000000px;}
.x7f_c00230{left:622.500000px;}
.x59_c00230{left:623.580000px;}
.x4d_c00230{left:625.080000px;}
.x42_c00230{left:628.080000px;}
.xc8_c00230{left:630.000000px;}
.x2b_c00230{left:633.000000px;}
.x60_c00230{left:635.580000px;}
.xf_c00230{left:637.080000px;}
.x76_c00230{left:640.500000px;}
.x43_c00230{left:649.500000px;}
.x8c_c00230{left:655.080000px;}
.x98_c00230{left:661.500000px;}
.x6b_c00230{left:663.420000px;}
.xaf_c00230{left:664.500000px;}
.x10_c00230{left:667.500000px;}
.xb5_c00230{left:669.000000px;}
.x80_c00230{left:670.920000px;}
.xc3_c00230{left:672.000000px;}
.xba_c00230{left:673.500000px;}
.x8d_c00230{left:675.000000px;}
.x9e_c00230{left:676.500000px;}
.x44_c00230{left:678.000000px;}
.x38_c00230{left:681.000000px;}
.x1e_c00230{left:684.000000px;}
.x2c_c00230{left:685.500000px;}
.x81_c00230{left:691.080000px;}
.x99_c00230{left:693.000000px;}
.x6c_c00230{left:694.500000px;}
.x77_c00230{left:697.920000px;}
.x8e_c00230{left:703.920000px;}
.x2_c00230{left:705.420000px;}
.x1f_c00230{left:706.920000px;}
.x4e_c00230{left:708.420000px;}
.xb2_c00230{left:714.000000px;}
.xbc_c00230{left:715.920000px;}
.xc1_c00230{left:717.420000px;}
.x45_c00230{left:718.500000px;}
.xc9_c00230{left:720.000000px;}
.xb0_c00230{left:721.500000px;}
@media print{
.v2_c00230{vertical-align:-5.333333pt;}
.v0_c00230{vertical-align:0.000000pt;}
.v1_c00230{vertical-align:5.333333pt;}
.ls0_c00230{letter-spacing:0.000000pt;}
.ws0_c00230{word-spacing:-5.497444pt;}
.ws23_c00230{word-spacing:0.000000pt;}
.ws1d_c00230{word-spacing:10.366166pt;}
.ws15_c00230{word-spacing:11.827705pt;}
.wse_c00230{word-spacing:17.440722pt;}
.ws12_c00230{word-spacing:21.126233pt;}
.ws7_c00230{word-spacing:22.781898pt;}
.ws9_c00230{word-spacing:24.562290pt;}
.ws5_c00230{word-spacing:24.596914pt;}
.ws1e_c00230{word-spacing:26.128988pt;}
.ws1b_c00230{word-spacing:26.838488pt;}
.ws14_c00230{word-spacing:29.900800pt;}
.ws22_c00230{word-spacing:32.211287pt;}
.ws1c_c00230{word-spacing:33.298290pt;}
.ws11_c00230{word-spacing:34.404908pt;}
.ws20_c00230{word-spacing:34.713542pt;}
.ws1a_c00230{word-spacing:35.496655pt;}
.ws8_c00230{word-spacing:37.900800pt;}
.ws10_c00230{word-spacing:38.583015pt;}
.ws13_c00230{word-spacing:40.509110pt;}
.ws1f_c00230{word-spacing:42.220309pt;}
.wsc_c00230{word-spacing:43.561211pt;}
.ws19_c00230{word-spacing:44.118417pt;}
.ws3_c00230{word-spacing:44.136220pt;}
.ws6_c00230{word-spacing:44.403528pt;}
.ws16_c00230{word-spacing:45.935067pt;}
.wsf_c00230{word-spacing:46.343699pt;}
.wsb_c00230{word-spacing:48.308923pt;}
.ws1_c00230{word-spacing:48.772295pt;}
.wsd_c00230{word-spacing:50.682780pt;}
.ws2_c00230{word-spacing:51.949897pt;}
.ws21_c00230{word-spacing:52.925836pt;}
.wsa_c00230{word-spacing:53.056636pt;}
.ws18_c00230{word-spacing:54.064274pt;}
.ws4_c00230{word-spacing:55.127500pt;}
.ws17_c00230{word-spacing:77.684546pt;}
._b_c00230{width:28.161946pt;}
._a_c00230{width:44.431302pt;}
._2_c00230{width:45.653309pt;}
._d_c00230{width:46.933558pt;}
._6_c00230{width:48.257648pt;}
._5_c00230{width:50.631504pt;}
._c_c00230{width:51.938069pt;}
._7_c00230{width:53.005361pt;}
._1_c00230{width:54.210649pt;}
._8_c00230{width:55.379217pt;}
._9_c00230{width:56.710097pt;}
._3_c00230{width:57.753073pt;}
._0_c00230{width:59.020191pt;}
._4_c00230{width:60.126929pt;}
.fs8_c00230{font-size:3.040000pt;}
.fs9_c00230{font-size:10.560000pt;}
.fs7_c00230{font-size:12.106667pt;}
.fs5_c00230{font-size:16.640000pt;}
.fs0_c00230{font-size:18.133333pt;}
.fs3_c00230{font-size:22.666667pt;}
.fs1_c00230{font-size:25.706667pt;}
.fs4_c00230{font-size:28.746667pt;}
.fs2_c00230{font-size:31.733333pt;}
.fs6_c00230{font-size:34.773333pt;}
.y0_c00230{bottom:0.000000pt;}
.yc4_c00230{bottom:221.893333pt;}
.yc1_c00230{bottom:222.266667pt;}
.yc2_c00230{bottom:222.840000pt;}
.yc3_c00230{bottom:223.226667pt;}
.yc0_c00230{bottom:233.893333pt;}
.ybf_c00230{bottom:234.840000pt;}
.ybc_c00230{bottom:235.226667pt;}
.ybd_c00230{bottom:235.800000pt;}
.ybb_c00230{bottom:236.173333pt;}
.ybe_c00230{bottom:236.373333pt;}
.yb9_c00230{bottom:245.893333pt;}
.yb4_c00230{bottom:246.840000pt;}
.yb5_c00230{bottom:247.226667pt;}
.yb6_c00230{bottom:247.800000pt;}
.yba_c00230{bottom:248.173333pt;}
.yb7_c00230{bottom:248.373333pt;}
.yb8_c00230{bottom:249.306667pt;}
.yb1_c00230{bottom:259.226667pt;}
.yb2_c00230{bottom:259.800000pt;}
.yb3_c00230{bottom:260.173333pt;}
.yb0_c00230{bottom:271.226667pt;}
.yae_c00230{bottom:271.800000pt;}
.yaf_c00230{bottom:272.173333pt;}
.yad_c00230{bottom:272.560000pt;}
.yab_c00230{bottom:283.226667pt;}
.yac_c00230{bottom:284.173333pt;}
.yaa_c00230{bottom:284.560000pt;}
.ya8_c00230{bottom:296.560000pt;}
.ya9_c00230{bottom:297.506667pt;}
.ya7_c00230{bottom:308.560000pt;}
.ya6_c00230{bottom:309.506667pt;}
.ya3_c00230{bottom:320.933333pt;}
.ya4_c00230{bottom:321.506667pt;}
.ya5_c00230{bottom:321.893333pt;}
.ya2_c00230{bottom:332.560000pt;}
.ya1_c00230{bottom:333.506667pt;}
.ya0_c00230{bottom:333.893333pt;}
.y9f_c00230{bottom:334.840000pt;}
.y9b_c00230{bottom:344.560000pt;}
.y99_c00230{bottom:344.933333pt;}
.y9c_c00230{bottom:345.506667pt;}
.y9d_c00230{bottom:345.706667pt;}
.y9e_c00230{bottom:345.893333pt;}
.y9a_c00230{bottom:346.840000pt;}
.y98_c00230{bottom:356.560000pt;}
.y97_c00230{bottom:357.506667pt;}
.y96_c00230{bottom:357.893333pt;}
.y95_c00230{bottom:369.893333pt;}
.y94_c00230{bottom:370.840000pt;}
.y90_c00230{bottom:381.893333pt;}
.y92_c00230{bottom:382.840000pt;}
.y93_c00230{bottom:383.226667pt;}
.y91_c00230{bottom:383.800000pt;}
.y8f_c00230{bottom:393.306667pt;}
.y8c_c00230{bottom:393.893333pt;}
.y8e_c00230{bottom:394.840000pt;}
.y8b_c00230{bottom:395.226667pt;}
.y8d_c00230{bottom:396.173333pt;}
.y89_c00230{bottom:405.893333pt;}
.y8a_c00230{bottom:407.226667pt;}
.y88_c00230{bottom:420.173333pt;}
.y86_c00230{bottom:431.226667pt;}
.y87_c00230{bottom:432.173333pt;}
.y85_c00230{bottom:432.560000pt;}
.y83_c00230{bottom:444.173333pt;}
.y81_c00230{bottom:444.560000pt;}
.y82_c00230{bottom:445.506667pt;}
.y84_c00230{bottom:445.706667pt;}
.y7e_c00230{bottom:456.173333pt;}
.y7d_c00230{bottom:456.560000pt;}
.y80_c00230{bottom:457.506667pt;}
.y7f_c00230{bottom:457.706667pt;}
.y7c_c00230{bottom:468.560000pt;}
.y7b_c00230{bottom:469.506667pt;}
.y7a_c00230{bottom:480.560000pt;}
.y79_c00230{bottom:481.506667pt;}
.y78_c00230{bottom:492.560000pt;}
.y75_c00230{bottom:492.933333pt;}
.y76_c00230{bottom:493.506667pt;}
.y74_c00230{bottom:493.893333pt;}
.y77_c00230{bottom:494.840000pt;}
.y73_c00230{bottom:505.506667pt;}
.y72_c00230{bottom:505.893333pt;}
.y71_c00230{bottom:506.840000pt;}
.y70_c00230{bottom:517.893333pt;}
.y6f_c00230{bottom:518.840000pt;}
.y6e_c00230{bottom:529.893333pt;}
.y6c_c00230{bottom:530.840000pt;}
.y6d_c00230{bottom:531.226667pt;}
.y6b_c00230{bottom:541.893333pt;}
.y6a_c00230{bottom:542.840000pt;}
.y69_c00230{bottom:543.226667pt;}
.y67_c00230{bottom:554.840000pt;}
.y68_c00230{bottom:555.226667pt;}
.y63_c00230{bottom:566.266667pt;}
.y66_c00230{bottom:566.840000pt;}
.y64_c00230{bottom:567.226667pt;}
.y65_c00230{bottom:568.173333pt;}
.y61_c00230{bottom:579.226667pt;}
.y60_c00230{bottom:579.600000pt;}
.y62_c00230{bottom:580.173333pt;}
.y5f_c00230{bottom:580.560000pt;}
.y5e_c00230{bottom:591.226667pt;}
.y5d_c00230{bottom:592.173333pt;}
.y5c_c00230{bottom:593.506667pt;}
.y5b_c00230{bottom:608.560000pt;}
.y5a_c00230{bottom:609.506667pt;}
.y58_c00230{bottom:619.226667pt;}
.y59_c00230{bottom:620.173333pt;}
.y56_c00230{bottom:620.560000pt;}
.y57_c00230{bottom:621.506667pt;}
.y55_c00230{bottom:632.173333pt;}
.y54_c00230{bottom:633.506667pt;}
.y51_c00230{bottom:647.400000pt;}
.y53_c00230{bottom:648.733333pt;}
.y4f_c00230{bottom:649.306667pt;}
.y50_c00230{bottom:650.266667pt;}
.y52_c00230{bottom:650.640000pt;}
.y4e_c00230{bottom:670.266667pt;}
.y4d_c00230{bottom:671.600000pt;}
.y4b_c00230{bottom:698.440000pt;}
.y4a_c00230{bottom:699.226667pt;}
.y4c_c00230{bottom:699.400000pt;}
.y49_c00230{bottom:700.360000pt;}
.y45_c00230{bottom:714.826667pt;}
.y44_c00230{bottom:715.773333pt;}
.y47_c00230{bottom:716.560000pt;}
.y46_c00230{bottom:717.693333pt;}
.y48_c00230{bottom:718.640000pt;}
.y42_c00230{bottom:733.106667pt;}
.y3f_c00230{bottom:733.893333pt;}
.y41_c00230{bottom:734.066667pt;}
.y40_c00230{bottom:735.026667pt;}
.y43_c00230{bottom:735.973333pt;}
.y3c_c00230{bottom:749.693333pt;}
.y3d_c00230{bottom:750.826667pt;}
.y3e_c00230{bottom:751.600000pt;}
.y38_c00230{bottom:751.773333pt;}
.y39_c00230{bottom:752.360000pt;}
.y3b_c00230{bottom:752.733333pt;}
.y3a_c00230{bottom:753.693333pt;}
.y35_c00230{bottom:769.106667pt;}
.y33_c00230{bottom:769.693333pt;}
.y37_c00230{bottom:770.066667pt;}
.y36_c00230{bottom:770.640000pt;}
.y34_c00230{bottom:771.026667pt;}
.y32_c00230{bottom:784.360000pt;}
.y2e_c00230{bottom:785.106667pt;}
.y2f_c00230{bottom:786.066667pt;}
.y31_c00230{bottom:786.440000pt;}
.y2d_c00230{bottom:787.973333pt;}
.y30_c00230{bottom:788.360000pt;}
.y2c_c00230{bottom:803.773333pt;}
.y2b_c00230{bottom:805.693333pt;}
.y29_c00230{bottom:821.106667pt;}
.y2a_c00230{bottom:821.893333pt;}
.y26_c00230{bottom:822.066667pt;}
.y28_c00230{bottom:822.640000pt;}
.y27_c00230{bottom:823.026667pt;}
.y22_c00230{bottom:838.066667pt;}
.y24_c00230{bottom:838.440000pt;}
.y21_c00230{bottom:840.360000pt;}
.y23_c00230{bottom:840.560000pt;}
.y25_c00230{bottom:841.693333pt;}
.y1c_c00230{bottom:855.773333pt;}
.y1d_c00230{bottom:856.733333pt;}
.y1e_c00230{bottom:857.106667pt;}
.y1a_c00230{bottom:857.693333pt;}
.y1b_c00230{bottom:857.893333pt;}
.y1f_c00230{bottom:858.640000pt;}
.y20_c00230{bottom:859.026667pt;}
.y16_c00230{bottom:873.106667pt;}
.y15_c00230{bottom:873.306667pt;}
.y18_c00230{bottom:874.066667pt;}
.y13_c00230{bottom:875.026667pt;}
.y14_c00230{bottom:875.226667pt;}
.y19_c00230{bottom:875.973333pt;}
.y17_c00230{bottom:876.360000pt;}
.y11_c00230{bottom:890.440000pt;}
.y10_c00230{bottom:892.360000pt;}
.y12_c00230{bottom:892.560000pt;}
.yb_c00230{bottom:907.773333pt;}
.ye_c00230{bottom:908.733333pt;}
.yd_c00230{bottom:909.106667pt;}
.yc_c00230{bottom:909.693333pt;}
.yf_c00230{bottom:909.893333pt;}
.ya_c00230{bottom:910.640000pt;}
.y9_c00230{bottom:911.026667pt;}
.y5_c00230{bottom:926.440000pt;}
.y8_c00230{bottom:927.226667pt;}
.y7_c00230{bottom:927.400000pt;}
.y6_c00230{bottom:927.973333pt;}
.y4_c00230{bottom:928.360000pt;}
.y3_c00230{bottom:943.773333pt;}
.y2_c00230{bottom:945.693333pt;}
.y1_c00230{bottom:979.600000pt;}
.hb_c00230{height:3.739141pt;}
.hd_c00230{height:12.988594pt;}
.h9_c00230{height:14.890964pt;}
.ha_c00230{height:20.224297pt;}
.h6_c00230{height:20.466875pt;}
.h1_c00230{height:22.303646pt;}
.hc_c00230{height:25.800208pt;}
.h4_c00230{height:27.879557pt;}
.h2_c00230{height:31.618698pt;}
.h5_c00230{height:35.357839pt;}
.h7_c00230{height:36.952031pt;}
.h3_c00230{height:39.031380pt;}
.h8_c00230{height:42.770521pt;}
.h0_c00230{height:1186.666667pt;}
.w0_c00230{width:782.666667pt;}
.x0_c00230{left:0.000000pt;}
.x11_c00230{left:134.666667pt;}
.x3_c00230{left:135.626667pt;}
.x9f_c00230{left:137.333333pt;}
.xab_c00230{left:138.666667pt;}
.x63_c00230{left:150.666667pt;}
.xd3_c00230{left:152.000000pt;}
.x82_c00230{left:153.706667pt;}
.x4_c00230{left:157.706667pt;}
.xbf_c00230{left:158.666667pt;}
.x39_c00230{left:162.666667pt;}
.xbb_c00230{left:167.040000pt;}
.x12_c00230{left:168.373333pt;}
.x20_c00230{left:176.000000pt;}
.xcf_c00230{left:178.666667pt;}
.x78_c00230{left:179.626667pt;}
.x5_c00230{left:180.960000pt;}
.x8f_c00230{left:182.666667pt;}
.x4f_c00230{left:184.000000pt;}
.x9a_c00230{left:185.333333pt;}
.x46_c00230{left:186.666667pt;}
.xa0_c00230{left:187.626667pt;}
.xca_c00230{left:190.666667pt;}
.x6d_c00230{left:193.706667pt;}
.xc2_c00230{left:194.666667pt;}
.x13_c00230{left:195.626667pt;}
.xb3_c00230{left:197.333333pt;}
.xb6_c00230{left:198.666667pt;}
.x61_c00230{left:200.000000pt;}
.x64_c00230{left:201.333333pt;}
.xc0_c00230{left:202.293333pt;}
.xd0_c00230{left:204.373333pt;}
.x47_c00230{left:205.706667pt;}
.x83_c00230{left:208.373333pt;}
.xa1_c00230{left:210.666667pt;}
.x5a_c00230{left:215.040000pt;}
.x6_c00230{left:217.706667pt;}
.x6e_c00230{left:218.666667pt;}
.x79_c00230{left:219.626667pt;}
.x21_c00230{left:223.626667pt;}
.x2d_c00230{left:228.000000pt;}
.x3a_c00230{left:228.960000pt;}
.x50_c00230{left:231.040000pt;}
.x62_c00230{left:232.960000pt;}
.xd2_c00230{left:234.666667pt;}
.xd1_c00230{left:236.373333pt;}
.x2e_c00230{left:240.000000pt;}
.x22_c00230{left:241.333333pt;}
.x90_c00230{left:249.333333pt;}
.x7_c00230{left:251.626667pt;}
.x14_c00230{left:253.706667pt;}
.x65_c00230{left:262.666667pt;}
.x23_c00230{left:264.000000pt;}
.x8_c00230{left:266.666667pt;}
.x91_c00230{left:269.333333pt;}
.x66_c00230{left:272.000000pt;}
.x84_c00230{left:273.706667pt;}
.x6f_c00230{left:275.040000pt;}
.x15_c00230{left:280.000000pt;}
.x7a_c00230{left:281.706667pt;}
.xac_c00230{left:282.666667pt;}
.x9_c00230{left:287.040000pt;}
.x67_c00230{left:288.000000pt;}
.x51_c00230{left:289.333333pt;}
.xa8_c00230{left:290.666667pt;}
.xc4_c00230{left:292.000000pt;}
.x2f_c00230{left:293.706667pt;}
.x5b_c00230{left:296.373333pt;}
.x24_c00230{left:300.000000pt;}
.x48_c00230{left:302.666667pt;}
.x3b_c00230{left:305.333333pt;}
.x16_c00230{left:308.960000pt;}
.x25_c00230{left:315.040000pt;}
.x85_c00230{left:316.000000pt;}
.x30_c00230{left:317.333333pt;}
.xa2_c00230{left:318.293333pt;}
.x92_c00230{left:319.626667pt;}
.xad_c00230{left:322.666667pt;}
.x52_c00230{left:323.626667pt;}
.xa9_c00230{left:326.666667pt;}
.xcb_c00230{left:328.000000pt;}
.x7b_c00230{left:329.333333pt;}
.xbd_c00230{left:330.666667pt;}
.xa3_c00230{left:332.000000pt;}
.x70_c00230{left:332.960000pt;}
.xa_c00230{left:334.666667pt;}
.x53_c00230{left:340.373333pt;}
.x17_c00230{left:341.706667pt;}
.x9b_c00230{left:342.666667pt;}
.x31_c00230{left:344.960000pt;}
.x86_c00230{left:346.666667pt;}
.x5c_c00230{left:348.373333pt;}
.x3c_c00230{left:352.000000pt;}
.xa4_c00230{left:353.333333pt;}
.x1_c00230{left:354.666667pt;}
.x68_c00230{left:357.333333pt;}
.x93_c00230{left:360.373333pt;}
.x54_c00230{left:364.000000pt;}
.xb4_c00230{left:366.666667pt;}
.x71_c00230{left:367.626667pt;}
.xb8_c00230{left:370.666667pt;}
.xc5_c00230{left:372.000000pt;}
.x18_c00230{left:373.333333pt;}
.x3d_c00230{left:375.040000pt;}
.xb_c00230{left:381.706667pt;}
.x87_c00230{left:385.333333pt;}
.x26_c00230{left:388.373333pt;}
.x49_c00230{left:391.040000pt;}
.x32_c00230{left:392.373333pt;}
.x55_c00230{left:397.333333pt;}
.x3e_c00230{left:401.706667pt;}
.xc_c00230{left:405.333333pt;}
.x72_c00230{left:406.293333pt;}
.x7c_c00230{left:408.000000pt;}
.xa5_c00230{left:410.293333pt;}
.xce_c00230{left:412.000000pt;}
.x5d_c00230{left:414.666667pt;}
.x33_c00230{left:416.373333pt;}
.x69_c00230{left:418.666667pt;}
.x19_c00230{left:420.000000pt;}
.x27_c00230{left:420.960000pt;}
.xa6_c00230{left:422.666667pt;}
.x3f_c00230{left:431.040000pt;}
.x73_c00230{left:436.373333pt;}
.x7d_c00230{left:437.333333pt;}
.x5e_c00230{left:444.000000pt;}
.x4a_c00230{left:445.333333pt;}
.xb7_c00230{left:446.666667pt;}
.x94_c00230{left:448.000000pt;}
.xcc_c00230{left:449.706667pt;}
.x34_c00230{left:451.040000pt;}
.xc6_c00230{left:452.000000pt;}
.x88_c00230{left:453.333333pt;}
.x9c_c00230{left:459.040000pt;}
.x1a_c00230{left:460.000000pt;}
.x74_c00230{left:461.333333pt;}
.x40_c00230{left:463.040000pt;}
.x28_c00230{left:464.000000pt;}
.x95_c00230{left:465.706667pt;}
.x56_c00230{left:468.373333pt;}
.x4b_c00230{left:471.040000pt;}
.x35_c00230{left:472.000000pt;}
.xa7_c00230{left:474.666667pt;}
.x7e_c00230{left:478.666667pt;}
.x29_c00230{left:481.706667pt;}
.x89_c00230{left:482.666667pt;}
.xd_c00230{left:484.000000pt;}
.x36_c00230{left:485.333333pt;}
.xaa_c00230{left:486.666667pt;}
.xc7_c00230{left:488.000000pt;}
.x1b_c00230{left:489.333333pt;}
.x96_c00230{left:495.626667pt;}
.x4c_c00230{left:505.706667pt;}
.x8a_c00230{left:506.666667pt;}
.x5f_c00230{left:508.960000pt;}
.x2a_c00230{left:513.706667pt;}
.x9d_c00230{left:514.666667pt;}
.xb1_c00230{left:518.666667pt;}
.xbe_c00230{left:520.373333pt;}
.xd4_c00230{left:521.706667pt;}
.xb9_c00230{left:522.666667pt;}
.x57_c00230{left:524.000000pt;}
.x75_c00230{left:524.960000pt;}
.x41_c00230{left:526.666667pt;}
.xcd_c00230{left:528.000000pt;}
.x1c_c00230{left:533.333333pt;}
.x8b_c00230{left:534.293333pt;}
.x37_c00230{left:537.333333pt;}
.x97_c00230{left:538.666667pt;}
.x58_c00230{left:542.666667pt;}
.x6a_c00230{left:547.040000pt;}
.x1d_c00230{left:548.373333pt;}
.xae_c00230{left:549.333333pt;}
.xe_c00230{left:552.000000pt;}
.x7f_c00230{left:553.333333pt;}
.x59_c00230{left:554.293333pt;}
.x4d_c00230{left:555.626667pt;}
.x42_c00230{left:558.293333pt;}
.xc8_c00230{left:560.000000pt;}
.x2b_c00230{left:562.666667pt;}
.x60_c00230{left:564.960000pt;}
.xf_c00230{left:566.293333pt;}
.x76_c00230{left:569.333333pt;}
.x43_c00230{left:577.333333pt;}
.x8c_c00230{left:582.293333pt;}
.x98_c00230{left:588.000000pt;}
.x6b_c00230{left:589.706667pt;}
.xaf_c00230{left:590.666667pt;}
.x10_c00230{left:593.333333pt;}
.xb5_c00230{left:594.666667pt;}
.x80_c00230{left:596.373333pt;}
.xc3_c00230{left:597.333333pt;}
.xba_c00230{left:598.666667pt;}
.x8d_c00230{left:600.000000pt;}
.x9e_c00230{left:601.333333pt;}
.x44_c00230{left:602.666667pt;}
.x38_c00230{left:605.333333pt;}
.x1e_c00230{left:608.000000pt;}
.x2c_c00230{left:609.333333pt;}
.x81_c00230{left:614.293333pt;}
.x99_c00230{left:616.000000pt;}
.x6c_c00230{left:617.333333pt;}
.x77_c00230{left:620.373333pt;}
.x8e_c00230{left:625.706667pt;}
.x2_c00230{left:627.040000pt;}
.x1f_c00230{left:628.373333pt;}
.x4e_c00230{left:629.706667pt;}
.xb2_c00230{left:634.666667pt;}
.xbc_c00230{left:636.373333pt;}
.xc1_c00230{left:637.706667pt;}
.x45_c00230{left:638.666667pt;}
.xc9_c00230{left:640.000000pt;}
.xb0_c00230{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_488d6490aa3d3697afd1c708.woff2')format("woff");}.ff1_c00231{font-family:ff1_c00231;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc0_c00231{transform:matrix(0.325210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325210,0.000000,0.000000,0.250000,0,0);}
.me3_c00231{transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);}
.m43_c00231{transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);}
.m97_c00231{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m73_c00231{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mec_c00231{transform:matrix(0.367227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367227,0.000000,0.000000,0.250000,0,0);}
.ma1_c00231{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.m76_c00231{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m9d_c00231{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m6e_c00231{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m4f_c00231{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m6b_c00231{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mdf_c00231{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.ma0_c00231{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.mbb_c00231{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m93_c00231{transform:matrix(0.378151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378151,0.000000,0.000000,0.250000,0,0);}
.mdb_c00231{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m36_c00231{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.ma4_c00231{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m69_c00231{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mdc_c00231{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mda_c00231{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.mbe_c00231{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m75_c00231{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m31_c00231{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m5a_c00231{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m21_c00231{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m89_c00231{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m96_c00231{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m98_c00231{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m33_c00231{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m92_c00231{transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);}
.m7a_c00231{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m1f_c00231{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mb6_c00231{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.mae_c00231{transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);}
.m39_c00231{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mc7_c00231{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m90_c00231{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m9c_c00231{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.md0_c00231{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.ma7_c00231{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.md5_c00231{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m52_c00231{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.meb_c00231{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.me7_c00231{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m37_c00231{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mc4_c00231{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m78_c00231{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m19_c00231{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m2a_c00231{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mb9_c00231{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.md7_c00231{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.mac_c00231{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.me6_c00231{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mc3_c00231{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.m91_c00231{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m8f_c00231{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m5e_c00231{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.mb3_c00231{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.md3_c00231{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m6f_c00231{transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);}
.md2_c00231{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.mf_c00231{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m55_c00231{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.ma8_c00231{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.mde_c00231{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m23_c00231{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mb4_c00231{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m28_c00231{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mb1_c00231{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mbd_c00231{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m70_c00231{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mc2_c00231{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.ma3_c00231{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.m8a_c00231{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mb0_c00231{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.mad_c00231{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.m72_c00231{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.me8_c00231{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.me0_c00231{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.mdd_c00231{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m7c_c00231{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m29_c00231{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mee_c00231{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m9f_c00231{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m45_c00231{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m63_c00231{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mef_c00231{transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);}
.md9_c00231{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m47_c00231{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m6_c00231{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m86_c00231{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.m50_c00231{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00231{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.mab_c00231{transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);}
.m6a_c00231{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m7e_c00231{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.m9e_c00231{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.m8c_c00231{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m94_c00231{transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);}
.mce_c00231{transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);}
.m7d_c00231{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m10_c00231{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m8d_c00231{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mb_c00231{transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);}
.m2c_c00231{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m56_c00231{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m3b_c00231{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.maa_c00231{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);}
.m18_c00231{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m62_c00231{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.ma_c00231{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m85_c00231{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m2f_c00231{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m4b_c00231{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m88_c00231{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m2b_c00231{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);}
.m49_c00231{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.ma5_c00231{transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);}
.m6d_c00231{transform:matrix(0.507780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507780,0.000000,0.000000,0.250000,0,0);}
.m3e_c00231{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.me2_c00231{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.maf_c00231{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m32_c00231{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m8b_c00231{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.md4_c00231{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m1c_c00231{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m53_c00231{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m25_c00231{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m61_c00231{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m74_c00231{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.mc1_c00231{transform:matrix(0.519944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519944,0.000000,0.000000,0.250000,0,0);}
.m66_c00231{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mea_c00231{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.mca_c00231{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.mcc_c00231{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m5f_c00231{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mb7_c00231{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m95_c00231{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m68_c00231{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mf0_c00231{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m34_c00231{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m60_c00231{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m41_c00231{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m9_c00231{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mcb_c00231{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.me_c00231{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mc_c00231{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.md8_c00231{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m79_c00231{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m35_c00231{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m26_c00231{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m7_c00231{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mcd_c00231{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m46_c00231{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m87_c00231{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mb5_c00231{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m7b_c00231{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m6c_c00231{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m99_c00231{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m81_c00231{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.mc5_c00231{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m27_c00231{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m8e_c00231{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.med_c00231{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m5b_c00231{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m5_c00231{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m7f_c00231{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m24_c00231{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.md_c00231{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.me1_c00231{transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);}
.mbf_c00231{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m2_c00231{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m16_c00231{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m83_c00231{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mc8_c00231{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.me5_c00231{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m3a_c00231{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m4_c00231{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m2e_c00231{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.md6_c00231{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mb8_c00231{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.mba_c00231{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m40_c00231{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.mc9_c00231{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m48_c00231{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m82_c00231{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m51_c00231{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m9a_c00231{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m1d_c00231{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.me4_c00231{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m20_c00231{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m5c_c00231{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m38_c00231{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.ma2_c00231{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m42_c00231{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m13_c00231{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m15_c00231{transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);}
.m65_c00231{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m4d_c00231{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.ma9_c00231{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.md1_c00231{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);}
.m80_c00231{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m12_c00231{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.m59_c00231{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m1b_c00231{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m17_c00231{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m11_c00231{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m3d_c00231{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m4e_c00231{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.ma6_c00231{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m77_c00231{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m22_c00231{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m30_c00231{transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);}
.me9_c00231{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.mb2_c00231{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m14_c00231{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m0_c00231{transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662660,0.000000,0.000000,0.250000,0,0);}
.m58_c00231{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m1e_c00231{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m2d_c00231{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m1_c00231{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m1a_c00231{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m84_c00231{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m4c_c00231{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.m9b_c00231{transform:matrix(0.710588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710588,0.000000,0.000000,0.250000,0,0);}
.mcf_c00231{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m3_c00231{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m54_c00231{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mc6_c00231{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m44_c00231{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m64_c00231{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m5d_c00231{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m3f_c00231{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m8_c00231{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m57_c00231{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m71_c00231{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m3c_c00231{transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);}
.mbc_c00231{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m67_c00231{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws2_c00231{word-spacing:-16.889280px;}
.ws1_c00231{word-spacing:-3.944394px;}
.ws0_c00231{word-spacing:-1.611816px;}
.ws3_c00231{word-spacing:0.000000px;}
._0_c00231{width:6.955165px;}
.fc0_c00231{color:transparent;}
.fs6_c00231{font-size:3.420000px;}
.fs0_c00231{font-size:18.720000px;}
.fs7_c00231{font-size:20.400000px;}
.fs4_c00231{font-size:25.500000px;}
.fs1_c00231{font-size:28.920000px;}
.fs2_c00231{font-size:32.340000px;}
.fs3_c00231{font-size:35.700000px;}
.fs5_c00231{font-size:39.120000px;}
.y0_c00231{bottom:0.000000px;}
.yc5_c00231{bottom:251.745000px;}
.yca_c00231{bottom:253.245000px;}
.yc6_c00231{bottom:253.905000px;}
.yc9_c00231{bottom:254.130000px;}
.yc8_c00231{bottom:254.325000px;}
.yc7_c00231{bottom:255.405000px;}
.yc0_c00231{bottom:271.245000px;}
.yc3_c00231{bottom:271.905000px;}
.yc2_c00231{bottom:272.745000px;}
.yc1_c00231{bottom:274.905000px;}
.yc4_c00231{bottom:276.405000px;}
.yb8_c00231{bottom:289.905000px;}
.ybb_c00231{bottom:292.245000px;}
.yba_c00231{bottom:292.905000px;}
.yb9_c00231{bottom:293.130000px;}
.ybf_c00231{bottom:293.550000px;}
.ybe_c00231{bottom:293.745000px;}
.ybc_c00231{bottom:294.405000px;}
.ybd_c00231{bottom:295.905000px;}
.yb4_c00231{bottom:310.680000px;}
.yb7_c00231{bottom:313.245000px;}
.yb2_c00231{bottom:313.470000px;}
.yb3_c00231{bottom:313.905000px;}
.yb5_c00231{bottom:314.970000px;}
.yb6_c00231{bottom:315.405000px;}
.yb1_c00231{bottom:330.405000px;}
.yad_c00231{bottom:331.245000px;}
.yb0_c00231{bottom:332.745000px;}
.yac_c00231{bottom:333.405000px;}
.yae_c00231{bottom:333.630000px;}
.yaf_c00231{bottom:334.905000px;}
.ya7_c00231{bottom:350.745000px;}
.yaa_c00231{bottom:351.825000px;}
.ya8_c00231{bottom:352.245000px;}
.ya6_c00231{bottom:352.905000px;}
.ya5_c00231{bottom:353.130000px;}
.yab_c00231{bottom:353.970000px;}
.ya9_c00231{bottom:354.405000px;}
.ya2_c00231{bottom:370.245000px;}
.ya3_c00231{bottom:371.745000px;}
.y9e_c00231{bottom:372.405000px;}
.ya1_c00231{bottom:373.470000px;}
.y9f_c00231{bottom:373.905000px;}
.ya0_c00231{bottom:373.920000px;}
.ya4_c00231{bottom:375.405000px;}
.y9d_c00231{bottom:392.325000px;}
.y9b_c00231{bottom:393.405000px;}
.y9c_c00231{bottom:394.470000px;}
.y98_c00231{bottom:410.745000px;}
.y96_c00231{bottom:412.905000px;}
.y99_c00231{bottom:413.325000px;}
.y97_c00231{bottom:413.970000px;}
.y9a_c00231{bottom:414.405000px;}
.y95_c00231{bottom:430.245000px;}
.y92_c00231{bottom:431.325000px;}
.y90_c00231{bottom:432.405000px;}
.y93_c00231{bottom:432.630000px;}
.y91_c00231{bottom:433.470000px;}
.y94_c00231{bottom:433.905000px;}
.y8d_c00231{bottom:448.905000px;}
.y8f_c00231{bottom:451.245000px;}
.y8e_c00231{bottom:451.905000px;}
.y8b_c00231{bottom:453.405000px;}
.y8c_c00231{bottom:453.420000px;}
.y8a_c00231{bottom:470.745000px;}
.y88_c00231{bottom:471.630000px;}
.y87_c00231{bottom:472.905000px;}
.y89_c00231{bottom:472.920000px;}
.y86_c00231{bottom:488.325000px;}
.y80_c00231{bottom:490.245000px;}
.y83_c00231{bottom:490.470000px;}
.y85_c00231{bottom:491.130000px;}
.y82_c00231{bottom:491.325000px;}
.y84_c00231{bottom:492.405000px;}
.y81_c00231{bottom:492.420000px;}
.y7e_c00231{bottom:509.745000px;}
.y7f_c00231{bottom:511.905000px;}
.y78_c00231{bottom:529.245000px;}
.y7c_c00231{bottom:530.745000px;}
.y7b_c00231{bottom:531.405000px;}
.y79_c00231{bottom:531.420000px;}
.y7a_c00231{bottom:532.470000px;}
.y7d_c00231{bottom:532.905000px;}
.y72_c00231{bottom:555.825000px;}
.y77_c00231{bottom:556.470000px;}
.y73_c00231{bottom:556.905000px;}
.y74_c00231{bottom:557.325000px;}
.y76_c00231{bottom:557.550000px;}
.y70_c00231{bottom:557.970000px;}
.y75_c00231{bottom:558.405000px;}
.y71_c00231{bottom:559.050000px;}
.y6f_c00231{bottom:575.970000px;}
.y6d_c00231{bottom:576.825000px;}
.y6c_c00231{bottom:577.905000px;}
.y6e_c00231{bottom:580.050000px;}
.y6b_c00231{bottom:604.245000px;}
.y6a_c00231{bottom:605.970000px;}
.y69_c00231{bottom:606.405000px;}
.y67_c00231{bottom:646.245000px;}
.y68_c00231{bottom:647.745000px;}
.y65_c00231{bottom:649.905000px;}
.y66_c00231{bottom:650.970000px;}
.y64_c00231{bottom:667.245000px;}
.y62_c00231{bottom:668.130000px;}
.y63_c00231{bottom:668.325000px;}
.y61_c00231{bottom:669.405000px;}
.y60_c00231{bottom:686.745000px;}
.y5f_c00231{bottom:688.905000px;}
.y5e_c00231{bottom:689.130000px;}
.y59_c00231{bottom:706.245000px;}
.y5b_c00231{bottom:707.325000px;}
.y58_c00231{bottom:708.405000px;}
.y5d_c00231{bottom:708.630000px;}
.y5a_c00231{bottom:709.470000px;}
.y5c_c00231{bottom:709.905000px;}
.y55_c00231{bottom:724.905000px;}
.y57_c00231{bottom:726.825000px;}
.y54_c00231{bottom:727.245000px;}
.y52_c00231{bottom:727.905000px;}
.y53_c00231{bottom:728.130000px;}
.y56_c00231{bottom:729.405000px;}
.y4e_c00231{bottom:746.745000px;}
.y4d_c00231{bottom:747.405000px;}
.y50_c00231{bottom:747.825000px;}
.y4f_c00231{bottom:748.905000px;}
.y51_c00231{bottom:749.130000px;}
.y4b_c00231{bottom:764.970000px;}
.y49_c00231{bottom:766.245000px;}
.y4c_c00231{bottom:767.130000px;}
.y4a_c00231{bottom:768.405000px;}
.y48_c00231{bottom:785.325000px;}
.y46_c00231{bottom:785.745000px;}
.y47_c00231{bottom:786.630000px;}
.y45_c00231{bottom:786.825000px;}
.y44_c00231{bottom:787.905000px;}
.y42_c00231{bottom:804.405000px;}
.y41_c00231{bottom:805.245000px;}
.y3f_c00231{bottom:807.405000px;}
.y43_c00231{bottom:807.630000px;}
.y40_c00231{bottom:808.920000px;}
.y3c_c00231{bottom:824.745000px;}
.y3b_c00231{bottom:826.905000px;}
.y3d_c00231{bottom:827.130000px;}
.y3e_c00231{bottom:827.970000px;}
.y38_c00231{bottom:843.405000px;}
.y39_c00231{bottom:844.470000px;}
.y36_c00231{bottom:845.745000px;}
.y3a_c00231{bottom:846.630000px;}
.y37_c00231{bottom:847.905000px;}
.y31_c00231{bottom:863.970000px;}
.y30_c00231{bottom:864.405000px;}
.y34_c00231{bottom:865.245000px;}
.y33_c00231{bottom:866.130000px;}
.y35_c00231{bottom:867.405000px;}
.y32_c00231{bottom:868.470000px;}
.y2f_c00231{bottom:883.905000px;}
.y2d_c00231{bottom:884.325000px;}
.y2b_c00231{bottom:884.745000px;}
.y2e_c00231{bottom:885.630000px;}
.y2c_c00231{bottom:886.905000px;}
.y2a_c00231{bottom:887.970000px;}
.y29_c00231{bottom:905.130000px;}
.y27_c00231{bottom:906.405000px;}
.y28_c00231{bottom:907.470000px;}
.y26_c00231{bottom:922.905000px;}
.y25_c00231{bottom:923.745000px;}
.y23_c00231{bottom:924.180000px;}
.y22_c00231{bottom:925.470000px;}
.y21_c00231{bottom:925.905000px;}
.y24_c00231{bottom:926.130000px;}
.y1e_c00231{bottom:941.970000px;}
.y1f_c00231{bottom:942.405000px;}
.y20_c00231{bottom:944.130000px;}
.y1c_c00231{bottom:944.970000px;}
.y1b_c00231{bottom:945.405000px;}
.y1d_c00231{bottom:945.630000px;}
.y19_c00231{bottom:962.745000px;}
.y18_c00231{bottom:964.905000px;}
.y1a_c00231{bottom:965.970000px;}
.y17_c00231{bottom:983.745000px;}
.y14_c00231{bottom:984.405000px;}
.y16_c00231{bottom:985.470000px;}
.y15_c00231{bottom:985.905000px;}
.y12_c00231{bottom:1002.825000px;}
.y11_c00231{bottom:1003.245000px;}
.yf_c00231{bottom:1003.905000px;}
.y13_c00231{bottom:1004.970000px;}
.y10_c00231{bottom:1005.405000px;}
.yd_c00231{bottom:1022.745000px;}
.ya_c00231{bottom:1023.405000px;}
.yc_c00231{bottom:1023.630000px;}
.ye_c00231{bottom:1024.470000px;}
.yb_c00231{bottom:1024.905000px;}
.y9_c00231{bottom:1042.245000px;}
.y6_c00231{bottom:1042.905000px;}
.y7_c00231{bottom:1043.970000px;}
.y8_c00231{bottom:1044.405000px;}
.y5_c00231{bottom:1061.745000px;}
.y3_c00231{bottom:1062.630000px;}
.y4_c00231{bottom:1062.825000px;}
.y2_c00231{bottom:1063.905000px;}
.y1_c00231{bottom:1103.130000px;}
.h7_c00231{height:4.206533px;}
.h1_c00231{height:23.025234px;}
.h8_c00231{height:25.091602px;}
.h5_c00231{height:31.364502px;}
.h2_c00231{height:35.571035px;}
.h3_c00231{height:39.777568px;}
.h4_c00231{height:43.910303px;}
.h6_c00231{height:48.116836px;}
.h0_c00231{height:1335.000000px;}
.w0_c00231{width:880.500000px;}
.x0_c00231{left:0.000000px;}
.xb7_c00231{left:151.500000px;}
.x3_c00231{left:153.000000px;}
.x2_c00231{left:154.500000px;}
.xd9_c00231{left:166.500000px;}
.xc4_c00231{left:168.000000px;}
.x12_c00231{left:169.500000px;}
.x72_c00231{left:171.000000px;}
.x7c_c00231{left:172.500000px;}
.xbe_c00231{left:174.000000px;}
.x55_c00231{left:178.500000px;}
.x3c_c00231{left:180.000000px;}
.xb8_c00231{left:181.500000px;}
.x21_c00231{left:182.580000px;}
.xfd_c00231{left:186.000000px;}
.x13_c00231{left:187.920000px;}
.xca_c00231{left:189.420000px;}
.x30_c00231{left:195.000000px;}
.x4_c00231{left:198.000000px;}
.x56_c00231{left:199.080000px;}
.x69_c00231{left:200.580000px;}
.xc5_c00231{left:202.500000px;}
.x7d_c00231{left:208.080000px;}
.x57_c00231{left:210.000000px;}
.xbf_c00231{left:211.920000px;}
.xcb_c00231{left:213.000000px;}
.xa5_c00231{left:215.580000px;}
.xed_c00231{left:217.080000px;}
.x5_c00231{left:219.420000px;}
.x90_c00231{left:220.500000px;}
.x49_c00231{left:223.080000px;}
.x96_c00231{left:225.420000px;}
.x87_c00231{left:226.500000px;}
.x22_c00231{left:228.000000px;}
.xae_c00231{left:229.920000px;}
.x5f_c00231{left:233.580000px;}
.xa6_c00231{left:235.500000px;}
.x7e_c00231{left:237.000000px;}
.x92_c00231{left:238.500000px;}
.xcc_c00231{left:240.000000px;}
.x14_c00231{left:243.000000px;}
.x73_c00231{left:244.080000px;}
.x58_c00231{left:246.000000px;}
.x7f_c00231{left:249.000000px;}
.x31_c00231{left:250.500000px;}
.xc6_c00231{left:252.000000px;}
.xb9_c00231{left:253.500000px;}
.x6_c00231{left:256.500000px;}
.x23_c00231{left:259.500000px;}
.xaf_c00231{left:261.420000px;}
.x60_c00231{left:262.500000px;}
.x3d_c00231{left:264.000000px;}
.x59_c00231{left:265.920000px;}
.x9d_c00231{left:267.420000px;}
.xde_c00231{left:268.500000px;}
.xc0_c00231{left:269.580000px;}
.x6a_c00231{left:273.000000px;}
.x104_c00231{left:274.920000px;}
.x80_c00231{left:277.500000px;}
.x15_c00231{left:278.580000px;}
.xe3_c00231{left:280.500000px;}
.x32_c00231{left:283.080000px;}
.x88_c00231{left:286.080000px;}
.xb0_c00231{left:288.420000px;}
.x74_c00231{left:289.500000px;}
.x4a_c00231{left:291.000000px;}
.x91_c00231{left:294.000000px;}
.x7_c00231{left:295.500000px;}
.x97_c00231{left:298.500000px;}
.x61_c00231{left:300.000000px;}
.xd2_c00231{left:301.500000px;}
.xf3_c00231{left:303.000000px;}
.x3e_c00231{left:307.500000px;}
.xfa_c00231{left:310.500000px;}
.x24_c00231{left:313.500000px;}
.x6b_c00231{left:314.580000px;}
.x16_c00231{left:316.920000px;}
.x93_c00231{left:319.080000px;}
.xc7_c00231{left:321.000000px;}
.xe6_c00231{left:322.080000px;}
.x3f_c00231{left:323.580000px;}
.x100_c00231{left:325.500000px;}
.xb1_c00231{left:328.080000px;}
.x105_c00231{left:330.000000px;}
.x25_c00231{left:331.920000px;}
.x8_c00231{left:333.420000px;}
.x9e_c00231{left:336.420000px;}
.xd5_c00231{left:338.580000px;}
.xc1_c00231{left:340.920000px;}
.xba_c00231{left:342.000000px;}
.x17_c00231{left:343.920000px;}
.x89_c00231{left:345.000000px;}
.x98_c00231{left:346.500000px;}
.x5a_c00231{left:348.420000px;}
.xe7_c00231{left:349.500000px;}
.x33_c00231{left:352.500000px;}
.x81_c00231{left:354.420000px;}
.xa7_c00231{left:357.000000px;}
.x26_c00231{left:358.500000px;}
.x10a_c00231{left:360.420000px;}
.x4b_c00231{left:363.000000px;}
.xcd_c00231{left:364.920000px;}
.x8a_c00231{left:366.000000px;}
.x75_c00231{left:367.920000px;}
.xc2_c00231{left:369.000000px;}
.xee_c00231{left:370.500000px;}
.x40_c00231{left:372.420000px;}
.x82_c00231{left:374.580000px;}
.x9_c00231{left:376.500000px;}
.xd3_c00231{left:380.580000px;}
.x106_c00231{left:382.500000px;}
.xfb_c00231{left:384.000000px;}
.x5b_c00231{left:385.080000px;}
.x4c_c00231{left:388.920000px;}
.x18_c00231{left:391.080000px;}
.xa_c00231{left:394.080000px;}
.x94_c00231{left:399.000000px;}
.x62_c00231{left:400.080000px;}
.x1_c00231{left:402.000000px;}
.xda_c00231{left:403.500000px;}
.x6c_c00231{left:405.000000px;}
.x34_c00231{left:408.000000px;}
.x27_c00231{left:409.500000px;}
.x5c_c00231{left:411.000000px;}
.xd6_c00231{left:412.080000px;}
.xdf_c00231{left:414.000000px;}
.x99_c00231{left:415.500000px;}
.x63_c00231{left:418.500000px;}
.xb2_c00231{left:420.000000px;}
.x9f_c00231{left:421.500000px;}
.x19_c00231{left:423.000000px;}
.xf5_c00231{left:427.080000px;}
.x5d_c00231{left:430.080000px;}
.xb3_c00231{left:432.000000px;}
.x10b_c00231{left:433.500000px;}
.x4d_c00231{left:436.080000px;}
.xa0_c00231{left:438.420000px;}
.xe0_c00231{left:439.920000px;}
.x8b_c00231{left:442.920000px;}
.xb_c00231{left:444.420000px;}
.xef_c00231{left:445.500000px;}
.x41_c00231{left:447.000000px;}
.x1a_c00231{left:450.000000px;}
.xa8_c00231{left:452.145000px;}
.x4e_c00231{left:453.420000px;}
.xbb_c00231{left:454.500000px;}
.x5e_c00231{left:456.000000px;}
.xc8_c00231{left:457.080000px;}
.xd4_c00231{left:458.580000px;}
.xdb_c00231{left:460.080000px;}
.xce_c00231{left:462.420000px;}
.xd7_c00231{left:465.420000px;}
.x42_c00231{left:466.920000px;}
.x6d_c00231{left:472.500000px;}
.xe1_c00231{left:474.000000px;}
.xc3_c00231{left:475.920000px;}
.xa1_c00231{left:477.000000px;}
.x4f_c00231{left:478.500000px;}
.x28_c00231{left:480.420000px;}
.xe8_c00231{left:485.580000px;}
.xc_c00231{left:487.080000px;}
.x76_c00231{left:489.000000px;}
.x83_c00231{left:490.920000px;}
.xd8_c00231{left:492.000000px;}
.x43_c00231{left:495.000000px;}
.xf6_c00231{left:497.580000px;}
.x1b_c00231{left:501.000000px;}
.xe4_c00231{left:502.080000px;}
.xb4_c00231{left:503.580000px;}
.x29_c00231{left:507.000000px;}
.xa9_c00231{left:509.580000px;}
.xf0_c00231{left:511.080000px;}
.x64_c00231{left:513.000000px;}
.x8c_c00231{left:514.080000px;}
.xcf_c00231{left:516.000000px;}
.xe5_c00231{left:517.080000px;}
.xd_c00231{left:522.000000px;}
.x35_c00231{left:523.920000px;}
.x77_c00231{left:526.500000px;}
.x107_c00231{left:529.500000px;}
.x84_c00231{left:532.080000px;}
.x50_c00231{left:534.420000px;}
.x6e_c00231{left:535.500000px;}
.x78_c00231{left:538.920000px;}
.x44_c00231{left:540.420000px;}
.xea_c00231{left:541.920000px;}
.x9a_c00231{left:543.000000px;}
.xdc_c00231{left:545.145000px;}
.xf7_c00231{left:546.420000px;}
.xaa_c00231{left:547.500000px;}
.x2a_c00231{left:550.500000px;}
.xd0_c00231{left:551.580000px;}
.xb5_c00231{left:553.500000px;}
.xe9_c00231{left:555.000000px;}
.x101_c00231{left:556.080000px;}
.xf4_c00231{left:557.580000px;}
.x36_c00231{left:561.420000px;}
.xa2_c00231{left:567.420000px;}
.xe_c00231{left:568.920000px;}
.x51_c00231{left:570.420000px;}
.x1c_c00231{left:571.500000px;}
.xe2_c00231{left:573.000000px;}
.xf1_c00231{left:574.920000px;}
.x85_c00231{left:576.420000px;}
.x45_c00231{left:577.500000px;}
.xfe_c00231{left:580.500000px;}
.x6f_c00231{left:582.000000px;}
.xfc_c00231{left:583.500000px;}
.x65_c00231{left:585.000000px;}
.x1d_c00231{left:586.500000px;}
.x37_c00231{left:589.080000px;}
.x2b_c00231{left:590.580000px;}
.xbc_c00231{left:592.500000px;}
.x102_c00231{left:594.000000px;}
.xf_c00231{left:595.920000px;}
.x46_c00231{left:597.420000px;}
.x108_c00231{left:598.500000px;}
.xdd_c00231{left:599.580000px;}
.x9b_c00231{left:601.500000px;}
.x1e_c00231{left:603.000000px;}
.x66_c00231{left:610.920000px;}
.xeb_c00231{left:612.000000px;}
.x52_c00231{left:613.500000px;}
.x70_c00231{left:616.080000px;}
.x8d_c00231{left:619.080000px;}
.xd1_c00231{left:621.000000px;}
.xa3_c00231{left:622.080000px;}
.x38_c00231{left:623.580000px;}
.x47_c00231{left:625.920000px;}
.x10_c00231{left:627.000000px;}
.xf8_c00231{left:628.920000px;}
.x53_c00231{left:631.500000px;}
.xec_c00231{left:632.580000px;}
.x86_c00231{left:634.920000px;}
.x2c_c00231{left:636.000000px;}
.xab_c00231{left:637.500000px;}
.x10c_c00231{left:639.000000px;}
.x39_c00231{left:643.920000px;}
.x1f_c00231{left:645.000000px;}
.x8e_c00231{left:649.920000px;}
.x67_c00231{left:651.000000px;}
.xac_c00231{left:652.500000px;}
.xa4_c00231{left:654.000000px;}
.x2d_c00231{left:655.920000px;}
.x54_c00231{left:657.000000px;}
.xc9_c00231{left:658.500000px;}
.x9c_c00231{left:659.580000px;}
.x79_c00231{left:661.080000px;}
.xf9_c00231{left:665.580000px;}
.x68_c00231{left:667.500000px;}
.x11_c00231{left:669.000000px;}
.x3a_c00231{left:670.500000px;}
.x71_c00231{left:675.420000px;}
.xbd_c00231{left:676.500000px;}
.xff_c00231{left:681.420000px;}
.x7a_c00231{left:682.500000px;}
.x48_c00231{left:688.500000px;}
.x2e_c00231{left:690.000000px;}
.xf2_c00231{left:691.500000px;}
.x10d_c00231{left:692.580000px;}
.x103_c00231{left:694.500000px;}
.xad_c00231{left:695.775000px;}
.xb6_c00231{left:697.500000px;}
.x20_c00231{left:699.420000px;}
.x7b_c00231{left:700.500000px;}
.x8f_c00231{left:705.000000px;}
.x2f_c00231{left:709.920000px;}
.x109_c00231{left:711.000000px;}
.x95_c00231{left:714.000000px;}
.x3b_c00231{left:717.000000px;}
@media print{
.v0_c00231{vertical-align:0.000000pt;}
.ls0_c00231{letter-spacing:0.000000pt;}
.ws2_c00231{word-spacing:-15.012693pt;}
.ws1_c00231{word-spacing:-3.506128pt;}
.ws0_c00231{word-spacing:-1.432725pt;}
.ws3_c00231{word-spacing:0.000000pt;}
._0_c00231{width:6.182369pt;}
.fs6_c00231{font-size:3.040000pt;}
.fs0_c00231{font-size:16.640000pt;}
.fs7_c00231{font-size:18.133333pt;}
.fs4_c00231{font-size:22.666667pt;}
.fs1_c00231{font-size:25.706667pt;}
.fs2_c00231{font-size:28.746667pt;}
.fs3_c00231{font-size:31.733333pt;}
.fs5_c00231{font-size:34.773333pt;}
.y0_c00231{bottom:0.000000pt;}
.yc5_c00231{bottom:223.773333pt;}
.yca_c00231{bottom:225.106667pt;}
.yc6_c00231{bottom:225.693333pt;}
.yc9_c00231{bottom:225.893333pt;}
.yc8_c00231{bottom:226.066667pt;}
.yc7_c00231{bottom:227.026667pt;}
.yc0_c00231{bottom:241.106667pt;}
.yc3_c00231{bottom:241.693333pt;}
.yc2_c00231{bottom:242.440000pt;}
.yc1_c00231{bottom:244.360000pt;}
.yc4_c00231{bottom:245.693333pt;}
.yb8_c00231{bottom:257.693333pt;}
.ybb_c00231{bottom:259.773333pt;}
.yba_c00231{bottom:260.360000pt;}
.yb9_c00231{bottom:260.560000pt;}
.ybf_c00231{bottom:260.933333pt;}
.ybe_c00231{bottom:261.106667pt;}
.ybc_c00231{bottom:261.693333pt;}
.ybd_c00231{bottom:263.026667pt;}
.yb4_c00231{bottom:276.160000pt;}
.yb7_c00231{bottom:278.440000pt;}
.yb2_c00231{bottom:278.640000pt;}
.yb3_c00231{bottom:279.026667pt;}
.yb5_c00231{bottom:279.973333pt;}
.yb6_c00231{bottom:280.360000pt;}
.yb1_c00231{bottom:293.693333pt;}
.yad_c00231{bottom:294.440000pt;}
.yb0_c00231{bottom:295.773333pt;}
.yac_c00231{bottom:296.360000pt;}
.yae_c00231{bottom:296.560000pt;}
.yaf_c00231{bottom:297.693333pt;}
.ya7_c00231{bottom:311.773333pt;}
.yaa_c00231{bottom:312.733333pt;}
.ya8_c00231{bottom:313.106667pt;}
.ya6_c00231{bottom:313.693333pt;}
.ya5_c00231{bottom:313.893333pt;}
.yab_c00231{bottom:314.640000pt;}
.ya9_c00231{bottom:315.026667pt;}
.ya2_c00231{bottom:329.106667pt;}
.ya3_c00231{bottom:330.440000pt;}
.y9e_c00231{bottom:331.026667pt;}
.ya1_c00231{bottom:331.973333pt;}
.y9f_c00231{bottom:332.360000pt;}
.ya0_c00231{bottom:332.373333pt;}
.ya4_c00231{bottom:333.693333pt;}
.y9d_c00231{bottom:348.733333pt;}
.y9b_c00231{bottom:349.693333pt;}
.y9c_c00231{bottom:350.640000pt;}
.y98_c00231{bottom:365.106667pt;}
.y96_c00231{bottom:367.026667pt;}
.y99_c00231{bottom:367.400000pt;}
.y97_c00231{bottom:367.973333pt;}
.y9a_c00231{bottom:368.360000pt;}
.y95_c00231{bottom:382.440000pt;}
.y92_c00231{bottom:383.400000pt;}
.y90_c00231{bottom:384.360000pt;}
.y93_c00231{bottom:384.560000pt;}
.y91_c00231{bottom:385.306667pt;}
.y94_c00231{bottom:385.693333pt;}
.y8d_c00231{bottom:399.026667pt;}
.y8f_c00231{bottom:401.106667pt;}
.y8e_c00231{bottom:401.693333pt;}
.y8b_c00231{bottom:403.026667pt;}
.y8c_c00231{bottom:403.040000pt;}
.y8a_c00231{bottom:418.440000pt;}
.y88_c00231{bottom:419.226667pt;}
.y87_c00231{bottom:420.360000pt;}
.y89_c00231{bottom:420.373333pt;}
.y86_c00231{bottom:434.066667pt;}
.y80_c00231{bottom:435.773333pt;}
.y83_c00231{bottom:435.973333pt;}
.y85_c00231{bottom:436.560000pt;}
.y82_c00231{bottom:436.733333pt;}
.y84_c00231{bottom:437.693333pt;}
.y81_c00231{bottom:437.706667pt;}
.y7e_c00231{bottom:453.106667pt;}
.y7f_c00231{bottom:455.026667pt;}
.y78_c00231{bottom:470.440000pt;}
.y7c_c00231{bottom:471.773333pt;}
.y7b_c00231{bottom:472.360000pt;}
.y79_c00231{bottom:472.373333pt;}
.y7a_c00231{bottom:473.306667pt;}
.y7d_c00231{bottom:473.693333pt;}
.y72_c00231{bottom:494.066667pt;}
.y77_c00231{bottom:494.640000pt;}
.y73_c00231{bottom:495.026667pt;}
.y74_c00231{bottom:495.400000pt;}
.y76_c00231{bottom:495.600000pt;}
.y70_c00231{bottom:495.973333pt;}
.y75_c00231{bottom:496.360000pt;}
.y71_c00231{bottom:496.933333pt;}
.y6f_c00231{bottom:511.973333pt;}
.y6d_c00231{bottom:512.733333pt;}
.y6c_c00231{bottom:513.693333pt;}
.y6e_c00231{bottom:515.600000pt;}
.y6b_c00231{bottom:537.106667pt;}
.y6a_c00231{bottom:538.640000pt;}
.y69_c00231{bottom:539.026667pt;}
.y67_c00231{bottom:574.440000pt;}
.y68_c00231{bottom:575.773333pt;}
.y65_c00231{bottom:577.693333pt;}
.y66_c00231{bottom:578.640000pt;}
.y64_c00231{bottom:593.106667pt;}
.y62_c00231{bottom:593.893333pt;}
.y63_c00231{bottom:594.066667pt;}
.y61_c00231{bottom:595.026667pt;}
.y60_c00231{bottom:610.440000pt;}
.y5f_c00231{bottom:612.360000pt;}
.y5e_c00231{bottom:612.560000pt;}
.y59_c00231{bottom:627.773333pt;}
.y5b_c00231{bottom:628.733333pt;}
.y58_c00231{bottom:629.693333pt;}
.y5d_c00231{bottom:629.893333pt;}
.y5a_c00231{bottom:630.640000pt;}
.y5c_c00231{bottom:631.026667pt;}
.y55_c00231{bottom:644.360000pt;}
.y57_c00231{bottom:646.066667pt;}
.y54_c00231{bottom:646.440000pt;}
.y52_c00231{bottom:647.026667pt;}
.y53_c00231{bottom:647.226667pt;}
.y56_c00231{bottom:648.360000pt;}
.y4e_c00231{bottom:663.773333pt;}
.y4d_c00231{bottom:664.360000pt;}
.y50_c00231{bottom:664.733333pt;}
.y4f_c00231{bottom:665.693333pt;}
.y51_c00231{bottom:665.893333pt;}
.y4b_c00231{bottom:679.973333pt;}
.y49_c00231{bottom:681.106667pt;}
.y4c_c00231{bottom:681.893333pt;}
.y4a_c00231{bottom:683.026667pt;}
.y48_c00231{bottom:698.066667pt;}
.y46_c00231{bottom:698.440000pt;}
.y47_c00231{bottom:699.226667pt;}
.y45_c00231{bottom:699.400000pt;}
.y44_c00231{bottom:700.360000pt;}
.y42_c00231{bottom:715.026667pt;}
.y41_c00231{bottom:715.773333pt;}
.y3f_c00231{bottom:717.693333pt;}
.y43_c00231{bottom:717.893333pt;}
.y40_c00231{bottom:719.040000pt;}
.y3c_c00231{bottom:733.106667pt;}
.y3b_c00231{bottom:735.026667pt;}
.y3d_c00231{bottom:735.226667pt;}
.y3e_c00231{bottom:735.973333pt;}
.y38_c00231{bottom:749.693333pt;}
.y39_c00231{bottom:750.640000pt;}
.y36_c00231{bottom:751.773333pt;}
.y3a_c00231{bottom:752.560000pt;}
.y37_c00231{bottom:753.693333pt;}
.y31_c00231{bottom:767.973333pt;}
.y30_c00231{bottom:768.360000pt;}
.y34_c00231{bottom:769.106667pt;}
.y33_c00231{bottom:769.893333pt;}
.y35_c00231{bottom:771.026667pt;}
.y32_c00231{bottom:771.973333pt;}
.y2f_c00231{bottom:785.693333pt;}
.y2d_c00231{bottom:786.066667pt;}
.y2b_c00231{bottom:786.440000pt;}
.y2e_c00231{bottom:787.226667pt;}
.y2c_c00231{bottom:788.360000pt;}
.y2a_c00231{bottom:789.306667pt;}
.y29_c00231{bottom:804.560000pt;}
.y27_c00231{bottom:805.693333pt;}
.y28_c00231{bottom:806.640000pt;}
.y26_c00231{bottom:820.360000pt;}
.y25_c00231{bottom:821.106667pt;}
.y23_c00231{bottom:821.493333pt;}
.y22_c00231{bottom:822.640000pt;}
.y21_c00231{bottom:823.026667pt;}
.y24_c00231{bottom:823.226667pt;}
.y1e_c00231{bottom:837.306667pt;}
.y1f_c00231{bottom:837.693333pt;}
.y20_c00231{bottom:839.226667pt;}
.y1c_c00231{bottom:839.973333pt;}
.y1b_c00231{bottom:840.360000pt;}
.y1d_c00231{bottom:840.560000pt;}
.y19_c00231{bottom:855.773333pt;}
.y18_c00231{bottom:857.693333pt;}
.y1a_c00231{bottom:858.640000pt;}
.y17_c00231{bottom:874.440000pt;}
.y14_c00231{bottom:875.026667pt;}
.y16_c00231{bottom:875.973333pt;}
.y15_c00231{bottom:876.360000pt;}
.y12_c00231{bottom:891.400000pt;}
.y11_c00231{bottom:891.773333pt;}
.yf_c00231{bottom:892.360000pt;}
.y13_c00231{bottom:893.306667pt;}
.y10_c00231{bottom:893.693333pt;}
.yd_c00231{bottom:909.106667pt;}
.ya_c00231{bottom:909.693333pt;}
.yc_c00231{bottom:909.893333pt;}
.ye_c00231{bottom:910.640000pt;}
.yb_c00231{bottom:911.026667pt;}
.y9_c00231{bottom:926.440000pt;}
.y6_c00231{bottom:927.026667pt;}
.y7_c00231{bottom:927.973333pt;}
.y8_c00231{bottom:928.360000pt;}
.y5_c00231{bottom:943.773333pt;}
.y3_c00231{bottom:944.560000pt;}
.y4_c00231{bottom:944.733333pt;}
.y2_c00231{bottom:945.693333pt;}
.y1_c00231{bottom:980.560000pt;}
.h7_c00231{height:3.739141pt;}
.h1_c00231{height:20.466875pt;}
.h8_c00231{height:22.303646pt;}
.h5_c00231{height:27.879557pt;}
.h2_c00231{height:31.618698pt;}
.h3_c00231{height:35.357839pt;}
.h4_c00231{height:39.031380pt;}
.h6_c00231{height:42.770521pt;}
.h0_c00231{height:1186.666667pt;}
.w0_c00231{width:782.666667pt;}
.x0_c00231{left:0.000000pt;}
.xb7_c00231{left:134.666667pt;}
.x3_c00231{left:136.000000pt;}
.x2_c00231{left:137.333333pt;}
.xd9_c00231{left:148.000000pt;}
.xc4_c00231{left:149.333333pt;}
.x12_c00231{left:150.666667pt;}
.x72_c00231{left:152.000000pt;}
.x7c_c00231{left:153.333333pt;}
.xbe_c00231{left:154.666667pt;}
.x55_c00231{left:158.666667pt;}
.x3c_c00231{left:160.000000pt;}
.xb8_c00231{left:161.333333pt;}
.x21_c00231{left:162.293333pt;}
.xfd_c00231{left:165.333333pt;}
.x13_c00231{left:167.040000pt;}
.xca_c00231{left:168.373333pt;}
.x30_c00231{left:173.333333pt;}
.x4_c00231{left:176.000000pt;}
.x56_c00231{left:176.960000pt;}
.x69_c00231{left:178.293333pt;}
.xc5_c00231{left:180.000000pt;}
.x7d_c00231{left:184.960000pt;}
.x57_c00231{left:186.666667pt;}
.xbf_c00231{left:188.373333pt;}
.xcb_c00231{left:189.333333pt;}
.xa5_c00231{left:191.626667pt;}
.xed_c00231{left:192.960000pt;}
.x5_c00231{left:195.040000pt;}
.x90_c00231{left:196.000000pt;}
.x49_c00231{left:198.293333pt;}
.x96_c00231{left:200.373333pt;}
.x87_c00231{left:201.333333pt;}
.x22_c00231{left:202.666667pt;}
.xae_c00231{left:204.373333pt;}
.x5f_c00231{left:207.626667pt;}
.xa6_c00231{left:209.333333pt;}
.x7e_c00231{left:210.666667pt;}
.x92_c00231{left:212.000000pt;}
.xcc_c00231{left:213.333333pt;}
.x14_c00231{left:216.000000pt;}
.x73_c00231{left:216.960000pt;}
.x58_c00231{left:218.666667pt;}
.x7f_c00231{left:221.333333pt;}
.x31_c00231{left:222.666667pt;}
.xc6_c00231{left:224.000000pt;}
.xb9_c00231{left:225.333333pt;}
.x6_c00231{left:228.000000pt;}
.x23_c00231{left:230.666667pt;}
.xaf_c00231{left:232.373333pt;}
.x60_c00231{left:233.333333pt;}
.x3d_c00231{left:234.666667pt;}
.x59_c00231{left:236.373333pt;}
.x9d_c00231{left:237.706667pt;}
.xde_c00231{left:238.666667pt;}
.xc0_c00231{left:239.626667pt;}
.x6a_c00231{left:242.666667pt;}
.x104_c00231{left:244.373333pt;}
.x80_c00231{left:246.666667pt;}
.x15_c00231{left:247.626667pt;}
.xe3_c00231{left:249.333333pt;}
.x32_c00231{left:251.626667pt;}
.x88_c00231{left:254.293333pt;}
.xb0_c00231{left:256.373333pt;}
.x74_c00231{left:257.333333pt;}
.x4a_c00231{left:258.666667pt;}
.x91_c00231{left:261.333333pt;}
.x7_c00231{left:262.666667pt;}
.x97_c00231{left:265.333333pt;}
.x61_c00231{left:266.666667pt;}
.xd2_c00231{left:268.000000pt;}
.xf3_c00231{left:269.333333pt;}
.x3e_c00231{left:273.333333pt;}
.xfa_c00231{left:276.000000pt;}
.x24_c00231{left:278.666667pt;}
.x6b_c00231{left:279.626667pt;}
.x16_c00231{left:281.706667pt;}
.x93_c00231{left:283.626667pt;}
.xc7_c00231{left:285.333333pt;}
.xe6_c00231{left:286.293333pt;}
.x3f_c00231{left:287.626667pt;}
.x100_c00231{left:289.333333pt;}
.xb1_c00231{left:291.626667pt;}
.x105_c00231{left:293.333333pt;}
.x25_c00231{left:295.040000pt;}
.x8_c00231{left:296.373333pt;}
.x9e_c00231{left:299.040000pt;}
.xd5_c00231{left:300.960000pt;}
.xc1_c00231{left:303.040000pt;}
.xba_c00231{left:304.000000pt;}
.x17_c00231{left:305.706667pt;}
.x89_c00231{left:306.666667pt;}
.x98_c00231{left:308.000000pt;}
.x5a_c00231{left:309.706667pt;}
.xe7_c00231{left:310.666667pt;}
.x33_c00231{left:313.333333pt;}
.x81_c00231{left:315.040000pt;}
.xa7_c00231{left:317.333333pt;}
.x26_c00231{left:318.666667pt;}
.x10a_c00231{left:320.373333pt;}
.x4b_c00231{left:322.666667pt;}
.xcd_c00231{left:324.373333pt;}
.x8a_c00231{left:325.333333pt;}
.x75_c00231{left:327.040000pt;}
.xc2_c00231{left:328.000000pt;}
.xee_c00231{left:329.333333pt;}
.x40_c00231{left:331.040000pt;}
.x82_c00231{left:332.960000pt;}
.x9_c00231{left:334.666667pt;}
.xd3_c00231{left:338.293333pt;}
.x106_c00231{left:340.000000pt;}
.xfb_c00231{left:341.333333pt;}
.x5b_c00231{left:342.293333pt;}
.x4c_c00231{left:345.706667pt;}
.x18_c00231{left:347.626667pt;}
.xa_c00231{left:350.293333pt;}
.x94_c00231{left:354.666667pt;}
.x62_c00231{left:355.626667pt;}
.x1_c00231{left:357.333333pt;}
.xda_c00231{left:358.666667pt;}
.x6c_c00231{left:360.000000pt;}
.x34_c00231{left:362.666667pt;}
.x27_c00231{left:364.000000pt;}
.x5c_c00231{left:365.333333pt;}
.xd6_c00231{left:366.293333pt;}
.xdf_c00231{left:368.000000pt;}
.x99_c00231{left:369.333333pt;}
.x63_c00231{left:372.000000pt;}
.xb2_c00231{left:373.333333pt;}
.x9f_c00231{left:374.666667pt;}
.x19_c00231{left:376.000000pt;}
.xf5_c00231{left:379.626667pt;}
.x5d_c00231{left:382.293333pt;}
.xb3_c00231{left:384.000000pt;}
.x10b_c00231{left:385.333333pt;}
.x4d_c00231{left:387.626667pt;}
.xa0_c00231{left:389.706667pt;}
.xe0_c00231{left:391.040000pt;}
.x8b_c00231{left:393.706667pt;}
.xb_c00231{left:395.040000pt;}
.xef_c00231{left:396.000000pt;}
.x41_c00231{left:397.333333pt;}
.x1a_c00231{left:400.000000pt;}
.xa8_c00231{left:401.906667pt;}
.x4e_c00231{left:403.040000pt;}
.xbb_c00231{left:404.000000pt;}
.x5e_c00231{left:405.333333pt;}
.xc8_c00231{left:406.293333pt;}
.xd4_c00231{left:407.626667pt;}
.xdb_c00231{left:408.960000pt;}
.xce_c00231{left:411.040000pt;}
.xd7_c00231{left:413.706667pt;}
.x42_c00231{left:415.040000pt;}
.x6d_c00231{left:420.000000pt;}
.xe1_c00231{left:421.333333pt;}
.xc3_c00231{left:423.040000pt;}
.xa1_c00231{left:424.000000pt;}
.x4f_c00231{left:425.333333pt;}
.x28_c00231{left:427.040000pt;}
.xe8_c00231{left:431.626667pt;}
.xc_c00231{left:432.960000pt;}
.x76_c00231{left:434.666667pt;}
.x83_c00231{left:436.373333pt;}
.xd8_c00231{left:437.333333pt;}
.x43_c00231{left:440.000000pt;}
.xf6_c00231{left:442.293333pt;}
.x1b_c00231{left:445.333333pt;}
.xe4_c00231{left:446.293333pt;}
.xb4_c00231{left:447.626667pt;}
.x29_c00231{left:450.666667pt;}
.xa9_c00231{left:452.960000pt;}
.xf0_c00231{left:454.293333pt;}
.x64_c00231{left:456.000000pt;}
.x8c_c00231{left:456.960000pt;}
.xcf_c00231{left:458.666667pt;}
.xe5_c00231{left:459.626667pt;}
.xd_c00231{left:464.000000pt;}
.x35_c00231{left:465.706667pt;}
.x77_c00231{left:468.000000pt;}
.x107_c00231{left:470.666667pt;}
.x84_c00231{left:472.960000pt;}
.x50_c00231{left:475.040000pt;}
.x6e_c00231{left:476.000000pt;}
.x78_c00231{left:479.040000pt;}
.x44_c00231{left:480.373333pt;}
.xea_c00231{left:481.706667pt;}
.x9a_c00231{left:482.666667pt;}
.xdc_c00231{left:484.573333pt;}
.xf7_c00231{left:485.706667pt;}
.xaa_c00231{left:486.666667pt;}
.x2a_c00231{left:489.333333pt;}
.xd0_c00231{left:490.293333pt;}
.xb5_c00231{left:492.000000pt;}
.xe9_c00231{left:493.333333pt;}
.x101_c00231{left:494.293333pt;}
.xf4_c00231{left:495.626667pt;}
.x36_c00231{left:499.040000pt;}
.xa2_c00231{left:504.373333pt;}
.xe_c00231{left:505.706667pt;}
.x51_c00231{left:507.040000pt;}
.x1c_c00231{left:508.000000pt;}
.xe2_c00231{left:509.333333pt;}
.xf1_c00231{left:511.040000pt;}
.x85_c00231{left:512.373333pt;}
.x45_c00231{left:513.333333pt;}
.xfe_c00231{left:516.000000pt;}
.x6f_c00231{left:517.333333pt;}
.xfc_c00231{left:518.666667pt;}
.x65_c00231{left:520.000000pt;}
.x1d_c00231{left:521.333333pt;}
.x37_c00231{left:523.626667pt;}
.x2b_c00231{left:524.960000pt;}
.xbc_c00231{left:526.666667pt;}
.x102_c00231{left:528.000000pt;}
.xf_c00231{left:529.706667pt;}
.x46_c00231{left:531.040000pt;}
.x108_c00231{left:532.000000pt;}
.xdd_c00231{left:532.960000pt;}
.x9b_c00231{left:534.666667pt;}
.x1e_c00231{left:536.000000pt;}
.x66_c00231{left:543.040000pt;}
.xeb_c00231{left:544.000000pt;}
.x52_c00231{left:545.333333pt;}
.x70_c00231{left:547.626667pt;}
.x8d_c00231{left:550.293333pt;}
.xd1_c00231{left:552.000000pt;}
.xa3_c00231{left:552.960000pt;}
.x38_c00231{left:554.293333pt;}
.x47_c00231{left:556.373333pt;}
.x10_c00231{left:557.333333pt;}
.xf8_c00231{left:559.040000pt;}
.x53_c00231{left:561.333333pt;}
.xec_c00231{left:562.293333pt;}
.x86_c00231{left:564.373333pt;}
.x2c_c00231{left:565.333333pt;}
.xab_c00231{left:566.666667pt;}
.x10c_c00231{left:568.000000pt;}
.x39_c00231{left:572.373333pt;}
.x1f_c00231{left:573.333333pt;}
.x8e_c00231{left:577.706667pt;}
.x67_c00231{left:578.666667pt;}
.xac_c00231{left:580.000000pt;}
.xa4_c00231{left:581.333333pt;}
.x2d_c00231{left:583.040000pt;}
.x54_c00231{left:584.000000pt;}
.xc9_c00231{left:585.333333pt;}
.x9c_c00231{left:586.293333pt;}
.x79_c00231{left:587.626667pt;}
.xf9_c00231{left:591.626667pt;}
.x68_c00231{left:593.333333pt;}
.x11_c00231{left:594.666667pt;}
.x3a_c00231{left:596.000000pt;}
.x71_c00231{left:600.373333pt;}
.xbd_c00231{left:601.333333pt;}
.xff_c00231{left:605.706667pt;}
.x7a_c00231{left:606.666667pt;}
.x48_c00231{left:612.000000pt;}
.x2e_c00231{left:613.333333pt;}
.xf2_c00231{left:614.666667pt;}
.x10d_c00231{left:615.626667pt;}
.x103_c00231{left:617.333333pt;}
.xad_c00231{left:618.466667pt;}
.xb6_c00231{left:620.000000pt;}
.x20_c00231{left:621.706667pt;}
.x7b_c00231{left:622.666667pt;}
.x8f_c00231{left:626.666667pt;}
.x2f_c00231{left:631.040000pt;}
.x109_c00231{left:632.000000pt;}
.x95_c00231{left:634.666667pt;}
.x3b_c00231{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_196283f4a05c57a5e3cae1e1.woff2')format("woff");}.ff1_c00232{font-family:ff1_c00232;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb9_c00232{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m2f_c00232{transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);}
.m88_c00232{transform:matrix(0.344118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344118,0.000000,0.000000,0.250000,0,0);}
.ma_c00232{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.md7_c00232{transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);}
.me9_c00232{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.me7_c00232{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m3e_c00232{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m45_c00232{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m21_c00232{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.me8_c00232{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.me6_c00232{transform:matrix(0.373466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373466,0.000000,0.000000,0.250000,0,0);}
.m96_c00232{transform:matrix(0.373950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373950,0.000000,0.000000,0.250000,0,0);}
.m86_c00232{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.ma9_c00232{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.ma2_c00232{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.mad_c00232{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.mc6_c00232{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m20_c00232{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.md1_c00232{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m4b_c00232{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m94_c00232{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.mec_c00232{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m8b_c00232{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.mf2_c00232{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m7f_c00232{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.mc8_c00232{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m25_c00232{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.mcc_c00232{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m14_c00232{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.mef_c00232{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.me0_c00232{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.md2_c00232{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mbf_c00232{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m98_c00232{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m22_c00232{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.mc0_c00232{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mc1_c00232{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.ma4_c00232{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m59_c00232{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.md6_c00232{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m52_c00232{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.mb_c00232{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mca_c00232{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mdc_c00232{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m46_c00232{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m42_c00232{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m65_c00232{transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);}
.m6_c00232{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m6d_c00232{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.md5_c00232{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m4f_c00232{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m29_c00232{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m26_c00232{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m9f_c00232{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m1d_c00232{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m5_c00232{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m8a_c00232{transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);}
.md4_c00232{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m8c_c00232{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m5a_c00232{transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);}
.mea_c00232{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.mb7_c00232{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m75_c00232{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m89_c00232{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.mf0_c00232{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m53_c00232{transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);}
.m28_c00232{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m9_c00232{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m87_c00232{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.mb3_c00232{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m82_c00232{transform:matrix(0.449170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449170,0.000000,0.000000,0.250000,0,0);}
.md0_c00232{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m90_c00232{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m5d_c00232{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m50_c00232{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m8e_c00232{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m8d_c00232{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.me1_c00232{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m78_c00232{transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);}
.m83_c00232{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.me5_c00232{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m6a_c00232{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.m2_c00232{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.mac_c00232{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m76_c00232{transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);}
.m3a_c00232{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.mae_c00232{transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);}
.mb8_c00232{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m7b_c00232{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m74_c00232{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.mf_c00232{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m80_c00232{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m3f_c00232{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m69_c00232{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m17_c00232{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m5c_c00232{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mb2_c00232{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m7a_c00232{transform:matrix(0.488824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488824,0.000000,0.000000,0.250000,0,0);}
.m1_c00232{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m3c_c00232{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mde_c00232{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.m6c_c00232{transform:matrix(0.494706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494706,0.000000,0.000000,0.250000,0,0);}
.mdb_c00232{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m33_c00232{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m95_c00232{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m13_c00232{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m44_c00232{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);}
.m91_c00232{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.mb1_c00232{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m49_c00232{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m9c_c00232{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m1f_c00232{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m4a_c00232{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m2e_c00232{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.ma1_c00232{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m57_c00232{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.mbc_c00232{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m66_c00232{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m54_c00232{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);}
.mdd_c00232{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mab_c00232{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.md9_c00232{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mc3_c00232{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.ma0_c00232{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.md3_c00232{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m8_c00232{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m68_c00232{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m2a_c00232{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m1e_c00232{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m10_c00232{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.ma8_c00232{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m99_c00232{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m7d_c00232{transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);}
.me2_c00232{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m3b_c00232{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m9b_c00232{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m6b_c00232{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m30_c00232{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.mf1_c00232{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m9e_c00232{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mbb_c00232{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m70_c00232{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m2b_c00232{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mba_c00232{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m61_c00232{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m2d_c00232{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mce_c00232{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m5b_c00232{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m4_c00232{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m35_c00232{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m15_c00232{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.me4_c00232{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m27_c00232{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m58_c00232{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.m93_c00232{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);}
.m1b_c00232{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m23_c00232{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.maa_c00232{transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);}
.m1a_c00232{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mb5_c00232{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.md8_c00232{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.mb4_c00232{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m67_c00232{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.mb0_c00232{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.md_c00232{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.ma7_c00232{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m9a_c00232{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.me3_c00232{transform:matrix(0.574519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574519,0.000000,0.000000,0.250000,0,0);}
.mdf_c00232{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m97_c00232{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mc9_c00232{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m12_c00232{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m55_c00232{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.mc4_c00232{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m43_c00232{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m73_c00232{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m41_c00232{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m62_c00232{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m3_c00232{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.meb_c00232{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m84_c00232{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m32_c00232{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.ma5_c00232{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m56_c00232{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);}
.mbd_c00232{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.mbe_c00232{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m6e_c00232{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mc_c00232{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mc5_c00232{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m0_c00232{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.m19_c00232{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m36_c00232{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);}
.mda_c00232{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);}
.m4e_c00232{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m37_c00232{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.mc2_c00232{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m4d_c00232{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m72_c00232{transform:matrix(0.636029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636029,0.000000,0.000000,0.250000,0,0);}
.mcf_c00232{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m40_c00232{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m18_c00232{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m34_c00232{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.mee_c00232{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m24_c00232{transform:matrix(0.644710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644710,0.000000,0.000000,0.250000,0,0);}
.m79_c00232{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m48_c00232{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m60_c00232{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);}
.m5e_c00232{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m5f_c00232{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m7e_c00232{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m39_c00232{transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);}
.maf_c00232{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m7c_c00232{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.ma3_c00232{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m51_c00232{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m38_c00232{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.m64_c00232{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m92_c00232{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.me_c00232{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m81_c00232{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mb6_c00232{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m6f_c00232{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);}
.m85_c00232{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m47_c00232{transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);}
.m71_c00232{transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);}
.mcd_c00232{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m9d_c00232{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m77_c00232{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m2c_c00232{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m1c_c00232{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mc7_c00232{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mcb_c00232{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m16_c00232{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m63_c00232{transform:matrix(0.780837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780837,0.000000,0.000000,0.250000,0,0);}
.m7_c00232{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.ma6_c00232{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.med_c00232{transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);}
.m11_c00232{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m4c_c00232{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.m31_c00232{transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);}
.m3d_c00232{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m8f_c00232{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v3_c00232{vertical-align:-4.320000px;}
.v0_c00232{vertical-align:0.000000px;}
.v2_c00232{vertical-align:1.680000px;}
.v1_c00232{vertical-align:7.680000px;}
.ls4_c00232{letter-spacing:0.000000px;}
.ls2_c00232{letter-spacing:8.817600px;}
.ls3_c00232{letter-spacing:9.657600px;}
.ls0_c00232{letter-spacing:11.817600px;}
.ls1_c00232{letter-spacing:14.817600px;}
.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;}
}
.ws5_c00232{word-spacing:-6.425697px;}
.ws3_c00232{word-spacing:-5.997457px;}
.ws0_c00232{word-spacing:-4.901145px;}
.ws2_c00232{word-spacing:-2.554600px;}
.ws7_c00232{word-spacing:0.000000px;}
.ws6_c00232{word-spacing:0.100071px;}
.ws1_c00232{word-spacing:0.308050px;}
.ws4_c00232{word-spacing:3.443016px;}
.fc0_c00232{color:transparent;}
.fs8_c00232{font-size:3.420000px;}
.fs7_c00232{font-size:13.620000px;}
.fs4_c00232{font-size:18.720000px;}
.fs0_c00232{font-size:20.400000px;}
.fs5_c00232{font-size:25.500000px;}
.fs1_c00232{font-size:28.920000px;}
.fs2_c00232{font-size:32.340000px;}
.fs3_c00232{font-size:35.700000px;}
.fs6_c00232{font-size:39.120000px;}
.y0_c00232{bottom:0.000000px;}
.yf5_c00232{bottom:251.745000px;}
.yf4_c00232{bottom:253.905000px;}
.yf3_c00232{bottom:270.405000px;}
.yf0_c00232{bottom:271.245000px;}
.yf2_c00232{bottom:272.970000px;}
.yef_c00232{bottom:273.405000px;}
.yf1_c00232{bottom:273.630000px;}
.yed_c00232{bottom:290.745000px;}
.yee_c00232{bottom:290.970000px;}
.yea_c00232{bottom:292.245000px;}
.yeb_c00232{bottom:292.905000px;}
.yec_c00232{bottom:294.405000px;}
.ye7_c00232{bottom:310.470000px;}
.ye9_c00232{bottom:310.680000px;}
.ye5_c00232{bottom:311.745000px;}
.ye8_c00232{bottom:312.630000px;}
.ye6_c00232{bottom:313.905000px;}
.ye3_c00232{bottom:331.245000px;}
.ye4_c00232{bottom:332.130000px;}
.ye2_c00232{bottom:333.405000px;}
.ye0_c00232{bottom:350.970000px;}
.ydf_c00232{bottom:351.630000px;}
.ye1_c00232{bottom:351.825000px;}
.ydd_c00232{bottom:352.905000px;}
.yde_c00232{bottom:353.970000px;}
.yda_c00232{bottom:369.405000px;}
.ydc_c00232{bottom:370.245000px;}
.ydb_c00232{bottom:371.325000px;}
.yd8_c00232{bottom:372.405000px;}
.yd9_c00232{bottom:372.630000px;}
.yd5_c00232{bottom:389.745000px;}
.yd2_c00232{bottom:391.245000px;}
.yd6_c00232{bottom:391.905000px;}
.yd4_c00232{bottom:392.130000px;}
.yd7_c00232{bottom:392.970000px;}
.yd3_c00232{bottom:393.405000px;}
.yd0_c00232{bottom:408.405000px;}
.yce_c00232{bottom:410.745000px;}
.yd1_c00232{bottom:411.405000px;}
.ycd_c00232{bottom:411.630000px;}
.ycf_c00232{bottom:411.825000px;}
.ycc_c00232{bottom:412.905000px;}
.yc5_c00232{bottom:428.745000px;}
.ycb_c00232{bottom:429.405000px;}
.yc7_c00232{bottom:430.245000px;}
.yca_c00232{bottom:430.905000px;}
.yc6_c00232{bottom:431.130000px;}
.yc9_c00232{bottom:431.325000px;}
.yc8_c00232{bottom:431.970000px;}
.yc4_c00232{bottom:432.405000px;}
.yc3_c00232{bottom:449.745000px;}
.yc2_c00232{bottom:451.470000px;}
.yc1_c00232{bottom:451.905000px;}
.yc0_c00232{bottom:468.405000px;}
.ybf_c00232{bottom:471.405000px;}
.ybd_c00232{bottom:488.745000px;}
.ybe_c00232{bottom:489.630000px;}
.ybc_c00232{bottom:490.470000px;}
.ybb_c00232{bottom:490.905000px;}
.yba_c00232{bottom:491.970000px;}
.yb7_c00232{bottom:508.470000px;}
.yb5_c00232{bottom:508.905000px;}
.yb6_c00232{bottom:509.970000px;}
.yb8_c00232{bottom:510.405000px;}
.yb9_c00232{bottom:510.630000px;}
.yb4_c00232{bottom:511.470000px;}
.yb1_c00232{bottom:527.745000px;}
.yaf_c00232{bottom:528.825000px;}
.yb2_c00232{bottom:529.245000px;}
.yb0_c00232{bottom:529.905000px;}
.yb3_c00232{bottom:530.970000px;}
.yac_c00232{bottom:546.405000px;}
.yab_c00232{bottom:547.245000px;}
.yae_c00232{bottom:549.405000px;}
.yad_c00232{bottom:550.470000px;}
.yaa_c00232{bottom:550.905000px;}
.ya9_c00232{bottom:568.245000px;}
.ya8_c00232{bottom:569.130000px;}
.ya7_c00232{bottom:570.405000px;}
.ya3_c00232{bottom:586.470000px;}
.ya2_c00232{bottom:587.745000px;}
.ya4_c00232{bottom:588.630000px;}
.ya5_c00232{bottom:588.825000px;}
.ya1_c00232{bottom:589.905000px;}
.ya6_c00232{bottom:590.970000px;}
.y9e_c00232{bottom:606.405000px;}
.y9c_c00232{bottom:606.825000px;}
.y9a_c00232{bottom:607.245000px;}
.y9d_c00232{bottom:607.470000px;}
.y9f_c00232{bottom:607.905000px;}
.y99_c00232{bottom:609.405000px;}
.ya0_c00232{bottom:609.630000px;}
.y9b_c00232{bottom:610.470000px;}
.y98_c00232{bottom:625.905000px;}
.y96_c00232{bottom:626.745000px;}
.y95_c00232{bottom:628.905000px;}
.y97_c00232{bottom:629.970000px;}
.y8f_c00232{bottom:647.745000px;}
.y94_c00232{bottom:648.405000px;}
.y92_c00232{bottom:648.630000px;}
.y93_c00232{bottom:649.470000px;}
.y91_c00232{bottom:649.905000px;}
.y90_c00232{bottom:649.920000px;}
.y8c_c00232{bottom:673.905000px;}
.y8d_c00232{bottom:674.550000px;}
.y8e_c00232{bottom:674.970000px;}
.y8b_c00232{bottom:675.630000px;}
.y84_c00232{bottom:687.825000px;}
.y85_c00232{bottom:688.050000px;}
.y83_c00232{bottom:688.470000px;}
.y86_c00232{bottom:688.905000px;}
.y82_c00232{bottom:689.325000px;}
.y8a_c00232{bottom:689.550000px;}
.y81_c00232{bottom:689.970000px;}
.y88_c00232{bottom:690.405000px;}
.y89_c00232{bottom:690.630000px;}
.y87_c00232{bottom:691.470000px;}
.y7e_c00232{bottom:703.050000px;}
.y80_c00232{bottom:703.470000px;}
.y7c_c00232{bottom:704.130000px;}
.y7d_c00232{bottom:704.325000px;}
.y79_c00232{bottom:704.550000px;}
.y7b_c00232{bottom:704.970000px;}
.y7a_c00232{bottom:705.405000px;}
.y7f_c00232{bottom:707.550000px;}
.y77_c00232{bottom:718.050000px;}
.y73_c00232{bottom:718.905000px;}
.y76_c00232{bottom:719.130000px;}
.y78_c00232{bottom:719.970000px;}
.y74_c00232{bottom:720.630000px;}
.y75_c00232{bottom:721.050000px;}
.y71_c00232{bottom:731.970000px;}
.y72_c00232{bottom:732.825000px;}
.y6e_c00232{bottom:733.905000px;}
.y6f_c00232{bottom:734.130000px;}
.y6d_c00232{bottom:734.970000px;}
.y70_c00232{bottom:736.050000px;}
.y68_c00232{bottom:746.970000px;}
.y6a_c00232{bottom:747.825000px;}
.y6b_c00232{bottom:748.050000px;}
.y6c_c00232{bottom:748.905000px;}
.y69_c00232{bottom:751.050000px;}
.y62_c00232{bottom:761.970000px;}
.y67_c00232{bottom:762.825000px;}
.y63_c00232{bottom:763.905000px;}
.y65_c00232{bottom:764.130000px;}
.y66_c00232{bottom:764.970000px;}
.y64_c00232{bottom:766.050000px;}
.y61_c00232{bottom:777.825000px;}
.y5e_c00232{bottom:778.050000px;}
.y5c_c00232{bottom:778.905000px;}
.y5d_c00232{bottom:779.130000px;}
.y5b_c00232{bottom:779.550000px;}
.y5f_c00232{bottom:779.970000px;}
.y60_c00232{bottom:781.050000px;}
.y58_c00232{bottom:792.825000px;}
.y5a_c00232{bottom:793.905000px;}
.y56_c00232{bottom:794.550000px;}
.y57_c00232{bottom:794.970000px;}
.y59_c00232{bottom:796.050000px;}
.y52_c00232{bottom:806.325000px;}
.y55_c00232{bottom:806.970000px;}
.y54_c00232{bottom:807.405000px;}
.y51_c00232{bottom:808.470000px;}
.y53_c00232{bottom:809.550000px;}
.y4e_c00232{bottom:821.325000px;}
.y4b_c00232{bottom:821.550000px;}
.y4d_c00232{bottom:822.405000px;}
.y4c_c00232{bottom:823.470000px;}
.y50_c00232{bottom:823.695000px;}
.y4f_c00232{bottom:824.550000px;}
.y48_c00232{bottom:836.325000px;}
.y4a_c00232{bottom:837.405000px;}
.y47_c00232{bottom:838.470000px;}
.y49_c00232{bottom:838.695000px;}
.y45_c00232{bottom:851.325000px;}
.y42_c00232{bottom:852.405000px;}
.y44_c00232{bottom:853.470000px;}
.y46_c00232{bottom:853.695000px;}
.y43_c00232{bottom:854.550000px;}
.y41_c00232{bottom:866.325000px;}
.y3c_c00232{bottom:866.550000px;}
.y3e_c00232{bottom:867.405000px;}
.y40_c00232{bottom:867.630000px;}
.y3f_c00232{bottom:868.470000px;}
.y3d_c00232{bottom:869.550000px;}
.y38_c00232{bottom:880.905000px;}
.y3b_c00232{bottom:881.325000px;}
.y39_c00232{bottom:881.550000px;}
.y3a_c00232{bottom:883.470000px;}
.y2f_c00232{bottom:895.050000px;}
.y36_c00232{bottom:895.470000px;}
.y32_c00232{bottom:895.905000px;}
.y35_c00232{bottom:896.325000px;}
.y34_c00232{bottom:896.550000px;}
.y30_c00232{bottom:896.970000px;}
.y33_c00232{bottom:897.405000px;}
.y37_c00232{bottom:898.050000px;}
.y31_c00232{bottom:898.470000px;}
.y2a_c00232{bottom:910.470000px;}
.y2d_c00232{bottom:910.905000px;}
.y2c_c00232{bottom:912.195000px;}
.y2e_c00232{bottom:912.630000px;}
.y2b_c00232{bottom:913.050000px;}
.y25_c00232{bottom:924.825000px;}
.y24_c00232{bottom:925.050000px;}
.y23_c00232{bottom:925.905000px;}
.y22_c00232{bottom:926.130000px;}
.y29_c00232{bottom:926.325000px;}
.y27_c00232{bottom:927.630000px;}
.y28_c00232{bottom:928.470000px;}
.y26_c00232{bottom:929.550000px;}
.y20_c00232{bottom:938.970000px;}
.y1f_c00232{bottom:939.825000px;}
.y1c_c00232{bottom:940.905000px;}
.y1e_c00232{bottom:941.970000px;}
.y1d_c00232{bottom:942.195000px;}
.y21_c00232{bottom:943.050000px;}
.y19_c00232{bottom:955.905000px;}
.y1a_c00232{bottom:956.550000px;}
.y18_c00232{bottom:956.970000px;}
.y17_c00232{bottom:957.195000px;}
.y1b_c00232{bottom:958.050000px;}
.y16_c00232{bottom:979.905000px;}
.y15_c00232{bottom:1000.680000px;}
.y12_c00232{bottom:1001.745000px;}
.y11_c00232{bottom:1003.905000px;}
.y14_c00232{bottom:1004.130000px;}
.y13_c00232{bottom:1005.405000px;}
.yf_c00232{bottom:1021.245000px;}
.y10_c00232{bottom:1022.325000px;}
.ye_c00232{bottom:1023.405000px;}
.ya_c00232{bottom:1041.630000px;}
.yb_c00232{bottom:1041.825000px;}
.y9_c00232{bottom:1042.905000px;}
.yc_c00232{bottom:1043.130000px;}
.yd_c00232{bottom:1043.970000px;}
.y5_c00232{bottom:1060.245000px;}
.y3_c00232{bottom:1061.325000px;}
.y6_c00232{bottom:1061.745000px;}
.y4_c00232{bottom:1062.405000px;}
.y7_c00232{bottom:1062.630000px;}
.y8_c00232{bottom:1063.470000px;}
.y2_c00232{bottom:1099.905000px;}
.y1_c00232{bottom:1102.050000px;}
.hc_c00232{height:4.206533px;}
.h8_c00232{height:16.752334px;}
.h5_c00232{height:23.025234px;}
.h1_c00232{height:25.091602px;}
.hb_c00232{height:27.044502px;}
.h6_c00232{height:31.364502px;}
.ha_c00232{height:33.044502px;}
.h2_c00232{height:35.571035px;}
.h9_c00232{height:39.044502px;}
.h3_c00232{height:39.777568px;}
.h4_c00232{height:43.910303px;}
.h7_c00232{height:48.116836px;}
.h0_c00232{height:1335.000000px;}
.w0_c00232{width:880.500000px;}
.x0_c00232{left:0.000000px;}
.x3_c00232{left:151.500000px;}
.x4c_c00232{left:152.580000px;}
.x8b_c00232{left:154.920000px;}
.x109_c00232{left:156.000000px;}
.xaa_c00232{left:165.000000px;}
.x30_c00232{left:166.080000px;}
.xb0_c00232{left:169.080000px;}
.xe3_c00232{left:170.145000px;}
.x69_c00232{left:180.000000px;}
.x77_c00232{left:181.080000px;}
.x31_c00232{left:183.000000px;}
.x5a_c00232{left:184.500000px;}
.xa5_c00232{left:187.080000px;}
.xfd_c00232{left:192.420000px;}
.x11_c00232{left:194.580000px;}
.x8c_c00232{left:196.500000px;}
.xe2_c00232{left:197.580000px;}
.xc1_c00232{left:199.500000px;}
.x55_c00232{left:201.420000px;}
.x105_c00232{left:202.500000px;}
.x4_c00232{left:208.500000px;}
.x101_c00232{left:210.000000px;}
.xf2_c00232{left:211.920000px;}
.x82_c00232{left:214.080000px;}
.x94_c00232{left:217.500000px;}
.x9d_c00232{left:219.000000px;}
.x3c_c00232{left:220.500000px;}
.xd0_c00232{left:221.580000px;}
.xf8_c00232{left:223.920000px;}
.xd5_c00232{left:225.000000px;}
.xca_c00232{left:226.920000px;}
.x6a_c00232{left:228.000000px;}
.x4d_c00232{left:229.080000px;}
.x8d_c00232{left:231.420000px;}
.x12_c00232{left:234.420000px;}
.xc9_c00232{left:235.500000px;}
.x6b_c00232{left:238.920000px;}
.xef_c00232{left:242.580000px;}
.xd6_c00232{left:244.080000px;}
.x5_c00232{left:246.000000px;}
.xc2_c00232{left:248.580000px;}
.xd1_c00232{left:250.500000px;}
.x32_c00232{left:252.000000px;}
.x3d_c00232{left:254.580000px;}
.x5b_c00232{left:256.500000px;}
.x8e_c00232{left:258.000000px;}
.xf9_c00232{left:259.080000px;}
.xab_c00232{left:260.355000px;}
.x56_c00232{left:262.500000px;}
.x95_c00232{left:264.000000px;}
.x1f_c00232{left:265.080000px;}
.xd7_c00232{left:268.500000px;}
.x83_c00232{left:270.000000px;}
.x13_c00232{left:271.920000px;}
.xa6_c00232{left:273.000000px;}
.xea_c00232{left:274.500000px;}
.x29_c00232{left:277.500000px;}
.x87_c00232{left:280.920000px;}
.x84_c00232{left:282.000000px;}
.x3e_c00232{left:283.920000px;}
.xf3_c00232{left:285.000000px;}
.x52_c00232{left:287.145000px;}
.xf0_c00232{left:288.420000px;}
.x4e_c00232{left:289.500000px;}
.x6_c00232{left:291.420000px;}
.xcb_c00232{left:292.500000px;}
.x96_c00232{left:294.000000px;}
.xe4_c00232{left:295.920000px;}
.x57_c00232{left:297.420000px;}
.x14_c00232{left:298.920000px;}
.xac_c00232{left:301.500000px;}
.xb3_c00232{left:303.000000px;}
.xd8_c00232{left:304.500000px;}
.x8f_c00232{left:306.420000px;}
.x9f_c00232{left:307.500000px;}
.x33_c00232{left:310.500000px;}
.x20_c00232{left:312.000000px;}
.xf4_c00232{left:313.275000px;}
.x42_c00232{left:316.080000px;}
.x70_c00232{left:317.580000px;}
.x64_c00232{left:319.500000px;}
.x6c_c00232{left:321.420000px;}
.xd9_c00232{left:322.920000px;}
.x4f_c00232{left:324.420000px;}
.x3f_c00232{left:325.500000px;}
.x97_c00232{left:328.080000px;}
.x7_c00232{left:330.000000px;}
.xad_c00232{left:331.080000px;}
.x106_c00232{left:332.580000px;}
.xfa_c00232{left:334.500000px;}
.x7b_c00232{left:336.420000px;}
.xbb_c00232{left:339.000000px;}
.x34_c00232{left:340.080000px;}
.x5c_c00232{left:341.580000px;}
.x98_c00232{left:343.500000px;}
.xa0_c00232{left:345.000000px;}
.x21_c00232{left:346.080000px;}
.xc3_c00232{left:348.000000px;}
.x43_c00232{left:349.920000px;}
.x50_c00232{left:351.000000px;}
.x65_c00232{left:353.580000px;}
.x85_c00232{left:356.355000px;}
.x40_c00232{left:357.420000px;}
.xae_c00232{left:358.500000px;}
.xbc_c00232{left:360.000000px;}
.x108_c00232{left:361.920000px;}
.x6d_c00232{left:363.000000px;}
.x71_c00232{left:364.080000px;}
.x15_c00232{left:365.580000px;}
.x90_c00232{left:367.080000px;}
.x5d_c00232{left:369.420000px;}
.x35_c00232{left:373.920000px;}
.xd2_c00232{left:375.420000px;}
.x58_c00232{left:379.500000px;}
.x2a_c00232{left:382.080000px;}
.x41_c00232{left:384.000000px;}
.x9e_c00232{left:387.000000px;}
.x36_c00232{left:388.500000px;}
.x10a_c00232{left:390.645000px;}
.x6e_c00232{left:392.580000px;}
.xaf_c00232{left:396.000000px;}
.x1_c00232{left:397.500000px;}
.x8_c00232{left:399.000000px;}
.x103_c00232{left:400.500000px;}
.x7c_c00232{left:402.420000px;}
.xe5_c00232{left:403.920000px;}
.x88_c00232{left:405.420000px;}
.xda_c00232{left:406.920000px;}
.xfb_c00232{left:408.420000px;}
.x22_c00232{left:409.920000px;}
.x5e_c00232{left:411.000000px;}
.xb4_c00232{left:412.500000px;}
.x59_c00232{left:413.580000px;}
.xcc_c00232{left:416.580000px;}
.xf1_c00232{left:418.920000px;}
.x6f_c00232{left:420.000000px;}
.x7d_c00232{left:421.500000px;}
.xd3_c00232{left:422.580000px;}
.x5f_c00232{left:424.080000px;}
.x78_c00232{left:427.500000px;}
.xdd_c00232{left:428.580000px;}
.x66_c00232{left:430.500000px;}
.x16_c00232{left:432.000000px;}
.xe6_c00232{left:433.080000px;}
.xb5_c00232{left:435.000000px;}
.x44_c00232{left:436.500000px;}
.x53_c00232{left:441.420000px;}
.x9_c00232{left:442.920000px;}
.x51_c00232{left:444.000000px;}
.x72_c00232{left:445.920000px;}
.xde_c00232{left:447.000000px;}
.x17_c00232{left:448.920000px;}
.x37_c00232{left:450.000000px;}
.xbd_c00232{left:451.080000px;}
.x107_c00232{left:453.420000px;}
.x2b_c00232{left:454.500000px;}
.xb6_c00232{left:456.000000px;}
.x23_c00232{left:457.500000px;}
.xcd_c00232{left:458.580000px;}
.x79_c00232{left:462.420000px;}
.xd4_c00232{left:469.500000px;}
.xa_c00232{left:471.000000px;}
.x45_c00232{left:472.500000px;}
.x24_c00232{left:474.420000px;}
.x73_c00232{left:475.500000px;}
.xeb_c00232{left:476.580000px;}
.x18_c00232{left:478.080000px;}
.xc4_c00232{left:481.080000px;}
.x7e_c00232{left:484.500000px;}
.x38_c00232{left:486.420000px;}
.x91_c00232{left:487.920000px;}
.x7a_c00232{left:490.500000px;}
.x60_c00232{left:492.420000px;}
.xf5_c00232{left:494.580000px;}
.x46_c00232{left:496.920000px;}
.x104_c00232{left:498.000000px;}
.x19_c00232{left:499.500000px;}
.x99_c00232{left:502.080000px;}
.x86_c00232{left:504.000000px;}
.xec_c00232{left:505.500000px;}
.xe7_c00232{left:507.000000px;}
.x61_c00232{left:510.000000px;}
.x39_c00232{left:513.000000px;}
.x74_c00232{left:514.920000px;}
.xa1_c00232{left:516.420000px;}
.x25_c00232{left:519.000000px;}
.xc5_c00232{left:520.920000px;}
.x9a_c00232{left:525.000000px;}
.xb_c00232{left:526.500000px;}
.x7f_c00232{left:529.500000px;}
.x92_c00232{left:531.000000px;}
.x47_c00232{left:532.500000px;}
.x67_c00232{left:534.420000px;}
.xdb_c00232{left:535.920000px;}
.x89_c00232{left:538.080000px;}
.x80_c00232{left:541.080000px;}
.xf6_c00232{left:543.000000px;}
.x1a_c00232{left:546.000000px;}
.x102_c00232{left:549.420000px;}
.xfe_c00232{left:550.500000px;}
.x2c_c00232{left:552.000000px;}
.xdc_c00232{left:559.500000px;}
.x9b_c00232{left:561.420000px;}
.x1b_c00232{left:564.000000px;}
.x93_c00232{left:565.920000px;}
.xc6_c00232{left:567.000000px;}
.x48_c00232{left:568.080000px;}
.xa2_c00232{left:571.500000px;}
.xbe_c00232{left:573.000000px;}
.x9c_c00232{left:577.500000px;}
.x3a_c00232{left:579.420000px;}
.xc_c00232{left:583.920000px;}
.xa7_c00232{left:588.000000px;}
.x26_c00232{left:592.500000px;}
.x2d_c00232{left:595.500000px;}
.xed_c00232{left:600.000000px;}
.xe8_c00232{left:604.500000px;}
.xa3_c00232{left:607.920000px;}
.xbf_c00232{left:609.000000px;}
.xb7_c00232{left:612.420000px;}
.x62_c00232{left:613.500000px;}
.x1c_c00232{left:615.000000px;}
.x2e_c00232{left:618.000000px;}
.xff_c00232{left:621.420000px;}
.xb1_c00232{left:622.500000px;}
.xd_c00232{left:625.500000px;}
.x75_c00232{left:627.000000px;}
.xc0_c00232{left:629.580000px;}
.xa8_c00232{left:631.500000px;}
.xc7_c00232{left:633.000000px;}
.x81_c00232{left:635.580000px;}
.xb8_c00232{left:639.420000px;}
.x49_c00232{left:643.500000px;}
.x27_c00232{left:648.420000px;}
.xc8_c00232{left:650.580000px;}
.xdf_c00232{left:652.500000px;}
.x1d_c00232{left:654.000000px;}
.x4a_c00232{left:655.500000px;}
.x8a_c00232{left:656.580000px;}
.x100_c00232{left:658.500000px;}
.x76_c00232{left:662.580000px;}
.xe_c00232{left:666.420000px;}
.xee_c00232{left:667.500000px;}
.x54_c00232{left:669.000000px;}
.x3b_c00232{left:672.000000px;}
.xe9_c00232{left:674.580000px;}
.xfc_c00232{left:676.500000px;}
.xe0_c00232{left:678.420000px;}
.xf7_c00232{left:684.420000px;}
.x2f_c00232{left:686.580000px;}
.xb9_c00232{left:688.080000px;}
.x1e_c00232{left:689.145000px;}
.xce_c00232{left:691.080000px;}
.x63_c00232{left:692.355000px;}
.xa4_c00232{left:693.420000px;}
.xa9_c00232{left:697.500000px;}
.x68_c00232{left:699.000000px;}
.xf_c00232{left:700.500000px;}
.x28_c00232{left:701.580000px;}
.x2_c00232{left:703.080000px;}
.x4b_c00232{left:706.080000px;}
.xba_c00232{left:709.920000px;}
.xcf_c00232{left:711.000000px;}
.x10_c00232{left:717.000000px;}
.xe1_c00232{left:718.500000px;}
.xb2_c00232{left:720.000000px;}
@media print{
.v3_c00232{vertical-align:-3.840000pt;}
.v0_c00232{vertical-align:0.000000pt;}
.v2_c00232{vertical-align:1.493333pt;}
.v1_c00232{vertical-align:6.826667pt;}
.ls4_c00232{letter-spacing:0.000000pt;}
.ls2_c00232{letter-spacing:7.837867pt;}
.ls3_c00232{letter-spacing:8.584533pt;}
.ls0_c00232{letter-spacing:10.504533pt;}
.ls1_c00232{letter-spacing:13.171200pt;}
.ws5_c00232{word-spacing:-5.711730pt;}
.ws3_c00232{word-spacing:-5.331073pt;}
.ws0_c00232{word-spacing:-4.356574pt;}
.ws2_c00232{word-spacing:-2.270756pt;}
.ws7_c00232{word-spacing:0.000000pt;}
.ws6_c00232{word-spacing:0.088952pt;}
.ws1_c00232{word-spacing:0.273822pt;}
.ws4_c00232{word-spacing:3.060459pt;}
.fs8_c00232{font-size:3.040000pt;}
.fs7_c00232{font-size:12.106667pt;}
.fs4_c00232{font-size:16.640000pt;}
.fs0_c00232{font-size:18.133333pt;}
.fs5_c00232{font-size:22.666667pt;}
.fs1_c00232{font-size:25.706667pt;}
.fs2_c00232{font-size:28.746667pt;}
.fs3_c00232{font-size:31.733333pt;}
.fs6_c00232{font-size:34.773333pt;}
.y0_c00232{bottom:0.000000pt;}
.yf5_c00232{bottom:223.773333pt;}
.yf4_c00232{bottom:225.693333pt;}
.yf3_c00232{bottom:240.360000pt;}
.yf0_c00232{bottom:241.106667pt;}
.yf2_c00232{bottom:242.640000pt;}
.yef_c00232{bottom:243.026667pt;}
.yf1_c00232{bottom:243.226667pt;}
.yed_c00232{bottom:258.440000pt;}
.yee_c00232{bottom:258.640000pt;}
.yea_c00232{bottom:259.773333pt;}
.yeb_c00232{bottom:260.360000pt;}
.yec_c00232{bottom:261.693333pt;}
.ye7_c00232{bottom:275.973333pt;}
.ye9_c00232{bottom:276.160000pt;}
.ye5_c00232{bottom:277.106667pt;}
.ye8_c00232{bottom:277.893333pt;}
.ye6_c00232{bottom:279.026667pt;}
.ye3_c00232{bottom:294.440000pt;}
.ye4_c00232{bottom:295.226667pt;}
.ye2_c00232{bottom:296.360000pt;}
.ye0_c00232{bottom:311.973333pt;}
.ydf_c00232{bottom:312.560000pt;}
.ye1_c00232{bottom:312.733333pt;}
.ydd_c00232{bottom:313.693333pt;}
.yde_c00232{bottom:314.640000pt;}
.yda_c00232{bottom:328.360000pt;}
.ydc_c00232{bottom:329.106667pt;}
.ydb_c00232{bottom:330.066667pt;}
.yd8_c00232{bottom:331.026667pt;}
.yd9_c00232{bottom:331.226667pt;}
.yd5_c00232{bottom:346.440000pt;}
.yd2_c00232{bottom:347.773333pt;}
.yd6_c00232{bottom:348.360000pt;}
.yd4_c00232{bottom:348.560000pt;}
.yd7_c00232{bottom:349.306667pt;}
.yd3_c00232{bottom:349.693333pt;}
.yd0_c00232{bottom:363.026667pt;}
.yce_c00232{bottom:365.106667pt;}
.yd1_c00232{bottom:365.693333pt;}
.ycd_c00232{bottom:365.893333pt;}
.ycf_c00232{bottom:366.066667pt;}
.ycc_c00232{bottom:367.026667pt;}
.yc5_c00232{bottom:381.106667pt;}
.ycb_c00232{bottom:381.693333pt;}
.yc7_c00232{bottom:382.440000pt;}
.yca_c00232{bottom:383.026667pt;}
.yc6_c00232{bottom:383.226667pt;}
.yc9_c00232{bottom:383.400000pt;}
.yc8_c00232{bottom:383.973333pt;}
.yc4_c00232{bottom:384.360000pt;}
.yc3_c00232{bottom:399.773333pt;}
.yc2_c00232{bottom:401.306667pt;}
.yc1_c00232{bottom:401.693333pt;}
.yc0_c00232{bottom:416.360000pt;}
.ybf_c00232{bottom:419.026667pt;}
.ybd_c00232{bottom:434.440000pt;}
.ybe_c00232{bottom:435.226667pt;}
.ybc_c00232{bottom:435.973333pt;}
.ybb_c00232{bottom:436.360000pt;}
.yba_c00232{bottom:437.306667pt;}
.yb7_c00232{bottom:451.973333pt;}
.yb5_c00232{bottom:452.360000pt;}
.yb6_c00232{bottom:453.306667pt;}
.yb8_c00232{bottom:453.693333pt;}
.yb9_c00232{bottom:453.893333pt;}
.yb4_c00232{bottom:454.640000pt;}
.yb1_c00232{bottom:469.106667pt;}
.yaf_c00232{bottom:470.066667pt;}
.yb2_c00232{bottom:470.440000pt;}
.yb0_c00232{bottom:471.026667pt;}
.yb3_c00232{bottom:471.973333pt;}
.yac_c00232{bottom:485.693333pt;}
.yab_c00232{bottom:486.440000pt;}
.yae_c00232{bottom:488.360000pt;}
.yad_c00232{bottom:489.306667pt;}
.yaa_c00232{bottom:489.693333pt;}
.ya9_c00232{bottom:505.106667pt;}
.ya8_c00232{bottom:505.893333pt;}
.ya7_c00232{bottom:507.026667pt;}
.ya3_c00232{bottom:521.306667pt;}
.ya2_c00232{bottom:522.440000pt;}
.ya4_c00232{bottom:523.226667pt;}
.ya5_c00232{bottom:523.400000pt;}
.ya1_c00232{bottom:524.360000pt;}
.ya6_c00232{bottom:525.306667pt;}
.y9e_c00232{bottom:539.026667pt;}
.y9c_c00232{bottom:539.400000pt;}
.y9a_c00232{bottom:539.773333pt;}
.y9d_c00232{bottom:539.973333pt;}
.y9f_c00232{bottom:540.360000pt;}
.y99_c00232{bottom:541.693333pt;}
.ya0_c00232{bottom:541.893333pt;}
.y9b_c00232{bottom:542.640000pt;}
.y98_c00232{bottom:556.360000pt;}
.y96_c00232{bottom:557.106667pt;}
.y95_c00232{bottom:559.026667pt;}
.y97_c00232{bottom:559.973333pt;}
.y8f_c00232{bottom:575.773333pt;}
.y94_c00232{bottom:576.360000pt;}
.y92_c00232{bottom:576.560000pt;}
.y93_c00232{bottom:577.306667pt;}
.y91_c00232{bottom:577.693333pt;}
.y90_c00232{bottom:577.706667pt;}
.y8c_c00232{bottom:599.026667pt;}
.y8d_c00232{bottom:599.600000pt;}
.y8e_c00232{bottom:599.973333pt;}
.y8b_c00232{bottom:600.560000pt;}
.y84_c00232{bottom:611.400000pt;}
.y85_c00232{bottom:611.600000pt;}
.y83_c00232{bottom:611.973333pt;}
.y86_c00232{bottom:612.360000pt;}
.y82_c00232{bottom:612.733333pt;}
.y8a_c00232{bottom:612.933333pt;}
.y81_c00232{bottom:613.306667pt;}
.y88_c00232{bottom:613.693333pt;}
.y89_c00232{bottom:613.893333pt;}
.y87_c00232{bottom:614.640000pt;}
.y7e_c00232{bottom:624.933333pt;}
.y80_c00232{bottom:625.306667pt;}
.y7c_c00232{bottom:625.893333pt;}
.y7d_c00232{bottom:626.066667pt;}
.y79_c00232{bottom:626.266667pt;}
.y7b_c00232{bottom:626.640000pt;}
.y7a_c00232{bottom:627.026667pt;}
.y7f_c00232{bottom:628.933333pt;}
.y77_c00232{bottom:638.266667pt;}
.y73_c00232{bottom:639.026667pt;}
.y76_c00232{bottom:639.226667pt;}
.y78_c00232{bottom:639.973333pt;}
.y74_c00232{bottom:640.560000pt;}
.y75_c00232{bottom:640.933333pt;}
.y71_c00232{bottom:650.640000pt;}
.y72_c00232{bottom:651.400000pt;}
.y6e_c00232{bottom:652.360000pt;}
.y6f_c00232{bottom:652.560000pt;}
.y6d_c00232{bottom:653.306667pt;}
.y70_c00232{bottom:654.266667pt;}
.y68_c00232{bottom:663.973333pt;}
.y6a_c00232{bottom:664.733333pt;}
.y6b_c00232{bottom:664.933333pt;}
.y6c_c00232{bottom:665.693333pt;}
.y69_c00232{bottom:667.600000pt;}
.y62_c00232{bottom:677.306667pt;}
.y67_c00232{bottom:678.066667pt;}
.y63_c00232{bottom:679.026667pt;}
.y65_c00232{bottom:679.226667pt;}
.y66_c00232{bottom:679.973333pt;}
.y64_c00232{bottom:680.933333pt;}
.y61_c00232{bottom:691.400000pt;}
.y5e_c00232{bottom:691.600000pt;}
.y5c_c00232{bottom:692.360000pt;}
.y5d_c00232{bottom:692.560000pt;}
.y5b_c00232{bottom:692.933333pt;}
.y5f_c00232{bottom:693.306667pt;}
.y60_c00232{bottom:694.266667pt;}
.y58_c00232{bottom:704.733333pt;}
.y5a_c00232{bottom:705.693333pt;}
.y56_c00232{bottom:706.266667pt;}
.y57_c00232{bottom:706.640000pt;}
.y59_c00232{bottom:707.600000pt;}
.y52_c00232{bottom:716.733333pt;}
.y55_c00232{bottom:717.306667pt;}
.y54_c00232{bottom:717.693333pt;}
.y51_c00232{bottom:718.640000pt;}
.y53_c00232{bottom:719.600000pt;}
.y4e_c00232{bottom:730.066667pt;}
.y4b_c00232{bottom:730.266667pt;}
.y4d_c00232{bottom:731.026667pt;}
.y4c_c00232{bottom:731.973333pt;}
.y50_c00232{bottom:732.173333pt;}
.y4f_c00232{bottom:732.933333pt;}
.y48_c00232{bottom:743.400000pt;}
.y4a_c00232{bottom:744.360000pt;}
.y47_c00232{bottom:745.306667pt;}
.y49_c00232{bottom:745.506667pt;}
.y45_c00232{bottom:756.733333pt;}
.y42_c00232{bottom:757.693333pt;}
.y44_c00232{bottom:758.640000pt;}
.y46_c00232{bottom:758.840000pt;}
.y43_c00232{bottom:759.600000pt;}
.y41_c00232{bottom:770.066667pt;}
.y3c_c00232{bottom:770.266667pt;}
.y3e_c00232{bottom:771.026667pt;}
.y40_c00232{bottom:771.226667pt;}
.y3f_c00232{bottom:771.973333pt;}
.y3d_c00232{bottom:772.933333pt;}
.y38_c00232{bottom:783.026667pt;}
.y3b_c00232{bottom:783.400000pt;}
.y39_c00232{bottom:783.600000pt;}
.y3a_c00232{bottom:785.306667pt;}
.y2f_c00232{bottom:795.600000pt;}
.y36_c00232{bottom:795.973333pt;}
.y32_c00232{bottom:796.360000pt;}
.y35_c00232{bottom:796.733333pt;}
.y34_c00232{bottom:796.933333pt;}
.y30_c00232{bottom:797.306667pt;}
.y33_c00232{bottom:797.693333pt;}
.y37_c00232{bottom:798.266667pt;}
.y31_c00232{bottom:798.640000pt;}
.y2a_c00232{bottom:809.306667pt;}
.y2d_c00232{bottom:809.693333pt;}
.y2c_c00232{bottom:810.840000pt;}
.y2e_c00232{bottom:811.226667pt;}
.y2b_c00232{bottom:811.600000pt;}
.y25_c00232{bottom:822.066667pt;}
.y24_c00232{bottom:822.266667pt;}
.y23_c00232{bottom:823.026667pt;}
.y22_c00232{bottom:823.226667pt;}
.y29_c00232{bottom:823.400000pt;}
.y27_c00232{bottom:824.560000pt;}
.y28_c00232{bottom:825.306667pt;}
.y26_c00232{bottom:826.266667pt;}
.y20_c00232{bottom:834.640000pt;}
.y1f_c00232{bottom:835.400000pt;}
.y1c_c00232{bottom:836.360000pt;}
.y1e_c00232{bottom:837.306667pt;}
.y1d_c00232{bottom:837.506667pt;}
.y21_c00232{bottom:838.266667pt;}
.y19_c00232{bottom:849.693333pt;}
.y1a_c00232{bottom:850.266667pt;}
.y18_c00232{bottom:850.640000pt;}
.y17_c00232{bottom:850.840000pt;}
.y1b_c00232{bottom:851.600000pt;}
.y16_c00232{bottom:871.026667pt;}
.y15_c00232{bottom:889.493333pt;}
.y12_c00232{bottom:890.440000pt;}
.y11_c00232{bottom:892.360000pt;}
.y14_c00232{bottom:892.560000pt;}
.y13_c00232{bottom:893.693333pt;}
.yf_c00232{bottom:907.773333pt;}
.y10_c00232{bottom:908.733333pt;}
.ye_c00232{bottom:909.693333pt;}
.ya_c00232{bottom:925.893333pt;}
.yb_c00232{bottom:926.066667pt;}
.y9_c00232{bottom:927.026667pt;}
.yc_c00232{bottom:927.226667pt;}
.yd_c00232{bottom:927.973333pt;}
.y5_c00232{bottom:942.440000pt;}
.y3_c00232{bottom:943.400000pt;}
.y6_c00232{bottom:943.773333pt;}
.y4_c00232{bottom:944.360000pt;}
.y7_c00232{bottom:944.560000pt;}
.y8_c00232{bottom:945.306667pt;}
.y2_c00232{bottom:977.693333pt;}
.y1_c00232{bottom:979.600000pt;}
.hc_c00232{height:3.739141pt;}
.h8_c00232{height:14.890964pt;}
.h5_c00232{height:20.466875pt;}
.h1_c00232{height:22.303646pt;}
.hb_c00232{height:24.039557pt;}
.h6_c00232{height:27.879557pt;}
.ha_c00232{height:29.372891pt;}
.h2_c00232{height:31.618698pt;}
.h9_c00232{height:34.706224pt;}
.h3_c00232{height:35.357839pt;}
.h4_c00232{height:39.031380pt;}
.h7_c00232{height:42.770521pt;}
.h0_c00232{height:1186.666667pt;}
.w0_c00232{width:782.666667pt;}
.x0_c00232{left:0.000000pt;}
.x3_c00232{left:134.666667pt;}
.x4c_c00232{left:135.626667pt;}
.x8b_c00232{left:137.706667pt;}
.x109_c00232{left:138.666667pt;}
.xaa_c00232{left:146.666667pt;}
.x30_c00232{left:147.626667pt;}
.xb0_c00232{left:150.293333pt;}
.xe3_c00232{left:151.240000pt;}
.x69_c00232{left:160.000000pt;}
.x77_c00232{left:160.960000pt;}
.x31_c00232{left:162.666667pt;}
.x5a_c00232{left:164.000000pt;}
.xa5_c00232{left:166.293333pt;}
.xfd_c00232{left:171.040000pt;}
.x11_c00232{left:172.960000pt;}
.x8c_c00232{left:174.666667pt;}
.xe2_c00232{left:175.626667pt;}
.xc1_c00232{left:177.333333pt;}
.x55_c00232{left:179.040000pt;}
.x105_c00232{left:180.000000pt;}
.x4_c00232{left:185.333333pt;}
.x101_c00232{left:186.666667pt;}
.xf2_c00232{left:188.373333pt;}
.x82_c00232{left:190.293333pt;}
.x94_c00232{left:193.333333pt;}
.x9d_c00232{left:194.666667pt;}
.x3c_c00232{left:196.000000pt;}
.xd0_c00232{left:196.960000pt;}
.xf8_c00232{left:199.040000pt;}
.xd5_c00232{left:200.000000pt;}
.xca_c00232{left:201.706667pt;}
.x6a_c00232{left:202.666667pt;}
.x4d_c00232{left:203.626667pt;}
.x8d_c00232{left:205.706667pt;}
.x12_c00232{left:208.373333pt;}
.xc9_c00232{left:209.333333pt;}
.x6b_c00232{left:212.373333pt;}
.xef_c00232{left:215.626667pt;}
.xd6_c00232{left:216.960000pt;}
.x5_c00232{left:218.666667pt;}
.xc2_c00232{left:220.960000pt;}
.xd1_c00232{left:222.666667pt;}
.x32_c00232{left:224.000000pt;}
.x3d_c00232{left:226.293333pt;}
.x5b_c00232{left:228.000000pt;}
.x8e_c00232{left:229.333333pt;}
.xf9_c00232{left:230.293333pt;}
.xab_c00232{left:231.426667pt;}
.x56_c00232{left:233.333333pt;}
.x95_c00232{left:234.666667pt;}
.x1f_c00232{left:235.626667pt;}
.xd7_c00232{left:238.666667pt;}
.x83_c00232{left:240.000000pt;}
.x13_c00232{left:241.706667pt;}
.xa6_c00232{left:242.666667pt;}
.xea_c00232{left:244.000000pt;}
.x29_c00232{left:246.666667pt;}
.x87_c00232{left:249.706667pt;}
.x84_c00232{left:250.666667pt;}
.x3e_c00232{left:252.373333pt;}
.xf3_c00232{left:253.333333pt;}
.x52_c00232{left:255.240000pt;}
.xf0_c00232{left:256.373333pt;}
.x4e_c00232{left:257.333333pt;}
.x6_c00232{left:259.040000pt;}
.xcb_c00232{left:260.000000pt;}
.x96_c00232{left:261.333333pt;}
.xe4_c00232{left:263.040000pt;}
.x57_c00232{left:264.373333pt;}
.x14_c00232{left:265.706667pt;}
.xac_c00232{left:268.000000pt;}
.xb3_c00232{left:269.333333pt;}
.xd8_c00232{left:270.666667pt;}
.x8f_c00232{left:272.373333pt;}
.x9f_c00232{left:273.333333pt;}
.x33_c00232{left:276.000000pt;}
.x20_c00232{left:277.333333pt;}
.xf4_c00232{left:278.466667pt;}
.x42_c00232{left:280.960000pt;}
.x70_c00232{left:282.293333pt;}
.x64_c00232{left:284.000000pt;}
.x6c_c00232{left:285.706667pt;}
.xd9_c00232{left:287.040000pt;}
.x4f_c00232{left:288.373333pt;}
.x3f_c00232{left:289.333333pt;}
.x97_c00232{left:291.626667pt;}
.x7_c00232{left:293.333333pt;}
.xad_c00232{left:294.293333pt;}
.x106_c00232{left:295.626667pt;}
.xfa_c00232{left:297.333333pt;}
.x7b_c00232{left:299.040000pt;}
.xbb_c00232{left:301.333333pt;}
.x34_c00232{left:302.293333pt;}
.x5c_c00232{left:303.626667pt;}
.x98_c00232{left:305.333333pt;}
.xa0_c00232{left:306.666667pt;}
.x21_c00232{left:307.626667pt;}
.xc3_c00232{left:309.333333pt;}
.x43_c00232{left:311.040000pt;}
.x50_c00232{left:312.000000pt;}
.x65_c00232{left:314.293333pt;}
.x85_c00232{left:316.760000pt;}
.x40_c00232{left:317.706667pt;}
.xae_c00232{left:318.666667pt;}
.xbc_c00232{left:320.000000pt;}
.x108_c00232{left:321.706667pt;}
.x6d_c00232{left:322.666667pt;}
.x71_c00232{left:323.626667pt;}
.x15_c00232{left:324.960000pt;}
.x90_c00232{left:326.293333pt;}
.x5d_c00232{left:328.373333pt;}
.x35_c00232{left:332.373333pt;}
.xd2_c00232{left:333.706667pt;}
.x58_c00232{left:337.333333pt;}
.x2a_c00232{left:339.626667pt;}
.x41_c00232{left:341.333333pt;}
.x9e_c00232{left:344.000000pt;}
.x36_c00232{left:345.333333pt;}
.x10a_c00232{left:347.240000pt;}
.x6e_c00232{left:348.960000pt;}
.xaf_c00232{left:352.000000pt;}
.x1_c00232{left:353.333333pt;}
.x8_c00232{left:354.666667pt;}
.x103_c00232{left:356.000000pt;}
.x7c_c00232{left:357.706667pt;}
.xe5_c00232{left:359.040000pt;}
.x88_c00232{left:360.373333pt;}
.xda_c00232{left:361.706667pt;}
.xfb_c00232{left:363.040000pt;}
.x22_c00232{left:364.373333pt;}
.x5e_c00232{left:365.333333pt;}
.xb4_c00232{left:366.666667pt;}
.x59_c00232{left:367.626667pt;}
.xcc_c00232{left:370.293333pt;}
.xf1_c00232{left:372.373333pt;}
.x6f_c00232{left:373.333333pt;}
.x7d_c00232{left:374.666667pt;}
.xd3_c00232{left:375.626667pt;}
.x5f_c00232{left:376.960000pt;}
.x78_c00232{left:380.000000pt;}
.xdd_c00232{left:380.960000pt;}
.x66_c00232{left:382.666667pt;}
.x16_c00232{left:384.000000pt;}
.xe6_c00232{left:384.960000pt;}
.xb5_c00232{left:386.666667pt;}
.x44_c00232{left:388.000000pt;}
.x53_c00232{left:392.373333pt;}
.x9_c00232{left:393.706667pt;}
.x51_c00232{left:394.666667pt;}
.x72_c00232{left:396.373333pt;}
.xde_c00232{left:397.333333pt;}
.x17_c00232{left:399.040000pt;}
.x37_c00232{left:400.000000pt;}
.xbd_c00232{left:400.960000pt;}
.x107_c00232{left:403.040000pt;}
.x2b_c00232{left:404.000000pt;}
.xb6_c00232{left:405.333333pt;}
.x23_c00232{left:406.666667pt;}
.xcd_c00232{left:407.626667pt;}
.x79_c00232{left:411.040000pt;}
.xd4_c00232{left:417.333333pt;}
.xa_c00232{left:418.666667pt;}
.x45_c00232{left:420.000000pt;}
.x24_c00232{left:421.706667pt;}
.x73_c00232{left:422.666667pt;}
.xeb_c00232{left:423.626667pt;}
.x18_c00232{left:424.960000pt;}
.xc4_c00232{left:427.626667pt;}
.x7e_c00232{left:430.666667pt;}
.x38_c00232{left:432.373333pt;}
.x91_c00232{left:433.706667pt;}
.x7a_c00232{left:436.000000pt;}
.x60_c00232{left:437.706667pt;}
.xf5_c00232{left:439.626667pt;}
.x46_c00232{left:441.706667pt;}
.x104_c00232{left:442.666667pt;}
.x19_c00232{left:444.000000pt;}
.x99_c00232{left:446.293333pt;}
.x86_c00232{left:448.000000pt;}
.xec_c00232{left:449.333333pt;}
.xe7_c00232{left:450.666667pt;}
.x61_c00232{left:453.333333pt;}
.x39_c00232{left:456.000000pt;}
.x74_c00232{left:457.706667pt;}
.xa1_c00232{left:459.040000pt;}
.x25_c00232{left:461.333333pt;}
.xc5_c00232{left:463.040000pt;}
.x9a_c00232{left:466.666667pt;}
.xb_c00232{left:468.000000pt;}
.x7f_c00232{left:470.666667pt;}
.x92_c00232{left:472.000000pt;}
.x47_c00232{left:473.333333pt;}
.x67_c00232{left:475.040000pt;}
.xdb_c00232{left:476.373333pt;}
.x89_c00232{left:478.293333pt;}
.x80_c00232{left:480.960000pt;}
.xf6_c00232{left:482.666667pt;}
.x1a_c00232{left:485.333333pt;}
.x102_c00232{left:488.373333pt;}
.xfe_c00232{left:489.333333pt;}
.x2c_c00232{left:490.666667pt;}
.xdc_c00232{left:497.333333pt;}
.x9b_c00232{left:499.040000pt;}
.x1b_c00232{left:501.333333pt;}
.x93_c00232{left:503.040000pt;}
.xc6_c00232{left:504.000000pt;}
.x48_c00232{left:504.960000pt;}
.xa2_c00232{left:508.000000pt;}
.xbe_c00232{left:509.333333pt;}
.x9c_c00232{left:513.333333pt;}
.x3a_c00232{left:515.040000pt;}
.xc_c00232{left:519.040000pt;}
.xa7_c00232{left:522.666667pt;}
.x26_c00232{left:526.666667pt;}
.x2d_c00232{left:529.333333pt;}
.xed_c00232{left:533.333333pt;}
.xe8_c00232{left:537.333333pt;}
.xa3_c00232{left:540.373333pt;}
.xbf_c00232{left:541.333333pt;}
.xb7_c00232{left:544.373333pt;}
.x62_c00232{left:545.333333pt;}
.x1c_c00232{left:546.666667pt;}
.x2e_c00232{left:549.333333pt;}
.xff_c00232{left:552.373333pt;}
.xb1_c00232{left:553.333333pt;}
.xd_c00232{left:556.000000pt;}
.x75_c00232{left:557.333333pt;}
.xc0_c00232{left:559.626667pt;}
.xa8_c00232{left:561.333333pt;}
.xc7_c00232{left:562.666667pt;}
.x81_c00232{left:564.960000pt;}
.xb8_c00232{left:568.373333pt;}
.x49_c00232{left:572.000000pt;}
.x27_c00232{left:576.373333pt;}
.xc8_c00232{left:578.293333pt;}
.xdf_c00232{left:580.000000pt;}
.x1d_c00232{left:581.333333pt;}
.x4a_c00232{left:582.666667pt;}
.x8a_c00232{left:583.626667pt;}
.x100_c00232{left:585.333333pt;}
.x76_c00232{left:588.960000pt;}
.xe_c00232{left:592.373333pt;}
.xee_c00232{left:593.333333pt;}
.x54_c00232{left:594.666667pt;}
.x3b_c00232{left:597.333333pt;}
.xe9_c00232{left:599.626667pt;}
.xfc_c00232{left:601.333333pt;}
.xe0_c00232{left:603.040000pt;}
.xf7_c00232{left:608.373333pt;}
.x2f_c00232{left:610.293333pt;}
.xb9_c00232{left:611.626667pt;}
.x1e_c00232{left:612.573333pt;}
.xce_c00232{left:614.293333pt;}
.x63_c00232{left:615.426667pt;}
.xa4_c00232{left:616.373333pt;}
.xa9_c00232{left:620.000000pt;}
.x68_c00232{left:621.333333pt;}
.xf_c00232{left:622.666667pt;}
.x28_c00232{left:623.626667pt;}
.x2_c00232{left:624.960000pt;}
.x4b_c00232{left:627.626667pt;}
.xba_c00232{left:631.040000pt;}
.xcf_c00232{left:632.000000pt;}
.x10_c00232{left:637.333333pt;}
.xe1_c00232{left:638.666667pt;}
.xb2_c00232{left:640.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_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_0606dcfa2f8fa7c6c81027f5.woff2')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc0_c00233{transform:matrix(0.218824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218824,0.000000,0.000000,0.250000,0,0);}
.m98_c00233{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.mc3_c00233{transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);}
.m25_c00233{transform:matrix(0.366181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366181,0.000000,0.000000,0.250000,0,0);}
.m52_c00233{transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);}
.m2c_c00233{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m4f_c00233{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m26_c00233{transform:matrix(0.372316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372316,0.000000,0.000000,0.250000,0,0);}
.m96_c00233{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00233{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m21_c00233{transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);}
.m59_c00233{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m15_c00233{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m28_c00233{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m27_c00233{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m57_c00233{transform:matrix(0.402607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402607,0.000000,0.000000,0.250000,0,0);}
.m5_c00233{transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);}
.m84_c00233{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m24_c00233{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m66_c00233{transform:matrix(0.415584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415584,0.000000,0.000000,0.250000,0,0);}
.maf_c00233{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.m7f_c00233{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m92_c00233{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m5f_c00233{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m82_c00233{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m63_c00233{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m77_c00233{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m10_c00233{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m9d_c00233{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m89_c00233{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_c00233{transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);}
.mf_c00233{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m80_c00233{transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);}
.m86_c00233{transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);}
.m3b_c00233{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m3d_c00233{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m56_c00233{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.m4_c00233{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.md_c00233{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m32_c00233{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m67_c00233{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m42_c00233{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m6e_c00233{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m49_c00233{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m9c_c00233{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.mb9_c00233{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.mab_c00233{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.m8_c00233{transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);}
.m81_c00233{transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);}
.mb4_c00233{transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);}
.m7b_c00233{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.mb1_c00233{transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);}
.m5a_c00233{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.ma1_c00233{transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);}
.ma7_c00233{transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479968,0.000000,0.000000,0.250000,0,0);}
.m2d_c00233{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m9b_c00233{transform:matrix(0.481571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481571,0.000000,0.000000,0.250000,0,0);}
.m6f_c00233{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m94_c00233{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m12_c00233{transform:matrix(0.487477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487477,0.000000,0.000000,0.250000,0,0);}
.m6_c00233{transform:matrix(0.488235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488235,0.000000,0.000000,0.250000,0,0);}
.m8f_c00233{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m1_c00233{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m5c_c00233{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m16_c00233{transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);}
.m9_c00233{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.mb3_c00233{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.mb_c00233{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);}
.m50_c00233{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m2a_c00233{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m70_c00233{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m33_c00233{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m51_c00233{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m55_c00233{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m4d_c00233{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m61_c00233{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m18_c00233{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.mbf_c00233{transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520032,0.000000,0.000000,0.250000,0,0);}
.m46_c00233{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mbc_c00233{transform:matrix(0.521635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521635,0.000000,0.000000,0.250000,0,0);}
.m35_c00233{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m43_c00233{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m6a_c00233{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m37_c00233{transform:matrix(0.528293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528293,0.000000,0.000000,0.250000,0,0);}
.m48_c00233{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m3c_c00233{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.ma5_c00233{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00233{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m97_c00233{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m3f_c00233{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m2b_c00233{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m6d_c00233{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m22_c00233{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m1a_c00233{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.mb5_c00233{transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);}
.m2f_c00233{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m58_c00233{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m53_c00233{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m6c_c00233{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m54_c00233{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.me_c00233{transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);}
.m19_c00233{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mc_c00233{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m1f_c00233{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.ma6_c00233{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m2e_c00233{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m62_c00233{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m4b_c00233{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m8e_c00233{transform:matrix(0.555147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555147,0.000000,0.000000,0.250000,0,0);}
.m31_c00233{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.ma_c00233{transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);}
.m7e_c00233{transform:matrix(0.557269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557269,0.000000,0.000000,0.250000,0,0);}
.m7_c00233{transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);}
.m60_c00233{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.m8b_c00233{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m68_c00233{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mb8_c00233{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m17_c00233{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m23_c00233{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m40_c00233{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m1e_c00233{transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);}
.m14_c00233{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m3e_c00233{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m39_c00233{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m9f_c00233{transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);}
.m2_c00233{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m7c_c00233{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m65_c00233{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m75_c00233{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m79_c00233{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m30_c00233{transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);}
.mb0_c00233{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.m4a_c00233{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m0_c00233{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m71_c00233{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m88_c00233{transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);}
.m78_c00233{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m87_c00233{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m41_c00233{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m83_c00233{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m34_c00233{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m8a_c00233{transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615639,0.000000,0.000000,0.250000,0,0);}
.ma3_c00233{transform:matrix(0.616987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616987,0.000000,0.000000,0.250000,0,0);}
.m29_c00233{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m5e_c00233{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.maa_c00233{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m7d_c00233{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.m9e_c00233{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m73_c00233{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m5b_c00233{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m7a_c00233{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.mc1_c00233{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.m20_c00233{transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);}
.m3_c00233{transform:matrix(0.649896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649896,0.000000,0.000000,0.250000,0,0);}
.m90_c00233{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m69_c00233{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m13_c00233{transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);}
.m38_c00233{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m93_c00233{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m47_c00233{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m74_c00233{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m76_c00233{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.mae_c00233{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.m9a_c00233{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m72_c00233{transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);}
.mc4_c00233{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.m5d_c00233{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mc2_c00233{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m4c_c00233{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m95_c00233{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.mbe_c00233{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m8d_c00233{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m6b_c00233{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);}
.mbd_c00233{transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);}
.ma9_c00233{transform:matrix(0.720264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720264,0.000000,0.000000,0.250000,0,0);}
.m99_c00233{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m44_c00233{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.mbb_c00233{transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);}
.m1b_c00233{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mba_c00233{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.mb2_c00233{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.m8c_c00233{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m45_c00233{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m4e_c00233{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mb6_c00233{transform:matrix(0.767677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.767677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.767677,0.000000,0.000000,0.250000,0,0);}
.ma4_c00233{transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788546,0.000000,0.000000,0.250000,0,0);}
.m91_c00233{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.ma2_c00233{transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);}
.mad_c00233{transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);}
.ma8_c00233{transform:matrix(0.820485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820485,0.000000,0.000000,0.250000,0,0);}
.mb7_c00233{transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);}
.m64_c00233{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mac_c00233{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.ma0_c00233{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m1c_c00233{transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);}
.m11_c00233{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m36_c00233{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v2_c00233{vertical-align:-6.000000px;}
.v0_c00233{vertical-align:0.000000px;}
.v1_c00233{vertical-align:6.000000px;}
.ls1_c00233{letter-spacing:0.000000px;}
.ls0_c00233{letter-spacing:51.359972px;}
.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;}
}
.ws20_c00233{word-spacing:0.000000px;}
.ws0_c00233{word-spacing:1.753321px;}
.ws12_c00233{word-spacing:11.661937px;}
.ws10_c00233{word-spacing:13.611988px;}
.ws16_c00233{word-spacing:17.262919px;}
.ws19_c00233{word-spacing:18.138913px;}
.ws7_c00233{word-spacing:19.620812px;}
.wse_c00233{word-spacing:23.728109px;}
.ws1d_c00233{word-spacing:23.767013px;}
.wsc_c00233{word-spacing:24.638400px;}
.ws17_c00233{word-spacing:30.234255px;}
.ws1b_c00233{word-spacing:30.607622px;}
.ws18_c00233{word-spacing:31.025931px;}
.wsb_c00233{word-spacing:31.838295px;}
.ws14_c00233{word-spacing:32.798400px;}
.ws8_c00233{word-spacing:33.638400px;}
.ws4_c00233{word-spacing:36.326509px;}
.ws13_c00233{word-spacing:36.638400px;}
.ws6_c00233{word-spacing:36.857815px;}
.ws9_c00233{word-spacing:38.705522px;}
.ws1c_c00233{word-spacing:39.052735px;}
.ws2_c00233{word-spacing:39.846793px;}
.ws15_c00233{word-spacing:39.933737px;}
.wsf_c00233{word-spacing:40.994598px;}
.ws1e_c00233{word-spacing:41.867773px;}
.ws1a_c00233{word-spacing:43.166897px;}
.ws5_c00233{word-spacing:43.405892px;}
.ws1_c00233{word-spacing:47.719225px;}
.wsa_c00233{word-spacing:49.006362px;}
.ws1f_c00233{word-spacing:49.838400px;}
.ws3_c00233{word-spacing:51.294028px;}
.wsd_c00233{word-spacing:60.822309px;}
.ws11_c00233{word-spacing:77.102923px;}
._a_c00233{width:31.721093px;}
._9_c00233{width:33.837252px;}
._3_c00233{width:35.570880px;}
._8_c00233{width:39.792375px;}
._5_c00233{width:42.203230px;}
._0_c00233{width:44.811895px;}
._4_c00233{width:47.300543px;}
._7_c00233{width:48.948678px;}
._2_c00233{width:51.359972px;}
._1_c00233{width:53.542665px;}
._6_c00233{width:59.631031px;}
.fc0_c00233{color:transparent;}
.fs5_c00233{font-size:3.420000px;}
.fs9_c00233{font-size:11.880000px;}
.fs8_c00233{font-size:13.620000px;}
.fs6_c00233{font-size:18.720000px;}
.fs0_c00233{font-size:20.400000px;}
.fs3_c00233{font-size:25.500000px;}
.fs1_c00233{font-size:28.920000px;}
.fs2_c00233{font-size:32.340000px;}
.fs4_c00233{font-size:35.700000px;}
.fs7_c00233{font-size:39.120000px;}
.y0_c00233{bottom:0.000000px;}
.y4d_c00233{bottom:250.470000px;}
.y4a_c00233{bottom:251.130000px;}
.y4f_c00233{bottom:251.325000px;}
.y4b_c00233{bottom:251.970000px;}
.y4c_c00233{bottom:252.405000px;}
.y4e_c00233{bottom:253.470000px;}
.y46_c00233{bottom:266.325000px;}
.y44_c00233{bottom:267.195000px;}
.y47_c00233{bottom:267.405000px;}
.y45_c00233{bottom:268.470000px;}
.y48_c00233{bottom:269.550000px;}
.y49_c00233{bottom:269.970000px;}
.y3d_c00233{bottom:281.130000px;}
.y43_c00233{bottom:281.325000px;}
.y41_c00233{bottom:281.550000px;}
.y3e_c00233{bottom:282.405000px;}
.y42_c00233{bottom:283.470000px;}
.y40_c00233{bottom:283.695000px;}
.y3f_c00233{bottom:284.550000px;}
.y37_c00233{bottom:302.745000px;}
.y3b_c00233{bottom:304.680000px;}
.y38_c00233{bottom:304.905000px;}
.y3c_c00233{bottom:305.745000px;}
.y39_c00233{bottom:306.825000px;}
.y3a_c00233{bottom:307.905000px;}
.y30_c00233{bottom:324.405000px;}
.y31_c00233{bottom:324.825000px;}
.y36_c00233{bottom:325.245000px;}
.y32_c00233{bottom:325.470000px;}
.y33_c00233{bottom:325.905000px;}
.y34_c00233{bottom:326.130000px;}
.y35_c00233{bottom:327.405000px;}
.y29_c00233{bottom:343.245000px;}
.y2e_c00233{bottom:344.745000px;}
.y2a_c00233{bottom:345.405000px;}
.y2c_c00233{bottom:345.630000px;}
.y2b_c00233{bottom:346.470000px;}
.y2d_c00233{bottom:346.905000px;}
.y2f_c00233{bottom:347.970000px;}
.y27_c00233{bottom:362.745000px;}
.y21_c00233{bottom:363.405000px;}
.y28_c00233{bottom:363.825000px;}
.y22_c00233{bottom:364.905000px;}
.y26_c00233{bottom:365.130000px;}
.y25_c00233{bottom:365.325000px;}
.y24_c00233{bottom:366.405000px;}
.y23_c00233{bottom:366.420000px;}
.y1c_c00233{bottom:383.325000px;}
.y1f_c00233{bottom:383.745000px;}
.y20_c00233{bottom:384.825000px;}
.y1e_c00233{bottom:385.905000px;}
.y1d_c00233{bottom:385.920000px;}
.y16_c00233{bottom:402.180000px;}
.y1a_c00233{bottom:403.680000px;}
.y1b_c00233{bottom:404.550000px;}
.y19_c00233{bottom:404.745000px;}
.y17_c00233{bottom:405.420000px;}
.y18_c00233{bottom:406.905000px;}
.y14_c00233{bottom:422.745000px;}
.y11_c00233{bottom:424.905000px;}
.y12_c00233{bottom:425.130000px;}
.y15_c00233{bottom:425.970000px;}
.y13_c00233{bottom:426.420000px;}
.ya_c00233{bottom:442.245000px;}
.yc_c00233{bottom:443.325000px;}
.ye_c00233{bottom:444.405000px;}
.yf_c00233{bottom:444.825000px;}
.yd_c00233{bottom:445.470000px;}
.y10_c00233{bottom:445.905000px;}
.yb_c00233{bottom:445.920000px;}
.y8_c00233{bottom:464.970000px;}
.y9_c00233{bottom:466.050000px;}
.y7_c00233{bottom:466.905000px;}
.y6_c00233{bottom:467.970000px;}
.y5_c00233{bottom:488.325000px;}
.y3_c00233{bottom:490.905000px;}
.y4_c00233{bottom:491.325000px;}
.yc1_c00233{bottom:546.630000px;}
.yc2_c00233{bottom:547.695000px;}
.ybf_c00233{bottom:557.550000px;}
.ybc_c00233{bottom:560.130000px;}
.ybd_c00233{bottom:560.775000px;}
.yc0_c00233{bottom:561.195000px;}
.ybb_c00233{bottom:562.695000px;}
.ybe_c00233{bottom:562.920000px;}
.yba_c00233{bottom:573.630000px;}
.yb5_c00233{bottom:574.695000px;}
.yb6_c00233{bottom:575.130000px;}
.yb7_c00233{bottom:575.775000px;}
.yb9_c00233{bottom:576.195000px;}
.yb8_c00233{bottom:577.470000px;}
.yb4_c00233{bottom:588.630000px;}
.yb3_c00233{bottom:589.275000px;}
.yb2_c00233{bottom:589.695000px;}
.yb1_c00233{bottom:602.130000px;}
.yb0_c00233{bottom:602.775000px;}
.yaf_c00233{bottom:603.195000px;}
.yae_c00233{bottom:615.630000px;}
.yac_c00233{bottom:616.695000px;}
.yad_c00233{bottom:617.130000px;}
.yab_c00233{bottom:629.130000px;}
.yaa_c00233{bottom:630.195000px;}
.ya8_c00233{bottom:630.630000px;}
.ya9_c00233{bottom:631.695000px;}
.ya6_c00233{bottom:643.695000px;}
.ya4_c00233{bottom:644.130000px;}
.ya5_c00233{bottom:644.775000px;}
.ya7_c00233{bottom:645.195000px;}
.ya1_c00233{bottom:656.550000px;}
.ya3_c00233{bottom:657.630000px;}
.ya2_c00233{bottom:658.695000px;}
.ya0_c00233{bottom:671.130000px;}
.y9e_c00233{bottom:672.195000px;}
.y9f_c00233{bottom:672.630000px;}
.y9d_c00233{bottom:684.630000px;}
.y9c_c00233{bottom:685.695000px;}
.y9b_c00233{bottom:686.130000px;}
.y97_c00233{bottom:698.130000px;}
.y99_c00233{bottom:699.195000px;}
.y98_c00233{bottom:699.630000px;}
.y9a_c00233{bottom:700.695000px;}
.y96_c00233{bottom:711.630000px;}
.y95_c00233{bottom:712.695000px;}
.y94_c00233{bottom:713.130000px;}
.y93_c00233{bottom:714.195000px;}
.y8f_c00233{bottom:726.630000px;}
.y90_c00233{bottom:727.275000px;}
.y91_c00233{bottom:727.695000px;}
.y92_c00233{bottom:728.130000px;}
.y8d_c00233{bottom:740.130000px;}
.y8e_c00233{bottom:741.195000px;}
.y89_c00233{bottom:753.630000px;}
.y8c_c00233{bottom:754.695000px;}
.y8a_c00233{bottom:755.130000px;}
.y8b_c00233{bottom:756.195000px;}
.y88_c00233{bottom:769.695000px;}
.y86_c00233{bottom:782.130000px;}
.y87_c00233{bottom:783.195000px;}
.y84_c00233{bottom:795.630000px;}
.y83_c00233{bottom:796.695000px;}
.y81_c00233{bottom:797.130000px;}
.y82_c00233{bottom:798.195000px;}
.y85_c00233{bottom:798.420000px;}
.y7e_c00233{bottom:810.195000px;}
.y7d_c00233{bottom:810.630000px;}
.y7f_c00233{bottom:811.695000px;}
.y80_c00233{bottom:811.920000px;}
.y7c_c00233{bottom:823.695000px;}
.y7b_c00233{bottom:824.130000px;}
.y7a_c00233{bottom:825.195000px;}
.y77_c00233{bottom:837.195000px;}
.y78_c00233{bottom:837.630000px;}
.y79_c00233{bottom:838.695000px;}
.y75_c00233{bottom:851.130000px;}
.y76_c00233{bottom:852.195000px;}
.y74_c00233{bottom:864.630000px;}
.y73_c00233{bottom:865.695000px;}
.y72_c00233{bottom:879.630000px;}
.y71_c00233{bottom:880.695000px;}
.y70_c00233{bottom:893.130000px;}
.y6f_c00233{bottom:894.195000px;}
.y6d_c00233{bottom:906.630000px;}
.y6c_c00233{bottom:907.050000px;}
.y6e_c00233{bottom:907.695000px;}
.y6b_c00233{bottom:908.130000px;}
.y69_c00233{bottom:920.130000px;}
.y6a_c00233{bottom:921.195000px;}
.y68_c00233{bottom:922.695000px;}
.y66_c00233{bottom:934.050000px;}
.y67_c00233{bottom:934.695000px;}
.y65_c00233{bottom:936.195000px;}
.y62_c00233{bottom:947.550000px;}
.y64_c00233{bottom:948.195000px;}
.y63_c00233{bottom:948.630000px;}
.y61_c00233{bottom:949.695000px;}
.y60_c00233{bottom:962.130000px;}
.y5f_c00233{bottom:963.195000px;}
.y5d_c00233{bottom:981.195000px;}
.y5e_c00233{bottom:981.630000px;}
.y5b_c00233{bottom:993.630000px;}
.y5c_c00233{bottom:994.695000px;}
.y5a_c00233{bottom:1008.195000px;}
.y59_c00233{bottom:1009.695000px;}
.y58_c00233{bottom:1027.050000px;}
.y57_c00233{bottom:1027.470000px;}
.y54_c00233{bottom:1039.905000px;}
.y56_c00233{bottom:1041.405000px;}
.y52_c00233{bottom:1042.050000px;}
.y53_c00233{bottom:1042.470000px;}
.y55_c00233{bottom:1043.550000px;}
.y51_c00233{bottom:1061.970000px;}
.y50_c00233{bottom:1066.050000px;}
.y2_c00233{bottom:1099.905000px;}
.y1_c00233{bottom:1102.050000px;}
.h6_c00233{height:4.206533px;}
.hc_c00233{height:14.612168px;}
.h9_c00233{height:16.752334px;}
.ha_c00233{height:22.752334px;}
.h7_c00233{height:23.025234px;}
.h1_c00233{height:25.091602px;}
.hb_c00233{height:29.025234px;}
.h4_c00233{height:31.364502px;}
.h2_c00233{height:35.571035px;}
.h3_c00233{height:39.777568px;}
.h5_c00233{height:43.910303px;}
.h8_c00233{height:48.116836px;}
.h0_c00233{height:1335.000000px;}
.w0_c00233{width:880.500000px;}
.x0_c00233{left:0.000000px;}
.x2_c00233{left:151.080000px;}
.x56_c00233{left:153.855000px;}
.x70_c00233{left:154.920000px;}
.x71_c00233{left:163.500000px;}
.x7_c00233{left:166.500000px;}
.x10_c00233{left:168.420000px;}
.x20_c00233{left:169.500000px;}
.x4d_c00233{left:171.000000px;}
.x7d_c00233{left:175.500000px;}
.x82_c00233{left:177.000000px;}
.x62_c00233{left:183.645000px;}
.xa6_c00233{left:189.000000px;}
.x57_c00233{left:190.500000px;}
.x72_c00233{left:198.000000px;}
.x83_c00233{left:199.080000px;}
.x9c_c00233{left:202.920000px;}
.x3e_c00233{left:204.420000px;}
.x11_c00233{left:208.920000px;}
.xa7_c00233{left:217.080000px;}
.xab_c00233{left:220.500000px;}
.xaa_c00233{left:225.000000px;}
.x8_c00233{left:226.500000px;}
.x76_c00233{left:231.420000px;}
.xa9_c00233{left:234.000000px;}
.x58_c00233{left:237.000000px;}
.x8f_c00233{left:238.500000px;}
.x93_c00233{left:240.000000px;}
.x3f_c00233{left:241.080000px;}
.x4e_c00233{left:245.580000px;}
.xad_c00233{left:247.500000px;}
.x59_c00233{left:249.000000px;}
.x1a_c00233{left:250.500000px;}
.x32_c00233{left:252.000000px;}
.x6b_c00233{left:255.000000px;}
.x9d_c00233{left:256.080000px;}
.x94_c00233{left:258.000000px;}
.x21_c00233{left:259.500000px;}
.x2a_c00233{left:261.000000px;}
.x63_c00233{left:264.000000px;}
.x4f_c00233{left:265.920000px;}
.xa4_c00233{left:267.000000px;}
.x12_c00233{left:268.500000px;}
.x73_c00233{left:270.000000px;}
.x33_c00233{left:271.080000px;}
.xb0_c00233{left:276.000000px;}
.xae_c00233{left:279.000000px;}
.x22_c00233{left:280.500000px;}
.x2b_c00233{left:282.000000px;}
.xb1_c00233{left:283.500000px;}
.x9_c00233{left:285.000000px;}
.x5a_c00233{left:286.500000px;}
.x13_c00233{left:289.500000px;}
.x77_c00233{left:295.500000px;}
.x50_c00233{left:300.420000px;}
.x1b_c00233{left:301.500000px;}
.x3_c00233{left:309.000000px;}
.x40_c00233{left:310.500000px;}
.x2c_c00233{left:313.500000px;}
.x1c_c00233{left:322.080000px;}
.x41_c00233{left:325.500000px;}
.x64_c00233{left:326.580000px;}
.x84_c00233{left:330.420000px;}
.x95_c00233{left:333.000000px;}
.x51_c00233{left:334.500000px;}
.xac_c00233{left:337.500000px;}
.x98_c00233{left:339.000000px;}
.x6c_c00233{left:340.080000px;}
.x8a_c00233{left:342.000000px;}
.x34_c00233{left:345.000000px;}
.xa_c00233{left:348.420000px;}
.x1d_c00233{left:349.500000px;}
.x42_c00233{left:351.000000px;}
.x5b_c00233{left:357.420000px;}
.x23_c00233{left:364.500000px;}
.x35_c00233{left:366.000000px;}
.x14_c00233{left:367.500000px;}
.x85_c00233{left:370.920000px;}
.x8d_c00233{left:375.000000px;}
.x43_c00233{left:379.500000px;}
.x2d_c00233{left:380.580000px;}
.xb_c00233{left:384.000000px;}
.x5c_c00233{left:385.500000px;}
.x4_c00233{left:388.920000px;}
.x7b_c00233{left:393.000000px;}
.x65_c00233{left:394.500000px;}
.x1_c00233{left:399.000000px;}
.x44_c00233{left:402.000000px;}
.x15_c00233{left:403.080000px;}
.x78_c00233{left:406.500000px;}
.x6d_c00233{left:408.000000px;}
.xa2_c00233{left:409.500000px;}
.x74_c00233{left:411.000000px;}
.x9b_c00233{left:412.500000px;}
.x7e_c00233{left:415.500000px;}
.x6e_c00233{left:421.080000px;}
.x16_c00233{left:423.000000px;}
.x7c_c00233{left:427.500000px;}
.x66_c00233{left:429.000000px;}
.x2e_c00233{left:432.420000px;}
.x1e_c00233{left:434.145000px;}
.x36_c00233{left:437.580000px;}
.x24_c00233{left:439.275000px;}
.xc_c00233{left:447.000000px;}
.x7f_c00233{left:451.500000px;}
.x5d_c00233{left:452.580000px;}
.x75_c00233{left:456.000000px;}
.x45_c00233{left:457.080000px;}
.x67_c00233{left:458.355000px;}
.x2f_c00233{left:469.500000px;}
.x5_c00233{left:471.420000px;}
.x25_c00233{left:478.500000px;}
.x52_c00233{left:480.000000px;}
.xd_c00233{left:481.500000px;}
.x86_c00233{left:487.920000px;}
.x37_c00233{left:490.920000px;}
.x90_c00233{left:492.000000px;}
.x9e_c00233{left:493.500000px;}
.x99_c00233{left:496.500000px;}
.xaf_c00233{left:498.000000px;}
.x68_c00233{left:501.000000px;}
.x46_c00233{left:504.000000px;}
.x26_c00233{left:513.000000px;}
.x1f_c00233{left:516.000000px;}
.x38_c00233{left:517.920000px;}
.x79_c00233{left:519.000000px;}
.x47_c00233{left:522.000000px;}
.x5e_c00233{left:523.500000px;}
.x87_c00233{left:529.500000px;}
.x69_c00233{left:530.580000px;}
.x91_c00233{left:532.500000px;}
.x30_c00233{left:535.080000px;}
.x9a_c00233{left:537.000000px;}
.x48_c00233{left:538.500000px;}
.x17_c00233{left:541.080000px;}
.x6_c00233{left:543.855000px;}
.x39_c00233{left:546.000000px;}
.xe_c00233{left:550.920000px;}
.x49_c00233{left:552.000000px;}
.x6a_c00233{left:558.000000px;}
.x31_c00233{left:565.500000px;}
.x8e_c00233{left:568.500000px;}
.x88_c00233{left:570.000000px;}
.x80_c00233{left:573.000000px;}
.x27_c00233{left:580.080000px;}
.x3a_c00233{left:582.000000px;}
.x5f_c00233{left:584.580000px;}
.xf_c00233{left:588.855000px;}
.x53_c00233{left:592.080000px;}
.x18_c00233{left:595.500000px;}
.x60_c00233{left:604.920000px;}
.xa3_c00233{left:606.000000px;}
.x9f_c00233{left:609.000000px;}
.x54_c00233{left:610.500000px;}
.x8b_c00233{left:612.000000px;}
.x6f_c00233{left:616.500000px;}
.x4a_c00233{left:620.580000px;}
.x61_c00233{left:630.000000px;}
.x3b_c00233{left:632.580000px;}
.x19_c00233{left:636.000000px;}
.x4b_c00233{left:639.420000px;}
.x89_c00233{left:640.920000px;}
.x81_c00233{left:643.500000px;}
.x96_c00233{left:645.000000px;}
.xa5_c00233{left:646.920000px;}
.xa0_c00233{left:649.500000px;}
.x3c_c00233{left:652.920000px;}
.xa1_c00233{left:654.000000px;}
.x7a_c00233{left:657.000000px;}
.x4c_c00233{left:664.500000px;}
.x28_c00233{left:671.775000px;}
.x55_c00233{left:676.500000px;}
.x3d_c00233{left:681.000000px;}
.x92_c00233{left:685.500000px;}
.x97_c00233{left:687.420000px;}
.xa8_c00233{left:690.000000px;}
.xb2_c00233{left:691.500000px;}
.x8c_c00233{left:693.000000px;}
.x29_c00233{left:711.420000px;}
@media print{
.v2_c00233{vertical-align:-5.333333pt;}
.v0_c00233{vertical-align:0.000000pt;}
.v1_c00233{vertical-align:5.333333pt;}
.ls1_c00233{letter-spacing:0.000000pt;}
.ls0_c00233{letter-spacing:45.653309pt;}
.ws20_c00233{word-spacing:0.000000pt;}
.ws0_c00233{word-spacing:1.558507pt;}
.ws12_c00233{word-spacing:10.366166pt;}
.ws10_c00233{word-spacing:12.099545pt;}
.ws16_c00233{word-spacing:15.344817pt;}
.ws19_c00233{word-spacing:16.123479pt;}
.ws7_c00233{word-spacing:17.440722pt;}
.wse_c00233{word-spacing:21.091652pt;}
.ws1d_c00233{word-spacing:21.126233pt;}
.wsc_c00233{word-spacing:21.900800pt;}
.ws17_c00233{word-spacing:26.874893pt;}
.ws1b_c00233{word-spacing:27.206775pt;}
.ws18_c00233{word-spacing:27.578605pt;}
.wsb_c00233{word-spacing:28.300707pt;}
.ws14_c00233{word-spacing:29.154133pt;}
.ws8_c00233{word-spacing:29.900800pt;}
.ws4_c00233{word-spacing:32.290231pt;}
.ws13_c00233{word-spacing:32.567467pt;}
.ws6_c00233{word-spacing:32.762503pt;}
.ws9_c00233{word-spacing:34.404908pt;}
.ws1c_c00233{word-spacing:34.713542pt;}
.ws2_c00233{word-spacing:35.419372pt;}
.ws15_c00233{word-spacing:35.496655pt;}
.wsf_c00233{word-spacing:36.439642pt;}
.ws1e_c00233{word-spacing:37.215798pt;}
.ws1a_c00233{word-spacing:38.370575pt;}
.ws5_c00233{word-spacing:38.583015pt;}
.ws1_c00233{word-spacing:42.417089pt;}
.wsa_c00233{word-spacing:43.561211pt;}
.ws1f_c00233{word-spacing:44.300800pt;}
.ws3_c00233{word-spacing:45.594692pt;}
.wsd_c00233{word-spacing:54.064274pt;}
.ws11_c00233{word-spacing:68.535931pt;}
._a_c00233{width:28.196527pt;}
._9_c00233{width:30.077557pt;}
._3_c00233{width:31.618560pt;}
._8_c00233{width:35.371000pt;}
._5_c00233{width:37.513982pt;}
._0_c00233{width:39.832796pt;}
._4_c00233{width:42.044927pt;}
._7_c00233{width:43.509936pt;}
._2_c00233{width:45.653309pt;}
._1_c00233{width:47.593480pt;}
._6_c00233{width:53.005361pt;}
.fs5_c00233{font-size:3.040000pt;}
.fs9_c00233{font-size:10.560000pt;}
.fs8_c00233{font-size:12.106667pt;}
.fs6_c00233{font-size:16.640000pt;}
.fs0_c00233{font-size:18.133333pt;}
.fs3_c00233{font-size:22.666667pt;}
.fs1_c00233{font-size:25.706667pt;}
.fs2_c00233{font-size:28.746667pt;}
.fs4_c00233{font-size:31.733333pt;}
.fs7_c00233{font-size:34.773333pt;}
.y0_c00233{bottom:0.000000pt;}
.y4d_c00233{bottom:222.640000pt;}
.y4a_c00233{bottom:223.226667pt;}
.y4f_c00233{bottom:223.400000pt;}
.y4b_c00233{bottom:223.973333pt;}
.y4c_c00233{bottom:224.360000pt;}
.y4e_c00233{bottom:225.306667pt;}
.y46_c00233{bottom:236.733333pt;}
.y44_c00233{bottom:237.506667pt;}
.y47_c00233{bottom:237.693333pt;}
.y45_c00233{bottom:238.640000pt;}
.y48_c00233{bottom:239.600000pt;}
.y49_c00233{bottom:239.973333pt;}
.y3d_c00233{bottom:249.893333pt;}
.y43_c00233{bottom:250.066667pt;}
.y41_c00233{bottom:250.266667pt;}
.y3e_c00233{bottom:251.026667pt;}
.y42_c00233{bottom:251.973333pt;}
.y40_c00233{bottom:252.173333pt;}
.y3f_c00233{bottom:252.933333pt;}
.y37_c00233{bottom:269.106667pt;}
.y3b_c00233{bottom:270.826667pt;}
.y38_c00233{bottom:271.026667pt;}
.y3c_c00233{bottom:271.773333pt;}
.y39_c00233{bottom:272.733333pt;}
.y3a_c00233{bottom:273.693333pt;}
.y30_c00233{bottom:288.360000pt;}
.y31_c00233{bottom:288.733333pt;}
.y36_c00233{bottom:289.106667pt;}
.y32_c00233{bottom:289.306667pt;}
.y33_c00233{bottom:289.693333pt;}
.y34_c00233{bottom:289.893333pt;}
.y35_c00233{bottom:291.026667pt;}
.y29_c00233{bottom:305.106667pt;}
.y2e_c00233{bottom:306.440000pt;}
.y2a_c00233{bottom:307.026667pt;}
.y2c_c00233{bottom:307.226667pt;}
.y2b_c00233{bottom:307.973333pt;}
.y2d_c00233{bottom:308.360000pt;}
.y2f_c00233{bottom:309.306667pt;}
.y27_c00233{bottom:322.440000pt;}
.y21_c00233{bottom:323.026667pt;}
.y28_c00233{bottom:323.400000pt;}
.y22_c00233{bottom:324.360000pt;}
.y26_c00233{bottom:324.560000pt;}
.y25_c00233{bottom:324.733333pt;}
.y24_c00233{bottom:325.693333pt;}
.y23_c00233{bottom:325.706667pt;}
.y1c_c00233{bottom:340.733333pt;}
.y1f_c00233{bottom:341.106667pt;}
.y20_c00233{bottom:342.066667pt;}
.y1e_c00233{bottom:343.026667pt;}
.y1d_c00233{bottom:343.040000pt;}
.y16_c00233{bottom:357.493333pt;}
.y1a_c00233{bottom:358.826667pt;}
.y1b_c00233{bottom:359.600000pt;}
.y19_c00233{bottom:359.773333pt;}
.y17_c00233{bottom:360.373333pt;}
.y18_c00233{bottom:361.693333pt;}
.y14_c00233{bottom:375.773333pt;}
.y11_c00233{bottom:377.693333pt;}
.y12_c00233{bottom:377.893333pt;}
.y15_c00233{bottom:378.640000pt;}
.y13_c00233{bottom:379.040000pt;}
.ya_c00233{bottom:393.106667pt;}
.yc_c00233{bottom:394.066667pt;}
.ye_c00233{bottom:395.026667pt;}
.yf_c00233{bottom:395.400000pt;}
.yd_c00233{bottom:395.973333pt;}
.y10_c00233{bottom:396.360000pt;}
.yb_c00233{bottom:396.373333pt;}
.y8_c00233{bottom:413.306667pt;}
.y9_c00233{bottom:414.266667pt;}
.y7_c00233{bottom:415.026667pt;}
.y6_c00233{bottom:415.973333pt;}
.y5_c00233{bottom:434.066667pt;}
.y3_c00233{bottom:436.360000pt;}
.y4_c00233{bottom:436.733333pt;}
.yc1_c00233{bottom:485.893333pt;}
.yc2_c00233{bottom:486.840000pt;}
.ybf_c00233{bottom:495.600000pt;}
.ybc_c00233{bottom:497.893333pt;}
.ybd_c00233{bottom:498.466667pt;}
.yc0_c00233{bottom:498.840000pt;}
.ybb_c00233{bottom:500.173333pt;}
.ybe_c00233{bottom:500.373333pt;}
.yba_c00233{bottom:509.893333pt;}
.yb5_c00233{bottom:510.840000pt;}
.yb6_c00233{bottom:511.226667pt;}
.yb7_c00233{bottom:511.800000pt;}
.yb9_c00233{bottom:512.173333pt;}
.yb8_c00233{bottom:513.306667pt;}
.yb4_c00233{bottom:523.226667pt;}
.yb3_c00233{bottom:523.800000pt;}
.yb2_c00233{bottom:524.173333pt;}
.yb1_c00233{bottom:535.226667pt;}
.yb0_c00233{bottom:535.800000pt;}
.yaf_c00233{bottom:536.173333pt;}
.yae_c00233{bottom:547.226667pt;}
.yac_c00233{bottom:548.173333pt;}
.yad_c00233{bottom:548.560000pt;}
.yab_c00233{bottom:559.226667pt;}
.yaa_c00233{bottom:560.173333pt;}
.ya8_c00233{bottom:560.560000pt;}
.ya9_c00233{bottom:561.506667pt;}
.ya6_c00233{bottom:572.173333pt;}
.ya4_c00233{bottom:572.560000pt;}
.ya5_c00233{bottom:573.133333pt;}
.ya7_c00233{bottom:573.506667pt;}
.ya1_c00233{bottom:583.600000pt;}
.ya3_c00233{bottom:584.560000pt;}
.ya2_c00233{bottom:585.506667pt;}
.ya0_c00233{bottom:596.560000pt;}
.y9e_c00233{bottom:597.506667pt;}
.y9f_c00233{bottom:597.893333pt;}
.y9d_c00233{bottom:608.560000pt;}
.y9c_c00233{bottom:609.506667pt;}
.y9b_c00233{bottom:609.893333pt;}
.y97_c00233{bottom:620.560000pt;}
.y99_c00233{bottom:621.506667pt;}
.y98_c00233{bottom:621.893333pt;}
.y9a_c00233{bottom:622.840000pt;}
.y96_c00233{bottom:632.560000pt;}
.y95_c00233{bottom:633.506667pt;}
.y94_c00233{bottom:633.893333pt;}
.y93_c00233{bottom:634.840000pt;}
.y8f_c00233{bottom:645.893333pt;}
.y90_c00233{bottom:646.466667pt;}
.y91_c00233{bottom:646.840000pt;}
.y92_c00233{bottom:647.226667pt;}
.y8d_c00233{bottom:657.893333pt;}
.y8e_c00233{bottom:658.840000pt;}
.y89_c00233{bottom:669.893333pt;}
.y8c_c00233{bottom:670.840000pt;}
.y8a_c00233{bottom:671.226667pt;}
.y8b_c00233{bottom:672.173333pt;}
.y88_c00233{bottom:684.173333pt;}
.y86_c00233{bottom:695.226667pt;}
.y87_c00233{bottom:696.173333pt;}
.y84_c00233{bottom:707.226667pt;}
.y83_c00233{bottom:708.173333pt;}
.y81_c00233{bottom:708.560000pt;}
.y82_c00233{bottom:709.506667pt;}
.y85_c00233{bottom:709.706667pt;}
.y7e_c00233{bottom:720.173333pt;}
.y7d_c00233{bottom:720.560000pt;}
.y7f_c00233{bottom:721.506667pt;}
.y80_c00233{bottom:721.706667pt;}
.y7c_c00233{bottom:732.173333pt;}
.y7b_c00233{bottom:732.560000pt;}
.y7a_c00233{bottom:733.506667pt;}
.y77_c00233{bottom:744.173333pt;}
.y78_c00233{bottom:744.560000pt;}
.y79_c00233{bottom:745.506667pt;}
.y75_c00233{bottom:756.560000pt;}
.y76_c00233{bottom:757.506667pt;}
.y74_c00233{bottom:768.560000pt;}
.y73_c00233{bottom:769.506667pt;}
.y72_c00233{bottom:781.893333pt;}
.y71_c00233{bottom:782.840000pt;}
.y70_c00233{bottom:793.893333pt;}
.y6f_c00233{bottom:794.840000pt;}
.y6d_c00233{bottom:805.893333pt;}
.y6c_c00233{bottom:806.266667pt;}
.y6e_c00233{bottom:806.840000pt;}
.y6b_c00233{bottom:807.226667pt;}
.y69_c00233{bottom:817.893333pt;}
.y6a_c00233{bottom:818.840000pt;}
.y68_c00233{bottom:820.173333pt;}
.y66_c00233{bottom:830.266667pt;}
.y67_c00233{bottom:830.840000pt;}
.y65_c00233{bottom:832.173333pt;}
.y62_c00233{bottom:842.266667pt;}
.y64_c00233{bottom:842.840000pt;}
.y63_c00233{bottom:843.226667pt;}
.y61_c00233{bottom:844.173333pt;}
.y60_c00233{bottom:855.226667pt;}
.y5f_c00233{bottom:856.173333pt;}
.y5d_c00233{bottom:872.173333pt;}
.y5e_c00233{bottom:872.560000pt;}
.y5b_c00233{bottom:883.226667pt;}
.y5c_c00233{bottom:884.173333pt;}
.y5a_c00233{bottom:896.173333pt;}
.y59_c00233{bottom:897.506667pt;}
.y58_c00233{bottom:912.933333pt;}
.y57_c00233{bottom:913.306667pt;}
.y54_c00233{bottom:924.360000pt;}
.y56_c00233{bottom:925.693333pt;}
.y52_c00233{bottom:926.266667pt;}
.y53_c00233{bottom:926.640000pt;}
.y55_c00233{bottom:927.600000pt;}
.y51_c00233{bottom:943.973333pt;}
.y50_c00233{bottom:947.600000pt;}
.y2_c00233{bottom:977.693333pt;}
.y1_c00233{bottom:979.600000pt;}
.h6_c00233{height:3.739141pt;}
.hc_c00233{height:12.988594pt;}
.h9_c00233{height:14.890964pt;}
.ha_c00233{height:20.224297pt;}
.h7_c00233{height:20.466875pt;}
.h1_c00233{height:22.303646pt;}
.hb_c00233{height:25.800208pt;}
.h4_c00233{height:27.879557pt;}
.h2_c00233{height:31.618698pt;}
.h3_c00233{height:35.357839pt;}
.h5_c00233{height:39.031380pt;}
.h8_c00233{height:42.770521pt;}
.h0_c00233{height:1186.666667pt;}
.w0_c00233{width:782.666667pt;}
.x0_c00233{left:0.000000pt;}
.x2_c00233{left:134.293333pt;}
.x56_c00233{left:136.760000pt;}
.x70_c00233{left:137.706667pt;}
.x71_c00233{left:145.333333pt;}
.x7_c00233{left:148.000000pt;}
.x10_c00233{left:149.706667pt;}
.x20_c00233{left:150.666667pt;}
.x4d_c00233{left:152.000000pt;}
.x7d_c00233{left:156.000000pt;}
.x82_c00233{left:157.333333pt;}
.x62_c00233{left:163.240000pt;}
.xa6_c00233{left:168.000000pt;}
.x57_c00233{left:169.333333pt;}
.x72_c00233{left:176.000000pt;}
.x83_c00233{left:176.960000pt;}
.x9c_c00233{left:180.373333pt;}
.x3e_c00233{left:181.706667pt;}
.x11_c00233{left:185.706667pt;}
.xa7_c00233{left:192.960000pt;}
.xab_c00233{left:196.000000pt;}
.xaa_c00233{left:200.000000pt;}
.x8_c00233{left:201.333333pt;}
.x76_c00233{left:205.706667pt;}
.xa9_c00233{left:208.000000pt;}
.x58_c00233{left:210.666667pt;}
.x8f_c00233{left:212.000000pt;}
.x93_c00233{left:213.333333pt;}
.x3f_c00233{left:214.293333pt;}
.x4e_c00233{left:218.293333pt;}
.xad_c00233{left:220.000000pt;}
.x59_c00233{left:221.333333pt;}
.x1a_c00233{left:222.666667pt;}
.x32_c00233{left:224.000000pt;}
.x6b_c00233{left:226.666667pt;}
.x9d_c00233{left:227.626667pt;}
.x94_c00233{left:229.333333pt;}
.x21_c00233{left:230.666667pt;}
.x2a_c00233{left:232.000000pt;}
.x63_c00233{left:234.666667pt;}
.x4f_c00233{left:236.373333pt;}
.xa4_c00233{left:237.333333pt;}
.x12_c00233{left:238.666667pt;}
.x73_c00233{left:240.000000pt;}
.x33_c00233{left:240.960000pt;}
.xb0_c00233{left:245.333333pt;}
.xae_c00233{left:248.000000pt;}
.x22_c00233{left:249.333333pt;}
.x2b_c00233{left:250.666667pt;}
.xb1_c00233{left:252.000000pt;}
.x9_c00233{left:253.333333pt;}
.x5a_c00233{left:254.666667pt;}
.x13_c00233{left:257.333333pt;}
.x77_c00233{left:262.666667pt;}
.x50_c00233{left:267.040000pt;}
.x1b_c00233{left:268.000000pt;}
.x3_c00233{left:274.666667pt;}
.x40_c00233{left:276.000000pt;}
.x2c_c00233{left:278.666667pt;}
.x1c_c00233{left:286.293333pt;}
.x41_c00233{left:289.333333pt;}
.x64_c00233{left:290.293333pt;}
.x84_c00233{left:293.706667pt;}
.x95_c00233{left:296.000000pt;}
.x51_c00233{left:297.333333pt;}
.xac_c00233{left:300.000000pt;}
.x98_c00233{left:301.333333pt;}
.x6c_c00233{left:302.293333pt;}
.x8a_c00233{left:304.000000pt;}
.x34_c00233{left:306.666667pt;}
.xa_c00233{left:309.706667pt;}
.x1d_c00233{left:310.666667pt;}
.x42_c00233{left:312.000000pt;}
.x5b_c00233{left:317.706667pt;}
.x23_c00233{left:324.000000pt;}
.x35_c00233{left:325.333333pt;}
.x14_c00233{left:326.666667pt;}
.x85_c00233{left:329.706667pt;}
.x8d_c00233{left:333.333333pt;}
.x43_c00233{left:337.333333pt;}
.x2d_c00233{left:338.293333pt;}
.xb_c00233{left:341.333333pt;}
.x5c_c00233{left:342.666667pt;}
.x4_c00233{left:345.706667pt;}
.x7b_c00233{left:349.333333pt;}
.x65_c00233{left:350.666667pt;}
.x1_c00233{left:354.666667pt;}
.x44_c00233{left:357.333333pt;}
.x15_c00233{left:358.293333pt;}
.x78_c00233{left:361.333333pt;}
.x6d_c00233{left:362.666667pt;}
.xa2_c00233{left:364.000000pt;}
.x74_c00233{left:365.333333pt;}
.x9b_c00233{left:366.666667pt;}
.x7e_c00233{left:369.333333pt;}
.x6e_c00233{left:374.293333pt;}
.x16_c00233{left:376.000000pt;}
.x7c_c00233{left:380.000000pt;}
.x66_c00233{left:381.333333pt;}
.x2e_c00233{left:384.373333pt;}
.x1e_c00233{left:385.906667pt;}
.x36_c00233{left:388.960000pt;}
.x24_c00233{left:390.466667pt;}
.xc_c00233{left:397.333333pt;}
.x7f_c00233{left:401.333333pt;}
.x5d_c00233{left:402.293333pt;}
.x75_c00233{left:405.333333pt;}
.x45_c00233{left:406.293333pt;}
.x67_c00233{left:407.426667pt;}
.x2f_c00233{left:417.333333pt;}
.x5_c00233{left:419.040000pt;}
.x25_c00233{left:425.333333pt;}
.x52_c00233{left:426.666667pt;}
.xd_c00233{left:428.000000pt;}
.x86_c00233{left:433.706667pt;}
.x37_c00233{left:436.373333pt;}
.x90_c00233{left:437.333333pt;}
.x9e_c00233{left:438.666667pt;}
.x99_c00233{left:441.333333pt;}
.xaf_c00233{left:442.666667pt;}
.x68_c00233{left:445.333333pt;}
.x46_c00233{left:448.000000pt;}
.x26_c00233{left:456.000000pt;}
.x1f_c00233{left:458.666667pt;}
.x38_c00233{left:460.373333pt;}
.x79_c00233{left:461.333333pt;}
.x47_c00233{left:464.000000pt;}
.x5e_c00233{left:465.333333pt;}
.x87_c00233{left:470.666667pt;}
.x69_c00233{left:471.626667pt;}
.x91_c00233{left:473.333333pt;}
.x30_c00233{left:475.626667pt;}
.x9a_c00233{left:477.333333pt;}
.x48_c00233{left:478.666667pt;}
.x17_c00233{left:480.960000pt;}
.x6_c00233{left:483.426667pt;}
.x39_c00233{left:485.333333pt;}
.xe_c00233{left:489.706667pt;}
.x49_c00233{left:490.666667pt;}
.x6a_c00233{left:496.000000pt;}
.x31_c00233{left:502.666667pt;}
.x8e_c00233{left:505.333333pt;}
.x88_c00233{left:506.666667pt;}
.x80_c00233{left:509.333333pt;}
.x27_c00233{left:515.626667pt;}
.x3a_c00233{left:517.333333pt;}
.x5f_c00233{left:519.626667pt;}
.xf_c00233{left:523.426667pt;}
.x53_c00233{left:526.293333pt;}
.x18_c00233{left:529.333333pt;}
.x60_c00233{left:537.706667pt;}
.xa3_c00233{left:538.666667pt;}
.x9f_c00233{left:541.333333pt;}
.x54_c00233{left:542.666667pt;}
.x8b_c00233{left:544.000000pt;}
.x6f_c00233{left:548.000000pt;}
.x4a_c00233{left:551.626667pt;}
.x61_c00233{left:560.000000pt;}
.x3b_c00233{left:562.293333pt;}
.x19_c00233{left:565.333333pt;}
.x4b_c00233{left:568.373333pt;}
.x89_c00233{left:569.706667pt;}
.x81_c00233{left:572.000000pt;}
.x96_c00233{left:573.333333pt;}
.xa5_c00233{left:575.040000pt;}
.xa0_c00233{left:577.333333pt;}
.x3c_c00233{left:580.373333pt;}
.xa1_c00233{left:581.333333pt;}
.x7a_c00233{left:584.000000pt;}
.x4c_c00233{left:590.666667pt;}
.x28_c00233{left:597.133333pt;}
.x55_c00233{left:601.333333pt;}
.x3d_c00233{left:605.333333pt;}
.x92_c00233{left:609.333333pt;}
.x97_c00233{left:611.040000pt;}
.xa8_c00233{left:613.333333pt;}
.xb2_c00233{left:614.666667pt;}
.x8c_c00233{left:616.000000pt;}
.x29_c00233{left:632.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_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_1f8f98f34295393328b18c2f.woff2')format("woff");}.ff1_c00234{font-family:ff1_c00234;line-height:1.688965;font-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_c00234{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);}
.m88_c00234{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.m8d_c00234{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m93_c00234{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m5b_c00234{transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);}
.ma6_c00234{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m9c_c00234{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m1b_c00234{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m22_c00234{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m91_c00234{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m8e_c00234{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.mae_c00234{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m1a_c00234{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m96_c00234{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m5a_c00234{transform:matrix(0.392255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392255,0.000000,0.000000,0.250000,0,0);}
.m67_c00234{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m7a_c00234{transform:matrix(0.394939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394939,0.000000,0.000000,0.250000,0,0);}
.mb7_c00234{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m3_c00234{transform:matrix(0.398423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398423,0.000000,0.000000,0.250000,0,0);}
.m90_c00234{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);}
.m64_c00234{transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);}
.mb3_c00234{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.ma3_c00234{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m32_c00234{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m78_c00234{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m66_c00234{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m79_c00234{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m8c_c00234{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m4f_c00234{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m5_c00234{transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);}
.m65_c00234{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m49_c00234{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m2e_c00234{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m7c_c00234{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m60_c00234{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.ma9_c00234{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m61_c00234{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m1f_c00234{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m5f_c00234{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.ma8_c00234{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m56_c00234{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.ma7_c00234{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m10_c00234{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m39_c00234{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mb5_c00234{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m57_c00234{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.mac_c00234{transform:matrix(0.424397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424397,0.000000,0.000000,0.250000,0,0);}
.m11_c00234{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m15_c00234{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.maf_c00234{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m63_c00234{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m6f_c00234{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m71_c00234{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m52_c00234{transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);}
.m1e_c00234{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m34_c00234{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m6c_c00234{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m92_c00234{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m6e_c00234{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m43_c00234{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m54_c00234{transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);}
.m8b_c00234{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m2_c00234{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mb1_c00234{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m7f_c00234{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m9b_c00234{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m2d_c00234{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m4c_c00234{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m62_c00234{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m24_c00234{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m47_c00234{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m25_c00234{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m87_c00234{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m82_c00234{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m99_c00234{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.m14_c00234{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.ma5_c00234{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m2f_c00234{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m31_c00234{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.m48_c00234{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m45_c00234{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m7d_c00234{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.mb_c00234{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m3b_c00234{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m8f_c00234{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m1_c00234{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.md_c00234{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m28_c00234{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m95_c00234{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m9e_c00234{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m3c_c00234{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_c00234{transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);}
.m97_c00234{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m50_c00234{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.ma1_c00234{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m21_c00234{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m12_c00234{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m38_c00234{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m98_c00234{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.m40_c00234{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m44_c00234{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m19_c00234{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m76_c00234{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m70_c00234{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m72_c00234{transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);}
.m1d_c00234{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m89_c00234{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m3e_c00234{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mf_c00234{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m75_c00234{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m73_c00234{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m6b_c00234{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m4d_c00234{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m26_c00234{transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);}
.ma4_c00234{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m42_c00234{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m17_c00234{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.mab_c00234{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m3f_c00234{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mb6_c00234{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mb2_c00234{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m4e_c00234{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m3a_c00234{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m7e_c00234{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.ma0_c00234{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m5c_c00234{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m68_c00234{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m9d_c00234{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m30_c00234{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m8a_c00234{transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);}
.m3d_c00234{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m6d_c00234{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m2b_c00234{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m59_c00234{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m41_c00234{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m58_c00234{transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);}
.m4a_c00234{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m18_c00234{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m20_c00234{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m7_c00234{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m86_c00234{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m5d_c00234{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m2a_c00234{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m46_c00234{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m1c_c00234{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m6a_c00234{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m77_c00234{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m69_c00234{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m13_c00234{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m27_c00234{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m80_c00234{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m2c_c00234{transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);}
.m7b_c00234{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.ma2_c00234{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m0_c00234{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.maa_c00234{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mc_c00234{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m51_c00234{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.ma_c00234{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);}
.m4b_c00234{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m84_c00234{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m9_c00234{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);}
.m6_c00234{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.mad_c00234{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m29_c00234{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m23_c00234{transform:matrix(0.676349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676349,0.000000,0.000000,0.250000,0,0);}
.m4_c00234{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.me_c00234{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mb0_c00234{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m8_c00234{transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);}
.m81_c00234{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m33_c00234{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m85_c00234{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mb4_c00234{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m5e_c00234{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m74_c00234{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m9a_c00234{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m37_c00234{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m53_c00234{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.m36_c00234{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m9f_c00234{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m83_c00234{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.m16_c00234{transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);}
.m94_c00234{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
.fs7_c00234{font-size:3.420000px;}
.fs9_c00234{font-size:11.880000px;}
.fs5_c00234{font-size:13.620000px;}
.fs4_c00234{font-size:18.720000px;}
.fs0_c00234{font-size:20.400000px;}
.fs2_c00234{font-size:25.500000px;}
.fs1_c00234{font-size:28.920000px;}
.fs3_c00234{font-size:32.340000px;}
.fs6_c00234{font-size:35.700000px;}
.fs8_c00234{font-size:39.120000px;}
.y0_c00234{bottom:0.000000px;}
.y81_c00234{bottom:628.245000px;}
.y83_c00234{bottom:629.130000px;}
.y84_c00234{bottom:629.970000px;}
.y82_c00234{bottom:630.405000px;}
.y80_c00234{bottom:645.405000px;}
.y7f_c00234{bottom:647.745000px;}
.y7e_c00234{bottom:648.630000px;}
.y7d_c00234{bottom:649.905000px;}
.y7c_c00234{bottom:650.325000px;}
.y7b_c00234{bottom:665.745000px;}
.y79_c00234{bottom:667.245000px;}
.y7a_c00234{bottom:669.405000px;}
.y78_c00234{bottom:670.905000px;}
.y75_c00234{bottom:686.745000px;}
.y77_c00234{bottom:687.825000px;}
.y73_c00234{bottom:688.905000px;}
.y76_c00234{bottom:689.130000px;}
.y74_c00234{bottom:689.970000px;}
.y72_c00234{bottom:690.405000px;}
.y71_c00234{bottom:705.405000px;}
.y6e_c00234{bottom:706.245000px;}
.y6c_c00234{bottom:707.745000px;}
.y6f_c00234{bottom:708.405000px;}
.y6d_c00234{bottom:708.630000px;}
.y70_c00234{bottom:709.470000px;}
.y6a_c00234{bottom:724.905000px;}
.y69_c00234{bottom:727.245000px;}
.y6b_c00234{bottom:728.130000px;}
.y67_c00234{bottom:729.405000px;}
.y68_c00234{bottom:729.420000px;}
.y64_c00234{bottom:745.245000px;}
.y66_c00234{bottom:745.905000px;}
.y63_c00234{bottom:746.745000px;}
.y65_c00234{bottom:747.405000px;}
.y62_c00234{bottom:748.470000px;}
.y61_c00234{bottom:748.905000px;}
.y58_c00234{bottom:763.275000px;}
.y60_c00234{bottom:764.745000px;}
.y59_c00234{bottom:765.405000px;}
.y5f_c00234{bottom:766.245000px;}
.y5a_c00234{bottom:767.130000px;}
.y5e_c00234{bottom:767.325000px;}
.y5c_c00234{bottom:767.970000px;}
.y5d_c00234{bottom:768.405000px;}
.y56_c00234{bottom:768.630000px;}
.y5b_c00234{bottom:769.470000px;}
.y57_c00234{bottom:771.630000px;}
.y54_c00234{bottom:783.405000px;}
.y55_c00234{bottom:784.470000px;}
.y52_c00234{bottom:784.905000px;}
.y50_c00234{bottom:785.745000px;}
.y4f_c00234{bottom:785.970000px;}
.y4e_c00234{bottom:786.180000px;}
.y51_c00234{bottom:786.825000px;}
.y53_c00234{bottom:787.905000px;}
.y4d_c00234{bottom:803.745000px;}
.y4a_c00234{bottom:804.405000px;}
.y4c_c00234{bottom:805.245000px;}
.y49_c00234{bottom:807.405000px;}
.y48_c00234{bottom:807.630000px;}
.y4b_c00234{bottom:808.470000px;}
.y47_c00234{bottom:823.245000px;}
.y45_c00234{bottom:823.905000px;}
.y43_c00234{bottom:824.745000px;}
.y44_c00234{bottom:826.905000px;}
.y46_c00234{bottom:827.970000px;}
.y40_c00234{bottom:844.245000px;}
.y3f_c00234{bottom:845.745000px;}
.y41_c00234{bottom:846.405000px;}
.y42_c00234{bottom:847.470000px;}
.y3e_c00234{bottom:863.745000px;}
.y3a_c00234{bottom:864.180000px;}
.y3d_c00234{bottom:865.245000px;}
.y3c_c00234{bottom:866.130000px;}
.y3b_c00234{bottom:867.405000px;}
.y39_c00234{bottom:883.680000px;}
.y37_c00234{bottom:884.325000px;}
.y35_c00234{bottom:884.745000px;}
.y36_c00234{bottom:885.630000px;}
.y33_c00234{bottom:885.825000px;}
.y38_c00234{bottom:886.470000px;}
.y34_c00234{bottom:886.905000px;}
.y2f_c00234{bottom:904.245000px;}
.y32_c00234{bottom:905.130000px;}
.y31_c00234{bottom:905.325000px;}
.y2e_c00234{bottom:906.405000px;}
.y30_c00234{bottom:907.470000px;}
.y2c_c00234{bottom:923.325000px;}
.y2b_c00234{bottom:923.745000px;}
.y2d_c00234{bottom:924.825000px;}
.y29_c00234{bottom:925.905000px;}
.y2a_c00234{bottom:926.970000px;}
.y25_c00234{bottom:940.905000px;}
.y26_c00234{bottom:942.825000px;}
.y23_c00234{bottom:943.245000px;}
.y27_c00234{bottom:944.130000px;}
.y28_c00234{bottom:944.325000px;}
.y24_c00234{bottom:945.405000px;}
.y22_c00234{bottom:946.905000px;}
.y20_c00234{bottom:961.905000px;}
.y1e_c00234{bottom:962.745000px;}
.y21_c00234{bottom:964.905000px;}
.y1f_c00234{bottom:965.130000px;}
.y1d_c00234{bottom:966.405000px;}
.y1a_c00234{bottom:982.245000px;}
.y1b_c00234{bottom:983.325000px;}
.y19_c00234{bottom:984.405000px;}
.y1c_c00234{bottom:984.630000px;}
.y15_c00234{bottom:1001.745000px;}
.y17_c00234{bottom:1002.825000px;}
.y16_c00234{bottom:1003.905000px;}
.y18_c00234{bottom:1004.970000px;}
.y14_c00234{bottom:1005.405000px;}
.y13_c00234{bottom:1021.245000px;}
.y12_c00234{bottom:1021.470000px;}
.yf_c00234{bottom:1022.745000px;}
.y11_c00234{bottom:1023.405000px;}
.y10_c00234{bottom:1024.920000px;}
.yc_c00234{bottom:1048.905000px;}
.yd_c00234{bottom:1049.970000px;}
.yb_c00234{bottom:1050.405000px;}
.ye_c00234{bottom:1051.050000px;}
.y4_c00234{bottom:1062.825000px;}
.y7_c00234{bottom:1063.050000px;}
.y3_c00234{bottom:1063.470000px;}
.y8_c00234{bottom:1063.905000px;}
.y5_c00234{bottom:1064.130000px;}
.ya_c00234{bottom:1064.970000px;}
.y9_c00234{bottom:1065.195000px;}
.y6_c00234{bottom:1066.050000px;}
.y2_c00234{bottom:1099.905000px;}
.y1_c00234{bottom:1102.050000px;}
.h8_c00234{height:4.206533px;}
.ha_c00234{height:14.612168px;}
.h6_c00234{height:16.752334px;}
.h5_c00234{height:23.025234px;}
.h1_c00234{height:25.091602px;}
.h3_c00234{height:31.364502px;}
.h2_c00234{height:35.571035px;}
.h4_c00234{height:39.777568px;}
.h7_c00234{height:43.910303px;}
.h9_c00234{height:48.116836px;}
.h0_c00234{height:1335.000000px;}
.w0_c00234{width:880.500000px;}
.x0_c00234{left:0.000000px;}
.x20_c00234{left:152.580000px;}
.x11_c00234{left:154.500000px;}
.xab_c00234{left:158.580000px;}
.x7c_c00234{left:166.500000px;}
.x3_c00234{left:168.000000px;}
.x16_c00234{left:169.080000px;}
.x21_c00234{left:172.920000px;}
.xac_c00234{left:174.000000px;}
.x43_c00234{left:177.420000px;}
.x8d_c00234{left:180.000000px;}
.x12_c00234{left:181.920000px;}
.x8e_c00234{left:184.080000px;}
.x4_c00234{left:186.000000px;}
.x96_c00234{left:187.080000px;}
.x51_c00234{left:191.580000px;}
.x8f_c00234{left:194.580000px;}
.xa1_c00234{left:199.500000px;}
.x22_c00234{left:204.000000px;}
.x85_c00234{left:208.080000px;}
.x2c_c00234{left:215.145000px;}
.x90_c00234{left:219.000000px;}
.xb8_c00234{left:220.500000px;}
.x13_c00234{left:223.500000px;}
.x61_c00234{left:224.580000px;}
.x52_c00234{left:229.920000px;}
.x44_c00234{left:232.500000px;}
.x74_c00234{left:233.580000px;}
.x9c_c00234{left:240.000000px;}
.x7d_c00234{left:243.000000px;}
.xad_c00234{left:244.080000px;}
.x2d_c00234{left:247.080000px;}
.x59_c00234{left:250.080000px;}
.x14_c00234{left:253.920000px;}
.x91_c00234{left:255.000000px;}
.x17_c00234{left:256.500000px;}
.x62_c00234{left:258.420000px;}
.x3a_c00234{left:259.500000px;}
.x9d_c00234{left:260.580000px;}
.x23_c00234{left:262.500000px;}
.xa6_c00234{left:264.000000px;}
.x5_c00234{left:265.500000px;}
.x45_c00234{left:271.080000px;}
.xa2_c00234{left:274.080000px;}
.x18_c00234{left:277.500000px;}
.x6f_c00234{left:279.420000px;}
.x15_c00234{left:280.500000px;}
.x3b_c00234{left:282.000000px;}
.x7e_c00234{left:285.000000px;}
.x97_c00234{left:286.920000px;}
.x24_c00234{left:288.420000px;}
.x46_c00234{left:291.000000px;}
.x75_c00234{left:292.500000px;}
.x63_c00234{left:294.000000px;}
.x6_c00234{left:298.500000px;}
.x53_c00234{left:300.420000px;}
.x9e_c00234{left:306.000000px;}
.x6a_c00234{left:312.420000px;}
.xb2_c00234{left:313.500000px;}
.xae_c00234{left:315.000000px;}
.x2e_c00234{left:316.920000px;}
.x7f_c00234{left:318.000000px;}
.x70_c00234{left:319.080000px;}
.x86_c00234{left:324.000000px;}
.x3c_c00234{left:327.000000px;}
.xb3_c00234{left:330.420000px;}
.x47_c00234{left:337.500000px;}
.x19_c00234{left:346.080000px;}
.x64_c00234{left:349.080000px;}
.x6b_c00234{left:352.080000px;}
.x2f_c00234{left:354.000000px;}
.x5a_c00234{left:357.420000px;}
.x7_c00234{left:358.920000px;}
.x1a_c00234{left:363.000000px;}
.xb9_c00234{left:366.000000px;}
.xb4_c00234{left:370.500000px;}
.x54_c00234{left:376.080000px;}
.x48_c00234{left:378.000000px;}
.x3d_c00234{left:379.500000px;}
.x80_c00234{left:382.500000px;}
.x98_c00234{left:384.000000px;}
.xba_c00234{left:385.920000px;}
.x30_c00234{left:388.080000px;}
.x25_c00234{left:391.500000px;}
.x49_c00234{left:393.420000px;}
.x71_c00234{left:394.500000px;}
.x55_c00234{left:396.000000px;}
.xa7_c00234{left:397.500000px;}
.x8_c00234{left:399.420000px;}
.x1_c00234{left:400.500000px;}
.x76_c00234{left:401.580000px;}
.x31_c00234{left:417.000000px;}
.xa3_c00234{left:418.500000px;}
.x9_c00234{left:419.580000px;}
.x4a_c00234{left:424.920000px;}
.x87_c00234{left:427.080000px;}
.xb5_c00234{left:429.000000px;}
.xbb_c00234{left:430.500000px;}
.x6c_c00234{left:435.000000px;}
.x1b_c00234{left:436.080000px;}
.xa_c00234{left:445.500000px;}
.x32_c00234{left:446.580000px;}
.x26_c00234{left:459.420000px;}
.x4b_c00234{left:461.580000px;}
.x99_c00234{left:463.080000px;}
.xa4_c00234{left:465.000000px;}
.x3e_c00234{left:469.500000px;}
.x77_c00234{left:471.420000px;}
.x5b_c00234{left:472.500000px;}
.x56_c00234{left:474.000000px;}
.x65_c00234{left:475.080000px;}
.x1c_c00234{left:481.500000px;}
.xa5_c00234{left:484.500000px;}
.xb_c00234{left:486.420000px;}
.x9f_c00234{left:492.420000px;}
.x6d_c00234{left:493.500000px;}
.x5c_c00234{left:496.920000px;}
.x92_c00234{left:499.500000px;}
.xc_c00234{left:503.145000px;}
.x88_c00234{left:505.500000px;}
.x66_c00234{left:508.500000px;}
.x33_c00234{left:510.000000px;}
.x72_c00234{left:512.580000px;}
.xaf_c00234{left:514.500000px;}
.x1d_c00234{left:517.920000px;}
.x9a_c00234{left:519.000000px;}
.x34_c00234{left:520.920000px;}
.xbc_c00234{left:525.000000px;}
.x4c_c00234{left:526.500000px;}
.x73_c00234{left:532.500000px;}
.x27_c00234{left:533.580000px;}
.x81_c00234{left:538.920000px;}
.xa8_c00234{left:543.000000px;}
.x3f_c00234{left:547.920000px;}
.x9b_c00234{left:550.920000px;}
.xb6_c00234{left:554.580000px;}
.x1e_c00234{left:556.920000px;}
.x28_c00234{left:562.500000px;}
.x82_c00234{left:564.420000px;}
.x5d_c00234{left:567.000000px;}
.x35_c00234{left:568.080000px;}
.x93_c00234{left:569.580000px;}
.x67_c00234{left:573.420000px;}
.x78_c00234{left:575.580000px;}
.x89_c00234{left:580.080000px;}
.x4d_c00234{left:582.420000px;}
.xd_c00234{left:585.000000px;}
.x36_c00234{left:586.500000px;}
.xb7_c00234{left:588.420000px;}
.xb0_c00234{left:589.500000px;}
.x79_c00234{left:594.420000px;}
.x29_c00234{left:598.080000px;}
.xa9_c00234{left:600.000000px;}
.x5e_c00234{left:601.500000px;}
.x83_c00234{left:603.000000px;}
.xb1_c00234{left:606.420000px;}
.x4e_c00234{left:609.420000px;}
.x37_c00234{left:610.500000px;}
.x8a_c00234{left:612.000000px;}
.x5f_c00234{left:613.080000px;}
.x68_c00234{left:618.000000px;}
.xe_c00234{left:620.580000px;}
.x40_c00234{left:622.920000px;}
.x57_c00234{left:625.500000px;}
.x2a_c00234{left:634.080000px;}
.x4f_c00234{left:636.420000px;}
.x38_c00234{left:645.000000px;}
.x41_c00234{left:647.580000px;}
.x69_c00234{left:649.080000px;}
.x6e_c00234{left:651.000000px;}
.x1f_c00234{left:654.420000px;}
.x8b_c00234{left:658.920000px;}
.x94_c00234{left:662.775000px;}
.x39_c00234{left:666.000000px;}
.x7a_c00234{left:669.420000px;}
.xaa_c00234{left:670.500000px;}
.xa0_c00234{left:673.500000px;}
.x84_c00234{left:676.920000px;}
.xf_c00234{left:678.000000px;}
.x2b_c00234{left:679.500000px;}
.x58_c00234{left:680.580000px;}
.x60_c00234{left:682.500000px;}
.x10_c00234{left:690.000000px;}
.x50_c00234{left:691.500000px;}
.x7b_c00234{left:694.920000px;}
.x8c_c00234{left:700.080000px;}
.x95_c00234{left:703.500000px;}
.x2_c00234{left:706.080000px;}
.x42_c00234{left:716.580000px;}
@media print{
.v0_c00234{vertical-align:0.000000pt;}
.ls0_c00234{letter-spacing:0.000000pt;}
.ws0_c00234{word-spacing:0.000000pt;}
.fs7_c00234{font-size:3.040000pt;}
.fs9_c00234{font-size:10.560000pt;}
.fs5_c00234{font-size:12.106667pt;}
.fs4_c00234{font-size:16.640000pt;}
.fs0_c00234{font-size:18.133333pt;}
.fs2_c00234{font-size:22.666667pt;}
.fs1_c00234{font-size:25.706667pt;}
.fs3_c00234{font-size:28.746667pt;}
.fs6_c00234{font-size:31.733333pt;}
.fs8_c00234{font-size:34.773333pt;}
.y0_c00234{bottom:0.000000pt;}
.y81_c00234{bottom:558.440000pt;}
.y83_c00234{bottom:559.226667pt;}
.y84_c00234{bottom:559.973333pt;}
.y82_c00234{bottom:560.360000pt;}
.y80_c00234{bottom:573.693333pt;}
.y7f_c00234{bottom:575.773333pt;}
.y7e_c00234{bottom:576.560000pt;}
.y7d_c00234{bottom:577.693333pt;}
.y7c_c00234{bottom:578.066667pt;}
.y7b_c00234{bottom:591.773333pt;}
.y79_c00234{bottom:593.106667pt;}
.y7a_c00234{bottom:595.026667pt;}
.y78_c00234{bottom:596.360000pt;}
.y75_c00234{bottom:610.440000pt;}
.y77_c00234{bottom:611.400000pt;}
.y73_c00234{bottom:612.360000pt;}
.y76_c00234{bottom:612.560000pt;}
.y74_c00234{bottom:613.306667pt;}
.y72_c00234{bottom:613.693333pt;}
.y71_c00234{bottom:627.026667pt;}
.y6e_c00234{bottom:627.773333pt;}
.y6c_c00234{bottom:629.106667pt;}
.y6f_c00234{bottom:629.693333pt;}
.y6d_c00234{bottom:629.893333pt;}
.y70_c00234{bottom:630.640000pt;}
.y6a_c00234{bottom:644.360000pt;}
.y69_c00234{bottom:646.440000pt;}
.y6b_c00234{bottom:647.226667pt;}
.y67_c00234{bottom:648.360000pt;}
.y68_c00234{bottom:648.373333pt;}
.y64_c00234{bottom:662.440000pt;}
.y66_c00234{bottom:663.026667pt;}
.y63_c00234{bottom:663.773333pt;}
.y65_c00234{bottom:664.360000pt;}
.y62_c00234{bottom:665.306667pt;}
.y61_c00234{bottom:665.693333pt;}
.y58_c00234{bottom:678.466667pt;}
.y60_c00234{bottom:679.773333pt;}
.y59_c00234{bottom:680.360000pt;}
.y5f_c00234{bottom:681.106667pt;}
.y5a_c00234{bottom:681.893333pt;}
.y5e_c00234{bottom:682.066667pt;}
.y5c_c00234{bottom:682.640000pt;}
.y5d_c00234{bottom:683.026667pt;}
.y56_c00234{bottom:683.226667pt;}
.y5b_c00234{bottom:683.973333pt;}
.y57_c00234{bottom:685.893333pt;}
.y54_c00234{bottom:696.360000pt;}
.y55_c00234{bottom:697.306667pt;}
.y52_c00234{bottom:697.693333pt;}
.y50_c00234{bottom:698.440000pt;}
.y4f_c00234{bottom:698.640000pt;}
.y4e_c00234{bottom:698.826667pt;}
.y51_c00234{bottom:699.400000pt;}
.y53_c00234{bottom:700.360000pt;}
.y4d_c00234{bottom:714.440000pt;}
.y4a_c00234{bottom:715.026667pt;}
.y4c_c00234{bottom:715.773333pt;}
.y49_c00234{bottom:717.693333pt;}
.y48_c00234{bottom:717.893333pt;}
.y4b_c00234{bottom:718.640000pt;}
.y47_c00234{bottom:731.773333pt;}
.y45_c00234{bottom:732.360000pt;}
.y43_c00234{bottom:733.106667pt;}
.y44_c00234{bottom:735.026667pt;}
.y46_c00234{bottom:735.973333pt;}
.y40_c00234{bottom:750.440000pt;}
.y3f_c00234{bottom:751.773333pt;}
.y41_c00234{bottom:752.360000pt;}
.y42_c00234{bottom:753.306667pt;}
.y3e_c00234{bottom:767.773333pt;}
.y3a_c00234{bottom:768.160000pt;}
.y3d_c00234{bottom:769.106667pt;}
.y3c_c00234{bottom:769.893333pt;}
.y3b_c00234{bottom:771.026667pt;}
.y39_c00234{bottom:785.493333pt;}
.y37_c00234{bottom:786.066667pt;}
.y35_c00234{bottom:786.440000pt;}
.y36_c00234{bottom:787.226667pt;}
.y33_c00234{bottom:787.400000pt;}
.y38_c00234{bottom:787.973333pt;}
.y34_c00234{bottom:788.360000pt;}
.y2f_c00234{bottom:803.773333pt;}
.y32_c00234{bottom:804.560000pt;}
.y31_c00234{bottom:804.733333pt;}
.y2e_c00234{bottom:805.693333pt;}
.y30_c00234{bottom:806.640000pt;}
.y2c_c00234{bottom:820.733333pt;}
.y2b_c00234{bottom:821.106667pt;}
.y2d_c00234{bottom:822.066667pt;}
.y29_c00234{bottom:823.026667pt;}
.y2a_c00234{bottom:823.973333pt;}
.y25_c00234{bottom:836.360000pt;}
.y26_c00234{bottom:838.066667pt;}
.y23_c00234{bottom:838.440000pt;}
.y27_c00234{bottom:839.226667pt;}
.y28_c00234{bottom:839.400000pt;}
.y24_c00234{bottom:840.360000pt;}
.y22_c00234{bottom:841.693333pt;}
.y20_c00234{bottom:855.026667pt;}
.y1e_c00234{bottom:855.773333pt;}
.y21_c00234{bottom:857.693333pt;}
.y1f_c00234{bottom:857.893333pt;}
.y1d_c00234{bottom:859.026667pt;}
.y1a_c00234{bottom:873.106667pt;}
.y1b_c00234{bottom:874.066667pt;}
.y19_c00234{bottom:875.026667pt;}
.y1c_c00234{bottom:875.226667pt;}
.y15_c00234{bottom:890.440000pt;}
.y17_c00234{bottom:891.400000pt;}
.y16_c00234{bottom:892.360000pt;}
.y18_c00234{bottom:893.306667pt;}
.y14_c00234{bottom:893.693333pt;}
.y13_c00234{bottom:907.773333pt;}
.y12_c00234{bottom:907.973333pt;}
.yf_c00234{bottom:909.106667pt;}
.y11_c00234{bottom:909.693333pt;}
.y10_c00234{bottom:911.040000pt;}
.yc_c00234{bottom:932.360000pt;}
.yd_c00234{bottom:933.306667pt;}
.yb_c00234{bottom:933.693333pt;}
.ye_c00234{bottom:934.266667pt;}
.y4_c00234{bottom:944.733333pt;}
.y7_c00234{bottom:944.933333pt;}
.y3_c00234{bottom:945.306667pt;}
.y8_c00234{bottom:945.693333pt;}
.y5_c00234{bottom:945.893333pt;}
.ya_c00234{bottom:946.640000pt;}
.y9_c00234{bottom:946.840000pt;}
.y6_c00234{bottom:947.600000pt;}
.y2_c00234{bottom:977.693333pt;}
.y1_c00234{bottom:979.600000pt;}
.h8_c00234{height:3.739141pt;}
.ha_c00234{height:12.988594pt;}
.h6_c00234{height:14.890964pt;}
.h5_c00234{height:20.466875pt;}
.h1_c00234{height:22.303646pt;}
.h3_c00234{height:27.879557pt;}
.h2_c00234{height:31.618698pt;}
.h4_c00234{height:35.357839pt;}
.h7_c00234{height:39.031380pt;}
.h9_c00234{height:42.770521pt;}
.h0_c00234{height:1186.666667pt;}
.w0_c00234{width:782.666667pt;}
.x0_c00234{left:0.000000pt;}
.x20_c00234{left:135.626667pt;}
.x11_c00234{left:137.333333pt;}
.xab_c00234{left:140.960000pt;}
.x7c_c00234{left:148.000000pt;}
.x3_c00234{left:149.333333pt;}
.x16_c00234{left:150.293333pt;}
.x21_c00234{left:153.706667pt;}
.xac_c00234{left:154.666667pt;}
.x43_c00234{left:157.706667pt;}
.x8d_c00234{left:160.000000pt;}
.x12_c00234{left:161.706667pt;}
.x8e_c00234{left:163.626667pt;}
.x4_c00234{left:165.333333pt;}
.x96_c00234{left:166.293333pt;}
.x51_c00234{left:170.293333pt;}
.x8f_c00234{left:172.960000pt;}
.xa1_c00234{left:177.333333pt;}
.x22_c00234{left:181.333333pt;}
.x85_c00234{left:184.960000pt;}
.x2c_c00234{left:191.240000pt;}
.x90_c00234{left:194.666667pt;}
.xb8_c00234{left:196.000000pt;}
.x13_c00234{left:198.666667pt;}
.x61_c00234{left:199.626667pt;}
.x52_c00234{left:204.373333pt;}
.x44_c00234{left:206.666667pt;}
.x74_c00234{left:207.626667pt;}
.x9c_c00234{left:213.333333pt;}
.x7d_c00234{left:216.000000pt;}
.xad_c00234{left:216.960000pt;}
.x2d_c00234{left:219.626667pt;}
.x59_c00234{left:222.293333pt;}
.x14_c00234{left:225.706667pt;}
.x91_c00234{left:226.666667pt;}
.x17_c00234{left:228.000000pt;}
.x62_c00234{left:229.706667pt;}
.x3a_c00234{left:230.666667pt;}
.x9d_c00234{left:231.626667pt;}
.x23_c00234{left:233.333333pt;}
.xa6_c00234{left:234.666667pt;}
.x5_c00234{left:236.000000pt;}
.x45_c00234{left:240.960000pt;}
.xa2_c00234{left:243.626667pt;}
.x18_c00234{left:246.666667pt;}
.x6f_c00234{left:248.373333pt;}
.x15_c00234{left:249.333333pt;}
.x3b_c00234{left:250.666667pt;}
.x7e_c00234{left:253.333333pt;}
.x97_c00234{left:255.040000pt;}
.x24_c00234{left:256.373333pt;}
.x46_c00234{left:258.666667pt;}
.x75_c00234{left:260.000000pt;}
.x63_c00234{left:261.333333pt;}
.x6_c00234{left:265.333333pt;}
.x53_c00234{left:267.040000pt;}
.x9e_c00234{left:272.000000pt;}
.x6a_c00234{left:277.706667pt;}
.xb2_c00234{left:278.666667pt;}
.xae_c00234{left:280.000000pt;}
.x2e_c00234{left:281.706667pt;}
.x7f_c00234{left:282.666667pt;}
.x70_c00234{left:283.626667pt;}
.x86_c00234{left:288.000000pt;}
.x3c_c00234{left:290.666667pt;}
.xb3_c00234{left:293.706667pt;}
.x47_c00234{left:300.000000pt;}
.x19_c00234{left:307.626667pt;}
.x64_c00234{left:310.293333pt;}
.x6b_c00234{left:312.960000pt;}
.x2f_c00234{left:314.666667pt;}
.x5a_c00234{left:317.706667pt;}
.x7_c00234{left:319.040000pt;}
.x1a_c00234{left:322.666667pt;}
.xb9_c00234{left:325.333333pt;}
.xb4_c00234{left:329.333333pt;}
.x54_c00234{left:334.293333pt;}
.x48_c00234{left:336.000000pt;}
.x3d_c00234{left:337.333333pt;}
.x80_c00234{left:340.000000pt;}
.x98_c00234{left:341.333333pt;}
.xba_c00234{left:343.040000pt;}
.x30_c00234{left:344.960000pt;}
.x25_c00234{left:348.000000pt;}
.x49_c00234{left:349.706667pt;}
.x71_c00234{left:350.666667pt;}
.x55_c00234{left:352.000000pt;}
.xa7_c00234{left:353.333333pt;}
.x8_c00234{left:355.040000pt;}
.x1_c00234{left:356.000000pt;}
.x76_c00234{left:356.960000pt;}
.x31_c00234{left:370.666667pt;}
.xa3_c00234{left:372.000000pt;}
.x9_c00234{left:372.960000pt;}
.x4a_c00234{left:377.706667pt;}
.x87_c00234{left:379.626667pt;}
.xb5_c00234{left:381.333333pt;}
.xbb_c00234{left:382.666667pt;}
.x6c_c00234{left:386.666667pt;}
.x1b_c00234{left:387.626667pt;}
.xa_c00234{left:396.000000pt;}
.x32_c00234{left:396.960000pt;}
.x26_c00234{left:408.373333pt;}
.x4b_c00234{left:410.293333pt;}
.x99_c00234{left:411.626667pt;}
.xa4_c00234{left:413.333333pt;}
.x3e_c00234{left:417.333333pt;}
.x77_c00234{left:419.040000pt;}
.x5b_c00234{left:420.000000pt;}
.x56_c00234{left:421.333333pt;}
.x65_c00234{left:422.293333pt;}
.x1c_c00234{left:428.000000pt;}
.xa5_c00234{left:430.666667pt;}
.xb_c00234{left:432.373333pt;}
.x9f_c00234{left:437.706667pt;}
.x6d_c00234{left:438.666667pt;}
.x5c_c00234{left:441.706667pt;}
.x92_c00234{left:444.000000pt;}
.xc_c00234{left:447.240000pt;}
.x88_c00234{left:449.333333pt;}
.x66_c00234{left:452.000000pt;}
.x33_c00234{left:453.333333pt;}
.x72_c00234{left:455.626667pt;}
.xaf_c00234{left:457.333333pt;}
.x1d_c00234{left:460.373333pt;}
.x9a_c00234{left:461.333333pt;}
.x34_c00234{left:463.040000pt;}
.xbc_c00234{left:466.666667pt;}
.x4c_c00234{left:468.000000pt;}
.x73_c00234{left:473.333333pt;}
.x27_c00234{left:474.293333pt;}
.x81_c00234{left:479.040000pt;}
.xa8_c00234{left:482.666667pt;}
.x3f_c00234{left:487.040000pt;}
.x9b_c00234{left:489.706667pt;}
.xb6_c00234{left:492.960000pt;}
.x1e_c00234{left:495.040000pt;}
.x28_c00234{left:500.000000pt;}
.x82_c00234{left:501.706667pt;}
.x5d_c00234{left:504.000000pt;}
.x35_c00234{left:504.960000pt;}
.x93_c00234{left:506.293333pt;}
.x67_c00234{left:509.706667pt;}
.x78_c00234{left:511.626667pt;}
.x89_c00234{left:515.626667pt;}
.x4d_c00234{left:517.706667pt;}
.xd_c00234{left:520.000000pt;}
.x36_c00234{left:521.333333pt;}
.xb7_c00234{left:523.040000pt;}
.xb0_c00234{left:524.000000pt;}
.x79_c00234{left:528.373333pt;}
.x29_c00234{left:531.626667pt;}
.xa9_c00234{left:533.333333pt;}
.x5e_c00234{left:534.666667pt;}
.x83_c00234{left:536.000000pt;}
.xb1_c00234{left:539.040000pt;}
.x4e_c00234{left:541.706667pt;}
.x37_c00234{left:542.666667pt;}
.x8a_c00234{left:544.000000pt;}
.x5f_c00234{left:544.960000pt;}
.x68_c00234{left:549.333333pt;}
.xe_c00234{left:551.626667pt;}
.x40_c00234{left:553.706667pt;}
.x57_c00234{left:556.000000pt;}
.x2a_c00234{left:563.626667pt;}
.x4f_c00234{left:565.706667pt;}
.x38_c00234{left:573.333333pt;}
.x41_c00234{left:575.626667pt;}
.x69_c00234{left:576.960000pt;}
.x6e_c00234{left:578.666667pt;}
.x1f_c00234{left:581.706667pt;}
.x8b_c00234{left:585.706667pt;}
.x94_c00234{left:589.133333pt;}
.x39_c00234{left:592.000000pt;}
.x7a_c00234{left:595.040000pt;}
.xaa_c00234{left:596.000000pt;}
.xa0_c00234{left:598.666667pt;}
.x84_c00234{left:601.706667pt;}
.xf_c00234{left:602.666667pt;}
.x2b_c00234{left:604.000000pt;}
.x58_c00234{left:604.960000pt;}
.x60_c00234{left:606.666667pt;}
.x10_c00234{left:613.333333pt;}
.x50_c00234{left:614.666667pt;}
.x7b_c00234{left:617.706667pt;}
.x8c_c00234{left:622.293333pt;}
.x95_c00234{left:625.333333pt;}
.x2_c00234{left:627.626667pt;}
.x42_c00234{left:636.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_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_b85de8302521d965628b322d.woff2')format("woff");}.ff1_c00235{font-family:ff1_c00235;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf4_c00235{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m27_c00235{transform:matrix(0.337040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337040,0.000000,0.000000,0.250000,0,0);}
.mfd_c00235{transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);}
.m32_c00235{transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);}
.m2d_c00235{transform:matrix(0.354294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354294,0.000000,0.000000,0.250000,0,0);}
.m18_c00235{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m6c_c00235{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m36_c00235{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m3d_c00235{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mf1_c00235{transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);}
.m55_c00235{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mb0_c00235{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m6d_c00235{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m2f_c00235{transform:matrix(0.372316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372316,0.000000,0.000000,0.250000,0,0);}
.mdc_c00235{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m7d_c00235{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.md5_c00235{transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);}
.mfc_c00235{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.me3_c00235{transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);}
.m86_c00235{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.mc3_c00235{transform:matrix(0.385736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385736,0.000000,0.000000,0.250000,0,0);}
.m30_c00235{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m7c_c00235{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mf5_c00235{transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);}
.m39_c00235{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m7f_c00235{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m51_c00235{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m9f_c00235{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m46_c00235{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.mbb_c00235{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mbf_c00235{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m28_c00235{transform:matrix(0.401457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401457,0.000000,0.000000,0.250000,0,0);}
.m9c_c00235{transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);}
.mf8_c00235{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m66_c00235{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m8b_c00235{transform:matrix(0.404908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404908,0.000000,0.000000,0.250000,0,0);}
.m48_c00235{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mf9_c00235{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m44_c00235{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m59_c00235{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mdb_c00235{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.me_c00235{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m9a_c00235{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m52_c00235{transform:matrix(0.411043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411043,0.000000,0.000000,0.250000,0,0);}
.mcb_c00235{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m19_c00235{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m17_c00235{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m1a_c00235{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m96_c00235{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.md4_c00235{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m73_c00235{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.md6_c00235{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mbe_c00235{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m8a_c00235{transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);}
.m24_c00235{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.ma1_c00235{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m34_c00235{transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);}
.m84_c00235{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m99_c00235{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m72_c00235{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m2a_c00235{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m1d_c00235{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.maf_c00235{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mec_c00235{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m7e_c00235{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.mda_c00235{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m81_c00235{transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);}
.ma6_c00235{transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);}
.m4f_c00235{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m100_c00235{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.mc4_c00235{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m41_c00235{transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);}
.mab_c00235{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m4d_c00235{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m12_c00235{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m38_c00235{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m31_c00235{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.mca_c00235{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m8f_c00235{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.md8_c00235{transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);}
.ma7_c00235{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.me9_c00235{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m9e_c00235{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.mf2_c00235{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.mc2_c00235{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m8_c00235{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mba_c00235{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.mdf_c00235{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.mb9_c00235{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);}
.m8d_c00235{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.meb_c00235{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.mcd_c00235{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.me2_c00235{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m5d_c00235{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.me0_c00235{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m57_c00235{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.me8_c00235{transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);}
.m42_c00235{transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);}
.mcf_c00235{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.mc1_c00235{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.mf0_c00235{transform:matrix(0.463025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463025,0.000000,0.000000,0.250000,0,0);}
.mdd_c00235{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m9b_c00235{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.mb3_c00235{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.mf7_c00235{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m5a_c00235{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m29_c00235{transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);}
.m79_c00235{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m89_c00235{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m8e_c00235{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m85_c00235{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m5f_c00235{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m91_c00235{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m68_c00235{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mc8_c00235{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m54_c00235{transform:matrix(0.487477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487477,0.000000,0.000000,0.250000,0,0);}
.m64_c00235{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m47_c00235{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mde_c00235{transform:matrix(0.490724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490724,0.000000,0.000000,0.250000,0,0);}
.mc_c00235{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m88_c00235{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.mb8_c00235{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.mf3_c00235{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m3_c00235{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_c00235{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m6b_c00235{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m6a_c00235{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m7a_c00235{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mf6_c00235{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mfb_c00235{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.mc0_c00235{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m75_c00235{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mcc_c00235{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m74_c00235{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.md3_c00235{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m2e_c00235{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.md_c00235{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m45_c00235{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mc6_c00235{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m3e_c00235{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m82_c00235{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.mce_c00235{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m5e_c00235{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m101_c00235{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mad_c00235{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m98_c00235{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m78_c00235{transform:matrix(0.531540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531540,0.000000,0.000000,0.250000,0,0);}
.m23_c00235{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m92_c00235{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.md9_c00235{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m33_c00235{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m35_c00235{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m8c_c00235{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m69_c00235{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mc5_c00235{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m6e_c00235{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m4a_c00235{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.me6_c00235{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m60_c00235{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.md2_c00235{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m6f_c00235{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mff_c00235{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.mc9_c00235{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m71_c00235{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m76_c00235{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.me5_c00235{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m7b_c00235{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m9_c00235{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m5c_c00235{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m77_c00235{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.ma4_c00235{transform:matrix(0.548237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548237,0.000000,0.000000,0.250000,0,0);}
.m2b_c00235{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mc7_c00235{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m4e_c00235{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m94_c00235{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m5_c00235{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m3b_c00235{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m22_c00235{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m1c_c00235{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m20_c00235{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.ma3_c00235{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m26_c00235{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mfa_c00235{transform:matrix(0.560166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560166,0.000000,0.000000,0.250000,0,0);}
.mb6_c00235{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.mea_c00235{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.me7_c00235{transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);}
.maa_c00235{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.me1_c00235{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.mee_c00235{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.ma9_c00235{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m25_c00235{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m97_c00235{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m90_c00235{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.mb1_c00235{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m1e_c00235{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m4b_c00235{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.mfe_c00235{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.m83_c00235{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m3a_c00235{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m56_c00235{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mf_c00235{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.ma5_c00235{transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);}
.mbd_c00235{transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);}
.mb7_c00235{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m93_c00235{transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);}
.ma_c00235{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.ma2_c00235{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.m3c_c00235{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m53_c00235{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m10_c00235{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m13_c00235{transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);}
.m2_c00235{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m102_c00235{transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);}
.m80_c00235{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mb_c00235{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m1b_c00235{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mac_c00235{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.md7_c00235{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.md0_c00235{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m15_c00235{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.m0_c00235{transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);}
.ma8_c00235{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.m62_c00235{transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);}
.mb5_c00235{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m61_c00235{transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);}
.m50_c00235{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m3f_c00235{transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);}
.m21_c00235{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m58_c00235{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m7_c00235{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m4c_c00235{transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);}
.m16_c00235{transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);}
.ma0_c00235{transform:matrix(0.685096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685096,0.000000,0.000000,0.250000,0,0);}
.m14_c00235{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m67_c00235{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m1f_c00235{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m49_c00235{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.m65_c00235{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m11_c00235{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m63_c00235{transform:matrix(0.731571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.731571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.731571,0.000000,0.000000,0.250000,0,0);}
.m70_c00235{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m2c_c00235{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m87_c00235{transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);}
.m9d_c00235{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.mb2_c00235{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m5b_c00235{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mae_c00235{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m6_c00235{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.mef_c00235{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.mbc_c00235{transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);}
.med_c00235{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m4_c00235{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m1_c00235{transform:matrix(0.801867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.801867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.801867,0.000000,0.000000,0.250000,0,0);}
.m40_c00235{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mb4_c00235{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m37_c00235{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m43_c00235{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.me4_c00235{transform:matrix(0.942941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.942941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.942941,0.000000,0.000000,0.250000,0,0);}
.md1_c00235{transform:matrix(3.482456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.482456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.482456,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;}
}
.ws1_c00235{word-spacing:-7.066252px;}
.ws0_c00235{word-spacing:-0.259677px;}
.ws3_c00235{word-spacing:0.000000px;}
.ws2_c00235{word-spacing:1.686586px;}
.fc0_c00235{color:transparent;}
.fs7_c00235{font-size:3.420000px;}
.fs2_c00235{font-size:18.720000px;}
.fs6_c00235{font-size:20.400000px;}
.fs1_c00235{font-size:25.500000px;}
.fs0_c00235{font-size:28.920000px;}
.fs3_c00235{font-size:32.340000px;}
.fs4_c00235{font-size:35.700000px;}
.fs5_c00235{font-size:39.120000px;}
.y0_c00235{bottom:0.000000px;}
.ye4_c00235{bottom:231.405000px;}
.ye6_c00235{bottom:231.825000px;}
.ye5_c00235{bottom:232.470000px;}
.ye7_c00235{bottom:232.905000px;}
.ye8_c00235{bottom:233.970000px;}
.ydf_c00235{bottom:248.745000px;}
.ye3_c00235{bottom:249.180000px;}
.ye2_c00235{bottom:250.245000px;}
.ye0_c00235{bottom:251.970000px;}
.ye1_c00235{bottom:252.405000px;}
.yda_c00235{bottom:269.745000px;}
.yd8_c00235{bottom:270.630000px;}
.ydb_c00235{bottom:270.825000px;}
.ydc_c00235{bottom:271.245000px;}
.yd9_c00235{bottom:271.470000px;}
.yde_c00235{bottom:271.905000px;}
.ydd_c00235{bottom:272.130000px;}
.yd2_c00235{bottom:289.245000px;}
.yd3_c00235{bottom:289.680000px;}
.yd1_c00235{bottom:290.130000px;}
.yd6_c00235{bottom:290.745000px;}
.yd7_c00235{bottom:291.825000px;}
.yd4_c00235{bottom:292.470000px;}
.yd5_c00235{bottom:292.905000px;}
.ycb_c00235{bottom:308.745000px;}
.ycf_c00235{bottom:310.245000px;}
.ycc_c00235{bottom:310.905000px;}
.yd0_c00235{bottom:311.130000px;}
.yce_c00235{bottom:311.325000px;}
.ycd_c00235{bottom:312.405000px;}
.yc9_c00235{bottom:328.245000px;}
.yc4_c00235{bottom:328.680000px;}
.yc8_c00235{bottom:329.745000px;}
.yc5_c00235{bottom:330.405000px;}
.yca_c00235{bottom:330.630000px;}
.yc7_c00235{bottom:331.905000px;}
.yc6_c00235{bottom:332.970000px;}
.yc3_c00235{bottom:349.245000px;}
.yc0_c00235{bottom:350.325000px;}
.yc1_c00235{bottom:350.970000px;}
.yc2_c00235{bottom:351.405000px;}
.ybc_c00235{bottom:368.325000px;}
.ybd_c00235{bottom:368.745000px;}
.ybf_c00235{bottom:369.825000px;}
.ybe_c00235{bottom:370.470000px;}
.ybb_c00235{bottom:370.905000px;}
.yb8_c00235{bottom:389.745000px;}
.yb6_c00235{bottom:390.405000px;}
.yba_c00235{bottom:390.630000px;}
.yb9_c00235{bottom:391.470000px;}
.yb7_c00235{bottom:391.905000px;}
.yb3_c00235{bottom:406.905000px;}
.yb2_c00235{bottom:408.825000px;}
.yb5_c00235{bottom:409.245000px;}
.yb4_c00235{bottom:411.405000px;}
.yac_c00235{bottom:426.405000px;}
.yaf_c00235{bottom:427.245000px;}
.yab_c00235{bottom:428.325000px;}
.yaa_c00235{bottom:429.405000px;}
.yb1_c00235{bottom:429.420000px;}
.yae_c00235{bottom:429.630000px;}
.yb0_c00235{bottom:430.470000px;}
.yad_c00235{bottom:430.905000px;}
.ya4_c00235{bottom:445.905000px;}
.ya6_c00235{bottom:447.825000px;}
.ya8_c00235{bottom:448.245000px;}
.ya3_c00235{bottom:448.905000px;}
.ya7_c00235{bottom:449.130000px;}
.ya9_c00235{bottom:449.970000px;}
.ya5_c00235{bottom:450.405000px;}
.ya1_c00235{bottom:466.680000px;}
.y9e_c00235{bottom:467.745000px;}
.y9d_c00235{bottom:469.470000px;}
.y9f_c00235{bottom:469.905000px;}
.ya0_c00235{bottom:470.130000px;}
.ya2_c00235{bottom:470.970000px;}
.y97_c00235{bottom:487.245000px;}
.y9c_c00235{bottom:488.325000px;}
.y9a_c00235{bottom:488.745000px;}
.y96_c00235{bottom:489.405000px;}
.y98_c00235{bottom:489.630000px;}
.y99_c00235{bottom:490.470000px;}
.y9b_c00235{bottom:490.905000px;}
.y91_c00235{bottom:506.745000px;}
.y95_c00235{bottom:507.825000px;}
.y93_c00235{bottom:508.245000px;}
.y90_c00235{bottom:508.905000px;}
.y92_c00235{bottom:509.130000px;}
.y94_c00235{bottom:510.405000px;}
.y88_c00235{bottom:526.245000px;}
.y8a_c00235{bottom:526.470000px;}
.y8b_c00235{bottom:527.325000px;}
.y8d_c00235{bottom:527.745000px;}
.y87_c00235{bottom:528.405000px;}
.y89_c00235{bottom:528.630000px;}
.y8f_c00235{bottom:529.470000px;}
.y8c_c00235{bottom:529.905000px;}
.y8e_c00235{bottom:530.970000px;}
.y83_c00235{bottom:544.905000px;}
.y84_c00235{bottom:547.245000px;}
.y81_c00235{bottom:547.905000px;}
.y86_c00235{bottom:548.130000px;}
.y85_c00235{bottom:548.970000px;}
.y82_c00235{bottom:549.405000px;}
.y80_c00235{bottom:565.905000px;}
.y7c_c00235{bottom:566.745000px;}
.y7e_c00235{bottom:566.970000px;}
.y7d_c00235{bottom:567.825000px;}
.y7b_c00235{bottom:568.905000px;}
.y7f_c00235{bottom:569.130000px;}
.y76_c00235{bottom:583.905000px;}
.y77_c00235{bottom:586.245000px;}
.y75_c00235{bottom:587.130000px;}
.y74_c00235{bottom:587.325000px;}
.y79_c00235{bottom:587.970000px;}
.y78_c00235{bottom:588.405000px;}
.y7a_c00235{bottom:588.630000px;}
.y73_c00235{bottom:605.745000px;}
.y72_c00235{bottom:606.630000px;}
.y71_c00235{bottom:607.905000px;}
.y6b_c00235{bottom:624.405000px;}
.y6a_c00235{bottom:625.245000px;}
.y6c_c00235{bottom:626.745000px;}
.y6d_c00235{bottom:627.405000px;}
.y6e_c00235{bottom:627.630000px;}
.y70_c00235{bottom:628.470000px;}
.y6f_c00235{bottom:628.905000px;}
.y65_c00235{bottom:644.325000px;}
.y66_c00235{bottom:645.180000px;}
.y67_c00235{bottom:646.245000px;}
.y69_c00235{bottom:647.325000px;}
.y68_c00235{bottom:648.405000px;}
.y60_c00235{bottom:664.245000px;}
.y64_c00235{bottom:665.325000px;}
.y61_c00235{bottom:665.745000px;}
.y5f_c00235{bottom:666.405000px;}
.y63_c00235{bottom:666.630000px;}
.y62_c00235{bottom:667.905000px;}
.y5c_c00235{bottom:683.745000px;}
.y5d_c00235{bottom:686.130000px;}
.y5e_c00235{bottom:687.405000px;}
.y57_c00235{bottom:702.405000px;}
.y55_c00235{bottom:704.745000px;}
.y54_c00235{bottom:705.405000px;}
.y58_c00235{bottom:705.630000px;}
.y56_c00235{bottom:705.825000px;}
.y5b_c00235{bottom:706.470000px;}
.y59_c00235{bottom:706.905000px;}
.y5a_c00235{bottom:707.970000px;}
.y4f_c00235{bottom:721.905000px;}
.y52_c00235{bottom:723.405000px;}
.y53_c00235{bottom:724.245000px;}
.y4e_c00235{bottom:724.905000px;}
.y51_c00235{bottom:725.325000px;}
.y50_c00235{bottom:726.405000px;}
.y4d_c00235{bottom:742.905000px;}
.y4b_c00235{bottom:743.745000px;}
.y48_c00235{bottom:744.630000px;}
.y49_c00235{bottom:745.905000px;}
.y4a_c00235{bottom:746.130000px;}
.y4c_c00235{bottom:746.970000px;}
.y43_c00235{bottom:762.405000px;}
.y42_c00235{bottom:763.245000px;}
.y45_c00235{bottom:763.680000px;}
.y46_c00235{bottom:764.745000px;}
.y40_c00235{bottom:765.405000px;}
.y41_c00235{bottom:765.630000px;}
.y47_c00235{bottom:766.470000px;}
.y44_c00235{bottom:766.905000px;}
.y3d_c00235{bottom:784.905000px;}
.y3f_c00235{bottom:785.130000px;}
.y3e_c00235{bottom:785.970000px;}
.y3a_c00235{bottom:802.245000px;}
.y39_c00235{bottom:803.130000px;}
.y37_c00235{bottom:803.325000px;}
.y3c_c00235{bottom:804.405000px;}
.y3b_c00235{bottom:804.630000px;}
.y38_c00235{bottom:805.470000px;}
.y35_c00235{bottom:822.180000px;}
.y32_c00235{bottom:823.050000px;}
.y31_c00235{bottom:823.245000px;}
.y30_c00235{bottom:823.905000px;}
.y36_c00235{bottom:824.325000px;}
.y33_c00235{bottom:824.970000px;}
.y34_c00235{bottom:825.405000px;}
.y2b_c00235{bottom:840.825000px;}
.y2c_c00235{bottom:842.745000px;}
.y2f_c00235{bottom:844.050000px;}
.y2a_c00235{bottom:844.905000px;}
.y2d_c00235{bottom:845.130000px;}
.y2e_c00235{bottom:846.405000px;}
.y29_c00235{bottom:862.245000px;}
.y24_c00235{bottom:863.130000px;}
.y26_c00235{bottom:863.325000px;}
.y23_c00235{bottom:863.970000px;}
.y25_c00235{bottom:864.405000px;}
.y27_c00235{bottom:864.630000px;}
.y28_c00235{bottom:865.470000px;}
.y22_c00235{bottom:879.405000px;}
.y1d_c00235{bottom:880.245000px;}
.y1f_c00235{bottom:881.745000px;}
.y1c_c00235{bottom:882.405000px;}
.y1e_c00235{bottom:883.470000px;}
.y20_c00235{bottom:883.905000px;}
.y21_c00235{bottom:884.970000px;}
.y17_c00235{bottom:900.180000px;}
.y18_c00235{bottom:900.405000px;}
.y1b_c00235{bottom:900.825000px;}
.y14_c00235{bottom:901.245000px;}
.y19_c00235{bottom:901.680000px;}
.y13_c00235{bottom:902.325000px;}
.y1a_c00235{bottom:902.745000px;}
.y15_c00235{bottom:903.405000px;}
.y16_c00235{bottom:903.630000px;}
.y10_c00235{bottom:920.745000px;}
.y12_c00235{bottom:921.180000px;}
.ye_c00235{bottom:922.245000px;}
.y11_c00235{bottom:923.970000px;}
.yf_c00235{bottom:924.405000px;}
.yd_c00235{bottom:941.745000px;}
.yb_c00235{bottom:943.470000px;}
.yc_c00235{bottom:944.970000px;}
.ya_c00235{bottom:959.745000px;}
.y7_c00235{bottom:959.970000px;}
.y8_c00235{bottom:960.405000px;}
.y6_c00235{bottom:960.825000px;}
.y4_c00235{bottom:961.905000px;}
.y5_c00235{bottom:962.130000px;}
.y3_c00235{bottom:962.970000px;}
.y9_c00235{bottom:963.405000px;}
.y1_c00235{bottom:1002.405000px;}
.y2_c00235{bottom:1003.905000px;}
.h8_c00235{height:4.206533px;}
.h3_c00235{height:23.025234px;}
.h7_c00235{height:25.091602px;}
.h2_c00235{height:31.364502px;}
.h1_c00235{height:35.571035px;}
.h4_c00235{height:39.777568px;}
.h5_c00235{height:43.910303px;}
.h6_c00235{height:48.116836px;}
.h0_c00235{height:1335.000000px;}
.w0_c00235{width:880.500000px;}
.x0_c00235{left:0.000000px;}
.x12_c00235{left:149.580000px;}
.x88_c00235{left:150.645000px;}
.x80_c00235{left:151.920000px;}
.xd9_c00235{left:153.000000px;}
.x3_c00235{left:166.500000px;}
.x13_c00235{left:168.000000px;}
.xdb_c00235{left:169.500000px;}
.xc8_c00235{left:172.920000px;}
.xb5_c00235{left:178.500000px;}
.xc3_c00235{left:181.500000px;}
.x76_c00235{left:186.000000px;}
.x40_c00235{left:187.500000px;}
.xf5_c00235{left:189.000000px;}
.x4_c00235{left:190.080000px;}
.x81_c00235{left:192.420000px;}
.xe0_c00235{left:193.500000px;}
.x9a_c00235{left:194.580000px;}
.xc4_c00235{left:196.500000px;}
.x58_c00235{left:201.420000px;}
.x77_c00235{left:204.645000px;}
.xd1_c00235{left:205.920000px;}
.x89_c00235{left:208.080000px;}
.xa7_c00235{left:210.000000px;}
.x41_c00235{left:211.080000px;}
.xe1_c00235{left:213.000000px;}
.x6d_c00235{left:214.500000px;}
.x4e_c00235{left:216.000000px;}
.x20_c00235{left:219.000000px;}
.x82_c00235{left:220.500000px;}
.x37_c00235{left:222.000000px;}
.xaf_c00235{left:223.080000px;}
.xf7_c00235{left:226.500000px;}
.x94_c00235{left:228.420000px;}
.x5f_c00235{left:232.500000px;}
.xd2_c00235{left:234.000000px;}
.x21_c00235{left:237.420000px;}
.xc9_c00235{left:238.920000px;}
.x2d_c00235{left:240.000000px;}
.x14_c00235{left:243.000000px;}
.xb6_c00235{left:246.000000px;}
.x5_c00235{left:252.000000px;}
.x60_c00235{left:253.920000px;}
.x8a_c00235{left:255.000000px;}
.x93_c00235{left:256.500000px;}
.x42_c00235{left:259.500000px;}
.x15_c00235{left:262.500000px;}
.xcd_c00235{left:265.920000px;}
.xbd_c00235{left:267.420000px;}
.x22_c00235{left:268.500000px;}
.xb0_c00235{left:271.500000px;}
.xe8_c00235{left:273.000000px;}
.x69_c00235{left:276.000000px;}
.x6e_c00235{left:277.500000px;}
.xca_c00235{left:279.000000px;}
.x4f_c00235{left:280.080000px;}
.x6_c00235{left:283.920000px;}
.xf1_c00235{left:286.500000px;}
.x2e_c00235{left:288.000000px;}
.x16_c00235{left:289.500000px;}
.x78_c00235{left:291.000000px;}
.x8b_c00235{left:292.920000px;}
.x6f_c00235{left:294.000000px;}
.x38_c00235{left:295.500000px;}
.xc5_c00235{left:297.000000px;}
.xdc_c00235{left:298.920000px;}
.xee_c00235{left:300.000000px;}
.x79_c00235{left:304.500000px;}
.x95_c00235{left:306.000000px;}
.x61_c00235{left:310.920000px;}
.x6a_c00235{left:312.000000px;}
.x9f_c00235{left:313.080000px;}
.xbe_c00235{left:314.580000px;}
.x7_c00235{left:319.920000px;}
.xec_c00235{left:322.500000px;}
.xda_c00235{left:325.500000px;}
.x9b_c00235{left:327.000000px;}
.x43_c00235{left:328.500000px;}
.x70_c00235{left:329.580000px;}
.x23_c00235{left:331.080000px;}
.xa8_c00235{left:334.500000px;}
.x2f_c00235{left:335.580000px;}
.x6b_c00235{left:339.000000px;}
.x62_c00235{left:340.080000px;}
.x83_c00235{left:341.145000px;}
.x50_c00235{left:342.420000px;}
.xe2_c00235{left:343.500000px;}
.x8_c00235{left:346.080000px;}
.x9c_c00235{left:347.580000px;}
.x71_c00235{left:352.500000px;}
.xe9_c00235{left:354.420000px;}
.x8c_c00235{left:358.920000px;}
.x24_c00235{left:360.000000px;}
.x44_c00235{left:361.500000px;}
.x1_c00235{left:364.080000px;}
.xa0_c00235{left:366.420000px;}
.x96_c00235{left:367.500000px;}
.x17_c00235{left:370.080000px;}
.xdd_c00235{left:372.420000px;}
.xef_c00235{left:375.420000px;}
.xa9_c00235{left:379.500000px;}
.x51_c00235{left:382.500000px;}
.x39_c00235{left:383.580000px;}
.xb7_c00235{left:385.500000px;}
.x84_c00235{left:388.080000px;}
.xe3_c00235{left:391.500000px;}
.x6c_c00235{left:392.580000px;}
.x8d_c00235{left:394.500000px;}
.x63_c00235{left:396.000000px;}
.x25_c00235{left:397.500000px;}
.xd3_c00235{left:399.000000px;}
.xa4_c00235{left:403.500000px;}
.xce_c00235{left:408.000000px;}
.x97_c00235{left:409.500000px;}
.x8e_c00235{left:414.000000px;}
.xf8_c00235{left:417.000000px;}
.x9_c00235{left:418.080000px;}
.x2_c00235{left:419.145000px;}
.x30_c00235{left:420.420000px;}
.xb8_c00235{left:421.500000px;}
.x52_c00235{left:424.500000px;}
.x26_c00235{left:426.000000px;}
.x18_c00235{left:429.000000px;}
.x45_c00235{left:432.000000px;}
.xc6_c00235{left:435.000000px;}
.x7a_c00235{left:436.500000px;}
.x8f_c00235{left:438.000000px;}
.xa_c00235{left:439.080000px;}
.xa5_c00235{left:442.920000px;}
.x53_c00235{left:444.420000px;}
.x59_c00235{left:445.500000px;}
.xb1_c00235{left:447.420000px;}
.x19_c00235{left:448.500000px;}
.xe4_c00235{left:450.420000px;}
.x3a_c00235{left:453.000000px;}
.x64_c00235{left:454.500000px;}
.x7b_c00235{left:456.420000px;}
.x1a_c00235{left:459.420000px;}
.x31_c00235{left:460.500000px;}
.xcb_c00235{left:463.080000px;}
.x72_c00235{left:467.580000px;}
.xac_c00235{left:470.580000px;}
.x3b_c00235{left:472.500000px;}
.xea_c00235{left:473.580000px;}
.x85_c00235{left:475.500000px;}
.x98_c00235{left:477.000000px;}
.xb_c00235{left:484.500000px;}
.xbf_c00235{left:486.000000px;}
.x27_c00235{left:487.920000px;}
.xb9_c00235{left:490.500000px;}
.x90_c00235{left:493.920000px;}
.x32_c00235{left:495.000000px;}
.x1b_c00235{left:498.000000px;}
.x86_c00235{left:501.000000px;}
.xc_c00235{left:502.500000px;}
.x46_c00235{left:504.000000px;}
.xd4_c00235{left:505.500000px;}
.xde_c00235{left:507.000000px;}
.xf6_c00235{left:508.080000px;}
.x3c_c00235{left:510.000000px;}
.x28_c00235{left:512.580000px;}
.xb2_c00235{left:515.580000px;}
.x5a_c00235{left:522.420000px;}
.x47_c00235{left:523.500000px;}
.xcc_c00235{left:524.580000px;}
.x91_c00235{left:526.500000px;}
.x7c_c00235{left:527.580000px;}
.xd_c00235{left:529.920000px;}
.x1c_c00235{left:532.500000px;}
.xba_c00235{left:533.580000px;}
.xf2_c00235{left:535.080000px;}
.xdf_c00235{left:541.500000px;}
.x73_c00235{left:544.080000px;}
.xe5_c00235{left:545.580000px;}
.xcf_c00235{left:549.000000px;}
.xc0_c00235{left:550.080000px;}
.x54_c00235{left:551.580000px;}
.x65_c00235{left:553.500000px;}
.x5b_c00235{left:555.000000px;}
.xaa_c00235{left:556.500000px;}
.xd5_c00235{left:558.000000px;}
.x1d_c00235{left:559.500000px;}
.x33_c00235{left:561.855000px;}
.xe_c00235{left:564.000000px;}
.x29_c00235{left:566.580000px;}
.xc7_c00235{left:568.920000px;}
.xd6_c00235{left:572.580000px;}
.x48_c00235{left:576.000000px;}
.xa1_c00235{left:577.500000px;}
.x66_c00235{left:578.580000px;}
.x9d_c00235{left:580.080000px;}
.xb3_c00235{left:582.000000px;}
.xf3_c00235{left:583.080000px;}
.x2a_c00235{left:584.580000px;}
.xad_c00235{left:586.080000px;}
.xeb_c00235{left:588.420000px;}
.x74_c00235{left:591.000000px;}
.xf0_c00235{left:592.080000px;}
.xbb_c00235{left:594.000000px;}
.x49_c00235{left:597.000000px;}
.x1e_c00235{left:598.500000px;}
.x34_c00235{left:601.500000px;}
.x3d_c00235{left:603.000000px;}
.xf9_c00235{left:608.580000px;}
.xb4_c00235{left:610.500000px;}
.x87_c00235{left:613.920000px;}
.xf4_c00235{left:615.000000px;}
.x99_c00235{left:616.500000px;}
.xfa_c00235{left:617.580000px;}
.x92_c00235{left:621.000000px;}
.xf_c00235{left:622.080000px;}
.x55_c00235{left:624.420000px;}
.x2b_c00235{left:625.500000px;}
.x4a_c00235{left:626.580000px;}
.x67_c00235{left:628.920000px;}
.x5c_c00235{left:630.000000px;}
.x35_c00235{left:631.500000px;}
.xa2_c00235{left:633.420000px;}
.x7d_c00235{left:634.500000px;}
.x10_c00235{left:640.500000px;}
.x4b_c00235{left:646.500000px;}
.xc1_c00235{left:648.000000px;}
.x1f_c00235{left:649.920000px;}
.x56_c00235{left:651.000000px;}
.x7e_c00235{left:655.500000px;}
.x3e_c00235{left:659.580000px;}
.xbc_c00235{left:661.500000px;}
.xab_c00235{left:663.000000px;}
.xa6_c00235{left:664.500000px;}
.x11_c00235{left:666.000000px;}
.xe6_c00235{left:667.920000px;}
.x4c_c00235{left:675.420000px;}
.x36_c00235{left:676.920000px;}
.xd0_c00235{left:678.420000px;}
.x2c_c00235{left:681.000000px;}
.x5d_c00235{left:682.500000px;}
.x57_c00235{left:684.000000px;}
.xa3_c00235{left:688.500000px;}
.x3f_c00235{left:689.580000px;}
.x7f_c00235{left:693.420000px;}
.x75_c00235{left:694.500000px;}
.x68_c00235{left:697.920000px;}
.xc2_c00235{left:699.000000px;}
.xd7_c00235{left:703.080000px;}
.xae_c00235{left:704.580000px;}
.xed_c00235{left:711.000000px;}
.x5e_c00235{left:712.500000px;}
.x9e_c00235{left:713.580000px;}
.xe7_c00235{left:718.500000px;}
.x4d_c00235{left:721.500000px;}
.xd8_c00235{left:723.000000px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.ls0_c00235{letter-spacing:0.000000pt;}
.ws1_c00235{word-spacing:-6.281113pt;}
.ws0_c00235{word-spacing:-0.230824pt;}
.ws3_c00235{word-spacing:0.000000pt;}
.ws2_c00235{word-spacing:1.499187pt;}
.fs7_c00235{font-size:3.040000pt;}
.fs2_c00235{font-size:16.640000pt;}
.fs6_c00235{font-size:18.133333pt;}
.fs1_c00235{font-size:22.666667pt;}
.fs0_c00235{font-size:25.706667pt;}
.fs3_c00235{font-size:28.746667pt;}
.fs4_c00235{font-size:31.733333pt;}
.fs5_c00235{font-size:34.773333pt;}
.y0_c00235{bottom:0.000000pt;}
.ye4_c00235{bottom:205.693333pt;}
.ye6_c00235{bottom:206.066667pt;}
.ye5_c00235{bottom:206.640000pt;}
.ye7_c00235{bottom:207.026667pt;}
.ye8_c00235{bottom:207.973333pt;}
.ydf_c00235{bottom:221.106667pt;}
.ye3_c00235{bottom:221.493333pt;}
.ye2_c00235{bottom:222.440000pt;}
.ye0_c00235{bottom:223.973333pt;}
.ye1_c00235{bottom:224.360000pt;}
.yda_c00235{bottom:239.773333pt;}
.yd8_c00235{bottom:240.560000pt;}
.ydb_c00235{bottom:240.733333pt;}
.ydc_c00235{bottom:241.106667pt;}
.yd9_c00235{bottom:241.306667pt;}
.yde_c00235{bottom:241.693333pt;}
.ydd_c00235{bottom:241.893333pt;}
.yd2_c00235{bottom:257.106667pt;}
.yd3_c00235{bottom:257.493333pt;}
.yd1_c00235{bottom:257.893333pt;}
.yd6_c00235{bottom:258.440000pt;}
.yd7_c00235{bottom:259.400000pt;}
.yd4_c00235{bottom:259.973333pt;}
.yd5_c00235{bottom:260.360000pt;}
.ycb_c00235{bottom:274.440000pt;}
.ycf_c00235{bottom:275.773333pt;}
.ycc_c00235{bottom:276.360000pt;}
.yd0_c00235{bottom:276.560000pt;}
.yce_c00235{bottom:276.733333pt;}
.ycd_c00235{bottom:277.693333pt;}
.yc9_c00235{bottom:291.773333pt;}
.yc4_c00235{bottom:292.160000pt;}
.yc8_c00235{bottom:293.106667pt;}
.yc5_c00235{bottom:293.693333pt;}
.yca_c00235{bottom:293.893333pt;}
.yc7_c00235{bottom:295.026667pt;}
.yc6_c00235{bottom:295.973333pt;}
.yc3_c00235{bottom:310.440000pt;}
.yc0_c00235{bottom:311.400000pt;}
.yc1_c00235{bottom:311.973333pt;}
.yc2_c00235{bottom:312.360000pt;}
.ybc_c00235{bottom:327.400000pt;}
.ybd_c00235{bottom:327.773333pt;}
.ybf_c00235{bottom:328.733333pt;}
.ybe_c00235{bottom:329.306667pt;}
.ybb_c00235{bottom:329.693333pt;}
.yb8_c00235{bottom:346.440000pt;}
.yb6_c00235{bottom:347.026667pt;}
.yba_c00235{bottom:347.226667pt;}
.yb9_c00235{bottom:347.973333pt;}
.yb7_c00235{bottom:348.360000pt;}
.yb3_c00235{bottom:361.693333pt;}
.yb2_c00235{bottom:363.400000pt;}
.yb5_c00235{bottom:363.773333pt;}
.yb4_c00235{bottom:365.693333pt;}
.yac_c00235{bottom:379.026667pt;}
.yaf_c00235{bottom:379.773333pt;}
.yab_c00235{bottom:380.733333pt;}
.yaa_c00235{bottom:381.693333pt;}
.yb1_c00235{bottom:381.706667pt;}
.yae_c00235{bottom:381.893333pt;}
.yb0_c00235{bottom:382.640000pt;}
.yad_c00235{bottom:383.026667pt;}
.ya4_c00235{bottom:396.360000pt;}
.ya6_c00235{bottom:398.066667pt;}
.ya8_c00235{bottom:398.440000pt;}
.ya3_c00235{bottom:399.026667pt;}
.ya7_c00235{bottom:399.226667pt;}
.ya9_c00235{bottom:399.973333pt;}
.ya5_c00235{bottom:400.360000pt;}
.ya1_c00235{bottom:414.826667pt;}
.y9e_c00235{bottom:415.773333pt;}
.y9d_c00235{bottom:417.306667pt;}
.y9f_c00235{bottom:417.693333pt;}
.ya0_c00235{bottom:417.893333pt;}
.ya2_c00235{bottom:418.640000pt;}
.y97_c00235{bottom:433.106667pt;}
.y9c_c00235{bottom:434.066667pt;}
.y9a_c00235{bottom:434.440000pt;}
.y96_c00235{bottom:435.026667pt;}
.y98_c00235{bottom:435.226667pt;}
.y99_c00235{bottom:435.973333pt;}
.y9b_c00235{bottom:436.360000pt;}
.y91_c00235{bottom:450.440000pt;}
.y95_c00235{bottom:451.400000pt;}
.y93_c00235{bottom:451.773333pt;}
.y90_c00235{bottom:452.360000pt;}
.y92_c00235{bottom:452.560000pt;}
.y94_c00235{bottom:453.693333pt;}
.y88_c00235{bottom:467.773333pt;}
.y8a_c00235{bottom:467.973333pt;}
.y8b_c00235{bottom:468.733333pt;}
.y8d_c00235{bottom:469.106667pt;}
.y87_c00235{bottom:469.693333pt;}
.y89_c00235{bottom:469.893333pt;}
.y8f_c00235{bottom:470.640000pt;}
.y8c_c00235{bottom:471.026667pt;}
.y8e_c00235{bottom:471.973333pt;}
.y83_c00235{bottom:484.360000pt;}
.y84_c00235{bottom:486.440000pt;}
.y81_c00235{bottom:487.026667pt;}
.y86_c00235{bottom:487.226667pt;}
.y85_c00235{bottom:487.973333pt;}
.y82_c00235{bottom:488.360000pt;}
.y80_c00235{bottom:503.026667pt;}
.y7c_c00235{bottom:503.773333pt;}
.y7e_c00235{bottom:503.973333pt;}
.y7d_c00235{bottom:504.733333pt;}
.y7b_c00235{bottom:505.693333pt;}
.y7f_c00235{bottom:505.893333pt;}
.y76_c00235{bottom:519.026667pt;}
.y77_c00235{bottom:521.106667pt;}
.y75_c00235{bottom:521.893333pt;}
.y74_c00235{bottom:522.066667pt;}
.y79_c00235{bottom:522.640000pt;}
.y78_c00235{bottom:523.026667pt;}
.y7a_c00235{bottom:523.226667pt;}
.y73_c00235{bottom:538.440000pt;}
.y72_c00235{bottom:539.226667pt;}
.y71_c00235{bottom:540.360000pt;}
.y6b_c00235{bottom:555.026667pt;}
.y6a_c00235{bottom:555.773333pt;}
.y6c_c00235{bottom:557.106667pt;}
.y6d_c00235{bottom:557.693333pt;}
.y6e_c00235{bottom:557.893333pt;}
.y70_c00235{bottom:558.640000pt;}
.y6f_c00235{bottom:559.026667pt;}
.y65_c00235{bottom:572.733333pt;}
.y66_c00235{bottom:573.493333pt;}
.y67_c00235{bottom:574.440000pt;}
.y69_c00235{bottom:575.400000pt;}
.y68_c00235{bottom:576.360000pt;}
.y60_c00235{bottom:590.440000pt;}
.y64_c00235{bottom:591.400000pt;}
.y61_c00235{bottom:591.773333pt;}
.y5f_c00235{bottom:592.360000pt;}
.y63_c00235{bottom:592.560000pt;}
.y62_c00235{bottom:593.693333pt;}
.y5c_c00235{bottom:607.773333pt;}
.y5d_c00235{bottom:609.893333pt;}
.y5e_c00235{bottom:611.026667pt;}
.y57_c00235{bottom:624.360000pt;}
.y55_c00235{bottom:626.440000pt;}
.y54_c00235{bottom:627.026667pt;}
.y58_c00235{bottom:627.226667pt;}
.y56_c00235{bottom:627.400000pt;}
.y5b_c00235{bottom:627.973333pt;}
.y59_c00235{bottom:628.360000pt;}
.y5a_c00235{bottom:629.306667pt;}
.y4f_c00235{bottom:641.693333pt;}
.y52_c00235{bottom:643.026667pt;}
.y53_c00235{bottom:643.773333pt;}
.y4e_c00235{bottom:644.360000pt;}
.y51_c00235{bottom:644.733333pt;}
.y50_c00235{bottom:645.693333pt;}
.y4d_c00235{bottom:660.360000pt;}
.y4b_c00235{bottom:661.106667pt;}
.y48_c00235{bottom:661.893333pt;}
.y49_c00235{bottom:663.026667pt;}
.y4a_c00235{bottom:663.226667pt;}
.y4c_c00235{bottom:663.973333pt;}
.y43_c00235{bottom:677.693333pt;}
.y42_c00235{bottom:678.440000pt;}
.y45_c00235{bottom:678.826667pt;}
.y46_c00235{bottom:679.773333pt;}
.y40_c00235{bottom:680.360000pt;}
.y41_c00235{bottom:680.560000pt;}
.y47_c00235{bottom:681.306667pt;}
.y44_c00235{bottom:681.693333pt;}
.y3d_c00235{bottom:697.693333pt;}
.y3f_c00235{bottom:697.893333pt;}
.y3e_c00235{bottom:698.640000pt;}
.y3a_c00235{bottom:713.106667pt;}
.y39_c00235{bottom:713.893333pt;}
.y37_c00235{bottom:714.066667pt;}
.y3c_c00235{bottom:715.026667pt;}
.y3b_c00235{bottom:715.226667pt;}
.y38_c00235{bottom:715.973333pt;}
.y35_c00235{bottom:730.826667pt;}
.y32_c00235{bottom:731.600000pt;}
.y31_c00235{bottom:731.773333pt;}
.y30_c00235{bottom:732.360000pt;}
.y36_c00235{bottom:732.733333pt;}
.y33_c00235{bottom:733.306667pt;}
.y34_c00235{bottom:733.693333pt;}
.y2b_c00235{bottom:747.400000pt;}
.y2c_c00235{bottom:749.106667pt;}
.y2f_c00235{bottom:750.266667pt;}
.y2a_c00235{bottom:751.026667pt;}
.y2d_c00235{bottom:751.226667pt;}
.y2e_c00235{bottom:752.360000pt;}
.y29_c00235{bottom:766.440000pt;}
.y24_c00235{bottom:767.226667pt;}
.y26_c00235{bottom:767.400000pt;}
.y23_c00235{bottom:767.973333pt;}
.y25_c00235{bottom:768.360000pt;}
.y27_c00235{bottom:768.560000pt;}
.y28_c00235{bottom:769.306667pt;}
.y22_c00235{bottom:781.693333pt;}
.y1d_c00235{bottom:782.440000pt;}
.y1f_c00235{bottom:783.773333pt;}
.y1c_c00235{bottom:784.360000pt;}
.y1e_c00235{bottom:785.306667pt;}
.y20_c00235{bottom:785.693333pt;}
.y21_c00235{bottom:786.640000pt;}
.y17_c00235{bottom:800.160000pt;}
.y18_c00235{bottom:800.360000pt;}
.y1b_c00235{bottom:800.733333pt;}
.y14_c00235{bottom:801.106667pt;}
.y19_c00235{bottom:801.493333pt;}
.y13_c00235{bottom:802.066667pt;}
.y1a_c00235{bottom:802.440000pt;}
.y15_c00235{bottom:803.026667pt;}
.y16_c00235{bottom:803.226667pt;}
.y10_c00235{bottom:818.440000pt;}
.y12_c00235{bottom:818.826667pt;}
.ye_c00235{bottom:819.773333pt;}
.y11_c00235{bottom:821.306667pt;}
.yf_c00235{bottom:821.693333pt;}
.yd_c00235{bottom:837.106667pt;}
.yb_c00235{bottom:838.640000pt;}
.yc_c00235{bottom:839.973333pt;}
.ya_c00235{bottom:853.106667pt;}
.y7_c00235{bottom:853.306667pt;}
.y8_c00235{bottom:853.693333pt;}
.y6_c00235{bottom:854.066667pt;}
.y4_c00235{bottom:855.026667pt;}
.y5_c00235{bottom:855.226667pt;}
.y3_c00235{bottom:855.973333pt;}
.y9_c00235{bottom:856.360000pt;}
.y1_c00235{bottom:891.026667pt;}
.y2_c00235{bottom:892.360000pt;}
.h8_c00235{height:3.739141pt;}
.h3_c00235{height:20.466875pt;}
.h7_c00235{height:22.303646pt;}
.h2_c00235{height:27.879557pt;}
.h1_c00235{height:31.618698pt;}
.h4_c00235{height:35.357839pt;}
.h5_c00235{height:39.031380pt;}
.h6_c00235{height:42.770521pt;}
.h0_c00235{height:1186.666667pt;}
.w0_c00235{width:782.666667pt;}
.x0_c00235{left:0.000000pt;}
.x12_c00235{left:132.960000pt;}
.x88_c00235{left:133.906667pt;}
.x80_c00235{left:135.040000pt;}
.xd9_c00235{left:136.000000pt;}
.x3_c00235{left:148.000000pt;}
.x13_c00235{left:149.333333pt;}
.xdb_c00235{left:150.666667pt;}
.xc8_c00235{left:153.706667pt;}
.xb5_c00235{left:158.666667pt;}
.xc3_c00235{left:161.333333pt;}
.x76_c00235{left:165.333333pt;}
.x40_c00235{left:166.666667pt;}
.xf5_c00235{left:168.000000pt;}
.x4_c00235{left:168.960000pt;}
.x81_c00235{left:171.040000pt;}
.xe0_c00235{left:172.000000pt;}
.x9a_c00235{left:172.960000pt;}
.xc4_c00235{left:174.666667pt;}
.x58_c00235{left:179.040000pt;}
.x77_c00235{left:181.906667pt;}
.xd1_c00235{left:183.040000pt;}
.x89_c00235{left:184.960000pt;}
.xa7_c00235{left:186.666667pt;}
.x41_c00235{left:187.626667pt;}
.xe1_c00235{left:189.333333pt;}
.x6d_c00235{left:190.666667pt;}
.x4e_c00235{left:192.000000pt;}
.x20_c00235{left:194.666667pt;}
.x82_c00235{left:196.000000pt;}
.x37_c00235{left:197.333333pt;}
.xaf_c00235{left:198.293333pt;}
.xf7_c00235{left:201.333333pt;}
.x94_c00235{left:203.040000pt;}
.x5f_c00235{left:206.666667pt;}
.xd2_c00235{left:208.000000pt;}
.x21_c00235{left:211.040000pt;}
.xc9_c00235{left:212.373333pt;}
.x2d_c00235{left:213.333333pt;}
.x14_c00235{left:216.000000pt;}
.xb6_c00235{left:218.666667pt;}
.x5_c00235{left:224.000000pt;}
.x60_c00235{left:225.706667pt;}
.x8a_c00235{left:226.666667pt;}
.x93_c00235{left:228.000000pt;}
.x42_c00235{left:230.666667pt;}
.x15_c00235{left:233.333333pt;}
.xcd_c00235{left:236.373333pt;}
.xbd_c00235{left:237.706667pt;}
.x22_c00235{left:238.666667pt;}
.xb0_c00235{left:241.333333pt;}
.xe8_c00235{left:242.666667pt;}
.x69_c00235{left:245.333333pt;}
.x6e_c00235{left:246.666667pt;}
.xca_c00235{left:248.000000pt;}
.x4f_c00235{left:248.960000pt;}
.x6_c00235{left:252.373333pt;}
.xf1_c00235{left:254.666667pt;}
.x2e_c00235{left:256.000000pt;}
.x16_c00235{left:257.333333pt;}
.x78_c00235{left:258.666667pt;}
.x8b_c00235{left:260.373333pt;}
.x6f_c00235{left:261.333333pt;}
.x38_c00235{left:262.666667pt;}
.xc5_c00235{left:264.000000pt;}
.xdc_c00235{left:265.706667pt;}
.xee_c00235{left:266.666667pt;}
.x79_c00235{left:270.666667pt;}
.x95_c00235{left:272.000000pt;}
.x61_c00235{left:276.373333pt;}
.x6a_c00235{left:277.333333pt;}
.x9f_c00235{left:278.293333pt;}
.xbe_c00235{left:279.626667pt;}
.x7_c00235{left:284.373333pt;}
.xec_c00235{left:286.666667pt;}
.xda_c00235{left:289.333333pt;}
.x9b_c00235{left:290.666667pt;}
.x43_c00235{left:292.000000pt;}
.x70_c00235{left:292.960000pt;}
.x23_c00235{left:294.293333pt;}
.xa8_c00235{left:297.333333pt;}
.x2f_c00235{left:298.293333pt;}
.x6b_c00235{left:301.333333pt;}
.x62_c00235{left:302.293333pt;}
.x83_c00235{left:303.240000pt;}
.x50_c00235{left:304.373333pt;}
.xe2_c00235{left:305.333333pt;}
.x8_c00235{left:307.626667pt;}
.x9c_c00235{left:308.960000pt;}
.x71_c00235{left:313.333333pt;}
.xe9_c00235{left:315.040000pt;}
.x8c_c00235{left:319.040000pt;}
.x24_c00235{left:320.000000pt;}
.x44_c00235{left:321.333333pt;}
.x1_c00235{left:323.626667pt;}
.xa0_c00235{left:325.706667pt;}
.x96_c00235{left:326.666667pt;}
.x17_c00235{left:328.960000pt;}
.xdd_c00235{left:331.040000pt;}
.xef_c00235{left:333.706667pt;}
.xa9_c00235{left:337.333333pt;}
.x51_c00235{left:340.000000pt;}
.x39_c00235{left:340.960000pt;}
.xb7_c00235{left:342.666667pt;}
.x84_c00235{left:344.960000pt;}
.xe3_c00235{left:348.000000pt;}
.x6c_c00235{left:348.960000pt;}
.x8d_c00235{left:350.666667pt;}
.x63_c00235{left:352.000000pt;}
.x25_c00235{left:353.333333pt;}
.xd3_c00235{left:354.666667pt;}
.xa4_c00235{left:358.666667pt;}
.xce_c00235{left:362.666667pt;}
.x97_c00235{left:364.000000pt;}
.x8e_c00235{left:368.000000pt;}
.xf8_c00235{left:370.666667pt;}
.x9_c00235{left:371.626667pt;}
.x2_c00235{left:372.573333pt;}
.x30_c00235{left:373.706667pt;}
.xb8_c00235{left:374.666667pt;}
.x52_c00235{left:377.333333pt;}
.x26_c00235{left:378.666667pt;}
.x18_c00235{left:381.333333pt;}
.x45_c00235{left:384.000000pt;}
.xc6_c00235{left:386.666667pt;}
.x7a_c00235{left:388.000000pt;}
.x8f_c00235{left:389.333333pt;}
.xa_c00235{left:390.293333pt;}
.xa5_c00235{left:393.706667pt;}
.x53_c00235{left:395.040000pt;}
.x59_c00235{left:396.000000pt;}
.xb1_c00235{left:397.706667pt;}
.x19_c00235{left:398.666667pt;}
.xe4_c00235{left:400.373333pt;}
.x3a_c00235{left:402.666667pt;}
.x64_c00235{left:404.000000pt;}
.x7b_c00235{left:405.706667pt;}
.x1a_c00235{left:408.373333pt;}
.x31_c00235{left:409.333333pt;}
.xcb_c00235{left:411.626667pt;}
.x72_c00235{left:415.626667pt;}
.xac_c00235{left:418.293333pt;}
.x3b_c00235{left:420.000000pt;}
.xea_c00235{left:420.960000pt;}
.x85_c00235{left:422.666667pt;}
.x98_c00235{left:424.000000pt;}
.xb_c00235{left:430.666667pt;}
.xbf_c00235{left:432.000000pt;}
.x27_c00235{left:433.706667pt;}
.xb9_c00235{left:436.000000pt;}
.x90_c00235{left:439.040000pt;}
.x32_c00235{left:440.000000pt;}
.x1b_c00235{left:442.666667pt;}
.x86_c00235{left:445.333333pt;}
.xc_c00235{left:446.666667pt;}
.x46_c00235{left:448.000000pt;}
.xd4_c00235{left:449.333333pt;}
.xde_c00235{left:450.666667pt;}
.xf6_c00235{left:451.626667pt;}
.x3c_c00235{left:453.333333pt;}
.x28_c00235{left:455.626667pt;}
.xb2_c00235{left:458.293333pt;}
.x5a_c00235{left:464.373333pt;}
.x47_c00235{left:465.333333pt;}
.xcc_c00235{left:466.293333pt;}
.x91_c00235{left:468.000000pt;}
.x7c_c00235{left:468.960000pt;}
.xd_c00235{left:471.040000pt;}
.x1c_c00235{left:473.333333pt;}
.xba_c00235{left:474.293333pt;}
.xf2_c00235{left:475.626667pt;}
.xdf_c00235{left:481.333333pt;}
.x73_c00235{left:483.626667pt;}
.xe5_c00235{left:484.960000pt;}
.xcf_c00235{left:488.000000pt;}
.xc0_c00235{left:488.960000pt;}
.x54_c00235{left:490.293333pt;}
.x65_c00235{left:492.000000pt;}
.x5b_c00235{left:493.333333pt;}
.xaa_c00235{left:494.666667pt;}
.xd5_c00235{left:496.000000pt;}
.x1d_c00235{left:497.333333pt;}
.x33_c00235{left:499.426667pt;}
.xe_c00235{left:501.333333pt;}
.x29_c00235{left:503.626667pt;}
.xc7_c00235{left:505.706667pt;}
.xd6_c00235{left:508.960000pt;}
.x48_c00235{left:512.000000pt;}
.xa1_c00235{left:513.333333pt;}
.x66_c00235{left:514.293333pt;}
.x9d_c00235{left:515.626667pt;}
.xb3_c00235{left:517.333333pt;}
.xf3_c00235{left:518.293333pt;}
.x2a_c00235{left:519.626667pt;}
.xad_c00235{left:520.960000pt;}
.xeb_c00235{left:523.040000pt;}
.x74_c00235{left:525.333333pt;}
.xf0_c00235{left:526.293333pt;}
.xbb_c00235{left:528.000000pt;}
.x49_c00235{left:530.666667pt;}
.x1e_c00235{left:532.000000pt;}
.x34_c00235{left:534.666667pt;}
.x3d_c00235{left:536.000000pt;}
.xf9_c00235{left:540.960000pt;}
.xb4_c00235{left:542.666667pt;}
.x87_c00235{left:545.706667pt;}
.xf4_c00235{left:546.666667pt;}
.x99_c00235{left:548.000000pt;}
.xfa_c00235{left:548.960000pt;}
.x92_c00235{left:552.000000pt;}
.xf_c00235{left:552.960000pt;}
.x55_c00235{left:555.040000pt;}
.x2b_c00235{left:556.000000pt;}
.x4a_c00235{left:556.960000pt;}
.x67_c00235{left:559.040000pt;}
.x5c_c00235{left:560.000000pt;}
.x35_c00235{left:561.333333pt;}
.xa2_c00235{left:563.040000pt;}
.x7d_c00235{left:564.000000pt;}
.x10_c00235{left:569.333333pt;}
.x4b_c00235{left:574.666667pt;}
.xc1_c00235{left:576.000000pt;}
.x1f_c00235{left:577.706667pt;}
.x56_c00235{left:578.666667pt;}
.x7e_c00235{left:582.666667pt;}
.x3e_c00235{left:586.293333pt;}
.xbc_c00235{left:588.000000pt;}
.xab_c00235{left:589.333333pt;}
.xa6_c00235{left:590.666667pt;}
.x11_c00235{left:592.000000pt;}
.xe6_c00235{left:593.706667pt;}
.x4c_c00235{left:600.373333pt;}
.x36_c00235{left:601.706667pt;}
.xd0_c00235{left:603.040000pt;}
.x2c_c00235{left:605.333333pt;}
.x5d_c00235{left:606.666667pt;}
.x57_c00235{left:608.000000pt;}
.xa3_c00235{left:612.000000pt;}
.x3f_c00235{left:612.960000pt;}
.x7f_c00235{left:616.373333pt;}
.x75_c00235{left:617.333333pt;}
.x68_c00235{left:620.373333pt;}
.xc2_c00235{left:621.333333pt;}
.xd7_c00235{left:624.960000pt;}
.xae_c00235{left:626.293333pt;}
.xed_c00235{left:632.000000pt;}
.x5e_c00235{left:633.333333pt;}
.x9e_c00235{left:634.293333pt;}
.xe7_c00235{left:638.666667pt;}
.x4d_c00235{left:641.333333pt;}
.xd8_c00235{left:642.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_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_340c4e06cb7a3f0c1c5eada7.woff2')format("woff");}.ff1_c00236{font-family:ff1_c00236;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8e_c00236{transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);}
.ma7_c00236{transform:matrix(0.194502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194502,0.000000,0.000000,0.250000,0,0);}
.ma6_c00236{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m70_c00236{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_c00236{transform:matrix(0.363497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363497,0.000000,0.000000,0.250000,0,0);}
.m8_c00236{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m40_c00236{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m7d_c00236{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m7b_c00236{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m3f_c00236{transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);}
.m7a_c00236{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m6e_c00236{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.mb5_c00236{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m6f_c00236{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m43_c00236{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mb4_c00236{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m22_c00236{transform:matrix(0.399540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399540,0.000000,0.000000,0.250000,0,0);}
.m42_c00236{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m3_c00236{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m62_c00236{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m21_c00236{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m71_c00236{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m91_c00236{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m4d_c00236{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m65_c00236{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.mab_c00236{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m5a_c00236{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m66_c00236{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m6a_c00236{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m34_c00236{transform:matrix(0.409893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409893,0.000000,0.000000,0.250000,0,0);}
.m53_c00236{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mca_c00236{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m44_c00236{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.ma3_c00236{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.maa_c00236{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m8d_c00236{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mc4_c00236{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m84_c00236{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.mb1_c00236{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m3a_c00236{transform:matrix(0.422929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422929,0.000000,0.000000,0.250000,0,0);}
.m9a_c00236{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mb9_c00236{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m67_c00236{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.mc5_c00236{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m5d_c00236{transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);}
.m83_c00236{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m23_c00236{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m79_c00236{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m39_c00236{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m69_c00236{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.ma1_c00236{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mb2_c00236{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m10_c00236{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.ma2_c00236{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m50_c00236{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m45_c00236{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m9c_c00236{transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);}
.m99_c00236{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m64_c00236{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.m9e_c00236{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.ma_c00236{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m68_c00236{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m73_c00236{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m1_c00236{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m4f_c00236{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.ma4_c00236{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m5e_c00236{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.ma9_c00236{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.mf_c00236{transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);}
.m6d_c00236{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m9b_c00236{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.mb_c00236{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m96_c00236{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m82_c00236{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m95_c00236{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m5c_c00236{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.m17_c00236{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m58_c00236{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.md_c00236{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m46_c00236{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m12_c00236{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mc3_c00236{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m1c_c00236{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m98_c00236{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mc7_c00236{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m4c_c00236{transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);}
.m89_c00236{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m32_c00236{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);}
.m94_c00236{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mbe_c00236{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m76_c00236{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m52_c00236{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m63_c00236{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m3b_c00236{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m54_c00236{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m1d_c00236{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m60_c00236{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m85_c00236{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m4e_c00236{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m2_c00236{transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);}
.m7e_c00236{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m5f_c00236{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mac_c00236{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m8b_c00236{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.mb6_c00236{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m3e_c00236{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m36_c00236{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m8c_c00236{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m74_c00236{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m90_c00236{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m86_c00236{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m3d_c00236{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m20_c00236{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m15_c00236{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.maf_c00236{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m51_c00236{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m88_c00236{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m31_c00236{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m9_c00236{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mbf_c00236{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mae_c00236{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m72_c00236{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m7c_c00236{transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);}
.m77_c00236{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m16_c00236{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mc6_c00236{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.mbc_c00236{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m78_c00236{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m4b_c00236{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m4a_c00236{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m18_c00236{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m1a_c00236{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.mad_c00236{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m35_c00236{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m37_c00236{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m1e_c00236{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mc2_c00236{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m14_c00236{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m81_c00236{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mc0_c00236{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m87_c00236{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m41_c00236{transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);}
.ma0_c00236{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mba_c00236{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m75_c00236{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m59_c00236{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m6_c00236{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m26_c00236{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m5b_c00236{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m29_c00236{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.mb0_c00236{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m25_c00236{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m55_c00236{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m6b_c00236{transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);}
.mb8_c00236{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.mbb_c00236{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m3c_c00236{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m33_c00236{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m30_c00236{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m4_c00236{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);}
.m2f_c00236{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m48_c00236{transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);}
.m97_c00236{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m49_c00236{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m7_c00236{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m56_c00236{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m1f_c00236{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m38_c00236{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.mc_c00236{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.m0_c00236{transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);}
.m24_c00236{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m28_c00236{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);}
.m92_c00236{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.mc9_c00236{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m93_c00236{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m2b_c00236{transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);}
.m2e_c00236{transform:matrix(0.648824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648824,0.000000,0.000000,0.250000,0,0);}
.m2c_c00236{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m8a_c00236{transform:matrix(0.657051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657051,0.000000,0.000000,0.250000,0,0);}
.ma5_c00236{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m11_c00236{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m80_c00236{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m19_c00236{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m57_c00236{transform:matrix(0.669412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669412,0.000000,0.000000,0.250000,0,0);}
.mc1_c00236{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m1b_c00236{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m9d_c00236{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.mbd_c00236{transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);}
.m7f_c00236{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m13_c00236{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m9f_c00236{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m47_c00236{transform:matrix(0.736471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736471,0.000000,0.000000,0.250000,0,0);}
.mb3_c00236{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.me_c00236{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m5_c00236{transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);}
.mb7_c00236{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m2d_c00236{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m61_c00236{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m27_c00236{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mc8_c00236{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.m2a_c00236{transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);}
.ma8_c00236{transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);}
.m8f_c00236{transform:matrix(1.756637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.756637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.756637,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;}
.fs8_c00236{font-size:3.420000px;}
.fs7_c00236{font-size:6.780000px;}
.fs2_c00236{font-size:18.720000px;}
.fs0_c00236{font-size:20.400000px;}
.fs4_c00236{font-size:25.500000px;}
.fs1_c00236{font-size:28.920000px;}
.fs5_c00236{font-size:32.340000px;}
.fs3_c00236{font-size:35.700000px;}
.fs6_c00236{font-size:39.120000px;}
.y0_c00236{bottom:0.000000px;}
.y3_c00236{bottom:225.630000px;}
.yc1_c00236{bottom:251.745000px;}
.yc2_c00236{bottom:252.825000px;}
.ybf_c00236{bottom:253.905000px;}
.yc0_c00236{bottom:254.130000px;}
.ybe_c00236{bottom:254.970000px;}
.yc3_c00236{bottom:255.405000px;}
.yc4_c00236{bottom:256.470000px;}
.ybd_c00236{bottom:270.405000px;}
.ybb_c00236{bottom:271.470000px;}
.ybc_c00236{bottom:272.745000px;}
.yb9_c00236{bottom:273.405000px;}
.yb8_c00236{bottom:273.630000px;}
.yba_c00236{bottom:274.470000px;}
.yb7_c00236{bottom:274.905000px;}
.yb5_c00236{bottom:292.050000px;}
.yb6_c00236{bottom:292.245000px;}
.yb4_c00236{bottom:293.130000px;}
.yb3_c00236{bottom:294.405000px;}
.yb0_c00236{bottom:311.745000px;}
.yb2_c00236{bottom:312.825000px;}
.yae_c00236{bottom:313.905000px;}
.yaf_c00236{bottom:314.130000px;}
.yb1_c00236{bottom:314.970000px;}
.yaa_c00236{bottom:337.245000px;}
.yad_c00236{bottom:338.130000px;}
.yab_c00236{bottom:338.970000px;}
.yac_c00236{bottom:339.405000px;}
.ya5_c00236{bottom:369.405000px;}
.ya6_c00236{bottom:370.245000px;}
.ya9_c00236{bottom:370.470000px;}
.ya8_c00236{bottom:371.745000px;}
.ya4_c00236{bottom:372.405000px;}
.ya7_c00236{bottom:372.630000px;}
.ya2_c00236{bottom:388.905000px;}
.ya1_c00236{bottom:391.245000px;}
.ya3_c00236{bottom:392.970000px;}
.ya0_c00236{bottom:393.405000px;}
.y9e_c00236{bottom:410.745000px;}
.y9d_c00236{bottom:412.905000px;}
.y9f_c00236{bottom:413.970000px;}
.y9b_c00236{bottom:428.970000px;}
.y97_c00236{bottom:430.245000px;}
.y9c_c00236{bottom:430.470000px;}
.y99_c00236{bottom:430.920000px;}
.y9a_c00236{bottom:431.325000px;}
.y98_c00236{bottom:432.405000px;}
.y93_c00236{bottom:449.745000px;}
.y92_c00236{bottom:449.970000px;}
.y96_c00236{bottom:451.050000px;}
.y95_c00236{bottom:451.470000px;}
.y91_c00236{bottom:451.905000px;}
.y94_c00236{bottom:452.970000px;}
.y90_c00236{bottom:469.245000px;}
.y8f_c00236{bottom:470.325000px;}
.y8c_c00236{bottom:471.405000px;}
.y8d_c00236{bottom:471.630000px;}
.y8e_c00236{bottom:472.905000px;}
.y8a_c00236{bottom:487.905000px;}
.y89_c00236{bottom:489.825000px;}
.y88_c00236{bottom:490.245000px;}
.y8b_c00236{bottom:491.130000px;}
.y87_c00236{bottom:492.405000px;}
.y86_c00236{bottom:508.905000px;}
.y85_c00236{bottom:509.745000px;}
.y83_c00236{bottom:510.630000px;}
.y84_c00236{bottom:511.905000px;}
.y81_c00236{bottom:529.245000px;}
.y82_c00236{bottom:531.405000px;}
.y7d_c00236{bottom:548.745000px;}
.y7e_c00236{bottom:549.825000px;}
.y7f_c00236{bottom:550.470000px;}
.y7c_c00236{bottom:550.905000px;}
.y80_c00236{bottom:551.970000px;}
.y78_c00236{bottom:565.905000px;}
.y77_c00236{bottom:567.405000px;}
.y79_c00236{bottom:567.855000px;}
.y76_c00236{bottom:568.245000px;}
.y7a_c00236{bottom:569.325000px;}
.y7b_c00236{bottom:569.550000px;}
.y75_c00236{bottom:570.405000px;}
.y6e_c00236{bottom:586.905000px;}
.y73_c00236{bottom:588.825000px;}
.y6f_c00236{bottom:589.245000px;}
.y72_c00236{bottom:589.905000px;}
.y74_c00236{bottom:590.130000px;}
.y70_c00236{bottom:590.325000px;}
.y71_c00236{bottom:591.405000px;}
.y6d_c00236{bottom:606.405000px;}
.y6a_c00236{bottom:608.325000px;}
.y6c_c00236{bottom:608.745000px;}
.y67_c00236{bottom:609.405000px;}
.y68_c00236{bottom:609.630000px;}
.y6b_c00236{bottom:610.470000px;}
.y69_c00236{bottom:610.905000px;}
.y66_c00236{bottom:625.905000px;}
.y64_c00236{bottom:626.745000px;}
.y65_c00236{bottom:626.970000px;}
.y62_c00236{bottom:628.245000px;}
.y63_c00236{bottom:629.970000px;}
.y61_c00236{bottom:647.745000px;}
.y60_c00236{bottom:648.630000px;}
.y5f_c00236{bottom:649.905000px;}
.y5c_c00236{bottom:667.245000px;}
.y5d_c00236{bottom:668.325000px;}
.y5e_c00236{bottom:668.970000px;}
.y5b_c00236{bottom:669.405000px;}
.y5a_c00236{bottom:686.745000px;}
.y59_c00236{bottom:687.825000px;}
.y58_c00236{bottom:688.905000px;}
.y56_c00236{bottom:706.245000px;}
.y57_c00236{bottom:708.405000px;}
.y54_c00236{bottom:725.970000px;}
.y55_c00236{bottom:726.180000px;}
.y4f_c00236{bottom:726.405000px;}
.y51_c00236{bottom:727.245000px;}
.y53_c00236{bottom:728.130000px;}
.y52_c00236{bottom:728.325000px;}
.y50_c00236{bottom:729.405000px;}
.y4e_c00236{bottom:745.905000px;}
.y4d_c00236{bottom:746.745000px;}
.y4a_c00236{bottom:747.405000px;}
.y4c_c00236{bottom:748.470000px;}
.y4b_c00236{bottom:748.905000px;}
.y49_c00236{bottom:765.405000px;}
.y46_c00236{bottom:766.245000px;}
.y48_c00236{bottom:767.325000px;}
.y47_c00236{bottom:768.405000px;}
.y42_c00236{bottom:784.905000px;}
.y45_c00236{bottom:785.745000px;}
.y43_c00236{bottom:787.905000px;}
.y44_c00236{bottom:788.130000px;}
.y41_c00236{bottom:804.405000px;}
.y3f_c00236{bottom:805.245000px;}
.y3e_c00236{bottom:807.405000px;}
.y40_c00236{bottom:807.630000px;}
.y3d_c00236{bottom:808.470000px;}
.y38_c00236{bottom:824.325000px;}
.y3a_c00236{bottom:824.745000px;}
.y3c_c00236{bottom:824.970000px;}
.y3b_c00236{bottom:825.825000px;}
.y39_c00236{bottom:826.905000px;}
.y37_c00236{bottom:827.970000px;}
.y31_c00236{bottom:843.405000px;}
.y35_c00236{bottom:844.245000px;}
.y36_c00236{bottom:845.130000px;}
.y33_c00236{bottom:845.745000px;}
.y34_c00236{bottom:846.405000px;}
.y32_c00236{bottom:847.905000px;}
.y2f_c00236{bottom:862.905000px;}
.y30_c00236{bottom:864.405000px;}
.y2e_c00236{bottom:865.245000px;}
.y2d_c00236{bottom:867.405000px;}
.y28_c00236{bottom:884.745000px;}
.y2a_c00236{bottom:885.630000px;}
.y29_c00236{bottom:885.825000px;}
.y26_c00236{bottom:886.470000px;}
.y27_c00236{bottom:886.905000px;}
.y2c_c00236{bottom:887.130000px;}
.y2b_c00236{bottom:887.970000px;}
.y24_c00236{bottom:902.745000px;}
.y25_c00236{bottom:902.970000px;}
.y23_c00236{bottom:905.970000px;}
.y21_c00236{bottom:922.680000px;}
.y1f_c00236{bottom:923.550000px;}
.y20_c00236{bottom:923.745000px;}
.y22_c00236{bottom:925.905000px;}
.y1e_c00236{bottom:942.405000px;}
.y1d_c00236{bottom:943.680000px;}
.y1c_c00236{bottom:946.905000px;}
.y1b_c00236{bottom:964.050000px;}
.y17_c00236{bottom:965.130000px;}
.y18_c00236{bottom:965.970000px;}
.y19_c00236{bottom:966.405000px;}
.y1a_c00236{bottom:967.470000px;}
.y14_c00236{bottom:986.745000px;}
.y16_c00236{bottom:989.130000px;}
.y15_c00236{bottom:989.970000px;}
.y12_c00236{bottom:1021.245000px;}
.y13_c00236{bottom:1021.680000px;}
.y11_c00236{bottom:1023.405000px;}
.y10_c00236{bottom:1024.905000px;}
.yf_c00236{bottom:1040.970000px;}
.yd_c00236{bottom:1043.130000px;}
.ya_c00236{bottom:1043.325000px;}
.ye_c00236{bottom:1043.970000px;}
.yc_c00236{bottom:1044.405000px;}
.yb_c00236{bottom:1045.470000px;}
.y4_c00236{bottom:1061.745000px;}
.y6_c00236{bottom:1062.630000px;}
.y8_c00236{bottom:1062.825000px;}
.y9_c00236{bottom:1063.470000px;}
.y7_c00236{bottom:1063.905000px;}
.y5_c00236{bottom:1064.970000px;}
.y2_c00236{bottom:1099.905000px;}
.y1_c00236{bottom:1102.050000px;}
.h9_c00236{height:4.206533px;}
.h8_c00236{height:8.339268px;}
.h3_c00236{height:23.025234px;}
.h1_c00236{height:25.091602px;}
.h5_c00236{height:31.364502px;}
.h2_c00236{height:35.571035px;}
.h6_c00236{height:39.777568px;}
.h4_c00236{height:43.910303px;}
.h7_c00236{height:48.116836px;}
.h0_c00236{height:1335.000000px;}
.w0_c00236{width:880.500000px;}
.x0_c00236{left:0.000000px;}
.x4_c00236{left:149.580000px;}
.x11_c00236{left:151.500000px;}
.xad_c00236{left:152.580000px;}
.x34_c00236{left:158.580000px;}
.x8f_c00236{left:160.080000px;}
.xd3_c00236{left:168.000000px;}
.xe3_c00236{left:175.080000px;}
.x2b_c00236{left:183.000000px;}
.x7a_c00236{left:184.080000px;}
.xbb_c00236{left:185.580000px;}
.xd4_c00236{left:192.420000px;}
.xd9_c00236{left:196.500000px;}
.xbc_c00236{left:198.420000px;}
.xbd_c00236{left:202.500000px;}
.x5_c00236{left:205.500000px;}
.xbe_c00236{left:211.500000px;}
.x1f_c00236{left:214.500000px;}
.x50_c00236{left:216.420000px;}
.x6c_c00236{left:217.500000px;}
.xc1_c00236{left:219.000000px;}
.x12_c00236{left:220.080000px;}
.x23_c00236{left:222.645000px;}
.x90_c00236{left:223.920000px;}
.x39_c00236{left:225.420000px;}
.x7b_c00236{left:229.500000px;}
.x58_c00236{left:231.000000px;}
.x20_c00236{left:232.920000px;}
.xd5_c00236{left:234.000000px;}
.xc7_c00236{left:237.000000px;}
.x6_c00236{left:240.000000px;}
.xe4_c00236{left:241.500000px;}
.xdd_c00236{left:244.500000px;}
.xb3_c00236{left:247.500000px;}
.x13_c00236{left:249.000000px;}
.x91_c00236{left:250.920000px;}
.x75_c00236{left:252.000000px;}
.x6d_c00236{left:255.000000px;}
.x24_c00236{left:256.500000px;}
.x21_c00236{left:259.500000px;}
.x98_c00236{left:262.080000px;}
.x61_c00236{left:264.420000px;}
.x59_c00236{left:265.500000px;}
.x85_c00236{left:268.080000px;}
.x35_c00236{left:271.500000px;}
.x25_c00236{left:276.000000px;}
.x2c_c00236{left:280.500000px;}
.x5a_c00236{left:281.580000px;}
.x51_c00236{left:284.580000px;}
.x14_c00236{left:288.000000px;}
.xc8_c00236{left:289.080000px;}
.x92_c00236{left:291.000000px;}
.x99_c00236{left:292.080000px;}
.x62_c00236{left:293.580000px;}
.x3a_c00236{left:297.000000px;}
.x2d_c00236{left:300.000000px;}
.x43_c00236{left:301.500000px;}
.x26_c00236{left:303.000000px;}
.x9f_c00236{left:305.580000px;}
.x15_c00236{left:308.580000px;}
.x76_c00236{left:310.500000px;}
.x63_c00236{left:313.500000px;}
.x22_c00236{left:315.000000px;}
.xb4_c00236{left:316.500000px;}
.x7_c00236{left:319.080000px;}
.x36_c00236{left:320.580000px;}
.x6b_c00236{left:322.500000px;}
.x5b_c00236{left:323.580000px;}
.xcf_c00236{left:328.920000px;}
.x86_c00236{left:331.920000px;}
.xb5_c00236{left:333.420000px;}
.x64_c00236{left:334.500000px;}
.xc9_c00236{left:335.580000px;}
.x93_c00236{left:337.500000px;}
.xde_c00236{left:339.000000px;}
.x8_c00236{left:340.500000px;}
.x7c_c00236{left:345.420000px;}
.xa0_c00236{left:348.000000px;}
.xa6_c00236{left:349.920000px;}
.x5c_c00236{left:351.000000px;}
.x3b_c00236{left:354.000000px;}
.x6e_c00236{left:355.920000px;}
.x94_c00236{left:357.420000px;}
.xc2_c00236{left:361.500000px;}
.x9d_c00236{left:364.080000px;}
.x37_c00236{left:365.580000px;}
.x52_c00236{left:367.920000px;}
.x9_c00236{left:370.500000px;}
.x60_c00236{left:373.500000px;}
.xae_c00236{left:374.580000px;}
.x2e_c00236{left:376.080000px;}
.xca_c00236{left:378.000000px;}
.x16_c00236{left:379.080000px;}
.x77_c00236{left:382.500000px;}
.x44_c00236{left:384.000000px;}
.xa7_c00236{left:387.420000px;}
.x27_c00236{left:388.500000px;}
.xc3_c00236{left:389.580000px;}
.x3c_c00236{left:391.080000px;}
.x2f_c00236{left:394.500000px;}
.x38_c00236{left:395.580000px;}
.xa1_c00236{left:401.580000px;}
.xd0_c00236{left:403.080000px;}
.x45_c00236{left:405.000000px;}
.x1_c00236{left:406.500000px;}
.x87_c00236{left:408.000000px;}
.xda_c00236{left:411.000000px;}
.x65_c00236{left:412.500000px;}
.xcb_c00236{left:417.000000px;}
.x7d_c00236{left:418.080000px;}
.xa2_c00236{left:420.000000px;}
.x30_c00236{left:421.920000px;}
.xaa_c00236{left:423.000000px;}
.xa_c00236{left:424.500000px;}
.x95_c00236{left:426.000000px;}
.x3d_c00236{left:432.000000px;}
.x53_c00236{left:436.500000px;}
.xdf_c00236{left:441.000000px;}
.x6f_c00236{left:442.920000px;}
.xb_c00236{left:445.500000px;}
.x88_c00236{left:446.580000px;}
.x17_c00236{left:448.500000px;}
.x31_c00236{left:450.000000px;}
.xaf_c00236{left:451.080000px;}
.x78_c00236{left:453.000000px;}
.x7e_c00236{left:456.000000px;}
.x28_c00236{left:457.080000px;}
.xdb_c00236{left:458.580000px;}
.x66_c00236{left:460.080000px;}
.xa8_c00236{left:462.420000px;}
.x46_c00236{left:463.500000px;}
.x96_c00236{left:466.080000px;}
.x9a_c00236{left:468.420000px;}
.x54_c00236{left:469.500000px;}
.x3e_c00236{left:472.080000px;}
.x89_c00236{left:474.000000px;}
.xb6_c00236{left:477.000000px;}
.x79_c00236{left:478.500000px;}
.x4c_c00236{left:483.000000px;}
.x8a_c00236{left:484.500000px;}
.x55_c00236{left:486.420000px;}
.x67_c00236{left:487.500000px;}
.xa9_c00236{left:493.080000px;}
.x32_c00236{left:496.080000px;}
.x3f_c00236{left:498.000000px;}
.xa3_c00236{left:499.920000px;}
.xb0_c00236{left:501.000000px;}
.x29_c00236{left:502.500000px;}
.x9b_c00236{left:503.580000px;}
.x5d_c00236{left:508.080000px;}
.x18_c00236{left:510.000000px;}
.x97_c00236{left:511.500000px;}
.x7f_c00236{left:513.000000px;}
.xd1_c00236{left:517.500000px;}
.x47_c00236{left:520.500000px;}
.xe5_c00236{left:521.580000px;}
.xc_c00236{left:523.500000px;}
.x68_c00236{left:525.000000px;}
.x19_c00236{left:526.080000px;}
.xa4_c00236{left:527.580000px;}
.xd6_c00236{left:529.500000px;}
.x70_c00236{left:535.500000px;}
.xd2_c00236{left:540.000000px;}
.xb7_c00236{left:541.920000px;}
.x4d_c00236{left:544.500000px;}
.x80_c00236{left:547.500000px;}
.x48_c00236{left:551.580000px;}
.x71_c00236{left:553.500000px;}
.x40_c00236{left:555.000000px;}
.x8b_c00236{left:558.000000px;}
.xe0_c00236{left:559.500000px;}
.x5e_c00236{left:564.000000px;}
.x72_c00236{left:567.000000px;}
.xb8_c00236{left:568.500000px;}
.xab_c00236{left:571.500000px;}
.x1a_c00236{left:577.500000px;}
.xdc_c00236{left:578.580000px;}
.xb1_c00236{left:582.420000px;}
.x56_c00236{left:583.920000px;}
.x2a_c00236{left:585.420000px;}
.xe1_c00236{left:586.500000px;}
.xb9_c00236{left:588.000000px;}
.x81_c00236{left:589.500000px;}
.x69_c00236{left:592.500000px;}
.xd_c00236{left:595.920000px;}
.xcc_c00236{left:599.580000px;}
.xd7_c00236{left:604.920000px;}
.x82_c00236{left:607.080000px;}
.xc4_c00236{left:608.580000px;}
.x4e_c00236{left:610.500000px;}
.x8c_c00236{left:613.500000px;}
.x49_c00236{left:615.000000px;}
.x73_c00236{left:616.080000px;}
.x41_c00236{left:618.000000px;}
.xbf_c00236{left:621.000000px;}
.x5f_c00236{left:624.000000px;}
.x1b_c00236{left:625.500000px;}
.xc5_c00236{left:630.420000px;}
.xac_c00236{left:634.500000px;}
.x6a_c00236{left:637.920000px;}
.x4a_c00236{left:639.420000px;}
.x1c_c00236{left:640.500000px;}
.x83_c00236{left:643.080000px;}
.x9e_c00236{left:646.920000px;}
.xe_c00236{left:650.580000px;}
.xba_c00236{left:652.080000px;}
.xc6_c00236{left:659.580000px;}
.xcd_c00236{left:666.000000px;}
.x1d_c00236{left:669.000000px;}
.xa5_c00236{left:672.420000px;}
.xf_c00236{left:675.000000px;}
.x4b_c00236{left:678.000000px;}
.xd8_c00236{left:679.080000px;}
.x9c_c00236{left:684.420000px;}
.x42_c00236{left:686.580000px;}
.x8d_c00236{left:688.080000px;}
.x10_c00236{left:690.000000px;}
.x84_c00236{left:691.500000px;}
.xce_c00236{left:694.500000px;}
.x1e_c00236{left:695.580000px;}
.x74_c00236{left:700.080000px;}
.xe2_c00236{left:702.000000px;}
.x4f_c00236{left:703.080000px;}
.x2_c00236{left:704.580000px;}
.x8e_c00236{left:706.080000px;}
.xc0_c00236{left:707.580000px;}
.xb2_c00236{left:709.920000px;}
.x57_c00236{left:714.000000px;}
.x33_c00236{left:720.420000px;}
.x3_c00236{left:723.420000px;}
@media print{
.v0_c00236{vertical-align:0.000000pt;}
.ls0_c00236{letter-spacing:0.000000pt;}
.ws0_c00236{word-spacing:0.000000pt;}
.fs8_c00236{font-size:3.040000pt;}
.fs7_c00236{font-size:6.026667pt;}
.fs2_c00236{font-size:16.640000pt;}
.fs0_c00236{font-size:18.133333pt;}
.fs4_c00236{font-size:22.666667pt;}
.fs1_c00236{font-size:25.706667pt;}
.fs5_c00236{font-size:28.746667pt;}
.fs3_c00236{font-size:31.733333pt;}
.fs6_c00236{font-size:34.773333pt;}
.y0_c00236{bottom:0.000000pt;}
.y3_c00236{bottom:200.560000pt;}
.yc1_c00236{bottom:223.773333pt;}
.yc2_c00236{bottom:224.733333pt;}
.ybf_c00236{bottom:225.693333pt;}
.yc0_c00236{bottom:225.893333pt;}
.ybe_c00236{bottom:226.640000pt;}
.yc3_c00236{bottom:227.026667pt;}
.yc4_c00236{bottom:227.973333pt;}
.ybd_c00236{bottom:240.360000pt;}
.ybb_c00236{bottom:241.306667pt;}
.ybc_c00236{bottom:242.440000pt;}
.yb9_c00236{bottom:243.026667pt;}
.yb8_c00236{bottom:243.226667pt;}
.yba_c00236{bottom:243.973333pt;}
.yb7_c00236{bottom:244.360000pt;}
.yb5_c00236{bottom:259.600000pt;}
.yb6_c00236{bottom:259.773333pt;}
.yb4_c00236{bottom:260.560000pt;}
.yb3_c00236{bottom:261.693333pt;}
.yb0_c00236{bottom:277.106667pt;}
.yb2_c00236{bottom:278.066667pt;}
.yae_c00236{bottom:279.026667pt;}
.yaf_c00236{bottom:279.226667pt;}
.yb1_c00236{bottom:279.973333pt;}
.yaa_c00236{bottom:299.773333pt;}
.yad_c00236{bottom:300.560000pt;}
.yab_c00236{bottom:301.306667pt;}
.yac_c00236{bottom:301.693333pt;}
.ya5_c00236{bottom:328.360000pt;}
.ya6_c00236{bottom:329.106667pt;}
.ya9_c00236{bottom:329.306667pt;}
.ya8_c00236{bottom:330.440000pt;}
.ya4_c00236{bottom:331.026667pt;}
.ya7_c00236{bottom:331.226667pt;}
.ya2_c00236{bottom:345.693333pt;}
.ya1_c00236{bottom:347.773333pt;}
.ya3_c00236{bottom:349.306667pt;}
.ya0_c00236{bottom:349.693333pt;}
.y9e_c00236{bottom:365.106667pt;}
.y9d_c00236{bottom:367.026667pt;}
.y9f_c00236{bottom:367.973333pt;}
.y9b_c00236{bottom:381.306667pt;}
.y97_c00236{bottom:382.440000pt;}
.y9c_c00236{bottom:382.640000pt;}
.y99_c00236{bottom:383.040000pt;}
.y9a_c00236{bottom:383.400000pt;}
.y98_c00236{bottom:384.360000pt;}
.y93_c00236{bottom:399.773333pt;}
.y92_c00236{bottom:399.973333pt;}
.y96_c00236{bottom:400.933333pt;}
.y95_c00236{bottom:401.306667pt;}
.y91_c00236{bottom:401.693333pt;}
.y94_c00236{bottom:402.640000pt;}
.y90_c00236{bottom:417.106667pt;}
.y8f_c00236{bottom:418.066667pt;}
.y8c_c00236{bottom:419.026667pt;}
.y8d_c00236{bottom:419.226667pt;}
.y8e_c00236{bottom:420.360000pt;}
.y8a_c00236{bottom:433.693333pt;}
.y89_c00236{bottom:435.400000pt;}
.y88_c00236{bottom:435.773333pt;}
.y8b_c00236{bottom:436.560000pt;}
.y87_c00236{bottom:437.693333pt;}
.y86_c00236{bottom:452.360000pt;}
.y85_c00236{bottom:453.106667pt;}
.y83_c00236{bottom:453.893333pt;}
.y84_c00236{bottom:455.026667pt;}
.y81_c00236{bottom:470.440000pt;}
.y82_c00236{bottom:472.360000pt;}
.y7d_c00236{bottom:487.773333pt;}
.y7e_c00236{bottom:488.733333pt;}
.y7f_c00236{bottom:489.306667pt;}
.y7c_c00236{bottom:489.693333pt;}
.y80_c00236{bottom:490.640000pt;}
.y78_c00236{bottom:503.026667pt;}
.y77_c00236{bottom:504.360000pt;}
.y79_c00236{bottom:504.760000pt;}
.y76_c00236{bottom:505.106667pt;}
.y7a_c00236{bottom:506.066667pt;}
.y7b_c00236{bottom:506.266667pt;}
.y75_c00236{bottom:507.026667pt;}
.y6e_c00236{bottom:521.693333pt;}
.y73_c00236{bottom:523.400000pt;}
.y6f_c00236{bottom:523.773333pt;}
.y72_c00236{bottom:524.360000pt;}
.y74_c00236{bottom:524.560000pt;}
.y70_c00236{bottom:524.733333pt;}
.y71_c00236{bottom:525.693333pt;}
.y6d_c00236{bottom:539.026667pt;}
.y6a_c00236{bottom:540.733333pt;}
.y6c_c00236{bottom:541.106667pt;}
.y67_c00236{bottom:541.693333pt;}
.y68_c00236{bottom:541.893333pt;}
.y6b_c00236{bottom:542.640000pt;}
.y69_c00236{bottom:543.026667pt;}
.y66_c00236{bottom:556.360000pt;}
.y64_c00236{bottom:557.106667pt;}
.y65_c00236{bottom:557.306667pt;}
.y62_c00236{bottom:558.440000pt;}
.y63_c00236{bottom:559.973333pt;}
.y61_c00236{bottom:575.773333pt;}
.y60_c00236{bottom:576.560000pt;}
.y5f_c00236{bottom:577.693333pt;}
.y5c_c00236{bottom:593.106667pt;}
.y5d_c00236{bottom:594.066667pt;}
.y5e_c00236{bottom:594.640000pt;}
.y5b_c00236{bottom:595.026667pt;}
.y5a_c00236{bottom:610.440000pt;}
.y59_c00236{bottom:611.400000pt;}
.y58_c00236{bottom:612.360000pt;}
.y56_c00236{bottom:627.773333pt;}
.y57_c00236{bottom:629.693333pt;}
.y54_c00236{bottom:645.306667pt;}
.y55_c00236{bottom:645.493333pt;}
.y4f_c00236{bottom:645.693333pt;}
.y51_c00236{bottom:646.440000pt;}
.y53_c00236{bottom:647.226667pt;}
.y52_c00236{bottom:647.400000pt;}
.y50_c00236{bottom:648.360000pt;}
.y4e_c00236{bottom:663.026667pt;}
.y4d_c00236{bottom:663.773333pt;}
.y4a_c00236{bottom:664.360000pt;}
.y4c_c00236{bottom:665.306667pt;}
.y4b_c00236{bottom:665.693333pt;}
.y49_c00236{bottom:680.360000pt;}
.y46_c00236{bottom:681.106667pt;}
.y48_c00236{bottom:682.066667pt;}
.y47_c00236{bottom:683.026667pt;}
.y42_c00236{bottom:697.693333pt;}
.y45_c00236{bottom:698.440000pt;}
.y43_c00236{bottom:700.360000pt;}
.y44_c00236{bottom:700.560000pt;}
.y41_c00236{bottom:715.026667pt;}
.y3f_c00236{bottom:715.773333pt;}
.y3e_c00236{bottom:717.693333pt;}
.y40_c00236{bottom:717.893333pt;}
.y3d_c00236{bottom:718.640000pt;}
.y38_c00236{bottom:732.733333pt;}
.y3a_c00236{bottom:733.106667pt;}
.y3c_c00236{bottom:733.306667pt;}
.y3b_c00236{bottom:734.066667pt;}
.y39_c00236{bottom:735.026667pt;}
.y37_c00236{bottom:735.973333pt;}
.y31_c00236{bottom:749.693333pt;}
.y35_c00236{bottom:750.440000pt;}
.y36_c00236{bottom:751.226667pt;}
.y33_c00236{bottom:751.773333pt;}
.y34_c00236{bottom:752.360000pt;}
.y32_c00236{bottom:753.693333pt;}
.y2f_c00236{bottom:767.026667pt;}
.y30_c00236{bottom:768.360000pt;}
.y2e_c00236{bottom:769.106667pt;}
.y2d_c00236{bottom:771.026667pt;}
.y28_c00236{bottom:786.440000pt;}
.y2a_c00236{bottom:787.226667pt;}
.y29_c00236{bottom:787.400000pt;}
.y26_c00236{bottom:787.973333pt;}
.y27_c00236{bottom:788.360000pt;}
.y2c_c00236{bottom:788.560000pt;}
.y2b_c00236{bottom:789.306667pt;}
.y24_c00236{bottom:802.440000pt;}
.y25_c00236{bottom:802.640000pt;}
.y23_c00236{bottom:805.306667pt;}
.y21_c00236{bottom:820.160000pt;}
.y1f_c00236{bottom:820.933333pt;}
.y20_c00236{bottom:821.106667pt;}
.y22_c00236{bottom:823.026667pt;}
.y1e_c00236{bottom:837.693333pt;}
.y1d_c00236{bottom:838.826667pt;}
.y1c_c00236{bottom:841.693333pt;}
.y1b_c00236{bottom:856.933333pt;}
.y17_c00236{bottom:857.893333pt;}
.y18_c00236{bottom:858.640000pt;}
.y19_c00236{bottom:859.026667pt;}
.y1a_c00236{bottom:859.973333pt;}
.y14_c00236{bottom:877.106667pt;}
.y16_c00236{bottom:879.226667pt;}
.y15_c00236{bottom:879.973333pt;}
.y12_c00236{bottom:907.773333pt;}
.y13_c00236{bottom:908.160000pt;}
.y11_c00236{bottom:909.693333pt;}
.y10_c00236{bottom:911.026667pt;}
.yf_c00236{bottom:925.306667pt;}
.yd_c00236{bottom:927.226667pt;}
.ya_c00236{bottom:927.400000pt;}
.ye_c00236{bottom:927.973333pt;}
.yc_c00236{bottom:928.360000pt;}
.yb_c00236{bottom:929.306667pt;}
.y4_c00236{bottom:943.773333pt;}
.y6_c00236{bottom:944.560000pt;}
.y8_c00236{bottom:944.733333pt;}
.y9_c00236{bottom:945.306667pt;}
.y7_c00236{bottom:945.693333pt;}
.y5_c00236{bottom:946.640000pt;}
.y2_c00236{bottom:977.693333pt;}
.y1_c00236{bottom:979.600000pt;}
.h9_c00236{height:3.739141pt;}
.h8_c00236{height:7.412682pt;}
.h3_c00236{height:20.466875pt;}
.h1_c00236{height:22.303646pt;}
.h5_c00236{height:27.879557pt;}
.h2_c00236{height:31.618698pt;}
.h6_c00236{height:35.357839pt;}
.h4_c00236{height:39.031380pt;}
.h7_c00236{height:42.770521pt;}
.h0_c00236{height:1186.666667pt;}
.w0_c00236{width:782.666667pt;}
.x0_c00236{left:0.000000pt;}
.x4_c00236{left:132.960000pt;}
.x11_c00236{left:134.666667pt;}
.xad_c00236{left:135.626667pt;}
.x34_c00236{left:140.960000pt;}
.x8f_c00236{left:142.293333pt;}
.xd3_c00236{left:149.333333pt;}
.xe3_c00236{left:155.626667pt;}
.x2b_c00236{left:162.666667pt;}
.x7a_c00236{left:163.626667pt;}
.xbb_c00236{left:164.960000pt;}
.xd4_c00236{left:171.040000pt;}
.xd9_c00236{left:174.666667pt;}
.xbc_c00236{left:176.373333pt;}
.xbd_c00236{left:180.000000pt;}
.x5_c00236{left:182.666667pt;}
.xbe_c00236{left:188.000000pt;}
.x1f_c00236{left:190.666667pt;}
.x50_c00236{left:192.373333pt;}
.x6c_c00236{left:193.333333pt;}
.xc1_c00236{left:194.666667pt;}
.x12_c00236{left:195.626667pt;}
.x23_c00236{left:197.906667pt;}
.x90_c00236{left:199.040000pt;}
.x39_c00236{left:200.373333pt;}
.x7b_c00236{left:204.000000pt;}
.x58_c00236{left:205.333333pt;}
.x20_c00236{left:207.040000pt;}
.xd5_c00236{left:208.000000pt;}
.xc7_c00236{left:210.666667pt;}
.x6_c00236{left:213.333333pt;}
.xe4_c00236{left:214.666667pt;}
.xdd_c00236{left:217.333333pt;}
.xb3_c00236{left:220.000000pt;}
.x13_c00236{left:221.333333pt;}
.x91_c00236{left:223.040000pt;}
.x75_c00236{left:224.000000pt;}
.x6d_c00236{left:226.666667pt;}
.x24_c00236{left:228.000000pt;}
.x21_c00236{left:230.666667pt;}
.x98_c00236{left:232.960000pt;}
.x61_c00236{left:235.040000pt;}
.x59_c00236{left:236.000000pt;}
.x85_c00236{left:238.293333pt;}
.x35_c00236{left:241.333333pt;}
.x25_c00236{left:245.333333pt;}
.x2c_c00236{left:249.333333pt;}
.x5a_c00236{left:250.293333pt;}
.x51_c00236{left:252.960000pt;}
.x14_c00236{left:256.000000pt;}
.xc8_c00236{left:256.960000pt;}
.x92_c00236{left:258.666667pt;}
.x99_c00236{left:259.626667pt;}
.x62_c00236{left:260.960000pt;}
.x3a_c00236{left:264.000000pt;}
.x2d_c00236{left:266.666667pt;}
.x43_c00236{left:268.000000pt;}
.x26_c00236{left:269.333333pt;}
.x9f_c00236{left:271.626667pt;}
.x15_c00236{left:274.293333pt;}
.x76_c00236{left:276.000000pt;}
.x63_c00236{left:278.666667pt;}
.x22_c00236{left:280.000000pt;}
.xb4_c00236{left:281.333333pt;}
.x7_c00236{left:283.626667pt;}
.x36_c00236{left:284.960000pt;}
.x6b_c00236{left:286.666667pt;}
.x5b_c00236{left:287.626667pt;}
.xcf_c00236{left:292.373333pt;}
.x86_c00236{left:295.040000pt;}
.xb5_c00236{left:296.373333pt;}
.x64_c00236{left:297.333333pt;}
.xc9_c00236{left:298.293333pt;}
.x93_c00236{left:300.000000pt;}
.xde_c00236{left:301.333333pt;}
.x8_c00236{left:302.666667pt;}
.x7c_c00236{left:307.040000pt;}
.xa0_c00236{left:309.333333pt;}
.xa6_c00236{left:311.040000pt;}
.x5c_c00236{left:312.000000pt;}
.x3b_c00236{left:314.666667pt;}
.x6e_c00236{left:316.373333pt;}
.x94_c00236{left:317.706667pt;}
.xc2_c00236{left:321.333333pt;}
.x9d_c00236{left:323.626667pt;}
.x37_c00236{left:324.960000pt;}
.x52_c00236{left:327.040000pt;}
.x9_c00236{left:329.333333pt;}
.x60_c00236{left:332.000000pt;}
.xae_c00236{left:332.960000pt;}
.x2e_c00236{left:334.293333pt;}
.xca_c00236{left:336.000000pt;}
.x16_c00236{left:336.960000pt;}
.x77_c00236{left:340.000000pt;}
.x44_c00236{left:341.333333pt;}
.xa7_c00236{left:344.373333pt;}
.x27_c00236{left:345.333333pt;}
.xc3_c00236{left:346.293333pt;}
.x3c_c00236{left:347.626667pt;}
.x2f_c00236{left:350.666667pt;}
.x38_c00236{left:351.626667pt;}
.xa1_c00236{left:356.960000pt;}
.xd0_c00236{left:358.293333pt;}
.x45_c00236{left:360.000000pt;}
.x1_c00236{left:361.333333pt;}
.x87_c00236{left:362.666667pt;}
.xda_c00236{left:365.333333pt;}
.x65_c00236{left:366.666667pt;}
.xcb_c00236{left:370.666667pt;}
.x7d_c00236{left:371.626667pt;}
.xa2_c00236{left:373.333333pt;}
.x30_c00236{left:375.040000pt;}
.xaa_c00236{left:376.000000pt;}
.xa_c00236{left:377.333333pt;}
.x95_c00236{left:378.666667pt;}
.x3d_c00236{left:384.000000pt;}
.x53_c00236{left:388.000000pt;}
.xdf_c00236{left:392.000000pt;}
.x6f_c00236{left:393.706667pt;}
.xb_c00236{left:396.000000pt;}
.x88_c00236{left:396.960000pt;}
.x17_c00236{left:398.666667pt;}
.x31_c00236{left:400.000000pt;}
.xaf_c00236{left:400.960000pt;}
.x78_c00236{left:402.666667pt;}
.x7e_c00236{left:405.333333pt;}
.x28_c00236{left:406.293333pt;}
.xdb_c00236{left:407.626667pt;}
.x66_c00236{left:408.960000pt;}
.xa8_c00236{left:411.040000pt;}
.x46_c00236{left:412.000000pt;}
.x96_c00236{left:414.293333pt;}
.x9a_c00236{left:416.373333pt;}
.x54_c00236{left:417.333333pt;}
.x3e_c00236{left:419.626667pt;}
.x89_c00236{left:421.333333pt;}
.xb6_c00236{left:424.000000pt;}
.x79_c00236{left:425.333333pt;}
.x4c_c00236{left:429.333333pt;}
.x8a_c00236{left:430.666667pt;}
.x55_c00236{left:432.373333pt;}
.x67_c00236{left:433.333333pt;}
.xa9_c00236{left:438.293333pt;}
.x32_c00236{left:440.960000pt;}
.x3f_c00236{left:442.666667pt;}
.xa3_c00236{left:444.373333pt;}
.xb0_c00236{left:445.333333pt;}
.x29_c00236{left:446.666667pt;}
.x9b_c00236{left:447.626667pt;}
.x5d_c00236{left:451.626667pt;}
.x18_c00236{left:453.333333pt;}
.x97_c00236{left:454.666667pt;}
.x7f_c00236{left:456.000000pt;}
.xd1_c00236{left:460.000000pt;}
.x47_c00236{left:462.666667pt;}
.xe5_c00236{left:463.626667pt;}
.xc_c00236{left:465.333333pt;}
.x68_c00236{left:466.666667pt;}
.x19_c00236{left:467.626667pt;}
.xa4_c00236{left:468.960000pt;}
.xd6_c00236{left:470.666667pt;}
.x70_c00236{left:476.000000pt;}
.xd2_c00236{left:480.000000pt;}
.xb7_c00236{left:481.706667pt;}
.x4d_c00236{left:484.000000pt;}
.x80_c00236{left:486.666667pt;}
.x48_c00236{left:490.293333pt;}
.x71_c00236{left:492.000000pt;}
.x40_c00236{left:493.333333pt;}
.x8b_c00236{left:496.000000pt;}
.xe0_c00236{left:497.333333pt;}
.x5e_c00236{left:501.333333pt;}
.x72_c00236{left:504.000000pt;}
.xb8_c00236{left:505.333333pt;}
.xab_c00236{left:508.000000pt;}
.x1a_c00236{left:513.333333pt;}
.xdc_c00236{left:514.293333pt;}
.xb1_c00236{left:517.706667pt;}
.x56_c00236{left:519.040000pt;}
.x2a_c00236{left:520.373333pt;}
.xe1_c00236{left:521.333333pt;}
.xb9_c00236{left:522.666667pt;}
.x81_c00236{left:524.000000pt;}
.x69_c00236{left:526.666667pt;}
.xd_c00236{left:529.706667pt;}
.xcc_c00236{left:532.960000pt;}
.xd7_c00236{left:537.706667pt;}
.x82_c00236{left:539.626667pt;}
.xc4_c00236{left:540.960000pt;}
.x4e_c00236{left:542.666667pt;}
.x8c_c00236{left:545.333333pt;}
.x49_c00236{left:546.666667pt;}
.x73_c00236{left:547.626667pt;}
.x41_c00236{left:549.333333pt;}
.xbf_c00236{left:552.000000pt;}
.x5f_c00236{left:554.666667pt;}
.x1b_c00236{left:556.000000pt;}
.xc5_c00236{left:560.373333pt;}
.xac_c00236{left:564.000000pt;}
.x6a_c00236{left:567.040000pt;}
.x4a_c00236{left:568.373333pt;}
.x1c_c00236{left:569.333333pt;}
.x83_c00236{left:571.626667pt;}
.x9e_c00236{left:575.040000pt;}
.xe_c00236{left:578.293333pt;}
.xba_c00236{left:579.626667pt;}
.xc6_c00236{left:586.293333pt;}
.xcd_c00236{left:592.000000pt;}
.x1d_c00236{left:594.666667pt;}
.xa5_c00236{left:597.706667pt;}
.xf_c00236{left:600.000000pt;}
.x4b_c00236{left:602.666667pt;}
.xd8_c00236{left:603.626667pt;}
.x9c_c00236{left:608.373333pt;}
.x42_c00236{left:610.293333pt;}
.x8d_c00236{left:611.626667pt;}
.x10_c00236{left:613.333333pt;}
.x84_c00236{left:614.666667pt;}
.xce_c00236{left:617.333333pt;}
.x1e_c00236{left:618.293333pt;}
.x74_c00236{left:622.293333pt;}
.xe2_c00236{left:624.000000pt;}
.x4f_c00236{left:624.960000pt;}
.x2_c00236{left:626.293333pt;}
.x8e_c00236{left:627.626667pt;}
.xc0_c00236{left:628.960000pt;}
.xb2_c00236{left:631.040000pt;}
.x57_c00236{left:634.666667pt;}
.x33_c00236{left:640.373333pt;}
.x3_c00236{left:643.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_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_a0f6d8e4ff936eab0501c7a7.woff2')format("woff");}.ff1_c00237{font-family:ff1_c00237;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8c_c00237{transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);}
.m8b_c00237{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.m18_c00237{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m86_c00237{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.m2b_c00237{transform:matrix(0.357983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357983,0.000000,0.000000,0.250000,0,0);}
.m71_c00237{transform:matrix(0.363173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363173,0.000000,0.000000,0.250000,0,0);}
.ma8_c00237{transform:matrix(0.373950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373950,0.000000,0.000000,0.250000,0,0);}
.m95_c00237{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m72_c00237{transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);}
.m45_c00237{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m67_c00237{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m93_c00237{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m5b_c00237{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m4f_c00237{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m6_c00237{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m4a_c00237{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.ma2_c00237{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.mf_c00237{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m7b_c00237{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m6f_c00237{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m58_c00237{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m31_c00237{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m24_c00237{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m62_c00237{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m82_c00237{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m1b_c00237{transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);}
.m1f_c00237{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.ma1_c00237{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m59_c00237{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m57_c00237{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m3c_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);}
.m46_c00237{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m7d_c00237{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m29_c00237{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m51_c00237{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m8e_c00237{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m44_c00237{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m41_c00237{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m96_c00237{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m4e_c00237{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m37_c00237{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.ma4_c00237{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m42_c00237{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m8_c00237{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m27_c00237{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m33_c00237{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m91_c00237{transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);}
.m5a_c00237{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m38_c00237{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m9b_c00237{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m77_c00237{transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);}
.m2f_c00237{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m5e_c00237{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m50_c00237{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m53_c00237{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.m23_c00237{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.m48_c00237{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m6a_c00237{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m60_c00237{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m3b_c00237{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m83_c00237{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m17_c00237{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.m30_c00237{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m6d_c00237{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m7f_c00237{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m70_c00237{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.ma0_c00237{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m92_c00237{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m99_c00237{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m6c_c00237{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m8a_c00237{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.ma5_c00237{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m76_c00237{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.m14_c00237{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m40_c00237{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m79_c00237{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m1a_c00237{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m81_c00237{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.ma3_c00237{transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);}
.m0_c00237{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m4_c00237{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m39_c00237{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m69_c00237{transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);}
.m7_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);}
.m52_c00237{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m47_c00237{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m12_c00237{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m2c_c00237{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.ma7_c00237{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.md_c00237{transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);}
.m2a_c00237{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m22_c00237{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m28_c00237{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m8d_c00237{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m2e_c00237{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.ma_c00237{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m66_c00237{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m7a_c00237{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m7c_c00237{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m1e_c00237{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m10_c00237{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.ma6_c00237{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m94_c00237{transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);}
.m4b_c00237{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m2d_c00237{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m3_c00237{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m13_c00237{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m15_c00237{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m9e_c00237{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m34_c00237{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m54_c00237{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m11_c00237{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m2_c00237{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m3e_c00237{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m55_c00237{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m9a_c00237{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.me_c00237{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m21_c00237{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m20_c00237{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mb_c00237{transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);}
.m7e_c00237{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m9d_c00237{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m75_c00237{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m26_c00237{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m3a_c00237{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m35_c00237{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m78_c00237{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m9f_c00237{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m5_c00237{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m97_c00237{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m87_c00237{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m5d_c00237{transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);}
.m5f_c00237{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.m16_c00237{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.m65_c00237{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m25_c00237{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_c00237{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m1d_c00237{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m89_c00237{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m49_c00237{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m9_c00237{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m1c_c00237{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m19_c00237{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m1_c00237{transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);}
.m85_c00237{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_c00237{transform:matrix(0.628824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628824,0.000000,0.000000,0.250000,0,0);}
.m6b_c00237{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m73_c00237{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m74_c00237{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m9c_c00237{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m90_c00237{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m64_c00237{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m36_c00237{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m32_c00237{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m8f_c00237{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m98_c00237{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m88_c00237{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m5c_c00237{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m3f_c00237{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m68_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);}
.m4c_c00237{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m63_c00237{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m80_c00237{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.mc_c00237{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m3d_c00237{transform:matrix(0.808088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.808088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.808088,0.000000,0.000000,0.250000,0,0);}
.m56_c00237{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m4d_c00237{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m6e_c00237{transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);}
.m84_c00237{transform:matrix(6.464912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.464912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.464912,0.000000,0.000000,0.250000,0,0);}
.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;}
}
.ws0_c00237{word-spacing:-4.168560px;}
.ws1_c00237{word-spacing:0.000000px;}
.fc0_c00237{color:transparent;}
.fs6_c00237{font-size:3.420000px;}
.fs4_c00237{font-size:18.720000px;}
.fs1_c00237{font-size:20.400000px;}
.fs2_c00237{font-size:25.500000px;}
.fs0_c00237{font-size:28.920000px;}
.fs5_c00237{font-size:32.340000px;}
.fs3_c00237{font-size:35.700000px;}
.fs7_c00237{font-size:39.120000px;}
.y0_c00237{bottom:0.000000px;}
.yd2_c00237{bottom:247.905000px;}
.yd3_c00237{bottom:250.470000px;}
.yd1_c00237{bottom:251.745000px;}
.yd0_c00237{bottom:253.905000px;}
.yce_c00237{bottom:268.905000px;}
.ycf_c00237{bottom:270.405000px;}
.ycd_c00237{bottom:271.245000px;}
.ycb_c00237{bottom:271.905000px;}
.yc9_c00237{bottom:272.130000px;}
.yca_c00237{bottom:272.970000px;}
.ycc_c00237{bottom:273.405000px;}
.yc5_c00237{bottom:290.745000px;}
.yc8_c00237{bottom:291.630000px;}
.yc6_c00237{bottom:291.825000px;}
.yc3_c00237{bottom:292.470000px;}
.yc4_c00237{bottom:292.905000px;}
.yc7_c00237{bottom:293.970000px;}
.yc2_c00237{bottom:308.970000px;}
.yc1_c00237{bottom:310.245000px;}
.yc0_c00237{bottom:312.405000px;}
.ybf_c00237{bottom:328.470000px;}
.ybe_c00237{bottom:328.905000px;}
.ybd_c00237{bottom:329.745000px;}
.ybc_c00237{bottom:331.905000px;}
.yb5_c00237{bottom:348.405000px;}
.yba_c00237{bottom:348.825000px;}
.yb7_c00237{bottom:349.245000px;}
.yb8_c00237{bottom:349.470000px;}
.ybb_c00237{bottom:350.970000px;}
.yb6_c00237{bottom:351.405000px;}
.yb9_c00237{bottom:351.630000px;}
.yb4_c00237{bottom:367.905000px;}
.yb2_c00237{bottom:368.745000px;}
.yb3_c00237{bottom:371.970000px;}
.yb0_c00237{bottom:388.245000px;}
.yad_c00237{bottom:389.325000px;}
.yaf_c00237{bottom:389.745000px;}
.yb1_c00237{bottom:390.630000px;}
.yae_c00237{bottom:391.470000px;}
.yaa_c00237{bottom:406.905000px;}
.yac_c00237{bottom:407.745000px;}
.yab_c00237{bottom:409.245000px;}
.ya6_c00237{bottom:409.905000px;}
.ya8_c00237{bottom:410.130000px;}
.ya9_c00237{bottom:410.970000px;}
.ya7_c00237{bottom:411.405000px;}
.ya3_c00237{bottom:426.405000px;}
.ya4_c00237{bottom:427.245000px;}
.ya5_c00237{bottom:427.470000px;}
.ya1_c00237{bottom:427.905000px;}
.y9e_c00237{bottom:428.745000px;}
.ya2_c00237{bottom:429.630000px;}
.ya0_c00237{bottom:430.470000px;}
.y9f_c00237{bottom:430.905000px;}
.y9a_c00237{bottom:445.905000px;}
.y9b_c00237{bottom:447.180000px;}
.y9d_c00237{bottom:447.405000px;}
.y9c_c00237{bottom:448.245000px;}
.y97_c00237{bottom:450.405000px;}
.y98_c00237{bottom:450.630000px;}
.y99_c00237{bottom:451.470000px;}
.y96_c00237{bottom:466.905000px;}
.y94_c00237{bottom:470.130000px;}
.y95_c00237{bottom:470.970000px;}
.y93_c00237{bottom:471.405000px;}
.y92_c00237{bottom:487.245000px;}
.y8f_c00237{bottom:487.470000px;}
.y8e_c00237{bottom:488.745000px;}
.y91_c00237{bottom:489.405000px;}
.y90_c00237{bottom:489.630000px;}
.y8c_c00237{bottom:490.470000px;}
.y8d_c00237{bottom:490.905000px;}
.y88_c00237{bottom:507.405000px;}
.y89_c00237{bottom:508.245000px;}
.y8b_c00237{bottom:508.905000px;}
.y8a_c00237{bottom:509.130000px;}
.y87_c00237{bottom:509.970000px;}
.y86_c00237{bottom:526.245000px;}
.y83_c00237{bottom:526.470000px;}
.y80_c00237{bottom:526.905000px;}
.y85_c00237{bottom:527.550000px;}
.y82_c00237{bottom:527.745000px;}
.y84_c00237{bottom:528.405000px;}
.y81_c00237{bottom:529.905000px;}
.y7d_c00237{bottom:546.405000px;}
.y7f_c00237{bottom:546.420000px;}
.y7e_c00237{bottom:548.130000px;}
.y7c_c00237{bottom:549.405000px;}
.y79_c00237{bottom:565.905000px;}
.y7a_c00237{bottom:566.745000px;}
.y7b_c00237{bottom:568.905000px;}
.y75_c00237{bottom:583.905000px;}
.y77_c00237{bottom:585.405000px;}
.y72_c00237{bottom:586.245000px;}
.y73_c00237{bottom:587.130000px;}
.y78_c00237{bottom:587.970000px;}
.y76_c00237{bottom:588.405000px;}
.y74_c00237{bottom:589.470000px;}
.y6e_c00237{bottom:603.825000px;}
.y6f_c00237{bottom:604.470000px;}
.y70_c00237{bottom:605.745000px;}
.y6c_c00237{bottom:606.630000px;}
.y71_c00237{bottom:607.470000px;}
.y6d_c00237{bottom:607.905000px;}
.y6b_c00237{bottom:622.905000px;}
.y68_c00237{bottom:624.405000px;}
.y6a_c00237{bottom:625.245000px;}
.y69_c00237{bottom:627.405000px;}
.y65_c00237{bottom:643.905000px;}
.y67_c00237{bottom:644.325000px;}
.y64_c00237{bottom:646.245000px;}
.y66_c00237{bottom:647.130000px;}
.y63_c00237{bottom:648.405000px;}
.y61_c00237{bottom:664.470000px;}
.y62_c00237{bottom:666.405000px;}
.y60_c00237{bottom:666.825000px;}
.y5f_c00237{bottom:667.905000px;}
.y5d_c00237{bottom:682.905000px;}
.y58_c00237{bottom:683.745000px;}
.y5a_c00237{bottom:683.970000px;}
.y5c_c00237{bottom:684.405000px;}
.y5b_c00237{bottom:685.245000px;}
.y5e_c00237{bottom:686.130000px;}
.y59_c00237{bottom:686.970000px;}
.y52_c00237{bottom:702.405000px;}
.y55_c00237{bottom:702.825000px;}
.y57_c00237{bottom:703.680000px;}
.y54_c00237{bottom:704.745000px;}
.y56_c00237{bottom:705.630000px;}
.y53_c00237{bottom:706.905000px;}
.y51_c00237{bottom:721.905000px;}
.y4c_c00237{bottom:722.970000px;}
.y4f_c00237{bottom:723.405000px;}
.y4a_c00237{bottom:724.245000px;}
.y50_c00237{bottom:724.920000px;}
.y4d_c00237{bottom:725.130000px;}
.y4e_c00237{bottom:725.970000px;}
.y49_c00237{bottom:726.405000px;}
.y4b_c00237{bottom:727.470000px;}
.y48_c00237{bottom:742.905000px;}
.y47_c00237{bottom:744.825000px;}
.y46_c00237{bottom:745.905000px;}
.y45_c00237{bottom:762.405000px;}
.y41_c00237{bottom:763.245000px;}
.y44_c00237{bottom:764.550000px;}
.y42_c00237{bottom:765.405000px;}
.y43_c00237{bottom:766.470000px;}
.y40_c00237{bottom:781.905000px;}
.y3e_c00237{bottom:782.745000px;}
.y3f_c00237{bottom:782.970000px;}
.y3c_c00237{bottom:785.130000px;}
.y3d_c00237{bottom:785.970000px;}
.y3a_c00237{bottom:801.825000px;}
.y39_c00237{bottom:802.245000px;}
.y3b_c00237{bottom:803.550000px;}
.y38_c00237{bottom:804.405000px;}
.y35_c00237{bottom:820.905000px;}
.y37_c00237{bottom:823.245000px;}
.y36_c00237{bottom:824.130000px;}
.y34_c00237{bottom:825.405000px;}
.y32_c00237{bottom:840.405000px;}
.y33_c00237{bottom:841.470000px;}
.y2f_c00237{bottom:842.745000px;}
.y31_c00237{bottom:843.825000px;}
.y30_c00237{bottom:844.905000px;}
.y2c_c00237{bottom:861.405000px;}
.y2b_c00237{bottom:862.245000px;}
.y2a_c00237{bottom:862.470000px;}
.y2d_c00237{bottom:863.970000px;}
.y29_c00237{bottom:864.405000px;}
.y2e_c00237{bottom:864.630000px;}
.y27_c00237{bottom:880.470000px;}
.y26_c00237{bottom:880.905000px;}
.y25_c00237{bottom:881.745000px;}
.y24_c00237{bottom:883.470000px;}
.y28_c00237{bottom:883.905000px;}
.y1f_c00237{bottom:900.405000px;}
.y23_c00237{bottom:901.245000px;}
.y1d_c00237{bottom:902.550000px;}
.y22_c00237{bottom:902.745000px;}
.y1e_c00237{bottom:903.405000px;}
.y21_c00237{bottom:903.630000px;}
.y20_c00237{bottom:904.905000px;}
.y1a_c00237{bottom:941.325000px;}
.y1c_c00237{bottom:941.745000px;}
.y1b_c00237{bottom:943.470000px;}
.y15_c00237{bottom:961.245000px;}
.y19_c00237{bottom:961.905000px;}
.y18_c00237{bottom:962.130000px;}
.y16_c00237{bottom:962.970000px;}
.y14_c00237{bottom:963.405000px;}
.y17_c00237{bottom:964.470000px;}
.y12_c00237{bottom:980.745000px;}
.y13_c00237{bottom:982.905000px;}
.y10_c00237{bottom:1000.245000px;}
.yf_c00237{bottom:1002.405000px;}
.y11_c00237{bottom:1003.470000px;}
.yd_c00237{bottom:1018.905000px;}
.yb_c00237{bottom:1019.745000px;}
.ye_c00237{bottom:1021.470000px;}
.ya_c00237{bottom:1021.905000px;}
.yc_c00237{bottom:1022.970000px;}
.y9_c00237{bottom:1039.245000px;}
.y8_c00237{bottom:1041.405000px;}
.y3_c00237{bottom:1057.905000px;}
.y6_c00237{bottom:1058.745000px;}
.y5_c00237{bottom:1060.905000px;}
.y7_c00237{bottom:1061.130000px;}
.y4_c00237{bottom:1061.970000px;}
.y2_c00237{bottom:1099.050000px;}
.y1_c00237{bottom:1099.905000px;}
.h7_c00237{height:4.206533px;}
.h5_c00237{height:23.025234px;}
.h2_c00237{height:25.091602px;}
.h3_c00237{height:31.364502px;}
.h1_c00237{height:35.571035px;}
.h6_c00237{height:39.777568px;}
.h4_c00237{height:43.910303px;}
.h8_c00237{height:48.116836px;}
.h0_c00237{height:1335.000000px;}
.w0_c00237{width:880.500000px;}
.x0_c00237{left:0.000000px;}
.x1_c00237{left:152.580000px;}
.x3_c00237{left:154.500000px;}
.x69_c00237{left:160.080000px;}
.x86_c00237{left:161.580000px;}
.x19_c00237{left:169.500000px;}
.x10_c00237{left:172.080000px;}
.x3c_c00237{left:180.420000px;}
.xc0_c00237{left:184.080000px;}
.x4a_c00237{left:186.000000px;}
.x4_c00237{left:188.580000px;}
.xda_c00237{left:202.920000px;}
.x5d_c00237{left:204.420000px;}
.x48_c00237{left:208.080000px;}
.x1a_c00237{left:210.000000px;}
.x5_c00237{left:211.500000px;}
.x11_c00237{left:213.000000px;}
.x56_c00237{left:216.000000px;}
.xac_c00237{left:217.500000px;}
.xbc_c00237{left:223.920000px;}
.x5e_c00237{left:225.000000px;}
.x34_c00237{left:226.920000px;}
.x49_c00237{left:228.000000px;}
.x9e_c00237{left:229.500000px;}
.x87_c00237{left:234.420000px;}
.x70_c00237{left:235.920000px;}
.x90_c00237{left:237.420000px;}
.x28_c00237{left:238.500000px;}
.xdb_c00237{left:239.580000px;}
.x7a_c00237{left:243.000000px;}
.xd6_c00237{left:244.080000px;}
.xde_c00237{left:245.580000px;}
.x6_c00237{left:247.500000px;}
.x6a_c00237{left:248.580000px;}
.x35_c00237{left:255.420000px;}
.xbd_c00237{left:256.500000px;}
.xca_c00237{left:258.420000px;}
.xe3_c00237{left:260.580000px;}
.x7b_c00237{left:262.500000px;}
.x3d_c00237{left:267.000000px;}
.x4b_c00237{left:268.500000px;}
.xaf_c00237{left:271.080000px;}
.x57_c00237{left:272.580000px;}
.x9f_c00237{left:275.580000px;}
.xbe_c00237{left:277.275000px;}
.x88_c00237{left:280.080000px;}
.xc2_c00237{left:281.580000px;}
.x7_c00237{left:283.920000px;}
.x1b_c00237{left:286.080000px;}
.x91_c00237{left:287.580000px;}
.x12_c00237{left:291.000000px;}
.xd7_c00237{left:292.920000px;}
.x3e_c00237{left:294.000000px;}
.xa0_c00237{left:295.500000px;}
.xd3_c00237{left:297.000000px;}
.x5f_c00237{left:298.920000px;}
.x99_c00237{left:301.500000px;}
.x58_c00237{left:303.000000px;}
.xb6_c00237{left:304.500000px;}
.x71_c00237{left:306.000000px;}
.xbf_c00237{left:307.500000px;}
.x13_c00237{left:309.000000px;}
.x6b_c00237{left:312.000000px;}
.x4c_c00237{left:313.080000px;}
.x36_c00237{left:314.580000px;}
.x1c_c00237{left:316.500000px;}
.xe4_c00237{left:319.500000px;}
.x8_c00237{left:322.500000px;}
.xc3_c00237{left:323.580000px;}
.x29_c00237{left:325.080000px;}
.xcb_c00237{left:330.000000px;}
.xb0_c00237{left:334.080000px;}
.x60_c00237{left:337.080000px;}
.x6c_c00237{left:340.500000px;}
.x89_c00237{left:342.000000px;}
.x9a_c00237{left:345.000000px;}
.x4d_c00237{left:346.500000px;}
.xcc_c00237{left:349.080000px;}
.xb7_c00237{left:351.000000px;}
.x72_c00237{left:352.920000px;}
.x14_c00237{left:355.920000px;}
.x7c_c00237{left:357.420000px;}
.x61_c00237{left:361.500000px;}
.x1d_c00237{left:362.580000px;}
.xb1_c00237{left:364.920000px;}
.xdf_c00237{left:367.920000px;}
.x9_c00237{left:372.000000px;}
.x2a_c00237{left:375.000000px;}
.x37_c00237{left:376.920000px;}
.xcd_c00237{left:381.000000px;}
.x15_c00237{left:382.500000px;}
.x1e_c00237{left:383.580000px;}
.xa9_c00237{left:385.500000px;}
.x4e_c00237{left:390.000000px;}
.x3f_c00237{left:392.580000px;}
.x7d_c00237{left:394.500000px;}
.x97_c00237{left:396.420000px;}
.x6d_c00237{left:403.920000px;}
.x2b_c00237{left:405.420000px;}
.xa_c00237{left:408.000000px;}
.x2_c00237{left:409.500000px;}
.x16_c00237{left:412.500000px;}
.x1f_c00237{left:414.000000px;}
.xdc_c00237{left:418.080000px;}
.xb2_c00237{left:421.080000px;}
.x8a_c00237{left:424.500000px;}
.xe5_c00237{left:426.000000px;}
.x7e_c00237{left:427.500000px;}
.xc4_c00237{left:429.000000px;}
.x9b_c00237{left:430.500000px;}
.xb_c00237{left:433.920000px;}
.xb8_c00237{left:435.000000px;}
.xa1_c00237{left:436.080000px;}
.xe0_c00237{left:437.580000px;}
.x73_c00237{left:439.080000px;}
.x2c_c00237{left:441.420000px;}
.x20_c00237{left:442.500000px;}
.x40_c00237{left:443.580000px;}
.x62_c00237{left:445.080000px;}
.x7f_c00237{left:447.000000px;}
.x17_c00237{left:457.500000px;}
.x21_c00237{left:459.000000px;}
.xc_c00237{left:460.500000px;}
.x41_c00237{left:462.000000px;}
.x8b_c00237{left:463.500000px;}
.xb9_c00237{left:466.920000px;}
.x9c_c00237{left:469.920000px;}
.x6e_c00237{left:471.000000px;}
.x18_c00237{left:472.920000px;}
.x4f_c00237{left:475.500000px;}
.x80_c00237{left:478.500000px;}
.xd8_c00237{left:480.420000px;}
.xb3_c00237{left:481.920000px;}
.x59_c00237{left:483.420000px;}
.xc5_c00237{left:485.580000px;}
.x2d_c00237{left:487.080000px;}
.x42_c00237{left:489.000000px;}
.xe6_c00237{left:490.500000px;}
.x74_c00237{left:493.080000px;}
.x38_c00237{left:497.580000px;}
.x50_c00237{left:499.080000px;}
.x2e_c00237{left:504.420000px;}
.x22_c00237{left:507.000000px;}
.x43_c00237{left:508.500000px;}
.x98_c00237{left:509.580000px;}
.x81_c00237{left:511.080000px;}
.xad_c00237{left:514.500000px;}
.x75_c00237{left:516.000000px;}
.xd0_c00237{left:519.000000px;}
.x63_c00237{left:523.500000px;}
.xba_c00237{left:525.000000px;}
.x9d_c00237{left:526.500000px;}
.x64_c00237{left:528.000000px;}
.x2f_c00237{left:529.500000px;}
.x5a_c00237{left:530.580000px;}
.x8c_c00237{left:532.500000px;}
.x23_c00237{left:534.000000px;}
.x92_c00237{left:535.500000px;}
.x51_c00237{left:537.000000px;}
.xc6_c00237{left:538.080000px;}
.xd1_c00237{left:541.080000px;}
.x39_c00237{left:547.080000px;}
.x84_c00237{left:549.000000px;}
.x5b_c00237{left:550.500000px;}
.xb4_c00237{left:552.000000px;}
.xd_c00237{left:557.580000px;}
.xd4_c00237{left:559.500000px;}
.x76_c00237{left:561.420000px;}
.xd2_c00237{left:562.500000px;}
.x82_c00237{left:563.580000px;}
.xaa_c00237{left:565.080000px;}
.x30_c00237{left:566.580000px;}
.xce_c00237{left:567.645000px;}
.x52_c00237{left:569.580000px;}
.xdd_c00237{left:571.920000px;}
.xe1_c00237{left:573.000000px;}
.xa2_c00237{left:574.080000px;}
.xe8_c00237{left:577.080000px;}
.x44_c00237{left:578.580000px;}
.xb5_c00237{left:580.920000px;}
.x53_c00237{left:584.580000px;}
.xe7_c00237{left:587.580000px;}
.x24_c00237{left:589.080000px;}
.x8d_c00237{left:591.000000px;}
.x3a_c00237{left:594.000000px;}
.x65_c00237{left:595.500000px;}
.x83_c00237{left:597.000000px;}
.xab_c00237{left:598.500000px;}
.x77_c00237{left:600.000000px;}
.x93_c00237{left:603.000000px;}
.xc7_c00237{left:606.420000px;}
.xa3_c00237{left:607.500000px;}
.x31_c00237{left:612.000000px;}
.x85_c00237{left:615.000000px;}
.xa7_c00237{left:616.500000px;}
.xe_c00237{left:619.500000px;}
.xae_c00237{left:621.000000px;}
.xc1_c00237{left:622.500000px;}
.x94_c00237{left:625.500000px;}
.xcf_c00237{left:627.000000px;}
.xa4_c00237{left:628.080000px;}
.x54_c00237{left:631.500000px;}
.xe2_c00237{left:633.000000px;}
.x25_c00237{left:637.080000px;}
.xf_c00237{left:639.000000px;}
.x66_c00237{left:640.920000px;}
.x78_c00237{left:642.000000px;}
.xc8_c00237{left:645.420000px;}
.x95_c00237{left:648.000000px;}
.xa8_c00237{left:649.080000px;}
.xa5_c00237{left:651.000000px;}
.x45_c00237{left:652.500000px;}
.x32_c00237{left:655.920000px;}
.x26_c00237{left:657.000000px;}
.xbb_c00237{left:661.500000px;}
.xd9_c00237{left:672.000000px;}
.x3b_c00237{left:673.080000px;}
.x8e_c00237{left:676.500000px;}
.x5c_c00237{left:678.420000px;}
.x46_c00237{left:679.500000px;}
.x33_c00237{left:681.420000px;}
.x27_c00237{left:684.420000px;}
.xd5_c00237{left:688.080000px;}
.x67_c00237{left:689.580000px;}
.x96_c00237{left:693.000000px;}
.xa6_c00237{left:697.920000px;}
.x79_c00237{left:700.500000px;}
.xc9_c00237{left:703.500000px;}
.x55_c00237{left:704.580000px;}
.x68_c00237{left:707.580000px;}
.x8f_c00237{left:709.500000px;}
.x47_c00237{left:721.500000px;}
.x6f_c00237{left:723.420000px;}
@media print{
.v0_c00237{vertical-align:0.000000pt;}
.ls0_c00237{letter-spacing:0.000000pt;}
.ws0_c00237{word-spacing:-3.705387pt;}
.ws1_c00237{word-spacing:0.000000pt;}
.fs6_c00237{font-size:3.040000pt;}
.fs4_c00237{font-size:16.640000pt;}
.fs1_c00237{font-size:18.133333pt;}
.fs2_c00237{font-size:22.666667pt;}
.fs0_c00237{font-size:25.706667pt;}
.fs5_c00237{font-size:28.746667pt;}
.fs3_c00237{font-size:31.733333pt;}
.fs7_c00237{font-size:34.773333pt;}
.y0_c00237{bottom:0.000000pt;}
.yd2_c00237{bottom:220.360000pt;}
.yd3_c00237{bottom:222.640000pt;}
.yd1_c00237{bottom:223.773333pt;}
.yd0_c00237{bottom:225.693333pt;}
.yce_c00237{bottom:239.026667pt;}
.ycf_c00237{bottom:240.360000pt;}
.ycd_c00237{bottom:241.106667pt;}
.ycb_c00237{bottom:241.693333pt;}
.yc9_c00237{bottom:241.893333pt;}
.yca_c00237{bottom:242.640000pt;}
.ycc_c00237{bottom:243.026667pt;}
.yc5_c00237{bottom:258.440000pt;}
.yc8_c00237{bottom:259.226667pt;}
.yc6_c00237{bottom:259.400000pt;}
.yc3_c00237{bottom:259.973333pt;}
.yc4_c00237{bottom:260.360000pt;}
.yc7_c00237{bottom:261.306667pt;}
.yc2_c00237{bottom:274.640000pt;}
.yc1_c00237{bottom:275.773333pt;}
.yc0_c00237{bottom:277.693333pt;}
.ybf_c00237{bottom:291.973333pt;}
.ybe_c00237{bottom:292.360000pt;}
.ybd_c00237{bottom:293.106667pt;}
.ybc_c00237{bottom:295.026667pt;}
.yb5_c00237{bottom:309.693333pt;}
.yba_c00237{bottom:310.066667pt;}
.yb7_c00237{bottom:310.440000pt;}
.yb8_c00237{bottom:310.640000pt;}
.ybb_c00237{bottom:311.973333pt;}
.yb6_c00237{bottom:312.360000pt;}
.yb9_c00237{bottom:312.560000pt;}
.yb4_c00237{bottom:327.026667pt;}
.yb2_c00237{bottom:327.773333pt;}
.yb3_c00237{bottom:330.640000pt;}
.yb0_c00237{bottom:345.106667pt;}
.yad_c00237{bottom:346.066667pt;}
.yaf_c00237{bottom:346.440000pt;}
.yb1_c00237{bottom:347.226667pt;}
.yae_c00237{bottom:347.973333pt;}
.yaa_c00237{bottom:361.693333pt;}
.yac_c00237{bottom:362.440000pt;}
.yab_c00237{bottom:363.773333pt;}
.ya6_c00237{bottom:364.360000pt;}
.ya8_c00237{bottom:364.560000pt;}
.ya9_c00237{bottom:365.306667pt;}
.ya7_c00237{bottom:365.693333pt;}
.ya3_c00237{bottom:379.026667pt;}
.ya4_c00237{bottom:379.773333pt;}
.ya5_c00237{bottom:379.973333pt;}
.ya1_c00237{bottom:380.360000pt;}
.y9e_c00237{bottom:381.106667pt;}
.ya2_c00237{bottom:381.893333pt;}
.ya0_c00237{bottom:382.640000pt;}
.y9f_c00237{bottom:383.026667pt;}
.y9a_c00237{bottom:396.360000pt;}
.y9b_c00237{bottom:397.493333pt;}
.y9d_c00237{bottom:397.693333pt;}
.y9c_c00237{bottom:398.440000pt;}
.y97_c00237{bottom:400.360000pt;}
.y98_c00237{bottom:400.560000pt;}
.y99_c00237{bottom:401.306667pt;}
.y96_c00237{bottom:415.026667pt;}
.y94_c00237{bottom:417.893333pt;}
.y95_c00237{bottom:418.640000pt;}
.y93_c00237{bottom:419.026667pt;}
.y92_c00237{bottom:433.106667pt;}
.y8f_c00237{bottom:433.306667pt;}
.y8e_c00237{bottom:434.440000pt;}
.y91_c00237{bottom:435.026667pt;}
.y90_c00237{bottom:435.226667pt;}
.y8c_c00237{bottom:435.973333pt;}
.y8d_c00237{bottom:436.360000pt;}
.y88_c00237{bottom:451.026667pt;}
.y89_c00237{bottom:451.773333pt;}
.y8b_c00237{bottom:452.360000pt;}
.y8a_c00237{bottom:452.560000pt;}
.y87_c00237{bottom:453.306667pt;}
.y86_c00237{bottom:467.773333pt;}
.y83_c00237{bottom:467.973333pt;}
.y80_c00237{bottom:468.360000pt;}
.y85_c00237{bottom:468.933333pt;}
.y82_c00237{bottom:469.106667pt;}
.y84_c00237{bottom:469.693333pt;}
.y81_c00237{bottom:471.026667pt;}
.y7d_c00237{bottom:485.693333pt;}
.y7f_c00237{bottom:485.706667pt;}
.y7e_c00237{bottom:487.226667pt;}
.y7c_c00237{bottom:488.360000pt;}
.y79_c00237{bottom:503.026667pt;}
.y7a_c00237{bottom:503.773333pt;}
.y7b_c00237{bottom:505.693333pt;}
.y75_c00237{bottom:519.026667pt;}
.y77_c00237{bottom:520.360000pt;}
.y72_c00237{bottom:521.106667pt;}
.y73_c00237{bottom:521.893333pt;}
.y78_c00237{bottom:522.640000pt;}
.y76_c00237{bottom:523.026667pt;}
.y74_c00237{bottom:523.973333pt;}
.y6e_c00237{bottom:536.733333pt;}
.y6f_c00237{bottom:537.306667pt;}
.y70_c00237{bottom:538.440000pt;}
.y6c_c00237{bottom:539.226667pt;}
.y71_c00237{bottom:539.973333pt;}
.y6d_c00237{bottom:540.360000pt;}
.y6b_c00237{bottom:553.693333pt;}
.y68_c00237{bottom:555.026667pt;}
.y6a_c00237{bottom:555.773333pt;}
.y69_c00237{bottom:557.693333pt;}
.y65_c00237{bottom:572.360000pt;}
.y67_c00237{bottom:572.733333pt;}
.y64_c00237{bottom:574.440000pt;}
.y66_c00237{bottom:575.226667pt;}
.y63_c00237{bottom:576.360000pt;}
.y61_c00237{bottom:590.640000pt;}
.y62_c00237{bottom:592.360000pt;}
.y60_c00237{bottom:592.733333pt;}
.y5f_c00237{bottom:593.693333pt;}
.y5d_c00237{bottom:607.026667pt;}
.y58_c00237{bottom:607.773333pt;}
.y5a_c00237{bottom:607.973333pt;}
.y5c_c00237{bottom:608.360000pt;}
.y5b_c00237{bottom:609.106667pt;}
.y5e_c00237{bottom:609.893333pt;}
.y59_c00237{bottom:610.640000pt;}
.y52_c00237{bottom:624.360000pt;}
.y55_c00237{bottom:624.733333pt;}
.y57_c00237{bottom:625.493333pt;}
.y54_c00237{bottom:626.440000pt;}
.y56_c00237{bottom:627.226667pt;}
.y53_c00237{bottom:628.360000pt;}
.y51_c00237{bottom:641.693333pt;}
.y4c_c00237{bottom:642.640000pt;}
.y4f_c00237{bottom:643.026667pt;}
.y4a_c00237{bottom:643.773333pt;}
.y50_c00237{bottom:644.373333pt;}
.y4d_c00237{bottom:644.560000pt;}
.y4e_c00237{bottom:645.306667pt;}
.y49_c00237{bottom:645.693333pt;}
.y4b_c00237{bottom:646.640000pt;}
.y48_c00237{bottom:660.360000pt;}
.y47_c00237{bottom:662.066667pt;}
.y46_c00237{bottom:663.026667pt;}
.y45_c00237{bottom:677.693333pt;}
.y41_c00237{bottom:678.440000pt;}
.y44_c00237{bottom:679.600000pt;}
.y42_c00237{bottom:680.360000pt;}
.y43_c00237{bottom:681.306667pt;}
.y40_c00237{bottom:695.026667pt;}
.y3e_c00237{bottom:695.773333pt;}
.y3f_c00237{bottom:695.973333pt;}
.y3c_c00237{bottom:697.893333pt;}
.y3d_c00237{bottom:698.640000pt;}
.y3a_c00237{bottom:712.733333pt;}
.y39_c00237{bottom:713.106667pt;}
.y3b_c00237{bottom:714.266667pt;}
.y38_c00237{bottom:715.026667pt;}
.y35_c00237{bottom:729.693333pt;}
.y37_c00237{bottom:731.773333pt;}
.y36_c00237{bottom:732.560000pt;}
.y34_c00237{bottom:733.693333pt;}
.y32_c00237{bottom:747.026667pt;}
.y33_c00237{bottom:747.973333pt;}
.y2f_c00237{bottom:749.106667pt;}
.y31_c00237{bottom:750.066667pt;}
.y30_c00237{bottom:751.026667pt;}
.y2c_c00237{bottom:765.693333pt;}
.y2b_c00237{bottom:766.440000pt;}
.y2a_c00237{bottom:766.640000pt;}
.y2d_c00237{bottom:767.973333pt;}
.y29_c00237{bottom:768.360000pt;}
.y2e_c00237{bottom:768.560000pt;}
.y27_c00237{bottom:782.640000pt;}
.y26_c00237{bottom:783.026667pt;}
.y25_c00237{bottom:783.773333pt;}
.y24_c00237{bottom:785.306667pt;}
.y28_c00237{bottom:785.693333pt;}
.y1f_c00237{bottom:800.360000pt;}
.y23_c00237{bottom:801.106667pt;}
.y1d_c00237{bottom:802.266667pt;}
.y22_c00237{bottom:802.440000pt;}
.y1e_c00237{bottom:803.026667pt;}
.y21_c00237{bottom:803.226667pt;}
.y20_c00237{bottom:804.360000pt;}
.y1a_c00237{bottom:836.733333pt;}
.y1c_c00237{bottom:837.106667pt;}
.y1b_c00237{bottom:838.640000pt;}
.y15_c00237{bottom:854.440000pt;}
.y19_c00237{bottom:855.026667pt;}
.y18_c00237{bottom:855.226667pt;}
.y16_c00237{bottom:855.973333pt;}
.y14_c00237{bottom:856.360000pt;}
.y17_c00237{bottom:857.306667pt;}
.y12_c00237{bottom:871.773333pt;}
.y13_c00237{bottom:873.693333pt;}
.y10_c00237{bottom:889.106667pt;}
.yf_c00237{bottom:891.026667pt;}
.y11_c00237{bottom:891.973333pt;}
.yd_c00237{bottom:905.693333pt;}
.yb_c00237{bottom:906.440000pt;}
.ye_c00237{bottom:907.973333pt;}
.ya_c00237{bottom:908.360000pt;}
.yc_c00237{bottom:909.306667pt;}
.y9_c00237{bottom:923.773333pt;}
.y8_c00237{bottom:925.693333pt;}
.y3_c00237{bottom:940.360000pt;}
.y6_c00237{bottom:941.106667pt;}
.y5_c00237{bottom:943.026667pt;}
.y7_c00237{bottom:943.226667pt;}
.y4_c00237{bottom:943.973333pt;}
.y2_c00237{bottom:976.933333pt;}
.y1_c00237{bottom:977.693333pt;}
.h7_c00237{height:3.739141pt;}
.h5_c00237{height:20.466875pt;}
.h2_c00237{height:22.303646pt;}
.h3_c00237{height:27.879557pt;}
.h1_c00237{height:31.618698pt;}
.h6_c00237{height:35.357839pt;}
.h4_c00237{height:39.031380pt;}
.h8_c00237{height:42.770521pt;}
.h0_c00237{height:1186.666667pt;}
.w0_c00237{width:782.666667pt;}
.x0_c00237{left:0.000000pt;}
.x1_c00237{left:135.626667pt;}
.x3_c00237{left:137.333333pt;}
.x69_c00237{left:142.293333pt;}
.x86_c00237{left:143.626667pt;}
.x19_c00237{left:150.666667pt;}
.x10_c00237{left:152.960000pt;}
.x3c_c00237{left:160.373333pt;}
.xc0_c00237{left:163.626667pt;}
.x4a_c00237{left:165.333333pt;}
.x4_c00237{left:167.626667pt;}
.xda_c00237{left:180.373333pt;}
.x5d_c00237{left:181.706667pt;}
.x48_c00237{left:184.960000pt;}
.x1a_c00237{left:186.666667pt;}
.x5_c00237{left:188.000000pt;}
.x11_c00237{left:189.333333pt;}
.x56_c00237{left:192.000000pt;}
.xac_c00237{left:193.333333pt;}
.xbc_c00237{left:199.040000pt;}
.x5e_c00237{left:200.000000pt;}
.x34_c00237{left:201.706667pt;}
.x49_c00237{left:202.666667pt;}
.x9e_c00237{left:204.000000pt;}
.x87_c00237{left:208.373333pt;}
.x70_c00237{left:209.706667pt;}
.x90_c00237{left:211.040000pt;}
.x28_c00237{left:212.000000pt;}
.xdb_c00237{left:212.960000pt;}
.x7a_c00237{left:216.000000pt;}
.xd6_c00237{left:216.960000pt;}
.xde_c00237{left:218.293333pt;}
.x6_c00237{left:220.000000pt;}
.x6a_c00237{left:220.960000pt;}
.x35_c00237{left:227.040000pt;}
.xbd_c00237{left:228.000000pt;}
.xca_c00237{left:229.706667pt;}
.xe3_c00237{left:231.626667pt;}
.x7b_c00237{left:233.333333pt;}
.x3d_c00237{left:237.333333pt;}
.x4b_c00237{left:238.666667pt;}
.xaf_c00237{left:240.960000pt;}
.x57_c00237{left:242.293333pt;}
.x9f_c00237{left:244.960000pt;}
.xbe_c00237{left:246.466667pt;}
.x88_c00237{left:248.960000pt;}
.xc2_c00237{left:250.293333pt;}
.x7_c00237{left:252.373333pt;}
.x1b_c00237{left:254.293333pt;}
.x91_c00237{left:255.626667pt;}
.x12_c00237{left:258.666667pt;}
.xd7_c00237{left:260.373333pt;}
.x3e_c00237{left:261.333333pt;}
.xa0_c00237{left:262.666667pt;}
.xd3_c00237{left:264.000000pt;}
.x5f_c00237{left:265.706667pt;}
.x99_c00237{left:268.000000pt;}
.x58_c00237{left:269.333333pt;}
.xb6_c00237{left:270.666667pt;}
.x71_c00237{left:272.000000pt;}
.xbf_c00237{left:273.333333pt;}
.x13_c00237{left:274.666667pt;}
.x6b_c00237{left:277.333333pt;}
.x4c_c00237{left:278.293333pt;}
.x36_c00237{left:279.626667pt;}
.x1c_c00237{left:281.333333pt;}
.xe4_c00237{left:284.000000pt;}
.x8_c00237{left:286.666667pt;}
.xc3_c00237{left:287.626667pt;}
.x29_c00237{left:288.960000pt;}
.xcb_c00237{left:293.333333pt;}
.xb0_c00237{left:296.960000pt;}
.x60_c00237{left:299.626667pt;}
.x6c_c00237{left:302.666667pt;}
.x89_c00237{left:304.000000pt;}
.x9a_c00237{left:306.666667pt;}
.x4d_c00237{left:308.000000pt;}
.xcc_c00237{left:310.293333pt;}
.xb7_c00237{left:312.000000pt;}
.x72_c00237{left:313.706667pt;}
.x14_c00237{left:316.373333pt;}
.x7c_c00237{left:317.706667pt;}
.x61_c00237{left:321.333333pt;}
.x1d_c00237{left:322.293333pt;}
.xb1_c00237{left:324.373333pt;}
.xdf_c00237{left:327.040000pt;}
.x9_c00237{left:330.666667pt;}
.x2a_c00237{left:333.333333pt;}
.x37_c00237{left:335.040000pt;}
.xcd_c00237{left:338.666667pt;}
.x15_c00237{left:340.000000pt;}
.x1e_c00237{left:340.960000pt;}
.xa9_c00237{left:342.666667pt;}
.x4e_c00237{left:346.666667pt;}
.x3f_c00237{left:348.960000pt;}
.x7d_c00237{left:350.666667pt;}
.x97_c00237{left:352.373333pt;}
.x6d_c00237{left:359.040000pt;}
.x2b_c00237{left:360.373333pt;}
.xa_c00237{left:362.666667pt;}
.x2_c00237{left:364.000000pt;}
.x16_c00237{left:366.666667pt;}
.x1f_c00237{left:368.000000pt;}
.xdc_c00237{left:371.626667pt;}
.xb2_c00237{left:374.293333pt;}
.x8a_c00237{left:377.333333pt;}
.xe5_c00237{left:378.666667pt;}
.x7e_c00237{left:380.000000pt;}
.xc4_c00237{left:381.333333pt;}
.x9b_c00237{left:382.666667pt;}
.xb_c00237{left:385.706667pt;}
.xb8_c00237{left:386.666667pt;}
.xa1_c00237{left:387.626667pt;}
.xe0_c00237{left:388.960000pt;}
.x73_c00237{left:390.293333pt;}
.x2c_c00237{left:392.373333pt;}
.x20_c00237{left:393.333333pt;}
.x40_c00237{left:394.293333pt;}
.x62_c00237{left:395.626667pt;}
.x7f_c00237{left:397.333333pt;}
.x17_c00237{left:406.666667pt;}
.x21_c00237{left:408.000000pt;}
.xc_c00237{left:409.333333pt;}
.x41_c00237{left:410.666667pt;}
.x8b_c00237{left:412.000000pt;}
.xb9_c00237{left:415.040000pt;}
.x9c_c00237{left:417.706667pt;}
.x6e_c00237{left:418.666667pt;}
.x18_c00237{left:420.373333pt;}
.x4f_c00237{left:422.666667pt;}
.x80_c00237{left:425.333333pt;}
.xd8_c00237{left:427.040000pt;}
.xb3_c00237{left:428.373333pt;}
.x59_c00237{left:429.706667pt;}
.xc5_c00237{left:431.626667pt;}
.x2d_c00237{left:432.960000pt;}
.x42_c00237{left:434.666667pt;}
.xe6_c00237{left:436.000000pt;}
.x74_c00237{left:438.293333pt;}
.x38_c00237{left:442.293333pt;}
.x50_c00237{left:443.626667pt;}
.x2e_c00237{left:448.373333pt;}
.x22_c00237{left:450.666667pt;}
.x43_c00237{left:452.000000pt;}
.x98_c00237{left:452.960000pt;}
.x81_c00237{left:454.293333pt;}
.xad_c00237{left:457.333333pt;}
.x75_c00237{left:458.666667pt;}
.xd0_c00237{left:461.333333pt;}
.x63_c00237{left:465.333333pt;}
.xba_c00237{left:466.666667pt;}
.x9d_c00237{left:468.000000pt;}
.x64_c00237{left:469.333333pt;}
.x2f_c00237{left:470.666667pt;}
.x5a_c00237{left:471.626667pt;}
.x8c_c00237{left:473.333333pt;}
.x23_c00237{left:474.666667pt;}
.x92_c00237{left:476.000000pt;}
.x51_c00237{left:477.333333pt;}
.xc6_c00237{left:478.293333pt;}
.xd1_c00237{left:480.960000pt;}
.x39_c00237{left:486.293333pt;}
.x84_c00237{left:488.000000pt;}
.x5b_c00237{left:489.333333pt;}
.xb4_c00237{left:490.666667pt;}
.xd_c00237{left:495.626667pt;}
.xd4_c00237{left:497.333333pt;}
.x76_c00237{left:499.040000pt;}
.xd2_c00237{left:500.000000pt;}
.x82_c00237{left:500.960000pt;}
.xaa_c00237{left:502.293333pt;}
.x30_c00237{left:503.626667pt;}
.xce_c00237{left:504.573333pt;}
.x52_c00237{left:506.293333pt;}
.xdd_c00237{left:508.373333pt;}
.xe1_c00237{left:509.333333pt;}
.xa2_c00237{left:510.293333pt;}
.xe8_c00237{left:512.960000pt;}
.x44_c00237{left:514.293333pt;}
.xb5_c00237{left:516.373333pt;}
.x53_c00237{left:519.626667pt;}
.xe7_c00237{left:522.293333pt;}
.x24_c00237{left:523.626667pt;}
.x8d_c00237{left:525.333333pt;}
.x3a_c00237{left:528.000000pt;}
.x65_c00237{left:529.333333pt;}
.x83_c00237{left:530.666667pt;}
.xab_c00237{left:532.000000pt;}
.x77_c00237{left:533.333333pt;}
.x93_c00237{left:536.000000pt;}
.xc7_c00237{left:539.040000pt;}
.xa3_c00237{left:540.000000pt;}
.x31_c00237{left:544.000000pt;}
.x85_c00237{left:546.666667pt;}
.xa7_c00237{left:548.000000pt;}
.xe_c00237{left:550.666667pt;}
.xae_c00237{left:552.000000pt;}
.xc1_c00237{left:553.333333pt;}
.x94_c00237{left:556.000000pt;}
.xcf_c00237{left:557.333333pt;}
.xa4_c00237{left:558.293333pt;}
.x54_c00237{left:561.333333pt;}
.xe2_c00237{left:562.666667pt;}
.x25_c00237{left:566.293333pt;}
.xf_c00237{left:568.000000pt;}
.x66_c00237{left:569.706667pt;}
.x78_c00237{left:570.666667pt;}
.xc8_c00237{left:573.706667pt;}
.x95_c00237{left:576.000000pt;}
.xa8_c00237{left:576.960000pt;}
.xa5_c00237{left:578.666667pt;}
.x45_c00237{left:580.000000pt;}
.x32_c00237{left:583.040000pt;}
.x26_c00237{left:584.000000pt;}
.xbb_c00237{left:588.000000pt;}
.xd9_c00237{left:597.333333pt;}
.x3b_c00237{left:598.293333pt;}
.x8e_c00237{left:601.333333pt;}
.x5c_c00237{left:603.040000pt;}
.x46_c00237{left:604.000000pt;}
.x33_c00237{left:605.706667pt;}
.x27_c00237{left:608.373333pt;}
.xd5_c00237{left:611.626667pt;}
.x67_c00237{left:612.960000pt;}
.x96_c00237{left:616.000000pt;}
.xa6_c00237{left:620.373333pt;}
.x79_c00237{left:622.666667pt;}
.xc9_c00237{left:625.333333pt;}
.x55_c00237{left:626.293333pt;}
.x68_c00237{left:628.960000pt;}
.x8f_c00237{left:630.666667pt;}
.x47_c00237{left:641.333333pt;}
.x6f_c00237{left:643.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_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_90a00211300e9831b1e9eef4.woff2')format("woff");}.ff1_c00238{font-family:ff1_c00238;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m107_c00238{transform:matrix(0.291494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291494,0.000000,0.000000,0.250000,0,0);}
.m4c_c00238{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.mce_c00238{transform:matrix(0.355828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355828,0.000000,0.000000,0.250000,0,0);}
.m99_c00238{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m54_c00238{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.ma4_c00238{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m8_c00238{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.ma5_c00238{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m118_c00238{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m63_c00238{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m12_c00238{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.mb1_c00238{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mb5_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);}
.m43_c00238{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mb9_c00238{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.m36_c00238{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m3e_c00238{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m112_c00238{transform:matrix(0.381725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381725,0.000000,0.000000,0.250000,0,0);}
.m51_c00238{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.mc6_c00238{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m3a_c00238{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m94_c00238{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.maa_c00238{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m64_c00238{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mb3_c00238{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.mcb_c00238{transform:matrix(0.391488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391488,0.000000,0.000000,0.250000,0,0);}
.m39_c00238{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mc0_c00238{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.me0_c00238{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.mf_c00238{transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);}
.mc1_c00238{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m56_c00238{transform:matrix(0.396472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396472,0.000000,0.000000,0.250000,0,0);}
.m48_c00238{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.ma3_c00238{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);}
.m49_c00238{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m92_c00238{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mb_c00238{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.mf0_c00238{transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);}
.m46_c00238{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.mc3_c00238{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.mdf_c00238{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m13_c00238{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m37_c00238{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m87_c00238{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.md1_c00238{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m53_c00238{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m40_c00238{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mfb_c00238{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.mad_c00238{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m1e_c00238{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.m10_c00238{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m4d_c00238{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mb6_c00238{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m105_c00238{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m1d_c00238{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m21_c00238{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m108_c00238{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.m61_c00238{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mea_c00238{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.med_c00238{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.mdb_c00238{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m47_c00238{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m3b_c00238{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.ma0_c00238{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.mac_c00238{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.mb2_c00238{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.mbb_c00238{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.mc5_c00238{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m32_c00238{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.me7_c00238{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.ma1_c00238{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m106_c00238{transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);}
.ma8_c00238{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m9a_c00238{transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);}
.m22_c00238{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mb0_c00238{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m66_c00238{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m1a_c00238{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.m4e_c00238{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m58_c00238{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.m7_c00238{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m7c_c00238{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.mc2_c00238{transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);}
.m88_c00238{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m103_c00238{transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);}
.mcf_c00238{transform:matrix(0.444805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444805,0.000000,0.000000,0.250000,0,0);}
.m1c_c00238{transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);}
.mbc_c00238{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m110_c00238{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m116_c00238{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m7b_c00238{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.meb_c00238{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m45_c00238{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m30_c00238{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m9e_c00238{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mdc_c00238{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m10c_c00238{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m4_c00238{transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);}
.mda_c00238{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m4a_c00238{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.mf8_c00238{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m2a_c00238{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.m31_c00238{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m93_c00238{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.maf_c00238{transform:matrix(0.472269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472269,0.000000,0.000000,0.250000,0,0);}
.m11a_c00238{transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);}
.m6a_c00238{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m25_c00238{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m38_c00238{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.m60_c00238{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mf5_c00238{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.mba_c00238{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m89_c00238{transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);}
.mc_c00238{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m28_c00238{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.md9_c00238{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.md0_c00238{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m17_c00238{transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);}
.m7e_c00238{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m1_c00238{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m27_c00238{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m3c_c00238{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.md_c00238{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_c00238{transform:matrix(0.503711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503711,0.000000,0.000000,0.250000,0,0);}
.m86_c00238{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m9d_c00238{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.md7_c00238{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m10f_c00238{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m6_c00238{transform:matrix(0.507885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507885,0.000000,0.000000,0.250000,0,0);}
.me2_c00238{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m81_c00238{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m5b_c00238{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m6f_c00238{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.mcd_c00238{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.md5_c00238{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m90_c00238{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.md4_c00238{transform:matrix(0.515770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515770,0.000000,0.000000,0.250000,0,0);}
.m95_c00238{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m117_c00238{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.me3_c00238{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m2c_c00238{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m119_c00238{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m35_c00238{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.mdd_c00238{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mec_c00238{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m111_c00238{transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);}
.m44_c00238{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m109_c00238{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);}
.m113_c00238{transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);}
.m8a_c00238{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m6b_c00238{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mfa_c00238{transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);}
.m59_c00238{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m5d_c00238{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mf9_c00238{transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);}
.m5a_c00238{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m2f_c00238{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m8f_c00238{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m8b_c00238{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mf4_c00238{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m82_c00238{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m69_c00238{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mfc_c00238{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.mab_c00238{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m85_c00238{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.md3_c00238{transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);}
.md8_c00238{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mc7_c00238{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m41_c00238{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m52_c00238{transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);}
.m57_c00238{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m70_c00238{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mc9_c00238{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m29_c00238{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.mf1_c00238{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m80_c00238{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mc4_c00238{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.me6_c00238{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m9f_c00238{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m8e_c00238{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.ma2_c00238{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.ma9_c00238{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m1b_c00238{transform:matrix(0.554118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554118,0.000000,0.000000,0.250000,0,0);}
.m4b_c00238{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m7f_c00238{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m5c_c00238{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m34_c00238{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mee_c00238{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m65_c00238{transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);}
.m6c_c00238{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.mde_c00238{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m10e_c00238{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.mcc_c00238{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m3d_c00238{transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);}
.ma6_c00238{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m11_c00238{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.md2_c00238{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m71_c00238{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.me9_c00238{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.mb8_c00238{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.m2_c00238{transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);}
.m100_c00238{transform:matrix(0.567647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567647,0.000000,0.000000,0.250000,0,0);}
.m76_c00238{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m97_c00238{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m4f_c00238{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m24_c00238{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.ma_c00238{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m7a_c00238{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m75_c00238{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m55_c00238{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.mf2_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);}
.m6d_c00238{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m2d_c00238{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mf7_c00238{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m20_c00238{transform:matrix(0.588971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588971,0.000000,0.000000,0.250000,0,0);}
.mbe_c00238{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.ma7_c00238{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m10d_c00238{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.mc8_c00238{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m33_c00238{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m3_c00238{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m5f_c00238{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.m114_c00238{transform:matrix(0.595588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595588,0.000000,0.000000,0.250000,0,0);}
.m96_c00238{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m50_c00238{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);}
.m9b_c00238{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m73_c00238{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.mbd_c00238{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m18_c00238{transform:matrix(0.607353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607353,0.000000,0.000000,0.250000,0,0);}
.m8c_c00238{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m62_c00238{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m7d_c00238{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mfe_c00238{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.m67_c00238{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m74_c00238{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m26_c00238{transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);}
.m9_c00238{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);}
.mb4_c00238{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m10b_c00238{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.m8d_c00238{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m72_c00238{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mf6_c00238{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.mca_c00238{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m5e_c00238{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m3f_c00238{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.m5_c00238{transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);}
.m10a_c00238{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.me_c00238{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);}
.m77_c00238{transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);}
.m102_c00238{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m19_c00238{transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);}
.m16_c00238{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m115_c00238{transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);}
.mae_c00238{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m91_c00238{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m101_c00238{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.m14_c00238{transform:matrix(0.673529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673529,0.000000,0.000000,0.250000,0,0);}
.mff_c00238{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.m15_c00238{transform:matrix(0.684559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.684559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.684559,0.000000,0.000000,0.250000,0,0);}
.m0_c00238{transform:matrix(0.690705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690705,0.000000,0.000000,0.250000,0,0);}
.m83_c00238{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m9c_c00238{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mef_c00238{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);}
.m6e_c00238{transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);}
.m79_c00238{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m2b_c00238{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m42_c00238{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m2e_c00238{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mbf_c00238{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.m84_c00238{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.m68_c00238{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.me4_c00238{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.md6_c00238{transform:matrix(0.771635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.771635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.771635,0.000000,0.000000,0.250000,0,0);}
.m78_c00238{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m98_c00238{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.me5_c00238{transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);}
.mb7_c00238{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m104_c00238{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.me8_c00238{transform:matrix(0.899840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.899840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.899840,0.000000,0.000000,0.250000,0,0);}
.mf3_c00238{transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);}
.mfd_c00238{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m1f_c00238{transform:matrix(1.040749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.040749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.040749,0.000000,0.000000,0.250000,0,0);}
.m23_c00238{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.v0_c00238{vertical-align:0.000000px;}
.ls0_c00238{letter-spacing:0.000000px;}
.sc__c00238{text-shadow:none;}
.sc0_c00238{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00238{-webkit-text-stroke:0px transparent;}
.sc0_c00238{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00238{word-spacing:0.000000px;}
.fc0_c00238{color:transparent;}
.fs7_c00238{font-size:3.420000px;}
.fs6_c00238{font-size:13.620000px;}
.fs0_c00238{font-size:18.720000px;}
.fs5_c00238{font-size:20.400000px;}
.fs2_c00238{font-size:25.500000px;}
.fs1_c00238{font-size:28.920000px;}
.fs4_c00238{font-size:32.340000px;}
.fs3_c00238{font-size:35.700000px;}
.fs8_c00238{font-size:39.120000px;}
.y0_c00238{bottom:0.000000px;}
.yda_c00238{bottom:250.470000px;}
.ydc_c00238{bottom:250.905000px;}
.ydb_c00238{bottom:251.970000px;}
.yd7_c00238{bottom:263.970000px;}
.yd5_c00238{bottom:264.825000px;}
.yd3_c00238{bottom:265.050000px;}
.yd6_c00238{bottom:265.905000px;}
.yd4_c00238{bottom:266.970000px;}
.yd9_c00238{bottom:267.630000px;}
.yd8_c00238{bottom:268.050000px;}
.ycf_c00238{bottom:280.050000px;}
.yce_c00238{bottom:280.470000px;}
.yd2_c00238{bottom:280.905000px;}
.yd0_c00238{bottom:281.970000px;}
.yd1_c00238{bottom:283.050000px;}
.yca_c00238{bottom:293.970000px;}
.yc8_c00238{bottom:295.050000px;}
.ycd_c00238{bottom:295.905000px;}
.ycc_c00238{bottom:296.130000px;}
.yc9_c00238{bottom:296.970000px;}
.ycb_c00238{bottom:298.050000px;}
.yc7_c00238{bottom:309.405000px;}
.yc4_c00238{bottom:310.905000px;}
.yc5_c00238{bottom:312.195000px;}
.yc6_c00238{bottom:313.050000px;}
.yc0_c00238{bottom:324.825000px;}
.ybe_c00238{bottom:326.130000px;}
.yc3_c00238{bottom:326.550000px;}
.ybf_c00238{bottom:326.970000px;}
.yc1_c00238{bottom:327.195000px;}
.yc2_c00238{bottom:328.050000px;}
.ybb_c00238{bottom:338.970000px;}
.yba_c00238{bottom:339.405000px;}
.ybd_c00238{bottom:340.905000px;}
.ybc_c00238{bottom:341.550000px;}
.yb9_c00238{bottom:341.970000px;}
.yb6_c00238{bottom:354.825000px;}
.yb5_c00238{bottom:355.905000px;}
.yb3_c00238{bottom:356.130000px;}
.yb8_c00238{bottom:356.550000px;}
.yb4_c00238{bottom:356.970000px;}
.yb7_c00238{bottom:358.050000px;}
.yb2_c00238{bottom:377.745000px;}
.yb1_c00238{bottom:379.905000px;}
.yb0_c00238{bottom:381.405000px;}
.yac_c00238{bottom:398.130000px;}
.yae_c00238{bottom:398.325000px;}
.yad_c00238{bottom:399.405000px;}
.yaf_c00238{bottom:399.630000px;}
.yab_c00238{bottom:400.470000px;}
.ya5_c00238{bottom:416.745000px;}
.ya7_c00238{bottom:418.245000px;}
.ya6_c00238{bottom:418.905000px;}
.yaa_c00238{bottom:419.130000px;}
.ya9_c00238{bottom:419.325000px;}
.ya8_c00238{bottom:420.405000px;}
.ya3_c00238{bottom:436.245000px;}
.ya1_c00238{bottom:437.325000px;}
.ya4_c00238{bottom:437.745000px;}
.ya0_c00238{bottom:438.825000px;}
.ya2_c00238{bottom:439.905000px;}
.y9c_c00238{bottom:457.905000px;}
.y9f_c00238{bottom:458.130000px;}
.y9d_c00238{bottom:458.325000px;}
.y9e_c00238{bottom:458.970000px;}
.y9b_c00238{bottom:459.405000px;}
.y94_c00238{bottom:475.680000px;}
.y97_c00238{bottom:475.905000px;}
.y99_c00238{bottom:476.745000px;}
.y95_c00238{bottom:476.970000px;}
.y9a_c00238{bottom:477.825000px;}
.y96_c00238{bottom:478.905000px;}
.y98_c00238{bottom:479.130000px;}
.y91_c00238{bottom:496.245000px;}
.y8f_c00238{bottom:497.325000px;}
.y90_c00238{bottom:497.970000px;}
.y92_c00238{bottom:498.405000px;}
.y93_c00238{bottom:499.470000px;}
.y8a_c00238{bottom:515.745000px;}
.y8b_c00238{bottom:516.825000px;}
.y8d_c00238{bottom:517.905000px;}
.y8e_c00238{bottom:518.130000px;}
.y8c_c00238{bottom:518.970000px;}
.y86_c00238{bottom:534.180000px;}
.y82_c00238{bottom:535.245000px;}
.y89_c00238{bottom:535.470000px;}
.y84_c00238{bottom:536.970000px;}
.y85_c00238{bottom:537.405000px;}
.y83_c00238{bottom:537.630000px;}
.y87_c00238{bottom:538.470000px;}
.y88_c00238{bottom:538.905000px;}
.y7f_c00238{bottom:554.745000px;}
.y7e_c00238{bottom:556.245000px;}
.y80_c00238{bottom:556.905000px;}
.y81_c00238{bottom:558.405000px;}
.y78_c00238{bottom:575.745000px;}
.y7d_c00238{bottom:576.630000px;}
.y7a_c00238{bottom:577.470000px;}
.y79_c00238{bottom:577.905000px;}
.y7c_c00238{bottom:578.130000px;}
.y7b_c00238{bottom:578.970000px;}
.y73_c00238{bottom:593.970000px;}
.y72_c00238{bottom:595.245000px;}
.y74_c00238{bottom:596.130000px;}
.y76_c00238{bottom:596.970000px;}
.y75_c00238{bottom:597.405000px;}
.y77_c00238{bottom:598.470000px;}
.y70_c00238{bottom:614.745000px;}
.y71_c00238{bottom:615.630000px;}
.y6f_c00238{bottom:616.470000px;}
.y6e_c00238{bottom:616.905000px;}
.y6a_c00238{bottom:634.245000px;}
.y69_c00238{bottom:635.130000px;}
.y6c_c00238{bottom:635.745000px;}
.y68_c00238{bottom:636.405000px;}
.y6d_c00238{bottom:636.825000px;}
.y6b_c00238{bottom:637.905000px;}
.y63_c00238{bottom:653.745000px;}
.y65_c00238{bottom:655.245000px;}
.y64_c00238{bottom:655.905000px;}
.y62_c00238{bottom:657.405000px;}
.y66_c00238{bottom:657.630000px;}
.y67_c00238{bottom:658.470000px;}
.y61_c00238{bottom:672.405000px;}
.y5c_c00238{bottom:674.325000px;}
.y5e_c00238{bottom:674.745000px;}
.y60_c00238{bottom:675.825000px;}
.y5f_c00238{bottom:676.470000px;}
.y5d_c00238{bottom:676.905000px;}
.y57_c00238{bottom:692.745000px;}
.y5a_c00238{bottom:694.245000px;}
.y59_c00238{bottom:694.470000px;}
.y58_c00238{bottom:695.970000px;}
.y56_c00238{bottom:696.405000px;}
.y5b_c00238{bottom:697.470000px;}
.y55_c00238{bottom:712.905000px;}
.y54_c00238{bottom:713.745000px;}
.y52_c00238{bottom:714.630000px;}
.y51_c00238{bottom:715.470000px;}
.y50_c00238{bottom:715.905000px;}
.y53_c00238{bottom:716.130000px;}
.y4f_c00238{bottom:733.245000px;}
.y4e_c00238{bottom:734.325000px;}
.y4d_c00238{bottom:735.405000px;}
.y4c_c00238{bottom:752.745000px;}
.y4b_c00238{bottom:755.130000px;}
.y49_c00238{bottom:755.970000px;}
.y4a_c00238{bottom:756.420000px;}
.y46_c00238{bottom:773.550000px;}
.y45_c00238{bottom:773.970000px;}
.y47_c00238{bottom:774.405000px;}
.y48_c00238{bottom:775.905000px;}
.y43_c00238{bottom:791.745000px;}
.y41_c00238{bottom:792.630000px;}
.y42_c00238{bottom:792.825000px;}
.y40_c00238{bottom:793.905000px;}
.y44_c00238{bottom:794.130000px;}
.y3d_c00238{bottom:811.245000px;}
.y3b_c00238{bottom:811.470000px;}
.y3f_c00238{bottom:812.325000px;}
.y3e_c00238{bottom:812.745000px;}
.y3c_c00238{bottom:813.405000px;}
.y3a_c00238{bottom:814.470000px;}
.y36_c00238{bottom:831.180000px;}
.y38_c00238{bottom:831.825000px;}
.y39_c00238{bottom:833.325000px;}
.y37_c00238{bottom:834.405000px;}
.y35_c00238{bottom:851.745000px;}
.y32_c00238{bottom:853.905000px;}
.y33_c00238{bottom:853.920000px;}
.y34_c00238{bottom:854.970000px;}
.y2f_c00238{bottom:870.405000px;}
.y30_c00238{bottom:871.245000px;}
.y31_c00238{bottom:872.325000px;}
.y2d_c00238{bottom:890.745000px;}
.y2b_c00238{bottom:891.630000px;}
.y2e_c00238{bottom:891.825000px;}
.y2a_c00238{bottom:892.905000px;}
.y2c_c00238{bottom:892.920000px;}
.y26_c00238{bottom:909.405000px;}
.y24_c00238{bottom:910.245000px;}
.y27_c00238{bottom:910.470000px;}
.y25_c00238{bottom:911.325000px;}
.y28_c00238{bottom:911.550000px;}
.y29_c00238{bottom:911.745000px;}
.y23_c00238{bottom:931.245000px;}
.y1d_c00238{bottom:931.470000px;}
.y1f_c00238{bottom:931.905000px;}
.y1e_c00238{bottom:932.130000px;}
.y20_c00238{bottom:932.325000px;}
.y21_c00238{bottom:932.970000px;}
.y22_c00238{bottom:933.405000px;}
.y15_c00238{bottom:949.245000px;}
.y17_c00238{bottom:951.405000px;}
.y1c_c00238{bottom:951.630000px;}
.y1b_c00238{bottom:951.825000px;}
.y19_c00238{bottom:952.470000px;}
.y18_c00238{bottom:952.905000px;}
.y16_c00238{bottom:952.920000px;}
.y1a_c00238{bottom:953.970000px;}
.y11_c00238{bottom:973.905000px;}
.y12_c00238{bottom:974.550000px;}
.y13_c00238{bottom:974.970000px;}
.y14_c00238{bottom:976.695000px;}
.ye_c00238{bottom:987.825000px;}
.yf_c00238{bottom:988.905000px;}
.yd_c00238{bottom:989.970000px;}
.y10_c00238{bottom:991.050000px;}
.y9_c00238{bottom:1007.550000px;}
.yb_c00238{bottom:1008.405000px;}
.ya_c00238{bottom:1008.825000px;}
.yc_c00238{bottom:1009.050000px;}
.y8_c00238{bottom:1010.550000px;}
.y5_c00238{bottom:1031.745000px;}
.y7_c00238{bottom:1032.825000px;}
.y6_c00238{bottom:1033.470000px;}
.y4_c00238{bottom:1063.905000px;}
.y3_c00238{bottom:1064.970000px;}
.y2_c00238{bottom:1099.905000px;}
.y1_c00238{bottom:1103.130000px;}
.h8_c00238{height:4.206533px;}
.h7_c00238{height:16.752334px;}
.h1_c00238{height:23.025234px;}
.h6_c00238{height:25.091602px;}
.h3_c00238{height:31.364502px;}
.h2_c00238{height:35.571035px;}
.h5_c00238{height:39.777568px;}
.h4_c00238{height:43.910303px;}
.h9_c00238{height:48.116836px;}
.h0_c00238{height:1335.000000px;}
.w0_c00238{width:880.500000px;}
.x0_c00238{left:0.000000px;}
.xc4_c00238{left:151.500000px;}
.x1b_c00238{left:153.000000px;}
.xd8_c00238{left:154.080000px;}
.xe6_c00238{left:165.000000px;}
.x11_c00238{left:166.500000px;}
.x23_c00238{left:168.420000px;}
.x39_c00238{left:169.500000px;}
.x2e_c00238{left:171.000000px;}
.xe2_c00238{left:172.500000px;}
.xa3_c00238{left:178.920000px;}
.x62_c00238{left:181.500000px;}
.x2f_c00238{left:184.500000px;}
.x7c_c00238{left:186.420000px;}
.xb7_c00238{left:187.500000px;}
.x49_c00238{left:190.080000px;}
.xc5_c00238{left:192.000000px;}
.xd9_c00238{left:195.000000px;}
.xff_c00238{left:196.500000px;}
.x5a_c00238{left:197.580000px;}
.xb8_c00238{left:201.000000px;}
.x8d_c00238{left:202.500000px;}
.xe7_c00238{left:203.580000px;}
.x1c_c00238{left:205.920000px;}
.xf3_c00238{left:207.000000px;}
.x12_c00238{left:208.500000px;}
.xbf_c00238{left:210.000000px;}
.x4a_c00238{left:214.500000px;}
.x9a_c00238{left:216.000000px;}
.x30_c00238{left:217.920000px;}
.x53_c00238{left:220.920000px;}
.x1d_c00238{left:222.420000px;}
.x8e_c00238{left:225.000000px;}
.xed_c00238{left:226.080000px;}
.x73_c00238{left:228.000000px;}
.xcc_c00238{left:230.580000px;}
.x96_c00238{left:232.500000px;}
.xb9_c00238{left:234.000000px;}
.x63_c00238{left:237.420000px;}
.x7d_c00238{left:240.420000px;}
.xdd_c00238{left:241.500000px;}
.x5b_c00238{left:243.000000px;}
.x31_c00238{left:244.500000px;}
.xf4_c00238{left:247.500000px;}
.x41_c00238{left:250.500000px;}
.x6b_c00238{left:252.000000px;}
.x4b_c00238{left:254.145000px;}
.x5_c00238{left:256.500000px;}
.x8f_c00238{left:257.580000px;}
.x3a_c00238{left:259.500000px;}
.x4c_c00238{left:262.500000px;}
.x64_c00238{left:265.500000px;}
.x24_c00238{left:268.500000px;}
.xcd_c00238{left:269.580000px;}
.xa9_c00238{left:271.920000px;}
.x13_c00238{left:273.000000px;}
.xe8_c00238{left:274.920000px;}
.xa4_c00238{left:276.000000px;}
.x7e_c00238{left:277.500000px;}
.xda_c00238{left:280.080000px;}
.x4d_c00238{left:282.000000px;}
.xba_c00238{left:283.080000px;}
.xea_c00238{left:286.080000px;}
.x9b_c00238{left:288.000000px;}
.x25_c00238{left:289.500000px;}
.xb0_c00238{left:291.000000px;}
.x1e_c00238{left:294.000000px;}
.x90_c00238{left:295.080000px;}
.xee_c00238{left:298.920000px;}
.xce_c00238{left:300.420000px;}
.x42_c00238{left:303.000000px;}
.x54_c00238{left:304.500000px;}
.x9c_c00238{left:306.420000px;}
.x7f_c00238{left:307.500000px;}
.x65_c00238{left:309.000000px;}
.xa_c00238{left:310.500000px;}
.xd4_c00238{left:312.420000px;}
.x4e_c00238{left:316.500000px;}
.xc6_c00238{left:319.080000px;}
.xf5_c00238{left:321.000000px;}
.x26_c00238{left:322.500000px;}
.x43_c00238{left:323.580000px;}
.x5c_c00238{left:325.500000px;}
.x86_c00238{left:328.500000px;}
.xb_c00238{left:331.920000px;}
.xef_c00238{left:333.000000px;}
.xbb_c00238{left:334.500000px;}
.x32_c00238{left:336.000000px;}
.x9d_c00238{left:337.500000px;}
.xa5_c00238{left:340.080000px;}
.x74_c00238{left:345.000000px;}
.x14_c00238{left:346.920000px;}
.x6_c00238{left:348.000000px;}
.x5d_c00238{left:349.500000px;}
.xc_c00238{left:350.580000px;}
.xf9_c00238{left:352.500000px;}
.xe3_c00238{left:355.500000px;}
.xd5_c00238{left:360.000000px;}
.x1f_c00238{left:361.500000px;}
.xb1_c00238{left:363.420000px;}
.x75_c00238{left:364.920000px;}
.x6c_c00238{left:366.000000px;}
.xe9_c00238{left:370.500000px;}
.x4f_c00238{left:372.000000px;}
.x3_c00238{left:373.080000px;}
.xe4_c00238{left:375.420000px;}
.x5e_c00238{left:376.500000px;}
.xf6_c00238{left:382.500000px;}
.x15_c00238{left:384.000000px;}
.xbc_c00238{left:387.000000px;}
.x20_c00238{left:388.080000px;}
.xcf_c00238{left:390.420000px;}
.x76_c00238{left:391.500000px;}
.x87_c00238{left:393.000000px;}
.x27_c00238{left:396.420000px;}
.x44_c00238{left:397.500000px;}
.xa6_c00238{left:398.580000px;}
.x6d_c00238{left:400.500000px;}
.x91_c00238{left:402.000000px;}
.x21_c00238{left:405.000000px;}
.x1_c00238{left:407.580000px;}
.xfa_c00238{left:409.500000px;}
.xaa_c00238{left:410.580000px;}
.x7_c00238{left:412.500000px;}
.x33_c00238{left:414.000000px;}
.xc7_c00238{left:415.920000px;}
.xa7_c00238{left:418.500000px;}
.x66_c00238{left:420.000000px;}
.x22_c00238{left:421.920000px;}
.x77_c00238{left:423.420000px;}
.x82_c00238{left:424.500000px;}
.x97_c00238{left:427.920000px;}
.xd_c00238{left:429.420000px;}
.xbd_c00238{left:430.500000px;}
.x28_c00238{left:432.000000px;}
.x4_c00238{left:433.080000px;}
.x92_c00238{left:435.000000px;}
.x9e_c00238{left:436.920000px;}
.x45_c00238{left:438.855000px;}
.xc0_c00238{left:445.500000px;}
.xe_c00238{left:447.000000px;}
.x6e_c00238{left:448.500000px;}
.x3b_c00238{left:450.000000px;}
.x55_c00238{left:453.420000px;}
.x80_c00238{left:454.500000px;}
.x29_c00238{left:456.420000px;}
.xab_c00238{left:457.920000px;}
.xb2_c00238{left:461.145000px;}
.x88_c00238{left:466.500000px;}
.x67_c00238{left:468.420000px;}
.xd0_c00238{left:470.580000px;}
.x34_c00238{left:472.080000px;}
.xbe_c00238{left:474.000000px;}
.xc1_c00238{left:478.500000px;}
.x16_c00238{left:481.080000px;}
.x56_c00238{left:483.000000px;}
.xf_c00238{left:484.500000px;}
.x81_c00238{left:490.500000px;}
.x78_c00238{left:492.420000px;}
.xc8_c00238{left:495.000000px;}
.x68_c00238{left:496.500000px;}
.x17_c00238{left:497.580000px;}
.x8_c00238{left:500.580000px;}
.x2a_c00238{left:504.420000px;}
.x50_c00238{left:508.080000px;}
.x3c_c00238{left:511.920000px;}
.xde_c00238{left:514.920000px;}
.x93_c00238{left:516.000000px;}
.xac_c00238{left:517.500000px;}
.x6f_c00238{left:518.580000px;}
.xd1_c00238{left:522.000000px;}
.x35_c00238{left:527.580000px;}
.x10_c00238{left:529.080000px;}
.xb3_c00238{left:530.580000px;}
.x9f_c00238{left:532.920000px;}
.xf7_c00238{left:534.000000px;}
.xdf_c00238{left:535.500000px;}
.x89_c00238{left:537.000000px;}
.xdb_c00238{left:541.920000px;}
.x57_c00238{left:545.580000px;}
.xd6_c00238{left:550.500000px;}
.x79_c00238{left:551.580000px;}
.x3d_c00238{left:553.080000px;}
.x2b_c00238{left:556.920000px;}
.xeb_c00238{left:558.000000px;}
.xc9_c00238{left:559.080000px;}
.xfb_c00238{left:561.000000px;}
.xa0_c00238{left:562.500000px;}
.xf0_c00238{left:565.080000px;}
.x18_c00238{left:567.000000px;}
.x36_c00238{left:569.580000px;}
.x46_c00238{left:572.580000px;}
.x2c_c00238{left:578.355000px;}
.x98_c00238{left:579.420000px;}
.xca_c00238{left:580.920000px;}
.x7a_c00238{left:582.000000px;}
.x5f_c00238{left:583.500000px;}
.xd7_c00238{left:588.420000px;}
.x9_c00238{left:590.775000px;}
.x83_c00238{left:593.580000px;}
.xd2_c00238{left:598.080000px;}
.x3e_c00238{left:600.000000px;}
.xad_c00238{left:601.080000px;}
.x47_c00238{left:603.000000px;}
.xc2_c00238{left:604.500000px;}
.x99_c00238{left:605.580000px;}
.xb4_c00238{left:608.775000px;}
.x8a_c00238{left:610.500000px;}
.x94_c00238{left:613.500000px;}
.xcb_c00238{left:615.000000px;}
.xa1_c00238{left:616.080000px;}
.xfc_c00238{left:617.145000px;}
.x19_c00238{left:618.420000px;}
.xe5_c00238{left:621.000000px;}
.x3f_c00238{left:622.920000px;}
.x8b_c00238{left:628.500000px;}
.xa8_c00238{left:630.000000px;}
.x70_c00238{left:633.000000px;}
.x40_c00238{left:635.580000px;}
.xd3_c00238{left:637.500000px;}
.xf1_c00238{left:639.000000px;}
.x69_c00238{left:643.500000px;}
.xe0_c00238{left:645.000000px;}
.x58_c00238{left:646.080000px;}
.xae_c00238{left:649.500000px;}
.xb5_c00238{left:650.775000px;}
.x84_c00238{left:652.080000px;}
.x8c_c00238{left:653.580000px;}
.x37_c00238{left:655.920000px;}
.x60_c00238{left:660.000000px;}
.xf8_c00238{left:661.500000px;}
.x95_c00238{left:664.080000px;}
.x51_c00238{left:666.000000px;}
.xc3_c00238{left:669.000000px;}
.x85_c00238{left:670.500000px;}
.xe1_c00238{left:672.000000px;}
.xfd_c00238{left:673.500000px;}
.xaf_c00238{left:675.000000px;}
.xdc_c00238{left:679.080000px;}
.x48_c00238{left:682.080000px;}
.x2d_c00238{left:684.000000px;}
.xb6_c00238{left:685.500000px;}
.x71_c00238{left:687.000000px;}
.xa2_c00238{left:688.080000px;}
.xf2_c00238{left:696.420000px;}
.x38_c00238{left:697.500000px;}
.x52_c00238{left:698.580000px;}
.x59_c00238{left:700.500000px;}
.x7b_c00238{left:703.500000px;}
.x2_c00238{left:706.080000px;}
.x72_c00238{left:708.000000px;}
.xfe_c00238{left:709.080000px;}
.x61_c00238{left:711.000000px;}
.x1a_c00238{left:715.920000px;}
.x6a_c00238{left:720.420000px;}
.xec_c00238{left:726.000000px;}
@media print{
.v0_c00238{vertical-align:0.000000pt;}
.ls0_c00238{letter-spacing:0.000000pt;}
.ws0_c00238{word-spacing:0.000000pt;}
.fs7_c00238{font-size:3.040000pt;}
.fs6_c00238{font-size:12.106667pt;}
.fs0_c00238{font-size:16.640000pt;}
.fs5_c00238{font-size:18.133333pt;}
.fs2_c00238{font-size:22.666667pt;}
.fs1_c00238{font-size:25.706667pt;}
.fs4_c00238{font-size:28.746667pt;}
.fs3_c00238{font-size:31.733333pt;}
.fs8_c00238{font-size:34.773333pt;}
.y0_c00238{bottom:0.000000pt;}
.yda_c00238{bottom:222.640000pt;}
.ydc_c00238{bottom:223.026667pt;}
.ydb_c00238{bottom:223.973333pt;}
.yd7_c00238{bottom:234.640000pt;}
.yd5_c00238{bottom:235.400000pt;}
.yd3_c00238{bottom:235.600000pt;}
.yd6_c00238{bottom:236.360000pt;}
.yd4_c00238{bottom:237.306667pt;}
.yd9_c00238{bottom:237.893333pt;}
.yd8_c00238{bottom:238.266667pt;}
.ycf_c00238{bottom:248.933333pt;}
.yce_c00238{bottom:249.306667pt;}
.yd2_c00238{bottom:249.693333pt;}
.yd0_c00238{bottom:250.640000pt;}
.yd1_c00238{bottom:251.600000pt;}
.yca_c00238{bottom:261.306667pt;}
.yc8_c00238{bottom:262.266667pt;}
.ycd_c00238{bottom:263.026667pt;}
.ycc_c00238{bottom:263.226667pt;}
.yc9_c00238{bottom:263.973333pt;}
.ycb_c00238{bottom:264.933333pt;}
.yc7_c00238{bottom:275.026667pt;}
.yc4_c00238{bottom:276.360000pt;}
.yc5_c00238{bottom:277.506667pt;}
.yc6_c00238{bottom:278.266667pt;}
.yc0_c00238{bottom:288.733333pt;}
.ybe_c00238{bottom:289.893333pt;}
.yc3_c00238{bottom:290.266667pt;}
.ybf_c00238{bottom:290.640000pt;}
.yc1_c00238{bottom:290.840000pt;}
.yc2_c00238{bottom:291.600000pt;}
.ybb_c00238{bottom:301.306667pt;}
.yba_c00238{bottom:301.693333pt;}
.ybd_c00238{bottom:303.026667pt;}
.ybc_c00238{bottom:303.600000pt;}
.yb9_c00238{bottom:303.973333pt;}
.yb6_c00238{bottom:315.400000pt;}
.yb5_c00238{bottom:316.360000pt;}
.yb3_c00238{bottom:316.560000pt;}
.yb8_c00238{bottom:316.933333pt;}
.yb4_c00238{bottom:317.306667pt;}
.yb7_c00238{bottom:318.266667pt;}
.yb2_c00238{bottom:335.773333pt;}
.yb1_c00238{bottom:337.693333pt;}
.yb0_c00238{bottom:339.026667pt;}
.yac_c00238{bottom:353.893333pt;}
.yae_c00238{bottom:354.066667pt;}
.yad_c00238{bottom:355.026667pt;}
.yaf_c00238{bottom:355.226667pt;}
.yab_c00238{bottom:355.973333pt;}
.ya5_c00238{bottom:370.440000pt;}
.ya7_c00238{bottom:371.773333pt;}
.ya6_c00238{bottom:372.360000pt;}
.yaa_c00238{bottom:372.560000pt;}
.ya9_c00238{bottom:372.733333pt;}
.ya8_c00238{bottom:373.693333pt;}
.ya3_c00238{bottom:387.773333pt;}
.ya1_c00238{bottom:388.733333pt;}
.ya4_c00238{bottom:389.106667pt;}
.ya0_c00238{bottom:390.066667pt;}
.ya2_c00238{bottom:391.026667pt;}
.y9c_c00238{bottom:407.026667pt;}
.y9f_c00238{bottom:407.226667pt;}
.y9d_c00238{bottom:407.400000pt;}
.y9e_c00238{bottom:407.973333pt;}
.y9b_c00238{bottom:408.360000pt;}
.y94_c00238{bottom:422.826667pt;}
.y97_c00238{bottom:423.026667pt;}
.y99_c00238{bottom:423.773333pt;}
.y95_c00238{bottom:423.973333pt;}
.y9a_c00238{bottom:424.733333pt;}
.y96_c00238{bottom:425.693333pt;}
.y98_c00238{bottom:425.893333pt;}
.y91_c00238{bottom:441.106667pt;}
.y8f_c00238{bottom:442.066667pt;}
.y90_c00238{bottom:442.640000pt;}
.y92_c00238{bottom:443.026667pt;}
.y93_c00238{bottom:443.973333pt;}
.y8a_c00238{bottom:458.440000pt;}
.y8b_c00238{bottom:459.400000pt;}
.y8d_c00238{bottom:460.360000pt;}
.y8e_c00238{bottom:460.560000pt;}
.y8c_c00238{bottom:461.306667pt;}
.y86_c00238{bottom:474.826667pt;}
.y82_c00238{bottom:475.773333pt;}
.y89_c00238{bottom:475.973333pt;}
.y84_c00238{bottom:477.306667pt;}
.y85_c00238{bottom:477.693333pt;}
.y83_c00238{bottom:477.893333pt;}
.y87_c00238{bottom:478.640000pt;}
.y88_c00238{bottom:479.026667pt;}
.y7f_c00238{bottom:493.106667pt;}
.y7e_c00238{bottom:494.440000pt;}
.y80_c00238{bottom:495.026667pt;}
.y81_c00238{bottom:496.360000pt;}
.y78_c00238{bottom:511.773333pt;}
.y7d_c00238{bottom:512.560000pt;}
.y7a_c00238{bottom:513.306667pt;}
.y79_c00238{bottom:513.693333pt;}
.y7c_c00238{bottom:513.893333pt;}
.y7b_c00238{bottom:514.640000pt;}
.y73_c00238{bottom:527.973333pt;}
.y72_c00238{bottom:529.106667pt;}
.y74_c00238{bottom:529.893333pt;}
.y76_c00238{bottom:530.640000pt;}
.y75_c00238{bottom:531.026667pt;}
.y77_c00238{bottom:531.973333pt;}
.y70_c00238{bottom:546.440000pt;}
.y71_c00238{bottom:547.226667pt;}
.y6f_c00238{bottom:547.973333pt;}
.y6e_c00238{bottom:548.360000pt;}
.y6a_c00238{bottom:563.773333pt;}
.y69_c00238{bottom:564.560000pt;}
.y6c_c00238{bottom:565.106667pt;}
.y68_c00238{bottom:565.693333pt;}
.y6d_c00238{bottom:566.066667pt;}
.y6b_c00238{bottom:567.026667pt;}
.y63_c00238{bottom:581.106667pt;}
.y65_c00238{bottom:582.440000pt;}
.y64_c00238{bottom:583.026667pt;}
.y62_c00238{bottom:584.360000pt;}
.y66_c00238{bottom:584.560000pt;}
.y67_c00238{bottom:585.306667pt;}
.y61_c00238{bottom:597.693333pt;}
.y5c_c00238{bottom:599.400000pt;}
.y5e_c00238{bottom:599.773333pt;}
.y60_c00238{bottom:600.733333pt;}
.y5f_c00238{bottom:601.306667pt;}
.y5d_c00238{bottom:601.693333pt;}
.y57_c00238{bottom:615.773333pt;}
.y5a_c00238{bottom:617.106667pt;}
.y59_c00238{bottom:617.306667pt;}
.y58_c00238{bottom:618.640000pt;}
.y56_c00238{bottom:619.026667pt;}
.y5b_c00238{bottom:619.973333pt;}
.y55_c00238{bottom:633.693333pt;}
.y54_c00238{bottom:634.440000pt;}
.y52_c00238{bottom:635.226667pt;}
.y51_c00238{bottom:635.973333pt;}
.y50_c00238{bottom:636.360000pt;}
.y53_c00238{bottom:636.560000pt;}
.y4f_c00238{bottom:651.773333pt;}
.y4e_c00238{bottom:652.733333pt;}
.y4d_c00238{bottom:653.693333pt;}
.y4c_c00238{bottom:669.106667pt;}
.y4b_c00238{bottom:671.226667pt;}
.y49_c00238{bottom:671.973333pt;}
.y4a_c00238{bottom:672.373333pt;}
.y46_c00238{bottom:687.600000pt;}
.y45_c00238{bottom:687.973333pt;}
.y47_c00238{bottom:688.360000pt;}
.y48_c00238{bottom:689.693333pt;}
.y43_c00238{bottom:703.773333pt;}
.y41_c00238{bottom:704.560000pt;}
.y42_c00238{bottom:704.733333pt;}
.y40_c00238{bottom:705.693333pt;}
.y44_c00238{bottom:705.893333pt;}
.y3d_c00238{bottom:721.106667pt;}
.y3b_c00238{bottom:721.306667pt;}
.y3f_c00238{bottom:722.066667pt;}
.y3e_c00238{bottom:722.440000pt;}
.y3c_c00238{bottom:723.026667pt;}
.y3a_c00238{bottom:723.973333pt;}
.y36_c00238{bottom:738.826667pt;}
.y38_c00238{bottom:739.400000pt;}
.y39_c00238{bottom:740.733333pt;}
.y37_c00238{bottom:741.693333pt;}
.y35_c00238{bottom:757.106667pt;}
.y32_c00238{bottom:759.026667pt;}
.y33_c00238{bottom:759.040000pt;}
.y34_c00238{bottom:759.973333pt;}
.y2f_c00238{bottom:773.693333pt;}
.y30_c00238{bottom:774.440000pt;}
.y31_c00238{bottom:775.400000pt;}
.y2d_c00238{bottom:791.773333pt;}
.y2b_c00238{bottom:792.560000pt;}
.y2e_c00238{bottom:792.733333pt;}
.y2a_c00238{bottom:793.693333pt;}
.y2c_c00238{bottom:793.706667pt;}
.y26_c00238{bottom:808.360000pt;}
.y24_c00238{bottom:809.106667pt;}
.y27_c00238{bottom:809.306667pt;}
.y25_c00238{bottom:810.066667pt;}
.y28_c00238{bottom:810.266667pt;}
.y29_c00238{bottom:810.440000pt;}
.y23_c00238{bottom:827.773333pt;}
.y1d_c00238{bottom:827.973333pt;}
.y1f_c00238{bottom:828.360000pt;}
.y1e_c00238{bottom:828.560000pt;}
.y20_c00238{bottom:828.733333pt;}
.y21_c00238{bottom:829.306667pt;}
.y22_c00238{bottom:829.693333pt;}
.y15_c00238{bottom:843.773333pt;}
.y17_c00238{bottom:845.693333pt;}
.y1c_c00238{bottom:845.893333pt;}
.y1b_c00238{bottom:846.066667pt;}
.y19_c00238{bottom:846.640000pt;}
.y18_c00238{bottom:847.026667pt;}
.y16_c00238{bottom:847.040000pt;}
.y1a_c00238{bottom:847.973333pt;}
.y11_c00238{bottom:865.693333pt;}
.y12_c00238{bottom:866.266667pt;}
.y13_c00238{bottom:866.640000pt;}
.y14_c00238{bottom:868.173333pt;}
.ye_c00238{bottom:878.066667pt;}
.yf_c00238{bottom:879.026667pt;}
.yd_c00238{bottom:879.973333pt;}
.y10_c00238{bottom:880.933333pt;}
.y9_c00238{bottom:895.600000pt;}
.yb_c00238{bottom:896.360000pt;}
.ya_c00238{bottom:896.733333pt;}
.yc_c00238{bottom:896.933333pt;}
.y8_c00238{bottom:898.266667pt;}
.y5_c00238{bottom:917.106667pt;}
.y7_c00238{bottom:918.066667pt;}
.y6_c00238{bottom:918.640000pt;}
.y4_c00238{bottom:945.693333pt;}
.y3_c00238{bottom:946.640000pt;}
.y2_c00238{bottom:977.693333pt;}
.y1_c00238{bottom:980.560000pt;}
.h8_c00238{height:3.739141pt;}
.h7_c00238{height:14.890964pt;}
.h1_c00238{height:20.466875pt;}
.h6_c00238{height:22.303646pt;}
.h3_c00238{height:27.879557pt;}
.h2_c00238{height:31.618698pt;}
.h5_c00238{height:35.357839pt;}
.h4_c00238{height:39.031380pt;}
.h9_c00238{height:42.770521pt;}
.h0_c00238{height:1186.666667pt;}
.w0_c00238{width:782.666667pt;}
.x0_c00238{left:0.000000pt;}
.xc4_c00238{left:134.666667pt;}
.x1b_c00238{left:136.000000pt;}
.xd8_c00238{left:136.960000pt;}
.xe6_c00238{left:146.666667pt;}
.x11_c00238{left:148.000000pt;}
.x23_c00238{left:149.706667pt;}
.x39_c00238{left:150.666667pt;}
.x2e_c00238{left:152.000000pt;}
.xe2_c00238{left:153.333333pt;}
.xa3_c00238{left:159.040000pt;}
.x62_c00238{left:161.333333pt;}
.x2f_c00238{left:164.000000pt;}
.x7c_c00238{left:165.706667pt;}
.xb7_c00238{left:166.666667pt;}
.x49_c00238{left:168.960000pt;}
.xc5_c00238{left:170.666667pt;}
.xd9_c00238{left:173.333333pt;}
.xff_c00238{left:174.666667pt;}
.x5a_c00238{left:175.626667pt;}
.xb8_c00238{left:178.666667pt;}
.x8d_c00238{left:180.000000pt;}
.xe7_c00238{left:180.960000pt;}
.x1c_c00238{left:183.040000pt;}
.xf3_c00238{left:184.000000pt;}
.x12_c00238{left:185.333333pt;}
.xbf_c00238{left:186.666667pt;}
.x4a_c00238{left:190.666667pt;}
.x9a_c00238{left:192.000000pt;}
.x30_c00238{left:193.706667pt;}
.x53_c00238{left:196.373333pt;}
.x1d_c00238{left:197.706667pt;}
.x8e_c00238{left:200.000000pt;}
.xed_c00238{left:200.960000pt;}
.x73_c00238{left:202.666667pt;}
.xcc_c00238{left:204.960000pt;}
.x96_c00238{left:206.666667pt;}
.xb9_c00238{left:208.000000pt;}
.x63_c00238{left:211.040000pt;}
.x7d_c00238{left:213.706667pt;}
.xdd_c00238{left:214.666667pt;}
.x5b_c00238{left:216.000000pt;}
.x31_c00238{left:217.333333pt;}
.xf4_c00238{left:220.000000pt;}
.x41_c00238{left:222.666667pt;}
.x6b_c00238{left:224.000000pt;}
.x4b_c00238{left:225.906667pt;}
.x5_c00238{left:228.000000pt;}
.x8f_c00238{left:228.960000pt;}
.x3a_c00238{left:230.666667pt;}
.x4c_c00238{left:233.333333pt;}
.x64_c00238{left:236.000000pt;}
.x24_c00238{left:238.666667pt;}
.xcd_c00238{left:239.626667pt;}
.xa9_c00238{left:241.706667pt;}
.x13_c00238{left:242.666667pt;}
.xe8_c00238{left:244.373333pt;}
.xa4_c00238{left:245.333333pt;}
.x7e_c00238{left:246.666667pt;}
.xda_c00238{left:248.960000pt;}
.x4d_c00238{left:250.666667pt;}
.xba_c00238{left:251.626667pt;}
.xea_c00238{left:254.293333pt;}
.x9b_c00238{left:256.000000pt;}
.x25_c00238{left:257.333333pt;}
.xb0_c00238{left:258.666667pt;}
.x1e_c00238{left:261.333333pt;}
.x90_c00238{left:262.293333pt;}
.xee_c00238{left:265.706667pt;}
.xce_c00238{left:267.040000pt;}
.x42_c00238{left:269.333333pt;}
.x54_c00238{left:270.666667pt;}
.x9c_c00238{left:272.373333pt;}
.x7f_c00238{left:273.333333pt;}
.x65_c00238{left:274.666667pt;}
.xa_c00238{left:276.000000pt;}
.xd4_c00238{left:277.706667pt;}
.x4e_c00238{left:281.333333pt;}
.xc6_c00238{left:283.626667pt;}
.xf5_c00238{left:285.333333pt;}
.x26_c00238{left:286.666667pt;}
.x43_c00238{left:287.626667pt;}
.x5c_c00238{left:289.333333pt;}
.x86_c00238{left:292.000000pt;}
.xb_c00238{left:295.040000pt;}
.xef_c00238{left:296.000000pt;}
.xbb_c00238{left:297.333333pt;}
.x32_c00238{left:298.666667pt;}
.x9d_c00238{left:300.000000pt;}
.xa5_c00238{left:302.293333pt;}
.x74_c00238{left:306.666667pt;}
.x14_c00238{left:308.373333pt;}
.x6_c00238{left:309.333333pt;}
.x5d_c00238{left:310.666667pt;}
.xc_c00238{left:311.626667pt;}
.xf9_c00238{left:313.333333pt;}
.xe3_c00238{left:316.000000pt;}
.xd5_c00238{left:320.000000pt;}
.x1f_c00238{left:321.333333pt;}
.xb1_c00238{left:323.040000pt;}
.x75_c00238{left:324.373333pt;}
.x6c_c00238{left:325.333333pt;}
.xe9_c00238{left:329.333333pt;}
.x4f_c00238{left:330.666667pt;}
.x3_c00238{left:331.626667pt;}
.xe4_c00238{left:333.706667pt;}
.x5e_c00238{left:334.666667pt;}
.xf6_c00238{left:340.000000pt;}
.x15_c00238{left:341.333333pt;}
.xbc_c00238{left:344.000000pt;}
.x20_c00238{left:344.960000pt;}
.xcf_c00238{left:347.040000pt;}
.x76_c00238{left:348.000000pt;}
.x87_c00238{left:349.333333pt;}
.x27_c00238{left:352.373333pt;}
.x44_c00238{left:353.333333pt;}
.xa6_c00238{left:354.293333pt;}
.x6d_c00238{left:356.000000pt;}
.x91_c00238{left:357.333333pt;}
.x21_c00238{left:360.000000pt;}
.x1_c00238{left:362.293333pt;}
.xfa_c00238{left:364.000000pt;}
.xaa_c00238{left:364.960000pt;}
.x7_c00238{left:366.666667pt;}
.x33_c00238{left:368.000000pt;}
.xc7_c00238{left:369.706667pt;}
.xa7_c00238{left:372.000000pt;}
.x66_c00238{left:373.333333pt;}
.x22_c00238{left:375.040000pt;}
.x77_c00238{left:376.373333pt;}
.x82_c00238{left:377.333333pt;}
.x97_c00238{left:380.373333pt;}
.xd_c00238{left:381.706667pt;}
.xbd_c00238{left:382.666667pt;}
.x28_c00238{left:384.000000pt;}
.x4_c00238{left:384.960000pt;}
.x92_c00238{left:386.666667pt;}
.x9e_c00238{left:388.373333pt;}
.x45_c00238{left:390.093333pt;}
.xc0_c00238{left:396.000000pt;}
.xe_c00238{left:397.333333pt;}
.x6e_c00238{left:398.666667pt;}
.x3b_c00238{left:400.000000pt;}
.x55_c00238{left:403.040000pt;}
.x80_c00238{left:404.000000pt;}
.x29_c00238{left:405.706667pt;}
.xab_c00238{left:407.040000pt;}
.xb2_c00238{left:409.906667pt;}
.x88_c00238{left:414.666667pt;}
.x67_c00238{left:416.373333pt;}
.xd0_c00238{left:418.293333pt;}
.x34_c00238{left:419.626667pt;}
.xbe_c00238{left:421.333333pt;}
.xc1_c00238{left:425.333333pt;}
.x16_c00238{left:427.626667pt;}
.x56_c00238{left:429.333333pt;}
.xf_c00238{left:430.666667pt;}
.x81_c00238{left:436.000000pt;}
.x78_c00238{left:437.706667pt;}
.xc8_c00238{left:440.000000pt;}
.x68_c00238{left:441.333333pt;}
.x17_c00238{left:442.293333pt;}
.x8_c00238{left:444.960000pt;}
.x2a_c00238{left:448.373333pt;}
.x50_c00238{left:451.626667pt;}
.x3c_c00238{left:455.040000pt;}
.xde_c00238{left:457.706667pt;}
.x93_c00238{left:458.666667pt;}
.xac_c00238{left:460.000000pt;}
.x6f_c00238{left:460.960000pt;}
.xd1_c00238{left:464.000000pt;}
.x35_c00238{left:468.960000pt;}
.x10_c00238{left:470.293333pt;}
.xb3_c00238{left:471.626667pt;}
.x9f_c00238{left:473.706667pt;}
.xf7_c00238{left:474.666667pt;}
.xdf_c00238{left:476.000000pt;}
.x89_c00238{left:477.333333pt;}
.xdb_c00238{left:481.706667pt;}
.x57_c00238{left:484.960000pt;}
.xd6_c00238{left:489.333333pt;}
.x79_c00238{left:490.293333pt;}
.x3d_c00238{left:491.626667pt;}
.x2b_c00238{left:495.040000pt;}
.xeb_c00238{left:496.000000pt;}
.xc9_c00238{left:496.960000pt;}
.xfb_c00238{left:498.666667pt;}
.xa0_c00238{left:500.000000pt;}
.xf0_c00238{left:502.293333pt;}
.x18_c00238{left:504.000000pt;}
.x36_c00238{left:506.293333pt;}
.x46_c00238{left:508.960000pt;}
.x2c_c00238{left:514.093333pt;}
.x98_c00238{left:515.040000pt;}
.xca_c00238{left:516.373333pt;}
.x7a_c00238{left:517.333333pt;}
.x5f_c00238{left:518.666667pt;}
.xd7_c00238{left:523.040000pt;}
.x9_c00238{left:525.133333pt;}
.x83_c00238{left:527.626667pt;}
.xd2_c00238{left:531.626667pt;}
.x3e_c00238{left:533.333333pt;}
.xad_c00238{left:534.293333pt;}
.x47_c00238{left:536.000000pt;}
.xc2_c00238{left:537.333333pt;}
.x99_c00238{left:538.293333pt;}
.xb4_c00238{left:541.133333pt;}
.x8a_c00238{left:542.666667pt;}
.x94_c00238{left:545.333333pt;}
.xcb_c00238{left:546.666667pt;}
.xa1_c00238{left:547.626667pt;}
.xfc_c00238{left:548.573333pt;}
.x19_c00238{left:549.706667pt;}
.xe5_c00238{left:552.000000pt;}
.x3f_c00238{left:553.706667pt;}
.x8b_c00238{left:558.666667pt;}
.xa8_c00238{left:560.000000pt;}
.x70_c00238{left:562.666667pt;}
.x40_c00238{left:564.960000pt;}
.xd3_c00238{left:566.666667pt;}
.xf1_c00238{left:568.000000pt;}
.x69_c00238{left:572.000000pt;}
.xe0_c00238{left:573.333333pt;}
.x58_c00238{left:574.293333pt;}
.xae_c00238{left:577.333333pt;}
.xb5_c00238{left:578.466667pt;}
.x84_c00238{left:579.626667pt;}
.x8c_c00238{left:580.960000pt;}
.x37_c00238{left:583.040000pt;}
.x60_c00238{left:586.666667pt;}
.xf8_c00238{left:588.000000pt;}
.x95_c00238{left:590.293333pt;}
.x51_c00238{left:592.000000pt;}
.xc3_c00238{left:594.666667pt;}
.x85_c00238{left:596.000000pt;}
.xe1_c00238{left:597.333333pt;}
.xfd_c00238{left:598.666667pt;}
.xaf_c00238{left:600.000000pt;}
.xdc_c00238{left:603.626667pt;}
.x48_c00238{left:606.293333pt;}
.x2d_c00238{left:608.000000pt;}
.xb6_c00238{left:609.333333pt;}
.x71_c00238{left:610.666667pt;}
.xa2_c00238{left:611.626667pt;}
.xf2_c00238{left:619.040000pt;}
.x38_c00238{left:620.000000pt;}
.x52_c00238{left:620.960000pt;}
.x59_c00238{left:622.666667pt;}
.x7b_c00238{left:625.333333pt;}
.x2_c00238{left:627.626667pt;}
.x72_c00238{left:629.333333pt;}
.xfe_c00238{left:630.293333pt;}
.x61_c00238{left:632.000000pt;}
.x1a_c00238{left:636.373333pt;}
.x6a_c00238{left:640.373333pt;}
.xec_c00238{left:645.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fb21c4b5db5551263bbbbd7a.woff2')format("woff");}.ff1_c00239{font-family:ff1_c00239;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf7_c00239{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m106_c00239{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m3b_c00239{transform:matrix(0.348794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348794,0.000000,0.000000,0.250000,0,0);}
.m1a_c00239{transform:matrix(0.350104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350104,0.000000,0.000000,0.250000,0,0);}
.m44_c00239{transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);}
.m6d_c00239{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.mfb_c00239{transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);}
.mf_c00239{transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);}
.m61_c00239{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mfa_c00239{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.me_c00239{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m4d_c00239{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.md9_c00239{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m50_c00239{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.mf3_c00239{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m5f_c00239{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m63_c00239{transform:matrix(0.389954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389954,0.000000,0.000000,0.250000,0,0);}
.m39_c00239{transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);}
.ma3_c00239{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m4a_c00239{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m91_c00239{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);}
.mee_c00239{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.mdc_c00239{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.mcd_c00239{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mf5_c00239{transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);}
.m69_c00239{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m92_c00239{transform:matrix(0.408359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408359,0.000000,0.000000,0.250000,0,0);}
.mae_c00239{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m93_c00239{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m33_c00239{transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);}
.md1_c00239{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m9a_c00239{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m49_c00239{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.mb9_c00239{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m6f_c00239{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mde_c00239{transform:matrix(0.416028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416028,0.000000,0.000000,0.250000,0,0);}
.mdd_c00239{transform:matrix(0.417059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417059,0.000000,0.000000,0.250000,0,0);}
.meb_c00239{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.mf1_c00239{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m57_c00239{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mb7_c00239{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m43_c00239{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m7a_c00239{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m10c_c00239{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m2d_c00239{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m2e_c00239{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.mac_c00239{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m3c_c00239{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m8_c00239{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m53_c00239{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m84_c00239{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.me4_c00239{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.mbe_c00239{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m107_c00239{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.mec_c00239{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m22_c00239{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.me0_c00239{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.ma1_c00239{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m3e_c00239{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m51_c00239{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.m56_c00239{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mdf_c00239{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m100_c00239{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m6c_c00239{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.mc0_c00239{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mf4_c00239{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m2_c00239{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m1b_c00239{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.m78_c00239{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m1e_c00239{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m41_c00239{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m72_c00239{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m103_c00239{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.mf9_c00239{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m10b_c00239{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.m23_c00239{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.md6_c00239{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m68_c00239{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.md7_c00239{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m34_c00239{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.m87_c00239{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mc9_c00239{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mad_c00239{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m46_c00239{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m104_c00239{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m35_c00239{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m2a_c00239{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.mca_c00239{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.me9_c00239{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m26_c00239{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.mff_c00239{transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);}
.m83_c00239{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m13_c00239{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.m4_c00239{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m40_c00239{transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);}
.m31_c00239{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m4b_c00239{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.me7_c00239{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m36_c00239{transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);}
.mf6_c00239{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m105_c00239{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.m5_c00239{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m52_c00239{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m58_c00239{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m2b_c00239{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.mcc_c00239{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m97_c00239{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m45_c00239{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mb3_c00239{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m70_c00239{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m14_c00239{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m38_c00239{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mc1_c00239{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mbf_c00239{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m3a_c00239{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_c00239{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mbd_c00239{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.me8_c00239{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mb8_c00239{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m37_c00239{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.md0_c00239{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m94_c00239{transform:matrix(0.507780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507780,0.000000,0.000000,0.250000,0,0);}
.mfd_c00239{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mbb_c00239{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m11_c00239{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m59_c00239{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mc5_c00239{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.md2_c00239{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m67_c00239{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m77_c00239{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mc8_c00239{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.ma5_c00239{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.me5_c00239{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m10_c00239{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m108_c00239{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m62_c00239{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.md5_c00239{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m7_c00239{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.mb4_c00239{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.md8_c00239{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m82_c00239{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mb2_c00239{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m12_c00239{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);}
.m98_c00239{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.me1_c00239{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m7f_c00239{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m6_c00239{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mba_c00239{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m6b_c00239{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m29_c00239{transform:matrix(0.532353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532353,0.000000,0.000000,0.250000,0,0);}
.m64_c00239{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m10a_c00239{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m9e_c00239{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.md_c00239{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m65_c00239{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m27_c00239{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.maa_c00239{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mb5_c00239{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m8d_c00239{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mc7_c00239{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m1d_c00239{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m76_c00239{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m73_c00239{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mce_c00239{transform:matrix(0.541667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541667,0.000000,0.000000,0.250000,0,0);}
.m7b_c00239{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m79_c00239{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mab_c00239{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m7e_c00239{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m17_c00239{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.mfe_c00239{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m2f_c00239{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.maf_c00239{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m8e_c00239{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mf0_c00239{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.ma0_c00239{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m8f_c00239{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m96_c00239{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m6e_c00239{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m9b_c00239{transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);}
.med_c00239{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mf8_c00239{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m3_c00239{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m4c_c00239{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m95_c00239{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m9d_c00239{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);}
.ma9_c00239{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m71_c00239{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mb_c00239{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m28_c00239{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.mf2_c00239{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m25_c00239{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.mcf_c00239{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m109_c00239{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mc6_c00239{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m60_c00239{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.md4_c00239{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m102_c00239{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.mea_c00239{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m5c_c00239{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m75_c00239{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m6a_c00239{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m9f_c00239{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m48_c00239{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m88_c00239{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m20_c00239{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m89_c00239{transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);}
.m3f_c00239{transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);}
.m8a_c00239{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m4e_c00239{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m5e_c00239{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m66_c00239{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.ma7_c00239{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.m55_c00239{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);}
.mdb_c00239{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m18_c00239{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.mc2_c00239{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m86_c00239{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.mcb_c00239{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m81_c00239{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m5b_c00239{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.ma2_c00239{transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);}
.mb0_c00239{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m30_c00239{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m47_c00239{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mfc_c00239{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m0_c00239{transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);}
.m19_c00239{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);}
.m99_c00239{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);}
.m101_c00239{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m1_c00239{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.mda_c00239{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m3d_c00239{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.ma6_c00239{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m1f_c00239{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m9c_c00239{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.me6_c00239{transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);}
.m42_c00239{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m7d_c00239{transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);}
.m32_c00239{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m5d_c00239{transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);}
.ma8_c00239{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.mb1_c00239{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m16_c00239{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m7c_c00239{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m2c_c00239{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m9_c00239{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.m21_c00239{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m15_c00239{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m85_c00239{transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);}
.m1c_c00239{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.me3_c00239{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mef_c00239{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.me2_c00239{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.ma_c00239{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);}
.mc4_c00239{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.md3_c00239{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mc3_c00239{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.ma4_c00239{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m8b_c00239{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m74_c00239{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m10d_c00239{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m80_c00239{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m90_c00239{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m8c_c00239{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mb6_c00239{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m5a_c00239{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m4f_c00239{transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);}
.m24_c00239{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.mc_c00239{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m54_c00239{transform:matrix(2.425439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.425439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.425439,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;}
}
.ws1_c00239{word-spacing:-6.909801px;}
.ws0_c00239{word-spacing:-5.147127px;}
.ws2_c00239{word-spacing:0.000000px;}
.fc0_c00239{color:transparent;}
.fs7_c00239{font-size:3.420000px;}
.fs4_c00239{font-size:13.620000px;}
.fs5_c00239{font-size:18.720000px;}
.fs0_c00239{font-size:20.400000px;}
.fs1_c00239{font-size:25.500000px;}
.fs2_c00239{font-size:28.920000px;}
.fs3_c00239{font-size:32.340000px;}
.fs6_c00239{font-size:35.700000px;}
.fs8_c00239{font-size:39.120000px;}
.y0_c00239{bottom:0.000000px;}
.ye4_c00239{bottom:250.905000px;}
.ye7_c00239{bottom:251.745000px;}
.ye8_c00239{bottom:252.630000px;}
.ye2_c00239{bottom:252.825000px;}
.ye5_c00239{bottom:253.245000px;}
.ye3_c00239{bottom:253.905000px;}
.ye9_c00239{bottom:254.130000px;}
.ye6_c00239{bottom:255.405000px;}
.ye1_c00239{bottom:272.325000px;}
.ydf_c00239{bottom:273.405000px;}
.ye0_c00239{bottom:274.905000px;}
.ydc_c00239{bottom:290.130000px;}
.ydb_c00239{bottom:290.970000px;}
.yd9_c00239{bottom:292.245000px;}
.yde_c00239{bottom:293.130000px;}
.ydd_c00239{bottom:293.970000px;}
.yda_c00239{bottom:294.405000px;}
.yd8_c00239{bottom:311.325000px;}
.yd7_c00239{bottom:311.745000px;}
.yd4_c00239{bottom:313.470000px;}
.yd3_c00239{bottom:313.905000px;}
.yd6_c00239{bottom:314.130000px;}
.yd5_c00239{bottom:315.405000px;}
.yd2_c00239{bottom:331.245000px;}
.yce_c00239{bottom:332.325000px;}
.yd0_c00239{bottom:332.745000px;}
.ycf_c00239{bottom:333.405000px;}
.yd1_c00239{bottom:334.470000px;}
.yc7_c00239{bottom:350.745000px;}
.ycc_c00239{bottom:350.970000px;}
.yc9_c00239{bottom:352.245000px;}
.ycb_c00239{bottom:352.905000px;}
.ycd_c00239{bottom:353.130000px;}
.yc8_c00239{bottom:354.405000px;}
.yca_c00239{bottom:355.470000px;}
.yc5_c00239{bottom:370.245000px;}
.yc6_c00239{bottom:371.325000px;}
.yc4_c00239{bottom:371.745000px;}
.yc2_c00239{bottom:372.405000px;}
.yc3_c00239{bottom:373.905000px;}
.ybf_c00239{bottom:391.245000px;}
.yc0_c00239{bottom:393.405000px;}
.yc1_c00239{bottom:394.905000px;}
.yba_c00239{bottom:410.745000px;}
.ybd_c00239{bottom:412.245000px;}
.ybb_c00239{bottom:412.905000px;}
.ybe_c00239{bottom:413.130000px;}
.ybc_c00239{bottom:414.405000px;}
.yb9_c00239{bottom:431.130000px;}
.yb4_c00239{bottom:431.325000px;}
.yb6_c00239{bottom:431.745000px;}
.yb7_c00239{bottom:432.405000px;}
.yb8_c00239{bottom:433.470000px;}
.yb5_c00239{bottom:433.905000px;}
.yb3_c00239{bottom:450.825000px;}
.yb0_c00239{bottom:451.245000px;}
.yae_c00239{bottom:451.905000px;}
.yaf_c00239{bottom:452.130000px;}
.yb2_c00239{bottom:452.970000px;}
.yb1_c00239{bottom:453.405000px;}
.yab_c00239{bottom:469.905000px;}
.yad_c00239{bottom:470.550000px;}
.ya8_c00239{bottom:470.745000px;}
.yac_c00239{bottom:472.470000px;}
.ya9_c00239{bottom:472.905000px;}
.yaa_c00239{bottom:473.130000px;}
.ya7_c00239{bottom:487.905000px;}
.ya3_c00239{bottom:489.180000px;}
.ya6_c00239{bottom:490.245000px;}
.ya4_c00239{bottom:492.405000px;}
.ya5_c00239{bottom:492.630000px;}
.ya2_c00239{bottom:508.470000px;}
.y9d_c00239{bottom:509.745000px;}
.ya0_c00239{bottom:509.970000px;}
.ya1_c00239{bottom:510.630000px;}
.y9f_c00239{bottom:511.905000px;}
.y9e_c00239{bottom:512.970000px;}
.y9c_c00239{bottom:529.245000px;}
.y9b_c00239{bottom:530.970000px;}
.y99_c00239{bottom:531.405000px;}
.y9a_c00239{bottom:531.630000px;}
.y96_c00239{bottom:547.905000px;}
.y97_c00239{bottom:550.245000px;}
.y98_c00239{bottom:551.130000px;}
.y95_c00239{bottom:552.405000px;}
.y90_c00239{bottom:569.745000px;}
.y94_c00239{bottom:570.405000px;}
.y93_c00239{bottom:570.825000px;}
.y92_c00239{bottom:571.470000px;}
.y91_c00239{bottom:571.905000px;}
.y8e_c00239{bottom:589.245000px;}
.y8f_c00239{bottom:589.905000px;}
.y8d_c00239{bottom:590.130000px;}
.y8b_c00239{bottom:590.970000px;}
.y8c_c00239{bottom:591.405000px;}
.y8a_c00239{bottom:592.470000px;}
.y89_c00239{bottom:608.745000px;}
.y88_c00239{bottom:609.630000px;}
.y87_c00239{bottom:610.905000px;}
.y86_c00239{bottom:628.245000px;}
.y85_c00239{bottom:629.130000px;}
.y84_c00239{bottom:630.405000px;}
.y81_c00239{bottom:647.325000px;}
.y80_c00239{bottom:647.745000px;}
.y7e_c00239{bottom:647.970000px;}
.y82_c00239{bottom:648.825000px;}
.y83_c00239{bottom:649.470000px;}
.y7d_c00239{bottom:649.905000px;}
.y7f_c00239{bottom:650.130000px;}
.y7c_c00239{bottom:667.245000px;}
.y79_c00239{bottom:669.405000px;}
.y7a_c00239{bottom:669.630000px;}
.y7b_c00239{bottom:670.905000px;}
.y74_c00239{bottom:685.905000px;}
.y78_c00239{bottom:687.825000px;}
.y76_c00239{bottom:688.245000px;}
.y77_c00239{bottom:688.905000px;}
.y73_c00239{bottom:689.130000px;}
.y75_c00239{bottom:690.405000px;}
.y71_c00239{bottom:706.245000px;}
.y72_c00239{bottom:707.325000px;}
.y70_c00239{bottom:707.745000px;}
.y6d_c00239{bottom:708.405000px;}
.y6f_c00239{bottom:708.630000px;}
.y6e_c00239{bottom:709.470000px;}
.y6c_c00239{bottom:725.745000px;}
.y6b_c00239{bottom:727.905000px;}
.y69_c00239{bottom:728.970000px;}
.y6a_c00239{bottom:729.405000px;}
.y64_c00239{bottom:744.405000px;}
.y68_c00239{bottom:745.245000px;}
.y62_c00239{bottom:745.680000px;}
.y63_c00239{bottom:746.745000px;}
.y67_c00239{bottom:747.405000px;}
.y66_c00239{bottom:747.630000px;}
.y65_c00239{bottom:748.905000px;}
.y61_c00239{bottom:766.245000px;}
.y60_c00239{bottom:767.325000px;}
.y5e_c00239{bottom:768.405000px;}
.y5f_c00239{bottom:768.630000px;}
.y5d_c00239{bottom:785.745000px;}
.y5c_c00239{bottom:786.825000px;}
.y5a_c00239{bottom:787.905000px;}
.y5b_c00239{bottom:788.130000px;}
.y59_c00239{bottom:788.970000px;}
.y58_c00239{bottom:803.970000px;}
.y56_c00239{bottom:805.245000px;}
.y57_c00239{bottom:806.970000px;}
.y54_c00239{bottom:807.405000px;}
.y55_c00239{bottom:807.630000px;}
.y53_c00239{bottom:824.745000px;}
.y51_c00239{bottom:825.825000px;}
.y52_c00239{bottom:826.245000px;}
.y50_c00239{bottom:826.905000px;}
.y4f_c00239{bottom:844.680000px;}
.y4d_c00239{bottom:845.745000px;}
.y4e_c00239{bottom:847.905000px;}
.y48_c00239{bottom:865.245000px;}
.y4c_c00239{bottom:866.130000px;}
.y4b_c00239{bottom:867.405000px;}
.y49_c00239{bottom:867.420000px;}
.y4a_c00239{bottom:868.470000px;}
.y47_c00239{bottom:886.905000px;}
.y45_c00239{bottom:900.825000px;}
.y42_c00239{bottom:901.905000px;}
.y41_c00239{bottom:902.130000px;}
.y43_c00239{bottom:902.970000px;}
.y44_c00239{bottom:903.195000px;}
.y46_c00239{bottom:904.050000px;}
.y3d_c00239{bottom:914.970000px;}
.y39_c00239{bottom:915.825000px;}
.y3e_c00239{bottom:916.905000px;}
.y38_c00239{bottom:917.130000px;}
.y3b_c00239{bottom:917.325000px;}
.y40_c00239{bottom:917.970000px;}
.y3f_c00239{bottom:918.195000px;}
.y3c_c00239{bottom:919.050000px;}
.y3a_c00239{bottom:919.470000px;}
.y36_c00239{bottom:931.470000px;}
.y35_c00239{bottom:931.905000px;}
.y33_c00239{bottom:932.130000px;}
.y37_c00239{bottom:932.970000px;}
.y34_c00239{bottom:934.050000px;}
.y31_c00239{bottom:945.825000px;}
.y2e_c00239{bottom:946.050000px;}
.y30_c00239{bottom:946.905000px;}
.y32_c00239{bottom:947.970000px;}
.y2f_c00239{bottom:949.050000px;}
.y2a_c00239{bottom:960.825000px;}
.y28_c00239{bottom:961.050000px;}
.y2b_c00239{bottom:961.905000px;}
.y29_c00239{bottom:962.970000px;}
.y2d_c00239{bottom:963.195000px;}
.y2c_c00239{bottom:964.050000px;}
.y27_c00239{bottom:975.825000px;}
.y26_c00239{bottom:976.905000px;}
.y23_c00239{bottom:977.550000px;}
.y24_c00239{bottom:977.970000px;}
.y25_c00239{bottom:979.050000px;}
.y22_c00239{bottom:990.405000px;}
.y20_c00239{bottom:990.825000px;}
.y1c_c00239{bottom:991.470000px;}
.y1e_c00239{bottom:991.905000px;}
.y21_c00239{bottom:992.550000px;}
.y1d_c00239{bottom:992.970000px;}
.y1f_c00239{bottom:993.195000px;}
.y14_c00239{bottom:1004.970000px;}
.y1b_c00239{bottom:1005.405000px;}
.y17_c00239{bottom:1005.825000px;}
.y19_c00239{bottom:1006.905000px;}
.y16_c00239{bottom:1007.130000px;}
.y15_c00239{bottom:1007.550000px;}
.y1a_c00239{bottom:1007.970000px;}
.y18_c00239{bottom:1008.195000px;}
.y11_c00239{bottom:1019.325000px;}
.y12_c00239{bottom:1020.405000px;}
.y10_c00239{bottom:1021.470000px;}
.yf_c00239{bottom:1021.695000px;}
.y13_c00239{bottom:1022.550000px;}
.yc_c00239{bottom:1035.405000px;}
.yd_c00239{bottom:1035.630000px;}
.ye_c00239{bottom:1036.470000px;}
.yb_c00239{bottom:1037.550000px;}
.ya_c00239{bottom:1049.325000px;}
.y9_c00239{bottom:1051.470000px;}
.y2_c00239{bottom:1063.470000px;}
.y5_c00239{bottom:1064.325000px;}
.y4_c00239{bottom:1065.405000px;}
.y7_c00239{bottom:1066.050000px;}
.y3_c00239{bottom:1066.470000px;}
.y8_c00239{bottom:1066.695000px;}
.y6_c00239{bottom:1067.550000px;}
.y1_c00239{bottom:1102.050000px;}
.h8_c00239{height:4.206533px;}
.h5_c00239{height:16.752334px;}
.h6_c00239{height:23.025234px;}
.h1_c00239{height:25.091602px;}
.h2_c00239{height:31.364502px;}
.h3_c00239{height:35.571035px;}
.h4_c00239{height:39.777568px;}
.h7_c00239{height:43.910303px;}
.h9_c00239{height:48.116836px;}
.h0_c00239{height:1335.000000px;}
.w0_c00239{width:880.500000px;}
.x0_c00239{left:0.000000px;}
.x2_c00239{left:150.420000px;}
.x1f_c00239{left:151.500000px;}
.x9a_c00239{left:153.000000px;}
.x40_c00239{left:162.000000px;}
.x20_c00239{left:163.500000px;}
.x3_c00239{left:164.580000px;}
.x56_c00239{left:166.920000px;}
.x103_c00239{left:169.080000px;}
.xb9_c00239{left:172.500000px;}
.x69_c00239{left:178.080000px;}
.x11_c00239{left:179.580000px;}
.x4_c00239{left:182.580000px;}
.x8c_c00239{left:184.500000px;}
.xc7_c00239{left:186.000000px;}
.x85_c00239{left:189.000000px;}
.x57_c00239{left:190.500000px;}
.xbf_c00239{left:192.420000px;}
.x52_c00239{left:195.000000px;}
.x21_c00239{left:197.580000px;}
.xad_c00239{left:200.580000px;}
.x41_c00239{left:202.080000px;}
.x30_c00239{left:205.500000px;}
.x12_c00239{left:207.000000px;}
.x9b_c00239{left:208.920000px;}
.xa2_c00239{left:210.000000px;}
.x11a_c00239{left:214.080000px;}
.x7c_c00239{left:218.580000px;}
.xae_c00239{left:220.500000px;}
.x5_c00239{left:222.645000px;}
.x22_c00239{left:224.580000px;}
.x26_c00239{left:226.500000px;}
.xba_c00239{left:228.000000px;}
.x73_c00239{left:229.500000px;}
.x4c_c00239{left:231.000000px;}
.x58_c00239{left:232.920000px;}
.x42_c00239{left:235.920000px;}
.xcd_c00239{left:237.000000px;}
.x86_c00239{left:238.920000px;}
.x115_c00239{left:240.000000px;}
.xe9_c00239{left:241.920000px;}
.x94_c00239{left:243.000000px;}
.xb6_c00239{left:246.420000px;}
.xe0_c00239{left:247.500000px;}
.xfe_c00239{left:252.420000px;}
.x8d_c00239{left:253.500000px;}
.x5f_c00239{left:255.000000px;}
.x13_c00239{left:257.580000px;}
.x27_c00239{left:259.500000px;}
.x7d_c00239{left:262.920000px;}
.xda_c00239{left:264.000000px;}
.x53_c00239{left:265.500000px;}
.x116_c00239{left:266.580000px;}
.x6_c00239{left:268.080000px;}
.x23_c00239{left:270.000000px;}
.x11b_c00239{left:271.500000px;}
.x109_c00239{left:273.420000px;}
.x6a_c00239{left:274.500000px;}
.x39_c00239{left:276.645000px;}
.xff_c00239{left:279.420000px;}
.xb7_c00239{left:280.920000px;}
.xc0_c00239{left:282.420000px;}
.xce_c00239{left:283.500000px;}
.xbb_c00239{left:285.420000px;}
.x95_c00239{left:289.920000px;}
.xf0_c00239{left:291.000000px;}
.x54_c00239{left:293.580000px;}
.xcf_c00239{left:297.420000px;}
.x8e_c00239{left:298.500000px;}
.x24_c00239{left:300.420000px;}
.xaf_c00239{left:303.000000px;}
.x7_c00239{left:304.920000px;}
.x4d_c00239{left:306.420000px;}
.x14_c00239{left:307.500000px;}
.x6b_c00239{left:309.420000px;}
.x74_c00239{left:310.500000px;}
.xf5_c00239{left:312.420000px;}
.xe7_c00239{left:313.500000px;}
.x59_c00239{left:316.500000px;}
.xdb_c00239{left:318.420000px;}
.x55_c00239{left:319.500000px;}
.x43_c00239{left:322.080000px;}
.x28_c00239{left:325.500000px;}
.x25_c00239{left:327.000000px;}
.xbc_c00239{left:328.500000px;}
.x104_c00239{left:330.000000px;}
.xd5_c00239{left:331.500000px;}
.x4e_c00239{left:334.500000px;}
.x87_c00239{left:337.500000px;}
.x15_c00239{left:339.000000px;}
.x5a_c00239{left:340.500000px;}
.x60_c00239{left:342.000000px;}
.xdc_c00239{left:344.580000px;}
.x105_c00239{left:345.645000px;}
.xb0_c00239{left:347.580000px;}
.x31_c00239{left:349.080000px;}
.xf1_c00239{left:350.580000px;}
.xa3_c00239{left:352.080000px;}
.x9c_c00239{left:354.000000px;}
.xea_c00239{left:355.500000px;}
.xe6_c00239{left:357.420000px;}
.x3a_c00239{left:359.580000px;}
.x117_c00239{left:361.080000px;}
.x8f_c00239{left:363.000000px;}
.x44_c00239{left:364.500000px;}
.x10a_c00239{left:365.580000px;}
.x8_c00239{left:367.080000px;}
.x4f_c00239{left:369.420000px;}
.xa4_c00239{left:370.500000px;}
.x16_c00239{left:372.000000px;}
.xeb_c00239{left:373.500000px;}
.x29_c00239{left:375.000000px;}
.x6c_c00239{left:378.420000px;}
.xdd_c00239{left:380.580000px;}
.xc1_c00239{left:382.920000px;}
.x90_c00239{left:384.000000px;}
.x9_c00239{left:385.500000px;}
.x9d_c00239{left:387.000000px;}
.x61_c00239{left:388.500000px;}
.xd6_c00239{left:390.000000px;}
.x11c_c00239{left:393.855000px;}
.x2a_c00239{left:396.000000px;}
.xa5_c00239{left:397.080000px;}
.x45_c00239{left:399.420000px;}
.x3b_c00239{left:401.580000px;}
.xf6_c00239{left:403.080000px;}
.x1_c00239{left:406.500000px;}
.x106_c00239{left:408.000000px;}
.xd0_c00239{left:409.500000px;}
.xc2_c00239{left:411.000000px;}
.x17_c00239{left:414.000000px;}
.x10b_c00239{left:415.500000px;}
.x32_c00239{left:417.000000px;}
.xe1_c00239{left:418.500000px;}
.x75_c00239{left:420.000000px;}
.x100_c00239{left:424.080000px;}
.x33_c00239{left:427.500000px;}
.x9e_c00239{left:429.000000px;}
.xfc_c00239{left:432.000000px;}
.xa6_c00239{left:435.000000px;}
.x62_c00239{left:438.420000px;}
.x18_c00239{left:439.920000px;}
.xec_c00239{left:441.000000px;}
.x76_c00239{left:442.920000px;}
.x88_c00239{left:444.420000px;}
.xf7_c00239{left:445.500000px;}
.xb1_c00239{left:448.500000px;}
.xa_c00239{left:450.000000px;}
.xa7_c00239{left:451.500000px;}
.x108_c00239{left:453.000000px;}
.x50_c00239{left:456.000000px;}
.xc8_c00239{left:457.920000px;}
.x6d_c00239{left:459.000000px;}
.x2b_c00239{left:461.145000px;}
.x10c_c00239{left:462.420000px;}
.x9f_c00239{left:464.580000px;}
.x77_c00239{left:468.420000px;}
.xf2_c00239{left:469.500000px;}
.x101_c00239{left:471.000000px;}
.x34_c00239{left:472.080000px;}
.x3c_c00239{left:474.645000px;}
.xf8_c00239{left:476.580000px;}
.xa8_c00239{left:478.080000px;}
.x7e_c00239{left:480.420000px;}
.x89_c00239{left:481.920000px;}
.x63_c00239{left:484.500000px;}
.x46_c00239{left:486.000000px;}
.x10d_c00239{left:487.500000px;}
.xb_c00239{left:490.920000px;}
.x91_c00239{left:495.000000px;}
.x118_c00239{left:496.080000px;}
.x78_c00239{left:498.420000px;}
.x19_c00239{left:499.920000px;}
.xd7_c00239{left:501.000000px;}
.xe2_c00239{left:504.000000px;}
.x2c_c00239{left:505.080000px;}
.xbd_c00239{left:508.080000px;}
.xc_c00239{left:509.580000px;}
.xc3_c00239{left:512.580000px;}
.xfd_c00239{left:514.500000px;}
.x1a_c00239{left:515.580000px;}
.x3d_c00239{left:517.920000px;}
.xf9_c00239{left:519.000000px;}
.xb2_c00239{left:520.500000px;}
.x6e_c00239{left:522.000000px;}
.x7f_c00239{left:523.080000px;}
.x5b_c00239{left:524.145000px;}
.xbe_c00239{left:526.500000px;}
.xf3_c00239{left:528.420000px;}
.x10e_c00239{left:529.500000px;}
.x47_c00239{left:530.580000px;}
.xc4_c00239{left:532.920000px;}
.x92_c00239{left:534.000000px;}
.x2d_c00239{left:537.000000px;}
.xa0_c00239{left:541.500000px;}
.x35_c00239{left:543.000000px;}
.xd1_c00239{left:544.500000px;}
.x6f_c00239{left:546.000000px;}
.x64_c00239{left:547.080000px;}
.x8a_c00239{left:550.500000px;}
.x96_c00239{left:553.920000px;}
.x80_c00239{left:555.000000px;}
.x79_c00239{left:556.080000px;}
.x48_c00239{left:557.580000px;}
.x51_c00239{left:559.500000px;}
.xa1_c00239{left:561.000000px;}
.xe8_c00239{left:562.080000px;}
.xc9_c00239{left:564.000000px;}
.x5c_c00239{left:567.000000px;}
.xa9_c00239{left:568.080000px;}
.xb8_c00239{left:570.420000px;}
.xb3_c00239{left:571.920000px;}
.x70_c00239{left:574.080000px;}
.x112_c00239{left:576.000000px;}
.x10f_c00239{left:577.920000px;}
.x5d_c00239{left:579.000000px;}
.xe3_c00239{left:580.080000px;}
.x97_c00239{left:582.000000px;}
.x36_c00239{left:585.000000px;}
.xed_c00239{left:586.500000px;}
.xaa_c00239{left:588.000000px;}
.x65_c00239{left:589.500000px;}
.x1b_c00239{left:592.920000px;}
.x7a_c00239{left:594.000000px;}
.x37_c00239{left:595.500000px;}
.xde_c00239{left:596.580000px;}
.x2e_c00239{left:598.080000px;}
.xd_c00239{left:599.580000px;}
.x49_c00239{left:601.500000px;}
.x81_c00239{left:603.000000px;}
.x7b_c00239{left:607.920000px;}
.x3e_c00239{left:609.000000px;}
.x1c_c00239{left:610.080000px;}
.xe_c00239{left:612.000000px;}
.xca_c00239{left:613.500000px;}
.xab_c00239{left:614.580000px;}
.x66_c00239{left:619.080000px;}
.x71_c00239{left:621.000000px;}
.xb4_c00239{left:623.580000px;}
.x110_c00239{left:625.080000px;}
.x93_c00239{left:626.580000px;}
.x38_c00239{left:630.000000px;}
.x4a_c00239{left:631.920000px;}
.xd8_c00239{left:634.500000px;}
.xc5_c00239{left:636.420000px;}
.xd2_c00239{left:637.500000px;}
.x5e_c00239{left:639.000000px;}
.x113_c00239{left:640.920000px;}
.xe4_c00239{left:642.420000px;}
.xee_c00239{left:643.500000px;}
.xac_c00239{left:644.580000px;}
.x67_c00239{left:646.500000px;}
.x2f_c00239{left:648.000000px;}
.x1d_c00239{left:649.080000px;}
.x98_c00239{left:652.920000px;}
.x82_c00239{left:654.000000px;}
.xb5_c00239{left:655.500000px;}
.x111_c00239{left:657.000000px;}
.x4b_c00239{left:658.500000px;}
.xf_c00239{left:659.580000px;}
.xfa_c00239{left:663.420000px;}
.x72_c00239{left:664.500000px;}
.xe5_c00239{left:667.080000px;}
.xd3_c00239{left:669.000000px;}
.xcb_c00239{left:672.000000px;}
.x1e_c00239{left:674.580000px;}
.x3f_c00239{left:677.580000px;}
.x102_c00239{left:679.500000px;}
.x8b_c00239{left:680.580000px;}
.x119_c00239{left:682.920000px;}
.x114_c00239{left:684.420000px;}
.x83_c00239{left:688.080000px;}
.x10_c00239{left:690.855000px;}
.xfb_c00239{left:691.920000px;}
.xf4_c00239{left:699.000000px;}
.x68_c00239{left:700.500000px;}
.xef_c00239{left:702.420000px;}
.xc6_c00239{left:703.500000px;}
.x84_c00239{left:706.920000px;}
.x107_c00239{left:708.000000px;}
.xd9_c00239{left:709.920000px;}
.xd4_c00239{left:714.000000px;}
.xcc_c00239{left:716.580000px;}
.xdf_c00239{left:720.000000px;}
.x99_c00239{left:721.500000px;}
@media print{
.v0_c00239{vertical-align:0.000000pt;}
.ls0_c00239{letter-spacing:0.000000pt;}
.ws1_c00239{word-spacing:-6.142045pt;}
.ws0_c00239{word-spacing:-4.575224pt;}
.ws2_c00239{word-spacing:0.000000pt;}
.fs7_c00239{font-size:3.040000pt;}
.fs4_c00239{font-size:12.106667pt;}
.fs5_c00239{font-size:16.640000pt;}
.fs0_c00239{font-size:18.133333pt;}
.fs1_c00239{font-size:22.666667pt;}
.fs2_c00239{font-size:25.706667pt;}
.fs3_c00239{font-size:28.746667pt;}
.fs6_c00239{font-size:31.733333pt;}
.fs8_c00239{font-size:34.773333pt;}
.y0_c00239{bottom:0.000000pt;}
.ye4_c00239{bottom:223.026667pt;}
.ye7_c00239{bottom:223.773333pt;}
.ye8_c00239{bottom:224.560000pt;}
.ye2_c00239{bottom:224.733333pt;}
.ye5_c00239{bottom:225.106667pt;}
.ye3_c00239{bottom:225.693333pt;}
.ye9_c00239{bottom:225.893333pt;}
.ye6_c00239{bottom:227.026667pt;}
.ye1_c00239{bottom:242.066667pt;}
.ydf_c00239{bottom:243.026667pt;}
.ye0_c00239{bottom:244.360000pt;}
.ydc_c00239{bottom:257.893333pt;}
.ydb_c00239{bottom:258.640000pt;}
.yd9_c00239{bottom:259.773333pt;}
.yde_c00239{bottom:260.560000pt;}
.ydd_c00239{bottom:261.306667pt;}
.yda_c00239{bottom:261.693333pt;}
.yd8_c00239{bottom:276.733333pt;}
.yd7_c00239{bottom:277.106667pt;}
.yd4_c00239{bottom:278.640000pt;}
.yd3_c00239{bottom:279.026667pt;}
.yd6_c00239{bottom:279.226667pt;}
.yd5_c00239{bottom:280.360000pt;}
.yd2_c00239{bottom:294.440000pt;}
.yce_c00239{bottom:295.400000pt;}
.yd0_c00239{bottom:295.773333pt;}
.ycf_c00239{bottom:296.360000pt;}
.yd1_c00239{bottom:297.306667pt;}
.yc7_c00239{bottom:311.773333pt;}
.ycc_c00239{bottom:311.973333pt;}
.yc9_c00239{bottom:313.106667pt;}
.ycb_c00239{bottom:313.693333pt;}
.ycd_c00239{bottom:313.893333pt;}
.yc8_c00239{bottom:315.026667pt;}
.yca_c00239{bottom:315.973333pt;}
.yc5_c00239{bottom:329.106667pt;}
.yc6_c00239{bottom:330.066667pt;}
.yc4_c00239{bottom:330.440000pt;}
.yc2_c00239{bottom:331.026667pt;}
.yc3_c00239{bottom:332.360000pt;}
.ybf_c00239{bottom:347.773333pt;}
.yc0_c00239{bottom:349.693333pt;}
.yc1_c00239{bottom:351.026667pt;}
.yba_c00239{bottom:365.106667pt;}
.ybd_c00239{bottom:366.440000pt;}
.ybb_c00239{bottom:367.026667pt;}
.ybe_c00239{bottom:367.226667pt;}
.ybc_c00239{bottom:368.360000pt;}
.yb9_c00239{bottom:383.226667pt;}
.yb4_c00239{bottom:383.400000pt;}
.yb6_c00239{bottom:383.773333pt;}
.yb7_c00239{bottom:384.360000pt;}
.yb8_c00239{bottom:385.306667pt;}
.yb5_c00239{bottom:385.693333pt;}
.yb3_c00239{bottom:400.733333pt;}
.yb0_c00239{bottom:401.106667pt;}
.yae_c00239{bottom:401.693333pt;}
.yaf_c00239{bottom:401.893333pt;}
.yb2_c00239{bottom:402.640000pt;}
.yb1_c00239{bottom:403.026667pt;}
.yab_c00239{bottom:417.693333pt;}
.yad_c00239{bottom:418.266667pt;}
.ya8_c00239{bottom:418.440000pt;}
.yac_c00239{bottom:419.973333pt;}
.ya9_c00239{bottom:420.360000pt;}
.yaa_c00239{bottom:420.560000pt;}
.ya7_c00239{bottom:433.693333pt;}
.ya3_c00239{bottom:434.826667pt;}
.ya6_c00239{bottom:435.773333pt;}
.ya4_c00239{bottom:437.693333pt;}
.ya5_c00239{bottom:437.893333pt;}
.ya2_c00239{bottom:451.973333pt;}
.y9d_c00239{bottom:453.106667pt;}
.ya0_c00239{bottom:453.306667pt;}
.ya1_c00239{bottom:453.893333pt;}
.y9f_c00239{bottom:455.026667pt;}
.y9e_c00239{bottom:455.973333pt;}
.y9c_c00239{bottom:470.440000pt;}
.y9b_c00239{bottom:471.973333pt;}
.y99_c00239{bottom:472.360000pt;}
.y9a_c00239{bottom:472.560000pt;}
.y96_c00239{bottom:487.026667pt;}
.y97_c00239{bottom:489.106667pt;}
.y98_c00239{bottom:489.893333pt;}
.y95_c00239{bottom:491.026667pt;}
.y90_c00239{bottom:506.440000pt;}
.y94_c00239{bottom:507.026667pt;}
.y93_c00239{bottom:507.400000pt;}
.y92_c00239{bottom:507.973333pt;}
.y91_c00239{bottom:508.360000pt;}
.y8e_c00239{bottom:523.773333pt;}
.y8f_c00239{bottom:524.360000pt;}
.y8d_c00239{bottom:524.560000pt;}
.y8b_c00239{bottom:525.306667pt;}
.y8c_c00239{bottom:525.693333pt;}
.y8a_c00239{bottom:526.640000pt;}
.y89_c00239{bottom:541.106667pt;}
.y88_c00239{bottom:541.893333pt;}
.y87_c00239{bottom:543.026667pt;}
.y86_c00239{bottom:558.440000pt;}
.y85_c00239{bottom:559.226667pt;}
.y84_c00239{bottom:560.360000pt;}
.y81_c00239{bottom:575.400000pt;}
.y80_c00239{bottom:575.773333pt;}
.y7e_c00239{bottom:575.973333pt;}
.y82_c00239{bottom:576.733333pt;}
.y83_c00239{bottom:577.306667pt;}
.y7d_c00239{bottom:577.693333pt;}
.y7f_c00239{bottom:577.893333pt;}
.y7c_c00239{bottom:593.106667pt;}
.y79_c00239{bottom:595.026667pt;}
.y7a_c00239{bottom:595.226667pt;}
.y7b_c00239{bottom:596.360000pt;}
.y74_c00239{bottom:609.693333pt;}
.y78_c00239{bottom:611.400000pt;}
.y76_c00239{bottom:611.773333pt;}
.y77_c00239{bottom:612.360000pt;}
.y73_c00239{bottom:612.560000pt;}
.y75_c00239{bottom:613.693333pt;}
.y71_c00239{bottom:627.773333pt;}
.y72_c00239{bottom:628.733333pt;}
.y70_c00239{bottom:629.106667pt;}
.y6d_c00239{bottom:629.693333pt;}
.y6f_c00239{bottom:629.893333pt;}
.y6e_c00239{bottom:630.640000pt;}
.y6c_c00239{bottom:645.106667pt;}
.y6b_c00239{bottom:647.026667pt;}
.y69_c00239{bottom:647.973333pt;}
.y6a_c00239{bottom:648.360000pt;}
.y64_c00239{bottom:661.693333pt;}
.y68_c00239{bottom:662.440000pt;}
.y62_c00239{bottom:662.826667pt;}
.y63_c00239{bottom:663.773333pt;}
.y67_c00239{bottom:664.360000pt;}
.y66_c00239{bottom:664.560000pt;}
.y65_c00239{bottom:665.693333pt;}
.y61_c00239{bottom:681.106667pt;}
.y60_c00239{bottom:682.066667pt;}
.y5e_c00239{bottom:683.026667pt;}
.y5f_c00239{bottom:683.226667pt;}
.y5d_c00239{bottom:698.440000pt;}
.y5c_c00239{bottom:699.400000pt;}
.y5a_c00239{bottom:700.360000pt;}
.y5b_c00239{bottom:700.560000pt;}
.y59_c00239{bottom:701.306667pt;}
.y58_c00239{bottom:714.640000pt;}
.y56_c00239{bottom:715.773333pt;}
.y57_c00239{bottom:717.306667pt;}
.y54_c00239{bottom:717.693333pt;}
.y55_c00239{bottom:717.893333pt;}
.y53_c00239{bottom:733.106667pt;}
.y51_c00239{bottom:734.066667pt;}
.y52_c00239{bottom:734.440000pt;}
.y50_c00239{bottom:735.026667pt;}
.y4f_c00239{bottom:750.826667pt;}
.y4d_c00239{bottom:751.773333pt;}
.y4e_c00239{bottom:753.693333pt;}
.y48_c00239{bottom:769.106667pt;}
.y4c_c00239{bottom:769.893333pt;}
.y4b_c00239{bottom:771.026667pt;}
.y49_c00239{bottom:771.040000pt;}
.y4a_c00239{bottom:771.973333pt;}
.y47_c00239{bottom:788.360000pt;}
.y45_c00239{bottom:800.733333pt;}
.y42_c00239{bottom:801.693333pt;}
.y41_c00239{bottom:801.893333pt;}
.y43_c00239{bottom:802.640000pt;}
.y44_c00239{bottom:802.840000pt;}
.y46_c00239{bottom:803.600000pt;}
.y3d_c00239{bottom:813.306667pt;}
.y39_c00239{bottom:814.066667pt;}
.y3e_c00239{bottom:815.026667pt;}
.y38_c00239{bottom:815.226667pt;}
.y3b_c00239{bottom:815.400000pt;}
.y40_c00239{bottom:815.973333pt;}
.y3f_c00239{bottom:816.173333pt;}
.y3c_c00239{bottom:816.933333pt;}
.y3a_c00239{bottom:817.306667pt;}
.y36_c00239{bottom:827.973333pt;}
.y35_c00239{bottom:828.360000pt;}
.y33_c00239{bottom:828.560000pt;}
.y37_c00239{bottom:829.306667pt;}
.y34_c00239{bottom:830.266667pt;}
.y31_c00239{bottom:840.733333pt;}
.y2e_c00239{bottom:840.933333pt;}
.y30_c00239{bottom:841.693333pt;}
.y32_c00239{bottom:842.640000pt;}
.y2f_c00239{bottom:843.600000pt;}
.y2a_c00239{bottom:854.066667pt;}
.y28_c00239{bottom:854.266667pt;}
.y2b_c00239{bottom:855.026667pt;}
.y29_c00239{bottom:855.973333pt;}
.y2d_c00239{bottom:856.173333pt;}
.y2c_c00239{bottom:856.933333pt;}
.y27_c00239{bottom:867.400000pt;}
.y26_c00239{bottom:868.360000pt;}
.y23_c00239{bottom:868.933333pt;}
.y24_c00239{bottom:869.306667pt;}
.y25_c00239{bottom:870.266667pt;}
.y22_c00239{bottom:880.360000pt;}
.y20_c00239{bottom:880.733333pt;}
.y1c_c00239{bottom:881.306667pt;}
.y1e_c00239{bottom:881.693333pt;}
.y21_c00239{bottom:882.266667pt;}
.y1d_c00239{bottom:882.640000pt;}
.y1f_c00239{bottom:882.840000pt;}
.y14_c00239{bottom:893.306667pt;}
.y1b_c00239{bottom:893.693333pt;}
.y17_c00239{bottom:894.066667pt;}
.y19_c00239{bottom:895.026667pt;}
.y16_c00239{bottom:895.226667pt;}
.y15_c00239{bottom:895.600000pt;}
.y1a_c00239{bottom:895.973333pt;}
.y18_c00239{bottom:896.173333pt;}
.y11_c00239{bottom:906.066667pt;}
.y12_c00239{bottom:907.026667pt;}
.y10_c00239{bottom:907.973333pt;}
.yf_c00239{bottom:908.173333pt;}
.y13_c00239{bottom:908.933333pt;}
.yc_c00239{bottom:920.360000pt;}
.yd_c00239{bottom:920.560000pt;}
.ye_c00239{bottom:921.306667pt;}
.yb_c00239{bottom:922.266667pt;}
.ya_c00239{bottom:932.733333pt;}
.y9_c00239{bottom:934.640000pt;}
.y2_c00239{bottom:945.306667pt;}
.y5_c00239{bottom:946.066667pt;}
.y4_c00239{bottom:947.026667pt;}
.y7_c00239{bottom:947.600000pt;}
.y3_c00239{bottom:947.973333pt;}
.y8_c00239{bottom:948.173333pt;}
.y6_c00239{bottom:948.933333pt;}
.y1_c00239{bottom:979.600000pt;}
.h8_c00239{height:3.739141pt;}
.h5_c00239{height:14.890964pt;}
.h6_c00239{height:20.466875pt;}
.h1_c00239{height:22.303646pt;}
.h2_c00239{height:27.879557pt;}
.h3_c00239{height:31.618698pt;}
.h4_c00239{height:35.357839pt;}
.h7_c00239{height:39.031380pt;}
.h9_c00239{height:42.770521pt;}
.h0_c00239{height:1186.666667pt;}
.w0_c00239{width:782.666667pt;}
.x0_c00239{left:0.000000pt;}
.x2_c00239{left:133.706667pt;}
.x1f_c00239{left:134.666667pt;}
.x9a_c00239{left:136.000000pt;}
.x40_c00239{left:144.000000pt;}
.x20_c00239{left:145.333333pt;}
.x3_c00239{left:146.293333pt;}
.x56_c00239{left:148.373333pt;}
.x103_c00239{left:150.293333pt;}
.xb9_c00239{left:153.333333pt;}
.x69_c00239{left:158.293333pt;}
.x11_c00239{left:159.626667pt;}
.x4_c00239{left:162.293333pt;}
.x8c_c00239{left:164.000000pt;}
.xc7_c00239{left:165.333333pt;}
.x85_c00239{left:168.000000pt;}
.x57_c00239{left:169.333333pt;}
.xbf_c00239{left:171.040000pt;}
.x52_c00239{left:173.333333pt;}
.x21_c00239{left:175.626667pt;}
.xad_c00239{left:178.293333pt;}
.x41_c00239{left:179.626667pt;}
.x30_c00239{left:182.666667pt;}
.x12_c00239{left:184.000000pt;}
.x9b_c00239{left:185.706667pt;}
.xa2_c00239{left:186.666667pt;}
.x11a_c00239{left:190.293333pt;}
.x7c_c00239{left:194.293333pt;}
.xae_c00239{left:196.000000pt;}
.x5_c00239{left:197.906667pt;}
.x22_c00239{left:199.626667pt;}
.x26_c00239{left:201.333333pt;}
.xba_c00239{left:202.666667pt;}
.x73_c00239{left:204.000000pt;}
.x4c_c00239{left:205.333333pt;}
.x58_c00239{left:207.040000pt;}
.x42_c00239{left:209.706667pt;}
.xcd_c00239{left:210.666667pt;}
.x86_c00239{left:212.373333pt;}
.x115_c00239{left:213.333333pt;}
.xe9_c00239{left:215.040000pt;}
.x94_c00239{left:216.000000pt;}
.xb6_c00239{left:219.040000pt;}
.xe0_c00239{left:220.000000pt;}
.xfe_c00239{left:224.373333pt;}
.x8d_c00239{left:225.333333pt;}
.x5f_c00239{left:226.666667pt;}
.x13_c00239{left:228.960000pt;}
.x27_c00239{left:230.666667pt;}
.x7d_c00239{left:233.706667pt;}
.xda_c00239{left:234.666667pt;}
.x53_c00239{left:236.000000pt;}
.x116_c00239{left:236.960000pt;}
.x6_c00239{left:238.293333pt;}
.x23_c00239{left:240.000000pt;}
.x11b_c00239{left:241.333333pt;}
.x109_c00239{left:243.040000pt;}
.x6a_c00239{left:244.000000pt;}
.x39_c00239{left:245.906667pt;}
.xff_c00239{left:248.373333pt;}
.xb7_c00239{left:249.706667pt;}
.xc0_c00239{left:251.040000pt;}
.xce_c00239{left:252.000000pt;}
.xbb_c00239{left:253.706667pt;}
.x95_c00239{left:257.706667pt;}
.xf0_c00239{left:258.666667pt;}
.x54_c00239{left:260.960000pt;}
.xcf_c00239{left:264.373333pt;}
.x8e_c00239{left:265.333333pt;}
.x24_c00239{left:267.040000pt;}
.xaf_c00239{left:269.333333pt;}
.x7_c00239{left:271.040000pt;}
.x4d_c00239{left:272.373333pt;}
.x14_c00239{left:273.333333pt;}
.x6b_c00239{left:275.040000pt;}
.x74_c00239{left:276.000000pt;}
.xf5_c00239{left:277.706667pt;}
.xe7_c00239{left:278.666667pt;}
.x59_c00239{left:281.333333pt;}
.xdb_c00239{left:283.040000pt;}
.x55_c00239{left:284.000000pt;}
.x43_c00239{left:286.293333pt;}
.x28_c00239{left:289.333333pt;}
.x25_c00239{left:290.666667pt;}
.xbc_c00239{left:292.000000pt;}
.x104_c00239{left:293.333333pt;}
.xd5_c00239{left:294.666667pt;}
.x4e_c00239{left:297.333333pt;}
.x87_c00239{left:300.000000pt;}
.x15_c00239{left:301.333333pt;}
.x5a_c00239{left:302.666667pt;}
.x60_c00239{left:304.000000pt;}
.xdc_c00239{left:306.293333pt;}
.x105_c00239{left:307.240000pt;}
.xb0_c00239{left:308.960000pt;}
.x31_c00239{left:310.293333pt;}
.xf1_c00239{left:311.626667pt;}
.xa3_c00239{left:312.960000pt;}
.x9c_c00239{left:314.666667pt;}
.xea_c00239{left:316.000000pt;}
.xe6_c00239{left:317.706667pt;}
.x3a_c00239{left:319.626667pt;}
.x117_c00239{left:320.960000pt;}
.x8f_c00239{left:322.666667pt;}
.x44_c00239{left:324.000000pt;}
.x10a_c00239{left:324.960000pt;}
.x8_c00239{left:326.293333pt;}
.x4f_c00239{left:328.373333pt;}
.xa4_c00239{left:329.333333pt;}
.x16_c00239{left:330.666667pt;}
.xeb_c00239{left:332.000000pt;}
.x29_c00239{left:333.333333pt;}
.x6c_c00239{left:336.373333pt;}
.xdd_c00239{left:338.293333pt;}
.xc1_c00239{left:340.373333pt;}
.x90_c00239{left:341.333333pt;}
.x9_c00239{left:342.666667pt;}
.x9d_c00239{left:344.000000pt;}
.x61_c00239{left:345.333333pt;}
.xd6_c00239{left:346.666667pt;}
.x11c_c00239{left:350.093333pt;}
.x2a_c00239{left:352.000000pt;}
.xa5_c00239{left:352.960000pt;}
.x45_c00239{left:355.040000pt;}
.x3b_c00239{left:356.960000pt;}
.xf6_c00239{left:358.293333pt;}
.x1_c00239{left:361.333333pt;}
.x106_c00239{left:362.666667pt;}
.xd0_c00239{left:364.000000pt;}
.xc2_c00239{left:365.333333pt;}
.x17_c00239{left:368.000000pt;}
.x10b_c00239{left:369.333333pt;}
.x32_c00239{left:370.666667pt;}
.xe1_c00239{left:372.000000pt;}
.x75_c00239{left:373.333333pt;}
.x100_c00239{left:376.960000pt;}
.x33_c00239{left:380.000000pt;}
.x9e_c00239{left:381.333333pt;}
.xfc_c00239{left:384.000000pt;}
.xa6_c00239{left:386.666667pt;}
.x62_c00239{left:389.706667pt;}
.x18_c00239{left:391.040000pt;}
.xec_c00239{left:392.000000pt;}
.x76_c00239{left:393.706667pt;}
.x88_c00239{left:395.040000pt;}
.xf7_c00239{left:396.000000pt;}
.xb1_c00239{left:398.666667pt;}
.xa_c00239{left:400.000000pt;}
.xa7_c00239{left:401.333333pt;}
.x108_c00239{left:402.666667pt;}
.x50_c00239{left:405.333333pt;}
.xc8_c00239{left:407.040000pt;}
.x6d_c00239{left:408.000000pt;}
.x2b_c00239{left:409.906667pt;}
.x10c_c00239{left:411.040000pt;}
.x9f_c00239{left:412.960000pt;}
.x77_c00239{left:416.373333pt;}
.xf2_c00239{left:417.333333pt;}
.x101_c00239{left:418.666667pt;}
.x34_c00239{left:419.626667pt;}
.x3c_c00239{left:421.906667pt;}
.xf8_c00239{left:423.626667pt;}
.xa8_c00239{left:424.960000pt;}
.x7e_c00239{left:427.040000pt;}
.x89_c00239{left:428.373333pt;}
.x63_c00239{left:430.666667pt;}
.x46_c00239{left:432.000000pt;}
.x10d_c00239{left:433.333333pt;}
.xb_c00239{left:436.373333pt;}
.x91_c00239{left:440.000000pt;}
.x118_c00239{left:440.960000pt;}
.x78_c00239{left:443.040000pt;}
.x19_c00239{left:444.373333pt;}
.xd7_c00239{left:445.333333pt;}
.xe2_c00239{left:448.000000pt;}
.x2c_c00239{left:448.960000pt;}
.xbd_c00239{left:451.626667pt;}
.xc_c00239{left:452.960000pt;}
.xc3_c00239{left:455.626667pt;}
.xfd_c00239{left:457.333333pt;}
.x1a_c00239{left:458.293333pt;}
.x3d_c00239{left:460.373333pt;}
.xf9_c00239{left:461.333333pt;}
.xb2_c00239{left:462.666667pt;}
.x6e_c00239{left:464.000000pt;}
.x7f_c00239{left:464.960000pt;}
.x5b_c00239{left:465.906667pt;}
.xbe_c00239{left:468.000000pt;}
.xf3_c00239{left:469.706667pt;}
.x10e_c00239{left:470.666667pt;}
.x47_c00239{left:471.626667pt;}
.xc4_c00239{left:473.706667pt;}
.x92_c00239{left:474.666667pt;}
.x2d_c00239{left:477.333333pt;}
.xa0_c00239{left:481.333333pt;}
.x35_c00239{left:482.666667pt;}
.xd1_c00239{left:484.000000pt;}
.x6f_c00239{left:485.333333pt;}
.x64_c00239{left:486.293333pt;}
.x8a_c00239{left:489.333333pt;}
.x96_c00239{left:492.373333pt;}
.x80_c00239{left:493.333333pt;}
.x79_c00239{left:494.293333pt;}
.x48_c00239{left:495.626667pt;}
.x51_c00239{left:497.333333pt;}
.xa1_c00239{left:498.666667pt;}
.xe8_c00239{left:499.626667pt;}
.xc9_c00239{left:501.333333pt;}
.x5c_c00239{left:504.000000pt;}
.xa9_c00239{left:504.960000pt;}
.xb8_c00239{left:507.040000pt;}
.xb3_c00239{left:508.373333pt;}
.x70_c00239{left:510.293333pt;}
.x112_c00239{left:512.000000pt;}
.x10f_c00239{left:513.706667pt;}
.x5d_c00239{left:514.666667pt;}
.xe3_c00239{left:515.626667pt;}
.x97_c00239{left:517.333333pt;}
.x36_c00239{left:520.000000pt;}
.xed_c00239{left:521.333333pt;}
.xaa_c00239{left:522.666667pt;}
.x65_c00239{left:524.000000pt;}
.x1b_c00239{left:527.040000pt;}
.x7a_c00239{left:528.000000pt;}
.x37_c00239{left:529.333333pt;}
.xde_c00239{left:530.293333pt;}
.x2e_c00239{left:531.626667pt;}
.xd_c00239{left:532.960000pt;}
.x49_c00239{left:534.666667pt;}
.x81_c00239{left:536.000000pt;}
.x7b_c00239{left:540.373333pt;}
.x3e_c00239{left:541.333333pt;}
.x1c_c00239{left:542.293333pt;}
.xe_c00239{left:544.000000pt;}
.xca_c00239{left:545.333333pt;}
.xab_c00239{left:546.293333pt;}
.x66_c00239{left:550.293333pt;}
.x71_c00239{left:552.000000pt;}
.xb4_c00239{left:554.293333pt;}
.x110_c00239{left:555.626667pt;}
.x93_c00239{left:556.960000pt;}
.x38_c00239{left:560.000000pt;}
.x4a_c00239{left:561.706667pt;}
.xd8_c00239{left:564.000000pt;}
.xc5_c00239{left:565.706667pt;}
.xd2_c00239{left:566.666667pt;}
.x5e_c00239{left:568.000000pt;}
.x113_c00239{left:569.706667pt;}
.xe4_c00239{left:571.040000pt;}
.xee_c00239{left:572.000000pt;}
.xac_c00239{left:572.960000pt;}
.x67_c00239{left:574.666667pt;}
.x2f_c00239{left:576.000000pt;}
.x1d_c00239{left:576.960000pt;}
.x98_c00239{left:580.373333pt;}
.x82_c00239{left:581.333333pt;}
.xb5_c00239{left:582.666667pt;}
.x111_c00239{left:584.000000pt;}
.x4b_c00239{left:585.333333pt;}
.xf_c00239{left:586.293333pt;}
.xfa_c00239{left:589.706667pt;}
.x72_c00239{left:590.666667pt;}
.xe5_c00239{left:592.960000pt;}
.xd3_c00239{left:594.666667pt;}
.xcb_c00239{left:597.333333pt;}
.x1e_c00239{left:599.626667pt;}
.x3f_c00239{left:602.293333pt;}
.x102_c00239{left:604.000000pt;}
.x8b_c00239{left:604.960000pt;}
.x119_c00239{left:607.040000pt;}
.x114_c00239{left:608.373333pt;}
.x83_c00239{left:611.626667pt;}
.x10_c00239{left:614.093333pt;}
.xfb_c00239{left:615.040000pt;}
.xf4_c00239{left:621.333333pt;}
.x68_c00239{left:622.666667pt;}
.xef_c00239{left:624.373333pt;}
.xc6_c00239{left:625.333333pt;}
.x84_c00239{left:628.373333pt;}
.x107_c00239{left:629.333333pt;}
.xd9_c00239{left:631.040000pt;}
.xd4_c00239{left:634.666667pt;}
.xcc_c00239{left:636.960000pt;}
.xdf_c00239{left:640.000000pt;}
.x99_c00239{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_586649d66f5153626dbfaf7c.woff2')format("woff");}.ff1_c00240{font-family:ff1_c00240;line-height:1.688965;font-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_c00240{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.me2_c00240{transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);}
.m75_c00240{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.mf5_c00240{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m6e_c00240{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.md2_c00240{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m9e_c00240{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m5e_c00240{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m4c_c00240{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.me1_c00240{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.mb3_c00240{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m65_c00240{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mce_c00240{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m8c_c00240{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m5d_c00240{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m7c_c00240{transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);}
.mcc_c00240{transform:matrix(0.380252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380252,0.000000,0.000000,0.250000,0,0);}
.m3c_c00240{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m96_c00240{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m95_c00240{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m83_c00240{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m94_c00240{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m85_c00240{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m86_c00240{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mc0_c00240{transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);}
.mad_c00240{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.mec_c00240{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mdf_c00240{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.mf3_c00240{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.mc5_c00240{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m69_c00240{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m89_c00240{transform:matrix(0.398006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398006,0.000000,0.000000,0.250000,0,0);}
.m18_c00240{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m3d_c00240{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m8_c00240{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m7_c00240{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.md1_c00240{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m25_c00240{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m19_c00240{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mf8_c00240{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m68_c00240{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.me9_c00240{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mda_c00240{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.mef_c00240{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m32_c00240{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m34_c00240{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mf9_c00240{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.md0_c00240{transform:matrix(0.414110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414110,0.000000,0.000000,0.250000,0,0);}
.md7_c00240{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m37_c00240{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m99_c00240{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.mdb_c00240{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m8b_c00240{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m4e_c00240{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m4b_c00240{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mb_c00240{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m1c_c00240{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m6f_c00240{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m74_c00240{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m36_c00240{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m4f_c00240{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m91_c00240{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m6a_c00240{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.med_c00240{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.m46_c00240{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m33_c00240{transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);}
.m5b_c00240{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m29_c00240{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m8d_c00240{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.mbf_c00240{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m16_c00240{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mbc_c00240{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m51_c00240{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mde_c00240{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.ma9_c00240{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m84_c00240{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m58_c00240{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m22_c00240{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m9d_c00240{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.meb_c00240{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.mf4_c00240{transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);}
.md8_c00240{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mc3_c00240{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.mcd_c00240{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.mb9_c00240{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.mc2_c00240{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m40_c00240{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m9b_c00240{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m52_c00240{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m4d_c00240{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m43_c00240{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mb5_c00240{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mbe_c00240{transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);}
.mc8_c00240{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.mdd_c00240{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m49_c00240{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.mf2_c00240{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m64_c00240{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.m57_c00240{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m76_c00240{transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);}
.m8e_c00240{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.ma7_c00240{transform:matrix(0.476345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476345,0.000000,0.000000,0.250000,0,0);}
.m3f_c00240{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m53_c00240{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m9c_c00240{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.me0_c00240{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.m17_c00240{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m44_c00240{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.me4_c00240{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.ma2_c00240{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.m62_c00240{transform:matrix(0.489796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489796,0.000000,0.000000,0.250000,0,0);}
.m6c_c00240{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m6b_c00240{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m48_c00240{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m47_c00240{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m5_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);}
.m2a_c00240{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mba_c00240{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.ma3_c00240{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m30_c00240{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mfc_c00240{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.mf_c00240{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m2f_c00240{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m13_c00240{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m39_c00240{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.mc_c00240{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m80_c00240{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m1a_c00240{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mf1_c00240{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m73_c00240{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.me_c00240{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m38_c00240{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mac_c00240{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mdc_c00240{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.m7d_c00240{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.md4_c00240{transform:matrix(0.525510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525510,0.000000,0.000000,0.250000,0,0);}
.m93_c00240{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mc6_c00240{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m20_c00240{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m28_c00240{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m27_c00240{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mcb_c00240{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m6_c00240{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.ma4_c00240{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m9_c00240{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m87_c00240{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mbd_c00240{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.mb4_c00240{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m71_c00240{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m14_c00240{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m41_c00240{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m88_c00240{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m7f_c00240{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m1b_c00240{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.me8_c00240{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m9a_c00240{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m7e_c00240{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mb2_c00240{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.mcf_c00240{transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);}
.m31_c00240{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mb7_c00240{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m1e_c00240{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m2b_c00240{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m11_c00240{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.md9_c00240{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.md_c00240{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mfe_c00240{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.mab_c00240{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mb6_c00240{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m15_c00240{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m72_c00240{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m92_c00240{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m2_c00240{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mc1_c00240{transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);}
.ma_c00240{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mb8_c00240{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.me7_c00240{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.mb1_c00240{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m35_c00240{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);}
.m8f_c00240{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m2e_c00240{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m63_c00240{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mb0_c00240{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m4a_c00240{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m79_c00240{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m8a_c00240{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.mf6_c00240{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m23_c00240{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m42_c00240{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.md6_c00240{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m3b_c00240{transform:matrix(0.572356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572356,0.000000,0.000000,0.250000,0,0);}
.m3e_c00240{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.maa_c00240{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.mca_c00240{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m10_c00240{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mfd_c00240{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mee_c00240{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m5f_c00240{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.md5_c00240{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m54_c00240{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m2c_c00240{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.mae_c00240{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m3a_c00240{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m66_c00240{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m5c_c00240{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m90_c00240{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m67_c00240{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mf7_c00240{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.mc7_c00240{transform:matrix(0.606846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606846,0.000000,0.000000,0.250000,0,0);}
.m81_c00240{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m98_c00240{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m60_c00240{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.me6_c00240{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.m12_c00240{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mc9_c00240{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_c00240{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m24_c00240{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m7b_c00240{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.m1f_c00240{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.ma5_c00240{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m21_c00240{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m7a_c00240{transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);}
.m56_c00240{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m77_c00240{transform:matrix(0.659412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659412,0.000000,0.000000,0.250000,0,0);}
.m45_c00240{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.mbb_c00240{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m26_c00240{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m9f_c00240{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);}
.mf0_c00240{transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);}
.m0_c00240{transform:matrix(0.690705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690705,0.000000,0.000000,0.250000,0,0);}
.me3_c00240{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.maf_c00240{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.md3_c00240{transform:matrix(0.697647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697647,0.000000,0.000000,0.250000,0,0);}
.m55_c00240{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.mc4_c00240{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);}
.m4_c00240{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m61_c00240{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mfa_c00240{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.mfb_c00240{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.ma6_c00240{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.ma1_c00240{transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);}
.m1_c00240{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m1d_c00240{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m70_c00240{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.ma8_c00240{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m97_c00240{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m50_c00240{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.m59_c00240{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.ma0_c00240{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m2d_c00240{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m3_c00240{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m78_c00240{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.m6d_c00240{transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);}
.me5_c00240{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.mea_c00240{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-16.889280px;}
.ws1_c00240{word-spacing:0.000000px;}
._0_c00240{width:6.522671px;}
.fc0_c00240{color:transparent;}
.fs5_c00240{font-size:3.420000px;}
.fs0_c00240{font-size:18.720000px;}
.fs7_c00240{font-size:20.400000px;}
.fs4_c00240{font-size:25.500000px;}
.fs1_c00240{font-size:28.920000px;}
.fs3_c00240{font-size:32.340000px;}
.fs2_c00240{font-size:35.700000px;}
.fs6_c00240{font-size:39.120000px;}
.y0_c00240{bottom:0.000000px;}
.yc6_c00240{bottom:251.745000px;}
.yc7_c00240{bottom:252.825000px;}
.yca_c00240{bottom:253.905000px;}
.yc8_c00240{bottom:254.130000px;}
.yc9_c00240{bottom:255.405000px;}
.yc3_c00240{bottom:272.745000px;}
.yc4_c00240{bottom:273.405000px;}
.yc5_c00240{bottom:273.630000px;}
.yc2_c00240{bottom:274.905000px;}
.yc0_c00240{bottom:292.245000px;}
.yc1_c00240{bottom:294.405000px;}
.ybe_c00240{bottom:311.745000px;}
.ybf_c00240{bottom:312.825000px;}
.ybd_c00240{bottom:313.050000px;}
.ybc_c00240{bottom:313.905000px;}
.yb9_c00240{bottom:330.405000px;}
.yba_c00240{bottom:331.245000px;}
.yb8_c00240{bottom:331.905000px;}
.yb7_c00240{bottom:332.325000px;}
.yb5_c00240{bottom:332.745000px;}
.ybb_c00240{bottom:333.630000px;}
.yb6_c00240{bottom:334.920000px;}
.yb4_c00240{bottom:354.405000px;}
.yb2_c00240{bottom:370.245000px;}
.yaf_c00240{bottom:371.745000px;}
.yb3_c00240{bottom:373.470000px;}
.yb1_c00240{bottom:373.905000px;}
.yb0_c00240{bottom:373.920000px;}
.yae_c00240{bottom:394.470000px;}
.yac_c00240{bottom:395.325000px;}
.yab_c00240{bottom:396.405000px;}
.yad_c00240{bottom:396.630000px;}
.yaa_c00240{bottom:397.470000px;}
.ya9_c00240{bottom:412.470000px;}
.ya7_c00240{bottom:413.325000px;}
.ya6_c00240{bottom:413.550000px;}
.ya8_c00240{bottom:414.405000px;}
.ya5_c00240{bottom:416.550000px;}
.ya4_c00240{bottom:434.745000px;}
.ya2_c00240{bottom:435.825000px;}
.ya3_c00240{bottom:436.245000px;}
.ya1_c00240{bottom:437.970000px;}
.ya0_c00240{bottom:469.245000px;}
.y9d_c00240{bottom:469.680000px;}
.y9e_c00240{bottom:470.745000px;}
.y9f_c00240{bottom:472.905000px;}
.y9a_c00240{bottom:490.245000px;}
.y9c_c00240{bottom:491.970000px;}
.y9b_c00240{bottom:492.405000px;}
.y98_c00240{bottom:509.745000px;}
.y99_c00240{bottom:510.630000px;}
.y97_c00240{bottom:511.905000px;}
.y93_c00240{bottom:528.405000px;}
.y92_c00240{bottom:529.245000px;}
.y94_c00240{bottom:530.325000px;}
.y96_c00240{bottom:530.550000px;}
.y95_c00240{bottom:531.405000px;}
.y90_c00240{bottom:549.180000px;}
.y91_c00240{bottom:549.630000px;}
.y8d_c00240{bottom:550.245000px;}
.y8e_c00240{bottom:551.130000px;}
.y8f_c00240{bottom:552.405000px;}
.y8c_c00240{bottom:568.245000px;}
.y8a_c00240{bottom:569.325000px;}
.y89_c00240{bottom:569.745000px;}
.y8b_c00240{bottom:570.405000px;}
.y88_c00240{bottom:570.630000px;}
.y87_c00240{bottom:570.825000px;}
.y86_c00240{bottom:571.905000px;}
.y82_c00240{bottom:586.905000px;}
.y84_c00240{bottom:587.745000px;}
.y81_c00240{bottom:589.245000px;}
.y85_c00240{bottom:589.905000px;}
.y83_c00240{bottom:590.130000px;}
.y7f_c00240{bottom:591.405000px;}
.y80_c00240{bottom:592.470000px;}
.y7d_c00240{bottom:607.470000px;}
.y7a_c00240{bottom:607.905000px;}
.y7c_c00240{bottom:608.745000px;}
.y7e_c00240{bottom:609.630000px;}
.y7b_c00240{bottom:610.905000px;}
.y78_c00240{bottom:627.405000px;}
.y76_c00240{bottom:628.245000px;}
.y77_c00240{bottom:629.970000px;}
.y75_c00240{bottom:630.405000px;}
.y79_c00240{bottom:630.630000px;}
.y74_c00240{bottom:631.905000px;}
.y6f_c00240{bottom:646.905000px;}
.y6e_c00240{bottom:647.745000px;}
.y73_c00240{bottom:648.630000px;}
.y72_c00240{bottom:648.825000px;}
.y6d_c00240{bottom:649.905000px;}
.y71_c00240{bottom:650.130000px;}
.y70_c00240{bottom:650.970000px;}
.y6c_c00240{bottom:666.405000px;}
.y6b_c00240{bottom:669.405000px;}
.y6a_c00240{bottom:669.630000px;}
.y69_c00240{bottom:670.470000px;}
.y68_c00240{bottom:670.905000px;}
.y64_c00240{bottom:686.745000px;}
.y67_c00240{bottom:688.050000px;}
.y62_c00240{bottom:688.245000px;}
.y65_c00240{bottom:688.905000px;}
.y66_c00240{bottom:689.130000px;}
.y63_c00240{bottom:689.325000px;}
.y61_c00240{bottom:690.405000px;}
.y5e_c00240{bottom:707.745000px;}
.y5f_c00240{bottom:708.630000px;}
.y60_c00240{bottom:709.470000px;}
.y5d_c00240{bottom:709.905000px;}
.y59_c00240{bottom:725.745000px;}
.y5c_c00240{bottom:726.825000px;}
.y58_c00240{bottom:727.245000px;}
.y5b_c00240{bottom:727.905000px;}
.y5a_c00240{bottom:728.970000px;}
.y56_c00240{bottom:745.680000px;}
.y57_c00240{bottom:746.745000px;}
.y55_c00240{bottom:748.905000px;}
.y50_c00240{bottom:765.405000px;}
.y54_c00240{bottom:765.825000px;}
.y53_c00240{bottom:766.245000px;}
.y52_c00240{bottom:766.680000px;}
.y4e_c00240{bottom:767.745000px;}
.y4f_c00240{bottom:768.405000px;}
.y51_c00240{bottom:769.470000px;}
.y4b_c00240{bottom:785.745000px;}
.y4c_c00240{bottom:785.970000px;}
.y4a_c00240{bottom:787.905000px;}
.y4d_c00240{bottom:788.970000px;}
.y49_c00240{bottom:802.905000px;}
.y46_c00240{bottom:805.245000px;}
.y47_c00240{bottom:806.130000px;}
.y48_c00240{bottom:806.970000px;}
.y44_c00240{bottom:807.405000px;}
.y45_c00240{bottom:808.920000px;}
.y43_c00240{bottom:823.905000px;}
.y42_c00240{bottom:825.405000px;}
.y41_c00240{bottom:826.245000px;}
.y40_c00240{bottom:843.825000px;}
.y3f_c00240{bottom:844.470000px;}
.y3d_c00240{bottom:844.905000px;}
.y3c_c00240{bottom:845.745000px;}
.y3e_c00240{bottom:846.825000px;}
.y3b_c00240{bottom:847.470000px;}
.y3a_c00240{bottom:847.905000px;}
.y35_c00240{bottom:865.245000px;}
.y39_c00240{bottom:865.470000px;}
.y36_c00240{bottom:866.130000px;}
.y37_c00240{bottom:866.325000px;}
.y38_c00240{bottom:867.405000px;}
.y34_c00240{bottom:868.470000px;}
.y33_c00240{bottom:882.405000px;}
.y2f_c00240{bottom:882.825000px;}
.y2e_c00240{bottom:883.905000px;}
.y31_c00240{bottom:885.630000px;}
.y2d_c00240{bottom:885.825000px;}
.y32_c00240{bottom:886.470000px;}
.y30_c00240{bottom:886.905000px;}
.y2c_c00240{bottom:901.905000px;}
.y2a_c00240{bottom:903.825000px;}
.y28_c00240{bottom:904.245000px;}
.y2b_c00240{bottom:905.130000px;}
.y29_c00240{bottom:905.325000px;}
.y27_c00240{bottom:906.405000px;}
.y26_c00240{bottom:907.905000px;}
.y25_c00240{bottom:922.905000px;}
.y20_c00240{bottom:923.745000px;}
.y24_c00240{bottom:923.970000px;}
.y22_c00240{bottom:924.825000px;}
.y23_c00240{bottom:925.905000px;}
.y21_c00240{bottom:927.405000px;}
.y1e_c00240{bottom:942.405000px;}
.y1a_c00240{bottom:943.245000px;}
.y1b_c00240{bottom:943.470000px;}
.y1f_c00240{bottom:944.325000px;}
.y19_c00240{bottom:944.745000px;}
.y1d_c00240{bottom:945.405000px;}
.y1c_c00240{bottom:946.905000px;}
.y18_c00240{bottom:962.745000px;}
.y14_c00240{bottom:964.905000px;}
.y16_c00240{bottom:965.130000px;}
.y15_c00240{bottom:965.970000px;}
.y17_c00240{bottom:966.405000px;}
.y13_c00240{bottom:983.745000px;}
.y12_c00240{bottom:985.905000px;}
.yf_c00240{bottom:1003.245000px;}
.y11_c00240{bottom:1004.970000px;}
.y10_c00240{bottom:1005.405000px;}
.yb_c00240{bottom:1020.405000px;}
.y9_c00240{bottom:1022.745000px;}
.yc_c00240{bottom:1023.630000px;}
.ye_c00240{bottom:1024.470000px;}
.ya_c00240{bottom:1024.905000px;}
.yd_c00240{bottom:1025.970000px;}
.y7_c00240{bottom:1042.245000px;}
.y8_c00240{bottom:1044.405000px;}
.y5_c00240{bottom:1061.745000px;}
.y6_c00240{bottom:1062.825000px;}
.y4_c00240{bottom:1063.905000px;}
.y3_c00240{bottom:1064.130000px;}
.y2_c00240{bottom:1065.405000px;}
.y1_c00240{bottom:1103.130000px;}
.h6_c00240{height:4.206533px;}
.h1_c00240{height:23.025234px;}
.h8_c00240{height:25.091602px;}
.h5_c00240{height:31.364502px;}
.h2_c00240{height:35.571035px;}
.h4_c00240{height:39.777568px;}
.h3_c00240{height:43.910303px;}
.h7_c00240{height:48.116836px;}
.h0_c00240{height:1335.000000px;}
.w0_c00240{width:880.500000px;}
.x0_c00240{left:0.000000px;}
.x3_c00240{left:151.920000px;}
.xa3_c00240{left:153.000000px;}
.x9c_c00240{left:154.080000px;}
.xf2_c00240{left:155.580000px;}
.x37_c00240{left:166.500000px;}
.x65_c00240{left:168.855000px;}
.xe9_c00240{left:171.420000px;}
.x35_c00240{left:181.500000px;}
.x4d_c00240{left:184.500000px;}
.x86_c00240{left:187.500000px;}
.x97_c00240{left:189.000000px;}
.xac_c00240{left:193.500000px;}
.x11_c00240{left:195.000000px;}
.xb7_c00240{left:196.500000px;}
.x38_c00240{left:197.580000px;}
.xbd_c00240{left:199.500000px;}
.xae_c00240{left:201.000000px;}
.xa4_c00240{left:202.080000px;}
.x1b_c00240{left:205.920000px;}
.xde_c00240{left:208.275000px;}
.x4_c00240{left:209.580000px;}
.x71_c00240{left:213.000000px;}
.xb8_c00240{left:214.920000px;}
.x2a_c00240{left:216.000000px;}
.x4e_c00240{left:217.500000px;}
.xcf_c00240{left:222.420000px;}
.x66_c00240{left:226.500000px;}
.xf5_c00240{left:231.000000px;}
.x87_c00240{left:232.080000px;}
.x1c_c00240{left:234.000000px;}
.x79_c00240{left:235.920000px;}
.x7a_c00240{left:237.000000px;}
.x91_c00240{left:238.500000px;}
.x5_c00240{left:241.080000px;}
.x5d_c00240{left:243.420000px;}
.xa9_c00240{left:245.145000px;}
.x98_c00240{left:249.420000px;}
.x4f_c00240{left:252.000000px;}
.xaf_c00240{left:253.500000px;}
.xf6_c00240{left:255.000000px;}
.x39_c00240{left:256.500000px;}
.x7b_c00240{left:258.000000px;}
.xe6_c00240{left:260.580000px;}
.x42_c00240{left:262.080000px;}
.x67_c00240{left:263.580000px;}
.x36_c00240{left:268.500000px;}
.x2b_c00240{left:269.580000px;}
.x12_c00240{left:271.500000px;}
.x6_c00240{left:274.500000px;}
.xad_c00240{left:279.420000px;}
.x5e_c00240{left:281.355000px;}
.x1d_c00240{left:283.500000px;}
.xd4_c00240{left:285.420000px;}
.xd9_c00240{left:287.145000px;}
.x2c_c00240{left:288.420000px;}
.xb0_c00240{left:289.500000px;}
.x7c_c00240{left:291.000000px;}
.xa5_c00240{left:292.080000px;}
.xc7_c00240{left:294.000000px;}
.x68_c00240{left:296.775000px;}
.x92_c00240{left:298.500000px;}
.x7_c00240{left:299.580000px;}
.x1e_c00240{left:301.920000px;}
.xf1_c00240{left:307.500000px;}
.xb1_c00240{left:309.000000px;}
.x43_c00240{left:310.080000px;}
.x2d_c00240{left:313.500000px;}
.xe2_c00240{left:315.000000px;}
.x8_c00240{left:316.080000px;}
.xbe_c00240{left:318.000000px;}
.xc8_c00240{left:319.500000px;}
.x5f_c00240{left:321.000000px;}
.x72_c00240{left:322.500000px;}
.x50_c00240{left:324.420000px;}
.x57_c00240{left:325.500000px;}
.x9d_c00240{left:326.580000px;}
.x13_c00240{left:328.920000px;}
.x1f_c00240{left:330.000000px;}
.x88_c00240{left:333.000000px;}
.xe3_c00240{left:336.420000px;}
.x99_c00240{left:337.500000px;}
.xd5_c00240{left:339.000000px;}
.xaa_c00240{left:340.500000px;}
.x7d_c00240{left:342.000000px;}
.x44_c00240{left:343.080000px;}
.xcb_c00240{left:344.145000px;}
.xee_c00240{left:346.275000px;}
.x9e_c00240{left:348.420000px;}
.xda_c00240{left:349.500000px;}
.x89_c00240{left:351.000000px;}
.xd0_c00240{left:355.080000px;}
.xea_c00240{left:357.000000px;}
.x7e_c00240{left:358.500000px;}
.x3a_c00240{left:359.580000px;}
.x2e_c00240{left:361.500000px;}
.x58_c00240{left:363.000000px;}
.x51_c00240{left:364.920000px;}
.x9_c00240{left:367.500000px;}
.xb9_c00240{left:369.000000px;}
.xeb_c00240{left:373.500000px;}
.x20_c00240{left:375.855000px;}
.x8a_c00240{left:378.000000px;}
.xf7_c00240{left:381.420000px;}
.xbf_c00240{left:382.500000px;}
.xdf_c00240{left:384.420000px;}
.xd1_c00240{left:385.500000px;}
.x69_c00240{left:387.420000px;}
.xef_c00240{left:388.920000px;}
.x73_c00240{left:391.500000px;}
.x14_c00240{left:396.420000px;}
.xcc_c00240{left:398.580000px;}
.xb2_c00240{left:401.580000px;}
.xdb_c00240{left:404.580000px;}
.x1_c00240{left:406.080000px;}
.xa_c00240{left:408.000000px;}
.x21_c00240{left:409.920000px;}
.xe0_c00240{left:411.000000px;}
.xe4_c00240{left:412.080000px;}
.x60_c00240{left:413.580000px;}
.xe7_c00240{left:415.500000px;}
.xb3_c00240{left:421.080000px;}
.x93_c00240{left:423.000000px;}
.xa6_c00240{left:424.500000px;}
.x6a_c00240{left:426.000000px;}
.xc0_c00240{left:427.080000px;}
.x7f_c00240{left:429.000000px;}
.x52_c00240{left:430.080000px;}
.xe5_c00240{left:433.080000px;}
.x8b_c00240{left:435.000000px;}
.x3b_c00240{left:436.500000px;}
.x45_c00240{left:438.000000px;}
.x15_c00240{left:439.500000px;}
.xb_c00240{left:442.920000px;}
.xd6_c00240{left:445.080000px;}
.x80_c00240{left:447.420000px;}
.x22_c00240{left:450.000000px;}
.x9f_c00240{left:451.080000px;}
.x6b_c00240{left:453.000000px;}
.xc9_c00240{left:454.500000px;}
.xe1_c00240{left:455.580000px;}
.x61_c00240{left:457.080000px;}
.x16_c00240{left:458.580000px;}
.x53_c00240{left:460.080000px;}
.xd7_c00240{left:463.080000px;}
.x8c_c00240{left:466.500000px;}
.xc_c00240{left:467.580000px;}
.x23_c00240{left:469.500000px;}
.x74_c00240{left:471.420000px;}
.x3c_c00240{left:473.580000px;}
.x81_c00240{left:475.500000px;}
.x46_c00240{left:476.580000px;}
.xb4_c00240{left:480.000000px;}
.x2f_c00240{left:484.500000px;}
.x24_c00240{left:487.500000px;}
.xca_c00240{left:488.580000px;}
.x94_c00240{left:491.355000px;}
.xf8_c00240{left:497.580000px;}
.x62_c00240{left:499.080000px;}
.x59_c00240{left:501.000000px;}
.x3d_c00240{left:504.000000px;}
.x47_c00240{left:508.500000px;}
.x82_c00240{left:509.580000px;}
.xf0_c00240{left:514.920000px;}
.x6c_c00240{left:517.500000px;}
.x63_c00240{left:519.000000px;}
.x8d_c00240{left:520.500000px;}
.xb5_c00240{left:522.000000px;}
.x3e_c00240{left:523.080000px;}
.xe8_c00240{left:525.420000px;}
.xd_c00240{left:526.500000px;}
.x6d_c00240{left:529.500000px;}
.xd2_c00240{left:531.000000px;}
.x30_c00240{left:532.080000px;}
.xa7_c00240{left:535.500000px;}
.x75_c00240{left:537.000000px;}
.x5a_c00240{left:538.500000px;}
.x25_c00240{left:541.920000px;}
.xf9_c00240{left:543.000000px;}
.x8e_c00240{left:544.500000px;}
.xa0_c00240{left:547.920000px;}
.x31_c00240{left:552.420000px;}
.x48_c00240{left:555.000000px;}
.xf3_c00240{left:556.500000px;}
.xd8_c00240{left:559.500000px;}
.x17_c00240{left:561.420000px;}
.x3f_c00240{left:564.420000px;}
.x64_c00240{left:565.500000px;}
.x8f_c00240{left:570.000000px;}
.x6e_c00240{left:571.275000px;}
.xba_c00240{left:572.580000px;}
.x76_c00240{left:576.000000px;}
.x5b_c00240{left:577.920000px;}
.x32_c00240{left:579.000000px;}
.xc5_c00240{left:580.500000px;}
.xa1_c00240{left:583.920000px;}
.xec_c00240{left:586.080000px;}
.x49_c00240{left:589.500000px;}
.x54_c00240{left:590.580000px;}
.xe_c00240{left:592.080000px;}
.xdc_c00240{left:594.000000px;}
.x18_c00240{left:597.000000px;}
.x83_c00240{left:598.500000px;}
.xc1_c00240{left:599.580000px;}
.xc6_c00240{left:603.000000px;}
.x26_c00240{left:607.500000px;}
.x6f_c00240{left:609.000000px;}
.x40_c00240{left:612.420000px;}
.x33_c00240{left:614.580000px;}
.x84_c00240{left:618.000000px;}
.xcd_c00240{left:621.000000px;}
.xf_c00240{left:622.500000px;}
.x4a_c00240{left:625.500000px;}
.x27_c00240{left:627.420000px;}
.x55_c00240{left:629.580000px;}
.x9a_c00240{left:631.080000px;}
.xed_c00240{left:634.500000px;}
.x95_c00240{left:635.580000px;}
.xc2_c00240{left:639.000000px;}
.x70_c00240{left:640.920000px;}
.x77_c00240{left:643.080000px;}
.x41_c00240{left:649.920000px;}
.x9b_c00240{left:652.500000px;}
.x28_c00240{left:654.000000px;}
.xd3_c00240{left:658.080000px;}
.x4b_c00240{left:660.000000px;}
.x90_c00240{left:662.580000px;}
.x56_c00240{left:664.920000px;}
.x19_c00240{left:666.000000px;}
.xdd_c00240{left:669.000000px;}
.x5c_c00240{left:671.580000px;}
.x34_c00240{left:676.920000px;}
.xbb_c00240{left:678.000000px;}
.xb6_c00240{left:681.420000px;}
.x96_c00240{left:682.500000px;}
.x1a_c00240{left:684.000000px;}
.xc3_c00240{left:687.000000px;}
.x10_c00240{left:688.500000px;}
.xfa_c00240{left:691.080000px;}
.x85_c00240{left:693.420000px;}
.xab_c00240{left:694.500000px;}
.x78_c00240{left:696.000000px;}
.x4c_c00240{left:697.500000px;}
.x29_c00240{left:700.500000px;}
.xce_c00240{left:702.420000px;}
.x2_c00240{left:703.500000px;}
.xc4_c00240{left:705.000000px;}
.xbc_c00240{left:708.420000px;}
.xf4_c00240{left:712.500000px;}
.xa8_c00240{left:715.500000px;}
.xa2_c00240{left:716.580000px;}
@media print{
.v0_c00240{vertical-align:0.000000pt;}
.ls0_c00240{letter-spacing:0.000000pt;}
.ws0_c00240{word-spacing:-15.012693pt;}
.ws1_c00240{word-spacing:0.000000pt;}
._0_c00240{width:5.797930pt;}
.fs5_c00240{font-size:3.040000pt;}
.fs0_c00240{font-size:16.640000pt;}
.fs7_c00240{font-size:18.133333pt;}
.fs4_c00240{font-size:22.666667pt;}
.fs1_c00240{font-size:25.706667pt;}
.fs3_c00240{font-size:28.746667pt;}
.fs2_c00240{font-size:31.733333pt;}
.fs6_c00240{font-size:34.773333pt;}
.y0_c00240{bottom:0.000000pt;}
.yc6_c00240{bottom:223.773333pt;}
.yc7_c00240{bottom:224.733333pt;}
.yca_c00240{bottom:225.693333pt;}
.yc8_c00240{bottom:225.893333pt;}
.yc9_c00240{bottom:227.026667pt;}
.yc3_c00240{bottom:242.440000pt;}
.yc4_c00240{bottom:243.026667pt;}
.yc5_c00240{bottom:243.226667pt;}
.yc2_c00240{bottom:244.360000pt;}
.yc0_c00240{bottom:259.773333pt;}
.yc1_c00240{bottom:261.693333pt;}
.ybe_c00240{bottom:277.106667pt;}
.ybf_c00240{bottom:278.066667pt;}
.ybd_c00240{bottom:278.266667pt;}
.ybc_c00240{bottom:279.026667pt;}
.yb9_c00240{bottom:293.693333pt;}
.yba_c00240{bottom:294.440000pt;}
.yb8_c00240{bottom:295.026667pt;}
.yb7_c00240{bottom:295.400000pt;}
.yb5_c00240{bottom:295.773333pt;}
.ybb_c00240{bottom:296.560000pt;}
.yb6_c00240{bottom:297.706667pt;}
.yb4_c00240{bottom:315.026667pt;}
.yb2_c00240{bottom:329.106667pt;}
.yaf_c00240{bottom:330.440000pt;}
.yb3_c00240{bottom:331.973333pt;}
.yb1_c00240{bottom:332.360000pt;}
.yb0_c00240{bottom:332.373333pt;}
.yae_c00240{bottom:350.640000pt;}
.yac_c00240{bottom:351.400000pt;}
.yab_c00240{bottom:352.360000pt;}
.yad_c00240{bottom:352.560000pt;}
.yaa_c00240{bottom:353.306667pt;}
.ya9_c00240{bottom:366.640000pt;}
.ya7_c00240{bottom:367.400000pt;}
.ya6_c00240{bottom:367.600000pt;}
.ya8_c00240{bottom:368.360000pt;}
.ya5_c00240{bottom:370.266667pt;}
.ya4_c00240{bottom:386.440000pt;}
.ya2_c00240{bottom:387.400000pt;}
.ya3_c00240{bottom:387.773333pt;}
.ya1_c00240{bottom:389.306667pt;}
.ya0_c00240{bottom:417.106667pt;}
.y9d_c00240{bottom:417.493333pt;}
.y9e_c00240{bottom:418.440000pt;}
.y9f_c00240{bottom:420.360000pt;}
.y9a_c00240{bottom:435.773333pt;}
.y9c_c00240{bottom:437.306667pt;}
.y9b_c00240{bottom:437.693333pt;}
.y98_c00240{bottom:453.106667pt;}
.y99_c00240{bottom:453.893333pt;}
.y97_c00240{bottom:455.026667pt;}
.y93_c00240{bottom:469.693333pt;}
.y92_c00240{bottom:470.440000pt;}
.y94_c00240{bottom:471.400000pt;}
.y96_c00240{bottom:471.600000pt;}
.y95_c00240{bottom:472.360000pt;}
.y90_c00240{bottom:488.160000pt;}
.y91_c00240{bottom:488.560000pt;}
.y8d_c00240{bottom:489.106667pt;}
.y8e_c00240{bottom:489.893333pt;}
.y8f_c00240{bottom:491.026667pt;}
.y8c_c00240{bottom:505.106667pt;}
.y8a_c00240{bottom:506.066667pt;}
.y89_c00240{bottom:506.440000pt;}
.y8b_c00240{bottom:507.026667pt;}
.y88_c00240{bottom:507.226667pt;}
.y87_c00240{bottom:507.400000pt;}
.y86_c00240{bottom:508.360000pt;}
.y82_c00240{bottom:521.693333pt;}
.y84_c00240{bottom:522.440000pt;}
.y81_c00240{bottom:523.773333pt;}
.y85_c00240{bottom:524.360000pt;}
.y83_c00240{bottom:524.560000pt;}
.y7f_c00240{bottom:525.693333pt;}
.y80_c00240{bottom:526.640000pt;}
.y7d_c00240{bottom:539.973333pt;}
.y7a_c00240{bottom:540.360000pt;}
.y7c_c00240{bottom:541.106667pt;}
.y7e_c00240{bottom:541.893333pt;}
.y7b_c00240{bottom:543.026667pt;}
.y78_c00240{bottom:557.693333pt;}
.y76_c00240{bottom:558.440000pt;}
.y77_c00240{bottom:559.973333pt;}
.y75_c00240{bottom:560.360000pt;}
.y79_c00240{bottom:560.560000pt;}
.y74_c00240{bottom:561.693333pt;}
.y6f_c00240{bottom:575.026667pt;}
.y6e_c00240{bottom:575.773333pt;}
.y73_c00240{bottom:576.560000pt;}
.y72_c00240{bottom:576.733333pt;}
.y6d_c00240{bottom:577.693333pt;}
.y71_c00240{bottom:577.893333pt;}
.y70_c00240{bottom:578.640000pt;}
.y6c_c00240{bottom:592.360000pt;}
.y6b_c00240{bottom:595.026667pt;}
.y6a_c00240{bottom:595.226667pt;}
.y69_c00240{bottom:595.973333pt;}
.y68_c00240{bottom:596.360000pt;}
.y64_c00240{bottom:610.440000pt;}
.y67_c00240{bottom:611.600000pt;}
.y62_c00240{bottom:611.773333pt;}
.y65_c00240{bottom:612.360000pt;}
.y66_c00240{bottom:612.560000pt;}
.y63_c00240{bottom:612.733333pt;}
.y61_c00240{bottom:613.693333pt;}
.y5e_c00240{bottom:629.106667pt;}
.y5f_c00240{bottom:629.893333pt;}
.y60_c00240{bottom:630.640000pt;}
.y5d_c00240{bottom:631.026667pt;}
.y59_c00240{bottom:645.106667pt;}
.y5c_c00240{bottom:646.066667pt;}
.y58_c00240{bottom:646.440000pt;}
.y5b_c00240{bottom:647.026667pt;}
.y5a_c00240{bottom:647.973333pt;}
.y56_c00240{bottom:662.826667pt;}
.y57_c00240{bottom:663.773333pt;}
.y55_c00240{bottom:665.693333pt;}
.y50_c00240{bottom:680.360000pt;}
.y54_c00240{bottom:680.733333pt;}
.y53_c00240{bottom:681.106667pt;}
.y52_c00240{bottom:681.493333pt;}
.y4e_c00240{bottom:682.440000pt;}
.y4f_c00240{bottom:683.026667pt;}
.y51_c00240{bottom:683.973333pt;}
.y4b_c00240{bottom:698.440000pt;}
.y4c_c00240{bottom:698.640000pt;}
.y4a_c00240{bottom:700.360000pt;}
.y4d_c00240{bottom:701.306667pt;}
.y49_c00240{bottom:713.693333pt;}
.y46_c00240{bottom:715.773333pt;}
.y47_c00240{bottom:716.560000pt;}
.y48_c00240{bottom:717.306667pt;}
.y44_c00240{bottom:717.693333pt;}
.y45_c00240{bottom:719.040000pt;}
.y43_c00240{bottom:732.360000pt;}
.y42_c00240{bottom:733.693333pt;}
.y41_c00240{bottom:734.440000pt;}
.y40_c00240{bottom:750.066667pt;}
.y3f_c00240{bottom:750.640000pt;}
.y3d_c00240{bottom:751.026667pt;}
.y3c_c00240{bottom:751.773333pt;}
.y3e_c00240{bottom:752.733333pt;}
.y3b_c00240{bottom:753.306667pt;}
.y3a_c00240{bottom:753.693333pt;}
.y35_c00240{bottom:769.106667pt;}
.y39_c00240{bottom:769.306667pt;}
.y36_c00240{bottom:769.893333pt;}
.y37_c00240{bottom:770.066667pt;}
.y38_c00240{bottom:771.026667pt;}
.y34_c00240{bottom:771.973333pt;}
.y33_c00240{bottom:784.360000pt;}
.y2f_c00240{bottom:784.733333pt;}
.y2e_c00240{bottom:785.693333pt;}
.y31_c00240{bottom:787.226667pt;}
.y2d_c00240{bottom:787.400000pt;}
.y32_c00240{bottom:787.973333pt;}
.y30_c00240{bottom:788.360000pt;}
.y2c_c00240{bottom:801.693333pt;}
.y2a_c00240{bottom:803.400000pt;}
.y28_c00240{bottom:803.773333pt;}
.y2b_c00240{bottom:804.560000pt;}
.y29_c00240{bottom:804.733333pt;}
.y27_c00240{bottom:805.693333pt;}
.y26_c00240{bottom:807.026667pt;}
.y25_c00240{bottom:820.360000pt;}
.y20_c00240{bottom:821.106667pt;}
.y24_c00240{bottom:821.306667pt;}
.y22_c00240{bottom:822.066667pt;}
.y23_c00240{bottom:823.026667pt;}
.y21_c00240{bottom:824.360000pt;}
.y1e_c00240{bottom:837.693333pt;}
.y1a_c00240{bottom:838.440000pt;}
.y1b_c00240{bottom:838.640000pt;}
.y1f_c00240{bottom:839.400000pt;}
.y19_c00240{bottom:839.773333pt;}
.y1d_c00240{bottom:840.360000pt;}
.y1c_c00240{bottom:841.693333pt;}
.y18_c00240{bottom:855.773333pt;}
.y14_c00240{bottom:857.693333pt;}
.y16_c00240{bottom:857.893333pt;}
.y15_c00240{bottom:858.640000pt;}
.y17_c00240{bottom:859.026667pt;}
.y13_c00240{bottom:874.440000pt;}
.y12_c00240{bottom:876.360000pt;}
.yf_c00240{bottom:891.773333pt;}
.y11_c00240{bottom:893.306667pt;}
.y10_c00240{bottom:893.693333pt;}
.yb_c00240{bottom:907.026667pt;}
.y9_c00240{bottom:909.106667pt;}
.yc_c00240{bottom:909.893333pt;}
.ye_c00240{bottom:910.640000pt;}
.ya_c00240{bottom:911.026667pt;}
.yd_c00240{bottom:911.973333pt;}
.y7_c00240{bottom:926.440000pt;}
.y8_c00240{bottom:928.360000pt;}
.y5_c00240{bottom:943.773333pt;}
.y6_c00240{bottom:944.733333pt;}
.y4_c00240{bottom:945.693333pt;}
.y3_c00240{bottom:945.893333pt;}
.y2_c00240{bottom:947.026667pt;}
.y1_c00240{bottom:980.560000pt;}
.h6_c00240{height:3.739141pt;}
.h1_c00240{height:20.466875pt;}
.h8_c00240{height:22.303646pt;}
.h5_c00240{height:27.879557pt;}
.h2_c00240{height:31.618698pt;}
.h4_c00240{height:35.357839pt;}
.h3_c00240{height:39.031380pt;}
.h7_c00240{height:42.770521pt;}
.h0_c00240{height:1186.666667pt;}
.w0_c00240{width:782.666667pt;}
.x0_c00240{left:0.000000pt;}
.x3_c00240{left:135.040000pt;}
.xa3_c00240{left:136.000000pt;}
.x9c_c00240{left:136.960000pt;}
.xf2_c00240{left:138.293333pt;}
.x37_c00240{left:148.000000pt;}
.x65_c00240{left:150.093333pt;}
.xe9_c00240{left:152.373333pt;}
.x35_c00240{left:161.333333pt;}
.x4d_c00240{left:164.000000pt;}
.x86_c00240{left:166.666667pt;}
.x97_c00240{left:168.000000pt;}
.xac_c00240{left:172.000000pt;}
.x11_c00240{left:173.333333pt;}
.xb7_c00240{left:174.666667pt;}
.x38_c00240{left:175.626667pt;}
.xbd_c00240{left:177.333333pt;}
.xae_c00240{left:178.666667pt;}
.xa4_c00240{left:179.626667pt;}
.x1b_c00240{left:183.040000pt;}
.xde_c00240{left:185.133333pt;}
.x4_c00240{left:186.293333pt;}
.x71_c00240{left:189.333333pt;}
.xb8_c00240{left:191.040000pt;}
.x2a_c00240{left:192.000000pt;}
.x4e_c00240{left:193.333333pt;}
.xcf_c00240{left:197.706667pt;}
.x66_c00240{left:201.333333pt;}
.xf5_c00240{left:205.333333pt;}
.x87_c00240{left:206.293333pt;}
.x1c_c00240{left:208.000000pt;}
.x79_c00240{left:209.706667pt;}
.x7a_c00240{left:210.666667pt;}
.x91_c00240{left:212.000000pt;}
.x5_c00240{left:214.293333pt;}
.x5d_c00240{left:216.373333pt;}
.xa9_c00240{left:217.906667pt;}
.x98_c00240{left:221.706667pt;}
.x4f_c00240{left:224.000000pt;}
.xaf_c00240{left:225.333333pt;}
.xf6_c00240{left:226.666667pt;}
.x39_c00240{left:228.000000pt;}
.x7b_c00240{left:229.333333pt;}
.xe6_c00240{left:231.626667pt;}
.x42_c00240{left:232.960000pt;}
.x67_c00240{left:234.293333pt;}
.x36_c00240{left:238.666667pt;}
.x2b_c00240{left:239.626667pt;}
.x12_c00240{left:241.333333pt;}
.x6_c00240{left:244.000000pt;}
.xad_c00240{left:248.373333pt;}
.x5e_c00240{left:250.093333pt;}
.x1d_c00240{left:252.000000pt;}
.xd4_c00240{left:253.706667pt;}
.xd9_c00240{left:255.240000pt;}
.x2c_c00240{left:256.373333pt;}
.xb0_c00240{left:257.333333pt;}
.x7c_c00240{left:258.666667pt;}
.xa5_c00240{left:259.626667pt;}
.xc7_c00240{left:261.333333pt;}
.x68_c00240{left:263.800000pt;}
.x92_c00240{left:265.333333pt;}
.x7_c00240{left:266.293333pt;}
.x1e_c00240{left:268.373333pt;}
.xf1_c00240{left:273.333333pt;}
.xb1_c00240{left:274.666667pt;}
.x43_c00240{left:275.626667pt;}
.x2d_c00240{left:278.666667pt;}
.xe2_c00240{left:280.000000pt;}
.x8_c00240{left:280.960000pt;}
.xbe_c00240{left:282.666667pt;}
.xc8_c00240{left:284.000000pt;}
.x5f_c00240{left:285.333333pt;}
.x72_c00240{left:286.666667pt;}
.x50_c00240{left:288.373333pt;}
.x57_c00240{left:289.333333pt;}
.x9d_c00240{left:290.293333pt;}
.x13_c00240{left:292.373333pt;}
.x1f_c00240{left:293.333333pt;}
.x88_c00240{left:296.000000pt;}
.xe3_c00240{left:299.040000pt;}
.x99_c00240{left:300.000000pt;}
.xd5_c00240{left:301.333333pt;}
.xaa_c00240{left:302.666667pt;}
.x7d_c00240{left:304.000000pt;}
.x44_c00240{left:304.960000pt;}
.xcb_c00240{left:305.906667pt;}
.xee_c00240{left:307.800000pt;}
.x9e_c00240{left:309.706667pt;}
.xda_c00240{left:310.666667pt;}
.x89_c00240{left:312.000000pt;}
.xd0_c00240{left:315.626667pt;}
.xea_c00240{left:317.333333pt;}
.x7e_c00240{left:318.666667pt;}
.x3a_c00240{left:319.626667pt;}
.x2e_c00240{left:321.333333pt;}
.x58_c00240{left:322.666667pt;}
.x51_c00240{left:324.373333pt;}
.x9_c00240{left:326.666667pt;}
.xb9_c00240{left:328.000000pt;}
.xeb_c00240{left:332.000000pt;}
.x20_c00240{left:334.093333pt;}
.x8a_c00240{left:336.000000pt;}
.xf7_c00240{left:339.040000pt;}
.xbf_c00240{left:340.000000pt;}
.xdf_c00240{left:341.706667pt;}
.xd1_c00240{left:342.666667pt;}
.x69_c00240{left:344.373333pt;}
.xef_c00240{left:345.706667pt;}
.x73_c00240{left:348.000000pt;}
.x14_c00240{left:352.373333pt;}
.xcc_c00240{left:354.293333pt;}
.xb2_c00240{left:356.960000pt;}
.xdb_c00240{left:359.626667pt;}
.x1_c00240{left:360.960000pt;}
.xa_c00240{left:362.666667pt;}
.x21_c00240{left:364.373333pt;}
.xe0_c00240{left:365.333333pt;}
.xe4_c00240{left:366.293333pt;}
.x60_c00240{left:367.626667pt;}
.xe7_c00240{left:369.333333pt;}
.xb3_c00240{left:374.293333pt;}
.x93_c00240{left:376.000000pt;}
.xa6_c00240{left:377.333333pt;}
.x6a_c00240{left:378.666667pt;}
.xc0_c00240{left:379.626667pt;}
.x7f_c00240{left:381.333333pt;}
.x52_c00240{left:382.293333pt;}
.xe5_c00240{left:384.960000pt;}
.x8b_c00240{left:386.666667pt;}
.x3b_c00240{left:388.000000pt;}
.x45_c00240{left:389.333333pt;}
.x15_c00240{left:390.666667pt;}
.xb_c00240{left:393.706667pt;}
.xd6_c00240{left:395.626667pt;}
.x80_c00240{left:397.706667pt;}
.x22_c00240{left:400.000000pt;}
.x9f_c00240{left:400.960000pt;}
.x6b_c00240{left:402.666667pt;}
.xc9_c00240{left:404.000000pt;}
.xe1_c00240{left:404.960000pt;}
.x61_c00240{left:406.293333pt;}
.x16_c00240{left:407.626667pt;}
.x53_c00240{left:408.960000pt;}
.xd7_c00240{left:411.626667pt;}
.x8c_c00240{left:414.666667pt;}
.xc_c00240{left:415.626667pt;}
.x23_c00240{left:417.333333pt;}
.x74_c00240{left:419.040000pt;}
.x3c_c00240{left:420.960000pt;}
.x81_c00240{left:422.666667pt;}
.x46_c00240{left:423.626667pt;}
.xb4_c00240{left:426.666667pt;}
.x2f_c00240{left:430.666667pt;}
.x24_c00240{left:433.333333pt;}
.xca_c00240{left:434.293333pt;}
.x94_c00240{left:436.760000pt;}
.xf8_c00240{left:442.293333pt;}
.x62_c00240{left:443.626667pt;}
.x59_c00240{left:445.333333pt;}
.x3d_c00240{left:448.000000pt;}
.x47_c00240{left:452.000000pt;}
.x82_c00240{left:452.960000pt;}
.xf0_c00240{left:457.706667pt;}
.x6c_c00240{left:460.000000pt;}
.x63_c00240{left:461.333333pt;}
.x8d_c00240{left:462.666667pt;}
.xb5_c00240{left:464.000000pt;}
.x3e_c00240{left:464.960000pt;}
.xe8_c00240{left:467.040000pt;}
.xd_c00240{left:468.000000pt;}
.x6d_c00240{left:470.666667pt;}
.xd2_c00240{left:472.000000pt;}
.x30_c00240{left:472.960000pt;}
.xa7_c00240{left:476.000000pt;}
.x75_c00240{left:477.333333pt;}
.x5a_c00240{left:478.666667pt;}
.x25_c00240{left:481.706667pt;}
.xf9_c00240{left:482.666667pt;}
.x8e_c00240{left:484.000000pt;}
.xa0_c00240{left:487.040000pt;}
.x31_c00240{left:491.040000pt;}
.x48_c00240{left:493.333333pt;}
.xf3_c00240{left:494.666667pt;}
.xd8_c00240{left:497.333333pt;}
.x17_c00240{left:499.040000pt;}
.x3f_c00240{left:501.706667pt;}
.x64_c00240{left:502.666667pt;}
.x8f_c00240{left:506.666667pt;}
.x6e_c00240{left:507.800000pt;}
.xba_c00240{left:508.960000pt;}
.x76_c00240{left:512.000000pt;}
.x5b_c00240{left:513.706667pt;}
.x32_c00240{left:514.666667pt;}
.xc5_c00240{left:516.000000pt;}
.xa1_c00240{left:519.040000pt;}
.xec_c00240{left:520.960000pt;}
.x49_c00240{left:524.000000pt;}
.x54_c00240{left:524.960000pt;}
.xe_c00240{left:526.293333pt;}
.xdc_c00240{left:528.000000pt;}
.x18_c00240{left:530.666667pt;}
.x83_c00240{left:532.000000pt;}
.xc1_c00240{left:532.960000pt;}
.xc6_c00240{left:536.000000pt;}
.x26_c00240{left:540.000000pt;}
.x6f_c00240{left:541.333333pt;}
.x40_c00240{left:544.373333pt;}
.x33_c00240{left:546.293333pt;}
.x84_c00240{left:549.333333pt;}
.xcd_c00240{left:552.000000pt;}
.xf_c00240{left:553.333333pt;}
.x4a_c00240{left:556.000000pt;}
.x27_c00240{left:557.706667pt;}
.x55_c00240{left:559.626667pt;}
.x9a_c00240{left:560.960000pt;}
.xed_c00240{left:564.000000pt;}
.x95_c00240{left:564.960000pt;}
.xc2_c00240{left:568.000000pt;}
.x70_c00240{left:569.706667pt;}
.x77_c00240{left:571.626667pt;}
.x41_c00240{left:577.706667pt;}
.x9b_c00240{left:580.000000pt;}
.x28_c00240{left:581.333333pt;}
.xd3_c00240{left:584.960000pt;}
.x4b_c00240{left:586.666667pt;}
.x90_c00240{left:588.960000pt;}
.x56_c00240{left:591.040000pt;}
.x19_c00240{left:592.000000pt;}
.xdd_c00240{left:594.666667pt;}
.x5c_c00240{left:596.960000pt;}
.x34_c00240{left:601.706667pt;}
.xbb_c00240{left:602.666667pt;}
.xb6_c00240{left:605.706667pt;}
.x96_c00240{left:606.666667pt;}
.x1a_c00240{left:608.000000pt;}
.xc3_c00240{left:610.666667pt;}
.x10_c00240{left:612.000000pt;}
.xfa_c00240{left:614.293333pt;}
.x85_c00240{left:616.373333pt;}
.xab_c00240{left:617.333333pt;}
.x78_c00240{left:618.666667pt;}
.x4c_c00240{left:620.000000pt;}
.x29_c00240{left:622.666667pt;}
.xce_c00240{left:624.373333pt;}
.x2_c00240{left:625.333333pt;}
.xc4_c00240{left:626.666667pt;}
.xbc_c00240{left:629.706667pt;}
.xf4_c00240{left:633.333333pt;}
.xa8_c00240{left:636.000000pt;}
.xa2_c00240{left:636.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_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_b94904a3751054227f88a94d.woff2')format("woff");}.ff1_c00241{font-family:ff1_c00241;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m90_c00241{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.me8_c00241{transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);}
.mda_c00241{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);}
.m89_c00241{transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);}
.m4c_c00241{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.ma9_c00241{transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);}
.m26_c00241{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m2e_c00241{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m60_c00241{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m16_c00241{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m44_c00241{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.mef_c00241{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mae_c00241{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m3e_c00241{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.mf3_c00241{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m4f_c00241{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m9c_c00241{transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);}
.m5b_c00241{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m15_c00241{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mf4_c00241{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m43_c00241{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.mf1_c00241{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m24_c00241{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m35_c00241{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mfa_c00241{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.mdc_c00241{transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);}
.m29_c00241{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.mc1_c00241{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m42_c00241{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m7_c00241{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m108_c00241{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.m7e_c00241{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.m2a_c00241{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m105_c00241{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m45_c00241{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m101_c00241{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.mde_c00241{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.md4_c00241{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mcd_c00241{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m8e_c00241{transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);}
.mba_c00241{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.mbb_c00241{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.ma2_c00241{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.mf5_c00241{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mc4_c00241{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mb0_c00241{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.md5_c00241{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.m71_c00241{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m13_c00241{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mc9_c00241{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m83_c00241{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m3d_c00241{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.md1_c00241{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.ma4_c00241{transform:matrix(0.427647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427647,0.000000,0.000000,0.250000,0,0);}
.mfd_c00241{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m1a_c00241{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m50_c00241{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m104_c00241{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mcc_c00241{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m21_c00241{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.me6_c00241{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m7c_c00241{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m85_c00241{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mf0_c00241{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.mea_c00241{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.md2_c00241{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.mb3_c00241{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.mc7_c00241{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m2d_c00241{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m19_c00241{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mbf_c00241{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m9b_c00241{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.mb9_c00241{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m110_c00241{transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);}
.m84_c00241{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m3a_c00241{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.md9_c00241{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m75_c00241{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.mfc_c00241{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.mf7_c00241{transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);}
.mab_c00241{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.md7_c00241{transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);}
.md0_c00241{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m69_c00241{transform:matrix(0.457647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457647,0.000000,0.000000,0.250000,0,0);}
.mc3_c00241{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m70_c00241{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m63_c00241{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.mfb_c00241{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m6f_c00241{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m10d_c00241{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.mb1_c00241{transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);}
.m6c_c00241{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m9a_c00241{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m95_c00241{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m80_c00241{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.mdf_c00241{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.m37_c00241{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.maa_c00241{transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);}
.m67_c00241{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m8f_c00241{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m9e_c00241{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m3b_c00241{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m8_c00241{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m3f_c00241{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.m72_c00241{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.mbe_c00241{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m3c_c00241{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m23_c00241{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m57_c00241{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m94_c00241{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.ma5_c00241{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);}
.m1b_c00241{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m5d_c00241{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m66_c00241{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m100_c00241{transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);}
.m52_c00241{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m2c_c00241{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.mca_c00241{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m2_c00241{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);}
.m86_c00241{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mc2_c00241{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.mb8_c00241{transform:matrix(0.505882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505882,0.000000,0.000000,0.250000,0,0);}
.m14_c00241{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m17_c00241{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m46_c00241{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mbd_c00241{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m8d_c00241{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.mbc_c00241{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m1d_c00241{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mce_c00241{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m40_c00241{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m97_c00241{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.m28_c00241{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m61_c00241{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.mc0_c00241{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mf8_c00241{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m4_c00241{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m9d_c00241{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.m64_c00241{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.m74_c00241{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);}
.m6a_c00241{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m30_c00241{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.me4_c00241{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m8b_c00241{transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);}
.m10c_c00241{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m7a_c00241{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m6_c00241{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m41_c00241{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.md3_c00241{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.me_c00241{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m8a_c00241{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.m33_c00241{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m10_c00241{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m82_c00241{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m48_c00241{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m98_c00241{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.mee_c00241{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m6d_c00241{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m31_c00241{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m4e_c00241{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.md_c00241{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.md8_c00241{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m39_c00241{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m77_c00241{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m49_c00241{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mf_c00241{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m20_c00241{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m27_c00241{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m4b_c00241{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.ma7_c00241{transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);}
.m34_c00241{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m79_c00241{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.mff_c00241{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m25_c00241{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.ma3_c00241{transform:matrix(0.548824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548824,0.000000,0.000000,0.250000,0,0);}
.m4d_c00241{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m22_c00241{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.ma0_c00241{transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);}
.md6_c00241{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m8c_c00241{transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);}
.m10a_c00241{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.mc_c00241{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m11_c00241{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mdb_c00241{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m12_c00241{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m68_c00241{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m88_c00241{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.mcf_c00241{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.me0_c00241{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.me3_c00241{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m103_c00241{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mb_c00241{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.m7b_c00241{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.m6b_c00241{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.maf_c00241{transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);}
.m2b_c00241{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.meb_c00241{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.mb5_c00241{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.mb6_c00241{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.mc5_c00241{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m102_c00241{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m106_c00241{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mb2_c00241{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m92_c00241{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m7f_c00241{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m62_c00241{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.ma6_c00241{transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);}
.m4a_c00241{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m81_c00241{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.mac_c00241{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m10e_c00241{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.med_c00241{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m38_c00241{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);}
.m1e_c00241{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mdd_c00241{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.mfe_c00241{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m96_c00241{transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);}
.m3_c00241{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m54_c00241{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.mf6_c00241{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.me2_c00241{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m5f_c00241{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m107_c00241{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m7d_c00241{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m1_c00241{transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);}
.m56_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);}
.me7_c00241{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.ma8_c00241{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.m1c_c00241{transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);}
.m73_c00241{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m76_c00241{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m6e_c00241{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.m5c_c00241{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m1f_c00241{transform:matrix(0.646635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.646635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.646635,0.000000,0.000000,0.250000,0,0);}
.m91_c00241{transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);}
.m9f_c00241{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);}
.m5a_c00241{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m93_c00241{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m55_c00241{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m78_c00241{transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);}
.m36_c00241{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m9_c00241{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m58_c00241{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.m32_c00241{transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);}
.me9_c00241{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);}
.m65_c00241{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m87_c00241{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m18_c00241{transform:matrix(0.689412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689412,0.000000,0.000000,0.250000,0,0);}
.ma1_c00241{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m59_c00241{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);}
.me1_c00241{transform:matrix(0.715545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715545,0.000000,0.000000,0.250000,0,0);}
.mec_c00241{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mf9_c00241{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.me5_c00241{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m53_c00241{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m0_c00241{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m10b_c00241{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.mc6_c00241{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m109_c00241{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mc8_c00241{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mf2_c00241{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mcb_c00241{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m47_c00241{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m10f_c00241{transform:matrix(0.793269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.793269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.793269,0.000000,0.000000,0.250000,0,0);}
.ma_c00241{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m2f_c00241{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m5e_c00241{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mb7_c00241{transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);}
.mb4_c00241{transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);}
.mad_c00241{transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);}
.m99_c00241{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m51_c00241{transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);}
.m5_c00241{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00241{vertical-align:0.000000px;}
.v1_c00241{vertical-align:7.680000px;}
.ls1_c00241{letter-spacing:0.000000px;}
.ls0_c00241{letter-spacing:8.817600px;}
.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:-8.046931px;}
.ws1_c00241{word-spacing:-6.184625px;}
.ws2_c00241{word-spacing:0.000000px;}
.fc0_c00241{color:transparent;}
.fs3_c00241{font-size:3.420000px;}
.fs7_c00241{font-size:13.620000px;}
.fs0_c00241{font-size:18.720000px;}
.fs1_c00241{font-size:20.400000px;}
.fs5_c00241{font-size:25.500000px;}
.fs2_c00241{font-size:28.920000px;}
.fs6_c00241{font-size:32.340000px;}
.fs4_c00241{font-size:35.700000px;}
.y0_c00241{bottom:0.000000px;}
.yec_c00241{bottom:252.405000px;}
.yee_c00241{bottom:253.245000px;}
.yef_c00241{bottom:254.550000px;}
.ye9_c00241{bottom:255.405000px;}
.yed_c00241{bottom:255.630000px;}
.yea_c00241{bottom:256.470000px;}
.yeb_c00241{bottom:256.905000px;}
.ye7_c00241{bottom:271.905000px;}
.ye5_c00241{bottom:274.245000px;}
.ye8_c00241{bottom:274.905000px;}
.ye6_c00241{bottom:275.130000px;}
.ye4_c00241{bottom:276.405000px;}
.ye0_c00241{bottom:292.245000px;}
.ye3_c00241{bottom:292.470000px;}
.ye2_c00241{bottom:293.745000px;}
.ye1_c00241{bottom:294.630000px;}
.ydf_c00241{bottom:295.905000px;}
.ydc_c00241{bottom:312.825000px;}
.yda_c00241{bottom:313.245000px;}
.yd9_c00241{bottom:314.130000px;}
.ydd_c00241{bottom:314.325000px;}
.ydb_c00241{bottom:315.405000px;}
.yde_c00241{bottom:316.470000px;}
.yd6_c00241{bottom:331.245000px;}
.yd8_c00241{bottom:333.630000px;}
.yd4_c00241{bottom:334.470000px;}
.yd5_c00241{bottom:334.905000px;}
.yd7_c00241{bottom:336.405000px;}
.yce_c00241{bottom:352.245000px;}
.yd0_c00241{bottom:353.745000px;}
.yd3_c00241{bottom:354.405000px;}
.ycf_c00241{bottom:354.630000px;}
.yd2_c00241{bottom:355.470000px;}
.yd1_c00241{bottom:355.905000px;}
.ycc_c00241{bottom:373.245000px;}
.ycd_c00241{bottom:373.905000px;}
.ycb_c00241{bottom:374.130000px;}
.yca_c00241{bottom:375.405000px;}
.yc5_c00241{bottom:392.550000px;}
.yc7_c00241{bottom:392.745000px;}
.yc9_c00241{bottom:393.405000px;}
.yc8_c00241{bottom:393.630000px;}
.yc6_c00241{bottom:394.905000px;}
.yc4_c00241{bottom:410.745000px;}
.ybd_c00241{bottom:410.970000px;}
.ybe_c00241{bottom:412.245000px;}
.yc1_c00241{bottom:413.130000px;}
.ybf_c00241{bottom:413.325000px;}
.yc3_c00241{bottom:413.970000px;}
.yc0_c00241{bottom:414.405000px;}
.yc2_c00241{bottom:415.470000px;}
.ybc_c00241{bottom:431.325000px;}
.yb7_c00241{bottom:431.745000px;}
.ybb_c00241{bottom:432.405000px;}
.yba_c00241{bottom:432.825000px;}
.yb8_c00241{bottom:433.905000px;}
.yb9_c00241{bottom:434.970000px;}
.yb2_c00241{bottom:451.245000px;}
.yb6_c00241{bottom:452.325000px;}
.yb3_c00241{bottom:452.745000px;}
.yb5_c00241{bottom:453.405000px;}
.yb4_c00241{bottom:454.905000px;}
.yb0_c00241{bottom:472.245000px;}
.yb1_c00241{bottom:472.905000px;}
.yaf_c00241{bottom:473.130000px;}
.yae_c00241{bottom:474.405000px;}
.yad_c00241{bottom:493.905000px;}
.yaa_c00241{bottom:510.825000px;}
.ya7_c00241{bottom:511.245000px;}
.yab_c00241{bottom:511.905000px;}
.ya9_c00241{bottom:512.130000px;}
.yac_c00241{bottom:512.970000px;}
.ya8_c00241{bottom:513.405000px;}
.ya5_c00241{bottom:529.245000px;}
.ya4_c00241{bottom:530.745000px;}
.ya6_c00241{bottom:531.405000px;}
.ya3_c00241{bottom:532.905000px;}
.y9f_c00241{bottom:550.245000px;}
.ya1_c00241{bottom:552.405000px;}
.ya2_c00241{bottom:552.630000px;}
.ya0_c00241{bottom:553.920000px;}
.y9b_c00241{bottom:575.970000px;}
.y9e_c00241{bottom:577.050000px;}
.y9d_c00241{bottom:577.905000px;}
.y99_c00241{bottom:578.970000px;}
.y9a_c00241{bottom:579.195000px;}
.y9c_c00241{bottom:580.050000px;}
.y98_c00241{bottom:591.405000px;}
.y95_c00241{bottom:591.825000px;}
.y96_c00241{bottom:592.050000px;}
.y97_c00241{bottom:592.470000px;}
.y92_c00241{bottom:592.905000px;}
.y91_c00241{bottom:593.130000px;}
.y93_c00241{bottom:593.970000px;}
.y94_c00241{bottom:594.195000px;}
.y8f_c00241{bottom:605.970000px;}
.y8c_c00241{bottom:607.905000px;}
.y90_c00241{bottom:608.970000px;}
.y8d_c00241{bottom:609.195000px;}
.y8e_c00241{bottom:610.050000px;}
.y8b_c00241{bottom:621.405000px;}
.y8a_c00241{bottom:621.825000px;}
.y87_c00241{bottom:622.050000px;}
.y89_c00241{bottom:622.905000px;}
.y84_c00241{bottom:623.130000px;}
.y88_c00241{bottom:623.550000px;}
.y86_c00241{bottom:623.970000px;}
.y85_c00241{bottom:625.050000px;}
.y82_c00241{bottom:636.405000px;}
.y83_c00241{bottom:637.905000px;}
.y7e_c00241{bottom:638.130000px;}
.y81_c00241{bottom:638.970000px;}
.y7f_c00241{bottom:639.195000px;}
.y80_c00241{bottom:640.050000px;}
.y7d_c00241{bottom:650.325000px;}
.y7c_c00241{bottom:650.550000px;}
.y7a_c00241{bottom:651.405000px;}
.y78_c00241{bottom:652.050000px;}
.y79_c00241{bottom:652.470000px;}
.y7b_c00241{bottom:653.550000px;}
.y76_c00241{bottom:665.325000px;}
.y73_c00241{bottom:666.405000px;}
.y75_c00241{bottom:667.470000px;}
.y74_c00241{bottom:668.130000px;}
.y77_c00241{bottom:668.550000px;}
.y72_c00241{bottom:680.325000px;}
.y71_c00241{bottom:681.405000px;}
.y6f_c00241{bottom:682.470000px;}
.y70_c00241{bottom:682.695000px;}
.y6c_c00241{bottom:695.325000px;}
.y6d_c00241{bottom:696.405000px;}
.y6b_c00241{bottom:697.470000px;}
.y6a_c00241{bottom:697.695000px;}
.y6e_c00241{bottom:698.550000px;}
.y63_c00241{bottom:710.550000px;}
.y66_c00241{bottom:711.405000px;}
.y65_c00241{bottom:711.630000px;}
.y68_c00241{bottom:712.050000px;}
.y69_c00241{bottom:712.470000px;}
.y67_c00241{bottom:712.695000px;}
.y64_c00241{bottom:713.550000px;}
.y60_c00241{bottom:724.905000px;}
.y62_c00241{bottom:727.050000px;}
.y61_c00241{bottom:727.695000px;}
.y5f_c00241{bottom:738.825000px;}
.y5d_c00241{bottom:739.905000px;}
.y5e_c00241{bottom:740.130000px;}
.y5c_c00241{bottom:740.325000px;}
.y5b_c00241{bottom:740.970000px;}
.y59_c00241{bottom:742.050000px;}
.y5a_c00241{bottom:742.470000px;}
.y52_c00241{bottom:754.470000px;}
.y58_c00241{bottom:755.325000px;}
.y53_c00241{bottom:756.405000px;}
.y54_c00241{bottom:757.050000px;}
.y57_c00241{bottom:757.470000px;}
.y56_c00241{bottom:757.695000px;}
.y55_c00241{bottom:758.550000px;}
.y4f_c00241{bottom:769.905000px;}
.y4a_c00241{bottom:770.325000px;}
.y49_c00241{bottom:770.550000px;}
.y50_c00241{bottom:770.970000px;}
.y4c_c00241{bottom:771.405000px;}
.y51_c00241{bottom:771.630000px;}
.y4e_c00241{bottom:772.050000px;}
.y4b_c00241{bottom:772.470000px;}
.y4d_c00241{bottom:772.695000px;}
.y48_c00241{bottom:782.970000px;}
.y47_c00241{bottom:784.905000px;}
.y44_c00241{bottom:785.970000px;}
.y45_c00241{bottom:786.195000px;}
.y46_c00241{bottom:787.050000px;}
.y42_c00241{bottom:798.825000px;}
.y40_c00241{bottom:799.050000px;}
.y43_c00241{bottom:800.970000px;}
.y41_c00241{bottom:802.050000px;}
.y3f_c00241{bottom:814.470000px;}
.y3c_c00241{bottom:814.905000px;}
.y3e_c00241{bottom:815.130000px;}
.y3d_c00241{bottom:817.050000px;}
.y3b_c00241{bottom:829.470000px;}
.y39_c00241{bottom:829.905000px;}
.y38_c00241{bottom:830.130000px;}
.y3a_c00241{bottom:830.550000px;}
.y37_c00241{bottom:830.970000px;}
.y36_c00241{bottom:831.195000px;}
.y32_c00241{bottom:842.970000px;}
.y31_c00241{bottom:843.825000px;}
.y35_c00241{bottom:844.905000px;}
.y33_c00241{bottom:845.970000px;}
.y34_c00241{bottom:847.050000px;}
.y2e_c00241{bottom:858.405000px;}
.y30_c00241{bottom:859.695000px;}
.y2d_c00241{bottom:860.130000px;}
.y2f_c00241{bottom:860.550000px;}
.y2b_c00241{bottom:884.745000px;}
.y2c_c00241{bottom:886.905000px;}
.y27_c00241{bottom:905.745000px;}
.y2a_c00241{bottom:906.405000px;}
.y29_c00241{bottom:906.630000px;}
.y28_c00241{bottom:907.905000px;}
.y25_c00241{bottom:925.245000px;}
.y26_c00241{bottom:925.905000px;}
.y24_c00241{bottom:926.970000px;}
.y23_c00241{bottom:927.405000px;}
.y22_c00241{bottom:944.325000px;}
.y1f_c00241{bottom:944.745000px;}
.y21_c00241{bottom:945.630000px;}
.y20_c00241{bottom:945.825000px;}
.y1e_c00241{bottom:946.905000px;}
.y18_c00241{bottom:961.905000px;}
.y1d_c00241{bottom:964.245000px;}
.y19_c00241{bottom:965.130000px;}
.y1b_c00241{bottom:965.970000px;}
.y1a_c00241{bottom:966.405000px;}
.y1c_c00241{bottom:967.470000px;}
.y16_c00241{bottom:981.405000px;}
.y17_c00241{bottom:983.745000px;}
.y15_c00241{bottom:985.905000px;}
.y14_c00241{bottom:1002.405000px;}
.y13_c00241{bottom:1003.245000px;}
.y12_c00241{bottom:1005.405000px;}
.yf_c00241{bottom:1020.405000px;}
.ye_c00241{bottom:1022.745000px;}
.y11_c00241{bottom:1023.630000px;}
.y10_c00241{bottom:1024.470000px;}
.yc_c00241{bottom:1024.905000px;}
.yd_c00241{bottom:1025.970000px;}
.ya_c00241{bottom:1042.245000px;}
.yb_c00241{bottom:1043.970000px;}
.y9_c00241{bottom:1044.405000px;}
.y5_c00241{bottom:1061.745000px;}
.y8_c00241{bottom:1061.970000px;}
.y3_c00241{bottom:1063.905000px;}
.y7_c00241{bottom:1064.130000px;}
.y6_c00241{bottom:1064.970000px;}
.y4_c00241{bottom:1065.420000px;}
.y2_c00241{bottom:1102.050000px;}
.y1_c00241{bottom:1103.130000px;}
.h4_c00241{height:4.206533px;}
.h8_c00241{height:16.752334px;}
.h1_c00241{height:23.025234px;}
.h2_c00241{height:25.091602px;}
.h6_c00241{height:31.364502px;}
.h3_c00241{height:35.571035px;}
.h9_c00241{height:39.044502px;}
.h7_c00241{height:39.777568px;}
.h5_c00241{height:43.910303px;}
.h0_c00241{height:1335.000000px;}
.w0_c00241{width:880.500000px;}
.x0_c00241{left:0.000000px;}
.xf8_c00241{left:148.920000px;}
.xd2_c00241{left:150.000000px;}
.xb2_c00241{left:151.080000px;}
.x10_c00241{left:153.000000px;}
.x1_c00241{left:154.500000px;}
.xa7_c00241{left:163.500000px;}
.xb8_c00241{left:165.420000px;}
.x75_c00241{left:166.500000px;}
.x67_c00241{left:167.580000px;}
.x3_c00241{left:169.080000px;}
.x71_c00241{left:179.580000px;}
.x4f_c00241{left:181.500000px;}
.x33_c00241{left:183.420000px;}
.x68_c00241{left:184.500000px;}
.x91_c00241{left:185.580000px;}
.x3d_c00241{left:189.000000px;}
.xc2_c00241{left:190.500000px;}
.xbf_c00241{left:193.500000px;}
.xcd_c00241{left:194.580000px;}
.x9d_c00241{left:196.500000px;}
.xa8_c00241{left:197.580000px;}
.x28_c00241{left:204.000000px;}
.xc0_c00241{left:205.500000px;}
.x9e_c00241{left:207.000000px;}
.x7d_c00241{left:208.500000px;}
.x89_c00241{left:210.000000px;}
.x3e_c00241{left:211.080000px;}
.x46_c00241{left:213.645000px;}
.x105_c00241{left:214.920000px;}
.xb9_c00241{left:217.500000px;}
.xc7_c00241{left:219.000000px;}
.x11_c00241{left:220.080000px;}
.x72_c00241{left:223.500000px;}
.x1b_c00241{left:224.580000px;}
.x76_c00241{left:226.500000px;}
.xfe_c00241{left:229.500000px;}
.xb3_c00241{left:230.580000px;}
.x69_c00241{left:232.500000px;}
.x12_c00241{left:239.580000px;}
.xd3_c00241{left:242.580000px;}
.xdd_c00241{left:249.000000px;}
.x50_c00241{left:250.920000px;}
.x73_c00241{left:252.420000px;}
.x4_c00241{left:253.500000px;}
.xf9_c00241{left:255.000000px;}
.x77_c00241{left:256.080000px;}
.x10a_c00241{left:258.420000px;}
.x1c_c00241{left:259.500000px;}
.xff_c00241{left:262.920000px;}
.x29_c00241{left:264.000000px;}
.x61_c00241{left:265.080000px;}
.xaa_c00241{left:267.000000px;}
.x47_c00241{left:268.080000px;}
.x8b_c00241{left:269.580000px;}
.x96_c00241{left:271.080000px;}
.x92_c00241{left:273.420000px;}
.xd1_c00241{left:274.500000px;}
.x5_c00241{left:275.580000px;}
.x1d_c00241{left:277.080000px;}
.x10f_c00241{left:278.580000px;}
.x74_c00241{left:280.500000px;}
.x9f_c00241{left:282.420000px;}
.x8c_c00241{left:284.145000px;}
.xb4_c00241{left:285.420000px;}
.x10b_c00241{left:286.500000px;}
.x93_c00241{left:288.645000px;}
.xfb_c00241{left:291.000000px;}
.x8a_c00241{left:292.080000px;}
.xba_c00241{left:293.355000px;}
.xd4_c00241{left:294.420000px;}
.xec_c00241{left:295.500000px;}
.x2a_c00241{left:296.580000px;}
.xa9_c00241{left:298.920000px;}
.x106_c00241{left:300.000000px;}
.x51_c00241{left:301.500000px;}
.x48_c00241{left:304.500000px;}
.xa1_c00241{left:306.000000px;}
.x6a_c00241{left:307.500000px;}
.x34_c00241{left:309.420000px;}
.xc9_c00241{left:310.500000px;}
.x13_c00241{left:311.580000px;}
.xc3_c00241{left:314.355000px;}
.xf6_c00241{left:315.420000px;}
.x100_c00241{left:316.500000px;}
.x52_c00241{left:321.000000px;}
.x5b_c00241{left:322.080000px;}
.xa0_c00241{left:324.000000px;}
.x97_c00241{left:325.500000px;}
.xb5_c00241{left:329.580000px;}
.x1e_c00241{left:331.500000px;}
.xc8_c00241{left:334.500000px;}
.x2b_c00241{left:335.580000px;}
.x62_c00241{left:337.500000px;}
.x82_c00241{left:339.000000px;}
.xc1_c00241{left:342.420000px;}
.x14_c00241{left:343.500000px;}
.xbb_c00241{left:346.500000px;}
.xe0_c00241{left:348.000000px;}
.x6_c00241{left:349.500000px;}
.x101_c00241{left:352.080000px;}
.xab_c00241{left:353.145000px;}
.xb6_c00241{left:356.580000px;}
.x6b_c00241{left:360.000000px;}
.xe7_c00241{left:361.920000px;}
.x15_c00241{left:363.420000px;}
.x7e_c00241{left:364.920000px;}
.x1f_c00241{left:366.000000px;}
.x7_c00241{left:369.645000px;}
.xa2_c00241{left:370.920000px;}
.x53_c00241{left:372.000000px;}
.x110_c00241{left:373.080000px;}
.x7f_c00241{left:375.000000px;}
.x8d_c00241{left:376.500000px;}
.x94_c00241{left:379.500000px;}
.x5c_c00241{left:381.000000px;}
.x20_c00241{left:385.920000px;}
.xe8_c00241{left:388.500000px;}
.x16_c00241{left:391.500000px;}
.x49_c00241{left:392.580000px;}
.x35_c00241{left:394.080000px;}
.xac_c00241{left:397.500000px;}
.x102_c00241{left:399.000000px;}
.x2c_c00241{left:400.080000px;}
.x78_c00241{left:401.580000px;}
.x83_c00241{left:403.920000px;}
.x10c_c00241{left:405.000000px;}
.xe1_c00241{left:406.080000px;}
.x3f_c00241{left:408.420000px;}
.x80_c00241{left:409.500000px;}
.x2_c00241{left:411.000000px;}
.x21_c00241{left:412.920000px;}
.xce_c00241{left:415.500000px;}
.x84_c00241{left:418.500000px;}
.x5d_c00241{left:419.580000px;}
.x54_c00241{left:421.920000px;}
.xf1_c00241{left:423.000000px;}
.xde_c00241{left:424.080000px;}
.xed_c00241{left:426.420000px;}
.x107_c00241{left:427.500000px;}
.xa3_c00241{left:429.420000px;}
.x8_c00241{left:430.500000px;}
.x2d_c00241{left:433.500000px;}
.x40_c00241{left:435.000000px;}
.x8e_c00241{left:436.080000px;}
.x81_c00241{left:437.580000px;}
.xd5_c00241{left:439.080000px;}
.x95_c00241{left:441.000000px;}
.x108_c00241{left:442.500000px;}
.xca_c00241{left:444.000000px;}
.xc4_c00241{left:447.000000px;}
.x36_c00241{left:448.500000px;}
.xdf_c00241{left:450.420000px;}
.x63_c00241{left:453.420000px;}
.x17_c00241{left:454.500000px;}
.xb7_c00241{left:456.000000px;}
.xd6_c00241{left:457.920000px;}
.xad_c00241{left:463.080000px;}
.x41_c00241{left:465.420000px;}
.x79_c00241{left:466.500000px;}
.x2e_c00241{left:468.000000px;}
.xfa_c00241{left:471.000000px;}
.x4a_c00241{left:473.775000px;}
.xcf_c00241{left:477.000000px;}
.x5e_c00241{left:478.920000px;}
.x55_c00241{left:480.000000px;}
.x64_c00241{left:481.920000px;}
.x37_c00241{left:484.080000px;}
.xe2_c00241{left:486.420000px;}
.x6c_c00241{left:487.920000px;}
.xbc_c00241{left:490.920000px;}
.x9_c00241{left:492.000000px;}
.xfc_c00241{left:493.080000px;}
.xae_c00241{left:495.000000px;}
.x98_c00241{left:496.500000px;}
.xf2_c00241{left:498.000000px;}
.x10d_c00241{left:499.500000px;}
.x42_c00241{left:504.000000px;}
.x22_c00241{left:505.500000px;}
.xa4_c00241{left:507.000000px;}
.xa_c00241{left:509.580000px;}
.xe9_c00241{left:511.080000px;}
.x38_c00241{left:514.920000px;}
.x85_c00241{left:516.000000px;}
.x4b_c00241{left:517.500000px;}
.xda_c00241{left:520.500000px;}
.x8f_c00241{left:522.420000px;}
.xf3_c00241{left:524.580000px;}
.xcb_c00241{left:528.000000px;}
.xb_c00241{left:529.080000px;}
.xd0_c00241{left:531.000000px;}
.x56_c00241{left:532.080000px;}
.x10e_c00241{left:533.580000px;}
.x57_c00241{left:536.145000px;}
.x23_c00241{left:539.580000px;}
.x2f_c00241{left:544.920000px;}
.x18_c00241{left:550.080000px;}
.x7a_c00241{left:552.000000px;}
.x5f_c00241{left:553.080000px;}
.x99_c00241{left:557.580000px;}
.x109_c00241{left:561.420000px;}
.x4c_c00241{left:564.000000px;}
.xc_c00241{left:565.080000px;}
.xaf_c00241{left:566.580000px;}
.x39_c00241{left:568.500000px;}
.x43_c00241{left:569.580000px;}
.xee_c00241{left:571.500000px;}
.x30_c00241{left:573.000000px;}
.x7b_c00241{left:574.500000px;}
.xc5_c00241{left:576.420000px;}
.x6d_c00241{left:577.500000px;}
.x103_c00241{left:579.000000px;}
.x86_c00241{left:580.920000px;}
.xe3_c00241{left:586.080000px;}
.xb0_c00241{left:588.000000px;}
.xdb_c00241{left:589.500000px;}
.x24_c00241{left:591.420000px;}
.xd7_c00241{left:592.500000px;}
.x87_c00241{left:595.500000px;}
.x58_c00241{left:597.420000px;}
.x3a_c00241{left:602.145000px;}
.x90_c00241{left:604.080000px;}
.xe4_c00241{left:606.420000px;}
.xd8_c00241{left:607.920000px;}
.xf4_c00241{left:609.420000px;}
.xfd_c00241{left:610.500000px;}
.xa5_c00241{left:612.000000px;}
.xbd_c00241{left:613.500000px;}
.x9a_c00241{left:615.420000px;}
.x65_c00241{left:616.500000px;}
.x25_c00241{left:617.580000px;}
.x31_c00241{left:624.420000px;}
.x19_c00241{left:628.080000px;}
.x4d_c00241{left:630.000000px;}
.x6e_c00241{left:632.580000px;}
.xd9_c00241{left:634.500000px;}
.x66_c00241{left:635.580000px;}
.xcc_c00241{left:640.920000px;}
.xea_c00241{left:643.920000px;}
.x44_c00241{left:646.500000px;}
.xd_c00241{left:649.080000px;}
.x104_c00241{left:651.000000px;}
.x26_c00241{left:655.500000px;}
.xf5_c00241{left:658.920000px;}
.x4e_c00241{left:660.000000px;}
.x32_c00241{left:661.500000px;}
.x9b_c00241{left:662.580000px;}
.x3b_c00241{left:664.080000px;}
.xc6_c00241{left:666.000000px;}
.xef_c00241{left:668.580000px;}
.xeb_c00241{left:670.500000px;}
.xe5_c00241{left:672.000000px;}
.x88_c00241{left:673.500000px;}
.x1a_c00241{left:675.000000px;}
.xf7_c00241{left:677.580000px;}
.xa6_c00241{left:679.500000px;}
.x7c_c00241{left:681.000000px;}
.x59_c00241{left:683.580000px;}
.x27_c00241{left:687.420000px;}
.xe_c00241{left:688.500000px;}
.xf0_c00241{left:690.000000px;}
.x6f_c00241{left:691.080000px;}
.x9c_c00241{left:693.420000px;}
.xb1_c00241{left:695.580000px;}
.xbe_c00241{left:700.500000px;}
.x70_c00241{left:702.000000px;}
.xdc_c00241{left:703.080000px;}
.x45_c00241{left:705.000000px;}
.x60_c00241{left:706.920000px;}
.xf_c00241{left:709.920000px;}
.x3c_c00241{left:711.000000px;}
.x5a_c00241{left:714.645000px;}
.xe6_c00241{left:718.500000px;}
@media print{
.v0_c00241{vertical-align:0.000000pt;}
.v1_c00241{vertical-align:6.826667pt;}
.ls1_c00241{letter-spacing:0.000000pt;}
.ls0_c00241{letter-spacing:7.837867pt;}
.ws0_c00241{word-spacing:-7.152827pt;}
.ws1_c00241{word-spacing:-5.497444pt;}
.ws2_c00241{word-spacing:0.000000pt;}
.fs3_c00241{font-size:3.040000pt;}
.fs7_c00241{font-size:12.106667pt;}
.fs0_c00241{font-size:16.640000pt;}
.fs1_c00241{font-size:18.133333pt;}
.fs5_c00241{font-size:22.666667pt;}
.fs2_c00241{font-size:25.706667pt;}
.fs6_c00241{font-size:28.746667pt;}
.fs4_c00241{font-size:31.733333pt;}
.y0_c00241{bottom:0.000000pt;}
.yec_c00241{bottom:224.360000pt;}
.yee_c00241{bottom:225.106667pt;}
.yef_c00241{bottom:226.266667pt;}
.ye9_c00241{bottom:227.026667pt;}
.yed_c00241{bottom:227.226667pt;}
.yea_c00241{bottom:227.973333pt;}
.yeb_c00241{bottom:228.360000pt;}
.ye7_c00241{bottom:241.693333pt;}
.ye5_c00241{bottom:243.773333pt;}
.ye8_c00241{bottom:244.360000pt;}
.ye6_c00241{bottom:244.560000pt;}
.ye4_c00241{bottom:245.693333pt;}
.ye0_c00241{bottom:259.773333pt;}
.ye3_c00241{bottom:259.973333pt;}
.ye2_c00241{bottom:261.106667pt;}
.ye1_c00241{bottom:261.893333pt;}
.ydf_c00241{bottom:263.026667pt;}
.ydc_c00241{bottom:278.066667pt;}
.yda_c00241{bottom:278.440000pt;}
.yd9_c00241{bottom:279.226667pt;}
.ydd_c00241{bottom:279.400000pt;}
.ydb_c00241{bottom:280.360000pt;}
.yde_c00241{bottom:281.306667pt;}
.yd6_c00241{bottom:294.440000pt;}
.yd8_c00241{bottom:296.560000pt;}
.yd4_c00241{bottom:297.306667pt;}
.yd5_c00241{bottom:297.693333pt;}
.yd7_c00241{bottom:299.026667pt;}
.yce_c00241{bottom:313.106667pt;}
.yd0_c00241{bottom:314.440000pt;}
.yd3_c00241{bottom:315.026667pt;}
.ycf_c00241{bottom:315.226667pt;}
.yd2_c00241{bottom:315.973333pt;}
.yd1_c00241{bottom:316.360000pt;}
.ycc_c00241{bottom:331.773333pt;}
.ycd_c00241{bottom:332.360000pt;}
.ycb_c00241{bottom:332.560000pt;}
.yca_c00241{bottom:333.693333pt;}
.yc5_c00241{bottom:348.933333pt;}
.yc7_c00241{bottom:349.106667pt;}
.yc9_c00241{bottom:349.693333pt;}
.yc8_c00241{bottom:349.893333pt;}
.yc6_c00241{bottom:351.026667pt;}
.yc4_c00241{bottom:365.106667pt;}
.ybd_c00241{bottom:365.306667pt;}
.ybe_c00241{bottom:366.440000pt;}
.yc1_c00241{bottom:367.226667pt;}
.ybf_c00241{bottom:367.400000pt;}
.yc3_c00241{bottom:367.973333pt;}
.yc0_c00241{bottom:368.360000pt;}
.yc2_c00241{bottom:369.306667pt;}
.ybc_c00241{bottom:383.400000pt;}
.yb7_c00241{bottom:383.773333pt;}
.ybb_c00241{bottom:384.360000pt;}
.yba_c00241{bottom:384.733333pt;}
.yb8_c00241{bottom:385.693333pt;}
.yb9_c00241{bottom:386.640000pt;}
.yb2_c00241{bottom:401.106667pt;}
.yb6_c00241{bottom:402.066667pt;}
.yb3_c00241{bottom:402.440000pt;}
.yb5_c00241{bottom:403.026667pt;}
.yb4_c00241{bottom:404.360000pt;}
.yb0_c00241{bottom:419.773333pt;}
.yb1_c00241{bottom:420.360000pt;}
.yaf_c00241{bottom:420.560000pt;}
.yae_c00241{bottom:421.693333pt;}
.yad_c00241{bottom:439.026667pt;}
.yaa_c00241{bottom:454.066667pt;}
.ya7_c00241{bottom:454.440000pt;}
.yab_c00241{bottom:455.026667pt;}
.ya9_c00241{bottom:455.226667pt;}
.yac_c00241{bottom:455.973333pt;}
.ya8_c00241{bottom:456.360000pt;}
.ya5_c00241{bottom:470.440000pt;}
.ya4_c00241{bottom:471.773333pt;}
.ya6_c00241{bottom:472.360000pt;}
.ya3_c00241{bottom:473.693333pt;}
.y9f_c00241{bottom:489.106667pt;}
.ya1_c00241{bottom:491.026667pt;}
.ya2_c00241{bottom:491.226667pt;}
.ya0_c00241{bottom:492.373333pt;}
.y9b_c00241{bottom:511.973333pt;}
.y9e_c00241{bottom:512.933333pt;}
.y9d_c00241{bottom:513.693333pt;}
.y99_c00241{bottom:514.640000pt;}
.y9a_c00241{bottom:514.840000pt;}
.y9c_c00241{bottom:515.600000pt;}
.y98_c00241{bottom:525.693333pt;}
.y95_c00241{bottom:526.066667pt;}
.y96_c00241{bottom:526.266667pt;}
.y97_c00241{bottom:526.640000pt;}
.y92_c00241{bottom:527.026667pt;}
.y91_c00241{bottom:527.226667pt;}
.y93_c00241{bottom:527.973333pt;}
.y94_c00241{bottom:528.173333pt;}
.y8f_c00241{bottom:538.640000pt;}
.y8c_c00241{bottom:540.360000pt;}
.y90_c00241{bottom:541.306667pt;}
.y8d_c00241{bottom:541.506667pt;}
.y8e_c00241{bottom:542.266667pt;}
.y8b_c00241{bottom:552.360000pt;}
.y8a_c00241{bottom:552.733333pt;}
.y87_c00241{bottom:552.933333pt;}
.y89_c00241{bottom:553.693333pt;}
.y84_c00241{bottom:553.893333pt;}
.y88_c00241{bottom:554.266667pt;}
.y86_c00241{bottom:554.640000pt;}
.y85_c00241{bottom:555.600000pt;}
.y82_c00241{bottom:565.693333pt;}
.y83_c00241{bottom:567.026667pt;}
.y7e_c00241{bottom:567.226667pt;}
.y81_c00241{bottom:567.973333pt;}
.y7f_c00241{bottom:568.173333pt;}
.y80_c00241{bottom:568.933333pt;}
.y7d_c00241{bottom:578.066667pt;}
.y7c_c00241{bottom:578.266667pt;}
.y7a_c00241{bottom:579.026667pt;}
.y78_c00241{bottom:579.600000pt;}
.y79_c00241{bottom:579.973333pt;}
.y7b_c00241{bottom:580.933333pt;}
.y76_c00241{bottom:591.400000pt;}
.y73_c00241{bottom:592.360000pt;}
.y75_c00241{bottom:593.306667pt;}
.y74_c00241{bottom:593.893333pt;}
.y77_c00241{bottom:594.266667pt;}
.y72_c00241{bottom:604.733333pt;}
.y71_c00241{bottom:605.693333pt;}
.y6f_c00241{bottom:606.640000pt;}
.y70_c00241{bottom:606.840000pt;}
.y6c_c00241{bottom:618.066667pt;}
.y6d_c00241{bottom:619.026667pt;}
.y6b_c00241{bottom:619.973333pt;}
.y6a_c00241{bottom:620.173333pt;}
.y6e_c00241{bottom:620.933333pt;}
.y63_c00241{bottom:631.600000pt;}
.y66_c00241{bottom:632.360000pt;}
.y65_c00241{bottom:632.560000pt;}
.y68_c00241{bottom:632.933333pt;}
.y69_c00241{bottom:633.306667pt;}
.y67_c00241{bottom:633.506667pt;}
.y64_c00241{bottom:634.266667pt;}
.y60_c00241{bottom:644.360000pt;}
.y62_c00241{bottom:646.266667pt;}
.y61_c00241{bottom:646.840000pt;}
.y5f_c00241{bottom:656.733333pt;}
.y5d_c00241{bottom:657.693333pt;}
.y5e_c00241{bottom:657.893333pt;}
.y5c_c00241{bottom:658.066667pt;}
.y5b_c00241{bottom:658.640000pt;}
.y59_c00241{bottom:659.600000pt;}
.y5a_c00241{bottom:659.973333pt;}
.y52_c00241{bottom:670.640000pt;}
.y58_c00241{bottom:671.400000pt;}
.y53_c00241{bottom:672.360000pt;}
.y54_c00241{bottom:672.933333pt;}
.y57_c00241{bottom:673.306667pt;}
.y56_c00241{bottom:673.506667pt;}
.y55_c00241{bottom:674.266667pt;}
.y4f_c00241{bottom:684.360000pt;}
.y4a_c00241{bottom:684.733333pt;}
.y49_c00241{bottom:684.933333pt;}
.y50_c00241{bottom:685.306667pt;}
.y4c_c00241{bottom:685.693333pt;}
.y51_c00241{bottom:685.893333pt;}
.y4e_c00241{bottom:686.266667pt;}
.y4b_c00241{bottom:686.640000pt;}
.y4d_c00241{bottom:686.840000pt;}
.y48_c00241{bottom:695.973333pt;}
.y47_c00241{bottom:697.693333pt;}
.y44_c00241{bottom:698.640000pt;}
.y45_c00241{bottom:698.840000pt;}
.y46_c00241{bottom:699.600000pt;}
.y42_c00241{bottom:710.066667pt;}
.y40_c00241{bottom:710.266667pt;}
.y43_c00241{bottom:711.973333pt;}
.y41_c00241{bottom:712.933333pt;}
.y3f_c00241{bottom:723.973333pt;}
.y3c_c00241{bottom:724.360000pt;}
.y3e_c00241{bottom:724.560000pt;}
.y3d_c00241{bottom:726.266667pt;}
.y3b_c00241{bottom:737.306667pt;}
.y39_c00241{bottom:737.693333pt;}
.y38_c00241{bottom:737.893333pt;}
.y3a_c00241{bottom:738.266667pt;}
.y37_c00241{bottom:738.640000pt;}
.y36_c00241{bottom:738.840000pt;}
.y32_c00241{bottom:749.306667pt;}
.y31_c00241{bottom:750.066667pt;}
.y35_c00241{bottom:751.026667pt;}
.y33_c00241{bottom:751.973333pt;}
.y34_c00241{bottom:752.933333pt;}
.y2e_c00241{bottom:763.026667pt;}
.y30_c00241{bottom:764.173333pt;}
.y2d_c00241{bottom:764.560000pt;}
.y2f_c00241{bottom:764.933333pt;}
.y2b_c00241{bottom:786.440000pt;}
.y2c_c00241{bottom:788.360000pt;}
.y27_c00241{bottom:805.106667pt;}
.y2a_c00241{bottom:805.693333pt;}
.y29_c00241{bottom:805.893333pt;}
.y28_c00241{bottom:807.026667pt;}
.y25_c00241{bottom:822.440000pt;}
.y26_c00241{bottom:823.026667pt;}
.y24_c00241{bottom:823.973333pt;}
.y23_c00241{bottom:824.360000pt;}
.y22_c00241{bottom:839.400000pt;}
.y1f_c00241{bottom:839.773333pt;}
.y21_c00241{bottom:840.560000pt;}
.y20_c00241{bottom:840.733333pt;}
.y1e_c00241{bottom:841.693333pt;}
.y18_c00241{bottom:855.026667pt;}
.y1d_c00241{bottom:857.106667pt;}
.y19_c00241{bottom:857.893333pt;}
.y1b_c00241{bottom:858.640000pt;}
.y1a_c00241{bottom:859.026667pt;}
.y1c_c00241{bottom:859.973333pt;}
.y16_c00241{bottom:872.360000pt;}
.y17_c00241{bottom:874.440000pt;}
.y15_c00241{bottom:876.360000pt;}
.y14_c00241{bottom:891.026667pt;}
.y13_c00241{bottom:891.773333pt;}
.y12_c00241{bottom:893.693333pt;}
.yf_c00241{bottom:907.026667pt;}
.ye_c00241{bottom:909.106667pt;}
.y11_c00241{bottom:909.893333pt;}
.y10_c00241{bottom:910.640000pt;}
.yc_c00241{bottom:911.026667pt;}
.yd_c00241{bottom:911.973333pt;}
.ya_c00241{bottom:926.440000pt;}
.yb_c00241{bottom:927.973333pt;}
.y9_c00241{bottom:928.360000pt;}
.y5_c00241{bottom:943.773333pt;}
.y8_c00241{bottom:943.973333pt;}
.y3_c00241{bottom:945.693333pt;}
.y7_c00241{bottom:945.893333pt;}
.y6_c00241{bottom:946.640000pt;}
.y4_c00241{bottom:947.040000pt;}
.y2_c00241{bottom:979.600000pt;}
.y1_c00241{bottom:980.560000pt;}
.h4_c00241{height:3.739141pt;}
.h8_c00241{height:14.890964pt;}
.h1_c00241{height:20.466875pt;}
.h2_c00241{height:22.303646pt;}
.h6_c00241{height:27.879557pt;}
.h3_c00241{height:31.618698pt;}
.h9_c00241{height:34.706224pt;}
.h7_c00241{height:35.357839pt;}
.h5_c00241{height:39.031380pt;}
.h0_c00241{height:1186.666667pt;}
.w0_c00241{width:782.666667pt;}
.x0_c00241{left:0.000000pt;}
.xf8_c00241{left:132.373333pt;}
.xd2_c00241{left:133.333333pt;}
.xb2_c00241{left:134.293333pt;}
.x10_c00241{left:136.000000pt;}
.x1_c00241{left:137.333333pt;}
.xa7_c00241{left:145.333333pt;}
.xb8_c00241{left:147.040000pt;}
.x75_c00241{left:148.000000pt;}
.x67_c00241{left:148.960000pt;}
.x3_c00241{left:150.293333pt;}
.x71_c00241{left:159.626667pt;}
.x4f_c00241{left:161.333333pt;}
.x33_c00241{left:163.040000pt;}
.x68_c00241{left:164.000000pt;}
.x91_c00241{left:164.960000pt;}
.x3d_c00241{left:168.000000pt;}
.xc2_c00241{left:169.333333pt;}
.xbf_c00241{left:172.000000pt;}
.xcd_c00241{left:172.960000pt;}
.x9d_c00241{left:174.666667pt;}
.xa8_c00241{left:175.626667pt;}
.x28_c00241{left:181.333333pt;}
.xc0_c00241{left:182.666667pt;}
.x9e_c00241{left:184.000000pt;}
.x7d_c00241{left:185.333333pt;}
.x89_c00241{left:186.666667pt;}
.x3e_c00241{left:187.626667pt;}
.x46_c00241{left:189.906667pt;}
.x105_c00241{left:191.040000pt;}
.xb9_c00241{left:193.333333pt;}
.xc7_c00241{left:194.666667pt;}
.x11_c00241{left:195.626667pt;}
.x72_c00241{left:198.666667pt;}
.x1b_c00241{left:199.626667pt;}
.x76_c00241{left:201.333333pt;}
.xfe_c00241{left:204.000000pt;}
.xb3_c00241{left:204.960000pt;}
.x69_c00241{left:206.666667pt;}
.x12_c00241{left:212.960000pt;}
.xd3_c00241{left:215.626667pt;}
.xdd_c00241{left:221.333333pt;}
.x50_c00241{left:223.040000pt;}
.x73_c00241{left:224.373333pt;}
.x4_c00241{left:225.333333pt;}
.xf9_c00241{left:226.666667pt;}
.x77_c00241{left:227.626667pt;}
.x10a_c00241{left:229.706667pt;}
.x1c_c00241{left:230.666667pt;}
.xff_c00241{left:233.706667pt;}
.x29_c00241{left:234.666667pt;}
.x61_c00241{left:235.626667pt;}
.xaa_c00241{left:237.333333pt;}
.x47_c00241{left:238.293333pt;}
.x8b_c00241{left:239.626667pt;}
.x96_c00241{left:240.960000pt;}
.x92_c00241{left:243.040000pt;}
.xd1_c00241{left:244.000000pt;}
.x5_c00241{left:244.960000pt;}
.x1d_c00241{left:246.293333pt;}
.x10f_c00241{left:247.626667pt;}
.x74_c00241{left:249.333333pt;}
.x9f_c00241{left:251.040000pt;}
.x8c_c00241{left:252.573333pt;}
.xb4_c00241{left:253.706667pt;}
.x10b_c00241{left:254.666667pt;}
.x93_c00241{left:256.573333pt;}
.xfb_c00241{left:258.666667pt;}
.x8a_c00241{left:259.626667pt;}
.xba_c00241{left:260.760000pt;}
.xd4_c00241{left:261.706667pt;}
.xec_c00241{left:262.666667pt;}
.x2a_c00241{left:263.626667pt;}
.xa9_c00241{left:265.706667pt;}
.x106_c00241{left:266.666667pt;}
.x51_c00241{left:268.000000pt;}
.x48_c00241{left:270.666667pt;}
.xa1_c00241{left:272.000000pt;}
.x6a_c00241{left:273.333333pt;}
.x34_c00241{left:275.040000pt;}
.xc9_c00241{left:276.000000pt;}
.x13_c00241{left:276.960000pt;}
.xc3_c00241{left:279.426667pt;}
.xf6_c00241{left:280.373333pt;}
.x100_c00241{left:281.333333pt;}
.x52_c00241{left:285.333333pt;}
.x5b_c00241{left:286.293333pt;}
.xa0_c00241{left:288.000000pt;}
.x97_c00241{left:289.333333pt;}
.xb5_c00241{left:292.960000pt;}
.x1e_c00241{left:294.666667pt;}
.xc8_c00241{left:297.333333pt;}
.x2b_c00241{left:298.293333pt;}
.x62_c00241{left:300.000000pt;}
.x82_c00241{left:301.333333pt;}
.xc1_c00241{left:304.373333pt;}
.x14_c00241{left:305.333333pt;}
.xbb_c00241{left:308.000000pt;}
.xe0_c00241{left:309.333333pt;}
.x6_c00241{left:310.666667pt;}
.x101_c00241{left:312.960000pt;}
.xab_c00241{left:313.906667pt;}
.xb6_c00241{left:316.960000pt;}
.x6b_c00241{left:320.000000pt;}
.xe7_c00241{left:321.706667pt;}
.x15_c00241{left:323.040000pt;}
.x7e_c00241{left:324.373333pt;}
.x1f_c00241{left:325.333333pt;}
.x7_c00241{left:328.573333pt;}
.xa2_c00241{left:329.706667pt;}
.x53_c00241{left:330.666667pt;}
.x110_c00241{left:331.626667pt;}
.x7f_c00241{left:333.333333pt;}
.x8d_c00241{left:334.666667pt;}
.x94_c00241{left:337.333333pt;}
.x5c_c00241{left:338.666667pt;}
.x20_c00241{left:343.040000pt;}
.xe8_c00241{left:345.333333pt;}
.x16_c00241{left:348.000000pt;}
.x49_c00241{left:348.960000pt;}
.x35_c00241{left:350.293333pt;}
.xac_c00241{left:353.333333pt;}
.x102_c00241{left:354.666667pt;}
.x2c_c00241{left:355.626667pt;}
.x78_c00241{left:356.960000pt;}
.x83_c00241{left:359.040000pt;}
.x10c_c00241{left:360.000000pt;}
.xe1_c00241{left:360.960000pt;}
.x3f_c00241{left:363.040000pt;}
.x80_c00241{left:364.000000pt;}
.x2_c00241{left:365.333333pt;}
.x21_c00241{left:367.040000pt;}
.xce_c00241{left:369.333333pt;}
.x84_c00241{left:372.000000pt;}
.x5d_c00241{left:372.960000pt;}
.x54_c00241{left:375.040000pt;}
.xf1_c00241{left:376.000000pt;}
.xde_c00241{left:376.960000pt;}
.xed_c00241{left:379.040000pt;}
.x107_c00241{left:380.000000pt;}
.xa3_c00241{left:381.706667pt;}
.x8_c00241{left:382.666667pt;}
.x2d_c00241{left:385.333333pt;}
.x40_c00241{left:386.666667pt;}
.x8e_c00241{left:387.626667pt;}
.x81_c00241{left:388.960000pt;}
.xd5_c00241{left:390.293333pt;}
.x95_c00241{left:392.000000pt;}
.x108_c00241{left:393.333333pt;}
.xca_c00241{left:394.666667pt;}
.xc4_c00241{left:397.333333pt;}
.x36_c00241{left:398.666667pt;}
.xdf_c00241{left:400.373333pt;}
.x63_c00241{left:403.040000pt;}
.x17_c00241{left:404.000000pt;}
.xb7_c00241{left:405.333333pt;}
.xd6_c00241{left:407.040000pt;}
.xad_c00241{left:411.626667pt;}
.x41_c00241{left:413.706667pt;}
.x79_c00241{left:414.666667pt;}
.x2e_c00241{left:416.000000pt;}
.xfa_c00241{left:418.666667pt;}
.x4a_c00241{left:421.133333pt;}
.xcf_c00241{left:424.000000pt;}
.x5e_c00241{left:425.706667pt;}
.x55_c00241{left:426.666667pt;}
.x64_c00241{left:428.373333pt;}
.x37_c00241{left:430.293333pt;}
.xe2_c00241{left:432.373333pt;}
.x6c_c00241{left:433.706667pt;}
.xbc_c00241{left:436.373333pt;}
.x9_c00241{left:437.333333pt;}
.xfc_c00241{left:438.293333pt;}
.xae_c00241{left:440.000000pt;}
.x98_c00241{left:441.333333pt;}
.xf2_c00241{left:442.666667pt;}
.x10d_c00241{left:444.000000pt;}
.x42_c00241{left:448.000000pt;}
.x22_c00241{left:449.333333pt;}
.xa4_c00241{left:450.666667pt;}
.xa_c00241{left:452.960000pt;}
.xe9_c00241{left:454.293333pt;}
.x38_c00241{left:457.706667pt;}
.x85_c00241{left:458.666667pt;}
.x4b_c00241{left:460.000000pt;}
.xda_c00241{left:462.666667pt;}
.x8f_c00241{left:464.373333pt;}
.xf3_c00241{left:466.293333pt;}
.xcb_c00241{left:469.333333pt;}
.xb_c00241{left:470.293333pt;}
.xd0_c00241{left:472.000000pt;}
.x56_c00241{left:472.960000pt;}
.x10e_c00241{left:474.293333pt;}
.x57_c00241{left:476.573333pt;}
.x23_c00241{left:479.626667pt;}
.x2f_c00241{left:484.373333pt;}
.x18_c00241{left:488.960000pt;}
.x7a_c00241{left:490.666667pt;}
.x5f_c00241{left:491.626667pt;}
.x99_c00241{left:495.626667pt;}
.x109_c00241{left:499.040000pt;}
.x4c_c00241{left:501.333333pt;}
.xc_c00241{left:502.293333pt;}
.xaf_c00241{left:503.626667pt;}
.x39_c00241{left:505.333333pt;}
.x43_c00241{left:506.293333pt;}
.xee_c00241{left:508.000000pt;}
.x30_c00241{left:509.333333pt;}
.x7b_c00241{left:510.666667pt;}
.xc5_c00241{left:512.373333pt;}
.x6d_c00241{left:513.333333pt;}
.x103_c00241{left:514.666667pt;}
.x86_c00241{left:516.373333pt;}
.xe3_c00241{left:520.960000pt;}
.xb0_c00241{left:522.666667pt;}
.xdb_c00241{left:524.000000pt;}
.x24_c00241{left:525.706667pt;}
.xd7_c00241{left:526.666667pt;}
.x87_c00241{left:529.333333pt;}
.x58_c00241{left:531.040000pt;}
.x3a_c00241{left:535.240000pt;}
.x90_c00241{left:536.960000pt;}
.xe4_c00241{left:539.040000pt;}
.xd8_c00241{left:540.373333pt;}
.xf4_c00241{left:541.706667pt;}
.xfd_c00241{left:542.666667pt;}
.xa5_c00241{left:544.000000pt;}
.xbd_c00241{left:545.333333pt;}
.x9a_c00241{left:547.040000pt;}
.x65_c00241{left:548.000000pt;}
.x25_c00241{left:548.960000pt;}
.x31_c00241{left:555.040000pt;}
.x19_c00241{left:558.293333pt;}
.x4d_c00241{left:560.000000pt;}
.x6e_c00241{left:562.293333pt;}
.xd9_c00241{left:564.000000pt;}
.x66_c00241{left:564.960000pt;}
.xcc_c00241{left:569.706667pt;}
.xea_c00241{left:572.373333pt;}
.x44_c00241{left:574.666667pt;}
.xd_c00241{left:576.960000pt;}
.x104_c00241{left:578.666667pt;}
.x26_c00241{left:582.666667pt;}
.xf5_c00241{left:585.706667pt;}
.x4e_c00241{left:586.666667pt;}
.x32_c00241{left:588.000000pt;}
.x9b_c00241{left:588.960000pt;}
.x3b_c00241{left:590.293333pt;}
.xc6_c00241{left:592.000000pt;}
.xef_c00241{left:594.293333pt;}
.xeb_c00241{left:596.000000pt;}
.xe5_c00241{left:597.333333pt;}
.x88_c00241{left:598.666667pt;}
.x1a_c00241{left:600.000000pt;}
.xf7_c00241{left:602.293333pt;}
.xa6_c00241{left:604.000000pt;}
.x7c_c00241{left:605.333333pt;}
.x59_c00241{left:607.626667pt;}
.x27_c00241{left:611.040000pt;}
.xe_c00241{left:612.000000pt;}
.xf0_c00241{left:613.333333pt;}
.x6f_c00241{left:614.293333pt;}
.x9c_c00241{left:616.373333pt;}
.xb1_c00241{left:618.293333pt;}
.xbe_c00241{left:622.666667pt;}
.x70_c00241{left:624.000000pt;}
.xdc_c00241{left:624.960000pt;}
.x45_c00241{left:626.666667pt;}
.x60_c00241{left:628.373333pt;}
.xf_c00241{left:631.040000pt;}
.x3c_c00241{left:632.000000pt;}
.x5a_c00241{left:635.240000pt;}
.xe6_c00241{left:638.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_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_50d9761b624662d1d371528b.woff2')format("woff");}.ff1_c00242{font-family:ff1_c00242;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md2_c00242{transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);}
.m9c_c00242{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00242{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.m93_c00242{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.ma3_c00242{transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);}
.mdd_c00242{transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);}
.m2c_c00242{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.ma0_c00242{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mbe_c00242{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m3c_c00242{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.ma7_c00242{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.ma4_c00242{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.mb1_c00242{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mde_c00242{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.mbd_c00242{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m6e_c00242{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.mae_c00242{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.m5c_c00242{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mc2_c00242{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m3e_c00242{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m8d_c00242{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m28_c00242{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.mb7_c00242{transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);}
.m6d_c00242{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m87_c00242{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mcc_c00242{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m2f_c00242{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m37_c00242{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m98_c00242{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m56_c00242{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.ma5_c00242{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.ma1_c00242{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m1a_c00242{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m53_c00242{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m7e_c00242{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m77_c00242{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m3b_c00242{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mb4_c00242{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.mda_c00242{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.m86_c00242{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mca_c00242{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.ma_c00242{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m38_c00242{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m26_c00242{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.maa_c00242{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m89_c00242{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.mba_c00242{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m3_c00242{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m36_c00242{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mc5_c00242{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mb6_c00242{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m2d_c00242{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m8c_c00242{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mce_c00242{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m33_c00242{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m55_c00242{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.md5_c00242{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m44_c00242{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m99_c00242{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m34_c00242{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.mb2_c00242{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m21_c00242{transform:matrix(0.444805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444805,0.000000,0.000000,0.250000,0,0);}
.m47_c00242{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mbb_c00242{transform:matrix(0.449170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449170,0.000000,0.000000,0.250000,0,0);}
.mac_c00242{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m8a_c00242{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.m46_c00242{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m5b_c00242{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m7b_c00242{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m3d_c00242{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.mcf_c00242{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m6c_c00242{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m40_c00242{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m62_c00242{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m6f_c00242{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.m68_c00242{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.md1_c00242{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m32_c00242{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.maf_c00242{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.mcb_c00242{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m18_c00242{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m7a_c00242{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m69_c00242{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m52_c00242{transform:matrix(0.478571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478571,0.000000,0.000000,0.250000,0,0);}
.mc9_c00242{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m42_c00242{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m4b_c00242{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mdc_c00242{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m29_c00242{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m24_c00242{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m54_c00242{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m74_c00242{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m9f_c00242{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mab_c00242{transform:matrix(0.489332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489332,0.000000,0.000000,0.250000,0,0);}
.m8e_c00242{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m1_c00242{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mc6_c00242{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.ma2_c00242{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m2b_c00242{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m94_c00242{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.md_c00242{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);}
.m3a_c00242{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m6b_c00242{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m92_c00242{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m43_c00242{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mbf_c00242{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m58_c00242{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m4a_c00242{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m35_c00242{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.mc3_c00242{transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);}
.m48_c00242{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m41_c00242{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m6a_c00242{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m15_c00242{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m57_c00242{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m4c_c00242{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m90_c00242{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m8_c00242{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m23_c00242{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m9b_c00242{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m4f_c00242{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m59_c00242{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m11_c00242{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m2_c00242{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m45_c00242{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m10_c00242{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mb_c00242{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m22_c00242{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m7c_c00242{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mf_c00242{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mad_c00242{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m13_c00242{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m20_c00242{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m7_c00242{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m9_c00242{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.ma9_c00242{transform:matrix(0.539889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539889,0.000000,0.000000,0.250000,0,0);}
.m5f_c00242{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m71_c00242{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m1f_c00242{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.me_c00242{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m9d_c00242{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m2a_c00242{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m80_c00242{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m61_c00242{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m73_c00242{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.md0_c00242{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m95_c00242{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m39_c00242{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m27_c00242{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m1e_c00242{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mc7_c00242{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m85_c00242{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m70_c00242{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m88_c00242{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);}
.m67_c00242{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m78_c00242{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mc_c00242{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m96_c00242{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mc1_c00242{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.m2e_c00242{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m16_c00242{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m84_c00242{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m91_c00242{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m5d_c00242{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m5e_c00242{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m3f_c00242{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mb9_c00242{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m9e_c00242{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m72_c00242{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.md3_c00242{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m1b_c00242{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.ma8_c00242{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m5a_c00242{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m8b_c00242{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m83_c00242{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);}
.m51_c00242{transform:matrix(0.601763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601763,0.000000,0.000000,0.250000,0,0);}
.m4d_c00242{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m65_c00242{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m60_c00242{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m1c_c00242{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m75_c00242{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m31_c00242{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.md9_c00242{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m0_c00242{transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);}
.md7_c00242{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);}
.mb5_c00242{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m4e_c00242{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mc0_c00242{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m82_c00242{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m79_c00242{transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);}
.m76_c00242{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m50_c00242{transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);}
.m14_c00242{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m4_c00242{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m7d_c00242{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m1d_c00242{transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);}
.m97_c00242{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.md4_c00242{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m19_c00242{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m49_c00242{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m30_c00242{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m66_c00242{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.md8_c00242{transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);}
.mbc_c00242{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mb8_c00242{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m5_c00242{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m8f_c00242{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.m12_c00242{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mc8_c00242{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m81_c00242{transform:matrix(0.773237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.773237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.773237,0.000000,0.000000,0.250000,0,0);}
.m64_c00242{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m25_c00242{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.ma6_c00242{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.mcd_c00242{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.md6_c00242{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m63_c00242{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mc4_c00242{transform:matrix(0.800588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800588,0.000000,0.000000,0.250000,0,0);}
.m6_c00242{transform:matrix(0.801282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.801282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.801282,0.000000,0.000000,0.250000,0,0);}
.m17_c00242{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m7f_c00242{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.mb3_c00242{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mb0_c00242{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m9a_c00242{transform:matrix(0.899840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.899840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.899840,0.000000,0.000000,0.250000,0,0);}
.v0_c00242{vertical-align:0.000000px;}
.ls0_c00242{letter-spacing:0.000000px;}
.sc__c00242{text-shadow:none;}
.sc0_c00242{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00242{-webkit-text-stroke:0px transparent;}
.sc0_c00242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00242{word-spacing:-7.167600px;}
.ws0_c00242{word-spacing:-1.760609px;}
.ws3_c00242{word-spacing:-1.527360px;}
.ws4_c00242{word-spacing:0.000000px;}
.ws1_c00242{word-spacing:4.144270px;}
.fc0_c00242{color:transparent;}
.fs3_c00242{font-size:18.720000px;}
.fs0_c00242{font-size:20.400000px;}
.fs4_c00242{font-size:25.500000px;}
.fs1_c00242{font-size:28.920000px;}
.fs5_c00242{font-size:32.340000px;}
.fs2_c00242{font-size:35.700000px;}
.fs6_c00242{font-size:39.120000px;}
.y0_c00242{bottom:0.000000px;}
.yce_c00242{bottom:250.905000px;}
.ycc_c00242{bottom:251.745000px;}
.ycf_c00242{bottom:254.130000px;}
.ycd_c00242{bottom:254.970000px;}
.yc5_c00242{bottom:270.405000px;}
.yc9_c00242{bottom:270.825000px;}
.yc8_c00242{bottom:271.680000px;}
.yca_c00242{bottom:272.745000px;}
.ycb_c00242{bottom:273.405000px;}
.yc7_c00242{bottom:273.630000px;}
.yc6_c00242{bottom:274.470000px;}
.yc4_c00242{bottom:274.905000px;}
.yc0_c00242{bottom:292.245000px;}
.yc2_c00242{bottom:293.130000px;}
.yc1_c00242{bottom:293.970000px;}
.ybf_c00242{bottom:294.405000px;}
.yc3_c00242{bottom:295.470000px;}
.yb9_c00242{bottom:310.905000px;}
.ybc_c00242{bottom:311.745000px;}
.ybe_c00242{bottom:311.970000px;}
.ybd_c00242{bottom:312.630000px;}
.yb8_c00242{bottom:312.825000px;}
.ybb_c00242{bottom:313.905000px;}
.yba_c00242{bottom:314.130000px;}
.yb3_c00242{bottom:330.405000px;}
.yb1_c00242{bottom:331.245000px;}
.yb6_c00242{bottom:332.130000px;}
.yb4_c00242{bottom:332.325000px;}
.yb7_c00242{bottom:332.970000px;}
.yb2_c00242{bottom:333.405000px;}
.yb5_c00242{bottom:336.630000px;}
.yac_c00242{bottom:349.905000px;}
.yae_c00242{bottom:350.745000px;}
.yb0_c00242{bottom:351.825000px;}
.yaf_c00242{bottom:352.905000px;}
.yad_c00242{bottom:353.130000px;}
.ya8_c00242{bottom:372.405000px;}
.yab_c00242{bottom:372.630000px;}
.ya9_c00242{bottom:373.470000px;}
.yaa_c00242{bottom:373.905000px;}
.ya7_c00242{bottom:388.905000px;}
.ya6_c00242{bottom:389.970000px;}
.ya3_c00242{bottom:390.405000px;}
.ya2_c00242{bottom:391.245000px;}
.ya5_c00242{bottom:391.470000px;}
.ya4_c00242{bottom:392.325000px;}
.ya1_c00242{bottom:393.405000px;}
.y9e_c00242{bottom:408.405000px;}
.y9c_c00242{bottom:410.745000px;}
.ya0_c00242{bottom:412.470000px;}
.y9f_c00242{bottom:412.905000px;}
.y9b_c00242{bottom:413.130000px;}
.y9d_c00242{bottom:413.970000px;}
.y97_c00242{bottom:428.325000px;}
.y99_c00242{bottom:428.970000px;}
.y94_c00242{bottom:430.245000px;}
.y9a_c00242{bottom:431.970000px;}
.y96_c00242{bottom:432.405000px;}
.y98_c00242{bottom:432.630000px;}
.y95_c00242{bottom:433.470000px;}
.y8f_c00242{bottom:448.905000px;}
.y92_c00242{bottom:449.745000px;}
.y90_c00242{bottom:450.630000px;}
.y91_c00242{bottom:451.905000px;}
.y93_c00242{bottom:452.130000px;}
.y89_c00242{bottom:468.405000px;}
.y8c_c00242{bottom:468.825000px;}
.y8e_c00242{bottom:469.470000px;}
.y88_c00242{bottom:469.905000px;}
.y8d_c00242{bottom:470.325000px;}
.y87_c00242{bottom:470.745000px;}
.y8a_c00242{bottom:471.825000px;}
.y8b_c00242{bottom:472.905000px;}
.y82_c00242{bottom:487.905000px;}
.y83_c00242{bottom:488.745000px;}
.y81_c00242{bottom:489.825000px;}
.y85_c00242{bottom:490.245000px;}
.y84_c00242{bottom:490.905000px;}
.y86_c00242{bottom:491.130000px;}
.y7e_c00242{bottom:506.130000px;}
.y7c_c00242{bottom:508.245000px;}
.y7f_c00242{bottom:508.905000px;}
.y80_c00242{bottom:509.745000px;}
.y7d_c00242{bottom:510.405000px;}
.y7b_c00242{bottom:511.470000px;}
.y7a_c00242{bottom:511.905000px;}
.y77_c00242{bottom:526.905000px;}
.y79_c00242{bottom:530.130000px;}
.y76_c00242{bottom:531.405000px;}
.y78_c00242{bottom:532.470000px;}
.y74_c00242{bottom:548.325000px;}
.y73_c00242{bottom:548.745000px;}
.y75_c00242{bottom:550.905000px;}
.y6e_c00242{bottom:568.245000px;}
.y70_c00242{bottom:568.905000px;}
.y72_c00242{bottom:569.130000px;}
.y6d_c00242{bottom:569.325000px;}
.y6c_c00242{bottom:570.405000px;}
.y6f_c00242{bottom:570.630000px;}
.y71_c00242{bottom:571.470000px;}
.y6b_c00242{bottom:587.745000px;}
.y69_c00242{bottom:589.905000px;}
.y6a_c00242{bottom:590.970000px;}
.y66_c00242{bottom:607.245000px;}
.y65_c00242{bottom:608.325000px;}
.y63_c00242{bottom:609.405000px;}
.y68_c00242{bottom:609.630000px;}
.y67_c00242{bottom:609.825000px;}
.y64_c00242{bottom:610.470000px;}
.y62_c00242{bottom:628.245000px;}
.y5f_c00242{bottom:628.905000px;}
.y60_c00242{bottom:629.130000px;}
.y61_c00242{bottom:630.405000px;}
.y5c_c00242{bottom:645.405000px;}
.y5a_c00242{bottom:648.630000px;}
.y5d_c00242{bottom:649.470000px;}
.y5b_c00242{bottom:649.905000px;}
.y5e_c00242{bottom:650.970000px;}
.y59_c00242{bottom:667.245000px;}
.y58_c00242{bottom:668.970000px;}
.y57_c00242{bottom:669.405000px;}
.y54_c00242{bottom:687.825000px;}
.y53_c00242{bottom:688.905000px;}
.y55_c00242{bottom:689.325000px;}
.y56_c00242{bottom:690.405000px;}
.y50_c00242{bottom:706.245000px;}
.y51_c00242{bottom:708.405000px;}
.y4f_c00242{bottom:708.630000px;}
.y52_c00242{bottom:709.470000px;}
.y4e_c00242{bottom:725.745000px;}
.y4d_c00242{bottom:726.825000px;}
.y49_c00242{bottom:727.905000px;}
.y4b_c00242{bottom:728.130000px;}
.y4a_c00242{bottom:728.970000px;}
.y4c_c00242{bottom:729.405000px;}
.y45_c00242{bottom:745.245000px;}
.y46_c00242{bottom:746.745000px;}
.y48_c00242{bottom:747.630000px;}
.y47_c00242{bottom:747.825000px;}
.y44_c00242{bottom:748.905000px;}
.y42_c00242{bottom:765.825000px;}
.y3d_c00242{bottom:766.245000px;}
.y3e_c00242{bottom:767.130000px;}
.y43_c00242{bottom:767.325000px;}
.y3f_c00242{bottom:767.970000px;}
.y40_c00242{bottom:768.405000px;}
.y41_c00242{bottom:769.470000px;}
.y3b_c00242{bottom:786.630000px;}
.y3a_c00242{bottom:787.905000px;}
.y3c_c00242{bottom:788.970000px;}
.y38_c00242{bottom:805.245000px;}
.y39_c00242{bottom:806.325000px;}
.y35_c00242{bottom:807.405000px;}
.y37_c00242{bottom:807.630000px;}
.y36_c00242{bottom:808.470000px;}
.y33_c00242{bottom:823.905000px;}
.y34_c00242{bottom:824.745000px;}
.y2f_c00242{bottom:845.745000px;}
.y30_c00242{bottom:846.405000px;}
.y31_c00242{bottom:846.630000px;}
.y32_c00242{bottom:847.905000px;}
.y2b_c00242{bottom:865.245000px;}
.y2a_c00242{bottom:865.905000px;}
.y2e_c00242{bottom:866.130000px;}
.y2d_c00242{bottom:866.325000px;}
.y2c_c00242{bottom:866.970000px;}
.y29_c00242{bottom:867.405000px;}
.y28_c00242{bottom:882.405000px;}
.y27_c00242{bottom:885.630000px;}
.y26_c00242{bottom:886.905000px;}
.y25_c00242{bottom:904.245000px;}
.y24_c00242{bottom:905.325000px;}
.y23_c00242{bottom:906.405000px;}
.y21_c00242{bottom:923.745000px;}
.y22_c00242{bottom:924.630000px;}
.y20_c00242{bottom:925.905000px;}
.y1d_c00242{bottom:943.245000px;}
.y1e_c00242{bottom:945.405000px;}
.y1f_c00242{bottom:946.905000px;}
.y18_c00242{bottom:962.745000px;}
.y1c_c00242{bottom:963.825000px;}
.y1a_c00242{bottom:964.905000px;}
.y19_c00242{bottom:965.130000px;}
.y1b_c00242{bottom:965.970000px;}
.y14_c00242{bottom:981.405000px;}
.y15_c00242{bottom:984.405000px;}
.y16_c00242{bottom:985.470000px;}
.y17_c00242{bottom:985.905000px;}
.yf_c00242{bottom:1000.905000px;}
.y13_c00242{bottom:1003.245000px;}
.y10_c00242{bottom:1003.905000px;}
.y12_c00242{bottom:1004.130000px;}
.y11_c00242{bottom:1005.405000px;}
.yc_c00242{bottom:1021.245000px;}
.ye_c00242{bottom:1022.325000px;}
.yb_c00242{bottom:1023.405000px;}
.ya_c00242{bottom:1023.630000px;}
.yd_c00242{bottom:1024.470000px;}
.y7_c00242{bottom:1042.905000px;}
.y8_c00242{bottom:1043.130000px;}
.y9_c00242{bottom:1043.970000px;}
.y6_c00242{bottom:1044.405000px;}
.y4_c00242{bottom:1061.745000px;}
.y5_c00242{bottom:1062.630000px;}
.y3_c00242{bottom:1063.905000px;}
.y2_c00242{bottom:1099.905000px;}
.y1_c00242{bottom:1102.050000px;}
.h4_c00242{height:23.025234px;}
.h1_c00242{height:25.091602px;}
.h5_c00242{height:31.364502px;}
.h2_c00242{height:35.571035px;}
.h6_c00242{height:39.777568px;}
.h3_c00242{height:43.910303px;}
.h7_c00242{height:48.116836px;}
.h0_c00242{height:1335.000000px;}
.w0_c00242{width:880.500000px;}
.x0_c00242{left:0.000000px;}
.x11_c00242{left:151.500000px;}
.x3_c00242{left:153.000000px;}
.x101_c00242{left:154.920000px;}
.x121_c00242{left:157.275000px;}
.x93_c00242{left:167.145000px;}
.xf1_c00242{left:169.500000px;}
.xe2_c00242{left:172.920000px;}
.x21_c00242{left:177.000000px;}
.xde_c00242{left:179.580000px;}
.x64_c00242{left:180.855000px;}
.x9d_c00242{left:183.000000px;}
.x12_c00242{left:184.920000px;}
.x2d_c00242{left:187.080000px;}
.x91_c00242{left:189.000000px;}
.xe5_c00242{left:192.420000px;}
.xab_c00242{left:193.500000px;}
.x7b_c00242{left:195.000000px;}
.xa4_c00242{left:198.000000px;}
.xc3_c00242{left:200.580000px;}
.x3b_c00242{left:202.500000px;}
.xfb_c00242{left:203.580000px;}
.x5a_c00242{left:205.080000px;}
.xcb_c00242{left:207.420000px;}
.x4e_c00242{left:208.500000px;}
.xdf_c00242{left:209.580000px;}
.x2e_c00242{left:211.080000px;}
.x116_c00242{left:215.580000px;}
.xd2_c00242{left:217.920000px;}
.xea_c00242{left:219.000000px;}
.x71_c00242{left:220.080000px;}
.x4_c00242{left:223.500000px;}
.xf4_c00242{left:225.420000px;}
.x87_c00242{left:226.920000px;}
.x13_c00242{left:228.000000px;}
.x46_c00242{left:229.500000px;}
.x2f_c00242{left:231.000000px;}
.xcc_c00242{left:234.000000px;}
.x92_c00242{left:235.080000px;}
.xb6_c00242{left:238.080000px;}
.xbd_c00242{left:239.580000px;}
.x65_c00242{left:241.080000px;}
.x9e_c00242{left:243.000000px;}
.x3c_c00242{left:244.500000px;}
.x30_c00242{left:246.000000px;}
.x7c_c00242{left:247.500000px;}
.x5b_c00242{left:249.000000px;}
.xc4_c00242{left:250.500000px;}
.x22_c00242{left:252.420000px;}
.xe0_c00242{left:255.420000px;}
.x9f_c00242{left:256.920000px;}
.xb7_c00242{left:258.000000px;}
.x94_c00242{left:259.920000px;}
.x11d_c00242{left:262.080000px;}
.x72_c00242{left:264.000000px;}
.x4f_c00242{left:265.500000px;}
.x14_c00242{left:267.000000px;}
.xd9_c00242{left:270.420000px;}
.x66_c00242{left:271.920000px;}
.x114_c00242{left:273.000000px;}
.xa5_c00242{left:277.080000px;}
.x7d_c00242{left:279.420000px;}
.xd3_c00242{left:283.920000px;}
.x47_c00242{left:285.420000px;}
.x31_c00242{left:286.920000px;}
.x50_c00242{left:288.420000px;}
.x88_c00242{left:289.500000px;}
.x3d_c00242{left:291.000000px;}
.xf2_c00242{left:292.500000px;}
.x15_c00242{left:294.000000px;}
.xc5_c00242{left:296.580000px;}
.xeb_c00242{left:298.500000px;}
.x23_c00242{left:300.000000px;}
.x5_c00242{left:301.500000px;}
.xf5_c00242{left:303.000000px;}
.x11e_c00242{left:304.080000px;}
.x7e_c00242{left:307.500000px;}
.xda_c00242{left:309.000000px;}
.x95_c00242{left:310.920000px;}
.x73_c00242{left:312.000000px;}
.x51_c00242{left:313.920000px;}
.x89_c00242{left:315.000000px;}
.xac_c00242{left:316.500000px;}
.x5c_c00242{left:318.420000px;}
.x6_c00242{left:319.500000px;}
.xe6_c00242{left:322.500000px;}
.x7f_c00242{left:324.420000px;}
.x117_c00242{left:325.500000px;}
.xa0_c00242{left:326.580000px;}
.xcd_c00242{left:328.500000px;}
.xc6_c00242{left:330.000000px;}
.x74_c00242{left:331.920000px;}
.x7_c00242{left:333.000000px;}
.x67_c00242{left:334.500000px;}
.x24_c00242{left:336.000000px;}
.x16_c00242{left:337.500000px;}
.xe1_c00242{left:339.420000px;}
.xec_c00242{left:341.580000px;}
.x5d_c00242{left:345.000000px;}
.x52_c00242{left:346.080000px;}
.x10d_c00242{left:347.580000px;}
.xd4_c00242{left:349.920000px;}
.x68_c00242{left:351.420000px;}
.x112_c00242{left:352.920000px;}
.x48_c00242{left:355.500000px;}
.x32_c00242{left:357.000000px;}
.xfe_c00242{left:358.500000px;}
.x96_c00242{left:360.420000px;}
.xed_c00242{left:361.920000px;}
.xdb_c00242{left:364.500000px;}
.xc7_c00242{left:366.000000px;}
.xad_c00242{left:367.500000px;}
.x11a_c00242{left:369.000000px;}
.x3e_c00242{left:370.080000px;}
.x80_c00242{left:372.000000px;}
.x75_c00242{left:373.080000px;}
.xd5_c00242{left:374.580000px;}
.xb8_c00242{left:376.500000px;}
.x25_c00242{left:377.580000px;}
.xf6_c00242{left:381.000000px;}
.x107_c00242{left:383.580000px;}
.x8_c00242{left:385.920000px;}
.xee_c00242{left:387.420000px;}
.x53_c00242{left:388.500000px;}
.x17_c00242{left:391.500000px;}
.x104_c00242{left:392.580000px;}
.x3f_c00242{left:394.080000px;}
.x26_c00242{left:396.000000px;}
.x97_c00242{left:397.920000px;}
.xf7_c00242{left:399.000000px;}
.x69_c00242{left:400.500000px;}
.xf3_c00242{left:402.420000px;}
.xd6_c00242{left:403.500000px;}
.x8a_c00242{left:405.420000px;}
.x1_c00242{left:406.500000px;}
.x5e_c00242{left:408.420000px;}
.x81_c00242{left:409.500000px;}
.x115_c00242{left:410.775000px;}
.x109_c00242{left:414.420000px;}
.xf8_c00242{left:415.500000px;}
.xc8_c00242{left:417.420000px;}
.xce_c00242{left:418.500000px;}
.x76_c00242{left:419.580000px;}
.x9_c00242{left:421.500000px;}
.x27_c00242{left:423.000000px;}
.x54_c00242{left:424.080000px;}
.xb9_c00242{left:426.420000px;}
.x18_c00242{left:429.420000px;}
.xe3_c00242{left:430.500000px;}
.x8b_c00242{left:432.420000px;}
.x5f_c00242{left:433.920000px;}
.x6a_c00242{left:435.420000px;}
.x11f_c00242{left:436.500000px;}
.x102_c00242{left:438.000000px;}
.xae_c00242{left:439.500000px;}
.x10e_c00242{left:441.000000px;}
.x49_c00242{left:442.500000px;}
.x33_c00242{left:445.920000px;}
.xd7_c00242{left:448.080000px;}
.xf9_c00242{left:449.580000px;}
.xef_c00242{left:454.920000px;}
.x105_c00242{left:456.420000px;}
.xe7_c00242{left:460.500000px;}
.x28_c00242{left:461.580000px;}
.x60_c00242{left:463.500000px;}
.x40_c00242{left:466.500000px;}
.x118_c00242{left:468.420000px;}
.x55_c00242{left:469.500000px;}
.x19_c00242{left:470.580000px;}
.x34_c00242{left:474.000000px;}
.xa_c00242{left:475.500000px;}
.x113_c00242{left:477.000000px;}
.x82_c00242{left:478.500000px;}
.x98_c00242{left:481.920000px;}
.xaf_c00242{left:483.000000px;}
.xa6_c00242{left:486.000000px;}
.x11b_c00242{left:487.500000px;}
.xd8_c00242{left:489.420000px;}
.x1a_c00242{left:490.920000px;}
.x29_c00242{left:493.920000px;}
.x6b_c00242{left:495.420000px;}
.x77_c00242{left:496.500000px;}
.xf0_c00242{left:498.000000px;}
.x106_c00242{left:499.080000px;}
.x41_c00242{left:501.000000px;}
.xb_c00242{left:504.420000px;}
.xb0_c00242{left:505.920000px;}
.x4a_c00242{left:507.000000px;}
.xbe_c00242{left:508.920000px;}
.xba_c00242{left:510.000000px;}
.x35_c00242{left:512.580000px;}
.x10a_c00242{left:514.080000px;}
.x99_c00242{left:516.420000px;}
.x83_c00242{left:517.500000px;}
.x1b_c00242{left:518.580000px;}
.xcf_c00242{left:522.000000px;}
.x6c_c00242{left:523.920000px;}
.xff_c00242{left:525.420000px;}
.xa1_c00242{left:529.500000px;}
.x2a_c00242{left:531.420000px;}
.x36_c00242{left:534.420000px;}
.xbf_c00242{left:535.500000px;}
.xe8_c00242{left:538.080000px;}
.x78_c00242{left:541.080000px;}
.x9a_c00242{left:543.000000px;}
.x10b_c00242{left:544.080000px;}
.x42_c00242{left:547.080000px;}
.x8c_c00242{left:549.420000px;}
.x103_c00242{left:551.580000px;}
.x6d_c00242{left:553.500000px;}
.xc9_c00242{left:555.000000px;}
.xa7_c00242{left:556.920000px;}
.x11c_c00242{left:558.000000px;}
.x61_c00242{left:559.500000px;}
.x1c_c00242{left:561.000000px;}
.x37_c00242{left:562.920000px;}
.x108_c00242{left:564.420000px;}
.xa2_c00242{left:568.500000px;}
.xbb_c00242{left:570.420000px;}
.xb1_c00242{left:573.000000px;}
.x79_c00242{left:574.920000px;}
.x8d_c00242{left:576.000000px;}
.xc_c00242{left:577.920000px;}
.x43_c00242{left:580.080000px;}
.x56_c00242{left:582.420000px;}
.xa8_c00242{left:583.920000px;}
.x6e_c00242{left:585.420000px;}
.x10f_c00242{left:586.920000px;}
.x2b_c00242{left:588.000000px;}
.xc0_c00242{left:589.500000px;}
.xfc_c00242{left:592.080000px;}
.x1d_c00242{left:594.000000px;}
.x4b_c00242{left:595.080000px;}
.x62_c00242{left:598.920000px;}
.xd_c00242{left:603.000000px;}
.x7a_c00242{left:604.500000px;}
.x57_c00242{left:607.500000px;}
.x38_c00242{left:608.580000px;}
.xbc_c00242{left:610.500000px;}
.xb2_c00242{left:612.420000px;}
.xa9_c00242{left:614.580000px;}
.xfa_c00242{left:616.080000px;}
.x84_c00242{left:619.920000px;}
.x120_c00242{left:621.420000px;}
.xca_c00242{left:622.500000px;}
.xe4_c00242{left:624.000000px;}
.x44_c00242{left:625.500000px;}
.xc1_c00242{left:627.420000px;}
.x6f_c00242{left:628.920000px;}
.x1e_c00242{left:633.000000px;}
.x39_c00242{left:634.920000px;}
.xdc_c00242{left:636.420000px;}
.x9b_c00242{left:637.920000px;}
.xb3_c00242{left:640.080000px;}
.x119_c00242{left:642.000000px;}
.xe_c00242{left:646.080000px;}
.x58_c00242{left:649.500000px;}
.xa3_c00242{left:652.500000px;}
.x1f_c00242{left:655.920000px;}
.x110_c00242{left:658.920000px;}
.x85_c00242{left:661.080000px;}
.xf_c00242{left:663.420000px;}
.xd0_c00242{left:664.500000px;}
.x8e_c00242{left:666.420000px;}
.xfd_c00242{left:667.500000px;}
.x100_c00242{left:670.920000px;}
.x4c_c00242{left:672.420000px;}
.xaa_c00242{left:673.500000px;}
.xe9_c00242{left:674.580000px;}
.x59_c00242{left:679.920000px;}
.xb4_c00242{left:681.000000px;}
.x45_c00242{left:682.500000px;}
.x20_c00242{left:684.000000px;}
.x10c_c00242{left:685.920000px;}
.x2c_c00242{left:687.000000px;}
.x9c_c00242{left:688.500000px;}
.x10_c00242{left:690.420000px;}
.xdd_c00242{left:691.920000px;}
.x8f_c00242{left:693.420000px;}
.x3a_c00242{left:694.920000px;}
.x70_c00242{left:696.000000px;}
.x63_c00242{left:697.920000px;}
.x86_c00242{left:699.420000px;}
.xd1_c00242{left:700.920000px;}
.xc2_c00242{left:703.500000px;}
.x2_c00242{left:704.580000px;}
.x4d_c00242{left:708.000000px;}
.x111_c00242{left:711.000000px;}
.xb5_c00242{left:715.080000px;}
.x90_c00242{left:721.500000px;}
@media print{
.v0_c00242{vertical-align:0.000000pt;}
.ls0_c00242{letter-spacing:0.000000pt;}
.ws2_c00242{word-spacing:-6.371200pt;}
.ws0_c00242{word-spacing:-1.564986pt;}
.ws3_c00242{word-spacing:-1.357653pt;}
.ws4_c00242{word-spacing:0.000000pt;}
.ws1_c00242{word-spacing:3.683796pt;}
.fs3_c00242{font-size:16.640000pt;}
.fs0_c00242{font-size:18.133333pt;}
.fs4_c00242{font-size:22.666667pt;}
.fs1_c00242{font-size:25.706667pt;}
.fs5_c00242{font-size:28.746667pt;}
.fs2_c00242{font-size:31.733333pt;}
.fs6_c00242{font-size:34.773333pt;}
.y0_c00242{bottom:0.000000pt;}
.yce_c00242{bottom:223.026667pt;}
.ycc_c00242{bottom:223.773333pt;}
.ycf_c00242{bottom:225.893333pt;}
.ycd_c00242{bottom:226.640000pt;}
.yc5_c00242{bottom:240.360000pt;}
.yc9_c00242{bottom:240.733333pt;}
.yc8_c00242{bottom:241.493333pt;}
.yca_c00242{bottom:242.440000pt;}
.ycb_c00242{bottom:243.026667pt;}
.yc7_c00242{bottom:243.226667pt;}
.yc6_c00242{bottom:243.973333pt;}
.yc4_c00242{bottom:244.360000pt;}
.yc0_c00242{bottom:259.773333pt;}
.yc2_c00242{bottom:260.560000pt;}
.yc1_c00242{bottom:261.306667pt;}
.ybf_c00242{bottom:261.693333pt;}
.yc3_c00242{bottom:262.640000pt;}
.yb9_c00242{bottom:276.360000pt;}
.ybc_c00242{bottom:277.106667pt;}
.ybe_c00242{bottom:277.306667pt;}
.ybd_c00242{bottom:277.893333pt;}
.yb8_c00242{bottom:278.066667pt;}
.ybb_c00242{bottom:279.026667pt;}
.yba_c00242{bottom:279.226667pt;}
.yb3_c00242{bottom:293.693333pt;}
.yb1_c00242{bottom:294.440000pt;}
.yb6_c00242{bottom:295.226667pt;}
.yb4_c00242{bottom:295.400000pt;}
.yb7_c00242{bottom:295.973333pt;}
.yb2_c00242{bottom:296.360000pt;}
.yb5_c00242{bottom:299.226667pt;}
.yac_c00242{bottom:311.026667pt;}
.yae_c00242{bottom:311.773333pt;}
.yb0_c00242{bottom:312.733333pt;}
.yaf_c00242{bottom:313.693333pt;}
.yad_c00242{bottom:313.893333pt;}
.ya8_c00242{bottom:331.026667pt;}
.yab_c00242{bottom:331.226667pt;}
.ya9_c00242{bottom:331.973333pt;}
.yaa_c00242{bottom:332.360000pt;}
.ya7_c00242{bottom:345.693333pt;}
.ya6_c00242{bottom:346.640000pt;}
.ya3_c00242{bottom:347.026667pt;}
.ya2_c00242{bottom:347.773333pt;}
.ya5_c00242{bottom:347.973333pt;}
.ya4_c00242{bottom:348.733333pt;}
.ya1_c00242{bottom:349.693333pt;}
.y9e_c00242{bottom:363.026667pt;}
.y9c_c00242{bottom:365.106667pt;}
.ya0_c00242{bottom:366.640000pt;}
.y9f_c00242{bottom:367.026667pt;}
.y9b_c00242{bottom:367.226667pt;}
.y9d_c00242{bottom:367.973333pt;}
.y97_c00242{bottom:380.733333pt;}
.y99_c00242{bottom:381.306667pt;}
.y94_c00242{bottom:382.440000pt;}
.y9a_c00242{bottom:383.973333pt;}
.y96_c00242{bottom:384.360000pt;}
.y98_c00242{bottom:384.560000pt;}
.y95_c00242{bottom:385.306667pt;}
.y8f_c00242{bottom:399.026667pt;}
.y92_c00242{bottom:399.773333pt;}
.y90_c00242{bottom:400.560000pt;}
.y91_c00242{bottom:401.693333pt;}
.y93_c00242{bottom:401.893333pt;}
.y89_c00242{bottom:416.360000pt;}
.y8c_c00242{bottom:416.733333pt;}
.y8e_c00242{bottom:417.306667pt;}
.y88_c00242{bottom:417.693333pt;}
.y8d_c00242{bottom:418.066667pt;}
.y87_c00242{bottom:418.440000pt;}
.y8a_c00242{bottom:419.400000pt;}
.y8b_c00242{bottom:420.360000pt;}
.y82_c00242{bottom:433.693333pt;}
.y83_c00242{bottom:434.440000pt;}
.y81_c00242{bottom:435.400000pt;}
.y85_c00242{bottom:435.773333pt;}
.y84_c00242{bottom:436.360000pt;}
.y86_c00242{bottom:436.560000pt;}
.y7e_c00242{bottom:449.893333pt;}
.y7c_c00242{bottom:451.773333pt;}
.y7f_c00242{bottom:452.360000pt;}
.y80_c00242{bottom:453.106667pt;}
.y7d_c00242{bottom:453.693333pt;}
.y7b_c00242{bottom:454.640000pt;}
.y7a_c00242{bottom:455.026667pt;}
.y77_c00242{bottom:468.360000pt;}
.y79_c00242{bottom:471.226667pt;}
.y76_c00242{bottom:472.360000pt;}
.y78_c00242{bottom:473.306667pt;}
.y74_c00242{bottom:487.400000pt;}
.y73_c00242{bottom:487.773333pt;}
.y75_c00242{bottom:489.693333pt;}
.y6e_c00242{bottom:505.106667pt;}
.y70_c00242{bottom:505.693333pt;}
.y72_c00242{bottom:505.893333pt;}
.y6d_c00242{bottom:506.066667pt;}
.y6c_c00242{bottom:507.026667pt;}
.y6f_c00242{bottom:507.226667pt;}
.y71_c00242{bottom:507.973333pt;}
.y6b_c00242{bottom:522.440000pt;}
.y69_c00242{bottom:524.360000pt;}
.y6a_c00242{bottom:525.306667pt;}
.y66_c00242{bottom:539.773333pt;}
.y65_c00242{bottom:540.733333pt;}
.y63_c00242{bottom:541.693333pt;}
.y68_c00242{bottom:541.893333pt;}
.y67_c00242{bottom:542.066667pt;}
.y64_c00242{bottom:542.640000pt;}
.y62_c00242{bottom:558.440000pt;}
.y5f_c00242{bottom:559.026667pt;}
.y60_c00242{bottom:559.226667pt;}
.y61_c00242{bottom:560.360000pt;}
.y5c_c00242{bottom:573.693333pt;}
.y5a_c00242{bottom:576.560000pt;}
.y5d_c00242{bottom:577.306667pt;}
.y5b_c00242{bottom:577.693333pt;}
.y5e_c00242{bottom:578.640000pt;}
.y59_c00242{bottom:593.106667pt;}
.y58_c00242{bottom:594.640000pt;}
.y57_c00242{bottom:595.026667pt;}
.y54_c00242{bottom:611.400000pt;}
.y53_c00242{bottom:612.360000pt;}
.y55_c00242{bottom:612.733333pt;}
.y56_c00242{bottom:613.693333pt;}
.y50_c00242{bottom:627.773333pt;}
.y51_c00242{bottom:629.693333pt;}
.y4f_c00242{bottom:629.893333pt;}
.y52_c00242{bottom:630.640000pt;}
.y4e_c00242{bottom:645.106667pt;}
.y4d_c00242{bottom:646.066667pt;}
.y49_c00242{bottom:647.026667pt;}
.y4b_c00242{bottom:647.226667pt;}
.y4a_c00242{bottom:647.973333pt;}
.y4c_c00242{bottom:648.360000pt;}
.y45_c00242{bottom:662.440000pt;}
.y46_c00242{bottom:663.773333pt;}
.y48_c00242{bottom:664.560000pt;}
.y47_c00242{bottom:664.733333pt;}
.y44_c00242{bottom:665.693333pt;}
.y42_c00242{bottom:680.733333pt;}
.y3d_c00242{bottom:681.106667pt;}
.y3e_c00242{bottom:681.893333pt;}
.y43_c00242{bottom:682.066667pt;}
.y3f_c00242{bottom:682.640000pt;}
.y40_c00242{bottom:683.026667pt;}
.y41_c00242{bottom:683.973333pt;}
.y3b_c00242{bottom:699.226667pt;}
.y3a_c00242{bottom:700.360000pt;}
.y3c_c00242{bottom:701.306667pt;}
.y38_c00242{bottom:715.773333pt;}
.y39_c00242{bottom:716.733333pt;}
.y35_c00242{bottom:717.693333pt;}
.y37_c00242{bottom:717.893333pt;}
.y36_c00242{bottom:718.640000pt;}
.y33_c00242{bottom:732.360000pt;}
.y34_c00242{bottom:733.106667pt;}
.y2f_c00242{bottom:751.773333pt;}
.y30_c00242{bottom:752.360000pt;}
.y31_c00242{bottom:752.560000pt;}
.y32_c00242{bottom:753.693333pt;}
.y2b_c00242{bottom:769.106667pt;}
.y2a_c00242{bottom:769.693333pt;}
.y2e_c00242{bottom:769.893333pt;}
.y2d_c00242{bottom:770.066667pt;}
.y2c_c00242{bottom:770.640000pt;}
.y29_c00242{bottom:771.026667pt;}
.y28_c00242{bottom:784.360000pt;}
.y27_c00242{bottom:787.226667pt;}
.y26_c00242{bottom:788.360000pt;}
.y25_c00242{bottom:803.773333pt;}
.y24_c00242{bottom:804.733333pt;}
.y23_c00242{bottom:805.693333pt;}
.y21_c00242{bottom:821.106667pt;}
.y22_c00242{bottom:821.893333pt;}
.y20_c00242{bottom:823.026667pt;}
.y1d_c00242{bottom:838.440000pt;}
.y1e_c00242{bottom:840.360000pt;}
.y1f_c00242{bottom:841.693333pt;}
.y18_c00242{bottom:855.773333pt;}
.y1c_c00242{bottom:856.733333pt;}
.y1a_c00242{bottom:857.693333pt;}
.y19_c00242{bottom:857.893333pt;}
.y1b_c00242{bottom:858.640000pt;}
.y14_c00242{bottom:872.360000pt;}
.y15_c00242{bottom:875.026667pt;}
.y16_c00242{bottom:875.973333pt;}
.y17_c00242{bottom:876.360000pt;}
.yf_c00242{bottom:889.693333pt;}
.y13_c00242{bottom:891.773333pt;}
.y10_c00242{bottom:892.360000pt;}
.y12_c00242{bottom:892.560000pt;}
.y11_c00242{bottom:893.693333pt;}
.yc_c00242{bottom:907.773333pt;}
.ye_c00242{bottom:908.733333pt;}
.yb_c00242{bottom:909.693333pt;}
.ya_c00242{bottom:909.893333pt;}
.yd_c00242{bottom:910.640000pt;}
.y7_c00242{bottom:927.026667pt;}
.y8_c00242{bottom:927.226667pt;}
.y9_c00242{bottom:927.973333pt;}
.y6_c00242{bottom:928.360000pt;}
.y4_c00242{bottom:943.773333pt;}
.y5_c00242{bottom:944.560000pt;}
.y3_c00242{bottom:945.693333pt;}
.y2_c00242{bottom:977.693333pt;}
.y1_c00242{bottom:979.600000pt;}
.h4_c00242{height:20.466875pt;}
.h1_c00242{height:22.303646pt;}
.h5_c00242{height:27.879557pt;}
.h2_c00242{height:31.618698pt;}
.h6_c00242{height:35.357839pt;}
.h3_c00242{height:39.031380pt;}
.h7_c00242{height:42.770521pt;}
.h0_c00242{height:1186.666667pt;}
.w0_c00242{width:782.666667pt;}
.x0_c00242{left:0.000000pt;}
.x11_c00242{left:134.666667pt;}
.x3_c00242{left:136.000000pt;}
.x101_c00242{left:137.706667pt;}
.x121_c00242{left:139.800000pt;}
.x93_c00242{left:148.573333pt;}
.xf1_c00242{left:150.666667pt;}
.xe2_c00242{left:153.706667pt;}
.x21_c00242{left:157.333333pt;}
.xde_c00242{left:159.626667pt;}
.x64_c00242{left:160.760000pt;}
.x9d_c00242{left:162.666667pt;}
.x12_c00242{left:164.373333pt;}
.x2d_c00242{left:166.293333pt;}
.x91_c00242{left:168.000000pt;}
.xe5_c00242{left:171.040000pt;}
.xab_c00242{left:172.000000pt;}
.x7b_c00242{left:173.333333pt;}
.xa4_c00242{left:176.000000pt;}
.xc3_c00242{left:178.293333pt;}
.x3b_c00242{left:180.000000pt;}
.xfb_c00242{left:180.960000pt;}
.x5a_c00242{left:182.293333pt;}
.xcb_c00242{left:184.373333pt;}
.x4e_c00242{left:185.333333pt;}
.xdf_c00242{left:186.293333pt;}
.x2e_c00242{left:187.626667pt;}
.x116_c00242{left:191.626667pt;}
.xd2_c00242{left:193.706667pt;}
.xea_c00242{left:194.666667pt;}
.x71_c00242{left:195.626667pt;}
.x4_c00242{left:198.666667pt;}
.xf4_c00242{left:200.373333pt;}
.x87_c00242{left:201.706667pt;}
.x13_c00242{left:202.666667pt;}
.x46_c00242{left:204.000000pt;}
.x2f_c00242{left:205.333333pt;}
.xcc_c00242{left:208.000000pt;}
.x92_c00242{left:208.960000pt;}
.xb6_c00242{left:211.626667pt;}
.xbd_c00242{left:212.960000pt;}
.x65_c00242{left:214.293333pt;}
.x9e_c00242{left:216.000000pt;}
.x3c_c00242{left:217.333333pt;}
.x30_c00242{left:218.666667pt;}
.x7c_c00242{left:220.000000pt;}
.x5b_c00242{left:221.333333pt;}
.xc4_c00242{left:222.666667pt;}
.x22_c00242{left:224.373333pt;}
.xe0_c00242{left:227.040000pt;}
.x9f_c00242{left:228.373333pt;}
.xb7_c00242{left:229.333333pt;}
.x94_c00242{left:231.040000pt;}
.x11d_c00242{left:232.960000pt;}
.x72_c00242{left:234.666667pt;}
.x4f_c00242{left:236.000000pt;}
.x14_c00242{left:237.333333pt;}
.xd9_c00242{left:240.373333pt;}
.x66_c00242{left:241.706667pt;}
.x114_c00242{left:242.666667pt;}
.xa5_c00242{left:246.293333pt;}
.x7d_c00242{left:248.373333pt;}
.xd3_c00242{left:252.373333pt;}
.x47_c00242{left:253.706667pt;}
.x31_c00242{left:255.040000pt;}
.x50_c00242{left:256.373333pt;}
.x88_c00242{left:257.333333pt;}
.x3d_c00242{left:258.666667pt;}
.xf2_c00242{left:260.000000pt;}
.x15_c00242{left:261.333333pt;}
.xc5_c00242{left:263.626667pt;}
.xeb_c00242{left:265.333333pt;}
.x23_c00242{left:266.666667pt;}
.x5_c00242{left:268.000000pt;}
.xf5_c00242{left:269.333333pt;}
.x11e_c00242{left:270.293333pt;}
.x7e_c00242{left:273.333333pt;}
.xda_c00242{left:274.666667pt;}
.x95_c00242{left:276.373333pt;}
.x73_c00242{left:277.333333pt;}
.x51_c00242{left:279.040000pt;}
.x89_c00242{left:280.000000pt;}
.xac_c00242{left:281.333333pt;}
.x5c_c00242{left:283.040000pt;}
.x6_c00242{left:284.000000pt;}
.xe6_c00242{left:286.666667pt;}
.x7f_c00242{left:288.373333pt;}
.x117_c00242{left:289.333333pt;}
.xa0_c00242{left:290.293333pt;}
.xcd_c00242{left:292.000000pt;}
.xc6_c00242{left:293.333333pt;}
.x74_c00242{left:295.040000pt;}
.x7_c00242{left:296.000000pt;}
.x67_c00242{left:297.333333pt;}
.x24_c00242{left:298.666667pt;}
.x16_c00242{left:300.000000pt;}
.xe1_c00242{left:301.706667pt;}
.xec_c00242{left:303.626667pt;}
.x5d_c00242{left:306.666667pt;}
.x52_c00242{left:307.626667pt;}
.x10d_c00242{left:308.960000pt;}
.xd4_c00242{left:311.040000pt;}
.x68_c00242{left:312.373333pt;}
.x112_c00242{left:313.706667pt;}
.x48_c00242{left:316.000000pt;}
.x32_c00242{left:317.333333pt;}
.xfe_c00242{left:318.666667pt;}
.x96_c00242{left:320.373333pt;}
.xed_c00242{left:321.706667pt;}
.xdb_c00242{left:324.000000pt;}
.xc7_c00242{left:325.333333pt;}
.xad_c00242{left:326.666667pt;}
.x11a_c00242{left:328.000000pt;}
.x3e_c00242{left:328.960000pt;}
.x80_c00242{left:330.666667pt;}
.x75_c00242{left:331.626667pt;}
.xd5_c00242{left:332.960000pt;}
.xb8_c00242{left:334.666667pt;}
.x25_c00242{left:335.626667pt;}
.xf6_c00242{left:338.666667pt;}
.x107_c00242{left:340.960000pt;}
.x8_c00242{left:343.040000pt;}
.xee_c00242{left:344.373333pt;}
.x53_c00242{left:345.333333pt;}
.x17_c00242{left:348.000000pt;}
.x104_c00242{left:348.960000pt;}
.x3f_c00242{left:350.293333pt;}
.x26_c00242{left:352.000000pt;}
.x97_c00242{left:353.706667pt;}
.xf7_c00242{left:354.666667pt;}
.x69_c00242{left:356.000000pt;}
.xf3_c00242{left:357.706667pt;}
.xd6_c00242{left:358.666667pt;}
.x8a_c00242{left:360.373333pt;}
.x1_c00242{left:361.333333pt;}
.x5e_c00242{left:363.040000pt;}
.x81_c00242{left:364.000000pt;}
.x115_c00242{left:365.133333pt;}
.x109_c00242{left:368.373333pt;}
.xf8_c00242{left:369.333333pt;}
.xc8_c00242{left:371.040000pt;}
.xce_c00242{left:372.000000pt;}
.x76_c00242{left:372.960000pt;}
.x9_c00242{left:374.666667pt;}
.x27_c00242{left:376.000000pt;}
.x54_c00242{left:376.960000pt;}
.xb9_c00242{left:379.040000pt;}
.x18_c00242{left:381.706667pt;}
.xe3_c00242{left:382.666667pt;}
.x8b_c00242{left:384.373333pt;}
.x5f_c00242{left:385.706667pt;}
.x6a_c00242{left:387.040000pt;}
.x11f_c00242{left:388.000000pt;}
.x102_c00242{left:389.333333pt;}
.xae_c00242{left:390.666667pt;}
.x10e_c00242{left:392.000000pt;}
.x49_c00242{left:393.333333pt;}
.x33_c00242{left:396.373333pt;}
.xd7_c00242{left:398.293333pt;}
.xf9_c00242{left:399.626667pt;}
.xef_c00242{left:404.373333pt;}
.x105_c00242{left:405.706667pt;}
.xe7_c00242{left:409.333333pt;}
.x28_c00242{left:410.293333pt;}
.x60_c00242{left:412.000000pt;}
.x40_c00242{left:414.666667pt;}
.x118_c00242{left:416.373333pt;}
.x55_c00242{left:417.333333pt;}
.x19_c00242{left:418.293333pt;}
.x34_c00242{left:421.333333pt;}
.xa_c00242{left:422.666667pt;}
.x113_c00242{left:424.000000pt;}
.x82_c00242{left:425.333333pt;}
.x98_c00242{left:428.373333pt;}
.xaf_c00242{left:429.333333pt;}
.xa6_c00242{left:432.000000pt;}
.x11b_c00242{left:433.333333pt;}
.xd8_c00242{left:435.040000pt;}
.x1a_c00242{left:436.373333pt;}
.x29_c00242{left:439.040000pt;}
.x6b_c00242{left:440.373333pt;}
.x77_c00242{left:441.333333pt;}
.xf0_c00242{left:442.666667pt;}
.x106_c00242{left:443.626667pt;}
.x41_c00242{left:445.333333pt;}
.xb_c00242{left:448.373333pt;}
.xb0_c00242{left:449.706667pt;}
.x4a_c00242{left:450.666667pt;}
.xbe_c00242{left:452.373333pt;}
.xba_c00242{left:453.333333pt;}
.x35_c00242{left:455.626667pt;}
.x10a_c00242{left:456.960000pt;}
.x99_c00242{left:459.040000pt;}
.x83_c00242{left:460.000000pt;}
.x1b_c00242{left:460.960000pt;}
.xcf_c00242{left:464.000000pt;}
.x6c_c00242{left:465.706667pt;}
.xff_c00242{left:467.040000pt;}
.xa1_c00242{left:470.666667pt;}
.x2a_c00242{left:472.373333pt;}
.x36_c00242{left:475.040000pt;}
.xbf_c00242{left:476.000000pt;}
.xe8_c00242{left:478.293333pt;}
.x78_c00242{left:480.960000pt;}
.x9a_c00242{left:482.666667pt;}
.x10b_c00242{left:483.626667pt;}
.x42_c00242{left:486.293333pt;}
.x8c_c00242{left:488.373333pt;}
.x103_c00242{left:490.293333pt;}
.x6d_c00242{left:492.000000pt;}
.xc9_c00242{left:493.333333pt;}
.xa7_c00242{left:495.040000pt;}
.x11c_c00242{left:496.000000pt;}
.x61_c00242{left:497.333333pt;}
.x1c_c00242{left:498.666667pt;}
.x37_c00242{left:500.373333pt;}
.x108_c00242{left:501.706667pt;}
.xa2_c00242{left:505.333333pt;}
.xbb_c00242{left:507.040000pt;}
.xb1_c00242{left:509.333333pt;}
.x79_c00242{left:511.040000pt;}
.x8d_c00242{left:512.000000pt;}
.xc_c00242{left:513.706667pt;}
.x43_c00242{left:515.626667pt;}
.x56_c00242{left:517.706667pt;}
.xa8_c00242{left:519.040000pt;}
.x6e_c00242{left:520.373333pt;}
.x10f_c00242{left:521.706667pt;}
.x2b_c00242{left:522.666667pt;}
.xc0_c00242{left:524.000000pt;}
.xfc_c00242{left:526.293333pt;}
.x1d_c00242{left:528.000000pt;}
.x4b_c00242{left:528.960000pt;}
.x62_c00242{left:532.373333pt;}
.xd_c00242{left:536.000000pt;}
.x7a_c00242{left:537.333333pt;}
.x57_c00242{left:540.000000pt;}
.x38_c00242{left:540.960000pt;}
.xbc_c00242{left:542.666667pt;}
.xb2_c00242{left:544.373333pt;}
.xa9_c00242{left:546.293333pt;}
.xfa_c00242{left:547.626667pt;}
.x84_c00242{left:551.040000pt;}
.x120_c00242{left:552.373333pt;}
.xca_c00242{left:553.333333pt;}
.xe4_c00242{left:554.666667pt;}
.x44_c00242{left:556.000000pt;}
.xc1_c00242{left:557.706667pt;}
.x6f_c00242{left:559.040000pt;}
.x1e_c00242{left:562.666667pt;}
.x39_c00242{left:564.373333pt;}
.xdc_c00242{left:565.706667pt;}
.x9b_c00242{left:567.040000pt;}
.xb3_c00242{left:568.960000pt;}
.x119_c00242{left:570.666667pt;}
.xe_c00242{left:574.293333pt;}
.x58_c00242{left:577.333333pt;}
.xa3_c00242{left:580.000000pt;}
.x1f_c00242{left:583.040000pt;}
.x110_c00242{left:585.706667pt;}
.x85_c00242{left:587.626667pt;}
.xf_c00242{left:589.706667pt;}
.xd0_c00242{left:590.666667pt;}
.x8e_c00242{left:592.373333pt;}
.xfd_c00242{left:593.333333pt;}
.x100_c00242{left:596.373333pt;}
.x4c_c00242{left:597.706667pt;}
.xaa_c00242{left:598.666667pt;}
.xe9_c00242{left:599.626667pt;}
.x59_c00242{left:604.373333pt;}
.xb4_c00242{left:605.333333pt;}
.x45_c00242{left:606.666667pt;}
.x20_c00242{left:608.000000pt;}
.x10c_c00242{left:609.706667pt;}
.x2c_c00242{left:610.666667pt;}
.x9c_c00242{left:612.000000pt;}
.x10_c00242{left:613.706667pt;}
.xdd_c00242{left:615.040000pt;}
.x8f_c00242{left:616.373333pt;}
.x3a_c00242{left:617.706667pt;}
.x70_c00242{left:618.666667pt;}
.x63_c00242{left:620.373333pt;}
.x86_c00242{left:621.706667pt;}
.xd1_c00242{left:623.040000pt;}
.xc2_c00242{left:625.333333pt;}
.x2_c00242{left:626.293333pt;}
.x4d_c00242{left:629.333333pt;}
.x111_c00242{left:632.000000pt;}
.xb5_c00242{left:635.626667pt;}
.x90_c00242{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_44549f51719e7c9b3e0b0784.woff2')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:1.688965;font-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_c00243{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.mce_c00243{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.me8_c00243{transform:matrix(0.338574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338574,0.000000,0.000000,0.250000,0,0);}
.me1_c00243{transform:matrix(0.344709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344709,0.000000,0.000000,0.250000,0,0);}
.mee_c00243{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m8b_c00243{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.ma3_c00243{transform:matrix(0.367347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367347,0.000000,0.000000,0.250000,0,0);}
.m27_c00243{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m18_c00243{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.ma2_c00243{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m1f_c00243{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mb5_c00243{transform:matrix(0.372316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372316,0.000000,0.000000,0.250000,0,0);}
.m89_c00243{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.m5f_c00243{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.me4_c00243{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m82_c00243{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.mb4_c00243{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m16_c00243{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.ma7_c00243{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.ma1_c00243{transform:matrix(0.382653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382653,0.000000,0.000000,0.250000,0,0);}
.m71_c00243{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m13_c00243{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m29_c00243{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mc9_c00243{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.m42_c00243{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m80_c00243{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m17_c00243{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m52_c00243{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.ma4_c00243{transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);}
.mf6_c00243{transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);}
.mc7_c00243{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m4d_c00243{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mc1_c00243{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m70_c00243{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.mec_c00243{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.mb2_c00243{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m75_c00243{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.mf2_c00243{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mf4_c00243{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m76_c00243{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m68_c00243{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.mc6_c00243{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m1d_c00243{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m57_c00243{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m3b_c00243{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mcb_c00243{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m50_c00243{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m65_c00243{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m81_c00243{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.mc_c00243{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m26_c00243{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.mc3_c00243{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m4a_c00243{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m90_c00243{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m94_c00243{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m4b_c00243{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m5b_c00243{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m83_c00243{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m4_c00243{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m47_c00243{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m8a_c00243{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.me0_c00243{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.mb6_c00243{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.me2_c00243{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m97_c00243{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m23_c00243{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.md7_c00243{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.meb_c00243{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m15_c00243{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.m66_c00243{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m1c_c00243{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.mba_c00243{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m1e_c00243{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.mf1_c00243{transform:matrix(0.429499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429499,0.000000,0.000000,0.250000,0,0);}
.mb0_c00243{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.mb_c00243{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.me6_c00243{transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);}
.m30_c00243{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m6f_c00243{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m43_c00243{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.ma5_c00243{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mbc_c00243{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m91_c00243{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.mb9_c00243{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.me_c00243{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m32_c00243{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.me5_c00243{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.med_c00243{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m21_c00243{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mb7_c00243{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m7b_c00243{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mdb_c00243{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.md0_c00243{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.m5e_c00243{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m61_c00243{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.mcc_c00243{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mf3_c00243{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m64_c00243{transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);}
.m9e_c00243{transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);}
.m10_c00243{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m39_c00243{transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);}
.m6b_c00243{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mac_c00243{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.mf5_c00243{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.m79_c00243{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.m93_c00243{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.mda_c00243{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.m53_c00243{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.ma_c00243{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m62_c00243{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mab_c00243{transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);}
.m45_c00243{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m8f_c00243{transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);}
.md5_c00243{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mde_c00243{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m6e_c00243{transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);}
.m9b_c00243{transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);}
.maf_c00243{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m56_c00243{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m88_c00243{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m73_c00243{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.ma8_c00243{transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);}
.m28_c00243{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);}
.md9_c00243{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m59_c00243{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m2f_c00243{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m9_c00243{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m69_c00243{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m2d_c00243{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.md4_c00243{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.me3_c00243{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.ma9_c00243{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m58_c00243{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mdf_c00243{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m14_c00243{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mbf_c00243{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m38_c00243{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m2_c00243{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m9c_c00243{transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);}
.m12_c00243{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m2b_c00243{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m96_c00243{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.mca_c00243{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m7a_c00243{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m9a_c00243{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.mc2_c00243{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m3c_c00243{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m77_c00243{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mb3_c00243{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m3d_c00243{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m36_c00243{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m3e_c00243{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m5_c00243{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.me9_c00243{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m7e_c00243{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m87_c00243{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m8_c00243{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m35_c00243{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m9d_c00243{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m19_c00243{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m48_c00243{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mbd_c00243{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.maa_c00243{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.md2_c00243{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.mae_c00243{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m5c_c00243{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m7f_c00243{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.mad_c00243{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mbb_c00243{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m60_c00243{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mf0_c00243{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.mdc_c00243{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mb1_c00243{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m1_c00243{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m4e_c00243{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m25_c00243{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m78_c00243{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.md_c00243{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m44_c00243{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mea_c00243{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.md1_c00243{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m7d_c00243{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m22_c00243{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m95_c00243{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m84_c00243{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mcd_c00243{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.ma0_c00243{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m1b_c00243{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.mef_c00243{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m7_c00243{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m2c_c00243{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m33_c00243{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m54_c00243{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m67_c00243{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m8d_c00243{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m6c_c00243{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.md3_c00243{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m99_c00243{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m74_c00243{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m4c_c00243{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);}
.m51_c00243{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m37_c00243{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.mc0_c00243{transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);}
.ma6_c00243{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.m6d_c00243{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m6_c00243{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mc4_c00243{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.m11_c00243{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mbe_c00243{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.m1a_c00243{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m3a_c00243{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m8c_c00243{transform:matrix(0.622925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622925,0.000000,0.000000,0.250000,0,0);}
.m0_c00243{transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);}
.m9f_c00243{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);}
.mc8_c00243{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);}
.mcf_c00243{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.mf_c00243{transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);}
.m92_c00243{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);}
.m98_c00243{transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);}
.m41_c00243{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m31_c00243{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m49_c00243{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mdd_c00243{transform:matrix(0.696324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696324,0.000000,0.000000,0.250000,0,0);}
.m63_c00243{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);}
.m8e_c00243{transform:matrix(0.703529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.703529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.703529,0.000000,0.000000,0.250000,0,0);}
.m4f_c00243{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mc5_c00243{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m86_c00243{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m20_c00243{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m7c_c00243{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mb8_c00243{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m24_c00243{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m46_c00243{transform:matrix(0.741186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741186,0.000000,0.000000,0.250000,0,0);}
.m34_c00243{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.me7_c00243{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.md8_c00243{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m2e_c00243{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m72_c00243{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m2a_c00243{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m5d_c00243{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m40_c00243{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m55_c00243{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.m5a_c00243{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m85_c00243{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m3f_c00243{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.md6_c00243{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m3_c00243{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws1_c00243{word-spacing:0.000000px;}
.ws0_c00243{word-spacing:2.571993px;}
.fc0_c00243{color:transparent;}
.fs3_c00243{font-size:3.420000px;}
.fs6_c00243{font-size:18.720000px;}
.fs0_c00243{font-size:20.400000px;}
.fs1_c00243{font-size:25.500000px;}
.fs2_c00243{font-size:28.920000px;}
.fs5_c00243{font-size:32.340000px;}
.fs4_c00243{font-size:35.700000px;}
.fs7_c00243{font-size:39.120000px;}
.y0_c00243{bottom:0.000000px;}
.yc2_c00243{bottom:250.245000px;}
.yc5_c00243{bottom:252.825000px;}
.yc4_c00243{bottom:253.245000px;}
.yc1_c00243{bottom:253.905000px;}
.yc3_c00243{bottom:255.405000px;}
.ybe_c00243{bottom:272.745000px;}
.ybc_c00243{bottom:273.405000px;}
.yc0_c00243{bottom:273.825000px;}
.ybf_c00243{bottom:274.905000px;}
.ybd_c00243{bottom:274.920000px;}
.yba_c00243{bottom:291.180000px;}
.ybb_c00243{bottom:292.245000px;}
.yb8_c00243{bottom:293.130000px;}
.yb7_c00243{bottom:294.405000px;}
.yb9_c00243{bottom:294.420000px;}
.yb6_c00243{bottom:310.905000px;}
.yb3_c00243{bottom:311.745000px;}
.yb5_c00243{bottom:312.825000px;}
.yb4_c00243{bottom:313.920000px;}
.yb0_c00243{bottom:331.245000px;}
.yb2_c00243{bottom:332.745000px;}
.yb1_c00243{bottom:333.405000px;}
.yae_c00243{bottom:349.680000px;}
.yac_c00243{bottom:350.745000px;}
.yad_c00243{bottom:352.905000px;}
.yaf_c00243{bottom:353.130000px;}
.yab_c00243{bottom:370.245000px;}
.ya7_c00243{bottom:371.550000px;}
.yaa_c00243{bottom:371.745000px;}
.ya6_c00243{bottom:372.405000px;}
.ya8_c00243{bottom:372.630000px;}
.ya9_c00243{bottom:373.905000px;}
.ya4_c00243{bottom:389.970000px;}
.ya3_c00243{bottom:390.825000px;}
.y9f_c00243{bottom:391.245000px;}
.ya1_c00243{bottom:392.130000px;}
.ya5_c00243{bottom:392.325000px;}
.ya2_c00243{bottom:392.970000px;}
.ya0_c00243{bottom:393.405000px;}
.y99_c00243{bottom:410.745000px;}
.y9e_c00243{bottom:411.630000px;}
.y9d_c00243{bottom:411.825000px;}
.y9a_c00243{bottom:412.905000px;}
.y9c_c00243{bottom:413.130000px;}
.y9b_c00243{bottom:413.970000px;}
.y96_c00243{bottom:430.245000px;}
.y98_c00243{bottom:431.325000px;}
.y94_c00243{bottom:432.405000px;}
.y95_c00243{bottom:432.630000px;}
.y97_c00243{bottom:433.470000px;}
.y92_c00243{bottom:448.905000px;}
.y93_c00243{bottom:449.325000px;}
.y91_c00243{bottom:449.745000px;}
.y90_c00243{bottom:451.905000px;}
.y8a_c00243{bottom:470.745000px;}
.y8f_c00243{bottom:471.405000px;}
.y8c_c00243{bottom:471.630000px;}
.y8d_c00243{bottom:471.825000px;}
.y8e_c00243{bottom:472.470000px;}
.y8b_c00243{bottom:472.905000px;}
.y89_c00243{bottom:490.245000px;}
.y88_c00243{bottom:491.130000px;}
.y87_c00243{bottom:492.405000px;}
.y83_c00243{bottom:509.745000px;}
.y86_c00243{bottom:510.825000px;}
.y85_c00243{bottom:511.905000px;}
.y84_c00243{bottom:512.970000px;}
.y7f_c00243{bottom:528.180000px;}
.y7e_c00243{bottom:529.245000px;}
.y81_c00243{bottom:530.325000px;}
.y80_c00243{bottom:531.405000px;}
.y82_c00243{bottom:532.470000px;}
.y7b_c00243{bottom:548.745000px;}
.y79_c00243{bottom:550.245000px;}
.y7a_c00243{bottom:550.905000px;}
.y7d_c00243{bottom:551.130000px;}
.y7c_c00243{bottom:552.405000px;}
.y77_c00243{bottom:568.245000px;}
.y75_c00243{bottom:569.325000px;}
.y78_c00243{bottom:569.745000px;}
.y76_c00243{bottom:570.405000px;}
.y74_c00243{bottom:571.905000px;}
.y73_c00243{bottom:587.745000px;}
.y71_c00243{bottom:589.245000px;}
.y72_c00243{bottom:591.405000px;}
.y6f_c00243{bottom:611.325000px;}
.y70_c00243{bottom:611.970000px;}
.y6c_c00243{bottom:612.405000px;}
.y6e_c00243{bottom:613.470000px;}
.y6d_c00243{bottom:614.550000px;}
.y6b_c00243{bottom:627.405000px;}
.y69_c00243{bottom:628.470000px;}
.y6a_c00243{bottom:628.905000px;}
.y68_c00243{bottom:629.970000px;}
.y63_c00243{bottom:646.470000px;}
.y64_c00243{bottom:647.325000px;}
.y65_c00243{bottom:647.550000px;}
.y67_c00243{bottom:648.405000px;}
.y62_c00243{bottom:649.470000px;}
.y66_c00243{bottom:650.550000px;}
.y61_c00243{bottom:671.745000px;}
.y5f_c00243{bottom:672.405000px;}
.y60_c00243{bottom:673.470000px;}
.y5e_c00243{bottom:673.905000px;}
.y5b_c00243{bottom:706.245000px;}
.y5d_c00243{bottom:707.325000px;}
.y5c_c00243{bottom:708.405000px;}
.y5a_c00243{bottom:725.745000px;}
.y59_c00243{bottom:727.245000px;}
.y57_c00243{bottom:727.905000px;}
.y58_c00243{bottom:728.130000px;}
.y55_c00243{bottom:746.745000px;}
.y54_c00243{bottom:747.630000px;}
.y56_c00243{bottom:748.905000px;}
.y52_c00243{bottom:766.245000px;}
.y53_c00243{bottom:767.130000px;}
.y51_c00243{bottom:768.405000px;}
.y50_c00243{bottom:785.325000px;}
.y4d_c00243{bottom:786.630000px;}
.y4e_c00243{bottom:786.825000px;}
.y4f_c00243{bottom:787.905000px;}
.y49_c00243{bottom:805.245000px;}
.y4c_c00243{bottom:806.970000px;}
.y4b_c00243{bottom:807.405000px;}
.y4a_c00243{bottom:807.630000px;}
.y47_c00243{bottom:824.325000px;}
.y48_c00243{bottom:824.745000px;}
.y46_c00243{bottom:825.825000px;}
.y45_c00243{bottom:826.905000px;}
.y44_c00243{bottom:827.970000px;}
.y3e_c00243{bottom:843.405000px;}
.y43_c00243{bottom:844.470000px;}
.y41_c00243{bottom:844.680000px;}
.y3d_c00243{bottom:845.745000px;}
.y3f_c00243{bottom:846.630000px;}
.y42_c00243{bottom:846.825000px;}
.y40_c00243{bottom:847.470000px;}
.y3c_c00243{bottom:847.905000px;}
.y35_c00243{bottom:862.905000px;}
.y36_c00243{bottom:863.745000px;}
.y38_c00243{bottom:865.050000px;}
.y3a_c00243{bottom:865.245000px;}
.y39_c00243{bottom:866.130000px;}
.y3b_c00243{bottom:866.970000px;}
.y37_c00243{bottom:867.405000px;}
.y32_c00243{bottom:882.405000px;}
.y33_c00243{bottom:884.745000px;}
.y34_c00243{bottom:885.630000px;}
.y31_c00243{bottom:886.905000px;}
.y30_c00243{bottom:901.905000px;}
.y2b_c00243{bottom:902.745000px;}
.y2d_c00243{bottom:904.245000px;}
.y2e_c00243{bottom:905.130000px;}
.y2f_c00243{bottom:905.325000px;}
.y2c_c00243{bottom:906.405000px;}
.y2a_c00243{bottom:922.905000px;}
.y28_c00243{bottom:923.745000px;}
.y27_c00243{bottom:924.630000px;}
.y29_c00243{bottom:925.470000px;}
.y26_c00243{bottom:925.905000px;}
.y21_c00243{bottom:942.405000px;}
.y25_c00243{bottom:943.245000px;}
.y22_c00243{bottom:944.130000px;}
.y24_c00243{bottom:944.970000px;}
.y20_c00243{bottom:945.405000px;}
.y23_c00243{bottom:945.630000px;}
.y1d_c00243{bottom:962.745000px;}
.y1c_c00243{bottom:964.905000px;}
.y1f_c00243{bottom:965.130000px;}
.y1e_c00243{bottom:965.970000px;}
.y19_c00243{bottom:982.245000px;}
.y1a_c00243{bottom:983.325000px;}
.y1b_c00243{bottom:983.970000px;}
.y16_c00243{bottom:984.405000px;}
.y18_c00243{bottom:984.630000px;}
.y17_c00243{bottom:985.470000px;}
.y15_c00243{bottom:1000.905000px;}
.y13_c00243{bottom:1001.745000px;}
.y12_c00243{bottom:1001.970000px;}
.y11_c00243{bottom:1003.245000px;}
.y10_c00243{bottom:1003.905000px;}
.y14_c00243{bottom:1004.130000px;}
.yd_c00243{bottom:1021.245000px;}
.ye_c00243{bottom:1023.405000px;}
.yf_c00243{bottom:1024.470000px;}
.y9_c00243{bottom:1040.745000px;}
.yb_c00243{bottom:1041.405000px;}
.yc_c00243{bottom:1041.825000px;}
.y8_c00243{bottom:1042.905000px;}
.ya_c00243{bottom:1043.970000px;}
.y5_c00243{bottom:1061.745000px;}
.y3_c00243{bottom:1062.405000px;}
.y7_c00243{bottom:1063.470000px;}
.y6_c00243{bottom:1063.905000px;}
.y4_c00243{bottom:1063.920000px;}
.y2_c00243{bottom:1100.970000px;}
.y1_c00243{bottom:1102.050000px;}
.h4_c00243{height:4.206533px;}
.h7_c00243{height:23.025234px;}
.h1_c00243{height:25.091602px;}
.h2_c00243{height:31.364502px;}
.h3_c00243{height:35.571035px;}
.h6_c00243{height:39.777568px;}
.h5_c00243{height:43.910303px;}
.h8_c00243{height:48.116836px;}
.h0_c00243{height:1335.000000px;}
.w0_c00243{width:880.500000px;}
.x0_c00243{left:0.000000px;}
.xfe_c00243{left:148.920000px;}
.xe6_c00243{left:150.420000px;}
.x4f_c00243{left:151.500000px;}
.x2_c00243{left:152.580000px;}
.x1d_c00243{left:154.080000px;}
.xed_c00243{left:163.500000px;}
.xf8_c00243{left:165.000000px;}
.xb4_c00243{left:166.500000px;}
.x9e_c00243{left:167.580000px;}
.x3_c00243{left:168.645000px;}
.x11_c00243{left:170.580000px;}
.xf1_c00243{left:172.080000px;}
.x8b_c00243{left:175.500000px;}
.xff_c00243{left:177.000000px;}
.x85_c00243{left:178.080000px;}
.x29_c00243{left:180.000000px;}
.x96_c00243{left:182.145000px;}
.x35_c00243{left:185.580000px;}
.xc5_c00243{left:187.920000px;}
.xcb_c00243{left:190.500000px;}
.x5c_c00243{left:192.000000px;}
.xc0_c00243{left:196.920000px;}
.xe0_c00243{left:198.000000px;}
.x7e_c00243{left:199.500000px;}
.x1e_c00243{left:201.000000px;}
.x97_c00243{left:202.500000px;}
.x41_c00243{left:204.000000px;}
.x69_c00243{left:205.080000px;}
.xb5_c00243{left:207.000000px;}
.x9f_c00243{left:209.580000px;}
.x73_c00243{left:211.920000px;}
.xdc_c00243{left:213.000000px;}
.xcc_c00243{left:214.500000px;}
.x36_c00243{left:215.580000px;}
.x12_c00243{left:219.000000px;}
.xa7_c00243{left:221.580000px;}
.x1f_c00243{left:226.500000px;}
.x45_c00243{left:229.500000px;}
.x9d_c00243{left:231.000000px;}
.xd1_c00243{left:232.080000px;}
.x50_c00243{left:235.920000px;}
.xd6_c00243{left:237.420000px;}
.x4_c00243{left:238.500000px;}
.xee_c00243{left:240.000000px;}
.xf2_c00243{left:241.080000px;}
.x100_c00243{left:243.000000px;}
.xe7_c00243{left:246.000000px;}
.x74_c00243{left:247.080000px;}
.xdd_c00243{left:249.420000px;}
.x2a_c00243{left:251.580000px;}
.x6a_c00243{left:254.580000px;}
.xf6_c00243{left:256.500000px;}
.x51_c00243{left:258.000000px;}
.x5_c00243{left:259.920000px;}
.x86_c00243{left:263.355000px;}
.xd7_c00243{left:264.420000px;}
.x46_c00243{left:265.500000px;}
.x98_c00243{left:266.580000px;}
.xe2_c00243{left:268.920000px;}
.x42_c00243{left:271.500000px;}
.x13_c00243{left:274.500000px;}
.x20_c00243{left:276.420000px;}
.xf7_c00243{left:277.500000px;}
.x75_c00243{left:279.000000px;}
.x8c_c00243{left:280.080000px;}
.x47_c00243{left:283.500000px;}
.xc6_c00243{left:285.000000px;}
.x2b_c00243{left:291.420000px;}
.x99_c00243{left:292.500000px;}
.xb9_c00243{left:294.000000px;}
.x91_c00243{left:295.500000px;}
.x43_c00243{left:297.000000px;}
.x14_c00243{left:298.500000px;}
.xf5_c00243{left:299.580000px;}
.x5d_c00243{left:301.080000px;}
.xa0_c00243{left:303.420000px;}
.x87_c00243{left:304.500000px;}
.x52_c00243{left:306.420000px;}
.x76_c00243{left:307.500000px;}
.x21_c00243{left:309.000000px;}
.xa8_c00243{left:310.275000px;}
.xaf_c00243{left:312.000000px;}
.xe8_c00243{left:313.500000px;}
.x6_c00243{left:316.920000px;}
.xbb_c00243{left:319.920000px;}
.x37_c00243{left:322.500000px;}
.x48_c00243{left:325.920000px;}
.x15_c00243{left:328.500000px;}
.xa1_c00243{left:330.000000px;}
.xde_c00243{left:331.080000px;}
.xac_c00243{left:333.000000px;}
.x8d_c00243{left:334.920000px;}
.x2c_c00243{left:340.500000px;}
.xd8_c00243{left:342.420000px;}
.x7_c00243{left:343.500000px;}
.x44_c00243{left:345.420000px;}
.x38_c00243{left:346.500000px;}
.x53_c00243{left:348.000000px;}
.x77_c00243{left:349.080000px;}
.x6b_c00243{left:351.000000px;}
.x88_c00243{left:352.500000px;}
.xbc_c00243{left:354.420000px;}
.x22_c00243{left:355.500000px;}
.x5e_c00243{left:358.920000px;}
.xba_c00243{left:361.080000px;}
.x8e_c00243{left:363.420000px;}
.xc7_c00243{left:366.000000px;}
.xf9_c00243{left:367.500000px;}
.x2d_c00243{left:369.000000px;}
.x92_c00243{left:372.420000px;}
.xa2_c00243{left:375.645000px;}
.x49_c00243{left:377.580000px;}
.x54_c00243{left:379.500000px;}
.x8_c00243{left:382.080000px;}
.x16_c00243{left:385.080000px;}
.x5f_c00243{left:387.000000px;}
.xb6_c00243{left:388.500000px;}
.xef_c00243{left:391.500000px;}
.xc8_c00243{left:392.580000px;}
.x6c_c00243{left:394.500000px;}
.x4a_c00243{left:396.000000px;}
.x93_c00243{left:397.920000px;}
.x9_c00243{left:400.920000px;}
.xd3_c00243{left:402.000000px;}
.x78_c00243{left:403.500000px;}
.x9a_c00243{left:406.500000px;}
.xd9_c00243{left:409.080000px;}
.x1_c00243{left:411.000000px;}
.x101_c00243{left:412.500000px;}
.xf3_c00243{left:415.920000px;}
.x4b_c00243{left:418.500000px;}
.x2e_c00243{left:419.580000px;}
.x39_c00243{left:421.080000px;}
.x55_c00243{left:423.000000px;}
.x79_c00243{left:424.500000px;}
.xa_c00243{left:427.080000px;}
.xbd_c00243{left:429.420000px;}
.x7f_c00243{left:430.500000px;}
.xb0_c00243{left:432.420000px;}
.x60_c00243{left:433.920000px;}
.xa3_c00243{left:436.920000px;}
.x23_c00243{left:442.920000px;}
.xa9_c00243{left:447.000000px;}
.x6d_c00243{left:448.080000px;}
.xb1_c00243{left:450.000000px;}
.x7a_c00243{left:453.420000px;}
.x80_c00243{left:456.000000px;}
.x3a_c00243{left:457.500000px;}
.x17_c00243{left:459.420000px;}
.x61_c00243{left:463.920000px;}
.x9b_c00243{left:468.420000px;}
.x56_c00243{left:471.420000px;}
.x2f_c00243{left:473.775000px;}
.x3b_c00243{left:475.500000px;}
.x6e_c00243{left:478.500000px;}
.x94_c00243{left:481.920000px;}
.x81_c00243{left:483.420000px;}
.xd2_c00243{left:484.500000px;}
.x102_c00243{left:485.580000px;}
.xb2_c00243{left:487.920000px;}
.x24_c00243{left:493.080000px;}
.x4c_c00243{left:495.000000px;}
.xb_c00243{left:496.080000px;}
.xad_c00243{left:497.580000px;}
.x18_c00243{left:499.080000px;}
.xb7_c00243{left:500.580000px;}
.xfa_c00243{left:502.080000px;}
.xcd_c00243{left:503.580000px;}
.xf4_c00243{left:507.420000px;}
.x62_c00243{left:509.355000px;}
.xd4_c00243{left:510.420000px;}
.xc1_c00243{left:511.500000px;}
.x25_c00243{left:513.000000px;}
.xe9_c00243{left:517.080000px;}
.x6f_c00243{left:520.080000px;}
.x82_c00243{left:522.000000px;}
.x4d_c00243{left:523.500000px;}
.x89_c00243{left:525.000000px;}
.x30_c00243{left:526.500000px;}
.x57_c00243{left:528.000000px;}
.x19_c00243{left:529.500000px;}
.xc_c00243{left:531.000000px;}
.xb3_c00243{left:532.080000px;}
.xe1_c00243{left:533.580000px;}
.xda_c00243{left:535.500000px;}
.x95_c00243{left:538.500000px;}
.x3c_c00243{left:540.000000px;}
.xc2_c00243{left:544.920000px;}
.xd_c00243{left:546.420000px;}
.xce_c00243{left:551.775000px;}
.xbe_c00243{left:553.500000px;}
.x103_c00243{left:554.580000px;}
.xea_c00243{left:556.500000px;}
.x3d_c00243{left:558.000000px;}
.x83_c00243{left:560.580000px;}
.xaa_c00243{left:567.000000px;}
.x7b_c00243{left:568.500000px;}
.x3e_c00243{left:570.000000px;}
.x63_c00243{left:573.000000px;}
.xeb_c00243{left:576.000000px;}
.xdf_c00243{left:577.500000px;}
.xc3_c00243{left:580.920000px;}
.xe3_c00243{left:582.000000px;}
.x58_c00243{left:583.080000px;}
.xe_c00243{left:585.000000px;}
.xc9_c00243{left:586.500000px;}
.xae_c00243{left:587.775000px;}
.x64_c00243{left:589.500000px;}
.x1a_c00243{left:592.920000px;}
.x26_c00243{left:595.080000px;}
.x104_c00243{left:596.580000px;}
.x7c_c00243{left:598.500000px;}
.x31_c00243{left:599.580000px;}
.x3f_c00243{left:601.920000px;}
.x59_c00243{left:603.420000px;}
.xa4_c00243{left:605.775000px;}
.x8a_c00243{left:607.500000px;}
.x7d_c00243{left:612.420000px;}
.x32_c00243{left:618.420000px;}
.x70_c00243{left:619.920000px;}
.xab_c00243{left:624.000000px;}
.xfb_c00243{left:625.500000px;}
.x40_c00243{left:626.580000px;}
.x8f_c00243{left:630.000000px;}
.x5a_c00243{left:631.500000px;}
.x65_c00243{left:633.000000px;}
.x1b_c00243{left:634.275000px;}
.xf0_c00243{left:635.580000px;}
.xc4_c00243{left:637.080000px;}
.xfc_c00243{left:643.080000px;}
.xa5_c00243{left:644.580000px;}
.x33_c00243{left:648.000000px;}
.x71_c00243{left:649.920000px;}
.xcf_c00243{left:651.420000px;}
.xe4_c00243{left:652.500000px;}
.x105_c00243{left:655.080000px;}
.xf_c00243{left:657.420000px;}
.xec_c00243{left:661.500000px;}
.xdb_c00243{left:664.080000px;}
.x1c_c00243{left:665.580000px;}
.xca_c00243{left:667.080000px;}
.xd5_c00243{left:669.000000px;}
.x66_c00243{left:670.500000px;}
.x84_c00243{left:673.080000px;}
.x90_c00243{left:674.580000px;}
.xa6_c00243{left:675.645000px;}
.xd0_c00243{left:678.000000px;}
.x4e_c00243{left:679.500000px;}
.x27_c00243{left:684.000000px;}
.x10_c00243{left:685.080000px;}
.xbf_c00243{left:688.500000px;}
.x67_c00243{left:690.000000px;}
.x9c_c00243{left:693.000000px;}
.xfd_c00243{left:697.920000px;}
.x34_c00243{left:699.000000px;}
.x68_c00243{left:703.080000px;}
.x5b_c00243{left:705.000000px;}
.x72_c00243{left:706.920000px;}
.xe5_c00243{left:714.000000px;}
.xb8_c00243{left:717.420000px;}
.x28_c00243{left:718.500000px;}
@media print{
.v0_c00243{vertical-align:0.000000pt;}
.ls0_c00243{letter-spacing:0.000000pt;}
.ws1_c00243{word-spacing:0.000000pt;}
.ws0_c00243{word-spacing:2.286216pt;}
.fs3_c00243{font-size:3.040000pt;}
.fs6_c00243{font-size:16.640000pt;}
.fs0_c00243{font-size:18.133333pt;}
.fs1_c00243{font-size:22.666667pt;}
.fs2_c00243{font-size:25.706667pt;}
.fs5_c00243{font-size:28.746667pt;}
.fs4_c00243{font-size:31.733333pt;}
.fs7_c00243{font-size:34.773333pt;}
.y0_c00243{bottom:0.000000pt;}
.yc2_c00243{bottom:222.440000pt;}
.yc5_c00243{bottom:224.733333pt;}
.yc4_c00243{bottom:225.106667pt;}
.yc1_c00243{bottom:225.693333pt;}
.yc3_c00243{bottom:227.026667pt;}
.ybe_c00243{bottom:242.440000pt;}
.ybc_c00243{bottom:243.026667pt;}
.yc0_c00243{bottom:243.400000pt;}
.ybf_c00243{bottom:244.360000pt;}
.ybd_c00243{bottom:244.373333pt;}
.yba_c00243{bottom:258.826667pt;}
.ybb_c00243{bottom:259.773333pt;}
.yb8_c00243{bottom:260.560000pt;}
.yb7_c00243{bottom:261.693333pt;}
.yb9_c00243{bottom:261.706667pt;}
.yb6_c00243{bottom:276.360000pt;}
.yb3_c00243{bottom:277.106667pt;}
.yb5_c00243{bottom:278.066667pt;}
.yb4_c00243{bottom:279.040000pt;}
.yb0_c00243{bottom:294.440000pt;}
.yb2_c00243{bottom:295.773333pt;}
.yb1_c00243{bottom:296.360000pt;}
.yae_c00243{bottom:310.826667pt;}
.yac_c00243{bottom:311.773333pt;}
.yad_c00243{bottom:313.693333pt;}
.yaf_c00243{bottom:313.893333pt;}
.yab_c00243{bottom:329.106667pt;}
.ya7_c00243{bottom:330.266667pt;}
.yaa_c00243{bottom:330.440000pt;}
.ya6_c00243{bottom:331.026667pt;}
.ya8_c00243{bottom:331.226667pt;}
.ya9_c00243{bottom:332.360000pt;}
.ya4_c00243{bottom:346.640000pt;}
.ya3_c00243{bottom:347.400000pt;}
.y9f_c00243{bottom:347.773333pt;}
.ya1_c00243{bottom:348.560000pt;}
.ya5_c00243{bottom:348.733333pt;}
.ya2_c00243{bottom:349.306667pt;}
.ya0_c00243{bottom:349.693333pt;}
.y99_c00243{bottom:365.106667pt;}
.y9e_c00243{bottom:365.893333pt;}
.y9d_c00243{bottom:366.066667pt;}
.y9a_c00243{bottom:367.026667pt;}
.y9c_c00243{bottom:367.226667pt;}
.y9b_c00243{bottom:367.973333pt;}
.y96_c00243{bottom:382.440000pt;}
.y98_c00243{bottom:383.400000pt;}
.y94_c00243{bottom:384.360000pt;}
.y95_c00243{bottom:384.560000pt;}
.y97_c00243{bottom:385.306667pt;}
.y92_c00243{bottom:399.026667pt;}
.y93_c00243{bottom:399.400000pt;}
.y91_c00243{bottom:399.773333pt;}
.y90_c00243{bottom:401.693333pt;}
.y8a_c00243{bottom:418.440000pt;}
.y8f_c00243{bottom:419.026667pt;}
.y8c_c00243{bottom:419.226667pt;}
.y8d_c00243{bottom:419.400000pt;}
.y8e_c00243{bottom:419.973333pt;}
.y8b_c00243{bottom:420.360000pt;}
.y89_c00243{bottom:435.773333pt;}
.y88_c00243{bottom:436.560000pt;}
.y87_c00243{bottom:437.693333pt;}
.y83_c00243{bottom:453.106667pt;}
.y86_c00243{bottom:454.066667pt;}
.y85_c00243{bottom:455.026667pt;}
.y84_c00243{bottom:455.973333pt;}
.y7f_c00243{bottom:469.493333pt;}
.y7e_c00243{bottom:470.440000pt;}
.y81_c00243{bottom:471.400000pt;}
.y80_c00243{bottom:472.360000pt;}
.y82_c00243{bottom:473.306667pt;}
.y7b_c00243{bottom:487.773333pt;}
.y79_c00243{bottom:489.106667pt;}
.y7a_c00243{bottom:489.693333pt;}
.y7d_c00243{bottom:489.893333pt;}
.y7c_c00243{bottom:491.026667pt;}
.y77_c00243{bottom:505.106667pt;}
.y75_c00243{bottom:506.066667pt;}
.y78_c00243{bottom:506.440000pt;}
.y76_c00243{bottom:507.026667pt;}
.y74_c00243{bottom:508.360000pt;}
.y73_c00243{bottom:522.440000pt;}
.y71_c00243{bottom:523.773333pt;}
.y72_c00243{bottom:525.693333pt;}
.y6f_c00243{bottom:543.400000pt;}
.y70_c00243{bottom:543.973333pt;}
.y6c_c00243{bottom:544.360000pt;}
.y6e_c00243{bottom:545.306667pt;}
.y6d_c00243{bottom:546.266667pt;}
.y6b_c00243{bottom:557.693333pt;}
.y69_c00243{bottom:558.640000pt;}
.y6a_c00243{bottom:559.026667pt;}
.y68_c00243{bottom:559.973333pt;}
.y63_c00243{bottom:574.640000pt;}
.y64_c00243{bottom:575.400000pt;}
.y65_c00243{bottom:575.600000pt;}
.y67_c00243{bottom:576.360000pt;}
.y62_c00243{bottom:577.306667pt;}
.y66_c00243{bottom:578.266667pt;}
.y61_c00243{bottom:597.106667pt;}
.y5f_c00243{bottom:597.693333pt;}
.y60_c00243{bottom:598.640000pt;}
.y5e_c00243{bottom:599.026667pt;}
.y5b_c00243{bottom:627.773333pt;}
.y5d_c00243{bottom:628.733333pt;}
.y5c_c00243{bottom:629.693333pt;}
.y5a_c00243{bottom:645.106667pt;}
.y59_c00243{bottom:646.440000pt;}
.y57_c00243{bottom:647.026667pt;}
.y58_c00243{bottom:647.226667pt;}
.y55_c00243{bottom:663.773333pt;}
.y54_c00243{bottom:664.560000pt;}
.y56_c00243{bottom:665.693333pt;}
.y52_c00243{bottom:681.106667pt;}
.y53_c00243{bottom:681.893333pt;}
.y51_c00243{bottom:683.026667pt;}
.y50_c00243{bottom:698.066667pt;}
.y4d_c00243{bottom:699.226667pt;}
.y4e_c00243{bottom:699.400000pt;}
.y4f_c00243{bottom:700.360000pt;}
.y49_c00243{bottom:715.773333pt;}
.y4c_c00243{bottom:717.306667pt;}
.y4b_c00243{bottom:717.693333pt;}
.y4a_c00243{bottom:717.893333pt;}
.y47_c00243{bottom:732.733333pt;}
.y48_c00243{bottom:733.106667pt;}
.y46_c00243{bottom:734.066667pt;}
.y45_c00243{bottom:735.026667pt;}
.y44_c00243{bottom:735.973333pt;}
.y3e_c00243{bottom:749.693333pt;}
.y43_c00243{bottom:750.640000pt;}
.y41_c00243{bottom:750.826667pt;}
.y3d_c00243{bottom:751.773333pt;}
.y3f_c00243{bottom:752.560000pt;}
.y42_c00243{bottom:752.733333pt;}
.y40_c00243{bottom:753.306667pt;}
.y3c_c00243{bottom:753.693333pt;}
.y35_c00243{bottom:767.026667pt;}
.y36_c00243{bottom:767.773333pt;}
.y38_c00243{bottom:768.933333pt;}
.y3a_c00243{bottom:769.106667pt;}
.y39_c00243{bottom:769.893333pt;}
.y3b_c00243{bottom:770.640000pt;}
.y37_c00243{bottom:771.026667pt;}
.y32_c00243{bottom:784.360000pt;}
.y33_c00243{bottom:786.440000pt;}
.y34_c00243{bottom:787.226667pt;}
.y31_c00243{bottom:788.360000pt;}
.y30_c00243{bottom:801.693333pt;}
.y2b_c00243{bottom:802.440000pt;}
.y2d_c00243{bottom:803.773333pt;}
.y2e_c00243{bottom:804.560000pt;}
.y2f_c00243{bottom:804.733333pt;}
.y2c_c00243{bottom:805.693333pt;}
.y2a_c00243{bottom:820.360000pt;}
.y28_c00243{bottom:821.106667pt;}
.y27_c00243{bottom:821.893333pt;}
.y29_c00243{bottom:822.640000pt;}
.y26_c00243{bottom:823.026667pt;}
.y21_c00243{bottom:837.693333pt;}
.y25_c00243{bottom:838.440000pt;}
.y22_c00243{bottom:839.226667pt;}
.y24_c00243{bottom:839.973333pt;}
.y20_c00243{bottom:840.360000pt;}
.y23_c00243{bottom:840.560000pt;}
.y1d_c00243{bottom:855.773333pt;}
.y1c_c00243{bottom:857.693333pt;}
.y1f_c00243{bottom:857.893333pt;}
.y1e_c00243{bottom:858.640000pt;}
.y19_c00243{bottom:873.106667pt;}
.y1a_c00243{bottom:874.066667pt;}
.y1b_c00243{bottom:874.640000pt;}
.y16_c00243{bottom:875.026667pt;}
.y18_c00243{bottom:875.226667pt;}
.y17_c00243{bottom:875.973333pt;}
.y15_c00243{bottom:889.693333pt;}
.y13_c00243{bottom:890.440000pt;}
.y12_c00243{bottom:890.640000pt;}
.y11_c00243{bottom:891.773333pt;}
.y10_c00243{bottom:892.360000pt;}
.y14_c00243{bottom:892.560000pt;}
.yd_c00243{bottom:907.773333pt;}
.ye_c00243{bottom:909.693333pt;}
.yf_c00243{bottom:910.640000pt;}
.y9_c00243{bottom:925.106667pt;}
.yb_c00243{bottom:925.693333pt;}
.yc_c00243{bottom:926.066667pt;}
.y8_c00243{bottom:927.026667pt;}
.ya_c00243{bottom:927.973333pt;}
.y5_c00243{bottom:943.773333pt;}
.y3_c00243{bottom:944.360000pt;}
.y7_c00243{bottom:945.306667pt;}
.y6_c00243{bottom:945.693333pt;}
.y4_c00243{bottom:945.706667pt;}
.y2_c00243{bottom:978.640000pt;}
.y1_c00243{bottom:979.600000pt;}
.h4_c00243{height:3.739141pt;}
.h7_c00243{height:20.466875pt;}
.h1_c00243{height:22.303646pt;}
.h2_c00243{height:27.879557pt;}
.h3_c00243{height:31.618698pt;}
.h6_c00243{height:35.357839pt;}
.h5_c00243{height:39.031380pt;}
.h8_c00243{height:42.770521pt;}
.h0_c00243{height:1186.666667pt;}
.w0_c00243{width:782.666667pt;}
.x0_c00243{left:0.000000pt;}
.xfe_c00243{left:132.373333pt;}
.xe6_c00243{left:133.706667pt;}
.x4f_c00243{left:134.666667pt;}
.x2_c00243{left:135.626667pt;}
.x1d_c00243{left:136.960000pt;}
.xed_c00243{left:145.333333pt;}
.xf8_c00243{left:146.666667pt;}
.xb4_c00243{left:148.000000pt;}
.x9e_c00243{left:148.960000pt;}
.x3_c00243{left:149.906667pt;}
.x11_c00243{left:151.626667pt;}
.xf1_c00243{left:152.960000pt;}
.x8b_c00243{left:156.000000pt;}
.xff_c00243{left:157.333333pt;}
.x85_c00243{left:158.293333pt;}
.x29_c00243{left:160.000000pt;}
.x96_c00243{left:161.906667pt;}
.x35_c00243{left:164.960000pt;}
.xc5_c00243{left:167.040000pt;}
.xcb_c00243{left:169.333333pt;}
.x5c_c00243{left:170.666667pt;}
.xc0_c00243{left:175.040000pt;}
.xe0_c00243{left:176.000000pt;}
.x7e_c00243{left:177.333333pt;}
.x1e_c00243{left:178.666667pt;}
.x97_c00243{left:180.000000pt;}
.x41_c00243{left:181.333333pt;}
.x69_c00243{left:182.293333pt;}
.xb5_c00243{left:184.000000pt;}
.x9f_c00243{left:186.293333pt;}
.x73_c00243{left:188.373333pt;}
.xdc_c00243{left:189.333333pt;}
.xcc_c00243{left:190.666667pt;}
.x36_c00243{left:191.626667pt;}
.x12_c00243{left:194.666667pt;}
.xa7_c00243{left:196.960000pt;}
.x1f_c00243{left:201.333333pt;}
.x45_c00243{left:204.000000pt;}
.x9d_c00243{left:205.333333pt;}
.xd1_c00243{left:206.293333pt;}
.x50_c00243{left:209.706667pt;}
.xd6_c00243{left:211.040000pt;}
.x4_c00243{left:212.000000pt;}
.xee_c00243{left:213.333333pt;}
.xf2_c00243{left:214.293333pt;}
.x100_c00243{left:216.000000pt;}
.xe7_c00243{left:218.666667pt;}
.x74_c00243{left:219.626667pt;}
.xdd_c00243{left:221.706667pt;}
.x2a_c00243{left:223.626667pt;}
.x6a_c00243{left:226.293333pt;}
.xf6_c00243{left:228.000000pt;}
.x51_c00243{left:229.333333pt;}
.x5_c00243{left:231.040000pt;}
.x86_c00243{left:234.093333pt;}
.xd7_c00243{left:235.040000pt;}
.x46_c00243{left:236.000000pt;}
.x98_c00243{left:236.960000pt;}
.xe2_c00243{left:239.040000pt;}
.x42_c00243{left:241.333333pt;}
.x13_c00243{left:244.000000pt;}
.x20_c00243{left:245.706667pt;}
.xf7_c00243{left:246.666667pt;}
.x75_c00243{left:248.000000pt;}
.x8c_c00243{left:248.960000pt;}
.x47_c00243{left:252.000000pt;}
.xc6_c00243{left:253.333333pt;}
.x2b_c00243{left:259.040000pt;}
.x99_c00243{left:260.000000pt;}
.xb9_c00243{left:261.333333pt;}
.x91_c00243{left:262.666667pt;}
.x43_c00243{left:264.000000pt;}
.x14_c00243{left:265.333333pt;}
.xf5_c00243{left:266.293333pt;}
.x5d_c00243{left:267.626667pt;}
.xa0_c00243{left:269.706667pt;}
.x87_c00243{left:270.666667pt;}
.x52_c00243{left:272.373333pt;}
.x76_c00243{left:273.333333pt;}
.x21_c00243{left:274.666667pt;}
.xa8_c00243{left:275.800000pt;}
.xaf_c00243{left:277.333333pt;}
.xe8_c00243{left:278.666667pt;}
.x6_c00243{left:281.706667pt;}
.xbb_c00243{left:284.373333pt;}
.x37_c00243{left:286.666667pt;}
.x48_c00243{left:289.706667pt;}
.x15_c00243{left:292.000000pt;}
.xa1_c00243{left:293.333333pt;}
.xde_c00243{left:294.293333pt;}
.xac_c00243{left:296.000000pt;}
.x8d_c00243{left:297.706667pt;}
.x2c_c00243{left:302.666667pt;}
.xd8_c00243{left:304.373333pt;}
.x7_c00243{left:305.333333pt;}
.x44_c00243{left:307.040000pt;}
.x38_c00243{left:308.000000pt;}
.x53_c00243{left:309.333333pt;}
.x77_c00243{left:310.293333pt;}
.x6b_c00243{left:312.000000pt;}
.x88_c00243{left:313.333333pt;}
.xbc_c00243{left:315.040000pt;}
.x22_c00243{left:316.000000pt;}
.x5e_c00243{left:319.040000pt;}
.xba_c00243{left:320.960000pt;}
.x8e_c00243{left:323.040000pt;}
.xc7_c00243{left:325.333333pt;}
.xf9_c00243{left:326.666667pt;}
.x2d_c00243{left:328.000000pt;}
.x92_c00243{left:331.040000pt;}
.xa2_c00243{left:333.906667pt;}
.x49_c00243{left:335.626667pt;}
.x54_c00243{left:337.333333pt;}
.x8_c00243{left:339.626667pt;}
.x16_c00243{left:342.293333pt;}
.x5f_c00243{left:344.000000pt;}
.xb6_c00243{left:345.333333pt;}
.xef_c00243{left:348.000000pt;}
.xc8_c00243{left:348.960000pt;}
.x6c_c00243{left:350.666667pt;}
.x4a_c00243{left:352.000000pt;}
.x93_c00243{left:353.706667pt;}
.x9_c00243{left:356.373333pt;}
.xd3_c00243{left:357.333333pt;}
.x78_c00243{left:358.666667pt;}
.x9a_c00243{left:361.333333pt;}
.xd9_c00243{left:363.626667pt;}
.x1_c00243{left:365.333333pt;}
.x101_c00243{left:366.666667pt;}
.xf3_c00243{left:369.706667pt;}
.x4b_c00243{left:372.000000pt;}
.x2e_c00243{left:372.960000pt;}
.x39_c00243{left:374.293333pt;}
.x55_c00243{left:376.000000pt;}
.x79_c00243{left:377.333333pt;}
.xa_c00243{left:379.626667pt;}
.xbd_c00243{left:381.706667pt;}
.x7f_c00243{left:382.666667pt;}
.xb0_c00243{left:384.373333pt;}
.x60_c00243{left:385.706667pt;}
.xa3_c00243{left:388.373333pt;}
.x23_c00243{left:393.706667pt;}
.xa9_c00243{left:397.333333pt;}
.x6d_c00243{left:398.293333pt;}
.xb1_c00243{left:400.000000pt;}
.x7a_c00243{left:403.040000pt;}
.x80_c00243{left:405.333333pt;}
.x3a_c00243{left:406.666667pt;}
.x17_c00243{left:408.373333pt;}
.x61_c00243{left:412.373333pt;}
.x9b_c00243{left:416.373333pt;}
.x56_c00243{left:419.040000pt;}
.x2f_c00243{left:421.133333pt;}
.x3b_c00243{left:422.666667pt;}
.x6e_c00243{left:425.333333pt;}
.x94_c00243{left:428.373333pt;}
.x81_c00243{left:429.706667pt;}
.xd2_c00243{left:430.666667pt;}
.x102_c00243{left:431.626667pt;}
.xb2_c00243{left:433.706667pt;}
.x24_c00243{left:438.293333pt;}
.x4c_c00243{left:440.000000pt;}
.xb_c00243{left:440.960000pt;}
.xad_c00243{left:442.293333pt;}
.x18_c00243{left:443.626667pt;}
.xb7_c00243{left:444.960000pt;}
.xfa_c00243{left:446.293333pt;}
.xcd_c00243{left:447.626667pt;}
.xf4_c00243{left:451.040000pt;}
.x62_c00243{left:452.760000pt;}
.xd4_c00243{left:453.706667pt;}
.xc1_c00243{left:454.666667pt;}
.x25_c00243{left:456.000000pt;}
.xe9_c00243{left:459.626667pt;}
.x6f_c00243{left:462.293333pt;}
.x82_c00243{left:464.000000pt;}
.x4d_c00243{left:465.333333pt;}
.x89_c00243{left:466.666667pt;}
.x30_c00243{left:468.000000pt;}
.x57_c00243{left:469.333333pt;}
.x19_c00243{left:470.666667pt;}
.xc_c00243{left:472.000000pt;}
.xb3_c00243{left:472.960000pt;}
.xe1_c00243{left:474.293333pt;}
.xda_c00243{left:476.000000pt;}
.x95_c00243{left:478.666667pt;}
.x3c_c00243{left:480.000000pt;}
.xc2_c00243{left:484.373333pt;}
.xd_c00243{left:485.706667pt;}
.xce_c00243{left:490.466667pt;}
.xbe_c00243{left:492.000000pt;}
.x103_c00243{left:492.960000pt;}
.xea_c00243{left:494.666667pt;}
.x3d_c00243{left:496.000000pt;}
.x83_c00243{left:498.293333pt;}
.xaa_c00243{left:504.000000pt;}
.x7b_c00243{left:505.333333pt;}
.x3e_c00243{left:506.666667pt;}
.x63_c00243{left:509.333333pt;}
.xeb_c00243{left:512.000000pt;}
.xdf_c00243{left:513.333333pt;}
.xc3_c00243{left:516.373333pt;}
.xe3_c00243{left:517.333333pt;}
.x58_c00243{left:518.293333pt;}
.xe_c00243{left:520.000000pt;}
.xc9_c00243{left:521.333333pt;}
.xae_c00243{left:522.466667pt;}
.x64_c00243{left:524.000000pt;}
.x1a_c00243{left:527.040000pt;}
.x26_c00243{left:528.960000pt;}
.x104_c00243{left:530.293333pt;}
.x7c_c00243{left:532.000000pt;}
.x31_c00243{left:532.960000pt;}
.x3f_c00243{left:535.040000pt;}
.x59_c00243{left:536.373333pt;}
.xa4_c00243{left:538.466667pt;}
.x8a_c00243{left:540.000000pt;}
.x7d_c00243{left:544.373333pt;}
.x32_c00243{left:549.706667pt;}
.x70_c00243{left:551.040000pt;}
.xab_c00243{left:554.666667pt;}
.xfb_c00243{left:556.000000pt;}
.x40_c00243{left:556.960000pt;}
.x8f_c00243{left:560.000000pt;}
.x5a_c00243{left:561.333333pt;}
.x65_c00243{left:562.666667pt;}
.x1b_c00243{left:563.800000pt;}
.xf0_c00243{left:564.960000pt;}
.xc4_c00243{left:566.293333pt;}
.xfc_c00243{left:571.626667pt;}
.xa5_c00243{left:572.960000pt;}
.x33_c00243{left:576.000000pt;}
.x71_c00243{left:577.706667pt;}
.xcf_c00243{left:579.040000pt;}
.xe4_c00243{left:580.000000pt;}
.x105_c00243{left:582.293333pt;}
.xf_c00243{left:584.373333pt;}
.xec_c00243{left:588.000000pt;}
.xdb_c00243{left:590.293333pt;}
.x1c_c00243{left:591.626667pt;}
.xca_c00243{left:592.960000pt;}
.xd5_c00243{left:594.666667pt;}
.x66_c00243{left:596.000000pt;}
.x84_c00243{left:598.293333pt;}
.x90_c00243{left:599.626667pt;}
.xa6_c00243{left:600.573333pt;}
.xd0_c00243{left:602.666667pt;}
.x4e_c00243{left:604.000000pt;}
.x27_c00243{left:608.000000pt;}
.x10_c00243{left:608.960000pt;}
.xbf_c00243{left:612.000000pt;}
.x67_c00243{left:613.333333pt;}
.x9c_c00243{left:616.000000pt;}
.xfd_c00243{left:620.373333pt;}
.x34_c00243{left:621.333333pt;}
.x68_c00243{left:624.960000pt;}
.x5b_c00243{left:626.666667pt;}
.x72_c00243{left:628.373333pt;}
.xe5_c00243{left:634.666667pt;}
.xb8_c00243{left:637.706667pt;}
.x28_c00243{left:638.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_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_93ccb52603499cb08485f8c9.woff2')format("woff");}.ff1_c00244{font-family:ff1_c00244;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mea_c00244{transform:matrix(0.331092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331092,0.000000,0.000000,0.250000,0,0);}
.mfc_c00244{transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);}
.m112_c00244{transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);}
.m10a_c00244{transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);}
.m9a_c00244{transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);}
.mef_c00244{transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);}
.m9e_c00244{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.md_c00244{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.mb6_c00244{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.mab_c00244{transform:matrix(0.372449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372449,0.000000,0.000000,0.250000,0,0);}
.m76_c00244{transform:matrix(0.373083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373083,0.000000,0.000000,0.250000,0,0);}
.mf3_c00244{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.md4_c00244{transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);}
.m42_c00244{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mb_c00244{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m74_c00244{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m41_c00244{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m109_c00244{transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);}
.ma_c00244{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mf0_c00244{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m84_c00244{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m6_c00244{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m78_c00244{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.m6b_c00244{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m102_c00244{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.m2e_c00244{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m7d_c00244{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.me0_c00244{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.mfa_c00244{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.m5f_c00244{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mec_c00244{transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);}
.m1b_c00244{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m36_c00244{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m6c_c00244{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m65_c00244{transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);}
.me1_c00244{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.mc7_c00244{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m50_c00244{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m49_c00244{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m45_c00244{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m7_c00244{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.mcc_c00244{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.mf6_c00244{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m59_c00244{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m5b_c00244{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.mf2_c00244{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.mbc_c00244{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m8_c00244{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m24_c00244{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m4e_c00244{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mcf_c00244{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m97_c00244{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m107_c00244{transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);}
.m44_c00244{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m14_c00244{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m26_c00244{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mba_c00244{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m8b_c00244{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.me8_c00244{transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);}
.m105_c00244{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m4a_c00244{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m3b_c00244{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m9_c00244{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m2a_c00244{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.md8_c00244{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m69_c00244{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.mae_c00244{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m9f_c00244{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m87_c00244{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.md3_c00244{transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);}
.m8c_c00244{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m73_c00244{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.mc2_c00244{transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);}
.m4d_c00244{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.m72_c00244{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m56_c00244{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.mdd_c00244{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.m51_c00244{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m10c_c00244{transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);}
.mdb_c00244{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.m48_c00244{transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);}
.m3f_c00244{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.me5_c00244{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m52_c00244{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m4f_c00244{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m101_c00244{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.ma2_c00244{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m62_c00244{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.ma6_c00244{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m2b_c00244{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.med_c00244{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.mfb_c00244{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m9c_c00244{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.maf_c00244{transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);}
.m95_c00244{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mbf_c00244{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m25_c00244{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mb7_c00244{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m6d_c00244{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.me6_c00244{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.md2_c00244{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mf9_c00244{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m6a_c00244{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.md7_c00244{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);}
.m85_c00244{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m1_c00244{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mc4_c00244{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m64_c00244{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m104_c00244{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m79_c00244{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.mf_c00244{transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);}
.m20_c00244{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_c00244{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m70_c00244{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.md5_c00244{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m2d_c00244{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mb8_c00244{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m3e_c00244{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mdf_c00244{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m3d_c00244{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m15_c00244{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m10_c00244{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.mf1_c00244{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.m2c_c00244{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m55_c00244{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m10b_c00244{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.m54_c00244{transform:matrix(0.515770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515770,0.000000,0.000000,0.250000,0,0);}
.m3c_c00244{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.md6_c00244{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.me4_c00244{transform:matrix(0.517059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517059,0.000000,0.000000,0.250000,0,0);}
.mb4_c00244{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m5e_c00244{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mac_c00244{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.mce_c00244{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);}
.ma8_c00244{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m7e_c00244{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m21_c00244{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mc6_c00244{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.m5d_c00244{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mf8_c00244{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.mbd_c00244{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);}
.m10e_c00244{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m63_c00244{transform:matrix(0.526438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526438,0.000000,0.000000,0.250000,0,0);}
.mc8_c00244{transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);}
.m7f_c00244{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m3_c00244{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mf7_c00244{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m38_c00244{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m13_c00244{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m2_c00244{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mf4_c00244{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.m1c_c00244{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.me9_c00244{transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);}
.m43_c00244{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.mcd_c00244{transform:matrix(0.534706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534706,0.000000,0.000000,0.250000,0,0);}
.m80_c00244{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m37_c00244{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m90_c00244{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.mc_c00244{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m5_c00244{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m9b_c00244{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m8a_c00244{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mb1_c00244{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m86_c00244{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m28_c00244{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m83_c00244{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m91_c00244{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m10f_c00244{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m19_c00244{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m94_c00244{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.me_c00244{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m8e_c00244{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m6e_c00244{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m30_c00244{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m57_c00244{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m1f_c00244{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);}
.m67_c00244{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m35_c00244{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mb9_c00244{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m5a_c00244{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m58_c00244{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m108_c00244{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m4_c00244{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mb5_c00244{transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);}
.m7a_c00244{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m23_c00244{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m98_c00244{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m7c_c00244{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m111_c00244{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m40_c00244{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mf5_c00244{transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);}
.mde_c00244{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.m82_c00244{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m99_c00244{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m61_c00244{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mb0_c00244{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.m77_c00244{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.me7_c00244{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m33_c00244{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m34_c00244{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m10d_c00244{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m103_c00244{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.mca_c00244{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m39_c00244{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m3a_c00244{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m106_c00244{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.maa_c00244{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.mc5_c00244{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m110_c00244{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);}
.m8d_c00244{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m16_c00244{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.ma1_c00244{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m1e_c00244{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m60_c00244{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m71_c00244{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mfd_c00244{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m5c_c00244{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.me3_c00244{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.mbe_c00244{transform:matrix(0.598529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598529,0.000000,0.000000,0.250000,0,0);}
.mc3_c00244{transform:matrix(0.602206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602206,0.000000,0.000000,0.250000,0,0);}
.m1a_c00244{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m18_c00244{transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);}
.m6f_c00244{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m7b_c00244{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m17_c00244{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mfe_c00244{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m12_c00244{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.ma9_c00244{transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);}
.mee_c00244{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.mdc_c00244{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.ma3_c00244{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mda_c00244{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m0_c00244{transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);}
.mad_c00244{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);}
.mff_c00244{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.md0_c00244{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m93_c00244{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.mb2_c00244{transform:matrix(0.635463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635463,0.000000,0.000000,0.250000,0,0);}
.m92_c00244{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.ma0_c00244{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.me2_c00244{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.ma4_c00244{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.ma5_c00244{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.mc0_c00244{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);}
.md9_c00244{transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);}
.mb3_c00244{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.mc9_c00244{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m4b_c00244{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m47_c00244{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m1d_c00244{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m100_c00244{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.md1_c00244{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m89_c00244{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m8f_c00244{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mbb_c00244{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mcb_c00244{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m53_c00244{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m96_c00244{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);}
.m66_c00244{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m29_c00244{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.mc1_c00244{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m11_c00244{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m4c_c00244{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m46_c00244{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m75_c00244{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m32_c00244{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m68_c00244{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m88_c00244{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m81_c00244{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m27_c00244{transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);}
.meb_c00244{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m31_c00244{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.ma7_c00244{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m9d_c00244{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m22_c00244{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00244{vertical-align:0.000000px;}
.v1_c00244{vertical-align:7.680000px;}
.ls2_c00244{letter-spacing:0.000000px;}
.ls1_c00244{letter-spacing:8.817600px;}
.ls0_c00244{letter-spacing:14.817600px;}
.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;}
}
.ws1_c00244{word-spacing:-0.104593px;}
.ws2_c00244{word-spacing:0.000000px;}
.ws0_c00244{word-spacing:0.308050px;}
._0_c00244{width:18.306018px;}
.fc0_c00244{color:transparent;}
.fs6_c00244{font-size:3.420000px;}
.fs8_c00244{font-size:13.620000px;}
.fs4_c00244{font-size:18.720000px;}
.fs0_c00244{font-size:20.400000px;}
.fs5_c00244{font-size:25.500000px;}
.fs1_c00244{font-size:28.920000px;}
.fs3_c00244{font-size:32.340000px;}
.fs2_c00244{font-size:35.700000px;}
.fs7_c00244{font-size:39.120000px;}
.y0_c00244{bottom:0.000000px;}
.y108_c00244{bottom:249.825000px;}
.y107_c00244{bottom:250.905000px;}
.y109_c00244{bottom:251.970000px;}
.y10a_c00244{bottom:252.195000px;}
.y106_c00244{bottom:265.050000px;}
.y105_c00244{bottom:265.905000px;}
.y104_c00244{bottom:266.130000px;}
.y102_c00244{bottom:266.550000px;}
.y103_c00244{bottom:266.970000px;}
.y101_c00244{bottom:279.405000px;}
.yff_c00244{bottom:279.825000px;}
.yfd_c00244{bottom:281.130000px;}
.yfe_c00244{bottom:281.970000px;}
.y100_c00244{bottom:282.195000px;}
.yfc_c00244{bottom:282.405000px;}
.yf6_c00244{bottom:293.970000px;}
.yf8_c00244{bottom:294.825000px;}
.yfb_c00244{bottom:296.130000px;}
.yf7_c00244{bottom:296.970000px;}
.yf9_c00244{bottom:297.195000px;}
.yfa_c00244{bottom:298.050000px;}
.yf3_c00244{bottom:308.970000px;}
.yf0_c00244{bottom:309.825000px;}
.yf2_c00244{bottom:310.050000px;}
.yf1_c00244{bottom:310.905000px;}
.yf4_c00244{bottom:311.130000px;}
.yf5_c00244{bottom:313.050000px;}
.ye9_c00244{bottom:323.970000px;}
.yef_c00244{bottom:324.405000px;}
.yee_c00244{bottom:325.470000px;}
.yeb_c00244{bottom:325.695000px;}
.yec_c00244{bottom:325.905000px;}
.yed_c00244{bottom:326.550000px;}
.yea_c00244{bottom:326.970000px;}
.ye8_c00244{bottom:339.405000px;}
.ye6_c00244{bottom:339.825000px;}
.ye7_c00244{bottom:340.470000px;}
.ye5_c00244{bottom:353.325000px;}
.ye1_c00244{bottom:353.970000px;}
.ye3_c00244{bottom:354.405000px;}
.ye4_c00244{bottom:354.630000px;}
.ye2_c00244{bottom:355.470000px;}
.yde_c00244{bottom:368.325000px;}
.ydf_c00244{bottom:369.405000px;}
.ydc_c00244{bottom:369.630000px;}
.ydd_c00244{bottom:370.470000px;}
.ye0_c00244{bottom:371.550000px;}
.ydb_c00244{bottom:383.325000px;}
.yda_c00244{bottom:384.405000px;}
.yd9_c00244{bottom:385.470000px;}
.yd8_c00244{bottom:397.470000px;}
.yd7_c00244{bottom:397.905000px;}
.yd6_c00244{bottom:398.325000px;}
.yd5_c00244{bottom:398.550000px;}
.yd4_c00244{bottom:399.405000px;}
.yd2_c00244{bottom:399.630000px;}
.yd3_c00244{bottom:401.550000px;}
.yd1_c00244{bottom:414.405000px;}
.yd0_c00244{bottom:416.550000px;}
.yce_c00244{bottom:427.905000px;}
.ycd_c00244{bottom:428.325000px;}
.yca_c00244{bottom:428.970000px;}
.ycf_c00244{bottom:429.195000px;}
.yc9_c00244{bottom:429.630000px;}
.ycb_c00244{bottom:430.050000px;}
.yc8_c00244{bottom:430.470000px;}
.yc7_c00244{bottom:430.695000px;}
.ycc_c00244{bottom:431.550000px;}
.yc6_c00244{bottom:441.825000px;}
.yc2_c00244{bottom:442.470000px;}
.yc4_c00244{bottom:442.905000px;}
.yc0_c00244{bottom:443.325000px;}
.yc3_c00244{bottom:443.745000px;}
.yc5_c00244{bottom:443.970000px;}
.yc1_c00244{bottom:445.050000px;}
.ybf_c00244{bottom:445.470000px;}
.ybe_c00244{bottom:446.550000px;}
.ybc_c00244{bottom:455.970000px;}
.ybd_c00244{bottom:456.825000px;}
.yb8_c00244{bottom:457.050000px;}
.ybb_c00244{bottom:457.905000px;}
.yba_c00244{bottom:458.130000px;}
.yb9_c00244{bottom:458.970000px;}
.yb7_c00244{bottom:470.970000px;}
.yb4_c00244{bottom:471.825000px;}
.yb5_c00244{bottom:472.905000px;}
.yb6_c00244{bottom:473.130000px;}
.yb3_c00244{bottom:473.970000px;}
.yb2_c00244{bottom:475.695000px;}
.yae_c00244{bottom:486.825000px;}
.yaf_c00244{bottom:487.905000px;}
.yb1_c00244{bottom:488.130000px;}
.yad_c00244{bottom:488.970000px;}
.yb0_c00244{bottom:490.050000px;}
.ya9_c00244{bottom:502.050000px;}
.yac_c00244{bottom:502.905000px;}
.yab_c00244{bottom:503.970000px;}
.yaa_c00244{bottom:505.050000px;}
.ya4_c00244{bottom:515.970000px;}
.ya6_c00244{bottom:517.905000px;}
.ya7_c00244{bottom:518.550000px;}
.ya5_c00244{bottom:518.970000px;}
.ya8_c00244{bottom:519.195000px;}
.ya3_c00244{bottom:530.325000px;}
.ya2_c00244{bottom:532.470000px;}
.y9f_c00244{bottom:532.905000px;}
.ya1_c00244{bottom:533.970000px;}
.ya0_c00244{bottom:534.195000px;}
.y9d_c00244{bottom:545.325000px;}
.y9c_c00244{bottom:546.405000px;}
.y9e_c00244{bottom:547.470000px;}
.y9b_c00244{bottom:548.550000px;}
.y9a_c00244{bottom:559.470000px;}
.y98_c00244{bottom:560.325000px;}
.y96_c00244{bottom:561.405000px;}
.y97_c00244{bottom:562.470000px;}
.y99_c00244{bottom:562.695000px;}
.y93_c00244{bottom:562.905000px;}
.y95_c00244{bottom:563.550000px;}
.y92_c00244{bottom:563.970000px;}
.y94_c00244{bottom:564.195000px;}
.y90_c00244{bottom:575.325000px;}
.y8f_c00244{bottom:576.405000px;}
.y8d_c00244{bottom:576.825000px;}
.y8b_c00244{bottom:577.050000px;}
.y91_c00244{bottom:577.470000px;}
.y8e_c00244{bottom:578.550000px;}
.y8c_c00244{bottom:578.970000px;}
.y8a_c00244{bottom:590.325000px;}
.y84_c00244{bottom:590.550000px;}
.y86_c00244{bottom:591.405000px;}
.y87_c00244{bottom:591.630000px;}
.y89_c00244{bottom:592.470000px;}
.y88_c00244{bottom:592.695000px;}
.y85_c00244{bottom:593.550000px;}
.y80_c00244{bottom:606.405000px;}
.y82_c00244{bottom:607.470000px;}
.y81_c00244{bottom:607.695000px;}
.y83_c00244{bottom:608.550000px;}
.y7f_c00244{bottom:619.470000px;}
.y7a_c00244{bottom:619.905000px;}
.y7e_c00244{bottom:620.325000px;}
.y7d_c00244{bottom:620.550000px;}
.y7c_c00244{bottom:621.405000px;}
.y7b_c00244{bottom:622.470000px;}
.y79_c00244{bottom:623.550000px;}
.y76_c00244{bottom:635.325000px;}
.y73_c00244{bottom:635.550000px;}
.y75_c00244{bottom:636.630000px;}
.y77_c00244{bottom:637.050000px;}
.y74_c00244{bottom:637.470000px;}
.y78_c00244{bottom:637.695000px;}
.y6f_c00244{bottom:650.325000px;}
.y72_c00244{bottom:651.405000px;}
.y6e_c00244{bottom:652.470000px;}
.y70_c00244{bottom:652.695000px;}
.y71_c00244{bottom:653.550000px;}
.y6a_c00244{bottom:664.470000px;}
.y6b_c00244{bottom:666.405000px;}
.y67_c00244{bottom:666.630000px;}
.y6d_c00244{bottom:667.050000px;}
.y69_c00244{bottom:667.470000px;}
.y6c_c00244{bottom:667.695000px;}
.y68_c00244{bottom:668.550000px;}
.y65_c00244{bottom:679.905000px;}
.y62_c00244{bottom:680.325000px;}
.y63_c00244{bottom:681.405000px;}
.y66_c00244{bottom:682.050000px;}
.y61_c00244{bottom:682.470000px;}
.y64_c00244{bottom:682.695000px;}
.y60_c00244{bottom:693.825000px;}
.y5f_c00244{bottom:695.970000px;}
.y5c_c00244{bottom:696.630000px;}
.y5e_c00244{bottom:697.050000px;}
.y5d_c00244{bottom:697.470000px;}
.y5b_c00244{bottom:727.245000px;}
.y5a_c00244{bottom:729.405000px;}
.y56_c00244{bottom:746.745000px;}
.y58_c00244{bottom:747.405000px;}
.y57_c00244{bottom:747.630000px;}
.y59_c00244{bottom:748.470000px;}
.y55_c00244{bottom:748.905000px;}
.y50_c00244{bottom:765.405000px;}
.y51_c00244{bottom:766.245000px;}
.y53_c00244{bottom:768.405000px;}
.y54_c00244{bottom:768.630000px;}
.y52_c00244{bottom:769.470000px;}
.y4f_c00244{bottom:784.470000px;}
.y4d_c00244{bottom:785.745000px;}
.y4e_c00244{bottom:787.905000px;}
.y4b_c00244{bottom:804.180000px;}
.y49_c00244{bottom:804.405000px;}
.y48_c00244{bottom:805.245000px;}
.y4c_c00244{bottom:806.325000px;}
.y47_c00244{bottom:807.405000px;}
.y4a_c00244{bottom:807.630000px;}
.y46_c00244{bottom:824.745000px;}
.y45_c00244{bottom:825.825000px;}
.y44_c00244{bottom:826.905000px;}
.y42_c00244{bottom:827.130000px;}
.y43_c00244{bottom:827.970000px;}
.y40_c00244{bottom:844.245000px;}
.y3f_c00244{bottom:845.325000px;}
.y3e_c00244{bottom:846.405000px;}
.y41_c00244{bottom:846.630000px;}
.y3c_c00244{bottom:846.825000px;}
.y3d_c00244{bottom:847.470000px;}
.y3b_c00244{bottom:847.905000px;}
.y38_c00244{bottom:863.745000px;}
.y37_c00244{bottom:865.245000px;}
.y39_c00244{bottom:865.905000px;}
.y3a_c00244{bottom:866.130000px;}
.y33_c00244{bottom:866.325000px;}
.y35_c00244{bottom:866.970000px;}
.y34_c00244{bottom:867.405000px;}
.y36_c00244{bottom:868.470000px;}
.y31_c00244{bottom:884.745000px;}
.y2f_c00244{bottom:885.825000px;}
.y32_c00244{bottom:886.470000px;}
.y30_c00244{bottom:886.905000px;}
.y2a_c00244{bottom:904.245000px;}
.y2c_c00244{bottom:905.130000px;}
.y2d_c00244{bottom:905.325000px;}
.y2b_c00244{bottom:905.970000px;}
.y29_c00244{bottom:906.405000px;}
.y2e_c00244{bottom:907.470000px;}
.y26_c00244{bottom:923.745000px;}
.y28_c00244{bottom:924.630000px;}
.y27_c00244{bottom:924.825000px;}
.y24_c00244{bottom:925.245000px;}
.y25_c00244{bottom:925.905000px;}
.y23_c00244{bottom:943.245000px;}
.y21_c00244{bottom:945.405000px;}
.y22_c00244{bottom:946.470000px;}
.y20_c00244{bottom:962.745000px;}
.y1d_c00244{bottom:964.470000px;}
.y1c_c00244{bottom:964.905000px;}
.y1f_c00244{bottom:965.130000px;}
.y1e_c00244{bottom:965.970000px;}
.y1b_c00244{bottom:982.245000px;}
.y19_c00244{bottom:983.325000px;}
.y17_c00244{bottom:983.745000px;}
.y1a_c00244{bottom:984.405000px;}
.y16_c00244{bottom:984.630000px;}
.y18_c00244{bottom:985.905000px;}
.y12_c00244{bottom:1001.745000px;}
.y14_c00244{bottom:1003.245000px;}
.y13_c00244{bottom:1003.905000px;}
.y15_c00244{bottom:1004.130000px;}
.y10_c00244{bottom:1005.405000px;}
.y11_c00244{bottom:1005.420000px;}
.yf_c00244{bottom:1021.245000px;}
.yc_c00244{bottom:1022.745000px;}
.ye_c00244{bottom:1023.405000px;}
.yb_c00244{bottom:1024.470000px;}
.yd_c00244{bottom:1024.905000px;}
.ya_c00244{bottom:1041.825000px;}
.y7_c00244{bottom:1042.245000px;}
.y8_c00244{bottom:1042.905000px;}
.y9_c00244{bottom:1043.130000px;}
.y6_c00244{bottom:1044.405000px;}
.y4_c00244{bottom:1061.745000px;}
.y5_c00244{bottom:1062.825000px;}
.y3_c00244{bottom:1063.905000px;}
.y2_c00244{bottom:1099.905000px;}
.y1_c00244{bottom:1102.050000px;}
.h7_c00244{height:4.206533px;}
.h9_c00244{height:16.752334px;}
.h5_c00244{height:23.025234px;}
.h1_c00244{height:25.091602px;}
.h6_c00244{height:31.364502px;}
.h2_c00244{height:35.571035px;}
.ha_c00244{height:39.044502px;}
.h4_c00244{height:39.777568px;}
.h3_c00244{height:43.910303px;}
.h8_c00244{height:48.116836px;}
.h0_c00244{height:1335.000000px;}
.w0_c00244{width:880.500000px;}
.x0_c00244{left:0.000000px;}
.xe_c00244{left:150.000000px;}
.x3_c00244{left:151.920000px;}
.xdd_c00244{left:153.000000px;}
.x94_c00244{left:154.275000px;}
.x109_c00244{left:155.355000px;}
.xac_c00244{left:163.500000px;}
.x24_c00244{left:166.080000px;}
.xfb_c00244{left:168.000000px;}
.x5c_c00244{left:170.580000px;}
.x71_c00244{left:172.920000px;}
.x51_c00244{left:174.000000px;}
.xa4_c00244{left:178.920000px;}
.x101_c00244{left:180.000000px;}
.x4_c00244{left:181.500000px;}
.x9e_c00244{left:182.580000px;}
.xf_c00244{left:184.500000px;}
.x8d_c00244{left:187.080000px;}
.x7b_c00244{left:190.920000px;}
.x30_c00244{left:192.420000px;}
.x95_c00244{left:193.500000px;}
.xf1_c00244{left:195.000000px;}
.x10a_c00244{left:196.500000px;}
.x46_c00244{left:198.000000px;}
.xcb_c00244{left:201.000000px;}
.xad_c00244{left:202.080000px;}
.x72_c00244{left:206.580000px;}
.x19_c00244{left:208.500000px;}
.xcc_c00244{left:210.000000px;}
.x83_c00244{left:211.920000px;}
.x67_c00244{left:214.920000px;}
.xcf_c00244{left:217.500000px;}
.xb7_c00244{left:219.000000px;}
.xe8_c00244{left:222.000000px;}
.xeb_c00244{left:224.145000px;}
.xf5_c00244{left:226.080000px;}
.x3b_c00244{left:228.000000px;}
.x9f_c00244{left:229.500000px;}
.x52_c00244{left:230.580000px;}
.x96_c00244{left:232.920000px;}
.x118_c00244{left:234.000000px;}
.xbe_c00244{left:235.080000px;}
.x5d_c00244{left:237.420000px;}
.x8e_c00244{left:240.420000px;}
.xb2_c00244{left:241.500000px;}
.x5_c00244{left:244.080000px;}
.x3c_c00244{left:246.420000px;}
.x25_c00244{left:247.500000px;}
.xd8_c00244{left:250.500000px;}
.xf2_c00244{left:252.000000px;}
.xd0_c00244{left:253.500000px;}
.xcd_c00244{left:255.000000px;}
.xe9_c00244{left:256.500000px;}
.xde_c00244{left:258.000000px;}
.x10_c00244{left:261.000000px;}
.x97_c00244{left:262.500000px;}
.x110_c00244{left:264.000000px;}
.x26_c00244{left:265.080000px;}
.xdf_c00244{left:268.500000px;}
.x1a_c00244{left:269.580000px;}
.xa0_c00244{left:271.500000px;}
.x3d_c00244{left:272.580000px;}
.x31_c00244{left:274.920000px;}
.x5e_c00244{left:276.000000px;}
.x6_c00244{left:277.920000px;}
.x53_c00244{left:280.275000px;}
.x7c_c00244{left:283.920000px;}
.x11_c00244{left:285.000000px;}
.x84_c00244{left:286.500000px;}
.x68_c00244{left:288.000000px;}
.x10e_c00244{left:289.920000px;}
.xd1_c00244{left:291.000000px;}
.x47_c00244{left:293.580000px;}
.xa5_c00244{left:297.000000px;}
.xa1_c00244{left:298.080000px;}
.xae_c00244{left:300.420000px;}
.x10b_c00244{left:301.500000px;}
.x32_c00244{left:303.000000px;}
.xd9_c00244{left:304.920000px;}
.x7_c00244{left:306.000000px;}
.xf7_c00244{left:307.080000px;}
.x54_c00244{left:309.000000px;}
.xbf_c00244{left:310.080000px;}
.xfc_c00244{left:312.420000px;}
.x5f_c00244{left:313.500000px;}
.x106_c00244{left:315.000000px;}
.xec_c00244{left:316.920000px;}
.x1b_c00244{left:318.420000px;}
.x10c_c00244{left:320.145000px;}
.xd2_c00244{left:322.500000px;}
.x73_c00244{left:323.580000px;}
.xce_c00244{left:325.500000px;}
.xc2_c00244{left:327.000000px;}
.xea_c00244{left:328.500000px;}
.xc7_c00244{left:331.500000px;}
.xda_c00244{left:332.580000px;}
.x69_c00244{left:334.920000px;}
.x27_c00244{left:339.000000px;}
.x55_c00244{left:340.500000px;}
.x60_c00244{left:343.500000px;}
.x48_c00244{left:344.580000px;}
.x8f_c00244{left:346.500000px;}
.x7d_c00244{left:348.000000px;}
.x12_c00244{left:352.500000px;}
.xc0_c00244{left:354.000000px;}
.x1c_c00244{left:355.920000px;}
.x61_c00244{left:357.000000px;}
.x28_c00244{left:360.000000px;}
.x74_c00244{left:362.580000px;}
.x98_c00244{left:365.580000px;}
.x33_c00244{left:367.920000px;}
.x8_c00244{left:370.080000px;}
.xa6_c00244{left:372.000000px;}
.xe0_c00244{left:373.500000px;}
.xb8_c00244{left:375.000000px;}
.xd3_c00244{left:378.000000px;}
.x85_c00244{left:379.500000px;}
.x75_c00244{left:381.420000px;}
.x1d_c00244{left:382.500000px;}
.xc1_c00244{left:384.420000px;}
.x119_c00244{left:385.500000px;}
.xfd_c00244{left:387.420000px;}
.x7e_c00244{left:388.500000px;}
.x29_c00244{left:390.645000px;}
.x3e_c00244{left:393.000000px;}
.x56_c00244{left:394.500000px;}
.xed_c00244{left:395.580000px;}
.xdb_c00244{left:399.000000px;}
.x115_c00244{left:400.500000px;}
.xe1_c00244{left:401.580000px;}
.xfe_c00244{left:403.500000px;}
.x34_c00244{left:405.420000px;}
.x1_c00244{left:406.500000px;}
.xb3_c00244{left:407.580000px;}
.x76_c00244{left:409.920000px;}
.x3f_c00244{left:411.000000px;}
.x1e_c00244{left:412.080000px;}
.xc3_c00244{left:414.000000px;}
.x99_c00244{left:415.500000px;}
.x111_c00244{left:418.080000px;}
.x90_c00244{left:420.000000px;}
.x9_c00244{left:421.080000px;}
.x13_c00244{left:424.500000px;}
.x40_c00244{left:426.000000px;}
.xd4_c00244{left:427.080000px;}
.xb9_c00244{left:429.645000px;}
.x49_c00244{left:431.580000px;}
.x35_c00244{left:433.500000px;}
.xb4_c00244{left:436.080000px;}
.xaf_c00244{left:438.000000px;}
.x86_c00244{left:439.500000px;}
.xc8_c00244{left:445.920000px;}
.x91_c00244{left:447.000000px;}
.x6a_c00244{left:448.080000px;}
.x4a_c00244{left:450.420000px;}
.x7f_c00244{left:453.000000px;}
.x41_c00244{left:454.080000px;}
.x112_c00244{left:455.580000px;}
.x1f_c00244{left:458.580000px;}
.xa2_c00244{left:460.500000px;}
.xff_c00244{left:463.500000px;}
.x9a_c00244{left:464.580000px;}
.xf8_c00244{left:465.645000px;}
.xf3_c00244{left:467.580000px;}
.x6b_c00244{left:469.500000px;}
.x36_c00244{left:470.580000px;}
.x57_c00244{left:472.080000px;}
.xba_c00244{left:473.580000px;}
.x14_c00244{left:475.500000px;}
.x4b_c00244{left:477.000000px;}
.xb5_c00244{left:478.500000px;}
.x2a_c00244{left:479.580000px;}
.xa_c00244{left:481.275000px;}
.x77_c00244{left:483.420000px;}
.xa7_c00244{left:484.920000px;}
.x116_c00244{left:490.500000px;}
.xd5_c00244{left:495.000000px;}
.x15_c00244{left:496.500000px;}
.x42_c00244{left:497.580000px;}
.xc9_c00244{left:499.080000px;}
.x102_c00244{left:500.580000px;}
.x37_c00244{left:502.500000px;}
.xfa_c00244{left:504.000000px;}
.xbb_c00244{left:505.920000px;}
.xf9_c00244{left:507.000000px;}
.xa8_c00244{left:510.000000px;}
.xee_c00244{left:515.580000px;}
.x62_c00244{left:517.920000px;}
.x78_c00244{left:519.420000px;}
.xc4_c00244{left:520.920000px;}
.x6c_c00244{left:522.000000px;}
.x20_c00244{left:525.000000px;}
.x87_c00244{left:528.000000px;}
.xd6_c00244{left:529.080000px;}
.x43_c00244{left:530.580000px;}
.x6d_c00244{left:532.920000px;}
.x80_c00244{left:534.000000px;}
.x9b_c00244{left:535.500000px;}
.xb6_c00244{left:537.000000px;}
.x2b_c00244{left:538.500000px;}
.x4c_c00244{left:539.580000px;}
.xe5_c00244{left:541.500000px;}
.x21_c00244{left:544.920000px;}
.x88_c00244{left:547.080000px;}
.xdc_c00244{left:549.420000px;}
.xf6_c00244{left:552.000000px;}
.x9c_c00244{left:553.920000px;}
.x2c_c00244{left:555.420000px;}
.xd7_c00244{left:556.920000px;}
.xb_c00244{left:558.000000px;}
.x63_c00244{left:559.920000px;}
.x16_c00244{left:562.500000px;}
.x58_c00244{left:567.000000px;}
.x89_c00244{left:570.000000px;}
.x22_c00244{left:571.500000px;}
.x4d_c00244{left:572.580000px;}
.xbc_c00244{left:574.500000px;}
.x44_c00244{left:580.500000px;}
.x9d_c00244{left:581.580000px;}
.x6e_c00244{left:583.080000px;}
.x38_c00244{left:585.000000px;}
.x4e_c00244{left:589.920000px;}
.x59_c00244{left:592.920000px;}
.x2d_c00244{left:594.420000px;}
.xb0_c00244{left:595.920000px;}
.xe2_c00244{left:597.000000px;}
.x92_c00244{left:598.080000px;}
.xc5_c00244{left:600.000000px;}
.xa9_c00244{left:601.500000px;}
.x39_c00244{left:604.920000px;}
.xbd_c00244{left:607.080000px;}
.x5a_c00244{left:610.920000px;}
.x79_c00244{left:612.000000px;}
.x64_c00244{left:613.500000px;}
.x8a_c00244{left:614.580000px;}
.x4f_c00244{left:617.580000px;}
.xe6_c00244{left:618.645000px;}
.x6f_c00244{left:619.920000px;}
.xc_c00244{left:625.275000px;}
.xe3_c00244{left:627.420000px;}
.x103_c00244{left:628.500000px;}
.xf4_c00244{left:630.000000px;}
.xa3_c00244{left:631.080000px;}
.x23_c00244{left:633.420000px;}
.x100_c00244{left:634.500000px;}
.xaa_c00244{left:637.920000px;}
.x113_c00244{left:640.500000px;}
.x17_c00244{left:643.920000px;}
.x81_c00244{left:645.420000px;}
.x10f_c00244{left:648.000000px;}
.xef_c00244{left:649.500000px;}
.xe4_c00244{left:654.000000px;}
.x93_c00244{left:655.080000px;}
.x10d_c00244{left:656.145000px;}
.x2e_c00244{left:658.500000px;}
.x7a_c00244{left:660.000000px;}
.x8b_c00244{left:661.500000px;}
.x45_c00244{left:662.580000px;}
.xe7_c00244{left:664.500000px;}
.xd_c00244{left:667.275000px;}
.xca_c00244{left:670.500000px;}
.x18_c00244{left:672.000000px;}
.x104_c00244{left:673.500000px;}
.x2f_c00244{left:675.000000px;}
.xb1_c00244{left:678.000000px;}
.x117_c00244{left:681.000000px;}
.x5b_c00244{left:682.080000px;}
.x3a_c00244{left:685.080000px;}
.x65_c00244{left:686.580000px;}
.x70_c00244{left:688.500000px;}
.xab_c00244{left:690.420000px;}
.x8c_c00244{left:693.000000px;}
.x107_c00244{left:694.500000px;}
.x2_c00244{left:703.080000px;}
.x82_c00244{left:705.420000px;}
.x66_c00244{left:706.920000px;}
.xf0_c00244{left:708.000000px;}
.x108_c00244{left:709.500000px;}
.xc6_c00244{left:711.000000px;}
.x50_c00244{left:717.000000px;}
.x114_c00244{left:719.580000px;}
.x105_c00244{left:724.920000px;}
@media print{
.v0_c00244{vertical-align:0.000000pt;}
.v1_c00244{vertical-align:6.826667pt;}
.ls2_c00244{letter-spacing:0.000000pt;}
.ls1_c00244{letter-spacing:7.837867pt;}
.ls0_c00244{letter-spacing:13.171200pt;}
.ws1_c00244{word-spacing:-0.092971pt;}
.ws2_c00244{word-spacing:0.000000pt;}
.ws0_c00244{word-spacing:0.273822pt;}
._0_c00244{width:16.272016pt;}
.fs6_c00244{font-size:3.040000pt;}
.fs8_c00244{font-size:12.106667pt;}
.fs4_c00244{font-size:16.640000pt;}
.fs0_c00244{font-size:18.133333pt;}
.fs5_c00244{font-size:22.666667pt;}
.fs1_c00244{font-size:25.706667pt;}
.fs3_c00244{font-size:28.746667pt;}
.fs2_c00244{font-size:31.733333pt;}
.fs7_c00244{font-size:34.773333pt;}
.y0_c00244{bottom:0.000000pt;}
.y108_c00244{bottom:222.066667pt;}
.y107_c00244{bottom:223.026667pt;}
.y109_c00244{bottom:223.973333pt;}
.y10a_c00244{bottom:224.173333pt;}
.y106_c00244{bottom:235.600000pt;}
.y105_c00244{bottom:236.360000pt;}
.y104_c00244{bottom:236.560000pt;}
.y102_c00244{bottom:236.933333pt;}
.y103_c00244{bottom:237.306667pt;}
.y101_c00244{bottom:248.360000pt;}
.yff_c00244{bottom:248.733333pt;}
.yfd_c00244{bottom:249.893333pt;}
.yfe_c00244{bottom:250.640000pt;}
.y100_c00244{bottom:250.840000pt;}
.yfc_c00244{bottom:251.026667pt;}
.yf6_c00244{bottom:261.306667pt;}
.yf8_c00244{bottom:262.066667pt;}
.yfb_c00244{bottom:263.226667pt;}
.yf7_c00244{bottom:263.973333pt;}
.yf9_c00244{bottom:264.173333pt;}
.yfa_c00244{bottom:264.933333pt;}
.yf3_c00244{bottom:274.640000pt;}
.yf0_c00244{bottom:275.400000pt;}
.yf2_c00244{bottom:275.600000pt;}
.yf1_c00244{bottom:276.360000pt;}
.yf4_c00244{bottom:276.560000pt;}
.yf5_c00244{bottom:278.266667pt;}
.ye9_c00244{bottom:287.973333pt;}
.yef_c00244{bottom:288.360000pt;}
.yee_c00244{bottom:289.306667pt;}
.yeb_c00244{bottom:289.506667pt;}
.yec_c00244{bottom:289.693333pt;}
.yed_c00244{bottom:290.266667pt;}
.yea_c00244{bottom:290.640000pt;}
.ye8_c00244{bottom:301.693333pt;}
.ye6_c00244{bottom:302.066667pt;}
.ye7_c00244{bottom:302.640000pt;}
.ye5_c00244{bottom:314.066667pt;}
.ye1_c00244{bottom:314.640000pt;}
.ye3_c00244{bottom:315.026667pt;}
.ye4_c00244{bottom:315.226667pt;}
.ye2_c00244{bottom:315.973333pt;}
.yde_c00244{bottom:327.400000pt;}
.ydf_c00244{bottom:328.360000pt;}
.ydc_c00244{bottom:328.560000pt;}
.ydd_c00244{bottom:329.306667pt;}
.ye0_c00244{bottom:330.266667pt;}
.ydb_c00244{bottom:340.733333pt;}
.yda_c00244{bottom:341.693333pt;}
.yd9_c00244{bottom:342.640000pt;}
.yd8_c00244{bottom:353.306667pt;}
.yd7_c00244{bottom:353.693333pt;}
.yd6_c00244{bottom:354.066667pt;}
.yd5_c00244{bottom:354.266667pt;}
.yd4_c00244{bottom:355.026667pt;}
.yd2_c00244{bottom:355.226667pt;}
.yd3_c00244{bottom:356.933333pt;}
.yd1_c00244{bottom:368.360000pt;}
.yd0_c00244{bottom:370.266667pt;}
.yce_c00244{bottom:380.360000pt;}
.ycd_c00244{bottom:380.733333pt;}
.yca_c00244{bottom:381.306667pt;}
.ycf_c00244{bottom:381.506667pt;}
.yc9_c00244{bottom:381.893333pt;}
.ycb_c00244{bottom:382.266667pt;}
.yc8_c00244{bottom:382.640000pt;}
.yc7_c00244{bottom:382.840000pt;}
.ycc_c00244{bottom:383.600000pt;}
.yc6_c00244{bottom:392.733333pt;}
.yc2_c00244{bottom:393.306667pt;}
.yc4_c00244{bottom:393.693333pt;}
.yc0_c00244{bottom:394.066667pt;}
.yc3_c00244{bottom:394.440000pt;}
.yc5_c00244{bottom:394.640000pt;}
.yc1_c00244{bottom:395.600000pt;}
.ybf_c00244{bottom:395.973333pt;}
.ybe_c00244{bottom:396.933333pt;}
.ybc_c00244{bottom:405.306667pt;}
.ybd_c00244{bottom:406.066667pt;}
.yb8_c00244{bottom:406.266667pt;}
.ybb_c00244{bottom:407.026667pt;}
.yba_c00244{bottom:407.226667pt;}
.yb9_c00244{bottom:407.973333pt;}
.yb7_c00244{bottom:418.640000pt;}
.yb4_c00244{bottom:419.400000pt;}
.yb5_c00244{bottom:420.360000pt;}
.yb6_c00244{bottom:420.560000pt;}
.yb3_c00244{bottom:421.306667pt;}
.yb2_c00244{bottom:422.840000pt;}
.yae_c00244{bottom:432.733333pt;}
.yaf_c00244{bottom:433.693333pt;}
.yb1_c00244{bottom:433.893333pt;}
.yad_c00244{bottom:434.640000pt;}
.yb0_c00244{bottom:435.600000pt;}
.ya9_c00244{bottom:446.266667pt;}
.yac_c00244{bottom:447.026667pt;}
.yab_c00244{bottom:447.973333pt;}
.yaa_c00244{bottom:448.933333pt;}
.ya4_c00244{bottom:458.640000pt;}
.ya6_c00244{bottom:460.360000pt;}
.ya7_c00244{bottom:460.933333pt;}
.ya5_c00244{bottom:461.306667pt;}
.ya8_c00244{bottom:461.506667pt;}
.ya3_c00244{bottom:471.400000pt;}
.ya2_c00244{bottom:473.306667pt;}
.y9f_c00244{bottom:473.693333pt;}
.ya1_c00244{bottom:474.640000pt;}
.ya0_c00244{bottom:474.840000pt;}
.y9d_c00244{bottom:484.733333pt;}
.y9c_c00244{bottom:485.693333pt;}
.y9e_c00244{bottom:486.640000pt;}
.y9b_c00244{bottom:487.600000pt;}
.y9a_c00244{bottom:497.306667pt;}
.y98_c00244{bottom:498.066667pt;}
.y96_c00244{bottom:499.026667pt;}
.y97_c00244{bottom:499.973333pt;}
.y99_c00244{bottom:500.173333pt;}
.y93_c00244{bottom:500.360000pt;}
.y95_c00244{bottom:500.933333pt;}
.y92_c00244{bottom:501.306667pt;}
.y94_c00244{bottom:501.506667pt;}
.y90_c00244{bottom:511.400000pt;}
.y8f_c00244{bottom:512.360000pt;}
.y8d_c00244{bottom:512.733333pt;}
.y8b_c00244{bottom:512.933333pt;}
.y91_c00244{bottom:513.306667pt;}
.y8e_c00244{bottom:514.266667pt;}
.y8c_c00244{bottom:514.640000pt;}
.y8a_c00244{bottom:524.733333pt;}
.y84_c00244{bottom:524.933333pt;}
.y86_c00244{bottom:525.693333pt;}
.y87_c00244{bottom:525.893333pt;}
.y89_c00244{bottom:526.640000pt;}
.y88_c00244{bottom:526.840000pt;}
.y85_c00244{bottom:527.600000pt;}
.y80_c00244{bottom:539.026667pt;}
.y82_c00244{bottom:539.973333pt;}
.y81_c00244{bottom:540.173333pt;}
.y83_c00244{bottom:540.933333pt;}
.y7f_c00244{bottom:550.640000pt;}
.y7a_c00244{bottom:551.026667pt;}
.y7e_c00244{bottom:551.400000pt;}
.y7d_c00244{bottom:551.600000pt;}
.y7c_c00244{bottom:552.360000pt;}
.y7b_c00244{bottom:553.306667pt;}
.y79_c00244{bottom:554.266667pt;}
.y76_c00244{bottom:564.733333pt;}
.y73_c00244{bottom:564.933333pt;}
.y75_c00244{bottom:565.893333pt;}
.y77_c00244{bottom:566.266667pt;}
.y74_c00244{bottom:566.640000pt;}
.y78_c00244{bottom:566.840000pt;}
.y6f_c00244{bottom:578.066667pt;}
.y72_c00244{bottom:579.026667pt;}
.y6e_c00244{bottom:579.973333pt;}
.y70_c00244{bottom:580.173333pt;}
.y71_c00244{bottom:580.933333pt;}
.y6a_c00244{bottom:590.640000pt;}
.y6b_c00244{bottom:592.360000pt;}
.y67_c00244{bottom:592.560000pt;}
.y6d_c00244{bottom:592.933333pt;}
.y69_c00244{bottom:593.306667pt;}
.y6c_c00244{bottom:593.506667pt;}
.y68_c00244{bottom:594.266667pt;}
.y65_c00244{bottom:604.360000pt;}
.y62_c00244{bottom:604.733333pt;}
.y63_c00244{bottom:605.693333pt;}
.y66_c00244{bottom:606.266667pt;}
.y61_c00244{bottom:606.640000pt;}
.y64_c00244{bottom:606.840000pt;}
.y60_c00244{bottom:616.733333pt;}
.y5f_c00244{bottom:618.640000pt;}
.y5c_c00244{bottom:619.226667pt;}
.y5e_c00244{bottom:619.600000pt;}
.y5d_c00244{bottom:619.973333pt;}
.y5b_c00244{bottom:646.440000pt;}
.y5a_c00244{bottom:648.360000pt;}
.y56_c00244{bottom:663.773333pt;}
.y58_c00244{bottom:664.360000pt;}
.y57_c00244{bottom:664.560000pt;}
.y59_c00244{bottom:665.306667pt;}
.y55_c00244{bottom:665.693333pt;}
.y50_c00244{bottom:680.360000pt;}
.y51_c00244{bottom:681.106667pt;}
.y53_c00244{bottom:683.026667pt;}
.y54_c00244{bottom:683.226667pt;}
.y52_c00244{bottom:683.973333pt;}
.y4f_c00244{bottom:697.306667pt;}
.y4d_c00244{bottom:698.440000pt;}
.y4e_c00244{bottom:700.360000pt;}
.y4b_c00244{bottom:714.826667pt;}
.y49_c00244{bottom:715.026667pt;}
.y48_c00244{bottom:715.773333pt;}
.y4c_c00244{bottom:716.733333pt;}
.y47_c00244{bottom:717.693333pt;}
.y4a_c00244{bottom:717.893333pt;}
.y46_c00244{bottom:733.106667pt;}
.y45_c00244{bottom:734.066667pt;}
.y44_c00244{bottom:735.026667pt;}
.y42_c00244{bottom:735.226667pt;}
.y43_c00244{bottom:735.973333pt;}
.y40_c00244{bottom:750.440000pt;}
.y3f_c00244{bottom:751.400000pt;}
.y3e_c00244{bottom:752.360000pt;}
.y41_c00244{bottom:752.560000pt;}
.y3c_c00244{bottom:752.733333pt;}
.y3d_c00244{bottom:753.306667pt;}
.y3b_c00244{bottom:753.693333pt;}
.y38_c00244{bottom:767.773333pt;}
.y37_c00244{bottom:769.106667pt;}
.y39_c00244{bottom:769.693333pt;}
.y3a_c00244{bottom:769.893333pt;}
.y33_c00244{bottom:770.066667pt;}
.y35_c00244{bottom:770.640000pt;}
.y34_c00244{bottom:771.026667pt;}
.y36_c00244{bottom:771.973333pt;}
.y31_c00244{bottom:786.440000pt;}
.y2f_c00244{bottom:787.400000pt;}
.y32_c00244{bottom:787.973333pt;}
.y30_c00244{bottom:788.360000pt;}
.y2a_c00244{bottom:803.773333pt;}
.y2c_c00244{bottom:804.560000pt;}
.y2d_c00244{bottom:804.733333pt;}
.y2b_c00244{bottom:805.306667pt;}
.y29_c00244{bottom:805.693333pt;}
.y2e_c00244{bottom:806.640000pt;}
.y26_c00244{bottom:821.106667pt;}
.y28_c00244{bottom:821.893333pt;}
.y27_c00244{bottom:822.066667pt;}
.y24_c00244{bottom:822.440000pt;}
.y25_c00244{bottom:823.026667pt;}
.y23_c00244{bottom:838.440000pt;}
.y21_c00244{bottom:840.360000pt;}
.y22_c00244{bottom:841.306667pt;}
.y20_c00244{bottom:855.773333pt;}
.y1d_c00244{bottom:857.306667pt;}
.y1c_c00244{bottom:857.693333pt;}
.y1f_c00244{bottom:857.893333pt;}
.y1e_c00244{bottom:858.640000pt;}
.y1b_c00244{bottom:873.106667pt;}
.y19_c00244{bottom:874.066667pt;}
.y17_c00244{bottom:874.440000pt;}
.y1a_c00244{bottom:875.026667pt;}
.y16_c00244{bottom:875.226667pt;}
.y18_c00244{bottom:876.360000pt;}
.y12_c00244{bottom:890.440000pt;}
.y14_c00244{bottom:891.773333pt;}
.y13_c00244{bottom:892.360000pt;}
.y15_c00244{bottom:892.560000pt;}
.y10_c00244{bottom:893.693333pt;}
.y11_c00244{bottom:893.706667pt;}
.yf_c00244{bottom:907.773333pt;}
.yc_c00244{bottom:909.106667pt;}
.ye_c00244{bottom:909.693333pt;}
.yb_c00244{bottom:910.640000pt;}
.yd_c00244{bottom:911.026667pt;}
.ya_c00244{bottom:926.066667pt;}
.y7_c00244{bottom:926.440000pt;}
.y8_c00244{bottom:927.026667pt;}
.y9_c00244{bottom:927.226667pt;}
.y6_c00244{bottom:928.360000pt;}
.y4_c00244{bottom:943.773333pt;}
.y5_c00244{bottom:944.733333pt;}
.y3_c00244{bottom:945.693333pt;}
.y2_c00244{bottom:977.693333pt;}
.y1_c00244{bottom:979.600000pt;}
.h7_c00244{height:3.739141pt;}
.h9_c00244{height:14.890964pt;}
.h5_c00244{height:20.466875pt;}
.h1_c00244{height:22.303646pt;}
.h6_c00244{height:27.879557pt;}
.h2_c00244{height:31.618698pt;}
.ha_c00244{height:34.706224pt;}
.h4_c00244{height:35.357839pt;}
.h3_c00244{height:39.031380pt;}
.h8_c00244{height:42.770521pt;}
.h0_c00244{height:1186.666667pt;}
.w0_c00244{width:782.666667pt;}
.x0_c00244{left:0.000000pt;}
.xe_c00244{left:133.333333pt;}
.x3_c00244{left:135.040000pt;}
.xdd_c00244{left:136.000000pt;}
.x94_c00244{left:137.133333pt;}
.x109_c00244{left:138.093333pt;}
.xac_c00244{left:145.333333pt;}
.x24_c00244{left:147.626667pt;}
.xfb_c00244{left:149.333333pt;}
.x5c_c00244{left:151.626667pt;}
.x71_c00244{left:153.706667pt;}
.x51_c00244{left:154.666667pt;}
.xa4_c00244{left:159.040000pt;}
.x101_c00244{left:160.000000pt;}
.x4_c00244{left:161.333333pt;}
.x9e_c00244{left:162.293333pt;}
.xf_c00244{left:164.000000pt;}
.x8d_c00244{left:166.293333pt;}
.x7b_c00244{left:169.706667pt;}
.x30_c00244{left:171.040000pt;}
.x95_c00244{left:172.000000pt;}
.xf1_c00244{left:173.333333pt;}
.x10a_c00244{left:174.666667pt;}
.x46_c00244{left:176.000000pt;}
.xcb_c00244{left:178.666667pt;}
.xad_c00244{left:179.626667pt;}
.x72_c00244{left:183.626667pt;}
.x19_c00244{left:185.333333pt;}
.xcc_c00244{left:186.666667pt;}
.x83_c00244{left:188.373333pt;}
.x67_c00244{left:191.040000pt;}
.xcf_c00244{left:193.333333pt;}
.xb7_c00244{left:194.666667pt;}
.xe8_c00244{left:197.333333pt;}
.xeb_c00244{left:199.240000pt;}
.xf5_c00244{left:200.960000pt;}
.x3b_c00244{left:202.666667pt;}
.x9f_c00244{left:204.000000pt;}
.x52_c00244{left:204.960000pt;}
.x96_c00244{left:207.040000pt;}
.x118_c00244{left:208.000000pt;}
.xbe_c00244{left:208.960000pt;}
.x5d_c00244{left:211.040000pt;}
.x8e_c00244{left:213.706667pt;}
.xb2_c00244{left:214.666667pt;}
.x5_c00244{left:216.960000pt;}
.x3c_c00244{left:219.040000pt;}
.x25_c00244{left:220.000000pt;}
.xd8_c00244{left:222.666667pt;}
.xf2_c00244{left:224.000000pt;}
.xd0_c00244{left:225.333333pt;}
.xcd_c00244{left:226.666667pt;}
.xe9_c00244{left:228.000000pt;}
.xde_c00244{left:229.333333pt;}
.x10_c00244{left:232.000000pt;}
.x97_c00244{left:233.333333pt;}
.x110_c00244{left:234.666667pt;}
.x26_c00244{left:235.626667pt;}
.xdf_c00244{left:238.666667pt;}
.x1a_c00244{left:239.626667pt;}
.xa0_c00244{left:241.333333pt;}
.x3d_c00244{left:242.293333pt;}
.x31_c00244{left:244.373333pt;}
.x5e_c00244{left:245.333333pt;}
.x6_c00244{left:247.040000pt;}
.x53_c00244{left:249.133333pt;}
.x7c_c00244{left:252.373333pt;}
.x11_c00244{left:253.333333pt;}
.x84_c00244{left:254.666667pt;}
.x68_c00244{left:256.000000pt;}
.x10e_c00244{left:257.706667pt;}
.xd1_c00244{left:258.666667pt;}
.x47_c00244{left:260.960000pt;}
.xa5_c00244{left:264.000000pt;}
.xa1_c00244{left:264.960000pt;}
.xae_c00244{left:267.040000pt;}
.x10b_c00244{left:268.000000pt;}
.x32_c00244{left:269.333333pt;}
.xd9_c00244{left:271.040000pt;}
.x7_c00244{left:272.000000pt;}
.xf7_c00244{left:272.960000pt;}
.x54_c00244{left:274.666667pt;}
.xbf_c00244{left:275.626667pt;}
.xfc_c00244{left:277.706667pt;}
.x5f_c00244{left:278.666667pt;}
.x106_c00244{left:280.000000pt;}
.xec_c00244{left:281.706667pt;}
.x1b_c00244{left:283.040000pt;}
.x10c_c00244{left:284.573333pt;}
.xd2_c00244{left:286.666667pt;}
.x73_c00244{left:287.626667pt;}
.xce_c00244{left:289.333333pt;}
.xc2_c00244{left:290.666667pt;}
.xea_c00244{left:292.000000pt;}
.xc7_c00244{left:294.666667pt;}
.xda_c00244{left:295.626667pt;}
.x69_c00244{left:297.706667pt;}
.x27_c00244{left:301.333333pt;}
.x55_c00244{left:302.666667pt;}
.x60_c00244{left:305.333333pt;}
.x48_c00244{left:306.293333pt;}
.x8f_c00244{left:308.000000pt;}
.x7d_c00244{left:309.333333pt;}
.x12_c00244{left:313.333333pt;}
.xc0_c00244{left:314.666667pt;}
.x1c_c00244{left:316.373333pt;}
.x61_c00244{left:317.333333pt;}
.x28_c00244{left:320.000000pt;}
.x74_c00244{left:322.293333pt;}
.x98_c00244{left:324.960000pt;}
.x33_c00244{left:327.040000pt;}
.x8_c00244{left:328.960000pt;}
.xa6_c00244{left:330.666667pt;}
.xe0_c00244{left:332.000000pt;}
.xb8_c00244{left:333.333333pt;}
.xd3_c00244{left:336.000000pt;}
.x85_c00244{left:337.333333pt;}
.x75_c00244{left:339.040000pt;}
.x1d_c00244{left:340.000000pt;}
.xc1_c00244{left:341.706667pt;}
.x119_c00244{left:342.666667pt;}
.xfd_c00244{left:344.373333pt;}
.x7e_c00244{left:345.333333pt;}
.x29_c00244{left:347.240000pt;}
.x3e_c00244{left:349.333333pt;}
.x56_c00244{left:350.666667pt;}
.xed_c00244{left:351.626667pt;}
.xdb_c00244{left:354.666667pt;}
.x115_c00244{left:356.000000pt;}
.xe1_c00244{left:356.960000pt;}
.xfe_c00244{left:358.666667pt;}
.x34_c00244{left:360.373333pt;}
.x1_c00244{left:361.333333pt;}
.xb3_c00244{left:362.293333pt;}
.x76_c00244{left:364.373333pt;}
.x3f_c00244{left:365.333333pt;}
.x1e_c00244{left:366.293333pt;}
.xc3_c00244{left:368.000000pt;}
.x99_c00244{left:369.333333pt;}
.x111_c00244{left:371.626667pt;}
.x90_c00244{left:373.333333pt;}
.x9_c00244{left:374.293333pt;}
.x13_c00244{left:377.333333pt;}
.x40_c00244{left:378.666667pt;}
.xd4_c00244{left:379.626667pt;}
.xb9_c00244{left:381.906667pt;}
.x49_c00244{left:383.626667pt;}
.x35_c00244{left:385.333333pt;}
.xb4_c00244{left:387.626667pt;}
.xaf_c00244{left:389.333333pt;}
.x86_c00244{left:390.666667pt;}
.xc8_c00244{left:396.373333pt;}
.x91_c00244{left:397.333333pt;}
.x6a_c00244{left:398.293333pt;}
.x4a_c00244{left:400.373333pt;}
.x7f_c00244{left:402.666667pt;}
.x41_c00244{left:403.626667pt;}
.x112_c00244{left:404.960000pt;}
.x1f_c00244{left:407.626667pt;}
.xa2_c00244{left:409.333333pt;}
.xff_c00244{left:412.000000pt;}
.x9a_c00244{left:412.960000pt;}
.xf8_c00244{left:413.906667pt;}
.xf3_c00244{left:415.626667pt;}
.x6b_c00244{left:417.333333pt;}
.x36_c00244{left:418.293333pt;}
.x57_c00244{left:419.626667pt;}
.xba_c00244{left:420.960000pt;}
.x14_c00244{left:422.666667pt;}
.x4b_c00244{left:424.000000pt;}
.xb5_c00244{left:425.333333pt;}
.x2a_c00244{left:426.293333pt;}
.xa_c00244{left:427.800000pt;}
.x77_c00244{left:429.706667pt;}
.xa7_c00244{left:431.040000pt;}
.x116_c00244{left:436.000000pt;}
.xd5_c00244{left:440.000000pt;}
.x15_c00244{left:441.333333pt;}
.x42_c00244{left:442.293333pt;}
.xc9_c00244{left:443.626667pt;}
.x102_c00244{left:444.960000pt;}
.x37_c00244{left:446.666667pt;}
.xfa_c00244{left:448.000000pt;}
.xbb_c00244{left:449.706667pt;}
.xf9_c00244{left:450.666667pt;}
.xa8_c00244{left:453.333333pt;}
.xee_c00244{left:458.293333pt;}
.x62_c00244{left:460.373333pt;}
.x78_c00244{left:461.706667pt;}
.xc4_c00244{left:463.040000pt;}
.x6c_c00244{left:464.000000pt;}
.x20_c00244{left:466.666667pt;}
.x87_c00244{left:469.333333pt;}
.xd6_c00244{left:470.293333pt;}
.x43_c00244{left:471.626667pt;}
.x6d_c00244{left:473.706667pt;}
.x80_c00244{left:474.666667pt;}
.x9b_c00244{left:476.000000pt;}
.xb6_c00244{left:477.333333pt;}
.x2b_c00244{left:478.666667pt;}
.x4c_c00244{left:479.626667pt;}
.xe5_c00244{left:481.333333pt;}
.x21_c00244{left:484.373333pt;}
.x88_c00244{left:486.293333pt;}
.xdc_c00244{left:488.373333pt;}
.xf6_c00244{left:490.666667pt;}
.x9c_c00244{left:492.373333pt;}
.x2c_c00244{left:493.706667pt;}
.xd7_c00244{left:495.040000pt;}
.xb_c00244{left:496.000000pt;}
.x63_c00244{left:497.706667pt;}
.x16_c00244{left:500.000000pt;}
.x58_c00244{left:504.000000pt;}
.x89_c00244{left:506.666667pt;}
.x22_c00244{left:508.000000pt;}
.x4d_c00244{left:508.960000pt;}
.xbc_c00244{left:510.666667pt;}
.x44_c00244{left:516.000000pt;}
.x9d_c00244{left:516.960000pt;}
.x6e_c00244{left:518.293333pt;}
.x38_c00244{left:520.000000pt;}
.x4e_c00244{left:524.373333pt;}
.x59_c00244{left:527.040000pt;}
.x2d_c00244{left:528.373333pt;}
.xb0_c00244{left:529.706667pt;}
.xe2_c00244{left:530.666667pt;}
.x92_c00244{left:531.626667pt;}
.xc5_c00244{left:533.333333pt;}
.xa9_c00244{left:534.666667pt;}
.x39_c00244{left:537.706667pt;}
.xbd_c00244{left:539.626667pt;}
.x5a_c00244{left:543.040000pt;}
.x79_c00244{left:544.000000pt;}
.x64_c00244{left:545.333333pt;}
.x8a_c00244{left:546.293333pt;}
.x4f_c00244{left:548.960000pt;}
.xe6_c00244{left:549.906667pt;}
.x6f_c00244{left:551.040000pt;}
.xc_c00244{left:555.800000pt;}
.xe3_c00244{left:557.706667pt;}
.x103_c00244{left:558.666667pt;}
.xf4_c00244{left:560.000000pt;}
.xa3_c00244{left:560.960000pt;}
.x23_c00244{left:563.040000pt;}
.x100_c00244{left:564.000000pt;}
.xaa_c00244{left:567.040000pt;}
.x113_c00244{left:569.333333pt;}
.x17_c00244{left:572.373333pt;}
.x81_c00244{left:573.706667pt;}
.x10f_c00244{left:576.000000pt;}
.xef_c00244{left:577.333333pt;}
.xe4_c00244{left:581.333333pt;}
.x93_c00244{left:582.293333pt;}
.x10d_c00244{left:583.240000pt;}
.x2e_c00244{left:585.333333pt;}
.x7a_c00244{left:586.666667pt;}
.x8b_c00244{left:588.000000pt;}
.x45_c00244{left:588.960000pt;}
.xe7_c00244{left:590.666667pt;}
.xd_c00244{left:593.133333pt;}
.xca_c00244{left:596.000000pt;}
.x18_c00244{left:597.333333pt;}
.x104_c00244{left:598.666667pt;}
.x2f_c00244{left:600.000000pt;}
.xb1_c00244{left:602.666667pt;}
.x117_c00244{left:605.333333pt;}
.x5b_c00244{left:606.293333pt;}
.x3a_c00244{left:608.960000pt;}
.x65_c00244{left:610.293333pt;}
.x70_c00244{left:612.000000pt;}
.xab_c00244{left:613.706667pt;}
.x8c_c00244{left:616.000000pt;}
.x107_c00244{left:617.333333pt;}
.x2_c00244{left:624.960000pt;}
.x82_c00244{left:627.040000pt;}
.x66_c00244{left:628.373333pt;}
.xf0_c00244{left:629.333333pt;}
.x108_c00244{left:630.666667pt;}
.xc6_c00244{left:632.000000pt;}
.x50_c00244{left:637.333333pt;}
.x114_c00244{left:639.626667pt;}
.x105_c00244{left:644.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_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_27739b236984184a7c6233e7.woff2')format("woff");}.ff1_c00245{font-family:ff1_c00245;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4c_c00245{transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);}
.m48_c00245{transform:matrix(0.348794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348794,0.000000,0.000000,0.250000,0,0);}
.mcc_c00245{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);}
.m5a_c00245{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m81_c00245{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m24_c00245{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m79_c00245{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.mba_c00245{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m4a_c00245{transform:matrix(0.375696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375696,0.000000,0.000000,0.250000,0,0);}
.m40_c00245{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m7f_c00245{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mdc_c00245{transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);}
.m8f_c00245{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m56_c00245{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mce_c00245{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.me6_c00245{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.mf1_c00245{transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);}
.mea_c00245{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.ma0_c00245{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m45_c00245{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.mb2_c00245{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.ma4_c00245{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m69_c00245{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m8c_c00245{transform:matrix(0.399923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399923,0.000000,0.000000,0.250000,0,0);}
.m88_c00245{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m76_c00245{transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);}
.m5b_c00245{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.mc4_c00245{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.mda_c00245{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.mde_c00245{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.md8_c00245{transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);}
.m49_c00245{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.me4_c00245{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m64_c00245{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m26_c00245{transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);}
.mf_c00245{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.mae_c00245{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.ma6_c00245{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m1b_c00245{transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);}
.mc3_c00245{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m4b_c00245{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m50_c00245{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mbf_c00245{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m43_c00245{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m72_c00245{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m15_c00245{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.mc6_c00245{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m5d_c00245{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.ma7_c00245{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m2e_c00245{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m34_c00245{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.me1_c00245{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.mcb_c00245{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m65_c00245{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m78_c00245{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m7b_c00245{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.md9_c00245{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m6f_c00245{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.m4f_c00245{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mb6_c00245{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mbe_c00245{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.mad_c00245{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mcf_c00245{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.md0_c00245{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m1e_c00245{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m33_c00245{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.mf2_c00245{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m2f_c00245{transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);}
.m84_c00245{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.mcd_c00245{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mb7_c00245{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m3d_c00245{transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);}
.me3_c00245{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.mb8_c00245{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m41_c00245{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.mc9_c00245{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m68_c00245{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m97_c00245{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.me7_c00245{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m94_c00245{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.md5_c00245{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mb3_c00245{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.m19_c00245{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.ma5_c00245{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.m9e_c00245{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.maa_c00245{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.mc8_c00245{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m87_c00245{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m2d_c00245{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m3a_c00245{transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);}
.mc5_c00245{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m10_c00245{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m90_c00245{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m4_c00245{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m51_c00245{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.me2_c00245{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.meb_c00245{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m9d_c00245{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m5e_c00245{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m2_c00245{transform:matrix(0.486029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486029,0.000000,0.000000,0.250000,0,0);}
.m2c_c00245{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m91_c00245{transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);}
.mdd_c00245{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m1f_c00245{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m3_c00245{transform:matrix(0.492941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492941,0.000000,0.000000,0.250000,0,0);}
.m8a_c00245{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m46_c00245{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_c00245{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m8d_c00245{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.maf_c00245{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m6e_c00245{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m92_c00245{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m58_c00245{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m25_c00245{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m52_c00245{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m75_c00245{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m8b_c00245{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m47_c00245{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.mec_c00245{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m71_c00245{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m1a_c00245{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.m74_c00245{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m7e_c00245{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m70_c00245{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m20_c00245{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m5c_c00245{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mb_c00245{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.md2_c00245{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.mb4_c00245{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mc7_c00245{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m63_c00245{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.ma9_c00245{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m5f_c00245{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m57_c00245{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m6c_c00245{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.me_c00245{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.m12_c00245{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m7a_c00245{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m55_c00245{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m59_c00245{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m85_c00245{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m61_c00245{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m62_c00245{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.ma2_c00245{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m93_c00245{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.ma_c00245{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.mb5_c00245{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m39_c00245{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.ma1_c00245{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m44_c00245{transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);}
.m60_c00245{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m37_c00245{transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);}
.m0_c00245{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m98_c00245{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m6d_c00245{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m9a_c00245{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m67_c00245{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m9f_c00245{transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);}
.mb9_c00245{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mbb_c00245{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m9c_c00245{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m16_c00245{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.me0_c00245{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.md_c00245{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);}
.m95_c00245{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m82_c00245{transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);}
.m77_c00245{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.md4_c00245{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m4e_c00245{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mef_c00245{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m21_c00245{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.me5_c00245{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mca_c00245{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mbc_c00245{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.md3_c00245{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m30_c00245{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.md6_c00245{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m18_c00245{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.med_c00245{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m35_c00245{transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);}
.m9b_c00245{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m42_c00245{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m6b_c00245{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m14_c00245{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.m31_c00245{transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);}
.m29_c00245{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.mee_c00245{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.md1_c00245{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m73_c00245{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);}
.m6a_c00245{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m1_c00245{transform:matrix(0.606618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606618,0.000000,0.000000,0.250000,0,0);}
.mdf_c00245{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m54_c00245{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.me8_c00245{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.m96_c00245{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m28_c00245{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.me9_c00245{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m23_c00245{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m22_c00245{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_c00245{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m17_c00245{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m38_c00245{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m86_c00245{transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);}
.md7_c00245{transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);}
.m36_c00245{transform:matrix(0.649265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649265,0.000000,0.000000,0.250000,0,0);}
.m27_c00245{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m2b_c00245{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);}
.m3c_c00245{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m1d_c00245{transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);}
.m9_c00245{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.mbd_c00245{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mc_c00245{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m7d_c00245{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m11_c00245{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.m5_c00245{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);}
.mf0_c00245{transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);}
.mab_c00245{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m1c_c00245{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m3e_c00245{transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);}
.m7_c00245{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);}
.m3f_c00245{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m3b_c00245{transform:matrix(0.716912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.716912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.716912,0.000000,0.000000,0.250000,0,0);}
.m99_c00245{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mac_c00245{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mb0_c00245{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m7c_c00245{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m53_c00245{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mdb_c00245{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m8e_c00245{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mc1_c00245{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m66_c00245{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.ma8_c00245{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mb1_c00245{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m80_c00245{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m89_c00245{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.ma3_c00245{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m83_c00245{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m6_c00245{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m32_c00245{transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);}
.m2a_c00245{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m13_c00245{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m8_c00245{transform:matrix(1.560573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560573,0.000000,0.000000,0.250000,0,0);}
.m4d_c00245{transform:matrix(3.978070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.978070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.978070,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;}
.fs7_c00245{font-size:3.420000px;}
.fs3_c00245{font-size:13.620000px;}
.fs5_c00245{font-size:18.720000px;}
.fs1_c00245{font-size:20.400000px;}
.fs0_c00245{font-size:25.500000px;}
.fs2_c00245{font-size:28.920000px;}
.fs4_c00245{font-size:32.340000px;}
.fs6_c00245{font-size:35.700000px;}
.fs8_c00245{font-size:39.120000px;}
.y0_c00245{bottom:0.000000px;}
.ydd_c00245{bottom:249.180000px;}
.ydc_c00245{bottom:250.050000px;}
.yda_c00245{bottom:250.245000px;}
.ydb_c00245{bottom:251.970000px;}
.yd9_c00245{bottom:252.405000px;}
.yd7_c00245{bottom:269.325000px;}
.yd4_c00245{bottom:269.745000px;}
.yd3_c00245{bottom:271.470000px;}
.yd2_c00245{bottom:271.905000px;}
.yd5_c00245{bottom:272.325000px;}
.yd8_c00245{bottom:272.970000px;}
.yd6_c00245{bottom:273.405000px;}
.ycf_c00245{bottom:289.245000px;}
.ycd_c00245{bottom:289.470000px;}
.yd1_c00245{bottom:290.130000px;}
.ycb_c00245{bottom:290.325000px;}
.ycc_c00245{bottom:290.970000px;}
.yca_c00245{bottom:291.405000px;}
.yce_c00245{bottom:292.470000px;}
.yd0_c00245{bottom:292.905000px;}
.yc3_c00245{bottom:308.745000px;}
.yc8_c00245{bottom:309.825000px;}
.yc5_c00245{bottom:310.245000px;}
.yc9_c00245{bottom:310.905000px;}
.yc4_c00245{bottom:311.130000px;}
.yc7_c00245{bottom:311.970000px;}
.yc6_c00245{bottom:312.405000px;}
.ybf_c00245{bottom:328.245000px;}
.yc1_c00245{bottom:330.630000px;}
.yc2_c00245{bottom:331.470000px;}
.yc0_c00245{bottom:331.905000px;}
.ybd_c00245{bottom:349.245000px;}
.yba_c00245{bottom:349.905000px;}
.ybc_c00245{bottom:350.130000px;}
.ybe_c00245{bottom:350.970000px;}
.ybb_c00245{bottom:351.405000px;}
.yb4_c00245{bottom:368.325000px;}
.yb6_c00245{bottom:368.745000px;}
.yb9_c00245{bottom:369.630000px;}
.yb7_c00245{bottom:370.470000px;}
.yb5_c00245{bottom:370.905000px;}
.yb8_c00245{bottom:371.130000px;}
.yb1_c00245{bottom:388.245000px;}
.yb2_c00245{bottom:389.745000px;}
.yb0_c00245{bottom:390.405000px;}
.yb3_c00245{bottom:390.630000px;}
.yaf_c00245{bottom:391.470000px;}
.yae_c00245{bottom:406.905000px;}
.yad_c00245{bottom:407.745000px;}
.yab_c00245{bottom:427.245000px;}
.yac_c00245{bottom:428.130000px;}
.yaa_c00245{bottom:428.325000px;}
.ya6_c00245{bottom:429.405000px;}
.ya9_c00245{bottom:429.630000px;}
.ya8_c00245{bottom:430.470000px;}
.ya7_c00245{bottom:430.905000px;}
.ya4_c00245{bottom:448.245000px;}
.ya5_c00245{bottom:448.905000px;}
.ya3_c00245{bottom:450.405000px;}
.ya1_c00245{bottom:467.745000px;}
.ya2_c00245{bottom:468.825000px;}
.ya0_c00245{bottom:469.905000px;}
.y9b_c00245{bottom:487.245000px;}
.y9f_c00245{bottom:488.130000px;}
.y9e_c00245{bottom:489.405000px;}
.y9c_c00245{bottom:489.630000px;}
.y9d_c00245{bottom:490.470000px;}
.y98_c00245{bottom:506.745000px;}
.y99_c00245{bottom:508.905000px;}
.y9a_c00245{bottom:509.130000px;}
.y97_c00245{bottom:526.245000px;}
.y96_c00245{bottom:527.325000px;}
.y94_c00245{bottom:528.405000px;}
.y95_c00245{bottom:528.630000px;}
.y93_c00245{bottom:529.905000px;}
.y92_c00245{bottom:544.905000px;}
.y8f_c00245{bottom:547.245000px;}
.y8e_c00245{bottom:548.130000px;}
.y90_c00245{bottom:548.325000px;}
.y91_c00245{bottom:549.405000px;}
.y8b_c00245{bottom:565.470000px;}
.y89_c00245{bottom:566.745000px;}
.y8c_c00245{bottom:567.630000px;}
.y8a_c00245{bottom:568.905000px;}
.y8d_c00245{bottom:569.970000px;}
.y88_c00245{bottom:586.905000px;}
.y85_c00245{bottom:587.130000px;}
.y87_c00245{bottom:587.325000px;}
.y86_c00245{bottom:587.970000px;}
.y84_c00245{bottom:588.405000px;}
.y83_c00245{bottom:589.470000px;}
.y81_c00245{bottom:605.745000px;}
.y80_c00245{bottom:606.630000px;}
.y82_c00245{bottom:607.905000px;}
.y7d_c00245{bottom:625.245000px;}
.y7c_c00245{bottom:626.130000px;}
.y7e_c00245{bottom:626.325000px;}
.y7b_c00245{bottom:627.405000px;}
.y7f_c00245{bottom:627.630000px;}
.y77_c00245{bottom:644.745000px;}
.y78_c00245{bottom:645.630000px;}
.y79_c00245{bottom:646.905000px;}
.y7a_c00245{bottom:647.970000px;}
.y76_c00245{bottom:663.405000px;}
.y75_c00245{bottom:664.245000px;}
.y74_c00245{bottom:666.405000px;}
.y73_c00245{bottom:666.630000px;}
.y6f_c00245{bottom:684.825000px;}
.y72_c00245{bottom:685.245000px;}
.y6e_c00245{bottom:685.905000px;}
.y70_c00245{bottom:686.970000px;}
.y71_c00245{bottom:687.405000px;}
.y6d_c00245{bottom:705.405000px;}
.y6c_c00245{bottom:705.630000px;}
.y6b_c00245{bottom:705.825000px;}
.y6a_c00245{bottom:706.470000px;}
.y69_c00245{bottom:706.905000px;}
.y68_c00245{bottom:723.825000px;}
.y65_c00245{bottom:724.905000px;}
.y67_c00245{bottom:725.130000px;}
.y66_c00245{bottom:726.405000px;}
.y63_c00245{bottom:742.680000px;}
.y64_c00245{bottom:742.905000px;}
.y61_c00245{bottom:743.745000px;}
.y60_c00245{bottom:744.630000px;}
.y62_c00245{bottom:745.905000px;}
.y5e_c00245{bottom:762.825000px;}
.y5f_c00245{bottom:763.245000px;}
.y5d_c00245{bottom:763.470000px;}
.y5c_c00245{bottom:764.325000px;}
.y5b_c00245{bottom:765.405000px;}
.y5a_c00245{bottom:765.630000px;}
.y58_c00245{bottom:782.745000px;}
.y57_c00245{bottom:784.905000px;}
.y59_c00245{bottom:785.130000px;}
.y56_c00245{bottom:785.970000px;}
.y53_c00245{bottom:802.245000px;}
.y55_c00245{bottom:803.325000px;}
.y52_c00245{bottom:804.405000px;}
.y54_c00245{bottom:804.630000px;}
.y51_c00245{bottom:805.470000px;}
.y4f_c00245{bottom:821.745000px;}
.y50_c00245{bottom:823.245000px;}
.y4d_c00245{bottom:823.905000px;}
.y4e_c00245{bottom:825.405000px;}
.y4c_c00245{bottom:842.325000px;}
.y49_c00245{bottom:842.745000px;}
.y4a_c00245{bottom:843.630000px;}
.y48_c00245{bottom:843.825000px;}
.y4b_c00245{bottom:844.905000px;}
.y47_c00245{bottom:862.245000px;}
.y46_c00245{bottom:864.405000px;}
.y41_c00245{bottom:881.745000px;}
.y43_c00245{bottom:883.905000px;}
.y42_c00245{bottom:883.920000px;}
.y44_c00245{bottom:884.130000px;}
.y45_c00245{bottom:884.970000px;}
.y3f_c00245{bottom:912.825000px;}
.y3d_c00245{bottom:913.050000px;}
.y40_c00245{bottom:913.905000px;}
.y3e_c00245{bottom:914.970000px;}
.y3c_c00245{bottom:927.825000px;}
.y3b_c00245{bottom:928.905000px;}
.y32_c00245{bottom:929.130000px;}
.y36_c00245{bottom:929.325000px;}
.y3a_c00245{bottom:929.550000px;}
.y33_c00245{bottom:929.970000px;}
.y37_c00245{bottom:930.405000px;}
.y35_c00245{bottom:930.630000px;}
.y34_c00245{bottom:931.050000px;}
.y38_c00245{bottom:931.695000px;}
.y39_c00245{bottom:932.550000px;}
.y31_c00245{bottom:943.050000px;}
.y2e_c00245{bottom:943.905000px;}
.y2f_c00245{bottom:945.195000px;}
.y30_c00245{bottom:946.050000px;}
.y2b_c00245{bottom:958.050000px;}
.y2c_c00245{bottom:958.905000px;}
.y28_c00245{bottom:959.130000px;}
.y2a_c00245{bottom:959.550000px;}
.y2d_c00245{bottom:959.970000px;}
.y29_c00245{bottom:961.050000px;}
.y27_c00245{bottom:972.825000px;}
.y24_c00245{bottom:973.470000px;}
.y25_c00245{bottom:973.695000px;}
.y26_c00245{bottom:973.905000px;}
.y23_c00245{bottom:974.550000px;}
.y22_c00245{bottom:987.405000px;}
.y21_c00245{bottom:987.825000px;}
.y20_c00245{bottom:988.905000px;}
.y1b_c00245{bottom:989.130000px;}
.y1c_c00245{bottom:989.550000px;}
.y1d_c00245{bottom:989.970000px;}
.y1e_c00245{bottom:990.195000px;}
.y1f_c00245{bottom:991.050000px;}
.y1a_c00245{bottom:1002.825000px;}
.y15_c00245{bottom:1003.050000px;}
.y16_c00245{bottom:1003.905000px;}
.y17_c00245{bottom:1004.970000px;}
.y19_c00245{bottom:1005.195000px;}
.y18_c00245{bottom:1006.050000px;}
.y14_c00245{bottom:1017.405000px;}
.y13_c00245{bottom:1031.550000px;}
.y10_c00245{bottom:1032.405000px;}
.y11_c00245{bottom:1033.470000px;}
.y12_c00245{bottom:1033.695000px;}
.yf_c00245{bottom:1034.550000px;}
.ye_c00245{bottom:1046.550000px;}
.yd_c00245{bottom:1047.405000px;}
.ya_c00245{bottom:1048.470000px;}
.yb_c00245{bottom:1048.695000px;}
.yc_c00245{bottom:1049.550000px;}
.y9_c00245{bottom:1061.325000px;}
.y3_c00245{bottom:1061.550000px;}
.y5_c00245{bottom:1062.405000px;}
.y8_c00245{bottom:1063.050000px;}
.y4_c00245{bottom:1063.470000px;}
.y7_c00245{bottom:1063.695000px;}
.y6_c00245{bottom:1064.550000px;}
.y2_c00245{bottom:1099.050000px;}
.y1_c00245{bottom:1100.970000px;}
.h8_c00245{height:4.206533px;}
.h4_c00245{height:16.752334px;}
.h6_c00245{height:23.025234px;}
.h2_c00245{height:25.091602px;}
.h1_c00245{height:31.364502px;}
.h3_c00245{height:35.571035px;}
.h5_c00245{height:39.777568px;}
.h7_c00245{height:43.910303px;}
.h9_c00245{height:48.116836px;}
.h0_c00245{height:1335.000000px;}
.w0_c00245{width:880.500000px;}
.x0_c00245{left:0.000000px;}
.x10c_c00245{left:150.000000px;}
.xb2_c00245{left:151.500000px;}
.x68_c00245{left:153.000000px;}
.x1_c00245{left:154.080000px;}
.x5c_c00245{left:166.500000px;}
.x34_c00245{left:168.000000px;}
.x5e_c00245{left:169.080000px;}
.x3_c00245{left:170.355000px;}
.x8a_c00245{left:172.500000px;}
.x91_c00245{left:177.420000px;}
.xc8_c00245{left:178.500000px;}
.xbf_c00245{left:183.000000px;}
.x40_c00245{left:184.920000px;}
.xee_c00245{left:187.080000px;}
.x115_c00245{left:190.920000px;}
.x52_c00245{left:192.000000px;}
.x4_c00245{left:193.500000px;}
.x1a_c00245{left:195.420000px;}
.x69_c00245{left:197.580000px;}
.x80_c00245{left:199.920000px;}
.xe9_c00245{left:201.000000px;}
.x92_c00245{left:202.500000px;}
.xa7_c00245{left:204.000000px;}
.x4c_c00245{left:205.500000px;}
.xb9_c00245{left:207.000000px;}
.x106_c00245{left:208.920000px;}
.x41_c00245{left:211.500000px;}
.xac_c00245{left:213.000000px;}
.xc9_c00245{left:214.500000px;}
.x4d_c00245{left:216.000000px;}
.xe5_c00245{left:220.500000px;}
.x13_c00245{left:221.580000px;}
.xf4_c00245{left:223.500000px;}
.x1b_c00245{left:224.580000px;}
.x73_c00245{left:226.920000px;}
.x27_c00245{left:228.000000px;}
.x5_c00245{left:229.500000px;}
.x14_c00245{left:232.500000px;}
.x107_c00245{left:235.500000px;}
.xef_c00245{left:236.580000px;}
.x5d_c00245{left:238.920000px;}
.xc0_c00245{left:241.500000px;}
.x43_c00245{left:243.000000px;}
.x8b_c00245{left:244.920000px;}
.x81_c00245{left:246.000000px;}
.xba_c00245{left:247.920000px;}
.x1c_c00245{left:250.500000px;}
.x7d_c00245{left:252.000000px;}
.xdd_c00245{left:255.420000px;}
.x5f_c00245{left:256.500000px;}
.x53_c00245{left:258.000000px;}
.x60_c00245{left:259.500000px;}
.xca_c00245{left:261.000000px;}
.xd6_c00245{left:262.500000px;}
.xa8_c00245{left:264.000000px;}
.x6_c00245{left:265.500000px;}
.x15_c00245{left:267.000000px;}
.xa1_c00245{left:268.500000px;}
.xe6_c00245{left:270.420000px;}
.x28_c00245{left:271.500000px;}
.x35_c00245{left:273.000000px;}
.x42_c00245{left:274.080000px;}
.x112_c00245{left:275.580000px;}
.x61_c00245{left:277.500000px;}
.x4e_c00245{left:279.855000px;}
.x108_c00245{left:282.000000px;}
.x6a_c00245{left:285.000000px;}
.x100_c00245{left:288.000000px;}
.x74_c00245{left:289.920000px;}
.x1d_c00245{left:291.420000px;}
.x36_c00245{left:292.500000px;}
.x29_c00245{left:293.580000px;}
.x16_c00245{left:296.355000px;}
.x7e_c00245{left:297.420000px;}
.x82_c00245{left:298.500000px;}
.xd7_c00245{left:299.580000px;}
.xa9_c00245{left:301.920000px;}
.x101_c00245{left:303.420000px;}
.x93_c00245{left:304.500000px;}
.x7_c00245{left:306.000000px;}
.x99_c00245{left:307.500000px;}
.x1e_c00245{left:309.000000px;}
.x44_c00245{left:313.920000px;}
.xf1_c00245{left:315.420000px;}
.xf5_c00245{left:316.500000px;}
.x2a_c00245{left:318.000000px;}
.xb3_c00245{left:319.500000px;}
.xbb_c00245{left:321.000000px;}
.x4f_c00245{left:322.500000px;}
.x8_c00245{left:324.000000px;}
.x8c_c00245{left:327.000000px;}
.x37_c00245{left:330.000000px;}
.xc1_c00245{left:332.580000px;}
.x45_c00245{left:333.855000px;}
.xcb_c00245{left:336.420000px;}
.x17_c00245{left:337.500000px;}
.x6b_c00245{left:339.000000px;}
.x9_c00245{left:343.080000px;}
.x75_c00245{left:345.000000px;}
.xe1_c00245{left:348.000000px;}
.xfb_c00245{left:351.000000px;}
.x50_c00245{left:352.920000px;}
.x102_c00245{left:354.000000px;}
.x7f_c00245{left:355.500000px;}
.x2b_c00245{left:357.420000px;}
.x6c_c00245{left:358.500000px;}
.x94_c00245{left:360.420000px;}
.xea_c00245{left:361.500000px;}
.xa_c00245{left:362.580000px;}
.xbc_c00245{left:364.500000px;}
.xa2_c00245{left:366.000000px;}
.x18_c00245{left:367.920000px;}
.x83_c00245{left:370.500000px;}
.x2c_c00245{left:373.500000px;}
.xf2_c00245{left:374.580000px;}
.xe2_c00245{left:376.500000px;}
.x51_c00245{left:379.500000px;}
.xf8_c00245{left:381.000000px;}
.xd1_c00245{left:382.080000px;}
.x62_c00245{left:384.420000px;}
.xb_c00245{left:387.000000px;}
.x54_c00245{left:388.500000px;}
.x46_c00245{left:390.000000px;}
.x76_c00245{left:391.500000px;}
.xcc_c00245{left:393.000000px;}
.x19_c00245{left:394.500000px;}
.xa3_c00245{left:395.580000px;}
.x1f_c00245{left:399.000000px;}
.x77_c00245{left:402.000000px;}
.x84_c00245{left:405.855000px;}
.x109_c00245{left:408.000000px;}
.xde_c00245{left:409.080000px;}
.x2_c00245{left:411.000000px;}
.xa4_c00245{left:414.420000px;}
.xfc_c00245{left:415.920000px;}
.x113_c00245{left:420.420000px;}
.x47_c00245{left:423.420000px;}
.xc_c00245{left:425.580000px;}
.x9a_c00245{left:429.000000px;}
.xd2_c00245{left:430.080000px;}
.x95_c00245{left:436.080000px;}
.x55_c00245{left:438.000000px;}
.x8d_c00245{left:439.500000px;}
.x48_c00245{left:441.000000px;}
.xd_c00245{left:442.500000px;}
.xbd_c00245{left:445.920000px;}
.x103_c00245{left:447.000000px;}
.x85_c00245{left:450.000000px;}
.x38_c00245{left:454.500000px;}
.xf6_c00245{left:456.000000px;}
.x6d_c00245{left:457.500000px;}
.xb4_c00245{left:459.000000px;}
.x2d_c00245{left:463.500000px;}
.x8e_c00245{left:466.275000px;}
.x63_c00245{left:468.000000px;}
.x10f_c00245{left:469.920000px;}
.xe_c00245{left:472.500000px;}
.x2e_c00245{left:474.000000px;}
.x9b_c00245{left:475.500000px;}
.xcd_c00245{left:478.080000px;}
.xf3_c00245{left:480.420000px;}
.x6e_c00245{left:481.500000px;}
.xe3_c00245{left:483.420000px;}
.xeb_c00245{left:484.500000px;}
.xd8_c00245{left:486.000000px;}
.x20_c00245{left:487.500000px;}
.x39_c00245{left:488.580000px;}
.xc2_c00245{left:490.080000px;}
.x116_c00245{left:493.500000px;}
.x96_c00245{left:494.580000px;}
.x86_c00245{left:498.000000px;}
.x78_c00245{left:501.000000px;}
.xf_c00245{left:504.000000px;}
.x6f_c00245{left:506.580000px;}
.x9c_c00245{left:510.000000px;}
.x49_c00245{left:511.500000px;}
.x56_c00245{left:513.000000px;}
.x3a_c00245{left:515.580000px;}
.xa5_c00245{left:517.500000px;}
.x2f_c00245{left:518.580000px;}
.xc3_c00245{left:520.080000px;}
.xb5_c00245{left:522.000000px;}
.xfd_c00245{left:523.080000px;}
.x57_c00245{left:525.000000px;}
.xad_c00245{left:526.080000px;}
.xaa_c00245{left:528.000000px;}
.xd3_c00245{left:531.000000px;}
.x104_c00245{left:532.500000px;}
.x64_c00245{left:534.000000px;}
.x79_c00245{left:535.920000px;}
.x9d_c00245{left:538.080000px;}
.x97_c00245{left:541.920000px;}
.x10_c00245{left:544.920000px;}
.xce_c00245{left:546.420000px;}
.x30_c00245{left:548.355000px;}
.xa6_c00245{left:550.500000px;}
.xc4_c00245{left:552.000000px;}
.xd4_c00245{left:553.500000px;}
.x21_c00245{left:555.000000px;}
.xab_c00245{left:556.920000px;}
.x65_c00245{left:559.500000px;}
.x3b_c00245{left:561.000000px;}
.x58_c00245{left:562.500000px;}
.xe7_c00245{left:564.000000px;}
.x117_c00245{left:567.420000px;}
.x22_c00245{left:568.500000px;}
.xae_c00245{left:571.080000px;}
.xd9_c00245{left:576.000000px;}
.xcf_c00245{left:577.080000px;}
.xdf_c00245{left:578.580000px;}
.xbe_c00245{left:580.500000px;}
.xd5_c00245{left:582.420000px;}
.x110_c00245{left:583.500000px;}
.x87_c00245{left:586.500000px;}
.x66_c00245{left:589.080000px;}
.x31_c00245{left:591.000000px;}
.x59_c00245{left:595.920000px;}
.x10d_c00245{left:597.420000px;}
.xc5_c00245{left:598.500000px;}
.x9e_c00245{left:600.000000px;}
.x7a_c00245{left:601.920000px;}
.x3c_c00245{left:603.000000px;}
.x23_c00245{left:604.500000px;}
.xf9_c00245{left:605.580000px;}
.x8f_c00245{left:607.920000px;}
.x70_c00245{left:610.500000px;}
.x10a_c00245{left:612.000000px;}
.x11_c00245{left:613.080000px;}
.x3d_c00245{left:615.000000px;}
.xb6_c00245{left:619.500000px;}
.x32_c00245{left:620.580000px;}
.xfe_c00245{left:622.500000px;}
.xaf_c00245{left:624.000000px;}
.x4a_c00245{left:625.500000px;}
.xe0_c00245{left:628.500000px;}
.x88_c00245{left:630.420000px;}
.x9f_c00245{left:631.500000px;}
.x10b_c00245{left:633.000000px;}
.x24_c00245{left:635.355000px;}
.x105_c00245{left:637.500000px;}
.xb0_c00245{left:638.580000px;}
.xe8_c00245{left:640.500000px;}
.x90_c00245{left:643.080000px;}
.x5a_c00245{left:646.080000px;}
.x33_c00245{left:648.000000px;}
.xfa_c00245{left:649.920000px;}
.xda_c00245{left:651.420000px;}
.xc6_c00245{left:652.500000px;}
.x7b_c00245{left:654.000000px;}
.xb7_c00245{left:655.500000px;}
.xb1_c00245{left:658.920000px;}
.x111_c00245{left:660.000000px;}
.x71_c00245{left:661.500000px;}
.x67_c00245{left:663.000000px;}
.x3e_c00245{left:665.580000px;}
.x10e_c00245{left:667.920000px;}
.x12_c00245{left:669.000000px;}
.xf0_c00245{left:670.500000px;}
.x89_c00245{left:675.000000px;}
.xec_c00245{left:676.920000px;}
.x25_c00245{left:678.000000px;}
.xdb_c00245{left:679.500000px;}
.x72_c00245{left:681.420000px;}
.xd0_c00245{left:682.500000px;}
.x7c_c00245{left:685.920000px;}
.xff_c00245{left:687.000000px;}
.x5b_c00245{left:688.500000px;}
.x114_c00245{left:689.580000px;}
.x3f_c00245{left:692.580000px;}
.x98_c00245{left:694.500000px;}
.xb8_c00245{left:696.420000px;}
.x4b_c00245{left:697.920000px;}
.xc7_c00245{left:700.920000px;}
.xf7_c00245{left:703.500000px;}
.xe4_c00245{left:706.080000px;}
.x26_c00245{left:709.920000px;}
.xed_c00245{left:717.000000px;}
.xdc_c00245{left:720.000000px;}
.xa0_c00245{left:723.000000px;}
@media print{
.v0_c00245{vertical-align:0.000000pt;}
.ls0_c00245{letter-spacing:0.000000pt;}
.ws0_c00245{word-spacing:0.000000pt;}
.fs7_c00245{font-size:3.040000pt;}
.fs3_c00245{font-size:12.106667pt;}
.fs5_c00245{font-size:16.640000pt;}
.fs1_c00245{font-size:18.133333pt;}
.fs0_c00245{font-size:22.666667pt;}
.fs2_c00245{font-size:25.706667pt;}
.fs4_c00245{font-size:28.746667pt;}
.fs6_c00245{font-size:31.733333pt;}
.fs8_c00245{font-size:34.773333pt;}
.y0_c00245{bottom:0.000000pt;}
.ydd_c00245{bottom:221.493333pt;}
.ydc_c00245{bottom:222.266667pt;}
.yda_c00245{bottom:222.440000pt;}
.ydb_c00245{bottom:223.973333pt;}
.yd9_c00245{bottom:224.360000pt;}
.yd7_c00245{bottom:239.400000pt;}
.yd4_c00245{bottom:239.773333pt;}
.yd3_c00245{bottom:241.306667pt;}
.yd2_c00245{bottom:241.693333pt;}
.yd5_c00245{bottom:242.066667pt;}
.yd8_c00245{bottom:242.640000pt;}
.yd6_c00245{bottom:243.026667pt;}
.ycf_c00245{bottom:257.106667pt;}
.ycd_c00245{bottom:257.306667pt;}
.yd1_c00245{bottom:257.893333pt;}
.ycb_c00245{bottom:258.066667pt;}
.ycc_c00245{bottom:258.640000pt;}
.yca_c00245{bottom:259.026667pt;}
.yce_c00245{bottom:259.973333pt;}
.yd0_c00245{bottom:260.360000pt;}
.yc3_c00245{bottom:274.440000pt;}
.yc8_c00245{bottom:275.400000pt;}
.yc5_c00245{bottom:275.773333pt;}
.yc9_c00245{bottom:276.360000pt;}
.yc4_c00245{bottom:276.560000pt;}
.yc7_c00245{bottom:277.306667pt;}
.yc6_c00245{bottom:277.693333pt;}
.ybf_c00245{bottom:291.773333pt;}
.yc1_c00245{bottom:293.893333pt;}
.yc2_c00245{bottom:294.640000pt;}
.yc0_c00245{bottom:295.026667pt;}
.ybd_c00245{bottom:310.440000pt;}
.yba_c00245{bottom:311.026667pt;}
.ybc_c00245{bottom:311.226667pt;}
.ybe_c00245{bottom:311.973333pt;}
.ybb_c00245{bottom:312.360000pt;}
.yb4_c00245{bottom:327.400000pt;}
.yb6_c00245{bottom:327.773333pt;}
.yb9_c00245{bottom:328.560000pt;}
.yb7_c00245{bottom:329.306667pt;}
.yb5_c00245{bottom:329.693333pt;}
.yb8_c00245{bottom:329.893333pt;}
.yb1_c00245{bottom:345.106667pt;}
.yb2_c00245{bottom:346.440000pt;}
.yb0_c00245{bottom:347.026667pt;}
.yb3_c00245{bottom:347.226667pt;}
.yaf_c00245{bottom:347.973333pt;}
.yae_c00245{bottom:361.693333pt;}
.yad_c00245{bottom:362.440000pt;}
.yab_c00245{bottom:379.773333pt;}
.yac_c00245{bottom:380.560000pt;}
.yaa_c00245{bottom:380.733333pt;}
.ya6_c00245{bottom:381.693333pt;}
.ya9_c00245{bottom:381.893333pt;}
.ya8_c00245{bottom:382.640000pt;}
.ya7_c00245{bottom:383.026667pt;}
.ya4_c00245{bottom:398.440000pt;}
.ya5_c00245{bottom:399.026667pt;}
.ya3_c00245{bottom:400.360000pt;}
.ya1_c00245{bottom:415.773333pt;}
.ya2_c00245{bottom:416.733333pt;}
.ya0_c00245{bottom:417.693333pt;}
.y9b_c00245{bottom:433.106667pt;}
.y9f_c00245{bottom:433.893333pt;}
.y9e_c00245{bottom:435.026667pt;}
.y9c_c00245{bottom:435.226667pt;}
.y9d_c00245{bottom:435.973333pt;}
.y98_c00245{bottom:450.440000pt;}
.y99_c00245{bottom:452.360000pt;}
.y9a_c00245{bottom:452.560000pt;}
.y97_c00245{bottom:467.773333pt;}
.y96_c00245{bottom:468.733333pt;}
.y94_c00245{bottom:469.693333pt;}
.y95_c00245{bottom:469.893333pt;}
.y93_c00245{bottom:471.026667pt;}
.y92_c00245{bottom:484.360000pt;}
.y8f_c00245{bottom:486.440000pt;}
.y8e_c00245{bottom:487.226667pt;}
.y90_c00245{bottom:487.400000pt;}
.y91_c00245{bottom:488.360000pt;}
.y8b_c00245{bottom:502.640000pt;}
.y89_c00245{bottom:503.773333pt;}
.y8c_c00245{bottom:504.560000pt;}
.y8a_c00245{bottom:505.693333pt;}
.y8d_c00245{bottom:506.640000pt;}
.y88_c00245{bottom:521.693333pt;}
.y85_c00245{bottom:521.893333pt;}
.y87_c00245{bottom:522.066667pt;}
.y86_c00245{bottom:522.640000pt;}
.y84_c00245{bottom:523.026667pt;}
.y83_c00245{bottom:523.973333pt;}
.y81_c00245{bottom:538.440000pt;}
.y80_c00245{bottom:539.226667pt;}
.y82_c00245{bottom:540.360000pt;}
.y7d_c00245{bottom:555.773333pt;}
.y7c_c00245{bottom:556.560000pt;}
.y7e_c00245{bottom:556.733333pt;}
.y7b_c00245{bottom:557.693333pt;}
.y7f_c00245{bottom:557.893333pt;}
.y77_c00245{bottom:573.106667pt;}
.y78_c00245{bottom:573.893333pt;}
.y79_c00245{bottom:575.026667pt;}
.y7a_c00245{bottom:575.973333pt;}
.y76_c00245{bottom:589.693333pt;}
.y75_c00245{bottom:590.440000pt;}
.y74_c00245{bottom:592.360000pt;}
.y73_c00245{bottom:592.560000pt;}
.y6f_c00245{bottom:608.733333pt;}
.y72_c00245{bottom:609.106667pt;}
.y6e_c00245{bottom:609.693333pt;}
.y70_c00245{bottom:610.640000pt;}
.y71_c00245{bottom:611.026667pt;}
.y6d_c00245{bottom:627.026667pt;}
.y6c_c00245{bottom:627.226667pt;}
.y6b_c00245{bottom:627.400000pt;}
.y6a_c00245{bottom:627.973333pt;}
.y69_c00245{bottom:628.360000pt;}
.y68_c00245{bottom:643.400000pt;}
.y65_c00245{bottom:644.360000pt;}
.y67_c00245{bottom:644.560000pt;}
.y66_c00245{bottom:645.693333pt;}
.y63_c00245{bottom:660.160000pt;}
.y64_c00245{bottom:660.360000pt;}
.y61_c00245{bottom:661.106667pt;}
.y60_c00245{bottom:661.893333pt;}
.y62_c00245{bottom:663.026667pt;}
.y5e_c00245{bottom:678.066667pt;}
.y5f_c00245{bottom:678.440000pt;}
.y5d_c00245{bottom:678.640000pt;}
.y5c_c00245{bottom:679.400000pt;}
.y5b_c00245{bottom:680.360000pt;}
.y5a_c00245{bottom:680.560000pt;}
.y58_c00245{bottom:695.773333pt;}
.y57_c00245{bottom:697.693333pt;}
.y59_c00245{bottom:697.893333pt;}
.y56_c00245{bottom:698.640000pt;}
.y53_c00245{bottom:713.106667pt;}
.y55_c00245{bottom:714.066667pt;}
.y52_c00245{bottom:715.026667pt;}
.y54_c00245{bottom:715.226667pt;}
.y51_c00245{bottom:715.973333pt;}
.y4f_c00245{bottom:730.440000pt;}
.y50_c00245{bottom:731.773333pt;}
.y4d_c00245{bottom:732.360000pt;}
.y4e_c00245{bottom:733.693333pt;}
.y4c_c00245{bottom:748.733333pt;}
.y49_c00245{bottom:749.106667pt;}
.y4a_c00245{bottom:749.893333pt;}
.y48_c00245{bottom:750.066667pt;}
.y4b_c00245{bottom:751.026667pt;}
.y47_c00245{bottom:766.440000pt;}
.y46_c00245{bottom:768.360000pt;}
.y41_c00245{bottom:783.773333pt;}
.y43_c00245{bottom:785.693333pt;}
.y42_c00245{bottom:785.706667pt;}
.y44_c00245{bottom:785.893333pt;}
.y45_c00245{bottom:786.640000pt;}
.y3f_c00245{bottom:811.400000pt;}
.y3d_c00245{bottom:811.600000pt;}
.y40_c00245{bottom:812.360000pt;}
.y3e_c00245{bottom:813.306667pt;}
.y3c_c00245{bottom:824.733333pt;}
.y3b_c00245{bottom:825.693333pt;}
.y32_c00245{bottom:825.893333pt;}
.y36_c00245{bottom:826.066667pt;}
.y3a_c00245{bottom:826.266667pt;}
.y33_c00245{bottom:826.640000pt;}
.y37_c00245{bottom:827.026667pt;}
.y35_c00245{bottom:827.226667pt;}
.y34_c00245{bottom:827.600000pt;}
.y38_c00245{bottom:828.173333pt;}
.y39_c00245{bottom:828.933333pt;}
.y31_c00245{bottom:838.266667pt;}
.y2e_c00245{bottom:839.026667pt;}
.y2f_c00245{bottom:840.173333pt;}
.y30_c00245{bottom:840.933333pt;}
.y2b_c00245{bottom:851.600000pt;}
.y2c_c00245{bottom:852.360000pt;}
.y28_c00245{bottom:852.560000pt;}
.y2a_c00245{bottom:852.933333pt;}
.y2d_c00245{bottom:853.306667pt;}
.y29_c00245{bottom:854.266667pt;}
.y27_c00245{bottom:864.733333pt;}
.y24_c00245{bottom:865.306667pt;}
.y25_c00245{bottom:865.506667pt;}
.y26_c00245{bottom:865.693333pt;}
.y23_c00245{bottom:866.266667pt;}
.y22_c00245{bottom:877.693333pt;}
.y21_c00245{bottom:878.066667pt;}
.y20_c00245{bottom:879.026667pt;}
.y1b_c00245{bottom:879.226667pt;}
.y1c_c00245{bottom:879.600000pt;}
.y1d_c00245{bottom:879.973333pt;}
.y1e_c00245{bottom:880.173333pt;}
.y1f_c00245{bottom:880.933333pt;}
.y1a_c00245{bottom:891.400000pt;}
.y15_c00245{bottom:891.600000pt;}
.y16_c00245{bottom:892.360000pt;}
.y17_c00245{bottom:893.306667pt;}
.y19_c00245{bottom:893.506667pt;}
.y18_c00245{bottom:894.266667pt;}
.y14_c00245{bottom:904.360000pt;}
.y13_c00245{bottom:916.933333pt;}
.y10_c00245{bottom:917.693333pt;}
.y11_c00245{bottom:918.640000pt;}
.y12_c00245{bottom:918.840000pt;}
.yf_c00245{bottom:919.600000pt;}
.ye_c00245{bottom:930.266667pt;}
.yd_c00245{bottom:931.026667pt;}
.ya_c00245{bottom:931.973333pt;}
.yb_c00245{bottom:932.173333pt;}
.yc_c00245{bottom:932.933333pt;}
.y9_c00245{bottom:943.400000pt;}
.y3_c00245{bottom:943.600000pt;}
.y5_c00245{bottom:944.360000pt;}
.y8_c00245{bottom:944.933333pt;}
.y4_c00245{bottom:945.306667pt;}
.y7_c00245{bottom:945.506667pt;}
.y6_c00245{bottom:946.266667pt;}
.y2_c00245{bottom:976.933333pt;}
.y1_c00245{bottom:978.640000pt;}
.h8_c00245{height:3.739141pt;}
.h4_c00245{height:14.890964pt;}
.h6_c00245{height:20.466875pt;}
.h2_c00245{height:22.303646pt;}
.h1_c00245{height:27.879557pt;}
.h3_c00245{height:31.618698pt;}
.h5_c00245{height:35.357839pt;}
.h7_c00245{height:39.031380pt;}
.h9_c00245{height:42.770521pt;}
.h0_c00245{height:1186.666667pt;}
.w0_c00245{width:782.666667pt;}
.x0_c00245{left:0.000000pt;}
.x10c_c00245{left:133.333333pt;}
.xb2_c00245{left:134.666667pt;}
.x68_c00245{left:136.000000pt;}
.x1_c00245{left:136.960000pt;}
.x5c_c00245{left:148.000000pt;}
.x34_c00245{left:149.333333pt;}
.x5e_c00245{left:150.293333pt;}
.x3_c00245{left:151.426667pt;}
.x8a_c00245{left:153.333333pt;}
.x91_c00245{left:157.706667pt;}
.xc8_c00245{left:158.666667pt;}
.xbf_c00245{left:162.666667pt;}
.x40_c00245{left:164.373333pt;}
.xee_c00245{left:166.293333pt;}
.x115_c00245{left:169.706667pt;}
.x52_c00245{left:170.666667pt;}
.x4_c00245{left:172.000000pt;}
.x1a_c00245{left:173.706667pt;}
.x69_c00245{left:175.626667pt;}
.x80_c00245{left:177.706667pt;}
.xe9_c00245{left:178.666667pt;}
.x92_c00245{left:180.000000pt;}
.xa7_c00245{left:181.333333pt;}
.x4c_c00245{left:182.666667pt;}
.xb9_c00245{left:184.000000pt;}
.x106_c00245{left:185.706667pt;}
.x41_c00245{left:188.000000pt;}
.xac_c00245{left:189.333333pt;}
.xc9_c00245{left:190.666667pt;}
.x4d_c00245{left:192.000000pt;}
.xe5_c00245{left:196.000000pt;}
.x13_c00245{left:196.960000pt;}
.xf4_c00245{left:198.666667pt;}
.x1b_c00245{left:199.626667pt;}
.x73_c00245{left:201.706667pt;}
.x27_c00245{left:202.666667pt;}
.x5_c00245{left:204.000000pt;}
.x14_c00245{left:206.666667pt;}
.x107_c00245{left:209.333333pt;}
.xef_c00245{left:210.293333pt;}
.x5d_c00245{left:212.373333pt;}
.xc0_c00245{left:214.666667pt;}
.x43_c00245{left:216.000000pt;}
.x8b_c00245{left:217.706667pt;}
.x81_c00245{left:218.666667pt;}
.xba_c00245{left:220.373333pt;}
.x1c_c00245{left:222.666667pt;}
.x7d_c00245{left:224.000000pt;}
.xdd_c00245{left:227.040000pt;}
.x5f_c00245{left:228.000000pt;}
.x53_c00245{left:229.333333pt;}
.x60_c00245{left:230.666667pt;}
.xca_c00245{left:232.000000pt;}
.xd6_c00245{left:233.333333pt;}
.xa8_c00245{left:234.666667pt;}
.x6_c00245{left:236.000000pt;}
.x15_c00245{left:237.333333pt;}
.xa1_c00245{left:238.666667pt;}
.xe6_c00245{left:240.373333pt;}
.x28_c00245{left:241.333333pt;}
.x35_c00245{left:242.666667pt;}
.x42_c00245{left:243.626667pt;}
.x112_c00245{left:244.960000pt;}
.x61_c00245{left:246.666667pt;}
.x4e_c00245{left:248.760000pt;}
.x108_c00245{left:250.666667pt;}
.x6a_c00245{left:253.333333pt;}
.x100_c00245{left:256.000000pt;}
.x74_c00245{left:257.706667pt;}
.x1d_c00245{left:259.040000pt;}
.x36_c00245{left:260.000000pt;}
.x29_c00245{left:260.960000pt;}
.x16_c00245{left:263.426667pt;}
.x7e_c00245{left:264.373333pt;}
.x82_c00245{left:265.333333pt;}
.xd7_c00245{left:266.293333pt;}
.xa9_c00245{left:268.373333pt;}
.x101_c00245{left:269.706667pt;}
.x93_c00245{left:270.666667pt;}
.x7_c00245{left:272.000000pt;}
.x99_c00245{left:273.333333pt;}
.x1e_c00245{left:274.666667pt;}
.x44_c00245{left:279.040000pt;}
.xf1_c00245{left:280.373333pt;}
.xf5_c00245{left:281.333333pt;}
.x2a_c00245{left:282.666667pt;}
.xb3_c00245{left:284.000000pt;}
.xbb_c00245{left:285.333333pt;}
.x4f_c00245{left:286.666667pt;}
.x8_c00245{left:288.000000pt;}
.x8c_c00245{left:290.666667pt;}
.x37_c00245{left:293.333333pt;}
.xc1_c00245{left:295.626667pt;}
.x45_c00245{left:296.760000pt;}
.xcb_c00245{left:299.040000pt;}
.x17_c00245{left:300.000000pt;}
.x6b_c00245{left:301.333333pt;}
.x9_c00245{left:304.960000pt;}
.x75_c00245{left:306.666667pt;}
.xe1_c00245{left:309.333333pt;}
.xfb_c00245{left:312.000000pt;}
.x50_c00245{left:313.706667pt;}
.x102_c00245{left:314.666667pt;}
.x7f_c00245{left:316.000000pt;}
.x2b_c00245{left:317.706667pt;}
.x6c_c00245{left:318.666667pt;}
.x94_c00245{left:320.373333pt;}
.xea_c00245{left:321.333333pt;}
.xa_c00245{left:322.293333pt;}
.xbc_c00245{left:324.000000pt;}
.xa2_c00245{left:325.333333pt;}
.x18_c00245{left:327.040000pt;}
.x83_c00245{left:329.333333pt;}
.x2c_c00245{left:332.000000pt;}
.xf2_c00245{left:332.960000pt;}
.xe2_c00245{left:334.666667pt;}
.x51_c00245{left:337.333333pt;}
.xf8_c00245{left:338.666667pt;}
.xd1_c00245{left:339.626667pt;}
.x62_c00245{left:341.706667pt;}
.xb_c00245{left:344.000000pt;}
.x54_c00245{left:345.333333pt;}
.x46_c00245{left:346.666667pt;}
.x76_c00245{left:348.000000pt;}
.xcc_c00245{left:349.333333pt;}
.x19_c00245{left:350.666667pt;}
.xa3_c00245{left:351.626667pt;}
.x1f_c00245{left:354.666667pt;}
.x77_c00245{left:357.333333pt;}
.x84_c00245{left:360.760000pt;}
.x109_c00245{left:362.666667pt;}
.xde_c00245{left:363.626667pt;}
.x2_c00245{left:365.333333pt;}
.xa4_c00245{left:368.373333pt;}
.xfc_c00245{left:369.706667pt;}
.x113_c00245{left:373.706667pt;}
.x47_c00245{left:376.373333pt;}
.xc_c00245{left:378.293333pt;}
.x9a_c00245{left:381.333333pt;}
.xd2_c00245{left:382.293333pt;}
.x95_c00245{left:387.626667pt;}
.x55_c00245{left:389.333333pt;}
.x8d_c00245{left:390.666667pt;}
.x48_c00245{left:392.000000pt;}
.xd_c00245{left:393.333333pt;}
.xbd_c00245{left:396.373333pt;}
.x103_c00245{left:397.333333pt;}
.x85_c00245{left:400.000000pt;}
.x38_c00245{left:404.000000pt;}
.xf6_c00245{left:405.333333pt;}
.x6d_c00245{left:406.666667pt;}
.xb4_c00245{left:408.000000pt;}
.x2d_c00245{left:412.000000pt;}
.x8e_c00245{left:414.466667pt;}
.x63_c00245{left:416.000000pt;}
.x10f_c00245{left:417.706667pt;}
.xe_c00245{left:420.000000pt;}
.x2e_c00245{left:421.333333pt;}
.x9b_c00245{left:422.666667pt;}
.xcd_c00245{left:424.960000pt;}
.xf3_c00245{left:427.040000pt;}
.x6e_c00245{left:428.000000pt;}
.xe3_c00245{left:429.706667pt;}
.xeb_c00245{left:430.666667pt;}
.xd8_c00245{left:432.000000pt;}
.x20_c00245{left:433.333333pt;}
.x39_c00245{left:434.293333pt;}
.xc2_c00245{left:435.626667pt;}
.x116_c00245{left:438.666667pt;}
.x96_c00245{left:439.626667pt;}
.x86_c00245{left:442.666667pt;}
.x78_c00245{left:445.333333pt;}
.xf_c00245{left:448.000000pt;}
.x6f_c00245{left:450.293333pt;}
.x9c_c00245{left:453.333333pt;}
.x49_c00245{left:454.666667pt;}
.x56_c00245{left:456.000000pt;}
.x3a_c00245{left:458.293333pt;}
.xa5_c00245{left:460.000000pt;}
.x2f_c00245{left:460.960000pt;}
.xc3_c00245{left:462.293333pt;}
.xb5_c00245{left:464.000000pt;}
.xfd_c00245{left:464.960000pt;}
.x57_c00245{left:466.666667pt;}
.xad_c00245{left:467.626667pt;}
.xaa_c00245{left:469.333333pt;}
.xd3_c00245{left:472.000000pt;}
.x104_c00245{left:473.333333pt;}
.x64_c00245{left:474.666667pt;}
.x79_c00245{left:476.373333pt;}
.x9d_c00245{left:478.293333pt;}
.x97_c00245{left:481.706667pt;}
.x10_c00245{left:484.373333pt;}
.xce_c00245{left:485.706667pt;}
.x30_c00245{left:487.426667pt;}
.xa6_c00245{left:489.333333pt;}
.xc4_c00245{left:490.666667pt;}
.xd4_c00245{left:492.000000pt;}
.x21_c00245{left:493.333333pt;}
.xab_c00245{left:495.040000pt;}
.x65_c00245{left:497.333333pt;}
.x3b_c00245{left:498.666667pt;}
.x58_c00245{left:500.000000pt;}
.xe7_c00245{left:501.333333pt;}
.x117_c00245{left:504.373333pt;}
.x22_c00245{left:505.333333pt;}
.xae_c00245{left:507.626667pt;}
.xd9_c00245{left:512.000000pt;}
.xcf_c00245{left:512.960000pt;}
.xdf_c00245{left:514.293333pt;}
.xbe_c00245{left:516.000000pt;}
.xd5_c00245{left:517.706667pt;}
.x110_c00245{left:518.666667pt;}
.x87_c00245{left:521.333333pt;}
.x66_c00245{left:523.626667pt;}
.x31_c00245{left:525.333333pt;}
.x59_c00245{left:529.706667pt;}
.x10d_c00245{left:531.040000pt;}
.xc5_c00245{left:532.000000pt;}
.x9e_c00245{left:533.333333pt;}
.x7a_c00245{left:535.040000pt;}
.x3c_c00245{left:536.000000pt;}
.x23_c00245{left:537.333333pt;}
.xf9_c00245{left:538.293333pt;}
.x8f_c00245{left:540.373333pt;}
.x70_c00245{left:542.666667pt;}
.x10a_c00245{left:544.000000pt;}
.x11_c00245{left:544.960000pt;}
.x3d_c00245{left:546.666667pt;}
.xb6_c00245{left:550.666667pt;}
.x32_c00245{left:551.626667pt;}
.xfe_c00245{left:553.333333pt;}
.xaf_c00245{left:554.666667pt;}
.x4a_c00245{left:556.000000pt;}
.xe0_c00245{left:558.666667pt;}
.x88_c00245{left:560.373333pt;}
.x9f_c00245{left:561.333333pt;}
.x10b_c00245{left:562.666667pt;}
.x24_c00245{left:564.760000pt;}
.x105_c00245{left:566.666667pt;}
.xb0_c00245{left:567.626667pt;}
.xe8_c00245{left:569.333333pt;}
.x90_c00245{left:571.626667pt;}
.x5a_c00245{left:574.293333pt;}
.x33_c00245{left:576.000000pt;}
.xfa_c00245{left:577.706667pt;}
.xda_c00245{left:579.040000pt;}
.xc6_c00245{left:580.000000pt;}
.x7b_c00245{left:581.333333pt;}
.xb7_c00245{left:582.666667pt;}
.xb1_c00245{left:585.706667pt;}
.x111_c00245{left:586.666667pt;}
.x71_c00245{left:588.000000pt;}
.x67_c00245{left:589.333333pt;}
.x3e_c00245{left:591.626667pt;}
.x10e_c00245{left:593.706667pt;}
.x12_c00245{left:594.666667pt;}
.xf0_c00245{left:596.000000pt;}
.x89_c00245{left:600.000000pt;}
.xec_c00245{left:601.706667pt;}
.x25_c00245{left:602.666667pt;}
.xdb_c00245{left:604.000000pt;}
.x72_c00245{left:605.706667pt;}
.xd0_c00245{left:606.666667pt;}
.x7c_c00245{left:609.706667pt;}
.xff_c00245{left:610.666667pt;}
.x5b_c00245{left:612.000000pt;}
.x114_c00245{left:612.960000pt;}
.x3f_c00245{left:615.626667pt;}
.x98_c00245{left:617.333333pt;}
.xb8_c00245{left:619.040000pt;}
.x4b_c00245{left:620.373333pt;}
.xc7_c00245{left:623.040000pt;}
.xf7_c00245{left:625.333333pt;}
.xe4_c00245{left:627.626667pt;}
.x26_c00245{left:631.040000pt;}
.xed_c00245{left:637.333333pt;}
.xdc_c00245{left:640.000000pt;}
.xa0_c00245{left:642.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_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_0249c2de084b42df64448a65.woff2')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8c_c00246{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);}
.m9c_c00246{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m3f_c00246{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.ma2_c00246{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m9e_c00246{transform:matrix(0.367227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367227,0.000000,0.000000,0.250000,0,0);}
.mb5_c00246{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m77_c00246{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m93_c00246{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mc7_c00246{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m42_c00246{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m76_c00246{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m7b_c00246{transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);}
.m24_c00246{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m58_c00246{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m1d_c00246{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m88_c00246{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m57_c00246{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mdd_c00246{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m38_c00246{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.mb3_c00246{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m35_c00246{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m6a_c00246{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m83_c00246{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m7_c00246{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_c00246{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.mdf_c00246{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m2b_c00246{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.me9_c00246{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.me1_c00246{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.mce_c00246{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.mfe_c00246{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m74_c00246{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m2a_c00246{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.ma_c00246{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m7d_c00246{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m5a_c00246{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m4c_c00246{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mb4_c00246{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m8d_c00246{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m80_c00246{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mef_c00246{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.ma7_c00246{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m1f_c00246{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m90_c00246{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m95_c00246{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m1c_c00246{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m67_c00246{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m78_c00246{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mc8_c00246{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m34_c00246{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mb1_c00246{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mbc_c00246{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m66_c00246{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.mc1_c00246{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m8_c00246{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mbf_c00246{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m8a_c00246{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m91_c00246{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.mb2_c00246{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m71_c00246{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m20_c00246{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m40_c00246{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.mc2_c00246{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.mde_c00246{transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);}
.mc4_c00246{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m50_c00246{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m49_c00246{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m37_c00246{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.mbe_c00246{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mc6_c00246{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.mb6_c00246{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m2d_c00246{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m8b_c00246{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m6_c00246{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m98_c00246{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m86_c00246{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.mcf_c00246{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.md7_c00246{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m2f_c00246{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m64_c00246{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m96_c00246{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m1_c00246{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.mcc_c00246{transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);}
.mfb_c00246{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m92_c00246{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m100_c00246{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.mf6_c00246{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.md6_c00246{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00246{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m73_c00246{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m9f_c00246{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m87_c00246{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m45_c00246{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m9b_c00246{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.m3e_c00246{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.me7_c00246{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m105_c00246{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.mf0_c00246{transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);}
.meb_c00246{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mdb_c00246{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m85_c00246{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m5e_c00246{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m102_c00246{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m4f_c00246{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m89_c00246{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m19_c00246{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mf5_c00246{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mbb_c00246{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.ma5_c00246{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mf1_c00246{transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);}
.mec_c00246{transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);}
.md8_c00246{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.mf3_c00246{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m4b_c00246{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.ma3_c00246{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.ma8_c00246{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m26_c00246{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);}
.mab_c00246{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m69_c00246{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m51_c00246{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m55_c00246{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.me0_c00246{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.ma4_c00246{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m7a_c00246{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.md0_c00246{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.ma6_c00246{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.md1_c00246{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m4_c00246{transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);}
.m59_c00246{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.me6_c00246{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.md9_c00246{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m82_c00246{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m2_c00246{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m15_c00246{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.ma9_c00246{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.me5_c00246{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.mf9_c00246{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.mcb_c00246{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m81_c00246{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m9d_c00246{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m9a_c00246{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.mc5_c00246{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mf_c00246{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m48_c00246{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mf4_c00246{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m104_c00246{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m6f_c00246{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mac_c00246{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m27_c00246{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mae_c00246{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m5f_c00246{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m60_c00246{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m30_c00246{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m28_c00246{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mb_c00246{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m7e_c00246{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.maf_c00246{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m12_c00246{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m1a_c00246{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.md4_c00246{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mf8_c00246{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m29_c00246{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m70_c00246{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m7f_c00246{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m46_c00246{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m5b_c00246{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m3b_c00246{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m5d_c00246{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m6c_c00246{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.mbd_c00246{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.mee_c00246{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mc_c00246{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mfa_c00246{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m47_c00246{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mb9_c00246{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mba_c00246{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m6e_c00246{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m52_c00246{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m31_c00246{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.md5_c00246{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m61_c00246{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m43_c00246{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.med_c00246{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.md_c00246{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m3_c00246{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mb8_c00246{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m6b_c00246{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m41_c00246{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);}
.m32_c00246{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m13_c00246{transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);}
.m75_c00246{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m1b_c00246{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mff_c00246{transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);}
.mda_c00246{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.me2_c00246{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.mb0_c00246{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m25_c00246{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.mfd_c00246{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m101_c00246{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m56_c00246{transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);}
.me8_c00246{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m10_c00246{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m84_c00246{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.mcd_c00246{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.mb7_c00246{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m4d_c00246{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m68_c00246{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.me4_c00246{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m8f_c00246{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m5_c00246{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m72_c00246{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.mfc_c00246{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m17_c00246{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mea_c00246{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m9_c00246{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mc9_c00246{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m23_c00246{transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);}
.m65_c00246{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m5c_c00246{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.md3_c00246{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.ma1_c00246{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m16_c00246{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_c00246{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m39_c00246{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.me_c00246{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m6d_c00246{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m14_c00246{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.mca_c00246{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);}
.mc3_c00246{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.me3_c00246{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m3a_c00246{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m33_c00246{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m18_c00246{transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);}
.m103_c00246{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);}
.m53_c00246{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m21_c00246{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.mc0_c00246{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.mad_c00246{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m36_c00246{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m0_c00246{transform:matrix(0.690705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690705,0.000000,0.000000,0.250000,0,0);}
.m99_c00246{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m54_c00246{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m3c_c00246{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m22_c00246{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m2e_c00246{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m4e_c00246{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m11_c00246{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m7c_c00246{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m1e_c00246{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m4a_c00246{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m62_c00246{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.ma0_c00246{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.m94_c00246{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.m97_c00246{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m63_c00246{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m3d_c00246{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m79_c00246{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mdc_c00246{transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);}
.md2_c00246{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mf7_c00246{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m8e_c00246{transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);}
.maa_c00246{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-16.889280px;}
.ws1_c00246{word-spacing:0.000000px;}
._0_c00246{width:5.710426px;}
.fc0_c00246{color:transparent;}
.fs5_c00246{font-size:3.420000px;}
.fs0_c00246{font-size:18.720000px;}
.fs6_c00246{font-size:20.400000px;}
.fs3_c00246{font-size:25.500000px;}
.fs1_c00246{font-size:28.920000px;}
.fs2_c00246{font-size:32.340000px;}
.fs4_c00246{font-size:35.700000px;}
.y0_c00246{bottom:0.000000px;}
.yd0_c00246{bottom:250.905000px;}
.yd1_c00246{bottom:251.745000px;}
.ycd_c00246{bottom:252.825000px;}
.yce_c00246{bottom:253.050000px;}
.ycf_c00246{bottom:253.905000px;}
.yd2_c00246{bottom:254.130000px;}
.ycc_c00246{bottom:255.405000px;}
.yc8_c00246{bottom:271.245000px;}
.yca_c00246{bottom:272.325000px;}
.ycb_c00246{bottom:273.630000px;}
.yc9_c00246{bottom:274.470000px;}
.yc7_c00246{bottom:274.905000px;}
.yc6_c00246{bottom:292.245000px;}
.yc5_c00246{bottom:292.905000px;}
.yc3_c00246{bottom:293.130000px;}
.yc2_c00246{bottom:293.325000px;}
.yc4_c00246{bottom:293.970000px;}
.yc1_c00246{bottom:294.405000px;}
.yc0_c00246{bottom:312.630000px;}
.ybf_c00246{bottom:312.825000px;}
.ybe_c00246{bottom:313.905000px;}
.ybd_c00246{bottom:314.130000px;}
.yb8_c00246{bottom:331.245000px;}
.ybc_c00246{bottom:331.905000px;}
.ybb_c00246{bottom:332.130000px;}
.yb9_c00246{bottom:332.325000px;}
.yb7_c00246{bottom:333.405000px;}
.yba_c00246{bottom:333.630000px;}
.yb6_c00246{bottom:350.745000px;}
.yb5_c00246{bottom:351.825000px;}
.yb3_c00246{bottom:352.905000px;}
.yb4_c00246{bottom:353.130000px;}
.yb2_c00246{bottom:370.470000px;}
.yb1_c00246{bottom:371.325000px;}
.yaf_c00246{bottom:371.550000px;}
.yb0_c00246{bottom:372.405000px;}
.yad_c00246{bottom:391.245000px;}
.yac_c00246{bottom:392.325000px;}
.yae_c00246{bottom:392.970000px;}
.yab_c00246{bottom:393.405000px;}
.ya9_c00246{bottom:410.745000px;}
.yaa_c00246{bottom:411.630000px;}
.ya6_c00246{bottom:411.825000px;}
.ya7_c00246{bottom:412.905000px;}
.ya8_c00246{bottom:413.970000px;}
.ya4_c00246{bottom:427.905000px;}
.ya5_c00246{bottom:428.970000px;}
.ya2_c00246{bottom:430.245000px;}
.ya1_c00246{bottom:431.130000px;}
.y9f_c00246{bottom:431.325000px;}
.ya3_c00246{bottom:431.970000px;}
.ya0_c00246{bottom:432.405000px;}
.y9e_c00246{bottom:449.745000px;}
.y9d_c00246{bottom:450.825000px;}
.y9c_c00246{bottom:451.905000px;}
.y98_c00246{bottom:468.405000px;}
.y97_c00246{bottom:469.245000px;}
.y9b_c00246{bottom:470.130000px;}
.y96_c00246{bottom:470.745000px;}
.y95_c00246{bottom:471.405000px;}
.y99_c00246{bottom:471.630000px;}
.y9a_c00246{bottom:472.470000px;}
.y94_c00246{bottom:488.745000px;}
.y91_c00246{bottom:490.245000px;}
.y93_c00246{bottom:490.905000px;}
.y92_c00246{bottom:491.970000px;}
.y90_c00246{bottom:492.405000px;}
.y8c_c00246{bottom:509.745000px;}
.y8d_c00246{bottom:510.405000px;}
.y8e_c00246{bottom:510.630000px;}
.y8f_c00246{bottom:511.470000px;}
.y8b_c00246{bottom:511.905000px;}
.y86_c00246{bottom:528.825000px;}
.y87_c00246{bottom:529.245000px;}
.y88_c00246{bottom:530.130000px;}
.y8a_c00246{bottom:530.970000px;}
.y89_c00246{bottom:531.405000px;}
.y83_c00246{bottom:548.745000px;}
.y85_c00246{bottom:549.630000px;}
.y84_c00246{bottom:550.905000px;}
.y82_c00246{bottom:565.905000px;}
.y7d_c00246{bottom:567.405000px;}
.y81_c00246{bottom:568.245000px;}
.y7e_c00246{bottom:570.405000px;}
.y80_c00246{bottom:570.630000px;}
.y7f_c00246{bottom:571.470000px;}
.y7b_c00246{bottom:586.905000px;}
.y7a_c00246{bottom:587.745000px;}
.y7c_c00246{bottom:588.630000px;}
.y78_c00246{bottom:589.905000px;}
.y79_c00246{bottom:590.970000px;}
.y77_c00246{bottom:607.245000px;}
.y73_c00246{bottom:609.405000px;}
.y76_c00246{bottom:609.630000px;}
.y75_c00246{bottom:610.905000px;}
.y74_c00246{bottom:610.920000px;}
.y71_c00246{bottom:628.245000px;}
.y70_c00246{bottom:629.130000px;}
.y72_c00246{bottom:630.405000px;}
.y6f_c00246{bottom:645.405000px;}
.y6e_c00246{bottom:646.470000px;}
.y6c_c00246{bottom:646.905000px;}
.y6a_c00246{bottom:647.745000px;}
.y68_c00246{bottom:647.970000px;}
.y6d_c00246{bottom:648.630000px;}
.y69_c00246{bottom:648.825000px;}
.y6b_c00246{bottom:649.905000px;}
.y62_c00246{bottom:664.905000px;}
.y63_c00246{bottom:667.245000px;}
.y64_c00246{bottom:668.130000px;}
.y66_c00246{bottom:668.325000px;}
.y67_c00246{bottom:668.970000px;}
.y65_c00246{bottom:669.405000px;}
.y5d_c00246{bottom:685.905000px;}
.y5c_c00246{bottom:686.745000px;}
.y61_c00246{bottom:686.970000px;}
.y60_c00246{bottom:687.825000px;}
.y5f_c00246{bottom:688.905000px;}
.y5e_c00246{bottom:689.130000px;}
.y55_c00246{bottom:705.405000px;}
.y56_c00246{bottom:706.245000px;}
.y58_c00246{bottom:707.325000px;}
.y57_c00246{bottom:707.745000px;}
.y5a_c00246{bottom:708.405000px;}
.y59_c00246{bottom:708.630000px;}
.y5b_c00246{bottom:708.825000px;}
.y51_c00246{bottom:724.905000px;}
.y53_c00246{bottom:725.745000px;}
.y52_c00246{bottom:725.970000px;}
.y50_c00246{bottom:726.405000px;}
.y4f_c00246{bottom:726.825000px;}
.y4e_c00246{bottom:727.905000px;}
.y54_c00246{bottom:729.420000px;}
.y4c_c00246{bottom:745.905000px;}
.y4b_c00246{bottom:746.745000px;}
.y4a_c00246{bottom:747.630000px;}
.y4d_c00246{bottom:747.825000px;}
.y49_c00246{bottom:748.905000px;}
.y46_c00246{bottom:766.245000px;}
.y48_c00246{bottom:767.130000px;}
.y47_c00246{bottom:768.405000px;}
.y42_c00246{bottom:785.745000px;}
.y44_c00246{bottom:786.630000px;}
.y45_c00246{bottom:786.825000px;}
.y43_c00246{bottom:787.470000px;}
.y41_c00246{bottom:787.905000px;}
.y3f_c00246{bottom:803.970000px;}
.y40_c00246{bottom:806.130000px;}
.y3d_c00246{bottom:807.405000px;}
.y3e_c00246{bottom:808.470000px;}
.y3b_c00246{bottom:824.745000px;}
.y3c_c00246{bottom:825.630000px;}
.y3a_c00246{bottom:826.905000px;}
.y39_c00246{bottom:845.745000px;}
.y36_c00246{bottom:846.405000px;}
.y38_c00246{bottom:846.630000px;}
.y37_c00246{bottom:847.905000px;}
.y33_c00246{bottom:865.905000px;}
.y32_c00246{bottom:866.130000px;}
.y34_c00246{bottom:866.970000px;}
.y35_c00246{bottom:867.405000px;}
.y31_c00246{bottom:882.405000px;}
.y30_c00246{bottom:883.245000px;}
.y2e_c00246{bottom:884.745000px;}
.y2f_c00246{bottom:885.630000px;}
.y2d_c00246{bottom:886.470000px;}
.y2c_c00246{bottom:886.905000px;}
.y29_c00246{bottom:901.905000px;}
.y2b_c00246{bottom:904.245000px;}
.y28_c00246{bottom:905.130000px;}
.y2a_c00246{bottom:906.405000px;}
.y27_c00246{bottom:923.325000px;}
.y26_c00246{bottom:924.630000px;}
.y24_c00246{bottom:924.825000px;}
.y23_c00246{bottom:925.470000px;}
.y25_c00246{bottom:925.905000px;}
.y1f_c00246{bottom:943.245000px;}
.y1d_c00246{bottom:944.130000px;}
.y21_c00246{bottom:944.325000px;}
.y22_c00246{bottom:944.970000px;}
.y1e_c00246{bottom:945.405000px;}
.y20_c00246{bottom:946.470000px;}
.y19_c00246{bottom:962.745000px;}
.y1b_c00246{bottom:962.970000px;}
.y18_c00246{bottom:964.470000px;}
.y1a_c00246{bottom:964.905000px;}
.y1c_c00246{bottom:965.130000px;}
.y15_c00246{bottom:981.405000px;}
.y17_c00246{bottom:982.245000px;}
.y13_c00246{bottom:983.325000px;}
.y14_c00246{bottom:984.405000px;}
.y16_c00246{bottom:985.470000px;}
.yf_c00246{bottom:1001.745000px;}
.y11_c00246{bottom:1003.245000px;}
.yd_c00246{bottom:1003.905000px;}
.y12_c00246{bottom:1004.130000px;}
.y10_c00246{bottom:1004.970000px;}
.ye_c00246{bottom:1005.405000px;}
.yb_c00246{bottom:1021.245000px;}
.yc_c00246{bottom:1023.630000px;}
.ya_c00246{bottom:1024.470000px;}
.y7_c00246{bottom:1042.905000px;}
.y9_c00246{bottom:1043.130000px;}
.y8_c00246{bottom:1043.970000px;}
.y4_c00246{bottom:1061.325000px;}
.y6_c00246{bottom:1061.745000px;}
.y5_c00246{bottom:1063.470000px;}
.y3_c00246{bottom:1063.905000px;}
.y2_c00246{bottom:1099.905000px;}
.y1_c00246{bottom:1103.130000px;}
.h6_c00246{height:4.206533px;}
.h1_c00246{height:23.025234px;}
.h7_c00246{height:25.091602px;}
.h4_c00246{height:31.364502px;}
.h2_c00246{height:35.571035px;}
.h3_c00246{height:39.777568px;}
.h5_c00246{height:43.910303px;}
.h0_c00246{height:1335.000000px;}
.w0_c00246{width:880.500000px;}
.x0_c00246{left:0.000000px;}
.x3e_c00246{left:150.000000px;}
.x3_c00246{left:151.500000px;}
.xd3_c00246{left:153.000000px;}
.x109_c00246{left:154.920000px;}
.x27_c00246{left:166.500000px;}
.xda_c00246{left:168.000000px;}
.x86_c00246{left:169.500000px;}
.x3f_c00246{left:172.500000px;}
.x101_c00246{left:175.920000px;}
.x76_c00246{left:177.000000px;}
.xe_c00246{left:178.500000px;}
.xdf_c00246{left:180.420000px;}
.x4_c00246{left:182.580000px;}
.xba_c00246{left:186.000000px;}
.x47_c00246{left:187.920000px;}
.x1d_c00246{left:189.420000px;}
.x5d_c00246{left:190.500000px;}
.x9e_c00246{left:192.000000px;}
.x35_c00246{left:193.500000px;}
.x65_c00246{left:195.000000px;}
.xd0_c00246{left:196.500000px;}
.x28_c00246{left:198.420000px;}
.xdb_c00246{left:200.145000px;}
.x8d_c00246{left:201.420000px;}
.x94_c00246{left:204.420000px;}
.xf_c00246{left:207.000000px;}
.xe4_c00246{left:210.645000px;}
.x48_c00246{left:214.080000px;}
.x87_c00246{left:216.000000px;}
.xfb_c00246{left:219.000000px;}
.x66_c00246{left:220.500000px;}
.x77_c00246{left:223.500000px;}
.xaf_c00246{left:225.000000px;}
.x5e_c00246{left:227.580000px;}
.x9f_c00246{left:229.920000px;}
.xf1_c00246{left:231.000000px;}
.x40_c00246{left:232.500000px;}
.x10_c00246{left:234.000000px;}
.xcc_c00246{left:235.080000px;}
.xc4_c00246{left:237.000000px;}
.x36_c00246{left:238.500000px;}
.x10e_c00246{left:241.500000px;}
.x5_c00246{left:243.000000px;}
.x1e_c00246{left:244.500000px;}
.xe0_c00246{left:245.580000px;}
.x10a_c00246{left:247.500000px;}
.xbb_c00246{left:249.000000px;}
.x67_c00246{left:250.500000px;}
.x55_c00246{left:252.000000px;}
.xcd_c00246{left:253.080000px;}
.x105_c00246{left:255.000000px;}
.xd1_c00246{left:256.500000px;}
.x49_c00246{left:257.580000px;}
.xc3_c00246{left:259.920000px;}
.x70_c00246{left:261.000000px;}
.xa6_c00246{left:262.920000px;}
.x29_c00246{left:265.500000px;}
.x41_c00246{left:268.500000px;}
.x7c_c00246{left:269.580000px;}
.x11_c00246{left:272.580000px;}
.x95_c00246{left:274.500000px;}
.xe5_c00246{left:275.580000px;}
.x4a_c00246{left:277.920000px;}
.xed_c00246{left:280.080000px;}
.x6_c00246{left:281.580000px;}
.xbc_c00246{left:283.500000px;}
.x2a_c00246{left:285.000000px;}
.x5f_c00246{left:286.080000px;}
.x56_c00246{left:289.500000px;}
.xdc_c00246{left:291.000000px;}
.x12_c00246{left:292.500000px;}
.x78_c00246{left:295.500000px;}
.x7d_c00246{left:300.420000px;}
.x88_c00246{left:301.500000px;}
.x57_c00246{left:304.920000px;}
.x13_c00246{left:306.420000px;}
.xdd_c00246{left:307.500000px;}
.x4b_c00246{left:309.420000px;}
.x37_c00246{left:310.500000px;}
.x42_c00246{left:313.920000px;}
.xd2_c00246{left:316.500000px;}
.x1f_c00246{left:318.000000px;}
.xbd_c00246{left:319.080000px;}
.xe9_c00246{left:321.000000px;}
.xe6_c00246{left:322.500000px;}
.x68_c00246{left:324.000000px;}
.xa7_c00246{left:325.500000px;}
.xac_c00246{left:328.500000px;}
.x7_c00246{left:330.420000px;}
.x89_c00246{left:331.500000px;}
.x2b_c00246{left:332.580000px;}
.x7e_c00246{left:336.420000px;}
.xc5_c00246{left:339.420000px;}
.x14_c00246{left:341.580000px;}
.x4c_c00246{left:345.000000px;}
.x38_c00246{left:348.420000px;}
.x69_c00246{left:350.580000px;}
.x96_c00246{left:351.645000px;}
.x2c_c00246{left:352.920000px;}
.xb0_c00246{left:355.500000px;}
.xf6_c00246{left:357.000000px;}
.xf2_c00246{left:358.500000px;}
.x8a_c00246{left:359.580000px;}
.x7f_c00246{left:361.500000px;}
.xa0_c00246{left:363.000000px;}
.x102_c00246{left:364.500000px;}
.x10b_c00246{left:365.580000px;}
.xbe_c00246{left:369.000000px;}
.xa8_c00246{left:370.500000px;}
.x58_c00246{left:373.920000px;}
.x8e_c00246{left:375.000000px;}
.x20_c00246{left:376.500000px;}
.xc6_c00246{left:378.420000px;}
.x2d_c00246{left:380.580000px;}
.x39_c00246{left:385.080000px;}
.x8_c00246{left:388.080000px;}
.xf7_c00246{left:389.355000px;}
.x43_c00246{left:390.420000px;}
.xd4_c00246{left:391.500000px;}
.x6a_c00246{left:393.000000px;}
.xad_c00246{left:394.500000px;}
.xf8_c00246{left:395.580000px;}
.x97_c00246{left:397.080000px;}
.xb5_c00246{left:399.000000px;}
.xa1_c00246{left:403.080000px;}
.x1_c00246{left:404.580000px;}
.xa9_c00246{left:406.500000px;}
.x59_c00246{left:412.500000px;}
.x71_c00246{left:414.000000px;}
.x106_c00246{left:415.500000px;}
.x60_c00246{left:416.580000px;}
.x44_c00246{left:418.920000px;}
.xc7_c00246{left:421.500000px;}
.x4d_c00246{left:424.920000px;}
.xee_c00246{left:427.920000px;}
.x21_c00246{left:430.920000px;}
.xae_c00246{left:434.580000px;}
.x15_c00246{left:436.500000px;}
.xd5_c00246{left:438.000000px;}
.xc8_c00246{left:441.420000px;}
.x10c_c00246{left:442.920000px;}
.x61_c00246{left:447.420000px;}
.x2e_c00246{left:450.000000px;}
.x98_c00246{left:451.080000px;}
.x4e_c00246{left:452.580000px;}
.x8b_c00246{left:456.000000px;}
.x80_c00246{left:459.420000px;}
.xf3_c00246{left:460.500000px;}
.xaa_c00246{left:461.580000px;}
.x8f_c00246{left:463.080000px;}
.xea_c00246{left:465.420000px;}
.xe1_c00246{left:466.500000px;}
.xce_c00246{left:467.580000px;}
.x9_c00246{left:469.500000px;}
.xf9_c00246{left:474.000000px;}
.xfc_c00246{left:475.920000px;}
.x72_c00246{left:477.000000px;}
.x3a_c00246{left:478.500000px;}
.x22_c00246{left:480.000000px;}
.xa2_c00246{left:481.080000px;}
.x4f_c00246{left:484.080000px;}
.xef_c00246{left:486.000000px;}
.x10f_c00246{left:487.500000px;}
.x16_c00246{left:489.000000px;}
.xd6_c00246{left:490.080000px;}
.x73_c00246{left:491.580000px;}
.xe7_c00246{left:493.080000px;}
.xff_c00246{left:495.000000px;}
.x6b_c00246{left:496.500000px;}
.x81_c00246{left:501.000000px;}
.x2f_c00246{left:502.500000px;}
.x50_c00246{left:504.420000px;}
.x8c_c00246{left:505.500000px;}
.xf4_c00246{left:511.080000px;}
.x62_c00246{left:513.000000px;}
.x3b_c00246{left:514.500000px;}
.x23_c00246{left:516.000000px;}
.x82_c00246{left:517.500000px;}
.x5a_c00246{left:519.000000px;}
.x17_c00246{left:520.500000px;}
.xfd_c00246{left:522.000000px;}
.x99_c00246{left:525.000000px;}
.xb1_c00246{left:526.500000px;}
.x100_c00246{left:527.580000px;}
.x51_c00246{left:532.920000px;}
.xe2_c00246{left:537.000000px;}
.xa_c00246{left:538.500000px;}
.x5b_c00246{left:539.580000px;}
.xb2_c00246{left:541.500000px;}
.x6c_c00246{left:543.420000px;}
.xb6_c00246{left:544.920000px;}
.xd7_c00246{left:547.275000px;}
.x9a_c00246{left:548.580000px;}
.xf5_c00246{left:552.000000px;}
.xa3_c00246{left:553.500000px;}
.x24_c00246{left:555.000000px;}
.x90_c00246{left:556.920000px;}
.xe3_c00246{left:558.000000px;}
.x18_c00246{left:559.080000px;}
.x79_c00246{left:561.000000px;}
.x52_c00246{left:563.580000px;}
.xfe_c00246{left:565.500000px;}
.x103_c00246{left:567.000000px;}
.x30_c00246{left:568.500000px;}
.x25_c00246{left:573.000000px;}
.x10d_c00246{left:574.500000px;}
.xb_c00246{left:576.420000px;}
.x19_c00246{left:577.500000px;}
.x74_c00246{left:579.000000px;}
.x6d_c00246{left:580.500000px;}
.x83_c00246{left:582.420000px;}
.x31_c00246{left:585.000000px;}
.xb3_c00246{left:586.275000px;}
.xa4_c00246{left:588.000000px;}
.x63_c00246{left:589.500000px;}
.xb7_c00246{left:591.000000px;}
.x9b_c00246{left:592.920000px;}
.xbf_c00246{left:594.000000px;}
.x91_c00246{left:595.500000px;}
.x53_c00246{left:597.420000px;}
.x26_c00246{left:598.920000px;}
.x5c_c00246{left:601.080000px;}
.xc9_c00246{left:603.000000px;}
.x1a_c00246{left:606.420000px;}
.xd8_c00246{left:612.000000px;}
.x107_c00246{left:613.080000px;}
.x84_c00246{left:615.420000px;}
.xeb_c00246{left:618.000000px;}
.x92_c00246{left:619.080000px;}
.x75_c00246{left:621.000000px;}
.x7a_c00246{left:622.920000px;}
.x32_c00246{left:624.000000px;}
.x3c_c00246{left:625.500000px;}
.xb4_c00246{left:627.000000px;}
.x6e_c00246{left:628.920000px;}
.x45_c00246{left:630.420000px;}
.x64_c00246{left:633.420000px;}
.x104_c00246{left:634.500000px;}
.xc0_c00246{left:636.000000px;}
.xde_c00246{left:640.500000px;}
.x85_c00246{left:641.580000px;}
.x9c_c00246{left:644.580000px;}
.xcf_c00246{left:646.500000px;}
.x7b_c00246{left:648.000000px;}
.xc_c00246{left:654.000000px;}
.xc1_c00246{left:655.500000px;}
.xec_c00246{left:657.420000px;}
.x1b_c00246{left:660.000000px;}
.xb8_c00246{left:661.080000px;}
.x93_c00246{left:663.000000px;}
.x108_c00246{left:664.500000px;}
.x46_c00246{left:672.420000px;}
.x3d_c00246{left:675.000000px;}
.xc2_c00246{left:676.080000px;}
.x9d_c00246{left:677.775000px;}
.xab_c00246{left:681.420000px;}
.x33_c00246{left:682.500000px;}
.xca_c00246{left:684.000000px;}
.xd_c00246{left:686.580000px;}
.xd9_c00246{left:688.080000px;}
.xb9_c00246{left:690.000000px;}
.xa5_c00246{left:697.500000px;}
.xf0_c00246{left:699.420000px;}
.x2_c00246{left:703.080000px;}
.xfa_c00246{left:704.355000px;}
.x34_c00246{left:705.420000px;}
.x54_c00246{left:706.500000px;}
.xcb_c00246{left:708.420000px;}
.xe8_c00246{left:710.580000px;}
.x1c_c00246{left:714.000000px;}
.x6f_c00246{left:715.080000px;}
.x110_c00246{left:718.080000px;}
@media print{
.v0_c00246{vertical-align:0.000000pt;}
.ls0_c00246{letter-spacing:0.000000pt;}
.ws0_c00246{word-spacing:-15.012693pt;}
.ws1_c00246{word-spacing:0.000000pt;}
._0_c00246{width:5.075934pt;}
.fs5_c00246{font-size:3.040000pt;}
.fs0_c00246{font-size:16.640000pt;}
.fs6_c00246{font-size:18.133333pt;}
.fs3_c00246{font-size:22.666667pt;}
.fs1_c00246{font-size:25.706667pt;}
.fs2_c00246{font-size:28.746667pt;}
.fs4_c00246{font-size:31.733333pt;}
.y0_c00246{bottom:0.000000pt;}
.yd0_c00246{bottom:223.026667pt;}
.yd1_c00246{bottom:223.773333pt;}
.ycd_c00246{bottom:224.733333pt;}
.yce_c00246{bottom:224.933333pt;}
.ycf_c00246{bottom:225.693333pt;}
.yd2_c00246{bottom:225.893333pt;}
.ycc_c00246{bottom:227.026667pt;}
.yc8_c00246{bottom:241.106667pt;}
.yca_c00246{bottom:242.066667pt;}
.ycb_c00246{bottom:243.226667pt;}
.yc9_c00246{bottom:243.973333pt;}
.yc7_c00246{bottom:244.360000pt;}
.yc6_c00246{bottom:259.773333pt;}
.yc5_c00246{bottom:260.360000pt;}
.yc3_c00246{bottom:260.560000pt;}
.yc2_c00246{bottom:260.733333pt;}
.yc4_c00246{bottom:261.306667pt;}
.yc1_c00246{bottom:261.693333pt;}
.yc0_c00246{bottom:277.893333pt;}
.ybf_c00246{bottom:278.066667pt;}
.ybe_c00246{bottom:279.026667pt;}
.ybd_c00246{bottom:279.226667pt;}
.yb8_c00246{bottom:294.440000pt;}
.ybc_c00246{bottom:295.026667pt;}
.ybb_c00246{bottom:295.226667pt;}
.yb9_c00246{bottom:295.400000pt;}
.yb7_c00246{bottom:296.360000pt;}
.yba_c00246{bottom:296.560000pt;}
.yb6_c00246{bottom:311.773333pt;}
.yb5_c00246{bottom:312.733333pt;}
.yb3_c00246{bottom:313.693333pt;}
.yb4_c00246{bottom:313.893333pt;}
.yb2_c00246{bottom:329.306667pt;}
.yb1_c00246{bottom:330.066667pt;}
.yaf_c00246{bottom:330.266667pt;}
.yb0_c00246{bottom:331.026667pt;}
.yad_c00246{bottom:347.773333pt;}
.yac_c00246{bottom:348.733333pt;}
.yae_c00246{bottom:349.306667pt;}
.yab_c00246{bottom:349.693333pt;}
.ya9_c00246{bottom:365.106667pt;}
.yaa_c00246{bottom:365.893333pt;}
.ya6_c00246{bottom:366.066667pt;}
.ya7_c00246{bottom:367.026667pt;}
.ya8_c00246{bottom:367.973333pt;}
.ya4_c00246{bottom:380.360000pt;}
.ya5_c00246{bottom:381.306667pt;}
.ya2_c00246{bottom:382.440000pt;}
.ya1_c00246{bottom:383.226667pt;}
.y9f_c00246{bottom:383.400000pt;}
.ya3_c00246{bottom:383.973333pt;}
.ya0_c00246{bottom:384.360000pt;}
.y9e_c00246{bottom:399.773333pt;}
.y9d_c00246{bottom:400.733333pt;}
.y9c_c00246{bottom:401.693333pt;}
.y98_c00246{bottom:416.360000pt;}
.y97_c00246{bottom:417.106667pt;}
.y9b_c00246{bottom:417.893333pt;}
.y96_c00246{bottom:418.440000pt;}
.y95_c00246{bottom:419.026667pt;}
.y99_c00246{bottom:419.226667pt;}
.y9a_c00246{bottom:419.973333pt;}
.y94_c00246{bottom:434.440000pt;}
.y91_c00246{bottom:435.773333pt;}
.y93_c00246{bottom:436.360000pt;}
.y92_c00246{bottom:437.306667pt;}
.y90_c00246{bottom:437.693333pt;}
.y8c_c00246{bottom:453.106667pt;}
.y8d_c00246{bottom:453.693333pt;}
.y8e_c00246{bottom:453.893333pt;}
.y8f_c00246{bottom:454.640000pt;}
.y8b_c00246{bottom:455.026667pt;}
.y86_c00246{bottom:470.066667pt;}
.y87_c00246{bottom:470.440000pt;}
.y88_c00246{bottom:471.226667pt;}
.y8a_c00246{bottom:471.973333pt;}
.y89_c00246{bottom:472.360000pt;}
.y83_c00246{bottom:487.773333pt;}
.y85_c00246{bottom:488.560000pt;}
.y84_c00246{bottom:489.693333pt;}
.y82_c00246{bottom:503.026667pt;}
.y7d_c00246{bottom:504.360000pt;}
.y81_c00246{bottom:505.106667pt;}
.y7e_c00246{bottom:507.026667pt;}
.y80_c00246{bottom:507.226667pt;}
.y7f_c00246{bottom:507.973333pt;}
.y7b_c00246{bottom:521.693333pt;}
.y7a_c00246{bottom:522.440000pt;}
.y7c_c00246{bottom:523.226667pt;}
.y78_c00246{bottom:524.360000pt;}
.y79_c00246{bottom:525.306667pt;}
.y77_c00246{bottom:539.773333pt;}
.y73_c00246{bottom:541.693333pt;}
.y76_c00246{bottom:541.893333pt;}
.y75_c00246{bottom:543.026667pt;}
.y74_c00246{bottom:543.040000pt;}
.y71_c00246{bottom:558.440000pt;}
.y70_c00246{bottom:559.226667pt;}
.y72_c00246{bottom:560.360000pt;}
.y6f_c00246{bottom:573.693333pt;}
.y6e_c00246{bottom:574.640000pt;}
.y6c_c00246{bottom:575.026667pt;}
.y6a_c00246{bottom:575.773333pt;}
.y68_c00246{bottom:575.973333pt;}
.y6d_c00246{bottom:576.560000pt;}
.y69_c00246{bottom:576.733333pt;}
.y6b_c00246{bottom:577.693333pt;}
.y62_c00246{bottom:591.026667pt;}
.y63_c00246{bottom:593.106667pt;}
.y64_c00246{bottom:593.893333pt;}
.y66_c00246{bottom:594.066667pt;}
.y67_c00246{bottom:594.640000pt;}
.y65_c00246{bottom:595.026667pt;}
.y5d_c00246{bottom:609.693333pt;}
.y5c_c00246{bottom:610.440000pt;}
.y61_c00246{bottom:610.640000pt;}
.y60_c00246{bottom:611.400000pt;}
.y5f_c00246{bottom:612.360000pt;}
.y5e_c00246{bottom:612.560000pt;}
.y55_c00246{bottom:627.026667pt;}
.y56_c00246{bottom:627.773333pt;}
.y58_c00246{bottom:628.733333pt;}
.y57_c00246{bottom:629.106667pt;}
.y5a_c00246{bottom:629.693333pt;}
.y59_c00246{bottom:629.893333pt;}
.y5b_c00246{bottom:630.066667pt;}
.y51_c00246{bottom:644.360000pt;}
.y53_c00246{bottom:645.106667pt;}
.y52_c00246{bottom:645.306667pt;}
.y50_c00246{bottom:645.693333pt;}
.y4f_c00246{bottom:646.066667pt;}
.y4e_c00246{bottom:647.026667pt;}
.y54_c00246{bottom:648.373333pt;}
.y4c_c00246{bottom:663.026667pt;}
.y4b_c00246{bottom:663.773333pt;}
.y4a_c00246{bottom:664.560000pt;}
.y4d_c00246{bottom:664.733333pt;}
.y49_c00246{bottom:665.693333pt;}
.y46_c00246{bottom:681.106667pt;}
.y48_c00246{bottom:681.893333pt;}
.y47_c00246{bottom:683.026667pt;}
.y42_c00246{bottom:698.440000pt;}
.y44_c00246{bottom:699.226667pt;}
.y45_c00246{bottom:699.400000pt;}
.y43_c00246{bottom:699.973333pt;}
.y41_c00246{bottom:700.360000pt;}
.y3f_c00246{bottom:714.640000pt;}
.y40_c00246{bottom:716.560000pt;}
.y3d_c00246{bottom:717.693333pt;}
.y3e_c00246{bottom:718.640000pt;}
.y3b_c00246{bottom:733.106667pt;}
.y3c_c00246{bottom:733.893333pt;}
.y3a_c00246{bottom:735.026667pt;}
.y39_c00246{bottom:751.773333pt;}
.y36_c00246{bottom:752.360000pt;}
.y38_c00246{bottom:752.560000pt;}
.y37_c00246{bottom:753.693333pt;}
.y33_c00246{bottom:769.693333pt;}
.y32_c00246{bottom:769.893333pt;}
.y34_c00246{bottom:770.640000pt;}
.y35_c00246{bottom:771.026667pt;}
.y31_c00246{bottom:784.360000pt;}
.y30_c00246{bottom:785.106667pt;}
.y2e_c00246{bottom:786.440000pt;}
.y2f_c00246{bottom:787.226667pt;}
.y2d_c00246{bottom:787.973333pt;}
.y2c_c00246{bottom:788.360000pt;}
.y29_c00246{bottom:801.693333pt;}
.y2b_c00246{bottom:803.773333pt;}
.y28_c00246{bottom:804.560000pt;}
.y2a_c00246{bottom:805.693333pt;}
.y27_c00246{bottom:820.733333pt;}
.y26_c00246{bottom:821.893333pt;}
.y24_c00246{bottom:822.066667pt;}
.y23_c00246{bottom:822.640000pt;}
.y25_c00246{bottom:823.026667pt;}
.y1f_c00246{bottom:838.440000pt;}
.y1d_c00246{bottom:839.226667pt;}
.y21_c00246{bottom:839.400000pt;}
.y22_c00246{bottom:839.973333pt;}
.y1e_c00246{bottom:840.360000pt;}
.y20_c00246{bottom:841.306667pt;}
.y19_c00246{bottom:855.773333pt;}
.y1b_c00246{bottom:855.973333pt;}
.y18_c00246{bottom:857.306667pt;}
.y1a_c00246{bottom:857.693333pt;}
.y1c_c00246{bottom:857.893333pt;}
.y15_c00246{bottom:872.360000pt;}
.y17_c00246{bottom:873.106667pt;}
.y13_c00246{bottom:874.066667pt;}
.y14_c00246{bottom:875.026667pt;}
.y16_c00246{bottom:875.973333pt;}
.yf_c00246{bottom:890.440000pt;}
.y11_c00246{bottom:891.773333pt;}
.yd_c00246{bottom:892.360000pt;}
.y12_c00246{bottom:892.560000pt;}
.y10_c00246{bottom:893.306667pt;}
.ye_c00246{bottom:893.693333pt;}
.yb_c00246{bottom:907.773333pt;}
.yc_c00246{bottom:909.893333pt;}
.ya_c00246{bottom:910.640000pt;}
.y7_c00246{bottom:927.026667pt;}
.y9_c00246{bottom:927.226667pt;}
.y8_c00246{bottom:927.973333pt;}
.y4_c00246{bottom:943.400000pt;}
.y6_c00246{bottom:943.773333pt;}
.y5_c00246{bottom:945.306667pt;}
.y3_c00246{bottom:945.693333pt;}
.y2_c00246{bottom:977.693333pt;}
.y1_c00246{bottom:980.560000pt;}
.h6_c00246{height:3.739141pt;}
.h1_c00246{height:20.466875pt;}
.h7_c00246{height:22.303646pt;}
.h4_c00246{height:27.879557pt;}
.h2_c00246{height:31.618698pt;}
.h3_c00246{height:35.357839pt;}
.h5_c00246{height:39.031380pt;}
.h0_c00246{height:1186.666667pt;}
.w0_c00246{width:782.666667pt;}
.x0_c00246{left:0.000000pt;}
.x3e_c00246{left:133.333333pt;}
.x3_c00246{left:134.666667pt;}
.xd3_c00246{left:136.000000pt;}
.x109_c00246{left:137.706667pt;}
.x27_c00246{left:148.000000pt;}
.xda_c00246{left:149.333333pt;}
.x86_c00246{left:150.666667pt;}
.x3f_c00246{left:153.333333pt;}
.x101_c00246{left:156.373333pt;}
.x76_c00246{left:157.333333pt;}
.xe_c00246{left:158.666667pt;}
.xdf_c00246{left:160.373333pt;}
.x4_c00246{left:162.293333pt;}
.xba_c00246{left:165.333333pt;}
.x47_c00246{left:167.040000pt;}
.x1d_c00246{left:168.373333pt;}
.x5d_c00246{left:169.333333pt;}
.x9e_c00246{left:170.666667pt;}
.x35_c00246{left:172.000000pt;}
.x65_c00246{left:173.333333pt;}
.xd0_c00246{left:174.666667pt;}
.x28_c00246{left:176.373333pt;}
.xdb_c00246{left:177.906667pt;}
.x8d_c00246{left:179.040000pt;}
.x94_c00246{left:181.706667pt;}
.xf_c00246{left:184.000000pt;}
.xe4_c00246{left:187.240000pt;}
.x48_c00246{left:190.293333pt;}
.x87_c00246{left:192.000000pt;}
.xfb_c00246{left:194.666667pt;}
.x66_c00246{left:196.000000pt;}
.x77_c00246{left:198.666667pt;}
.xaf_c00246{left:200.000000pt;}
.x5e_c00246{left:202.293333pt;}
.x9f_c00246{left:204.373333pt;}
.xf1_c00246{left:205.333333pt;}
.x40_c00246{left:206.666667pt;}
.x10_c00246{left:208.000000pt;}
.xcc_c00246{left:208.960000pt;}
.xc4_c00246{left:210.666667pt;}
.x36_c00246{left:212.000000pt;}
.x10e_c00246{left:214.666667pt;}
.x5_c00246{left:216.000000pt;}
.x1e_c00246{left:217.333333pt;}
.xe0_c00246{left:218.293333pt;}
.x10a_c00246{left:220.000000pt;}
.xbb_c00246{left:221.333333pt;}
.x67_c00246{left:222.666667pt;}
.x55_c00246{left:224.000000pt;}
.xcd_c00246{left:224.960000pt;}
.x105_c00246{left:226.666667pt;}
.xd1_c00246{left:228.000000pt;}
.x49_c00246{left:228.960000pt;}
.xc3_c00246{left:231.040000pt;}
.x70_c00246{left:232.000000pt;}
.xa6_c00246{left:233.706667pt;}
.x29_c00246{left:236.000000pt;}
.x41_c00246{left:238.666667pt;}
.x7c_c00246{left:239.626667pt;}
.x11_c00246{left:242.293333pt;}
.x95_c00246{left:244.000000pt;}
.xe5_c00246{left:244.960000pt;}
.x4a_c00246{left:247.040000pt;}
.xed_c00246{left:248.960000pt;}
.x6_c00246{left:250.293333pt;}
.xbc_c00246{left:252.000000pt;}
.x2a_c00246{left:253.333333pt;}
.x5f_c00246{left:254.293333pt;}
.x56_c00246{left:257.333333pt;}
.xdc_c00246{left:258.666667pt;}
.x12_c00246{left:260.000000pt;}
.x78_c00246{left:262.666667pt;}
.x7d_c00246{left:267.040000pt;}
.x88_c00246{left:268.000000pt;}
.x57_c00246{left:271.040000pt;}
.x13_c00246{left:272.373333pt;}
.xdd_c00246{left:273.333333pt;}
.x4b_c00246{left:275.040000pt;}
.x37_c00246{left:276.000000pt;}
.x42_c00246{left:279.040000pt;}
.xd2_c00246{left:281.333333pt;}
.x1f_c00246{left:282.666667pt;}
.xbd_c00246{left:283.626667pt;}
.xe9_c00246{left:285.333333pt;}
.xe6_c00246{left:286.666667pt;}
.x68_c00246{left:288.000000pt;}
.xa7_c00246{left:289.333333pt;}
.xac_c00246{left:292.000000pt;}
.x7_c00246{left:293.706667pt;}
.x89_c00246{left:294.666667pt;}
.x2b_c00246{left:295.626667pt;}
.x7e_c00246{left:299.040000pt;}
.xc5_c00246{left:301.706667pt;}
.x14_c00246{left:303.626667pt;}
.x4c_c00246{left:306.666667pt;}
.x38_c00246{left:309.706667pt;}
.x69_c00246{left:311.626667pt;}
.x96_c00246{left:312.573333pt;}
.x2c_c00246{left:313.706667pt;}
.xb0_c00246{left:316.000000pt;}
.xf6_c00246{left:317.333333pt;}
.xf2_c00246{left:318.666667pt;}
.x8a_c00246{left:319.626667pt;}
.x7f_c00246{left:321.333333pt;}
.xa0_c00246{left:322.666667pt;}
.x102_c00246{left:324.000000pt;}
.x10b_c00246{left:324.960000pt;}
.xbe_c00246{left:328.000000pt;}
.xa8_c00246{left:329.333333pt;}
.x58_c00246{left:332.373333pt;}
.x8e_c00246{left:333.333333pt;}
.x20_c00246{left:334.666667pt;}
.xc6_c00246{left:336.373333pt;}
.x2d_c00246{left:338.293333pt;}
.x39_c00246{left:342.293333pt;}
.x8_c00246{left:344.960000pt;}
.xf7_c00246{left:346.093333pt;}
.x43_c00246{left:347.040000pt;}
.xd4_c00246{left:348.000000pt;}
.x6a_c00246{left:349.333333pt;}
.xad_c00246{left:350.666667pt;}
.xf8_c00246{left:351.626667pt;}
.x97_c00246{left:352.960000pt;}
.xb5_c00246{left:354.666667pt;}
.xa1_c00246{left:358.293333pt;}
.x1_c00246{left:359.626667pt;}
.xa9_c00246{left:361.333333pt;}
.x59_c00246{left:366.666667pt;}
.x71_c00246{left:368.000000pt;}
.x106_c00246{left:369.333333pt;}
.x60_c00246{left:370.293333pt;}
.x44_c00246{left:372.373333pt;}
.xc7_c00246{left:374.666667pt;}
.x4d_c00246{left:377.706667pt;}
.xee_c00246{left:380.373333pt;}
.x21_c00246{left:383.040000pt;}
.xae_c00246{left:386.293333pt;}
.x15_c00246{left:388.000000pt;}
.xd5_c00246{left:389.333333pt;}
.xc8_c00246{left:392.373333pt;}
.x10c_c00246{left:393.706667pt;}
.x61_c00246{left:397.706667pt;}
.x2e_c00246{left:400.000000pt;}
.x98_c00246{left:400.960000pt;}
.x4e_c00246{left:402.293333pt;}
.x8b_c00246{left:405.333333pt;}
.x80_c00246{left:408.373333pt;}
.xf3_c00246{left:409.333333pt;}
.xaa_c00246{left:410.293333pt;}
.x8f_c00246{left:411.626667pt;}
.xea_c00246{left:413.706667pt;}
.xe1_c00246{left:414.666667pt;}
.xce_c00246{left:415.626667pt;}
.x9_c00246{left:417.333333pt;}
.xf9_c00246{left:421.333333pt;}
.xfc_c00246{left:423.040000pt;}
.x72_c00246{left:424.000000pt;}
.x3a_c00246{left:425.333333pt;}
.x22_c00246{left:426.666667pt;}
.xa2_c00246{left:427.626667pt;}
.x4f_c00246{left:430.293333pt;}
.xef_c00246{left:432.000000pt;}
.x10f_c00246{left:433.333333pt;}
.x16_c00246{left:434.666667pt;}
.xd6_c00246{left:435.626667pt;}
.x73_c00246{left:436.960000pt;}
.xe7_c00246{left:438.293333pt;}
.xff_c00246{left:440.000000pt;}
.x6b_c00246{left:441.333333pt;}
.x81_c00246{left:445.333333pt;}
.x2f_c00246{left:446.666667pt;}
.x50_c00246{left:448.373333pt;}
.x8c_c00246{left:449.333333pt;}
.xf4_c00246{left:454.293333pt;}
.x62_c00246{left:456.000000pt;}
.x3b_c00246{left:457.333333pt;}
.x23_c00246{left:458.666667pt;}
.x82_c00246{left:460.000000pt;}
.x5a_c00246{left:461.333333pt;}
.x17_c00246{left:462.666667pt;}
.xfd_c00246{left:464.000000pt;}
.x99_c00246{left:466.666667pt;}
.xb1_c00246{left:468.000000pt;}
.x100_c00246{left:468.960000pt;}
.x51_c00246{left:473.706667pt;}
.xe2_c00246{left:477.333333pt;}
.xa_c00246{left:478.666667pt;}
.x5b_c00246{left:479.626667pt;}
.xb2_c00246{left:481.333333pt;}
.x6c_c00246{left:483.040000pt;}
.xb6_c00246{left:484.373333pt;}
.xd7_c00246{left:486.466667pt;}
.x9a_c00246{left:487.626667pt;}
.xf5_c00246{left:490.666667pt;}
.xa3_c00246{left:492.000000pt;}
.x24_c00246{left:493.333333pt;}
.x90_c00246{left:495.040000pt;}
.xe3_c00246{left:496.000000pt;}
.x18_c00246{left:496.960000pt;}
.x79_c00246{left:498.666667pt;}
.x52_c00246{left:500.960000pt;}
.xfe_c00246{left:502.666667pt;}
.x103_c00246{left:504.000000pt;}
.x30_c00246{left:505.333333pt;}
.x25_c00246{left:509.333333pt;}
.x10d_c00246{left:510.666667pt;}
.xb_c00246{left:512.373333pt;}
.x19_c00246{left:513.333333pt;}
.x74_c00246{left:514.666667pt;}
.x6d_c00246{left:516.000000pt;}
.x83_c00246{left:517.706667pt;}
.x31_c00246{left:520.000000pt;}
.xb3_c00246{left:521.133333pt;}
.xa4_c00246{left:522.666667pt;}
.x63_c00246{left:524.000000pt;}
.xb7_c00246{left:525.333333pt;}
.x9b_c00246{left:527.040000pt;}
.xbf_c00246{left:528.000000pt;}
.x91_c00246{left:529.333333pt;}
.x53_c00246{left:531.040000pt;}
.x26_c00246{left:532.373333pt;}
.x5c_c00246{left:534.293333pt;}
.xc9_c00246{left:536.000000pt;}
.x1a_c00246{left:539.040000pt;}
.xd8_c00246{left:544.000000pt;}
.x107_c00246{left:544.960000pt;}
.x84_c00246{left:547.040000pt;}
.xeb_c00246{left:549.333333pt;}
.x92_c00246{left:550.293333pt;}
.x75_c00246{left:552.000000pt;}
.x7a_c00246{left:553.706667pt;}
.x32_c00246{left:554.666667pt;}
.x3c_c00246{left:556.000000pt;}
.xb4_c00246{left:557.333333pt;}
.x6e_c00246{left:559.040000pt;}
.x45_c00246{left:560.373333pt;}
.x64_c00246{left:563.040000pt;}
.x104_c00246{left:564.000000pt;}
.xc0_c00246{left:565.333333pt;}
.xde_c00246{left:569.333333pt;}
.x85_c00246{left:570.293333pt;}
.x9c_c00246{left:572.960000pt;}
.xcf_c00246{left:574.666667pt;}
.x7b_c00246{left:576.000000pt;}
.xc_c00246{left:581.333333pt;}
.xc1_c00246{left:582.666667pt;}
.xec_c00246{left:584.373333pt;}
.x1b_c00246{left:586.666667pt;}
.xb8_c00246{left:587.626667pt;}
.x93_c00246{left:589.333333pt;}
.x108_c00246{left:590.666667pt;}
.x46_c00246{left:597.706667pt;}
.x3d_c00246{left:600.000000pt;}
.xc2_c00246{left:600.960000pt;}
.x9d_c00246{left:602.466667pt;}
.xab_c00246{left:605.706667pt;}
.x33_c00246{left:606.666667pt;}
.xca_c00246{left:608.000000pt;}
.xd_c00246{left:610.293333pt;}
.xd9_c00246{left:611.626667pt;}
.xb9_c00246{left:613.333333pt;}
.xa5_c00246{left:620.000000pt;}
.xf0_c00246{left:621.706667pt;}
.x2_c00246{left:624.960000pt;}
.xfa_c00246{left:626.093333pt;}
.x34_c00246{left:627.040000pt;}
.x54_c00246{left:628.000000pt;}
.xcb_c00246{left:629.706667pt;}
.xe8_c00246{left:631.626667pt;}
.x1c_c00246{left:634.666667pt;}
.x6f_c00246{left:635.626667pt;}
.x110_c00246{left:638.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_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_01c5bed5c16336df7ceca2fb.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:1.688965;font-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_c00247{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.m88_c00247{transform:matrix(0.347866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347866,0.000000,0.000000,0.250000,0,0);}
.mbf_c00247{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m50_c00247{transform:matrix(0.348926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348926,0.000000,0.000000,0.250000,0,0);}
.m4f_c00247{transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);}
.ma8_c00247{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m5e_c00247{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m77_c00247{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m75_c00247{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m45_c00247{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m16_c00247{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m87_c00247{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m1f_c00247{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m38_c00247{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m68_c00247{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.m71_c00247{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m44_c00247{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mc5_c00247{transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);}
.md5_c00247{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m5f_c00247{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m6e_c00247{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.ma_c00247{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m35_c00247{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mb0_c00247{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m85_c00247{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.m13_c00247{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m7a_c00247{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.mb9_c00247{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m3a_c00247{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m63_c00247{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m41_c00247{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.mad_c00247{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m70_c00247{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m31_c00247{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m7_c00247{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m14_c00247{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.ma2_c00247{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m82_c00247{transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);}
.m59_c00247{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.maa_c00247{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m52_c00247{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.me9_c00247{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.mba_c00247{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m8c_c00247{transform:matrix(0.412193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412193,0.000000,0.000000,0.250000,0,0);}
.m61_c00247{transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);}
.m9f_c00247{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.mb5_c00247{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mc8_c00247{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.mb8_c00247{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.mbe_c00247{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mcb_c00247{transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);}
.m62_c00247{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m95_c00247{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m8b_c00247{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m9e_c00247{transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);}
.mb4_c00247{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m2b_c00247{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.mc1_c00247{transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);}
.m9c_c00247{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m15_c00247{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.mbc_c00247{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m8a_c00247{transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);}
.md4_c00247{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m4e_c00247{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.m84_c00247{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m2d_c00247{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mb3_c00247{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m36_c00247{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m25_c00247{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m3e_c00247{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mf_c00247{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.me0_c00247{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.mb2_c00247{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.mc0_c00247{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m32_c00247{transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);}
.m9_c00247{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m40_c00247{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m7b_c00247{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m67_c00247{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m98_c00247{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m7f_c00247{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.m80_c00247{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.m58_c00247{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m7c_c00247{transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);}
.m1c_c00247{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m5c_c00247{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m79_c00247{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m3_c00247{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mc6_c00247{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.mcf_c00247{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m3f_c00247{transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);}
.m9a_c00247{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.mce_c00247{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.m83_c00247{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m12_c00247{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m55_c00247{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.mb1_c00247{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.ma6_c00247{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m86_c00247{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.me_c00247{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m92_c00247{transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);}
.m22_c00247{transform:matrix(0.482353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482353,0.000000,0.000000,0.250000,0,0);}
.m34_c00247{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mcd_c00247{transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);}
.m4_c00247{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m5b_c00247{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m4d_c00247{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.me5_c00247{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m60_c00247{transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);}
.m3c_c00247{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m2_c00247{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.ma0_c00247{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m6f_c00247{transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);}
.m4c_c00247{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_c00247{transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);}
.mdf_c00247{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m6_c00247{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m73_c00247{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m1e_c00247{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mc9_c00247{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.mde_c00247{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m43_c00247{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m26_c00247{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.ma3_c00247{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mda_c00247{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.mc4_c00247{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m5a_c00247{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m24_c00247{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m46_c00247{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m74_c00247{transform:matrix(0.515770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515770,0.000000,0.000000,0.250000,0,0);}
.m49_c00247{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m47_c00247{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.mc_c00247{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.md8_c00247{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m64_c00247{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mdc_c00247{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m4a_c00247{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m76_c00247{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m54_c00247{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m5d_c00247{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m33_c00247{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mcc_c00247{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m29_c00247{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m6c_c00247{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.ma9_c00247{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m18_c00247{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.md6_c00247{transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);}
.mca_c00247{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m6d_c00247{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m28_c00247{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mdb_c00247{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mc2_c00247{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.me6_c00247{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m90_c00247{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mae_c00247{transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);}
.ma5_c00247{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.me4_c00247{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m53_c00247{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.md7_c00247{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.mb6_c00247{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m51_c00247{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m23_c00247{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m65_c00247{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m2e_c00247{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m7e_c00247{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.md_c00247{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m72_c00247{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m56_c00247{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m94_c00247{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m37_c00247{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m78_c00247{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m0_c00247{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.md0_c00247{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.ma7_c00247{transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);}
.m9d_c00247{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m2c_c00247{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.md3_c00247{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.me1_c00247{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m8f_c00247{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m1d_c00247{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.ma4_c00247{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m93_c00247{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m81_c00247{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m66_c00247{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.md2_c00247{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.mbb_c00247{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m42_c00247{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mc3_c00247{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m20_c00247{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m7d_c00247{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.me2_c00247{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.me7_c00247{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m6a_c00247{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m11_c00247{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m17_c00247{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.md1_c00247{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m97_c00247{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m6b_c00247{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mab_c00247{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m91_c00247{transform:matrix(0.594398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594398,0.000000,0.000000,0.250000,0,0);}
.m96_c00247{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m2f_c00247{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);}
.m3b_c00247{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.me8_c00247{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m39_c00247{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m8e_c00247{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.m99_c00247{transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);}
.m3d_c00247{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m1_c00247{transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);}
.m69_c00247{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_c00247{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m19_c00247{transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);}
.mbd_c00247{transform:matrix(0.628235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628235,0.000000,0.000000,0.250000,0,0);}
.mac_c00247{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m30_c00247{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mea_c00247{transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);}
.m5_c00247{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m1a_c00247{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m8_c00247{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m89_c00247{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.ma1_c00247{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m9b_c00247{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.me3_c00247{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mc7_c00247{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m57_c00247{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mdd_c00247{transform:matrix(0.734559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.734559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.734559,0.000000,0.000000,0.250000,0,0);}
.m27_c00247{transform:matrix(0.741186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741186,0.000000,0.000000,0.250000,0,0);}
.m4b_c00247{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mb7_c00247{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m2a_c00247{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m10_c00247{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m1b_c00247{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m48_c00247{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.maf_c00247{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m8d_c00247{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-6.049856px;}
.ws1_c00247{word-spacing:0.000000px;}
.fc0_c00247{color:transparent;}
.fs7_c00247{font-size:3.420000px;}
.fs5_c00247{font-size:18.720000px;}
.fs1_c00247{font-size:20.400000px;}
.fs0_c00247{font-size:25.500000px;}
.fs2_c00247{font-size:28.920000px;}
.fs3_c00247{font-size:32.340000px;}
.fs4_c00247{font-size:35.700000px;}
.fs6_c00247{font-size:39.120000px;}
.y0_c00247{bottom:0.000000px;}
.yb9_c00247{bottom:247.905000px;}
.ybc_c00247{bottom:248.745000px;}
.ybe_c00247{bottom:250.245000px;}
.yb8_c00247{bottom:250.905000px;}
.ybd_c00247{bottom:251.325000px;}
.ybf_c00247{bottom:251.550000px;}
.yba_c00247{bottom:251.970000px;}
.ybb_c00247{bottom:252.405000px;}
.yb6_c00247{bottom:269.325000px;}
.yb4_c00247{bottom:269.745000px;}
.yb2_c00247{bottom:270.405000px;}
.yb5_c00247{bottom:270.630000px;}
.yb3_c00247{bottom:271.905000px;}
.yb7_c00247{bottom:273.405000px;}
.yae_c00247{bottom:289.245000px;}
.yaf_c00247{bottom:290.970000px;}
.yad_c00247{bottom:291.405000px;}
.yb0_c00247{bottom:291.630000px;}
.yb1_c00247{bottom:292.905000px;}
.ya9_c00247{bottom:308.745000px;}
.yab_c00247{bottom:310.050000px;}
.yac_c00247{bottom:310.245000px;}
.ya6_c00247{bottom:310.905000px;}
.yaa_c00247{bottom:311.130000px;}
.ya8_c00247{bottom:312.405000px;}
.ya7_c00247{bottom:312.420000px;}
.ya5_c00247{bottom:330.405000px;}
.ya1_c00247{bottom:346.905000px;}
.ya0_c00247{bottom:349.245000px;}
.ya2_c00247{bottom:351.405000px;}
.ya3_c00247{bottom:352.470000px;}
.ya4_c00247{bottom:352.905000px;}
.y9d_c00247{bottom:368.745000px;}
.y9f_c00247{bottom:369.825000px;}
.y9c_c00247{bottom:370.470000px;}
.y9b_c00247{bottom:370.905000px;}
.y9e_c00247{bottom:371.970000px;}
.y99_c00247{bottom:388.245000px;}
.y98_c00247{bottom:389.325000px;}
.y96_c00247{bottom:390.405000px;}
.y9a_c00247{bottom:391.470000px;}
.y97_c00247{bottom:391.905000px;}
.y90_c00247{bottom:407.745000px;}
.y94_c00247{bottom:408.825000px;}
.y91_c00247{bottom:409.245000px;}
.y93_c00247{bottom:409.905000px;}
.y92_c00247{bottom:410.130000px;}
.y95_c00247{bottom:411.405000px;}
.y8f_c00247{bottom:427.680000px;}
.y8c_c00247{bottom:428.745000px;}
.y8e_c00247{bottom:429.405000px;}
.y8d_c00247{bottom:430.470000px;}
.y8a_c00247{bottom:430.905000px;}
.y8b_c00247{bottom:430.920000px;}
.y87_c00247{bottom:448.245000px;}
.y88_c00247{bottom:449.325000px;}
.y86_c00247{bottom:449.970000px;}
.y89_c00247{bottom:450.405000px;}
.y85_c00247{bottom:467.745000px;}
.y83_c00247{bottom:469.905000px;}
.y84_c00247{bottom:470.130000px;}
.y82_c00247{bottom:486.405000px;}
.y81_c00247{bottom:487.245000px;}
.y80_c00247{bottom:506.325000px;}
.y7c_c00247{bottom:506.745000px;}
.y7f_c00247{bottom:507.405000px;}
.y7e_c00247{bottom:507.825000px;}
.y7d_c00247{bottom:510.420000px;}
.y7b_c00247{bottom:526.680000px;}
.y7a_c00247{bottom:527.745000px;}
.y77_c00247{bottom:545.970000px;}
.y79_c00247{bottom:547.245000px;}
.y78_c00247{bottom:549.405000px;}
.y75_c00247{bottom:566.325000px;}
.y74_c00247{bottom:566.745000px;}
.y76_c00247{bottom:567.825000px;}
.y73_c00247{bottom:568.905000px;}
.y6f_c00247{bottom:584.745000px;}
.y72_c00247{bottom:585.825000px;}
.y70_c00247{bottom:586.245000px;}
.y6e_c00247{bottom:587.130000px;}
.y71_c00247{bottom:588.405000px;}
.y6b_c00247{bottom:604.245000px;}
.y68_c00247{bottom:605.745000px;}
.y6c_c00247{bottom:606.630000px;}
.y69_c00247{bottom:607.470000px;}
.y6a_c00247{bottom:607.905000px;}
.y6d_c00247{bottom:608.970000px;}
.y67_c00247{bottom:625.680000px;}
.y63_c00247{bottom:626.325000px;}
.y65_c00247{bottom:626.745000px;}
.y60_c00247{bottom:626.970000px;}
.y62_c00247{bottom:627.405000px;}
.y66_c00247{bottom:627.630000px;}
.y61_c00247{bottom:628.470000px;}
.y64_c00247{bottom:628.905000px;}
.y5c_c00247{bottom:644.745000px;}
.y5e_c00247{bottom:646.245000px;}
.y5d_c00247{bottom:646.905000px;}
.y5f_c00247{bottom:648.405000px;}
.y57_c00247{bottom:665.325000px;}
.y5b_c00247{bottom:665.745000px;}
.y59_c00247{bottom:666.405000px;}
.y58_c00247{bottom:666.630000px;}
.y56_c00247{bottom:667.470000px;}
.y5a_c00247{bottom:667.905000px;}
.y53_c00247{bottom:684.180000px;}
.y52_c00247{bottom:685.245000px;}
.y55_c00247{bottom:687.405000px;}
.y54_c00247{bottom:687.420000px;}
.y4f_c00247{bottom:711.825000px;}
.y50_c00247{bottom:712.905000px;}
.y51_c00247{bottom:713.130000px;}
.y4e_c00247{bottom:713.970000px;}
.y4d_c00247{bottom:730.470000px;}
.y4b_c00247{bottom:731.325000px;}
.y4c_c00247{bottom:731.550000px;}
.y49_c00247{bottom:732.405000px;}
.y4a_c00247{bottom:732.630000px;}
.y48_c00247{bottom:758.745000px;}
.y47_c00247{bottom:760.905000px;}
.y43_c00247{bottom:802.245000px;}
.y46_c00247{bottom:803.325000px;}
.y45_c00247{bottom:804.405000px;}
.y44_c00247{bottom:805.470000px;}
.y42_c00247{bottom:820.905000px;}
.y40_c00247{bottom:823.245000px;}
.y41_c00247{bottom:824.325000px;}
.y3f_c00247{bottom:825.405000px;}
.y3d_c00247{bottom:842.745000px;}
.y3e_c00247{bottom:843.630000px;}
.y3c_c00247{bottom:844.905000px;}
.y3b_c00247{bottom:861.825000px;}
.y37_c00247{bottom:862.245000px;}
.y39_c00247{bottom:863.325000px;}
.y38_c00247{bottom:864.405000px;}
.y3a_c00247{bottom:865.470000px;}
.y34_c00247{bottom:880.680000px;}
.y33_c00247{bottom:881.745000px;}
.y35_c00247{bottom:882.825000px;}
.y36_c00247{bottom:883.470000px;}
.y32_c00247{bottom:883.905000px;}
.y30_c00247{bottom:900.405000px;}
.y2d_c00247{bottom:901.245000px;}
.y2e_c00247{bottom:903.405000px;}
.y2f_c00247{bottom:903.630000px;}
.y31_c00247{bottom:904.905000px;}
.y2b_c00247{bottom:921.180000px;}
.y2a_c00247{bottom:921.825000px;}
.y29_c00247{bottom:922.245000px;}
.y2c_c00247{bottom:922.905000px;}
.y28_c00247{bottom:923.130000px;}
.y27_c00247{bottom:924.405000px;}
.y26_c00247{bottom:940.245000px;}
.y25_c00247{bottom:940.905000px;}
.y23_c00247{bottom:941.745000px;}
.y24_c00247{bottom:942.630000px;}
.y22_c00247{bottom:943.905000px;}
.y20_c00247{bottom:961.245000px;}
.y21_c00247{bottom:962.970000px;}
.y1f_c00247{bottom:963.405000px;}
.y1a_c00247{bottom:980.325000px;}
.y1c_c00247{bottom:980.745000px;}
.y1e_c00247{bottom:981.630000px;}
.y1b_c00247{bottom:982.905000px;}
.y1d_c00247{bottom:983.970000px;}
.y15_c00247{bottom:1000.245000px;}
.y17_c00247{bottom:1001.130000px;}
.y18_c00247{bottom:1001.970000px;}
.y16_c00247{bottom:1002.405000px;}
.y19_c00247{bottom:1003.470000px;}
.y13_c00247{bottom:1019.325000px;}
.y12_c00247{bottom:1019.745000px;}
.y14_c00247{bottom:1021.470000px;}
.y11_c00247{bottom:1021.905000px;}
.yd_c00247{bottom:1038.405000px;}
.ya_c00247{bottom:1038.825000px;}
.yb_c00247{bottom:1039.245000px;}
.ye_c00247{bottom:1039.470000px;}
.y8_c00247{bottom:1040.130000px;}
.yc_c00247{bottom:1040.325000px;}
.y9_c00247{bottom:1041.405000px;}
.y10_c00247{bottom:1041.630000px;}
.yf_c00247{bottom:1042.470000px;}
.y6_c00247{bottom:1057.905000px;}
.y4_c00247{bottom:1058.325000px;}
.y7_c00247{bottom:1058.745000px;}
.y5_c00247{bottom:1060.470000px;}
.y3_c00247{bottom:1060.905000px;}
.y2_c00247{bottom:1099.050000px;}
.y1_c00247{bottom:1100.970000px;}
.h8_c00247{height:4.206533px;}
.h6_c00247{height:23.025234px;}
.h2_c00247{height:25.091602px;}
.h1_c00247{height:31.364502px;}
.h3_c00247{height:35.571035px;}
.h4_c00247{height:39.777568px;}
.h5_c00247{height:43.910303px;}
.h7_c00247{height:48.116836px;}
.h0_c00247{height:1335.000000px;}
.w0_c00247{width:880.500000px;}
.x0_c00247{left:0.000000px;}
.xe8_c00247{left:149.580000px;}
.x1_c00247{left:151.080000px;}
.x11_c00247{left:153.000000px;}
.x3_c00247{left:154.920000px;}
.xb3_c00247{left:165.420000px;}
.x89_c00247{left:166.500000px;}
.x47_c00247{left:168.000000px;}
.x41_c00247{left:171.000000px;}
.xb9_c00247{left:172.080000px;}
.x95_c00247{left:177.000000px;}
.xaa_c00247{left:187.500000px;}
.x48_c00247{left:189.420000px;}
.x12_c00247{left:192.420000px;}
.x35_c00247{left:195.000000px;}
.x4_c00247{left:196.500000px;}
.xdc_c00247{left:198.000000px;}
.xc3_c00247{left:199.500000px;}
.xb4_c00247{left:201.420000px;}
.x52_c00247{left:205.500000px;}
.x8b_c00247{left:206.580000px;}
.x29_c00247{left:208.500000px;}
.x5b_c00247{left:210.645000px;}
.x6a_c00247{left:215.580000px;}
.xe7_c00247{left:217.920000px;}
.x53_c00247{left:219.000000px;}
.x78_c00247{left:220.080000px;}
.x71_c00247{left:223.500000px;}
.xa5_c00247{left:226.500000px;}
.x13_c00247{left:229.500000px;}
.x20_c00247{left:230.580000px;}
.xba_c00247{left:238.500000px;}
.x36_c00247{left:240.420000px;}
.x42_c00247{left:241.500000px;}
.x49_c00247{left:242.580000px;}
.x5_c00247{left:246.420000px;}
.xdd_c00247{left:249.420000px;}
.x5c_c00247{left:250.500000px;}
.x2a_c00247{left:252.000000px;}
.x54_c00247{left:253.920000px;}
.x96_c00247{left:255.000000px;}
.xb5_c00247{left:256.500000px;}
.xc4_c00247{left:259.500000px;}
.x14_c00247{left:261.000000px;}
.x8c_c00247{left:267.000000px;}
.x43_c00247{left:268.080000px;}
.x6_c00247{left:270.000000px;}
.x7e_c00247{left:271.500000px;}
.x9c_c00247{left:272.580000px;}
.x4a_c00247{left:274.275000px;}
.x21_c00247{left:276.000000px;}
.xbf_c00247{left:277.500000px;}
.x97_c00247{left:278.580000px;}
.xc5_c00247{left:280.500000px;}
.xec_c00247{left:284.580000px;}
.xa6_c00247{left:286.500000px;}
.x8d_c00247{left:288.000000px;}
.xde_c00247{left:289.080000px;}
.x9d_c00247{left:295.500000px;}
.x2b_c00247{left:297.000000px;}
.x79_c00247{left:298.275000px;}
.x7_c00247{left:299.580000px;}
.xc0_c00247{left:301.500000px;}
.x7f_c00247{left:302.580000px;}
.xd9_c00247{left:304.080000px;}
.x37_c00247{left:307.500000px;}
.x83_c00247{left:309.000000px;}
.xbb_c00247{left:310.080000px;}
.x22_c00247{left:312.000000px;}
.x5d_c00247{left:315.000000px;}
.xcb_c00247{left:316.080000px;}
.xd1_c00247{left:319.500000px;}
.x15_c00247{left:323.580000px;}
.x4b_c00247{left:325.500000px;}
.x2c_c00247{left:328.080000px;}
.x98_c00247{left:330.000000px;}
.xd6_c00247{left:331.920000px;}
.xed_c00247{left:334.500000px;}
.x6b_c00247{left:336.000000px;}
.x5e_c00247{left:337.500000px;}
.xab_c00247{left:339.420000px;}
.xe2_c00247{left:342.000000px;}
.x7a_c00247{left:343.500000px;}
.xc6_c00247{left:344.775000px;}
.x16_c00247{left:346.500000px;}
.x8_c00247{left:349.500000px;}
.x38_c00247{left:351.420000px;}
.x72_c00247{left:354.000000px;}
.x8e_c00247{left:355.500000px;}
.x80_c00247{left:357.000000px;}
.xbc_c00247{left:358.275000px;}
.xcd_c00247{left:360.000000px;}
.x9e_c00247{left:361.080000px;}
.xac_c00247{left:363.000000px;}
.xd2_c00247{left:364.920000px;}
.x44_c00247{left:367.500000px;}
.x8f_c00247{left:373.500000px;}
.x84_c00247{left:374.580000px;}
.x39_c00247{left:378.420000px;}
.x64_c00247{left:381.000000px;}
.xce_c00247{left:382.080000px;}
.x6c_c00247{left:383.580000px;}
.x2d_c00247{left:385.500000px;}
.xc7_c00247{left:386.775000px;}
.x23_c00247{left:388.500000px;}
.xbd_c00247{left:391.500000px;}
.x73_c00247{left:393.420000px;}
.x4c_c00247{left:394.500000px;}
.x85_c00247{left:396.000000px;}
.xee_c00247{left:399.000000px;}
.x99_c00247{left:400.500000px;}
.x55_c00247{left:402.000000px;}
.x45_c00247{left:403.500000px;}
.x65_c00247{left:405.000000px;}
.x7b_c00247{left:406.500000px;}
.x2_c00247{left:408.000000px;}
.x2e_c00247{left:409.500000px;}
.x81_c00247{left:411.000000px;}
.x4d_c00247{left:415.920000px;}
.xa7_c00247{left:417.000000px;}
.xd3_c00247{left:418.500000px;}
.x9_c00247{left:421.500000px;}
.x74_c00247{left:424.500000px;}
.xad_c00247{left:432.000000px;}
.x5f_c00247{left:433.500000px;}
.x24_c00247{left:437.580000px;}
.xa_c00247{left:441.645000px;}
.x46_c00247{left:444.000000px;}
.xcf_c00247{left:445.080000px;}
.x4e_c00247{left:446.580000px;}
.x17_c00247{left:448.500000px;}
.xe3_c00247{left:451.500000px;}
.x3a_c00247{left:453.420000px;}
.xcc_c00247{left:456.000000px;}
.x25_c00247{left:457.500000px;}
.x66_c00247{left:461.580000px;}
.xe9_c00247{left:463.500000px;}
.x82_c00247{left:464.580000px;}
.xe4_c00247{left:468.000000px;}
.x86_c00247{left:472.080000px;}
.x18_c00247{left:475.920000px;}
.x56_c00247{left:478.500000px;}
.xae_c00247{left:480.000000px;}
.x6d_c00247{left:481.500000px;}
.xc9_c00247{left:482.580000px;}
.xda_c00247{left:484.500000px;}
.x3b_c00247{left:486.420000px;}
.x90_c00247{left:487.500000px;}
.x7c_c00247{left:490.080000px;}
.x8a_c00247{left:492.855000px;}
.x87_c00247{left:493.920000px;}
.xaf_c00247{left:495.420000px;}
.x60_c00247{left:499.500000px;}
.x2f_c00247{left:503.580000px;}
.xb_c00247{left:506.580000px;}
.x19_c00247{left:511.920000px;}
.x9f_c00247{left:513.420000px;}
.xb6_c00247{left:514.500000px;}
.x3c_c00247{left:515.580000px;}
.x91_c00247{left:518.145000px;}
.x75_c00247{left:520.080000px;}
.xbe_c00247{left:523.920000px;}
.xea_c00247{left:526.920000px;}
.x57_c00247{left:529.920000px;}
.x26_c00247{left:531.420000px;}
.xef_c00247{left:532.920000px;}
.x30_c00247{left:534.420000px;}
.x1a_c00247{left:538.500000px;}
.xa0_c00247{left:541.920000px;}
.x3d_c00247{left:546.000000px;}
.x88_c00247{left:552.420000px;}
.xc_c00247{left:553.500000px;}
.x67_c00247{left:555.000000px;}
.x58_c00247{left:558.420000px;}
.xdf_c00247{left:561.000000px;}
.xf0_c00247{left:562.080000px;}
.x4f_c00247{left:568.500000px;}
.x31_c00247{left:569.580000px;}
.x27_c00247{left:571.500000px;}
.x3e_c00247{left:573.000000px;}
.x6e_c00247{left:574.920000px;}
.xa1_c00247{left:577.920000px;}
.xd4_c00247{left:579.420000px;}
.xd_c00247{left:580.920000px;}
.x61_c00247{left:586.500000px;}
.xb0_c00247{left:589.500000px;}
.xdb_c00247{left:591.000000px;}
.xeb_c00247{left:592.500000px;}
.x50_c00247{left:594.420000px;}
.x92_c00247{left:595.500000px;}
.x1b_c00247{left:597.000000px;}
.xe5_c00247{left:598.500000px;}
.x6f_c00247{left:601.500000px;}
.xa8_c00247{left:603.000000px;}
.x62_c00247{left:607.500000px;}
.x32_c00247{left:608.580000px;}
.xe_c00247{left:613.500000px;}
.xb7_c00247{left:615.420000px;}
.x1c_c00247{left:616.920000px;}
.xd5_c00247{left:618.000000px;}
.x9a_c00247{left:621.420000px;}
.xe0_c00247{left:624.000000px;}
.x76_c00247{left:625.500000px;}
.x63_c00247{left:629.580000px;}
.xa2_c00247{left:634.080000px;}
.xca_c00247{left:635.580000px;}
.x33_c00247{left:637.500000px;}
.x59_c00247{left:640.275000px;}
.xb8_c00247{left:642.000000px;}
.xd0_c00247{left:643.080000px;}
.xe1_c00247{left:645.420000px;}
.x1d_c00247{left:646.500000px;}
.xc8_c00247{left:648.855000px;}
.xb1_c00247{left:651.420000px;}
.xa3_c00247{left:652.920000px;}
.x70_c00247{left:655.500000px;}
.x28_c00247{left:656.580000px;}
.xd7_c00247{left:658.080000px;}
.x9b_c00247{left:660.000000px;}
.x93_c00247{left:662.580000px;}
.x1e_c00247{left:666.000000px;}
.xc1_c00247{left:667.500000px;}
.x7d_c00247{left:669.000000px;}
.xf_c00247{left:673.500000px;}
.x3f_c00247{left:675.000000px;}
.x77_c00247{left:676.080000px;}
.x68_c00247{left:677.580000px;}
.xa9_c00247{left:679.080000px;}
.x34_c00247{left:681.420000px;}
.xa4_c00247{left:684.000000px;}
.xb2_c00247{left:688.080000px;}
.x10_c00247{left:689.580000px;}
.xc2_c00247{left:691.080000px;}
.x1f_c00247{left:694.500000px;}
.x51_c00247{left:695.775000px;}
.x5a_c00247{left:699.420000px;}
.x40_c00247{left:700.500000px;}
.xd8_c00247{left:706.080000px;}
.x69_c00247{left:708.000000px;}
.x94_c00247{left:709.500000px;}
.xe6_c00247{left:720.000000px;}
@media print{
.v0_c00247{vertical-align:0.000000pt;}
.ls0_c00247{letter-spacing:0.000000pt;}
.ws0_c00247{word-spacing:-5.377649pt;}
.ws1_c00247{word-spacing:0.000000pt;}
.fs7_c00247{font-size:3.040000pt;}
.fs5_c00247{font-size:16.640000pt;}
.fs1_c00247{font-size:18.133333pt;}
.fs0_c00247{font-size:22.666667pt;}
.fs2_c00247{font-size:25.706667pt;}
.fs3_c00247{font-size:28.746667pt;}
.fs4_c00247{font-size:31.733333pt;}
.fs6_c00247{font-size:34.773333pt;}
.y0_c00247{bottom:0.000000pt;}
.yb9_c00247{bottom:220.360000pt;}
.ybc_c00247{bottom:221.106667pt;}
.ybe_c00247{bottom:222.440000pt;}
.yb8_c00247{bottom:223.026667pt;}
.ybd_c00247{bottom:223.400000pt;}
.ybf_c00247{bottom:223.600000pt;}
.yba_c00247{bottom:223.973333pt;}
.ybb_c00247{bottom:224.360000pt;}
.yb6_c00247{bottom:239.400000pt;}
.yb4_c00247{bottom:239.773333pt;}
.yb2_c00247{bottom:240.360000pt;}
.yb5_c00247{bottom:240.560000pt;}
.yb3_c00247{bottom:241.693333pt;}
.yb7_c00247{bottom:243.026667pt;}
.yae_c00247{bottom:257.106667pt;}
.yaf_c00247{bottom:258.640000pt;}
.yad_c00247{bottom:259.026667pt;}
.yb0_c00247{bottom:259.226667pt;}
.yb1_c00247{bottom:260.360000pt;}
.ya9_c00247{bottom:274.440000pt;}
.yab_c00247{bottom:275.600000pt;}
.yac_c00247{bottom:275.773333pt;}
.ya6_c00247{bottom:276.360000pt;}
.yaa_c00247{bottom:276.560000pt;}
.ya8_c00247{bottom:277.693333pt;}
.ya7_c00247{bottom:277.706667pt;}
.ya5_c00247{bottom:293.693333pt;}
.ya1_c00247{bottom:308.360000pt;}
.ya0_c00247{bottom:310.440000pt;}
.ya2_c00247{bottom:312.360000pt;}
.ya3_c00247{bottom:313.306667pt;}
.ya4_c00247{bottom:313.693333pt;}
.y9d_c00247{bottom:327.773333pt;}
.y9f_c00247{bottom:328.733333pt;}
.y9c_c00247{bottom:329.306667pt;}
.y9b_c00247{bottom:329.693333pt;}
.y9e_c00247{bottom:330.640000pt;}
.y99_c00247{bottom:345.106667pt;}
.y98_c00247{bottom:346.066667pt;}
.y96_c00247{bottom:347.026667pt;}
.y9a_c00247{bottom:347.973333pt;}
.y97_c00247{bottom:348.360000pt;}
.y90_c00247{bottom:362.440000pt;}
.y94_c00247{bottom:363.400000pt;}
.y91_c00247{bottom:363.773333pt;}
.y93_c00247{bottom:364.360000pt;}
.y92_c00247{bottom:364.560000pt;}
.y95_c00247{bottom:365.693333pt;}
.y8f_c00247{bottom:380.160000pt;}
.y8c_c00247{bottom:381.106667pt;}
.y8e_c00247{bottom:381.693333pt;}
.y8d_c00247{bottom:382.640000pt;}
.y8a_c00247{bottom:383.026667pt;}
.y8b_c00247{bottom:383.040000pt;}
.y87_c00247{bottom:398.440000pt;}
.y88_c00247{bottom:399.400000pt;}
.y86_c00247{bottom:399.973333pt;}
.y89_c00247{bottom:400.360000pt;}
.y85_c00247{bottom:415.773333pt;}
.y83_c00247{bottom:417.693333pt;}
.y84_c00247{bottom:417.893333pt;}
.y82_c00247{bottom:432.360000pt;}
.y81_c00247{bottom:433.106667pt;}
.y80_c00247{bottom:450.066667pt;}
.y7c_c00247{bottom:450.440000pt;}
.y7f_c00247{bottom:451.026667pt;}
.y7e_c00247{bottom:451.400000pt;}
.y7d_c00247{bottom:453.706667pt;}
.y7b_c00247{bottom:468.160000pt;}
.y7a_c00247{bottom:469.106667pt;}
.y77_c00247{bottom:485.306667pt;}
.y79_c00247{bottom:486.440000pt;}
.y78_c00247{bottom:488.360000pt;}
.y75_c00247{bottom:503.400000pt;}
.y74_c00247{bottom:503.773333pt;}
.y76_c00247{bottom:504.733333pt;}
.y73_c00247{bottom:505.693333pt;}
.y6f_c00247{bottom:519.773333pt;}
.y72_c00247{bottom:520.733333pt;}
.y70_c00247{bottom:521.106667pt;}
.y6e_c00247{bottom:521.893333pt;}
.y71_c00247{bottom:523.026667pt;}
.y6b_c00247{bottom:537.106667pt;}
.y68_c00247{bottom:538.440000pt;}
.y6c_c00247{bottom:539.226667pt;}
.y69_c00247{bottom:539.973333pt;}
.y6a_c00247{bottom:540.360000pt;}
.y6d_c00247{bottom:541.306667pt;}
.y67_c00247{bottom:556.160000pt;}
.y63_c00247{bottom:556.733333pt;}
.y65_c00247{bottom:557.106667pt;}
.y60_c00247{bottom:557.306667pt;}
.y62_c00247{bottom:557.693333pt;}
.y66_c00247{bottom:557.893333pt;}
.y61_c00247{bottom:558.640000pt;}
.y64_c00247{bottom:559.026667pt;}
.y5c_c00247{bottom:573.106667pt;}
.y5e_c00247{bottom:574.440000pt;}
.y5d_c00247{bottom:575.026667pt;}
.y5f_c00247{bottom:576.360000pt;}
.y57_c00247{bottom:591.400000pt;}
.y5b_c00247{bottom:591.773333pt;}
.y59_c00247{bottom:592.360000pt;}
.y58_c00247{bottom:592.560000pt;}
.y56_c00247{bottom:593.306667pt;}
.y5a_c00247{bottom:593.693333pt;}
.y53_c00247{bottom:608.160000pt;}
.y52_c00247{bottom:609.106667pt;}
.y55_c00247{bottom:611.026667pt;}
.y54_c00247{bottom:611.040000pt;}
.y4f_c00247{bottom:632.733333pt;}
.y50_c00247{bottom:633.693333pt;}
.y51_c00247{bottom:633.893333pt;}
.y4e_c00247{bottom:634.640000pt;}
.y4d_c00247{bottom:649.306667pt;}
.y4b_c00247{bottom:650.066667pt;}
.y4c_c00247{bottom:650.266667pt;}
.y49_c00247{bottom:651.026667pt;}
.y4a_c00247{bottom:651.226667pt;}
.y48_c00247{bottom:674.440000pt;}
.y47_c00247{bottom:676.360000pt;}
.y43_c00247{bottom:713.106667pt;}
.y46_c00247{bottom:714.066667pt;}
.y45_c00247{bottom:715.026667pt;}
.y44_c00247{bottom:715.973333pt;}
.y42_c00247{bottom:729.693333pt;}
.y40_c00247{bottom:731.773333pt;}
.y41_c00247{bottom:732.733333pt;}
.y3f_c00247{bottom:733.693333pt;}
.y3d_c00247{bottom:749.106667pt;}
.y3e_c00247{bottom:749.893333pt;}
.y3c_c00247{bottom:751.026667pt;}
.y3b_c00247{bottom:766.066667pt;}
.y37_c00247{bottom:766.440000pt;}
.y39_c00247{bottom:767.400000pt;}
.y38_c00247{bottom:768.360000pt;}
.y3a_c00247{bottom:769.306667pt;}
.y34_c00247{bottom:782.826667pt;}
.y33_c00247{bottom:783.773333pt;}
.y35_c00247{bottom:784.733333pt;}
.y36_c00247{bottom:785.306667pt;}
.y32_c00247{bottom:785.693333pt;}
.y30_c00247{bottom:800.360000pt;}
.y2d_c00247{bottom:801.106667pt;}
.y2e_c00247{bottom:803.026667pt;}
.y2f_c00247{bottom:803.226667pt;}
.y31_c00247{bottom:804.360000pt;}
.y2b_c00247{bottom:818.826667pt;}
.y2a_c00247{bottom:819.400000pt;}
.y29_c00247{bottom:819.773333pt;}
.y2c_c00247{bottom:820.360000pt;}
.y28_c00247{bottom:820.560000pt;}
.y27_c00247{bottom:821.693333pt;}
.y26_c00247{bottom:835.773333pt;}
.y25_c00247{bottom:836.360000pt;}
.y23_c00247{bottom:837.106667pt;}
.y24_c00247{bottom:837.893333pt;}
.y22_c00247{bottom:839.026667pt;}
.y20_c00247{bottom:854.440000pt;}
.y21_c00247{bottom:855.973333pt;}
.y1f_c00247{bottom:856.360000pt;}
.y1a_c00247{bottom:871.400000pt;}
.y1c_c00247{bottom:871.773333pt;}
.y1e_c00247{bottom:872.560000pt;}
.y1b_c00247{bottom:873.693333pt;}
.y1d_c00247{bottom:874.640000pt;}
.y15_c00247{bottom:889.106667pt;}
.y17_c00247{bottom:889.893333pt;}
.y18_c00247{bottom:890.640000pt;}
.y16_c00247{bottom:891.026667pt;}
.y19_c00247{bottom:891.973333pt;}
.y13_c00247{bottom:906.066667pt;}
.y12_c00247{bottom:906.440000pt;}
.y14_c00247{bottom:907.973333pt;}
.y11_c00247{bottom:908.360000pt;}
.yd_c00247{bottom:923.026667pt;}
.ya_c00247{bottom:923.400000pt;}
.yb_c00247{bottom:923.773333pt;}
.ye_c00247{bottom:923.973333pt;}
.y8_c00247{bottom:924.560000pt;}
.yc_c00247{bottom:924.733333pt;}
.y9_c00247{bottom:925.693333pt;}
.y10_c00247{bottom:925.893333pt;}
.yf_c00247{bottom:926.640000pt;}
.y6_c00247{bottom:940.360000pt;}
.y4_c00247{bottom:940.733333pt;}
.y7_c00247{bottom:941.106667pt;}
.y5_c00247{bottom:942.640000pt;}
.y3_c00247{bottom:943.026667pt;}
.y2_c00247{bottom:976.933333pt;}
.y1_c00247{bottom:978.640000pt;}
.h8_c00247{height:3.739141pt;}
.h6_c00247{height:20.466875pt;}
.h2_c00247{height:22.303646pt;}
.h1_c00247{height:27.879557pt;}
.h3_c00247{height:31.618698pt;}
.h4_c00247{height:35.357839pt;}
.h5_c00247{height:39.031380pt;}
.h7_c00247{height:42.770521pt;}
.h0_c00247{height:1186.666667pt;}
.w0_c00247{width:782.666667pt;}
.x0_c00247{left:0.000000pt;}
.xe8_c00247{left:132.960000pt;}
.x1_c00247{left:134.293333pt;}
.x11_c00247{left:136.000000pt;}
.x3_c00247{left:137.706667pt;}
.xb3_c00247{left:147.040000pt;}
.x89_c00247{left:148.000000pt;}
.x47_c00247{left:149.333333pt;}
.x41_c00247{left:152.000000pt;}
.xb9_c00247{left:152.960000pt;}
.x95_c00247{left:157.333333pt;}
.xaa_c00247{left:166.666667pt;}
.x48_c00247{left:168.373333pt;}
.x12_c00247{left:171.040000pt;}
.x35_c00247{left:173.333333pt;}
.x4_c00247{left:174.666667pt;}
.xdc_c00247{left:176.000000pt;}
.xc3_c00247{left:177.333333pt;}
.xb4_c00247{left:179.040000pt;}
.x52_c00247{left:182.666667pt;}
.x8b_c00247{left:183.626667pt;}
.x29_c00247{left:185.333333pt;}
.x5b_c00247{left:187.240000pt;}
.x6a_c00247{left:191.626667pt;}
.xe7_c00247{left:193.706667pt;}
.x53_c00247{left:194.666667pt;}
.x78_c00247{left:195.626667pt;}
.x71_c00247{left:198.666667pt;}
.xa5_c00247{left:201.333333pt;}
.x13_c00247{left:204.000000pt;}
.x20_c00247{left:204.960000pt;}
.xba_c00247{left:212.000000pt;}
.x36_c00247{left:213.706667pt;}
.x42_c00247{left:214.666667pt;}
.x49_c00247{left:215.626667pt;}
.x5_c00247{left:219.040000pt;}
.xdd_c00247{left:221.706667pt;}
.x5c_c00247{left:222.666667pt;}
.x2a_c00247{left:224.000000pt;}
.x54_c00247{left:225.706667pt;}
.x96_c00247{left:226.666667pt;}
.xb5_c00247{left:228.000000pt;}
.xc4_c00247{left:230.666667pt;}
.x14_c00247{left:232.000000pt;}
.x8c_c00247{left:237.333333pt;}
.x43_c00247{left:238.293333pt;}
.x6_c00247{left:240.000000pt;}
.x7e_c00247{left:241.333333pt;}
.x9c_c00247{left:242.293333pt;}
.x4a_c00247{left:243.800000pt;}
.x21_c00247{left:245.333333pt;}
.xbf_c00247{left:246.666667pt;}
.x97_c00247{left:247.626667pt;}
.xc5_c00247{left:249.333333pt;}
.xec_c00247{left:252.960000pt;}
.xa6_c00247{left:254.666667pt;}
.x8d_c00247{left:256.000000pt;}
.xde_c00247{left:256.960000pt;}
.x9d_c00247{left:262.666667pt;}
.x2b_c00247{left:264.000000pt;}
.x79_c00247{left:265.133333pt;}
.x7_c00247{left:266.293333pt;}
.xc0_c00247{left:268.000000pt;}
.x7f_c00247{left:268.960000pt;}
.xd9_c00247{left:270.293333pt;}
.x37_c00247{left:273.333333pt;}
.x83_c00247{left:274.666667pt;}
.xbb_c00247{left:275.626667pt;}
.x22_c00247{left:277.333333pt;}
.x5d_c00247{left:280.000000pt;}
.xcb_c00247{left:280.960000pt;}
.xd1_c00247{left:284.000000pt;}
.x15_c00247{left:287.626667pt;}
.x4b_c00247{left:289.333333pt;}
.x2c_c00247{left:291.626667pt;}
.x98_c00247{left:293.333333pt;}
.xd6_c00247{left:295.040000pt;}
.xed_c00247{left:297.333333pt;}
.x6b_c00247{left:298.666667pt;}
.x5e_c00247{left:300.000000pt;}
.xab_c00247{left:301.706667pt;}
.xe2_c00247{left:304.000000pt;}
.x7a_c00247{left:305.333333pt;}
.xc6_c00247{left:306.466667pt;}
.x16_c00247{left:308.000000pt;}
.x8_c00247{left:310.666667pt;}
.x38_c00247{left:312.373333pt;}
.x72_c00247{left:314.666667pt;}
.x8e_c00247{left:316.000000pt;}
.x80_c00247{left:317.333333pt;}
.xbc_c00247{left:318.466667pt;}
.xcd_c00247{left:320.000000pt;}
.x9e_c00247{left:320.960000pt;}
.xac_c00247{left:322.666667pt;}
.xd2_c00247{left:324.373333pt;}
.x44_c00247{left:326.666667pt;}
.x8f_c00247{left:332.000000pt;}
.x84_c00247{left:332.960000pt;}
.x39_c00247{left:336.373333pt;}
.x64_c00247{left:338.666667pt;}
.xce_c00247{left:339.626667pt;}
.x6c_c00247{left:340.960000pt;}
.x2d_c00247{left:342.666667pt;}
.xc7_c00247{left:343.800000pt;}
.x23_c00247{left:345.333333pt;}
.xbd_c00247{left:348.000000pt;}
.x73_c00247{left:349.706667pt;}
.x4c_c00247{left:350.666667pt;}
.x85_c00247{left:352.000000pt;}
.xee_c00247{left:354.666667pt;}
.x99_c00247{left:356.000000pt;}
.x55_c00247{left:357.333333pt;}
.x45_c00247{left:358.666667pt;}
.x65_c00247{left:360.000000pt;}
.x7b_c00247{left:361.333333pt;}
.x2_c00247{left:362.666667pt;}
.x2e_c00247{left:364.000000pt;}
.x81_c00247{left:365.333333pt;}
.x4d_c00247{left:369.706667pt;}
.xa7_c00247{left:370.666667pt;}
.xd3_c00247{left:372.000000pt;}
.x9_c00247{left:374.666667pt;}
.x74_c00247{left:377.333333pt;}
.xad_c00247{left:384.000000pt;}
.x5f_c00247{left:385.333333pt;}
.x24_c00247{left:388.960000pt;}
.xa_c00247{left:392.573333pt;}
.x46_c00247{left:394.666667pt;}
.xcf_c00247{left:395.626667pt;}
.x4e_c00247{left:396.960000pt;}
.x17_c00247{left:398.666667pt;}
.xe3_c00247{left:401.333333pt;}
.x3a_c00247{left:403.040000pt;}
.xcc_c00247{left:405.333333pt;}
.x25_c00247{left:406.666667pt;}
.x66_c00247{left:410.293333pt;}
.xe9_c00247{left:412.000000pt;}
.x82_c00247{left:412.960000pt;}
.xe4_c00247{left:416.000000pt;}
.x86_c00247{left:419.626667pt;}
.x18_c00247{left:423.040000pt;}
.x56_c00247{left:425.333333pt;}
.xae_c00247{left:426.666667pt;}
.x6d_c00247{left:428.000000pt;}
.xc9_c00247{left:428.960000pt;}
.xda_c00247{left:430.666667pt;}
.x3b_c00247{left:432.373333pt;}
.x90_c00247{left:433.333333pt;}
.x7c_c00247{left:435.626667pt;}
.x8a_c00247{left:438.093333pt;}
.x87_c00247{left:439.040000pt;}
.xaf_c00247{left:440.373333pt;}
.x60_c00247{left:444.000000pt;}
.x2f_c00247{left:447.626667pt;}
.xb_c00247{left:450.293333pt;}
.x19_c00247{left:455.040000pt;}
.x9f_c00247{left:456.373333pt;}
.xb6_c00247{left:457.333333pt;}
.x3c_c00247{left:458.293333pt;}
.x91_c00247{left:460.573333pt;}
.x75_c00247{left:462.293333pt;}
.xbe_c00247{left:465.706667pt;}
.xea_c00247{left:468.373333pt;}
.x57_c00247{left:471.040000pt;}
.x26_c00247{left:472.373333pt;}
.xef_c00247{left:473.706667pt;}
.x30_c00247{left:475.040000pt;}
.x1a_c00247{left:478.666667pt;}
.xa0_c00247{left:481.706667pt;}
.x3d_c00247{left:485.333333pt;}
.x88_c00247{left:491.040000pt;}
.xc_c00247{left:492.000000pt;}
.x67_c00247{left:493.333333pt;}
.x58_c00247{left:496.373333pt;}
.xdf_c00247{left:498.666667pt;}
.xf0_c00247{left:499.626667pt;}
.x4f_c00247{left:505.333333pt;}
.x31_c00247{left:506.293333pt;}
.x27_c00247{left:508.000000pt;}
.x3e_c00247{left:509.333333pt;}
.x6e_c00247{left:511.040000pt;}
.xa1_c00247{left:513.706667pt;}
.xd4_c00247{left:515.040000pt;}
.xd_c00247{left:516.373333pt;}
.x61_c00247{left:521.333333pt;}
.xb0_c00247{left:524.000000pt;}
.xdb_c00247{left:525.333333pt;}
.xeb_c00247{left:526.666667pt;}
.x50_c00247{left:528.373333pt;}
.x92_c00247{left:529.333333pt;}
.x1b_c00247{left:530.666667pt;}
.xe5_c00247{left:532.000000pt;}
.x6f_c00247{left:534.666667pt;}
.xa8_c00247{left:536.000000pt;}
.x62_c00247{left:540.000000pt;}
.x32_c00247{left:540.960000pt;}
.xe_c00247{left:545.333333pt;}
.xb7_c00247{left:547.040000pt;}
.x1c_c00247{left:548.373333pt;}
.xd5_c00247{left:549.333333pt;}
.x9a_c00247{left:552.373333pt;}
.xe0_c00247{left:554.666667pt;}
.x76_c00247{left:556.000000pt;}
.x63_c00247{left:559.626667pt;}
.xa2_c00247{left:563.626667pt;}
.xca_c00247{left:564.960000pt;}
.x33_c00247{left:566.666667pt;}
.x59_c00247{left:569.133333pt;}
.xb8_c00247{left:570.666667pt;}
.xd0_c00247{left:571.626667pt;}
.xe1_c00247{left:573.706667pt;}
.x1d_c00247{left:574.666667pt;}
.xc8_c00247{left:576.760000pt;}
.xb1_c00247{left:579.040000pt;}
.xa3_c00247{left:580.373333pt;}
.x70_c00247{left:582.666667pt;}
.x28_c00247{left:583.626667pt;}
.xd7_c00247{left:584.960000pt;}
.x9b_c00247{left:586.666667pt;}
.x93_c00247{left:588.960000pt;}
.x1e_c00247{left:592.000000pt;}
.xc1_c00247{left:593.333333pt;}
.x7d_c00247{left:594.666667pt;}
.xf_c00247{left:598.666667pt;}
.x3f_c00247{left:600.000000pt;}
.x77_c00247{left:600.960000pt;}
.x68_c00247{left:602.293333pt;}
.xa9_c00247{left:603.626667pt;}
.x34_c00247{left:605.706667pt;}
.xa4_c00247{left:608.000000pt;}
.xb2_c00247{left:611.626667pt;}
.x10_c00247{left:612.960000pt;}
.xc2_c00247{left:614.293333pt;}
.x1f_c00247{left:617.333333pt;}
.x51_c00247{left:618.466667pt;}
.x5a_c00247{left:621.706667pt;}
.x40_c00247{left:622.666667pt;}
.xd8_c00247{left:627.626667pt;}
.x69_c00247{left:629.333333pt;}
.x94_c00247{left:630.666667pt;}
.xe6_c00247{left:640.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_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_1b2ef2fbccc77bbf1035da8f.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:1.688965;font-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_c00248{transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);}
.m8b_c00248{transform:matrix(0.330705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330705,0.000000,0.000000,0.250000,0,0);}
.m99_c00248{transform:matrix(0.354824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354824,0.000000,0.000000,0.250000,0,0);}
.mbf_c00248{transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);}
.m2a_c00248{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m83_c00248{transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);}
.mb7_c00248{transform:matrix(0.366883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366883,0.000000,0.000000,0.250000,0,0);}
.md_c00248{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m3a_c00248{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m47_c00248{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m20_c00248{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m7c_c00248{transform:matrix(0.372449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372449,0.000000,0.000000,0.250000,0,0);}
.mb4_c00248{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.ma9_c00248{transform:matrix(0.380798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380798,0.000000,0.000000,0.250000,0,0);}
.m1b_c00248{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.me2_c00248{transform:matrix(0.385900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385900,0.000000,0.000000,0.250000,0,0);}
.me8_c00248{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mc5_c00248{transform:matrix(0.388824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388824,0.000000,0.000000,0.250000,0,0);}
.m1d_c00248{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m42_c00248{transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);}
.m5f_c00248{transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);}
.m98_c00248{transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);}
.m16_c00248{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mc7_c00248{transform:matrix(0.394710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394710,0.000000,0.000000,0.250000,0,0);}
.m4b_c00248{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m19_c00248{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m1_c00248{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.mbc_c00248{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.mb5_c00248{transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);}
.m9_c00248{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.md1_c00248{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.m72_c00248{transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);}
.ma5_c00248{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.mcb_c00248{transform:matrix(0.414118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414118,0.000000,0.000000,0.250000,0,0);}
.mcf_c00248{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.mae_c00248{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m12_c00248{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.me6_c00248{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mc4_c00248{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m73_c00248{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m5c_c00248{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m2f_c00248{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m24_c00248{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m8e_c00248{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.m1f_c00248{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m4d_c00248{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m3c_c00248{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.me4_c00248{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m13_c00248{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m63_c00248{transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);}
.m90_c00248{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.mf2_c00248{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m4e_c00248{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.mc_c00248{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.ma7_c00248{transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);}
.md9_c00248{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.md2_c00248{transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);}
.mce_c00248{transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);}
.m75_c00248{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m91_c00248{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m8c_c00248{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.m48_c00248{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m2_c00248{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mdd_c00248{transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);}
.ma8_c00248{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m9d_c00248{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.me3_c00248{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m43_c00248{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m9b_c00248{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.mfe_c00248{transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);}
.mc3_c00248{transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);}
.m18_c00248{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m5a_c00248{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m6e_c00248{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.med_c00248{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m34_c00248{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.md3_c00248{transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);}
.mf4_c00248{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.mcc_c00248{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m95_c00248{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.mbb_c00248{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.mf3_c00248{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m89_c00248{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.m59_c00248{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.m45_c00248{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mb3_c00248{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.mc9_c00248{transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);}
.m3f_c00248{transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);}
.mb6_c00248{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m64_c00248{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m97_c00248{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m92_c00248{transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);}
.md0_c00248{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.mc1_c00248{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m1a_c00248{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m26_c00248{transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);}
.m3b_c00248{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.me0_c00248{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.md7_c00248{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mb8_c00248{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.maa_c00248{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m67_c00248{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mb1_c00248{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.m8a_c00248{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m37_c00248{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mc6_c00248{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mdb_c00248{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.ma1_c00248{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m17_c00248{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_c00248{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.me1_c00248{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mdc_c00248{transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);}
.mb9_c00248{transform:matrix(0.506471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506471,0.000000,0.000000,0.250000,0,0);}
.m9e_c00248{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m49_c00248{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.mea_c00248{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m4a_c00248{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.me7_c00248{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mc2_c00248{transform:matrix(0.511176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511176,0.000000,0.000000,0.250000,0,0);}
.ma6_c00248{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.m2c_c00248{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m9f_c00248{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.m5b_c00248{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.m5_c00248{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m6b_c00248{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m88_c00248{transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);}
.mee_c00248{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m4c_c00248{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);}
.m58_c00248{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.mf6_c00248{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.mc0_c00248{transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);}
.mdf_c00248{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.ma0_c00248{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.m4f_c00248{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_c00248{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m29_c00248{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m2d_c00248{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m70_c00248{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.ma3_c00248{transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);}
.m96_c00248{transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);}
.mf8_c00248{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m8_c00248{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m68_c00248{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.m80_c00248{transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);}
.m6_c00248{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.mec_c00248{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m15_c00248{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m7e_c00248{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m10_c00248{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m36_c00248{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.mf5_c00248{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m1c_c00248{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mba_c00248{transform:matrix(0.539412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539412,0.000000,0.000000,0.250000,0,0);}
.m39_c00248{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.mf1_c00248{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.ma4_c00248{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m25_c00248{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m23_c00248{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m54_c00248{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m85_c00248{transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);}
.m3_c00248{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m82_c00248{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.mef_c00248{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m86_c00248{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.me9_c00248{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m11_c00248{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mf9_c00248{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m5e_c00248{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m27_c00248{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.meb_c00248{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m3e_c00248{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.ma_c00248{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mfa_c00248{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mad_c00248{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.mc8_c00248{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.m71_c00248{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m6f_c00248{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.m94_c00248{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.m7a_c00248{transform:matrix(0.567647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567647,0.000000,0.000000,0.250000,0,0);}
.mac_c00248{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m14_c00248{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m1e_c00248{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m55_c00248{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.maf_c00248{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m84_c00248{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.mbd_c00248{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);}
.m87_c00248{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m41_c00248{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m6c_c00248{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.md8_c00248{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m6a_c00248{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.md5_c00248{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m7_c00248{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mde_c00248{transform:matrix(0.607353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607353,0.000000,0.000000,0.250000,0,0);}
.m40_c00248{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m21_c00248{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.mb_c00248{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m46_c00248{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.mfc_c00248{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m79_c00248{transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);}
.m66_c00248{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.m93_c00248{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.mf_c00248{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.m76_c00248{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m6d_c00248{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m0_c00248{transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);}
.m65_c00248{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);}
.m77_c00248{transform:matrix(0.627206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627206,0.000000,0.000000,0.250000,0,0);}
.m22_c00248{transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);}
.mbe_c00248{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.mcd_c00248{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m7f_c00248{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m61_c00248{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.mfd_c00248{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m74_c00248{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m5d_c00248{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.mb2_c00248{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m78_c00248{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m8f_c00248{transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);}
.md4_c00248{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m57_c00248{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);}
.m9a_c00248{transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);}
.m81_c00248{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m56_c00248{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m44_c00248{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.mfb_c00248{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m53_c00248{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m4_c00248{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m35_c00248{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.m8d_c00248{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m7b_c00248{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.m69_c00248{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m50_c00248{transform:matrix(0.680147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680147,0.000000,0.000000,0.250000,0,0);}
.m52_c00248{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m31_c00248{transform:matrix(0.684559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.684559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.684559,0.000000,0.000000,0.250000,0,0);}
.m62_c00248{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m51_c00248{transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);}
.m32_c00248{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m9c_c00248{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m33_c00248{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);}
.md6_c00248{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.mab_c00248{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.me_c00248{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mf7_c00248{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m28_c00248{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m3d_c00248{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m2b_c00248{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.mda_c00248{transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);}
.ma2_c00248{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.mb0_c00248{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.m30_c00248{transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);}
.mca_c00248{transform:matrix(1.165198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.165198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.165198,0.000000,0.000000,0.250000,0,0);}
.m7d_c00248{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m38_c00248{transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);}
.me5_c00248{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v2_c00248{vertical-align:-18.000000px;}
.v0_c00248{vertical-align:0.000000px;}
.v3_c00248{vertical-align:6.000000px;}
.v1_c00248{vertical-align:7.680000px;}
.ls1_c00248{letter-spacing:0.000000px;}
.ls0_c00248{letter-spacing:11.817600px;}
.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:-6.425697px;}
.ws4_c00248{word-spacing:-4.199201px;}
.ws3_c00248{word-spacing:-3.553655px;}
.ws1_c00248{word-spacing:-2.058938px;}
.ws5_c00248{word-spacing:0.000000px;}
.ws2_c00248{word-spacing:3.443016px;}
.fc0_c00248{color:transparent;}
.fs7_c00248{font-size:3.420000px;}
.fs6_c00248{font-size:13.620000px;}
.fs5_c00248{font-size:18.720000px;}
.fs0_c00248{font-size:20.400000px;}
.fs4_c00248{font-size:25.500000px;}
.fs3_c00248{font-size:28.920000px;}
.fs1_c00248{font-size:32.340000px;}
.fs2_c00248{font-size:35.700000px;}
.y0_c00248{bottom:0.000000px;}
.y106_c00248{bottom:250.905000px;}
.y103_c00248{bottom:251.745000px;}
.y104_c00248{bottom:253.905000px;}
.y108_c00248{bottom:254.130000px;}
.y105_c00248{bottom:254.970000px;}
.y107_c00248{bottom:255.405000px;}
.y102_c00248{bottom:270.405000px;}
.y100_c00248{bottom:273.630000px;}
.y101_c00248{bottom:274.470000px;}
.yff_c00248{bottom:274.905000px;}
.yfc_c00248{bottom:292.245000px;}
.yfe_c00248{bottom:293.325000px;}
.yfd_c00248{bottom:294.405000px;}
.yf9_c00248{bottom:311.745000px;}
.yfb_c00248{bottom:312.825000px;}
.yfa_c00248{bottom:313.470000px;}
.yf8_c00248{bottom:313.905000px;}
.yf4_c00248{bottom:331.245000px;}
.yf6_c00248{bottom:333.405000px;}
.yf7_c00248{bottom:333.630000px;}
.yf5_c00248{bottom:334.920000px;}
.yf3_c00248{bottom:361.470000px;}
.yef_c00248{bottom:361.905000px;}
.yf1_c00248{bottom:362.325000px;}
.yf2_c00248{bottom:362.550000px;}
.yee_c00248{bottom:362.970000px;}
.yf0_c00248{bottom:363.405000px;}
.yed_c00248{bottom:364.050000px;}
.yec_c00248{bottom:374.970000px;}
.ye6_c00248{bottom:375.825000px;}
.ye7_c00248{bottom:376.050000px;}
.ye5_c00248{bottom:376.470000px;}
.yeb_c00248{bottom:376.905000px;}
.yea_c00248{bottom:377.325000px;}
.ye8_c00248{bottom:377.970000px;}
.ye9_c00248{bottom:379.050000px;}
.ye3_c00248{bottom:389.970000px;}
.ye0_c00248{bottom:391.470000px;}
.ye1_c00248{bottom:391.905000px;}
.ye4_c00248{bottom:392.130000px;}
.ye2_c00248{bottom:392.325000px;}
.yde_c00248{bottom:392.970000px;}
.ydf_c00248{bottom:393.195000px;}
.ydd_c00248{bottom:404.970000px;}
.yda_c00248{bottom:406.905000px;}
.yd9_c00248{bottom:407.130000px;}
.ydb_c00248{bottom:407.970000px;}
.ydc_c00248{bottom:409.050000px;}
.yd8_c00248{bottom:421.905000px;}
.yd3_c00248{bottom:435.825000px;}
.yd2_c00248{bottom:436.050000px;}
.yd6_c00248{bottom:436.905000px;}
.yd7_c00248{bottom:437.970000px;}
.yd5_c00248{bottom:438.195000px;}
.yd4_c00248{bottom:439.050000px;}
.ycf_c00248{bottom:450.405000px;}
.yd1_c00248{bottom:451.905000px;}
.yce_c00248{bottom:452.130000px;}
.yd0_c00248{bottom:454.050000px;}
.yca_c00248{bottom:464.970000px;}
.yc8_c00248{bottom:465.405000px;}
.ycd_c00248{bottom:465.825000px;}
.yc7_c00248{bottom:466.050000px;}
.yc6_c00248{bottom:466.905000px;}
.yc9_c00248{bottom:467.130000px;}
.ycc_c00248{bottom:467.970000px;}
.ycb_c00248{bottom:468.195000px;}
.yc5_c00248{bottom:479.325000px;}
.yc4_c00248{bottom:480.405000px;}
.yc3_c00248{bottom:481.470000px;}
.yc2_c00248{bottom:482.550000px;}
.yc0_c00248{bottom:494.325000px;}
.yc1_c00248{bottom:494.970000px;}
.ybe_c00248{bottom:495.630000px;}
.ybd_c00248{bottom:496.470000px;}
.ybf_c00248{bottom:497.550000px;}
.yb8_c00248{bottom:508.470000px;}
.ybc_c00248{bottom:509.325000px;}
.yba_c00248{bottom:510.405000px;}
.ybb_c00248{bottom:510.630000px;}
.yb9_c00248{bottom:511.470000px;}
.yb3_c00248{bottom:524.325000px;}
.yb6_c00248{bottom:524.550000px;}
.yb5_c00248{bottom:525.405000px;}
.yb7_c00248{bottom:525.825000px;}
.yb4_c00248{bottom:526.470000px;}
.yb2_c00248{bottom:527.550000px;}
.yb1_c00248{bottom:539.325000px;}
.yb0_c00248{bottom:553.905000px;}
.yab_c00248{bottom:554.550000px;}
.yac_c00248{bottom:555.405000px;}
.yae_c00248{bottom:555.630000px;}
.yad_c00248{bottom:556.470000px;}
.yaf_c00248{bottom:557.550000px;}
.yaa_c00248{bottom:568.905000px;}
.ya8_c00248{bottom:569.970000px;}
.ya9_c00248{bottom:570.195000px;}
.ya7_c00248{bottom:571.050000px;}
.y9e_c00248{bottom:581.970000px;}
.ya6_c00248{bottom:582.825000px;}
.ya3_c00248{bottom:583.050000px;}
.ya4_c00248{bottom:583.905000px;}
.ya0_c00248{bottom:584.130000px;}
.ya1_c00248{bottom:584.325000px;}
.y9f_c00248{bottom:584.970000px;}
.ya5_c00248{bottom:585.195000px;}
.ya2_c00248{bottom:586.470000px;}
.y9d_c00248{bottom:597.825000px;}
.y9c_c00248{bottom:598.905000px;}
.y9b_c00248{bottom:612.825000px;}
.y95_c00248{bottom:613.050000px;}
.y98_c00248{bottom:613.905000px;}
.y97_c00248{bottom:614.130000px;}
.y96_c00248{bottom:614.970000px;}
.y99_c00248{bottom:615.195000px;}
.y9a_c00248{bottom:616.050000px;}
.y92_c00248{bottom:626.970000px;}
.y94_c00248{bottom:627.825000px;}
.y91_c00248{bottom:628.905000px;}
.y8f_c00248{bottom:629.970000px;}
.y90_c00248{bottom:630.195000px;}
.y93_c00248{bottom:631.050000px;}
.y8c_c00248{bottom:643.905000px;}
.y8a_c00248{bottom:644.130000px;}
.y8d_c00248{bottom:644.550000px;}
.y8b_c00248{bottom:644.970000px;}
.y8e_c00248{bottom:646.050000px;}
.y88_c00248{bottom:656.970000px;}
.y85_c00248{bottom:658.050000px;}
.y87_c00248{bottom:658.905000px;}
.y89_c00248{bottom:659.970000px;}
.y86_c00248{bottom:661.050000px;}
.y83_c00248{bottom:671.970000px;}
.y82_c00248{bottom:672.825000px;}
.y81_c00248{bottom:673.050000px;}
.y80_c00248{bottom:673.905000px;}
.y7e_c00248{bottom:674.550000px;}
.y7f_c00248{bottom:674.970000px;}
.y84_c00248{bottom:675.195000px;}
.y7b_c00248{bottom:687.825000px;}
.y7d_c00248{bottom:688.905000px;}
.y79_c00248{bottom:689.130000px;}
.y7c_c00248{bottom:689.970000px;}
.y7a_c00248{bottom:691.050000px;}
.y76_c00248{bottom:702.405000px;}
.y78_c00248{bottom:702.825000px;}
.y77_c00248{bottom:704.130000px;}
.y75_c00248{bottom:704.550000px;}
.y70_c00248{bottom:717.405000px;}
.y6e_c00248{bottom:717.630000px;}
.y72_c00248{bottom:717.825000px;}
.y71_c00248{bottom:718.470000px;}
.y73_c00248{bottom:718.905000px;}
.y6f_c00248{bottom:719.550000px;}
.y74_c00248{bottom:720.195000px;}
.y6c_c00248{bottom:732.405000px;}
.y69_c00248{bottom:732.630000px;}
.y6b_c00248{bottom:732.825000px;}
.y6a_c00248{bottom:733.470000px;}
.y6d_c00248{bottom:734.550000px;}
.y68_c00248{bottom:746.325000px;}
.y64_c00248{bottom:746.550000px;}
.y67_c00248{bottom:747.405000px;}
.y66_c00248{bottom:748.470000px;}
.y65_c00248{bottom:749.550000px;}
.y63_c00248{bottom:762.405000px;}
.y5f_c00248{bottom:775.470000px;}
.y60_c00248{bottom:776.325000px;}
.y62_c00248{bottom:776.550000px;}
.y5b_c00248{bottom:776.970000px;}
.y5c_c00248{bottom:778.050000px;}
.y5d_c00248{bottom:778.470000px;}
.y61_c00248{bottom:778.695000px;}
.y5e_c00248{bottom:779.550000px;}
.y59_c00248{bottom:790.905000px;}
.y57_c00248{bottom:791.325000px;}
.y56_c00248{bottom:793.470000px;}
.y58_c00248{bottom:793.695000px;}
.y5a_c00248{bottom:794.550000px;}
.y50_c00248{bottom:805.470000px;}
.y52_c00248{bottom:806.550000px;}
.y53_c00248{bottom:806.970000px;}
.y54_c00248{bottom:807.630000px;}
.y51_c00248{bottom:808.050000px;}
.y55_c00248{bottom:808.470000px;}
.y4c_c00248{bottom:819.825000px;}
.y4d_c00248{bottom:820.050000px;}
.y4e_c00248{bottom:820.905000px;}
.y4f_c00248{bottom:821.325000px;}
.y4a_c00248{bottom:821.970000px;}
.y4b_c00248{bottom:823.050000px;}
.y47_c00248{bottom:834.825000px;}
.y46_c00248{bottom:835.905000px;}
.y48_c00248{bottom:836.325000px;}
.y45_c00248{bottom:836.970000px;}
.y49_c00248{bottom:837.195000px;}
.y44_c00248{bottom:838.050000px;}
.y42_c00248{bottom:849.825000px;}
.y3f_c00248{bottom:850.905000px;}
.y40_c00248{bottom:851.970000px;}
.y43_c00248{bottom:852.195000px;}
.y41_c00248{bottom:853.050000px;}
.y39_c00248{bottom:865.050000px;}
.y3a_c00248{bottom:865.905000px;}
.y3b_c00248{bottom:866.550000px;}
.y3c_c00248{bottom:866.970000px;}
.y3e_c00248{bottom:867.195000px;}
.y3d_c00248{bottom:868.050000px;}
.y30_c00248{bottom:878.550000px;}
.y31_c00248{bottom:879.825000px;}
.y35_c00248{bottom:880.050000px;}
.y37_c00248{bottom:880.905000px;}
.y32_c00248{bottom:881.130000px;}
.y33_c00248{bottom:881.550000px;}
.y34_c00248{bottom:881.970000px;}
.y38_c00248{bottom:882.195000px;}
.y36_c00248{bottom:883.050000px;}
.y2f_c00248{bottom:894.825000px;}
.y2e_c00248{bottom:896.970000px;}
.y2d_c00248{bottom:898.050000px;}
.y2c_c00248{bottom:909.405000px;}
.y28_c00248{bottom:910.050000px;}
.y2b_c00248{bottom:910.470000px;}
.y2a_c00248{bottom:911.130000px;}
.y29_c00248{bottom:911.550000px;}
.y26_c00248{bottom:923.325000px;}
.y27_c00248{bottom:923.550000px;}
.y25_c00248{bottom:924.405000px;}
.y24_c00248{bottom:925.470000px;}
.y20_c00248{bottom:938.325000px;}
.y22_c00248{bottom:938.550000px;}
.y1e_c00248{bottom:939.405000px;}
.y23_c00248{bottom:939.825000px;}
.y1f_c00248{bottom:940.050000px;}
.y1d_c00248{bottom:940.470000px;}
.y1c_c00248{bottom:940.695000px;}
.y21_c00248{bottom:941.550000px;}
.y1b_c00248{bottom:953.325000px;}
.y19_c00248{bottom:954.405000px;}
.y17_c00248{bottom:954.630000px;}
.y1a_c00248{bottom:955.470000px;}
.y18_c00248{bottom:956.550000px;}
.y16_c00248{bottom:982.245000px;}
.y13_c00248{bottom:983.130000px;}
.y14_c00248{bottom:984.405000px;}
.y15_c00248{bottom:985.470000px;}
.y11_c00248{bottom:1001.745000px;}
.ye_c00248{bottom:1002.825000px;}
.yf_c00248{bottom:1003.905000px;}
.y10_c00248{bottom:1004.130000px;}
.y12_c00248{bottom:1004.970000px;}
.yb_c00248{bottom:1021.245000px;}
.yd_c00248{bottom:1021.470000px;}
.yc_c00248{bottom:1023.405000px;}
.ya_c00248{bottom:1040.745000px;}
.y8_c00248{bottom:1042.470000px;}
.y9_c00248{bottom:1042.905000px;}
.y7_c00248{bottom:1043.130000px;}
.y6_c00248{bottom:1060.245000px;}
.y3_c00248{bottom:1061.745000px;}
.y5_c00248{bottom:1063.470000px;}
.y4_c00248{bottom:1063.905000px;}
.y2_c00248{bottom:1098.825000px;}
.y1_c00248{bottom:1102.050000px;}
.h9_c00248{height:4.206533px;}
.h7_c00248{height:16.752334px;}
.h6_c00248{height:23.025234px;}
.h1_c00248{height:25.091602px;}
.h5_c00248{height:31.364502px;}
.h4_c00248{height:35.571035px;}
.h8_c00248{height:39.044502px;}
.h2_c00248{height:39.777568px;}
.ha_c00248{height:41.571035px;}
.h3_c00248{height:43.910303px;}
.h0_c00248{height:1335.000000px;}
.w0_c00248{width:880.500000px;}
.x0_c00248{left:0.000000px;}
.x3_c00248{left:151.500000px;}
.x97_c00248{left:153.000000px;}
.x98_c00248{left:163.500000px;}
.x37_c00248{left:166.080000px;}
.xd4_c00248{left:167.355000px;}
.xc0_c00248{left:168.855000px;}
.xa1_c00248{left:180.000000px;}
.x61_c00248{left:181.080000px;}
.x38_c00248{left:183.000000px;}
.x10_c00248{left:184.500000px;}
.xdf_c00248{left:189.420000px;}
.x99_c00248{left:190.500000px;}
.x33_c00248{left:192.420000px;}
.xab_c00248{left:193.500000px;}
.x4c_c00248{left:194.580000px;}
.xed_c00248{left:197.580000px;}
.x1d_c00248{left:203.580000px;}
.xf9_c00248{left:205.500000px;}
.xdc_c00248{left:207.000000px;}
.x62_c00248{left:208.500000px;}
.xce_c00248{left:210.000000px;}
.x103_c00248{left:211.920000px;}
.xb4_c00248{left:214.500000px;}
.x42_c00248{left:217.080000px;}
.x8f_c00248{left:219.000000px;}
.x78_c00248{left:223.920000px;}
.xb7_c00248{left:225.000000px;}
.x9a_c00248{left:226.080000px;}
.x29_c00248{left:228.000000px;}
.x34_c00248{left:229.500000px;}
.x63_c00248{left:231.000000px;}
.x4_c00248{left:234.420000px;}
.x6e_c00248{left:235.920000px;}
.xc1_c00248{left:237.000000px;}
.x11_c00248{left:238.500000px;}
.xe0_c00248{left:241.500000px;}
.xf4_c00248{left:244.920000px;}
.x8d_c00248{left:246.000000px;}
.xb5_c00248{left:247.920000px;}
.x104_c00248{left:249.000000px;}
.x39_c00248{left:250.500000px;}
.x35_c00248{left:256.920000px;}
.xe7_c00248{left:258.000000px;}
.x64_c00248{left:262.920000px;}
.x6f_c00248{left:265.080000px;}
.xa4_c00248{left:267.000000px;}
.xa2_c00248{left:268.080000px;}
.xc2_c00248{left:269.580000px;}
.x12_c00248{left:271.920000px;}
.x2a_c00248{left:274.500000px;}
.xd5_c00248{left:275.580000px;}
.xd9_c00248{left:277.500000px;}
.x65_c00248{left:279.000000px;}
.x1e_c00248{left:280.080000px;}
.x4d_c00248{left:282.000000px;}
.x7e_c00248{left:283.920000px;}
.x3a_c00248{left:288.420000px;}
.xbe_c00248{left:289.920000px;}
.x2b_c00248{left:291.000000px;}
.xcf_c00248{left:292.080000px;}
.x5_c00248{left:294.000000px;}
.xa3_c00248{left:295.080000px;}
.x43_c00248{left:297.420000px;}
.xe5_c00248{left:298.920000px;}
.x70_c00248{left:300.420000px;}
.x66_c00248{left:303.000000px;}
.x3b_c00248{left:304.500000px;}
.xb8_c00248{left:306.420000px;}
.x13_c00248{left:307.500000px;}
.x90_c00248{left:310.080000px;}
.x86_c00248{left:312.000000px;}
.x6_c00248{left:313.500000px;}
.xc9_c00248{left:314.580000px;}
.x4e_c00248{left:316.080000px;}
.x8a_c00248{left:318.000000px;}
.x59_c00248{left:319.500000px;}
.x36_c00248{left:324.420000px;}
.xe6_c00248{left:325.500000px;}
.x1f_c00248{left:326.580000px;}
.xc3_c00248{left:328.500000px;}
.xbf_c00248{left:331.500000px;}
.xa5_c00248{left:333.000000px;}
.x8b_c00248{left:334.500000px;}
.xac_c00248{left:338.580000px;}
.x44_c00248{left:340.500000px;}
.x67_c00248{left:342.000000px;}
.x4f_c00248{left:345.000000px;}
.x91_c00248{left:346.500000px;}
.x79_c00248{left:347.580000px;}
.x9b_c00248{left:349.500000px;}
.xc4_c00248{left:351.000000px;}
.xee_c00248{left:353.580000px;}
.x7_c00248{left:355.500000px;}
.x20_c00248{left:360.000000px;}
.x92_c00248{left:363.000000px;}
.xca_c00248{left:364.500000px;}
.xd6_c00248{left:370.500000px;}
.x7a_c00248{left:374.580000px;}
.xda_c00248{left:376.500000px;}
.x14_c00248{left:381.420000px;}
.x21_c00248{left:382.500000px;}
.xf5_c00248{left:383.580000px;}
.x3c_c00248{left:387.000000px;}
.x87_c00248{left:388.080000px;}
.x8e_c00248{left:390.420000px;}
.x50_c00248{left:391.920000px;}
.x7f_c00248{left:393.000000px;}
.xe8_c00248{left:394.500000px;}
.xad_c00248{left:396.420000px;}
.xef_c00248{left:397.500000px;}
.x100_c00248{left:402.420000px;}
.x51_c00248{left:403.500000px;}
.x1_c00248{left:406.500000px;}
.x8_c00248{left:408.420000px;}
.xae_c00248{left:409.500000px;}
.xb9_c00248{left:410.580000px;}
.x68_c00248{left:411.645000px;}
.x9c_c00248{left:415.500000px;}
.x22_c00248{left:417.420000px;}
.x7b_c00248{left:418.500000px;}
.xd0_c00248{left:420.000000px;}
.xe1_c00248{left:421.080000px;}
.x45_c00248{left:424.080000px;}
.x15_c00248{left:427.080000px;}
.x88_c00248{left:430.080000px;}
.xd7_c00248{left:431.580000px;}
.x5a_c00248{left:433.920000px;}
.xb6_c00248{left:438.000000px;}
.x9_c00248{left:444.420000px;}
.xe9_c00248{left:445.500000px;}
.x7c_c00248{left:447.420000px;}
.x16_c00248{left:448.500000px;}
.xaf_c00248{left:449.580000px;}
.xe2_c00248{left:451.500000px;}
.x5b_c00248{left:452.580000px;}
.x52_c00248{left:454.080000px;}
.xf0_c00248{left:456.000000px;}
.x46_c00248{left:457.500000px;}
.x71_c00248{left:458.580000px;}
.x23_c00248{left:460.080000px;}
.x2c_c00248{left:461.580000px;}
.x17_c00248{left:463.080000px;}
.x69_c00248{left:465.420000px;}
.xfa_c00248{left:466.500000px;}
.xf6_c00248{left:467.580000px;}
.xa_c00248{left:471.000000px;}
.x89_c00248{left:472.500000px;}
.x7d_c00248{left:474.000000px;}
.xdd_c00248{left:475.500000px;}
.x5c_c00248{left:477.000000px;}
.xcb_c00248{left:478.500000px;}
.x24_c00248{left:480.000000px;}
.x2d_c00248{left:481.920000px;}
.x93_c00248{left:483.420000px;}
.xa6_c00248{left:484.500000px;}
.xfb_c00248{left:485.580000px;}
.x53_c00248{left:487.080000px;}
.xd1_c00248{left:488.580000px;}
.x47_c00248{left:492.420000px;}
.x9d_c00248{left:498.000000px;}
.x3d_c00248{left:499.080000px;}
.x80_c00248{left:501.420000px;}
.x105_c00248{left:502.920000px;}
.x8c_c00248{left:504.420000px;}
.xf1_c00248{left:506.580000px;}
.x48_c00248{left:508.500000px;}
.x2e_c00248{left:510.000000px;}
.xf7_c00248{left:511.080000px;}
.x25_c00248{left:514.500000px;}
.x5d_c00248{left:515.580000px;}
.x6a_c00248{left:517.500000px;}
.x81_c00248{left:518.580000px;}
.xdb_c00248{left:521.580000px;}
.xa7_c00248{left:523.920000px;}
.xfd_c00248{left:525.000000px;}
.xb_c00248{left:526.080000px;}
.xba_c00248{left:528.000000px;}
.x54_c00248{left:529.080000px;}
.xb0_c00248{left:531.420000px;}
.x5e_c00248{left:532.500000px;}
.xf2_c00248{left:534.420000px;}
.x18_c00248{left:535.500000px;}
.xd8_c00248{left:536.580000px;}
.x72_c00248{left:544.920000px;}
.x94_c00248{left:546.420000px;}
.xcc_c00248{left:547.500000px;}
.x26_c00248{left:551.580000px;}
.x3e_c00248{left:554.580000px;}
.xc_c00248{left:558.000000px;}
.xbb_c00248{left:559.500000px;}
.x82_c00248{left:561.000000px;}
.x73_c00248{left:562.080000px;}
.x49_c00248{left:563.145000px;}
.xe3_c00248{left:564.420000px;}
.x3f_c00248{left:565.500000px;}
.x2f_c00248{left:567.000000px;}
.xc5_c00248{left:568.500000px;}
.xea_c00248{left:570.000000px;}
.x55_c00248{left:572.580000px;}
.xa8_c00248{left:576.000000px;}
.x30_c00248{left:579.000000px;}
.xb1_c00248{left:583.500000px;}
.xd_c00248{left:585.420000px;}
.x9e_c00248{left:586.500000px;}
.xfc_c00248{left:589.080000px;}
.xbc_c00248{left:592.500000px;}
.xd2_c00248{left:594.000000px;}
.xfe_c00248{left:595.500000px;}
.x9f_c00248{left:598.500000px;}
.x40_c00248{left:599.580000px;}
.xa9_c00248{left:601.500000px;}
.x19_c00248{left:604.080000px;}
.x4a_c00248{left:606.420000px;}
.x101_c00248{left:607.500000px;}
.x107_c00248{left:609.000000px;}
.x83_c00248{left:612.000000px;}
.xe_c00248{left:613.920000px;}
.x74_c00248{left:615.000000px;}
.x56_c00248{left:616.500000px;}
.x31_c00248{left:617.580000px;}
.x6b_c00248{left:621.000000px;}
.x1a_c00248{left:623.580000px;}
.x84_c00248{left:625.500000px;}
.x41_c00248{left:626.580000px;}
.x5f_c00248{left:628.500000px;}
.xa0_c00248{left:633.000000px;}
.xeb_c00248{left:634.080000px;}
.x27_c00248{left:636.000000px;}
.xc6_c00248{left:637.500000px;}
.xf8_c00248{left:639.000000px;}
.x108_c00248{left:642.420000px;}
.x6c_c00248{left:650.580000px;}
.x57_c00248{left:652.080000px;}
.x106_c00248{left:655.500000px;}
.x4b_c00248{left:656.580000px;}
.xb2_c00248{left:658.080000px;}
.x75_c00248{left:660.000000px;}
.x85_c00248{left:661.080000px;}
.x60_c00248{left:663.000000px;}
.xbd_c00248{left:664.500000px;}
.x95_c00248{left:666.420000px;}
.x1b_c00248{left:670.500000px;}
.x76_c00248{left:672.000000px;}
.xd3_c00248{left:674.580000px;}
.x6d_c00248{left:678.000000px;}
.x58_c00248{left:679.500000px;}
.xf_c00248{left:681.000000px;}
.xc7_c00248{left:682.920000px;}
.x96_c00248{left:685.500000px;}
.xb3_c00248{left:687.000000px;}
.x102_c00248{left:688.500000px;}
.x32_c00248{left:690.000000px;}
.xcd_c00248{left:691.080000px;}
.xf3_c00248{left:692.580000px;}
.xc8_c00248{left:694.500000px;}
.x28_c00248{left:696.420000px;}
.xe4_c00248{left:700.500000px;}
.x2_c00248{left:703.500000px;}
.xde_c00248{left:705.000000px;}
.x77_c00248{left:706.500000px;}
.xec_c00248{left:708.420000px;}
.xaa_c00248{left:711.000000px;}
.xff_c00248{left:712.500000px;}
.x1c_c00248{left:717.000000px;}
@media print{
.v2_c00248{vertical-align:-16.000000pt;}
.v0_c00248{vertical-align:0.000000pt;}
.v3_c00248{vertical-align:5.333333pt;}
.v1_c00248{vertical-align:6.826667pt;}
.ls1_c00248{letter-spacing:0.000000pt;}
.ls0_c00248{letter-spacing:10.504533pt;}
.ws0_c00248{word-spacing:-5.711730pt;}
.ws4_c00248{word-spacing:-3.732623pt;}
.ws3_c00248{word-spacing:-3.158804pt;}
.ws1_c00248{word-spacing:-1.830167pt;}
.ws5_c00248{word-spacing:0.000000pt;}
.ws2_c00248{word-spacing:3.060459pt;}
.fs7_c00248{font-size:3.040000pt;}
.fs6_c00248{font-size:12.106667pt;}
.fs5_c00248{font-size:16.640000pt;}
.fs0_c00248{font-size:18.133333pt;}
.fs4_c00248{font-size:22.666667pt;}
.fs3_c00248{font-size:25.706667pt;}
.fs1_c00248{font-size:28.746667pt;}
.fs2_c00248{font-size:31.733333pt;}
.y0_c00248{bottom:0.000000pt;}
.y106_c00248{bottom:223.026667pt;}
.y103_c00248{bottom:223.773333pt;}
.y104_c00248{bottom:225.693333pt;}
.y108_c00248{bottom:225.893333pt;}
.y105_c00248{bottom:226.640000pt;}
.y107_c00248{bottom:227.026667pt;}
.y102_c00248{bottom:240.360000pt;}
.y100_c00248{bottom:243.226667pt;}
.y101_c00248{bottom:243.973333pt;}
.yff_c00248{bottom:244.360000pt;}
.yfc_c00248{bottom:259.773333pt;}
.yfe_c00248{bottom:260.733333pt;}
.yfd_c00248{bottom:261.693333pt;}
.yf9_c00248{bottom:277.106667pt;}
.yfb_c00248{bottom:278.066667pt;}
.yfa_c00248{bottom:278.640000pt;}
.yf8_c00248{bottom:279.026667pt;}
.yf4_c00248{bottom:294.440000pt;}
.yf6_c00248{bottom:296.360000pt;}
.yf7_c00248{bottom:296.560000pt;}
.yf5_c00248{bottom:297.706667pt;}
.yf3_c00248{bottom:321.306667pt;}
.yef_c00248{bottom:321.693333pt;}
.yf1_c00248{bottom:322.066667pt;}
.yf2_c00248{bottom:322.266667pt;}
.yee_c00248{bottom:322.640000pt;}
.yf0_c00248{bottom:323.026667pt;}
.yed_c00248{bottom:323.600000pt;}
.yec_c00248{bottom:333.306667pt;}
.ye6_c00248{bottom:334.066667pt;}
.ye7_c00248{bottom:334.266667pt;}
.ye5_c00248{bottom:334.640000pt;}
.yeb_c00248{bottom:335.026667pt;}
.yea_c00248{bottom:335.400000pt;}
.ye8_c00248{bottom:335.973333pt;}
.ye9_c00248{bottom:336.933333pt;}
.ye3_c00248{bottom:346.640000pt;}
.ye0_c00248{bottom:347.973333pt;}
.ye1_c00248{bottom:348.360000pt;}
.ye4_c00248{bottom:348.560000pt;}
.ye2_c00248{bottom:348.733333pt;}
.yde_c00248{bottom:349.306667pt;}
.ydf_c00248{bottom:349.506667pt;}
.ydd_c00248{bottom:359.973333pt;}
.yda_c00248{bottom:361.693333pt;}
.yd9_c00248{bottom:361.893333pt;}
.ydb_c00248{bottom:362.640000pt;}
.ydc_c00248{bottom:363.600000pt;}
.yd8_c00248{bottom:375.026667pt;}
.yd3_c00248{bottom:387.400000pt;}
.yd2_c00248{bottom:387.600000pt;}
.yd6_c00248{bottom:388.360000pt;}
.yd7_c00248{bottom:389.306667pt;}
.yd5_c00248{bottom:389.506667pt;}
.yd4_c00248{bottom:390.266667pt;}
.ycf_c00248{bottom:400.360000pt;}
.yd1_c00248{bottom:401.693333pt;}
.yce_c00248{bottom:401.893333pt;}
.yd0_c00248{bottom:403.600000pt;}
.yca_c00248{bottom:413.306667pt;}
.yc8_c00248{bottom:413.693333pt;}
.ycd_c00248{bottom:414.066667pt;}
.yc7_c00248{bottom:414.266667pt;}
.yc6_c00248{bottom:415.026667pt;}
.yc9_c00248{bottom:415.226667pt;}
.ycc_c00248{bottom:415.973333pt;}
.ycb_c00248{bottom:416.173333pt;}
.yc5_c00248{bottom:426.066667pt;}
.yc4_c00248{bottom:427.026667pt;}
.yc3_c00248{bottom:427.973333pt;}
.yc2_c00248{bottom:428.933333pt;}
.yc0_c00248{bottom:439.400000pt;}
.yc1_c00248{bottom:439.973333pt;}
.ybe_c00248{bottom:440.560000pt;}
.ybd_c00248{bottom:441.306667pt;}
.ybf_c00248{bottom:442.266667pt;}
.yb8_c00248{bottom:451.973333pt;}
.ybc_c00248{bottom:452.733333pt;}
.yba_c00248{bottom:453.693333pt;}
.ybb_c00248{bottom:453.893333pt;}
.yb9_c00248{bottom:454.640000pt;}
.yb3_c00248{bottom:466.066667pt;}
.yb6_c00248{bottom:466.266667pt;}
.yb5_c00248{bottom:467.026667pt;}
.yb7_c00248{bottom:467.400000pt;}
.yb4_c00248{bottom:467.973333pt;}
.yb2_c00248{bottom:468.933333pt;}
.yb1_c00248{bottom:479.400000pt;}
.yb0_c00248{bottom:492.360000pt;}
.yab_c00248{bottom:492.933333pt;}
.yac_c00248{bottom:493.693333pt;}
.yae_c00248{bottom:493.893333pt;}
.yad_c00248{bottom:494.640000pt;}
.yaf_c00248{bottom:495.600000pt;}
.yaa_c00248{bottom:505.693333pt;}
.ya8_c00248{bottom:506.640000pt;}
.ya9_c00248{bottom:506.840000pt;}
.ya7_c00248{bottom:507.600000pt;}
.y9e_c00248{bottom:517.306667pt;}
.ya6_c00248{bottom:518.066667pt;}
.ya3_c00248{bottom:518.266667pt;}
.ya4_c00248{bottom:519.026667pt;}
.ya0_c00248{bottom:519.226667pt;}
.ya1_c00248{bottom:519.400000pt;}
.y9f_c00248{bottom:519.973333pt;}
.ya5_c00248{bottom:520.173333pt;}
.ya2_c00248{bottom:521.306667pt;}
.y9d_c00248{bottom:531.400000pt;}
.y9c_c00248{bottom:532.360000pt;}
.y9b_c00248{bottom:544.733333pt;}
.y95_c00248{bottom:544.933333pt;}
.y98_c00248{bottom:545.693333pt;}
.y97_c00248{bottom:545.893333pt;}
.y96_c00248{bottom:546.640000pt;}
.y99_c00248{bottom:546.840000pt;}
.y9a_c00248{bottom:547.600000pt;}
.y92_c00248{bottom:557.306667pt;}
.y94_c00248{bottom:558.066667pt;}
.y91_c00248{bottom:559.026667pt;}
.y8f_c00248{bottom:559.973333pt;}
.y90_c00248{bottom:560.173333pt;}
.y93_c00248{bottom:560.933333pt;}
.y8c_c00248{bottom:572.360000pt;}
.y8a_c00248{bottom:572.560000pt;}
.y8d_c00248{bottom:572.933333pt;}
.y8b_c00248{bottom:573.306667pt;}
.y8e_c00248{bottom:574.266667pt;}
.y88_c00248{bottom:583.973333pt;}
.y85_c00248{bottom:584.933333pt;}
.y87_c00248{bottom:585.693333pt;}
.y89_c00248{bottom:586.640000pt;}
.y86_c00248{bottom:587.600000pt;}
.y83_c00248{bottom:597.306667pt;}
.y82_c00248{bottom:598.066667pt;}
.y81_c00248{bottom:598.266667pt;}
.y80_c00248{bottom:599.026667pt;}
.y7e_c00248{bottom:599.600000pt;}
.y7f_c00248{bottom:599.973333pt;}
.y84_c00248{bottom:600.173333pt;}
.y7b_c00248{bottom:611.400000pt;}
.y7d_c00248{bottom:612.360000pt;}
.y79_c00248{bottom:612.560000pt;}
.y7c_c00248{bottom:613.306667pt;}
.y7a_c00248{bottom:614.266667pt;}
.y76_c00248{bottom:624.360000pt;}
.y78_c00248{bottom:624.733333pt;}
.y77_c00248{bottom:625.893333pt;}
.y75_c00248{bottom:626.266667pt;}
.y70_c00248{bottom:637.693333pt;}
.y6e_c00248{bottom:637.893333pt;}
.y72_c00248{bottom:638.066667pt;}
.y71_c00248{bottom:638.640000pt;}
.y73_c00248{bottom:639.026667pt;}
.y6f_c00248{bottom:639.600000pt;}
.y74_c00248{bottom:640.173333pt;}
.y6c_c00248{bottom:651.026667pt;}
.y69_c00248{bottom:651.226667pt;}
.y6b_c00248{bottom:651.400000pt;}
.y6a_c00248{bottom:651.973333pt;}
.y6d_c00248{bottom:652.933333pt;}
.y68_c00248{bottom:663.400000pt;}
.y64_c00248{bottom:663.600000pt;}
.y67_c00248{bottom:664.360000pt;}
.y66_c00248{bottom:665.306667pt;}
.y65_c00248{bottom:666.266667pt;}
.y63_c00248{bottom:677.693333pt;}
.y5f_c00248{bottom:689.306667pt;}
.y60_c00248{bottom:690.066667pt;}
.y62_c00248{bottom:690.266667pt;}
.y5b_c00248{bottom:690.640000pt;}
.y5c_c00248{bottom:691.600000pt;}
.y5d_c00248{bottom:691.973333pt;}
.y61_c00248{bottom:692.173333pt;}
.y5e_c00248{bottom:692.933333pt;}
.y59_c00248{bottom:703.026667pt;}
.y57_c00248{bottom:703.400000pt;}
.y56_c00248{bottom:705.306667pt;}
.y58_c00248{bottom:705.506667pt;}
.y5a_c00248{bottom:706.266667pt;}
.y50_c00248{bottom:715.973333pt;}
.y52_c00248{bottom:716.933333pt;}
.y53_c00248{bottom:717.306667pt;}
.y54_c00248{bottom:717.893333pt;}
.y51_c00248{bottom:718.266667pt;}
.y55_c00248{bottom:718.640000pt;}
.y4c_c00248{bottom:728.733333pt;}
.y4d_c00248{bottom:728.933333pt;}
.y4e_c00248{bottom:729.693333pt;}
.y4f_c00248{bottom:730.066667pt;}
.y4a_c00248{bottom:730.640000pt;}
.y4b_c00248{bottom:731.600000pt;}
.y47_c00248{bottom:742.066667pt;}
.y46_c00248{bottom:743.026667pt;}
.y48_c00248{bottom:743.400000pt;}
.y45_c00248{bottom:743.973333pt;}
.y49_c00248{bottom:744.173333pt;}
.y44_c00248{bottom:744.933333pt;}
.y42_c00248{bottom:755.400000pt;}
.y3f_c00248{bottom:756.360000pt;}
.y40_c00248{bottom:757.306667pt;}
.y43_c00248{bottom:757.506667pt;}
.y41_c00248{bottom:758.266667pt;}
.y39_c00248{bottom:768.933333pt;}
.y3a_c00248{bottom:769.693333pt;}
.y3b_c00248{bottom:770.266667pt;}
.y3c_c00248{bottom:770.640000pt;}
.y3e_c00248{bottom:770.840000pt;}
.y3d_c00248{bottom:771.600000pt;}
.y30_c00248{bottom:780.933333pt;}
.y31_c00248{bottom:782.066667pt;}
.y35_c00248{bottom:782.266667pt;}
.y37_c00248{bottom:783.026667pt;}
.y32_c00248{bottom:783.226667pt;}
.y33_c00248{bottom:783.600000pt;}
.y34_c00248{bottom:783.973333pt;}
.y38_c00248{bottom:784.173333pt;}
.y36_c00248{bottom:784.933333pt;}
.y2f_c00248{bottom:795.400000pt;}
.y2e_c00248{bottom:797.306667pt;}
.y2d_c00248{bottom:798.266667pt;}
.y2c_c00248{bottom:808.360000pt;}
.y28_c00248{bottom:808.933333pt;}
.y2b_c00248{bottom:809.306667pt;}
.y2a_c00248{bottom:809.893333pt;}
.y29_c00248{bottom:810.266667pt;}
.y26_c00248{bottom:820.733333pt;}
.y27_c00248{bottom:820.933333pt;}
.y25_c00248{bottom:821.693333pt;}
.y24_c00248{bottom:822.640000pt;}
.y20_c00248{bottom:834.066667pt;}
.y22_c00248{bottom:834.266667pt;}
.y1e_c00248{bottom:835.026667pt;}
.y23_c00248{bottom:835.400000pt;}
.y1f_c00248{bottom:835.600000pt;}
.y1d_c00248{bottom:835.973333pt;}
.y1c_c00248{bottom:836.173333pt;}
.y21_c00248{bottom:836.933333pt;}
.y1b_c00248{bottom:847.400000pt;}
.y19_c00248{bottom:848.360000pt;}
.y17_c00248{bottom:848.560000pt;}
.y1a_c00248{bottom:849.306667pt;}
.y18_c00248{bottom:850.266667pt;}
.y16_c00248{bottom:873.106667pt;}
.y13_c00248{bottom:873.893333pt;}
.y14_c00248{bottom:875.026667pt;}
.y15_c00248{bottom:875.973333pt;}
.y11_c00248{bottom:890.440000pt;}
.ye_c00248{bottom:891.400000pt;}
.yf_c00248{bottom:892.360000pt;}
.y10_c00248{bottom:892.560000pt;}
.y12_c00248{bottom:893.306667pt;}
.yb_c00248{bottom:907.773333pt;}
.yd_c00248{bottom:907.973333pt;}
.yc_c00248{bottom:909.693333pt;}
.ya_c00248{bottom:925.106667pt;}
.y8_c00248{bottom:926.640000pt;}
.y9_c00248{bottom:927.026667pt;}
.y7_c00248{bottom:927.226667pt;}
.y6_c00248{bottom:942.440000pt;}
.y3_c00248{bottom:943.773333pt;}
.y5_c00248{bottom:945.306667pt;}
.y4_c00248{bottom:945.693333pt;}
.y2_c00248{bottom:976.733333pt;}
.y1_c00248{bottom:979.600000pt;}
.h9_c00248{height:3.739141pt;}
.h7_c00248{height:14.890964pt;}
.h6_c00248{height:20.466875pt;}
.h1_c00248{height:22.303646pt;}
.h5_c00248{height:27.879557pt;}
.h4_c00248{height:31.618698pt;}
.h8_c00248{height:34.706224pt;}
.h2_c00248{height:35.357839pt;}
.ha_c00248{height:36.952031pt;}
.h3_c00248{height:39.031380pt;}
.h0_c00248{height:1186.666667pt;}
.w0_c00248{width:782.666667pt;}
.x0_c00248{left:0.000000pt;}
.x3_c00248{left:134.666667pt;}
.x97_c00248{left:136.000000pt;}
.x98_c00248{left:145.333333pt;}
.x37_c00248{left:147.626667pt;}
.xd4_c00248{left:148.760000pt;}
.xc0_c00248{left:150.093333pt;}
.xa1_c00248{left:160.000000pt;}
.x61_c00248{left:160.960000pt;}
.x38_c00248{left:162.666667pt;}
.x10_c00248{left:164.000000pt;}
.xdf_c00248{left:168.373333pt;}
.x99_c00248{left:169.333333pt;}
.x33_c00248{left:171.040000pt;}
.xab_c00248{left:172.000000pt;}
.x4c_c00248{left:172.960000pt;}
.xed_c00248{left:175.626667pt;}
.x1d_c00248{left:180.960000pt;}
.xf9_c00248{left:182.666667pt;}
.xdc_c00248{left:184.000000pt;}
.x62_c00248{left:185.333333pt;}
.xce_c00248{left:186.666667pt;}
.x103_c00248{left:188.373333pt;}
.xb4_c00248{left:190.666667pt;}
.x42_c00248{left:192.960000pt;}
.x8f_c00248{left:194.666667pt;}
.x78_c00248{left:199.040000pt;}
.xb7_c00248{left:200.000000pt;}
.x9a_c00248{left:200.960000pt;}
.x29_c00248{left:202.666667pt;}
.x34_c00248{left:204.000000pt;}
.x63_c00248{left:205.333333pt;}
.x4_c00248{left:208.373333pt;}
.x6e_c00248{left:209.706667pt;}
.xc1_c00248{left:210.666667pt;}
.x11_c00248{left:212.000000pt;}
.xe0_c00248{left:214.666667pt;}
.xf4_c00248{left:217.706667pt;}
.x8d_c00248{left:218.666667pt;}
.xb5_c00248{left:220.373333pt;}
.x104_c00248{left:221.333333pt;}
.x39_c00248{left:222.666667pt;}
.x35_c00248{left:228.373333pt;}
.xe7_c00248{left:229.333333pt;}
.x64_c00248{left:233.706667pt;}
.x6f_c00248{left:235.626667pt;}
.xa4_c00248{left:237.333333pt;}
.xa2_c00248{left:238.293333pt;}
.xc2_c00248{left:239.626667pt;}
.x12_c00248{left:241.706667pt;}
.x2a_c00248{left:244.000000pt;}
.xd5_c00248{left:244.960000pt;}
.xd9_c00248{left:246.666667pt;}
.x65_c00248{left:248.000000pt;}
.x1e_c00248{left:248.960000pt;}
.x4d_c00248{left:250.666667pt;}
.x7e_c00248{left:252.373333pt;}
.x3a_c00248{left:256.373333pt;}
.xbe_c00248{left:257.706667pt;}
.x2b_c00248{left:258.666667pt;}
.xcf_c00248{left:259.626667pt;}
.x5_c00248{left:261.333333pt;}
.xa3_c00248{left:262.293333pt;}
.x43_c00248{left:264.373333pt;}
.xe5_c00248{left:265.706667pt;}
.x70_c00248{left:267.040000pt;}
.x66_c00248{left:269.333333pt;}
.x3b_c00248{left:270.666667pt;}
.xb8_c00248{left:272.373333pt;}
.x13_c00248{left:273.333333pt;}
.x90_c00248{left:275.626667pt;}
.x86_c00248{left:277.333333pt;}
.x6_c00248{left:278.666667pt;}
.xc9_c00248{left:279.626667pt;}
.x4e_c00248{left:280.960000pt;}
.x8a_c00248{left:282.666667pt;}
.x59_c00248{left:284.000000pt;}
.x36_c00248{left:288.373333pt;}
.xe6_c00248{left:289.333333pt;}
.x1f_c00248{left:290.293333pt;}
.xc3_c00248{left:292.000000pt;}
.xbf_c00248{left:294.666667pt;}
.xa5_c00248{left:296.000000pt;}
.x8b_c00248{left:297.333333pt;}
.xac_c00248{left:300.960000pt;}
.x44_c00248{left:302.666667pt;}
.x67_c00248{left:304.000000pt;}
.x4f_c00248{left:306.666667pt;}
.x91_c00248{left:308.000000pt;}
.x79_c00248{left:308.960000pt;}
.x9b_c00248{left:310.666667pt;}
.xc4_c00248{left:312.000000pt;}
.xee_c00248{left:314.293333pt;}
.x7_c00248{left:316.000000pt;}
.x20_c00248{left:320.000000pt;}
.x92_c00248{left:322.666667pt;}
.xca_c00248{left:324.000000pt;}
.xd6_c00248{left:329.333333pt;}
.x7a_c00248{left:332.960000pt;}
.xda_c00248{left:334.666667pt;}
.x14_c00248{left:339.040000pt;}
.x21_c00248{left:340.000000pt;}
.xf5_c00248{left:340.960000pt;}
.x3c_c00248{left:344.000000pt;}
.x87_c00248{left:344.960000pt;}
.x8e_c00248{left:347.040000pt;}
.x50_c00248{left:348.373333pt;}
.x7f_c00248{left:349.333333pt;}
.xe8_c00248{left:350.666667pt;}
.xad_c00248{left:352.373333pt;}
.xef_c00248{left:353.333333pt;}
.x100_c00248{left:357.706667pt;}
.x51_c00248{left:358.666667pt;}
.x1_c00248{left:361.333333pt;}
.x8_c00248{left:363.040000pt;}
.xae_c00248{left:364.000000pt;}
.xb9_c00248{left:364.960000pt;}
.x68_c00248{left:365.906667pt;}
.x9c_c00248{left:369.333333pt;}
.x22_c00248{left:371.040000pt;}
.x7b_c00248{left:372.000000pt;}
.xd0_c00248{left:373.333333pt;}
.xe1_c00248{left:374.293333pt;}
.x45_c00248{left:376.960000pt;}
.x15_c00248{left:379.626667pt;}
.x88_c00248{left:382.293333pt;}
.xd7_c00248{left:383.626667pt;}
.x5a_c00248{left:385.706667pt;}
.xb6_c00248{left:389.333333pt;}
.x9_c00248{left:395.040000pt;}
.xe9_c00248{left:396.000000pt;}
.x7c_c00248{left:397.706667pt;}
.x16_c00248{left:398.666667pt;}
.xaf_c00248{left:399.626667pt;}
.xe2_c00248{left:401.333333pt;}
.x5b_c00248{left:402.293333pt;}
.x52_c00248{left:403.626667pt;}
.xf0_c00248{left:405.333333pt;}
.x46_c00248{left:406.666667pt;}
.x71_c00248{left:407.626667pt;}
.x23_c00248{left:408.960000pt;}
.x2c_c00248{left:410.293333pt;}
.x17_c00248{left:411.626667pt;}
.x69_c00248{left:413.706667pt;}
.xfa_c00248{left:414.666667pt;}
.xf6_c00248{left:415.626667pt;}
.xa_c00248{left:418.666667pt;}
.x89_c00248{left:420.000000pt;}
.x7d_c00248{left:421.333333pt;}
.xdd_c00248{left:422.666667pt;}
.x5c_c00248{left:424.000000pt;}
.xcb_c00248{left:425.333333pt;}
.x24_c00248{left:426.666667pt;}
.x2d_c00248{left:428.373333pt;}
.x93_c00248{left:429.706667pt;}
.xa6_c00248{left:430.666667pt;}
.xfb_c00248{left:431.626667pt;}
.x53_c00248{left:432.960000pt;}
.xd1_c00248{left:434.293333pt;}
.x47_c00248{left:437.706667pt;}
.x9d_c00248{left:442.666667pt;}
.x3d_c00248{left:443.626667pt;}
.x80_c00248{left:445.706667pt;}
.x105_c00248{left:447.040000pt;}
.x8c_c00248{left:448.373333pt;}
.xf1_c00248{left:450.293333pt;}
.x48_c00248{left:452.000000pt;}
.x2e_c00248{left:453.333333pt;}
.xf7_c00248{left:454.293333pt;}
.x25_c00248{left:457.333333pt;}
.x5d_c00248{left:458.293333pt;}
.x6a_c00248{left:460.000000pt;}
.x81_c00248{left:460.960000pt;}
.xdb_c00248{left:463.626667pt;}
.xa7_c00248{left:465.706667pt;}
.xfd_c00248{left:466.666667pt;}
.xb_c00248{left:467.626667pt;}
.xba_c00248{left:469.333333pt;}
.x54_c00248{left:470.293333pt;}
.xb0_c00248{left:472.373333pt;}
.x5e_c00248{left:473.333333pt;}
.xf2_c00248{left:475.040000pt;}
.x18_c00248{left:476.000000pt;}
.xd8_c00248{left:476.960000pt;}
.x72_c00248{left:484.373333pt;}
.x94_c00248{left:485.706667pt;}
.xcc_c00248{left:486.666667pt;}
.x26_c00248{left:490.293333pt;}
.x3e_c00248{left:492.960000pt;}
.xc_c00248{left:496.000000pt;}
.xbb_c00248{left:497.333333pt;}
.x82_c00248{left:498.666667pt;}
.x73_c00248{left:499.626667pt;}
.x49_c00248{left:500.573333pt;}
.xe3_c00248{left:501.706667pt;}
.x3f_c00248{left:502.666667pt;}
.x2f_c00248{left:504.000000pt;}
.xc5_c00248{left:505.333333pt;}
.xea_c00248{left:506.666667pt;}
.x55_c00248{left:508.960000pt;}
.xa8_c00248{left:512.000000pt;}
.x30_c00248{left:514.666667pt;}
.xb1_c00248{left:518.666667pt;}
.xd_c00248{left:520.373333pt;}
.x9e_c00248{left:521.333333pt;}
.xfc_c00248{left:523.626667pt;}
.xbc_c00248{left:526.666667pt;}
.xd2_c00248{left:528.000000pt;}
.xfe_c00248{left:529.333333pt;}
.x9f_c00248{left:532.000000pt;}
.x40_c00248{left:532.960000pt;}
.xa9_c00248{left:534.666667pt;}
.x19_c00248{left:536.960000pt;}
.x4a_c00248{left:539.040000pt;}
.x101_c00248{left:540.000000pt;}
.x107_c00248{left:541.333333pt;}
.x83_c00248{left:544.000000pt;}
.xe_c00248{left:545.706667pt;}
.x74_c00248{left:546.666667pt;}
.x56_c00248{left:548.000000pt;}
.x31_c00248{left:548.960000pt;}
.x6b_c00248{left:552.000000pt;}
.x1a_c00248{left:554.293333pt;}
.x84_c00248{left:556.000000pt;}
.x41_c00248{left:556.960000pt;}
.x5f_c00248{left:558.666667pt;}
.xa0_c00248{left:562.666667pt;}
.xeb_c00248{left:563.626667pt;}
.x27_c00248{left:565.333333pt;}
.xc6_c00248{left:566.666667pt;}
.xf8_c00248{left:568.000000pt;}
.x108_c00248{left:571.040000pt;}
.x6c_c00248{left:578.293333pt;}
.x57_c00248{left:579.626667pt;}
.x106_c00248{left:582.666667pt;}
.x4b_c00248{left:583.626667pt;}
.xb2_c00248{left:584.960000pt;}
.x75_c00248{left:586.666667pt;}
.x85_c00248{left:587.626667pt;}
.x60_c00248{left:589.333333pt;}
.xbd_c00248{left:590.666667pt;}
.x95_c00248{left:592.373333pt;}
.x1b_c00248{left:596.000000pt;}
.x76_c00248{left:597.333333pt;}
.xd3_c00248{left:599.626667pt;}
.x6d_c00248{left:602.666667pt;}
.x58_c00248{left:604.000000pt;}
.xf_c00248{left:605.333333pt;}
.xc7_c00248{left:607.040000pt;}
.x96_c00248{left:609.333333pt;}
.xb3_c00248{left:610.666667pt;}
.x102_c00248{left:612.000000pt;}
.x32_c00248{left:613.333333pt;}
.xcd_c00248{left:614.293333pt;}
.xf3_c00248{left:615.626667pt;}
.xc8_c00248{left:617.333333pt;}
.x28_c00248{left:619.040000pt;}
.xe4_c00248{left:622.666667pt;}
.x2_c00248{left:625.333333pt;}
.xde_c00248{left:626.666667pt;}
.x77_c00248{left:628.000000pt;}
.xec_c00248{left:629.706667pt;}
.xaa_c00248{left:632.000000pt;}
.xff_c00248{left:633.333333pt;}
.x1c_c00248{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d4771ec5b6f117c90c9881a.woff2')format("woff");}.ff1_c00249{font-family:ff1_c00249;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mec_c00249{transform:matrix(0.218558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218558,0.000000,0.000000,0.250000,0,0);}
.mda_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);}
.mea_c00249{transform:matrix(0.337040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337040,0.000000,0.000000,0.250000,0,0);}
.m2d_c00249{transform:matrix(0.345859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345859,0.000000,0.000000,0.250000,0,0);}
.m68_c00249{transform:matrix(0.363497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363497,0.000000,0.000000,0.250000,0,0);}
.mb4_c00249{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m28_c00249{transform:matrix(0.365414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365414,0.000000,0.000000,0.250000,0,0);}
.mc6_c00249{transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);}
.mbf_c00249{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.mbe_c00249{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mf6_c00249{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m9f_c00249{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mc9_c00249{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m81_c00249{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.md8_c00249{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.mf5_c00249{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m5e_c00249{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m30_c00249{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m78_c00249{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m8b_c00249{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mf4_c00249{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m74_c00249{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.mee_c00249{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.mb6_c00249{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mef_c00249{transform:matrix(0.398773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398773,0.000000,0.000000,0.250000,0,0);}
.mcb_c00249{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m37_c00249{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m8a_c00249{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.mf0_c00249{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m31_c00249{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m98_c00249{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.mde_c00249{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m49_c00249{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.mb7_c00249{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mb0_c00249{transform:matrix(0.409509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409509,0.000000,0.000000,0.250000,0,0);}
.m4e_c00249{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m51_c00249{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.m94_c00249{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m84_c00249{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.md1_c00249{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m46_c00249{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m24_c00249{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m63_c00249{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m91_c00249{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m52_c00249{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m79_c00249{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.ma0_c00249{transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);}
.m67_c00249{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.md6_c00249{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m41_c00249{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m38_c00249{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mf3_c00249{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mbc_c00249{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mba_c00249{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m6c_c00249{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m14_c00249{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m2e_c00249{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.mdb_c00249{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.mdd_c00249{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.m26_c00249{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m9c_c00249{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m58_c00249{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m87_c00249{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m88_c00249{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m9_c00249{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m4c_c00249{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.ma2_c00249{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.ma1_c00249{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m7c_c00249{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m54_c00249{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m82_c00249{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m6_c00249{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m92_c00249{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.me9_c00249{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mbb_c00249{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m7_c00249{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.m8f_c00249{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.mc1_c00249{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.mcd_c00249{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m4d_c00249{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m8c_c00249{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.me0_c00249{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.ma3_c00249{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.mcf_c00249{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.ma8_c00249{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.med_c00249{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.mf2_c00249{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m7a_c00249{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mb8_c00249{transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);}
.m5a_c00249{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.ma5_c00249{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m9a_c00249{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.m6a_c00249{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m35_c00249{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m96_c00249{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m2c_c00249{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.mdc_c00249{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m7e_c00249{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m93_c00249{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.md7_c00249{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.mcc_c00249{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mc0_c00249{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.me1_c00249{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m86_c00249{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.m25_c00249{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m65_c00249{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.ma6_c00249{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.md0_c00249{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m5d_c00249{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m9d_c00249{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m15_c00249{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.me5_c00249{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m22_c00249{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m10_c00249{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_c00249{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m47_c00249{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m90_c00249{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m3b_c00249{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.mb2_c00249{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m55_c00249{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m85_c00249{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.me8_c00249{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m1c_c00249{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m13_c00249{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mca_c00249{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m4f_c00249{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.mf_c00249{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m36_c00249{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.maf_c00249{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.me3_c00249{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m8d_c00249{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m34_c00249{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m9b_c00249{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.me7_c00249{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m6e_c00249{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mb_c00249{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m61_c00249{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.md2_c00249{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m8_c00249{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m99_c00249{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m1f_c00249{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.md_c00249{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.me6_c00249{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.ma_c00249{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m1e_c00249{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m4_c00249{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m27_c00249{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m62_c00249{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m1b_c00249{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mae_c00249{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.md5_c00249{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.mf7_c00249{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m11_c00249{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m6b_c00249{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m12_c00249{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mc3_c00249{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m77_c00249{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.mb1_c00249{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m53_c00249{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m32_c00249{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m66_c00249{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m50_c00249{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m70_c00249{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mb5_c00249{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m6d_c00249{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m95_c00249{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.md3_c00249{transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);}
.mc8_c00249{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);}
.m16_c00249{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mc5_c00249{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m43_c00249{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m71_c00249{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mf1_c00249{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.mac_c00249{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.m7d_c00249{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.mab_c00249{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.mc_c00249{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mce_c00249{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m9e_c00249{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m89_c00249{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m7f_c00249{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m73_c00249{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m83_c00249{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mbd_c00249{transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);}
.mc7_c00249{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m2b_c00249{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m5b_c00249{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.ma9_c00249{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.md9_c00249{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m42_c00249{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.md4_c00249{transform:matrix(0.587059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587059,0.000000,0.000000,0.250000,0,0);}
.m60_c00249{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.mc4_c00249{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m48_c00249{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m3f_c00249{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m76_c00249{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m21_c00249{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);}
.ma7_c00249{transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);}
.m19_c00249{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m1_c00249{transform:matrix(0.606618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606618,0.000000,0.000000,0.250000,0,0);}
.m4b_c00249{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m44_c00249{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m3c_c00249{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m3a_c00249{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m2_c00249{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m3d_c00249{transform:matrix(0.617059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617059,0.000000,0.000000,0.250000,0,0);}
.m5c_c00249{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.ma4_c00249{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.me_c00249{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m56_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);}
.m1a_c00249{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m72_c00249{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.m3e_c00249{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m2f_c00249{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.mb3_c00249{transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);}
.mad_c00249{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.mc2_c00249{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m80_c00249{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);}
.m20_c00249{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m97_c00249{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m2a_c00249{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m33_c00249{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m40_c00249{transform:matrix(0.680588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680588,0.000000,0.000000,0.250000,0,0);}
.m75_c00249{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m59_c00249{transform:matrix(0.695882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695882,0.000000,0.000000,0.250000,0,0);}
.m29_c00249{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m18_c00249{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m1d_c00249{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.maa_c00249{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m6f_c00249{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m64_c00249{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m39_c00249{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m8e_c00249{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m0_c00249{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m5f_c00249{transform:matrix(0.736471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736471,0.000000,0.000000,0.250000,0,0);}
.m7b_c00249{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m3_c00249{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m17_c00249{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m45_c00249{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.meb_c00249{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.mdf_c00249{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.m57_c00249{transform:matrix(0.793269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.793269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.793269,0.000000,0.000000,0.250000,0,0);}
.me2_c00249{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m4a_c00249{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m69_c00249{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m5_c00249{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.mb9_c00249{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.me4_c00249{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-3.895508px;}
.ws1_c00249{word-spacing:0.000000px;}
.fc0_c00249{color:transparent;}
.fs7_c00249{font-size:3.420000px;}
.fs0_c00249{font-size:18.720000px;}
.fs1_c00249{font-size:20.400000px;}
.fs4_c00249{font-size:25.500000px;}
.fs2_c00249{font-size:28.920000px;}
.fs5_c00249{font-size:32.340000px;}
.fs3_c00249{font-size:35.700000px;}
.fs6_c00249{font-size:39.120000px;}
.y0_c00249{bottom:0.000000px;}
.yfa_c00249{bottom:251.745000px;}
.yfc_c00249{bottom:251.970000px;}
.yfb_c00249{bottom:253.470000px;}
.yf8_c00249{bottom:253.905000px;}
.yf9_c00249{bottom:254.130000px;}
.yf7_c00249{bottom:254.970000px;}
.yf0_c00249{bottom:270.180000px;}
.yf6_c00249{bottom:270.405000px;}
.yf5_c00249{bottom:271.245000px;}
.yf4_c00249{bottom:271.680000px;}
.yf1_c00249{bottom:273.405000px;}
.yf2_c00249{bottom:273.630000px;}
.yf3_c00249{bottom:274.905000px;}
.yee_c00249{bottom:289.905000px;}
.yec_c00249{bottom:291.405000px;}
.yef_c00249{bottom:291.825000px;}
.ye9_c00249{bottom:292.905000px;}
.yed_c00249{bottom:293.130000px;}
.yeb_c00249{bottom:294.405000px;}
.yea_c00249{bottom:294.420000px;}
.ye7_c00249{bottom:310.470000px;}
.ye8_c00249{bottom:310.905000px;}
.ye4_c00249{bottom:311.745000px;}
.ye5_c00249{bottom:312.630000px;}
.ye3_c00249{bottom:312.825000px;}
.ye6_c00249{bottom:314.970000px;}
.ydf_c00249{bottom:328.905000px;}
.ye2_c00249{bottom:329.970000px;}
.ye1_c00249{bottom:330.180000px;}
.yde_c00249{bottom:330.405000px;}
.ydc_c00249{bottom:331.245000px;}
.ye0_c00249{bottom:332.130000px;}
.yda_c00249{bottom:332.970000px;}
.ydb_c00249{bottom:333.405000px;}
.ydd_c00249{bottom:333.630000px;}
.yd6_c00249{bottom:349.905000px;}
.yd8_c00249{bottom:350.745000px;}
.yd7_c00249{bottom:350.970000px;}
.yd9_c00249{bottom:351.630000px;}
.yd5_c00249{bottom:351.825000px;}
.yd4_c00249{bottom:352.905000px;}
.yd0_c00249{bottom:370.245000px;}
.yd1_c00249{bottom:370.470000px;}
.yd3_c00249{bottom:371.325000px;}
.yd2_c00249{bottom:371.745000px;}
.ycf_c00249{bottom:372.405000px;}
.yce_c00249{bottom:389.745000px;}
.ycd_c00249{bottom:391.905000px;}
.ycc_c00249{bottom:392.130000px;}
.yca_c00249{bottom:392.970000px;}
.ycb_c00249{bottom:393.405000px;}
.yc7_c00249{bottom:410.745000px;}
.yc9_c00249{bottom:411.630000px;}
.yc8_c00249{bottom:412.905000px;}
.yc5_c00249{bottom:428.745000px;}
.yc3_c00249{bottom:428.970000px;}
.ybf_c00249{bottom:430.245000px;}
.yc6_c00249{bottom:431.130000px;}
.yc0_c00249{bottom:431.745000px;}
.yc4_c00249{bottom:431.970000px;}
.yc2_c00249{bottom:432.405000px;}
.yc1_c00249{bottom:432.825000px;}
.ybe_c00249{bottom:433.470000px;}
.ybb_c00249{bottom:449.745000px;}
.ybc_c00249{bottom:450.630000px;}
.ybd_c00249{bottom:450.825000px;}
.yba_c00249{bottom:451.905000px;}
.yb3_c00249{bottom:469.680000px;}
.yb8_c00249{bottom:470.550000px;}
.yb4_c00249{bottom:470.745000px;}
.yb9_c00249{bottom:471.405000px;}
.yb6_c00249{bottom:471.630000px;}
.yb7_c00249{bottom:472.470000px;}
.yb5_c00249{bottom:472.905000px;}
.yb0_c00249{bottom:487.905000px;}
.yaf_c00249{bottom:490.245000px;}
.yb2_c00249{bottom:490.905000px;}
.yb1_c00249{bottom:491.130000px;}
.yae_c00249{bottom:491.325000px;}
.yac_c00249{bottom:491.970000px;}
.yad_c00249{bottom:492.405000px;}
.yab_c00249{bottom:493.470000px;}
.ya9_c00249{bottom:508.245000px;}
.yaa_c00249{bottom:510.405000px;}
.ya5_c00249{bottom:510.630000px;}
.ya8_c00249{bottom:510.825000px;}
.ya7_c00249{bottom:511.905000px;}
.ya6_c00249{bottom:512.970000px;}
.ya1_c00249{bottom:526.905000px;}
.ya4_c00249{bottom:527.970000px;}
.y9e_c00249{bottom:529.245000px;}
.ya3_c00249{bottom:529.905000px;}
.ya0_c00249{bottom:530.130000px;}
.ya2_c00249{bottom:530.970000px;}
.y9f_c00249{bottom:531.405000px;}
.y9b_c00249{bottom:548.745000px;}
.y9c_c00249{bottom:549.630000px;}
.y9d_c00249{bottom:549.825000px;}
.y99_c00249{bottom:550.905000px;}
.y9a_c00249{bottom:552.405000px;}
.y92_c00249{bottom:567.405000px;}
.y98_c00249{bottom:568.245000px;}
.y93_c00249{bottom:569.745000px;}
.y97_c00249{bottom:570.405000px;}
.y96_c00249{bottom:570.630000px;}
.y94_c00249{bottom:570.825000px;}
.y95_c00249{bottom:571.470000px;}
.y91_c00249{bottom:571.905000px;}
.y8d_c00249{bottom:587.325000px;}
.y8f_c00249{bottom:587.745000px;}
.y8c_c00249{bottom:588.825000px;}
.y8b_c00249{bottom:589.245000px;}
.y90_c00249{bottom:589.470000px;}
.y89_c00249{bottom:589.905000px;}
.y8e_c00249{bottom:590.970000px;}
.y8a_c00249{bottom:591.405000px;}
.y87_c00249{bottom:607.245000px;}
.y86_c00249{bottom:608.325000px;}
.y84_c00249{bottom:609.405000px;}
.y88_c00249{bottom:609.630000px;}
.y85_c00249{bottom:610.470000px;}
.y83_c00249{bottom:626.745000px;}
.y81_c00249{bottom:628.245000px;}
.y82_c00249{bottom:628.905000px;}
.y80_c00249{bottom:629.325000px;}
.y7f_c00249{bottom:630.405000px;}
.y7e_c00249{bottom:647.325000px;}
.y7d_c00249{bottom:647.745000px;}
.y7c_c00249{bottom:648.630000px;}
.y79_c00249{bottom:648.825000px;}
.y7b_c00249{bottom:649.905000px;}
.y7a_c00249{bottom:650.970000px;}
.y74_c00249{bottom:667.245000px;}
.y73_c00249{bottom:668.130000px;}
.y75_c00249{bottom:668.325000px;}
.y76_c00249{bottom:668.970000px;}
.y78_c00249{bottom:669.405000px;}
.y77_c00249{bottom:670.470000px;}
.y70_c00249{bottom:686.745000px;}
.y72_c00249{bottom:687.630000px;}
.y6f_c00249{bottom:688.905000px;}
.y71_c00249{bottom:689.130000px;}
.y6e_c00249{bottom:705.825000px;}
.y6b_c00249{bottom:706.245000px;}
.y6d_c00249{bottom:707.325000px;}
.y6a_c00249{bottom:708.405000px;}
.y6c_c00249{bottom:709.470000px;}
.y69_c00249{bottom:725.325000px;}
.y68_c00249{bottom:725.745000px;}
.y65_c00249{bottom:727.245000px;}
.y64_c00249{bottom:727.905000px;}
.y67_c00249{bottom:728.130000px;}
.y66_c00249{bottom:728.970000px;}
.y62_c00249{bottom:743.970000px;}
.y5c_c00249{bottom:745.245000px;}
.y60_c00249{bottom:745.470000px;}
.y61_c00249{bottom:746.325000px;}
.y5d_c00249{bottom:746.745000px;}
.y63_c00249{bottom:746.970000px;}
.y5b_c00249{bottom:747.405000px;}
.y5f_c00249{bottom:748.470000px;}
.y5e_c00249{bottom:748.905000px;}
.y56_c00249{bottom:766.050000px;}
.y57_c00249{bottom:766.245000px;}
.y5a_c00249{bottom:767.130000px;}
.y59_c00249{bottom:768.405000px;}
.y58_c00249{bottom:768.630000px;}
.y53_c00249{bottom:785.745000px;}
.y55_c00249{bottom:786.825000px;}
.y51_c00249{bottom:787.905000px;}
.y54_c00249{bottom:788.130000px;}
.y52_c00249{bottom:788.970000px;}
.y50_c00249{bottom:803.970000px;}
.y4f_c00249{bottom:805.245000px;}
.y4d_c00249{bottom:806.130000px;}
.y4c_c00249{bottom:807.405000px;}
.y4e_c00249{bottom:808.470000px;}
.y49_c00249{bottom:824.745000px;}
.y4b_c00249{bottom:825.405000px;}
.y4a_c00249{bottom:825.630000px;}
.y47_c00249{bottom:826.905000px;}
.y48_c00249{bottom:827.130000px;}
.y46_c00249{bottom:843.180000px;}
.y45_c00249{bottom:844.245000px;}
.y42_c00249{bottom:844.470000px;}
.y43_c00249{bottom:845.745000px;}
.y40_c00249{bottom:846.405000px;}
.y44_c00249{bottom:846.630000px;}
.y41_c00249{bottom:847.905000px;}
.y3d_c00249{bottom:865.245000px;}
.y3f_c00249{bottom:865.905000px;}
.y3e_c00249{bottom:866.970000px;}
.y3b_c00249{bottom:867.405000px;}
.y3c_c00249{bottom:868.470000px;}
.y3a_c00249{bottom:885.630000px;}
.y37_c00249{bottom:886.470000px;}
.y38_c00249{bottom:886.905000px;}
.y39_c00249{bottom:887.970000px;}
.y36_c00249{bottom:902.745000px;}
.y34_c00249{bottom:904.245000px;}
.y31_c00249{bottom:904.905000px;}
.y35_c00249{bottom:905.130000px;}
.y32_c00249{bottom:905.970000px;}
.y33_c00249{bottom:906.405000px;}
.y2f_c00249{bottom:921.405000px;}
.y2c_c00249{bottom:923.745000px;}
.y2e_c00249{bottom:924.630000px;}
.y30_c00249{bottom:924.825000px;}
.y2d_c00249{bottom:925.905000px;}
.y2a_c00249{bottom:943.245000px;}
.y28_c00249{bottom:944.745000px;}
.y25_c00249{bottom:945.405000px;}
.y27_c00249{bottom:945.630000px;}
.y29_c00249{bottom:945.825000px;}
.y2b_c00249{bottom:946.470000px;}
.y26_c00249{bottom:946.905000px;}
.y23_c00249{bottom:962.745000px;}
.y24_c00249{bottom:964.470000px;}
.y20_c00249{bottom:964.905000px;}
.y22_c00249{bottom:965.130000px;}
.y21_c00249{bottom:965.970000px;}
.y1a_c00249{bottom:982.245000px;}
.y1f_c00249{bottom:983.130000px;}
.y1e_c00249{bottom:983.325000px;}
.y1d_c00249{bottom:983.970000px;}
.y1c_c00249{bottom:984.405000px;}
.y1b_c00249{bottom:985.470000px;}
.y19_c00249{bottom:1000.680000px;}
.y16_c00249{bottom:1002.180000px;}
.y17_c00249{bottom:1003.050000px;}
.y15_c00249{bottom:1003.245000px;}
.y13_c00249{bottom:1003.905000px;}
.y18_c00249{bottom:1004.130000px;}
.y14_c00249{bottom:1005.405000px;}
.y12_c00249{bottom:1023.405000px;}
.yf_c00249{bottom:1023.630000px;}
.y11_c00249{bottom:1024.470000px;}
.ye_c00249{bottom:1024.905000px;}
.y10_c00249{bottom:1025.970000px;}
.ya_c00249{bottom:1042.245000px;}
.y8_c00249{bottom:1042.905000px;}
.yc_c00249{bottom:1043.130000px;}
.yb_c00249{bottom:1043.325000px;}
.yd_c00249{bottom:1043.970000px;}
.y9_c00249{bottom:1044.405000px;}
.y7_c00249{bottom:1058.970000px;}
.y6_c00249{bottom:1061.745000px;}
.y3_c00249{bottom:1062.405000px;}
.y4_c00249{bottom:1062.630000px;}
.y5_c00249{bottom:1063.905000px;}
.y2_c00249{bottom:1102.050000px;}
.y1_c00249{bottom:1103.130000px;}
.h8_c00249{height:4.206533px;}
.h1_c00249{height:23.025234px;}
.h2_c00249{height:25.091602px;}
.h5_c00249{height:31.364502px;}
.h3_c00249{height:35.571035px;}
.h6_c00249{height:39.777568px;}
.h4_c00249{height:43.910303px;}
.h7_c00249{height:48.116836px;}
.h0_c00249{height:1335.000000px;}
.w0_c00249{width:880.500000px;}
.x0_c00249{left:0.000000px;}
.x38_c00249{left:151.080000px;}
.x1_c00249{left:153.000000px;}
.xf9_c00249{left:168.000000px;}
.xb3_c00249{left:169.920000px;}
.xb9_c00249{left:171.420000px;}
.x8b_c00249{left:172.500000px;}
.x3_c00249{left:174.000000px;}
.xac_c00249{left:179.580000px;}
.x49_c00249{left:181.080000px;}
.x9c_c00249{left:183.000000px;}
.x82_c00249{left:184.500000px;}
.x63_c00249{left:186.000000px;}
.x102_c00249{left:188.580000px;}
.x4_c00249{left:190.920000px;}
.x95_c00249{left:193.500000px;}
.xf3_c00249{left:195.000000px;}
.x83_c00249{left:198.000000px;}
.x8c_c00249{left:199.920000px;}
.x6d_c00249{left:201.000000px;}
.x52_c00249{left:202.920000px;}
.x2b_c00249{left:205.080000px;}
.xc6_c00249{left:207.000000px;}
.xf_c00249{left:208.080000px;}
.x1e_c00249{left:210.000000px;}
.x39_c00249{left:213.000000px;}
.x75_c00249{left:214.920000px;}
.x113_c00249{left:216.000000px;}
.x9d_c00249{left:220.080000px;}
.x4a_c00249{left:222.000000px;}
.x2c_c00249{left:223.920000px;}
.x5a_c00249{left:225.000000px;}
.x10_c00249{left:226.920000px;}
.xd3_c00249{left:229.500000px;}
.x53_c00249{left:230.580000px;}
.xad_c00249{left:233.580000px;}
.xe5_c00249{left:236.580000px;}
.xfa_c00249{left:238.500000px;}
.xe1_c00249{left:240.000000px;}
.x84_c00249{left:241.080000px;}
.x1f_c00249{left:242.580000px;}
.xdd_c00249{left:244.920000px;}
.x5_c00249{left:249.000000px;}
.x5b_c00249{left:250.500000px;}
.xae_c00249{left:252.420000px;}
.x11_c00249{left:253.500000px;}
.x114_c00249{left:255.000000px;}
.x6e_c00249{left:256.080000px;}
.x8d_c00249{left:258.000000px;}
.x118_c00249{left:259.500000px;}
.xc7_c00249{left:260.580000px;}
.x20_c00249{left:262.920000px;}
.xb4_c00249{left:264.000000px;}
.xfe_c00249{left:265.275000px;}
.x64_c00249{left:267.000000px;}
.x96_c00249{left:268.500000px;}
.x103_c00249{left:269.580000px;}
.x54_c00249{left:271.500000px;}
.x6f_c00249{left:277.920000px;}
.x41_c00249{left:279.000000px;}
.xa7_c00249{left:280.500000px;}
.x85_c00249{left:281.580000px;}
.x9e_c00249{left:283.920000px;}
.xec_c00249{left:285.000000px;}
.x55_c00249{left:286.500000px;}
.x2d_c00249{left:288.000000px;}
.x3a_c00249{left:289.920000px;}
.x12_c00249{left:291.420000px;}
.xba_c00249{left:292.920000px;}
.x115_c00249{left:294.420000px;}
.xf4_c00249{left:295.920000px;}
.x65_c00249{left:298.080000px;}
.xb5_c00249{left:300.000000px;}
.x2e_c00249{left:303.000000px;}
.x6_c00249{left:304.920000px;}
.x4b_c00249{left:306.000000px;}
.xce_c00249{left:307.920000px;}
.x76_c00249{left:310.920000px;}
.xa8_c00249{left:312.000000px;}
.x10e_c00249{left:313.500000px;}
.xc1_c00249{left:314.580000px;}
.x66_c00249{left:316.920000px;}
.x9f_c00249{left:321.000000px;}
.x11b_c00249{left:322.500000px;}
.x8e_c00249{left:323.580000px;}
.xd4_c00249{left:325.080000px;}
.x86_c00249{left:328.500000px;}
.x13_c00249{left:330.420000px;}
.x56_c00249{left:331.500000px;}
.x21_c00249{left:333.000000px;}
.x42_c00249{left:334.500000px;}
.xf5_c00249{left:336.000000px;}
.x97_c00249{left:338.580000px;}
.x116_c00249{left:340.920000px;}
.x67_c00249{left:343.080000px;}
.xbb_c00249{left:345.000000px;}
.xc2_c00249{left:346.500000px;}
.x3b_c00249{left:347.580000px;}
.x70_c00249{left:351.000000px;}
.xbf_c00249{left:352.500000px;}
.x8f_c00249{left:355.500000px;}
.x4c_c00249{left:357.000000px;}
.xaf_c00249{left:360.420000px;}
.x22_c00249{left:361.500000px;}
.x2f_c00249{left:363.420000px;}
.x14_c00249{left:364.920000px;}
.x104_c00249{left:366.000000px;}
.xd5_c00249{left:369.420000px;}
.x98_c00249{left:370.920000px;}
.xbc_c00249{left:372.420000px;}
.xb6_c00249{left:375.420000px;}
.x109_c00249{left:376.500000px;}
.x7_c00249{left:379.500000px;}
.xff_c00249{left:381.000000px;}
.x71_c00249{left:383.580000px;}
.x68_c00249{left:385.500000px;}
.x10f_c00249{left:387.000000px;}
.xcf_c00249{left:388.500000px;}
.xa0_c00249{left:390.000000px;}
.xc8_c00249{left:391.500000px;}
.x90_c00249{left:393.000000px;}
.xe6_c00249{left:394.500000px;}
.x7e_c00249{left:396.000000px;}
.xd6_c00249{left:397.920000px;}
.x3c_c00249{left:399.000000px;}
.xef_c00249{left:400.080000px;}
.xfb_c00249{left:401.580000px;}
.x105_c00249{left:404.580000px;}
.x23_c00249{left:406.920000px;}
.x5c_c00249{left:408.000000px;}
.x2_c00249{left:409.500000px;}
.x99_c00249{left:411.000000px;}
.x110_c00249{left:412.500000px;}
.x77_c00249{left:413.580000px;}
.x69_c00249{left:417.000000px;}
.x15_c00249{left:419.355000px;}
.x30_c00249{left:421.500000px;}
.xde_c00249{left:424.080000px;}
.x5d_c00249{left:427.920000px;}
.x11e_c00249{left:429.000000px;}
.x87_c00249{left:430.500000px;}
.xfc_c00249{left:432.420000px;}
.x4d_c00249{left:433.500000px;}
.xa1_c00249{left:435.000000px;}
.x106_c00249{left:438.000000px;}
.x31_c00249{left:439.500000px;}
.xe7_c00249{left:442.500000px;}
.xa9_c00249{left:444.420000px;}
.x78_c00249{left:445.920000px;}
.xb7_c00249{left:447.000000px;}
.xb0_c00249{left:449.580000px;}
.xd7_c00249{left:451.500000px;}
.xe2_c00249{left:453.000000px;}
.x5e_c00249{left:454.500000px;}
.x8_c00249{left:456.420000px;}
.x24_c00249{left:459.000000px;}
.xe8_c00249{left:460.920000px;}
.x88_c00249{left:462.000000px;}
.xbd_c00249{left:463.500000px;}
.x9a_c00249{left:465.000000px;}
.xd0_c00249{left:466.080000px;}
.x10a_c00249{left:469.500000px;}
.x91_c00249{left:470.580000px;}
.x4e_c00249{left:472.500000px;}
.x72_c00249{left:476.580000px;}
.x16_c00249{left:480.420000px;}
.x107_c00249{left:483.000000px;}
.x43_c00249{left:484.500000px;}
.xf6_c00249{left:486.000000px;}
.x32_c00249{left:487.080000px;}
.xb8_c00249{left:489.420000px;}
.x5f_c00249{left:492.420000px;}
.x10b_c00249{left:494.580000px;}
.xed_c00249{left:496.920000px;}
.x25_c00249{left:498.420000px;}
.x6a_c00249{left:499.500000px;}
.xe9_c00249{left:500.580000px;}
.xc9_c00249{left:502.500000px;}
.xf7_c00249{left:504.420000px;}
.x57_c00249{left:507.420000px;}
.x7f_c00249{left:509.580000px;}
.x44_c00249{left:511.920000px;}
.xd8_c00249{left:513.000000px;}
.xb1_c00249{left:516.420000px;}
.x9_c00249{left:517.500000px;}
.x17_c00249{left:519.000000px;}
.xd1_c00249{left:520.500000px;}
.x60_c00249{left:521.580000px;}
.x11f_c00249{left:523.500000px;}
.x9b_c00249{left:525.000000px;}
.x26_c00249{left:526.080000px;}
.x80_c00249{left:529.500000px;}
.xd9_c00249{left:531.000000px;}
.x33_c00249{left:532.500000px;}
.xa2_c00249{left:534.420000px;}
.xd2_c00249{left:535.920000px;}
.xf8_c00249{left:537.000000px;}
.xca_c00249{left:538.920000px;}
.x89_c00249{left:541.080000px;}
.x117_c00249{left:542.580000px;}
.x3d_c00249{left:544.080000px;}
.xea_c00249{left:546.000000px;}
.xc3_c00249{left:547.920000px;}
.x79_c00249{left:550.080000px;}
.x10c_c00249{left:551.580000px;}
.x18_c00249{left:553.920000px;}
.x4f_c00249{left:555.000000px;}
.x92_c00249{left:558.000000px;}
.x27_c00249{left:559.080000px;}
.xdf_c00249{left:561.000000px;}
.x61_c00249{left:564.000000px;}
.xa_c00249{left:565.500000px;}
.x73_c00249{left:567.000000px;}
.x34_c00249{left:571.920000px;}
.x100_c00249{left:573.420000px;}
.x6b_c00249{left:574.500000px;}
.xa3_c00249{left:576.000000px;}
.x3e_c00249{left:577.500000px;}
.x111_c00249{left:579.420000px;}
.x19_c00249{left:580.500000px;}
.x7a_c00249{left:582.420000px;}
.xb2_c00249{left:585.420000px;}
.x58_c00249{left:586.500000px;}
.x35_c00249{left:589.920000px;}
.xaa_c00249{left:592.500000px;}
.xa4_c00249{left:595.920000px;}
.x62_c00249{left:597.000000px;}
.xb_c00249{left:598.500000px;}
.x6c_c00249{left:601.920000px;}
.x45_c00249{left:604.080000px;}
.xf0_c00249{left:606.000000px;}
.xcb_c00249{left:607.500000px;}
.x93_c00249{left:608.580000px;}
.x28_c00249{left:610.080000px;}
.xab_c00249{left:613.500000px;}
.x1a_c00249{left:618.000000px;}
.x119_c00249{left:619.920000px;}
.xc0_c00249{left:621.420000px;}
.x3f_c00249{left:622.920000px;}
.xe0_c00249{left:624.000000px;}
.x36_c00249{left:625.500000px;}
.xcc_c00249{left:627.000000px;}
.xbe_c00249{left:628.080000px;}
.x74_c00249{left:631.920000px;}
.xc4_c00249{left:633.000000px;}
.x7b_c00249{left:634.500000px;}
.x11c_c00249{left:637.920000px;}
.x112_c00249{left:639.000000px;}
.xc_c00249{left:640.080000px;}
.x37_c00249{left:641.580000px;}
.xda_c00249{left:643.500000px;}
.xe3_c00249{left:645.000000px;}
.x46_c00249{left:646.500000px;}
.x50_c00249{left:648.420000px;}
.x1b_c00249{left:649.920000px;}
.xee_c00249{left:651.000000px;}
.xa5_c00249{left:652.920000px;}
.x29_c00249{left:654.000000px;}
.x11a_c00249{left:655.920000px;}
.x59_c00249{left:657.000000px;}
.xdb_c00249{left:658.500000px;}
.x8a_c00249{left:659.580000px;}
.xd_c00249{left:661.920000px;}
.xf1_c00249{left:663.420000px;}
.x7c_c00249{left:666.000000px;}
.x94_c00249{left:669.420000px;}
.xdc_c00249{left:673.920000px;}
.x1c_c00249{left:676.080000px;}
.x47_c00249{left:678.000000px;}
.xa6_c00249{left:679.080000px;}
.xeb_c00249{left:681.420000px;}
.x40_c00249{left:682.500000px;}
.x11d_c00249{left:685.500000px;}
.x101_c00249{left:687.000000px;}
.x2a_c00249{left:688.920000px;}
.xe_c00249{left:690.000000px;}
.xf2_c00249{left:691.500000px;}
.x51_c00249{left:692.580000px;}
.xfd_c00249{left:694.500000px;}
.x10d_c00249{left:697.500000px;}
.xe4_c00249{left:699.420000px;}
.x108_c00249{left:700.500000px;}
.x7d_c00249{left:702.000000px;}
.x81_c00249{left:703.500000px;}
.x1d_c00249{left:708.420000px;}
.xc5_c00249{left:709.920000px;}
.xcd_c00249{left:715.500000px;}
.x48_c00249{left:716.580000px;}
@media print{
.v0_c00249{vertical-align:0.000000pt;}
.ls0_c00249{letter-spacing:0.000000pt;}
.ws0_c00249{word-spacing:-3.462673pt;}
.ws1_c00249{word-spacing:0.000000pt;}
.fs7_c00249{font-size:3.040000pt;}
.fs0_c00249{font-size:16.640000pt;}
.fs1_c00249{font-size:18.133333pt;}
.fs4_c00249{font-size:22.666667pt;}
.fs2_c00249{font-size:25.706667pt;}
.fs5_c00249{font-size:28.746667pt;}
.fs3_c00249{font-size:31.733333pt;}
.fs6_c00249{font-size:34.773333pt;}
.y0_c00249{bottom:0.000000pt;}
.yfa_c00249{bottom:223.773333pt;}
.yfc_c00249{bottom:223.973333pt;}
.yfb_c00249{bottom:225.306667pt;}
.yf8_c00249{bottom:225.693333pt;}
.yf9_c00249{bottom:225.893333pt;}
.yf7_c00249{bottom:226.640000pt;}
.yf0_c00249{bottom:240.160000pt;}
.yf6_c00249{bottom:240.360000pt;}
.yf5_c00249{bottom:241.106667pt;}
.yf4_c00249{bottom:241.493333pt;}
.yf1_c00249{bottom:243.026667pt;}
.yf2_c00249{bottom:243.226667pt;}
.yf3_c00249{bottom:244.360000pt;}
.yee_c00249{bottom:257.693333pt;}
.yec_c00249{bottom:259.026667pt;}
.yef_c00249{bottom:259.400000pt;}
.ye9_c00249{bottom:260.360000pt;}
.yed_c00249{bottom:260.560000pt;}
.yeb_c00249{bottom:261.693333pt;}
.yea_c00249{bottom:261.706667pt;}
.ye7_c00249{bottom:275.973333pt;}
.ye8_c00249{bottom:276.360000pt;}
.ye4_c00249{bottom:277.106667pt;}
.ye5_c00249{bottom:277.893333pt;}
.ye3_c00249{bottom:278.066667pt;}
.ye6_c00249{bottom:279.973333pt;}
.ydf_c00249{bottom:292.360000pt;}
.ye2_c00249{bottom:293.306667pt;}
.ye1_c00249{bottom:293.493333pt;}
.yde_c00249{bottom:293.693333pt;}
.ydc_c00249{bottom:294.440000pt;}
.ye0_c00249{bottom:295.226667pt;}
.yda_c00249{bottom:295.973333pt;}
.ydb_c00249{bottom:296.360000pt;}
.ydd_c00249{bottom:296.560000pt;}
.yd6_c00249{bottom:311.026667pt;}
.yd8_c00249{bottom:311.773333pt;}
.yd7_c00249{bottom:311.973333pt;}
.yd9_c00249{bottom:312.560000pt;}
.yd5_c00249{bottom:312.733333pt;}
.yd4_c00249{bottom:313.693333pt;}
.yd0_c00249{bottom:329.106667pt;}
.yd1_c00249{bottom:329.306667pt;}
.yd3_c00249{bottom:330.066667pt;}
.yd2_c00249{bottom:330.440000pt;}
.ycf_c00249{bottom:331.026667pt;}
.yce_c00249{bottom:346.440000pt;}
.ycd_c00249{bottom:348.360000pt;}
.ycc_c00249{bottom:348.560000pt;}
.yca_c00249{bottom:349.306667pt;}
.ycb_c00249{bottom:349.693333pt;}
.yc7_c00249{bottom:365.106667pt;}
.yc9_c00249{bottom:365.893333pt;}
.yc8_c00249{bottom:367.026667pt;}
.yc5_c00249{bottom:381.106667pt;}
.yc3_c00249{bottom:381.306667pt;}
.ybf_c00249{bottom:382.440000pt;}
.yc6_c00249{bottom:383.226667pt;}
.yc0_c00249{bottom:383.773333pt;}
.yc4_c00249{bottom:383.973333pt;}
.yc2_c00249{bottom:384.360000pt;}
.yc1_c00249{bottom:384.733333pt;}
.ybe_c00249{bottom:385.306667pt;}
.ybb_c00249{bottom:399.773333pt;}
.ybc_c00249{bottom:400.560000pt;}
.ybd_c00249{bottom:400.733333pt;}
.yba_c00249{bottom:401.693333pt;}
.yb3_c00249{bottom:417.493333pt;}
.yb8_c00249{bottom:418.266667pt;}
.yb4_c00249{bottom:418.440000pt;}
.yb9_c00249{bottom:419.026667pt;}
.yb6_c00249{bottom:419.226667pt;}
.yb7_c00249{bottom:419.973333pt;}
.yb5_c00249{bottom:420.360000pt;}
.yb0_c00249{bottom:433.693333pt;}
.yaf_c00249{bottom:435.773333pt;}
.yb2_c00249{bottom:436.360000pt;}
.yb1_c00249{bottom:436.560000pt;}
.yae_c00249{bottom:436.733333pt;}
.yac_c00249{bottom:437.306667pt;}
.yad_c00249{bottom:437.693333pt;}
.yab_c00249{bottom:438.640000pt;}
.ya9_c00249{bottom:451.773333pt;}
.yaa_c00249{bottom:453.693333pt;}
.ya5_c00249{bottom:453.893333pt;}
.ya8_c00249{bottom:454.066667pt;}
.ya7_c00249{bottom:455.026667pt;}
.ya6_c00249{bottom:455.973333pt;}
.ya1_c00249{bottom:468.360000pt;}
.ya4_c00249{bottom:469.306667pt;}
.y9e_c00249{bottom:470.440000pt;}
.ya3_c00249{bottom:471.026667pt;}
.ya0_c00249{bottom:471.226667pt;}
.ya2_c00249{bottom:471.973333pt;}
.y9f_c00249{bottom:472.360000pt;}
.y9b_c00249{bottom:487.773333pt;}
.y9c_c00249{bottom:488.560000pt;}
.y9d_c00249{bottom:488.733333pt;}
.y99_c00249{bottom:489.693333pt;}
.y9a_c00249{bottom:491.026667pt;}
.y92_c00249{bottom:504.360000pt;}
.y98_c00249{bottom:505.106667pt;}
.y93_c00249{bottom:506.440000pt;}
.y97_c00249{bottom:507.026667pt;}
.y96_c00249{bottom:507.226667pt;}
.y94_c00249{bottom:507.400000pt;}
.y95_c00249{bottom:507.973333pt;}
.y91_c00249{bottom:508.360000pt;}
.y8d_c00249{bottom:522.066667pt;}
.y8f_c00249{bottom:522.440000pt;}
.y8c_c00249{bottom:523.400000pt;}
.y8b_c00249{bottom:523.773333pt;}
.y90_c00249{bottom:523.973333pt;}
.y89_c00249{bottom:524.360000pt;}
.y8e_c00249{bottom:525.306667pt;}
.y8a_c00249{bottom:525.693333pt;}
.y87_c00249{bottom:539.773333pt;}
.y86_c00249{bottom:540.733333pt;}
.y84_c00249{bottom:541.693333pt;}
.y88_c00249{bottom:541.893333pt;}
.y85_c00249{bottom:542.640000pt;}
.y83_c00249{bottom:557.106667pt;}
.y81_c00249{bottom:558.440000pt;}
.y82_c00249{bottom:559.026667pt;}
.y80_c00249{bottom:559.400000pt;}
.y7f_c00249{bottom:560.360000pt;}
.y7e_c00249{bottom:575.400000pt;}
.y7d_c00249{bottom:575.773333pt;}
.y7c_c00249{bottom:576.560000pt;}
.y79_c00249{bottom:576.733333pt;}
.y7b_c00249{bottom:577.693333pt;}
.y7a_c00249{bottom:578.640000pt;}
.y74_c00249{bottom:593.106667pt;}
.y73_c00249{bottom:593.893333pt;}
.y75_c00249{bottom:594.066667pt;}
.y76_c00249{bottom:594.640000pt;}
.y78_c00249{bottom:595.026667pt;}
.y77_c00249{bottom:595.973333pt;}
.y70_c00249{bottom:610.440000pt;}
.y72_c00249{bottom:611.226667pt;}
.y6f_c00249{bottom:612.360000pt;}
.y71_c00249{bottom:612.560000pt;}
.y6e_c00249{bottom:627.400000pt;}
.y6b_c00249{bottom:627.773333pt;}
.y6d_c00249{bottom:628.733333pt;}
.y6a_c00249{bottom:629.693333pt;}
.y6c_c00249{bottom:630.640000pt;}
.y69_c00249{bottom:644.733333pt;}
.y68_c00249{bottom:645.106667pt;}
.y65_c00249{bottom:646.440000pt;}
.y64_c00249{bottom:647.026667pt;}
.y67_c00249{bottom:647.226667pt;}
.y66_c00249{bottom:647.973333pt;}
.y62_c00249{bottom:661.306667pt;}
.y5c_c00249{bottom:662.440000pt;}
.y60_c00249{bottom:662.640000pt;}
.y61_c00249{bottom:663.400000pt;}
.y5d_c00249{bottom:663.773333pt;}
.y63_c00249{bottom:663.973333pt;}
.y5b_c00249{bottom:664.360000pt;}
.y5f_c00249{bottom:665.306667pt;}
.y5e_c00249{bottom:665.693333pt;}
.y56_c00249{bottom:680.933333pt;}
.y57_c00249{bottom:681.106667pt;}
.y5a_c00249{bottom:681.893333pt;}
.y59_c00249{bottom:683.026667pt;}
.y58_c00249{bottom:683.226667pt;}
.y53_c00249{bottom:698.440000pt;}
.y55_c00249{bottom:699.400000pt;}
.y51_c00249{bottom:700.360000pt;}
.y54_c00249{bottom:700.560000pt;}
.y52_c00249{bottom:701.306667pt;}
.y50_c00249{bottom:714.640000pt;}
.y4f_c00249{bottom:715.773333pt;}
.y4d_c00249{bottom:716.560000pt;}
.y4c_c00249{bottom:717.693333pt;}
.y4e_c00249{bottom:718.640000pt;}
.y49_c00249{bottom:733.106667pt;}
.y4b_c00249{bottom:733.693333pt;}
.y4a_c00249{bottom:733.893333pt;}
.y47_c00249{bottom:735.026667pt;}
.y48_c00249{bottom:735.226667pt;}
.y46_c00249{bottom:749.493333pt;}
.y45_c00249{bottom:750.440000pt;}
.y42_c00249{bottom:750.640000pt;}
.y43_c00249{bottom:751.773333pt;}
.y40_c00249{bottom:752.360000pt;}
.y44_c00249{bottom:752.560000pt;}
.y41_c00249{bottom:753.693333pt;}
.y3d_c00249{bottom:769.106667pt;}
.y3f_c00249{bottom:769.693333pt;}
.y3e_c00249{bottom:770.640000pt;}
.y3b_c00249{bottom:771.026667pt;}
.y3c_c00249{bottom:771.973333pt;}
.y3a_c00249{bottom:787.226667pt;}
.y37_c00249{bottom:787.973333pt;}
.y38_c00249{bottom:788.360000pt;}
.y39_c00249{bottom:789.306667pt;}
.y36_c00249{bottom:802.440000pt;}
.y34_c00249{bottom:803.773333pt;}
.y31_c00249{bottom:804.360000pt;}
.y35_c00249{bottom:804.560000pt;}
.y32_c00249{bottom:805.306667pt;}
.y33_c00249{bottom:805.693333pt;}
.y2f_c00249{bottom:819.026667pt;}
.y2c_c00249{bottom:821.106667pt;}
.y2e_c00249{bottom:821.893333pt;}
.y30_c00249{bottom:822.066667pt;}
.y2d_c00249{bottom:823.026667pt;}
.y2a_c00249{bottom:838.440000pt;}
.y28_c00249{bottom:839.773333pt;}
.y25_c00249{bottom:840.360000pt;}
.y27_c00249{bottom:840.560000pt;}
.y29_c00249{bottom:840.733333pt;}
.y2b_c00249{bottom:841.306667pt;}
.y26_c00249{bottom:841.693333pt;}
.y23_c00249{bottom:855.773333pt;}
.y24_c00249{bottom:857.306667pt;}
.y20_c00249{bottom:857.693333pt;}
.y22_c00249{bottom:857.893333pt;}
.y21_c00249{bottom:858.640000pt;}
.y1a_c00249{bottom:873.106667pt;}
.y1f_c00249{bottom:873.893333pt;}
.y1e_c00249{bottom:874.066667pt;}
.y1d_c00249{bottom:874.640000pt;}
.y1c_c00249{bottom:875.026667pt;}
.y1b_c00249{bottom:875.973333pt;}
.y19_c00249{bottom:889.493333pt;}
.y16_c00249{bottom:890.826667pt;}
.y17_c00249{bottom:891.600000pt;}
.y15_c00249{bottom:891.773333pt;}
.y13_c00249{bottom:892.360000pt;}
.y18_c00249{bottom:892.560000pt;}
.y14_c00249{bottom:893.693333pt;}
.y12_c00249{bottom:909.693333pt;}
.yf_c00249{bottom:909.893333pt;}
.y11_c00249{bottom:910.640000pt;}
.ye_c00249{bottom:911.026667pt;}
.y10_c00249{bottom:911.973333pt;}
.ya_c00249{bottom:926.440000pt;}
.y8_c00249{bottom:927.026667pt;}
.yc_c00249{bottom:927.226667pt;}
.yb_c00249{bottom:927.400000pt;}
.yd_c00249{bottom:927.973333pt;}
.y9_c00249{bottom:928.360000pt;}
.y7_c00249{bottom:941.306667pt;}
.y6_c00249{bottom:943.773333pt;}
.y3_c00249{bottom:944.360000pt;}
.y4_c00249{bottom:944.560000pt;}
.y5_c00249{bottom:945.693333pt;}
.y2_c00249{bottom:979.600000pt;}
.y1_c00249{bottom:980.560000pt;}
.h8_c00249{height:3.739141pt;}
.h1_c00249{height:20.466875pt;}
.h2_c00249{height:22.303646pt;}
.h5_c00249{height:27.879557pt;}
.h3_c00249{height:31.618698pt;}
.h6_c00249{height:35.357839pt;}
.h4_c00249{height:39.031380pt;}
.h7_c00249{height:42.770521pt;}
.h0_c00249{height:1186.666667pt;}
.w0_c00249{width:782.666667pt;}
.x0_c00249{left:0.000000pt;}
.x38_c00249{left:134.293333pt;}
.x1_c00249{left:136.000000pt;}
.xf9_c00249{left:149.333333pt;}
.xb3_c00249{left:151.040000pt;}
.xb9_c00249{left:152.373333pt;}
.x8b_c00249{left:153.333333pt;}
.x3_c00249{left:154.666667pt;}
.xac_c00249{left:159.626667pt;}
.x49_c00249{left:160.960000pt;}
.x9c_c00249{left:162.666667pt;}
.x82_c00249{left:164.000000pt;}
.x63_c00249{left:165.333333pt;}
.x102_c00249{left:167.626667pt;}
.x4_c00249{left:169.706667pt;}
.x95_c00249{left:172.000000pt;}
.xf3_c00249{left:173.333333pt;}
.x83_c00249{left:176.000000pt;}
.x8c_c00249{left:177.706667pt;}
.x6d_c00249{left:178.666667pt;}
.x52_c00249{left:180.373333pt;}
.x2b_c00249{left:182.293333pt;}
.xc6_c00249{left:184.000000pt;}
.xf_c00249{left:184.960000pt;}
.x1e_c00249{left:186.666667pt;}
.x39_c00249{left:189.333333pt;}
.x75_c00249{left:191.040000pt;}
.x113_c00249{left:192.000000pt;}
.x9d_c00249{left:195.626667pt;}
.x4a_c00249{left:197.333333pt;}
.x2c_c00249{left:199.040000pt;}
.x5a_c00249{left:200.000000pt;}
.x10_c00249{left:201.706667pt;}
.xd3_c00249{left:204.000000pt;}
.x53_c00249{left:204.960000pt;}
.xad_c00249{left:207.626667pt;}
.xe5_c00249{left:210.293333pt;}
.xfa_c00249{left:212.000000pt;}
.xe1_c00249{left:213.333333pt;}
.x84_c00249{left:214.293333pt;}
.x1f_c00249{left:215.626667pt;}
.xdd_c00249{left:217.706667pt;}
.x5_c00249{left:221.333333pt;}
.x5b_c00249{left:222.666667pt;}
.xae_c00249{left:224.373333pt;}
.x11_c00249{left:225.333333pt;}
.x114_c00249{left:226.666667pt;}
.x6e_c00249{left:227.626667pt;}
.x8d_c00249{left:229.333333pt;}
.x118_c00249{left:230.666667pt;}
.xc7_c00249{left:231.626667pt;}
.x20_c00249{left:233.706667pt;}
.xb4_c00249{left:234.666667pt;}
.xfe_c00249{left:235.800000pt;}
.x64_c00249{left:237.333333pt;}
.x96_c00249{left:238.666667pt;}
.x103_c00249{left:239.626667pt;}
.x54_c00249{left:241.333333pt;}
.x6f_c00249{left:247.040000pt;}
.x41_c00249{left:248.000000pt;}
.xa7_c00249{left:249.333333pt;}
.x85_c00249{left:250.293333pt;}
.x9e_c00249{left:252.373333pt;}
.xec_c00249{left:253.333333pt;}
.x55_c00249{left:254.666667pt;}
.x2d_c00249{left:256.000000pt;}
.x3a_c00249{left:257.706667pt;}
.x12_c00249{left:259.040000pt;}
.xba_c00249{left:260.373333pt;}
.x115_c00249{left:261.706667pt;}
.xf4_c00249{left:263.040000pt;}
.x65_c00249{left:264.960000pt;}
.xb5_c00249{left:266.666667pt;}
.x2e_c00249{left:269.333333pt;}
.x6_c00249{left:271.040000pt;}
.x4b_c00249{left:272.000000pt;}
.xce_c00249{left:273.706667pt;}
.x76_c00249{left:276.373333pt;}
.xa8_c00249{left:277.333333pt;}
.x10e_c00249{left:278.666667pt;}
.xc1_c00249{left:279.626667pt;}
.x66_c00249{left:281.706667pt;}
.x9f_c00249{left:285.333333pt;}
.x11b_c00249{left:286.666667pt;}
.x8e_c00249{left:287.626667pt;}
.xd4_c00249{left:288.960000pt;}
.x86_c00249{left:292.000000pt;}
.x13_c00249{left:293.706667pt;}
.x56_c00249{left:294.666667pt;}
.x21_c00249{left:296.000000pt;}
.x42_c00249{left:297.333333pt;}
.xf5_c00249{left:298.666667pt;}
.x97_c00249{left:300.960000pt;}
.x116_c00249{left:303.040000pt;}
.x67_c00249{left:304.960000pt;}
.xbb_c00249{left:306.666667pt;}
.xc2_c00249{left:308.000000pt;}
.x3b_c00249{left:308.960000pt;}
.x70_c00249{left:312.000000pt;}
.xbf_c00249{left:313.333333pt;}
.x8f_c00249{left:316.000000pt;}
.x4c_c00249{left:317.333333pt;}
.xaf_c00249{left:320.373333pt;}
.x22_c00249{left:321.333333pt;}
.x2f_c00249{left:323.040000pt;}
.x14_c00249{left:324.373333pt;}
.x104_c00249{left:325.333333pt;}
.xd5_c00249{left:328.373333pt;}
.x98_c00249{left:329.706667pt;}
.xbc_c00249{left:331.040000pt;}
.xb6_c00249{left:333.706667pt;}
.x109_c00249{left:334.666667pt;}
.x7_c00249{left:337.333333pt;}
.xff_c00249{left:338.666667pt;}
.x71_c00249{left:340.960000pt;}
.x68_c00249{left:342.666667pt;}
.x10f_c00249{left:344.000000pt;}
.xcf_c00249{left:345.333333pt;}
.xa0_c00249{left:346.666667pt;}
.xc8_c00249{left:348.000000pt;}
.x90_c00249{left:349.333333pt;}
.xe6_c00249{left:350.666667pt;}
.x7e_c00249{left:352.000000pt;}
.xd6_c00249{left:353.706667pt;}
.x3c_c00249{left:354.666667pt;}
.xef_c00249{left:355.626667pt;}
.xfb_c00249{left:356.960000pt;}
.x105_c00249{left:359.626667pt;}
.x23_c00249{left:361.706667pt;}
.x5c_c00249{left:362.666667pt;}
.x2_c00249{left:364.000000pt;}
.x99_c00249{left:365.333333pt;}
.x110_c00249{left:366.666667pt;}
.x77_c00249{left:367.626667pt;}
.x69_c00249{left:370.666667pt;}
.x15_c00249{left:372.760000pt;}
.x30_c00249{left:374.666667pt;}
.xde_c00249{left:376.960000pt;}
.x5d_c00249{left:380.373333pt;}
.x11e_c00249{left:381.333333pt;}
.x87_c00249{left:382.666667pt;}
.xfc_c00249{left:384.373333pt;}
.x4d_c00249{left:385.333333pt;}
.xa1_c00249{left:386.666667pt;}
.x106_c00249{left:389.333333pt;}
.x31_c00249{left:390.666667pt;}
.xe7_c00249{left:393.333333pt;}
.xa9_c00249{left:395.040000pt;}
.x78_c00249{left:396.373333pt;}
.xb7_c00249{left:397.333333pt;}
.xb0_c00249{left:399.626667pt;}
.xd7_c00249{left:401.333333pt;}
.xe2_c00249{left:402.666667pt;}
.x5e_c00249{left:404.000000pt;}
.x8_c00249{left:405.706667pt;}
.x24_c00249{left:408.000000pt;}
.xe8_c00249{left:409.706667pt;}
.x88_c00249{left:410.666667pt;}
.xbd_c00249{left:412.000000pt;}
.x9a_c00249{left:413.333333pt;}
.xd0_c00249{left:414.293333pt;}
.x10a_c00249{left:417.333333pt;}
.x91_c00249{left:418.293333pt;}
.x4e_c00249{left:420.000000pt;}
.x72_c00249{left:423.626667pt;}
.x16_c00249{left:427.040000pt;}
.x107_c00249{left:429.333333pt;}
.x43_c00249{left:430.666667pt;}
.xf6_c00249{left:432.000000pt;}
.x32_c00249{left:432.960000pt;}
.xb8_c00249{left:435.040000pt;}
.x5f_c00249{left:437.706667pt;}
.x10b_c00249{left:439.626667pt;}
.xed_c00249{left:441.706667pt;}
.x25_c00249{left:443.040000pt;}
.x6a_c00249{left:444.000000pt;}
.xe9_c00249{left:444.960000pt;}
.xc9_c00249{left:446.666667pt;}
.xf7_c00249{left:448.373333pt;}
.x57_c00249{left:451.040000pt;}
.x7f_c00249{left:452.960000pt;}
.x44_c00249{left:455.040000pt;}
.xd8_c00249{left:456.000000pt;}
.xb1_c00249{left:459.040000pt;}
.x9_c00249{left:460.000000pt;}
.x17_c00249{left:461.333333pt;}
.xd1_c00249{left:462.666667pt;}
.x60_c00249{left:463.626667pt;}
.x11f_c00249{left:465.333333pt;}
.x9b_c00249{left:466.666667pt;}
.x26_c00249{left:467.626667pt;}
.x80_c00249{left:470.666667pt;}
.xd9_c00249{left:472.000000pt;}
.x33_c00249{left:473.333333pt;}
.xa2_c00249{left:475.040000pt;}
.xd2_c00249{left:476.373333pt;}
.xf8_c00249{left:477.333333pt;}
.xca_c00249{left:479.040000pt;}
.x89_c00249{left:480.960000pt;}
.x117_c00249{left:482.293333pt;}
.x3d_c00249{left:483.626667pt;}
.xea_c00249{left:485.333333pt;}
.xc3_c00249{left:487.040000pt;}
.x79_c00249{left:488.960000pt;}
.x10c_c00249{left:490.293333pt;}
.x18_c00249{left:492.373333pt;}
.x4f_c00249{left:493.333333pt;}
.x92_c00249{left:496.000000pt;}
.x27_c00249{left:496.960000pt;}
.xdf_c00249{left:498.666667pt;}
.x61_c00249{left:501.333333pt;}
.xa_c00249{left:502.666667pt;}
.x73_c00249{left:504.000000pt;}
.x34_c00249{left:508.373333pt;}
.x100_c00249{left:509.706667pt;}
.x6b_c00249{left:510.666667pt;}
.xa3_c00249{left:512.000000pt;}
.x3e_c00249{left:513.333333pt;}
.x111_c00249{left:515.040000pt;}
.x19_c00249{left:516.000000pt;}
.x7a_c00249{left:517.706667pt;}
.xb2_c00249{left:520.373333pt;}
.x58_c00249{left:521.333333pt;}
.x35_c00249{left:524.373333pt;}
.xaa_c00249{left:526.666667pt;}
.xa4_c00249{left:529.706667pt;}
.x62_c00249{left:530.666667pt;}
.xb_c00249{left:532.000000pt;}
.x6c_c00249{left:535.040000pt;}
.x45_c00249{left:536.960000pt;}
.xf0_c00249{left:538.666667pt;}
.xcb_c00249{left:540.000000pt;}
.x93_c00249{left:540.960000pt;}
.x28_c00249{left:542.293333pt;}
.xab_c00249{left:545.333333pt;}
.x1a_c00249{left:549.333333pt;}
.x119_c00249{left:551.040000pt;}
.xc0_c00249{left:552.373333pt;}
.x3f_c00249{left:553.706667pt;}
.xe0_c00249{left:554.666667pt;}
.x36_c00249{left:556.000000pt;}
.xcc_c00249{left:557.333333pt;}
.xbe_c00249{left:558.293333pt;}
.x74_c00249{left:561.706667pt;}
.xc4_c00249{left:562.666667pt;}
.x7b_c00249{left:564.000000pt;}
.x11c_c00249{left:567.040000pt;}
.x112_c00249{left:568.000000pt;}
.xc_c00249{left:568.960000pt;}
.x37_c00249{left:570.293333pt;}
.xda_c00249{left:572.000000pt;}
.xe3_c00249{left:573.333333pt;}
.x46_c00249{left:574.666667pt;}
.x50_c00249{left:576.373333pt;}
.x1b_c00249{left:577.706667pt;}
.xee_c00249{left:578.666667pt;}
.xa5_c00249{left:580.373333pt;}
.x29_c00249{left:581.333333pt;}
.x11a_c00249{left:583.040000pt;}
.x59_c00249{left:584.000000pt;}
.xdb_c00249{left:585.333333pt;}
.x8a_c00249{left:586.293333pt;}
.xd_c00249{left:588.373333pt;}
.xf1_c00249{left:589.706667pt;}
.x7c_c00249{left:592.000000pt;}
.x94_c00249{left:595.040000pt;}
.xdc_c00249{left:599.040000pt;}
.x1c_c00249{left:600.960000pt;}
.x47_c00249{left:602.666667pt;}
.xa6_c00249{left:603.626667pt;}
.xeb_c00249{left:605.706667pt;}
.x40_c00249{left:606.666667pt;}
.x11d_c00249{left:609.333333pt;}
.x101_c00249{left:610.666667pt;}
.x2a_c00249{left:612.373333pt;}
.xe_c00249{left:613.333333pt;}
.xf2_c00249{left:614.666667pt;}
.x51_c00249{left:615.626667pt;}
.xfd_c00249{left:617.333333pt;}
.x10d_c00249{left:620.000000pt;}
.xe4_c00249{left:621.706667pt;}
.x108_c00249{left:622.666667pt;}
.x7d_c00249{left:624.000000pt;}
.x81_c00249{left:625.333333pt;}
.x1d_c00249{left:629.706667pt;}
.xc5_c00249{left:631.040000pt;}
.xcd_c00249{left:636.000000pt;}
.x48_c00249{left:636.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_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_b65167ca91d8c1b74bc29c71.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mbe_c00250{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.md9_c00250{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m6a_c00250{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.m22_c00250{transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);}
.m105_c00250{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.mda_c00250{transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);}
.m8c_c00250{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m4b_c00250{transform:matrix(0.365031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365031,0.000000,0.000000,0.250000,0,0);}
.m29_c00250{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m15_c00250{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m104_c00250{transform:matrix(0.371933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371933,0.000000,0.000000,0.250000,0,0);}
.m103_c00250{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.m10a_c00250{transform:matrix(0.373950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373950,0.000000,0.000000,0.250000,0,0);}
.m90_c00250{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mc0_c00250{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.m1d_c00250{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mdc_c00250{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mdb_c00250{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m2b_c00250{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mea_c00250{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m14_c00250{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.me7_c00250{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.mee_c00250{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m100_c00250{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m9b_c00250{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.mec_c00250{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m49_c00250{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m2d_c00250{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m61_c00250{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m87_c00250{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.ma8_c00250{transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);}
.mac_c00250{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m64_c00250{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m77_c00250{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.maf_c00250{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m24_c00250{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m1b_c00250{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m95_c00250{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.me1_c00250{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mfd_c00250{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m11_c00250{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m19_c00250{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.mf1_c00250{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.mc5_c00250{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.m4e_c00250{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m102_c00250{transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);}
.m28_c00250{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m53_c00250{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m79_c00250{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mc4_c00250{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.mfe_c00250{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m6d_c00250{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.mab_c00250{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mb0_c00250{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.me6_c00250{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mbb_c00250{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m63_c00250{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m5_c00250{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.me8_c00250{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m71_c00250{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mc3_c00250{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.me4_c00250{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.ma6_c00250{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m1c_c00250{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m20_c00250{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m101_c00250{transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);}
.mb9_c00250{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m46_c00250{transform:matrix(0.431365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431365,0.000000,0.000000,0.250000,0,0);}
.me9_c00250{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m107_c00250{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m40_c00250{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m76_c00250{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.mcc_c00250{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m82_c00250{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m75_c00250{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m42_c00250{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m5e_c00250{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m44_c00250{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.md7_c00250{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m69_c00250{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m8a_c00250{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.ma_c00250{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mef_c00250{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.md5_c00250{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.ma9_c00250{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m6f_c00250{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m39_c00250{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.med_c00250{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.md1_c00250{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.ma7_c00250{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m2c_c00250{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m5d_c00250{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.me5_c00250{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m96_c00250{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.mcd_c00250{transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);}
.m9c_c00250{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.mf4_c00250{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.ma0_c00250{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m108_c00250{transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);}
.m51_c00250{transform:matrix(0.476345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476345,0.000000,0.000000,0.250000,0,0);}
.mff_c00250{transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);}
.m70_c00250{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m2_c00250{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mf5_c00250{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.mc7_c00250{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m5f_c00250{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.ma5_c00250{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m2a_c00250{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m3e_c00250{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.mb5_c00250{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m48_c00250{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.m7_c00250{transform:matrix(0.489332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489332,0.000000,0.000000,0.250000,0,0);}
.m50_c00250{transform:matrix(0.489496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489496,0.000000,0.000000,0.250000,0,0);}
.m9e_c00250{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m65_c00250{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.md_c00250{transform:matrix(0.493506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493506,0.000000,0.000000,0.250000,0,0);}
.mad_c00250{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mbd_c00250{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m1a_c00250{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_c00250{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mf7_c00250{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.md3_c00250{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.mf9_c00250{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m68_c00250{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mb8_c00250{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mf0_c00250{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m85_c00250{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mca_c00250{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m4d_c00250{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m33_c00250{transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);}
.m83_c00250{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m4c_c00250{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m88_c00250{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.me0_c00250{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m30_c00250{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m7c_c00250{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m6b_c00250{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m55_c00250{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m2f_c00250{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.md2_c00250{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.m9_c00250{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m47_c00250{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m67_c00250{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m5a_c00250{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mdd_c00250{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m8b_c00250{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m57_c00250{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m5b_c00250{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mc8_c00250{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m6_c00250{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mf8_c00250{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.me2_c00250{transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);}
.m45_c00250{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m106_c00250{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m13_c00250{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.ma1_c00250{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m98_c00250{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m32_c00250{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m1f_c00250{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m6e_c00250{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mdf_c00250{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m9a_c00250{transform:matrix(0.541280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541280,0.000000,0.000000,0.250000,0,0);}
.m8_c00250{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m86_c00250{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m3_c00250{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m8e_c00250{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m92_c00250{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m3a_c00250{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m7d_c00250{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.ma4_c00250{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mfc_c00250{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m9d_c00250{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m27_c00250{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m80_c00250{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m1e_c00250{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m3d_c00250{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mb1_c00250{transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);}
.me3_c00250{transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);}
.m18_c00250{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m7e_c00250{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m66_c00250{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.md4_c00250{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m6c_c00250{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mb4_c00250{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m4a_c00250{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m4_c00250{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.mf3_c00250{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m84_c00250{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m34_c00250{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.me_c00250{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m37_c00250{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.ma2_c00250{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m81_c00250{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m99_c00250{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.mf6_c00250{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m7a_c00250{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.mb3_c00250{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m7f_c00250{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m62_c00250{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.mcb_c00250{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.mf2_c00250{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m3f_c00250{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m36_c00250{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mb7_c00250{transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);}
.m31_c00250{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m91_c00250{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m5c_c00250{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m23_c00250{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.meb_c00250{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.mcf_c00250{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.m72_c00250{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m56_c00250{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);}
.m60_c00250{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m12_c00250{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m0_c00250{transform:matrix(0.606618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606618,0.000000,0.000000,0.250000,0,0);}
.m78_c00250{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.mc1_c00250{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m4f_c00250{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mbc_c00250{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.mfa_c00250{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.maa_c00250{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m59_c00250{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.mb_c00250{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m25_c00250{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m38_c00250{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.mde_c00250{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.m93_c00250{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.mfb_c00250{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.mc6_c00250{transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);}
.mb6_c00250{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mce_c00250{transform:matrix(0.628824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628824,0.000000,0.000000,0.250000,0,0);}
.mbf_c00250{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mb2_c00250{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m16_c00250{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.ma3_c00250{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m7b_c00250{transform:matrix(0.642941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642941,0.000000,0.000000,0.250000,0,0);}
.m10_c00250{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.md0_c00250{transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);}
.mc2_c00250{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);}
.m52_c00250{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.mc_c00250{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m73_c00250{transform:matrix(0.666494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666494,0.000000,0.000000,0.250000,0,0);}
.mf_c00250{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m1_c00250{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.md6_c00250{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m94_c00250{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m43_c00250{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m8d_c00250{transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);}
.m58_c00250{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m8f_c00250{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mc9_c00250{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m17_c00250{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.mba_c00250{transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);}
.m26_c00250{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m2e_c00250{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m41_c00250{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m3c_c00250{transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);}
.m54_c00250{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.m21_c00250{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mae_c00250{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m35_c00250{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m109_c00250{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m3b_c00250{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.md8_c00250{transform:matrix(0.801282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.801282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.801282,0.000000,0.000000,0.250000,0,0);}
.m97_c00250{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m89_c00250{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m9f_c00250{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,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;}
}
.ws1_c00250{word-spacing:-16.889280px;}
.ws0_c00250{word-spacing:-7.163032px;}
.ws4_c00250{word-spacing:-5.978246px;}
.ws5_c00250{word-spacing:-3.029280px;}
.ws2_c00250{word-spacing:-1.442140px;}
.ws3_c00250{word-spacing:-0.317817px;}
.ws6_c00250{word-spacing:0.000000px;}
._0_c00250{width:6.522671px;}
.fc0_c00250{color:transparent;}
.fs1_c00250{font-size:18.720000px;}
.fs0_c00250{font-size:20.400000px;}
.fs5_c00250{font-size:25.500000px;}
.fs2_c00250{font-size:28.920000px;}
.fs4_c00250{font-size:32.340000px;}
.fs3_c00250{font-size:35.700000px;}
.fs6_c00250{font-size:39.120000px;}
.y0_c00250{bottom:0.000000px;}
.yc9_c00250{bottom:251.745000px;}
.yc6_c00250{bottom:252.825000px;}
.yc3_c00250{bottom:253.245000px;}
.yc5_c00250{bottom:253.905000px;}
.yc8_c00250{bottom:254.130000px;}
.yc7_c00250{bottom:254.325000px;}
.yc4_c00250{bottom:255.405000px;}
.yc0_c00250{bottom:270.825000px;}
.ybf_c00250{bottom:272.745000px;}
.yc1_c00250{bottom:273.180000px;}
.yc2_c00250{bottom:273.405000px;}
.ybe_c00250{bottom:274.905000px;}
.ybc_c00250{bottom:292.245000px;}
.yba_c00250{bottom:293.325000px;}
.ybb_c00250{bottom:293.970000px;}
.ybd_c00250{bottom:294.405000px;}
.yb8_c00250{bottom:311.745000px;}
.yb9_c00250{bottom:311.970000px;}
.yb7_c00250{bottom:312.825000px;}
.yb6_c00250{bottom:314.970000px;}
.yb1_c00250{bottom:331.245000px;}
.yb4_c00250{bottom:332.745000px;}
.yb0_c00250{bottom:333.405000px;}
.yb3_c00250{bottom:333.630000px;}
.yb2_c00250{bottom:334.470000px;}
.yb5_c00250{bottom:334.905000px;}
.yaf_c00250{bottom:349.905000px;}
.ya9_c00250{bottom:351.825000px;}
.yad_c00250{bottom:352.245000px;}
.yae_c00250{bottom:353.130000px;}
.yab_c00250{bottom:353.325000px;}
.yac_c00250{bottom:353.970000px;}
.yaa_c00250{bottom:354.405000px;}
.ya7_c00250{bottom:369.405000px;}
.ya3_c00250{bottom:371.745000px;}
.ya5_c00250{bottom:372.630000px;}
.ya8_c00250{bottom:373.470000px;}
.ya4_c00250{bottom:373.905000px;}
.ya6_c00250{bottom:374.970000px;}
.ya2_c00250{bottom:391.245000px;}
.ya1_c00250{bottom:392.970000px;}
.ya0_c00250{bottom:393.405000px;}
.y9f_c00250{bottom:410.745000px;}
.y9e_c00250{bottom:412.905000px;}
.y9d_c00250{bottom:430.245000px;}
.y9b_c00250{bottom:432.405000px;}
.y9c_c00250{bottom:433.470000px;}
.y99_c00250{bottom:449.745000px;}
.y98_c00250{bottom:451.905000px;}
.y9a_c00250{bottom:452.970000px;}
.y96_c00250{bottom:470.745000px;}
.y95_c00250{bottom:471.630000px;}
.y97_c00250{bottom:471.825000px;}
.y94_c00250{bottom:472.905000px;}
.y8d_c00250{bottom:489.825000px;}
.y93_c00250{bottom:490.245000px;}
.y92_c00250{bottom:490.470000px;}
.y91_c00250{bottom:491.970000px;}
.y8f_c00250{bottom:492.405000px;}
.y8e_c00250{bottom:492.630000px;}
.y90_c00250{bottom:493.470000px;}
.y88_c00250{bottom:509.745000px;}
.y8b_c00250{bottom:510.630000px;}
.y8c_c00250{bottom:511.470000px;}
.y8a_c00250{bottom:511.905000px;}
.y89_c00250{bottom:512.970000px;}
.y85_c00250{bottom:529.245000px;}
.y87_c00250{bottom:530.130000px;}
.y84_c00250{bottom:530.970000px;}
.y83_c00250{bottom:531.405000px;}
.y86_c00250{bottom:532.470000px;}
.y7f_c00250{bottom:548.745000px;}
.y80_c00250{bottom:550.050000px;}
.y82_c00250{bottom:550.245000px;}
.y81_c00250{bottom:550.905000px;}
.y7e_c00250{bottom:551.970000px;}
.y7d_c00250{bottom:552.405000px;}
.y7b_c00250{bottom:568.680000px;}
.y7a_c00250{bottom:569.745000px;}
.y7c_c00250{bottom:571.470000px;}
.y79_c00250{bottom:571.905000px;}
.y78_c00250{bottom:589.245000px;}
.y77_c00250{bottom:590.130000px;}
.y76_c00250{bottom:608.745000px;}
.y75_c00250{bottom:609.405000px;}
.y73_c00250{bottom:610.470000px;}
.y74_c00250{bottom:610.905000px;}
.y70_c00250{bottom:628.245000px;}
.y72_c00250{bottom:629.130000px;}
.y71_c00250{bottom:630.405000px;}
.y6e_c00250{bottom:647.745000px;}
.y6f_c00250{bottom:649.245000px;}
.y6d_c00250{bottom:649.905000px;}
.y6b_c00250{bottom:666.825000px;}
.y68_c00250{bottom:667.245000px;}
.y6c_c00250{bottom:668.325000px;}
.y67_c00250{bottom:668.550000px;}
.y6a_c00250{bottom:669.405000px;}
.y69_c00250{bottom:670.470000px;}
.y61_c00250{bottom:685.905000px;}
.y66_c00250{bottom:686.745000px;}
.y62_c00250{bottom:687.825000px;}
.y64_c00250{bottom:688.905000px;}
.y65_c00250{bottom:689.130000px;}
.y63_c00250{bottom:689.970000px;}
.y60_c00250{bottom:705.405000px;}
.y5b_c00250{bottom:707.745000px;}
.y5e_c00250{bottom:708.405000px;}
.y5d_c00250{bottom:708.825000px;}
.y5c_c00250{bottom:709.470000px;}
.y5f_c00250{bottom:709.905000px;}
.y59_c00250{bottom:724.905000px;}
.y56_c00250{bottom:725.970000px;}
.y5a_c00250{bottom:726.405000px;}
.y58_c00250{bottom:727.245000px;}
.y57_c00250{bottom:728.130000px;}
.y55_c00250{bottom:729.405000px;}
.y54_c00250{bottom:745.470000px;}
.y50_c00250{bottom:745.905000px;}
.y53_c00250{bottom:746.745000px;}
.y52_c00250{bottom:748.470000px;}
.y4e_c00250{bottom:748.905000px;}
.y51_c00250{bottom:749.130000px;}
.y4f_c00250{bottom:749.970000px;}
.y49_c00250{bottom:765.405000px;}
.y4b_c00250{bottom:766.245000px;}
.y4d_c00250{bottom:767.130000px;}
.y4a_c00250{bottom:768.405000px;}
.y4c_c00250{bottom:768.630000px;}
.y47_c00250{bottom:784.905000px;}
.y48_c00250{bottom:785.745000px;}
.y45_c00250{bottom:787.905000px;}
.y46_c00250{bottom:788.970000px;}
.y41_c00250{bottom:805.245000px;}
.y44_c00250{bottom:806.325000px;}
.y43_c00250{bottom:807.405000px;}
.y40_c00250{bottom:807.630000px;}
.y42_c00250{bottom:808.470000px;}
.y3d_c00250{bottom:824.745000px;}
.y3e_c00250{bottom:825.825000px;}
.y3c_c00250{bottom:826.905000px;}
.y3f_c00250{bottom:827.130000px;}
.y3b_c00250{bottom:845.745000px;}
.y3a_c00250{bottom:846.630000px;}
.y39_c00250{bottom:847.905000px;}
.y36_c00250{bottom:864.405000px;}
.y34_c00250{bottom:865.245000px;}
.y37_c00250{bottom:866.970000px;}
.y38_c00250{bottom:867.405000px;}
.y35_c00250{bottom:867.630000px;}
.y30_c00250{bottom:883.470000px;}
.y32_c00250{bottom:884.325000px;}
.y33_c00250{bottom:884.745000px;}
.y2f_c00250{bottom:885.630000px;}
.y31_c00250{bottom:886.905000px;}
.y29_c00250{bottom:902.970000px;}
.y2b_c00250{bottom:904.245000px;}
.y2d_c00250{bottom:905.130000px;}
.y2c_c00250{bottom:905.325000px;}
.y2a_c00250{bottom:905.970000px;}
.y28_c00250{bottom:906.405000px;}
.y2e_c00250{bottom:907.470000px;}
.y27_c00250{bottom:922.245000px;}
.y24_c00250{bottom:922.905000px;}
.y22_c00250{bottom:924.180000px;}
.y26_c00250{bottom:925.245000px;}
.y25_c00250{bottom:925.905000px;}
.y23_c00250{bottom:927.405000px;}
.y21_c00250{bottom:944.325000px;}
.y20_c00250{bottom:944.745000px;}
.y1e_c00250{bottom:945.630000px;}
.y1f_c00250{bottom:946.905000px;}
.y1b_c00250{bottom:962.745000px;}
.y1d_c00250{bottom:963.825000px;}
.y1c_c00250{bottom:965.130000px;}
.y1a_c00250{bottom:965.970000px;}
.y19_c00250{bottom:982.245000px;}
.y17_c00250{bottom:984.405000px;}
.y18_c00250{bottom:985.470000px;}
.y16_c00250{bottom:1002.405000px;}
.y13_c00250{bottom:1003.245000px;}
.y15_c00250{bottom:1004.130000px;}
.y12_c00250{bottom:1004.970000px;}
.y14_c00250{bottom:1005.405000px;}
.yf_c00250{bottom:1022.745000px;}
.y10_c00250{bottom:1024.905000px;}
.y11_c00250{bottom:1025.130000px;}
.yd_c00250{bottom:1042.245000px;}
.ye_c00250{bottom:1044.405000px;}
.yc_c00250{bottom:1045.470000px;}
.y9_c00250{bottom:1061.325000px;}
.y4_c00250{bottom:1061.745000px;}
.y6_c00250{bottom:1062.405000px;}
.ya_c00250{bottom:1062.630000px;}
.y5_c00250{bottom:1062.825000px;}
.y7_c00250{bottom:1063.470000px;}
.y3_c00250{bottom:1063.905000px;}
.y8_c00250{bottom:1064.130000px;}
.yb_c00250{bottom:1064.970000px;}
.y1_c00250{bottom:1102.050000px;}
.y2_c00250{bottom:1103.130000px;}
.h2_c00250{height:23.025234px;}
.h1_c00250{height:25.091602px;}
.h6_c00250{height:31.364502px;}
.h3_c00250{height:35.571035px;}
.h5_c00250{height:39.777568px;}
.h4_c00250{height:43.910303px;}
.h7_c00250{height:48.116836px;}
.h0_c00250{height:1335.000000px;}
.w0_c00250{width:880.500000px;}
.x0_c00250{left:0.000000px;}
.x3_c00250{left:151.500000px;}
.x89_c00250{left:153.000000px;}
.x37_c00250{left:166.500000px;}
.x4_c00250{left:167.580000px;}
.x59_c00250{left:169.500000px;}
.xe8_c00250{left:172.500000px;}
.xb5_c00250{left:174.855000px;}
.x64_c00250{left:177.420000px;}
.xd3_c00250{left:180.000000px;}
.xc8_c00250{left:181.500000px;}
.xfa_c00250{left:183.000000px;}
.xe1_c00250{left:186.000000px;}
.x33_c00250{left:187.080000px;}
.xe9_c00250{left:189.000000px;}
.xce_c00250{left:190.920000px;}
.x5a_c00250{left:192.000000px;}
.x90_c00250{left:193.500000px;}
.x14_c00250{left:196.500000px;}
.x10a_c00250{left:198.000000px;}
.xb0_c00250{left:199.500000px;}
.xbd_c00250{left:200.580000px;}
.x115_c00250{left:202.500000px;}
.x9a_c00250{left:204.000000px;}
.xdc_c00250{left:205.080000px;}
.x1e_c00250{left:206.580000px;}
.x5_c00250{left:208.500000px;}
.x38_c00250{left:210.000000px;}
.x28_c00250{left:211.500000px;}
.x65_c00250{left:212.580000px;}
.x34_c00250{left:217.080000px;}
.x4e_c00250{left:219.420000px;}
.x108_c00250{left:220.920000px;}
.x77_c00250{left:222.420000px;}
.xcf_c00250{left:225.000000px;}
.x1f_c00250{left:229.500000px;}
.x43_c00250{left:230.580000px;}
.x7c_c00250{left:233.580000px;}
.x8a_c00250{left:235.500000px;}
.x82_c00250{left:237.000000px;}
.xb6_c00250{left:238.275000px;}
.x4f_c00250{left:241.920000px;}
.xfb_c00250{left:243.420000px;}
.xc5_c00250{left:244.920000px;}
.xea_c00250{left:246.000000px;}
.xd8_c00250{left:247.920000px;}
.xa3_c00250{left:249.420000px;}
.x6f_c00250{left:252.420000px;}
.x39_c00250{left:253.500000px;}
.x5b_c00250{left:255.000000px;}
.x112_c00250{left:256.500000px;}
.x66_c00250{left:257.580000px;}
.x35_c00250{left:259.500000px;}
.x6_c00250{left:261.000000px;}
.xd0_c00250{left:262.080000px;}
.x15_c00250{left:263.580000px;}
.x116_c00250{left:267.420000px;}
.x3a_c00250{left:268.500000px;}
.xfc_c00250{left:270.000000px;}
.x9b_c00250{left:271.500000px;}
.x109_c00250{left:272.580000px;}
.xc9_c00250{left:276.000000px;}
.xf7_c00250{left:277.500000px;}
.x102_c00250{left:278.580000px;}
.xb7_c00250{left:280.920000px;}
.x36_c00250{left:282.420000px;}
.x7_c00250{left:285.420000px;}
.x50_c00250{left:288.000000px;}
.x78_c00250{left:291.000000px;}
.x29_c00250{left:292.500000px;}
.x10d_c00250{left:293.580000px;}
.x3b_c00250{left:295.080000px;}
.x7d_c00250{left:296.580000px;}
.xf8_c00250{left:298.500000px;}
.xf1_c00250{left:300.420000px;}
.x91_c00250{left:302.580000px;}
.x8b_c00250{left:305.580000px;}
.x51_c00250{left:307.920000px;}
.xfe_c00250{left:309.420000px;}
.x8_c00250{left:310.500000px;}
.x2a_c00250{left:312.000000px;}
.x3c_c00250{left:313.500000px;}
.x20_c00250{left:316.080000px;}
.xaa_c00250{left:322.080000px;}
.x44_c00250{left:324.000000px;}
.xb1_c00250{left:325.500000px;}
.x83_c00250{left:328.500000px;}
.x67_c00250{left:330.000000px;}
.x52_c00250{left:333.420000px;}
.x7e_c00250{left:336.000000px;}
.x3d_c00250{left:338.580000px;}
.x45_c00250{left:340.500000px;}
.x2b_c00250{left:342.000000px;}
.xe2_c00250{left:343.500000px;}
.x70_c00250{left:345.000000px;}
.xf2_c00250{left:346.500000px;}
.xeb_c00250{left:347.580000px;}
.xca_c00250{left:349.500000px;}
.xc6_c00250{left:351.000000px;}
.xd1_c00250{left:352.500000px;}
.xd9_c00250{left:354.000000px;}
.x10e_c00250{left:355.920000px;}
.x46_c00250{left:358.080000px;}
.x79_c00250{left:361.500000px;}
.x16_c00250{left:362.580000px;}
.x68_c00250{left:364.920000px;}
.xff_c00250{left:366.000000px;}
.x5c_c00250{left:367.500000px;}
.xab_c00250{left:369.000000px;}
.x3e_c00250{left:370.080000px;}
.xe3_c00250{left:372.000000px;}
.xb2_c00250{left:376.500000px;}
.xbe_c00250{left:378.420000px;}
.x53_c00250{left:379.920000px;}
.xec_c00250{left:381.000000px;}
.x103_c00250{left:383.580000px;}
.x8c_c00250{left:388.500000px;}
.xf4_c00250{left:391.920000px;}
.x2c_c00250{left:394.080000px;}
.x10b_c00250{left:395.580000px;}
.x71_c00250{left:397.080000px;}
.xdd_c00250{left:398.580000px;}
.x9_c00250{left:400.500000px;}
.xb8_c00250{left:402.000000px;}
.x21_c00250{left:403.500000px;}
.x5d_c00250{left:404.580000px;}
.x1_c00250{left:406.500000px;}
.x9c_c00250{left:407.580000px;}
.x92_c00250{left:411.000000px;}
.xed_c00250{left:412.500000px;}
.xa4_c00250{left:414.000000px;}
.xe4_c00250{left:415.500000px;}
.xc7_c00250{left:416.580000px;}
.xf5_c00250{left:418.500000px;}
.x100_c00250{left:420.000000px;}
.xa_c00250{left:421.500000px;}
.x7f_c00250{left:424.500000px;}
.x10f_c00250{left:426.000000px;}
.x9d_c00250{left:429.000000px;}
.xac_c00250{left:430.080000px;}
.x117_c00250{left:432.000000px;}
.x5e_c00250{left:433.500000px;}
.xa5_c00250{left:434.580000px;}
.x17_c00250{left:436.080000px;}
.x72_c00250{left:438.000000px;}
.xee_c00250{left:441.000000px;}
.xda_c00250{left:442.920000px;}
.x84_c00250{left:444.000000px;}
.x22_c00250{left:447.000000px;}
.x104_c00250{left:448.500000px;}
.x2d_c00250{left:449.775000px;}
.xbf_c00250{left:453.420000px;}
.x54_c00250{left:456.000000px;}
.x47_c00250{left:457.500000px;}
.x113_c00250{left:459.000000px;}
.xcb_c00250{left:460.500000px;}
.xd4_c00250{left:463.500000px;}
.xb_c00250{left:465.420000px;}
.x73_c00250{left:468.000000px;}
.xdb_c00250{left:469.080000px;}
.x8d_c00250{left:471.000000px;}
.x48_c00250{left:472.500000px;}
.x85_c00250{left:473.580000px;}
.xef_c00250{left:475.920000px;}
.x93_c00250{left:477.000000px;}
.x18_c00250{left:483.000000px;}
.xe5_c00250{left:484.500000px;}
.x3f_c00250{left:485.580000px;}
.xb3_c00250{left:488.580000px;}
.x2e_c00250{left:490.080000px;}
.xde_c00250{left:491.580000px;}
.x105_c00250{left:495.000000px;}
.xad_c00250{left:496.500000px;}
.x69_c00250{left:497.580000px;}
.x9e_c00250{left:499.500000px;}
.x94_c00250{left:501.420000px;}
.x40_c00250{left:502.500000px;}
.xf9_c00250{left:504.420000px;}
.x49_c00250{left:507.000000px;}
.x23_c00250{left:511.500000px;}
.x19_c00250{left:513.000000px;}
.xd5_c00250{left:514.920000px;}
.xa6_c00250{left:516.420000px;}
.x118_c00250{left:517.500000px;}
.x101_c00250{left:519.000000px;}
.x95_c00250{left:520.080000px;}
.xf3_c00250{left:524.580000px;}
.x4a_c00250{left:526.500000px;}
.x6a_c00250{left:528.420000px;}
.xb9_c00250{left:529.500000px;}
.x55_c00250{left:531.000000px;}
.xc_c00250{left:532.500000px;}
.x24_c00250{left:534.420000px;}
.xdf_c00250{left:535.500000px;}
.xcc_c00250{left:536.580000px;}
.x9f_c00250{left:540.000000px;}
.x4b_c00250{left:543.420000px;}
.xd6_c00250{left:546.420000px;}
.xd_c00250{left:547.500000px;}
.xc0_c00250{left:548.580000px;}
.x5f_c00250{left:550.500000px;}
.x8e_c00250{left:551.580000px;}
.xa7_c00250{left:553.500000px;}
.x6b_c00250{left:555.420000px;}
.xe6_c00250{left:558.000000px;}
.x1a_c00250{left:559.500000px;}
.xa0_c00250{left:561.000000px;}
.x86_c00250{left:562.500000px;}
.x74_c00250{left:564.000000px;}
.x25_c00250{left:565.500000px;}
.xc1_c00250{left:567.420000px;}
.xf0_c00250{left:572.580000px;}
.xe7_c00250{left:574.500000px;}
.xe_c00250{left:576.000000px;}
.x106_c00250{left:577.500000px;}
.xae_c00250{left:578.580000px;}
.x7a_c00250{left:580.500000px;}
.x6c_c00250{left:582.000000px;}
.x96_c00250{left:583.275000px;}
.xe0_c00250{left:585.000000px;}
.x2f_c00250{left:587.580000px;}
.xa8_c00250{left:589.920000px;}
.x60_c00250{left:591.000000px;}
.x10c_c00250{left:592.500000px;}
.xc2_c00250{left:593.580000px;}
.xf_c00250{left:595.500000px;}
.x1b_c00250{left:597.000000px;}
.x80_c00250{left:598.920000px;}
.x6d_c00250{left:601.500000px;}
.x56_c00250{left:602.580000px;}
.xb4_c00250{left:605.580000px;}
.x30_c00250{left:607.080000px;}
.x61_c00250{left:609.000000px;}
.x6e_c00250{left:613.500000px;}
.x1c_c00250{left:618.000000px;}
.x4c_c00250{left:619.080000px;}
.x119_c00250{left:622.080000px;}
.x97_c00250{left:624.000000px;}
.xba_c00250{left:625.080000px;}
.x87_c00250{left:630.000000px;}
.x41_c00250{left:632.580000px;}
.x10_c00250{left:634.500000px;}
.x114_c00250{left:636.000000px;}
.xa1_c00250{left:638.580000px;}
.x26_c00250{left:642.000000px;}
.x8f_c00250{left:643.920000px;}
.x62_c00250{left:645.000000px;}
.xc3_c00250{left:646.500000px;}
.x1d_c00250{left:648.000000px;}
.x110_c00250{left:649.080000px;}
.x31_c00250{left:651.000000px;}
.x81_c00250{left:652.500000px;}
.x11_c00250{left:654.420000px;}
.xbb_c00250{left:655.920000px;}
.x98_c00250{left:657.000000px;}
.x75_c00250{left:661.080000px;}
.xd2_c00250{left:662.580000px;}
.xd7_c00250{left:664.920000px;}
.x88_c00250{left:666.000000px;}
.x57_c00250{left:669.000000px;}
.x42_c00250{left:670.920000px;}
.xf6_c00250{left:673.080000px;}
.x63_c00250{left:676.080000px;}
.xbc_c00250{left:679.500000px;}
.x27_c00250{left:680.580000px;}
.x4d_c00250{left:682.080000px;}
.x111_c00250{left:684.000000px;}
.x58_c00250{left:685.920000px;}
.xc4_c00250{left:687.000000px;}
.x12_c00250{left:688.080000px;}
.xa9_c00250{left:690.645000px;}
.x7b_c00250{left:693.000000px;}
.xa2_c00250{left:694.920000px;}
.xfd_c00250{left:696.000000px;}
.x32_c00250{left:697.500000px;}
.x107_c00250{left:700.500000px;}
.xaf_c00250{left:701.580000px;}
.x2_c00250{left:703.500000px;}
.x13_c00250{left:706.920000px;}
.x76_c00250{left:708.000000px;}
.xcd_c00250{left:714.000000px;}
.x99_c00250{left:721.500000px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.ls0_c00250{letter-spacing:0.000000pt;}
.ws1_c00250{word-spacing:-15.012693pt;}
.ws0_c00250{word-spacing:-6.367140pt;}
.ws4_c00250{word-spacing:-5.313996pt;}
.ws5_c00250{word-spacing:-2.692693pt;}
.ws2_c00250{word-spacing:-1.281902pt;}
.ws3_c00250{word-spacing:-0.282504pt;}
.ws6_c00250{word-spacing:0.000000pt;}
._0_c00250{width:5.797930pt;}
.fs1_c00250{font-size:16.640000pt;}
.fs0_c00250{font-size:18.133333pt;}
.fs5_c00250{font-size:22.666667pt;}
.fs2_c00250{font-size:25.706667pt;}
.fs4_c00250{font-size:28.746667pt;}
.fs3_c00250{font-size:31.733333pt;}
.fs6_c00250{font-size:34.773333pt;}
.y0_c00250{bottom:0.000000pt;}
.yc9_c00250{bottom:223.773333pt;}
.yc6_c00250{bottom:224.733333pt;}
.yc3_c00250{bottom:225.106667pt;}
.yc5_c00250{bottom:225.693333pt;}
.yc8_c00250{bottom:225.893333pt;}
.yc7_c00250{bottom:226.066667pt;}
.yc4_c00250{bottom:227.026667pt;}
.yc0_c00250{bottom:240.733333pt;}
.ybf_c00250{bottom:242.440000pt;}
.yc1_c00250{bottom:242.826667pt;}
.yc2_c00250{bottom:243.026667pt;}
.ybe_c00250{bottom:244.360000pt;}
.ybc_c00250{bottom:259.773333pt;}
.yba_c00250{bottom:260.733333pt;}
.ybb_c00250{bottom:261.306667pt;}
.ybd_c00250{bottom:261.693333pt;}
.yb8_c00250{bottom:277.106667pt;}
.yb9_c00250{bottom:277.306667pt;}
.yb7_c00250{bottom:278.066667pt;}
.yb6_c00250{bottom:279.973333pt;}
.yb1_c00250{bottom:294.440000pt;}
.yb4_c00250{bottom:295.773333pt;}
.yb0_c00250{bottom:296.360000pt;}
.yb3_c00250{bottom:296.560000pt;}
.yb2_c00250{bottom:297.306667pt;}
.yb5_c00250{bottom:297.693333pt;}
.yaf_c00250{bottom:311.026667pt;}
.ya9_c00250{bottom:312.733333pt;}
.yad_c00250{bottom:313.106667pt;}
.yae_c00250{bottom:313.893333pt;}
.yab_c00250{bottom:314.066667pt;}
.yac_c00250{bottom:314.640000pt;}
.yaa_c00250{bottom:315.026667pt;}
.ya7_c00250{bottom:328.360000pt;}
.ya3_c00250{bottom:330.440000pt;}
.ya5_c00250{bottom:331.226667pt;}
.ya8_c00250{bottom:331.973333pt;}
.ya4_c00250{bottom:332.360000pt;}
.ya6_c00250{bottom:333.306667pt;}
.ya2_c00250{bottom:347.773333pt;}
.ya1_c00250{bottom:349.306667pt;}
.ya0_c00250{bottom:349.693333pt;}
.y9f_c00250{bottom:365.106667pt;}
.y9e_c00250{bottom:367.026667pt;}
.y9d_c00250{bottom:382.440000pt;}
.y9b_c00250{bottom:384.360000pt;}
.y9c_c00250{bottom:385.306667pt;}
.y99_c00250{bottom:399.773333pt;}
.y98_c00250{bottom:401.693333pt;}
.y9a_c00250{bottom:402.640000pt;}
.y96_c00250{bottom:418.440000pt;}
.y95_c00250{bottom:419.226667pt;}
.y97_c00250{bottom:419.400000pt;}
.y94_c00250{bottom:420.360000pt;}
.y8d_c00250{bottom:435.400000pt;}
.y93_c00250{bottom:435.773333pt;}
.y92_c00250{bottom:435.973333pt;}
.y91_c00250{bottom:437.306667pt;}
.y8f_c00250{bottom:437.693333pt;}
.y8e_c00250{bottom:437.893333pt;}
.y90_c00250{bottom:438.640000pt;}
.y88_c00250{bottom:453.106667pt;}
.y8b_c00250{bottom:453.893333pt;}
.y8c_c00250{bottom:454.640000pt;}
.y8a_c00250{bottom:455.026667pt;}
.y89_c00250{bottom:455.973333pt;}
.y85_c00250{bottom:470.440000pt;}
.y87_c00250{bottom:471.226667pt;}
.y84_c00250{bottom:471.973333pt;}
.y83_c00250{bottom:472.360000pt;}
.y86_c00250{bottom:473.306667pt;}
.y7f_c00250{bottom:487.773333pt;}
.y80_c00250{bottom:488.933333pt;}
.y82_c00250{bottom:489.106667pt;}
.y81_c00250{bottom:489.693333pt;}
.y7e_c00250{bottom:490.640000pt;}
.y7d_c00250{bottom:491.026667pt;}
.y7b_c00250{bottom:505.493333pt;}
.y7a_c00250{bottom:506.440000pt;}
.y7c_c00250{bottom:507.973333pt;}
.y79_c00250{bottom:508.360000pt;}
.y78_c00250{bottom:523.773333pt;}
.y77_c00250{bottom:524.560000pt;}
.y76_c00250{bottom:541.106667pt;}
.y75_c00250{bottom:541.693333pt;}
.y73_c00250{bottom:542.640000pt;}
.y74_c00250{bottom:543.026667pt;}
.y70_c00250{bottom:558.440000pt;}
.y72_c00250{bottom:559.226667pt;}
.y71_c00250{bottom:560.360000pt;}
.y6e_c00250{bottom:575.773333pt;}
.y6f_c00250{bottom:577.106667pt;}
.y6d_c00250{bottom:577.693333pt;}
.y6b_c00250{bottom:592.733333pt;}
.y68_c00250{bottom:593.106667pt;}
.y6c_c00250{bottom:594.066667pt;}
.y67_c00250{bottom:594.266667pt;}
.y6a_c00250{bottom:595.026667pt;}
.y69_c00250{bottom:595.973333pt;}
.y61_c00250{bottom:609.693333pt;}
.y66_c00250{bottom:610.440000pt;}
.y62_c00250{bottom:611.400000pt;}
.y64_c00250{bottom:612.360000pt;}
.y65_c00250{bottom:612.560000pt;}
.y63_c00250{bottom:613.306667pt;}
.y60_c00250{bottom:627.026667pt;}
.y5b_c00250{bottom:629.106667pt;}
.y5e_c00250{bottom:629.693333pt;}
.y5d_c00250{bottom:630.066667pt;}
.y5c_c00250{bottom:630.640000pt;}
.y5f_c00250{bottom:631.026667pt;}
.y59_c00250{bottom:644.360000pt;}
.y56_c00250{bottom:645.306667pt;}
.y5a_c00250{bottom:645.693333pt;}
.y58_c00250{bottom:646.440000pt;}
.y57_c00250{bottom:647.226667pt;}
.y55_c00250{bottom:648.360000pt;}
.y54_c00250{bottom:662.640000pt;}
.y50_c00250{bottom:663.026667pt;}
.y53_c00250{bottom:663.773333pt;}
.y52_c00250{bottom:665.306667pt;}
.y4e_c00250{bottom:665.693333pt;}
.y51_c00250{bottom:665.893333pt;}
.y4f_c00250{bottom:666.640000pt;}
.y49_c00250{bottom:680.360000pt;}
.y4b_c00250{bottom:681.106667pt;}
.y4d_c00250{bottom:681.893333pt;}
.y4a_c00250{bottom:683.026667pt;}
.y4c_c00250{bottom:683.226667pt;}
.y47_c00250{bottom:697.693333pt;}
.y48_c00250{bottom:698.440000pt;}
.y45_c00250{bottom:700.360000pt;}
.y46_c00250{bottom:701.306667pt;}
.y41_c00250{bottom:715.773333pt;}
.y44_c00250{bottom:716.733333pt;}
.y43_c00250{bottom:717.693333pt;}
.y40_c00250{bottom:717.893333pt;}
.y42_c00250{bottom:718.640000pt;}
.y3d_c00250{bottom:733.106667pt;}
.y3e_c00250{bottom:734.066667pt;}
.y3c_c00250{bottom:735.026667pt;}
.y3f_c00250{bottom:735.226667pt;}
.y3b_c00250{bottom:751.773333pt;}
.y3a_c00250{bottom:752.560000pt;}
.y39_c00250{bottom:753.693333pt;}
.y36_c00250{bottom:768.360000pt;}
.y34_c00250{bottom:769.106667pt;}
.y37_c00250{bottom:770.640000pt;}
.y38_c00250{bottom:771.026667pt;}
.y35_c00250{bottom:771.226667pt;}
.y30_c00250{bottom:785.306667pt;}
.y32_c00250{bottom:786.066667pt;}
.y33_c00250{bottom:786.440000pt;}
.y2f_c00250{bottom:787.226667pt;}
.y31_c00250{bottom:788.360000pt;}
.y29_c00250{bottom:802.640000pt;}
.y2b_c00250{bottom:803.773333pt;}
.y2d_c00250{bottom:804.560000pt;}
.y2c_c00250{bottom:804.733333pt;}
.y2a_c00250{bottom:805.306667pt;}
.y28_c00250{bottom:805.693333pt;}
.y2e_c00250{bottom:806.640000pt;}
.y27_c00250{bottom:819.773333pt;}
.y24_c00250{bottom:820.360000pt;}
.y22_c00250{bottom:821.493333pt;}
.y26_c00250{bottom:822.440000pt;}
.y25_c00250{bottom:823.026667pt;}
.y23_c00250{bottom:824.360000pt;}
.y21_c00250{bottom:839.400000pt;}
.y20_c00250{bottom:839.773333pt;}
.y1e_c00250{bottom:840.560000pt;}
.y1f_c00250{bottom:841.693333pt;}
.y1b_c00250{bottom:855.773333pt;}
.y1d_c00250{bottom:856.733333pt;}
.y1c_c00250{bottom:857.893333pt;}
.y1a_c00250{bottom:858.640000pt;}
.y19_c00250{bottom:873.106667pt;}
.y17_c00250{bottom:875.026667pt;}
.y18_c00250{bottom:875.973333pt;}
.y16_c00250{bottom:891.026667pt;}
.y13_c00250{bottom:891.773333pt;}
.y15_c00250{bottom:892.560000pt;}
.y12_c00250{bottom:893.306667pt;}
.y14_c00250{bottom:893.693333pt;}
.yf_c00250{bottom:909.106667pt;}
.y10_c00250{bottom:911.026667pt;}
.y11_c00250{bottom:911.226667pt;}
.yd_c00250{bottom:926.440000pt;}
.ye_c00250{bottom:928.360000pt;}
.yc_c00250{bottom:929.306667pt;}
.y9_c00250{bottom:943.400000pt;}
.y4_c00250{bottom:943.773333pt;}
.y6_c00250{bottom:944.360000pt;}
.ya_c00250{bottom:944.560000pt;}
.y5_c00250{bottom:944.733333pt;}
.y7_c00250{bottom:945.306667pt;}
.y3_c00250{bottom:945.693333pt;}
.y8_c00250{bottom:945.893333pt;}
.yb_c00250{bottom:946.640000pt;}
.y1_c00250{bottom:979.600000pt;}
.y2_c00250{bottom:980.560000pt;}
.h2_c00250{height:20.466875pt;}
.h1_c00250{height:22.303646pt;}
.h6_c00250{height:27.879557pt;}
.h3_c00250{height:31.618698pt;}
.h5_c00250{height:35.357839pt;}
.h4_c00250{height:39.031380pt;}
.h7_c00250{height:42.770521pt;}
.h0_c00250{height:1186.666667pt;}
.w0_c00250{width:782.666667pt;}
.x0_c00250{left:0.000000pt;}
.x3_c00250{left:134.666667pt;}
.x89_c00250{left:136.000000pt;}
.x37_c00250{left:148.000000pt;}
.x4_c00250{left:148.960000pt;}
.x59_c00250{left:150.666667pt;}
.xe8_c00250{left:153.333333pt;}
.xb5_c00250{left:155.426667pt;}
.x64_c00250{left:157.706667pt;}
.xd3_c00250{left:160.000000pt;}
.xc8_c00250{left:161.333333pt;}
.xfa_c00250{left:162.666667pt;}
.xe1_c00250{left:165.333333pt;}
.x33_c00250{left:166.293333pt;}
.xe9_c00250{left:168.000000pt;}
.xce_c00250{left:169.706667pt;}
.x5a_c00250{left:170.666667pt;}
.x90_c00250{left:172.000000pt;}
.x14_c00250{left:174.666667pt;}
.x10a_c00250{left:176.000000pt;}
.xb0_c00250{left:177.333333pt;}
.xbd_c00250{left:178.293333pt;}
.x115_c00250{left:180.000000pt;}
.x9a_c00250{left:181.333333pt;}
.xdc_c00250{left:182.293333pt;}
.x1e_c00250{left:183.626667pt;}
.x5_c00250{left:185.333333pt;}
.x38_c00250{left:186.666667pt;}
.x28_c00250{left:188.000000pt;}
.x65_c00250{left:188.960000pt;}
.x34_c00250{left:192.960000pt;}
.x4e_c00250{left:195.040000pt;}
.x108_c00250{left:196.373333pt;}
.x77_c00250{left:197.706667pt;}
.xcf_c00250{left:200.000000pt;}
.x1f_c00250{left:204.000000pt;}
.x43_c00250{left:204.960000pt;}
.x7c_c00250{left:207.626667pt;}
.x8a_c00250{left:209.333333pt;}
.x82_c00250{left:210.666667pt;}
.xb6_c00250{left:211.800000pt;}
.x4f_c00250{left:215.040000pt;}
.xfb_c00250{left:216.373333pt;}
.xc5_c00250{left:217.706667pt;}
.xea_c00250{left:218.666667pt;}
.xd8_c00250{left:220.373333pt;}
.xa3_c00250{left:221.706667pt;}
.x6f_c00250{left:224.373333pt;}
.x39_c00250{left:225.333333pt;}
.x5b_c00250{left:226.666667pt;}
.x112_c00250{left:228.000000pt;}
.x66_c00250{left:228.960000pt;}
.x35_c00250{left:230.666667pt;}
.x6_c00250{left:232.000000pt;}
.xd0_c00250{left:232.960000pt;}
.x15_c00250{left:234.293333pt;}
.x116_c00250{left:237.706667pt;}
.x3a_c00250{left:238.666667pt;}
.xfc_c00250{left:240.000000pt;}
.x9b_c00250{left:241.333333pt;}
.x109_c00250{left:242.293333pt;}
.xc9_c00250{left:245.333333pt;}
.xf7_c00250{left:246.666667pt;}
.x102_c00250{left:247.626667pt;}
.xb7_c00250{left:249.706667pt;}
.x36_c00250{left:251.040000pt;}
.x7_c00250{left:253.706667pt;}
.x50_c00250{left:256.000000pt;}
.x78_c00250{left:258.666667pt;}
.x29_c00250{left:260.000000pt;}
.x10d_c00250{left:260.960000pt;}
.x3b_c00250{left:262.293333pt;}
.x7d_c00250{left:263.626667pt;}
.xf8_c00250{left:265.333333pt;}
.xf1_c00250{left:267.040000pt;}
.x91_c00250{left:268.960000pt;}
.x8b_c00250{left:271.626667pt;}
.x51_c00250{left:273.706667pt;}
.xfe_c00250{left:275.040000pt;}
.x8_c00250{left:276.000000pt;}
.x2a_c00250{left:277.333333pt;}
.x3c_c00250{left:278.666667pt;}
.x20_c00250{left:280.960000pt;}
.xaa_c00250{left:286.293333pt;}
.x44_c00250{left:288.000000pt;}
.xb1_c00250{left:289.333333pt;}
.x83_c00250{left:292.000000pt;}
.x67_c00250{left:293.333333pt;}
.x52_c00250{left:296.373333pt;}
.x7e_c00250{left:298.666667pt;}
.x3d_c00250{left:300.960000pt;}
.x45_c00250{left:302.666667pt;}
.x2b_c00250{left:304.000000pt;}
.xe2_c00250{left:305.333333pt;}
.x70_c00250{left:306.666667pt;}
.xf2_c00250{left:308.000000pt;}
.xeb_c00250{left:308.960000pt;}
.xca_c00250{left:310.666667pt;}
.xc6_c00250{left:312.000000pt;}
.xd1_c00250{left:313.333333pt;}
.xd9_c00250{left:314.666667pt;}
.x10e_c00250{left:316.373333pt;}
.x46_c00250{left:318.293333pt;}
.x79_c00250{left:321.333333pt;}
.x16_c00250{left:322.293333pt;}
.x68_c00250{left:324.373333pt;}
.xff_c00250{left:325.333333pt;}
.x5c_c00250{left:326.666667pt;}
.xab_c00250{left:328.000000pt;}
.x3e_c00250{left:328.960000pt;}
.xe3_c00250{left:330.666667pt;}
.xb2_c00250{left:334.666667pt;}
.xbe_c00250{left:336.373333pt;}
.x53_c00250{left:337.706667pt;}
.xec_c00250{left:338.666667pt;}
.x103_c00250{left:340.960000pt;}
.x8c_c00250{left:345.333333pt;}
.xf4_c00250{left:348.373333pt;}
.x2c_c00250{left:350.293333pt;}
.x10b_c00250{left:351.626667pt;}
.x71_c00250{left:352.960000pt;}
.xdd_c00250{left:354.293333pt;}
.x9_c00250{left:356.000000pt;}
.xb8_c00250{left:357.333333pt;}
.x21_c00250{left:358.666667pt;}
.x5d_c00250{left:359.626667pt;}
.x1_c00250{left:361.333333pt;}
.x9c_c00250{left:362.293333pt;}
.x92_c00250{left:365.333333pt;}
.xed_c00250{left:366.666667pt;}
.xa4_c00250{left:368.000000pt;}
.xe4_c00250{left:369.333333pt;}
.xc7_c00250{left:370.293333pt;}
.xf5_c00250{left:372.000000pt;}
.x100_c00250{left:373.333333pt;}
.xa_c00250{left:374.666667pt;}
.x7f_c00250{left:377.333333pt;}
.x10f_c00250{left:378.666667pt;}
.x9d_c00250{left:381.333333pt;}
.xac_c00250{left:382.293333pt;}
.x117_c00250{left:384.000000pt;}
.x5e_c00250{left:385.333333pt;}
.xa5_c00250{left:386.293333pt;}
.x17_c00250{left:387.626667pt;}
.x72_c00250{left:389.333333pt;}
.xee_c00250{left:392.000000pt;}
.xda_c00250{left:393.706667pt;}
.x84_c00250{left:394.666667pt;}
.x22_c00250{left:397.333333pt;}
.x104_c00250{left:398.666667pt;}
.x2d_c00250{left:399.800000pt;}
.xbf_c00250{left:403.040000pt;}
.x54_c00250{left:405.333333pt;}
.x47_c00250{left:406.666667pt;}
.x113_c00250{left:408.000000pt;}
.xcb_c00250{left:409.333333pt;}
.xd4_c00250{left:412.000000pt;}
.xb_c00250{left:413.706667pt;}
.x73_c00250{left:416.000000pt;}
.xdb_c00250{left:416.960000pt;}
.x8d_c00250{left:418.666667pt;}
.x48_c00250{left:420.000000pt;}
.x85_c00250{left:420.960000pt;}
.xef_c00250{left:423.040000pt;}
.x93_c00250{left:424.000000pt;}
.x18_c00250{left:429.333333pt;}
.xe5_c00250{left:430.666667pt;}
.x3f_c00250{left:431.626667pt;}
.xb3_c00250{left:434.293333pt;}
.x2e_c00250{left:435.626667pt;}
.xde_c00250{left:436.960000pt;}
.x105_c00250{left:440.000000pt;}
.xad_c00250{left:441.333333pt;}
.x69_c00250{left:442.293333pt;}
.x9e_c00250{left:444.000000pt;}
.x94_c00250{left:445.706667pt;}
.x40_c00250{left:446.666667pt;}
.xf9_c00250{left:448.373333pt;}
.x49_c00250{left:450.666667pt;}
.x23_c00250{left:454.666667pt;}
.x19_c00250{left:456.000000pt;}
.xd5_c00250{left:457.706667pt;}
.xa6_c00250{left:459.040000pt;}
.x118_c00250{left:460.000000pt;}
.x101_c00250{left:461.333333pt;}
.x95_c00250{left:462.293333pt;}
.xf3_c00250{left:466.293333pt;}
.x4a_c00250{left:468.000000pt;}
.x6a_c00250{left:469.706667pt;}
.xb9_c00250{left:470.666667pt;}
.x55_c00250{left:472.000000pt;}
.xc_c00250{left:473.333333pt;}
.x24_c00250{left:475.040000pt;}
.xdf_c00250{left:476.000000pt;}
.xcc_c00250{left:476.960000pt;}
.x9f_c00250{left:480.000000pt;}
.x4b_c00250{left:483.040000pt;}
.xd6_c00250{left:485.706667pt;}
.xd_c00250{left:486.666667pt;}
.xc0_c00250{left:487.626667pt;}
.x5f_c00250{left:489.333333pt;}
.x8e_c00250{left:490.293333pt;}
.xa7_c00250{left:492.000000pt;}
.x6b_c00250{left:493.706667pt;}
.xe6_c00250{left:496.000000pt;}
.x1a_c00250{left:497.333333pt;}
.xa0_c00250{left:498.666667pt;}
.x86_c00250{left:500.000000pt;}
.x74_c00250{left:501.333333pt;}
.x25_c00250{left:502.666667pt;}
.xc1_c00250{left:504.373333pt;}
.xf0_c00250{left:508.960000pt;}
.xe7_c00250{left:510.666667pt;}
.xe_c00250{left:512.000000pt;}
.x106_c00250{left:513.333333pt;}
.xae_c00250{left:514.293333pt;}
.x7a_c00250{left:516.000000pt;}
.x6c_c00250{left:517.333333pt;}
.x96_c00250{left:518.466667pt;}
.xe0_c00250{left:520.000000pt;}
.x2f_c00250{left:522.293333pt;}
.xa8_c00250{left:524.373333pt;}
.x60_c00250{left:525.333333pt;}
.x10c_c00250{left:526.666667pt;}
.xc2_c00250{left:527.626667pt;}
.xf_c00250{left:529.333333pt;}
.x1b_c00250{left:530.666667pt;}
.x80_c00250{left:532.373333pt;}
.x6d_c00250{left:534.666667pt;}
.x56_c00250{left:535.626667pt;}
.xb4_c00250{left:538.293333pt;}
.x30_c00250{left:539.626667pt;}
.x61_c00250{left:541.333333pt;}
.x6e_c00250{left:545.333333pt;}
.x1c_c00250{left:549.333333pt;}
.x4c_c00250{left:550.293333pt;}
.x119_c00250{left:552.960000pt;}
.x97_c00250{left:554.666667pt;}
.xba_c00250{left:555.626667pt;}
.x87_c00250{left:560.000000pt;}
.x41_c00250{left:562.293333pt;}
.x10_c00250{left:564.000000pt;}
.x114_c00250{left:565.333333pt;}
.xa1_c00250{left:567.626667pt;}
.x26_c00250{left:570.666667pt;}
.x8f_c00250{left:572.373333pt;}
.x62_c00250{left:573.333333pt;}
.xc3_c00250{left:574.666667pt;}
.x1d_c00250{left:576.000000pt;}
.x110_c00250{left:576.960000pt;}
.x31_c00250{left:578.666667pt;}
.x81_c00250{left:580.000000pt;}
.x11_c00250{left:581.706667pt;}
.xbb_c00250{left:583.040000pt;}
.x98_c00250{left:584.000000pt;}
.x75_c00250{left:587.626667pt;}
.xd2_c00250{left:588.960000pt;}
.xd7_c00250{left:591.040000pt;}
.x88_c00250{left:592.000000pt;}
.x57_c00250{left:594.666667pt;}
.x42_c00250{left:596.373333pt;}
.xf6_c00250{left:598.293333pt;}
.x63_c00250{left:600.960000pt;}
.xbc_c00250{left:604.000000pt;}
.x27_c00250{left:604.960000pt;}
.x4d_c00250{left:606.293333pt;}
.x111_c00250{left:608.000000pt;}
.x58_c00250{left:609.706667pt;}
.xc4_c00250{left:610.666667pt;}
.x12_c00250{left:611.626667pt;}
.xa9_c00250{left:613.906667pt;}
.x7b_c00250{left:616.000000pt;}
.xa2_c00250{left:617.706667pt;}
.xfd_c00250{left:618.666667pt;}
.x32_c00250{left:620.000000pt;}
.x107_c00250{left:622.666667pt;}
.xaf_c00250{left:623.626667pt;}
.x2_c00250{left:625.333333pt;}
.x13_c00250{left:628.373333pt;}
.x76_c00250{left:629.333333pt;}
.xcd_c00250{left:634.666667pt;}
.x99_c00250{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5f98e7808ce264db3e26fbce.woff2')format("woff");}.ff1_c00251{font-family:ff1_c00251;line-height:1.688965;font-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_c00251{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m54_c00251{transform:matrix(0.337040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337040,0.000000,0.000000,0.250000,0,0);}
.m9c_c00251{transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);}
.m1a_c00251{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_c00251{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m80_c00251{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m9_c00251{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mf6_c00251{transform:matrix(0.363880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363880,0.000000,0.000000,0.250000,0,0);}
.m8b_c00251{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m82_c00251{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m10_c00251{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mc4_c00251{transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);}
.m88_c00251{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m66_c00251{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.md1_c00251{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.md0_c00251{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m79_c00251{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m2c_c00251{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m18_c00251{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m1f_c00251{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mef_c00251{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.me_c00251{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.ma2_c00251{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.mc0_c00251{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m41_c00251{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.ma4_c00251{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mda_c00251{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);}
.m93_c00251{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m89_c00251{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m9e_c00251{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.md8_c00251{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m53_c00251{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m1c_c00251{transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);}
.mb6_c00251{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.md6_c00251{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.me8_c00251{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m95_c00251{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mae_c00251{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.ma5_c00251{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.mca_c00251{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.m44_c00251{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m86_c00251{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m76_c00251{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m6b_c00251{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m91_c00251{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mf5_c00251{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.me4_c00251{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mcd_c00251{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m92_c00251{transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);}
.mce_c00251{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mb_c00251{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.ma7_c00251{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.m7f_c00251{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.ma9_c00251{transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);}
.m31_c00251{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m69_c00251{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m16_c00251{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mf8_c00251{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.mfd_c00251{transform:matrix(0.424463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424463,0.000000,0.000000,0.250000,0,0);}
.m9a_c00251{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m23_c00251{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mdc_c00251{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m15_c00251{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m51_c00251{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m5c_c00251{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mec_c00251{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mf9_c00251{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mcb_c00251{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m64_c00251{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.mc5_c00251{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m1d_c00251{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m4e_c00251{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m9b_c00251{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.m61_c00251{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.mde_c00251{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m8e_c00251{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.mb9_c00251{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.m8_c00251{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mf3_c00251{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.mf_c00251{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.ma3_c00251{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m98_c00251{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m8f_c00251{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m3d_c00251{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m27_c00251{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.mdb_c00251{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.md7_c00251{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m81_c00251{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m5a_c00251{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m78_c00251{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m7a_c00251{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mc1_c00251{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.mb8_c00251{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.mab_c00251{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m8c_c00251{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m90_c00251{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m5f_c00251{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.mfe_c00251{transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);}
.m32_c00251{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m85_c00251{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m58_c00251{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.mb0_c00251{transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);}
.m71_c00251{transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);}
.m9f_c00251{transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);}
.m7c_c00251{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.mdd_c00251{transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);}
.mb7_c00251{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mb4_c00251{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m34_c00251{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m38_c00251{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m35_c00251{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m2f_c00251{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m50_c00251{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.mbc_c00251{transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);}
.m59_c00251{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.me5_c00251{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m21_c00251{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m4b_c00251{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.mbb_c00251{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m6e_c00251{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m5d_c00251{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mc7_c00251{transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);}
.m4_c00251{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m39_c00251{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mc_c00251{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_c00251{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m97_c00251{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m72_c00251{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m4d_c00251{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m99_c00251{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m4f_c00251{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mfb_c00251{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m6f_c00251{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m63_c00251{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mc9_c00251{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.md9_c00251{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m30_c00251{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m36_c00251{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m96_c00251{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.ma1_c00251{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m14_c00251{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m26_c00251{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m13_c00251{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m19_c00251{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m43_c00251{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.med_c00251{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m6_c00251{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m56_c00251{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.me7_c00251{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m29_c00251{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m62_c00251{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m7_c00251{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m87_c00251{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mc6_c00251{transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);}
.m22_c00251{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.ma_c00251{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mbd_c00251{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m68_c00251{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m6d_c00251{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m3_c00251{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mf0_c00251{transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);}
.m24_c00251{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m17_c00251{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m60_c00251{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.me2_c00251{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m7d_c00251{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m1e_c00251{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.ma0_c00251{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m57_c00251{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m8d_c00251{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m3f_c00251{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.me0_c00251{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m7e_c00251{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m67_c00251{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m12_c00251{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mba_c00251{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m75_c00251{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mcc_c00251{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m3b_c00251{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m33_c00251{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m94_c00251{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mfc_c00251{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m2_c00251{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m1b_c00251{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mb5_c00251{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mcf_c00251{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m6c_c00251{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mc3_c00251{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.md_c00251{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m49_c00251{transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);}
.mf7_c00251{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.mac_c00251{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m2b_c00251{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mdf_c00251{transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);}
.me3_c00251{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m84_c00251{transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);}
.m4c_c00251{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m2d_c00251{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m2e_c00251{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mc2_c00251{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m28_c00251{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m52_c00251{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mf2_c00251{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.md5_c00251{transform:matrix(0.597756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597756,0.000000,0.000000,0.250000,0,0);}
.m73_c00251{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.maf_c00251{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m5e_c00251{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.me1_c00251{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.ma6_c00251{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.mad_c00251{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m0_c00251{transform:matrix(0.606618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606618,0.000000,0.000000,0.250000,0,0);}
.me6_c00251{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mf1_c00251{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.m40_c00251{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m25_c00251{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m7b_c00251{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m47_c00251{transform:matrix(0.617059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617059,0.000000,0.000000,0.250000,0,0);}
.mb2_c00251{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.mff_c00251{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);}
.mbf_c00251{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m1_c00251{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m3e_c00251{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mb3_c00251{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.md2_c00251{transform:matrix(0.638485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638485,0.000000,0.000000,0.250000,0,0);}
.ma8_c00251{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.mfa_c00251{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m45_c00251{transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);}
.mbe_c00251{transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);}
.me9_c00251{transform:matrix(0.656120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656120,0.000000,0.000000,0.250000,0,0);}
.mc8_c00251{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.maa_c00251{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);}
.m46_c00251{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m20_c00251{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m65_c00251{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.md4_c00251{transform:matrix(0.683088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683088,0.000000,0.000000,0.250000,0,0);}
.m70_c00251{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m5_c00251{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mf4_c00251{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m55_c00251{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m9d_c00251{transform:matrix(0.714706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.714706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.714706,0.000000,0.000000,0.250000,0,0);}
.m100_c00251{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m2a_c00251{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.meb_c00251{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m3c_c00251{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m74_c00251{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m42_c00251{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.mee_c00251{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m11_c00251{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m3a_c00251{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mb1_c00251{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mea_c00251{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m77_c00251{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m4a_c00251{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m6a_c00251{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m48_c00251{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m37_c00251{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.md3_c00251{transform:matrix(0.840545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840545,0.000000,0.000000,0.250000,0,0);}
.v0_c00251{vertical-align:0.000000px;}
.ls0_c00251{letter-spacing:0.000000px;}
.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:-16.889280px;}
.ws1_c00251{word-spacing:-8.008560px;}
.ws2_c00251{word-spacing:-6.184625px;}
.ws3_c00251{word-spacing:0.000000px;}
._0_c00251{width:5.509930px;}
.fc0_c00251{color:transparent;}
.fs4_c00251{font-size:18.720000px;}
.fs0_c00251{font-size:20.400000px;}
.fs5_c00251{font-size:25.500000px;}
.fs1_c00251{font-size:28.920000px;}
.fs2_c00251{font-size:32.340000px;}
.fs3_c00251{font-size:35.700000px;}
.fs6_c00251{font-size:39.120000px;}
.y0_c00251{bottom:0.000000px;}
.ye6_c00251{bottom:250.905000px;}
.ye5_c00251{bottom:252.405000px;}
.ye3_c00251{bottom:253.245000px;}
.ye4_c00251{bottom:254.130000px;}
.ye1_c00251{bottom:254.970000px;}
.ye2_c00251{bottom:255.405000px;}
.ydf_c00251{bottom:271.470000px;}
.ye0_c00251{bottom:271.680000px;}
.ydd_c00251{bottom:272.745000px;}
.ydb_c00251{bottom:273.405000px;}
.yde_c00251{bottom:273.630000px;}
.yda_c00251{bottom:274.470000px;}
.ydc_c00251{bottom:274.905000px;}
.yd3_c00251{bottom:290.745000px;}
.yd9_c00251{bottom:292.245000px;}
.yd6_c00251{bottom:292.680000px;}
.yd5_c00251{bottom:293.130000px;}
.yd8_c00251{bottom:293.745000px;}
.yd4_c00251{bottom:294.405000px;}
.yd7_c00251{bottom:294.630000px;}
.yd1_c00251{bottom:310.905000px;}
.yd2_c00251{bottom:311.745000px;}
.yca_c00251{bottom:312.630000px;}
.ycf_c00251{bottom:313.245000px;}
.ycb_c00251{bottom:313.470000px;}
.ycc_c00251{bottom:313.905000px;}
.yd0_c00251{bottom:314.130000px;}
.yce_c00251{bottom:314.325000px;}
.ycd_c00251{bottom:315.405000px;}
.yc6_c00251{bottom:331.245000px;}
.yc5_c00251{bottom:332.130000px;}
.yc7_c00251{bottom:332.745000px;}
.yc4_c00251{bottom:333.405000px;}
.yc9_c00251{bottom:333.630000px;}
.yc8_c00251{bottom:334.905000px;}
.yc2_c00251{bottom:352.245000px;}
.yc1_c00251{bottom:352.905000px;}
.yc0_c00251{bottom:353.130000px;}
.yc3_c00251{bottom:354.405000px;}
.yba_c00251{bottom:370.245000px;}
.ybb_c00251{bottom:371.745000px;}
.ybf_c00251{bottom:372.405000px;}
.ybe_c00251{bottom:372.630000px;}
.ybc_c00251{bottom:373.905000px;}
.ybd_c00251{bottom:374.130000px;}
.yb8_c00251{bottom:391.245000px;}
.yb9_c00251{bottom:392.970000px;}
.yb5_c00251{bottom:393.405000px;}
.yb6_c00251{bottom:394.470000px;}
.yb7_c00251{bottom:394.905000px;}
.yaf_c00251{bottom:410.745000px;}
.yb4_c00251{bottom:411.630000px;}
.yb3_c00251{bottom:412.905000px;}
.yb2_c00251{bottom:413.970000px;}
.yb0_c00251{bottom:414.405000px;}
.yb1_c00251{bottom:415.470000px;}
.yab_c00251{bottom:431.745000px;}
.yaa_c00251{bottom:432.405000px;}
.yac_c00251{bottom:432.630000px;}
.yae_c00251{bottom:433.470000px;}
.yad_c00251{bottom:433.905000px;}
.ya6_c00251{bottom:448.905000px;}
.ya8_c00251{bottom:449.745000px;}
.ya9_c00251{bottom:450.825000px;}
.ya3_c00251{bottom:451.245000px;}
.ya2_c00251{bottom:451.905000px;}
.ya5_c00251{bottom:452.325000px;}
.ya7_c00251{bottom:452.970000px;}
.ya4_c00251{bottom:453.405000px;}
.ya1_c00251{bottom:470.550000px;}
.y9e_c00251{bottom:470.745000px;}
.ya0_c00251{bottom:471.630000px;}
.y9d_c00251{bottom:472.905000px;}
.y9f_c00251{bottom:473.130000px;}
.y9c_c00251{bottom:488.970000px;}
.y9a_c00251{bottom:490.245000px;}
.y99_c00251{bottom:491.130000px;}
.y9b_c00251{bottom:492.405000px;}
.y98_c00251{bottom:508.470000px;}
.y95_c00251{bottom:509.745000px;}
.y97_c00251{bottom:510.630000px;}
.y94_c00251{bottom:510.825000px;}
.y93_c00251{bottom:511.905000px;}
.y96_c00251{bottom:512.970000px;}
.y91_c00251{bottom:528.180000px;}
.y8f_c00251{bottom:528.405000px;}
.y90_c00251{bottom:529.245000px;}
.y92_c00251{bottom:530.970000px;}
.y8e_c00251{bottom:531.405000px;}
.y8c_c00251{bottom:548.745000px;}
.y8d_c00251{bottom:550.245000px;}
.y8b_c00251{bottom:552.405000px;}
.y88_c00251{bottom:567.405000px;}
.y8a_c00251{bottom:569.745000px;}
.y89_c00251{bottom:570.630000px;}
.y85_c00251{bottom:571.470000px;}
.y86_c00251{bottom:571.905000px;}
.y87_c00251{bottom:572.970000px;}
.y82_c00251{bottom:586.905000px;}
.y84_c00251{bottom:589.905000px;}
.y83_c00251{bottom:590.130000px;}
.y80_c00251{bottom:590.970000px;}
.y81_c00251{bottom:591.405000px;}
.y7e_c00251{bottom:606.405000px;}
.y7c_c00251{bottom:608.325000px;}
.y7f_c00251{bottom:608.745000px;}
.y7d_c00251{bottom:609.825000px;}
.y79_c00251{bottom:610.470000px;}
.y7a_c00251{bottom:610.905000px;}
.y7b_c00251{bottom:611.970000px;}
.y74_c00251{bottom:627.825000px;}
.y77_c00251{bottom:628.245000px;}
.y73_c00251{bottom:629.130000px;}
.y72_c00251{bottom:629.325000px;}
.y75_c00251{bottom:629.550000px;}
.y78_c00251{bottom:629.970000px;}
.y76_c00251{bottom:630.405000px;}
.y6d_c00251{bottom:647.745000px;}
.y71_c00251{bottom:648.630000px;}
.y70_c00251{bottom:649.470000px;}
.y6e_c00251{bottom:649.905000px;}
.y6f_c00251{bottom:651.405000px;}
.y69_c00251{bottom:667.245000px;}
.y6b_c00251{bottom:668.745000px;}
.y68_c00251{bottom:669.405000px;}
.y6c_c00251{bottom:669.825000px;}
.y6a_c00251{bottom:670.470000px;}
.y62_c00251{bottom:687.825000px;}
.y66_c00251{bottom:688.245000px;}
.y63_c00251{bottom:688.905000px;}
.y67_c00251{bottom:689.130000px;}
.y64_c00251{bottom:689.970000px;}
.y65_c00251{bottom:690.405000px;}
.y61_c00251{bottom:707.745000px;}
.y5e_c00251{bottom:708.405000px;}
.y60_c00251{bottom:708.630000px;}
.y5f_c00251{bottom:709.905000px;}
.y5d_c00251{bottom:725.745000px;}
.y5c_c00251{bottom:726.825000px;}
.y58_c00251{bottom:727.245000px;}
.y5b_c00251{bottom:728.130000px;}
.y5a_c00251{bottom:728.325000px;}
.y59_c00251{bottom:729.405000px;}
.y53_c00251{bottom:745.245000px;}
.y57_c00251{bottom:745.905000px;}
.y54_c00251{bottom:746.745000px;}
.y55_c00251{bottom:748.905000px;}
.y56_c00251{bottom:749.130000px;}
.y4d_c00251{bottom:764.745000px;}
.y4e_c00251{bottom:766.245000px;}
.y50_c00251{bottom:766.470000px;}
.y51_c00251{bottom:767.325000px;}
.y52_c00251{bottom:768.405000px;}
.y4f_c00251{bottom:768.630000px;}
.y48_c00251{bottom:784.905000px;}
.y4a_c00251{bottom:785.745000px;}
.y4c_c00251{bottom:786.180000px;}
.y4b_c00251{bottom:787.245000px;}
.y49_c00251{bottom:787.905000px;}
.y47_c00251{bottom:804.825000px;}
.y46_c00251{bottom:806.325000px;}
.y45_c00251{bottom:807.405000px;}
.y3f_c00251{bottom:824.745000px;}
.y44_c00251{bottom:826.245000px;}
.y40_c00251{bottom:826.905000px;}
.y43_c00251{bottom:827.130000px;}
.y41_c00251{bottom:827.970000px;}
.y42_c00251{bottom:828.405000px;}
.y3e_c00251{bottom:845.325000px;}
.y3c_c00251{bottom:845.745000px;}
.y3a_c00251{bottom:846.405000px;}
.y3d_c00251{bottom:846.630000px;}
.y3b_c00251{bottom:847.905000px;}
.y37_c00251{bottom:864.405000px;}
.y39_c00251{bottom:865.245000px;}
.y34_c00251{bottom:865.905000px;}
.y35_c00251{bottom:866.130000px;}
.y36_c00251{bottom:867.405000px;}
.y38_c00251{bottom:868.470000px;}
.y2e_c00251{bottom:884.745000px;}
.y30_c00251{bottom:885.630000px;}
.y33_c00251{bottom:885.825000px;}
.y31_c00251{bottom:886.470000px;}
.y2f_c00251{bottom:886.905000px;}
.y32_c00251{bottom:887.970000px;}
.y2b_c00251{bottom:904.245000px;}
.y2d_c00251{bottom:905.325000px;}
.y2c_c00251{bottom:906.405000px;}
.y27_c00251{bottom:922.905000px;}
.y26_c00251{bottom:923.745000px;}
.y2a_c00251{bottom:924.180000px;}
.y28_c00251{bottom:925.245000px;}
.y25_c00251{bottom:925.905000px;}
.y29_c00251{bottom:927.405000px;}
.y23_c00251{bottom:943.470000px;}
.y1f_c00251{bottom:944.970000px;}
.y21_c00251{bottom:945.630000px;}
.y20_c00251{bottom:946.470000px;}
.y22_c00251{bottom:946.905000px;}
.y24_c00251{bottom:947.970000px;}
.y1c_c00251{bottom:962.970000px;}
.y1d_c00251{bottom:964.245000px;}
.y19_c00251{bottom:964.905000px;}
.y1a_c00251{bottom:965.970000px;}
.y1b_c00251{bottom:966.405000px;}
.y1e_c00251{bottom:967.470000px;}
.y16_c00251{bottom:983.325000px;}
.y15_c00251{bottom:983.745000px;}
.y18_c00251{bottom:984.405000px;}
.y17_c00251{bottom:984.630000px;}
.y13_c00251{bottom:984.825000px;}
.y14_c00251{bottom:985.905000px;}
.y11_c00251{bottom:1003.245000px;}
.ye_c00251{bottom:1003.905000px;}
.y12_c00251{bottom:1004.130000px;}
.yf_c00251{bottom:1004.970000px;}
.y10_c00251{bottom:1005.405000px;}
.ya_c00251{bottom:1022.745000px;}
.yc_c00251{bottom:1023.630000px;}
.yd_c00251{bottom:1023.825000px;}
.yb_c00251{bottom:1024.905000px;}
.y5_c00251{bottom:1041.825000px;}
.y6_c00251{bottom:1042.245000px;}
.y9_c00251{bottom:1042.470000px;}
.y7_c00251{bottom:1043.130000px;}
.y8_c00251{bottom:1044.405000px;}
.y4_c00251{bottom:1061.745000px;}
.y3_c00251{bottom:1062.825000px;}
.y2_c00251{bottom:1063.905000px;}
.y1_c00251{bottom:1102.050000px;}
.h5_c00251{height:23.025234px;}
.h1_c00251{height:25.091602px;}
.h6_c00251{height:31.364502px;}
.h2_c00251{height:35.571035px;}
.h3_c00251{height:39.777568px;}
.h4_c00251{height:43.910303px;}
.h7_c00251{height:48.116836px;}
.h0_c00251{height:1335.000000px;}
.w0_c00251{width:880.500000px;}
.x0_c00251{left:0.000000px;}
.x2_c00251{left:151.920000px;}
.xb6_c00251{left:153.420000px;}
.x83_c00251{left:168.000000px;}
.xc0_c00251{left:169.920000px;}
.x97_c00251{left:175.500000px;}
.xd7_c00251{left:177.000000px;}
.xf8_c00251{left:178.500000px;}
.x48_c00251{left:180.420000px;}
.x10a_c00251{left:183.000000px;}
.xe4_c00251{left:184.500000px;}
.xc7_c00251{left:186.000000px;}
.x76_c00251{left:187.080000px;}
.x23_c00251{left:189.000000px;}
.x6d_c00251{left:190.500000px;}
.xf9_c00251{left:195.420000px;}
.x3_c00251{left:196.500000px;}
.x84_c00251{left:198.420000px;}
.x9f_c00251{left:201.000000px;}
.x5c_c00251{left:202.920000px;}
.x6e_c00251{left:204.000000px;}
.x55_c00251{left:205.500000px;}
.x8f_c00251{left:207.000000px;}
.xef_c00251{left:208.500000px;}
.x66_c00251{left:209.580000px;}
.xdb_c00251{left:211.080000px;}
.x3d_c00251{left:214.500000px;}
.xd3_c00251{left:216.000000px;}
.xc1_c00251{left:217.920000px;}
.x24_c00251{left:219.000000px;}
.x99_c00251{left:220.920000px;}
.x10b_c00251{left:222.000000px;}
.xe9_c00251{left:223.500000px;}
.xcd_c00251{left:226.080000px;}
.xf_c00251{left:227.775000px;}
.xd4_c00251{left:229.500000px;}
.xdc_c00251{left:231.420000px;}
.x3e_c00251{left:234.000000px;}
.xa7_c00251{left:235.500000px;}
.x1c_c00251{left:237.420000px;}
.x30_c00251{left:241.500000px;}
.xea_c00251{left:243.420000px;}
.x7f_c00251{left:247.500000px;}
.x6f_c00251{left:249.000000px;}
.x49_c00251{left:250.500000px;}
.x67_c00251{left:253.080000px;}
.x5d_c00251{left:255.420000px;}
.x90_c00251{left:256.500000px;}
.x25_c00251{left:259.920000px;}
.x8a_c00251{left:264.000000px;}
.x3f_c00251{left:265.080000px;}
.x77_c00251{left:266.580000px;}
.x10_c00251{left:268.500000px;}
.x100_c00251{left:269.580000px;}
.x56_c00251{left:271.080000px;}
.x4a_c00251{left:273.420000px;}
.x80_c00251{left:274.500000px;}
.x31_c00251{left:279.000000px;}
.x5e_c00251{left:280.500000px;}
.x10c_c00251{left:281.580000px;}
.xe5_c00251{left:283.080000px;}
.xb7_c00251{left:285.420000px;}
.xa0_c00251{left:286.920000px;}
.x4_c00251{left:288.000000px;}
.x101_c00251{left:289.500000px;}
.xc2_c00251{left:291.000000px;}
.x81_c00251{left:293.580000px;}
.xd5_c00251{left:296.580000px;}
.x40_c00251{left:298.500000px;}
.x11_c00251{left:300.000000px;}
.xb0_c00251{left:301.080000px;}
.x26_c00251{left:303.420000px;}
.x106_c00251{left:304.500000px;}
.x85_c00251{left:307.920000px;}
.x91_c00251{left:309.420000px;}
.xe6_c00251{left:310.920000px;}
.x10d_c00251{left:312.000000px;}
.x78_c00251{left:313.500000px;}
.xa1_c00251{left:314.580000px;}
.x1d_c00251{left:317.580000px;}
.x5f_c00251{left:319.920000px;}
.xc8_c00251{left:322.500000px;}
.x5_c00251{left:325.500000px;}
.x70_c00251{left:328.920000px;}
.x82_c00251{left:330.420000px;}
.xa8_c00251{left:333.000000px;}
.x12_c00251{left:334.920000px;}
.x32_c00251{left:336.000000px;}
.xff_c00251{left:337.080000px;}
.x86_c00251{left:340.080000px;}
.x27_c00251{left:341.580000px;}
.xce_c00251{left:343.080000px;}
.x6_c00251{left:345.420000px;}
.xeb_c00251{left:348.000000px;}
.x8b_c00251{left:349.920000px;}
.xb8_c00251{left:352.500000px;}
.xc3_c00251{left:354.420000px;}
.xfa_c00251{left:355.500000px;}
.x71_c00251{left:356.580000px;}
.x41_c00251{left:358.920000px;}
.xbe_c00251{left:360.000000px;}
.x4b_c00251{left:364.500000px;}
.x102_c00251{left:366.000000px;}
.x33_c00251{left:367.080000px;}
.x68_c00251{left:369.000000px;}
.xf3_c00251{left:370.920000px;}
.x7_c00251{left:372.420000px;}
.x60_c00251{left:375.000000px;}
.x79_c00251{left:376.080000px;}
.x98_c00251{left:377.580000px;}
.x9a_c00251{left:379.500000px;}
.x57_c00251{left:382.500000px;}
.x4c_c00251{left:383.580000px;}
.x103_c00251{left:385.920000px;}
.x1e_c00251{left:387.000000px;}
.x28_c00251{left:388.920000px;}
.x69_c00251{left:390.000000px;}
.x87_c00251{left:391.500000px;}
.xb1_c00251{left:393.000000px;}
.xfb_c00251{left:394.500000px;}
.x42_c00251{left:396.420000px;}
.xe1_c00251{left:397.500000px;}
.x34_c00251{left:399.000000px;}
.x8_c00251{left:400.500000px;}
.xcf_c00251{left:403.500000px;}
.x13_c00251{left:404.580000px;}
.xc9_c00251{left:406.080000px;}
.x1_c00251{left:408.000000px;}
.x61_c00251{left:409.920000px;}
.x35_c00251{left:417.000000px;}
.x29_c00251{left:418.500000px;}
.xa9_c00251{left:420.000000px;}
.x7a_c00251{left:421.500000px;}
.xa2_c00251{left:423.000000px;}
.xd8_c00251{left:424.500000px;}
.x6a_c00251{left:426.000000px;}
.x8c_c00251{left:427.080000px;}
.xd0_c00251{left:429.000000px;}
.xf0_c00251{left:430.500000px;}
.x36_c00251{left:433.080000px;}
.x14_c00251{left:436.920000px;}
.x72_c00251{left:438.000000px;}
.x4d_c00251{left:442.080000px;}
.x7b_c00251{left:445.500000px;}
.xb2_c00251{left:450.000000px;}
.x1f_c00251{left:453.000000px;}
.xec_c00251{left:454.500000px;}
.x92_c00251{left:455.580000px;}
.xb9_c00251{left:457.080000px;}
.x9_c00251{left:459.000000px;}
.x4e_c00251{left:462.000000px;}
.x62_c00251{left:463.080000px;}
.x37_c00251{left:465.000000px;}
.xca_c00251{left:467.580000px;}
.xaa_c00251{left:471.000000px;}
.x20_c00251{left:472.500000px;}
.x9b_c00251{left:474.000000px;}
.xba_c00251{left:475.080000px;}
.xe7_c00251{left:478.080000px;}
.xdd_c00251{left:481.920000px;}
.xd1_c00251{left:483.420000px;}
.xf1_c00251{left:487.500000px;}
.x107_c00251{left:490.920000px;}
.x15_c00251{left:492.000000px;}
.x63_c00251{left:493.920000px;}
.x4f_c00251{left:495.420000px;}
.x58_c00251{left:496.500000px;}
.x93_c00251{left:499.920000px;}
.x2a_c00251{left:501.000000px;}
.x43_c00251{left:502.500000px;}
.x88_c00251{left:509.580000px;}
.xed_c00251{left:511.080000px;}
.x38_c00251{left:513.000000px;}
.xd9_c00251{left:514.500000px;}
.x16_c00251{left:515.580000px;}
.xa_c00251{left:517.500000px;}
.xa3_c00251{left:519.420000px;}
.x64_c00251{left:520.920000px;}
.xfc_c00251{left:522.000000px;}
.x104_c00251{left:523.920000px;}
.x44_c00251{left:525.000000px;}
.x73_c00251{left:526.920000px;}
.xab_c00251{left:532.080000px;}
.x39_c00251{left:535.500000px;}
.x50_c00251{left:538.500000px;}
.xfd_c00251{left:540.000000px;}
.xd2_c00251{left:541.080000px;}
.x8d_c00251{left:542.580000px;}
.x6b_c00251{left:544.500000px;}
.xa4_c00251{left:545.580000px;}
.x7c_c00251{left:547.920000px;}
.x45_c00251{left:550.920000px;}
.xb_c00251{left:552.420000px;}
.xb3_c00251{left:554.145000px;}
.xe2_c00251{left:557.580000px;}
.x51_c00251{left:559.080000px;}
.x9c_c00251{left:562.500000px;}
.x21_c00251{left:563.580000px;}
.xf4_c00251{left:565.080000px;}
.x8e_c00251{left:567.000000px;}
.x59_c00251{left:570.420000px;}
.x94_c00251{left:571.500000px;}
.xcb_c00251{left:573.000000px;}
.x2b_c00251{left:574.080000px;}
.x7d_c00251{left:576.000000px;}
.xde_c00251{left:578.580000px;}
.xac_c00251{left:579.645000px;}
.x52_c00251{left:581.580000px;}
.xbb_c00251{left:585.000000px;}
.x17_c00251{left:586.080000px;}
.xda_c00251{left:588.000000px;}
.xa5_c00251{left:589.920000px;}
.x108_c00251{left:593.580000px;}
.x95_c00251{left:595.080000px;}
.x65_c00251{left:596.580000px;}
.xe8_c00251{left:598.500000px;}
.xcc_c00251{left:600.000000px;}
.x105_c00251{left:603.000000px;}
.x2c_c00251{left:604.500000px;}
.x74_c00251{left:607.500000px;}
.xb4_c00251{left:609.000000px;}
.x9d_c00251{left:610.500000px;}
.xf5_c00251{left:615.000000px;}
.x5a_c00251{left:616.920000px;}
.xc_c00251{left:619.080000px;}
.xbc_c00251{left:622.920000px;}
.x53_c00251{left:624.000000px;}
.x2d_c00251{left:625.080000px;}
.xf6_c00251{left:627.420000px;}
.x3a_c00251{left:630.420000px;}
.x7e_c00251{left:631.500000px;}
.x18_c00251{left:633.420000px;}
.x89_c00251{left:635.580000px;}
.x46_c00251{left:637.080000px;}
.xc4_c00251{left:638.580000px;}
.xd_c00251{left:640.080000px;}
.xbf_c00251{left:642.420000px;}
.x75_c00251{left:645.000000px;}
.xee_c00251{left:646.500000px;}
.xdf_c00251{left:648.000000px;}
.xad_c00251{left:649.500000px;}
.x19_c00251{left:651.000000px;}
.x5b_c00251{left:652.080000px;}
.xd6_c00251{left:654.000000px;}
.xc5_c00251{left:655.500000px;}
.xfe_c00251{left:658.500000px;}
.xe0_c00251{left:661.500000px;}
.x2e_c00251{left:664.500000px;}
.xae_c00251{left:665.580000px;}
.x96_c00251{left:666.645000px;}
.xb5_c00251{left:668.580000px;}
.x3b_c00251{left:670.920000px;}
.x1a_c00251{left:674.775000px;}
.xc6_c00251{left:678.000000px;}
.x6c_c00251{left:679.500000px;}
.xf2_c00251{left:681.000000px;}
.x22_c00251{left:684.000000px;}
.xe_c00251{left:688.500000px;}
.xa6_c00251{left:689.580000px;}
.xe3_c00251{left:691.500000px;}
.x9e_c00251{left:693.000000px;}
.x1b_c00251{left:696.000000px;}
.xf7_c00251{left:697.500000px;}
.x54_c00251{left:700.080000px;}
.x2f_c00251{left:703.080000px;}
.x47_c00251{left:706.920000px;}
.x3c_c00251{left:708.000000px;}
.xaf_c00251{left:712.500000px;}
.xbd_c00251{left:715.920000px;}
.x109_c00251{left:721.500000px;}
@media print{
.v0_c00251{vertical-align:0.000000pt;}
.ls0_c00251{letter-spacing:0.000000pt;}
.ws0_c00251{word-spacing:-15.012693pt;}
.ws1_c00251{word-spacing:-7.118720pt;}
.ws2_c00251{word-spacing:-5.497444pt;}
.ws3_c00251{word-spacing:0.000000pt;}
._0_c00251{width:4.897715pt;}
.fs4_c00251{font-size:16.640000pt;}
.fs0_c00251{font-size:18.133333pt;}
.fs5_c00251{font-size:22.666667pt;}
.fs1_c00251{font-size:25.706667pt;}
.fs2_c00251{font-size:28.746667pt;}
.fs3_c00251{font-size:31.733333pt;}
.fs6_c00251{font-size:34.773333pt;}
.y0_c00251{bottom:0.000000pt;}
.ye6_c00251{bottom:223.026667pt;}
.ye5_c00251{bottom:224.360000pt;}
.ye3_c00251{bottom:225.106667pt;}
.ye4_c00251{bottom:225.893333pt;}
.ye1_c00251{bottom:226.640000pt;}
.ye2_c00251{bottom:227.026667pt;}
.ydf_c00251{bottom:241.306667pt;}
.ye0_c00251{bottom:241.493333pt;}
.ydd_c00251{bottom:242.440000pt;}
.ydb_c00251{bottom:243.026667pt;}
.yde_c00251{bottom:243.226667pt;}
.yda_c00251{bottom:243.973333pt;}
.ydc_c00251{bottom:244.360000pt;}
.yd3_c00251{bottom:258.440000pt;}
.yd9_c00251{bottom:259.773333pt;}
.yd6_c00251{bottom:260.160000pt;}
.yd5_c00251{bottom:260.560000pt;}
.yd8_c00251{bottom:261.106667pt;}
.yd4_c00251{bottom:261.693333pt;}
.yd7_c00251{bottom:261.893333pt;}
.yd1_c00251{bottom:276.360000pt;}
.yd2_c00251{bottom:277.106667pt;}
.yca_c00251{bottom:277.893333pt;}
.ycf_c00251{bottom:278.440000pt;}
.ycb_c00251{bottom:278.640000pt;}
.ycc_c00251{bottom:279.026667pt;}
.yd0_c00251{bottom:279.226667pt;}
.yce_c00251{bottom:279.400000pt;}
.ycd_c00251{bottom:280.360000pt;}
.yc6_c00251{bottom:294.440000pt;}
.yc5_c00251{bottom:295.226667pt;}
.yc7_c00251{bottom:295.773333pt;}
.yc4_c00251{bottom:296.360000pt;}
.yc9_c00251{bottom:296.560000pt;}
.yc8_c00251{bottom:297.693333pt;}
.yc2_c00251{bottom:313.106667pt;}
.yc1_c00251{bottom:313.693333pt;}
.yc0_c00251{bottom:313.893333pt;}
.yc3_c00251{bottom:315.026667pt;}
.yba_c00251{bottom:329.106667pt;}
.ybb_c00251{bottom:330.440000pt;}
.ybf_c00251{bottom:331.026667pt;}
.ybe_c00251{bottom:331.226667pt;}
.ybc_c00251{bottom:332.360000pt;}
.ybd_c00251{bottom:332.560000pt;}
.yb8_c00251{bottom:347.773333pt;}
.yb9_c00251{bottom:349.306667pt;}
.yb5_c00251{bottom:349.693333pt;}
.yb6_c00251{bottom:350.640000pt;}
.yb7_c00251{bottom:351.026667pt;}
.yaf_c00251{bottom:365.106667pt;}
.yb4_c00251{bottom:365.893333pt;}
.yb3_c00251{bottom:367.026667pt;}
.yb2_c00251{bottom:367.973333pt;}
.yb0_c00251{bottom:368.360000pt;}
.yb1_c00251{bottom:369.306667pt;}
.yab_c00251{bottom:383.773333pt;}
.yaa_c00251{bottom:384.360000pt;}
.yac_c00251{bottom:384.560000pt;}
.yae_c00251{bottom:385.306667pt;}
.yad_c00251{bottom:385.693333pt;}
.ya6_c00251{bottom:399.026667pt;}
.ya8_c00251{bottom:399.773333pt;}
.ya9_c00251{bottom:400.733333pt;}
.ya3_c00251{bottom:401.106667pt;}
.ya2_c00251{bottom:401.693333pt;}
.ya5_c00251{bottom:402.066667pt;}
.ya7_c00251{bottom:402.640000pt;}
.ya4_c00251{bottom:403.026667pt;}
.ya1_c00251{bottom:418.266667pt;}
.y9e_c00251{bottom:418.440000pt;}
.ya0_c00251{bottom:419.226667pt;}
.y9d_c00251{bottom:420.360000pt;}
.y9f_c00251{bottom:420.560000pt;}
.y9c_c00251{bottom:434.640000pt;}
.y9a_c00251{bottom:435.773333pt;}
.y99_c00251{bottom:436.560000pt;}
.y9b_c00251{bottom:437.693333pt;}
.y98_c00251{bottom:451.973333pt;}
.y95_c00251{bottom:453.106667pt;}
.y97_c00251{bottom:453.893333pt;}
.y94_c00251{bottom:454.066667pt;}
.y93_c00251{bottom:455.026667pt;}
.y96_c00251{bottom:455.973333pt;}
.y91_c00251{bottom:469.493333pt;}
.y8f_c00251{bottom:469.693333pt;}
.y90_c00251{bottom:470.440000pt;}
.y92_c00251{bottom:471.973333pt;}
.y8e_c00251{bottom:472.360000pt;}
.y8c_c00251{bottom:487.773333pt;}
.y8d_c00251{bottom:489.106667pt;}
.y8b_c00251{bottom:491.026667pt;}
.y88_c00251{bottom:504.360000pt;}
.y8a_c00251{bottom:506.440000pt;}
.y89_c00251{bottom:507.226667pt;}
.y85_c00251{bottom:507.973333pt;}
.y86_c00251{bottom:508.360000pt;}
.y87_c00251{bottom:509.306667pt;}
.y82_c00251{bottom:521.693333pt;}
.y84_c00251{bottom:524.360000pt;}
.y83_c00251{bottom:524.560000pt;}
.y80_c00251{bottom:525.306667pt;}
.y81_c00251{bottom:525.693333pt;}
.y7e_c00251{bottom:539.026667pt;}
.y7c_c00251{bottom:540.733333pt;}
.y7f_c00251{bottom:541.106667pt;}
.y7d_c00251{bottom:542.066667pt;}
.y79_c00251{bottom:542.640000pt;}
.y7a_c00251{bottom:543.026667pt;}
.y7b_c00251{bottom:543.973333pt;}
.y74_c00251{bottom:558.066667pt;}
.y77_c00251{bottom:558.440000pt;}
.y73_c00251{bottom:559.226667pt;}
.y72_c00251{bottom:559.400000pt;}
.y75_c00251{bottom:559.600000pt;}
.y78_c00251{bottom:559.973333pt;}
.y76_c00251{bottom:560.360000pt;}
.y6d_c00251{bottom:575.773333pt;}
.y71_c00251{bottom:576.560000pt;}
.y70_c00251{bottom:577.306667pt;}
.y6e_c00251{bottom:577.693333pt;}
.y6f_c00251{bottom:579.026667pt;}
.y69_c00251{bottom:593.106667pt;}
.y6b_c00251{bottom:594.440000pt;}
.y68_c00251{bottom:595.026667pt;}
.y6c_c00251{bottom:595.400000pt;}
.y6a_c00251{bottom:595.973333pt;}
.y62_c00251{bottom:611.400000pt;}
.y66_c00251{bottom:611.773333pt;}
.y63_c00251{bottom:612.360000pt;}
.y67_c00251{bottom:612.560000pt;}
.y64_c00251{bottom:613.306667pt;}
.y65_c00251{bottom:613.693333pt;}
.y61_c00251{bottom:629.106667pt;}
.y5e_c00251{bottom:629.693333pt;}
.y60_c00251{bottom:629.893333pt;}
.y5f_c00251{bottom:631.026667pt;}
.y5d_c00251{bottom:645.106667pt;}
.y5c_c00251{bottom:646.066667pt;}
.y58_c00251{bottom:646.440000pt;}
.y5b_c00251{bottom:647.226667pt;}
.y5a_c00251{bottom:647.400000pt;}
.y59_c00251{bottom:648.360000pt;}
.y53_c00251{bottom:662.440000pt;}
.y57_c00251{bottom:663.026667pt;}
.y54_c00251{bottom:663.773333pt;}
.y55_c00251{bottom:665.693333pt;}
.y56_c00251{bottom:665.893333pt;}
.y4d_c00251{bottom:679.773333pt;}
.y4e_c00251{bottom:681.106667pt;}
.y50_c00251{bottom:681.306667pt;}
.y51_c00251{bottom:682.066667pt;}
.y52_c00251{bottom:683.026667pt;}
.y4f_c00251{bottom:683.226667pt;}
.y48_c00251{bottom:697.693333pt;}
.y4a_c00251{bottom:698.440000pt;}
.y4c_c00251{bottom:698.826667pt;}
.y4b_c00251{bottom:699.773333pt;}
.y49_c00251{bottom:700.360000pt;}
.y47_c00251{bottom:715.400000pt;}
.y46_c00251{bottom:716.733333pt;}
.y45_c00251{bottom:717.693333pt;}
.y3f_c00251{bottom:733.106667pt;}
.y44_c00251{bottom:734.440000pt;}
.y40_c00251{bottom:735.026667pt;}
.y43_c00251{bottom:735.226667pt;}
.y41_c00251{bottom:735.973333pt;}
.y42_c00251{bottom:736.360000pt;}
.y3e_c00251{bottom:751.400000pt;}
.y3c_c00251{bottom:751.773333pt;}
.y3a_c00251{bottom:752.360000pt;}
.y3d_c00251{bottom:752.560000pt;}
.y3b_c00251{bottom:753.693333pt;}
.y37_c00251{bottom:768.360000pt;}
.y39_c00251{bottom:769.106667pt;}
.y34_c00251{bottom:769.693333pt;}
.y35_c00251{bottom:769.893333pt;}
.y36_c00251{bottom:771.026667pt;}
.y38_c00251{bottom:771.973333pt;}
.y2e_c00251{bottom:786.440000pt;}
.y30_c00251{bottom:787.226667pt;}
.y33_c00251{bottom:787.400000pt;}
.y31_c00251{bottom:787.973333pt;}
.y2f_c00251{bottom:788.360000pt;}
.y32_c00251{bottom:789.306667pt;}
.y2b_c00251{bottom:803.773333pt;}
.y2d_c00251{bottom:804.733333pt;}
.y2c_c00251{bottom:805.693333pt;}
.y27_c00251{bottom:820.360000pt;}
.y26_c00251{bottom:821.106667pt;}
.y2a_c00251{bottom:821.493333pt;}
.y28_c00251{bottom:822.440000pt;}
.y25_c00251{bottom:823.026667pt;}
.y29_c00251{bottom:824.360000pt;}
.y23_c00251{bottom:838.640000pt;}
.y1f_c00251{bottom:839.973333pt;}
.y21_c00251{bottom:840.560000pt;}
.y20_c00251{bottom:841.306667pt;}
.y22_c00251{bottom:841.693333pt;}
.y24_c00251{bottom:842.640000pt;}
.y1c_c00251{bottom:855.973333pt;}
.y1d_c00251{bottom:857.106667pt;}
.y19_c00251{bottom:857.693333pt;}
.y1a_c00251{bottom:858.640000pt;}
.y1b_c00251{bottom:859.026667pt;}
.y1e_c00251{bottom:859.973333pt;}
.y16_c00251{bottom:874.066667pt;}
.y15_c00251{bottom:874.440000pt;}
.y18_c00251{bottom:875.026667pt;}
.y17_c00251{bottom:875.226667pt;}
.y13_c00251{bottom:875.400000pt;}
.y14_c00251{bottom:876.360000pt;}
.y11_c00251{bottom:891.773333pt;}
.ye_c00251{bottom:892.360000pt;}
.y12_c00251{bottom:892.560000pt;}
.yf_c00251{bottom:893.306667pt;}
.y10_c00251{bottom:893.693333pt;}
.ya_c00251{bottom:909.106667pt;}
.yc_c00251{bottom:909.893333pt;}
.yd_c00251{bottom:910.066667pt;}
.yb_c00251{bottom:911.026667pt;}
.y5_c00251{bottom:926.066667pt;}
.y6_c00251{bottom:926.440000pt;}
.y9_c00251{bottom:926.640000pt;}
.y7_c00251{bottom:927.226667pt;}
.y8_c00251{bottom:928.360000pt;}
.y4_c00251{bottom:943.773333pt;}
.y3_c00251{bottom:944.733333pt;}
.y2_c00251{bottom:945.693333pt;}
.y1_c00251{bottom:979.600000pt;}
.h5_c00251{height:20.466875pt;}
.h1_c00251{height:22.303646pt;}
.h6_c00251{height:27.879557pt;}
.h2_c00251{height:31.618698pt;}
.h3_c00251{height:35.357839pt;}
.h4_c00251{height:39.031380pt;}
.h7_c00251{height:42.770521pt;}
.h0_c00251{height:1186.666667pt;}
.w0_c00251{width:782.666667pt;}
.x0_c00251{left:0.000000pt;}
.x2_c00251{left:135.040000pt;}
.xb6_c00251{left:136.373333pt;}
.x83_c00251{left:149.333333pt;}
.xc0_c00251{left:151.040000pt;}
.x97_c00251{left:156.000000pt;}
.xd7_c00251{left:157.333333pt;}
.xf8_c00251{left:158.666667pt;}
.x48_c00251{left:160.373333pt;}
.x10a_c00251{left:162.666667pt;}
.xe4_c00251{left:164.000000pt;}
.xc7_c00251{left:165.333333pt;}
.x76_c00251{left:166.293333pt;}
.x23_c00251{left:168.000000pt;}
.x6d_c00251{left:169.333333pt;}
.xf9_c00251{left:173.706667pt;}
.x3_c00251{left:174.666667pt;}
.x84_c00251{left:176.373333pt;}
.x9f_c00251{left:178.666667pt;}
.x5c_c00251{left:180.373333pt;}
.x6e_c00251{left:181.333333pt;}
.x55_c00251{left:182.666667pt;}
.x8f_c00251{left:184.000000pt;}
.xef_c00251{left:185.333333pt;}
.x66_c00251{left:186.293333pt;}
.xdb_c00251{left:187.626667pt;}
.x3d_c00251{left:190.666667pt;}
.xd3_c00251{left:192.000000pt;}
.xc1_c00251{left:193.706667pt;}
.x24_c00251{left:194.666667pt;}
.x99_c00251{left:196.373333pt;}
.x10b_c00251{left:197.333333pt;}
.xe9_c00251{left:198.666667pt;}
.xcd_c00251{left:200.960000pt;}
.xf_c00251{left:202.466667pt;}
.xd4_c00251{left:204.000000pt;}
.xdc_c00251{left:205.706667pt;}
.x3e_c00251{left:208.000000pt;}
.xa7_c00251{left:209.333333pt;}
.x1c_c00251{left:211.040000pt;}
.x30_c00251{left:214.666667pt;}
.xea_c00251{left:216.373333pt;}
.x7f_c00251{left:220.000000pt;}
.x6f_c00251{left:221.333333pt;}
.x49_c00251{left:222.666667pt;}
.x67_c00251{left:224.960000pt;}
.x5d_c00251{left:227.040000pt;}
.x90_c00251{left:228.000000pt;}
.x25_c00251{left:231.040000pt;}
.x8a_c00251{left:234.666667pt;}
.x3f_c00251{left:235.626667pt;}
.x77_c00251{left:236.960000pt;}
.x10_c00251{left:238.666667pt;}
.x100_c00251{left:239.626667pt;}
.x56_c00251{left:240.960000pt;}
.x4a_c00251{left:243.040000pt;}
.x80_c00251{left:244.000000pt;}
.x31_c00251{left:248.000000pt;}
.x5e_c00251{left:249.333333pt;}
.x10c_c00251{left:250.293333pt;}
.xe5_c00251{left:251.626667pt;}
.xb7_c00251{left:253.706667pt;}
.xa0_c00251{left:255.040000pt;}
.x4_c00251{left:256.000000pt;}
.x101_c00251{left:257.333333pt;}
.xc2_c00251{left:258.666667pt;}
.x81_c00251{left:260.960000pt;}
.xd5_c00251{left:263.626667pt;}
.x40_c00251{left:265.333333pt;}
.x11_c00251{left:266.666667pt;}
.xb0_c00251{left:267.626667pt;}
.x26_c00251{left:269.706667pt;}
.x106_c00251{left:270.666667pt;}
.x85_c00251{left:273.706667pt;}
.x91_c00251{left:275.040000pt;}
.xe6_c00251{left:276.373333pt;}
.x10d_c00251{left:277.333333pt;}
.x78_c00251{left:278.666667pt;}
.xa1_c00251{left:279.626667pt;}
.x1d_c00251{left:282.293333pt;}
.x5f_c00251{left:284.373333pt;}
.xc8_c00251{left:286.666667pt;}
.x5_c00251{left:289.333333pt;}
.x70_c00251{left:292.373333pt;}
.x82_c00251{left:293.706667pt;}
.xa8_c00251{left:296.000000pt;}
.x12_c00251{left:297.706667pt;}
.x32_c00251{left:298.666667pt;}
.xff_c00251{left:299.626667pt;}
.x86_c00251{left:302.293333pt;}
.x27_c00251{left:303.626667pt;}
.xce_c00251{left:304.960000pt;}
.x6_c00251{left:307.040000pt;}
.xeb_c00251{left:309.333333pt;}
.x8b_c00251{left:311.040000pt;}
.xb8_c00251{left:313.333333pt;}
.xc3_c00251{left:315.040000pt;}
.xfa_c00251{left:316.000000pt;}
.x71_c00251{left:316.960000pt;}
.x41_c00251{left:319.040000pt;}
.xbe_c00251{left:320.000000pt;}
.x4b_c00251{left:324.000000pt;}
.x102_c00251{left:325.333333pt;}
.x33_c00251{left:326.293333pt;}
.x68_c00251{left:328.000000pt;}
.xf3_c00251{left:329.706667pt;}
.x7_c00251{left:331.040000pt;}
.x60_c00251{left:333.333333pt;}
.x79_c00251{left:334.293333pt;}
.x98_c00251{left:335.626667pt;}
.x9a_c00251{left:337.333333pt;}
.x57_c00251{left:340.000000pt;}
.x4c_c00251{left:340.960000pt;}
.x103_c00251{left:343.040000pt;}
.x1e_c00251{left:344.000000pt;}
.x28_c00251{left:345.706667pt;}
.x69_c00251{left:346.666667pt;}
.x87_c00251{left:348.000000pt;}
.xb1_c00251{left:349.333333pt;}
.xfb_c00251{left:350.666667pt;}
.x42_c00251{left:352.373333pt;}
.xe1_c00251{left:353.333333pt;}
.x34_c00251{left:354.666667pt;}
.x8_c00251{left:356.000000pt;}
.xcf_c00251{left:358.666667pt;}
.x13_c00251{left:359.626667pt;}
.xc9_c00251{left:360.960000pt;}
.x1_c00251{left:362.666667pt;}
.x61_c00251{left:364.373333pt;}
.x35_c00251{left:370.666667pt;}
.x29_c00251{left:372.000000pt;}
.xa9_c00251{left:373.333333pt;}
.x7a_c00251{left:374.666667pt;}
.xa2_c00251{left:376.000000pt;}
.xd8_c00251{left:377.333333pt;}
.x6a_c00251{left:378.666667pt;}
.x8c_c00251{left:379.626667pt;}
.xd0_c00251{left:381.333333pt;}
.xf0_c00251{left:382.666667pt;}
.x36_c00251{left:384.960000pt;}
.x14_c00251{left:388.373333pt;}
.x72_c00251{left:389.333333pt;}
.x4d_c00251{left:392.960000pt;}
.x7b_c00251{left:396.000000pt;}
.xb2_c00251{left:400.000000pt;}
.x1f_c00251{left:402.666667pt;}
.xec_c00251{left:404.000000pt;}
.x92_c00251{left:404.960000pt;}
.xb9_c00251{left:406.293333pt;}
.x9_c00251{left:408.000000pt;}
.x4e_c00251{left:410.666667pt;}
.x62_c00251{left:411.626667pt;}
.x37_c00251{left:413.333333pt;}
.xca_c00251{left:415.626667pt;}
.xaa_c00251{left:418.666667pt;}
.x20_c00251{left:420.000000pt;}
.x9b_c00251{left:421.333333pt;}
.xba_c00251{left:422.293333pt;}
.xe7_c00251{left:424.960000pt;}
.xdd_c00251{left:428.373333pt;}
.xd1_c00251{left:429.706667pt;}
.xf1_c00251{left:433.333333pt;}
.x107_c00251{left:436.373333pt;}
.x15_c00251{left:437.333333pt;}
.x63_c00251{left:439.040000pt;}
.x4f_c00251{left:440.373333pt;}
.x58_c00251{left:441.333333pt;}
.x93_c00251{left:444.373333pt;}
.x2a_c00251{left:445.333333pt;}
.x43_c00251{left:446.666667pt;}
.x88_c00251{left:452.960000pt;}
.xed_c00251{left:454.293333pt;}
.x38_c00251{left:456.000000pt;}
.xd9_c00251{left:457.333333pt;}
.x16_c00251{left:458.293333pt;}
.xa_c00251{left:460.000000pt;}
.xa3_c00251{left:461.706667pt;}
.x64_c00251{left:463.040000pt;}
.xfc_c00251{left:464.000000pt;}
.x104_c00251{left:465.706667pt;}
.x44_c00251{left:466.666667pt;}
.x73_c00251{left:468.373333pt;}
.xab_c00251{left:472.960000pt;}
.x39_c00251{left:476.000000pt;}
.x50_c00251{left:478.666667pt;}
.xfd_c00251{left:480.000000pt;}
.xd2_c00251{left:480.960000pt;}
.x8d_c00251{left:482.293333pt;}
.x6b_c00251{left:484.000000pt;}
.xa4_c00251{left:484.960000pt;}
.x7c_c00251{left:487.040000pt;}
.x45_c00251{left:489.706667pt;}
.xb_c00251{left:491.040000pt;}
.xb3_c00251{left:492.573333pt;}
.xe2_c00251{left:495.626667pt;}
.x51_c00251{left:496.960000pt;}
.x9c_c00251{left:500.000000pt;}
.x21_c00251{left:500.960000pt;}
.xf4_c00251{left:502.293333pt;}
.x8e_c00251{left:504.000000pt;}
.x59_c00251{left:507.040000pt;}
.x94_c00251{left:508.000000pt;}
.xcb_c00251{left:509.333333pt;}
.x2b_c00251{left:510.293333pt;}
.x7d_c00251{left:512.000000pt;}
.xde_c00251{left:514.293333pt;}
.xac_c00251{left:515.240000pt;}
.x52_c00251{left:516.960000pt;}
.xbb_c00251{left:520.000000pt;}
.x17_c00251{left:520.960000pt;}
.xda_c00251{left:522.666667pt;}
.xa5_c00251{left:524.373333pt;}
.x108_c00251{left:527.626667pt;}
.x95_c00251{left:528.960000pt;}
.x65_c00251{left:530.293333pt;}
.xe8_c00251{left:532.000000pt;}
.xcc_c00251{left:533.333333pt;}
.x105_c00251{left:536.000000pt;}
.x2c_c00251{left:537.333333pt;}
.x74_c00251{left:540.000000pt;}
.xb4_c00251{left:541.333333pt;}
.x9d_c00251{left:542.666667pt;}
.xf5_c00251{left:546.666667pt;}
.x5a_c00251{left:548.373333pt;}
.xc_c00251{left:550.293333pt;}
.xbc_c00251{left:553.706667pt;}
.x53_c00251{left:554.666667pt;}
.x2d_c00251{left:555.626667pt;}
.xf6_c00251{left:557.706667pt;}
.x3a_c00251{left:560.373333pt;}
.x7e_c00251{left:561.333333pt;}
.x18_c00251{left:563.040000pt;}
.x89_c00251{left:564.960000pt;}
.x46_c00251{left:566.293333pt;}
.xc4_c00251{left:567.626667pt;}
.xd_c00251{left:568.960000pt;}
.xbf_c00251{left:571.040000pt;}
.x75_c00251{left:573.333333pt;}
.xee_c00251{left:574.666667pt;}
.xdf_c00251{left:576.000000pt;}
.xad_c00251{left:577.333333pt;}
.x19_c00251{left:578.666667pt;}
.x5b_c00251{left:579.626667pt;}
.xd6_c00251{left:581.333333pt;}
.xc5_c00251{left:582.666667pt;}
.xfe_c00251{left:585.333333pt;}
.xe0_c00251{left:588.000000pt;}
.x2e_c00251{left:590.666667pt;}
.xae_c00251{left:591.626667pt;}
.x96_c00251{left:592.573333pt;}
.xb5_c00251{left:594.293333pt;}
.x3b_c00251{left:596.373333pt;}
.x1a_c00251{left:599.800000pt;}
.xc6_c00251{left:602.666667pt;}
.x6c_c00251{left:604.000000pt;}
.xf2_c00251{left:605.333333pt;}
.x22_c00251{left:608.000000pt;}
.xe_c00251{left:612.000000pt;}
.xa6_c00251{left:612.960000pt;}
.xe3_c00251{left:614.666667pt;}
.x9e_c00251{left:616.000000pt;}
.x1b_c00251{left:618.666667pt;}
.xf7_c00251{left:620.000000pt;}
.x54_c00251{left:622.293333pt;}
.x2f_c00251{left:624.960000pt;}
.x47_c00251{left:628.373333pt;}
.x3c_c00251{left:629.333333pt;}
.xaf_c00251{left:633.333333pt;}
.xbd_c00251{left:636.373333pt;}
.x109_c00251{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2e9a05608385b77d515e0324.woff2')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m92_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);}
.ma6_c00252{transform:matrix(0.314417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314417,0.000000,0.000000,0.250000,0,0);}
.m59_c00252{transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);}
.ma4_c00252{transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);}
.m88_c00252{transform:matrix(0.348926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348926,0.000000,0.000000,0.250000,0,0);}
.m87_c00252{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);}
.ma7_c00252{transform:matrix(0.355462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355462,0.000000,0.000000,0.250000,0,0);}
.mef_c00252{transform:matrix(0.360390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360390,0.000000,0.000000,0.250000,0,0);}
.m4e_c00252{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mcb_c00252{transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);}
.m9c_c00252{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m4c_c00252{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m67_c00252{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mda_c00252{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m10b_c00252{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m9e_c00252{transform:matrix(0.378067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378067,0.000000,0.000000,0.250000,0,0);}
.mad_c00252{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mab_c00252{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m2f_c00252{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m9d_c00252{transform:matrix(0.383436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383436,0.000000,0.000000,0.250000,0,0);}
.m77_c00252{transform:matrix(0.385900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385900,0.000000,0.000000,0.250000,0,0);}
.m5c_c00252{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m8e_c00252{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.m26_c00252{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m58_c00252{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m80_c00252{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m8c_c00252{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m23_c00252{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m9f_c00252{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.md3_c00252{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m48_c00252{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m3_c00252{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m2c_c00252{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.maa_c00252{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m50_c00252{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m35_c00252{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_c00252{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m3f_c00252{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m4d_c00252{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m75_c00252{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.mff_c00252{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.m3c_c00252{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m70_c00252{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m89_c00252{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.ma3_c00252{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.ma2_c00252{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m90_c00252{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m108_c00252{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.m66_c00252{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m4a_c00252{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.md4_c00252{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m12_c00252{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m53_c00252{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.m6c_c00252{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m1d_c00252{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m1e_c00252{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m3a_c00252{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m10a_c00252{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.mcf_c00252{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.mfe_c00252{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m78_c00252{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mac_c00252{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m96_c00252{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.ma5_c00252{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m105_c00252{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.meb_c00252{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m60_c00252{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m10f_c00252{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m74_c00252{transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);}
.m97_c00252{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m93_c00252{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.m5f_c00252{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.me3_c00252{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.mbd_c00252{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m2e_c00252{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m10_c00252{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m79_c00252{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mf6_c00252{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mee_c00252{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m40_c00252{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.mf5_c00252{transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);}
.maf_c00252{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m7d_c00252{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m63_c00252{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m61_c00252{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m8b_c00252{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m62_c00252{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.m13_c00252{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.mf1_c00252{transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);}
.m1b_c00252{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m6b_c00252{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.mb4_c00252{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mc5_c00252{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m99_c00252{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.mae_c00252{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.mb2_c00252{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m3e_c00252{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.mce_c00252{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mdd_c00252{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m6f_c00252{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m85_c00252{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.m51_c00252{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m69_c00252{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.me5_c00252{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.mb8_c00252{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m25_c00252{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.m113_c00252{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m30_c00252{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.m81_c00252{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.mb0_c00252{transform:matrix(0.472689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472689,0.000000,0.000000,0.250000,0,0);}
.m5a_c00252{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m7b_c00252{transform:matrix(0.474790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474790,0.000000,0.000000,0.250000,0,0);}
.mfc_c00252{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.ma8_c00252{transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);}
.me0_c00252{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m8d_c00252{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.mcd_c00252{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m5e_c00252{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m76_c00252{transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);}
.m91_c00252{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m1f_c00252{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m9a_c00252{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.me9_c00252{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m28_c00252{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m6e_c00252{transform:matrix(0.484118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484118,0.000000,0.000000,0.250000,0,0);}
.med_c00252{transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);}
.m2a_c00252{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mc8_c00252{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m95_c00252{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.me8_c00252{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_c00252{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m104_c00252{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m16_c00252{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m24_c00252{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_c00252{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m32_c00252{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mf2_c00252{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.md1_c00252{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m111_c00252{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m10e_c00252{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m20_c00252{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m8f_c00252{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.mec_c00252{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.m3b_c00252{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.me7_c00252{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.m94_c00252{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mea_c00252{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m86_c00252{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m46_c00252{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m2_c00252{transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);}
.mc7_c00252{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.me_c00252{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.mb3_c00252{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mb1_c00252{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m34_c00252{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m15_c00252{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mde_c00252{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);}
.me2_c00252{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m55_c00252{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m112_c00252{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mc6_c00252{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m114_c00252{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m57_c00252{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m84_c00252{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m6_c00252{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mb_c00252{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m47_c00252{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mc1_c00252{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m4f_c00252{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m82_c00252{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m7_c00252{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.md7_c00252{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.mba_c00252{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m8_c00252{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.ma9_c00252{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m98_c00252{transform:matrix(0.539889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539889,0.000000,0.000000,0.250000,0,0);}
.mc_c00252{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mc2_c00252{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.mbc_c00252{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m103_c00252{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m6d_c00252{transform:matrix(0.541912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541912,0.000000,0.000000,0.250000,0,0);}
.ma0_c00252{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.ma_c00252{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m22_c00252{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mc4_c00252{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m106_c00252{transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);}
.mdf_c00252{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.mc3_c00252{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m110_c00252{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.md5_c00252{transform:matrix(0.551176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551176,0.000000,0.000000,0.250000,0,0);}
.m38_c00252{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m11_c00252{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m29_c00252{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m27_c00252{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m49_c00252{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m41_c00252{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mf_c00252{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m109_c00252{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.mf4_c00252{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m36_c00252{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m5d_c00252{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m5b_c00252{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m72_c00252{transform:matrix(0.564706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564706,0.000000,0.000000,0.250000,0,0);}
.mf3_c00252{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.me4_c00252{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.m7f_c00252{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.md_c00252{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mf9_c00252{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m44_c00252{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mb6_c00252{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.md0_c00252{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.mfd_c00252{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);}
.mbe_c00252{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.mb7_c00252{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mdc_c00252{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m71_c00252{transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);}
.m2d_c00252{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m9_c00252{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.m39_c00252{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m64_c00252{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m1a_c00252{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m43_c00252{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m2b_c00252{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m6a_c00252{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.md9_c00252{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m10d_c00252{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m42_c00252{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_c00252{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.md2_c00252{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m100_c00252{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m10c_c00252{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m31_c00252{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.me6_c00252{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m102_c00252{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.m107_c00252{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.mcc_c00252{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.mf8_c00252{transform:matrix(0.649265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649265,0.000000,0.000000,0.250000,0,0);}
.mfb_c00252{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);}
.m7c_c00252{transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);}
.m65_c00252{transform:matrix(0.653529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653529,0.000000,0.000000,0.250000,0,0);}
.m101_c00252{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.mfa_c00252{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.mf0_c00252{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m45_c00252{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m14_c00252{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m7e_c00252{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.md6_c00252{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.mc9_c00252{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.mbf_c00252{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.mc0_c00252{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mdb_c00252{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.md8_c00252{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m1_c00252{transform:matrix(0.690705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690705,0.000000,0.000000,0.250000,0,0);}
.m37_c00252{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m19_c00252{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m68_c00252{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m1c_c00252{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.m18_c00252{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mca_c00252{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);}
.m17_c00252{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.me1_c00252{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.ma1_c00252{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m83_c00252{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m4_c00252{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m52_c00252{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.m33_c00252{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m54_c00252{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.mb5_c00252{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.mb9_c00252{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m5_c00252{transform:matrix(0.801282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.801282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.801282,0.000000,0.000000,0.250000,0,0);}
.m21_c00252{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m3d_c00252{transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);}
.mbb_c00252{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.mf7_c00252{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m73_c00252{transform:matrix(1.040749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.040749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.040749,0.000000,0.000000,0.250000,0,0);}
.m7a_c00252{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m8a_c00252{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-4.530080px;}
.ws2_c00252{word-spacing:0.000000px;}
.ws1_c00252{word-spacing:0.779342px;}
.fc0_c00252{color:transparent;}
.fs8_c00252{font-size:3.420000px;}
.fs7_c00252{font-size:13.620000px;}
.fs1_c00252{font-size:18.720000px;}
.fs6_c00252{font-size:20.400000px;}
.fs3_c00252{font-size:25.500000px;}
.fs0_c00252{font-size:28.920000px;}
.fs5_c00252{font-size:32.340000px;}
.fs2_c00252{font-size:35.700000px;}
.fs4_c00252{font-size:39.120000px;}
.y0_c00252{bottom:0.000000px;}
.y3_c00252{bottom:230.130000px;}
.ye2_c00252{bottom:256.245000px;}
.ye1_c00252{bottom:258.405000px;}
.ye3_c00252{bottom:258.630000px;}
.ye5_c00252{bottom:258.825000px;}
.ye4_c00252{bottom:259.905000px;}
.ydb_c00252{bottom:275.745000px;}
.ye0_c00252{bottom:277.245000px;}
.ydd_c00252{bottom:277.905000px;}
.ydc_c00252{bottom:277.920000px;}
.yde_c00252{bottom:278.130000px;}
.ydf_c00252{bottom:279.405000px;}
.yd6_c00252{bottom:298.470000px;}
.yd4_c00252{bottom:299.325000px;}
.yd8_c00252{bottom:299.970000px;}
.yd5_c00252{bottom:300.405000px;}
.yd2_c00252{bottom:300.630000px;}
.yda_c00252{bottom:300.825000px;}
.yd3_c00252{bottom:301.470000px;}
.yd7_c00252{bottom:302.550000px;}
.yd9_c00252{bottom:302.970000px;}
.ycc_c00252{bottom:313.470000px;}
.ycf_c00252{bottom:314.325000px;}
.yd0_c00252{bottom:315.825000px;}
.yce_c00252{bottom:316.470000px;}
.yd1_c00252{bottom:316.905000px;}
.ycd_c00252{bottom:317.550000px;}
.yca_c00252{bottom:328.905000px;}
.yc9_c00252{bottom:329.325000px;}
.yc6_c00252{bottom:330.405000px;}
.yc8_c00252{bottom:331.470000px;}
.yc7_c00252{bottom:331.695000px;}
.ycb_c00252{bottom:332.550000px;}
.yc0_c00252{bottom:344.325000px;}
.yc3_c00252{bottom:345.405000px;}
.yc4_c00252{bottom:345.630000px;}
.ybf_c00252{bottom:346.050000px;}
.yc5_c00252{bottom:346.470000px;}
.yc2_c00252{bottom:346.695000px;}
.yc1_c00252{bottom:347.550000px;}
.ybe_c00252{bottom:358.905000px;}
.yb4_c00252{bottom:371.970000px;}
.yb9_c00252{bottom:373.050000px;}
.yb5_c00252{bottom:373.905000px;}
.yb8_c00252{bottom:374.970000px;}
.yb6_c00252{bottom:375.195000px;}
.ybb_c00252{bottom:375.405000px;}
.yb7_c00252{bottom:376.050000px;}
.ybc_c00252{bottom:376.470000px;}
.ybd_c00252{bottom:376.695000px;}
.yba_c00252{bottom:377.550000px;}
.yac_c00252{bottom:388.050000px;}
.yae_c00252{bottom:388.905000px;}
.yb2_c00252{bottom:389.325000px;}
.yaf_c00252{bottom:389.970000px;}
.yb3_c00252{bottom:390.405000px;}
.yad_c00252{bottom:391.050000px;}
.yb1_c00252{bottom:391.470000px;}
.yb0_c00252{bottom:391.695000px;}
.ya8_c00252{bottom:401.970000px;}
.yaa_c00252{bottom:402.825000px;}
.ya7_c00252{bottom:403.470000px;}
.ya5_c00252{bottom:403.905000px;}
.yab_c00252{bottom:404.130000px;}
.ya4_c00252{bottom:404.970000px;}
.ya6_c00252{bottom:405.195000px;}
.ya9_c00252{bottom:406.050000px;}
.ya2_c00252{bottom:417.825000px;}
.y9e_c00252{bottom:418.050000px;}
.ya1_c00252{bottom:418.905000px;}
.ya0_c00252{bottom:419.130000px;}
.y9f_c00252{bottom:419.970000px;}
.ya3_c00252{bottom:421.050000px;}
.y9d_c00252{bottom:431.970000px;}
.y98_c00252{bottom:432.825000px;}
.y9b_c00252{bottom:433.905000px;}
.y97_c00252{bottom:434.130000px;}
.y99_c00252{bottom:434.970000px;}
.y9c_c00252{bottom:435.195000px;}
.y9a_c00252{bottom:436.050000px;}
.y92_c00252{bottom:447.825000px;}
.y96_c00252{bottom:448.050000px;}
.y94_c00252{bottom:448.905000px;}
.y95_c00252{bottom:449.130000px;}
.y91_c00252{bottom:449.970000px;}
.y93_c00252{bottom:451.050000px;}
.y8f_c00252{bottom:462.825000px;}
.y90_c00252{bottom:463.905000px;}
.y8b_c00252{bottom:464.130000px;}
.y8c_c00252{bottom:464.550000px;}
.y8d_c00252{bottom:464.970000px;}
.y8e_c00252{bottom:466.050000px;}
.y8a_c00252{bottom:485.745000px;}
.y89_c00252{bottom:487.905000px;}
.y85_c00252{bottom:504.405000px;}
.y83_c00252{bottom:506.325000px;}
.y86_c00252{bottom:506.745000px;}
.y82_c00252{bottom:507.405000px;}
.y84_c00252{bottom:507.630000px;}
.y81_c00252{bottom:508.470000px;}
.y88_c00252{bottom:508.905000px;}
.y87_c00252{bottom:509.970000px;}
.y80_c00252{bottom:526.245000px;}
.y7c_c00252{bottom:526.905000px;}
.y7f_c00252{bottom:527.130000px;}
.y7d_c00252{bottom:528.405000px;}
.y7e_c00252{bottom:528.420000px;}
.y7b_c00252{bottom:545.745000px;}
.y7a_c00252{bottom:547.905000px;}
.y76_c00252{bottom:564.825000px;}
.y77_c00252{bottom:565.245000px;}
.y79_c00252{bottom:566.325000px;}
.y78_c00252{bottom:567.405000px;}
.y75_c00252{bottom:583.905000px;}
.y73_c00252{bottom:584.745000px;}
.y74_c00252{bottom:586.470000px;}
.y71_c00252{bottom:586.905000px;}
.y72_c00252{bottom:588.420000px;}
.y70_c00252{bottom:606.405000px;}
.y6e_c00252{bottom:623.745000px;}
.y6f_c00252{bottom:624.180000px;}
.y6d_c00252{bottom:625.245000px;}
.y6b_c00252{bottom:626.130000px;}
.y6a_c00252{bottom:627.405000px;}
.y6c_c00252{bottom:627.420000px;}
.y68_c00252{bottom:644.745000px;}
.y69_c00252{bottom:646.905000px;}
.y64_c00252{bottom:663.405000px;}
.y65_c00252{bottom:664.245000px;}
.y67_c00252{bottom:664.680000px;}
.y66_c00252{bottom:665.325000px;}
.y63_c00252{bottom:682.905000px;}
.y60_c00252{bottom:683.745000px;}
.y5f_c00252{bottom:683.970000px;}
.y5e_c00252{bottom:684.825000px;}
.y62_c00252{bottom:685.245000px;}
.y61_c00252{bottom:685.905000px;}
.y5c_c00252{bottom:702.405000px;}
.y59_c00252{bottom:703.245000px;}
.y5b_c00252{bottom:704.325000px;}
.y5d_c00252{bottom:705.405000px;}
.y5a_c00252{bottom:705.420000px;}
.y53_c00252{bottom:722.970000px;}
.y58_c00252{bottom:723.180000px;}
.y57_c00252{bottom:724.245000px;}
.y51_c00252{bottom:724.905000px;}
.y52_c00252{bottom:725.130000px;}
.y56_c00252{bottom:725.325000px;}
.y55_c00252{bottom:725.970000px;}
.y54_c00252{bottom:726.405000px;}
.y4b_c00252{bottom:743.745000px;}
.y50_c00252{bottom:744.825000px;}
.y4f_c00252{bottom:745.470000px;}
.y4d_c00252{bottom:745.905000px;}
.y4c_c00252{bottom:745.920000px;}
.y4e_c00252{bottom:746.970000px;}
.y4a_c00252{bottom:766.470000px;}
.y48_c00252{bottom:766.905000px;}
.y49_c00252{bottom:767.325000px;}
.y45_c00252{bottom:768.405000px;}
.y43_c00252{bottom:769.050000px;}
.y44_c00252{bottom:769.470000px;}
.y47_c00252{bottom:769.695000px;}
.y46_c00252{bottom:770.550000px;}
.y3f_c00252{bottom:785.970000px;}
.y42_c00252{bottom:786.825000px;}
.y41_c00252{bottom:787.050000px;}
.y40_c00252{bottom:787.905000px;}
.y3e_c00252{bottom:790.050000px;}
.y3d_c00252{bottom:811.245000px;}
.y3c_c00252{bottom:812.970000px;}
.y3b_c00252{bottom:813.405000px;}
.y3a_c00252{bottom:848.325000px;}
.y36_c00252{bottom:848.745000px;}
.y38_c00252{bottom:849.630000px;}
.y39_c00252{bottom:850.470000px;}
.y37_c00252{bottom:850.905000px;}
.y34_c00252{bottom:868.245000px;}
.y33_c00252{bottom:870.405000px;}
.y35_c00252{bottom:870.630000px;}
.y32_c00252{bottom:886.470000px;}
.y30_c00252{bottom:886.680000px;}
.y31_c00252{bottom:887.325000px;}
.y2f_c00252{bottom:887.745000px;}
.y2c_c00252{bottom:888.630000px;}
.y2d_c00252{bottom:889.905000px;}
.y2e_c00252{bottom:890.970000px;}
.y28_c00252{bottom:907.245000px;}
.y2a_c00252{bottom:908.130000px;}
.y2b_c00252{bottom:908.970000px;}
.y29_c00252{bottom:909.405000px;}
.y25_c00252{bottom:926.745000px;}
.y26_c00252{bottom:928.245000px;}
.y24_c00252{bottom:928.905000px;}
.y27_c00252{bottom:930.405000px;}
.y23_c00252{bottom:947.745000px;}
.y1f_c00252{bottom:948.405000px;}
.y21_c00252{bottom:948.630000px;}
.y20_c00252{bottom:949.470000px;}
.y22_c00252{bottom:949.905000px;}
.y1c_c00252{bottom:965.745000px;}
.y1e_c00252{bottom:967.245000px;}
.y1b_c00252{bottom:967.905000px;}
.y1a_c00252{bottom:968.130000px;}
.y1d_c00252{bottom:969.405000px;}
.y18_c00252{bottom:986.745000px;}
.y17_c00252{bottom:987.405000px;}
.y16_c00252{bottom:987.630000px;}
.y19_c00252{bottom:988.905000px;}
.y13_c00252{bottom:1004.745000px;}
.y14_c00252{bottom:1006.245000px;}
.y12_c00252{bottom:1006.905000px;}
.y11_c00252{bottom:1008.405000px;}
.y15_c00252{bottom:1009.470000px;}
.ye_c00252{bottom:1025.745000px;}
.y10_c00252{bottom:1026.630000px;}
.yd_c00252{bottom:1027.470000px;}
.yf_c00252{bottom:1027.905000px;}
.ya_c00252{bottom:1043.970000px;}
.yb_c00252{bottom:1045.245000px;}
.y9_c00252{bottom:1045.905000px;}
.yc_c00252{bottom:1046.130000px;}
.y8_c00252{bottom:1047.405000px;}
.y4_c00252{bottom:1064.745000px;}
.y5_c00252{bottom:1065.630000px;}
.y7_c00252{bottom:1066.470000px;}
.y6_c00252{bottom:1066.905000px;}
.y1_c00252{bottom:1102.905000px;}
.y2_c00252{bottom:1106.130000px;}
.h9_c00252{height:4.206533px;}
.h8_c00252{height:16.752334px;}
.h2_c00252{height:23.025234px;}
.h7_c00252{height:25.091602px;}
.h4_c00252{height:31.364502px;}
.h1_c00252{height:35.571035px;}
.h6_c00252{height:39.777568px;}
.h3_c00252{height:43.910303px;}
.h5_c00252{height:48.116836px;}
.h0_c00252{height:1335.000000px;}
.w0_c00252{width:880.500000px;}
.x0_c00252{left:0.000000px;}
.x13_c00252{left:152.580000px;}
.x4_c00252{left:154.500000px;}
.x100_c00252{left:165.000000px;}
.x90_c00252{left:166.500000px;}
.x97_c00252{left:168.420000px;}
.x55_c00252{left:169.500000px;}
.x14_c00252{left:172.920000px;}
.xc9_c00252{left:180.000000px;}
.xd1_c00252{left:183.420000px;}
.xe2_c00252{left:184.500000px;}
.x61_c00252{left:185.580000px;}
.x3f_c00252{left:187.080000px;}
.x31_c00252{left:188.580000px;}
.x56_c00252{left:190.500000px;}
.x24_c00252{left:192.420000px;}
.x109_c00252{left:194.580000px;}
.x5_c00252{left:198.000000px;}
.x15_c00252{left:200.580000px;}
.x7c_c00252{left:202.500000px;}
.x91_c00252{left:203.580000px;}
.x40_c00252{left:204.645000px;}
.xc3_c00252{left:208.500000px;}
.x6_c00252{left:210.000000px;}
.x69_c00252{left:211.080000px;}
.x4e_c00252{left:215.580000px;}
.xd2_c00252{left:217.920000px;}
.x32_c00252{left:219.000000px;}
.xfc_c00252{left:220.500000px;}
.xca_c00252{left:222.000000px;}
.xae_c00252{left:224.580000px;}
.xe3_c00252{left:226.500000px;}
.x62_c00252{left:228.420000px;}
.xd7_c00252{left:229.500000px;}
.x9f_c00252{left:232.500000px;}
.x84_c00252{left:234.000000px;}
.x25_c00252{left:237.000000px;}
.x101_c00252{left:238.920000px;}
.xde_c00252{left:240.000000px;}
.xa6_c00252{left:241.080000px;}
.xaf_c00252{left:242.580000px;}
.x16_c00252{left:244.500000px;}
.xd5_c00252{left:247.080000px;}
.xb8_c00252{left:249.000000px;}
.x72_c00252{left:250.080000px;}
.xa7_c00252{left:252.000000px;}
.xfd_c00252{left:253.080000px;}
.x6a_c00252{left:255.000000px;}
.xa0_c00252{left:256.500000px;}
.xf5_c00252{left:258.000000px;}
.x41_c00252{left:259.500000px;}
.xbe_c00252{left:261.000000px;}
.x7_c00252{left:262.080000px;}
.xf0_c00252{left:264.000000px;}
.x33_c00252{left:265.080000px;}
.x73_c00252{left:267.000000px;}
.xd3_c00252{left:268.920000px;}
.x98_c00252{left:270.000000px;}
.x26_c00252{left:271.500000px;}
.xf1_c00252{left:274.500000px;}
.xc4_c00252{left:276.000000px;}
.x4f_c00252{left:277.920000px;}
.xa3_c00252{left:280.500000px;}
.xbf_c00252{left:282.000000px;}
.x17_c00252{left:283.920000px;}
.x34_c00252{left:285.000000px;}
.x57_c00252{left:286.500000px;}
.x7d_c00252{left:288.000000px;}
.x99_c00252{left:290.580000px;}
.x63_c00252{left:295.080000px;}
.xe4_c00252{left:297.000000px;}
.xcb_c00252{left:298.080000px;}
.xb0_c00252{left:300.000000px;}
.x8_c00252{left:303.000000px;}
.x35_c00252{left:304.500000px;}
.x58_c00252{left:307.500000px;}
.xf2_c00252{left:309.000000px;}
.x88_c00252{left:310.080000px;}
.x18_c00252{left:311.580000px;}
.x8a_c00252{left:313.500000px;}
.x42_c00252{left:316.500000px;}
.xd6_c00252{left:318.000000px;}
.xea_c00252{left:319.080000px;}
.xa1_c00252{left:321.420000px;}
.xfa_c00252{left:323.580000px;}
.x74_c00252{left:325.080000px;}
.x6b_c00252{left:326.580000px;}
.xcc_c00252{left:328.920000px;}
.x7e_c00252{left:334.500000px;}
.x59_c00252{left:336.000000px;}
.xb1_c00252{left:340.920000px;}
.x92_c00252{left:343.920000px;}
.x27_c00252{left:348.420000px;}
.xdf_c00252{left:349.500000px;}
.xa8_c00252{left:350.775000px;}
.x9a_c00252{left:352.080000px;}
.x8b_c00252{left:354.000000px;}
.x9_c00252{left:357.000000px;}
.x43_c00252{left:358.500000px;}
.x102_c00252{left:360.420000px;}
.xe0_c00252{left:361.500000px;}
.xcd_c00252{left:362.580000px;}
.x89_c00252{left:364.080000px;}
.xd8_c00252{left:370.500000px;}
.x75_c00252{left:372.000000px;}
.x44_c00252{left:373.500000px;}
.x64_c00252{left:374.775000px;}
.x19_c00252{left:378.000000px;}
.x36_c00252{left:379.500000px;}
.xb2_c00252{left:381.420000px;}
.x7f_c00252{left:382.500000px;}
.xa4_c00252{left:385.275000px;}
.xa_c00252{left:387.000000px;}
.x45_c00252{left:388.080000px;}
.xa9_c00252{left:390.000000px;}
.xc5_c00252{left:391.920000px;}
.xd4_c00252{left:394.500000px;}
.xe5_c00252{left:397.500000px;}
.xfe_c00252{left:399.420000px;}
.xe1_c00252{left:400.500000px;}
.xf6_c00252{left:401.580000px;}
.xf4_c00252{left:403.500000px;}
.x76_c00252{left:404.580000px;}
.x5a_c00252{left:406.080000px;}
.x50_c00252{left:407.580000px;}
.x2_c00252{left:409.080000px;}
.x8c_c00252{left:410.580000px;}
.x85_c00252{left:412.920000px;}
.xeb_c00252{left:414.000000px;}
.x37_c00252{left:415.920000px;}
.x65_c00252{left:417.000000px;}
.x93_c00252{left:421.500000px;}
.xa2_c00252{left:422.580000px;}
.x5b_c00252{left:424.080000px;}
.xf7_c00252{left:426.000000px;}
.x28_c00252{left:427.500000px;}
.xb_c00252{left:429.420000px;}
.x8d_c00252{left:432.420000px;}
.xaa_c00252{left:434.580000px;}
.x80_c00252{left:436.080000px;}
.x94_c00252{left:438.000000px;}
.x46_c00252{left:439.920000px;}
.x38_c00252{left:442.920000px;}
.x29_c00252{left:445.080000px;}
.x103_c00252{left:447.000000px;}
.x8e_c00252{left:450.000000px;}
.x1a_c00252{left:451.500000px;}
.xd9_c00252{left:453.000000px;}
.xc6_c00252{left:455.580000px;}
.x6c_c00252{left:462.000000px;}
.xf8_c00252{left:463.920000px;}
.xc_c00252{left:466.920000px;}
.xff_c00252{left:468.000000px;}
.xc0_c00252{left:469.080000px;}
.x1b_c00252{left:471.420000px;}
.x77_c00252{left:472.500000px;}
.x47_c00252{left:475.080000px;}
.xec_c00252{left:477.000000px;}
.xb3_c00252{left:478.920000px;}
.xb9_c00252{left:481.080000px;}
.x9b_c00252{left:482.580000px;}
.x78_c00252{left:484.500000px;}
.xab_c00252{left:485.580000px;}
.x8f_c00252{left:487.920000px;}
.x2a_c00252{left:490.500000px;}
.xd_c00252{left:492.000000px;}
.x5c_c00252{left:495.420000px;}
.x1c_c00252{left:496.500000px;}
.x39_c00252{left:498.000000px;}
.x9c_c00252{left:502.500000px;}
.xb4_c00252{left:504.000000px;}
.xe6_c00252{left:507.000000px;}
.xba_c00252{left:508.500000px;}
.x2b_c00252{left:511.500000px;}
.xce_c00252{left:513.000000px;}
.xed_c00252{left:514.500000px;}
.x1d_c00252{left:517.920000px;}
.xe7_c00252{left:519.000000px;}
.x104_c00252{left:520.920000px;}
.x5d_c00252{left:522.000000px;}
.x2c_c00252{left:525.000000px;}
.x6d_c00252{left:526.500000px;}
.x81_c00252{left:529.500000px;}
.xac_c00252{left:531.420000px;}
.x66_c00252{left:532.920000px;}
.xda_c00252{left:534.420000px;}
.x48_c00252{left:535.500000px;}
.x51_c00252{left:537.420000px;}
.xa5_c00252{left:539.775000px;}
.xe_c00252{left:542.580000px;}
.xee_c00252{left:544.500000px;}
.x1e_c00252{left:545.580000px;}
.x86_c00252{left:547.500000px;}
.x95_c00252{left:551.580000px;}
.x49_c00252{left:553.500000px;}
.xbb_c00252{left:555.000000px;}
.x79_c00252{left:557.580000px;}
.xf_c00252{left:559.920000px;}
.xfb_c00252{left:561.420000px;}
.x105_c00252{left:562.500000px;}
.x87_c00252{left:564.000000px;}
.x3a_c00252{left:565.500000px;}
.x82_c00252{left:567.420000px;}
.x5e_c00252{left:569.580000px;}
.x6e_c00252{left:573.420000px;}
.x7a_c00252{left:577.500000px;}
.x2d_c00252{left:579.000000px;}
.xe8_c00252{left:580.080000px;}
.x1f_c00252{left:581.580000px;}
.xc1_c00252{left:585.000000px;}
.x10_c00252{left:586.500000px;}
.x67_c00252{left:588.000000px;}
.x52_c00252{left:589.500000px;}
.x106_c00252{left:592.080000px;}
.xdb_c00252{left:595.080000px;}
.xb5_c00252{left:598.500000px;}
.x20_c00252{left:601.920000px;}
.xf3_c00252{left:603.000000px;}
.xcf_c00252{left:606.420000px;}
.x53_c00252{left:607.920000px;}
.x3b_c00252{left:610.500000px;}
.x5f_c00252{left:613.500000px;}
.xdc_c00252{left:614.580000px;}
.x9d_c00252{left:616.500000px;}
.x107_c00252{left:619.500000px;}
.x11_c00252{left:622.080000px;}
.xb6_c00252{left:626.580000px;}
.x4a_c00252{left:628.080000px;}
.x21_c00252{left:630.000000px;}
.x54_c00252{left:634.500000px;}
.x6f_c00252{left:636.000000px;}
.x3c_c00252{left:637.500000px;}
.xc7_c00252{left:641.580000px;}
.xd0_c00252{left:643.080000px;}
.xc2_c00252{left:645.000000px;}
.x2e_c00252{left:646.080000px;}
.x4b_c00252{left:648.000000px;}
.xef_c00252{left:649.500000px;}
.x83_c00252{left:652.500000px;}
.x3d_c00252{left:655.920000px;}
.x10a_c00252{left:658.080000px;}
.x96_c00252{left:659.580000px;}
.x108_c00252{left:663.000000px;}
.xbc_c00252{left:664.080000px;}
.x2f_c00252{left:665.580000px;}
.x22_c00252{left:670.500000px;}
.x7b_c00252{left:673.500000px;}
.xb7_c00252{left:674.580000px;}
.x9e_c00252{left:676.080000px;}
.x70_c00252{left:678.000000px;}
.xe9_c00252{left:679.500000px;}
.x12_c00252{left:681.000000px;}
.x3e_c00252{left:682.500000px;}
.x30_c00252{left:685.500000px;}
.x60_c00252{left:686.580000px;}
.xbd_c00252{left:688.080000px;}
.x23_c00252{left:690.420000px;}
.x4c_c00252{left:691.500000px;}
.xad_c00252{left:693.420000px;}
.x71_c00252{left:697.080000px;}
.x10b_c00252{left:700.500000px;}
.xf9_c00252{left:702.000000px;}
.x68_c00252{left:703.500000px;}
.x1_c00252{left:706.080000px;}
.x4d_c00252{left:708.420000px;}
.xc8_c00252{left:712.500000px;}
.xdd_c00252{left:718.920000px;}
.x3_c00252{left:721.920000px;}
@media print{
.v0_c00252{vertical-align:0.000000pt;}
.ls0_c00252{letter-spacing:0.000000pt;}
.ws0_c00252{word-spacing:-4.026738pt;}
.ws2_c00252{word-spacing:0.000000pt;}
.ws1_c00252{word-spacing:0.692749pt;}
.fs8_c00252{font-size:3.040000pt;}
.fs7_c00252{font-size:12.106667pt;}
.fs1_c00252{font-size:16.640000pt;}
.fs6_c00252{font-size:18.133333pt;}
.fs3_c00252{font-size:22.666667pt;}
.fs0_c00252{font-size:25.706667pt;}
.fs5_c00252{font-size:28.746667pt;}
.fs2_c00252{font-size:31.733333pt;}
.fs4_c00252{font-size:34.773333pt;}
.y0_c00252{bottom:0.000000pt;}
.y3_c00252{bottom:204.560000pt;}
.ye2_c00252{bottom:227.773333pt;}
.ye1_c00252{bottom:229.693333pt;}
.ye3_c00252{bottom:229.893333pt;}
.ye5_c00252{bottom:230.066667pt;}
.ye4_c00252{bottom:231.026667pt;}
.ydb_c00252{bottom:245.106667pt;}
.ye0_c00252{bottom:246.440000pt;}
.ydd_c00252{bottom:247.026667pt;}
.ydc_c00252{bottom:247.040000pt;}
.yde_c00252{bottom:247.226667pt;}
.ydf_c00252{bottom:248.360000pt;}
.yd6_c00252{bottom:265.306667pt;}
.yd4_c00252{bottom:266.066667pt;}
.yd8_c00252{bottom:266.640000pt;}
.yd5_c00252{bottom:267.026667pt;}
.yd2_c00252{bottom:267.226667pt;}
.yda_c00252{bottom:267.400000pt;}
.yd3_c00252{bottom:267.973333pt;}
.yd7_c00252{bottom:268.933333pt;}
.yd9_c00252{bottom:269.306667pt;}
.ycc_c00252{bottom:278.640000pt;}
.ycf_c00252{bottom:279.400000pt;}
.yd0_c00252{bottom:280.733333pt;}
.yce_c00252{bottom:281.306667pt;}
.yd1_c00252{bottom:281.693333pt;}
.ycd_c00252{bottom:282.266667pt;}
.yca_c00252{bottom:292.360000pt;}
.yc9_c00252{bottom:292.733333pt;}
.yc6_c00252{bottom:293.693333pt;}
.yc8_c00252{bottom:294.640000pt;}
.yc7_c00252{bottom:294.840000pt;}
.ycb_c00252{bottom:295.600000pt;}
.yc0_c00252{bottom:306.066667pt;}
.yc3_c00252{bottom:307.026667pt;}
.yc4_c00252{bottom:307.226667pt;}
.ybf_c00252{bottom:307.600000pt;}
.yc5_c00252{bottom:307.973333pt;}
.yc2_c00252{bottom:308.173333pt;}
.yc1_c00252{bottom:308.933333pt;}
.ybe_c00252{bottom:319.026667pt;}
.yb4_c00252{bottom:330.640000pt;}
.yb9_c00252{bottom:331.600000pt;}
.yb5_c00252{bottom:332.360000pt;}
.yb8_c00252{bottom:333.306667pt;}
.yb6_c00252{bottom:333.506667pt;}
.ybb_c00252{bottom:333.693333pt;}
.yb7_c00252{bottom:334.266667pt;}
.ybc_c00252{bottom:334.640000pt;}
.ybd_c00252{bottom:334.840000pt;}
.yba_c00252{bottom:335.600000pt;}
.yac_c00252{bottom:344.933333pt;}
.yae_c00252{bottom:345.693333pt;}
.yb2_c00252{bottom:346.066667pt;}
.yaf_c00252{bottom:346.640000pt;}
.yb3_c00252{bottom:347.026667pt;}
.yad_c00252{bottom:347.600000pt;}
.yb1_c00252{bottom:347.973333pt;}
.yb0_c00252{bottom:348.173333pt;}
.ya8_c00252{bottom:357.306667pt;}
.yaa_c00252{bottom:358.066667pt;}
.ya7_c00252{bottom:358.640000pt;}
.ya5_c00252{bottom:359.026667pt;}
.yab_c00252{bottom:359.226667pt;}
.ya4_c00252{bottom:359.973333pt;}
.ya6_c00252{bottom:360.173333pt;}
.ya9_c00252{bottom:360.933333pt;}
.ya2_c00252{bottom:371.400000pt;}
.y9e_c00252{bottom:371.600000pt;}
.ya1_c00252{bottom:372.360000pt;}
.ya0_c00252{bottom:372.560000pt;}
.y9f_c00252{bottom:373.306667pt;}
.ya3_c00252{bottom:374.266667pt;}
.y9d_c00252{bottom:383.973333pt;}
.y98_c00252{bottom:384.733333pt;}
.y9b_c00252{bottom:385.693333pt;}
.y97_c00252{bottom:385.893333pt;}
.y99_c00252{bottom:386.640000pt;}
.y9c_c00252{bottom:386.840000pt;}
.y9a_c00252{bottom:387.600000pt;}
.y92_c00252{bottom:398.066667pt;}
.y96_c00252{bottom:398.266667pt;}
.y94_c00252{bottom:399.026667pt;}
.y95_c00252{bottom:399.226667pt;}
.y91_c00252{bottom:399.973333pt;}
.y93_c00252{bottom:400.933333pt;}
.y8f_c00252{bottom:411.400000pt;}
.y90_c00252{bottom:412.360000pt;}
.y8b_c00252{bottom:412.560000pt;}
.y8c_c00252{bottom:412.933333pt;}
.y8d_c00252{bottom:413.306667pt;}
.y8e_c00252{bottom:414.266667pt;}
.y8a_c00252{bottom:431.773333pt;}
.y89_c00252{bottom:433.693333pt;}
.y85_c00252{bottom:448.360000pt;}
.y83_c00252{bottom:450.066667pt;}
.y86_c00252{bottom:450.440000pt;}
.y82_c00252{bottom:451.026667pt;}
.y84_c00252{bottom:451.226667pt;}
.y81_c00252{bottom:451.973333pt;}
.y88_c00252{bottom:452.360000pt;}
.y87_c00252{bottom:453.306667pt;}
.y80_c00252{bottom:467.773333pt;}
.y7c_c00252{bottom:468.360000pt;}
.y7f_c00252{bottom:468.560000pt;}
.y7d_c00252{bottom:469.693333pt;}
.y7e_c00252{bottom:469.706667pt;}
.y7b_c00252{bottom:485.106667pt;}
.y7a_c00252{bottom:487.026667pt;}
.y76_c00252{bottom:502.066667pt;}
.y77_c00252{bottom:502.440000pt;}
.y79_c00252{bottom:503.400000pt;}
.y78_c00252{bottom:504.360000pt;}
.y75_c00252{bottom:519.026667pt;}
.y73_c00252{bottom:519.773333pt;}
.y74_c00252{bottom:521.306667pt;}
.y71_c00252{bottom:521.693333pt;}
.y72_c00252{bottom:523.040000pt;}
.y70_c00252{bottom:539.026667pt;}
.y6e_c00252{bottom:554.440000pt;}
.y6f_c00252{bottom:554.826667pt;}
.y6d_c00252{bottom:555.773333pt;}
.y6b_c00252{bottom:556.560000pt;}
.y6a_c00252{bottom:557.693333pt;}
.y6c_c00252{bottom:557.706667pt;}
.y68_c00252{bottom:573.106667pt;}
.y69_c00252{bottom:575.026667pt;}
.y64_c00252{bottom:589.693333pt;}
.y65_c00252{bottom:590.440000pt;}
.y67_c00252{bottom:590.826667pt;}
.y66_c00252{bottom:591.400000pt;}
.y63_c00252{bottom:607.026667pt;}
.y60_c00252{bottom:607.773333pt;}
.y5f_c00252{bottom:607.973333pt;}
.y5e_c00252{bottom:608.733333pt;}
.y62_c00252{bottom:609.106667pt;}
.y61_c00252{bottom:609.693333pt;}
.y5c_c00252{bottom:624.360000pt;}
.y59_c00252{bottom:625.106667pt;}
.y5b_c00252{bottom:626.066667pt;}
.y5d_c00252{bottom:627.026667pt;}
.y5a_c00252{bottom:627.040000pt;}
.y53_c00252{bottom:642.640000pt;}
.y58_c00252{bottom:642.826667pt;}
.y57_c00252{bottom:643.773333pt;}
.y51_c00252{bottom:644.360000pt;}
.y52_c00252{bottom:644.560000pt;}
.y56_c00252{bottom:644.733333pt;}
.y55_c00252{bottom:645.306667pt;}
.y54_c00252{bottom:645.693333pt;}
.y4b_c00252{bottom:661.106667pt;}
.y50_c00252{bottom:662.066667pt;}
.y4f_c00252{bottom:662.640000pt;}
.y4d_c00252{bottom:663.026667pt;}
.y4c_c00252{bottom:663.040000pt;}
.y4e_c00252{bottom:663.973333pt;}
.y4a_c00252{bottom:681.306667pt;}
.y48_c00252{bottom:681.693333pt;}
.y49_c00252{bottom:682.066667pt;}
.y45_c00252{bottom:683.026667pt;}
.y43_c00252{bottom:683.600000pt;}
.y44_c00252{bottom:683.973333pt;}
.y47_c00252{bottom:684.173333pt;}
.y46_c00252{bottom:684.933333pt;}
.y3f_c00252{bottom:698.640000pt;}
.y42_c00252{bottom:699.400000pt;}
.y41_c00252{bottom:699.600000pt;}
.y40_c00252{bottom:700.360000pt;}
.y3e_c00252{bottom:702.266667pt;}
.y3d_c00252{bottom:721.106667pt;}
.y3c_c00252{bottom:722.640000pt;}
.y3b_c00252{bottom:723.026667pt;}
.y3a_c00252{bottom:754.066667pt;}
.y36_c00252{bottom:754.440000pt;}
.y38_c00252{bottom:755.226667pt;}
.y39_c00252{bottom:755.973333pt;}
.y37_c00252{bottom:756.360000pt;}
.y34_c00252{bottom:771.773333pt;}
.y33_c00252{bottom:773.693333pt;}
.y35_c00252{bottom:773.893333pt;}
.y32_c00252{bottom:787.973333pt;}
.y30_c00252{bottom:788.160000pt;}
.y31_c00252{bottom:788.733333pt;}
.y2f_c00252{bottom:789.106667pt;}
.y2c_c00252{bottom:789.893333pt;}
.y2d_c00252{bottom:791.026667pt;}
.y2e_c00252{bottom:791.973333pt;}
.y28_c00252{bottom:806.440000pt;}
.y2a_c00252{bottom:807.226667pt;}
.y2b_c00252{bottom:807.973333pt;}
.y29_c00252{bottom:808.360000pt;}
.y25_c00252{bottom:823.773333pt;}
.y26_c00252{bottom:825.106667pt;}
.y24_c00252{bottom:825.693333pt;}
.y27_c00252{bottom:827.026667pt;}
.y23_c00252{bottom:842.440000pt;}
.y1f_c00252{bottom:843.026667pt;}
.y21_c00252{bottom:843.226667pt;}
.y20_c00252{bottom:843.973333pt;}
.y22_c00252{bottom:844.360000pt;}
.y1c_c00252{bottom:858.440000pt;}
.y1e_c00252{bottom:859.773333pt;}
.y1b_c00252{bottom:860.360000pt;}
.y1a_c00252{bottom:860.560000pt;}
.y1d_c00252{bottom:861.693333pt;}
.y18_c00252{bottom:877.106667pt;}
.y17_c00252{bottom:877.693333pt;}
.y16_c00252{bottom:877.893333pt;}
.y19_c00252{bottom:879.026667pt;}
.y13_c00252{bottom:893.106667pt;}
.y14_c00252{bottom:894.440000pt;}
.y12_c00252{bottom:895.026667pt;}
.y11_c00252{bottom:896.360000pt;}
.y15_c00252{bottom:897.306667pt;}
.ye_c00252{bottom:911.773333pt;}
.y10_c00252{bottom:912.560000pt;}
.yd_c00252{bottom:913.306667pt;}
.yf_c00252{bottom:913.693333pt;}
.ya_c00252{bottom:927.973333pt;}
.yb_c00252{bottom:929.106667pt;}
.y9_c00252{bottom:929.693333pt;}
.yc_c00252{bottom:929.893333pt;}
.y8_c00252{bottom:931.026667pt;}
.y4_c00252{bottom:946.440000pt;}
.y5_c00252{bottom:947.226667pt;}
.y7_c00252{bottom:947.973333pt;}
.y6_c00252{bottom:948.360000pt;}
.y1_c00252{bottom:980.360000pt;}
.y2_c00252{bottom:983.226667pt;}
.h9_c00252{height:3.739141pt;}
.h8_c00252{height:14.890964pt;}
.h2_c00252{height:20.466875pt;}
.h7_c00252{height:22.303646pt;}
.h4_c00252{height:27.879557pt;}
.h1_c00252{height:31.618698pt;}
.h6_c00252{height:35.357839pt;}
.h3_c00252{height:39.031380pt;}
.h5_c00252{height:42.770521pt;}
.h0_c00252{height:1186.666667pt;}
.w0_c00252{width:782.666667pt;}
.x0_c00252{left:0.000000pt;}
.x13_c00252{left:135.626667pt;}
.x4_c00252{left:137.333333pt;}
.x100_c00252{left:146.666667pt;}
.x90_c00252{left:148.000000pt;}
.x97_c00252{left:149.706667pt;}
.x55_c00252{left:150.666667pt;}
.x14_c00252{left:153.706667pt;}
.xc9_c00252{left:160.000000pt;}
.xd1_c00252{left:163.040000pt;}
.xe2_c00252{left:164.000000pt;}
.x61_c00252{left:164.960000pt;}
.x3f_c00252{left:166.293333pt;}
.x31_c00252{left:167.626667pt;}
.x56_c00252{left:169.333333pt;}
.x24_c00252{left:171.040000pt;}
.x109_c00252{left:172.960000pt;}
.x5_c00252{left:176.000000pt;}
.x15_c00252{left:178.293333pt;}
.x7c_c00252{left:180.000000pt;}
.x91_c00252{left:180.960000pt;}
.x40_c00252{left:181.906667pt;}
.xc3_c00252{left:185.333333pt;}
.x6_c00252{left:186.666667pt;}
.x69_c00252{left:187.626667pt;}
.x4e_c00252{left:191.626667pt;}
.xd2_c00252{left:193.706667pt;}
.x32_c00252{left:194.666667pt;}
.xfc_c00252{left:196.000000pt;}
.xca_c00252{left:197.333333pt;}
.xae_c00252{left:199.626667pt;}
.xe3_c00252{left:201.333333pt;}
.x62_c00252{left:203.040000pt;}
.xd7_c00252{left:204.000000pt;}
.x9f_c00252{left:206.666667pt;}
.x84_c00252{left:208.000000pt;}
.x25_c00252{left:210.666667pt;}
.x101_c00252{left:212.373333pt;}
.xde_c00252{left:213.333333pt;}
.xa6_c00252{left:214.293333pt;}
.xaf_c00252{left:215.626667pt;}
.x16_c00252{left:217.333333pt;}
.xd5_c00252{left:219.626667pt;}
.xb8_c00252{left:221.333333pt;}
.x72_c00252{left:222.293333pt;}
.xa7_c00252{left:224.000000pt;}
.xfd_c00252{left:224.960000pt;}
.x6a_c00252{left:226.666667pt;}
.xa0_c00252{left:228.000000pt;}
.xf5_c00252{left:229.333333pt;}
.x41_c00252{left:230.666667pt;}
.xbe_c00252{left:232.000000pt;}
.x7_c00252{left:232.960000pt;}
.xf0_c00252{left:234.666667pt;}
.x33_c00252{left:235.626667pt;}
.x73_c00252{left:237.333333pt;}
.xd3_c00252{left:239.040000pt;}
.x98_c00252{left:240.000000pt;}
.x26_c00252{left:241.333333pt;}
.xf1_c00252{left:244.000000pt;}
.xc4_c00252{left:245.333333pt;}
.x4f_c00252{left:247.040000pt;}
.xa3_c00252{left:249.333333pt;}
.xbf_c00252{left:250.666667pt;}
.x17_c00252{left:252.373333pt;}
.x34_c00252{left:253.333333pt;}
.x57_c00252{left:254.666667pt;}
.x7d_c00252{left:256.000000pt;}
.x99_c00252{left:258.293333pt;}
.x63_c00252{left:262.293333pt;}
.xe4_c00252{left:264.000000pt;}
.xcb_c00252{left:264.960000pt;}
.xb0_c00252{left:266.666667pt;}
.x8_c00252{left:269.333333pt;}
.x35_c00252{left:270.666667pt;}
.x58_c00252{left:273.333333pt;}
.xf2_c00252{left:274.666667pt;}
.x88_c00252{left:275.626667pt;}
.x18_c00252{left:276.960000pt;}
.x8a_c00252{left:278.666667pt;}
.x42_c00252{left:281.333333pt;}
.xd6_c00252{left:282.666667pt;}
.xea_c00252{left:283.626667pt;}
.xa1_c00252{left:285.706667pt;}
.xfa_c00252{left:287.626667pt;}
.x74_c00252{left:288.960000pt;}
.x6b_c00252{left:290.293333pt;}
.xcc_c00252{left:292.373333pt;}
.x7e_c00252{left:297.333333pt;}
.x59_c00252{left:298.666667pt;}
.xb1_c00252{left:303.040000pt;}
.x92_c00252{left:305.706667pt;}
.x27_c00252{left:309.706667pt;}
.xdf_c00252{left:310.666667pt;}
.xa8_c00252{left:311.800000pt;}
.x9a_c00252{left:312.960000pt;}
.x8b_c00252{left:314.666667pt;}
.x9_c00252{left:317.333333pt;}
.x43_c00252{left:318.666667pt;}
.x102_c00252{left:320.373333pt;}
.xe0_c00252{left:321.333333pt;}
.xcd_c00252{left:322.293333pt;}
.x89_c00252{left:323.626667pt;}
.xd8_c00252{left:329.333333pt;}
.x75_c00252{left:330.666667pt;}
.x44_c00252{left:332.000000pt;}
.x64_c00252{left:333.133333pt;}
.x19_c00252{left:336.000000pt;}
.x36_c00252{left:337.333333pt;}
.xb2_c00252{left:339.040000pt;}
.x7f_c00252{left:340.000000pt;}
.xa4_c00252{left:342.466667pt;}
.xa_c00252{left:344.000000pt;}
.x45_c00252{left:344.960000pt;}
.xa9_c00252{left:346.666667pt;}
.xc5_c00252{left:348.373333pt;}
.xd4_c00252{left:350.666667pt;}
.xe5_c00252{left:353.333333pt;}
.xfe_c00252{left:355.040000pt;}
.xe1_c00252{left:356.000000pt;}
.xf6_c00252{left:356.960000pt;}
.xf4_c00252{left:358.666667pt;}
.x76_c00252{left:359.626667pt;}
.x5a_c00252{left:360.960000pt;}
.x50_c00252{left:362.293333pt;}
.x2_c00252{left:363.626667pt;}
.x8c_c00252{left:364.960000pt;}
.x85_c00252{left:367.040000pt;}
.xeb_c00252{left:368.000000pt;}
.x37_c00252{left:369.706667pt;}
.x65_c00252{left:370.666667pt;}
.x93_c00252{left:374.666667pt;}
.xa2_c00252{left:375.626667pt;}
.x5b_c00252{left:376.960000pt;}
.xf7_c00252{left:378.666667pt;}
.x28_c00252{left:380.000000pt;}
.xb_c00252{left:381.706667pt;}
.x8d_c00252{left:384.373333pt;}
.xaa_c00252{left:386.293333pt;}
.x80_c00252{left:387.626667pt;}
.x94_c00252{left:389.333333pt;}
.x46_c00252{left:391.040000pt;}
.x38_c00252{left:393.706667pt;}
.x29_c00252{left:395.626667pt;}
.x103_c00252{left:397.333333pt;}
.x8e_c00252{left:400.000000pt;}
.x1a_c00252{left:401.333333pt;}
.xd9_c00252{left:402.666667pt;}
.xc6_c00252{left:404.960000pt;}
.x6c_c00252{left:410.666667pt;}
.xf8_c00252{left:412.373333pt;}
.xc_c00252{left:415.040000pt;}
.xff_c00252{left:416.000000pt;}
.xc0_c00252{left:416.960000pt;}
.x1b_c00252{left:419.040000pt;}
.x77_c00252{left:420.000000pt;}
.x47_c00252{left:422.293333pt;}
.xec_c00252{left:424.000000pt;}
.xb3_c00252{left:425.706667pt;}
.xb9_c00252{left:427.626667pt;}
.x9b_c00252{left:428.960000pt;}
.x78_c00252{left:430.666667pt;}
.xab_c00252{left:431.626667pt;}
.x8f_c00252{left:433.706667pt;}
.x2a_c00252{left:436.000000pt;}
.xd_c00252{left:437.333333pt;}
.x5c_c00252{left:440.373333pt;}
.x1c_c00252{left:441.333333pt;}
.x39_c00252{left:442.666667pt;}
.x9c_c00252{left:446.666667pt;}
.xb4_c00252{left:448.000000pt;}
.xe6_c00252{left:450.666667pt;}
.xba_c00252{left:452.000000pt;}
.x2b_c00252{left:454.666667pt;}
.xce_c00252{left:456.000000pt;}
.xed_c00252{left:457.333333pt;}
.x1d_c00252{left:460.373333pt;}
.xe7_c00252{left:461.333333pt;}
.x104_c00252{left:463.040000pt;}
.x5d_c00252{left:464.000000pt;}
.x2c_c00252{left:466.666667pt;}
.x6d_c00252{left:468.000000pt;}
.x81_c00252{left:470.666667pt;}
.xac_c00252{left:472.373333pt;}
.x66_c00252{left:473.706667pt;}
.xda_c00252{left:475.040000pt;}
.x48_c00252{left:476.000000pt;}
.x51_c00252{left:477.706667pt;}
.xa5_c00252{left:479.800000pt;}
.xe_c00252{left:482.293333pt;}
.xee_c00252{left:484.000000pt;}
.x1e_c00252{left:484.960000pt;}
.x86_c00252{left:486.666667pt;}
.x95_c00252{left:490.293333pt;}
.x49_c00252{left:492.000000pt;}
.xbb_c00252{left:493.333333pt;}
.x79_c00252{left:495.626667pt;}
.xf_c00252{left:497.706667pt;}
.xfb_c00252{left:499.040000pt;}
.x105_c00252{left:500.000000pt;}
.x87_c00252{left:501.333333pt;}
.x3a_c00252{left:502.666667pt;}
.x82_c00252{left:504.373333pt;}
.x5e_c00252{left:506.293333pt;}
.x6e_c00252{left:509.706667pt;}
.x7a_c00252{left:513.333333pt;}
.x2d_c00252{left:514.666667pt;}
.xe8_c00252{left:515.626667pt;}
.x1f_c00252{left:516.960000pt;}
.xc1_c00252{left:520.000000pt;}
.x10_c00252{left:521.333333pt;}
.x67_c00252{left:522.666667pt;}
.x52_c00252{left:524.000000pt;}
.x106_c00252{left:526.293333pt;}
.xdb_c00252{left:528.960000pt;}
.xb5_c00252{left:532.000000pt;}
.x20_c00252{left:535.040000pt;}
.xf3_c00252{left:536.000000pt;}
.xcf_c00252{left:539.040000pt;}
.x53_c00252{left:540.373333pt;}
.x3b_c00252{left:542.666667pt;}
.x5f_c00252{left:545.333333pt;}
.xdc_c00252{left:546.293333pt;}
.x9d_c00252{left:548.000000pt;}
.x107_c00252{left:550.666667pt;}
.x11_c00252{left:552.960000pt;}
.xb6_c00252{left:556.960000pt;}
.x4a_c00252{left:558.293333pt;}
.x21_c00252{left:560.000000pt;}
.x54_c00252{left:564.000000pt;}
.x6f_c00252{left:565.333333pt;}
.x3c_c00252{left:566.666667pt;}
.xc7_c00252{left:570.293333pt;}
.xd0_c00252{left:571.626667pt;}
.xc2_c00252{left:573.333333pt;}
.x2e_c00252{left:574.293333pt;}
.x4b_c00252{left:576.000000pt;}
.xef_c00252{left:577.333333pt;}
.x83_c00252{left:580.000000pt;}
.x3d_c00252{left:583.040000pt;}
.x10a_c00252{left:584.960000pt;}
.x96_c00252{left:586.293333pt;}
.x108_c00252{left:589.333333pt;}
.xbc_c00252{left:590.293333pt;}
.x2f_c00252{left:591.626667pt;}
.x22_c00252{left:596.000000pt;}
.x7b_c00252{left:598.666667pt;}
.xb7_c00252{left:599.626667pt;}
.x9e_c00252{left:600.960000pt;}
.x70_c00252{left:602.666667pt;}
.xe9_c00252{left:604.000000pt;}
.x12_c00252{left:605.333333pt;}
.x3e_c00252{left:606.666667pt;}
.x30_c00252{left:609.333333pt;}
.x60_c00252{left:610.293333pt;}
.xbd_c00252{left:611.626667pt;}
.x23_c00252{left:613.706667pt;}
.x4c_c00252{left:614.666667pt;}
.xad_c00252{left:616.373333pt;}
.x71_c00252{left:619.626667pt;}
.x10b_c00252{left:622.666667pt;}
.xf9_c00252{left:624.000000pt;}
.x68_c00252{left:625.333333pt;}
.x1_c00252{left:627.626667pt;}
.x4d_c00252{left:629.706667pt;}
.xc8_c00252{left:633.333333pt;}
.xdd_c00252{left:639.040000pt;}
.x3_c00252{left:641.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_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_a86d4a80b949f0fcf456a0a9.woff2')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:1.688965;font-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_c00253{transform:matrix(0.338957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338957,0.000000,0.000000,0.250000,0,0);}
.m75_c00253{transform:matrix(0.341258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341258,0.000000,0.000000,0.250000,0,0);}
.m81_c00253{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_c00253{transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);}
.mce_c00253{transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);}
.md4_c00253{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m77_c00253{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m7a_c00253{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mcf_c00253{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m69_c00253{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m3e_c00253{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.ma4_c00253{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m86_c00253{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m92_c00253{transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);}
.m3b_c00253{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.mb4_c00253{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m74_c00253{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m5f_c00253{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.md5_c00253{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.mc8_c00253{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.me6_c00253{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.mb3_c00253{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.mae_c00253{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mdb_c00253{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m5a_c00253{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m29_c00253{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m93_c00253{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.mbe_c00253{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);}
.m7e_c00253{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.md6_c00253{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m72_c00253{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m21_c00253{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m38_c00253{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.mb5_c00253{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mbf_c00253{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m45_c00253{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m42_c00253{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m3d_c00253{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mcd_c00253{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.mde_c00253{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.m96_c00253{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.md3_c00253{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m8e_c00253{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m1b_c00253{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m6d_c00253{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.me7_c00253{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m3a_c00253{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mb6_c00253{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.md9_c00253{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m9c_c00253{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mc6_c00253{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.maf_c00253{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.md2_c00253{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m6e_c00253{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m32_c00253{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.ma6_c00253{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mac_c00253{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m98_c00253{transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);}
.mb8_c00253{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.m9f_c00253{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m1e_c00253{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m63_c00253{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m94_c00253{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m52_c00253{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m83_c00253{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m2a_c00253{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m44_c00253{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m1f_c00253{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m43_c00253{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m4_c00253{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.m3c_c00253{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.mdd_c00253{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m31_c00253{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.ma9_c00253{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.mc3_c00253{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m41_c00253{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m4a_c00253{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.md0_c00253{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.m9_c00253{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.mba_c00253{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m89_c00253{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.mc9_c00253{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mc1_c00253{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mc7_c00253{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m8d_c00253{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m54_c00253{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m56_c00253{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m22_c00253{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m5e_c00253{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.m59_c00253{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.mb7_c00253{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m6a_c00253{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.ma8_c00253{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mbb_c00253{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m16_c00253{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m7d_c00253{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m8b_c00253{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mda_c00253{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m95_c00253{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m65_c00253{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.mc4_c00253{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.me3_c00253{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mb0_c00253{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m3f_c00253{transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);}
.m1_c00253{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.me4_c00253{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m33_c00253{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.m5_c00253{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m76_c00253{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m88_c00253{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m40_c00253{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_c00253{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m1c_c00253{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mad_c00253{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m79_c00253{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m25_c00253{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m10_c00253{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m67_c00253{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m61_c00253{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m51_c00253{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m82_c00253{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m14_c00253{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.ma7_c00253{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m48_c00253{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m58_c00253{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m4c_c00253{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m2f_c00253{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m2b_c00253{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m49_c00253{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.me1_c00253{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m97_c00253{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m35_c00253{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mb_c00253{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m4d_c00253{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mb1_c00253{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m6b_c00253{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m55_c00253{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m2c_c00253{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m11_c00253{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m53_c00253{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m34_c00253{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.maa_c00253{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m87_c00253{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m27_c00253{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m12_c00253{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m5d_c00253{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.ma3_c00253{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m57_c00253{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m36_c00253{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m19_c00253{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m7f_c00253{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m66_c00253{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m39_c00253{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m60_c00253{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mc_c00253{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m99_c00253{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m3_c00253{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m9b_c00253{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.ma_c00253{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m5b_c00253{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m8c_c00253{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.me0_c00253{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.ma5_c00253{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);}
.m28_c00253{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.mf_c00253{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m9e_c00253{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mc0_c00253{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m18_c00253{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m71_c00253{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m85_c00253{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.mca_c00253{transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);}
.m13_c00253{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m80_c00253{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m68_c00253{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m7c_c00253{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m8a_c00253{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m90_c00253{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mc2_c00253{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.mcc_c00253{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m2e_c00253{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m2d_c00253{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m9d_c00253{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.mc5_c00253{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.me5_c00253{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m1d_c00253{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.md8_c00253{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m23_c00253{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.md1_c00253{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m4b_c00253{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m1a_c00253{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m2_c00253{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m26_c00253{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);}
.m15_c00253{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m70_c00253{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.mb2_c00253{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mdc_c00253{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m6f_c00253{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m17_c00253{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m6_c00253{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m0_c00253{transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);}
.mdf_c00253{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);}
.m84_c00253{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.mab_c00253{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m5c_c00253{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.md_c00253{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m20_c00253{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m7b_c00253{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m9a_c00253{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m4e_c00253{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m30_c00253{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m73_c00253{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m64_c00253{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m8f_c00253{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.ma2_c00253{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.me_c00253{transform:matrix(0.744118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.744118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.744118,0.000000,0.000000,0.250000,0,0);}
.m7_c00253{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m46_c00253{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m37_c00253{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.md7_c00253{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.me2_c00253{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m6c_c00253{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.mb9_c00253{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.m50_c00253{transform:matrix(0.793269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.793269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.793269,0.000000,0.000000,0.250000,0,0);}
.mbc_c00253{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m62_c00253{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m47_c00253{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m91_c00253{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m24_c00253{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m8_c00253{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.m78_c00253{transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);}
.m4f_c00253{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.mbd_c00253{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00253{vertical-align:0.000000px;}
.v1_c00253{vertical-align:12.000000px;}
.v2_c00253{vertical-align:18.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:-16.889280px;}
.ws4_c00253{word-spacing:-8.811328px;}
.ws1_c00253{word-spacing:-6.184625px;}
.ws2_c00253{word-spacing:-4.587627px;}
.ws3_c00253{word-spacing:-1.798813px;}
.ws5_c00253{word-spacing:0.000000px;}
._0_c00253{width:7.112451px;}
.fc0_c00253{color:transparent;}
.fs7_c00253{font-size:3.420000px;}
.fs8_c00253{font-size:11.880000px;}
.fs4_c00253{font-size:18.720000px;}
.fs0_c00253{font-size:20.400000px;}
.fs2_c00253{font-size:25.500000px;}
.fs1_c00253{font-size:28.920000px;}
.fs5_c00253{font-size:32.340000px;}
.fs3_c00253{font-size:35.700000px;}
.fs6_c00253{font-size:39.120000px;}
.y0_c00253{bottom:0.000000px;}
.ycf_c00253{bottom:250.905000px;}
.yd4_c00253{bottom:251.745000px;}
.yd2_c00253{bottom:253.245000px;}
.yce_c00253{bottom:253.905000px;}
.yd0_c00253{bottom:254.130000px;}
.yd3_c00253{bottom:254.970000px;}
.yd1_c00253{bottom:255.405000px;}
.ycd_c00253{bottom:271.245000px;}
.ycb_c00253{bottom:273.405000px;}
.ycc_c00253{bottom:273.630000px;}
.yc8_c00253{bottom:289.905000px;}
.yc6_c00253{bottom:290.745000px;}
.yc7_c00253{bottom:292.245000px;}
.yc5_c00253{bottom:292.905000px;}
.yc9_c00253{bottom:293.970000px;}
.yca_c00253{bottom:294.405000px;}
.yc1_c00253{bottom:310.245000px;}
.yc4_c00253{bottom:310.905000px;}
.yc0_c00253{bottom:311.745000px;}
.yc3_c00253{bottom:313.470000px;}
.ybf_c00253{bottom:313.905000px;}
.yc2_c00253{bottom:314.130000px;}
.ybe_c00253{bottom:331.245000px;}
.ybc_c00253{bottom:332.325000px;}
.ybb_c00253{bottom:332.970000px;}
.ybd_c00253{bottom:333.405000px;}
.yba_c00253{bottom:350.745000px;}
.yb9_c00253{bottom:351.180000px;}
.yb7_c00253{bottom:352.245000px;}
.yb6_c00253{bottom:352.905000px;}
.yb8_c00253{bottom:353.130000px;}
.yb5_c00253{bottom:368.775000px;}
.yb4_c00253{bottom:369.405000px;}
.yb1_c00253{bottom:370.245000px;}
.yb3_c00253{bottom:371.745000px;}
.yb2_c00253{bottom:372.405000px;}
.yac_c00253{bottom:390.825000px;}
.yae_c00253{bottom:391.245000px;}
.yab_c00253{bottom:391.905000px;}
.yb0_c00253{bottom:392.130000px;}
.yaf_c00253{bottom:392.970000px;}
.yad_c00253{bottom:393.405000px;}
.yaa_c00253{bottom:410.745000px;}
.ya8_c00253{bottom:412.905000px;}
.ya9_c00253{bottom:412.920000px;}
.ya6_c00253{bottom:429.405000px;}
.ya3_c00253{bottom:430.245000px;}
.ya4_c00253{bottom:431.130000px;}
.ya7_c00253{bottom:431.325000px;}
.ya5_c00253{bottom:432.405000px;}
.y9f_c00253{bottom:449.745000px;}
.ya0_c00253{bottom:449.970000px;}
.ya2_c00253{bottom:450.825000px;}
.y9e_c00253{bottom:451.470000px;}
.ya1_c00253{bottom:451.905000px;}
.y9c_c00253{bottom:468.405000px;}
.y9b_c00253{bottom:468.825000px;}
.y99_c00253{bottom:469.245000px;}
.y97_c00253{bottom:470.745000px;}
.y9d_c00253{bottom:470.970000px;}
.y96_c00253{bottom:471.405000px;}
.y9a_c00253{bottom:471.630000px;}
.y98_c00253{bottom:472.905000px;}
.y95_c00253{bottom:487.470000px;}
.y91_c00253{bottom:487.905000px;}
.y8d_c00253{bottom:488.745000px;}
.y94_c00253{bottom:488.970000px;}
.y8f_c00253{bottom:489.405000px;}
.y92_c00253{bottom:489.825000px;}
.y8e_c00253{bottom:490.245000px;}
.y8c_c00253{bottom:490.905000px;}
.y90_c00253{bottom:491.325000px;}
.y93_c00253{bottom:492.405000px;}
.y8a_c00253{bottom:508.245000px;}
.y8b_c00253{bottom:508.470000px;}
.y89_c00253{bottom:508.680000px;}
.y86_c00253{bottom:510.405000px;}
.y87_c00253{bottom:510.630000px;}
.y88_c00253{bottom:511.905000px;}
.y85_c00253{bottom:528.180000px;}
.y83_c00253{bottom:529.245000px;}
.y84_c00253{bottom:530.130000px;}
.y82_c00253{bottom:530.970000px;}
.y81_c00253{bottom:531.405000px;}
.y7f_c00253{bottom:548.745000px;}
.y80_c00253{bottom:550.905000px;}
.y7c_c00253{bottom:568.245000px;}
.y7e_c00253{bottom:569.130000px;}
.y7d_c00253{bottom:570.405000px;}
.y78_c00253{bottom:586.470000px;}
.y79_c00253{bottom:587.745000px;}
.y7a_c00253{bottom:589.905000px;}
.y7b_c00253{bottom:590.130000px;}
.y76_c00253{bottom:607.245000px;}
.y77_c00253{bottom:608.130000px;}
.y74_c00253{bottom:609.405000px;}
.y75_c00253{bottom:609.630000px;}
.y72_c00253{bottom:626.745000px;}
.y70_c00253{bottom:628.905000px;}
.y71_c00253{bottom:629.130000px;}
.y73_c00253{bottom:630.405000px;}
.y6b_c00253{bottom:645.405000px;}
.y6d_c00253{bottom:647.745000px;}
.y6a_c00253{bottom:648.405000px;}
.y6e_c00253{bottom:648.630000px;}
.y6f_c00253{bottom:648.825000px;}
.y6c_c00253{bottom:649.905000px;}
.y67_c00253{bottom:664.905000px;}
.y69_c00253{bottom:667.245000px;}
.y66_c00253{bottom:668.130000px;}
.y65_c00253{bottom:669.405000px;}
.y68_c00253{bottom:670.470000px;}
.y63_c00253{bottom:686.745000px;}
.y64_c00253{bottom:688.470000px;}
.y61_c00253{bottom:688.905000px;}
.y62_c00253{bottom:689.130000px;}
.y5f_c00253{bottom:705.405000px;}
.y5d_c00253{bottom:706.245000px;}
.y5c_c00253{bottom:708.405000px;}
.y5e_c00253{bottom:708.630000px;}
.y60_c00253{bottom:709.470000px;}
.y5b_c00253{bottom:724.905000px;}
.y5a_c00253{bottom:725.745000px;}
.y59_c00253{bottom:727.905000px;}
.y57_c00253{bottom:744.405000px;}
.y55_c00253{bottom:745.245000px;}
.y56_c00253{bottom:745.680000px;}
.y58_c00253{bottom:746.325000px;}
.y53_c00253{bottom:747.405000px;}
.y54_c00253{bottom:747.630000px;}
.y4d_c00253{bottom:763.905000px;}
.y51_c00253{bottom:764.970000px;}
.y4f_c00253{bottom:766.245000px;}
.y52_c00253{bottom:766.905000px;}
.y4e_c00253{bottom:767.130000px;}
.y50_c00253{bottom:768.405000px;}
.y4c_c00253{bottom:783.405000px;}
.y4a_c00253{bottom:785.745000px;}
.y4b_c00253{bottom:786.825000px;}
.y49_c00253{bottom:787.905000px;}
.y46_c00253{bottom:805.245000px;}
.y45_c00253{bottom:806.130000px;}
.y48_c00253{bottom:806.325000px;}
.y47_c00253{bottom:807.405000px;}
.y42_c00253{bottom:823.470000px;}
.y44_c00253{bottom:824.745000px;}
.y3f_c00253{bottom:825.405000px;}
.y41_c00253{bottom:826.470000px;}
.y40_c00253{bottom:826.905000px;}
.y43_c00253{bottom:827.130000px;}
.y3c_c00253{bottom:844.245000px;}
.y3b_c00253{bottom:846.405000px;}
.y3e_c00253{bottom:846.630000px;}
.y3d_c00253{bottom:847.905000px;}
.y3a_c00253{bottom:862.905000px;}
.y36_c00253{bottom:864.630000px;}
.y37_c00253{bottom:865.905000px;}
.y39_c00253{bottom:866.130000px;}
.y38_c00253{bottom:867.405000px;}
.y35_c00253{bottom:882.405000px;}
.y33_c00253{bottom:884.745000px;}
.y30_c00253{bottom:885.405000px;}
.y31_c00253{bottom:885.630000px;}
.y32_c00253{bottom:886.470000px;}
.y34_c00253{bottom:886.905000px;}
.y2e_c00253{bottom:904.245000px;}
.y2f_c00253{bottom:904.905000px;}
.y2d_c00253{bottom:905.130000px;}
.y2c_c00253{bottom:906.405000px;}
.y2a_c00253{bottom:921.405000px;}
.y27_c00253{bottom:923.745000px;}
.y26_c00253{bottom:924.405000px;}
.y29_c00253{bottom:924.630000px;}
.y2b_c00253{bottom:925.470000px;}
.y28_c00253{bottom:925.905000px;}
.y20_c00253{bottom:941.745000px;}
.y22_c00253{bottom:942.825000px;}
.y1f_c00253{bottom:943.245000px;}
.y24_c00253{bottom:944.130000px;}
.y25_c00253{bottom:944.325000px;}
.y21_c00253{bottom:945.405000px;}
.y23_c00253{bottom:945.630000px;}
.y1e_c00253{bottom:962.745000px;}
.y1b_c00253{bottom:964.905000px;}
.y1d_c00253{bottom:965.130000px;}
.y1c_c00253{bottom:965.970000px;}
.y1a_c00253{bottom:981.825000px;}
.y19_c00253{bottom:982.245000px;}
.y16_c00253{bottom:983.970000px;}
.y17_c00253{bottom:984.405000px;}
.y18_c00253{bottom:984.630000px;}
.y15_c00253{bottom:985.470000px;}
.y12_c00253{bottom:1001.745000px;}
.y14_c00253{bottom:1001.970000px;}
.y11_c00253{bottom:1003.905000px;}
.y13_c00253{bottom:1004.970000px;}
.yd_c00253{bottom:1021.245000px;}
.yf_c00253{bottom:1022.325000px;}
.yc_c00253{bottom:1023.405000px;}
.y10_c00253{bottom:1023.630000px;}
.ye_c00253{bottom:1024.470000px;}
.y9_c00253{bottom:1041.825000px;}
.y7_c00253{bottom:1042.050000px;}
.y8_c00253{bottom:1042.905000px;}
.yb_c00253{bottom:1043.970000px;}
.ya_c00253{bottom:1044.405000px;}
.y3_c00253{bottom:1058.970000px;}
.y5_c00253{bottom:1061.745000px;}
.y6_c00253{bottom:1062.630000px;}
.y4_c00253{bottom:1063.905000px;}
.y2_c00253{bottom:1099.905000px;}
.y1_c00253{bottom:1102.050000px;}
.ha_c00253{height:4.206533px;}
.hb_c00253{height:14.612168px;}
.h5_c00253{height:23.025234px;}
.h1_c00253{height:25.091602px;}
.h3_c00253{height:31.364502px;}
.h2_c00253{height:35.571035px;}
.h6_c00253{height:39.777568px;}
.h4_c00253{height:43.910303px;}
.h7_c00253{height:47.571035px;}
.h8_c00253{height:48.116836px;}
.h9_c00253{height:53.571035px;}
.h0_c00253{height:1335.000000px;}
.w0_c00253{width:880.500000px;}
.x0_c00253{left:0.000000px;}
.x2_c00253{left:149.580000px;}
.x10_c00253{left:151.500000px;}
.xb6_c00253{left:152.580000px;}
.x113_c00253{left:166.500000px;}
.x80_c00253{left:168.420000px;}
.x20_c00253{left:169.920000px;}
.xb1_c00253{left:172.080000px;}
.x97_c00253{left:174.000000px;}
.xe1_c00253{left:177.000000px;}
.x35_c00253{left:178.080000px;}
.x59_c00253{left:180.000000px;}
.x40_c00253{left:183.000000px;}
.xfd_c00253{left:184.500000px;}
.x3_c00253{left:187.500000px;}
.x11c_c00253{left:189.000000px;}
.x10b_c00253{left:190.500000px;}
.x100_c00253{left:192.420000px;}
.x21_c00253{left:196.500000px;}
.xa5_c00253{left:199.500000px;}
.xf0_c00253{left:200.580000px;}
.xc6_c00253{left:202.500000px;}
.x11_c00253{left:205.920000px;}
.x4e_c00253{left:207.420000px;}
.xd4_c00253{left:208.500000px;}
.x98_c00253{left:211.500000px;}
.xf2_c00253{left:212.580000px;}
.x36_c00253{left:216.000000px;}
.x65_c00253{left:217.500000px;}
.xbe_c00253{left:219.420000px;}
.xe6_c00253{left:220.500000px;}
.x41_c00253{left:221.580000px;}
.xb2_c00253{left:223.080000px;}
.x9f_c00253{left:226.920000px;}
.x2f_c00253{left:228.420000px;}
.xc7_c00253{left:229.920000px;}
.xf3_c00253{left:231.420000px;}
.x72_c00253{left:232.500000px;}
.xa6_c00253{left:234.420000px;}
.x4_c00253{left:235.500000px;}
.x81_c00253{left:238.920000px;}
.x22_c00253{left:240.000000px;}
.x12_c00253{left:241.500000px;}
.x8c_c00253{left:247.920000px;}
.x37_c00253{left:249.000000px;}
.xe7_c00253{left:250.080000px;}
.x5a_c00253{left:251.580000px;}
.x66_c00253{left:253.920000px;}
.xb3_c00253{left:257.580000px;}
.xd8_c00253{left:259.080000px;}
.xf1_c00253{left:261.000000px;}
.x99_c00253{left:262.500000px;}
.x4f_c00253{left:265.500000px;}
.x42_c00253{left:268.080000px;}
.x10c_c00253{left:270.000000px;}
.x5b_c00253{left:271.500000px;}
.x23_c00253{left:273.420000px;}
.xed_c00253{left:276.000000px;}
.x13_c00253{left:277.920000px;}
.x11d_c00253{left:279.420000px;}
.x8d_c00253{left:282.000000px;}
.xb7_c00253{left:283.500000px;}
.x5c_c00253{left:285.000000px;}
.x101_c00253{left:286.080000px;}
.x82_c00253{left:288.420000px;}
.x67_c00253{left:289.500000px;}
.xa7_c00253{left:291.000000px;}
.x73_c00253{left:292.500000px;}
.xe8_c00253{left:294.420000px;}
.xf5_c00253{left:297.000000px;}
.xc8_c00253{left:304.080000px;}
.x14_c00253{left:306.000000px;}
.x43_c00253{left:307.500000px;}
.xe2_c00253{left:309.000000px;}
.x5_c00253{left:310.080000px;}
.xee_c00253{left:313.500000px;}
.xce_c00253{left:315.000000px;}
.x50_c00253{left:316.500000px;}
.x11b_c00253{left:318.420000px;}
.x24_c00253{left:319.500000px;}
.x38_c00253{left:321.000000px;}
.x68_c00253{left:324.000000px;}
.x83_c00253{left:325.920000px;}
.xf9_c00253{left:328.500000px;}
.xf6_c00253{left:330.000000px;}
.x110_c00253{left:331.920000px;}
.x44_c00253{left:334.920000px;}
.x7a_c00253{left:336.420000px;}
.xbf_c00253{left:337.500000px;}
.x9a_c00253{left:339.000000px;}
.x69_c00253{left:340.920000px;}
.x5d_c00253{left:345.420000px;}
.x39_c00253{left:348.420000px;}
.x6_c00253{left:349.500000px;}
.x102_c00253{left:351.000000px;}
.x15_c00253{left:352.080000px;}
.xc0_c00253{left:357.420000px;}
.xc9_c00253{left:358.500000px;}
.xd9_c00253{left:359.580000px;}
.x30_c00253{left:362.580000px;}
.x74_c00253{left:364.500000px;}
.xb8_c00253{left:366.000000px;}
.x11e_c00253{left:369.000000px;}
.x7_c00253{left:370.500000px;}
.x25_c00253{left:373.080000px;}
.x51_c00253{left:376.080000px;}
.x84_c00253{left:379.920000px;}
.x5e_c00253{left:382.920000px;}
.x75_c00253{left:384.000000px;}
.x8_c00253{left:385.500000px;}
.xc1_c00253{left:386.580000px;}
.xda_c00253{left:388.500000px;}
.xcf_c00253{left:389.580000px;}
.x26_c00253{left:391.920000px;}
.x45_c00253{left:394.080000px;}
.xfa_c00253{left:396.000000px;}
.x76_c00253{left:397.500000px;}
.x16_c00253{left:399.420000px;}
.xa8_c00253{left:400.920000px;}
.x31_c00253{left:402.000000px;}
.x1_c00253{left:406.500000px;}
.x9b_c00253{left:408.000000px;}
.x6a_c00253{left:409.500000px;}
.xe3_c00253{left:415.920000px;}
.x8e_c00253{left:417.000000px;}
.x27_c00253{left:418.500000px;}
.x5f_c00253{left:420.420000px;}
.x52_c00253{left:421.500000px;}
.xd0_c00253{left:423.000000px;}
.xfe_c00253{left:424.920000px;}
.xc2_c00253{left:426.000000px;}
.xdb_c00253{left:427.500000px;}
.x7b_c00253{left:429.420000px;}
.xa9_c00253{left:430.500000px;}
.x46_c00253{left:435.000000px;}
.x8f_c00253{left:436.500000px;}
.x3a_c00253{left:438.420000px;}
.x6b_c00253{left:439.920000px;}
.x9_c00253{left:441.000000px;}
.x105_c00253{left:442.500000px;}
.x117_c00253{left:443.580000px;}
.x17_c00253{left:445.500000px;}
.xc3_c00253{left:447.420000px;}
.x85_c00253{left:448.500000px;}
.x77_c00253{left:450.000000px;}
.xe4_c00253{left:453.000000px;}
.x7c_c00253{left:456.420000px;}
.x28_c00253{left:459.000000px;}
.x53_c00253{left:460.500000px;}
.x90_c00253{left:462.420000px;}
.xb9_c00253{left:464.580000px;}
.x3b_c00253{left:466.080000px;}
.xd5_c00253{left:468.420000px;}
.x118_c00253{left:469.500000px;}
.x114_c00253{left:470.580000px;}
.x47_c00253{left:472.500000px;}
.x29_c00253{left:474.420000px;}
.x6c_c00253{left:475.500000px;}
.xdc_c00253{left:477.000000px;}
.xaa_c00253{left:478.080000px;}
.x18_c00253{left:479.580000px;}
.xa0_c00253{left:481.920000px;}
.xe9_c00253{left:483.000000px;}
.xa_c00253{left:484.080000px;}
.x48_c00253{left:486.420000px;}
.x11f_c00253{left:487.920000px;}
.xb4_c00253{left:492.420000px;}
.x54_c00253{left:493.920000px;}
.x60_c00253{left:495.000000px;}
.x78_c00253{left:496.500000px;}
.x19_c00253{left:498.420000px;}
.x9c_c00253{left:499.500000px;}
.xca_c00253{left:502.080000px;}
.x10d_c00253{left:504.000000px;}
.x91_c00253{left:507.000000px;}
.x6d_c00253{left:508.500000px;}
.xf7_c00253{left:510.420000px;}
.x2a_c00253{left:511.500000px;}
.x86_c00253{left:513.000000px;}
.x111_c00253{left:514.500000px;}
.x61_c00253{left:516.420000px;}
.xb_c00253{left:517.500000px;}
.xba_c00253{left:519.000000px;}
.xef_c00253{left:520.920000px;}
.x55_c00253{left:522.420000px;}
.x49_c00253{left:523.920000px;}
.x1a_c00253{left:525.420000px;}
.x6e_c00253{left:526.500000px;}
.xea_c00253{left:527.580000px;}
.x7d_c00253{left:529.500000px;}
.x2b_c00253{left:531.420000px;}
.xdd_c00253{left:532.500000px;}
.x87_c00253{left:535.920000px;}
.x112_c00253{left:538.920000px;}
.x79_c00253{left:541.500000px;}
.x3c_c00253{left:543.000000px;}
.x92_c00253{left:544.500000px;}
.x103_c00253{left:546.000000px;}
.xd1_c00253{left:547.500000px;}
.xa1_c00253{left:548.580000px;}
.xbb_c00253{left:550.080000px;}
.xf8_c00253{left:552.420000px;}
.x1b_c00253{left:553.500000px;}
.x10e_c00253{left:555.000000px;}
.x4a_c00253{left:556.500000px;}
.xff_c00253{left:558.000000px;}
.x56_c00253{left:561.000000px;}
.x88_c00253{left:562.500000px;}
.x6f_c00253{left:564.000000px;}
.xc_c00253{left:565.500000px;}
.x108_c00253{left:567.000000px;}
.x1c_c00253{left:568.500000px;}
.x32_c00253{left:570.000000px;}
.xf4_c00253{left:572.580000px;}
.xc4_c00253{left:574.500000px;}
.x3d_c00253{left:577.080000px;}
.xb5_c00253{left:582.420000px;}
.x70_c00253{left:583.920000px;}
.xeb_c00253{left:586.500000px;}
.xad_c00253{left:588.000000px;}
.xd6_c00253{left:589.920000px;}
.xcb_c00253{left:591.000000px;}
.x93_c00253{left:592.500000px;}
.x120_c00253{left:594.420000px;}
.x106_c00253{left:595.920000px;}
.x1d_c00253{left:597.420000px;}
.x3e_c00253{left:598.920000px;}
.x89_c00253{left:600.000000px;}
.xa2_c00253{left:601.500000px;}
.x4b_c00253{left:603.420000px;}
.xbc_c00253{left:605.580000px;}
.x7e_c00253{left:607.920000px;}
.x57_c00253{left:609.000000px;}
.x71_c00253{left:610.920000px;}
.xc5_c00253{left:615.000000px;}
.xae_c00253{left:619.500000px;}
.xcc_c00253{left:621.420000px;}
.x2c_c00253{left:622.500000px;}
.x94_c00253{left:623.580000px;}
.x3f_c00253{left:627.420000px;}
.x8a_c00253{left:628.500000px;}
.x10f_c00253{left:630.000000px;}
.x104_c00253{left:631.080000px;}
.xa3_c00253{left:633.000000px;}
.x62_c00253{left:634.500000px;}
.xaf_c00253{left:635.580000px;}
.xd_c00253{left:637.920000px;}
.x9d_c00253{left:640.080000px;}
.x4c_c00253{left:643.500000px;}
.x33_c00253{left:645.420000px;}
.xab_c00253{left:648.000000px;}
.xcd_c00253{left:649.500000px;}
.xbd_c00253{left:651.000000px;}
.x58_c00253{left:655.500000px;}
.x119_c00253{left:658.500000px;}
.x115_c00253{left:660.000000px;}
.x1e_c00253{left:661.920000px;}
.xde_c00253{left:666.000000px;}
.x95_c00253{left:667.500000px;}
.x63_c00253{left:669.000000px;}
.x4d_c00253{left:672.000000px;}
.x121_c00253{left:673.500000px;}
.x2d_c00253{left:675.000000px;}
.xd2_c00253{left:678.000000px;}
.x8b_c00253{left:679.500000px;}
.xdf_c00253{left:681.000000px;}
.x96_c00253{left:683.580000px;}
.xec_c00253{left:685.500000px;}
.xb0_c00253{left:687.420000px;}
.x7f_c00253{left:688.500000px;}
.xfb_c00253{left:689.580000px;}
.x109_c00253{left:691.080000px;}
.x107_c00253{left:692.580000px;}
.xd7_c00253{left:694.920000px;}
.x34_c00253{left:696.420000px;}
.xe_c00253{left:697.500000px;}
.x1f_c00253{left:699.420000px;}
.xe0_c00253{left:700.920000px;}
.x9e_c00253{left:702.000000px;}
.xa4_c00253{left:703.080000px;}
.xe5_c00253{left:704.580000px;}
.x64_c00253{left:706.920000px;}
.xfc_c00253{left:708.420000px;}
.x10a_c00253{left:709.920000px;}
.x2e_c00253{left:711.000000px;}
.xd3_c00253{left:712.080000px;}
.x116_c00253{left:715.080000px;}
.x11a_c00253{left:716.580000px;}
.xac_c00253{left:718.500000px;}
.xf_c00253{left:720.000000px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.v1_c00253{vertical-align:10.666667pt;}
.v2_c00253{vertical-align:16.000000pt;}
.ls0_c00253{letter-spacing:0.000000pt;}
.ws0_c00253{word-spacing:-15.012693pt;}
.ws4_c00253{word-spacing:-7.832291pt;}
.ws1_c00253{word-spacing:-5.497444pt;}
.ws2_c00253{word-spacing:-4.077890pt;}
.ws3_c00253{word-spacing:-1.598945pt;}
.ws5_c00253{word-spacing:0.000000pt;}
._0_c00253{width:6.322179pt;}
.fs7_c00253{font-size:3.040000pt;}
.fs8_c00253{font-size:10.560000pt;}
.fs4_c00253{font-size:16.640000pt;}
.fs0_c00253{font-size:18.133333pt;}
.fs2_c00253{font-size:22.666667pt;}
.fs1_c00253{font-size:25.706667pt;}
.fs5_c00253{font-size:28.746667pt;}
.fs3_c00253{font-size:31.733333pt;}
.fs6_c00253{font-size:34.773333pt;}
.y0_c00253{bottom:0.000000pt;}
.ycf_c00253{bottom:223.026667pt;}
.yd4_c00253{bottom:223.773333pt;}
.yd2_c00253{bottom:225.106667pt;}
.yce_c00253{bottom:225.693333pt;}
.yd0_c00253{bottom:225.893333pt;}
.yd3_c00253{bottom:226.640000pt;}
.yd1_c00253{bottom:227.026667pt;}
.ycd_c00253{bottom:241.106667pt;}
.ycb_c00253{bottom:243.026667pt;}
.ycc_c00253{bottom:243.226667pt;}
.yc8_c00253{bottom:257.693333pt;}
.yc6_c00253{bottom:258.440000pt;}
.yc7_c00253{bottom:259.773333pt;}
.yc5_c00253{bottom:260.360000pt;}
.yc9_c00253{bottom:261.306667pt;}
.yca_c00253{bottom:261.693333pt;}
.yc1_c00253{bottom:275.773333pt;}
.yc4_c00253{bottom:276.360000pt;}
.yc0_c00253{bottom:277.106667pt;}
.yc3_c00253{bottom:278.640000pt;}
.ybf_c00253{bottom:279.026667pt;}
.yc2_c00253{bottom:279.226667pt;}
.ybe_c00253{bottom:294.440000pt;}
.ybc_c00253{bottom:295.400000pt;}
.ybb_c00253{bottom:295.973333pt;}
.ybd_c00253{bottom:296.360000pt;}
.yba_c00253{bottom:311.773333pt;}
.yb9_c00253{bottom:312.160000pt;}
.yb7_c00253{bottom:313.106667pt;}
.yb6_c00253{bottom:313.693333pt;}
.yb8_c00253{bottom:313.893333pt;}
.yb5_c00253{bottom:327.800000pt;}
.yb4_c00253{bottom:328.360000pt;}
.yb1_c00253{bottom:329.106667pt;}
.yb3_c00253{bottom:330.440000pt;}
.yb2_c00253{bottom:331.026667pt;}
.yac_c00253{bottom:347.400000pt;}
.yae_c00253{bottom:347.773333pt;}
.yab_c00253{bottom:348.360000pt;}
.yb0_c00253{bottom:348.560000pt;}
.yaf_c00253{bottom:349.306667pt;}
.yad_c00253{bottom:349.693333pt;}
.yaa_c00253{bottom:365.106667pt;}
.ya8_c00253{bottom:367.026667pt;}
.ya9_c00253{bottom:367.040000pt;}
.ya6_c00253{bottom:381.693333pt;}
.ya3_c00253{bottom:382.440000pt;}
.ya4_c00253{bottom:383.226667pt;}
.ya7_c00253{bottom:383.400000pt;}
.ya5_c00253{bottom:384.360000pt;}
.y9f_c00253{bottom:399.773333pt;}
.ya0_c00253{bottom:399.973333pt;}
.ya2_c00253{bottom:400.733333pt;}
.y9e_c00253{bottom:401.306667pt;}
.ya1_c00253{bottom:401.693333pt;}
.y9c_c00253{bottom:416.360000pt;}
.y9b_c00253{bottom:416.733333pt;}
.y99_c00253{bottom:417.106667pt;}
.y97_c00253{bottom:418.440000pt;}
.y9d_c00253{bottom:418.640000pt;}
.y96_c00253{bottom:419.026667pt;}
.y9a_c00253{bottom:419.226667pt;}
.y98_c00253{bottom:420.360000pt;}
.y95_c00253{bottom:433.306667pt;}
.y91_c00253{bottom:433.693333pt;}
.y8d_c00253{bottom:434.440000pt;}
.y94_c00253{bottom:434.640000pt;}
.y8f_c00253{bottom:435.026667pt;}
.y92_c00253{bottom:435.400000pt;}
.y8e_c00253{bottom:435.773333pt;}
.y8c_c00253{bottom:436.360000pt;}
.y90_c00253{bottom:436.733333pt;}
.y93_c00253{bottom:437.693333pt;}
.y8a_c00253{bottom:451.773333pt;}
.y8b_c00253{bottom:451.973333pt;}
.y89_c00253{bottom:452.160000pt;}
.y86_c00253{bottom:453.693333pt;}
.y87_c00253{bottom:453.893333pt;}
.y88_c00253{bottom:455.026667pt;}
.y85_c00253{bottom:469.493333pt;}
.y83_c00253{bottom:470.440000pt;}
.y84_c00253{bottom:471.226667pt;}
.y82_c00253{bottom:471.973333pt;}
.y81_c00253{bottom:472.360000pt;}
.y7f_c00253{bottom:487.773333pt;}
.y80_c00253{bottom:489.693333pt;}
.y7c_c00253{bottom:505.106667pt;}
.y7e_c00253{bottom:505.893333pt;}
.y7d_c00253{bottom:507.026667pt;}
.y78_c00253{bottom:521.306667pt;}
.y79_c00253{bottom:522.440000pt;}
.y7a_c00253{bottom:524.360000pt;}
.y7b_c00253{bottom:524.560000pt;}
.y76_c00253{bottom:539.773333pt;}
.y77_c00253{bottom:540.560000pt;}
.y74_c00253{bottom:541.693333pt;}
.y75_c00253{bottom:541.893333pt;}
.y72_c00253{bottom:557.106667pt;}
.y70_c00253{bottom:559.026667pt;}
.y71_c00253{bottom:559.226667pt;}
.y73_c00253{bottom:560.360000pt;}
.y6b_c00253{bottom:573.693333pt;}
.y6d_c00253{bottom:575.773333pt;}
.y6a_c00253{bottom:576.360000pt;}
.y6e_c00253{bottom:576.560000pt;}
.y6f_c00253{bottom:576.733333pt;}
.y6c_c00253{bottom:577.693333pt;}
.y67_c00253{bottom:591.026667pt;}
.y69_c00253{bottom:593.106667pt;}
.y66_c00253{bottom:593.893333pt;}
.y65_c00253{bottom:595.026667pt;}
.y68_c00253{bottom:595.973333pt;}
.y63_c00253{bottom:610.440000pt;}
.y64_c00253{bottom:611.973333pt;}
.y61_c00253{bottom:612.360000pt;}
.y62_c00253{bottom:612.560000pt;}
.y5f_c00253{bottom:627.026667pt;}
.y5d_c00253{bottom:627.773333pt;}
.y5c_c00253{bottom:629.693333pt;}
.y5e_c00253{bottom:629.893333pt;}
.y60_c00253{bottom:630.640000pt;}
.y5b_c00253{bottom:644.360000pt;}
.y5a_c00253{bottom:645.106667pt;}
.y59_c00253{bottom:647.026667pt;}
.y57_c00253{bottom:661.693333pt;}
.y55_c00253{bottom:662.440000pt;}
.y56_c00253{bottom:662.826667pt;}
.y58_c00253{bottom:663.400000pt;}
.y53_c00253{bottom:664.360000pt;}
.y54_c00253{bottom:664.560000pt;}
.y4d_c00253{bottom:679.026667pt;}
.y51_c00253{bottom:679.973333pt;}
.y4f_c00253{bottom:681.106667pt;}
.y52_c00253{bottom:681.693333pt;}
.y4e_c00253{bottom:681.893333pt;}
.y50_c00253{bottom:683.026667pt;}
.y4c_c00253{bottom:696.360000pt;}
.y4a_c00253{bottom:698.440000pt;}
.y4b_c00253{bottom:699.400000pt;}
.y49_c00253{bottom:700.360000pt;}
.y46_c00253{bottom:715.773333pt;}
.y45_c00253{bottom:716.560000pt;}
.y48_c00253{bottom:716.733333pt;}
.y47_c00253{bottom:717.693333pt;}
.y42_c00253{bottom:731.973333pt;}
.y44_c00253{bottom:733.106667pt;}
.y3f_c00253{bottom:733.693333pt;}
.y41_c00253{bottom:734.640000pt;}
.y40_c00253{bottom:735.026667pt;}
.y43_c00253{bottom:735.226667pt;}
.y3c_c00253{bottom:750.440000pt;}
.y3b_c00253{bottom:752.360000pt;}
.y3e_c00253{bottom:752.560000pt;}
.y3d_c00253{bottom:753.693333pt;}
.y3a_c00253{bottom:767.026667pt;}
.y36_c00253{bottom:768.560000pt;}
.y37_c00253{bottom:769.693333pt;}
.y39_c00253{bottom:769.893333pt;}
.y38_c00253{bottom:771.026667pt;}
.y35_c00253{bottom:784.360000pt;}
.y33_c00253{bottom:786.440000pt;}
.y30_c00253{bottom:787.026667pt;}
.y31_c00253{bottom:787.226667pt;}
.y32_c00253{bottom:787.973333pt;}
.y34_c00253{bottom:788.360000pt;}
.y2e_c00253{bottom:803.773333pt;}
.y2f_c00253{bottom:804.360000pt;}
.y2d_c00253{bottom:804.560000pt;}
.y2c_c00253{bottom:805.693333pt;}
.y2a_c00253{bottom:819.026667pt;}
.y27_c00253{bottom:821.106667pt;}
.y26_c00253{bottom:821.693333pt;}
.y29_c00253{bottom:821.893333pt;}
.y2b_c00253{bottom:822.640000pt;}
.y28_c00253{bottom:823.026667pt;}
.y20_c00253{bottom:837.106667pt;}
.y22_c00253{bottom:838.066667pt;}
.y1f_c00253{bottom:838.440000pt;}
.y24_c00253{bottom:839.226667pt;}
.y25_c00253{bottom:839.400000pt;}
.y21_c00253{bottom:840.360000pt;}
.y23_c00253{bottom:840.560000pt;}
.y1e_c00253{bottom:855.773333pt;}
.y1b_c00253{bottom:857.693333pt;}
.y1d_c00253{bottom:857.893333pt;}
.y1c_c00253{bottom:858.640000pt;}
.y1a_c00253{bottom:872.733333pt;}
.y19_c00253{bottom:873.106667pt;}
.y16_c00253{bottom:874.640000pt;}
.y17_c00253{bottom:875.026667pt;}
.y18_c00253{bottom:875.226667pt;}
.y15_c00253{bottom:875.973333pt;}
.y12_c00253{bottom:890.440000pt;}
.y14_c00253{bottom:890.640000pt;}
.y11_c00253{bottom:892.360000pt;}
.y13_c00253{bottom:893.306667pt;}
.yd_c00253{bottom:907.773333pt;}
.yf_c00253{bottom:908.733333pt;}
.yc_c00253{bottom:909.693333pt;}
.y10_c00253{bottom:909.893333pt;}
.ye_c00253{bottom:910.640000pt;}
.y9_c00253{bottom:926.066667pt;}
.y7_c00253{bottom:926.266667pt;}
.y8_c00253{bottom:927.026667pt;}
.yb_c00253{bottom:927.973333pt;}
.ya_c00253{bottom:928.360000pt;}
.y3_c00253{bottom:941.306667pt;}
.y5_c00253{bottom:943.773333pt;}
.y6_c00253{bottom:944.560000pt;}
.y4_c00253{bottom:945.693333pt;}
.y2_c00253{bottom:977.693333pt;}
.y1_c00253{bottom:979.600000pt;}
.ha_c00253{height:3.739141pt;}
.hb_c00253{height:12.988594pt;}
.h5_c00253{height:20.466875pt;}
.h1_c00253{height:22.303646pt;}
.h3_c00253{height:27.879557pt;}
.h2_c00253{height:31.618698pt;}
.h6_c00253{height:35.357839pt;}
.h4_c00253{height:39.031380pt;}
.h7_c00253{height:42.285365pt;}
.h8_c00253{height:42.770521pt;}
.h9_c00253{height:47.618698pt;}
.h0_c00253{height:1186.666667pt;}
.w0_c00253{width:782.666667pt;}
.x0_c00253{left:0.000000pt;}
.x2_c00253{left:132.960000pt;}
.x10_c00253{left:134.666667pt;}
.xb6_c00253{left:135.626667pt;}
.x113_c00253{left:148.000000pt;}
.x80_c00253{left:149.706667pt;}
.x20_c00253{left:151.040000pt;}
.xb1_c00253{left:152.960000pt;}
.x97_c00253{left:154.666667pt;}
.xe1_c00253{left:157.333333pt;}
.x35_c00253{left:158.293333pt;}
.x59_c00253{left:160.000000pt;}
.x40_c00253{left:162.666667pt;}
.xfd_c00253{left:164.000000pt;}
.x3_c00253{left:166.666667pt;}
.x11c_c00253{left:168.000000pt;}
.x10b_c00253{left:169.333333pt;}
.x100_c00253{left:171.040000pt;}
.x21_c00253{left:174.666667pt;}
.xa5_c00253{left:177.333333pt;}
.xf0_c00253{left:178.293333pt;}
.xc6_c00253{left:180.000000pt;}
.x11_c00253{left:183.040000pt;}
.x4e_c00253{left:184.373333pt;}
.xd4_c00253{left:185.333333pt;}
.x98_c00253{left:188.000000pt;}
.xf2_c00253{left:188.960000pt;}
.x36_c00253{left:192.000000pt;}
.x65_c00253{left:193.333333pt;}
.xbe_c00253{left:195.040000pt;}
.xe6_c00253{left:196.000000pt;}
.x41_c00253{left:196.960000pt;}
.xb2_c00253{left:198.293333pt;}
.x9f_c00253{left:201.706667pt;}
.x2f_c00253{left:203.040000pt;}
.xc7_c00253{left:204.373333pt;}
.xf3_c00253{left:205.706667pt;}
.x72_c00253{left:206.666667pt;}
.xa6_c00253{left:208.373333pt;}
.x4_c00253{left:209.333333pt;}
.x81_c00253{left:212.373333pt;}
.x22_c00253{left:213.333333pt;}
.x12_c00253{left:214.666667pt;}
.x8c_c00253{left:220.373333pt;}
.x37_c00253{left:221.333333pt;}
.xe7_c00253{left:222.293333pt;}
.x5a_c00253{left:223.626667pt;}
.x66_c00253{left:225.706667pt;}
.xb3_c00253{left:228.960000pt;}
.xd8_c00253{left:230.293333pt;}
.xf1_c00253{left:232.000000pt;}
.x99_c00253{left:233.333333pt;}
.x4f_c00253{left:236.000000pt;}
.x42_c00253{left:238.293333pt;}
.x10c_c00253{left:240.000000pt;}
.x5b_c00253{left:241.333333pt;}
.x23_c00253{left:243.040000pt;}
.xed_c00253{left:245.333333pt;}
.x13_c00253{left:247.040000pt;}
.x11d_c00253{left:248.373333pt;}
.x8d_c00253{left:250.666667pt;}
.xb7_c00253{left:252.000000pt;}
.x5c_c00253{left:253.333333pt;}
.x101_c00253{left:254.293333pt;}
.x82_c00253{left:256.373333pt;}
.x67_c00253{left:257.333333pt;}
.xa7_c00253{left:258.666667pt;}
.x73_c00253{left:260.000000pt;}
.xe8_c00253{left:261.706667pt;}
.xf5_c00253{left:264.000000pt;}
.xc8_c00253{left:270.293333pt;}
.x14_c00253{left:272.000000pt;}
.x43_c00253{left:273.333333pt;}
.xe2_c00253{left:274.666667pt;}
.x5_c00253{left:275.626667pt;}
.xee_c00253{left:278.666667pt;}
.xce_c00253{left:280.000000pt;}
.x50_c00253{left:281.333333pt;}
.x11b_c00253{left:283.040000pt;}
.x24_c00253{left:284.000000pt;}
.x38_c00253{left:285.333333pt;}
.x68_c00253{left:288.000000pt;}
.x83_c00253{left:289.706667pt;}
.xf9_c00253{left:292.000000pt;}
.xf6_c00253{left:293.333333pt;}
.x110_c00253{left:295.040000pt;}
.x44_c00253{left:297.706667pt;}
.x7a_c00253{left:299.040000pt;}
.xbf_c00253{left:300.000000pt;}
.x9a_c00253{left:301.333333pt;}
.x69_c00253{left:303.040000pt;}
.x5d_c00253{left:307.040000pt;}
.x39_c00253{left:309.706667pt;}
.x6_c00253{left:310.666667pt;}
.x102_c00253{left:312.000000pt;}
.x15_c00253{left:312.960000pt;}
.xc0_c00253{left:317.706667pt;}
.xc9_c00253{left:318.666667pt;}
.xd9_c00253{left:319.626667pt;}
.x30_c00253{left:322.293333pt;}
.x74_c00253{left:324.000000pt;}
.xb8_c00253{left:325.333333pt;}
.x11e_c00253{left:328.000000pt;}
.x7_c00253{left:329.333333pt;}
.x25_c00253{left:331.626667pt;}
.x51_c00253{left:334.293333pt;}
.x84_c00253{left:337.706667pt;}
.x5e_c00253{left:340.373333pt;}
.x75_c00253{left:341.333333pt;}
.x8_c00253{left:342.666667pt;}
.xc1_c00253{left:343.626667pt;}
.xda_c00253{left:345.333333pt;}
.xcf_c00253{left:346.293333pt;}
.x26_c00253{left:348.373333pt;}
.x45_c00253{left:350.293333pt;}
.xfa_c00253{left:352.000000pt;}
.x76_c00253{left:353.333333pt;}
.x16_c00253{left:355.040000pt;}
.xa8_c00253{left:356.373333pt;}
.x31_c00253{left:357.333333pt;}
.x1_c00253{left:361.333333pt;}
.x9b_c00253{left:362.666667pt;}
.x6a_c00253{left:364.000000pt;}
.xe3_c00253{left:369.706667pt;}
.x8e_c00253{left:370.666667pt;}
.x27_c00253{left:372.000000pt;}
.x5f_c00253{left:373.706667pt;}
.x52_c00253{left:374.666667pt;}
.xd0_c00253{left:376.000000pt;}
.xfe_c00253{left:377.706667pt;}
.xc2_c00253{left:378.666667pt;}
.xdb_c00253{left:380.000000pt;}
.x7b_c00253{left:381.706667pt;}
.xa9_c00253{left:382.666667pt;}
.x46_c00253{left:386.666667pt;}
.x8f_c00253{left:388.000000pt;}
.x3a_c00253{left:389.706667pt;}
.x6b_c00253{left:391.040000pt;}
.x9_c00253{left:392.000000pt;}
.x105_c00253{left:393.333333pt;}
.x117_c00253{left:394.293333pt;}
.x17_c00253{left:396.000000pt;}
.xc3_c00253{left:397.706667pt;}
.x85_c00253{left:398.666667pt;}
.x77_c00253{left:400.000000pt;}
.xe4_c00253{left:402.666667pt;}
.x7c_c00253{left:405.706667pt;}
.x28_c00253{left:408.000000pt;}
.x53_c00253{left:409.333333pt;}
.x90_c00253{left:411.040000pt;}
.xb9_c00253{left:412.960000pt;}
.x3b_c00253{left:414.293333pt;}
.xd5_c00253{left:416.373333pt;}
.x118_c00253{left:417.333333pt;}
.x114_c00253{left:418.293333pt;}
.x47_c00253{left:420.000000pt;}
.x29_c00253{left:421.706667pt;}
.x6c_c00253{left:422.666667pt;}
.xdc_c00253{left:424.000000pt;}
.xaa_c00253{left:424.960000pt;}
.x18_c00253{left:426.293333pt;}
.xa0_c00253{left:428.373333pt;}
.xe9_c00253{left:429.333333pt;}
.xa_c00253{left:430.293333pt;}
.x48_c00253{left:432.373333pt;}
.x11f_c00253{left:433.706667pt;}
.xb4_c00253{left:437.706667pt;}
.x54_c00253{left:439.040000pt;}
.x60_c00253{left:440.000000pt;}
.x78_c00253{left:441.333333pt;}
.x19_c00253{left:443.040000pt;}
.x9c_c00253{left:444.000000pt;}
.xca_c00253{left:446.293333pt;}
.x10d_c00253{left:448.000000pt;}
.x91_c00253{left:450.666667pt;}
.x6d_c00253{left:452.000000pt;}
.xf7_c00253{left:453.706667pt;}
.x2a_c00253{left:454.666667pt;}
.x86_c00253{left:456.000000pt;}
.x111_c00253{left:457.333333pt;}
.x61_c00253{left:459.040000pt;}
.xb_c00253{left:460.000000pt;}
.xba_c00253{left:461.333333pt;}
.xef_c00253{left:463.040000pt;}
.x55_c00253{left:464.373333pt;}
.x49_c00253{left:465.706667pt;}
.x1a_c00253{left:467.040000pt;}
.x6e_c00253{left:468.000000pt;}
.xea_c00253{left:468.960000pt;}
.x7d_c00253{left:470.666667pt;}
.x2b_c00253{left:472.373333pt;}
.xdd_c00253{left:473.333333pt;}
.x87_c00253{left:476.373333pt;}
.x112_c00253{left:479.040000pt;}
.x79_c00253{left:481.333333pt;}
.x3c_c00253{left:482.666667pt;}
.x92_c00253{left:484.000000pt;}
.x103_c00253{left:485.333333pt;}
.xd1_c00253{left:486.666667pt;}
.xa1_c00253{left:487.626667pt;}
.xbb_c00253{left:488.960000pt;}
.xf8_c00253{left:491.040000pt;}
.x1b_c00253{left:492.000000pt;}
.x10e_c00253{left:493.333333pt;}
.x4a_c00253{left:494.666667pt;}
.xff_c00253{left:496.000000pt;}
.x56_c00253{left:498.666667pt;}
.x88_c00253{left:500.000000pt;}
.x6f_c00253{left:501.333333pt;}
.xc_c00253{left:502.666667pt;}
.x108_c00253{left:504.000000pt;}
.x1c_c00253{left:505.333333pt;}
.x32_c00253{left:506.666667pt;}
.xf4_c00253{left:508.960000pt;}
.xc4_c00253{left:510.666667pt;}
.x3d_c00253{left:512.960000pt;}
.xb5_c00253{left:517.706667pt;}
.x70_c00253{left:519.040000pt;}
.xeb_c00253{left:521.333333pt;}
.xad_c00253{left:522.666667pt;}
.xd6_c00253{left:524.373333pt;}
.xcb_c00253{left:525.333333pt;}
.x93_c00253{left:526.666667pt;}
.x120_c00253{left:528.373333pt;}
.x106_c00253{left:529.706667pt;}
.x1d_c00253{left:531.040000pt;}
.x3e_c00253{left:532.373333pt;}
.x89_c00253{left:533.333333pt;}
.xa2_c00253{left:534.666667pt;}
.x4b_c00253{left:536.373333pt;}
.xbc_c00253{left:538.293333pt;}
.x7e_c00253{left:540.373333pt;}
.x57_c00253{left:541.333333pt;}
.x71_c00253{left:543.040000pt;}
.xc5_c00253{left:546.666667pt;}
.xae_c00253{left:550.666667pt;}
.xcc_c00253{left:552.373333pt;}
.x2c_c00253{left:553.333333pt;}
.x94_c00253{left:554.293333pt;}
.x3f_c00253{left:557.706667pt;}
.x8a_c00253{left:558.666667pt;}
.x10f_c00253{left:560.000000pt;}
.x104_c00253{left:560.960000pt;}
.xa3_c00253{left:562.666667pt;}
.x62_c00253{left:564.000000pt;}
.xaf_c00253{left:564.960000pt;}
.xd_c00253{left:567.040000pt;}
.x9d_c00253{left:568.960000pt;}
.x4c_c00253{left:572.000000pt;}
.x33_c00253{left:573.706667pt;}
.xab_c00253{left:576.000000pt;}
.xcd_c00253{left:577.333333pt;}
.xbd_c00253{left:578.666667pt;}
.x58_c00253{left:582.666667pt;}
.x119_c00253{left:585.333333pt;}
.x115_c00253{left:586.666667pt;}
.x1e_c00253{left:588.373333pt;}
.xde_c00253{left:592.000000pt;}
.x95_c00253{left:593.333333pt;}
.x63_c00253{left:594.666667pt;}
.x4d_c00253{left:597.333333pt;}
.x121_c00253{left:598.666667pt;}
.x2d_c00253{left:600.000000pt;}
.xd2_c00253{left:602.666667pt;}
.x8b_c00253{left:604.000000pt;}
.xdf_c00253{left:605.333333pt;}
.x96_c00253{left:607.626667pt;}
.xec_c00253{left:609.333333pt;}
.xb0_c00253{left:611.040000pt;}
.x7f_c00253{left:612.000000pt;}
.xfb_c00253{left:612.960000pt;}
.x109_c00253{left:614.293333pt;}
.x107_c00253{left:615.626667pt;}
.xd7_c00253{left:617.706667pt;}
.x34_c00253{left:619.040000pt;}
.xe_c00253{left:620.000000pt;}
.x1f_c00253{left:621.706667pt;}
.xe0_c00253{left:623.040000pt;}
.x9e_c00253{left:624.000000pt;}
.xa4_c00253{left:624.960000pt;}
.xe5_c00253{left:626.293333pt;}
.x64_c00253{left:628.373333pt;}
.xfc_c00253{left:629.706667pt;}
.x10a_c00253{left:631.040000pt;}
.x2e_c00253{left:632.000000pt;}
.xd3_c00253{left:632.960000pt;}
.x116_c00253{left:635.626667pt;}
.x11a_c00253{left:636.960000pt;}
.xac_c00253{left:638.666667pt;}
.xf_c00253{left:640.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_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_58b4244f148103a56d3b9a18.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mbe_c00254{transform:matrix(0.333206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333206,0.000000,0.000000,0.250000,0,0);}
.mc9_c00254{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.mb2_c00254{transform:matrix(0.336273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336273,0.000000,0.000000,0.250000,0,0);}
.mc1_c00254{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.m4e_c00254{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.ma2_c00254{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m67_c00254{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m28_c00254{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m49_c00254{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m3e_c00254{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.ma4_c00254{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m7a_c00254{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m42_c00254{transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);}
.m5e_c00254{transform:matrix(0.381513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381513,0.000000,0.000000,0.250000,0,0);}
.m60_c00254{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m93_c00254{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.md7_c00254{transform:matrix(0.384874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384874,0.000000,0.000000,0.250000,0,0);}
.m4b_c00254{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m40_c00254{transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);}
.m6f_c00254{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m3_c00254{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m69_c00254{transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);}
.m39_c00254{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m65_c00254{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.mb1_c00254{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m7f_c00254{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mc5_c00254{transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);}
.m63_c00254{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m38_c00254{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m27_c00254{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m99_c00254{transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);}
.m3b_c00254{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m34_c00254{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m80_c00254{transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);}
.m24_c00254{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m72_c00254{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.mcc_c00254{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.m7_c00254{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.mab_c00254{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.ma7_c00254{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m7c_c00254{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m79_c00254{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m9d_c00254{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m77_c00254{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m6b_c00254{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m51_c00254{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m21_c00254{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.md0_c00254{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m66_c00254{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m46_c00254{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m16_c00254{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m89_c00254{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.ma5_c00254{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m83_c00254{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m78_c00254{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m9c_c00254{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mba_c00254{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m9f_c00254{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m56_c00254{transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);}
.m95_c00254{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.mb8_c00254{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.md9_c00254{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.mbd_c00254{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m64_c00254{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.md2_c00254{transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);}
.mc0_c00254{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m2_c00254{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m98_c00254{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m3c_c00254{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.mb5_c00254{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m33_c00254{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m52_c00254{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m59_c00254{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.mcb_c00254{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.mb3_c00254{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mb9_c00254{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m7e_c00254{transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);}
.m47_c00254{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.mda_c00254{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m4_c00254{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mb7_c00254{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m6_c00254{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m9a_c00254{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m73_c00254{transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);}
.m22_c00254{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.mae_c00254{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m41_c00254{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.mc2_c00254{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.m11_c00254{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m29_c00254{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m7d_c00254{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m1f_c00254{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m8c_c00254{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m15_c00254{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m23_c00254{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m62_c00254{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m45_c00254{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m1_c00254{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mce_c00254{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mad_c00254{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m74_c00254{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m2d_c00254{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_c00254{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mc_c00254{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m70_c00254{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m8a_c00254{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m76_c00254{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m26_c00254{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mbf_c00254{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.me0_c00254{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m90_c00254{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.mc7_c00254{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mc4_c00254{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m3d_c00254{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m75_c00254{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m82_c00254{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mb_c00254{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m8b_c00254{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m48_c00254{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m18_c00254{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m10_c00254{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m61_c00254{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m2b_c00254{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m1d_c00254{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mf_c00254{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mbc_c00254{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m91_c00254{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m87_c00254{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m2f_c00254{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m5c_c00254{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mc3_c00254{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m68_c00254{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m12_c00254{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m43_c00254{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m96_c00254{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m50_c00254{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m8d_c00254{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.maa_c00254{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m5a_c00254{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.me_c00254{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.mdd_c00254{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m4f_c00254{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m58_c00254{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m8e_c00254{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mac_c00254{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m32_c00254{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.ma1_c00254{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m5_c00254{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m25_c00254{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m5f_c00254{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mb4_c00254{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m14_c00254{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m6e_c00254{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m19_c00254{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m1c_c00254{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mde_c00254{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.ma6_c00254{transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);}
.m97_c00254{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mdf_c00254{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m44_c00254{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m88_c00254{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m4a_c00254{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.ma_c00254{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.md_c00254{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m71_c00254{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.md4_c00254{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.maf_c00254{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.mb0_c00254{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m84_c00254{transform:matrix(0.570965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570965,0.000000,0.000000,0.250000,0,0);}
.m4c_c00254{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m85_c00254{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m54_c00254{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m8f_c00254{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m2e_c00254{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.md5_c00254{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.ma3_c00254{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.ma8_c00254{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m9_c00254{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m5d_c00254{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m86_c00254{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m2c_c00254{transform:matrix(0.586618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586618,0.000000,0.000000,0.250000,0,0);}
.m55_c00254{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.m5b_c00254{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m20_c00254{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m35_c00254{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.mca_c00254{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m7b_c00254{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.ma9_c00254{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.m3f_c00254{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mbb_c00254{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m0_c00254{transform:matrix(0.606618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606618,0.000000,0.000000,0.250000,0,0);}
.m4d_c00254{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mb6_c00254{transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);}
.m1b_c00254{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m36_c00254{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m3a_c00254{transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);}
.md8_c00254{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_c00254{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m8_c00254{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m1e_c00254{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m57_c00254{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m94_c00254{transform:matrix(0.657051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657051,0.000000,0.000000,0.250000,0,0);}
.md1_c00254{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m6c_c00254{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m17_c00254{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mdb_c00254{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.ma0_c00254{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m6d_c00254{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m31_c00254{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.mdc_c00254{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m13_c00254{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.md3_c00254{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m6a_c00254{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.md6_c00254{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m53_c00254{transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);}
.m2a_c00254{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mcf_c00254{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m9b_c00254{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m9e_c00254{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m81_c00254{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.mc6_c00254{transform:matrix(0.781765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.781765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.781765,0.000000,0.000000,0.250000,0,0);}
.mc8_c00254{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m1a_c00254{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m92_c00254{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mcd_c00254{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.v1_c00254{vertical-align:-12.000000px;}
.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:-4.530080px;}
.ws2_c00254{word-spacing:0.000000px;}
.ws1_c00254{word-spacing:0.988317px;}
.fc0_c00254{color:transparent;}
.fs4_c00254{font-size:18.720000px;}
.fs0_c00254{font-size:20.400000px;}
.fs3_c00254{font-size:25.500000px;}
.fs1_c00254{font-size:28.920000px;}
.fs5_c00254{font-size:32.340000px;}
.fs2_c00254{font-size:35.700000px;}
.fs6_c00254{font-size:39.120000px;}
.y0_c00254{bottom:0.000000px;}
.yc1_c00254{bottom:233.745000px;}
.yc2_c00254{bottom:235.905000px;}
.ybd_c00254{bottom:253.245000px;}
.yc0_c00254{bottom:254.130000px;}
.ybc_c00254{bottom:254.550000px;}
.ybe_c00254{bottom:255.405000px;}
.ybf_c00254{bottom:256.905000px;}
.ybb_c00254{bottom:271.905000px;}
.yb8_c00254{bottom:274.245000px;}
.yb7_c00254{bottom:274.470000px;}
.yb9_c00254{bottom:274.905000px;}
.yba_c00254{bottom:275.130000px;}
.yb6_c00254{bottom:276.405000px;}
.yb2_c00254{bottom:291.405000px;}
.yb3_c00254{bottom:293.745000px;}
.yb4_c00254{bottom:294.630000px;}
.yb5_c00254{bottom:295.470000px;}
.yb1_c00254{bottom:295.905000px;}
.yad_c00254{bottom:311.970000px;}
.yb0_c00254{bottom:312.405000px;}
.yab_c00254{bottom:313.245000px;}
.yaf_c00254{bottom:314.130000px;}
.yae_c00254{bottom:314.970000px;}
.yac_c00254{bottom:315.405000px;}
.ya9_c00254{bottom:332.325000px;}
.ya7_c00254{bottom:332.745000px;}
.yaa_c00254{bottom:333.630000px;}
.ya8_c00254{bottom:334.470000px;}
.ya6_c00254{bottom:334.905000px;}
.ya3_c00254{bottom:352.245000px;}
.ya5_c00254{bottom:353.970000px;}
.ya4_c00254{bottom:354.405000px;}
.y9f_c00254{bottom:370.905000px;}
.y9d_c00254{bottom:371.745000px;}
.y9c_c00254{bottom:373.470000px;}
.y9e_c00254{bottom:373.905000px;}
.ya0_c00254{bottom:374.130000px;}
.ya1_c00254{bottom:374.970000px;}
.ya2_c00254{bottom:375.405000px;}
.y97_c00254{bottom:391.245000px;}
.y99_c00254{bottom:392.745000px;}
.y98_c00254{bottom:393.405000px;}
.y9a_c00254{bottom:393.630000px;}
.y9b_c00254{bottom:394.905000px;}
.y94_c00254{bottom:409.905000px;}
.y93_c00254{bottom:412.905000px;}
.y96_c00254{bottom:413.130000px;}
.y95_c00254{bottom:413.970000px;}
.y92_c00254{bottom:414.405000px;}
.y91_c00254{bottom:430.245000px;}
.y90_c00254{bottom:431.745000px;}
.y8f_c00254{bottom:433.905000px;}
.y8e_c00254{bottom:451.245000px;}
.y8d_c00254{bottom:453.405000px;}
.y8c_c00254{bottom:470.745000px;}
.y88_c00254{bottom:489.180000px;}
.y87_c00254{bottom:489.405000px;}
.y8a_c00254{bottom:490.245000px;}
.y89_c00254{bottom:492.405000px;}
.y8b_c00254{bottom:492.630000px;}
.y86_c00254{bottom:509.745000px;}
.y82_c00254{bottom:511.245000px;}
.y81_c00254{bottom:511.905000px;}
.y83_c00254{bottom:512.130000px;}
.y85_c00254{bottom:512.970000px;}
.y84_c00254{bottom:513.405000px;}
.y7f_c00254{bottom:530.745000px;}
.y80_c00254{bottom:532.470000px;}
.y7e_c00254{bottom:532.905000px;}
.y78_c00254{bottom:549.825000px;}
.y7b_c00254{bottom:550.245000px;}
.y79_c00254{bottom:551.325000px;}
.y7d_c00254{bottom:551.550000px;}
.y7c_c00254{bottom:551.970000px;}
.y77_c00254{bottom:552.405000px;}
.y7a_c00254{bottom:552.630000px;}
.y75_c00254{bottom:567.825000px;}
.y76_c00254{bottom:568.680000px;}
.y72_c00254{bottom:569.745000px;}
.y73_c00254{bottom:570.825000px;}
.y74_c00254{bottom:571.905000px;}
.y71_c00254{bottom:572.970000px;}
.y6f_c00254{bottom:588.405000px;}
.y70_c00254{bottom:589.245000px;}
.y6e_c00254{bottom:591.405000px;}
.y6d_c00254{bottom:592.470000px;}
.y6c_c00254{bottom:608.745000px;}
.y6b_c00254{bottom:610.905000px;}
.y68_c00254{bottom:629.745000px;}
.y67_c00254{bottom:630.630000px;}
.y69_c00254{bottom:631.470000px;}
.y6a_c00254{bottom:631.905000px;}
.y66_c00254{bottom:649.245000px;}
.y64_c00254{bottom:650.130000px;}
.y65_c00254{bottom:651.405000px;}
.y60_c00254{bottom:666.825000px;}
.y61_c00254{bottom:668.325000px;}
.y5f_c00254{bottom:668.745000px;}
.y62_c00254{bottom:670.470000px;}
.y63_c00254{bottom:670.905000px;}
.y5d_c00254{bottom:688.245000px;}
.y5e_c00254{bottom:689.745000px;}
.y5c_c00254{bottom:690.405000px;}
.y5b_c00254{bottom:691.470000px;}
.y56_c00254{bottom:709.245000px;}
.y59_c00254{bottom:709.905000px;}
.y58_c00254{bottom:710.130000px;}
.y5a_c00254{bottom:710.970000px;}
.y57_c00254{bottom:711.405000px;}
.y53_c00254{bottom:726.405000px;}
.y54_c00254{bottom:729.405000px;}
.y55_c00254{bottom:729.630000px;}
.y51_c00254{bottom:730.470000px;}
.y52_c00254{bottom:730.905000px;}
.y50_c00254{bottom:746.970000px;}
.y4f_c00254{bottom:748.245000px;}
.y4d_c00254{bottom:749.130000px;}
.y4c_c00254{bottom:749.325000px;}
.y4e_c00254{bottom:750.405000px;}
.y4a_c00254{bottom:767.745000px;}
.y4b_c00254{bottom:768.630000px;}
.y48_c00254{bottom:769.470000px;}
.y49_c00254{bottom:769.905000px;}
.y47_c00254{bottom:784.905000px;}
.y46_c00254{bottom:787.245000px;}
.y43_c00254{bottom:788.130000px;}
.y45_c00254{bottom:788.970000px;}
.y44_c00254{bottom:789.405000px;}
.y40_c00254{bottom:806.745000px;}
.y41_c00254{bottom:807.825000px;}
.y3f_c00254{bottom:808.905000px;}
.y42_c00254{bottom:809.970000px;}
.y3c_c00254{bottom:825.405000px;}
.y39_c00254{bottom:826.245000px;}
.y3d_c00254{bottom:827.325000px;}
.y3e_c00254{bottom:827.970000px;}
.y3b_c00254{bottom:828.405000px;}
.y3a_c00254{bottom:828.630000px;}
.y34_c00254{bottom:845.745000px;}
.y37_c00254{bottom:846.180000px;}
.y35_c00254{bottom:847.245000px;}
.y33_c00254{bottom:847.905000px;}
.y38_c00254{bottom:848.130000px;}
.y36_c00254{bottom:849.405000px;}
.y30_c00254{bottom:864.405000px;}
.y31_c00254{bottom:864.825000px;}
.y2e_c00254{bottom:865.245000px;}
.y2d_c00254{bottom:866.745000px;}
.y32_c00254{bottom:867.405000px;}
.y2f_c00254{bottom:868.470000px;}
.y2c_c00254{bottom:868.905000px;}
.y2b_c00254{bottom:886.245000px;}
.y29_c00254{bottom:886.905000px;}
.y2a_c00254{bottom:888.405000px;}
.y26_c00254{bottom:905.745000px;}
.y25_c00254{bottom:907.470000px;}
.y27_c00254{bottom:907.905000px;}
.y28_c00254{bottom:908.970000px;}
.y21_c00254{bottom:925.245000px;}
.y24_c00254{bottom:926.130000px;}
.y23_c00254{bottom:926.970000px;}
.y22_c00254{bottom:927.405000px;}
.y1d_c00254{bottom:944.745000px;}
.y20_c00254{bottom:945.825000px;}
.y1e_c00254{bottom:946.905000px;}
.y1f_c00254{bottom:947.970000px;}
.y1b_c00254{bottom:963.405000px;}
.y18_c00254{bottom:964.245000px;}
.y1a_c00254{bottom:965.325000px;}
.y1c_c00254{bottom:966.405000px;}
.y19_c00254{bottom:967.470000px;}
.y17_c00254{bottom:983.970000px;}
.y16_c00254{bottom:985.245000px;}
.y11_c00254{bottom:985.905000px;}
.y14_c00254{bottom:986.130000px;}
.y15_c00254{bottom:986.325000px;}
.y13_c00254{bottom:986.970000px;}
.y12_c00254{bottom:987.405000px;}
.yf_c00254{bottom:1003.245000px;}
.ye_c00254{bottom:1005.405000px;}
.y10_c00254{bottom:1005.630000px;}
.yd_c00254{bottom:1024.245000px;}
.ya_c00254{bottom:1025.130000px;}
.yb_c00254{bottom:1025.970000px;}
.yc_c00254{bottom:1026.405000px;}
.y8_c00254{bottom:1043.745000px;}
.y9_c00254{bottom:1045.470000px;}
.y7_c00254{bottom:1045.905000px;}
.y4_c00254{bottom:1062.405000px;}
.y3_c00254{bottom:1063.245000px;}
.y6_c00254{bottom:1064.970000px;}
.y5_c00254{bottom:1065.405000px;}
.y2_c00254{bottom:1101.405000px;}
.y1_c00254{bottom:1103.550000px;}
.h5_c00254{height:23.025234px;}
.h1_c00254{height:25.091602px;}
.h4_c00254{height:31.364502px;}
.h2_c00254{height:35.571035px;}
.h6_c00254{height:39.777568px;}
.h3_c00254{height:43.910303px;}
.h7_c00254{height:48.116836px;}
.h0_c00254{height:1335.000000px;}
.w0_c00254{width:880.500000px;}
.x0_c00254{left:0.000000px;}
.x3a_c00254{left:152.580000px;}
.x3_c00254{left:153.645000px;}
.x21_c00254{left:169.500000px;}
.xa8_c00254{left:172.080000px;}
.x1a_c00254{left:174.000000px;}
.x9c_c00254{left:175.500000px;}
.x106_c00254{left:178.500000px;}
.x2c_c00254{left:180.000000px;}
.x6b_c00254{left:181.500000px;}
.xd2_c00254{left:182.580000px;}
.xc9_c00254{left:184.500000px;}
.x62_c00254{left:192.420000px;}
.x22_c00254{left:193.500000px;}
.x94_c00254{left:195.000000px;}
.xab_c00254{left:198.855000px;}
.x1b_c00254{left:201.420000px;}
.xf_c00254{left:202.500000px;}
.x8b_c00254{left:205.500000px;}
.x3b_c00254{left:207.000000px;}
.x83_c00254{left:208.500000px;}
.x55_c00254{left:214.920000px;}
.xe5_c00254{left:217.920000px;}
.xf8_c00254{left:219.000000px;}
.x41_c00254{left:222.420000px;}
.xfe_c00254{left:223.500000px;}
.x4_c00254{left:226.080000px;}
.xa2_c00254{left:228.000000px;}
.x4b_c00254{left:229.080000px;}
.x1c_c00254{left:231.000000px;}
.xac_c00254{left:234.000000px;}
.x2d_c00254{left:236.580000px;}
.x6c_c00254{left:240.000000px;}
.x10_c00254{left:243.000000px;}
.xf1_c00254{left:244.080000px;}
.xe7_c00254{left:245.580000px;}
.xc2_c00254{left:247.920000px;}
.xbb_c00254{left:249.000000px;}
.x23_c00254{left:250.500000px;}
.x42_c00254{left:252.000000px;}
.x7d_c00254{left:253.080000px;}
.x2e_c00254{left:254.580000px;}
.xca_c00254{left:258.420000px;}
.x63_c00254{left:259.500000px;}
.x65_c00254{left:260.580000px;}
.xbc_c00254{left:262.500000px;}
.x95_c00254{left:267.000000px;}
.x84_c00254{left:268.920000px;}
.x5_c00254{left:272.580000px;}
.xdf_c00254{left:276.420000px;}
.x8c_c00254{left:277.500000px;}
.x3c_c00254{left:279.000000px;}
.x4c_c00254{left:280.500000px;}
.xb3_c00254{left:282.000000px;}
.xd3_c00254{left:284.145000px;}
.xed_c00254{left:288.420000px;}
.xe8_c00254{left:291.000000px;}
.x6d_c00254{left:293.580000px;}
.xa9_c00254{left:295.500000px;}
.xc5_c00254{left:296.580000px;}
.x6_c00254{left:298.500000px;}
.x101_c00254{left:301.920000px;}
.x85_c00254{left:303.000000px;}
.x1d_c00254{left:305.580000px;}
.x66_c00254{left:307.500000px;}
.x56_c00254{left:308.580000px;}
.x74_c00254{left:310.920000px;}
.xad_c00254{left:312.000000px;}
.x4d_c00254{left:313.500000px;}
.xc6_c00254{left:315.420000px;}
.x64_c00254{left:316.500000px;}
.x11_c00254{left:317.580000px;}
.xb4_c00254{left:319.920000px;}
.xd9_c00254{left:324.000000px;}
.x2f_c00254{left:325.080000px;}
.x24_c00254{left:328.080000px;}
.x86_c00254{left:331.080000px;}
.xc3_c00254{left:333.000000px;}
.xbd_c00254{left:334.920000px;}
.x1e_c00254{left:337.500000px;}
.xf2_c00254{left:338.580000px;}
.x12_c00254{left:340.500000px;}
.x7_c00254{left:341.580000px;}
.x7e_c00254{left:348.420000px;}
.xa3_c00254{left:349.500000px;}
.x57_c00254{left:351.000000px;}
.x30_c00254{left:355.920000px;}
.x96_c00254{left:357.000000px;}
.xff_c00254{left:358.080000px;}
.x6e_c00254{left:360.420000px;}
.xcd_c00254{left:363.000000px;}
.x9d_c00254{left:364.500000px;}
.x4e_c00254{left:367.920000px;}
.x8d_c00254{left:370.920000px;}
.x1f_c00254{left:373.920000px;}
.xae_c00254{left:375.420000px;}
.x43_c00254{left:376.500000px;}
.x97_c00254{left:378.000000px;}
.x3d_c00254{left:379.500000px;}
.xe9_c00254{left:381.000000px;}
.x8_c00254{left:382.920000px;}
.x6f_c00254{left:385.920000px;}
.x75_c00254{left:388.500000px;}
.xfb_c00254{left:393.000000px;}
.xce_c00254{left:394.500000px;}
.x44_c00254{left:396.000000px;}
.x8e_c00254{left:397.080000px;}
.x87_c00254{left:398.580000px;}
.x31_c00254{left:400.500000px;}
.x25_c00254{left:402.000000px;}
.xaf_c00254{left:403.500000px;}
.xda_c00254{left:405.420000px;}
.x4f_c00254{left:406.920000px;}
.x76_c00254{left:408.000000px;}
.x1_c00254{left:409.500000px;}
.xd4_c00254{left:411.000000px;}
.x58_c00254{left:412.080000px;}
.x70_c00254{left:414.000000px;}
.x9e_c00254{left:417.000000px;}
.x20_c00254{left:418.500000px;}
.x32_c00254{left:419.580000px;}
.xee_c00254{left:421.080000px;}
.x77_c00254{left:423.000000px;}
.x45_c00254{left:426.000000px;}
.x13_c00254{left:427.500000px;}
.x59_c00254{left:429.000000px;}
.xa4_c00254{left:430.920000px;}
.x98_c00254{left:435.000000px;}
.x50_c00254{left:436.500000px;}
.xdb_c00254{left:438.000000px;}
.x67_c00254{left:439.500000px;}
.x33_c00254{left:441.000000px;}
.xfc_c00254{left:442.920000px;}
.x14_c00254{left:444.000000px;}
.xea_c00254{left:447.000000px;}
.xe0_c00254{left:448.500000px;}
.x9_c00254{left:451.500000px;}
.x7f_c00254{left:452.580000px;}
.x5a_c00254{left:454.500000px;}
.x102_c00254{left:455.580000px;}
.x26_c00254{left:457.500000px;}
.x78_c00254{left:459.000000px;}
.xc7_c00254{left:460.920000px;}
.x8f_c00254{left:462.420000px;}
.x99_c00254{left:465.000000px;}
.xb5_c00254{left:466.275000px;}
.x68_c00254{left:467.580000px;}
.xf3_c00254{left:469.500000px;}
.xbe_c00254{left:471.000000px;}
.x71_c00254{left:472.500000px;}
.xaa_c00254{left:481.500000px;}
.x3e_c00254{left:483.000000px;}
.x5b_c00254{left:484.500000px;}
.x15_c00254{left:490.080000px;}
.x9f_c00254{left:493.920000px;}
.x51_c00254{left:495.000000px;}
.x34_c00254{left:496.500000px;}
.xd5_c00254{left:498.420000px;}
.x79_c00254{left:499.500000px;}
.xe6_c00254{left:501.000000px;}
.xb6_c00254{left:502.080000px;}
.x80_c00254{left:504.000000px;}
.xfd_c00254{left:505.080000px;}
.x46_c00254{left:507.000000px;}
.x103_c00254{left:508.080000px;}
.x27_c00254{left:510.000000px;}
.x16_c00254{left:511.920000px;}
.xb0_c00254{left:513.420000px;}
.x35_c00254{left:516.000000px;}
.xa0_c00254{left:525.000000px;}
.x28_c00254{left:526.500000px;}
.xcf_c00254{left:528.000000px;}
.x72_c00254{left:529.500000px;}
.xa_c00254{left:531.000000px;}
.xef_c00254{left:534.000000px;}
.x5c_c00254{left:535.500000px;}
.xd6_c00254{left:538.920000px;}
.x29_c00254{left:541.500000px;}
.x52_c00254{left:542.580000px;}
.x3f_c00254{left:544.080000px;}
.x7a_c00254{left:545.580000px;}
.xdc_c00254{left:547.500000px;}
.x9a_c00254{left:549.420000px;}
.x5d_c00254{left:550.920000px;}
.xf6_c00254{left:552.000000px;}
.x104_c00254{left:553.500000px;}
.x90_c00254{left:555.000000px;}
.xe1_c00254{left:556.500000px;}
.x69_c00254{left:560.580000px;}
.xb7_c00254{left:562.500000px;}
.x53_c00254{left:564.420000px;}
.xd0_c00254{left:565.500000px;}
.x47_c00254{left:567.420000px;}
.xcb_c00254{left:570.000000px;}
.x91_c00254{left:571.500000px;}
.xdd_c00254{left:573.000000px;}
.xb_c00254{left:574.920000px;}
.xa5_c00254{left:576.000000px;}
.xeb_c00254{left:579.000000px;}
.xf4_c00254{left:586.080000px;}
.xb8_c00254{left:587.775000px;}
.x17_c00254{left:589.500000px;}
.x92_c00254{left:592.500000px;}
.x48_c00254{left:594.000000px;}
.xec_c00254{left:595.920000px;}
.xb1_c00254{left:598.500000px;}
.x36_c00254{left:599.580000px;}
.xde_c00254{left:601.500000px;}
.x81_c00254{left:603.000000px;}
.xbf_c00254{left:604.275000px;}
.xf7_c00254{left:606.000000px;}
.x18_c00254{left:608.580000px;}
.xd7_c00254{left:610.920000px;}
.x88_c00254{left:613.500000px;}
.x5e_c00254{left:615.000000px;}
.x49_c00254{left:616.275000px;}
.xcc_c00254{left:618.000000px;}
.xc_c00254{left:619.080000px;}
.xb9_c00254{left:622.500000px;}
.xa1_c00254{left:623.580000px;}
.x7b_c00254{left:625.500000px;}
.x6a_c00254{left:627.855000px;}
.x5f_c00254{left:631.080000px;}
.xf9_c00254{left:632.580000px;}
.xf0_c00254{left:634.275000px;}
.x37_c00254{left:636.000000px;}
.xc0_c00254{left:637.920000px;}
.x2a_c00254{left:639.000000px;}
.x107_c00254{left:642.000000px;}
.xd_c00254{left:645.420000px;}
.x105_c00254{left:649.080000px;}
.xfa_c00254{left:652.500000px;}
.x100_c00254{left:654.000000px;}
.x38_c00254{left:655.500000px;}
.x93_c00254{left:658.080000px;}
.x7c_c00254{left:663.420000px;}
.xa6_c00254{left:664.920000px;}
.x4a_c00254{left:668.580000px;}
.xe3_c00254{left:670.500000px;}
.x60_c00254{left:672.000000px;}
.x19_c00254{left:675.000000px;}
.xc8_c00254{left:676.080000px;}
.xba_c00254{left:678.000000px;}
.x89_c00254{left:679.275000px;}
.x39_c00254{left:682.500000px;}
.xd8_c00254{left:684.420000px;}
.xe4_c00254{left:685.500000px;}
.x108_c00254{left:686.580000px;}
.x82_c00254{left:688.920000px;}
.x61_c00254{left:690.420000px;}
.xe_c00254{left:693.000000px;}
.x9b_c00254{left:694.500000px;}
.xc4_c00254{left:695.775000px;}
.xf5_c00254{left:698.580000px;}
.xc1_c00254{left:700.920000px;}
.xa7_c00254{left:702.000000px;}
.xb2_c00254{left:705.000000px;}
.x2_c00254{left:706.080000px;}
.x54_c00254{left:709.500000px;}
.xe2_c00254{left:710.580000px;}
.xd1_c00254{left:712.500000px;}
.x73_c00254{left:714.000000px;}
.x40_c00254{left:715.080000px;}
.x2b_c00254{left:716.580000px;}
.x8a_c00254{left:718.500000px;}
@media print{
.v1_c00254{vertical-align:-10.666667pt;}
.v0_c00254{vertical-align:0.000000pt;}
.ls0_c00254{letter-spacing:0.000000pt;}
.ws0_c00254{word-spacing:-4.026738pt;}
.ws2_c00254{word-spacing:0.000000pt;}
.ws1_c00254{word-spacing:0.878504pt;}
.fs4_c00254{font-size:16.640000pt;}
.fs0_c00254{font-size:18.133333pt;}
.fs3_c00254{font-size:22.666667pt;}
.fs1_c00254{font-size:25.706667pt;}
.fs5_c00254{font-size:28.746667pt;}
.fs2_c00254{font-size:31.733333pt;}
.fs6_c00254{font-size:34.773333pt;}
.y0_c00254{bottom:0.000000pt;}
.yc1_c00254{bottom:207.773333pt;}
.yc2_c00254{bottom:209.693333pt;}
.ybd_c00254{bottom:225.106667pt;}
.yc0_c00254{bottom:225.893333pt;}
.ybc_c00254{bottom:226.266667pt;}
.ybe_c00254{bottom:227.026667pt;}
.ybf_c00254{bottom:228.360000pt;}
.ybb_c00254{bottom:241.693333pt;}
.yb8_c00254{bottom:243.773333pt;}
.yb7_c00254{bottom:243.973333pt;}
.yb9_c00254{bottom:244.360000pt;}
.yba_c00254{bottom:244.560000pt;}
.yb6_c00254{bottom:245.693333pt;}
.yb2_c00254{bottom:259.026667pt;}
.yb3_c00254{bottom:261.106667pt;}
.yb4_c00254{bottom:261.893333pt;}
.yb5_c00254{bottom:262.640000pt;}
.yb1_c00254{bottom:263.026667pt;}
.yad_c00254{bottom:277.306667pt;}
.yb0_c00254{bottom:277.693333pt;}
.yab_c00254{bottom:278.440000pt;}
.yaf_c00254{bottom:279.226667pt;}
.yae_c00254{bottom:279.973333pt;}
.yac_c00254{bottom:280.360000pt;}
.ya9_c00254{bottom:295.400000pt;}
.ya7_c00254{bottom:295.773333pt;}
.yaa_c00254{bottom:296.560000pt;}
.ya8_c00254{bottom:297.306667pt;}
.ya6_c00254{bottom:297.693333pt;}
.ya3_c00254{bottom:313.106667pt;}
.ya5_c00254{bottom:314.640000pt;}
.ya4_c00254{bottom:315.026667pt;}
.y9f_c00254{bottom:329.693333pt;}
.y9d_c00254{bottom:330.440000pt;}
.y9c_c00254{bottom:331.973333pt;}
.y9e_c00254{bottom:332.360000pt;}
.ya0_c00254{bottom:332.560000pt;}
.ya1_c00254{bottom:333.306667pt;}
.ya2_c00254{bottom:333.693333pt;}
.y97_c00254{bottom:347.773333pt;}
.y99_c00254{bottom:349.106667pt;}
.y98_c00254{bottom:349.693333pt;}
.y9a_c00254{bottom:349.893333pt;}
.y9b_c00254{bottom:351.026667pt;}
.y94_c00254{bottom:364.360000pt;}
.y93_c00254{bottom:367.026667pt;}
.y96_c00254{bottom:367.226667pt;}
.y95_c00254{bottom:367.973333pt;}
.y92_c00254{bottom:368.360000pt;}
.y91_c00254{bottom:382.440000pt;}
.y90_c00254{bottom:383.773333pt;}
.y8f_c00254{bottom:385.693333pt;}
.y8e_c00254{bottom:401.106667pt;}
.y8d_c00254{bottom:403.026667pt;}
.y8c_c00254{bottom:418.440000pt;}
.y88_c00254{bottom:434.826667pt;}
.y87_c00254{bottom:435.026667pt;}
.y8a_c00254{bottom:435.773333pt;}
.y89_c00254{bottom:437.693333pt;}
.y8b_c00254{bottom:437.893333pt;}
.y86_c00254{bottom:453.106667pt;}
.y82_c00254{bottom:454.440000pt;}
.y81_c00254{bottom:455.026667pt;}
.y83_c00254{bottom:455.226667pt;}
.y85_c00254{bottom:455.973333pt;}
.y84_c00254{bottom:456.360000pt;}
.y7f_c00254{bottom:471.773333pt;}
.y80_c00254{bottom:473.306667pt;}
.y7e_c00254{bottom:473.693333pt;}
.y78_c00254{bottom:488.733333pt;}
.y7b_c00254{bottom:489.106667pt;}
.y79_c00254{bottom:490.066667pt;}
.y7d_c00254{bottom:490.266667pt;}
.y7c_c00254{bottom:490.640000pt;}
.y77_c00254{bottom:491.026667pt;}
.y7a_c00254{bottom:491.226667pt;}
.y75_c00254{bottom:504.733333pt;}
.y76_c00254{bottom:505.493333pt;}
.y72_c00254{bottom:506.440000pt;}
.y73_c00254{bottom:507.400000pt;}
.y74_c00254{bottom:508.360000pt;}
.y71_c00254{bottom:509.306667pt;}
.y6f_c00254{bottom:523.026667pt;}
.y70_c00254{bottom:523.773333pt;}
.y6e_c00254{bottom:525.693333pt;}
.y6d_c00254{bottom:526.640000pt;}
.y6c_c00254{bottom:541.106667pt;}
.y6b_c00254{bottom:543.026667pt;}
.y68_c00254{bottom:559.773333pt;}
.y67_c00254{bottom:560.560000pt;}
.y69_c00254{bottom:561.306667pt;}
.y6a_c00254{bottom:561.693333pt;}
.y66_c00254{bottom:577.106667pt;}
.y64_c00254{bottom:577.893333pt;}
.y65_c00254{bottom:579.026667pt;}
.y60_c00254{bottom:592.733333pt;}
.y61_c00254{bottom:594.066667pt;}
.y5f_c00254{bottom:594.440000pt;}
.y62_c00254{bottom:595.973333pt;}
.y63_c00254{bottom:596.360000pt;}
.y5d_c00254{bottom:611.773333pt;}
.y5e_c00254{bottom:613.106667pt;}
.y5c_c00254{bottom:613.693333pt;}
.y5b_c00254{bottom:614.640000pt;}
.y56_c00254{bottom:630.440000pt;}
.y59_c00254{bottom:631.026667pt;}
.y58_c00254{bottom:631.226667pt;}
.y5a_c00254{bottom:631.973333pt;}
.y57_c00254{bottom:632.360000pt;}
.y53_c00254{bottom:645.693333pt;}
.y54_c00254{bottom:648.360000pt;}
.y55_c00254{bottom:648.560000pt;}
.y51_c00254{bottom:649.306667pt;}
.y52_c00254{bottom:649.693333pt;}
.y50_c00254{bottom:663.973333pt;}
.y4f_c00254{bottom:665.106667pt;}
.y4d_c00254{bottom:665.893333pt;}
.y4c_c00254{bottom:666.066667pt;}
.y4e_c00254{bottom:667.026667pt;}
.y4a_c00254{bottom:682.440000pt;}
.y4b_c00254{bottom:683.226667pt;}
.y48_c00254{bottom:683.973333pt;}
.y49_c00254{bottom:684.360000pt;}
.y47_c00254{bottom:697.693333pt;}
.y46_c00254{bottom:699.773333pt;}
.y43_c00254{bottom:700.560000pt;}
.y45_c00254{bottom:701.306667pt;}
.y44_c00254{bottom:701.693333pt;}
.y40_c00254{bottom:717.106667pt;}
.y41_c00254{bottom:718.066667pt;}
.y3f_c00254{bottom:719.026667pt;}
.y42_c00254{bottom:719.973333pt;}
.y3c_c00254{bottom:733.693333pt;}
.y39_c00254{bottom:734.440000pt;}
.y3d_c00254{bottom:735.400000pt;}
.y3e_c00254{bottom:735.973333pt;}
.y3b_c00254{bottom:736.360000pt;}
.y3a_c00254{bottom:736.560000pt;}
.y34_c00254{bottom:751.773333pt;}
.y37_c00254{bottom:752.160000pt;}
.y35_c00254{bottom:753.106667pt;}
.y33_c00254{bottom:753.693333pt;}
.y38_c00254{bottom:753.893333pt;}
.y36_c00254{bottom:755.026667pt;}
.y30_c00254{bottom:768.360000pt;}
.y31_c00254{bottom:768.733333pt;}
.y2e_c00254{bottom:769.106667pt;}
.y2d_c00254{bottom:770.440000pt;}
.y32_c00254{bottom:771.026667pt;}
.y2f_c00254{bottom:771.973333pt;}
.y2c_c00254{bottom:772.360000pt;}
.y2b_c00254{bottom:787.773333pt;}
.y29_c00254{bottom:788.360000pt;}
.y2a_c00254{bottom:789.693333pt;}
.y26_c00254{bottom:805.106667pt;}
.y25_c00254{bottom:806.640000pt;}
.y27_c00254{bottom:807.026667pt;}
.y28_c00254{bottom:807.973333pt;}
.y21_c00254{bottom:822.440000pt;}
.y24_c00254{bottom:823.226667pt;}
.y23_c00254{bottom:823.973333pt;}
.y22_c00254{bottom:824.360000pt;}
.y1d_c00254{bottom:839.773333pt;}
.y20_c00254{bottom:840.733333pt;}
.y1e_c00254{bottom:841.693333pt;}
.y1f_c00254{bottom:842.640000pt;}
.y1b_c00254{bottom:856.360000pt;}
.y18_c00254{bottom:857.106667pt;}
.y1a_c00254{bottom:858.066667pt;}
.y1c_c00254{bottom:859.026667pt;}
.y19_c00254{bottom:859.973333pt;}
.y17_c00254{bottom:874.640000pt;}
.y16_c00254{bottom:875.773333pt;}
.y11_c00254{bottom:876.360000pt;}
.y14_c00254{bottom:876.560000pt;}
.y15_c00254{bottom:876.733333pt;}
.y13_c00254{bottom:877.306667pt;}
.y12_c00254{bottom:877.693333pt;}
.yf_c00254{bottom:891.773333pt;}
.ye_c00254{bottom:893.693333pt;}
.y10_c00254{bottom:893.893333pt;}
.yd_c00254{bottom:910.440000pt;}
.ya_c00254{bottom:911.226667pt;}
.yb_c00254{bottom:911.973333pt;}
.yc_c00254{bottom:912.360000pt;}
.y8_c00254{bottom:927.773333pt;}
.y9_c00254{bottom:929.306667pt;}
.y7_c00254{bottom:929.693333pt;}
.y4_c00254{bottom:944.360000pt;}
.y3_c00254{bottom:945.106667pt;}
.y6_c00254{bottom:946.640000pt;}
.y5_c00254{bottom:947.026667pt;}
.y2_c00254{bottom:979.026667pt;}
.y1_c00254{bottom:980.933333pt;}
.h5_c00254{height:20.466875pt;}
.h1_c00254{height:22.303646pt;}
.h4_c00254{height:27.879557pt;}
.h2_c00254{height:31.618698pt;}
.h6_c00254{height:35.357839pt;}
.h3_c00254{height:39.031380pt;}
.h7_c00254{height:42.770521pt;}
.h0_c00254{height:1186.666667pt;}
.w0_c00254{width:782.666667pt;}
.x0_c00254{left:0.000000pt;}
.x3a_c00254{left:135.626667pt;}
.x3_c00254{left:136.573333pt;}
.x21_c00254{left:150.666667pt;}
.xa8_c00254{left:152.960000pt;}
.x1a_c00254{left:154.666667pt;}
.x9c_c00254{left:156.000000pt;}
.x106_c00254{left:158.666667pt;}
.x2c_c00254{left:160.000000pt;}
.x6b_c00254{left:161.333333pt;}
.xd2_c00254{left:162.293333pt;}
.xc9_c00254{left:164.000000pt;}
.x62_c00254{left:171.040000pt;}
.x22_c00254{left:172.000000pt;}
.x94_c00254{left:173.333333pt;}
.xab_c00254{left:176.760000pt;}
.x1b_c00254{left:179.040000pt;}
.xf_c00254{left:180.000000pt;}
.x8b_c00254{left:182.666667pt;}
.x3b_c00254{left:184.000000pt;}
.x83_c00254{left:185.333333pt;}
.x55_c00254{left:191.040000pt;}
.xe5_c00254{left:193.706667pt;}
.xf8_c00254{left:194.666667pt;}
.x41_c00254{left:197.706667pt;}
.xfe_c00254{left:198.666667pt;}
.x4_c00254{left:200.960000pt;}
.xa2_c00254{left:202.666667pt;}
.x4b_c00254{left:203.626667pt;}
.x1c_c00254{left:205.333333pt;}
.xac_c00254{left:208.000000pt;}
.x2d_c00254{left:210.293333pt;}
.x6c_c00254{left:213.333333pt;}
.x10_c00254{left:216.000000pt;}
.xf1_c00254{left:216.960000pt;}
.xe7_c00254{left:218.293333pt;}
.xc2_c00254{left:220.373333pt;}
.xbb_c00254{left:221.333333pt;}
.x23_c00254{left:222.666667pt;}
.x42_c00254{left:224.000000pt;}
.x7d_c00254{left:224.960000pt;}
.x2e_c00254{left:226.293333pt;}
.xca_c00254{left:229.706667pt;}
.x63_c00254{left:230.666667pt;}
.x65_c00254{left:231.626667pt;}
.xbc_c00254{left:233.333333pt;}
.x95_c00254{left:237.333333pt;}
.x84_c00254{left:239.040000pt;}
.x5_c00254{left:242.293333pt;}
.xdf_c00254{left:245.706667pt;}
.x8c_c00254{left:246.666667pt;}
.x3c_c00254{left:248.000000pt;}
.x4c_c00254{left:249.333333pt;}
.xb3_c00254{left:250.666667pt;}
.xd3_c00254{left:252.573333pt;}
.xed_c00254{left:256.373333pt;}
.xe8_c00254{left:258.666667pt;}
.x6d_c00254{left:260.960000pt;}
.xa9_c00254{left:262.666667pt;}
.xc5_c00254{left:263.626667pt;}
.x6_c00254{left:265.333333pt;}
.x101_c00254{left:268.373333pt;}
.x85_c00254{left:269.333333pt;}
.x1d_c00254{left:271.626667pt;}
.x66_c00254{left:273.333333pt;}
.x56_c00254{left:274.293333pt;}
.x74_c00254{left:276.373333pt;}
.xad_c00254{left:277.333333pt;}
.x4d_c00254{left:278.666667pt;}
.xc6_c00254{left:280.373333pt;}
.x64_c00254{left:281.333333pt;}
.x11_c00254{left:282.293333pt;}
.xb4_c00254{left:284.373333pt;}
.xd9_c00254{left:288.000000pt;}
.x2f_c00254{left:288.960000pt;}
.x24_c00254{left:291.626667pt;}
.x86_c00254{left:294.293333pt;}
.xc3_c00254{left:296.000000pt;}
.xbd_c00254{left:297.706667pt;}
.x1e_c00254{left:300.000000pt;}
.xf2_c00254{left:300.960000pt;}
.x12_c00254{left:302.666667pt;}
.x7_c00254{left:303.626667pt;}
.x7e_c00254{left:309.706667pt;}
.xa3_c00254{left:310.666667pt;}
.x57_c00254{left:312.000000pt;}
.x30_c00254{left:316.373333pt;}
.x96_c00254{left:317.333333pt;}
.xff_c00254{left:318.293333pt;}
.x6e_c00254{left:320.373333pt;}
.xcd_c00254{left:322.666667pt;}
.x9d_c00254{left:324.000000pt;}
.x4e_c00254{left:327.040000pt;}
.x8d_c00254{left:329.706667pt;}
.x1f_c00254{left:332.373333pt;}
.xae_c00254{left:333.706667pt;}
.x43_c00254{left:334.666667pt;}
.x97_c00254{left:336.000000pt;}
.x3d_c00254{left:337.333333pt;}
.xe9_c00254{left:338.666667pt;}
.x8_c00254{left:340.373333pt;}
.x6f_c00254{left:343.040000pt;}
.x75_c00254{left:345.333333pt;}
.xfb_c00254{left:349.333333pt;}
.xce_c00254{left:350.666667pt;}
.x44_c00254{left:352.000000pt;}
.x8e_c00254{left:352.960000pt;}
.x87_c00254{left:354.293333pt;}
.x31_c00254{left:356.000000pt;}
.x25_c00254{left:357.333333pt;}
.xaf_c00254{left:358.666667pt;}
.xda_c00254{left:360.373333pt;}
.x4f_c00254{left:361.706667pt;}
.x76_c00254{left:362.666667pt;}
.x1_c00254{left:364.000000pt;}
.xd4_c00254{left:365.333333pt;}
.x58_c00254{left:366.293333pt;}
.x70_c00254{left:368.000000pt;}
.x9e_c00254{left:370.666667pt;}
.x20_c00254{left:372.000000pt;}
.x32_c00254{left:372.960000pt;}
.xee_c00254{left:374.293333pt;}
.x77_c00254{left:376.000000pt;}
.x45_c00254{left:378.666667pt;}
.x13_c00254{left:380.000000pt;}
.x59_c00254{left:381.333333pt;}
.xa4_c00254{left:383.040000pt;}
.x98_c00254{left:386.666667pt;}
.x50_c00254{left:388.000000pt;}
.xdb_c00254{left:389.333333pt;}
.x67_c00254{left:390.666667pt;}
.x33_c00254{left:392.000000pt;}
.xfc_c00254{left:393.706667pt;}
.x14_c00254{left:394.666667pt;}
.xea_c00254{left:397.333333pt;}
.xe0_c00254{left:398.666667pt;}
.x9_c00254{left:401.333333pt;}
.x7f_c00254{left:402.293333pt;}
.x5a_c00254{left:404.000000pt;}
.x102_c00254{left:404.960000pt;}
.x26_c00254{left:406.666667pt;}
.x78_c00254{left:408.000000pt;}
.xc7_c00254{left:409.706667pt;}
.x8f_c00254{left:411.040000pt;}
.x99_c00254{left:413.333333pt;}
.xb5_c00254{left:414.466667pt;}
.x68_c00254{left:415.626667pt;}
.xf3_c00254{left:417.333333pt;}
.xbe_c00254{left:418.666667pt;}
.x71_c00254{left:420.000000pt;}
.xaa_c00254{left:428.000000pt;}
.x3e_c00254{left:429.333333pt;}
.x5b_c00254{left:430.666667pt;}
.x15_c00254{left:435.626667pt;}
.x9f_c00254{left:439.040000pt;}
.x51_c00254{left:440.000000pt;}
.x34_c00254{left:441.333333pt;}
.xd5_c00254{left:443.040000pt;}
.x79_c00254{left:444.000000pt;}
.xe6_c00254{left:445.333333pt;}
.xb6_c00254{left:446.293333pt;}
.x80_c00254{left:448.000000pt;}
.xfd_c00254{left:448.960000pt;}
.x46_c00254{left:450.666667pt;}
.x103_c00254{left:451.626667pt;}
.x27_c00254{left:453.333333pt;}
.x16_c00254{left:455.040000pt;}
.xb0_c00254{left:456.373333pt;}
.x35_c00254{left:458.666667pt;}
.xa0_c00254{left:466.666667pt;}
.x28_c00254{left:468.000000pt;}
.xcf_c00254{left:469.333333pt;}
.x72_c00254{left:470.666667pt;}
.xa_c00254{left:472.000000pt;}
.xef_c00254{left:474.666667pt;}
.x5c_c00254{left:476.000000pt;}
.xd6_c00254{left:479.040000pt;}
.x29_c00254{left:481.333333pt;}
.x52_c00254{left:482.293333pt;}
.x3f_c00254{left:483.626667pt;}
.x7a_c00254{left:484.960000pt;}
.xdc_c00254{left:486.666667pt;}
.x9a_c00254{left:488.373333pt;}
.x5d_c00254{left:489.706667pt;}
.xf6_c00254{left:490.666667pt;}
.x104_c00254{left:492.000000pt;}
.x90_c00254{left:493.333333pt;}
.xe1_c00254{left:494.666667pt;}
.x69_c00254{left:498.293333pt;}
.xb7_c00254{left:500.000000pt;}
.x53_c00254{left:501.706667pt;}
.xd0_c00254{left:502.666667pt;}
.x47_c00254{left:504.373333pt;}
.xcb_c00254{left:506.666667pt;}
.x91_c00254{left:508.000000pt;}
.xdd_c00254{left:509.333333pt;}
.xb_c00254{left:511.040000pt;}
.xa5_c00254{left:512.000000pt;}
.xeb_c00254{left:514.666667pt;}
.xf4_c00254{left:520.960000pt;}
.xb8_c00254{left:522.466667pt;}
.x17_c00254{left:524.000000pt;}
.x92_c00254{left:526.666667pt;}
.x48_c00254{left:528.000000pt;}
.xec_c00254{left:529.706667pt;}
.xb1_c00254{left:532.000000pt;}
.x36_c00254{left:532.960000pt;}
.xde_c00254{left:534.666667pt;}
.x81_c00254{left:536.000000pt;}
.xbf_c00254{left:537.133333pt;}
.xf7_c00254{left:538.666667pt;}
.x18_c00254{left:540.960000pt;}
.xd7_c00254{left:543.040000pt;}
.x88_c00254{left:545.333333pt;}
.x5e_c00254{left:546.666667pt;}
.x49_c00254{left:547.800000pt;}
.xcc_c00254{left:549.333333pt;}
.xc_c00254{left:550.293333pt;}
.xb9_c00254{left:553.333333pt;}
.xa1_c00254{left:554.293333pt;}
.x7b_c00254{left:556.000000pt;}
.x6a_c00254{left:558.093333pt;}
.x5f_c00254{left:560.960000pt;}
.xf9_c00254{left:562.293333pt;}
.xf0_c00254{left:563.800000pt;}
.x37_c00254{left:565.333333pt;}
.xc0_c00254{left:567.040000pt;}
.x2a_c00254{left:568.000000pt;}
.x107_c00254{left:570.666667pt;}
.xd_c00254{left:573.706667pt;}
.x105_c00254{left:576.960000pt;}
.xfa_c00254{left:580.000000pt;}
.x100_c00254{left:581.333333pt;}
.x38_c00254{left:582.666667pt;}
.x93_c00254{left:584.960000pt;}
.x7c_c00254{left:589.706667pt;}
.xa6_c00254{left:591.040000pt;}
.x4a_c00254{left:594.293333pt;}
.xe3_c00254{left:596.000000pt;}
.x60_c00254{left:597.333333pt;}
.x19_c00254{left:600.000000pt;}
.xc8_c00254{left:600.960000pt;}
.xba_c00254{left:602.666667pt;}
.x89_c00254{left:603.800000pt;}
.x39_c00254{left:606.666667pt;}
.xd8_c00254{left:608.373333pt;}
.xe4_c00254{left:609.333333pt;}
.x108_c00254{left:610.293333pt;}
.x82_c00254{left:612.373333pt;}
.x61_c00254{left:613.706667pt;}
.xe_c00254{left:616.000000pt;}
.x9b_c00254{left:617.333333pt;}
.xc4_c00254{left:618.466667pt;}
.xf5_c00254{left:620.960000pt;}
.xc1_c00254{left:623.040000pt;}
.xa7_c00254{left:624.000000pt;}
.xb2_c00254{left:626.666667pt;}
.x2_c00254{left:627.626667pt;}
.x54_c00254{left:630.666667pt;}
.xe2_c00254{left:631.626667pt;}
.xd1_c00254{left:633.333333pt;}
.x73_c00254{left:634.666667pt;}
.x40_c00254{left:635.626667pt;}
.x2b_c00254{left:636.960000pt;}
.x8a_c00254{left:638.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_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_0291d94141fe908346358463.woff2')format("woff");}.ff1_c00255{font-family:ff1_c00255;line-height:1.688965;font-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_c00255{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00255{transform:matrix(0.314034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314034,0.000000,0.000000,0.250000,0,0);}
.m98_c00255{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.maa_c00255{transform:matrix(0.341373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341373,0.000000,0.000000,0.250000,0,0);}
.mc9_c00255{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.mf_c00255{transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);}
.mbc_c00255{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m24_c00255{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mae_c00255{transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);}
.m9_c00255{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m6_c00255{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m26_c00255{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mc0_c00255{transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);}
.m99_c00255{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m14_c00255{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.mab_c00255{transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);}
.md2_c00255{transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);}
.m13_c00255{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.me6_c00255{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m5_c00255{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m97_c00255{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.me_c00255{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m15_c00255{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m44_c00255{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m49_c00255{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mc_c00255{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m23_c00255{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m7c_c00255{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m59_c00255{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.md1_c00255{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m9d_c00255{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mc6_c00255{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m17_c00255{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m8b_c00255{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m54_c00255{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m55_c00255{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m92_c00255{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mde_c00255{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m2d_c00255{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m52_c00255{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m77_c00255{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m34_c00255{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m7d_c00255{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m50_c00255{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mad_c00255{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.mb0_c00255{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m31_c00255{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m3f_c00255{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.mb7_c00255{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m8c_c00255{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m1b_c00255{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m6b_c00255{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.ma0_c00255{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m47_c00255{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.md4_c00255{transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);}
.mc7_c00255{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m3a_c00255{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.md6_c00255{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m5c_c00255{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m29_c00255{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m18_c00255{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.md0_c00255{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.mb1_c00255{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m82_c00255{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.md3_c00255{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m1d_c00255{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mc8_c00255{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.mc3_c00255{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m20_c00255{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m2c_c00255{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.ma3_c00255{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m8_c00255{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mc2_c00255{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m72_c00255{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.m40_c00255{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m4e_c00255{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m4c_c00255{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m74_c00255{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.ma7_c00255{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.md8_c00255{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.me5_c00255{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m27_c00255{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.me0_c00255{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mba_c00255{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m1a_c00255{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.me3_c00255{transform:matrix(0.458824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458824,0.000000,0.000000,0.250000,0,0);}
.mdc_c00255{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m7f_c00255{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m84_c00255{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.ma4_c00255{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.m96_c00255{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.mea_c00255{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.m28_c00255{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m35_c00255{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m62_c00255{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.ma9_c00255{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.mac_c00255{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.ma_c00255{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mdf_c00255{transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);}
.m3c_c00255{transform:matrix(0.482353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482353,0.000000,0.000000,0.250000,0,0);}
.m4f_c00255{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m3e_c00255{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.me7_c00255{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m0_c00255{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m56_c00255{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m1f_c00255{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m78_c00255{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.ma8_c00255{transform:matrix(0.495294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495294,0.000000,0.000000,0.250000,0,0);}
.m2e_c00255{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_c00255{transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);}
.mc4_c00255{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.mbd_c00255{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.m32_c00255{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m22_c00255{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m89_c00255{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.md9_c00255{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mda_c00255{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.md7_c00255{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m12_c00255{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m21_c00255{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m94_c00255{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m36_c00255{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m86_c00255{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.me8_c00255{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m63_c00255{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mb6_c00255{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m6d_c00255{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m7a_c00255{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m8a_c00255{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m90_c00255{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m81_c00255{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m5f_c00255{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.meb_c00255{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mb8_c00255{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m19_c00255{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m9c_c00255{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m3d_c00255{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m7_c00255{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m95_c00255{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m8e_c00255{transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);}
.m9f_c00255{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m5a_c00255{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m69_c00255{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m5d_c00255{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m6f_c00255{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m85_c00255{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m91_c00255{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m5e_c00255{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m25_c00255{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m8d_c00255{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m4b_c00255{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m80_c00255{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m7e_c00255{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mb9_c00255{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m45_c00255{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.m43_c00255{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m8f_c00255{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.md_c00255{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m79_c00255{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m11_c00255{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mdd_c00255{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m53_c00255{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m7b_c00255{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m66_c00255{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m16_c00255{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m2f_c00255{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mca_c00255{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.med_c00255{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.mbb_c00255{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mb_c00255{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m4a_c00255{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mbf_c00255{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.mbe_c00255{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.mcb_c00255{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.me9_c00255{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);}
.m4_c00255{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.ma5_c00255{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m9e_c00255{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m9b_c00255{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mcc_c00255{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m83_c00255{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.m75_c00255{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mcf_c00255{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mce_c00255{transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);}
.m4d_c00255{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m2a_c00255{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m6c_c00255{transform:matrix(0.587059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587059,0.000000,0.000000,0.250000,0,0);}
.m51_c00255{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m3_c00255{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.mcd_c00255{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.m60_c00255{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m2_c00255{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);}
.mb5_c00255{transform:matrix(0.601141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601141,0.000000,0.000000,0.250000,0,0);}
.m71_c00255{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m1_c00255{transform:matrix(0.606618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606618,0.000000,0.000000,0.250000,0,0);}
.m61_c00255{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m93_c00255{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m30_c00255{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mb3_c00255{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.m37_c00255{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m9a_c00255{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_c00255{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m70_c00255{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m67_c00255{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m5b_c00255{transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);}
.m1e_c00255{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.ma1_c00255{transform:matrix(0.644191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644191,0.000000,0.000000,0.250000,0,0);}
.m88_c00255{transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);}
.m6e_c00255{transform:matrix(0.648824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648824,0.000000,0.000000,0.250000,0,0);}
.ma6_c00255{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);}
.ma2_c00255{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m57_c00255{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m10_c00255{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m33_c00255{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m39_c00255{transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);}
.maf_c00255{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.me1_c00255{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m46_c00255{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.m2b_c00255{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mee_c00255{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m65_c00255{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m38_c00255{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.md5_c00255{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.mb4_c00255{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m73_c00255{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mdb_c00255{transform:matrix(0.734559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.734559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.734559,0.000000,0.000000,0.250000,0,0);}
.m87_c00255{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m76_c00255{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m68_c00255{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mc5_c00255{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m58_c00255{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.m6a_c00255{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m3b_c00255{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.me2_c00255{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.mef_c00255{transform:matrix(0.798077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.798077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.798077,0.000000,0.000000,0.250000,0,0);}
.mec_c00255{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m42_c00255{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.me4_c00255{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.mb2_c00255{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.mc1_c00255{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-1.528333px;}
.ws1_c00255{word-spacing:-0.931703px;}
.ws2_c00255{word-spacing:0.000000px;}
.fc0_c00255{color:transparent;}
.fs7_c00255{font-size:3.420000px;}
.fs6_c00255{font-size:18.720000px;}
.fs1_c00255{font-size:20.400000px;}
.fs2_c00255{font-size:25.500000px;}
.fs0_c00255{font-size:28.920000px;}
.fs4_c00255{font-size:32.340000px;}
.fs3_c00255{font-size:35.700000px;}
.fs5_c00255{font-size:39.120000px;}
.y0_c00255{bottom:0.000000px;}
.yc3_c00255{bottom:248.745000px;}
.yc2_c00255{bottom:250.905000px;}
.yc5_c00255{bottom:251.130000px;}
.yc4_c00255{bottom:252.405000px;}
.ybe_c00255{bottom:267.405000px;}
.ybf_c00255{bottom:268.470000px;}
.yc0_c00255{bottom:269.745000px;}
.ybc_c00255{bottom:270.405000px;}
.yc1_c00255{bottom:270.825000px;}
.ybd_c00255{bottom:271.905000px;}
.yb6_c00255{bottom:286.905000px;}
.yb5_c00255{bottom:287.745000px;}
.yba_c00255{bottom:289.245000px;}
.yb7_c00255{bottom:289.905000px;}
.yb9_c00255{bottom:290.130000px;}
.yb8_c00255{bottom:291.405000px;}
.ybb_c00255{bottom:292.470000px;}
.yb0_c00255{bottom:308.745000px;}
.yb2_c00255{bottom:309.825000px;}
.yb4_c00255{bottom:310.470000px;}
.yb1_c00255{bottom:310.905000px;}
.yb3_c00255{bottom:311.130000px;}
.yac_c00255{bottom:328.245000px;}
.yaf_c00255{bottom:329.550000px;}
.yaa_c00255{bottom:330.405000px;}
.yad_c00255{bottom:330.630000px;}
.yae_c00255{bottom:331.470000px;}
.yab_c00255{bottom:331.920000px;}
.ya7_c00255{bottom:346.245000px;}
.ya8_c00255{bottom:349.905000px;}
.ya9_c00255{bottom:351.405000px;}
.ya2_c00255{bottom:367.245000px;}
.ya3_c00255{bottom:369.405000px;}
.ya6_c00255{bottom:369.630000px;}
.ya5_c00255{bottom:369.825000px;}
.ya4_c00255{bottom:370.905000px;}
.ya1_c00255{bottom:388.245000px;}
.ya0_c00255{bottom:390.405000px;}
.y9f_c00255{bottom:406.470000px;}
.y9d_c00255{bottom:407.745000px;}
.y9e_c00255{bottom:408.630000px;}
.y9b_c00255{bottom:409.905000px;}
.y9c_c00255{bottom:409.920000px;}
.y99_c00255{bottom:427.245000px;}
.y9a_c00255{bottom:429.405000px;}
.y98_c00255{bottom:446.745000px;}
.y95_c00255{bottom:448.905000px;}
.y96_c00255{bottom:449.130000px;}
.y97_c00255{bottom:450.420000px;}
.y8f_c00255{bottom:466.680000px;}
.y93_c00255{bottom:466.905000px;}
.y92_c00255{bottom:467.745000px;}
.y91_c00255{bottom:468.825000px;}
.y94_c00255{bottom:469.905000px;}
.y90_c00255{bottom:469.920000px;}
.y8c_c00255{bottom:486.180000px;}
.y8b_c00255{bottom:487.245000px;}
.y8e_c00255{bottom:488.325000px;}
.y8d_c00255{bottom:488.970000px;}
.y8a_c00255{bottom:489.405000px;}
.y85_c00255{bottom:506.745000px;}
.y89_c00255{bottom:508.470000px;}
.y87_c00255{bottom:508.905000px;}
.y86_c00255{bottom:508.920000px;}
.y88_c00255{bottom:509.970000px;}
.y82_c00255{bottom:534.825000px;}
.y81_c00255{bottom:535.905000px;}
.y84_c00255{bottom:536.550000px;}
.y80_c00255{bottom:536.970000px;}
.y83_c00255{bottom:537.630000px;}
.y7f_c00255{bottom:554.550000px;}
.y7e_c00255{bottom:555.405000px;}
.y7d_c00255{bottom:557.550000px;}
.y7c_c00255{bottom:578.745000px;}
.y7a_c00255{bottom:580.905000px;}
.y7b_c00255{bottom:581.970000px;}
.y77_c00255{bottom:622.905000px;}
.y74_c00255{bottom:623.745000px;}
.y79_c00255{bottom:625.245000px;}
.y75_c00255{bottom:625.905000px;}
.y76_c00255{bottom:626.970000px;}
.y78_c00255{bottom:627.405000px;}
.y71_c00255{bottom:644.745000px;}
.y6f_c00255{bottom:645.405000px;}
.y72_c00255{bottom:645.630000px;}
.y70_c00255{bottom:646.905000px;}
.y73_c00255{bottom:647.970000px;}
.y6d_c00255{bottom:663.405000px;}
.y6e_c00255{bottom:664.245000px;}
.y6b_c00255{bottom:666.405000px;}
.y6c_c00255{bottom:666.630000px;}
.y6a_c00255{bottom:682.470000px;}
.y69_c00255{bottom:683.745000px;}
.y68_c00255{bottom:702.405000px;}
.y64_c00255{bottom:703.245000px;}
.y65_c00255{bottom:703.470000px;}
.y63_c00255{bottom:705.405000px;}
.y67_c00255{bottom:705.630000px;}
.y66_c00255{bottom:706.470000px;}
.y61_c00255{bottom:721.905000px;}
.y5f_c00255{bottom:722.745000px;}
.y60_c00255{bottom:724.905000px;}
.y62_c00255{bottom:725.970000px;}
.y5e_c00255{bottom:743.745000px;}
.y59_c00255{bottom:744.405000px;}
.y5d_c00255{bottom:744.630000px;}
.y5c_c00255{bottom:745.470000px;}
.y5a_c00255{bottom:745.905000px;}
.y5b_c00255{bottom:746.970000px;}
.y55_c00255{bottom:763.245000px;}
.y53_c00255{bottom:763.905000px;}
.y57_c00255{bottom:764.130000px;}
.y58_c00255{bottom:764.325000px;}
.y54_c00255{bottom:765.405000px;}
.y56_c00255{bottom:766.470000px;}
.y51_c00255{bottom:782.745000px;}
.y52_c00255{bottom:783.630000px;}
.y4f_c00255{bottom:784.905000px;}
.y50_c00255{bottom:785.970000px;}
.y4d_c00255{bottom:801.405000px;}
.y4c_c00255{bottom:802.245000px;}
.y4b_c00255{bottom:803.130000px;}
.y4e_c00255{bottom:803.970000px;}
.y4a_c00255{bottom:804.405000px;}
.y48_c00255{bottom:820.905000px;}
.y45_c00255{bottom:822.825000px;}
.y46_c00255{bottom:823.470000px;}
.y44_c00255{bottom:823.905000px;}
.y49_c00255{bottom:824.130000px;}
.y47_c00255{bottom:824.970000px;}
.y40_c00255{bottom:840.825000px;}
.y42_c00255{bottom:841.245000px;}
.y41_c00255{bottom:842.130000px;}
.y43_c00255{bottom:842.970000px;}
.y3e_c00255{bottom:843.405000px;}
.y3f_c00255{bottom:844.470000px;}
.y3d_c00255{bottom:860.745000px;}
.y3c_c00255{bottom:862.905000px;}
.y3b_c00255{bottom:863.970000px;}
.y3a_c00255{bottom:879.405000px;}
.y35_c00255{bottom:880.245000px;}
.y39_c00255{bottom:881.745000px;}
.y34_c00255{bottom:882.405000px;}
.y38_c00255{bottom:882.630000px;}
.y36_c00255{bottom:883.470000px;}
.y37_c00255{bottom:883.905000px;}
.y2e_c00255{bottom:899.745000px;}
.y33_c00255{bottom:901.245000px;}
.y2f_c00255{bottom:901.905000px;}
.y32_c00255{bottom:902.325000px;}
.y30_c00255{bottom:902.970000px;}
.y31_c00255{bottom:903.405000px;}
.y2d_c00255{bottom:920.745000px;}
.y2a_c00255{bottom:921.405000px;}
.y2c_c00255{bottom:922.470000px;}
.y2b_c00255{bottom:922.905000px;}
.y24_c00255{bottom:938.745000px;}
.y27_c00255{bottom:938.970000px;}
.y25_c00255{bottom:939.180000px;}
.y28_c00255{bottom:939.405000px;}
.y29_c00255{bottom:939.825000px;}
.y23_c00255{bottom:940.245000px;}
.y26_c00255{bottom:941.130000px;}
.y22_c00255{bottom:942.405000px;}
.y1e_c00255{bottom:959.745000px;}
.y21_c00255{bottom:959.970000px;}
.y1f_c00255{bottom:960.825000px;}
.y1d_c00255{bottom:961.470000px;}
.y1c_c00255{bottom:961.905000px;}
.y20_c00255{bottom:962.130000px;}
.y17_c00255{bottom:979.245000px;}
.y1a_c00255{bottom:980.745000px;}
.y1b_c00255{bottom:980.970000px;}
.y16_c00255{bottom:981.405000px;}
.y19_c00255{bottom:981.630000px;}
.y18_c00255{bottom:982.470000px;}
.y11_c00255{bottom:998.745000px;}
.y15_c00255{bottom:999.825000px;}
.y12_c00255{bottom:1000.905000px;}
.y13_c00255{bottom:1001.130000px;}
.y14_c00255{bottom:1001.970000px;}
.yd_c00255{bottom:1018.245000px;}
.yf_c00255{bottom:1018.470000px;}
.ye_c00255{bottom:1020.405000px;}
.y10_c00255{bottom:1021.470000px;}
.ya_c00255{bottom:1038.180000px;}
.y9_c00255{bottom:1039.245000px;}
.y8_c00255{bottom:1039.905000px;}
.yb_c00255{bottom:1040.130000px;}
.yc_c00255{bottom:1041.405000px;}
.y7_c00255{bottom:1058.325000px;}
.y6_c00255{bottom:1058.745000px;}
.y4_c00255{bottom:1058.970000px;}
.y3_c00255{bottom:1060.470000px;}
.y5_c00255{bottom:1060.905000px;}
.y2_c00255{bottom:1099.050000px;}
.y1_c00255{bottom:1099.905000px;}
.h8_c00255{height:4.206533px;}
.h7_c00255{height:23.025234px;}
.h2_c00255{height:25.091602px;}
.h3_c00255{height:31.364502px;}
.h1_c00255{height:35.571035px;}
.h5_c00255{height:39.777568px;}
.h4_c00255{height:43.910303px;}
.h6_c00255{height:48.116836px;}
.h0_c00255{height:1335.000000px;}
.w0_c00255{width:880.500000px;}
.x0_c00255{left:0.000000px;}
.x1_c00255{left:148.080000px;}
.xf_c00255{left:150.000000px;}
.x39_c00255{left:151.500000px;}
.xa2_c00255{left:152.580000px;}
.xf5_c00255{left:154.275000px;}
.x3_c00255{left:165.000000px;}
.xba_c00255{left:166.500000px;}
.xa4_c00255{left:168.000000px;}
.xcb_c00255{left:169.500000px;}
.x90_c00255{left:172.500000px;}
.xdf_c00255{left:174.420000px;}
.x30_c00255{left:176.580000px;}
.x6d_c00255{left:180.000000px;}
.xa3_c00255{left:182.580000px;}
.x7b_c00255{left:189.000000px;}
.x42_c00255{left:191.580000px;}
.x58_c00255{left:195.420000px;}
.x5e_c00255{left:198.000000px;}
.x4_c00255{left:199.500000px;}
.x65_c00255{left:201.645000px;}
.x101_c00255{left:204.000000px;}
.xbb_c00255{left:205.500000px;}
.x73_c00255{left:207.420000px;}
.x8c_c00255{left:208.500000px;}
.x6e_c00255{left:211.500000px;}
.xa5_c00255{left:216.000000px;}
.xab_c00255{left:217.500000px;}
.xf6_c00255{left:219.000000px;}
.x97_c00255{left:220.080000px;}
.x84_c00255{left:221.580000px;}
.x26_c00255{left:223.080000px;}
.x19_c00255{left:226.080000px;}
.x3a_c00255{left:228.000000px;}
.x91_c00255{left:231.000000px;}
.xe4_c00255{left:233.580000px;}
.xd8_c00255{left:238.500000px;}
.x4f_c00255{left:240.000000px;}
.xf0_c00255{left:241.500000px;}
.x10_c00255{left:244.080000px;}
.xc8_c00255{left:246.000000px;}
.x43_c00255{left:248.580000px;}
.x5_c00255{left:250.080000px;}
.x85_c00255{left:252.420000px;}
.xac_c00255{left:253.920000px;}
.x7c_c00255{left:255.420000px;}
.xcc_c00255{left:259.500000px;}
.x102_c00255{left:261.420000px;}
.x27_c00255{left:262.920000px;}
.x44_c00255{left:265.920000px;}
.xbf_c00255{left:267.000000px;}
.x66_c00255{left:268.080000px;}
.x5f_c00255{left:270.000000px;}
.x6_c00255{left:271.500000px;}
.x1a_c00255{left:276.000000px;}
.x86_c00255{left:277.500000px;}
.x92_c00255{left:279.000000px;}
.xcd_c00255{left:280.500000px;}
.xd9_c00255{left:282.000000px;}
.x31_c00255{left:283.920000px;}
.xa6_c00255{left:286.500000px;}
.xc0_c00255{left:288.000000px;}
.x7d_c00255{left:289.080000px;}
.x45_c00255{left:291.000000px;}
.xea_c00255{left:295.080000px;}
.x11_c00255{left:298.500000px;}
.xd2_c00255{left:303.000000px;}
.x87_c00255{left:304.920000px;}
.xa7_c00255{left:308.580000px;}
.xad_c00255{left:310.500000px;}
.xb7_c00255{left:312.000000px;}
.xe5_c00255{left:313.500000px;}
.x6f_c00255{left:314.580000px;}
.xda_c00255{left:316.500000px;}
.x50_c00255{left:318.000000px;}
.xf1_c00255{left:319.500000px;}
.x7e_c00255{left:322.080000px;}
.xd3_c00255{left:323.580000px;}
.x32_c00255{left:325.500000px;}
.x74_c00255{left:327.000000px;}
.x3b_c00255{left:328.500000px;}
.x1b_c00255{left:329.580000px;}
.x28_c00255{left:334.500000px;}
.xf2_c00255{left:337.500000px;}
.x59_c00255{left:339.420000px;}
.x98_c00255{left:342.000000px;}
.x7_c00255{left:343.500000px;}
.xb5_c00255{left:345.000000px;}
.xce_c00255{left:346.275000px;}
.x9b_c00255{left:348.000000px;}
.x46_c00255{left:349.080000px;}
.x51_c00255{left:351.000000px;}
.x29_c00255{left:354.420000px;}
.xc1_c00255{left:355.500000px;}
.x8d_c00255{left:360.000000px;}
.xae_c00255{left:363.000000px;}
.x12_c00255{left:364.500000px;}
.x47_c00255{left:366.420000px;}
.xdb_c00255{left:368.580000px;}
.x93_c00255{left:370.920000px;}
.xc2_c00255{left:373.500000px;}
.x3c_c00255{left:374.580000px;}
.x9c_c00255{left:376.500000px;}
.x52_c00255{left:378.000000px;}
.x1c_c00255{left:379.920000px;}
.x75_c00255{left:381.000000px;}
.x88_c00255{left:382.920000px;}
.xc9_c00255{left:384.000000px;}
.x13_c00255{left:387.000000px;}
.x60_c00255{left:388.920000px;}
.x8e_c00255{left:390.000000px;}
.x48_c00255{left:391.920000px;}
.x2a_c00255{left:394.500000px;}
.x5a_c00255{left:399.000000px;}
.x67_c00255{left:400.080000px;}
.x33_c00255{left:403.500000px;}
.xeb_c00255{left:405.000000px;}
.x2_c00255{left:406.500000px;}
.xfc_c00255{left:408.000000px;}
.x99_c00255{left:411.000000px;}
.xf7_c00255{left:414.000000px;}
.xaf_c00255{left:415.500000px;}
.x1d_c00255{left:417.000000px;}
.x68_c00255{left:418.920000px;}
.x8_c00255{left:422.580000px;}
.x61_c00255{left:424.500000px;}
.x3d_c00255{left:426.420000px;}
.x70_c00255{left:427.500000px;}
.xf3_c00255{left:428.580000px;}
.x9d_c00255{left:432.000000px;}
.xb0_c00255{left:435.420000px;}
.x34_c00255{left:436.500000px;}
.xe0_c00255{left:439.080000px;}
.x9_c00255{left:444.420000px;}
.xe6_c00255{left:445.500000px;}
.x14_c00255{left:446.580000px;}
.xb4_c00255{left:448.500000px;}
.xb8_c00255{left:450.000000px;}
.x2b_c00255{left:451.500000px;}
.x62_c00255{left:453.000000px;}
.xf8_c00255{left:454.500000px;}
.x69_c00255{left:456.000000px;}
.x5b_c00255{left:459.420000px;}
.x53_c00255{left:460.500000px;}
.xb1_c00255{left:462.000000px;}
.x76_c00255{left:463.920000px;}
.xbc_c00255{left:465.000000px;}
.xec_c00255{left:466.080000px;}
.x1e_c00255{left:467.580000px;}
.x9e_c00255{left:472.080000px;}
.xa_c00255{left:474.000000px;}
.x7f_c00255{left:475.920000px;}
.x2c_c00255{left:477.000000px;}
.xa8_c00255{left:478.500000px;}
.xfd_c00255{left:479.580000px;}
.x49_c00255{left:481.080000px;}
.x8f_c00255{left:483.000000px;}
.xd4_c00255{left:487.080000px;}
.xb6_c00255{left:488.580000px;}
.x77_c00255{left:490.500000px;}
.xbd_c00255{left:492.420000px;}
.x9f_c00255{left:493.500000px;}
.x54_c00255{left:495.420000px;}
.x63_c00255{left:496.500000px;}
.x80_c00255{left:504.000000px;}
.x15_c00255{left:508.080000px;}
.x1f_c00255{left:510.420000px;}
.xca_c00255{left:513.000000px;}
.xbe_c00255{left:514.920000px;}
.xc3_c00255{left:519.000000px;}
.x55_c00255{left:522.000000px;}
.xe7_c00255{left:525.420000px;}
.x4a_c00255{left:527.580000px;}
.xb2_c00255{left:529.500000px;}
.xb_c00255{left:532.500000px;}
.xb9_c00255{left:534.000000px;}
.xe1_c00255{left:535.080000px;}
.x94_c00255{left:536.580000px;}
.x78_c00255{left:538.500000px;}
.x3e_c00255{left:544.500000px;}
.x4b_c00255{left:545.580000px;}
.xed_c00255{left:549.000000px;}
.x81_c00255{left:550.080000px;}
.xcf_c00255{left:553.080000px;}
.xd5_c00255{left:554.580000px;}
.x16_c00255{left:556.275000px;}
.x35_c00255{left:561.000000px;}
.x2d_c00255{left:568.080000px;}
.x82_c00255{left:570.420000px;}
.xf9_c00255{left:573.000000px;}
.x89_c00255{left:576.000000px;}
.x4c_c00255{left:577.500000px;}
.xc4_c00255{left:578.580000px;}
.x56_c00255{left:580.500000px;}
.xd6_c00255{left:581.580000px;}
.xa0_c00255{left:583.500000px;}
.xc_c00255{left:588.000000px;}
.xa9_c00255{left:589.920000px;}
.x20_c00255{left:591.420000px;}
.x9a_c00255{left:592.500000px;}
.x21_c00255{left:598.080000px;}
.xfa_c00255{left:600.000000px;}
.xd0_c00255{left:601.500000px;}
.x6a_c00255{left:604.500000px;}
.x95_c00255{left:606.420000px;}
.xd_c00255{left:607.500000px;}
.x22_c00255{left:609.000000px;}
.xdc_c00255{left:610.500000px;}
.x83_c00255{left:612.000000px;}
.x3f_c00255{left:613.500000px;}
.x8a_c00255{left:616.920000px;}
.x36_c00255{left:618.000000px;}
.x4d_c00255{left:620.580000px;}
.x17_c00255{left:622.080000px;}
.x2e_c00255{left:624.000000px;}
.xfe_c00255{left:625.080000px;}
.xc5_c00255{left:626.775000px;}
.x5c_c00255{left:628.500000px;}
.xee_c00255{left:631.500000px;}
.xe2_c00255{left:633.000000px;}
.xf4_c00255{left:635.580000px;}
.xd1_c00255{left:637.080000px;}
.x71_c00255{left:639.000000px;}
.xdd_c00255{left:640.500000px;}
.x23_c00255{left:641.580000px;}
.xff_c00255{left:643.080000px;}
.xe8_c00255{left:645.420000px;}
.x37_c00255{left:648.000000px;}
.x79_c00255{left:651.000000px;}
.x40_c00255{left:652.500000px;}
.x57_c00255{left:654.000000px;}
.x64_c00255{left:655.920000px;}
.xc6_c00255{left:657.000000px;}
.xe_c00255{left:658.500000px;}
.x2f_c00255{left:659.580000px;}
.x24_c00255{left:661.920000px;}
.x4e_c00255{left:663.000000px;}
.x5d_c00255{left:666.000000px;}
.xe3_c00255{left:667.500000px;}
.x6b_c00255{left:669.420000px;}
.xe9_c00255{left:672.000000px;}
.xef_c00255{left:673.500000px;}
.xc7_c00255{left:675.000000px;}
.xaa_c00255{left:676.500000px;}
.xd7_c00255{left:682.080000px;}
.xb3_c00255{left:683.580000px;}
.x96_c00255{left:685.500000px;}
.x41_c00255{left:686.580000px;}
.xa1_c00255{left:690.000000px;}
.x100_c00255{left:691.500000px;}
.xde_c00255{left:692.580000px;}
.x8b_c00255{left:697.920000px;}
.x6c_c00255{left:700.920000px;}
.x25_c00255{left:702.000000px;}
.x18_c00255{left:703.920000px;}
.x7a_c00255{left:705.000000px;}
.x38_c00255{left:706.920000px;}
.xfb_c00255{left:709.920000px;}
.x72_c00255{left:715.500000px;}
@media print{
.v0_c00255{vertical-align:0.000000pt;}
.ls0_c00255{letter-spacing:0.000000pt;}
.ws0_c00255{word-spacing:-1.358518pt;}
.ws1_c00255{word-spacing:-0.828180pt;}
.ws2_c00255{word-spacing:0.000000pt;}
.fs7_c00255{font-size:3.040000pt;}
.fs6_c00255{font-size:16.640000pt;}
.fs1_c00255{font-size:18.133333pt;}
.fs2_c00255{font-size:22.666667pt;}
.fs0_c00255{font-size:25.706667pt;}
.fs4_c00255{font-size:28.746667pt;}
.fs3_c00255{font-size:31.733333pt;}
.fs5_c00255{font-size:34.773333pt;}
.y0_c00255{bottom:0.000000pt;}
.yc3_c00255{bottom:221.106667pt;}
.yc2_c00255{bottom:223.026667pt;}
.yc5_c00255{bottom:223.226667pt;}
.yc4_c00255{bottom:224.360000pt;}
.ybe_c00255{bottom:237.693333pt;}
.ybf_c00255{bottom:238.640000pt;}
.yc0_c00255{bottom:239.773333pt;}
.ybc_c00255{bottom:240.360000pt;}
.yc1_c00255{bottom:240.733333pt;}
.ybd_c00255{bottom:241.693333pt;}
.yb6_c00255{bottom:255.026667pt;}
.yb5_c00255{bottom:255.773333pt;}
.yba_c00255{bottom:257.106667pt;}
.yb7_c00255{bottom:257.693333pt;}
.yb9_c00255{bottom:257.893333pt;}
.yb8_c00255{bottom:259.026667pt;}
.ybb_c00255{bottom:259.973333pt;}
.yb0_c00255{bottom:274.440000pt;}
.yb2_c00255{bottom:275.400000pt;}
.yb4_c00255{bottom:275.973333pt;}
.yb1_c00255{bottom:276.360000pt;}
.yb3_c00255{bottom:276.560000pt;}
.yac_c00255{bottom:291.773333pt;}
.yaf_c00255{bottom:292.933333pt;}
.yaa_c00255{bottom:293.693333pt;}
.yad_c00255{bottom:293.893333pt;}
.yae_c00255{bottom:294.640000pt;}
.yab_c00255{bottom:295.040000pt;}
.ya7_c00255{bottom:307.773333pt;}
.ya8_c00255{bottom:311.026667pt;}
.ya9_c00255{bottom:312.360000pt;}
.ya2_c00255{bottom:326.440000pt;}
.ya3_c00255{bottom:328.360000pt;}
.ya6_c00255{bottom:328.560000pt;}
.ya5_c00255{bottom:328.733333pt;}
.ya4_c00255{bottom:329.693333pt;}
.ya1_c00255{bottom:345.106667pt;}
.ya0_c00255{bottom:347.026667pt;}
.y9f_c00255{bottom:361.306667pt;}
.y9d_c00255{bottom:362.440000pt;}
.y9e_c00255{bottom:363.226667pt;}
.y9b_c00255{bottom:364.360000pt;}
.y9c_c00255{bottom:364.373333pt;}
.y99_c00255{bottom:379.773333pt;}
.y9a_c00255{bottom:381.693333pt;}
.y98_c00255{bottom:397.106667pt;}
.y95_c00255{bottom:399.026667pt;}
.y96_c00255{bottom:399.226667pt;}
.y97_c00255{bottom:400.373333pt;}
.y8f_c00255{bottom:414.826667pt;}
.y93_c00255{bottom:415.026667pt;}
.y92_c00255{bottom:415.773333pt;}
.y91_c00255{bottom:416.733333pt;}
.y94_c00255{bottom:417.693333pt;}
.y90_c00255{bottom:417.706667pt;}
.y8c_c00255{bottom:432.160000pt;}
.y8b_c00255{bottom:433.106667pt;}
.y8e_c00255{bottom:434.066667pt;}
.y8d_c00255{bottom:434.640000pt;}
.y8a_c00255{bottom:435.026667pt;}
.y85_c00255{bottom:450.440000pt;}
.y89_c00255{bottom:451.973333pt;}
.y87_c00255{bottom:452.360000pt;}
.y86_c00255{bottom:452.373333pt;}
.y88_c00255{bottom:453.306667pt;}
.y82_c00255{bottom:475.400000pt;}
.y81_c00255{bottom:476.360000pt;}
.y84_c00255{bottom:476.933333pt;}
.y80_c00255{bottom:477.306667pt;}
.y83_c00255{bottom:477.893333pt;}
.y7f_c00255{bottom:492.933333pt;}
.y7e_c00255{bottom:493.693333pt;}
.y7d_c00255{bottom:495.600000pt;}
.y7c_c00255{bottom:514.440000pt;}
.y7a_c00255{bottom:516.360000pt;}
.y7b_c00255{bottom:517.306667pt;}
.y77_c00255{bottom:553.693333pt;}
.y74_c00255{bottom:554.440000pt;}
.y79_c00255{bottom:555.773333pt;}
.y75_c00255{bottom:556.360000pt;}
.y76_c00255{bottom:557.306667pt;}
.y78_c00255{bottom:557.693333pt;}
.y71_c00255{bottom:573.106667pt;}
.y6f_c00255{bottom:573.693333pt;}
.y72_c00255{bottom:573.893333pt;}
.y70_c00255{bottom:575.026667pt;}
.y73_c00255{bottom:575.973333pt;}
.y6d_c00255{bottom:589.693333pt;}
.y6e_c00255{bottom:590.440000pt;}
.y6b_c00255{bottom:592.360000pt;}
.y6c_c00255{bottom:592.560000pt;}
.y6a_c00255{bottom:606.640000pt;}
.y69_c00255{bottom:607.773333pt;}
.y68_c00255{bottom:624.360000pt;}
.y64_c00255{bottom:625.106667pt;}
.y65_c00255{bottom:625.306667pt;}
.y63_c00255{bottom:627.026667pt;}
.y67_c00255{bottom:627.226667pt;}
.y66_c00255{bottom:627.973333pt;}
.y61_c00255{bottom:641.693333pt;}
.y5f_c00255{bottom:642.440000pt;}
.y60_c00255{bottom:644.360000pt;}
.y62_c00255{bottom:645.306667pt;}
.y5e_c00255{bottom:661.106667pt;}
.y59_c00255{bottom:661.693333pt;}
.y5d_c00255{bottom:661.893333pt;}
.y5c_c00255{bottom:662.640000pt;}
.y5a_c00255{bottom:663.026667pt;}
.y5b_c00255{bottom:663.973333pt;}
.y55_c00255{bottom:678.440000pt;}
.y53_c00255{bottom:679.026667pt;}
.y57_c00255{bottom:679.226667pt;}
.y58_c00255{bottom:679.400000pt;}
.y54_c00255{bottom:680.360000pt;}
.y56_c00255{bottom:681.306667pt;}
.y51_c00255{bottom:695.773333pt;}
.y52_c00255{bottom:696.560000pt;}
.y4f_c00255{bottom:697.693333pt;}
.y50_c00255{bottom:698.640000pt;}
.y4d_c00255{bottom:712.360000pt;}
.y4c_c00255{bottom:713.106667pt;}
.y4b_c00255{bottom:713.893333pt;}
.y4e_c00255{bottom:714.640000pt;}
.y4a_c00255{bottom:715.026667pt;}
.y48_c00255{bottom:729.693333pt;}
.y45_c00255{bottom:731.400000pt;}
.y46_c00255{bottom:731.973333pt;}
.y44_c00255{bottom:732.360000pt;}
.y49_c00255{bottom:732.560000pt;}
.y47_c00255{bottom:733.306667pt;}
.y40_c00255{bottom:747.400000pt;}
.y42_c00255{bottom:747.773333pt;}
.y41_c00255{bottom:748.560000pt;}
.y43_c00255{bottom:749.306667pt;}
.y3e_c00255{bottom:749.693333pt;}
.y3f_c00255{bottom:750.640000pt;}
.y3d_c00255{bottom:765.106667pt;}
.y3c_c00255{bottom:767.026667pt;}
.y3b_c00255{bottom:767.973333pt;}
.y3a_c00255{bottom:781.693333pt;}
.y35_c00255{bottom:782.440000pt;}
.y39_c00255{bottom:783.773333pt;}
.y34_c00255{bottom:784.360000pt;}
.y38_c00255{bottom:784.560000pt;}
.y36_c00255{bottom:785.306667pt;}
.y37_c00255{bottom:785.693333pt;}
.y2e_c00255{bottom:799.773333pt;}
.y33_c00255{bottom:801.106667pt;}
.y2f_c00255{bottom:801.693333pt;}
.y32_c00255{bottom:802.066667pt;}
.y30_c00255{bottom:802.640000pt;}
.y31_c00255{bottom:803.026667pt;}
.y2d_c00255{bottom:818.440000pt;}
.y2a_c00255{bottom:819.026667pt;}
.y2c_c00255{bottom:819.973333pt;}
.y2b_c00255{bottom:820.360000pt;}
.y24_c00255{bottom:834.440000pt;}
.y27_c00255{bottom:834.640000pt;}
.y25_c00255{bottom:834.826667pt;}
.y28_c00255{bottom:835.026667pt;}
.y29_c00255{bottom:835.400000pt;}
.y23_c00255{bottom:835.773333pt;}
.y26_c00255{bottom:836.560000pt;}
.y22_c00255{bottom:837.693333pt;}
.y1e_c00255{bottom:853.106667pt;}
.y21_c00255{bottom:853.306667pt;}
.y1f_c00255{bottom:854.066667pt;}
.y1d_c00255{bottom:854.640000pt;}
.y1c_c00255{bottom:855.026667pt;}
.y20_c00255{bottom:855.226667pt;}
.y17_c00255{bottom:870.440000pt;}
.y1a_c00255{bottom:871.773333pt;}
.y1b_c00255{bottom:871.973333pt;}
.y16_c00255{bottom:872.360000pt;}
.y19_c00255{bottom:872.560000pt;}
.y18_c00255{bottom:873.306667pt;}
.y11_c00255{bottom:887.773333pt;}
.y15_c00255{bottom:888.733333pt;}
.y12_c00255{bottom:889.693333pt;}
.y13_c00255{bottom:889.893333pt;}
.y14_c00255{bottom:890.640000pt;}
.yd_c00255{bottom:905.106667pt;}
.yf_c00255{bottom:905.306667pt;}
.ye_c00255{bottom:907.026667pt;}
.y10_c00255{bottom:907.973333pt;}
.ya_c00255{bottom:922.826667pt;}
.y9_c00255{bottom:923.773333pt;}
.y8_c00255{bottom:924.360000pt;}
.yb_c00255{bottom:924.560000pt;}
.yc_c00255{bottom:925.693333pt;}
.y7_c00255{bottom:940.733333pt;}
.y6_c00255{bottom:941.106667pt;}
.y4_c00255{bottom:941.306667pt;}
.y3_c00255{bottom:942.640000pt;}
.y5_c00255{bottom:943.026667pt;}
.y2_c00255{bottom:976.933333pt;}
.y1_c00255{bottom:977.693333pt;}
.h8_c00255{height:3.739141pt;}
.h7_c00255{height:20.466875pt;}
.h2_c00255{height:22.303646pt;}
.h3_c00255{height:27.879557pt;}
.h1_c00255{height:31.618698pt;}
.h5_c00255{height:35.357839pt;}
.h4_c00255{height:39.031380pt;}
.h6_c00255{height:42.770521pt;}
.h0_c00255{height:1186.666667pt;}
.w0_c00255{width:782.666667pt;}
.x0_c00255{left:0.000000pt;}
.x1_c00255{left:131.626667pt;}
.xf_c00255{left:133.333333pt;}
.x39_c00255{left:134.666667pt;}
.xa2_c00255{left:135.626667pt;}
.xf5_c00255{left:137.133333pt;}
.x3_c00255{left:146.666667pt;}
.xba_c00255{left:148.000000pt;}
.xa4_c00255{left:149.333333pt;}
.xcb_c00255{left:150.666667pt;}
.x90_c00255{left:153.333333pt;}
.xdf_c00255{left:155.040000pt;}
.x30_c00255{left:156.960000pt;}
.x6d_c00255{left:160.000000pt;}
.xa3_c00255{left:162.293333pt;}
.x7b_c00255{left:168.000000pt;}
.x42_c00255{left:170.293333pt;}
.x58_c00255{left:173.706667pt;}
.x5e_c00255{left:176.000000pt;}
.x4_c00255{left:177.333333pt;}
.x65_c00255{left:179.240000pt;}
.x101_c00255{left:181.333333pt;}
.xbb_c00255{left:182.666667pt;}
.x73_c00255{left:184.373333pt;}
.x8c_c00255{left:185.333333pt;}
.x6e_c00255{left:188.000000pt;}
.xa5_c00255{left:192.000000pt;}
.xab_c00255{left:193.333333pt;}
.xf6_c00255{left:194.666667pt;}
.x97_c00255{left:195.626667pt;}
.x84_c00255{left:196.960000pt;}
.x26_c00255{left:198.293333pt;}
.x19_c00255{left:200.960000pt;}
.x3a_c00255{left:202.666667pt;}
.x91_c00255{left:205.333333pt;}
.xe4_c00255{left:207.626667pt;}
.xd8_c00255{left:212.000000pt;}
.x4f_c00255{left:213.333333pt;}
.xf0_c00255{left:214.666667pt;}
.x10_c00255{left:216.960000pt;}
.xc8_c00255{left:218.666667pt;}
.x43_c00255{left:220.960000pt;}
.x5_c00255{left:222.293333pt;}
.x85_c00255{left:224.373333pt;}
.xac_c00255{left:225.706667pt;}
.x7c_c00255{left:227.040000pt;}
.xcc_c00255{left:230.666667pt;}
.x102_c00255{left:232.373333pt;}
.x27_c00255{left:233.706667pt;}
.x44_c00255{left:236.373333pt;}
.xbf_c00255{left:237.333333pt;}
.x66_c00255{left:238.293333pt;}
.x5f_c00255{left:240.000000pt;}
.x6_c00255{left:241.333333pt;}
.x1a_c00255{left:245.333333pt;}
.x86_c00255{left:246.666667pt;}
.x92_c00255{left:248.000000pt;}
.xcd_c00255{left:249.333333pt;}
.xd9_c00255{left:250.666667pt;}
.x31_c00255{left:252.373333pt;}
.xa6_c00255{left:254.666667pt;}
.xc0_c00255{left:256.000000pt;}
.x7d_c00255{left:256.960000pt;}
.x45_c00255{left:258.666667pt;}
.xea_c00255{left:262.293333pt;}
.x11_c00255{left:265.333333pt;}
.xd2_c00255{left:269.333333pt;}
.x87_c00255{left:271.040000pt;}
.xa7_c00255{left:274.293333pt;}
.xad_c00255{left:276.000000pt;}
.xb7_c00255{left:277.333333pt;}
.xe5_c00255{left:278.666667pt;}
.x6f_c00255{left:279.626667pt;}
.xda_c00255{left:281.333333pt;}
.x50_c00255{left:282.666667pt;}
.xf1_c00255{left:284.000000pt;}
.x7e_c00255{left:286.293333pt;}
.xd3_c00255{left:287.626667pt;}
.x32_c00255{left:289.333333pt;}
.x74_c00255{left:290.666667pt;}
.x3b_c00255{left:292.000000pt;}
.x1b_c00255{left:292.960000pt;}
.x28_c00255{left:297.333333pt;}
.xf2_c00255{left:300.000000pt;}
.x59_c00255{left:301.706667pt;}
.x98_c00255{left:304.000000pt;}
.x7_c00255{left:305.333333pt;}
.xb5_c00255{left:306.666667pt;}
.xce_c00255{left:307.800000pt;}
.x9b_c00255{left:309.333333pt;}
.x46_c00255{left:310.293333pt;}
.x51_c00255{left:312.000000pt;}
.x29_c00255{left:315.040000pt;}
.xc1_c00255{left:316.000000pt;}
.x8d_c00255{left:320.000000pt;}
.xae_c00255{left:322.666667pt;}
.x12_c00255{left:324.000000pt;}
.x47_c00255{left:325.706667pt;}
.xdb_c00255{left:327.626667pt;}
.x93_c00255{left:329.706667pt;}
.xc2_c00255{left:332.000000pt;}
.x3c_c00255{left:332.960000pt;}
.x9c_c00255{left:334.666667pt;}
.x52_c00255{left:336.000000pt;}
.x1c_c00255{left:337.706667pt;}
.x75_c00255{left:338.666667pt;}
.x88_c00255{left:340.373333pt;}
.xc9_c00255{left:341.333333pt;}
.x13_c00255{left:344.000000pt;}
.x60_c00255{left:345.706667pt;}
.x8e_c00255{left:346.666667pt;}
.x48_c00255{left:348.373333pt;}
.x2a_c00255{left:350.666667pt;}
.x5a_c00255{left:354.666667pt;}
.x67_c00255{left:355.626667pt;}
.x33_c00255{left:358.666667pt;}
.xeb_c00255{left:360.000000pt;}
.x2_c00255{left:361.333333pt;}
.xfc_c00255{left:362.666667pt;}
.x99_c00255{left:365.333333pt;}
.xf7_c00255{left:368.000000pt;}
.xaf_c00255{left:369.333333pt;}
.x1d_c00255{left:370.666667pt;}
.x68_c00255{left:372.373333pt;}
.x8_c00255{left:375.626667pt;}
.x61_c00255{left:377.333333pt;}
.x3d_c00255{left:379.040000pt;}
.x70_c00255{left:380.000000pt;}
.xf3_c00255{left:380.960000pt;}
.x9d_c00255{left:384.000000pt;}
.xb0_c00255{left:387.040000pt;}
.x34_c00255{left:388.000000pt;}
.xe0_c00255{left:390.293333pt;}
.x9_c00255{left:395.040000pt;}
.xe6_c00255{left:396.000000pt;}
.x14_c00255{left:396.960000pt;}
.xb4_c00255{left:398.666667pt;}
.xb8_c00255{left:400.000000pt;}
.x2b_c00255{left:401.333333pt;}
.x62_c00255{left:402.666667pt;}
.xf8_c00255{left:404.000000pt;}
.x69_c00255{left:405.333333pt;}
.x5b_c00255{left:408.373333pt;}
.x53_c00255{left:409.333333pt;}
.xb1_c00255{left:410.666667pt;}
.x76_c00255{left:412.373333pt;}
.xbc_c00255{left:413.333333pt;}
.xec_c00255{left:414.293333pt;}
.x1e_c00255{left:415.626667pt;}
.x9e_c00255{left:419.626667pt;}
.xa_c00255{left:421.333333pt;}
.x7f_c00255{left:423.040000pt;}
.x2c_c00255{left:424.000000pt;}
.xa8_c00255{left:425.333333pt;}
.xfd_c00255{left:426.293333pt;}
.x49_c00255{left:427.626667pt;}
.x8f_c00255{left:429.333333pt;}
.xd4_c00255{left:432.960000pt;}
.xb6_c00255{left:434.293333pt;}
.x77_c00255{left:436.000000pt;}
.xbd_c00255{left:437.706667pt;}
.x9f_c00255{left:438.666667pt;}
.x54_c00255{left:440.373333pt;}
.x63_c00255{left:441.333333pt;}
.x80_c00255{left:448.000000pt;}
.x15_c00255{left:451.626667pt;}
.x1f_c00255{left:453.706667pt;}
.xca_c00255{left:456.000000pt;}
.xbe_c00255{left:457.706667pt;}
.xc3_c00255{left:461.333333pt;}
.x55_c00255{left:464.000000pt;}
.xe7_c00255{left:467.040000pt;}
.x4a_c00255{left:468.960000pt;}
.xb2_c00255{left:470.666667pt;}
.xb_c00255{left:473.333333pt;}
.xb9_c00255{left:474.666667pt;}
.xe1_c00255{left:475.626667pt;}
.x94_c00255{left:476.960000pt;}
.x78_c00255{left:478.666667pt;}
.x3e_c00255{left:484.000000pt;}
.x4b_c00255{left:484.960000pt;}
.xed_c00255{left:488.000000pt;}
.x81_c00255{left:488.960000pt;}
.xcf_c00255{left:491.626667pt;}
.xd5_c00255{left:492.960000pt;}
.x16_c00255{left:494.466667pt;}
.x35_c00255{left:498.666667pt;}
.x2d_c00255{left:504.960000pt;}
.x82_c00255{left:507.040000pt;}
.xf9_c00255{left:509.333333pt;}
.x89_c00255{left:512.000000pt;}
.x4c_c00255{left:513.333333pt;}
.xc4_c00255{left:514.293333pt;}
.x56_c00255{left:516.000000pt;}
.xd6_c00255{left:516.960000pt;}
.xa0_c00255{left:518.666667pt;}
.xc_c00255{left:522.666667pt;}
.xa9_c00255{left:524.373333pt;}
.x20_c00255{left:525.706667pt;}
.x9a_c00255{left:526.666667pt;}
.x21_c00255{left:531.626667pt;}
.xfa_c00255{left:533.333333pt;}
.xd0_c00255{left:534.666667pt;}
.x6a_c00255{left:537.333333pt;}
.x95_c00255{left:539.040000pt;}
.xd_c00255{left:540.000000pt;}
.x22_c00255{left:541.333333pt;}
.xdc_c00255{left:542.666667pt;}
.x83_c00255{left:544.000000pt;}
.x3f_c00255{left:545.333333pt;}
.x8a_c00255{left:548.373333pt;}
.x36_c00255{left:549.333333pt;}
.x4d_c00255{left:551.626667pt;}
.x17_c00255{left:552.960000pt;}
.x2e_c00255{left:554.666667pt;}
.xfe_c00255{left:555.626667pt;}
.xc5_c00255{left:557.133333pt;}
.x5c_c00255{left:558.666667pt;}
.xee_c00255{left:561.333333pt;}
.xe2_c00255{left:562.666667pt;}
.xf4_c00255{left:564.960000pt;}
.xd1_c00255{left:566.293333pt;}
.x71_c00255{left:568.000000pt;}
.xdd_c00255{left:569.333333pt;}
.x23_c00255{left:570.293333pt;}
.xff_c00255{left:571.626667pt;}
.xe8_c00255{left:573.706667pt;}
.x37_c00255{left:576.000000pt;}
.x79_c00255{left:578.666667pt;}
.x40_c00255{left:580.000000pt;}
.x57_c00255{left:581.333333pt;}
.x64_c00255{left:583.040000pt;}
.xc6_c00255{left:584.000000pt;}
.xe_c00255{left:585.333333pt;}
.x2f_c00255{left:586.293333pt;}
.x24_c00255{left:588.373333pt;}
.x4e_c00255{left:589.333333pt;}
.x5d_c00255{left:592.000000pt;}
.xe3_c00255{left:593.333333pt;}
.x6b_c00255{left:595.040000pt;}
.xe9_c00255{left:597.333333pt;}
.xef_c00255{left:598.666667pt;}
.xc7_c00255{left:600.000000pt;}
.xaa_c00255{left:601.333333pt;}
.xd7_c00255{left:606.293333pt;}
.xb3_c00255{left:607.626667pt;}
.x96_c00255{left:609.333333pt;}
.x41_c00255{left:610.293333pt;}
.xa1_c00255{left:613.333333pt;}
.x100_c00255{left:614.666667pt;}
.xde_c00255{left:615.626667pt;}
.x8b_c00255{left:620.373333pt;}
.x6c_c00255{left:623.040000pt;}
.x25_c00255{left:624.000000pt;}
.x18_c00255{left:625.706667pt;}
.x7a_c00255{left:626.666667pt;}
.x38_c00255{left:628.373333pt;}
.xfb_c00255{left:631.040000pt;}
.x72_c00255{left:636.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_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_21c99f1cafe4a86da48d7eae.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m70_c00256{transform:matrix(0.348794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348794,0.000000,0.000000,0.250000,0,0);}
.m75_c00256{transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);}
.m8d_c00256{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m12_c00256{transform:matrix(0.359926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359926,0.000000,0.000000,0.250000,0,0);}
.m36_c00256{transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);}
.md8_c00256{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m27_c00256{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m44_c00256{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.ma6_c00256{transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);}
.mf1_c00256{transform:matrix(0.379218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379218,0.000000,0.000000,0.250000,0,0);}
.mc3_c00256{transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);}
.m8b_c00256{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m23_c00256{transform:matrix(0.388824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388824,0.000000,0.000000,0.250000,0,0);}
.mbb_c00256{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m76_c00256{transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);}
.ma9_c00256{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m3_c00256{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m47_c00256{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m1a_c00256{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m6a_c00256{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.mc4_c00256{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m98_c00256{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m40_c00256{transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);}
.m9f_c00256{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m7f_c00256{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m51_c00256{transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);}
.m91_c00256{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mf2_c00256{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.me9_c00256{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.ma7_c00256{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.maf_c00256{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m5c_c00256{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.mc5_c00256{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m66_c00256{transform:matrix(0.417440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417440,0.000000,0.000000,0.250000,0,0);}
.md5_c00256{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m82_c00256{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m85_c00256{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.ma8_c00256{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mc1_c00256{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m38_c00256{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m17_c00256{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.me6_c00256{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m77_c00256{transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);}
.m18_c00256{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.m45_c00256{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m10_c00256{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.mf3_c00256{transform:matrix(0.426764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426764,0.000000,0.000000,0.250000,0,0);}
.m92_c00256{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m3b_c00256{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m6_c00256{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m58_c00256{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.md6_c00256{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.mc7_c00256{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m8e_c00256{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m55_c00256{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m6c_c00256{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.mcc_c00256{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m81_c00256{transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);}
.md9_c00256{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.me1_c00256{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m52_c00256{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m33_c00256{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.mdb_c00256{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m6e_c00256{transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);}
.me0_c00256{transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);}
.m90_c00256{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m60_c00256{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m57_c00256{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m62_c00256{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m21_c00256{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.mde_c00256{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m5f_c00256{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.mb6_c00256{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m7d_c00256{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.md_c00256{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m80_c00256{transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);}
.mf_c00256{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m5d_c00256{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m74_c00256{transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);}
.m71_c00256{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.meb_c00256{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m14_c00256{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m86_c00256{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m69_c00256{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.md0_c00256{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.me8_c00256{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m78_c00256{transform:matrix(0.486029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486029,0.000000,0.000000,0.250000,0,0);}
.m6f_c00256{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mbc_c00256{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m1_c00256{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m42_c00256{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m24_c00256{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m7c_c00256{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.mb1_c00256{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m4b_c00256{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m8_c00256{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);}
.m9e_c00256{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mec_c00256{transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);}
.mbf_c00256{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m4f_c00256{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m29_c00256{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m87_c00256{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.ma1_c00256{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m5b_c00256{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.mb3_c00256{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.md3_c00256{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m9d_c00256{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.ma2_c00256{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m96_c00256{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m28_c00256{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m37_c00256{transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);}
.m94_c00256{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mcb_c00256{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.m5e_c00256{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.mab_c00256{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.md2_c00256{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m63_c00256{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.mb0_c00256{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m2a_c00256{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);}
.me3_c00256{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m95_c00256{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m8f_c00256{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m89_c00256{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.ma0_c00256{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mb7_c00256{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.me5_c00256{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.mb8_c00256{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m5_c00256{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m31_c00256{transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);}
.mdd_c00256{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.me2_c00256{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m7_c00256{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m48_c00256{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m84_c00256{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.ma4_c00256{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m13_c00256{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.maa_c00256{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mef_c00256{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m4e_c00256{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.mae_c00256{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m32_c00256{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.mac_c00256{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m4_c00256{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mcd_c00256{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m11_c00256{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m34_c00256{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.mba_c00256{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m65_c00256{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m8a_c00256{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m9a_c00256{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m4d_c00256{transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);}
.mea_c00256{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.ma_c00256{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m97_c00256{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mbe_c00256{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mc9_c00256{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mc_c00256{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m9_c00256{transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);}
.mc6_c00256{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);}
.mb9_c00256{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m1d_c00256{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mdf_c00256{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.me4_c00256{transform:matrix(0.564706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564706,0.000000,0.000000,0.250000,0,0);}
.m61_c00256{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.mc2_c00256{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m7b_c00256{transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);}
.m8c_c00256{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m2_c00256{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m59_c00256{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.mdc_c00256{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mcf_c00256{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m39_c00256{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m6b_c00256{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_c00256{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.mb_c00256{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m30_c00256{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m67_c00256{transform:matrix(0.590441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590441,0.000000,0.000000,0.250000,0,0);}
.m9c_c00256{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m43_c00256{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m93_c00256{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m35_c00256{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m72_c00256{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m54_c00256{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.mb2_c00256{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);}
.m99_c00256{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.me_c00256{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.mce_c00256{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m9b_c00256{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m41_c00256{transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);}
.ma3_c00256{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m68_c00256{transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);}
.m50_c00256{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.m56_c00256{transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);}
.m26_c00256{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m2f_c00256{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);}
.mbd_c00256{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);}
.m46_c00256{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m3a_c00256{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m49_c00256{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.mca_c00256{transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);}
.mb5_c00256{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m2e_c00256{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.m3f_c00256{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m5a_c00256{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m1f_c00256{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);}
.m2d_c00256{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m2b_c00256{transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);}
.m1e_c00256{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m4c_c00256{transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);}
.mad_c00256{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mf0_c00256{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.md7_c00256{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m22_c00256{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.m16_c00256{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m4a_c00256{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.mda_c00256{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);}
.m3c_c00256{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m1c_c00256{transform:matrix(0.680147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680147,0.000000,0.000000,0.250000,0,0);}
.mee_c00256{transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);}
.m64_c00256{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m25_c00256{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m2c_c00256{transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);}
.m0_c00256{transform:matrix(0.690705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690705,0.000000,0.000000,0.250000,0,0);}
.m53_c00256{transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);}
.m6d_c00256{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m79_c00256{transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);}
.m20_c00256{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);}
.m3e_c00256{transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);}
.m7a_c00256{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.mc0_c00256{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.med_c00256{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.me7_c00256{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m73_c00256{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.ma5_c00256{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.md4_c00256{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mb4_c00256{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mc8_c00256{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.md1_c00256{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m88_c00256{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m15_c00256{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m7e_c00256{transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);}
.m3d_c00256{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m1b_c00256{transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);}
.m83_c00256{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00256{vertical-align:0.000000px;}
.v1_c00256{vertical-align:7.680000px;}
.ls1_c00256{letter-spacing:0.000000px;}
.ls0_c00256{letter-spacing:14.817600px;}
.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;}
}
.ws3_c00256{word-spacing:-14.892000px;}
.ws4_c00256{word-spacing:-8.216554px;}
.ws0_c00256{word-spacing:-5.871000px;}
.ws2_c00256{word-spacing:-2.797918px;}
.ws1_c00256{word-spacing:-1.103251px;}
.ws5_c00256{word-spacing:0.000000px;}
._0_c00256{width:6.021000px;}
.fc0_c00256{color:transparent;}
.fs7_c00256{font-size:3.420000px;}
.fs5_c00256{font-size:13.620000px;}
.fs0_c00256{font-size:18.720000px;}
.fs6_c00256{font-size:20.400000px;}
.fs3_c00256{font-size:25.500000px;}
.fs1_c00256{font-size:28.920000px;}
.fs4_c00256{font-size:32.340000px;}
.fs2_c00256{font-size:35.700000px;}
.fs8_c00256{font-size:39.120000px;}
.y0_c00256{bottom:0.000000px;}
.yf3_c00256{bottom:250.680000px;}
.yf4_c00256{bottom:251.745000px;}
.yf2_c00256{bottom:253.050000px;}
.yf5_c00256{bottom:253.905000px;}
.yf6_c00256{bottom:254.130000px;}
.yf1_c00256{bottom:255.405000px;}
.yef_c00256{bottom:272.550000px;}
.yf0_c00256{bottom:273.405000px;}
.yec_c00256{bottom:273.630000px;}
.yee_c00256{bottom:273.825000px;}
.yed_c00256{bottom:274.905000px;}
.yea_c00256{bottom:291.825000px;}
.ye8_c00256{bottom:292.245000px;}
.yeb_c00256{bottom:293.325000px;}
.ye7_c00256{bottom:294.405000px;}
.ye9_c00256{bottom:295.470000px;}
.ye4_c00256{bottom:310.905000px;}
.ye1_c00256{bottom:311.745000px;}
.ye6_c00256{bottom:312.825000px;}
.ye2_c00256{bottom:313.470000px;}
.ye3_c00256{bottom:313.905000px;}
.ye5_c00256{bottom:314.970000px;}
.ydc_c00256{bottom:330.405000px;}
.ydf_c00256{bottom:331.245000px;}
.yde_c00256{bottom:332.130000px;}
.ye0_c00256{bottom:332.325000px;}
.ydb_c00256{bottom:333.405000px;}
.ydd_c00256{bottom:333.630000px;}
.yd9_c00256{bottom:349.905000px;}
.yd7_c00256{bottom:350.745000px;}
.yda_c00256{bottom:351.825000px;}
.yd8_c00256{bottom:352.050000px;}
.yd5_c00256{bottom:352.905000px;}
.yd6_c00256{bottom:353.130000px;}
.yd2_c00256{bottom:370.245000px;}
.yd1_c00256{bottom:371.745000px;}
.yd3_c00256{bottom:372.405000px;}
.yd0_c00256{bottom:372.630000px;}
.yd4_c00256{bottom:373.470000px;}
.ycf_c00256{bottom:373.905000px;}
.ycd_c00256{bottom:388.905000px;}
.ycb_c00256{bottom:389.970000px;}
.yce_c00256{bottom:390.825000px;}
.ycc_c00256{bottom:392.130000px;}
.yca_c00256{bottom:393.405000px;}
.yc8_c00256{bottom:410.745000px;}
.yc9_c00256{bottom:411.630000px;}
.yc6_c00256{bottom:412.470000px;}
.yc5_c00256{bottom:412.905000px;}
.yc7_c00256{bottom:413.970000px;}
.yc0_c00256{bottom:430.245000px;}
.yc4_c00256{bottom:431.130000px;}
.yc3_c00256{bottom:431.970000px;}
.yc1_c00256{bottom:432.405000px;}
.yc2_c00256{bottom:432.630000px;}
.ybd_c00256{bottom:449.745000px;}
.ybf_c00256{bottom:450.630000px;}
.ybb_c00256{bottom:450.825000px;}
.ybc_c00256{bottom:451.905000px;}
.ybe_c00256{bottom:452.130000px;}
.yb8_c00256{bottom:469.470000px;}
.yb9_c00256{bottom:470.745000px;}
.yba_c00256{bottom:471.405000px;}
.yb5_c00256{bottom:471.630000px;}
.yb7_c00256{bottom:471.825000px;}
.yb6_c00256{bottom:472.470000px;}
.yb4_c00256{bottom:472.905000px;}
.yb0_c00256{bottom:490.245000px;}
.yb3_c00256{bottom:490.905000px;}
.yaf_c00256{bottom:491.130000px;}
.yb2_c00256{bottom:491.970000px;}
.yb1_c00256{bottom:492.405000px;}
.yae_c00256{bottom:508.470000px;}
.yac_c00256{bottom:508.680000px;}
.yad_c00256{bottom:509.745000px;}
.yab_c00256{bottom:510.630000px;}
.yaa_c00256{bottom:511.905000px;}
.ya9_c00256{bottom:528.405000px;}
.ya8_c00256{bottom:529.245000px;}
.ya7_c00256{bottom:531.405000px;}
.ya5_c00256{bottom:548.745000px;}
.ya4_c00256{bottom:550.905000px;}
.ya6_c00256{bottom:551.970000px;}
.ya3_c00256{bottom:565.905000px;}
.ya1_c00256{bottom:568.245000px;}
.ya2_c00256{bottom:570.405000px;}
.y9c_c00256{bottom:589.245000px;}
.y9f_c00256{bottom:589.905000px;}
.ya0_c00256{bottom:590.130000px;}
.y9e_c00256{bottom:591.405000px;}
.y9d_c00256{bottom:591.420000px;}
.y9b_c00256{bottom:621.405000px;}
.y96_c00256{bottom:634.470000px;}
.y9a_c00256{bottom:635.325000px;}
.y97_c00256{bottom:636.405000px;}
.y99_c00256{bottom:637.470000px;}
.y98_c00256{bottom:637.695000px;}
.y94_c00256{bottom:649.470000px;}
.y95_c00256{bottom:650.325000px;}
.y8f_c00256{bottom:650.550000px;}
.y90_c00256{bottom:651.405000px;}
.y92_c00256{bottom:651.630000px;}
.y93_c00256{bottom:652.470000px;}
.y91_c00256{bottom:653.550000px;}
.y8b_c00256{bottom:665.325000px;}
.y8c_c00256{bottom:666.405000px;}
.y8e_c00256{bottom:667.470000px;}
.y8d_c00256{bottom:667.695000px;}
.y8a_c00256{bottom:680.970000px;}
.y87_c00256{bottom:681.405000px;}
.y86_c00256{bottom:681.630000px;}
.y88_c00256{bottom:682.050000px;}
.y89_c00256{bottom:682.470000px;}
.y82_c00256{bottom:694.470000px;}
.y81_c00256{bottom:695.325000px;}
.y85_c00256{bottom:696.405000px;}
.y84_c00256{bottom:696.630000px;}
.y83_c00256{bottom:697.470000px;}
.y7f_c00256{bottom:709.905000px;}
.y7b_c00256{bottom:710.130000px;}
.y7d_c00256{bottom:710.550000px;}
.y80_c00256{bottom:711.405000px;}
.y7e_c00256{bottom:712.050000px;}
.y7c_c00256{bottom:712.470000px;}
.y79_c00256{bottom:724.905000px;}
.y7a_c00256{bottom:727.050000px;}
.y74_c00256{bottom:738.825000px;}
.y77_c00256{bottom:739.905000px;}
.y78_c00256{bottom:740.130000px;}
.y73_c00256{bottom:740.970000px;}
.y75_c00256{bottom:741.195000px;}
.y76_c00256{bottom:742.050000px;}
.y70_c00256{bottom:753.825000px;}
.y72_c00256{bottom:754.905000px;}
.y6f_c00256{bottom:755.130000px;}
.y6e_c00256{bottom:755.970000px;}
.y6d_c00256{bottom:756.195000px;}
.y71_c00256{bottom:757.050000px;}
.y6b_c00256{bottom:768.405000px;}
.y6a_c00256{bottom:768.825000px;}
.y6c_c00256{bottom:769.905000px;}
.y67_c00256{bottom:770.970000px;}
.y68_c00256{bottom:771.195000px;}
.y69_c00256{bottom:772.050000px;}
.y62_c00256{bottom:784.050000px;}
.y64_c00256{bottom:784.905000px;}
.y63_c00256{bottom:785.550000px;}
.y65_c00256{bottom:785.970000px;}
.y66_c00256{bottom:787.050000px;}
.y61_c00256{bottom:798.825000px;}
.y60_c00256{bottom:800.970000px;}
.y5c_c00256{bottom:812.325000px;}
.y5f_c00256{bottom:812.550000px;}
.y5e_c00256{bottom:812.970000px;}
.y5d_c00256{bottom:813.405000px;}
.y57_c00256{bottom:814.470000px;}
.y59_c00256{bottom:814.905000px;}
.y5a_c00256{bottom:815.130000px;}
.y58_c00256{bottom:815.550000px;}
.y5b_c00256{bottom:815.970000px;}
.y56_c00256{bottom:828.405000px;}
.y53_c00256{bottom:829.470000px;}
.y54_c00256{bottom:829.695000px;}
.y55_c00256{bottom:830.550000px;}
.y4e_c00256{bottom:842.550000px;}
.y50_c00256{bottom:843.405000px;}
.y51_c00256{bottom:844.470000px;}
.y52_c00256{bottom:844.695000px;}
.y4f_c00256{bottom:845.550000px;}
.y4d_c00256{bottom:858.405000px;}
.y49_c00256{bottom:871.470000px;}
.y47_c00256{bottom:872.325000px;}
.y46_c00256{bottom:872.550000px;}
.y48_c00256{bottom:873.405000px;}
.y4a_c00256{bottom:874.470000px;}
.y4c_c00256{bottom:874.695000px;}
.y4b_c00256{bottom:875.550000px;}
.y45_c00256{bottom:886.905000px;}
.y42_c00256{bottom:888.405000px;}
.y41_c00256{bottom:889.050000px;}
.y43_c00256{bottom:889.470000px;}
.y44_c00256{bottom:889.695000px;}
.y3c_c00256{bottom:902.325000px;}
.y3a_c00256{bottom:902.550000px;}
.y3f_c00256{bottom:903.405000px;}
.y3b_c00256{bottom:904.050000px;}
.y3e_c00256{bottom:904.470000px;}
.y3d_c00256{bottom:904.695000px;}
.y40_c00256{bottom:905.550000px;}
.y38_c00256{bottom:915.825000px;}
.y39_c00256{bottom:916.905000px;}
.y36_c00256{bottom:917.325000px;}
.y32_c00256{bottom:917.550000px;}
.y34_c00256{bottom:918.195000px;}
.y37_c00256{bottom:918.405000px;}
.y33_c00256{bottom:919.050000px;}
.y35_c00256{bottom:920.550000px;}
.y2f_c00256{bottom:929.970000px;}
.y30_c00256{bottom:931.050000px;}
.y2e_c00256{bottom:931.905000px;}
.y31_c00256{bottom:934.050000px;}
.y2a_c00256{bottom:944.970000px;}
.y2c_c00256{bottom:945.825000px;}
.y27_c00256{bottom:946.050000px;}
.y29_c00256{bottom:946.905000px;}
.y2d_c00256{bottom:947.130000px;}
.y28_c00256{bottom:947.970000px;}
.y2b_c00256{bottom:949.050000px;}
.y23_c00256{bottom:959.970000px;}
.y26_c00256{bottom:960.825000px;}
.y24_c00256{bottom:962.970000px;}
.y25_c00256{bottom:964.050000px;}
.y1c_c00256{bottom:976.050000px;}
.y21_c00256{bottom:976.905000px;}
.y1e_c00256{bottom:977.130000px;}
.y1f_c00256{bottom:977.550000px;}
.y20_c00256{bottom:977.970000px;}
.y22_c00256{bottom:978.195000px;}
.y1d_c00256{bottom:979.050000px;}
.y1a_c00256{bottom:989.970000px;}
.y19_c00256{bottom:990.825000px;}
.y17_c00256{bottom:991.695000px;}
.y16_c00256{bottom:991.905000px;}
.y18_c00256{bottom:992.550000px;}
.y1b_c00256{bottom:992.970000px;}
.y14_c00256{bottom:1005.405000px;}
.yd_c00256{bottom:1005.825000px;}
.y15_c00256{bottom:1006.470000px;}
.ye_c00256{bottom:1006.695000px;}
.y10_c00256{bottom:1006.905000px;}
.yc_c00256{bottom:1007.130000px;}
.yf_c00256{bottom:1007.550000px;}
.y11_c00256{bottom:1007.970000px;}
.y12_c00256{bottom:1008.195000px;}
.y13_c00256{bottom:1009.050000px;}
.y9_c00256{bottom:1020.405000px;}
.ya_c00256{bottom:1021.695000px;}
.yb_c00256{bottom:1022.550000px;}
.y8_c00256{bottom:1034.325000px;}
.y7_c00256{bottom:1035.405000px;}
.y5_c00256{bottom:1035.630000px;}
.y6_c00256{bottom:1036.470000px;}
.y4_c00256{bottom:1061.745000px;}
.y3_c00256{bottom:1063.905000px;}
.y2_c00256{bottom:1099.905000px;}
.y1_c00256{bottom:1103.130000px;}
.h9_c00256{height:4.206533px;}
.h6_c00256{height:16.752334px;}
.h1_c00256{height:23.025234px;}
.h7_c00256{height:25.091602px;}
.h4_c00256{height:31.364502px;}
.h2_c00256{height:35.571035px;}
.h8_c00256{height:39.044502px;}
.h5_c00256{height:39.777568px;}
.h3_c00256{height:43.910303px;}
.ha_c00256{height:48.116836px;}
.h0_c00256{height:1335.000000px;}
.w0_c00256{width:880.500000px;}
.x0_c00256{left:0.000000px;}
.x3_c00256{left:150.000000px;}
.x15_c00256{left:151.080000px;}
.x6d_c00256{left:153.000000px;}
.x9f_c00256{left:154.080000px;}
.x1a_c00256{left:165.000000px;}
.x9_c00256{left:166.920000px;}
.x83_c00256{left:168.000000px;}
.xb2_c00256{left:169.080000px;}
.xd7_c00256{left:172.500000px;}
.xcf_c00256{left:174.000000px;}
.xa_c00256{left:183.000000px;}
.x6f_c00256{left:184.500000px;}
.x4_c00256{left:186.000000px;}
.x25_c00256{left:187.500000px;}
.xca_c00256{left:189.000000px;}
.x9b_c00256{left:190.500000px;}
.x78_c00256{left:191.580000px;}
.xdc_c00256{left:193.500000px;}
.x36_c00256{left:195.000000px;}
.x97_c00256{left:196.080000px;}
.x26_c00256{left:198.000000px;}
.xcb_c00256{left:201.420000px;}
.xbf_c00256{left:202.920000px;}
.x5b_c00256{left:205.080000px;}
.x16_c00256{left:206.580000px;}
.x7e_c00256{left:208.500000px;}
.x103_c00256{left:211.500000px;}
.xea_c00256{left:213.000000px;}
.xdd_c00256{left:214.920000px;}
.x17_c00256{left:217.500000px;}
.x79_c00256{left:219.000000px;}
.xf6_c00256{left:220.500000px;}
.x37_c00256{left:223.920000px;}
.xd8_c00256{left:225.000000px;}
.xb_c00256{left:226.080000px;}
.x42_c00256{left:229.920000px;}
.x1b_c00256{left:231.000000px;}
.x2b_c00256{left:234.420000px;}
.xc3_c00256{left:235.500000px;}
.x84_c00256{left:237.000000px;}
.x38_c00256{left:238.500000px;}
.x98_c00256{left:240.000000px;}
.xf7_c00256{left:241.920000px;}
.x8d_c00256{left:243.000000px;}
.xeb_c00256{left:244.080000px;}
.x10c_c00256{left:245.580000px;}
.x106_c00256{left:247.920000px;}
.xcc_c00256{left:249.420000px;}
.x1c_c00256{left:250.500000px;}
.x18_c00256{left:252.000000px;}
.xf1_c00256{left:253.920000px;}
.x55_c00256{left:255.000000px;}
.x46_c00256{left:256.500000px;}
.x27_c00256{left:257.580000px;}
.x5_c00256{left:259.920000px;}
.xb8_c00256{left:261.000000px;}
.xd0_c00256{left:262.500000px;}
.xc_c00256{left:263.580000px;}
.x6e_c00256{left:265.080000px;}
.xf8_c00256{left:268.920000px;}
.x85_c00256{left:270.000000px;}
.x43_c00256{left:273.000000px;}
.x99_c00256{left:274.920000px;}
.xb3_c00256{left:276.000000px;}
.x7f_c00256{left:277.080000px;}
.x39_c00256{left:278.145000px;}
.x19_c00256{left:279.420000px;}
.xd_c00256{left:283.080000px;}
.x8e_c00256{left:285.000000px;}
.xcd_c00256{left:288.000000px;}
.x2c_c00256{left:289.920000px;}
.xec_c00256{left:292.080000px;}
.xf9_c00256{left:295.500000px;}
.x6_c00256{left:297.420000px;}
.xfd_c00256{left:298.920000px;}
.x28_c00256{left:301.500000px;}
.x9a_c00256{left:303.000000px;}
.x50_c00256{left:306.000000px;}
.x2d_c00256{left:307.500000px;}
.x44_c00256{left:309.420000px;}
.xb9_c00256{left:310.500000px;}
.xab_c00256{left:313.500000px;}
.x51_c00256{left:316.500000px;}
.x3a_c00256{left:318.000000px;}
.x80_c00256{left:319.500000px;}
.x1d_c00256{left:321.645000px;}
.x7_c00256{left:324.420000px;}
.xba_c00256{left:325.920000px;}
.xfe_c00256{left:327.000000px;}
.x70_c00256{left:328.080000px;}
.x86_c00256{left:330.000000px;}
.x29_c00256{left:331.080000px;}
.xe2_c00256{left:334.920000px;}
.x45_c00256{left:336.000000px;}
.x47_c00256{left:337.500000px;}
.xc0_c00256{left:339.420000px;}
.x9c_c00256{left:342.000000px;}
.x7a_c00256{left:348.420000px;}
.x81_c00256{left:349.920000px;}
.x65_c00256{left:351.000000px;}
.x48_c00256{left:353.580000px;}
.x10d_c00256{left:355.500000px;}
.x2a_c00256{left:357.000000px;}
.x3b_c00256{left:360.000000px;}
.xe3_c00256{left:361.920000px;}
.xff_c00256{left:364.500000px;}
.x1e_c00256{left:365.580000px;}
.x8f_c00256{left:367.500000px;}
.xed_c00256{left:368.580000px;}
.xe_c00256{left:370.500000px;}
.x5c_c00256{left:372.000000px;}
.xa8_c00256{left:373.080000px;}
.x82_c00256{left:375.000000px;}
.x49_c00256{left:378.000000px;}
.x2e_c00256{left:379.500000px;}
.xc4_c00256{left:381.000000px;}
.x71_c00256{left:384.000000px;}
.x56_c00256{left:385.080000px;}
.x52_c00256{left:388.920000px;}
.x87_c00256{left:390.000000px;}
.x8_c00256{left:391.500000px;}
.xaf_c00256{left:393.000000px;}
.x72_c00256{left:396.000000px;}
.xc5_c00256{left:397.920000px;}
.xf_c00256{left:399.000000px;}
.xa9_c00256{left:402.420000px;}
.x108_c00256{left:403.920000px;}
.x57_c00256{left:405.000000px;}
.x1_c00256{left:406.080000px;}
.x5d_c00256{left:408.420000px;}
.x4a_c00256{left:409.920000px;}
.xe4_c00256{left:411.000000px;}
.x3c_c00256{left:416.145000px;}
.x7b_c00256{left:417.420000px;}
.x66_c00256{left:421.920000px;}
.xde_c00256{left:423.000000px;}
.x1f_c00256{left:424.080000px;}
.xa0_c00256{left:426.000000px;}
.x53_c00256{left:430.500000px;}
.x7c_c00256{left:433.500000px;}
.x90_c00256{left:435.000000px;}
.x5e_c00256{left:436.500000px;}
.x73_c00256{left:437.580000px;}
.x67_c00256{left:441.000000px;}
.xd1_c00256{left:442.920000px;}
.xaa_c00256{left:444.000000px;}
.x20_c00256{left:450.000000px;}
.xac_c00256{left:451.500000px;}
.x88_c00256{left:454.080000px;}
.xf3_c00256{left:456.000000px;}
.xc6_c00256{left:457.080000px;}
.xdf_c00256{left:458.580000px;}
.xb4_c00256{left:460.500000px;}
.x10_c00256{left:461.580000px;}
.x109_c00256{left:463.080000px;}
.x2f_c00256{left:465.420000px;}
.xd2_c00256{left:466.500000px;}
.xc1_c00256{left:468.420000px;}
.x91_c00256{left:469.500000px;}
.xb5_c00256{left:478.080000px;}
.x11_c00256{left:481.500000px;}
.x4b_c00256{left:483.000000px;}
.x5f_c00256{left:484.500000px;}
.xd3_c00256{left:486.420000px;}
.x54_c00256{left:487.500000px;}
.x21_c00256{left:489.420000px;}
.xe5_c00256{left:492.420000px;}
.x10a_c00256{left:493.920000px;}
.x60_c00256{left:496.500000px;}
.x92_c00256{left:497.580000px;}
.xb0_c00256{left:499.080000px;}
.xee_c00256{left:502.920000px;}
.x58_c00256{left:504.000000px;}
.x22_c00256{left:505.500000px;}
.xa4_c00256{left:507.645000px;}
.xf4_c00256{left:508.920000px;}
.xbb_c00256{left:510.000000px;}
.xd4_c00256{left:513.000000px;}
.x30_c00256{left:516.000000px;}
.x3d_c00256{left:517.500000px;}
.xce_c00256{left:519.420000px;}
.x10b_c00256{left:520.500000px;}
.xa1_c00256{left:522.420000px;}
.x68_c00256{left:523.500000px;}
.x9d_c00256{left:526.500000px;}
.xef_c00256{left:529.500000px;}
.xfa_c00256{left:531.420000px;}
.x74_c00256{left:533.580000px;}
.xf5_c00256{left:535.080000px;}
.xad_c00256{left:537.000000px;}
.x89_c00256{left:538.500000px;}
.x93_c00256{left:541.500000px;}
.x12_c00256{left:546.000000px;}
.xb1_c00256{left:547.080000px;}
.x61_c00256{left:548.580000px;}
.xe6_c00256{left:550.080000px;}
.x4c_c00256{left:551.580000px;}
.xa5_c00256{left:553.500000px;}
.x31_c00256{left:555.420000px;}
.xbc_c00256{left:558.420000px;}
.x75_c00256{left:562.500000px;}
.x69_c00256{left:564.420000px;}
.xd9_c00256{left:565.500000px;}
.xf0_c00256{left:567.420000px;}
.x59_c00256{left:569.145000px;}
.x3e_c00256{left:570.420000px;}
.x32_c00256{left:573.000000px;}
.xb6_c00256{left:575.580000px;}
.x107_c00256{left:577.500000px;}
.x8a_c00256{left:579.420000px;}
.x62_c00256{left:581.580000px;}
.x6a_c00256{left:583.080000px;}
.x104_c00256{left:585.000000px;}
.xd5_c00256{left:586.500000px;}
.x100_c00256{left:588.000000px;}
.x23_c00256{left:589.500000px;}
.x13_c00256{left:592.500000px;}
.xc7_c00256{left:595.500000px;}
.xe7_c00256{left:596.580000px;}
.x94_c00256{left:598.500000px;}
.xda_c00256{left:599.580000px;}
.x76_c00256{left:603.000000px;}
.x7d_c00256{left:605.145000px;}
.x4d_c00256{left:607.500000px;}
.x8b_c00256{left:609.000000px;}
.xbd_c00256{left:612.000000px;}
.xae_c00256{left:613.500000px;}
.x5a_c00256{left:615.000000px;}
.xc8_c00256{left:616.920000px;}
.xfb_c00256{left:618.000000px;}
.x4e_c00256{left:619.500000px;}
.xe0_c00256{left:621.000000px;}
.xb7_c00256{left:622.500000px;}
.xa6_c00256{left:624.000000px;}
.x63_c00256{left:627.000000px;}
.x3f_c00256{left:630.000000px;}
.xe8_c00256{left:634.920000px;}
.x64_c00256{left:640.080000px;}
.xa2_c00256{left:641.580000px;}
.xe1_c00256{left:643.920000px;}
.xc9_c00256{left:645.000000px;}
.xdb_c00256{left:646.500000px;}
.x24_c00256{left:648.000000px;}
.x6b_c00256{left:649.500000px;}
.xfc_c00256{left:650.580000px;}
.x95_c00256{left:652.500000px;}
.xf2_c00256{left:657.000000px;}
.x33_c00256{left:658.500000px;}
.x8c_c00256{left:666.420000px;}
.xa3_c00256{left:669.000000px;}
.x34_c00256{left:670.500000px;}
.x6c_c00256{left:672.000000px;}
.x105_c00256{left:675.420000px;}
.x101_c00256{left:676.500000px;}
.x14_c00256{left:678.000000px;}
.x40_c00256{left:681.000000px;}
.x9e_c00256{left:682.920000px;}
.xbe_c00256{left:685.080000px;}
.xc2_c00256{left:689.580000px;}
.x4f_c00256{left:691.920000px;}
.x41_c00256{left:694.500000px;}
.xa7_c00256{left:696.000000px;}
.xe9_c00256{left:697.500000px;}
.x96_c00256{left:702.000000px;}
.x2_c00256{left:703.080000px;}
.x35_c00256{left:706.500000px;}
.xd6_c00256{left:711.000000px;}
.x77_c00256{left:717.855000px;}
.x102_c00256{left:723.000000px;}
@media print{
.v0_c00256{vertical-align:0.000000pt;}
.v1_c00256{vertical-align:6.826667pt;}
.ls1_c00256{letter-spacing:0.000000pt;}
.ls0_c00256{letter-spacing:13.171200pt;}
.ws3_c00256{word-spacing:-13.237333pt;}
.ws4_c00256{word-spacing:-7.303604pt;}
.ws0_c00256{word-spacing:-5.218667pt;}
.ws2_c00256{word-spacing:-2.487039pt;}
.ws1_c00256{word-spacing:-0.980667pt;}
.ws5_c00256{word-spacing:0.000000pt;}
._0_c00256{width:5.352000pt;}
.fs7_c00256{font-size:3.040000pt;}
.fs5_c00256{font-size:12.106667pt;}
.fs0_c00256{font-size:16.640000pt;}
.fs6_c00256{font-size:18.133333pt;}
.fs3_c00256{font-size:22.666667pt;}
.fs1_c00256{font-size:25.706667pt;}
.fs4_c00256{font-size:28.746667pt;}
.fs2_c00256{font-size:31.733333pt;}
.fs8_c00256{font-size:34.773333pt;}
.y0_c00256{bottom:0.000000pt;}
.yf3_c00256{bottom:222.826667pt;}
.yf4_c00256{bottom:223.773333pt;}
.yf2_c00256{bottom:224.933333pt;}
.yf5_c00256{bottom:225.693333pt;}
.yf6_c00256{bottom:225.893333pt;}
.yf1_c00256{bottom:227.026667pt;}
.yef_c00256{bottom:242.266667pt;}
.yf0_c00256{bottom:243.026667pt;}
.yec_c00256{bottom:243.226667pt;}
.yee_c00256{bottom:243.400000pt;}
.yed_c00256{bottom:244.360000pt;}
.yea_c00256{bottom:259.400000pt;}
.ye8_c00256{bottom:259.773333pt;}
.yeb_c00256{bottom:260.733333pt;}
.ye7_c00256{bottom:261.693333pt;}
.ye9_c00256{bottom:262.640000pt;}
.ye4_c00256{bottom:276.360000pt;}
.ye1_c00256{bottom:277.106667pt;}
.ye6_c00256{bottom:278.066667pt;}
.ye2_c00256{bottom:278.640000pt;}
.ye3_c00256{bottom:279.026667pt;}
.ye5_c00256{bottom:279.973333pt;}
.ydc_c00256{bottom:293.693333pt;}
.ydf_c00256{bottom:294.440000pt;}
.yde_c00256{bottom:295.226667pt;}
.ye0_c00256{bottom:295.400000pt;}
.ydb_c00256{bottom:296.360000pt;}
.ydd_c00256{bottom:296.560000pt;}
.yd9_c00256{bottom:311.026667pt;}
.yd7_c00256{bottom:311.773333pt;}
.yda_c00256{bottom:312.733333pt;}
.yd8_c00256{bottom:312.933333pt;}
.yd5_c00256{bottom:313.693333pt;}
.yd6_c00256{bottom:313.893333pt;}
.yd2_c00256{bottom:329.106667pt;}
.yd1_c00256{bottom:330.440000pt;}
.yd3_c00256{bottom:331.026667pt;}
.yd0_c00256{bottom:331.226667pt;}
.yd4_c00256{bottom:331.973333pt;}
.ycf_c00256{bottom:332.360000pt;}
.ycd_c00256{bottom:345.693333pt;}
.ycb_c00256{bottom:346.640000pt;}
.yce_c00256{bottom:347.400000pt;}
.ycc_c00256{bottom:348.560000pt;}
.yca_c00256{bottom:349.693333pt;}
.yc8_c00256{bottom:365.106667pt;}
.yc9_c00256{bottom:365.893333pt;}
.yc6_c00256{bottom:366.640000pt;}
.yc5_c00256{bottom:367.026667pt;}
.yc7_c00256{bottom:367.973333pt;}
.yc0_c00256{bottom:382.440000pt;}
.yc4_c00256{bottom:383.226667pt;}
.yc3_c00256{bottom:383.973333pt;}
.yc1_c00256{bottom:384.360000pt;}
.yc2_c00256{bottom:384.560000pt;}
.ybd_c00256{bottom:399.773333pt;}
.ybf_c00256{bottom:400.560000pt;}
.ybb_c00256{bottom:400.733333pt;}
.ybc_c00256{bottom:401.693333pt;}
.ybe_c00256{bottom:401.893333pt;}
.yb8_c00256{bottom:417.306667pt;}
.yb9_c00256{bottom:418.440000pt;}
.yba_c00256{bottom:419.026667pt;}
.yb5_c00256{bottom:419.226667pt;}
.yb7_c00256{bottom:419.400000pt;}
.yb6_c00256{bottom:419.973333pt;}
.yb4_c00256{bottom:420.360000pt;}
.yb0_c00256{bottom:435.773333pt;}
.yb3_c00256{bottom:436.360000pt;}
.yaf_c00256{bottom:436.560000pt;}
.yb2_c00256{bottom:437.306667pt;}
.yb1_c00256{bottom:437.693333pt;}
.yae_c00256{bottom:451.973333pt;}
.yac_c00256{bottom:452.160000pt;}
.yad_c00256{bottom:453.106667pt;}
.yab_c00256{bottom:453.893333pt;}
.yaa_c00256{bottom:455.026667pt;}
.ya9_c00256{bottom:469.693333pt;}
.ya8_c00256{bottom:470.440000pt;}
.ya7_c00256{bottom:472.360000pt;}
.ya5_c00256{bottom:487.773333pt;}
.ya4_c00256{bottom:489.693333pt;}
.ya6_c00256{bottom:490.640000pt;}
.ya3_c00256{bottom:503.026667pt;}
.ya1_c00256{bottom:505.106667pt;}
.ya2_c00256{bottom:507.026667pt;}
.y9c_c00256{bottom:523.773333pt;}
.y9f_c00256{bottom:524.360000pt;}
.ya0_c00256{bottom:524.560000pt;}
.y9e_c00256{bottom:525.693333pt;}
.y9d_c00256{bottom:525.706667pt;}
.y9b_c00256{bottom:552.360000pt;}
.y96_c00256{bottom:563.973333pt;}
.y9a_c00256{bottom:564.733333pt;}
.y97_c00256{bottom:565.693333pt;}
.y99_c00256{bottom:566.640000pt;}
.y98_c00256{bottom:566.840000pt;}
.y94_c00256{bottom:577.306667pt;}
.y95_c00256{bottom:578.066667pt;}
.y8f_c00256{bottom:578.266667pt;}
.y90_c00256{bottom:579.026667pt;}
.y92_c00256{bottom:579.226667pt;}
.y93_c00256{bottom:579.973333pt;}
.y91_c00256{bottom:580.933333pt;}
.y8b_c00256{bottom:591.400000pt;}
.y8c_c00256{bottom:592.360000pt;}
.y8e_c00256{bottom:593.306667pt;}
.y8d_c00256{bottom:593.506667pt;}
.y8a_c00256{bottom:605.306667pt;}
.y87_c00256{bottom:605.693333pt;}
.y86_c00256{bottom:605.893333pt;}
.y88_c00256{bottom:606.266667pt;}
.y89_c00256{bottom:606.640000pt;}
.y82_c00256{bottom:617.306667pt;}
.y81_c00256{bottom:618.066667pt;}
.y85_c00256{bottom:619.026667pt;}
.y84_c00256{bottom:619.226667pt;}
.y83_c00256{bottom:619.973333pt;}
.y7f_c00256{bottom:631.026667pt;}
.y7b_c00256{bottom:631.226667pt;}
.y7d_c00256{bottom:631.600000pt;}
.y80_c00256{bottom:632.360000pt;}
.y7e_c00256{bottom:632.933333pt;}
.y7c_c00256{bottom:633.306667pt;}
.y79_c00256{bottom:644.360000pt;}
.y7a_c00256{bottom:646.266667pt;}
.y74_c00256{bottom:656.733333pt;}
.y77_c00256{bottom:657.693333pt;}
.y78_c00256{bottom:657.893333pt;}
.y73_c00256{bottom:658.640000pt;}
.y75_c00256{bottom:658.840000pt;}
.y76_c00256{bottom:659.600000pt;}
.y70_c00256{bottom:670.066667pt;}
.y72_c00256{bottom:671.026667pt;}
.y6f_c00256{bottom:671.226667pt;}
.y6e_c00256{bottom:671.973333pt;}
.y6d_c00256{bottom:672.173333pt;}
.y71_c00256{bottom:672.933333pt;}
.y6b_c00256{bottom:683.026667pt;}
.y6a_c00256{bottom:683.400000pt;}
.y6c_c00256{bottom:684.360000pt;}
.y67_c00256{bottom:685.306667pt;}
.y68_c00256{bottom:685.506667pt;}
.y69_c00256{bottom:686.266667pt;}
.y62_c00256{bottom:696.933333pt;}
.y64_c00256{bottom:697.693333pt;}
.y63_c00256{bottom:698.266667pt;}
.y65_c00256{bottom:698.640000pt;}
.y66_c00256{bottom:699.600000pt;}
.y61_c00256{bottom:710.066667pt;}
.y60_c00256{bottom:711.973333pt;}
.y5c_c00256{bottom:722.066667pt;}
.y5f_c00256{bottom:722.266667pt;}
.y5e_c00256{bottom:722.640000pt;}
.y5d_c00256{bottom:723.026667pt;}
.y57_c00256{bottom:723.973333pt;}
.y59_c00256{bottom:724.360000pt;}
.y5a_c00256{bottom:724.560000pt;}
.y58_c00256{bottom:724.933333pt;}
.y5b_c00256{bottom:725.306667pt;}
.y56_c00256{bottom:736.360000pt;}
.y53_c00256{bottom:737.306667pt;}
.y54_c00256{bottom:737.506667pt;}
.y55_c00256{bottom:738.266667pt;}
.y4e_c00256{bottom:748.933333pt;}
.y50_c00256{bottom:749.693333pt;}
.y51_c00256{bottom:750.640000pt;}
.y52_c00256{bottom:750.840000pt;}
.y4f_c00256{bottom:751.600000pt;}
.y4d_c00256{bottom:763.026667pt;}
.y49_c00256{bottom:774.640000pt;}
.y47_c00256{bottom:775.400000pt;}
.y46_c00256{bottom:775.600000pt;}
.y48_c00256{bottom:776.360000pt;}
.y4a_c00256{bottom:777.306667pt;}
.y4c_c00256{bottom:777.506667pt;}
.y4b_c00256{bottom:778.266667pt;}
.y45_c00256{bottom:788.360000pt;}
.y42_c00256{bottom:789.693333pt;}
.y41_c00256{bottom:790.266667pt;}
.y43_c00256{bottom:790.640000pt;}
.y44_c00256{bottom:790.840000pt;}
.y3c_c00256{bottom:802.066667pt;}
.y3a_c00256{bottom:802.266667pt;}
.y3f_c00256{bottom:803.026667pt;}
.y3b_c00256{bottom:803.600000pt;}
.y3e_c00256{bottom:803.973333pt;}
.y3d_c00256{bottom:804.173333pt;}
.y40_c00256{bottom:804.933333pt;}
.y38_c00256{bottom:814.066667pt;}
.y39_c00256{bottom:815.026667pt;}
.y36_c00256{bottom:815.400000pt;}
.y32_c00256{bottom:815.600000pt;}
.y34_c00256{bottom:816.173333pt;}
.y37_c00256{bottom:816.360000pt;}
.y33_c00256{bottom:816.933333pt;}
.y35_c00256{bottom:818.266667pt;}
.y2f_c00256{bottom:826.640000pt;}
.y30_c00256{bottom:827.600000pt;}
.y2e_c00256{bottom:828.360000pt;}
.y31_c00256{bottom:830.266667pt;}
.y2a_c00256{bottom:839.973333pt;}
.y2c_c00256{bottom:840.733333pt;}
.y27_c00256{bottom:840.933333pt;}
.y29_c00256{bottom:841.693333pt;}
.y2d_c00256{bottom:841.893333pt;}
.y28_c00256{bottom:842.640000pt;}
.y2b_c00256{bottom:843.600000pt;}
.y23_c00256{bottom:853.306667pt;}
.y26_c00256{bottom:854.066667pt;}
.y24_c00256{bottom:855.973333pt;}
.y25_c00256{bottom:856.933333pt;}
.y1c_c00256{bottom:867.600000pt;}
.y21_c00256{bottom:868.360000pt;}
.y1e_c00256{bottom:868.560000pt;}
.y1f_c00256{bottom:868.933333pt;}
.y20_c00256{bottom:869.306667pt;}
.y22_c00256{bottom:869.506667pt;}
.y1d_c00256{bottom:870.266667pt;}
.y1a_c00256{bottom:879.973333pt;}
.y19_c00256{bottom:880.733333pt;}
.y17_c00256{bottom:881.506667pt;}
.y16_c00256{bottom:881.693333pt;}
.y18_c00256{bottom:882.266667pt;}
.y1b_c00256{bottom:882.640000pt;}
.y14_c00256{bottom:893.693333pt;}
.yd_c00256{bottom:894.066667pt;}
.y15_c00256{bottom:894.640000pt;}
.ye_c00256{bottom:894.840000pt;}
.y10_c00256{bottom:895.026667pt;}
.yc_c00256{bottom:895.226667pt;}
.yf_c00256{bottom:895.600000pt;}
.y11_c00256{bottom:895.973333pt;}
.y12_c00256{bottom:896.173333pt;}
.y13_c00256{bottom:896.933333pt;}
.y9_c00256{bottom:907.026667pt;}
.ya_c00256{bottom:908.173333pt;}
.yb_c00256{bottom:908.933333pt;}
.y8_c00256{bottom:919.400000pt;}
.y7_c00256{bottom:920.360000pt;}
.y5_c00256{bottom:920.560000pt;}
.y6_c00256{bottom:921.306667pt;}
.y4_c00256{bottom:943.773333pt;}
.y3_c00256{bottom:945.693333pt;}
.y2_c00256{bottom:977.693333pt;}
.y1_c00256{bottom:980.560000pt;}
.h9_c00256{height:3.739141pt;}
.h6_c00256{height:14.890964pt;}
.h1_c00256{height:20.466875pt;}
.h7_c00256{height:22.303646pt;}
.h4_c00256{height:27.879557pt;}
.h2_c00256{height:31.618698pt;}
.h8_c00256{height:34.706224pt;}
.h5_c00256{height:35.357839pt;}
.h3_c00256{height:39.031380pt;}
.ha_c00256{height:42.770521pt;}
.h0_c00256{height:1186.666667pt;}
.w0_c00256{width:782.666667pt;}
.x0_c00256{left:0.000000pt;}
.x3_c00256{left:133.333333pt;}
.x15_c00256{left:134.293333pt;}
.x6d_c00256{left:136.000000pt;}
.x9f_c00256{left:136.960000pt;}
.x1a_c00256{left:146.666667pt;}
.x9_c00256{left:148.373333pt;}
.x83_c00256{left:149.333333pt;}
.xb2_c00256{left:150.293333pt;}
.xd7_c00256{left:153.333333pt;}
.xcf_c00256{left:154.666667pt;}
.xa_c00256{left:162.666667pt;}
.x6f_c00256{left:164.000000pt;}
.x4_c00256{left:165.333333pt;}
.x25_c00256{left:166.666667pt;}
.xca_c00256{left:168.000000pt;}
.x9b_c00256{left:169.333333pt;}
.x78_c00256{left:170.293333pt;}
.xdc_c00256{left:172.000000pt;}
.x36_c00256{left:173.333333pt;}
.x97_c00256{left:174.293333pt;}
.x26_c00256{left:176.000000pt;}
.xcb_c00256{left:179.040000pt;}
.xbf_c00256{left:180.373333pt;}
.x5b_c00256{left:182.293333pt;}
.x16_c00256{left:183.626667pt;}
.x7e_c00256{left:185.333333pt;}
.x103_c00256{left:188.000000pt;}
.xea_c00256{left:189.333333pt;}
.xdd_c00256{left:191.040000pt;}
.x17_c00256{left:193.333333pt;}
.x79_c00256{left:194.666667pt;}
.xf6_c00256{left:196.000000pt;}
.x37_c00256{left:199.040000pt;}
.xd8_c00256{left:200.000000pt;}
.xb_c00256{left:200.960000pt;}
.x42_c00256{left:204.373333pt;}
.x1b_c00256{left:205.333333pt;}
.x2b_c00256{left:208.373333pt;}
.xc3_c00256{left:209.333333pt;}
.x84_c00256{left:210.666667pt;}
.x38_c00256{left:212.000000pt;}
.x98_c00256{left:213.333333pt;}
.xf7_c00256{left:215.040000pt;}
.x8d_c00256{left:216.000000pt;}
.xeb_c00256{left:216.960000pt;}
.x10c_c00256{left:218.293333pt;}
.x106_c00256{left:220.373333pt;}
.xcc_c00256{left:221.706667pt;}
.x1c_c00256{left:222.666667pt;}
.x18_c00256{left:224.000000pt;}
.xf1_c00256{left:225.706667pt;}
.x55_c00256{left:226.666667pt;}
.x46_c00256{left:228.000000pt;}
.x27_c00256{left:228.960000pt;}
.x5_c00256{left:231.040000pt;}
.xb8_c00256{left:232.000000pt;}
.xd0_c00256{left:233.333333pt;}
.xc_c00256{left:234.293333pt;}
.x6e_c00256{left:235.626667pt;}
.xf8_c00256{left:239.040000pt;}
.x85_c00256{left:240.000000pt;}
.x43_c00256{left:242.666667pt;}
.x99_c00256{left:244.373333pt;}
.xb3_c00256{left:245.333333pt;}
.x7f_c00256{left:246.293333pt;}
.x39_c00256{left:247.240000pt;}
.x19_c00256{left:248.373333pt;}
.xd_c00256{left:251.626667pt;}
.x8e_c00256{left:253.333333pt;}
.xcd_c00256{left:256.000000pt;}
.x2c_c00256{left:257.706667pt;}
.xec_c00256{left:259.626667pt;}
.xf9_c00256{left:262.666667pt;}
.x6_c00256{left:264.373333pt;}
.xfd_c00256{left:265.706667pt;}
.x28_c00256{left:268.000000pt;}
.x9a_c00256{left:269.333333pt;}
.x50_c00256{left:272.000000pt;}
.x2d_c00256{left:273.333333pt;}
.x44_c00256{left:275.040000pt;}
.xb9_c00256{left:276.000000pt;}
.xab_c00256{left:278.666667pt;}
.x51_c00256{left:281.333333pt;}
.x3a_c00256{left:282.666667pt;}
.x80_c00256{left:284.000000pt;}
.x1d_c00256{left:285.906667pt;}
.x7_c00256{left:288.373333pt;}
.xba_c00256{left:289.706667pt;}
.xfe_c00256{left:290.666667pt;}
.x70_c00256{left:291.626667pt;}
.x86_c00256{left:293.333333pt;}
.x29_c00256{left:294.293333pt;}
.xe2_c00256{left:297.706667pt;}
.x45_c00256{left:298.666667pt;}
.x47_c00256{left:300.000000pt;}
.xc0_c00256{left:301.706667pt;}
.x9c_c00256{left:304.000000pt;}
.x7a_c00256{left:309.706667pt;}
.x81_c00256{left:311.040000pt;}
.x65_c00256{left:312.000000pt;}
.x48_c00256{left:314.293333pt;}
.x10d_c00256{left:316.000000pt;}
.x2a_c00256{left:317.333333pt;}
.x3b_c00256{left:320.000000pt;}
.xe3_c00256{left:321.706667pt;}
.xff_c00256{left:324.000000pt;}
.x1e_c00256{left:324.960000pt;}
.x8f_c00256{left:326.666667pt;}
.xed_c00256{left:327.626667pt;}
.xe_c00256{left:329.333333pt;}
.x5c_c00256{left:330.666667pt;}
.xa8_c00256{left:331.626667pt;}
.x82_c00256{left:333.333333pt;}
.x49_c00256{left:336.000000pt;}
.x2e_c00256{left:337.333333pt;}
.xc4_c00256{left:338.666667pt;}
.x71_c00256{left:341.333333pt;}
.x56_c00256{left:342.293333pt;}
.x52_c00256{left:345.706667pt;}
.x87_c00256{left:346.666667pt;}
.x8_c00256{left:348.000000pt;}
.xaf_c00256{left:349.333333pt;}
.x72_c00256{left:352.000000pt;}
.xc5_c00256{left:353.706667pt;}
.xf_c00256{left:354.666667pt;}
.xa9_c00256{left:357.706667pt;}
.x108_c00256{left:359.040000pt;}
.x57_c00256{left:360.000000pt;}
.x1_c00256{left:360.960000pt;}
.x5d_c00256{left:363.040000pt;}
.x4a_c00256{left:364.373333pt;}
.xe4_c00256{left:365.333333pt;}
.x3c_c00256{left:369.906667pt;}
.x7b_c00256{left:371.040000pt;}
.x66_c00256{left:375.040000pt;}
.xde_c00256{left:376.000000pt;}
.x1f_c00256{left:376.960000pt;}
.xa0_c00256{left:378.666667pt;}
.x53_c00256{left:382.666667pt;}
.x7c_c00256{left:385.333333pt;}
.x90_c00256{left:386.666667pt;}
.x5e_c00256{left:388.000000pt;}
.x73_c00256{left:388.960000pt;}
.x67_c00256{left:392.000000pt;}
.xd1_c00256{left:393.706667pt;}
.xaa_c00256{left:394.666667pt;}
.x20_c00256{left:400.000000pt;}
.xac_c00256{left:401.333333pt;}
.x88_c00256{left:403.626667pt;}
.xf3_c00256{left:405.333333pt;}
.xc6_c00256{left:406.293333pt;}
.xdf_c00256{left:407.626667pt;}
.xb4_c00256{left:409.333333pt;}
.x10_c00256{left:410.293333pt;}
.x109_c00256{left:411.626667pt;}
.x2f_c00256{left:413.706667pt;}
.xd2_c00256{left:414.666667pt;}
.xc1_c00256{left:416.373333pt;}
.x91_c00256{left:417.333333pt;}
.xb5_c00256{left:424.960000pt;}
.x11_c00256{left:428.000000pt;}
.x4b_c00256{left:429.333333pt;}
.x5f_c00256{left:430.666667pt;}
.xd3_c00256{left:432.373333pt;}
.x54_c00256{left:433.333333pt;}
.x21_c00256{left:435.040000pt;}
.xe5_c00256{left:437.706667pt;}
.x10a_c00256{left:439.040000pt;}
.x60_c00256{left:441.333333pt;}
.x92_c00256{left:442.293333pt;}
.xb0_c00256{left:443.626667pt;}
.xee_c00256{left:447.040000pt;}
.x58_c00256{left:448.000000pt;}
.x22_c00256{left:449.333333pt;}
.xa4_c00256{left:451.240000pt;}
.xf4_c00256{left:452.373333pt;}
.xbb_c00256{left:453.333333pt;}
.xd4_c00256{left:456.000000pt;}
.x30_c00256{left:458.666667pt;}
.x3d_c00256{left:460.000000pt;}
.xce_c00256{left:461.706667pt;}
.x10b_c00256{left:462.666667pt;}
.xa1_c00256{left:464.373333pt;}
.x68_c00256{left:465.333333pt;}
.x9d_c00256{left:468.000000pt;}
.xef_c00256{left:470.666667pt;}
.xfa_c00256{left:472.373333pt;}
.x74_c00256{left:474.293333pt;}
.xf5_c00256{left:475.626667pt;}
.xad_c00256{left:477.333333pt;}
.x89_c00256{left:478.666667pt;}
.x93_c00256{left:481.333333pt;}
.x12_c00256{left:485.333333pt;}
.xb1_c00256{left:486.293333pt;}
.x61_c00256{left:487.626667pt;}
.xe6_c00256{left:488.960000pt;}
.x4c_c00256{left:490.293333pt;}
.xa5_c00256{left:492.000000pt;}
.x31_c00256{left:493.706667pt;}
.xbc_c00256{left:496.373333pt;}
.x75_c00256{left:500.000000pt;}
.x69_c00256{left:501.706667pt;}
.xd9_c00256{left:502.666667pt;}
.xf0_c00256{left:504.373333pt;}
.x59_c00256{left:505.906667pt;}
.x3e_c00256{left:507.040000pt;}
.x32_c00256{left:509.333333pt;}
.xb6_c00256{left:511.626667pt;}
.x107_c00256{left:513.333333pt;}
.x8a_c00256{left:515.040000pt;}
.x62_c00256{left:516.960000pt;}
.x6a_c00256{left:518.293333pt;}
.x104_c00256{left:520.000000pt;}
.xd5_c00256{left:521.333333pt;}
.x100_c00256{left:522.666667pt;}
.x23_c00256{left:524.000000pt;}
.x13_c00256{left:526.666667pt;}
.xc7_c00256{left:529.333333pt;}
.xe7_c00256{left:530.293333pt;}
.x94_c00256{left:532.000000pt;}
.xda_c00256{left:532.960000pt;}
.x76_c00256{left:536.000000pt;}
.x7d_c00256{left:537.906667pt;}
.x4d_c00256{left:540.000000pt;}
.x8b_c00256{left:541.333333pt;}
.xbd_c00256{left:544.000000pt;}
.xae_c00256{left:545.333333pt;}
.x5a_c00256{left:546.666667pt;}
.xc8_c00256{left:548.373333pt;}
.xfb_c00256{left:549.333333pt;}
.x4e_c00256{left:550.666667pt;}
.xe0_c00256{left:552.000000pt;}
.xb7_c00256{left:553.333333pt;}
.xa6_c00256{left:554.666667pt;}
.x63_c00256{left:557.333333pt;}
.x3f_c00256{left:560.000000pt;}
.xe8_c00256{left:564.373333pt;}
.x64_c00256{left:568.960000pt;}
.xa2_c00256{left:570.293333pt;}
.xe1_c00256{left:572.373333pt;}
.xc9_c00256{left:573.333333pt;}
.xdb_c00256{left:574.666667pt;}
.x24_c00256{left:576.000000pt;}
.x6b_c00256{left:577.333333pt;}
.xfc_c00256{left:578.293333pt;}
.x95_c00256{left:580.000000pt;}
.xf2_c00256{left:584.000000pt;}
.x33_c00256{left:585.333333pt;}
.x8c_c00256{left:592.373333pt;}
.xa3_c00256{left:594.666667pt;}
.x34_c00256{left:596.000000pt;}
.x6c_c00256{left:597.333333pt;}
.x105_c00256{left:600.373333pt;}
.x101_c00256{left:601.333333pt;}
.x14_c00256{left:602.666667pt;}
.x40_c00256{left:605.333333pt;}
.x9e_c00256{left:607.040000pt;}
.xbe_c00256{left:608.960000pt;}
.xc2_c00256{left:612.960000pt;}
.x4f_c00256{left:615.040000pt;}
.x41_c00256{left:617.333333pt;}
.xa7_c00256{left:618.666667pt;}
.xe9_c00256{left:620.000000pt;}
.x96_c00256{left:624.000000pt;}
.x2_c00256{left:624.960000pt;}
.x35_c00256{left:628.000000pt;}
.xd6_c00256{left:632.000000pt;}
.x77_c00256{left:638.093333pt;}
.x102_c00256{left:642.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_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_d97c42fd48265213930a2403.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md0_c00257{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.md5_c00257{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.ma9_c00257{transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);}
.m2f_c00257{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_c00257{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.mc6_c00257{transform:matrix(0.365126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365126,0.000000,0.000000,0.250000,0,0);}
.mb1_c00257{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m86_c00257{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m95_c00257{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.md1_c00257{transform:matrix(0.373950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373950,0.000000,0.000000,0.250000,0,0);}
.m37_c00257{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mce_c00257{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.mdc_c00257{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m6f_c00257{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m4e_c00257{transform:matrix(0.380252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380252,0.000000,0.000000,0.250000,0,0);}
.m70_c00257{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m73_c00257{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m5c_c00257{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.mea_c00257{transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);}
.m84_c00257{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m7c_c00257{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m94_c00257{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.ma1_c00257{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.me9_c00257{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.mb3_c00257{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m93_c00257{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m6b_c00257{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m56_c00257{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m20_c00257{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m63_c00257{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.md8_c00257{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.mbe_c00257{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.maa_c00257{transform:matrix(0.403758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403758,0.000000,0.000000,0.250000,0,0);}
.ma_c00257{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mb8_c00257{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m46_c00257{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m87_c00257{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.ma8_c00257{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.mb4_c00257{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.mcd_c00257{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.me8_c00257{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m18_c00257{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m3e_c00257{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m68_c00257{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m33_c00257{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mb0_c00257{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.mc1_c00257{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m65_c00257{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m62_c00257{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mb7_c00257{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m42_c00257{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m61_c00257{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.mbf_c00257{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m9f_c00257{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m19_c00257{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.mb2_c00257{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m54_c00257{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m10_c00257{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.ma4_c00257{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m48_c00257{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mc8_c00257{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m91_c00257{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m97_c00257{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m59_c00257{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mae_c00257{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m69_c00257{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mec_c00257{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.m7f_c00257{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.ma7_c00257{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m88_c00257{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m96_c00257{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m4c_c00257{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.md4_c00257{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m4a_c00257{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m57_c00257{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m98_c00257{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.ma5_c00257{transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);}
.mb9_c00257{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.md7_c00257{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.med_c00257{transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);}
.m38_c00257{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.me6_c00257{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m5e_c00257{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m64_c00257{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m7b_c00257{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.me7_c00257{transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);}
.m2b_c00257{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.me1_c00257{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m9c_c00257{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m3a_c00257{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m8c_c00257{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m11_c00257{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.meb_c00257{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.mda_c00257{transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);}
.mf_c00257{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mcb_c00257{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mab_c00257{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m13_c00257{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.mc0_c00257{transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);}
.m1a_c00257{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.me_c00257{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m8d_c00257{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m35_c00257{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.mdb_c00257{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.m89_c00257{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.md9_c00257{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mc9_c00257{transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);}
.m7a_c00257{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.me2_c00257{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m9_c00257{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m9a_c00257{transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);}
.m5f_c00257{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.m3d_c00257{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m50_c00257{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m7d_c00257{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.md2_c00257{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m9b_c00257{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m3c_c00257{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_c00257{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m51_c00257{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m77_c00257{transform:matrix(0.493277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493277,0.000000,0.000000,0.250000,0,0);}
.m82_c00257{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m45_c00257{transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);}
.m12_c00257{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_c00257{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.md3_c00257{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m5b_c00257{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m30_c00257{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m23_c00257{transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);}
.mca_c00257{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m58_c00257{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m2_c00257{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m14_c00257{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m75_c00257{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.mc_c00257{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m34_c00257{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m8f_c00257{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.me5_c00257{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.m43_c00257{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m74_c00257{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m1e_c00257{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m67_c00257{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.me0_c00257{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m81_c00257{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m21_c00257{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m1d_c00257{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mdd_c00257{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m7_c00257{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.ma2_c00257{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m3_c00257{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.ma3_c00257{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m5_c00257{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m3f_c00257{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m1c_c00257{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m29_c00257{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m25_c00257{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.me3_c00257{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m24_c00257{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m6c_c00257{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mba_c00257{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m40_c00257{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m2c_c00257{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m72_c00257{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m0_c00257{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m5a_c00257{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.md_c00257{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m15_c00257{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m16_c00257{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m49_c00257{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mbc_c00257{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m4d_c00257{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mbb_c00257{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.mb6_c00257{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m3b_c00257{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);}
.mc7_c00257{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.mac_c00257{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m6a_c00257{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m4_c00257{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m99_c00257{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m8b_c00257{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mcf_c00257{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.mdf_c00257{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m28_c00257{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m32_c00257{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m4b_c00257{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m6_c00257{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m79_c00257{transform:matrix(0.572356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572356,0.000000,0.000000,0.250000,0,0);}
.m27_c00257{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m2e_c00257{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mee_c00257{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m53_c00257{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.ma6_c00257{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.mc5_c00257{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m76_c00257{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m55_c00257{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m80_c00257{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.m6d_c00257{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.mc3_c00257{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m78_c00257{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.md6_c00257{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.m66_c00257{transform:matrix(0.596475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596475,0.000000,0.000000,0.250000,0,0);}
.mad_c00257{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m52_c00257{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mde_c00257{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m31_c00257{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.m83_c00257{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m9d_c00257{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mbd_c00257{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m22_c00257{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m36_c00257{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m1_c00257{transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);}
.mb_c00257{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m7e_c00257{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.mc4_c00257{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m4f_c00257{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.maf_c00257{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m92_c00257{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mc2_c00257{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.mcc_c00257{transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);}
.m1f_c00257{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m1b_c00257{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m8_c00257{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m39_c00257{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m6e_c00257{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mb5_c00257{transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);}
.m17_c00257{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m26_c00257{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m2a_c00257{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m85_c00257{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m44_c00257{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.me4_c00257{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m8a_c00257{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.m8e_c00257{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m5d_c00257{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m71_c00257{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m47_c00257{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m60_c00257{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m2d_c00257{transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.841346,0.000000,0.000000,0.250000,0,0);}
.m90_c00257{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00257{vertical-align:0.000000px;}
.v1_c00257{vertical-align:12.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:-6.988015px;}
.ws1_c00257{word-spacing:0.000000px;}
.fc0_c00257{color:transparent;}
.fs6_c00257{font-size:3.420000px;}
.fs3_c00257{font-size:18.720000px;}
.fs1_c00257{font-size:20.400000px;}
.fs0_c00257{font-size:25.500000px;}
.fs2_c00257{font-size:28.920000px;}
.fs5_c00257{font-size:32.340000px;}
.fs4_c00257{font-size:35.700000px;}
.fs7_c00257{font-size:39.120000px;}
.y0_c00257{bottom:0.000000px;}
.ycb_c00257{bottom:249.405000px;}
.yc6_c00257{bottom:249.825000px;}
.yc8_c00257{bottom:250.245000px;}
.ycc_c00257{bottom:251.745000px;}
.yc9_c00257{bottom:251.970000px;}
.yc7_c00257{bottom:252.405000px;}
.ycd_c00257{bottom:253.470000px;}
.yca_c00257{bottom:253.905000px;}
.yc4_c00257{bottom:268.905000px;}
.yc0_c00257{bottom:270.630000px;}
.yc3_c00257{bottom:270.825000px;}
.yc1_c00257{bottom:271.245000px;}
.ybf_c00257{bottom:271.905000px;}
.yc5_c00257{bottom:272.325000px;}
.yc2_c00257{bottom:273.405000px;}
.yba_c00257{bottom:289.245000px;}
.ybd_c00257{bottom:290.745000px;}
.yb9_c00257{bottom:291.405000px;}
.ybc_c00257{bottom:291.630000px;}
.ybb_c00257{bottom:292.470000px;}
.ybe_c00257{bottom:292.905000px;}
.yb8_c00257{bottom:310.245000px;}
.yb7_c00257{bottom:311.130000px;}
.yb6_c00257{bottom:312.405000px;}
.yb4_c00257{bottom:329.745000px;}
.yb5_c00257{bottom:330.825000px;}
.yb3_c00257{bottom:331.905000px;}
.yb0_c00257{bottom:349.245000px;}
.yb2_c00257{bottom:350.325000px;}
.yb1_c00257{bottom:351.405000px;}
.yaf_c00257{bottom:352.470000px;}
.yac_c00257{bottom:368.745000px;}
.yae_c00257{bottom:369.825000px;}
.yab_c00257{bottom:370.905000px;}
.yad_c00257{bottom:371.130000px;}
.ya8_c00257{bottom:388.245000px;}
.yaa_c00257{bottom:388.680000px;}
.ya9_c00257{bottom:389.745000px;}
.ya5_c00257{bottom:390.405000px;}
.ya7_c00257{bottom:391.470000px;}
.ya6_c00257{bottom:391.905000px;}
.ya0_c00257{bottom:407.745000px;}
.ya1_c00257{bottom:409.245000px;}
.y9f_c00257{bottom:409.905000px;}
.ya4_c00257{bottom:410.130000px;}
.ya3_c00257{bottom:410.970000px;}
.ya2_c00257{bottom:411.405000px;}
.y9c_c00257{bottom:426.405000px;}
.y9d_c00257{bottom:428.325000px;}
.y9e_c00257{bottom:428.550000px;}
.y9a_c00257{bottom:428.745000px;}
.y9b_c00257{bottom:429.825000px;}
.y99_c00257{bottom:430.905000px;}
.y96_c00257{bottom:448.245000px;}
.y98_c00257{bottom:449.970000px;}
.y95_c00257{bottom:450.405000px;}
.y97_c00257{bottom:450.630000px;}
.y90_c00257{bottom:467.745000px;}
.y94_c00257{bottom:467.970000px;}
.y92_c00257{bottom:468.825000px;}
.y8f_c00257{bottom:469.905000px;}
.y91_c00257{bottom:470.130000px;}
.y93_c00257{bottom:470.970000px;}
.y8c_c00257{bottom:487.245000px;}
.y8d_c00257{bottom:487.470000px;}
.y8e_c00257{bottom:488.745000px;}
.y8a_c00257{bottom:489.405000px;}
.y89_c00257{bottom:489.630000px;}
.y8b_c00257{bottom:490.905000px;}
.y86_c00257{bottom:505.905000px;}
.y85_c00257{bottom:506.745000px;}
.y83_c00257{bottom:508.245000px;}
.y82_c00257{bottom:508.905000px;}
.y88_c00257{bottom:509.130000px;}
.y87_c00257{bottom:509.970000px;}
.y84_c00257{bottom:510.405000px;}
.y7e_c00257{bottom:525.405000px;}
.y7f_c00257{bottom:527.745000px;}
.y81_c00257{bottom:528.630000px;}
.y80_c00257{bottom:529.905000px;}
.y7d_c00257{bottom:547.245000px;}
.y7b_c00257{bottom:548.130000px;}
.y7c_c00257{bottom:548.970000px;}
.y7a_c00257{bottom:549.405000px;}
.y78_c00257{bottom:566.550000px;}
.y77_c00257{bottom:566.745000px;}
.y75_c00257{bottom:567.825000px;}
.y76_c00257{bottom:568.905000px;}
.y79_c00257{bottom:569.130000px;}
.y73_c00257{bottom:585.180000px;}
.y72_c00257{bottom:586.245000px;}
.y71_c00257{bottom:588.405000px;}
.y74_c00257{bottom:588.630000px;}
.y6e_c00257{bottom:605.745000px;}
.y6d_c00257{bottom:606.180000px;}
.y70_c00257{bottom:607.245000px;}
.y6f_c00257{bottom:607.905000px;}
.y6b_c00257{bottom:608.970000px;}
.y6c_c00257{bottom:609.405000px;}
.y65_c00257{bottom:625.245000px;}
.y6a_c00257{bottom:626.745000px;}
.y69_c00257{bottom:627.630000px;}
.y67_c00257{bottom:627.825000px;}
.y66_c00257{bottom:628.470000px;}
.y68_c00257{bottom:628.905000px;}
.y63_c00257{bottom:646.245000px;}
.y64_c00257{bottom:647.970000px;}
.y61_c00257{bottom:648.405000px;}
.y62_c00257{bottom:648.420000px;}
.y5c_c00257{bottom:663.405000px;}
.y5e_c00257{bottom:664.905000px;}
.y60_c00257{bottom:666.630000px;}
.y5d_c00257{bottom:666.825000px;}
.y5f_c00257{bottom:667.905000px;}
.y5a_c00257{bottom:684.405000px;}
.y57_c00257{bottom:685.245000px;}
.y5b_c00257{bottom:686.130000px;}
.y59_c00257{bottom:686.325000px;}
.y58_c00257{bottom:687.405000px;}
.y54_c00257{bottom:703.470000px;}
.y52_c00257{bottom:703.905000px;}
.y51_c00257{bottom:704.745000px;}
.y55_c00257{bottom:706.470000px;}
.y53_c00257{bottom:706.905000px;}
.y56_c00257{bottom:707.130000px;}
.y4d_c00257{bottom:723.405000px;}
.y4c_c00257{bottom:724.245000px;}
.y50_c00257{bottom:724.470000px;}
.y4e_c00257{bottom:725.325000px;}
.y4f_c00257{bottom:726.405000px;}
.y4a_c00257{bottom:742.905000px;}
.y46_c00257{bottom:743.745000px;}
.y49_c00257{bottom:743.970000px;}
.y4b_c00257{bottom:744.825000px;}
.y47_c00257{bottom:745.905000px;}
.y48_c00257{bottom:746.130000px;}
.y45_c00257{bottom:764.745000px;}
.y41_c00257{bottom:765.405000px;}
.y44_c00257{bottom:765.630000px;}
.y43_c00257{bottom:766.470000px;}
.y42_c00257{bottom:766.905000px;}
.y40_c00257{bottom:782.745000px;}
.y3f_c00257{bottom:784.905000px;}
.y3e_c00257{bottom:801.405000px;}
.y39_c00257{bottom:803.325000px;}
.y3d_c00257{bottom:803.745000px;}
.y3a_c00257{bottom:804.405000px;}
.y3b_c00257{bottom:804.630000px;}
.y3c_c00257{bottom:805.905000px;}
.y37_c00257{bottom:823.245000px;}
.y38_c00257{bottom:825.405000px;}
.y34_c00257{bottom:842.745000px;}
.y35_c00257{bottom:843.630000px;}
.y36_c00257{bottom:843.825000px;}
.y33_c00257{bottom:844.905000px;}
.y32_c00257{bottom:861.405000px;}
.y30_c00257{bottom:862.245000px;}
.y31_c00257{bottom:864.405000px;}
.y2e_c00257{bottom:881.745000px;}
.y2d_c00257{bottom:883.905000px;}
.y2f_c00257{bottom:884.970000px;}
.y28_c00257{bottom:901.245000px;}
.y2c_c00257{bottom:902.325000px;}
.y29_c00257{bottom:903.405000px;}
.y2a_c00257{bottom:903.630000px;}
.y2b_c00257{bottom:904.905000px;}
.y24_c00257{bottom:920.745000px;}
.y23_c00257{bottom:921.825000px;}
.y26_c00257{bottom:922.245000px;}
.y25_c00257{bottom:923.130000px;}
.y27_c00257{bottom:924.405000px;}
.y21_c00257{bottom:939.405000px;}
.y20_c00257{bottom:941.745000px;}
.y22_c00257{bottom:942.630000px;}
.y1f_c00257{bottom:943.905000px;}
.y18_c00257{bottom:960.825000px;}
.y1a_c00257{bottom:961.245000px;}
.y1b_c00257{bottom:962.130000px;}
.y1c_c00257{bottom:962.325000px;}
.y1d_c00257{bottom:962.970000px;}
.y19_c00257{bottom:963.405000px;}
.y1e_c00257{bottom:964.470000px;}
.y13_c00257{bottom:978.405000px;}
.y16_c00257{bottom:980.745000px;}
.y15_c00257{bottom:981.630000px;}
.y14_c00257{bottom:982.905000px;}
.y17_c00257{bottom:983.970000px;}
.yf_c00257{bottom:997.905000px;}
.y12_c00257{bottom:1001.130000px;}
.y11_c00257{bottom:1001.325000px;}
.ye_c00257{bottom:1002.405000px;}
.y10_c00257{bottom:1003.470000px;}
.yc_c00257{bottom:1019.745000px;}
.yb_c00257{bottom:1020.630000px;}
.yd_c00257{bottom:1020.825000px;}
.ya_c00257{bottom:1021.905000px;}
.y7_c00257{bottom:1038.405000px;}
.y8_c00257{bottom:1039.245000px;}
.y9_c00257{bottom:1041.405000px;}
.y5_c00257{bottom:1058.745000px;}
.y3_c00257{bottom:1060.905000px;}
.y4_c00257{bottom:1061.130000px;}
.y6_c00257{bottom:1061.970000px;}
.y2_c00257{bottom:1099.050000px;}
.y1_c00257{bottom:1100.970000px;}
.h8_c00257{height:4.206533px;}
.h4_c00257{height:23.025234px;}
.h2_c00257{height:25.091602px;}
.h1_c00257{height:31.364502px;}
.h3_c00257{height:35.571035px;}
.h7_c00257{height:39.777568px;}
.h5_c00257{height:43.910303px;}
.h6_c00257{height:47.571035px;}
.h9_c00257{height:48.116836px;}
.h0_c00257{height:1335.000000px;}
.w0_c00257{width:880.500000px;}
.x0_c00257{left:0.000000px;}
.x10a_c00257{left:150.000000px;}
.xc0_c00257{left:151.500000px;}
.x91_c00257{left:153.000000px;}
.x1_c00257{left:154.080000px;}
.xe0_c00257{left:165.000000px;}
.xdd_c00257{left:168.000000px;}
.x9c_c00257{left:169.500000px;}
.xc1_c00257{left:175.500000px;}
.xf7_c00257{left:178.920000px;}
.xf0_c00257{left:180.000000px;}
.xd9_c00257{left:181.500000px;}
.x83_c00257{left:183.420000px;}
.x51_c00257{left:185.580000px;}
.x70_c00257{left:187.920000px;}
.xa8_c00257{left:189.000000px;}
.x11_c00257{left:190.500000px;}
.x37_c00257{left:193.500000px;}
.x2a_c00257{left:194.580000px;}
.xc6_c00257{left:196.080000px;}
.xba_c00257{left:199.500000px;}
.x92_c00257{left:200.580000px;}
.xc2_c00257{left:202.500000px;}
.x1d_c00257{left:205.080000px;}
.x44_c00257{left:207.000000px;}
.x3_c00257{left:208.500000px;}
.xaf_c00257{left:210.420000px;}
.x7a_c00257{left:213.000000px;}
.x12_c00257{left:214.920000px;}
.x71_c00257{left:216.000000px;}
.xa9_c00257{left:220.500000px;}
.xe9_c00257{left:223.080000px;}
.x38_c00257{left:225.000000px;}
.x45_c00257{left:226.920000px;}
.x65_c00257{left:228.000000px;}
.x52_c00257{left:229.920000px;}
.x10f_c00257{left:231.420000px;}
.xe6_c00257{left:232.500000px;}
.x1e_c00257{left:235.920000px;}
.x66_c00257{left:240.000000px;}
.x4_c00257{left:241.500000px;}
.xd4_c00257{left:243.000000px;}
.x13_c00257{left:244.920000px;}
.x2b_c00257{left:246.000000px;}
.x84_c00257{left:247.500000px;}
.xcb_c00257{left:248.580000px;}
.xf1_c00257{left:250.920000px;}
.x46_c00257{left:255.000000px;}
.x72_c00257{left:256.500000px;}
.xbd_c00257{left:259.500000px;}
.x53_c00257{left:261.000000px;}
.x1f_c00257{left:262.500000px;}
.x114_c00257{left:263.580000px;}
.x85_c00257{left:265.500000px;}
.xcc_c00257{left:267.000000px;}
.x39_c00257{left:268.500000px;}
.x67_c00257{left:270.000000px;}
.x8b_c00257{left:271.920000px;}
.x73_c00257{left:273.420000px;}
.x2c_c00257{left:274.920000px;}
.x54_c00257{left:276.420000px;}
.xf2_c00257{left:277.500000px;}
.xf8_c00257{left:279.420000px;}
.xb0_c00257{left:280.920000px;}
.xb4_c00257{left:283.920000px;}
.x5_c00257{left:285.000000px;}
.x106_c00257{left:286.500000px;}
.x9a_c00257{left:287.580000px;}
.x47_c00257{left:291.420000px;}
.x7b_c00257{left:292.500000px;}
.x110_c00257{left:295.500000px;}
.x93_c00257{left:297.000000px;}
.x20_c00257{left:299.580000px;}
.x3a_c00257{left:301.080000px;}
.xde_c00257{left:303.420000px;}
.x115_c00257{left:304.500000px;}
.x9b_c00257{left:306.420000px;}
.xe1_c00257{left:307.500000px;}
.xd5_c00257{left:308.580000px;}
.xff_c00257{left:310.500000px;}
.xd0_c00257{left:313.920000px;}
.x60_c00257{left:315.420000px;}
.xb1_c00257{left:316.920000px;}
.xea_c00257{left:318.000000px;}
.xf3_c00257{left:319.920000px;}
.x3b_c00257{left:321.420000px;}
.x48_c00257{left:322.920000px;}
.x2d_c00257{left:324.000000px;}
.x68_c00257{left:325.500000px;}
.x14_c00257{left:329.580000px;}
.x8c_c00257{left:333.000000px;}
.x6_c00257{left:334.080000px;}
.xeb_c00257{left:335.580000px;}
.xe2_c00257{left:337.920000px;}
.x116_c00257{left:339.000000px;}
.xa1_c00257{left:341.580000px;}
.xda_c00257{left:343.080000px;}
.x21_c00257{left:345.420000px;}
.x3c_c00257{left:348.420000px;}
.x15_c00257{left:349.920000px;}
.xbb_c00257{left:352.920000px;}
.x7_c00257{left:354.420000px;}
.x117_c00257{left:357.000000px;}
.xaa_c00257{left:358.500000px;}
.x74_c00257{left:360.000000px;}
.x94_c00257{left:361.080000px;}
.xf9_c00257{left:363.000000px;}
.x9d_c00257{left:364.080000px;}
.x10d_c00257{left:366.000000px;}
.x55_c00257{left:367.500000px;}
.xb2_c00257{left:369.000000px;}
.x7c_c00257{left:370.500000px;}
.xa2_c00257{left:371.580000px;}
.x2e_c00257{left:376.080000px;}
.xc3_c00257{left:377.580000px;}
.x16_c00257{left:379.500000px;}
.x102_c00257{left:381.000000px;}
.x8_c00257{left:382.500000px;}
.xbc_c00257{left:384.000000px;}
.x61_c00257{left:385.920000px;}
.x3d_c00257{left:388.920000px;}
.x7d_c00257{left:390.420000px;}
.x22_c00257{left:391.500000px;}
.xd1_c00257{left:396.000000px;}
.x56_c00257{left:397.920000px;}
.xec_c00257{left:399.420000px;}
.x49_c00257{left:402.000000px;}
.x95_c00257{left:403.500000px;}
.xc7_c00257{left:405.000000px;}
.x23_c00257{left:406.500000px;}
.xb5_c00257{left:408.000000px;}
.xfa_c00257{left:409.080000px;}
.x2_c00257{left:411.000000px;}
.xbe_c00257{left:412.080000px;}
.xfb_c00257{left:414.000000px;}
.x9_c00257{left:415.500000px;}
.x7e_c00257{left:416.580000px;}
.x2f_c00257{left:418.500000px;}
.x3e_c00257{left:420.420000px;}
.x57_c00257{left:424.500000px;}
.xed_c00257{left:426.000000px;}
.x111_c00257{left:427.920000px;}
.x69_c00257{left:429.000000px;}
.x75_c00257{left:430.500000px;}
.xa_c00257{left:432.000000px;}
.x118_c00257{left:433.500000px;}
.x103_c00257{left:434.580000px;}
.xcd_c00257{left:436.500000px;}
.x107_c00257{left:438.420000px;}
.x62_c00257{left:439.920000px;}
.xf4_c00257{left:441.000000px;}
.x96_c00257{left:442.500000px;}
.x9e_c00257{left:444.000000px;}
.x6a_c00257{left:445.080000px;}
.x17_c00257{left:447.000000px;}
.x4a_c00257{left:450.000000px;}
.x24_c00257{left:453.420000px;}
.xdb_c00257{left:454.500000px;}
.x10e_c00257{left:456.420000px;}
.x30_c00257{left:457.920000px;}
.xbf_c00257{left:459.000000px;}
.xab_c00257{left:460.500000px;}
.xc8_c00257{left:462.420000px;}
.xa3_c00257{left:465.000000px;}
.x97_c00257{left:468.000000px;}
.x58_c00257{left:469.500000px;}
.xe3_c00257{left:471.420000px;}
.x76_c00257{left:472.500000px;}
.x6b_c00257{left:477.420000px;}
.x86_c00257{left:478.500000px;}
.xee_c00257{left:480.000000px;}
.x18_c00257{left:482.580000px;}
.xb6_c00257{left:484.500000px;}
.x3f_c00257{left:485.580000px;}
.xdf_c00257{left:486.645000px;}
.xce_c00257{left:487.920000px;}
.xf5_c00257{left:489.420000px;}
.xc9_c00257{left:490.500000px;}
.x25_c00257{left:492.000000px;}
.x31_c00257{left:495.000000px;}
.xac_c00257{left:496.500000px;}
.xe7_c00257{left:498.000000px;}
.x63_c00257{left:501.000000px;}
.x19_c00257{left:502.920000px;}
.xb_c00257{left:504.000000px;}
.xc4_c00257{left:507.000000px;}
.x32_c00257{left:508.080000px;}
.xd6_c00257{left:510.420000px;}
.x9f_c00257{left:513.000000px;}
.x112_c00257{left:516.000000px;}
.xdc_c00257{left:519.420000px;}
.x59_c00257{left:521.580000px;}
.xf6_c00257{left:524.580000px;}
.x7f_c00257{left:528.420000px;}
.x87_c00257{left:529.920000px;}
.x1a_c00257{left:531.000000px;}
.xa4_c00257{left:532.500000px;}
.x4b_c00257{left:534.420000px;}
.x40_c00257{left:537.420000px;}
.x5a_c00257{left:541.920000px;}
.xc_c00257{left:543.420000px;}
.x33_c00257{left:545.580000px;}
.xb7_c00257{left:547.500000px;}
.x98_c00257{left:549.000000px;}
.x77_c00257{left:550.500000px;}
.x108_c00257{left:551.580000px;}
.x100_c00257{left:554.580000px;}
.x88_c00257{left:559.500000px;}
.x4c_c00257{left:562.500000px;}
.x34_c00257{left:564.000000px;}
.xd7_c00257{left:565.500000px;}
.x5b_c00257{left:567.000000px;}
.x8d_c00257{left:568.920000px;}
.xd_c00257{left:570.000000px;}
.xad_c00257{left:573.000000px;}
.x80_c00257{left:574.500000px;}
.xa5_c00257{left:577.500000px;}
.x41_c00257{left:579.000000px;}
.x26_c00257{left:580.080000px;}
.x89_c00257{left:583.500000px;}
.x78_c00257{left:585.000000px;}
.x1b_c00257{left:586.500000px;}
.xa0_c00257{left:592.500000px;}
.x42_c00257{left:595.920000px;}
.x6c_c00257{left:597.420000px;}
.x4d_c00257{left:598.920000px;}
.xe8_c00257{left:600.000000px;}
.xd2_c00257{left:601.500000px;}
.xb3_c00257{left:604.500000px;}
.x113_c00257{left:606.000000px;}
.x5c_c00257{left:610.920000px;}
.x119_c00257{left:612.000000px;}
.xe_c00257{left:613.500000px;}
.x8e_c00257{left:614.775000px;}
.xcf_c00257{left:617.580000px;}
.x10c_c00257{left:619.500000px;}
.x1c_c00257{left:621.000000px;}
.xef_c00257{left:622.500000px;}
.x27_c00257{left:624.000000px;}
.x4e_c00257{left:625.080000px;}
.xfc_c00257{left:627.420000px;}
.x81_c00257{left:628.500000px;}
.x35_c00257{left:634.080000px;}
.x5d_c00257{left:637.500000px;}
.xca_c00257{left:639.000000px;}
.x8f_c00257{left:640.080000px;}
.x82_c00257{left:643.920000px;}
.xa6_c00257{left:645.000000px;}
.xd3_c00257{left:648.000000px;}
.xfd_c00257{left:649.500000px;}
.x8a_c00257{left:654.000000px;}
.xf_c00257{left:655.080000px;}
.x4f_c00257{left:656.580000px;}
.xd8_c00257{left:658.500000px;}
.x6d_c00257{left:659.580000px;}
.x28_c00257{left:661.500000px;}
.xc5_c00257{left:663.000000px;}
.xe4_c00257{left:664.080000px;}
.x109_c00257{left:667.080000px;}
.xb8_c00257{left:669.420000px;}
.x104_c00257{left:670.500000px;}
.x101_c00257{left:673.500000px;}
.x36_c00257{left:675.000000px;}
.xa7_c00257{left:676.500000px;}
.x6e_c00257{left:678.420000px;}
.x5e_c00257{left:682.500000px;}
.x43_c00257{left:686.580000px;}
.x29_c00257{left:688.500000px;}
.x64_c00257{left:689.580000px;}
.x105_c00257{left:694.080000px;}
.xe5_c00257{left:695.355000px;}
.x5f_c00257{left:697.500000px;}
.xae_c00257{left:699.000000px;}
.x99_c00257{left:700.920000px;}
.x50_c00257{left:703.080000px;}
.x6f_c00257{left:705.420000px;}
.x10b_c00257{left:708.420000px;}
.x10_c00257{left:709.920000px;}
.xfe_c00257{left:715.500000px;}
.xb9_c00257{left:716.580000px;}
.x90_c00257{left:720.000000px;}
.x79_c00257{left:721.500000px;}
@media print{
.v0_c00257{vertical-align:0.000000pt;}
.v1_c00257{vertical-align:10.666667pt;}
.ls0_c00257{letter-spacing:0.000000pt;}
.ws0_c00257{word-spacing:-6.211569pt;}
.ws1_c00257{word-spacing:0.000000pt;}
.fs6_c00257{font-size:3.040000pt;}
.fs3_c00257{font-size:16.640000pt;}
.fs1_c00257{font-size:18.133333pt;}
.fs0_c00257{font-size:22.666667pt;}
.fs2_c00257{font-size:25.706667pt;}
.fs5_c00257{font-size:28.746667pt;}
.fs4_c00257{font-size:31.733333pt;}
.fs7_c00257{font-size:34.773333pt;}
.y0_c00257{bottom:0.000000pt;}
.ycb_c00257{bottom:221.693333pt;}
.yc6_c00257{bottom:222.066667pt;}
.yc8_c00257{bottom:222.440000pt;}
.ycc_c00257{bottom:223.773333pt;}
.yc9_c00257{bottom:223.973333pt;}
.yc7_c00257{bottom:224.360000pt;}
.ycd_c00257{bottom:225.306667pt;}
.yca_c00257{bottom:225.693333pt;}
.yc4_c00257{bottom:239.026667pt;}
.yc0_c00257{bottom:240.560000pt;}
.yc3_c00257{bottom:240.733333pt;}
.yc1_c00257{bottom:241.106667pt;}
.ybf_c00257{bottom:241.693333pt;}
.yc5_c00257{bottom:242.066667pt;}
.yc2_c00257{bottom:243.026667pt;}
.yba_c00257{bottom:257.106667pt;}
.ybd_c00257{bottom:258.440000pt;}
.yb9_c00257{bottom:259.026667pt;}
.ybc_c00257{bottom:259.226667pt;}
.ybb_c00257{bottom:259.973333pt;}
.ybe_c00257{bottom:260.360000pt;}
.yb8_c00257{bottom:275.773333pt;}
.yb7_c00257{bottom:276.560000pt;}
.yb6_c00257{bottom:277.693333pt;}
.yb4_c00257{bottom:293.106667pt;}
.yb5_c00257{bottom:294.066667pt;}
.yb3_c00257{bottom:295.026667pt;}
.yb0_c00257{bottom:310.440000pt;}
.yb2_c00257{bottom:311.400000pt;}
.yb1_c00257{bottom:312.360000pt;}
.yaf_c00257{bottom:313.306667pt;}
.yac_c00257{bottom:327.773333pt;}
.yae_c00257{bottom:328.733333pt;}
.yab_c00257{bottom:329.693333pt;}
.yad_c00257{bottom:329.893333pt;}
.ya8_c00257{bottom:345.106667pt;}
.yaa_c00257{bottom:345.493333pt;}
.ya9_c00257{bottom:346.440000pt;}
.ya5_c00257{bottom:347.026667pt;}
.ya7_c00257{bottom:347.973333pt;}
.ya6_c00257{bottom:348.360000pt;}
.ya0_c00257{bottom:362.440000pt;}
.ya1_c00257{bottom:363.773333pt;}
.y9f_c00257{bottom:364.360000pt;}
.ya4_c00257{bottom:364.560000pt;}
.ya3_c00257{bottom:365.306667pt;}
.ya2_c00257{bottom:365.693333pt;}
.y9c_c00257{bottom:379.026667pt;}
.y9d_c00257{bottom:380.733333pt;}
.y9e_c00257{bottom:380.933333pt;}
.y9a_c00257{bottom:381.106667pt;}
.y9b_c00257{bottom:382.066667pt;}
.y99_c00257{bottom:383.026667pt;}
.y96_c00257{bottom:398.440000pt;}
.y98_c00257{bottom:399.973333pt;}
.y95_c00257{bottom:400.360000pt;}
.y97_c00257{bottom:400.560000pt;}
.y90_c00257{bottom:415.773333pt;}
.y94_c00257{bottom:415.973333pt;}
.y92_c00257{bottom:416.733333pt;}
.y8f_c00257{bottom:417.693333pt;}
.y91_c00257{bottom:417.893333pt;}
.y93_c00257{bottom:418.640000pt;}
.y8c_c00257{bottom:433.106667pt;}
.y8d_c00257{bottom:433.306667pt;}
.y8e_c00257{bottom:434.440000pt;}
.y8a_c00257{bottom:435.026667pt;}
.y89_c00257{bottom:435.226667pt;}
.y8b_c00257{bottom:436.360000pt;}
.y86_c00257{bottom:449.693333pt;}
.y85_c00257{bottom:450.440000pt;}
.y83_c00257{bottom:451.773333pt;}
.y82_c00257{bottom:452.360000pt;}
.y88_c00257{bottom:452.560000pt;}
.y87_c00257{bottom:453.306667pt;}
.y84_c00257{bottom:453.693333pt;}
.y7e_c00257{bottom:467.026667pt;}
.y7f_c00257{bottom:469.106667pt;}
.y81_c00257{bottom:469.893333pt;}
.y80_c00257{bottom:471.026667pt;}
.y7d_c00257{bottom:486.440000pt;}
.y7b_c00257{bottom:487.226667pt;}
.y7c_c00257{bottom:487.973333pt;}
.y7a_c00257{bottom:488.360000pt;}
.y78_c00257{bottom:503.600000pt;}
.y77_c00257{bottom:503.773333pt;}
.y75_c00257{bottom:504.733333pt;}
.y76_c00257{bottom:505.693333pt;}
.y79_c00257{bottom:505.893333pt;}
.y73_c00257{bottom:520.160000pt;}
.y72_c00257{bottom:521.106667pt;}
.y71_c00257{bottom:523.026667pt;}
.y74_c00257{bottom:523.226667pt;}
.y6e_c00257{bottom:538.440000pt;}
.y6d_c00257{bottom:538.826667pt;}
.y70_c00257{bottom:539.773333pt;}
.y6f_c00257{bottom:540.360000pt;}
.y6b_c00257{bottom:541.306667pt;}
.y6c_c00257{bottom:541.693333pt;}
.y65_c00257{bottom:555.773333pt;}
.y6a_c00257{bottom:557.106667pt;}
.y69_c00257{bottom:557.893333pt;}
.y67_c00257{bottom:558.066667pt;}
.y66_c00257{bottom:558.640000pt;}
.y68_c00257{bottom:559.026667pt;}
.y63_c00257{bottom:574.440000pt;}
.y64_c00257{bottom:575.973333pt;}
.y61_c00257{bottom:576.360000pt;}
.y62_c00257{bottom:576.373333pt;}
.y5c_c00257{bottom:589.693333pt;}
.y5e_c00257{bottom:591.026667pt;}
.y60_c00257{bottom:592.560000pt;}
.y5d_c00257{bottom:592.733333pt;}
.y5f_c00257{bottom:593.693333pt;}
.y5a_c00257{bottom:608.360000pt;}
.y57_c00257{bottom:609.106667pt;}
.y5b_c00257{bottom:609.893333pt;}
.y59_c00257{bottom:610.066667pt;}
.y58_c00257{bottom:611.026667pt;}
.y54_c00257{bottom:625.306667pt;}
.y52_c00257{bottom:625.693333pt;}
.y51_c00257{bottom:626.440000pt;}
.y55_c00257{bottom:627.973333pt;}
.y53_c00257{bottom:628.360000pt;}
.y56_c00257{bottom:628.560000pt;}
.y4d_c00257{bottom:643.026667pt;}
.y4c_c00257{bottom:643.773333pt;}
.y50_c00257{bottom:643.973333pt;}
.y4e_c00257{bottom:644.733333pt;}
.y4f_c00257{bottom:645.693333pt;}
.y4a_c00257{bottom:660.360000pt;}
.y46_c00257{bottom:661.106667pt;}
.y49_c00257{bottom:661.306667pt;}
.y4b_c00257{bottom:662.066667pt;}
.y47_c00257{bottom:663.026667pt;}
.y48_c00257{bottom:663.226667pt;}
.y45_c00257{bottom:679.773333pt;}
.y41_c00257{bottom:680.360000pt;}
.y44_c00257{bottom:680.560000pt;}
.y43_c00257{bottom:681.306667pt;}
.y42_c00257{bottom:681.693333pt;}
.y40_c00257{bottom:695.773333pt;}
.y3f_c00257{bottom:697.693333pt;}
.y3e_c00257{bottom:712.360000pt;}
.y39_c00257{bottom:714.066667pt;}
.y3d_c00257{bottom:714.440000pt;}
.y3a_c00257{bottom:715.026667pt;}
.y3b_c00257{bottom:715.226667pt;}
.y3c_c00257{bottom:716.360000pt;}
.y37_c00257{bottom:731.773333pt;}
.y38_c00257{bottom:733.693333pt;}
.y34_c00257{bottom:749.106667pt;}
.y35_c00257{bottom:749.893333pt;}
.y36_c00257{bottom:750.066667pt;}
.y33_c00257{bottom:751.026667pt;}
.y32_c00257{bottom:765.693333pt;}
.y30_c00257{bottom:766.440000pt;}
.y31_c00257{bottom:768.360000pt;}
.y2e_c00257{bottom:783.773333pt;}
.y2d_c00257{bottom:785.693333pt;}
.y2f_c00257{bottom:786.640000pt;}
.y28_c00257{bottom:801.106667pt;}
.y2c_c00257{bottom:802.066667pt;}
.y29_c00257{bottom:803.026667pt;}
.y2a_c00257{bottom:803.226667pt;}
.y2b_c00257{bottom:804.360000pt;}
.y24_c00257{bottom:818.440000pt;}
.y23_c00257{bottom:819.400000pt;}
.y26_c00257{bottom:819.773333pt;}
.y25_c00257{bottom:820.560000pt;}
.y27_c00257{bottom:821.693333pt;}
.y21_c00257{bottom:835.026667pt;}
.y20_c00257{bottom:837.106667pt;}
.y22_c00257{bottom:837.893333pt;}
.y1f_c00257{bottom:839.026667pt;}
.y18_c00257{bottom:854.066667pt;}
.y1a_c00257{bottom:854.440000pt;}
.y1b_c00257{bottom:855.226667pt;}
.y1c_c00257{bottom:855.400000pt;}
.y1d_c00257{bottom:855.973333pt;}
.y19_c00257{bottom:856.360000pt;}
.y1e_c00257{bottom:857.306667pt;}
.y13_c00257{bottom:869.693333pt;}
.y16_c00257{bottom:871.773333pt;}
.y15_c00257{bottom:872.560000pt;}
.y14_c00257{bottom:873.693333pt;}
.y17_c00257{bottom:874.640000pt;}
.yf_c00257{bottom:887.026667pt;}
.y12_c00257{bottom:889.893333pt;}
.y11_c00257{bottom:890.066667pt;}
.ye_c00257{bottom:891.026667pt;}
.y10_c00257{bottom:891.973333pt;}
.yc_c00257{bottom:906.440000pt;}
.yb_c00257{bottom:907.226667pt;}
.yd_c00257{bottom:907.400000pt;}
.ya_c00257{bottom:908.360000pt;}
.y7_c00257{bottom:923.026667pt;}
.y8_c00257{bottom:923.773333pt;}
.y9_c00257{bottom:925.693333pt;}
.y5_c00257{bottom:941.106667pt;}
.y3_c00257{bottom:943.026667pt;}
.y4_c00257{bottom:943.226667pt;}
.y6_c00257{bottom:943.973333pt;}
.y2_c00257{bottom:976.933333pt;}
.y1_c00257{bottom:978.640000pt;}
.h8_c00257{height:3.739141pt;}
.h4_c00257{height:20.466875pt;}
.h2_c00257{height:22.303646pt;}
.h1_c00257{height:27.879557pt;}
.h3_c00257{height:31.618698pt;}
.h7_c00257{height:35.357839pt;}
.h5_c00257{height:39.031380pt;}
.h6_c00257{height:42.285365pt;}
.h9_c00257{height:42.770521pt;}
.h0_c00257{height:1186.666667pt;}
.w0_c00257{width:782.666667pt;}
.x0_c00257{left:0.000000pt;}
.x10a_c00257{left:133.333333pt;}
.xc0_c00257{left:134.666667pt;}
.x91_c00257{left:136.000000pt;}
.x1_c00257{left:136.960000pt;}
.xe0_c00257{left:146.666667pt;}
.xdd_c00257{left:149.333333pt;}
.x9c_c00257{left:150.666667pt;}
.xc1_c00257{left:156.000000pt;}
.xf7_c00257{left:159.040000pt;}
.xf0_c00257{left:160.000000pt;}
.xd9_c00257{left:161.333333pt;}
.x83_c00257{left:163.040000pt;}
.x51_c00257{left:164.960000pt;}
.x70_c00257{left:167.040000pt;}
.xa8_c00257{left:168.000000pt;}
.x11_c00257{left:169.333333pt;}
.x37_c00257{left:172.000000pt;}
.x2a_c00257{left:172.960000pt;}
.xc6_c00257{left:174.293333pt;}
.xba_c00257{left:177.333333pt;}
.x92_c00257{left:178.293333pt;}
.xc2_c00257{left:180.000000pt;}
.x1d_c00257{left:182.293333pt;}
.x44_c00257{left:184.000000pt;}
.x3_c00257{left:185.333333pt;}
.xaf_c00257{left:187.040000pt;}
.x7a_c00257{left:189.333333pt;}
.x12_c00257{left:191.040000pt;}
.x71_c00257{left:192.000000pt;}
.xa9_c00257{left:196.000000pt;}
.xe9_c00257{left:198.293333pt;}
.x38_c00257{left:200.000000pt;}
.x45_c00257{left:201.706667pt;}
.x65_c00257{left:202.666667pt;}
.x52_c00257{left:204.373333pt;}
.x10f_c00257{left:205.706667pt;}
.xe6_c00257{left:206.666667pt;}
.x1e_c00257{left:209.706667pt;}
.x66_c00257{left:213.333333pt;}
.x4_c00257{left:214.666667pt;}
.xd4_c00257{left:216.000000pt;}
.x13_c00257{left:217.706667pt;}
.x2b_c00257{left:218.666667pt;}
.x84_c00257{left:220.000000pt;}
.xcb_c00257{left:220.960000pt;}
.xf1_c00257{left:223.040000pt;}
.x46_c00257{left:226.666667pt;}
.x72_c00257{left:228.000000pt;}
.xbd_c00257{left:230.666667pt;}
.x53_c00257{left:232.000000pt;}
.x1f_c00257{left:233.333333pt;}
.x114_c00257{left:234.293333pt;}
.x85_c00257{left:236.000000pt;}
.xcc_c00257{left:237.333333pt;}
.x39_c00257{left:238.666667pt;}
.x67_c00257{left:240.000000pt;}
.x8b_c00257{left:241.706667pt;}
.x73_c00257{left:243.040000pt;}
.x2c_c00257{left:244.373333pt;}
.x54_c00257{left:245.706667pt;}
.xf2_c00257{left:246.666667pt;}
.xf8_c00257{left:248.373333pt;}
.xb0_c00257{left:249.706667pt;}
.xb4_c00257{left:252.373333pt;}
.x5_c00257{left:253.333333pt;}
.x106_c00257{left:254.666667pt;}
.x9a_c00257{left:255.626667pt;}
.x47_c00257{left:259.040000pt;}
.x7b_c00257{left:260.000000pt;}
.x110_c00257{left:262.666667pt;}
.x93_c00257{left:264.000000pt;}
.x20_c00257{left:266.293333pt;}
.x3a_c00257{left:267.626667pt;}
.xde_c00257{left:269.706667pt;}
.x115_c00257{left:270.666667pt;}
.x9b_c00257{left:272.373333pt;}
.xe1_c00257{left:273.333333pt;}
.xd5_c00257{left:274.293333pt;}
.xff_c00257{left:276.000000pt;}
.xd0_c00257{left:279.040000pt;}
.x60_c00257{left:280.373333pt;}
.xb1_c00257{left:281.706667pt;}
.xea_c00257{left:282.666667pt;}
.xf3_c00257{left:284.373333pt;}
.x3b_c00257{left:285.706667pt;}
.x48_c00257{left:287.040000pt;}
.x2d_c00257{left:288.000000pt;}
.x68_c00257{left:289.333333pt;}
.x14_c00257{left:292.960000pt;}
.x8c_c00257{left:296.000000pt;}
.x6_c00257{left:296.960000pt;}
.xeb_c00257{left:298.293333pt;}
.xe2_c00257{left:300.373333pt;}
.x116_c00257{left:301.333333pt;}
.xa1_c00257{left:303.626667pt;}
.xda_c00257{left:304.960000pt;}
.x21_c00257{left:307.040000pt;}
.x3c_c00257{left:309.706667pt;}
.x15_c00257{left:311.040000pt;}
.xbb_c00257{left:313.706667pt;}
.x7_c00257{left:315.040000pt;}
.x117_c00257{left:317.333333pt;}
.xaa_c00257{left:318.666667pt;}
.x74_c00257{left:320.000000pt;}
.x94_c00257{left:320.960000pt;}
.xf9_c00257{left:322.666667pt;}
.x9d_c00257{left:323.626667pt;}
.x10d_c00257{left:325.333333pt;}
.x55_c00257{left:326.666667pt;}
.xb2_c00257{left:328.000000pt;}
.x7c_c00257{left:329.333333pt;}
.xa2_c00257{left:330.293333pt;}
.x2e_c00257{left:334.293333pt;}
.xc3_c00257{left:335.626667pt;}
.x16_c00257{left:337.333333pt;}
.x102_c00257{left:338.666667pt;}
.x8_c00257{left:340.000000pt;}
.xbc_c00257{left:341.333333pt;}
.x61_c00257{left:343.040000pt;}
.x3d_c00257{left:345.706667pt;}
.x7d_c00257{left:347.040000pt;}
.x22_c00257{left:348.000000pt;}
.xd1_c00257{left:352.000000pt;}
.x56_c00257{left:353.706667pt;}
.xec_c00257{left:355.040000pt;}
.x49_c00257{left:357.333333pt;}
.x95_c00257{left:358.666667pt;}
.xc7_c00257{left:360.000000pt;}
.x23_c00257{left:361.333333pt;}
.xb5_c00257{left:362.666667pt;}
.xfa_c00257{left:363.626667pt;}
.x2_c00257{left:365.333333pt;}
.xbe_c00257{left:366.293333pt;}
.xfb_c00257{left:368.000000pt;}
.x9_c00257{left:369.333333pt;}
.x7e_c00257{left:370.293333pt;}
.x2f_c00257{left:372.000000pt;}
.x3e_c00257{left:373.706667pt;}
.x57_c00257{left:377.333333pt;}
.xed_c00257{left:378.666667pt;}
.x111_c00257{left:380.373333pt;}
.x69_c00257{left:381.333333pt;}
.x75_c00257{left:382.666667pt;}
.xa_c00257{left:384.000000pt;}
.x118_c00257{left:385.333333pt;}
.x103_c00257{left:386.293333pt;}
.xcd_c00257{left:388.000000pt;}
.x107_c00257{left:389.706667pt;}
.x62_c00257{left:391.040000pt;}
.xf4_c00257{left:392.000000pt;}
.x96_c00257{left:393.333333pt;}
.x9e_c00257{left:394.666667pt;}
.x6a_c00257{left:395.626667pt;}
.x17_c00257{left:397.333333pt;}
.x4a_c00257{left:400.000000pt;}
.x24_c00257{left:403.040000pt;}
.xdb_c00257{left:404.000000pt;}
.x10e_c00257{left:405.706667pt;}
.x30_c00257{left:407.040000pt;}
.xbf_c00257{left:408.000000pt;}
.xab_c00257{left:409.333333pt;}
.xc8_c00257{left:411.040000pt;}
.xa3_c00257{left:413.333333pt;}
.x97_c00257{left:416.000000pt;}
.x58_c00257{left:417.333333pt;}
.xe3_c00257{left:419.040000pt;}
.x76_c00257{left:420.000000pt;}
.x6b_c00257{left:424.373333pt;}
.x86_c00257{left:425.333333pt;}
.xee_c00257{left:426.666667pt;}
.x18_c00257{left:428.960000pt;}
.xb6_c00257{left:430.666667pt;}
.x3f_c00257{left:431.626667pt;}
.xdf_c00257{left:432.573333pt;}
.xce_c00257{left:433.706667pt;}
.xf5_c00257{left:435.040000pt;}
.xc9_c00257{left:436.000000pt;}
.x25_c00257{left:437.333333pt;}
.x31_c00257{left:440.000000pt;}
.xac_c00257{left:441.333333pt;}
.xe7_c00257{left:442.666667pt;}
.x63_c00257{left:445.333333pt;}
.x19_c00257{left:447.040000pt;}
.xb_c00257{left:448.000000pt;}
.xc4_c00257{left:450.666667pt;}
.x32_c00257{left:451.626667pt;}
.xd6_c00257{left:453.706667pt;}
.x9f_c00257{left:456.000000pt;}
.x112_c00257{left:458.666667pt;}
.xdc_c00257{left:461.706667pt;}
.x59_c00257{left:463.626667pt;}
.xf6_c00257{left:466.293333pt;}
.x7f_c00257{left:469.706667pt;}
.x87_c00257{left:471.040000pt;}
.x1a_c00257{left:472.000000pt;}
.xa4_c00257{left:473.333333pt;}
.x4b_c00257{left:475.040000pt;}
.x40_c00257{left:477.706667pt;}
.x5a_c00257{left:481.706667pt;}
.xc_c00257{left:483.040000pt;}
.x33_c00257{left:484.960000pt;}
.xb7_c00257{left:486.666667pt;}
.x98_c00257{left:488.000000pt;}
.x77_c00257{left:489.333333pt;}
.x108_c00257{left:490.293333pt;}
.x100_c00257{left:492.960000pt;}
.x88_c00257{left:497.333333pt;}
.x4c_c00257{left:500.000000pt;}
.x34_c00257{left:501.333333pt;}
.xd7_c00257{left:502.666667pt;}
.x5b_c00257{left:504.000000pt;}
.x8d_c00257{left:505.706667pt;}
.xd_c00257{left:506.666667pt;}
.xad_c00257{left:509.333333pt;}
.x80_c00257{left:510.666667pt;}
.xa5_c00257{left:513.333333pt;}
.x41_c00257{left:514.666667pt;}
.x26_c00257{left:515.626667pt;}
.x89_c00257{left:518.666667pt;}
.x78_c00257{left:520.000000pt;}
.x1b_c00257{left:521.333333pt;}
.xa0_c00257{left:526.666667pt;}
.x42_c00257{left:529.706667pt;}
.x6c_c00257{left:531.040000pt;}
.x4d_c00257{left:532.373333pt;}
.xe8_c00257{left:533.333333pt;}
.xd2_c00257{left:534.666667pt;}
.xb3_c00257{left:537.333333pt;}
.x113_c00257{left:538.666667pt;}
.x5c_c00257{left:543.040000pt;}
.x119_c00257{left:544.000000pt;}
.xe_c00257{left:545.333333pt;}
.x8e_c00257{left:546.466667pt;}
.xcf_c00257{left:548.960000pt;}
.x10c_c00257{left:550.666667pt;}
.x1c_c00257{left:552.000000pt;}
.xef_c00257{left:553.333333pt;}
.x27_c00257{left:554.666667pt;}
.x4e_c00257{left:555.626667pt;}
.xfc_c00257{left:557.706667pt;}
.x81_c00257{left:558.666667pt;}
.x35_c00257{left:563.626667pt;}
.x5d_c00257{left:566.666667pt;}
.xca_c00257{left:568.000000pt;}
.x8f_c00257{left:568.960000pt;}
.x82_c00257{left:572.373333pt;}
.xa6_c00257{left:573.333333pt;}
.xd3_c00257{left:576.000000pt;}
.xfd_c00257{left:577.333333pt;}
.x8a_c00257{left:581.333333pt;}
.xf_c00257{left:582.293333pt;}
.x4f_c00257{left:583.626667pt;}
.xd8_c00257{left:585.333333pt;}
.x6d_c00257{left:586.293333pt;}
.x28_c00257{left:588.000000pt;}
.xc5_c00257{left:589.333333pt;}
.xe4_c00257{left:590.293333pt;}
.x109_c00257{left:592.960000pt;}
.xb8_c00257{left:595.040000pt;}
.x104_c00257{left:596.000000pt;}
.x101_c00257{left:598.666667pt;}
.x36_c00257{left:600.000000pt;}
.xa7_c00257{left:601.333333pt;}
.x6e_c00257{left:603.040000pt;}
.x5e_c00257{left:606.666667pt;}
.x43_c00257{left:610.293333pt;}
.x29_c00257{left:612.000000pt;}
.x64_c00257{left:612.960000pt;}
.x105_c00257{left:616.960000pt;}
.xe5_c00257{left:618.093333pt;}
.x5f_c00257{left:620.000000pt;}
.xae_c00257{left:621.333333pt;}
.x99_c00257{left:623.040000pt;}
.x50_c00257{left:624.960000pt;}
.x6f_c00257{left:627.040000pt;}
.x10b_c00257{left:629.706667pt;}
.x10_c00257{left:631.040000pt;}
.xfe_c00257{left:636.000000pt;}
.xb9_c00257{left:636.960000pt;}
.x90_c00257{left:640.000000pt;}
.x79_c00257{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ed9eee35f9e3a54e0eb17735.woff2')format("woff");}.ff1_c00258{font-family:ff1_c00258;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m96_c00258{transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);}
.m82_c00258{transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);}
.mc0_c00258{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.mf3_c00258{transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);}
.m47_c00258{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.me5_c00258{transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);}
.ma5_c00258{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m94_c00258{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m63_c00258{transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);}
.m74_c00258{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mea_c00258{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m81_c00258{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.maf_c00258{transform:matrix(0.371549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371549,0.000000,0.000000,0.250000,0,0);}
.mc3_c00258{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.me9_c00258{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00258{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m8c_c00258{transform:matrix(0.376534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376534,0.000000,0.000000,0.250000,0,0);}
.mb0_c00258{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m8d_c00258{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m3_c00258{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.ma6_c00258{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m60_c00258{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.mdf_c00258{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.me1_c00258{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m3d_c00258{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m5c_c00258{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m2_c00258{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m91_c00258{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mac_c00258{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mc6_c00258{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m79_c00258{transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);}
.m7a_c00258{transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);}
.m65_c00258{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.ma2_c00258{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.m32_c00258{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m5e_c00258{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.ma8_c00258{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.ma7_c00258{transform:matrix(0.403374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403374,0.000000,0.000000,0.250000,0,0);}
.mdb_c00258{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m93_c00258{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m7e_c00258{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.mb9_c00258{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m9_c00258{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m9e_c00258{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.mb4_c00258{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.mbf_c00258{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m2d_c00258{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m76_c00258{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.ma9_c00258{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m8e_c00258{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.md0_c00258{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m95_c00258{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m99_c00258{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m6c_c00258{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m2b_c00258{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mf4_c00258{transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);}
.m22_c00258{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m28_c00258{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.md5_c00258{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m61_c00258{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m17_c00258{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m52_c00258{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.me2_c00258{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.mc9_c00258{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mcf_c00258{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m4e_c00258{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m9f_c00258{transform:matrix(0.428298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428298,0.000000,0.000000,0.250000,0,0);}
.m26_c00258{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m23_c00258{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.md2_c00258{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.ma4_c00258{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m9d_c00258{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m5_c00258{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m85_c00258{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mb3_c00258{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m77_c00258{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.mb_c00258{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.mca_c00258{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m73_c00258{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m9a_c00258{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m35_c00258{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.mc4_c00258{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.me0_c00258{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.md1_c00258{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m58_c00258{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.mf2_c00258{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.mdc_c00258{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m14_c00258{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m72_c00258{transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);}
.m1f_c00258{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m3a_c00258{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m50_c00258{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m90_c00258{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.md3_c00258{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m7f_c00258{transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);}
.mbc_c00258{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.mbb_c00258{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m98_c00258{transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);}
.mba_c00258{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mcc_c00258{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.mcb_c00258{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.md8_c00258{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.m7d_c00258{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.mae_c00258{transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);}
.m57_c00258{transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);}
.m80_c00258{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.md6_c00258{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m5f_c00258{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m5b_c00258{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mee_c00258{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.me3_c00258{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m53_c00258{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m48_c00258{transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);}
.med_c00258{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.m39_c00258{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m24_c00258{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m75_c00258{transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);}
.mb5_c00258{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m56_c00258{transform:matrix(0.487815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487815,0.000000,0.000000,0.250000,0,0);}
.mb8_c00258{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.mbe_c00258{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mab_c00258{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.m1_c00258{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m69_c00258{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m8_c00258{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m6_c00258{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m7_c00258{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);}
.m7c_c00258{transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);}
.m27_c00258{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m10_c00258{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.mbd_c00258{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.me4_c00258{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mc7_c00258{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m36_c00258{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m3e_c00258{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m2c_c00258{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m55_c00258{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m34_c00258{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m31_c00258{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m4c_c00258{transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);}
.m16_c00258{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m6f_c00258{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m5a_c00258{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m70_c00258{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m43_c00258{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m3f_c00258{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m54_c00258{transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);}
.m4f_c00258{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mf1_c00258{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m44_c00258{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m25_c00258{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m11_c00258{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m4_c00258{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m92_c00258{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m19_c00258{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m6b_c00258{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m67_c00258{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m30_c00258{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m88_c00258{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m89_c00258{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m46_c00258{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m1e_c00258{transform:matrix(0.541280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541280,0.000000,0.000000,0.250000,0,0);}
.mb2_c00258{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m59_c00258{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m37_c00258{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mda_c00258{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.meb_c00258{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m2f_c00258{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m12_c00258{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m78_c00258{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m29_c00258{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.ma1_c00258{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mad_c00258{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m3b_c00258{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.maa_c00258{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m20_c00258{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m40_c00258{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m64_c00258{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mef_c00258{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m18_c00258{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mdd_c00258{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m41_c00258{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.mb1_c00258{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m49_c00258{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m33_c00258{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m7b_c00258{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m8a_c00258{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mcd_c00258{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m8b_c00258{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m9b_c00258{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m8f_c00258{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.ma3_c00258{transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);}
.m45_c00258{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m15_c00258{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m84_c00258{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m97_c00258{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.md_c00258{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m2a_c00258{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m1d_c00258{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m38_c00258{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m68_c00258{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.mec_c00258{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.mf_c00258{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m71_c00258{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.mce_c00258{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.md4_c00258{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m62_c00258{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m13_c00258{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mc5_c00258{transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);}
.m4b_c00258{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.m1a_c00258{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.me6_c00258{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.me7_c00258{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mc8_c00258{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m6e_c00258{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m87_c00258{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.m1b_c00258{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mc2_c00258{transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);}
.mf0_c00258{transform:matrix(0.617059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617059,0.000000,0.000000,0.250000,0,0);}
.m1c_c00258{transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);}
.m9c_c00258{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);}
.mde_c00258{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.ma0_c00258{transform:matrix(0.636411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636411,0.000000,0.000000,0.250000,0,0);}
.m5d_c00258{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.ma_c00258{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m2e_c00258{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m0_c00258{transform:matrix(0.672276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672276,0.000000,0.000000,0.250000,0,0);}
.m83_c00258{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.mb6_c00258{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m21_c00258{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m6a_c00258{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m6d_c00258{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mc_c00258{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m42_c00258{transform:matrix(0.744391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.744391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.744391,0.000000,0.000000,0.250000,0,0);}
.m51_c00258{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.me8_c00258{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.mb7_c00258{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.md7_c00258{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.me_c00258{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m66_c00258{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.mc1_c00258{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.md9_c00258{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m3c_c00258{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m4d_c00258{transform:matrix(3.763274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.763274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.763274,0.000000,0.000000,0.250000,0,0);}
.m86_c00258{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws1_c00258{word-spacing:-16.889280px;}
.ws2_c00258{word-spacing:-2.878560px;}
.ws3_c00258{word-spacing:-1.611816px;}
.ws0_c00258{word-spacing:-0.716972px;}
.ws4_c00258{word-spacing:0.000000px;}
._0_c00258{width:6.523121px;}
.fc0_c00258{color:transparent;}
.fs7_c00258{font-size:3.420000px;}
.fs5_c00258{font-size:6.780000px;}
.fs0_c00258{font-size:18.720000px;}
.fs6_c00258{font-size:20.400000px;}
.fs4_c00258{font-size:25.500000px;}
.fs1_c00258{font-size:28.920000px;}
.fs3_c00258{font-size:32.340000px;}
.fs2_c00258{font-size:35.700000px;}
.fs8_c00258{font-size:39.120000px;}
.y0_c00258{bottom:0.000000px;}
.yc0_c00258{bottom:251.745000px;}
.ybf_c00258{bottom:252.180000px;}
.yba_c00258{bottom:253.245000px;}
.ybb_c00258{bottom:253.905000px;}
.ybd_c00258{bottom:254.130000px;}
.ybc_c00258{bottom:254.970000px;}
.ybe_c00258{bottom:255.405000px;}
.yb3_c00258{bottom:270.405000px;}
.yb6_c00258{bottom:272.325000px;}
.yb7_c00258{bottom:272.745000px;}
.yb9_c00258{bottom:273.405000px;}
.yb4_c00258{bottom:273.630000px;}
.yb8_c00258{bottom:273.825000px;}
.yb5_c00258{bottom:274.905000px;}
.yae_c00258{bottom:289.905000px;}
.yb2_c00258{bottom:291.180000px;}
.yb1_c00258{bottom:292.245000px;}
.yaf_c00258{bottom:293.130000px;}
.yac_c00258{bottom:293.970000px;}
.yad_c00258{bottom:294.405000px;}
.yb0_c00258{bottom:295.470000px;}
.ya9_c00258{bottom:311.745000px;}
.yab_c00258{bottom:313.245000px;}
.ya8_c00258{bottom:313.905000px;}
.yaa_c00258{bottom:314.130000px;}
.ya6_c00258{bottom:331.245000px;}
.ya4_c00258{bottom:332.325000px;}
.ya5_c00258{bottom:332.745000px;}
.ya2_c00258{bottom:333.405000px;}
.ya3_c00258{bottom:333.630000px;}
.ya7_c00258{bottom:334.905000px;}
.y9d_c00258{bottom:350.970000px;}
.ya0_c00258{bottom:351.825000px;}
.y9e_c00258{bottom:352.245000px;}
.y9b_c00258{bottom:352.905000px;}
.ya1_c00258{bottom:353.130000px;}
.y9f_c00258{bottom:353.970000px;}
.y9c_c00258{bottom:354.405000px;}
.y97_c00258{bottom:369.405000px;}
.y95_c00258{bottom:370.245000px;}
.y98_c00258{bottom:371.745000px;}
.y9a_c00258{bottom:372.405000px;}
.y96_c00258{bottom:372.630000px;}
.y99_c00258{bottom:373.905000px;}
.y94_c00258{bottom:388.905000px;}
.y90_c00258{bottom:391.245000px;}
.y93_c00258{bottom:392.130000px;}
.y92_c00258{bottom:392.325000px;}
.y91_c00258{bottom:392.970000px;}
.y8f_c00258{bottom:393.405000px;}
.y8e_c00258{bottom:410.745000px;}
.y8d_c00258{bottom:411.630000px;}
.y8c_c00258{bottom:412.905000px;}
.y8b_c00258{bottom:430.245000px;}
.y8a_c00258{bottom:432.405000px;}
.y85_c00258{bottom:449.745000px;}
.y87_c00258{bottom:450.825000px;}
.y86_c00258{bottom:451.470000px;}
.y88_c00258{bottom:451.905000px;}
.y89_c00258{bottom:452.130000px;}
.y80_c00258{bottom:469.245000px;}
.y82_c00258{bottom:470.745000px;}
.y81_c00258{bottom:471.405000px;}
.y83_c00258{bottom:472.470000px;}
.y84_c00258{bottom:472.905000px;}
.y7c_c00258{bottom:488.745000px;}
.y7f_c00258{bottom:490.050000px;}
.y7e_c00258{bottom:490.245000px;}
.y7a_c00258{bottom:491.130000px;}
.y7d_c00258{bottom:491.970000px;}
.y7b_c00258{bottom:492.405000px;}
.y79_c00258{bottom:509.745000px;}
.y78_c00258{bottom:510.630000px;}
.y76_c00258{bottom:510.825000px;}
.y77_c00258{bottom:511.905000px;}
.y74_c00258{bottom:526.905000px;}
.y72_c00258{bottom:529.245000px;}
.y75_c00258{bottom:530.130000px;}
.y73_c00258{bottom:531.405000px;}
.y70_c00258{bottom:548.745000px;}
.y6f_c00258{bottom:549.630000px;}
.y6e_c00258{bottom:550.905000px;}
.y71_c00258{bottom:551.130000px;}
.y6c_c00258{bottom:567.405000px;}
.y69_c00258{bottom:568.245000px;}
.y6b_c00258{bottom:570.405000px;}
.y6d_c00258{bottom:570.630000px;}
.y6a_c00258{bottom:571.470000px;}
.y66_c00258{bottom:588.180000px;}
.y67_c00258{bottom:589.245000px;}
.y64_c00258{bottom:589.905000px;}
.y68_c00258{bottom:590.130000px;}
.y65_c00258{bottom:591.405000px;}
.y63_c00258{bottom:607.245000px;}
.y5f_c00258{bottom:608.745000px;}
.y5e_c00258{bottom:609.405000px;}
.y61_c00258{bottom:609.630000px;}
.y62_c00258{bottom:610.470000px;}
.y60_c00258{bottom:610.905000px;}
.y5d_c00258{bottom:627.180000px;}
.y5b_c00258{bottom:628.245000px;}
.y5c_c00258{bottom:630.405000px;}
.y5a_c00258{bottom:646.680000px;}
.y57_c00258{bottom:647.745000px;}
.y59_c00258{bottom:649.050000px;}
.y58_c00258{bottom:649.905000px;}
.y54_c00258{bottom:667.245000px;}
.y56_c00258{bottom:667.680000px;}
.y53_c00258{bottom:668.130000px;}
.y52_c00258{bottom:669.405000px;}
.y55_c00258{bottom:669.630000px;}
.y4b_c00258{bottom:685.680000px;}
.y4f_c00258{bottom:685.905000px;}
.y4d_c00258{bottom:686.745000px;}
.y4e_c00258{bottom:687.825000px;}
.y51_c00258{bottom:688.245000px;}
.y4c_c00258{bottom:688.905000px;}
.y50_c00258{bottom:690.405000px;}
.y46_c00258{bottom:706.245000px;}
.y49_c00258{bottom:707.745000px;}
.y4a_c00258{bottom:709.470000px;}
.y48_c00258{bottom:709.905000px;}
.y47_c00258{bottom:709.920000px;}
.y43_c00258{bottom:735.825000px;}
.y42_c00258{bottom:736.905000px;}
.y44_c00258{bottom:737.130000px;}
.y41_c00258{bottom:737.970000px;}
.y45_c00258{bottom:739.050000px;}
.y3e_c00258{bottom:754.470000px;}
.y3f_c00258{bottom:755.325000px;}
.y40_c00258{bottom:755.550000px;}
.y3d_c00258{bottom:757.470000px;}
.y3c_c00258{bottom:779.745000px;}
.y3b_c00258{bottom:781.905000px;}
.y37_c00258{bottom:824.745000px;}
.y3a_c00258{bottom:826.905000px;}
.y38_c00258{bottom:827.130000px;}
.y39_c00258{bottom:827.970000px;}
.y35_c00258{bottom:844.245000px;}
.y34_c00258{bottom:846.405000px;}
.y36_c00258{bottom:846.630000px;}
.y33_c00258{bottom:863.745000px;}
.y32_c00258{bottom:865.905000px;}
.y2d_c00258{bottom:883.245000px;}
.y2f_c00258{bottom:884.745000px;}
.y2c_c00258{bottom:885.405000px;}
.y31_c00258{bottom:885.825000px;}
.y2e_c00258{bottom:886.470000px;}
.y30_c00258{bottom:886.905000px;}
.y27_c00258{bottom:902.745000px;}
.y29_c00258{bottom:904.245000px;}
.y2a_c00258{bottom:905.325000px;}
.y2b_c00258{bottom:905.970000px;}
.y28_c00258{bottom:906.405000px;}
.y25_c00258{bottom:921.855000px;}
.y22_c00258{bottom:923.325000px;}
.y21_c00258{bottom:923.745000px;}
.y23_c00258{bottom:924.405000px;}
.y26_c00258{bottom:924.630000px;}
.y24_c00258{bottom:925.905000px;}
.y1f_c00258{bottom:940.905000px;}
.y20_c00258{bottom:944.130000px;}
.y1e_c00258{bottom:945.405000px;}
.y1c_c00258{bottom:962.745000px;}
.y1b_c00258{bottom:963.825000px;}
.y1a_c00258{bottom:964.905000px;}
.y1d_c00258{bottom:965.130000px;}
.y18_c00258{bottom:981.405000px;}
.y19_c00258{bottom:981.825000px;}
.y14_c00258{bottom:982.245000px;}
.y16_c00258{bottom:983.970000px;}
.y15_c00258{bottom:984.405000px;}
.y17_c00258{bottom:985.470000px;}
.y12_c00258{bottom:1001.745000px;}
.y13_c00258{bottom:1003.470000px;}
.y11_c00258{bottom:1003.905000px;}
.ye_c00258{bottom:1020.405000px;}
.y10_c00258{bottom:1021.245000px;}
.yd_c00258{bottom:1023.405000px;}
.yf_c00258{bottom:1023.630000px;}
.yc_c00258{bottom:1040.745000px;}
.ya_c00258{bottom:1041.825000px;}
.y9_c00258{bottom:1042.905000px;}
.yb_c00258{bottom:1043.970000px;}
.y8_c00258{bottom:1059.405000px;}
.y7_c00258{bottom:1060.470000px;}
.y6_c00258{bottom:1061.325000px;}
.y3_c00258{bottom:1061.745000px;}
.y5_c00258{bottom:1062.630000px;}
.y4_c00258{bottom:1063.905000px;}
.y2_c00258{bottom:1099.905000px;}
.y1_c00258{bottom:1101.630000px;}
.h8_c00258{height:4.206533px;}
.h6_c00258{height:8.339268px;}
.h1_c00258{height:23.025234px;}
.h7_c00258{height:25.091602px;}
.h5_c00258{height:31.364502px;}
.h2_c00258{height:35.571035px;}
.h4_c00258{height:39.777568px;}
.h3_c00258{height:43.910303px;}
.h9_c00258{height:48.116836px;}
.h0_c00258{height:1335.000000px;}
.w0_c00258{width:880.500000px;}
.x0_c00258{left:0.000000px;}
.x3_c00258{left:151.080000px;}
.x54_c00258{left:152.580000px;}
.xa4_c00258{left:154.080000px;}
.x78_c00258{left:168.000000px;}
.x96_c00258{left:169.500000px;}
.xd6_c00258{left:174.420000px;}
.x13_c00258{left:177.420000px;}
.xd1_c00258{left:180.000000px;}
.xbb_c00258{left:181.500000px;}
.x97_c00258{left:183.000000px;}
.xdf_c00258{left:185.580000px;}
.xc7_c00258{left:187.920000px;}
.x73_c00258{left:190.500000px;}
.x33_c00258{left:192.000000px;}
.xe2_c00258{left:195.000000px;}
.x79_c00258{left:198.420000px;}
.x4_c00258{left:199.500000px;}
.xa5_c00258{left:201.000000px;}
.x55_c00258{left:202.275000px;}
.x1e_c00258{left:203.580000px;}
.xf9_c00258{left:205.500000px;}
.x88_c00258{left:208.500000px;}
.xf5_c00258{left:211.500000px;}
.xbc_c00258{left:214.080000px;}
.x60_c00258{left:216.000000px;}
.x14_c00258{left:217.500000px;}
.xbe_c00258{left:218.580000px;}
.xfa_c00258{left:220.500000px;}
.x56_c00258{left:228.000000px;}
.x5_c00258{left:229.500000px;}
.x34_c00258{left:231.000000px;}
.x4a_c00258{left:232.500000px;}
.x2b_c00258{left:234.000000px;}
.x1f_c00258{left:236.580000px;}
.x74_c00258{left:238.500000px;}
.xa6_c00258{left:239.580000px;}
.x69_c00258{left:241.920000px;}
.xd7_c00258{left:243.000000px;}
.xb7_c00258{left:246.000000px;}
.xdb_c00258{left:249.420000px;}
.x3f_c00258{left:250.500000px;}
.x15_c00258{left:252.000000px;}
.x2c_c00258{left:255.420000px;}
.xad_c00258{left:256.500000px;}
.x98_c00258{left:258.000000px;}
.x75_c00258{left:259.080000px;}
.x80_c00258{left:262.500000px;}
.x6_c00258{left:263.580000px;}
.xf1_c00258{left:265.500000px;}
.x89_c00258{left:266.580000px;}
.x8e_c00258{left:268.500000px;}
.x57_c00258{left:271.080000px;}
.x93_c00258{left:272.580000px;}
.xc3_c00258{left:274.500000px;}
.x6a_c00258{left:277.500000px;}
.x82_c00258{left:280.500000px;}
.x20_c00258{left:283.080000px;}
.x35_c00258{left:285.000000px;}
.xa0_c00258{left:286.500000px;}
.x81_c00258{left:289.500000px;}
.x40_c00258{left:291.000000px;}
.x7a_c00258{left:292.500000px;}
.xa7_c00258{left:294.420000px;}
.x76_c00258{left:297.420000px;}
.xc8_c00258{left:298.500000px;}
.x7_c00258{left:300.000000px;}
.xfb_c00258{left:302.580000px;}
.x36_c00258{left:305.580000px;}
.x94_c00258{left:309.645000px;}
.x84_c00258{left:312.000000px;}
.xbf_c00258{left:313.080000px;}
.x99_c00258{left:315.000000px;}
.xc4_c00258{left:316.500000px;}
.xe6_c00258{left:318.000000px;}
.x41_c00258{left:319.920000px;}
.x21_c00258{left:321.000000px;}
.xa8_c00258{left:322.500000px;}
.xd8_c00258{left:323.580000px;}
.x37_c00258{left:327.420000px;}
.x8a_c00258{left:331.920000px;}
.x85_c00258{left:333.000000px;}
.x16_c00258{left:335.580000px;}
.x77_c00258{left:337.500000px;}
.x4b_c00258{left:339.000000px;}
.xa1_c00258{left:340.920000px;}
.x6b_c00258{left:346.080000px;}
.x9a_c00258{left:348.000000px;}
.xe3_c00258{left:349.500000px;}
.x42_c00258{left:351.000000px;}
.x8_c00258{left:352.080000px;}
.xe7_c00258{left:354.000000px;}
.xc9_c00258{left:356.580000px;}
.x4c_c00258{left:358.920000px;}
.x61_c00258{left:360.420000px;}
.xb3_c00258{left:362.775000px;}
.x38_c00258{left:364.500000px;}
.x17_c00258{left:366.000000px;}
.x2d_c00258{left:367.080000px;}
.x22_c00258{left:369.420000px;}
.x9_c00258{left:372.420000px;}
.x7b_c00258{left:373.500000px;}
.xf6_c00258{left:376.500000px;}
.x8f_c00258{left:378.000000px;}
.x6c_c00258{left:379.500000px;}
.xe8_c00258{left:382.080000px;}
.x2e_c00258{left:387.420000px;}
.xce_c00258{left:390.000000px;}
.x4d_c00258{left:391.500000px;}
.xdc_c00258{left:396.420000px;}
.x39_c00258{left:397.500000px;}
.x23_c00258{left:398.580000px;}
.x62_c00258{left:400.920000px;}
.xf2_c00258{left:402.000000px;}
.xae_c00258{left:403.920000px;}
.x9b_c00258{left:405.420000px;}
.xb4_c00258{left:406.500000px;}
.x1_c00258{left:407.580000px;}
.x83_c00258{left:411.000000px;}
.xa_c00258{left:412.500000px;}
.x58_c00258{left:414.000000px;}
.x2f_c00258{left:417.000000px;}
.xe0_c00258{left:418.920000px;}
.x8b_c00258{left:423.000000px;}
.xd2_c00258{left:426.420000px;}
.x4e_c00258{left:427.500000px;}
.xc5_c00258{left:428.580000px;}
.x18_c00258{left:430.080000px;}
.x86_c00258{left:432.420000px;}
.x63_c00258{left:437.580000px;}
.xcf_c00258{left:439.500000px;}
.x90_c00258{left:441.000000px;}
.x6d_c00258{left:442.500000px;}
.x43_c00258{left:444.000000px;}
.x7c_c00258{left:445.080000px;}
.xc6_c00258{left:446.580000px;}
.x4f_c00258{left:450.420000px;}
.x59_c00258{left:456.000000px;}
.xaf_c00258{left:457.500000px;}
.x24_c00258{left:459.000000px;}
.x19_c00258{left:460.500000px;}
.xe9_c00258{left:462.420000px;}
.xbd_c00258{left:463.920000px;}
.xb5_c00258{left:465.000000px;}
.xc0_c00258{left:466.500000px;}
.x30_c00258{left:471.000000px;}
.x6e_c00258{left:472.500000px;}
.xf3_c00258{left:474.420000px;}
.xb_c00258{left:478.500000px;}
.x50_c00258{left:481.920000px;}
.xe4_c00258{left:484.080000px;}
.x25_c00258{left:485.580000px;}
.x9c_c00258{left:487.920000px;}
.x87_c00258{left:489.000000px;}
.x44_c00258{left:490.500000px;}
.xc_c00258{left:496.500000px;}
.x3a_c00258{left:499.500000px;}
.x6f_c00258{left:500.580000px;}
.xea_c00258{left:504.000000px;}
.x64_c00258{left:506.580000px;}
.xca_c00258{left:508.920000px;}
.x8c_c00258{left:510.855000px;}
.xd0_c00258{left:513.420000px;}
.xd3_c00258{left:515.580000px;}
.xa9_c00258{left:518.580000px;}
.xeb_c00258{left:522.000000px;}
.x26_c00258{left:525.420000px;}
.xb0_c00258{left:526.500000px;}
.x7d_c00258{left:527.580000px;}
.x5a_c00258{left:529.500000px;}
.x1a_c00258{left:531.420000px;}
.x45_c00258{left:532.500000px;}
.x8d_c00258{left:534.420000px;}
.xd_c00258{left:535.500000px;}
.xf7_c00258{left:537.000000px;}
.xb1_c00258{left:544.500000px;}
.xec_c00258{left:546.420000px;}
.x3b_c00258{left:547.500000px;}
.x70_c00258{left:549.000000px;}
.x95_c00258{left:550.080000px;}
.x46_c00258{left:553.920000px;}
.x27_c00258{left:555.000000px;}
.xb6_c00258{left:558.420000px;}
.xef_c00258{left:561.000000px;}
.xd4_c00258{left:562.500000px;}
.xe_c00258{left:564.420000px;}
.x5b_c00258{left:567.420000px;}
.xcb_c00258{left:570.000000px;}
.xb8_c00258{left:573.000000px;}
.x47_c00258{left:580.080000px;}
.x1b_c00258{left:582.000000px;}
.xaa_c00258{left:586.080000px;}
.x51_c00258{left:588.000000px;}
.xf_c00258{left:589.500000px;}
.x65_c00258{left:592.920000px;}
.xf4_c00258{left:595.500000px;}
.xee_c00258{left:598.080000px;}
.x7e_c00258{left:600.000000px;}
.x91_c00258{left:601.500000px;}
.xb9_c00258{left:604.080000px;}
.xe5_c00258{left:606.420000px;}
.x71_c00258{left:607.500000px;}
.x9d_c00258{left:609.000000px;}
.x3c_c00258{left:613.500000px;}
.x28_c00258{left:616.080000px;}
.x48_c00258{left:619.080000px;}
.xcc_c00258{left:621.000000px;}
.x5c_c00258{left:622.920000px;}
.xf8_c00258{left:624.000000px;}
.x92_c00258{left:625.500000px;}
.x10_c00258{left:628.920000px;}
.x66_c00258{left:630.000000px;}
.x1c_c00258{left:631.920000px;}
.x3d_c00258{left:633.000000px;}
.xab_c00258{left:634.500000px;}
.x49_c00258{left:636.000000px;}
.xed_c00258{left:637.500000px;}
.xa2_c00258{left:638.580000px;}
.xd9_c00258{left:640.500000px;}
.x31_c00258{left:645.000000px;}
.xba_c00258{left:646.500000px;}
.x52_c00258{left:647.580000px;}
.x5d_c00258{left:649.500000px;}
.x72_c00258{left:655.500000px;}
.x9e_c00258{left:657.000000px;}
.x7f_c00258{left:659.580000px;}
.xdd_c00258{left:661.080000px;}
.x67_c00258{left:663.000000px;}
.xda_c00258{left:664.920000px;}
.x53_c00258{left:666.000000px;}
.x11_c00258{left:667.920000px;}
.xcd_c00258{left:669.420000px;}
.x3e_c00258{left:672.645000px;}
.xc1_c00258{left:676.500000px;}
.xa3_c00258{left:677.580000px;}
.x5e_c00258{left:681.420000px;}
.x29_c00258{left:682.920000px;}
.xb2_c00258{left:685.500000px;}
.x12_c00258{left:687.420000px;}
.xd5_c00258{left:690.000000px;}
.x32_c00258{left:691.500000px;}
.x1d_c00258{left:693.000000px;}
.xe1_c00258{left:694.080000px;}
.xc2_c00258{left:696.000000px;}
.x9f_c00258{left:697.920000px;}
.xac_c00258{left:703.500000px;}
.x2_c00258{left:704.580000px;}
.xf0_c00258{left:708.420000px;}
.x2a_c00258{left:712.080000px;}
.x68_c00258{left:715.080000px;}
.xfc_c00258{left:720.000000px;}
.x5f_c00258{left:721.500000px;}
.xde_c00258{left:727.920000px;}
@media print{
.v0_c00258{vertical-align:0.000000pt;}
.ls0_c00258{letter-spacing:0.000000pt;}
.ws1_c00258{word-spacing:-15.012693pt;}
.ws2_c00258{word-spacing:-2.558720pt;}
.ws3_c00258{word-spacing:-1.432725pt;}
.ws0_c00258{word-spacing:-0.637308pt;}
.ws4_c00258{word-spacing:0.000000pt;}
._0_c00258{width:5.798329pt;}
.fs7_c00258{font-size:3.040000pt;}
.fs5_c00258{font-size:6.026667pt;}
.fs0_c00258{font-size:16.640000pt;}
.fs6_c00258{font-size:18.133333pt;}
.fs4_c00258{font-size:22.666667pt;}
.fs1_c00258{font-size:25.706667pt;}
.fs3_c00258{font-size:28.746667pt;}
.fs2_c00258{font-size:31.733333pt;}
.fs8_c00258{font-size:34.773333pt;}
.y0_c00258{bottom:0.000000pt;}
.yc0_c00258{bottom:223.773333pt;}
.ybf_c00258{bottom:224.160000pt;}
.yba_c00258{bottom:225.106667pt;}
.ybb_c00258{bottom:225.693333pt;}
.ybd_c00258{bottom:225.893333pt;}
.ybc_c00258{bottom:226.640000pt;}
.ybe_c00258{bottom:227.026667pt;}
.yb3_c00258{bottom:240.360000pt;}
.yb6_c00258{bottom:242.066667pt;}
.yb7_c00258{bottom:242.440000pt;}
.yb9_c00258{bottom:243.026667pt;}
.yb4_c00258{bottom:243.226667pt;}
.yb8_c00258{bottom:243.400000pt;}
.yb5_c00258{bottom:244.360000pt;}
.yae_c00258{bottom:257.693333pt;}
.yb2_c00258{bottom:258.826667pt;}
.yb1_c00258{bottom:259.773333pt;}
.yaf_c00258{bottom:260.560000pt;}
.yac_c00258{bottom:261.306667pt;}
.yad_c00258{bottom:261.693333pt;}
.yb0_c00258{bottom:262.640000pt;}
.ya9_c00258{bottom:277.106667pt;}
.yab_c00258{bottom:278.440000pt;}
.ya8_c00258{bottom:279.026667pt;}
.yaa_c00258{bottom:279.226667pt;}
.ya6_c00258{bottom:294.440000pt;}
.ya4_c00258{bottom:295.400000pt;}
.ya5_c00258{bottom:295.773333pt;}
.ya2_c00258{bottom:296.360000pt;}
.ya3_c00258{bottom:296.560000pt;}
.ya7_c00258{bottom:297.693333pt;}
.y9d_c00258{bottom:311.973333pt;}
.ya0_c00258{bottom:312.733333pt;}
.y9e_c00258{bottom:313.106667pt;}
.y9b_c00258{bottom:313.693333pt;}
.ya1_c00258{bottom:313.893333pt;}
.y9f_c00258{bottom:314.640000pt;}
.y9c_c00258{bottom:315.026667pt;}
.y97_c00258{bottom:328.360000pt;}
.y95_c00258{bottom:329.106667pt;}
.y98_c00258{bottom:330.440000pt;}
.y9a_c00258{bottom:331.026667pt;}
.y96_c00258{bottom:331.226667pt;}
.y99_c00258{bottom:332.360000pt;}
.y94_c00258{bottom:345.693333pt;}
.y90_c00258{bottom:347.773333pt;}
.y93_c00258{bottom:348.560000pt;}
.y92_c00258{bottom:348.733333pt;}
.y91_c00258{bottom:349.306667pt;}
.y8f_c00258{bottom:349.693333pt;}
.y8e_c00258{bottom:365.106667pt;}
.y8d_c00258{bottom:365.893333pt;}
.y8c_c00258{bottom:367.026667pt;}
.y8b_c00258{bottom:382.440000pt;}
.y8a_c00258{bottom:384.360000pt;}
.y85_c00258{bottom:399.773333pt;}
.y87_c00258{bottom:400.733333pt;}
.y86_c00258{bottom:401.306667pt;}
.y88_c00258{bottom:401.693333pt;}
.y89_c00258{bottom:401.893333pt;}
.y80_c00258{bottom:417.106667pt;}
.y82_c00258{bottom:418.440000pt;}
.y81_c00258{bottom:419.026667pt;}
.y83_c00258{bottom:419.973333pt;}
.y84_c00258{bottom:420.360000pt;}
.y7c_c00258{bottom:434.440000pt;}
.y7f_c00258{bottom:435.600000pt;}
.y7e_c00258{bottom:435.773333pt;}
.y7a_c00258{bottom:436.560000pt;}
.y7d_c00258{bottom:437.306667pt;}
.y7b_c00258{bottom:437.693333pt;}
.y79_c00258{bottom:453.106667pt;}
.y78_c00258{bottom:453.893333pt;}
.y76_c00258{bottom:454.066667pt;}
.y77_c00258{bottom:455.026667pt;}
.y74_c00258{bottom:468.360000pt;}
.y72_c00258{bottom:470.440000pt;}
.y75_c00258{bottom:471.226667pt;}
.y73_c00258{bottom:472.360000pt;}
.y70_c00258{bottom:487.773333pt;}
.y6f_c00258{bottom:488.560000pt;}
.y6e_c00258{bottom:489.693333pt;}
.y71_c00258{bottom:489.893333pt;}
.y6c_c00258{bottom:504.360000pt;}
.y69_c00258{bottom:505.106667pt;}
.y6b_c00258{bottom:507.026667pt;}
.y6d_c00258{bottom:507.226667pt;}
.y6a_c00258{bottom:507.973333pt;}
.y66_c00258{bottom:522.826667pt;}
.y67_c00258{bottom:523.773333pt;}
.y64_c00258{bottom:524.360000pt;}
.y68_c00258{bottom:524.560000pt;}
.y65_c00258{bottom:525.693333pt;}
.y63_c00258{bottom:539.773333pt;}
.y5f_c00258{bottom:541.106667pt;}
.y5e_c00258{bottom:541.693333pt;}
.y61_c00258{bottom:541.893333pt;}
.y62_c00258{bottom:542.640000pt;}
.y60_c00258{bottom:543.026667pt;}
.y5d_c00258{bottom:557.493333pt;}
.y5b_c00258{bottom:558.440000pt;}
.y5c_c00258{bottom:560.360000pt;}
.y5a_c00258{bottom:574.826667pt;}
.y57_c00258{bottom:575.773333pt;}
.y59_c00258{bottom:576.933333pt;}
.y58_c00258{bottom:577.693333pt;}
.y54_c00258{bottom:593.106667pt;}
.y56_c00258{bottom:593.493333pt;}
.y53_c00258{bottom:593.893333pt;}
.y52_c00258{bottom:595.026667pt;}
.y55_c00258{bottom:595.226667pt;}
.y4b_c00258{bottom:609.493333pt;}
.y4f_c00258{bottom:609.693333pt;}
.y4d_c00258{bottom:610.440000pt;}
.y4e_c00258{bottom:611.400000pt;}
.y51_c00258{bottom:611.773333pt;}
.y4c_c00258{bottom:612.360000pt;}
.y50_c00258{bottom:613.693333pt;}
.y46_c00258{bottom:627.773333pt;}
.y49_c00258{bottom:629.106667pt;}
.y4a_c00258{bottom:630.640000pt;}
.y48_c00258{bottom:631.026667pt;}
.y47_c00258{bottom:631.040000pt;}
.y43_c00258{bottom:654.066667pt;}
.y42_c00258{bottom:655.026667pt;}
.y44_c00258{bottom:655.226667pt;}
.y41_c00258{bottom:655.973333pt;}
.y45_c00258{bottom:656.933333pt;}
.y3e_c00258{bottom:670.640000pt;}
.y3f_c00258{bottom:671.400000pt;}
.y40_c00258{bottom:671.600000pt;}
.y3d_c00258{bottom:673.306667pt;}
.y3c_c00258{bottom:693.106667pt;}
.y3b_c00258{bottom:695.026667pt;}
.y37_c00258{bottom:733.106667pt;}
.y3a_c00258{bottom:735.026667pt;}
.y38_c00258{bottom:735.226667pt;}
.y39_c00258{bottom:735.973333pt;}
.y35_c00258{bottom:750.440000pt;}
.y34_c00258{bottom:752.360000pt;}
.y36_c00258{bottom:752.560000pt;}
.y33_c00258{bottom:767.773333pt;}
.y32_c00258{bottom:769.693333pt;}
.y2d_c00258{bottom:785.106667pt;}
.y2f_c00258{bottom:786.440000pt;}
.y2c_c00258{bottom:787.026667pt;}
.y31_c00258{bottom:787.400000pt;}
.y2e_c00258{bottom:787.973333pt;}
.y30_c00258{bottom:788.360000pt;}
.y27_c00258{bottom:802.440000pt;}
.y29_c00258{bottom:803.773333pt;}
.y2a_c00258{bottom:804.733333pt;}
.y2b_c00258{bottom:805.306667pt;}
.y28_c00258{bottom:805.693333pt;}
.y25_c00258{bottom:819.426667pt;}
.y22_c00258{bottom:820.733333pt;}
.y21_c00258{bottom:821.106667pt;}
.y23_c00258{bottom:821.693333pt;}
.y26_c00258{bottom:821.893333pt;}
.y24_c00258{bottom:823.026667pt;}
.y1f_c00258{bottom:836.360000pt;}
.y20_c00258{bottom:839.226667pt;}
.y1e_c00258{bottom:840.360000pt;}
.y1c_c00258{bottom:855.773333pt;}
.y1b_c00258{bottom:856.733333pt;}
.y1a_c00258{bottom:857.693333pt;}
.y1d_c00258{bottom:857.893333pt;}
.y18_c00258{bottom:872.360000pt;}
.y19_c00258{bottom:872.733333pt;}
.y14_c00258{bottom:873.106667pt;}
.y16_c00258{bottom:874.640000pt;}
.y15_c00258{bottom:875.026667pt;}
.y17_c00258{bottom:875.973333pt;}
.y12_c00258{bottom:890.440000pt;}
.y13_c00258{bottom:891.973333pt;}
.y11_c00258{bottom:892.360000pt;}
.ye_c00258{bottom:907.026667pt;}
.y10_c00258{bottom:907.773333pt;}
.yd_c00258{bottom:909.693333pt;}
.yf_c00258{bottom:909.893333pt;}
.yc_c00258{bottom:925.106667pt;}
.ya_c00258{bottom:926.066667pt;}
.y9_c00258{bottom:927.026667pt;}
.yb_c00258{bottom:927.973333pt;}
.y8_c00258{bottom:941.693333pt;}
.y7_c00258{bottom:942.640000pt;}
.y6_c00258{bottom:943.400000pt;}
.y3_c00258{bottom:943.773333pt;}
.y5_c00258{bottom:944.560000pt;}
.y4_c00258{bottom:945.693333pt;}
.y2_c00258{bottom:977.693333pt;}
.y1_c00258{bottom:979.226667pt;}
.h8_c00258{height:3.739141pt;}
.h6_c00258{height:7.412682pt;}
.h1_c00258{height:20.466875pt;}
.h7_c00258{height:22.303646pt;}
.h5_c00258{height:27.879557pt;}
.h2_c00258{height:31.618698pt;}
.h4_c00258{height:35.357839pt;}
.h3_c00258{height:39.031380pt;}
.h9_c00258{height:42.770521pt;}
.h0_c00258{height:1186.666667pt;}
.w0_c00258{width:782.666667pt;}
.x0_c00258{left:0.000000pt;}
.x3_c00258{left:134.293333pt;}
.x54_c00258{left:135.626667pt;}
.xa4_c00258{left:136.960000pt;}
.x78_c00258{left:149.333333pt;}
.x96_c00258{left:150.666667pt;}
.xd6_c00258{left:155.040000pt;}
.x13_c00258{left:157.706667pt;}
.xd1_c00258{left:160.000000pt;}
.xbb_c00258{left:161.333333pt;}
.x97_c00258{left:162.666667pt;}
.xdf_c00258{left:164.960000pt;}
.xc7_c00258{left:167.040000pt;}
.x73_c00258{left:169.333333pt;}
.x33_c00258{left:170.666667pt;}
.xe2_c00258{left:173.333333pt;}
.x79_c00258{left:176.373333pt;}
.x4_c00258{left:177.333333pt;}
.xa5_c00258{left:178.666667pt;}
.x55_c00258{left:179.800000pt;}
.x1e_c00258{left:180.960000pt;}
.xf9_c00258{left:182.666667pt;}
.x88_c00258{left:185.333333pt;}
.xf5_c00258{left:188.000000pt;}
.xbc_c00258{left:190.293333pt;}
.x60_c00258{left:192.000000pt;}
.x14_c00258{left:193.333333pt;}
.xbe_c00258{left:194.293333pt;}
.xfa_c00258{left:196.000000pt;}
.x56_c00258{left:202.666667pt;}
.x5_c00258{left:204.000000pt;}
.x34_c00258{left:205.333333pt;}
.x4a_c00258{left:206.666667pt;}
.x2b_c00258{left:208.000000pt;}
.x1f_c00258{left:210.293333pt;}
.x74_c00258{left:212.000000pt;}
.xa6_c00258{left:212.960000pt;}
.x69_c00258{left:215.040000pt;}
.xd7_c00258{left:216.000000pt;}
.xb7_c00258{left:218.666667pt;}
.xdb_c00258{left:221.706667pt;}
.x3f_c00258{left:222.666667pt;}
.x15_c00258{left:224.000000pt;}
.x2c_c00258{left:227.040000pt;}
.xad_c00258{left:228.000000pt;}
.x98_c00258{left:229.333333pt;}
.x75_c00258{left:230.293333pt;}
.x80_c00258{left:233.333333pt;}
.x6_c00258{left:234.293333pt;}
.xf1_c00258{left:236.000000pt;}
.x89_c00258{left:236.960000pt;}
.x8e_c00258{left:238.666667pt;}
.x57_c00258{left:240.960000pt;}
.x93_c00258{left:242.293333pt;}
.xc3_c00258{left:244.000000pt;}
.x6a_c00258{left:246.666667pt;}
.x82_c00258{left:249.333333pt;}
.x20_c00258{left:251.626667pt;}
.x35_c00258{left:253.333333pt;}
.xa0_c00258{left:254.666667pt;}
.x81_c00258{left:257.333333pt;}
.x40_c00258{left:258.666667pt;}
.x7a_c00258{left:260.000000pt;}
.xa7_c00258{left:261.706667pt;}
.x76_c00258{left:264.373333pt;}
.xc8_c00258{left:265.333333pt;}
.x7_c00258{left:266.666667pt;}
.xfb_c00258{left:268.960000pt;}
.x36_c00258{left:271.626667pt;}
.x94_c00258{left:275.240000pt;}
.x84_c00258{left:277.333333pt;}
.xbf_c00258{left:278.293333pt;}
.x99_c00258{left:280.000000pt;}
.xc4_c00258{left:281.333333pt;}
.xe6_c00258{left:282.666667pt;}
.x41_c00258{left:284.373333pt;}
.x21_c00258{left:285.333333pt;}
.xa8_c00258{left:286.666667pt;}
.xd8_c00258{left:287.626667pt;}
.x37_c00258{left:291.040000pt;}
.x8a_c00258{left:295.040000pt;}
.x85_c00258{left:296.000000pt;}
.x16_c00258{left:298.293333pt;}
.x77_c00258{left:300.000000pt;}
.x4b_c00258{left:301.333333pt;}
.xa1_c00258{left:303.040000pt;}
.x6b_c00258{left:307.626667pt;}
.x9a_c00258{left:309.333333pt;}
.xe3_c00258{left:310.666667pt;}
.x42_c00258{left:312.000000pt;}
.x8_c00258{left:312.960000pt;}
.xe7_c00258{left:314.666667pt;}
.xc9_c00258{left:316.960000pt;}
.x4c_c00258{left:319.040000pt;}
.x61_c00258{left:320.373333pt;}
.xb3_c00258{left:322.466667pt;}
.x38_c00258{left:324.000000pt;}
.x17_c00258{left:325.333333pt;}
.x2d_c00258{left:326.293333pt;}
.x22_c00258{left:328.373333pt;}
.x9_c00258{left:331.040000pt;}
.x7b_c00258{left:332.000000pt;}
.xf6_c00258{left:334.666667pt;}
.x8f_c00258{left:336.000000pt;}
.x6c_c00258{left:337.333333pt;}
.xe8_c00258{left:339.626667pt;}
.x2e_c00258{left:344.373333pt;}
.xce_c00258{left:346.666667pt;}
.x4d_c00258{left:348.000000pt;}
.xdc_c00258{left:352.373333pt;}
.x39_c00258{left:353.333333pt;}
.x23_c00258{left:354.293333pt;}
.x62_c00258{left:356.373333pt;}
.xf2_c00258{left:357.333333pt;}
.xae_c00258{left:359.040000pt;}
.x9b_c00258{left:360.373333pt;}
.xb4_c00258{left:361.333333pt;}
.x1_c00258{left:362.293333pt;}
.x83_c00258{left:365.333333pt;}
.xa_c00258{left:366.666667pt;}
.x58_c00258{left:368.000000pt;}
.x2f_c00258{left:370.666667pt;}
.xe0_c00258{left:372.373333pt;}
.x8b_c00258{left:376.000000pt;}
.xd2_c00258{left:379.040000pt;}
.x4e_c00258{left:380.000000pt;}
.xc5_c00258{left:380.960000pt;}
.x18_c00258{left:382.293333pt;}
.x86_c00258{left:384.373333pt;}
.x63_c00258{left:388.960000pt;}
.xcf_c00258{left:390.666667pt;}
.x90_c00258{left:392.000000pt;}
.x6d_c00258{left:393.333333pt;}
.x43_c00258{left:394.666667pt;}
.x7c_c00258{left:395.626667pt;}
.xc6_c00258{left:396.960000pt;}
.x4f_c00258{left:400.373333pt;}
.x59_c00258{left:405.333333pt;}
.xaf_c00258{left:406.666667pt;}
.x24_c00258{left:408.000000pt;}
.x19_c00258{left:409.333333pt;}
.xe9_c00258{left:411.040000pt;}
.xbd_c00258{left:412.373333pt;}
.xb5_c00258{left:413.333333pt;}
.xc0_c00258{left:414.666667pt;}
.x30_c00258{left:418.666667pt;}
.x6e_c00258{left:420.000000pt;}
.xf3_c00258{left:421.706667pt;}
.xb_c00258{left:425.333333pt;}
.x50_c00258{left:428.373333pt;}
.xe4_c00258{left:430.293333pt;}
.x25_c00258{left:431.626667pt;}
.x9c_c00258{left:433.706667pt;}
.x87_c00258{left:434.666667pt;}
.x44_c00258{left:436.000000pt;}
.xc_c00258{left:441.333333pt;}
.x3a_c00258{left:444.000000pt;}
.x6f_c00258{left:444.960000pt;}
.xea_c00258{left:448.000000pt;}
.x64_c00258{left:450.293333pt;}
.xca_c00258{left:452.373333pt;}
.x8c_c00258{left:454.093333pt;}
.xd0_c00258{left:456.373333pt;}
.xd3_c00258{left:458.293333pt;}
.xa9_c00258{left:460.960000pt;}
.xeb_c00258{left:464.000000pt;}
.x26_c00258{left:467.040000pt;}
.xb0_c00258{left:468.000000pt;}
.x7d_c00258{left:468.960000pt;}
.x5a_c00258{left:470.666667pt;}
.x1a_c00258{left:472.373333pt;}
.x45_c00258{left:473.333333pt;}
.x8d_c00258{left:475.040000pt;}
.xd_c00258{left:476.000000pt;}
.xf7_c00258{left:477.333333pt;}
.xb1_c00258{left:484.000000pt;}
.xec_c00258{left:485.706667pt;}
.x3b_c00258{left:486.666667pt;}
.x70_c00258{left:488.000000pt;}
.x95_c00258{left:488.960000pt;}
.x46_c00258{left:492.373333pt;}
.x27_c00258{left:493.333333pt;}
.xb6_c00258{left:496.373333pt;}
.xef_c00258{left:498.666667pt;}
.xd4_c00258{left:500.000000pt;}
.xe_c00258{left:501.706667pt;}
.x5b_c00258{left:504.373333pt;}
.xcb_c00258{left:506.666667pt;}
.xb8_c00258{left:509.333333pt;}
.x47_c00258{left:515.626667pt;}
.x1b_c00258{left:517.333333pt;}
.xaa_c00258{left:520.960000pt;}
.x51_c00258{left:522.666667pt;}
.xf_c00258{left:524.000000pt;}
.x65_c00258{left:527.040000pt;}
.xf4_c00258{left:529.333333pt;}
.xee_c00258{left:531.626667pt;}
.x7e_c00258{left:533.333333pt;}
.x91_c00258{left:534.666667pt;}
.xb9_c00258{left:536.960000pt;}
.xe5_c00258{left:539.040000pt;}
.x71_c00258{left:540.000000pt;}
.x9d_c00258{left:541.333333pt;}
.x3c_c00258{left:545.333333pt;}
.x28_c00258{left:547.626667pt;}
.x48_c00258{left:550.293333pt;}
.xcc_c00258{left:552.000000pt;}
.x5c_c00258{left:553.706667pt;}
.xf8_c00258{left:554.666667pt;}
.x92_c00258{left:556.000000pt;}
.x10_c00258{left:559.040000pt;}
.x66_c00258{left:560.000000pt;}
.x1c_c00258{left:561.706667pt;}
.x3d_c00258{left:562.666667pt;}
.xab_c00258{left:564.000000pt;}
.x49_c00258{left:565.333333pt;}
.xed_c00258{left:566.666667pt;}
.xa2_c00258{left:567.626667pt;}
.xd9_c00258{left:569.333333pt;}
.x31_c00258{left:573.333333pt;}
.xba_c00258{left:574.666667pt;}
.x52_c00258{left:575.626667pt;}
.x5d_c00258{left:577.333333pt;}
.x72_c00258{left:582.666667pt;}
.x9e_c00258{left:584.000000pt;}
.x7f_c00258{left:586.293333pt;}
.xdd_c00258{left:587.626667pt;}
.x67_c00258{left:589.333333pt;}
.xda_c00258{left:591.040000pt;}
.x53_c00258{left:592.000000pt;}
.x11_c00258{left:593.706667pt;}
.xcd_c00258{left:595.040000pt;}
.x3e_c00258{left:597.906667pt;}
.xc1_c00258{left:601.333333pt;}
.xa3_c00258{left:602.293333pt;}
.x5e_c00258{left:605.706667pt;}
.x29_c00258{left:607.040000pt;}
.xb2_c00258{left:609.333333pt;}
.x12_c00258{left:611.040000pt;}
.xd5_c00258{left:613.333333pt;}
.x32_c00258{left:614.666667pt;}
.x1d_c00258{left:616.000000pt;}
.xe1_c00258{left:616.960000pt;}
.xc2_c00258{left:618.666667pt;}
.x9f_c00258{left:620.373333pt;}
.xac_c00258{left:625.333333pt;}
.x2_c00258{left:626.293333pt;}
.xf0_c00258{left:629.706667pt;}
.x2a_c00258{left:632.960000pt;}
.x68_c00258{left:635.626667pt;}
.xfc_c00258{left:640.000000pt;}
.x5f_c00258{left:641.333333pt;}
.xde_c00258{left:647.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_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_2b86b1899d326f70cc16eec2.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1e_c00259{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m85_c00259{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m23_c00259{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m16_c00259{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mcc_c00259{transform:matrix(0.365966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365966,0.000000,0.000000,0.250000,0,0);}
.m1d_c00259{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m53_c00259{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m14_c00259{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.me3_c00259{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m8d_c00259{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.maa_c00259{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m7d_c00259{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mb2_c00259{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.ma8_c00259{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m79_c00259{transform:matrix(0.384202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384202,0.000000,0.000000,0.250000,0,0);}
.ma6_c00259{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.ma7_c00259{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m78_c00259{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m25_c00259{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mca_c00259{transform:matrix(0.389954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389954,0.000000,0.000000,0.250000,0,0);}
.mbf_c00259{transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);}
.m9e_c00259{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m74_c00259{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mb4_c00259{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m81_c00259{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m66_c00259{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_c00259{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m40_c00259{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mde_c00259{transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);}
.m54_c00259{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m83_c00259{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.mc0_c00259{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m4a_c00259{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m98_c00259{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m7f_c00259{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.ma0_c00259{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m82_c00259{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.mc9_c00259{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m5e_c00259{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m67_c00259{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m68_c00259{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m35_c00259{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m84_c00259{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m6e_c00259{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m51_c00259{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m32_c00259{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m96_c00259{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m62_c00259{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.md8_c00259{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.mec_c00259{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.mb1_c00259{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.ma5_c00259{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m39_c00259{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m80_c00259{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m4b_c00259{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m75_c00259{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.m1f_c00259{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m34_c00259{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m10b_c00259{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m3_c00259{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m28_c00259{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m76_c00259{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.mf0_c00259{transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);}
.m3b_c00259{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m2f_c00259{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m10a_c00259{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m10c_c00259{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m8c_c00259{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.me4_c00259{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m46_c00259{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.ma_c00259{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m47_c00259{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.mfd_c00259{transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);}
.mce_c00259{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m55_c00259{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m37_c00259{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m71_c00259{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m59_c00259{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.mae_c00259{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m10_c00259{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m45_c00259{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.mf7_c00259{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m9b_c00259{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m21_c00259{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m2b_c00259{transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);}
.mcd_c00259{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m12_c00259{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mb_c00259{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.me7_c00259{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.mab_c00259{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m4e_c00259{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m5_c00259{transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);}
.mea_c00259{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.md9_c00259{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m6f_c00259{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m5b_c00259{transform:matrix(0.476345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476345,0.000000,0.000000,0.250000,0,0);}
.m3c_c00259{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mef_c00259{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m73_c00259{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m10d_c00259{transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);}
.mf_c00259{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m31_c00259{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m8b_c00259{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.md2_c00259{transform:matrix(0.482353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482353,0.000000,0.000000,0.250000,0,0);}
.m30_c00259{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.mb9_c00259{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m72_c00259{transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);}
.m56_c00259{transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);}
.m1a_c00259{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mb3_c00259{transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);}
.mdb_c00259{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m89_c00259{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.m99_c00259{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m6d_c00259{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.me0_c00259{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m5c_c00259{transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);}
.m43_c00259{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m1c_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);}
.ma4_c00259{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m77_c00259{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.ma9_c00259{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mf8_c00259{transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);}
.m69_c00259{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m109_c00259{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.mb5_c00259{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m48_c00259{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m61_c00259{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m58_c00259{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m22_c00259{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mf2_c00259{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.md1_c00259{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m95_c00259{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m65_c00259{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mc2_c00259{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.m15_c00259{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mf4_c00259{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);}
.m50_c00259{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m94_c00259{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mee_c00259{transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);}
.m90_c00259{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mc_c00259{transform:matrix(0.528757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528757,0.000000,0.000000,0.250000,0,0);}
.m26_c00259{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m60_c00259{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mf6_c00259{transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);}
.me_c00259{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mb7_c00259{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mbc_c00259{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m4f_c00259{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.md0_c00259{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mf1_c00259{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m2e_c00259{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m93_c00259{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m107_c00259{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.mc8_c00259{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m91_c00259{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m9f_c00259{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m6b_c00259{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.me2_c00259{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m13_c00259{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m7_c00259{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m7a_c00259{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m4d_c00259{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mc3_c00259{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.med_c00259{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m8e_c00259{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m2_c00259{transform:matrix(0.546846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546846,0.000000,0.000000,0.250000,0,0);}
.mc4_c00259{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.md5_c00259{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m7e_c00259{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m24_c00259{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mcf_c00259{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m18_c00259{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m1_c00259{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m36_c00259{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m6c_c00259{transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);}
.m3e_c00259{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m100_c00259{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m41_c00259{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m17_c00259{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m3f_c00259{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m2c_c00259{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.me9_c00259{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m4c_c00259{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m29_c00259{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m6_c00259{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m49_c00259{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.mc7_c00259{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);}
.m63_c00259{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mbe_c00259{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m64_c00259{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m9d_c00259{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.m2a_c00259{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.md7_c00259{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.ma3_c00259{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m10e_c00259{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.mfc_c00259{transform:matrix(0.567647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567647,0.000000,0.000000,0.250000,0,0);}
.m20_c00259{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m87_c00259{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m8_c00259{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.md3_c00259{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mad_c00259{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m9a_c00259{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m42_c00259{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m102_c00259{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.m92_c00259{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m3a_c00259{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m9c_c00259{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.md4_c00259{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m101_c00259{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.me6_c00259{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.mbb_c00259{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.md_c00259{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m1b_c00259{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.m103_c00259{transform:matrix(0.595588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595588,0.000000,0.000000,0.250000,0,0);}
.m27_c00259{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m9_c00259{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m88_c00259{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.mc1_c00259{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mc5_c00259{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m2d_c00259{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m33_c00259{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mfb_c00259{transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);}
.m105_c00259{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.mfa_c00259{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m108_c00259{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m6a_c00259{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);}
.mba_c00259{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m86_c00259{transform:matrix(0.628235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628235,0.000000,0.000000,0.250000,0,0);}
.mac_c00259{transform:matrix(0.630705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630705,0.000000,0.000000,0.250000,0,0);}
.mf3_c00259{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.me5_c00259{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.mdf_c00259{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.meb_c00259{transform:matrix(0.651471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651471,0.000000,0.000000,0.250000,0,0);}
.mdd_c00259{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.mf5_c00259{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.ma2_c00259{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m3d_c00259{transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);}
.m11_c00259{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mff_c00259{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m19_c00259{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m0_c00259{transform:matrix(0.672276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672276,0.000000,0.000000,0.250000,0,0);}
.mdc_c00259{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.m104_c00259{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.md6_c00259{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.me1_c00259{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m8f_c00259{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);}
.ma1_c00259{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m38_c00259{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.mb8_c00259{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mda_c00259{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);}
.mcb_c00259{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mbd_c00259{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.m52_c00259{transform:matrix(0.724359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.724359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.724359,0.000000,0.000000,0.250000,0,0);}
.me8_c00259{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m106_c00259{transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);}
.mc6_c00259{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m5f_c00259{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m5a_c00259{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m7b_c00259{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.mb6_c00259{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m57_c00259{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m44_c00259{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.maf_c00259{transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);}
.m97_c00259{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m5d_c00259{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m4_c00259{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.mb0_c00259{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m10f_c00259{transform:matrix(0.953744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.953744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.953744,0.000000,0.000000,0.250000,0,0);}
.mf9_c00259{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.mfe_c00259{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m7c_c00259{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m70_c00259{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00259{vertical-align:0.000000px;}
.v1_c00259{vertical-align:6.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;}
}
.ws1_c00259{word-spacing:-16.889280px;}
.ws4_c00259{word-spacing:-8.144007px;}
.ws3_c00259{word-spacing:-4.715764px;}
.ws0_c00259{word-spacing:-1.543455px;}
.ws5_c00259{word-spacing:0.000000px;}
.ws2_c00259{word-spacing:5.452194px;}
._0_c00259{width:1.633779px;}
.fc0_c00259{color:transparent;}
.fs6_c00259{font-size:3.420000px;}
.fs8_c00259{font-size:13.620000px;}
.fs0_c00259{font-size:18.720000px;}
.fs5_c00259{font-size:20.400000px;}
.fs1_c00259{font-size:25.500000px;}
.fs4_c00259{font-size:28.920000px;}
.fs2_c00259{font-size:32.340000px;}
.fs3_c00259{font-size:35.700000px;}
.fs7_c00259{font-size:39.120000px;}
.y0_c00259{bottom:0.000000px;}
.yf0_c00259{bottom:248.970000px;}
.yf3_c00259{bottom:249.825000px;}
.yf2_c00259{bottom:251.130000px;}
.yf5_c00259{bottom:251.325000px;}
.yf7_c00259{bottom:252.405000px;}
.yf4_c00259{bottom:252.630000px;}
.yf1_c00259{bottom:253.050000px;}
.yf6_c00259{bottom:253.470000px;}
.yf8_c00259{bottom:253.695000px;}
.yed_c00259{bottom:264.825000px;}
.yee_c00259{bottom:265.905000px;}
.yef_c00259{bottom:266.970000px;}
.yeb_c00259{bottom:267.195000px;}
.yec_c00259{bottom:268.050000px;}
.ye4_c00259{bottom:278.550000px;}
.ye9_c00259{bottom:280.470000px;}
.ye7_c00259{bottom:280.905000px;}
.ye6_c00259{bottom:281.970000px;}
.ye5_c00259{bottom:283.050000px;}
.yea_c00259{bottom:283.470000px;}
.ye8_c00259{bottom:284.550000px;}
.ye3_c00259{bottom:294.825000px;}
.ye0_c00259{bottom:295.905000px;}
.ydf_c00259{bottom:296.550000px;}
.ye2_c00259{bottom:296.970000px;}
.ye1_c00259{bottom:297.195000px;}
.yde_c00259{bottom:298.050000px;}
.yda_c00259{bottom:308.970000px;}
.yd6_c00259{bottom:310.050000px;}
.yd9_c00259{bottom:310.905000px;}
.yd7_c00259{bottom:311.550000px;}
.yd8_c00259{bottom:311.970000px;}
.ydc_c00259{bottom:312.195000px;}
.ydb_c00259{bottom:313.050000px;}
.ydd_c00259{bottom:313.470000px;}
.yd1_c00259{bottom:323.325000px;}
.yd2_c00259{bottom:324.405000px;}
.yd3_c00259{bottom:325.470000px;}
.yd5_c00259{bottom:325.905000px;}
.yd4_c00259{bottom:326.550000px;}
.yca_c00259{bottom:339.630000px;}
.ycf_c00259{bottom:339.825000px;}
.ycb_c00259{bottom:340.470000px;}
.ycd_c00259{bottom:340.905000px;}
.ycc_c00259{bottom:341.970000px;}
.yd0_c00259{bottom:342.195000px;}
.yce_c00259{bottom:343.050000px;}
.yc7_c00259{bottom:354.405000px;}
.yc6_c00259{bottom:354.825000px;}
.yc5_c00259{bottom:355.470000px;}
.yc4_c00259{bottom:355.695000px;}
.yc9_c00259{bottom:355.905000px;}
.yc8_c00259{bottom:358.050000px;}
.yc2_c00259{bottom:369.405000px;}
.ybc_c00259{bottom:369.630000px;}
.yc0_c00259{bottom:369.825000px;}
.ybd_c00259{bottom:370.470000px;}
.ybf_c00259{bottom:370.905000px;}
.ybe_c00259{bottom:371.130000px;}
.yc1_c00259{bottom:371.550000px;}
.yc3_c00259{bottom:373.050000px;}
.ybb_c00259{bottom:391.245000px;}
.yba_c00259{bottom:393.405000px;}
.yb6_c00259{bottom:410.745000px;}
.yb7_c00259{bottom:412.245000px;}
.yb5_c00259{bottom:412.905000px;}
.yb9_c00259{bottom:413.130000px;}
.yb8_c00259{bottom:414.405000px;}
.yb0_c00259{bottom:430.245000px;}
.yb4_c00259{bottom:431.745000px;}
.yb2_c00259{bottom:432.405000px;}
.yb1_c00259{bottom:432.630000px;}
.yb3_c00259{bottom:433.905000px;}
.yad_c00259{bottom:448.905000px;}
.yae_c00259{bottom:450.180000px;}
.yab_c00259{bottom:451.245000px;}
.ya8_c00259{bottom:451.905000px;}
.ya9_c00259{bottom:452.130000px;}
.yac_c00259{bottom:452.970000px;}
.yaa_c00259{bottom:453.405000px;}
.yaf_c00259{bottom:454.470000px;}
.ya3_c00259{bottom:469.245000px;}
.ya2_c00259{bottom:470.745000px;}
.ya6_c00259{bottom:470.970000px;}
.ya4_c00259{bottom:472.470000px;}
.ya5_c00259{bottom:472.905000px;}
.ya7_c00259{bottom:473.970000px;}
.ya1_c00259{bottom:489.405000px;}
.y9f_c00259{bottom:490.245000px;}
.y9d_c00259{bottom:492.405000px;}
.y9e_c00259{bottom:492.630000px;}
.ya0_c00259{bottom:493.470000px;}
.y98_c00259{bottom:509.745000px;}
.y9b_c00259{bottom:510.825000px;}
.y9a_c00259{bottom:511.905000px;}
.y9c_c00259{bottom:512.130000px;}
.y99_c00259{bottom:512.970000px;}
.y95_c00259{bottom:529.245000px;}
.y96_c00259{bottom:530.745000px;}
.y93_c00259{bottom:531.405000px;}
.y97_c00259{bottom:531.630000px;}
.y94_c00259{bottom:532.470000px;}
.y8e_c00259{bottom:548.745000px;}
.y8f_c00259{bottom:549.405000px;}
.y90_c00259{bottom:550.245000px;}
.y91_c00259{bottom:551.325000px;}
.y92_c00259{bottom:552.405000px;}
.y8c_c00259{bottom:569.745000px;}
.y8a_c00259{bottom:570.405000px;}
.y8d_c00259{bottom:571.470000px;}
.y8b_c00259{bottom:571.905000px;}
.y86_c00259{bottom:587.745000px;}
.y89_c00259{bottom:589.245000px;}
.y88_c00259{bottom:590.325000px;}
.y87_c00259{bottom:591.405000px;}
.y84_c00259{bottom:608.745000px;}
.y82_c00259{bottom:610.905000px;}
.y83_c00259{bottom:610.920000px;}
.y85_c00259{bottom:611.130000px;}
.y7f_c00259{bottom:629.550000px;}
.y80_c00259{bottom:630.405000px;}
.y81_c00259{bottom:631.905000px;}
.y7b_c00259{bottom:648.825000px;}
.y7e_c00259{bottom:649.245000px;}
.y7c_c00259{bottom:649.905000px;}
.y7d_c00259{bottom:651.405000px;}
.y7a_c00259{bottom:668.745000px;}
.y78_c00259{bottom:669.405000px;}
.y79_c00259{bottom:670.905000px;}
.y75_c00259{bottom:686.745000px;}
.y76_c00259{bottom:688.245000px;}
.y77_c00259{bottom:689.970000px;}
.y74_c00259{bottom:707.745000px;}
.y72_c00259{bottom:708.630000px;}
.y71_c00259{bottom:709.905000px;}
.y73_c00259{bottom:709.920000px;}
.y6e_c00259{bottom:725.325000px;}
.y6d_c00259{bottom:726.405000px;}
.y6c_c00259{bottom:727.245000px;}
.y70_c00259{bottom:727.680000px;}
.y6b_c00259{bottom:728.325000px;}
.y6f_c00259{bottom:729.405000px;}
.y6a_c00259{bottom:746.325000px;}
.y66_c00259{bottom:746.745000px;}
.y68_c00259{bottom:747.825000px;}
.y69_c00259{bottom:748.905000px;}
.y67_c00259{bottom:748.920000px;}
.y61_c00259{bottom:765.825000px;}
.y5f_c00259{bottom:766.245000px;}
.y63_c00259{bottom:767.745000px;}
.y60_c00259{bottom:768.405000px;}
.y65_c00259{bottom:768.630000px;}
.y62_c00259{bottom:769.470000px;}
.y64_c00259{bottom:769.905000px;}
.y5a_c00259{bottom:785.745000px;}
.y5e_c00259{bottom:786.825000px;}
.y5c_c00259{bottom:787.245000px;}
.y58_c00259{bottom:787.905000px;}
.y5d_c00259{bottom:788.130000px;}
.y59_c00259{bottom:788.970000px;}
.y5b_c00259{bottom:789.405000px;}
.y57_c00259{bottom:804.405000px;}
.y53_c00259{bottom:805.245000px;}
.y56_c00259{bottom:806.745000px;}
.y50_c00259{bottom:807.405000px;}
.y51_c00259{bottom:807.630000px;}
.y52_c00259{bottom:808.470000px;}
.y54_c00259{bottom:808.905000px;}
.y55_c00259{bottom:809.970000px;}
.y48_c00259{bottom:824.745000px;}
.y4f_c00259{bottom:825.825000px;}
.y4c_c00259{bottom:826.245000px;}
.y49_c00259{bottom:826.905000px;}
.y4a_c00259{bottom:827.130000px;}
.y4b_c00259{bottom:827.325000px;}
.y4d_c00259{bottom:828.405000px;}
.y4e_c00259{bottom:829.470000px;}
.y44_c00259{bottom:845.325000px;}
.y43_c00259{bottom:845.745000px;}
.y42_c00259{bottom:846.630000px;}
.y45_c00259{bottom:846.825000px;}
.y41_c00259{bottom:847.905000px;}
.y46_c00259{bottom:848.130000px;}
.y47_c00259{bottom:848.970000px;}
.y3d_c00259{bottom:864.825000px;}
.y3e_c00259{bottom:865.245000px;}
.y3c_c00259{bottom:867.405000px;}
.y3f_c00259{bottom:867.630000px;}
.y40_c00259{bottom:868.470000px;}
.y38_c00259{bottom:884.325000px;}
.y39_c00259{bottom:884.745000px;}
.y3b_c00259{bottom:885.825000px;}
.y3a_c00259{bottom:886.905000px;}
.y33_c00259{bottom:904.245000px;}
.y34_c00259{bottom:905.130000px;}
.y32_c00259{bottom:906.405000px;}
.y36_c00259{bottom:906.630000px;}
.y35_c00259{bottom:907.470000px;}
.y37_c00259{bottom:907.905000px;}
.y2e_c00259{bottom:923.550000px;}
.y2c_c00259{bottom:923.745000px;}
.y31_c00259{bottom:923.970000px;}
.y30_c00259{bottom:925.245000px;}
.y2d_c00259{bottom:925.905000px;}
.y2f_c00259{bottom:927.405000px;}
.y26_c00259{bottom:943.245000px;}
.y28_c00259{bottom:944.745000px;}
.y25_c00259{bottom:945.405000px;}
.y27_c00259{bottom:945.630000px;}
.y2b_c00259{bottom:945.825000px;}
.y29_c00259{bottom:946.905000px;}
.y2a_c00259{bottom:947.970000px;}
.y1e_c00259{bottom:962.325000px;}
.y1f_c00259{bottom:962.745000px;}
.y20_c00259{bottom:963.825000px;}
.y22_c00259{bottom:964.245000px;}
.y1d_c00259{bottom:964.905000px;}
.y24_c00259{bottom:965.325000px;}
.y21_c00259{bottom:965.970000px;}
.y23_c00259{bottom:966.405000px;}
.y18_c00259{bottom:982.245000px;}
.y1b_c00259{bottom:983.745000px;}
.y19_c00259{bottom:984.630000px;}
.y1a_c00259{bottom:985.905000px;}
.y1c_c00259{bottom:986.970000px;}
.y17_c00259{bottom:1001.745000px;}
.y15_c00259{bottom:1003.245000px;}
.y14_c00259{bottom:1003.905000px;}
.y16_c00259{bottom:1005.405000px;}
.ye_c00259{bottom:1021.470000px;}
.y13_c00259{bottom:1021.905000px;}
.y10_c00259{bottom:1022.745000px;}
.yf_c00259{bottom:1023.405000px;}
.y12_c00259{bottom:1023.825000px;}
.y11_c00259{bottom:1024.905000px;}
.y9_c00259{bottom:1041.825000px;}
.ya_c00259{bottom:1042.245000px;}
.yb_c00259{bottom:1043.130000px;}
.yd_c00259{bottom:1043.970000px;}
.yc_c00259{bottom:1044.405000px;}
.y4_c00259{bottom:1061.745000px;}
.y5_c00259{bottom:1062.630000px;}
.y6_c00259{bottom:1062.825000px;}
.y7_c00259{bottom:1063.905000px;}
.y3_c00259{bottom:1064.325000px;}
.y8_c00259{bottom:1064.970000px;}
.y2_c00259{bottom:1100.970000px;}
.y1_c00259{bottom:1103.130000px;}
.h7_c00259{height:4.206533px;}
.ha_c00259{height:16.752334px;}
.h1_c00259{height:23.025234px;}
.h6_c00259{height:25.091602px;}
.h2_c00259{height:31.364502px;}
.h5_c00259{height:35.571035px;}
.h3_c00259{height:39.777568px;}
.h9_c00259{height:41.571035px;}
.h4_c00259{height:43.910303px;}
.h8_c00259{height:48.116836px;}
.h0_c00259{height:1335.000000px;}
.w0_c00259{width:880.500000px;}
.x0_c00259{left:0.000000px;}
.x3_c00259{left:150.000000px;}
.x10_c00259{left:151.500000px;}
.x2_c00259{left:152.580000px;}
.x105_c00259{left:162.000000px;}
.xef_c00259{left:163.500000px;}
.xf2_c00259{left:165.000000px;}
.xb1_c00259{left:166.080000px;}
.x25_c00259{left:168.000000px;}
.x42_c00259{left:172.920000px;}
.x88_c00259{left:174.000000px;}
.x6b_c00259{left:175.080000px;}
.xbe_c00259{left:178.500000px;}
.x55_c00259{left:181.500000px;}
.x39_c00259{left:183.000000px;}
.x11_c00259{left:186.420000px;}
.x100_c00259{left:189.420000px;}
.xd8_c00259{left:190.920000px;}
.x4_c00259{left:192.855000px;}
.x1e_c00259{left:194.580000px;}
.xca_c00259{left:196.080000px;}
.xd0_c00259{left:197.580000px;}
.x4c_c00259{left:199.500000px;}
.xe0_c00259{left:201.000000px;}
.x43_c00259{left:202.500000px;}
.x89_c00259{left:204.000000px;}
.x2f_c00259{left:207.000000px;}
.x7e_c00259{left:208.920000px;}
.x1f_c00259{left:213.420000px;}
.x61_c00259{left:216.420000px;}
.xaa_c00259{left:217.500000px;}
.x3a_c00259{left:219.420000px;}
.x75_c00259{left:220.920000px;}
.x4d_c00259{left:223.080000px;}
.xc6_c00259{left:224.775000px;}
.x30_c00259{left:226.500000px;}
.x107_c00259{left:228.000000px;}
.x6c_c00259{left:231.420000px;}
.x56_c00259{left:235.500000px;}
.x7f_c00259{left:237.000000px;}
.x20_c00259{left:240.000000px;}
.x12_c00259{left:243.000000px;}
.x59_c00259{left:246.000000px;}
.x99_c00259{left:247.275000px;}
.x9f_c00259{left:249.000000px;}
.xd4_c00259{left:250.500000px;}
.xb2_c00259{left:252.000000px;}
.x76_c00259{left:253.500000px;}
.x62_c00259{left:254.580000px;}
.x26_c00259{left:256.080000px;}
.xe6_c00259{left:257.775000px;}
.x8a_c00259{left:259.080000px;}
.x13_c00259{left:261.000000px;}
.x5_c00259{left:262.500000px;}
.xb8_c00259{left:264.420000px;}
.x80_c00259{left:265.500000px;}
.x5a_c00259{left:267.000000px;}
.xf0_c00259{left:270.000000px;}
.xab_c00259{left:271.080000px;}
.x103_c00259{left:272.580000px;}
.x77_c00259{left:274.500000px;}
.xcb_c00259{left:276.000000px;}
.x4e_c00259{left:277.500000px;}
.x106_c00259{left:279.000000px;}
.x3b_c00259{left:280.500000px;}
.xe7_c00259{left:286.500000px;}
.x6d_c00259{left:287.775000px;}
.x78_c00259{left:289.080000px;}
.x21_c00259{left:293.580000px;}
.x31_c00259{left:295.500000px;}
.x63_c00259{left:297.000000px;}
.x6_c00259{left:298.080000px;}
.xf1_c00259{left:300.420000px;}
.xa0_c00259{left:301.500000px;}
.x27_c00259{left:303.000000px;}
.x81_c00259{left:306.000000px;}
.xad_c00259{left:307.080000px;}
.x3c_c00259{left:309.000000px;}
.xa4_c00259{left:313.500000px;}
.x5b_c00259{left:315.420000px;}
.x8b_c00259{left:316.500000px;}
.xe8_c00259{left:319.920000px;}
.x14_c00259{left:322.080000px;}
.x22_c00259{left:323.145000px;}
.x4f_c00259{left:324.420000px;}
.xf9_c00259{left:327.000000px;}
.x28_c00259{left:328.500000px;}
.xbf_c00259{left:331.500000px;}
.xb9_c00259{left:334.920000px;}
.x3d_c00259{left:336.420000px;}
.xae_c00259{left:337.500000px;}
.x5c_c00259{left:339.000000px;}
.xf3_c00259{left:340.500000px;}
.x7_c00259{left:342.000000px;}
.x44_c00259{left:345.000000px;}
.x101_c00259{left:346.080000px;}
.xb3_c00259{left:348.000000px;}
.xeb_c00259{left:349.500000px;}
.xa1_c00259{left:350.580000px;}
.x97_c00259{left:352.275000px;}
.xd5_c00259{left:355.500000px;}
.xaf_c00259{left:356.580000px;}
.x50_c00259{left:358.080000px;}
.xd9_c00259{left:359.580000px;}
.xba_c00259{left:361.500000px;}
.xc0_c00259{left:363.000000px;}
.x45_c00259{left:365.580000px;}
.xa5_c00259{left:367.500000px;}
.xe1_c00259{left:369.000000px;}
.xfa_c00259{left:370.500000px;}
.x102_c00259{left:373.080000px;}
.xdd_c00259{left:376.080000px;}
.x9a_c00259{left:377.355000px;}
.xd6_c00259{left:378.420000px;}
.x6e_c00259{left:380.580000px;}
.x8_c00259{left:385.080000px;}
.xcc_c00259{left:387.000000px;}
.x15_c00259{left:389.580000px;}
.x3e_c00259{left:392.580000px;}
.x8c_c00259{left:395.580000px;}
.x91_c00259{left:399.000000px;}
.xd1_c00259{left:400.080000px;}
.x23_c00259{left:402.420000px;}
.x5d_c00259{left:403.500000px;}
.x64_c00259{left:405.000000px;}
.xda_c00259{left:406.500000px;}
.x1_c00259{left:410.580000px;}
.x6f_c00259{left:412.500000px;}
.x82_c00259{left:414.000000px;}
.x46_c00259{left:415.080000px;}
.x9b_c00259{left:416.580000px;}
.xbb_c00259{left:418.080000px;}
.x29_c00259{left:419.580000px;}
.x9_c00259{left:424.080000px;}
.xc7_c00259{left:426.000000px;}
.xfb_c00259{left:427.500000px;}
.x51_c00259{left:430.500000px;}
.xe2_c00259{left:433.080000px;}
.x16_c00259{left:435.420000px;}
.xdb_c00259{left:436.500000px;}
.x3f_c00259{left:438.000000px;}
.x5e_c00259{left:439.080000px;}
.xd7_c00259{left:442.920000px;}
.xa_c00259{left:445.500000px;}
.x70_c00259{left:447.420000px;}
.x47_c00259{left:448.920000px;}
.xde_c00259{left:450.420000px;}
.xb4_c00259{left:451.500000px;}
.x32_c00259{left:454.080000px;}
.xcd_c00259{left:456.000000px;}
.xc8_c00259{left:457.080000px;}
.x17_c00259{left:459.420000px;}
.x57_c00259{left:460.500000px;}
.x8d_c00259{left:463.500000px;}
.x9c_c00259{left:465.000000px;}
.xf4_c00259{left:468.000000px;}
.xfc_c00259{left:469.080000px;}
.x65_c00259{left:472.500000px;}
.xb_c00259{left:474.420000px;}
.xe9_c00259{left:477.000000px;}
.x108_c00259{left:480.000000px;}
.xc1_c00259{left:481.500000px;}
.xea_c00259{left:482.580000px;}
.x18_c00259{left:484.500000px;}
.x9d_c00259{left:485.580000px;}
.x2a_c00259{left:487.080000px;}
.x58_c00259{left:490.500000px;}
.x79_c00259{left:493.500000px;}
.x66_c00259{left:496.920000px;}
.x9e_c00259{left:500.580000px;}
.x92_c00259{left:502.500000px;}
.xfd_c00259{left:504.000000px;}
.xb5_c00259{left:505.080000px;}
.xd2_c00259{left:507.000000px;}
.x48_c00259{left:508.080000px;}
.x71_c00259{left:510.000000px;}
.xbc_c00259{left:513.000000px;}
.x7a_c00259{left:516.000000px;}
.x24_c00259{left:517.275000px;}
.xdf_c00259{left:520.500000px;}
.x33_c00259{left:521.580000px;}
.xec_c00259{left:523.920000px;}
.x98_c00259{left:526.080000px;}
.xfe_c00259{left:529.920000px;}
.x104_c00259{left:531.000000px;}
.x67_c00259{left:532.500000px;}
.x2b_c00259{left:534.000000px;}
.x40_c00259{left:540.000000px;}
.x19_c00259{left:541.080000px;}
.x93_c00259{left:543.000000px;}
.x49_c00259{left:544.500000px;}
.x83_c00259{left:550.500000px;}
.x68_c00259{left:551.580000px;}
.xb0_c00259{left:552.645000px;}
.xc_c00259{left:554.580000px;}
.xa6_c00259{left:559.275000px;}
.x2c_c00259{left:561.000000px;}
.x84_c00259{left:562.920000px;}
.xce_c00259{left:564.000000px;}
.xf5_c00259{left:565.080000px;}
.x34_c00259{left:567.420000px;}
.x1a_c00259{left:569.580000px;}
.x109_c00259{left:573.000000px;}
.xbd_c00259{left:576.000000px;}
.x5f_c00259{left:577.080000px;}
.x52_c00259{left:579.000000px;}
.xc9_c00259{left:580.500000px;}
.xac_c00259{left:585.000000px;}
.x72_c00259{left:586.500000px;}
.xc2_c00259{left:589.080000px;}
.x8e_c00259{left:591.000000px;}
.xe3_c00259{left:592.500000px;}
.x35_c00259{left:594.420000px;}
.x94_c00259{left:595.500000px;}
.xd_c00259{left:598.500000px;}
.xa7_c00259{left:600.000000px;}
.xf6_c00259{left:601.920000px;}
.xa2_c00259{left:605.580000px;}
.x7b_c00259{left:607.500000px;}
.xc3_c00259{left:609.420000px;}
.x4a_c00259{left:612.000000px;}
.x73_c00259{left:615.000000px;}
.xa8_c00259{left:616.080000px;}
.x85_c00259{left:618.000000px;}
.xb6_c00259{left:619.080000px;}
.x1b_c00259{left:621.000000px;}
.xed_c00259{left:625.500000px;}
.xf7_c00259{left:628.080000px;}
.x74_c00259{left:631.500000px;}
.xc4_c00259{left:634.500000px;}
.x7c_c00259{left:636.000000px;}
.xcf_c00259{left:637.500000px;}
.x1c_c00259{left:638.580000px;}
.xb7_c00259{left:640.920000px;}
.xe4_c00259{left:643.500000px;}
.x60_c00259{left:646.920000px;}
.x53_c00259{left:648.420000px;}
.x69_c00259{left:649.500000px;}
.x36_c00259{left:650.580000px;}
.x95_c00259{left:652.500000px;}
.xe_c00259{left:658.500000px;}
.x1d_c00259{left:660.000000px;}
.x10a_c00259{left:661.080000px;}
.xff_c00259{left:662.580000px;}
.x8f_c00259{left:664.500000px;}
.x86_c00259{left:666.420000px;}
.x37_c00259{left:669.000000px;}
.xa3_c00259{left:670.500000px;}
.x96_c00259{left:672.000000px;}
.x2d_c00259{left:673.920000px;}
.x7d_c00259{left:675.420000px;}
.x4b_c00259{left:676.500000px;}
.x6a_c00259{left:678.000000px;}
.xee_c00259{left:679.080000px;}
.xd3_c00259{left:682.500000px;}
.x90_c00259{left:684.000000px;}
.xc5_c00259{left:686.580000px;}
.x41_c00259{left:688.080000px;}
.xf8_c00259{left:690.000000px;}
.x87_c00259{left:691.500000px;}
.x38_c00259{left:694.080000px;}
.xdc_c00259{left:699.000000px;}
.x2e_c00259{left:700.920000px;}
.xa9_c00259{left:708.420000px;}
.xf_c00259{left:709.920000px;}
.x10b_c00259{left:711.000000px;}
.xe5_c00259{left:712.500000px;}
.x54_c00259{left:716.580000px;}
@media print{
.v0_c00259{vertical-align:0.000000pt;}
.v1_c00259{vertical-align:5.333333pt;}
.ls0_c00259{letter-spacing:0.000000pt;}
.ws1_c00259{word-spacing:-15.012693pt;}
.ws4_c00259{word-spacing:-7.239117pt;}
.ws3_c00259{word-spacing:-4.191791pt;}
.ws0_c00259{word-spacing:-1.371960pt;}
.ws5_c00259{word-spacing:0.000000pt;}
.ws2_c00259{word-spacing:4.846394pt;}
._0_c00259{width:1.452248pt;}
.fs6_c00259{font-size:3.040000pt;}
.fs8_c00259{font-size:12.106667pt;}
.fs0_c00259{font-size:16.640000pt;}
.fs5_c00259{font-size:18.133333pt;}
.fs1_c00259{font-size:22.666667pt;}
.fs4_c00259{font-size:25.706667pt;}
.fs2_c00259{font-size:28.746667pt;}
.fs3_c00259{font-size:31.733333pt;}
.fs7_c00259{font-size:34.773333pt;}
.y0_c00259{bottom:0.000000pt;}
.yf0_c00259{bottom:221.306667pt;}
.yf3_c00259{bottom:222.066667pt;}
.yf2_c00259{bottom:223.226667pt;}
.yf5_c00259{bottom:223.400000pt;}
.yf7_c00259{bottom:224.360000pt;}
.yf4_c00259{bottom:224.560000pt;}
.yf1_c00259{bottom:224.933333pt;}
.yf6_c00259{bottom:225.306667pt;}
.yf8_c00259{bottom:225.506667pt;}
.yed_c00259{bottom:235.400000pt;}
.yee_c00259{bottom:236.360000pt;}
.yef_c00259{bottom:237.306667pt;}
.yeb_c00259{bottom:237.506667pt;}
.yec_c00259{bottom:238.266667pt;}
.ye4_c00259{bottom:247.600000pt;}
.ye9_c00259{bottom:249.306667pt;}
.ye7_c00259{bottom:249.693333pt;}
.ye6_c00259{bottom:250.640000pt;}
.ye5_c00259{bottom:251.600000pt;}
.yea_c00259{bottom:251.973333pt;}
.ye8_c00259{bottom:252.933333pt;}
.ye3_c00259{bottom:262.066667pt;}
.ye0_c00259{bottom:263.026667pt;}
.ydf_c00259{bottom:263.600000pt;}
.ye2_c00259{bottom:263.973333pt;}
.ye1_c00259{bottom:264.173333pt;}
.yde_c00259{bottom:264.933333pt;}
.yda_c00259{bottom:274.640000pt;}
.yd6_c00259{bottom:275.600000pt;}
.yd9_c00259{bottom:276.360000pt;}
.yd7_c00259{bottom:276.933333pt;}
.yd8_c00259{bottom:277.306667pt;}
.ydc_c00259{bottom:277.506667pt;}
.ydb_c00259{bottom:278.266667pt;}
.ydd_c00259{bottom:278.640000pt;}
.yd1_c00259{bottom:287.400000pt;}
.yd2_c00259{bottom:288.360000pt;}
.yd3_c00259{bottom:289.306667pt;}
.yd5_c00259{bottom:289.693333pt;}
.yd4_c00259{bottom:290.266667pt;}
.yca_c00259{bottom:301.893333pt;}
.ycf_c00259{bottom:302.066667pt;}
.ycb_c00259{bottom:302.640000pt;}
.ycd_c00259{bottom:303.026667pt;}
.ycc_c00259{bottom:303.973333pt;}
.yd0_c00259{bottom:304.173333pt;}
.yce_c00259{bottom:304.933333pt;}
.yc7_c00259{bottom:315.026667pt;}
.yc6_c00259{bottom:315.400000pt;}
.yc5_c00259{bottom:315.973333pt;}
.yc4_c00259{bottom:316.173333pt;}
.yc9_c00259{bottom:316.360000pt;}
.yc8_c00259{bottom:318.266667pt;}
.yc2_c00259{bottom:328.360000pt;}
.ybc_c00259{bottom:328.560000pt;}
.yc0_c00259{bottom:328.733333pt;}
.ybd_c00259{bottom:329.306667pt;}
.ybf_c00259{bottom:329.693333pt;}
.ybe_c00259{bottom:329.893333pt;}
.yc1_c00259{bottom:330.266667pt;}
.yc3_c00259{bottom:331.600000pt;}
.ybb_c00259{bottom:347.773333pt;}
.yba_c00259{bottom:349.693333pt;}
.yb6_c00259{bottom:365.106667pt;}
.yb7_c00259{bottom:366.440000pt;}
.yb5_c00259{bottom:367.026667pt;}
.yb9_c00259{bottom:367.226667pt;}
.yb8_c00259{bottom:368.360000pt;}
.yb0_c00259{bottom:382.440000pt;}
.yb4_c00259{bottom:383.773333pt;}
.yb2_c00259{bottom:384.360000pt;}
.yb1_c00259{bottom:384.560000pt;}
.yb3_c00259{bottom:385.693333pt;}
.yad_c00259{bottom:399.026667pt;}
.yae_c00259{bottom:400.160000pt;}
.yab_c00259{bottom:401.106667pt;}
.ya8_c00259{bottom:401.693333pt;}
.ya9_c00259{bottom:401.893333pt;}
.yac_c00259{bottom:402.640000pt;}
.yaa_c00259{bottom:403.026667pt;}
.yaf_c00259{bottom:403.973333pt;}
.ya3_c00259{bottom:417.106667pt;}
.ya2_c00259{bottom:418.440000pt;}
.ya6_c00259{bottom:418.640000pt;}
.ya4_c00259{bottom:419.973333pt;}
.ya5_c00259{bottom:420.360000pt;}
.ya7_c00259{bottom:421.306667pt;}
.ya1_c00259{bottom:435.026667pt;}
.y9f_c00259{bottom:435.773333pt;}
.y9d_c00259{bottom:437.693333pt;}
.y9e_c00259{bottom:437.893333pt;}
.ya0_c00259{bottom:438.640000pt;}
.y98_c00259{bottom:453.106667pt;}
.y9b_c00259{bottom:454.066667pt;}
.y9a_c00259{bottom:455.026667pt;}
.y9c_c00259{bottom:455.226667pt;}
.y99_c00259{bottom:455.973333pt;}
.y95_c00259{bottom:470.440000pt;}
.y96_c00259{bottom:471.773333pt;}
.y93_c00259{bottom:472.360000pt;}
.y97_c00259{bottom:472.560000pt;}
.y94_c00259{bottom:473.306667pt;}
.y8e_c00259{bottom:487.773333pt;}
.y8f_c00259{bottom:488.360000pt;}
.y90_c00259{bottom:489.106667pt;}
.y91_c00259{bottom:490.066667pt;}
.y92_c00259{bottom:491.026667pt;}
.y8c_c00259{bottom:506.440000pt;}
.y8a_c00259{bottom:507.026667pt;}
.y8d_c00259{bottom:507.973333pt;}
.y8b_c00259{bottom:508.360000pt;}
.y86_c00259{bottom:522.440000pt;}
.y89_c00259{bottom:523.773333pt;}
.y88_c00259{bottom:524.733333pt;}
.y87_c00259{bottom:525.693333pt;}
.y84_c00259{bottom:541.106667pt;}
.y82_c00259{bottom:543.026667pt;}
.y83_c00259{bottom:543.040000pt;}
.y85_c00259{bottom:543.226667pt;}
.y7f_c00259{bottom:559.600000pt;}
.y80_c00259{bottom:560.360000pt;}
.y81_c00259{bottom:561.693333pt;}
.y7b_c00259{bottom:576.733333pt;}
.y7e_c00259{bottom:577.106667pt;}
.y7c_c00259{bottom:577.693333pt;}
.y7d_c00259{bottom:579.026667pt;}
.y7a_c00259{bottom:594.440000pt;}
.y78_c00259{bottom:595.026667pt;}
.y79_c00259{bottom:596.360000pt;}
.y75_c00259{bottom:610.440000pt;}
.y76_c00259{bottom:611.773333pt;}
.y77_c00259{bottom:613.306667pt;}
.y74_c00259{bottom:629.106667pt;}
.y72_c00259{bottom:629.893333pt;}
.y71_c00259{bottom:631.026667pt;}
.y73_c00259{bottom:631.040000pt;}
.y6e_c00259{bottom:644.733333pt;}
.y6d_c00259{bottom:645.693333pt;}
.y6c_c00259{bottom:646.440000pt;}
.y70_c00259{bottom:646.826667pt;}
.y6b_c00259{bottom:647.400000pt;}
.y6f_c00259{bottom:648.360000pt;}
.y6a_c00259{bottom:663.400000pt;}
.y66_c00259{bottom:663.773333pt;}
.y68_c00259{bottom:664.733333pt;}
.y69_c00259{bottom:665.693333pt;}
.y67_c00259{bottom:665.706667pt;}
.y61_c00259{bottom:680.733333pt;}
.y5f_c00259{bottom:681.106667pt;}
.y63_c00259{bottom:682.440000pt;}
.y60_c00259{bottom:683.026667pt;}
.y65_c00259{bottom:683.226667pt;}
.y62_c00259{bottom:683.973333pt;}
.y64_c00259{bottom:684.360000pt;}
.y5a_c00259{bottom:698.440000pt;}
.y5e_c00259{bottom:699.400000pt;}
.y5c_c00259{bottom:699.773333pt;}
.y58_c00259{bottom:700.360000pt;}
.y5d_c00259{bottom:700.560000pt;}
.y59_c00259{bottom:701.306667pt;}
.y5b_c00259{bottom:701.693333pt;}
.y57_c00259{bottom:715.026667pt;}
.y53_c00259{bottom:715.773333pt;}
.y56_c00259{bottom:717.106667pt;}
.y50_c00259{bottom:717.693333pt;}
.y51_c00259{bottom:717.893333pt;}
.y52_c00259{bottom:718.640000pt;}
.y54_c00259{bottom:719.026667pt;}
.y55_c00259{bottom:719.973333pt;}
.y48_c00259{bottom:733.106667pt;}
.y4f_c00259{bottom:734.066667pt;}
.y4c_c00259{bottom:734.440000pt;}
.y49_c00259{bottom:735.026667pt;}
.y4a_c00259{bottom:735.226667pt;}
.y4b_c00259{bottom:735.400000pt;}
.y4d_c00259{bottom:736.360000pt;}
.y4e_c00259{bottom:737.306667pt;}
.y44_c00259{bottom:751.400000pt;}
.y43_c00259{bottom:751.773333pt;}
.y42_c00259{bottom:752.560000pt;}
.y45_c00259{bottom:752.733333pt;}
.y41_c00259{bottom:753.693333pt;}
.y46_c00259{bottom:753.893333pt;}
.y47_c00259{bottom:754.640000pt;}
.y3d_c00259{bottom:768.733333pt;}
.y3e_c00259{bottom:769.106667pt;}
.y3c_c00259{bottom:771.026667pt;}
.y3f_c00259{bottom:771.226667pt;}
.y40_c00259{bottom:771.973333pt;}
.y38_c00259{bottom:786.066667pt;}
.y39_c00259{bottom:786.440000pt;}
.y3b_c00259{bottom:787.400000pt;}
.y3a_c00259{bottom:788.360000pt;}
.y33_c00259{bottom:803.773333pt;}
.y34_c00259{bottom:804.560000pt;}
.y32_c00259{bottom:805.693333pt;}
.y36_c00259{bottom:805.893333pt;}
.y35_c00259{bottom:806.640000pt;}
.y37_c00259{bottom:807.026667pt;}
.y2e_c00259{bottom:820.933333pt;}
.y2c_c00259{bottom:821.106667pt;}
.y31_c00259{bottom:821.306667pt;}
.y30_c00259{bottom:822.440000pt;}
.y2d_c00259{bottom:823.026667pt;}
.y2f_c00259{bottom:824.360000pt;}
.y26_c00259{bottom:838.440000pt;}
.y28_c00259{bottom:839.773333pt;}
.y25_c00259{bottom:840.360000pt;}
.y27_c00259{bottom:840.560000pt;}
.y2b_c00259{bottom:840.733333pt;}
.y29_c00259{bottom:841.693333pt;}
.y2a_c00259{bottom:842.640000pt;}
.y1e_c00259{bottom:855.400000pt;}
.y1f_c00259{bottom:855.773333pt;}
.y20_c00259{bottom:856.733333pt;}
.y22_c00259{bottom:857.106667pt;}
.y1d_c00259{bottom:857.693333pt;}
.y24_c00259{bottom:858.066667pt;}
.y21_c00259{bottom:858.640000pt;}
.y23_c00259{bottom:859.026667pt;}
.y18_c00259{bottom:873.106667pt;}
.y1b_c00259{bottom:874.440000pt;}
.y19_c00259{bottom:875.226667pt;}
.y1a_c00259{bottom:876.360000pt;}
.y1c_c00259{bottom:877.306667pt;}
.y17_c00259{bottom:890.440000pt;}
.y15_c00259{bottom:891.773333pt;}
.y14_c00259{bottom:892.360000pt;}
.y16_c00259{bottom:893.693333pt;}
.ye_c00259{bottom:907.973333pt;}
.y13_c00259{bottom:908.360000pt;}
.y10_c00259{bottom:909.106667pt;}
.yf_c00259{bottom:909.693333pt;}
.y12_c00259{bottom:910.066667pt;}
.y11_c00259{bottom:911.026667pt;}
.y9_c00259{bottom:926.066667pt;}
.ya_c00259{bottom:926.440000pt;}
.yb_c00259{bottom:927.226667pt;}
.yd_c00259{bottom:927.973333pt;}
.yc_c00259{bottom:928.360000pt;}
.y4_c00259{bottom:943.773333pt;}
.y5_c00259{bottom:944.560000pt;}
.y6_c00259{bottom:944.733333pt;}
.y7_c00259{bottom:945.693333pt;}
.y3_c00259{bottom:946.066667pt;}
.y8_c00259{bottom:946.640000pt;}
.y2_c00259{bottom:978.640000pt;}
.y1_c00259{bottom:980.560000pt;}
.h7_c00259{height:3.739141pt;}
.ha_c00259{height:14.890964pt;}
.h1_c00259{height:20.466875pt;}
.h6_c00259{height:22.303646pt;}
.h2_c00259{height:27.879557pt;}
.h5_c00259{height:31.618698pt;}
.h3_c00259{height:35.357839pt;}
.h9_c00259{height:36.952031pt;}
.h4_c00259{height:39.031380pt;}
.h8_c00259{height:42.770521pt;}
.h0_c00259{height:1186.666667pt;}
.w0_c00259{width:782.666667pt;}
.x0_c00259{left:0.000000pt;}
.x3_c00259{left:133.333333pt;}
.x10_c00259{left:134.666667pt;}
.x2_c00259{left:135.626667pt;}
.x105_c00259{left:144.000000pt;}
.xef_c00259{left:145.333333pt;}
.xf2_c00259{left:146.666667pt;}
.xb1_c00259{left:147.626667pt;}
.x25_c00259{left:149.333333pt;}
.x42_c00259{left:153.706667pt;}
.x88_c00259{left:154.666667pt;}
.x6b_c00259{left:155.626667pt;}
.xbe_c00259{left:158.666667pt;}
.x55_c00259{left:161.333333pt;}
.x39_c00259{left:162.666667pt;}
.x11_c00259{left:165.706667pt;}
.x100_c00259{left:168.373333pt;}
.xd8_c00259{left:169.706667pt;}
.x4_c00259{left:171.426667pt;}
.x1e_c00259{left:172.960000pt;}
.xca_c00259{left:174.293333pt;}
.xd0_c00259{left:175.626667pt;}
.x4c_c00259{left:177.333333pt;}
.xe0_c00259{left:178.666667pt;}
.x43_c00259{left:180.000000pt;}
.x89_c00259{left:181.333333pt;}
.x2f_c00259{left:184.000000pt;}
.x7e_c00259{left:185.706667pt;}
.x1f_c00259{left:189.706667pt;}
.x61_c00259{left:192.373333pt;}
.xaa_c00259{left:193.333333pt;}
.x3a_c00259{left:195.040000pt;}
.x75_c00259{left:196.373333pt;}
.x4d_c00259{left:198.293333pt;}
.xc6_c00259{left:199.800000pt;}
.x30_c00259{left:201.333333pt;}
.x107_c00259{left:202.666667pt;}
.x6c_c00259{left:205.706667pt;}
.x56_c00259{left:209.333333pt;}
.x7f_c00259{left:210.666667pt;}
.x20_c00259{left:213.333333pt;}
.x12_c00259{left:216.000000pt;}
.x59_c00259{left:218.666667pt;}
.x99_c00259{left:219.800000pt;}
.x9f_c00259{left:221.333333pt;}
.xd4_c00259{left:222.666667pt;}
.xb2_c00259{left:224.000000pt;}
.x76_c00259{left:225.333333pt;}
.x62_c00259{left:226.293333pt;}
.x26_c00259{left:227.626667pt;}
.xe6_c00259{left:229.133333pt;}
.x8a_c00259{left:230.293333pt;}
.x13_c00259{left:232.000000pt;}
.x5_c00259{left:233.333333pt;}
.xb8_c00259{left:235.040000pt;}
.x80_c00259{left:236.000000pt;}
.x5a_c00259{left:237.333333pt;}
.xf0_c00259{left:240.000000pt;}
.xab_c00259{left:240.960000pt;}
.x103_c00259{left:242.293333pt;}
.x77_c00259{left:244.000000pt;}
.xcb_c00259{left:245.333333pt;}
.x4e_c00259{left:246.666667pt;}
.x106_c00259{left:248.000000pt;}
.x3b_c00259{left:249.333333pt;}
.xe7_c00259{left:254.666667pt;}
.x6d_c00259{left:255.800000pt;}
.x78_c00259{left:256.960000pt;}
.x21_c00259{left:260.960000pt;}
.x31_c00259{left:262.666667pt;}
.x63_c00259{left:264.000000pt;}
.x6_c00259{left:264.960000pt;}
.xf1_c00259{left:267.040000pt;}
.xa0_c00259{left:268.000000pt;}
.x27_c00259{left:269.333333pt;}
.x81_c00259{left:272.000000pt;}
.xad_c00259{left:272.960000pt;}
.x3c_c00259{left:274.666667pt;}
.xa4_c00259{left:278.666667pt;}
.x5b_c00259{left:280.373333pt;}
.x8b_c00259{left:281.333333pt;}
.xe8_c00259{left:284.373333pt;}
.x14_c00259{left:286.293333pt;}
.x22_c00259{left:287.240000pt;}
.x4f_c00259{left:288.373333pt;}
.xf9_c00259{left:290.666667pt;}
.x28_c00259{left:292.000000pt;}
.xbf_c00259{left:294.666667pt;}
.xb9_c00259{left:297.706667pt;}
.x3d_c00259{left:299.040000pt;}
.xae_c00259{left:300.000000pt;}
.x5c_c00259{left:301.333333pt;}
.xf3_c00259{left:302.666667pt;}
.x7_c00259{left:304.000000pt;}
.x44_c00259{left:306.666667pt;}
.x101_c00259{left:307.626667pt;}
.xb3_c00259{left:309.333333pt;}
.xeb_c00259{left:310.666667pt;}
.xa1_c00259{left:311.626667pt;}
.x97_c00259{left:313.133333pt;}
.xd5_c00259{left:316.000000pt;}
.xaf_c00259{left:316.960000pt;}
.x50_c00259{left:318.293333pt;}
.xd9_c00259{left:319.626667pt;}
.xba_c00259{left:321.333333pt;}
.xc0_c00259{left:322.666667pt;}
.x45_c00259{left:324.960000pt;}
.xa5_c00259{left:326.666667pt;}
.xe1_c00259{left:328.000000pt;}
.xfa_c00259{left:329.333333pt;}
.x102_c00259{left:331.626667pt;}
.xdd_c00259{left:334.293333pt;}
.x9a_c00259{left:335.426667pt;}
.xd6_c00259{left:336.373333pt;}
.x6e_c00259{left:338.293333pt;}
.x8_c00259{left:342.293333pt;}
.xcc_c00259{left:344.000000pt;}
.x15_c00259{left:346.293333pt;}
.x3e_c00259{left:348.960000pt;}
.x8c_c00259{left:351.626667pt;}
.x91_c00259{left:354.666667pt;}
.xd1_c00259{left:355.626667pt;}
.x23_c00259{left:357.706667pt;}
.x5d_c00259{left:358.666667pt;}
.x64_c00259{left:360.000000pt;}
.xda_c00259{left:361.333333pt;}
.x1_c00259{left:364.960000pt;}
.x6f_c00259{left:366.666667pt;}
.x82_c00259{left:368.000000pt;}
.x46_c00259{left:368.960000pt;}
.x9b_c00259{left:370.293333pt;}
.xbb_c00259{left:371.626667pt;}
.x29_c00259{left:372.960000pt;}
.x9_c00259{left:376.960000pt;}
.xc7_c00259{left:378.666667pt;}
.xfb_c00259{left:380.000000pt;}
.x51_c00259{left:382.666667pt;}
.xe2_c00259{left:384.960000pt;}
.x16_c00259{left:387.040000pt;}
.xdb_c00259{left:388.000000pt;}
.x3f_c00259{left:389.333333pt;}
.x5e_c00259{left:390.293333pt;}
.xd7_c00259{left:393.706667pt;}
.xa_c00259{left:396.000000pt;}
.x70_c00259{left:397.706667pt;}
.x47_c00259{left:399.040000pt;}
.xde_c00259{left:400.373333pt;}
.xb4_c00259{left:401.333333pt;}
.x32_c00259{left:403.626667pt;}
.xcd_c00259{left:405.333333pt;}
.xc8_c00259{left:406.293333pt;}
.x17_c00259{left:408.373333pt;}
.x57_c00259{left:409.333333pt;}
.x8d_c00259{left:412.000000pt;}
.x9c_c00259{left:413.333333pt;}
.xf4_c00259{left:416.000000pt;}
.xfc_c00259{left:416.960000pt;}
.x65_c00259{left:420.000000pt;}
.xb_c00259{left:421.706667pt;}
.xe9_c00259{left:424.000000pt;}
.x108_c00259{left:426.666667pt;}
.xc1_c00259{left:428.000000pt;}
.xea_c00259{left:428.960000pt;}
.x18_c00259{left:430.666667pt;}
.x9d_c00259{left:431.626667pt;}
.x2a_c00259{left:432.960000pt;}
.x58_c00259{left:436.000000pt;}
.x79_c00259{left:438.666667pt;}
.x66_c00259{left:441.706667pt;}
.x9e_c00259{left:444.960000pt;}
.x92_c00259{left:446.666667pt;}
.xfd_c00259{left:448.000000pt;}
.xb5_c00259{left:448.960000pt;}
.xd2_c00259{left:450.666667pt;}
.x48_c00259{left:451.626667pt;}
.x71_c00259{left:453.333333pt;}
.xbc_c00259{left:456.000000pt;}
.x7a_c00259{left:458.666667pt;}
.x24_c00259{left:459.800000pt;}
.xdf_c00259{left:462.666667pt;}
.x33_c00259{left:463.626667pt;}
.xec_c00259{left:465.706667pt;}
.x98_c00259{left:467.626667pt;}
.xfe_c00259{left:471.040000pt;}
.x104_c00259{left:472.000000pt;}
.x67_c00259{left:473.333333pt;}
.x2b_c00259{left:474.666667pt;}
.x40_c00259{left:480.000000pt;}
.x19_c00259{left:480.960000pt;}
.x93_c00259{left:482.666667pt;}
.x49_c00259{left:484.000000pt;}
.x83_c00259{left:489.333333pt;}
.x68_c00259{left:490.293333pt;}
.xb0_c00259{left:491.240000pt;}
.xc_c00259{left:492.960000pt;}
.xa6_c00259{left:497.133333pt;}
.x2c_c00259{left:498.666667pt;}
.x84_c00259{left:500.373333pt;}
.xce_c00259{left:501.333333pt;}
.xf5_c00259{left:502.293333pt;}
.x34_c00259{left:504.373333pt;}
.x1a_c00259{left:506.293333pt;}
.x109_c00259{left:509.333333pt;}
.xbd_c00259{left:512.000000pt;}
.x5f_c00259{left:512.960000pt;}
.x52_c00259{left:514.666667pt;}
.xc9_c00259{left:516.000000pt;}
.xac_c00259{left:520.000000pt;}
.x72_c00259{left:521.333333pt;}
.xc2_c00259{left:523.626667pt;}
.x8e_c00259{left:525.333333pt;}
.xe3_c00259{left:526.666667pt;}
.x35_c00259{left:528.373333pt;}
.x94_c00259{left:529.333333pt;}
.xd_c00259{left:532.000000pt;}
.xa7_c00259{left:533.333333pt;}
.xf6_c00259{left:535.040000pt;}
.xa2_c00259{left:538.293333pt;}
.x7b_c00259{left:540.000000pt;}
.xc3_c00259{left:541.706667pt;}
.x4a_c00259{left:544.000000pt;}
.x73_c00259{left:546.666667pt;}
.xa8_c00259{left:547.626667pt;}
.x85_c00259{left:549.333333pt;}
.xb6_c00259{left:550.293333pt;}
.x1b_c00259{left:552.000000pt;}
.xed_c00259{left:556.000000pt;}
.xf7_c00259{left:558.293333pt;}
.x74_c00259{left:561.333333pt;}
.xc4_c00259{left:564.000000pt;}
.x7c_c00259{left:565.333333pt;}
.xcf_c00259{left:566.666667pt;}
.x1c_c00259{left:567.626667pt;}
.xb7_c00259{left:569.706667pt;}
.xe4_c00259{left:572.000000pt;}
.x60_c00259{left:575.040000pt;}
.x53_c00259{left:576.373333pt;}
.x69_c00259{left:577.333333pt;}
.x36_c00259{left:578.293333pt;}
.x95_c00259{left:580.000000pt;}
.xe_c00259{left:585.333333pt;}
.x1d_c00259{left:586.666667pt;}
.x10a_c00259{left:587.626667pt;}
.xff_c00259{left:588.960000pt;}
.x8f_c00259{left:590.666667pt;}
.x86_c00259{left:592.373333pt;}
.x37_c00259{left:594.666667pt;}
.xa3_c00259{left:596.000000pt;}
.x96_c00259{left:597.333333pt;}
.x2d_c00259{left:599.040000pt;}
.x7d_c00259{left:600.373333pt;}
.x4b_c00259{left:601.333333pt;}
.x6a_c00259{left:602.666667pt;}
.xee_c00259{left:603.626667pt;}
.xd3_c00259{left:606.666667pt;}
.x90_c00259{left:608.000000pt;}
.xc5_c00259{left:610.293333pt;}
.x41_c00259{left:611.626667pt;}
.xf8_c00259{left:613.333333pt;}
.x87_c00259{left:614.666667pt;}
.x38_c00259{left:616.960000pt;}
.xdc_c00259{left:621.333333pt;}
.x2e_c00259{left:623.040000pt;}
.xa9_c00259{left:629.706667pt;}
.xf_c00259{left:631.040000pt;}
.x10b_c00259{left:632.000000pt;}
.xe5_c00259{left:633.333333pt;}
.x54_c00259{left:636.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_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_3bbbcd7a79248578178cf440.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mca_c00260{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.m10c_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);}
.md8_c00260{transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);}
.mfc_c00260{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m74_c00260{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m110_c00260{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.ma_c00260{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m27_c00260{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m42_c00260{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.ma2_c00260{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m32_c00260{transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);}
.mfb_c00260{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m6d_c00260{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m76_c00260{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.mf4_c00260{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.mb5_c00260{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.mc9_c00260{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mb8_c00260{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.mef_c00260{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m90_c00260{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m49_c00260{transform:matrix(0.394710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394710,0.000000,0.000000,0.250000,0,0);}
.m10f_c00260{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m29_c00260{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.mf1_c00260{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m10a_c00260{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.ma9_c00260{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m86_c00260{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m111_c00260{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m107_c00260{transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);}
.mf5_c00260{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.maa_c00260{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m5b_c00260{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m85_c00260{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m10b_c00260{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mdf_c00260{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m4d_c00260{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.mcf_c00260{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.md3_c00260{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.mea_c00260{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.mba_c00260{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m103_c00260{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.md9_c00260{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.mf2_c00260{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.md7_c00260{transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);}
.m62_c00260{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m66_c00260{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mc0_c00260{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m50_c00260{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m39_c00260{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.mbf_c00260{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m112_c00260{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.ma0_c00260{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mac_c00260{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.mb_c00260{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.md_c00260{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m9f_c00260{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.me9_c00260{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m7e_c00260{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m53_c00260{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m65_c00260{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mf7_c00260{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mce_c00260{transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);}
.m9d_c00260{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m5e_c00260{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.mc1_c00260{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m5a_c00260{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m2a_c00260{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m73_c00260{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.mc5_c00260{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.me2_c00260{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m106_c00260{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m94_c00260{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m8e_c00260{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m17_c00260{transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);}
.m5d_c00260{transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);}
.md2_c00260{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.mda_c00260{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.mb7_c00260{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.me5_c00260{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m18_c00260{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m87_c00260{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mbd_c00260{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m9c_c00260{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m3b_c00260{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m46_c00260{transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);}
.m1_c00260{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m20_c00260{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.mff_c00260{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.me7_c00260{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m71_c00260{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m10_c00260{transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);}
.m4f_c00260{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.me0_c00260{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m34_c00260{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m55_c00260{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.mbc_c00260{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.mdd_c00260{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.mf3_c00260{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m4e_c00260{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m1c_c00260{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m3f_c00260{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m22_c00260{transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);}
.mae_c00260{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.me4_c00260{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m7b_c00260{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m67_c00260{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m16_c00260{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m8c_c00260{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m81_c00260{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m6f_c00260{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.m104_c00260{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.mbb_c00260{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m7_c00260{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.ma6_c00260{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.mab_c00260{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m61_c00260{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.med_c00260{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m93_c00260{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.me_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);}
.m7d_c00260{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m97_c00260{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m52_c00260{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m10e_c00260{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.mb2_c00260{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m13_c00260{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m68_c00260{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mde_c00260{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m7f_c00260{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m5c_c00260{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.m79_c00260{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m7c_c00260{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m102_c00260{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m4_c00260{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m96_c00260{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m78_c00260{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m12_c00260{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m70_c00260{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mf_c00260{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_c00260{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m3e_c00260{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m99_c00260{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mc7_c00260{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m109_c00260{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mc4_c00260{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m35_c00260{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);}
.mdb_c00260{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.ma1_c00260{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m92_c00260{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m2f_c00260{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.meb_c00260{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mb0_c00260{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m91_c00260{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m77_c00260{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m6a_c00260{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m100_c00260{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m6c_c00260{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m64_c00260{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m108_c00260{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m6_c00260{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m82_c00260{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m95_c00260{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m7a_c00260{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mcd_c00260{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m25_c00260{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m72_c00260{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mfd_c00260{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mc8_c00260{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m2d_c00260{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.md4_c00260{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m1f_c00260{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.mfa_c00260{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m6b_c00260{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.ma8_c00260{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.me3_c00260{transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);}
.m4b_c00260{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m88_c00260{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mc3_c00260{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m2b_c00260{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m84_c00260{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mc6_c00260{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m83_c00260{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m51_c00260{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.me6_c00260{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);}
.m75_c00260{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m47_c00260{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m9b_c00260{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m36_c00260{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.m8a_c00260{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.m105_c00260{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mb9_c00260{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m58_c00260{transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);}
.m6e_c00260{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mb6_c00260{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m48_c00260{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.mb4_c00260{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m14_c00260{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.ma7_c00260{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.maf_c00260{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mbe_c00260{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m11_c00260{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.md5_c00260{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m43_c00260{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m5_c00260{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mc_c00260{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m4a_c00260{transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);}
.mec_c00260{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.mad_c00260{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m33_c00260{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.m59_c00260{transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);}
.m3a_c00260{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.md0_c00260{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.ma3_c00260{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m2e_c00260{transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);}
.m45_c00260{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.md6_c00260{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m8d_c00260{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mf0_c00260{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.m101_c00260{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m23_c00260{transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);}
.m26_c00260{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.m30_c00260{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m9_c00260{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mf8_c00260{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m38_c00260{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m19_c00260{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);}
.mc2_c00260{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);}
.mb3_c00260{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m41_c00260{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.m15_c00260{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m40_c00260{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m8b_c00260{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m28_c00260{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m3_c00260{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m4c_c00260{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.mfe_c00260{transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);}
.m1d_c00260{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m10d_c00260{transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);}
.m31_c00260{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);}
.m2c_c00260{transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);}
.mee_c00260{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m2_c00260{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m60_c00260{transform:matrix(0.655147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655147,0.000000,0.000000,0.250000,0,0);}
.m44_c00260{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m3d_c00260{transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);}
.me8_c00260{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m9a_c00260{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.ma5_c00260{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m89_c00260{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m21_c00260{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.m1a_c00260{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m1b_c00260{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m24_c00260{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m0_c00260{transform:matrix(0.690705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690705,0.000000,0.000000,0.250000,0,0);}
.mcc_c00260{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m56_c00260{transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);}
.m1e_c00260{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);}
.m57_c00260{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m9e_c00260{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.ma4_c00260{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m69_c00260{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m80_c00260{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m98_c00260{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m8f_c00260{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.me1_c00260{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.mf6_c00260{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.mf9_c00260{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.mb1_c00260{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.md1_c00260{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.mdc_c00260{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m54_c00260{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m5f_c00260{transform:matrix(0.957048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.957048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.957048,0.000000,0.000000,0.250000,0,0);}
.m3c_c00260{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m8_c00260{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m37_c00260{transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);}
.m63_c00260{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.v1_c00260{vertical-align:-12.000000px;}
.v0_c00260{vertical-align:0.000000px;}
.ls0_c00260{letter-spacing:0.000000px;}
.sc__c00260{text-shadow:none;}
.sc0_c00260{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00260{-webkit-text-stroke:0px transparent;}
.sc0_c00260{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00260{word-spacing:-7.646903px;}
.ws1_c00260{word-spacing:-3.388560px;}
.ws2_c00260{word-spacing:0.000000px;}
.fc0_c00260{color:transparent;}
.fs7_c00260{font-size:3.420000px;}
.fs4_c00260{font-size:13.620000px;}
.fs0_c00260{font-size:18.720000px;}
.fs2_c00260{font-size:20.400000px;}
.fs3_c00260{font-size:25.500000px;}
.fs1_c00260{font-size:28.920000px;}
.fs5_c00260{font-size:32.340000px;}
.fs6_c00260{font-size:35.700000px;}
.y0_c00260{bottom:0.000000px;}
.ye7_c00260{bottom:251.745000px;}
.ye5_c00260{bottom:253.245000px;}
.ye6_c00260{bottom:254.970000px;}
.ye3_c00260{bottom:255.405000px;}
.ye4_c00260{bottom:255.420000px;}
.ye2_c00260{bottom:271.470000px;}
.ydf_c00260{bottom:271.905000px;}
.ye1_c00260{bottom:272.745000px;}
.yde_c00260{bottom:273.825000px;}
.ye0_c00260{bottom:274.905000px;}
.yda_c00260{bottom:291.405000px;}
.ydc_c00260{bottom:292.245000px;}
.ydb_c00260{bottom:292.470000px;}
.ydd_c00260{bottom:292.905000px;}
.yd9_c00260{bottom:294.405000px;}
.yd8_c00260{bottom:295.470000px;}
.yd6_c00260{bottom:310.905000px;}
.yd2_c00260{bottom:311.325000px;}
.yd1_c00260{bottom:311.745000px;}
.yd5_c00260{bottom:312.825000px;}
.yd4_c00260{bottom:313.905000px;}
.yd3_c00260{bottom:314.130000px;}
.yd7_c00260{bottom:315.405000px;}
.ycf_c00260{bottom:330.405000px;}
.ycc_c00260{bottom:331.470000px;}
.ycb_c00260{bottom:331.905000px;}
.ycd_c00260{bottom:332.550000px;}
.yce_c00260{bottom:332.745000px;}
.yd0_c00260{bottom:333.630000px;}
.yca_c00260{bottom:333.825000px;}
.yc9_c00260{bottom:334.905000px;}
.yc8_c00260{bottom:351.405000px;}
.yc7_c00260{bottom:352.245000px;}
.yc2_c00260{bottom:353.130000px;}
.yc5_c00260{bottom:353.325000px;}
.yc3_c00260{bottom:353.970000px;}
.yc4_c00260{bottom:354.405000px;}
.yc6_c00260{bottom:355.470000px;}
.yc0_c00260{bottom:371.745000px;}
.yc1_c00260{bottom:372.630000px;}
.ybf_c00260{bottom:373.905000px;}
.ybc_c00260{bottom:391.245000px;}
.ybb_c00260{bottom:392.325000px;}
.ybd_c00260{bottom:393.405000px;}
.ybe_c00260{bottom:393.630000px;}
.yb7_c00260{bottom:409.905000px;}
.yb6_c00260{bottom:410.745000px;}
.yba_c00260{bottom:410.970000px;}
.yb9_c00260{bottom:411.630000px;}
.yb8_c00260{bottom:411.825000px;}
.yb5_c00260{bottom:412.905000px;}
.yb3_c00260{bottom:430.245000px;}
.yb2_c00260{bottom:432.405000px;}
.yb1_c00260{bottom:432.630000px;}
.yb4_c00260{bottom:433.470000px;}
.yae_c00260{bottom:448.905000px;}
.yac_c00260{bottom:449.325000px;}
.yb0_c00260{bottom:449.970000px;}
.yab_c00260{bottom:450.405000px;}
.yaa_c00260{bottom:451.245000px;}
.yad_c00260{bottom:452.325000px;}
.yaf_c00260{bottom:453.405000px;}
.ya8_c00260{bottom:469.905000px;}
.ya5_c00260{bottom:470.745000px;}
.ya7_c00260{bottom:471.630000px;}
.ya9_c00260{bottom:471.825000px;}
.ya6_c00260{bottom:472.905000px;}
.ya4_c00260{bottom:487.905000px;}
.ya3_c00260{bottom:488.325000px;}
.ya2_c00260{bottom:490.245000px;}
.ya0_c00260{bottom:491.970000px;}
.y9f_c00260{bottom:492.405000px;}
.ya1_c00260{bottom:493.470000px;}
.y9d_c00260{bottom:509.745000px;}
.y9e_c00260{bottom:510.630000px;}
.y9c_c00260{bottom:511.905000px;}
.y9b_c00260{bottom:529.245000px;}
.y9a_c00260{bottom:530.325000px;}
.y98_c00260{bottom:531.405000px;}
.y99_c00260{bottom:531.630000px;}
.y95_c00260{bottom:550.245000px;}
.y97_c00260{bottom:550.905000px;}
.y96_c00260{bottom:551.130000px;}
.y94_c00260{bottom:552.405000px;}
.y93_c00260{bottom:567.405000px;}
.y92_c00260{bottom:569.745000px;}
.y91_c00260{bottom:571.905000px;}
.y90_c00260{bottom:589.245000px;}
.y8f_c00260{bottom:591.405000px;}
.y8e_c00260{bottom:607.245000px;}
.y8d_c00260{bottom:609.405000px;}
.y8c_c00260{bottom:610.905000px;}
.y89_c00260{bottom:628.245000px;}
.y8b_c00260{bottom:629.325000px;}
.y8a_c00260{bottom:630.405000px;}
.y85_c00260{bottom:646.470000px;}
.y87_c00260{bottom:646.905000px;}
.y81_c00260{bottom:647.745000px;}
.y86_c00260{bottom:648.630000px;}
.y84_c00260{bottom:649.470000px;}
.y82_c00260{bottom:649.905000px;}
.y83_c00260{bottom:650.130000px;}
.y88_c00260{bottom:650.970000px;}
.y7e_c00260{bottom:667.245000px;}
.y80_c00260{bottom:668.325000px;}
.y7b_c00260{bottom:668.745000px;}
.y7c_c00260{bottom:669.405000px;}
.y7f_c00260{bottom:669.630000px;}
.y7d_c00260{bottom:670.905000px;}
.y7a_c00260{bottom:688.245000px;}
.y79_c00260{bottom:689.130000px;}
.y78_c00260{bottom:690.405000px;}
.y74_c00260{bottom:706.245000px;}
.y75_c00260{bottom:707.745000px;}
.y73_c00260{bottom:708.405000px;}
.y76_c00260{bottom:708.630000px;}
.y77_c00260{bottom:709.905000px;}
.y6e_c00260{bottom:727.245000px;}
.y70_c00260{bottom:728.130000px;}
.y71_c00260{bottom:728.970000px;}
.y6f_c00260{bottom:729.405000px;}
.y72_c00260{bottom:729.630000px;}
.y69_c00260{bottom:745.470000px;}
.y6b_c00260{bottom:745.905000px;}
.y6d_c00260{bottom:746.745000px;}
.y6c_c00260{bottom:747.630000px;}
.y6a_c00260{bottom:748.470000px;}
.y68_c00260{bottom:748.905000px;}
.y65_c00260{bottom:765.405000px;}
.y63_c00260{bottom:766.245000px;}
.y66_c00260{bottom:767.325000px;}
.y62_c00260{bottom:768.405000px;}
.y64_c00260{bottom:768.630000px;}
.y67_c00260{bottom:769.470000px;}
.y61_c00260{bottom:785.745000px;}
.y60_c00260{bottom:787.905000px;}
.y5e_c00260{bottom:805.245000px;}
.y5f_c00260{bottom:807.405000px;}
.y58_c00260{bottom:824.745000px;}
.y5b_c00260{bottom:826.245000px;}
.y5a_c00260{bottom:826.905000px;}
.y5c_c00260{bottom:827.130000px;}
.y5d_c00260{bottom:828.405000px;}
.y59_c00260{bottom:828.420000px;}
.y57_c00260{bottom:856.470000px;}
.y56_c00260{bottom:857.325000px;}
.y51_c00260{bottom:857.550000px;}
.y53_c00260{bottom:858.405000px;}
.y52_c00260{bottom:859.470000px;}
.y54_c00260{bottom:859.695000px;}
.y55_c00260{bottom:860.550000px;}
.y50_c00260{bottom:872.325000px;}
.y4c_c00260{bottom:873.405000px;}
.y4e_c00260{bottom:873.630000px;}
.y4f_c00260{bottom:874.470000px;}
.y4b_c00260{bottom:874.695000px;}
.y4d_c00260{bottom:875.550000px;}
.y4a_c00260{bottom:886.050000px;}
.y47_c00260{bottom:886.905000px;}
.y48_c00260{bottom:887.130000px;}
.y49_c00260{bottom:887.970000px;}
.y45_c00260{bottom:901.905000px;}
.y41_c00260{bottom:902.130000px;}
.y44_c00260{bottom:902.325000px;}
.y46_c00260{bottom:902.970000px;}
.y42_c00260{bottom:904.050000px;}
.y43_c00260{bottom:904.470000px;}
.y40_c00260{bottom:915.825000px;}
.y3f_c00260{bottom:916.470000px;}
.y3c_c00260{bottom:916.905000px;}
.y3d_c00260{bottom:917.130000px;}
.y3b_c00260{bottom:917.970000px;}
.y3e_c00260{bottom:919.050000px;}
.y39_c00260{bottom:931.050000px;}
.y38_c00260{bottom:931.905000px;}
.y35_c00260{bottom:932.130000px;}
.y36_c00260{bottom:932.970000px;}
.y3a_c00260{bottom:933.405000px;}
.y37_c00260{bottom:934.050000px;}
.y34_c00260{bottom:944.970000px;}
.y33_c00260{bottom:945.825000px;}
.y31_c00260{bottom:948.195000px;}
.y32_c00260{bottom:949.050000px;}
.y2d_c00260{bottom:960.825000px;}
.y2b_c00260{bottom:961.050000px;}
.y30_c00260{bottom:961.905000px;}
.y2c_c00260{bottom:962.970000px;}
.y2e_c00260{bottom:963.195000px;}
.y2f_c00260{bottom:964.050000px;}
.y2a_c00260{bottom:974.970000px;}
.y26_c00260{bottom:975.405000px;}
.y27_c00260{bottom:976.470000px;}
.y29_c00260{bottom:976.905000px;}
.y28_c00260{bottom:977.130000px;}
.y25_c00260{bottom:977.550000px;}
.y24_c00260{bottom:990.405000px;}
.y22_c00260{bottom:991.470000px;}
.y23_c00260{bottom:992.550000px;}
.y1b_c00260{bottom:1003.470000px;}
.y1e_c00260{bottom:1004.325000px;}
.y21_c00260{bottom:1004.970000px;}
.y20_c00260{bottom:1005.825000px;}
.y1c_c00260{bottom:1006.470000px;}
.y1f_c00260{bottom:1006.695000px;}
.y1d_c00260{bottom:1007.550000px;}
.y17_c00260{bottom:1018.470000px;}
.y16_c00260{bottom:1019.325000px;}
.y18_c00260{bottom:1019.550000px;}
.y1a_c00260{bottom:1020.405000px;}
.y15_c00260{bottom:1021.470000px;}
.y14_c00260{bottom:1021.695000px;}
.y19_c00260{bottom:1022.550000px;}
.y13_c00260{bottom:1033.470000px;}
.y12_c00260{bottom:1035.405000px;}
.y11_c00260{bottom:1035.630000px;}
.y10_c00260{bottom:1037.550000px;}
.ya_c00260{bottom:1048.905000px;}
.yb_c00260{bottom:1049.550000px;}
.ye_c00260{bottom:1049.970000px;}
.yf_c00260{bottom:1050.405000px;}
.yd_c00260{bottom:1050.630000px;}
.yc_c00260{bottom:1051.470000px;}
.y4_c00260{bottom:1063.905000px;}
.y9_c00260{bottom:1064.325000px;}
.y6_c00260{bottom:1065.405000px;}
.y3_c00260{bottom:1066.050000px;}
.y5_c00260{bottom:1066.470000px;}
.y7_c00260{bottom:1066.695000px;}
.y8_c00260{bottom:1067.550000px;}
.y2_c00260{bottom:1099.905000px;}
.y1_c00260{bottom:1103.130000px;}
.h8_c00260{height:4.206533px;}
.h5_c00260{height:16.752334px;}
.h1_c00260{height:23.025234px;}
.h3_c00260{height:25.091602px;}
.h4_c00260{height:31.364502px;}
.h2_c00260{height:35.571035px;}
.h6_c00260{height:39.777568px;}
.h7_c00260{height:43.910303px;}
.h0_c00260{height:1335.000000px;}
.w0_c00260{width:880.500000px;}
.x0_c00260{left:0.000000px;}
.x3_c00260{left:151.500000px;}
.xa7_c00260{left:153.000000px;}
.x26_c00260{left:162.000000px;}
.x76_c00260{left:163.500000px;}
.x1a_c00260{left:165.000000px;}
.x52_c00260{left:166.920000px;}
.xe9_c00260{left:168.000000px;}
.xde_c00260{left:169.500000px;}
.xf8_c00260{left:172.080000px;}
.x12_c00260{left:178.920000px;}
.x40_c00260{left:180.420000px;}
.x1b_c00260{left:182.580000px;}
.x116_c00260{left:184.080000px;}
.x53_c00260{left:189.000000px;}
.x60_c00260{left:190.500000px;}
.x4_c00260{left:193.500000px;}
.x8f_c00260{left:195.000000px;}
.x27_c00260{left:196.080000px;}
.x102_c00260{left:199.080000px;}
.x4f_c00260{left:200.580000px;}
.x77_c00260{left:202.500000px;}
.xef_c00260{left:204.000000px;}
.xb0_c00260{left:205.920000px;}
.x41_c00260{left:207.000000px;}
.x9f_c00260{left:208.080000px;}
.x96_c00260{left:210.000000px;}
.x5c_c00260{left:212.580000px;}
.xdf_c00260{left:216.420000px;}
.xd8_c00260{left:217.920000px;}
.x33_c00260{left:219.000000px;}
.xa8_c00260{left:220.500000px;}
.x13_c00260{left:222.000000px;}
.x28_c00260{left:223.080000px;}
.x110_c00260{left:224.355000px;}
.x1c_c00260{left:226.500000px;}
.xa0_c00260{left:228.420000px;}
.x87_c00260{left:231.000000px;}
.x97_c00260{left:232.500000px;}
.x50_c00260{left:233.580000px;}
.xd3_c00260{left:235.500000px;}
.xbf_c00260{left:237.000000px;}
.x61_c00260{left:240.000000px;}
.x100_c00260{left:243.000000px;}
.x90_c00260{left:244.080000px;}
.x98_c00260{left:246.420000px;}
.xb1_c00260{left:247.920000px;}
.xfa_c00260{left:249.420000px;}
.x14_c00260{left:251.580000px;}
.x80_c00260{left:255.000000px;}
.x109_c00260{left:256.080000px;}
.x1d_c00260{left:257.145000px;}
.xe0_c00260{left:259.080000px;}
.x34_c00260{left:261.000000px;}
.xa9_c00260{left:262.500000px;}
.x88_c00260{left:263.580000px;}
.x29_c00260{left:265.500000px;}
.x5d_c00260{left:268.500000px;}
.xc0_c00260{left:270.420000px;}
.xc7_c00260{left:271.500000px;}
.xb6_c00260{left:273.420000px;}
.x81_c00260{left:274.500000px;}
.x51_c00260{left:276.000000px;}
.x54_c00260{left:277.920000px;}
.x15_c00260{left:279.000000px;}
.x5_c00260{left:280.080000px;}
.x117_c00260{left:283.500000px;}
.xb2_c00260{left:285.000000px;}
.x10a_c00260{left:288.420000px;}
.x99_c00260{left:289.500000px;}
.xc8_c00260{left:290.580000px;}
.x111_c00260{left:292.080000px;}
.x2a_c00260{left:293.580000px;}
.xce_c00260{left:297.000000px;}
.x114_c00260{left:298.080000px;}
.x42_c00260{left:300.000000px;}
.xb7_c00260{left:301.920000px;}
.xd9_c00260{left:303.420000px;}
.x35_c00260{left:304.920000px;}
.x101_c00260{left:306.000000px;}
.xf0_c00260{left:307.500000px;}
.x1e_c00260{left:308.580000px;}
.x6f_c00260{left:310.500000px;}
.x6_c00260{left:311.580000px;}
.x16_c00260{left:318.000000px;}
.x2b_c00260{left:319.500000px;}
.x78_c00260{left:322.500000px;}
.x55_c00260{left:324.855000px;}
.xe6_c00260{left:327.000000px;}
.x62_c00260{left:328.500000px;}
.xb8_c00260{left:330.000000px;}
.x7_c00260{left:331.500000px;}
.x79_c00260{left:333.000000px;}
.x89_c00260{left:334.500000px;}
.x6b_c00260{left:336.855000px;}
.x49_c00260{left:339.000000px;}
.x1f_c00260{left:342.000000px;}
.xe3_c00260{left:344.145000px;}
.xc1_c00260{left:345.420000px;}
.xfb_c00260{left:346.500000px;}
.x17_c00260{left:348.420000px;}
.x5e_c00260{left:350.580000px;}
.x36_c00260{left:353.580000px;}
.x9a_c00260{left:355.920000px;}
.x20_c00260{left:357.000000px;}
.x4a_c00260{left:358.500000px;}
.xf5_c00260{left:360.000000px;}
.x2c_c00260{left:361.920000px;}
.x112_c00260{left:364.080000px;}
.x106_c00260{left:367.500000px;}
.x43_c00260{left:369.000000px;}
.x2d_c00260{left:372.000000px;}
.xa1_c00260{left:373.500000px;}
.xaa_c00260{left:375.000000px;}
.x82_c00260{left:376.920000px;}
.x6c_c00260{left:378.000000px;}
.xe7_c00260{left:379.080000px;}
.x8a_c00260{left:381.000000px;}
.xcf_c00260{left:382.500000px;}
.x63_c00260{left:384.000000px;}
.x8_c00260{left:386.580000px;}
.xea_c00260{left:390.000000px;}
.x18_c00260{left:391.080000px;}
.x5f_c00260{left:393.000000px;}
.x70_c00260{left:394.500000px;}
.x7a_c00260{left:396.000000px;}
.x21_c00260{left:397.080000px;}
.x103_c00260{left:400.275000px;}
.x91_c00260{left:402.420000px;}
.x37_c00260{left:403.920000px;}
.xe8_c00260{left:405.000000px;}
.x1_c00260{left:406.080000px;}
.xc9_c00260{left:408.000000px;}
.xda_c00260{left:411.000000px;}
.x6d_c00260{left:413.580000px;}
.x64_c00260{left:417.420000px;}
.x4b_c00260{left:418.500000px;}
.x7b_c00260{left:420.000000px;}
.x38_c00260{left:421.500000px;}
.x2e_c00260{left:422.580000px;}
.x44_c00260{left:424.080000px;}
.xb3_c00260{left:429.000000px;}
.xdb_c00260{left:430.920000px;}
.xc2_c00260{left:432.000000px;}
.x45_c00260{left:433.500000px;}
.x65_c00260{left:436.500000px;}
.xa2_c00260{left:439.920000px;}
.x6e_c00260{left:441.000000px;}
.x9_c00260{left:443.580000px;}
.x71_c00260{left:447.000000px;}
.x39_c00260{left:448.500000px;}
.x9b_c00260{left:450.420000px;}
.xab_c00260{left:453.000000px;}
.xd0_c00260{left:454.920000px;}
.xa_c00260{left:456.000000px;}
.x4c_c00260{left:457.500000px;}
.x83_c00260{left:459.000000px;}
.xd4_c00260{left:460.500000px;}
.x66_c00260{left:462.420000px;}
.xeb_c00260{left:465.420000px;}
.xe4_c00260{left:466.500000px;}
.x113_c00260{left:468.420000px;}
.xb9_c00260{left:471.000000px;}
.x19_c00260{left:472.500000px;}
.x84_c00260{left:475.080000px;}
.xa3_c00260{left:478.500000px;}
.x46_c00260{left:480.000000px;}
.x7c_c00260{left:481.080000px;}
.x104_c00260{left:483.420000px;}
.x10b_c00260{left:484.500000px;}
.x9c_c00260{left:486.420000px;}
.x3a_c00260{left:487.500000px;}
.xf9_c00260{left:489.420000px;}
.xfc_c00260{left:490.500000px;}
.xd5_c00260{left:492.000000px;}
.xb_c00260{left:493.080000px;}
.x8b_c00260{left:495.000000px;}
.x2f_c00260{left:496.080000px;}
.xc3_c00260{left:498.000000px;}
.xdc_c00260{left:499.500000px;}
.xf1_c00260{left:502.920000px;}
.x47_c00260{left:506.580000px;}
.x7d_c00260{left:508.080000px;}
.x22_c00260{left:510.000000px;}
.xba_c00260{left:511.500000px;}
.x56_c00260{left:512.580000px;}
.xb4_c00260{left:514.500000px;}
.x72_c00260{left:517.500000px;}
.x8c_c00260{left:519.000000px;}
.xc_c00260{left:521.580000px;}
.xec_c00260{left:523.080000px;}
.x92_c00260{left:526.500000px;}
.xca_c00260{left:528.000000px;}
.x67_c00260{left:530.145000px;}
.xbb_c00260{left:531.420000px;}
.xc4_c00260{left:534.000000px;}
.x118_c00260{left:535.500000px;}
.x4d_c00260{left:537.645000px;}
.x23_c00260{left:541.500000px;}
.xa4_c00260{left:543.000000px;}
.x7e_c00260{left:544.500000px;}
.xc5_c00260{left:547.920000px;}
.x48_c00260{left:549.000000px;}
.x57_c00260{left:553.920000px;}
.xdd_c00260{left:556.920000px;}
.xed_c00260{left:558.000000px;}
.xa5_c00260{left:559.080000px;}
.xac_c00260{left:561.000000px;}
.x3b_c00260{left:564.000000px;}
.xd_c00260{left:567.000000px;}
.xe5_c00260{left:568.500000px;}
.xf6_c00260{left:569.580000px;}
.x58_c00260{left:572.580000px;}
.x68_c00260{left:574.080000px;}
.xd1_c00260{left:576.000000px;}
.x30_c00260{left:579.000000px;}
.x73_c00260{left:582.000000px;}
.x93_c00260{left:583.080000px;}
.x10c_c00260{left:585.000000px;}
.xf2_c00260{left:589.080000px;}
.x107_c00260{left:594.000000px;}
.xe_c00260{left:597.420000px;}
.x59_c00260{left:598.500000px;}
.x7f_c00260{left:600.000000px;}
.x8d_c00260{left:601.920000px;}
.xbc_c00260{left:604.500000px;}
.xe1_c00260{left:606.000000px;}
.x24_c00260{left:607.500000px;}
.xcb_c00260{left:609.420000px;}
.x3c_c00260{left:610.500000px;}
.x31_c00260{left:613.920000px;}
.x69_c00260{left:615.000000px;}
.x4e_c00260{left:616.500000px;}
.xfd_c00260{left:619.920000px;}
.x85_c00260{left:621.000000px;}
.xd6_c00260{left:622.500000px;}
.x3d_c00260{left:624.000000px;}
.xf_c00260{left:625.500000px;}
.x115_c00260{left:627.000000px;}
.xf3_c00260{left:633.000000px;}
.x10d_c00260{left:634.500000px;}
.x5a_c00260{left:636.420000px;}
.x32_c00260{left:639.000000px;}
.xad_c00260{left:640.080000px;}
.x9d_c00260{left:642.000000px;}
.xf7_c00260{left:645.000000px;}
.x94_c00260{left:646.080000px;}
.x74_c00260{left:649.920000px;}
.x5b_c00260{left:653.145000px;}
.xa6_c00260{left:658.080000px;}
.x3e_c00260{left:659.580000px;}
.xd2_c00260{left:661.500000px;}
.xbd_c00260{left:663.000000px;}
.x86_c00260{left:664.080000px;}
.x6a_c00260{left:666.420000px;}
.x10_c00260{left:669.000000px;}
.x108_c00260{left:670.500000px;}
.xfe_c00260{left:671.580000px;}
.xb5_c00260{left:673.920000px;}
.x105_c00260{left:675.000000px;}
.xcc_c00260{left:676.500000px;}
.x25_c00260{left:677.580000px;}
.xd7_c00260{left:681.420000px;}
.x11_c00260{left:682.500000px;}
.xee_c00260{left:684.000000px;}
.x75_c00260{left:685.500000px;}
.x119_c00260{left:687.420000px;}
.x8e_c00260{left:688.920000px;}
.x3f_c00260{left:690.420000px;}
.xff_c00260{left:691.500000px;}
.xbe_c00260{left:696.420000px;}
.x10e_c00260{left:700.500000px;}
.xae_c00260{left:701.580000px;}
.x2_c00260{left:703.080000px;}
.xf4_c00260{left:706.080000px;}
.x9e_c00260{left:708.420000px;}
.xcd_c00260{left:709.500000px;}
.xe2_c00260{left:712.275000px;}
.x95_c00260{left:718.500000px;}
.xc6_c00260{left:720.000000px;}
.xaf_c00260{left:723.000000px;}
.x10f_c00260{left:724.920000px;}
@media print{
.v1_c00260{vertical-align:-10.666667pt;}
.v0_c00260{vertical-align:0.000000pt;}
.ls0_c00260{letter-spacing:0.000000pt;}
.ws0_c00260{word-spacing:-6.797247pt;}
.ws1_c00260{word-spacing:-3.012053pt;}
.ws2_c00260{word-spacing:0.000000pt;}
.fs7_c00260{font-size:3.040000pt;}
.fs4_c00260{font-size:12.106667pt;}
.fs0_c00260{font-size:16.640000pt;}
.fs2_c00260{font-size:18.133333pt;}
.fs3_c00260{font-size:22.666667pt;}
.fs1_c00260{font-size:25.706667pt;}
.fs5_c00260{font-size:28.746667pt;}
.fs6_c00260{font-size:31.733333pt;}
.y0_c00260{bottom:0.000000pt;}
.ye7_c00260{bottom:223.773333pt;}
.ye5_c00260{bottom:225.106667pt;}
.ye6_c00260{bottom:226.640000pt;}
.ye3_c00260{bottom:227.026667pt;}
.ye4_c00260{bottom:227.040000pt;}
.ye2_c00260{bottom:241.306667pt;}
.ydf_c00260{bottom:241.693333pt;}
.ye1_c00260{bottom:242.440000pt;}
.yde_c00260{bottom:243.400000pt;}
.ye0_c00260{bottom:244.360000pt;}
.yda_c00260{bottom:259.026667pt;}
.ydc_c00260{bottom:259.773333pt;}
.ydb_c00260{bottom:259.973333pt;}
.ydd_c00260{bottom:260.360000pt;}
.yd9_c00260{bottom:261.693333pt;}
.yd8_c00260{bottom:262.640000pt;}
.yd6_c00260{bottom:276.360000pt;}
.yd2_c00260{bottom:276.733333pt;}
.yd1_c00260{bottom:277.106667pt;}
.yd5_c00260{bottom:278.066667pt;}
.yd4_c00260{bottom:279.026667pt;}
.yd3_c00260{bottom:279.226667pt;}
.yd7_c00260{bottom:280.360000pt;}
.ycf_c00260{bottom:293.693333pt;}
.ycc_c00260{bottom:294.640000pt;}
.ycb_c00260{bottom:295.026667pt;}
.ycd_c00260{bottom:295.600000pt;}
.yce_c00260{bottom:295.773333pt;}
.yd0_c00260{bottom:296.560000pt;}
.yca_c00260{bottom:296.733333pt;}
.yc9_c00260{bottom:297.693333pt;}
.yc8_c00260{bottom:312.360000pt;}
.yc7_c00260{bottom:313.106667pt;}
.yc2_c00260{bottom:313.893333pt;}
.yc5_c00260{bottom:314.066667pt;}
.yc3_c00260{bottom:314.640000pt;}
.yc4_c00260{bottom:315.026667pt;}
.yc6_c00260{bottom:315.973333pt;}
.yc0_c00260{bottom:330.440000pt;}
.yc1_c00260{bottom:331.226667pt;}
.ybf_c00260{bottom:332.360000pt;}
.ybc_c00260{bottom:347.773333pt;}
.ybb_c00260{bottom:348.733333pt;}
.ybd_c00260{bottom:349.693333pt;}
.ybe_c00260{bottom:349.893333pt;}
.yb7_c00260{bottom:364.360000pt;}
.yb6_c00260{bottom:365.106667pt;}
.yba_c00260{bottom:365.306667pt;}
.yb9_c00260{bottom:365.893333pt;}
.yb8_c00260{bottom:366.066667pt;}
.yb5_c00260{bottom:367.026667pt;}
.yb3_c00260{bottom:382.440000pt;}
.yb2_c00260{bottom:384.360000pt;}
.yb1_c00260{bottom:384.560000pt;}
.yb4_c00260{bottom:385.306667pt;}
.yae_c00260{bottom:399.026667pt;}
.yac_c00260{bottom:399.400000pt;}
.yb0_c00260{bottom:399.973333pt;}
.yab_c00260{bottom:400.360000pt;}
.yaa_c00260{bottom:401.106667pt;}
.yad_c00260{bottom:402.066667pt;}
.yaf_c00260{bottom:403.026667pt;}
.ya8_c00260{bottom:417.693333pt;}
.ya5_c00260{bottom:418.440000pt;}
.ya7_c00260{bottom:419.226667pt;}
.ya9_c00260{bottom:419.400000pt;}
.ya6_c00260{bottom:420.360000pt;}
.ya4_c00260{bottom:433.693333pt;}
.ya3_c00260{bottom:434.066667pt;}
.ya2_c00260{bottom:435.773333pt;}
.ya0_c00260{bottom:437.306667pt;}
.y9f_c00260{bottom:437.693333pt;}
.ya1_c00260{bottom:438.640000pt;}
.y9d_c00260{bottom:453.106667pt;}
.y9e_c00260{bottom:453.893333pt;}
.y9c_c00260{bottom:455.026667pt;}
.y9b_c00260{bottom:470.440000pt;}
.y9a_c00260{bottom:471.400000pt;}
.y98_c00260{bottom:472.360000pt;}
.y99_c00260{bottom:472.560000pt;}
.y95_c00260{bottom:489.106667pt;}
.y97_c00260{bottom:489.693333pt;}
.y96_c00260{bottom:489.893333pt;}
.y94_c00260{bottom:491.026667pt;}
.y93_c00260{bottom:504.360000pt;}
.y92_c00260{bottom:506.440000pt;}
.y91_c00260{bottom:508.360000pt;}
.y90_c00260{bottom:523.773333pt;}
.y8f_c00260{bottom:525.693333pt;}
.y8e_c00260{bottom:539.773333pt;}
.y8d_c00260{bottom:541.693333pt;}
.y8c_c00260{bottom:543.026667pt;}
.y89_c00260{bottom:558.440000pt;}
.y8b_c00260{bottom:559.400000pt;}
.y8a_c00260{bottom:560.360000pt;}
.y85_c00260{bottom:574.640000pt;}
.y87_c00260{bottom:575.026667pt;}
.y81_c00260{bottom:575.773333pt;}
.y86_c00260{bottom:576.560000pt;}
.y84_c00260{bottom:577.306667pt;}
.y82_c00260{bottom:577.693333pt;}
.y83_c00260{bottom:577.893333pt;}
.y88_c00260{bottom:578.640000pt;}
.y7e_c00260{bottom:593.106667pt;}
.y80_c00260{bottom:594.066667pt;}
.y7b_c00260{bottom:594.440000pt;}
.y7c_c00260{bottom:595.026667pt;}
.y7f_c00260{bottom:595.226667pt;}
.y7d_c00260{bottom:596.360000pt;}
.y7a_c00260{bottom:611.773333pt;}
.y79_c00260{bottom:612.560000pt;}
.y78_c00260{bottom:613.693333pt;}
.y74_c00260{bottom:627.773333pt;}
.y75_c00260{bottom:629.106667pt;}
.y73_c00260{bottom:629.693333pt;}
.y76_c00260{bottom:629.893333pt;}
.y77_c00260{bottom:631.026667pt;}
.y6e_c00260{bottom:646.440000pt;}
.y70_c00260{bottom:647.226667pt;}
.y71_c00260{bottom:647.973333pt;}
.y6f_c00260{bottom:648.360000pt;}
.y72_c00260{bottom:648.560000pt;}
.y69_c00260{bottom:662.640000pt;}
.y6b_c00260{bottom:663.026667pt;}
.y6d_c00260{bottom:663.773333pt;}
.y6c_c00260{bottom:664.560000pt;}
.y6a_c00260{bottom:665.306667pt;}
.y68_c00260{bottom:665.693333pt;}
.y65_c00260{bottom:680.360000pt;}
.y63_c00260{bottom:681.106667pt;}
.y66_c00260{bottom:682.066667pt;}
.y62_c00260{bottom:683.026667pt;}
.y64_c00260{bottom:683.226667pt;}
.y67_c00260{bottom:683.973333pt;}
.y61_c00260{bottom:698.440000pt;}
.y60_c00260{bottom:700.360000pt;}
.y5e_c00260{bottom:715.773333pt;}
.y5f_c00260{bottom:717.693333pt;}
.y58_c00260{bottom:733.106667pt;}
.y5b_c00260{bottom:734.440000pt;}
.y5a_c00260{bottom:735.026667pt;}
.y5c_c00260{bottom:735.226667pt;}
.y5d_c00260{bottom:736.360000pt;}
.y59_c00260{bottom:736.373333pt;}
.y57_c00260{bottom:761.306667pt;}
.y56_c00260{bottom:762.066667pt;}
.y51_c00260{bottom:762.266667pt;}
.y53_c00260{bottom:763.026667pt;}
.y52_c00260{bottom:763.973333pt;}
.y54_c00260{bottom:764.173333pt;}
.y55_c00260{bottom:764.933333pt;}
.y50_c00260{bottom:775.400000pt;}
.y4c_c00260{bottom:776.360000pt;}
.y4e_c00260{bottom:776.560000pt;}
.y4f_c00260{bottom:777.306667pt;}
.y4b_c00260{bottom:777.506667pt;}
.y4d_c00260{bottom:778.266667pt;}
.y4a_c00260{bottom:787.600000pt;}
.y47_c00260{bottom:788.360000pt;}
.y48_c00260{bottom:788.560000pt;}
.y49_c00260{bottom:789.306667pt;}
.y45_c00260{bottom:801.693333pt;}
.y41_c00260{bottom:801.893333pt;}
.y44_c00260{bottom:802.066667pt;}
.y46_c00260{bottom:802.640000pt;}
.y42_c00260{bottom:803.600000pt;}
.y43_c00260{bottom:803.973333pt;}
.y40_c00260{bottom:814.066667pt;}
.y3f_c00260{bottom:814.640000pt;}
.y3c_c00260{bottom:815.026667pt;}
.y3d_c00260{bottom:815.226667pt;}
.y3b_c00260{bottom:815.973333pt;}
.y3e_c00260{bottom:816.933333pt;}
.y39_c00260{bottom:827.600000pt;}
.y38_c00260{bottom:828.360000pt;}
.y35_c00260{bottom:828.560000pt;}
.y36_c00260{bottom:829.306667pt;}
.y3a_c00260{bottom:829.693333pt;}
.y37_c00260{bottom:830.266667pt;}
.y34_c00260{bottom:839.973333pt;}
.y33_c00260{bottom:840.733333pt;}
.y31_c00260{bottom:842.840000pt;}
.y32_c00260{bottom:843.600000pt;}
.y2d_c00260{bottom:854.066667pt;}
.y2b_c00260{bottom:854.266667pt;}
.y30_c00260{bottom:855.026667pt;}
.y2c_c00260{bottom:855.973333pt;}
.y2e_c00260{bottom:856.173333pt;}
.y2f_c00260{bottom:856.933333pt;}
.y2a_c00260{bottom:866.640000pt;}
.y26_c00260{bottom:867.026667pt;}
.y27_c00260{bottom:867.973333pt;}
.y29_c00260{bottom:868.360000pt;}
.y28_c00260{bottom:868.560000pt;}
.y25_c00260{bottom:868.933333pt;}
.y24_c00260{bottom:880.360000pt;}
.y22_c00260{bottom:881.306667pt;}
.y23_c00260{bottom:882.266667pt;}
.y1b_c00260{bottom:891.973333pt;}
.y1e_c00260{bottom:892.733333pt;}
.y21_c00260{bottom:893.306667pt;}
.y20_c00260{bottom:894.066667pt;}
.y1c_c00260{bottom:894.640000pt;}
.y1f_c00260{bottom:894.840000pt;}
.y1d_c00260{bottom:895.600000pt;}
.y17_c00260{bottom:905.306667pt;}
.y16_c00260{bottom:906.066667pt;}
.y18_c00260{bottom:906.266667pt;}
.y1a_c00260{bottom:907.026667pt;}
.y15_c00260{bottom:907.973333pt;}
.y14_c00260{bottom:908.173333pt;}
.y19_c00260{bottom:908.933333pt;}
.y13_c00260{bottom:918.640000pt;}
.y12_c00260{bottom:920.360000pt;}
.y11_c00260{bottom:920.560000pt;}
.y10_c00260{bottom:922.266667pt;}
.ya_c00260{bottom:932.360000pt;}
.yb_c00260{bottom:932.933333pt;}
.ye_c00260{bottom:933.306667pt;}
.yf_c00260{bottom:933.693333pt;}
.yd_c00260{bottom:933.893333pt;}
.yc_c00260{bottom:934.640000pt;}
.y4_c00260{bottom:945.693333pt;}
.y9_c00260{bottom:946.066667pt;}
.y6_c00260{bottom:947.026667pt;}
.y3_c00260{bottom:947.600000pt;}
.y5_c00260{bottom:947.973333pt;}
.y7_c00260{bottom:948.173333pt;}
.y8_c00260{bottom:948.933333pt;}
.y2_c00260{bottom:977.693333pt;}
.y1_c00260{bottom:980.560000pt;}
.h8_c00260{height:3.739141pt;}
.h5_c00260{height:14.890964pt;}
.h1_c00260{height:20.466875pt;}
.h3_c00260{height:22.303646pt;}
.h4_c00260{height:27.879557pt;}
.h2_c00260{height:31.618698pt;}
.h6_c00260{height:35.357839pt;}
.h7_c00260{height:39.031380pt;}
.h0_c00260{height:1186.666667pt;}
.w0_c00260{width:782.666667pt;}
.x0_c00260{left:0.000000pt;}
.x3_c00260{left:134.666667pt;}
.xa7_c00260{left:136.000000pt;}
.x26_c00260{left:144.000000pt;}
.x76_c00260{left:145.333333pt;}
.x1a_c00260{left:146.666667pt;}
.x52_c00260{left:148.373333pt;}
.xe9_c00260{left:149.333333pt;}
.xde_c00260{left:150.666667pt;}
.xf8_c00260{left:152.960000pt;}
.x12_c00260{left:159.040000pt;}
.x40_c00260{left:160.373333pt;}
.x1b_c00260{left:162.293333pt;}
.x116_c00260{left:163.626667pt;}
.x53_c00260{left:168.000000pt;}
.x60_c00260{left:169.333333pt;}
.x4_c00260{left:172.000000pt;}
.x8f_c00260{left:173.333333pt;}
.x27_c00260{left:174.293333pt;}
.x102_c00260{left:176.960000pt;}
.x4f_c00260{left:178.293333pt;}
.x77_c00260{left:180.000000pt;}
.xef_c00260{left:181.333333pt;}
.xb0_c00260{left:183.040000pt;}
.x41_c00260{left:184.000000pt;}
.x9f_c00260{left:184.960000pt;}
.x96_c00260{left:186.666667pt;}
.x5c_c00260{left:188.960000pt;}
.xdf_c00260{left:192.373333pt;}
.xd8_c00260{left:193.706667pt;}
.x33_c00260{left:194.666667pt;}
.xa8_c00260{left:196.000000pt;}
.x13_c00260{left:197.333333pt;}
.x28_c00260{left:198.293333pt;}
.x110_c00260{left:199.426667pt;}
.x1c_c00260{left:201.333333pt;}
.xa0_c00260{left:203.040000pt;}
.x87_c00260{left:205.333333pt;}
.x97_c00260{left:206.666667pt;}
.x50_c00260{left:207.626667pt;}
.xd3_c00260{left:209.333333pt;}
.xbf_c00260{left:210.666667pt;}
.x61_c00260{left:213.333333pt;}
.x100_c00260{left:216.000000pt;}
.x90_c00260{left:216.960000pt;}
.x98_c00260{left:219.040000pt;}
.xb1_c00260{left:220.373333pt;}
.xfa_c00260{left:221.706667pt;}
.x14_c00260{left:223.626667pt;}
.x80_c00260{left:226.666667pt;}
.x109_c00260{left:227.626667pt;}
.x1d_c00260{left:228.573333pt;}
.xe0_c00260{left:230.293333pt;}
.x34_c00260{left:232.000000pt;}
.xa9_c00260{left:233.333333pt;}
.x88_c00260{left:234.293333pt;}
.x29_c00260{left:236.000000pt;}
.x5d_c00260{left:238.666667pt;}
.xc0_c00260{left:240.373333pt;}
.xc7_c00260{left:241.333333pt;}
.xb6_c00260{left:243.040000pt;}
.x81_c00260{left:244.000000pt;}
.x51_c00260{left:245.333333pt;}
.x54_c00260{left:247.040000pt;}
.x15_c00260{left:248.000000pt;}
.x5_c00260{left:248.960000pt;}
.x117_c00260{left:252.000000pt;}
.xb2_c00260{left:253.333333pt;}
.x10a_c00260{left:256.373333pt;}
.x99_c00260{left:257.333333pt;}
.xc8_c00260{left:258.293333pt;}
.x111_c00260{left:259.626667pt;}
.x2a_c00260{left:260.960000pt;}
.xce_c00260{left:264.000000pt;}
.x114_c00260{left:264.960000pt;}
.x42_c00260{left:266.666667pt;}
.xb7_c00260{left:268.373333pt;}
.xd9_c00260{left:269.706667pt;}
.x35_c00260{left:271.040000pt;}
.x101_c00260{left:272.000000pt;}
.xf0_c00260{left:273.333333pt;}
.x1e_c00260{left:274.293333pt;}
.x6f_c00260{left:276.000000pt;}
.x6_c00260{left:276.960000pt;}
.x16_c00260{left:282.666667pt;}
.x2b_c00260{left:284.000000pt;}
.x78_c00260{left:286.666667pt;}
.x55_c00260{left:288.760000pt;}
.xe6_c00260{left:290.666667pt;}
.x62_c00260{left:292.000000pt;}
.xb8_c00260{left:293.333333pt;}
.x7_c00260{left:294.666667pt;}
.x79_c00260{left:296.000000pt;}
.x89_c00260{left:297.333333pt;}
.x6b_c00260{left:299.426667pt;}
.x49_c00260{left:301.333333pt;}
.x1f_c00260{left:304.000000pt;}
.xe3_c00260{left:305.906667pt;}
.xc1_c00260{left:307.040000pt;}
.xfb_c00260{left:308.000000pt;}
.x17_c00260{left:309.706667pt;}
.x5e_c00260{left:311.626667pt;}
.x36_c00260{left:314.293333pt;}
.x9a_c00260{left:316.373333pt;}
.x20_c00260{left:317.333333pt;}
.x4a_c00260{left:318.666667pt;}
.xf5_c00260{left:320.000000pt;}
.x2c_c00260{left:321.706667pt;}
.x112_c00260{left:323.626667pt;}
.x106_c00260{left:326.666667pt;}
.x43_c00260{left:328.000000pt;}
.x2d_c00260{left:330.666667pt;}
.xa1_c00260{left:332.000000pt;}
.xaa_c00260{left:333.333333pt;}
.x82_c00260{left:335.040000pt;}
.x6c_c00260{left:336.000000pt;}
.xe7_c00260{left:336.960000pt;}
.x8a_c00260{left:338.666667pt;}
.xcf_c00260{left:340.000000pt;}
.x63_c00260{left:341.333333pt;}
.x8_c00260{left:343.626667pt;}
.xea_c00260{left:346.666667pt;}
.x18_c00260{left:347.626667pt;}
.x5f_c00260{left:349.333333pt;}
.x70_c00260{left:350.666667pt;}
.x7a_c00260{left:352.000000pt;}
.x21_c00260{left:352.960000pt;}
.x103_c00260{left:355.800000pt;}
.x91_c00260{left:357.706667pt;}
.x37_c00260{left:359.040000pt;}
.xe8_c00260{left:360.000000pt;}
.x1_c00260{left:360.960000pt;}
.xc9_c00260{left:362.666667pt;}
.xda_c00260{left:365.333333pt;}
.x6d_c00260{left:367.626667pt;}
.x64_c00260{left:371.040000pt;}
.x4b_c00260{left:372.000000pt;}
.x7b_c00260{left:373.333333pt;}
.x38_c00260{left:374.666667pt;}
.x2e_c00260{left:375.626667pt;}
.x44_c00260{left:376.960000pt;}
.xb3_c00260{left:381.333333pt;}
.xdb_c00260{left:383.040000pt;}
.xc2_c00260{left:384.000000pt;}
.x45_c00260{left:385.333333pt;}
.x65_c00260{left:388.000000pt;}
.xa2_c00260{left:391.040000pt;}
.x6e_c00260{left:392.000000pt;}
.x9_c00260{left:394.293333pt;}
.x71_c00260{left:397.333333pt;}
.x39_c00260{left:398.666667pt;}
.x9b_c00260{left:400.373333pt;}
.xab_c00260{left:402.666667pt;}
.xd0_c00260{left:404.373333pt;}
.xa_c00260{left:405.333333pt;}
.x4c_c00260{left:406.666667pt;}
.x83_c00260{left:408.000000pt;}
.xd4_c00260{left:409.333333pt;}
.x66_c00260{left:411.040000pt;}
.xeb_c00260{left:413.706667pt;}
.xe4_c00260{left:414.666667pt;}
.x113_c00260{left:416.373333pt;}
.xb9_c00260{left:418.666667pt;}
.x19_c00260{left:420.000000pt;}
.x84_c00260{left:422.293333pt;}
.xa3_c00260{left:425.333333pt;}
.x46_c00260{left:426.666667pt;}
.x7c_c00260{left:427.626667pt;}
.x104_c00260{left:429.706667pt;}
.x10b_c00260{left:430.666667pt;}
.x9c_c00260{left:432.373333pt;}
.x3a_c00260{left:433.333333pt;}
.xf9_c00260{left:435.040000pt;}
.xfc_c00260{left:436.000000pt;}
.xd5_c00260{left:437.333333pt;}
.xb_c00260{left:438.293333pt;}
.x8b_c00260{left:440.000000pt;}
.x2f_c00260{left:440.960000pt;}
.xc3_c00260{left:442.666667pt;}
.xdc_c00260{left:444.000000pt;}
.xf1_c00260{left:447.040000pt;}
.x47_c00260{left:450.293333pt;}
.x7d_c00260{left:451.626667pt;}
.x22_c00260{left:453.333333pt;}
.xba_c00260{left:454.666667pt;}
.x56_c00260{left:455.626667pt;}
.xb4_c00260{left:457.333333pt;}
.x72_c00260{left:460.000000pt;}
.x8c_c00260{left:461.333333pt;}
.xc_c00260{left:463.626667pt;}
.xec_c00260{left:464.960000pt;}
.x92_c00260{left:468.000000pt;}
.xca_c00260{left:469.333333pt;}
.x67_c00260{left:471.240000pt;}
.xbb_c00260{left:472.373333pt;}
.xc4_c00260{left:474.666667pt;}
.x118_c00260{left:476.000000pt;}
.x4d_c00260{left:477.906667pt;}
.x23_c00260{left:481.333333pt;}
.xa4_c00260{left:482.666667pt;}
.x7e_c00260{left:484.000000pt;}
.xc5_c00260{left:487.040000pt;}
.x48_c00260{left:488.000000pt;}
.x57_c00260{left:492.373333pt;}
.xdd_c00260{left:495.040000pt;}
.xed_c00260{left:496.000000pt;}
.xa5_c00260{left:496.960000pt;}
.xac_c00260{left:498.666667pt;}
.x3b_c00260{left:501.333333pt;}
.xd_c00260{left:504.000000pt;}
.xe5_c00260{left:505.333333pt;}
.xf6_c00260{left:506.293333pt;}
.x58_c00260{left:508.960000pt;}
.x68_c00260{left:510.293333pt;}
.xd1_c00260{left:512.000000pt;}
.x30_c00260{left:514.666667pt;}
.x73_c00260{left:517.333333pt;}
.x93_c00260{left:518.293333pt;}
.x10c_c00260{left:520.000000pt;}
.xf2_c00260{left:523.626667pt;}
.x107_c00260{left:528.000000pt;}
.xe_c00260{left:531.040000pt;}
.x59_c00260{left:532.000000pt;}
.x7f_c00260{left:533.333333pt;}
.x8d_c00260{left:535.040000pt;}
.xbc_c00260{left:537.333333pt;}
.xe1_c00260{left:538.666667pt;}
.x24_c00260{left:540.000000pt;}
.xcb_c00260{left:541.706667pt;}
.x3c_c00260{left:542.666667pt;}
.x31_c00260{left:545.706667pt;}
.x69_c00260{left:546.666667pt;}
.x4e_c00260{left:548.000000pt;}
.xfd_c00260{left:551.040000pt;}
.x85_c00260{left:552.000000pt;}
.xd6_c00260{left:553.333333pt;}
.x3d_c00260{left:554.666667pt;}
.xf_c00260{left:556.000000pt;}
.x115_c00260{left:557.333333pt;}
.xf3_c00260{left:562.666667pt;}
.x10d_c00260{left:564.000000pt;}
.x5a_c00260{left:565.706667pt;}
.x32_c00260{left:568.000000pt;}
.xad_c00260{left:568.960000pt;}
.x9d_c00260{left:570.666667pt;}
.xf7_c00260{left:573.333333pt;}
.x94_c00260{left:574.293333pt;}
.x74_c00260{left:577.706667pt;}
.x5b_c00260{left:580.573333pt;}
.xa6_c00260{left:584.960000pt;}
.x3e_c00260{left:586.293333pt;}
.xd2_c00260{left:588.000000pt;}
.xbd_c00260{left:589.333333pt;}
.x86_c00260{left:590.293333pt;}
.x6a_c00260{left:592.373333pt;}
.x10_c00260{left:594.666667pt;}
.x108_c00260{left:596.000000pt;}
.xfe_c00260{left:596.960000pt;}
.xb5_c00260{left:599.040000pt;}
.x105_c00260{left:600.000000pt;}
.xcc_c00260{left:601.333333pt;}
.x25_c00260{left:602.293333pt;}
.xd7_c00260{left:605.706667pt;}
.x11_c00260{left:606.666667pt;}
.xee_c00260{left:608.000000pt;}
.x75_c00260{left:609.333333pt;}
.x119_c00260{left:611.040000pt;}
.x8e_c00260{left:612.373333pt;}
.x3f_c00260{left:613.706667pt;}
.xff_c00260{left:614.666667pt;}
.xbe_c00260{left:619.040000pt;}
.x10e_c00260{left:622.666667pt;}
.xae_c00260{left:623.626667pt;}
.x2_c00260{left:624.960000pt;}
.xf4_c00260{left:627.626667pt;}
.x9e_c00260{left:629.706667pt;}
.xcd_c00260{left:630.666667pt;}
.xe2_c00260{left:633.133333pt;}
.x95_c00260{left:638.666667pt;}
.xc6_c00260{left:640.000000pt;}
.xaf_c00260{left:642.666667pt;}
.x10f_c00260{left:644.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_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_c32183c668579a043a44071d.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mba_c00261{transform:matrix(0.329755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329755,0.000000,0.000000,0.250000,0,0);}
.mb1_c00261{transform:matrix(0.347866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347866,0.000000,0.000000,0.250000,0,0);}
.m30_c00261{transform:matrix(0.354202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354202,0.000000,0.000000,0.250000,0,0);}
.m5d_c00261{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.ma1_c00261{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m26_c00261{transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);}
.m1c_c00261{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m1a_c00261{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mb0_c00261{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m10_c00261{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m9f_c00261{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m6e_c00261{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.mcd_c00261{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mbb_c00261{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mae_c00261{transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);}
.m38_c00261{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mf_c00261{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m89_c00261{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m7b_c00261{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m20_c00261{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m82_c00261{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m77_c00261{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m3d_c00261{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mc5_c00261{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.m3e_c00261{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.mbe_c00261{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m9a_c00261{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mb_c00261{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m8e_c00261{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m48_c00261{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m2d_c00261{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m43_c00261{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m2b_c00261{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m7e_c00261{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m25_c00261{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.ma7_c00261{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.maa_c00261{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m60_c00261{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m86_c00261{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m63_c00261{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m5c_c00261{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.ma_c00261{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m57_c00261{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m34_c00261{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m2e_c00261{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m8_c00261{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m5f_c00261{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mad_c00261{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.mc9_c00261{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m4d_c00261{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mc0_c00261{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m50_c00261{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mc_c00261{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m8b_c00261{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.ma8_c00261{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m40_c00261{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m91_c00261{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m19_c00261{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.mc2_c00261{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.md4_c00261{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.mb8_c00261{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m6f_c00261{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m23_c00261{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.m85_c00261{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m65_c00261{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.mbd_c00261{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m59_c00261{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.ma4_c00261{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);}
.m6b_c00261{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m33_c00261{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.mbf_c00261{transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);}
.mcb_c00261{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m9e_c00261{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m7a_c00261{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.m4c_c00261{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.mc6_c00261{transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);}
.m6c_c00261{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m7_c00261{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m81_c00261{transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);}
.m8c_c00261{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m97_c00261{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m3c_c00261{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.m21_c00261{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m69_c00261{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.ma0_c00261{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m17_c00261{transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);}
.m56_c00261{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m88_c00261{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.mc8_c00261{transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);}
.m44_c00261{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m32_c00261{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_c00261{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.mb9_c00261{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m1e_c00261{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m4e_c00261{transform:matrix(0.510504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510504,0.000000,0.000000,0.250000,0,0);}
.m1_c00261{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m53_c00261{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.md0_c00261{transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);}
.m58_c00261{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m94_c00261{transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);}
.m96_c00261{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m61_c00261{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m41_c00261{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m1b_c00261{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m8f_c00261{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m18_c00261{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m9b_c00261{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m22_c00261{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m55_c00261{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m16_c00261{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m3a_c00261{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m2_c00261{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m71_c00261{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m1f_c00261{transform:matrix(0.527365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527365,0.000000,0.000000,0.250000,0,0);}
.m79_c00261{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mcc_c00261{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m45_c00261{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m70_c00261{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m5_c00261{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m9d_c00261{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m7d_c00261{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m11_c00261{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m6a_c00261{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m83_c00261{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m27_c00261{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m3b_c00261{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m2f_c00261{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mb6_c00261{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m6_c00261{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m4_c00261{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m52_c00261{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.ma6_c00261{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.md5_c00261{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m54_c00261{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m51_c00261{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mbc_c00261{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mc1_c00261{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m49_c00261{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.ma9_c00261{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m93_c00261{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.me_c00261{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.maf_c00261{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m98_c00261{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m4b_c00261{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.mc7_c00261{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mce_c00261{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m42_c00261{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mc4_c00261{transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);}
.m36_c00261{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m3_c00261{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m7c_c00261{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m46_c00261{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m9c_c00261{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);}
.m5e_c00261{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m8d_c00261{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mab_c00261{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m78_c00261{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mac_c00261{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.m9_c00261{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.mcf_c00261{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m2a_c00261{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m15_c00261{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.md_c00261{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m1d_c00261{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.mb3_c00261{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m64_c00261{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m68_c00261{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m66_c00261{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m74_c00261{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m87_c00261{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.m24_c00261{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.md2_c00261{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.ma2_c00261{transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);}
.m13_c00261{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.md1_c00261{transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);}
.m80_c00261{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m75_c00261{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m12_c00261{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mb7_c00261{transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);}
.ma5_c00261{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.m8a_c00261{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m4f_c00261{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m90_c00261{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.mb5_c00261{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.m7f_c00261{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.ma3_c00261{transform:matrix(0.622925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622925,0.000000,0.000000,0.250000,0,0);}
.m0_c00261{transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);}
.m6d_c00261{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);}
.m99_c00261{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);}
.m95_c00261{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m73_c00261{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m92_c00261{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m37_c00261{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m2c_c00261{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.md3_c00261{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.mb2_c00261{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.m47_c00261{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m28_c00261{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.mca_c00261{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m72_c00261{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m29_c00261{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m4a_c00261{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m35_c00261{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m5b_c00261{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m62_c00261{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m31_c00261{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m5a_c00261{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m39_c00261{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m76_c00261{transform:matrix(0.778846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.778846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.778846,0.000000,0.000000,0.250000,0,0);}
.m67_c00261{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.m3f_c00261{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.mc3_c00261{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m84_c00261{transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);}
.mb4_c00261{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.v0_c00261{vertical-align:0.000000px;}
.v1_c00261{vertical-align:6.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;}
}
.ws2_c00261{word-spacing:-16.889280px;}
.ws0_c00261{word-spacing:-2.327403px;}
.ws3_c00261{word-spacing:0.000000px;}
.ws1_c00261{word-spacing:1.330038px;}
._0_c00261{width:4.705196px;}
.fc0_c00261{color:transparent;}
.fs7_c00261{font-size:3.420000px;}
.fs5_c00261{font-size:18.720000px;}
.fs0_c00261{font-size:20.400000px;}
.fs1_c00261{font-size:25.500000px;}
.fs2_c00261{font-size:28.920000px;}
.fs4_c00261{font-size:32.340000px;}
.fs3_c00261{font-size:35.700000px;}
.fs6_c00261{font-size:39.120000px;}
.y0_c00261{bottom:0.000000px;}
.yb5_c00261{bottom:251.745000px;}
.yb8_c00261{bottom:253.050000px;}
.yb6_c00261{bottom:253.245000px;}
.yb3_c00261{bottom:253.905000px;}
.yb4_c00261{bottom:254.970000px;}
.yb7_c00261{bottom:255.405000px;}
.yae_c00261{bottom:272.325000px;}
.yaf_c00261{bottom:272.745000px;}
.yad_c00261{bottom:273.405000px;}
.yb0_c00261{bottom:273.630000px;}
.yb2_c00261{bottom:274.470000px;}
.yb1_c00261{bottom:274.905000px;}
.yac_c00261{bottom:290.745000px;}
.yab_c00261{bottom:292.245000px;}
.ya7_c00261{bottom:292.905000px;}
.yaa_c00261{bottom:293.130000px;}
.ya8_c00261{bottom:293.325000px;}
.ya9_c00261{bottom:294.405000px;}
.ya4_c00261{bottom:311.745000px;}
.ya5_c00261{bottom:312.825000px;}
.ya3_c00261{bottom:313.905000px;}
.ya6_c00261{bottom:314.970000px;}
.y9f_c00261{bottom:331.245000px;}
.ya1_c00261{bottom:332.325000px;}
.ya0_c00261{bottom:333.405000px;}
.ya2_c00261{bottom:334.470000px;}
.y9e_c00261{bottom:349.905000px;}
.y9c_c00261{bottom:350.745000px;}
.y9d_c00261{bottom:352.245000px;}
.y99_c00261{bottom:352.905000px;}
.y9a_c00261{bottom:353.130000px;}
.y98_c00261{bottom:353.970000px;}
.y9b_c00261{bottom:354.405000px;}
.y92_c00261{bottom:370.245000px;}
.y94_c00261{bottom:371.745000px;}
.y97_c00261{bottom:372.630000px;}
.y96_c00261{bottom:372.825000px;}
.y93_c00261{bottom:373.470000px;}
.y95_c00261{bottom:373.905000px;}
.y8d_c00261{bottom:389.745000px;}
.y8e_c00261{bottom:391.245000px;}
.y91_c00261{bottom:392.130000px;}
.y90_c00261{bottom:392.970000px;}
.y8f_c00261{bottom:393.405000px;}
.y8a_c00261{bottom:409.680000px;}
.y8b_c00261{bottom:410.745000px;}
.y8c_c00261{bottom:412.905000px;}
.y86_c00261{bottom:430.245000px;}
.y88_c00261{bottom:432.405000px;}
.y89_c00261{bottom:433.470000px;}
.y87_c00261{bottom:433.920000px;}
.y83_c00261{bottom:453.825000px;}
.y82_c00261{bottom:454.905000px;}
.y84_c00261{bottom:455.130000px;}
.y81_c00261{bottom:455.970000px;}
.y85_c00261{bottom:457.050000px;}
.y80_c00261{bottom:473.325000px;}
.y7e_c00261{bottom:473.970000px;}
.y7f_c00261{bottom:474.825000px;}
.y7d_c00261{bottom:476.970000px;}
.y7a_c00261{bottom:497.745000px;}
.y7c_c00261{bottom:499.245000px;}
.y7b_c00261{bottom:499.905000px;}
.y79_c00261{bottom:529.905000px;}
.y78_c00261{bottom:530.970000px;}
.y77_c00261{bottom:567.825000px;}
.y75_c00261{bottom:568.245000px;}
.y76_c00261{bottom:570.405000px;}
.y74_c00261{bottom:570.825000px;}
.y71_c00261{bottom:587.745000px;}
.y73_c00261{bottom:589.470000px;}
.y70_c00261{bottom:589.905000px;}
.y72_c00261{bottom:590.130000px;}
.y6c_c00261{bottom:606.405000px;}
.y6f_c00261{bottom:607.245000px;}
.y69_c00261{bottom:608.745000px;}
.y6d_c00261{bottom:609.405000px;}
.y6e_c00261{bottom:609.630000px;}
.y6a_c00261{bottom:610.470000px;}
.y6b_c00261{bottom:610.905000px;}
.y68_c00261{bottom:625.905000px;}
.y67_c00261{bottom:626.970000px;}
.y63_c00261{bottom:628.245000px;}
.y65_c00261{bottom:629.130000px;}
.y66_c00261{bottom:629.970000px;}
.y64_c00261{bottom:630.405000px;}
.y62_c00261{bottom:645.405000px;}
.y5f_c00261{bottom:647.745000px;}
.y60_c00261{bottom:649.050000px;}
.y61_c00261{bottom:649.905000px;}
.y5c_c00261{bottom:667.245000px;}
.y5d_c00261{bottom:668.130000px;}
.y5e_c00261{bottom:668.970000px;}
.y5b_c00261{bottom:669.405000px;}
.y58_c00261{bottom:686.745000px;}
.y5a_c00261{bottom:686.970000px;}
.y59_c00261{bottom:688.905000px;}
.y55_c00261{bottom:706.245000px;}
.y53_c00261{bottom:707.325000px;}
.y54_c00261{bottom:708.405000px;}
.y56_c00261{bottom:708.630000px;}
.y57_c00261{bottom:709.470000px;}
.y50_c00261{bottom:725.745000px;}
.y4f_c00261{bottom:727.905000px;}
.y52_c00261{bottom:728.130000px;}
.y51_c00261{bottom:728.970000px;}
.y4d_c00261{bottom:745.245000px;}
.y4a_c00261{bottom:745.680000px;}
.y4e_c00261{bottom:746.325000px;}
.y4b_c00261{bottom:746.745000px;}
.y48_c00261{bottom:747.405000px;}
.y4c_c00261{bottom:747.630000px;}
.y49_c00261{bottom:748.905000px;}
.y45_c00261{bottom:766.245000px;}
.y47_c00261{bottom:767.130000px;}
.y46_c00261{bottom:767.970000px;}
.y44_c00261{bottom:768.405000px;}
.y41_c00261{bottom:787.905000px;}
.y42_c00261{bottom:788.130000px;}
.y43_c00261{bottom:788.970000px;}
.y3e_c00261{bottom:805.245000px;}
.y3f_c00261{bottom:806.325000px;}
.y40_c00261{bottom:806.550000px;}
.y3d_c00261{bottom:807.405000px;}
.y38_c00261{bottom:824.745000px;}
.y3b_c00261{bottom:825.825000px;}
.y37_c00261{bottom:826.245000px;}
.y3c_c00261{bottom:826.470000px;}
.y39_c00261{bottom:826.905000px;}
.y3a_c00261{bottom:827.130000px;}
.y35_c00261{bottom:844.680000px;}
.y31_c00261{bottom:845.745000px;}
.y36_c00261{bottom:846.405000px;}
.y32_c00261{bottom:846.630000px;}
.y34_c00261{bottom:847.470000px;}
.y33_c00261{bottom:847.905000px;}
.y2e_c00261{bottom:862.905000px;}
.y2f_c00261{bottom:865.245000px;}
.y30_c00261{bottom:865.905000px;}
.y2c_c00261{bottom:867.405000px;}
.y2d_c00261{bottom:868.470000px;}
.y29_c00261{bottom:883.245000px;}
.y27_c00261{bottom:884.745000px;}
.y28_c00261{bottom:885.825000px;}
.y2a_c00261{bottom:886.470000px;}
.y26_c00261{bottom:886.905000px;}
.y2b_c00261{bottom:887.970000px;}
.y22_c00261{bottom:901.905000px;}
.y24_c00261{bottom:904.245000px;}
.y23_c00261{bottom:905.130000px;}
.y20_c00261{bottom:905.325000px;}
.y25_c00261{bottom:905.970000px;}
.y21_c00261{bottom:906.405000px;}
.y1d_c00261{bottom:922.905000px;}
.y1c_c00261{bottom:923.745000px;}
.y1e_c00261{bottom:925.470000px;}
.y1b_c00261{bottom:925.905000px;}
.y1f_c00261{bottom:926.130000px;}
.y19_c00261{bottom:943.245000px;}
.y18_c00261{bottom:945.405000px;}
.y1a_c00261{bottom:945.630000px;}
.y17_c00261{bottom:946.470000px;}
.y16_c00261{bottom:962.745000px;}
.y15_c00261{bottom:963.825000px;}
.y13_c00261{bottom:964.905000px;}
.y14_c00261{bottom:965.130000px;}
.y12_c00261{bottom:982.245000px;}
.y10_c00261{bottom:984.405000px;}
.y11_c00261{bottom:985.470000px;}
.ye_c00261{bottom:1001.745000px;}
.yd_c00261{bottom:1003.905000px;}
.yc_c00261{bottom:1004.325000px;}
.yf_c00261{bottom:1005.405000px;}
.yb_c00261{bottom:1021.245000px;}
.ya_c00261{bottom:1022.325000px;}
.y9_c00261{bottom:1023.405000px;}
.y8_c00261{bottom:1041.825000px;}
.y6_c00261{bottom:1042.245000px;}
.y5_c00261{bottom:1042.905000px;}
.y7_c00261{bottom:1043.970000px;}
.y4_c00261{bottom:1061.745000px;}
.y3_c00261{bottom:1063.905000px;}
.y2_c00261{bottom:1100.970000px;}
.y1_c00261{bottom:1102.050000px;}
.h8_c00261{height:4.206533px;}
.h6_c00261{height:23.025234px;}
.h1_c00261{height:25.091602px;}
.h2_c00261{height:31.364502px;}
.h3_c00261{height:35.571035px;}
.h5_c00261{height:39.777568px;}
.h9_c00261{height:41.571035px;}
.h4_c00261{height:43.910303px;}
.h7_c00261{height:48.116836px;}
.h0_c00261{height:1335.000000px;}
.w0_c00261{width:880.500000px;}
.x0_c00261{left:0.000000px;}
.xde_c00261{left:150.420000px;}
.x84_c00261{left:151.500000px;}
.x27_c00261{left:153.000000px;}
.x2_c00261{left:154.080000px;}
.xf4_c00261{left:163.080000px;}
.xd3_c00261{left:165.000000px;}
.xba_c00261{left:166.080000px;}
.x8d_c00261{left:168.000000px;}
.x49_c00261{left:169.500000px;}
.x1a_c00261{left:172.920000px;}
.xf1_c00261{left:175.920000px;}
.x60_c00261{left:180.420000px;}
.xdf_c00261{left:186.420000px;}
.x38_c00261{left:187.500000px;}
.x92_c00261{left:189.000000px;}
.xa2_c00261{left:193.920000px;}
.x6b_c00261{left:195.420000px;}
.xe5_c00261{left:196.500000px;}
.x1b_c00261{left:198.420000px;}
.x8e_c00261{left:199.500000px;}
.x100_c00261{left:201.000000px;}
.x41_c00261{left:202.500000px;}
.x74_c00261{left:204.000000px;}
.x85_c00261{left:205.500000px;}
.xd6_c00261{left:207.420000px;}
.x2f_c00261{left:208.500000px;}
.x4a_c00261{left:211.500000px;}
.xc4_c00261{left:216.000000px;}
.xe6_c00261{left:219.000000px;}
.xbb_c00261{left:220.080000px;}
.x3_c00261{left:221.580000px;}
.x99_c00261{left:225.420000px;}
.x28_c00261{left:226.920000px;}
.xda_c00261{left:229.500000px;}
.xaf_c00261{left:231.000000px;}
.x1c_c00261{left:232.080000px;}
.x54_c00261{left:233.580000px;}
.x61_c00261{left:237.000000px;}
.x89_c00261{left:238.080000px;}
.x39_c00261{left:240.000000px;}
.x30_c00261{left:241.500000px;}
.xc9_c00261{left:247.500000px;}
.xf5_c00261{left:250.920000px;}
.xe_c00261{left:252.000000px;}
.x4_c00261{left:253.920000px;}
.x42_c00261{left:255.000000px;}
.xea_c00261{left:258.000000px;}
.x31_c00261{left:259.920000px;}
.x29_c00261{left:262.080000px;}
.x93_c00261{left:264.000000px;}
.x75_c00261{left:267.420000px;}
.x8a_c00261{left:268.500000px;}
.xa3_c00261{left:271.080000px;}
.xeb_c00261{left:273.000000px;}
.x4b_c00261{left:276.000000px;}
.x1d_c00261{left:277.080000px;}
.xb6_c00261{left:279.420000px;}
.xf6_c00261{left:280.500000px;}
.x62_c00261{left:283.920000px;}
.xe0_c00261{left:285.000000px;}
.x32_c00261{left:286.500000px;}
.xcf_c00261{left:288.000000px;}
.x43_c00261{left:291.000000px;}
.xf2_c00261{left:292.920000px;}
.x55_c00261{left:295.080000px;}
.x86_c00261{left:296.145000px;}
.x6c_c00261{left:298.920000px;}
.x76_c00261{left:303.000000px;}
.xb0_c00261{left:304.080000px;}
.x8b_c00261{left:310.080000px;}
.xa9_c00261{left:311.580000px;}
.xf_c00261{left:313.500000px;}
.xca_c00261{left:314.580000px;}
.x7e_c00261{left:316.920000px;}
.xdb_c00261{left:319.080000px;}
.x5_c00261{left:321.420000px;}
.x44_c00261{left:325.920000px;}
.x4c_c00261{left:327.000000px;}
.xfb_c00261{left:328.500000px;}
.xd1_c00261{left:331.080000px;}
.x10_c00261{left:332.580000px;}
.x9a_c00261{left:334.920000px;}
.xf7_c00261{left:336.000000px;}
.x6d_c00261{left:337.500000px;}
.x94_c00261{left:338.580000px;}
.x56_c00261{left:340.080000px;}
.x3a_c00261{left:342.000000px;}
.xd4_c00261{left:346.500000px;}
.x1e_c00261{left:347.580000px;}
.x6_c00261{left:349.080000px;}
.x45_c00261{left:351.420000px;}
.x63_c00261{left:352.500000px;}
.x77_c00261{left:354.420000px;}
.x9b_c00261{left:361.080000px;}
.x4d_c00261{left:362.580000px;}
.x6e_c00261{left:364.500000px;}
.xd0_c00261{left:366.000000px;}
.xb1_c00261{left:369.000000px;}
.x33_c00261{left:372.420000px;}
.xd7_c00261{left:373.500000px;}
.x64_c00261{left:375.420000px;}
.x1f_c00261{left:377.145000px;}
.xc5_c00261{left:378.420000px;}
.xaa_c00261{left:384.000000px;}
.x46_c00261{left:385.500000px;}
.x87_c00261{left:387.000000px;}
.xbc_c00261{left:388.500000px;}
.xcb_c00261{left:390.420000px;}
.x9c_c00261{left:391.500000px;}
.x11_c00261{left:392.580000px;}
.x7f_c00261{left:394.500000px;}
.x57_c00261{left:397.500000px;}
.xce_c00261{left:398.580000px;}
.xfc_c00261{left:400.500000px;}
.x7_c00261{left:402.000000px;}
.xc6_c00261{left:406.500000px;}
.x47_c00261{left:408.420000px;}
.x80_c00261{left:409.500000px;}
.x1_c00261{left:411.000000px;}
.x58_c00261{left:412.920000px;}
.xcc_c00261{left:414.420000px;}
.x3b_c00261{left:417.420000px;}
.x8_c00261{left:418.920000px;}
.x34_c00261{left:421.080000px;}
.xc1_c00261{left:424.500000px;}
.xb2_c00261{left:427.920000px;}
.xab_c00261{left:430.920000px;}
.x59_c00261{left:432.000000px;}
.xfd_c00261{left:433.500000px;}
.x95_c00261{left:435.000000px;}
.x48_c00261{left:436.500000px;}
.x8f_c00261{left:438.000000px;}
.x12_c00261{left:439.500000px;}
.xcd_c00261{left:441.000000px;}
.x4e_c00261{left:442.500000px;}
.x9d_c00261{left:445.920000px;}
.xd2_c00261{left:448.500000px;}
.x8c_c00261{left:457.920000px;}
.x2a_c00261{left:459.000000px;}
.x4f_c00261{left:460.500000px;}
.xfe_c00261{left:462.000000px;}
.x6f_c00261{left:465.420000px;}
.x3c_c00261{left:468.000000px;}
.x5a_c00261{left:469.920000px;}
.x65_c00261{left:471.420000px;}
.x13_c00261{left:474.000000px;}
.x88_c00261{left:475.920000px;}
.xa4_c00261{left:477.420000px;}
.xbd_c00261{left:480.000000px;}
.xff_c00261{left:483.420000px;}
.xe1_c00261{left:484.500000px;}
.x20_c00261{left:486.000000px;}
.x78_c00261{left:487.500000px;}
.xb3_c00261{left:490.500000px;}
.xb7_c00261{left:492.420000px;}
.x3d_c00261{left:496.500000px;}
.x66_c00261{left:498.000000px;}
.x9_c00261{left:499.500000px;}
.xac_c00261{left:501.000000px;}
.x50_c00261{left:502.080000px;}
.x96_c00261{left:504.000000px;}
.xa5_c00261{left:505.500000px;}
.x79_c00261{left:507.645000px;}
.xd5_c00261{left:510.420000px;}
.x21_c00261{left:511.500000px;}
.x70_c00261{left:513.420000px;}
.x67_c00261{left:516.000000px;}
.x5b_c00261{left:519.000000px;}
.xf8_c00261{left:520.500000px;}
.x35_c00261{left:521.580000px;}
.xc2_c00261{left:523.080000px;}
.x81_c00261{left:525.000000px;}
.x2b_c00261{left:526.500000px;}
.xb8_c00261{left:528.420000px;}
.x5c_c00261{left:534.420000px;}
.xad_c00261{left:538.500000px;}
.xc3_c00261{left:541.500000px;}
.xd8_c00261{left:543.000000px;}
.x97_c00261{left:544.500000px;}
.x14_c00261{left:546.420000px;}
.xb9_c00261{left:547.500000px;}
.x9e_c00261{left:550.500000px;}
.xee_c00261{left:552.000000px;}
.xa_c00261{left:553.500000px;}
.x51_c00261{left:556.920000px;}
.x22_c00261{left:558.420000px;}
.xa6_c00261{left:562.500000px;}
.x2c_c00261{left:563.580000px;}
.x68_c00261{left:565.500000px;}
.xc7_c00261{left:568.920000px;}
.xbe_c00261{left:570.000000px;}
.x7a_c00261{left:571.080000px;}
.xb_c00261{left:577.920000px;}
.xef_c00261{left:579.000000px;}
.x15_c00261{left:580.920000px;}
.x90_c00261{left:583.500000px;}
.xe7_c00261{left:586.500000px;}
.x9f_c00261{left:588.000000px;}
.xb4_c00261{left:589.500000px;}
.x23_c00261{left:591.420000px;}
.x82_c00261{left:595.080000px;}
.xc8_c00261{left:597.000000px;}
.x71_c00261{left:598.920000px;}
.xd9_c00261{left:600.000000px;}
.x3e_c00261{left:601.275000px;}
.xc_c00261{left:604.080000px;}
.xdc_c00261{left:607.275000px;}
.x16_c00261{left:608.580000px;}
.xe2_c00261{left:612.420000px;}
.x52_c00261{left:615.420000px;}
.x7b_c00261{left:618.000000px;}
.xf9_c00261{left:619.920000px;}
.x24_c00261{left:621.000000px;}
.xa0_c00261{left:623.580000px;}
.x72_c00261{left:625.920000px;}
.x5d_c00261{left:628.920000px;}
.xbf_c00261{left:630.420000px;}
.xf0_c00261{left:631.920000px;}
.xe8_c00261{left:633.000000px;}
.xdd_c00261{left:637.500000px;}
.x2d_c00261{left:638.580000px;}
.x3f_c00261{left:642.420000px;}
.x36_c00261{left:643.500000px;}
.x69_c00261{left:645.000000px;}
.xf3_c00261{left:647.580000px;}
.x98_c00261{left:652.080000px;}
.xec_c00261{left:658.080000px;}
.x17_c00261{left:661.500000px;}
.x40_c00261{left:663.000000px;}
.x83_c00261{left:664.500000px;}
.xe3_c00261{left:666.420000px;}
.x6a_c00261{left:667.500000px;}
.x91_c00261{left:670.500000px;}
.xb5_c00261{left:671.580000px;}
.x25_c00261{left:673.500000px;}
.x5e_c00261{left:675.420000px;}
.xc0_c00261{left:677.580000px;}
.x18_c00261{left:679.500000px;}
.xae_c00261{left:682.500000px;}
.x7c_c00261{left:684.420000px;}
.x37_c00261{left:687.000000px;}
.xa7_c00261{left:688.500000px;}
.x53_c00261{left:690.000000px;}
.xed_c00261{left:691.500000px;}
.x101_c00261{left:694.080000px;}
.xa1_c00261{left:697.500000px;}
.xe9_c00261{left:700.920000px;}
.x19_c00261{left:702.000000px;}
.x73_c00261{left:704.580000px;}
.xd_c00261{left:706.080000px;}
.xa8_c00261{left:708.420000px;}
.x26_c00261{left:709.920000px;}
.x2e_c00261{left:712.500000px;}
.x5f_c00261{left:714.000000px;}
.xfa_c00261{left:715.500000px;}
.x7d_c00261{left:720.000000px;}
.xe4_c00261{left:723.000000px;}
@media print{
.v0_c00261{vertical-align:0.000000pt;}
.v1_c00261{vertical-align:5.333333pt;}
.ls0_c00261{letter-spacing:0.000000pt;}
.ws2_c00261{word-spacing:-15.012693pt;}
.ws0_c00261{word-spacing:-2.068803pt;}
.ws3_c00261{word-spacing:0.000000pt;}
.ws1_c00261{word-spacing:1.182256pt;}
._0_c00261{width:4.182397pt;}
.fs7_c00261{font-size:3.040000pt;}
.fs5_c00261{font-size:16.640000pt;}
.fs0_c00261{font-size:18.133333pt;}
.fs1_c00261{font-size:22.666667pt;}
.fs2_c00261{font-size:25.706667pt;}
.fs4_c00261{font-size:28.746667pt;}
.fs3_c00261{font-size:31.733333pt;}
.fs6_c00261{font-size:34.773333pt;}
.y0_c00261{bottom:0.000000pt;}
.yb5_c00261{bottom:223.773333pt;}
.yb8_c00261{bottom:224.933333pt;}
.yb6_c00261{bottom:225.106667pt;}
.yb3_c00261{bottom:225.693333pt;}
.yb4_c00261{bottom:226.640000pt;}
.yb7_c00261{bottom:227.026667pt;}
.yae_c00261{bottom:242.066667pt;}
.yaf_c00261{bottom:242.440000pt;}
.yad_c00261{bottom:243.026667pt;}
.yb0_c00261{bottom:243.226667pt;}
.yb2_c00261{bottom:243.973333pt;}
.yb1_c00261{bottom:244.360000pt;}
.yac_c00261{bottom:258.440000pt;}
.yab_c00261{bottom:259.773333pt;}
.ya7_c00261{bottom:260.360000pt;}
.yaa_c00261{bottom:260.560000pt;}
.ya8_c00261{bottom:260.733333pt;}
.ya9_c00261{bottom:261.693333pt;}
.ya4_c00261{bottom:277.106667pt;}
.ya5_c00261{bottom:278.066667pt;}
.ya3_c00261{bottom:279.026667pt;}
.ya6_c00261{bottom:279.973333pt;}
.y9f_c00261{bottom:294.440000pt;}
.ya1_c00261{bottom:295.400000pt;}
.ya0_c00261{bottom:296.360000pt;}
.ya2_c00261{bottom:297.306667pt;}
.y9e_c00261{bottom:311.026667pt;}
.y9c_c00261{bottom:311.773333pt;}
.y9d_c00261{bottom:313.106667pt;}
.y99_c00261{bottom:313.693333pt;}
.y9a_c00261{bottom:313.893333pt;}
.y98_c00261{bottom:314.640000pt;}
.y9b_c00261{bottom:315.026667pt;}
.y92_c00261{bottom:329.106667pt;}
.y94_c00261{bottom:330.440000pt;}
.y97_c00261{bottom:331.226667pt;}
.y96_c00261{bottom:331.400000pt;}
.y93_c00261{bottom:331.973333pt;}
.y95_c00261{bottom:332.360000pt;}
.y8d_c00261{bottom:346.440000pt;}
.y8e_c00261{bottom:347.773333pt;}
.y91_c00261{bottom:348.560000pt;}
.y90_c00261{bottom:349.306667pt;}
.y8f_c00261{bottom:349.693333pt;}
.y8a_c00261{bottom:364.160000pt;}
.y8b_c00261{bottom:365.106667pt;}
.y8c_c00261{bottom:367.026667pt;}
.y86_c00261{bottom:382.440000pt;}
.y88_c00261{bottom:384.360000pt;}
.y89_c00261{bottom:385.306667pt;}
.y87_c00261{bottom:385.706667pt;}
.y83_c00261{bottom:403.400000pt;}
.y82_c00261{bottom:404.360000pt;}
.y84_c00261{bottom:404.560000pt;}
.y81_c00261{bottom:405.306667pt;}
.y85_c00261{bottom:406.266667pt;}
.y80_c00261{bottom:420.733333pt;}
.y7e_c00261{bottom:421.306667pt;}
.y7f_c00261{bottom:422.066667pt;}
.y7d_c00261{bottom:423.973333pt;}
.y7a_c00261{bottom:442.440000pt;}
.y7c_c00261{bottom:443.773333pt;}
.y7b_c00261{bottom:444.360000pt;}
.y79_c00261{bottom:471.026667pt;}
.y78_c00261{bottom:471.973333pt;}
.y77_c00261{bottom:504.733333pt;}
.y75_c00261{bottom:505.106667pt;}
.y76_c00261{bottom:507.026667pt;}
.y74_c00261{bottom:507.400000pt;}
.y71_c00261{bottom:522.440000pt;}
.y73_c00261{bottom:523.973333pt;}
.y70_c00261{bottom:524.360000pt;}
.y72_c00261{bottom:524.560000pt;}
.y6c_c00261{bottom:539.026667pt;}
.y6f_c00261{bottom:539.773333pt;}
.y69_c00261{bottom:541.106667pt;}
.y6d_c00261{bottom:541.693333pt;}
.y6e_c00261{bottom:541.893333pt;}
.y6a_c00261{bottom:542.640000pt;}
.y6b_c00261{bottom:543.026667pt;}
.y68_c00261{bottom:556.360000pt;}
.y67_c00261{bottom:557.306667pt;}
.y63_c00261{bottom:558.440000pt;}
.y65_c00261{bottom:559.226667pt;}
.y66_c00261{bottom:559.973333pt;}
.y64_c00261{bottom:560.360000pt;}
.y62_c00261{bottom:573.693333pt;}
.y5f_c00261{bottom:575.773333pt;}
.y60_c00261{bottom:576.933333pt;}
.y61_c00261{bottom:577.693333pt;}
.y5c_c00261{bottom:593.106667pt;}
.y5d_c00261{bottom:593.893333pt;}
.y5e_c00261{bottom:594.640000pt;}
.y5b_c00261{bottom:595.026667pt;}
.y58_c00261{bottom:610.440000pt;}
.y5a_c00261{bottom:610.640000pt;}
.y59_c00261{bottom:612.360000pt;}
.y55_c00261{bottom:627.773333pt;}
.y53_c00261{bottom:628.733333pt;}
.y54_c00261{bottom:629.693333pt;}
.y56_c00261{bottom:629.893333pt;}
.y57_c00261{bottom:630.640000pt;}
.y50_c00261{bottom:645.106667pt;}
.y4f_c00261{bottom:647.026667pt;}
.y52_c00261{bottom:647.226667pt;}
.y51_c00261{bottom:647.973333pt;}
.y4d_c00261{bottom:662.440000pt;}
.y4a_c00261{bottom:662.826667pt;}
.y4e_c00261{bottom:663.400000pt;}
.y4b_c00261{bottom:663.773333pt;}
.y48_c00261{bottom:664.360000pt;}
.y4c_c00261{bottom:664.560000pt;}
.y49_c00261{bottom:665.693333pt;}
.y45_c00261{bottom:681.106667pt;}
.y47_c00261{bottom:681.893333pt;}
.y46_c00261{bottom:682.640000pt;}
.y44_c00261{bottom:683.026667pt;}
.y41_c00261{bottom:700.360000pt;}
.y42_c00261{bottom:700.560000pt;}
.y43_c00261{bottom:701.306667pt;}
.y3e_c00261{bottom:715.773333pt;}
.y3f_c00261{bottom:716.733333pt;}
.y40_c00261{bottom:716.933333pt;}
.y3d_c00261{bottom:717.693333pt;}
.y38_c00261{bottom:733.106667pt;}
.y3b_c00261{bottom:734.066667pt;}
.y37_c00261{bottom:734.440000pt;}
.y3c_c00261{bottom:734.640000pt;}
.y39_c00261{bottom:735.026667pt;}
.y3a_c00261{bottom:735.226667pt;}
.y35_c00261{bottom:750.826667pt;}
.y31_c00261{bottom:751.773333pt;}
.y36_c00261{bottom:752.360000pt;}
.y32_c00261{bottom:752.560000pt;}
.y34_c00261{bottom:753.306667pt;}
.y33_c00261{bottom:753.693333pt;}
.y2e_c00261{bottom:767.026667pt;}
.y2f_c00261{bottom:769.106667pt;}
.y30_c00261{bottom:769.693333pt;}
.y2c_c00261{bottom:771.026667pt;}
.y2d_c00261{bottom:771.973333pt;}
.y29_c00261{bottom:785.106667pt;}
.y27_c00261{bottom:786.440000pt;}
.y28_c00261{bottom:787.400000pt;}
.y2a_c00261{bottom:787.973333pt;}
.y26_c00261{bottom:788.360000pt;}
.y2b_c00261{bottom:789.306667pt;}
.y22_c00261{bottom:801.693333pt;}
.y24_c00261{bottom:803.773333pt;}
.y23_c00261{bottom:804.560000pt;}
.y20_c00261{bottom:804.733333pt;}
.y25_c00261{bottom:805.306667pt;}
.y21_c00261{bottom:805.693333pt;}
.y1d_c00261{bottom:820.360000pt;}
.y1c_c00261{bottom:821.106667pt;}
.y1e_c00261{bottom:822.640000pt;}
.y1b_c00261{bottom:823.026667pt;}
.y1f_c00261{bottom:823.226667pt;}
.y19_c00261{bottom:838.440000pt;}
.y18_c00261{bottom:840.360000pt;}
.y1a_c00261{bottom:840.560000pt;}
.y17_c00261{bottom:841.306667pt;}
.y16_c00261{bottom:855.773333pt;}
.y15_c00261{bottom:856.733333pt;}
.y13_c00261{bottom:857.693333pt;}
.y14_c00261{bottom:857.893333pt;}
.y12_c00261{bottom:873.106667pt;}
.y10_c00261{bottom:875.026667pt;}
.y11_c00261{bottom:875.973333pt;}
.ye_c00261{bottom:890.440000pt;}
.yd_c00261{bottom:892.360000pt;}
.yc_c00261{bottom:892.733333pt;}
.yf_c00261{bottom:893.693333pt;}
.yb_c00261{bottom:907.773333pt;}
.ya_c00261{bottom:908.733333pt;}
.y9_c00261{bottom:909.693333pt;}
.y8_c00261{bottom:926.066667pt;}
.y6_c00261{bottom:926.440000pt;}
.y5_c00261{bottom:927.026667pt;}
.y7_c00261{bottom:927.973333pt;}
.y4_c00261{bottom:943.773333pt;}
.y3_c00261{bottom:945.693333pt;}
.y2_c00261{bottom:978.640000pt;}
.y1_c00261{bottom:979.600000pt;}
.h8_c00261{height:3.739141pt;}
.h6_c00261{height:20.466875pt;}
.h1_c00261{height:22.303646pt;}
.h2_c00261{height:27.879557pt;}
.h3_c00261{height:31.618698pt;}
.h5_c00261{height:35.357839pt;}
.h9_c00261{height:36.952031pt;}
.h4_c00261{height:39.031380pt;}
.h7_c00261{height:42.770521pt;}
.h0_c00261{height:1186.666667pt;}
.w0_c00261{width:782.666667pt;}
.x0_c00261{left:0.000000pt;}
.xde_c00261{left:133.706667pt;}
.x84_c00261{left:134.666667pt;}
.x27_c00261{left:136.000000pt;}
.x2_c00261{left:136.960000pt;}
.xf4_c00261{left:144.960000pt;}
.xd3_c00261{left:146.666667pt;}
.xba_c00261{left:147.626667pt;}
.x8d_c00261{left:149.333333pt;}
.x49_c00261{left:150.666667pt;}
.x1a_c00261{left:153.706667pt;}
.xf1_c00261{left:156.373333pt;}
.x60_c00261{left:160.373333pt;}
.xdf_c00261{left:165.706667pt;}
.x38_c00261{left:166.666667pt;}
.x92_c00261{left:168.000000pt;}
.xa2_c00261{left:172.373333pt;}
.x6b_c00261{left:173.706667pt;}
.xe5_c00261{left:174.666667pt;}
.x1b_c00261{left:176.373333pt;}
.x8e_c00261{left:177.333333pt;}
.x100_c00261{left:178.666667pt;}
.x41_c00261{left:180.000000pt;}
.x74_c00261{left:181.333333pt;}
.x85_c00261{left:182.666667pt;}
.xd6_c00261{left:184.373333pt;}
.x2f_c00261{left:185.333333pt;}
.x4a_c00261{left:188.000000pt;}
.xc4_c00261{left:192.000000pt;}
.xe6_c00261{left:194.666667pt;}
.xbb_c00261{left:195.626667pt;}
.x3_c00261{left:196.960000pt;}
.x99_c00261{left:200.373333pt;}
.x28_c00261{left:201.706667pt;}
.xda_c00261{left:204.000000pt;}
.xaf_c00261{left:205.333333pt;}
.x1c_c00261{left:206.293333pt;}
.x54_c00261{left:207.626667pt;}
.x61_c00261{left:210.666667pt;}
.x89_c00261{left:211.626667pt;}
.x39_c00261{left:213.333333pt;}
.x30_c00261{left:214.666667pt;}
.xc9_c00261{left:220.000000pt;}
.xf5_c00261{left:223.040000pt;}
.xe_c00261{left:224.000000pt;}
.x4_c00261{left:225.706667pt;}
.x42_c00261{left:226.666667pt;}
.xea_c00261{left:229.333333pt;}
.x31_c00261{left:231.040000pt;}
.x29_c00261{left:232.960000pt;}
.x93_c00261{left:234.666667pt;}
.x75_c00261{left:237.706667pt;}
.x8a_c00261{left:238.666667pt;}
.xa3_c00261{left:240.960000pt;}
.xeb_c00261{left:242.666667pt;}
.x4b_c00261{left:245.333333pt;}
.x1d_c00261{left:246.293333pt;}
.xb6_c00261{left:248.373333pt;}
.xf6_c00261{left:249.333333pt;}
.x62_c00261{left:252.373333pt;}
.xe0_c00261{left:253.333333pt;}
.x32_c00261{left:254.666667pt;}
.xcf_c00261{left:256.000000pt;}
.x43_c00261{left:258.666667pt;}
.xf2_c00261{left:260.373333pt;}
.x55_c00261{left:262.293333pt;}
.x86_c00261{left:263.240000pt;}
.x6c_c00261{left:265.706667pt;}
.x76_c00261{left:269.333333pt;}
.xb0_c00261{left:270.293333pt;}
.x8b_c00261{left:275.626667pt;}
.xa9_c00261{left:276.960000pt;}
.xf_c00261{left:278.666667pt;}
.xca_c00261{left:279.626667pt;}
.x7e_c00261{left:281.706667pt;}
.xdb_c00261{left:283.626667pt;}
.x5_c00261{left:285.706667pt;}
.x44_c00261{left:289.706667pt;}
.x4c_c00261{left:290.666667pt;}
.xfb_c00261{left:292.000000pt;}
.xd1_c00261{left:294.293333pt;}
.x10_c00261{left:295.626667pt;}
.x9a_c00261{left:297.706667pt;}
.xf7_c00261{left:298.666667pt;}
.x6d_c00261{left:300.000000pt;}
.x94_c00261{left:300.960000pt;}
.x56_c00261{left:302.293333pt;}
.x3a_c00261{left:304.000000pt;}
.xd4_c00261{left:308.000000pt;}
.x1e_c00261{left:308.960000pt;}
.x6_c00261{left:310.293333pt;}
.x45_c00261{left:312.373333pt;}
.x63_c00261{left:313.333333pt;}
.x77_c00261{left:315.040000pt;}
.x9b_c00261{left:320.960000pt;}
.x4d_c00261{left:322.293333pt;}
.x6e_c00261{left:324.000000pt;}
.xd0_c00261{left:325.333333pt;}
.xb1_c00261{left:328.000000pt;}
.x33_c00261{left:331.040000pt;}
.xd7_c00261{left:332.000000pt;}
.x64_c00261{left:333.706667pt;}
.x1f_c00261{left:335.240000pt;}
.xc5_c00261{left:336.373333pt;}
.xaa_c00261{left:341.333333pt;}
.x46_c00261{left:342.666667pt;}
.x87_c00261{left:344.000000pt;}
.xbc_c00261{left:345.333333pt;}
.xcb_c00261{left:347.040000pt;}
.x9c_c00261{left:348.000000pt;}
.x11_c00261{left:348.960000pt;}
.x7f_c00261{left:350.666667pt;}
.x57_c00261{left:353.333333pt;}
.xce_c00261{left:354.293333pt;}
.xfc_c00261{left:356.000000pt;}
.x7_c00261{left:357.333333pt;}
.xc6_c00261{left:361.333333pt;}
.x47_c00261{left:363.040000pt;}
.x80_c00261{left:364.000000pt;}
.x1_c00261{left:365.333333pt;}
.x58_c00261{left:367.040000pt;}
.xcc_c00261{left:368.373333pt;}
.x3b_c00261{left:371.040000pt;}
.x8_c00261{left:372.373333pt;}
.x34_c00261{left:374.293333pt;}
.xc1_c00261{left:377.333333pt;}
.xb2_c00261{left:380.373333pt;}
.xab_c00261{left:383.040000pt;}
.x59_c00261{left:384.000000pt;}
.xfd_c00261{left:385.333333pt;}
.x95_c00261{left:386.666667pt;}
.x48_c00261{left:388.000000pt;}
.x8f_c00261{left:389.333333pt;}
.x12_c00261{left:390.666667pt;}
.xcd_c00261{left:392.000000pt;}
.x4e_c00261{left:393.333333pt;}
.x9d_c00261{left:396.373333pt;}
.xd2_c00261{left:398.666667pt;}
.x8c_c00261{left:407.040000pt;}
.x2a_c00261{left:408.000000pt;}
.x4f_c00261{left:409.333333pt;}
.xfe_c00261{left:410.666667pt;}
.x6f_c00261{left:413.706667pt;}
.x3c_c00261{left:416.000000pt;}
.x5a_c00261{left:417.706667pt;}
.x65_c00261{left:419.040000pt;}
.x13_c00261{left:421.333333pt;}
.x88_c00261{left:423.040000pt;}
.xa4_c00261{left:424.373333pt;}
.xbd_c00261{left:426.666667pt;}
.xff_c00261{left:429.706667pt;}
.xe1_c00261{left:430.666667pt;}
.x20_c00261{left:432.000000pt;}
.x78_c00261{left:433.333333pt;}
.xb3_c00261{left:436.000000pt;}
.xb7_c00261{left:437.706667pt;}
.x3d_c00261{left:441.333333pt;}
.x66_c00261{left:442.666667pt;}
.x9_c00261{left:444.000000pt;}
.xac_c00261{left:445.333333pt;}
.x50_c00261{left:446.293333pt;}
.x96_c00261{left:448.000000pt;}
.xa5_c00261{left:449.333333pt;}
.x79_c00261{left:451.240000pt;}
.xd5_c00261{left:453.706667pt;}
.x21_c00261{left:454.666667pt;}
.x70_c00261{left:456.373333pt;}
.x67_c00261{left:458.666667pt;}
.x5b_c00261{left:461.333333pt;}
.xf8_c00261{left:462.666667pt;}
.x35_c00261{left:463.626667pt;}
.xc2_c00261{left:464.960000pt;}
.x81_c00261{left:466.666667pt;}
.x2b_c00261{left:468.000000pt;}
.xb8_c00261{left:469.706667pt;}
.x5c_c00261{left:475.040000pt;}
.xad_c00261{left:478.666667pt;}
.xc3_c00261{left:481.333333pt;}
.xd8_c00261{left:482.666667pt;}
.x97_c00261{left:484.000000pt;}
.x14_c00261{left:485.706667pt;}
.xb9_c00261{left:486.666667pt;}
.x9e_c00261{left:489.333333pt;}
.xee_c00261{left:490.666667pt;}
.xa_c00261{left:492.000000pt;}
.x51_c00261{left:495.040000pt;}
.x22_c00261{left:496.373333pt;}
.xa6_c00261{left:500.000000pt;}
.x2c_c00261{left:500.960000pt;}
.x68_c00261{left:502.666667pt;}
.xc7_c00261{left:505.706667pt;}
.xbe_c00261{left:506.666667pt;}
.x7a_c00261{left:507.626667pt;}
.xb_c00261{left:513.706667pt;}
.xef_c00261{left:514.666667pt;}
.x15_c00261{left:516.373333pt;}
.x90_c00261{left:518.666667pt;}
.xe7_c00261{left:521.333333pt;}
.x9f_c00261{left:522.666667pt;}
.xb4_c00261{left:524.000000pt;}
.x23_c00261{left:525.706667pt;}
.x82_c00261{left:528.960000pt;}
.xc8_c00261{left:530.666667pt;}
.x71_c00261{left:532.373333pt;}
.xd9_c00261{left:533.333333pt;}
.x3e_c00261{left:534.466667pt;}
.xc_c00261{left:536.960000pt;}
.xdc_c00261{left:539.800000pt;}
.x16_c00261{left:540.960000pt;}
.xe2_c00261{left:544.373333pt;}
.x52_c00261{left:547.040000pt;}
.x7b_c00261{left:549.333333pt;}
.xf9_c00261{left:551.040000pt;}
.x24_c00261{left:552.000000pt;}
.xa0_c00261{left:554.293333pt;}
.x72_c00261{left:556.373333pt;}
.x5d_c00261{left:559.040000pt;}
.xbf_c00261{left:560.373333pt;}
.xf0_c00261{left:561.706667pt;}
.xe8_c00261{left:562.666667pt;}
.xdd_c00261{left:566.666667pt;}
.x2d_c00261{left:567.626667pt;}
.x3f_c00261{left:571.040000pt;}
.x36_c00261{left:572.000000pt;}
.x69_c00261{left:573.333333pt;}
.xf3_c00261{left:575.626667pt;}
.x98_c00261{left:579.626667pt;}
.xec_c00261{left:584.960000pt;}
.x17_c00261{left:588.000000pt;}
.x40_c00261{left:589.333333pt;}
.x83_c00261{left:590.666667pt;}
.xe3_c00261{left:592.373333pt;}
.x6a_c00261{left:593.333333pt;}
.x91_c00261{left:596.000000pt;}
.xb5_c00261{left:596.960000pt;}
.x25_c00261{left:598.666667pt;}
.x5e_c00261{left:600.373333pt;}
.xc0_c00261{left:602.293333pt;}
.x18_c00261{left:604.000000pt;}
.xae_c00261{left:606.666667pt;}
.x7c_c00261{left:608.373333pt;}
.x37_c00261{left:610.666667pt;}
.xa7_c00261{left:612.000000pt;}
.x53_c00261{left:613.333333pt;}
.xed_c00261{left:614.666667pt;}
.x101_c00261{left:616.960000pt;}
.xa1_c00261{left:620.000000pt;}
.xe9_c00261{left:623.040000pt;}
.x19_c00261{left:624.000000pt;}
.x73_c00261{left:626.293333pt;}
.xd_c00261{left:627.626667pt;}
.xa8_c00261{left:629.706667pt;}
.x26_c00261{left:631.040000pt;}
.x2e_c00261{left:633.333333pt;}
.x5f_c00261{left:634.666667pt;}
.xfa_c00261{left:636.000000pt;}
.x7d_c00261{left:640.000000pt;}
.xe4_c00261{left:642.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_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_3f1595cfc9b57d4ee13f98df.woff2')format("woff");}.ff1_c00262{font-family:ff1_c00262;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m60_c00262{transform:matrix(0.113866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113866,0.000000,0.000000,0.250000,0,0);}
.m4d_c00262{transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);}
.m6a_c00262{transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);}
.m2_c00262{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m6c_c00262{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m99_c00262{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);}
.m108_c00262{transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);}
.m12_c00262{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m5b_c00262{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m1f_c00262{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m65_c00262{transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);}
.m36_c00262{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m59_c00262{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.mff_c00262{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m31_c00262{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mca_c00262{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m2a_c00262{transform:matrix(0.376150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376150,0.000000,0.000000,0.250000,0,0);}
.m73_c00262{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.m5_c00262{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mfc_c00262{transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);}
.m26_c00262{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m4_c00262{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m9_c00262{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m30_c00262{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m45_c00262{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m98_c00262{transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);}
.m82_c00262{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m75_c00262{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m58_c00262{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m15_c00262{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m6d_c00262{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.mf4_c00262{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m68_c00262{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m9b_c00262{transform:matrix(0.400934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400934,0.000000,0.000000,0.250000,0,0);}
.mfa_c00262{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.m6f_c00262{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m8e_c00262{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m96_c00262{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.m8c_c00262{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m11_c00262{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m97_c00262{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m107_c00262{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.m4f_c00262{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m103_c00262{transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);}
.m7f_c00262{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m5a_c00262{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.ma1_c00262{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m46_c00262{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m5e_c00262{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m69_c00262{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m52_c00262{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m95_c00262{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.mfd_c00262{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m7b_c00262{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.ma_c00262{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.me2_c00262{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.mb4_c00262{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.ma3_c00262{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m54_c00262{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m9a_c00262{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m19_c00262{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.mb5_c00262{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.mb8_c00262{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.me_c00262{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m90_c00262{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m80_c00262{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m9d_c00262{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.me8_c00262{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m84_c00262{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m100_c00262{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m3_c00262{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m9c_c00262{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m57_c00262{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m74_c00262{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.md6_c00262{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.me9_c00262{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.mc2_c00262{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.mf9_c00262{transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);}
.m5d_c00262{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.ma8_c00262{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m48_c00262{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.me1_c00262{transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);}
.m40_c00262{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mf2_c00262{transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);}
.m9e_c00262{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m47_c00262{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.m39_c00262{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.me5_c00262{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m3c_c00262{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m1_c00262{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m106_c00262{transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);}
.me6_c00262{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mac_c00262{transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);}
.mba_c00262{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m9f_c00262{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m49_c00262{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m20_c00262{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m6b_c00262{transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);}
.ma5_c00262{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.m43_c00262{transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);}
.mf7_c00262{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.md4_c00262{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.maf_c00262{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mc7_c00262{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m105_c00262{transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);}
.m89_c00262{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.mc0_c00262{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m61_c00262{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.mea_c00262{transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);}
.m38_c00262{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m2d_c00262{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m5c_c00262{transform:matrix(0.481092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481092,0.000000,0.000000,0.250000,0,0);}
.mf6_c00262{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m8a_c00262{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m44_c00262{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m1d_c00262{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mae_c00262{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m62_c00262{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.mb1_c00262{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m67_c00262{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m3a_c00262{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);}
.m5f_c00262{transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);}
.m94_c00262{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m79_c00262{transform:matrix(0.504638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504638,0.000000,0.000000,0.250000,0,0);}
.m8d_c00262{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m104_c00262{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.mf3_c00262{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m55_c00262{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m88_c00262{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m1c_c00262{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mcb_c00262{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m13_c00262{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m83_c00262{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m71_c00262{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m2f_c00262{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m7_c00262{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.md_c00262{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m8b_c00262{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m17_c00262{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mf0_c00262{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.mb_c00262{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mb6_c00262{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m24_c00262{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.mf1_c00262{transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);}
.m101_c00262{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);}
.mdd_c00262{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m28_c00262{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m50_c00262{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.md7_c00262{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.m78_c00262{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mc3_c00262{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);}
.mdf_c00262{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m25_c00262{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m7d_c00262{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mef_c00262{transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);}
.md8_c00262{transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);}
.m10_c00262{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.md2_c00262{transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);}
.m37_c00262{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mb3_c00262{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m51_c00262{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m4c_c00262{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m72_c00262{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mb0_c00262{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m32_c00262{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mec_c00262{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m4a_c00262{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m66_c00262{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m4b_c00262{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mc5_c00262{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.ma7_c00262{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m3f_c00262{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m3b_c00262{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m1a_c00262{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m1b_c00262{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mc9_c00262{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.ma9_c00262{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mc4_c00262{transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);}
.m2e_c00262{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.md9_c00262{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m92_c00262{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mc6_c00262{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.ma6_c00262{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m34_c00262{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m76_c00262{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m16_c00262{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m2c_c00262{transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);}
.mbc_c00262{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m2b_c00262{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mbd_c00262{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m6_c00262{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m7e_c00262{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m8f_c00262{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mce_c00262{transform:matrix(0.561765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561765,0.000000,0.000000,0.250000,0,0);}
.mbf_c00262{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mcc_c00262{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.m42_c00262{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.me0_c00262{transform:matrix(0.567647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567647,0.000000,0.000000,0.250000,0,0);}
.mfb_c00262{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m6e_c00262{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m35_c00262{transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);}
.mf_c00262{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m81_c00262{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mdc_c00262{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m3d_c00262{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mda_c00262{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.me3_c00262{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.mb9_c00262{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.mc8_c00262{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mb7_c00262{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.meb_c00262{transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);}
.m91_c00262{transform:matrix(0.587647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587647,0.000000,0.000000,0.250000,0,0);}
.m7a_c00262{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m3e_c00262{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m33_c00262{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mbb_c00262{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.ma0_c00262{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m1e_c00262{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mfe_c00262{transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);}
.m23_c00262{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mf5_c00262{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.me7_c00262{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m0_c00262{transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);}
.m41_c00262{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);}
.me4_c00262{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.med_c00262{transform:matrix(0.635463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635463,0.000000,0.000000,0.250000,0,0);}
.md5_c00262{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m29_c00262{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.mcf_c00262{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.m102_c00262{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.md1_c00262{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);}
.mee_c00262{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.md0_c00262{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.mab_c00262{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m21_c00262{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m93_c00262{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m18_c00262{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m7c_c00262{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.mad_c00262{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.md3_c00262{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mc1_c00262{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mcd_c00262{transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);}
.mc_c00262{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.mbe_c00262{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);}
.m77_c00262{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mdb_c00262{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m70_c00262{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m86_c00262{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.mde_c00262{transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);}
.m4e_c00262{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m27_c00262{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m8_c00262{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m63_c00262{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m22_c00262{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.ma2_c00262{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m87_c00262{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m85_c00262{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.ma4_c00262{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m14_c00262{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m53_c00262{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.mf8_c00262{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.maa_c00262{transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);}
.mb2_c00262{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m64_c00262{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m56_c00262{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00262{vertical-align:0.000000px;}
.v1_c00262{vertical-align:7.680000px;}
.ls1_c00262{letter-spacing:0.000000px;}
.ls0_c00262{letter-spacing:14.817600px;}
.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;}
}
.ws1_c00262{word-spacing:0.000000px;}
.ws0_c00262{word-spacing:14.188817px;}
.fc0_c00262{color:transparent;}
.fs7_c00262{font-size:3.420000px;}
.fs8_c00262{font-size:13.620000px;}
.fs3_c00262{font-size:18.720000px;}
.fs0_c00262{font-size:20.400000px;}
.fs4_c00262{font-size:25.500000px;}
.fs1_c00262{font-size:28.920000px;}
.fs6_c00262{font-size:32.340000px;}
.fs2_c00262{font-size:35.700000px;}
.fs5_c00262{font-size:39.120000px;}
.y0_c00262{bottom:0.000000px;}
.yd9_c00262{bottom:263.325000px;}
.ydb_c00262{bottom:264.405000px;}
.yd7_c00262{bottom:264.825000px;}
.ydc_c00262{bottom:265.470000px;}
.yd8_c00262{bottom:266.970000px;}
.yda_c00262{bottom:267.195000px;}
.yd4_c00262{bottom:279.825000px;}
.ycf_c00262{bottom:280.050000px;}
.yd6_c00262{bottom:280.470000px;}
.yd5_c00262{bottom:280.695000px;}
.yd0_c00262{bottom:280.905000px;}
.yd1_c00262{bottom:281.130000px;}
.yd2_c00262{bottom:281.550000px;}
.yd3_c00262{bottom:281.970000px;}
.ycd_c00262{bottom:294.405000px;}
.yca_c00262{bottom:294.825000px;}
.yce_c00262{bottom:295.470000px;}
.ycc_c00262{bottom:295.905000px;}
.ycb_c00262{bottom:296.130000px;}
.yc9_c00262{bottom:296.970000px;}
.yc7_c00262{bottom:308.325000px;}
.yc8_c00262{bottom:309.405000px;}
.yc4_c00262{bottom:309.825000px;}
.yc5_c00262{bottom:310.470000px;}
.yc6_c00262{bottom:310.695000px;}
.yc2_c00262{bottom:310.905000px;}
.yc1_c00262{bottom:311.130000px;}
.yc3_c00262{bottom:311.550000px;}
.yc0_c00262{bottom:311.970000px;}
.ybf_c00262{bottom:324.405000px;}
.yba_c00262{bottom:337.470000px;}
.yb9_c00262{bottom:338.325000px;}
.yb8_c00262{bottom:338.550000px;}
.ybc_c00262{bottom:339.405000px;}
.ybd_c00262{bottom:339.630000px;}
.ybb_c00262{bottom:340.470000px;}
.ybe_c00262{bottom:341.550000px;}
.yb2_c00262{bottom:352.470000px;}
.yb5_c00262{bottom:353.325000px;}
.yb7_c00262{bottom:354.405000px;}
.yb4_c00262{bottom:354.630000px;}
.yb3_c00262{bottom:355.470000px;}
.yb6_c00262{bottom:356.550000px;}
.yb0_c00262{bottom:367.470000px;}
.yad_c00262{bottom:368.550000px;}
.yaf_c00262{bottom:369.405000px;}
.yb1_c00262{bottom:370.695000px;}
.yae_c00262{bottom:371.550000px;}
.yac_c00262{bottom:383.325000px;}
.yab_c00262{bottom:383.550000px;}
.yaa_c00262{bottom:384.405000px;}
.ya9_c00262{bottom:385.470000px;}
.ya8_c00262{bottom:386.550000px;}
.ya5_c00262{bottom:398.325000px;}
.ya6_c00262{bottom:398.970000px;}
.ya7_c00262{bottom:399.195000px;}
.ya4_c00262{bottom:399.630000px;}
.ya2_c00262{bottom:400.050000px;}
.ya3_c00262{bottom:400.470000px;}
.ya1_c00262{bottom:413.325000px;}
.ya0_c00262{bottom:415.470000px;}
.y9b_c00262{bottom:427.905000px;}
.y9f_c00262{bottom:428.130000px;}
.y9d_c00262{bottom:428.550000px;}
.y9a_c00262{bottom:428.970000px;}
.y9c_c00262{bottom:429.630000px;}
.y9e_c00262{bottom:430.050000px;}
.y97_c00262{bottom:440.970000px;}
.y94_c00262{bottom:442.470000px;}
.y95_c00262{bottom:443.970000px;}
.y99_c00262{bottom:444.630000px;}
.y96_c00262{bottom:445.050000px;}
.y98_c00262{bottom:445.470000px;}
.y91_c00262{bottom:456.825000px;}
.y92_c00262{bottom:457.905000px;}
.y90_c00262{bottom:458.970000px;}
.y8f_c00262{bottom:459.195000px;}
.y93_c00262{bottom:460.050000px;}
.y8a_c00262{bottom:472.050000px;}
.y8e_c00262{bottom:472.905000px;}
.y8c_c00262{bottom:473.130000px;}
.y8b_c00262{bottom:473.970000px;}
.y8d_c00262{bottom:475.050000px;}
.y88_c00262{bottom:485.970000px;}
.y89_c00262{bottom:486.825000px;}
.y87_c00262{bottom:487.905000px;}
.y86_c00262{bottom:488.970000px;}
.y85_c00262{bottom:489.195000px;}
.y84_c00262{bottom:501.825000px;}
.y80_c00262{bottom:502.050000px;}
.y83_c00262{bottom:502.905000px;}
.y81_c00262{bottom:503.970000px;}
.y82_c00262{bottom:505.050000px;}
.y7f_c00262{bottom:517.905000px;}
.y7e_c00262{bottom:530.325000px;}
.y7a_c00262{bottom:531.405000px;}
.y7c_c00262{bottom:532.470000px;}
.y79_c00262{bottom:533.130000px;}
.y7b_c00262{bottom:533.550000px;}
.y7d_c00262{bottom:534.195000px;}
.y78_c00262{bottom:545.325000px;}
.y77_c00262{bottom:548.550000px;}
.y74_c00262{bottom:561.405000px;}
.y75_c00262{bottom:562.470000px;}
.y76_c00262{bottom:562.695000px;}
.y72_c00262{bottom:563.130000px;}
.y73_c00262{bottom:563.550000px;}
.y70_c00262{bottom:589.245000px;}
.y6f_c00262{bottom:589.905000px;}
.y71_c00262{bottom:591.405000px;}
.y6a_c00262{bottom:607.245000px;}
.y6c_c00262{bottom:608.745000px;}
.y6d_c00262{bottom:609.405000px;}
.y6b_c00262{bottom:609.630000px;}
.y69_c00262{bottom:610.470000px;}
.y6e_c00262{bottom:610.905000px;}
.y68_c00262{bottom:627.825000px;}
.y67_c00262{bottom:628.245000px;}
.y66_c00262{bottom:630.405000px;}
.y64_c00262{bottom:646.905000px;}
.y63_c00262{bottom:647.745000px;}
.y65_c00262{bottom:649.905000px;}
.y5f_c00262{bottom:667.245000px;}
.y62_c00262{bottom:667.680000px;}
.y61_c00262{bottom:668.130000px;}
.y60_c00262{bottom:669.405000px;}
.y5e_c00262{bottom:669.630000px;}
.y5b_c00262{bottom:685.905000px;}
.y5a_c00262{bottom:686.745000px;}
.y59_c00262{bottom:688.905000px;}
.y5d_c00262{bottom:689.130000px;}
.y5c_c00262{bottom:689.970000px;}
.y56_c00262{bottom:706.245000px;}
.y57_c00262{bottom:707.325000px;}
.y55_c00262{bottom:708.405000px;}
.y58_c00262{bottom:709.905000px;}
.y52_c00262{bottom:725.745000px;}
.y4f_c00262{bottom:727.905000px;}
.y53_c00262{bottom:728.130000px;}
.y54_c00262{bottom:728.970000px;}
.y51_c00262{bottom:729.405000px;}
.y50_c00262{bottom:729.420000px;}
.y4c_c00262{bottom:745.245000px;}
.y4e_c00262{bottom:746.745000px;}
.y4d_c00262{bottom:747.405000px;}
.y47_c00262{bottom:763.905000px;}
.y4a_c00262{bottom:766.245000px;}
.y49_c00262{bottom:767.325000px;}
.y4b_c00262{bottom:767.550000px;}
.y48_c00262{bottom:768.405000px;}
.y45_c00262{bottom:785.745000px;}
.y43_c00262{bottom:787.905000px;}
.y46_c00262{bottom:788.130000px;}
.y44_c00262{bottom:788.970000px;}
.y41_c00262{bottom:805.245000px;}
.y3f_c00262{bottom:807.405000px;}
.y40_c00262{bottom:807.420000px;}
.y42_c00262{bottom:807.630000px;}
.y3e_c00262{bottom:824.745000px;}
.y3b_c00262{bottom:844.680000px;}
.y3c_c00262{bottom:845.325000px;}
.y3d_c00262{bottom:845.745000px;}
.y38_c00262{bottom:846.405000px;}
.y39_c00262{bottom:846.630000px;}
.y3a_c00262{bottom:847.920000px;}
.y34_c00262{bottom:863.745000px;}
.y36_c00262{bottom:864.405000px;}
.y35_c00262{bottom:865.245000px;}
.y37_c00262{bottom:866.325000px;}
.y33_c00262{bottom:882.825000px;}
.y30_c00262{bottom:884.745000px;}
.y32_c00262{bottom:885.825000px;}
.y31_c00262{bottom:886.920000px;}
.y2f_c00262{bottom:904.245000px;}
.y2c_c00262{bottom:904.905000px;}
.y2e_c00262{bottom:905.130000px;}
.y2d_c00262{bottom:905.970000px;}
.y2b_c00262{bottom:906.405000px;}
.y28_c00262{bottom:923.745000px;}
.y29_c00262{bottom:924.630000px;}
.y2a_c00262{bottom:925.470000px;}
.y27_c00262{bottom:925.905000px;}
.y25_c00262{bottom:942.405000px;}
.y23_c00262{bottom:943.245000px;}
.y26_c00262{bottom:944.325000px;}
.y24_c00262{bottom:945.405000px;}
.y1e_c00262{bottom:962.745000px;}
.y20_c00262{bottom:963.825000px;}
.y22_c00262{bottom:964.245000px;}
.y1f_c00262{bottom:964.470000px;}
.y1d_c00262{bottom:964.905000px;}
.y21_c00262{bottom:966.405000px;}
.y18_c00262{bottom:982.245000px;}
.y1c_c00262{bottom:983.325000px;}
.y19_c00262{bottom:983.745000px;}
.y17_c00262{bottom:984.405000px;}
.y1b_c00262{bottom:985.470000px;}
.y1a_c00262{bottom:985.905000px;}
.y15_c00262{bottom:1002.180000px;}
.y14_c00262{bottom:1003.905000px;}
.y16_c00262{bottom:1005.405000px;}
.yf_c00262{bottom:1021.245000px;}
.y13_c00262{bottom:1022.745000px;}
.y10_c00262{bottom:1023.405000px;}
.y11_c00262{bottom:1023.630000px;}
.ye_c00262{bottom:1024.470000px;}
.y12_c00262{bottom:1024.905000px;}
.y8_c00262{bottom:1040.745000px;}
.yb_c00262{bottom:1042.245000px;}
.y9_c00262{bottom:1042.905000px;}
.ya_c00262{bottom:1043.130000px;}
.yd_c00262{bottom:1043.970000px;}
.yc_c00262{bottom:1044.405000px;}
.y5_c00262{bottom:1059.405000px;}
.y3_c00262{bottom:1061.745000px;}
.y6_c00262{bottom:1062.630000px;}
.y7_c00262{bottom:1063.050000px;}
.y4_c00262{bottom:1063.905000px;}
.y2_c00262{bottom:1099.905000px;}
.y1_c00262{bottom:1102.050000px;}
.h8_c00262{height:4.206533px;}
.h9_c00262{height:16.752334px;}
.h4_c00262{height:23.025234px;}
.h1_c00262{height:25.091602px;}
.h5_c00262{height:31.364502px;}
.h2_c00262{height:35.571035px;}
.ha_c00262{height:39.044502px;}
.h7_c00262{height:39.777568px;}
.h3_c00262{height:43.910303px;}
.h6_c00262{height:48.116836px;}
.h0_c00262{height:1335.000000px;}
.w0_c00262{width:880.500000px;}
.x0_c00262{left:0.000000px;}
.x13_c00262{left:151.500000px;}
.x3_c00262{left:152.580000px;}
.xae_c00262{left:154.275000px;}
.xa8_c00262{left:163.500000px;}
.xf9_c00262{left:165.000000px;}
.x33_c00262{left:166.080000px;}
.x63_c00262{left:168.000000px;}
.x3b_c00262{left:169.920000px;}
.x4_c00262{left:172.500000px;}
.x21_c00262{left:178.500000px;}
.xc1_c00262{left:180.420000px;}
.x7c_c00262{left:183.000000px;}
.x46_c00262{left:184.500000px;}
.xfc_c00262{left:185.580000px;}
.x50_c00262{left:189.420000px;}
.xf4_c00262{left:190.500000px;}
.x3c_c00262{left:195.000000px;}
.xec_c00262{left:196.080000px;}
.xd1_c00262{left:198.000000px;}
.x6a_c00262{left:202.080000px;}
.xa0_c00262{left:203.580000px;}
.x90_c00262{left:204.645000px;}
.x5_c00262{left:207.000000px;}
.x14_c00262{left:208.080000px;}
.x51_c00262{left:210.000000px;}
.x75_c00262{left:211.080000px;}
.x86_c00262{left:213.855000px;}
.xfa_c00262{left:216.000000px;}
.x47_c00262{left:219.000000px;}
.xcc_c00262{left:220.500000px;}
.xd2_c00262{left:224.580000px;}
.x34_c00262{left:226.080000px;}
.x5d_c00262{left:228.420000px;}
.xa9_c00262{left:229.500000px;}
.x6_c00262{left:230.775000px;}
.x98_c00262{left:232.500000px;}
.xd5_c00262{left:234.420000px;}
.x76_c00262{left:235.500000px;}
.xed_c00262{left:236.580000px;}
.x100_c00262{left:241.080000px;}
.x3d_c00262{left:246.000000px;}
.x6e_c00262{left:247.500000px;}
.x2f_c00262{left:249.420000px;}
.x15_c00262{left:253.500000px;}
.xa1_c00262{left:255.000000px;}
.x10d_c00262{left:256.080000px;}
.x64_c00262{left:258.000000px;}
.x77_c00262{left:259.500000px;}
.x22_c00262{left:262.500000px;}
.x5e_c00262{left:264.000000px;}
.x7_c00262{left:265.500000px;}
.x48_c00262{left:267.000000px;}
.xd3_c00262{left:268.500000px;}
.x99_c00262{left:274.920000px;}
.x16_c00262{left:276.000000px;}
.xc7_c00262{left:277.080000px;}
.x30_c00262{left:280.500000px;}
.xb4_c00262{left:281.775000px;}
.x52_c00262{left:283.500000px;}
.x101_c00262{left:284.580000px;}
.xe4_c00262{left:286.080000px;}
.xd6_c00262{left:288.000000px;}
.x17_c00262{left:289.500000px;}
.x23_c00262{left:291.000000px;}
.x7d_c00262{left:292.080000px;}
.xcd_c00262{left:293.580000px;}
.xdd_c00262{left:297.420000px;}
.x49_c00262{left:298.500000px;}
.x8_c00262{left:300.420000px;}
.xbb_c00262{left:301.920000px;}
.x87_c00262{left:303.000000px;}
.xf5_c00262{left:304.080000px;}
.x6b_c00262{left:305.580000px;}
.x35_c00262{left:307.500000px;}
.x91_c00262{left:309.000000px;}
.x78_c00262{left:310.500000px;}
.xc8_c00262{left:313.920000px;}
.x109_c00262{left:316.500000px;}
.x3e_c00262{left:318.420000px;}
.xf6_c00262{left:319.500000px;}
.x6c_c00262{left:320.580000px;}
.xaa_c00262{left:322.080000px;}
.xaf_c00262{left:323.580000px;}
.xd4_c00262{left:325.500000px;}
.x53_c00262{left:327.000000px;}
.xce_c00262{left:328.500000px;}
.x102_c00262{left:329.580000px;}
.x24_c00262{left:331.500000px;}
.xc2_c00262{left:334.920000px;}
.xa2_c00262{left:336.420000px;}
.x9_c00262{left:337.500000px;}
.x7e_c00262{left:339.000000px;}
.x6f_c00262{left:344.145000px;}
.x9a_c00262{left:346.080000px;}
.x25_c00262{left:348.420000px;}
.xa_c00262{left:349.920000px;}
.xc3_c00262{left:352.080000px;}
.x36_c00262{left:354.420000px;}
.x31_c00262{left:355.500000px;}
.x18_c00262{left:357.000000px;}
.xb5_c00262{left:358.500000px;}
.x79_c00262{left:360.000000px;}
.x4a_c00262{left:361.500000px;}
.x88_c00262{left:364.500000px;}
.xde_c00262{left:366.000000px;}
.x54_c00262{left:367.080000px;}
.x32_c00262{left:370.500000px;}
.x7f_c00262{left:372.000000px;}
.xf7_c00262{left:373.080000px;}
.x26_c00262{left:375.000000px;}
.xdf_c00262{left:376.500000px;}
.xd7_c00262{left:378.000000px;}
.xbc_c00262{left:379.500000px;}
.xe5_c00262{left:381.000000px;}
.x5f_c00262{left:382.500000px;}
.x106_c00262{left:387.000000px;}
.xb_c00262{left:388.920000px;}
.x92_c00262{left:390.645000px;}
.x65_c00262{left:392.355000px;}
.xb6_c00262{left:394.500000px;}
.x55_c00262{left:397.500000px;}
.xb0_c00262{left:398.775000px;}
.xfd_c00262{left:400.500000px;}
.x19_c00262{left:402.000000px;}
.x3f_c00262{left:403.920000px;}
.x4b_c00262{left:405.420000px;}
.x1_c00262{left:406.500000px;}
.x10e_c00262{left:409.080000px;}
.x60_c00262{left:411.000000px;}
.x9b_c00262{left:412.080000px;}
.x27_c00262{left:414.000000px;}
.xd8_c00262{left:415.080000px;}
.xe0_c00262{left:419.580000px;}
.x37_c00262{left:421.500000px;}
.x4c_c00262{left:426.000000px;}
.x66_c00262{left:427.080000px;}
.x10a_c00262{left:429.000000px;}
.x70_c00262{left:432.420000px;}
.x1a_c00262{left:433.500000px;}
.x61_c00262{left:435.000000px;}
.x89_c00262{left:436.080000px;}
.xe6_c00262{left:438.000000px;}
.xb1_c00262{left:439.500000px;}
.x9c_c00262{left:440.580000px;}
.x80_c00262{left:442.500000px;}
.xbd_c00262{left:445.500000px;}
.xe1_c00262{left:446.580000px;}
.x40_c00262{left:448.500000px;}
.xc9_c00262{left:451.080000px;}
.x8a_c00262{left:453.420000px;}
.xab_c00262{left:455.775000px;}
.xcf_c00262{left:457.500000px;}
.xc4_c00262{left:459.000000px;}
.x28_c00262{left:461.580000px;}
.xb2_c00262{left:463.500000px;}
.xfb_c00262{left:464.580000px;}
.xc_c00262{left:467.580000px;}
.x6d_c00262{left:470.775000px;}
.x41_c00262{left:475.920000px;}
.x93_c00262{left:477.000000px;}
.xe7_c00262{left:478.500000px;}
.x67_c00262{left:481.080000px;}
.xf0_c00262{left:483.000000px;}
.x1b_c00262{left:487.500000px;}
.x4d_c00262{left:488.580000px;}
.xe2_c00262{left:490.500000px;}
.x62_c00262{left:491.580000px;}
.xa3_c00262{left:493.080000px;}
.xee_c00262{left:495.420000px;}
.x56_c00262{left:498.000000px;}
.xd_c00262{left:499.920000px;}
.x71_c00262{left:502.080000px;}
.xd9_c00262{left:504.000000px;}
.xb7_c00262{left:507.420000px;}
.xe8_c00262{left:510.000000px;}
.x29_c00262{left:511.500000px;}
.xfe_c00262{left:513.000000px;}
.x8b_c00262{left:514.080000px;}
.x57_c00262{left:516.420000px;}
.xbe_c00262{left:519.000000px;}
.xe_c00262{left:521.580000px;}
.x81_c00262{left:523.080000px;}
.xac_c00262{left:525.000000px;}
.x42_c00262{left:527.580000px;}
.x72_c00262{left:529.080000px;}
.xb8_c00262{left:534.000000px;}
.xe9_c00262{left:535.920000px;}
.xd0_c00262{left:537.000000px;}
.x2a_c00262{left:538.080000px;}
.x94_c00262{left:541.500000px;}
.x82_c00262{left:543.000000px;}
.x38_c00262{left:544.500000px;}
.xe3_c00262{left:546.000000px;}
.x7a_c00262{left:547.275000px;}
.x103_c00262{left:550.080000px;}
.x10b_c00262{left:552.000000px;}
.x1c_c00262{left:553.920000px;}
.x95_c00262{left:555.420000px;}
.xf1_c00262{left:556.500000px;}
.xa4_c00262{left:558.000000px;}
.x58_c00262{left:559.080000px;}
.x68_c00262{left:561.420000px;}
.x9d_c00262{left:563.580000px;}
.xbf_c00262{left:566.580000px;}
.xc5_c00262{left:572.580000px;}
.xef_c00262{left:574.920000px;}
.x8c_c00262{left:576.420000px;}
.xda_c00262{left:577.500000px;}
.x43_c00262{left:579.000000px;}
.x59_c00262{left:580.080000px;}
.x69_c00262{left:583.500000px;}
.xc6_c00262{left:585.000000px;}
.x4e_c00262{left:586.080000px;}
.xf_c00262{left:588.420000px;}
.x83_c00262{left:589.500000px;}
.x1d_c00262{left:591.420000px;}
.x2b_c00262{left:595.920000px;}
.xca_c00262{left:601.080000px;}
.x8d_c00262{left:602.145000px;}
.xa5_c00262{left:604.920000px;}
.xea_c00262{left:606.000000px;}
.x5a_c00262{left:607.500000px;}
.x44_c00262{left:610.500000px;}
.x73_c00262{left:612.000000px;}
.x39_c00262{left:615.000000px;}
.xb3_c00262{left:616.275000px;}
.x1e_c00262{left:618.000000px;}
.x107_c00262{left:621.000000px;}
.xdb_c00262{left:622.500000px;}
.x2c_c00262{left:624.000000px;}
.x104_c00262{left:628.080000px;}
.xcb_c00262{left:629.580000px;}
.x8e_c00262{left:631.080000px;}
.x10_c00262{left:632.580000px;}
.x4f_c00262{left:637.500000px;}
.xeb_c00262{left:639.000000px;}
.x5b_c00262{left:640.920000px;}
.x3a_c00262{left:642.000000px;}
.x9e_c00262{left:644.580000px;}
.xa6_c00262{left:647.580000px;}
.x7b_c00262{left:649.920000px;}
.x11_c00262{left:651.420000px;}
.xdc_c00262{left:652.500000px;}
.xb9_c00262{left:655.920000px;}
.x96_c00262{left:657.000000px;}
.x1f_c00262{left:660.000000px;}
.x2d_c00262{left:661.500000px;}
.xf2_c00262{left:662.580000px;}
.xa7_c00262{left:665.580000px;}
.x84_c00262{left:667.920000px;}
.xad_c00262{left:670.080000px;}
.x97_c00262{left:673.920000px;}
.x5c_c00262{left:675.000000px;}
.x12_c00262{left:678.000000px;}
.x2e_c00262{left:679.500000px;}
.xff_c00262{left:680.580000px;}
.x74_c00262{left:685.500000px;}
.x45_c00262{left:686.580000px;}
.xf8_c00262{left:688.500000px;}
.x9f_c00262{left:690.000000px;}
.x108_c00262{left:694.920000px;}
.x85_c00262{left:696.420000px;}
.xc0_c00262{left:699.420000px;}
.x10c_c00262{left:703.500000px;}
.x2_c00262{left:704.580000px;}
.xba_c00262{left:706.080000px;}
.x8f_c00262{left:708.420000px;}
.x105_c00262{left:709.920000px;}
.x20_c00262{left:711.000000px;}
.xf3_c00262{left:712.500000px;}
@media print{
.v0_c00262{vertical-align:0.000000pt;}
.v1_c00262{vertical-align:6.826667pt;}
.ls1_c00262{letter-spacing:0.000000pt;}
.ls0_c00262{letter-spacing:13.171200pt;}
.ws1_c00262{word-spacing:0.000000pt;}
.ws0_c00262{word-spacing:12.612281pt;}
.fs7_c00262{font-size:3.040000pt;}
.fs8_c00262{font-size:12.106667pt;}
.fs3_c00262{font-size:16.640000pt;}
.fs0_c00262{font-size:18.133333pt;}
.fs4_c00262{font-size:22.666667pt;}
.fs1_c00262{font-size:25.706667pt;}
.fs6_c00262{font-size:28.746667pt;}
.fs2_c00262{font-size:31.733333pt;}
.fs5_c00262{font-size:34.773333pt;}
.y0_c00262{bottom:0.000000pt;}
.yd9_c00262{bottom:234.066667pt;}
.ydb_c00262{bottom:235.026667pt;}
.yd7_c00262{bottom:235.400000pt;}
.ydc_c00262{bottom:235.973333pt;}
.yd8_c00262{bottom:237.306667pt;}
.yda_c00262{bottom:237.506667pt;}
.yd4_c00262{bottom:248.733333pt;}
.ycf_c00262{bottom:248.933333pt;}
.yd6_c00262{bottom:249.306667pt;}
.yd5_c00262{bottom:249.506667pt;}
.yd0_c00262{bottom:249.693333pt;}
.yd1_c00262{bottom:249.893333pt;}
.yd2_c00262{bottom:250.266667pt;}
.yd3_c00262{bottom:250.640000pt;}
.ycd_c00262{bottom:261.693333pt;}
.yca_c00262{bottom:262.066667pt;}
.yce_c00262{bottom:262.640000pt;}
.ycc_c00262{bottom:263.026667pt;}
.ycb_c00262{bottom:263.226667pt;}
.yc9_c00262{bottom:263.973333pt;}
.yc7_c00262{bottom:274.066667pt;}
.yc8_c00262{bottom:275.026667pt;}
.yc4_c00262{bottom:275.400000pt;}
.yc5_c00262{bottom:275.973333pt;}
.yc6_c00262{bottom:276.173333pt;}
.yc2_c00262{bottom:276.360000pt;}
.yc1_c00262{bottom:276.560000pt;}
.yc3_c00262{bottom:276.933333pt;}
.yc0_c00262{bottom:277.306667pt;}
.ybf_c00262{bottom:288.360000pt;}
.yba_c00262{bottom:299.973333pt;}
.yb9_c00262{bottom:300.733333pt;}
.yb8_c00262{bottom:300.933333pt;}
.ybc_c00262{bottom:301.693333pt;}
.ybd_c00262{bottom:301.893333pt;}
.ybb_c00262{bottom:302.640000pt;}
.ybe_c00262{bottom:303.600000pt;}
.yb2_c00262{bottom:313.306667pt;}
.yb5_c00262{bottom:314.066667pt;}
.yb7_c00262{bottom:315.026667pt;}
.yb4_c00262{bottom:315.226667pt;}
.yb3_c00262{bottom:315.973333pt;}
.yb6_c00262{bottom:316.933333pt;}
.yb0_c00262{bottom:326.640000pt;}
.yad_c00262{bottom:327.600000pt;}
.yaf_c00262{bottom:328.360000pt;}
.yb1_c00262{bottom:329.506667pt;}
.yae_c00262{bottom:330.266667pt;}
.yac_c00262{bottom:340.733333pt;}
.yab_c00262{bottom:340.933333pt;}
.yaa_c00262{bottom:341.693333pt;}
.ya9_c00262{bottom:342.640000pt;}
.ya8_c00262{bottom:343.600000pt;}
.ya5_c00262{bottom:354.066667pt;}
.ya6_c00262{bottom:354.640000pt;}
.ya7_c00262{bottom:354.840000pt;}
.ya4_c00262{bottom:355.226667pt;}
.ya2_c00262{bottom:355.600000pt;}
.ya3_c00262{bottom:355.973333pt;}
.ya1_c00262{bottom:367.400000pt;}
.ya0_c00262{bottom:369.306667pt;}
.y9b_c00262{bottom:380.360000pt;}
.y9f_c00262{bottom:380.560000pt;}
.y9d_c00262{bottom:380.933333pt;}
.y9a_c00262{bottom:381.306667pt;}
.y9c_c00262{bottom:381.893333pt;}
.y9e_c00262{bottom:382.266667pt;}
.y97_c00262{bottom:391.973333pt;}
.y94_c00262{bottom:393.306667pt;}
.y95_c00262{bottom:394.640000pt;}
.y99_c00262{bottom:395.226667pt;}
.y96_c00262{bottom:395.600000pt;}
.y98_c00262{bottom:395.973333pt;}
.y91_c00262{bottom:406.066667pt;}
.y92_c00262{bottom:407.026667pt;}
.y90_c00262{bottom:407.973333pt;}
.y8f_c00262{bottom:408.173333pt;}
.y93_c00262{bottom:408.933333pt;}
.y8a_c00262{bottom:419.600000pt;}
.y8e_c00262{bottom:420.360000pt;}
.y8c_c00262{bottom:420.560000pt;}
.y8b_c00262{bottom:421.306667pt;}
.y8d_c00262{bottom:422.266667pt;}
.y88_c00262{bottom:431.973333pt;}
.y89_c00262{bottom:432.733333pt;}
.y87_c00262{bottom:433.693333pt;}
.y86_c00262{bottom:434.640000pt;}
.y85_c00262{bottom:434.840000pt;}
.y84_c00262{bottom:446.066667pt;}
.y80_c00262{bottom:446.266667pt;}
.y83_c00262{bottom:447.026667pt;}
.y81_c00262{bottom:447.973333pt;}
.y82_c00262{bottom:448.933333pt;}
.y7f_c00262{bottom:460.360000pt;}
.y7e_c00262{bottom:471.400000pt;}
.y7a_c00262{bottom:472.360000pt;}
.y7c_c00262{bottom:473.306667pt;}
.y79_c00262{bottom:473.893333pt;}
.y7b_c00262{bottom:474.266667pt;}
.y7d_c00262{bottom:474.840000pt;}
.y78_c00262{bottom:484.733333pt;}
.y77_c00262{bottom:487.600000pt;}
.y74_c00262{bottom:499.026667pt;}
.y75_c00262{bottom:499.973333pt;}
.y76_c00262{bottom:500.173333pt;}
.y72_c00262{bottom:500.560000pt;}
.y73_c00262{bottom:500.933333pt;}
.y70_c00262{bottom:523.773333pt;}
.y6f_c00262{bottom:524.360000pt;}
.y71_c00262{bottom:525.693333pt;}
.y6a_c00262{bottom:539.773333pt;}
.y6c_c00262{bottom:541.106667pt;}
.y6d_c00262{bottom:541.693333pt;}
.y6b_c00262{bottom:541.893333pt;}
.y69_c00262{bottom:542.640000pt;}
.y6e_c00262{bottom:543.026667pt;}
.y68_c00262{bottom:558.066667pt;}
.y67_c00262{bottom:558.440000pt;}
.y66_c00262{bottom:560.360000pt;}
.y64_c00262{bottom:575.026667pt;}
.y63_c00262{bottom:575.773333pt;}
.y65_c00262{bottom:577.693333pt;}
.y5f_c00262{bottom:593.106667pt;}
.y62_c00262{bottom:593.493333pt;}
.y61_c00262{bottom:593.893333pt;}
.y60_c00262{bottom:595.026667pt;}
.y5e_c00262{bottom:595.226667pt;}
.y5b_c00262{bottom:609.693333pt;}
.y5a_c00262{bottom:610.440000pt;}
.y59_c00262{bottom:612.360000pt;}
.y5d_c00262{bottom:612.560000pt;}
.y5c_c00262{bottom:613.306667pt;}
.y56_c00262{bottom:627.773333pt;}
.y57_c00262{bottom:628.733333pt;}
.y55_c00262{bottom:629.693333pt;}
.y58_c00262{bottom:631.026667pt;}
.y52_c00262{bottom:645.106667pt;}
.y4f_c00262{bottom:647.026667pt;}
.y53_c00262{bottom:647.226667pt;}
.y54_c00262{bottom:647.973333pt;}
.y51_c00262{bottom:648.360000pt;}
.y50_c00262{bottom:648.373333pt;}
.y4c_c00262{bottom:662.440000pt;}
.y4e_c00262{bottom:663.773333pt;}
.y4d_c00262{bottom:664.360000pt;}
.y47_c00262{bottom:679.026667pt;}
.y4a_c00262{bottom:681.106667pt;}
.y49_c00262{bottom:682.066667pt;}
.y4b_c00262{bottom:682.266667pt;}
.y48_c00262{bottom:683.026667pt;}
.y45_c00262{bottom:698.440000pt;}
.y43_c00262{bottom:700.360000pt;}
.y46_c00262{bottom:700.560000pt;}
.y44_c00262{bottom:701.306667pt;}
.y41_c00262{bottom:715.773333pt;}
.y3f_c00262{bottom:717.693333pt;}
.y40_c00262{bottom:717.706667pt;}
.y42_c00262{bottom:717.893333pt;}
.y3e_c00262{bottom:733.106667pt;}
.y3b_c00262{bottom:750.826667pt;}
.y3c_c00262{bottom:751.400000pt;}
.y3d_c00262{bottom:751.773333pt;}
.y38_c00262{bottom:752.360000pt;}
.y39_c00262{bottom:752.560000pt;}
.y3a_c00262{bottom:753.706667pt;}
.y34_c00262{bottom:767.773333pt;}
.y36_c00262{bottom:768.360000pt;}
.y35_c00262{bottom:769.106667pt;}
.y37_c00262{bottom:770.066667pt;}
.y33_c00262{bottom:784.733333pt;}
.y30_c00262{bottom:786.440000pt;}
.y32_c00262{bottom:787.400000pt;}
.y31_c00262{bottom:788.373333pt;}
.y2f_c00262{bottom:803.773333pt;}
.y2c_c00262{bottom:804.360000pt;}
.y2e_c00262{bottom:804.560000pt;}
.y2d_c00262{bottom:805.306667pt;}
.y2b_c00262{bottom:805.693333pt;}
.y28_c00262{bottom:821.106667pt;}
.y29_c00262{bottom:821.893333pt;}
.y2a_c00262{bottom:822.640000pt;}
.y27_c00262{bottom:823.026667pt;}
.y25_c00262{bottom:837.693333pt;}
.y23_c00262{bottom:838.440000pt;}
.y26_c00262{bottom:839.400000pt;}
.y24_c00262{bottom:840.360000pt;}
.y1e_c00262{bottom:855.773333pt;}
.y20_c00262{bottom:856.733333pt;}
.y22_c00262{bottom:857.106667pt;}
.y1f_c00262{bottom:857.306667pt;}
.y1d_c00262{bottom:857.693333pt;}
.y21_c00262{bottom:859.026667pt;}
.y18_c00262{bottom:873.106667pt;}
.y1c_c00262{bottom:874.066667pt;}
.y19_c00262{bottom:874.440000pt;}
.y17_c00262{bottom:875.026667pt;}
.y1b_c00262{bottom:875.973333pt;}
.y1a_c00262{bottom:876.360000pt;}
.y15_c00262{bottom:890.826667pt;}
.y14_c00262{bottom:892.360000pt;}
.y16_c00262{bottom:893.693333pt;}
.yf_c00262{bottom:907.773333pt;}
.y13_c00262{bottom:909.106667pt;}
.y10_c00262{bottom:909.693333pt;}
.y11_c00262{bottom:909.893333pt;}
.ye_c00262{bottom:910.640000pt;}
.y12_c00262{bottom:911.026667pt;}
.y8_c00262{bottom:925.106667pt;}
.yb_c00262{bottom:926.440000pt;}
.y9_c00262{bottom:927.026667pt;}
.ya_c00262{bottom:927.226667pt;}
.yd_c00262{bottom:927.973333pt;}
.yc_c00262{bottom:928.360000pt;}
.y5_c00262{bottom:941.693333pt;}
.y3_c00262{bottom:943.773333pt;}
.y6_c00262{bottom:944.560000pt;}
.y7_c00262{bottom:944.933333pt;}
.y4_c00262{bottom:945.693333pt;}
.y2_c00262{bottom:977.693333pt;}
.y1_c00262{bottom:979.600000pt;}
.h8_c00262{height:3.739141pt;}
.h9_c00262{height:14.890964pt;}
.h4_c00262{height:20.466875pt;}
.h1_c00262{height:22.303646pt;}
.h5_c00262{height:27.879557pt;}
.h2_c00262{height:31.618698pt;}
.ha_c00262{height:34.706224pt;}
.h7_c00262{height:35.357839pt;}
.h3_c00262{height:39.031380pt;}
.h6_c00262{height:42.770521pt;}
.h0_c00262{height:1186.666667pt;}
.w0_c00262{width:782.666667pt;}
.x0_c00262{left:0.000000pt;}
.x13_c00262{left:134.666667pt;}
.x3_c00262{left:135.626667pt;}
.xae_c00262{left:137.133333pt;}
.xa8_c00262{left:145.333333pt;}
.xf9_c00262{left:146.666667pt;}
.x33_c00262{left:147.626667pt;}
.x63_c00262{left:149.333333pt;}
.x3b_c00262{left:151.040000pt;}
.x4_c00262{left:153.333333pt;}
.x21_c00262{left:158.666667pt;}
.xc1_c00262{left:160.373333pt;}
.x7c_c00262{left:162.666667pt;}
.x46_c00262{left:164.000000pt;}
.xfc_c00262{left:164.960000pt;}
.x50_c00262{left:168.373333pt;}
.xf4_c00262{left:169.333333pt;}
.x3c_c00262{left:173.333333pt;}
.xec_c00262{left:174.293333pt;}
.xd1_c00262{left:176.000000pt;}
.x6a_c00262{left:179.626667pt;}
.xa0_c00262{left:180.960000pt;}
.x90_c00262{left:181.906667pt;}
.x5_c00262{left:184.000000pt;}
.x14_c00262{left:184.960000pt;}
.x51_c00262{left:186.666667pt;}
.x75_c00262{left:187.626667pt;}
.x86_c00262{left:190.093333pt;}
.xfa_c00262{left:192.000000pt;}
.x47_c00262{left:194.666667pt;}
.xcc_c00262{left:196.000000pt;}
.xd2_c00262{left:199.626667pt;}
.x34_c00262{left:200.960000pt;}
.x5d_c00262{left:203.040000pt;}
.xa9_c00262{left:204.000000pt;}
.x6_c00262{left:205.133333pt;}
.x98_c00262{left:206.666667pt;}
.xd5_c00262{left:208.373333pt;}
.x76_c00262{left:209.333333pt;}
.xed_c00262{left:210.293333pt;}
.x100_c00262{left:214.293333pt;}
.x3d_c00262{left:218.666667pt;}
.x6e_c00262{left:220.000000pt;}
.x2f_c00262{left:221.706667pt;}
.x15_c00262{left:225.333333pt;}
.xa1_c00262{left:226.666667pt;}
.x10d_c00262{left:227.626667pt;}
.x64_c00262{left:229.333333pt;}
.x77_c00262{left:230.666667pt;}
.x22_c00262{left:233.333333pt;}
.x5e_c00262{left:234.666667pt;}
.x7_c00262{left:236.000000pt;}
.x48_c00262{left:237.333333pt;}
.xd3_c00262{left:238.666667pt;}
.x99_c00262{left:244.373333pt;}
.x16_c00262{left:245.333333pt;}
.xc7_c00262{left:246.293333pt;}
.x30_c00262{left:249.333333pt;}
.xb4_c00262{left:250.466667pt;}
.x52_c00262{left:252.000000pt;}
.x101_c00262{left:252.960000pt;}
.xe4_c00262{left:254.293333pt;}
.xd6_c00262{left:256.000000pt;}
.x17_c00262{left:257.333333pt;}
.x23_c00262{left:258.666667pt;}
.x7d_c00262{left:259.626667pt;}
.xcd_c00262{left:260.960000pt;}
.xdd_c00262{left:264.373333pt;}
.x49_c00262{left:265.333333pt;}
.x8_c00262{left:267.040000pt;}
.xbb_c00262{left:268.373333pt;}
.x87_c00262{left:269.333333pt;}
.xf5_c00262{left:270.293333pt;}
.x6b_c00262{left:271.626667pt;}
.x35_c00262{left:273.333333pt;}
.x91_c00262{left:274.666667pt;}
.x78_c00262{left:276.000000pt;}
.xc8_c00262{left:279.040000pt;}
.x109_c00262{left:281.333333pt;}
.x3e_c00262{left:283.040000pt;}
.xf6_c00262{left:284.000000pt;}
.x6c_c00262{left:284.960000pt;}
.xaa_c00262{left:286.293333pt;}
.xaf_c00262{left:287.626667pt;}
.xd4_c00262{left:289.333333pt;}
.x53_c00262{left:290.666667pt;}
.xce_c00262{left:292.000000pt;}
.x102_c00262{left:292.960000pt;}
.x24_c00262{left:294.666667pt;}
.xc2_c00262{left:297.706667pt;}
.xa2_c00262{left:299.040000pt;}
.x9_c00262{left:300.000000pt;}
.x7e_c00262{left:301.333333pt;}
.x6f_c00262{left:305.906667pt;}
.x9a_c00262{left:307.626667pt;}
.x25_c00262{left:309.706667pt;}
.xa_c00262{left:311.040000pt;}
.xc3_c00262{left:312.960000pt;}
.x36_c00262{left:315.040000pt;}
.x31_c00262{left:316.000000pt;}
.x18_c00262{left:317.333333pt;}
.xb5_c00262{left:318.666667pt;}
.x79_c00262{left:320.000000pt;}
.x4a_c00262{left:321.333333pt;}
.x88_c00262{left:324.000000pt;}
.xde_c00262{left:325.333333pt;}
.x54_c00262{left:326.293333pt;}
.x32_c00262{left:329.333333pt;}
.x7f_c00262{left:330.666667pt;}
.xf7_c00262{left:331.626667pt;}
.x26_c00262{left:333.333333pt;}
.xdf_c00262{left:334.666667pt;}
.xd7_c00262{left:336.000000pt;}
.xbc_c00262{left:337.333333pt;}
.xe5_c00262{left:338.666667pt;}
.x5f_c00262{left:340.000000pt;}
.x106_c00262{left:344.000000pt;}
.xb_c00262{left:345.706667pt;}
.x92_c00262{left:347.240000pt;}
.x65_c00262{left:348.760000pt;}
.xb6_c00262{left:350.666667pt;}
.x55_c00262{left:353.333333pt;}
.xb0_c00262{left:354.466667pt;}
.xfd_c00262{left:356.000000pt;}
.x19_c00262{left:357.333333pt;}
.x3f_c00262{left:359.040000pt;}
.x4b_c00262{left:360.373333pt;}
.x1_c00262{left:361.333333pt;}
.x10e_c00262{left:363.626667pt;}
.x60_c00262{left:365.333333pt;}
.x9b_c00262{left:366.293333pt;}
.x27_c00262{left:368.000000pt;}
.xd8_c00262{left:368.960000pt;}
.xe0_c00262{left:372.960000pt;}
.x37_c00262{left:374.666667pt;}
.x4c_c00262{left:378.666667pt;}
.x66_c00262{left:379.626667pt;}
.x10a_c00262{left:381.333333pt;}
.x70_c00262{left:384.373333pt;}
.x1a_c00262{left:385.333333pt;}
.x61_c00262{left:386.666667pt;}
.x89_c00262{left:387.626667pt;}
.xe6_c00262{left:389.333333pt;}
.xb1_c00262{left:390.666667pt;}
.x9c_c00262{left:391.626667pt;}
.x80_c00262{left:393.333333pt;}
.xbd_c00262{left:396.000000pt;}
.xe1_c00262{left:396.960000pt;}
.x40_c00262{left:398.666667pt;}
.xc9_c00262{left:400.960000pt;}
.x8a_c00262{left:403.040000pt;}
.xab_c00262{left:405.133333pt;}
.xcf_c00262{left:406.666667pt;}
.xc4_c00262{left:408.000000pt;}
.x28_c00262{left:410.293333pt;}
.xb2_c00262{left:412.000000pt;}
.xfb_c00262{left:412.960000pt;}
.xc_c00262{left:415.626667pt;}
.x6d_c00262{left:418.466667pt;}
.x41_c00262{left:423.040000pt;}
.x93_c00262{left:424.000000pt;}
.xe7_c00262{left:425.333333pt;}
.x67_c00262{left:427.626667pt;}
.xf0_c00262{left:429.333333pt;}
.x1b_c00262{left:433.333333pt;}
.x4d_c00262{left:434.293333pt;}
.xe2_c00262{left:436.000000pt;}
.x62_c00262{left:436.960000pt;}
.xa3_c00262{left:438.293333pt;}
.xee_c00262{left:440.373333pt;}
.x56_c00262{left:442.666667pt;}
.xd_c00262{left:444.373333pt;}
.x71_c00262{left:446.293333pt;}
.xd9_c00262{left:448.000000pt;}
.xb7_c00262{left:451.040000pt;}
.xe8_c00262{left:453.333333pt;}
.x29_c00262{left:454.666667pt;}
.xfe_c00262{left:456.000000pt;}
.x8b_c00262{left:456.960000pt;}
.x57_c00262{left:459.040000pt;}
.xbe_c00262{left:461.333333pt;}
.xe_c00262{left:463.626667pt;}
.x81_c00262{left:464.960000pt;}
.xac_c00262{left:466.666667pt;}
.x42_c00262{left:468.960000pt;}
.x72_c00262{left:470.293333pt;}
.xb8_c00262{left:474.666667pt;}
.xe9_c00262{left:476.373333pt;}
.xd0_c00262{left:477.333333pt;}
.x2a_c00262{left:478.293333pt;}
.x94_c00262{left:481.333333pt;}
.x82_c00262{left:482.666667pt;}
.x38_c00262{left:484.000000pt;}
.xe3_c00262{left:485.333333pt;}
.x7a_c00262{left:486.466667pt;}
.x103_c00262{left:488.960000pt;}
.x10b_c00262{left:490.666667pt;}
.x1c_c00262{left:492.373333pt;}
.x95_c00262{left:493.706667pt;}
.xf1_c00262{left:494.666667pt;}
.xa4_c00262{left:496.000000pt;}
.x58_c00262{left:496.960000pt;}
.x68_c00262{left:499.040000pt;}
.x9d_c00262{left:500.960000pt;}
.xbf_c00262{left:503.626667pt;}
.xc5_c00262{left:508.960000pt;}
.xef_c00262{left:511.040000pt;}
.x8c_c00262{left:512.373333pt;}
.xda_c00262{left:513.333333pt;}
.x43_c00262{left:514.666667pt;}
.x59_c00262{left:515.626667pt;}
.x69_c00262{left:518.666667pt;}
.xc6_c00262{left:520.000000pt;}
.x4e_c00262{left:520.960000pt;}
.xf_c00262{left:523.040000pt;}
.x83_c00262{left:524.000000pt;}
.x1d_c00262{left:525.706667pt;}
.x2b_c00262{left:529.706667pt;}
.xca_c00262{left:534.293333pt;}
.x8d_c00262{left:535.240000pt;}
.xa5_c00262{left:537.706667pt;}
.xea_c00262{left:538.666667pt;}
.x5a_c00262{left:540.000000pt;}
.x44_c00262{left:542.666667pt;}
.x73_c00262{left:544.000000pt;}
.x39_c00262{left:546.666667pt;}
.xb3_c00262{left:547.800000pt;}
.x1e_c00262{left:549.333333pt;}
.x107_c00262{left:552.000000pt;}
.xdb_c00262{left:553.333333pt;}
.x2c_c00262{left:554.666667pt;}
.x104_c00262{left:558.293333pt;}
.xcb_c00262{left:559.626667pt;}
.x8e_c00262{left:560.960000pt;}
.x10_c00262{left:562.293333pt;}
.x4f_c00262{left:566.666667pt;}
.xeb_c00262{left:568.000000pt;}
.x5b_c00262{left:569.706667pt;}
.x3a_c00262{left:570.666667pt;}
.x9e_c00262{left:572.960000pt;}
.xa6_c00262{left:575.626667pt;}
.x7b_c00262{left:577.706667pt;}
.x11_c00262{left:579.040000pt;}
.xdc_c00262{left:580.000000pt;}
.xb9_c00262{left:583.040000pt;}
.x96_c00262{left:584.000000pt;}
.x1f_c00262{left:586.666667pt;}
.x2d_c00262{left:588.000000pt;}
.xf2_c00262{left:588.960000pt;}
.xa7_c00262{left:591.626667pt;}
.x84_c00262{left:593.706667pt;}
.xad_c00262{left:595.626667pt;}
.x97_c00262{left:599.040000pt;}
.x5c_c00262{left:600.000000pt;}
.x12_c00262{left:602.666667pt;}
.x2e_c00262{left:604.000000pt;}
.xff_c00262{left:604.960000pt;}
.x74_c00262{left:609.333333pt;}
.x45_c00262{left:610.293333pt;}
.xf8_c00262{left:612.000000pt;}
.x9f_c00262{left:613.333333pt;}
.x108_c00262{left:617.706667pt;}
.x85_c00262{left:619.040000pt;}
.xc0_c00262{left:621.706667pt;}
.x10c_c00262{left:625.333333pt;}
.x2_c00262{left:626.293333pt;}
.xba_c00262{left:627.626667pt;}
.x8f_c00262{left:629.706667pt;}
.x105_c00262{left:631.040000pt;}
.x20_c00262{left:632.000000pt;}
.xf3_c00262{left:633.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5645e3076115ec1814295913.woff2')format("woff");}.ff1_c00263{font-family:ff1_c00263;line-height:1.688965;font-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_c00263{transform:matrix(0.344118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344118,0.000000,0.000000,0.250000,0,0);}
.m8d_c00263{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m45_c00263{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m12_c00263{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m58_c00263{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.mf8_c00263{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00263{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mda_c00263{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.mfd_c00263{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mfe_c00263{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m106_c00263{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m98_c00263{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m100_c00263{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m41_c00263{transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);}
.ma0_c00263{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.me6_c00263{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mdb_c00263{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m84_c00263{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.maa_c00263{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m33_c00263{transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);}
.mc7_c00263{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mc8_c00263{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m17_c00263{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m10f_c00263{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.mbf_c00263{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.md6_c00263{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m10d_c00263{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.mfa_c00263{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);}
.md5_c00263{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.md0_c00263{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m31_c00263{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.m103_c00263{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.md1_c00263{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.me4_c00263{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.me_c00263{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.m70_c00263{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.meb_c00263{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m7f_c00263{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m52_c00263{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.mf4_c00263{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mbd_c00263{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.ma_c00263{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m59_c00263{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m5c_c00263{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m7d_c00263{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mba_c00263{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.m4c_c00263{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m35_c00263{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m21_c00263{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m10e_c00263{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m69_c00263{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m105_c00263{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m22_c00263{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m24_c00263{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m86_c00263{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.me0_c00263{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m8a_c00263{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m88_c00263{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m77_c00263{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m39_c00263{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.ma3_c00263{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m51_c00263{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.mac_c00263{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.mca_c00263{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m87_c00263{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m37_c00263{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m3d_c00263{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.maf_c00263{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m14_c00263{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m107_c00263{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m20_c00263{transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);}
.m89_c00263{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.mef_c00263{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mc3_c00263{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.mb5_c00263{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.ma1_c00263{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m66_c00263{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m8b_c00263{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m3c_c00263{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.mee_c00263{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m9e_c00263{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mf3_c00263{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m95_c00263{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m111_c00263{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.mde_c00263{transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);}
.m110_c00263{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m10_c00263{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mb1_c00263{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mdf_c00263{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m47_c00263{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m4e_c00263{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m7c_c00263{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.m2b_c00263{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.mae_c00263{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.m2a_c00263{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.mc9_c00263{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m108_c00263{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.m7_c00263{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.md_c00263{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m4a_c00263{transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);}
.m49_c00263{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.me9_c00263{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m1e_c00263{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m81_c00263{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m28_c00263{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.m5d_c00263{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m13_c00263{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m99_c00263{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.mab_c00263{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.ma8_c00263{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.mc_c00263{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m43_c00263{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.md2_c00263{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m3e_c00263{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.mdd_c00263{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m101_c00263{transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);}
.m1_c00263{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mf_c00263{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m93_c00263{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m10c_c00263{transform:matrix(0.493277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493277,0.000000,0.000000,0.250000,0,0);}
.ma9_c00263{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mb8_c00263{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m11_c00263{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_c00263{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m76_c00263{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mf0_c00263{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.me1_c00263{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.mc2_c00263{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m7e_c00263{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m73_c00263{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m15_c00263{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m3b_c00263{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m5e_c00263{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m29_c00263{transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);}
.mf9_c00263{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m57_c00263{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.m6f_c00263{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m9_c00263{transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);}
.m48_c00263{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.m75_c00263{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m68_c00263{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m46_c00263{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.mcd_c00263{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.mad_c00263{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m9d_c00263{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m2e_c00263{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m8f_c00263{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.ma4_c00263{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m10b_c00263{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.me2_c00263{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m55_c00263{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.mc0_c00263{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mf6_c00263{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m74_c00263{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m71_c00263{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m9c_c00263{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mcf_c00263{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mec_c00263{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.mff_c00263{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m9b_c00263{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m61_c00263{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m60_c00263{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mb7_c00263{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m62_c00263{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m4d_c00263{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m64_c00263{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mc5_c00263{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mce_c00263{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mb4_c00263{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.ma2_c00263{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m63_c00263{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.me7_c00263{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.md3_c00263{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m85_c00263{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m4b_c00263{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.mfb_c00263{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mcb_c00263{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mbe_c00263{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mb2_c00263{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m27_c00263{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m6e_c00263{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m54_c00263{transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);}
.m16_c00263{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.ma7_c00263{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m5b_c00263{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m72_c00263{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m9a_c00263{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mf2_c00263{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m7a_c00263{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mb3_c00263{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m6b_c00263{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.mb0_c00263{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m104_c00263{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);}
.m79_c00263{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m32_c00263{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.m102_c00263{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.me3_c00263{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m67_c00263{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m10a_c00263{transform:matrix(0.572356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572356,0.000000,0.000000,0.250000,0,0);}
.m96_c00263{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.ma5_c00263{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mcc_c00263{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mf5_c00263{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mb9_c00263{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m36_c00263{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m44_c00263{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_c00263{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.mbc_c00263{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m1a_c00263{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m91_c00263{transform:matrix(0.587059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587059,0.000000,0.000000,0.250000,0,0);}
.me8_c00263{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.mfc_c00263{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m34_c00263{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m80_c00263{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m4f_c00263{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.mdc_c00263{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.md8_c00263{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m109_c00263{transform:matrix(0.599066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599066,0.000000,0.000000,0.250000,0,0);}
.mc1_c00263{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.m8e_c00263{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);}
.m94_c00263{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m65_c00263{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m6d_c00263{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m6a_c00263{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m9f_c00263{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m3a_c00263{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.mb_c00263{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m0_c00263{transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);}
.m8_c00263{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);}
.m97_c00263{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_c00263{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m6_c00263{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m19_c00263{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m38_c00263{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m23_c00263{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m90_c00263{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.mf1_c00263{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m30_c00263{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m2c_c00263{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);}
.m5_c00263{transform:matrix(0.651471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651471,0.000000,0.000000,0.250000,0,0);}
.m3f_c00263{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.me5_c00263{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.md7_c00263{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m92_c00263{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m42_c00263{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.mea_c00263{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m8c_c00263{transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);}
.m3_c00263{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.md4_c00263{transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);}
.m1c_c00263{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m1f_c00263{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m40_c00263{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m1d_c00263{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mf7_c00263{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m2d_c00263{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);}
.m50_c00263{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m78_c00263{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mb6_c00263{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mc6_c00263{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.md9_c00263{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m2f_c00263{transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);}
.m5f_c00263{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m6c_c00263{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m7b_c00263{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mc4_c00263{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m82_c00263{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mbb_c00263{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m83_c00263{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.med_c00263{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.m25_c00263{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m4_c00263{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m26_c00263{transform:matrix(1.066079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.066079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.066079,0.000000,0.000000,0.250000,0,0);}
.m2_c00263{transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);}
.m5a_c00263{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,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;}
}
.ws3_c00263{word-spacing:-5.871000px;}
.ws0_c00263{word-spacing:-2.591779px;}
.ws1_c00263{word-spacing:-2.556473px;}
.ws4_c00263{word-spacing:0.000000px;}
.ws2_c00263{word-spacing:0.129000px;}
.fc0_c00263{color:transparent;}
.fs7_c00263{font-size:3.420000px;}
.fs2_c00263{font-size:13.620000px;}
.fs5_c00263{font-size:18.720000px;}
.fs0_c00263{font-size:20.400000px;}
.fs3_c00263{font-size:25.500000px;}
.fs1_c00263{font-size:28.920000px;}
.fs4_c00263{font-size:32.340000px;}
.fs6_c00263{font-size:35.700000px;}
.fs8_c00263{font-size:39.120000px;}
.y0_c00263{bottom:0.000000px;}
.yed_c00263{bottom:249.825000px;}
.yea_c00263{bottom:250.905000px;}
.ye9_c00263{bottom:251.745000px;}
.yee_c00263{bottom:251.970000px;}
.ye8_c00263{bottom:252.825000px;}
.yec_c00263{bottom:253.245000px;}
.ye7_c00263{bottom:253.905000px;}
.yeb_c00263{bottom:255.405000px;}
.ye6_c00263{bottom:270.825000px;}
.ye2_c00263{bottom:271.245000px;}
.ye3_c00263{bottom:271.470000px;}
.ydf_c00263{bottom:272.325000px;}
.ye5_c00263{bottom:272.745000px;}
.ye1_c00263{bottom:273.405000px;}
.ye0_c00263{bottom:274.470000px;}
.ye4_c00263{bottom:274.905000px;}
.ydc_c00263{bottom:290.745000px;}
.yde_c00263{bottom:292.245000px;}
.yda_c00263{bottom:292.905000px;}
.ydb_c00263{bottom:293.130000px;}
.yd9_c00263{bottom:293.970000px;}
.ydd_c00263{bottom:294.405000px;}
.yd5_c00263{bottom:311.745000px;}
.yd7_c00263{bottom:312.630000px;}
.yd8_c00263{bottom:313.470000px;}
.yd6_c00263{bottom:313.905000px;}
.yd1_c00263{bottom:331.245000px;}
.yd3_c00263{bottom:331.680000px;}
.yd2_c00263{bottom:333.405000px;}
.yd4_c00263{bottom:334.905000px;}
.ycf_c00263{bottom:350.745000px;}
.ycc_c00263{bottom:352.905000px;}
.ycd_c00263{bottom:353.130000px;}
.yce_c00263{bottom:353.970000px;}
.yd0_c00263{bottom:354.405000px;}
.yca_c00263{bottom:371.325000px;}
.yc7_c00263{bottom:371.550000px;}
.ycb_c00263{bottom:371.745000px;}
.yc6_c00263{bottom:372.405000px;}
.yc9_c00263{bottom:373.470000px;}
.yc8_c00263{bottom:373.905000px;}
.yc1_c00263{bottom:389.745000px;}
.yc4_c00263{bottom:389.970000px;}
.yc3_c00263{bottom:391.245000px;}
.yc0_c00263{bottom:392.130000px;}
.yc5_c00263{bottom:392.325000px;}
.yc2_c00263{bottom:393.405000px;}
.yba_c00263{bottom:408.405000px;}
.ybd_c00263{bottom:410.325000px;}
.ybe_c00263{bottom:410.745000px;}
.ybf_c00263{bottom:411.630000px;}
.ybb_c00263{bottom:412.905000px;}
.ybc_c00263{bottom:413.970000px;}
.yb8_c00263{bottom:427.905000px;}
.yb7_c00263{bottom:430.245000px;}
.yb9_c00263{bottom:431.130000px;}
.yb6_c00263{bottom:432.405000px;}
.yb4_c00263{bottom:448.905000px;}
.yb3_c00263{bottom:449.745000px;}
.yb5_c00263{bottom:450.825000px;}
.yb1_c00263{bottom:451.905000px;}
.yb2_c00263{bottom:452.130000px;}
.yb0_c00263{bottom:468.405000px;}
.yab_c00263{bottom:469.245000px;}
.yac_c00263{bottom:471.405000px;}
.yad_c00263{bottom:471.630000px;}
.yaf_c00263{bottom:471.825000px;}
.yaa_c00263{bottom:472.470000px;}
.yae_c00263{bottom:472.905000px;}
.ya9_c00263{bottom:490.050000px;}
.ya8_c00263{bottom:490.245000px;}
.ya7_c00263{bottom:490.905000px;}
.ya5_c00263{bottom:491.130000px;}
.ya6_c00263{bottom:492.405000px;}
.ya4_c00263{bottom:509.325000px;}
.ya3_c00263{bottom:509.745000px;}
.ya0_c00263{bottom:510.405000px;}
.ya2_c00263{bottom:510.630000px;}
.ya1_c00263{bottom:511.905000px;}
.y9f_c00263{bottom:526.905000px;}
.y9c_c00263{bottom:529.245000px;}
.y9b_c00263{bottom:530.130000px;}
.y9d_c00263{bottom:530.325000px;}
.y9e_c00263{bottom:530.970000px;}
.y9a_c00263{bottom:531.405000px;}
.y99_c00263{bottom:547.905000px;}
.y95_c00263{bottom:548.745000px;}
.y98_c00263{bottom:549.630000px;}
.y97_c00263{bottom:550.470000px;}
.y96_c00263{bottom:550.905000px;}
.y91_c00263{bottom:568.245000px;}
.y90_c00263{bottom:569.130000px;}
.y94_c00263{bottom:569.325000px;}
.y93_c00263{bottom:570.405000px;}
.y92_c00263{bottom:571.470000px;}
.y8c_c00263{bottom:587.325000px;}
.y8f_c00263{bottom:587.745000px;}
.y8d_c00263{bottom:588.630000px;}
.y8e_c00263{bottom:588.825000px;}
.y8a_c00263{bottom:589.905000px;}
.y8b_c00263{bottom:590.970000px;}
.y85_c00263{bottom:607.245000px;}
.y86_c00263{bottom:608.325000px;}
.y87_c00263{bottom:609.405000px;}
.y88_c00263{bottom:609.630000px;}
.y89_c00263{bottom:610.470000px;}
.y84_c00263{bottom:628.245000px;}
.y82_c00263{bottom:628.905000px;}
.y81_c00263{bottom:629.130000px;}
.y80_c00263{bottom:629.970000px;}
.y83_c00263{bottom:630.405000px;}
.y79_c00263{bottom:646.245000px;}
.y7b_c00263{bottom:647.325000px;}
.y7c_c00263{bottom:647.550000px;}
.y7e_c00263{bottom:647.745000px;}
.y7a_c00263{bottom:648.405000px;}
.y7f_c00263{bottom:648.630000px;}
.y7d_c00263{bottom:649.905000px;}
.y75_c00263{bottom:665.745000px;}
.y76_c00263{bottom:666.825000px;}
.y78_c00263{bottom:667.245000px;}
.y74_c00263{bottom:667.905000px;}
.y77_c00263{bottom:669.405000px;}
.y70_c00263{bottom:686.745000px;}
.y71_c00263{bottom:687.630000px;}
.y73_c00263{bottom:687.825000px;}
.y72_c00263{bottom:688.905000px;}
.y6d_c00263{bottom:706.245000px;}
.y6c_c00263{bottom:708.405000px;}
.y6f_c00263{bottom:708.630000px;}
.y6e_c00263{bottom:709.470000px;}
.y68_c00263{bottom:725.325000px;}
.y67_c00263{bottom:725.745000px;}
.y6b_c00263{bottom:726.630000px;}
.y69_c00263{bottom:727.905000px;}
.y6a_c00263{bottom:728.970000px;}
.y66_c00263{bottom:745.245000px;}
.y63_c00263{bottom:746.130000px;}
.y65_c00263{bottom:746.325000px;}
.y64_c00263{bottom:747.405000px;}
.y5d_c00263{bottom:765.825000px;}
.y5f_c00263{bottom:766.245000px;}
.y5e_c00263{bottom:766.905000px;}
.y61_c00263{bottom:767.130000px;}
.y60_c00263{bottom:767.325000px;}
.y62_c00263{bottom:768.405000px;}
.y5b_c00263{bottom:784.470000px;}
.y5a_c00263{bottom:785.745000px;}
.y58_c00263{bottom:786.630000px;}
.y5c_c00263{bottom:786.825000px;}
.y59_c00263{bottom:787.905000px;}
.y57_c00263{bottom:805.245000px;}
.y56_c00263{bottom:805.905000px;}
.y55_c00263{bottom:807.405000px;}
.y54_c00263{bottom:823.470000px;}
.y51_c00263{bottom:824.745000px;}
.y53_c00263{bottom:825.630000px;}
.y50_c00263{bottom:826.470000px;}
.y4f_c00263{bottom:826.905000px;}
.y52_c00263{bottom:827.970000px;}
.y4b_c00263{bottom:844.245000px;}
.y4e_c00263{bottom:845.130000px;}
.y4d_c00263{bottom:846.405000px;}
.y4c_c00263{bottom:846.420000px;}
.y49_c00263{bottom:869.970000px;}
.y4a_c00263{bottom:870.825000px;}
.y48_c00263{bottom:871.905000px;}
.y41_c00263{bottom:884.970000px;}
.y43_c00263{bottom:885.825000px;}
.y44_c00263{bottom:886.050000px;}
.y45_c00263{bottom:886.905000px;}
.y47_c00263{bottom:887.130000px;}
.y42_c00263{bottom:887.970000px;}
.y46_c00263{bottom:889.050000px;}
.y40_c00263{bottom:900.825000px;}
.y3a_c00263{bottom:901.050000px;}
.y3b_c00263{bottom:901.905000px;}
.y3d_c00263{bottom:902.130000px;}
.y3c_c00263{bottom:902.970000px;}
.y3e_c00263{bottom:903.195000px;}
.y3f_c00263{bottom:904.050000px;}
.y38_c00263{bottom:915.405000px;}
.y37_c00263{bottom:915.825000px;}
.y39_c00263{bottom:917.970000px;}
.y30_c00263{bottom:929.550000px;}
.y33_c00263{bottom:930.405000px;}
.y32_c00263{bottom:930.630000px;}
.y35_c00263{bottom:930.825000px;}
.y34_c00263{bottom:931.470000px;}
.y36_c00263{bottom:932.130000px;}
.y31_c00263{bottom:932.550000px;}
.y2f_c00263{bottom:945.405000px;}
.y2e_c00263{bottom:946.470000px;}
.y28_c00263{bottom:959.970000px;}
.y2b_c00263{bottom:960.825000px;}
.y2c_c00263{bottom:961.905000px;}
.y2d_c00263{bottom:962.130000px;}
.y2a_c00263{bottom:962.550000px;}
.y29_c00263{bottom:962.970000px;}
.y24_c00263{bottom:974.550000px;}
.y26_c00263{bottom:975.405000px;}
.y27_c00263{bottom:976.470000px;}
.y25_c00263{bottom:977.550000px;}
.y20_c00263{bottom:989.325000px;}
.y21_c00263{bottom:989.550000px;}
.y22_c00263{bottom:990.405000px;}
.y1f_c00263{bottom:991.470000px;}
.y23_c00263{bottom:991.695000px;}
.y1e_c00263{bottom:992.550000px;}
.y1c_c00263{bottom:1004.325000px;}
.y17_c00263{bottom:1005.195000px;}
.y1a_c00263{bottom:1005.405000px;}
.y18_c00263{bottom:1006.050000px;}
.y19_c00263{bottom:1006.470000px;}
.y1b_c00263{bottom:1006.695000px;}
.y1d_c00263{bottom:1007.550000px;}
.y12_c00263{bottom:1018.905000px;}
.y16_c00263{bottom:1019.325000px;}
.y14_c00263{bottom:1020.405000px;}
.y13_c00263{bottom:1021.695000px;}
.y15_c00263{bottom:1022.550000px;}
.y10_c00263{bottom:1033.905000px;}
.ye_c00263{bottom:1034.130000px;}
.y11_c00263{bottom:1034.970000px;}
.yf_c00263{bottom:1036.050000px;}
.y9_c00263{bottom:1047.825000px;}
.yc_c00263{bottom:1048.470000px;}
.y8_c00263{bottom:1048.905000px;}
.ya_c00263{bottom:1049.130000px;}
.yb_c00263{bottom:1049.970000px;}
.yd_c00263{bottom:1051.470000px;}
.y7_c00263{bottom:1062.825000px;}
.y5_c00263{bottom:1063.905000px;}
.y6_c00263{bottom:1064.970000px;}
.y3_c00263{bottom:1065.195000px;}
.y4_c00263{bottom:1066.050000px;}
.y2_c00263{bottom:1098.405000px;}
.y1_c00263{bottom:1100.550000px;}
.h8_c00263{height:4.206533px;}
.h3_c00263{height:16.752334px;}
.h6_c00263{height:23.025234px;}
.h1_c00263{height:25.091602px;}
.h4_c00263{height:31.364502px;}
.h2_c00263{height:35.571035px;}
.h5_c00263{height:39.777568px;}
.h7_c00263{height:43.910303px;}
.h9_c00263{height:48.116836px;}
.h0_c00263{height:1335.000000px;}
.w0_c00263{width:880.500000px;}
.x0_c00263{left:0.000000px;}
.xde_c00263{left:150.000000px;}
.x2_c00263{left:151.080000px;}
.x11_c00263{left:152.580000px;}
.x42_c00263{left:163.500000px;}
.x64_c00263{left:165.000000px;}
.x2b_c00263{left:166.500000px;}
.x3_c00263{left:167.580000px;}
.xb5_c00263{left:169.920000px;}
.x104_c00263{left:175.080000px;}
.xbf_c00263{left:177.420000px;}
.x88_c00263{left:178.500000px;}
.x5a_c00263{left:179.580000px;}
.x51_c00263{left:181.080000px;}
.x37_c00263{left:183.000000px;}
.x93_c00263{left:187.500000px;}
.xfc_c00263{left:189.000000px;}
.x2c_c00263{left:190.080000px;}
.x4_c00263{left:191.580000px;}
.x6e_c00263{left:194.580000px;}
.x10f_c00263{left:196.500000px;}
.xf2_c00263{left:198.000000px;}
.x9b_c00263{left:201.420000px;}
.x94_c00263{left:205.080000px;}
.xe7_c00263{left:207.000000px;}
.x24_c00263{left:208.500000px;}
.xc6_c00263{left:211.500000px;}
.x43_c00263{left:213.000000px;}
.x65_c00263{left:215.580000px;}
.xc0_c00263{left:217.920000px;}
.x25_c00263{left:219.000000px;}
.x79_c00263{left:220.500000px;}
.x5b_c00263{left:223.500000px;}
.x89_c00263{left:226.920000px;}
.x9c_c00263{left:229.920000px;}
.x49_c00263{left:232.500000px;}
.x52_c00263{left:234.000000px;}
.x2d_c00263{left:235.080000px;}
.x5_c00263{left:236.580000px;}
.xe8_c00263{left:238.500000px;}
.x38_c00263{left:240.000000px;}
.xb0_c00263{left:243.000000px;}
.xd9_c00263{left:244.080000px;}
.x44_c00263{left:245.580000px;}
.x1a_c00263{left:247.080000px;}
.x95_c00263{left:249.420000px;}
.x66_c00263{left:250.920000px;}
.x4a_c00263{left:253.080000px;}
.x6f_c00263{left:255.000000px;}
.x5c_c00263{left:258.000000px;}
.x8a_c00263{left:260.580000px;}
.xaa_c00263{left:262.920000px;}
.xf5_c00263{left:264.000000px;}
.x53_c00263{left:265.080000px;}
.x2e_c00263{left:268.500000px;}
.x6_c00263{left:270.000000px;}
.x12_c00263{left:271.080000px;}
.x9d_c00263{left:274.920000px;}
.x70_c00263{left:276.000000px;}
.x4b_c00263{left:277.500000px;}
.x7a_c00263{left:279.000000px;}
.x26_c00263{left:280.500000px;}
.x39_c00263{left:282.000000px;}
.xf6_c00263{left:283.920000px;}
.xed_c00263{left:286.920000px;}
.x1b_c00263{left:288.420000px;}
.xab_c00263{left:290.580000px;}
.x8b_c00263{left:292.500000px;}
.xf9_c00263{left:294.420000px;}
.xe9_c00263{left:295.920000px;}
.xb1_c00263{left:298.920000px;}
.xa5_c00263{left:300.000000px;}
.xc1_c00263{left:303.420000px;}
.x108_c00263{left:304.500000px;}
.xd4_c00263{left:306.000000px;}
.x27_c00263{left:309.420000px;}
.x5d_c00263{left:310.500000px;}
.x71_c00263{left:312.420000px;}
.x1c_c00263{left:313.500000px;}
.xcc_c00263{left:315.000000px;}
.x9e_c00263{left:316.500000px;}
.x7_c00263{left:318.000000px;}
.x81_c00263{left:319.500000px;}
.xda_c00263{left:320.580000px;}
.xac_c00263{left:322.920000px;}
.x67_c00263{left:325.080000px;}
.x13_c00263{left:327.000000px;}
.x2f_c00263{left:328.080000px;}
.x45_c00263{left:331.080000px;}
.xcd_c00263{left:333.420000px;}
.x8_c00263{left:339.000000px;}
.xa6_c00263{left:340.920000px;}
.xd5_c00263{left:344.580000px;}
.xfd_c00263{left:346.500000px;}
.x5e_c00263{left:347.580000px;}
.xb2_c00263{left:349.920000px;}
.x28_c00263{left:351.000000px;}
.x101_c00263{left:352.920000px;}
.xb6_c00263{left:354.420000px;}
.xc7_c00263{left:358.500000px;}
.x8c_c00263{left:361.080000px;}
.x3a_c00263{left:363.000000px;}
.x7b_c00263{left:364.920000px;}
.xc2_c00263{left:367.080000px;}
.x68_c00263{left:370.500000px;}
.xce_c00263{left:371.580000px;}
.x46_c00263{left:375.000000px;}
.xdb_c00263{left:376.920000px;}
.xbd_c00263{left:378.000000px;}
.x29_c00263{left:379.920000px;}
.x54_c00263{left:381.000000px;}
.xf7_c00263{left:382.920000px;}
.xc3_c00263{left:385.920000px;}
.x1d_c00263{left:387.000000px;}
.x14_c00263{left:389.580000px;}
.x9f_c00263{left:391.080000px;}
.x72_c00263{left:393.000000px;}
.x5f_c00263{left:394.500000px;}
.x7c_c00263{left:396.000000px;}
.x82_c00263{left:397.920000px;}
.x9_c00263{left:402.645000px;}
.x105_c00263{left:405.000000px;}
.x69_c00263{left:406.920000px;}
.x2a_c00263{left:408.000000px;}
.x1_c00263{left:409.500000px;}
.x47_c00263{left:410.580000px;}
.xb3_c00263{left:415.080000px;}
.x1e_c00263{left:417.000000px;}
.xb7_c00263{left:418.080000px;}
.xfe_c00263{left:420.420000px;}
.x8d_c00263{left:421.500000px;}
.xa0_c00263{left:423.420000px;}
.x15_c00263{left:424.920000px;}
.xee_c00263{left:426.000000px;}
.x3b_c00263{left:427.500000px;}
.x30_c00263{left:430.500000px;}
.x83_c00263{left:432.000000px;}
.x6a_c00263{left:433.500000px;}
.x48_c00263{left:436.500000px;}
.x109_c00263{left:439.500000px;}
.x55_c00263{left:442.500000px;}
.x1f_c00263{left:445.920000px;}
.xa_c00263{left:447.000000px;}
.xb8_c00263{left:448.920000px;}
.xa1_c00263{left:451.080000px;}
.x31_c00263{left:452.580000px;}
.x10c_c00263{left:454.920000px;}
.x73_c00263{left:456.000000px;}
.xcf_c00263{left:457.500000px;}
.xd6_c00263{left:459.000000px;}
.xc8_c00263{left:460.500000px;}
.xe1_c00263{left:463.500000px;}
.xb_c00263{left:465.000000px;}
.x16_c00263{left:466.080000px;}
.xd0_c00263{left:469.500000px;}
.xad_c00263{left:471.420000px;}
.x4c_c00263{left:472.500000px;}
.xb9_c00263{left:474.420000px;}
.x8e_c00263{left:475.920000px;}
.x96_c00263{left:477.000000px;}
.x74_c00263{left:478.920000px;}
.x6b_c00263{left:480.000000px;}
.xe2_c00263{left:481.920000px;}
.xdf_c00263{left:483.420000px;}
.x10a_c00263{left:484.500000px;}
.xc_c00263{left:490.500000px;}
.xef_c00263{left:491.580000px;}
.xdc_c00263{left:493.080000px;}
.x7d_c00263{left:495.000000px;}
.x20_c00263{left:496.080000px;}
.x3c_c00263{left:499.920000px;}
.x8f_c00263{left:502.080000px;}
.x84_c00263{left:503.580000px;}
.x75_c00263{left:506.580000px;}
.xe3_c00263{left:508.080000px;}
.x17_c00263{left:510.000000px;}
.x56_c00263{left:511.500000px;}
.x97_c00263{left:512.580000px;}
.xfa_c00263{left:514.920000px;}
.x21_c00263{left:516.000000px;}
.xc9_c00263{left:517.500000px;}
.xba_c00263{left:519.000000px;}
.xc4_c00263{left:520.080000px;}
.x85_c00263{left:522.420000px;}
.xd1_c00263{left:525.420000px;}
.xf3_c00263{left:526.500000px;}
.x60_c00263{left:529.500000px;}
.x110_c00263{left:532.920000px;}
.x32_c00263{left:534.645000px;}
.xae_c00263{left:535.920000px;}
.x7e_c00263{left:537.000000px;}
.xca_c00263{left:538.500000px;}
.x22_c00263{left:539.580000px;}
.x3d_c00263{left:541.500000px;}
.x18_c00263{left:545.580000px;}
.xa2_c00263{left:547.080000px;}
.x86_c00263{left:549.420000px;}
.x76_c00263{left:553.500000px;}
.xd_c00263{left:555.420000px;}
.xff_c00263{left:556.500000px;}
.x90_c00263{left:557.580000px;}
.xa7_c00263{left:559.500000px;}
.x10d_c00263{left:561.420000px;}
.xf0_c00263{left:562.920000px;}
.x102_c00263{left:565.500000px;}
.x98_c00263{left:567.000000px;}
.xbe_c00263{left:568.080000px;}
.xbb_c00263{left:570.420000px;}
.x19_c00263{left:573.000000px;}
.xd7_c00263{left:574.500000px;}
.x61_c00263{left:575.580000px;}
.x33_c00263{left:579.420000px;}
.xea_c00263{left:580.920000px;}
.xdd_c00263{left:583.500000px;}
.x3e_c00263{left:584.580000px;}
.xe4_c00263{left:586.500000px;}
.xfb_c00263{left:589.920000px;}
.x106_c00263{left:592.500000px;}
.x91_c00263{left:594.000000px;}
.x4d_c00263{left:595.920000px;}
.x77_c00263{left:598.080000px;}
.x6c_c00263{left:600.000000px;}
.x99_c00263{left:601.080000px;}
.x103_c00263{left:603.420000px;}
.x100_c00263{left:604.920000px;}
.x4e_c00263{left:606.000000px;}
.xe_c00263{left:607.500000px;}
.x34_c00263{left:609.000000px;}
.x62_c00263{left:612.420000px;}
.xe0_c00263{left:615.420000px;}
.x23_c00263{left:617.580000px;}
.x57_c00263{left:624.000000px;}
.xc5_c00263{left:625.500000px;}
.x3f_c00263{left:627.000000px;}
.xe5_c00263{left:628.080000px;}
.xf_c00263{left:630.000000px;}
.xf1_c00263{left:631.500000px;}
.xaf_c00263{left:633.000000px;}
.xb4_c00263{left:635.580000px;}
.xa8_c00263{left:637.080000px;}
.xa3_c00263{left:639.420000px;}
.x92_c00263{left:642.420000px;}
.x10e_c00263{left:643.500000px;}
.x7f_c00263{left:645.000000px;}
.x35_c00263{left:649.920000px;}
.x107_c00263{left:651.000000px;}
.xbc_c00263{left:652.080000px;}
.x10_c00263{left:656.580000px;}
.x80_c00263{left:658.080000px;}
.xf8_c00263{left:659.580000px;}
.x40_c00263{left:661.920000px;}
.x10b_c00263{left:664.500000px;}
.x4f_c00263{left:665.580000px;}
.x36_c00263{left:667.920000px;}
.x78_c00263{left:669.000000px;}
.xd2_c00263{left:672.000000px;}
.xcb_c00263{left:674.580000px;}
.x111_c00263{left:676.500000px;}
.x58_c00263{left:679.920000px;}
.x9a_c00263{left:681.420000px;}
.xeb_c00263{left:682.920000px;}
.xd3_c00263{left:685.920000px;}
.x63_c00263{left:687.000000px;}
.x41_c00263{left:688.500000px;}
.xd8_c00263{left:689.580000px;}
.x59_c00263{left:691.500000px;}
.x50_c00263{left:693.420000px;}
.x87_c00263{left:696.000000px;}
.xf4_c00263{left:697.920000px;}
.xe6_c00263{left:699.000000px;}
.xec_c00263{left:700.920000px;}
.x6d_c00263{left:703.080000px;}
.x112_c00263{left:704.580000px;}
.xa4_c00263{left:709.920000px;}
.xa9_c00263{left:717.000000px;}
@media print{
.v0_c00263{vertical-align:0.000000pt;}
.ls0_c00263{letter-spacing:0.000000pt;}
.ws3_c00263{word-spacing:-5.218667pt;}
.ws0_c00263{word-spacing:-2.303804pt;}
.ws1_c00263{word-spacing:-2.272420pt;}
.ws4_c00263{word-spacing:0.000000pt;}
.ws2_c00263{word-spacing:0.114667pt;}
.fs7_c00263{font-size:3.040000pt;}
.fs2_c00263{font-size:12.106667pt;}
.fs5_c00263{font-size:16.640000pt;}
.fs0_c00263{font-size:18.133333pt;}
.fs3_c00263{font-size:22.666667pt;}
.fs1_c00263{font-size:25.706667pt;}
.fs4_c00263{font-size:28.746667pt;}
.fs6_c00263{font-size:31.733333pt;}
.fs8_c00263{font-size:34.773333pt;}
.y0_c00263{bottom:0.000000pt;}
.yed_c00263{bottom:222.066667pt;}
.yea_c00263{bottom:223.026667pt;}
.ye9_c00263{bottom:223.773333pt;}
.yee_c00263{bottom:223.973333pt;}
.ye8_c00263{bottom:224.733333pt;}
.yec_c00263{bottom:225.106667pt;}
.ye7_c00263{bottom:225.693333pt;}
.yeb_c00263{bottom:227.026667pt;}
.ye6_c00263{bottom:240.733333pt;}
.ye2_c00263{bottom:241.106667pt;}
.ye3_c00263{bottom:241.306667pt;}
.ydf_c00263{bottom:242.066667pt;}
.ye5_c00263{bottom:242.440000pt;}
.ye1_c00263{bottom:243.026667pt;}
.ye0_c00263{bottom:243.973333pt;}
.ye4_c00263{bottom:244.360000pt;}
.ydc_c00263{bottom:258.440000pt;}
.yde_c00263{bottom:259.773333pt;}
.yda_c00263{bottom:260.360000pt;}
.ydb_c00263{bottom:260.560000pt;}
.yd9_c00263{bottom:261.306667pt;}
.ydd_c00263{bottom:261.693333pt;}
.yd5_c00263{bottom:277.106667pt;}
.yd7_c00263{bottom:277.893333pt;}
.yd8_c00263{bottom:278.640000pt;}
.yd6_c00263{bottom:279.026667pt;}
.yd1_c00263{bottom:294.440000pt;}
.yd3_c00263{bottom:294.826667pt;}
.yd2_c00263{bottom:296.360000pt;}
.yd4_c00263{bottom:297.693333pt;}
.ycf_c00263{bottom:311.773333pt;}
.ycc_c00263{bottom:313.693333pt;}
.ycd_c00263{bottom:313.893333pt;}
.yce_c00263{bottom:314.640000pt;}
.yd0_c00263{bottom:315.026667pt;}
.yca_c00263{bottom:330.066667pt;}
.yc7_c00263{bottom:330.266667pt;}
.ycb_c00263{bottom:330.440000pt;}
.yc6_c00263{bottom:331.026667pt;}
.yc9_c00263{bottom:331.973333pt;}
.yc8_c00263{bottom:332.360000pt;}
.yc1_c00263{bottom:346.440000pt;}
.yc4_c00263{bottom:346.640000pt;}
.yc3_c00263{bottom:347.773333pt;}
.yc0_c00263{bottom:348.560000pt;}
.yc5_c00263{bottom:348.733333pt;}
.yc2_c00263{bottom:349.693333pt;}
.yba_c00263{bottom:363.026667pt;}
.ybd_c00263{bottom:364.733333pt;}
.ybe_c00263{bottom:365.106667pt;}
.ybf_c00263{bottom:365.893333pt;}
.ybb_c00263{bottom:367.026667pt;}
.ybc_c00263{bottom:367.973333pt;}
.yb8_c00263{bottom:380.360000pt;}
.yb7_c00263{bottom:382.440000pt;}
.yb9_c00263{bottom:383.226667pt;}
.yb6_c00263{bottom:384.360000pt;}
.yb4_c00263{bottom:399.026667pt;}
.yb3_c00263{bottom:399.773333pt;}
.yb5_c00263{bottom:400.733333pt;}
.yb1_c00263{bottom:401.693333pt;}
.yb2_c00263{bottom:401.893333pt;}
.yb0_c00263{bottom:416.360000pt;}
.yab_c00263{bottom:417.106667pt;}
.yac_c00263{bottom:419.026667pt;}
.yad_c00263{bottom:419.226667pt;}
.yaf_c00263{bottom:419.400000pt;}
.yaa_c00263{bottom:419.973333pt;}
.yae_c00263{bottom:420.360000pt;}
.ya9_c00263{bottom:435.600000pt;}
.ya8_c00263{bottom:435.773333pt;}
.ya7_c00263{bottom:436.360000pt;}
.ya5_c00263{bottom:436.560000pt;}
.ya6_c00263{bottom:437.693333pt;}
.ya4_c00263{bottom:452.733333pt;}
.ya3_c00263{bottom:453.106667pt;}
.ya0_c00263{bottom:453.693333pt;}
.ya2_c00263{bottom:453.893333pt;}
.ya1_c00263{bottom:455.026667pt;}
.y9f_c00263{bottom:468.360000pt;}
.y9c_c00263{bottom:470.440000pt;}
.y9b_c00263{bottom:471.226667pt;}
.y9d_c00263{bottom:471.400000pt;}
.y9e_c00263{bottom:471.973333pt;}
.y9a_c00263{bottom:472.360000pt;}
.y99_c00263{bottom:487.026667pt;}
.y95_c00263{bottom:487.773333pt;}
.y98_c00263{bottom:488.560000pt;}
.y97_c00263{bottom:489.306667pt;}
.y96_c00263{bottom:489.693333pt;}
.y91_c00263{bottom:505.106667pt;}
.y90_c00263{bottom:505.893333pt;}
.y94_c00263{bottom:506.066667pt;}
.y93_c00263{bottom:507.026667pt;}
.y92_c00263{bottom:507.973333pt;}
.y8c_c00263{bottom:522.066667pt;}
.y8f_c00263{bottom:522.440000pt;}
.y8d_c00263{bottom:523.226667pt;}
.y8e_c00263{bottom:523.400000pt;}
.y8a_c00263{bottom:524.360000pt;}
.y8b_c00263{bottom:525.306667pt;}
.y85_c00263{bottom:539.773333pt;}
.y86_c00263{bottom:540.733333pt;}
.y87_c00263{bottom:541.693333pt;}
.y88_c00263{bottom:541.893333pt;}
.y89_c00263{bottom:542.640000pt;}
.y84_c00263{bottom:558.440000pt;}
.y82_c00263{bottom:559.026667pt;}
.y81_c00263{bottom:559.226667pt;}
.y80_c00263{bottom:559.973333pt;}
.y83_c00263{bottom:560.360000pt;}
.y79_c00263{bottom:574.440000pt;}
.y7b_c00263{bottom:575.400000pt;}
.y7c_c00263{bottom:575.600000pt;}
.y7e_c00263{bottom:575.773333pt;}
.y7a_c00263{bottom:576.360000pt;}
.y7f_c00263{bottom:576.560000pt;}
.y7d_c00263{bottom:577.693333pt;}
.y75_c00263{bottom:591.773333pt;}
.y76_c00263{bottom:592.733333pt;}
.y78_c00263{bottom:593.106667pt;}
.y74_c00263{bottom:593.693333pt;}
.y77_c00263{bottom:595.026667pt;}
.y70_c00263{bottom:610.440000pt;}
.y71_c00263{bottom:611.226667pt;}
.y73_c00263{bottom:611.400000pt;}
.y72_c00263{bottom:612.360000pt;}
.y6d_c00263{bottom:627.773333pt;}
.y6c_c00263{bottom:629.693333pt;}
.y6f_c00263{bottom:629.893333pt;}
.y6e_c00263{bottom:630.640000pt;}
.y68_c00263{bottom:644.733333pt;}
.y67_c00263{bottom:645.106667pt;}
.y6b_c00263{bottom:645.893333pt;}
.y69_c00263{bottom:647.026667pt;}
.y6a_c00263{bottom:647.973333pt;}
.y66_c00263{bottom:662.440000pt;}
.y63_c00263{bottom:663.226667pt;}
.y65_c00263{bottom:663.400000pt;}
.y64_c00263{bottom:664.360000pt;}
.y5d_c00263{bottom:680.733333pt;}
.y5f_c00263{bottom:681.106667pt;}
.y5e_c00263{bottom:681.693333pt;}
.y61_c00263{bottom:681.893333pt;}
.y60_c00263{bottom:682.066667pt;}
.y62_c00263{bottom:683.026667pt;}
.y5b_c00263{bottom:697.306667pt;}
.y5a_c00263{bottom:698.440000pt;}
.y58_c00263{bottom:699.226667pt;}
.y5c_c00263{bottom:699.400000pt;}
.y59_c00263{bottom:700.360000pt;}
.y57_c00263{bottom:715.773333pt;}
.y56_c00263{bottom:716.360000pt;}
.y55_c00263{bottom:717.693333pt;}
.y54_c00263{bottom:731.973333pt;}
.y51_c00263{bottom:733.106667pt;}
.y53_c00263{bottom:733.893333pt;}
.y50_c00263{bottom:734.640000pt;}
.y4f_c00263{bottom:735.026667pt;}
.y52_c00263{bottom:735.973333pt;}
.y4b_c00263{bottom:750.440000pt;}
.y4e_c00263{bottom:751.226667pt;}
.y4d_c00263{bottom:752.360000pt;}
.y4c_c00263{bottom:752.373333pt;}
.y49_c00263{bottom:773.306667pt;}
.y4a_c00263{bottom:774.066667pt;}
.y48_c00263{bottom:775.026667pt;}
.y41_c00263{bottom:786.640000pt;}
.y43_c00263{bottom:787.400000pt;}
.y44_c00263{bottom:787.600000pt;}
.y45_c00263{bottom:788.360000pt;}
.y47_c00263{bottom:788.560000pt;}
.y42_c00263{bottom:789.306667pt;}
.y46_c00263{bottom:790.266667pt;}
.y40_c00263{bottom:800.733333pt;}
.y3a_c00263{bottom:800.933333pt;}
.y3b_c00263{bottom:801.693333pt;}
.y3d_c00263{bottom:801.893333pt;}
.y3c_c00263{bottom:802.640000pt;}
.y3e_c00263{bottom:802.840000pt;}
.y3f_c00263{bottom:803.600000pt;}
.y38_c00263{bottom:813.693333pt;}
.y37_c00263{bottom:814.066667pt;}
.y39_c00263{bottom:815.973333pt;}
.y30_c00263{bottom:826.266667pt;}
.y33_c00263{bottom:827.026667pt;}
.y32_c00263{bottom:827.226667pt;}
.y35_c00263{bottom:827.400000pt;}
.y34_c00263{bottom:827.973333pt;}
.y36_c00263{bottom:828.560000pt;}
.y31_c00263{bottom:828.933333pt;}
.y2f_c00263{bottom:840.360000pt;}
.y2e_c00263{bottom:841.306667pt;}
.y28_c00263{bottom:853.306667pt;}
.y2b_c00263{bottom:854.066667pt;}
.y2c_c00263{bottom:855.026667pt;}
.y2d_c00263{bottom:855.226667pt;}
.y2a_c00263{bottom:855.600000pt;}
.y29_c00263{bottom:855.973333pt;}
.y24_c00263{bottom:866.266667pt;}
.y26_c00263{bottom:867.026667pt;}
.y27_c00263{bottom:867.973333pt;}
.y25_c00263{bottom:868.933333pt;}
.y20_c00263{bottom:879.400000pt;}
.y21_c00263{bottom:879.600000pt;}
.y22_c00263{bottom:880.360000pt;}
.y1f_c00263{bottom:881.306667pt;}
.y23_c00263{bottom:881.506667pt;}
.y1e_c00263{bottom:882.266667pt;}
.y1c_c00263{bottom:892.733333pt;}
.y17_c00263{bottom:893.506667pt;}
.y1a_c00263{bottom:893.693333pt;}
.y18_c00263{bottom:894.266667pt;}
.y19_c00263{bottom:894.640000pt;}
.y1b_c00263{bottom:894.840000pt;}
.y1d_c00263{bottom:895.600000pt;}
.y12_c00263{bottom:905.693333pt;}
.y16_c00263{bottom:906.066667pt;}
.y14_c00263{bottom:907.026667pt;}
.y13_c00263{bottom:908.173333pt;}
.y15_c00263{bottom:908.933333pt;}
.y10_c00263{bottom:919.026667pt;}
.ye_c00263{bottom:919.226667pt;}
.y11_c00263{bottom:919.973333pt;}
.yf_c00263{bottom:920.933333pt;}
.y9_c00263{bottom:931.400000pt;}
.yc_c00263{bottom:931.973333pt;}
.y8_c00263{bottom:932.360000pt;}
.ya_c00263{bottom:932.560000pt;}
.yb_c00263{bottom:933.306667pt;}
.yd_c00263{bottom:934.640000pt;}
.y7_c00263{bottom:944.733333pt;}
.y5_c00263{bottom:945.693333pt;}
.y6_c00263{bottom:946.640000pt;}
.y3_c00263{bottom:946.840000pt;}
.y4_c00263{bottom:947.600000pt;}
.y2_c00263{bottom:976.360000pt;}
.y1_c00263{bottom:978.266667pt;}
.h8_c00263{height:3.739141pt;}
.h3_c00263{height:14.890964pt;}
.h6_c00263{height:20.466875pt;}
.h1_c00263{height:22.303646pt;}
.h4_c00263{height:27.879557pt;}
.h2_c00263{height:31.618698pt;}
.h5_c00263{height:35.357839pt;}
.h7_c00263{height:39.031380pt;}
.h9_c00263{height:42.770521pt;}
.h0_c00263{height:1186.666667pt;}
.w0_c00263{width:782.666667pt;}
.x0_c00263{left:0.000000pt;}
.xde_c00263{left:133.333333pt;}
.x2_c00263{left:134.293333pt;}
.x11_c00263{left:135.626667pt;}
.x42_c00263{left:145.333333pt;}
.x64_c00263{left:146.666667pt;}
.x2b_c00263{left:148.000000pt;}
.x3_c00263{left:148.960000pt;}
.xb5_c00263{left:151.040000pt;}
.x104_c00263{left:155.626667pt;}
.xbf_c00263{left:157.706667pt;}
.x88_c00263{left:158.666667pt;}
.x5a_c00263{left:159.626667pt;}
.x51_c00263{left:160.960000pt;}
.x37_c00263{left:162.666667pt;}
.x93_c00263{left:166.666667pt;}
.xfc_c00263{left:168.000000pt;}
.x2c_c00263{left:168.960000pt;}
.x4_c00263{left:170.293333pt;}
.x6e_c00263{left:172.960000pt;}
.x10f_c00263{left:174.666667pt;}
.xf2_c00263{left:176.000000pt;}
.x9b_c00263{left:179.040000pt;}
.x94_c00263{left:182.293333pt;}
.xe7_c00263{left:184.000000pt;}
.x24_c00263{left:185.333333pt;}
.xc6_c00263{left:188.000000pt;}
.x43_c00263{left:189.333333pt;}
.x65_c00263{left:191.626667pt;}
.xc0_c00263{left:193.706667pt;}
.x25_c00263{left:194.666667pt;}
.x79_c00263{left:196.000000pt;}
.x5b_c00263{left:198.666667pt;}
.x89_c00263{left:201.706667pt;}
.x9c_c00263{left:204.373333pt;}
.x49_c00263{left:206.666667pt;}
.x52_c00263{left:208.000000pt;}
.x2d_c00263{left:208.960000pt;}
.x5_c00263{left:210.293333pt;}
.xe8_c00263{left:212.000000pt;}
.x38_c00263{left:213.333333pt;}
.xb0_c00263{left:216.000000pt;}
.xd9_c00263{left:216.960000pt;}
.x44_c00263{left:218.293333pt;}
.x1a_c00263{left:219.626667pt;}
.x95_c00263{left:221.706667pt;}
.x66_c00263{left:223.040000pt;}
.x4a_c00263{left:224.960000pt;}
.x6f_c00263{left:226.666667pt;}
.x5c_c00263{left:229.333333pt;}
.x8a_c00263{left:231.626667pt;}
.xaa_c00263{left:233.706667pt;}
.xf5_c00263{left:234.666667pt;}
.x53_c00263{left:235.626667pt;}
.x2e_c00263{left:238.666667pt;}
.x6_c00263{left:240.000000pt;}
.x12_c00263{left:240.960000pt;}
.x9d_c00263{left:244.373333pt;}
.x70_c00263{left:245.333333pt;}
.x4b_c00263{left:246.666667pt;}
.x7a_c00263{left:248.000000pt;}
.x26_c00263{left:249.333333pt;}
.x39_c00263{left:250.666667pt;}
.xf6_c00263{left:252.373333pt;}
.xed_c00263{left:255.040000pt;}
.x1b_c00263{left:256.373333pt;}
.xab_c00263{left:258.293333pt;}
.x8b_c00263{left:260.000000pt;}
.xf9_c00263{left:261.706667pt;}
.xe9_c00263{left:263.040000pt;}
.xb1_c00263{left:265.706667pt;}
.xa5_c00263{left:266.666667pt;}
.xc1_c00263{left:269.706667pt;}
.x108_c00263{left:270.666667pt;}
.xd4_c00263{left:272.000000pt;}
.x27_c00263{left:275.040000pt;}
.x5d_c00263{left:276.000000pt;}
.x71_c00263{left:277.706667pt;}
.x1c_c00263{left:278.666667pt;}
.xcc_c00263{left:280.000000pt;}
.x9e_c00263{left:281.333333pt;}
.x7_c00263{left:282.666667pt;}
.x81_c00263{left:284.000000pt;}
.xda_c00263{left:284.960000pt;}
.xac_c00263{left:287.040000pt;}
.x67_c00263{left:288.960000pt;}
.x13_c00263{left:290.666667pt;}
.x2f_c00263{left:291.626667pt;}
.x45_c00263{left:294.293333pt;}
.xcd_c00263{left:296.373333pt;}
.x8_c00263{left:301.333333pt;}
.xa6_c00263{left:303.040000pt;}
.xd5_c00263{left:306.293333pt;}
.xfd_c00263{left:308.000000pt;}
.x5e_c00263{left:308.960000pt;}
.xb2_c00263{left:311.040000pt;}
.x28_c00263{left:312.000000pt;}
.x101_c00263{left:313.706667pt;}
.xb6_c00263{left:315.040000pt;}
.xc7_c00263{left:318.666667pt;}
.x8c_c00263{left:320.960000pt;}
.x3a_c00263{left:322.666667pt;}
.x7b_c00263{left:324.373333pt;}
.xc2_c00263{left:326.293333pt;}
.x68_c00263{left:329.333333pt;}
.xce_c00263{left:330.293333pt;}
.x46_c00263{left:333.333333pt;}
.xdb_c00263{left:335.040000pt;}
.xbd_c00263{left:336.000000pt;}
.x29_c00263{left:337.706667pt;}
.x54_c00263{left:338.666667pt;}
.xf7_c00263{left:340.373333pt;}
.xc3_c00263{left:343.040000pt;}
.x1d_c00263{left:344.000000pt;}
.x14_c00263{left:346.293333pt;}
.x9f_c00263{left:347.626667pt;}
.x72_c00263{left:349.333333pt;}
.x5f_c00263{left:350.666667pt;}
.x7c_c00263{left:352.000000pt;}
.x82_c00263{left:353.706667pt;}
.x9_c00263{left:357.906667pt;}
.x105_c00263{left:360.000000pt;}
.x69_c00263{left:361.706667pt;}
.x2a_c00263{left:362.666667pt;}
.x1_c00263{left:364.000000pt;}
.x47_c00263{left:364.960000pt;}
.xb3_c00263{left:368.960000pt;}
.x1e_c00263{left:370.666667pt;}
.xb7_c00263{left:371.626667pt;}
.xfe_c00263{left:373.706667pt;}
.x8d_c00263{left:374.666667pt;}
.xa0_c00263{left:376.373333pt;}
.x15_c00263{left:377.706667pt;}
.xee_c00263{left:378.666667pt;}
.x3b_c00263{left:380.000000pt;}
.x30_c00263{left:382.666667pt;}
.x83_c00263{left:384.000000pt;}
.x6a_c00263{left:385.333333pt;}
.x48_c00263{left:388.000000pt;}
.x109_c00263{left:390.666667pt;}
.x55_c00263{left:393.333333pt;}
.x1f_c00263{left:396.373333pt;}
.xa_c00263{left:397.333333pt;}
.xb8_c00263{left:399.040000pt;}
.xa1_c00263{left:400.960000pt;}
.x31_c00263{left:402.293333pt;}
.x10c_c00263{left:404.373333pt;}
.x73_c00263{left:405.333333pt;}
.xcf_c00263{left:406.666667pt;}
.xd6_c00263{left:408.000000pt;}
.xc8_c00263{left:409.333333pt;}
.xe1_c00263{left:412.000000pt;}
.xb_c00263{left:413.333333pt;}
.x16_c00263{left:414.293333pt;}
.xd0_c00263{left:417.333333pt;}
.xad_c00263{left:419.040000pt;}
.x4c_c00263{left:420.000000pt;}
.xb9_c00263{left:421.706667pt;}
.x8e_c00263{left:423.040000pt;}
.x96_c00263{left:424.000000pt;}
.x74_c00263{left:425.706667pt;}
.x6b_c00263{left:426.666667pt;}
.xe2_c00263{left:428.373333pt;}
.xdf_c00263{left:429.706667pt;}
.x10a_c00263{left:430.666667pt;}
.xc_c00263{left:436.000000pt;}
.xef_c00263{left:436.960000pt;}
.xdc_c00263{left:438.293333pt;}
.x7d_c00263{left:440.000000pt;}
.x20_c00263{left:440.960000pt;}
.x3c_c00263{left:444.373333pt;}
.x8f_c00263{left:446.293333pt;}
.x84_c00263{left:447.626667pt;}
.x75_c00263{left:450.293333pt;}
.xe3_c00263{left:451.626667pt;}
.x17_c00263{left:453.333333pt;}
.x56_c00263{left:454.666667pt;}
.x97_c00263{left:455.626667pt;}
.xfa_c00263{left:457.706667pt;}
.x21_c00263{left:458.666667pt;}
.xc9_c00263{left:460.000000pt;}
.xba_c00263{left:461.333333pt;}
.xc4_c00263{left:462.293333pt;}
.x85_c00263{left:464.373333pt;}
.xd1_c00263{left:467.040000pt;}
.xf3_c00263{left:468.000000pt;}
.x60_c00263{left:470.666667pt;}
.x110_c00263{left:473.706667pt;}
.x32_c00263{left:475.240000pt;}
.xae_c00263{left:476.373333pt;}
.x7e_c00263{left:477.333333pt;}
.xca_c00263{left:478.666667pt;}
.x22_c00263{left:479.626667pt;}
.x3d_c00263{left:481.333333pt;}
.x18_c00263{left:484.960000pt;}
.xa2_c00263{left:486.293333pt;}
.x86_c00263{left:488.373333pt;}
.x76_c00263{left:492.000000pt;}
.xd_c00263{left:493.706667pt;}
.xff_c00263{left:494.666667pt;}
.x90_c00263{left:495.626667pt;}
.xa7_c00263{left:497.333333pt;}
.x10d_c00263{left:499.040000pt;}
.xf0_c00263{left:500.373333pt;}
.x102_c00263{left:502.666667pt;}
.x98_c00263{left:504.000000pt;}
.xbe_c00263{left:504.960000pt;}
.xbb_c00263{left:507.040000pt;}
.x19_c00263{left:509.333333pt;}
.xd7_c00263{left:510.666667pt;}
.x61_c00263{left:511.626667pt;}
.x33_c00263{left:515.040000pt;}
.xea_c00263{left:516.373333pt;}
.xdd_c00263{left:518.666667pt;}
.x3e_c00263{left:519.626667pt;}
.xe4_c00263{left:521.333333pt;}
.xfb_c00263{left:524.373333pt;}
.x106_c00263{left:526.666667pt;}
.x91_c00263{left:528.000000pt;}
.x4d_c00263{left:529.706667pt;}
.x77_c00263{left:531.626667pt;}
.x6c_c00263{left:533.333333pt;}
.x99_c00263{left:534.293333pt;}
.x103_c00263{left:536.373333pt;}
.x100_c00263{left:537.706667pt;}
.x4e_c00263{left:538.666667pt;}
.xe_c00263{left:540.000000pt;}
.x34_c00263{left:541.333333pt;}
.x62_c00263{left:544.373333pt;}
.xe0_c00263{left:547.040000pt;}
.x23_c00263{left:548.960000pt;}
.x57_c00263{left:554.666667pt;}
.xc5_c00263{left:556.000000pt;}
.x3f_c00263{left:557.333333pt;}
.xe5_c00263{left:558.293333pt;}
.xf_c00263{left:560.000000pt;}
.xf1_c00263{left:561.333333pt;}
.xaf_c00263{left:562.666667pt;}
.xb4_c00263{left:564.960000pt;}
.xa8_c00263{left:566.293333pt;}
.xa3_c00263{left:568.373333pt;}
.x92_c00263{left:571.040000pt;}
.x10e_c00263{left:572.000000pt;}
.x7f_c00263{left:573.333333pt;}
.x35_c00263{left:577.706667pt;}
.x107_c00263{left:578.666667pt;}
.xbc_c00263{left:579.626667pt;}
.x10_c00263{left:583.626667pt;}
.x80_c00263{left:584.960000pt;}
.xf8_c00263{left:586.293333pt;}
.x40_c00263{left:588.373333pt;}
.x10b_c00263{left:590.666667pt;}
.x4f_c00263{left:591.626667pt;}
.x36_c00263{left:593.706667pt;}
.x78_c00263{left:594.666667pt;}
.xd2_c00263{left:597.333333pt;}
.xcb_c00263{left:599.626667pt;}
.x111_c00263{left:601.333333pt;}
.x58_c00263{left:604.373333pt;}
.x9a_c00263{left:605.706667pt;}
.xeb_c00263{left:607.040000pt;}
.xd3_c00263{left:609.706667pt;}
.x63_c00263{left:610.666667pt;}
.x41_c00263{left:612.000000pt;}
.xd8_c00263{left:612.960000pt;}
.x59_c00263{left:614.666667pt;}
.x50_c00263{left:616.373333pt;}
.x87_c00263{left:618.666667pt;}
.xf4_c00263{left:620.373333pt;}
.xe6_c00263{left:621.333333pt;}
.xec_c00263{left:623.040000pt;}
.x6d_c00263{left:624.960000pt;}
.x112_c00263{left:626.293333pt;}
.xa4_c00263{left:631.040000pt;}
.xa9_c00263{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a863dfb45b50e8635d7ce54e.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;line-height:1.688965;font-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_c00264{transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);}
.m8a_c00264{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m20_c00264{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_c00264{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m2e_c00264{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m7_c00264{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m6d_c00264{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m25_c00264{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m16_c00264{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m75_c00264{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m62_c00264{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m6c_c00264{transform:matrix(0.373083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373083,0.000000,0.000000,0.250000,0,0);}
.mcf_c00264{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m8e_c00264{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m24_c00264{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m44_c00264{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m18_c00264{transform:matrix(0.385736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385736,0.000000,0.000000,0.250000,0,0);}
.m35_c00264{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.md4_c00264{transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);}
.m6e_c00264{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m5a_c00264{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mcc_c00264{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m9c_c00264{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m13_c00264{transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);}
.m7d_c00264{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.mc7_c00264{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m8d_c00264{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.ma2_c00264{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.mc1_c00264{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.ma7_c00264{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.mcd_c00264{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m94_c00264{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mc3_c00264{transform:matrix(0.404453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404453,0.000000,0.000000,0.250000,0,0);}
.mbc_c00264{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m60_c00264{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.mce_c00264{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m92_c00264{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m30_c00264{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m43_c00264{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m61_c00264{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m15_c00264{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m73_c00264{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mc9_c00264{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m40_c00264{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m87_c00264{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m69_c00264{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.mb6_c00264{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m6_c00264{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.ma8_c00264{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.ma9_c00264{transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);}
.mac_c00264{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m3b_c00264{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m64_c00264{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.maf_c00264{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m83_c00264{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m1c_c00264{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mab_c00264{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m29_c00264{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.ma3_c00264{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m7e_c00264{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m7f_c00264{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m85_c00264{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m5c_c00264{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m74_c00264{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m91_c00264{transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);}
.m2d_c00264{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mbd_c00264{transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);}
.m1f_c00264{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m8b_c00264{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.mc2_c00264{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.m4a_c00264{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m90_c00264{transform:matrix(0.449907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449907,0.000000,0.000000,0.250000,0,0);}
.mb4_c00264{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m66_c00264{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.mbf_c00264{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.md3_c00264{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m17_c00264{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m4e_c00264{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m7c_c00264{transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);}
.m2_c00264{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mcb_c00264{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.ma4_c00264{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.m3d_c00264{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.mad_c00264{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m19_c00264{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m3c_c00264{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mc5_c00264{transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);}
.m49_c00264{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m96_c00264{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.mb5_c00264{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m89_c00264{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.m54_c00264{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mc0_c00264{transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);}
.m4c_c00264{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mc8_c00264{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m9d_c00264{transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);}
.m1_c00264{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m72_c00264{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.me_c00264{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.md5_c00264{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.mba_c00264{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m7a_c00264{transform:matrix(0.497217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497217,0.000000,0.000000,0.250000,0,0);}
.m3_c00264{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);}
.mb2_c00264{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m79_c00264{transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);}
.m97_c00264{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m86_c00264{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mbb_c00264{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m23_c00264{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m31_c00264{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m95_c00264{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m8c_c00264{transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);}
.md7_c00264{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m34_c00264{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m2a_c00264{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.mb7_c00264{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m45_c00264{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m8_c00264{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mc4_c00264{transform:matrix(0.519017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519017,0.000000,0.000000,0.250000,0,0);}
.m9e_c00264{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m50_c00264{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m58_c00264{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m5d_c00264{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m3a_c00264{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m56_c00264{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m36_c00264{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m1a_c00264{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m28_c00264{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m76_c00264{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m55_c00264{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m27_c00264{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m9f_c00264{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mb0_c00264{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m59_c00264{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m22_c00264{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mbe_c00264{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mc6_c00264{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mb8_c00264{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m5b_c00264{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m52_c00264{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m47_c00264{transform:matrix(0.539889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539889,0.000000,0.000000,0.250000,0,0);}
.mb3_c00264{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m41_c00264{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m26_c00264{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mb9_c00264{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m1e_c00264{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m7b_c00264{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.md6_c00264{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m82_c00264{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.maa_c00264{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.md2_c00264{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m6b_c00264{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m71_c00264{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.md0_c00264{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m12_c00264{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);}
.m67_c00264{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.ma0_c00264{transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);}
.m3e_c00264{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m5e_c00264{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m53_c00264{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m9_c00264{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.m5f_c00264{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m57_c00264{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m48_c00264{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m32_c00264{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m4b_c00264{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.mb1_c00264{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m88_c00264{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m14_c00264{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m9b_c00264{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.mc_c00264{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m9a_c00264{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.md_c00264{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m4f_c00264{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.m33_c00264{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m46_c00264{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.md1_c00264{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m98_c00264{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.m68_c00264{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m38_c00264{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.ma_c00264{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);}
.ma1_c00264{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mf_c00264{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m78_c00264{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.ma5_c00264{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m39_c00264{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m63_c00264{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mb_c00264{transform:matrix(0.617059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617059,0.000000,0.000000,0.250000,0,0);}
.m0_c00264{transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);}
.m8f_c00264{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);}
.m42_c00264{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m4d_c00264{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m4_c00264{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.m2f_c00264{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m5_c00264{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.mca_c00264{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m81_c00264{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m3f_c00264{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m1d_c00264{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mae_c00264{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m99_c00264{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.m37_c00264{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m2c_c00264{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m80_c00264{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m6a_c00264{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m11_c00264{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m77_c00264{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.m65_c00264{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.ma6_c00264{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m70_c00264{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m93_c00264{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m6f_c00264{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m1b_c00264{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.m2b_c00264{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m21_c00264{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m51_c00264{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws1_c00264{word-spacing:-0.382191px;}
.ws2_c00264{word-spacing:0.000000px;}
.ws0_c00264{word-spacing:4.179396px;}
.fc0_c00264{color:transparent;}
.fs7_c00264{font-size:3.420000px;}
.fs4_c00264{font-size:18.720000px;}
.fs0_c00264{font-size:20.400000px;}
.fs2_c00264{font-size:25.500000px;}
.fs1_c00264{font-size:28.920000px;}
.fs6_c00264{font-size:32.340000px;}
.fs3_c00264{font-size:35.700000px;}
.fs5_c00264{font-size:39.120000px;}
.y0_c00264{bottom:0.000000px;}
.yac_c00264{bottom:373.905000px;}
.yaa_c00264{bottom:391.245000px;}
.yab_c00264{bottom:392.130000px;}
.ya9_c00264{bottom:393.405000px;}
.ya8_c00264{bottom:410.325000px;}
.ya5_c00264{bottom:410.745000px;}
.ya6_c00264{bottom:411.825000px;}
.ya4_c00264{bottom:412.905000px;}
.ya7_c00264{bottom:413.970000px;}
.ya2_c00264{bottom:427.905000px;}
.y9f_c00264{bottom:430.245000px;}
.ya3_c00264{bottom:431.970000px;}
.ya0_c00264{bottom:432.405000px;}
.ya1_c00264{bottom:432.630000px;}
.y9a_c00264{bottom:449.745000px;}
.y9d_c00264{bottom:451.245000px;}
.y9b_c00264{bottom:451.905000px;}
.y9e_c00264{bottom:452.130000px;}
.y9c_c00264{bottom:452.970000px;}
.y96_c00264{bottom:470.745000px;}
.y99_c00264{bottom:471.405000px;}
.y98_c00264{bottom:471.630000px;}
.y95_c00264{bottom:471.825000px;}
.y97_c00264{bottom:472.905000px;}
.y92_c00264{bottom:490.245000px;}
.y94_c00264{bottom:491.130000px;}
.y93_c00264{bottom:491.325000px;}
.y91_c00264{bottom:492.405000px;}
.y90_c00264{bottom:493.470000px;}
.y8f_c00264{bottom:511.905000px;}
.y8e_c00264{bottom:512.970000px;}
.y8b_c00264{bottom:529.245000px;}
.y8c_c00264{bottom:530.130000px;}
.y8d_c00264{bottom:531.405000px;}
.y89_c00264{bottom:548.745000px;}
.y88_c00264{bottom:549.825000px;}
.y8a_c00264{bottom:550.245000px;}
.y87_c00264{bottom:550.905000px;}
.y86_c00264{bottom:567.405000px;}
.y82_c00264{bottom:568.245000px;}
.y85_c00264{bottom:569.325000px;}
.y83_c00264{bottom:569.970000px;}
.y84_c00264{bottom:570.405000px;}
.y81_c00264{bottom:587.325000px;}
.y7f_c00264{bottom:587.745000px;}
.y7e_c00264{bottom:589.905000px;}
.y80_c00264{bottom:590.130000px;}
.y79_c00264{bottom:606.405000px;}
.y7a_c00264{bottom:608.745000px;}
.y7d_c00264{bottom:609.630000px;}
.y7c_c00264{bottom:609.825000px;}
.y7b_c00264{bottom:610.905000px;}
.y76_c00264{bottom:625.905000px;}
.y75_c00264{bottom:628.245000px;}
.y78_c00264{bottom:629.130000px;}
.y77_c00264{bottom:630.405000px;}
.y74_c00264{bottom:647.745000px;}
.y71_c00264{bottom:648.405000px;}
.y72_c00264{bottom:648.630000px;}
.y73_c00264{bottom:649.470000px;}
.y70_c00264{bottom:649.905000px;}
.y6c_c00264{bottom:666.825000px;}
.y6b_c00264{bottom:667.245000px;}
.y6f_c00264{bottom:668.130000px;}
.y6e_c00264{bottom:668.970000px;}
.y6a_c00264{bottom:669.405000px;}
.y6d_c00264{bottom:669.630000px;}
.y69_c00264{bottom:670.470000px;}
.y68_c00264{bottom:686.745000px;}
.y67_c00264{bottom:688.245000px;}
.y65_c00264{bottom:689.970000px;}
.y66_c00264{bottom:690.405000px;}
.y5f_c00264{bottom:707.325000px;}
.y61_c00264{bottom:707.745000px;}
.y63_c00264{bottom:708.405000px;}
.y64_c00264{bottom:708.630000px;}
.y62_c00264{bottom:708.825000px;}
.y60_c00264{bottom:709.470000px;}
.y5e_c00264{bottom:709.905000px;}
.y5c_c00264{bottom:724.905000px;}
.y5b_c00264{bottom:727.245000px;}
.y5a_c00264{bottom:729.405000px;}
.y5d_c00264{bottom:730.470000px;}
.y56_c00264{bottom:746.745000px;}
.y57_c00264{bottom:747.630000px;}
.y59_c00264{bottom:748.470000px;}
.y58_c00264{bottom:748.905000px;}
.y55_c00264{bottom:765.405000px;}
.y51_c00264{bottom:766.245000px;}
.y54_c00264{bottom:767.325000px;}
.y53_c00264{bottom:768.405000px;}
.y52_c00264{bottom:768.630000px;}
.y50_c00264{bottom:769.470000px;}
.y4a_c00264{bottom:785.745000px;}
.y4d_c00264{bottom:785.970000px;}
.y4f_c00264{bottom:786.825000px;}
.y4e_c00264{bottom:787.470000px;}
.y4b_c00264{bottom:787.905000px;}
.y4c_c00264{bottom:788.130000px;}
.y48_c00264{bottom:805.245000px;}
.y47_c00264{bottom:807.405000px;}
.y46_c00264{bottom:807.630000px;}
.y49_c00264{bottom:808.470000px;}
.y45_c00264{bottom:824.745000px;}
.y43_c00264{bottom:825.180000px;}
.y44_c00264{bottom:825.405000px;}
.y41_c00264{bottom:826.245000px;}
.y42_c00264{bottom:827.130000px;}
.y40_c00264{bottom:827.325000px;}
.y3f_c00264{bottom:828.405000px;}
.y3d_c00264{bottom:845.745000px;}
.y3e_c00264{bottom:846.630000px;}
.y3c_c00264{bottom:847.905000px;}
.y3b_c00264{bottom:848.970000px;}
.y39_c00264{bottom:865.245000px;}
.y38_c00264{bottom:867.405000px;}
.y3a_c00264{bottom:868.470000px;}
.y37_c00264{bottom:886.470000px;}
.y34_c00264{bottom:886.905000px;}
.y36_c00264{bottom:887.970000px;}
.y35_c00264{bottom:888.420000px;}
.y31_c00264{bottom:902.970000px;}
.y33_c00264{bottom:903.405000px;}
.y32_c00264{bottom:904.245000px;}
.y2f_c00264{bottom:904.470000px;}
.y30_c00264{bottom:906.405000px;}
.y2e_c00264{bottom:922.470000px;}
.y2d_c00264{bottom:922.905000px;}
.y2b_c00264{bottom:923.745000px;}
.y2c_c00264{bottom:924.825000px;}
.y29_c00264{bottom:925.905000px;}
.y2a_c00264{bottom:926.970000px;}
.y28_c00264{bottom:943.050000px;}
.y27_c00264{bottom:943.245000px;}
.y24_c00264{bottom:944.325000px;}
.y26_c00264{bottom:944.970000px;}
.y25_c00264{bottom:945.405000px;}
.y23_c00264{bottom:962.745000px;}
.y21_c00264{bottom:964.905000px;}
.y20_c00264{bottom:965.130000px;}
.y22_c00264{bottom:965.970000px;}
.y1c_c00264{bottom:983.745000px;}
.y1e_c00264{bottom:984.630000px;}
.y1d_c00264{bottom:985.470000px;}
.y1f_c00264{bottom:985.905000px;}
.y1a_c00264{bottom:1001.745000px;}
.y19_c00264{bottom:1003.905000px;}
.y1b_c00264{bottom:1004.130000px;}
.y15_c00264{bottom:1020.405000px;}
.y17_c00264{bottom:1021.245000px;}
.y16_c00264{bottom:1022.325000px;}
.y13_c00264{bottom:1022.745000px;}
.y18_c00264{bottom:1023.630000px;}
.y14_c00264{bottom:1024.470000px;}
.y10_c00264{bottom:1040.325000px;}
.yc_c00264{bottom:1040.970000px;}
.yd_c00264{bottom:1041.180000px;}
.y12_c00264{bottom:1041.405000px;}
.yf_c00264{bottom:1042.245000px;}
.yb_c00264{bottom:1043.130000px;}
.y11_c00264{bottom:1043.325000px;}
.ye_c00264{bottom:1044.405000px;}
.y5_c00264{bottom:1060.470000px;}
.y3_c00264{bottom:1060.905000px;}
.y6_c00264{bottom:1061.745000px;}
.y8_c00264{bottom:1061.970000px;}
.y4_c00264{bottom:1063.050000px;}
.ya_c00264{bottom:1063.470000px;}
.y7_c00264{bottom:1063.905000px;}
.y9_c00264{bottom:1064.970000px;}
.y2_c00264{bottom:1099.905000px;}
.y1_c00264{bottom:1102.050000px;}
.h8_c00264{height:4.206533px;}
.h5_c00264{height:23.025234px;}
.h1_c00264{height:25.091602px;}
.h3_c00264{height:31.364502px;}
.h2_c00264{height:35.571035px;}
.h7_c00264{height:39.777568px;}
.h4_c00264{height:43.910303px;}
.h6_c00264{height:48.116836px;}
.h0_c00264{height:1335.000000px;}
.w0_c00264{width:880.500000px;}
.x0_c00264{left:0.000000px;}
.x3_c00264{left:151.080000px;}
.xec_c00264{left:153.000000px;}
.x94_c00264{left:154.080000px;}
.x23_c00264{left:166.500000px;}
.xaf_c00264{left:168.000000px;}
.x71_c00264{left:170.580000px;}
.xb7_c00264{left:172.080000px;}
.x3b_c00264{left:174.420000px;}
.x4_c00264{left:176.580000px;}
.x5_c00264{left:184.920000px;}
.x53_c00264{left:188.580000px;}
.x13_c00264{left:190.080000px;}
.x89_c00264{left:191.580000px;}
.x49_c00264{left:195.420000px;}
.x6_c00264{left:196.500000px;}
.x60_c00264{left:198.000000px;}
.x1d_c00264{left:199.080000px;}
.x24_c00264{left:201.420000px;}
.x3c_c00264{left:202.920000px;}
.x8a_c00264{left:208.920000px;}
.xb0_c00264{left:211.920000px;}
.xa4_c00264{left:213.000000px;}
.x31_c00264{left:214.500000px;}
.x1e_c00264{left:217.500000px;}
.x54_c00264{left:219.000000px;}
.x14_c00264{left:220.080000px;}
.x9d_c00264{left:223.500000px;}
.xd1_c00264{left:225.000000px;}
.x95_c00264{left:226.920000px;}
.xa5_c00264{left:231.000000px;}
.x7_c00264{left:234.000000px;}
.x61_c00264{left:235.500000px;}
.x65_c00264{left:237.000000px;}
.x8b_c00264{left:238.500000px;}
.x3d_c00264{left:243.420000px;}
.xd2_c00264{left:244.500000px;}
.x72_c00264{left:245.580000px;}
.x32_c00264{left:247.500000px;}
.xf9_c00264{left:249.000000px;}
.x96_c00264{left:251.580000px;}
.x25_c00264{left:253.080000px;}
.x82_c00264{left:255.000000px;}
.xc1_c00264{left:256.920000px;}
.x66_c00264{left:258.000000px;}
.xb8_c00264{left:261.420000px;}
.x1f_c00264{left:262.500000px;}
.x55_c00264{left:264.000000px;}
.xc9_c00264{left:265.500000px;}
.xdd_c00264{left:271.080000px;}
.xff_c00264{left:272.580000px;}
.x3e_c00264{left:277.080000px;}
.xc2_c00264{left:278.580000px;}
.xed_c00264{left:280.920000px;}
.x26_c00264{left:283.500000px;}
.x7a_c00264{left:285.420000px;}
.x67_c00264{left:287.145000px;}
.x8_c00264{left:289.500000px;}
.x62_c00264{left:290.580000px;}
.x3f_c00264{left:297.000000px;}
.xe3_c00264{left:298.080000px;}
.xb1_c00264{left:300.000000px;}
.xf2_c00264{left:304.080000px;}
.xab_c00264{left:305.580000px;}
.x97_c00264{left:309.000000px;}
.xc3_c00264{left:310.500000px;}
.x15_c00264{left:312.420000px;}
.xd3_c00264{left:315.000000px;}
.x73_c00264{left:316.080000px;}
.x9_c00264{left:317.580000px;}
.x63_c00264{left:319.080000px;}
.x4a_c00264{left:322.080000px;}
.x8c_c00264{left:324.000000px;}
.x40_c00264{left:325.920000px;}
.xb2_c00264{left:327.645000px;}
.x83_c00264{left:330.000000px;}
.x56_c00264{left:331.500000px;}
.xde_c00264{left:333.645000px;}
.x27_c00264{left:334.920000px;}
.x4b_c00264{left:340.920000px;}
.xc4_c00264{left:342.000000px;}
.xa6_c00264{left:344.580000px;}
.xca_c00264{left:346.080000px;}
.xa_c00264{left:347.580000px;}
.x20_c00264{left:351.000000px;}
.xf5_c00264{left:352.920000px;}
.x7b_c00264{left:354.000000px;}
.x8d_c00264{left:355.500000px;}
.xbd_c00264{left:361.920000px;}
.x57_c00264{left:363.000000px;}
.x41_c00264{left:364.920000px;}
.x98_c00264{left:367.920000px;}
.x4c_c00264{left:370.080000px;}
.x28_c00264{left:373.920000px;}
.x68_c00264{left:375.000000px;}
.xb_c00264{left:376.920000px;}
.x33_c00264{left:378.000000px;}
.x64_c00264{left:379.920000px;}
.x21_c00264{left:382.500000px;}
.xac_c00264{left:386.580000px;}
.xd6_c00264{left:388.500000px;}
.xdf_c00264{left:389.580000px;}
.xd4_c00264{left:391.500000px;}
.x74_c00264{left:393.000000px;}
.x58_c00264{left:399.000000px;}
.x16_c00264{left:400.500000px;}
.x29_c00264{left:401.580000px;}
.x8e_c00264{left:403.500000px;}
.x22_c00264{left:405.000000px;}
.x1_c00264{left:406.500000px;}
.xa7_c00264{left:408.420000px;}
.x4d_c00264{left:409.500000px;}
.x84_c00264{left:411.420000px;}
.x75_c00264{left:412.500000px;}
.xe4_c00264{left:414.000000px;}
.xe6_c00264{left:415.500000px;}
.xb3_c00264{left:417.000000px;}
.x99_c00264{left:418.080000px;}
.xd7_c00264{left:423.000000px;}
.x9e_c00264{left:424.500000px;}
.x42_c00264{left:426.000000px;}
.xc_c00264{left:427.500000px;}
.x34_c00264{left:430.080000px;}
.xc5_c00264{left:432.000000px;}
.x59_c00264{left:433.500000px;}
.xfa_c00264{left:435.000000px;}
.x17_c00264{left:436.500000px;}
.x69_c00264{left:438.000000px;}
.xa8_c00264{left:441.420000px;}
.xd8_c00264{left:442.500000px;}
.xf3_c00264{left:445.080000px;}
.x4e_c00264{left:446.580000px;}
.x2a_c00264{left:448.920000px;}
.xbe_c00264{left:450.000000px;}
.x6a_c00264{left:453.000000px;}
.xd_c00264{left:459.000000px;}
.xd9_c00264{left:460.920000px;}
.x85_c00264{left:462.000000px;}
.xee_c00264{left:463.080000px;}
.xc6_c00264{left:465.420000px;}
.x5a_c00264{left:468.000000px;}
.x35_c00264{left:472.500000px;}
.xd5_c00264{left:474.000000px;}
.x18_c00264{left:475.500000px;}
.x4f_c00264{left:477.420000px;}
.x6b_c00264{left:478.500000px;}
.x43_c00264{left:480.000000px;}
.xb4_c00264{left:481.500000px;}
.xf6_c00264{left:483.000000px;}
.x9f_c00264{left:484.920000px;}
.x8f_c00264{left:487.500000px;}
.x86_c00264{left:490.500000px;}
.xe7_c00264{left:492.000000px;}
.x44_c00264{left:493.920000px;}
.xe_c00264{left:496.500000px;}
.x76_c00264{left:498.420000px;}
.xfb_c00264{left:499.500000px;}
.x36_c00264{left:500.580000px;}
.x50_c00264{left:503.355000px;}
.xad_c00264{left:506.580000px;}
.xb9_c00264{left:508.500000px;}
.x2b_c00264{left:511.500000px;}
.xe0_c00264{left:515.580000px;}
.x6c_c00264{left:517.500000px;}
.xa9_c00264{left:520.500000px;}
.x90_c00264{left:522.420000px;}
.x77_c00264{left:525.420000px;}
.x7c_c00264{left:526.500000px;}
.xcb_c00264{left:528.000000px;}
.x9a_c00264{left:529.500000px;}
.xba_c00264{left:531.000000px;}
.x6d_c00264{left:535.080000px;}
.xae_c00264{left:536.580000px;}
.x5b_c00264{left:538.500000px;}
.xc7_c00264{left:540.000000px;}
.xbf_c00264{left:541.500000px;}
.x37_c00264{left:543.000000px;}
.x87_c00264{left:544.080000px;}
.x45_c00264{left:545.355000px;}
.xaa_c00264{left:547.920000px;}
.x19_c00264{left:549.000000px;}
.x6e_c00264{left:554.580000px;}
.xa0_c00264{left:556.500000px;}
.x78_c00264{left:559.500000px;}
.x7d_c00264{left:561.000000px;}
.x51_c00264{left:562.920000px;}
.xcc_c00264{left:565.500000px;}
.x6f_c00264{left:571.500000px;}
.x5c_c00264{left:574.500000px;}
.xa1_c00264{left:576.420000px;}
.x2c_c00264{left:577.500000px;}
.xb5_c00264{left:579.420000px;}
.x7e_c00264{left:580.920000px;}
.x91_c00264{left:582.000000px;}
.x38_c00264{left:583.080000px;}
.xda_c00264{left:584.580000px;}
.xf7_c00264{left:589.920000px;}
.xe8_c00264{left:591.000000px;}
.xf_c00264{left:599.580000px;}
.x2d_c00264{left:601.920000px;}
.xa2_c00264{left:603.000000px;}
.x46_c00264{left:604.080000px;}
.x79_c00264{left:605.580000px;}
.xfd_c00264{left:607.275000px;}
.x7f_c00264{left:609.000000px;}
.x5d_c00264{left:610.920000px;}
.x1a_c00264{left:612.000000px;}
.x39_c00264{left:613.500000px;}
.x9b_c00264{left:615.000000px;}
.xdb_c00264{left:616.500000px;}
.x10_c00264{left:618.420000px;}
.xcd_c00264{left:621.420000px;}
.xe9_c00264{left:622.500000px;}
.x2e_c00264{left:623.580000px;}
.xf4_c00264{left:625.500000px;}
.x70_c00264{left:628.920000px;}
.xef_c00264{left:630.000000px;}
.xfc_c00264{left:633.000000px;}
.xb6_c00264{left:634.920000px;}
.x47_c00264{left:636.000000px;}
.xe1_c00264{left:639.000000px;}
.x52_c00264{left:640.080000px;}
.xa3_c00264{left:642.000000px;}
.xce_c00264{left:643.920000px;}
.xc8_c00264{left:646.500000px;}
.x1b_c00264{left:647.580000px;}
.x5e_c00264{left:650.580000px;}
.xbb_c00264{left:653.580000px;}
.x92_c00264{left:655.500000px;}
.xf8_c00264{left:657.000000px;}
.x11_c00264{left:658.500000px;}
.x2f_c00264{left:662.775000px;}
.xea_c00264{left:664.500000px;}
.xdc_c00264{left:666.000000px;}
.xe5_c00264{left:667.080000px;}
.x3a_c00264{left:669.000000px;}
.xe2_c00264{left:671.580000px;}
.x93_c00264{left:672.645000px;}
.x5f_c00264{left:676.500000px;}
.xf0_c00264{left:678.000000px;}
.xcf_c00264{left:679.080000px;}
.x80_c00264{left:681.000000px;}
.x9c_c00264{left:685.080000px;}
.x1c_c00264{left:687.420000px;}
.x12_c00264{left:688.500000px;}
.x88_c00264{left:690.000000px;}
.xeb_c00264{left:694.920000px;}
.xfe_c00264{left:696.645000px;}
.xbc_c00264{left:700.500000px;}
.x30_c00264{left:702.000000px;}
.x2_c00264{left:703.080000px;}
.xd0_c00264{left:708.000000px;}
.x48_c00264{left:709.500000px;}
.x81_c00264{left:715.080000px;}
.xf1_c00264{left:716.580000px;}
.xc0_c00264{left:721.500000px;}
@media print{
.v0_c00264{vertical-align:0.000000pt;}
.ls0_c00264{letter-spacing:0.000000pt;}
.ws1_c00264{word-spacing:-0.339725pt;}
.ws2_c00264{word-spacing:0.000000pt;}
.ws0_c00264{word-spacing:3.715018pt;}
.fs7_c00264{font-size:3.040000pt;}
.fs4_c00264{font-size:16.640000pt;}
.fs0_c00264{font-size:18.133333pt;}
.fs2_c00264{font-size:22.666667pt;}
.fs1_c00264{font-size:25.706667pt;}
.fs6_c00264{font-size:28.746667pt;}
.fs3_c00264{font-size:31.733333pt;}
.fs5_c00264{font-size:34.773333pt;}
.y0_c00264{bottom:0.000000pt;}
.yac_c00264{bottom:332.360000pt;}
.yaa_c00264{bottom:347.773333pt;}
.yab_c00264{bottom:348.560000pt;}
.ya9_c00264{bottom:349.693333pt;}
.ya8_c00264{bottom:364.733333pt;}
.ya5_c00264{bottom:365.106667pt;}
.ya6_c00264{bottom:366.066667pt;}
.ya4_c00264{bottom:367.026667pt;}
.ya7_c00264{bottom:367.973333pt;}
.ya2_c00264{bottom:380.360000pt;}
.y9f_c00264{bottom:382.440000pt;}
.ya3_c00264{bottom:383.973333pt;}
.ya0_c00264{bottom:384.360000pt;}
.ya1_c00264{bottom:384.560000pt;}
.y9a_c00264{bottom:399.773333pt;}
.y9d_c00264{bottom:401.106667pt;}
.y9b_c00264{bottom:401.693333pt;}
.y9e_c00264{bottom:401.893333pt;}
.y9c_c00264{bottom:402.640000pt;}
.y96_c00264{bottom:418.440000pt;}
.y99_c00264{bottom:419.026667pt;}
.y98_c00264{bottom:419.226667pt;}
.y95_c00264{bottom:419.400000pt;}
.y97_c00264{bottom:420.360000pt;}
.y92_c00264{bottom:435.773333pt;}
.y94_c00264{bottom:436.560000pt;}
.y93_c00264{bottom:436.733333pt;}
.y91_c00264{bottom:437.693333pt;}
.y90_c00264{bottom:438.640000pt;}
.y8f_c00264{bottom:455.026667pt;}
.y8e_c00264{bottom:455.973333pt;}
.y8b_c00264{bottom:470.440000pt;}
.y8c_c00264{bottom:471.226667pt;}
.y8d_c00264{bottom:472.360000pt;}
.y89_c00264{bottom:487.773333pt;}
.y88_c00264{bottom:488.733333pt;}
.y8a_c00264{bottom:489.106667pt;}
.y87_c00264{bottom:489.693333pt;}
.y86_c00264{bottom:504.360000pt;}
.y82_c00264{bottom:505.106667pt;}
.y85_c00264{bottom:506.066667pt;}
.y83_c00264{bottom:506.640000pt;}
.y84_c00264{bottom:507.026667pt;}
.y81_c00264{bottom:522.066667pt;}
.y7f_c00264{bottom:522.440000pt;}
.y7e_c00264{bottom:524.360000pt;}
.y80_c00264{bottom:524.560000pt;}
.y79_c00264{bottom:539.026667pt;}
.y7a_c00264{bottom:541.106667pt;}
.y7d_c00264{bottom:541.893333pt;}
.y7c_c00264{bottom:542.066667pt;}
.y7b_c00264{bottom:543.026667pt;}
.y76_c00264{bottom:556.360000pt;}
.y75_c00264{bottom:558.440000pt;}
.y78_c00264{bottom:559.226667pt;}
.y77_c00264{bottom:560.360000pt;}
.y74_c00264{bottom:575.773333pt;}
.y71_c00264{bottom:576.360000pt;}
.y72_c00264{bottom:576.560000pt;}
.y73_c00264{bottom:577.306667pt;}
.y70_c00264{bottom:577.693333pt;}
.y6c_c00264{bottom:592.733333pt;}
.y6b_c00264{bottom:593.106667pt;}
.y6f_c00264{bottom:593.893333pt;}
.y6e_c00264{bottom:594.640000pt;}
.y6a_c00264{bottom:595.026667pt;}
.y6d_c00264{bottom:595.226667pt;}
.y69_c00264{bottom:595.973333pt;}
.y68_c00264{bottom:610.440000pt;}
.y67_c00264{bottom:611.773333pt;}
.y65_c00264{bottom:613.306667pt;}
.y66_c00264{bottom:613.693333pt;}
.y5f_c00264{bottom:628.733333pt;}
.y61_c00264{bottom:629.106667pt;}
.y63_c00264{bottom:629.693333pt;}
.y64_c00264{bottom:629.893333pt;}
.y62_c00264{bottom:630.066667pt;}
.y60_c00264{bottom:630.640000pt;}
.y5e_c00264{bottom:631.026667pt;}
.y5c_c00264{bottom:644.360000pt;}
.y5b_c00264{bottom:646.440000pt;}
.y5a_c00264{bottom:648.360000pt;}
.y5d_c00264{bottom:649.306667pt;}
.y56_c00264{bottom:663.773333pt;}
.y57_c00264{bottom:664.560000pt;}
.y59_c00264{bottom:665.306667pt;}
.y58_c00264{bottom:665.693333pt;}
.y55_c00264{bottom:680.360000pt;}
.y51_c00264{bottom:681.106667pt;}
.y54_c00264{bottom:682.066667pt;}
.y53_c00264{bottom:683.026667pt;}
.y52_c00264{bottom:683.226667pt;}
.y50_c00264{bottom:683.973333pt;}
.y4a_c00264{bottom:698.440000pt;}
.y4d_c00264{bottom:698.640000pt;}
.y4f_c00264{bottom:699.400000pt;}
.y4e_c00264{bottom:699.973333pt;}
.y4b_c00264{bottom:700.360000pt;}
.y4c_c00264{bottom:700.560000pt;}
.y48_c00264{bottom:715.773333pt;}
.y47_c00264{bottom:717.693333pt;}
.y46_c00264{bottom:717.893333pt;}
.y49_c00264{bottom:718.640000pt;}
.y45_c00264{bottom:733.106667pt;}
.y43_c00264{bottom:733.493333pt;}
.y44_c00264{bottom:733.693333pt;}
.y41_c00264{bottom:734.440000pt;}
.y42_c00264{bottom:735.226667pt;}
.y40_c00264{bottom:735.400000pt;}
.y3f_c00264{bottom:736.360000pt;}
.y3d_c00264{bottom:751.773333pt;}
.y3e_c00264{bottom:752.560000pt;}
.y3c_c00264{bottom:753.693333pt;}
.y3b_c00264{bottom:754.640000pt;}
.y39_c00264{bottom:769.106667pt;}
.y38_c00264{bottom:771.026667pt;}
.y3a_c00264{bottom:771.973333pt;}
.y37_c00264{bottom:787.973333pt;}
.y34_c00264{bottom:788.360000pt;}
.y36_c00264{bottom:789.306667pt;}
.y35_c00264{bottom:789.706667pt;}
.y31_c00264{bottom:802.640000pt;}
.y33_c00264{bottom:803.026667pt;}
.y32_c00264{bottom:803.773333pt;}
.y2f_c00264{bottom:803.973333pt;}
.y30_c00264{bottom:805.693333pt;}
.y2e_c00264{bottom:819.973333pt;}
.y2d_c00264{bottom:820.360000pt;}
.y2b_c00264{bottom:821.106667pt;}
.y2c_c00264{bottom:822.066667pt;}
.y29_c00264{bottom:823.026667pt;}
.y2a_c00264{bottom:823.973333pt;}
.y28_c00264{bottom:838.266667pt;}
.y27_c00264{bottom:838.440000pt;}
.y24_c00264{bottom:839.400000pt;}
.y26_c00264{bottom:839.973333pt;}
.y25_c00264{bottom:840.360000pt;}
.y23_c00264{bottom:855.773333pt;}
.y21_c00264{bottom:857.693333pt;}
.y20_c00264{bottom:857.893333pt;}
.y22_c00264{bottom:858.640000pt;}
.y1c_c00264{bottom:874.440000pt;}
.y1e_c00264{bottom:875.226667pt;}
.y1d_c00264{bottom:875.973333pt;}
.y1f_c00264{bottom:876.360000pt;}
.y1a_c00264{bottom:890.440000pt;}
.y19_c00264{bottom:892.360000pt;}
.y1b_c00264{bottom:892.560000pt;}
.y15_c00264{bottom:907.026667pt;}
.y17_c00264{bottom:907.773333pt;}
.y16_c00264{bottom:908.733333pt;}
.y13_c00264{bottom:909.106667pt;}
.y18_c00264{bottom:909.893333pt;}
.y14_c00264{bottom:910.640000pt;}
.y10_c00264{bottom:924.733333pt;}
.yc_c00264{bottom:925.306667pt;}
.yd_c00264{bottom:925.493333pt;}
.y12_c00264{bottom:925.693333pt;}
.yf_c00264{bottom:926.440000pt;}
.yb_c00264{bottom:927.226667pt;}
.y11_c00264{bottom:927.400000pt;}
.ye_c00264{bottom:928.360000pt;}
.y5_c00264{bottom:942.640000pt;}
.y3_c00264{bottom:943.026667pt;}
.y6_c00264{bottom:943.773333pt;}
.y8_c00264{bottom:943.973333pt;}
.y4_c00264{bottom:944.933333pt;}
.ya_c00264{bottom:945.306667pt;}
.y7_c00264{bottom:945.693333pt;}
.y9_c00264{bottom:946.640000pt;}
.y2_c00264{bottom:977.693333pt;}
.y1_c00264{bottom:979.600000pt;}
.h8_c00264{height:3.739141pt;}
.h5_c00264{height:20.466875pt;}
.h1_c00264{height:22.303646pt;}
.h3_c00264{height:27.879557pt;}
.h2_c00264{height:31.618698pt;}
.h7_c00264{height:35.357839pt;}
.h4_c00264{height:39.031380pt;}
.h6_c00264{height:42.770521pt;}
.h0_c00264{height:1186.666667pt;}
.w0_c00264{width:782.666667pt;}
.x0_c00264{left:0.000000pt;}
.x3_c00264{left:134.293333pt;}
.xec_c00264{left:136.000000pt;}
.x94_c00264{left:136.960000pt;}
.x23_c00264{left:148.000000pt;}
.xaf_c00264{left:149.333333pt;}
.x71_c00264{left:151.626667pt;}
.xb7_c00264{left:152.960000pt;}
.x3b_c00264{left:155.040000pt;}
.x4_c00264{left:156.960000pt;}
.x5_c00264{left:164.373333pt;}
.x53_c00264{left:167.626667pt;}
.x13_c00264{left:168.960000pt;}
.x89_c00264{left:170.293333pt;}
.x49_c00264{left:173.706667pt;}
.x6_c00264{left:174.666667pt;}
.x60_c00264{left:176.000000pt;}
.x1d_c00264{left:176.960000pt;}
.x24_c00264{left:179.040000pt;}
.x3c_c00264{left:180.373333pt;}
.x8a_c00264{left:185.706667pt;}
.xb0_c00264{left:188.373333pt;}
.xa4_c00264{left:189.333333pt;}
.x31_c00264{left:190.666667pt;}
.x1e_c00264{left:193.333333pt;}
.x54_c00264{left:194.666667pt;}
.x14_c00264{left:195.626667pt;}
.x9d_c00264{left:198.666667pt;}
.xd1_c00264{left:200.000000pt;}
.x95_c00264{left:201.706667pt;}
.xa5_c00264{left:205.333333pt;}
.x7_c00264{left:208.000000pt;}
.x61_c00264{left:209.333333pt;}
.x65_c00264{left:210.666667pt;}
.x8b_c00264{left:212.000000pt;}
.x3d_c00264{left:216.373333pt;}
.xd2_c00264{left:217.333333pt;}
.x72_c00264{left:218.293333pt;}
.x32_c00264{left:220.000000pt;}
.xf9_c00264{left:221.333333pt;}
.x96_c00264{left:223.626667pt;}
.x25_c00264{left:224.960000pt;}
.x82_c00264{left:226.666667pt;}
.xc1_c00264{left:228.373333pt;}
.x66_c00264{left:229.333333pt;}
.xb8_c00264{left:232.373333pt;}
.x1f_c00264{left:233.333333pt;}
.x55_c00264{left:234.666667pt;}
.xc9_c00264{left:236.000000pt;}
.xdd_c00264{left:240.960000pt;}
.xff_c00264{left:242.293333pt;}
.x3e_c00264{left:246.293333pt;}
.xc2_c00264{left:247.626667pt;}
.xed_c00264{left:249.706667pt;}
.x26_c00264{left:252.000000pt;}
.x7a_c00264{left:253.706667pt;}
.x67_c00264{left:255.240000pt;}
.x8_c00264{left:257.333333pt;}
.x62_c00264{left:258.293333pt;}
.x3f_c00264{left:264.000000pt;}
.xe3_c00264{left:264.960000pt;}
.xb1_c00264{left:266.666667pt;}
.xf2_c00264{left:270.293333pt;}
.xab_c00264{left:271.626667pt;}
.x97_c00264{left:274.666667pt;}
.xc3_c00264{left:276.000000pt;}
.x15_c00264{left:277.706667pt;}
.xd3_c00264{left:280.000000pt;}
.x73_c00264{left:280.960000pt;}
.x9_c00264{left:282.293333pt;}
.x63_c00264{left:283.626667pt;}
.x4a_c00264{left:286.293333pt;}
.x8c_c00264{left:288.000000pt;}
.x40_c00264{left:289.706667pt;}
.xb2_c00264{left:291.240000pt;}
.x83_c00264{left:293.333333pt;}
.x56_c00264{left:294.666667pt;}
.xde_c00264{left:296.573333pt;}
.x27_c00264{left:297.706667pt;}
.x4b_c00264{left:303.040000pt;}
.xc4_c00264{left:304.000000pt;}
.xa6_c00264{left:306.293333pt;}
.xca_c00264{left:307.626667pt;}
.xa_c00264{left:308.960000pt;}
.x20_c00264{left:312.000000pt;}
.xf5_c00264{left:313.706667pt;}
.x7b_c00264{left:314.666667pt;}
.x8d_c00264{left:316.000000pt;}
.xbd_c00264{left:321.706667pt;}
.x57_c00264{left:322.666667pt;}
.x41_c00264{left:324.373333pt;}
.x98_c00264{left:327.040000pt;}
.x4c_c00264{left:328.960000pt;}
.x28_c00264{left:332.373333pt;}
.x68_c00264{left:333.333333pt;}
.xb_c00264{left:335.040000pt;}
.x33_c00264{left:336.000000pt;}
.x64_c00264{left:337.706667pt;}
.x21_c00264{left:340.000000pt;}
.xac_c00264{left:343.626667pt;}
.xd6_c00264{left:345.333333pt;}
.xdf_c00264{left:346.293333pt;}
.xd4_c00264{left:348.000000pt;}
.x74_c00264{left:349.333333pt;}
.x58_c00264{left:354.666667pt;}
.x16_c00264{left:356.000000pt;}
.x29_c00264{left:356.960000pt;}
.x8e_c00264{left:358.666667pt;}
.x22_c00264{left:360.000000pt;}
.x1_c00264{left:361.333333pt;}
.xa7_c00264{left:363.040000pt;}
.x4d_c00264{left:364.000000pt;}
.x84_c00264{left:365.706667pt;}
.x75_c00264{left:366.666667pt;}
.xe4_c00264{left:368.000000pt;}
.xe6_c00264{left:369.333333pt;}
.xb3_c00264{left:370.666667pt;}
.x99_c00264{left:371.626667pt;}
.xd7_c00264{left:376.000000pt;}
.x9e_c00264{left:377.333333pt;}
.x42_c00264{left:378.666667pt;}
.xc_c00264{left:380.000000pt;}
.x34_c00264{left:382.293333pt;}
.xc5_c00264{left:384.000000pt;}
.x59_c00264{left:385.333333pt;}
.xfa_c00264{left:386.666667pt;}
.x17_c00264{left:388.000000pt;}
.x69_c00264{left:389.333333pt;}
.xa8_c00264{left:392.373333pt;}
.xd8_c00264{left:393.333333pt;}
.xf3_c00264{left:395.626667pt;}
.x4e_c00264{left:396.960000pt;}
.x2a_c00264{left:399.040000pt;}
.xbe_c00264{left:400.000000pt;}
.x6a_c00264{left:402.666667pt;}
.xd_c00264{left:408.000000pt;}
.xd9_c00264{left:409.706667pt;}
.x85_c00264{left:410.666667pt;}
.xee_c00264{left:411.626667pt;}
.xc6_c00264{left:413.706667pt;}
.x5a_c00264{left:416.000000pt;}
.x35_c00264{left:420.000000pt;}
.xd5_c00264{left:421.333333pt;}
.x18_c00264{left:422.666667pt;}
.x4f_c00264{left:424.373333pt;}
.x6b_c00264{left:425.333333pt;}
.x43_c00264{left:426.666667pt;}
.xb4_c00264{left:428.000000pt;}
.xf6_c00264{left:429.333333pt;}
.x9f_c00264{left:431.040000pt;}
.x8f_c00264{left:433.333333pt;}
.x86_c00264{left:436.000000pt;}
.xe7_c00264{left:437.333333pt;}
.x44_c00264{left:439.040000pt;}
.xe_c00264{left:441.333333pt;}
.x76_c00264{left:443.040000pt;}
.xfb_c00264{left:444.000000pt;}
.x36_c00264{left:444.960000pt;}
.x50_c00264{left:447.426667pt;}
.xad_c00264{left:450.293333pt;}
.xb9_c00264{left:452.000000pt;}
.x2b_c00264{left:454.666667pt;}
.xe0_c00264{left:458.293333pt;}
.x6c_c00264{left:460.000000pt;}
.xa9_c00264{left:462.666667pt;}
.x90_c00264{left:464.373333pt;}
.x77_c00264{left:467.040000pt;}
.x7c_c00264{left:468.000000pt;}
.xcb_c00264{left:469.333333pt;}
.x9a_c00264{left:470.666667pt;}
.xba_c00264{left:472.000000pt;}
.x6d_c00264{left:475.626667pt;}
.xae_c00264{left:476.960000pt;}
.x5b_c00264{left:478.666667pt;}
.xc7_c00264{left:480.000000pt;}
.xbf_c00264{left:481.333333pt;}
.x37_c00264{left:482.666667pt;}
.x87_c00264{left:483.626667pt;}
.x45_c00264{left:484.760000pt;}
.xaa_c00264{left:487.040000pt;}
.x19_c00264{left:488.000000pt;}
.x6e_c00264{left:492.960000pt;}
.xa0_c00264{left:494.666667pt;}
.x78_c00264{left:497.333333pt;}
.x7d_c00264{left:498.666667pt;}
.x51_c00264{left:500.373333pt;}
.xcc_c00264{left:502.666667pt;}
.x6f_c00264{left:508.000000pt;}
.x5c_c00264{left:510.666667pt;}
.xa1_c00264{left:512.373333pt;}
.x2c_c00264{left:513.333333pt;}
.xb5_c00264{left:515.040000pt;}
.x7e_c00264{left:516.373333pt;}
.x91_c00264{left:517.333333pt;}
.x38_c00264{left:518.293333pt;}
.xda_c00264{left:519.626667pt;}
.xf7_c00264{left:524.373333pt;}
.xe8_c00264{left:525.333333pt;}
.xf_c00264{left:532.960000pt;}
.x2d_c00264{left:535.040000pt;}
.xa2_c00264{left:536.000000pt;}
.x46_c00264{left:536.960000pt;}
.x79_c00264{left:538.293333pt;}
.xfd_c00264{left:539.800000pt;}
.x7f_c00264{left:541.333333pt;}
.x5d_c00264{left:543.040000pt;}
.x1a_c00264{left:544.000000pt;}
.x39_c00264{left:545.333333pt;}
.x9b_c00264{left:546.666667pt;}
.xdb_c00264{left:548.000000pt;}
.x10_c00264{left:549.706667pt;}
.xcd_c00264{left:552.373333pt;}
.xe9_c00264{left:553.333333pt;}
.x2e_c00264{left:554.293333pt;}
.xf4_c00264{left:556.000000pt;}
.x70_c00264{left:559.040000pt;}
.xef_c00264{left:560.000000pt;}
.xfc_c00264{left:562.666667pt;}
.xb6_c00264{left:564.373333pt;}
.x47_c00264{left:565.333333pt;}
.xe1_c00264{left:568.000000pt;}
.x52_c00264{left:568.960000pt;}
.xa3_c00264{left:570.666667pt;}
.xce_c00264{left:572.373333pt;}
.xc8_c00264{left:574.666667pt;}
.x1b_c00264{left:575.626667pt;}
.x5e_c00264{left:578.293333pt;}
.xbb_c00264{left:580.960000pt;}
.x92_c00264{left:582.666667pt;}
.xf8_c00264{left:584.000000pt;}
.x11_c00264{left:585.333333pt;}
.x2f_c00264{left:589.133333pt;}
.xea_c00264{left:590.666667pt;}
.xdc_c00264{left:592.000000pt;}
.xe5_c00264{left:592.960000pt;}
.x3a_c00264{left:594.666667pt;}
.xe2_c00264{left:596.960000pt;}
.x93_c00264{left:597.906667pt;}
.x5f_c00264{left:601.333333pt;}
.xf0_c00264{left:602.666667pt;}
.xcf_c00264{left:603.626667pt;}
.x80_c00264{left:605.333333pt;}
.x9c_c00264{left:608.960000pt;}
.x1c_c00264{left:611.040000pt;}
.x12_c00264{left:612.000000pt;}
.x88_c00264{left:613.333333pt;}
.xeb_c00264{left:617.706667pt;}
.xfe_c00264{left:619.240000pt;}
.xbc_c00264{left:622.666667pt;}
.x30_c00264{left:624.000000pt;}
.x2_c00264{left:624.960000pt;}
.xd0_c00264{left:629.333333pt;}
.x48_c00264{left:630.666667pt;}
.x81_c00264{left:635.626667pt;}
.xf1_c00264{left:636.960000pt;}
.xc0_c00264{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3fd5836e69e588269c6b75b0.woff2')format("woff");}.ff1_c00265{font-family:ff1_c00265;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9f_c00265{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.m1a_c00265{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m79_c00265{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_c00265{transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);}
.m3a_c00265{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m5f_c00265{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.md2_c00265{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m94_c00265{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m63_c00265{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.ma1_c00265{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m38_c00265{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mc_c00265{transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);}
.m56_c00265{transform:matrix(0.381518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381518,0.000000,0.000000,0.250000,0,0);}
.m5e_c00265{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m37_c00265{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.mb7_c00265{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.mb0_c00265{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m36_c00265{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m1c_c00265{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m5b_c00265{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.mbb_c00265{transform:matrix(0.395706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395706,0.000000,0.000000,0.250000,0,0);}
.mcb_c00265{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m89_c00265{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.mc5_c00265{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.m2e_c00265{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m76_c00265{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m32_c00265{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);}
.m4c_c00265{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m75_c00265{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mc9_c00265{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m3d_c00265{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m7a_c00265{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m60_c00265{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.mb9_c00265{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m4f_c00265{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.mba_c00265{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m8e_c00265{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m29_c00265{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.m7d_c00265{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m9e_c00265{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.maf_c00265{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m6e_c00265{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.md0_c00265{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m2f_c00265{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.ma8_c00265{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mcc_c00265{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m9_c00265{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m5d_c00265{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m82_c00265{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m25_c00265{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m62_c00265{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.m42_c00265{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m15_c00265{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m7f_c00265{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m1d_c00265{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m46_c00265{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.md1_c00265{transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);}
.mb5_c00265{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m3c_c00265{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.md6_c00265{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.md7_c00265{transform:matrix(0.426764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426764,0.000000,0.000000,0.250000,0,0);}
.m34_c00265{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.mac_c00265{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m88_c00265{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m19_c00265{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m9b_c00265{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.ma7_c00265{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m78_c00265{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m80_c00265{transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);}
.m59_c00265{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.mc1_c00265{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m3b_c00265{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m20_c00265{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.md5_c00265{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m2b_c00265{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m85_c00265{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.md4_c00265{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m8d_c00265{transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);}
.m96_c00265{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m49_c00265{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.ma2_c00265{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.mcf_c00265{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.mb1_c00265{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m1e_c00265{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m7c_c00265{transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);}
.mbe_c00265{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.mb8_c00265{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.m73_c00265{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m1b_c00265{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m26_c00265{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m7e_c00265{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m81_c00265{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m97_c00265{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mb6_c00265{transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);}
.m30_c00265{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m40_c00265{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m18_c00265{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.ma3_c00265{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m4d_c00265{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m4e_c00265{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);}
.ma6_c00265{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m8_c00265{transform:matrix(0.504638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504638,0.000000,0.000000,0.250000,0,0);}
.m8c_c00265{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m70_c00265{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m98_c00265{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m8a_c00265{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.maa_c00265{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.mbc_c00265{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m5_c00265{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m77_c00265{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mb_c00265{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m35_c00265{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m7b_c00265{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.ma5_c00265{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m6c_c00265{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m1f_c00265{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m28_c00265{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mc4_c00265{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m52_c00265{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mc0_c00265{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m33_c00265{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mc7_c00265{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m64_c00265{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mbf_c00265{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.me_c00265{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m17_c00265{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m7_c00265{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m21_c00265{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m68_c00265{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m11_c00265{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m91_c00265{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mce_c00265{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.mc8_c00265{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);}
.m12_c00265{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m2d_c00265{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m92_c00265{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.ma_c00265{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m8b_c00265{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m47_c00265{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m58_c00265{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m72_c00265{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mae_c00265{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m55_c00265{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m99_c00265{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m9a_c00265{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m8f_c00265{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m23_c00265{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m66_c00265{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.md3_c00265{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m4a_c00265{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mbd_c00265{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m5a_c00265{transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);}
.m10_c00265{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m3e_c00265{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m43_c00265{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m4_c00265{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m4b_c00265{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mc3_c00265{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m51_c00265{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m16_c00265{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mcd_c00265{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m93_c00265{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m9d_c00265{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m57_c00265{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.mb3_c00265{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m53_c00265{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m31_c00265{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.ma0_c00265{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m61_c00265{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mf_c00265{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m24_c00265{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m67_c00265{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m6d_c00265{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.mab_c00265{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mca_c00265{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m6b_c00265{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m2a_c00265{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.ma9_c00265{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m3_c00265{transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);}
.mc6_c00265{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m13_c00265{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.m71_c00265{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.md_c00265{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m5c_c00265{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);}
.m44_c00265{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m83_c00265{transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);}
.m0_c00265{transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);}
.m69_c00265{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m84_c00265{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m2_c00265{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.mb2_c00265{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.m65_c00265{transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);}
.m27_c00265{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m14_c00265{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m90_c00265{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.mb4_c00265{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m9c_c00265{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m6a_c00265{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m54_c00265{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m3f_c00265{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m39_c00265{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m2c_c00265{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m6_c00265{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m95_c00265{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.m74_c00265{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m86_c00265{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m48_c00265{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m87_c00265{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.m22_c00265{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m45_c00265{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.m41_c00265{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m6f_c00265{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mad_c00265{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.m1_c00265{transform:matrix(0.855809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855809,0.000000,0.000000,0.250000,0,0);}
.ma4_c00265{transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);}
.mc2_c00265{transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);}
.v0_c00265{vertical-align:0.000000px;}
.v1_c00265{vertical-align:6.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;}
}
.ws1_c00265{word-spacing:-5.728320px;}
.ws0_c00265{word-spacing:-4.050706px;}
.ws2_c00265{word-spacing:0.000000px;}
.fc0_c00265{color:transparent;}
.fs2_c00265{font-size:18.720000px;}
.fs6_c00265{font-size:20.400000px;}
.fs1_c00265{font-size:25.500000px;}
.fs0_c00265{font-size:28.920000px;}
.fs3_c00265{font-size:32.340000px;}
.fs4_c00265{font-size:35.700000px;}
.fs5_c00265{font-size:39.120000px;}
.y0_c00265{bottom:0.000000px;}
.ybe_c00265{bottom:229.905000px;}
.yc5_c00265{bottom:231.180000px;}
.yc1_c00265{bottom:231.405000px;}
.yc3_c00265{bottom:232.245000px;}
.ybf_c00265{bottom:232.905000px;}
.yc4_c00265{bottom:233.130000px;}
.yc2_c00265{bottom:233.970000px;}
.yc0_c00265{bottom:234.405000px;}
.ybd_c00265{bottom:249.405000px;}
.yba_c00265{bottom:251.745000px;}
.ybc_c00265{bottom:252.825000px;}
.ybb_c00265{bottom:253.905000px;}
.yb6_c00265{bottom:269.745000px;}
.yb5_c00265{bottom:271.245000px;}
.yb9_c00265{bottom:272.130000px;}
.yb3_c00265{bottom:272.970000px;}
.yb4_c00265{bottom:273.405000px;}
.yb7_c00265{bottom:273.630000px;}
.yb8_c00265{bottom:274.470000px;}
.yb1_c00265{bottom:288.405000px;}
.yb0_c00265{bottom:290.745000px;}
.yb2_c00265{bottom:292.905000px;}
.yab_c00265{bottom:310.245000px;}
.yac_c00265{bottom:311.745000px;}
.yaf_c00265{bottom:312.630000px;}
.yae_c00265{bottom:313.470000px;}
.yad_c00265{bottom:313.905000px;}
.yaa_c00265{bottom:329.745000px;}
.ya5_c00265{bottom:329.970000px;}
.ya8_c00265{bottom:331.245000px;}
.ya7_c00265{bottom:332.130000px;}
.ya9_c00265{bottom:332.970000px;}
.ya6_c00265{bottom:333.405000px;}
.ya4_c00265{bottom:349.470000px;}
.ya1_c00265{bottom:349.905000px;}
.ya3_c00265{bottom:351.630000px;}
.ya0_c00265{bottom:352.905000px;}
.ya2_c00265{bottom:353.970000px;}
.y9d_c00265{bottom:370.245000px;}
.y9c_c00265{bottom:371.970000px;}
.y9b_c00265{bottom:372.405000px;}
.y9e_c00265{bottom:372.630000px;}
.y9f_c00265{bottom:373.470000px;}
.y9a_c00265{bottom:388.470000px;}
.y97_c00265{bottom:388.905000px;}
.y96_c00265{bottom:389.745000px;}
.y98_c00265{bottom:391.470000px;}
.y94_c00265{bottom:391.905000px;}
.y99_c00265{bottom:392.130000px;}
.y95_c00265{bottom:392.325000px;}
.y92_c00265{bottom:409.680000px;}
.y90_c00265{bottom:410.745000px;}
.y93_c00265{bottom:411.405000px;}
.y91_c00265{bottom:412.905000px;}
.y8e_c00265{bottom:428.745000px;}
.y8d_c00265{bottom:429.825000px;}
.y8c_c00265{bottom:430.245000px;}
.y8f_c00265{bottom:430.905000px;}
.y8a_c00265{bottom:431.130000px;}
.y8b_c00265{bottom:432.405000px;}
.y89_c00265{bottom:449.745000px;}
.y86_c00265{bottom:450.405000px;}
.y88_c00265{bottom:450.825000px;}
.y87_c00265{bottom:451.905000px;}
.y85_c00265{bottom:469.050000px;}
.y82_c00265{bottom:469.245000px;}
.y84_c00265{bottom:470.325000px;}
.y83_c00265{bottom:471.405000px;}
.y81_c00265{bottom:486.405000px;}
.y7f_c00265{bottom:488.745000px;}
.y7c_c00265{bottom:489.630000px;}
.y7e_c00265{bottom:489.825000px;}
.y7d_c00265{bottom:490.905000px;}
.y80_c00265{bottom:491.130000px;}
.y78_c00265{bottom:512.745000px;}
.y7a_c00265{bottom:514.905000px;}
.y7b_c00265{bottom:515.130000px;}
.y79_c00265{bottom:515.970000px;}
.y77_c00265{bottom:546.405000px;}
.y74_c00265{bottom:547.245000px;}
.y73_c00265{bottom:547.470000px;}
.y76_c00265{bottom:547.680000px;}
.y70_c00265{bottom:548.325000px;}
.y6f_c00265{bottom:549.405000px;}
.y71_c00265{bottom:549.630000px;}
.y72_c00265{bottom:550.470000px;}
.y75_c00265{bottom:550.905000px;}
.y6a_c00265{bottom:566.745000px;}
.y6c_c00265{bottom:566.970000px;}
.y6e_c00265{bottom:567.825000px;}
.y6b_c00265{bottom:568.245000px;}
.y69_c00265{bottom:568.905000px;}
.y6d_c00265{bottom:569.130000px;}
.y67_c00265{bottom:587.745000px;}
.y68_c00265{bottom:588.405000px;}
.y64_c00265{bottom:588.630000px;}
.y66_c00265{bottom:589.470000px;}
.y65_c00265{bottom:589.905000px;}
.y60_c00265{bottom:607.245000px;}
.y62_c00265{bottom:608.130000px;}
.y63_c00265{bottom:608.325000px;}
.y5f_c00265{bottom:609.405000px;}
.y61_c00265{bottom:609.630000px;}
.y5a_c00265{bottom:625.905000px;}
.y58_c00265{bottom:626.745000px;}
.y5e_c00265{bottom:627.630000px;}
.y57_c00265{bottom:627.825000px;}
.y5c_c00265{bottom:628.470000px;}
.y59_c00265{bottom:628.905000px;}
.y5d_c00265{bottom:629.130000px;}
.y5b_c00265{bottom:629.970000px;}
.y54_c00265{bottom:645.405000px;}
.y53_c00265{bottom:646.245000px;}
.y52_c00265{bottom:648.405000px;}
.y56_c00265{bottom:648.630000px;}
.y55_c00265{bottom:649.470000px;}
.y51_c00265{bottom:664.905000px;}
.y50_c00265{bottom:665.745000px;}
.y4e_c00265{bottom:666.825000px;}
.y4f_c00265{bottom:667.905000px;}
.y4d_c00265{bottom:685.245000px;}
.y4b_c00265{bottom:686.325000px;}
.y4c_c00265{bottom:687.405000px;}
.y48_c00265{bottom:687.630000px;}
.y4a_c00265{bottom:687.825000px;}
.y49_c00265{bottom:688.905000px;}
.y45_c00265{bottom:704.970000px;}
.y46_c00265{bottom:706.245000px;}
.y47_c00265{bottom:706.905000px;}
.y44_c00265{bottom:707.130000px;}
.y42_c00265{bottom:707.970000px;}
.y43_c00265{bottom:708.405000px;}
.y40_c00265{bottom:725.745000px;}
.y41_c00265{bottom:727.470000px;}
.y3f_c00265{bottom:727.905000px;}
.y3c_c00265{bottom:745.245000px;}
.y3b_c00265{bottom:746.325000px;}
.y3e_c00265{bottom:746.970000px;}
.y3a_c00265{bottom:747.405000px;}
.y3d_c00265{bottom:748.470000px;}
.y39_c00265{bottom:763.905000px;}
.y37_c00265{bottom:764.745000px;}
.y38_c00265{bottom:766.905000px;}
.y34_c00265{bottom:783.405000px;}
.y35_c00265{bottom:784.245000px;}
.y33_c00265{bottom:784.680000px;}
.y36_c00265{bottom:785.130000px;}
.y30_c00265{bottom:786.405000px;}
.y31_c00265{bottom:787.470000px;}
.y32_c00265{bottom:787.905000px;}
.y2a_c00265{bottom:803.745000px;}
.y2b_c00265{bottom:804.180000px;}
.y2d_c00265{bottom:805.245000px;}
.y2f_c00265{bottom:805.905000px;}
.y2e_c00265{bottom:806.970000px;}
.y2c_c00265{bottom:807.405000px;}
.y29_c00265{bottom:822.405000px;}
.y28_c00265{bottom:824.325000px;}
.y27_c00265{bottom:824.745000px;}
.y24_c00265{bottom:825.405000px;}
.y25_c00265{bottom:825.630000px;}
.y26_c00265{bottom:826.905000px;}
.y22_c00265{bottom:842.745000px;}
.y23_c00265{bottom:844.905000px;}
.y1e_c00265{bottom:845.130000px;}
.y21_c00265{bottom:845.325000px;}
.y20_c00265{bottom:845.970000px;}
.y1f_c00265{bottom:846.405000px;}
.y1d_c00265{bottom:862.245000px;}
.y1c_c00265{bottom:863.745000px;}
.y1a_c00265{bottom:865.470000px;}
.y1b_c00265{bottom:865.905000px;}
.y18_c00265{bottom:883.245000px;}
.y19_c00265{bottom:884.325000px;}
.y17_c00265{bottom:885.405000px;}
.y14_c00265{bottom:902.745000px;}
.y15_c00265{bottom:904.905000px;}
.y16_c00265{bottom:905.130000px;}
.y11_c00265{bottom:921.405000px;}
.ye_c00265{bottom:922.245000px;}
.yf_c00265{bottom:923.325000px;}
.y10_c00265{bottom:923.745000px;}
.y12_c00265{bottom:924.405000px;}
.y13_c00265{bottom:924.630000px;}
.yd_c00265{bottom:941.745000px;}
.yc_c00265{bottom:943.245000px;}
.y9_c00265{bottom:943.905000px;}
.yb_c00265{bottom:944.970000px;}
.ya_c00265{bottom:945.405000px;}
.y8_c00265{bottom:960.180000px;}
.y7_c00265{bottom:961.245000px;}
.y6_c00265{bottom:962.325000px;}
.y3_c00265{bottom:963.405000px;}
.y5_c00265{bottom:963.630000px;}
.y2_c00265{bottom:964.470000px;}
.y4_c00265{bottom:964.905000px;}
.y1_c00265{bottom:1003.905000px;}
.h3_c00265{height:23.025234px;}
.h8_c00265{height:25.091602px;}
.h2_c00265{height:31.364502px;}
.h1_c00265{height:35.571035px;}
.h4_c00265{height:39.777568px;}
.h5_c00265{height:43.910303px;}
.h6_c00265{height:48.116836px;}
.h7_c00265{height:49.910303px;}
.h0_c00265{height:1335.000000px;}
.w0_c00265{width:880.500000px;}
.x0_c00265{left:0.000000px;}
.xab_c00265{left:151.080000px;}
.xe_c00265{left:153.000000px;}
.x1c_c00265{left:154.080000px;}
.xd6_c00265{left:158.580000px;}
.xb5_c00265{left:168.000000px;}
.x3_c00265{left:169.500000px;}
.x54_c00265{left:171.000000px;}
.xf_c00265{left:172.920000px;}
.x8c_c00265{left:174.000000px;}
.x48_c00265{left:175.500000px;}
.x34_c00265{left:179.580000px;}
.xba_c00265{left:181.500000px;}
.xa1_c00265{left:182.580000px;}
.xce_c00265{left:184.080000px;}
.xc3_c00265{left:186.000000px;}
.x1d_c00265{left:187.500000px;}
.x83_c00265{left:189.420000px;}
.x3e_c00265{left:190.920000px;}
.x80_c00265{left:196.920000px;}
.x4_c00265{left:199.080000px;}
.x10_c00265{left:201.000000px;}
.x70_c00265{left:208.920000px;}
.x55_c00265{left:211.500000px;}
.x84_c00265{left:214.920000px;}
.x28_c00265{left:217.500000px;}
.xeb_c00265{left:219.000000px;}
.xc9_c00265{left:221.145000px;}
.x66_c00265{left:226.500000px;}
.xac_c00265{left:227.580000px;}
.x8d_c00265{left:229.500000px;}
.x5d_c00265{left:231.000000px;}
.x49_c00265{left:232.500000px;}
.x98_c00265{left:234.420000px;}
.x78_c00265{left:235.500000px;}
.x29_c00265{left:237.420000px;}
.xf0_c00265{left:240.000000px;}
.x81_c00265{left:241.920000px;}
.x11_c00265{left:243.420000px;}
.x5_c00265{left:245.580000px;}
.x8e_c00265{left:249.000000px;}
.x1e_c00265{left:250.275000px;}
.x4a_c00265{left:252.000000px;}
.x85_c00265{left:253.500000px;}
.xad_c00265{left:254.580000px;}
.x2a_c00265{left:256.920000px;}
.xd7_c00265{left:258.420000px;}
.xe9_c00265{left:262.080000px;}
.x56_c00265{left:264.000000px;}
.xfb_c00265{left:265.500000px;}
.xb6_c00265{left:266.580000px;}
.xc4_c00265{left:268.080000px;}
.x3f_c00265{left:269.580000px;}
.x12_c00265{left:271.080000px;}
.xae_c00265{left:274.500000px;}
.xe1_c00265{left:276.000000px;}
.x67_c00265{left:277.080000px;}
.xbc_c00265{left:278.580000px;}
.xf1_c00265{left:280.920000px;}
.x2b_c00265{left:282.000000px;}
.xa2_c00265{left:283.080000px;}
.x4b_c00265{left:285.000000px;}
.x40_c00265{left:288.420000px;}
.x86_c00265{left:291.420000px;}
.x1f_c00265{left:294.420000px;}
.x79_c00265{left:295.500000px;}
.xbd_c00265{left:296.580000px;}
.xca_c00265{left:302.580000px;}
.xbb_c00265{left:304.080000px;}
.x82_c00265{left:306.000000px;}
.x8f_c00265{left:307.080000px;}
.x35_c00265{left:310.080000px;}
.x6_c00265{left:313.500000px;}
.x41_c00265{left:316.500000px;}
.x57_c00265{left:317.580000px;}
.x20_c00265{left:319.080000px;}
.xd8_c00265{left:321.000000px;}
.x99_c00265{left:322.500000px;}
.xd2_c00265{left:324.000000px;}
.x13_c00265{left:325.500000px;}
.xa3_c00265{left:326.580000px;}
.xf5_c00265{left:328.500000px;}
.x5e_c00265{left:329.580000px;}
.xec_c00265{left:331.500000px;}
.xf2_c00265{left:334.920000px;}
.x90_c00265{left:336.420000px;}
.xc5_c00265{left:337.500000px;}
.xa4_c00265{left:339.000000px;}
.x68_c00265{left:340.920000px;}
.xd9_c00265{left:343.920000px;}
.x4c_c00265{left:345.000000px;}
.x21_c00265{left:346.500000px;}
.x9a_c00265{left:348.000000px;}
.x7_c00265{left:349.500000px;}
.xd3_c00265{left:351.000000px;}
.x87_c00265{left:359.580000px;}
.x8_c00265{left:361.500000px;}
.x91_c00265{left:363.000000px;}
.xf3_c00265{left:364.500000px;}
.x1_c00265{left:365.580000px;}
.x42_c00265{left:367.920000px;}
.x69_c00265{left:369.420000px;}
.xda_c00265{left:370.500000px;}
.x9b_c00265{left:372.000000px;}
.x88_c00265{left:376.920000px;}
.x5f_c00265{left:378.420000px;}
.xa5_c00265{left:379.500000px;}
.xf6_c00265{left:382.500000px;}
.x22_c00265{left:383.580000px;}
.xea_c00265{left:385.080000px;}
.x4d_c00265{left:387.420000px;}
.x14_c00265{left:388.920000px;}
.xbe_c00265{left:390.000000px;}
.x36_c00265{left:391.920000px;}
.xfc_c00265{left:393.000000px;}
.x7a_c00265{left:394.500000px;}
.x2c_c00265{left:396.000000px;}
.xaf_c00265{left:397.500000px;}
.x58_c00265{left:399.000000px;}
.xb7_c00265{left:401.580000px;}
.x6a_c00265{left:403.080000px;}
.x23_c00265{left:405.420000px;}
.xd4_c00265{left:409.920000px;}
.xe6_c00265{left:411.420000px;}
.x4e_c00265{left:414.000000px;}
.x2d_c00265{left:415.500000px;}
.xdb_c00265{left:417.420000px;}
.x37_c00265{left:418.500000px;}
.x92_c00265{left:419.580000px;}
.x2_c00265{left:421.080000px;}
.xbf_c00265{left:424.500000px;}
.xc6_c00265{left:427.080000px;}
.x9_c00265{left:431.355000px;}
.x71_c00265{left:432.420000px;}
.x9c_c00265{left:433.500000px;}
.xf9_c00265{left:434.580000px;}
.x93_c00265{left:438.420000px;}
.x89_c00265{left:441.420000px;}
.xdc_c00265{left:444.000000px;}
.xed_c00265{left:445.500000px;}
.x60_c00265{left:446.580000px;}
.x43_c00265{left:448.080000px;}
.x15_c00265{left:450.420000px;}
.x2e_c00265{left:451.500000px;}
.xb0_c00265{left:453.420000px;}
.x38_c00265{left:454.500000px;}
.x7b_c00265{left:457.920000px;}
.xcb_c00265{left:460.080000px;}
.xb8_c00265{left:463.500000px;}
.x94_c00265{left:465.000000px;}
.x61_c00265{left:468.420000px;}
.x39_c00265{left:471.000000px;}
.x6b_c00265{left:474.420000px;}
.xfd_c00265{left:477.420000px;}
.x16_c00265{left:478.500000px;}
.xe7_c00265{left:479.580000px;}
.x2f_c00265{left:481.080000px;}
.xdd_c00265{left:482.580000px;}
.xc0_c00265{left:484.500000px;}
.xa6_c00265{left:488.580000px;}
.xf7_c00265{left:490.080000px;}
.xee_c00265{left:492.000000px;}
.x8a_c00265{left:493.920000px;}
.x62_c00265{left:496.080000px;}
.x9d_c00265{left:498.420000px;}
.xb1_c00265{left:499.500000px;}
.x30_c00265{left:501.000000px;}
.x24_c00265{left:502.500000px;}
.xcc_c00265{left:504.000000px;}
.x72_c00265{left:507.420000px;}
.xde_c00265{left:513.000000px;}
.x59_c00265{left:514.500000px;}
.x95_c00265{left:516.000000px;}
.x6c_c00265{left:517.500000px;}
.xa_c00265{left:519.000000px;}
.xc7_c00265{left:522.420000px;}
.x31_c00265{left:523.920000px;}
.x9e_c00265{left:526.920000px;}
.x4f_c00265{left:528.420000px;}
.x5a_c00265{left:529.500000px;}
.x7c_c00265{left:535.920000px;}
.x25_c00265{left:537.000000px;}
.x73_c00265{left:538.500000px;}
.x17_c00265{left:542.580000px;}
.x3a_c00265{left:549.420000px;}
.x44_c00265{left:551.580000px;}
.xa7_c00265{left:554.580000px;}
.xcf_c00265{left:556.500000px;}
.xc1_c00265{left:557.580000px;}
.xe2_c00265{left:559.500000px;}
.x18_c00265{left:560.580000px;}
.x32_c00265{left:563.580000px;}
.x6d_c00265{left:565.500000px;}
.x7d_c00265{left:568.500000px;}
.xa8_c00265{left:573.420000px;}
.x50_c00265{left:575.580000px;}
.x9f_c00265{left:577.080000px;}
.xc8_c00265{left:578.580000px;}
.x26_c00265{left:580.080000px;}
.xfe_c00265{left:582.000000px;}
.xb_c00265{left:585.420000px;}
.xdf_c00265{left:586.500000px;}
.xcd_c00265{left:588.000000px;}
.x74_c00265{left:589.920000px;}
.xef_c00265{left:591.420000px;}
.xfa_c00265{left:592.920000px;}
.x51_c00265{left:594.420000px;}
.xd0_c00265{left:595.500000px;}
.xb9_c00265{left:597.000000px;}
.xa9_c00265{left:598.500000px;}
.x63_c00265{left:599.580000px;}
.xe8_c00265{left:604.500000px;}
.x96_c00265{left:606.000000px;}
.x19_c00265{left:607.080000px;}
.xe4_c00265{left:609.000000px;}
.x7e_c00265{left:610.500000px;}
.x6e_c00265{left:612.855000px;}
.x3b_c00265{left:614.580000px;}
.xb2_c00265{left:618.000000px;}
.x64_c00265{left:619.080000px;}
.x52_c00265{left:620.580000px;}
.xc_c00265{left:622.080000px;}
.xc2_c00265{left:624.000000px;}
.x7f_c00265{left:627.000000px;}
.xe5_c00265{left:628.500000px;}
.xf8_c00265{left:630.000000px;}
.x75_c00265{left:631.500000px;}
.xb3_c00265{left:637.500000px;}
.x45_c00265{left:642.420000px;}
.x1a_c00265{left:643.500000px;}
.x76_c00265{left:645.000000px;}
.x5b_c00265{left:646.080000px;}
.x3c_c00265{left:648.000000px;}
.x97_c00265{left:649.080000px;}
.x27_c00265{left:652.080000px;}
.xb4_c00265{left:655.500000px;}
.x1b_c00265{left:661.500000px;}
.xa0_c00265{left:662.580000px;}
.xff_c00265{left:666.420000px;}
.x46_c00265{left:669.000000px;}
.x3d_c00265{left:673.500000px;}
.xd_c00265{left:676.080000px;}
.x5c_c00265{left:678.420000px;}
.xd1_c00265{left:681.000000px;}
.xf4_c00265{left:688.080000px;}
.xe3_c00265{left:689.580000px;}
.x65_c00265{left:691.500000px;}
.x53_c00265{left:694.920000px;}
.x8b_c00265{left:697.500000px;}
.x77_c00265{left:699.420000px;}
.x6f_c00265{left:703.920000px;}
.x33_c00265{left:706.920000px;}
.x47_c00265{left:708.000000px;}
.xe0_c00265{left:709.920000px;}
.xaa_c00265{left:717.000000px;}
.xd5_c00265{left:723.420000px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.v1_c00265{vertical-align:5.333333pt;}
.ls0_c00265{letter-spacing:0.000000pt;}
.ws1_c00265{word-spacing:-5.091840pt;}
.ws0_c00265{word-spacing:-3.600627pt;}
.ws2_c00265{word-spacing:0.000000pt;}
.fs2_c00265{font-size:16.640000pt;}
.fs6_c00265{font-size:18.133333pt;}
.fs1_c00265{font-size:22.666667pt;}
.fs0_c00265{font-size:25.706667pt;}
.fs3_c00265{font-size:28.746667pt;}
.fs4_c00265{font-size:31.733333pt;}
.fs5_c00265{font-size:34.773333pt;}
.y0_c00265{bottom:0.000000pt;}
.ybe_c00265{bottom:204.360000pt;}
.yc5_c00265{bottom:205.493333pt;}
.yc1_c00265{bottom:205.693333pt;}
.yc3_c00265{bottom:206.440000pt;}
.ybf_c00265{bottom:207.026667pt;}
.yc4_c00265{bottom:207.226667pt;}
.yc2_c00265{bottom:207.973333pt;}
.yc0_c00265{bottom:208.360000pt;}
.ybd_c00265{bottom:221.693333pt;}
.yba_c00265{bottom:223.773333pt;}
.ybc_c00265{bottom:224.733333pt;}
.ybb_c00265{bottom:225.693333pt;}
.yb6_c00265{bottom:239.773333pt;}
.yb5_c00265{bottom:241.106667pt;}
.yb9_c00265{bottom:241.893333pt;}
.yb3_c00265{bottom:242.640000pt;}
.yb4_c00265{bottom:243.026667pt;}
.yb7_c00265{bottom:243.226667pt;}
.yb8_c00265{bottom:243.973333pt;}
.yb1_c00265{bottom:256.360000pt;}
.yb0_c00265{bottom:258.440000pt;}
.yb2_c00265{bottom:260.360000pt;}
.yab_c00265{bottom:275.773333pt;}
.yac_c00265{bottom:277.106667pt;}
.yaf_c00265{bottom:277.893333pt;}
.yae_c00265{bottom:278.640000pt;}
.yad_c00265{bottom:279.026667pt;}
.yaa_c00265{bottom:293.106667pt;}
.ya5_c00265{bottom:293.306667pt;}
.ya8_c00265{bottom:294.440000pt;}
.ya7_c00265{bottom:295.226667pt;}
.ya9_c00265{bottom:295.973333pt;}
.ya6_c00265{bottom:296.360000pt;}
.ya4_c00265{bottom:310.640000pt;}
.ya1_c00265{bottom:311.026667pt;}
.ya3_c00265{bottom:312.560000pt;}
.ya0_c00265{bottom:313.693333pt;}
.ya2_c00265{bottom:314.640000pt;}
.y9d_c00265{bottom:329.106667pt;}
.y9c_c00265{bottom:330.640000pt;}
.y9b_c00265{bottom:331.026667pt;}
.y9e_c00265{bottom:331.226667pt;}
.y9f_c00265{bottom:331.973333pt;}
.y9a_c00265{bottom:345.306667pt;}
.y97_c00265{bottom:345.693333pt;}
.y96_c00265{bottom:346.440000pt;}
.y98_c00265{bottom:347.973333pt;}
.y94_c00265{bottom:348.360000pt;}
.y99_c00265{bottom:348.560000pt;}
.y95_c00265{bottom:348.733333pt;}
.y92_c00265{bottom:364.160000pt;}
.y90_c00265{bottom:365.106667pt;}
.y93_c00265{bottom:365.693333pt;}
.y91_c00265{bottom:367.026667pt;}
.y8e_c00265{bottom:381.106667pt;}
.y8d_c00265{bottom:382.066667pt;}
.y8c_c00265{bottom:382.440000pt;}
.y8f_c00265{bottom:383.026667pt;}
.y8a_c00265{bottom:383.226667pt;}
.y8b_c00265{bottom:384.360000pt;}
.y89_c00265{bottom:399.773333pt;}
.y86_c00265{bottom:400.360000pt;}
.y88_c00265{bottom:400.733333pt;}
.y87_c00265{bottom:401.693333pt;}
.y85_c00265{bottom:416.933333pt;}
.y82_c00265{bottom:417.106667pt;}
.y84_c00265{bottom:418.066667pt;}
.y83_c00265{bottom:419.026667pt;}
.y81_c00265{bottom:432.360000pt;}
.y7f_c00265{bottom:434.440000pt;}
.y7c_c00265{bottom:435.226667pt;}
.y7e_c00265{bottom:435.400000pt;}
.y7d_c00265{bottom:436.360000pt;}
.y80_c00265{bottom:436.560000pt;}
.y78_c00265{bottom:455.773333pt;}
.y7a_c00265{bottom:457.693333pt;}
.y7b_c00265{bottom:457.893333pt;}
.y79_c00265{bottom:458.640000pt;}
.y77_c00265{bottom:485.693333pt;}
.y74_c00265{bottom:486.440000pt;}
.y73_c00265{bottom:486.640000pt;}
.y76_c00265{bottom:486.826667pt;}
.y70_c00265{bottom:487.400000pt;}
.y6f_c00265{bottom:488.360000pt;}
.y71_c00265{bottom:488.560000pt;}
.y72_c00265{bottom:489.306667pt;}
.y75_c00265{bottom:489.693333pt;}
.y6a_c00265{bottom:503.773333pt;}
.y6c_c00265{bottom:503.973333pt;}
.y6e_c00265{bottom:504.733333pt;}
.y6b_c00265{bottom:505.106667pt;}
.y69_c00265{bottom:505.693333pt;}
.y6d_c00265{bottom:505.893333pt;}
.y67_c00265{bottom:522.440000pt;}
.y68_c00265{bottom:523.026667pt;}
.y64_c00265{bottom:523.226667pt;}
.y66_c00265{bottom:523.973333pt;}
.y65_c00265{bottom:524.360000pt;}
.y60_c00265{bottom:539.773333pt;}
.y62_c00265{bottom:540.560000pt;}
.y63_c00265{bottom:540.733333pt;}
.y5f_c00265{bottom:541.693333pt;}
.y61_c00265{bottom:541.893333pt;}
.y5a_c00265{bottom:556.360000pt;}
.y58_c00265{bottom:557.106667pt;}
.y5e_c00265{bottom:557.893333pt;}
.y57_c00265{bottom:558.066667pt;}
.y5c_c00265{bottom:558.640000pt;}
.y59_c00265{bottom:559.026667pt;}
.y5d_c00265{bottom:559.226667pt;}
.y5b_c00265{bottom:559.973333pt;}
.y54_c00265{bottom:573.693333pt;}
.y53_c00265{bottom:574.440000pt;}
.y52_c00265{bottom:576.360000pt;}
.y56_c00265{bottom:576.560000pt;}
.y55_c00265{bottom:577.306667pt;}
.y51_c00265{bottom:591.026667pt;}
.y50_c00265{bottom:591.773333pt;}
.y4e_c00265{bottom:592.733333pt;}
.y4f_c00265{bottom:593.693333pt;}
.y4d_c00265{bottom:609.106667pt;}
.y4b_c00265{bottom:610.066667pt;}
.y4c_c00265{bottom:611.026667pt;}
.y48_c00265{bottom:611.226667pt;}
.y4a_c00265{bottom:611.400000pt;}
.y49_c00265{bottom:612.360000pt;}
.y45_c00265{bottom:626.640000pt;}
.y46_c00265{bottom:627.773333pt;}
.y47_c00265{bottom:628.360000pt;}
.y44_c00265{bottom:628.560000pt;}
.y42_c00265{bottom:629.306667pt;}
.y43_c00265{bottom:629.693333pt;}
.y40_c00265{bottom:645.106667pt;}
.y41_c00265{bottom:646.640000pt;}
.y3f_c00265{bottom:647.026667pt;}
.y3c_c00265{bottom:662.440000pt;}
.y3b_c00265{bottom:663.400000pt;}
.y3e_c00265{bottom:663.973333pt;}
.y3a_c00265{bottom:664.360000pt;}
.y3d_c00265{bottom:665.306667pt;}
.y39_c00265{bottom:679.026667pt;}
.y37_c00265{bottom:679.773333pt;}
.y38_c00265{bottom:681.693333pt;}
.y34_c00265{bottom:696.360000pt;}
.y35_c00265{bottom:697.106667pt;}
.y33_c00265{bottom:697.493333pt;}
.y36_c00265{bottom:697.893333pt;}
.y30_c00265{bottom:699.026667pt;}
.y31_c00265{bottom:699.973333pt;}
.y32_c00265{bottom:700.360000pt;}
.y2a_c00265{bottom:714.440000pt;}
.y2b_c00265{bottom:714.826667pt;}
.y2d_c00265{bottom:715.773333pt;}
.y2f_c00265{bottom:716.360000pt;}
.y2e_c00265{bottom:717.306667pt;}
.y2c_c00265{bottom:717.693333pt;}
.y29_c00265{bottom:731.026667pt;}
.y28_c00265{bottom:732.733333pt;}
.y27_c00265{bottom:733.106667pt;}
.y24_c00265{bottom:733.693333pt;}
.y25_c00265{bottom:733.893333pt;}
.y26_c00265{bottom:735.026667pt;}
.y22_c00265{bottom:749.106667pt;}
.y23_c00265{bottom:751.026667pt;}
.y1e_c00265{bottom:751.226667pt;}
.y21_c00265{bottom:751.400000pt;}
.y20_c00265{bottom:751.973333pt;}
.y1f_c00265{bottom:752.360000pt;}
.y1d_c00265{bottom:766.440000pt;}
.y1c_c00265{bottom:767.773333pt;}
.y1a_c00265{bottom:769.306667pt;}
.y1b_c00265{bottom:769.693333pt;}
.y18_c00265{bottom:785.106667pt;}
.y19_c00265{bottom:786.066667pt;}
.y17_c00265{bottom:787.026667pt;}
.y14_c00265{bottom:802.440000pt;}
.y15_c00265{bottom:804.360000pt;}
.y16_c00265{bottom:804.560000pt;}
.y11_c00265{bottom:819.026667pt;}
.ye_c00265{bottom:819.773333pt;}
.yf_c00265{bottom:820.733333pt;}
.y10_c00265{bottom:821.106667pt;}
.y12_c00265{bottom:821.693333pt;}
.y13_c00265{bottom:821.893333pt;}
.yd_c00265{bottom:837.106667pt;}
.yc_c00265{bottom:838.440000pt;}
.y9_c00265{bottom:839.026667pt;}
.yb_c00265{bottom:839.973333pt;}
.ya_c00265{bottom:840.360000pt;}
.y8_c00265{bottom:853.493333pt;}
.y7_c00265{bottom:854.440000pt;}
.y6_c00265{bottom:855.400000pt;}
.y3_c00265{bottom:856.360000pt;}
.y5_c00265{bottom:856.560000pt;}
.y2_c00265{bottom:857.306667pt;}
.y4_c00265{bottom:857.693333pt;}
.y1_c00265{bottom:892.360000pt;}
.h3_c00265{height:20.466875pt;}
.h8_c00265{height:22.303646pt;}
.h2_c00265{height:27.879557pt;}
.h1_c00265{height:31.618698pt;}
.h4_c00265{height:35.357839pt;}
.h5_c00265{height:39.031380pt;}
.h6_c00265{height:42.770521pt;}
.h7_c00265{height:44.364714pt;}
.h0_c00265{height:1186.666667pt;}
.w0_c00265{width:782.666667pt;}
.x0_c00265{left:0.000000pt;}
.xab_c00265{left:134.293333pt;}
.xe_c00265{left:136.000000pt;}
.x1c_c00265{left:136.960000pt;}
.xd6_c00265{left:140.960000pt;}
.xb5_c00265{left:149.333333pt;}
.x3_c00265{left:150.666667pt;}
.x54_c00265{left:152.000000pt;}
.xf_c00265{left:153.706667pt;}
.x8c_c00265{left:154.666667pt;}
.x48_c00265{left:156.000000pt;}
.x34_c00265{left:159.626667pt;}
.xba_c00265{left:161.333333pt;}
.xa1_c00265{left:162.293333pt;}
.xce_c00265{left:163.626667pt;}
.xc3_c00265{left:165.333333pt;}
.x1d_c00265{left:166.666667pt;}
.x83_c00265{left:168.373333pt;}
.x3e_c00265{left:169.706667pt;}
.x80_c00265{left:175.040000pt;}
.x4_c00265{left:176.960000pt;}
.x10_c00265{left:178.666667pt;}
.x70_c00265{left:185.706667pt;}
.x55_c00265{left:188.000000pt;}
.x84_c00265{left:191.040000pt;}
.x28_c00265{left:193.333333pt;}
.xeb_c00265{left:194.666667pt;}
.xc9_c00265{left:196.573333pt;}
.x66_c00265{left:201.333333pt;}
.xac_c00265{left:202.293333pt;}
.x8d_c00265{left:204.000000pt;}
.x5d_c00265{left:205.333333pt;}
.x49_c00265{left:206.666667pt;}
.x98_c00265{left:208.373333pt;}
.x78_c00265{left:209.333333pt;}
.x29_c00265{left:211.040000pt;}
.xf0_c00265{left:213.333333pt;}
.x81_c00265{left:215.040000pt;}
.x11_c00265{left:216.373333pt;}
.x5_c00265{left:218.293333pt;}
.x8e_c00265{left:221.333333pt;}
.x1e_c00265{left:222.466667pt;}
.x4a_c00265{left:224.000000pt;}
.x85_c00265{left:225.333333pt;}
.xad_c00265{left:226.293333pt;}
.x2a_c00265{left:228.373333pt;}
.xd7_c00265{left:229.706667pt;}
.xe9_c00265{left:232.960000pt;}
.x56_c00265{left:234.666667pt;}
.xfb_c00265{left:236.000000pt;}
.xb6_c00265{left:236.960000pt;}
.xc4_c00265{left:238.293333pt;}
.x3f_c00265{left:239.626667pt;}
.x12_c00265{left:240.960000pt;}
.xae_c00265{left:244.000000pt;}
.xe1_c00265{left:245.333333pt;}
.x67_c00265{left:246.293333pt;}
.xbc_c00265{left:247.626667pt;}
.xf1_c00265{left:249.706667pt;}
.x2b_c00265{left:250.666667pt;}
.xa2_c00265{left:251.626667pt;}
.x4b_c00265{left:253.333333pt;}
.x40_c00265{left:256.373333pt;}
.x86_c00265{left:259.040000pt;}
.x1f_c00265{left:261.706667pt;}
.x79_c00265{left:262.666667pt;}
.xbd_c00265{left:263.626667pt;}
.xca_c00265{left:268.960000pt;}
.xbb_c00265{left:270.293333pt;}
.x82_c00265{left:272.000000pt;}
.x8f_c00265{left:272.960000pt;}
.x35_c00265{left:275.626667pt;}
.x6_c00265{left:278.666667pt;}
.x41_c00265{left:281.333333pt;}
.x57_c00265{left:282.293333pt;}
.x20_c00265{left:283.626667pt;}
.xd8_c00265{left:285.333333pt;}
.x99_c00265{left:286.666667pt;}
.xd2_c00265{left:288.000000pt;}
.x13_c00265{left:289.333333pt;}
.xa3_c00265{left:290.293333pt;}
.xf5_c00265{left:292.000000pt;}
.x5e_c00265{left:292.960000pt;}
.xec_c00265{left:294.666667pt;}
.xf2_c00265{left:297.706667pt;}
.x90_c00265{left:299.040000pt;}
.xc5_c00265{left:300.000000pt;}
.xa4_c00265{left:301.333333pt;}
.x68_c00265{left:303.040000pt;}
.xd9_c00265{left:305.706667pt;}
.x4c_c00265{left:306.666667pt;}
.x21_c00265{left:308.000000pt;}
.x9a_c00265{left:309.333333pt;}
.x7_c00265{left:310.666667pt;}
.xd3_c00265{left:312.000000pt;}
.x87_c00265{left:319.626667pt;}
.x8_c00265{left:321.333333pt;}
.x91_c00265{left:322.666667pt;}
.xf3_c00265{left:324.000000pt;}
.x1_c00265{left:324.960000pt;}
.x42_c00265{left:327.040000pt;}
.x69_c00265{left:328.373333pt;}
.xda_c00265{left:329.333333pt;}
.x9b_c00265{left:330.666667pt;}
.x88_c00265{left:335.040000pt;}
.x5f_c00265{left:336.373333pt;}
.xa5_c00265{left:337.333333pt;}
.xf6_c00265{left:340.000000pt;}
.x22_c00265{left:340.960000pt;}
.xea_c00265{left:342.293333pt;}
.x4d_c00265{left:344.373333pt;}
.x14_c00265{left:345.706667pt;}
.xbe_c00265{left:346.666667pt;}
.x36_c00265{left:348.373333pt;}
.xfc_c00265{left:349.333333pt;}
.x7a_c00265{left:350.666667pt;}
.x2c_c00265{left:352.000000pt;}
.xaf_c00265{left:353.333333pt;}
.x58_c00265{left:354.666667pt;}
.xb7_c00265{left:356.960000pt;}
.x6a_c00265{left:358.293333pt;}
.x23_c00265{left:360.373333pt;}
.xd4_c00265{left:364.373333pt;}
.xe6_c00265{left:365.706667pt;}
.x4e_c00265{left:368.000000pt;}
.x2d_c00265{left:369.333333pt;}
.xdb_c00265{left:371.040000pt;}
.x37_c00265{left:372.000000pt;}
.x92_c00265{left:372.960000pt;}
.x2_c00265{left:374.293333pt;}
.xbf_c00265{left:377.333333pt;}
.xc6_c00265{left:379.626667pt;}
.x9_c00265{left:383.426667pt;}
.x71_c00265{left:384.373333pt;}
.x9c_c00265{left:385.333333pt;}
.xf9_c00265{left:386.293333pt;}
.x93_c00265{left:389.706667pt;}
.x89_c00265{left:392.373333pt;}
.xdc_c00265{left:394.666667pt;}
.xed_c00265{left:396.000000pt;}
.x60_c00265{left:396.960000pt;}
.x43_c00265{left:398.293333pt;}
.x15_c00265{left:400.373333pt;}
.x2e_c00265{left:401.333333pt;}
.xb0_c00265{left:403.040000pt;}
.x38_c00265{left:404.000000pt;}
.x7b_c00265{left:407.040000pt;}
.xcb_c00265{left:408.960000pt;}
.xb8_c00265{left:412.000000pt;}
.x94_c00265{left:413.333333pt;}
.x61_c00265{left:416.373333pt;}
.x39_c00265{left:418.666667pt;}
.x6b_c00265{left:421.706667pt;}
.xfd_c00265{left:424.373333pt;}
.x16_c00265{left:425.333333pt;}
.xe7_c00265{left:426.293333pt;}
.x2f_c00265{left:427.626667pt;}
.xdd_c00265{left:428.960000pt;}
.xc0_c00265{left:430.666667pt;}
.xa6_c00265{left:434.293333pt;}
.xf7_c00265{left:435.626667pt;}
.xee_c00265{left:437.333333pt;}
.x8a_c00265{left:439.040000pt;}
.x62_c00265{left:440.960000pt;}
.x9d_c00265{left:443.040000pt;}
.xb1_c00265{left:444.000000pt;}
.x30_c00265{left:445.333333pt;}
.x24_c00265{left:446.666667pt;}
.xcc_c00265{left:448.000000pt;}
.x72_c00265{left:451.040000pt;}
.xde_c00265{left:456.000000pt;}
.x59_c00265{left:457.333333pt;}
.x95_c00265{left:458.666667pt;}
.x6c_c00265{left:460.000000pt;}
.xa_c00265{left:461.333333pt;}
.xc7_c00265{left:464.373333pt;}
.x31_c00265{left:465.706667pt;}
.x9e_c00265{left:468.373333pt;}
.x4f_c00265{left:469.706667pt;}
.x5a_c00265{left:470.666667pt;}
.x7c_c00265{left:476.373333pt;}
.x25_c00265{left:477.333333pt;}
.x73_c00265{left:478.666667pt;}
.x17_c00265{left:482.293333pt;}
.x3a_c00265{left:488.373333pt;}
.x44_c00265{left:490.293333pt;}
.xa7_c00265{left:492.960000pt;}
.xcf_c00265{left:494.666667pt;}
.xc1_c00265{left:495.626667pt;}
.xe2_c00265{left:497.333333pt;}
.x18_c00265{left:498.293333pt;}
.x32_c00265{left:500.960000pt;}
.x6d_c00265{left:502.666667pt;}
.x7d_c00265{left:505.333333pt;}
.xa8_c00265{left:509.706667pt;}
.x50_c00265{left:511.626667pt;}
.x9f_c00265{left:512.960000pt;}
.xc8_c00265{left:514.293333pt;}
.x26_c00265{left:515.626667pt;}
.xfe_c00265{left:517.333333pt;}
.xb_c00265{left:520.373333pt;}
.xdf_c00265{left:521.333333pt;}
.xcd_c00265{left:522.666667pt;}
.x74_c00265{left:524.373333pt;}
.xef_c00265{left:525.706667pt;}
.xfa_c00265{left:527.040000pt;}
.x51_c00265{left:528.373333pt;}
.xd0_c00265{left:529.333333pt;}
.xb9_c00265{left:530.666667pt;}
.xa9_c00265{left:532.000000pt;}
.x63_c00265{left:532.960000pt;}
.xe8_c00265{left:537.333333pt;}
.x96_c00265{left:538.666667pt;}
.x19_c00265{left:539.626667pt;}
.xe4_c00265{left:541.333333pt;}
.x7e_c00265{left:542.666667pt;}
.x6e_c00265{left:544.760000pt;}
.x3b_c00265{left:546.293333pt;}
.xb2_c00265{left:549.333333pt;}
.x64_c00265{left:550.293333pt;}
.x52_c00265{left:551.626667pt;}
.xc_c00265{left:552.960000pt;}
.xc2_c00265{left:554.666667pt;}
.x7f_c00265{left:557.333333pt;}
.xe5_c00265{left:558.666667pt;}
.xf8_c00265{left:560.000000pt;}
.x75_c00265{left:561.333333pt;}
.xb3_c00265{left:566.666667pt;}
.x45_c00265{left:571.040000pt;}
.x1a_c00265{left:572.000000pt;}
.x76_c00265{left:573.333333pt;}
.x5b_c00265{left:574.293333pt;}
.x3c_c00265{left:576.000000pt;}
.x97_c00265{left:576.960000pt;}
.x27_c00265{left:579.626667pt;}
.xb4_c00265{left:582.666667pt;}
.x1b_c00265{left:588.000000pt;}
.xa0_c00265{left:588.960000pt;}
.xff_c00265{left:592.373333pt;}
.x46_c00265{left:594.666667pt;}
.x3d_c00265{left:598.666667pt;}
.xd_c00265{left:600.960000pt;}
.x5c_c00265{left:603.040000pt;}
.xd1_c00265{left:605.333333pt;}
.xf4_c00265{left:611.626667pt;}
.xe3_c00265{left:612.960000pt;}
.x65_c00265{left:614.666667pt;}
.x53_c00265{left:617.706667pt;}
.x8b_c00265{left:620.000000pt;}
.x77_c00265{left:621.706667pt;}
.x6f_c00265{left:625.706667pt;}
.x33_c00265{left:628.373333pt;}
.x47_c00265{left:629.333333pt;}
.xe0_c00265{left:631.040000pt;}
.xaa_c00265{left:637.333333pt;}
.xd5_c00265{left:643.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_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_105602050545036157d8cee9.woff2')format("woff");}.ff1_c00266{font-family:ff1_c00266;line-height:1.688965;font-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_c00266{transform:matrix(0.333506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333506,0.000000,0.000000,0.250000,0,0);}
.ma7_c00266{transform:matrix(0.340874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340874,0.000000,0.000000,0.250000,0,0);}
.mb2_c00266{transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);}
.m84_c00266{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m4c_c00266{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m8e_c00266{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m1d_c00266{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m8f_c00266{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.m60_c00266{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mb8_c00266{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m7d_c00266{transform:matrix(0.381513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381513,0.000000,0.000000,0.250000,0,0);}
.mae_c00266{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m8d_c00266{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.mb4_c00266{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m4b_c00266{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.ma8_c00266{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m14_c00266{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.mad_c00266{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m75_c00266{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m87_c00266{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m29_c00266{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m25_c00266{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m90_c00266{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m3c_c00266{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.m4e_c00266{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m6c_c00266{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m8c_c00266{transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);}
.m7a_c00266{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m9_c00266{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mb3_c00266{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m32_c00266{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m5f_c00266{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m47_c00266{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m22_c00266{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m3a_c00266{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.m36_c00266{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.ma3_c00266{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m26_c00266{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m5c_c00266{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m99_c00266{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m6e_c00266{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mc_c00266{transform:matrix(0.416976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416976,0.000000,0.000000,0.250000,0,0);}
.m85_c00266{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m8_c00266{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m64_c00266{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m59_c00266{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m6d_c00266{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m33_c00266{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m98_c00266{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.ma1_c00266{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m3f_c00266{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m81_c00266{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m63_c00266{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m50_c00266{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m35_c00266{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m52_c00266{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m55_c00266{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m1c_c00266{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m43_c00266{transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);}
.ma6_c00266{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m54_c00266{transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);}
.m71_c00266{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m9a_c00266{transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);}
.m95_c00266{transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);}
.m3d_c00266{transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);}
.m56_c00266{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m9c_c00266{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m65_c00266{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m89_c00266{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m53_c00266{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m15_c00266{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m74_c00266{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m42_c00266{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m37_c00266{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m39_c00266{transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);}
.m3e_c00266{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m4f_c00266{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.m24_c00266{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.m6f_c00266{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.md_c00266{transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);}
.m73_c00266{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.mb_c00266{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m19_c00266{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.m20_c00266{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m92_c00266{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m79_c00266{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mf_c00266{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m78_c00266{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m72_c00266{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mb0_c00266{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m1_c00266{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m76_c00266{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m66_c00266{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.me_c00266{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_c00266{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m5e_c00266{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m7b_c00266{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m4a_c00266{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m69_c00266{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.maa_c00266{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m9e_c00266{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m91_c00266{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m80_c00266{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m7f_c00266{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m62_c00266{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m2b_c00266{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m61_c00266{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.ma_c00266{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.ma5_c00266{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m30_c00266{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m11_c00266{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m9f_c00266{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m7c_c00266{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m2_c00266{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m86_c00266{transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);}
.m4_c00266{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m6a_c00266{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m9d_c00266{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m16_c00266{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m5_c00266{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mb7_c00266{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m2a_c00266{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m6_c00266{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m3b_c00266{transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);}
.m77_c00266{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m9b_c00266{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m51_c00266{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m5d_c00266{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m1e_c00266{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mb1_c00266{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m5a_c00266{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m45_c00266{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m49_c00266{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m28_c00266{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m10_c00266{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m27_c00266{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m94_c00266{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m44_c00266{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m6b_c00266{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m18_c00266{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m7_c00266{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m2e_c00266{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m93_c00266{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.mab_c00266{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m58_c00266{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m8b_c00266{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m40_c00266{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m96_c00266{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m38_c00266{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mb6_c00266{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.ma4_c00266{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.ma9_c00266{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m88_c00266{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m2d_c00266{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m31_c00266{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m4d_c00266{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m68_c00266{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m70_c00266{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m1a_c00266{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.ma2_c00266{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.m82_c00266{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m2f_c00266{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m34_c00266{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m3_c00266{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m8a_c00266{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m48_c00266{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m0_c00266{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.mb5_c00266{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m46_c00266{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m13_c00266{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m7e_c00266{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.mac_c00266{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m5b_c00266{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.maf_c00266{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m97_c00266{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.m67_c00266{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m57_c00266{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m41_c00266{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m1b_c00266{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m83_c00266{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m17_c00266{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m23_c00266{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m1f_c00266{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mb9_c00266{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.ma0_c00266{transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);}
.m12_c00266{transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);}
.v0_c00266{vertical-align:0.000000px;}
.ls0_c00266{letter-spacing:0.000000px;}
.sc__c00266{text-shadow:none;}
.sc0_c00266{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00266{-webkit-text-stroke:0px transparent;}
.sc0_c00266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00266{word-spacing:0.000000px;}
.fc0_c00266{color:transparent;}
.fs5_c00266{font-size:18.720000px;}
.fs0_c00266{font-size:20.400000px;}
.fs4_c00266{font-size:25.500000px;}
.fs1_c00266{font-size:28.920000px;}
.fs3_c00266{font-size:32.340000px;}
.fs2_c00266{font-size:35.700000px;}
.fs6_c00266{font-size:39.120000px;}
.y0_c00266{bottom:0.000000px;}
.ybb_c00266{bottom:250.905000px;}
.yba_c00266{bottom:251.745000px;}
.yb6_c00266{bottom:270.405000px;}
.yb8_c00266{bottom:271.245000px;}
.yb4_c00266{bottom:271.470000px;}
.yb5_c00266{bottom:272.970000px;}
.yb7_c00266{bottom:273.405000px;}
.yb9_c00266{bottom:273.630000px;}
.yb1_c00266{bottom:290.745000px;}
.yb2_c00266{bottom:291.180000px;}
.yb3_c00266{bottom:292.245000px;}
.yb0_c00266{bottom:292.905000px;}
.yae_c00266{bottom:293.130000px;}
.yaf_c00266{bottom:294.405000px;}
.yad_c00266{bottom:309.405000px;}
.yab_c00266{bottom:311.325000px;}
.yac_c00266{bottom:311.745000px;}
.yaa_c00266{bottom:313.905000px;}
.ya9_c00266{bottom:329.970000px;}
.ya8_c00266{bottom:331.245000px;}
.ya7_c00266{bottom:333.405000px;}
.ya3_c00266{bottom:349.680000px;}
.ya5_c00266{bottom:350.745000px;}
.ya4_c00266{bottom:351.825000px;}
.ya2_c00266{bottom:352.905000px;}
.ya6_c00266{bottom:353.130000px;}
.y9f_c00266{bottom:370.245000px;}
.ya0_c00266{bottom:372.405000px;}
.y9e_c00266{bottom:372.630000px;}
.ya1_c00266{bottom:373.470000px;}
.y9a_c00266{bottom:394.245000px;}
.y9d_c00266{bottom:396.630000px;}
.y9b_c00266{bottom:397.470000px;}
.y9c_c00266{bottom:397.905000px;}
.y99_c00266{bottom:427.905000px;}
.y98_c00266{bottom:428.970000px;}
.y97_c00266{bottom:430.245000px;}
.y96_c00266{bottom:430.905000px;}
.y95_c00266{bottom:449.745000px;}
.y91_c00266{bottom:450.405000px;}
.y93_c00266{bottom:450.630000px;}
.y94_c00266{bottom:451.470000px;}
.y92_c00266{bottom:451.905000px;}
.y90_c00266{bottom:466.905000px;}
.y8f_c00266{bottom:469.245000px;}
.y8e_c00266{bottom:470.130000px;}
.y8d_c00266{bottom:471.405000px;}
.y8a_c00266{bottom:488.745000px;}
.y8c_c00266{bottom:490.905000px;}
.y8b_c00266{bottom:491.970000px;}
.y85_c00266{bottom:507.405000px;}
.y87_c00266{bottom:509.130000px;}
.y88_c00266{bottom:509.325000px;}
.y86_c00266{bottom:510.405000px;}
.y89_c00266{bottom:510.630000px;}
.y84_c00266{bottom:526.905000px;}
.y82_c00266{bottom:527.745000px;}
.y83_c00266{bottom:529.245000px;}
.y7d_c00266{bottom:546.405000px;}
.y7c_c00266{bottom:547.245000px;}
.y7f_c00266{bottom:547.905000px;}
.y81_c00266{bottom:548.745000px;}
.y7b_c00266{bottom:549.405000px;}
.y80_c00266{bottom:549.630000px;}
.y7e_c00266{bottom:550.470000px;}
.y7a_c00266{bottom:566.745000px;}
.y79_c00266{bottom:568.245000px;}
.y75_c00266{bottom:568.905000px;}
.y76_c00266{bottom:569.130000px;}
.y78_c00266{bottom:569.325000px;}
.y74_c00266{bottom:569.970000px;}
.y77_c00266{bottom:570.405000px;}
.y73_c00266{bottom:585.405000px;}
.y72_c00266{bottom:586.470000px;}
.y71_c00266{bottom:587.745000px;}
.y70_c00266{bottom:589.905000px;}
.y6b_c00266{bottom:605.970000px;}
.y6f_c00266{bottom:607.245000px;}
.y6e_c00266{bottom:608.130000px;}
.y6c_c00266{bottom:608.970000px;}
.y6d_c00266{bottom:609.405000px;}
.y69_c00266{bottom:626.745000px;}
.y68_c00266{bottom:628.905000px;}
.y67_c00266{bottom:629.130000px;}
.y6a_c00266{bottom:629.970000px;}
.y66_c00266{bottom:646.245000px;}
.y65_c00266{bottom:647.325000px;}
.y63_c00266{bottom:648.405000px;}
.y64_c00266{bottom:648.630000px;}
.y60_c00266{bottom:665.745000px;}
.y62_c00266{bottom:667.245000px;}
.y5f_c00266{bottom:667.905000px;}
.y61_c00266{bottom:668.130000px;}
.y5d_c00266{bottom:686.745000px;}
.y5c_c00266{bottom:687.630000px;}
.y5b_c00266{bottom:687.825000px;}
.y5e_c00266{bottom:688.470000px;}
.y5a_c00266{bottom:688.905000px;}
.y59_c00266{bottom:705.405000px;}
.y58_c00266{bottom:706.245000px;}
.y57_c00266{bottom:726.825000px;}
.y56_c00266{bottom:727.905000px;}
.y52_c00266{bottom:745.245000px;}
.y54_c00266{bottom:746.325000px;}
.y51_c00266{bottom:747.405000px;}
.y55_c00266{bottom:747.630000px;}
.y53_c00266{bottom:748.470000px;}
.y4b_c00266{bottom:763.905000px;}
.y4e_c00266{bottom:764.745000px;}
.y50_c00266{bottom:766.245000px;}
.y4c_c00266{bottom:766.905000px;}
.y4d_c00266{bottom:767.130000px;}
.y4f_c00266{bottom:768.405000px;}
.y4a_c00266{bottom:783.405000px;}
.y49_c00266{bottom:785.745000px;}
.y45_c00266{bottom:803.745000px;}
.y48_c00266{bottom:805.245000px;}
.y43_c00266{bottom:805.905000px;}
.y46_c00266{bottom:806.130000px;}
.y47_c00266{bottom:806.325000px;}
.y44_c00266{bottom:807.405000px;}
.y42_c00266{bottom:822.405000px;}
.y41_c00266{bottom:824.745000px;}
.y40_c00266{bottom:826.905000px;}
.y3e_c00266{bottom:843.825000px;}
.y3d_c00266{bottom:844.245000px;}
.y3f_c00266{bottom:845.130000px;}
.y3c_c00266{bottom:846.405000px;}
.y3b_c00266{bottom:862.905000px;}
.y3a_c00266{bottom:863.745000px;}
.y37_c00266{bottom:864.630000px;}
.y38_c00266{bottom:865.470000px;}
.y39_c00266{bottom:865.905000px;}
.y36_c00266{bottom:866.970000px;}
.y31_c00266{bottom:880.905000px;}
.y33_c00266{bottom:882.825000px;}
.y32_c00266{bottom:883.245000px;}
.y30_c00266{bottom:884.130000px;}
.y34_c00266{bottom:884.325000px;}
.y2f_c00266{bottom:885.405000px;}
.y35_c00266{bottom:885.630000px;}
.y2b_c00266{bottom:902.745000px;}
.y2d_c00266{bottom:904.245000px;}
.y29_c00266{bottom:904.905000px;}
.y2a_c00266{bottom:905.130000px;}
.y2e_c00266{bottom:905.970000px;}
.y2c_c00266{bottom:906.405000px;}
.y28_c00266{bottom:921.825000px;}
.y27_c00266{bottom:922.470000px;}
.y26_c00266{bottom:923.745000px;}
.y25_c00266{bottom:925.905000px;}
.y22_c00266{bottom:941.745000px;}
.y23_c00266{bottom:942.825000px;}
.y21_c00266{bottom:943.905000px;}
.y24_c00266{bottom:945.405000px;}
.y1f_c00266{bottom:962.745000px;}
.y1b_c00266{bottom:963.405000px;}
.y20_c00266{bottom:963.825000px;}
.y1d_c00266{bottom:964.470000px;}
.y1c_c00266{bottom:964.905000px;}
.y1e_c00266{bottom:965.970000px;}
.y17_c00266{bottom:982.245000px;}
.y18_c00266{bottom:983.130000px;}
.y19_c00266{bottom:983.325000px;}
.y1a_c00266{bottom:984.405000px;}
.y11_c00266{bottom:1000.905000px;}
.y15_c00266{bottom:1001.745000px;}
.y13_c00266{bottom:1002.630000px;}
.y16_c00266{bottom:1002.825000px;}
.y12_c00266{bottom:1003.905000px;}
.y14_c00266{bottom:1004.130000px;}
.y10_c00266{bottom:1020.405000px;}
.yf_c00266{bottom:1021.470000px;}
.ye_c00266{bottom:1022.970000px;}
.yc_c00266{bottom:1023.405000px;}
.yd_c00266{bottom:1023.630000px;}
.yb_c00266{bottom:1039.905000px;}
.y6_c00266{bottom:1040.745000px;}
.y9_c00266{bottom:1040.970000px;}
.ya_c00266{bottom:1042.050000px;}
.y8_c00266{bottom:1043.325000px;}
.y7_c00266{bottom:1044.405000px;}
.y5_c00266{bottom:1061.745000px;}
.y3_c00266{bottom:1062.405000px;}
.y4_c00266{bottom:1063.905000px;}
.y2_c00266{bottom:1099.905000px;}
.y1_c00266{bottom:1102.050000px;}
.h6_c00266{height:23.025234px;}
.h1_c00266{height:25.091602px;}
.h5_c00266{height:31.364502px;}
.h2_c00266{height:35.571035px;}
.h4_c00266{height:39.777568px;}
.h3_c00266{height:43.910303px;}
.h7_c00266{height:48.116836px;}
.h0_c00266{height:1335.000000px;}
.w0_c00266{width:880.500000px;}
.x0_c00266{left:0.000000px;}
.x19_c00266{left:151.080000px;}
.x95_c00266{left:152.580000px;}
.xcf_c00266{left:154.080000px;}
.x12_c00266{left:158.580000px;}
.x45_c00266{left:160.080000px;}
.xd7_c00266{left:161.580000px;}
.x3_c00266{left:183.420000px;}
.x71_c00266{left:184.500000px;}
.xc3_c00266{left:185.580000px;}
.xb2_c00266{left:202.500000px;}
.xa7_c00266{left:207.000000px;}
.x9e_c00266{left:208.500000px;}
.x2f_c00266{left:211.080000px;}
.x46_c00266{left:214.500000px;}
.x1a_c00266{left:216.000000px;}
.x5f_c00266{left:217.500000px;}
.x86_c00266{left:220.500000px;}
.x3c_c00266{left:222.000000px;}
.x72_c00266{left:226.920000px;}
.x5c_c00266{left:228.000000px;}
.x4_c00266{left:232.500000px;}
.xd0_c00266{left:233.580000px;}
.xc4_c00266{left:235.500000px;}
.x27_c00266{left:238.500000px;}
.x51_c00266{left:240.000000px;}
.x30_c00266{left:241.080000px;}
.x8f_c00266{left:243.000000px;}
.x13_c00266{left:244.080000px;}
.x96_c00266{left:245.580000px;}
.x5d_c00266{left:247.500000px;}
.xde_c00266{left:249.000000px;}
.xbc_c00266{left:250.500000px;}
.x5_c00266{left:252.420000px;}
.xe1_c00266{left:256.500000px;}
.x47_c00266{left:257.580000px;}
.x1b_c00266{left:259.500000px;}
.x60_c00266{left:261.000000px;}
.x14_c00266{left:262.080000px;}
.xd1_c00266{left:264.000000px;}
.x9f_c00266{left:265.500000px;}
.xb5_c00266{left:267.000000px;}
.xca_c00266{left:270.000000px;}
.x73_c00266{left:271.080000px;}
.xa8_c00266{left:272.580000px;}
.x48_c00266{left:274.920000px;}
.x3d_c00266{left:277.920000px;}
.x1c_c00266{left:279.000000px;}
.x6_c00266{left:280.500000px;}
.x81_c00266{left:283.500000px;}
.x61_c00266{left:285.000000px;}
.x52_c00266{left:286.920000px;}
.x31_c00266{left:288.420000px;}
.xcb_c00266{left:289.920000px;}
.x87_c00266{left:291.000000px;}
.xe2_c00266{left:292.500000px;}
.xdf_c00266{left:295.920000px;}
.x74_c00266{left:300.420000px;}
.x49_c00266{left:303.420000px;}
.x68_c00266{left:304.500000px;}
.x7a_c00266{left:306.420000px;}
.x90_c00266{left:307.920000px;}
.x15_c00266{left:309.000000px;}
.xb3_c00266{left:310.500000px;}
.xbd_c00266{left:316.500000px;}
.xa9_c00266{left:319.500000px;}
.x32_c00266{left:320.580000px;}
.x69_c00266{left:322.080000px;}
.x3e_c00266{left:325.080000px;}
.x97_c00266{left:327.420000px;}
.x16_c00266{left:328.500000px;}
.x4a_c00266{left:330.000000px;}
.x7b_c00266{left:333.000000px;}
.x1d_c00266{left:334.500000px;}
.x7_c00266{left:336.000000px;}
.x75_c00266{left:339.420000px;}
.xd2_c00266{left:342.000000px;}
.xd8_c00266{left:346.500000px;}
.x17_c00266{left:348.420000px;}
.x88_c00266{left:351.000000px;}
.xc5_c00266{left:352.920000px;}
.x98_c00266{left:354.420000px;}
.x28_c00266{left:355.500000px;}
.x3f_c00266{left:357.000000px;}
.x53_c00266{left:359.580000px;}
.xb6_c00266{left:361.920000px;}
.xaa_c00266{left:364.920000px;}
.x76_c00266{left:366.000000px;}
.x8_c00266{left:367.080000px;}
.x89_c00266{left:369.420000px;}
.x7c_c00266{left:372.420000px;}
.x33_c00266{left:374.580000px;}
.xe3_c00266{left:376.500000px;}
.x1e_c00266{left:379.080000px;}
.x6a_c00266{left:382.500000px;}
.xcc_c00266{left:385.080000px;}
.x9_c00266{left:387.420000px;}
.x54_c00266{left:388.500000px;}
.xbe_c00266{left:394.500000px;}
.x82_c00266{left:396.000000px;}
.x1f_c00266{left:399.420000px;}
.xd3_c00266{left:402.420000px;}
.x1_c00266{left:403.500000px;}
.x29_c00266{left:405.000000px;}
.x34_c00266{left:406.920000px;}
.x7d_c00266{left:408.420000px;}
.x62_c00266{left:409.500000px;}
.x6b_c00266{left:411.420000px;}
.xa_c00266{left:414.000000px;}
.x40_c00266{left:417.420000px;}
.xa0_c00266{left:420.000000px;}
.xb7_c00266{left:421.920000px;}
.x91_c00266{left:424.080000px;}
.xb4_c00266{left:426.000000px;}
.x20_c00266{left:427.920000px;}
.xd9_c00266{left:429.000000px;}
.x63_c00266{left:430.500000px;}
.x83_c00266{left:432.000000px;}
.xa1_c00266{left:435.000000px;}
.x55_c00266{left:436.500000px;}
.x84_c00266{left:439.080000px;}
.x4b_c00266{left:441.420000px;}
.x8a_c00266{left:442.500000px;}
.x35_c00266{left:445.500000px;}
.x6c_c00266{left:447.000000px;}
.x99_c00266{left:448.080000px;}
.x2a_c00266{left:450.420000px;}
.xac_c00266{left:453.000000px;}
.x41_c00266{left:454.920000px;}
.x77_c00266{left:456.000000px;}
.x21_c00266{left:457.500000px;}
.xd_c00266{left:458.580000px;}
.xe4_c00266{left:462.000000px;}
.xbf_c00266{left:465.000000px;}
.x9a_c00266{left:466.500000px;}
.xb8_c00266{left:468.000000px;}
.x92_c00266{left:472.500000px;}
.xcd_c00266{left:473.580000px;}
.x56_c00266{left:475.080000px;}
.x36_c00266{left:478.080000px;}
.xb_c00266{left:481.080000px;}
.x8b_c00266{left:483.000000px;}
.xad_c00266{left:484.920000px;}
.x22_c00266{left:486.000000px;}
.x93_c00266{left:490.920000px;}
.x78_c00266{left:492.000000px;}
.x7e_c00266{left:493.500000px;}
.x37_c00266{left:498.000000px;}
.xb9_c00266{left:501.000000px;}
.xa2_c00266{left:502.500000px;}
.x64_c00266{left:504.000000px;}
.x4c_c00266{left:507.000000px;}
.xda_c00266{left:508.080000px;}
.x9b_c00266{left:511.920000px;}
.x6d_c00266{left:515.580000px;}
.x2b_c00266{left:518.580000px;}
.xd4_c00266{left:524.580000px;}
.x38_c00266{left:526.920000px;}
.xae_c00266{left:528.855000px;}
.x6e_c00266{left:532.920000px;}
.xe5_c00266{left:535.500000px;}
.xc_c00266{left:537.000000px;}
.x9c_c00266{left:538.920000px;}
.xe_c00266{left:540.000000px;}
.xc0_c00266{left:541.500000px;}
.xdb_c00266{left:544.500000px;}
.x85_c00266{left:546.420000px;}
.x2c_c00266{left:550.080000px;}
.x6f_c00266{left:558.420000px;}
.x57_c00266{left:559.500000px;}
.xa3_c00266{left:560.580000px;}
.x8c_c00266{left:562.500000px;}
.x79_c00266{left:564.000000px;}
.xc6_c00266{left:571.500000px;}
.xaf_c00266{left:576.000000px;}
.x58_c00266{left:577.920000px;}
.xce_c00266{left:579.000000px;}
.x7f_c00266{left:580.500000px;}
.x39_c00266{left:583.500000px;}
.x4d_c00266{left:592.500000px;}
.x23_c00266{left:593.580000px;}
.xab_c00266{left:595.920000px;}
.x65_c00266{left:597.420000px;}
.x2d_c00266{left:598.920000px;}
.x70_c00266{left:605.580000px;}
.xb0_c00266{left:607.080000px;}
.x42_c00266{left:609.420000px;}
.xf_c00266{left:610.500000px;}
.xdc_c00266{left:611.580000px;}
.xa4_c00266{left:613.080000px;}
.x5e_c00266{left:615.420000px;}
.xe6_c00266{left:618.420000px;}
.x3a_c00266{left:619.920000px;}
.x4e_c00266{left:622.920000px;}
.x66_c00266{left:625.920000px;}
.x8d_c00266{left:627.420000px;}
.xa5_c00266{left:630.000000px;}
.xc1_c00266{left:631.080000px;}
.x24_c00266{left:636.000000px;}
.x80_c00266{left:637.500000px;}
.xc7_c00266{left:641.580000px;}
.xe0_c00266{left:643.920000px;}
.xba_c00266{left:645.420000px;}
.x59_c00266{left:651.000000px;}
.xdd_c00266{left:652.920000px;}
.x8e_c00266{left:655.500000px;}
.x3b_c00266{left:658.500000px;}
.x9d_c00266{left:660.420000px;}
.x4f_c00266{left:663.000000px;}
.xa6_c00266{left:665.580000px;}
.x5a_c00266{left:669.420000px;}
.x2e_c00266{left:673.920000px;}
.xd5_c00266{left:675.000000px;}
.x25_c00266{left:676.500000px;}
.xc2_c00266{left:678.000000px;}
.xb1_c00266{left:680.580000px;}
.x10_c00266{left:685.500000px;}
.x43_c00266{left:686.580000px;}
.x50_c00266{left:688.080000px;}
.xc9_c00266{left:689.580000px;}
.x67_c00266{left:694.500000px;}
.xc8_c00266{left:696.645000px;}
.x5b_c00266{left:701.580000px;}
.x2_c00266{left:703.080000px;}
.x44_c00266{left:705.000000px;}
.x26_c00266{left:706.080000px;}
.xbb_c00266{left:708.420000px;}
.x11_c00266{left:710.580000px;}
.x18_c00266{left:719.580000px;}
.x94_c00266{left:721.080000px;}
.xd6_c00266{left:723.000000px;}
@media print{
.v0_c00266{vertical-align:0.000000pt;}
.ls0_c00266{letter-spacing:0.000000pt;}
.ws0_c00266{word-spacing:0.000000pt;}
.fs5_c00266{font-size:16.640000pt;}
.fs0_c00266{font-size:18.133333pt;}
.fs4_c00266{font-size:22.666667pt;}
.fs1_c00266{font-size:25.706667pt;}
.fs3_c00266{font-size:28.746667pt;}
.fs2_c00266{font-size:31.733333pt;}
.fs6_c00266{font-size:34.773333pt;}
.y0_c00266{bottom:0.000000pt;}
.ybb_c00266{bottom:223.026667pt;}
.yba_c00266{bottom:223.773333pt;}
.yb6_c00266{bottom:240.360000pt;}
.yb8_c00266{bottom:241.106667pt;}
.yb4_c00266{bottom:241.306667pt;}
.yb5_c00266{bottom:242.640000pt;}
.yb7_c00266{bottom:243.026667pt;}
.yb9_c00266{bottom:243.226667pt;}
.yb1_c00266{bottom:258.440000pt;}
.yb2_c00266{bottom:258.826667pt;}
.yb3_c00266{bottom:259.773333pt;}
.yb0_c00266{bottom:260.360000pt;}
.yae_c00266{bottom:260.560000pt;}
.yaf_c00266{bottom:261.693333pt;}
.yad_c00266{bottom:275.026667pt;}
.yab_c00266{bottom:276.733333pt;}
.yac_c00266{bottom:277.106667pt;}
.yaa_c00266{bottom:279.026667pt;}
.ya9_c00266{bottom:293.306667pt;}
.ya8_c00266{bottom:294.440000pt;}
.ya7_c00266{bottom:296.360000pt;}
.ya3_c00266{bottom:310.826667pt;}
.ya5_c00266{bottom:311.773333pt;}
.ya4_c00266{bottom:312.733333pt;}
.ya2_c00266{bottom:313.693333pt;}
.ya6_c00266{bottom:313.893333pt;}
.y9f_c00266{bottom:329.106667pt;}
.ya0_c00266{bottom:331.026667pt;}
.y9e_c00266{bottom:331.226667pt;}
.ya1_c00266{bottom:331.973333pt;}
.y9a_c00266{bottom:350.440000pt;}
.y9d_c00266{bottom:352.560000pt;}
.y9b_c00266{bottom:353.306667pt;}
.y9c_c00266{bottom:353.693333pt;}
.y99_c00266{bottom:380.360000pt;}
.y98_c00266{bottom:381.306667pt;}
.y97_c00266{bottom:382.440000pt;}
.y96_c00266{bottom:383.026667pt;}
.y95_c00266{bottom:399.773333pt;}
.y91_c00266{bottom:400.360000pt;}
.y93_c00266{bottom:400.560000pt;}
.y94_c00266{bottom:401.306667pt;}
.y92_c00266{bottom:401.693333pt;}
.y90_c00266{bottom:415.026667pt;}
.y8f_c00266{bottom:417.106667pt;}
.y8e_c00266{bottom:417.893333pt;}
.y8d_c00266{bottom:419.026667pt;}
.y8a_c00266{bottom:434.440000pt;}
.y8c_c00266{bottom:436.360000pt;}
.y8b_c00266{bottom:437.306667pt;}
.y85_c00266{bottom:451.026667pt;}
.y87_c00266{bottom:452.560000pt;}
.y88_c00266{bottom:452.733333pt;}
.y86_c00266{bottom:453.693333pt;}
.y89_c00266{bottom:453.893333pt;}
.y84_c00266{bottom:468.360000pt;}
.y82_c00266{bottom:469.106667pt;}
.y83_c00266{bottom:470.440000pt;}
.y7d_c00266{bottom:485.693333pt;}
.y7c_c00266{bottom:486.440000pt;}
.y7f_c00266{bottom:487.026667pt;}
.y81_c00266{bottom:487.773333pt;}
.y7b_c00266{bottom:488.360000pt;}
.y80_c00266{bottom:488.560000pt;}
.y7e_c00266{bottom:489.306667pt;}
.y7a_c00266{bottom:503.773333pt;}
.y79_c00266{bottom:505.106667pt;}
.y75_c00266{bottom:505.693333pt;}
.y76_c00266{bottom:505.893333pt;}
.y78_c00266{bottom:506.066667pt;}
.y74_c00266{bottom:506.640000pt;}
.y77_c00266{bottom:507.026667pt;}
.y73_c00266{bottom:520.360000pt;}
.y72_c00266{bottom:521.306667pt;}
.y71_c00266{bottom:522.440000pt;}
.y70_c00266{bottom:524.360000pt;}
.y6b_c00266{bottom:538.640000pt;}
.y6f_c00266{bottom:539.773333pt;}
.y6e_c00266{bottom:540.560000pt;}
.y6c_c00266{bottom:541.306667pt;}
.y6d_c00266{bottom:541.693333pt;}
.y69_c00266{bottom:557.106667pt;}
.y68_c00266{bottom:559.026667pt;}
.y67_c00266{bottom:559.226667pt;}
.y6a_c00266{bottom:559.973333pt;}
.y66_c00266{bottom:574.440000pt;}
.y65_c00266{bottom:575.400000pt;}
.y63_c00266{bottom:576.360000pt;}
.y64_c00266{bottom:576.560000pt;}
.y60_c00266{bottom:591.773333pt;}
.y62_c00266{bottom:593.106667pt;}
.y5f_c00266{bottom:593.693333pt;}
.y61_c00266{bottom:593.893333pt;}
.y5d_c00266{bottom:610.440000pt;}
.y5c_c00266{bottom:611.226667pt;}
.y5b_c00266{bottom:611.400000pt;}
.y5e_c00266{bottom:611.973333pt;}
.y5a_c00266{bottom:612.360000pt;}
.y59_c00266{bottom:627.026667pt;}
.y58_c00266{bottom:627.773333pt;}
.y57_c00266{bottom:646.066667pt;}
.y56_c00266{bottom:647.026667pt;}
.y52_c00266{bottom:662.440000pt;}
.y54_c00266{bottom:663.400000pt;}
.y51_c00266{bottom:664.360000pt;}
.y55_c00266{bottom:664.560000pt;}
.y53_c00266{bottom:665.306667pt;}
.y4b_c00266{bottom:679.026667pt;}
.y4e_c00266{bottom:679.773333pt;}
.y50_c00266{bottom:681.106667pt;}
.y4c_c00266{bottom:681.693333pt;}
.y4d_c00266{bottom:681.893333pt;}
.y4f_c00266{bottom:683.026667pt;}
.y4a_c00266{bottom:696.360000pt;}
.y49_c00266{bottom:698.440000pt;}
.y45_c00266{bottom:714.440000pt;}
.y48_c00266{bottom:715.773333pt;}
.y43_c00266{bottom:716.360000pt;}
.y46_c00266{bottom:716.560000pt;}
.y47_c00266{bottom:716.733333pt;}
.y44_c00266{bottom:717.693333pt;}
.y42_c00266{bottom:731.026667pt;}
.y41_c00266{bottom:733.106667pt;}
.y40_c00266{bottom:735.026667pt;}
.y3e_c00266{bottom:750.066667pt;}
.y3d_c00266{bottom:750.440000pt;}
.y3f_c00266{bottom:751.226667pt;}
.y3c_c00266{bottom:752.360000pt;}
.y3b_c00266{bottom:767.026667pt;}
.y3a_c00266{bottom:767.773333pt;}
.y37_c00266{bottom:768.560000pt;}
.y38_c00266{bottom:769.306667pt;}
.y39_c00266{bottom:769.693333pt;}
.y36_c00266{bottom:770.640000pt;}
.y31_c00266{bottom:783.026667pt;}
.y33_c00266{bottom:784.733333pt;}
.y32_c00266{bottom:785.106667pt;}
.y30_c00266{bottom:785.893333pt;}
.y34_c00266{bottom:786.066667pt;}
.y2f_c00266{bottom:787.026667pt;}
.y35_c00266{bottom:787.226667pt;}
.y2b_c00266{bottom:802.440000pt;}
.y2d_c00266{bottom:803.773333pt;}
.y29_c00266{bottom:804.360000pt;}
.y2a_c00266{bottom:804.560000pt;}
.y2e_c00266{bottom:805.306667pt;}
.y2c_c00266{bottom:805.693333pt;}
.y28_c00266{bottom:819.400000pt;}
.y27_c00266{bottom:819.973333pt;}
.y26_c00266{bottom:821.106667pt;}
.y25_c00266{bottom:823.026667pt;}
.y22_c00266{bottom:837.106667pt;}
.y23_c00266{bottom:838.066667pt;}
.y21_c00266{bottom:839.026667pt;}
.y24_c00266{bottom:840.360000pt;}
.y1f_c00266{bottom:855.773333pt;}
.y1b_c00266{bottom:856.360000pt;}
.y20_c00266{bottom:856.733333pt;}
.y1d_c00266{bottom:857.306667pt;}
.y1c_c00266{bottom:857.693333pt;}
.y1e_c00266{bottom:858.640000pt;}
.y17_c00266{bottom:873.106667pt;}
.y18_c00266{bottom:873.893333pt;}
.y19_c00266{bottom:874.066667pt;}
.y1a_c00266{bottom:875.026667pt;}
.y11_c00266{bottom:889.693333pt;}
.y15_c00266{bottom:890.440000pt;}
.y13_c00266{bottom:891.226667pt;}
.y16_c00266{bottom:891.400000pt;}
.y12_c00266{bottom:892.360000pt;}
.y14_c00266{bottom:892.560000pt;}
.y10_c00266{bottom:907.026667pt;}
.yf_c00266{bottom:907.973333pt;}
.ye_c00266{bottom:909.306667pt;}
.yc_c00266{bottom:909.693333pt;}
.yd_c00266{bottom:909.893333pt;}
.yb_c00266{bottom:924.360000pt;}
.y6_c00266{bottom:925.106667pt;}
.y9_c00266{bottom:925.306667pt;}
.ya_c00266{bottom:926.266667pt;}
.y8_c00266{bottom:927.400000pt;}
.y7_c00266{bottom:928.360000pt;}
.y5_c00266{bottom:943.773333pt;}
.y3_c00266{bottom:944.360000pt;}
.y4_c00266{bottom:945.693333pt;}
.y2_c00266{bottom:977.693333pt;}
.y1_c00266{bottom:979.600000pt;}
.h6_c00266{height:20.466875pt;}
.h1_c00266{height:22.303646pt;}
.h5_c00266{height:27.879557pt;}
.h2_c00266{height:31.618698pt;}
.h4_c00266{height:35.357839pt;}
.h3_c00266{height:39.031380pt;}
.h7_c00266{height:42.770521pt;}
.h0_c00266{height:1186.666667pt;}
.w0_c00266{width:782.666667pt;}
.x0_c00266{left:0.000000pt;}
.x19_c00266{left:134.293333pt;}
.x95_c00266{left:135.626667pt;}
.xcf_c00266{left:136.960000pt;}
.x12_c00266{left:140.960000pt;}
.x45_c00266{left:142.293333pt;}
.xd7_c00266{left:143.626667pt;}
.x3_c00266{left:163.040000pt;}
.x71_c00266{left:164.000000pt;}
.xc3_c00266{left:164.960000pt;}
.xb2_c00266{left:180.000000pt;}
.xa7_c00266{left:184.000000pt;}
.x9e_c00266{left:185.333333pt;}
.x2f_c00266{left:187.626667pt;}
.x46_c00266{left:190.666667pt;}
.x1a_c00266{left:192.000000pt;}
.x5f_c00266{left:193.333333pt;}
.x86_c00266{left:196.000000pt;}
.x3c_c00266{left:197.333333pt;}
.x72_c00266{left:201.706667pt;}
.x5c_c00266{left:202.666667pt;}
.x4_c00266{left:206.666667pt;}
.xd0_c00266{left:207.626667pt;}
.xc4_c00266{left:209.333333pt;}
.x27_c00266{left:212.000000pt;}
.x51_c00266{left:213.333333pt;}
.x30_c00266{left:214.293333pt;}
.x8f_c00266{left:216.000000pt;}
.x13_c00266{left:216.960000pt;}
.x96_c00266{left:218.293333pt;}
.x5d_c00266{left:220.000000pt;}
.xde_c00266{left:221.333333pt;}
.xbc_c00266{left:222.666667pt;}
.x5_c00266{left:224.373333pt;}
.xe1_c00266{left:228.000000pt;}
.x47_c00266{left:228.960000pt;}
.x1b_c00266{left:230.666667pt;}
.x60_c00266{left:232.000000pt;}
.x14_c00266{left:232.960000pt;}
.xd1_c00266{left:234.666667pt;}
.x9f_c00266{left:236.000000pt;}
.xb5_c00266{left:237.333333pt;}
.xca_c00266{left:240.000000pt;}
.x73_c00266{left:240.960000pt;}
.xa8_c00266{left:242.293333pt;}
.x48_c00266{left:244.373333pt;}
.x3d_c00266{left:247.040000pt;}
.x1c_c00266{left:248.000000pt;}
.x6_c00266{left:249.333333pt;}
.x81_c00266{left:252.000000pt;}
.x61_c00266{left:253.333333pt;}
.x52_c00266{left:255.040000pt;}
.x31_c00266{left:256.373333pt;}
.xcb_c00266{left:257.706667pt;}
.x87_c00266{left:258.666667pt;}
.xe2_c00266{left:260.000000pt;}
.xdf_c00266{left:263.040000pt;}
.x74_c00266{left:267.040000pt;}
.x49_c00266{left:269.706667pt;}
.x68_c00266{left:270.666667pt;}
.x7a_c00266{left:272.373333pt;}
.x90_c00266{left:273.706667pt;}
.x15_c00266{left:274.666667pt;}
.xb3_c00266{left:276.000000pt;}
.xbd_c00266{left:281.333333pt;}
.xa9_c00266{left:284.000000pt;}
.x32_c00266{left:284.960000pt;}
.x69_c00266{left:286.293333pt;}
.x3e_c00266{left:288.960000pt;}
.x97_c00266{left:291.040000pt;}
.x16_c00266{left:292.000000pt;}
.x4a_c00266{left:293.333333pt;}
.x7b_c00266{left:296.000000pt;}
.x1d_c00266{left:297.333333pt;}
.x7_c00266{left:298.666667pt;}
.x75_c00266{left:301.706667pt;}
.xd2_c00266{left:304.000000pt;}
.xd8_c00266{left:308.000000pt;}
.x17_c00266{left:309.706667pt;}
.x88_c00266{left:312.000000pt;}
.xc5_c00266{left:313.706667pt;}
.x98_c00266{left:315.040000pt;}
.x28_c00266{left:316.000000pt;}
.x3f_c00266{left:317.333333pt;}
.x53_c00266{left:319.626667pt;}
.xb6_c00266{left:321.706667pt;}
.xaa_c00266{left:324.373333pt;}
.x76_c00266{left:325.333333pt;}
.x8_c00266{left:326.293333pt;}
.x89_c00266{left:328.373333pt;}
.x7c_c00266{left:331.040000pt;}
.x33_c00266{left:332.960000pt;}
.xe3_c00266{left:334.666667pt;}
.x1e_c00266{left:336.960000pt;}
.x6a_c00266{left:340.000000pt;}
.xcc_c00266{left:342.293333pt;}
.x9_c00266{left:344.373333pt;}
.x54_c00266{left:345.333333pt;}
.xbe_c00266{left:350.666667pt;}
.x82_c00266{left:352.000000pt;}
.x1f_c00266{left:355.040000pt;}
.xd3_c00266{left:357.706667pt;}
.x1_c00266{left:358.666667pt;}
.x29_c00266{left:360.000000pt;}
.x34_c00266{left:361.706667pt;}
.x7d_c00266{left:363.040000pt;}
.x62_c00266{left:364.000000pt;}
.x6b_c00266{left:365.706667pt;}
.xa_c00266{left:368.000000pt;}
.x40_c00266{left:371.040000pt;}
.xa0_c00266{left:373.333333pt;}
.xb7_c00266{left:375.040000pt;}
.x91_c00266{left:376.960000pt;}
.xb4_c00266{left:378.666667pt;}
.x20_c00266{left:380.373333pt;}
.xd9_c00266{left:381.333333pt;}
.x63_c00266{left:382.666667pt;}
.x83_c00266{left:384.000000pt;}
.xa1_c00266{left:386.666667pt;}
.x55_c00266{left:388.000000pt;}
.x84_c00266{left:390.293333pt;}
.x4b_c00266{left:392.373333pt;}
.x8a_c00266{left:393.333333pt;}
.x35_c00266{left:396.000000pt;}
.x6c_c00266{left:397.333333pt;}
.x99_c00266{left:398.293333pt;}
.x2a_c00266{left:400.373333pt;}
.xac_c00266{left:402.666667pt;}
.x41_c00266{left:404.373333pt;}
.x77_c00266{left:405.333333pt;}
.x21_c00266{left:406.666667pt;}
.xd_c00266{left:407.626667pt;}
.xe4_c00266{left:410.666667pt;}
.xbf_c00266{left:413.333333pt;}
.x9a_c00266{left:414.666667pt;}
.xb8_c00266{left:416.000000pt;}
.x92_c00266{left:420.000000pt;}
.xcd_c00266{left:420.960000pt;}
.x56_c00266{left:422.293333pt;}
.x36_c00266{left:424.960000pt;}
.xb_c00266{left:427.626667pt;}
.x8b_c00266{left:429.333333pt;}
.xad_c00266{left:431.040000pt;}
.x22_c00266{left:432.000000pt;}
.x93_c00266{left:436.373333pt;}
.x78_c00266{left:437.333333pt;}
.x7e_c00266{left:438.666667pt;}
.x37_c00266{left:442.666667pt;}
.xb9_c00266{left:445.333333pt;}
.xa2_c00266{left:446.666667pt;}
.x64_c00266{left:448.000000pt;}
.x4c_c00266{left:450.666667pt;}
.xda_c00266{left:451.626667pt;}
.x9b_c00266{left:455.040000pt;}
.x6d_c00266{left:458.293333pt;}
.x2b_c00266{left:460.960000pt;}
.xd4_c00266{left:466.293333pt;}
.x38_c00266{left:468.373333pt;}
.xae_c00266{left:470.093333pt;}
.x6e_c00266{left:473.706667pt;}
.xe5_c00266{left:476.000000pt;}
.xc_c00266{left:477.333333pt;}
.x9c_c00266{left:479.040000pt;}
.xe_c00266{left:480.000000pt;}
.xc0_c00266{left:481.333333pt;}
.xdb_c00266{left:484.000000pt;}
.x85_c00266{left:485.706667pt;}
.x2c_c00266{left:488.960000pt;}
.x6f_c00266{left:496.373333pt;}
.x57_c00266{left:497.333333pt;}
.xa3_c00266{left:498.293333pt;}
.x8c_c00266{left:500.000000pt;}
.x79_c00266{left:501.333333pt;}
.xc6_c00266{left:508.000000pt;}
.xaf_c00266{left:512.000000pt;}
.x58_c00266{left:513.706667pt;}
.xce_c00266{left:514.666667pt;}
.x7f_c00266{left:516.000000pt;}
.x39_c00266{left:518.666667pt;}
.x4d_c00266{left:526.666667pt;}
.x23_c00266{left:527.626667pt;}
.xab_c00266{left:529.706667pt;}
.x65_c00266{left:531.040000pt;}
.x2d_c00266{left:532.373333pt;}
.x70_c00266{left:538.293333pt;}
.xb0_c00266{left:539.626667pt;}
.x42_c00266{left:541.706667pt;}
.xf_c00266{left:542.666667pt;}
.xdc_c00266{left:543.626667pt;}
.xa4_c00266{left:544.960000pt;}
.x5e_c00266{left:547.040000pt;}
.xe6_c00266{left:549.706667pt;}
.x3a_c00266{left:551.040000pt;}
.x4e_c00266{left:553.706667pt;}
.x66_c00266{left:556.373333pt;}
.x8d_c00266{left:557.706667pt;}
.xa5_c00266{left:560.000000pt;}
.xc1_c00266{left:560.960000pt;}
.x24_c00266{left:565.333333pt;}
.x80_c00266{left:566.666667pt;}
.xc7_c00266{left:570.293333pt;}
.xe0_c00266{left:572.373333pt;}
.xba_c00266{left:573.706667pt;}
.x59_c00266{left:578.666667pt;}
.xdd_c00266{left:580.373333pt;}
.x8e_c00266{left:582.666667pt;}
.x3b_c00266{left:585.333333pt;}
.x9d_c00266{left:587.040000pt;}
.x4f_c00266{left:589.333333pt;}
.xa6_c00266{left:591.626667pt;}
.x5a_c00266{left:595.040000pt;}
.x2e_c00266{left:599.040000pt;}
.xd5_c00266{left:600.000000pt;}
.x25_c00266{left:601.333333pt;}
.xc2_c00266{left:602.666667pt;}
.xb1_c00266{left:604.960000pt;}
.x10_c00266{left:609.333333pt;}
.x43_c00266{left:610.293333pt;}
.x50_c00266{left:611.626667pt;}
.xc9_c00266{left:612.960000pt;}
.x67_c00266{left:617.333333pt;}
.xc8_c00266{left:619.240000pt;}
.x5b_c00266{left:623.626667pt;}
.x2_c00266{left:624.960000pt;}
.x44_c00266{left:626.666667pt;}
.x26_c00266{left:627.626667pt;}
.xbb_c00266{left:629.706667pt;}
.x11_c00266{left:631.626667pt;}
.x18_c00266{left:639.626667pt;}
.x94_c00266{left:640.960000pt;}
.xd6_c00266{left:642.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_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_76c203cb755d02780c56fffa.woff2')format("woff");}.ff1_c00267{font-family:ff1_c00267;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8b_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);}
.m46_c00267{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.m74_c00267{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);}
.m2c_c00267{transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);}
.m73_c00267{transform:matrix(0.363497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363497,0.000000,0.000000,0.250000,0,0);}
.m2a_c00267{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m1b_c00267{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m0_c00267{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m70_c00267{transform:matrix(0.368908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368908,0.000000,0.000000,0.250000,0,0);}
.m7f_c00267{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m75_c00267{transform:matrix(0.371933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371933,0.000000,0.000000,0.250000,0,0);}
.m25_c00267{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.m94_c00267{transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);}
.m8_c00267{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m7a_c00267{transform:matrix(0.380252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380252,0.000000,0.000000,0.250000,0,0);}
.m9b_c00267{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m7_c00267{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m22_c00267{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m43_c00267{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m29_c00267{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m49_c00267{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m7b_c00267{transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391871,0.000000,0.000000,0.250000,0,0);}
.m9a_c00267{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m32_c00267{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m33_c00267{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.ma2_c00267{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.m63_c00267{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m80_c00267{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m26_c00267{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m1e_c00267{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m9_c00267{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m6e_c00267{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m1d_c00267{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m18_c00267{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m5b_c00267{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m71_c00267{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m2e_c00267{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m8e_c00267{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m15_c00267{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m9d_c00267{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m37_c00267{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m48_c00267{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m65_c00267{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m68_c00267{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.ma_c00267{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m62_c00267{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m90_c00267{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m5c_c00267{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m44_c00267{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m96_c00267{transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);}
.m35_c00267{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m16_c00267{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m7d_c00267{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m8f_c00267{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m97_c00267{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m2f_c00267{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m64_c00267{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m3f_c00267{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m84_c00267{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.m60_c00267{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m45_c00267{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m6a_c00267{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m9e_c00267{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m58_c00267{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m81_c00267{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m34_c00267{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m50_c00267{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.ma1_c00267{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.ma0_c00267{transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);}
.m83_c00267{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m27_c00267{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m61_c00267{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m8a_c00267{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.m39_c00267{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m56_c00267{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m52_c00267{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m95_c00267{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m42_c00267{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m11_c00267{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m3_c00267{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.md_c00267{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m41_c00267{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m31_c00267{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m69_c00267{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m2_c00267{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_c00267{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m47_c00267{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m1f_c00267{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m9f_c00267{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m76_c00267{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m79_c00267{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m82_c00267{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m13_c00267{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m53_c00267{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m57_c00267{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m7c_c00267{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m6d_c00267{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m98_c00267{transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);}
.m4_c00267{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m6_c00267{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m24_c00267{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m67_c00267{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m10_c00267{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m36_c00267{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m30_c00267{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mb_c00267{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m23_c00267{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m17_c00267{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m91_c00267{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m3d_c00267{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m2d_c00267{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m5d_c00267{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m1c_c00267{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m28_c00267{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m3b_c00267{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m5_c00267{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m4a_c00267{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m55_c00267{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m85_c00267{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m78_c00267{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m3c_c00267{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m5e_c00267{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m4b_c00267{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m6f_c00267{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m77_c00267{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m51_c00267{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m38_c00267{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m54_c00267{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mf_c00267{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m92_c00267{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m87_c00267{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m66_c00267{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m99_c00267{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.m19_c00267{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m6c_c00267{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m5f_c00267{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m2b_c00267{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m20_c00267{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m4c_c00267{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m14_c00267{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);}
.m1_c00267{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.me_c00267{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m3e_c00267{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m6b_c00267{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m7e_c00267{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m4f_c00267{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m5a_c00267{transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);}
.m21_c00267{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mc_c00267{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m40_c00267{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.ma3_c00267{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m86_c00267{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m3a_c00267{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m4e_c00267{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m59_c00267{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.m9c_c00267{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m4d_c00267{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m72_c00267{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.m12_c00267{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m88_c00267{transform:matrix(0.917059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.917059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.917059,0.000000,0.000000,0.250000,0,0);}
.m8d_c00267{transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);}
.m8c_c00267{transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);}
.m89_c00267{transform:matrix(1.165865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.165865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.165865,0.000000,0.000000,0.250000,0,0);}
.m93_c00267{transform:matrix(1.190705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.190705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.190705,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;}
.fs9_c00267{font-size:3.420000px;}
.fs8_c00267{font-size:6.780000px;}
.fs7_c00267{font-size:11.880000px;}
.fs4_c00267{font-size:18.720000px;}
.fs1_c00267{font-size:20.400000px;}
.fs3_c00267{font-size:25.500000px;}
.fs2_c00267{font-size:28.920000px;}
.fs6_c00267{font-size:32.340000px;}
.fs0_c00267{font-size:35.700000px;}
.fs5_c00267{font-size:39.120000px;}
.y0_c00267{bottom:0.000000px;}
.ydf_c00267{bottom:248.745000px;}
.yde_c00267{bottom:250.905000px;}
.ye0_c00267{bottom:251.130000px;}
.ye1_c00267{bottom:252.405000px;}
.yd8_c00267{bottom:267.405000px;}
.ydd_c00267{bottom:267.825000px;}
.yda_c00267{bottom:268.245000px;}
.yd9_c00267{bottom:270.405000px;}
.ydc_c00267{bottom:270.825000px;}
.ydb_c00267{bottom:271.905000px;}
.yd3_c00267{bottom:288.405000px;}
.yd4_c00267{bottom:289.245000px;}
.yd2_c00267{bottom:289.905000px;}
.yd7_c00267{bottom:290.130000px;}
.yd6_c00267{bottom:290.970000px;}
.yd5_c00267{bottom:291.405000px;}
.yd1_c00267{bottom:307.905000px;}
.ycf_c00267{bottom:308.745000px;}
.yce_c00267{bottom:310.905000px;}
.yd0_c00267{bottom:311.970000px;}
.yc9_c00267{bottom:325.905000px;}
.ycb_c00267{bottom:328.245000px;}
.ycd_c00267{bottom:329.745000px;}
.yca_c00267{bottom:330.405000px;}
.ycc_c00267{bottom:331.905000px;}
.yc5_c00267{bottom:346.905000px;}
.yc6_c00267{bottom:347.745000px;}
.yc8_c00267{bottom:348.825000px;}
.yc7_c00267{bottom:351.405000px;}
.yc1_c00267{bottom:366.405000px;}
.ybe_c00267{bottom:367.245000px;}
.yc3_c00267{bottom:367.905000px;}
.yc0_c00267{bottom:368.745000px;}
.ybd_c00267{bottom:369.405000px;}
.yc4_c00267{bottom:369.630000px;}
.yc2_c00267{bottom:370.470000px;}
.ybf_c00267{bottom:370.905000px;}
.yb6_c00267{bottom:386.745000px;}
.ybc_c00267{bottom:387.180000px;}
.yb9_c00267{bottom:387.405000px;}
.yb7_c00267{bottom:388.245000px;}
.ybb_c00267{bottom:389.130000px;}
.yba_c00267{bottom:389.970000px;}
.yb8_c00267{bottom:390.405000px;}
.yb5_c00267{bottom:406.905000px;}
.yb3_c00267{bottom:407.745000px;}
.yb2_c00267{bottom:409.905000px;}
.yb4_c00267{bottom:410.130000px;}
.yb1_c00267{bottom:424.905000px;}
.yab_c00267{bottom:426.405000px;}
.yae_c00267{bottom:426.855000px;}
.yb0_c00267{bottom:427.245000px;}
.yac_c00267{bottom:427.470000px;}
.yaf_c00267{bottom:427.920000px;}
.yaa_c00267{bottom:429.405000px;}
.yad_c00267{bottom:429.630000px;}
.ya9_c00267{bottom:445.275000px;}
.ya7_c00267{bottom:445.905000px;}
.ya3_c00267{bottom:446.745000px;}
.ya4_c00267{bottom:448.905000px;}
.ya6_c00267{bottom:449.130000px;}
.ya8_c00267{bottom:449.970000px;}
.ya5_c00267{bottom:450.405000px;}
.ya1_c00267{bottom:465.405000px;}
.ya2_c00267{bottom:467.325000px;}
.y9f_c00267{bottom:467.745000px;}
.y9d_c00267{bottom:468.405000px;}
.ya0_c00267{bottom:468.630000px;}
.y9e_c00267{bottom:469.905000px;}
.y9b_c00267{bottom:487.245000px;}
.y9c_c00267{bottom:487.905000px;}
.y9a_c00267{bottom:488.970000px;}
.y98_c00267{bottom:504.405000px;}
.y95_c00267{bottom:505.680000px;}
.y96_c00267{bottom:506.745000px;}
.y99_c00267{bottom:508.470000px;}
.y97_c00267{bottom:508.905000px;}
.y94_c00267{bottom:523.905000px;}
.y90_c00267{bottom:525.405000px;}
.y91_c00267{bottom:526.245000px;}
.y92_c00267{bottom:526.470000px;}
.y93_c00267{bottom:527.970000px;}
.y8e_c00267{bottom:528.405000px;}
.y8f_c00267{bottom:528.630000px;}
.y8d_c00267{bottom:543.405000px;}
.y8a_c00267{bottom:545.745000px;}
.y8c_c00267{bottom:546.630000px;}
.y8b_c00267{bottom:547.905000px;}
.y89_c00267{bottom:563.970000px;}
.y84_c00267{bottom:564.405000px;}
.y87_c00267{bottom:565.245000px;}
.y88_c00267{bottom:566.550000px;}
.y85_c00267{bottom:567.405000px;}
.y86_c00267{bottom:567.630000px;}
.y82_c00267{bottom:583.680000px;}
.y83_c00267{bottom:583.905000px;}
.y81_c00267{bottom:584.745000px;}
.y7f_c00267{bottom:586.905000px;}
.y80_c00267{bottom:587.970000px;}
.y7e_c00267{bottom:603.405000px;}
.y7d_c00267{bottom:604.680000px;}
.y7a_c00267{bottom:605.745000px;}
.y78_c00267{bottom:606.405000px;}
.y7c_c00267{bottom:606.630000px;}
.y79_c00267{bottom:607.470000px;}
.y7b_c00267{bottom:607.905000px;}
.y76_c00267{bottom:622.905000px;}
.y77_c00267{bottom:624.405000px;}
.y75_c00267{bottom:625.245000px;}
.y74_c00267{bottom:626.130000px;}
.y6d_c00267{bottom:642.405000px;}
.y71_c00267{bottom:643.470000px;}
.y70_c00267{bottom:643.905000px;}
.y72_c00267{bottom:644.745000px;}
.y6f_c00267{bottom:645.630000px;}
.y73_c00267{bottom:646.470000px;}
.y6e_c00267{bottom:646.905000px;}
.y6c_c00267{bottom:663.180000px;}
.y6a_c00267{bottom:664.245000px;}
.y69_c00267{bottom:666.405000px;}
.y6b_c00267{bottom:667.470000px;}
.y65_c00267{bottom:683.745000px;}
.y66_c00267{bottom:683.970000px;}
.y68_c00267{bottom:684.825000px;}
.y67_c00267{bottom:685.470000px;}
.y64_c00267{bottom:685.905000px;}
.y63_c00267{bottom:686.970000px;}
.y61_c00267{bottom:701.970000px;}
.y62_c00267{bottom:702.405000px;}
.y60_c00267{bottom:703.245000px;}
.y5f_c00267{bottom:721.905000px;}
.y5e_c00267{bottom:722.325000px;}
.y57_c00267{bottom:722.745000px;}
.y5c_c00267{bottom:723.405000px;}
.y5a_c00267{bottom:724.245000px;}
.y58_c00267{bottom:724.905000px;}
.y59_c00267{bottom:725.130000px;}
.y5d_c00267{bottom:725.970000px;}
.y5b_c00267{bottom:726.405000px;}
.y53_c00267{bottom:741.405000px;}
.y56_c00267{bottom:742.470000px;}
.y52_c00267{bottom:743.745000px;}
.y55_c00267{bottom:744.405000px;}
.y54_c00267{bottom:745.905000px;}
.y4c_c00267{bottom:760.905000px;}
.y4f_c00267{bottom:763.245000px;}
.y50_c00267{bottom:764.130000px;}
.y51_c00267{bottom:764.970000px;}
.y4d_c00267{bottom:765.405000px;}
.y4e_c00267{bottom:766.470000px;}
.y4a_c00267{bottom:781.470000px;}
.y47_c00267{bottom:781.905000px;}
.y49_c00267{bottom:782.745000px;}
.y4b_c00267{bottom:784.470000px;}
.y48_c00267{bottom:784.905000px;}
.y46_c00267{bottom:801.405000px;}
.y43_c00267{bottom:804.405000px;}
.y44_c00267{bottom:804.630000px;}
.y45_c00267{bottom:805.470000px;}
.y41_c00267{bottom:820.470000px;}
.y40_c00267{bottom:821.745000px;}
.y42_c00267{bottom:822.630000px;}
.y3f_c00267{bottom:823.905000px;}
.y3a_c00267{bottom:840.405000px;}
.y3b_c00267{bottom:841.245000px;}
.y3d_c00267{bottom:841.905000px;}
.y3e_c00267{bottom:842.745000px;}
.y38_c00267{bottom:843.405000px;}
.y3c_c00267{bottom:843.630000px;}
.y39_c00267{bottom:844.470000px;}
.y32_c00267{bottom:860.970000px;}
.y35_c00267{bottom:861.825000px;}
.y33_c00267{bottom:862.245000px;}
.y37_c00267{bottom:862.905000px;}
.y36_c00267{bottom:863.130000px;}
.y34_c00267{bottom:864.405000px;}
.y31_c00267{bottom:879.405000px;}
.y30_c00267{bottom:881.745000px;}
.y2f_c00267{bottom:883.905000px;}
.y2b_c00267{bottom:899.970000px;}
.y2a_c00267{bottom:900.405000px;}
.y2e_c00267{bottom:902.130000px;}
.y29_c00267{bottom:902.970000px;}
.y2d_c00267{bottom:903.405000px;}
.y2c_c00267{bottom:904.470000px;}
.y25_c00267{bottom:918.405000px;}
.y23_c00267{bottom:919.680000px;}
.y28_c00267{bottom:919.905000px;}
.y24_c00267{bottom:920.745000px;}
.y27_c00267{bottom:921.630000px;}
.y26_c00267{bottom:922.905000px;}
.y21_c00267{bottom:940.245000px;}
.y22_c00267{bottom:941.970000px;}
.y20_c00267{bottom:942.405000px;}
.y1f_c00267{bottom:958.905000px;}
.y1e_c00267{bottom:961.245000px;}
.y19_c00267{bottom:978.405000px;}
.y1a_c00267{bottom:979.470000px;}
.y1d_c00267{bottom:981.630000px;}
.y1c_c00267{bottom:982.470000px;}
.y1b_c00267{bottom:982.905000px;}
.y17_c00267{bottom:997.905000px;}
.y14_c00267{bottom:1000.245000px;}
.y13_c00267{bottom:1000.905000px;}
.y16_c00267{bottom:1001.130000px;}
.y18_c00267{bottom:1001.970000px;}
.y15_c00267{bottom:1002.405000px;}
.y12_c00267{bottom:1018.245000px;}
.ye_c00267{bottom:1018.470000px;}
.y10_c00267{bottom:1019.745000px;}
.y11_c00267{bottom:1020.405000px;}
.yf_c00267{bottom:1021.470000px;}
.yd_c00267{bottom:1036.905000px;}
.ya_c00267{bottom:1038.405000px;}
.yb_c00267{bottom:1040.970000px;}
.y9_c00267{bottom:1041.405000px;}
.yc_c00267{bottom:1041.630000px;}
.y5_c00267{bottom:1056.405000px;}
.y8_c00267{bottom:1057.470000px;}
.y7_c00267{bottom:1057.905000px;}
.y4_c00267{bottom:1058.745000px;}
.y6_c00267{bottom:1060.470000px;}
.y3_c00267{bottom:1060.905000px;}
.y1_c00267{bottom:1097.745000px;}
.y2_c00267{bottom:1099.050000px;}
.ha_c00267{height:4.206533px;}
.h9_c00267{height:8.339268px;}
.h8_c00267{height:14.612168px;}
.h5_c00267{height:23.025234px;}
.h2_c00267{height:25.091602px;}
.h4_c00267{height:31.364502px;}
.h3_c00267{height:35.571035px;}
.h7_c00267{height:39.777568px;}
.h1_c00267{height:43.910303px;}
.h6_c00267{height:48.116836px;}
.h0_c00267{height:1335.000000px;}
.w0_c00267{width:880.500000px;}
.x0_c00267{left:0.000000px;}
.xbf_c00267{left:152.580000px;}
.x1_c00267{left:154.500000px;}
.xef_c00267{left:160.080000px;}
.x3_c00267{left:161.580000px;}
.xc0_c00267{left:184.500000px;}
.x4_c00267{left:186.000000px;}
.x3f_c00267{left:187.080000px;}
.xe7_c00267{left:199.920000px;}
.xee_c00267{left:201.645000px;}
.x60_c00267{left:204.420000px;}
.x4c_c00267{left:205.920000px;}
.xbc_c00267{left:211.500000px;}
.x40_c00267{left:213.000000px;}
.x73_c00267{left:216.420000px;}
.x71_c00267{left:217.500000px;}
.x2c_c00267{left:219.000000px;}
.xde_c00267{left:225.000000px;}
.x7e_c00267{left:229.080000px;}
.x21_c00267{left:231.420000px;}
.x41_c00267{left:232.500000px;}
.x89_c00267{left:234.000000px;}
.x5_c00267{left:237.000000px;}
.x8d_c00267{left:243.000000px;}
.x61_c00267{left:244.500000px;}
.x4d_c00267{left:246.000000px;}
.x74_c00267{left:248.580000px;}
.xaa_c00267{left:250.080000px;}
.x17_c00267{left:251.580000px;}
.x36_c00267{left:253.080000px;}
.x2d_c00267{left:255.420000px;}
.x72_c00267{left:256.500000px;}
.x67_c00267{left:262.080000px;}
.x56_c00267{left:263.580000px;}
.xc1_c00267{left:265.500000px;}
.xdf_c00267{left:267.420000px;}
.x9c_c00267{left:268.500000px;}
.x11_c00267{left:270.000000px;}
.x42_c00267{left:276.420000px;}
.xc7_c00267{left:277.500000px;}
.x8a_c00267{left:280.920000px;}
.x2e_c00267{left:282.000000px;}
.x8e_c00267{left:283.500000px;}
.x18_c00267{left:285.420000px;}
.xbd_c00267{left:287.580000px;}
.x37_c00267{left:289.920000px;}
.x62_c00267{left:291.000000px;}
.x6_c00267{left:292.920000px;}
.x22_c00267{left:294.000000px;}
.x68_c00267{left:297.000000px;}
.x57_c00267{left:300.420000px;}
.xaf_c00267{left:301.500000px;}
.xa0_c00267{left:303.000000px;}
.xe3_c00267{left:307.920000px;}
.x4e_c00267{left:309.000000px;}
.xc8_c00267{left:315.000000px;}
.x75_c00267{left:316.920000px;}
.x94_c00267{left:321.420000px;}
.xac_c00267{left:322.500000px;}
.xb5_c00267{left:325.080000px;}
.x23_c00267{left:328.500000px;}
.xd0_c00267{left:330.000000px;}
.x7_c00267{left:331.920000px;}
.x7f_c00267{left:333.000000px;}
.x43_c00267{left:334.500000px;}
.x19_c00267{left:336.000000px;}
.x9d_c00267{left:339.000000px;}
.x38_c00267{left:342.000000px;}
.xa1_c00267{left:343.920000px;}
.xd4_c00267{left:345.000000px;}
.xc9_c00267{left:346.500000px;}
.xbe_c00267{left:348.000000px;}
.x80_c00267{left:351.000000px;}
.xc2_c00267{left:353.580000px;}
.x12_c00267{left:355.500000px;}
.x76_c00267{left:358.080000px;}
.x8_c00267{left:360.420000px;}
.x69_c00267{left:362.580000px;}
.x2f_c00267{left:364.500000px;}
.x44_c00267{left:366.000000px;}
.xd5_c00267{left:367.920000px;}
.x39_c00267{left:370.500000px;}
.xe4_c00267{left:373.080000px;}
.x77_c00267{left:375.420000px;}
.xb3_c00267{left:376.920000px;}
.x13_c00267{left:378.000000px;}
.xd1_c00267{left:379.080000px;}
.x81_c00267{left:381.420000px;}
.x95_c00267{left:382.920000px;}
.x58_c00267{left:385.080000px;}
.x63_c00267{left:386.580000px;}
.xe8_c00267{left:388.920000px;}
.x4f_c00267{left:391.500000px;}
.x8f_c00267{left:394.080000px;}
.x6a_c00267{left:396.000000px;}
.x14_c00267{left:397.080000px;}
.xe5_c00267{left:398.580000px;}
.xa2_c00267{left:400.500000px;}
.x78_c00267{left:402.000000px;}
.xb4_c00267{left:403.500000px;}
.x2_c00267{left:408.000000px;}
.x96_c00267{left:409.500000px;}
.x59_c00267{left:414.420000px;}
.xda_c00267{left:415.500000px;}
.x15_c00267{left:417.000000px;}
.x82_c00267{left:418.500000px;}
.x9_c00267{left:419.580000px;}
.xe0_c00267{left:421.080000px;}
.x24_c00267{left:423.420000px;}
.xba_c00267{left:426.420000px;}
.x90_c00267{left:427.500000px;}
.x52_c00267{left:430.500000px;}
.xdb_c00267{left:431.580000px;}
.xd6_c00267{left:433.500000px;}
.xb6_c00267{left:435.000000px;}
.xca_c00267{left:436.920000px;}
.xa3_c00267{left:438.420000px;}
.xe9_c00267{left:439.500000px;}
.xad_c00267{left:440.580000px;}
.x5a_c00267{left:442.500000px;}
.xdc_c00267{left:444.000000px;}
.xa_c00267{left:445.500000px;}
.x1a_c00267{left:447.000000px;}
.x30_c00267{left:450.420000px;}
.xf0_c00267{left:453.000000px;}
.x64_c00267{left:454.080000px;}
.x97_c00267{left:455.355000px;}
.x45_c00267{left:457.920000px;}
.xe6_c00267{left:460.920000px;}
.x65_c00267{left:467.580000px;}
.xea_c00267{left:470.580000px;}
.x79_c00267{left:472.500000px;}
.x25_c00267{left:474.420000px;}
.xcb_c00267{left:477.000000px;}
.xb_c00267{left:478.500000px;}
.x91_c00267{left:480.000000px;}
.xed_c00267{left:481.500000px;}
.x5b_c00267{left:483.000000px;}
.x98_c00267{left:484.500000px;}
.x3a_c00267{left:486.000000px;}
.x1b_c00267{left:487.500000px;}
.xd2_c00267{left:489.000000px;}
.x8b_c00267{left:493.500000px;}
.xc3_c00267{left:494.580000px;}
.xa4_c00267{left:496.500000px;}
.x83_c00267{left:497.580000px;}
.xb0_c00267{left:499.500000px;}
.x99_c00267{left:501.000000px;}
.x46_c00267{left:505.920000px;}
.x53_c00267{left:508.920000px;}
.x5c_c00267{left:510.000000px;}
.x31_c00267{left:513.000000px;}
.xcc_c00267{left:514.080000px;}
.x50_c00267{left:515.580000px;}
.x84_c00267{left:517.920000px;}
.xc4_c00267{left:520.500000px;}
.x26_c00267{left:522.000000px;}
.x6b_c00267{left:523.920000px;}
.xe1_c00267{left:525.420000px;}
.xeb_c00267{left:528.420000px;}
.x3b_c00267{left:529.500000px;}
.x32_c00267{left:534.420000px;}
.xa5_c00267{left:535.500000px;}
.xb1_c00267{left:537.420000px;}
.x8c_c00267{left:538.920000px;}
.x7a_c00267{left:541.920000px;}
.x27_c00267{left:543.420000px;}
.x85_c00267{left:544.920000px;}
.xae_c00267{left:546.000000px;}
.xcd_c00267{left:547.500000px;}
.x47_c00267{left:549.000000px;}
.x33_c00267{left:550.500000px;}
.x66_c00267{left:553.500000px;}
.x1c_c00267{left:558.000000px;}
.xd7_c00267{left:559.080000px;}
.xab_c00267{left:561.000000px;}
.x6c_c00267{left:562.500000px;}
.x92_c00267{left:563.580000px;}
.x28_c00267{left:565.500000px;}
.x48_c00267{left:567.420000px;}
.xb2_c00267{left:573.855000px;}
.xc_c00267{left:576.420000px;}
.x7b_c00267{left:577.920000px;}
.x6d_c00267{left:580.920000px;}
.xce_c00267{left:583.920000px;}
.xd8_c00267{left:585.000000px;}
.x49_c00267{left:586.500000px;}
.xc5_c00267{left:588.420000px;}
.x9a_c00267{left:589.920000px;}
.x86_c00267{left:592.080000px;}
.x1d_c00267{left:594.420000px;}
.x54_c00267{left:597.420000px;}
.xe2_c00267{left:598.500000px;}
.x51_c00267{left:600.000000px;}
.x3c_c00267{left:601.500000px;}
.x7c_c00267{left:603.000000px;}
.x9e_c00267{left:604.500000px;}
.x6e_c00267{left:606.000000px;}
.xd9_c00267{left:607.500000px;}
.x93_c00267{left:609.420000px;}
.xa6_c00267{left:610.920000px;}
.x34_c00267{left:612.420000px;}
.x87_c00267{left:613.920000px;}
.x5d_c00267{left:617.580000px;}
.x1e_c00267{left:619.080000px;}
.xd_c00267{left:625.500000px;}
.x7d_c00267{left:637.920000px;}
.x3d_c00267{left:639.420000px;}
.x29_c00267{left:642.420000px;}
.x5e_c00267{left:643.500000px;}
.xa7_c00267{left:648.000000px;}
.xe_c00267{left:649.500000px;}
.xf1_c00267{left:650.580000px;}
.x9b_c00267{left:652.500000px;}
.xbb_c00267{left:654.420000px;}
.xb7_c00267{left:655.920000px;}
.x4a_c00267{left:658.920000px;}
.xec_c00267{left:663.420000px;}
.x3e_c00267{left:665.580000px;}
.x9f_c00267{left:667.920000px;}
.xcf_c00267{left:669.420000px;}
.xf_c00267{left:672.420000px;}
.x5f_c00267{left:675.000000px;}
.xc6_c00267{left:676.920000px;}
.x6f_c00267{left:679.500000px;}
.x2a_c00267{left:681.000000px;}
.xa8_c00267{left:682.500000px;}
.xdd_c00267{left:683.580000px;}
.xf2_c00267{left:687.000000px;}
.x1f_c00267{left:688.080000px;}
.xd3_c00267{left:689.580000px;}
.xb8_c00267{left:691.080000px;}
.x88_c00267{left:694.500000px;}
.x4b_c00267{left:696.420000px;}
.x10_c00267{left:699.000000px;}
.x70_c00267{left:700.080000px;}
.xa9_c00267{left:702.000000px;}
.xb9_c00267{left:705.000000px;}
.x35_c00267{left:706.080000px;}
.x55_c00267{left:707.580000px;}
.x20_c00267{left:715.500000px;}
.x2b_c00267{left:717.000000px;}
.x16_c00267{left:722.580000px;}
@media print{
.v0_c00267{vertical-align:0.000000pt;}
.ls0_c00267{letter-spacing:0.000000pt;}
.ws0_c00267{word-spacing:0.000000pt;}
.fs9_c00267{font-size:3.040000pt;}
.fs8_c00267{font-size:6.026667pt;}
.fs7_c00267{font-size:10.560000pt;}
.fs4_c00267{font-size:16.640000pt;}
.fs1_c00267{font-size:18.133333pt;}
.fs3_c00267{font-size:22.666667pt;}
.fs2_c00267{font-size:25.706667pt;}
.fs6_c00267{font-size:28.746667pt;}
.fs0_c00267{font-size:31.733333pt;}
.fs5_c00267{font-size:34.773333pt;}
.y0_c00267{bottom:0.000000pt;}
.ydf_c00267{bottom:221.106667pt;}
.yde_c00267{bottom:223.026667pt;}
.ye0_c00267{bottom:223.226667pt;}
.ye1_c00267{bottom:224.360000pt;}
.yd8_c00267{bottom:237.693333pt;}
.ydd_c00267{bottom:238.066667pt;}
.yda_c00267{bottom:238.440000pt;}
.yd9_c00267{bottom:240.360000pt;}
.ydc_c00267{bottom:240.733333pt;}
.ydb_c00267{bottom:241.693333pt;}
.yd3_c00267{bottom:256.360000pt;}
.yd4_c00267{bottom:257.106667pt;}
.yd2_c00267{bottom:257.693333pt;}
.yd7_c00267{bottom:257.893333pt;}
.yd6_c00267{bottom:258.640000pt;}
.yd5_c00267{bottom:259.026667pt;}
.yd1_c00267{bottom:273.693333pt;}
.ycf_c00267{bottom:274.440000pt;}
.yce_c00267{bottom:276.360000pt;}
.yd0_c00267{bottom:277.306667pt;}
.yc9_c00267{bottom:289.693333pt;}
.ycb_c00267{bottom:291.773333pt;}
.ycd_c00267{bottom:293.106667pt;}
.yca_c00267{bottom:293.693333pt;}
.ycc_c00267{bottom:295.026667pt;}
.yc5_c00267{bottom:308.360000pt;}
.yc6_c00267{bottom:309.106667pt;}
.yc8_c00267{bottom:310.066667pt;}
.yc7_c00267{bottom:312.360000pt;}
.yc1_c00267{bottom:325.693333pt;}
.ybe_c00267{bottom:326.440000pt;}
.yc3_c00267{bottom:327.026667pt;}
.yc0_c00267{bottom:327.773333pt;}
.ybd_c00267{bottom:328.360000pt;}
.yc4_c00267{bottom:328.560000pt;}
.yc2_c00267{bottom:329.306667pt;}
.ybf_c00267{bottom:329.693333pt;}
.yb6_c00267{bottom:343.773333pt;}
.ybc_c00267{bottom:344.160000pt;}
.yb9_c00267{bottom:344.360000pt;}
.yb7_c00267{bottom:345.106667pt;}
.ybb_c00267{bottom:345.893333pt;}
.yba_c00267{bottom:346.640000pt;}
.yb8_c00267{bottom:347.026667pt;}
.yb5_c00267{bottom:361.693333pt;}
.yb3_c00267{bottom:362.440000pt;}
.yb2_c00267{bottom:364.360000pt;}
.yb4_c00267{bottom:364.560000pt;}
.yb1_c00267{bottom:377.693333pt;}
.yab_c00267{bottom:379.026667pt;}
.yae_c00267{bottom:379.426667pt;}
.yb0_c00267{bottom:379.773333pt;}
.yac_c00267{bottom:379.973333pt;}
.yaf_c00267{bottom:380.373333pt;}
.yaa_c00267{bottom:381.693333pt;}
.yad_c00267{bottom:381.893333pt;}
.ya9_c00267{bottom:395.800000pt;}
.ya7_c00267{bottom:396.360000pt;}
.ya3_c00267{bottom:397.106667pt;}
.ya4_c00267{bottom:399.026667pt;}
.ya6_c00267{bottom:399.226667pt;}
.ya8_c00267{bottom:399.973333pt;}
.ya5_c00267{bottom:400.360000pt;}
.ya1_c00267{bottom:413.693333pt;}
.ya2_c00267{bottom:415.400000pt;}
.y9f_c00267{bottom:415.773333pt;}
.y9d_c00267{bottom:416.360000pt;}
.ya0_c00267{bottom:416.560000pt;}
.y9e_c00267{bottom:417.693333pt;}
.y9b_c00267{bottom:433.106667pt;}
.y9c_c00267{bottom:433.693333pt;}
.y9a_c00267{bottom:434.640000pt;}
.y98_c00267{bottom:448.360000pt;}
.y95_c00267{bottom:449.493333pt;}
.y96_c00267{bottom:450.440000pt;}
.y99_c00267{bottom:451.973333pt;}
.y97_c00267{bottom:452.360000pt;}
.y94_c00267{bottom:465.693333pt;}
.y90_c00267{bottom:467.026667pt;}
.y91_c00267{bottom:467.773333pt;}
.y92_c00267{bottom:467.973333pt;}
.y93_c00267{bottom:469.306667pt;}
.y8e_c00267{bottom:469.693333pt;}
.y8f_c00267{bottom:469.893333pt;}
.y8d_c00267{bottom:483.026667pt;}
.y8a_c00267{bottom:485.106667pt;}
.y8c_c00267{bottom:485.893333pt;}
.y8b_c00267{bottom:487.026667pt;}
.y89_c00267{bottom:501.306667pt;}
.y84_c00267{bottom:501.693333pt;}
.y87_c00267{bottom:502.440000pt;}
.y88_c00267{bottom:503.600000pt;}
.y85_c00267{bottom:504.360000pt;}
.y86_c00267{bottom:504.560000pt;}
.y82_c00267{bottom:518.826667pt;}
.y83_c00267{bottom:519.026667pt;}
.y81_c00267{bottom:519.773333pt;}
.y7f_c00267{bottom:521.693333pt;}
.y80_c00267{bottom:522.640000pt;}
.y7e_c00267{bottom:536.360000pt;}
.y7d_c00267{bottom:537.493333pt;}
.y7a_c00267{bottom:538.440000pt;}
.y78_c00267{bottom:539.026667pt;}
.y7c_c00267{bottom:539.226667pt;}
.y79_c00267{bottom:539.973333pt;}
.y7b_c00267{bottom:540.360000pt;}
.y76_c00267{bottom:553.693333pt;}
.y77_c00267{bottom:555.026667pt;}
.y75_c00267{bottom:555.773333pt;}
.y74_c00267{bottom:556.560000pt;}
.y6d_c00267{bottom:571.026667pt;}
.y71_c00267{bottom:571.973333pt;}
.y70_c00267{bottom:572.360000pt;}
.y72_c00267{bottom:573.106667pt;}
.y6f_c00267{bottom:573.893333pt;}
.y73_c00267{bottom:574.640000pt;}
.y6e_c00267{bottom:575.026667pt;}
.y6c_c00267{bottom:589.493333pt;}
.y6a_c00267{bottom:590.440000pt;}
.y69_c00267{bottom:592.360000pt;}
.y6b_c00267{bottom:593.306667pt;}
.y65_c00267{bottom:607.773333pt;}
.y66_c00267{bottom:607.973333pt;}
.y68_c00267{bottom:608.733333pt;}
.y67_c00267{bottom:609.306667pt;}
.y64_c00267{bottom:609.693333pt;}
.y63_c00267{bottom:610.640000pt;}
.y61_c00267{bottom:623.973333pt;}
.y62_c00267{bottom:624.360000pt;}
.y60_c00267{bottom:625.106667pt;}
.y5f_c00267{bottom:641.693333pt;}
.y5e_c00267{bottom:642.066667pt;}
.y57_c00267{bottom:642.440000pt;}
.y5c_c00267{bottom:643.026667pt;}
.y5a_c00267{bottom:643.773333pt;}
.y58_c00267{bottom:644.360000pt;}
.y59_c00267{bottom:644.560000pt;}
.y5d_c00267{bottom:645.306667pt;}
.y5b_c00267{bottom:645.693333pt;}
.y53_c00267{bottom:659.026667pt;}
.y56_c00267{bottom:659.973333pt;}
.y52_c00267{bottom:661.106667pt;}
.y55_c00267{bottom:661.693333pt;}
.y54_c00267{bottom:663.026667pt;}
.y4c_c00267{bottom:676.360000pt;}
.y4f_c00267{bottom:678.440000pt;}
.y50_c00267{bottom:679.226667pt;}
.y51_c00267{bottom:679.973333pt;}
.y4d_c00267{bottom:680.360000pt;}
.y4e_c00267{bottom:681.306667pt;}
.y4a_c00267{bottom:694.640000pt;}
.y47_c00267{bottom:695.026667pt;}
.y49_c00267{bottom:695.773333pt;}
.y4b_c00267{bottom:697.306667pt;}
.y48_c00267{bottom:697.693333pt;}
.y46_c00267{bottom:712.360000pt;}
.y43_c00267{bottom:715.026667pt;}
.y44_c00267{bottom:715.226667pt;}
.y45_c00267{bottom:715.973333pt;}
.y41_c00267{bottom:729.306667pt;}
.y40_c00267{bottom:730.440000pt;}
.y42_c00267{bottom:731.226667pt;}
.y3f_c00267{bottom:732.360000pt;}
.y3a_c00267{bottom:747.026667pt;}
.y3b_c00267{bottom:747.773333pt;}
.y3d_c00267{bottom:748.360000pt;}
.y3e_c00267{bottom:749.106667pt;}
.y38_c00267{bottom:749.693333pt;}
.y3c_c00267{bottom:749.893333pt;}
.y39_c00267{bottom:750.640000pt;}
.y32_c00267{bottom:765.306667pt;}
.y35_c00267{bottom:766.066667pt;}
.y33_c00267{bottom:766.440000pt;}
.y37_c00267{bottom:767.026667pt;}
.y36_c00267{bottom:767.226667pt;}
.y34_c00267{bottom:768.360000pt;}
.y31_c00267{bottom:781.693333pt;}
.y30_c00267{bottom:783.773333pt;}
.y2f_c00267{bottom:785.693333pt;}
.y2b_c00267{bottom:799.973333pt;}
.y2a_c00267{bottom:800.360000pt;}
.y2e_c00267{bottom:801.893333pt;}
.y29_c00267{bottom:802.640000pt;}
.y2d_c00267{bottom:803.026667pt;}
.y2c_c00267{bottom:803.973333pt;}
.y25_c00267{bottom:816.360000pt;}
.y23_c00267{bottom:817.493333pt;}
.y28_c00267{bottom:817.693333pt;}
.y24_c00267{bottom:818.440000pt;}
.y27_c00267{bottom:819.226667pt;}
.y26_c00267{bottom:820.360000pt;}
.y21_c00267{bottom:835.773333pt;}
.y22_c00267{bottom:837.306667pt;}
.y20_c00267{bottom:837.693333pt;}
.y1f_c00267{bottom:852.360000pt;}
.y1e_c00267{bottom:854.440000pt;}
.y19_c00267{bottom:869.693333pt;}
.y1a_c00267{bottom:870.640000pt;}
.y1d_c00267{bottom:872.560000pt;}
.y1c_c00267{bottom:873.306667pt;}
.y1b_c00267{bottom:873.693333pt;}
.y17_c00267{bottom:887.026667pt;}
.y14_c00267{bottom:889.106667pt;}
.y13_c00267{bottom:889.693333pt;}
.y16_c00267{bottom:889.893333pt;}
.y18_c00267{bottom:890.640000pt;}
.y15_c00267{bottom:891.026667pt;}
.y12_c00267{bottom:905.106667pt;}
.ye_c00267{bottom:905.306667pt;}
.y10_c00267{bottom:906.440000pt;}
.y11_c00267{bottom:907.026667pt;}
.yf_c00267{bottom:907.973333pt;}
.yd_c00267{bottom:921.693333pt;}
.ya_c00267{bottom:923.026667pt;}
.yb_c00267{bottom:925.306667pt;}
.y9_c00267{bottom:925.693333pt;}
.yc_c00267{bottom:925.893333pt;}
.y5_c00267{bottom:939.026667pt;}
.y8_c00267{bottom:939.973333pt;}
.y7_c00267{bottom:940.360000pt;}
.y4_c00267{bottom:941.106667pt;}
.y6_c00267{bottom:942.640000pt;}
.y3_c00267{bottom:943.026667pt;}
.y1_c00267{bottom:975.773333pt;}
.y2_c00267{bottom:976.933333pt;}
.ha_c00267{height:3.739141pt;}
.h9_c00267{height:7.412682pt;}
.h8_c00267{height:12.988594pt;}
.h5_c00267{height:20.466875pt;}
.h2_c00267{height:22.303646pt;}
.h4_c00267{height:27.879557pt;}
.h3_c00267{height:31.618698pt;}
.h7_c00267{height:35.357839pt;}
.h1_c00267{height:39.031380pt;}
.h6_c00267{height:42.770521pt;}
.h0_c00267{height:1186.666667pt;}
.w0_c00267{width:782.666667pt;}
.x0_c00267{left:0.000000pt;}
.xbf_c00267{left:135.626667pt;}
.x1_c00267{left:137.333333pt;}
.xef_c00267{left:142.293333pt;}
.x3_c00267{left:143.626667pt;}
.xc0_c00267{left:164.000000pt;}
.x4_c00267{left:165.333333pt;}
.x3f_c00267{left:166.293333pt;}
.xe7_c00267{left:177.706667pt;}
.xee_c00267{left:179.240000pt;}
.x60_c00267{left:181.706667pt;}
.x4c_c00267{left:183.040000pt;}
.xbc_c00267{left:188.000000pt;}
.x40_c00267{left:189.333333pt;}
.x73_c00267{left:192.373333pt;}
.x71_c00267{left:193.333333pt;}
.x2c_c00267{left:194.666667pt;}
.xde_c00267{left:200.000000pt;}
.x7e_c00267{left:203.626667pt;}
.x21_c00267{left:205.706667pt;}
.x41_c00267{left:206.666667pt;}
.x89_c00267{left:208.000000pt;}
.x5_c00267{left:210.666667pt;}
.x8d_c00267{left:216.000000pt;}
.x61_c00267{left:217.333333pt;}
.x4d_c00267{left:218.666667pt;}
.x74_c00267{left:220.960000pt;}
.xaa_c00267{left:222.293333pt;}
.x17_c00267{left:223.626667pt;}
.x36_c00267{left:224.960000pt;}
.x2d_c00267{left:227.040000pt;}
.x72_c00267{left:228.000000pt;}
.x67_c00267{left:232.960000pt;}
.x56_c00267{left:234.293333pt;}
.xc1_c00267{left:236.000000pt;}
.xdf_c00267{left:237.706667pt;}
.x9c_c00267{left:238.666667pt;}
.x11_c00267{left:240.000000pt;}
.x42_c00267{left:245.706667pt;}
.xc7_c00267{left:246.666667pt;}
.x8a_c00267{left:249.706667pt;}
.x2e_c00267{left:250.666667pt;}
.x8e_c00267{left:252.000000pt;}
.x18_c00267{left:253.706667pt;}
.xbd_c00267{left:255.626667pt;}
.x37_c00267{left:257.706667pt;}
.x62_c00267{left:258.666667pt;}
.x6_c00267{left:260.373333pt;}
.x22_c00267{left:261.333333pt;}
.x68_c00267{left:264.000000pt;}
.x57_c00267{left:267.040000pt;}
.xaf_c00267{left:268.000000pt;}
.xa0_c00267{left:269.333333pt;}
.xe3_c00267{left:273.706667pt;}
.x4e_c00267{left:274.666667pt;}
.xc8_c00267{left:280.000000pt;}
.x75_c00267{left:281.706667pt;}
.x94_c00267{left:285.706667pt;}
.xac_c00267{left:286.666667pt;}
.xb5_c00267{left:288.960000pt;}
.x23_c00267{left:292.000000pt;}
.xd0_c00267{left:293.333333pt;}
.x7_c00267{left:295.040000pt;}
.x7f_c00267{left:296.000000pt;}
.x43_c00267{left:297.333333pt;}
.x19_c00267{left:298.666667pt;}
.x9d_c00267{left:301.333333pt;}
.x38_c00267{left:304.000000pt;}
.xa1_c00267{left:305.706667pt;}
.xd4_c00267{left:306.666667pt;}
.xc9_c00267{left:308.000000pt;}
.xbe_c00267{left:309.333333pt;}
.x80_c00267{left:312.000000pt;}
.xc2_c00267{left:314.293333pt;}
.x12_c00267{left:316.000000pt;}
.x76_c00267{left:318.293333pt;}
.x8_c00267{left:320.373333pt;}
.x69_c00267{left:322.293333pt;}
.x2f_c00267{left:324.000000pt;}
.x44_c00267{left:325.333333pt;}
.xd5_c00267{left:327.040000pt;}
.x39_c00267{left:329.333333pt;}
.xe4_c00267{left:331.626667pt;}
.x77_c00267{left:333.706667pt;}
.xb3_c00267{left:335.040000pt;}
.x13_c00267{left:336.000000pt;}
.xd1_c00267{left:336.960000pt;}
.x81_c00267{left:339.040000pt;}
.x95_c00267{left:340.373333pt;}
.x58_c00267{left:342.293333pt;}
.x63_c00267{left:343.626667pt;}
.xe8_c00267{left:345.706667pt;}
.x4f_c00267{left:348.000000pt;}
.x8f_c00267{left:350.293333pt;}
.x6a_c00267{left:352.000000pt;}
.x14_c00267{left:352.960000pt;}
.xe5_c00267{left:354.293333pt;}
.xa2_c00267{left:356.000000pt;}
.x78_c00267{left:357.333333pt;}
.xb4_c00267{left:358.666667pt;}
.x2_c00267{left:362.666667pt;}
.x96_c00267{left:364.000000pt;}
.x59_c00267{left:368.373333pt;}
.xda_c00267{left:369.333333pt;}
.x15_c00267{left:370.666667pt;}
.x82_c00267{left:372.000000pt;}
.x9_c00267{left:372.960000pt;}
.xe0_c00267{left:374.293333pt;}
.x24_c00267{left:376.373333pt;}
.xba_c00267{left:379.040000pt;}
.x90_c00267{left:380.000000pt;}
.x52_c00267{left:382.666667pt;}
.xdb_c00267{left:383.626667pt;}
.xd6_c00267{left:385.333333pt;}
.xb6_c00267{left:386.666667pt;}
.xca_c00267{left:388.373333pt;}
.xa3_c00267{left:389.706667pt;}
.xe9_c00267{left:390.666667pt;}
.xad_c00267{left:391.626667pt;}
.x5a_c00267{left:393.333333pt;}
.xdc_c00267{left:394.666667pt;}
.xa_c00267{left:396.000000pt;}
.x1a_c00267{left:397.333333pt;}
.x30_c00267{left:400.373333pt;}
.xf0_c00267{left:402.666667pt;}
.x64_c00267{left:403.626667pt;}
.x97_c00267{left:404.760000pt;}
.x45_c00267{left:407.040000pt;}
.xe6_c00267{left:409.706667pt;}
.x65_c00267{left:415.626667pt;}
.xea_c00267{left:418.293333pt;}
.x79_c00267{left:420.000000pt;}
.x25_c00267{left:421.706667pt;}
.xcb_c00267{left:424.000000pt;}
.xb_c00267{left:425.333333pt;}
.x91_c00267{left:426.666667pt;}
.xed_c00267{left:428.000000pt;}
.x5b_c00267{left:429.333333pt;}
.x98_c00267{left:430.666667pt;}
.x3a_c00267{left:432.000000pt;}
.x1b_c00267{left:433.333333pt;}
.xd2_c00267{left:434.666667pt;}
.x8b_c00267{left:438.666667pt;}
.xc3_c00267{left:439.626667pt;}
.xa4_c00267{left:441.333333pt;}
.x83_c00267{left:442.293333pt;}
.xb0_c00267{left:444.000000pt;}
.x99_c00267{left:445.333333pt;}
.x46_c00267{left:449.706667pt;}
.x53_c00267{left:452.373333pt;}
.x5c_c00267{left:453.333333pt;}
.x31_c00267{left:456.000000pt;}
.xcc_c00267{left:456.960000pt;}
.x50_c00267{left:458.293333pt;}
.x84_c00267{left:460.373333pt;}
.xc4_c00267{left:462.666667pt;}
.x26_c00267{left:464.000000pt;}
.x6b_c00267{left:465.706667pt;}
.xe1_c00267{left:467.040000pt;}
.xeb_c00267{left:469.706667pt;}
.x3b_c00267{left:470.666667pt;}
.x32_c00267{left:475.040000pt;}
.xa5_c00267{left:476.000000pt;}
.xb1_c00267{left:477.706667pt;}
.x8c_c00267{left:479.040000pt;}
.x7a_c00267{left:481.706667pt;}
.x27_c00267{left:483.040000pt;}
.x85_c00267{left:484.373333pt;}
.xae_c00267{left:485.333333pt;}
.xcd_c00267{left:486.666667pt;}
.x47_c00267{left:488.000000pt;}
.x33_c00267{left:489.333333pt;}
.x66_c00267{left:492.000000pt;}
.x1c_c00267{left:496.000000pt;}
.xd7_c00267{left:496.960000pt;}
.xab_c00267{left:498.666667pt;}
.x6c_c00267{left:500.000000pt;}
.x92_c00267{left:500.960000pt;}
.x28_c00267{left:502.666667pt;}
.x48_c00267{left:504.373333pt;}
.xb2_c00267{left:510.093333pt;}
.xc_c00267{left:512.373333pt;}
.x7b_c00267{left:513.706667pt;}
.x6d_c00267{left:516.373333pt;}
.xce_c00267{left:519.040000pt;}
.xd8_c00267{left:520.000000pt;}
.x49_c00267{left:521.333333pt;}
.xc5_c00267{left:523.040000pt;}
.x9a_c00267{left:524.373333pt;}
.x86_c00267{left:526.293333pt;}
.x1d_c00267{left:528.373333pt;}
.x54_c00267{left:531.040000pt;}
.xe2_c00267{left:532.000000pt;}
.x51_c00267{left:533.333333pt;}
.x3c_c00267{left:534.666667pt;}
.x7c_c00267{left:536.000000pt;}
.x9e_c00267{left:537.333333pt;}
.x6e_c00267{left:538.666667pt;}
.xd9_c00267{left:540.000000pt;}
.x93_c00267{left:541.706667pt;}
.xa6_c00267{left:543.040000pt;}
.x34_c00267{left:544.373333pt;}
.x87_c00267{left:545.706667pt;}
.x5d_c00267{left:548.960000pt;}
.x1e_c00267{left:550.293333pt;}
.xd_c00267{left:556.000000pt;}
.x7d_c00267{left:567.040000pt;}
.x3d_c00267{left:568.373333pt;}
.x29_c00267{left:571.040000pt;}
.x5e_c00267{left:572.000000pt;}
.xa7_c00267{left:576.000000pt;}
.xe_c00267{left:577.333333pt;}
.xf1_c00267{left:578.293333pt;}
.x9b_c00267{left:580.000000pt;}
.xbb_c00267{left:581.706667pt;}
.xb7_c00267{left:583.040000pt;}
.x4a_c00267{left:585.706667pt;}
.xec_c00267{left:589.706667pt;}
.x3e_c00267{left:591.626667pt;}
.x9f_c00267{left:593.706667pt;}
.xcf_c00267{left:595.040000pt;}
.xf_c00267{left:597.706667pt;}
.x5f_c00267{left:600.000000pt;}
.xc6_c00267{left:601.706667pt;}
.x6f_c00267{left:604.000000pt;}
.x2a_c00267{left:605.333333pt;}
.xa8_c00267{left:606.666667pt;}
.xdd_c00267{left:607.626667pt;}
.xf2_c00267{left:610.666667pt;}
.x1f_c00267{left:611.626667pt;}
.xd3_c00267{left:612.960000pt;}
.xb8_c00267{left:614.293333pt;}
.x88_c00267{left:617.333333pt;}
.x4b_c00267{left:619.040000pt;}
.x10_c00267{left:621.333333pt;}
.x70_c00267{left:622.293333pt;}
.xa9_c00267{left:624.000000pt;}
.xb9_c00267{left:626.666667pt;}
.x35_c00267{left:627.626667pt;}
.x55_c00267{left:628.960000pt;}
.x20_c00267{left:636.000000pt;}
.x2b_c00267{left:637.333333pt;}
.x16_c00267{left:642.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_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_e1ec95528ff46c88ce3d73db.woff2')format("woff");}.ff1_c00268{font-family:ff1_c00268;line-height:1.688965;font-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_c00268{transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);}
.m50_c00268{transform:matrix(0.314417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314417,0.000000,0.000000,0.250000,0,0);}
.m81_c00268{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.meb_c00268{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);}
.mdb_c00268{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m54_c00268{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m24_c00268{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m2f_c00268{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m63_c00268{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m3d_c00268{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m1d_c00268{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.me6_c00268{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m8b_c00268{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.mb7_c00268{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m3c_c00268{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m72_c00268{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m9f_c00268{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.me_c00268{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m46_c00268{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m2d_c00268{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.m8d_c00268{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m4c_c00268{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.ma1_c00268{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m89_c00268{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m55_c00268{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.mbb_c00268{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mcc_c00268{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.ma8_c00268{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m40_c00268{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.maa_c00268{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m2c_c00268{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m43_c00268{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m77_c00268{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.mb3_c00268{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.ma2_c00268{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.me0_c00268{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.ma7_c00268{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m7e_c00268{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m27_c00268{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.mad_c00268{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m28_c00268{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m83_c00268{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m95_c00268{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m94_c00268{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.ma9_c00268{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m7_c00268{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m32_c00268{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m82_c00268{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m1b_c00268{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m68_c00268{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.me1_c00268{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m56_c00268{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m90_c00268{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mdf_c00268{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m7d_c00268{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mda_c00268{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m61_c00268{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.ma6_c00268{transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);}
.m91_c00268{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m97_c00268{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m33_c00268{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.me2_c00268{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m45_c00268{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.mbd_c00268{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m67_c00268{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.m86_c00268{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.me9_c00268{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.mdc_c00268{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mcb_c00268{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m8c_c00268{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.mb1_c00268{transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);}
.mbf_c00268{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mde_c00268{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m17_c00268{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m23_c00268{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.mcd_c00268{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m9d_c00268{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.mb5_c00268{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m29_c00268{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.m4e_c00268{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m4f_c00268{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.me8_c00268{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m8f_c00268{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m3a_c00268{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m9a_c00268{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.ma3_c00268{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m92_c00268{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m1c_c00268{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.me3_c00268{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m98_c00268{transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);}
.m2a_c00268{transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);}
.m21_c00268{transform:matrix(0.474790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474790,0.000000,0.000000,0.250000,0,0);}
.m96_c00268{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mf_c00268{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m4_c00268{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mab_c00268{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m16_c00268{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m87_c00268{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mb0_c00268{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m4b_c00268{transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);}
.me4_c00268{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.ma4_c00268{transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);}
.m1_c00268{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m15_c00268{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mc5_c00268{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mcf_c00268{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.md3_c00268{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m22_c00268{transform:matrix(0.497479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497479,0.000000,0.000000,0.250000,0,0);}
.md_c00268{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_c00268{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m71_c00268{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.md5_c00268{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m66_c00268{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.mce_c00268{transform:matrix(0.512059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512059,0.000000,0.000000,0.250000,0,0);}
.mb8_c00268{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m70_c00268{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mc1_c00268{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.md9_c00268{transform:matrix(0.516387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516387,0.000000,0.000000,0.250000,0,0);}
.m10_c00268{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m65_c00268{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m88_c00268{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m2_c00268{transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);}
.mc6_c00268{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m69_c00268{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m4d_c00268{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mbc_c00268{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m3f_c00268{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mac_c00268{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m3b_c00268{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.me5_c00268{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m5d_c00268{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m42_c00268{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m2b_c00268{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.md7_c00268{transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);}
.m9_c00268{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m5c_c00268{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m5a_c00268{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mb9_c00268{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m5_c00268{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m2e_c00268{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.md8_c00268{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m59_c00268{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m41_c00268{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m6_c00268{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mc_c00268{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m39_c00268{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m6e_c00268{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m37_c00268{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mb2_c00268{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m7b_c00268{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m48_c00268{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m3_c00268{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mc2_c00268{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m80_c00268{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mae_c00268{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m13_c00268{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.ma_c00268{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m12_c00268{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m4a_c00268{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mb6_c00268{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m74_c00268{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m5f_c00268{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m64_c00268{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m9b_c00268{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m9e_c00268{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m62_c00268{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m7a_c00268{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m60_c00268{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.md4_c00268{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.md1_c00268{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mbe_c00268{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m6b_c00268{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m9c_c00268{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mc9_c00268{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m38_c00268{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m1a_c00268{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m1f_c00268{transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);}
.m5e_c00268{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.mb_c00268{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m52_c00268{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m8_c00268{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m26_c00268{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m85_c00268{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.maf_c00268{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m6d_c00268{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m7c_c00268{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m8a_c00268{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m20_c00268{transform:matrix(0.580913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580913,0.000000,0.000000,0.250000,0,0);}
.m1e_c00268{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.me7_c00268{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m7f_c00268{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m5b_c00268{transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);}
.m84_c00268{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.mba_c00268{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mc4_c00268{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.mea_c00268{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m99_c00268{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.m51_c00268{transform:matrix(0.611765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611765,0.000000,0.000000,0.250000,0,0);}
.mc8_c00268{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m25_c00268{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);}
.m76_c00268{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m35_c00268{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.m58_c00268{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mc0_c00268{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m6a_c00268{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.mb4_c00268{transform:matrix(0.643154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643154,0.000000,0.000000,0.250000,0,0);}
.ma0_c00268{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m79_c00268{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m73_c00268{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m47_c00268{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m3e_c00268{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m31_c00268{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.m0_c00268{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m6f_c00268{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.m57_c00268{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m36_c00268{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m6c_c00268{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m49_c00268{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m8e_c00268{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.md0_c00268{transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);}
.m75_c00268{transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);}
.md6_c00268{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m18_c00268{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mdd_c00268{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.md2_c00268{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m19_c00268{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.ma5_c00268{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.mc3_c00268{transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);}
.m93_c00268{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mca_c00268{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m14_c00268{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m11_c00268{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m78_c00268{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m44_c00268{transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);}
.m53_c00268{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m34_c00268{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00268{vertical-align:0.000000px;}
.v1_c00268{vertical-align:12.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;}
}
.ws2_c00268{word-spacing:-6.837240px;}
.ws0_c00268{word-spacing:-4.123662px;}
.ws3_c00268{word-spacing:0.000000px;}
.ws1_c00268{word-spacing:2.151649px;}
.fc0_c00268{color:transparent;}
.fs6_c00268{font-size:3.420000px;}
.fs0_c00268{font-size:18.720000px;}
.fs5_c00268{font-size:20.400000px;}
.fs3_c00268{font-size:25.500000px;}
.fs1_c00268{font-size:28.920000px;}
.fs4_c00268{font-size:32.340000px;}
.fs2_c00268{font-size:35.700000px;}
.fs7_c00268{font-size:39.120000px;}
.y0_c00268{bottom:0.000000px;}
.y3_c00268{bottom:230.130000px;}
.yb2_c00268{bottom:254.745000px;}
.yb4_c00268{bottom:254.970000px;}
.yb3_c00268{bottom:255.825000px;}
.yb1_c00268{bottom:256.905000px;}
.yac_c00268{bottom:274.245000px;}
.yae_c00268{bottom:275.325000px;}
.yaf_c00268{bottom:275.745000px;}
.yb0_c00268{bottom:275.970000px;}
.yad_c00268{bottom:276.405000px;}
.yab_c00268{bottom:293.745000px;}
.ya8_c00268{bottom:295.245000px;}
.ya9_c00268{bottom:296.130000px;}
.yaa_c00268{bottom:297.405000px;}
.ya7_c00268{bottom:314.745000px;}
.ya6_c00268{bottom:316.905000px;}
.ya5_c00268{bottom:333.405000px;}
.ya2_c00268{bottom:334.245000px;}
.ya3_c00268{bottom:336.405000px;}
.ya4_c00268{bottom:336.630000px;}
.y9f_c00268{bottom:355.905000px;}
.ya0_c00268{bottom:356.130000px;}
.ya1_c00268{bottom:356.970000px;}
.y9b_c00268{bottom:374.325000px;}
.y9d_c00268{bottom:374.745000px;}
.y99_c00268{bottom:375.405000px;}
.y9a_c00268{bottom:375.630000px;}
.y9e_c00268{bottom:376.470000px;}
.y9c_c00268{bottom:376.905000px;}
.y98_c00268{bottom:392.745000px;}
.y97_c00268{bottom:394.245000px;}
.y96_c00268{bottom:394.905000px;}
.y94_c00268{bottom:395.130000px;}
.y95_c00268{bottom:395.970000px;}
.y93_c00268{bottom:411.405000px;}
.y8c_c00268{bottom:412.245000px;}
.y91_c00268{bottom:412.905000px;}
.y8d_c00268{bottom:413.745000px;}
.y92_c00268{bottom:414.405000px;}
.y8e_c00268{bottom:414.630000px;}
.y8b_c00268{bottom:415.905000px;}
.y90_c00268{bottom:416.130000px;}
.y8f_c00268{bottom:416.970000px;}
.y8a_c00268{bottom:432.405000px;}
.y89_c00268{bottom:433.245000px;}
.y88_c00268{bottom:434.130000px;}
.y87_c00268{bottom:435.405000px;}
.y86_c00268{bottom:451.905000px;}
.y85_c00268{bottom:452.745000px;}
.y84_c00268{bottom:454.905000px;}
.y81_c00268{bottom:472.245000px;}
.y80_c00268{bottom:474.405000px;}
.y7f_c00268{bottom:474.630000px;}
.y83_c00268{bottom:474.825000px;}
.y7e_c00268{bottom:475.470000px;}
.y82_c00268{bottom:475.905000px;}
.y7a_c00268{bottom:491.745000px;}
.y7c_c00268{bottom:492.630000px;}
.y7d_c00268{bottom:492.825000px;}
.y79_c00268{bottom:493.905000px;}
.y7b_c00268{bottom:494.130000px;}
.y77_c00268{bottom:510.405000px;}
.y78_c00268{bottom:511.245000px;}
.y74_c00268{bottom:512.325000px;}
.y76_c00268{bottom:512.745000px;}
.y72_c00268{bottom:513.405000px;}
.y75_c00268{bottom:513.630000px;}
.y73_c00268{bottom:514.470000px;}
.y6f_c00268{bottom:531.825000px;}
.y6b_c00268{bottom:532.245000px;}
.y71_c00268{bottom:532.905000px;}
.y6e_c00268{bottom:533.130000px;}
.y6d_c00268{bottom:533.325000px;}
.y70_c00268{bottom:533.970000px;}
.y6c_c00268{bottom:534.405000px;}
.y65_c00268{bottom:551.745000px;}
.y6a_c00268{bottom:552.405000px;}
.y67_c00268{bottom:552.630000px;}
.y68_c00268{bottom:552.825000px;}
.y69_c00268{bottom:553.470000px;}
.y66_c00268{bottom:553.905000px;}
.y60_c00268{bottom:571.245000px;}
.y64_c00268{bottom:571.905000px;}
.y63_c00268{bottom:572.130000px;}
.y62_c00268{bottom:572.325000px;}
.y5f_c00268{bottom:573.405000px;}
.y61_c00268{bottom:574.470000px;}
.y5b_c00268{bottom:588.405000px;}
.y5d_c00268{bottom:590.745000px;}
.y5e_c00268{bottom:591.630000px;}
.y5c_c00268{bottom:591.825000px;}
.y5a_c00268{bottom:592.905000px;}
.y57_c00268{bottom:610.245000px;}
.y58_c00268{bottom:612.405000px;}
.y59_c00268{bottom:612.630000px;}
.y54_c00268{bottom:631.245000px;}
.y56_c00268{bottom:631.905000px;}
.y55_c00268{bottom:633.405000px;}
.y50_c00268{bottom:649.245000px;}
.y53_c00268{bottom:650.745000px;}
.y51_c00268{bottom:651.405000px;}
.y4f_c00268{bottom:652.470000px;}
.y52_c00268{bottom:652.905000px;}
.y4c_c00268{bottom:670.245000px;}
.y4a_c00268{bottom:671.130000px;}
.y4e_c00268{bottom:671.970000px;}
.y4b_c00268{bottom:672.405000px;}
.y4d_c00268{bottom:673.470000px;}
.y46_c00268{bottom:691.905000px;}
.y47_c00268{bottom:691.920000px;}
.y49_c00268{bottom:692.130000px;}
.y48_c00268{bottom:692.970000px;}
.y45_c00268{bottom:709.245000px;}
.y44_c00268{bottom:711.405000px;}
.y40_c00268{bottom:727.905000px;}
.y3f_c00268{bottom:728.745000px;}
.y43_c00268{bottom:729.825000px;}
.y41_c00268{bottom:730.905000px;}
.y42_c00268{bottom:731.970000px;}
.y3d_c00268{bottom:748.245000px;}
.y3c_c00268{bottom:750.405000px;}
.y3b_c00268{bottom:751.470000px;}
.y3e_c00268{bottom:751.905000px;}
.y3a_c00268{bottom:770.970000px;}
.y39_c00268{bottom:771.405000px;}
.y35_c00268{bottom:788.745000px;}
.y38_c00268{bottom:789.405000px;}
.y37_c00268{bottom:789.630000px;}
.y36_c00268{bottom:789.825000px;}
.y33_c00268{bottom:790.905000px;}
.y34_c00268{bottom:790.920000px;}
.y32_c00268{bottom:809.970000px;}
.y31_c00268{bottom:826.680000px;}
.y2f_c00268{bottom:827.745000px;}
.y2d_c00268{bottom:828.630000px;}
.y30_c00268{bottom:828.825000px;}
.y2c_c00268{bottom:829.905000px;}
.y2e_c00268{bottom:829.920000px;}
.y28_c00268{bottom:847.245000px;}
.y2a_c00268{bottom:848.325000px;}
.y2b_c00268{bottom:848.550000px;}
.y29_c00268{bottom:849.420000px;}
.y23_c00268{bottom:866.745000px;}
.y26_c00268{bottom:867.180000px;}
.y24_c00268{bottom:868.470000px;}
.y25_c00268{bottom:868.905000px;}
.y27_c00268{bottom:870.405000px;}
.y1d_c00268{bottom:886.245000px;}
.y22_c00268{bottom:887.745000px;}
.y1f_c00268{bottom:888.405000px;}
.y20_c00268{bottom:889.470000px;}
.y21_c00268{bottom:889.905000px;}
.y1e_c00268{bottom:889.920000px;}
.y18_c00268{bottom:910.905000px;}
.y1a_c00268{bottom:911.325000px;}
.y1c_c00268{bottom:911.550000px;}
.y19_c00268{bottom:911.970000px;}
.y1b_c00268{bottom:912.630000px;}
.y17_c00268{bottom:929.325000px;}
.y16_c00268{bottom:931.050000px;}
.y15_c00268{bottom:932.550000px;}
.y13_c00268{bottom:953.745000px;}
.y14_c00268{bottom:954.825000px;}
.y12_c00268{bottom:985.905000px;}
.y11_c00268{bottom:986.970000px;}
.yf_c00268{bottom:1022.970000px;}
.y10_c00268{bottom:1023.405000px;}
.ye_c00268{bottom:1024.245000px;}
.yc_c00268{bottom:1025.130000px;}
.yd_c00268{bottom:1026.405000px;}
.y8_c00268{bottom:1042.905000px;}
.ya_c00268{bottom:1044.630000px;}
.y9_c00268{bottom:1045.905000px;}
.yb_c00268{bottom:1046.130000px;}
.y6_c00268{bottom:1062.405000px;}
.y5_c00268{bottom:1063.245000px;}
.y4_c00268{bottom:1065.405000px;}
.y7_c00268{bottom:1066.905000px;}
.y2_c00268{bottom:1102.905000px;}
.y1_c00268{bottom:1104.630000px;}
.h7_c00268{height:4.206533px;}
.h1_c00268{height:23.025234px;}
.h6_c00268{height:25.091602px;}
.h4_c00268{height:31.364502px;}
.h2_c00268{height:35.571035px;}
.h5_c00268{height:39.777568px;}
.h3_c00268{height:43.910303px;}
.h9_c00268{height:47.571035px;}
.h8_c00268{height:48.116836px;}
.h0_c00268{height:1335.000000px;}
.w0_c00268{width:880.500000px;}
.x0_c00268{left:0.000000px;}
.x8c_c00268{left:151.080000px;}
.x55_c00268{left:153.000000px;}
.x40_c00268{left:154.275000px;}
.x2e_c00268{left:166.500000px;}
.x36_c00268{left:168.420000px;}
.x47_c00268{left:169.500000px;}
.xbe_c00268{left:171.000000px;}
.x5f_c00268{left:174.000000px;}
.x80_c00268{left:183.000000px;}
.x4_c00268{left:184.920000px;}
.x41_c00268{left:187.500000px;}
.x74_c00268{left:191.580000px;}
.xbf_c00268{left:196.080000px;}
.xd2_c00268{left:198.000000px;}
.x8d_c00268{left:201.000000px;}
.xb8_c00268{left:202.500000px;}
.xc7_c00268{left:204.000000px;}
.x42_c00268{left:206.145000px;}
.x37_c00268{left:208.920000px;}
.xad_c00268{left:210.000000px;}
.x75_c00268{left:211.920000px;}
.xdf_c00268{left:214.500000px;}
.x6a_c00268{left:217.500000px;}
.x97_c00268{left:220.500000px;}
.x5_c00268{left:222.000000px;}
.x1f_c00268{left:223.920000px;}
.xa6_c00268{left:225.000000px;}
.xee_c00268{left:226.920000px;}
.xe6_c00268{left:229.500000px;}
.xd5_c00268{left:232.500000px;}
.xae_c00268{left:235.920000px;}
.x76_c00268{left:237.000000px;}
.x6_c00268{left:238.500000px;}
.x60_c00268{left:241.500000px;}
.x26_c00268{left:242.580000px;}
.x8e_c00268{left:244.500000px;}
.xcc_c00268{left:246.645000px;}
.xb9_c00268{left:249.000000px;}
.x4b_c00268{left:250.500000px;}
.x6b_c00268{left:252.000000px;}
.xe8_c00268{left:253.500000px;}
.x11_c00268{left:254.580000px;}
.x48_c00268{left:259.500000px;}
.x2f_c00268{left:261.420000px;}
.xe0_c00268{left:262.500000px;}
.x8f_c00268{left:265.920000px;}
.x38_c00268{left:267.000000px;}
.xd6_c00268{left:268.500000px;}
.x6c_c00268{left:271.080000px;}
.x77_c00268{left:274.080000px;}
.x65_c00268{left:276.420000px;}
.xdc_c00268{left:277.920000px;}
.x49_c00268{left:280.500000px;}
.x56_c00268{left:282.000000px;}
.x12_c00268{left:283.500000px;}
.x39_c00268{left:288.000000px;}
.xe9_c00268{left:291.420000px;}
.xef_c00268{left:292.500000px;}
.xa7_c00268{left:294.000000px;}
.xd7_c00268{left:295.920000px;}
.x43_c00268{left:298.080000px;}
.x4c_c00268{left:300.000000px;}
.xf7_c00268{left:301.500000px;}
.xcd_c00268{left:302.580000px;}
.x78_c00268{left:304.500000px;}
.xba_c00268{left:307.500000px;}
.xaf_c00268{left:311.580000px;}
.x57_c00268{left:315.000000px;}
.x13_c00268{left:316.500000px;}
.xdd_c00268{left:318.000000px;}
.x30_c00268{left:320.580000px;}
.x4d_c00268{left:322.080000px;}
.x44_c00268{left:323.580000px;}
.x24_c00268{left:325.080000px;}
.x98_c00268{left:328.500000px;}
.x81_c00268{left:330.000000px;}
.x7_c00268{left:331.080000px;}
.xea_c00268{left:333.000000px;}
.x90_c00268{left:334.500000px;}
.xc0_c00268{left:336.000000px;}
.xe1_c00268{left:337.500000px;}
.x79_c00268{left:340.080000px;}
.x99_c00268{left:341.580000px;}
.xa8_c00268{left:343.500000px;}
.x4a_c00268{left:344.775000px;}
.x61_c00268{left:348.000000px;}
.x4e_c00268{left:349.500000px;}
.x14_c00268{left:351.000000px;}
.x91_c00268{left:352.500000px;}
.x3a_c00268{left:355.500000px;}
.x29_c00268{left:361.500000px;}
.x6d_c00268{left:364.500000px;}
.x27_c00268{left:369.420000px;}
.xc8_c00268{left:370.500000px;}
.xeb_c00268{left:372.000000px;}
.x3b_c00268{left:373.500000px;}
.xf0_c00268{left:376.500000px;}
.xe2_c00268{left:378.000000px;}
.xc1_c00268{left:379.080000px;}
.x45_c00268{left:381.000000px;}
.x15_c00268{left:382.500000px;}
.x25_c00268{left:385.500000px;}
.x2a_c00268{left:388.920000px;}
.xed_c00268{left:390.000000px;}
.x8_c00268{left:391.920000px;}
.x4f_c00268{left:393.420000px;}
.x92_c00268{left:394.500000px;}
.xb0_c00268{left:396.000000px;}
.x6e_c00268{left:397.500000px;}
.xbb_c00268{left:402.000000px;}
.x1_c00268{left:404.580000px;}
.x2b_c00268{left:407.580000px;}
.xd8_c00268{left:409.500000px;}
.xf8_c00268{left:411.000000px;}
.x62_c00268{left:415.080000px;}
.x31_c00268{left:420.000000px;}
.x86_c00268{left:422.775000px;}
.xce_c00268{left:425.580000px;}
.x66_c00268{left:427.920000px;}
.xd9_c00268{left:429.000000px;}
.xc2_c00268{left:430.080000px;}
.xc9_c00268{left:432.000000px;}
.x3c_c00268{left:435.000000px;}
.x5b_c00268{left:436.500000px;}
.x9e_c00268{left:438.000000px;}
.x9_c00268{left:440.580000px;}
.x6f_c00268{left:442.500000px;}
.xb1_c00268{left:444.000000px;}
.x87_c00268{left:445.500000px;}
.xca_c00268{left:448.500000px;}
.x7a_c00268{left:455.580000px;}
.x16_c00268{left:457.920000px;}
.xa9_c00268{left:459.000000px;}
.xa_c00268{left:460.920000px;}
.x9a_c00268{left:462.000000px;}
.x9f_c00268{left:463.500000px;}
.x2c_c00268{left:465.000000px;}
.x50_c00268{left:467.580000px;}
.xf9_c00268{left:469.500000px;}
.x82_c00268{left:471.420000px;}
.x93_c00268{left:472.500000px;}
.x7b_c00268{left:474.420000px;}
.x32_c00268{left:475.500000px;}
.xc3_c00268{left:477.000000px;}
.x46_c00268{left:478.080000px;}
.x2d_c00268{left:484.080000px;}
.xd3_c00268{left:487.920000px;}
.xb_c00268{left:489.000000px;}
.xb2_c00268{left:490.500000px;}
.x9b_c00268{left:493.500000px;}
.x51_c00268{left:495.000000px;}
.x17_c00268{left:498.000000px;}
.xc4_c00268{left:499.500000px;}
.x7c_c00268{left:501.420000px;}
.x88_c00268{left:502.500000px;}
.x9c_c00268{left:505.080000px;}
.xa0_c00268{left:507.000000px;}
.x70_c00268{left:510.000000px;}
.x83_c00268{left:511.920000px;}
.xf3_c00268{left:513.000000px;}
.xe3_c00268{left:514.500000px;}
.x5c_c00268{left:515.580000px;}
.x18_c00268{left:520.080000px;}
.xa1_c00268{left:523.500000px;}
.xd4_c00268{left:525.000000px;}
.x94_c00268{left:526.080000px;}
.x3d_c00268{left:528.645000px;}
.xda_c00268{left:532.080000px;}
.xc_c00268{left:534.420000px;}
.xaa_c00268{left:537.000000px;}
.x52_c00268{left:540.420000px;}
.x20_c00268{left:541.500000px;}
.x67_c00268{left:542.580000px;}
.xb3_c00268{left:544.500000px;}
.x5d_c00268{left:546.000000px;}
.x58_c00268{left:548.580000px;}
.x71_c00268{left:550.500000px;}
.xcf_c00268{left:552.000000px;}
.xf1_c00268{left:553.500000px;}
.x19_c00268{left:555.000000px;}
.x33_c00268{left:561.855000px;}
.x63_c00268{left:564.000000px;}
.xc5_c00268{left:565.500000px;}
.xfa_c00268{left:567.000000px;}
.x7d_c00268{left:568.080000px;}
.xa2_c00268{left:570.000000px;}
.xf4_c00268{left:571.080000px;}
.xf2_c00268{left:573.420000px;}
.xb4_c00268{left:575.580000px;}
.xbc_c00268{left:577.920000px;}
.xc6_c00268{left:579.000000px;}
.x34_c00268{left:583.920000px;}
.x89_c00268{left:585.420000px;}
.x1a_c00268{left:586.500000px;}
.x68_c00268{left:588.000000px;}
.xe4_c00268{left:592.500000px;}
.xa3_c00268{left:595.080000px;}
.x35_c00268{left:598.920000px;}
.x1b_c00268{left:601.080000px;}
.xb5_c00268{left:604.500000px;}
.x3e_c00268{left:606.000000px;}
.xd_c00268{left:609.000000px;}
.x28_c00268{left:610.275000px;}
.x21_c00268{left:612.000000px;}
.x84_c00268{left:613.080000px;}
.xde_c00268{left:615.420000px;}
.x1c_c00268{left:618.000000px;}
.xb6_c00268{left:619.920000px;}
.x53_c00268{left:622.920000px;}
.x8a_c00268{left:624.000000px;}
.xe_c00268{left:625.500000px;}
.x3f_c00268{left:627.000000px;}
.x72_c00268{left:629.580000px;}
.xcb_c00268{left:631.080000px;}
.x85_c00268{left:634.500000px;}
.xe7_c00268{left:636.000000px;}
.xe5_c00268{left:637.920000px;}
.xab_c00268{left:639.420000px;}
.x64_c00268{left:640.500000px;}
.xa4_c00268{left:643.080000px;}
.xf_c00268{left:644.580000px;}
.x1d_c00268{left:649.920000px;}
.xdb_c00268{left:652.080000px;}
.xb7_c00268{left:654.000000px;}
.x69_c00268{left:655.080000px;}
.xd0_c00268{left:657.420000px;}
.x10_c00268{left:660.000000px;}
.x5e_c00268{left:663.000000px;}
.xbd_c00268{left:664.500000px;}
.x59_c00268{left:666.000000px;}
.xec_c00268{left:667.080000px;}
.x73_c00268{left:678.000000px;}
.x95_c00268{left:681.000000px;}
.xf5_c00268{left:682.920000px;}
.xd1_c00268{left:684.000000px;}
.xac_c00268{left:685.500000px;}
.x22_c00268{left:686.580000px;}
.xa5_c00268{left:688.500000px;}
.x96_c00268{left:692.580000px;}
.x8b_c00268{left:699.000000px;}
.x7e_c00268{left:702.000000px;}
.x2_c00268{left:704.580000px;}
.x23_c00268{left:706.080000px;}
.x1e_c00268{left:708.000000px;}
.xf6_c00268{left:709.500000px;}
.x54_c00268{left:710.580000px;}
.x9d_c00268{left:714.000000px;}
.x5a_c00268{left:715.500000px;}
.x7f_c00268{left:718.500000px;}
.x3_c00268{left:721.920000px;}
@media print{
.v0_c00268{vertical-align:0.000000pt;}
.v1_c00268{vertical-align:10.666667pt;}
.ls0_c00268{letter-spacing:0.000000pt;}
.ws2_c00268{word-spacing:-6.077547pt;}
.ws0_c00268{word-spacing:-3.665477pt;}
.ws3_c00268{word-spacing:0.000000pt;}
.ws1_c00268{word-spacing:1.912577pt;}
.fs6_c00268{font-size:3.040000pt;}
.fs0_c00268{font-size:16.640000pt;}
.fs5_c00268{font-size:18.133333pt;}
.fs3_c00268{font-size:22.666667pt;}
.fs1_c00268{font-size:25.706667pt;}
.fs4_c00268{font-size:28.746667pt;}
.fs2_c00268{font-size:31.733333pt;}
.fs7_c00268{font-size:34.773333pt;}
.y0_c00268{bottom:0.000000pt;}
.y3_c00268{bottom:204.560000pt;}
.yb2_c00268{bottom:226.440000pt;}
.yb4_c00268{bottom:226.640000pt;}
.yb3_c00268{bottom:227.400000pt;}
.yb1_c00268{bottom:228.360000pt;}
.yac_c00268{bottom:243.773333pt;}
.yae_c00268{bottom:244.733333pt;}
.yaf_c00268{bottom:245.106667pt;}
.yb0_c00268{bottom:245.306667pt;}
.yad_c00268{bottom:245.693333pt;}
.yab_c00268{bottom:261.106667pt;}
.ya8_c00268{bottom:262.440000pt;}
.ya9_c00268{bottom:263.226667pt;}
.yaa_c00268{bottom:264.360000pt;}
.ya7_c00268{bottom:279.773333pt;}
.ya6_c00268{bottom:281.693333pt;}
.ya5_c00268{bottom:296.360000pt;}
.ya2_c00268{bottom:297.106667pt;}
.ya3_c00268{bottom:299.026667pt;}
.ya4_c00268{bottom:299.226667pt;}
.y9f_c00268{bottom:316.360000pt;}
.ya0_c00268{bottom:316.560000pt;}
.ya1_c00268{bottom:317.306667pt;}
.y9b_c00268{bottom:332.733333pt;}
.y9d_c00268{bottom:333.106667pt;}
.y99_c00268{bottom:333.693333pt;}
.y9a_c00268{bottom:333.893333pt;}
.y9e_c00268{bottom:334.640000pt;}
.y9c_c00268{bottom:335.026667pt;}
.y98_c00268{bottom:349.106667pt;}
.y97_c00268{bottom:350.440000pt;}
.y96_c00268{bottom:351.026667pt;}
.y94_c00268{bottom:351.226667pt;}
.y95_c00268{bottom:351.973333pt;}
.y93_c00268{bottom:365.693333pt;}
.y8c_c00268{bottom:366.440000pt;}
.y91_c00268{bottom:367.026667pt;}
.y8d_c00268{bottom:367.773333pt;}
.y92_c00268{bottom:368.360000pt;}
.y8e_c00268{bottom:368.560000pt;}
.y8b_c00268{bottom:369.693333pt;}
.y90_c00268{bottom:369.893333pt;}
.y8f_c00268{bottom:370.640000pt;}
.y8a_c00268{bottom:384.360000pt;}
.y89_c00268{bottom:385.106667pt;}
.y88_c00268{bottom:385.893333pt;}
.y87_c00268{bottom:387.026667pt;}
.y86_c00268{bottom:401.693333pt;}
.y85_c00268{bottom:402.440000pt;}
.y84_c00268{bottom:404.360000pt;}
.y81_c00268{bottom:419.773333pt;}
.y80_c00268{bottom:421.693333pt;}
.y7f_c00268{bottom:421.893333pt;}
.y83_c00268{bottom:422.066667pt;}
.y7e_c00268{bottom:422.640000pt;}
.y82_c00268{bottom:423.026667pt;}
.y7a_c00268{bottom:437.106667pt;}
.y7c_c00268{bottom:437.893333pt;}
.y7d_c00268{bottom:438.066667pt;}
.y79_c00268{bottom:439.026667pt;}
.y7b_c00268{bottom:439.226667pt;}
.y77_c00268{bottom:453.693333pt;}
.y78_c00268{bottom:454.440000pt;}
.y74_c00268{bottom:455.400000pt;}
.y76_c00268{bottom:455.773333pt;}
.y72_c00268{bottom:456.360000pt;}
.y75_c00268{bottom:456.560000pt;}
.y73_c00268{bottom:457.306667pt;}
.y6f_c00268{bottom:472.733333pt;}
.y6b_c00268{bottom:473.106667pt;}
.y71_c00268{bottom:473.693333pt;}
.y6e_c00268{bottom:473.893333pt;}
.y6d_c00268{bottom:474.066667pt;}
.y70_c00268{bottom:474.640000pt;}
.y6c_c00268{bottom:475.026667pt;}
.y65_c00268{bottom:490.440000pt;}
.y6a_c00268{bottom:491.026667pt;}
.y67_c00268{bottom:491.226667pt;}
.y68_c00268{bottom:491.400000pt;}
.y69_c00268{bottom:491.973333pt;}
.y66_c00268{bottom:492.360000pt;}
.y60_c00268{bottom:507.773333pt;}
.y64_c00268{bottom:508.360000pt;}
.y63_c00268{bottom:508.560000pt;}
.y62_c00268{bottom:508.733333pt;}
.y5f_c00268{bottom:509.693333pt;}
.y61_c00268{bottom:510.640000pt;}
.y5b_c00268{bottom:523.026667pt;}
.y5d_c00268{bottom:525.106667pt;}
.y5e_c00268{bottom:525.893333pt;}
.y5c_c00268{bottom:526.066667pt;}
.y5a_c00268{bottom:527.026667pt;}
.y57_c00268{bottom:542.440000pt;}
.y58_c00268{bottom:544.360000pt;}
.y59_c00268{bottom:544.560000pt;}
.y54_c00268{bottom:561.106667pt;}
.y56_c00268{bottom:561.693333pt;}
.y55_c00268{bottom:563.026667pt;}
.y50_c00268{bottom:577.106667pt;}
.y53_c00268{bottom:578.440000pt;}
.y51_c00268{bottom:579.026667pt;}
.y4f_c00268{bottom:579.973333pt;}
.y52_c00268{bottom:580.360000pt;}
.y4c_c00268{bottom:595.773333pt;}
.y4a_c00268{bottom:596.560000pt;}
.y4e_c00268{bottom:597.306667pt;}
.y4b_c00268{bottom:597.693333pt;}
.y4d_c00268{bottom:598.640000pt;}
.y46_c00268{bottom:615.026667pt;}
.y47_c00268{bottom:615.040000pt;}
.y49_c00268{bottom:615.226667pt;}
.y48_c00268{bottom:615.973333pt;}
.y45_c00268{bottom:630.440000pt;}
.y44_c00268{bottom:632.360000pt;}
.y40_c00268{bottom:647.026667pt;}
.y3f_c00268{bottom:647.773333pt;}
.y43_c00268{bottom:648.733333pt;}
.y41_c00268{bottom:649.693333pt;}
.y42_c00268{bottom:650.640000pt;}
.y3d_c00268{bottom:665.106667pt;}
.y3c_c00268{bottom:667.026667pt;}
.y3b_c00268{bottom:667.973333pt;}
.y3e_c00268{bottom:668.360000pt;}
.y3a_c00268{bottom:685.306667pt;}
.y39_c00268{bottom:685.693333pt;}
.y35_c00268{bottom:701.106667pt;}
.y38_c00268{bottom:701.693333pt;}
.y37_c00268{bottom:701.893333pt;}
.y36_c00268{bottom:702.066667pt;}
.y33_c00268{bottom:703.026667pt;}
.y34_c00268{bottom:703.040000pt;}
.y32_c00268{bottom:719.973333pt;}
.y31_c00268{bottom:734.826667pt;}
.y2f_c00268{bottom:735.773333pt;}
.y2d_c00268{bottom:736.560000pt;}
.y30_c00268{bottom:736.733333pt;}
.y2c_c00268{bottom:737.693333pt;}
.y2e_c00268{bottom:737.706667pt;}
.y28_c00268{bottom:753.106667pt;}
.y2a_c00268{bottom:754.066667pt;}
.y2b_c00268{bottom:754.266667pt;}
.y29_c00268{bottom:755.040000pt;}
.y23_c00268{bottom:770.440000pt;}
.y26_c00268{bottom:770.826667pt;}
.y24_c00268{bottom:771.973333pt;}
.y25_c00268{bottom:772.360000pt;}
.y27_c00268{bottom:773.693333pt;}
.y1d_c00268{bottom:787.773333pt;}
.y22_c00268{bottom:789.106667pt;}
.y1f_c00268{bottom:789.693333pt;}
.y20_c00268{bottom:790.640000pt;}
.y21_c00268{bottom:791.026667pt;}
.y1e_c00268{bottom:791.040000pt;}
.y18_c00268{bottom:809.693333pt;}
.y1a_c00268{bottom:810.066667pt;}
.y1c_c00268{bottom:810.266667pt;}
.y19_c00268{bottom:810.640000pt;}
.y1b_c00268{bottom:811.226667pt;}
.y17_c00268{bottom:826.066667pt;}
.y16_c00268{bottom:827.600000pt;}
.y15_c00268{bottom:828.933333pt;}
.y13_c00268{bottom:847.773333pt;}
.y14_c00268{bottom:848.733333pt;}
.y12_c00268{bottom:876.360000pt;}
.y11_c00268{bottom:877.306667pt;}
.yf_c00268{bottom:909.306667pt;}
.y10_c00268{bottom:909.693333pt;}
.ye_c00268{bottom:910.440000pt;}
.yc_c00268{bottom:911.226667pt;}
.yd_c00268{bottom:912.360000pt;}
.y8_c00268{bottom:927.026667pt;}
.ya_c00268{bottom:928.560000pt;}
.y9_c00268{bottom:929.693333pt;}
.yb_c00268{bottom:929.893333pt;}
.y6_c00268{bottom:944.360000pt;}
.y5_c00268{bottom:945.106667pt;}
.y4_c00268{bottom:947.026667pt;}
.y7_c00268{bottom:948.360000pt;}
.y2_c00268{bottom:980.360000pt;}
.y1_c00268{bottom:981.893333pt;}
.h7_c00268{height:3.739141pt;}
.h1_c00268{height:20.466875pt;}
.h6_c00268{height:22.303646pt;}
.h4_c00268{height:27.879557pt;}
.h2_c00268{height:31.618698pt;}
.h5_c00268{height:35.357839pt;}
.h3_c00268{height:39.031380pt;}
.h9_c00268{height:42.285365pt;}
.h8_c00268{height:42.770521pt;}
.h0_c00268{height:1186.666667pt;}
.w0_c00268{width:782.666667pt;}
.x0_c00268{left:0.000000pt;}
.x8c_c00268{left:134.293333pt;}
.x55_c00268{left:136.000000pt;}
.x40_c00268{left:137.133333pt;}
.x2e_c00268{left:148.000000pt;}
.x36_c00268{left:149.706667pt;}
.x47_c00268{left:150.666667pt;}
.xbe_c00268{left:152.000000pt;}
.x5f_c00268{left:154.666667pt;}
.x80_c00268{left:162.666667pt;}
.x4_c00268{left:164.373333pt;}
.x41_c00268{left:166.666667pt;}
.x74_c00268{left:170.293333pt;}
.xbf_c00268{left:174.293333pt;}
.xd2_c00268{left:176.000000pt;}
.x8d_c00268{left:178.666667pt;}
.xb8_c00268{left:180.000000pt;}
.xc7_c00268{left:181.333333pt;}
.x42_c00268{left:183.240000pt;}
.x37_c00268{left:185.706667pt;}
.xad_c00268{left:186.666667pt;}
.x75_c00268{left:188.373333pt;}
.xdf_c00268{left:190.666667pt;}
.x6a_c00268{left:193.333333pt;}
.x97_c00268{left:196.000000pt;}
.x5_c00268{left:197.333333pt;}
.x1f_c00268{left:199.040000pt;}
.xa6_c00268{left:200.000000pt;}
.xee_c00268{left:201.706667pt;}
.xe6_c00268{left:204.000000pt;}
.xd5_c00268{left:206.666667pt;}
.xae_c00268{left:209.706667pt;}
.x76_c00268{left:210.666667pt;}
.x6_c00268{left:212.000000pt;}
.x60_c00268{left:214.666667pt;}
.x26_c00268{left:215.626667pt;}
.x8e_c00268{left:217.333333pt;}
.xcc_c00268{left:219.240000pt;}
.xb9_c00268{left:221.333333pt;}
.x4b_c00268{left:222.666667pt;}
.x6b_c00268{left:224.000000pt;}
.xe8_c00268{left:225.333333pt;}
.x11_c00268{left:226.293333pt;}
.x48_c00268{left:230.666667pt;}
.x2f_c00268{left:232.373333pt;}
.xe0_c00268{left:233.333333pt;}
.x8f_c00268{left:236.373333pt;}
.x38_c00268{left:237.333333pt;}
.xd6_c00268{left:238.666667pt;}
.x6c_c00268{left:240.960000pt;}
.x77_c00268{left:243.626667pt;}
.x65_c00268{left:245.706667pt;}
.xdc_c00268{left:247.040000pt;}
.x49_c00268{left:249.333333pt;}
.x56_c00268{left:250.666667pt;}
.x12_c00268{left:252.000000pt;}
.x39_c00268{left:256.000000pt;}
.xe9_c00268{left:259.040000pt;}
.xef_c00268{left:260.000000pt;}
.xa7_c00268{left:261.333333pt;}
.xd7_c00268{left:263.040000pt;}
.x43_c00268{left:264.960000pt;}
.x4c_c00268{left:266.666667pt;}
.xf7_c00268{left:268.000000pt;}
.xcd_c00268{left:268.960000pt;}
.x78_c00268{left:270.666667pt;}
.xba_c00268{left:273.333333pt;}
.xaf_c00268{left:276.960000pt;}
.x57_c00268{left:280.000000pt;}
.x13_c00268{left:281.333333pt;}
.xdd_c00268{left:282.666667pt;}
.x30_c00268{left:284.960000pt;}
.x4d_c00268{left:286.293333pt;}
.x44_c00268{left:287.626667pt;}
.x24_c00268{left:288.960000pt;}
.x98_c00268{left:292.000000pt;}
.x81_c00268{left:293.333333pt;}
.x7_c00268{left:294.293333pt;}
.xea_c00268{left:296.000000pt;}
.x90_c00268{left:297.333333pt;}
.xc0_c00268{left:298.666667pt;}
.xe1_c00268{left:300.000000pt;}
.x79_c00268{left:302.293333pt;}
.x99_c00268{left:303.626667pt;}
.xa8_c00268{left:305.333333pt;}
.x4a_c00268{left:306.466667pt;}
.x61_c00268{left:309.333333pt;}
.x4e_c00268{left:310.666667pt;}
.x14_c00268{left:312.000000pt;}
.x91_c00268{left:313.333333pt;}
.x3a_c00268{left:316.000000pt;}
.x29_c00268{left:321.333333pt;}
.x6d_c00268{left:324.000000pt;}
.x27_c00268{left:328.373333pt;}
.xc8_c00268{left:329.333333pt;}
.xeb_c00268{left:330.666667pt;}
.x3b_c00268{left:332.000000pt;}
.xf0_c00268{left:334.666667pt;}
.xe2_c00268{left:336.000000pt;}
.xc1_c00268{left:336.960000pt;}
.x45_c00268{left:338.666667pt;}
.x15_c00268{left:340.000000pt;}
.x25_c00268{left:342.666667pt;}
.x2a_c00268{left:345.706667pt;}
.xed_c00268{left:346.666667pt;}
.x8_c00268{left:348.373333pt;}
.x4f_c00268{left:349.706667pt;}
.x92_c00268{left:350.666667pt;}
.xb0_c00268{left:352.000000pt;}
.x6e_c00268{left:353.333333pt;}
.xbb_c00268{left:357.333333pt;}
.x1_c00268{left:359.626667pt;}
.x2b_c00268{left:362.293333pt;}
.xd8_c00268{left:364.000000pt;}
.xf8_c00268{left:365.333333pt;}
.x62_c00268{left:368.960000pt;}
.x31_c00268{left:373.333333pt;}
.x86_c00268{left:375.800000pt;}
.xce_c00268{left:378.293333pt;}
.x66_c00268{left:380.373333pt;}
.xd9_c00268{left:381.333333pt;}
.xc2_c00268{left:382.293333pt;}
.xc9_c00268{left:384.000000pt;}
.x3c_c00268{left:386.666667pt;}
.x5b_c00268{left:388.000000pt;}
.x9e_c00268{left:389.333333pt;}
.x9_c00268{left:391.626667pt;}
.x6f_c00268{left:393.333333pt;}
.xb1_c00268{left:394.666667pt;}
.x87_c00268{left:396.000000pt;}
.xca_c00268{left:398.666667pt;}
.x7a_c00268{left:404.960000pt;}
.x16_c00268{left:407.040000pt;}
.xa9_c00268{left:408.000000pt;}
.xa_c00268{left:409.706667pt;}
.x9a_c00268{left:410.666667pt;}
.x9f_c00268{left:412.000000pt;}
.x2c_c00268{left:413.333333pt;}
.x50_c00268{left:415.626667pt;}
.xf9_c00268{left:417.333333pt;}
.x82_c00268{left:419.040000pt;}
.x93_c00268{left:420.000000pt;}
.x7b_c00268{left:421.706667pt;}
.x32_c00268{left:422.666667pt;}
.xc3_c00268{left:424.000000pt;}
.x46_c00268{left:424.960000pt;}
.x2d_c00268{left:430.293333pt;}
.xd3_c00268{left:433.706667pt;}
.xb_c00268{left:434.666667pt;}
.xb2_c00268{left:436.000000pt;}
.x9b_c00268{left:438.666667pt;}
.x51_c00268{left:440.000000pt;}
.x17_c00268{left:442.666667pt;}
.xc4_c00268{left:444.000000pt;}
.x7c_c00268{left:445.706667pt;}
.x88_c00268{left:446.666667pt;}
.x9c_c00268{left:448.960000pt;}
.xa0_c00268{left:450.666667pt;}
.x70_c00268{left:453.333333pt;}
.x83_c00268{left:455.040000pt;}
.xf3_c00268{left:456.000000pt;}
.xe3_c00268{left:457.333333pt;}
.x5c_c00268{left:458.293333pt;}
.x18_c00268{left:462.293333pt;}
.xa1_c00268{left:465.333333pt;}
.xd4_c00268{left:466.666667pt;}
.x94_c00268{left:467.626667pt;}
.x3d_c00268{left:469.906667pt;}
.xda_c00268{left:472.960000pt;}
.xc_c00268{left:475.040000pt;}
.xaa_c00268{left:477.333333pt;}
.x52_c00268{left:480.373333pt;}
.x20_c00268{left:481.333333pt;}
.x67_c00268{left:482.293333pt;}
.xb3_c00268{left:484.000000pt;}
.x5d_c00268{left:485.333333pt;}
.x58_c00268{left:487.626667pt;}
.x71_c00268{left:489.333333pt;}
.xcf_c00268{left:490.666667pt;}
.xf1_c00268{left:492.000000pt;}
.x19_c00268{left:493.333333pt;}
.x33_c00268{left:499.426667pt;}
.x63_c00268{left:501.333333pt;}
.xc5_c00268{left:502.666667pt;}
.xfa_c00268{left:504.000000pt;}
.x7d_c00268{left:504.960000pt;}
.xa2_c00268{left:506.666667pt;}
.xf4_c00268{left:507.626667pt;}
.xf2_c00268{left:509.706667pt;}
.xb4_c00268{left:511.626667pt;}
.xbc_c00268{left:513.706667pt;}
.xc6_c00268{left:514.666667pt;}
.x34_c00268{left:519.040000pt;}
.x89_c00268{left:520.373333pt;}
.x1a_c00268{left:521.333333pt;}
.x68_c00268{left:522.666667pt;}
.xe4_c00268{left:526.666667pt;}
.xa3_c00268{left:528.960000pt;}
.x35_c00268{left:532.373333pt;}
.x1b_c00268{left:534.293333pt;}
.xb5_c00268{left:537.333333pt;}
.x3e_c00268{left:538.666667pt;}
.xd_c00268{left:541.333333pt;}
.x28_c00268{left:542.466667pt;}
.x21_c00268{left:544.000000pt;}
.x84_c00268{left:544.960000pt;}
.xde_c00268{left:547.040000pt;}
.x1c_c00268{left:549.333333pt;}
.xb6_c00268{left:551.040000pt;}
.x53_c00268{left:553.706667pt;}
.x8a_c00268{left:554.666667pt;}
.xe_c00268{left:556.000000pt;}
.x3f_c00268{left:557.333333pt;}
.x72_c00268{left:559.626667pt;}
.xcb_c00268{left:560.960000pt;}
.x85_c00268{left:564.000000pt;}
.xe7_c00268{left:565.333333pt;}
.xe5_c00268{left:567.040000pt;}
.xab_c00268{left:568.373333pt;}
.x64_c00268{left:569.333333pt;}
.xa4_c00268{left:571.626667pt;}
.xf_c00268{left:572.960000pt;}
.x1d_c00268{left:577.706667pt;}
.xdb_c00268{left:579.626667pt;}
.xb7_c00268{left:581.333333pt;}
.x69_c00268{left:582.293333pt;}
.xd0_c00268{left:584.373333pt;}
.x10_c00268{left:586.666667pt;}
.x5e_c00268{left:589.333333pt;}
.xbd_c00268{left:590.666667pt;}
.x59_c00268{left:592.000000pt;}
.xec_c00268{left:592.960000pt;}
.x73_c00268{left:602.666667pt;}
.x95_c00268{left:605.333333pt;}
.xf5_c00268{left:607.040000pt;}
.xd1_c00268{left:608.000000pt;}
.xac_c00268{left:609.333333pt;}
.x22_c00268{left:610.293333pt;}
.xa5_c00268{left:612.000000pt;}
.x96_c00268{left:615.626667pt;}
.x8b_c00268{left:621.333333pt;}
.x7e_c00268{left:624.000000pt;}
.x2_c00268{left:626.293333pt;}
.x23_c00268{left:627.626667pt;}
.x1e_c00268{left:629.333333pt;}
.xf6_c00268{left:630.666667pt;}
.x54_c00268{left:631.626667pt;}
.x9d_c00268{left:634.666667pt;}
.x5a_c00268{left:636.000000pt;}
.x7f_c00268{left:638.666667pt;}
.x3_c00268{left:641.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_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_b894607e99d2df6e6fec4961.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m84_c00269{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m73_c00269{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m113_c00269{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.m5f_c00269{transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);}
.mab_c00269{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.ma8_c00269{transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);}
.m11f_c00269{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m49_c00269{transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);}
.mee_c00269{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m105_c00269{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m2d_c00269{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m5c_c00269{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.mb8_c00269{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.md6_c00269{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m108_c00269{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m2c_c00269{transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);}
.m86_c00269{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.md2_c00269{transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);}
.m85_c00269{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.mbb_c00269{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m31_c00269{transform:matrix(0.383117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383117,0.000000,0.000000,0.250000,0,0);}
.mc2_c00269{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.mf8_c00269{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.mc7_c00269{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mb7_c00269{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m78_c00269{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mcb_c00269{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m62_c00269{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m10f_c00269{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m66_c00269{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.mdc_c00269{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.mc1_c00269{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.mce_c00269{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.ma5_c00269{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m74_c00269{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m8c_c00269{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m10e_c00269{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m98_c00269{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m10b_c00269{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m52_c00269{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.m3_c00269{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.mef_c00269{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m82_c00269{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m117_c00269{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m11e_c00269{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m7_c00269{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.mc5_c00269{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m68_c00269{transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);}
.m6_c00269{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m69_c00269{transform:matrix(0.414938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414938,0.000000,0.000000,0.250000,0,0);}
.m79_c00269{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m6a_c00269{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.mca_c00269{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.ma7_c00269{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m100_c00269{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.m39_c00269{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.me3_c00269{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mc0_c00269{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mba_c00269{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mfc_c00269{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m5e_c00269{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m120_c00269{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.maa_c00269{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m47_c00269{transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);}
.m11_c00269{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m18_c00269{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m8f_c00269{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.me9_c00269{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m58_c00269{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m8b_c00269{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.m15_c00269{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m75_c00269{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m5b_c00269{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.ma_c00269{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mbc_c00269{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m114_c00269{transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);}
.mad_c00269{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mdb_c00269{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m9d_c00269{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.m11c_c00269{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m64_c00269{transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);}
.m4e_c00269{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m10d_c00269{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m1d_c00269{transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);}
.m104_c00269{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.mc3_c00269{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m6e_c00269{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.md8_c00269{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m76_c00269{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.m121_c00269{transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);}
.mff_c00269{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m87_c00269{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.me6_c00269{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.md0_c00269{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.ma4_c00269{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.me2_c00269{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.mb6_c00269{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m92_c00269{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m2b_c00269{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mdd_c00269{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m109_c00269{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.md1_c00269{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.ma2_c00269{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m3d_c00269{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m11d_c00269{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m2a_c00269{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m45_c00269{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m41_c00269{transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);}
.m1e_c00269{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m81_c00269{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m107_c00269{transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);}
.m93_c00269{transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);}
.ma6_c00269{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m40_c00269{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.mcd_c00269{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m90_c00269{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m60_c00269{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m63_c00269{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mc_c00269{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m118_c00269{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m11b_c00269{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.me0_c00269{transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);}
.m9b_c00269{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m28_c00269{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m112_c00269{transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);}
.mf6_c00269{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.md5_c00269{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.mf5_c00269{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.mdf_c00269{transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);}
.m2e_c00269{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_c00269{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.me4_c00269{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m6f_c00269{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m44_c00269{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.mb3_c00269{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m3c_c00269{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.mde_c00269{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.meb_c00269{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m106_c00269{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.mf_c00269{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.me1_c00269{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m8d_c00269{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mbd_c00269{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m70_c00269{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m115_c00269{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m89_c00269{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mfd_c00269{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m97_c00269{transform:matrix(0.521800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521800,0.000000,0.000000,0.250000,0,0);}
.m103_c00269{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mbf_c00269{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m3f_c00269{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.mae_c00269{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mfe_c00269{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m3e_c00269{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);}
.m94_c00269{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mf1_c00269{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mec_c00269{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m77_c00269{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mb2_c00269{transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);}
.m29_c00269{transform:matrix(0.532353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532353,0.000000,0.000000,0.250000,0,0);}
.me_c00269{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m7f_c00269{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m55_c00269{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m16_c00269{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m38_c00269{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m6c_c00269{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.ma0_c00269{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m27_c00269{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m12_c00269{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m26_c00269{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m9a_c00269{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.mb_c00269{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m4d_c00269{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m10c_c00269{transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);}
.m7b_c00269{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m51_c00269{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m14_c00269{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m101_c00269{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m36_c00269{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.mb0_c00269{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m8a_c00269{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mb5_c00269{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mc8_c00269{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.md9_c00269{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m71_c00269{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m9c_c00269{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m119_c00269{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m1_c00269{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m9e_c00269{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m59_c00269{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m7e_c00269{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m102_c00269{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mc6_c00269{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m43_c00269{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m13_c00269{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m3a_c00269{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.mda_c00269{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.mb9_c00269{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);}
.m91_c00269{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mb4_c00269{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mea_c00269{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m53_c00269{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.mac_c00269{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.mcf_c00269{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m25_c00269{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.maf_c00269{transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);}
.m5_c00269{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mbe_c00269{transform:matrix(0.572356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572356,0.000000,0.000000,0.250000,0,0);}
.ma3_c00269{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m5d_c00269{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.m88_c00269{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m7d_c00269{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m110_c00269{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.me8_c00269{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.mf9_c00269{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.ma1_c00269{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mcc_c00269{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mf4_c00269{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mf2_c00269{transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);}
.m1a_c00269{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m20_c00269{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m30_c00269{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.mb1_c00269{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m4f_c00269{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m80_c00269{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m9_c00269{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m56_c00269{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m2_c00269{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.mf0_c00269{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m99_c00269{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);}
.m83_c00269{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m6d_c00269{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m8e_c00269{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m35_c00269{transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);}
.m9f_c00269{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.md_c00269{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m19_c00269{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m24_c00269{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m5a_c00269{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m48_c00269{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.ma9_c00269{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);}
.m65_c00269{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.m10a_c00269{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.m0_c00269{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.md3_c00269{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m61_c00269{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m3b_c00269{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.md4_c00269{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.mfa_c00269{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m34_c00269{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);}
.m4a_c00269{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.mc4_c00269{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m111_c00269{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m42_c00269{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m4b_c00269{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.mf3_c00269{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m2f_c00269{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m22_c00269{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.m23_c00269{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m116_c00269{transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);}
.m46_c00269{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.me7_c00269{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m1f_c00269{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m54_c00269{transform:matrix(0.697794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697794,0.000000,0.000000,0.250000,0,0);}
.m96_c00269{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m1c_c00269{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m10_c00269{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m50_c00269{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);}
.m57_c00269{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m95_c00269{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m1b_c00269{transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);}
.mf7_c00269{transform:matrix(0.721176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721176,0.000000,0.000000,0.250000,0,0);}
.med_c00269{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m8_c00269{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.me5_c00269{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m72_c00269{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m4_c00269{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mfb_c00269{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m11a_c00269{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.mc9_c00269{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.m7a_c00269{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m7c_c00269{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m32_c00269{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m67_c00269{transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);}
.m33_c00269{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m17_c00269{transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);}
.m4c_c00269{transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);}
.m37_c00269{transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);}
.m6b_c00269{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.md7_c00269{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00269{vertical-align:0.000000px;}
.v1_c00269{vertical-align:1.680000px;}
.ls1_c00269{letter-spacing:0.000000px;}
.ls0_c00269{letter-spacing:12.657600px;}
.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:-8.144007px;}
.ws2_c00269{word-spacing:-4.824554px;}
.ws1_c00269{word-spacing:-3.576406px;}
.ws3_c00269{word-spacing:0.000000px;}
.fc0_c00269{color:transparent;}
.fs7_c00269{font-size:3.420000px;}
.fs6_c00269{font-size:13.620000px;}
.fs4_c00269{font-size:18.720000px;}
.fs0_c00269{font-size:20.400000px;}
.fs1_c00269{font-size:25.500000px;}
.fs2_c00269{font-size:28.920000px;}
.fs5_c00269{font-size:32.340000px;}
.fs3_c00269{font-size:35.700000px;}
.fs8_c00269{font-size:39.120000px;}
.y0_c00269{bottom:0.000000px;}
.ye1_c00269{bottom:250.680000px;}
.ydf_c00269{bottom:251.745000px;}
.ye0_c00269{bottom:253.470000px;}
.ye3_c00269{bottom:253.905000px;}
.ye2_c00269{bottom:254.970000px;}
.ydb_c00269{bottom:271.245000px;}
.yde_c00269{bottom:272.325000px;}
.yda_c00269{bottom:273.405000px;}
.ydc_c00269{bottom:273.630000px;}
.ydd_c00269{bottom:274.470000px;}
.yd8_c00269{bottom:290.745000px;}
.yd5_c00269{bottom:291.630000px;}
.yd6_c00269{bottom:291.825000px;}
.yd4_c00269{bottom:292.905000px;}
.yd7_c00269{bottom:293.970000px;}
.yd9_c00269{bottom:294.405000px;}
.ycd_c00269{bottom:310.245000px;}
.yd0_c00269{bottom:311.325000px;}
.yd3_c00269{bottom:311.745000px;}
.ycc_c00269{bottom:312.405000px;}
.yd2_c00269{bottom:312.630000px;}
.yd1_c00269{bottom:312.825000px;}
.ycf_c00269{bottom:313.470000px;}
.yce_c00269{bottom:313.905000px;}
.yc9_c00269{bottom:331.245000px;}
.yca_c00269{bottom:331.470000px;}
.yc8_c00269{bottom:332.970000px;}
.yc7_c00269{bottom:333.405000px;}
.ycb_c00269{bottom:333.630000px;}
.yc4_c00269{bottom:350.745000px;}
.yc1_c00269{bottom:351.630000px;}
.yc6_c00269{bottom:351.825000px;}
.yc2_c00269{bottom:352.470000px;}
.yc3_c00269{bottom:352.905000px;}
.yc5_c00269{bottom:353.130000px;}
.ybc_c00269{bottom:370.245000px;}
.ybf_c00269{bottom:371.325000px;}
.ybd_c00269{bottom:372.405000px;}
.yc0_c00269{bottom:372.630000px;}
.ybe_c00269{bottom:373.470000px;}
.yb8_c00269{bottom:388.905000px;}
.yb7_c00269{bottom:389.745000px;}
.yb9_c00269{bottom:391.245000px;}
.yb6_c00269{bottom:391.905000px;}
.yba_c00269{bottom:392.325000px;}
.ybb_c00269{bottom:393.405000px;}
.yb4_c00269{bottom:410.745000px;}
.yb1_c00269{bottom:411.405000px;}
.yb5_c00269{bottom:411.630000px;}
.yb3_c00269{bottom:412.470000px;}
.yb2_c00269{bottom:412.905000px;}
.yae_c00269{bottom:429.405000px;}
.yab_c00269{bottom:429.825000px;}
.ya8_c00269{bottom:430.050000px;}
.yb0_c00269{bottom:430.245000px;}
.ya9_c00269{bottom:430.905000px;}
.ya7_c00269{bottom:431.130000px;}
.yac_c00269{bottom:431.970000px;}
.yaa_c00269{bottom:432.405000px;}
.yad_c00269{bottom:432.630000px;}
.yaf_c00269{bottom:433.470000px;}
.ya3_c00269{bottom:449.745000px;}
.ya4_c00269{bottom:450.825000px;}
.ya6_c00269{bottom:451.905000px;}
.ya5_c00269{bottom:452.130000px;}
.ya2_c00269{bottom:469.245000px;}
.ya1_c00269{bottom:470.325000px;}
.y9f_c00269{bottom:471.405000px;}
.ya0_c00269{bottom:471.630000px;}
.y9a_c00269{bottom:487.905000px;}
.y9e_c00269{bottom:488.745000px;}
.y9c_c00269{bottom:489.825000px;}
.y99_c00269{bottom:490.470000px;}
.y98_c00269{bottom:490.905000px;}
.y9b_c00269{bottom:491.130000px;}
.y9d_c00269{bottom:492.405000px;}
.y95_c00269{bottom:508.245000px;}
.y97_c00269{bottom:509.325000px;}
.y96_c00269{bottom:509.745000px;}
.y93_c00269{bottom:510.405000px;}
.y94_c00269{bottom:511.920000px;}
.y92_c00269{bottom:529.245000px;}
.y91_c00269{bottom:529.905000px;}
.y8f_c00269{bottom:547.470000px;}
.y8d_c00269{bottom:548.325000px;}
.y8c_c00269{bottom:548.745000px;}
.y89_c00269{bottom:549.405000px;}
.y90_c00269{bottom:549.630000px;}
.y8b_c00269{bottom:549.825000px;}
.y8a_c00269{bottom:550.470000px;}
.y8e_c00269{bottom:550.905000px;}
.y84_c00269{bottom:565.905000px;}
.y86_c00269{bottom:568.245000px;}
.y85_c00269{bottom:569.130000px;}
.y88_c00269{bottom:569.325000px;}
.y87_c00269{bottom:570.405000px;}
.y80_c00269{bottom:586.905000px;}
.y7f_c00269{bottom:587.745000px;}
.y83_c00269{bottom:588.630000px;}
.y82_c00269{bottom:589.470000px;}
.y81_c00269{bottom:589.905000px;}
.y7c_c00269{bottom:606.405000px;}
.y79_c00269{bottom:607.245000px;}
.y7d_c00269{bottom:607.470000px;}
.y7e_c00269{bottom:607.905000px;}
.y7a_c00269{bottom:608.325000px;}
.y7b_c00269{bottom:609.405000px;}
.y76_c00269{bottom:626.745000px;}
.y78_c00269{bottom:626.970000px;}
.y74_c00269{bottom:628.050000px;}
.y77_c00269{bottom:628.245000px;}
.y75_c00269{bottom:628.905000px;}
.y73_c00269{bottom:647.745000px;}
.y70_c00269{bottom:648.405000px;}
.y71_c00269{bottom:649.470000px;}
.y72_c00269{bottom:649.905000px;}
.y6d_c00269{bottom:664.905000px;}
.y6b_c00269{bottom:665.745000px;}
.y6e_c00269{bottom:667.905000px;}
.y6c_c00269{bottom:668.970000px;}
.y6f_c00269{bottom:669.405000px;}
.y69_c00269{bottom:685.680000px;}
.y6a_c00269{bottom:686.745000px;}
.y68_c00269{bottom:688.905000px;}
.y66_c00269{bottom:706.245000px;}
.y65_c00269{bottom:707.325000px;}
.y64_c00269{bottom:708.405000px;}
.y67_c00269{bottom:708.630000px;}
.y5f_c00269{bottom:725.745000px;}
.y60_c00269{bottom:726.630000px;}
.y63_c00269{bottom:726.825000px;}
.y61_c00269{bottom:727.905000px;}
.y62_c00269{bottom:728.970000px;}
.y5c_c00269{bottom:745.245000px;}
.y5e_c00269{bottom:746.325000px;}
.y5b_c00269{bottom:747.405000px;}
.y5d_c00269{bottom:747.630000px;}
.y55_c00269{bottom:764.745000px;}
.y59_c00269{bottom:765.825000px;}
.y58_c00269{bottom:766.245000px;}
.y56_c00269{bottom:766.905000px;}
.y5a_c00269{bottom:767.970000px;}
.y57_c00269{bottom:768.405000px;}
.y54_c00269{bottom:785.745000px;}
.y51_c00269{bottom:786.405000px;}
.y52_c00269{bottom:786.825000px;}
.y53_c00269{bottom:787.905000px;}
.y4c_c00269{bottom:803.745000px;}
.y4e_c00269{bottom:804.825000px;}
.y4d_c00269{bottom:805.245000px;}
.y50_c00269{bottom:806.130000px;}
.y4f_c00269{bottom:807.405000px;}
.y47_c00269{bottom:824.745000px;}
.y4b_c00269{bottom:825.630000px;}
.y4a_c00269{bottom:826.470000px;}
.y49_c00269{bottom:826.905000px;}
.y48_c00269{bottom:826.920000px;}
.y46_c00269{bottom:850.905000px;}
.y43_c00269{bottom:865.470000px;}
.y40_c00269{bottom:865.905000px;}
.y41_c00269{bottom:866.325000px;}
.y42_c00269{bottom:867.405000px;}
.y45_c00269{bottom:868.695000px;}
.y44_c00269{bottom:869.550000px;}
.y3b_c00269{bottom:880.905000px;}
.y3e_c00269{bottom:881.325000px;}
.y38_c00269{bottom:881.550000px;}
.y39_c00269{bottom:881.970000px;}
.y3f_c00269{bottom:882.405000px;}
.y3a_c00269{bottom:882.630000px;}
.y3d_c00269{bottom:883.050000px;}
.y3c_c00269{bottom:883.695000px;}
.y36_c00269{bottom:896.130000px;}
.y37_c00269{bottom:898.050000px;}
.y33_c00269{bottom:909.825000px;}
.y2f_c00269{bottom:910.050000px;}
.y34_c00269{bottom:910.905000px;}
.y35_c00269{bottom:911.325000px;}
.y32_c00269{bottom:911.970000px;}
.y31_c00269{bottom:912.195000px;}
.y30_c00269{bottom:913.050000px;}
.y2d_c00269{bottom:924.825000px;}
.y2e_c00269{bottom:925.905000px;}
.y2c_c00269{bottom:928.050000px;}
.y2b_c00269{bottom:939.825000px;}
.y26_c00269{bottom:940.050000px;}
.y28_c00269{bottom:940.905000px;}
.y29_c00269{bottom:941.130000px;}
.y27_c00269{bottom:941.970000px;}
.y2a_c00269{bottom:942.195000px;}
.y25_c00269{bottom:955.905000px;}
.y24_c00269{bottom:956.970000px;}
.y23_c00269{bottom:970.050000px;}
.y1c_c00269{bottom:970.695000px;}
.y1e_c00269{bottom:970.905000px;}
.y22_c00269{bottom:971.130000px;}
.y1d_c00269{bottom:971.550000px;}
.y21_c00269{bottom:971.970000px;}
.y1f_c00269{bottom:972.195000px;}
.y20_c00269{bottom:973.050000px;}
.y1b_c00269{bottom:983.325000px;}
.y1a_c00269{bottom:986.550000px;}
.y18_c00269{bottom:998.970000px;}
.y14_c00269{bottom:999.405000px;}
.y17_c00269{bottom:999.825000px;}
.y13_c00269{bottom:1000.470000px;}
.y15_c00269{bottom:1000.905000px;}
.y16_c00269{bottom:1001.130000px;}
.y19_c00269{bottom:1001.550000px;}
.ye_c00269{bottom:1013.325000px;}
.yf_c00269{bottom:1013.550000px;}
.y11_c00269{bottom:1014.405000px;}
.yd_c00269{bottom:1014.630000px;}
.y10_c00269{bottom:1016.550000px;}
.y12_c00269{bottom:1016.970000px;}
.yb_c00269{bottom:1040.745000px;}
.ya_c00269{bottom:1041.405000px;}
.yc_c00269{bottom:1042.905000px;}
.y4_c00269{bottom:1060.245000px;}
.y3_c00269{bottom:1060.905000px;}
.y5_c00269{bottom:1061.130000px;}
.y7_c00269{bottom:1061.325000px;}
.y6_c00269{bottom:1062.405000px;}
.y8_c00269{bottom:1062.630000px;}
.y9_c00269{bottom:1063.905000px;}
.y2_c00269{bottom:1097.970000px;}
.y1_c00269{bottom:1100.550000px;}
.h9_c00269{height:4.206533px;}
.h7_c00269{height:16.752334px;}
.h5_c00269{height:23.025234px;}
.h1_c00269{height:25.091602px;}
.h2_c00269{height:31.364502px;}
.h8_c00269{height:33.044502px;}
.h3_c00269{height:35.571035px;}
.h6_c00269{height:39.777568px;}
.h4_c00269{height:43.910303px;}
.ha_c00269{height:48.116836px;}
.h0_c00269{height:1335.000000px;}
.w0_c00269{width:880.500000px;}
.x0_c00269{left:0.000000px;}
.x2_c00269{left:149.580000px;}
.x3_c00269{left:151.500000px;}
.x55_c00269{left:153.420000px;}
.x56_c00269{left:163.500000px;}
.x12_c00269{left:166.500000px;}
.x70_c00269{left:167.580000px;}
.xcd_c00269{left:168.645000px;}
.xcb_c00269{left:172.500000px;}
.xba_c00269{left:173.580000px;}
.x13_c00269{left:178.500000px;}
.xc8_c00269{left:181.500000px;}
.x1b_c00269{left:183.000000px;}
.x57_c00269{left:184.500000px;}
.xd2_c00269{left:186.000000px;}
.xf8_c00269{left:187.500000px;}
.x4_c00269{left:189.000000px;}
.xa7_c00269{left:192.420000px;}
.x47_c00269{left:197.580000px;}
.x8d_c00269{left:199.920000px;}
.x96_c00269{left:201.420000px;}
.xe3_c00269{left:203.580000px;}
.xff_c00269{left:205.080000px;}
.xc1_c00269{left:207.420000px;}
.x9f_c00269{left:208.500000px;}
.x28_c00269{left:212.580000px;}
.x85_c00269{left:214.500000px;}
.x4b_c00269{left:217.500000px;}
.x3c_c00269{left:219.000000px;}
.x31_c00269{left:221.145000px;}
.x109_c00269{left:223.500000px;}
.x100_c00269{left:225.420000px;}
.x48_c00269{left:226.500000px;}
.x7a_c00269{left:228.000000px;}
.x14_c00269{left:229.500000px;}
.xa0_c00269{left:231.420000px;}
.xe6_c00269{left:232.500000px;}
.x8e_c00269{left:237.420000px;}
.xce_c00269{left:238.500000px;}
.x63_c00269{left:240.420000px;}
.x5_c00269{left:241.500000px;}
.xda_c00269{left:242.580000px;}
.x1c_c00269{left:249.000000px;}
.xbb_c00269{left:250.500000px;}
.x101_c00269{left:252.000000px;}
.xd3_c00269{left:253.500000px;}
.x71_c00269{left:255.000000px;}
.x3d_c00269{left:256.500000px;}
.xa1_c00269{left:258.420000px;}
.xcf_c00269{left:259.500000px;}
.x105_c00269{left:261.000000px;}
.x49_c00269{left:262.500000px;}
.x29_c00269{left:265.500000px;}
.x15_c00269{left:268.080000px;}
.x4c_c00269{left:274.500000px;}
.x72_c00269{left:276.000000px;}
.xee_c00269{left:277.500000px;}
.x32_c00269{left:279.000000px;}
.x6_c00269{left:280.080000px;}
.xae_c00269{left:282.000000px;}
.x64_c00269{left:283.080000px;}
.xf1_c00269{left:285.420000px;}
.x3e_c00269{left:289.500000px;}
.xea_c00269{left:291.420000px;}
.x4a_c00269{left:292.920000px;}
.x4d_c00269{left:294.000000px;}
.x7_c00269{left:298.500000px;}
.xc2_c00269{left:299.580000px;}
.x58_c00269{left:301.500000px;}
.x7b_c00269{left:303.000000px;}
.xa8_c00269{left:304.500000px;}
.x73_c00269{left:307.500000px;}
.x1d_c00269{left:309.000000px;}
.x8f_c00269{left:310.920000px;}
.x97_c00269{left:312.420000px;}
.xe7_c00269{left:315.420000px;}
.x1e_c00269{left:320.580000px;}
.x2a_c00269{left:322.080000px;}
.x65_c00269{left:325.500000px;}
.xaf_c00269{left:328.500000px;}
.xbc_c00269{left:334.500000px;}
.x59_c00269{left:335.580000px;}
.x33_c00269{left:337.500000px;}
.x16_c00269{left:339.000000px;}
.xa9_c00269{left:340.920000px;}
.x8_c00269{left:345.420000px;}
.x1f_c00269{left:348.000000px;}
.xf2_c00269{left:349.500000px;}
.x7c_c00269{left:350.580000px;}
.x106_c00269{left:352.920000px;}
.xdb_c00269{left:354.000000px;}
.xd0_c00269{left:355.500000px;}
.x4e_c00269{left:357.000000px;}
.xef_c00269{left:360.645000px;}
.x66_c00269{left:361.920000px;}
.x3f_c00269{left:363.000000px;}
.xb6_c00269{left:364.080000px;}
.xc9_c00269{left:365.775000px;}
.xbd_c00269{left:367.080000px;}
.xfb_c00269{left:369.000000px;}
.x7d_c00269{left:373.920000px;}
.xaa_c00269{left:375.000000px;}
.xb0_c00269{left:376.080000px;}
.x90_c00269{left:379.500000px;}
.x5a_c00269{left:381.420000px;}
.x20_c00269{left:382.500000px;}
.x40_c00269{left:384.000000px;}
.xf9_c00269{left:385.500000px;}
.xdc_c00269{left:387.000000px;}
.x67_c00269{left:388.500000px;}
.x86_c00269{left:394.920000px;}
.x4f_c00269{left:396.420000px;}
.x9_c00269{left:397.500000px;}
.x7e_c00269{left:398.580000px;}
.x17_c00269{left:402.420000px;}
.x1_c00269{left:403.500000px;}
.xab_c00269{left:405.420000px;}
.xc3_c00269{left:406.500000px;}
.x34_c00269{left:408.000000px;}
.xb1_c00269{left:409.500000px;}
.xb7_c00269{left:411.000000px;}
.xeb_c00269{left:412.500000px;}
.xa2_c00269{left:414.420000px;}
.x98_c00269{left:415.500000px;}
.x5b_c00269{left:417.000000px;}
.xa_c00269{left:421.500000px;}
.x41_c00269{left:423.000000px;}
.x50_c00269{left:424.500000px;}
.xfc_c00269{left:426.000000px;}
.x5c_c00269{left:427.500000px;}
.xd4_c00269{left:428.580000px;}
.x21_c00269{left:430.920000px;}
.xf3_c00269{left:435.000000px;}
.x68_c00269{left:436.500000px;}
.x7f_c00269{left:439.500000px;}
.x18_c00269{left:441.420000px;}
.xc4_c00269{left:442.500000px;}
.x87_c00269{left:443.580000px;}
.x69_c00269{left:447.420000px;}
.x102_c00269{left:448.500000px;}
.x35_c00269{left:450.000000px;}
.x107_c00269{left:452.580000px;}
.xf4_c00269{left:454.920000px;}
.xb_c00269{left:459.420000px;}
.xf0_c00269{left:460.500000px;}
.x5d_c00269{left:461.580000px;}
.x51_c00269{left:463.920000px;}
.xd1_c00269{left:465.000000px;}
.x19_c00269{left:468.420000px;}
.x22_c00269{left:471.000000px;}
.x2b_c00269{left:473.580000px;}
.xbe_c00269{left:475.500000px;}
.x74_c00269{left:476.580000px;}
.x88_c00269{left:478.080000px;}
.x52_c00269{left:479.580000px;}
.xf5_c00269{left:481.080000px;}
.x99_c00269{left:483.420000px;}
.xdd_c00269{left:484.500000px;}
.xd5_c00269{left:486.000000px;}
.x5e_c00269{left:490.080000px;}
.xc_c00269{left:492.420000px;}
.x42_c00269{left:494.145000px;}
.x75_c00269{left:495.420000px;}
.xb2_c00269{left:498.420000px;}
.xfd_c00269{left:499.500000px;}
.x91_c00269{left:501.420000px;}
.x89_c00269{left:502.920000px;}
.xac_c00269{left:504.000000px;}
.x6a_c00269{left:505.080000px;}
.xcc_c00269{left:507.420000px;}
.x23_c00269{left:509.580000px;}
.x9a_c00269{left:511.500000px;}
.xa3_c00269{left:514.500000px;}
.xd6_c00269{left:515.580000px;}
.x36_c00269{left:518.580000px;}
.x10a_c00269{left:520.500000px;}
.xec_c00269{left:521.580000px;}
.x5f_c00269{left:525.000000px;}
.xb3_c00269{left:526.500000px;}
.xd_c00269{left:528.000000px;}
.x6b_c00269{left:532.080000px;}
.xd7_c00269{left:535.080000px;}
.x1a_c00269{left:536.580000px;}
.x43_c00269{left:538.500000px;}
.x80_c00269{left:540.000000px;}
.x103_c00269{left:541.500000px;}
.xe4_c00269{left:543.000000px;}
.x2c_c00269{left:544.920000px;}
.xf6_c00269{left:549.000000px;}
.x9b_c00269{left:550.500000px;}
.xad_c00269{left:552.000000px;}
.xbf_c00269{left:553.920000px;}
.x104_c00269{left:556.500000px;}
.x2d_c00269{left:558.000000px;}
.x53_c00269{left:559.080000px;}
.xa4_c00269{left:561.420000px;}
.xc5_c00269{left:562.920000px;}
.x60_c00269{left:567.000000px;}
.x108_c00269{left:568.500000px;}
.x24_c00269{left:569.580000px;}
.x8a_c00269{left:571.500000px;}
.xe0_c00269{left:574.500000px;}
.x37_c00269{left:575.580000px;}
.xb8_c00269{left:577.080000px;}
.xe_c00269{left:578.580000px;}
.xb4_c00269{left:580.500000px;}
.x81_c00269{left:582.000000px;}
.x92_c00269{left:583.500000px;}
.xde_c00269{left:585.000000px;}
.x38_c00269{left:586.500000px;}
.xc0_c00269{left:587.775000px;}
.xa5_c00269{left:589.920000px;}
.xf7_c00269{left:591.420000px;}
.xed_c00269{left:595.500000px;}
.xfa_c00269{left:598.500000px;}
.xf_c00269{left:600.000000px;}
.xe8_c00269{left:601.500000px;}
.xca_c00269{left:603.000000px;}
.xfe_c00269{left:605.775000px;}
.x76_c00269{left:607.080000px;}
.x44_c00269{left:610.080000px;}
.x6c_c00269{left:615.000000px;}
.xdf_c00269{left:617.580000px;}
.x10_c00269{left:619.920000px;}
.x2e_c00269{left:622.080000px;}
.x9c_c00269{left:623.580000px;}
.x6d_c00269{left:627.000000px;}
.x61_c00269{left:628.080000px;}
.xe1_c00269{left:630.000000px;}
.x93_c00269{left:631.080000px;}
.x39_c00269{left:633.000000px;}
.x25_c00269{left:636.000000px;}
.x82_c00269{left:639.000000px;}
.x11_c00269{left:646.080000px;}
.x8b_c00269{left:650.580000px;}
.x2f_c00269{left:652.080000px;}
.xc6_c00269{left:653.580000px;}
.x9d_c00269{left:655.500000px;}
.x77_c00269{left:658.500000px;}
.x83_c00269{left:660.420000px;}
.x3a_c00269{left:662.355000px;}
.x6e_c00269{left:665.580000px;}
.xb5_c00269{left:667.920000px;}
.x45_c00269{left:669.000000px;}
.xc7_c00269{left:672.420000px;}
.xe5_c00269{left:674.580000px;}
.x26_c00269{left:676.500000px;}
.x94_c00269{left:678.000000px;}
.x54_c00269{left:679.500000px;}
.x46_c00269{left:681.420000px;}
.x8c_c00269{left:682.500000px;}
.x78_c00269{left:685.080000px;}
.x84_c00269{left:687.420000px;}
.xd8_c00269{left:688.500000px;}
.xa6_c00269{left:690.420000px;}
.x9e_c00269{left:693.000000px;}
.x62_c00269{left:697.920000px;}
.x30_c00269{left:699.000000px;}
.xe2_c00269{left:700.920000px;}
.x3b_c00269{left:703.500000px;}
.x6f_c00269{left:704.580000px;}
.x79_c00269{left:706.920000px;}
.xd9_c00269{left:708.420000px;}
.x27_c00269{left:709.500000px;}
.xe9_c00269{left:712.920000px;}
.xb9_c00269{left:716.580000px;}
.x95_c00269{left:718.500000px;}
@media print{
.v0_c00269{vertical-align:0.000000pt;}
.v1_c00269{vertical-align:1.493333pt;}
.ls1_c00269{letter-spacing:0.000000pt;}
.ls0_c00269{letter-spacing:11.251200pt;}
.ws0_c00269{word-spacing:-7.239117pt;}
.ws2_c00269{word-spacing:-4.288493pt;}
.ws1_c00269{word-spacing:-3.179027pt;}
.ws3_c00269{word-spacing:0.000000pt;}
.fs7_c00269{font-size:3.040000pt;}
.fs6_c00269{font-size:12.106667pt;}
.fs4_c00269{font-size:16.640000pt;}
.fs0_c00269{font-size:18.133333pt;}
.fs1_c00269{font-size:22.666667pt;}
.fs2_c00269{font-size:25.706667pt;}
.fs5_c00269{font-size:28.746667pt;}
.fs3_c00269{font-size:31.733333pt;}
.fs8_c00269{font-size:34.773333pt;}
.y0_c00269{bottom:0.000000pt;}
.ye1_c00269{bottom:222.826667pt;}
.ydf_c00269{bottom:223.773333pt;}
.ye0_c00269{bottom:225.306667pt;}
.ye3_c00269{bottom:225.693333pt;}
.ye2_c00269{bottom:226.640000pt;}
.ydb_c00269{bottom:241.106667pt;}
.yde_c00269{bottom:242.066667pt;}
.yda_c00269{bottom:243.026667pt;}
.ydc_c00269{bottom:243.226667pt;}
.ydd_c00269{bottom:243.973333pt;}
.yd8_c00269{bottom:258.440000pt;}
.yd5_c00269{bottom:259.226667pt;}
.yd6_c00269{bottom:259.400000pt;}
.yd4_c00269{bottom:260.360000pt;}
.yd7_c00269{bottom:261.306667pt;}
.yd9_c00269{bottom:261.693333pt;}
.ycd_c00269{bottom:275.773333pt;}
.yd0_c00269{bottom:276.733333pt;}
.yd3_c00269{bottom:277.106667pt;}
.ycc_c00269{bottom:277.693333pt;}
.yd2_c00269{bottom:277.893333pt;}
.yd1_c00269{bottom:278.066667pt;}
.ycf_c00269{bottom:278.640000pt;}
.yce_c00269{bottom:279.026667pt;}
.yc9_c00269{bottom:294.440000pt;}
.yca_c00269{bottom:294.640000pt;}
.yc8_c00269{bottom:295.973333pt;}
.yc7_c00269{bottom:296.360000pt;}
.ycb_c00269{bottom:296.560000pt;}
.yc4_c00269{bottom:311.773333pt;}
.yc1_c00269{bottom:312.560000pt;}
.yc6_c00269{bottom:312.733333pt;}
.yc2_c00269{bottom:313.306667pt;}
.yc3_c00269{bottom:313.693333pt;}
.yc5_c00269{bottom:313.893333pt;}
.ybc_c00269{bottom:329.106667pt;}
.ybf_c00269{bottom:330.066667pt;}
.ybd_c00269{bottom:331.026667pt;}
.yc0_c00269{bottom:331.226667pt;}
.ybe_c00269{bottom:331.973333pt;}
.yb8_c00269{bottom:345.693333pt;}
.yb7_c00269{bottom:346.440000pt;}
.yb9_c00269{bottom:347.773333pt;}
.yb6_c00269{bottom:348.360000pt;}
.yba_c00269{bottom:348.733333pt;}
.ybb_c00269{bottom:349.693333pt;}
.yb4_c00269{bottom:365.106667pt;}
.yb1_c00269{bottom:365.693333pt;}
.yb5_c00269{bottom:365.893333pt;}
.yb3_c00269{bottom:366.640000pt;}
.yb2_c00269{bottom:367.026667pt;}
.yae_c00269{bottom:381.693333pt;}
.yab_c00269{bottom:382.066667pt;}
.ya8_c00269{bottom:382.266667pt;}
.yb0_c00269{bottom:382.440000pt;}
.ya9_c00269{bottom:383.026667pt;}
.ya7_c00269{bottom:383.226667pt;}
.yac_c00269{bottom:383.973333pt;}
.yaa_c00269{bottom:384.360000pt;}
.yad_c00269{bottom:384.560000pt;}
.yaf_c00269{bottom:385.306667pt;}
.ya3_c00269{bottom:399.773333pt;}
.ya4_c00269{bottom:400.733333pt;}
.ya6_c00269{bottom:401.693333pt;}
.ya5_c00269{bottom:401.893333pt;}
.ya2_c00269{bottom:417.106667pt;}
.ya1_c00269{bottom:418.066667pt;}
.y9f_c00269{bottom:419.026667pt;}
.ya0_c00269{bottom:419.226667pt;}
.y9a_c00269{bottom:433.693333pt;}
.y9e_c00269{bottom:434.440000pt;}
.y9c_c00269{bottom:435.400000pt;}
.y99_c00269{bottom:435.973333pt;}
.y98_c00269{bottom:436.360000pt;}
.y9b_c00269{bottom:436.560000pt;}
.y9d_c00269{bottom:437.693333pt;}
.y95_c00269{bottom:451.773333pt;}
.y97_c00269{bottom:452.733333pt;}
.y96_c00269{bottom:453.106667pt;}
.y93_c00269{bottom:453.693333pt;}
.y94_c00269{bottom:455.040000pt;}
.y92_c00269{bottom:470.440000pt;}
.y91_c00269{bottom:471.026667pt;}
.y8f_c00269{bottom:486.640000pt;}
.y8d_c00269{bottom:487.400000pt;}
.y8c_c00269{bottom:487.773333pt;}
.y89_c00269{bottom:488.360000pt;}
.y90_c00269{bottom:488.560000pt;}
.y8b_c00269{bottom:488.733333pt;}
.y8a_c00269{bottom:489.306667pt;}
.y8e_c00269{bottom:489.693333pt;}
.y84_c00269{bottom:503.026667pt;}
.y86_c00269{bottom:505.106667pt;}
.y85_c00269{bottom:505.893333pt;}
.y88_c00269{bottom:506.066667pt;}
.y87_c00269{bottom:507.026667pt;}
.y80_c00269{bottom:521.693333pt;}
.y7f_c00269{bottom:522.440000pt;}
.y83_c00269{bottom:523.226667pt;}
.y82_c00269{bottom:523.973333pt;}
.y81_c00269{bottom:524.360000pt;}
.y7c_c00269{bottom:539.026667pt;}
.y79_c00269{bottom:539.773333pt;}
.y7d_c00269{bottom:539.973333pt;}
.y7e_c00269{bottom:540.360000pt;}
.y7a_c00269{bottom:540.733333pt;}
.y7b_c00269{bottom:541.693333pt;}
.y76_c00269{bottom:557.106667pt;}
.y78_c00269{bottom:557.306667pt;}
.y74_c00269{bottom:558.266667pt;}
.y77_c00269{bottom:558.440000pt;}
.y75_c00269{bottom:559.026667pt;}
.y73_c00269{bottom:575.773333pt;}
.y70_c00269{bottom:576.360000pt;}
.y71_c00269{bottom:577.306667pt;}
.y72_c00269{bottom:577.693333pt;}
.y6d_c00269{bottom:591.026667pt;}
.y6b_c00269{bottom:591.773333pt;}
.y6e_c00269{bottom:593.693333pt;}
.y6c_c00269{bottom:594.640000pt;}
.y6f_c00269{bottom:595.026667pt;}
.y69_c00269{bottom:609.493333pt;}
.y6a_c00269{bottom:610.440000pt;}
.y68_c00269{bottom:612.360000pt;}
.y66_c00269{bottom:627.773333pt;}
.y65_c00269{bottom:628.733333pt;}
.y64_c00269{bottom:629.693333pt;}
.y67_c00269{bottom:629.893333pt;}
.y5f_c00269{bottom:645.106667pt;}
.y60_c00269{bottom:645.893333pt;}
.y63_c00269{bottom:646.066667pt;}
.y61_c00269{bottom:647.026667pt;}
.y62_c00269{bottom:647.973333pt;}
.y5c_c00269{bottom:662.440000pt;}
.y5e_c00269{bottom:663.400000pt;}
.y5b_c00269{bottom:664.360000pt;}
.y5d_c00269{bottom:664.560000pt;}
.y55_c00269{bottom:679.773333pt;}
.y59_c00269{bottom:680.733333pt;}
.y58_c00269{bottom:681.106667pt;}
.y56_c00269{bottom:681.693333pt;}
.y5a_c00269{bottom:682.640000pt;}
.y57_c00269{bottom:683.026667pt;}
.y54_c00269{bottom:698.440000pt;}
.y51_c00269{bottom:699.026667pt;}
.y52_c00269{bottom:699.400000pt;}
.y53_c00269{bottom:700.360000pt;}
.y4c_c00269{bottom:714.440000pt;}
.y4e_c00269{bottom:715.400000pt;}
.y4d_c00269{bottom:715.773333pt;}
.y50_c00269{bottom:716.560000pt;}
.y4f_c00269{bottom:717.693333pt;}
.y47_c00269{bottom:733.106667pt;}
.y4b_c00269{bottom:733.893333pt;}
.y4a_c00269{bottom:734.640000pt;}
.y49_c00269{bottom:735.026667pt;}
.y48_c00269{bottom:735.040000pt;}
.y46_c00269{bottom:756.360000pt;}
.y43_c00269{bottom:769.306667pt;}
.y40_c00269{bottom:769.693333pt;}
.y41_c00269{bottom:770.066667pt;}
.y42_c00269{bottom:771.026667pt;}
.y45_c00269{bottom:772.173333pt;}
.y44_c00269{bottom:772.933333pt;}
.y3b_c00269{bottom:783.026667pt;}
.y3e_c00269{bottom:783.400000pt;}
.y38_c00269{bottom:783.600000pt;}
.y39_c00269{bottom:783.973333pt;}
.y3f_c00269{bottom:784.360000pt;}
.y3a_c00269{bottom:784.560000pt;}
.y3d_c00269{bottom:784.933333pt;}
.y3c_c00269{bottom:785.506667pt;}
.y36_c00269{bottom:796.560000pt;}
.y37_c00269{bottom:798.266667pt;}
.y33_c00269{bottom:808.733333pt;}
.y2f_c00269{bottom:808.933333pt;}
.y34_c00269{bottom:809.693333pt;}
.y35_c00269{bottom:810.066667pt;}
.y32_c00269{bottom:810.640000pt;}
.y31_c00269{bottom:810.840000pt;}
.y30_c00269{bottom:811.600000pt;}
.y2d_c00269{bottom:822.066667pt;}
.y2e_c00269{bottom:823.026667pt;}
.y2c_c00269{bottom:824.933333pt;}
.y2b_c00269{bottom:835.400000pt;}
.y26_c00269{bottom:835.600000pt;}
.y28_c00269{bottom:836.360000pt;}
.y29_c00269{bottom:836.560000pt;}
.y27_c00269{bottom:837.306667pt;}
.y2a_c00269{bottom:837.506667pt;}
.y25_c00269{bottom:849.693333pt;}
.y24_c00269{bottom:850.640000pt;}
.y23_c00269{bottom:862.266667pt;}
.y1c_c00269{bottom:862.840000pt;}
.y1e_c00269{bottom:863.026667pt;}
.y22_c00269{bottom:863.226667pt;}
.y1d_c00269{bottom:863.600000pt;}
.y21_c00269{bottom:863.973333pt;}
.y1f_c00269{bottom:864.173333pt;}
.y20_c00269{bottom:864.933333pt;}
.y1b_c00269{bottom:874.066667pt;}
.y1a_c00269{bottom:876.933333pt;}
.y18_c00269{bottom:887.973333pt;}
.y14_c00269{bottom:888.360000pt;}
.y17_c00269{bottom:888.733333pt;}
.y13_c00269{bottom:889.306667pt;}
.y15_c00269{bottom:889.693333pt;}
.y16_c00269{bottom:889.893333pt;}
.y19_c00269{bottom:890.266667pt;}
.ye_c00269{bottom:900.733333pt;}
.yf_c00269{bottom:900.933333pt;}
.y11_c00269{bottom:901.693333pt;}
.yd_c00269{bottom:901.893333pt;}
.y10_c00269{bottom:903.600000pt;}
.y12_c00269{bottom:903.973333pt;}
.yb_c00269{bottom:925.106667pt;}
.ya_c00269{bottom:925.693333pt;}
.yc_c00269{bottom:927.026667pt;}
.y4_c00269{bottom:942.440000pt;}
.y3_c00269{bottom:943.026667pt;}
.y5_c00269{bottom:943.226667pt;}
.y7_c00269{bottom:943.400000pt;}
.y6_c00269{bottom:944.360000pt;}
.y8_c00269{bottom:944.560000pt;}
.y9_c00269{bottom:945.693333pt;}
.y2_c00269{bottom:975.973333pt;}
.y1_c00269{bottom:978.266667pt;}
.h9_c00269{height:3.739141pt;}
.h7_c00269{height:14.890964pt;}
.h5_c00269{height:20.466875pt;}
.h1_c00269{height:22.303646pt;}
.h2_c00269{height:27.879557pt;}
.h8_c00269{height:29.372891pt;}
.h3_c00269{height:31.618698pt;}
.h6_c00269{height:35.357839pt;}
.h4_c00269{height:39.031380pt;}
.ha_c00269{height:42.770521pt;}
.h0_c00269{height:1186.666667pt;}
.w0_c00269{width:782.666667pt;}
.x0_c00269{left:0.000000pt;}
.x2_c00269{left:132.960000pt;}
.x3_c00269{left:134.666667pt;}
.x55_c00269{left:136.373333pt;}
.x56_c00269{left:145.333333pt;}
.x12_c00269{left:148.000000pt;}
.x70_c00269{left:148.960000pt;}
.xcd_c00269{left:149.906667pt;}
.xcb_c00269{left:153.333333pt;}
.xba_c00269{left:154.293333pt;}
.x13_c00269{left:158.666667pt;}
.xc8_c00269{left:161.333333pt;}
.x1b_c00269{left:162.666667pt;}
.x57_c00269{left:164.000000pt;}
.xd2_c00269{left:165.333333pt;}
.xf8_c00269{left:166.666667pt;}
.x4_c00269{left:168.000000pt;}
.xa7_c00269{left:171.040000pt;}
.x47_c00269{left:175.626667pt;}
.x8d_c00269{left:177.706667pt;}
.x96_c00269{left:179.040000pt;}
.xe3_c00269{left:180.960000pt;}
.xff_c00269{left:182.293333pt;}
.xc1_c00269{left:184.373333pt;}
.x9f_c00269{left:185.333333pt;}
.x28_c00269{left:188.960000pt;}
.x85_c00269{left:190.666667pt;}
.x4b_c00269{left:193.333333pt;}
.x3c_c00269{left:194.666667pt;}
.x31_c00269{left:196.573333pt;}
.x109_c00269{left:198.666667pt;}
.x100_c00269{left:200.373333pt;}
.x48_c00269{left:201.333333pt;}
.x7a_c00269{left:202.666667pt;}
.x14_c00269{left:204.000000pt;}
.xa0_c00269{left:205.706667pt;}
.xe6_c00269{left:206.666667pt;}
.x8e_c00269{left:211.040000pt;}
.xce_c00269{left:212.000000pt;}
.x63_c00269{left:213.706667pt;}
.x5_c00269{left:214.666667pt;}
.xda_c00269{left:215.626667pt;}
.x1c_c00269{left:221.333333pt;}
.xbb_c00269{left:222.666667pt;}
.x101_c00269{left:224.000000pt;}
.xd3_c00269{left:225.333333pt;}
.x71_c00269{left:226.666667pt;}
.x3d_c00269{left:228.000000pt;}
.xa1_c00269{left:229.706667pt;}
.xcf_c00269{left:230.666667pt;}
.x105_c00269{left:232.000000pt;}
.x49_c00269{left:233.333333pt;}
.x29_c00269{left:236.000000pt;}
.x15_c00269{left:238.293333pt;}
.x4c_c00269{left:244.000000pt;}
.x72_c00269{left:245.333333pt;}
.xee_c00269{left:246.666667pt;}
.x32_c00269{left:248.000000pt;}
.x6_c00269{left:248.960000pt;}
.xae_c00269{left:250.666667pt;}
.x64_c00269{left:251.626667pt;}
.xf1_c00269{left:253.706667pt;}
.x3e_c00269{left:257.333333pt;}
.xea_c00269{left:259.040000pt;}
.x4a_c00269{left:260.373333pt;}
.x4d_c00269{left:261.333333pt;}
.x7_c00269{left:265.333333pt;}
.xc2_c00269{left:266.293333pt;}
.x58_c00269{left:268.000000pt;}
.x7b_c00269{left:269.333333pt;}
.xa8_c00269{left:270.666667pt;}
.x73_c00269{left:273.333333pt;}
.x1d_c00269{left:274.666667pt;}
.x8f_c00269{left:276.373333pt;}
.x97_c00269{left:277.706667pt;}
.xe7_c00269{left:280.373333pt;}
.x1e_c00269{left:284.960000pt;}
.x2a_c00269{left:286.293333pt;}
.x65_c00269{left:289.333333pt;}
.xaf_c00269{left:292.000000pt;}
.xbc_c00269{left:297.333333pt;}
.x59_c00269{left:298.293333pt;}
.x33_c00269{left:300.000000pt;}
.x16_c00269{left:301.333333pt;}
.xa9_c00269{left:303.040000pt;}
.x8_c00269{left:307.040000pt;}
.x1f_c00269{left:309.333333pt;}
.xf2_c00269{left:310.666667pt;}
.x7c_c00269{left:311.626667pt;}
.x106_c00269{left:313.706667pt;}
.xdb_c00269{left:314.666667pt;}
.xd0_c00269{left:316.000000pt;}
.x4e_c00269{left:317.333333pt;}
.xef_c00269{left:320.573333pt;}
.x66_c00269{left:321.706667pt;}
.x3f_c00269{left:322.666667pt;}
.xb6_c00269{left:323.626667pt;}
.xc9_c00269{left:325.133333pt;}
.xbd_c00269{left:326.293333pt;}
.xfb_c00269{left:328.000000pt;}
.x7d_c00269{left:332.373333pt;}
.xaa_c00269{left:333.333333pt;}
.xb0_c00269{left:334.293333pt;}
.x90_c00269{left:337.333333pt;}
.x5a_c00269{left:339.040000pt;}
.x20_c00269{left:340.000000pt;}
.x40_c00269{left:341.333333pt;}
.xf9_c00269{left:342.666667pt;}
.xdc_c00269{left:344.000000pt;}
.x67_c00269{left:345.333333pt;}
.x86_c00269{left:351.040000pt;}
.x4f_c00269{left:352.373333pt;}
.x9_c00269{left:353.333333pt;}
.x7e_c00269{left:354.293333pt;}
.x17_c00269{left:357.706667pt;}
.x1_c00269{left:358.666667pt;}
.xab_c00269{left:360.373333pt;}
.xc3_c00269{left:361.333333pt;}
.x34_c00269{left:362.666667pt;}
.xb1_c00269{left:364.000000pt;}
.xb7_c00269{left:365.333333pt;}
.xeb_c00269{left:366.666667pt;}
.xa2_c00269{left:368.373333pt;}
.x98_c00269{left:369.333333pt;}
.x5b_c00269{left:370.666667pt;}
.xa_c00269{left:374.666667pt;}
.x41_c00269{left:376.000000pt;}
.x50_c00269{left:377.333333pt;}
.xfc_c00269{left:378.666667pt;}
.x5c_c00269{left:380.000000pt;}
.xd4_c00269{left:380.960000pt;}
.x21_c00269{left:383.040000pt;}
.xf3_c00269{left:386.666667pt;}
.x68_c00269{left:388.000000pt;}
.x7f_c00269{left:390.666667pt;}
.x18_c00269{left:392.373333pt;}
.xc4_c00269{left:393.333333pt;}
.x87_c00269{left:394.293333pt;}
.x69_c00269{left:397.706667pt;}
.x102_c00269{left:398.666667pt;}
.x35_c00269{left:400.000000pt;}
.x107_c00269{left:402.293333pt;}
.xf4_c00269{left:404.373333pt;}
.xb_c00269{left:408.373333pt;}
.xf0_c00269{left:409.333333pt;}
.x5d_c00269{left:410.293333pt;}
.x51_c00269{left:412.373333pt;}
.xd1_c00269{left:413.333333pt;}
.x19_c00269{left:416.373333pt;}
.x22_c00269{left:418.666667pt;}
.x2b_c00269{left:420.960000pt;}
.xbe_c00269{left:422.666667pt;}
.x74_c00269{left:423.626667pt;}
.x88_c00269{left:424.960000pt;}
.x52_c00269{left:426.293333pt;}
.xf5_c00269{left:427.626667pt;}
.x99_c00269{left:429.706667pt;}
.xdd_c00269{left:430.666667pt;}
.xd5_c00269{left:432.000000pt;}
.x5e_c00269{left:435.626667pt;}
.xc_c00269{left:437.706667pt;}
.x42_c00269{left:439.240000pt;}
.x75_c00269{left:440.373333pt;}
.xb2_c00269{left:443.040000pt;}
.xfd_c00269{left:444.000000pt;}
.x91_c00269{left:445.706667pt;}
.x89_c00269{left:447.040000pt;}
.xac_c00269{left:448.000000pt;}
.x6a_c00269{left:448.960000pt;}
.xcc_c00269{left:451.040000pt;}
.x23_c00269{left:452.960000pt;}
.x9a_c00269{left:454.666667pt;}
.xa3_c00269{left:457.333333pt;}
.xd6_c00269{left:458.293333pt;}
.x36_c00269{left:460.960000pt;}
.x10a_c00269{left:462.666667pt;}
.xec_c00269{left:463.626667pt;}
.x5f_c00269{left:466.666667pt;}
.xb3_c00269{left:468.000000pt;}
.xd_c00269{left:469.333333pt;}
.x6b_c00269{left:472.960000pt;}
.xd7_c00269{left:475.626667pt;}
.x1a_c00269{left:476.960000pt;}
.x43_c00269{left:478.666667pt;}
.x80_c00269{left:480.000000pt;}
.x103_c00269{left:481.333333pt;}
.xe4_c00269{left:482.666667pt;}
.x2c_c00269{left:484.373333pt;}
.xf6_c00269{left:488.000000pt;}
.x9b_c00269{left:489.333333pt;}
.xad_c00269{left:490.666667pt;}
.xbf_c00269{left:492.373333pt;}
.x104_c00269{left:494.666667pt;}
.x2d_c00269{left:496.000000pt;}
.x53_c00269{left:496.960000pt;}
.xa4_c00269{left:499.040000pt;}
.xc5_c00269{left:500.373333pt;}
.x60_c00269{left:504.000000pt;}
.x108_c00269{left:505.333333pt;}
.x24_c00269{left:506.293333pt;}
.x8a_c00269{left:508.000000pt;}
.xe0_c00269{left:510.666667pt;}
.x37_c00269{left:511.626667pt;}
.xb8_c00269{left:512.960000pt;}
.xe_c00269{left:514.293333pt;}
.xb4_c00269{left:516.000000pt;}
.x81_c00269{left:517.333333pt;}
.x92_c00269{left:518.666667pt;}
.xde_c00269{left:520.000000pt;}
.x38_c00269{left:521.333333pt;}
.xc0_c00269{left:522.466667pt;}
.xa5_c00269{left:524.373333pt;}
.xf7_c00269{left:525.706667pt;}
.xed_c00269{left:529.333333pt;}
.xfa_c00269{left:532.000000pt;}
.xf_c00269{left:533.333333pt;}
.xe8_c00269{left:534.666667pt;}
.xca_c00269{left:536.000000pt;}
.xfe_c00269{left:538.466667pt;}
.x76_c00269{left:539.626667pt;}
.x44_c00269{left:542.293333pt;}
.x6c_c00269{left:546.666667pt;}
.xdf_c00269{left:548.960000pt;}
.x10_c00269{left:551.040000pt;}
.x2e_c00269{left:552.960000pt;}
.x9c_c00269{left:554.293333pt;}
.x6d_c00269{left:557.333333pt;}
.x61_c00269{left:558.293333pt;}
.xe1_c00269{left:560.000000pt;}
.x93_c00269{left:560.960000pt;}
.x39_c00269{left:562.666667pt;}
.x25_c00269{left:565.333333pt;}
.x82_c00269{left:568.000000pt;}
.x11_c00269{left:574.293333pt;}
.x8b_c00269{left:578.293333pt;}
.x2f_c00269{left:579.626667pt;}
.xc6_c00269{left:580.960000pt;}
.x9d_c00269{left:582.666667pt;}
.x77_c00269{left:585.333333pt;}
.x83_c00269{left:587.040000pt;}
.x3a_c00269{left:588.760000pt;}
.x6e_c00269{left:591.626667pt;}
.xb5_c00269{left:593.706667pt;}
.x45_c00269{left:594.666667pt;}
.xc7_c00269{left:597.706667pt;}
.xe5_c00269{left:599.626667pt;}
.x26_c00269{left:601.333333pt;}
.x94_c00269{left:602.666667pt;}
.x54_c00269{left:604.000000pt;}
.x46_c00269{left:605.706667pt;}
.x8c_c00269{left:606.666667pt;}
.x78_c00269{left:608.960000pt;}
.x84_c00269{left:611.040000pt;}
.xd8_c00269{left:612.000000pt;}
.xa6_c00269{left:613.706667pt;}
.x9e_c00269{left:616.000000pt;}
.x62_c00269{left:620.373333pt;}
.x30_c00269{left:621.333333pt;}
.xe2_c00269{left:623.040000pt;}
.x3b_c00269{left:625.333333pt;}
.x6f_c00269{left:626.293333pt;}
.x79_c00269{left:628.373333pt;}
.xd9_c00269{left:629.706667pt;}
.x27_c00269{left:630.666667pt;}
.xe9_c00269{left:633.706667pt;}
.xb9_c00269{left:636.960000pt;}
.x95_c00269{left:638.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_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_2910ea5d9184f23f8e15d50a.woff2')format("woff");}.ff1_c00270{font-family:ff1_c00270;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf3_c00270{transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);}
.mc5_c00270{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);}
.m93_c00270{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m18_c00270{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.mcd_c00270{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m76_c00270{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mdd_c00270{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m71_c00270{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m2_c00270{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m19_c00270{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mda_c00270{transform:matrix(0.380334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380334,0.000000,0.000000,0.250000,0,0);}
.m7c_c00270{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m4c_c00270{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.mf9_c00270{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.mab_c00270{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m60_c00270{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.md9_c00270{transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);}
.md6_c00270{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m4b_c00270{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m7_c00270{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m51_c00270{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m5f_c00270{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.md7_c00270{transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);}
.mb8_c00270{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m68_c00270{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.meb_c00270{transform:matrix(0.399896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399896,0.000000,0.000000,0.250000,0,0);}
.mfa_c00270{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);}
.mc9_c00270{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m48_c00270{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m73_c00270{transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);}
.mbe_c00270{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m45_c00270{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m82_c00270{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m34_c00270{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.mdc_c00270{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m37_c00270{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.maa_c00270{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.m4f_c00270{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m5e_c00270{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.md0_c00270{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m81_c00270{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m6_c00270{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.me3_c00270{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.m61_c00270{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.md4_c00270{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.maf_c00270{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m10_c00270{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.md8_c00270{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m59_c00270{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mde_c00270{transform:matrix(0.417059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417059,0.000000,0.000000,0.250000,0,0);}
.ma5_c00270{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.md3_c00270{transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);}
.m9b_c00270{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m4a_c00270{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m9d_c00270{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m6e_c00270{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.mb6_c00270{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m47_c00270{transform:matrix(0.425997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425997,0.000000,0.000000,0.250000,0,0);}
.mb5_c00270{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m9e_c00270{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m32_c00270{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m54_c00270{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m9c_c00270{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.ma0_c00270{transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);}
.m38_c00270{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mca_c00270{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m21_c00270{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m67_c00270{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.mec_c00270{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mef_c00270{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.md5_c00270{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m78_c00270{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.mb0_c00270{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m16_c00270{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.mf1_c00270{transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);}
.mb9_c00270{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m17_c00270{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.mc7_c00270{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.mcc_c00270{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mf7_c00270{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.mcb_c00270{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.m1d_c00270{transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);}
.m28_c00270{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.mbf_c00270{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m8b_c00270{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.me9_c00270{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.ma9_c00270{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m3a_c00270{transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);}
.m39_c00270{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m1_c00270{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m55_c00270{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.me6_c00270{transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);}
.me2_c00270{transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);}
.m35_c00270{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m3e_c00270{transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);}
.m99_c00270{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mdb_c00270{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.ma6_c00270{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.ma8_c00270{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.mcf_c00270{transform:matrix(0.465546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465546,0.000000,0.000000,0.250000,0,0);}
.m90_c00270{transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);}
.m70_c00270{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m75_c00270{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m64_c00270{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m72_c00270{transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);}
.m49_c00270{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.mc0_c00270{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.md_c00270{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m89_c00270{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.mc4_c00270{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.mb2_c00270{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m6c_c00270{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m86_c00270{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.md1_c00270{transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);}
.m95_c00270{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m31_c00270{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m25_c00270{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m77_c00270{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mfc_c00270{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m2a_c00270{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m1c_c00270{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m52_c00270{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m14_c00270{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_c00270{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.ma_c00270{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.ma7_c00270{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m20_c00270{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.ma4_c00270{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mba_c00270{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mc6_c00270{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m53_c00270{transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);}
.me0_c00270{transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);}
.mf2_c00270{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.mbd_c00270{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m7f_c00270{transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);}
.m2c_c00270{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m8d_c00270{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m7e_c00270{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m88_c00270{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mfb_c00270{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m5b_c00270{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m15_c00270{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m97_c00270{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m85_c00270{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.mf8_c00270{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m57_c00270{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.mc1_c00270{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m2f_c00270{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m9f_c00270{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mbc_c00270{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m3b_c00270{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m74_c00270{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m24_c00270{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mb_c00270{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m62_c00270{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m44_c00270{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m3_c00270{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m69_c00270{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m23_c00270{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mf0_c00270{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m80_c00270{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m12_c00270{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m7d_c00270{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m42_c00270{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m27_c00270{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m6d_c00270{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m91_c00270{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m30_c00270{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m4e_c00270{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mb3_c00270{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m41_c00270{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.md2_c00270{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m43_c00270{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m79_c00270{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mb1_c00270{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m8e_c00270{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m11_c00270{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m13_c00270{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.me_c00270{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m2e_c00270{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m6a_c00270{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.me1_c00270{transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);}
.mc2_c00270{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m40_c00270{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m7a_c00270{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m1e_c00270{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m98_c00270{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m5a_c00270{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m46_c00270{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m7b_c00270{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m84_c00270{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m6b_c00270{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m3f_c00270{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m22_c00270{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.ma3_c00270{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.mf5_c00270{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m29_c00270{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m5d_c00270{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m5c_c00270{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.mbb_c00270{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m36_c00270{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m1a_c00270{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m26_c00270{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.mc3_c00270{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m83_c00270{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mf4_c00270{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.m9a_c00270{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.m92_c00270{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m9_c00270{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.ma2_c00270{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m1f_c00270{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mc_c00270{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.m63_c00270{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.mce_c00270{transform:matrix(0.621888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621888,0.000000,0.000000,0.250000,0,0);}
.me4_c00270{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_c00270{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m0_c00270{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.mb4_c00270{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.me5_c00270{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.m2d_c00270{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m58_c00270{transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);}
.m96_c00270{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m6f_c00270{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m8c_c00270{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mdf_c00270{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m8_c00270{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m65_c00270{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m94_c00270{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.mad_c00270{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m50_c00270{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m87_c00270{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m5_c00270{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.me7_c00270{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.mac_c00270{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m8a_c00270{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m3d_c00270{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m8f_c00270{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mf_c00270{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.me8_c00270{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);}
.mb7_c00270{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.mae_c00270{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.m33_c00270{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m4_c00270{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.mc8_c00270{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.mee_c00270{transform:matrix(0.797199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797199,0.000000,0.000000,0.250000,0,0);}
.m66_c00270{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m4d_c00270{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m3c_c00270{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.m56_c00270{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.ma1_c00270{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.mea_c00270{transform:matrix(1.018722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.018722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.018722,0.000000,0.000000,0.250000,0,0);}
.med_c00270{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.mf6_c00270{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-5.619743px;}
.ws1_c00270{word-spacing:-0.346308px;}
.ws3_c00270{word-spacing:0.000000px;}
.ws2_c00270{word-spacing:5.495738px;}
.fc0_c00270{color:transparent;}
.fs8_c00270{font-size:3.420000px;}
.fs7_c00270{font-size:13.620000px;}
.fs3_c00270{font-size:18.720000px;}
.fs0_c00270{font-size:20.400000px;}
.fs4_c00270{font-size:25.500000px;}
.fs1_c00270{font-size:28.920000px;}
.fs5_c00270{font-size:32.340000px;}
.fs2_c00270{font-size:35.700000px;}
.fs6_c00270{font-size:39.120000px;}
.y0_c00270{bottom:0.000000px;}
.ybd_c00270{bottom:271.905000px;}
.ybc_c00270{bottom:273.825000px;}
.ybb_c00270{bottom:289.905000px;}
.yba_c00270{bottom:291.405000px;}
.yb7_c00270{bottom:292.245000px;}
.yb9_c00270{bottom:293.325000px;}
.yb8_c00270{bottom:295.920000px;}
.yb5_c00270{bottom:310.680000px;}
.yb4_c00270{bottom:311.745000px;}
.yb3_c00270{bottom:313.905000px;}
.yb6_c00270{bottom:314.970000px;}
.yad_c00270{bottom:331.245000px;}
.yae_c00270{bottom:332.745000px;}
.yb2_c00270{bottom:333.405000px;}
.yb1_c00270{bottom:333.630000px;}
.yb0_c00270{bottom:334.905000px;}
.yaf_c00270{bottom:334.920000px;}
.yaa_c00270{bottom:359.970000px;}
.ya7_c00270{bottom:361.050000px;}
.ya9_c00270{bottom:361.905000px;}
.ya8_c00270{bottom:362.130000px;}
.yac_c00270{bottom:363.195000px;}
.yab_c00270{bottom:364.050000px;}
.ya6_c00270{bottom:374.325000px;}
.ya3_c00270{bottom:375.405000px;}
.ya2_c00270{bottom:375.825000px;}
.ya5_c00270{bottom:377.550000px;}
.ya4_c00270{bottom:377.970000px;}
.ya0_c00270{bottom:394.470000px;}
.y9f_c00270{bottom:394.905000px;}
.ya1_c00270{bottom:395.325000px;}
.y9e_c00270{bottom:397.470000px;}
.y9d_c00270{bottom:419.745000px;}
.y9c_c00270{bottom:421.905000px;}
.y9b_c00270{bottom:469.245000px;}
.y9a_c00270{bottom:470.325000px;}
.y99_c00270{bottom:471.405000px;}
.y92_c00270{bottom:487.905000px;}
.y96_c00270{bottom:488.745000px;}
.y97_c00270{bottom:489.825000px;}
.y93_c00270{bottom:490.245000px;}
.y98_c00270{bottom:490.905000px;}
.y95_c00270{bottom:491.130000px;}
.y94_c00270{bottom:491.970000px;}
.y91_c00270{bottom:493.470000px;}
.y8f_c00270{bottom:507.405000px;}
.y90_c00270{bottom:509.745000px;}
.y8e_c00270{bottom:510.630000px;}
.y8d_c00270{bottom:511.905000px;}
.y89_c00270{bottom:529.245000px;}
.y8c_c00270{bottom:530.130000px;}
.y8a_c00270{bottom:530.325000px;}
.y88_c00270{bottom:531.405000px;}
.y8b_c00270{bottom:531.630000px;}
.y86_c00270{bottom:546.405000px;}
.y85_c00270{bottom:547.470000px;}
.y84_c00270{bottom:547.905000px;}
.y83_c00270{bottom:548.745000px;}
.y82_c00270{bottom:549.630000px;}
.y87_c00270{bottom:550.470000px;}
.y81_c00270{bottom:550.905000px;}
.y80_c00270{bottom:568.245000px;}
.y7d_c00270{bottom:569.130000px;}
.y7e_c00270{bottom:570.405000px;}
.y7f_c00270{bottom:571.470000px;}
.y7b_c00270{bottom:587.745000px;}
.y7c_c00270{bottom:588.630000px;}
.y7a_c00270{bottom:589.905000px;}
.y78_c00270{bottom:607.245000px;}
.y79_c00270{bottom:607.470000px;}
.y75_c00270{bottom:608.325000px;}
.y76_c00270{bottom:608.745000px;}
.y74_c00270{bottom:609.405000px;}
.y77_c00270{bottom:609.630000px;}
.y70_c00270{bottom:628.245000px;}
.y72_c00270{bottom:628.905000px;}
.y73_c00270{bottom:629.970000px;}
.y71_c00270{bottom:630.405000px;}
.y6b_c00270{bottom:647.745000px;}
.y6f_c00270{bottom:648.405000px;}
.y6c_c00270{bottom:648.630000px;}
.y6e_c00270{bottom:649.470000px;}
.y6d_c00270{bottom:649.905000px;}
.y6a_c00270{bottom:667.245000px;}
.y69_c00270{bottom:668.130000px;}
.y67_c00270{bottom:668.325000px;}
.y66_c00270{bottom:669.405000px;}
.y68_c00270{bottom:670.470000px;}
.y65_c00270{bottom:688.905000px;}
.y64_c00270{bottom:689.970000px;}
.y60_c00270{bottom:706.245000px;}
.y5f_c00270{bottom:706.470000px;}
.y63_c00270{bottom:707.970000px;}
.y5e_c00270{bottom:708.405000px;}
.y61_c00270{bottom:708.630000px;}
.y62_c00270{bottom:709.470000px;}
.y5d_c00270{bottom:725.745000px;}
.y5c_c00270{bottom:726.825000px;}
.y5a_c00270{bottom:727.905000px;}
.y5b_c00270{bottom:728.130000px;}
.y57_c00270{bottom:745.245000px;}
.y59_c00270{bottom:746.325000px;}
.y56_c00270{bottom:747.405000px;}
.y55_c00270{bottom:747.630000px;}
.y58_c00270{bottom:748.470000px;}
.y52_c00270{bottom:763.905000px;}
.y53_c00270{bottom:764.745000px;}
.y54_c00270{bottom:766.245000px;}
.y51_c00270{bottom:767.325000px;}
.y50_c00270{bottom:768.405000px;}
.y4f_c00270{bottom:785.745000px;}
.y4e_c00270{bottom:787.470000px;}
.y4d_c00270{bottom:787.905000px;}
.y4c_c00270{bottom:804.825000px;}
.y49_c00270{bottom:805.245000px;}
.y4a_c00270{bottom:807.405000px;}
.y4b_c00270{bottom:808.470000px;}
.y48_c00270{bottom:824.325000px;}
.y47_c00270{bottom:824.745000px;}
.y46_c00270{bottom:826.470000px;}
.y45_c00270{bottom:826.905000px;}
.y44_c00270{bottom:827.970000px;}
.y40_c00270{bottom:845.745000px;}
.y43_c00270{bottom:845.970000px;}
.y42_c00270{bottom:846.405000px;}
.y3f_c00270{bottom:846.630000px;}
.y41_c00270{bottom:847.470000px;}
.y3e_c00270{bottom:847.905000px;}
.y3a_c00270{bottom:863.970000px;}
.y37_c00270{bottom:865.245000px;}
.y3d_c00270{bottom:865.905000px;}
.y39_c00270{bottom:866.130000px;}
.y3c_c00270{bottom:866.325000px;}
.y3b_c00270{bottom:866.970000px;}
.y38_c00270{bottom:867.405000px;}
.y33_c00270{bottom:883.470000px;}
.y36_c00270{bottom:884.745000px;}
.y32_c00270{bottom:885.630000px;}
.y35_c00270{bottom:886.470000px;}
.y34_c00270{bottom:886.905000px;}
.y2f_c00270{bottom:904.245000px;}
.y30_c00270{bottom:905.130000px;}
.y31_c00270{bottom:905.325000px;}
.y2e_c00270{bottom:906.405000px;}
.y29_c00270{bottom:923.325000px;}
.y28_c00270{bottom:923.745000px;}
.y2d_c00270{bottom:924.405000px;}
.y2b_c00270{bottom:924.630000px;}
.y2c_c00270{bottom:925.470000px;}
.y2a_c00270{bottom:925.905000px;}
.y27_c00270{bottom:942.180000px;}
.y26_c00270{bottom:943.245000px;}
.y25_c00270{bottom:945.405000px;}
.y21_c00270{bottom:962.745000px;}
.y22_c00270{bottom:964.470000px;}
.y20_c00270{bottom:964.905000px;}
.y23_c00270{bottom:965.130000px;}
.y24_c00270{bottom:965.970000px;}
.y1d_c00270{bottom:981.405000px;}
.y1f_c00270{bottom:981.825000px;}
.y1b_c00270{bottom:982.245000px;}
.y1e_c00270{bottom:983.745000px;}
.y1a_c00270{bottom:984.405000px;}
.y1c_c00270{bottom:984.630000px;}
.y19_c00270{bottom:985.470000px;}
.y17_c00270{bottom:1000.905000px;}
.y15_c00270{bottom:1003.905000px;}
.y18_c00270{bottom:1004.130000px;}
.y16_c00270{bottom:1004.970000px;}
.y14_c00270{bottom:1020.405000px;}
.y12_c00270{bottom:1021.245000px;}
.y13_c00270{bottom:1022.325000px;}
.y11_c00270{bottom:1023.405000px;}
.y10_c00270{bottom:1024.905000px;}
.yd_c00270{bottom:1041.180000px;}
.yb_c00270{bottom:1041.825000px;}
.yc_c00270{bottom:1042.245000px;}
.yf_c00270{bottom:1042.905000px;}
.ye_c00270{bottom:1043.970000px;}
.ya_c00270{bottom:1044.405000px;}
.y9_c00270{bottom:1059.405000px;}
.y6_c00270{bottom:1060.245000px;}
.y3_c00270{bottom:1061.745000px;}
.y5_c00270{bottom:1062.630000px;}
.y7_c00270{bottom:1063.470000px;}
.y4_c00270{bottom:1063.905000px;}
.y8_c00270{bottom:1064.970000px;}
.y2_c00270{bottom:1099.905000px;}
.y1_c00270{bottom:1102.050000px;}
.h9_c00270{height:4.206533px;}
.h8_c00270{height:16.752334px;}
.h4_c00270{height:23.025234px;}
.h1_c00270{height:25.091602px;}
.h5_c00270{height:31.364502px;}
.h2_c00270{height:35.571035px;}
.h6_c00270{height:39.777568px;}
.h3_c00270{height:43.910303px;}
.h7_c00270{height:48.116836px;}
.h0_c00270{height:1335.000000px;}
.w0_c00270{width:880.500000px;}
.x0_c00270{left:0.000000px;}
.x6f_c00270{left:151.500000px;}
.x33_c00270{left:152.580000px;}
.x3_c00270{left:154.275000px;}
.xe9_c00270{left:165.420000px;}
.xf0_c00270{left:166.920000px;}
.x8b_c00270{left:168.000000px;}
.x26_c00270{left:175.500000px;}
.xb7_c00270{left:177.000000px;}
.x9b_c00270{left:181.500000px;}
.x34_c00270{left:183.000000px;}
.x7b_c00270{left:184.500000px;}
.x57_c00270{left:187.500000px;}
.xe0_c00270{left:189.000000px;}
.x70_c00270{left:190.080000px;}
.xb8_c00270{left:191.580000px;}
.xb2_c00270{left:193.080000px;}
.xed_c00270{left:195.000000px;}
.x12_c00270{left:196.500000px;}
.x3f_c00270{left:198.000000px;}
.x4_c00270{left:199.500000px;}
.x8c_c00270{left:201.000000px;}
.x35_c00270{left:202.920000px;}
.xbd_c00270{left:205.500000px;}
.xdd_c00270{left:206.580000px;}
.x69_c00270{left:208.500000px;}
.x40_c00270{left:211.080000px;}
.x13_c00270{left:213.420000px;}
.x83_c00270{left:214.500000px;}
.x27_c00270{left:217.920000px;}
.xc9_c00270{left:220.080000px;}
.xf7_c00270{left:222.420000px;}
.xf2_c00270{left:225.645000px;}
.x9c_c00270{left:228.000000px;}
.x71_c00270{left:231.420000px;}
.xe1_c00270{left:234.000000px;}
.x14_c00270{left:238.500000px;}
.x58_c00270{left:241.080000px;}
.x28_c00270{left:242.580000px;}
.x5_c00270{left:246.420000px;}
.x60_c00270{left:247.500000px;}
.x1d_c00270{left:249.000000px;}
.xca_c00270{left:250.500000px;}
.xb9_c00270{left:252.000000px;}
.xf5_c00270{left:258.000000px;}
.xa8_c00270{left:259.500000px;}
.x7c_c00270{left:262.500000px;}
.x41_c00270{left:265.500000px;}
.xc3_c00270{left:270.000000px;}
.xe7_c00270{left:271.500000px;}
.x72_c00270{left:274.080000px;}
.x6_c00270{left:277.920000px;}
.x84_c00270{left:279.000000px;}
.x96_c00270{left:280.500000px;}
.x4a_c00270{left:283.080000px;}
.xb3_c00270{left:286.500000px;}
.x15_c00270{left:290.580000px;}
.xc4_c00270{left:292.080000px;}
.xe5_c00270{left:294.000000px;}
.xee_c00270{left:297.000000px;}
.x61_c00270{left:302.355000px;}
.x29_c00270{left:304.080000px;}
.x85_c00270{left:305.580000px;}
.x16_c00270{left:307.920000px;}
.x7d_c00270{left:310.920000px;}
.xa9_c00270{left:312.420000px;}
.xd2_c00270{left:313.920000px;}
.x36_c00270{left:315.000000px;}
.x1e_c00270{left:316.920000px;}
.x9d_c00270{left:318.420000px;}
.x7_c00270{left:319.920000px;}
.x59_c00270{left:322.500000px;}
.xa2_c00270{left:324.420000px;}
.xe6_c00270{left:325.920000px;}
.xb4_c00270{left:327.000000px;}
.x73_c00270{left:328.500000px;}
.x42_c00270{left:332.580000px;}
.x8d_c00270{left:334.500000px;}
.x17_c00270{left:336.000000px;}
.x97_c00270{left:337.920000px;}
.xa3_c00270{left:342.420000px;}
.x37_c00270{left:343.920000px;}
.xd9_c00270{left:345.000000px;}
.x74_c00270{left:346.500000px;}
.xd3_c00270{left:348.000000px;}
.x4b_c00270{left:349.500000px;}
.xef_c00270{left:351.420000px;}
.xe2_c00270{left:352.500000px;}
.x2a_c00270{left:353.580000px;}
.xcb_c00270{left:357.000000px;}
.xaa_c00270{left:358.500000px;}
.x86_c00270{left:360.420000px;}
.x8_c00270{left:361.920000px;}
.xbe_c00270{left:363.000000px;}
.xd4_c00270{left:367.920000px;}
.x6a_c00270{left:370.080000px;}
.x18_c00270{left:372.645000px;}
.x75_c00270{left:373.920000px;}
.x7e_c00270{left:375.420000px;}
.x5a_c00270{left:376.500000px;}
.xab_c00270{left:378.000000px;}
.xf3_c00270{left:383.580000px;}
.x8e_c00270{left:385.080000px;}
.x43_c00270{left:389.580000px;}
.x2b_c00270{left:391.080000px;}
.x87_c00270{left:394.920000px;}
.x38_c00270{left:396.000000px;}
.xa4_c00270{left:397.920000px;}
.xda_c00270{left:400.920000px;}
.x1f_c00270{left:402.000000px;}
.x7f_c00270{left:403.500000px;}
.x1_c00270{left:406.500000px;}
.x8f_c00270{left:408.000000px;}
.xcc_c00270{left:411.420000px;}
.x62_c00270{left:417.420000px;}
.x9_c00270{left:420.000000px;}
.x98_c00270{left:421.080000px;}
.x2c_c00270{left:422.580000px;}
.xba_c00270{left:424.500000px;}
.x76_c00270{left:429.000000px;}
.x4c_c00270{left:430.500000px;}
.x44_c00270{left:432.000000px;}
.x19_c00270{left:433.080000px;}
.xcd_c00270{left:435.420000px;}
.x20_c00270{left:438.420000px;}
.xa_c00270{left:439.500000px;}
.xbb_c00270{left:444.000000px;}
.x39_c00270{left:445.920000px;}
.xbf_c00270{left:448.500000px;}
.x5b_c00270{left:450.420000px;}
.x4d_c00270{left:451.920000px;}
.x2d_c00270{left:453.420000px;}
.x51_c00270{left:454.920000px;}
.xc5_c00270{left:459.000000px;}
.x77_c00270{left:460.080000px;}
.xce_c00270{left:462.000000px;}
.xd5_c00270{left:463.500000px;}
.x63_c00270{left:465.000000px;}
.xb_c00270{left:468.000000px;}
.x80_c00270{left:469.500000px;}
.xdf_c00270{left:470.580000px;}
.x3a_c00270{left:473.580000px;}
.x88_c00270{left:475.920000px;}
.xea_c00270{left:477.000000px;}
.x1a_c00270{left:478.500000px;}
.x52_c00270{left:483.000000px;}
.x45_c00270{left:484.500000px;}
.xa5_c00270{left:487.080000px;}
.x90_c00270{left:488.580000px;}
.x5c_c00270{left:490.500000px;}
.xac_c00270{left:491.580000px;}
.xeb_c00270{left:493.500000px;}
.xc6_c00270{left:495.000000px;}
.x99_c00270{left:496.500000px;}
.x9e_c00270{left:498.000000px;}
.x21_c00270{left:499.080000px;}
.xe3_c00270{left:501.855000px;}
.xcf_c00270{left:505.500000px;}
.x53_c00270{left:506.580000px;}
.x1b_c00270{left:508.500000px;}
.x89_c00270{left:510.000000px;}
.x78_c00270{left:511.500000px;}
.xc0_c00270{left:513.000000px;}
.xc_c00270{left:516.420000px;}
.x6b_c00270{left:517.500000px;}
.x91_c00270{left:519.000000px;}
.x64_c00270{left:520.500000px;}
.xe8_c00270{left:526.500000px;}
.x22_c00270{left:528.000000px;}
.xf1_c00270{left:529.500000px;}
.x9f_c00270{left:532.500000px;}
.xc1_c00270{left:535.500000px;}
.x3b_c00270{left:537.000000px;}
.x46_c00270{left:538.500000px;}
.x1c_c00270{left:540.420000px;}
.xa6_c00270{left:543.000000px;}
.xd_c00270{left:544.080000px;}
.x81_c00270{left:546.000000px;}
.x2e_c00270{left:547.080000px;}
.xd0_c00270{left:550.500000px;}
.xad_c00270{left:551.580000px;}
.xdb_c00270{left:556.500000px;}
.x47_c00270{left:558.000000px;}
.x8a_c00270{left:559.500000px;}
.x92_c00270{left:562.080000px;}
.x65_c00270{left:563.580000px;}
.xa0_c00270{left:565.500000px;}
.x4e_c00270{left:567.000000px;}
.x23_c00270{left:568.080000px;}
.x54_c00270{left:571.500000px;}
.xd6_c00270{left:573.000000px;}
.x5d_c00270{left:574.500000px;}
.x3c_c00270{left:576.000000px;}
.x2f_c00270{left:577.500000px;}
.xb5_c00270{left:581.580000px;}
.xae_c00270{left:583.500000px;}
.xf4_c00270{left:586.080000px;}
.xd7_c00270{left:589.500000px;}
.x66_c00270{left:591.000000px;}
.x55_c00270{left:592.920000px;}
.x79_c00270{left:594.000000px;}
.xa7_c00270{left:595.920000px;}
.x3d_c00270{left:598.920000px;}
.xaf_c00270{left:600.000000px;}
.x9a_c00270{left:604.500000px;}
.xec_c00270{left:605.580000px;}
.xe_c00270{left:607.500000px;}
.x67_c00270{left:611.580000px;}
.xbc_c00270{left:614.580000px;}
.x30_c00270{left:618.420000px;}
.x24_c00270{left:622.500000px;}
.xf_c00270{left:624.420000px;}
.x6c_c00270{left:626.580000px;}
.x5e_c00270{left:628.080000px;}
.x93_c00270{left:629.580000px;}
.x68_c00270{left:631.500000px;}
.xc7_c00270{left:633.000000px;}
.x3e_c00270{left:634.500000px;}
.xb6_c00270{left:640.080000px;}
.x31_c00270{left:643.500000px;}
.xdc_c00270{left:645.420000px;}
.x6d_c00270{left:646.920000px;}
.x82_c00270{left:648.000000px;}
.xde_c00270{left:652.920000px;}
.xd8_c00270{left:655.500000px;}
.x4f_c00270{left:656.580000px;}
.x5f_c00270{left:658.500000px;}
.xc2_c00270{left:660.000000px;}
.x10_c00270{left:661.500000px;}
.x7a_c00270{left:667.080000px;}
.x48_c00270{left:668.580000px;}
.xc8_c00270{left:670.500000px;}
.xb0_c00270{left:672.000000px;}
.x11_c00270{left:675.000000px;}
.x94_c00270{left:679.500000px;}
.x25_c00270{left:682.080000px;}
.x6e_c00270{left:688.500000px;}
.x50_c00270{left:691.500000px;}
.x49_c00270{left:692.580000px;}
.x32_c00270{left:694.920000px;}
.xb1_c00270{left:696.000000px;}
.xe4_c00270{left:697.080000px;}
.xf6_c00270{left:702.420000px;}
.x56_c00270{left:703.500000px;}
.xd1_c00270{left:704.580000px;}
.x2_c00270{left:706.080000px;}
.x95_c00270{left:715.500000px;}
.xa1_c00270{left:718.500000px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.ls0_c00270{letter-spacing:0.000000pt;}
.ws0_c00270{word-spacing:-4.995327pt;}
.ws1_c00270{word-spacing:-0.307829pt;}
.ws3_c00270{word-spacing:0.000000pt;}
.ws2_c00270{word-spacing:4.885100pt;}
.fs8_c00270{font-size:3.040000pt;}
.fs7_c00270{font-size:12.106667pt;}
.fs3_c00270{font-size:16.640000pt;}
.fs0_c00270{font-size:18.133333pt;}
.fs4_c00270{font-size:22.666667pt;}
.fs1_c00270{font-size:25.706667pt;}
.fs5_c00270{font-size:28.746667pt;}
.fs2_c00270{font-size:31.733333pt;}
.fs6_c00270{font-size:34.773333pt;}
.y0_c00270{bottom:0.000000pt;}
.ybd_c00270{bottom:241.693333pt;}
.ybc_c00270{bottom:243.400000pt;}
.ybb_c00270{bottom:257.693333pt;}
.yba_c00270{bottom:259.026667pt;}
.yb7_c00270{bottom:259.773333pt;}
.yb9_c00270{bottom:260.733333pt;}
.yb8_c00270{bottom:263.040000pt;}
.yb5_c00270{bottom:276.160000pt;}
.yb4_c00270{bottom:277.106667pt;}
.yb3_c00270{bottom:279.026667pt;}
.yb6_c00270{bottom:279.973333pt;}
.yad_c00270{bottom:294.440000pt;}
.yae_c00270{bottom:295.773333pt;}
.yb2_c00270{bottom:296.360000pt;}
.yb1_c00270{bottom:296.560000pt;}
.yb0_c00270{bottom:297.693333pt;}
.yaf_c00270{bottom:297.706667pt;}
.yaa_c00270{bottom:319.973333pt;}
.ya7_c00270{bottom:320.933333pt;}
.ya9_c00270{bottom:321.693333pt;}
.ya8_c00270{bottom:321.893333pt;}
.yac_c00270{bottom:322.840000pt;}
.yab_c00270{bottom:323.600000pt;}
.ya6_c00270{bottom:332.733333pt;}
.ya3_c00270{bottom:333.693333pt;}
.ya2_c00270{bottom:334.066667pt;}
.ya5_c00270{bottom:335.600000pt;}
.ya4_c00270{bottom:335.973333pt;}
.ya0_c00270{bottom:350.640000pt;}
.y9f_c00270{bottom:351.026667pt;}
.ya1_c00270{bottom:351.400000pt;}
.y9e_c00270{bottom:353.306667pt;}
.y9d_c00270{bottom:373.106667pt;}
.y9c_c00270{bottom:375.026667pt;}
.y9b_c00270{bottom:417.106667pt;}
.y9a_c00270{bottom:418.066667pt;}
.y99_c00270{bottom:419.026667pt;}
.y92_c00270{bottom:433.693333pt;}
.y96_c00270{bottom:434.440000pt;}
.y97_c00270{bottom:435.400000pt;}
.y93_c00270{bottom:435.773333pt;}
.y98_c00270{bottom:436.360000pt;}
.y95_c00270{bottom:436.560000pt;}
.y94_c00270{bottom:437.306667pt;}
.y91_c00270{bottom:438.640000pt;}
.y8f_c00270{bottom:451.026667pt;}
.y90_c00270{bottom:453.106667pt;}
.y8e_c00270{bottom:453.893333pt;}
.y8d_c00270{bottom:455.026667pt;}
.y89_c00270{bottom:470.440000pt;}
.y8c_c00270{bottom:471.226667pt;}
.y8a_c00270{bottom:471.400000pt;}
.y88_c00270{bottom:472.360000pt;}
.y8b_c00270{bottom:472.560000pt;}
.y86_c00270{bottom:485.693333pt;}
.y85_c00270{bottom:486.640000pt;}
.y84_c00270{bottom:487.026667pt;}
.y83_c00270{bottom:487.773333pt;}
.y82_c00270{bottom:488.560000pt;}
.y87_c00270{bottom:489.306667pt;}
.y81_c00270{bottom:489.693333pt;}
.y80_c00270{bottom:505.106667pt;}
.y7d_c00270{bottom:505.893333pt;}
.y7e_c00270{bottom:507.026667pt;}
.y7f_c00270{bottom:507.973333pt;}
.y7b_c00270{bottom:522.440000pt;}
.y7c_c00270{bottom:523.226667pt;}
.y7a_c00270{bottom:524.360000pt;}
.y78_c00270{bottom:539.773333pt;}
.y79_c00270{bottom:539.973333pt;}
.y75_c00270{bottom:540.733333pt;}
.y76_c00270{bottom:541.106667pt;}
.y74_c00270{bottom:541.693333pt;}
.y77_c00270{bottom:541.893333pt;}
.y70_c00270{bottom:558.440000pt;}
.y72_c00270{bottom:559.026667pt;}
.y73_c00270{bottom:559.973333pt;}
.y71_c00270{bottom:560.360000pt;}
.y6b_c00270{bottom:575.773333pt;}
.y6f_c00270{bottom:576.360000pt;}
.y6c_c00270{bottom:576.560000pt;}
.y6e_c00270{bottom:577.306667pt;}
.y6d_c00270{bottom:577.693333pt;}
.y6a_c00270{bottom:593.106667pt;}
.y69_c00270{bottom:593.893333pt;}
.y67_c00270{bottom:594.066667pt;}
.y66_c00270{bottom:595.026667pt;}
.y68_c00270{bottom:595.973333pt;}
.y65_c00270{bottom:612.360000pt;}
.y64_c00270{bottom:613.306667pt;}
.y60_c00270{bottom:627.773333pt;}
.y5f_c00270{bottom:627.973333pt;}
.y63_c00270{bottom:629.306667pt;}
.y5e_c00270{bottom:629.693333pt;}
.y61_c00270{bottom:629.893333pt;}
.y62_c00270{bottom:630.640000pt;}
.y5d_c00270{bottom:645.106667pt;}
.y5c_c00270{bottom:646.066667pt;}
.y5a_c00270{bottom:647.026667pt;}
.y5b_c00270{bottom:647.226667pt;}
.y57_c00270{bottom:662.440000pt;}
.y59_c00270{bottom:663.400000pt;}
.y56_c00270{bottom:664.360000pt;}
.y55_c00270{bottom:664.560000pt;}
.y58_c00270{bottom:665.306667pt;}
.y52_c00270{bottom:679.026667pt;}
.y53_c00270{bottom:679.773333pt;}
.y54_c00270{bottom:681.106667pt;}
.y51_c00270{bottom:682.066667pt;}
.y50_c00270{bottom:683.026667pt;}
.y4f_c00270{bottom:698.440000pt;}
.y4e_c00270{bottom:699.973333pt;}
.y4d_c00270{bottom:700.360000pt;}
.y4c_c00270{bottom:715.400000pt;}
.y49_c00270{bottom:715.773333pt;}
.y4a_c00270{bottom:717.693333pt;}
.y4b_c00270{bottom:718.640000pt;}
.y48_c00270{bottom:732.733333pt;}
.y47_c00270{bottom:733.106667pt;}
.y46_c00270{bottom:734.640000pt;}
.y45_c00270{bottom:735.026667pt;}
.y44_c00270{bottom:735.973333pt;}
.y40_c00270{bottom:751.773333pt;}
.y43_c00270{bottom:751.973333pt;}
.y42_c00270{bottom:752.360000pt;}
.y3f_c00270{bottom:752.560000pt;}
.y41_c00270{bottom:753.306667pt;}
.y3e_c00270{bottom:753.693333pt;}
.y3a_c00270{bottom:767.973333pt;}
.y37_c00270{bottom:769.106667pt;}
.y3d_c00270{bottom:769.693333pt;}
.y39_c00270{bottom:769.893333pt;}
.y3c_c00270{bottom:770.066667pt;}
.y3b_c00270{bottom:770.640000pt;}
.y38_c00270{bottom:771.026667pt;}
.y33_c00270{bottom:785.306667pt;}
.y36_c00270{bottom:786.440000pt;}
.y32_c00270{bottom:787.226667pt;}
.y35_c00270{bottom:787.973333pt;}
.y34_c00270{bottom:788.360000pt;}
.y2f_c00270{bottom:803.773333pt;}
.y30_c00270{bottom:804.560000pt;}
.y31_c00270{bottom:804.733333pt;}
.y2e_c00270{bottom:805.693333pt;}
.y29_c00270{bottom:820.733333pt;}
.y28_c00270{bottom:821.106667pt;}
.y2d_c00270{bottom:821.693333pt;}
.y2b_c00270{bottom:821.893333pt;}
.y2c_c00270{bottom:822.640000pt;}
.y2a_c00270{bottom:823.026667pt;}
.y27_c00270{bottom:837.493333pt;}
.y26_c00270{bottom:838.440000pt;}
.y25_c00270{bottom:840.360000pt;}
.y21_c00270{bottom:855.773333pt;}
.y22_c00270{bottom:857.306667pt;}
.y20_c00270{bottom:857.693333pt;}
.y23_c00270{bottom:857.893333pt;}
.y24_c00270{bottom:858.640000pt;}
.y1d_c00270{bottom:872.360000pt;}
.y1f_c00270{bottom:872.733333pt;}
.y1b_c00270{bottom:873.106667pt;}
.y1e_c00270{bottom:874.440000pt;}
.y1a_c00270{bottom:875.026667pt;}
.y1c_c00270{bottom:875.226667pt;}
.y19_c00270{bottom:875.973333pt;}
.y17_c00270{bottom:889.693333pt;}
.y15_c00270{bottom:892.360000pt;}
.y18_c00270{bottom:892.560000pt;}
.y16_c00270{bottom:893.306667pt;}
.y14_c00270{bottom:907.026667pt;}
.y12_c00270{bottom:907.773333pt;}
.y13_c00270{bottom:908.733333pt;}
.y11_c00270{bottom:909.693333pt;}
.y10_c00270{bottom:911.026667pt;}
.yd_c00270{bottom:925.493333pt;}
.yb_c00270{bottom:926.066667pt;}
.yc_c00270{bottom:926.440000pt;}
.yf_c00270{bottom:927.026667pt;}
.ye_c00270{bottom:927.973333pt;}
.ya_c00270{bottom:928.360000pt;}
.y9_c00270{bottom:941.693333pt;}
.y6_c00270{bottom:942.440000pt;}
.y3_c00270{bottom:943.773333pt;}
.y5_c00270{bottom:944.560000pt;}
.y7_c00270{bottom:945.306667pt;}
.y4_c00270{bottom:945.693333pt;}
.y8_c00270{bottom:946.640000pt;}
.y2_c00270{bottom:977.693333pt;}
.y1_c00270{bottom:979.600000pt;}
.h9_c00270{height:3.739141pt;}
.h8_c00270{height:14.890964pt;}
.h4_c00270{height:20.466875pt;}
.h1_c00270{height:22.303646pt;}
.h5_c00270{height:27.879557pt;}
.h2_c00270{height:31.618698pt;}
.h6_c00270{height:35.357839pt;}
.h3_c00270{height:39.031380pt;}
.h7_c00270{height:42.770521pt;}
.h0_c00270{height:1186.666667pt;}
.w0_c00270{width:782.666667pt;}
.x0_c00270{left:0.000000pt;}
.x6f_c00270{left:134.666667pt;}
.x33_c00270{left:135.626667pt;}
.x3_c00270{left:137.133333pt;}
.xe9_c00270{left:147.040000pt;}
.xf0_c00270{left:148.373333pt;}
.x8b_c00270{left:149.333333pt;}
.x26_c00270{left:156.000000pt;}
.xb7_c00270{left:157.333333pt;}
.x9b_c00270{left:161.333333pt;}
.x34_c00270{left:162.666667pt;}
.x7b_c00270{left:164.000000pt;}
.x57_c00270{left:166.666667pt;}
.xe0_c00270{left:168.000000pt;}
.x70_c00270{left:168.960000pt;}
.xb8_c00270{left:170.293333pt;}
.xb2_c00270{left:171.626667pt;}
.xed_c00270{left:173.333333pt;}
.x12_c00270{left:174.666667pt;}
.x3f_c00270{left:176.000000pt;}
.x4_c00270{left:177.333333pt;}
.x8c_c00270{left:178.666667pt;}
.x35_c00270{left:180.373333pt;}
.xbd_c00270{left:182.666667pt;}
.xdd_c00270{left:183.626667pt;}
.x69_c00270{left:185.333333pt;}
.x40_c00270{left:187.626667pt;}
.x13_c00270{left:189.706667pt;}
.x83_c00270{left:190.666667pt;}
.x27_c00270{left:193.706667pt;}
.xc9_c00270{left:195.626667pt;}
.xf7_c00270{left:197.706667pt;}
.xf2_c00270{left:200.573333pt;}
.x9c_c00270{left:202.666667pt;}
.x71_c00270{left:205.706667pt;}
.xe1_c00270{left:208.000000pt;}
.x14_c00270{left:212.000000pt;}
.x58_c00270{left:214.293333pt;}
.x28_c00270{left:215.626667pt;}
.x5_c00270{left:219.040000pt;}
.x60_c00270{left:220.000000pt;}
.x1d_c00270{left:221.333333pt;}
.xca_c00270{left:222.666667pt;}
.xb9_c00270{left:224.000000pt;}
.xf5_c00270{left:229.333333pt;}
.xa8_c00270{left:230.666667pt;}
.x7c_c00270{left:233.333333pt;}
.x41_c00270{left:236.000000pt;}
.xc3_c00270{left:240.000000pt;}
.xe7_c00270{left:241.333333pt;}
.x72_c00270{left:243.626667pt;}
.x6_c00270{left:247.040000pt;}
.x84_c00270{left:248.000000pt;}
.x96_c00270{left:249.333333pt;}
.x4a_c00270{left:251.626667pt;}
.xb3_c00270{left:254.666667pt;}
.x15_c00270{left:258.293333pt;}
.xc4_c00270{left:259.626667pt;}
.xe5_c00270{left:261.333333pt;}
.xee_c00270{left:264.000000pt;}
.x61_c00270{left:268.760000pt;}
.x29_c00270{left:270.293333pt;}
.x85_c00270{left:271.626667pt;}
.x16_c00270{left:273.706667pt;}
.x7d_c00270{left:276.373333pt;}
.xa9_c00270{left:277.706667pt;}
.xd2_c00270{left:279.040000pt;}
.x36_c00270{left:280.000000pt;}
.x1e_c00270{left:281.706667pt;}
.x9d_c00270{left:283.040000pt;}
.x7_c00270{left:284.373333pt;}
.x59_c00270{left:286.666667pt;}
.xa2_c00270{left:288.373333pt;}
.xe6_c00270{left:289.706667pt;}
.xb4_c00270{left:290.666667pt;}
.x73_c00270{left:292.000000pt;}
.x42_c00270{left:295.626667pt;}
.x8d_c00270{left:297.333333pt;}
.x17_c00270{left:298.666667pt;}
.x97_c00270{left:300.373333pt;}
.xa3_c00270{left:304.373333pt;}
.x37_c00270{left:305.706667pt;}
.xd9_c00270{left:306.666667pt;}
.x74_c00270{left:308.000000pt;}
.xd3_c00270{left:309.333333pt;}
.x4b_c00270{left:310.666667pt;}
.xef_c00270{left:312.373333pt;}
.xe2_c00270{left:313.333333pt;}
.x2a_c00270{left:314.293333pt;}
.xcb_c00270{left:317.333333pt;}
.xaa_c00270{left:318.666667pt;}
.x86_c00270{left:320.373333pt;}
.x8_c00270{left:321.706667pt;}
.xbe_c00270{left:322.666667pt;}
.xd4_c00270{left:327.040000pt;}
.x6a_c00270{left:328.960000pt;}
.x18_c00270{left:331.240000pt;}
.x75_c00270{left:332.373333pt;}
.x7e_c00270{left:333.706667pt;}
.x5a_c00270{left:334.666667pt;}
.xab_c00270{left:336.000000pt;}
.xf3_c00270{left:340.960000pt;}
.x8e_c00270{left:342.293333pt;}
.x43_c00270{left:346.293333pt;}
.x2b_c00270{left:347.626667pt;}
.x87_c00270{left:351.040000pt;}
.x38_c00270{left:352.000000pt;}
.xa4_c00270{left:353.706667pt;}
.xda_c00270{left:356.373333pt;}
.x1f_c00270{left:357.333333pt;}
.x7f_c00270{left:358.666667pt;}
.x1_c00270{left:361.333333pt;}
.x8f_c00270{left:362.666667pt;}
.xcc_c00270{left:365.706667pt;}
.x62_c00270{left:371.040000pt;}
.x9_c00270{left:373.333333pt;}
.x98_c00270{left:374.293333pt;}
.x2c_c00270{left:375.626667pt;}
.xba_c00270{left:377.333333pt;}
.x76_c00270{left:381.333333pt;}
.x4c_c00270{left:382.666667pt;}
.x44_c00270{left:384.000000pt;}
.x19_c00270{left:384.960000pt;}
.xcd_c00270{left:387.040000pt;}
.x20_c00270{left:389.706667pt;}
.xa_c00270{left:390.666667pt;}
.xbb_c00270{left:394.666667pt;}
.x39_c00270{left:396.373333pt;}
.xbf_c00270{left:398.666667pt;}
.x5b_c00270{left:400.373333pt;}
.x4d_c00270{left:401.706667pt;}
.x2d_c00270{left:403.040000pt;}
.x51_c00270{left:404.373333pt;}
.xc5_c00270{left:408.000000pt;}
.x77_c00270{left:408.960000pt;}
.xce_c00270{left:410.666667pt;}
.xd5_c00270{left:412.000000pt;}
.x63_c00270{left:413.333333pt;}
.xb_c00270{left:416.000000pt;}
.x80_c00270{left:417.333333pt;}
.xdf_c00270{left:418.293333pt;}
.x3a_c00270{left:420.960000pt;}
.x88_c00270{left:423.040000pt;}
.xea_c00270{left:424.000000pt;}
.x1a_c00270{left:425.333333pt;}
.x52_c00270{left:429.333333pt;}
.x45_c00270{left:430.666667pt;}
.xa5_c00270{left:432.960000pt;}
.x90_c00270{left:434.293333pt;}
.x5c_c00270{left:436.000000pt;}
.xac_c00270{left:436.960000pt;}
.xeb_c00270{left:438.666667pt;}
.xc6_c00270{left:440.000000pt;}
.x99_c00270{left:441.333333pt;}
.x9e_c00270{left:442.666667pt;}
.x21_c00270{left:443.626667pt;}
.xe3_c00270{left:446.093333pt;}
.xcf_c00270{left:449.333333pt;}
.x53_c00270{left:450.293333pt;}
.x1b_c00270{left:452.000000pt;}
.x89_c00270{left:453.333333pt;}
.x78_c00270{left:454.666667pt;}
.xc0_c00270{left:456.000000pt;}
.xc_c00270{left:459.040000pt;}
.x6b_c00270{left:460.000000pt;}
.x91_c00270{left:461.333333pt;}
.x64_c00270{left:462.666667pt;}
.xe8_c00270{left:468.000000pt;}
.x22_c00270{left:469.333333pt;}
.xf1_c00270{left:470.666667pt;}
.x9f_c00270{left:473.333333pt;}
.xc1_c00270{left:476.000000pt;}
.x3b_c00270{left:477.333333pt;}
.x46_c00270{left:478.666667pt;}
.x1c_c00270{left:480.373333pt;}
.xa6_c00270{left:482.666667pt;}
.xd_c00270{left:483.626667pt;}
.x81_c00270{left:485.333333pt;}
.x2e_c00270{left:486.293333pt;}
.xd0_c00270{left:489.333333pt;}
.xad_c00270{left:490.293333pt;}
.xdb_c00270{left:494.666667pt;}
.x47_c00270{left:496.000000pt;}
.x8a_c00270{left:497.333333pt;}
.x92_c00270{left:499.626667pt;}
.x65_c00270{left:500.960000pt;}
.xa0_c00270{left:502.666667pt;}
.x4e_c00270{left:504.000000pt;}
.x23_c00270{left:504.960000pt;}
.x54_c00270{left:508.000000pt;}
.xd6_c00270{left:509.333333pt;}
.x5d_c00270{left:510.666667pt;}
.x3c_c00270{left:512.000000pt;}
.x2f_c00270{left:513.333333pt;}
.xb5_c00270{left:516.960000pt;}
.xae_c00270{left:518.666667pt;}
.xf4_c00270{left:520.960000pt;}
.xd7_c00270{left:524.000000pt;}
.x66_c00270{left:525.333333pt;}
.x55_c00270{left:527.040000pt;}
.x79_c00270{left:528.000000pt;}
.xa7_c00270{left:529.706667pt;}
.x3d_c00270{left:532.373333pt;}
.xaf_c00270{left:533.333333pt;}
.x9a_c00270{left:537.333333pt;}
.xec_c00270{left:538.293333pt;}
.xe_c00270{left:540.000000pt;}
.x67_c00270{left:543.626667pt;}
.xbc_c00270{left:546.293333pt;}
.x30_c00270{left:549.706667pt;}
.x24_c00270{left:553.333333pt;}
.xf_c00270{left:555.040000pt;}
.x6c_c00270{left:556.960000pt;}
.x5e_c00270{left:558.293333pt;}
.x93_c00270{left:559.626667pt;}
.x68_c00270{left:561.333333pt;}
.xc7_c00270{left:562.666667pt;}
.x3e_c00270{left:564.000000pt;}
.xb6_c00270{left:568.960000pt;}
.x31_c00270{left:572.000000pt;}
.xdc_c00270{left:573.706667pt;}
.x6d_c00270{left:575.040000pt;}
.x82_c00270{left:576.000000pt;}
.xde_c00270{left:580.373333pt;}
.xd8_c00270{left:582.666667pt;}
.x4f_c00270{left:583.626667pt;}
.x5f_c00270{left:585.333333pt;}
.xc2_c00270{left:586.666667pt;}
.x10_c00270{left:588.000000pt;}
.x7a_c00270{left:592.960000pt;}
.x48_c00270{left:594.293333pt;}
.xc8_c00270{left:596.000000pt;}
.xb0_c00270{left:597.333333pt;}
.x11_c00270{left:600.000000pt;}
.x94_c00270{left:604.000000pt;}
.x25_c00270{left:606.293333pt;}
.x6e_c00270{left:612.000000pt;}
.x50_c00270{left:614.666667pt;}
.x49_c00270{left:615.626667pt;}
.x32_c00270{left:617.706667pt;}
.xb1_c00270{left:618.666667pt;}
.xe4_c00270{left:619.626667pt;}
.xf6_c00270{left:624.373333pt;}
.x56_c00270{left:625.333333pt;}
.xd1_c00270{left:626.293333pt;}
.x2_c00270{left:627.626667pt;}
.x95_c00270{left:636.000000pt;}
.xa1_c00270{left:638.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_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_df56aa79c323235229dc3cf7.woff2')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m46_c00271{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m11_c00271{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m44_c00271{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m1d_c00271{transform:matrix(0.360924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360924,0.000000,0.000000,0.250000,0,0);}
.m3f_c00271{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m69_c00271{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m1b_c00271{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m5d_c00271{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mc0_c00271{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m31_c00271{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m101_c00271{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m19_c00271{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m5_c00271{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.me3_c00271{transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);}
.m89_c00271{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m3b_c00271{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.mac_c00271{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.me8_c00271{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m18_c00271{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m24_c00271{transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);}
.maa_c00271{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m33_c00271{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.ma4_c00271{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.mc_c00271{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.mba_c00271{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.md5_c00271{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m34_c00271{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m68_c00271{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.ma7_c00271{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.ma3_c00271{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m84_c00271{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.mcd_c00271{transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);}
.ma1_c00271{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m1f_c00271{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m55_c00271{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m3e_c00271{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.me5_c00271{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m86_c00271{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.md3_c00271{transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);}
.m6d_c00271{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m67_c00271{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m75_c00271{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.m91_c00271{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mf6_c00271{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.mde_c00271{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m15_c00271{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m10e_c00271{transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);}
.m102_c00271{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.m88_c00271{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mb2_c00271{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.mb8_c00271{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.me7_c00271{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.ma5_c00271{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m96_c00271{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.maf_c00271{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m10d_c00271{transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);}
.m6b_c00271{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m95_c00271{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.mb1_c00271{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m74_c00271{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.mf9_c00271{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.mb5_c00271{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m6_c00271{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.ma6_c00271{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.ma9_c00271{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m57_c00271{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.mfa_c00271{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m39_c00271{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.mda_c00271{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.mc1_c00271{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m4c_c00271{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.md9_c00271{transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);}
.m81_c00271{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m9b_c00271{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.me9_c00271{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m2c_c00271{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m6a_c00271{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mc9_c00271{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m77_c00271{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m26_c00271{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.ma_c00271{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m7_c00271{transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);}
.mdd_c00271{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m65_c00271{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mc4_c00271{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m10b_c00271{transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);}
.m2a_c00271{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00271{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.mfd_c00271{transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);}
.mb_c00271{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m104_c00271{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.m10_c00271{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.md_c00271{transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);}
.mc7_c00271{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.me0_c00271{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m61_c00271{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.mf4_c00271{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.me1_c00271{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m66_c00271{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mdc_c00271{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m20_c00271{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m28_c00271{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m105_c00271{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.mf7_c00271{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m90_c00271{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m9_c00271{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.mca_c00271{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.me_c00271{transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);}
.mc6_c00271{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m53_c00271{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m1_c00271{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mbd_c00271{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m110_c00271{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.m5b_c00271{transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);}
.m97_c00271{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m38_c00271{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m8a_c00271{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m1e_c00271{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);}
.m3d_c00271{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m6c_c00271{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m54_c00271{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m10f_c00271{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.me6_c00271{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m87_c00271{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mf8_c00271{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.mbc_c00271{transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);}
.mc3_c00271{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m92_c00271{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m49_c00271{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m17_c00271{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m78_c00271{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m107_c00271{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.mad_c00271{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mef_c00271{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.mf5_c00271{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);}
.m7a_c00271{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.md4_c00271{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m4b_c00271{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m7c_c00271{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m36_c00271{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m58_c00271{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mce_c00271{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);}
.m3a_c00271{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m71_c00271{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m23_c00271{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m9c_c00271{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m29_c00271{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m1c_c00271{transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);}
.m1a_c00271{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m3c_c00271{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m5c_c00271{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.mb3_c00271{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mbf_c00271{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m42_c00271{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mdb_c00271{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m40_c00271{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m4f_c00271{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m10a_c00271{transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);}
.m4e_c00271{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m50_c00271{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m106_c00271{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);}
.mee_c00271{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m10c_c00271{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m2_c00271{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m22_c00271{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.me2_c00271{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m48_c00271{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m99_c00271{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m109_c00271{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);}
.m5f_c00271{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m21_c00271{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mfc_c00271{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m112_c00271{transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);}
.mf_c00271{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mf2_c00271{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m52_c00271{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m70_c00271{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m56_c00271{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mb4_c00271{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m9a_c00271{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m73_c00271{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m103_c00271{transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);}
.m12_c00271{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m45_c00271{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.md7_c00271{transform:matrix(0.561765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561765,0.000000,0.000000,0.250000,0,0);}
.md8_c00271{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m60_c00271{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.md1_c00271{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.m94_c00271{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m25_c00271{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.ma8_c00271{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mb7_c00271{transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);}
.m13_c00271{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.mbb_c00271{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);}
.m37_c00271{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m113_c00271{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m98_c00271{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m47_c00271{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m2b_c00271{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.m7b_c00271{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m9d_c00271{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m2f_c00271{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.m9f_c00271{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.mec_c00271{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);}
.mc5_c00271{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m2e_c00271{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mff_c00271{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m8c_c00271{transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);}
.m43_c00271{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m7e_c00271{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.ma0_c00271{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m9e_c00271{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.mf0_c00271{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m62_c00271{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m30_c00271{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);}
.m63_c00271{transform:matrix(0.607059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607059,0.000000,0.000000,0.250000,0,0);}
.m76_c00271{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m7f_c00271{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m2d_c00271{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m8b_c00271{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.meb_c00271{transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);}
.m4a_c00271{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m32_c00271{transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);}
.mcf_c00271{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m80_c00271{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.mfe_c00271{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m8f_c00271{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);}
.m82_c00271{transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);}
.m100_c00271{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.mcc_c00271{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m0_c00271{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m8_c00271{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mc2_c00271{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m27_c00271{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.mf1_c00271{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m116_c00271{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.mfb_c00271{transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);}
.m115_c00271{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);}
.m72_c00271{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.med_c00271{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.mea_c00271{transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);}
.m114_c00271{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.mf3_c00271{transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);}
.m8e_c00271{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m59_c00271{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m16_c00271{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mc8_c00271{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.md0_c00271{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.me4_c00271{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mcb_c00271{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m5a_c00271{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m6f_c00271{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m6e_c00271{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.m111_c00271{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m5e_c00271{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mb9_c00271{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);}
.m64_c00271{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m51_c00271{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.m7d_c00271{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m108_c00271{transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);}
.m93_c00271{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m3_c00271{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m41_c00271{transform:matrix(0.741186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741186,0.000000,0.000000,0.250000,0,0);}
.m35_c00271{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mb0_c00271{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m83_c00271{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mae_c00271{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.ma2_c00271{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m4d_c00271{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m85_c00271{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m79_c00271{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.mab_c00271{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mdf_c00271{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.md2_c00271{transform:matrix(1.034141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.034141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.034141,0.000000,0.000000,0.250000,0,0);}
.mb6_c00271{transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);}
.md6_c00271{transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);}
.mbe_c00271{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m14_c00271{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m4_c00271{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-7.142680px;}
.ws1_c00271{word-spacing:0.000000px;}
.fc0_c00271{color:transparent;}
.fs3_c00271{font-size:3.420000px;}
.fs7_c00271{font-size:13.620000px;}
.fs2_c00271{font-size:18.720000px;}
.fs0_c00271{font-size:20.400000px;}
.fs6_c00271{font-size:25.500000px;}
.fs1_c00271{font-size:28.920000px;}
.fs5_c00271{font-size:32.340000px;}
.fs4_c00271{font-size:35.700000px;}
.y0_c00271{bottom:0.000000px;}
.ydf_c00271{bottom:249.825000px;}
.ydc_c00271{bottom:250.905000px;}
.yde_c00271{bottom:251.970000px;}
.ydd_c00271{bottom:252.195000px;}
.ye0_c00271{bottom:253.050000px;}
.ydb_c00271{bottom:265.050000px;}
.yd8_c00271{bottom:265.905000px;}
.yd7_c00271{bottom:266.130000px;}
.yda_c00271{bottom:266.970000px;}
.yd9_c00271{bottom:268.050000px;}
.yd6_c00271{bottom:279.825000px;}
.yd5_c00271{bottom:294.825000px;}
.yd0_c00271{bottom:295.050000px;}
.yd3_c00271{bottom:295.905000px;}
.yd2_c00271{bottom:296.130000px;}
.yd1_c00271{bottom:296.970000px;}
.yd4_c00271{bottom:297.195000px;}
.ycf_c00271{bottom:309.825000px;}
.yce_c00271{bottom:311.970000px;}
.ycc_c00271{bottom:323.970000px;}
.yc6_c00271{bottom:324.405000px;}
.yc5_c00271{bottom:324.630000px;}
.ycd_c00271{bottom:324.825000px;}
.yc4_c00271{bottom:325.470000px;}
.yc8_c00271{bottom:325.905000px;}
.yc7_c00271{bottom:326.130000px;}
.yc3_c00271{bottom:326.550000px;}
.yc9_c00271{bottom:326.970000px;}
.ycb_c00271{bottom:327.195000px;}
.yca_c00271{bottom:328.050000px;}
.yc2_c00271{bottom:339.405000px;}
.ybc_c00271{bottom:352.470000px;}
.yc1_c00271{bottom:353.325000px;}
.ybf_c00271{bottom:354.405000px;}
.ybe_c00271{bottom:355.470000px;}
.yc0_c00271{bottom:356.130000px;}
.ybd_c00271{bottom:356.550000px;}
.yb9_c00271{bottom:368.550000px;}
.ybb_c00271{bottom:368.970000px;}
.yb8_c00271{bottom:369.405000px;}
.yba_c00271{bottom:370.470000px;}
.yb7_c00271{bottom:384.405000px;}
.yb3_c00271{bottom:385.050000px;}
.yb4_c00271{bottom:385.470000px;}
.yb5_c00271{bottom:385.905000px;}
.yb6_c00271{bottom:386.550000px;}
.yb1_c00271{bottom:398.325000px;}
.yb2_c00271{bottom:399.405000px;}
.yb0_c00271{bottom:400.470000px;}
.yaf_c00271{bottom:400.695000px;}
.yab_c00271{bottom:413.325000px;}
.yaa_c00271{bottom:413.550000px;}
.yac_c00271{bottom:414.405000px;}
.yae_c00271{bottom:415.470000px;}
.yad_c00271{bottom:416.550000px;}
.ya7_c00271{bottom:428.325000px;}
.ya8_c00271{bottom:429.405000px;}
.ya6_c00271{bottom:430.470000px;}
.ya5_c00271{bottom:430.695000px;}
.ya9_c00271{bottom:431.550000px;}
.y9d_c00271{bottom:442.050000px;}
.ya1_c00271{bottom:442.470000px;}
.ya2_c00271{bottom:443.325000px;}
.ya0_c00271{bottom:444.405000px;}
.ya3_c00271{bottom:444.630000px;}
.ya4_c00271{bottom:445.470000px;}
.y9f_c00271{bottom:445.695000px;}
.y9e_c00271{bottom:446.550000px;}
.y9a_c00271{bottom:457.905000px;}
.y97_c00271{bottom:458.970000px;}
.y98_c00271{bottom:459.405000px;}
.y9b_c00271{bottom:459.630000px;}
.y9c_c00271{bottom:460.050000px;}
.y99_c00271{bottom:460.470000px;}
.y95_c00271{bottom:471.825000px;}
.y90_c00271{bottom:473.325000px;}
.y8f_c00271{bottom:473.550000px;}
.y96_c00271{bottom:473.970000px;}
.y93_c00271{bottom:474.195000px;}
.y94_c00271{bottom:475.050000px;}
.y92_c00271{bottom:475.470000px;}
.y91_c00271{bottom:476.550000px;}
.y8e_c00271{bottom:486.825000px;}
.y8b_c00271{bottom:487.905000px;}
.y8a_c00271{bottom:488.325000px;}
.y8c_c00271{bottom:489.195000px;}
.y88_c00271{bottom:489.405000px;}
.y87_c00271{bottom:489.630000px;}
.y89_c00271{bottom:490.050000px;}
.y8d_c00271{bottom:490.470000px;}
.y86_c00271{bottom:502.905000px;}
.y85_c00271{bottom:503.970000px;}
.y84_c00271{bottom:505.050000px;}
.y82_c00271{bottom:516.825000px;}
.y80_c00271{bottom:517.905000px;}
.y7e_c00271{bottom:518.130000px;}
.y7f_c00271{bottom:518.970000px;}
.y83_c00271{bottom:519.195000px;}
.y81_c00271{bottom:520.050000px;}
.y7d_c00271{bottom:550.905000px;}
.y7b_c00271{bottom:567.825000px;}
.y7c_c00271{bottom:568.245000px;}
.y7a_c00271{bottom:570.405000px;}
.y79_c00271{bottom:571.470000px;}
.y74_c00271{bottom:587.745000px;}
.y78_c00271{bottom:589.245000px;}
.y76_c00271{bottom:589.905000px;}
.y75_c00271{bottom:590.130000px;}
.y77_c00271{bottom:591.405000px;}
.y71_c00271{bottom:608.745000px;}
.y72_c00271{bottom:609.630000px;}
.y70_c00271{bottom:609.825000px;}
.y6f_c00271{bottom:610.905000px;}
.y73_c00271{bottom:611.970000px;}
.y6d_c00271{bottom:628.245000px;}
.y6e_c00271{bottom:630.405000px;}
.y6a_c00271{bottom:646.470000px;}
.y6c_c00271{bottom:647.745000px;}
.y68_c00271{bottom:648.630000px;}
.y6b_c00271{bottom:649.470000px;}
.y69_c00271{bottom:649.905000px;}
.y67_c00271{bottom:665.745000px;}
.y64_c00271{bottom:667.245000px;}
.y66_c00271{bottom:668.970000px;}
.y65_c00271{bottom:669.405000px;}
.y62_c00271{bottom:686.745000px;}
.y63_c00271{bottom:687.825000px;}
.y60_c00271{bottom:688.905000px;}
.y61_c00271{bottom:689.130000px;}
.y5d_c00271{bottom:706.245000px;}
.y5e_c00271{bottom:708.405000px;}
.y5f_c00271{bottom:709.470000px;}
.y5b_c00271{bottom:724.905000px;}
.y57_c00271{bottom:725.745000px;}
.y5c_c00271{bottom:727.245000px;}
.y59_c00271{bottom:727.905000px;}
.y58_c00271{bottom:728.130000px;}
.y5a_c00271{bottom:728.325000px;}
.y54_c00271{bottom:744.405000px;}
.y52_c00271{bottom:745.245000px;}
.y56_c00271{bottom:746.745000px;}
.y50_c00271{bottom:747.405000px;}
.y55_c00271{bottom:747.630000px;}
.y51_c00271{bottom:748.470000px;}
.y53_c00271{bottom:748.905000px;}
.y4c_c00271{bottom:763.905000px;}
.y4b_c00271{bottom:766.245000px;}
.y4d_c00271{bottom:767.130000px;}
.y4f_c00271{bottom:767.970000px;}
.y4a_c00271{bottom:768.405000px;}
.y4e_c00271{bottom:769.470000px;}
.y47_c00271{bottom:785.745000px;}
.y48_c00271{bottom:786.630000px;}
.y49_c00271{bottom:786.825000px;}
.y46_c00271{bottom:787.905000px;}
.y43_c00271{bottom:804.405000px;}
.y42_c00271{bottom:805.245000px;}
.y45_c00271{bottom:806.970000px;}
.y41_c00271{bottom:807.405000px;}
.y44_c00271{bottom:808.470000px;}
.y40_c00271{bottom:824.745000px;}
.y3f_c00271{bottom:825.825000px;}
.y3d_c00271{bottom:826.470000px;}
.y3c_c00271{bottom:826.905000px;}
.y3e_c00271{bottom:827.130000px;}
.y3a_c00271{bottom:844.245000px;}
.y37_c00271{bottom:845.325000px;}
.y39_c00271{bottom:845.745000px;}
.y38_c00271{bottom:846.405000px;}
.y35_c00271{bottom:846.630000px;}
.y36_c00271{bottom:847.470000px;}
.y3b_c00271{bottom:847.905000px;}
.y33_c00271{bottom:865.245000px;}
.y30_c00271{bottom:865.905000px;}
.y32_c00271{bottom:866.130000px;}
.y34_c00271{bottom:866.970000px;}
.y31_c00271{bottom:867.405000px;}
.y2e_c00271{bottom:884.745000px;}
.y2f_c00271{bottom:885.630000px;}
.y2c_c00271{bottom:886.905000px;}
.y2d_c00271{bottom:886.920000px;}
.y2b_c00271{bottom:904.245000px;}
.y29_c00271{bottom:921.405000px;}
.y2a_c00271{bottom:923.745000px;}
.y28_c00271{bottom:924.630000px;}
.y27_c00271{bottom:925.470000px;}
.y26_c00271{bottom:925.905000px;}
.y25_c00271{bottom:943.245000px;}
.y24_c00271{bottom:944.325000px;}
.y23_c00271{bottom:945.405000px;}
.y1f_c00271{bottom:961.905000px;}
.y22_c00271{bottom:962.325000px;}
.y1a_c00271{bottom:962.745000px;}
.y21_c00271{bottom:963.825000px;}
.y1c_c00271{bottom:964.245000px;}
.y1d_c00271{bottom:964.905000px;}
.y1e_c00271{bottom:965.130000px;}
.y1b_c00271{bottom:965.970000px;}
.y20_c00271{bottom:966.405000px;}
.y18_c00271{bottom:983.325000px;}
.y19_c00271{bottom:984.405000px;}
.y17_c00271{bottom:985.470000px;}
.y14_c00271{bottom:1001.745000px;}
.y16_c00271{bottom:1002.825000px;}
.y15_c00271{bottom:1003.245000px;}
.y13_c00271{bottom:1003.905000px;}
.y12_c00271{bottom:1021.245000px;}
.yf_c00271{bottom:1022.745000px;}
.yd_c00271{bottom:1023.405000px;}
.y10_c00271{bottom:1024.470000px;}
.y11_c00271{bottom:1024.905000px;}
.ye_c00271{bottom:1024.920000px;}
.y9_c00271{bottom:1041.825000px;}
.ya_c00271{bottom:1042.245000px;}
.yb_c00271{bottom:1043.325000px;}
.yc_c00271{bottom:1044.405000px;}
.y6_c00271{bottom:1061.745000px;}
.y4_c00271{bottom:1062.630000px;}
.y7_c00271{bottom:1062.825000px;}
.y3_c00271{bottom:1063.905000px;}
.y5_c00271{bottom:1063.920000px;}
.y8_c00271{bottom:1064.970000px;}
.y2_c00271{bottom:1098.405000px;}
.y1_c00271{bottom:1102.050000px;}
.h4_c00271{height:4.206533px;}
.h8_c00271{height:16.752334px;}
.h3_c00271{height:23.025234px;}
.h1_c00271{height:25.091602px;}
.h7_c00271{height:31.364502px;}
.h2_c00271{height:35.571035px;}
.h6_c00271{height:39.777568px;}
.h5_c00271{height:43.910303px;}
.h0_c00271{height:1335.000000px;}
.w0_c00271{width:880.500000px;}
.x0_c00271{left:0.000000px;}
.xfb_c00271{left:150.000000px;}
.xdc_c00271{left:151.500000px;}
.x6e_c00271{left:153.000000px;}
.x2_c00271{left:154.080000px;}
.xb9_c00271{left:157.080000px;}
.xe1_c00271{left:163.500000px;}
.xea_c00271{left:165.000000px;}
.xcb_c00271{left:166.080000px;}
.x3_c00271{left:169.500000px;}
.x13_c00271{left:170.580000px;}
.x5e_c00271{left:174.000000px;}
.x56_c00271{left:180.000000px;}
.xf7_c00271{left:181.500000px;}
.x80_c00271{left:183.420000px;}
.x1d_c00271{left:188.580000px;}
.x7a_c00271{left:196.500000px;}
.x9e_c00271{left:198.000000px;}
.xd_c00271{left:200.580000px;}
.x42_c00271{left:205.500000px;}
.xfc_c00271{left:207.000000px;}
.xe2_c00271{left:208.080000px;}
.x90_c00271{left:210.000000px;}
.xfd_c00271{left:211.920000px;}
.x5f_c00271{left:216.000000px;}
.x27_c00271{left:217.500000px;}
.x38_c00271{left:218.580000px;}
.x9f_c00271{left:220.500000px;}
.xc7_c00271{left:223.080000px;}
.xde_c00271{left:226.080000px;}
.xe_c00271{left:228.420000px;}
.x91_c00271{left:229.500000px;}
.x2f_c00271{left:231.000000px;}
.x81_c00271{left:234.420000px;}
.xa0_c00271{left:235.500000px;}
.xe3_c00271{left:237.420000px;}
.x57_c00271{left:238.500000px;}
.xc1_c00271{left:240.000000px;}
.x6f_c00271{left:243.000000px;}
.x89_c00271{left:244.080000px;}
.x4_c00271{left:252.000000px;}
.x30_c00271{left:253.920000px;}
.x97_c00271{left:255.000000px;}
.xb1_c00271{left:256.500000px;}
.x1e_c00271{left:259.275000px;}
.xcc_c00271{left:260.580000px;}
.x14_c00271{left:262.500000px;}
.x69_c00271{left:264.420000px;}
.x28_c00271{left:267.000000px;}
.xe9_c00271{left:268.500000px;}
.x82_c00271{left:270.000000px;}
.x39_c00271{left:271.500000px;}
.x4c_c00271{left:272.580000px;}
.xc2_c00271{left:274.500000px;}
.x43_c00271{left:277.500000px;}
.xba_c00271{left:279.000000px;}
.xe4_c00271{left:280.500000px;}
.x15_c00271{left:283.500000px;}
.xd2_c00271{left:286.920000px;}
.xa1_c00271{left:288.420000px;}
.x8a_c00271{left:292.080000px;}
.xfe_c00271{left:295.500000px;}
.xa9_c00271{left:297.420000px;}
.x70_c00271{left:298.920000px;}
.x1f_c00271{left:300.000000px;}
.x92_c00271{left:301.500000px;}
.x5_c00271{left:303.000000px;}
.xcd_c00271{left:304.920000px;}
.xf8_c00271{left:306.000000px;}
.x44_c00271{left:308.580000px;}
.x7b_c00271{left:311.580000px;}
.xbb_c00271{left:313.500000px;}
.xeb_c00271{left:315.000000px;}
.x20_c00271{left:316.080000px;}
.x3a_c00271{left:318.420000px;}
.x60_c00271{left:322.080000px;}
.xaa_c00271{left:324.000000px;}
.x6_c00271{left:325.080000px;}
.xd7_c00271{left:327.000000px;}
.x29_c00271{left:329.580000px;}
.xf_c00271{left:334.920000px;}
.xbc_c00271{left:336.000000px;}
.xe5_c00271{left:339.000000px;}
.x8b_c00271{left:340.500000px;}
.x31_c00271{left:342.420000px;}
.x3b_c00271{left:345.000000px;}
.x4d_c00271{left:346.500000px;}
.xec_c00271{left:347.580000px;}
.xb6_c00271{left:351.000000px;}
.x7_c00271{left:352.080000px;}
.x45_c00271{left:354.000000px;}
.xc3_c00271{left:355.920000px;}
.x16_c00271{left:358.500000px;}
.x83_c00271{left:361.920000px;}
.x104_c00271{left:364.080000px;}
.x4e_c00271{left:366.000000px;}
.x21_c00271{left:367.920000px;}
.xe6_c00271{left:369.000000px;}
.xc8_c00271{left:370.500000px;}
.x71_c00271{left:373.500000px;}
.x17_c00271{left:376.080000px;}
.xab_c00271{left:378.000000px;}
.x8c_c00271{left:379.080000px;}
.x2a_c00271{left:380.580000px;}
.xc4_c00271{left:382.500000px;}
.xed_c00271{left:383.580000px;}
.x7c_c00271{left:385.080000px;}
.xf2_c00271{left:387.000000px;}
.xa2_c00271{left:391.920000px;}
.x61_c00271{left:394.500000px;}
.x58_c00271{left:396.420000px;}
.x100_c00271{left:399.000000px;}
.x4f_c00271{left:400.080000px;}
.x46_c00271{left:401.580000px;}
.xbd_c00271{left:403.080000px;}
.x22_c00271{left:405.000000px;}
.xb2_c00271{left:406.500000px;}
.x1_c00271{left:408.000000px;}
.xb7_c00271{left:414.420000px;}
.x98_c00271{left:415.500000px;}
.x101_c00271{left:417.000000px;}
.xa3_c00271{left:420.000000px;}
.x3c_c00271{left:423.000000px;}
.x62_c00271{left:426.420000px;}
.x8_c00271{left:427.920000px;}
.xac_c00271{left:430.080000px;}
.x32_c00271{left:432.000000px;}
.x10_c00271{left:433.080000px;}
.xc5_c00271{left:435.000000px;}
.x18_c00271{left:436.080000px;}
.xd3_c00271{left:439.500000px;}
.x72_c00271{left:442.500000px;}
.x3d_c00271{left:444.420000px;}
.x99_c00271{left:445.920000px;}
.xa4_c00271{left:448.920000px;}
.xc6_c00271{left:450.420000px;}
.x7d_c00271{left:451.920000px;}
.x47_c00271{left:454.500000px;}
.x93_c00271{left:455.580000px;}
.xad_c00271{left:457.920000px;}
.x73_c00271{left:459.000000px;}
.xf3_c00271{left:460.080000px;}
.x33_c00271{left:462.420000px;}
.xee_c00271{left:464.145000px;}
.xd8_c00271{left:466.500000px;}
.x9a_c00271{left:468.000000px;}
.xf0_c00271{left:469.080000px;}
.x23_c00271{left:470.580000px;}
.x74_c00271{left:474.000000px;}
.x50_c00271{left:475.500000px;}
.xdf_c00271{left:478.500000px;}
.x7e_c00271{left:480.000000px;}
.x11_c00271{left:483.420000px;}
.x8d_c00271{left:484.920000px;}
.xae_c00271{left:487.500000px;}
.x63_c00271{left:488.580000px;}
.x34_c00271{left:490.920000px;}
.xce_c00271{left:493.500000px;}
.x9b_c00271{left:495.000000px;}
.xf1_c00271{left:496.500000px;}
.x84_c00271{left:498.000000px;}
.xb8_c00271{left:499.920000px;}
.xa5_c00271{left:504.000000px;}
.x2b_c00271{left:505.500000px;}
.xbe_c00271{left:506.580000px;}
.x48_c00271{left:508.500000px;}
.xb3_c00271{left:509.580000px;}
.x9_c00271{left:511.500000px;}
.x6a_c00271{left:512.580000px;}
.xdd_c00271{left:514.920000px;}
.x19_c00271{left:516.420000px;}
.x85_c00271{left:517.500000px;}
.x102_c00271{left:519.420000px;}
.x59_c00271{left:522.000000px;}
.xbf_c00271{left:525.420000px;}
.xa6_c00271{left:526.500000px;}
.x49_c00271{left:528.000000px;}
.xaf_c00271{left:529.500000px;}
.x35_c00271{left:531.000000px;}
.x3e_c00271{left:532.500000px;}
.x7f_c00271{left:534.000000px;}
.xf4_c00271{left:535.920000px;}
.x64_c00271{left:540.000000px;}
.x5a_c00271{left:541.920000px;}
.x1a_c00271{left:543.000000px;}
.xe0_c00271{left:544.500000px;}
.xc9_c00271{left:546.000000px;}
.x86_c00271{left:547.500000px;}
.xcf_c00271{left:548.580000px;}
.x24_c00271{left:550.080000px;}
.x9c_c00271{left:552.000000px;}
.xff_c00271{left:553.080000px;}
.x51_c00271{left:555.000000px;}
.x94_c00271{left:556.080000px;}
.x6b_c00271{left:558.000000px;}
.xa7_c00271{left:559.500000px;}
.x65_c00271{left:560.580000px;}
.xf5_c00271{left:562.500000px;}
.xd4_c00271{left:564.000000px;}
.xa_c00271{left:565.920000px;}
.x75_c00271{left:567.000000px;}
.x5b_c00271{left:568.080000px;}
.x52_c00271{left:573.000000px;}
.x36_c00271{left:575.580000px;}
.xa8_c00271{left:579.420000px;}
.x8e_c00271{left:582.000000px;}
.x87_c00271{left:583.920000px;}
.x76_c00271{left:586.500000px;}
.x53_c00271{left:588.420000px;}
.xf9_c00271{left:589.500000px;}
.x12_c00271{left:591.000000px;}
.xd5_c00271{left:592.920000px;}
.x1b_c00271{left:595.500000px;}
.x2c_c00271{left:597.000000px;}
.x3f_c00271{left:601.080000px;}
.xb0_c00271{left:602.145000px;}
.x25_c00271{left:603.420000px;}
.xd0_c00271{left:605.580000px;}
.x66_c00271{left:609.420000px;}
.x88_c00271{left:612.000000px;}
.x6c_c00271{left:613.500000px;}
.x77_c00271{left:616.080000px;}
.xf6_c00271{left:618.000000px;}
.xd6_c00271{left:619.500000px;}
.xfa_c00271{left:621.420000px;}
.xe7_c00271{left:629.580000px;}
.x4a_c00271{left:634.920000px;}
.x95_c00271{left:636.000000px;}
.x2d_c00271{left:637.500000px;}
.xd9_c00271{left:639.000000px;}
.xca_c00271{left:640.920000px;}
.x67_c00271{left:643.920000px;}
.xc0_c00271{left:646.500000px;}
.xb_c00271{left:649.080000px;}
.x54_c00271{left:652.500000px;}
.x96_c00271{left:658.500000px;}
.x26_c00271{left:663.000000px;}
.xb4_c00271{left:664.920000px;}
.x2e_c00271{left:667.500000px;}
.x6d_c00271{left:669.420000px;}
.x1c_c00271{left:670.920000px;}
.xef_c00271{left:673.500000px;}
.xe8_c00271{left:676.080000px;}
.x78_c00271{left:678.420000px;}
.x40_c00271{left:680.775000px;}
.x68_c00271{left:684.000000px;}
.x9d_c00271{left:685.500000px;}
.x37_c00271{left:687.000000px;}
.xda_c00271{left:688.500000px;}
.x5c_c00271{left:689.580000px;}
.x4b_c00271{left:691.500000px;}
.xd1_c00271{left:693.420000px;}
.xb5_c00271{left:694.500000px;}
.xc_c00271{left:699.000000px;}
.x103_c00271{left:702.000000px;}
.x79_c00271{left:705.000000px;}
.x8f_c00271{left:709.920000px;}
.xdb_c00271{left:711.000000px;}
.x5d_c00271{left:712.920000px;}
.x55_c00271{left:718.500000px;}
.x41_c00271{left:720.000000px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.ls0_c00271{letter-spacing:0.000000pt;}
.ws0_c00271{word-spacing:-6.349049pt;}
.ws1_c00271{word-spacing:0.000000pt;}
.fs3_c00271{font-size:3.040000pt;}
.fs7_c00271{font-size:12.106667pt;}
.fs2_c00271{font-size:16.640000pt;}
.fs0_c00271{font-size:18.133333pt;}
.fs6_c00271{font-size:22.666667pt;}
.fs1_c00271{font-size:25.706667pt;}
.fs5_c00271{font-size:28.746667pt;}
.fs4_c00271{font-size:31.733333pt;}
.y0_c00271{bottom:0.000000pt;}
.ydf_c00271{bottom:222.066667pt;}
.ydc_c00271{bottom:223.026667pt;}
.yde_c00271{bottom:223.973333pt;}
.ydd_c00271{bottom:224.173333pt;}
.ye0_c00271{bottom:224.933333pt;}
.ydb_c00271{bottom:235.600000pt;}
.yd8_c00271{bottom:236.360000pt;}
.yd7_c00271{bottom:236.560000pt;}
.yda_c00271{bottom:237.306667pt;}
.yd9_c00271{bottom:238.266667pt;}
.yd6_c00271{bottom:248.733333pt;}
.yd5_c00271{bottom:262.066667pt;}
.yd0_c00271{bottom:262.266667pt;}
.yd3_c00271{bottom:263.026667pt;}
.yd2_c00271{bottom:263.226667pt;}
.yd1_c00271{bottom:263.973333pt;}
.yd4_c00271{bottom:264.173333pt;}
.ycf_c00271{bottom:275.400000pt;}
.yce_c00271{bottom:277.306667pt;}
.ycc_c00271{bottom:287.973333pt;}
.yc6_c00271{bottom:288.360000pt;}
.yc5_c00271{bottom:288.560000pt;}
.ycd_c00271{bottom:288.733333pt;}
.yc4_c00271{bottom:289.306667pt;}
.yc8_c00271{bottom:289.693333pt;}
.yc7_c00271{bottom:289.893333pt;}
.yc3_c00271{bottom:290.266667pt;}
.yc9_c00271{bottom:290.640000pt;}
.ycb_c00271{bottom:290.840000pt;}
.yca_c00271{bottom:291.600000pt;}
.yc2_c00271{bottom:301.693333pt;}
.ybc_c00271{bottom:313.306667pt;}
.yc1_c00271{bottom:314.066667pt;}
.ybf_c00271{bottom:315.026667pt;}
.ybe_c00271{bottom:315.973333pt;}
.yc0_c00271{bottom:316.560000pt;}
.ybd_c00271{bottom:316.933333pt;}
.yb9_c00271{bottom:327.600000pt;}
.ybb_c00271{bottom:327.973333pt;}
.yb8_c00271{bottom:328.360000pt;}
.yba_c00271{bottom:329.306667pt;}
.yb7_c00271{bottom:341.693333pt;}
.yb3_c00271{bottom:342.266667pt;}
.yb4_c00271{bottom:342.640000pt;}
.yb5_c00271{bottom:343.026667pt;}
.yb6_c00271{bottom:343.600000pt;}
.yb1_c00271{bottom:354.066667pt;}
.yb2_c00271{bottom:355.026667pt;}
.yb0_c00271{bottom:355.973333pt;}
.yaf_c00271{bottom:356.173333pt;}
.yab_c00271{bottom:367.400000pt;}
.yaa_c00271{bottom:367.600000pt;}
.yac_c00271{bottom:368.360000pt;}
.yae_c00271{bottom:369.306667pt;}
.yad_c00271{bottom:370.266667pt;}
.ya7_c00271{bottom:380.733333pt;}
.ya8_c00271{bottom:381.693333pt;}
.ya6_c00271{bottom:382.640000pt;}
.ya5_c00271{bottom:382.840000pt;}
.ya9_c00271{bottom:383.600000pt;}
.y9d_c00271{bottom:392.933333pt;}
.ya1_c00271{bottom:393.306667pt;}
.ya2_c00271{bottom:394.066667pt;}
.ya0_c00271{bottom:395.026667pt;}
.ya3_c00271{bottom:395.226667pt;}
.ya4_c00271{bottom:395.973333pt;}
.y9f_c00271{bottom:396.173333pt;}
.y9e_c00271{bottom:396.933333pt;}
.y9a_c00271{bottom:407.026667pt;}
.y97_c00271{bottom:407.973333pt;}
.y98_c00271{bottom:408.360000pt;}
.y9b_c00271{bottom:408.560000pt;}
.y9c_c00271{bottom:408.933333pt;}
.y99_c00271{bottom:409.306667pt;}
.y95_c00271{bottom:419.400000pt;}
.y90_c00271{bottom:420.733333pt;}
.y8f_c00271{bottom:420.933333pt;}
.y96_c00271{bottom:421.306667pt;}
.y93_c00271{bottom:421.506667pt;}
.y94_c00271{bottom:422.266667pt;}
.y92_c00271{bottom:422.640000pt;}
.y91_c00271{bottom:423.600000pt;}
.y8e_c00271{bottom:432.733333pt;}
.y8b_c00271{bottom:433.693333pt;}
.y8a_c00271{bottom:434.066667pt;}
.y8c_c00271{bottom:434.840000pt;}
.y88_c00271{bottom:435.026667pt;}
.y87_c00271{bottom:435.226667pt;}
.y89_c00271{bottom:435.600000pt;}
.y8d_c00271{bottom:435.973333pt;}
.y86_c00271{bottom:447.026667pt;}
.y85_c00271{bottom:447.973333pt;}
.y84_c00271{bottom:448.933333pt;}
.y82_c00271{bottom:459.400000pt;}
.y80_c00271{bottom:460.360000pt;}
.y7e_c00271{bottom:460.560000pt;}
.y7f_c00271{bottom:461.306667pt;}
.y83_c00271{bottom:461.506667pt;}
.y81_c00271{bottom:462.266667pt;}
.y7d_c00271{bottom:489.693333pt;}
.y7b_c00271{bottom:504.733333pt;}
.y7c_c00271{bottom:505.106667pt;}
.y7a_c00271{bottom:507.026667pt;}
.y79_c00271{bottom:507.973333pt;}
.y74_c00271{bottom:522.440000pt;}
.y78_c00271{bottom:523.773333pt;}
.y76_c00271{bottom:524.360000pt;}
.y75_c00271{bottom:524.560000pt;}
.y77_c00271{bottom:525.693333pt;}
.y71_c00271{bottom:541.106667pt;}
.y72_c00271{bottom:541.893333pt;}
.y70_c00271{bottom:542.066667pt;}
.y6f_c00271{bottom:543.026667pt;}
.y73_c00271{bottom:543.973333pt;}
.y6d_c00271{bottom:558.440000pt;}
.y6e_c00271{bottom:560.360000pt;}
.y6a_c00271{bottom:574.640000pt;}
.y6c_c00271{bottom:575.773333pt;}
.y68_c00271{bottom:576.560000pt;}
.y6b_c00271{bottom:577.306667pt;}
.y69_c00271{bottom:577.693333pt;}
.y67_c00271{bottom:591.773333pt;}
.y64_c00271{bottom:593.106667pt;}
.y66_c00271{bottom:594.640000pt;}
.y65_c00271{bottom:595.026667pt;}
.y62_c00271{bottom:610.440000pt;}
.y63_c00271{bottom:611.400000pt;}
.y60_c00271{bottom:612.360000pt;}
.y61_c00271{bottom:612.560000pt;}
.y5d_c00271{bottom:627.773333pt;}
.y5e_c00271{bottom:629.693333pt;}
.y5f_c00271{bottom:630.640000pt;}
.y5b_c00271{bottom:644.360000pt;}
.y57_c00271{bottom:645.106667pt;}
.y5c_c00271{bottom:646.440000pt;}
.y59_c00271{bottom:647.026667pt;}
.y58_c00271{bottom:647.226667pt;}
.y5a_c00271{bottom:647.400000pt;}
.y54_c00271{bottom:661.693333pt;}
.y52_c00271{bottom:662.440000pt;}
.y56_c00271{bottom:663.773333pt;}
.y50_c00271{bottom:664.360000pt;}
.y55_c00271{bottom:664.560000pt;}
.y51_c00271{bottom:665.306667pt;}
.y53_c00271{bottom:665.693333pt;}
.y4c_c00271{bottom:679.026667pt;}
.y4b_c00271{bottom:681.106667pt;}
.y4d_c00271{bottom:681.893333pt;}
.y4f_c00271{bottom:682.640000pt;}
.y4a_c00271{bottom:683.026667pt;}
.y4e_c00271{bottom:683.973333pt;}
.y47_c00271{bottom:698.440000pt;}
.y48_c00271{bottom:699.226667pt;}
.y49_c00271{bottom:699.400000pt;}
.y46_c00271{bottom:700.360000pt;}
.y43_c00271{bottom:715.026667pt;}
.y42_c00271{bottom:715.773333pt;}
.y45_c00271{bottom:717.306667pt;}
.y41_c00271{bottom:717.693333pt;}
.y44_c00271{bottom:718.640000pt;}
.y40_c00271{bottom:733.106667pt;}
.y3f_c00271{bottom:734.066667pt;}
.y3d_c00271{bottom:734.640000pt;}
.y3c_c00271{bottom:735.026667pt;}
.y3e_c00271{bottom:735.226667pt;}
.y3a_c00271{bottom:750.440000pt;}
.y37_c00271{bottom:751.400000pt;}
.y39_c00271{bottom:751.773333pt;}
.y38_c00271{bottom:752.360000pt;}
.y35_c00271{bottom:752.560000pt;}
.y36_c00271{bottom:753.306667pt;}
.y3b_c00271{bottom:753.693333pt;}
.y33_c00271{bottom:769.106667pt;}
.y30_c00271{bottom:769.693333pt;}
.y32_c00271{bottom:769.893333pt;}
.y34_c00271{bottom:770.640000pt;}
.y31_c00271{bottom:771.026667pt;}
.y2e_c00271{bottom:786.440000pt;}
.y2f_c00271{bottom:787.226667pt;}
.y2c_c00271{bottom:788.360000pt;}
.y2d_c00271{bottom:788.373333pt;}
.y2b_c00271{bottom:803.773333pt;}
.y29_c00271{bottom:819.026667pt;}
.y2a_c00271{bottom:821.106667pt;}
.y28_c00271{bottom:821.893333pt;}
.y27_c00271{bottom:822.640000pt;}
.y26_c00271{bottom:823.026667pt;}
.y25_c00271{bottom:838.440000pt;}
.y24_c00271{bottom:839.400000pt;}
.y23_c00271{bottom:840.360000pt;}
.y1f_c00271{bottom:855.026667pt;}
.y22_c00271{bottom:855.400000pt;}
.y1a_c00271{bottom:855.773333pt;}
.y21_c00271{bottom:856.733333pt;}
.y1c_c00271{bottom:857.106667pt;}
.y1d_c00271{bottom:857.693333pt;}
.y1e_c00271{bottom:857.893333pt;}
.y1b_c00271{bottom:858.640000pt;}
.y20_c00271{bottom:859.026667pt;}
.y18_c00271{bottom:874.066667pt;}
.y19_c00271{bottom:875.026667pt;}
.y17_c00271{bottom:875.973333pt;}
.y14_c00271{bottom:890.440000pt;}
.y16_c00271{bottom:891.400000pt;}
.y15_c00271{bottom:891.773333pt;}
.y13_c00271{bottom:892.360000pt;}
.y12_c00271{bottom:907.773333pt;}
.yf_c00271{bottom:909.106667pt;}
.yd_c00271{bottom:909.693333pt;}
.y10_c00271{bottom:910.640000pt;}
.y11_c00271{bottom:911.026667pt;}
.ye_c00271{bottom:911.040000pt;}
.y9_c00271{bottom:926.066667pt;}
.ya_c00271{bottom:926.440000pt;}
.yb_c00271{bottom:927.400000pt;}
.yc_c00271{bottom:928.360000pt;}
.y6_c00271{bottom:943.773333pt;}
.y4_c00271{bottom:944.560000pt;}
.y7_c00271{bottom:944.733333pt;}
.y3_c00271{bottom:945.693333pt;}
.y5_c00271{bottom:945.706667pt;}
.y8_c00271{bottom:946.640000pt;}
.y2_c00271{bottom:976.360000pt;}
.y1_c00271{bottom:979.600000pt;}
.h4_c00271{height:3.739141pt;}
.h8_c00271{height:14.890964pt;}
.h3_c00271{height:20.466875pt;}
.h1_c00271{height:22.303646pt;}
.h7_c00271{height:27.879557pt;}
.h2_c00271{height:31.618698pt;}
.h6_c00271{height:35.357839pt;}
.h5_c00271{height:39.031380pt;}
.h0_c00271{height:1186.666667pt;}
.w0_c00271{width:782.666667pt;}
.x0_c00271{left:0.000000pt;}
.xfb_c00271{left:133.333333pt;}
.xdc_c00271{left:134.666667pt;}
.x6e_c00271{left:136.000000pt;}
.x2_c00271{left:136.960000pt;}
.xb9_c00271{left:139.626667pt;}
.xe1_c00271{left:145.333333pt;}
.xea_c00271{left:146.666667pt;}
.xcb_c00271{left:147.626667pt;}
.x3_c00271{left:150.666667pt;}
.x13_c00271{left:151.626667pt;}
.x5e_c00271{left:154.666667pt;}
.x56_c00271{left:160.000000pt;}
.xf7_c00271{left:161.333333pt;}
.x80_c00271{left:163.040000pt;}
.x1d_c00271{left:167.626667pt;}
.x7a_c00271{left:174.666667pt;}
.x9e_c00271{left:176.000000pt;}
.xd_c00271{left:178.293333pt;}
.x42_c00271{left:182.666667pt;}
.xfc_c00271{left:184.000000pt;}
.xe2_c00271{left:184.960000pt;}
.x90_c00271{left:186.666667pt;}
.xfd_c00271{left:188.373333pt;}
.x5f_c00271{left:192.000000pt;}
.x27_c00271{left:193.333333pt;}
.x38_c00271{left:194.293333pt;}
.x9f_c00271{left:196.000000pt;}
.xc7_c00271{left:198.293333pt;}
.xde_c00271{left:200.960000pt;}
.xe_c00271{left:203.040000pt;}
.x91_c00271{left:204.000000pt;}
.x2f_c00271{left:205.333333pt;}
.x81_c00271{left:208.373333pt;}
.xa0_c00271{left:209.333333pt;}
.xe3_c00271{left:211.040000pt;}
.x57_c00271{left:212.000000pt;}
.xc1_c00271{left:213.333333pt;}
.x6f_c00271{left:216.000000pt;}
.x89_c00271{left:216.960000pt;}
.x4_c00271{left:224.000000pt;}
.x30_c00271{left:225.706667pt;}
.x97_c00271{left:226.666667pt;}
.xb1_c00271{left:228.000000pt;}
.x1e_c00271{left:230.466667pt;}
.xcc_c00271{left:231.626667pt;}
.x14_c00271{left:233.333333pt;}
.x69_c00271{left:235.040000pt;}
.x28_c00271{left:237.333333pt;}
.xe9_c00271{left:238.666667pt;}
.x82_c00271{left:240.000000pt;}
.x39_c00271{left:241.333333pt;}
.x4c_c00271{left:242.293333pt;}
.xc2_c00271{left:244.000000pt;}
.x43_c00271{left:246.666667pt;}
.xba_c00271{left:248.000000pt;}
.xe4_c00271{left:249.333333pt;}
.x15_c00271{left:252.000000pt;}
.xd2_c00271{left:255.040000pt;}
.xa1_c00271{left:256.373333pt;}
.x8a_c00271{left:259.626667pt;}
.xfe_c00271{left:262.666667pt;}
.xa9_c00271{left:264.373333pt;}
.x70_c00271{left:265.706667pt;}
.x1f_c00271{left:266.666667pt;}
.x92_c00271{left:268.000000pt;}
.x5_c00271{left:269.333333pt;}
.xcd_c00271{left:271.040000pt;}
.xf8_c00271{left:272.000000pt;}
.x44_c00271{left:274.293333pt;}
.x7b_c00271{left:276.960000pt;}
.xbb_c00271{left:278.666667pt;}
.xeb_c00271{left:280.000000pt;}
.x20_c00271{left:280.960000pt;}
.x3a_c00271{left:283.040000pt;}
.x60_c00271{left:286.293333pt;}
.xaa_c00271{left:288.000000pt;}
.x6_c00271{left:288.960000pt;}
.xd7_c00271{left:290.666667pt;}
.x29_c00271{left:292.960000pt;}
.xf_c00271{left:297.706667pt;}
.xbc_c00271{left:298.666667pt;}
.xe5_c00271{left:301.333333pt;}
.x8b_c00271{left:302.666667pt;}
.x31_c00271{left:304.373333pt;}
.x3b_c00271{left:306.666667pt;}
.x4d_c00271{left:308.000000pt;}
.xec_c00271{left:308.960000pt;}
.xb6_c00271{left:312.000000pt;}
.x7_c00271{left:312.960000pt;}
.x45_c00271{left:314.666667pt;}
.xc3_c00271{left:316.373333pt;}
.x16_c00271{left:318.666667pt;}
.x83_c00271{left:321.706667pt;}
.x104_c00271{left:323.626667pt;}
.x4e_c00271{left:325.333333pt;}
.x21_c00271{left:327.040000pt;}
.xe6_c00271{left:328.000000pt;}
.xc8_c00271{left:329.333333pt;}
.x71_c00271{left:332.000000pt;}
.x17_c00271{left:334.293333pt;}
.xab_c00271{left:336.000000pt;}
.x8c_c00271{left:336.960000pt;}
.x2a_c00271{left:338.293333pt;}
.xc4_c00271{left:340.000000pt;}
.xed_c00271{left:340.960000pt;}
.x7c_c00271{left:342.293333pt;}
.xf2_c00271{left:344.000000pt;}
.xa2_c00271{left:348.373333pt;}
.x61_c00271{left:350.666667pt;}
.x58_c00271{left:352.373333pt;}
.x100_c00271{left:354.666667pt;}
.x4f_c00271{left:355.626667pt;}
.x46_c00271{left:356.960000pt;}
.xbd_c00271{left:358.293333pt;}
.x22_c00271{left:360.000000pt;}
.xb2_c00271{left:361.333333pt;}
.x1_c00271{left:362.666667pt;}
.xb7_c00271{left:368.373333pt;}
.x98_c00271{left:369.333333pt;}
.x101_c00271{left:370.666667pt;}
.xa3_c00271{left:373.333333pt;}
.x3c_c00271{left:376.000000pt;}
.x62_c00271{left:379.040000pt;}
.x8_c00271{left:380.373333pt;}
.xac_c00271{left:382.293333pt;}
.x32_c00271{left:384.000000pt;}
.x10_c00271{left:384.960000pt;}
.xc5_c00271{left:386.666667pt;}
.x18_c00271{left:387.626667pt;}
.xd3_c00271{left:390.666667pt;}
.x72_c00271{left:393.333333pt;}
.x3d_c00271{left:395.040000pt;}
.x99_c00271{left:396.373333pt;}
.xa4_c00271{left:399.040000pt;}
.xc6_c00271{left:400.373333pt;}
.x7d_c00271{left:401.706667pt;}
.x47_c00271{left:404.000000pt;}
.x93_c00271{left:404.960000pt;}
.xad_c00271{left:407.040000pt;}
.x73_c00271{left:408.000000pt;}
.xf3_c00271{left:408.960000pt;}
.x33_c00271{left:411.040000pt;}
.xee_c00271{left:412.573333pt;}
.xd8_c00271{left:414.666667pt;}
.x9a_c00271{left:416.000000pt;}
.xf0_c00271{left:416.960000pt;}
.x23_c00271{left:418.293333pt;}
.x74_c00271{left:421.333333pt;}
.x50_c00271{left:422.666667pt;}
.xdf_c00271{left:425.333333pt;}
.x7e_c00271{left:426.666667pt;}
.x11_c00271{left:429.706667pt;}
.x8d_c00271{left:431.040000pt;}
.xae_c00271{left:433.333333pt;}
.x63_c00271{left:434.293333pt;}
.x34_c00271{left:436.373333pt;}
.xce_c00271{left:438.666667pt;}
.x9b_c00271{left:440.000000pt;}
.xf1_c00271{left:441.333333pt;}
.x84_c00271{left:442.666667pt;}
.xb8_c00271{left:444.373333pt;}
.xa5_c00271{left:448.000000pt;}
.x2b_c00271{left:449.333333pt;}
.xbe_c00271{left:450.293333pt;}
.x48_c00271{left:452.000000pt;}
.xb3_c00271{left:452.960000pt;}
.x9_c00271{left:454.666667pt;}
.x6a_c00271{left:455.626667pt;}
.xdd_c00271{left:457.706667pt;}
.x19_c00271{left:459.040000pt;}
.x85_c00271{left:460.000000pt;}
.x102_c00271{left:461.706667pt;}
.x59_c00271{left:464.000000pt;}
.xbf_c00271{left:467.040000pt;}
.xa6_c00271{left:468.000000pt;}
.x49_c00271{left:469.333333pt;}
.xaf_c00271{left:470.666667pt;}
.x35_c00271{left:472.000000pt;}
.x3e_c00271{left:473.333333pt;}
.x7f_c00271{left:474.666667pt;}
.xf4_c00271{left:476.373333pt;}
.x64_c00271{left:480.000000pt;}
.x5a_c00271{left:481.706667pt;}
.x1a_c00271{left:482.666667pt;}
.xe0_c00271{left:484.000000pt;}
.xc9_c00271{left:485.333333pt;}
.x86_c00271{left:486.666667pt;}
.xcf_c00271{left:487.626667pt;}
.x24_c00271{left:488.960000pt;}
.x9c_c00271{left:490.666667pt;}
.xff_c00271{left:491.626667pt;}
.x51_c00271{left:493.333333pt;}
.x94_c00271{left:494.293333pt;}
.x6b_c00271{left:496.000000pt;}
.xa7_c00271{left:497.333333pt;}
.x65_c00271{left:498.293333pt;}
.xf5_c00271{left:500.000000pt;}
.xd4_c00271{left:501.333333pt;}
.xa_c00271{left:503.040000pt;}
.x75_c00271{left:504.000000pt;}
.x5b_c00271{left:504.960000pt;}
.x52_c00271{left:509.333333pt;}
.x36_c00271{left:511.626667pt;}
.xa8_c00271{left:515.040000pt;}
.x8e_c00271{left:517.333333pt;}
.x87_c00271{left:519.040000pt;}
.x76_c00271{left:521.333333pt;}
.x53_c00271{left:523.040000pt;}
.xf9_c00271{left:524.000000pt;}
.x12_c00271{left:525.333333pt;}
.xd5_c00271{left:527.040000pt;}
.x1b_c00271{left:529.333333pt;}
.x2c_c00271{left:530.666667pt;}
.x3f_c00271{left:534.293333pt;}
.xb0_c00271{left:535.240000pt;}
.x25_c00271{left:536.373333pt;}
.xd0_c00271{left:538.293333pt;}
.x66_c00271{left:541.706667pt;}
.x88_c00271{left:544.000000pt;}
.x6c_c00271{left:545.333333pt;}
.x77_c00271{left:547.626667pt;}
.xf6_c00271{left:549.333333pt;}
.xd6_c00271{left:550.666667pt;}
.xfa_c00271{left:552.373333pt;}
.xe7_c00271{left:559.626667pt;}
.x4a_c00271{left:564.373333pt;}
.x95_c00271{left:565.333333pt;}
.x2d_c00271{left:566.666667pt;}
.xd9_c00271{left:568.000000pt;}
.xca_c00271{left:569.706667pt;}
.x67_c00271{left:572.373333pt;}
.xc0_c00271{left:574.666667pt;}
.xb_c00271{left:576.960000pt;}
.x54_c00271{left:580.000000pt;}
.x96_c00271{left:585.333333pt;}
.x26_c00271{left:589.333333pt;}
.xb4_c00271{left:591.040000pt;}
.x2e_c00271{left:593.333333pt;}
.x6d_c00271{left:595.040000pt;}
.x1c_c00271{left:596.373333pt;}
.xef_c00271{left:598.666667pt;}
.xe8_c00271{left:600.960000pt;}
.x78_c00271{left:603.040000pt;}
.x40_c00271{left:605.133333pt;}
.x68_c00271{left:608.000000pt;}
.x9d_c00271{left:609.333333pt;}
.x37_c00271{left:610.666667pt;}
.xda_c00271{left:612.000000pt;}
.x5c_c00271{left:612.960000pt;}
.x4b_c00271{left:614.666667pt;}
.xd1_c00271{left:616.373333pt;}
.xb5_c00271{left:617.333333pt;}
.xc_c00271{left:621.333333pt;}
.x103_c00271{left:624.000000pt;}
.x79_c00271{left:626.666667pt;}
.x8f_c00271{left:631.040000pt;}
.xdb_c00271{left:632.000000pt;}
.x5d_c00271{left:633.706667pt;}
.x55_c00271{left:638.666667pt;}
.x41_c00271{left:640.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_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_0be2e14579528cd1eab330c3.woff2')format("woff");}.ff1_c00272{font-family:ff1_c00272;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m11f_c00272{transform:matrix(0.368590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368590,0.000000,0.000000,0.250000,0,0);}
.m8_c00272{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.mbc_c00272{transform:matrix(0.372316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372316,0.000000,0.000000,0.250000,0,0);}
.med_c00272{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.mdd_c00272{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00272{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m58_c00272{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.mce_c00272{transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);}
.mfb_c00272{transform:matrix(0.380609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380609,0.000000,0.000000,0.250000,0,0);}
.mf8_c00272{transform:matrix(0.383013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383013,0.000000,0.000000,0.250000,0,0);}
.m89_c00272{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mc8_c00272{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.mbd_c00272{transform:matrix(0.387270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387270,0.000000,0.000000,0.250000,0,0);}
.m102_c00272{transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);}
.mfe_c00272{transform:matrix(0.388971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388971,0.000000,0.000000,0.250000,0,0);}
.mef_c00272{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m9e_c00272{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m15_c00272{transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);}
.m7c_c00272{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m9c_c00272{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m5c_c00272{transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);}
.mf0_c00272{transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);}
.mdc_c00272{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.md0_c00272{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);}
.me4_c00272{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m1d_c00272{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.m84_c00272{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.mcc_c00272{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.md5_c00272{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m111_c00272{transform:matrix(0.403676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403676,0.000000,0.000000,0.250000,0,0);}
.m9d_c00272{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.mf6_c00272{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.mdf_c00272{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.mc5_c00272{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.md4_c00272{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m4f_c00272{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.m10a_c00272{transform:matrix(0.411859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411859,0.000000,0.000000,0.250000,0,0);}
.m85_c00272{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.ma3_c00272{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.mbb_c00272{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.mab_c00272{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m27_c00272{transform:matrix(0.417440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417440,0.000000,0.000000,0.250000,0,0);}
.m39_c00272{transform:matrix(0.418568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418568,0.000000,0.000000,0.250000,0,0);}
.md2_c00272{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.md6_c00272{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m46_c00272{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.ma4_c00272{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mf4_c00272{transform:matrix(0.420673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420673,0.000000,0.000000,0.250000,0,0);}
.m5e_c00272{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m51_c00272{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.m54_c00272{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.maf_c00272{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.me3_c00272{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m30_c00272{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m22_c00272{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m6b_c00272{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m28_c00272{transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);}
.m96_c00272{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m63_c00272{transform:matrix(0.429979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429979,0.000000,0.000000,0.250000,0,0);}
.m7a_c00272{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mcb_c00272{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.mf3_c00272{transform:matrix(0.431891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431891,0.000000,0.000000,0.250000,0,0);}
.m71_c00272{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m5b_c00272{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.ma6_c00272{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m4a_c00272{transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);}
.me1_c00272{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.mfc_c00272{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m109_c00272{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);}
.m31_c00272{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m10c_c00272{transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);}
.m11_c00272{transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);}
.m81_c00272{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m101_c00272{transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);}
.m59_c00272{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.ma8_c00272{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m104_c00272{transform:matrix(0.449519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449519,0.000000,0.000000,0.250000,0,0);}
.m67_c00272{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.mb4_c00272{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m118_c00272{transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);}
.m1_c00272{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.me8_c00272{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mc1_c00272{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m11c_c00272{transform:matrix(0.458150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458150,0.000000,0.000000,0.250000,0,0);}
.m1f_c00272{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mc9_c00272{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.mc_c00272{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m7e_c00272{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m55_c00272{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m123_c00272{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.mc0_c00272{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m5f_c00272{transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);}
.m34_c00272{transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);}
.mb3_c00272{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m10b_c00272{transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);}
.m2d_c00272{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m3_c00272{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m48_c00272{transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);}
.m4e_c00272{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.mb9_c00272{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m3f_c00272{transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);}
.m3e_c00272{transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);}
.m3c_c00272{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m94_c00272{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m21_c00272{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m43_c00272{transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);}
.m8f_c00272{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m41_c00272{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mda_c00272{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m10d_c00272{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);}
.me2_c00272{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m35_c00272{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m3a_c00272{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.me9_c00272{transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);}
.m17_c00272{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m50_c00272{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mbe_c00272{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.m8e_c00272{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.md8_c00272{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m11e_c00272{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.m75_c00272{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m52_c00272{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m5d_c00272{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);}
.m112_c00272{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.mbf_c00272{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mc6_c00272{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m18_c00272{transform:matrix(0.506471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506471,0.000000,0.000000,0.250000,0,0);}
.mc7_c00272{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m61_c00272{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m2b_c00272{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m115_c00272{transform:matrix(0.512821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512821,0.000000,0.000000,0.250000,0,0);}
.mf1_c00272{transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);}
.m90_c00272{transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);}
.m23_c00272{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.m6f_c00272{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m98_c00272{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m42_c00272{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.ma5_c00272{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mb0_c00272{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m77_c00272{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.m29_c00272{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m24_c00272{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.m4d_c00272{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m82_c00272{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mc2_c00272{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mc3_c00272{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m99_c00272{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.md3_c00272{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m70_c00272{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m120_c00272{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.mf_c00272{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m74_c00272{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m2f_c00272{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m6d_c00272{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m44_c00272{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m8c_c00272{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mee_c00272{transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);}
.m97_c00272{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m79_c00272{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m1b_c00272{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m88_c00272{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.md9_c00272{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m7_c00272{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.mcd_c00272{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m9b_c00272{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m108_c00272{transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);}
.m7b_c00272{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m1c_c00272{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.me5_c00272{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mad_c00272{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m2c_c00272{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.md7_c00272{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m26_c00272{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.mb5_c00272{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m78_c00272{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m113_c00272{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m105_c00272{transform:matrix(0.552083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552083,0.000000,0.000000,0.250000,0,0);}
.meb_c00272{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m8d_c00272{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m72_c00272{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m9f_c00272{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mb2_c00272{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.me6_c00272{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m47_c00272{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.mca_c00272{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.mec_c00272{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m7f_c00272{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m8b_c00272{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.maa_c00272{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);}
.mb1_c00272{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m107_c00272{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m49_c00272{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m5_c00272{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.m117_c00272{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.mea_c00272{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);}
.m73_c00272{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mfa_c00272{transform:matrix(0.571314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571314,0.000000,0.000000,0.250000,0,0);}
.ma0_c00272{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m60_c00272{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.mff_c00272{transform:matrix(0.572917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572917,0.000000,0.000000,0.250000,0,0);}
.m69_c00272{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.mb6_c00272{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mb7_c00272{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mf7_c00272{transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);}
.m91_c00272{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.ma9_c00272{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m9_c00272{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m1e_c00272{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);}
.m103_c00272{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.m92_c00272{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.md_c00272{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m2a_c00272{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mb_c00272{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m66_c00272{transform:matrix(0.584559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584559,0.000000,0.000000,0.250000,0,0);}
.m4b_c00272{transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);}
.mcf_c00272{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.mdb_c00272{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m116_c00272{transform:matrix(0.591346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591346,0.000000,0.000000,0.250000,0,0);}
.m20_c00272{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.m56_c00272{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.mde_c00272{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m6e_c00272{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m10f_c00272{transform:matrix(0.601322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601322,0.000000,0.000000,0.250000,0,0);}
.mc4_c00272{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m32_c00272{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m110_c00272{transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);}
.mf5_c00272{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m80_c00272{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m9a_c00272{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m3b_c00272{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m19_c00272{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.m3d_c00272{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m5a_c00272{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m53_c00272{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m40_c00272{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);}
.m6a_c00272{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m45_c00272{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m0_c00272{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.ma_c00272{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m87_c00272{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m64_c00272{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.m12_c00272{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m4_c00272{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m68_c00272{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m65_c00272{transform:matrix(0.655147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655147,0.000000,0.000000,0.250000,0,0);}
.m106_c00272{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m36_c00272{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m13_c00272{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.mf9_c00272{transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);}
.m95_c00272{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mfd_c00272{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m7d_c00272{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mb8_c00272{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.m16_c00272{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.m38_c00272{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m119_c00272{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.m25_c00272{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m4c_c00272{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.m122_c00272{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.m2e_c00272{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.me7_c00272{transform:matrix(0.688301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.688301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.688301,0.000000,0.000000,0.250000,0,0);}
.me_c00272{transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);}
.md1_c00272{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m11b_c00272{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.m33_c00272{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.mae_c00272{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m37_c00272{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m14_c00272{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);}
.me0_c00272{transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);}
.m83_c00272{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m86_c00272{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mba_c00272{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m1a_c00272{transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);}
.m8a_c00272{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mac_c00272{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m11a_c00272{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.mf2_c00272{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m76_c00272{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m11d_c00272{transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);}
.ma7_c00272{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.ma2_c00272{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m93_c00272{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.m114_c00272{transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);}
.m121_c00272{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m57_c00272{transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);}
.m10_c00272{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m62_c00272{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.m6_c00272{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m2_c00272{transform:matrix(1.457048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.457048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.457048,0.000000,0.000000,0.250000,0,0);}
.m10e_c00272{transform:matrix(1.756637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.756637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.756637,0.000000,0.000000,0.250000,0,0);}
.m100_c00272{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m6c_c00272{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.v1_c00272{vertical-align:-6.000000px;}
.v0_c00272{vertical-align:0.000000px;}
.ls2_c00272{letter-spacing:0.000000px;}
.ls1_c00272{letter-spacing:12.014986px;}
.ls0_c00272{letter-spacing:68.137135px;}
.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;}
}
.ws4_c00272{word-spacing:-79.069615px;}
.ws15_c00272{word-spacing:-14.012266px;}
.ws16_c00272{word-spacing:0.000000px;}
.ws13_c00272{word-spacing:8.373475px;}
.wsc_c00272{word-spacing:9.255046px;}
.ws14_c00272{word-spacing:9.469629px;}
.ws0_c00272{word-spacing:9.748024px;}
.wsa_c00272{word-spacing:9.803123px;}
.ws9_c00272{word-spacing:10.017706px;}
.ws11_c00272{word-spacing:10.947610px;}
.ws10_c00272{word-spacing:11.685910px;}
.ws1_c00272{word-spacing:12.973687px;}
.ws12_c00272{word-spacing:13.611988px;}
.ws5_c00272{word-spacing:23.357512px;}
.ws2_c00272{word-spacing:25.293111px;}
.ws6_c00272{word-spacing:25.608752px;}
.wsf_c00272{word-spacing:29.719954px;}
.ws8_c00272{word-spacing:31.119820px;}
.wsb_c00272{word-spacing:31.838295px;}
.ws7_c00272{word-spacing:38.940033px;}
.wse_c00272{word-spacing:40.994598px;}
.wsd_c00272{word-spacing:50.536594px;}
.ws3_c00272{word-spacing:57.204655px;}
._1_c00272{margin-left:-68.137135px;}
._4_c00272{margin-left:-12.777646px;}
._0_c00272{width:3.272727px;}
._3_c00272{width:12.014986px;}
._2_c00272{width:32.540652px;}
.fc0_c00272{color:transparent;}
.fs7_c00272{font-size:3.420000px;}
.fsa_c00272{font-size:6.780000px;}
.fs9_c00272{font-size:11.880000px;}
.fs2_c00272{font-size:13.620000px;}
.fs5_c00272{font-size:18.720000px;}
.fs0_c00272{font-size:20.400000px;}
.fs3_c00272{font-size:25.500000px;}
.fs1_c00272{font-size:28.920000px;}
.fs4_c00272{font-size:32.340000px;}
.fs6_c00272{font-size:35.700000px;}
.fs8_c00272{font-size:39.120000px;}
.y0_c00272{bottom:0.000000px;}
.y121_c00272{bottom:243.420000px;}
.y11f_c00272{bottom:243.630000px;}
.y120_c00272{bottom:244.920000px;}
.y117_c00272{bottom:246.195000px;}
.y11e_c00272{bottom:246.420000px;}
.y116_c00272{bottom:247.695000px;}
.y115_c00272{bottom:248.130000px;}
.y114_c00272{bottom:251.130000px;}
.y11c_c00272{bottom:257.130000px;}
.y11a_c00272{bottom:258.195000px;}
.y11d_c00272{bottom:258.420000px;}
.y11b_c00272{bottom:258.630000px;}
.y118_c00272{bottom:259.695000px;}
.y119_c00272{bottom:259.920000px;}
.y113_c00272{bottom:260.130000px;}
.y112_c00272{bottom:263.130000px;}
.y111_c00272{bottom:265.275000px;}
.y110_c00272{bottom:265.695000px;}
.y10e_c00272{bottom:270.630000px;}
.y10d_c00272{bottom:271.695000px;}
.y10f_c00272{bottom:271.920000px;}
.y10a_c00272{bottom:272.130000px;}
.y10b_c00272{bottom:273.195000px;}
.y104_c00272{bottom:273.630000px;}
.y10c_c00272{bottom:274.920000px;}
.y103_c00272{bottom:275.130000px;}
.y102_c00272{bottom:276.630000px;}
.y108_c00272{bottom:285.195000px;}
.y109_c00272{bottom:285.420000px;}
.y105_c00272{bottom:285.630000px;}
.y107_c00272{bottom:286.695000px;}
.y101_c00272{bottom:287.130000px;}
.yff_c00272{bottom:287.775000px;}
.y100_c00272{bottom:288.195000px;}
.y106_c00272{bottom:288.420000px;}
.yfe_c00272{bottom:289.050000px;}
.yfd_c00272{bottom:294.195000px;}
.yfc_c00272{bottom:297.630000px;}
.yfa_c00272{bottom:299.130000px;}
.yf9_c00272{bottom:300.195000px;}
.yfb_c00272{bottom:300.420000px;}
.yf8_c00272{bottom:300.630000px;}
.yf0_c00272{bottom:301.695000px;}
.yf7_c00272{bottom:301.920000px;}
.yef_c00272{bottom:302.355000px;}
.yee_c00272{bottom:305.550000px;}
.yed_c00272{bottom:307.275000px;}
.yf6_c00272{bottom:312.630000px;}
.yf5_c00272{bottom:313.695000px;}
.yf2_c00272{bottom:314.130000px;}
.yf3_c00272{bottom:315.195000px;}
.yf4_c00272{bottom:315.420000px;}
.yf1_c00272{bottom:316.920000px;}
.yec_c00272{bottom:317.550000px;}
.yeb_c00272{bottom:320.130000px;}
.yea_c00272{bottom:326.130000px;}
.ye9_c00272{bottom:327.195000px;}
.ye7_c00272{bottom:328.695000px;}
.ye8_c00272{bottom:328.920000px;}
.ye5_c00272{bottom:330.195000px;}
.ye6_c00272{bottom:330.420000px;}
.ye4_c00272{bottom:330.630000px;}
.ye3_c00272{bottom:332.130000px;}
.ye2_c00272{bottom:335.130000px;}
.ye1_c00272{bottom:339.630000px;}
.ye0_c00272{bottom:340.695000px;}
.yde_c00272{bottom:342.195000px;}
.ydf_c00272{bottom:342.420000px;}
.ydc_c00272{bottom:343.695000px;}
.ydd_c00272{bottom:343.920000px;}
.ydb_c00272{bottom:344.130000px;}
.yda_c00272{bottom:345.630000px;}
.yd9_c00272{bottom:348.630000px;}
.yd8_c00272{bottom:354.195000px;}
.yd7_c00272{bottom:354.630000px;}
.yd6_c00272{bottom:355.695000px;}
.yd5_c00272{bottom:356.130000px;}
.yd4_c00272{bottom:357.420000px;}
.yce_c00272{bottom:362.130000px;}
.yd2_c00272{bottom:368.130000px;}
.yd3_c00272{bottom:369.195000px;}
.yd1_c00272{bottom:369.630000px;}
.ycd_c00272{bottom:370.050000px;}
.yd0_c00272{bottom:370.695000px;}
.ycf_c00272{bottom:370.920000px;}
.ycc_c00272{bottom:372.195000px;}
.ycb_c00272{bottom:373.695000px;}
.yca_c00272{bottom:375.630000px;}
.yc8_c00272{bottom:387.630000px;}
.yc9_c00272{bottom:388.695000px;}
.yc6_c00272{bottom:389.130000px;}
.yc7_c00272{bottom:390.195000px;}
.ybf_c00272{bottom:393.630000px;}
.yc5_c00272{bottom:399.630000px;}
.yc4_c00272{bottom:400.695000px;}
.yc3_c00272{bottom:401.130000px;}
.yc2_c00272{bottom:402.195000px;}
.yc1_c00272{bottom:402.630000px;}
.yc0_c00272{bottom:403.695000px;}
.ybe_c00272{bottom:404.130000px;}
.ybd_c00272{bottom:405.195000px;}
.ybc_c00272{bottom:408.630000px;}
.yb9_c00272{bottom:422.325000px;}
.ybb_c00272{bottom:424.470000px;}
.yba_c00272{bottom:425.550000px;}
.yb8_c00272{bottom:437.325000px;}
.yb7_c00272{bottom:437.550000px;}
.yb5_c00272{bottom:439.470000px;}
.yb6_c00272{bottom:440.550000px;}
.yb4_c00272{bottom:455.970000px;}
.yb3_c00272{bottom:458.970000px;}
.yb2_c00272{bottom:478.905000px;}
.yb1_c00272{bottom:481.905000px;}
.yae_c00272{bottom:498.405000px;}
.yaf_c00272{bottom:499.245000px;}
.yb0_c00272{bottom:500.130000px;}
.yad_c00272{bottom:500.970000px;}
.yac_c00272{bottom:501.405000px;}
.yab_c00272{bottom:518.745000px;}
.yaa_c00272{bottom:520.905000px;}
.ya8_c00272{bottom:538.245000px;}
.ya6_c00272{bottom:540.405000px;}
.ya7_c00272{bottom:540.630000px;}
.ya9_c00272{bottom:541.470000px;}
.ya4_c00272{bottom:557.745000px;}
.ya5_c00272{bottom:558.180000px;}
.ya2_c00272{bottom:558.825000px;}
.ya0_c00272{bottom:559.905000px;}
.ya3_c00272{bottom:560.970000px;}
.ya1_c00272{bottom:561.405000px;}
.y9e_c00272{bottom:577.245000px;}
.y9b_c00272{bottom:578.745000px;}
.y9f_c00272{bottom:579.405000px;}
.y9d_c00272{bottom:579.630000px;}
.y9c_c00272{bottom:580.905000px;}
.y97_c00272{bottom:596.745000px;}
.y99_c00272{bottom:598.245000px;}
.y9a_c00272{bottom:599.130000px;}
.y98_c00272{bottom:599.970000px;}
.y96_c00272{bottom:600.405000px;}
.y94_c00272{bottom:617.325000px;}
.y91_c00272{bottom:617.745000px;}
.y95_c00272{bottom:618.630000px;}
.y92_c00272{bottom:618.825000px;}
.y90_c00272{bottom:619.905000px;}
.y93_c00272{bottom:620.970000px;}
.y8c_c00272{bottom:636.405000px;}
.y8f_c00272{bottom:636.825000px;}
.y8e_c00272{bottom:637.245000px;}
.y8d_c00272{bottom:638.970000px;}
.y8b_c00272{bottom:639.405000px;}
.y89_c00272{bottom:657.180000px;}
.y88_c00272{bottom:658.245000px;}
.y8a_c00272{bottom:658.905000px;}
.y87_c00272{bottom:659.130000px;}
.y86_c00272{bottom:660.405000px;}
.y85_c00272{bottom:677.550000px;}
.y84_c00272{bottom:677.745000px;}
.y83_c00272{bottom:678.630000px;}
.y82_c00272{bottom:678.825000px;}
.y81_c00272{bottom:679.905000px;}
.y7f_c00272{bottom:697.245000px;}
.y80_c00272{bottom:698.130000px;}
.y7d_c00272{bottom:698.970000px;}
.y7c_c00272{bottom:699.405000px;}
.y7e_c00272{bottom:700.470000px;}
.y79_c00272{bottom:716.745000px;}
.y7a_c00272{bottom:717.630000px;}
.y7b_c00272{bottom:718.905000px;}
.y78_c00272{bottom:736.245000px;}
.y77_c00272{bottom:737.130000px;}
.y76_c00272{bottom:738.405000px;}
.y72_c00272{bottom:753.405000px;}
.y75_c00272{bottom:755.745000px;}
.y73_c00272{bottom:755.970000px;}
.y71_c00272{bottom:756.630000px;}
.y70_c00272{bottom:757.905000px;}
.y74_c00272{bottom:758.130000px;}
.y6d_c00272{bottom:775.245000px;}
.y6e_c00272{bottom:777.405000px;}
.y6f_c00272{bottom:777.630000px;}
.y6c_c00272{bottom:778.470000px;}
.y69_c00272{bottom:794.745000px;}
.y6b_c00272{bottom:795.825000px;}
.y67_c00272{bottom:796.905000px;}
.y6a_c00272{bottom:797.970000px;}
.y68_c00272{bottom:798.405000px;}
.y65_c00272{bottom:814.245000px;}
.y60_c00272{bottom:815.745000px;}
.y62_c00272{bottom:816.405000px;}
.y66_c00272{bottom:816.630000px;}
.y63_c00272{bottom:817.470000px;}
.y64_c00272{bottom:817.905000px;}
.y61_c00272{bottom:817.920000px;}
.y5e_c00272{bottom:841.470000px;}
.y5a_c00272{bottom:841.905000px;}
.y59_c00272{bottom:842.550000px;}
.y5d_c00272{bottom:842.970000px;}
.y5f_c00272{bottom:843.405000px;}
.y5b_c00272{bottom:843.630000px;}
.y5c_c00272{bottom:844.050000px;}
.y52_c00272{bottom:856.050000px;}
.y57_c00272{bottom:856.470000px;}
.y54_c00272{bottom:856.905000px;}
.y53_c00272{bottom:857.970000px;}
.y56_c00272{bottom:858.195000px;}
.y58_c00272{bottom:858.630000px;}
.y55_c00272{bottom:859.050000px;}
.y4e_c00272{bottom:870.825000px;}
.y4a_c00272{bottom:871.905000px;}
.y4d_c00272{bottom:872.325000px;}
.y4b_c00272{bottom:872.970000px;}
.y4c_c00272{bottom:873.195000px;}
.y4f_c00272{bottom:873.405000px;}
.y49_c00272{bottom:874.050000px;}
.y51_c00272{bottom:874.470000px;}
.y50_c00272{bottom:874.695000px;}
.y44_c00272{bottom:885.825000px;}
.y45_c00272{bottom:886.905000px;}
.y46_c00272{bottom:887.130000px;}
.y48_c00272{bottom:887.970000px;}
.y47_c00272{bottom:889.050000px;}
.y40_c00272{bottom:899.970000px;}
.y42_c00272{bottom:901.905000px;}
.y43_c00272{bottom:902.970000px;}
.y41_c00272{bottom:904.050000px;}
.y3a_c00272{bottom:915.405000px;}
.y3d_c00272{bottom:915.825000px;}
.y3f_c00272{bottom:916.905000px;}
.y3c_c00272{bottom:917.970000px;}
.y3b_c00272{bottom:918.195000px;}
.y3e_c00272{bottom:919.050000px;}
.y39_c00272{bottom:929.970000px;}
.y38_c00272{bottom:930.825000px;}
.y35_c00272{bottom:932.550000px;}
.y36_c00272{bottom:932.970000px;}
.y37_c00272{bottom:934.050000px;}
.y34_c00272{bottom:945.405000px;}
.y33_c00272{bottom:947.550000px;}
.y2b_c00272{bottom:959.970000px;}
.y2e_c00272{bottom:960.825000px;}
.y2d_c00272{bottom:961.695000px;}
.y30_c00272{bottom:961.905000px;}
.y2c_c00272{bottom:962.550000px;}
.y31_c00272{bottom:962.970000px;}
.y32_c00272{bottom:963.195000px;}
.y2f_c00272{bottom:964.050000px;}
.y2a_c00272{bottom:974.325000px;}
.y28_c00272{bottom:975.405000px;}
.y27_c00272{bottom:976.470000px;}
.y29_c00272{bottom:976.695000px;}
.y26_c00272{bottom:977.550000px;}
.y21_c00272{bottom:988.470000px;}
.y23_c00272{bottom:990.405000px;}
.y25_c00272{bottom:991.470000px;}
.y24_c00272{bottom:991.695000px;}
.y22_c00272{bottom:992.550000px;}
.y1c_c00272{bottom:1004.325000px;}
.y1d_c00272{bottom:1005.405000px;}
.y1e_c00272{bottom:1006.470000px;}
.y1f_c00272{bottom:1006.695000px;}
.y20_c00272{bottom:1007.550000px;}
.y1b_c00272{bottom:1018.470000px;}
.y19_c00272{bottom:1019.325000px;}
.y16_c00272{bottom:1019.550000px;}
.y1a_c00272{bottom:1020.405000px;}
.y18_c00272{bottom:1020.630000px;}
.y17_c00272{bottom:1021.470000px;}
.y15_c00272{bottom:1033.470000px;}
.y13_c00272{bottom:1034.325000px;}
.y14_c00272{bottom:1035.630000px;}
.y12_c00272{bottom:1036.470000px;}
.y11_c00272{bottom:1037.550000px;}
.yd_c00272{bottom:1048.905000px;}
.y9_c00272{bottom:1049.130000px;}
.yf_c00272{bottom:1049.325000px;}
.yb_c00272{bottom:1050.405000px;}
.ya_c00272{bottom:1051.050000px;}
.y10_c00272{bottom:1051.470000px;}
.yc_c00272{bottom:1051.695000px;}
.ye_c00272{bottom:1052.550000px;}
.y4_c00272{bottom:1063.905000px;}
.y7_c00272{bottom:1064.325000px;}
.y8_c00272{bottom:1064.550000px;}
.y6_c00272{bottom:1064.970000px;}
.y3_c00272{bottom:1065.195000px;}
.y5_c00272{bottom:1066.050000px;}
.y2_c00272{bottom:1099.905000px;}
.y1_c00272{bottom:1102.050000px;}
.h8_c00272{height:4.206533px;}
.hb_c00272{height:8.339268px;}
.ha_c00272{height:14.612168px;}
.h3_c00272{height:16.752334px;}
.h6_c00272{height:23.025234px;}
.h1_c00272{height:25.091602px;}
.h4_c00272{height:31.364502px;}
.h2_c00272{height:35.571035px;}
.h5_c00272{height:39.777568px;}
.h7_c00272{height:43.910303px;}
.h9_c00272{height:48.116836px;}
.h0_c00272{height:1335.000000px;}
.w0_c00272{width:880.500000px;}
.x0_c00272{left:0.000000px;}
.xff_c00272{left:120.000000px;}
.x102_c00272{left:121.080000px;}
.x116_c00272{left:126.000000px;}
.x100_c00272{left:129.000000px;}
.x117_c00272{left:130.500000px;}
.x11d_c00272{left:133.500000px;}
.x107_c00272{left:135.000000px;}
.x115_c00272{left:138.000000px;}
.x101_c00272{left:142.500000px;}
.x118_c00272{left:147.000000px;}
.x18_c00272{left:150.000000px;}
.x8a_c00272{left:151.500000px;}
.xf8_c00272{left:153.000000px;}
.x119_c00272{left:156.000000px;}
.x108_c00272{left:160.500000px;}
.x77_c00272{left:162.000000px;}
.x3_c00272{left:164.580000px;}
.x22_c00272{left:165.855000px;}
.xd3_c00272{left:166.920000px;}
.xf3_c00272{left:168.000000px;}
.xbd_c00272{left:169.920000px;}
.x55_c00272{left:177.000000px;}
.xb3_c00272{left:178.080000px;}
.x92_c00272{left:181.920000px;}
.x10f_c00272{left:183.000000px;}
.x44_c00272{left:184.500000px;}
.xe9_c00272{left:186.420000px;}
.x37_c00272{left:187.500000px;}
.x4_c00272{left:189.000000px;}
.xbe_c00272{left:196.500000px;}
.x5f_c00272{left:199.500000px;}
.xa3_c00272{left:205.080000px;}
.xab_c00272{left:207.000000px;}
.x45_c00272{left:208.500000px;}
.xb4_c00272{left:209.580000px;}
.x60_c00272{left:211.500000px;}
.x93_c00272{left:214.080000px;}
.xcb_c00272{left:215.580000px;}
.x19_c00272{left:217.500000px;}
.xd4_c00272{left:220.920000px;}
.xda_c00272{left:222.000000px;}
.x99_c00272{left:226.080000px;}
.xb5_c00272{left:228.000000px;}
.x2d_c00272{left:230.145000px;}
.x4b_c00272{left:232.080000px;}
.x23_c00272{left:234.000000px;}
.x94_c00272{left:235.500000px;}
.x8b_c00272{left:240.420000px;}
.xf9_c00272{left:244.500000px;}
.x56_c00272{left:246.000000px;}
.x5_c00272{left:247.500000px;}
.x1a_c00272{left:250.500000px;}
.xea_c00272{left:252.420000px;}
.x38_c00272{left:253.920000px;}
.x106_c00272{left:255.000000px;}
.x61_c00272{left:256.080000px;}
.x9a_c00272{left:259.920000px;}
.xe_c00272{left:261.000000px;}
.x4c_c00272{left:262.080000px;}
.x11e_c00272{left:264.000000px;}
.x95_c00272{left:265.500000px;}
.x24_c00272{left:268.500000px;}
.xbf_c00272{left:270.000000px;}
.xd5_c00272{left:271.500000px;}
.x46_c00272{left:273.000000px;}
.x2e_c00272{left:274.500000px;}
.xf0_c00272{left:276.420000px;}
.xa4_c00272{left:277.500000px;}
.x6_c00272{left:280.500000px;}
.x78_c00272{left:282.855000px;}
.x69_c00272{left:283.920000px;}
.x62_c00272{left:285.420000px;}
.x109_c00272{left:286.500000px;}
.x10c_c00272{left:288.000000px;}
.xac_c00272{left:289.920000px;}
.xcc_c00272{left:291.420000px;}
.xc6_c00272{left:292.500000px;}
.x57_c00272{left:294.000000px;}
.x9b_c00272{left:295.500000px;}
.x1b_c00272{left:297.000000px;}
.xdb_c00272{left:303.000000px;}
.xc0_c00272{left:304.500000px;}
.x83_c00272{left:306.420000px;}
.xf1_c00272{left:307.500000px;}
.x6f_c00272{left:309.000000px;}
.x8c_c00272{left:312.000000px;}
.xa5_c00272{left:313.500000px;}
.x79_c00272{left:316.500000px;}
.xc1_c00272{left:319.920000px;}
.x10d_c00272{left:322.500000px;}
.xe4_c00272{left:324.420000px;}
.x58_c00272{left:325.920000px;}
.x63_c00272{left:327.000000px;}
.x25_c00272{left:328.500000px;}
.xcd_c00272{left:331.080000px;}
.xeb_c00272{left:334.080000px;}
.x7_c00272{left:335.580000px;}
.xd6_c00272{left:337.920000px;}
.x1c_c00272{left:339.000000px;}
.xf_c00272{left:340.080000px;}
.x8d_c00272{left:343.500000px;}
.x70_c00272{left:345.000000px;}
.x8_c00272{left:346.500000px;}
.xdc_c00272{left:348.000000px;}
.x39_c00272{left:352.920000px;}
.x2f_c00272{left:355.500000px;}
.x64_c00272{left:357.420000px;}
.xad_c00272{left:358.500000px;}
.xc7_c00272{left:360.000000px;}
.xec_c00272{left:363.000000px;}
.xdd_c00272{left:366.000000px;}
.x3a_c00272{left:368.580000px;}
.xe2_c00272{left:370.920000px;}
.xf2_c00272{left:373.500000px;}
.x10_c00272{left:375.000000px;}
.x4d_c00272{left:378.000000px;}
.x9_c00272{left:379.080000px;}
.xb6_c00272{left:381.000000px;}
.x65_c00272{left:382.500000px;}
.xe5_c00272{left:384.000000px;}
.x84_c00272{left:386.580000px;}
.x26_c00272{left:388.500000px;}
.x3b_c00272{left:389.580000px;}
.x8e_c00272{left:391.080000px;}
.x71_c00272{left:393.000000px;}
.xce_c00272{left:394.080000px;}
.x47_c00272{left:396.000000px;}
.x6a_c00272{left:399.000000px;}
.x10a_c00272{left:400.500000px;}
.xe6_c00272{left:402.000000px;}
.x1_c00272{left:403.500000px;}
.x85_c00272{left:405.420000px;}
.x48_c00272{left:406.500000px;}
.xa_c00272{left:408.420000px;}
.x30_c00272{left:411.000000px;}
.xf7_c00272{left:412.500000px;}
.x3c_c00272{left:414.000000px;}
.xfa_c00272{left:415.500000px;}
.x1d_c00272{left:420.000000px;}
.x31_c00272{left:421.500000px;}
.x4e_c00272{left:423.420000px;}
.xed_c00272{left:424.500000px;}
.x103_c00272{left:427.920000px;}
.xf4_c00272{left:430.080000px;}
.xd7_c00272{left:432.000000px;}
.x86_c00272{left:433.080000px;}
.x80_c00272{left:435.000000px;}
.x110_c00272{left:436.500000px;}
.x27_c00272{left:438.000000px;}
.x4f_c00272{left:439.500000px;}
.x11_c00272{left:441.000000px;}
.x6b_c00272{left:444.000000px;}
.x3d_c00272{left:445.500000px;}
.xcf_c00272{left:447.000000px;}
.x7a_c00272{left:448.920000px;}
.xb_c00272{left:450.000000px;}
.xc2_c00272{left:451.920000px;}
.xb7_c00272{left:454.920000px;}
.x9c_c00272{left:457.500000px;}
.x59_c00272{left:460.920000px;}
.x50_c00272{left:463.500000px;}
.x81_c00272{left:465.420000px;}
.xfe_c00272{left:466.500000px;}
.x32_c00272{left:467.580000px;}
.xe7_c00272{left:469.920000px;}
.x28_c00272{left:471.420000px;}
.xde_c00272{left:472.920000px;}
.x12_c00272{left:475.500000px;}
.x5a_c00272{left:478.920000px;}
.xc_c00272{left:480.420000px;}
.xfb_c00272{left:484.920000px;}
.x1e_c00272{left:487.500000px;}
.x7b_c00272{left:490.500000px;}
.xb8_c00272{left:492.000000px;}
.x9d_c00272{left:493.080000px;}
.x33_c00272{left:495.420000px;}
.x49_c00272{left:496.920000px;}
.x82_c00272{left:499.080000px;}
.xfc_c00272{left:504.000000px;}
.xd_c00272{left:507.000000px;}
.x112_c00272{left:508.500000px;}
.xe8_c00272{left:510.000000px;}
.x6c_c00272{left:513.000000px;}
.x13_c00272{left:514.920000px;}
.x72_c00272{left:516.000000px;}
.xee_c00272{left:517.500000px;}
.xb9_c00272{left:519.000000px;}
.x1f_c00272{left:520.080000px;}
.xc8_c00272{left:522.000000px;}
.xc3_c00272{left:526.080000px;}
.x73_c00272{left:528.000000px;}
.x96_c00272{left:529.920000px;}
.x3e_c00272{left:531.000000px;}
.x7c_c00272{left:532.080000px;}
.x14_c00272{left:534.000000px;}
.xae_c00272{left:535.500000px;}
.x34_c00272{left:537.000000px;}
.x4a_c00272{left:538.500000px;}
.xd0_c00272{left:540.000000px;}
.x29_c00272{left:541.080000px;}
.x6d_c00272{left:542.580000px;}
.x7d_c00272{left:544.500000px;}
.xd8_c00272{left:546.000000px;}
.x20_c00272{left:547.920000px;}
.x3f_c00272{left:549.000000px;}
.xa6_c00272{left:552.000000px;}
.x9e_c00272{left:553.080000px;}
.xd1_c00272{left:556.500000px;}
.x8f_c00272{left:558.420000px;}
.x2a_c00272{left:561.000000px;}
.x5b_c00272{left:563.580000px;}
.x35_c00272{left:566.580000px;}
.xaf_c00272{left:568.080000px;}
.x6e_c00272{left:570.000000px;}
.x11b_c00272{left:571.500000px;}
.x40_c00272{left:572.580000px;}
.x51_c00272{left:574.500000px;}
.xfd_c00272{left:576.000000px;}
.xf5_c00272{left:578.580000px;}
.x5c_c00272{left:580.920000px;}
.x9f_c00272{left:582.000000px;}
.xa7_c00272{left:583.920000px;}
.x52_c00272{left:585.000000px;}
.xb0_c00272{left:586.500000px;}
.x21_c00272{left:589.500000px;}
.xdf_c00272{left:591.000000px;}
.x74_c00272{left:592.920000px;}
.x36_c00272{left:594.000000px;}
.xa0_c00272{left:598.500000px;}
.xb1_c00272{left:600.000000px;}
.xd9_c00272{left:601.500000px;}
.x87_c00272{left:604.080000px;}
.x66_c00272{left:606.000000px;}
.x90_c00272{left:607.500000px;}
.xba_c00272{left:608.580000px;}
.xe0_c00272{left:612.000000px;}
.x41_c00272{left:613.500000px;}
.xc4_c00272{left:615.420000px;}
.x113_c00272{left:616.500000px;}
.x15_c00272{left:618.000000px;}
.x2b_c00272{left:621.000000px;}
.x91_c00272{left:627.000000px;}
.x75_c00272{left:630.000000px;}
.x53_c00272{left:631.080000px;}
.xe3_c00272{left:633.420000px;}
.x97_c00272{left:634.500000px;}
.x7e_c00272{left:637.500000px;}
.xa8_c00272{left:638.580000px;}
.xa1_c00272{left:640.500000px;}
.x67_c00272{left:643.080000px;}
.x42_c00272{left:645.000000px;}
.xb2_c00272{left:646.920000px;}
.xc9_c00272{left:648.000000px;}
.x5d_c00272{left:649.500000px;}
.x11a_c00272{left:652.500000px;}
.xbb_c00272{left:654.420000px;}
.xc5_c00272{left:655.500000px;}
.xa2_c00272{left:658.920000px;}
.x16_c00272{left:660.420000px;}
.x2c_c00272{left:662.580000px;}
.xa9_c00272{left:669.420000px;}
.xe1_c00272{left:672.420000px;}
.x88_c00272{left:673.500000px;}
.xf6_c00272{left:675.000000px;}
.x43_c00272{left:678.420000px;}
.x11c_c00272{left:679.500000px;}
.xca_c00272{left:681.000000px;}
.xbc_c00272{left:682.500000px;}
.x68_c00272{left:684.000000px;}
.xef_c00272{left:688.500000px;}
.x76_c00272{left:690.000000px;}
.x17_c00272{left:691.080000px;}
.x5e_c00272{left:692.580000px;}
.xaa_c00272{left:697.500000px;}
.x7f_c00272{left:699.000000px;}
.xd2_c00272{left:700.500000px;}
.x54_c00272{left:702.000000px;}
.x2_c00272{left:703.080000px;}
.x98_c00272{left:712.500000px;}
.x104_c00272{left:715.500000px;}
.x89_c00272{left:720.000000px;}
.x111_c00272{left:724.500000px;}
.x105_c00272{left:751.500000px;}
.x10b_c00272{left:756.000000px;}
.x10e_c00272{left:757.500000px;}
.x114_c00272{left:760.500000px;}
@media print{
.v1_c00272{vertical-align:-5.333333pt;}
.v0_c00272{vertical-align:0.000000pt;}
.ls2_c00272{letter-spacing:0.000000pt;}
.ls1_c00272{letter-spacing:10.679988pt;}
.ls0_c00272{letter-spacing:60.566342pt;}
.ws4_c00272{word-spacing:-70.284102pt;}
.ws15_c00272{word-spacing:-12.455348pt;}
.ws16_c00272{word-spacing:0.000000pt;}
.ws13_c00272{word-spacing:7.443089pt;}
.wsc_c00272{word-spacing:8.226708pt;}
.ws14_c00272{word-spacing:8.417448pt;}
.ws0_c00272{word-spacing:8.664910pt;}
.wsa_c00272{word-spacing:8.713887pt;}
.ws9_c00272{word-spacing:8.904628pt;}
.ws11_c00272{word-spacing:9.731209pt;}
.ws10_c00272{word-spacing:10.387476pt;}
.ws1_c00272{word-spacing:11.532166pt;}
.ws12_c00272{word-spacing:12.099545pt;}
.ws5_c00272{word-spacing:20.762233pt;}
.ws2_c00272{word-spacing:22.482765pt;}
.ws6_c00272{word-spacing:22.763335pt;}
.wsf_c00272{word-spacing:26.417737pt;}
.ws8_c00272{word-spacing:27.662063pt;}
.wsb_c00272{word-spacing:28.300707pt;}
.ws7_c00272{word-spacing:34.613363pt;}
.wse_c00272{word-spacing:36.439642pt;}
.wsd_c00272{word-spacing:44.921417pt;}
.ws3_c00272{word-spacing:50.848582pt;}
._1_c00272{margin-left:-60.566342pt;}
._4_c00272{margin-left:-11.357908pt;}
._0_c00272{width:2.909091pt;}
._3_c00272{width:10.679988pt;}
._2_c00272{width:28.925024pt;}
.fs7_c00272{font-size:3.040000pt;}
.fsa_c00272{font-size:6.026667pt;}
.fs9_c00272{font-size:10.560000pt;}
.fs2_c00272{font-size:12.106667pt;}
.fs5_c00272{font-size:16.640000pt;}
.fs0_c00272{font-size:18.133333pt;}
.fs3_c00272{font-size:22.666667pt;}
.fs1_c00272{font-size:25.706667pt;}
.fs4_c00272{font-size:28.746667pt;}
.fs6_c00272{font-size:31.733333pt;}
.fs8_c00272{font-size:34.773333pt;}
.y0_c00272{bottom:0.000000pt;}
.y121_c00272{bottom:216.373333pt;}
.y11f_c00272{bottom:216.560000pt;}
.y120_c00272{bottom:217.706667pt;}
.y117_c00272{bottom:218.840000pt;}
.y11e_c00272{bottom:219.040000pt;}
.y116_c00272{bottom:220.173333pt;}
.y115_c00272{bottom:220.560000pt;}
.y114_c00272{bottom:223.226667pt;}
.y11c_c00272{bottom:228.560000pt;}
.y11a_c00272{bottom:229.506667pt;}
.y11d_c00272{bottom:229.706667pt;}
.y11b_c00272{bottom:229.893333pt;}
.y118_c00272{bottom:230.840000pt;}
.y119_c00272{bottom:231.040000pt;}
.y113_c00272{bottom:231.226667pt;}
.y112_c00272{bottom:233.893333pt;}
.y111_c00272{bottom:235.800000pt;}
.y110_c00272{bottom:236.173333pt;}
.y10e_c00272{bottom:240.560000pt;}
.y10d_c00272{bottom:241.506667pt;}
.y10f_c00272{bottom:241.706667pt;}
.y10a_c00272{bottom:241.893333pt;}
.y10b_c00272{bottom:242.840000pt;}
.y104_c00272{bottom:243.226667pt;}
.y10c_c00272{bottom:244.373333pt;}
.y103_c00272{bottom:244.560000pt;}
.y102_c00272{bottom:245.893333pt;}
.y108_c00272{bottom:253.506667pt;}
.y109_c00272{bottom:253.706667pt;}
.y105_c00272{bottom:253.893333pt;}
.y107_c00272{bottom:254.840000pt;}
.y101_c00272{bottom:255.226667pt;}
.yff_c00272{bottom:255.800000pt;}
.y100_c00272{bottom:256.173333pt;}
.y106_c00272{bottom:256.373333pt;}
.yfe_c00272{bottom:256.933333pt;}
.yfd_c00272{bottom:261.506667pt;}
.yfc_c00272{bottom:264.560000pt;}
.yfa_c00272{bottom:265.893333pt;}
.yf9_c00272{bottom:266.840000pt;}
.yfb_c00272{bottom:267.040000pt;}
.yf8_c00272{bottom:267.226667pt;}
.yf0_c00272{bottom:268.173333pt;}
.yf7_c00272{bottom:268.373333pt;}
.yef_c00272{bottom:268.760000pt;}
.yee_c00272{bottom:271.600000pt;}
.yed_c00272{bottom:273.133333pt;}
.yf6_c00272{bottom:277.893333pt;}
.yf5_c00272{bottom:278.840000pt;}
.yf2_c00272{bottom:279.226667pt;}
.yf3_c00272{bottom:280.173333pt;}
.yf4_c00272{bottom:280.373333pt;}
.yf1_c00272{bottom:281.706667pt;}
.yec_c00272{bottom:282.266667pt;}
.yeb_c00272{bottom:284.560000pt;}
.yea_c00272{bottom:289.893333pt;}
.ye9_c00272{bottom:290.840000pt;}
.ye7_c00272{bottom:292.173333pt;}
.ye8_c00272{bottom:292.373333pt;}
.ye5_c00272{bottom:293.506667pt;}
.ye6_c00272{bottom:293.706667pt;}
.ye4_c00272{bottom:293.893333pt;}
.ye3_c00272{bottom:295.226667pt;}
.ye2_c00272{bottom:297.893333pt;}
.ye1_c00272{bottom:301.893333pt;}
.ye0_c00272{bottom:302.840000pt;}
.yde_c00272{bottom:304.173333pt;}
.ydf_c00272{bottom:304.373333pt;}
.ydc_c00272{bottom:305.506667pt;}
.ydd_c00272{bottom:305.706667pt;}
.ydb_c00272{bottom:305.893333pt;}
.yda_c00272{bottom:307.226667pt;}
.yd9_c00272{bottom:309.893333pt;}
.yd8_c00272{bottom:314.840000pt;}
.yd7_c00272{bottom:315.226667pt;}
.yd6_c00272{bottom:316.173333pt;}
.yd5_c00272{bottom:316.560000pt;}
.yd4_c00272{bottom:317.706667pt;}
.yce_c00272{bottom:321.893333pt;}
.yd2_c00272{bottom:327.226667pt;}
.yd3_c00272{bottom:328.173333pt;}
.yd1_c00272{bottom:328.560000pt;}
.ycd_c00272{bottom:328.933333pt;}
.yd0_c00272{bottom:329.506667pt;}
.ycf_c00272{bottom:329.706667pt;}
.ycc_c00272{bottom:330.840000pt;}
.ycb_c00272{bottom:332.173333pt;}
.yca_c00272{bottom:333.893333pt;}
.yc8_c00272{bottom:344.560000pt;}
.yc9_c00272{bottom:345.506667pt;}
.yc6_c00272{bottom:345.893333pt;}
.yc7_c00272{bottom:346.840000pt;}
.ybf_c00272{bottom:349.893333pt;}
.yc5_c00272{bottom:355.226667pt;}
.yc4_c00272{bottom:356.173333pt;}
.yc3_c00272{bottom:356.560000pt;}
.yc2_c00272{bottom:357.506667pt;}
.yc1_c00272{bottom:357.893333pt;}
.yc0_c00272{bottom:358.840000pt;}
.ybe_c00272{bottom:359.226667pt;}
.ybd_c00272{bottom:360.173333pt;}
.ybc_c00272{bottom:363.226667pt;}
.yb9_c00272{bottom:375.400000pt;}
.ybb_c00272{bottom:377.306667pt;}
.yba_c00272{bottom:378.266667pt;}
.yb8_c00272{bottom:388.733333pt;}
.yb7_c00272{bottom:388.933333pt;}
.yb5_c00272{bottom:390.640000pt;}
.yb6_c00272{bottom:391.600000pt;}
.yb4_c00272{bottom:405.306667pt;}
.yb3_c00272{bottom:407.973333pt;}
.yb2_c00272{bottom:425.693333pt;}
.yb1_c00272{bottom:428.360000pt;}
.yae_c00272{bottom:443.026667pt;}
.yaf_c00272{bottom:443.773333pt;}
.yb0_c00272{bottom:444.560000pt;}
.yad_c00272{bottom:445.306667pt;}
.yac_c00272{bottom:445.693333pt;}
.yab_c00272{bottom:461.106667pt;}
.yaa_c00272{bottom:463.026667pt;}
.ya8_c00272{bottom:478.440000pt;}
.ya6_c00272{bottom:480.360000pt;}
.ya7_c00272{bottom:480.560000pt;}
.ya9_c00272{bottom:481.306667pt;}
.ya4_c00272{bottom:495.773333pt;}
.ya5_c00272{bottom:496.160000pt;}
.ya2_c00272{bottom:496.733333pt;}
.ya0_c00272{bottom:497.693333pt;}
.ya3_c00272{bottom:498.640000pt;}
.ya1_c00272{bottom:499.026667pt;}
.y9e_c00272{bottom:513.106667pt;}
.y9b_c00272{bottom:514.440000pt;}
.y9f_c00272{bottom:515.026667pt;}
.y9d_c00272{bottom:515.226667pt;}
.y9c_c00272{bottom:516.360000pt;}
.y97_c00272{bottom:530.440000pt;}
.y99_c00272{bottom:531.773333pt;}
.y9a_c00272{bottom:532.560000pt;}
.y98_c00272{bottom:533.306667pt;}
.y96_c00272{bottom:533.693333pt;}
.y94_c00272{bottom:548.733333pt;}
.y91_c00272{bottom:549.106667pt;}
.y95_c00272{bottom:549.893333pt;}
.y92_c00272{bottom:550.066667pt;}
.y90_c00272{bottom:551.026667pt;}
.y93_c00272{bottom:551.973333pt;}
.y8c_c00272{bottom:565.693333pt;}
.y8f_c00272{bottom:566.066667pt;}
.y8e_c00272{bottom:566.440000pt;}
.y8d_c00272{bottom:567.973333pt;}
.y8b_c00272{bottom:568.360000pt;}
.y89_c00272{bottom:584.160000pt;}
.y88_c00272{bottom:585.106667pt;}
.y8a_c00272{bottom:585.693333pt;}
.y87_c00272{bottom:585.893333pt;}
.y86_c00272{bottom:587.026667pt;}
.y85_c00272{bottom:602.266667pt;}
.y84_c00272{bottom:602.440000pt;}
.y83_c00272{bottom:603.226667pt;}
.y82_c00272{bottom:603.400000pt;}
.y81_c00272{bottom:604.360000pt;}
.y7f_c00272{bottom:619.773333pt;}
.y80_c00272{bottom:620.560000pt;}
.y7d_c00272{bottom:621.306667pt;}
.y7c_c00272{bottom:621.693333pt;}
.y7e_c00272{bottom:622.640000pt;}
.y79_c00272{bottom:637.106667pt;}
.y7a_c00272{bottom:637.893333pt;}
.y7b_c00272{bottom:639.026667pt;}
.y78_c00272{bottom:654.440000pt;}
.y77_c00272{bottom:655.226667pt;}
.y76_c00272{bottom:656.360000pt;}
.y72_c00272{bottom:669.693333pt;}
.y75_c00272{bottom:671.773333pt;}
.y73_c00272{bottom:671.973333pt;}
.y71_c00272{bottom:672.560000pt;}
.y70_c00272{bottom:673.693333pt;}
.y74_c00272{bottom:673.893333pt;}
.y6d_c00272{bottom:689.106667pt;}
.y6e_c00272{bottom:691.026667pt;}
.y6f_c00272{bottom:691.226667pt;}
.y6c_c00272{bottom:691.973333pt;}
.y69_c00272{bottom:706.440000pt;}
.y6b_c00272{bottom:707.400000pt;}
.y67_c00272{bottom:708.360000pt;}
.y6a_c00272{bottom:709.306667pt;}
.y68_c00272{bottom:709.693333pt;}
.y65_c00272{bottom:723.773333pt;}
.y60_c00272{bottom:725.106667pt;}
.y62_c00272{bottom:725.693333pt;}
.y66_c00272{bottom:725.893333pt;}
.y63_c00272{bottom:726.640000pt;}
.y64_c00272{bottom:727.026667pt;}
.y61_c00272{bottom:727.040000pt;}
.y5e_c00272{bottom:747.973333pt;}
.y5a_c00272{bottom:748.360000pt;}
.y59_c00272{bottom:748.933333pt;}
.y5d_c00272{bottom:749.306667pt;}
.y5f_c00272{bottom:749.693333pt;}
.y5b_c00272{bottom:749.893333pt;}
.y5c_c00272{bottom:750.266667pt;}
.y52_c00272{bottom:760.933333pt;}
.y57_c00272{bottom:761.306667pt;}
.y54_c00272{bottom:761.693333pt;}
.y53_c00272{bottom:762.640000pt;}
.y56_c00272{bottom:762.840000pt;}
.y58_c00272{bottom:763.226667pt;}
.y55_c00272{bottom:763.600000pt;}
.y4e_c00272{bottom:774.066667pt;}
.y4a_c00272{bottom:775.026667pt;}
.y4d_c00272{bottom:775.400000pt;}
.y4b_c00272{bottom:775.973333pt;}
.y4c_c00272{bottom:776.173333pt;}
.y4f_c00272{bottom:776.360000pt;}
.y49_c00272{bottom:776.933333pt;}
.y51_c00272{bottom:777.306667pt;}
.y50_c00272{bottom:777.506667pt;}
.y44_c00272{bottom:787.400000pt;}
.y45_c00272{bottom:788.360000pt;}
.y46_c00272{bottom:788.560000pt;}
.y48_c00272{bottom:789.306667pt;}
.y47_c00272{bottom:790.266667pt;}
.y40_c00272{bottom:799.973333pt;}
.y42_c00272{bottom:801.693333pt;}
.y43_c00272{bottom:802.640000pt;}
.y41_c00272{bottom:803.600000pt;}
.y3a_c00272{bottom:813.693333pt;}
.y3d_c00272{bottom:814.066667pt;}
.y3f_c00272{bottom:815.026667pt;}
.y3c_c00272{bottom:815.973333pt;}
.y3b_c00272{bottom:816.173333pt;}
.y3e_c00272{bottom:816.933333pt;}
.y39_c00272{bottom:826.640000pt;}
.y38_c00272{bottom:827.400000pt;}
.y35_c00272{bottom:828.933333pt;}
.y36_c00272{bottom:829.306667pt;}
.y37_c00272{bottom:830.266667pt;}
.y34_c00272{bottom:840.360000pt;}
.y33_c00272{bottom:842.266667pt;}
.y2b_c00272{bottom:853.306667pt;}
.y2e_c00272{bottom:854.066667pt;}
.y2d_c00272{bottom:854.840000pt;}
.y30_c00272{bottom:855.026667pt;}
.y2c_c00272{bottom:855.600000pt;}
.y31_c00272{bottom:855.973333pt;}
.y32_c00272{bottom:856.173333pt;}
.y2f_c00272{bottom:856.933333pt;}
.y2a_c00272{bottom:866.066667pt;}
.y28_c00272{bottom:867.026667pt;}
.y27_c00272{bottom:867.973333pt;}
.y29_c00272{bottom:868.173333pt;}
.y26_c00272{bottom:868.933333pt;}
.y21_c00272{bottom:878.640000pt;}
.y23_c00272{bottom:880.360000pt;}
.y25_c00272{bottom:881.306667pt;}
.y24_c00272{bottom:881.506667pt;}
.y22_c00272{bottom:882.266667pt;}
.y1c_c00272{bottom:892.733333pt;}
.y1d_c00272{bottom:893.693333pt;}
.y1e_c00272{bottom:894.640000pt;}
.y1f_c00272{bottom:894.840000pt;}
.y20_c00272{bottom:895.600000pt;}
.y1b_c00272{bottom:905.306667pt;}
.y19_c00272{bottom:906.066667pt;}
.y16_c00272{bottom:906.266667pt;}
.y1a_c00272{bottom:907.026667pt;}
.y18_c00272{bottom:907.226667pt;}
.y17_c00272{bottom:907.973333pt;}
.y15_c00272{bottom:918.640000pt;}
.y13_c00272{bottom:919.400000pt;}
.y14_c00272{bottom:920.560000pt;}
.y12_c00272{bottom:921.306667pt;}
.y11_c00272{bottom:922.266667pt;}
.yd_c00272{bottom:932.360000pt;}
.y9_c00272{bottom:932.560000pt;}
.yf_c00272{bottom:932.733333pt;}
.yb_c00272{bottom:933.693333pt;}
.ya_c00272{bottom:934.266667pt;}
.y10_c00272{bottom:934.640000pt;}
.yc_c00272{bottom:934.840000pt;}
.ye_c00272{bottom:935.600000pt;}
.y4_c00272{bottom:945.693333pt;}
.y7_c00272{bottom:946.066667pt;}
.y8_c00272{bottom:946.266667pt;}
.y6_c00272{bottom:946.640000pt;}
.y3_c00272{bottom:946.840000pt;}
.y5_c00272{bottom:947.600000pt;}
.y2_c00272{bottom:977.693333pt;}
.y1_c00272{bottom:979.600000pt;}
.h8_c00272{height:3.739141pt;}
.hb_c00272{height:7.412682pt;}
.ha_c00272{height:12.988594pt;}
.h3_c00272{height:14.890964pt;}
.h6_c00272{height:20.466875pt;}
.h1_c00272{height:22.303646pt;}
.h4_c00272{height:27.879557pt;}
.h2_c00272{height:31.618698pt;}
.h5_c00272{height:35.357839pt;}
.h7_c00272{height:39.031380pt;}
.h9_c00272{height:42.770521pt;}
.h0_c00272{height:1186.666667pt;}
.w0_c00272{width:782.666667pt;}
.x0_c00272{left:0.000000pt;}
.xff_c00272{left:106.666667pt;}
.x102_c00272{left:107.626667pt;}
.x116_c00272{left:112.000000pt;}
.x100_c00272{left:114.666667pt;}
.x117_c00272{left:116.000000pt;}
.x11d_c00272{left:118.666667pt;}
.x107_c00272{left:120.000000pt;}
.x115_c00272{left:122.666667pt;}
.x101_c00272{left:126.666667pt;}
.x118_c00272{left:130.666667pt;}
.x18_c00272{left:133.333333pt;}
.x8a_c00272{left:134.666667pt;}
.xf8_c00272{left:136.000000pt;}
.x119_c00272{left:138.666667pt;}
.x108_c00272{left:142.666667pt;}
.x77_c00272{left:144.000000pt;}
.x3_c00272{left:146.293333pt;}
.x22_c00272{left:147.426667pt;}
.xd3_c00272{left:148.373333pt;}
.xf3_c00272{left:149.333333pt;}
.xbd_c00272{left:151.040000pt;}
.x55_c00272{left:157.333333pt;}
.xb3_c00272{left:158.293333pt;}
.x92_c00272{left:161.706667pt;}
.x10f_c00272{left:162.666667pt;}
.x44_c00272{left:164.000000pt;}
.xe9_c00272{left:165.706667pt;}
.x37_c00272{left:166.666667pt;}
.x4_c00272{left:168.000000pt;}
.xbe_c00272{left:174.666667pt;}
.x5f_c00272{left:177.333333pt;}
.xa3_c00272{left:182.293333pt;}
.xab_c00272{left:184.000000pt;}
.x45_c00272{left:185.333333pt;}
.xb4_c00272{left:186.293333pt;}
.x60_c00272{left:188.000000pt;}
.x93_c00272{left:190.293333pt;}
.xcb_c00272{left:191.626667pt;}
.x19_c00272{left:193.333333pt;}
.xd4_c00272{left:196.373333pt;}
.xda_c00272{left:197.333333pt;}
.x99_c00272{left:200.960000pt;}
.xb5_c00272{left:202.666667pt;}
.x2d_c00272{left:204.573333pt;}
.x4b_c00272{left:206.293333pt;}
.x23_c00272{left:208.000000pt;}
.x94_c00272{left:209.333333pt;}
.x8b_c00272{left:213.706667pt;}
.xf9_c00272{left:217.333333pt;}
.x56_c00272{left:218.666667pt;}
.x5_c00272{left:220.000000pt;}
.x1a_c00272{left:222.666667pt;}
.xea_c00272{left:224.373333pt;}
.x38_c00272{left:225.706667pt;}
.x106_c00272{left:226.666667pt;}
.x61_c00272{left:227.626667pt;}
.x9a_c00272{left:231.040000pt;}
.xe_c00272{left:232.000000pt;}
.x4c_c00272{left:232.960000pt;}
.x11e_c00272{left:234.666667pt;}
.x95_c00272{left:236.000000pt;}
.x24_c00272{left:238.666667pt;}
.xbf_c00272{left:240.000000pt;}
.xd5_c00272{left:241.333333pt;}
.x46_c00272{left:242.666667pt;}
.x2e_c00272{left:244.000000pt;}
.xf0_c00272{left:245.706667pt;}
.xa4_c00272{left:246.666667pt;}
.x6_c00272{left:249.333333pt;}
.x78_c00272{left:251.426667pt;}
.x69_c00272{left:252.373333pt;}
.x62_c00272{left:253.706667pt;}
.x109_c00272{left:254.666667pt;}
.x10c_c00272{left:256.000000pt;}
.xac_c00272{left:257.706667pt;}
.xcc_c00272{left:259.040000pt;}
.xc6_c00272{left:260.000000pt;}
.x57_c00272{left:261.333333pt;}
.x9b_c00272{left:262.666667pt;}
.x1b_c00272{left:264.000000pt;}
.xdb_c00272{left:269.333333pt;}
.xc0_c00272{left:270.666667pt;}
.x83_c00272{left:272.373333pt;}
.xf1_c00272{left:273.333333pt;}
.x6f_c00272{left:274.666667pt;}
.x8c_c00272{left:277.333333pt;}
.xa5_c00272{left:278.666667pt;}
.x79_c00272{left:281.333333pt;}
.xc1_c00272{left:284.373333pt;}
.x10d_c00272{left:286.666667pt;}
.xe4_c00272{left:288.373333pt;}
.x58_c00272{left:289.706667pt;}
.x63_c00272{left:290.666667pt;}
.x25_c00272{left:292.000000pt;}
.xcd_c00272{left:294.293333pt;}
.xeb_c00272{left:296.960000pt;}
.x7_c00272{left:298.293333pt;}
.xd6_c00272{left:300.373333pt;}
.x1c_c00272{left:301.333333pt;}
.xf_c00272{left:302.293333pt;}
.x8d_c00272{left:305.333333pt;}
.x70_c00272{left:306.666667pt;}
.x8_c00272{left:308.000000pt;}
.xdc_c00272{left:309.333333pt;}
.x39_c00272{left:313.706667pt;}
.x2f_c00272{left:316.000000pt;}
.x64_c00272{left:317.706667pt;}
.xad_c00272{left:318.666667pt;}
.xc7_c00272{left:320.000000pt;}
.xec_c00272{left:322.666667pt;}
.xdd_c00272{left:325.333333pt;}
.x3a_c00272{left:327.626667pt;}
.xe2_c00272{left:329.706667pt;}
.xf2_c00272{left:332.000000pt;}
.x10_c00272{left:333.333333pt;}
.x4d_c00272{left:336.000000pt;}
.x9_c00272{left:336.960000pt;}
.xb6_c00272{left:338.666667pt;}
.x65_c00272{left:340.000000pt;}
.xe5_c00272{left:341.333333pt;}
.x84_c00272{left:343.626667pt;}
.x26_c00272{left:345.333333pt;}
.x3b_c00272{left:346.293333pt;}
.x8e_c00272{left:347.626667pt;}
.x71_c00272{left:349.333333pt;}
.xce_c00272{left:350.293333pt;}
.x47_c00272{left:352.000000pt;}
.x6a_c00272{left:354.666667pt;}
.x10a_c00272{left:356.000000pt;}
.xe6_c00272{left:357.333333pt;}
.x1_c00272{left:358.666667pt;}
.x85_c00272{left:360.373333pt;}
.x48_c00272{left:361.333333pt;}
.xa_c00272{left:363.040000pt;}
.x30_c00272{left:365.333333pt;}
.xf7_c00272{left:366.666667pt;}
.x3c_c00272{left:368.000000pt;}
.xfa_c00272{left:369.333333pt;}
.x1d_c00272{left:373.333333pt;}
.x31_c00272{left:374.666667pt;}
.x4e_c00272{left:376.373333pt;}
.xed_c00272{left:377.333333pt;}
.x103_c00272{left:380.373333pt;}
.xf4_c00272{left:382.293333pt;}
.xd7_c00272{left:384.000000pt;}
.x86_c00272{left:384.960000pt;}
.x80_c00272{left:386.666667pt;}
.x110_c00272{left:388.000000pt;}
.x27_c00272{left:389.333333pt;}
.x4f_c00272{left:390.666667pt;}
.x11_c00272{left:392.000000pt;}
.x6b_c00272{left:394.666667pt;}
.x3d_c00272{left:396.000000pt;}
.xcf_c00272{left:397.333333pt;}
.x7a_c00272{left:399.040000pt;}
.xb_c00272{left:400.000000pt;}
.xc2_c00272{left:401.706667pt;}
.xb7_c00272{left:404.373333pt;}
.x9c_c00272{left:406.666667pt;}
.x59_c00272{left:409.706667pt;}
.x50_c00272{left:412.000000pt;}
.x81_c00272{left:413.706667pt;}
.xfe_c00272{left:414.666667pt;}
.x32_c00272{left:415.626667pt;}
.xe7_c00272{left:417.706667pt;}
.x28_c00272{left:419.040000pt;}
.xde_c00272{left:420.373333pt;}
.x12_c00272{left:422.666667pt;}
.x5a_c00272{left:425.706667pt;}
.xc_c00272{left:427.040000pt;}
.xfb_c00272{left:431.040000pt;}
.x1e_c00272{left:433.333333pt;}
.x7b_c00272{left:436.000000pt;}
.xb8_c00272{left:437.333333pt;}
.x9d_c00272{left:438.293333pt;}
.x33_c00272{left:440.373333pt;}
.x49_c00272{left:441.706667pt;}
.x82_c00272{left:443.626667pt;}
.xfc_c00272{left:448.000000pt;}
.xd_c00272{left:450.666667pt;}
.x112_c00272{left:452.000000pt;}
.xe8_c00272{left:453.333333pt;}
.x6c_c00272{left:456.000000pt;}
.x13_c00272{left:457.706667pt;}
.x72_c00272{left:458.666667pt;}
.xee_c00272{left:460.000000pt;}
.xb9_c00272{left:461.333333pt;}
.x1f_c00272{left:462.293333pt;}
.xc8_c00272{left:464.000000pt;}
.xc3_c00272{left:467.626667pt;}
.x73_c00272{left:469.333333pt;}
.x96_c00272{left:471.040000pt;}
.x3e_c00272{left:472.000000pt;}
.x7c_c00272{left:472.960000pt;}
.x14_c00272{left:474.666667pt;}
.xae_c00272{left:476.000000pt;}
.x34_c00272{left:477.333333pt;}
.x4a_c00272{left:478.666667pt;}
.xd0_c00272{left:480.000000pt;}
.x29_c00272{left:480.960000pt;}
.x6d_c00272{left:482.293333pt;}
.x7d_c00272{left:484.000000pt;}
.xd8_c00272{left:485.333333pt;}
.x20_c00272{left:487.040000pt;}
.x3f_c00272{left:488.000000pt;}
.xa6_c00272{left:490.666667pt;}
.x9e_c00272{left:491.626667pt;}
.xd1_c00272{left:494.666667pt;}
.x8f_c00272{left:496.373333pt;}
.x2a_c00272{left:498.666667pt;}
.x5b_c00272{left:500.960000pt;}
.x35_c00272{left:503.626667pt;}
.xaf_c00272{left:504.960000pt;}
.x6e_c00272{left:506.666667pt;}
.x11b_c00272{left:508.000000pt;}
.x40_c00272{left:508.960000pt;}
.x51_c00272{left:510.666667pt;}
.xfd_c00272{left:512.000000pt;}
.xf5_c00272{left:514.293333pt;}
.x5c_c00272{left:516.373333pt;}
.x9f_c00272{left:517.333333pt;}
.xa7_c00272{left:519.040000pt;}
.x52_c00272{left:520.000000pt;}
.xb0_c00272{left:521.333333pt;}
.x21_c00272{left:524.000000pt;}
.xdf_c00272{left:525.333333pt;}
.x74_c00272{left:527.040000pt;}
.x36_c00272{left:528.000000pt;}
.xa0_c00272{left:532.000000pt;}
.xb1_c00272{left:533.333333pt;}
.xd9_c00272{left:534.666667pt;}
.x87_c00272{left:536.960000pt;}
.x66_c00272{left:538.666667pt;}
.x90_c00272{left:540.000000pt;}
.xba_c00272{left:540.960000pt;}
.xe0_c00272{left:544.000000pt;}
.x41_c00272{left:545.333333pt;}
.xc4_c00272{left:547.040000pt;}
.x113_c00272{left:548.000000pt;}
.x15_c00272{left:549.333333pt;}
.x2b_c00272{left:552.000000pt;}
.x91_c00272{left:557.333333pt;}
.x75_c00272{left:560.000000pt;}
.x53_c00272{left:560.960000pt;}
.xe3_c00272{left:563.040000pt;}
.x97_c00272{left:564.000000pt;}
.x7e_c00272{left:566.666667pt;}
.xa8_c00272{left:567.626667pt;}
.xa1_c00272{left:569.333333pt;}
.x67_c00272{left:571.626667pt;}
.x42_c00272{left:573.333333pt;}
.xb2_c00272{left:575.040000pt;}
.xc9_c00272{left:576.000000pt;}
.x5d_c00272{left:577.333333pt;}
.x11a_c00272{left:580.000000pt;}
.xbb_c00272{left:581.706667pt;}
.xc5_c00272{left:582.666667pt;}
.xa2_c00272{left:585.706667pt;}
.x16_c00272{left:587.040000pt;}
.x2c_c00272{left:588.960000pt;}
.xa9_c00272{left:595.040000pt;}
.xe1_c00272{left:597.706667pt;}
.x88_c00272{left:598.666667pt;}
.xf6_c00272{left:600.000000pt;}
.x43_c00272{left:603.040000pt;}
.x11c_c00272{left:604.000000pt;}
.xca_c00272{left:605.333333pt;}
.xbc_c00272{left:606.666667pt;}
.x68_c00272{left:608.000000pt;}
.xef_c00272{left:612.000000pt;}
.x76_c00272{left:613.333333pt;}
.x17_c00272{left:614.293333pt;}
.x5e_c00272{left:615.626667pt;}
.xaa_c00272{left:620.000000pt;}
.x7f_c00272{left:621.333333pt;}
.xd2_c00272{left:622.666667pt;}
.x54_c00272{left:624.000000pt;}
.x2_c00272{left:624.960000pt;}
.x98_c00272{left:633.333333pt;}
.x104_c00272{left:636.000000pt;}
.x89_c00272{left:640.000000pt;}
.x111_c00272{left:644.000000pt;}
.x105_c00272{left:668.000000pt;}
.x10b_c00272{left:672.000000pt;}
.x10e_c00272{left:673.333333pt;}
.x114_c00272{left:676.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_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_7a256f11e5f9f261f620ce71.woff2')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m90_c00273{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00273{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.me6_c00273{transform:matrix(0.336273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336273,0.000000,0.000000,0.250000,0,0);}
.m7e_c00273{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m5a_c00273{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m55_c00273{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mea_c00273{transform:matrix(0.366564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366564,0.000000,0.000000,0.250000,0,0);}
.m37_c00273{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m31_c00273{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m2b_c00273{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mad_c00273{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m6d_c00273{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.md7_c00273{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m21_c00273{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mdd_c00273{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m39_c00273{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m92_c00273{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m82_c00273{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m30_c00273{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m3e_c00273{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.me3_c00273{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m20_c00273{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m3a_c00273{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.md2_c00273{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m85_c00273{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m1f_c00273{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.mb7_c00273{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.mdf_c00273{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.mb8_c00273{transform:matrix(0.398390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398390,0.000000,0.000000,0.250000,0,0);}
.ma1_c00273{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m62_c00273{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.me4_c00273{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mdc_c00273{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.mcf_c00273{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.m67_c00273{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m61_c00273{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m8f_c00273{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m29_c00273{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.mcd_c00273{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.ma0_c00273{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.maa_c00273{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m28_c00273{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.md8_c00273{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m81_c00273{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.m74_c00273{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m6f_c00273{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m36_c00273{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m12_c00273{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m45_c00273{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mb3_c00273{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mca_c00273{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.mbf_c00273{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m38_c00273{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m70_c00273{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mbc_c00273{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m8_c00273{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m3f_c00273{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.md1_c00273{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m3c_c00273{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m72_c00273{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.md4_c00273{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m33_c00273{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m50_c00273{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m46_c00273{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m54_c00273{transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);}
.m2a_c00273{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.mb4_c00273{transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);}
.mbe_c00273{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.m86_c00273{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m9d_c00273{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.mde_c00273{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m41_c00273{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.me2_c00273{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m8c_c00273{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m7c_c00273{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mc7_c00273{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m2d_c00273{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m24_c00273{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m59_c00273{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m19_c00273{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mb1_c00273{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mbd_c00273{transform:matrix(0.449907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449907,0.000000,0.000000,0.250000,0,0);}
.m91_c00273{transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);}
.m79_c00273{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.mc8_c00273{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m2e_c00273{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m4d_c00273{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.ma3_c00273{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m58_c00273{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m84_c00273{transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);}
.m7_c00273{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m9c_c00273{transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);}
.m69_c00273{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mab_c00273{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m87_c00273{transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);}
.m9e_c00273{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mc9_c00273{transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);}
.m95_c00273{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.m5c_c00273{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m43_c00273{transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);}
.mb6_c00273{transform:matrix(0.473562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473562,0.000000,0.000000,0.250000,0,0);}
.mb0_c00273{transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);}
.m89_c00273{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.m40_c00273{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m23_c00273{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mda_c00273{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m6c_c00273{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m6_c00273{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m71_c00273{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m5b_c00273{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m49_c00273{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.ma9_c00273{transform:matrix(0.485714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485714,0.000000,0.000000,0.250000,0,0);}
.m52_c00273{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m56_c00273{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mc5_c00273{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_c00273{transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);}
.m0_c00273{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m47_c00273{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m5f_c00273{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m60_c00273{transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);}
.mdb_c00273{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m78_c00273{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.md_c00273{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);}
.mb9_c00273{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.md0_c00273{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mc_c00273{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m77_c00273{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mb2_c00273{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mce_c00273{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.md3_c00273{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mc2_c00273{transform:matrix(0.511596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511596,0.000000,0.000000,0.250000,0,0);}
.m9b_c00273{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m80_c00273{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.me1_c00273{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m57_c00273{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m1d_c00273{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m93_c00273{transform:matrix(0.519017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519017,0.000000,0.000000,0.250000,0,0);}
.mac_c00273{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m2_c00273{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.me_c00273{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m3b_c00273{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m26_c00273{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m8b_c00273{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.mb5_c00273{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.ma6_c00273{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m66_c00273{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.me7_c00273{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m64_c00273{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.me9_c00273{transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);}
.ma_c00273{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.me0_c00273{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m75_c00273{transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);}
.ma7_c00273{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.mc3_c00273{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.me8_c00273{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.md6_c00273{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m9a_c00273{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m76_c00273{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m7b_c00273{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m3d_c00273{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m2c_c00273{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.ma2_c00273{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.mcb_c00273{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);}
.m6a_c00273{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m65_c00273{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m4e_c00273{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m98_c00273{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m96_c00273{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m2f_c00273{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.md9_c00273{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m8e_c00273{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mc6_c00273{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m1e_c00273{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m7d_c00273{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m11_c00273{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m51_c00273{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m4f_c00273{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m5_c00273{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m14_c00273{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mb_c00273{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m1c_c00273{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m4a_c00273{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m32_c00273{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mbb_c00273{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m18_c00273{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m27_c00273{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m25_c00273{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m97_c00273{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m7a_c00273{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m5d_c00273{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m5e_c00273{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m16_c00273{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m1a_c00273{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m8d_c00273{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m9f_c00273{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m73_c00273{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m6b_c00273{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m44_c00273{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m4_c00273{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_c00273{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mcc_c00273{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mc1_c00273{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m63_c00273{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m10_c00273{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m6e_c00273{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.maf_c00273{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.mae_c00273{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_c00273{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m83_c00273{transform:matrix(0.636411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636411,0.000000,0.000000,0.250000,0,0);}
.m15_c00273{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m13_c00273{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m22_c00273{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mc0_c00273{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.mc4_c00273{transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);}
.md5_c00273{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m94_c00273{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mba_c00273{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m8a_c00273{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mf_c00273{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m68_c00273{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m88_c00273{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m9_c00273{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m1b_c00273{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m99_c00273{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m34_c00273{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m7f_c00273{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.ma8_c00273{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m4b_c00273{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m48_c00273{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m4c_c00273{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.ma4_c00273{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m53_c00273{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m42_c00273{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m17_c00273{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.m3_c00273{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws1_c00273{word-spacing:-16.889280px;}
.ws0_c00273{word-spacing:-6.287096px;}
.ws2_c00273{word-spacing:0.000000px;}
._0_c00273{width:5.902494px;}
.fc0_c00273{color:transparent;}
.fs2_c00273{font-size:3.420000px;}
.fs6_c00273{font-size:18.720000px;}
.fs1_c00273{font-size:20.400000px;}
.fs3_c00273{font-size:25.500000px;}
.fs0_c00273{font-size:28.920000px;}
.fs5_c00273{font-size:32.340000px;}
.fs4_c00273{font-size:35.700000px;}
.fs7_c00273{font-size:39.120000px;}
.y0_c00273{bottom:0.000000px;}
.yc9_c00273{bottom:252.825000px;}
.yc7_c00273{bottom:253.245000px;}
.yc8_c00273{bottom:255.405000px;}
.yc6_c00273{bottom:271.680000px;}
.yc4_c00273{bottom:273.630000px;}
.yc3_c00273{bottom:274.905000px;}
.yc5_c00273{bottom:275.130000px;}
.ybe_c00273{bottom:292.245000px;}
.yc2_c00273{bottom:292.680000px;}
.yc1_c00273{bottom:293.745000px;}
.ybf_c00273{bottom:294.405000px;}
.yc0_c00273{bottom:295.905000px;}
.ybd_c00273{bottom:312.180000px;}
.ybb_c00273{bottom:313.245000px;}
.yb9_c00273{bottom:313.905000px;}
.yba_c00273{bottom:314.130000px;}
.yb8_c00273{bottom:314.970000px;}
.ybc_c00273{bottom:315.405000px;}
.yb4_c00273{bottom:331.905000px;}
.yb5_c00273{bottom:332.745000px;}
.yb7_c00273{bottom:333.825000px;}
.yb6_c00273{bottom:334.905000px;}
.yb3_c00273{bottom:349.905000px;}
.yb2_c00273{bottom:351.405000px;}
.yae_c00273{bottom:352.245000px;}
.yb1_c00273{bottom:353.325000px;}
.yaf_c00273{bottom:353.970000px;}
.yb0_c00273{bottom:354.405000px;}
.yad_c00273{bottom:355.470000px;}
.yab_c00273{bottom:371.745000px;}
.yaa_c00273{bottom:373.905000px;}
.yac_c00273{bottom:374.130000px;}
.ya6_c00273{bottom:391.245000px;}
.ya9_c00273{bottom:392.745000px;}
.ya7_c00273{bottom:393.405000px;}
.ya8_c00273{bottom:394.905000px;}
.ya4_c00273{bottom:410.745000px;}
.y9f_c00273{bottom:411.825000px;}
.ya1_c00273{bottom:412.245000px;}
.ya5_c00273{bottom:412.905000px;}
.ya3_c00273{bottom:413.130000px;}
.ya2_c00273{bottom:413.970000px;}
.ya0_c00273{bottom:414.405000px;}
.y9e_c00273{bottom:430.245000px;}
.y98_c00273{bottom:431.745000px;}
.y9b_c00273{bottom:432.405000px;}
.y9d_c00273{bottom:432.630000px;}
.y9c_c00273{bottom:432.825000px;}
.y99_c00273{bottom:433.470000px;}
.y9a_c00273{bottom:433.905000px;}
.y96_c00273{bottom:451.245000px;}
.y97_c00273{bottom:452.130000px;}
.y95_c00273{bottom:453.405000px;}
.y93_c00273{bottom:470.550000px;}
.y8f_c00273{bottom:470.745000px;}
.y92_c00273{bottom:471.825000px;}
.y91_c00273{bottom:472.050000px;}
.y94_c00273{bottom:472.470000px;}
.y90_c00273{bottom:472.905000px;}
.y8b_c00273{bottom:490.245000px;}
.y8e_c00273{bottom:491.325000px;}
.y8c_c00273{bottom:492.405000px;}
.y8d_c00273{bottom:492.630000px;}
.y88_c00273{bottom:509.745000px;}
.y8a_c00273{bottom:511.905000px;}
.y89_c00273{bottom:512.130000px;}
.y86_c00273{bottom:529.245000px;}
.y87_c00273{bottom:530.325000px;}
.y83_c00273{bottom:531.405000px;}
.y85_c00273{bottom:531.630000px;}
.y84_c00273{bottom:532.905000px;}
.y82_c00273{bottom:549.180000px;}
.y81_c00273{bottom:550.245000px;}
.y80_c00273{bottom:551.130000px;}
.y7e_c00273{bottom:551.325000px;}
.y7f_c00273{bottom:552.405000px;}
.y7b_c00273{bottom:569.325000px;}
.y7c_c00273{bottom:569.745000px;}
.y7d_c00273{bottom:570.405000px;}
.y7a_c00273{bottom:570.825000px;}
.y79_c00273{bottom:571.470000px;}
.y78_c00273{bottom:571.905000px;}
.y77_c00273{bottom:589.245000px;}
.y76_c00273{bottom:591.405000px;}
.y75_c00273{bottom:606.405000px;}
.y71_c00273{bottom:608.745000px;}
.y73_c00273{bottom:609.825000px;}
.y74_c00273{bottom:610.470000px;}
.y72_c00273{bottom:610.905000px;}
.y6f_c00273{bottom:627.825000px;}
.y6d_c00273{bottom:628.245000px;}
.y70_c00273{bottom:629.130000px;}
.y6e_c00273{bottom:629.325000px;}
.y6b_c00273{bottom:630.405000px;}
.y6c_c00273{bottom:630.630000px;}
.y68_c00273{bottom:646.905000px;}
.y69_c00273{bottom:647.325000px;}
.y67_c00273{bottom:647.745000px;}
.y6a_c00273{bottom:648.630000px;}
.y65_c00273{bottom:649.905000px;}
.y66_c00273{bottom:650.130000px;}
.y62_c00273{bottom:666.405000px;}
.y63_c00273{bottom:668.745000px;}
.y64_c00273{bottom:670.470000px;}
.y61_c00273{bottom:670.905000px;}
.y5d_c00273{bottom:685.905000px;}
.y5a_c00273{bottom:688.245000px;}
.y60_c00273{bottom:688.905000px;}
.y5f_c00273{bottom:689.130000px;}
.y5b_c00273{bottom:689.325000px;}
.y5e_c00273{bottom:689.970000px;}
.y5c_c00273{bottom:690.405000px;}
.y59_c00273{bottom:706.245000px;}
.y57_c00273{bottom:707.745000px;}
.y55_c00273{bottom:708.630000px;}
.y54_c00273{bottom:708.825000px;}
.y56_c00273{bottom:709.470000px;}
.y58_c00273{bottom:709.905000px;}
.y51_c00273{bottom:727.245000px;}
.y53_c00273{bottom:728.130000px;}
.y52_c00273{bottom:728.325000px;}
.y50_c00273{bottom:729.405000px;}
.y4c_c00273{bottom:746.745000px;}
.y4f_c00273{bottom:747.630000px;}
.y4b_c00273{bottom:748.905000px;}
.y4d_c00273{bottom:749.130000px;}
.y4e_c00273{bottom:749.970000px;}
.y4a_c00273{bottom:768.405000px;}
.y48_c00273{bottom:785.745000px;}
.y49_c00273{bottom:785.970000px;}
.y47_c00273{bottom:787.905000px;}
.y44_c00273{bottom:805.245000px;}
.y46_c00273{bottom:806.325000px;}
.y45_c00273{bottom:807.405000px;}
.y43_c00273{bottom:824.745000px;}
.y3f_c00273{bottom:826.245000px;}
.y40_c00273{bottom:826.905000px;}
.y42_c00273{bottom:827.130000px;}
.y41_c00273{bottom:827.325000px;}
.y39_c00273{bottom:844.245000px;}
.y3e_c00273{bottom:845.325000px;}
.y3b_c00273{bottom:845.745000px;}
.y3c_c00273{bottom:846.630000px;}
.y3d_c00273{bottom:847.470000px;}
.y3a_c00273{bottom:847.905000px;}
.y38_c00273{bottom:863.970000px;}
.y36_c00273{bottom:865.245000px;}
.y34_c00273{bottom:865.905000px;}
.y37_c00273{bottom:866.130000px;}
.y35_c00273{bottom:866.325000px;}
.y33_c00273{bottom:866.970000px;}
.y32_c00273{bottom:867.405000px;}
.y2f_c00273{bottom:882.405000px;}
.y30_c00273{bottom:883.680000px;}
.y2c_c00273{bottom:884.745000px;}
.y31_c00273{bottom:885.405000px;}
.y2e_c00273{bottom:885.825000px;}
.y2d_c00273{bottom:886.905000px;}
.y29_c00273{bottom:904.245000px;}
.y2b_c00273{bottom:905.130000px;}
.y2a_c00273{bottom:906.405000px;}
.y27_c00273{bottom:923.745000px;}
.y28_c00273{bottom:924.630000px;}
.y26_c00273{bottom:925.905000px;}
.y25_c00273{bottom:926.130000px;}
.y20_c00273{bottom:943.245000px;}
.y23_c00273{bottom:944.130000px;}
.y24_c00273{bottom:944.325000px;}
.y22_c00273{bottom:945.405000px;}
.y21_c00273{bottom:946.470000px;}
.y1e_c00273{bottom:962.745000px;}
.y1b_c00273{bottom:964.245000px;}
.y1f_c00273{bottom:964.905000px;}
.y1c_c00273{bottom:965.130000px;}
.y1d_c00273{bottom:966.405000px;}
.y18_c00273{bottom:983.745000px;}
.y1a_c00273{bottom:984.405000px;}
.y19_c00273{bottom:984.630000px;}
.y17_c00273{bottom:984.825000px;}
.y16_c00273{bottom:985.905000px;}
.y15_c00273{bottom:1001.745000px;}
.y14_c00273{bottom:1003.245000px;}
.y13_c00273{bottom:1005.405000px;}
.ye_c00273{bottom:1020.405000px;}
.y10_c00273{bottom:1022.745000px;}
.y12_c00273{bottom:1023.630000px;}
.yf_c00273{bottom:1024.905000px;}
.y11_c00273{bottom:1025.970000px;}
.ya_c00273{bottom:1042.245000px;}
.yd_c00273{bottom:1043.130000px;}
.y9_c00273{bottom:1043.970000px;}
.y8_c00273{bottom:1044.405000px;}
.yb_c00273{bottom:1044.630000px;}
.yc_c00273{bottom:1045.470000px;}
.y7_c00273{bottom:1061.325000px;}
.y6_c00273{bottom:1061.745000px;}
.y3_c00273{bottom:1063.905000px;}
.y4_c00273{bottom:1063.920000px;}
.y5_c00273{bottom:1064.970000px;}
.y1_c00273{bottom:1099.905000px;}
.y2_c00273{bottom:1102.050000px;}
.h3_c00273{height:4.206533px;}
.h7_c00273{height:23.025234px;}
.h2_c00273{height:25.091602px;}
.h4_c00273{height:31.364502px;}
.h1_c00273{height:35.571035px;}
.h6_c00273{height:39.777568px;}
.h5_c00273{height:43.910303px;}
.h8_c00273{height:48.116836px;}
.h0_c00273{height:1335.000000px;}
.w0_c00273{width:880.500000px;}
.x0_c00273{left:0.000000px;}
.x107_c00273{left:148.080000px;}
.xf5_c00273{left:150.420000px;}
.xb4_c00273{left:151.920000px;}
.x62_c00273{left:153.000000px;}
.x1_c00273{left:154.080000px;}
.x101_c00273{left:162.000000px;}
.xfc_c00273{left:165.000000px;}
.xe4_c00273{left:166.080000px;}
.xa2_c00273{left:168.000000px;}
.x4e_c00273{left:169.080000px;}
.x3_c00273{left:170.145000px;}
.x10_c00273{left:172.500000px;}
.x2f_c00273{left:174.420000px;}
.x57_c00273{left:175.920000px;}
.x96_c00273{left:178.500000px;}
.xa9_c00273{left:179.580000px;}
.xa0_c00273{left:186.000000px;}
.x11_c00273{left:187.500000px;}
.xd4_c00273{left:189.420000px;}
.x10f_c00273{left:190.920000px;}
.x21_c00273{left:193.500000px;}
.xa3_c00273{left:195.420000px;}
.xfd_c00273{left:196.500000px;}
.xb5_c00273{left:198.000000px;}
.x30_c00273{left:201.000000px;}
.xaa_c00273{left:202.080000px;}
.x87_c00273{left:206.580000px;}
.x22_c00273{left:208.080000px;}
.x44_c00273{left:209.775000px;}
.x58_c00273{left:211.500000px;}
.x8f_c00273{left:214.500000px;}
.xf1_c00273{left:216.000000px;}
.xe5_c00273{left:217.080000px;}
.xd9_c00273{left:219.000000px;}
.x4f_c00273{left:220.080000px;}
.x10d_c00273{left:226.500000px;}
.xae_c00273{left:228.000000px;}
.x112_c00273{left:229.275000px;}
.xed_c00273{left:231.000000px;}
.x59_c00273{left:232.500000px;}
.x7c_c00273{left:233.580000px;}
.xf6_c00273{left:235.500000px;}
.x6a_c00273{left:238.920000px;}
.x4_c00273{left:240.000000px;}
.x12_c00273{left:241.500000px;}
.xbe_c00273{left:243.000000px;}
.x88_c00273{left:244.500000px;}
.xb6_c00273{left:249.420000px;}
.x45_c00273{left:250.500000px;}
.x7d_c00273{left:252.000000px;}
.xaf_c00273{left:256.500000px;}
.x5_c00273{left:259.500000px;}
.xcd_c00273{left:261.000000px;}
.x6b_c00273{left:262.920000px;}
.xe6_c00273{left:264.000000px;}
.x50_c00273{left:267.000000px;}
.x89_c00273{left:268.920000px;}
.x90_c00273{left:270.420000px;}
.xf8_c00273{left:271.920000px;}
.x63_c00273{left:273.420000px;}
.x13_c00273{left:274.500000px;}
.x7e_c00273{left:276.420000px;}
.x3a_c00273{left:277.500000px;}
.xbc_c00273{left:279.420000px;}
.xde_c00273{left:280.500000px;}
.xb7_c00273{left:283.080000px;}
.x46_c00273{left:286.500000px;}
.xc7_c00273{left:288.420000px;}
.x31_c00273{left:289.920000px;}
.x97_c00273{left:291.420000px;}
.x6_c00273{left:292.500000px;}
.xb0_c00273{left:293.580000px;}
.x74_c00273{left:296.580000px;}
.x91_c00273{left:298.500000px;}
.x47_c00273{left:300.000000px;}
.xa1_c00273{left:302.580000px;}
.xdf_c00273{left:304.920000px;}
.xab_c00273{left:306.420000px;}
.xda_c00273{left:307.500000px;}
.x10a_c00273{left:309.420000px;}
.x64_c00273{left:310.920000px;}
.xbf_c00273{left:312.420000px;}
.x5a_c00273{left:316.920000px;}
.x98_c00273{left:318.420000px;}
.x102_c00273{left:319.500000px;}
.x110_c00273{left:321.000000px;}
.x75_c00273{left:322.080000px;}
.xb1_c00273{left:325.920000px;}
.xc8_c00273{left:327.000000px;}
.xd1_c00273{left:330.420000px;}
.x51_c00273{left:331.500000px;}
.xe0_c00273{left:333.420000px;}
.xe2_c00273{left:334.500000px;}
.x32_c00273{left:340.080000px;}
.xd5_c00273{left:342.420000px;}
.x48_c00273{left:343.500000px;}
.x23_c00273{left:344.775000px;}
.x5b_c00273{left:346.500000px;}
.xc0_c00273{left:349.500000px;}
.xfe_c00273{left:351.000000px;}
.x7f_c00273{left:352.080000px;}
.xf9_c00273{left:354.000000px;}
.x3b_c00273{left:355.080000px;}
.x14_c00273{left:358.500000px;}
.x33_c00273{left:360.000000px;}
.xc1_c00273{left:363.000000px;}
.x108_c00273{left:364.275000px;}
.x99_c00273{left:365.580000px;}
.xd2_c00273{left:367.920000px;}
.x6c_c00273{left:369.000000px;}
.x7_c00273{left:372.000000px;}
.xe7_c00273{left:375.420000px;}
.x15_c00273{left:376.920000px;}
.x103_c00273{left:379.500000px;}
.xa4_c00273{left:382.500000px;}
.x24_c00273{left:385.500000px;}
.xc9_c00273{left:387.000000px;}
.x8_c00273{left:388.920000px;}
.x113_c00273{left:391.920000px;}
.xbd_c00273{left:393.000000px;}
.xfa_c00273{left:394.080000px;}
.xd3_c00273{left:395.580000px;}
.xf2_c00273{left:397.500000px;}
.xdb_c00273{left:399.000000px;}
.xe8_c00273{left:400.500000px;}
.xc2_c00273{left:402.000000px;}
.xf7_c00273{left:405.000000px;}
.x2_c00273{left:408.000000px;}
.x10b_c00273{left:409.500000px;}
.x16_c00273{left:410.580000px;}
.xd6_c00273{left:412.920000px;}
.x25_c00273{left:414.000000px;}
.x6d_c00273{left:415.500000px;}
.x52_c00273{left:417.420000px;}
.xb2_c00273{left:418.500000px;}
.x80_c00273{left:420.420000px;}
.x5c_c00273{left:424.500000px;}
.x9_c00273{left:426.000000px;}
.xff_c00273{left:427.920000px;}
.x76_c00273{left:429.000000px;}
.x3c_c00273{left:430.080000px;}
.x26_c00273{left:433.500000px;}
.x6e_c00273{left:437.580000px;}
.xb8_c00273{left:439.080000px;}
.x17_c00273{left:441.000000px;}
.x34_c00273{left:442.080000px;}
.xc3_c00273{left:443.580000px;}
.xee_c00273{left:445.500000px;}
.xe3_c00273{left:447.000000px;}
.x53_c00273{left:450.420000px;}
.xe9_c00273{left:451.500000px;}
.x8a_c00273{left:453.000000px;}
.xdc_c00273{left:454.920000px;}
.x27_c00273{left:456.000000px;}
.x9a_c00273{left:457.080000px;}
.x18_c00273{left:460.920000px;}
.xac_c00273{left:462.000000px;}
.x5d_c00273{left:463.500000px;}
.xf3_c00273{left:465.000000px;}
.x81_c00273{left:468.000000px;}
.x77_c00273{left:471.000000px;}
.xa5_c00273{left:472.500000px;}
.x3d_c00273{left:475.500000px;}
.x49_c00273{left:477.420000px;}
.x92_c00273{left:478.920000px;}
.x6f_c00273{left:480.000000px;}
.x19_c00273{left:486.000000px;}
.x9b_c00273{left:487.500000px;}
.xca_c00273{left:489.000000px;}
.x65_c00273{left:491.580000px;}
.x82_c00273{left:495.000000px;}
.xa_c00273{left:496.500000px;}
.x28_c00273{left:497.580000px;}
.xea_c00273{left:499.500000px;}
.x114_c00273{left:501.000000px;}
.x4a_c00273{left:502.920000px;}
.x3e_c00273{left:504.420000px;}
.x93_c00273{left:505.500000px;}
.x5e_c00273{left:506.580000px;}
.xeb_c00273{left:513.000000px;}
.x29_c00273{left:514.920000px;}
.xb_c00273{left:516.420000px;}
.xce_c00273{left:517.500000px;}
.xcb_c00273{left:518.580000px;}
.x66_c00273{left:520.920000px;}
.xad_c00273{left:522.000000px;}
.x111_c00273{left:523.500000px;}
.xc4_c00273{left:525.000000px;}
.x83_c00273{left:528.000000px;}
.x104_c00273{left:529.080000px;}
.x9c_c00273{left:530.580000px;}
.x35_c00273{left:532.500000px;}
.xb3_c00273{left:535.080000px;}
.x4b_c00273{left:538.500000px;}
.x70_c00273{left:539.580000px;}
.x1a_c00273{left:541.500000px;}
.xc_c00273{left:543.000000px;}
.x8b_c00273{left:544.920000px;}
.xd7_c00273{left:546.000000px;}
.x84_c00273{left:547.080000px;}
.x3f_c00273{left:552.420000px;}
.x109_c00273{left:553.920000px;}
.x2a_c00273{left:555.000000px;}
.x1b_c00273{left:556.500000px;}
.x5f_c00273{left:558.000000px;}
.x78_c00273{left:559.080000px;}
.x4c_c00273{left:561.420000px;}
.x8c_c00273{left:565.080000px;}
.x36_c00273{left:568.500000px;}
.x85_c00273{left:570.000000px;}
.x2b_c00273{left:571.920000px;}
.x1c_c00273{left:573.000000px;}
.x10e_c00273{left:574.080000px;}
.xfb_c00273{left:580.920000px;}
.xf4_c00273{left:583.080000px;}
.x9d_c00273{left:584.580000px;}
.x37_c00273{left:586.920000px;}
.x40_c00273{left:588.420000px;}
.x4d_c00273{left:589.500000px;}
.x54_c00273{left:595.500000px;}
.x10c_c00273{left:596.775000px;}
.xef_c00273{left:598.080000px;}
.x9e_c00273{left:601.500000px;}
.xe1_c00273{left:603.000000px;}
.x105_c00273{left:604.920000px;}
.x2c_c00273{left:606.420000px;}
.xd_c00273{left:609.000000px;}
.x79_c00273{left:612.000000px;}
.xd8_c00273{left:613.500000px;}
.x38_c00273{left:615.000000px;}
.xa6_c00273{left:622.500000px;}
.x67_c00273{left:624.000000px;}
.x1d_c00273{left:625.500000px;}
.xb9_c00273{left:627.420000px;}
.x2d_c00273{left:628.920000px;}
.xc5_c00273{left:630.000000px;}
.x71_c00273{left:635.580000px;}
.x94_c00273{left:637.920000px;}
.xec_c00273{left:639.000000px;}
.x41_c00273{left:640.500000px;}
.x8d_c00273{left:641.775000px;}
.xe_c00273{left:643.080000px;}
.xcc_c00273{left:644.580000px;}
.x7a_c00273{left:646.500000px;}
.x55_c00273{left:648.000000px;}
.x106_c00273{left:651.420000px;}
.x2e_c00273{left:652.500000px;}
.xa7_c00273{left:654.420000px;}
.x42_c00273{left:655.920000px;}
.x1e_c00273{left:660.000000px;}
.xcf_c00273{left:661.500000px;}
.xf_c00273{left:662.580000px;}
.xdd_c00273{left:666.000000px;}
.x100_c00273{left:667.500000px;}
.x56_c00273{left:670.500000px;}
.x68_c00273{left:671.580000px;}
.x9f_c00273{left:673.920000px;}
.x1f_c00273{left:675.000000px;}
.xc6_c00273{left:678.000000px;}
.xd0_c00273{left:679.080000px;}
.x72_c00273{left:684.000000px;}
.x60_c00273{left:685.500000px;}
.x43_c00273{left:687.000000px;}
.x39_c00273{left:688.080000px;}
.xba_c00273{left:691.080000px;}
.x7b_c00273{left:694.500000px;}
.x20_c00273{left:695.580000px;}
.x69_c00273{left:697.500000px;}
.x95_c00273{left:699.000000px;}
.xf0_c00273{left:700.080000px;}
.x86_c00273{left:705.420000px;}
.x61_c00273{left:706.500000px;}
.xbb_c00273{left:708.420000px;}
.x73_c00273{left:709.920000px;}
.xa8_c00273{left:712.500000px;}
.x8e_c00273{left:717.000000px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.ls0_c00273{letter-spacing:0.000000pt;}
.ws1_c00273{word-spacing:-15.012693pt;}
.ws0_c00273{word-spacing:-5.588530pt;}
.ws2_c00273{word-spacing:0.000000pt;}
._0_c00273{width:5.246661pt;}
.fs2_c00273{font-size:3.040000pt;}
.fs6_c00273{font-size:16.640000pt;}
.fs1_c00273{font-size:18.133333pt;}
.fs3_c00273{font-size:22.666667pt;}
.fs0_c00273{font-size:25.706667pt;}
.fs5_c00273{font-size:28.746667pt;}
.fs4_c00273{font-size:31.733333pt;}
.fs7_c00273{font-size:34.773333pt;}
.y0_c00273{bottom:0.000000pt;}
.yc9_c00273{bottom:224.733333pt;}
.yc7_c00273{bottom:225.106667pt;}
.yc8_c00273{bottom:227.026667pt;}
.yc6_c00273{bottom:241.493333pt;}
.yc4_c00273{bottom:243.226667pt;}
.yc3_c00273{bottom:244.360000pt;}
.yc5_c00273{bottom:244.560000pt;}
.ybe_c00273{bottom:259.773333pt;}
.yc2_c00273{bottom:260.160000pt;}
.yc1_c00273{bottom:261.106667pt;}
.ybf_c00273{bottom:261.693333pt;}
.yc0_c00273{bottom:263.026667pt;}
.ybd_c00273{bottom:277.493333pt;}
.ybb_c00273{bottom:278.440000pt;}
.yb9_c00273{bottom:279.026667pt;}
.yba_c00273{bottom:279.226667pt;}
.yb8_c00273{bottom:279.973333pt;}
.ybc_c00273{bottom:280.360000pt;}
.yb4_c00273{bottom:295.026667pt;}
.yb5_c00273{bottom:295.773333pt;}
.yb7_c00273{bottom:296.733333pt;}
.yb6_c00273{bottom:297.693333pt;}
.yb3_c00273{bottom:311.026667pt;}
.yb2_c00273{bottom:312.360000pt;}
.yae_c00273{bottom:313.106667pt;}
.yb1_c00273{bottom:314.066667pt;}
.yaf_c00273{bottom:314.640000pt;}
.yb0_c00273{bottom:315.026667pt;}
.yad_c00273{bottom:315.973333pt;}
.yab_c00273{bottom:330.440000pt;}
.yaa_c00273{bottom:332.360000pt;}
.yac_c00273{bottom:332.560000pt;}
.ya6_c00273{bottom:347.773333pt;}
.ya9_c00273{bottom:349.106667pt;}
.ya7_c00273{bottom:349.693333pt;}
.ya8_c00273{bottom:351.026667pt;}
.ya4_c00273{bottom:365.106667pt;}
.y9f_c00273{bottom:366.066667pt;}
.ya1_c00273{bottom:366.440000pt;}
.ya5_c00273{bottom:367.026667pt;}
.ya3_c00273{bottom:367.226667pt;}
.ya2_c00273{bottom:367.973333pt;}
.ya0_c00273{bottom:368.360000pt;}
.y9e_c00273{bottom:382.440000pt;}
.y98_c00273{bottom:383.773333pt;}
.y9b_c00273{bottom:384.360000pt;}
.y9d_c00273{bottom:384.560000pt;}
.y9c_c00273{bottom:384.733333pt;}
.y99_c00273{bottom:385.306667pt;}
.y9a_c00273{bottom:385.693333pt;}
.y96_c00273{bottom:401.106667pt;}
.y97_c00273{bottom:401.893333pt;}
.y95_c00273{bottom:403.026667pt;}
.y93_c00273{bottom:418.266667pt;}
.y8f_c00273{bottom:418.440000pt;}
.y92_c00273{bottom:419.400000pt;}
.y91_c00273{bottom:419.600000pt;}
.y94_c00273{bottom:419.973333pt;}
.y90_c00273{bottom:420.360000pt;}
.y8b_c00273{bottom:435.773333pt;}
.y8e_c00273{bottom:436.733333pt;}
.y8c_c00273{bottom:437.693333pt;}
.y8d_c00273{bottom:437.893333pt;}
.y88_c00273{bottom:453.106667pt;}
.y8a_c00273{bottom:455.026667pt;}
.y89_c00273{bottom:455.226667pt;}
.y86_c00273{bottom:470.440000pt;}
.y87_c00273{bottom:471.400000pt;}
.y83_c00273{bottom:472.360000pt;}
.y85_c00273{bottom:472.560000pt;}
.y84_c00273{bottom:473.693333pt;}
.y82_c00273{bottom:488.160000pt;}
.y81_c00273{bottom:489.106667pt;}
.y80_c00273{bottom:489.893333pt;}
.y7e_c00273{bottom:490.066667pt;}
.y7f_c00273{bottom:491.026667pt;}
.y7b_c00273{bottom:506.066667pt;}
.y7c_c00273{bottom:506.440000pt;}
.y7d_c00273{bottom:507.026667pt;}
.y7a_c00273{bottom:507.400000pt;}
.y79_c00273{bottom:507.973333pt;}
.y78_c00273{bottom:508.360000pt;}
.y77_c00273{bottom:523.773333pt;}
.y76_c00273{bottom:525.693333pt;}
.y75_c00273{bottom:539.026667pt;}
.y71_c00273{bottom:541.106667pt;}
.y73_c00273{bottom:542.066667pt;}
.y74_c00273{bottom:542.640000pt;}
.y72_c00273{bottom:543.026667pt;}
.y6f_c00273{bottom:558.066667pt;}
.y6d_c00273{bottom:558.440000pt;}
.y70_c00273{bottom:559.226667pt;}
.y6e_c00273{bottom:559.400000pt;}
.y6b_c00273{bottom:560.360000pt;}
.y6c_c00273{bottom:560.560000pt;}
.y68_c00273{bottom:575.026667pt;}
.y69_c00273{bottom:575.400000pt;}
.y67_c00273{bottom:575.773333pt;}
.y6a_c00273{bottom:576.560000pt;}
.y65_c00273{bottom:577.693333pt;}
.y66_c00273{bottom:577.893333pt;}
.y62_c00273{bottom:592.360000pt;}
.y63_c00273{bottom:594.440000pt;}
.y64_c00273{bottom:595.973333pt;}
.y61_c00273{bottom:596.360000pt;}
.y5d_c00273{bottom:609.693333pt;}
.y5a_c00273{bottom:611.773333pt;}
.y60_c00273{bottom:612.360000pt;}
.y5f_c00273{bottom:612.560000pt;}
.y5b_c00273{bottom:612.733333pt;}
.y5e_c00273{bottom:613.306667pt;}
.y5c_c00273{bottom:613.693333pt;}
.y59_c00273{bottom:627.773333pt;}
.y57_c00273{bottom:629.106667pt;}
.y55_c00273{bottom:629.893333pt;}
.y54_c00273{bottom:630.066667pt;}
.y56_c00273{bottom:630.640000pt;}
.y58_c00273{bottom:631.026667pt;}
.y51_c00273{bottom:646.440000pt;}
.y53_c00273{bottom:647.226667pt;}
.y52_c00273{bottom:647.400000pt;}
.y50_c00273{bottom:648.360000pt;}
.y4c_c00273{bottom:663.773333pt;}
.y4f_c00273{bottom:664.560000pt;}
.y4b_c00273{bottom:665.693333pt;}
.y4d_c00273{bottom:665.893333pt;}
.y4e_c00273{bottom:666.640000pt;}
.y4a_c00273{bottom:683.026667pt;}
.y48_c00273{bottom:698.440000pt;}
.y49_c00273{bottom:698.640000pt;}
.y47_c00273{bottom:700.360000pt;}
.y44_c00273{bottom:715.773333pt;}
.y46_c00273{bottom:716.733333pt;}
.y45_c00273{bottom:717.693333pt;}
.y43_c00273{bottom:733.106667pt;}
.y3f_c00273{bottom:734.440000pt;}
.y40_c00273{bottom:735.026667pt;}
.y42_c00273{bottom:735.226667pt;}
.y41_c00273{bottom:735.400000pt;}
.y39_c00273{bottom:750.440000pt;}
.y3e_c00273{bottom:751.400000pt;}
.y3b_c00273{bottom:751.773333pt;}
.y3c_c00273{bottom:752.560000pt;}
.y3d_c00273{bottom:753.306667pt;}
.y3a_c00273{bottom:753.693333pt;}
.y38_c00273{bottom:767.973333pt;}
.y36_c00273{bottom:769.106667pt;}
.y34_c00273{bottom:769.693333pt;}
.y37_c00273{bottom:769.893333pt;}
.y35_c00273{bottom:770.066667pt;}
.y33_c00273{bottom:770.640000pt;}
.y32_c00273{bottom:771.026667pt;}
.y2f_c00273{bottom:784.360000pt;}
.y30_c00273{bottom:785.493333pt;}
.y2c_c00273{bottom:786.440000pt;}
.y31_c00273{bottom:787.026667pt;}
.y2e_c00273{bottom:787.400000pt;}
.y2d_c00273{bottom:788.360000pt;}
.y29_c00273{bottom:803.773333pt;}
.y2b_c00273{bottom:804.560000pt;}
.y2a_c00273{bottom:805.693333pt;}
.y27_c00273{bottom:821.106667pt;}
.y28_c00273{bottom:821.893333pt;}
.y26_c00273{bottom:823.026667pt;}
.y25_c00273{bottom:823.226667pt;}
.y20_c00273{bottom:838.440000pt;}
.y23_c00273{bottom:839.226667pt;}
.y24_c00273{bottom:839.400000pt;}
.y22_c00273{bottom:840.360000pt;}
.y21_c00273{bottom:841.306667pt;}
.y1e_c00273{bottom:855.773333pt;}
.y1b_c00273{bottom:857.106667pt;}
.y1f_c00273{bottom:857.693333pt;}
.y1c_c00273{bottom:857.893333pt;}
.y1d_c00273{bottom:859.026667pt;}
.y18_c00273{bottom:874.440000pt;}
.y1a_c00273{bottom:875.026667pt;}
.y19_c00273{bottom:875.226667pt;}
.y17_c00273{bottom:875.400000pt;}
.y16_c00273{bottom:876.360000pt;}
.y15_c00273{bottom:890.440000pt;}
.y14_c00273{bottom:891.773333pt;}
.y13_c00273{bottom:893.693333pt;}
.ye_c00273{bottom:907.026667pt;}
.y10_c00273{bottom:909.106667pt;}
.y12_c00273{bottom:909.893333pt;}
.yf_c00273{bottom:911.026667pt;}
.y11_c00273{bottom:911.973333pt;}
.ya_c00273{bottom:926.440000pt;}
.yd_c00273{bottom:927.226667pt;}
.y9_c00273{bottom:927.973333pt;}
.y8_c00273{bottom:928.360000pt;}
.yb_c00273{bottom:928.560000pt;}
.yc_c00273{bottom:929.306667pt;}
.y7_c00273{bottom:943.400000pt;}
.y6_c00273{bottom:943.773333pt;}
.y3_c00273{bottom:945.693333pt;}
.y4_c00273{bottom:945.706667pt;}
.y5_c00273{bottom:946.640000pt;}
.y1_c00273{bottom:977.693333pt;}
.y2_c00273{bottom:979.600000pt;}
.h3_c00273{height:3.739141pt;}
.h7_c00273{height:20.466875pt;}
.h2_c00273{height:22.303646pt;}
.h4_c00273{height:27.879557pt;}
.h1_c00273{height:31.618698pt;}
.h6_c00273{height:35.357839pt;}
.h5_c00273{height:39.031380pt;}
.h8_c00273{height:42.770521pt;}
.h0_c00273{height:1186.666667pt;}
.w0_c00273{width:782.666667pt;}
.x0_c00273{left:0.000000pt;}
.x107_c00273{left:131.626667pt;}
.xf5_c00273{left:133.706667pt;}
.xb4_c00273{left:135.040000pt;}
.x62_c00273{left:136.000000pt;}
.x1_c00273{left:136.960000pt;}
.x101_c00273{left:144.000000pt;}
.xfc_c00273{left:146.666667pt;}
.xe4_c00273{left:147.626667pt;}
.xa2_c00273{left:149.333333pt;}
.x4e_c00273{left:150.293333pt;}
.x3_c00273{left:151.240000pt;}
.x10_c00273{left:153.333333pt;}
.x2f_c00273{left:155.040000pt;}
.x57_c00273{left:156.373333pt;}
.x96_c00273{left:158.666667pt;}
.xa9_c00273{left:159.626667pt;}
.xa0_c00273{left:165.333333pt;}
.x11_c00273{left:166.666667pt;}
.xd4_c00273{left:168.373333pt;}
.x10f_c00273{left:169.706667pt;}
.x21_c00273{left:172.000000pt;}
.xa3_c00273{left:173.706667pt;}
.xfd_c00273{left:174.666667pt;}
.xb5_c00273{left:176.000000pt;}
.x30_c00273{left:178.666667pt;}
.xaa_c00273{left:179.626667pt;}
.x87_c00273{left:183.626667pt;}
.x22_c00273{left:184.960000pt;}
.x44_c00273{left:186.466667pt;}
.x58_c00273{left:188.000000pt;}
.x8f_c00273{left:190.666667pt;}
.xf1_c00273{left:192.000000pt;}
.xe5_c00273{left:192.960000pt;}
.xd9_c00273{left:194.666667pt;}
.x4f_c00273{left:195.626667pt;}
.x10d_c00273{left:201.333333pt;}
.xae_c00273{left:202.666667pt;}
.x112_c00273{left:203.800000pt;}
.xed_c00273{left:205.333333pt;}
.x59_c00273{left:206.666667pt;}
.x7c_c00273{left:207.626667pt;}
.xf6_c00273{left:209.333333pt;}
.x6a_c00273{left:212.373333pt;}
.x4_c00273{left:213.333333pt;}
.x12_c00273{left:214.666667pt;}
.xbe_c00273{left:216.000000pt;}
.x88_c00273{left:217.333333pt;}
.xb6_c00273{left:221.706667pt;}
.x45_c00273{left:222.666667pt;}
.x7d_c00273{left:224.000000pt;}
.xaf_c00273{left:228.000000pt;}
.x5_c00273{left:230.666667pt;}
.xcd_c00273{left:232.000000pt;}
.x6b_c00273{left:233.706667pt;}
.xe6_c00273{left:234.666667pt;}
.x50_c00273{left:237.333333pt;}
.x89_c00273{left:239.040000pt;}
.x90_c00273{left:240.373333pt;}
.xf8_c00273{left:241.706667pt;}
.x63_c00273{left:243.040000pt;}
.x13_c00273{left:244.000000pt;}
.x7e_c00273{left:245.706667pt;}
.x3a_c00273{left:246.666667pt;}
.xbc_c00273{left:248.373333pt;}
.xde_c00273{left:249.333333pt;}
.xb7_c00273{left:251.626667pt;}
.x46_c00273{left:254.666667pt;}
.xc7_c00273{left:256.373333pt;}
.x31_c00273{left:257.706667pt;}
.x97_c00273{left:259.040000pt;}
.x6_c00273{left:260.000000pt;}
.xb0_c00273{left:260.960000pt;}
.x74_c00273{left:263.626667pt;}
.x91_c00273{left:265.333333pt;}
.x47_c00273{left:266.666667pt;}
.xa1_c00273{left:268.960000pt;}
.xdf_c00273{left:271.040000pt;}
.xab_c00273{left:272.373333pt;}
.xda_c00273{left:273.333333pt;}
.x10a_c00273{left:275.040000pt;}
.x64_c00273{left:276.373333pt;}
.xbf_c00273{left:277.706667pt;}
.x5a_c00273{left:281.706667pt;}
.x98_c00273{left:283.040000pt;}
.x102_c00273{left:284.000000pt;}
.x110_c00273{left:285.333333pt;}
.x75_c00273{left:286.293333pt;}
.xb1_c00273{left:289.706667pt;}
.xc8_c00273{left:290.666667pt;}
.xd1_c00273{left:293.706667pt;}
.x51_c00273{left:294.666667pt;}
.xe0_c00273{left:296.373333pt;}
.xe2_c00273{left:297.333333pt;}
.x32_c00273{left:302.293333pt;}
.xd5_c00273{left:304.373333pt;}
.x48_c00273{left:305.333333pt;}
.x23_c00273{left:306.466667pt;}
.x5b_c00273{left:308.000000pt;}
.xc0_c00273{left:310.666667pt;}
.xfe_c00273{left:312.000000pt;}
.x7f_c00273{left:312.960000pt;}
.xf9_c00273{left:314.666667pt;}
.x3b_c00273{left:315.626667pt;}
.x14_c00273{left:318.666667pt;}
.x33_c00273{left:320.000000pt;}
.xc1_c00273{left:322.666667pt;}
.x108_c00273{left:323.800000pt;}
.x99_c00273{left:324.960000pt;}
.xd2_c00273{left:327.040000pt;}
.x6c_c00273{left:328.000000pt;}
.x7_c00273{left:330.666667pt;}
.xe7_c00273{left:333.706667pt;}
.x15_c00273{left:335.040000pt;}
.x103_c00273{left:337.333333pt;}
.xa4_c00273{left:340.000000pt;}
.x24_c00273{left:342.666667pt;}
.xc9_c00273{left:344.000000pt;}
.x8_c00273{left:345.706667pt;}
.x113_c00273{left:348.373333pt;}
.xbd_c00273{left:349.333333pt;}
.xfa_c00273{left:350.293333pt;}
.xd3_c00273{left:351.626667pt;}
.xf2_c00273{left:353.333333pt;}
.xdb_c00273{left:354.666667pt;}
.xe8_c00273{left:356.000000pt;}
.xc2_c00273{left:357.333333pt;}
.xf7_c00273{left:360.000000pt;}
.x2_c00273{left:362.666667pt;}
.x10b_c00273{left:364.000000pt;}
.x16_c00273{left:364.960000pt;}
.xd6_c00273{left:367.040000pt;}
.x25_c00273{left:368.000000pt;}
.x6d_c00273{left:369.333333pt;}
.x52_c00273{left:371.040000pt;}
.xb2_c00273{left:372.000000pt;}
.x80_c00273{left:373.706667pt;}
.x5c_c00273{left:377.333333pt;}
.x9_c00273{left:378.666667pt;}
.xff_c00273{left:380.373333pt;}
.x76_c00273{left:381.333333pt;}
.x3c_c00273{left:382.293333pt;}
.x26_c00273{left:385.333333pt;}
.x6e_c00273{left:388.960000pt;}
.xb8_c00273{left:390.293333pt;}
.x17_c00273{left:392.000000pt;}
.x34_c00273{left:392.960000pt;}
.xc3_c00273{left:394.293333pt;}
.xee_c00273{left:396.000000pt;}
.xe3_c00273{left:397.333333pt;}
.x53_c00273{left:400.373333pt;}
.xe9_c00273{left:401.333333pt;}
.x8a_c00273{left:402.666667pt;}
.xdc_c00273{left:404.373333pt;}
.x27_c00273{left:405.333333pt;}
.x9a_c00273{left:406.293333pt;}
.x18_c00273{left:409.706667pt;}
.xac_c00273{left:410.666667pt;}
.x5d_c00273{left:412.000000pt;}
.xf3_c00273{left:413.333333pt;}
.x81_c00273{left:416.000000pt;}
.x77_c00273{left:418.666667pt;}
.xa5_c00273{left:420.000000pt;}
.x3d_c00273{left:422.666667pt;}
.x49_c00273{left:424.373333pt;}
.x92_c00273{left:425.706667pt;}
.x6f_c00273{left:426.666667pt;}
.x19_c00273{left:432.000000pt;}
.x9b_c00273{left:433.333333pt;}
.xca_c00273{left:434.666667pt;}
.x65_c00273{left:436.960000pt;}
.x82_c00273{left:440.000000pt;}
.xa_c00273{left:441.333333pt;}
.x28_c00273{left:442.293333pt;}
.xea_c00273{left:444.000000pt;}
.x114_c00273{left:445.333333pt;}
.x4a_c00273{left:447.040000pt;}
.x3e_c00273{left:448.373333pt;}
.x93_c00273{left:449.333333pt;}
.x5e_c00273{left:450.293333pt;}
.xeb_c00273{left:456.000000pt;}
.x29_c00273{left:457.706667pt;}
.xb_c00273{left:459.040000pt;}
.xce_c00273{left:460.000000pt;}
.xcb_c00273{left:460.960000pt;}
.x66_c00273{left:463.040000pt;}
.xad_c00273{left:464.000000pt;}
.x111_c00273{left:465.333333pt;}
.xc4_c00273{left:466.666667pt;}
.x83_c00273{left:469.333333pt;}
.x104_c00273{left:470.293333pt;}
.x9c_c00273{left:471.626667pt;}
.x35_c00273{left:473.333333pt;}
.xb3_c00273{left:475.626667pt;}
.x4b_c00273{left:478.666667pt;}
.x70_c00273{left:479.626667pt;}
.x1a_c00273{left:481.333333pt;}
.xc_c00273{left:482.666667pt;}
.x8b_c00273{left:484.373333pt;}
.xd7_c00273{left:485.333333pt;}
.x84_c00273{left:486.293333pt;}
.x3f_c00273{left:491.040000pt;}
.x109_c00273{left:492.373333pt;}
.x2a_c00273{left:493.333333pt;}
.x1b_c00273{left:494.666667pt;}
.x5f_c00273{left:496.000000pt;}
.x78_c00273{left:496.960000pt;}
.x4c_c00273{left:499.040000pt;}
.x8c_c00273{left:502.293333pt;}
.x36_c00273{left:505.333333pt;}
.x85_c00273{left:506.666667pt;}
.x2b_c00273{left:508.373333pt;}
.x1c_c00273{left:509.333333pt;}
.x10e_c00273{left:510.293333pt;}
.xfb_c00273{left:516.373333pt;}
.xf4_c00273{left:518.293333pt;}
.x9d_c00273{left:519.626667pt;}
.x37_c00273{left:521.706667pt;}
.x40_c00273{left:523.040000pt;}
.x4d_c00273{left:524.000000pt;}
.x54_c00273{left:529.333333pt;}
.x10c_c00273{left:530.466667pt;}
.xef_c00273{left:531.626667pt;}
.x9e_c00273{left:534.666667pt;}
.xe1_c00273{left:536.000000pt;}
.x105_c00273{left:537.706667pt;}
.x2c_c00273{left:539.040000pt;}
.xd_c00273{left:541.333333pt;}
.x79_c00273{left:544.000000pt;}
.xd8_c00273{left:545.333333pt;}
.x38_c00273{left:546.666667pt;}
.xa6_c00273{left:553.333333pt;}
.x67_c00273{left:554.666667pt;}
.x1d_c00273{left:556.000000pt;}
.xb9_c00273{left:557.706667pt;}
.x2d_c00273{left:559.040000pt;}
.xc5_c00273{left:560.000000pt;}
.x71_c00273{left:564.960000pt;}
.x94_c00273{left:567.040000pt;}
.xec_c00273{left:568.000000pt;}
.x41_c00273{left:569.333333pt;}
.x8d_c00273{left:570.466667pt;}
.xe_c00273{left:571.626667pt;}
.xcc_c00273{left:572.960000pt;}
.x7a_c00273{left:574.666667pt;}
.x55_c00273{left:576.000000pt;}
.x106_c00273{left:579.040000pt;}
.x2e_c00273{left:580.000000pt;}
.xa7_c00273{left:581.706667pt;}
.x42_c00273{left:583.040000pt;}
.x1e_c00273{left:586.666667pt;}
.xcf_c00273{left:588.000000pt;}
.xf_c00273{left:588.960000pt;}
.xdd_c00273{left:592.000000pt;}
.x100_c00273{left:593.333333pt;}
.x56_c00273{left:596.000000pt;}
.x68_c00273{left:596.960000pt;}
.x9f_c00273{left:599.040000pt;}
.x1f_c00273{left:600.000000pt;}
.xc6_c00273{left:602.666667pt;}
.xd0_c00273{left:603.626667pt;}
.x72_c00273{left:608.000000pt;}
.x60_c00273{left:609.333333pt;}
.x43_c00273{left:610.666667pt;}
.x39_c00273{left:611.626667pt;}
.xba_c00273{left:614.293333pt;}
.x7b_c00273{left:617.333333pt;}
.x20_c00273{left:618.293333pt;}
.x69_c00273{left:620.000000pt;}
.x95_c00273{left:621.333333pt;}
.xf0_c00273{left:622.293333pt;}
.x86_c00273{left:627.040000pt;}
.x61_c00273{left:628.000000pt;}
.xbb_c00273{left:629.706667pt;}
.x73_c00273{left:631.040000pt;}
.xa8_c00273{left:633.333333pt;}
.x8e_c00273{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2c300dd1f19c07ca06ba994d.woff2')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:1.688965;font-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_c00274{transform:matrix(0.347866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347866,0.000000,0.000000,0.250000,0,0);}
.m3f_c00274{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m47_c00274{transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);}
.mbc_c00274{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m5_c00274{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m30_c00274{transform:matrix(0.369248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369248,0.000000,0.000000,0.250000,0,0);}
.m5e_c00274{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m14_c00274{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m54_c00274{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.me5_c00274{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m23_c00274{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m10f_c00274{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.m101_c00274{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m33_c00274{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m45_c00274{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.mc7_c00274{transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);}
.ma5_c00274{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m2d_c00274{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m62_c00274{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m9f_c00274{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.ma_c00274{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m89_c00274{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m22_c00274{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m83_c00274{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m7e_c00274{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m16_c00274{transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);}
.mc2_c00274{transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);}
.me_c00274{transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);}
.m71_c00274{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m29_c00274{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m2e_c00274{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.ma3_c00274{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.md_c00274{transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);}
.m2f_c00274{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m3b_c00274{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.mbb_c00274{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_c00274{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m66_c00274{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m10c_c00274{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m78_c00274{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m8a_c00274{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.mf0_c00274{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.m26_c00274{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mc_c00274{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m46_c00274{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m109_c00274{transform:matrix(0.410788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410788,0.000000,0.000000,0.250000,0,0);}
.m94_c00274{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m8_c00274{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m96_c00274{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.maf_c00274{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.ma9_c00274{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m82_c00274{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m10d_c00274{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mfd_c00274{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m18_c00274{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m3c_c00274{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m20_c00274{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mc8_c00274{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.mcb_c00274{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.ma2_c00274{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m10e_c00274{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.mdb_c00274{transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);}
.m100_c00274{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m5d_c00274{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.m11_c00274{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m106_c00274{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mdd_c00274{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.m2b_c00274{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m8e_c00274{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.me4_c00274{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m19_c00274{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m105_c00274{transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);}
.m2_c00274{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m28_c00274{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.mb4_c00274{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mf2_c00274{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.ma6_c00274{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.mce_c00274{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m12_c00274{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.mda_c00274{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.mfe_c00274{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m38_c00274{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m2a_c00274{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.mbf_c00274{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.mee_c00274{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.mc0_c00274{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m72_c00274{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.mb5_c00274{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m9e_c00274{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m36_c00274{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.m74_c00274{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.m92_c00274{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m9d_c00274{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.mf6_c00274{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.mb3_c00274{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.mab_c00274{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m40_c00274{transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);}
.m7b_c00274{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m70_c00274{transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);}
.m7a_c00274{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m110_c00274{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.md5_c00274{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mf_c00274{transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);}
.md8_c00274{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m10b_c00274{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.mea_c00274{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.me2_c00274{transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);}
.m97_c00274{transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);}
.me8_c00274{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.m55_c00274{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.m3e_c00274{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m3_c00274{transform:matrix(0.471849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471849,0.000000,0.000000,0.250000,0,0);}
.med_c00274{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m37_c00274{transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);}
.md3_c00274{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.mf1_c00274{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m88_c00274{transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);}
.m6a_c00274{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.me3_c00274{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m10_c00274{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m56_c00274{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m9_c00274{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mf7_c00274{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m35_c00274{transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);}
.m5b_c00274{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.ma7_c00274{transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);}
.m1_c00274{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mc5_c00274{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m84_c00274{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m10a_c00274{transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);}
.m86_c00274{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m50_c00274{transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);}
.mf9_c00274{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m3a_c00274{transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);}
.m17_c00274{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);}
.md0_c00274{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m4a_c00274{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m102_c00274{transform:matrix(0.505882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505882,0.000000,0.000000,0.250000,0,0);}
.m95_c00274{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m65_c00274{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.mcd_c00274{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m2c_c00274{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mca_c00274{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.ma1_c00274{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mbe_c00274{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m81_c00274{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m7f_c00274{transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);}
.m93_c00274{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mc9_c00274{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m103_c00274{transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);}
.m8c_c00274{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.md2_c00274{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m8d_c00274{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m25_c00274{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mf3_c00274{transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);}
.m69_c00274{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m4e_c00274{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.md9_c00274{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);}
.m67_c00274{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m98_c00274{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m9b_c00274{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m59_c00274{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mec_c00274{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m21_c00274{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m49_c00274{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m53_c00274{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m58_c00274{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m4b_c00274{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m51_c00274{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.mb7_c00274{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mdf_c00274{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m44_c00274{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m13_c00274{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m4f_c00274{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m6d_c00274{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mc4_c00274{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m5a_c00274{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m5c_c00274{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m1c_c00274{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m1f_c00274{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m1d_c00274{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.md4_c00274{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m77_c00274{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m6_c00274{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m31_c00274{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m48_c00274{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m3d_c00274{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mb0_c00274{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m34_c00274{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m60_c00274{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m57_c00274{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m4c_c00274{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.me1_c00274{transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);}
.m99_c00274{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.mba_c00274{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m52_c00274{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mb2_c00274{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m108_c00274{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.mef_c00274{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m1e_c00274{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m39_c00274{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m61_c00274{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m42_c00274{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.mdc_c00274{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.ma4_c00274{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m43_c00274{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.mc3_c00274{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);}
.m6f_c00274{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m41_c00274{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m7_c00274{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m75_c00274{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.maa_c00274{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m8b_c00274{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.me6_c00274{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m80_c00274{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mc1_c00274{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.md7_c00274{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.mb6_c00274{transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);}
.mfc_c00274{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m7c_c00274{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mb1_c00274{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m68_c00274{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m73_c00274{transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);}
.mcc_c00274{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m85_c00274{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m107_c00274{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m9c_c00274{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.m64_c00274{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m63_c00274{transform:matrix(0.607059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607059,0.000000,0.000000,0.250000,0,0);}
.m9a_c00274{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.ma8_c00274{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m79_c00274{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m1b_c00274{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.m91_c00274{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.me0_c00274{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);}
.m76_c00274{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m104_c00274{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.me7_c00274{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.md6_c00274{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.mac_c00274{transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);}
.md1_c00274{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m8f_c00274{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.mf8_c00274{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.mb_c00274{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);}
.meb_c00274{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.mad_c00274{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m4d_c00274{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m24_c00274{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m6b_c00274{transform:matrix(0.674793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674793,0.000000,0.000000,0.250000,0,0);}
.mfb_c00274{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mde_c00274{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m87_c00274{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m0_c00274{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.mfa_c00274{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.mf4_c00274{transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);}
.m5f_c00274{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mbd_c00274{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mf5_c00274{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.mcf_c00274{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m90_c00274{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m6c_c00274{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m32_c00274{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m7d_c00274{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.ma0_c00274{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mb8_c00274{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mb9_c00274{transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);}
.mae_c00274{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m6e_c00274{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mff_c00274{transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);}
.me9_c00274{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.mc6_c00274{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m1a_c00274{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m27_c00274{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00274{vertical-align:0.000000px;}
.v1_c00274{vertical-align:1.680000px;}
.ls1_c00274{letter-spacing:0.000000px;}
.ls0_c00274{letter-spacing:12.657600px;}
.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;}
}
.ws2_c00274{word-spacing:-16.889280px;}
.ws1_c00274{word-spacing:-0.339443px;}
.ws4_c00274{word-spacing:0.000000px;}
.ws3_c00274{word-spacing:0.607426px;}
.ws0_c00274{word-spacing:4.810122px;}
._0_c00274{width:5.279097px;}
._1_c00274{width:21.027841px;}
.fc0_c00274{color:transparent;}
.fs6_c00274{font-size:3.420000px;}
.fs8_c00274{font-size:13.620000px;}
.fs0_c00274{font-size:18.720000px;}
.fs4_c00274{font-size:20.400000px;}
.fs3_c00274{font-size:25.500000px;}
.fs1_c00274{font-size:28.920000px;}
.fs5_c00274{font-size:32.340000px;}
.fs2_c00274{font-size:35.700000px;}
.fs7_c00274{font-size:39.120000px;}
.y0_c00274{bottom:0.000000px;}
.yce_c00274{bottom:253.245000px;}
.ycd_c00274{bottom:254.130000px;}
.ycb_c00274{bottom:254.745000px;}
.ycc_c00274{bottom:255.405000px;}
.yca_c00274{bottom:255.825000px;}
.yc8_c00274{bottom:272.745000px;}
.yc4_c00274{bottom:274.245000px;}
.yc9_c00274{bottom:274.905000px;}
.yc7_c00274{bottom:275.970000px;}
.yc6_c00274{bottom:276.405000px;}
.yc5_c00274{bottom:276.420000px;}
.yc3_c00274{bottom:301.905000px;}
.yc2_c00274{bottom:302.130000px;}
.ybf_c00274{bottom:314.325000px;}
.yc1_c00274{bottom:314.970000px;}
.ybc_c00274{bottom:315.405000px;}
.yc0_c00274{bottom:315.825000px;}
.ybe_c00274{bottom:316.470000px;}
.ybd_c00274{bottom:317.550000px;}
.yb8_c00274{bottom:330.405000px;}
.ybb_c00274{bottom:330.825000px;}
.yb9_c00274{bottom:331.470000px;}
.yba_c00274{bottom:331.695000px;}
.yb6_c00274{bottom:331.905000px;}
.yb5_c00274{bottom:332.130000px;}
.yb7_c00274{bottom:332.550000px;}
.yb4_c00274{bottom:345.405000px;}
.yb2_c00274{bottom:346.470000px;}
.yb3_c00274{bottom:347.130000px;}
.yb1_c00274{bottom:347.550000px;}
.yae_c00274{bottom:359.325000px;}
.yaf_c00274{bottom:359.970000px;}
.yab_c00274{bottom:360.405000px;}
.yad_c00274{bottom:361.470000px;}
.yac_c00274{bottom:361.695000px;}
.yb0_c00274{bottom:362.550000px;}
.ya6_c00274{bottom:373.470000px;}
.yaa_c00274{bottom:374.325000px;}
.ya7_c00274{bottom:375.405000px;}
.ya9_c00274{bottom:376.470000px;}
.ya8_c00274{bottom:377.550000px;}
.ya4_c00274{bottom:390.405000px;}
.ya5_c00274{bottom:391.695000px;}
.ya2_c00274{bottom:403.905000px;}
.ya1_c00274{bottom:404.325000px;}
.y9e_c00274{bottom:404.550000px;}
.ya0_c00274{bottom:405.405000px;}
.ya3_c00274{bottom:406.050000px;}
.y9f_c00274{bottom:406.470000px;}
.y9d_c00274{bottom:420.405000px;}
.y9c_c00274{bottom:422.550000px;}
.y99_c00274{bottom:432.825000px;}
.y9a_c00274{bottom:433.905000px;}
.y94_c00274{bottom:434.325000px;}
.y93_c00274{bottom:434.550000px;}
.y98_c00274{bottom:434.970000px;}
.y97_c00274{bottom:435.195000px;}
.y96_c00274{bottom:435.405000px;}
.y9b_c00274{bottom:436.050000px;}
.y95_c00274{bottom:436.470000px;}
.y8f_c00274{bottom:447.825000px;}
.y91_c00274{bottom:448.905000px;}
.y90_c00274{bottom:449.325000px;}
.y8e_c00274{bottom:450.630000px;}
.y92_c00274{bottom:451.050000px;}
.y8b_c00274{bottom:461.970000px;}
.y8c_c00274{bottom:462.825000px;}
.y8a_c00274{bottom:463.905000px;}
.y88_c00274{bottom:464.130000px;}
.y89_c00274{bottom:464.970000px;}
.y8d_c00274{bottom:466.050000px;}
.y84_c00274{bottom:477.825000px;}
.y86_c00274{bottom:478.905000px;}
.y85_c00274{bottom:479.970000px;}
.y87_c00274{bottom:480.195000px;}
.y83_c00274{bottom:480.630000px;}
.y82_c00274{bottom:500.745000px;}
.y81_c00274{bottom:502.905000px;}
.y80_c00274{bottom:520.245000px;}
.y7f_c00274{bottom:521.130000px;}
.y7e_c00274{bottom:522.405000px;}
.y7c_c00274{bottom:538.905000px;}
.y7b_c00274{bottom:539.745000px;}
.y7a_c00274{bottom:539.970000px;}
.y79_c00274{bottom:541.905000px;}
.y7d_c00274{bottom:542.970000px;}
.y77_c00274{bottom:559.245000px;}
.y76_c00274{bottom:560.745000px;}
.y78_c00274{bottom:560.970000px;}
.y72_c00274{bottom:561.405000px;}
.y74_c00274{bottom:561.630000px;}
.y73_c00274{bottom:562.470000px;}
.y75_c00274{bottom:562.905000px;}
.y70_c00274{bottom:578.745000px;}
.y6b_c00274{bottom:579.825000px;}
.y71_c00274{bottom:580.050000px;}
.y6d_c00274{bottom:580.245000px;}
.y6e_c00274{bottom:580.905000px;}
.y6f_c00274{bottom:581.970000px;}
.y6c_c00274{bottom:582.405000px;}
.y6a_c00274{bottom:598.245000px;}
.y69_c00274{bottom:599.325000px;}
.y65_c00274{bottom:599.745000px;}
.y68_c00274{bottom:600.405000px;}
.y66_c00274{bottom:600.630000px;}
.y67_c00274{bottom:601.905000px;}
.y64_c00274{bottom:619.245000px;}
.y63_c00274{bottom:620.970000px;}
.y62_c00274{bottom:621.405000px;}
.y60_c00274{bottom:638.745000px;}
.y5f_c00274{bottom:639.825000px;}
.y61_c00274{bottom:640.470000px;}
.y5e_c00274{bottom:640.905000px;}
.y5d_c00274{bottom:641.130000px;}
.y5c_c00274{bottom:641.970000px;}
.y5b_c00274{bottom:658.245000px;}
.y59_c00274{bottom:660.405000px;}
.y5a_c00274{bottom:660.630000px;}
.y56_c00274{bottom:676.905000px;}
.y57_c00274{bottom:677.745000px;}
.y53_c00274{bottom:679.905000px;}
.y55_c00274{bottom:680.130000px;}
.y58_c00274{bottom:680.970000px;}
.y54_c00274{bottom:681.405000px;}
.y4f_c00274{bottom:696.405000px;}
.y52_c00274{bottom:697.245000px;}
.y50_c00274{bottom:698.325000px;}
.y4e_c00274{bottom:698.745000px;}
.y51_c00274{bottom:699.405000px;}
.y4d_c00274{bottom:699.630000px;}
.y4b_c00274{bottom:699.825000px;}
.y4c_c00274{bottom:700.905000px;}
.y4a_c00274{bottom:716.745000px;}
.y48_c00274{bottom:718.905000px;}
.y49_c00274{bottom:719.970000px;}
.y45_c00274{bottom:737.745000px;}
.y44_c00274{bottom:738.630000px;}
.y46_c00274{bottom:738.825000px;}
.y47_c00274{bottom:739.470000px;}
.y43_c00274{bottom:739.905000px;}
.y42_c00274{bottom:754.905000px;}
.y41_c00274{bottom:756.825000px;}
.y40_c00274{bottom:758.130000px;}
.y3f_c00274{bottom:759.405000px;}
.y3e_c00274{bottom:775.245000px;}
.y3c_c00274{bottom:776.745000px;}
.y3b_c00274{bottom:778.470000px;}
.y3a_c00274{bottom:778.905000px;}
.y3d_c00274{bottom:779.970000px;}
.y38_c00274{bottom:796.245000px;}
.y39_c00274{bottom:797.130000px;}
.y37_c00274{bottom:797.325000px;}
.y35_c00274{bottom:798.405000px;}
.y36_c00274{bottom:799.920000px;}
.y34_c00274{bottom:817.905000px;}
.y33_c00274{bottom:836.745000px;}
.y31_c00274{bottom:837.405000px;}
.y32_c00274{bottom:838.905000px;}
.y2f_c00274{bottom:857.130000px;}
.y30_c00274{bottom:857.325000px;}
.y2e_c00274{bottom:857.970000px;}
.y2d_c00274{bottom:858.405000px;}
.y2b_c00274{bottom:873.405000px;}
.y2a_c00274{bottom:874.245000px;}
.y29_c00274{bottom:875.745000px;}
.y2c_c00274{bottom:876.405000px;}
.y27_c00274{bottom:877.905000px;}
.y28_c00274{bottom:877.920000px;}
.y25_c00274{bottom:893.970000px;}
.y26_c00274{bottom:897.405000px;}
.y24_c00274{bottom:914.745000px;}
.y23_c00274{bottom:915.825000px;}
.y22_c00274{bottom:916.905000px;}
.y20_c00274{bottom:934.245000px;}
.y21_c00274{bottom:935.325000px;}
.y1d_c00274{bottom:936.405000px;}
.y1e_c00274{bottom:936.630000px;}
.y1f_c00274{bottom:937.920000px;}
.y1c_c00274{bottom:952.680000px;}
.y1a_c00274{bottom:952.905000px;}
.y17_c00274{bottom:953.745000px;}
.y19_c00274{bottom:954.825000px;}
.y1b_c00274{bottom:955.905000px;}
.y18_c00274{bottom:957.420000px;}
.y16_c00274{bottom:975.405000px;}
.y15_c00274{bottom:976.470000px;}
.y10_c00274{bottom:992.745000px;}
.y11_c00274{bottom:994.245000px;}
.y14_c00274{bottom:994.905000px;}
.y13_c00274{bottom:996.405000px;}
.y12_c00274{bottom:996.420000px;}
.ye_c00274{bottom:1017.825000px;}
.yc_c00274{bottom:1018.905000px;}
.ya_c00274{bottom:1019.325000px;}
.yf_c00274{bottom:1019.550000px;}
.yd_c00274{bottom:1019.970000px;}
.yb_c00274{bottom:1020.405000px;}
.y8_c00274{bottom:1038.405000px;}
.y6_c00274{bottom:1038.825000px;}
.y5_c00274{bottom:1039.050000px;}
.y7_c00274{bottom:1039.905000px;}
.y4_c00274{bottom:1040.970000px;}
.y9_c00274{bottom:1042.050000px;}
.y3_c00274{bottom:1061.745000px;}
.y2_c00274{bottom:1099.905000px;}
.y1_c00274{bottom:1103.130000px;}
.h7_c00274{height:4.206533px;}
.h9_c00274{height:16.752334px;}
.h1_c00274{height:23.025234px;}
.h5_c00274{height:25.091602px;}
.h4_c00274{height:31.364502px;}
.ha_c00274{height:33.044502px;}
.h2_c00274{height:35.571035px;}
.h6_c00274{height:39.777568px;}
.h3_c00274{height:43.910303px;}
.h8_c00274{height:48.116836px;}
.h0_c00274{height:1335.000000px;}
.w0_c00274{width:880.500000px;}
.x0_c00274{left:0.000000px;}
.x22_c00274{left:150.000000px;}
.x35_c00274{left:151.080000px;}
.x61_c00274{left:152.580000px;}
.xc8_c00274{left:154.920000px;}
.xe2_c00274{left:156.420000px;}
.xe_c00274{left:163.920000px;}
.xc9_c00274{left:165.000000px;}
.x18_c00274{left:166.920000px;}
.xc0_c00274{left:168.420000px;}
.x8c_c00274{left:169.500000px;}
.x23_c00274{left:170.580000px;}
.xaf_c00274{left:174.000000px;}
.xbe_c00274{left:180.420000px;}
.xa8_c00274{left:181.920000px;}
.xc1_c00274{left:184.500000px;}
.x3d_c00274{left:185.580000px;}
.x6b_c00274{left:190.500000px;}
.x7c_c00274{left:198.000000px;}
.xe7_c00274{left:199.500000px;}
.x36_c00274{left:201.420000px;}
.x62_c00274{left:202.500000px;}
.x19_c00274{left:204.420000px;}
.x74_c00274{left:205.500000px;}
.xa9_c00274{left:208.500000px;}
.x6c_c00274{left:210.420000px;}
.xd6_c00274{left:211.500000px;}
.x56_c00274{left:212.580000px;}
.x4e_c00274{left:217.080000px;}
.x46_c00274{left:219.000000px;}
.x63_c00274{left:220.080000px;}
.xd7_c00274{left:222.000000px;}
.x98_c00274{left:223.500000px;}
.xa1_c00274{left:226.500000px;}
.x7d_c00274{left:229.500000px;}
.x75_c00274{left:234.420000px;}
.x8d_c00274{left:238.500000px;}
.x9d_c00274{left:241.080000px;}
.x57_c00274{left:243.000000px;}
.xe8_c00274{left:244.920000px;}
.xd1_c00274{left:247.500000px;}
.xbf_c00274{left:248.580000px;}
.x2d_c00274{left:250.500000px;}
.x58_c00274{left:252.000000px;}
.xda_c00274{left:253.500000px;}
.xca_c00274{left:255.420000px;}
.x3_c00274{left:256.500000px;}
.x24_c00274{left:258.000000px;}
.xf_c00274{left:259.920000px;}
.xcc_c00274{left:262.080000px;}
.x1a_c00274{left:264.000000px;}
.x4f_c00274{left:265.500000px;}
.xc2_c00274{left:267.000000px;}
.x6d_c00274{left:268.500000px;}
.xb9_c00274{left:271.500000px;}
.x59_c00274{left:272.580000px;}
.x37_c00274{left:274.080000px;}
.x99_c00274{left:277.500000px;}
.x25_c00274{left:279.000000px;}
.x3e_c00274{left:280.500000px;}
.xd2_c00274{left:282.000000px;}
.x1b_c00274{left:285.000000px;}
.xe9_c00274{left:286.920000px;}
.x64_c00274{left:288.420000px;}
.xd8_c00274{left:293.580000px;}
.x50_c00274{left:295.500000px;}
.x84_c00274{left:297.420000px;}
.xba_c00274{left:300.000000px;}
.x2e_c00274{left:301.500000px;}
.x6e_c00274{left:303.420000px;}
.xdb_c00274{left:306.000000px;}
.xa2_c00274{left:309.000000px;}
.x7_c00274{left:310.500000px;}
.xaa_c00274{left:314.580000px;}
.x3f_c00274{left:316.500000px;}
.x10_c00274{left:317.580000px;}
.xd3_c00274{left:319.920000px;}
.x2f_c00274{left:322.080000px;}
.xc3_c00274{left:325.500000px;}
.x65_c00274{left:328.500000px;}
.x4_c00274{left:331.920000px;}
.x93_c00274{left:334.500000px;}
.xd4_c00274{left:337.500000px;}
.x8e_c00274{left:339.000000px;}
.x26_c00274{left:341.775000px;}
.xdc_c00274{left:343.080000px;}
.x5a_c00274{left:345.000000px;}
.x7e_c00274{left:347.580000px;}
.x8_c00274{left:350.580000px;}
.x9e_c00274{left:352.500000px;}
.x8f_c00274{left:354.420000px;}
.xa3_c00274{left:356.580000px;}
.x9a_c00274{left:359.580000px;}
.x85_c00274{left:361.500000px;}
.x47_c00274{left:362.580000px;}
.x51_c00274{left:364.500000px;}
.x5b_c00274{left:366.000000px;}
.x1c_c00274{left:367.500000px;}
.x40_c00274{left:372.000000px;}
.xcd_c00274{left:375.000000px;}
.x86_c00274{left:376.500000px;}
.xc4_c00274{left:379.080000px;}
.x66_c00274{left:380.580000px;}
.x11_c00274{left:382.920000px;}
.x90_c00274{left:384.000000px;}
.x76_c00274{left:388.500000px;}
.x38_c00274{left:391.080000px;}
.xc6_c00274{left:393.000000px;}
.x9b_c00274{left:394.500000px;}
.xd9_c00274{left:396.000000px;}
.x1_c00274{left:401.580000px;}
.x7f_c00274{left:405.420000px;}
.x9_c00274{left:407.580000px;}
.x48_c00274{left:409.500000px;}
.xb6_c00274{left:413.580000px;}
.x27_c00274{left:414.645000px;}
.x87_c00274{left:417.420000px;}
.x12_c00274{left:419.580000px;}
.x9f_c00274{left:421.080000px;}
.x30_c00274{left:423.420000px;}
.xc7_c00274{left:427.080000px;}
.xa_c00274{left:428.580000px;}
.x6f_c00274{left:431.580000px;}
.xb0_c00274{left:433.920000px;}
.xbb_c00274{left:436.920000px;}
.x41_c00274{left:438.420000px;}
.x5c_c00274{left:441.000000px;}
.xdd_c00274{left:442.500000px;}
.x80_c00274{left:445.920000px;}
.xb_c00274{left:447.000000px;}
.x88_c00274{left:450.420000px;}
.x77_c00274{left:452.580000px;}
.x52_c00274{left:454.920000px;}
.x94_c00274{left:459.000000px;}
.x67_c00274{left:468.000000px;}
.xbc_c00274{left:471.420000px;}
.x49_c00274{left:474.000000px;}
.x13_c00274{left:475.500000px;}
.xd5_c00274{left:477.000000px;}
.xab_c00274{left:478.500000px;}
.x91_c00274{left:483.000000px;}
.xc_c00274{left:484.500000px;}
.x68_c00274{left:487.080000px;}
.x89_c00274{left:490.500000px;}
.x5d_c00274{left:492.645000px;}
.x31_c00274{left:494.580000px;}
.xa4_c00274{left:496.080000px;}
.x1d_c00274{left:497.145000px;}
.xb1_c00274{left:498.645000px;}
.x92_c00274{left:502.920000px;}
.xce_c00274{left:504.000000px;}
.x5_c00274{left:505.080000px;}
.xc5_c00274{left:506.580000px;}
.xe3_c00274{left:510.000000px;}
.x78_c00274{left:511.500000px;}
.xde_c00274{left:512.580000px;}
.x95_c00274{left:514.500000px;}
.x42_c00274{left:515.580000px;}
.x81_c00274{left:517.080000px;}
.x70_c00274{left:519.000000px;}
.x39_c00274{left:520.080000px;}
.x4a_c00274{left:522.000000px;}
.xe0_c00274{left:526.080000px;}
.xd_c00274{left:529.080000px;}
.x14_c00274{left:535.080000px;}
.xb7_c00274{left:537.420000px;}
.x71_c00274{left:539.580000px;}
.xdf_c00274{left:541.500000px;}
.x79_c00274{left:547.920000px;}
.x82_c00274{left:549.420000px;}
.x32_c00274{left:550.920000px;}
.xac_c00274{left:553.500000px;}
.x28_c00274{left:554.775000px;}
.xe4_c00274{left:559.080000px;}
.x69_c00274{left:561.000000px;}
.x5e_c00274{left:562.080000px;}
.x15_c00274{left:564.855000px;}
.x4b_c00274{left:567.000000px;}
.x9c_c00274{left:569.580000px;}
.x1e_c00274{left:571.500000px;}
.xea_c00274{left:573.420000px;}
.xcb_c00274{left:576.000000px;}
.x8a_c00274{left:577.500000px;}
.xe5_c00274{left:578.580000px;}
.x72_c00274{left:580.920000px;}
.x3a_c00274{left:582.420000px;}
.x6_c00274{left:586.275000px;}
.x16_c00274{left:588.855000px;}
.x1f_c00274{left:592.500000px;}
.xe1_c00274{left:597.000000px;}
.x43_c00274{left:598.275000px;}
.x53_c00274{left:601.500000px;}
.x17_c00274{left:603.420000px;}
.xb2_c00274{left:607.500000px;}
.x5f_c00274{left:609.000000px;}
.x96_c00274{left:612.000000px;}
.x29_c00274{left:615.855000px;}
.x33_c00274{left:621.000000px;}
.xad_c00274{left:626.580000px;}
.xbd_c00274{left:630.000000px;}
.xa0_c00274{left:631.500000px;}
.xa5_c00274{left:632.775000px;}
.x73_c00274{left:636.420000px;}
.x60_c00274{left:637.500000px;}
.x44_c00274{left:642.000000px;}
.xeb_c00274{left:643.920000px;}
.x2a_c00274{left:646.920000px;}
.x4c_c00274{left:648.000000px;}
.x20_c00274{left:652.080000px;}
.x8b_c00274{left:655.500000px;}
.x83_c00274{left:658.500000px;}
.x7a_c00274{left:660.420000px;}
.x34_c00274{left:663.420000px;}
.xb8_c00274{left:664.500000px;}
.x3b_c00274{left:667.080000px;}
.x54_c00274{left:669.420000px;}
.x2b_c00274{left:671.580000px;}
.xa6_c00274{left:673.500000px;}
.xcf_c00274{left:675.000000px;}
.x6a_c00274{left:678.000000px;}
.xb3_c00274{left:679.500000px;}
.x97_c00274{left:680.580000px;}
.x2c_c00274{left:683.580000px;}
.x7b_c00274{left:687.420000px;}
.x3c_c00274{left:691.080000px;}
.xb4_c00274{left:694.500000px;}
.x45_c00274{left:696.420000px;}
.x21_c00274{left:700.275000px;}
.x2_c00274{left:701.580000px;}
.x4d_c00274{left:703.080000px;}
.xe6_c00274{left:705.000000px;}
.x55_c00274{left:706.920000px;}
.xd0_c00274{left:709.080000px;}
.xa7_c00274{left:712.080000px;}
.xb5_c00274{left:713.580000px;}
.xae_c00274{left:715.500000px;}
.xec_c00274{left:721.500000px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.v1_c00274{vertical-align:1.493333pt;}
.ls1_c00274{letter-spacing:0.000000pt;}
.ls0_c00274{letter-spacing:11.251200pt;}
.ws2_c00274{word-spacing:-15.012693pt;}
.ws1_c00274{word-spacing:-0.301727pt;}
.ws4_c00274{word-spacing:0.000000pt;}
.ws3_c00274{word-spacing:0.539934pt;}
.ws0_c00274{word-spacing:4.275664pt;}
._0_c00274{width:4.692530pt;}
._1_c00274{width:18.691415pt;}
.fs6_c00274{font-size:3.040000pt;}
.fs8_c00274{font-size:12.106667pt;}
.fs0_c00274{font-size:16.640000pt;}
.fs4_c00274{font-size:18.133333pt;}
.fs3_c00274{font-size:22.666667pt;}
.fs1_c00274{font-size:25.706667pt;}
.fs5_c00274{font-size:28.746667pt;}
.fs2_c00274{font-size:31.733333pt;}
.fs7_c00274{font-size:34.773333pt;}
.y0_c00274{bottom:0.000000pt;}
.yce_c00274{bottom:225.106667pt;}
.ycd_c00274{bottom:225.893333pt;}
.ycb_c00274{bottom:226.440000pt;}
.ycc_c00274{bottom:227.026667pt;}
.yca_c00274{bottom:227.400000pt;}
.yc8_c00274{bottom:242.440000pt;}
.yc4_c00274{bottom:243.773333pt;}
.yc9_c00274{bottom:244.360000pt;}
.yc7_c00274{bottom:245.306667pt;}
.yc6_c00274{bottom:245.693333pt;}
.yc5_c00274{bottom:245.706667pt;}
.yc3_c00274{bottom:268.360000pt;}
.yc2_c00274{bottom:268.560000pt;}
.ybf_c00274{bottom:279.400000pt;}
.yc1_c00274{bottom:279.973333pt;}
.ybc_c00274{bottom:280.360000pt;}
.yc0_c00274{bottom:280.733333pt;}
.ybe_c00274{bottom:281.306667pt;}
.ybd_c00274{bottom:282.266667pt;}
.yb8_c00274{bottom:293.693333pt;}
.ybb_c00274{bottom:294.066667pt;}
.yb9_c00274{bottom:294.640000pt;}
.yba_c00274{bottom:294.840000pt;}
.yb6_c00274{bottom:295.026667pt;}
.yb5_c00274{bottom:295.226667pt;}
.yb7_c00274{bottom:295.600000pt;}
.yb4_c00274{bottom:307.026667pt;}
.yb2_c00274{bottom:307.973333pt;}
.yb3_c00274{bottom:308.560000pt;}
.yb1_c00274{bottom:308.933333pt;}
.yae_c00274{bottom:319.400000pt;}
.yaf_c00274{bottom:319.973333pt;}
.yab_c00274{bottom:320.360000pt;}
.yad_c00274{bottom:321.306667pt;}
.yac_c00274{bottom:321.506667pt;}
.yb0_c00274{bottom:322.266667pt;}
.ya6_c00274{bottom:331.973333pt;}
.yaa_c00274{bottom:332.733333pt;}
.ya7_c00274{bottom:333.693333pt;}
.ya9_c00274{bottom:334.640000pt;}
.ya8_c00274{bottom:335.600000pt;}
.ya4_c00274{bottom:347.026667pt;}
.ya5_c00274{bottom:348.173333pt;}
.ya2_c00274{bottom:359.026667pt;}
.ya1_c00274{bottom:359.400000pt;}
.y9e_c00274{bottom:359.600000pt;}
.ya0_c00274{bottom:360.360000pt;}
.ya3_c00274{bottom:360.933333pt;}
.y9f_c00274{bottom:361.306667pt;}
.y9d_c00274{bottom:373.693333pt;}
.y9c_c00274{bottom:375.600000pt;}
.y99_c00274{bottom:384.733333pt;}
.y9a_c00274{bottom:385.693333pt;}
.y94_c00274{bottom:386.066667pt;}
.y93_c00274{bottom:386.266667pt;}
.y98_c00274{bottom:386.640000pt;}
.y97_c00274{bottom:386.840000pt;}
.y96_c00274{bottom:387.026667pt;}
.y9b_c00274{bottom:387.600000pt;}
.y95_c00274{bottom:387.973333pt;}
.y8f_c00274{bottom:398.066667pt;}
.y91_c00274{bottom:399.026667pt;}
.y90_c00274{bottom:399.400000pt;}
.y8e_c00274{bottom:400.560000pt;}
.y92_c00274{bottom:400.933333pt;}
.y8b_c00274{bottom:410.640000pt;}
.y8c_c00274{bottom:411.400000pt;}
.y8a_c00274{bottom:412.360000pt;}
.y88_c00274{bottom:412.560000pt;}
.y89_c00274{bottom:413.306667pt;}
.y8d_c00274{bottom:414.266667pt;}
.y84_c00274{bottom:424.733333pt;}
.y86_c00274{bottom:425.693333pt;}
.y85_c00274{bottom:426.640000pt;}
.y87_c00274{bottom:426.840000pt;}
.y83_c00274{bottom:427.226667pt;}
.y82_c00274{bottom:445.106667pt;}
.y81_c00274{bottom:447.026667pt;}
.y80_c00274{bottom:462.440000pt;}
.y7f_c00274{bottom:463.226667pt;}
.y7e_c00274{bottom:464.360000pt;}
.y7c_c00274{bottom:479.026667pt;}
.y7b_c00274{bottom:479.773333pt;}
.y7a_c00274{bottom:479.973333pt;}
.y79_c00274{bottom:481.693333pt;}
.y7d_c00274{bottom:482.640000pt;}
.y77_c00274{bottom:497.106667pt;}
.y76_c00274{bottom:498.440000pt;}
.y78_c00274{bottom:498.640000pt;}
.y72_c00274{bottom:499.026667pt;}
.y74_c00274{bottom:499.226667pt;}
.y73_c00274{bottom:499.973333pt;}
.y75_c00274{bottom:500.360000pt;}
.y70_c00274{bottom:514.440000pt;}
.y6b_c00274{bottom:515.400000pt;}
.y71_c00274{bottom:515.600000pt;}
.y6d_c00274{bottom:515.773333pt;}
.y6e_c00274{bottom:516.360000pt;}
.y6f_c00274{bottom:517.306667pt;}
.y6c_c00274{bottom:517.693333pt;}
.y6a_c00274{bottom:531.773333pt;}
.y69_c00274{bottom:532.733333pt;}
.y65_c00274{bottom:533.106667pt;}
.y68_c00274{bottom:533.693333pt;}
.y66_c00274{bottom:533.893333pt;}
.y67_c00274{bottom:535.026667pt;}
.y64_c00274{bottom:550.440000pt;}
.y63_c00274{bottom:551.973333pt;}
.y62_c00274{bottom:552.360000pt;}
.y60_c00274{bottom:567.773333pt;}
.y5f_c00274{bottom:568.733333pt;}
.y61_c00274{bottom:569.306667pt;}
.y5e_c00274{bottom:569.693333pt;}
.y5d_c00274{bottom:569.893333pt;}
.y5c_c00274{bottom:570.640000pt;}
.y5b_c00274{bottom:585.106667pt;}
.y59_c00274{bottom:587.026667pt;}
.y5a_c00274{bottom:587.226667pt;}
.y56_c00274{bottom:601.693333pt;}
.y57_c00274{bottom:602.440000pt;}
.y53_c00274{bottom:604.360000pt;}
.y55_c00274{bottom:604.560000pt;}
.y58_c00274{bottom:605.306667pt;}
.y54_c00274{bottom:605.693333pt;}
.y4f_c00274{bottom:619.026667pt;}
.y52_c00274{bottom:619.773333pt;}
.y50_c00274{bottom:620.733333pt;}
.y4e_c00274{bottom:621.106667pt;}
.y51_c00274{bottom:621.693333pt;}
.y4d_c00274{bottom:621.893333pt;}
.y4b_c00274{bottom:622.066667pt;}
.y4c_c00274{bottom:623.026667pt;}
.y4a_c00274{bottom:637.106667pt;}
.y48_c00274{bottom:639.026667pt;}
.y49_c00274{bottom:639.973333pt;}
.y45_c00274{bottom:655.773333pt;}
.y44_c00274{bottom:656.560000pt;}
.y46_c00274{bottom:656.733333pt;}
.y47_c00274{bottom:657.306667pt;}
.y43_c00274{bottom:657.693333pt;}
.y42_c00274{bottom:671.026667pt;}
.y41_c00274{bottom:672.733333pt;}
.y40_c00274{bottom:673.893333pt;}
.y3f_c00274{bottom:675.026667pt;}
.y3e_c00274{bottom:689.106667pt;}
.y3c_c00274{bottom:690.440000pt;}
.y3b_c00274{bottom:691.973333pt;}
.y3a_c00274{bottom:692.360000pt;}
.y3d_c00274{bottom:693.306667pt;}
.y38_c00274{bottom:707.773333pt;}
.y39_c00274{bottom:708.560000pt;}
.y37_c00274{bottom:708.733333pt;}
.y35_c00274{bottom:709.693333pt;}
.y36_c00274{bottom:711.040000pt;}
.y34_c00274{bottom:727.026667pt;}
.y33_c00274{bottom:743.773333pt;}
.y31_c00274{bottom:744.360000pt;}
.y32_c00274{bottom:745.693333pt;}
.y2f_c00274{bottom:761.893333pt;}
.y30_c00274{bottom:762.066667pt;}
.y2e_c00274{bottom:762.640000pt;}
.y2d_c00274{bottom:763.026667pt;}
.y2b_c00274{bottom:776.360000pt;}
.y2a_c00274{bottom:777.106667pt;}
.y29_c00274{bottom:778.440000pt;}
.y2c_c00274{bottom:779.026667pt;}
.y27_c00274{bottom:780.360000pt;}
.y28_c00274{bottom:780.373333pt;}
.y25_c00274{bottom:794.640000pt;}
.y26_c00274{bottom:797.693333pt;}
.y24_c00274{bottom:813.106667pt;}
.y23_c00274{bottom:814.066667pt;}
.y22_c00274{bottom:815.026667pt;}
.y20_c00274{bottom:830.440000pt;}
.y21_c00274{bottom:831.400000pt;}
.y1d_c00274{bottom:832.360000pt;}
.y1e_c00274{bottom:832.560000pt;}
.y1f_c00274{bottom:833.706667pt;}
.y1c_c00274{bottom:846.826667pt;}
.y1a_c00274{bottom:847.026667pt;}
.y17_c00274{bottom:847.773333pt;}
.y19_c00274{bottom:848.733333pt;}
.y1b_c00274{bottom:849.693333pt;}
.y18_c00274{bottom:851.040000pt;}
.y16_c00274{bottom:867.026667pt;}
.y15_c00274{bottom:867.973333pt;}
.y10_c00274{bottom:882.440000pt;}
.y11_c00274{bottom:883.773333pt;}
.y14_c00274{bottom:884.360000pt;}
.y13_c00274{bottom:885.693333pt;}
.y12_c00274{bottom:885.706667pt;}
.ye_c00274{bottom:904.733333pt;}
.yc_c00274{bottom:905.693333pt;}
.ya_c00274{bottom:906.066667pt;}
.yf_c00274{bottom:906.266667pt;}
.yd_c00274{bottom:906.640000pt;}
.yb_c00274{bottom:907.026667pt;}
.y8_c00274{bottom:923.026667pt;}
.y6_c00274{bottom:923.400000pt;}
.y5_c00274{bottom:923.600000pt;}
.y7_c00274{bottom:924.360000pt;}
.y4_c00274{bottom:925.306667pt;}
.y9_c00274{bottom:926.266667pt;}
.y3_c00274{bottom:943.773333pt;}
.y2_c00274{bottom:977.693333pt;}
.y1_c00274{bottom:980.560000pt;}
.h7_c00274{height:3.739141pt;}
.h9_c00274{height:14.890964pt;}
.h1_c00274{height:20.466875pt;}
.h5_c00274{height:22.303646pt;}
.h4_c00274{height:27.879557pt;}
.ha_c00274{height:29.372891pt;}
.h2_c00274{height:31.618698pt;}
.h6_c00274{height:35.357839pt;}
.h3_c00274{height:39.031380pt;}
.h8_c00274{height:42.770521pt;}
.h0_c00274{height:1186.666667pt;}
.w0_c00274{width:782.666667pt;}
.x0_c00274{left:0.000000pt;}
.x22_c00274{left:133.333333pt;}
.x35_c00274{left:134.293333pt;}
.x61_c00274{left:135.626667pt;}
.xc8_c00274{left:137.706667pt;}
.xe2_c00274{left:139.040000pt;}
.xe_c00274{left:145.706667pt;}
.xc9_c00274{left:146.666667pt;}
.x18_c00274{left:148.373333pt;}
.xc0_c00274{left:149.706667pt;}
.x8c_c00274{left:150.666667pt;}
.x23_c00274{left:151.626667pt;}
.xaf_c00274{left:154.666667pt;}
.xbe_c00274{left:160.373333pt;}
.xa8_c00274{left:161.706667pt;}
.xc1_c00274{left:164.000000pt;}
.x3d_c00274{left:164.960000pt;}
.x6b_c00274{left:169.333333pt;}
.x7c_c00274{left:176.000000pt;}
.xe7_c00274{left:177.333333pt;}
.x36_c00274{left:179.040000pt;}
.x62_c00274{left:180.000000pt;}
.x19_c00274{left:181.706667pt;}
.x74_c00274{left:182.666667pt;}
.xa9_c00274{left:185.333333pt;}
.x6c_c00274{left:187.040000pt;}
.xd6_c00274{left:188.000000pt;}
.x56_c00274{left:188.960000pt;}
.x4e_c00274{left:192.960000pt;}
.x46_c00274{left:194.666667pt;}
.x63_c00274{left:195.626667pt;}
.xd7_c00274{left:197.333333pt;}
.x98_c00274{left:198.666667pt;}
.xa1_c00274{left:201.333333pt;}
.x7d_c00274{left:204.000000pt;}
.x75_c00274{left:208.373333pt;}
.x8d_c00274{left:212.000000pt;}
.x9d_c00274{left:214.293333pt;}
.x57_c00274{left:216.000000pt;}
.xe8_c00274{left:217.706667pt;}
.xd1_c00274{left:220.000000pt;}
.xbf_c00274{left:220.960000pt;}
.x2d_c00274{left:222.666667pt;}
.x58_c00274{left:224.000000pt;}
.xda_c00274{left:225.333333pt;}
.xca_c00274{left:227.040000pt;}
.x3_c00274{left:228.000000pt;}
.x24_c00274{left:229.333333pt;}
.xf_c00274{left:231.040000pt;}
.xcc_c00274{left:232.960000pt;}
.x1a_c00274{left:234.666667pt;}
.x4f_c00274{left:236.000000pt;}
.xc2_c00274{left:237.333333pt;}
.x6d_c00274{left:238.666667pt;}
.xb9_c00274{left:241.333333pt;}
.x59_c00274{left:242.293333pt;}
.x37_c00274{left:243.626667pt;}
.x99_c00274{left:246.666667pt;}
.x25_c00274{left:248.000000pt;}
.x3e_c00274{left:249.333333pt;}
.xd2_c00274{left:250.666667pt;}
.x1b_c00274{left:253.333333pt;}
.xe9_c00274{left:255.040000pt;}
.x64_c00274{left:256.373333pt;}
.xd8_c00274{left:260.960000pt;}
.x50_c00274{left:262.666667pt;}
.x84_c00274{left:264.373333pt;}
.xba_c00274{left:266.666667pt;}
.x2e_c00274{left:268.000000pt;}
.x6e_c00274{left:269.706667pt;}
.xdb_c00274{left:272.000000pt;}
.xa2_c00274{left:274.666667pt;}
.x7_c00274{left:276.000000pt;}
.xaa_c00274{left:279.626667pt;}
.x3f_c00274{left:281.333333pt;}
.x10_c00274{left:282.293333pt;}
.xd3_c00274{left:284.373333pt;}
.x2f_c00274{left:286.293333pt;}
.xc3_c00274{left:289.333333pt;}
.x65_c00274{left:292.000000pt;}
.x4_c00274{left:295.040000pt;}
.x93_c00274{left:297.333333pt;}
.xd4_c00274{left:300.000000pt;}
.x8e_c00274{left:301.333333pt;}
.x26_c00274{left:303.800000pt;}
.xdc_c00274{left:304.960000pt;}
.x5a_c00274{left:306.666667pt;}
.x7e_c00274{left:308.960000pt;}
.x8_c00274{left:311.626667pt;}
.x9e_c00274{left:313.333333pt;}
.x8f_c00274{left:315.040000pt;}
.xa3_c00274{left:316.960000pt;}
.x9a_c00274{left:319.626667pt;}
.x85_c00274{left:321.333333pt;}
.x47_c00274{left:322.293333pt;}
.x51_c00274{left:324.000000pt;}
.x5b_c00274{left:325.333333pt;}
.x1c_c00274{left:326.666667pt;}
.x40_c00274{left:330.666667pt;}
.xcd_c00274{left:333.333333pt;}
.x86_c00274{left:334.666667pt;}
.xc4_c00274{left:336.960000pt;}
.x66_c00274{left:338.293333pt;}
.x11_c00274{left:340.373333pt;}
.x90_c00274{left:341.333333pt;}
.x76_c00274{left:345.333333pt;}
.x38_c00274{left:347.626667pt;}
.xc6_c00274{left:349.333333pt;}
.x9b_c00274{left:350.666667pt;}
.xd9_c00274{left:352.000000pt;}
.x1_c00274{left:356.960000pt;}
.x7f_c00274{left:360.373333pt;}
.x9_c00274{left:362.293333pt;}
.x48_c00274{left:364.000000pt;}
.xb6_c00274{left:367.626667pt;}
.x27_c00274{left:368.573333pt;}
.x87_c00274{left:371.040000pt;}
.x12_c00274{left:372.960000pt;}
.x9f_c00274{left:374.293333pt;}
.x30_c00274{left:376.373333pt;}
.xc7_c00274{left:379.626667pt;}
.xa_c00274{left:380.960000pt;}
.x6f_c00274{left:383.626667pt;}
.xb0_c00274{left:385.706667pt;}
.xbb_c00274{left:388.373333pt;}
.x41_c00274{left:389.706667pt;}
.x5c_c00274{left:392.000000pt;}
.xdd_c00274{left:393.333333pt;}
.x80_c00274{left:396.373333pt;}
.xb_c00274{left:397.333333pt;}
.x88_c00274{left:400.373333pt;}
.x77_c00274{left:402.293333pt;}
.x52_c00274{left:404.373333pt;}
.x94_c00274{left:408.000000pt;}
.x67_c00274{left:416.000000pt;}
.xbc_c00274{left:419.040000pt;}
.x49_c00274{left:421.333333pt;}
.x13_c00274{left:422.666667pt;}
.xd5_c00274{left:424.000000pt;}
.xab_c00274{left:425.333333pt;}
.x91_c00274{left:429.333333pt;}
.xc_c00274{left:430.666667pt;}
.x68_c00274{left:432.960000pt;}
.x89_c00274{left:436.000000pt;}
.x5d_c00274{left:437.906667pt;}
.x31_c00274{left:439.626667pt;}
.xa4_c00274{left:440.960000pt;}
.x1d_c00274{left:441.906667pt;}
.xb1_c00274{left:443.240000pt;}
.x92_c00274{left:447.040000pt;}
.xce_c00274{left:448.000000pt;}
.x5_c00274{left:448.960000pt;}
.xc5_c00274{left:450.293333pt;}
.xe3_c00274{left:453.333333pt;}
.x78_c00274{left:454.666667pt;}
.xde_c00274{left:455.626667pt;}
.x95_c00274{left:457.333333pt;}
.x42_c00274{left:458.293333pt;}
.x81_c00274{left:459.626667pt;}
.x70_c00274{left:461.333333pt;}
.x39_c00274{left:462.293333pt;}
.x4a_c00274{left:464.000000pt;}
.xe0_c00274{left:467.626667pt;}
.xd_c00274{left:470.293333pt;}
.x14_c00274{left:475.626667pt;}
.xb7_c00274{left:477.706667pt;}
.x71_c00274{left:479.626667pt;}
.xdf_c00274{left:481.333333pt;}
.x79_c00274{left:487.040000pt;}
.x82_c00274{left:488.373333pt;}
.x32_c00274{left:489.706667pt;}
.xac_c00274{left:492.000000pt;}
.x28_c00274{left:493.133333pt;}
.xe4_c00274{left:496.960000pt;}
.x69_c00274{left:498.666667pt;}
.x5e_c00274{left:499.626667pt;}
.x15_c00274{left:502.093333pt;}
.x4b_c00274{left:504.000000pt;}
.x9c_c00274{left:506.293333pt;}
.x1e_c00274{left:508.000000pt;}
.xea_c00274{left:509.706667pt;}
.xcb_c00274{left:512.000000pt;}
.x8a_c00274{left:513.333333pt;}
.xe5_c00274{left:514.293333pt;}
.x72_c00274{left:516.373333pt;}
.x3a_c00274{left:517.706667pt;}
.x6_c00274{left:521.133333pt;}
.x16_c00274{left:523.426667pt;}
.x1f_c00274{left:526.666667pt;}
.xe1_c00274{left:530.666667pt;}
.x43_c00274{left:531.800000pt;}
.x53_c00274{left:534.666667pt;}
.x17_c00274{left:536.373333pt;}
.xb2_c00274{left:540.000000pt;}
.x5f_c00274{left:541.333333pt;}
.x96_c00274{left:544.000000pt;}
.x29_c00274{left:547.426667pt;}
.x33_c00274{left:552.000000pt;}
.xad_c00274{left:556.960000pt;}
.xbd_c00274{left:560.000000pt;}
.xa0_c00274{left:561.333333pt;}
.xa5_c00274{left:562.466667pt;}
.x73_c00274{left:565.706667pt;}
.x60_c00274{left:566.666667pt;}
.x44_c00274{left:570.666667pt;}
.xeb_c00274{left:572.373333pt;}
.x2a_c00274{left:575.040000pt;}
.x4c_c00274{left:576.000000pt;}
.x20_c00274{left:579.626667pt;}
.x8b_c00274{left:582.666667pt;}
.x83_c00274{left:585.333333pt;}
.x7a_c00274{left:587.040000pt;}
.x34_c00274{left:589.706667pt;}
.xb8_c00274{left:590.666667pt;}
.x3b_c00274{left:592.960000pt;}
.x54_c00274{left:595.040000pt;}
.x2b_c00274{left:596.960000pt;}
.xa6_c00274{left:598.666667pt;}
.xcf_c00274{left:600.000000pt;}
.x6a_c00274{left:602.666667pt;}
.xb3_c00274{left:604.000000pt;}
.x97_c00274{left:604.960000pt;}
.x2c_c00274{left:607.626667pt;}
.x7b_c00274{left:611.040000pt;}
.x3c_c00274{left:614.293333pt;}
.xb4_c00274{left:617.333333pt;}
.x45_c00274{left:619.040000pt;}
.x21_c00274{left:622.466667pt;}
.x2_c00274{left:623.626667pt;}
.x4d_c00274{left:624.960000pt;}
.xe6_c00274{left:626.666667pt;}
.x55_c00274{left:628.373333pt;}
.xd0_c00274{left:630.293333pt;}
.xa7_c00274{left:632.960000pt;}
.xb5_c00274{left:634.293333pt;}
.xae_c00274{left:636.000000pt;}
.xec_c00274{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f43b71a5d3d7388031a3fd53.woff2')format("woff");}.ff1_c00275{font-family:ff1_c00275;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7f_c00275{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);}
.mde_c00275{transform:matrix(0.357607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357607,0.000000,0.000000,0.250000,0,0);}
.m62_c00275{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m56_c00275{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m0_c00275{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m82_c00275{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mab_c00275{transform:matrix(0.371429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371429,0.000000,0.000000,0.250000,0,0);}
.m63_c00275{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mba_c00275{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.m9d_c00275{transform:matrix(0.373950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373950,0.000000,0.000000,0.250000,0,0);}
.mdc_c00275{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.mbc_c00275{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.m88_c00275{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m57_c00275{transform:matrix(0.378067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378067,0.000000,0.000000,0.250000,0,0);}
.ma7_c00275{transform:matrix(0.378151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378151,0.000000,0.000000,0.250000,0,0);}
.m4f_c00275{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m89_c00275{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.ma3_c00275{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m55_c00275{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.ma6_c00275{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m8e_c00275{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m7d_c00275{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.me0_c00275{transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);}
.m74_c00275{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mdf_c00275{transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);}
.ma2_c00275{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m2d_c00275{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m2b_c00275{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_c00275{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m59_c00275{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m5b_c00275{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m26_c00275{transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);}
.m45_c00275{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m84_c00275{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m72_c00275{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.ma8_c00275{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.me8_c00275{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m53_c00275{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m9_c00275{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.ma5_c00275{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m4e_c00275{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m17_c00275{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m47_c00275{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m3_c00275{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m5c_c00275{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m39_c00275{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mb4_c00275{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.ma0_c00275{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m65_c00275{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m43_c00275{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m70_c00275{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m51_c00275{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.md1_c00275{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m1b_c00275{transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);}
.m27_c00275{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.mc8_c00275{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m9b_c00275{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.md5_c00275{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m93_c00275{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mb1_c00275{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m1a_c00275{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.mbd_c00275{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m99_c00275{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m83_c00275{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.ma9_c00275{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m6b_c00275{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.md0_c00275{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.me5_c00275{transform:matrix(0.443109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443109,0.000000,0.000000,0.250000,0,0);}
.mbb_c00275{transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);}
.m77_c00275{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.mad_c00275{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.m9a_c00275{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m9c_c00275{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.m3b_c00275{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m8b_c00275{transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);}
.mbe_c00275{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m6d_c00275{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m2a_c00275{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mea_c00275{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m96_c00275{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.mbf_c00275{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.m46_c00275{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m2c_c00275{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m85_c00275{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.mf2_c00275{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.mf5_c00275{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.maf_c00275{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m6a_c00275{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m8c_c00275{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.med_c00275{transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);}
.m54_c00275{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.mb8_c00275{transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);}
.m9e_c00275{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mca_c00275{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.mb9_c00275{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m6c_c00275{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m4c_c00275{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m8f_c00275{transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);}
.mec_c00275{transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);}
.m8_c00275{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m31_c00275{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m32_c00275{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.ma1_c00275{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mc_c00275{transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);}
.m87_c00275{transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);}
.mc0_c00275{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m78_c00275{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m41_c00275{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m79_c00275{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.mf8_c00275{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.m48_c00275{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m9f_c00275{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.mb5_c00275{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m6_c00275{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_c00275{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.maa_c00275{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m61_c00275{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m24_c00275{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.md3_c00275{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m90_c00275{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.me4_c00275{transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);}
.m3c_c00275{transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);}
.m3e_c00275{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m13_c00275{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mf_c00275{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m69_c00275{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m36_c00275{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m5d_c00275{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mda_c00275{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m1c_c00275{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m34_c00275{transform:matrix(0.521336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521336,0.000000,0.000000,0.250000,0,0);}
.m68_c00275{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.md6_c00275{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m6e_c00275{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.mc2_c00275{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.mb3_c00275{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mb0_c00275{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m50_c00275{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m28_c00275{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m22_c00275{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m4_c00275{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mf3_c00275{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.md2_c00275{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m7_c00275{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m7c_c00275{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m1f_c00275{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m1e_c00275{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.ma4_c00275{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mc9_c00275{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m40_c00275{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.me2_c00275{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m2_c00275{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m66_c00275{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mcf_c00275{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m11_c00275{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m52_c00275{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m16_c00275{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m5e_c00275{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m91_c00275{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m25_c00275{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m60_c00275{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m35_c00275{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m4a_c00275{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.me3_c00275{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m3d_c00275{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m33_c00275{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m3a_c00275{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m23_c00275{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m64_c00275{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);}
.mcd_c00275{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m12_c00275{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mae_c00275{transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);}
.m98_c00275{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mcc_c00275{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m75_c00275{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mf1_c00275{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m71_c00275{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.m19_c00275{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m37_c00275{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m67_c00275{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m7b_c00275{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m49_c00275{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.md4_c00275{transform:matrix(0.574675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574675,0.000000,0.000000,0.250000,0,0);}
.m14_c00275{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m73_c00275{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m7a_c00275{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m8a_c00275{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mdb_c00275{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.mb2_c00275{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m5f_c00275{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m8d_c00275{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m3f_c00275{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m86_c00275{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m2f_c00275{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m92_c00275{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mb7_c00275{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m29_c00275{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.mac_c00275{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);}
.m2e_c00275{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mc3_c00275{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.md7_c00275{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m42_c00275{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m81_c00275{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m58_c00275{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.me7_c00275{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m1d_c00275{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.me6_c00275{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m5a_c00275{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.md9_c00275{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mf0_c00275{transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);}
.mf6_c00275{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.mc6_c00275{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_c00275{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m4d_c00275{transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);}
.mcb_c00275{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m5_c00275{transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);}
.mc5_c00275{transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);}
.m44_c00275{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.md8_c00275{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m6f_c00275{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m30_c00275{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.ma_c00275{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.me9_c00275{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mc7_c00275{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mf9_c00275{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.m97_c00275{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.mc4_c00275{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.me1_c00275{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.mc1_c00275{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mdd_c00275{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);}
.mb6_c00275{transform:matrix(0.705929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705929,0.000000,0.000000,0.250000,0,0);}
.mf7_c00275{transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);}
.m7e_c00275{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m95_c00275{transform:matrix(0.721176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721176,0.000000,0.000000,0.250000,0,0);}
.mb_c00275{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m20_c00275{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m18_c00275{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m94_c00275{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mef_c00275{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m15_c00275{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mee_c00275{transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);}
.m21_c00275{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m38_c00275{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m76_c00275{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.mf4_c00275{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.mce_c00275{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.md_c00275{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.me_c00275{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.meb_c00275{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m80_c00275{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00275{vertical-align:-6.000000px;}
.v0_c00275{vertical-align:0.000000px;}
.ls1_c00275{letter-spacing:0.000000px;}
.ls0_c00275{letter-spacing:44.811895px;}
.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;}
}
.ws5_c00275{word-spacing:-52.765975px;}
.wsc_c00275{word-spacing:0.000000px;}
.ws0_c00275{word-spacing:3.952751px;}
.ws6_c00275{word-spacing:9.469629px;}
.ws3_c00275{word-spacing:10.524047px;}
.ws1_c00275{word-spacing:12.973687px;}
.wsb_c00275{word-spacing:13.611988px;}
.wsa_c00275{word-spacing:18.138913px;}
.ws8_c00275{word-spacing:21.638400px;}
.ws7_c00275{word-spacing:24.638400px;}
.ws2_c00275{word-spacing:25.293111px;}
.ws9_c00275{word-spacing:30.607622px;}
.ws4_c00275{word-spacing:53.931927px;}
._1_c00275{margin-left:-44.811895px;}
._2_c00275{width:13.035900px;}
._0_c00275{width:23.377407px;}
._5_c00275{width:27.969026px;}
._3_c00275{width:35.570880px;}
._4_c00275{width:38.570880px;}
.fc0_c00275{color:transparent;}
.fs7_c00275{font-size:3.420000px;}
.fs8_c00275{font-size:13.620000px;}
.fs4_c00275{font-size:18.720000px;}
.fs1_c00275{font-size:20.400000px;}
.fs3_c00275{font-size:25.500000px;}
.fs2_c00275{font-size:28.920000px;}
.fs5_c00275{font-size:32.340000px;}
.fs0_c00275{font-size:35.700000px;}
.fs6_c00275{font-size:39.120000px;}
.y0_c00275{bottom:0.000000px;}
.yb6_c00275{bottom:252.405000px;}
.yb2_c00275{bottom:268.905000px;}
.yb5_c00275{bottom:271.245000px;}
.yb0_c00275{bottom:271.905000px;}
.yb1_c00275{bottom:272.130000px;}
.yb3_c00275{bottom:272.325000px;}
.yb4_c00275{bottom:273.405000px;}
.yae_c00275{bottom:290.745000px;}
.yaa_c00275{bottom:290.970000px;}
.yab_c00275{bottom:291.630000px;}
.yad_c00275{bottom:291.825000px;}
.yaf_c00275{bottom:292.470000px;}
.yac_c00275{bottom:292.905000px;}
.ya6_c00275{bottom:307.905000px;}
.ya5_c00275{bottom:309.825000px;}
.ya2_c00275{bottom:310.050000px;}
.ya4_c00275{bottom:310.245000px;}
.ya0_c00275{bottom:310.905000px;}
.ya7_c00275{bottom:311.130000px;}
.ya8_c00275{bottom:311.325000px;}
.ya1_c00275{bottom:311.970000px;}
.ya3_c00275{bottom:312.405000px;}
.ya9_c00275{bottom:313.470000px;}
.y9a_c00275{bottom:329.745000px;}
.y9c_c00275{bottom:330.630000px;}
.y9b_c00275{bottom:331.905000px;}
.y9f_c00275{bottom:332.130000px;}
.y9e_c00275{bottom:332.970000px;}
.y9d_c00275{bottom:333.405000px;}
.y98_c00275{bottom:349.245000px;}
.y95_c00275{bottom:350.325000px;}
.y96_c00275{bottom:350.745000px;}
.y94_c00275{bottom:351.405000px;}
.y99_c00275{bottom:351.825000px;}
.y97_c00275{bottom:352.905000px;}
.y93_c00275{bottom:370.245000px;}
.y8e_c00275{bottom:370.470000px;}
.y8d_c00275{bottom:370.905000px;}
.y92_c00275{bottom:371.130000px;}
.y90_c00275{bottom:371.325000px;}
.y91_c00275{bottom:371.970000px;}
.y8f_c00275{bottom:372.405000px;}
.y88_c00275{bottom:387.405000px;}
.y86_c00275{bottom:388.245000px;}
.y8a_c00275{bottom:389.745000px;}
.y89_c00275{bottom:390.405000px;}
.y8c_c00275{bottom:390.630000px;}
.y8b_c00275{bottom:391.470000px;}
.y87_c00275{bottom:391.905000px;}
.y83_c00275{bottom:406.905000px;}
.y85_c00275{bottom:409.245000px;}
.y81_c00275{bottom:410.130000px;}
.y82_c00275{bottom:410.325000px;}
.y84_c00275{bottom:410.970000px;}
.y80_c00275{bottom:411.405000px;}
.y7b_c00275{bottom:428.745000px;}
.y7c_c00275{bottom:429.630000px;}
.y7f_c00275{bottom:429.825000px;}
.y7d_c00275{bottom:430.905000px;}
.y7e_c00275{bottom:431.970000px;}
.y78_c00275{bottom:447.405000px;}
.y7a_c00275{bottom:448.245000px;}
.y79_c00275{bottom:450.405000px;}
.y74_c00275{bottom:466.905000px;}
.y76_c00275{bottom:467.745000px;}
.y77_c00275{bottom:469.905000px;}
.y73_c00275{bottom:470.130000px;}
.y75_c00275{bottom:471.405000px;}
.y72_c00275{bottom:487.245000px;}
.y6d_c00275{bottom:488.745000px;}
.y70_c00275{bottom:489.405000px;}
.y71_c00275{bottom:489.630000px;}
.y6e_c00275{bottom:489.825000px;}
.y6f_c00275{bottom:490.470000px;}
.y6c_c00275{bottom:490.905000px;}
.y68_c00275{bottom:508.245000px;}
.y69_c00275{bottom:509.130000px;}
.y6b_c00275{bottom:509.325000px;}
.y67_c00275{bottom:510.405000px;}
.y6a_c00275{bottom:511.470000px;}
.y65_c00275{bottom:527.745000px;}
.y66_c00275{bottom:528.825000px;}
.y64_c00275{bottom:529.905000px;}
.y5f_c00275{bottom:546.405000px;}
.y61_c00275{bottom:547.245000px;}
.y5e_c00275{bottom:548.325000px;}
.y63_c00275{bottom:548.970000px;}
.y60_c00275{bottom:549.405000px;}
.y62_c00275{bottom:549.630000px;}
.y5c_c00275{bottom:566.745000px;}
.y5d_c00275{bottom:567.825000px;}
.y59_c00275{bottom:568.905000px;}
.y5b_c00275{bottom:569.970000px;}
.y5a_c00275{bottom:570.420000px;}
.yce_c00275{bottom:596.130000px;}
.ycd_c00275{bottom:597.195000px;}
.ycb_c00275{bottom:611.130000px;}
.ycc_c00275{bottom:612.195000px;}
.yc7_c00275{bottom:623.130000px;}
.yc8_c00275{bottom:623.550000px;}
.yca_c00275{bottom:624.630000px;}
.yc9_c00275{bottom:625.695000px;}
.yc3_c00275{bottom:642.195000px;}
.yc5_c00275{bottom:642.630000px;}
.yc4_c00275{bottom:643.695000px;}
.yc6_c00275{bottom:645.420000px;}
.yc0_c00275{bottom:654.630000px;}
.yc1_c00275{bottom:657.195000px;}
.yc2_c00275{bottom:657.630000px;}
.ybe_c00275{bottom:679.470000px;}
.ybf_c00275{bottom:680.550000px;}
.ybd_c00275{bottom:692.325000px;}
.ybc_c00275{bottom:693.630000px;}
.yba_c00275{bottom:694.050000px;}
.ybb_c00275{bottom:694.470000px;}
.yb9_c00275{bottom:695.550000px;}
.yb8_c00275{bottom:712.905000px;}
.yb7_c00275{bottom:715.050000px;}
.y57_c00275{bottom:743.745000px;}
.y55_c00275{bottom:745.050000px;}
.y56_c00275{bottom:745.905000px;}
.y58_c00275{bottom:746.130000px;}
.y50_c00275{bottom:762.405000px;}
.y53_c00275{bottom:763.245000px;}
.y52_c00275{bottom:763.470000px;}
.y4f_c00275{bottom:764.325000px;}
.y51_c00275{bottom:765.405000px;}
.y54_c00275{bottom:766.470000px;}
.y4d_c00275{bottom:782.745000px;}
.y4e_c00275{bottom:783.825000px;}
.y4b_c00275{bottom:784.245000px;}
.y49_c00275{bottom:784.905000px;}
.y4c_c00275{bottom:785.130000px;}
.y48_c00275{bottom:785.970000px;}
.y4a_c00275{bottom:786.405000px;}
.y42_c00275{bottom:801.405000px;}
.y45_c00275{bottom:802.245000px;}
.y43_c00275{bottom:802.470000px;}
.y46_c00275{bottom:804.405000px;}
.y44_c00275{bottom:804.630000px;}
.y47_c00275{bottom:805.470000px;}
.y41_c00275{bottom:820.905000px;}
.y3d_c00275{bottom:821.970000px;}
.y3b_c00275{bottom:822.180000px;}
.y3f_c00275{bottom:822.405000px;}
.y3c_c00275{bottom:823.245000px;}
.y40_c00275{bottom:824.325000px;}
.y3e_c00275{bottom:825.405000px;}
.y3a_c00275{bottom:842.745000px;}
.y39_c00275{bottom:843.630000px;}
.y38_c00275{bottom:844.470000px;}
.y37_c00275{bottom:844.905000px;}
.y35_c00275{bottom:862.245000px;}
.y36_c00275{bottom:863.130000px;}
.y34_c00275{bottom:864.405000px;}
.y32_c00275{bottom:880.680000px;}
.y30_c00275{bottom:881.745000px;}
.y33_c00275{bottom:883.470000px;}
.y31_c00275{bottom:883.905000px;}
.y2f_c00275{bottom:884.130000px;}
.y2d_c00275{bottom:901.245000px;}
.y2e_c00275{bottom:903.405000px;}
.y2c_c00275{bottom:904.470000px;}
.y29_c00275{bottom:920.745000px;}
.y27_c00275{bottom:921.825000px;}
.y2b_c00275{bottom:922.245000px;}
.y28_c00275{bottom:922.905000px;}
.y2a_c00275{bottom:924.405000px;}
.y26_c00275{bottom:942.825000px;}
.y25_c00275{bottom:943.470000px;}
.y24_c00275{bottom:943.905000px;}
.y23_c00275{bottom:960.825000px;}
.y21_c00275{bottom:961.245000px;}
.y20_c00275{bottom:962.130000px;}
.y1e_c00275{bottom:962.970000px;}
.y1f_c00275{bottom:963.405000px;}
.y22_c00275{bottom:964.470000px;}
.y1a_c00275{bottom:980.745000px;}
.y1d_c00275{bottom:981.630000px;}
.y1b_c00275{bottom:981.825000px;}
.y19_c00275{bottom:982.905000px;}
.y1c_c00275{bottom:983.970000px;}
.y17_c00275{bottom:1000.245000px;}
.y13_c00275{bottom:1001.130000px;}
.y16_c00275{bottom:1001.325000px;}
.y18_c00275{bottom:1001.970000px;}
.y14_c00275{bottom:1002.405000px;}
.y15_c00275{bottom:1003.470000px;}
.yf_c00275{bottom:1019.745000px;}
.y12_c00275{bottom:1020.630000px;}
.ye_c00275{bottom:1020.825000px;}
.y11_c00275{bottom:1021.470000px;}
.yd_c00275{bottom:1021.905000px;}
.y10_c00275{bottom:1022.970000px;}
.ya_c00275{bottom:1038.405000px;}
.yc_c00275{bottom:1039.245000px;}
.y8_c00275{bottom:1041.405000px;}
.yb_c00275{bottom:1041.630000px;}
.y9_c00275{bottom:1042.470000px;}
.y4_c00275{bottom:1058.745000px;}
.y7_c00275{bottom:1059.825000px;}
.y3_c00275{bottom:1060.905000px;}
.y6_c00275{bottom:1061.130000px;}
.y5_c00275{bottom:1061.970000px;}
.y1_c00275{bottom:1097.745000px;}
.y2_c00275{bottom:1099.050000px;}
.h8_c00275{height:4.206533px;}
.h9_c00275{height:16.752334px;}
.h5_c00275{height:23.025234px;}
.h2_c00275{height:25.091602px;}
.h4_c00275{height:31.364502px;}
.h3_c00275{height:35.571035px;}
.h6_c00275{height:39.777568px;}
.h1_c00275{height:43.910303px;}
.h7_c00275{height:48.116836px;}
.h0_c00275{height:1335.000000px;}
.w0_c00275{width:880.500000px;}
.x0_c00275{left:0.000000px;}
.xe9_c00275{left:150.420000px;}
.xad_c00275{left:151.500000px;}
.x3_c00275{left:152.580000px;}
.x1_c00275{left:154.500000px;}
.xe5_c00275{left:166.080000px;}
.xa1_c00275{left:167.145000px;}
.x76_c00275{left:169.500000px;}
.x103_c00275{left:171.000000px;}
.x8f_c00275{left:172.920000px;}
.xf1_c00275{left:174.000000px;}
.x37_c00275{left:181.920000px;}
.xba_c00275{left:183.420000px;}
.x2a_c00275{left:186.000000px;}
.xf8_c00275{left:189.000000px;}
.x105_c00275{left:191.580000px;}
.xc6_c00275{left:195.000000px;}
.xae_c00275{left:196.500000px;}
.xd4_c00275{left:199.500000px;}
.x81_c00275{left:201.000000px;}
.x77_c00275{left:202.080000px;}
.xe6_c00275{left:204.420000px;}
.x10f_c00275{left:205.500000px;}
.x12_c00275{left:207.420000px;}
.x20_c00275{left:208.500000px;}
.xfc_c00275{left:210.000000px;}
.x2b_c00275{left:211.500000px;}
.x5f_c00275{left:214.080000px;}
.xd5_c00275{left:216.000000px;}
.x55_c00275{left:217.080000px;}
.x97_c00275{left:219.000000px;}
.x4_c00275{left:220.500000px;}
.xb5_c00275{left:222.420000px;}
.xbb_c00275{left:225.420000px;}
.xdc_c00275{left:226.920000px;}
.x43_c00275{left:228.420000px;}
.xcb_c00275{left:229.500000px;}
.x6a_c00275{left:231.000000px;}
.xaf_c00275{left:232.920000px;}
.x82_c00275{left:235.080000px;}
.xa2_c00275{left:237.000000px;}
.x38_c00275{left:238.920000px;}
.x89_c00275{left:240.420000px;}
.xea_c00275{left:241.500000px;}
.x9e_c00275{left:244.500000px;}
.x13_c00275{left:245.580000px;}
.xcc_c00275{left:247.500000px;}
.x60_c00275{left:249.420000px;}
.x56_c00275{left:250.920000px;}
.x2c_c00275{left:253.080000px;}
.x98_c00275{left:255.000000px;}
.xa3_c00275{left:258.000000px;}
.x8a_c00275{left:259.500000px;}
.x78_c00275{left:264.000000px;}
.x83_c00275{left:265.080000px;}
.x21_c00275{left:267.420000px;}
.x5_c00275{left:268.920000px;}
.x6b_c00275{left:271.500000px;}
.xeb_c00275{left:274.500000px;}
.xbc_c00275{left:276.000000px;}
.x44_c00275{left:277.080000px;}
.xb6_c00275{left:279.420000px;}
.xf9_c00275{left:280.500000px;}
.xe3_c00275{left:282.000000px;}
.x2d_c00275{left:283.500000px;}
.xc1_c00275{left:287.580000px;}
.xa4_c00275{left:289.500000px;}
.x14_c00275{left:291.420000px;}
.x6_c00275{left:295.080000px;}
.xc7_c00275{left:296.580000px;}
.x57_c00275{left:298.920000px;}
.x61_c00275{left:301.080000px;}
.x4f_c00275{left:302.580000px;}
.xd6_c00275{left:304.500000px;}
.x45_c00275{left:305.580000px;}
.xa8_c00275{left:311.775000px;}
.xb7_c00275{left:316.920000px;}
.x15_c00275{left:318.000000px;}
.x62_c00275{left:319.920000px;}
.x46_c00275{left:325.920000px;}
.x90_c00275{left:327.420000px;}
.xfd_c00275{left:328.500000px;}
.x22_c00275{left:329.580000px;}
.x6c_c00275{left:331.920000px;}
.x73_c00275{left:334.500000px;}
.x109_c00275{left:336.000000px;}
.x58_c00275{left:337.920000px;}
.xc2_c00275{left:339.000000px;}
.x104_c00275{left:340.500000px;}
.xdd_c00275{left:341.580000px;}
.xcd_c00275{left:343.500000px;}
.x7_c00275{left:344.580000px;}
.x63_c00275{left:346.500000px;}
.x99_c00275{left:348.420000px;}
.xe7_c00275{left:351.000000px;}
.x47_c00275{left:352.920000px;}
.x2e_c00275{left:354.000000px;}
.x8b_c00275{left:355.080000px;}
.x16_c00275{left:357.000000px;}
.x84_c00275{left:358.500000px;}
.x74_c00275{left:361.500000px;}
.x8_c00275{left:363.000000px;}
.x39_c00275{left:366.420000px;}
.x59_c00275{left:367.500000px;}
.x79_c00275{left:368.580000px;}
.xf2_c00275{left:370.500000px;}
.x10a_c00275{left:372.000000px;}
.xde_c00275{left:373.920000px;}
.xfe_c00275{left:375.420000px;}
.x17_c00275{left:376.920000px;}
.x50_c00275{left:378.420000px;}
.x91_c00275{left:379.500000px;}
.x48_c00275{left:381.000000px;}
.xce_c00275{left:382.500000px;}
.x64_c00275{left:384.000000px;}
.x8c_c00275{left:385.080000px;}
.x9f_c00275{left:387.000000px;}
.x7a_c00275{left:388.500000px;}
.xf3_c00275{left:390.420000px;}
.xfa_c00275{left:391.920000px;}
.x3a_c00275{left:394.500000px;}
.x49_c00275{left:396.000000px;}
.x6d_c00275{left:397.500000px;}
.x2f_c00275{left:399.000000px;}
.x65_c00275{left:400.500000px;}
.x7b_c00275{left:402.000000px;}
.x18_c00275{left:403.500000px;}
.x9a_c00275{left:405.000000px;}
.x2_c00275{left:406.500000px;}
.x9_c00275{left:408.000000px;}
.x23_c00275{left:409.920000px;}
.x3b_c00275{left:411.000000px;}
.x101_c00275{left:412.500000px;}
.xc3_c00275{left:414.000000px;}
.xb0_c00275{left:415.500000px;}
.x5a_c00275{left:417.420000px;}
.xd7_c00275{left:418.920000px;}
.xcf_c00275{left:422.580000px;}
.xa_c00275{left:424.500000px;}
.x30_c00275{left:426.855000px;}
.xb8_c00275{left:429.000000px;}
.xbd_c00275{left:430.500000px;}
.xa5_c00275{left:432.000000px;}
.x4a_c00275{left:436.920000px;}
.x6e_c00275{left:438.420000px;}
.xd0_c00275{left:439.920000px;}
.x75_c00275{left:441.420000px;}
.xa9_c00275{left:445.500000px;}
.x24_c00275{left:446.580000px;}
.x92_c00275{left:448.920000px;}
.xa0_c00275{left:450.000000px;}
.xdf_c00275{left:451.500000px;}
.x19_c00275{left:453.420000px;}
.xb1_c00275{left:456.000000px;}
.x102_c00275{left:457.080000px;}
.x3c_c00275{left:459.000000px;}
.xe4_c00275{left:460.920000px;}
.x51_c00275{left:465.000000px;}
.xd1_c00275{left:466.920000px;}
.xec_c00275{left:468.000000px;}
.x85_c00275{left:470.580000px;}
.x31_c00275{left:472.500000px;}
.x66_c00275{left:474.000000px;}
.x108_c00275{left:475.500000px;}
.xb_c00275{left:477.000000px;}
.x3d_c00275{left:478.500000px;}
.x10b_c00275{left:480.000000px;}
.xc4_c00275{left:483.000000px;}
.x5b_c00275{left:484.920000px;}
.x7c_c00275{left:487.920000px;}
.xed_c00275{left:490.500000px;}
.xf4_c00275{left:491.580000px;}
.x1a_c00275{left:493.500000px;}
.xd8_c00275{left:494.580000px;}
.xc_c00275{left:496.920000px;}
.x8d_c00275{left:499.500000px;}
.xaa_c00275{left:501.000000px;}
.x32_c00275{left:503.580000px;}
.x3e_c00275{left:505.080000px;}
.xbe_c00275{left:508.080000px;}
.x1b_c00275{left:510.000000px;}
.x67_c00275{left:513.000000px;}
.xd2_c00275{left:514.500000px;}
.xd9_c00275{left:516.420000px;}
.x25_c00275{left:520.920000px;}
.x1c_c00275{left:522.000000px;}
.xb2_c00275{left:527.145000px;}
.x6f_c00275{left:529.500000px;}
.xff_c00275{left:531.000000px;}
.x8e_c00275{left:532.500000px;}
.xd_c00275{left:535.920000px;}
.x3f_c00275{left:537.000000px;}
.x7d_c00275{left:538.500000px;}
.x4b_c00275{left:541.500000px;}
.x52_c00275{left:542.580000px;}
.xe0_c00275{left:547.500000px;}
.x5c_c00275{left:550.920000px;}
.x93_c00275{left:552.000000px;}
.x68_c00275{left:555.000000px;}
.xbf_c00275{left:556.500000px;}
.x7e_c00275{left:558.000000px;}
.x40_c00275{left:559.920000px;}
.x53_c00275{left:561.000000px;}
.xda_c00275{left:562.920000px;}
.xc8_c00275{left:565.500000px;}
.x4c_c00275{left:568.500000px;}
.x26_c00275{left:570.000000px;}
.x86_c00275{left:571.080000px;}
.xee_c00275{left:573.000000px;}
.x1d_c00275{left:574.080000px;}
.xc5_c00275{left:577.080000px;}
.x9b_c00275{left:579.000000px;}
.xab_c00275{left:580.080000px;}
.x94_c00275{left:585.000000px;}
.x5d_c00275{left:586.500000px;}
.x10c_c00275{left:588.000000px;}
.x27_c00275{left:589.080000px;}
.x107_c00275{left:592.500000px;}
.xfb_c00275{left:594.000000px;}
.xe8_c00275{left:595.920000px;}
.x70_c00275{left:597.000000px;}
.xe1_c00275{left:600.420000px;}
.x33_c00275{left:601.500000px;}
.x87_c00275{left:604.500000px;}
.xc9_c00275{left:606.000000px;}
.xe_c00275{left:607.080000px;}
.xac_c00275{left:609.000000px;}
.xd3_c00275{left:610.080000px;}
.x71_c00275{left:613.500000px;}
.x41_c00275{left:615.420000px;}
.x9c_c00275{left:616.500000px;}
.xf5_c00275{left:619.500000px;}
.x106_c00275{left:621.420000px;}
.x95_c00275{left:623.580000px;}
.x10d_c00275{left:625.500000px;}
.x69_c00275{left:627.000000px;}
.xef_c00275{left:628.500000px;}
.x72_c00275{left:629.580000px;}
.x34_c00275{left:632.580000px;}
.x28_c00275{left:634.920000px;}
.x7f_c00275{left:636.000000px;}
.x88_c00275{left:639.000000px;}
.xdb_c00275{left:640.920000px;}
.xf_c00275{left:642.000000px;}
.xb3_c00275{left:643.500000px;}
.x5e_c00275{left:655.500000px;}
.x10e_c00275{left:657.420000px;}
.x42_c00275{left:658.500000px;}
.x80_c00275{left:661.080000px;}
.x10_c00275{left:663.420000px;}
.xa6_c00275{left:664.500000px;}
.xca_c00275{left:666.000000px;}
.xf6_c00275{left:667.500000px;}
.xb9_c00275{left:670.500000px;}
.x4d_c00275{left:675.000000px;}
.x54_c00275{left:676.500000px;}
.xb4_c00275{left:681.000000px;}
.xc0_c00275{left:682.500000px;}
.xe2_c00275{left:684.000000px;}
.xf7_c00275{left:685.500000px;}
.x1e_c00275{left:687.000000px;}
.x11_c00275{left:690.420000px;}
.x110_c00275{left:691.500000px;}
.x35_c00275{left:693.420000px;}
.xa7_c00275{left:697.080000px;}
.x96_c00275{left:702.855000px;}
.xf0_c00275{left:703.920000px;}
.x29_c00275{left:705.000000px;}
.x100_c00275{left:708.420000px;}
.x1f_c00275{left:709.920000px;}
.x9d_c00275{left:716.580000px;}
.x36_c00275{left:718.080000px;}
.x4e_c00275{left:720.000000px;}
@media print{
.v1_c00275{vertical-align:-5.333333pt;}
.v0_c00275{vertical-align:0.000000pt;}
.ls1_c00275{letter-spacing:0.000000pt;}
.ls0_c00275{letter-spacing:39.832796pt;}
.ws5_c00275{word-spacing:-46.903089pt;}
.wsc_c00275{word-spacing:0.000000pt;}
.ws0_c00275{word-spacing:3.513556pt;}
.ws6_c00275{word-spacing:8.417448pt;}
.ws3_c00275{word-spacing:9.354708pt;}
.ws1_c00275{word-spacing:11.532166pt;}
.wsb_c00275{word-spacing:12.099545pt;}
.wsa_c00275{word-spacing:16.123479pt;}
.ws8_c00275{word-spacing:19.234133pt;}
.ws7_c00275{word-spacing:21.900800pt;}
.ws2_c00275{word-spacing:22.482765pt;}
.ws9_c00275{word-spacing:27.206775pt;}
.ws4_c00275{word-spacing:47.939491pt;}
._1_c00275{margin-left:-39.832796pt;}
._2_c00275{width:11.587467pt;}
._0_c00275{width:20.779918pt;}
._5_c00275{width:24.861357pt;}
._3_c00275{width:31.618560pt;}
._4_c00275{width:34.285227pt;}
.fs7_c00275{font-size:3.040000pt;}
.fs8_c00275{font-size:12.106667pt;}
.fs4_c00275{font-size:16.640000pt;}
.fs1_c00275{font-size:18.133333pt;}
.fs3_c00275{font-size:22.666667pt;}
.fs2_c00275{font-size:25.706667pt;}
.fs5_c00275{font-size:28.746667pt;}
.fs0_c00275{font-size:31.733333pt;}
.fs6_c00275{font-size:34.773333pt;}
.y0_c00275{bottom:0.000000pt;}
.yb6_c00275{bottom:224.360000pt;}
.yb2_c00275{bottom:239.026667pt;}
.yb5_c00275{bottom:241.106667pt;}
.yb0_c00275{bottom:241.693333pt;}
.yb1_c00275{bottom:241.893333pt;}
.yb3_c00275{bottom:242.066667pt;}
.yb4_c00275{bottom:243.026667pt;}
.yae_c00275{bottom:258.440000pt;}
.yaa_c00275{bottom:258.640000pt;}
.yab_c00275{bottom:259.226667pt;}
.yad_c00275{bottom:259.400000pt;}
.yaf_c00275{bottom:259.973333pt;}
.yac_c00275{bottom:260.360000pt;}
.ya6_c00275{bottom:273.693333pt;}
.ya5_c00275{bottom:275.400000pt;}
.ya2_c00275{bottom:275.600000pt;}
.ya4_c00275{bottom:275.773333pt;}
.ya0_c00275{bottom:276.360000pt;}
.ya7_c00275{bottom:276.560000pt;}
.ya8_c00275{bottom:276.733333pt;}
.ya1_c00275{bottom:277.306667pt;}
.ya3_c00275{bottom:277.693333pt;}
.ya9_c00275{bottom:278.640000pt;}
.y9a_c00275{bottom:293.106667pt;}
.y9c_c00275{bottom:293.893333pt;}
.y9b_c00275{bottom:295.026667pt;}
.y9f_c00275{bottom:295.226667pt;}
.y9e_c00275{bottom:295.973333pt;}
.y9d_c00275{bottom:296.360000pt;}
.y98_c00275{bottom:310.440000pt;}
.y95_c00275{bottom:311.400000pt;}
.y96_c00275{bottom:311.773333pt;}
.y94_c00275{bottom:312.360000pt;}
.y99_c00275{bottom:312.733333pt;}
.y97_c00275{bottom:313.693333pt;}
.y93_c00275{bottom:329.106667pt;}
.y8e_c00275{bottom:329.306667pt;}
.y8d_c00275{bottom:329.693333pt;}
.y92_c00275{bottom:329.893333pt;}
.y90_c00275{bottom:330.066667pt;}
.y91_c00275{bottom:330.640000pt;}
.y8f_c00275{bottom:331.026667pt;}
.y88_c00275{bottom:344.360000pt;}
.y86_c00275{bottom:345.106667pt;}
.y8a_c00275{bottom:346.440000pt;}
.y89_c00275{bottom:347.026667pt;}
.y8c_c00275{bottom:347.226667pt;}
.y8b_c00275{bottom:347.973333pt;}
.y87_c00275{bottom:348.360000pt;}
.y83_c00275{bottom:361.693333pt;}
.y85_c00275{bottom:363.773333pt;}
.y81_c00275{bottom:364.560000pt;}
.y82_c00275{bottom:364.733333pt;}
.y84_c00275{bottom:365.306667pt;}
.y80_c00275{bottom:365.693333pt;}
.y7b_c00275{bottom:381.106667pt;}
.y7c_c00275{bottom:381.893333pt;}
.y7f_c00275{bottom:382.066667pt;}
.y7d_c00275{bottom:383.026667pt;}
.y7e_c00275{bottom:383.973333pt;}
.y78_c00275{bottom:397.693333pt;}
.y7a_c00275{bottom:398.440000pt;}
.y79_c00275{bottom:400.360000pt;}
.y74_c00275{bottom:415.026667pt;}
.y76_c00275{bottom:415.773333pt;}
.y77_c00275{bottom:417.693333pt;}
.y73_c00275{bottom:417.893333pt;}
.y75_c00275{bottom:419.026667pt;}
.y72_c00275{bottom:433.106667pt;}
.y6d_c00275{bottom:434.440000pt;}
.y70_c00275{bottom:435.026667pt;}
.y71_c00275{bottom:435.226667pt;}
.y6e_c00275{bottom:435.400000pt;}
.y6f_c00275{bottom:435.973333pt;}
.y6c_c00275{bottom:436.360000pt;}
.y68_c00275{bottom:451.773333pt;}
.y69_c00275{bottom:452.560000pt;}
.y6b_c00275{bottom:452.733333pt;}
.y67_c00275{bottom:453.693333pt;}
.y6a_c00275{bottom:454.640000pt;}
.y65_c00275{bottom:469.106667pt;}
.y66_c00275{bottom:470.066667pt;}
.y64_c00275{bottom:471.026667pt;}
.y5f_c00275{bottom:485.693333pt;}
.y61_c00275{bottom:486.440000pt;}
.y5e_c00275{bottom:487.400000pt;}
.y63_c00275{bottom:487.973333pt;}
.y60_c00275{bottom:488.360000pt;}
.y62_c00275{bottom:488.560000pt;}
.y5c_c00275{bottom:503.773333pt;}
.y5d_c00275{bottom:504.733333pt;}
.y59_c00275{bottom:505.693333pt;}
.y5b_c00275{bottom:506.640000pt;}
.y5a_c00275{bottom:507.040000pt;}
.yce_c00275{bottom:529.893333pt;}
.ycd_c00275{bottom:530.840000pt;}
.ycb_c00275{bottom:543.226667pt;}
.ycc_c00275{bottom:544.173333pt;}
.yc7_c00275{bottom:553.893333pt;}
.yc8_c00275{bottom:554.266667pt;}
.yca_c00275{bottom:555.226667pt;}
.yc9_c00275{bottom:556.173333pt;}
.yc3_c00275{bottom:570.840000pt;}
.yc5_c00275{bottom:571.226667pt;}
.yc4_c00275{bottom:572.173333pt;}
.yc6_c00275{bottom:573.706667pt;}
.yc0_c00275{bottom:581.893333pt;}
.yc1_c00275{bottom:584.173333pt;}
.yc2_c00275{bottom:584.560000pt;}
.ybe_c00275{bottom:603.973333pt;}
.ybf_c00275{bottom:604.933333pt;}
.ybd_c00275{bottom:615.400000pt;}
.ybc_c00275{bottom:616.560000pt;}
.yba_c00275{bottom:616.933333pt;}
.ybb_c00275{bottom:617.306667pt;}
.yb9_c00275{bottom:618.266667pt;}
.yb8_c00275{bottom:633.693333pt;}
.yb7_c00275{bottom:635.600000pt;}
.y57_c00275{bottom:661.106667pt;}
.y55_c00275{bottom:662.266667pt;}
.y56_c00275{bottom:663.026667pt;}
.y58_c00275{bottom:663.226667pt;}
.y50_c00275{bottom:677.693333pt;}
.y53_c00275{bottom:678.440000pt;}
.y52_c00275{bottom:678.640000pt;}
.y4f_c00275{bottom:679.400000pt;}
.y51_c00275{bottom:680.360000pt;}
.y54_c00275{bottom:681.306667pt;}
.y4d_c00275{bottom:695.773333pt;}
.y4e_c00275{bottom:696.733333pt;}
.y4b_c00275{bottom:697.106667pt;}
.y49_c00275{bottom:697.693333pt;}
.y4c_c00275{bottom:697.893333pt;}
.y48_c00275{bottom:698.640000pt;}
.y4a_c00275{bottom:699.026667pt;}
.y42_c00275{bottom:712.360000pt;}
.y45_c00275{bottom:713.106667pt;}
.y43_c00275{bottom:713.306667pt;}
.y46_c00275{bottom:715.026667pt;}
.y44_c00275{bottom:715.226667pt;}
.y47_c00275{bottom:715.973333pt;}
.y41_c00275{bottom:729.693333pt;}
.y3d_c00275{bottom:730.640000pt;}
.y3b_c00275{bottom:730.826667pt;}
.y3f_c00275{bottom:731.026667pt;}
.y3c_c00275{bottom:731.773333pt;}
.y40_c00275{bottom:732.733333pt;}
.y3e_c00275{bottom:733.693333pt;}
.y3a_c00275{bottom:749.106667pt;}
.y39_c00275{bottom:749.893333pt;}
.y38_c00275{bottom:750.640000pt;}
.y37_c00275{bottom:751.026667pt;}
.y35_c00275{bottom:766.440000pt;}
.y36_c00275{bottom:767.226667pt;}
.y34_c00275{bottom:768.360000pt;}
.y32_c00275{bottom:782.826667pt;}
.y30_c00275{bottom:783.773333pt;}
.y33_c00275{bottom:785.306667pt;}
.y31_c00275{bottom:785.693333pt;}
.y2f_c00275{bottom:785.893333pt;}
.y2d_c00275{bottom:801.106667pt;}
.y2e_c00275{bottom:803.026667pt;}
.y2c_c00275{bottom:803.973333pt;}
.y29_c00275{bottom:818.440000pt;}
.y27_c00275{bottom:819.400000pt;}
.y2b_c00275{bottom:819.773333pt;}
.y28_c00275{bottom:820.360000pt;}
.y2a_c00275{bottom:821.693333pt;}
.y26_c00275{bottom:838.066667pt;}
.y25_c00275{bottom:838.640000pt;}
.y24_c00275{bottom:839.026667pt;}
.y23_c00275{bottom:854.066667pt;}
.y21_c00275{bottom:854.440000pt;}
.y20_c00275{bottom:855.226667pt;}
.y1e_c00275{bottom:855.973333pt;}
.y1f_c00275{bottom:856.360000pt;}
.y22_c00275{bottom:857.306667pt;}
.y1a_c00275{bottom:871.773333pt;}
.y1d_c00275{bottom:872.560000pt;}
.y1b_c00275{bottom:872.733333pt;}
.y19_c00275{bottom:873.693333pt;}
.y1c_c00275{bottom:874.640000pt;}
.y17_c00275{bottom:889.106667pt;}
.y13_c00275{bottom:889.893333pt;}
.y16_c00275{bottom:890.066667pt;}
.y18_c00275{bottom:890.640000pt;}
.y14_c00275{bottom:891.026667pt;}
.y15_c00275{bottom:891.973333pt;}
.yf_c00275{bottom:906.440000pt;}
.y12_c00275{bottom:907.226667pt;}
.ye_c00275{bottom:907.400000pt;}
.y11_c00275{bottom:907.973333pt;}
.yd_c00275{bottom:908.360000pt;}
.y10_c00275{bottom:909.306667pt;}
.ya_c00275{bottom:923.026667pt;}
.yc_c00275{bottom:923.773333pt;}
.y8_c00275{bottom:925.693333pt;}
.yb_c00275{bottom:925.893333pt;}
.y9_c00275{bottom:926.640000pt;}
.y4_c00275{bottom:941.106667pt;}
.y7_c00275{bottom:942.066667pt;}
.y3_c00275{bottom:943.026667pt;}
.y6_c00275{bottom:943.226667pt;}
.y5_c00275{bottom:943.973333pt;}
.y1_c00275{bottom:975.773333pt;}
.y2_c00275{bottom:976.933333pt;}
.h8_c00275{height:3.739141pt;}
.h9_c00275{height:14.890964pt;}
.h5_c00275{height:20.466875pt;}
.h2_c00275{height:22.303646pt;}
.h4_c00275{height:27.879557pt;}
.h3_c00275{height:31.618698pt;}
.h6_c00275{height:35.357839pt;}
.h1_c00275{height:39.031380pt;}
.h7_c00275{height:42.770521pt;}
.h0_c00275{height:1186.666667pt;}
.w0_c00275{width:782.666667pt;}
.x0_c00275{left:0.000000pt;}
.xe9_c00275{left:133.706667pt;}
.xad_c00275{left:134.666667pt;}
.x3_c00275{left:135.626667pt;}
.x1_c00275{left:137.333333pt;}
.xe5_c00275{left:147.626667pt;}
.xa1_c00275{left:148.573333pt;}
.x76_c00275{left:150.666667pt;}
.x103_c00275{left:152.000000pt;}
.x8f_c00275{left:153.706667pt;}
.xf1_c00275{left:154.666667pt;}
.x37_c00275{left:161.706667pt;}
.xba_c00275{left:163.040000pt;}
.x2a_c00275{left:165.333333pt;}
.xf8_c00275{left:168.000000pt;}
.x105_c00275{left:170.293333pt;}
.xc6_c00275{left:173.333333pt;}
.xae_c00275{left:174.666667pt;}
.xd4_c00275{left:177.333333pt;}
.x81_c00275{left:178.666667pt;}
.x77_c00275{left:179.626667pt;}
.xe6_c00275{left:181.706667pt;}
.x10f_c00275{left:182.666667pt;}
.x12_c00275{left:184.373333pt;}
.x20_c00275{left:185.333333pt;}
.xfc_c00275{left:186.666667pt;}
.x2b_c00275{left:188.000000pt;}
.x5f_c00275{left:190.293333pt;}
.xd5_c00275{left:192.000000pt;}
.x55_c00275{left:192.960000pt;}
.x97_c00275{left:194.666667pt;}
.x4_c00275{left:196.000000pt;}
.xb5_c00275{left:197.706667pt;}
.xbb_c00275{left:200.373333pt;}
.xdc_c00275{left:201.706667pt;}
.x43_c00275{left:203.040000pt;}
.xcb_c00275{left:204.000000pt;}
.x6a_c00275{left:205.333333pt;}
.xaf_c00275{left:207.040000pt;}
.x82_c00275{left:208.960000pt;}
.xa2_c00275{left:210.666667pt;}
.x38_c00275{left:212.373333pt;}
.x89_c00275{left:213.706667pt;}
.xea_c00275{left:214.666667pt;}
.x9e_c00275{left:217.333333pt;}
.x13_c00275{left:218.293333pt;}
.xcc_c00275{left:220.000000pt;}
.x60_c00275{left:221.706667pt;}
.x56_c00275{left:223.040000pt;}
.x2c_c00275{left:224.960000pt;}
.x98_c00275{left:226.666667pt;}
.xa3_c00275{left:229.333333pt;}
.x8a_c00275{left:230.666667pt;}
.x78_c00275{left:234.666667pt;}
.x83_c00275{left:235.626667pt;}
.x21_c00275{left:237.706667pt;}
.x5_c00275{left:239.040000pt;}
.x6b_c00275{left:241.333333pt;}
.xeb_c00275{left:244.000000pt;}
.xbc_c00275{left:245.333333pt;}
.x44_c00275{left:246.293333pt;}
.xb6_c00275{left:248.373333pt;}
.xf9_c00275{left:249.333333pt;}
.xe3_c00275{left:250.666667pt;}
.x2d_c00275{left:252.000000pt;}
.xc1_c00275{left:255.626667pt;}
.xa4_c00275{left:257.333333pt;}
.x14_c00275{left:259.040000pt;}
.x6_c00275{left:262.293333pt;}
.xc7_c00275{left:263.626667pt;}
.x57_c00275{left:265.706667pt;}
.x61_c00275{left:267.626667pt;}
.x4f_c00275{left:268.960000pt;}
.xd6_c00275{left:270.666667pt;}
.x45_c00275{left:271.626667pt;}
.xa8_c00275{left:277.133333pt;}
.xb7_c00275{left:281.706667pt;}
.x15_c00275{left:282.666667pt;}
.x62_c00275{left:284.373333pt;}
.x46_c00275{left:289.706667pt;}
.x90_c00275{left:291.040000pt;}
.xfd_c00275{left:292.000000pt;}
.x22_c00275{left:292.960000pt;}
.x6c_c00275{left:295.040000pt;}
.x73_c00275{left:297.333333pt;}
.x109_c00275{left:298.666667pt;}
.x58_c00275{left:300.373333pt;}
.xc2_c00275{left:301.333333pt;}
.x104_c00275{left:302.666667pt;}
.xdd_c00275{left:303.626667pt;}
.xcd_c00275{left:305.333333pt;}
.x7_c00275{left:306.293333pt;}
.x63_c00275{left:308.000000pt;}
.x99_c00275{left:309.706667pt;}
.xe7_c00275{left:312.000000pt;}
.x47_c00275{left:313.706667pt;}
.x2e_c00275{left:314.666667pt;}
.x8b_c00275{left:315.626667pt;}
.x16_c00275{left:317.333333pt;}
.x84_c00275{left:318.666667pt;}
.x74_c00275{left:321.333333pt;}
.x8_c00275{left:322.666667pt;}
.x39_c00275{left:325.706667pt;}
.x59_c00275{left:326.666667pt;}
.x79_c00275{left:327.626667pt;}
.xf2_c00275{left:329.333333pt;}
.x10a_c00275{left:330.666667pt;}
.xde_c00275{left:332.373333pt;}
.xfe_c00275{left:333.706667pt;}
.x17_c00275{left:335.040000pt;}
.x50_c00275{left:336.373333pt;}
.x91_c00275{left:337.333333pt;}
.x48_c00275{left:338.666667pt;}
.xce_c00275{left:340.000000pt;}
.x64_c00275{left:341.333333pt;}
.x8c_c00275{left:342.293333pt;}
.x9f_c00275{left:344.000000pt;}
.x7a_c00275{left:345.333333pt;}
.xf3_c00275{left:347.040000pt;}
.xfa_c00275{left:348.373333pt;}
.x3a_c00275{left:350.666667pt;}
.x49_c00275{left:352.000000pt;}
.x6d_c00275{left:353.333333pt;}
.x2f_c00275{left:354.666667pt;}
.x65_c00275{left:356.000000pt;}
.x7b_c00275{left:357.333333pt;}
.x18_c00275{left:358.666667pt;}
.x9a_c00275{left:360.000000pt;}
.x2_c00275{left:361.333333pt;}
.x9_c00275{left:362.666667pt;}
.x23_c00275{left:364.373333pt;}
.x3b_c00275{left:365.333333pt;}
.x101_c00275{left:366.666667pt;}
.xc3_c00275{left:368.000000pt;}
.xb0_c00275{left:369.333333pt;}
.x5a_c00275{left:371.040000pt;}
.xd7_c00275{left:372.373333pt;}
.xcf_c00275{left:375.626667pt;}
.xa_c00275{left:377.333333pt;}
.x30_c00275{left:379.426667pt;}
.xb8_c00275{left:381.333333pt;}
.xbd_c00275{left:382.666667pt;}
.xa5_c00275{left:384.000000pt;}
.x4a_c00275{left:388.373333pt;}
.x6e_c00275{left:389.706667pt;}
.xd0_c00275{left:391.040000pt;}
.x75_c00275{left:392.373333pt;}
.xa9_c00275{left:396.000000pt;}
.x24_c00275{left:396.960000pt;}
.x92_c00275{left:399.040000pt;}
.xa0_c00275{left:400.000000pt;}
.xdf_c00275{left:401.333333pt;}
.x19_c00275{left:403.040000pt;}
.xb1_c00275{left:405.333333pt;}
.x102_c00275{left:406.293333pt;}
.x3c_c00275{left:408.000000pt;}
.xe4_c00275{left:409.706667pt;}
.x51_c00275{left:413.333333pt;}
.xd1_c00275{left:415.040000pt;}
.xec_c00275{left:416.000000pt;}
.x85_c00275{left:418.293333pt;}
.x31_c00275{left:420.000000pt;}
.x66_c00275{left:421.333333pt;}
.x108_c00275{left:422.666667pt;}
.xb_c00275{left:424.000000pt;}
.x3d_c00275{left:425.333333pt;}
.x10b_c00275{left:426.666667pt;}
.xc4_c00275{left:429.333333pt;}
.x5b_c00275{left:431.040000pt;}
.x7c_c00275{left:433.706667pt;}
.xed_c00275{left:436.000000pt;}
.xf4_c00275{left:436.960000pt;}
.x1a_c00275{left:438.666667pt;}
.xd8_c00275{left:439.626667pt;}
.xc_c00275{left:441.706667pt;}
.x8d_c00275{left:444.000000pt;}
.xaa_c00275{left:445.333333pt;}
.x32_c00275{left:447.626667pt;}
.x3e_c00275{left:448.960000pt;}
.xbe_c00275{left:451.626667pt;}
.x1b_c00275{left:453.333333pt;}
.x67_c00275{left:456.000000pt;}
.xd2_c00275{left:457.333333pt;}
.xd9_c00275{left:459.040000pt;}
.x25_c00275{left:463.040000pt;}
.x1c_c00275{left:464.000000pt;}
.xb2_c00275{left:468.573333pt;}
.x6f_c00275{left:470.666667pt;}
.xff_c00275{left:472.000000pt;}
.x8e_c00275{left:473.333333pt;}
.xd_c00275{left:476.373333pt;}
.x3f_c00275{left:477.333333pt;}
.x7d_c00275{left:478.666667pt;}
.x4b_c00275{left:481.333333pt;}
.x52_c00275{left:482.293333pt;}
.xe0_c00275{left:486.666667pt;}
.x5c_c00275{left:489.706667pt;}
.x93_c00275{left:490.666667pt;}
.x68_c00275{left:493.333333pt;}
.xbf_c00275{left:494.666667pt;}
.x7e_c00275{left:496.000000pt;}
.x40_c00275{left:497.706667pt;}
.x53_c00275{left:498.666667pt;}
.xda_c00275{left:500.373333pt;}
.xc8_c00275{left:502.666667pt;}
.x4c_c00275{left:505.333333pt;}
.x26_c00275{left:506.666667pt;}
.x86_c00275{left:507.626667pt;}
.xee_c00275{left:509.333333pt;}
.x1d_c00275{left:510.293333pt;}
.xc5_c00275{left:512.960000pt;}
.x9b_c00275{left:514.666667pt;}
.xab_c00275{left:515.626667pt;}
.x94_c00275{left:520.000000pt;}
.x5d_c00275{left:521.333333pt;}
.x10c_c00275{left:522.666667pt;}
.x27_c00275{left:523.626667pt;}
.x107_c00275{left:526.666667pt;}
.xfb_c00275{left:528.000000pt;}
.xe8_c00275{left:529.706667pt;}
.x70_c00275{left:530.666667pt;}
.xe1_c00275{left:533.706667pt;}
.x33_c00275{left:534.666667pt;}
.x87_c00275{left:537.333333pt;}
.xc9_c00275{left:538.666667pt;}
.xe_c00275{left:539.626667pt;}
.xac_c00275{left:541.333333pt;}
.xd3_c00275{left:542.293333pt;}
.x71_c00275{left:545.333333pt;}
.x41_c00275{left:547.040000pt;}
.x9c_c00275{left:548.000000pt;}
.xf5_c00275{left:550.666667pt;}
.x106_c00275{left:552.373333pt;}
.x95_c00275{left:554.293333pt;}
.x10d_c00275{left:556.000000pt;}
.x69_c00275{left:557.333333pt;}
.xef_c00275{left:558.666667pt;}
.x72_c00275{left:559.626667pt;}
.x34_c00275{left:562.293333pt;}
.x28_c00275{left:564.373333pt;}
.x7f_c00275{left:565.333333pt;}
.x88_c00275{left:568.000000pt;}
.xdb_c00275{left:569.706667pt;}
.xf_c00275{left:570.666667pt;}
.xb3_c00275{left:572.000000pt;}
.x5e_c00275{left:582.666667pt;}
.x10e_c00275{left:584.373333pt;}
.x42_c00275{left:585.333333pt;}
.x80_c00275{left:587.626667pt;}
.x10_c00275{left:589.706667pt;}
.xa6_c00275{left:590.666667pt;}
.xca_c00275{left:592.000000pt;}
.xf6_c00275{left:593.333333pt;}
.xb9_c00275{left:596.000000pt;}
.x4d_c00275{left:600.000000pt;}
.x54_c00275{left:601.333333pt;}
.xb4_c00275{left:605.333333pt;}
.xc0_c00275{left:606.666667pt;}
.xe2_c00275{left:608.000000pt;}
.xf7_c00275{left:609.333333pt;}
.x1e_c00275{left:610.666667pt;}
.x11_c00275{left:613.706667pt;}
.x110_c00275{left:614.666667pt;}
.x35_c00275{left:616.373333pt;}
.xa7_c00275{left:619.626667pt;}
.x96_c00275{left:624.760000pt;}
.xf0_c00275{left:625.706667pt;}
.x29_c00275{left:626.666667pt;}
.x100_c00275{left:629.706667pt;}
.x1f_c00275{left:631.040000pt;}
.x9d_c00275{left:636.960000pt;}
.x36_c00275{left:638.293333pt;}
.x4e_c00275{left:640.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_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_1e35c82a334dac7d129ae3b4.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mab_c00276{transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);}
.m1b_c00276{transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);}
.mc5_c00276{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m1d_c00276{transform:matrix(0.348926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348926,0.000000,0.000000,0.250000,0,0);}
.m8d_c00276{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m39_c00276{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m9d_c00276{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m80_c00276{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.maa_c00276{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m20_c00276{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m97_c00276{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00276{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m59_c00276{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.mdb_c00276{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m1c_c00276{transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);}
.m8f_c00276{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m9f_c00276{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m1f_c00276{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m86_c00276{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mb8_c00276{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.ma8_c00276{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.mc0_c00276{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m4d_c00276{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m73_c00276{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_c00276{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m2f_c00276{transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);}
.mda_c00276{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mcd_c00276{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m94_c00276{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m6b_c00276{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mef_c00276{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m87_c00276{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m17_c00276{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m7b_c00276{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.me8_c00276{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m8a_c00276{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.mbf_c00276{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m69_c00276{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m84_c00276{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.mee_c00276{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mf2_c00276{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.mc9_c00276{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.ma0_c00276{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.ma5_c00276{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m81_c00276{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m98_c00276{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m3a_c00276{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m63_c00276{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.mae_c00276{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.md8_c00276{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m82_c00276{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m4a_c00276{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m18_c00276{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.me3_c00276{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.mc8_c00276{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m2e_c00276{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.med_c00276{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m4e_c00276{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m7a_c00276{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.md0_c00276{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m6f_c00276{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m66_c00276{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.ma7_c00276{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m8b_c00276{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m22_c00276{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.maf_c00276{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mf1_c00276{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m30_c00276{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m6c_c00276{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.m27_c00276{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m43_c00276{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m55_c00276{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.md1_c00276{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m83_c00276{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.ma1_c00276{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m85_c00276{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mea_c00276{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.mb7_c00276{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.mca_c00276{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.m8c_c00276{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.me9_c00276{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m57_c00276{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.ma3_c00276{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.m34_c00276{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.md7_c00276{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.ma4_c00276{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.mdf_c00276{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.mbb_c00276{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m5f_c00276{transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);}
.m9c_c00276{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m42_c00276{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.mdd_c00276{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mb4_c00276{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m35_c00276{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m75_c00276{transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);}
.mb9_c00276{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mf5_c00276{transform:matrix(0.461345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461345,0.000000,0.000000,0.250000,0,0);}
.m8e_c00276{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m71_c00276{transform:matrix(0.461765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461765,0.000000,0.000000,0.250000,0,0);}
.ma6_c00276{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.mde_c00276{transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);}
.mc3_c00276{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.me0_c00276{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.mc1_c00276{transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);}
.mbc_c00276{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m9a_c00276{transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);}
.m24_c00276{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m7d_c00276{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m3e_c00276{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mdc_c00276{transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);}
.m23_c00276{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m37_c00276{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m1a_c00276{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m52_c00276{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mad_c00276{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m36_c00276{transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);}
.m25_c00276{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m1_c00276{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mc2_c00276{transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);}
.m76_c00276{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m60_c00276{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m9b_c00276{transform:matrix(0.494958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494958,0.000000,0.000000,0.250000,0,0);}
.m78_c00276{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m49_c00276{transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);}
.m61_c00276{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);}
.me6_c00276{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m4b_c00276{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m90_c00276{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mec_c00276{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m56_c00276{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.md9_c00276{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m48_c00276{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mba_c00276{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m38_c00276{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m14_c00276{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m54_c00276{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m51_c00276{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.md6_c00276{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.me1_c00276{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.mb2_c00276{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m13_c00276{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m9_c00276{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.md3_c00276{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mb5_c00276{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.me_c00276{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m1e_c00276{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m79_c00276{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mb_c00276{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mf4_c00276{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m89_c00276{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m2_c00276{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mc6_c00276{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mce_c00276{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m6a_c00276{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m10_c00276{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mb3_c00276{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m3c_c00276{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m33_c00276{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m4c_c00276{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mcf_c00276{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m29_c00276{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.mbd_c00276{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.ma_c00276{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m74_c00276{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m3f_c00276{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m5_c00276{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.me7_c00276{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m16_c00276{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m91_c00276{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.ma9_c00276{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m3_c00276{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m19_c00276{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m50_c00276{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m7f_c00276{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m46_c00276{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m64_c00276{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m47_c00276{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m2d_c00276{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mc4_c00276{transform:matrix(0.556586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556586,0.000000,0.000000,0.250000,0,0);}
.m44_c00276{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m5c_c00276{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m72_c00276{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m11_c00276{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m7e_c00276{transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);}
.mc_c00276{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m4f_c00276{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.me4_c00276{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.mf0_c00276{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mc7_c00276{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.md_c00276{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m41_c00276{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m12_c00276{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m7_c00276{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m2a_c00276{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m58_c00276{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m21_c00276{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.mf3_c00276{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m88_c00276{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.m96_c00276{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m15_c00276{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m3d_c00276{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m28_c00276{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m5d_c00276{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m5b_c00276{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m31_c00276{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);}
.m32_c00276{transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);}
.m99_c00276{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.md2_c00276{transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);}
.m68_c00276{transform:matrix(0.607059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607059,0.000000,0.000000,0.250000,0,0);}
.mcc_c00276{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m70_c00276{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mb1_c00276{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.m45_c00276{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m6e_c00276{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.m9e_c00276{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);}
.m93_c00276{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m5a_c00276{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.ma2_c00276{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m6d_c00276{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m40_c00276{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.me5_c00276{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m77_c00276{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m2c_c00276{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mf_c00276{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mbe_c00276{transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);}
.m65_c00276{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.meb_c00276{transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);}
.m5e_c00276{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m0_c00276{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m62_c00276{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m7c_c00276{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m95_c00276{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.m92_c00276{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m26_c00276{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.md4_c00276{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m53_c00276{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m4_c00276{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m8_c00276{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m3b_c00276{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m6_c00276{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.md5_c00276{transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);}
.m2b_c00276{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.me2_c00276{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.mac_c00276{transform:matrix(1.040749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.040749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.040749,0.000000,0.000000,0.250000,0,0);}
.mb6_c00276{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.mb0_c00276{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws1_c00276{word-spacing:-7.189112px;}
.ws0_c00276{word-spacing:-6.111596px;}
.ws2_c00276{word-spacing:0.000000px;}
.fc0_c00276{color:transparent;}
.fs8_c00276{font-size:3.420000px;}
.fs7_c00276{font-size:13.620000px;}
.fs0_c00276{font-size:18.720000px;}
.fs6_c00276{font-size:20.400000px;}
.fs2_c00276{font-size:25.500000px;}
.fs1_c00276{font-size:28.920000px;}
.fs5_c00276{font-size:32.340000px;}
.fs3_c00276{font-size:35.700000px;}
.fs4_c00276{font-size:39.120000px;}
.y0_c00276{bottom:0.000000px;}
.yad_c00276{bottom:250.905000px;}
.yab_c00276{bottom:251.745000px;}
.yac_c00276{bottom:253.905000px;}
.yaf_c00276{bottom:254.130000px;}
.yae_c00276{bottom:254.970000px;}
.yaa_c00276{bottom:271.245000px;}
.ya7_c00276{bottom:272.745000px;}
.ya8_c00276{bottom:273.405000px;}
.ya9_c00276{bottom:274.905000px;}
.ya1_c00276{bottom:289.905000px;}
.ya5_c00276{bottom:290.745000px;}
.ya6_c00276{bottom:291.825000px;}
.ya3_c00276{bottom:292.050000px;}
.ya2_c00276{bottom:292.245000px;}
.ya4_c00276{bottom:292.905000px;}
.ya0_c00276{bottom:294.405000px;}
.y9f_c00276{bottom:311.745000px;}
.y9e_c00276{bottom:313.905000px;}
.y9a_c00276{bottom:331.245000px;}
.y99_c00276{bottom:331.470000px;}
.y9d_c00276{bottom:332.550000px;}
.y9c_c00276{bottom:333.405000px;}
.y9b_c00276{bottom:334.470000px;}
.y96_c00276{bottom:349.905000px;}
.y94_c00276{bottom:350.745000px;}
.y95_c00276{bottom:351.825000px;}
.y98_c00276{bottom:352.245000px;}
.y93_c00276{bottom:352.905000px;}
.y97_c00276{bottom:353.325000px;}
.y90_c00276{bottom:370.245000px;}
.y8e_c00276{bottom:371.325000px;}
.y8d_c00276{bottom:372.405000px;}
.y8f_c00276{bottom:372.630000px;}
.y91_c00276{bottom:373.470000px;}
.y92_c00276{bottom:373.905000px;}
.y8c_c00276{bottom:388.905000px;}
.y8a_c00276{bottom:392.130000px;}
.y8b_c00276{bottom:392.970000px;}
.y88_c00276{bottom:393.405000px;}
.y89_c00276{bottom:393.420000px;}
.y86_c00276{bottom:412.905000px;}
.y87_c00276{bottom:413.970000px;}
.y83_c00276{bottom:428.970000px;}
.y82_c00276{bottom:430.245000px;}
.y85_c00276{bottom:431.325000px;}
.y81_c00276{bottom:431.970000px;}
.y84_c00276{bottom:432.405000px;}
.y7d_c00276{bottom:449.745000px;}
.y7e_c00276{bottom:450.825000px;}
.y80_c00276{bottom:451.470000px;}
.y7b_c00276{bottom:451.905000px;}
.y7c_c00276{bottom:451.920000px;}
.y7f_c00276{bottom:452.970000px;}
.y79_c00276{bottom:469.245000px;}
.y78_c00276{bottom:470.325000px;}
.y7a_c00276{bottom:471.405000px;}
.y77_c00276{bottom:488.745000px;}
.y76_c00276{bottom:489.825000px;}
.y73_c00276{bottom:490.050000px;}
.y75_c00276{bottom:490.245000px;}
.y72_c00276{bottom:492.405000px;}
.y74_c00276{bottom:492.420000px;}
.y71_c00276{bottom:507.405000px;}
.y70_c00276{bottom:508.470000px;}
.y6d_c00276{bottom:509.745000px;}
.y6f_c00276{bottom:510.825000px;}
.y6e_c00276{bottom:511.920000px;}
.y6b_c00276{bottom:529.245000px;}
.y6c_c00276{bottom:530.970000px;}
.y6a_c00276{bottom:531.405000px;}
.y67_c00276{bottom:548.745000px;}
.y69_c00276{bottom:550.905000px;}
.y68_c00276{bottom:550.920000px;}
.y66_c00276{bottom:572.970000px;}
.y62_c00276{bottom:573.825000px;}
.y63_c00276{bottom:574.905000px;}
.y64_c00276{bottom:575.970000px;}
.y65_c00276{bottom:576.195000px;}
.y60_c00276{bottom:593.325000px;}
.y61_c00276{bottom:593.550000px;}
.y5f_c00276{bottom:594.405000px;}
.y5e_c00276{bottom:596.550000px;}
.y5c_c00276{bottom:617.745000px;}
.y5d_c00276{bottom:618.825000px;}
.y5b_c00276{bottom:649.905000px;}
.y5a_c00276{bottom:686.745000px;}
.y56_c00276{bottom:705.405000px;}
.y58_c00276{bottom:706.245000px;}
.y57_c00276{bottom:708.405000px;}
.y59_c00276{bottom:708.630000px;}
.y50_c00276{bottom:724.905000px;}
.y53_c00276{bottom:725.745000px;}
.y51_c00276{bottom:727.905000px;}
.y52_c00276{bottom:728.130000px;}
.y55_c00276{bottom:728.970000px;}
.y54_c00276{bottom:729.405000px;}
.y4e_c00276{bottom:745.245000px;}
.y4f_c00276{bottom:746.325000px;}
.y4d_c00276{bottom:746.745000px;}
.y4c_c00276{bottom:748.905000px;}
.y4a_c00276{bottom:765.825000px;}
.y48_c00276{bottom:766.245000px;}
.y4b_c00276{bottom:767.130000px;}
.y49_c00276{bottom:768.405000px;}
.y45_c00276{bottom:785.745000px;}
.y46_c00276{bottom:786.630000px;}
.y47_c00276{bottom:787.905000px;}
.y44_c00276{bottom:788.970000px;}
.y43_c00276{bottom:806.130000px;}
.y42_c00276{bottom:807.405000px;}
.y40_c00276{bottom:822.405000px;}
.y3d_c00276{bottom:824.745000px;}
.y3f_c00276{bottom:826.470000px;}
.y3e_c00276{bottom:826.905000px;}
.y41_c00276{bottom:827.130000px;}
.y3a_c00276{bottom:841.905000px;}
.y36_c00276{bottom:844.245000px;}
.y3b_c00276{bottom:845.130000px;}
.y39_c00276{bottom:845.970000px;}
.y37_c00276{bottom:846.405000px;}
.y38_c00276{bottom:847.470000px;}
.y3c_c00276{bottom:847.905000px;}
.y32_c00276{bottom:863.745000px;}
.y33_c00276{bottom:865.905000px;}
.y35_c00276{bottom:866.130000px;}
.y34_c00276{bottom:866.970000px;}
.y30_c00276{bottom:883.245000px;}
.y2d_c00276{bottom:885.405000px;}
.y2f_c00276{bottom:885.630000px;}
.y2e_c00276{bottom:886.470000px;}
.y31_c00276{bottom:886.905000px;}
.y2a_c00276{bottom:901.905000px;}
.y28_c00276{bottom:903.825000px;}
.y2c_c00276{bottom:904.245000px;}
.y2b_c00276{bottom:905.130000px;}
.y29_c00276{bottom:905.970000px;}
.y27_c00276{bottom:906.405000px;}
.y22_c00276{bottom:921.405000px;}
.y23_c00276{bottom:923.745000px;}
.y21_c00276{bottom:924.405000px;}
.y20_c00276{bottom:924.630000px;}
.y25_c00276{bottom:924.825000px;}
.y26_c00276{bottom:925.470000px;}
.y24_c00276{bottom:925.905000px;}
.y1d_c00276{bottom:943.245000px;}
.y1f_c00276{bottom:944.130000px;}
.y1e_c00276{bottom:945.405000px;}
.y1c_c00276{bottom:961.905000px;}
.y1b_c00276{bottom:962.745000px;}
.y1a_c00276{bottom:963.825000px;}
.y19_c00276{bottom:964.905000px;}
.y14_c00276{bottom:981.405000px;}
.y16_c00276{bottom:982.245000px;}
.y13_c00276{bottom:983.325000px;}
.y15_c00276{bottom:984.405000px;}
.y17_c00276{bottom:984.630000px;}
.y18_c00276{bottom:985.470000px;}
.y11_c00276{bottom:1001.745000px;}
.yf_c00276{bottom:1002.630000px;}
.y10_c00276{bottom:1003.905000px;}
.y12_c00276{bottom:1004.970000px;}
.yc_c00276{bottom:1021.245000px;}
.ye_c00276{bottom:1022.325000px;}
.yb_c00276{bottom:1023.405000px;}
.yd_c00276{bottom:1023.630000px;}
.y7_c00276{bottom:1039.905000px;}
.y9_c00276{bottom:1040.745000px;}
.ya_c00276{bottom:1041.180000px;}
.y6_c00276{bottom:1042.905000px;}
.y8_c00276{bottom:1043.130000px;}
.y4_c00276{bottom:1062.630000px;}
.y5_c00276{bottom:1063.470000px;}
.y3_c00276{bottom:1063.905000px;}
.y2_c00276{bottom:1099.905000px;}
.y1_c00276{bottom:1101.630000px;}
.h9_c00276{height:4.206533px;}
.h8_c00276{height:16.752334px;}
.h1_c00276{height:23.025234px;}
.h7_c00276{height:25.091602px;}
.h3_c00276{height:31.364502px;}
.h2_c00276{height:35.571035px;}
.h6_c00276{height:39.777568px;}
.h4_c00276{height:43.910303px;}
.h5_c00276{height:48.116836px;}
.h0_c00276{height:1335.000000px;}
.w0_c00276{width:880.500000px;}
.x0_c00276{left:0.000000px;}
.x12_c00276{left:151.500000px;}
.x77_c00276{left:152.580000px;}
.xcc_c00276{left:154.080000px;}
.xe5_c00276{left:156.420000px;}
.xed_c00276{left:158.775000px;}
.xba_c00276{left:166.500000px;}
.x3_c00276{left:168.000000px;}
.x94_c00276{left:169.500000px;}
.x55_c00276{left:171.420000px;}
.xe9_c00276{left:174.000000px;}
.x13_c00276{left:180.420000px;}
.xd1_c00276{left:182.580000px;}
.xd5_c00276{left:184.080000px;}
.x2d_c00276{left:187.500000px;}
.xa9_c00276{left:189.420000px;}
.xf5_c00276{left:190.500000px;}
.x42_c00276{left:191.580000px;}
.x61_c00276{left:193.500000px;}
.x37_c00276{left:196.920000px;}
.xee_c00276{left:198.000000px;}
.x4_c00276{left:199.500000px;}
.x78_c00276{left:203.580000px;}
.x2e_c00276{left:206.580000px;}
.x4d_c00276{left:211.500000px;}
.xc5_c00276{left:214.080000px;}
.x14_c00276{left:217.920000px;}
.xb0_c00276{left:219.420000px;}
.x8b_c00276{left:222.000000px;}
.x21_c00276{left:223.080000px;}
.xdb_c00276{left:226.500000px;}
.x81_c00276{left:229.080000px;}
.x43_c00276{left:231.000000px;}
.xd6_c00276{left:232.500000px;}
.x93_c00276{left:235.500000px;}
.x6c_c00276{left:237.420000px;}
.x56_c00276{left:238.500000px;}
.x2f_c00276{left:239.580000px;}
.x62_c00276{left:246.420000px;}
.x5_c00276{left:247.500000px;}
.xb1_c00276{left:249.000000px;}
.x79_c00276{left:250.500000px;}
.xca_c00276{left:253.500000px;}
.xd9_c00276{left:255.000000px;}
.x15_c00276{left:256.080000px;}
.xa2_c00276{left:258.420000px;}
.xc8_c00276{left:261.000000px;}
.xc6_c00276{left:262.275000px;}
.x6d_c00276{left:263.580000px;}
.x57_c00276{left:265.500000px;}
.xea_c00276{left:267.000000px;}
.x22_c00276{left:271.275000px;}
.x82_c00276{left:272.580000px;}
.x8c_c00276{left:274.500000px;}
.xd7_c00276{left:275.580000px;}
.x44_c00276{left:280.920000px;}
.xc9_c00276{left:282.000000px;}
.xef_c00276{left:283.500000px;}
.x7a_c00276{left:285.000000px;}
.x9a_c00276{left:288.000000px;}
.xaa_c00276{left:291.000000px;}
.xc0_c00276{left:292.500000px;}
.x38_c00276{left:293.775000px;}
.x6_c00276{left:295.080000px;}
.x30_c00276{left:296.580000px;}
.xe0_c00276{left:298.080000px;}
.xf0_c00276{left:299.580000px;}
.x16_c00276{left:301.920000px;}
.x23_c00276{left:303.000000px;}
.x4e_c00276{left:304.500000px;}
.xcb_c00276{left:306.000000px;}
.x9b_c00276{left:307.500000px;}
.xb7_c00276{left:312.000000px;}
.xc7_c00276{left:313.080000px;}
.x6e_c00276{left:317.580000px;}
.xd8_c00276{left:321.000000px;}
.xdc_c00276{left:322.500000px;}
.xb2_c00276{left:326.580000px;}
.x83_c00276{left:328.500000px;}
.x17_c00276{left:331.500000px;}
.x39_c00276{left:334.500000px;}
.xe1_c00276{left:337.500000px;}
.x4f_c00276{left:339.000000px;}
.xb6_c00276{left:341.145000px;}
.xab_c00276{left:343.500000px;}
.x95_c00276{left:345.000000px;}
.x58_c00276{left:346.500000px;}
.x63_c00276{left:348.420000px;}
.x6f_c00276{left:349.500000px;}
.xb8_c00276{left:352.080000px;}
.x9c_c00276{left:353.580000px;}
.x45_c00276{left:355.920000px;}
.x7_c00276{left:357.000000px;}
.x7b_c00276{left:358.920000px;}
.xbb_c00276{left:360.420000px;}
.x50_c00276{left:361.920000px;}
.xc1_c00276{left:363.000000px;}
.xe6_c00276{left:364.500000px;}
.xa3_c00276{left:369.420000px;}
.x18_c00276{left:370.500000px;}
.xdd_c00276{left:372.000000px;}
.x8_c00276{left:376.080000px;}
.xeb_c00276{left:378.000000px;}
.x24_c00276{left:379.500000px;}
.x70_c00276{left:382.500000px;}
.x46_c00276{left:384.000000px;}
.x9d_c00276{left:385.920000px;}
.x3a_c00276{left:388.920000px;}
.x64_c00276{left:390.000000px;}
.xd2_c00276{left:391.500000px;}
.x84_c00276{left:393.000000px;}
.xbc_c00276{left:396.000000px;}
.xf6_c00276{left:398.580000px;}
.x19_c00276{left:400.500000px;}
.x1_c00276{left:401.580000px;}
.x71_c00276{left:403.920000px;}
.x59_c00276{left:405.000000px;}
.xa4_c00276{left:406.920000px;}
.x25_c00276{left:409.500000px;}
.xb9_c00276{left:410.580000px;}
.x31_c00276{left:412.920000px;}
.x9e_c00276{left:414.000000px;}
.x3b_c00276{left:417.000000px;}
.x47_c00276{left:418.500000px;}
.xf7_c00276{left:419.580000px;}
.x9_c00276{left:421.500000px;}
.x65_c00276{left:427.500000px;}
.x51_c00276{left:430.500000px;}
.xcd_c00276{left:433.080000px;}
.x72_c00276{left:436.500000px;}
.x48_c00276{left:439.500000px;}
.x5a_c00276{left:441.000000px;}
.x96_c00276{left:442.500000px;}
.xa_c00276{left:447.420000px;}
.x66_c00276{left:448.920000px;}
.x7c_c00276{left:450.000000px;}
.xbd_c00276{left:451.500000px;}
.x26_c00276{left:453.000000px;}
.xc2_c00276{left:456.000000px;}
.x3c_c00276{left:459.000000px;}
.xb3_c00276{left:460.080000px;}
.x85_c00276{left:462.420000px;}
.xa5_c00276{left:464.580000px;}
.xe2_c00276{left:466.920000px;}
.xf1_c00276{left:468.000000px;}
.x9f_c00276{left:470.580000px;}
.xf8_c00276{left:472.920000px;}
.x67_c00276{left:475.080000px;}
.x1a_c00276{left:477.000000px;}
.x3d_c00276{left:478.920000px;}
.xac_c00276{left:480.000000px;}
.xde_c00276{left:481.500000px;}
.x73_c00276{left:483.420000px;}
.x27_c00276{left:484.920000px;}
.x7d_c00276{left:486.000000px;}
.x32_c00276{left:487.500000px;}
.x5b_c00276{left:489.420000px;}
.xe3_c00276{left:493.080000px;}
.xd3_c00276{left:498.000000px;}
.x86_c00276{left:500.580000px;}
.xb_c00276{left:504.420000px;}
.xa0_c00276{left:505.500000px;}
.x28_c00276{left:507.645000px;}
.x8d_c00276{left:511.500000px;}
.xa6_c00276{left:513.000000px;}
.x49_c00276{left:516.420000px;}
.x33_c00276{left:520.500000px;}
.xe7_c00276{left:526.920000px;}
.x7e_c00276{left:529.080000px;}
.xad_c00276{left:530.580000px;}
.x1b_c00276{left:532.500000px;}
.x52_c00276{left:533.580000px;}
.x97_c00276{left:535.500000px;}
.x3e_c00276{left:537.000000px;}
.x87_c00276{left:540.000000px;}
.xc_c00276{left:541.920000px;}
.xf2_c00276{left:546.000000px;}
.xc3_c00276{left:547.080000px;}
.xce_c00276{left:548.580000px;}
.x29_c00276{left:552.420000px;}
.xf9_c00276{left:553.920000px;}
.x1c_c00276{left:555.000000px;}
.x88_c00276{left:558.000000px;}
.xbe_c00276{left:562.500000px;}
.x74_c00276{left:564.420000px;}
.x68_c00276{left:567.420000px;}
.xd_c00276{left:568.500000px;}
.x4a_c00276{left:570.000000px;}
.x5c_c00276{left:571.500000px;}
.x2a_c00276{left:573.000000px;}
.x34_c00276{left:574.080000px;}
.xbf_c00276{left:579.000000px;}
.x8e_c00276{left:582.000000px;}
.x53_c00276{left:583.500000px;}
.x1d_c00276{left:587.580000px;}
.xf3_c00276{left:589.080000px;}
.x75_c00276{left:592.080000px;}
.x3f_c00276{left:595.500000px;}
.xb4_c00276{left:598.080000px;}
.x89_c00276{left:601.080000px;}
.x69_c00276{left:604.500000px;}
.xda_c00276{left:606.000000px;}
.xe4_c00276{left:607.500000px;}
.xe_c00276{left:608.580000px;}
.x40_c00276{left:612.420000px;}
.x8f_c00276{left:613.500000px;}
.xcf_c00276{left:616.500000px;}
.x5d_c00276{left:618.000000px;}
.x8a_c00276{left:619.920000px;}
.x2b_c00276{left:624.000000px;}
.x1e_c00276{left:625.080000px;}
.xa1_c00276{left:627.000000px;}
.xf_c00276{left:628.920000px;}
.x90_c00276{left:630.000000px;}
.x6a_c00276{left:631.500000px;}
.x76_c00276{left:634.080000px;}
.x35_c00276{left:638.580000px;}
.x4b_c00276{left:640.500000px;}
.xb5_c00276{left:642.000000px;}
.xd4_c00276{left:643.920000px;}
.x91_c00276{left:645.000000px;}
.xdf_c00276{left:646.920000px;}
.xf4_c00276{left:652.500000px;}
.xae_c00276{left:654.000000px;}
.x10_c00276{left:655.080000px;}
.xd0_c00276{left:656.580000px;}
.x5e_c00276{left:658.500000px;}
.xec_c00276{left:659.580000px;}
.xe8_c00276{left:663.000000px;}
.x1f_c00276{left:665.580000px;}
.x41_c00276{left:667.500000px;}
.x7f_c00276{left:669.420000px;}
.xaf_c00276{left:673.080000px;}
.x4c_c00276{left:674.580000px;}
.x36_c00276{left:677.580000px;}
.x5f_c00276{left:680.580000px;}
.x98_c00276{left:686.580000px;}
.x6b_c00276{left:691.500000px;}
.x20_c00276{left:694.500000px;}
.x54_c00276{left:697.920000px;}
.x92_c00276{left:700.920000px;}
.xa7_c00276{left:702.000000px;}
.x2_c00276{left:703.080000px;}
.x2c_c00276{left:705.000000px;}
.x80_c00276{left:706.920000px;}
.x99_c00276{left:708.420000px;}
.x11_c00276{left:712.500000px;}
.xc4_c00276{left:714.000000px;}
.x60_c00276{left:715.500000px;}
.xa8_c00276{left:720.000000px;}
@media print{
.v0_c00276{vertical-align:0.000000pt;}
.ls0_c00276{letter-spacing:0.000000pt;}
.ws1_c00276{word-spacing:-6.390322pt;}
.ws0_c00276{word-spacing:-5.432530pt;}
.ws2_c00276{word-spacing:0.000000pt;}
.fs8_c00276{font-size:3.040000pt;}
.fs7_c00276{font-size:12.106667pt;}
.fs0_c00276{font-size:16.640000pt;}
.fs6_c00276{font-size:18.133333pt;}
.fs2_c00276{font-size:22.666667pt;}
.fs1_c00276{font-size:25.706667pt;}
.fs5_c00276{font-size:28.746667pt;}
.fs3_c00276{font-size:31.733333pt;}
.fs4_c00276{font-size:34.773333pt;}
.y0_c00276{bottom:0.000000pt;}
.yad_c00276{bottom:223.026667pt;}
.yab_c00276{bottom:223.773333pt;}
.yac_c00276{bottom:225.693333pt;}
.yaf_c00276{bottom:225.893333pt;}
.yae_c00276{bottom:226.640000pt;}
.yaa_c00276{bottom:241.106667pt;}
.ya7_c00276{bottom:242.440000pt;}
.ya8_c00276{bottom:243.026667pt;}
.ya9_c00276{bottom:244.360000pt;}
.ya1_c00276{bottom:257.693333pt;}
.ya5_c00276{bottom:258.440000pt;}
.ya6_c00276{bottom:259.400000pt;}
.ya3_c00276{bottom:259.600000pt;}
.ya2_c00276{bottom:259.773333pt;}
.ya4_c00276{bottom:260.360000pt;}
.ya0_c00276{bottom:261.693333pt;}
.y9f_c00276{bottom:277.106667pt;}
.y9e_c00276{bottom:279.026667pt;}
.y9a_c00276{bottom:294.440000pt;}
.y99_c00276{bottom:294.640000pt;}
.y9d_c00276{bottom:295.600000pt;}
.y9c_c00276{bottom:296.360000pt;}
.y9b_c00276{bottom:297.306667pt;}
.y96_c00276{bottom:311.026667pt;}
.y94_c00276{bottom:311.773333pt;}
.y95_c00276{bottom:312.733333pt;}
.y98_c00276{bottom:313.106667pt;}
.y93_c00276{bottom:313.693333pt;}
.y97_c00276{bottom:314.066667pt;}
.y90_c00276{bottom:329.106667pt;}
.y8e_c00276{bottom:330.066667pt;}
.y8d_c00276{bottom:331.026667pt;}
.y8f_c00276{bottom:331.226667pt;}
.y91_c00276{bottom:331.973333pt;}
.y92_c00276{bottom:332.360000pt;}
.y8c_c00276{bottom:345.693333pt;}
.y8a_c00276{bottom:348.560000pt;}
.y8b_c00276{bottom:349.306667pt;}
.y88_c00276{bottom:349.693333pt;}
.y89_c00276{bottom:349.706667pt;}
.y86_c00276{bottom:367.026667pt;}
.y87_c00276{bottom:367.973333pt;}
.y83_c00276{bottom:381.306667pt;}
.y82_c00276{bottom:382.440000pt;}
.y85_c00276{bottom:383.400000pt;}
.y81_c00276{bottom:383.973333pt;}
.y84_c00276{bottom:384.360000pt;}
.y7d_c00276{bottom:399.773333pt;}
.y7e_c00276{bottom:400.733333pt;}
.y80_c00276{bottom:401.306667pt;}
.y7b_c00276{bottom:401.693333pt;}
.y7c_c00276{bottom:401.706667pt;}
.y7f_c00276{bottom:402.640000pt;}
.y79_c00276{bottom:417.106667pt;}
.y78_c00276{bottom:418.066667pt;}
.y7a_c00276{bottom:419.026667pt;}
.y77_c00276{bottom:434.440000pt;}
.y76_c00276{bottom:435.400000pt;}
.y73_c00276{bottom:435.600000pt;}
.y75_c00276{bottom:435.773333pt;}
.y72_c00276{bottom:437.693333pt;}
.y74_c00276{bottom:437.706667pt;}
.y71_c00276{bottom:451.026667pt;}
.y70_c00276{bottom:451.973333pt;}
.y6d_c00276{bottom:453.106667pt;}
.y6f_c00276{bottom:454.066667pt;}
.y6e_c00276{bottom:455.040000pt;}
.y6b_c00276{bottom:470.440000pt;}
.y6c_c00276{bottom:471.973333pt;}
.y6a_c00276{bottom:472.360000pt;}
.y67_c00276{bottom:487.773333pt;}
.y69_c00276{bottom:489.693333pt;}
.y68_c00276{bottom:489.706667pt;}
.y66_c00276{bottom:509.306667pt;}
.y62_c00276{bottom:510.066667pt;}
.y63_c00276{bottom:511.026667pt;}
.y64_c00276{bottom:511.973333pt;}
.y65_c00276{bottom:512.173333pt;}
.y60_c00276{bottom:527.400000pt;}
.y61_c00276{bottom:527.600000pt;}
.y5f_c00276{bottom:528.360000pt;}
.y5e_c00276{bottom:530.266667pt;}
.y5c_c00276{bottom:549.106667pt;}
.y5d_c00276{bottom:550.066667pt;}
.y5b_c00276{bottom:577.693333pt;}
.y5a_c00276{bottom:610.440000pt;}
.y56_c00276{bottom:627.026667pt;}
.y58_c00276{bottom:627.773333pt;}
.y57_c00276{bottom:629.693333pt;}
.y59_c00276{bottom:629.893333pt;}
.y50_c00276{bottom:644.360000pt;}
.y53_c00276{bottom:645.106667pt;}
.y51_c00276{bottom:647.026667pt;}
.y52_c00276{bottom:647.226667pt;}
.y55_c00276{bottom:647.973333pt;}
.y54_c00276{bottom:648.360000pt;}
.y4e_c00276{bottom:662.440000pt;}
.y4f_c00276{bottom:663.400000pt;}
.y4d_c00276{bottom:663.773333pt;}
.y4c_c00276{bottom:665.693333pt;}
.y4a_c00276{bottom:680.733333pt;}
.y48_c00276{bottom:681.106667pt;}
.y4b_c00276{bottom:681.893333pt;}
.y49_c00276{bottom:683.026667pt;}
.y45_c00276{bottom:698.440000pt;}
.y46_c00276{bottom:699.226667pt;}
.y47_c00276{bottom:700.360000pt;}
.y44_c00276{bottom:701.306667pt;}
.y43_c00276{bottom:716.560000pt;}
.y42_c00276{bottom:717.693333pt;}
.y40_c00276{bottom:731.026667pt;}
.y3d_c00276{bottom:733.106667pt;}
.y3f_c00276{bottom:734.640000pt;}
.y3e_c00276{bottom:735.026667pt;}
.y41_c00276{bottom:735.226667pt;}
.y3a_c00276{bottom:748.360000pt;}
.y36_c00276{bottom:750.440000pt;}
.y3b_c00276{bottom:751.226667pt;}
.y39_c00276{bottom:751.973333pt;}
.y37_c00276{bottom:752.360000pt;}
.y38_c00276{bottom:753.306667pt;}
.y3c_c00276{bottom:753.693333pt;}
.y32_c00276{bottom:767.773333pt;}
.y33_c00276{bottom:769.693333pt;}
.y35_c00276{bottom:769.893333pt;}
.y34_c00276{bottom:770.640000pt;}
.y30_c00276{bottom:785.106667pt;}
.y2d_c00276{bottom:787.026667pt;}
.y2f_c00276{bottom:787.226667pt;}
.y2e_c00276{bottom:787.973333pt;}
.y31_c00276{bottom:788.360000pt;}
.y2a_c00276{bottom:801.693333pt;}
.y28_c00276{bottom:803.400000pt;}
.y2c_c00276{bottom:803.773333pt;}
.y2b_c00276{bottom:804.560000pt;}
.y29_c00276{bottom:805.306667pt;}
.y27_c00276{bottom:805.693333pt;}
.y22_c00276{bottom:819.026667pt;}
.y23_c00276{bottom:821.106667pt;}
.y21_c00276{bottom:821.693333pt;}
.y20_c00276{bottom:821.893333pt;}
.y25_c00276{bottom:822.066667pt;}
.y26_c00276{bottom:822.640000pt;}
.y24_c00276{bottom:823.026667pt;}
.y1d_c00276{bottom:838.440000pt;}
.y1f_c00276{bottom:839.226667pt;}
.y1e_c00276{bottom:840.360000pt;}
.y1c_c00276{bottom:855.026667pt;}
.y1b_c00276{bottom:855.773333pt;}
.y1a_c00276{bottom:856.733333pt;}
.y19_c00276{bottom:857.693333pt;}
.y14_c00276{bottom:872.360000pt;}
.y16_c00276{bottom:873.106667pt;}
.y13_c00276{bottom:874.066667pt;}
.y15_c00276{bottom:875.026667pt;}
.y17_c00276{bottom:875.226667pt;}
.y18_c00276{bottom:875.973333pt;}
.y11_c00276{bottom:890.440000pt;}
.yf_c00276{bottom:891.226667pt;}
.y10_c00276{bottom:892.360000pt;}
.y12_c00276{bottom:893.306667pt;}
.yc_c00276{bottom:907.773333pt;}
.ye_c00276{bottom:908.733333pt;}
.yb_c00276{bottom:909.693333pt;}
.yd_c00276{bottom:909.893333pt;}
.y7_c00276{bottom:924.360000pt;}
.y9_c00276{bottom:925.106667pt;}
.ya_c00276{bottom:925.493333pt;}
.y6_c00276{bottom:927.026667pt;}
.y8_c00276{bottom:927.226667pt;}
.y4_c00276{bottom:944.560000pt;}
.y5_c00276{bottom:945.306667pt;}
.y3_c00276{bottom:945.693333pt;}
.y2_c00276{bottom:977.693333pt;}
.y1_c00276{bottom:979.226667pt;}
.h9_c00276{height:3.739141pt;}
.h8_c00276{height:14.890964pt;}
.h1_c00276{height:20.466875pt;}
.h7_c00276{height:22.303646pt;}
.h3_c00276{height:27.879557pt;}
.h2_c00276{height:31.618698pt;}
.h6_c00276{height:35.357839pt;}
.h4_c00276{height:39.031380pt;}
.h5_c00276{height:42.770521pt;}
.h0_c00276{height:1186.666667pt;}
.w0_c00276{width:782.666667pt;}
.x0_c00276{left:0.000000pt;}
.x12_c00276{left:134.666667pt;}
.x77_c00276{left:135.626667pt;}
.xcc_c00276{left:136.960000pt;}
.xe5_c00276{left:139.040000pt;}
.xed_c00276{left:141.133333pt;}
.xba_c00276{left:148.000000pt;}
.x3_c00276{left:149.333333pt;}
.x94_c00276{left:150.666667pt;}
.x55_c00276{left:152.373333pt;}
.xe9_c00276{left:154.666667pt;}
.x13_c00276{left:160.373333pt;}
.xd1_c00276{left:162.293333pt;}
.xd5_c00276{left:163.626667pt;}
.x2d_c00276{left:166.666667pt;}
.xa9_c00276{left:168.373333pt;}
.xf5_c00276{left:169.333333pt;}
.x42_c00276{left:170.293333pt;}
.x61_c00276{left:172.000000pt;}
.x37_c00276{left:175.040000pt;}
.xee_c00276{left:176.000000pt;}
.x4_c00276{left:177.333333pt;}
.x78_c00276{left:180.960000pt;}
.x2e_c00276{left:183.626667pt;}
.x4d_c00276{left:188.000000pt;}
.xc5_c00276{left:190.293333pt;}
.x14_c00276{left:193.706667pt;}
.xb0_c00276{left:195.040000pt;}
.x8b_c00276{left:197.333333pt;}
.x21_c00276{left:198.293333pt;}
.xdb_c00276{left:201.333333pt;}
.x81_c00276{left:203.626667pt;}
.x43_c00276{left:205.333333pt;}
.xd6_c00276{left:206.666667pt;}
.x93_c00276{left:209.333333pt;}
.x6c_c00276{left:211.040000pt;}
.x56_c00276{left:212.000000pt;}
.x2f_c00276{left:212.960000pt;}
.x62_c00276{left:219.040000pt;}
.x5_c00276{left:220.000000pt;}
.xb1_c00276{left:221.333333pt;}
.x79_c00276{left:222.666667pt;}
.xca_c00276{left:225.333333pt;}
.xd9_c00276{left:226.666667pt;}
.x15_c00276{left:227.626667pt;}
.xa2_c00276{left:229.706667pt;}
.xc8_c00276{left:232.000000pt;}
.xc6_c00276{left:233.133333pt;}
.x6d_c00276{left:234.293333pt;}
.x57_c00276{left:236.000000pt;}
.xea_c00276{left:237.333333pt;}
.x22_c00276{left:241.133333pt;}
.x82_c00276{left:242.293333pt;}
.x8c_c00276{left:244.000000pt;}
.xd7_c00276{left:244.960000pt;}
.x44_c00276{left:249.706667pt;}
.xc9_c00276{left:250.666667pt;}
.xef_c00276{left:252.000000pt;}
.x7a_c00276{left:253.333333pt;}
.x9a_c00276{left:256.000000pt;}
.xaa_c00276{left:258.666667pt;}
.xc0_c00276{left:260.000000pt;}
.x38_c00276{left:261.133333pt;}
.x6_c00276{left:262.293333pt;}
.x30_c00276{left:263.626667pt;}
.xe0_c00276{left:264.960000pt;}
.xf0_c00276{left:266.293333pt;}
.x16_c00276{left:268.373333pt;}
.x23_c00276{left:269.333333pt;}
.x4e_c00276{left:270.666667pt;}
.xcb_c00276{left:272.000000pt;}
.x9b_c00276{left:273.333333pt;}
.xb7_c00276{left:277.333333pt;}
.xc7_c00276{left:278.293333pt;}
.x6e_c00276{left:282.293333pt;}
.xd8_c00276{left:285.333333pt;}
.xdc_c00276{left:286.666667pt;}
.xb2_c00276{left:290.293333pt;}
.x83_c00276{left:292.000000pt;}
.x17_c00276{left:294.666667pt;}
.x39_c00276{left:297.333333pt;}
.xe1_c00276{left:300.000000pt;}
.x4f_c00276{left:301.333333pt;}
.xb6_c00276{left:303.240000pt;}
.xab_c00276{left:305.333333pt;}
.x95_c00276{left:306.666667pt;}
.x58_c00276{left:308.000000pt;}
.x63_c00276{left:309.706667pt;}
.x6f_c00276{left:310.666667pt;}
.xb8_c00276{left:312.960000pt;}
.x9c_c00276{left:314.293333pt;}
.x45_c00276{left:316.373333pt;}
.x7_c00276{left:317.333333pt;}
.x7b_c00276{left:319.040000pt;}
.xbb_c00276{left:320.373333pt;}
.x50_c00276{left:321.706667pt;}
.xc1_c00276{left:322.666667pt;}
.xe6_c00276{left:324.000000pt;}
.xa3_c00276{left:328.373333pt;}
.x18_c00276{left:329.333333pt;}
.xdd_c00276{left:330.666667pt;}
.x8_c00276{left:334.293333pt;}
.xeb_c00276{left:336.000000pt;}
.x24_c00276{left:337.333333pt;}
.x70_c00276{left:340.000000pt;}
.x46_c00276{left:341.333333pt;}
.x9d_c00276{left:343.040000pt;}
.x3a_c00276{left:345.706667pt;}
.x64_c00276{left:346.666667pt;}
.xd2_c00276{left:348.000000pt;}
.x84_c00276{left:349.333333pt;}
.xbc_c00276{left:352.000000pt;}
.xf6_c00276{left:354.293333pt;}
.x19_c00276{left:356.000000pt;}
.x1_c00276{left:356.960000pt;}
.x71_c00276{left:359.040000pt;}
.x59_c00276{left:360.000000pt;}
.xa4_c00276{left:361.706667pt;}
.x25_c00276{left:364.000000pt;}
.xb9_c00276{left:364.960000pt;}
.x31_c00276{left:367.040000pt;}
.x9e_c00276{left:368.000000pt;}
.x3b_c00276{left:370.666667pt;}
.x47_c00276{left:372.000000pt;}
.xf7_c00276{left:372.960000pt;}
.x9_c00276{left:374.666667pt;}
.x65_c00276{left:380.000000pt;}
.x51_c00276{left:382.666667pt;}
.xcd_c00276{left:384.960000pt;}
.x72_c00276{left:388.000000pt;}
.x48_c00276{left:390.666667pt;}
.x5a_c00276{left:392.000000pt;}
.x96_c00276{left:393.333333pt;}
.xa_c00276{left:397.706667pt;}
.x66_c00276{left:399.040000pt;}
.x7c_c00276{left:400.000000pt;}
.xbd_c00276{left:401.333333pt;}
.x26_c00276{left:402.666667pt;}
.xc2_c00276{left:405.333333pt;}
.x3c_c00276{left:408.000000pt;}
.xb3_c00276{left:408.960000pt;}
.x85_c00276{left:411.040000pt;}
.xa5_c00276{left:412.960000pt;}
.xe2_c00276{left:415.040000pt;}
.xf1_c00276{left:416.000000pt;}
.x9f_c00276{left:418.293333pt;}
.xf8_c00276{left:420.373333pt;}
.x67_c00276{left:422.293333pt;}
.x1a_c00276{left:424.000000pt;}
.x3d_c00276{left:425.706667pt;}
.xac_c00276{left:426.666667pt;}
.xde_c00276{left:428.000000pt;}
.x73_c00276{left:429.706667pt;}
.x27_c00276{left:431.040000pt;}
.x7d_c00276{left:432.000000pt;}
.x32_c00276{left:433.333333pt;}
.x5b_c00276{left:435.040000pt;}
.xe3_c00276{left:438.293333pt;}
.xd3_c00276{left:442.666667pt;}
.x86_c00276{left:444.960000pt;}
.xb_c00276{left:448.373333pt;}
.xa0_c00276{left:449.333333pt;}
.x28_c00276{left:451.240000pt;}
.x8d_c00276{left:454.666667pt;}
.xa6_c00276{left:456.000000pt;}
.x49_c00276{left:459.040000pt;}
.x33_c00276{left:462.666667pt;}
.xe7_c00276{left:468.373333pt;}
.x7e_c00276{left:470.293333pt;}
.xad_c00276{left:471.626667pt;}
.x1b_c00276{left:473.333333pt;}
.x52_c00276{left:474.293333pt;}
.x97_c00276{left:476.000000pt;}
.x3e_c00276{left:477.333333pt;}
.x87_c00276{left:480.000000pt;}
.xc_c00276{left:481.706667pt;}
.xf2_c00276{left:485.333333pt;}
.xc3_c00276{left:486.293333pt;}
.xce_c00276{left:487.626667pt;}
.x29_c00276{left:491.040000pt;}
.xf9_c00276{left:492.373333pt;}
.x1c_c00276{left:493.333333pt;}
.x88_c00276{left:496.000000pt;}
.xbe_c00276{left:500.000000pt;}
.x74_c00276{left:501.706667pt;}
.x68_c00276{left:504.373333pt;}
.xd_c00276{left:505.333333pt;}
.x4a_c00276{left:506.666667pt;}
.x5c_c00276{left:508.000000pt;}
.x2a_c00276{left:509.333333pt;}
.x34_c00276{left:510.293333pt;}
.xbf_c00276{left:514.666667pt;}
.x8e_c00276{left:517.333333pt;}
.x53_c00276{left:518.666667pt;}
.x1d_c00276{left:522.293333pt;}
.xf3_c00276{left:523.626667pt;}
.x75_c00276{left:526.293333pt;}
.x3f_c00276{left:529.333333pt;}
.xb4_c00276{left:531.626667pt;}
.x89_c00276{left:534.293333pt;}
.x69_c00276{left:537.333333pt;}
.xda_c00276{left:538.666667pt;}
.xe4_c00276{left:540.000000pt;}
.xe_c00276{left:540.960000pt;}
.x40_c00276{left:544.373333pt;}
.x8f_c00276{left:545.333333pt;}
.xcf_c00276{left:548.000000pt;}
.x5d_c00276{left:549.333333pt;}
.x8a_c00276{left:551.040000pt;}
.x2b_c00276{left:554.666667pt;}
.x1e_c00276{left:555.626667pt;}
.xa1_c00276{left:557.333333pt;}
.xf_c00276{left:559.040000pt;}
.x90_c00276{left:560.000000pt;}
.x6a_c00276{left:561.333333pt;}
.x76_c00276{left:563.626667pt;}
.x35_c00276{left:567.626667pt;}
.x4b_c00276{left:569.333333pt;}
.xb5_c00276{left:570.666667pt;}
.xd4_c00276{left:572.373333pt;}
.x91_c00276{left:573.333333pt;}
.xdf_c00276{left:575.040000pt;}
.xf4_c00276{left:580.000000pt;}
.xae_c00276{left:581.333333pt;}
.x10_c00276{left:582.293333pt;}
.xd0_c00276{left:583.626667pt;}
.x5e_c00276{left:585.333333pt;}
.xec_c00276{left:586.293333pt;}
.xe8_c00276{left:589.333333pt;}
.x1f_c00276{left:591.626667pt;}
.x41_c00276{left:593.333333pt;}
.x7f_c00276{left:595.040000pt;}
.xaf_c00276{left:598.293333pt;}
.x4c_c00276{left:599.626667pt;}
.x36_c00276{left:602.293333pt;}
.x5f_c00276{left:604.960000pt;}
.x98_c00276{left:610.293333pt;}
.x6b_c00276{left:614.666667pt;}
.x20_c00276{left:617.333333pt;}
.x54_c00276{left:620.373333pt;}
.x92_c00276{left:623.040000pt;}
.xa7_c00276{left:624.000000pt;}
.x2_c00276{left:624.960000pt;}
.x2c_c00276{left:626.666667pt;}
.x80_c00276{left:628.373333pt;}
.x99_c00276{left:629.706667pt;}
.x11_c00276{left:633.333333pt;}
.xc4_c00276{left:634.666667pt;}
.x60_c00276{left:636.000000pt;}
.xa8_c00276{left:640.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_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_0e84fbd1503e3014df6eb583.woff2')format("woff");}.ff1_c00277{font-family:ff1_c00277;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m61_c00277{transform:matrix(0.291280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291280,0.000000,0.000000,0.250000,0,0);}
.m113_c00277{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m4_c00277{transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);}
.me1_c00277{transform:matrix(0.348794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348794,0.000000,0.000000,0.250000,0,0);}
.m9b_c00277{transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);}
.md5_c00277{transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);}
.mec_c00277{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m34_c00277{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m96_c00277{transform:matrix(0.370594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370594,0.000000,0.000000,0.250000,0,0);}
.m0_c00277{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m95_c00277{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.me8_c00277{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m49_c00277{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mda_c00277{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.mcb_c00277{transform:matrix(0.377087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377087,0.000000,0.000000,0.250000,0,0);}
.m1b_c00277{transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);}
.meb_c00277{transform:matrix(0.385736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385736,0.000000,0.000000,0.250000,0,0);}
.m3d_c00277{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mc7_c00277{transform:matrix(0.386364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386364,0.000000,0.000000,0.250000,0,0);}
.mc6_c00277{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m3_c00277{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m115_c00277{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m10b_c00277{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m63_c00277{transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);}
.m1a_c00277{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.mb6_c00277{transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);}
.m3e_c00277{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.me9_c00277{transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);}
.me2_c00277{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.mf_c00277{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mc0_c00277{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.m105_c00277{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m7_c00277{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.mf0_c00277{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m9a_c00277{transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);}
.m6f_c00277{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.m68_c00277{transform:matrix(0.406120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406120,0.000000,0.000000,0.250000,0,0);}
.m118_c00277{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mee_c00277{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m5c_c00277{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m10c_c00277{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.mf6_c00277{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mfe_c00277{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m30_c00277{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.mf9_c00277{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m59_c00277{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m73_c00277{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.mf5_c00277{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mdf_c00277{transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);}
.mad_c00277{transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);}
.mbb_c00277{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.m18_c00277{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m4d_c00277{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m74_c00277{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m2c_c00277{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m26_c00277{transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);}
.m114_c00277{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.ma5_c00277{transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);}
.m3f_c00277{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m45_c00277{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.me6_c00277{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m1f_c00277{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m107_c00277{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.md1_c00277{transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);}
.me3_c00277{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.mdc_c00277{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m21_c00277{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m8a_c00277{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m6c_c00277{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m7e_c00277{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.md_c00277{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m35_c00277{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.me4_c00277{transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);}
.ma6_c00277{transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);}
.m9d_c00277{transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);}
.mdb_c00277{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m3a_c00277{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m11d_c00277{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m22_c00277{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.md4_c00277{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.mf8_c00277{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m98_c00277{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.ma7_c00277{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mb0_c00277{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m6b_c00277{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m8_c00277{transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);}
.m3c_c00277{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m53_c00277{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m16_c00277{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m31_c00277{transform:matrix(0.466807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466807,0.000000,0.000000,0.250000,0,0);}
.mab_c00277{transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);}
.mbf_c00277{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m97_c00277{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.mb1_c00277{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.m4e_c00277{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.m85_c00277{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.ma2_c00277{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m89_c00277{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m7b_c00277{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mce_c00277{transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);}
.m99_c00277{transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);}
.m7c_c00277{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.maa_c00277{transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);}
.mc3_c00277{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m28_c00277{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mb2_c00277{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m5a_c00277{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.mc2_c00277{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m23_c00277{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mcc_c00277{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m14_c00277{transform:matrix(0.489796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489796,0.000000,0.000000,0.250000,0,0);}
.m93_c00277{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mac_c00277{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m110_c00277{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m2f_c00277{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m57_c00277{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m48_c00277{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_c00277{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mef_c00277{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m2_c00277{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m5b_c00277{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m112_c00277{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m88_c00277{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.mf3_c00277{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.ma0_c00277{transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);}
.mde_c00277{transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);}
.m111_c00277{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.me5_c00277{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.m43_c00277{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m13_c00277{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.md2_c00277{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.m7d_c00277{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.mb4_c00277{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m25_c00277{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mae_c00277{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.mf4_c00277{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.mb7_c00277{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);}
.mf2_c00277{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m8f_c00277{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m101_c00277{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m109_c00277{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.mcd_c00277{transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);}
.m75_c00277{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.ma3_c00277{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.m103_c00277{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m7f_c00277{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);}
.mca_c00277{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m10a_c00277{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m62_c00277{transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);}
.m10e_c00277{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m44_c00277{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m100_c00277{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m92_c00277{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m3b_c00277{transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);}
.mff_c00277{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m106_c00277{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.ma4_c00277{transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);}
.mb_c00277{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mc4_c00277{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.m108_c00277{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.md7_c00277{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m1e_c00277{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m46_c00277{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m58_c00277{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.mf7_c00277{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m78_c00277{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m10f_c00277{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m15_c00277{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mf1_c00277{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m90_c00277{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.mfb_c00277{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.ma_c00277{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m117_c00277{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.mc8_c00277{transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);}
.m11a_c00277{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m10d_c00277{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m47_c00277{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.md0_c00277{transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);}
.m5_c00277{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.m77_c00277{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m91_c00277{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m42_c00277{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mba_c00277{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);}
.m2e_c00277{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.ma9_c00277{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.ma8_c00277{transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);}
.me_c00277{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m82_c00277{transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);}
.m9f_c00277{transform:matrix(0.557353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557353,0.000000,0.000000,0.250000,0,0);}
.m24_c00277{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m65_c00277{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m76_c00277{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m2a_c00277{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mfd_c00277{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m102_c00277{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mbc_c00277{transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);}
.m119_c00277{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m7a_c00277{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m6d_c00277{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.md6_c00277{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.m11c_c00277{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.md3_c00277{transform:matrix(0.567647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567647,0.000000,0.000000,0.250000,0,0);}
.m12_c00277{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m104_c00277{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.mc9_c00277{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m11b_c00277{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.m6_c00277{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m29_c00277{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.me7_c00277{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m51_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);}
.m5d_c00277{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m39_c00277{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m56_c00277{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m8c_c00277{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.mfc_c00277{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.mcf_c00277{transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);}
.mdd_c00277{transform:matrix(0.590545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590545,0.000000,0.000000,0.250000,0,0);}
.m19_c00277{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.med_c00277{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m67_c00277{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.md8_c00277{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m9c_c00277{transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);}
.m8b_c00277{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m17_c00277{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.m116_c00277{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.mbd_c00277{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m10_c00277{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m84_c00277{transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);}
.m33_c00277{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mbe_c00277{transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);}
.m37_c00277{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m64_c00277{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m4b_c00277{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m4c_c00277{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m5e_c00277{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_c00277{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.m9e_c00277{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m6a_c00277{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.mb5_c00277{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m2b_c00277{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mb8_c00277{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m69_c00277{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m60_c00277{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.mb3_c00277{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m94_c00277{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.m50_c00277{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m1_c00277{transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);}
.m71_c00277{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);}
.m86_c00277{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.ma1_c00277{transform:matrix(0.656250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656250,0.000000,0.000000,0.250000,0,0);}
.m87_c00277{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m8e_c00277{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m52_c00277{transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);}
.m8d_c00277{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m1d_c00277{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m4f_c00277{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.m5f_c00277{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.m70_c00277{transform:matrix(0.680147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680147,0.000000,0.000000,0.250000,0,0);}
.m81_c00277{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m38_c00277{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.m55_c00277{transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);}
.m80_c00277{transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);}
.m72_c00277{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m6e_c00277{transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);}
.m27_c00277{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mc5_c00277{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m40_c00277{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m32_c00277{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m79_c00277{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);}
.m11_c00277{transform:matrix(0.705929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705929,0.000000,0.000000,0.250000,0,0);}
.m20_c00277{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m41_c00277{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.me0_c00277{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m2d_c00277{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m36_c00277{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m9_c00277{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.mfa_c00277{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mc1_c00277{transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);}
.m54_c00277{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m1c_c00277{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.md9_c00277{transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);}
.m83_c00277{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.mb9_c00277{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.m4a_c00277{transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);}
.m66_c00277{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.mea_c00277{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,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;}
}
.ws1_c00277{word-spacing:-2.923710px;}
.ws2_c00277{word-spacing:0.000000px;}
.ws0_c00277{word-spacing:0.308050px;}
._0_c00277{width:17.496706px;}
.fc0_c00277{color:transparent;}
.fs9_c00277{font-size:3.420000px;}
.fs7_c00277{font-size:11.880000px;}
.fs8_c00277{font-size:13.620000px;}
.fs5_c00277{font-size:18.720000px;}
.fs1_c00277{font-size:20.400000px;}
.fs6_c00277{font-size:25.500000px;}
.fs2_c00277{font-size:28.920000px;}
.fs0_c00277{font-size:32.340000px;}
.fs3_c00277{font-size:35.700000px;}
.fs4_c00277{font-size:39.120000px;}
.y0_c00277{bottom:0.000000px;}
.y104_c00277{bottom:251.745000px;}
.y100_c00277{bottom:252.405000px;}
.y101_c00277{bottom:252.630000px;}
.y102_c00277{bottom:253.470000px;}
.y103_c00277{bottom:253.905000px;}
.yf9_c00277{bottom:269.745000px;}
.yfe_c00277{bottom:271.245000px;}
.yfb_c00277{bottom:271.470000px;}
.yfa_c00277{bottom:271.905000px;}
.yff_c00277{bottom:272.970000px;}
.yfc_c00277{bottom:273.405000px;}
.yfd_c00277{bottom:274.470000px;}
.yf8_c00277{bottom:289.905000px;}
.yf7_c00277{bottom:290.745000px;}
.yf6_c00277{bottom:291.630000px;}
.yf5_c00277{bottom:292.905000px;}
.yf1_c00277{bottom:310.245000px;}
.yf2_c00277{bottom:311.130000px;}
.yf0_c00277{bottom:312.405000px;}
.yf3_c00277{bottom:312.630000px;}
.yf4_c00277{bottom:313.905000px;}
.yec_c00277{bottom:329.745000px;}
.yea_c00277{bottom:330.630000px;}
.yef_c00277{bottom:331.245000px;}
.yeb_c00277{bottom:331.905000px;}
.yed_c00277{bottom:332.130000px;}
.yee_c00277{bottom:333.405000px;}
.ye9_c00277{bottom:348.405000px;}
.ye6_c00277{bottom:350.745000px;}
.ye5_c00277{bottom:351.405000px;}
.ye8_c00277{bottom:351.630000px;}
.ye7_c00277{bottom:352.905000px;}
.ye1_c00277{bottom:368.745000px;}
.ye3_c00277{bottom:368.970000px;}
.ye4_c00277{bottom:370.245000px;}
.ye0_c00277{bottom:371.130000px;}
.ye2_c00277{bottom:372.405000px;}
.ydb_c00277{bottom:388.245000px;}
.ydf_c00277{bottom:389.745000px;}
.ydc_c00277{bottom:390.405000px;}
.yde_c00277{bottom:390.630000px;}
.ydd_c00277{bottom:391.905000px;}
.yd6_c00277{bottom:408.180000px;}
.yd8_c00277{bottom:409.245000px;}
.yda_c00277{bottom:410.130000px;}
.yd9_c00277{bottom:411.405000px;}
.yd7_c00277{bottom:411.420000px;}
.yd2_c00277{bottom:445.905000px;}
.yd5_c00277{bottom:446.325000px;}
.yd3_c00277{bottom:446.550000px;}
.yd4_c00277{bottom:447.405000px;}
.ycf_c00277{bottom:459.825000px;}
.ycb_c00277{bottom:460.905000px;}
.yce_c00277{bottom:461.325000px;}
.yd0_c00277{bottom:461.550000px;}
.ycc_c00277{bottom:461.970000px;}
.ycd_c00277{bottom:463.050000px;}
.yd1_c00277{bottom:463.470000px;}
.yca_c00277{bottom:474.825000px;}
.yc8_c00277{bottom:475.905000px;}
.yc3_c00277{bottom:476.130000px;}
.yc7_c00277{bottom:476.325000px;}
.yc6_c00277{bottom:476.970000px;}
.yc4_c00277{bottom:477.405000px;}
.yc5_c00277{bottom:477.630000px;}
.yc9_c00277{bottom:478.470000px;}
.ybe_c00277{bottom:489.825000px;}
.yba_c00277{bottom:490.050000px;}
.yc2_c00277{bottom:491.130000px;}
.ybf_c00277{bottom:491.325000px;}
.ybb_c00277{bottom:491.970000px;}
.ybd_c00277{bottom:492.195000px;}
.yc1_c00277{bottom:493.050000px;}
.ybc_c00277{bottom:493.470000px;}
.yc0_c00277{bottom:494.550000px;}
.yb6_c00277{bottom:505.905000px;}
.yb8_c00277{bottom:506.130000px;}
.yb7_c00277{bottom:506.970000px;}
.yb9_c00277{bottom:508.050000px;}
.yb5_c00277{bottom:519.825000px;}
.yb1_c00277{bottom:520.050000px;}
.yb4_c00277{bottom:520.905000px;}
.yb3_c00277{bottom:521.970000px;}
.yb2_c00277{bottom:523.050000px;}
.yaf_c00277{bottom:534.405000px;}
.yae_c00277{bottom:534.825000px;}
.yb0_c00277{bottom:538.050000px;}
.yab_c00277{bottom:550.905000px;}
.ya8_c00277{bottom:551.130000px;}
.yac_c00277{bottom:551.550000px;}
.ya9_c00277{bottom:551.970000px;}
.yad_c00277{bottom:552.195000px;}
.yaa_c00277{bottom:553.050000px;}
.ya6_c00277{bottom:563.970000px;}
.ya2_c00277{bottom:564.825000px;}
.ya1_c00277{bottom:565.470000px;}
.ya3_c00277{bottom:565.905000px;}
.ya5_c00277{bottom:566.970000px;}
.ya4_c00277{bottom:567.195000px;}
.ya7_c00277{bottom:568.050000px;}
.y9b_c00277{bottom:579.405000px;}
.y99_c00277{bottom:579.630000px;}
.y9f_c00277{bottom:579.825000px;}
.y9d_c00277{bottom:580.470000px;}
.ya0_c00277{bottom:580.905000px;}
.y9a_c00277{bottom:581.550000px;}
.y9c_c00277{bottom:581.970000px;}
.y9e_c00277{bottom:583.050000px;}
.y95_c00277{bottom:593.325000px;}
.y94_c00277{bottom:594.405000px;}
.y97_c00277{bottom:595.470000px;}
.y96_c00277{bottom:595.695000px;}
.y98_c00277{bottom:596.550000px;}
.y93_c00277{bottom:609.405000px;}
.y90_c00277{bottom:609.630000px;}
.y92_c00277{bottom:610.470000px;}
.y91_c00277{bottom:611.550000px;}
.y8f_c00277{bottom:624.405000px;}
.y8e_c00277{bottom:637.470000px;}
.y8b_c00277{bottom:638.550000px;}
.y8a_c00277{bottom:639.405000px;}
.y8c_c00277{bottom:640.470000px;}
.y8d_c00277{bottom:640.695000px;}
.y89_c00277{bottom:641.550000px;}
.y88_c00277{bottom:652.470000px;}
.y86_c00277{bottom:652.905000px;}
.y82_c00277{bottom:653.550000px;}
.y83_c00277{bottom:654.405000px;}
.y87_c00277{bottom:655.470000px;}
.y84_c00277{bottom:655.695000px;}
.y85_c00277{bottom:656.550000px;}
.y7e_c00277{bottom:666.825000px;}
.y7f_c00277{bottom:667.050000px;}
.y81_c00277{bottom:667.905000px;}
.y7d_c00277{bottom:668.970000px;}
.y80_c00277{bottom:670.050000px;}
.y7b_c00277{bottom:682.470000px;}
.y78_c00277{bottom:682.905000px;}
.y7a_c00277{bottom:683.325000px;}
.y76_c00277{bottom:683.970000px;}
.y7c_c00277{bottom:684.405000px;}
.y77_c00277{bottom:685.470000px;}
.y79_c00277{bottom:685.695000px;}
.y75_c00277{bottom:696.825000px;}
.y74_c00277{bottom:698.970000px;}
.y73_c00277{bottom:700.050000px;}
.y6d_c00277{bottom:712.050000px;}
.y71_c00277{bottom:712.905000px;}
.y6e_c00277{bottom:713.970000px;}
.y6f_c00277{bottom:714.195000px;}
.y72_c00277{bottom:714.630000px;}
.y70_c00277{bottom:715.050000px;}
.y69_c00277{bottom:727.905000px;}
.y6c_c00277{bottom:728.130000px;}
.y6a_c00277{bottom:728.970000px;}
.y6b_c00277{bottom:730.050000px;}
.y63_c00277{bottom:741.825000px;}
.y68_c00277{bottom:742.905000px;}
.y66_c00277{bottom:743.130000px;}
.y64_c00277{bottom:743.550000px;}
.y65_c00277{bottom:743.970000px;}
.y67_c00277{bottom:745.050000px;}
.y5e_c00277{bottom:755.550000px;}
.y60_c00277{bottom:756.825000px;}
.y5d_c00277{bottom:757.905000px;}
.y61_c00277{bottom:758.130000px;}
.y5f_c00277{bottom:758.970000px;}
.y62_c00277{bottom:759.195000px;}
.y5b_c00277{bottom:773.130000px;}
.y59_c00277{bottom:773.550000px;}
.y5a_c00277{bottom:773.970000px;}
.y5c_c00277{bottom:775.050000px;}
.y56_c00277{bottom:786.825000px;}
.y57_c00277{bottom:787.470000px;}
.y58_c00277{bottom:787.905000px;}
.y52_c00277{bottom:788.550000px;}
.y53_c00277{bottom:788.970000px;}
.y54_c00277{bottom:789.195000px;}
.y55_c00277{bottom:790.050000px;}
.y50_c00277{bottom:800.970000px;}
.y4f_c00277{bottom:801.405000px;}
.y4a_c00277{bottom:802.050000px;}
.y4d_c00277{bottom:802.470000px;}
.y4c_c00277{bottom:803.130000px;}
.y4b_c00277{bottom:803.550000px;}
.y51_c00277{bottom:803.970000px;}
.y4e_c00277{bottom:804.195000px;}
.y47_c00277{bottom:815.325000px;}
.y48_c00277{bottom:816.405000px;}
.y49_c00277{bottom:818.550000px;}
.y44_c00277{bottom:829.470000px;}
.y41_c00277{bottom:830.550000px;}
.y43_c00277{bottom:831.405000px;}
.y42_c00277{bottom:832.470000px;}
.y46_c00277{bottom:832.695000px;}
.y45_c00277{bottom:833.550000px;}
.y40_c00277{bottom:845.325000px;}
.y3f_c00277{bottom:848.550000px;}
.y38_c00277{bottom:859.470000px;}
.y3b_c00277{bottom:860.325000px;}
.y3d_c00277{bottom:861.405000px;}
.y3a_c00277{bottom:861.630000px;}
.y39_c00277{bottom:862.470000px;}
.y3e_c00277{bottom:862.695000px;}
.y3c_c00277{bottom:863.550000px;}
.y36_c00277{bottom:876.405000px;}
.y37_c00277{bottom:878.550000px;}
.y33_c00277{bottom:888.825000px;}
.y31_c00277{bottom:889.905000px;}
.y30_c00277{bottom:890.130000px;}
.y34_c00277{bottom:890.970000px;}
.y35_c00277{bottom:891.195000px;}
.y32_c00277{bottom:892.050000px;}
.y2f_c00277{bottom:903.825000px;}
.y2d_c00277{bottom:904.905000px;}
.y2e_c00277{bottom:905.970000px;}
.y2b_c00277{bottom:906.195000px;}
.y2c_c00277{bottom:907.050000px;}
.y29_c00277{bottom:919.905000px;}
.y27_c00277{bottom:920.130000px;}
.y2a_c00277{bottom:920.970000px;}
.y28_c00277{bottom:922.050000px;}
.y26_c00277{bottom:941.745000px;}
.y25_c00277{bottom:943.905000px;}
.y23_c00277{bottom:961.245000px;}
.y22_c00277{bottom:962.130000px;}
.y24_c00277{bottom:963.405000px;}
.y1d_c00277{bottom:980.745000px;}
.y1e_c00277{bottom:981.630000px;}
.y20_c00277{bottom:981.825000px;}
.y21_c00277{bottom:982.470000px;}
.y1f_c00277{bottom:982.905000px;}
.y1c_c00277{bottom:983.970000px;}
.y1a_c00277{bottom:1000.245000px;}
.y1b_c00277{bottom:1001.130000px;}
.y19_c00277{bottom:1001.970000px;}
.y18_c00277{bottom:1002.405000px;}
.y11_c00277{bottom:1016.775000px;}
.y17_c00277{bottom:1019.325000px;}
.y10_c00277{bottom:1019.745000px;}
.y14_c00277{bottom:1020.630000px;}
.y15_c00277{bottom:1020.825000px;}
.y16_c00277{bottom:1021.470000px;}
.y13_c00277{bottom:1021.905000px;}
.y12_c00277{bottom:1022.970000px;}
.ya_c00277{bottom:1039.245000px;}
.ye_c00277{bottom:1040.325000px;}
.yb_c00277{bottom:1041.405000px;}
.yd_c00277{bottom:1041.630000px;}
.yf_c00277{bottom:1041.825000px;}
.yc_c00277{bottom:1042.470000px;}
.y9_c00277{bottom:1057.905000px;}
.y4_c00277{bottom:1058.745000px;}
.y5_c00277{bottom:1059.180000px;}
.y7_c00277{bottom:1060.245000px;}
.y3_c00277{bottom:1060.905000px;}
.y8_c00277{bottom:1061.130000px;}
.y6_c00277{bottom:1062.405000px;}
.y1_c00277{bottom:1098.825000px;}
.y2_c00277{bottom:1099.050000px;}
.ha_c00277{height:4.206533px;}
.h8_c00277{height:14.612168px;}
.h9_c00277{height:16.752334px;}
.h6_c00277{height:23.025234px;}
.h2_c00277{height:25.091602px;}
.h7_c00277{height:31.364502px;}
.h3_c00277{height:35.571035px;}
.h1_c00277{height:39.777568px;}
.h4_c00277{height:43.910303px;}
.h5_c00277{height:48.116836px;}
.h0_c00277{height:1335.000000px;}
.w0_c00277{width:880.500000px;}
.x0_c00277{left:0.000000px;}
.xbd_c00277{left:151.080000px;}
.x3_c00277{left:152.580000px;}
.x1_c00277{left:154.500000px;}
.x1d_c00277{left:160.500000px;}
.x5e_c00277{left:165.420000px;}
.x67_c00277{left:166.500000px;}
.x48_c00277{left:168.000000px;}
.x107_c00277{left:172.500000px;}
.x7a_c00277{left:180.000000px;}
.x3a_c00277{left:181.500000px;}
.x56_c00277{left:184.500000px;}
.xf8_c00277{left:189.420000px;}
.xc9_c00277{left:190.500000px;}
.xf_c00277{left:193.080000px;}
.xcf_c00277{left:195.000000px;}
.x72_c00277{left:196.500000px;}
.xa7_c00277{left:198.000000px;}
.x2b_c00277{left:199.500000px;}
.x5f_c00277{left:201.420000px;}
.x10d_c00277{left:202.500000px;}
.xdb_c00277{left:205.500000px;}
.x108_c00277{left:207.000000px;}
.x97_c00277{left:208.920000px;}
.xd5_c00277{left:210.000000px;}
.x49_c00277{left:213.000000px;}
.x54_c00277{left:215.580000px;}
.x9e_c00277{left:217.500000px;}
.x7b_c00277{left:220.500000px;}
.x57_c00277{left:222.000000px;}
.x10_c00277{left:223.500000px;}
.x83_c00277{left:225.000000px;}
.x73_c00277{left:226.920000px;}
.xdf_c00277{left:228.000000px;}
.x60_c00277{left:229.080000px;}
.x4_c00277{left:230.580000px;}
.xa8_c00277{left:232.920000px;}
.x55_c00277{left:234.420000px;}
.x74_c00277{left:235.920000px;}
.x9f_c00277{left:237.000000px;}
.x61_c00277{left:240.420000px;}
.x2c_c00277{left:241.500000px;}
.x1e_c00277{left:249.000000px;}
.x3b_c00277{left:253.500000px;}
.xe4_c00277{left:255.420000px;}
.x84_c00277{left:256.920000px;}
.x85_c00277{left:258.000000px;}
.xa9_c00277{left:259.500000px;}
.x2d_c00277{left:261.000000px;}
.x98_c00277{left:262.080000px;}
.x11_c00277{left:265.500000px;}
.xca_c00277{left:267.000000px;}
.x68_c00277{left:268.500000px;}
.xd6_c00277{left:270.420000px;}
.x58_c00277{left:272.580000px;}
.xd0_c00277{left:274.080000px;}
.xe9_c00277{left:277.920000px;}
.x8c_c00277{left:279.000000px;}
.x5_c00277{left:280.500000px;}
.x4a_c00277{left:281.580000px;}
.x7c_c00277{left:283.080000px;}
.x3c_c00277{left:286.500000px;}
.x69_c00277{left:288.000000px;}
.x8d_c00277{left:289.500000px;}
.x12_c00277{left:291.420000px;}
.x62_c00277{left:292.500000px;}
.x1f_c00277{left:294.420000px;}
.x2e_c00277{left:295.920000px;}
.x99_c00277{left:297.855000px;}
.x4b_c00277{left:299.580000px;}
.xaa_c00277{left:303.000000px;}
.x3d_c00277{left:306.000000px;}
.xbe_c00277{left:309.000000px;}
.x92_c00277{left:310.500000px;}
.x86_c00277{left:313.500000px;}
.x6_c00277{left:315.000000px;}
.xf4_c00277{left:316.500000px;}
.x59_c00277{left:318.000000px;}
.xd7_c00277{left:319.500000px;}
.xec_c00277{left:322.080000px;}
.x8e_c00277{left:323.580000px;}
.xb6_c00277{left:325.500000px;}
.xab_c00277{left:327.420000px;}
.x20_c00277{left:328.500000px;}
.x2f_c00277{left:330.420000px;}
.xd1_c00277{left:331.500000px;}
.x3e_c00277{left:333.000000px;}
.x87_c00277{left:334.500000px;}
.x10e_c00277{left:336.000000px;}
.x63_c00277{left:337.500000px;}
.xd2_c00277{left:342.000000px;}
.x13_c00277{left:344.580000px;}
.xf9_c00277{left:346.500000px;}
.x8f_c00277{left:351.420000px;}
.x21_c00277{left:354.420000px;}
.x3f_c00277{left:355.500000px;}
.x6a_c00277{left:358.500000px;}
.xa0_c00277{left:360.420000px;}
.x93_c00277{left:361.500000px;}
.x14_c00277{left:362.580000px;}
.x10f_c00277{left:364.500000px;}
.xc3_c00277{left:366.420000px;}
.xe5_c00277{left:367.920000px;}
.x7d_c00277{left:369.000000px;}
.x64_c00277{left:370.920000px;}
.x4c_c00277{left:372.000000px;}
.xa1_c00277{left:373.500000px;}
.x104_c00277{left:376.080000px;}
.x30_c00277{left:381.000000px;}
.xf5_c00277{left:382.080000px;}
.x15_c00277{left:385.920000px;}
.xff_c00277{left:388.500000px;}
.x7_c00277{left:393.000000px;}
.xe0_c00277{left:394.920000px;}
.x6b_c00277{left:396.000000px;}
.xb0_c00277{left:398.580000px;}
.x75_c00277{left:402.000000px;}
.xed_c00277{left:403.500000px;}
.x4d_c00277{left:405.420000px;}
.x2_c00277{left:406.500000px;}
.xcb_c00277{left:409.080000px;}
.x16_c00277{left:410.580000px;}
.x40_c00277{left:412.080000px;}
.xd3_c00277{left:414.420000px;}
.xb7_c00277{left:415.500000px;}
.xf6_c00277{left:416.580000px;}
.x112_c00277{left:418.920000px;}
.xfa_c00277{left:421.500000px;}
.x90_c00277{left:423.420000px;}
.xcc_c00277{left:424.500000px;}
.x31_c00277{left:426.000000px;}
.xb8_c00277{left:427.500000px;}
.x41_c00277{left:430.500000px;}
.x100_c00277{left:432.000000px;}
.xac_c00277{left:434.355000px;}
.xea_c00277{left:435.420000px;}
.x8_c00277{left:438.000000px;}
.xee_c00277{left:440.580000px;}
.x22_c00277{left:442.500000px;}
.x110_c00277{left:443.580000px;}
.x4e_c00277{left:445.500000px;}
.x113_c00277{left:447.000000px;}
.x91_c00277{left:450.000000px;}
.xfb_c00277{left:451.500000px;}
.xdc_c00277{left:453.000000px;}
.xd4_c00277{left:456.000000px;}
.x4f_c00277{left:457.500000px;}
.xf7_c00277{left:458.580000px;}
.x17_c00277{left:460.500000px;}
.xa2_c00277{left:462.420000px;}
.x5a_c00277{left:463.500000px;}
.xb9_c00277{left:464.580000px;}
.x7e_c00277{left:466.920000px;}
.xbf_c00277{left:468.000000px;}
.x32_c00277{left:472.500000px;}
.x94_c00277{left:474.000000px;}
.x9a_c00277{left:477.000000px;}
.x18_c00277{left:478.500000px;}
.x109_c00277{left:480.000000px;}
.x23_c00277{left:481.500000px;}
.x7f_c00277{left:484.080000px;}
.xcd_c00277{left:486.000000px;}
.xb1_c00277{left:489.000000px;}
.x9_c00277{left:490.500000px;}
.x65_c00277{left:492.420000px;}
.xc4_c00277{left:493.920000px;}
.x50_c00277{left:496.080000px;}
.x76_c00277{left:499.500000px;}
.xad_c00277{left:501.420000px;}
.xfc_c00277{left:502.500000px;}
.x42_c00277{left:504.420000px;}
.xe6_c00277{left:505.920000px;}
.xa_c00277{left:507.420000px;}
.x101_c00277{left:510.420000px;}
.x95_c00277{left:511.500000px;}
.x19_c00277{left:513.000000px;}
.xef_c00277{left:517.080000px;}
.x66_c00277{left:519.000000px;}
.x5b_c00277{left:522.000000px;}
.x88_c00277{left:524.580000px;}
.x24_c00277{left:526.080000px;}
.xc0_c00277{left:529.500000px;}
.xba_c00277{left:531.000000px;}
.xdd_c00277{left:535.920000px;}
.xb2_c00277{left:537.645000px;}
.x114_c00277{left:538.920000px;}
.x43_c00277{left:541.500000px;}
.x33_c00277{left:543.420000px;}
.x6c_c00277{left:544.500000px;}
.x25_c00277{left:546.420000px;}
.xf0_c00277{left:547.500000px;}
.xb_c00277{left:550.920000px;}
.xa3_c00277{left:552.420000px;}
.x89_c00277{left:554.580000px;}
.x111_c00277{left:556.500000px;}
.xd8_c00277{left:559.920000px;}
.x44_c00277{left:561.000000px;}
.x105_c00277{left:564.420000px;}
.xae_c00277{left:567.000000px;}
.x51_c00277{left:570.420000px;}
.xbb_c00277{left:573.000000px;}
.x34_c00277{left:574.920000px;}
.x80_c00277{left:576.000000px;}
.xde_c00277{left:577.500000px;}
.x5c_c00277{left:579.000000px;}
.x1a_c00277{left:580.920000px;}
.x77_c00277{left:585.000000px;}
.x9b_c00277{left:586.500000px;}
.x45_c00277{left:587.580000px;}
.x106_c00277{left:589.500000px;}
.xf1_c00277{left:591.000000px;}
.x6d_c00277{left:592.500000px;}
.x96_c00277{left:594.000000px;}
.x10c_c00277{left:596.145000px;}
.x52_c00277{left:597.420000px;}
.xc1_c00277{left:598.500000px;}
.xa4_c00277{left:601.920000px;}
.x26_c00277{left:603.000000px;}
.xf2_c00277{left:604.500000px;}
.x8a_c00277{left:606.000000px;}
.x1b_c00277{left:607.080000px;}
.x35_c00277{left:609.000000px;}
.x9c_c00277{left:612.420000px;}
.x10a_c00277{left:613.920000px;}
.xc_c00277{left:615.000000px;}
.x6e_c00277{left:618.000000px;}
.xb3_c00277{left:619.920000px;}
.x36_c00277{left:621.000000px;}
.xce_c00277{left:622.500000px;}
.x27_c00277{left:624.420000px;}
.xe1_c00277{left:627.000000px;}
.xb4_c00277{left:630.000000px;}
.xbc_c00277{left:631.500000px;}
.x78_c00277{left:633.000000px;}
.xc5_c00277{left:636.000000px;}
.xfd_c00277{left:637.500000px;}
.x8b_c00277{left:639.420000px;}
.xd9_c00277{left:644.580000px;}
.xa5_c00277{left:646.920000px;}
.xe7_c00277{left:648.000000px;}
.xaf_c00277{left:649.500000px;}
.xc6_c00277{left:651.000000px;}
.x28_c00277{left:652.080000px;}
.x46_c00277{left:654.000000px;}
.xd_c00277{left:655.920000px;}
.xf3_c00277{left:658.080000px;}
.x6f_c00277{left:659.580000px;}
.x37_c00277{left:661.500000px;}
.xc2_c00277{left:663.420000px;}
.xb5_c00277{left:664.500000px;}
.x53_c00277{left:665.580000px;}
.x115_c00277{left:667.500000px;}
.x5d_c00277{left:668.580000px;}
.x9d_c00277{left:670.500000px;}
.x10b_c00277{left:672.420000px;}
.x70_c00277{left:673.500000px;}
.xc7_c00277{left:675.420000px;}
.xeb_c00277{left:676.500000px;}
.xe2_c00277{left:679.500000px;}
.x38_c00277{left:682.275000px;}
.xe_c00277{left:684.000000px;}
.xfe_c00277{left:685.920000px;}
.xe8_c00277{left:687.000000px;}
.x116_c00277{left:688.500000px;}
.x81_c00277{left:690.000000px;}
.xe3_c00277{left:691.500000px;}
.xa6_c00277{left:693.420000px;}
.x1c_c00277{left:697.500000px;}
.xda_c00277{left:700.500000px;}
.x82_c00277{left:702.000000px;}
.x29_c00277{left:705.000000px;}
.x79_c00277{left:706.500000px;}
.x47_c00277{left:708.000000px;}
.x71_c00277{left:709.500000px;}
.x102_c00277{left:712.500000px;}
.x39_c00277{left:717.000000px;}
.xc8_c00277{left:718.080000px;}
.x2a_c00277{left:720.000000px;}
.x103_c00277{left:723.000000px;}
@media print{
.v0_c00277{vertical-align:0.000000pt;}
.ls0_c00277{letter-spacing:0.000000pt;}
.ws1_c00277{word-spacing:-2.598853pt;}
.ws2_c00277{word-spacing:0.000000pt;}
.ws0_c00277{word-spacing:0.273822pt;}
._0_c00277{width:15.552627pt;}
.fs9_c00277{font-size:3.040000pt;}
.fs7_c00277{font-size:10.560000pt;}
.fs8_c00277{font-size:12.106667pt;}
.fs5_c00277{font-size:16.640000pt;}
.fs1_c00277{font-size:18.133333pt;}
.fs6_c00277{font-size:22.666667pt;}
.fs2_c00277{font-size:25.706667pt;}
.fs0_c00277{font-size:28.746667pt;}
.fs3_c00277{font-size:31.733333pt;}
.fs4_c00277{font-size:34.773333pt;}
.y0_c00277{bottom:0.000000pt;}
.y104_c00277{bottom:223.773333pt;}
.y100_c00277{bottom:224.360000pt;}
.y101_c00277{bottom:224.560000pt;}
.y102_c00277{bottom:225.306667pt;}
.y103_c00277{bottom:225.693333pt;}
.yf9_c00277{bottom:239.773333pt;}
.yfe_c00277{bottom:241.106667pt;}
.yfb_c00277{bottom:241.306667pt;}
.yfa_c00277{bottom:241.693333pt;}
.yff_c00277{bottom:242.640000pt;}
.yfc_c00277{bottom:243.026667pt;}
.yfd_c00277{bottom:243.973333pt;}
.yf8_c00277{bottom:257.693333pt;}
.yf7_c00277{bottom:258.440000pt;}
.yf6_c00277{bottom:259.226667pt;}
.yf5_c00277{bottom:260.360000pt;}
.yf1_c00277{bottom:275.773333pt;}
.yf2_c00277{bottom:276.560000pt;}
.yf0_c00277{bottom:277.693333pt;}
.yf3_c00277{bottom:277.893333pt;}
.yf4_c00277{bottom:279.026667pt;}
.yec_c00277{bottom:293.106667pt;}
.yea_c00277{bottom:293.893333pt;}
.yef_c00277{bottom:294.440000pt;}
.yeb_c00277{bottom:295.026667pt;}
.yed_c00277{bottom:295.226667pt;}
.yee_c00277{bottom:296.360000pt;}
.ye9_c00277{bottom:309.693333pt;}
.ye6_c00277{bottom:311.773333pt;}
.ye5_c00277{bottom:312.360000pt;}
.ye8_c00277{bottom:312.560000pt;}
.ye7_c00277{bottom:313.693333pt;}
.ye1_c00277{bottom:327.773333pt;}
.ye3_c00277{bottom:327.973333pt;}
.ye4_c00277{bottom:329.106667pt;}
.ye0_c00277{bottom:329.893333pt;}
.ye2_c00277{bottom:331.026667pt;}
.ydb_c00277{bottom:345.106667pt;}
.ydf_c00277{bottom:346.440000pt;}
.ydc_c00277{bottom:347.026667pt;}
.yde_c00277{bottom:347.226667pt;}
.ydd_c00277{bottom:348.360000pt;}
.yd6_c00277{bottom:362.826667pt;}
.yd8_c00277{bottom:363.773333pt;}
.yda_c00277{bottom:364.560000pt;}
.yd9_c00277{bottom:365.693333pt;}
.yd7_c00277{bottom:365.706667pt;}
.yd2_c00277{bottom:396.360000pt;}
.yd5_c00277{bottom:396.733333pt;}
.yd3_c00277{bottom:396.933333pt;}
.yd4_c00277{bottom:397.693333pt;}
.ycf_c00277{bottom:408.733333pt;}
.ycb_c00277{bottom:409.693333pt;}
.yce_c00277{bottom:410.066667pt;}
.yd0_c00277{bottom:410.266667pt;}
.ycc_c00277{bottom:410.640000pt;}
.ycd_c00277{bottom:411.600000pt;}
.yd1_c00277{bottom:411.973333pt;}
.yca_c00277{bottom:422.066667pt;}
.yc8_c00277{bottom:423.026667pt;}
.yc3_c00277{bottom:423.226667pt;}
.yc7_c00277{bottom:423.400000pt;}
.yc6_c00277{bottom:423.973333pt;}
.yc4_c00277{bottom:424.360000pt;}
.yc5_c00277{bottom:424.560000pt;}
.yc9_c00277{bottom:425.306667pt;}
.ybe_c00277{bottom:435.400000pt;}
.yba_c00277{bottom:435.600000pt;}
.yc2_c00277{bottom:436.560000pt;}
.ybf_c00277{bottom:436.733333pt;}
.ybb_c00277{bottom:437.306667pt;}
.ybd_c00277{bottom:437.506667pt;}
.yc1_c00277{bottom:438.266667pt;}
.ybc_c00277{bottom:438.640000pt;}
.yc0_c00277{bottom:439.600000pt;}
.yb6_c00277{bottom:449.693333pt;}
.yb8_c00277{bottom:449.893333pt;}
.yb7_c00277{bottom:450.640000pt;}
.yb9_c00277{bottom:451.600000pt;}
.yb5_c00277{bottom:462.066667pt;}
.yb1_c00277{bottom:462.266667pt;}
.yb4_c00277{bottom:463.026667pt;}
.yb3_c00277{bottom:463.973333pt;}
.yb2_c00277{bottom:464.933333pt;}
.yaf_c00277{bottom:475.026667pt;}
.yae_c00277{bottom:475.400000pt;}
.yb0_c00277{bottom:478.266667pt;}
.yab_c00277{bottom:489.693333pt;}
.ya8_c00277{bottom:489.893333pt;}
.yac_c00277{bottom:490.266667pt;}
.ya9_c00277{bottom:490.640000pt;}
.yad_c00277{bottom:490.840000pt;}
.yaa_c00277{bottom:491.600000pt;}
.ya6_c00277{bottom:501.306667pt;}
.ya2_c00277{bottom:502.066667pt;}
.ya1_c00277{bottom:502.640000pt;}
.ya3_c00277{bottom:503.026667pt;}
.ya5_c00277{bottom:503.973333pt;}
.ya4_c00277{bottom:504.173333pt;}
.ya7_c00277{bottom:504.933333pt;}
.y9b_c00277{bottom:515.026667pt;}
.y99_c00277{bottom:515.226667pt;}
.y9f_c00277{bottom:515.400000pt;}
.y9d_c00277{bottom:515.973333pt;}
.ya0_c00277{bottom:516.360000pt;}
.y9a_c00277{bottom:516.933333pt;}
.y9c_c00277{bottom:517.306667pt;}
.y9e_c00277{bottom:518.266667pt;}
.y95_c00277{bottom:527.400000pt;}
.y94_c00277{bottom:528.360000pt;}
.y97_c00277{bottom:529.306667pt;}
.y96_c00277{bottom:529.506667pt;}
.y98_c00277{bottom:530.266667pt;}
.y93_c00277{bottom:541.693333pt;}
.y90_c00277{bottom:541.893333pt;}
.y92_c00277{bottom:542.640000pt;}
.y91_c00277{bottom:543.600000pt;}
.y8f_c00277{bottom:555.026667pt;}
.y8e_c00277{bottom:566.640000pt;}
.y8b_c00277{bottom:567.600000pt;}
.y8a_c00277{bottom:568.360000pt;}
.y8c_c00277{bottom:569.306667pt;}
.y8d_c00277{bottom:569.506667pt;}
.y89_c00277{bottom:570.266667pt;}
.y88_c00277{bottom:579.973333pt;}
.y86_c00277{bottom:580.360000pt;}
.y82_c00277{bottom:580.933333pt;}
.y83_c00277{bottom:581.693333pt;}
.y87_c00277{bottom:582.640000pt;}
.y84_c00277{bottom:582.840000pt;}
.y85_c00277{bottom:583.600000pt;}
.y7e_c00277{bottom:592.733333pt;}
.y7f_c00277{bottom:592.933333pt;}
.y81_c00277{bottom:593.693333pt;}
.y7d_c00277{bottom:594.640000pt;}
.y80_c00277{bottom:595.600000pt;}
.y7b_c00277{bottom:606.640000pt;}
.y78_c00277{bottom:607.026667pt;}
.y7a_c00277{bottom:607.400000pt;}
.y76_c00277{bottom:607.973333pt;}
.y7c_c00277{bottom:608.360000pt;}
.y77_c00277{bottom:609.306667pt;}
.y79_c00277{bottom:609.506667pt;}
.y75_c00277{bottom:619.400000pt;}
.y74_c00277{bottom:621.306667pt;}
.y73_c00277{bottom:622.266667pt;}
.y6d_c00277{bottom:632.933333pt;}
.y71_c00277{bottom:633.693333pt;}
.y6e_c00277{bottom:634.640000pt;}
.y6f_c00277{bottom:634.840000pt;}
.y72_c00277{bottom:635.226667pt;}
.y70_c00277{bottom:635.600000pt;}
.y69_c00277{bottom:647.026667pt;}
.y6c_c00277{bottom:647.226667pt;}
.y6a_c00277{bottom:647.973333pt;}
.y6b_c00277{bottom:648.933333pt;}
.y63_c00277{bottom:659.400000pt;}
.y68_c00277{bottom:660.360000pt;}
.y66_c00277{bottom:660.560000pt;}
.y64_c00277{bottom:660.933333pt;}
.y65_c00277{bottom:661.306667pt;}
.y67_c00277{bottom:662.266667pt;}
.y5e_c00277{bottom:671.600000pt;}
.y60_c00277{bottom:672.733333pt;}
.y5d_c00277{bottom:673.693333pt;}
.y61_c00277{bottom:673.893333pt;}
.y5f_c00277{bottom:674.640000pt;}
.y62_c00277{bottom:674.840000pt;}
.y5b_c00277{bottom:687.226667pt;}
.y59_c00277{bottom:687.600000pt;}
.y5a_c00277{bottom:687.973333pt;}
.y5c_c00277{bottom:688.933333pt;}
.y56_c00277{bottom:699.400000pt;}
.y57_c00277{bottom:699.973333pt;}
.y58_c00277{bottom:700.360000pt;}
.y52_c00277{bottom:700.933333pt;}
.y53_c00277{bottom:701.306667pt;}
.y54_c00277{bottom:701.506667pt;}
.y55_c00277{bottom:702.266667pt;}
.y50_c00277{bottom:711.973333pt;}
.y4f_c00277{bottom:712.360000pt;}
.y4a_c00277{bottom:712.933333pt;}
.y4d_c00277{bottom:713.306667pt;}
.y4c_c00277{bottom:713.893333pt;}
.y4b_c00277{bottom:714.266667pt;}
.y51_c00277{bottom:714.640000pt;}
.y4e_c00277{bottom:714.840000pt;}
.y47_c00277{bottom:724.733333pt;}
.y48_c00277{bottom:725.693333pt;}
.y49_c00277{bottom:727.600000pt;}
.y44_c00277{bottom:737.306667pt;}
.y41_c00277{bottom:738.266667pt;}
.y43_c00277{bottom:739.026667pt;}
.y42_c00277{bottom:739.973333pt;}
.y46_c00277{bottom:740.173333pt;}
.y45_c00277{bottom:740.933333pt;}
.y40_c00277{bottom:751.400000pt;}
.y3f_c00277{bottom:754.266667pt;}
.y38_c00277{bottom:763.973333pt;}
.y3b_c00277{bottom:764.733333pt;}
.y3d_c00277{bottom:765.693333pt;}
.y3a_c00277{bottom:765.893333pt;}
.y39_c00277{bottom:766.640000pt;}
.y3e_c00277{bottom:766.840000pt;}
.y3c_c00277{bottom:767.600000pt;}
.y36_c00277{bottom:779.026667pt;}
.y37_c00277{bottom:780.933333pt;}
.y33_c00277{bottom:790.066667pt;}
.y31_c00277{bottom:791.026667pt;}
.y30_c00277{bottom:791.226667pt;}
.y34_c00277{bottom:791.973333pt;}
.y35_c00277{bottom:792.173333pt;}
.y32_c00277{bottom:792.933333pt;}
.y2f_c00277{bottom:803.400000pt;}
.y2d_c00277{bottom:804.360000pt;}
.y2e_c00277{bottom:805.306667pt;}
.y2b_c00277{bottom:805.506667pt;}
.y2c_c00277{bottom:806.266667pt;}
.y29_c00277{bottom:817.693333pt;}
.y27_c00277{bottom:817.893333pt;}
.y2a_c00277{bottom:818.640000pt;}
.y28_c00277{bottom:819.600000pt;}
.y26_c00277{bottom:837.106667pt;}
.y25_c00277{bottom:839.026667pt;}
.y23_c00277{bottom:854.440000pt;}
.y22_c00277{bottom:855.226667pt;}
.y24_c00277{bottom:856.360000pt;}
.y1d_c00277{bottom:871.773333pt;}
.y1e_c00277{bottom:872.560000pt;}
.y20_c00277{bottom:872.733333pt;}
.y21_c00277{bottom:873.306667pt;}
.y1f_c00277{bottom:873.693333pt;}
.y1c_c00277{bottom:874.640000pt;}
.y1a_c00277{bottom:889.106667pt;}
.y1b_c00277{bottom:889.893333pt;}
.y19_c00277{bottom:890.640000pt;}
.y18_c00277{bottom:891.026667pt;}
.y11_c00277{bottom:903.800000pt;}
.y17_c00277{bottom:906.066667pt;}
.y10_c00277{bottom:906.440000pt;}
.y14_c00277{bottom:907.226667pt;}
.y15_c00277{bottom:907.400000pt;}
.y16_c00277{bottom:907.973333pt;}
.y13_c00277{bottom:908.360000pt;}
.y12_c00277{bottom:909.306667pt;}
.ya_c00277{bottom:923.773333pt;}
.ye_c00277{bottom:924.733333pt;}
.yb_c00277{bottom:925.693333pt;}
.yd_c00277{bottom:925.893333pt;}
.yf_c00277{bottom:926.066667pt;}
.yc_c00277{bottom:926.640000pt;}
.y9_c00277{bottom:940.360000pt;}
.y4_c00277{bottom:941.106667pt;}
.y5_c00277{bottom:941.493333pt;}
.y7_c00277{bottom:942.440000pt;}
.y3_c00277{bottom:943.026667pt;}
.y8_c00277{bottom:943.226667pt;}
.y6_c00277{bottom:944.360000pt;}
.y1_c00277{bottom:976.733333pt;}
.y2_c00277{bottom:976.933333pt;}
.ha_c00277{height:3.739141pt;}
.h8_c00277{height:12.988594pt;}
.h9_c00277{height:14.890964pt;}
.h6_c00277{height:20.466875pt;}
.h2_c00277{height:22.303646pt;}
.h7_c00277{height:27.879557pt;}
.h3_c00277{height:31.618698pt;}
.h1_c00277{height:35.357839pt;}
.h4_c00277{height:39.031380pt;}
.h5_c00277{height:42.770521pt;}
.h0_c00277{height:1186.666667pt;}
.w0_c00277{width:782.666667pt;}
.x0_c00277{left:0.000000pt;}
.xbd_c00277{left:134.293333pt;}
.x3_c00277{left:135.626667pt;}
.x1_c00277{left:137.333333pt;}
.x1d_c00277{left:142.666667pt;}
.x5e_c00277{left:147.040000pt;}
.x67_c00277{left:148.000000pt;}
.x48_c00277{left:149.333333pt;}
.x107_c00277{left:153.333333pt;}
.x7a_c00277{left:160.000000pt;}
.x3a_c00277{left:161.333333pt;}
.x56_c00277{left:164.000000pt;}
.xf8_c00277{left:168.373333pt;}
.xc9_c00277{left:169.333333pt;}
.xf_c00277{left:171.626667pt;}
.xcf_c00277{left:173.333333pt;}
.x72_c00277{left:174.666667pt;}
.xa7_c00277{left:176.000000pt;}
.x2b_c00277{left:177.333333pt;}
.x5f_c00277{left:179.040000pt;}
.x10d_c00277{left:180.000000pt;}
.xdb_c00277{left:182.666667pt;}
.x108_c00277{left:184.000000pt;}
.x97_c00277{left:185.706667pt;}
.xd5_c00277{left:186.666667pt;}
.x49_c00277{left:189.333333pt;}
.x54_c00277{left:191.626667pt;}
.x9e_c00277{left:193.333333pt;}
.x7b_c00277{left:196.000000pt;}
.x57_c00277{left:197.333333pt;}
.x10_c00277{left:198.666667pt;}
.x83_c00277{left:200.000000pt;}
.x73_c00277{left:201.706667pt;}
.xdf_c00277{left:202.666667pt;}
.x60_c00277{left:203.626667pt;}
.x4_c00277{left:204.960000pt;}
.xa8_c00277{left:207.040000pt;}
.x55_c00277{left:208.373333pt;}
.x74_c00277{left:209.706667pt;}
.x9f_c00277{left:210.666667pt;}
.x61_c00277{left:213.706667pt;}
.x2c_c00277{left:214.666667pt;}
.x1e_c00277{left:221.333333pt;}
.x3b_c00277{left:225.333333pt;}
.xe4_c00277{left:227.040000pt;}
.x84_c00277{left:228.373333pt;}
.x85_c00277{left:229.333333pt;}
.xa9_c00277{left:230.666667pt;}
.x2d_c00277{left:232.000000pt;}
.x98_c00277{left:232.960000pt;}
.x11_c00277{left:236.000000pt;}
.xca_c00277{left:237.333333pt;}
.x68_c00277{left:238.666667pt;}
.xd6_c00277{left:240.373333pt;}
.x58_c00277{left:242.293333pt;}
.xd0_c00277{left:243.626667pt;}
.xe9_c00277{left:247.040000pt;}
.x8c_c00277{left:248.000000pt;}
.x5_c00277{left:249.333333pt;}
.x4a_c00277{left:250.293333pt;}
.x7c_c00277{left:251.626667pt;}
.x3c_c00277{left:254.666667pt;}
.x69_c00277{left:256.000000pt;}
.x8d_c00277{left:257.333333pt;}
.x12_c00277{left:259.040000pt;}
.x62_c00277{left:260.000000pt;}
.x1f_c00277{left:261.706667pt;}
.x2e_c00277{left:263.040000pt;}
.x99_c00277{left:264.760000pt;}
.x4b_c00277{left:266.293333pt;}
.xaa_c00277{left:269.333333pt;}
.x3d_c00277{left:272.000000pt;}
.xbe_c00277{left:274.666667pt;}
.x92_c00277{left:276.000000pt;}
.x86_c00277{left:278.666667pt;}
.x6_c00277{left:280.000000pt;}
.xf4_c00277{left:281.333333pt;}
.x59_c00277{left:282.666667pt;}
.xd7_c00277{left:284.000000pt;}
.xec_c00277{left:286.293333pt;}
.x8e_c00277{left:287.626667pt;}
.xb6_c00277{left:289.333333pt;}
.xab_c00277{left:291.040000pt;}
.x20_c00277{left:292.000000pt;}
.x2f_c00277{left:293.706667pt;}
.xd1_c00277{left:294.666667pt;}
.x3e_c00277{left:296.000000pt;}
.x87_c00277{left:297.333333pt;}
.x10e_c00277{left:298.666667pt;}
.x63_c00277{left:300.000000pt;}
.xd2_c00277{left:304.000000pt;}
.x13_c00277{left:306.293333pt;}
.xf9_c00277{left:308.000000pt;}
.x8f_c00277{left:312.373333pt;}
.x21_c00277{left:315.040000pt;}
.x3f_c00277{left:316.000000pt;}
.x6a_c00277{left:318.666667pt;}
.xa0_c00277{left:320.373333pt;}
.x93_c00277{left:321.333333pt;}
.x14_c00277{left:322.293333pt;}
.x10f_c00277{left:324.000000pt;}
.xc3_c00277{left:325.706667pt;}
.xe5_c00277{left:327.040000pt;}
.x7d_c00277{left:328.000000pt;}
.x64_c00277{left:329.706667pt;}
.x4c_c00277{left:330.666667pt;}
.xa1_c00277{left:332.000000pt;}
.x104_c00277{left:334.293333pt;}
.x30_c00277{left:338.666667pt;}
.xf5_c00277{left:339.626667pt;}
.x15_c00277{left:343.040000pt;}
.xff_c00277{left:345.333333pt;}
.x7_c00277{left:349.333333pt;}
.xe0_c00277{left:351.040000pt;}
.x6b_c00277{left:352.000000pt;}
.xb0_c00277{left:354.293333pt;}
.x75_c00277{left:357.333333pt;}
.xed_c00277{left:358.666667pt;}
.x4d_c00277{left:360.373333pt;}
.x2_c00277{left:361.333333pt;}
.xcb_c00277{left:363.626667pt;}
.x16_c00277{left:364.960000pt;}
.x40_c00277{left:366.293333pt;}
.xd3_c00277{left:368.373333pt;}
.xb7_c00277{left:369.333333pt;}
.xf6_c00277{left:370.293333pt;}
.x112_c00277{left:372.373333pt;}
.xfa_c00277{left:374.666667pt;}
.x90_c00277{left:376.373333pt;}
.xcc_c00277{left:377.333333pt;}
.x31_c00277{left:378.666667pt;}
.xb8_c00277{left:380.000000pt;}
.x41_c00277{left:382.666667pt;}
.x100_c00277{left:384.000000pt;}
.xac_c00277{left:386.093333pt;}
.xea_c00277{left:387.040000pt;}
.x8_c00277{left:389.333333pt;}
.xee_c00277{left:391.626667pt;}
.x22_c00277{left:393.333333pt;}
.x110_c00277{left:394.293333pt;}
.x4e_c00277{left:396.000000pt;}
.x113_c00277{left:397.333333pt;}
.x91_c00277{left:400.000000pt;}
.xfb_c00277{left:401.333333pt;}
.xdc_c00277{left:402.666667pt;}
.xd4_c00277{left:405.333333pt;}
.x4f_c00277{left:406.666667pt;}
.xf7_c00277{left:407.626667pt;}
.x17_c00277{left:409.333333pt;}
.xa2_c00277{left:411.040000pt;}
.x5a_c00277{left:412.000000pt;}
.xb9_c00277{left:412.960000pt;}
.x7e_c00277{left:415.040000pt;}
.xbf_c00277{left:416.000000pt;}
.x32_c00277{left:420.000000pt;}
.x94_c00277{left:421.333333pt;}
.x9a_c00277{left:424.000000pt;}
.x18_c00277{left:425.333333pt;}
.x109_c00277{left:426.666667pt;}
.x23_c00277{left:428.000000pt;}
.x7f_c00277{left:430.293333pt;}
.xcd_c00277{left:432.000000pt;}
.xb1_c00277{left:434.666667pt;}
.x9_c00277{left:436.000000pt;}
.x65_c00277{left:437.706667pt;}
.xc4_c00277{left:439.040000pt;}
.x50_c00277{left:440.960000pt;}
.x76_c00277{left:444.000000pt;}
.xad_c00277{left:445.706667pt;}
.xfc_c00277{left:446.666667pt;}
.x42_c00277{left:448.373333pt;}
.xe6_c00277{left:449.706667pt;}
.xa_c00277{left:451.040000pt;}
.x101_c00277{left:453.706667pt;}
.x95_c00277{left:454.666667pt;}
.x19_c00277{left:456.000000pt;}
.xef_c00277{left:459.626667pt;}
.x66_c00277{left:461.333333pt;}
.x5b_c00277{left:464.000000pt;}
.x88_c00277{left:466.293333pt;}
.x24_c00277{left:467.626667pt;}
.xc0_c00277{left:470.666667pt;}
.xba_c00277{left:472.000000pt;}
.xdd_c00277{left:476.373333pt;}
.xb2_c00277{left:477.906667pt;}
.x114_c00277{left:479.040000pt;}
.x43_c00277{left:481.333333pt;}
.x33_c00277{left:483.040000pt;}
.x6c_c00277{left:484.000000pt;}
.x25_c00277{left:485.706667pt;}
.xf0_c00277{left:486.666667pt;}
.xb_c00277{left:489.706667pt;}
.xa3_c00277{left:491.040000pt;}
.x89_c00277{left:492.960000pt;}
.x111_c00277{left:494.666667pt;}
.xd8_c00277{left:497.706667pt;}
.x44_c00277{left:498.666667pt;}
.x105_c00277{left:501.706667pt;}
.xae_c00277{left:504.000000pt;}
.x51_c00277{left:507.040000pt;}
.xbb_c00277{left:509.333333pt;}
.x34_c00277{left:511.040000pt;}
.x80_c00277{left:512.000000pt;}
.xde_c00277{left:513.333333pt;}
.x5c_c00277{left:514.666667pt;}
.x1a_c00277{left:516.373333pt;}
.x77_c00277{left:520.000000pt;}
.x9b_c00277{left:521.333333pt;}
.x45_c00277{left:522.293333pt;}
.x106_c00277{left:524.000000pt;}
.xf1_c00277{left:525.333333pt;}
.x6d_c00277{left:526.666667pt;}
.x96_c00277{left:528.000000pt;}
.x10c_c00277{left:529.906667pt;}
.x52_c00277{left:531.040000pt;}
.xc1_c00277{left:532.000000pt;}
.xa4_c00277{left:535.040000pt;}
.x26_c00277{left:536.000000pt;}
.xf2_c00277{left:537.333333pt;}
.x8a_c00277{left:538.666667pt;}
.x1b_c00277{left:539.626667pt;}
.x35_c00277{left:541.333333pt;}
.x9c_c00277{left:544.373333pt;}
.x10a_c00277{left:545.706667pt;}
.xc_c00277{left:546.666667pt;}
.x6e_c00277{left:549.333333pt;}
.xb3_c00277{left:551.040000pt;}
.x36_c00277{left:552.000000pt;}
.xce_c00277{left:553.333333pt;}
.x27_c00277{left:555.040000pt;}
.xe1_c00277{left:557.333333pt;}
.xb4_c00277{left:560.000000pt;}
.xbc_c00277{left:561.333333pt;}
.x78_c00277{left:562.666667pt;}
.xc5_c00277{left:565.333333pt;}
.xfd_c00277{left:566.666667pt;}
.x8b_c00277{left:568.373333pt;}
.xd9_c00277{left:572.960000pt;}
.xa5_c00277{left:575.040000pt;}
.xe7_c00277{left:576.000000pt;}
.xaf_c00277{left:577.333333pt;}
.xc6_c00277{left:578.666667pt;}
.x28_c00277{left:579.626667pt;}
.x46_c00277{left:581.333333pt;}
.xd_c00277{left:583.040000pt;}
.xf3_c00277{left:584.960000pt;}
.x6f_c00277{left:586.293333pt;}
.x37_c00277{left:588.000000pt;}
.xc2_c00277{left:589.706667pt;}
.xb5_c00277{left:590.666667pt;}
.x53_c00277{left:591.626667pt;}
.x115_c00277{left:593.333333pt;}
.x5d_c00277{left:594.293333pt;}
.x9d_c00277{left:596.000000pt;}
.x10b_c00277{left:597.706667pt;}
.x70_c00277{left:598.666667pt;}
.xc7_c00277{left:600.373333pt;}
.xeb_c00277{left:601.333333pt;}
.xe2_c00277{left:604.000000pt;}
.x38_c00277{left:606.466667pt;}
.xe_c00277{left:608.000000pt;}
.xfe_c00277{left:609.706667pt;}
.xe8_c00277{left:610.666667pt;}
.x116_c00277{left:612.000000pt;}
.x81_c00277{left:613.333333pt;}
.xe3_c00277{left:614.666667pt;}
.xa6_c00277{left:616.373333pt;}
.x1c_c00277{left:620.000000pt;}
.xda_c00277{left:622.666667pt;}
.x82_c00277{left:624.000000pt;}
.x29_c00277{left:626.666667pt;}
.x79_c00277{left:628.000000pt;}
.x47_c00277{left:629.333333pt;}
.x71_c00277{left:630.666667pt;}
.x102_c00277{left:633.333333pt;}
.x39_c00277{left:637.333333pt;}
.xc8_c00277{left:638.293333pt;}
.x2a_c00277{left:640.000000pt;}
.x103_c00277{left:642.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_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_20104a69ff5833f0ce98e720.woff2')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5a_c00278{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m95_c00278{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);}
.m88_c00278{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.m5c_c00278{transform:matrix(0.357983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357983,0.000000,0.000000,0.250000,0,0);}
.m78_c00278{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.ma5_c00278{transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);}
.m80_c00278{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m59_c00278{transform:matrix(0.368908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368908,0.000000,0.000000,0.250000,0,0);}
.me0_c00278{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mf7_c00278{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.m108_c00278{transform:matrix(0.373850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373850,0.000000,0.000000,0.250000,0,0);}
.m43_c00278{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m52_c00278{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m76_c00278{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m4c_c00278{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.meb_c00278{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.m82_c00278{transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);}
.ma3_c00278{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m8f_c00278{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.mdf_c00278{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.ma4_c00278{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m36_c00278{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.me6_c00278{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m86_c00278{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m4f_c00278{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m106_c00278{transform:matrix(0.395322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395322,0.000000,0.000000,0.250000,0,0);}
.m48_c00278{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m70_c00278{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.m6b_c00278{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mbf_c00278{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);}
.m72_c00278{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mcd_c00278{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.ma_c00278{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m2_c00278{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mbd_c00278{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m45_c00278{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m69_c00278{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m7a_c00278{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m67_c00278{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m3f_c00278{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mf8_c00278{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.mae_c00278{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.mf_c00278{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m47_c00278{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.mc7_c00278{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.md2_c00278{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m32_c00278{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m97_c00278{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m22_c00278{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.m8e_c00278{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m49_c00278{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mc6_c00278{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m74_c00278{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m62_c00278{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.me7_c00278{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.mdb_c00278{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.ma9_c00278{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.md0_c00278{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m77_c00278{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m3c_c00278{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.ma1_c00278{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.me_c00278{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mda_c00278{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m5e_c00278{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m18_c00278{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m85_c00278{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m41_c00278{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.ma2_c00278{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mcb_c00278{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m103_c00278{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.mbc_c00278{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m1d_c00278{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m81_c00278{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.maf_c00278{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.mba_c00278{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m29_c00278{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m6e_c00278{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m57_c00278{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m87_c00278{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mde_c00278{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m94_c00278{transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);}
.m44_c00278{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m7e_c00278{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m89_c00278{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.mbe_c00278{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.mc0_c00278{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.mb4_c00278{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m9_c00278{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.md8_c00278{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.ma8_c00278{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.mdd_c00278{transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);}
.m50_c00278{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m84_c00278{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m9f_c00278{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m13_c00278{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mee_c00278{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m6f_c00278{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m4b_c00278{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.md1_c00278{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m3e_c00278{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m79_c00278{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.ma6_c00278{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.md7_c00278{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.mc9_c00278{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m8b_c00278{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.mfb_c00278{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.me9_c00278{transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);}
.m68_c00278{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.mfd_c00278{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.mb5_c00278{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m17_c00278{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mf3_c00278{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m25_c00278{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.me3_c00278{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m107_c00278{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.me8_c00278{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m55_c00278{transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);}
.mf5_c00278{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m1c_c00278{transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);}
.m1_c00278{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m24_c00278{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m1e_c00278{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mce_c00278{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.md3_c00278{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m15_c00278{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);}
.m34_c00278{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m104_c00278{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.mab_c00278{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m6a_c00278{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mca_c00278{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mf9_c00278{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.mc3_c00278{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mec_c00278{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m63_c00278{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.md_c00278{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m8d_c00278{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.mb9_c00278{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m39_c00278{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m20_c00278{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m19_c00278{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m73_c00278{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m8c_c00278{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.md9_c00278{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mf0_c00278{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m90_c00278{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.mbb_c00278{transform:matrix(0.525974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525974,0.000000,0.000000,0.250000,0,0);}
.m5_c00278{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m7c_c00278{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m16_c00278{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mcf_c00278{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m3_c00278{transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);}
.mc_c00278{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mb1_c00278{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.mc1_c00278{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m83_c00278{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m4_c00278{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mf4_c00278{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m2b_c00278{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m21_c00278{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m2c_c00278{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mb6_c00278{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m64_c00278{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m3a_c00278{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m37_c00278{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m26_c00278{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mea_c00278{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m9d_c00278{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m2d_c00278{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m1a_c00278{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m23_c00278{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m7b_c00278{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mc5_c00278{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m4e_c00278{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m6d_c00278{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mb7_c00278{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m51_c00278{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m2a_c00278{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.ma0_c00278{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m66_c00278{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m1b_c00278{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mb3_c00278{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m12_c00278{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m75_c00278{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m10_c00278{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m31_c00278{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m5d_c00278{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.ma7_c00278{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.maa_c00278{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m46_c00278{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m5f_c00278{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m7f_c00278{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m101_c00278{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mf1_c00278{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.mc8_c00278{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.mac_c00278{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m9b_c00278{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.m92_c00278{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m14_c00278{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m8a_c00278{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m42_c00278{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.md4_c00278{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m61_c00278{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m3b_c00278{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m91_c00278{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m28_c00278{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.me2_c00278{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m38_c00278{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m2e_c00278{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m71_c00278{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m93_c00278{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m7d_c00278{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.mdc_c00278{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m98_c00278{transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);}
.mef_c00278{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m9e_c00278{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m3d_c00278{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m105_c00278{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.md5_c00278{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m53_c00278{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m4d_c00278{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m33_c00278{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);}
.me5_c00278{transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);}
.mff_c00278{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.m54_c00278{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m1f_c00278{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m6c_c00278{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.me1_c00278{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.mfc_c00278{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_c00278{transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);}
.mfa_c00278{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.m0_c00278{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m5b_c00278{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m9a_c00278{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m30_c00278{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.mb0_c00278{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m96_c00278{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m65_c00278{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m2f_c00278{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mad_c00278{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m40_c00278{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.mcc_c00278{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m35_c00278{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m56_c00278{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m58_c00278{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m100_c00278{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.mf2_c00278{transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);}
.mb_c00278{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m4a_c00278{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m60_c00278{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.md6_c00278{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m11_c00278{transform:matrix(0.742788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742788,0.000000,0.000000,0.250000,0,0);}
.m27_c00278{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m6_c00278{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m102_c00278{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mc4_c00278{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m7_c00278{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mc2_c00278{transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);}
.me4_c00278{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m8_c00278{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mb2_c00278{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mf6_c00278{transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);}
.m99_c00278{transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);}
.mfe_c00278{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.med_c00278{transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);}
.m9c_c00278{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.v1_c00278{vertical-align:-6.000000px;}
.v0_c00278{vertical-align:0.000000px;}
.ls0_c00278{letter-spacing:0.000000px;}
.sc__c00278{text-shadow:none;}
.sc0_c00278{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00278{-webkit-text-stroke:0px transparent;}
.sc0_c00278{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00278{word-spacing:-5.126959px;}
.ws3_c00278{word-spacing:0.000000px;}
.ws0_c00278{word-spacing:2.385343px;}
.ws1_c00278{word-spacing:31.832400px;}
.fc0_c00278{color:transparent;}
.fs6_c00278{font-size:3.420000px;}
.fs3_c00278{font-size:18.720000px;}
.fs0_c00278{font-size:20.400000px;}
.fs5_c00278{font-size:25.500000px;}
.fs1_c00278{font-size:28.920000px;}
.fs4_c00278{font-size:32.340000px;}
.fs2_c00278{font-size:35.700000px;}
.fs7_c00278{font-size:39.120000px;}
.y0_c00278{bottom:0.000000px;}
.yc9_c00278{bottom:234.405000px;}
.yc7_c00278{bottom:250.680000px;}
.yc6_c00278{bottom:251.745000px;}
.yc8_c00278{bottom:251.970000px;}
.yc4_c00278{bottom:253.905000px;}
.yc5_c00278{bottom:254.130000px;}
.yc0_c00278{bottom:270.405000px;}
.yc3_c00278{bottom:271.245000px;}
.ybe_c00278{bottom:273.405000px;}
.ybf_c00278{bottom:273.630000px;}
.yc1_c00278{bottom:274.470000px;}
.yc2_c00278{bottom:274.905000px;}
.ybb_c00278{bottom:291.405000px;}
.ybc_c00278{bottom:292.050000px;}
.ybd_c00278{bottom:292.245000px;}
.yb7_c00278{bottom:292.905000px;}
.yba_c00278{bottom:293.130000px;}
.yb9_c00278{bottom:293.970000px;}
.yb8_c00278{bottom:294.405000px;}
.yb6_c00278{bottom:311.745000px;}
.yb4_c00278{bottom:312.630000px;}
.yb3_c00278{bottom:313.050000px;}
.yb5_c00278{bottom:313.905000px;}
.yaf_c00278{bottom:332.325000px;}
.yb2_c00278{bottom:332.745000px;}
.yb0_c00278{bottom:333.405000px;}
.yae_c00278{bottom:333.630000px;}
.yb1_c00278{bottom:334.470000px;}
.yaa_c00278{bottom:350.745000px;}
.yab_c00278{bottom:351.825000px;}
.ya9_c00278{bottom:352.905000px;}
.yac_c00278{bottom:353.130000px;}
.yad_c00278{bottom:354.405000px;}
.ya4_c00278{bottom:370.245000px;}
.ya8_c00278{bottom:371.745000px;}
.ya5_c00278{bottom:372.405000px;}
.ya6_c00278{bottom:372.630000px;}
.ya7_c00278{bottom:373.470000px;}
.ya1_c00278{bottom:391.245000px;}
.ya3_c00278{bottom:391.905000px;}
.ya2_c00278{bottom:392.130000px;}
.ya0_c00278{bottom:393.405000px;}
.y9c_c00278{bottom:408.405000px;}
.y9f_c00278{bottom:410.325000px;}
.y9e_c00278{bottom:410.745000px;}
.y9a_c00278{bottom:411.630000px;}
.y9d_c00278{bottom:411.825000px;}
.y99_c00278{bottom:412.470000px;}
.y9b_c00278{bottom:412.905000px;}
.y97_c00278{bottom:430.245000px;}
.y95_c00278{bottom:431.130000px;}
.y96_c00278{bottom:431.325000px;}
.y98_c00278{bottom:431.550000px;}
.y94_c00278{bottom:432.405000px;}
.y92_c00278{bottom:449.745000px;}
.y93_c00278{bottom:451.905000px;}
.y8e_c00278{bottom:469.245000px;}
.y91_c00278{bottom:470.325000px;}
.y8f_c00278{bottom:471.405000px;}
.y90_c00278{bottom:471.630000px;}
.y8d_c00278{bottom:490.905000px;}
.y8c_c00278{bottom:491.130000px;}
.y8a_c00278{bottom:491.970000px;}
.y8b_c00278{bottom:492.405000px;}
.y88_c00278{bottom:509.745000px;}
.y89_c00278{bottom:511.905000px;}
.y86_c00278{bottom:526.905000px;}
.y87_c00278{bottom:530.130000px;}
.y84_c00278{bottom:530.325000px;}
.y85_c00278{bottom:531.405000px;}
.y82_c00278{bottom:548.745000px;}
.y80_c00278{bottom:549.825000px;}
.y83_c00278{bottom:550.470000px;}
.y81_c00278{bottom:550.905000px;}
.y7c_c00278{bottom:568.245000px;}
.y7d_c00278{bottom:570.405000px;}
.y7f_c00278{bottom:570.630000px;}
.y7e_c00278{bottom:571.470000px;}
.y77_c00278{bottom:587.325000px;}
.y79_c00278{bottom:587.745000px;}
.y7b_c00278{bottom:589.245000px;}
.y76_c00278{bottom:589.905000px;}
.y7a_c00278{bottom:590.130000px;}
.y78_c00278{bottom:591.405000px;}
.y75_c00278{bottom:607.245000px;}
.y71_c00278{bottom:607.680000px;}
.y70_c00278{bottom:608.745000px;}
.y72_c00278{bottom:609.405000px;}
.y74_c00278{bottom:609.630000px;}
.y73_c00278{bottom:610.905000px;}
.y6c_c00278{bottom:628.245000px;}
.y6d_c00278{bottom:628.905000px;}
.y6f_c00278{bottom:629.130000px;}
.y6e_c00278{bottom:629.970000px;}
.y6b_c00278{bottom:630.405000px;}
.y6a_c00278{bottom:647.745000px;}
.y69_c00278{bottom:649.470000px;}
.y67_c00278{bottom:649.905000px;}
.y68_c00278{bottom:649.920000px;}
.y64_c00278{bottom:665.130000px;}
.y66_c00278{bottom:665.970000px;}
.y63_c00278{bottom:666.405000px;}
.y62_c00278{bottom:667.245000px;}
.y61_c00278{bottom:667.470000px;}
.y5f_c00278{bottom:668.325000px;}
.y65_c00278{bottom:668.550000px;}
.y60_c00278{bottom:669.405000px;}
.y58_c00278{bottom:685.905000px;}
.y5a_c00278{bottom:686.745000px;}
.y5b_c00278{bottom:686.970000px;}
.y5d_c00278{bottom:687.405000px;}
.y59_c00278{bottom:687.825000px;}
.y5e_c00278{bottom:688.245000px;}
.y5c_c00278{bottom:688.905000px;}
.y55_c00278{bottom:706.245000px;}
.y57_c00278{bottom:706.905000px;}
.y50_c00278{bottom:707.550000px;}
.y52_c00278{bottom:707.745000px;}
.y56_c00278{bottom:707.970000px;}
.y54_c00278{bottom:708.405000px;}
.y53_c00278{bottom:708.630000px;}
.y51_c00278{bottom:709.905000px;}
.y4c_c00278{bottom:724.905000px;}
.y4f_c00278{bottom:726.405000px;}
.y4b_c00278{bottom:727.245000px;}
.y4d_c00278{bottom:727.905000px;}
.y4a_c00278{bottom:728.130000px;}
.y4e_c00278{bottom:728.970000px;}
.y49_c00278{bottom:729.405000px;}
.y46_c00278{bottom:746.745000px;}
.y47_c00278{bottom:747.825000px;}
.y45_c00278{bottom:748.470000px;}
.y44_c00278{bottom:748.905000px;}
.y48_c00278{bottom:749.130000px;}
.y43_c00278{bottom:765.405000px;}
.y42_c00278{bottom:766.245000px;}
.y41_c00278{bottom:768.405000px;}
.y40_c00278{bottom:785.745000px;}
.y3f_c00278{bottom:787.905000px;}
.y3e_c00278{bottom:788.970000px;}
.y3c_c00278{bottom:804.405000px;}
.y3b_c00278{bottom:805.245000px;}
.y3d_c00278{bottom:806.325000px;}
.y3a_c00278{bottom:807.405000px;}
.y39_c00278{bottom:808.470000px;}
.y38_c00278{bottom:824.745000px;}
.y36_c00278{bottom:825.630000px;}
.y37_c00278{bottom:826.905000px;}
.y31_c00278{bottom:845.325000px;}
.y35_c00278{bottom:845.745000px;}
.y32_c00278{bottom:846.405000px;}
.y33_c00278{bottom:846.630000px;}
.y34_c00278{bottom:847.905000px;}
.y2d_c00278{bottom:865.245000px;}
.y2e_c00278{bottom:866.130000px;}
.y30_c00278{bottom:866.970000px;}
.y2f_c00278{bottom:867.405000px;}
.y2c_c00278{bottom:883.470000px;}
.y29_c00278{bottom:884.745000px;}
.y28_c00278{bottom:885.630000px;}
.y2a_c00278{bottom:885.825000px;}
.y2b_c00278{bottom:886.470000px;}
.y27_c00278{bottom:886.905000px;}
.y24_c00278{bottom:904.245000px;}
.y25_c00278{bottom:905.130000px;}
.y26_c00278{bottom:905.970000px;}
.y23_c00278{bottom:906.405000px;}
.y20_c00278{bottom:923.745000px;}
.y21_c00278{bottom:924.630000px;}
.y1f_c00278{bottom:925.905000px;}
.y22_c00278{bottom:926.970000px;}
.y1e_c00278{bottom:943.245000px;}
.y1c_c00278{bottom:945.405000px;}
.y1d_c00278{bottom:945.630000px;}
.y1b_c00278{bottom:962.745000px;}
.y19_c00278{bottom:964.905000px;}
.y1a_c00278{bottom:965.130000px;}
.y17_c00278{bottom:982.245000px;}
.y15_c00278{bottom:984.405000px;}
.y16_c00278{bottom:985.470000px;}
.y18_c00278{bottom:985.905000px;}
.y14_c00278{bottom:1003.245000px;}
.y10_c00278{bottom:1003.905000px;}
.y13_c00278{bottom:1004.130000px;}
.y12_c00278{bottom:1004.970000px;}
.y11_c00278{bottom:1005.405000px;}
.yd_c00278{bottom:1022.325000px;}
.yc_c00278{bottom:1023.405000px;}
.yf_c00278{bottom:1023.630000px;}
.ye_c00278{bottom:1024.470000px;}
.yb_c00278{bottom:1040.745000px;}
.y9_c00278{bottom:1041.825000px;}
.ya_c00278{bottom:1042.905000px;}
.y7_c00278{bottom:1043.130000px;}
.y8_c00278{bottom:1044.405000px;}
.y6_c00278{bottom:1060.245000px;}
.y3_c00278{bottom:1061.745000px;}
.y5_c00278{bottom:1062.630000px;}
.y4_c00278{bottom:1063.905000px;}
.y2_c00278{bottom:1099.905000px;}
.y1_c00278{bottom:1102.050000px;}
.h7_c00278{height:4.206533px;}
.h4_c00278{height:23.025234px;}
.h1_c00278{height:25.091602px;}
.h6_c00278{height:31.364502px;}
.h2_c00278{height:35.571035px;}
.h5_c00278{height:39.777568px;}
.h3_c00278{height:43.910303px;}
.h8_c00278{height:48.116836px;}
.h0_c00278{height:1335.000000px;}
.w0_c00278{width:880.500000px;}
.x0_c00278{left:0.000000px;}
.x3_c00278{left:151.920000px;}
.x95_c00278{left:153.000000px;}
.x102_c00278{left:154.080000px;}
.xab_c00278{left:155.355000px;}
.xac_c00278{left:166.500000px;}
.x8c_c00278{left:168.000000px;}
.xee_c00278{left:169.080000px;}
.x8a_c00278{left:172.920000px;}
.x103_c00278{left:175.920000px;}
.xbb_c00278{left:178.080000px;}
.x72_c00278{left:180.000000px;}
.x2e_c00278{left:181.080000px;}
.x54_c00278{left:183.420000px;}
.xb2_c00278{left:185.580000px;}
.xeb_c00278{left:187.080000px;}
.x9a_c00278{left:189.420000px;}
.xe7_c00278{left:190.500000px;}
.x5e_c00278{left:191.580000px;}
.x20_c00278{left:193.920000px;}
.x84_c00278{left:196.080000px;}
.x47_c00278{left:198.000000px;}
.x6b_c00278{left:199.500000px;}
.x9f_c00278{left:200.580000px;}
.x109_c00278{left:202.500000px;}
.x111_c00278{left:204.000000px;}
.x12_c00278{left:205.500000px;}
.x4_c00278{left:207.000000px;}
.x55_c00278{left:210.420000px;}
.x5f_c00278{left:211.920000px;}
.xe0_c00278{left:214.080000px;}
.xf5_c00278{left:216.000000px;}
.x9b_c00278{left:217.500000px;}
.x21_c00278{left:219.420000px;}
.xb3_c00278{left:220.500000px;}
.xd4_c00278{left:222.420000px;}
.x112_c00278{left:223.500000px;}
.x13_c00278{left:228.420000px;}
.x7b_c00278{left:231.000000px;}
.x8d_c00278{left:232.920000px;}
.x2f_c00278{left:234.000000px;}
.xbc_c00278{left:235.500000px;}
.x39_c00278{left:237.420000px;}
.xc1_c00278{left:238.500000px;}
.x60_c00278{left:240.420000px;}
.xdc_c00278{left:242.580000px;}
.xad_c00278{left:246.000000px;}
.x96_c00278{left:248.580000px;}
.xfa_c00278{left:250.500000px;}
.x48_c00278{left:252.000000px;}
.xcf_c00278{left:253.080000px;}
.x11b_c00278{left:254.145000px;}
.x14_c00278{left:255.420000px;}
.x113_c00278{left:256.500000px;}
.x56_c00278{left:259.500000px;}
.xa0_c00278{left:262.080000px;}
.xd5_c00278{left:264.420000px;}
.x30_c00278{left:265.920000px;}
.x85_c00278{left:267.420000px;}
.xe8_c00278{left:268.500000px;}
.x104_c00278{left:269.580000px;}
.x22_c00278{left:271.500000px;}
.xcb_c00278{left:273.000000px;}
.x8e_c00278{left:274.080000px;}
.x3a_c00278{left:276.000000px;}
.x49_c00278{left:277.500000px;}
.xe1_c00278{left:279.000000px;}
.x10e_c00278{left:280.500000px;}
.xf6_c00278{left:283.500000px;}
.x5_c00278{left:285.000000px;}
.xa6_c00278{left:288.420000px;}
.xc2_c00278{left:291.000000px;}
.xa1_c00278{left:292.500000px;}
.x97_c00278{left:294.000000px;}
.x61_c00278{left:295.500000px;}
.x11a_c00278{left:297.000000px;}
.x23_c00278{left:301.500000px;}
.x3b_c00278{left:303.000000px;}
.x114_c00278{left:304.500000px;}
.x73_c00278{left:306.420000px;}
.x86_c00278{left:308.580000px;}
.x15_c00278{left:310.500000px;}
.xbd_c00278{left:311.580000px;}
.x7c_c00278{left:313.920000px;}
.x6_c00278{left:316.500000px;}
.x57_c00278{left:318.420000px;}
.xef_c00278{left:319.500000px;}
.x31_c00278{left:322.920000px;}
.xd6_c00278{left:324.000000px;}
.x6c_c00278{left:325.500000px;}
.xe2_c00278{left:328.080000px;}
.x24_c00278{left:329.580000px;}
.xc3_c00278{left:331.080000px;}
.x8b_c00278{left:334.920000px;}
.x74_c00278{left:336.000000px;}
.xf0_c00278{left:337.500000px;}
.x7d_c00278{left:339.000000px;}
.x3c_c00278{left:340.500000px;}
.xdd_c00278{left:341.775000px;}
.xd7_c00278{left:343.080000px;}
.x32_c00278{left:345.000000px;}
.x25_c00278{left:346.920000px;}
.xa7_c00278{left:348.000000px;}
.x62_c00278{left:349.080000px;}
.x87_c00278{left:351.000000px;}
.xf1_c00278{left:352.920000px;}
.x16_c00278{left:355.500000px;}
.x7_c00278{left:357.000000px;}
.x3d_c00278{left:359.580000px;}
.xcc_c00278{left:361.920000px;}
.x4a_c00278{left:364.920000px;}
.x58_c00278{left:367.500000px;}
.x63_c00278{left:369.420000px;}
.x8f_c00278{left:370.500000px;}
.x33_c00278{left:372.000000px;}
.x26_c00278{left:373.920000px;}
.xf7_c00278{left:375.420000px;}
.x7e_c00278{left:377.580000px;}
.x105_c00278{left:379.080000px;}
.xde_c00278{left:381.000000px;}
.x75_c00278{left:382.080000px;}
.x8_c00278{left:384.000000px;}
.x17_c00278{left:387.420000px;}
.x4b_c00278{left:391.500000px;}
.xa8_c00278{left:392.580000px;}
.x7f_c00278{left:394.500000px;}
.x64_c00278{left:396.000000px;}
.xbe_c00278{left:397.500000px;}
.xcd_c00278{left:399.000000px;}
.xe3_c00278{left:400.080000px;}
.x10a_c00278{left:402.000000px;}
.x1_c00278{left:403.500000px;}
.x3e_c00278{left:405.420000px;}
.x106_c00278{left:406.920000px;}
.x9c_c00278{left:408.000000px;}
.xb4_c00278{left:409.080000px;}
.x34_c00278{left:411.000000px;}
.x27_c00278{left:415.920000px;}
.xfb_c00278{left:417.000000px;}
.xa9_c00278{left:418.500000px;}
.x18_c00278{left:419.580000px;}
.x88_c00278{left:421.920000px;}
.x9_c00278{left:423.000000px;}
.xec_c00278{left:424.500000px;}
.xfe_c00278{left:427.500000px;}
.xc7_c00278{left:429.000000px;}
.x4c_c00278{left:430.500000px;}
.xa2_c00278{left:431.580000px;}
.x3f_c00278{left:433.500000px;}
.xb5_c00278{left:435.000000px;}
.x65_c00278{left:437.580000px;}
.x19_c00278{left:439.920000px;}
.xa_c00278{left:442.500000px;}
.xae_c00278{left:444.000000px;}
.x76_c00278{left:445.080000px;}
.x6d_c00278{left:447.000000px;}
.x9d_c00278{left:449.580000px;}
.x59_c00278{left:451.920000px;}
.x4d_c00278{left:456.000000px;}
.xc4_c00278{left:458.580000px;}
.xe9_c00278{left:461.580000px;}
.x77_c00278{left:463.500000px;}
.xd8_c00278{left:465.000000px;}
.x1a_c00278{left:466.080000px;}
.x66_c00278{left:468.420000px;}
.xed_c00278{left:469.920000px;}
.xb_c00278{left:472.500000px;}
.x11f_c00278{left:474.000000px;}
.xfc_c00278{left:475.920000px;}
.x90_c00278{left:477.000000px;}
.x28_c00278{left:478.080000px;}
.xaf_c00278{left:481.080000px;}
.xbf_c00278{left:482.355000px;}
.xe4_c00278{left:484.500000px;}
.x40_c00278{left:485.580000px;}
.x5a_c00278{left:487.500000px;}
.x6e_c00278{left:490.500000px;}
.x35_c00278{left:493.080000px;}
.x4e_c00278{left:494.580000px;}
.x67_c00278{left:496.500000px;}
.xb6_c00278{left:498.000000px;}
.xc8_c00278{left:499.275000px;}
.xc5_c00278{left:501.000000px;}
.x115_c00278{left:502.500000px;}
.x41_c00278{left:504.000000px;}
.xe5_c00278{left:505.500000px;}
.x29_c00278{left:507.000000px;}
.xf8_c00278{left:508.080000px;}
.xc_c00278{left:511.500000px;}
.xa3_c00278{left:513.000000px;}
.xff_c00278{left:516.000000px;}
.xc6_c00278{left:517.080000px;}
.xc0_c00278{left:519.420000px;}
.x36_c00278{left:522.000000px;}
.x91_c00278{left:523.500000px;}
.x1b_c00278{left:525.000000px;}
.x10f_c00278{left:526.920000px;}
.x80_c00278{left:531.000000px;}
.x42_c00278{left:532.500000px;}
.xd_c00278{left:534.420000px;}
.x9e_c00278{left:535.920000px;}
.x78_c00278{left:538.920000px;}
.x1c_c00278{left:540.420000px;}
.x10b_c00278{left:542.580000px;}
.x11c_c00278{left:546.000000px;}
.xd9_c00278{left:547.500000px;}
.xd0_c00278{left:550.500000px;}
.x89_c00278{left:552.000000px;}
.xf2_c00278{left:553.500000px;}
.x6f_c00278{left:556.500000px;}
.xce_c00278{left:558.000000px;}
.xe_c00278{left:561.420000px;}
.x4f_c00278{left:562.920000px;}
.x116_c00278{left:564.420000px;}
.x68_c00278{left:565.500000px;}
.x92_c00278{left:567.855000px;}
.x10c_c00278{left:568.920000px;}
.xc9_c00278{left:571.080000px;}
.xd1_c00278{left:573.000000px;}
.x98_c00278{left:574.500000px;}
.x43_c00278{left:576.000000px;}
.x100_c00278{left:577.500000px;}
.xea_c00278{left:578.580000px;}
.xda_c00278{left:579.645000px;}
.xb0_c00278{left:581.775000px;}
.x37_c00278{left:583.920000px;}
.x117_c00278{left:585.000000px;}
.xa4_c00278{left:586.080000px;}
.x5b_c00278{left:592.920000px;}
.xfd_c00278{left:594.000000px;}
.x1d_c00278{left:595.920000px;}
.x93_c00278{left:597.000000px;}
.x50_c00278{left:598.920000px;}
.x107_c00278{left:601.920000px;}
.x2a_c00278{left:603.000000px;}
.xa5_c00278{left:604.920000px;}
.xf_c00278{left:609.000000px;}
.x94_c00278{left:612.000000px;}
.xaa_c00278{left:613.080000px;}
.xb7_c00278{left:615.000000px;}
.x99_c00278{left:616.500000px;}
.x81_c00278{left:618.420000px;}
.x5c_c00278{left:621.420000px;}
.x79_c00278{left:622.920000px;}
.x51_c00278{left:625.080000px;}
.x1e_c00278{left:627.000000px;}
.x2b_c00278{left:628.920000px;}
.x69_c00278{left:630.420000px;}
.x101_c00278{left:633.000000px;}
.xdb_c00278{left:634.080000px;}
.xb1_c00278{left:635.775000px;}
.x118_c00278{left:638.355000px;}
.xb8_c00278{left:640.080000px;}
.xd2_c00278{left:642.000000px;}
.x82_c00278{left:645.000000px;}
.x44_c00278{left:646.500000px;}
.x38_c00278{left:648.420000px;}
.x10_c00278{left:652.920000px;}
.x5d_c00278{left:655.080000px;}
.x10d_c00278{left:657.420000px;}
.x70_c00278{left:658.920000px;}
.xb9_c00278{left:660.000000px;}
.x83_c00278{left:661.500000px;}
.x2c_c00278{left:664.500000px;}
.x52_c00278{left:667.500000px;}
.xf3_c00278{left:668.580000px;}
.xdf_c00278{left:672.420000px;}
.x1f_c00278{left:674.580000px;}
.x108_c00278{left:677.145000px;}
.xf9_c00278{left:678.420000px;}
.x110_c00278{left:679.500000px;}
.x11d_c00278{left:681.000000px;}
.x2d_c00278{left:684.000000px;}
.xd3_c00278{left:685.500000px;}
.x45_c00278{left:686.580000px;}
.xe6_c00278{left:688.500000px;}
.x6a_c00278{left:690.000000px;}
.x71_c00278{left:692.580000px;}
.x7a_c00278{left:694.920000px;}
.x53_c00278{left:699.000000px;}
.xf4_c00278{left:700.500000px;}
.x11_c00278{left:701.580000px;}
.x2_c00278{left:703.080000px;}
.x46_c00278{left:705.000000px;}
.x119_c00278{left:706.500000px;}
.xba_c00278{left:709.080000px;}
.x11e_c00278{left:712.500000px;}
.xca_c00278{left:723.000000px;}
@media print{
.v1_c00278{vertical-align:-5.333333pt;}
.v0_c00278{vertical-align:0.000000pt;}
.ls0_c00278{letter-spacing:0.000000pt;}
.ws2_c00278{word-spacing:-4.557297pt;}
.ws3_c00278{word-spacing:0.000000pt;}
.ws0_c00278{word-spacing:2.120305pt;}
.ws1_c00278{word-spacing:28.295467pt;}
.fs6_c00278{font-size:3.040000pt;}
.fs3_c00278{font-size:16.640000pt;}
.fs0_c00278{font-size:18.133333pt;}
.fs5_c00278{font-size:22.666667pt;}
.fs1_c00278{font-size:25.706667pt;}
.fs4_c00278{font-size:28.746667pt;}
.fs2_c00278{font-size:31.733333pt;}
.fs7_c00278{font-size:34.773333pt;}
.y0_c00278{bottom:0.000000pt;}
.yc9_c00278{bottom:208.360000pt;}
.yc7_c00278{bottom:222.826667pt;}
.yc6_c00278{bottom:223.773333pt;}
.yc8_c00278{bottom:223.973333pt;}
.yc4_c00278{bottom:225.693333pt;}
.yc5_c00278{bottom:225.893333pt;}
.yc0_c00278{bottom:240.360000pt;}
.yc3_c00278{bottom:241.106667pt;}
.ybe_c00278{bottom:243.026667pt;}
.ybf_c00278{bottom:243.226667pt;}
.yc1_c00278{bottom:243.973333pt;}
.yc2_c00278{bottom:244.360000pt;}
.ybb_c00278{bottom:259.026667pt;}
.ybc_c00278{bottom:259.600000pt;}
.ybd_c00278{bottom:259.773333pt;}
.yb7_c00278{bottom:260.360000pt;}
.yba_c00278{bottom:260.560000pt;}
.yb9_c00278{bottom:261.306667pt;}
.yb8_c00278{bottom:261.693333pt;}
.yb6_c00278{bottom:277.106667pt;}
.yb4_c00278{bottom:277.893333pt;}
.yb3_c00278{bottom:278.266667pt;}
.yb5_c00278{bottom:279.026667pt;}
.yaf_c00278{bottom:295.400000pt;}
.yb2_c00278{bottom:295.773333pt;}
.yb0_c00278{bottom:296.360000pt;}
.yae_c00278{bottom:296.560000pt;}
.yb1_c00278{bottom:297.306667pt;}
.yaa_c00278{bottom:311.773333pt;}
.yab_c00278{bottom:312.733333pt;}
.ya9_c00278{bottom:313.693333pt;}
.yac_c00278{bottom:313.893333pt;}
.yad_c00278{bottom:315.026667pt;}
.ya4_c00278{bottom:329.106667pt;}
.ya8_c00278{bottom:330.440000pt;}
.ya5_c00278{bottom:331.026667pt;}
.ya6_c00278{bottom:331.226667pt;}
.ya7_c00278{bottom:331.973333pt;}
.ya1_c00278{bottom:347.773333pt;}
.ya3_c00278{bottom:348.360000pt;}
.ya2_c00278{bottom:348.560000pt;}
.ya0_c00278{bottom:349.693333pt;}
.y9c_c00278{bottom:363.026667pt;}
.y9f_c00278{bottom:364.733333pt;}
.y9e_c00278{bottom:365.106667pt;}
.y9a_c00278{bottom:365.893333pt;}
.y9d_c00278{bottom:366.066667pt;}
.y99_c00278{bottom:366.640000pt;}
.y9b_c00278{bottom:367.026667pt;}
.y97_c00278{bottom:382.440000pt;}
.y95_c00278{bottom:383.226667pt;}
.y96_c00278{bottom:383.400000pt;}
.y98_c00278{bottom:383.600000pt;}
.y94_c00278{bottom:384.360000pt;}
.y92_c00278{bottom:399.773333pt;}
.y93_c00278{bottom:401.693333pt;}
.y8e_c00278{bottom:417.106667pt;}
.y91_c00278{bottom:418.066667pt;}
.y8f_c00278{bottom:419.026667pt;}
.y90_c00278{bottom:419.226667pt;}
.y8d_c00278{bottom:436.360000pt;}
.y8c_c00278{bottom:436.560000pt;}
.y8a_c00278{bottom:437.306667pt;}
.y8b_c00278{bottom:437.693333pt;}
.y88_c00278{bottom:453.106667pt;}
.y89_c00278{bottom:455.026667pt;}
.y86_c00278{bottom:468.360000pt;}
.y87_c00278{bottom:471.226667pt;}
.y84_c00278{bottom:471.400000pt;}
.y85_c00278{bottom:472.360000pt;}
.y82_c00278{bottom:487.773333pt;}
.y80_c00278{bottom:488.733333pt;}
.y83_c00278{bottom:489.306667pt;}
.y81_c00278{bottom:489.693333pt;}
.y7c_c00278{bottom:505.106667pt;}
.y7d_c00278{bottom:507.026667pt;}
.y7f_c00278{bottom:507.226667pt;}
.y7e_c00278{bottom:507.973333pt;}
.y77_c00278{bottom:522.066667pt;}
.y79_c00278{bottom:522.440000pt;}
.y7b_c00278{bottom:523.773333pt;}
.y76_c00278{bottom:524.360000pt;}
.y7a_c00278{bottom:524.560000pt;}
.y78_c00278{bottom:525.693333pt;}
.y75_c00278{bottom:539.773333pt;}
.y71_c00278{bottom:540.160000pt;}
.y70_c00278{bottom:541.106667pt;}
.y72_c00278{bottom:541.693333pt;}
.y74_c00278{bottom:541.893333pt;}
.y73_c00278{bottom:543.026667pt;}
.y6c_c00278{bottom:558.440000pt;}
.y6d_c00278{bottom:559.026667pt;}
.y6f_c00278{bottom:559.226667pt;}
.y6e_c00278{bottom:559.973333pt;}
.y6b_c00278{bottom:560.360000pt;}
.y6a_c00278{bottom:575.773333pt;}
.y69_c00278{bottom:577.306667pt;}
.y67_c00278{bottom:577.693333pt;}
.y68_c00278{bottom:577.706667pt;}
.y64_c00278{bottom:591.226667pt;}
.y66_c00278{bottom:591.973333pt;}
.y63_c00278{bottom:592.360000pt;}
.y62_c00278{bottom:593.106667pt;}
.y61_c00278{bottom:593.306667pt;}
.y5f_c00278{bottom:594.066667pt;}
.y65_c00278{bottom:594.266667pt;}
.y60_c00278{bottom:595.026667pt;}
.y58_c00278{bottom:609.693333pt;}
.y5a_c00278{bottom:610.440000pt;}
.y5b_c00278{bottom:610.640000pt;}
.y5d_c00278{bottom:611.026667pt;}
.y59_c00278{bottom:611.400000pt;}
.y5e_c00278{bottom:611.773333pt;}
.y5c_c00278{bottom:612.360000pt;}
.y55_c00278{bottom:627.773333pt;}
.y57_c00278{bottom:628.360000pt;}
.y50_c00278{bottom:628.933333pt;}
.y52_c00278{bottom:629.106667pt;}
.y56_c00278{bottom:629.306667pt;}
.y54_c00278{bottom:629.693333pt;}
.y53_c00278{bottom:629.893333pt;}
.y51_c00278{bottom:631.026667pt;}
.y4c_c00278{bottom:644.360000pt;}
.y4f_c00278{bottom:645.693333pt;}
.y4b_c00278{bottom:646.440000pt;}
.y4d_c00278{bottom:647.026667pt;}
.y4a_c00278{bottom:647.226667pt;}
.y4e_c00278{bottom:647.973333pt;}
.y49_c00278{bottom:648.360000pt;}
.y46_c00278{bottom:663.773333pt;}
.y47_c00278{bottom:664.733333pt;}
.y45_c00278{bottom:665.306667pt;}
.y44_c00278{bottom:665.693333pt;}
.y48_c00278{bottom:665.893333pt;}
.y43_c00278{bottom:680.360000pt;}
.y42_c00278{bottom:681.106667pt;}
.y41_c00278{bottom:683.026667pt;}
.y40_c00278{bottom:698.440000pt;}
.y3f_c00278{bottom:700.360000pt;}
.y3e_c00278{bottom:701.306667pt;}
.y3c_c00278{bottom:715.026667pt;}
.y3b_c00278{bottom:715.773333pt;}
.y3d_c00278{bottom:716.733333pt;}
.y3a_c00278{bottom:717.693333pt;}
.y39_c00278{bottom:718.640000pt;}
.y38_c00278{bottom:733.106667pt;}
.y36_c00278{bottom:733.893333pt;}
.y37_c00278{bottom:735.026667pt;}
.y31_c00278{bottom:751.400000pt;}
.y35_c00278{bottom:751.773333pt;}
.y32_c00278{bottom:752.360000pt;}
.y33_c00278{bottom:752.560000pt;}
.y34_c00278{bottom:753.693333pt;}
.y2d_c00278{bottom:769.106667pt;}
.y2e_c00278{bottom:769.893333pt;}
.y30_c00278{bottom:770.640000pt;}
.y2f_c00278{bottom:771.026667pt;}
.y2c_c00278{bottom:785.306667pt;}
.y29_c00278{bottom:786.440000pt;}
.y28_c00278{bottom:787.226667pt;}
.y2a_c00278{bottom:787.400000pt;}
.y2b_c00278{bottom:787.973333pt;}
.y27_c00278{bottom:788.360000pt;}
.y24_c00278{bottom:803.773333pt;}
.y25_c00278{bottom:804.560000pt;}
.y26_c00278{bottom:805.306667pt;}
.y23_c00278{bottom:805.693333pt;}
.y20_c00278{bottom:821.106667pt;}
.y21_c00278{bottom:821.893333pt;}
.y1f_c00278{bottom:823.026667pt;}
.y22_c00278{bottom:823.973333pt;}
.y1e_c00278{bottom:838.440000pt;}
.y1c_c00278{bottom:840.360000pt;}
.y1d_c00278{bottom:840.560000pt;}
.y1b_c00278{bottom:855.773333pt;}
.y19_c00278{bottom:857.693333pt;}
.y1a_c00278{bottom:857.893333pt;}
.y17_c00278{bottom:873.106667pt;}
.y15_c00278{bottom:875.026667pt;}
.y16_c00278{bottom:875.973333pt;}
.y18_c00278{bottom:876.360000pt;}
.y14_c00278{bottom:891.773333pt;}
.y10_c00278{bottom:892.360000pt;}
.y13_c00278{bottom:892.560000pt;}
.y12_c00278{bottom:893.306667pt;}
.y11_c00278{bottom:893.693333pt;}
.yd_c00278{bottom:908.733333pt;}
.yc_c00278{bottom:909.693333pt;}
.yf_c00278{bottom:909.893333pt;}
.ye_c00278{bottom:910.640000pt;}
.yb_c00278{bottom:925.106667pt;}
.y9_c00278{bottom:926.066667pt;}
.ya_c00278{bottom:927.026667pt;}
.y7_c00278{bottom:927.226667pt;}
.y8_c00278{bottom:928.360000pt;}
.y6_c00278{bottom:942.440000pt;}
.y3_c00278{bottom:943.773333pt;}
.y5_c00278{bottom:944.560000pt;}
.y4_c00278{bottom:945.693333pt;}
.y2_c00278{bottom:977.693333pt;}
.y1_c00278{bottom:979.600000pt;}
.h7_c00278{height:3.739141pt;}
.h4_c00278{height:20.466875pt;}
.h1_c00278{height:22.303646pt;}
.h6_c00278{height:27.879557pt;}
.h2_c00278{height:31.618698pt;}
.h5_c00278{height:35.357839pt;}
.h3_c00278{height:39.031380pt;}
.h8_c00278{height:42.770521pt;}
.h0_c00278{height:1186.666667pt;}
.w0_c00278{width:782.666667pt;}
.x0_c00278{left:0.000000pt;}
.x3_c00278{left:135.040000pt;}
.x95_c00278{left:136.000000pt;}
.x102_c00278{left:136.960000pt;}
.xab_c00278{left:138.093333pt;}
.xac_c00278{left:148.000000pt;}
.x8c_c00278{left:149.333333pt;}
.xee_c00278{left:150.293333pt;}
.x8a_c00278{left:153.706667pt;}
.x103_c00278{left:156.373333pt;}
.xbb_c00278{left:158.293333pt;}
.x72_c00278{left:160.000000pt;}
.x2e_c00278{left:160.960000pt;}
.x54_c00278{left:163.040000pt;}
.xb2_c00278{left:164.960000pt;}
.xeb_c00278{left:166.293333pt;}
.x9a_c00278{left:168.373333pt;}
.xe7_c00278{left:169.333333pt;}
.x5e_c00278{left:170.293333pt;}
.x20_c00278{left:172.373333pt;}
.x84_c00278{left:174.293333pt;}
.x47_c00278{left:176.000000pt;}
.x6b_c00278{left:177.333333pt;}
.x9f_c00278{left:178.293333pt;}
.x109_c00278{left:180.000000pt;}
.x111_c00278{left:181.333333pt;}
.x12_c00278{left:182.666667pt;}
.x4_c00278{left:184.000000pt;}
.x55_c00278{left:187.040000pt;}
.x5f_c00278{left:188.373333pt;}
.xe0_c00278{left:190.293333pt;}
.xf5_c00278{left:192.000000pt;}
.x9b_c00278{left:193.333333pt;}
.x21_c00278{left:195.040000pt;}
.xb3_c00278{left:196.000000pt;}
.xd4_c00278{left:197.706667pt;}
.x112_c00278{left:198.666667pt;}
.x13_c00278{left:203.040000pt;}
.x7b_c00278{left:205.333333pt;}
.x8d_c00278{left:207.040000pt;}
.x2f_c00278{left:208.000000pt;}
.xbc_c00278{left:209.333333pt;}
.x39_c00278{left:211.040000pt;}
.xc1_c00278{left:212.000000pt;}
.x60_c00278{left:213.706667pt;}
.xdc_c00278{left:215.626667pt;}
.xad_c00278{left:218.666667pt;}
.x96_c00278{left:220.960000pt;}
.xfa_c00278{left:222.666667pt;}
.x48_c00278{left:224.000000pt;}
.xcf_c00278{left:224.960000pt;}
.x11b_c00278{left:225.906667pt;}
.x14_c00278{left:227.040000pt;}
.x113_c00278{left:228.000000pt;}
.x56_c00278{left:230.666667pt;}
.xa0_c00278{left:232.960000pt;}
.xd5_c00278{left:235.040000pt;}
.x30_c00278{left:236.373333pt;}
.x85_c00278{left:237.706667pt;}
.xe8_c00278{left:238.666667pt;}
.x104_c00278{left:239.626667pt;}
.x22_c00278{left:241.333333pt;}
.xcb_c00278{left:242.666667pt;}
.x8e_c00278{left:243.626667pt;}
.x3a_c00278{left:245.333333pt;}
.x49_c00278{left:246.666667pt;}
.xe1_c00278{left:248.000000pt;}
.x10e_c00278{left:249.333333pt;}
.xf6_c00278{left:252.000000pt;}
.x5_c00278{left:253.333333pt;}
.xa6_c00278{left:256.373333pt;}
.xc2_c00278{left:258.666667pt;}
.xa1_c00278{left:260.000000pt;}
.x97_c00278{left:261.333333pt;}
.x61_c00278{left:262.666667pt;}
.x11a_c00278{left:264.000000pt;}
.x23_c00278{left:268.000000pt;}
.x3b_c00278{left:269.333333pt;}
.x114_c00278{left:270.666667pt;}
.x73_c00278{left:272.373333pt;}
.x86_c00278{left:274.293333pt;}
.x15_c00278{left:276.000000pt;}
.xbd_c00278{left:276.960000pt;}
.x7c_c00278{left:279.040000pt;}
.x6_c00278{left:281.333333pt;}
.x57_c00278{left:283.040000pt;}
.xef_c00278{left:284.000000pt;}
.x31_c00278{left:287.040000pt;}
.xd6_c00278{left:288.000000pt;}
.x6c_c00278{left:289.333333pt;}
.xe2_c00278{left:291.626667pt;}
.x24_c00278{left:292.960000pt;}
.xc3_c00278{left:294.293333pt;}
.x8b_c00278{left:297.706667pt;}
.x74_c00278{left:298.666667pt;}
.xf0_c00278{left:300.000000pt;}
.x7d_c00278{left:301.333333pt;}
.x3c_c00278{left:302.666667pt;}
.xdd_c00278{left:303.800000pt;}
.xd7_c00278{left:304.960000pt;}
.x32_c00278{left:306.666667pt;}
.x25_c00278{left:308.373333pt;}
.xa7_c00278{left:309.333333pt;}
.x62_c00278{left:310.293333pt;}
.x87_c00278{left:312.000000pt;}
.xf1_c00278{left:313.706667pt;}
.x16_c00278{left:316.000000pt;}
.x7_c00278{left:317.333333pt;}
.x3d_c00278{left:319.626667pt;}
.xcc_c00278{left:321.706667pt;}
.x4a_c00278{left:324.373333pt;}
.x58_c00278{left:326.666667pt;}
.x63_c00278{left:328.373333pt;}
.x8f_c00278{left:329.333333pt;}
.x33_c00278{left:330.666667pt;}
.x26_c00278{left:332.373333pt;}
.xf7_c00278{left:333.706667pt;}
.x7e_c00278{left:335.626667pt;}
.x105_c00278{left:336.960000pt;}
.xde_c00278{left:338.666667pt;}
.x75_c00278{left:339.626667pt;}
.x8_c00278{left:341.333333pt;}
.x17_c00278{left:344.373333pt;}
.x4b_c00278{left:348.000000pt;}
.xa8_c00278{left:348.960000pt;}
.x7f_c00278{left:350.666667pt;}
.x64_c00278{left:352.000000pt;}
.xbe_c00278{left:353.333333pt;}
.xcd_c00278{left:354.666667pt;}
.xe3_c00278{left:355.626667pt;}
.x10a_c00278{left:357.333333pt;}
.x1_c00278{left:358.666667pt;}
.x3e_c00278{left:360.373333pt;}
.x106_c00278{left:361.706667pt;}
.x9c_c00278{left:362.666667pt;}
.xb4_c00278{left:363.626667pt;}
.x34_c00278{left:365.333333pt;}
.x27_c00278{left:369.706667pt;}
.xfb_c00278{left:370.666667pt;}
.xa9_c00278{left:372.000000pt;}
.x18_c00278{left:372.960000pt;}
.x88_c00278{left:375.040000pt;}
.x9_c00278{left:376.000000pt;}
.xec_c00278{left:377.333333pt;}
.xfe_c00278{left:380.000000pt;}
.xc7_c00278{left:381.333333pt;}
.x4c_c00278{left:382.666667pt;}
.xa2_c00278{left:383.626667pt;}
.x3f_c00278{left:385.333333pt;}
.xb5_c00278{left:386.666667pt;}
.x65_c00278{left:388.960000pt;}
.x19_c00278{left:391.040000pt;}
.xa_c00278{left:393.333333pt;}
.xae_c00278{left:394.666667pt;}
.x76_c00278{left:395.626667pt;}
.x6d_c00278{left:397.333333pt;}
.x9d_c00278{left:399.626667pt;}
.x59_c00278{left:401.706667pt;}
.x4d_c00278{left:405.333333pt;}
.xc4_c00278{left:407.626667pt;}
.xe9_c00278{left:410.293333pt;}
.x77_c00278{left:412.000000pt;}
.xd8_c00278{left:413.333333pt;}
.x1a_c00278{left:414.293333pt;}
.x66_c00278{left:416.373333pt;}
.xed_c00278{left:417.706667pt;}
.xb_c00278{left:420.000000pt;}
.x11f_c00278{left:421.333333pt;}
.xfc_c00278{left:423.040000pt;}
.x90_c00278{left:424.000000pt;}
.x28_c00278{left:424.960000pt;}
.xaf_c00278{left:427.626667pt;}
.xbf_c00278{left:428.760000pt;}
.xe4_c00278{left:430.666667pt;}
.x40_c00278{left:431.626667pt;}
.x5a_c00278{left:433.333333pt;}
.x6e_c00278{left:436.000000pt;}
.x35_c00278{left:438.293333pt;}
.x4e_c00278{left:439.626667pt;}
.x67_c00278{left:441.333333pt;}
.xb6_c00278{left:442.666667pt;}
.xc8_c00278{left:443.800000pt;}
.xc5_c00278{left:445.333333pt;}
.x115_c00278{left:446.666667pt;}
.x41_c00278{left:448.000000pt;}
.xe5_c00278{left:449.333333pt;}
.x29_c00278{left:450.666667pt;}
.xf8_c00278{left:451.626667pt;}
.xc_c00278{left:454.666667pt;}
.xa3_c00278{left:456.000000pt;}
.xff_c00278{left:458.666667pt;}
.xc6_c00278{left:459.626667pt;}
.xc0_c00278{left:461.706667pt;}
.x36_c00278{left:464.000000pt;}
.x91_c00278{left:465.333333pt;}
.x1b_c00278{left:466.666667pt;}
.x10f_c00278{left:468.373333pt;}
.x80_c00278{left:472.000000pt;}
.x42_c00278{left:473.333333pt;}
.xd_c00278{left:475.040000pt;}
.x9e_c00278{left:476.373333pt;}
.x78_c00278{left:479.040000pt;}
.x1c_c00278{left:480.373333pt;}
.x10b_c00278{left:482.293333pt;}
.x11c_c00278{left:485.333333pt;}
.xd9_c00278{left:486.666667pt;}
.xd0_c00278{left:489.333333pt;}
.x89_c00278{left:490.666667pt;}
.xf2_c00278{left:492.000000pt;}
.x6f_c00278{left:494.666667pt;}
.xce_c00278{left:496.000000pt;}
.xe_c00278{left:499.040000pt;}
.x4f_c00278{left:500.373333pt;}
.x116_c00278{left:501.706667pt;}
.x68_c00278{left:502.666667pt;}
.x92_c00278{left:504.760000pt;}
.x10c_c00278{left:505.706667pt;}
.xc9_c00278{left:507.626667pt;}
.xd1_c00278{left:509.333333pt;}
.x98_c00278{left:510.666667pt;}
.x43_c00278{left:512.000000pt;}
.x100_c00278{left:513.333333pt;}
.xea_c00278{left:514.293333pt;}
.xda_c00278{left:515.240000pt;}
.xb0_c00278{left:517.133333pt;}
.x37_c00278{left:519.040000pt;}
.x117_c00278{left:520.000000pt;}
.xa4_c00278{left:520.960000pt;}
.x5b_c00278{left:527.040000pt;}
.xfd_c00278{left:528.000000pt;}
.x1d_c00278{left:529.706667pt;}
.x93_c00278{left:530.666667pt;}
.x50_c00278{left:532.373333pt;}
.x107_c00278{left:535.040000pt;}
.x2a_c00278{left:536.000000pt;}
.xa5_c00278{left:537.706667pt;}
.xf_c00278{left:541.333333pt;}
.x94_c00278{left:544.000000pt;}
.xaa_c00278{left:544.960000pt;}
.xb7_c00278{left:546.666667pt;}
.x99_c00278{left:548.000000pt;}
.x81_c00278{left:549.706667pt;}
.x5c_c00278{left:552.373333pt;}
.x79_c00278{left:553.706667pt;}
.x51_c00278{left:555.626667pt;}
.x1e_c00278{left:557.333333pt;}
.x2b_c00278{left:559.040000pt;}
.x69_c00278{left:560.373333pt;}
.x101_c00278{left:562.666667pt;}
.xdb_c00278{left:563.626667pt;}
.xb1_c00278{left:565.133333pt;}
.x118_c00278{left:567.426667pt;}
.xb8_c00278{left:568.960000pt;}
.xd2_c00278{left:570.666667pt;}
.x82_c00278{left:573.333333pt;}
.x44_c00278{left:574.666667pt;}
.x38_c00278{left:576.373333pt;}
.x10_c00278{left:580.373333pt;}
.x5d_c00278{left:582.293333pt;}
.x10d_c00278{left:584.373333pt;}
.x70_c00278{left:585.706667pt;}
.xb9_c00278{left:586.666667pt;}
.x83_c00278{left:588.000000pt;}
.x2c_c00278{left:590.666667pt;}
.x52_c00278{left:593.333333pt;}
.xf3_c00278{left:594.293333pt;}
.xdf_c00278{left:597.706667pt;}
.x1f_c00278{left:599.626667pt;}
.x108_c00278{left:601.906667pt;}
.xf9_c00278{left:603.040000pt;}
.x110_c00278{left:604.000000pt;}
.x11d_c00278{left:605.333333pt;}
.x2d_c00278{left:608.000000pt;}
.xd3_c00278{left:609.333333pt;}
.x45_c00278{left:610.293333pt;}
.xe6_c00278{left:612.000000pt;}
.x6a_c00278{left:613.333333pt;}
.x71_c00278{left:615.626667pt;}
.x7a_c00278{left:617.706667pt;}
.x53_c00278{left:621.333333pt;}
.xf4_c00278{left:622.666667pt;}
.x11_c00278{left:623.626667pt;}
.x2_c00278{left:624.960000pt;}
.x46_c00278{left:626.666667pt;}
.x119_c00278{left:628.000000pt;}
.xba_c00278{left:630.293333pt;}
.x11e_c00278{left:633.333333pt;}
.xca_c00278{left:642.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_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_38528db8ea731ddcfa46ea29.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:1.688965;font-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_c00279{transform:matrix(0.006560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.006560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.006560,0.000000,0.000000,0.250000,0,0);}
.m54_c00279{transform:matrix(0.008933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008933,0.000000,0.000000,0.250000,0,0);}
.m41_c00279{transform:matrix(0.010864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010864,0.000000,0.000000,0.250000,0,0);}
.m42_c00279{transform:matrix(0.011420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011420,0.000000,0.000000,0.250000,0,0);}
.m3f_c00279{transform:matrix(0.013374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013374,0.000000,0.000000,0.250000,0,0);}
.m47_c00279{transform:matrix(0.014291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014291,0.000000,0.000000,0.250000,0,0);}
.m1c_c00279{transform:matrix(0.015520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015520,0.000000,0.000000,0.250000,0,0);}
.m49_c00279{transform:matrix(0.016452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016452,0.000000,0.000000,0.250000,0,0);}
.m10_c00279{transform:matrix(0.016735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016735,0.000000,0.000000,0.250000,0,0);}
.m1b_c00279{transform:matrix(0.016840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016840,0.000000,0.000000,0.250000,0,0);}
.m16_c00279{transform:matrix(0.016933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016933,0.000000,0.000000,0.250000,0,0);}
.mb_c00279{transform:matrix(0.017022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017022,0.000000,0.000000,0.250000,0,0);}
.m56_c00279{transform:matrix(0.017114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017114,0.000000,0.000000,0.250000,0,0);}
.m53_c00279{transform:matrix(0.017486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017486,0.000000,0.000000,0.250000,0,0);}
.m45_c00279{transform:matrix(0.017639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017639,0.000000,0.000000,0.250000,0,0);}
.mf_c00279{transform:matrix(0.017642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017642,0.000000,0.000000,0.250000,0,0);}
.m12_c00279{transform:matrix(0.017750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017750,0.000000,0.000000,0.250000,0,0);}
.m39_c00279{transform:matrix(0.018172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018172,0.000000,0.000000,0.250000,0,0);}
.m4_c00279{transform:matrix(0.018431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018431,0.000000,0.000000,0.250000,0,0);}
.m43_c00279{transform:matrix(0.018487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018487,0.000000,0.000000,0.250000,0,0);}
.m2f_c00279{transform:matrix(0.018701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018701,0.000000,0.000000,0.250000,0,0);}
.m19_c00279{transform:matrix(0.018932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018932,0.000000,0.000000,0.250000,0,0);}
.m1a_c00279{transform:matrix(0.019148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019148,0.000000,0.000000,0.250000,0,0);}
.m55_c00279{transform:matrix(0.019407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019407,0.000000,0.000000,0.250000,0,0);}
.m40_c00279{transform:matrix(0.022239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022239,0.000000,0.000000,0.250000,0,0);}
.m4d_c00279{transform:matrix(0.023773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023773,0.000000,0.000000,0.250000,0,0);}
.m30_c00279{transform:matrix(0.025461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025461,0.000000,0.000000,0.250000,0,0);}
.m1e_c00279{transform:matrix(0.027159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027159,0.000000,0.000000,0.250000,0,0);}
.m15_c00279{transform:matrix(0.029456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029456,0.000000,0.000000,0.250000,0,0);}
.m17_c00279{transform:matrix(0.029773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029773,0.000000,0.000000,0.250000,0,0);}
.m34_c00279{transform:matrix(0.030473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030473,0.000000,0.000000,0.250000,0,0);}
.m2_c00279{transform:matrix(0.030699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030699,0.000000,0.000000,0.250000,0,0);}
.m4f_c00279{transform:matrix(0.031276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031276,0.000000,0.000000,0.250000,0,0);}
.md_c00279{transform:matrix(0.031842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031842,0.000000,0.000000,0.250000,0,0);}
.m4e_c00279{transform:matrix(0.038069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038069,0.000000,0.000000,0.250000,0,0);}
.m35_c00279{transform:matrix(0.040671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040671,0.000000,0.000000,0.250000,0,0);}
.m21_c00279{transform:matrix(0.041240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041240,0.000000,0.000000,0.250000,0,0);}
.m3a_c00279{transform:matrix(0.043640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043640,0.000000,0.000000,0.250000,0,0);}
.m1f_c00279{transform:matrix(0.043796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043796,0.000000,0.000000,0.250000,0,0);}
.m44_c00279{transform:matrix(0.044937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044937,0.000000,0.000000,0.250000,0,0);}
.m51_c00279{transform:matrix(0.045506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045506,0.000000,0.000000,0.250000,0,0);}
.m23_c00279{transform:matrix(0.046732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046732,0.000000,0.000000,0.250000,0,0);}
.m50_c00279{transform:matrix(0.048662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048662,0.000000,0.000000,0.250000,0,0);}
.m20_c00279{transform:matrix(0.052901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052901,0.000000,0.000000,0.250000,0,0);}
.m3b_c00279{transform:matrix(0.055461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055461,0.000000,0.000000,0.250000,0,0);}
.ma_c00279{transform:matrix(0.055934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055934,0.000000,0.000000,0.250000,0,0);}
.m22_c00279{transform:matrix(0.056265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056265,0.000000,0.000000,0.250000,0,0);}
.m27_c00279{transform:matrix(0.058181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058181,0.000000,0.000000,0.250000,0,0);}
.me_c00279{transform:matrix(0.058394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058394,0.000000,0.000000,0.250000,0,0);}
.m36_c00279{transform:matrix(0.062412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062412,0.000000,0.000000,0.250000,0,0);}
.m52_c00279{transform:matrix(0.062652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062652,0.000000,0.000000,0.250000,0,0);}
.m6_c00279{transform:matrix(0.063182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063182,0.000000,0.000000,0.250000,0,0);}
.m11_c00279{transform:matrix(0.066358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066358,0.000000,0.000000,0.250000,0,0);}
.m37_c00279{transform:matrix(0.067485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067485,0.000000,0.000000,0.250000,0,0);}
.m4a_c00279{transform:matrix(0.068259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068259,0.000000,0.000000,0.250000,0,0);}
.m31_c00279{transform:matrix(0.068759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068759,0.000000,0.000000,0.250000,0,0);}
.m3d_c00279{transform:matrix(0.071227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071227,0.000000,0.000000,0.250000,0,0);}
.m3c_c00279{transform:matrix(0.077837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077837,0.000000,0.000000,0.250000,0,0);}
.m38_c00279{transform:matrix(0.080395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080395,0.000000,0.000000,0.250000,0,0);}
.m29_c00279{transform:matrix(0.081805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081805,0.000000,0.000000,0.250000,0,0);}
.m2c_c00279{transform:matrix(0.085331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085331,0.000000,0.000000,0.250000,0,0);}
.m1d_c00279{transform:matrix(0.091641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091641,0.000000,0.000000,0.250000,0,0);}
.m46_c00279{transform:matrix(0.091678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091678,0.000000,0.000000,0.250000,0,0);}
.m3e_c00279{transform:matrix(0.100077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100077,0.000000,0.000000,0.250000,0,0);}
.m5_c00279{transform:matrix(0.102958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102958,0.000000,0.000000,0.250000,0,0);}
.m24_c00279{transform:matrix(0.102968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102968,0.000000,0.000000,0.250000,0,0);}
.m28_c00279{transform:matrix(0.105751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105751,0.000000,0.000000,0.250000,0,0);}
.m4c_c00279{transform:matrix(0.116419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116419,0.000000,0.000000,0.250000,0,0);}
.m32_c00279{transform:matrix(0.129668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129668,0.000000,0.000000,0.250000,0,0);}
.m2a_c00279{transform:matrix(0.136364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136364,0.000000,0.000000,0.250000,0,0);}
.m14_c00279{transform:matrix(0.138235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138235,0.000000,0.000000,0.250000,0,0);}
.m3_c00279{transform:matrix(0.238404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238404,0.000000,0.000000,0.250000,0,0);}
.m2e_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);}
.m9_c00279{transform:matrix(0.291494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291494,0.000000,0.000000,0.250000,0,0);}
.m2d_c00279{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m18_c00279{transform:matrix(0.317718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317718,0.000000,0.000000,0.250000,0,0);}
.m48_c00279{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_c00279{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00279{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.mc_c00279{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m26_c00279{transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);}
.m0_c00279{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m2b_c00279{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m1_c00279{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m25_c00279{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.m4b_c00279{transform:matrix(1.127525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.127525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.127525,0.000000,0.000000,0.250000,0,0);}
.m33_c00279{transform:matrix(1.756637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.756637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.756637,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;}
.fs1a_c00279{font-size:6.780000px;}
.fs16_c00279{font-size:11.880000px;}
.fs18_c00279{font-size:18.720000px;}
.fs1_c00279{font-size:20.400000px;}
.fsa_c00279{font-size:25.500000px;}
.fs0_c00279{font-size:28.920000px;}
.fs3_c00279{font-size:32.340000px;}
.fs14_c00279{font-size:39.120000px;}
.fs17_c00279{font-size:42.540000px;}
.fsf_c00279{font-size:45.900000px;}
.fsb_c00279{font-size:49.320000px;}
.fs5_c00279{font-size:52.740000px;}
.fs15_c00279{font-size:64.620000px;}
.fsd_c00279{font-size:68.040000px;}
.fs6_c00279{font-size:71.460000px;}
.fs8_c00279{font-size:74.820000px;}
.fs1c_c00279{font-size:78.240000px;}
.fs19_c00279{font-size:85.020000px;}
.fs1e_c00279{font-size:88.440000px;}
.fs2_c00279{font-size:91.860000px;}
.fs12_c00279{font-size:95.220000px;}
.fs10_c00279{font-size:100.320000px;}
.fs1b_c00279{font-size:102.060000px;}
.fs1d_c00279{font-size:117.360000px;}
.fs11_c00279{font-size:127.560000px;}
.fs4_c00279{font-size:132.660000px;}
.fs13_c00279{font-size:134.340000px;}
.fse_c00279{font-size:139.440000px;}
.fs9_c00279{font-size:146.280000px;}
.fsc_c00279{font-size:149.640000px;}
.fs7_c00279{font-size:205.800000px;}
.y0_c00279{bottom:0.000000px;}
.y3a_c00279{bottom:269.325000px;}
.y4d_c00279{bottom:270.180000px;}
.y26_c00279{bottom:271.680000px;}
.y7e_c00279{bottom:274.005000px;}
.y72_c00279{bottom:275.280000px;}
.ya1_c00279{bottom:275.700000px;}
.y99_c00279{bottom:275.910000px;}
.y9d_c00279{bottom:280.605000px;}
.y4e_c00279{bottom:291.825000px;}
.y27_c00279{bottom:296.730000px;}
.y7f_c00279{bottom:308.955000px;}
.y4f_c00279{bottom:312.180000px;}
.y73_c00279{bottom:316.005000px;}
.y90_c00279{bottom:316.230000px;}
.y9a_c00279{bottom:320.925000px;}
.yd6_c00279{bottom:335.325000px;}
.ya7_c00279{bottom:336.180000px;}
.y9e_c00279{bottom:336.300000px;}
.yb9_c00279{bottom:336.825000px;}
.yea_c00279{bottom:338.730000px;}
.ye1_c00279{bottom:341.280000px;}
.ya5_c00279{bottom:341.550000px;}
.y102_c00279{bottom:342.555000px;}
.y108_c00279{bottom:345.105000px;}
.ya2_c00279{bottom:346.455000px;}
.y74_c00279{bottom:349.680000px;}
.y91_c00279{bottom:350.955000px;}
.yd7_c00279{bottom:358.230000px;}
.yc9_c00279{bottom:358.905000px;}
.ya8_c00279{bottom:361.230000px;}
.ya6_c00279{bottom:362.700000px;}
.yeb_c00279{bottom:372.585000px;}
.ya3_c00279{bottom:377.700000px;}
.yca_c00279{bottom:378.180000px;}
.yf4_c00279{bottom:380.730000px;}
.ye2_c00279{bottom:380.925000px;}
.y103_c00279{bottom:385.425000px;}
.y1a_c00279{bottom:390.960000px;}
.y5_c00279{bottom:391.800000px;}
.y109_c00279{bottom:400.800000px;}
.y111_c00279{bottom:407.550000px;}
.y10c_c00279{bottom:410.955000px;}
.yf5_c00279{bottom:412.455000px;}
.ye3_c00279{bottom:414.180000px;}
.y80_c00279{bottom:427.680000px;}
.y112_c00279{bottom:428.280000px;}
.y28_c00279{bottom:428.535000px;}
.y92_c00279{bottom:429.180000px;}
.y50_c00279{bottom:431.325000px;}
.y75_c00279{bottom:432.405000px;}
.y3b_c00279{bottom:433.275000px;}
.y62_c00279{bottom:435.630000px;}
.y6_c00279{bottom:442.455000px;}
.y10d_c00279{bottom:443.280000px;}
.y1b_c00279{bottom:443.955000px;}
.y9b_c00279{bottom:463.680000px;}
.y81_c00279{bottom:465.180000px;}
.y29_c00279{bottom:466.455000px;}
.y51_c00279{bottom:468.825000px;}
.y9f_c00279{bottom:469.275000px;}
.y3c_c00279{bottom:470.775000px;}
.y7_c00279{bottom:471.585000px;}
.y63_c00279{bottom:471.630000px;}
.y76_c00279{bottom:472.050000px;}
.y1c_c00279{bottom:476.085000px;}
.ya9_c00279{bottom:490.035000px;}
.y104_c00279{bottom:492.180000px;}
.yba_c00279{bottom:493.275000px;}
.ycb_c00279{bottom:494.775000px;}
.y82_c00279{bottom:501.180000px;}
.y52_c00279{bottom:504.825000px;}
.y2a_c00279{bottom:505.035000px;}
.y3d_c00279{bottom:506.775000px;}
.y64_c00279{bottom:508.050000px;}
.y8_c00279{bottom:521.805000px;}
.ybb_c00279{bottom:526.455000px;}
.yaa_c00279{bottom:527.535000px;}
.ycc_c00279{bottom:528.825000px;}
.y1d_c00279{bottom:529.305000px;}
.y10a_c00279{bottom:530.775000px;}
.yd8_c00279{bottom:532.050000px;}
.yf6_c00279{bottom:532.275000px;}
.y93_c00279{bottom:537.180000px;}
.y83_c00279{bottom:538.680000px;}
.y2b_c00279{bottom:539.535000px;}
.y53_c00279{bottom:542.325000px;}
.y3e_c00279{bottom:542.775000px;}
.ya0_c00279{bottom:544.275000px;}
.y77_c00279{bottom:545.130000px;}
.y65_c00279{bottom:545.550000px;}
.yec_c00279{bottom:561.180000px;}
.yab_c00279{bottom:563.535000px;}
.ycd_c00279{bottom:564.825000px;}
.y10e_c00279{bottom:565.680000px;}
.ybc_c00279{bottom:566.775000px;}
.yd9_c00279{bottom:568.050000px;}
.yf7_c00279{bottom:568.275000px;}
.y84_c00279{bottom:574.680000px;}
.y2c_c00279{bottom:577.035000px;}
.y54_c00279{bottom:578.325000px;}
.y3f_c00279{bottom:580.275000px;}
.y78_c00279{bottom:581.550000px;}
.y9c_c00279{bottom:581.775000px;}
.y66_c00279{bottom:582.630000px;}
.y13_c00279{bottom:584.655000px;}
.y25_c00279{bottom:585.300000px;}
.y9_c00279{bottom:594.405000px;}
.yf8_c00279{bottom:596.535000px;}
.yed_c00279{bottom:598.680000px;}
.yac_c00279{bottom:599.535000px;}
.yce_c00279{bottom:602.325000px;}
.ybd_c00279{bottom:602.775000px;}
.ye4_c00279{bottom:603.405000px;}
.y1e_c00279{bottom:604.905000px;}
.yda_c00279{bottom:605.550000px;}
.ya_c00279{bottom:610.905000px;}
.y85_c00279{bottom:612.180000px;}
.y2d_c00279{bottom:613.035000px;}
.y55_c00279{bottom:615.825000px;}
.y40_c00279{bottom:617.775000px;}
.y67_c00279{bottom:619.050000px;}
.y1f_c00279{bottom:624.405000px;}
.yf9_c00279{bottom:632.535000px;}
.yee_c00279{bottom:634.680000px;}
.y14_c00279{bottom:634.905000px;}
.yb_c00279{bottom:635.505000px;}
.yad_c00279{bottom:635.955000px;}
.ycf_c00279{bottom:638.325000px;}
.ye5_c00279{bottom:639.405000px;}
.ybe_c00279{bottom:640.275000px;}
.ydb_c00279{bottom:641.550000px;}
.y86_c00279{bottom:648.180000px;}
.y79_c00279{bottom:648.855000px;}
.y2e_c00279{bottom:649.455000px;}
.y18_c00279{bottom:653.055000px;}
.y56_c00279{bottom:653.325000px;}
.y41_c00279{bottom:653.775000px;}
.y3_c00279{bottom:654.135000px;}
.y15_c00279{bottom:654.600000px;}
.y68_c00279{bottom:655.050000px;}
.y94_c00279{bottom:655.275000px;}
.y20_c00279{bottom:658.590000px;}
.yae_c00279{bottom:668.355000px;}
.y10f_c00279{bottom:675.180000px;}
.yd0_c00279{bottom:675.825000px;}
.ybf_c00279{bottom:676.275000px;}
.yaf_c00279{bottom:676.680000px;}
.ye6_c00279{bottom:676.905000px;}
.yef_c00279{bottom:677.775000px;}
.ydc_c00279{bottom:679.050000px;}
.yc_c00279{bottom:679.590000px;}
.y16_c00279{bottom:684.975000px;}
.y87_c00279{bottom:685.680000px;}
.y2f_c00279{bottom:686.955000px;}
.y57_c00279{bottom:689.325000px;}
.y19_c00279{bottom:690.825000px;}
.y42_c00279{bottom:691.275000px;}
.y4_c00279{bottom:692.325000px;}
.y69_c00279{bottom:692.550000px;}
.yf0_c00279{bottom:708.180000px;}
.yb0_c00279{bottom:710.535000px;}
.yd1_c00279{bottom:711.825000px;}
.ye7_c00279{bottom:712.905000px;}
.yc0_c00279{bottom:713.775000px;}
.y21_c00279{bottom:714.405000px;}
.ydd_c00279{bottom:715.050000px;}
.yfa_c00279{bottom:715.275000px;}
.y95_c00279{bottom:721.680000px;}
.y88_c00279{bottom:723.180000px;}
.y30_c00279{bottom:724.035000px;}
.y58_c00279{bottom:725.325000px;}
.y43_c00279{bottom:727.275000px;}
.y6a_c00279{bottom:728.550000px;}
.yd_c00279{bottom:733.470000px;}
.y17_c00279{bottom:734.460000px;}
.yfb_c00279{bottom:742.035000px;}
.yf1_c00279{bottom:744.180000px;}
.yb1_c00279{bottom:745.455000px;}
.y22_c00279{bottom:746.655000px;}
.yd2_c00279{bottom:747.825000px;}
.yc1_c00279{bottom:749.775000px;}
.y10b_c00279{bottom:751.275000px;}
.yde_c00279{bottom:752.130000px;}
.ye_c00279{bottom:754.635000px;}
.y96_c00279{bottom:759.180000px;}
.y31_c00279{bottom:760.455000px;}
.y44_c00279{bottom:763.275000px;}
.y59_c00279{bottom:764.775000px;}
.yfc_c00279{bottom:778.455000px;}
.yf2_c00279{bottom:781.680000px;}
.yb2_c00279{bottom:784.035000px;}
.ye8_c00279{bottom:784.905000px;}
.yd3_c00279{bottom:785.325000px;}
.yc2_c00279{bottom:787.275000px;}
.yf_c00279{bottom:788.535000px;}
.ydf_c00279{bottom:788.775000px;}
.ya4_c00279{bottom:795.180000px;}
.y97_c00279{bottom:796.680000px;}
.y32_c00279{bottom:797.535000px;}
.y45_c00279{bottom:800.775000px;}
.y5a_c00279{bottom:802.275000px;}
.y23_c00279{bottom:814.155000px;}
.yf3_c00279{bottom:819.180000px;}
.yb3_c00279{bottom:821.535000px;}
.yd4_c00279{bottom:822.825000px;}
.yc3_c00279{bottom:823.275000px;}
.ye9_c00279{bottom:824.550000px;}
.yfd_c00279{bottom:824.775000px;}
.y10_c00279{bottom:825.510000px;}
.ye0_c00279{bottom:826.050000px;}
.y89_c00279{bottom:832.680000px;}
.y33_c00279{bottom:833.955000px;}
.y5b_c00279{bottom:836.325000px;}
.y46_c00279{bottom:838.275000px;}
.y6b_c00279{bottom:839.550000px;}
.yb4_c00279{bottom:857.535000px;}
.y105_c00279{bottom:859.680000px;}
.yc4_c00279{bottom:860.775000px;}
.y98_c00279{bottom:868.680000px;}
.y8a_c00279{bottom:870.180000px;}
.y34_c00279{bottom:872.535000px;}
.y5c_c00279{bottom:873.825000px;}
.y7a_c00279{bottom:874.905000px;}
.y6c_c00279{bottom:876.630000px;}
.y24_c00279{bottom:882.510000px;}
.y47_c00279{bottom:883.275000px;}
.y11_c00279{bottom:892.800000px;}
.yfe_c00279{bottom:893.535000px;}
.yb5_c00279{bottom:895.035000px;}
.y106_c00279{bottom:895.680000px;}
.yc5_c00279{bottom:898.275000px;}
.y8b_c00279{bottom:906.180000px;}
.y35_c00279{bottom:908.535000px;}
.y5d_c00279{bottom:909.825000px;}
.y48_c00279{bottom:911.775000px;}
.y6d_c00279{bottom:913.050000px;}
.yff_c00279{bottom:929.535000px;}
.yb6_c00279{bottom:931.035000px;}
.y107_c00279{bottom:933.180000px;}
.yd5_c00279{bottom:934.275000px;}
.yc6_c00279{bottom:935.775000px;}
.y8c_c00279{bottom:943.680000px;}
.y12_c00279{bottom:945.150000px;}
.y36_c00279{bottom:946.035000px;}
.y5e_c00279{bottom:947.325000px;}
.y7b_c00279{bottom:948.405000px;}
.y49_c00279{bottom:949.275000px;}
.y6e_c00279{bottom:950.550000px;}
.yb7_c00279{bottom:967.455000px;}
.y100_c00279{bottom:970.680000px;}
.yc7_c00279{bottom:971.775000px;}
.y8d_c00279{bottom:982.680000px;}
.y37_c00279{bottom:985.035000px;}
.y5f_c00279{bottom:986.325000px;}
.y4a_c00279{bottom:988.275000px;}
.y6f_c00279{bottom:989.550000px;}
.y101_c00279{bottom:1000.035000px;}
.y110_c00279{bottom:1002.180000px;}
.yb8_c00279{bottom:1003.035000px;}
.yc8_c00279{bottom:1007.775000px;}
.y8e_c00279{bottom:1018.680000px;}
.y38_c00279{bottom:1022.100000px;}
.y60_c00279{bottom:1022.325000px;}
.y7c_c00279{bottom:1023.405000px;}
.y4b_c00279{bottom:1024.275000px;}
.y70_c00279{bottom:1026.630000px;}
.y8f_c00279{bottom:1056.180000px;}
.y39_c00279{bottom:1058.535000px;}
.y61_c00279{bottom:1059.825000px;}
.y7d_c00279{bottom:1060.905000px;}
.y4c_c00279{bottom:1061.775000px;}
.y71_c00279{bottom:1064.130000px;}
.y1_c00279{bottom:1099.905000px;}
.y2_c00279{bottom:1102.050000px;}
.h1b_c00279{height:8.339268px;}
.h17_c00279{height:14.612168px;}
.h19_c00279{height:23.025234px;}
.h2_c00279{height:25.091602px;}
.hb_c00279{height:31.364502px;}
.h1_c00279{height:35.571035px;}
.h4_c00279{height:39.777568px;}
.h15_c00279{height:48.116836px;}
.h18_c00279{height:52.323369px;}
.h10_c00279{height:56.456104px;}
.hc_c00279{height:60.662637px;}
.h6_c00279{height:64.869170px;}
.h16_c00279{height:79.481338px;}
.he_c00279{height:83.687871px;}
.h7_c00279{height:87.894404px;}
.h9_c00279{height:92.027139px;}
.h1d_c00279{height:96.233672px;}
.h1a_c00279{height:104.572939px;}
.h1f_c00279{height:108.779473px;}
.h3_c00279{height:112.986006px;}
.h13_c00279{height:117.118740px;}
.h11_c00279{height:123.391641px;}
.h1c_c00279{height:125.531807px;}
.h1e_c00279{height:144.350508px;}
.h12_c00279{height:156.896309px;}
.h5_c00279{height:163.169209px;}
.h14_c00279{height:165.235576px;}
.hf_c00279{height:171.508477px;}
.ha_c00279{height:179.921543px;}
.hd_c00279{height:184.054277px;}
.h8_c00279{height:253.129980px;}
.h0_c00279{height:1335.000000px;}
.w0_c00279{width:880.500000px;}
.x0_c00279{left:0.000000px;}
.x3_c00279{left:150.000000px;}
.x1_c00279{left:151.080000px;}
.x4_c00279{left:153.000000px;}
.x5_c00279{left:168.225000px;}
.x6_c00279{left:169.920000px;}
.x7_c00279{left:171.420000px;}
.x8_c00279{left:178.080000px;}
.xa_c00279{left:183.225000px;}
.x9_c00279{left:184.500000px;}
.x13_c00279{left:212.580000px;}
.x12_c00279{left:214.080000px;}
.x14_c00279{left:215.775000px;}
.x15_c00279{left:217.275000px;}
.x16_c00279{left:218.775000px;}
.x17_c00279{left:228.000000px;}
.x18_c00279{left:229.500000px;}
.x19_c00279{left:231.000000px;}
.x1a_c00279{left:246.000000px;}
.x1b_c00279{left:247.500000px;}
.x1d_c00279{left:249.000000px;}
.x1c_c00279{left:250.500000px;}
.x1e_c00279{left:257.580000px;}
.x1f_c00279{left:259.500000px;}
.x20_c00279{left:261.000000px;}
.x22_c00279{left:262.920000px;}
.x21_c00279{left:264.000000px;}
.x23_c00279{left:273.000000px;}
.x24_c00279{left:274.920000px;}
.x26_c00279{left:276.420000px;}
.x25_c00279{left:277.500000px;}
.x27_c00279{left:286.500000px;}
.x28_c00279{left:288.420000px;}
.x2a_c00279{left:289.500000px;}
.x29_c00279{left:290.775000px;}
.x2c_c00279{left:313.080000px;}
.x2b_c00279{left:314.355000px;}
.x2d_c00279{left:316.500000px;}
.x2e_c00279{left:318.000000px;}
.x2f_c00279{left:327.000000px;}
.x30_c00279{left:328.500000px;}
.x32_c00279{left:330.000000px;}
.x31_c00279{left:331.500000px;}
.x33_c00279{left:339.225000px;}
.x34_c00279{left:340.500000px;}
.x35_c00279{left:342.000000px;}
.x36_c00279{left:343.500000px;}
.x37_c00279{left:345.000000px;}
.x38_c00279{left:346.500000px;}
.x39_c00279{left:354.000000px;}
.x3a_c00279{left:355.080000px;}
.x3b_c00279{left:357.000000px;}
.x3c_c00279{left:358.500000px;}
.x3e_c00279{left:367.080000px;}
.x3d_c00279{left:369.855000px;}
.x3f_c00279{left:372.000000px;}
.x40_c00279{left:373.500000px;}
.x2_c00279{left:405.000000px;}
.xb_c00279{left:498.000000px;}
.xc_c00279{left:516.225000px;}
.xd_c00279{left:517.920000px;}
.xe_c00279{left:519.420000px;}
.x10_c00279{left:529.725000px;}
.xf_c00279{left:531.000000px;}
.x11_c00279{left:532.080000px;}
.x41_c00279{left:560.580000px;}
.x42_c00279{left:562.275000px;}
.x43_c00279{left:563.775000px;}
.x45_c00279{left:573.000000px;}
.x44_c00279{left:574.500000px;}
.x46_c00279{left:579.000000px;}
.x47_c00279{left:592.500000px;}
.x48_c00279{left:594.000000px;}
.x49_c00279{left:595.500000px;}
.x4a_c00279{left:605.580000px;}
.x4b_c00279{left:607.500000px;}
.x4c_c00279{left:609.000000px;}
.x4d_c00279{left:618.000000px;}
.x4e_c00279{left:619.500000px;}
.x4f_c00279{left:621.000000px;}
.x50_c00279{left:622.500000px;}
.x51_c00279{left:624.000000px;}
.x52_c00279{left:633.000000px;}
.x53_c00279{left:634.500000px;}
.x54_c00279{left:635.775000px;}
.x55_c00279{left:637.500000px;}
.x57_c00279{left:659.580000px;}
.x56_c00279{left:660.855000px;}
.x58_c00279{left:663.000000px;}
.x59_c00279{left:671.580000px;}
.x5a_c00279{left:673.500000px;}
.x5b_c00279{left:675.000000px;}
.x5c_c00279{left:676.500000px;}
.x5d_c00279{left:678.000000px;}
.x5e_c00279{left:685.725000px;}
.x5f_c00279{left:687.000000px;}
.x60_c00279{left:688.500000px;}
.x61_c00279{left:690.000000px;}
.x62_c00279{left:700.080000px;}
.x63_c00279{left:702.000000px;}
.x64_c00279{left:703.500000px;}
.x66_c00279{left:713.580000px;}
.x65_c00279{left:714.855000px;}
.x67_c00279{left:717.000000px;}
@media print{
.v0_c00279{vertical-align:0.000000pt;}
.ls0_c00279{letter-spacing:0.000000pt;}
.ws0_c00279{word-spacing:0.000000pt;}
.fs1a_c00279{font-size:6.026667pt;}
.fs16_c00279{font-size:10.560000pt;}
.fs18_c00279{font-size:16.640000pt;}
.fs1_c00279{font-size:18.133333pt;}
.fsa_c00279{font-size:22.666667pt;}
.fs0_c00279{font-size:25.706667pt;}
.fs3_c00279{font-size:28.746667pt;}
.fs14_c00279{font-size:34.773333pt;}
.fs17_c00279{font-size:37.813333pt;}
.fsf_c00279{font-size:40.800000pt;}
.fsb_c00279{font-size:43.840000pt;}
.fs5_c00279{font-size:46.880000pt;}
.fs15_c00279{font-size:57.440000pt;}
.fsd_c00279{font-size:60.480000pt;}
.fs6_c00279{font-size:63.520000pt;}
.fs8_c00279{font-size:66.506667pt;}
.fs1c_c00279{font-size:69.546667pt;}
.fs19_c00279{font-size:75.573333pt;}
.fs1e_c00279{font-size:78.613333pt;}
.fs2_c00279{font-size:81.653333pt;}
.fs12_c00279{font-size:84.640000pt;}
.fs10_c00279{font-size:89.173333pt;}
.fs1b_c00279{font-size:90.720000pt;}
.fs1d_c00279{font-size:104.320000pt;}
.fs11_c00279{font-size:113.386667pt;}
.fs4_c00279{font-size:117.920000pt;}
.fs13_c00279{font-size:119.413333pt;}
.fse_c00279{font-size:123.946667pt;}
.fs9_c00279{font-size:130.026667pt;}
.fsc_c00279{font-size:133.013333pt;}
.fs7_c00279{font-size:182.933333pt;}
.y0_c00279{bottom:0.000000pt;}
.y3a_c00279{bottom:239.400000pt;}
.y4d_c00279{bottom:240.160000pt;}
.y26_c00279{bottom:241.493333pt;}
.y7e_c00279{bottom:243.560000pt;}
.y72_c00279{bottom:244.693333pt;}
.ya1_c00279{bottom:245.066667pt;}
.y99_c00279{bottom:245.253333pt;}
.y9d_c00279{bottom:249.426667pt;}
.y4e_c00279{bottom:259.400000pt;}
.y27_c00279{bottom:263.760000pt;}
.y7f_c00279{bottom:274.626667pt;}
.y4f_c00279{bottom:277.493333pt;}
.y73_c00279{bottom:280.893333pt;}
.y90_c00279{bottom:281.093333pt;}
.y9a_c00279{bottom:285.266667pt;}
.yd6_c00279{bottom:298.066667pt;}
.ya7_c00279{bottom:298.826667pt;}
.y9e_c00279{bottom:298.933333pt;}
.yb9_c00279{bottom:299.400000pt;}
.yea_c00279{bottom:301.093333pt;}
.ye1_c00279{bottom:303.360000pt;}
.ya5_c00279{bottom:303.600000pt;}
.y102_c00279{bottom:304.493333pt;}
.y108_c00279{bottom:306.760000pt;}
.ya2_c00279{bottom:307.960000pt;}
.y74_c00279{bottom:310.826667pt;}
.y91_c00279{bottom:311.960000pt;}
.yd7_c00279{bottom:318.426667pt;}
.yc9_c00279{bottom:319.026667pt;}
.ya8_c00279{bottom:321.093333pt;}
.ya6_c00279{bottom:322.400000pt;}
.yeb_c00279{bottom:331.186667pt;}
.ya3_c00279{bottom:335.733333pt;}
.yca_c00279{bottom:336.160000pt;}
.yf4_c00279{bottom:338.426667pt;}
.ye2_c00279{bottom:338.600000pt;}
.y103_c00279{bottom:342.600000pt;}
.y1a_c00279{bottom:347.520000pt;}
.y5_c00279{bottom:348.266667pt;}
.y109_c00279{bottom:356.266667pt;}
.y111_c00279{bottom:362.266667pt;}
.y10c_c00279{bottom:365.293333pt;}
.yf5_c00279{bottom:366.626667pt;}
.ye3_c00279{bottom:368.160000pt;}
.y80_c00279{bottom:380.160000pt;}
.y112_c00279{bottom:380.693333pt;}
.y28_c00279{bottom:380.920000pt;}
.y92_c00279{bottom:381.493333pt;}
.y50_c00279{bottom:383.400000pt;}
.y75_c00279{bottom:384.360000pt;}
.y3b_c00279{bottom:385.133333pt;}
.y62_c00279{bottom:387.226667pt;}
.y6_c00279{bottom:393.293333pt;}
.y10d_c00279{bottom:394.026667pt;}
.y1b_c00279{bottom:394.626667pt;}
.y9b_c00279{bottom:412.160000pt;}
.y81_c00279{bottom:413.493333pt;}
.y29_c00279{bottom:414.626667pt;}
.y51_c00279{bottom:416.733333pt;}
.y9f_c00279{bottom:417.133333pt;}
.y3c_c00279{bottom:418.466667pt;}
.y7_c00279{bottom:419.186667pt;}
.y63_c00279{bottom:419.226667pt;}
.y76_c00279{bottom:419.600000pt;}
.y1c_c00279{bottom:423.186667pt;}
.ya9_c00279{bottom:435.586667pt;}
.y104_c00279{bottom:437.493333pt;}
.yba_c00279{bottom:438.466667pt;}
.ycb_c00279{bottom:439.800000pt;}
.y82_c00279{bottom:445.493333pt;}
.y52_c00279{bottom:448.733333pt;}
.y2a_c00279{bottom:448.920000pt;}
.y3d_c00279{bottom:450.466667pt;}
.y64_c00279{bottom:451.600000pt;}
.y8_c00279{bottom:463.826667pt;}
.ybb_c00279{bottom:467.960000pt;}
.yaa_c00279{bottom:468.920000pt;}
.ycc_c00279{bottom:470.066667pt;}
.y1d_c00279{bottom:470.493333pt;}
.y10a_c00279{bottom:471.800000pt;}
.yd8_c00279{bottom:472.933333pt;}
.yf6_c00279{bottom:473.133333pt;}
.y93_c00279{bottom:477.493333pt;}
.y83_c00279{bottom:478.826667pt;}
.y2b_c00279{bottom:479.586667pt;}
.y53_c00279{bottom:482.066667pt;}
.y3e_c00279{bottom:482.466667pt;}
.ya0_c00279{bottom:483.800000pt;}
.y77_c00279{bottom:484.560000pt;}
.y65_c00279{bottom:484.933333pt;}
.yec_c00279{bottom:498.826667pt;}
.yab_c00279{bottom:500.920000pt;}
.ycd_c00279{bottom:502.066667pt;}
.y10e_c00279{bottom:502.826667pt;}
.ybc_c00279{bottom:503.800000pt;}
.yd9_c00279{bottom:504.933333pt;}
.yf7_c00279{bottom:505.133333pt;}
.y84_c00279{bottom:510.826667pt;}
.y2c_c00279{bottom:512.920000pt;}
.y54_c00279{bottom:514.066667pt;}
.y3f_c00279{bottom:515.800000pt;}
.y78_c00279{bottom:516.933333pt;}
.y9c_c00279{bottom:517.133333pt;}
.y66_c00279{bottom:517.893333pt;}
.y13_c00279{bottom:519.693333pt;}
.y25_c00279{bottom:520.266667pt;}
.y9_c00279{bottom:528.360000pt;}
.yf8_c00279{bottom:530.253333pt;}
.yed_c00279{bottom:532.160000pt;}
.yac_c00279{bottom:532.920000pt;}
.yce_c00279{bottom:535.400000pt;}
.ybd_c00279{bottom:535.800000pt;}
.ye4_c00279{bottom:536.360000pt;}
.y1e_c00279{bottom:537.693333pt;}
.yda_c00279{bottom:538.266667pt;}
.ya_c00279{bottom:543.026667pt;}
.y85_c00279{bottom:544.160000pt;}
.y2d_c00279{bottom:544.920000pt;}
.y55_c00279{bottom:547.400000pt;}
.y40_c00279{bottom:549.133333pt;}
.y67_c00279{bottom:550.266667pt;}
.y1f_c00279{bottom:555.026667pt;}
.yf9_c00279{bottom:562.253333pt;}
.yee_c00279{bottom:564.160000pt;}
.y14_c00279{bottom:564.360000pt;}
.yb_c00279{bottom:564.893333pt;}
.yad_c00279{bottom:565.293333pt;}
.ycf_c00279{bottom:567.400000pt;}
.ye5_c00279{bottom:568.360000pt;}
.ybe_c00279{bottom:569.133333pt;}
.ydb_c00279{bottom:570.266667pt;}
.y86_c00279{bottom:576.160000pt;}
.y79_c00279{bottom:576.760000pt;}
.y2e_c00279{bottom:577.293333pt;}
.y18_c00279{bottom:580.493333pt;}
.y56_c00279{bottom:580.733333pt;}
.y41_c00279{bottom:581.133333pt;}
.y3_c00279{bottom:581.453333pt;}
.y15_c00279{bottom:581.866667pt;}
.y68_c00279{bottom:582.266667pt;}
.y94_c00279{bottom:582.466667pt;}
.y20_c00279{bottom:585.413333pt;}
.yae_c00279{bottom:594.093333pt;}
.y10f_c00279{bottom:600.160000pt;}
.yd0_c00279{bottom:600.733333pt;}
.ybf_c00279{bottom:601.133333pt;}
.yaf_c00279{bottom:601.493333pt;}
.ye6_c00279{bottom:601.693333pt;}
.yef_c00279{bottom:602.466667pt;}
.ydc_c00279{bottom:603.600000pt;}
.yc_c00279{bottom:604.080000pt;}
.y16_c00279{bottom:608.866667pt;}
.y87_c00279{bottom:609.493333pt;}
.y2f_c00279{bottom:610.626667pt;}
.y57_c00279{bottom:612.733333pt;}
.y19_c00279{bottom:614.066667pt;}
.y42_c00279{bottom:614.466667pt;}
.y4_c00279{bottom:615.400000pt;}
.y69_c00279{bottom:615.600000pt;}
.yf0_c00279{bottom:629.493333pt;}
.yb0_c00279{bottom:631.586667pt;}
.yd1_c00279{bottom:632.733333pt;}
.ye7_c00279{bottom:633.693333pt;}
.yc0_c00279{bottom:634.466667pt;}
.y21_c00279{bottom:635.026667pt;}
.ydd_c00279{bottom:635.600000pt;}
.yfa_c00279{bottom:635.800000pt;}
.y95_c00279{bottom:641.493333pt;}
.y88_c00279{bottom:642.826667pt;}
.y30_c00279{bottom:643.586667pt;}
.y58_c00279{bottom:644.733333pt;}
.y43_c00279{bottom:646.466667pt;}
.y6a_c00279{bottom:647.600000pt;}
.yd_c00279{bottom:651.973333pt;}
.y17_c00279{bottom:652.853333pt;}
.yfb_c00279{bottom:659.586667pt;}
.yf1_c00279{bottom:661.493333pt;}
.yb1_c00279{bottom:662.626667pt;}
.y22_c00279{bottom:663.693333pt;}
.yd2_c00279{bottom:664.733333pt;}
.yc1_c00279{bottom:666.466667pt;}
.y10b_c00279{bottom:667.800000pt;}
.yde_c00279{bottom:668.560000pt;}
.ye_c00279{bottom:670.786667pt;}
.y96_c00279{bottom:674.826667pt;}
.y31_c00279{bottom:675.960000pt;}
.y44_c00279{bottom:678.466667pt;}
.y59_c00279{bottom:679.800000pt;}
.yfc_c00279{bottom:691.960000pt;}
.yf2_c00279{bottom:694.826667pt;}
.yb2_c00279{bottom:696.920000pt;}
.ye8_c00279{bottom:697.693333pt;}
.yd3_c00279{bottom:698.066667pt;}
.yc2_c00279{bottom:699.800000pt;}
.yf_c00279{bottom:700.920000pt;}
.ydf_c00279{bottom:701.133333pt;}
.ya4_c00279{bottom:706.826667pt;}
.y97_c00279{bottom:708.160000pt;}
.y32_c00279{bottom:708.920000pt;}
.y45_c00279{bottom:711.800000pt;}
.y5a_c00279{bottom:713.133333pt;}
.y23_c00279{bottom:723.693333pt;}
.yf3_c00279{bottom:728.160000pt;}
.yb3_c00279{bottom:730.253333pt;}
.yd4_c00279{bottom:731.400000pt;}
.yc3_c00279{bottom:731.800000pt;}
.ye9_c00279{bottom:732.933333pt;}
.yfd_c00279{bottom:733.133333pt;}
.y10_c00279{bottom:733.786667pt;}
.ye0_c00279{bottom:734.266667pt;}
.y89_c00279{bottom:740.160000pt;}
.y33_c00279{bottom:741.293333pt;}
.y5b_c00279{bottom:743.400000pt;}
.y46_c00279{bottom:745.133333pt;}
.y6b_c00279{bottom:746.266667pt;}
.yb4_c00279{bottom:762.253333pt;}
.y105_c00279{bottom:764.160000pt;}
.yc4_c00279{bottom:765.133333pt;}
.y98_c00279{bottom:772.160000pt;}
.y8a_c00279{bottom:773.493333pt;}
.y34_c00279{bottom:775.586667pt;}
.y5c_c00279{bottom:776.733333pt;}
.y7a_c00279{bottom:777.693333pt;}
.y6c_c00279{bottom:779.226667pt;}
.y24_c00279{bottom:784.453333pt;}
.y47_c00279{bottom:785.133333pt;}
.y11_c00279{bottom:793.600000pt;}
.yfe_c00279{bottom:794.253333pt;}
.yb5_c00279{bottom:795.586667pt;}
.y106_c00279{bottom:796.160000pt;}
.yc5_c00279{bottom:798.466667pt;}
.y8b_c00279{bottom:805.493333pt;}
.y35_c00279{bottom:807.586667pt;}
.y5d_c00279{bottom:808.733333pt;}
.y48_c00279{bottom:810.466667pt;}
.y6d_c00279{bottom:811.600000pt;}
.yff_c00279{bottom:826.253333pt;}
.yb6_c00279{bottom:827.586667pt;}
.y107_c00279{bottom:829.493333pt;}
.yd5_c00279{bottom:830.466667pt;}
.yc6_c00279{bottom:831.800000pt;}
.y8c_c00279{bottom:838.826667pt;}
.y12_c00279{bottom:840.133333pt;}
.y36_c00279{bottom:840.920000pt;}
.y5e_c00279{bottom:842.066667pt;}
.y7b_c00279{bottom:843.026667pt;}
.y49_c00279{bottom:843.800000pt;}
.y6e_c00279{bottom:844.933333pt;}
.yb7_c00279{bottom:859.960000pt;}
.y100_c00279{bottom:862.826667pt;}
.yc7_c00279{bottom:863.800000pt;}
.y8d_c00279{bottom:873.493333pt;}
.y37_c00279{bottom:875.586667pt;}
.y5f_c00279{bottom:876.733333pt;}
.y4a_c00279{bottom:878.466667pt;}
.y6f_c00279{bottom:879.600000pt;}
.y101_c00279{bottom:888.920000pt;}
.y110_c00279{bottom:890.826667pt;}
.yb8_c00279{bottom:891.586667pt;}
.yc8_c00279{bottom:895.800000pt;}
.y8e_c00279{bottom:905.493333pt;}
.y38_c00279{bottom:908.533333pt;}
.y60_c00279{bottom:908.733333pt;}
.y7c_c00279{bottom:909.693333pt;}
.y4b_c00279{bottom:910.466667pt;}
.y70_c00279{bottom:912.560000pt;}
.y8f_c00279{bottom:938.826667pt;}
.y39_c00279{bottom:940.920000pt;}
.y61_c00279{bottom:942.066667pt;}
.y7d_c00279{bottom:943.026667pt;}
.y4c_c00279{bottom:943.800000pt;}
.y71_c00279{bottom:945.893333pt;}
.y1_c00279{bottom:977.693333pt;}
.y2_c00279{bottom:979.600000pt;}
.h1b_c00279{height:7.412682pt;}
.h17_c00279{height:12.988594pt;}
.h19_c00279{height:20.466875pt;}
.h2_c00279{height:22.303646pt;}
.hb_c00279{height:27.879557pt;}
.h1_c00279{height:31.618698pt;}
.h4_c00279{height:35.357839pt;}
.h15_c00279{height:42.770521pt;}
.h18_c00279{height:46.509661pt;}
.h10_c00279{height:50.183203pt;}
.hc_c00279{height:53.922344pt;}
.h6_c00279{height:57.661484pt;}
.h16_c00279{height:70.650078pt;}
.he_c00279{height:74.389219pt;}
.h7_c00279{height:78.128359pt;}
.h9_c00279{height:81.801901pt;}
.h1d_c00279{height:85.541042pt;}
.h1a_c00279{height:92.953724pt;}
.h1f_c00279{height:96.692865pt;}
.h3_c00279{height:100.432005pt;}
.h13_c00279{height:104.105547pt;}
.h11_c00279{height:109.681458pt;}
.h1c_c00279{height:111.583828pt;}
.h1e_c00279{height:128.311562pt;}
.h12_c00279{height:139.463385pt;}
.h5_c00279{height:145.039297pt;}
.h14_c00279{height:146.876068pt;}
.hf_c00279{height:152.451979pt;}
.ha_c00279{height:159.930260pt;}
.hd_c00279{height:163.603802pt;}
.h8_c00279{height:225.004427pt;}
.h0_c00279{height:1186.666667pt;}
.w0_c00279{width:782.666667pt;}
.x0_c00279{left:0.000000pt;}
.x3_c00279{left:133.333333pt;}
.x1_c00279{left:134.293333pt;}
.x4_c00279{left:136.000000pt;}
.x5_c00279{left:149.533333pt;}
.x6_c00279{left:151.040000pt;}
.x7_c00279{left:152.373333pt;}
.x8_c00279{left:158.293333pt;}
.xa_c00279{left:162.866667pt;}
.x9_c00279{left:164.000000pt;}
.x13_c00279{left:188.960000pt;}
.x12_c00279{left:190.293333pt;}
.x14_c00279{left:191.800000pt;}
.x15_c00279{left:193.133333pt;}
.x16_c00279{left:194.466667pt;}
.x17_c00279{left:202.666667pt;}
.x18_c00279{left:204.000000pt;}
.x19_c00279{left:205.333333pt;}
.x1a_c00279{left:218.666667pt;}
.x1b_c00279{left:220.000000pt;}
.x1d_c00279{left:221.333333pt;}
.x1c_c00279{left:222.666667pt;}
.x1e_c00279{left:228.960000pt;}
.x1f_c00279{left:230.666667pt;}
.x20_c00279{left:232.000000pt;}
.x22_c00279{left:233.706667pt;}
.x21_c00279{left:234.666667pt;}
.x23_c00279{left:242.666667pt;}
.x24_c00279{left:244.373333pt;}
.x26_c00279{left:245.706667pt;}
.x25_c00279{left:246.666667pt;}
.x27_c00279{left:254.666667pt;}
.x28_c00279{left:256.373333pt;}
.x2a_c00279{left:257.333333pt;}
.x29_c00279{left:258.466667pt;}
.x2c_c00279{left:278.293333pt;}
.x2b_c00279{left:279.426667pt;}
.x2d_c00279{left:281.333333pt;}
.x2e_c00279{left:282.666667pt;}
.x2f_c00279{left:290.666667pt;}
.x30_c00279{left:292.000000pt;}
.x32_c00279{left:293.333333pt;}
.x31_c00279{left:294.666667pt;}
.x33_c00279{left:301.533333pt;}
.x34_c00279{left:302.666667pt;}
.x35_c00279{left:304.000000pt;}
.x36_c00279{left:305.333333pt;}
.x37_c00279{left:306.666667pt;}
.x38_c00279{left:308.000000pt;}
.x39_c00279{left:314.666667pt;}
.x3a_c00279{left:315.626667pt;}
.x3b_c00279{left:317.333333pt;}
.x3c_c00279{left:318.666667pt;}
.x3e_c00279{left:326.293333pt;}
.x3d_c00279{left:328.760000pt;}
.x3f_c00279{left:330.666667pt;}
.x40_c00279{left:332.000000pt;}
.x2_c00279{left:360.000000pt;}
.xb_c00279{left:442.666667pt;}
.xc_c00279{left:458.866667pt;}
.xd_c00279{left:460.373333pt;}
.xe_c00279{left:461.706667pt;}
.x10_c00279{left:470.866667pt;}
.xf_c00279{left:472.000000pt;}
.x11_c00279{left:472.960000pt;}
.x41_c00279{left:498.293333pt;}
.x42_c00279{left:499.800000pt;}
.x43_c00279{left:501.133333pt;}
.x45_c00279{left:509.333333pt;}
.x44_c00279{left:510.666667pt;}
.x46_c00279{left:514.666667pt;}
.x47_c00279{left:526.666667pt;}
.x48_c00279{left:528.000000pt;}
.x49_c00279{left:529.333333pt;}
.x4a_c00279{left:538.293333pt;}
.x4b_c00279{left:540.000000pt;}
.x4c_c00279{left:541.333333pt;}
.x4d_c00279{left:549.333333pt;}
.x4e_c00279{left:550.666667pt;}
.x4f_c00279{left:552.000000pt;}
.x50_c00279{left:553.333333pt;}
.x51_c00279{left:554.666667pt;}
.x52_c00279{left:562.666667pt;}
.x53_c00279{left:564.000000pt;}
.x54_c00279{left:565.133333pt;}
.x55_c00279{left:566.666667pt;}
.x57_c00279{left:586.293333pt;}
.x56_c00279{left:587.426667pt;}
.x58_c00279{left:589.333333pt;}
.x59_c00279{left:596.960000pt;}
.x5a_c00279{left:598.666667pt;}
.x5b_c00279{left:600.000000pt;}
.x5c_c00279{left:601.333333pt;}
.x5d_c00279{left:602.666667pt;}
.x5e_c00279{left:609.533333pt;}
.x5f_c00279{left:610.666667pt;}
.x60_c00279{left:612.000000pt;}
.x61_c00279{left:613.333333pt;}
.x62_c00279{left:622.293333pt;}
.x63_c00279{left:624.000000pt;}
.x64_c00279{left:625.333333pt;}
.x66_c00279{left:634.293333pt;}
.x65_c00279{left:635.426667pt;}
.x67_c00279{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_826cf462460c29a60b102aef.woff2')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma6_c00280{transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);}
.me8_c00280{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.m7f_c00280{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.mbf_c00280{transform:matrix(0.347866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347866,0.000000,0.000000,0.250000,0,0);}
.mdb_c00280{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.mee_c00280{transform:matrix(0.354202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354202,0.000000,0.000000,0.250000,0,0);}
.m17_c00280{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.mae_c00280{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m2f_c00280{transform:matrix(0.365126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365126,0.000000,0.000000,0.250000,0,0);}
.m64_c00280{transform:matrix(0.366948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366948,0.000000,0.000000,0.250000,0,0);}
.ma3_c00280{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m68_c00280{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m82_c00280{transform:matrix(0.370015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370015,0.000000,0.000000,0.250000,0,0);}
.m55_c00280{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mbe_c00280{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m2b_c00280{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mdd_c00280{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.m75_c00280{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.med_c00280{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m7c_c00280{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.mc8_c00280{transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);}
.ma_c00280{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m95_c00280{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m54_c00280{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m47_c00280{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mc0_c00280{transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);}
.m66_c00280{transform:matrix(0.390756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390756,0.000000,0.000000,0.250000,0,0);}
.me0_c00280{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.mcb_c00280{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mbc_c00280{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.mb9_c00280{transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);}
.md6_c00280{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m61_c00280{transform:matrix(0.396856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396856,0.000000,0.000000,0.250000,0,0);}
.m58_c00280{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.m5b_c00280{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mde_c00280{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.me_c00280{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_c00280{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mac_c00280{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m57_c00280{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m18_c00280{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m70_c00280{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m48_c00280{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m12_c00280{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.mef_c00280{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.mbb_c00280{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.mc9_c00280{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.md9_c00280{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.ma9_c00280{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m8_c00280{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m34_c00280{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.md1_c00280{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m31_c00280{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m9c_c00280{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m6c_c00280{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m29_c00280{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m8b_c00280{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mad_c00280{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.mb7_c00280{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m6b_c00280{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m16_c00280{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m3a_c00280{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.ma2_c00280{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m80_c00280{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m90_c00280{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m3f_c00280{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m5f_c00280{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.md7_c00280{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.m98_c00280{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m86_c00280{transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);}
.md4_c00280{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.mf6_c00280{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m14_c00280{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m3d_c00280{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.m88_c00280{transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);}
.mc6_c00280{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.me2_c00280{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m24_c00280{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m81_c00280{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mc2_c00280{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m84_c00280{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m52_c00280{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m6d_c00280{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m37_c00280{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mf1_c00280{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m53_c00280{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m8f_c00280{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mb4_c00280{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.maf_c00280{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m9e_c00280{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mf7_c00280{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.mca_c00280{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m8a_c00280{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.m5_c00280{transform:matrix(0.449907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449907,0.000000,0.000000,0.250000,0,0);}
.mb6_c00280{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.meb_c00280{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m71_c00280{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m8c_c00280{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m21_c00280{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m1_c00280{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m7e_c00280{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mf5_c00280{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mcd_c00280{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mba_c00280{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.mb3_c00280{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.mec_c00280{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.md3_c00280{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.maa_c00280{transform:matrix(0.469748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469748,0.000000,0.000000,0.250000,0,0);}
.mb8_c00280{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.mb0_c00280{transform:matrix(0.471849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471849,0.000000,0.000000,0.250000,0,0);}
.md8_c00280{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.md5_c00280{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.m69_c00280{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m72_c00280{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.mbd_c00280{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.m39_c00280{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m4e_c00280{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m4b_c00280{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mb1_c00280{transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);}
.m45_c00280{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m33_c00280{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m4c_c00280{transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);}
.m87_c00280{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m9d_c00280{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mda_c00280{transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);}
.m2d_c00280{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.ma5_c00280{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m65_c00280{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m62_c00280{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m23_c00280{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.md_c00280{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);}
.m15_c00280{transform:matrix(0.507780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507780,0.000000,0.000000,0.250000,0,0);}
.m63_c00280{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m8e_c00280{transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);}
.m9a_c00280{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m91_c00280{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.me3_c00280{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m2a_c00280{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m93_c00280{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m49_c00280{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m32_c00280{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m6e_c00280{transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);}
.m13_c00280{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m5c_c00280{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m9b_c00280{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.m3_c00280{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.me7_c00280{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m5e_c00280{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m83_c00280{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m35_c00280{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m5a_c00280{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m60_c00280{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.ma8_c00280{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m6a_c00280{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mc7_c00280{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m96_c00280{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m4_c00280{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m50_c00280{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m7_c00280{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m1a_c00280{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.ma1_c00280{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m9f_c00280{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m2_c00280{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m27_c00280{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m36_c00280{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m30_c00280{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mc5_c00280{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m22_c00280{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m7d_c00280{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.mc_c00280{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mce_c00280{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m20_c00280{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m73_c00280{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m92_c00280{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m56_c00280{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m97_c00280{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.md2_c00280{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.mf8_c00280{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m43_c00280{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m44_c00280{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m7b_c00280{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m6_c00280{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m10_c00280{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m99_c00280{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mb5_c00280{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m4f_c00280{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m67_c00280{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m3b_c00280{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m9_c00280{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mab_c00280{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m7a_c00280{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.mdc_c00280{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m46_c00280{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mb2_c00280{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m28_c00280{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.mc1_c00280{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m51_c00280{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m4d_c00280{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mf4_c00280{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.me4_c00280{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m1b_c00280{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m8d_c00280{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m85_c00280{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.mf2_c00280{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m76_c00280{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.me9_c00280{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mcc_c00280{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m2e_c00280{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);}
.ma0_c00280{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m6f_c00280{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.m59_c00280{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.me5_c00280{transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);}
.mea_c00280{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m74_c00280{transform:matrix(0.610588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610588,0.000000,0.000000,0.250000,0,0);}
.mf_c00280{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m94_c00280{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.mc4_c00280{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.m3c_c00280{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mf0_c00280{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m0_c00280{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m1d_c00280{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.me6_c00280{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m19_c00280{transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);}
.ma4_c00280{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m25_c00280{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m4a_c00280{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m79_c00280{transform:matrix(0.673529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673529,0.000000,0.000000,0.250000,0,0);}
.m89_c00280{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m38_c00280{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m1f_c00280{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m77_c00280{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.mdf_c00280{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.me1_c00280{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m41_c00280{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m5d_c00280{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m1e_c00280{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m42_c00280{transform:matrix(0.744391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.744391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.744391,0.000000,0.000000,0.250000,0,0);}
.m11_c00280{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mf3_c00280{transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);}
.mcf_c00280{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m2c_c00280{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.ma7_c00280{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m3e_c00280{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.m78_c00280{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m40_c00280{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mb_c00280{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m1c_c00280{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.md0_c00280{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.mc3_c00280{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
.fs7_c00280{font-size:3.420000px;}
.fs4_c00280{font-size:18.720000px;}
.fs0_c00280{font-size:20.400000px;}
.fs5_c00280{font-size:25.500000px;}
.fs1_c00280{font-size:28.920000px;}
.fs2_c00280{font-size:32.340000px;}
.fs3_c00280{font-size:35.700000px;}
.fs6_c00280{font-size:39.120000px;}
.y0_c00280{bottom:0.000000px;}
.yb7_c00280{bottom:251.745000px;}
.yb5_c00280{bottom:253.245000px;}
.yb6_c00280{bottom:253.905000px;}
.yb2_c00280{bottom:254.130000px;}
.yb4_c00280{bottom:254.970000px;}
.yb3_c00280{bottom:255.405000px;}
.yb0_c00280{bottom:272.325000px;}
.yaf_c00280{bottom:272.745000px;}
.yb1_c00280{bottom:273.405000px;}
.yad_c00280{bottom:273.630000px;}
.yae_c00280{bottom:274.905000px;}
.yab_c00280{bottom:292.245000px;}
.yac_c00280{bottom:293.970000px;}
.yaa_c00280{bottom:294.405000px;}
.ya9_c00280{bottom:311.745000px;}
.ya8_c00280{bottom:312.405000px;}
.ya6_c00280{bottom:312.825000px;}
.ya7_c00280{bottom:313.245000px;}
.ya5_c00280{bottom:313.905000px;}
.ya4_c00280{bottom:314.130000px;}
.ya3_c00280{bottom:315.405000px;}
.ya1_c00280{bottom:331.245000px;}
.ya2_c00280{bottom:332.745000px;}
.y9f_c00280{bottom:333.405000px;}
.y9e_c00280{bottom:334.470000px;}
.y9d_c00280{bottom:334.905000px;}
.ya0_c00280{bottom:334.920000px;}
.y9c_c00280{bottom:352.905000px;}
.y9b_c00280{bottom:353.970000px;}
.y9a_c00280{bottom:354.405000px;}
.y99_c00280{bottom:355.470000px;}
.y94_c00280{bottom:371.745000px;}
.y98_c00280{bottom:372.405000px;}
.y95_c00280{bottom:372.630000px;}
.y97_c00280{bottom:372.825000px;}
.y96_c00280{bottom:373.905000px;}
.y92_c00280{bottom:391.245000px;}
.y93_c00280{bottom:392.130000px;}
.y91_c00280{bottom:393.405000px;}
.y90_c00280{bottom:410.745000px;}
.y8f_c00280{bottom:411.825000px;}
.y8b_c00280{bottom:430.245000px;}
.y8e_c00280{bottom:431.325000px;}
.y8d_c00280{bottom:431.745000px;}
.y88_c00280{bottom:432.405000px;}
.y89_c00280{bottom:432.630000px;}
.y8c_c00280{bottom:432.825000px;}
.y8a_c00280{bottom:433.920000px;}
.y87_c00280{bottom:448.905000px;}
.y83_c00280{bottom:449.745000px;}
.y86_c00280{bottom:449.970000px;}
.y85_c00280{bottom:450.825000px;}
.y84_c00280{bottom:453.420000px;}
.y82_c00280{bottom:472.905000px;}
.y80_c00280{bottom:489.180000px;}
.y7d_c00280{bottom:490.245000px;}
.y81_c00280{bottom:491.970000px;}
.y7f_c00280{bottom:492.405000px;}
.y7e_c00280{bottom:492.420000px;}
.y7b_c00280{bottom:518.325000px;}
.y7c_c00280{bottom:518.550000px;}
.y7a_c00280{bottom:519.405000px;}
.y79_c00280{bottom:537.825000px;}
.y77_c00280{bottom:538.050000px;}
.y78_c00280{bottom:538.905000px;}
.y76_c00280{bottom:539.970000px;}
.y75_c00280{bottom:562.245000px;}
.y73_c00280{bottom:607.245000px;}
.y74_c00280{bottom:608.745000px;}
.y72_c00280{bottom:610.905000px;}
.y71_c00280{bottom:626.745000px;}
.y70_c00280{bottom:628.245000px;}
.y6f_c00280{bottom:629.130000px;}
.y6e_c00280{bottom:630.405000px;}
.y6d_c00280{bottom:647.745000px;}
.y6a_c00280{bottom:648.630000px;}
.y6b_c00280{bottom:649.905000px;}
.y6c_c00280{bottom:650.970000px;}
.y66_c00280{bottom:665.970000px;}
.y69_c00280{bottom:666.405000px;}
.y67_c00280{bottom:667.245000px;}
.y65_c00280{bottom:668.130000px;}
.y68_c00280{bottom:668.970000px;}
.y64_c00280{bottom:669.405000px;}
.y63_c00280{bottom:686.325000px;}
.y62_c00280{bottom:686.745000px;}
.y60_c00280{bottom:688.905000px;}
.y61_c00280{bottom:689.130000px;}
.y5f_c00280{bottom:705.405000px;}
.y5e_c00280{bottom:706.245000px;}
.y5c_c00280{bottom:708.405000px;}
.y5d_c00280{bottom:708.630000px;}
.y5b_c00280{bottom:709.905000px;}
.y57_c00280{bottom:725.745000px;}
.y56_c00280{bottom:726.825000px;}
.y58_c00280{bottom:727.905000px;}
.y5a_c00280{bottom:728.130000px;}
.y59_c00280{bottom:728.970000px;}
.y53_c00280{bottom:745.245000px;}
.y54_c00280{bottom:746.325000px;}
.y51_c00280{bottom:747.405000px;}
.y55_c00280{bottom:747.630000px;}
.y52_c00280{bottom:748.470000px;}
.y50_c00280{bottom:748.905000px;}
.y4d_c00280{bottom:765.180000px;}
.y4b_c00280{bottom:766.245000px;}
.y4f_c00280{bottom:767.130000px;}
.y4e_c00280{bottom:767.970000px;}
.y4c_c00280{bottom:768.405000px;}
.y4a_c00280{bottom:784.905000px;}
.y49_c00280{bottom:785.745000px;}
.y48_c00280{bottom:787.905000px;}
.y45_c00280{bottom:805.245000px;}
.y43_c00280{bottom:806.325000px;}
.y46_c00280{bottom:807.405000px;}
.y47_c00280{bottom:807.630000px;}
.y44_c00280{bottom:808.470000px;}
.y3f_c00280{bottom:824.745000px;}
.y40_c00280{bottom:825.630000px;}
.y41_c00280{bottom:825.825000px;}
.y3e_c00280{bottom:826.905000px;}
.y42_c00280{bottom:827.970000px;}
.y3a_c00280{bottom:845.745000px;}
.y3d_c00280{bottom:846.405000px;}
.y3b_c00280{bottom:846.630000px;}
.y3c_c00280{bottom:847.470000px;}
.y39_c00280{bottom:847.905000px;}
.y38_c00280{bottom:864.180000px;}
.y36_c00280{bottom:865.245000px;}
.y35_c00280{bottom:866.130000px;}
.y34_c00280{bottom:867.405000px;}
.y37_c00280{bottom:868.470000px;}
.y2f_c00280{bottom:884.745000px;}
.y30_c00280{bottom:885.405000px;}
.y33_c00280{bottom:885.630000px;}
.y31_c00280{bottom:886.470000px;}
.y32_c00280{bottom:886.905000px;}
.y2e_c00280{bottom:904.245000px;}
.y2c_c00280{bottom:905.130000px;}
.y2a_c00280{bottom:905.325000px;}
.y2d_c00280{bottom:905.970000px;}
.y2b_c00280{bottom:906.405000px;}
.y27_c00280{bottom:923.745000px;}
.y28_c00280{bottom:924.630000px;}
.y26_c00280{bottom:924.825000px;}
.y29_c00280{bottom:925.470000px;}
.y25_c00280{bottom:925.905000px;}
.y22_c00280{bottom:944.130000px;}
.y24_c00280{bottom:945.405000px;}
.y23_c00280{bottom:946.470000px;}
.y1f_c00280{bottom:962.745000px;}
.y20_c00280{bottom:963.825000px;}
.y1e_c00280{bottom:964.905000px;}
.y21_c00280{bottom:965.130000px;}
.y1d_c00280{bottom:981.405000px;}
.y1b_c00280{bottom:982.245000px;}
.y1a_c00280{bottom:984.405000px;}
.y19_c00280{bottom:984.630000px;}
.y1c_c00280{bottom:985.470000px;}
.y16_c00280{bottom:1001.745000px;}
.y18_c00280{bottom:1003.245000px;}
.y14_c00280{bottom:1003.905000px;}
.y17_c00280{bottom:1004.130000px;}
.y15_c00280{bottom:1005.405000px;}
.y11_c00280{bottom:1021.245000px;}
.y12_c00280{bottom:1021.470000px;}
.y13_c00280{bottom:1022.325000px;}
.ye_c00280{bottom:1023.405000px;}
.yf_c00280{bottom:1023.630000px;}
.y10_c00280{bottom:1024.470000px;}
.yc_c00280{bottom:1039.905000px;}
.yd_c00280{bottom:1040.745000px;}
.y7_c00280{bottom:1042.245000px;}
.yb_c00280{bottom:1042.905000px;}
.ya_c00280{bottom:1043.130000px;}
.y8_c00280{bottom:1043.970000px;}
.y9_c00280{bottom:1044.405000px;}
.y4_c00280{bottom:1061.325000px;}
.y5_c00280{bottom:1061.745000px;}
.y6_c00280{bottom:1062.630000px;}
.y3_c00280{bottom:1063.905000px;}
.y2_c00280{bottom:1099.905000px;}
.y1_c00280{bottom:1102.050000px;}
.h8_c00280{height:4.206533px;}
.h5_c00280{height:23.025234px;}
.h1_c00280{height:25.091602px;}
.h6_c00280{height:31.364502px;}
.h2_c00280{height:35.571035px;}
.h3_c00280{height:39.777568px;}
.h4_c00280{height:43.910303px;}
.h7_c00280{height:48.116836px;}
.h0_c00280{height:1335.000000px;}
.w0_c00280{width:880.500000px;}
.x0_c00280{left:0.000000px;}
.x26_c00280{left:151.920000px;}
.xf_c00280{left:153.420000px;}
.xcb_c00280{left:164.580000px;}
.x7a_c00280{left:166.500000px;}
.x1a_c00280{left:168.000000px;}
.x3_c00280{left:169.500000px;}
.x6f_c00280{left:171.000000px;}
.x4c_c00280{left:172.500000px;}
.x3f_c00280{left:174.000000px;}
.x34_c00280{left:177.000000px;}
.x9d_c00280{left:180.000000px;}
.x1b_c00280{left:181.080000px;}
.x76_c00280{left:182.580000px;}
.x70_c00280{left:184.500000px;}
.x10_c00280{left:186.000000px;}
.xf4_c00280{left:188.580000px;}
.x4d_c00280{left:190.920000px;}
.x4f_c00280{left:192.420000px;}
.x67_c00280{left:195.000000px;}
.x7b_c00280{left:198.000000px;}
.xab_c00280{left:201.000000px;}
.x4_c00280{left:202.500000px;}
.x8b_c00280{left:204.000000px;}
.xb1_c00280{left:205.500000px;}
.xf5_c00280{left:207.420000px;}
.x95_c00280{left:208.500000px;}
.x27_c00280{left:211.500000px;}
.x35_c00280{left:213.000000px;}
.x11_c00280{left:214.080000px;}
.x4e_c00280{left:217.920000px;}
.x71_c00280{left:222.000000px;}
.xc8_c00280{left:223.080000px;}
.x5d_c00280{left:224.580000px;}
.x50_c00280{left:226.500000px;}
.xcc_c00280{left:228.855000px;}
.x1c_c00280{left:229.920000px;}
.x36_c00280{left:231.000000px;}
.x28_c00280{left:234.000000px;}
.xe9_c00280{left:235.920000px;}
.xdb_c00280{left:238.920000px;}
.x5_c00280{left:240.420000px;}
.x7c_c00280{left:242.580000px;}
.xf0_c00280{left:247.080000px;}
.xd6_c00280{left:249.000000px;}
.xe6_c00280{left:250.500000px;}
.x5e_c00280{left:253.080000px;}
.x8c_c00280{left:256.500000px;}
.xb2_c00280{left:257.580000px;}
.x7d_c00280{left:259.080000px;}
.xdd_c00280{left:261.000000px;}
.x9e_c00280{left:262.080000px;}
.x83_c00280{left:264.000000px;}
.x1d_c00280{left:265.500000px;}
.x12_c00280{left:267.000000px;}
.xf6_c00280{left:268.500000px;}
.x40_c00280{left:270.420000px;}
.xd2_c00280{left:271.500000px;}
.xb8_c00280{left:274.500000px;}
.x8d_c00280{left:276.000000px;}
.x13_c00280{left:280.500000px;}
.x5f_c00280{left:283.080000px;}
.x51_c00280{left:284.580000px;}
.x72_c00280{left:289.080000px;}
.x96_c00280{left:291.000000px;}
.xcd_c00280{left:292.080000px;}
.x41_c00280{left:293.580000px;}
.x37_c00280{left:295.500000px;}
.xb3_c00280{left:297.420000px;}
.xea_c00280{left:298.500000px;}
.xd7_c00280{left:301.500000px;}
.x52_c00280{left:303.000000px;}
.xe1_c00280{left:305.580000px;}
.x29_c00280{left:307.500000px;}
.x68_c00280{left:308.580000px;}
.xc3_c00280{left:310.500000px;}
.x6_c00280{left:312.420000px;}
.x9f_c00280{left:315.000000px;}
.xf7_c00280{left:318.000000px;}
.x8e_c00280{left:319.920000px;}
.xbf_c00280{left:321.000000px;}
.xd8_c00280{left:322.080000px;}
.x60_c00280{left:323.580000px;}
.x2a_c00280{left:325.500000px;}
.x38_c00280{left:326.580000px;}
.x14_c00280{left:328.500000px;}
.x7e_c00280{left:330.420000px;}
.x1e_c00280{left:332.580000px;}
.x77_c00280{left:334.500000px;}
.xf1_c00280{left:337.500000px;}
.x69_c00280{left:339.000000px;}
.x84_c00280{left:341.775000px;}
.xdc_c00280{left:343.080000px;}
.xd4_c00280{left:344.775000px;}
.x73_c00280{left:349.500000px;}
.x42_c00280{left:352.920000px;}
.x78_c00280{left:354.000000px;}
.xf2_c00280{left:355.080000px;}
.xce_c00280{left:357.420000px;}
.x97_c00280{left:358.920000px;}
.x1f_c00280{left:363.000000px;}
.x6a_c00280{left:364.080000px;}
.x61_c00280{left:366.000000px;}
.x2b_c00280{left:367.500000px;}
.xde_c00280{left:369.000000px;}
.xa7_c00280{left:370.500000px;}
.xa0_c00280{left:373.500000px;}
.xc4_c00280{left:376.920000px;}
.xc0_c00280{left:378.000000px;}
.x20_c00280{left:379.500000px;}
.x15_c00280{left:382.080000px;}
.xb9_c00280{left:384.420000px;}
.x85_c00280{left:387.000000px;}
.x74_c00280{left:388.500000px;}
.xf8_c00280{left:390.000000px;}
.x62_c00280{left:391.080000px;}
.xcf_c00280{left:393.000000px;}
.x53_c00280{left:394.080000px;}
.x8f_c00280{left:396.000000px;}
.xa8_c00280{left:397.080000px;}
.x43_c00280{left:399.000000px;}
.x98_c00280{left:400.500000px;}
.x7_c00280{left:401.580000px;}
.x1_c00280{left:405.000000px;}
.xec_c00280{left:408.000000px;}
.x2c_c00280{left:410.580000px;}
.x54_c00280{left:412.920000px;}
.x16_c00280{left:414.000000px;}
.xac_c00280{left:415.500000px;}
.x7f_c00280{left:420.000000px;}
.xe7_c00280{left:421.080000px;}
.x86_c00280{left:423.000000px;}
.xf3_c00280{left:425.580000px;}
.xc1_c00280{left:427.080000px;}
.x2d_c00280{left:429.000000px;}
.x44_c00280{left:430.500000px;}
.x6b_c00280{left:431.580000px;}
.x8_c00280{left:433.920000px;}
.xe2_c00280{left:435.000000px;}
.xa1_c00280{left:436.080000px;}
.x55_c00280{left:438.000000px;}
.x2e_c00280{left:440.580000px;}
.xa9_c00280{left:442.500000px;}
.xed_c00280{left:443.580000px;}
.xba_c00280{left:450.420000px;}
.x21_c00280{left:451.920000px;}
.xe3_c00280{left:453.000000px;}
.x39_c00280{left:457.500000px;}
.x9_c00280{left:462.000000px;}
.x45_c00280{left:463.920000px;}
.x90_c00280{left:466.080000px;}
.xa2_c00280{left:468.000000px;}
.x87_c00280{left:469.500000px;}
.xc9_c00280{left:470.580000px;}
.x2f_c00280{left:476.580000px;}
.x3a_c00280{left:478.920000px;}
.x6c_c00280{left:481.500000px;}
.x79_c00280{left:486.000000px;}
.xca_c00280{left:487.920000px;}
.x22_c00280{left:489.000000px;}
.x30_c00280{left:495.420000px;}
.x80_c00280{left:496.500000px;}
.x56_c00280{left:500.580000px;}
.xd5_c00280{left:504.420000px;}
.x46_c00280{left:507.000000px;}
.xaa_c00280{left:508.080000px;}
.x88_c00280{left:513.420000px;}
.x99_c00280{left:514.500000px;}
.xa3_c00280{left:516.420000px;}
.xc5_c00280{left:517.500000px;}
.x63_c00280{left:520.080000px;}
.x47_c00280{left:523.920000px;}
.x23_c00280{left:526.500000px;}
.xad_c00280{left:528.000000px;}
.x6d_c00280{left:529.500000px;}
.x9a_c00280{left:532.500000px;}
.xa_c00280{left:535.920000px;}
.xd0_c00280{left:537.855000px;}
.x3b_c00280{left:538.920000px;}
.x57_c00280{left:541.080000px;}
.xb4_c00280{left:543.420000px;}
.xe8_c00280{left:544.500000px;}
.x17_c00280{left:548.580000px;}
.x48_c00280{left:550.920000px;}
.xf9_c00280{left:552.420000px;}
.x31_c00280{left:555.000000px;}
.xe4_c00280{left:556.500000px;}
.xa4_c00280{left:558.420000px;}
.xae_c00280{left:561.420000px;}
.x91_c00280{left:564.000000px;}
.x64_c00280{left:565.500000px;}
.xc6_c00280{left:569.580000px;}
.xee_c00280{left:571.080000px;}
.xb5_c00280{left:573.420000px;}
.x3c_c00280{left:574.500000px;}
.xd1_c00280{left:576.420000px;}
.xb_c00280{left:577.500000px;}
.xfa_c00280{left:579.000000px;}
.x6e_c00280{left:580.500000px;}
.x81_c00280{left:581.580000px;}
.xbb_c00280{left:584.580000px;}
.x3d_c00280{left:586.500000px;}
.x24_c00280{left:589.920000px;}
.x65_c00280{left:591.000000px;}
.xc2_c00280{left:594.855000px;}
.xa5_c00280{left:597.000000px;}
.xdf_c00280{left:598.275000px;}
.x9b_c00280{left:600.000000px;}
.x49_c00280{left:601.500000px;}
.xd9_c00280{left:609.000000px;}
.xaf_c00280{left:610.500000px;}
.xbc_c00280{left:612.000000px;}
.x58_c00280{left:615.000000px;}
.x25_c00280{left:616.080000px;}
.x32_c00280{left:618.420000px;}
.xb0_c00280{left:628.500000px;}
.x75_c00280{left:629.580000px;}
.x92_c00280{left:634.500000px;}
.x9c_c00280{left:636.000000px;}
.x59_c00280{left:640.500000px;}
.x4a_c00280{left:642.000000px;}
.x82_c00280{left:643.080000px;}
.x33_c00280{left:645.000000px;}
.xe5_c00280{left:646.080000px;}
.xbd_c00280{left:649.920000px;}
.xb6_c00280{left:651.420000px;}
.x18_c00280{left:654.420000px;}
.xc_c00280{left:655.500000px;}
.xa6_c00280{left:657.000000px;}
.x4b_c00280{left:660.000000px;}
.xda_c00280{left:661.080000px;}
.xe0_c00280{left:666.000000px;}
.x66_c00280{left:667.500000px;}
.xef_c00280{left:670.500000px;}
.x5a_c00280{left:672.000000px;}
.x3e_c00280{left:673.080000px;}
.xeb_c00280{left:676.920000px;}
.xd_c00280{left:678.000000px;}
.xb7_c00280{left:679.500000px;}
.x89_c00280{left:681.000000px;}
.x19_c00280{left:682.500000px;}
.x93_c00280{left:688.080000px;}
.xbe_c00280{left:690.000000px;}
.x5b_c00280{left:691.080000px;}
.x8a_c00280{left:697.500000px;}
.xe_c00280{left:702.420000px;}
.x2_c00280{left:704.580000px;}
.x94_c00280{left:706.920000px;}
.xc7_c00280{left:708.420000px;}
.x5c_c00280{left:712.500000px;}
.xd3_c00280{left:715.500000px;}
@media print{
.v0_c00280{vertical-align:0.000000pt;}
.ls0_c00280{letter-spacing:0.000000pt;}
.ws0_c00280{word-spacing:0.000000pt;}
.fs7_c00280{font-size:3.040000pt;}
.fs4_c00280{font-size:16.640000pt;}
.fs0_c00280{font-size:18.133333pt;}
.fs5_c00280{font-size:22.666667pt;}
.fs1_c00280{font-size:25.706667pt;}
.fs2_c00280{font-size:28.746667pt;}
.fs3_c00280{font-size:31.733333pt;}
.fs6_c00280{font-size:34.773333pt;}
.y0_c00280{bottom:0.000000pt;}
.yb7_c00280{bottom:223.773333pt;}
.yb5_c00280{bottom:225.106667pt;}
.yb6_c00280{bottom:225.693333pt;}
.yb2_c00280{bottom:225.893333pt;}
.yb4_c00280{bottom:226.640000pt;}
.yb3_c00280{bottom:227.026667pt;}
.yb0_c00280{bottom:242.066667pt;}
.yaf_c00280{bottom:242.440000pt;}
.yb1_c00280{bottom:243.026667pt;}
.yad_c00280{bottom:243.226667pt;}
.yae_c00280{bottom:244.360000pt;}
.yab_c00280{bottom:259.773333pt;}
.yac_c00280{bottom:261.306667pt;}
.yaa_c00280{bottom:261.693333pt;}
.ya9_c00280{bottom:277.106667pt;}
.ya8_c00280{bottom:277.693333pt;}
.ya6_c00280{bottom:278.066667pt;}
.ya7_c00280{bottom:278.440000pt;}
.ya5_c00280{bottom:279.026667pt;}
.ya4_c00280{bottom:279.226667pt;}
.ya3_c00280{bottom:280.360000pt;}
.ya1_c00280{bottom:294.440000pt;}
.ya2_c00280{bottom:295.773333pt;}
.y9f_c00280{bottom:296.360000pt;}
.y9e_c00280{bottom:297.306667pt;}
.y9d_c00280{bottom:297.693333pt;}
.ya0_c00280{bottom:297.706667pt;}
.y9c_c00280{bottom:313.693333pt;}
.y9b_c00280{bottom:314.640000pt;}
.y9a_c00280{bottom:315.026667pt;}
.y99_c00280{bottom:315.973333pt;}
.y94_c00280{bottom:330.440000pt;}
.y98_c00280{bottom:331.026667pt;}
.y95_c00280{bottom:331.226667pt;}
.y97_c00280{bottom:331.400000pt;}
.y96_c00280{bottom:332.360000pt;}
.y92_c00280{bottom:347.773333pt;}
.y93_c00280{bottom:348.560000pt;}
.y91_c00280{bottom:349.693333pt;}
.y90_c00280{bottom:365.106667pt;}
.y8f_c00280{bottom:366.066667pt;}
.y8b_c00280{bottom:382.440000pt;}
.y8e_c00280{bottom:383.400000pt;}
.y8d_c00280{bottom:383.773333pt;}
.y88_c00280{bottom:384.360000pt;}
.y89_c00280{bottom:384.560000pt;}
.y8c_c00280{bottom:384.733333pt;}
.y8a_c00280{bottom:385.706667pt;}
.y87_c00280{bottom:399.026667pt;}
.y83_c00280{bottom:399.773333pt;}
.y86_c00280{bottom:399.973333pt;}
.y85_c00280{bottom:400.733333pt;}
.y84_c00280{bottom:403.040000pt;}
.y82_c00280{bottom:420.360000pt;}
.y80_c00280{bottom:434.826667pt;}
.y7d_c00280{bottom:435.773333pt;}
.y81_c00280{bottom:437.306667pt;}
.y7f_c00280{bottom:437.693333pt;}
.y7e_c00280{bottom:437.706667pt;}
.y7b_c00280{bottom:460.733333pt;}
.y7c_c00280{bottom:460.933333pt;}
.y7a_c00280{bottom:461.693333pt;}
.y79_c00280{bottom:478.066667pt;}
.y77_c00280{bottom:478.266667pt;}
.y78_c00280{bottom:479.026667pt;}
.y76_c00280{bottom:479.973333pt;}
.y75_c00280{bottom:499.773333pt;}
.y73_c00280{bottom:539.773333pt;}
.y74_c00280{bottom:541.106667pt;}
.y72_c00280{bottom:543.026667pt;}
.y71_c00280{bottom:557.106667pt;}
.y70_c00280{bottom:558.440000pt;}
.y6f_c00280{bottom:559.226667pt;}
.y6e_c00280{bottom:560.360000pt;}
.y6d_c00280{bottom:575.773333pt;}
.y6a_c00280{bottom:576.560000pt;}
.y6b_c00280{bottom:577.693333pt;}
.y6c_c00280{bottom:578.640000pt;}
.y66_c00280{bottom:591.973333pt;}
.y69_c00280{bottom:592.360000pt;}
.y67_c00280{bottom:593.106667pt;}
.y65_c00280{bottom:593.893333pt;}
.y68_c00280{bottom:594.640000pt;}
.y64_c00280{bottom:595.026667pt;}
.y63_c00280{bottom:610.066667pt;}
.y62_c00280{bottom:610.440000pt;}
.y60_c00280{bottom:612.360000pt;}
.y61_c00280{bottom:612.560000pt;}
.y5f_c00280{bottom:627.026667pt;}
.y5e_c00280{bottom:627.773333pt;}
.y5c_c00280{bottom:629.693333pt;}
.y5d_c00280{bottom:629.893333pt;}
.y5b_c00280{bottom:631.026667pt;}
.y57_c00280{bottom:645.106667pt;}
.y56_c00280{bottom:646.066667pt;}
.y58_c00280{bottom:647.026667pt;}
.y5a_c00280{bottom:647.226667pt;}
.y59_c00280{bottom:647.973333pt;}
.y53_c00280{bottom:662.440000pt;}
.y54_c00280{bottom:663.400000pt;}
.y51_c00280{bottom:664.360000pt;}
.y55_c00280{bottom:664.560000pt;}
.y52_c00280{bottom:665.306667pt;}
.y50_c00280{bottom:665.693333pt;}
.y4d_c00280{bottom:680.160000pt;}
.y4b_c00280{bottom:681.106667pt;}
.y4f_c00280{bottom:681.893333pt;}
.y4e_c00280{bottom:682.640000pt;}
.y4c_c00280{bottom:683.026667pt;}
.y4a_c00280{bottom:697.693333pt;}
.y49_c00280{bottom:698.440000pt;}
.y48_c00280{bottom:700.360000pt;}
.y45_c00280{bottom:715.773333pt;}
.y43_c00280{bottom:716.733333pt;}
.y46_c00280{bottom:717.693333pt;}
.y47_c00280{bottom:717.893333pt;}
.y44_c00280{bottom:718.640000pt;}
.y3f_c00280{bottom:733.106667pt;}
.y40_c00280{bottom:733.893333pt;}
.y41_c00280{bottom:734.066667pt;}
.y3e_c00280{bottom:735.026667pt;}
.y42_c00280{bottom:735.973333pt;}
.y3a_c00280{bottom:751.773333pt;}
.y3d_c00280{bottom:752.360000pt;}
.y3b_c00280{bottom:752.560000pt;}
.y3c_c00280{bottom:753.306667pt;}
.y39_c00280{bottom:753.693333pt;}
.y38_c00280{bottom:768.160000pt;}
.y36_c00280{bottom:769.106667pt;}
.y35_c00280{bottom:769.893333pt;}
.y34_c00280{bottom:771.026667pt;}
.y37_c00280{bottom:771.973333pt;}
.y2f_c00280{bottom:786.440000pt;}
.y30_c00280{bottom:787.026667pt;}
.y33_c00280{bottom:787.226667pt;}
.y31_c00280{bottom:787.973333pt;}
.y32_c00280{bottom:788.360000pt;}
.y2e_c00280{bottom:803.773333pt;}
.y2c_c00280{bottom:804.560000pt;}
.y2a_c00280{bottom:804.733333pt;}
.y2d_c00280{bottom:805.306667pt;}
.y2b_c00280{bottom:805.693333pt;}
.y27_c00280{bottom:821.106667pt;}
.y28_c00280{bottom:821.893333pt;}
.y26_c00280{bottom:822.066667pt;}
.y29_c00280{bottom:822.640000pt;}
.y25_c00280{bottom:823.026667pt;}
.y22_c00280{bottom:839.226667pt;}
.y24_c00280{bottom:840.360000pt;}
.y23_c00280{bottom:841.306667pt;}
.y1f_c00280{bottom:855.773333pt;}
.y20_c00280{bottom:856.733333pt;}
.y1e_c00280{bottom:857.693333pt;}
.y21_c00280{bottom:857.893333pt;}
.y1d_c00280{bottom:872.360000pt;}
.y1b_c00280{bottom:873.106667pt;}
.y1a_c00280{bottom:875.026667pt;}
.y19_c00280{bottom:875.226667pt;}
.y1c_c00280{bottom:875.973333pt;}
.y16_c00280{bottom:890.440000pt;}
.y18_c00280{bottom:891.773333pt;}
.y14_c00280{bottom:892.360000pt;}
.y17_c00280{bottom:892.560000pt;}
.y15_c00280{bottom:893.693333pt;}
.y11_c00280{bottom:907.773333pt;}
.y12_c00280{bottom:907.973333pt;}
.y13_c00280{bottom:908.733333pt;}
.ye_c00280{bottom:909.693333pt;}
.yf_c00280{bottom:909.893333pt;}
.y10_c00280{bottom:910.640000pt;}
.yc_c00280{bottom:924.360000pt;}
.yd_c00280{bottom:925.106667pt;}
.y7_c00280{bottom:926.440000pt;}
.yb_c00280{bottom:927.026667pt;}
.ya_c00280{bottom:927.226667pt;}
.y8_c00280{bottom:927.973333pt;}
.y9_c00280{bottom:928.360000pt;}
.y4_c00280{bottom:943.400000pt;}
.y5_c00280{bottom:943.773333pt;}
.y6_c00280{bottom:944.560000pt;}
.y3_c00280{bottom:945.693333pt;}
.y2_c00280{bottom:977.693333pt;}
.y1_c00280{bottom:979.600000pt;}
.h8_c00280{height:3.739141pt;}
.h5_c00280{height:20.466875pt;}
.h1_c00280{height:22.303646pt;}
.h6_c00280{height:27.879557pt;}
.h2_c00280{height:31.618698pt;}
.h3_c00280{height:35.357839pt;}
.h4_c00280{height:39.031380pt;}
.h7_c00280{height:42.770521pt;}
.h0_c00280{height:1186.666667pt;}
.w0_c00280{width:782.666667pt;}
.x0_c00280{left:0.000000pt;}
.x26_c00280{left:135.040000pt;}
.xf_c00280{left:136.373333pt;}
.xcb_c00280{left:146.293333pt;}
.x7a_c00280{left:148.000000pt;}
.x1a_c00280{left:149.333333pt;}
.x3_c00280{left:150.666667pt;}
.x6f_c00280{left:152.000000pt;}
.x4c_c00280{left:153.333333pt;}
.x3f_c00280{left:154.666667pt;}
.x34_c00280{left:157.333333pt;}
.x9d_c00280{left:160.000000pt;}
.x1b_c00280{left:160.960000pt;}
.x76_c00280{left:162.293333pt;}
.x70_c00280{left:164.000000pt;}
.x10_c00280{left:165.333333pt;}
.xf4_c00280{left:167.626667pt;}
.x4d_c00280{left:169.706667pt;}
.x4f_c00280{left:171.040000pt;}
.x67_c00280{left:173.333333pt;}
.x7b_c00280{left:176.000000pt;}
.xab_c00280{left:178.666667pt;}
.x4_c00280{left:180.000000pt;}
.x8b_c00280{left:181.333333pt;}
.xb1_c00280{left:182.666667pt;}
.xf5_c00280{left:184.373333pt;}
.x95_c00280{left:185.333333pt;}
.x27_c00280{left:188.000000pt;}
.x35_c00280{left:189.333333pt;}
.x11_c00280{left:190.293333pt;}
.x4e_c00280{left:193.706667pt;}
.x71_c00280{left:197.333333pt;}
.xc8_c00280{left:198.293333pt;}
.x5d_c00280{left:199.626667pt;}
.x50_c00280{left:201.333333pt;}
.xcc_c00280{left:203.426667pt;}
.x1c_c00280{left:204.373333pt;}
.x36_c00280{left:205.333333pt;}
.x28_c00280{left:208.000000pt;}
.xe9_c00280{left:209.706667pt;}
.xdb_c00280{left:212.373333pt;}
.x5_c00280{left:213.706667pt;}
.x7c_c00280{left:215.626667pt;}
.xf0_c00280{left:219.626667pt;}
.xd6_c00280{left:221.333333pt;}
.xe6_c00280{left:222.666667pt;}
.x5e_c00280{left:224.960000pt;}
.x8c_c00280{left:228.000000pt;}
.xb2_c00280{left:228.960000pt;}
.x7d_c00280{left:230.293333pt;}
.xdd_c00280{left:232.000000pt;}
.x9e_c00280{left:232.960000pt;}
.x83_c00280{left:234.666667pt;}
.x1d_c00280{left:236.000000pt;}
.x12_c00280{left:237.333333pt;}
.xf6_c00280{left:238.666667pt;}
.x40_c00280{left:240.373333pt;}
.xd2_c00280{left:241.333333pt;}
.xb8_c00280{left:244.000000pt;}
.x8d_c00280{left:245.333333pt;}
.x13_c00280{left:249.333333pt;}
.x5f_c00280{left:251.626667pt;}
.x51_c00280{left:252.960000pt;}
.x72_c00280{left:256.960000pt;}
.x96_c00280{left:258.666667pt;}
.xcd_c00280{left:259.626667pt;}
.x41_c00280{left:260.960000pt;}
.x37_c00280{left:262.666667pt;}
.xb3_c00280{left:264.373333pt;}
.xea_c00280{left:265.333333pt;}
.xd7_c00280{left:268.000000pt;}
.x52_c00280{left:269.333333pt;}
.xe1_c00280{left:271.626667pt;}
.x29_c00280{left:273.333333pt;}
.x68_c00280{left:274.293333pt;}
.xc3_c00280{left:276.000000pt;}
.x6_c00280{left:277.706667pt;}
.x9f_c00280{left:280.000000pt;}
.xf7_c00280{left:282.666667pt;}
.x8e_c00280{left:284.373333pt;}
.xbf_c00280{left:285.333333pt;}
.xd8_c00280{left:286.293333pt;}
.x60_c00280{left:287.626667pt;}
.x2a_c00280{left:289.333333pt;}
.x38_c00280{left:290.293333pt;}
.x14_c00280{left:292.000000pt;}
.x7e_c00280{left:293.706667pt;}
.x1e_c00280{left:295.626667pt;}
.x77_c00280{left:297.333333pt;}
.xf1_c00280{left:300.000000pt;}
.x69_c00280{left:301.333333pt;}
.x84_c00280{left:303.800000pt;}
.xdc_c00280{left:304.960000pt;}
.xd4_c00280{left:306.466667pt;}
.x73_c00280{left:310.666667pt;}
.x42_c00280{left:313.706667pt;}
.x78_c00280{left:314.666667pt;}
.xf2_c00280{left:315.626667pt;}
.xce_c00280{left:317.706667pt;}
.x97_c00280{left:319.040000pt;}
.x1f_c00280{left:322.666667pt;}
.x6a_c00280{left:323.626667pt;}
.x61_c00280{left:325.333333pt;}
.x2b_c00280{left:326.666667pt;}
.xde_c00280{left:328.000000pt;}
.xa7_c00280{left:329.333333pt;}
.xa0_c00280{left:332.000000pt;}
.xc4_c00280{left:335.040000pt;}
.xc0_c00280{left:336.000000pt;}
.x20_c00280{left:337.333333pt;}
.x15_c00280{left:339.626667pt;}
.xb9_c00280{left:341.706667pt;}
.x85_c00280{left:344.000000pt;}
.x74_c00280{left:345.333333pt;}
.xf8_c00280{left:346.666667pt;}
.x62_c00280{left:347.626667pt;}
.xcf_c00280{left:349.333333pt;}
.x53_c00280{left:350.293333pt;}
.x8f_c00280{left:352.000000pt;}
.xa8_c00280{left:352.960000pt;}
.x43_c00280{left:354.666667pt;}
.x98_c00280{left:356.000000pt;}
.x7_c00280{left:356.960000pt;}
.x1_c00280{left:360.000000pt;}
.xec_c00280{left:362.666667pt;}
.x2c_c00280{left:364.960000pt;}
.x54_c00280{left:367.040000pt;}
.x16_c00280{left:368.000000pt;}
.xac_c00280{left:369.333333pt;}
.x7f_c00280{left:373.333333pt;}
.xe7_c00280{left:374.293333pt;}
.x86_c00280{left:376.000000pt;}
.xf3_c00280{left:378.293333pt;}
.xc1_c00280{left:379.626667pt;}
.x2d_c00280{left:381.333333pt;}
.x44_c00280{left:382.666667pt;}
.x6b_c00280{left:383.626667pt;}
.x8_c00280{left:385.706667pt;}
.xe2_c00280{left:386.666667pt;}
.xa1_c00280{left:387.626667pt;}
.x55_c00280{left:389.333333pt;}
.x2e_c00280{left:391.626667pt;}
.xa9_c00280{left:393.333333pt;}
.xed_c00280{left:394.293333pt;}
.xba_c00280{left:400.373333pt;}
.x21_c00280{left:401.706667pt;}
.xe3_c00280{left:402.666667pt;}
.x39_c00280{left:406.666667pt;}
.x9_c00280{left:410.666667pt;}
.x45_c00280{left:412.373333pt;}
.x90_c00280{left:414.293333pt;}
.xa2_c00280{left:416.000000pt;}
.x87_c00280{left:417.333333pt;}
.xc9_c00280{left:418.293333pt;}
.x2f_c00280{left:423.626667pt;}
.x3a_c00280{left:425.706667pt;}
.x6c_c00280{left:428.000000pt;}
.x79_c00280{left:432.000000pt;}
.xca_c00280{left:433.706667pt;}
.x22_c00280{left:434.666667pt;}
.x30_c00280{left:440.373333pt;}
.x80_c00280{left:441.333333pt;}
.x56_c00280{left:444.960000pt;}
.xd5_c00280{left:448.373333pt;}
.x46_c00280{left:450.666667pt;}
.xaa_c00280{left:451.626667pt;}
.x88_c00280{left:456.373333pt;}
.x99_c00280{left:457.333333pt;}
.xa3_c00280{left:459.040000pt;}
.xc5_c00280{left:460.000000pt;}
.x63_c00280{left:462.293333pt;}
.x47_c00280{left:465.706667pt;}
.x23_c00280{left:468.000000pt;}
.xad_c00280{left:469.333333pt;}
.x6d_c00280{left:470.666667pt;}
.x9a_c00280{left:473.333333pt;}
.xa_c00280{left:476.373333pt;}
.xd0_c00280{left:478.093333pt;}
.x3b_c00280{left:479.040000pt;}
.x57_c00280{left:480.960000pt;}
.xb4_c00280{left:483.040000pt;}
.xe8_c00280{left:484.000000pt;}
.x17_c00280{left:487.626667pt;}
.x48_c00280{left:489.706667pt;}
.xf9_c00280{left:491.040000pt;}
.x31_c00280{left:493.333333pt;}
.xe4_c00280{left:494.666667pt;}
.xa4_c00280{left:496.373333pt;}
.xae_c00280{left:499.040000pt;}
.x91_c00280{left:501.333333pt;}
.x64_c00280{left:502.666667pt;}
.xc6_c00280{left:506.293333pt;}
.xee_c00280{left:507.626667pt;}
.xb5_c00280{left:509.706667pt;}
.x3c_c00280{left:510.666667pt;}
.xd1_c00280{left:512.373333pt;}
.xb_c00280{left:513.333333pt;}
.xfa_c00280{left:514.666667pt;}
.x6e_c00280{left:516.000000pt;}
.x81_c00280{left:516.960000pt;}
.xbb_c00280{left:519.626667pt;}
.x3d_c00280{left:521.333333pt;}
.x24_c00280{left:524.373333pt;}
.x65_c00280{left:525.333333pt;}
.xc2_c00280{left:528.760000pt;}
.xa5_c00280{left:530.666667pt;}
.xdf_c00280{left:531.800000pt;}
.x9b_c00280{left:533.333333pt;}
.x49_c00280{left:534.666667pt;}
.xd9_c00280{left:541.333333pt;}
.xaf_c00280{left:542.666667pt;}
.xbc_c00280{left:544.000000pt;}
.x58_c00280{left:546.666667pt;}
.x25_c00280{left:547.626667pt;}
.x32_c00280{left:549.706667pt;}
.xb0_c00280{left:558.666667pt;}
.x75_c00280{left:559.626667pt;}
.x92_c00280{left:564.000000pt;}
.x9c_c00280{left:565.333333pt;}
.x59_c00280{left:569.333333pt;}
.x4a_c00280{left:570.666667pt;}
.x82_c00280{left:571.626667pt;}
.x33_c00280{left:573.333333pt;}
.xe5_c00280{left:574.293333pt;}
.xbd_c00280{left:577.706667pt;}
.xb6_c00280{left:579.040000pt;}
.x18_c00280{left:581.706667pt;}
.xc_c00280{left:582.666667pt;}
.xa6_c00280{left:584.000000pt;}
.x4b_c00280{left:586.666667pt;}
.xda_c00280{left:587.626667pt;}
.xe0_c00280{left:592.000000pt;}
.x66_c00280{left:593.333333pt;}
.xef_c00280{left:596.000000pt;}
.x5a_c00280{left:597.333333pt;}
.x3e_c00280{left:598.293333pt;}
.xeb_c00280{left:601.706667pt;}
.xd_c00280{left:602.666667pt;}
.xb7_c00280{left:604.000000pt;}
.x89_c00280{left:605.333333pt;}
.x19_c00280{left:606.666667pt;}
.x93_c00280{left:611.626667pt;}
.xbe_c00280{left:613.333333pt;}
.x5b_c00280{left:614.293333pt;}
.x8a_c00280{left:620.000000pt;}
.xe_c00280{left:624.373333pt;}
.x2_c00280{left:626.293333pt;}
.x94_c00280{left:628.373333pt;}
.xc7_c00280{left:629.706667pt;}
.x5c_c00280{left:633.333333pt;}
.xd3_c00280{left:636.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_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_ec8b4ba1eb5176053b7ffa0c.woff2')format("woff");}.ff1_c00281{font-family:ff1_c00281;line-height:1.688965;font-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_c00281{transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);}
.m10d_c00281{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m2_c00281{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m27_c00281{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m76_c00281{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.ma2_c00281{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m26_c00281{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m92_c00281{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m5_c00281{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.mc3_c00281{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.ma9_c00281{transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);}
.m10a_c00281{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m44_c00281{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m25_c00281{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mfa_c00281{transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);}
.mba_c00281{transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);}
.mf1_c00281{transform:matrix(0.392255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392255,0.000000,0.000000,0.250000,0,0);}
.ma1_c00281{transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);}
.m12_c00281{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m48_c00281{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.md5_c00281{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.mb_c00281{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m13_c00281{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.m8d_c00281{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.m5e_c00281{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.mf8_c00281{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m115_c00281{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.mc_c00281{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m106_c00281{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mf_c00281{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.md3_c00281{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m10c_c00281{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m90_c00281{transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);}
.m65_c00281{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.ma0_c00281{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.me2_c00281{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m104_c00281{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m49_c00281{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.mfd_c00281{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.mdc_c00281{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.me_c00281{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m109_c00281{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.ma5_c00281{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m86_c00281{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m10f_c00281{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.maa_c00281{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m22_c00281{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mc8_c00281{transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);}
.m3e_c00281{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m77_c00281{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.mcb_c00281{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.md8_c00281{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m100_c00281{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.mf9_c00281{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.ma_c00281{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m2d_c00281{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.mb0_c00281{transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);}
.mea_c00281{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m7b_c00281{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.me1_c00281{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m89_c00281{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m64_c00281{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mad_c00281{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m5f_c00281{transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);}
.mbc_c00281{transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);}
.md6_c00281{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m11_c00281{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.ma4_c00281{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.ma3_c00281{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.mb2_c00281{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.mf7_c00281{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m113_c00281{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.mca_c00281{transform:matrix(0.444706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444706,0.000000,0.000000,0.250000,0,0);}
.mf5_c00281{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.ma6_c00281{transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);}
.m8b_c00281{transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);}
.mc4_c00281{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m51_c00281{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.md0_c00281{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.maf_c00281{transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);}
.m1f_c00281{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.mdd_c00281{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m1_c00281{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m4a_c00281{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m31_c00281{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mbd_c00281{transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);}
.m74_c00281{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m78_c00281{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.mf0_c00281{transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);}
.m10e_c00281{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.mf4_c00281{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m82_c00281{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.mbf_c00281{transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);}
.me8_c00281{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m6d_c00281{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.m71_c00281{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m9d_c00281{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.mbb_c00281{transform:matrix(0.476471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476471,0.000000,0.000000,0.250000,0,0);}
.m105_c00281{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.m7c_c00281{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.med_c00281{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m84_c00281{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m17_c00281{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m96_c00281{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m107_c00281{transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);}
.m59_c00281{transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);}
.m61_c00281{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.me0_c00281{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.me9_c00281{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mdb_c00281{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m70_c00281{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mfe_c00281{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m73_c00281{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.md_c00281{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m43_c00281{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m1e_c00281{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_c00281{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m24_c00281{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.meb_c00281{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m8e_c00281{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.md4_c00281{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m4f_c00281{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.mfc_c00281{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m7_c00281{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m41_c00281{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mdf_c00281{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m30_c00281{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.mef_c00281{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m97_c00281{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.mcc_c00281{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);}
.mf6_c00281{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m9a_c00281{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m53_c00281{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m8a_c00281{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);}
.m4e_c00281{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m1a_c00281{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m63_c00281{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m6e_c00281{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m37_c00281{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mee_c00281{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m2c_c00281{transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);}
.m9_c00281{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mae_c00281{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.mc0_c00281{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m102_c00281{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m55_c00281{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mac_c00281{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m14_c00281{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mb7_c00281{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m108_c00281{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m33_c00281{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m72_c00281{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m2b_c00281{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m54_c00281{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mf3_c00281{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m9b_c00281{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m52_c00281{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m66_c00281{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m1c_c00281{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m58_c00281{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m2f_c00281{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m111_c00281{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m10b_c00281{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mb5_c00281{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m3c_c00281{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.me4_c00281{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m62_c00281{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m9c_c00281{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.mec_c00281{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m15_c00281{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m21_c00281{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mf2_c00281{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mcf_c00281{transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);}
.m4b_c00281{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.mde_c00281{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m4c_c00281{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m57_c00281{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m6a_c00281{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m5a_c00281{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m2e_c00281{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m3_c00281{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m45_c00281{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mb3_c00281{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m16_c00281{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m69_c00281{transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);}
.m18_c00281{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m32_c00281{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m91_c00281{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.me6_c00281{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.mc5_c00281{transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);}
.m4_c00281{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m101_c00281{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.md2_c00281{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.m8c_c00281{transform:matrix(0.573284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573284,0.000000,0.000000,0.250000,0,0);}
.mcd_c00281{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m103_c00281{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.mda_c00281{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m3f_c00281{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m35_c00281{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m5d_c00281{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.mc9_c00281{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m29_c00281{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.me5_c00281{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.m4d_c00281{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m28_c00281{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m9e_c00281{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);}
.m116_c00281{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m79_c00281{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m7e_c00281{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m9f_c00281{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m98_c00281{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.m112_c00281{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m3a_c00281{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m36_c00281{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.me7_c00281{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.mfb_c00281{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m34_c00281{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m8f_c00281{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mff_c00281{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m114_c00281{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m39_c00281{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m19_c00281{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m93_c00281{transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);}
.m8_c00281{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m85_c00281{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.m60_c00281{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.m75_c00281{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m95_c00281{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m6f_c00281{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);}
.m110_c00281{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);}
.m10_c00281{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mce_c00281{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m88_c00281{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.mb9_c00281{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m0_c00281{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m87_c00281{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m83_c00281{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m2a_c00281{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m99_c00281{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m6c_c00281{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);}
.ma7_c00281{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.ma8_c00281{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m7a_c00281{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m81_c00281{transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);}
.m46_c00281{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m20_c00281{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m23_c00281{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mb1_c00281{transform:matrix(0.671324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.671324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.671324,0.000000,0.000000,0.250000,0,0);}
.m7f_c00281{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.mbe_c00281{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.mb6_c00281{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mab_c00281{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.mc7_c00281{transform:matrix(0.683088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683088,0.000000,0.000000,0.250000,0,0);}
.m94_c00281{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m50_c00281{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m7d_c00281{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m42_c00281{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.mc1_c00281{transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);}
.m40_c00281{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m6b_c00281{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_c00281{transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);}
.m3d_c00281{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m47_c00281{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m1b_c00281{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m38_c00281{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m6_c00281{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m67_c00281{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m5b_c00281{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m5c_c00281{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m3b_c00281{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m56_c00281{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.me3_c00281{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.md1_c00281{transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);}
.mc2_c00281{transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);}
.m80_c00281{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.md7_c00281{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.m68_c00281{transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);}
.mb8_c00281{transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);}
.md9_c00281{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,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;}
}
.ws3_c00281{word-spacing:-6.425697px;}
.ws2_c00281{word-spacing:-3.015319px;}
.ws0_c00281{word-spacing:-2.923710px;}
.ws1_c00281{word-spacing:-2.556473px;}
.ws4_c00281{word-spacing:0.000000px;}
.fc0_c00281{color:transparent;}
.fs7_c00281{font-size:3.420000px;}
.fs6_c00281{font-size:13.620000px;}
.fs3_c00281{font-size:18.720000px;}
.fs0_c00281{font-size:20.400000px;}
.fs4_c00281{font-size:25.500000px;}
.fs1_c00281{font-size:28.920000px;}
.fs5_c00281{font-size:32.340000px;}
.fs2_c00281{font-size:35.700000px;}
.fs8_c00281{font-size:39.120000px;}
.y0_c00281{bottom:0.000000px;}
.yf5_c00281{bottom:253.470000px;}
.yf3_c00281{bottom:253.905000px;}
.yf4_c00281{bottom:253.920000px;}
.yf7_c00281{bottom:254.970000px;}
.yf6_c00281{bottom:255.405000px;}
.yf0_c00281{bottom:271.245000px;}
.yf2_c00281{bottom:273.405000px;}
.yf1_c00281{bottom:273.630000px;}
.yeb_c00281{bottom:290.745000px;}
.yee_c00281{bottom:291.405000px;}
.yef_c00281{bottom:292.245000px;}
.yea_c00281{bottom:292.905000px;}
.yed_c00281{bottom:293.970000px;}
.yec_c00281{bottom:294.405000px;}
.ye8_c00281{bottom:311.745000px;}
.ye7_c00281{bottom:312.405000px;}
.ye9_c00281{bottom:313.905000px;}
.ye3_c00281{bottom:328.905000px;}
.ye4_c00281{bottom:331.245000px;}
.ye2_c00281{bottom:331.905000px;}
.ye6_c00281{bottom:332.325000px;}
.ye5_c00281{bottom:333.405000px;}
.ydd_c00281{bottom:350.745000px;}
.ye0_c00281{bottom:351.825000px;}
.yde_c00281{bottom:352.905000px;}
.ydf_c00281{bottom:353.970000px;}
.ye1_c00281{bottom:354.405000px;}
.yda_c00281{bottom:370.245000px;}
.ydb_c00281{bottom:370.680000px;}
.yd9_c00281{bottom:371.745000px;}
.yd7_c00281{bottom:371.970000px;}
.yd6_c00281{bottom:372.405000px;}
.yd8_c00281{bottom:372.630000px;}
.ydc_c00281{bottom:373.905000px;}
.yd1_c00281{bottom:388.680000px;}
.yd4_c00281{bottom:391.245000px;}
.yd2_c00281{bottom:391.470000px;}
.yd5_c00281{bottom:392.970000px;}
.yd3_c00281{bottom:393.405000px;}
.yd0_c00281{bottom:410.745000px;}
.ycc_c00281{bottom:411.405000px;}
.ycd_c00281{bottom:411.630000px;}
.yce_c00281{bottom:411.825000px;}
.ycf_c00281{bottom:412.905000px;}
.yc9_c00281{bottom:429.825000px;}
.yca_c00281{bottom:431.130000px;}
.ycb_c00281{bottom:431.325000px;}
.yc7_c00281{bottom:432.405000px;}
.yc8_c00281{bottom:433.470000px;}
.yc5_c00281{bottom:449.745000px;}
.yc4_c00281{bottom:450.630000px;}
.yc3_c00281{bottom:451.905000px;}
.yc6_c00281{bottom:452.130000px;}
.ybd_c00281{bottom:469.245000px;}
.yc2_c00281{bottom:470.325000px;}
.yc1_c00281{bottom:470.745000px;}
.yc0_c00281{bottom:471.405000px;}
.ybf_c00281{bottom:472.905000px;}
.ybe_c00281{bottom:472.920000px;}
.yb4_c00281{bottom:494.970000px;}
.yba_c00281{bottom:496.470000px;}
.yb9_c00281{bottom:496.905000px;}
.ybc_c00281{bottom:497.325000px;}
.yb5_c00281{bottom:497.970000px;}
.yb7_c00281{bottom:498.405000px;}
.yb8_c00281{bottom:498.630000px;}
.ybb_c00281{bottom:499.470000px;}
.yb6_c00281{bottom:499.695000px;}
.yb3_c00281{bottom:509.970000px;}
.yb2_c00281{bottom:510.825000px;}
.yae_c00281{bottom:511.050000px;}
.yaf_c00281{bottom:511.905000px;}
.yb0_c00281{bottom:512.970000px;}
.yad_c00281{bottom:513.195000px;}
.yb1_c00281{bottom:514.050000px;}
.yab_c00281{bottom:524.970000px;}
.ya8_c00281{bottom:525.825000px;}
.yaa_c00281{bottom:526.050000px;}
.ya9_c00281{bottom:526.905000px;}
.yac_c00281{bottom:527.130000px;}
.ya5_c00281{bottom:527.970000px;}
.ya6_c00281{bottom:528.195000px;}
.ya7_c00281{bottom:529.050000px;}
.y9e_c00281{bottom:539.550000px;}
.ya2_c00281{bottom:540.825000px;}
.ya4_c00281{bottom:542.130000px;}
.ya3_c00281{bottom:542.550000px;}
.y9f_c00281{bottom:542.970000px;}
.ya1_c00281{bottom:543.195000px;}
.ya0_c00281{bottom:544.050000px;}
.y97_c00281{bottom:555.405000px;}
.y9d_c00281{bottom:555.825000px;}
.y99_c00281{bottom:556.905000px;}
.y9b_c00281{bottom:557.130000px;}
.y98_c00281{bottom:557.550000px;}
.y9a_c00281{bottom:557.970000px;}
.y9c_c00281{bottom:559.050000px;}
.y95_c00281{bottom:570.825000px;}
.y90_c00281{bottom:571.470000px;}
.y96_c00281{bottom:571.905000px;}
.y91_c00281{bottom:572.130000px;}
.y8f_c00281{bottom:572.550000px;}
.y92_c00281{bottom:572.970000px;}
.y93_c00281{bottom:573.195000px;}
.y94_c00281{bottom:574.050000px;}
.y8e_c00281{bottom:584.325000px;}
.y8d_c00281{bottom:585.405000px;}
.y87_c00281{bottom:598.470000px;}
.y88_c00281{bottom:599.325000px;}
.y8a_c00281{bottom:600.405000px;}
.y8b_c00281{bottom:601.470000px;}
.y8c_c00281{bottom:601.695000px;}
.y89_c00281{bottom:602.550000px;}
.y86_c00281{bottom:614.550000px;}
.y83_c00281{bottom:615.405000px;}
.y81_c00281{bottom:616.050000px;}
.y85_c00281{bottom:616.470000px;}
.y84_c00281{bottom:616.695000px;}
.y82_c00281{bottom:617.550000px;}
.y80_c00281{bottom:630.405000px;}
.y7f_c00281{bottom:631.050000px;}
.y79_c00281{bottom:643.470000px;}
.y7a_c00281{bottom:644.325000px;}
.y7b_c00281{bottom:644.550000px;}
.y7d_c00281{bottom:645.405000px;}
.y7e_c00281{bottom:646.695000px;}
.y7c_c00281{bottom:647.550000px;}
.y78_c00281{bottom:660.405000px;}
.y76_c00281{bottom:661.050000px;}
.y77_c00281{bottom:662.550000px;}
.y74_c00281{bottom:674.325000px;}
.y75_c00281{bottom:674.550000px;}
.y6f_c00281{bottom:674.970000px;}
.y72_c00281{bottom:675.405000px;}
.y70_c00281{bottom:675.630000px;}
.y71_c00281{bottom:676.470000px;}
.y73_c00281{bottom:677.550000px;}
.y69_c00281{bottom:688.050000px;}
.y6e_c00281{bottom:690.405000px;}
.y6a_c00281{bottom:691.050000px;}
.y6b_c00281{bottom:691.470000px;}
.y6c_c00281{bottom:691.695000px;}
.y6d_c00281{bottom:692.550000px;}
.y67_c00281{bottom:704.325000px;}
.y64_c00281{bottom:705.405000px;}
.y63_c00281{bottom:706.050000px;}
.y68_c00281{bottom:706.470000px;}
.y65_c00281{bottom:706.695000px;}
.y66_c00281{bottom:707.550000px;}
.y5d_c00281{bottom:717.825000px;}
.y5b_c00281{bottom:718.050000px;}
.y5c_c00281{bottom:718.905000px;}
.y5e_c00281{bottom:719.325000px;}
.y62_c00281{bottom:719.970000px;}
.y5f_c00281{bottom:720.630000px;}
.y61_c00281{bottom:721.050000px;}
.y60_c00281{bottom:721.470000px;}
.y58_c00281{bottom:733.905000px;}
.y59_c00281{bottom:734.130000px;}
.y57_c00281{bottom:734.970000px;}
.y5a_c00281{bottom:736.050000px;}
.y52_c00281{bottom:747.825000px;}
.y53_c00281{bottom:748.905000px;}
.y50_c00281{bottom:749.130000px;}
.y51_c00281{bottom:749.550000px;}
.y55_c00281{bottom:749.970000px;}
.y56_c00281{bottom:750.195000px;}
.y54_c00281{bottom:751.050000px;}
.y4e_c00281{bottom:762.405000px;}
.y4f_c00281{bottom:763.905000px;}
.y48_c00281{bottom:777.630000px;}
.y4d_c00281{bottom:777.825000px;}
.y4b_c00281{bottom:778.905000px;}
.y4c_c00281{bottom:779.130000px;}
.y49_c00281{bottom:779.970000px;}
.y4a_c00281{bottom:781.050000px;}
.y45_c00281{bottom:805.245000px;}
.y47_c00281{bottom:806.130000px;}
.y46_c00281{bottom:807.405000px;}
.y44_c00281{bottom:824.745000px;}
.y40_c00281{bottom:825.405000px;}
.y42_c00281{bottom:825.825000px;}
.y43_c00281{bottom:826.470000px;}
.y41_c00281{bottom:826.905000px;}
.y3b_c00281{bottom:842.745000px;}
.y3f_c00281{bottom:844.245000px;}
.y3d_c00281{bottom:845.130000px;}
.y3c_c00281{bottom:846.405000px;}
.y3e_c00281{bottom:847.905000px;}
.y39_c00281{bottom:864.630000px;}
.y38_c00281{bottom:864.825000px;}
.y3a_c00281{bottom:865.470000px;}
.y35_c00281{bottom:865.905000px;}
.y36_c00281{bottom:866.130000px;}
.y37_c00281{bottom:866.970000px;}
.y34_c00281{bottom:882.405000px;}
.y30_c00281{bottom:883.245000px;}
.y32_c00281{bottom:884.745000px;}
.y2f_c00281{bottom:885.405000px;}
.y31_c00281{bottom:885.630000px;}
.y33_c00281{bottom:886.905000px;}
.y2e_c00281{bottom:902.970000px;}
.y2d_c00281{bottom:904.245000px;}
.y2b_c00281{bottom:905.130000px;}
.y2c_c00281{bottom:906.405000px;}
.y2a_c00281{bottom:923.745000px;}
.y25_c00281{bottom:924.405000px;}
.y29_c00281{bottom:924.630000px;}
.y27_c00281{bottom:924.825000px;}
.y28_c00281{bottom:925.470000px;}
.y26_c00281{bottom:925.905000px;}
.y24_c00281{bottom:943.245000px;}
.y21_c00281{bottom:943.905000px;}
.y22_c00281{bottom:944.130000px;}
.y23_c00281{bottom:945.405000px;}
.y1a_c00281{bottom:962.325000px;}
.y1b_c00281{bottom:962.745000px;}
.y20_c00281{bottom:963.630000px;}
.y1f_c00281{bottom:964.470000px;}
.y1c_c00281{bottom:964.905000px;}
.y1e_c00281{bottom:965.130000px;}
.y1d_c00281{bottom:965.970000px;}
.y18_c00281{bottom:981.405000px;}
.y15_c00281{bottom:982.245000px;}
.y14_c00281{bottom:982.905000px;}
.y19_c00281{bottom:983.325000px;}
.y16_c00281{bottom:984.405000px;}
.y17_c00281{bottom:985.470000px;}
.yf_c00281{bottom:1001.745000px;}
.y11_c00281{bottom:1002.825000px;}
.y10_c00281{bottom:1003.905000px;}
.y12_c00281{bottom:1004.130000px;}
.y13_c00281{bottom:1004.970000px;}
.yc_c00281{bottom:1023.405000px;}
.ye_c00281{bottom:1023.630000px;}
.yd_c00281{bottom:1024.470000px;}
.y9_c00281{bottom:1040.745000px;}
.yb_c00281{bottom:1041.825000px;}
.ya_c00281{bottom:1043.970000px;}
.y7_c00281{bottom:1059.405000px;}
.y3_c00281{bottom:1060.245000px;}
.y5_c00281{bottom:1061.745000px;}
.y8_c00281{bottom:1062.405000px;}
.y6_c00281{bottom:1062.630000px;}
.y4_c00281{bottom:1063.905000px;}
.y2_c00281{bottom:1099.905000px;}
.y1_c00281{bottom:1100.550000px;}
.h8_c00281{height:4.206533px;}
.h7_c00281{height:16.752334px;}
.h4_c00281{height:23.025234px;}
.h1_c00281{height:25.091602px;}
.h5_c00281{height:31.364502px;}
.h2_c00281{height:35.571035px;}
.h6_c00281{height:39.777568px;}
.h3_c00281{height:43.910303px;}
.h9_c00281{height:48.116836px;}
.h0_c00281{height:1335.000000px;}
.w0_c00281{width:880.500000px;}
.x0_c00281{left:0.000000px;}
.xf_c00281{left:149.580000px;}
.x2_c00281{left:151.080000px;}
.x90_c00281{left:153.420000px;}
.x7b_c00281{left:165.000000px;}
.x15_c00281{left:166.500000px;}
.xe4_c00281{left:167.580000px;}
.x10c_c00281{left:168.645000px;}
.xca_c00281{left:172.500000px;}
.x2e_c00281{left:177.000000px;}
.xbe_c00281{left:178.500000px;}
.x3_c00281{left:180.000000px;}
.x88_c00281{left:183.000000px;}
.x3b_c00281{left:184.920000px;}
.xb6_c00281{left:186.420000px;}
.x52_c00281{left:190.920000px;}
.x49_c00281{left:193.080000px;}
.x91_c00281{left:195.000000px;}
.xcb_c00281{left:196.080000px;}
.xf2_c00281{left:198.000000px;}
.x16_c00281{left:199.500000px;}
.xf7_c00281{left:202.500000px;}
.x10b_c00281{left:204.000000px;}
.xd4_c00281{left:205.500000px;}
.x97_c00281{left:206.580000px;}
.x4a_c00281{left:211.500000px;}
.xb7_c00281{left:214.500000px;}
.xd5_c00281{left:216.000000px;}
.x53_c00281{left:217.500000px;}
.x23_c00281{left:219.000000px;}
.x92_c00281{left:220.500000px;}
.x10_c00281{left:221.580000px;}
.xf8_c00281{left:223.080000px;}
.x6c_c00281{left:225.000000px;}
.xf3_c00281{left:226.500000px;}
.x2f_c00281{left:229.500000px;}
.x3c_c00281{left:231.420000px;}
.xb8_c00281{left:235.920000px;}
.x73_c00281{left:237.000000px;}
.xe1_c00281{left:238.080000px;}
.x7c_c00281{left:240.000000px;}
.x6d_c00281{left:243.000000px;}
.x5a_c00281{left:244.920000px;}
.x30_c00281{left:246.000000px;}
.xfa_c00281{left:247.500000px;}
.xb9_c00281{left:249.420000px;}
.xd0_c00281{left:250.500000px;}
.xa5_c00281{left:251.580000px;}
.xe5_c00281{left:255.000000px;}
.x4b_c00281{left:258.420000px;}
.x89_c00281{left:259.920000px;}
.x102_c00281{left:261.000000px;}
.x4_c00281{left:262.080000px;}
.x9c_c00281{left:263.580000px;}
.x65_c00281{left:270.000000px;}
.x17_c00281{left:271.080000px;}
.x3d_c00281{left:273.420000px;}
.x98_c00281{left:274.500000px;}
.x7d_c00281{left:276.420000px;}
.x8a_c00281{left:277.500000px;}
.x11_c00281{left:278.580000px;}
.x5_c00281{left:280.500000px;}
.x5b_c00281{left:283.500000px;}
.x93_c00281{left:284.580000px;}
.x6e_c00281{left:286.080000px;}
.x9d_c00281{left:288.420000px;}
.x66_c00281{left:289.920000px;}
.x10d_c00281{left:291.000000px;}
.xae_c00281{left:292.920000px;}
.x12_c00281{left:294.420000px;}
.x24_c00281{left:295.500000px;}
.x31_c00281{left:296.580000px;}
.xbf_c00281{left:298.500000px;}
.xf4_c00281{left:303.420000px;}
.x5c_c00281{left:304.500000px;}
.xe6_c00281{left:306.420000px;}
.xa6_c00281{left:309.000000px;}
.xfe_c00281{left:310.500000px;}
.x18_c00281{left:313.500000px;}
.x25_c00281{left:315.000000px;}
.xd6_c00281{left:316.500000px;}
.xcc_c00281{left:319.080000px;}
.x10a_c00281{left:320.580000px;}
.x99_c00281{left:324.000000px;}
.x7e_c00281{left:326.580000px;}
.xa3_c00281{left:328.080000px;}
.x19_c00281{left:330.420000px;}
.x3e_c00281{left:331.500000px;}
.x5d_c00281{left:333.000000px;}
.x32_c00281{left:334.500000px;}
.xaf_c00281{left:336.420000px;}
.xba_c00281{left:337.920000px;}
.x74_c00281{left:339.000000px;}
.xe2_c00281{left:340.500000px;}
.xec_c00281{left:343.500000px;}
.x7f_c00281{left:345.420000px;}
.xe7_c00281{left:348.420000px;}
.x26_c00281{left:349.500000px;}
.xc1_c00281{left:351.000000px;}
.x6_c00281{left:352.500000px;}
.xc0_c00281{left:354.000000px;}
.x3f_c00281{left:357.420000px;}
.xa7_c00281{left:358.500000px;}
.x13_c00281{left:359.775000px;}
.x103_c00281{left:361.920000px;}
.x8b_c00281{left:363.420000px;}
.xc6_c00281{left:367.500000px;}
.x27_c00281{left:369.000000px;}
.x33_c00281{left:370.920000px;}
.xd7_c00281{left:373.500000px;}
.x4c_c00281{left:375.000000px;}
.x1a_c00281{left:376.500000px;}
.xb0_c00281{left:378.000000px;}
.x67_c00281{left:379.920000px;}
.xea_c00281{left:382.500000px;}
.x5e_c00281{left:384.000000px;}
.x75_c00281{left:385.500000px;}
.x84_c00281{left:387.000000px;}
.x28_c00281{left:390.420000px;}
.x7_c00281{left:391.500000px;}
.xa8_c00281{left:392.580000px;}
.x1b_c00281{left:396.000000px;}
.x6f_c00281{left:397.920000px;}
.x14_c00281{left:399.000000px;}
.xc2_c00281{left:400.080000px;}
.x80_c00281{left:402.420000px;}
.x1_c00281{left:405.000000px;}
.x34_c00281{left:406.500000px;}
.xa9_c00281{left:408.000000px;}
.x40_c00281{left:411.000000px;}
.x54_c00281{left:412.500000px;}
.x4d_c00281{left:413.580000px;}
.x9e_c00281{left:415.500000px;}
.x29_c00281{left:417.000000px;}
.xfb_c00281{left:418.500000px;}
.xdd_c00281{left:420.000000px;}
.x5f_c00281{left:421.500000px;}
.xff_c00281{left:423.000000px;}
.x1c_c00281{left:424.500000px;}
.x85_c00281{left:425.580000px;}
.xd8_c00281{left:427.500000px;}
.x4e_c00281{left:430.920000px;}
.xc7_c00281{left:432.000000px;}
.xf5_c00281{left:433.920000px;}
.x8_c00281{left:435.000000px;}
.x35_c00281{left:436.080000px;}
.x81_c00281{left:438.420000px;}
.x55_c00281{left:441.000000px;}
.x8c_c00281{left:442.080000px;}
.x9a_c00281{left:444.000000px;}
.xb1_c00281{left:445.500000px;}
.x68_c00281{left:447.420000px;}
.xed_c00281{left:450.000000px;}
.xa4_c00281{left:451.500000px;}
.xcd_c00281{left:453.420000px;}
.x9_c00281{left:454.920000px;}
.x41_c00281{left:456.420000px;}
.x76_c00281{left:458.580000px;}
.x86_c00281{left:461.580000px;}
.x60_c00281{left:463.500000px;}
.x94_c00281{left:465.000000px;}
.xaa_c00281{left:468.645000px;}
.x100_c00281{left:469.920000px;}
.xc8_c00281{left:471.000000px;}
.xee_c00281{left:472.500000px;}
.xbb_c00281{left:474.645000px;}
.x2a_c00281{left:478.500000px;}
.xe8_c00281{left:481.500000px;}
.xa_c00281{left:482.580000px;}
.x9f_c00281{left:485.145000px;}
.x70_c00281{left:487.500000px;}
.xc3_c00281{left:489.645000px;}
.x42_c00281{left:492.420000px;}
.x10e_c00281{left:495.000000px;}
.xb2_c00281{left:496.920000px;}
.x56_c00281{left:499.500000px;}
.x8d_c00281{left:503.145000px;}
.x9b_c00281{left:505.500000px;}
.xd1_c00281{left:507.000000px;}
.xd9_c00281{left:508.920000px;}
.x69_c00281{left:510.000000px;}
.xab_c00281{left:511.500000px;}
.x36_c00281{left:513.000000px;}
.xef_c00281{left:516.420000px;}
.x107_c00281{left:517.500000px;}
.x1d_c00281{left:518.580000px;}
.x43_c00281{left:520.080000px;}
.x104_c00281{left:525.000000px;}
.xce_c00281{left:526.920000px;}
.xc9_c00281{left:528.000000px;}
.x4f_c00281{left:529.500000px;}
.xe3_c00281{left:530.580000px;}
.xde_c00281{left:532.080000px;}
.x87_c00281{left:534.000000px;}
.x61_c00281{left:535.080000px;}
.x95_c00281{left:537.000000px;}
.x1e_c00281{left:538.920000px;}
.xf0_c00281{left:543.420000px;}
.xdf_c00281{left:546.000000px;}
.x8e_c00281{left:547.500000px;}
.xda_c00281{left:550.500000px;}
.x62_c00281{left:552.420000px;}
.x2b_c00281{left:555.000000px;}
.x37_c00281{left:556.500000px;}
.xa0_c00281{left:558.420000px;}
.xb3_c00281{left:563.580000px;}
.x77_c00281{left:565.500000px;}
.x1f_c00281{left:567.000000px;}
.x57_c00281{left:568.080000px;}
.x71_c00281{left:570.000000px;}
.xb_c00281{left:572.580000px;}
.x2c_c00281{left:575.580000px;}
.xac_c00281{left:577.080000px;}
.x63_c00281{left:579.000000px;}
.x44_c00281{left:580.500000px;}
.x108_c00281{left:582.000000px;}
.x78_c00281{left:583.920000px;}
.x58_c00281{left:586.080000px;}
.xfc_c00281{left:588.000000px;}
.xad_c00281{left:591.645000px;}
.x82_c00281{left:598.920000px;}
.xb4_c00281{left:600.420000px;}
.x6a_c00281{left:603.000000px;}
.x45_c00281{left:607.500000px;}
.x50_c00281{left:609.000000px;}
.x79_c00281{left:610.500000px;}
.xa1_c00281{left:612.420000px;}
.x64_c00281{left:619.500000px;}
.xc_c00281{left:621.000000px;}
.xcf_c00281{left:625.500000px;}
.x105_c00281{left:627.420000px;}
.xd2_c00281{left:630.000000px;}
.xbc_c00281{left:631.500000px;}
.x20_c00281{left:632.580000px;}
.x38_c00281{left:638.580000px;}
.xf9_c00281{left:642.420000px;}
.x10f_c00281{left:643.500000px;}
.x46_c00281{left:645.000000px;}
.xe0_c00281{left:646.080000px;}
.x96_c00281{left:648.000000px;}
.xdb_c00281{left:649.080000px;}
.x21_c00281{left:652.920000px;}
.x109_c00281{left:654.420000px;}
.x59_c00281{left:658.920000px;}
.x51_c00281{left:660.000000px;}
.xeb_c00281{left:661.500000px;}
.x7a_c00281{left:662.580000px;}
.x83_c00281{left:664.080000px;}
.xf6_c00281{left:666.000000px;}
.x39_c00281{left:669.420000px;}
.x8f_c00281{left:672.000000px;}
.x6b_c00281{left:674.580000px;}
.xd_c00281{left:676.080000px;}
.x47_c00281{left:678.000000px;}
.x22_c00281{left:681.000000px;}
.x72_c00281{left:684.000000px;}
.xa2_c00281{left:685.500000px;}
.xc4_c00281{left:690.000000px;}
.xb5_c00281{left:691.920000px;}
.xe9_c00281{left:693.420000px;}
.xdc_c00281{left:694.500000px;}
.xd3_c00281{left:697.500000px;}
.x2d_c00281{left:700.500000px;}
.xc5_c00281{left:702.000000px;}
.xbd_c00281{left:703.500000px;}
.x3a_c00281{left:706.920000px;}
.x106_c00281{left:708.420000px;}
.xf1_c00281{left:709.920000px;}
.xe_c00281{left:713.580000px;}
.x48_c00281{left:715.500000px;}
.xfd_c00281{left:717.000000px;}
.x101_c00281{left:718.080000px;}
@media print{
.v0_c00281{vertical-align:0.000000pt;}
.ls0_c00281{letter-spacing:0.000000pt;}
.ws3_c00281{word-spacing:-5.711730pt;}
.ws2_c00281{word-spacing:-2.680284pt;}
.ws0_c00281{word-spacing:-2.598853pt;}
.ws1_c00281{word-spacing:-2.272420pt;}
.ws4_c00281{word-spacing:0.000000pt;}
.fs7_c00281{font-size:3.040000pt;}
.fs6_c00281{font-size:12.106667pt;}
.fs3_c00281{font-size:16.640000pt;}
.fs0_c00281{font-size:18.133333pt;}
.fs4_c00281{font-size:22.666667pt;}
.fs1_c00281{font-size:25.706667pt;}
.fs5_c00281{font-size:28.746667pt;}
.fs2_c00281{font-size:31.733333pt;}
.fs8_c00281{font-size:34.773333pt;}
.y0_c00281{bottom:0.000000pt;}
.yf5_c00281{bottom:225.306667pt;}
.yf3_c00281{bottom:225.693333pt;}
.yf4_c00281{bottom:225.706667pt;}
.yf7_c00281{bottom:226.640000pt;}
.yf6_c00281{bottom:227.026667pt;}
.yf0_c00281{bottom:241.106667pt;}
.yf2_c00281{bottom:243.026667pt;}
.yf1_c00281{bottom:243.226667pt;}
.yeb_c00281{bottom:258.440000pt;}
.yee_c00281{bottom:259.026667pt;}
.yef_c00281{bottom:259.773333pt;}
.yea_c00281{bottom:260.360000pt;}
.yed_c00281{bottom:261.306667pt;}
.yec_c00281{bottom:261.693333pt;}
.ye8_c00281{bottom:277.106667pt;}
.ye7_c00281{bottom:277.693333pt;}
.ye9_c00281{bottom:279.026667pt;}
.ye3_c00281{bottom:292.360000pt;}
.ye4_c00281{bottom:294.440000pt;}
.ye2_c00281{bottom:295.026667pt;}
.ye6_c00281{bottom:295.400000pt;}
.ye5_c00281{bottom:296.360000pt;}
.ydd_c00281{bottom:311.773333pt;}
.ye0_c00281{bottom:312.733333pt;}
.yde_c00281{bottom:313.693333pt;}
.ydf_c00281{bottom:314.640000pt;}
.ye1_c00281{bottom:315.026667pt;}
.yda_c00281{bottom:329.106667pt;}
.ydb_c00281{bottom:329.493333pt;}
.yd9_c00281{bottom:330.440000pt;}
.yd7_c00281{bottom:330.640000pt;}
.yd6_c00281{bottom:331.026667pt;}
.yd8_c00281{bottom:331.226667pt;}
.ydc_c00281{bottom:332.360000pt;}
.yd1_c00281{bottom:345.493333pt;}
.yd4_c00281{bottom:347.773333pt;}
.yd2_c00281{bottom:347.973333pt;}
.yd5_c00281{bottom:349.306667pt;}
.yd3_c00281{bottom:349.693333pt;}
.yd0_c00281{bottom:365.106667pt;}
.ycc_c00281{bottom:365.693333pt;}
.ycd_c00281{bottom:365.893333pt;}
.yce_c00281{bottom:366.066667pt;}
.ycf_c00281{bottom:367.026667pt;}
.yc9_c00281{bottom:382.066667pt;}
.yca_c00281{bottom:383.226667pt;}
.ycb_c00281{bottom:383.400000pt;}
.yc7_c00281{bottom:384.360000pt;}
.yc8_c00281{bottom:385.306667pt;}
.yc5_c00281{bottom:399.773333pt;}
.yc4_c00281{bottom:400.560000pt;}
.yc3_c00281{bottom:401.693333pt;}
.yc6_c00281{bottom:401.893333pt;}
.ybd_c00281{bottom:417.106667pt;}
.yc2_c00281{bottom:418.066667pt;}
.yc1_c00281{bottom:418.440000pt;}
.yc0_c00281{bottom:419.026667pt;}
.ybf_c00281{bottom:420.360000pt;}
.ybe_c00281{bottom:420.373333pt;}
.yb4_c00281{bottom:439.973333pt;}
.yba_c00281{bottom:441.306667pt;}
.yb9_c00281{bottom:441.693333pt;}
.ybc_c00281{bottom:442.066667pt;}
.yb5_c00281{bottom:442.640000pt;}
.yb7_c00281{bottom:443.026667pt;}
.yb8_c00281{bottom:443.226667pt;}
.ybb_c00281{bottom:443.973333pt;}
.yb6_c00281{bottom:444.173333pt;}
.yb3_c00281{bottom:453.306667pt;}
.yb2_c00281{bottom:454.066667pt;}
.yae_c00281{bottom:454.266667pt;}
.yaf_c00281{bottom:455.026667pt;}
.yb0_c00281{bottom:455.973333pt;}
.yad_c00281{bottom:456.173333pt;}
.yb1_c00281{bottom:456.933333pt;}
.yab_c00281{bottom:466.640000pt;}
.ya8_c00281{bottom:467.400000pt;}
.yaa_c00281{bottom:467.600000pt;}
.ya9_c00281{bottom:468.360000pt;}
.yac_c00281{bottom:468.560000pt;}
.ya5_c00281{bottom:469.306667pt;}
.ya6_c00281{bottom:469.506667pt;}
.ya7_c00281{bottom:470.266667pt;}
.y9e_c00281{bottom:479.600000pt;}
.ya2_c00281{bottom:480.733333pt;}
.ya4_c00281{bottom:481.893333pt;}
.ya3_c00281{bottom:482.266667pt;}
.y9f_c00281{bottom:482.640000pt;}
.ya1_c00281{bottom:482.840000pt;}
.ya0_c00281{bottom:483.600000pt;}
.y97_c00281{bottom:493.693333pt;}
.y9d_c00281{bottom:494.066667pt;}
.y99_c00281{bottom:495.026667pt;}
.y9b_c00281{bottom:495.226667pt;}
.y98_c00281{bottom:495.600000pt;}
.y9a_c00281{bottom:495.973333pt;}
.y9c_c00281{bottom:496.933333pt;}
.y95_c00281{bottom:507.400000pt;}
.y90_c00281{bottom:507.973333pt;}
.y96_c00281{bottom:508.360000pt;}
.y91_c00281{bottom:508.560000pt;}
.y8f_c00281{bottom:508.933333pt;}
.y92_c00281{bottom:509.306667pt;}
.y93_c00281{bottom:509.506667pt;}
.y94_c00281{bottom:510.266667pt;}
.y8e_c00281{bottom:519.400000pt;}
.y8d_c00281{bottom:520.360000pt;}
.y87_c00281{bottom:531.973333pt;}
.y88_c00281{bottom:532.733333pt;}
.y8a_c00281{bottom:533.693333pt;}
.y8b_c00281{bottom:534.640000pt;}
.y8c_c00281{bottom:534.840000pt;}
.y89_c00281{bottom:535.600000pt;}
.y86_c00281{bottom:546.266667pt;}
.y83_c00281{bottom:547.026667pt;}
.y81_c00281{bottom:547.600000pt;}
.y85_c00281{bottom:547.973333pt;}
.y84_c00281{bottom:548.173333pt;}
.y82_c00281{bottom:548.933333pt;}
.y80_c00281{bottom:560.360000pt;}
.y7f_c00281{bottom:560.933333pt;}
.y79_c00281{bottom:571.973333pt;}
.y7a_c00281{bottom:572.733333pt;}
.y7b_c00281{bottom:572.933333pt;}
.y7d_c00281{bottom:573.693333pt;}
.y7e_c00281{bottom:574.840000pt;}
.y7c_c00281{bottom:575.600000pt;}
.y78_c00281{bottom:587.026667pt;}
.y76_c00281{bottom:587.600000pt;}
.y77_c00281{bottom:588.933333pt;}
.y74_c00281{bottom:599.400000pt;}
.y75_c00281{bottom:599.600000pt;}
.y6f_c00281{bottom:599.973333pt;}
.y72_c00281{bottom:600.360000pt;}
.y70_c00281{bottom:600.560000pt;}
.y71_c00281{bottom:601.306667pt;}
.y73_c00281{bottom:602.266667pt;}
.y69_c00281{bottom:611.600000pt;}
.y6e_c00281{bottom:613.693333pt;}
.y6a_c00281{bottom:614.266667pt;}
.y6b_c00281{bottom:614.640000pt;}
.y6c_c00281{bottom:614.840000pt;}
.y6d_c00281{bottom:615.600000pt;}
.y67_c00281{bottom:626.066667pt;}
.y64_c00281{bottom:627.026667pt;}
.y63_c00281{bottom:627.600000pt;}
.y68_c00281{bottom:627.973333pt;}
.y65_c00281{bottom:628.173333pt;}
.y66_c00281{bottom:628.933333pt;}
.y5d_c00281{bottom:638.066667pt;}
.y5b_c00281{bottom:638.266667pt;}
.y5c_c00281{bottom:639.026667pt;}
.y5e_c00281{bottom:639.400000pt;}
.y62_c00281{bottom:639.973333pt;}
.y5f_c00281{bottom:640.560000pt;}
.y61_c00281{bottom:640.933333pt;}
.y60_c00281{bottom:641.306667pt;}
.y58_c00281{bottom:652.360000pt;}
.y59_c00281{bottom:652.560000pt;}
.y57_c00281{bottom:653.306667pt;}
.y5a_c00281{bottom:654.266667pt;}
.y52_c00281{bottom:664.733333pt;}
.y53_c00281{bottom:665.693333pt;}
.y50_c00281{bottom:665.893333pt;}
.y51_c00281{bottom:666.266667pt;}
.y55_c00281{bottom:666.640000pt;}
.y56_c00281{bottom:666.840000pt;}
.y54_c00281{bottom:667.600000pt;}
.y4e_c00281{bottom:677.693333pt;}
.y4f_c00281{bottom:679.026667pt;}
.y48_c00281{bottom:691.226667pt;}
.y4d_c00281{bottom:691.400000pt;}
.y4b_c00281{bottom:692.360000pt;}
.y4c_c00281{bottom:692.560000pt;}
.y49_c00281{bottom:693.306667pt;}
.y4a_c00281{bottom:694.266667pt;}
.y45_c00281{bottom:715.773333pt;}
.y47_c00281{bottom:716.560000pt;}
.y46_c00281{bottom:717.693333pt;}
.y44_c00281{bottom:733.106667pt;}
.y40_c00281{bottom:733.693333pt;}
.y42_c00281{bottom:734.066667pt;}
.y43_c00281{bottom:734.640000pt;}
.y41_c00281{bottom:735.026667pt;}
.y3b_c00281{bottom:749.106667pt;}
.y3f_c00281{bottom:750.440000pt;}
.y3d_c00281{bottom:751.226667pt;}
.y3c_c00281{bottom:752.360000pt;}
.y3e_c00281{bottom:753.693333pt;}
.y39_c00281{bottom:768.560000pt;}
.y38_c00281{bottom:768.733333pt;}
.y3a_c00281{bottom:769.306667pt;}
.y35_c00281{bottom:769.693333pt;}
.y36_c00281{bottom:769.893333pt;}
.y37_c00281{bottom:770.640000pt;}
.y34_c00281{bottom:784.360000pt;}
.y30_c00281{bottom:785.106667pt;}
.y32_c00281{bottom:786.440000pt;}
.y2f_c00281{bottom:787.026667pt;}
.y31_c00281{bottom:787.226667pt;}
.y33_c00281{bottom:788.360000pt;}
.y2e_c00281{bottom:802.640000pt;}
.y2d_c00281{bottom:803.773333pt;}
.y2b_c00281{bottom:804.560000pt;}
.y2c_c00281{bottom:805.693333pt;}
.y2a_c00281{bottom:821.106667pt;}
.y25_c00281{bottom:821.693333pt;}
.y29_c00281{bottom:821.893333pt;}
.y27_c00281{bottom:822.066667pt;}
.y28_c00281{bottom:822.640000pt;}
.y26_c00281{bottom:823.026667pt;}
.y24_c00281{bottom:838.440000pt;}
.y21_c00281{bottom:839.026667pt;}
.y22_c00281{bottom:839.226667pt;}
.y23_c00281{bottom:840.360000pt;}
.y1a_c00281{bottom:855.400000pt;}
.y1b_c00281{bottom:855.773333pt;}
.y20_c00281{bottom:856.560000pt;}
.y1f_c00281{bottom:857.306667pt;}
.y1c_c00281{bottom:857.693333pt;}
.y1e_c00281{bottom:857.893333pt;}
.y1d_c00281{bottom:858.640000pt;}
.y18_c00281{bottom:872.360000pt;}
.y15_c00281{bottom:873.106667pt;}
.y14_c00281{bottom:873.693333pt;}
.y19_c00281{bottom:874.066667pt;}
.y16_c00281{bottom:875.026667pt;}
.y17_c00281{bottom:875.973333pt;}
.yf_c00281{bottom:890.440000pt;}
.y11_c00281{bottom:891.400000pt;}
.y10_c00281{bottom:892.360000pt;}
.y12_c00281{bottom:892.560000pt;}
.y13_c00281{bottom:893.306667pt;}
.yc_c00281{bottom:909.693333pt;}
.ye_c00281{bottom:909.893333pt;}
.yd_c00281{bottom:910.640000pt;}
.y9_c00281{bottom:925.106667pt;}
.yb_c00281{bottom:926.066667pt;}
.ya_c00281{bottom:927.973333pt;}
.y7_c00281{bottom:941.693333pt;}
.y3_c00281{bottom:942.440000pt;}
.y5_c00281{bottom:943.773333pt;}
.y8_c00281{bottom:944.360000pt;}
.y6_c00281{bottom:944.560000pt;}
.y4_c00281{bottom:945.693333pt;}
.y2_c00281{bottom:977.693333pt;}
.y1_c00281{bottom:978.266667pt;}
.h8_c00281{height:3.739141pt;}
.h7_c00281{height:14.890964pt;}
.h4_c00281{height:20.466875pt;}
.h1_c00281{height:22.303646pt;}
.h5_c00281{height:27.879557pt;}
.h2_c00281{height:31.618698pt;}
.h6_c00281{height:35.357839pt;}
.h3_c00281{height:39.031380pt;}
.h9_c00281{height:42.770521pt;}
.h0_c00281{height:1186.666667pt;}
.w0_c00281{width:782.666667pt;}
.x0_c00281{left:0.000000pt;}
.xf_c00281{left:132.960000pt;}
.x2_c00281{left:134.293333pt;}
.x90_c00281{left:136.373333pt;}
.x7b_c00281{left:146.666667pt;}
.x15_c00281{left:148.000000pt;}
.xe4_c00281{left:148.960000pt;}
.x10c_c00281{left:149.906667pt;}
.xca_c00281{left:153.333333pt;}
.x2e_c00281{left:157.333333pt;}
.xbe_c00281{left:158.666667pt;}
.x3_c00281{left:160.000000pt;}
.x88_c00281{left:162.666667pt;}
.x3b_c00281{left:164.373333pt;}
.xb6_c00281{left:165.706667pt;}
.x52_c00281{left:169.706667pt;}
.x49_c00281{left:171.626667pt;}
.x91_c00281{left:173.333333pt;}
.xcb_c00281{left:174.293333pt;}
.xf2_c00281{left:176.000000pt;}
.x16_c00281{left:177.333333pt;}
.xf7_c00281{left:180.000000pt;}
.x10b_c00281{left:181.333333pt;}
.xd4_c00281{left:182.666667pt;}
.x97_c00281{left:183.626667pt;}
.x4a_c00281{left:188.000000pt;}
.xb7_c00281{left:190.666667pt;}
.xd5_c00281{left:192.000000pt;}
.x53_c00281{left:193.333333pt;}
.x23_c00281{left:194.666667pt;}
.x92_c00281{left:196.000000pt;}
.x10_c00281{left:196.960000pt;}
.xf8_c00281{left:198.293333pt;}
.x6c_c00281{left:200.000000pt;}
.xf3_c00281{left:201.333333pt;}
.x2f_c00281{left:204.000000pt;}
.x3c_c00281{left:205.706667pt;}
.xb8_c00281{left:209.706667pt;}
.x73_c00281{left:210.666667pt;}
.xe1_c00281{left:211.626667pt;}
.x7c_c00281{left:213.333333pt;}
.x6d_c00281{left:216.000000pt;}
.x5a_c00281{left:217.706667pt;}
.x30_c00281{left:218.666667pt;}
.xfa_c00281{left:220.000000pt;}
.xb9_c00281{left:221.706667pt;}
.xd0_c00281{left:222.666667pt;}
.xa5_c00281{left:223.626667pt;}
.xe5_c00281{left:226.666667pt;}
.x4b_c00281{left:229.706667pt;}
.x89_c00281{left:231.040000pt;}
.x102_c00281{left:232.000000pt;}
.x4_c00281{left:232.960000pt;}
.x9c_c00281{left:234.293333pt;}
.x65_c00281{left:240.000000pt;}
.x17_c00281{left:240.960000pt;}
.x3d_c00281{left:243.040000pt;}
.x98_c00281{left:244.000000pt;}
.x7d_c00281{left:245.706667pt;}
.x8a_c00281{left:246.666667pt;}
.x11_c00281{left:247.626667pt;}
.x5_c00281{left:249.333333pt;}
.x5b_c00281{left:252.000000pt;}
.x93_c00281{left:252.960000pt;}
.x6e_c00281{left:254.293333pt;}
.x9d_c00281{left:256.373333pt;}
.x66_c00281{left:257.706667pt;}
.x10d_c00281{left:258.666667pt;}
.xae_c00281{left:260.373333pt;}
.x12_c00281{left:261.706667pt;}
.x24_c00281{left:262.666667pt;}
.x31_c00281{left:263.626667pt;}
.xbf_c00281{left:265.333333pt;}
.xf4_c00281{left:269.706667pt;}
.x5c_c00281{left:270.666667pt;}
.xe6_c00281{left:272.373333pt;}
.xa6_c00281{left:274.666667pt;}
.xfe_c00281{left:276.000000pt;}
.x18_c00281{left:278.666667pt;}
.x25_c00281{left:280.000000pt;}
.xd6_c00281{left:281.333333pt;}
.xcc_c00281{left:283.626667pt;}
.x10a_c00281{left:284.960000pt;}
.x99_c00281{left:288.000000pt;}
.x7e_c00281{left:290.293333pt;}
.xa3_c00281{left:291.626667pt;}
.x19_c00281{left:293.706667pt;}
.x3e_c00281{left:294.666667pt;}
.x5d_c00281{left:296.000000pt;}
.x32_c00281{left:297.333333pt;}
.xaf_c00281{left:299.040000pt;}
.xba_c00281{left:300.373333pt;}
.x74_c00281{left:301.333333pt;}
.xe2_c00281{left:302.666667pt;}
.xec_c00281{left:305.333333pt;}
.x7f_c00281{left:307.040000pt;}
.xe7_c00281{left:309.706667pt;}
.x26_c00281{left:310.666667pt;}
.xc1_c00281{left:312.000000pt;}
.x6_c00281{left:313.333333pt;}
.xc0_c00281{left:314.666667pt;}
.x3f_c00281{left:317.706667pt;}
.xa7_c00281{left:318.666667pt;}
.x13_c00281{left:319.800000pt;}
.x103_c00281{left:321.706667pt;}
.x8b_c00281{left:323.040000pt;}
.xc6_c00281{left:326.666667pt;}
.x27_c00281{left:328.000000pt;}
.x33_c00281{left:329.706667pt;}
.xd7_c00281{left:332.000000pt;}
.x4c_c00281{left:333.333333pt;}
.x1a_c00281{left:334.666667pt;}
.xb0_c00281{left:336.000000pt;}
.x67_c00281{left:337.706667pt;}
.xea_c00281{left:340.000000pt;}
.x5e_c00281{left:341.333333pt;}
.x75_c00281{left:342.666667pt;}
.x84_c00281{left:344.000000pt;}
.x28_c00281{left:347.040000pt;}
.x7_c00281{left:348.000000pt;}
.xa8_c00281{left:348.960000pt;}
.x1b_c00281{left:352.000000pt;}
.x6f_c00281{left:353.706667pt;}
.x14_c00281{left:354.666667pt;}
.xc2_c00281{left:355.626667pt;}
.x80_c00281{left:357.706667pt;}
.x1_c00281{left:360.000000pt;}
.x34_c00281{left:361.333333pt;}
.xa9_c00281{left:362.666667pt;}
.x40_c00281{left:365.333333pt;}
.x54_c00281{left:366.666667pt;}
.x4d_c00281{left:367.626667pt;}
.x9e_c00281{left:369.333333pt;}
.x29_c00281{left:370.666667pt;}
.xfb_c00281{left:372.000000pt;}
.xdd_c00281{left:373.333333pt;}
.x5f_c00281{left:374.666667pt;}
.xff_c00281{left:376.000000pt;}
.x1c_c00281{left:377.333333pt;}
.x85_c00281{left:378.293333pt;}
.xd8_c00281{left:380.000000pt;}
.x4e_c00281{left:383.040000pt;}
.xc7_c00281{left:384.000000pt;}
.xf5_c00281{left:385.706667pt;}
.x8_c00281{left:386.666667pt;}
.x35_c00281{left:387.626667pt;}
.x81_c00281{left:389.706667pt;}
.x55_c00281{left:392.000000pt;}
.x8c_c00281{left:392.960000pt;}
.x9a_c00281{left:394.666667pt;}
.xb1_c00281{left:396.000000pt;}
.x68_c00281{left:397.706667pt;}
.xed_c00281{left:400.000000pt;}
.xa4_c00281{left:401.333333pt;}
.xcd_c00281{left:403.040000pt;}
.x9_c00281{left:404.373333pt;}
.x41_c00281{left:405.706667pt;}
.x76_c00281{left:407.626667pt;}
.x86_c00281{left:410.293333pt;}
.x60_c00281{left:412.000000pt;}
.x94_c00281{left:413.333333pt;}
.xaa_c00281{left:416.573333pt;}
.x100_c00281{left:417.706667pt;}
.xc8_c00281{left:418.666667pt;}
.xee_c00281{left:420.000000pt;}
.xbb_c00281{left:421.906667pt;}
.x2a_c00281{left:425.333333pt;}
.xe8_c00281{left:428.000000pt;}
.xa_c00281{left:428.960000pt;}
.x9f_c00281{left:431.240000pt;}
.x70_c00281{left:433.333333pt;}
.xc3_c00281{left:435.240000pt;}
.x42_c00281{left:437.706667pt;}
.x10e_c00281{left:440.000000pt;}
.xb2_c00281{left:441.706667pt;}
.x56_c00281{left:444.000000pt;}
.x8d_c00281{left:447.240000pt;}
.x9b_c00281{left:449.333333pt;}
.xd1_c00281{left:450.666667pt;}
.xd9_c00281{left:452.373333pt;}
.x69_c00281{left:453.333333pt;}
.xab_c00281{left:454.666667pt;}
.x36_c00281{left:456.000000pt;}
.xef_c00281{left:459.040000pt;}
.x107_c00281{left:460.000000pt;}
.x1d_c00281{left:460.960000pt;}
.x43_c00281{left:462.293333pt;}
.x104_c00281{left:466.666667pt;}
.xce_c00281{left:468.373333pt;}
.xc9_c00281{left:469.333333pt;}
.x4f_c00281{left:470.666667pt;}
.xe3_c00281{left:471.626667pt;}
.xde_c00281{left:472.960000pt;}
.x87_c00281{left:474.666667pt;}
.x61_c00281{left:475.626667pt;}
.x95_c00281{left:477.333333pt;}
.x1e_c00281{left:479.040000pt;}
.xf0_c00281{left:483.040000pt;}
.xdf_c00281{left:485.333333pt;}
.x8e_c00281{left:486.666667pt;}
.xda_c00281{left:489.333333pt;}
.x62_c00281{left:491.040000pt;}
.x2b_c00281{left:493.333333pt;}
.x37_c00281{left:494.666667pt;}
.xa0_c00281{left:496.373333pt;}
.xb3_c00281{left:500.960000pt;}
.x77_c00281{left:502.666667pt;}
.x1f_c00281{left:504.000000pt;}
.x57_c00281{left:504.960000pt;}
.x71_c00281{left:506.666667pt;}
.xb_c00281{left:508.960000pt;}
.x2c_c00281{left:511.626667pt;}
.xac_c00281{left:512.960000pt;}
.x63_c00281{left:514.666667pt;}
.x44_c00281{left:516.000000pt;}
.x108_c00281{left:517.333333pt;}
.x78_c00281{left:519.040000pt;}
.x58_c00281{left:520.960000pt;}
.xfc_c00281{left:522.666667pt;}
.xad_c00281{left:525.906667pt;}
.x82_c00281{left:532.373333pt;}
.xb4_c00281{left:533.706667pt;}
.x6a_c00281{left:536.000000pt;}
.x45_c00281{left:540.000000pt;}
.x50_c00281{left:541.333333pt;}
.x79_c00281{left:542.666667pt;}
.xa1_c00281{left:544.373333pt;}
.x64_c00281{left:550.666667pt;}
.xc_c00281{left:552.000000pt;}
.xcf_c00281{left:556.000000pt;}
.x105_c00281{left:557.706667pt;}
.xd2_c00281{left:560.000000pt;}
.xbc_c00281{left:561.333333pt;}
.x20_c00281{left:562.293333pt;}
.x38_c00281{left:567.626667pt;}
.xf9_c00281{left:571.040000pt;}
.x10f_c00281{left:572.000000pt;}
.x46_c00281{left:573.333333pt;}
.xe0_c00281{left:574.293333pt;}
.x96_c00281{left:576.000000pt;}
.xdb_c00281{left:576.960000pt;}
.x21_c00281{left:580.373333pt;}
.x109_c00281{left:581.706667pt;}
.x59_c00281{left:585.706667pt;}
.x51_c00281{left:586.666667pt;}
.xeb_c00281{left:588.000000pt;}
.x7a_c00281{left:588.960000pt;}
.x83_c00281{left:590.293333pt;}
.xf6_c00281{left:592.000000pt;}
.x39_c00281{left:595.040000pt;}
.x8f_c00281{left:597.333333pt;}
.x6b_c00281{left:599.626667pt;}
.xd_c00281{left:600.960000pt;}
.x47_c00281{left:602.666667pt;}
.x22_c00281{left:605.333333pt;}
.x72_c00281{left:608.000000pt;}
.xa2_c00281{left:609.333333pt;}
.xc4_c00281{left:613.333333pt;}
.xb5_c00281{left:615.040000pt;}
.xe9_c00281{left:616.373333pt;}
.xdc_c00281{left:617.333333pt;}
.xd3_c00281{left:620.000000pt;}
.x2d_c00281{left:622.666667pt;}
.xc5_c00281{left:624.000000pt;}
.xbd_c00281{left:625.333333pt;}
.x3a_c00281{left:628.373333pt;}
.x106_c00281{left:629.706667pt;}
.xf1_c00281{left:631.040000pt;}
.xe_c00281{left:634.293333pt;}
.x48_c00281{left:636.000000pt;}
.xfd_c00281{left:637.333333pt;}
.x101_c00281{left:638.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_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_2f9f2daf37006f94f2974675.woff2')format("woff");}.ff1_c00282{font-family:ff1_c00282;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mad_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);}
.m3c_c00282{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.mcb_c00282{transform:matrix(0.344709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344709,0.000000,0.000000,0.250000,0,0);}
.m4d_c00282{transform:matrix(0.344958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344958,0.000000,0.000000,0.250000,0,0);}
.m89_c00282{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m98_c00282{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.mbd_c00282{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m5d_c00282{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m86_c00282{transform:matrix(0.368908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368908,0.000000,0.000000,0.250000,0,0);}
.m45_c00282{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m9f_c00282{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m9d_c00282{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.me1_c00282{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.m43_c00282{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m81_c00282{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.m7e_c00282{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m20_c00282{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m8c_c00282{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.mb1_c00282{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.mb5_c00282{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m8f_c00282{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.m7d_c00282{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m30_c00282{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m9b_c00282{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.mbe_c00282{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m1f_c00282{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mb2_c00282{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m8d_c00282{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m1b_c00282{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.me3_c00282{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m9c_c00282{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.mc1_c00282{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m32_c00282{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m53_c00282{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.ma5_c00282{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_c00282{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mc2_c00282{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.ma3_c00282{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.ma4_c00282{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mb6_c00282{transform:matrix(0.405083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405083,0.000000,0.000000,0.250000,0,0);}
.m2a_c00282{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m36_c00282{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.me6_c00282{transform:matrix(0.408742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408742,0.000000,0.000000,0.250000,0,0);}
.mc9_c00282{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m74_c00282{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mb4_c00282{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m67_c00282{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.mae_c00282{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mba_c00282{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m90_c00282{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.ma1_c00282{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mb3_c00282{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m87_c00282{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.m5b_c00282{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m3f_c00282{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m63_c00282{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.ma6_c00282{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.maf_c00282{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m33_c00282{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.me8_c00282{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m70_c00282{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mbf_c00282{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mc0_c00282{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m8_c00282{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m3e_c00282{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m52_c00282{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.mce_c00282{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m31_c00282{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mc8_c00282{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m92_c00282{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m3b_c00282{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m41_c00282{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m4f_c00282{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m1e_c00282{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.ma7_c00282{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m18_c00282{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m1c_c00282{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m56_c00282{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.m26_c00282{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m6_c00282{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.me0_c00282{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m48_c00282{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m64_c00282{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m13_c00282{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m47_c00282{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mc5_c00282{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m71_c00282{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m5c_c00282{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m4c_c00282{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m34_c00282{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.m6b_c00282{transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);}
.m35_c00282{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m94_c00282{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.m7b_c00282{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.mc_c00282{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m77_c00282{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m62_c00282{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m61_c00282{transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);}
.m3a_c00282{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m76_c00282{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.me7_c00282{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m25_c00282{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m5e_c00282{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.m65_c00282{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m7c_c00282{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m5_c00282{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m7f_c00282{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.m84_c00282{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m54_c00282{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m23_c00282{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m1_c00282{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m38_c00282{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m96_c00282{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.md4_c00282{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m7_c00282{transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);}
.m6a_c00282{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m1d_c00282{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_c00282{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.md2_c00282{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mdc_c00282{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m9a_c00282{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m72_c00282{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m2f_c00282{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mee_c00282{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m44_c00282{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.ma8_c00282{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m3_c00282{transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);}
.m60_c00282{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m2d_c00282{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m49_c00282{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m1a_c00282{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m59_c00282{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mca_c00282{transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);}
.me_c00282{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m50_c00282{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.me9_c00282{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mde_c00282{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m78_c00282{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.mc7_c00282{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mdd_c00282{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mab_c00282{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m2b_c00282{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.md7_c00282{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m3d_c00282{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mf_c00282{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m80_c00282{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.md5_c00282{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m9_c00282{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.md_c00282{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m51_c00282{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m85_c00282{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m21_c00282{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.me5_c00282{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m8e_c00282{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m39_c00282{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m2_c00282{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m4a_c00282{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m7a_c00282{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m57_c00282{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mda_c00282{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.mb8_c00282{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m27_c00282{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m14_c00282{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m12_c00282{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m69_c00282{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m24_c00282{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.mbc_c00282{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m4e_c00282{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m17_c00282{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.me4_c00282{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m6c_c00282{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.ma_c00282{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.ma2_c00282{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mef_c00282{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m6d_c00282{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mea_c00282{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m9e_c00282{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m22_c00282{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m11_c00282{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m99_c00282{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mdb_c00282{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m2c_c00282{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m40_c00282{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m5a_c00282{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m97_c00282{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mac_c00282{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.ma9_c00282{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m75_c00282{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m82_c00282{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m88_c00282{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mec_c00282{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.md6_c00282{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.mbb_c00282{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.maa_c00282{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m5f_c00282{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mb_c00282{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mcc_c00282{transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);}
.md9_c00282{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.m58_c00282{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m95_c00282{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mdf_c00282{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m79_c00282{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m91_c00282{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m15_c00282{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);}
.m28_c00282{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m2e_c00282{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m16_c00282{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.md0_c00282{transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);}
.m0_c00282{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.mcf_c00282{transform:matrix(0.633814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633814,0.000000,0.000000,0.250000,0,0);}
.ma0_c00282{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m46_c00282{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.mcd_c00282{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);}
.m37_c00282{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m66_c00282{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mc6_c00282{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m4_c00282{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mb0_c00282{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m8a_c00282{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.md8_c00282{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m68_c00282{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m29_c00282{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mc3_c00282{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.meb_c00282{transform:matrix(0.724359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.724359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.724359,0.000000,0.000000,0.250000,0,0);}
.md1_c00282{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m6e_c00282{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m4b_c00282{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mc4_c00282{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mb9_c00282{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m8b_c00282{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m93_c00282{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.m19_c00282{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mf0_c00282{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.me2_c00282{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m83_c00282{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mb7_c00282{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.med_c00282{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m10_c00282{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m42_c00282{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.md3_c00282{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.m55_c00282{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,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;}
}
.ws1_c00282{word-spacing:-7.448345px;}
.ws0_c00282{word-spacing:-7.168560px;}
.ws2_c00282{word-spacing:-4.209521px;}
.ws3_c00282{word-spacing:0.000000px;}
.fc0_c00282{color:transparent;}
.fs5_c00282{font-size:18.720000px;}
.fs0_c00282{font-size:20.400000px;}
.fs4_c00282{font-size:25.500000px;}
.fs1_c00282{font-size:28.920000px;}
.fs2_c00282{font-size:32.340000px;}
.fs3_c00282{font-size:35.700000px;}
.fs6_c00282{font-size:39.120000px;}
.y0_c00282{bottom:0.000000px;}
.yb8_c00282{bottom:251.745000px;}
.yb6_c00282{bottom:253.245000px;}
.yb7_c00282{bottom:254.130000px;}
.yb5_c00282{bottom:255.405000px;}
.yb1_c00282{bottom:272.745000px;}
.yb2_c00282{bottom:273.630000px;}
.yb4_c00282{bottom:274.470000px;}
.yb3_c00282{bottom:274.905000px;}
.yb0_c00282{bottom:275.130000px;}
.yad_c00282{bottom:291.405000px;}
.yaf_c00282{bottom:292.245000px;}
.yae_c00282{bottom:293.325000px;}
.yab_c00282{bottom:294.405000px;}
.yac_c00282{bottom:294.630000px;}
.yaa_c00282{bottom:310.680000px;}
.ya6_c00282{bottom:311.745000px;}
.ya9_c00282{bottom:313.245000px;}
.ya7_c00282{bottom:313.905000px;}
.ya8_c00282{bottom:314.130000px;}
.ya5_c00282{bottom:330.405000px;}
.ya3_c00282{bottom:332.745000px;}
.ya2_c00282{bottom:333.405000px;}
.ya4_c00282{bottom:333.630000px;}
.ya1_c00282{bottom:334.470000px;}
.ya0_c00282{bottom:334.905000px;}
.y9e_c00282{bottom:350.970000px;}
.y9c_c00282{bottom:352.245000px;}
.y9d_c00282{bottom:353.130000px;}
.y9b_c00282{bottom:354.405000px;}
.y9f_c00282{bottom:355.470000px;}
.y9a_c00282{bottom:372.405000px;}
.y95_c00282{bottom:372.630000px;}
.y98_c00282{bottom:372.825000px;}
.y97_c00282{bottom:373.905000px;}
.y99_c00282{bottom:374.130000px;}
.y96_c00282{bottom:374.970000px;}
.y91_c00282{bottom:391.245000px;}
.y90_c00282{bottom:392.325000px;}
.y94_c00282{bottom:392.970000px;}
.y8f_c00282{bottom:393.405000px;}
.y92_c00282{bottom:393.630000px;}
.y93_c00282{bottom:394.905000px;}
.y8c_c00282{bottom:409.905000px;}
.y8b_c00282{bottom:410.745000px;}
.y8e_c00282{bottom:410.970000px;}
.y8a_c00282{bottom:412.905000px;}
.y8d_c00282{bottom:413.130000px;}
.y86_c00282{bottom:430.245000px;}
.y88_c00282{bottom:431.550000px;}
.y89_c00282{bottom:431.745000px;}
.y85_c00282{bottom:432.405000px;}
.y87_c00282{bottom:432.630000px;}
.y84_c00282{bottom:457.905000px;}
.y83_c00282{bottom:489.180000px;}
.y81_c00282{bottom:490.245000px;}
.y82_c00282{bottom:492.405000px;}
.y80_c00282{bottom:509.325000px;}
.y7d_c00282{bottom:509.745000px;}
.y7e_c00282{bottom:510.630000px;}
.y7f_c00282{bottom:511.905000px;}
.y79_c00282{bottom:529.245000px;}
.y7b_c00282{bottom:530.130000px;}
.y7c_c00282{bottom:530.970000px;}
.y7a_c00282{bottom:531.405000px;}
.y77_c00282{bottom:546.405000px;}
.y78_c00282{bottom:548.745000px;}
.y76_c00282{bottom:550.470000px;}
.y75_c00282{bottom:550.905000px;}
.y74_c00282{bottom:568.245000px;}
.y73_c00282{bottom:569.130000px;}
.y72_c00282{bottom:569.325000px;}
.y71_c00282{bottom:570.405000px;}
.y6e_c00282{bottom:587.745000px;}
.y6f_c00282{bottom:589.905000px;}
.y70_c00282{bottom:590.130000px;}
.y6d_c00282{bottom:607.245000px;}
.y6a_c00282{bottom:609.405000px;}
.y6b_c00282{bottom:609.630000px;}
.y6c_c00282{bottom:610.470000px;}
.y69_c00282{bottom:610.905000px;}
.y68_c00282{bottom:626.745000px;}
.y67_c00282{bottom:626.970000px;}
.y64_c00282{bottom:628.245000px;}
.y65_c00282{bottom:628.905000px;}
.y66_c00282{bottom:629.130000px;}
.y63_c00282{bottom:630.405000px;}
.y62_c00282{bottom:645.405000px;}
.y61_c00282{bottom:647.745000px;}
.y60_c00282{bottom:649.905000px;}
.y5c_c00282{bottom:665.970000px;}
.y5d_c00282{bottom:667.245000px;}
.y5e_c00282{bottom:668.130000px;}
.y5f_c00282{bottom:668.970000px;}
.y5b_c00282{bottom:669.405000px;}
.y59_c00282{bottom:685.905000px;}
.y5a_c00282{bottom:686.745000px;}
.y58_c00282{bottom:688.905000px;}
.y55_c00282{bottom:705.825000px;}
.y57_c00282{bottom:706.245000px;}
.y53_c00282{bottom:707.970000px;}
.y54_c00282{bottom:708.405000px;}
.y56_c00282{bottom:709.470000px;}
.y4f_c00282{bottom:725.745000px;}
.y50_c00282{bottom:727.905000px;}
.y51_c00282{bottom:728.130000px;}
.y52_c00282{bottom:728.970000px;}
.y4b_c00282{bottom:745.245000px;}
.y4e_c00282{bottom:746.745000px;}
.y4a_c00282{bottom:747.405000px;}
.y4c_c00282{bottom:747.630000px;}
.y4d_c00282{bottom:748.470000px;}
.y49_c00282{bottom:748.905000px;}
.y48_c00282{bottom:763.905000px;}
.y47_c00282{bottom:766.245000px;}
.y46_c00282{bottom:767.130000px;}
.y45_c00282{bottom:768.405000px;}
.y42_c00282{bottom:784.905000px;}
.y44_c00282{bottom:785.325000px;}
.y40_c00282{bottom:785.745000px;}
.y43_c00282{bottom:786.630000px;}
.y41_c00282{bottom:786.825000px;}
.y3f_c00282{bottom:787.905000px;}
.y3d_c00282{bottom:804.825000px;}
.y3b_c00282{bottom:805.245000px;}
.y3e_c00282{bottom:806.970000px;}
.y3c_c00282{bottom:807.405000px;}
.y39_c00282{bottom:824.745000px;}
.y3a_c00282{bottom:826.470000px;}
.y37_c00282{bottom:826.905000px;}
.y38_c00282{bottom:827.970000px;}
.y34_c00282{bottom:844.245000px;}
.y32_c00282{bottom:845.325000px;}
.y35_c00282{bottom:845.970000px;}
.y33_c00282{bottom:846.405000px;}
.y36_c00282{bottom:847.470000px;}
.y30_c00282{bottom:863.325000px;}
.y2f_c00282{bottom:863.745000px;}
.y31_c00282{bottom:864.825000px;}
.y2e_c00282{bottom:865.905000px;}
.y2b_c00282{bottom:884.745000px;}
.y2d_c00282{bottom:886.470000px;}
.y2c_c00282{bottom:886.905000px;}
.y29_c00282{bottom:903.405000px;}
.y26_c00282{bottom:904.245000px;}
.y2a_c00282{bottom:904.905000px;}
.y28_c00282{bottom:905.130000px;}
.y25_c00282{bottom:905.970000px;}
.y27_c00282{bottom:906.405000px;}
.y21_c00282{bottom:923.745000px;}
.y23_c00282{bottom:924.630000px;}
.y24_c00282{bottom:924.825000px;}
.y20_c00282{bottom:925.905000px;}
.y22_c00282{bottom:926.970000px;}
.y1d_c00282{bottom:943.245000px;}
.y1f_c00282{bottom:944.130000px;}
.y1e_c00282{bottom:944.970000px;}
.y1c_c00282{bottom:945.405000px;}
.y19_c00282{bottom:962.745000px;}
.y1b_c00282{bottom:964.905000px;}
.y1a_c00282{bottom:965.130000px;}
.y18_c00282{bottom:982.245000px;}
.y16_c00282{bottom:984.405000px;}
.y17_c00282{bottom:985.470000px;}
.y15_c00282{bottom:1000.905000px;}
.y12_c00282{bottom:1001.745000px;}
.y13_c00282{bottom:1001.970000px;}
.y11_c00282{bottom:1002.825000px;}
.y10_c00282{bottom:1003.905000px;}
.y14_c00282{bottom:1004.130000px;}
.yf_c00282{bottom:1020.405000px;}
.ye_c00282{bottom:1020.825000px;}
.yd_c00282{bottom:1021.245000px;}
.yb_c00282{bottom:1040.745000px;}
.y9_c00282{bottom:1042.905000px;}
.ya_c00282{bottom:1043.130000px;}
.yc_c00282{bottom:1043.970000px;}
.y4_c00282{bottom:1061.325000px;}
.y5_c00282{bottom:1061.745000px;}
.y8_c00282{bottom:1062.405000px;}
.y7_c00282{bottom:1062.825000px;}
.y3_c00282{bottom:1063.905000px;}
.y6_c00282{bottom:1064.970000px;}
.y2_c00282{bottom:1099.905000px;}
.y1_c00282{bottom:1102.050000px;}
.h6_c00282{height:23.025234px;}
.h1_c00282{height:25.091602px;}
.h5_c00282{height:31.364502px;}
.h2_c00282{height:35.571035px;}
.h3_c00282{height:39.777568px;}
.h4_c00282{height:43.910303px;}
.h7_c00282{height:48.116836px;}
.h0_c00282{height:1335.000000px;}
.w0_c00282{width:880.500000px;}
.x0_c00282{left:0.000000px;}
.x3_c00282{left:151.500000px;}
.x9e_c00282{left:152.580000px;}
.x23_c00282{left:166.500000px;}
.x67_c00282{left:167.580000px;}
.x101_c00282{left:169.500000px;}
.xa7_c00282{left:171.000000px;}
.xf1_c00282{left:174.420000px;}
.xff_c00282{left:175.920000px;}
.xc8_c00282{left:177.000000px;}
.x58_c00282{left:178.500000px;}
.x2f_c00282{left:180.000000px;}
.x4_c00282{left:181.920000px;}
.x93_c00282{left:183.420000px;}
.x7c_c00282{left:185.580000px;}
.xeb_c00282{left:188.580000px;}
.x62_c00282{left:190.080000px;}
.x9f_c00282{left:193.500000px;}
.xa8_c00282{left:195.000000px;}
.x24_c00282{left:198.000000px;}
.xe8_c00282{left:199.080000px;}
.x4e_c00282{left:200.580000px;}
.x68_c00282{left:203.580000px;}
.x30_c00282{left:206.580000px;}
.xda_c00282{left:208.500000px;}
.x44_c00282{left:209.580000px;}
.x39_c00282{left:211.080000px;}
.x11_c00282{left:213.000000px;}
.x72_c00282{left:215.580000px;}
.xa9_c00282{left:217.500000px;}
.xf2_c00282{left:219.000000px;}
.x94_c00282{left:220.920000px;}
.x1e_c00282{left:224.355000px;}
.xf8_c00282{left:226.500000px;}
.xb0_c00282{left:229.500000px;}
.x4f_c00282{left:232.275000px;}
.x12_c00282{left:233.580000px;}
.xc9_c00282{left:235.500000px;}
.x25_c00282{left:236.580000px;}
.x8e_c00282{left:238.920000px;}
.x59_c00282{left:240.000000px;}
.x7d_c00282{left:241.500000px;}
.x5_c00282{left:244.500000px;}
.x73_c00282{left:246.000000px;}
.x95_c00282{left:247.080000px;}
.xc2_c00282{left:248.580000px;}
.x10b_c00282{left:250.920000px;}
.xb7_c00282{left:252.000000px;}
.xce_c00282{left:256.500000px;}
.xd3_c00282{left:258.000000px;}
.x6_c00282{left:261.000000px;}
.x31_c00282{left:262.080000px;}
.xb1_c00282{left:263.580000px;}
.x1f_c00282{left:265.080000px;}
.xbb_c00282{left:268.500000px;}
.x102_c00282{left:270.000000px;}
.xdb_c00282{left:271.500000px;}
.x63_c00282{left:274.080000px;}
.x8f_c00282{left:276.420000px;}
.x7_c00282{left:277.920000px;}
.x69_c00282{left:279.420000px;}
.x50_c00282{left:280.500000px;}
.x7e_c00282{left:281.580000px;}
.x106_c00282{left:283.500000px;}
.x13_c00282{left:285.420000px;}
.xaa_c00282{left:286.500000px;}
.x96_c00282{left:289.500000px;}
.x20_c00282{left:291.645000px;}
.x3a_c00282{left:294.000000px;}
.x26_c00282{left:295.080000px;}
.xbc_c00282{left:296.580000px;}
.xd4_c00282{left:300.000000px;}
.xec_c00282{left:301.920000px;}
.x64_c00282{left:305.580000px;}
.xc3_c00282{left:307.500000px;}
.x32_c00282{left:308.580000px;}
.x84_c00282{left:310.080000px;}
.x27_c00282{left:313.920000px;}
.x51_c00282{left:316.500000px;}
.xbd_c00282{left:318.000000px;}
.xe5_c00282{left:319.080000px;}
.xd5_c00282{left:321.420000px;}
.x74_c00282{left:322.920000px;}
.xab_c00282{left:324.000000px;}
.xca_c00282{left:325.500000px;}
.x10c_c00282{left:327.000000px;}
.x14_c00282{left:328.500000px;}
.xf3_c00282{left:330.000000px;}
.x8_c00282{left:331.080000px;}
.x8a_c00282{left:334.080000px;}
.xe0_c00282{left:336.420000px;}
.x28_c00282{left:340.500000px;}
.x3b_c00282{left:341.580000px;}
.x97_c00282{left:344.580000px;}
.x65_c00282{left:348.420000px;}
.xa0_c00282{left:349.500000px;}
.xac_c00282{left:351.000000px;}
.x15_c00282{left:354.000000px;}
.x85_c00282{left:355.500000px;}
.x10e_c00282{left:358.500000px;}
.x21_c00282{left:359.775000px;}
.x5a_c00282{left:363.000000px;}
.x107_c00282{left:364.920000px;}
.x45_c00282{left:366.420000px;}
.xb8_c00282{left:367.500000px;}
.xdc_c00282{left:369.000000px;}
.xe7_c00282{left:371.580000px;}
.xe1_c00282{left:373.500000px;}
.x66_c00282{left:375.000000px;}
.x98_c00282{left:376.500000px;}
.xd6_c00282{left:378.420000px;}
.x3c_c00282{left:379.500000px;}
.x33_c00282{left:381.420000px;}
.x90_c00282{left:384.420000px;}
.x75_c00282{left:385.500000px;}
.x52_c00282{left:387.000000px;}
.xc4_c00282{left:388.500000px;}
.x6a_c00282{left:390.000000px;}
.xad_c00282{left:391.080000px;}
.xf9_c00282{left:394.500000px;}
.x46_c00282{left:396.420000px;}
.x10f_c00282{left:397.500000px;}
.x9_c00282{left:399.000000px;}
.x22_c00282{left:400.500000px;}
.xa1_c00282{left:402.000000px;}
.x76_c00282{left:403.920000px;}
.x1_c00282{left:405.000000px;}
.xdd_c00282{left:408.000000px;}
.x5b_c00282{left:409.500000px;}
.x16_c00282{left:411.420000px;}
.xb9_c00282{left:414.420000px;}
.x53_c00282{left:417.000000px;}
.xe9_c00282{left:418.080000px;}
.xe2_c00282{left:421.500000px;}
.xa_c00282{left:423.420000px;}
.xb2_c00282{left:424.500000px;}
.xf4_c00282{left:426.000000px;}
.x3d_c00282{left:427.500000px;}
.x77_c00282{left:429.420000px;}
.x108_c00282{left:430.920000px;}
.xae_c00282{left:432.420000px;}
.xed_c00282{left:433.500000px;}
.x5c_c00282{left:439.080000px;}
.x99_c00282{left:441.420000px;}
.x47_c00282{left:444.420000px;}
.xbe_c00282{left:445.920000px;}
.x6b_c00282{left:447.000000px;}
.xb_c00282{left:450.000000px;}
.xfa_c00282{left:451.080000px;}
.x3e_c00282{left:452.145000px;}
.x91_c00282{left:454.500000px;}
.x17_c00282{left:456.420000px;}
.x109_c00282{left:457.500000px;}
.x110_c00282{left:459.000000px;}
.x7f_c00282{left:464.145000px;}
.x8b_c00282{left:468.000000px;}
.xde_c00282{left:469.080000px;}
.xfb_c00282{left:471.000000px;}
.xaf_c00282{left:472.920000px;}
.xa2_c00282{left:474.420000px;}
.x9a_c00282{left:475.500000px;}
.x86_c00282{left:477.000000px;}
.x48_c00282{left:480.000000px;}
.x54_c00282{left:481.080000px;}
.xc5_c00282{left:482.580000px;}
.x18_c00282{left:484.500000px;}
.x78_c00282{left:486.000000px;}
.xb3_c00282{left:487.500000px;}
.xf5_c00282{left:489.000000px;}
.x5d_c00282{left:490.500000px;}
.x9b_c00282{left:494.580000px;}
.x29_c00282{left:496.920000px;}
.x6c_c00282{left:501.000000px;}
.x79_c00282{left:502.920000px;}
.xb4_c00282{left:505.920000px;}
.xa3_c00282{left:508.080000px;}
.x87_c00282{left:511.500000px;}
.x5e_c00282{left:513.000000px;}
.x3f_c00282{left:514.080000px;}
.xfc_c00282{left:516.000000px;}
.x8c_c00282{left:517.500000px;}
.x19_c00282{left:519.000000px;}
.x6d_c00282{left:521.355000px;}
.x80_c00282{left:524.580000px;}
.x34_c00282{left:526.080000px;}
.x88_c00282{left:529.500000px;}
.xfd_c00282{left:532.500000px;}
.xc_c00282{left:533.580000px;}
.x9c_c00282{left:535.920000px;}
.x10d_c00282{left:538.920000px;}
.x1a_c00282{left:540.000000px;}
.x103_c00282{left:543.420000px;}
.xf6_c00282{left:544.500000px;}
.xe3_c00282{left:549.000000px;}
.xb5_c00282{left:550.500000px;}
.x49_c00282{left:552.420000px;}
.xd_c00282{left:553.500000px;}
.xbf_c00282{left:555.420000px;}
.x35_c00282{left:556.920000px;}
.xee_c00282{left:558.420000px;}
.xdf_c00282{left:559.500000px;}
.x40_c00282{left:561.000000px;}
.xd7_c00282{left:562.920000px;}
.x10a_c00282{left:567.420000px;}
.x9d_c00282{left:569.580000px;}
.x2a_c00282{left:571.500000px;}
.xcf_c00282{left:574.500000px;}
.x111_c00282{left:576.000000px;}
.x6e_c00282{left:580.500000px;}
.x36_c00282{left:581.580000px;}
.xa4_c00282{left:583.500000px;}
.xba_c00282{left:585.000000px;}
.x4a_c00282{left:586.500000px;}
.x1b_c00282{left:588.420000px;}
.x5f_c00282{left:590.580000px;}
.x81_c00282{left:595.500000px;}
.x2b_c00282{left:597.420000px;}
.x6f_c00282{left:598.500000px;}
.xe4_c00282{left:599.580000px;}
.x104_c00282{left:601.920000px;}
.x55_c00282{left:603.000000px;}
.xcb_c00282{left:606.420000px;}
.xef_c00282{left:607.920000px;}
.x82_c00282{left:610.500000px;}
.x4b_c00282{left:612.420000px;}
.xd8_c00282{left:615.420000px;}
.xc6_c00282{left:618.420000px;}
.x41_c00282{left:619.500000px;}
.xc0_c00282{left:621.000000px;}
.x56_c00282{left:624.000000px;}
.x112_c00282{left:625.920000px;}
.x1c_c00282{left:627.000000px;}
.xe_c00282{left:628.500000px;}
.x37_c00282{left:631.080000px;}
.xcc_c00282{left:633.000000px;}
.x60_c00282{left:634.080000px;}
.x2c_c00282{left:635.580000px;}
.x89_c00282{left:639.000000px;}
.xd9_c00282{left:640.500000px;}
.x92_c00282{left:642.000000px;}
.x42_c00282{left:643.920000px;}
.x4c_c00282{left:645.000000px;}
.xd0_c00282{left:647.580000px;}
.xfe_c00282{left:649.920000px;}
.xe6_c00282{left:651.420000px;}
.xc7_c00282{left:653.580000px;}
.x1d_c00282{left:655.920000px;}
.x7a_c00282{left:657.000000px;}
.xb6_c00282{left:658.500000px;}
.x70_c00282{left:660.000000px;}
.x8d_c00282{left:661.500000px;}
.xf_c00282{left:663.000000px;}
.x100_c00282{left:664.500000px;}
.xd1_c00282{left:666.420000px;}
.x43_c00282{left:670.080000px;}
.x83_c00282{left:673.080000px;}
.x2d_c00282{left:674.580000px;}
.x57_c00282{left:676.080000px;}
.x38_c00282{left:677.580000px;}
.x71_c00282{left:679.500000px;}
.xf0_c00282{left:681.000000px;}
.x7b_c00282{left:682.500000px;}
.xa5_c00282{left:684.000000px;}
.x61_c00282{left:687.000000px;}
.xf7_c00282{left:688.080000px;}
.xea_c00282{left:690.000000px;}
.x2e_c00282{left:691.080000px;}
.xd2_c00282{left:694.500000px;}
.xa6_c00282{left:699.420000px;}
.xcd_c00282{left:700.500000px;}
.x2_c00282{left:703.080000px;}
.x10_c00282{left:705.420000px;}
.x4d_c00282{left:706.920000px;}
.x105_c00282{left:708.420000px;}
.x113_c00282{left:709.500000px;}
.xc1_c00282{left:715.080000px;}
@media print{
.v0_c00282{vertical-align:0.000000pt;}
.ls0_c00282{letter-spacing:0.000000pt;}
.ws1_c00282{word-spacing:-6.620751pt;}
.ws0_c00282{word-spacing:-6.372053pt;}
.ws2_c00282{word-spacing:-3.741796pt;}
.ws3_c00282{word-spacing:0.000000pt;}
.fs5_c00282{font-size:16.640000pt;}
.fs0_c00282{font-size:18.133333pt;}
.fs4_c00282{font-size:22.666667pt;}
.fs1_c00282{font-size:25.706667pt;}
.fs2_c00282{font-size:28.746667pt;}
.fs3_c00282{font-size:31.733333pt;}
.fs6_c00282{font-size:34.773333pt;}
.y0_c00282{bottom:0.000000pt;}
.yb8_c00282{bottom:223.773333pt;}
.yb6_c00282{bottom:225.106667pt;}
.yb7_c00282{bottom:225.893333pt;}
.yb5_c00282{bottom:227.026667pt;}
.yb1_c00282{bottom:242.440000pt;}
.yb2_c00282{bottom:243.226667pt;}
.yb4_c00282{bottom:243.973333pt;}
.yb3_c00282{bottom:244.360000pt;}
.yb0_c00282{bottom:244.560000pt;}
.yad_c00282{bottom:259.026667pt;}
.yaf_c00282{bottom:259.773333pt;}
.yae_c00282{bottom:260.733333pt;}
.yab_c00282{bottom:261.693333pt;}
.yac_c00282{bottom:261.893333pt;}
.yaa_c00282{bottom:276.160000pt;}
.ya6_c00282{bottom:277.106667pt;}
.ya9_c00282{bottom:278.440000pt;}
.ya7_c00282{bottom:279.026667pt;}
.ya8_c00282{bottom:279.226667pt;}
.ya5_c00282{bottom:293.693333pt;}
.ya3_c00282{bottom:295.773333pt;}
.ya2_c00282{bottom:296.360000pt;}
.ya4_c00282{bottom:296.560000pt;}
.ya1_c00282{bottom:297.306667pt;}
.ya0_c00282{bottom:297.693333pt;}
.y9e_c00282{bottom:311.973333pt;}
.y9c_c00282{bottom:313.106667pt;}
.y9d_c00282{bottom:313.893333pt;}
.y9b_c00282{bottom:315.026667pt;}
.y9f_c00282{bottom:315.973333pt;}
.y9a_c00282{bottom:331.026667pt;}
.y95_c00282{bottom:331.226667pt;}
.y98_c00282{bottom:331.400000pt;}
.y97_c00282{bottom:332.360000pt;}
.y99_c00282{bottom:332.560000pt;}
.y96_c00282{bottom:333.306667pt;}
.y91_c00282{bottom:347.773333pt;}
.y90_c00282{bottom:348.733333pt;}
.y94_c00282{bottom:349.306667pt;}
.y8f_c00282{bottom:349.693333pt;}
.y92_c00282{bottom:349.893333pt;}
.y93_c00282{bottom:351.026667pt;}
.y8c_c00282{bottom:364.360000pt;}
.y8b_c00282{bottom:365.106667pt;}
.y8e_c00282{bottom:365.306667pt;}
.y8a_c00282{bottom:367.026667pt;}
.y8d_c00282{bottom:367.226667pt;}
.y86_c00282{bottom:382.440000pt;}
.y88_c00282{bottom:383.600000pt;}
.y89_c00282{bottom:383.773333pt;}
.y85_c00282{bottom:384.360000pt;}
.y87_c00282{bottom:384.560000pt;}
.y84_c00282{bottom:407.026667pt;}
.y83_c00282{bottom:434.826667pt;}
.y81_c00282{bottom:435.773333pt;}
.y82_c00282{bottom:437.693333pt;}
.y80_c00282{bottom:452.733333pt;}
.y7d_c00282{bottom:453.106667pt;}
.y7e_c00282{bottom:453.893333pt;}
.y7f_c00282{bottom:455.026667pt;}
.y79_c00282{bottom:470.440000pt;}
.y7b_c00282{bottom:471.226667pt;}
.y7c_c00282{bottom:471.973333pt;}
.y7a_c00282{bottom:472.360000pt;}
.y77_c00282{bottom:485.693333pt;}
.y78_c00282{bottom:487.773333pt;}
.y76_c00282{bottom:489.306667pt;}
.y75_c00282{bottom:489.693333pt;}
.y74_c00282{bottom:505.106667pt;}
.y73_c00282{bottom:505.893333pt;}
.y72_c00282{bottom:506.066667pt;}
.y71_c00282{bottom:507.026667pt;}
.y6e_c00282{bottom:522.440000pt;}
.y6f_c00282{bottom:524.360000pt;}
.y70_c00282{bottom:524.560000pt;}
.y6d_c00282{bottom:539.773333pt;}
.y6a_c00282{bottom:541.693333pt;}
.y6b_c00282{bottom:541.893333pt;}
.y6c_c00282{bottom:542.640000pt;}
.y69_c00282{bottom:543.026667pt;}
.y68_c00282{bottom:557.106667pt;}
.y67_c00282{bottom:557.306667pt;}
.y64_c00282{bottom:558.440000pt;}
.y65_c00282{bottom:559.026667pt;}
.y66_c00282{bottom:559.226667pt;}
.y63_c00282{bottom:560.360000pt;}
.y62_c00282{bottom:573.693333pt;}
.y61_c00282{bottom:575.773333pt;}
.y60_c00282{bottom:577.693333pt;}
.y5c_c00282{bottom:591.973333pt;}
.y5d_c00282{bottom:593.106667pt;}
.y5e_c00282{bottom:593.893333pt;}
.y5f_c00282{bottom:594.640000pt;}
.y5b_c00282{bottom:595.026667pt;}
.y59_c00282{bottom:609.693333pt;}
.y5a_c00282{bottom:610.440000pt;}
.y58_c00282{bottom:612.360000pt;}
.y55_c00282{bottom:627.400000pt;}
.y57_c00282{bottom:627.773333pt;}
.y53_c00282{bottom:629.306667pt;}
.y54_c00282{bottom:629.693333pt;}
.y56_c00282{bottom:630.640000pt;}
.y4f_c00282{bottom:645.106667pt;}
.y50_c00282{bottom:647.026667pt;}
.y51_c00282{bottom:647.226667pt;}
.y52_c00282{bottom:647.973333pt;}
.y4b_c00282{bottom:662.440000pt;}
.y4e_c00282{bottom:663.773333pt;}
.y4a_c00282{bottom:664.360000pt;}
.y4c_c00282{bottom:664.560000pt;}
.y4d_c00282{bottom:665.306667pt;}
.y49_c00282{bottom:665.693333pt;}
.y48_c00282{bottom:679.026667pt;}
.y47_c00282{bottom:681.106667pt;}
.y46_c00282{bottom:681.893333pt;}
.y45_c00282{bottom:683.026667pt;}
.y42_c00282{bottom:697.693333pt;}
.y44_c00282{bottom:698.066667pt;}
.y40_c00282{bottom:698.440000pt;}
.y43_c00282{bottom:699.226667pt;}
.y41_c00282{bottom:699.400000pt;}
.y3f_c00282{bottom:700.360000pt;}
.y3d_c00282{bottom:715.400000pt;}
.y3b_c00282{bottom:715.773333pt;}
.y3e_c00282{bottom:717.306667pt;}
.y3c_c00282{bottom:717.693333pt;}
.y39_c00282{bottom:733.106667pt;}
.y3a_c00282{bottom:734.640000pt;}
.y37_c00282{bottom:735.026667pt;}
.y38_c00282{bottom:735.973333pt;}
.y34_c00282{bottom:750.440000pt;}
.y32_c00282{bottom:751.400000pt;}
.y35_c00282{bottom:751.973333pt;}
.y33_c00282{bottom:752.360000pt;}
.y36_c00282{bottom:753.306667pt;}
.y30_c00282{bottom:767.400000pt;}
.y2f_c00282{bottom:767.773333pt;}
.y31_c00282{bottom:768.733333pt;}
.y2e_c00282{bottom:769.693333pt;}
.y2b_c00282{bottom:786.440000pt;}
.y2d_c00282{bottom:787.973333pt;}
.y2c_c00282{bottom:788.360000pt;}
.y29_c00282{bottom:803.026667pt;}
.y26_c00282{bottom:803.773333pt;}
.y2a_c00282{bottom:804.360000pt;}
.y28_c00282{bottom:804.560000pt;}
.y25_c00282{bottom:805.306667pt;}
.y27_c00282{bottom:805.693333pt;}
.y21_c00282{bottom:821.106667pt;}
.y23_c00282{bottom:821.893333pt;}
.y24_c00282{bottom:822.066667pt;}
.y20_c00282{bottom:823.026667pt;}
.y22_c00282{bottom:823.973333pt;}
.y1d_c00282{bottom:838.440000pt;}
.y1f_c00282{bottom:839.226667pt;}
.y1e_c00282{bottom:839.973333pt;}
.y1c_c00282{bottom:840.360000pt;}
.y19_c00282{bottom:855.773333pt;}
.y1b_c00282{bottom:857.693333pt;}
.y1a_c00282{bottom:857.893333pt;}
.y18_c00282{bottom:873.106667pt;}
.y16_c00282{bottom:875.026667pt;}
.y17_c00282{bottom:875.973333pt;}
.y15_c00282{bottom:889.693333pt;}
.y12_c00282{bottom:890.440000pt;}
.y13_c00282{bottom:890.640000pt;}
.y11_c00282{bottom:891.400000pt;}
.y10_c00282{bottom:892.360000pt;}
.y14_c00282{bottom:892.560000pt;}
.yf_c00282{bottom:907.026667pt;}
.ye_c00282{bottom:907.400000pt;}
.yd_c00282{bottom:907.773333pt;}
.yb_c00282{bottom:925.106667pt;}
.y9_c00282{bottom:927.026667pt;}
.ya_c00282{bottom:927.226667pt;}
.yc_c00282{bottom:927.973333pt;}
.y4_c00282{bottom:943.400000pt;}
.y5_c00282{bottom:943.773333pt;}
.y8_c00282{bottom:944.360000pt;}
.y7_c00282{bottom:944.733333pt;}
.y3_c00282{bottom:945.693333pt;}
.y6_c00282{bottom:946.640000pt;}
.y2_c00282{bottom:977.693333pt;}
.y1_c00282{bottom:979.600000pt;}
.h6_c00282{height:20.466875pt;}
.h1_c00282{height:22.303646pt;}
.h5_c00282{height:27.879557pt;}
.h2_c00282{height:31.618698pt;}
.h3_c00282{height:35.357839pt;}
.h4_c00282{height:39.031380pt;}
.h7_c00282{height:42.770521pt;}
.h0_c00282{height:1186.666667pt;}
.w0_c00282{width:782.666667pt;}
.x0_c00282{left:0.000000pt;}
.x3_c00282{left:134.666667pt;}
.x9e_c00282{left:135.626667pt;}
.x23_c00282{left:148.000000pt;}
.x67_c00282{left:148.960000pt;}
.x101_c00282{left:150.666667pt;}
.xa7_c00282{left:152.000000pt;}
.xf1_c00282{left:155.040000pt;}
.xff_c00282{left:156.373333pt;}
.xc8_c00282{left:157.333333pt;}
.x58_c00282{left:158.666667pt;}
.x2f_c00282{left:160.000000pt;}
.x4_c00282{left:161.706667pt;}
.x93_c00282{left:163.040000pt;}
.x7c_c00282{left:164.960000pt;}
.xeb_c00282{left:167.626667pt;}
.x62_c00282{left:168.960000pt;}
.x9f_c00282{left:172.000000pt;}
.xa8_c00282{left:173.333333pt;}
.x24_c00282{left:176.000000pt;}
.xe8_c00282{left:176.960000pt;}
.x4e_c00282{left:178.293333pt;}
.x68_c00282{left:180.960000pt;}
.x30_c00282{left:183.626667pt;}
.xda_c00282{left:185.333333pt;}
.x44_c00282{left:186.293333pt;}
.x39_c00282{left:187.626667pt;}
.x11_c00282{left:189.333333pt;}
.x72_c00282{left:191.626667pt;}
.xa9_c00282{left:193.333333pt;}
.xf2_c00282{left:194.666667pt;}
.x94_c00282{left:196.373333pt;}
.x1e_c00282{left:199.426667pt;}
.xf8_c00282{left:201.333333pt;}
.xb0_c00282{left:204.000000pt;}
.x4f_c00282{left:206.466667pt;}
.x12_c00282{left:207.626667pt;}
.xc9_c00282{left:209.333333pt;}
.x25_c00282{left:210.293333pt;}
.x8e_c00282{left:212.373333pt;}
.x59_c00282{left:213.333333pt;}
.x7d_c00282{left:214.666667pt;}
.x5_c00282{left:217.333333pt;}
.x73_c00282{left:218.666667pt;}
.x95_c00282{left:219.626667pt;}
.xc2_c00282{left:220.960000pt;}
.x10b_c00282{left:223.040000pt;}
.xb7_c00282{left:224.000000pt;}
.xce_c00282{left:228.000000pt;}
.xd3_c00282{left:229.333333pt;}
.x6_c00282{left:232.000000pt;}
.x31_c00282{left:232.960000pt;}
.xb1_c00282{left:234.293333pt;}
.x1f_c00282{left:235.626667pt;}
.xbb_c00282{left:238.666667pt;}
.x102_c00282{left:240.000000pt;}
.xdb_c00282{left:241.333333pt;}
.x63_c00282{left:243.626667pt;}
.x8f_c00282{left:245.706667pt;}
.x7_c00282{left:247.040000pt;}
.x69_c00282{left:248.373333pt;}
.x50_c00282{left:249.333333pt;}
.x7e_c00282{left:250.293333pt;}
.x106_c00282{left:252.000000pt;}
.x13_c00282{left:253.706667pt;}
.xaa_c00282{left:254.666667pt;}
.x96_c00282{left:257.333333pt;}
.x20_c00282{left:259.240000pt;}
.x3a_c00282{left:261.333333pt;}
.x26_c00282{left:262.293333pt;}
.xbc_c00282{left:263.626667pt;}
.xd4_c00282{left:266.666667pt;}
.xec_c00282{left:268.373333pt;}
.x64_c00282{left:271.626667pt;}
.xc3_c00282{left:273.333333pt;}
.x32_c00282{left:274.293333pt;}
.x84_c00282{left:275.626667pt;}
.x27_c00282{left:279.040000pt;}
.x51_c00282{left:281.333333pt;}
.xbd_c00282{left:282.666667pt;}
.xe5_c00282{left:283.626667pt;}
.xd5_c00282{left:285.706667pt;}
.x74_c00282{left:287.040000pt;}
.xab_c00282{left:288.000000pt;}
.xca_c00282{left:289.333333pt;}
.x10c_c00282{left:290.666667pt;}
.x14_c00282{left:292.000000pt;}
.xf3_c00282{left:293.333333pt;}
.x8_c00282{left:294.293333pt;}
.x8a_c00282{left:296.960000pt;}
.xe0_c00282{left:299.040000pt;}
.x28_c00282{left:302.666667pt;}
.x3b_c00282{left:303.626667pt;}
.x97_c00282{left:306.293333pt;}
.x65_c00282{left:309.706667pt;}
.xa0_c00282{left:310.666667pt;}
.xac_c00282{left:312.000000pt;}
.x15_c00282{left:314.666667pt;}
.x85_c00282{left:316.000000pt;}
.x10e_c00282{left:318.666667pt;}
.x21_c00282{left:319.800000pt;}
.x5a_c00282{left:322.666667pt;}
.x107_c00282{left:324.373333pt;}
.x45_c00282{left:325.706667pt;}
.xb8_c00282{left:326.666667pt;}
.xdc_c00282{left:328.000000pt;}
.xe7_c00282{left:330.293333pt;}
.xe1_c00282{left:332.000000pt;}
.x66_c00282{left:333.333333pt;}
.x98_c00282{left:334.666667pt;}
.xd6_c00282{left:336.373333pt;}
.x3c_c00282{left:337.333333pt;}
.x33_c00282{left:339.040000pt;}
.x90_c00282{left:341.706667pt;}
.x75_c00282{left:342.666667pt;}
.x52_c00282{left:344.000000pt;}
.xc4_c00282{left:345.333333pt;}
.x6a_c00282{left:346.666667pt;}
.xad_c00282{left:347.626667pt;}
.xf9_c00282{left:350.666667pt;}
.x46_c00282{left:352.373333pt;}
.x10f_c00282{left:353.333333pt;}
.x9_c00282{left:354.666667pt;}
.x22_c00282{left:356.000000pt;}
.xa1_c00282{left:357.333333pt;}
.x76_c00282{left:359.040000pt;}
.x1_c00282{left:360.000000pt;}
.xdd_c00282{left:362.666667pt;}
.x5b_c00282{left:364.000000pt;}
.x16_c00282{left:365.706667pt;}
.xb9_c00282{left:368.373333pt;}
.x53_c00282{left:370.666667pt;}
.xe9_c00282{left:371.626667pt;}
.xe2_c00282{left:374.666667pt;}
.xa_c00282{left:376.373333pt;}
.xb2_c00282{left:377.333333pt;}
.xf4_c00282{left:378.666667pt;}
.x3d_c00282{left:380.000000pt;}
.x77_c00282{left:381.706667pt;}
.x108_c00282{left:383.040000pt;}
.xae_c00282{left:384.373333pt;}
.xed_c00282{left:385.333333pt;}
.x5c_c00282{left:390.293333pt;}
.x99_c00282{left:392.373333pt;}
.x47_c00282{left:395.040000pt;}
.xbe_c00282{left:396.373333pt;}
.x6b_c00282{left:397.333333pt;}
.xb_c00282{left:400.000000pt;}
.xfa_c00282{left:400.960000pt;}
.x3e_c00282{left:401.906667pt;}
.x91_c00282{left:404.000000pt;}
.x17_c00282{left:405.706667pt;}
.x109_c00282{left:406.666667pt;}
.x110_c00282{left:408.000000pt;}
.x7f_c00282{left:412.573333pt;}
.x8b_c00282{left:416.000000pt;}
.xde_c00282{left:416.960000pt;}
.xfb_c00282{left:418.666667pt;}
.xaf_c00282{left:420.373333pt;}
.xa2_c00282{left:421.706667pt;}
.x9a_c00282{left:422.666667pt;}
.x86_c00282{left:424.000000pt;}
.x48_c00282{left:426.666667pt;}
.x54_c00282{left:427.626667pt;}
.xc5_c00282{left:428.960000pt;}
.x18_c00282{left:430.666667pt;}
.x78_c00282{left:432.000000pt;}
.xb3_c00282{left:433.333333pt;}
.xf5_c00282{left:434.666667pt;}
.x5d_c00282{left:436.000000pt;}
.x9b_c00282{left:439.626667pt;}
.x29_c00282{left:441.706667pt;}
.x6c_c00282{left:445.333333pt;}
.x79_c00282{left:447.040000pt;}
.xb4_c00282{left:449.706667pt;}
.xa3_c00282{left:451.626667pt;}
.x87_c00282{left:454.666667pt;}
.x5e_c00282{left:456.000000pt;}
.x3f_c00282{left:456.960000pt;}
.xfc_c00282{left:458.666667pt;}
.x8c_c00282{left:460.000000pt;}
.x19_c00282{left:461.333333pt;}
.x6d_c00282{left:463.426667pt;}
.x80_c00282{left:466.293333pt;}
.x34_c00282{left:467.626667pt;}
.x88_c00282{left:470.666667pt;}
.xfd_c00282{left:473.333333pt;}
.xc_c00282{left:474.293333pt;}
.x9c_c00282{left:476.373333pt;}
.x10d_c00282{left:479.040000pt;}
.x1a_c00282{left:480.000000pt;}
.x103_c00282{left:483.040000pt;}
.xf6_c00282{left:484.000000pt;}
.xe3_c00282{left:488.000000pt;}
.xb5_c00282{left:489.333333pt;}
.x49_c00282{left:491.040000pt;}
.xd_c00282{left:492.000000pt;}
.xbf_c00282{left:493.706667pt;}
.x35_c00282{left:495.040000pt;}
.xee_c00282{left:496.373333pt;}
.xdf_c00282{left:497.333333pt;}
.x40_c00282{left:498.666667pt;}
.xd7_c00282{left:500.373333pt;}
.x10a_c00282{left:504.373333pt;}
.x9d_c00282{left:506.293333pt;}
.x2a_c00282{left:508.000000pt;}
.xcf_c00282{left:510.666667pt;}
.x111_c00282{left:512.000000pt;}
.x6e_c00282{left:516.000000pt;}
.x36_c00282{left:516.960000pt;}
.xa4_c00282{left:518.666667pt;}
.xba_c00282{left:520.000000pt;}
.x4a_c00282{left:521.333333pt;}
.x1b_c00282{left:523.040000pt;}
.x5f_c00282{left:524.960000pt;}
.x81_c00282{left:529.333333pt;}
.x2b_c00282{left:531.040000pt;}
.x6f_c00282{left:532.000000pt;}
.xe4_c00282{left:532.960000pt;}
.x104_c00282{left:535.040000pt;}
.x55_c00282{left:536.000000pt;}
.xcb_c00282{left:539.040000pt;}
.xef_c00282{left:540.373333pt;}
.x82_c00282{left:542.666667pt;}
.x4b_c00282{left:544.373333pt;}
.xd8_c00282{left:547.040000pt;}
.xc6_c00282{left:549.706667pt;}
.x41_c00282{left:550.666667pt;}
.xc0_c00282{left:552.000000pt;}
.x56_c00282{left:554.666667pt;}
.x112_c00282{left:556.373333pt;}
.x1c_c00282{left:557.333333pt;}
.xe_c00282{left:558.666667pt;}
.x37_c00282{left:560.960000pt;}
.xcc_c00282{left:562.666667pt;}
.x60_c00282{left:563.626667pt;}
.x2c_c00282{left:564.960000pt;}
.x89_c00282{left:568.000000pt;}
.xd9_c00282{left:569.333333pt;}
.x92_c00282{left:570.666667pt;}
.x42_c00282{left:572.373333pt;}
.x4c_c00282{left:573.333333pt;}
.xd0_c00282{left:575.626667pt;}
.xfe_c00282{left:577.706667pt;}
.xe6_c00282{left:579.040000pt;}
.xc7_c00282{left:580.960000pt;}
.x1d_c00282{left:583.040000pt;}
.x7a_c00282{left:584.000000pt;}
.xb6_c00282{left:585.333333pt;}
.x70_c00282{left:586.666667pt;}
.x8d_c00282{left:588.000000pt;}
.xf_c00282{left:589.333333pt;}
.x100_c00282{left:590.666667pt;}
.xd1_c00282{left:592.373333pt;}
.x43_c00282{left:595.626667pt;}
.x83_c00282{left:598.293333pt;}
.x2d_c00282{left:599.626667pt;}
.x57_c00282{left:600.960000pt;}
.x38_c00282{left:602.293333pt;}
.x71_c00282{left:604.000000pt;}
.xf0_c00282{left:605.333333pt;}
.x7b_c00282{left:606.666667pt;}
.xa5_c00282{left:608.000000pt;}
.x61_c00282{left:610.666667pt;}
.xf7_c00282{left:611.626667pt;}
.xea_c00282{left:613.333333pt;}
.x2e_c00282{left:614.293333pt;}
.xd2_c00282{left:617.333333pt;}
.xa6_c00282{left:621.706667pt;}
.xcd_c00282{left:622.666667pt;}
.x2_c00282{left:624.960000pt;}
.x10_c00282{left:627.040000pt;}
.x4d_c00282{left:628.373333pt;}
.x105_c00282{left:629.706667pt;}
.x113_c00282{left:630.666667pt;}
.xc1_c00282{left:635.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_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_5a4358de16426be0c8f257b2.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8f_c00283{transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);}
.m64_c00283{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m9e_c00283{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.mbb_c00283{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m7a_c00283{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m6c_c00283{transform:matrix(0.362730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362730,0.000000,0.000000,0.250000,0,0);}
.med_c00283{transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);}
.m38_c00283{transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);}
.m1e_c00283{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m5f_c00283{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mec_c00283{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.ma8_c00283{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m91_c00283{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.me2_c00283{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m47_c00283{transform:matrix(0.376891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376891,0.000000,0.000000,0.250000,0,0);}
.mfa_c00283{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m2f_c00283{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m7_c00283{transform:matrix(0.380252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380252,0.000000,0.000000,0.250000,0,0);}
.m5d_c00283{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.ma2_c00283{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.m92_c00283{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m50_c00283{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.me5_c00283{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m2e_c00283{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.md6_c00283{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mad_c00283{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m66_c00283{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m6f_c00283{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m6d_c00283{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m93_c00283{transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);}
.md3_c00283{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.mbe_c00283{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m8e_c00283{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.me0_c00283{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m5c_c00283{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m5e_c00283{transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);}
.m3_c00283{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m8c_c00283{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m15_c00283{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m87_c00283{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m3f_c00283{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m2_c00283{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.mb_c00283{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mce_c00283{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m74_c00283{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.mdc_c00283{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m12_c00283{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.me4_c00283{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m86_c00283{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mc8_c00283{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.me6_c00283{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m89_c00283{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m5_c00283{transform:matrix(0.416976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416976,0.000000,0.000000,0.250000,0,0);}
.mc_c00283{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.mcc_c00283{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.md_c00283{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m3c_c00283{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.mf0_c00283{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m68_c00283{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m42_c00283{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m40_c00283{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m4b_c00283{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m37_c00283{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.mf9_c00283{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m6a_c00283{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.ma_c00283{transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);}
.m97_c00283{transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);}
.m20_c00283{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.mb7_c00283{transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);}
.m9a_c00283{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m63_c00283{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mea_c00283{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m28_c00283{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.me1_c00283{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.mf1_c00283{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m65_c00283{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m1b_c00283{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m9_c00283{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m8a_c00283{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m36_c00283{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m6e_c00283{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m82_c00283{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.mcf_c00283{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m1c_c00283{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.mb9_c00283{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mf8_c00283{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.mb2_c00283{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.ma0_c00283{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m4a_c00283{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m53_c00283{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m7d_c00283{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m1a_c00283{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m17_c00283{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m70_c00283{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mab_c00283{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m4d_c00283{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.me7_c00283{transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);}
.m3b_c00283{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m90_c00283{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m69_c00283{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m75_c00283{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m98_c00283{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m8_c00283{transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);}
.mc4_c00283{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.mbf_c00283{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.me9_c00283{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m67_c00283{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m4_c00283{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.mdd_c00283{transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);}
.me8_c00283{transform:matrix(0.471765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471765,0.000000,0.000000,0.250000,0,0);}
.ma1_c00283{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m3e_c00283{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m94_c00283{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m22_c00283{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m10_c00283{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mb0_c00283{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mef_c00283{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m1_c00283{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mf_c00283{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m32_c00283{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m21_c00283{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m3d_c00283{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);}
.m2b_c00283{transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);}
.m2d_c00283{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m6_c00283{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.md8_c00283{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mc9_c00283{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mb8_c00283{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m85_c00283{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m2a_c00283{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m76_c00283{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.ma7_c00283{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m41_c00283{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m1d_c00283{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m46_c00283{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m61_c00283{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m55_c00283{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mb4_c00283{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.mb1_c00283{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m45_c00283{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m4f_c00283{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m83_c00283{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mc1_c00283{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.ma5_c00283{transform:matrix(0.525974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525974,0.000000,0.000000,0.250000,0,0);}
.m88_c00283{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m4c_c00283{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mb5_c00283{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m99_c00283{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m31_c00283{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m14_c00283{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m30_c00283{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m60_c00283{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m58_c00283{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.meb_c00283{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.mac_c00283{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m1f_c00283{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m57_c00283{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mf4_c00283{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m19_c00283{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m9d_c00283{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.mb3_c00283{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.md1_c00283{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m7f_c00283{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m81_c00283{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m39_c00283{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mc7_c00283{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.md9_c00283{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mcd_c00283{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m5a_c00283{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m11_c00283{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.maa_c00283{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.mdb_c00283{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mba_c00283{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.me_c00283{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mf6_c00283{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m51_c00283{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mc3_c00283{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m26_c00283{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m78_c00283{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m4e_c00283{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.mf3_c00283{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.ma9_c00283{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.m72_c00283{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m35_c00283{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.mc0_c00283{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m8d_c00283{transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);}
.m16_c00283{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m27_c00283{transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);}
.me3_c00283{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m9c_c00283{transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);}
.m9b_c00283{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m77_c00283{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m44_c00283{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m62_c00283{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.mcb_c00283{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.maf_c00283{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.mb6_c00283{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mc2_c00283{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.m49_c00283{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m34_c00283{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.md2_c00283{transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);}
.m13_c00283{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m95_c00283{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m5b_c00283{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.md7_c00283{transform:matrix(0.595353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595353,0.000000,0.000000,0.250000,0,0);}
.m43_c00283{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m6b_c00283{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mf5_c00283{transform:matrix(0.601141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601141,0.000000,0.000000,0.250000,0,0);}
.m7b_c00283{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m54_c00283{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m29_c00283{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m18_c00283{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.ma3_c00283{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.ma4_c00283{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m33_c00283{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m24_c00283{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.mbd_c00283{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mae_c00283{transform:matrix(0.630705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630705,0.000000,0.000000,0.250000,0,0);}
.m0_c00283{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m96_c00283{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m25_c00283{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m56_c00283{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m79_c00283{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.mde_c00283{transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);}
.mdf_c00283{transform:matrix(0.658824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.658824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.658824,0.000000,0.000000,0.250000,0,0);}
.m80_c00283{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m9f_c00283{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m8b_c00283{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mc5_c00283{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.mee_c00283{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.md0_c00283{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m73_c00283{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.m52_c00283{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mbc_c00283{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.md4_c00283{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m2c_c00283{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m84_c00283{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.mc6_c00283{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.ma6_c00283{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mda_c00283{transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);}
.m23_c00283{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.mca_c00283{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m7e_c00283{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m48_c00283{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.md5_c00283{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m59_c00283{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m3a_c00283{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m71_c00283{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m7c_c00283{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.mf2_c00283{transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);}
.mf7_c00283{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-6.154361px;}
.ws1_c00283{word-spacing:0.000000px;}
.fc0_c00283{color:transparent;}
.fs7_c00283{font-size:3.420000px;}
.fs5_c00283{font-size:18.720000px;}
.fs0_c00283{font-size:20.400000px;}
.fs4_c00283{font-size:25.500000px;}
.fs1_c00283{font-size:28.920000px;}
.fs3_c00283{font-size:32.340000px;}
.fs2_c00283{font-size:35.700000px;}
.fs6_c00283{font-size:39.120000px;}
.y0_c00283{bottom:0.000000px;}
.yc6_c00283{bottom:251.745000px;}
.ycb_c00283{bottom:252.405000px;}
.yc8_c00283{bottom:252.825000px;}
.yc9_c00283{bottom:253.245000px;}
.yca_c00283{bottom:254.325000px;}
.yc7_c00283{bottom:255.420000px;}
.yc0_c00283{bottom:271.245000px;}
.yc3_c00283{bottom:271.680000px;}
.yc5_c00283{bottom:272.745000px;}
.yc1_c00283{bottom:272.970000px;}
.yc4_c00283{bottom:273.825000px;}
.yc2_c00283{bottom:274.905000px;}
.yba_c00283{bottom:290.745000px;}
.ybb_c00283{bottom:292.245000px;}
.ybf_c00283{bottom:293.745000px;}
.ybd_c00283{bottom:294.405000px;}
.ybc_c00283{bottom:294.420000px;}
.ybe_c00283{bottom:295.905000px;}
.yb4_c00283{bottom:315.405000px;}
.yb7_c00283{bottom:315.825000px;}
.yb9_c00283{bottom:316.470000px;}
.yb6_c00283{bottom:316.905000px;}
.yb5_c00283{bottom:317.970000px;}
.yb8_c00283{bottom:318.630000px;}
.yb0_c00283{bottom:335.325000px;}
.yb1_c00283{bottom:336.405000px;}
.yb3_c00283{bottom:336.825000px;}
.yb2_c00283{bottom:338.550000px;}
.yae_c00283{bottom:359.745000px;}
.yaf_c00283{bottom:362.970000px;}
.yad_c00283{bottom:391.905000px;}
.ya8_c00283{bottom:408.405000px;}
.yac_c00283{bottom:410.745000px;}
.yab_c00283{bottom:411.630000px;}
.ya9_c00283{bottom:412.470000px;}
.yaa_c00283{bottom:412.905000px;}
.ya5_c00283{bottom:430.245000px;}
.ya4_c00283{bottom:432.405000px;}
.ya7_c00283{bottom:432.630000px;}
.ya6_c00283{bottom:433.470000px;}
.ya1_c00283{bottom:449.745000px;}
.y9f_c00283{bottom:450.825000px;}
.ya2_c00283{bottom:451.470000px;}
.ya0_c00283{bottom:451.905000px;}
.ya3_c00283{bottom:452.130000px;}
.y9b_c00283{bottom:471.405000px;}
.y9d_c00283{bottom:471.630000px;}
.y9e_c00283{bottom:472.470000px;}
.y9c_c00283{bottom:472.905000px;}
.y96_c00283{bottom:489.825000px;}
.y9a_c00283{bottom:490.245000px;}
.y99_c00283{bottom:491.130000px;}
.y97_c00283{bottom:491.970000px;}
.y98_c00283{bottom:492.405000px;}
.y91_c00283{bottom:506.745000px;}
.y92_c00283{bottom:509.745000px;}
.y93_c00283{bottom:510.825000px;}
.y95_c00283{bottom:511.470000px;}
.y94_c00283{bottom:511.905000px;}
.y8c_c00283{bottom:528.825000px;}
.y8e_c00283{bottom:529.245000px;}
.y8f_c00283{bottom:530.130000px;}
.y8d_c00283{bottom:531.405000px;}
.y90_c00283{bottom:532.470000px;}
.y8b_c00283{bottom:547.905000px;}
.y88_c00283{bottom:548.745000px;}
.y8a_c00283{bottom:549.825000px;}
.y89_c00283{bottom:550.470000px;}
.y87_c00283{bottom:550.905000px;}
.y86_c00283{bottom:566.745000px;}
.y82_c00283{bottom:568.245000px;}
.y84_c00283{bottom:569.130000px;}
.y85_c00283{bottom:569.325000px;}
.y83_c00283{bottom:569.970000px;}
.y81_c00283{bottom:570.405000px;}
.y7f_c00283{bottom:587.745000px;}
.y7e_c00283{bottom:588.630000px;}
.y80_c00283{bottom:589.245000px;}
.y7d_c00283{bottom:589.905000px;}
.y78_c00283{bottom:607.245000px;}
.y7b_c00283{bottom:608.745000px;}
.y7c_c00283{bottom:609.825000px;}
.y79_c00283{bottom:610.470000px;}
.y7a_c00283{bottom:610.905000px;}
.y72_c00283{bottom:626.745000px;}
.y76_c00283{bottom:628.245000px;}
.y73_c00283{bottom:628.905000px;}
.y77_c00283{bottom:629.130000px;}
.y75_c00283{bottom:629.325000px;}
.y74_c00283{bottom:630.405000px;}
.y70_c00283{bottom:645.405000px;}
.y6b_c00283{bottom:646.245000px;}
.y6f_c00283{bottom:647.745000px;}
.y6c_c00283{bottom:648.405000px;}
.y71_c00283{bottom:648.630000px;}
.y6d_c00283{bottom:649.470000px;}
.y6e_c00283{bottom:649.905000px;}
.y6a_c00283{bottom:667.245000px;}
.y69_c00283{bottom:668.325000px;}
.y67_c00283{bottom:668.970000px;}
.y68_c00283{bottom:669.405000px;}
.y66_c00283{bottom:685.905000px;}
.y65_c00283{bottom:686.745000px;}
.y64_c00283{bottom:687.825000px;}
.y63_c00283{bottom:688.905000px;}
.y5f_c00283{bottom:705.405000px;}
.y5e_c00283{bottom:706.245000px;}
.y60_c00283{bottom:706.470000px;}
.y61_c00283{bottom:708.405000px;}
.y62_c00283{bottom:709.470000px;}
.y5b_c00283{bottom:724.905000px;}
.y5d_c00283{bottom:725.745000px;}
.y5a_c00283{bottom:727.905000px;}
.y5c_c00283{bottom:728.130000px;}
.y59_c00283{bottom:728.970000px;}
.y58_c00283{bottom:746.745000px;}
.y54_c00283{bottom:747.405000px;}
.y56_c00283{bottom:747.630000px;}
.y57_c00283{bottom:748.470000px;}
.y55_c00283{bottom:748.905000px;}
.y51_c00283{bottom:766.245000px;}
.y4e_c00283{bottom:766.905000px;}
.y53_c00283{bottom:767.130000px;}
.y4f_c00283{bottom:767.970000px;}
.y50_c00283{bottom:768.405000px;}
.y52_c00283{bottom:769.470000px;}
.y47_c00283{bottom:784.245000px;}
.y4d_c00283{bottom:784.470000px;}
.y48_c00283{bottom:784.905000px;}
.y49_c00283{bottom:785.745000px;}
.y4b_c00283{bottom:787.470000px;}
.y4c_c00283{bottom:787.905000px;}
.y4a_c00283{bottom:788.970000px;}
.y44_c00283{bottom:805.245000px;}
.y46_c00283{bottom:806.325000px;}
.y45_c00283{bottom:807.405000px;}
.y41_c00283{bottom:823.905000px;}
.y40_c00283{bottom:824.745000px;}
.y43_c00283{bottom:825.180000px;}
.y3f_c00283{bottom:825.825000px;}
.y42_c00283{bottom:826.905000px;}
.y3e_c00283{bottom:843.405000px;}
.y39_c00283{bottom:844.245000px;}
.y3a_c00283{bottom:845.745000px;}
.y38_c00283{bottom:846.405000px;}
.y3d_c00283{bottom:846.825000px;}
.y3c_c00283{bottom:847.470000px;}
.y3b_c00283{bottom:847.905000px;}
.y36_c00283{bottom:863.745000px;}
.y34_c00283{bottom:863.970000px;}
.y30_c00283{bottom:864.630000px;}
.y32_c00283{bottom:864.825000px;}
.y37_c00283{bottom:865.245000px;}
.y31_c00283{bottom:865.905000px;}
.y33_c00283{bottom:866.970000px;}
.y35_c00283{bottom:867.405000px;}
.y2c_c00283{bottom:884.745000px;}
.y2a_c00283{bottom:885.405000px;}
.y2e_c00283{bottom:885.630000px;}
.y2b_c00283{bottom:886.470000px;}
.y2d_c00283{bottom:886.905000px;}
.y2f_c00283{bottom:887.970000px;}
.y26_c00283{bottom:903.825000px;}
.y28_c00283{bottom:904.245000px;}
.y29_c00283{bottom:905.130000px;}
.y27_c00283{bottom:906.405000px;}
.y22_c00283{bottom:921.405000px;}
.y23_c00283{bottom:923.745000px;}
.y25_c00283{bottom:924.630000px;}
.y24_c00283{bottom:925.905000px;}
.y1e_c00283{bottom:943.245000px;}
.y20_c00283{bottom:944.130000px;}
.y21_c00283{bottom:944.325000px;}
.y1f_c00283{bottom:945.405000px;}
.y19_c00283{bottom:962.745000px;}
.y1d_c00283{bottom:963.825000px;}
.y1a_c00283{bottom:964.905000px;}
.y1b_c00283{bottom:965.970000px;}
.y1c_c00283{bottom:966.405000px;}
.y17_c00283{bottom:982.245000px;}
.y14_c00283{bottom:984.405000px;}
.y15_c00283{bottom:984.630000px;}
.y16_c00283{bottom:985.470000px;}
.y18_c00283{bottom:985.905000px;}
.y11_c00283{bottom:999.405000px;}
.y13_c00283{bottom:1001.745000px;}
.y12_c00283{bottom:1003.905000px;}
.yb_c00283{bottom:1021.245000px;}
.ye_c00283{bottom:1022.325000px;}
.y10_c00283{bottom:1022.745000px;}
.yc_c00283{bottom:1023.405000px;}
.yf_c00283{bottom:1024.470000px;}
.yd_c00283{bottom:1024.905000px;}
.y8_c00283{bottom:1040.745000px;}
.y7_c00283{bottom:1041.825000px;}
.y9_c00283{bottom:1042.245000px;}
.ya_c00283{bottom:1044.405000px;}
.y3_c00283{bottom:1060.245000px;}
.y4_c00283{bottom:1061.745000px;}
.y6_c00283{bottom:1062.825000px;}
.y5_c00283{bottom:1063.905000px;}
.y2_c00283{bottom:1098.405000px;}
.y1_c00283{bottom:1102.050000px;}
.h8_c00283{height:4.206533px;}
.h6_c00283{height:23.025234px;}
.h1_c00283{height:25.091602px;}
.h5_c00283{height:31.364502px;}
.h2_c00283{height:35.571035px;}
.h4_c00283{height:39.777568px;}
.h3_c00283{height:43.910303px;}
.h7_c00283{height:48.116836px;}
.h0_c00283{height:1335.000000px;}
.w0_c00283{width:880.500000px;}
.x0_c00283{left:0.000000px;}
.x2_c00283{left:151.080000px;}
.x2d_c00283{left:152.580000px;}
.xfb_c00283{left:155.775000px;}
.xf6_c00283{left:166.080000px;}
.x97_c00283{left:169.500000px;}
.x61_c00283{left:172.500000px;}
.x1b_c00283{left:175.080000px;}
.x81_c00283{left:180.420000px;}
.x25_c00283{left:183.000000px;}
.xe9_c00283{left:186.000000px;}
.xfc_c00283{left:187.500000px;}
.x48_c00283{left:190.080000px;}
.x62_c00283{left:191.580000px;}
.x2e_c00283{left:199.500000px;}
.x79_c00283{left:202.080000px;}
.x82_c00283{left:204.000000px;}
.xea_c00283{left:205.500000px;}
.x12_c00283{left:207.000000px;}
.xa_c00283{left:208.080000px;}
.xa8_c00283{left:210.000000px;}
.x3a_c00283{left:212.580000px;}
.x90_c00283{left:216.000000px;}
.x71_c00283{left:217.275000px;}
.x49_c00283{left:220.080000px;}
.x26_c00283{left:222.000000px;}
.x98_c00283{left:223.080000px;}
.x9d_c00283{left:225.000000px;}
.xd4_c00283{left:226.500000px;}
.xdc_c00283{left:229.920000px;}
.x88_c00283{left:231.000000px;}
.xb0_c00283{left:234.420000px;}
.x2f_c00283{left:238.500000px;}
.xd5_c00283{left:240.000000px;}
.x52_c00283{left:241.080000px;}
.x3_c00283{left:242.580000px;}
.xca_c00283{left:244.500000px;}
.x3b_c00283{left:247.080000px;}
.x83_c00283{left:249.000000px;}
.xd3_c00283{left:250.500000px;}
.x1c_c00283{left:251.775000px;}
.xbb_c00283{left:253.500000px;}
.x58_c00283{left:255.000000px;}
.xb1_c00283{left:258.000000px;}
.x72_c00283{left:261.420000px;}
.xeb_c00283{left:264.000000px;}
.x27_c00283{left:265.080000px;}
.x3c_c00283{left:267.420000px;}
.xf8_c00283{left:268.500000px;}
.x13_c00283{left:271.080000px;}
.xb_c00283{left:272.580000px;}
.x53_c00283{left:280.080000px;}
.xfd_c00283{left:282.000000px;}
.xa3_c00283{left:283.275000px;}
.x91_c00283{left:284.580000px;}
.xe5_c00283{left:287.145000px;}
.x73_c00283{left:288.420000px;}
.x7a_c00283{left:290.775000px;}
.x59_c00283{left:292.920000px;}
.x1d_c00283{left:294.000000px;}
.x6a_c00283{left:295.275000px;}
.x4a_c00283{left:300.000000px;}
.x63_c00283{left:304.500000px;}
.x3d_c00283{left:306.000000px;}
.x89_c00283{left:307.500000px;}
.xbf_c00283{left:308.580000px;}
.xd6_c00283{left:310.920000px;}
.xb7_c00283{left:312.000000px;}
.xb2_c00283{left:313.500000px;}
.x74_c00283{left:315.000000px;}
.x30_c00283{left:316.920000px;}
.xe1_c00283{left:318.000000px;}
.x9e_c00283{left:320.580000px;}
.xa9_c00283{left:324.000000px;}
.x54_c00283{left:325.080000px;}
.x4_c00283{left:327.000000px;}
.xc0_c00283{left:328.500000px;}
.x28_c00283{left:330.000000px;}
.xc_c00283{left:334.080000px;}
.x7b_c00283{left:337.500000px;}
.x4b_c00283{left:339.000000px;}
.x3e_c00283{left:342.000000px;}
.x1e_c00283{left:343.500000px;}
.xf1_c00283{left:345.000000px;}
.xd7_c00283{left:346.080000px;}
.x92_c00283{left:352.500000px;}
.x5a_c00283{left:354.420000px;}
.x6b_c00283{left:355.500000px;}
.x64_c00283{left:356.580000px;}
.x31_c00283{left:358.500000px;}
.xa4_c00283{left:359.580000px;}
.x3f_c00283{left:363.000000px;}
.x14_c00283{left:364.080000px;}
.xb3_c00283{left:367.080000px;}
.x4c_c00283{left:368.580000px;}
.x9f_c00283{left:370.080000px;}
.xec_c00283{left:372.000000px;}
.xc3_c00283{left:373.500000px;}
.xf9_c00283{left:375.000000px;}
.xf3_c00283{left:376.080000px;}
.x93_c00283{left:379.080000px;}
.xe2_c00283{left:382.500000px;}
.x15_c00283{left:384.000000px;}
.xcb_c00283{left:385.500000px;}
.x5b_c00283{left:387.420000px;}
.xcf_c00283{left:388.500000px;}
.xa0_c00283{left:390.000000px;}
.x8a_c00283{left:392.580000px;}
.x84_c00283{left:394.500000px;}
.x75_c00283{left:396.420000px;}
.x99_c00283{left:397.500000px;}
.x5_c00283{left:399.000000px;}
.xd_c00283{left:400.080000px;}
.xc4_c00283{left:403.500000px;}
.xcc_c00283{left:405.000000px;}
.x1_c00283{left:406.500000px;}
.x65_c00283{left:407.580000px;}
.x55_c00283{left:409.920000px;}
.x32_c00283{left:411.000000px;}
.xdd_c00283{left:412.080000px;}
.x4d_c00283{left:415.080000px;}
.x1f_c00283{left:417.420000px;}
.xa1_c00283{left:418.920000px;}
.xaa_c00283{left:420.000000px;}
.x8b_c00283{left:421.500000px;}
.xc1_c00283{left:423.420000px;}
.x29_c00283{left:424.920000px;}
.x40_c00283{left:426.420000px;}
.x5c_c00283{left:427.500000px;}
.x7c_c00283{left:430.080000px;}
.xe_c00283{left:431.580000px;}
.x76_c00283{left:433.080000px;}
.x33_c00283{left:436.920000px;}
.x8c_c00283{left:438.000000px;}
.xbc_c00283{left:441.000000px;}
.xb4_c00283{left:442.080000px;}
.xe6_c00283{left:444.000000px;}
.x94_c00283{left:445.500000px;}
.xc5_c00283{left:447.000000px;}
.xed_c00283{left:449.580000px;}
.x20_c00283{left:452.580000px;}
.xb8_c00283{left:454.500000px;}
.x85_c00283{left:456.420000px;}
.xa5_c00283{left:457.920000px;}
.x16_c00283{left:459.000000px;}
.x56_c00283{left:460.500000px;}
.xf4_c00283{left:461.580000px;}
.x34_c00283{left:465.420000px;}
.xc6_c00283{left:466.920000px;}
.xee_c00283{left:468.000000px;}
.x66_c00283{left:470.580000px;}
.x6_c00283{left:476.145000px;}
.xe3_c00283{left:484.920000px;}
.xde_c00283{left:486.000000px;}
.x17_c00283{left:487.080000px;}
.x4e_c00283{left:490.080000px;}
.x6c_c00283{left:492.000000px;}
.xd8_c00283{left:494.580000px;}
.xf_c00283{left:496.500000px;}
.x9a_c00283{left:499.920000px;}
.xf7_c00283{left:503.580000px;}
.x95_c00283{left:507.000000px;}
.x5d_c00283{left:510.000000px;}
.x35_c00283{left:511.080000px;}
.xfe_c00283{left:513.420000px;}
.xe7_c00283{left:514.500000px;}
.xd9_c00283{left:515.580000px;}
.xab_c00283{left:517.920000px;}
.x21_c00283{left:519.420000px;}
.x77_c00283{left:520.500000px;}
.xd0_c00283{left:521.580000px;}
.x7d_c00283{left:526.275000px;}
.x9b_c00283{left:529.080000px;}
.x36_c00283{left:530.580000px;}
.xfa_c00283{left:531.645000px;}
.x2a_c00283{left:533.580000px;}
.x67_c00283{left:535.920000px;}
.x41_c00283{left:538.080000px;}
.xf5_c00283{left:539.580000px;}
.x86_c00283{left:541.920000px;}
.xef_c00283{left:543.420000px;}
.xac_c00283{left:544.920000px;}
.x18_c00283{left:549.645000px;}
.xd1_c00283{left:552.420000px;}
.x7_c00283{left:553.920000px;}
.xb9_c00283{left:555.000000px;}
.x42_c00283{left:556.500000px;}
.xe8_c00283{left:558.420000px;}
.x5e_c00283{left:561.000000px;}
.xda_c00283{left:562.500000px;}
.x6d_c00283{left:565.080000px;}
.x7e_c00283{left:567.000000px;}
.x8d_c00283{left:570.420000px;}
.xf0_c00283{left:573.000000px;}
.x22_c00283{left:575.580000px;}
.xb5_c00283{left:582.420000px;}
.x4f_c00283{left:583.500000px;}
.x37_c00283{left:585.420000px;}
.xc7_c00283{left:586.500000px;}
.x10_c00283{left:589.500000px;}
.xdf_c00283{left:590.580000px;}
.x68_c00283{left:592.080000px;}
.x6e_c00283{left:595.500000px;}
.xa2_c00283{left:596.580000px;}
.xcd_c00283{left:600.000000px;}
.x43_c00283{left:601.500000px;}
.xf2_c00283{left:602.775000px;}
.x19_c00283{left:605.580000px;}
.x23_c00283{left:607.080000px;}
.xad_c00283{left:608.580000px;}
.xc8_c00283{left:610.920000px;}
.xc2_c00283{left:612.420000px;}
.x44_c00283{left:616.920000px;}
.xb6_c00283{left:619.500000px;}
.xa6_c00283{left:621.420000px;}
.x78_c00283{left:624.000000px;}
.x8_c00283{left:625.080000px;}
.x69_c00283{left:630.000000px;}
.x7f_c00283{left:631.920000px;}
.x87_c00283{left:633.645000px;}
.x96_c00283{left:637.500000px;}
.xae_c00283{left:639.000000px;}
.x50_c00283{left:640.500000px;}
.x38_c00283{left:643.500000px;}
.x1a_c00283{left:645.000000px;}
.x5f_c00283{left:646.500000px;}
.xc9_c00283{left:648.420000px;}
.x57_c00283{left:651.000000px;}
.xdb_c00283{left:654.000000px;}
.x2b_c00283{left:655.500000px;}
.x8e_c00283{left:657.000000px;}
.x45_c00283{left:658.500000px;}
.x6f_c00283{left:659.775000px;}
.xbd_c00283{left:662.580000px;}
.x60_c00283{left:665.580000px;}
.xd2_c00283{left:667.500000px;}
.x24_c00283{left:673.500000px;}
.x2c_c00283{left:674.580000px;}
.xba_c00283{left:677.580000px;}
.x46_c00283{left:681.000000px;}
.xaf_c00283{left:683.580000px;}
.x11_c00283{left:687.000000px;}
.xa7_c00283{left:688.500000px;}
.x9c_c00283{left:689.580000px;}
.x8f_c00283{left:691.920000px;}
.x80_c00283{left:694.275000px;}
.xce_c00283{left:697.500000px;}
.x9_c00283{left:699.000000px;}
.x70_c00283{left:700.080000px;}
.xe4_c00283{left:702.420000px;}
.x51_c00283{left:706.500000px;}
.xbe_c00283{left:709.500000px;}
.x39_c00283{left:711.000000px;}
.x47_c00283{left:712.500000px;}
.xe0_c00283{left:718.080000px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.ls0_c00283{letter-spacing:0.000000pt;}
.ws0_c00283{word-spacing:-5.470543pt;}
.ws1_c00283{word-spacing:0.000000pt;}
.fs7_c00283{font-size:3.040000pt;}
.fs5_c00283{font-size:16.640000pt;}
.fs0_c00283{font-size:18.133333pt;}
.fs4_c00283{font-size:22.666667pt;}
.fs1_c00283{font-size:25.706667pt;}
.fs3_c00283{font-size:28.746667pt;}
.fs2_c00283{font-size:31.733333pt;}
.fs6_c00283{font-size:34.773333pt;}
.y0_c00283{bottom:0.000000pt;}
.yc6_c00283{bottom:223.773333pt;}
.ycb_c00283{bottom:224.360000pt;}
.yc8_c00283{bottom:224.733333pt;}
.yc9_c00283{bottom:225.106667pt;}
.yca_c00283{bottom:226.066667pt;}
.yc7_c00283{bottom:227.040000pt;}
.yc0_c00283{bottom:241.106667pt;}
.yc3_c00283{bottom:241.493333pt;}
.yc5_c00283{bottom:242.440000pt;}
.yc1_c00283{bottom:242.640000pt;}
.yc4_c00283{bottom:243.400000pt;}
.yc2_c00283{bottom:244.360000pt;}
.yba_c00283{bottom:258.440000pt;}
.ybb_c00283{bottom:259.773333pt;}
.ybf_c00283{bottom:261.106667pt;}
.ybd_c00283{bottom:261.693333pt;}
.ybc_c00283{bottom:261.706667pt;}
.ybe_c00283{bottom:263.026667pt;}
.yb4_c00283{bottom:280.360000pt;}
.yb7_c00283{bottom:280.733333pt;}
.yb9_c00283{bottom:281.306667pt;}
.yb6_c00283{bottom:281.693333pt;}
.yb5_c00283{bottom:282.640000pt;}
.yb8_c00283{bottom:283.226667pt;}
.yb0_c00283{bottom:298.066667pt;}
.yb1_c00283{bottom:299.026667pt;}
.yb3_c00283{bottom:299.400000pt;}
.yb2_c00283{bottom:300.933333pt;}
.yae_c00283{bottom:319.773333pt;}
.yaf_c00283{bottom:322.640000pt;}
.yad_c00283{bottom:348.360000pt;}
.ya8_c00283{bottom:363.026667pt;}
.yac_c00283{bottom:365.106667pt;}
.yab_c00283{bottom:365.893333pt;}
.ya9_c00283{bottom:366.640000pt;}
.yaa_c00283{bottom:367.026667pt;}
.ya5_c00283{bottom:382.440000pt;}
.ya4_c00283{bottom:384.360000pt;}
.ya7_c00283{bottom:384.560000pt;}
.ya6_c00283{bottom:385.306667pt;}
.ya1_c00283{bottom:399.773333pt;}
.y9f_c00283{bottom:400.733333pt;}
.ya2_c00283{bottom:401.306667pt;}
.ya0_c00283{bottom:401.693333pt;}
.ya3_c00283{bottom:401.893333pt;}
.y9b_c00283{bottom:419.026667pt;}
.y9d_c00283{bottom:419.226667pt;}
.y9e_c00283{bottom:419.973333pt;}
.y9c_c00283{bottom:420.360000pt;}
.y96_c00283{bottom:435.400000pt;}
.y9a_c00283{bottom:435.773333pt;}
.y99_c00283{bottom:436.560000pt;}
.y97_c00283{bottom:437.306667pt;}
.y98_c00283{bottom:437.693333pt;}
.y91_c00283{bottom:450.440000pt;}
.y92_c00283{bottom:453.106667pt;}
.y93_c00283{bottom:454.066667pt;}
.y95_c00283{bottom:454.640000pt;}
.y94_c00283{bottom:455.026667pt;}
.y8c_c00283{bottom:470.066667pt;}
.y8e_c00283{bottom:470.440000pt;}
.y8f_c00283{bottom:471.226667pt;}
.y8d_c00283{bottom:472.360000pt;}
.y90_c00283{bottom:473.306667pt;}
.y8b_c00283{bottom:487.026667pt;}
.y88_c00283{bottom:487.773333pt;}
.y8a_c00283{bottom:488.733333pt;}
.y89_c00283{bottom:489.306667pt;}
.y87_c00283{bottom:489.693333pt;}
.y86_c00283{bottom:503.773333pt;}
.y82_c00283{bottom:505.106667pt;}
.y84_c00283{bottom:505.893333pt;}
.y85_c00283{bottom:506.066667pt;}
.y83_c00283{bottom:506.640000pt;}
.y81_c00283{bottom:507.026667pt;}
.y7f_c00283{bottom:522.440000pt;}
.y7e_c00283{bottom:523.226667pt;}
.y80_c00283{bottom:523.773333pt;}
.y7d_c00283{bottom:524.360000pt;}
.y78_c00283{bottom:539.773333pt;}
.y7b_c00283{bottom:541.106667pt;}
.y7c_c00283{bottom:542.066667pt;}
.y79_c00283{bottom:542.640000pt;}
.y7a_c00283{bottom:543.026667pt;}
.y72_c00283{bottom:557.106667pt;}
.y76_c00283{bottom:558.440000pt;}
.y73_c00283{bottom:559.026667pt;}
.y77_c00283{bottom:559.226667pt;}
.y75_c00283{bottom:559.400000pt;}
.y74_c00283{bottom:560.360000pt;}
.y70_c00283{bottom:573.693333pt;}
.y6b_c00283{bottom:574.440000pt;}
.y6f_c00283{bottom:575.773333pt;}
.y6c_c00283{bottom:576.360000pt;}
.y71_c00283{bottom:576.560000pt;}
.y6d_c00283{bottom:577.306667pt;}
.y6e_c00283{bottom:577.693333pt;}
.y6a_c00283{bottom:593.106667pt;}
.y69_c00283{bottom:594.066667pt;}
.y67_c00283{bottom:594.640000pt;}
.y68_c00283{bottom:595.026667pt;}
.y66_c00283{bottom:609.693333pt;}
.y65_c00283{bottom:610.440000pt;}
.y64_c00283{bottom:611.400000pt;}
.y63_c00283{bottom:612.360000pt;}
.y5f_c00283{bottom:627.026667pt;}
.y5e_c00283{bottom:627.773333pt;}
.y60_c00283{bottom:627.973333pt;}
.y61_c00283{bottom:629.693333pt;}
.y62_c00283{bottom:630.640000pt;}
.y5b_c00283{bottom:644.360000pt;}
.y5d_c00283{bottom:645.106667pt;}
.y5a_c00283{bottom:647.026667pt;}
.y5c_c00283{bottom:647.226667pt;}
.y59_c00283{bottom:647.973333pt;}
.y58_c00283{bottom:663.773333pt;}
.y54_c00283{bottom:664.360000pt;}
.y56_c00283{bottom:664.560000pt;}
.y57_c00283{bottom:665.306667pt;}
.y55_c00283{bottom:665.693333pt;}
.y51_c00283{bottom:681.106667pt;}
.y4e_c00283{bottom:681.693333pt;}
.y53_c00283{bottom:681.893333pt;}
.y4f_c00283{bottom:682.640000pt;}
.y50_c00283{bottom:683.026667pt;}
.y52_c00283{bottom:683.973333pt;}
.y47_c00283{bottom:697.106667pt;}
.y4d_c00283{bottom:697.306667pt;}
.y48_c00283{bottom:697.693333pt;}
.y49_c00283{bottom:698.440000pt;}
.y4b_c00283{bottom:699.973333pt;}
.y4c_c00283{bottom:700.360000pt;}
.y4a_c00283{bottom:701.306667pt;}
.y44_c00283{bottom:715.773333pt;}
.y46_c00283{bottom:716.733333pt;}
.y45_c00283{bottom:717.693333pt;}
.y41_c00283{bottom:732.360000pt;}
.y40_c00283{bottom:733.106667pt;}
.y43_c00283{bottom:733.493333pt;}
.y3f_c00283{bottom:734.066667pt;}
.y42_c00283{bottom:735.026667pt;}
.y3e_c00283{bottom:749.693333pt;}
.y39_c00283{bottom:750.440000pt;}
.y3a_c00283{bottom:751.773333pt;}
.y38_c00283{bottom:752.360000pt;}
.y3d_c00283{bottom:752.733333pt;}
.y3c_c00283{bottom:753.306667pt;}
.y3b_c00283{bottom:753.693333pt;}
.y36_c00283{bottom:767.773333pt;}
.y34_c00283{bottom:767.973333pt;}
.y30_c00283{bottom:768.560000pt;}
.y32_c00283{bottom:768.733333pt;}
.y37_c00283{bottom:769.106667pt;}
.y31_c00283{bottom:769.693333pt;}
.y33_c00283{bottom:770.640000pt;}
.y35_c00283{bottom:771.026667pt;}
.y2c_c00283{bottom:786.440000pt;}
.y2a_c00283{bottom:787.026667pt;}
.y2e_c00283{bottom:787.226667pt;}
.y2b_c00283{bottom:787.973333pt;}
.y2d_c00283{bottom:788.360000pt;}
.y2f_c00283{bottom:789.306667pt;}
.y26_c00283{bottom:803.400000pt;}
.y28_c00283{bottom:803.773333pt;}
.y29_c00283{bottom:804.560000pt;}
.y27_c00283{bottom:805.693333pt;}
.y22_c00283{bottom:819.026667pt;}
.y23_c00283{bottom:821.106667pt;}
.y25_c00283{bottom:821.893333pt;}
.y24_c00283{bottom:823.026667pt;}
.y1e_c00283{bottom:838.440000pt;}
.y20_c00283{bottom:839.226667pt;}
.y21_c00283{bottom:839.400000pt;}
.y1f_c00283{bottom:840.360000pt;}
.y19_c00283{bottom:855.773333pt;}
.y1d_c00283{bottom:856.733333pt;}
.y1a_c00283{bottom:857.693333pt;}
.y1b_c00283{bottom:858.640000pt;}
.y1c_c00283{bottom:859.026667pt;}
.y17_c00283{bottom:873.106667pt;}
.y14_c00283{bottom:875.026667pt;}
.y15_c00283{bottom:875.226667pt;}
.y16_c00283{bottom:875.973333pt;}
.y18_c00283{bottom:876.360000pt;}
.y11_c00283{bottom:888.360000pt;}
.y13_c00283{bottom:890.440000pt;}
.y12_c00283{bottom:892.360000pt;}
.yb_c00283{bottom:907.773333pt;}
.ye_c00283{bottom:908.733333pt;}
.y10_c00283{bottom:909.106667pt;}
.yc_c00283{bottom:909.693333pt;}
.yf_c00283{bottom:910.640000pt;}
.yd_c00283{bottom:911.026667pt;}
.y8_c00283{bottom:925.106667pt;}
.y7_c00283{bottom:926.066667pt;}
.y9_c00283{bottom:926.440000pt;}
.ya_c00283{bottom:928.360000pt;}
.y3_c00283{bottom:942.440000pt;}
.y4_c00283{bottom:943.773333pt;}
.y6_c00283{bottom:944.733333pt;}
.y5_c00283{bottom:945.693333pt;}
.y2_c00283{bottom:976.360000pt;}
.y1_c00283{bottom:979.600000pt;}
.h8_c00283{height:3.739141pt;}
.h6_c00283{height:20.466875pt;}
.h1_c00283{height:22.303646pt;}
.h5_c00283{height:27.879557pt;}
.h2_c00283{height:31.618698pt;}
.h4_c00283{height:35.357839pt;}
.h3_c00283{height:39.031380pt;}
.h7_c00283{height:42.770521pt;}
.h0_c00283{height:1186.666667pt;}
.w0_c00283{width:782.666667pt;}
.x0_c00283{left:0.000000pt;}
.x2_c00283{left:134.293333pt;}
.x2d_c00283{left:135.626667pt;}
.xfb_c00283{left:138.466667pt;}
.xf6_c00283{left:147.626667pt;}
.x97_c00283{left:150.666667pt;}
.x61_c00283{left:153.333333pt;}
.x1b_c00283{left:155.626667pt;}
.x81_c00283{left:160.373333pt;}
.x25_c00283{left:162.666667pt;}
.xe9_c00283{left:165.333333pt;}
.xfc_c00283{left:166.666667pt;}
.x48_c00283{left:168.960000pt;}
.x62_c00283{left:170.293333pt;}
.x2e_c00283{left:177.333333pt;}
.x79_c00283{left:179.626667pt;}
.x82_c00283{left:181.333333pt;}
.xea_c00283{left:182.666667pt;}
.x12_c00283{left:184.000000pt;}
.xa_c00283{left:184.960000pt;}
.xa8_c00283{left:186.666667pt;}
.x3a_c00283{left:188.960000pt;}
.x90_c00283{left:192.000000pt;}
.x71_c00283{left:193.133333pt;}
.x49_c00283{left:195.626667pt;}
.x26_c00283{left:197.333333pt;}
.x98_c00283{left:198.293333pt;}
.x9d_c00283{left:200.000000pt;}
.xd4_c00283{left:201.333333pt;}
.xdc_c00283{left:204.373333pt;}
.x88_c00283{left:205.333333pt;}
.xb0_c00283{left:208.373333pt;}
.x2f_c00283{left:212.000000pt;}
.xd5_c00283{left:213.333333pt;}
.x52_c00283{left:214.293333pt;}
.x3_c00283{left:215.626667pt;}
.xca_c00283{left:217.333333pt;}
.x3b_c00283{left:219.626667pt;}
.x83_c00283{left:221.333333pt;}
.xd3_c00283{left:222.666667pt;}
.x1c_c00283{left:223.800000pt;}
.xbb_c00283{left:225.333333pt;}
.x58_c00283{left:226.666667pt;}
.xb1_c00283{left:229.333333pt;}
.x72_c00283{left:232.373333pt;}
.xeb_c00283{left:234.666667pt;}
.x27_c00283{left:235.626667pt;}
.x3c_c00283{left:237.706667pt;}
.xf8_c00283{left:238.666667pt;}
.x13_c00283{left:240.960000pt;}
.xb_c00283{left:242.293333pt;}
.x53_c00283{left:248.960000pt;}
.xfd_c00283{left:250.666667pt;}
.xa3_c00283{left:251.800000pt;}
.x91_c00283{left:252.960000pt;}
.xe5_c00283{left:255.240000pt;}
.x73_c00283{left:256.373333pt;}
.x7a_c00283{left:258.466667pt;}
.x59_c00283{left:260.373333pt;}
.x1d_c00283{left:261.333333pt;}
.x6a_c00283{left:262.466667pt;}
.x4a_c00283{left:266.666667pt;}
.x63_c00283{left:270.666667pt;}
.x3d_c00283{left:272.000000pt;}
.x89_c00283{left:273.333333pt;}
.xbf_c00283{left:274.293333pt;}
.xd6_c00283{left:276.373333pt;}
.xb7_c00283{left:277.333333pt;}
.xb2_c00283{left:278.666667pt;}
.x74_c00283{left:280.000000pt;}
.x30_c00283{left:281.706667pt;}
.xe1_c00283{left:282.666667pt;}
.x9e_c00283{left:284.960000pt;}
.xa9_c00283{left:288.000000pt;}
.x54_c00283{left:288.960000pt;}
.x4_c00283{left:290.666667pt;}
.xc0_c00283{left:292.000000pt;}
.x28_c00283{left:293.333333pt;}
.xc_c00283{left:296.960000pt;}
.x7b_c00283{left:300.000000pt;}
.x4b_c00283{left:301.333333pt;}
.x3e_c00283{left:304.000000pt;}
.x1e_c00283{left:305.333333pt;}
.xf1_c00283{left:306.666667pt;}
.xd7_c00283{left:307.626667pt;}
.x92_c00283{left:313.333333pt;}
.x5a_c00283{left:315.040000pt;}
.x6b_c00283{left:316.000000pt;}
.x64_c00283{left:316.960000pt;}
.x31_c00283{left:318.666667pt;}
.xa4_c00283{left:319.626667pt;}
.x3f_c00283{left:322.666667pt;}
.x14_c00283{left:323.626667pt;}
.xb3_c00283{left:326.293333pt;}
.x4c_c00283{left:327.626667pt;}
.x9f_c00283{left:328.960000pt;}
.xec_c00283{left:330.666667pt;}
.xc3_c00283{left:332.000000pt;}
.xf9_c00283{left:333.333333pt;}
.xf3_c00283{left:334.293333pt;}
.x93_c00283{left:336.960000pt;}
.xe2_c00283{left:340.000000pt;}
.x15_c00283{left:341.333333pt;}
.xcb_c00283{left:342.666667pt;}
.x5b_c00283{left:344.373333pt;}
.xcf_c00283{left:345.333333pt;}
.xa0_c00283{left:346.666667pt;}
.x8a_c00283{left:348.960000pt;}
.x84_c00283{left:350.666667pt;}
.x75_c00283{left:352.373333pt;}
.x99_c00283{left:353.333333pt;}
.x5_c00283{left:354.666667pt;}
.xd_c00283{left:355.626667pt;}
.xc4_c00283{left:358.666667pt;}
.xcc_c00283{left:360.000000pt;}
.x1_c00283{left:361.333333pt;}
.x65_c00283{left:362.293333pt;}
.x55_c00283{left:364.373333pt;}
.x32_c00283{left:365.333333pt;}
.xdd_c00283{left:366.293333pt;}
.x4d_c00283{left:368.960000pt;}
.x1f_c00283{left:371.040000pt;}
.xa1_c00283{left:372.373333pt;}
.xaa_c00283{left:373.333333pt;}
.x8b_c00283{left:374.666667pt;}
.xc1_c00283{left:376.373333pt;}
.x29_c00283{left:377.706667pt;}
.x40_c00283{left:379.040000pt;}
.x5c_c00283{left:380.000000pt;}
.x7c_c00283{left:382.293333pt;}
.xe_c00283{left:383.626667pt;}
.x76_c00283{left:384.960000pt;}
.x33_c00283{left:388.373333pt;}
.x8c_c00283{left:389.333333pt;}
.xbc_c00283{left:392.000000pt;}
.xb4_c00283{left:392.960000pt;}
.xe6_c00283{left:394.666667pt;}
.x94_c00283{left:396.000000pt;}
.xc5_c00283{left:397.333333pt;}
.xed_c00283{left:399.626667pt;}
.x20_c00283{left:402.293333pt;}
.xb8_c00283{left:404.000000pt;}
.x85_c00283{left:405.706667pt;}
.xa5_c00283{left:407.040000pt;}
.x16_c00283{left:408.000000pt;}
.x56_c00283{left:409.333333pt;}
.xf4_c00283{left:410.293333pt;}
.x34_c00283{left:413.706667pt;}
.xc6_c00283{left:415.040000pt;}
.xee_c00283{left:416.000000pt;}
.x66_c00283{left:418.293333pt;}
.x6_c00283{left:423.240000pt;}
.xe3_c00283{left:431.040000pt;}
.xde_c00283{left:432.000000pt;}
.x17_c00283{left:432.960000pt;}
.x4e_c00283{left:435.626667pt;}
.x6c_c00283{left:437.333333pt;}
.xd8_c00283{left:439.626667pt;}
.xf_c00283{left:441.333333pt;}
.x9a_c00283{left:444.373333pt;}
.xf7_c00283{left:447.626667pt;}
.x95_c00283{left:450.666667pt;}
.x5d_c00283{left:453.333333pt;}
.x35_c00283{left:454.293333pt;}
.xfe_c00283{left:456.373333pt;}
.xe7_c00283{left:457.333333pt;}
.xd9_c00283{left:458.293333pt;}
.xab_c00283{left:460.373333pt;}
.x21_c00283{left:461.706667pt;}
.x77_c00283{left:462.666667pt;}
.xd0_c00283{left:463.626667pt;}
.x7d_c00283{left:467.800000pt;}
.x9b_c00283{left:470.293333pt;}
.x36_c00283{left:471.626667pt;}
.xfa_c00283{left:472.573333pt;}
.x2a_c00283{left:474.293333pt;}
.x67_c00283{left:476.373333pt;}
.x41_c00283{left:478.293333pt;}
.xf5_c00283{left:479.626667pt;}
.x86_c00283{left:481.706667pt;}
.xef_c00283{left:483.040000pt;}
.xac_c00283{left:484.373333pt;}
.x18_c00283{left:488.573333pt;}
.xd1_c00283{left:491.040000pt;}
.x7_c00283{left:492.373333pt;}
.xb9_c00283{left:493.333333pt;}
.x42_c00283{left:494.666667pt;}
.xe8_c00283{left:496.373333pt;}
.x5e_c00283{left:498.666667pt;}
.xda_c00283{left:500.000000pt;}
.x6d_c00283{left:502.293333pt;}
.x7e_c00283{left:504.000000pt;}
.x8d_c00283{left:507.040000pt;}
.xf0_c00283{left:509.333333pt;}
.x22_c00283{left:511.626667pt;}
.xb5_c00283{left:517.706667pt;}
.x4f_c00283{left:518.666667pt;}
.x37_c00283{left:520.373333pt;}
.xc7_c00283{left:521.333333pt;}
.x10_c00283{left:524.000000pt;}
.xdf_c00283{left:524.960000pt;}
.x68_c00283{left:526.293333pt;}
.x6e_c00283{left:529.333333pt;}
.xa2_c00283{left:530.293333pt;}
.xcd_c00283{left:533.333333pt;}
.x43_c00283{left:534.666667pt;}
.xf2_c00283{left:535.800000pt;}
.x19_c00283{left:538.293333pt;}
.x23_c00283{left:539.626667pt;}
.xad_c00283{left:540.960000pt;}
.xc8_c00283{left:543.040000pt;}
.xc2_c00283{left:544.373333pt;}
.x44_c00283{left:548.373333pt;}
.xb6_c00283{left:550.666667pt;}
.xa6_c00283{left:552.373333pt;}
.x78_c00283{left:554.666667pt;}
.x8_c00283{left:555.626667pt;}
.x69_c00283{left:560.000000pt;}
.x7f_c00283{left:561.706667pt;}
.x87_c00283{left:563.240000pt;}
.x96_c00283{left:566.666667pt;}
.xae_c00283{left:568.000000pt;}
.x50_c00283{left:569.333333pt;}
.x38_c00283{left:572.000000pt;}
.x1a_c00283{left:573.333333pt;}
.x5f_c00283{left:574.666667pt;}
.xc9_c00283{left:576.373333pt;}
.x57_c00283{left:578.666667pt;}
.xdb_c00283{left:581.333333pt;}
.x2b_c00283{left:582.666667pt;}
.x8e_c00283{left:584.000000pt;}
.x45_c00283{left:585.333333pt;}
.x6f_c00283{left:586.466667pt;}
.xbd_c00283{left:588.960000pt;}
.x60_c00283{left:591.626667pt;}
.xd2_c00283{left:593.333333pt;}
.x24_c00283{left:598.666667pt;}
.x2c_c00283{left:599.626667pt;}
.xba_c00283{left:602.293333pt;}
.x46_c00283{left:605.333333pt;}
.xaf_c00283{left:607.626667pt;}
.x11_c00283{left:610.666667pt;}
.xa7_c00283{left:612.000000pt;}
.x9c_c00283{left:612.960000pt;}
.x8f_c00283{left:615.040000pt;}
.x80_c00283{left:617.133333pt;}
.xce_c00283{left:620.000000pt;}
.x9_c00283{left:621.333333pt;}
.x70_c00283{left:622.293333pt;}
.xe4_c00283{left:624.373333pt;}
.x51_c00283{left:628.000000pt;}
.xbe_c00283{left:630.666667pt;}
.x39_c00283{left:632.000000pt;}
.x47_c00283{left:633.333333pt;}
.xe0_c00283{left:638.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_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_12f485764c696d35c4f237c1.woff2')format("woff");}.ff1_c00284{font-family:ff1_c00284;line-height:1.688965;font-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_c00284{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.m7f_c00284{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m6_c00284{transform:matrix(0.338574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338574,0.000000,0.000000,0.250000,0,0);}
.m43_c00284{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m82_c00284{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m10c_c00284{transform:matrix(0.363173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363173,0.000000,0.000000,0.250000,0,0);}
.m87_c00284{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.md_c00284{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m85_c00284{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.md1_c00284{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m2f_c00284{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m4d_c00284{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m117_c00284{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.m11e_c00284{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m89_c00284{transform:matrix(0.376891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376891,0.000000,0.000000,0.250000,0,0);}
.m52_c00284{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m100_c00284{transform:matrix(0.380798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380798,0.000000,0.000000,0.250000,0,0);}
.m63_c00284{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m6e_c00284{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m4c_c00284{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mab_c00284{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.ma0_c00284{transform:matrix(0.390560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390560,0.000000,0.000000,0.250000,0,0);}
.m5b_c00284{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.mb7_c00284{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m23_c00284{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m5d_c00284{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m72_c00284{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m86_c00284{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m9_c00284{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m108_c00284{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m124_c00284{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m10a_c00284{transform:matrix(0.400934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400934,0.000000,0.000000,0.250000,0,0);}
.ma_c00284{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m78_c00284{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m10e_c00284{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.me_c00284{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m13_c00284{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.med_c00284{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.m71_c00284{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m26_c00284{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m93_c00284{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m4f_c00284{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m11a_c00284{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m8c_c00284{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m1d_c00284{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m113_c00284{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m19_c00284{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m50_c00284{transform:matrix(0.416976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416976,0.000000,0.000000,0.250000,0,0);}
.m116_c00284{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m10d_c00284{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m118_c00284{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m106_c00284{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.me2_c00284{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m24_c00284{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.me3_c00284{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.m5f_c00284{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m76_c00284{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.md5_c00284{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m80_c00284{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.m7c_c00284{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.maa_c00284{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m33_c00284{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.mf5_c00284{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.ma9_c00284{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m1f_c00284{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m109_c00284{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m75_c00284{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m20_c00284{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mcf_c00284{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.mc5_c00284{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mfe_c00284{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.md2_c00284{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m74_c00284{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.mea_c00284{transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);}
.md7_c00284{transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);}
.m9d_c00284{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m98_c00284{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m45_c00284{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m8d_c00284{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m4b_c00284{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m2_c00284{transform:matrix(0.446324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446324,0.000000,0.000000,0.250000,0,0);}
.mb0_c00284{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.meb_c00284{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m14_c00284{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m22_c00284{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.me1_c00284{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.ma6_c00284{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.ma7_c00284{transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);}
.m8_c00284{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m4a_c00284{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m102_c00284{transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);}
.m92_c00284{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.m11f_c00284{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.mf0_c00284{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m68_c00284{transform:matrix(0.460581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460581,0.000000,0.000000,0.250000,0,0);}
.mee_c00284{transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);}
.mf2_c00284{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m11b_c00284{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.mc0_c00284{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.mc6_c00284{transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);}
.me9_c00284{transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);}
.mc3_c00284{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m121_c00284{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.m31_c00284{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m110_c00284{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.m6c_c00284{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.mbb_c00284{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mfd_c00284{transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);}
.md8_c00284{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m67_c00284{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.mb4_c00284{transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);}
.m84_c00284{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mf_c00284{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.mfb_c00284{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.me0_c00284{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m10_c00284{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m18_c00284{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.mf8_c00284{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m6b_c00284{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m57_c00284{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mf6_c00284{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mdc_c00284{transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);}
.m3e_c00284{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mac_c00284{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m1_c00284{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mc8_c00284{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m7d_c00284{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.ma3_c00284{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m56_c00284{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m8b_c00284{transform:matrix(0.494898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494898,0.000000,0.000000,0.250000,0,0);}
.m64_c00284{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m1c_c00284{transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);}
.mdf_c00284{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m3a_c00284{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);}
.m7a_c00284{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m120_c00284{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m8e_c00284{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m10f_c00284{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m58_c00284{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m32_c00284{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m104_c00284{transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);}
.ma1_c00284{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m8a_c00284{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mbe_c00284{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m81_c00284{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m53_c00284{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m88_c00284{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m35_c00284{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m3c_c00284{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m7e_c00284{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m65_c00284{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.me4_c00284{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);}
.mcd_c00284{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m54_c00284{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m5c_c00284{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m66_c00284{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m9f_c00284{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.me7_c00284{transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);}
.mf9_c00284{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);}
.mb_c00284{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m37_c00284{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mbd_c00284{transform:matrix(0.532353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532353,0.000000,0.000000,0.250000,0,0);}
.m36_c00284{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m9a_c00284{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m2b_c00284{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m90_c00284{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m101_c00284{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m7_c00284{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m38_c00284{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mc7_c00284{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m1e_c00284{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.maf_c00284{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mb5_c00284{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m1a_c00284{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mc9_c00284{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);}
.m2c_c00284{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.md0_c00284{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m114_c00284{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m94_c00284{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m3_c00284{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m12_c00284{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m42_c00284{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m2d_c00284{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m30_c00284{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.mb1_c00284{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m4e_c00284{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m5e_c00284{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m95_c00284{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m48_c00284{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m11_c00284{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m7b_c00284{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m15_c00284{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m73_c00284{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m16_c00284{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mb6_c00284{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m11c_c00284{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.ma2_c00284{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.mb3_c00284{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m111_c00284{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mc4_c00284{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m9c_c00284{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mc_c00284{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m8f_c00284{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mda_c00284{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m3f_c00284{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m77_c00284{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m70_c00284{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.mdb_c00284{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m96_c00284{transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);}
.m55_c00284{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m105_c00284{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.mec_c00284{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.md4_c00284{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m91_c00284{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m79_c00284{transform:matrix(0.587647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587647,0.000000,0.000000,0.250000,0,0);}
.m99_c00284{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.m27_c00284{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m28_c00284{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m17_c00284{transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);}
.m97_c00284{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.mf3_c00284{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.mfc_c00284{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m9b_c00284{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m2e_c00284{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);}
.m119_c00284{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m6d_c00284{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m10b_c00284{transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);}
.m5a_c00284{transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);}
.m47_c00284{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m3b_c00284{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mce_c00284{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.mf7_c00284{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m62_c00284{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.mbf_c00284{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);}
.mcc_c00284{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.md3_c00284{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m34_c00284{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m6a_c00284{transform:matrix(0.638485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638485,0.000000,0.000000,0.250000,0,0);}
.mbc_c00284{transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);}
.me6_c00284{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m107_c00284{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m49_c00284{transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);}
.mc2_c00284{transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);}
.m40_c00284{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m1b_c00284{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mde_c00284{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.md9_c00284{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.mcb_c00284{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.mba_c00284{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mef_c00284{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.mdd_c00284{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m41_c00284{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.mb9_c00284{transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);}
.mae_c00284{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.me8_c00284{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m0_c00284{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m44_c00284{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mca_c00284{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);}
.mf4_c00284{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m112_c00284{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m123_c00284{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m2a_c00284{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m60_c00284{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m83_c00284{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m4_c00284{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m39_c00284{transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);}
.m29_c00284{transform:matrix(0.740588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.740588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.740588,0.000000,0.000000,0.250000,0,0);}
.m61_c00284{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m69_c00284{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);}
.ma4_c00284{transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);}
.m9e_c00284{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m6f_c00284{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m51_c00284{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mb2_c00284{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.ma5_c00284{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m46_c00284{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m115_c00284{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.ma8_c00284{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m11d_c00284{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m59_c00284{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m122_c00284{transform:matrix(0.842949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.842949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.842949,0.000000,0.000000,0.250000,0,0);}
.md6_c00284{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m25_c00284{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.mad_c00284{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.mf1_c00284{transform:matrix(0.922907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.922907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.922907,0.000000,0.000000,0.250000,0,0);}
.me5_c00284{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.mff_c00284{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.mb8_c00284{transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);}
.mc1_c00284{transform:matrix(1.066079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.066079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.066079,0.000000,0.000000,0.250000,0,0);}
.mfa_c00284{transform:matrix(1.565657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.565657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.565657,0.000000,0.000000,0.250000,0,0);}
.m103_c00284{transform:matrix(3.134956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.134956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.134956,0.000000,0.000000,0.250000,0,0);}
.m5_c00284{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m3d_c00284{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-4.728548px;}
.ws1_c00284{word-spacing:0.000000px;}
.fc0_c00284{color:transparent;}
.fs3_c00284{font-size:3.420000px;}
.fsa_c00284{font-size:6.780000px;}
.fs9_c00284{font-size:11.880000px;}
.fs8_c00284{font-size:13.620000px;}
.fs0_c00284{font-size:18.720000px;}
.fs2_c00284{font-size:20.400000px;}
.fs7_c00284{font-size:25.500000px;}
.fs1_c00284{font-size:28.920000px;}
.fs6_c00284{font-size:32.340000px;}
.fs5_c00284{font-size:35.700000px;}
.fs4_c00284{font-size:39.120000px;}
.y0_c00284{bottom:0.000000px;}
.y3_c00284{bottom:224.550000px;}
.yd6_c00284{bottom:250.905000px;}
.yd5_c00284{bottom:251.745000px;}
.yd2_c00284{bottom:252.825000px;}
.yd1_c00284{bottom:253.245000px;}
.yd7_c00284{bottom:253.470000px;}
.yd4_c00284{bottom:253.905000px;}
.yd3_c00284{bottom:254.130000px;}
.yd0_c00284{bottom:271.245000px;}
.ycb_c00284{bottom:272.745000px;}
.ycd_c00284{bottom:273.405000px;}
.ycf_c00284{bottom:273.630000px;}
.yce_c00284{bottom:274.470000px;}
.ycc_c00284{bottom:274.905000px;}
.yc8_c00284{bottom:292.245000px;}
.yca_c00284{bottom:293.130000px;}
.yc9_c00284{bottom:294.405000px;}
.yc7_c00284{bottom:311.745000px;}
.yc5_c00284{bottom:313.905000px;}
.yc6_c00284{bottom:314.130000px;}
.yc3_c00284{bottom:330.405000px;}
.yc0_c00284{bottom:331.245000px;}
.yc4_c00284{bottom:332.325000px;}
.yc2_c00284{bottom:333.405000px;}
.yc1_c00284{bottom:334.920000px;}
.ybf_c00284{bottom:357.825000px;}
.ybd_c00284{bottom:358.905000px;}
.ybe_c00284{bottom:360.195000px;}
.ybc_c00284{bottom:361.050000px;}
.yb7_c00284{bottom:372.825000px;}
.yb4_c00284{bottom:373.050000px;}
.ybb_c00284{bottom:373.470000px;}
.yb6_c00284{bottom:373.905000px;}
.yb5_c00284{bottom:374.130000px;}
.yb3_c00284{bottom:374.970000px;}
.yb8_c00284{bottom:375.195000px;}
.yba_c00284{bottom:375.855000px;}
.yb9_c00284{bottom:376.050000px;}
.yad_c00284{bottom:386.970000px;}
.yaf_c00284{bottom:387.825000px;}
.yb0_c00284{bottom:388.905000px;}
.yb1_c00284{bottom:389.970000px;}
.yae_c00284{bottom:390.195000px;}
.yab_c00284{bottom:390.405000px;}
.yb2_c00284{bottom:390.855000px;}
.yac_c00284{bottom:391.050000px;}
.ya9_c00284{bottom:401.970000px;}
.ya6_c00284{bottom:402.825000px;}
.ya2_c00284{bottom:403.050000px;}
.yaa_c00284{bottom:403.275000px;}
.ya3_c00284{bottom:403.905000px;}
.ya5_c00284{bottom:404.130000px;}
.ya4_c00284{bottom:404.970000px;}
.ya7_c00284{bottom:405.195000px;}
.ya8_c00284{bottom:406.050000px;}
.ya1_c00284{bottom:418.905000px;}
.ya0_c00284{bottom:430.470000px;}
.y9e_c00284{bottom:432.405000px;}
.y9d_c00284{bottom:432.825000px;}
.y9f_c00284{bottom:433.470000px;}
.y9b_c00284{bottom:433.695000px;}
.y9a_c00284{bottom:433.905000px;}
.y9c_c00284{bottom:434.550000px;}
.y99_c00284{bottom:446.325000px;}
.y98_c00284{bottom:447.405000px;}
.y91_c00284{bottom:448.050000px;}
.y96_c00284{bottom:448.470000px;}
.y94_c00284{bottom:448.695000px;}
.y93_c00284{bottom:449.130000px;}
.y97_c00284{bottom:449.550000px;}
.y92_c00284{bottom:449.970000px;}
.y95_c00284{bottom:451.050000px;}
.y90_c00284{bottom:462.405000px;}
.y8f_c00284{bottom:463.905000px;}
.y8b_c00284{bottom:476.550000px;}
.y8a_c00284{bottom:477.405000px;}
.y8c_c00284{bottom:477.630000px;}
.y8e_c00284{bottom:478.470000px;}
.y89_c00284{bottom:478.695000px;}
.y8d_c00284{bottom:479.550000px;}
.y86_c00284{bottom:491.325000px;}
.y87_c00284{bottom:492.405000px;}
.y85_c00284{bottom:493.470000px;}
.y84_c00284{bottom:493.695000px;}
.y88_c00284{bottom:494.550000px;}
.y83_c00284{bottom:505.050000px;}
.y7f_c00284{bottom:505.470000px;}
.y81_c00284{bottom:505.905000px;}
.y82_c00284{bottom:506.970000px;}
.y7d_c00284{bottom:507.405000px;}
.y80_c00284{bottom:507.630000px;}
.y7e_c00284{bottom:508.470000px;}
.y7c_c00284{bottom:509.550000px;}
.y7a_c00284{bottom:520.905000px;}
.y76_c00284{bottom:521.325000px;}
.y7b_c00284{bottom:522.195000px;}
.y77_c00284{bottom:522.405000px;}
.y75_c00284{bottom:522.630000px;}
.y78_c00284{bottom:523.050000px;}
.y79_c00284{bottom:523.470000px;}
.y73_c00284{bottom:548.745000px;}
.y74_c00284{bottom:549.630000px;}
.y72_c00284{bottom:550.905000px;}
.y71_c00284{bottom:570.405000px;}
.y6d_c00284{bottom:587.745000px;}
.y6f_c00284{bottom:588.630000px;}
.y70_c00284{bottom:588.825000px;}
.y6c_c00284{bottom:589.905000px;}
.y6e_c00284{bottom:590.970000px;}
.y68_c00284{bottom:606.405000px;}
.y67_c00284{bottom:607.245000px;}
.y6a_c00284{bottom:609.405000px;}
.y69_c00284{bottom:609.630000px;}
.y6b_c00284{bottom:610.470000px;}
.y66_c00284{bottom:626.745000px;}
.y64_c00284{bottom:628.905000px;}
.y65_c00284{bottom:629.130000px;}
.y63_c00284{bottom:645.405000px;}
.y62_c00284{bottom:647.745000px;}
.y61_c00284{bottom:649.905000px;}
.y60_c00284{bottom:667.245000px;}
.y5f_c00284{bottom:668.130000px;}
.y5e_c00284{bottom:669.405000px;}
.y5c_c00284{bottom:686.745000px;}
.y5d_c00284{bottom:688.470000px;}
.y5a_c00284{bottom:688.905000px;}
.y5b_c00284{bottom:689.970000px;}
.y58_c00284{bottom:705.180000px;}
.y56_c00284{bottom:706.245000px;}
.y57_c00284{bottom:707.130000px;}
.y59_c00284{bottom:707.325000px;}
.y55_c00284{bottom:708.405000px;}
.y54_c00284{bottom:725.325000px;}
.y52_c00284{bottom:725.745000px;}
.y51_c00284{bottom:726.825000px;}
.y50_c00284{bottom:727.905000px;}
.y53_c00284{bottom:728.970000px;}
.y4e_c00284{bottom:745.245000px;}
.y4f_c00284{bottom:746.325000px;}
.y4d_c00284{bottom:747.405000px;}
.y4b_c00284{bottom:763.905000px;}
.y4c_c00284{bottom:764.745000px;}
.y47_c00284{bottom:765.405000px;}
.y45_c00284{bottom:766.245000px;}
.y4a_c00284{bottom:767.130000px;}
.y46_c00284{bottom:767.325000px;}
.y49_c00284{bottom:768.405000px;}
.y48_c00284{bottom:769.470000px;}
.y42_c00284{bottom:784.470000px;}
.y43_c00284{bottom:785.325000px;}
.y41_c00284{bottom:785.745000px;}
.y44_c00284{bottom:786.630000px;}
.y40_c00284{bottom:787.905000px;}
.y3c_c00284{bottom:805.245000px;}
.y3f_c00284{bottom:806.130000px;}
.y3e_c00284{bottom:806.325000px;}
.y3d_c00284{bottom:807.405000px;}
.y39_c00284{bottom:822.405000px;}
.y37_c00284{bottom:824.745000px;}
.y3b_c00284{bottom:825.630000px;}
.y3a_c00284{bottom:826.470000px;}
.y38_c00284{bottom:826.905000px;}
.y35_c00284{bottom:844.245000px;}
.y36_c00284{bottom:845.550000px;}
.y33_c00284{bottom:846.405000px;}
.y34_c00284{bottom:846.630000px;}
.y31_c00284{bottom:862.905000px;}
.y2e_c00284{bottom:863.745000px;}
.y2f_c00284{bottom:864.630000px;}
.y2d_c00284{bottom:865.905000px;}
.y30_c00284{bottom:866.130000px;}
.y32_c00284{bottom:866.970000px;}
.y2c_c00284{bottom:883.245000px;}
.y2b_c00284{bottom:884.745000px;}
.y2a_c00284{bottom:885.405000px;}
.y29_c00284{bottom:885.630000px;}
.y25_c00284{bottom:902.745000px;}
.y28_c00284{bottom:903.825000px;}
.y26_c00284{bottom:904.245000px;}
.y27_c00284{bottom:904.905000px;}
.y22_c00284{bottom:905.130000px;}
.y24_c00284{bottom:905.970000px;}
.y23_c00284{bottom:906.405000px;}
.y21_c00284{bottom:922.245000px;}
.y1d_c00284{bottom:924.405000px;}
.y1f_c00284{bottom:924.630000px;}
.y20_c00284{bottom:925.470000px;}
.y1e_c00284{bottom:925.920000px;}
.y1c_c00284{bottom:944.130000px;}
.y1a_c00284{bottom:962.745000px;}
.y19_c00284{bottom:964.905000px;}
.y1b_c00284{bottom:965.970000px;}
.y18_c00284{bottom:982.245000px;}
.y16_c00284{bottom:984.405000px;}
.y17_c00284{bottom:985.470000px;}
.y11_c00284{bottom:1001.745000px;}
.y15_c00284{bottom:1001.970000px;}
.y13_c00284{bottom:1002.180000px;}
.y14_c00284{bottom:1002.825000px;}
.y12_c00284{bottom:1003.905000px;}
.yd_c00284{bottom:1021.245000px;}
.ye_c00284{bottom:1022.325000px;}
.yf_c00284{bottom:1023.405000px;}
.y10_c00284{bottom:1024.470000px;}
.yb_c00284{bottom:1040.745000px;}
.yc_c00284{bottom:1042.245000px;}
.y9_c00284{bottom:1042.905000px;}
.ya_c00284{bottom:1044.420000px;}
.y7_c00284{bottom:1060.680000px;}
.y8_c00284{bottom:1061.745000px;}
.y5_c00284{bottom:1062.630000px;}
.y4_c00284{bottom:1063.905000px;}
.y6_c00284{bottom:1063.920000px;}
.y2_c00284{bottom:1099.905000px;}
.y1_c00284{bottom:1101.630000px;}
.h4_c00284{height:4.206533px;}
.hb_c00284{height:8.339268px;}
.ha_c00284{height:14.612168px;}
.h9_c00284{height:16.752334px;}
.h1_c00284{height:23.025234px;}
.h3_c00284{height:25.091602px;}
.h8_c00284{height:31.364502px;}
.h2_c00284{height:35.571035px;}
.h7_c00284{height:39.777568px;}
.h6_c00284{height:43.910303px;}
.h5_c00284{height:48.116836px;}
.h0_c00284{height:1335.000000px;}
.w0_c00284{width:880.500000px;}
.x0_c00284{left:0.000000px;}
.x66_c00284{left:151.920000px;}
.x16_c00284{left:153.000000px;}
.xd4_c00284{left:163.500000px;}
.xd8_c00284{left:165.000000px;}
.xb4_c00284{left:166.500000px;}
.x4_c00284{left:169.500000px;}
.x9b_c00284{left:172.500000px;}
.xb0_c00284{left:178.500000px;}
.x53_c00284{left:180.000000px;}
.x89_c00284{left:183.000000px;}
.x2b_c00284{left:185.580000px;}
.xbe_c00284{left:187.920000px;}
.xf2_c00284{left:189.420000px;}
.x101_c00284{left:190.500000px;}
.x9c_c00284{left:191.580000px;}
.xab_c00284{left:193.920000px;}
.x4b_c00284{left:195.420000px;}
.x81_c00284{left:196.920000px;}
.xc3_c00284{left:198.420000px;}
.xb5_c00284{left:201.000000px;}
.x5d_c00284{left:202.500000px;}
.x54_c00284{left:208.080000px;}
.xcb_c00284{left:211.080000px;}
.xe4_c00284{left:213.000000px;}
.x93_c00284{left:214.080000px;}
.x17_c00284{left:216.000000px;}
.x82_c00284{left:218.355000px;}
.x4c_c00284{left:220.500000px;}
.xd5_c00284{left:223.080000px;}
.xf7_c00284{left:224.580000px;}
.x78_c00284{left:226.080000px;}
.x2c_c00284{left:228.000000px;}
.x21_c00284{left:229.500000px;}
.x94_c00284{left:232.500000px;}
.x5e_c00284{left:234.000000px;}
.xa8_c00284{left:238.500000px;}
.x102_c00284{left:240.420000px;}
.xb1_c00284{left:241.500000px;}
.xef_c00284{left:242.580000px;}
.x9d_c00284{left:246.420000px;}
.x4d_c00284{left:247.920000px;}
.xc7_c00284{left:249.420000px;}
.x40_c00284{left:250.500000px;}
.x6e_c00284{left:251.580000px;}
.x5_c00284{left:255.000000px;}
.xcc_c00284{left:257.580000px;}
.xd_c00284{left:261.000000px;}
.x8a_c00284{left:262.920000px;}
.x83_c00284{left:264.000000px;}
.xc4_c00284{left:265.500000px;}
.xd6_c00284{left:267.000000px;}
.x41_c00284{left:269.580000px;}
.xf0_c00284{left:271.500000px;}
.xde_c00284{left:272.580000px;}
.x9e_c00284{left:274.500000px;}
.xb6_c00284{left:280.080000px;}
.xe_c00284{left:282.000000px;}
.xa3_c00284{left:283.080000px;}
.x2d_c00284{left:286.500000px;}
.x18_c00284{left:287.580000px;}
.xbf_c00284{left:289.080000px;}
.x37_c00284{left:291.000000px;}
.xe5_c00284{left:294.000000px;}
.xac_c00284{left:295.500000px;}
.xb2_c00284{left:296.580000px;}
.x6f_c00284{left:301.080000px;}
.x5f_c00284{left:303.000000px;}
.xc8_c00284{left:304.500000px;}
.xdf_c00284{left:306.000000px;}
.x8b_c00284{left:307.275000px;}
.x55_c00284{left:309.000000px;}
.x6_c00284{left:310.500000px;}
.xf_c00284{left:312.000000px;}
.x38_c00284{left:316.080000px;}
.x19_c00284{left:318.000000px;}
.x67_c00284{left:321.000000px;}
.xd7_c00284{left:322.500000px;}
.xcd_c00284{left:323.580000px;}
.x2e_c00284{left:325.500000px;}
.x22_c00284{left:327.000000px;}
.xb3_c00284{left:328.920000px;}
.x79_c00284{left:330.420000px;}
.xe0_c00284{left:331.500000px;}
.x70_c00284{left:333.000000px;}
.x103_c00284{left:334.080000px;}
.x7_c00284{left:335.580000px;}
.x95_c00284{left:337.920000px;}
.xc5_c00284{left:340.500000px;}
.x42_c00284{left:342.000000px;}
.x8c_c00284{left:343.500000px;}
.x2f_c00284{left:344.580000px;}
.xff_c00284{left:348.420000px;}
.x71_c00284{left:350.580000px;}
.x39_c00284{left:352.080000px;}
.xe6_c00284{left:354.420000px;}
.xbb_c00284{left:355.500000px;}
.x7a_c00284{left:358.080000px;}
.x68_c00284{left:360.000000px;}
.x43_c00284{left:363.000000px;}
.x8_c00284{left:364.080000px;}
.x84_c00284{left:365.580000px;}
.xf8_c00284{left:367.920000px;}
.xe1_c00284{left:370.500000px;}
.xc0_c00284{left:371.580000px;}
.x72_c00284{left:373.080000px;}
.xa9_c00284{left:375.000000px;}
.xa4_c00284{left:378.420000px;}
.x60_c00284{left:379.500000px;}
.x1a_c00284{left:382.080000px;}
.x85_c00284{left:384.000000px;}
.x44_c00284{left:385.920000px;}
.x30_c00284{left:387.000000px;}
.x8d_c00284{left:391.275000px;}
.xf3_c00284{left:394.500000px;}
.x56_c00284{left:398.580000px;}
.x4e_c00284{left:400.080000px;}
.x23_c00284{left:401.580000px;}
.x61_c00284{left:402.855000px;}
.x1_c00284{left:406.080000px;}
.x1b_c00284{left:410.580000px;}
.x7b_c00284{left:412.920000px;}
.x3a_c00284{left:414.000000px;}
.xbc_c00284{left:415.500000px;}
.x9f_c00284{left:417.000000px;}
.xce_c00284{left:418.080000px;}
.xe7_c00284{left:424.500000px;}
.x8e_c00284{left:426.000000px;}
.x86_c00284{left:429.000000px;}
.x45_c00284{left:430.500000px;}
.xfd_c00284{left:432.000000px;}
.x24_c00284{left:433.080000px;}
.xa0_c00284{left:435.000000px;}
.xf4_c00284{left:436.080000px;}
.xad_c00284{left:439.080000px;}
.xc1_c00284{left:440.355000px;}
.x46_c00284{left:442.080000px;}
.x10_c00284{left:444.000000px;}
.xc9_c00284{left:445.920000px;}
.x4f_c00284{left:447.000000px;}
.x69_c00284{left:448.080000px;}
.x31_c00284{left:450.000000px;}
.xf1_c00284{left:453.000000px;}
.x9_c00284{left:454.500000px;}
.xd9_c00284{left:456.000000px;}
.x62_c00284{left:460.500000px;}
.xf5_c00284{left:461.580000px;}
.x1c_c00284{left:465.000000px;}
.x57_c00284{left:466.080000px;}
.x32_c00284{left:468.000000px;}
.xa5_c00284{left:471.000000px;}
.xcf_c00284{left:472.080000px;}
.x104_c00284{left:476.580000px;}
.xda_c00284{left:478.500000px;}
.x7c_c00284{left:480.420000px;}
.x50_c00284{left:481.500000px;}
.x63_c00284{left:483.420000px;}
.x47_c00284{left:486.420000px;}
.x58_c00284{left:493.500000px;}
.xb7_c00284{left:498.000000px;}
.xca_c00284{left:499.500000px;}
.x25_c00284{left:500.580000px;}
.x96_c00284{left:503.580000px;}
.xf6_c00284{left:505.500000px;}
.xf9_c00284{left:507.420000px;}
.xc6_c00284{left:510.000000px;}
.x3b_c00284{left:511.080000px;}
.x48_c00284{left:513.000000px;}
.x1d_c00284{left:514.500000px;}
.x11_c00284{left:515.580000px;}
.x6a_c00284{left:517.080000px;}
.x7d_c00284{left:519.000000px;}
.xe2_c00284{left:522.000000px;}
.x51_c00284{left:526.920000px;}
.xa1_c00284{left:528.000000px;}
.x73_c00284{left:529.500000px;}
.xea_c00284{left:531.000000px;}
.x26_c00284{left:532.920000px;}
.x87_c00284{left:534.420000px;}
.xfa_c00284{left:536.580000px;}
.x33_c00284{left:538.500000px;}
.xa_c00284{left:541.080000px;}
.x6b_c00284{left:544.500000px;}
.x64_c00284{left:548.580000px;}
.x52_c00284{left:553.500000px;}
.xb8_c00284{left:555.420000px;}
.x8f_c00284{left:556.500000px;}
.xc2_c00284{left:558.000000px;}
.xe8_c00284{left:561.000000px;}
.x49_c00284{left:564.000000px;}
.xeb_c00284{left:566.580000px;}
.x97_c00284{left:568.500000px;}
.x34_c00284{left:570.000000px;}
.xdb_c00284{left:571.500000px;}
.xb_c00284{left:573.000000px;}
.x74_c00284{left:574.500000px;}
.xae_c00284{left:575.580000px;}
.xaa_c00284{left:579.000000px;}
.x3c_c00284{left:580.080000px;}
.x1e_c00284{left:582.000000px;}
.xa6_c00284{left:583.500000px;}
.x7e_c00284{left:585.420000px;}
.x59_c00284{left:586.920000px;}
.x98_c00284{left:589.275000px;}
.x12_c00284{left:593.775000px;}
.x27_c00284{left:595.275000px;}
.xd0_c00284{left:597.420000px;}
.xec_c00284{left:598.920000px;}
.x75_c00284{left:604.500000px;}
.xe9_c00284{left:606.000000px;}
.xe3_c00284{left:607.920000px;}
.x3d_c00284{left:609.420000px;}
.xd1_c00284{left:612.000000px;}
.x6c_c00284{left:615.000000px;}
.x5a_c00284{left:619.080000px;}
.x88_c00284{left:620.580000px;}
.x7f_c00284{left:624.420000px;}
.x100_c00284{left:625.500000px;}
.xdc_c00284{left:627.000000px;}
.xfb_c00284{left:628.500000px;}
.x65_c00284{left:630.000000px;}
.x13_c00284{left:631.500000px;}
.x3e_c00284{left:634.500000px;}
.xd2_c00284{left:636.000000px;}
.x28_c00284{left:637.920000px;}
.xdd_c00284{left:639.000000px;}
.x35_c00284{left:640.500000px;}
.xed_c00284{left:643.500000px;}
.x14_c00284{left:646.080000px;}
.xb9_c00284{left:651.000000px;}
.xd3_c00284{left:652.500000px;}
.xc_c00284{left:654.000000px;}
.x90_c00284{left:655.080000px;}
.x1f_c00284{left:658.500000px;}
.x4a_c00284{left:660.420000px;}
.x99_c00284{left:661.920000px;}
.x5b_c00284{left:663.420000px;}
.x29_c00284{left:664.500000px;}
.xa7_c00284{left:666.000000px;}
.x6d_c00284{left:668.580000px;}
.xaf_c00284{left:670.500000px;}
.x3f_c00284{left:673.500000px;}
.xbd_c00284{left:675.420000px;}
.x20_c00284{left:676.500000px;}
.x76_c00284{left:678.000000px;}
.xa2_c00284{left:681.000000px;}
.x80_c00284{left:682.500000px;}
.x5c_c00284{left:686.355000px;}
.x9a_c00284{left:688.920000px;}
.x2a_c00284{left:690.000000px;}
.x91_c00284{left:693.000000px;}
.x15_c00284{left:697.920000px;}
.x77_c00284{left:703.500000px;}
.x2_c00284{left:706.080000px;}
.xba_c00284{left:708.420000px;}
.xfe_c00284{left:709.500000px;}
.x36_c00284{left:713.580000px;}
.xfc_c00284{left:715.500000px;}
.xee_c00284{left:717.000000px;}
.x3_c00284{left:720.855000px;}
.x92_c00284{left:723.000000px;}
@media print{
.v0_c00284{vertical-align:0.000000pt;}
.ls0_c00284{letter-spacing:0.000000pt;}
.ws0_c00284{word-spacing:-4.203154pt;}
.ws1_c00284{word-spacing:0.000000pt;}
.fs3_c00284{font-size:3.040000pt;}
.fsa_c00284{font-size:6.026667pt;}
.fs9_c00284{font-size:10.560000pt;}
.fs8_c00284{font-size:12.106667pt;}
.fs0_c00284{font-size:16.640000pt;}
.fs2_c00284{font-size:18.133333pt;}
.fs7_c00284{font-size:22.666667pt;}
.fs1_c00284{font-size:25.706667pt;}
.fs6_c00284{font-size:28.746667pt;}
.fs5_c00284{font-size:31.733333pt;}
.fs4_c00284{font-size:34.773333pt;}
.y0_c00284{bottom:0.000000pt;}
.y3_c00284{bottom:199.600000pt;}
.yd6_c00284{bottom:223.026667pt;}
.yd5_c00284{bottom:223.773333pt;}
.yd2_c00284{bottom:224.733333pt;}
.yd1_c00284{bottom:225.106667pt;}
.yd7_c00284{bottom:225.306667pt;}
.yd4_c00284{bottom:225.693333pt;}
.yd3_c00284{bottom:225.893333pt;}
.yd0_c00284{bottom:241.106667pt;}
.ycb_c00284{bottom:242.440000pt;}
.ycd_c00284{bottom:243.026667pt;}
.ycf_c00284{bottom:243.226667pt;}
.yce_c00284{bottom:243.973333pt;}
.ycc_c00284{bottom:244.360000pt;}
.yc8_c00284{bottom:259.773333pt;}
.yca_c00284{bottom:260.560000pt;}
.yc9_c00284{bottom:261.693333pt;}
.yc7_c00284{bottom:277.106667pt;}
.yc5_c00284{bottom:279.026667pt;}
.yc6_c00284{bottom:279.226667pt;}
.yc3_c00284{bottom:293.693333pt;}
.yc0_c00284{bottom:294.440000pt;}
.yc4_c00284{bottom:295.400000pt;}
.yc2_c00284{bottom:296.360000pt;}
.yc1_c00284{bottom:297.706667pt;}
.ybf_c00284{bottom:318.066667pt;}
.ybd_c00284{bottom:319.026667pt;}
.ybe_c00284{bottom:320.173333pt;}
.ybc_c00284{bottom:320.933333pt;}
.yb7_c00284{bottom:331.400000pt;}
.yb4_c00284{bottom:331.600000pt;}
.ybb_c00284{bottom:331.973333pt;}
.yb6_c00284{bottom:332.360000pt;}
.yb5_c00284{bottom:332.560000pt;}
.yb3_c00284{bottom:333.306667pt;}
.yb8_c00284{bottom:333.506667pt;}
.yba_c00284{bottom:334.093333pt;}
.yb9_c00284{bottom:334.266667pt;}
.yad_c00284{bottom:343.973333pt;}
.yaf_c00284{bottom:344.733333pt;}
.yb0_c00284{bottom:345.693333pt;}
.yb1_c00284{bottom:346.640000pt;}
.yae_c00284{bottom:346.840000pt;}
.yab_c00284{bottom:347.026667pt;}
.yb2_c00284{bottom:347.426667pt;}
.yac_c00284{bottom:347.600000pt;}
.ya9_c00284{bottom:357.306667pt;}
.ya6_c00284{bottom:358.066667pt;}
.ya2_c00284{bottom:358.266667pt;}
.yaa_c00284{bottom:358.466667pt;}
.ya3_c00284{bottom:359.026667pt;}
.ya5_c00284{bottom:359.226667pt;}
.ya4_c00284{bottom:359.973333pt;}
.ya7_c00284{bottom:360.173333pt;}
.ya8_c00284{bottom:360.933333pt;}
.ya1_c00284{bottom:372.360000pt;}
.ya0_c00284{bottom:382.640000pt;}
.y9e_c00284{bottom:384.360000pt;}
.y9d_c00284{bottom:384.733333pt;}
.y9f_c00284{bottom:385.306667pt;}
.y9b_c00284{bottom:385.506667pt;}
.y9a_c00284{bottom:385.693333pt;}
.y9c_c00284{bottom:386.266667pt;}
.y99_c00284{bottom:396.733333pt;}
.y98_c00284{bottom:397.693333pt;}
.y91_c00284{bottom:398.266667pt;}
.y96_c00284{bottom:398.640000pt;}
.y94_c00284{bottom:398.840000pt;}
.y93_c00284{bottom:399.226667pt;}
.y97_c00284{bottom:399.600000pt;}
.y92_c00284{bottom:399.973333pt;}
.y95_c00284{bottom:400.933333pt;}
.y90_c00284{bottom:411.026667pt;}
.y8f_c00284{bottom:412.360000pt;}
.y8b_c00284{bottom:423.600000pt;}
.y8a_c00284{bottom:424.360000pt;}
.y8c_c00284{bottom:424.560000pt;}
.y8e_c00284{bottom:425.306667pt;}
.y89_c00284{bottom:425.506667pt;}
.y8d_c00284{bottom:426.266667pt;}
.y86_c00284{bottom:436.733333pt;}
.y87_c00284{bottom:437.693333pt;}
.y85_c00284{bottom:438.640000pt;}
.y84_c00284{bottom:438.840000pt;}
.y88_c00284{bottom:439.600000pt;}
.y83_c00284{bottom:448.933333pt;}
.y7f_c00284{bottom:449.306667pt;}
.y81_c00284{bottom:449.693333pt;}
.y82_c00284{bottom:450.640000pt;}
.y7d_c00284{bottom:451.026667pt;}
.y80_c00284{bottom:451.226667pt;}
.y7e_c00284{bottom:451.973333pt;}
.y7c_c00284{bottom:452.933333pt;}
.y7a_c00284{bottom:463.026667pt;}
.y76_c00284{bottom:463.400000pt;}
.y7b_c00284{bottom:464.173333pt;}
.y77_c00284{bottom:464.360000pt;}
.y75_c00284{bottom:464.560000pt;}
.y78_c00284{bottom:464.933333pt;}
.y79_c00284{bottom:465.306667pt;}
.y73_c00284{bottom:487.773333pt;}
.y74_c00284{bottom:488.560000pt;}
.y72_c00284{bottom:489.693333pt;}
.y71_c00284{bottom:507.026667pt;}
.y6d_c00284{bottom:522.440000pt;}
.y6f_c00284{bottom:523.226667pt;}
.y70_c00284{bottom:523.400000pt;}
.y6c_c00284{bottom:524.360000pt;}
.y6e_c00284{bottom:525.306667pt;}
.y68_c00284{bottom:539.026667pt;}
.y67_c00284{bottom:539.773333pt;}
.y6a_c00284{bottom:541.693333pt;}
.y69_c00284{bottom:541.893333pt;}
.y6b_c00284{bottom:542.640000pt;}
.y66_c00284{bottom:557.106667pt;}
.y64_c00284{bottom:559.026667pt;}
.y65_c00284{bottom:559.226667pt;}
.y63_c00284{bottom:573.693333pt;}
.y62_c00284{bottom:575.773333pt;}
.y61_c00284{bottom:577.693333pt;}
.y60_c00284{bottom:593.106667pt;}
.y5f_c00284{bottom:593.893333pt;}
.y5e_c00284{bottom:595.026667pt;}
.y5c_c00284{bottom:610.440000pt;}
.y5d_c00284{bottom:611.973333pt;}
.y5a_c00284{bottom:612.360000pt;}
.y5b_c00284{bottom:613.306667pt;}
.y58_c00284{bottom:626.826667pt;}
.y56_c00284{bottom:627.773333pt;}
.y57_c00284{bottom:628.560000pt;}
.y59_c00284{bottom:628.733333pt;}
.y55_c00284{bottom:629.693333pt;}
.y54_c00284{bottom:644.733333pt;}
.y52_c00284{bottom:645.106667pt;}
.y51_c00284{bottom:646.066667pt;}
.y50_c00284{bottom:647.026667pt;}
.y53_c00284{bottom:647.973333pt;}
.y4e_c00284{bottom:662.440000pt;}
.y4f_c00284{bottom:663.400000pt;}
.y4d_c00284{bottom:664.360000pt;}
.y4b_c00284{bottom:679.026667pt;}
.y4c_c00284{bottom:679.773333pt;}
.y47_c00284{bottom:680.360000pt;}
.y45_c00284{bottom:681.106667pt;}
.y4a_c00284{bottom:681.893333pt;}
.y46_c00284{bottom:682.066667pt;}
.y49_c00284{bottom:683.026667pt;}
.y48_c00284{bottom:683.973333pt;}
.y42_c00284{bottom:697.306667pt;}
.y43_c00284{bottom:698.066667pt;}
.y41_c00284{bottom:698.440000pt;}
.y44_c00284{bottom:699.226667pt;}
.y40_c00284{bottom:700.360000pt;}
.y3c_c00284{bottom:715.773333pt;}
.y3f_c00284{bottom:716.560000pt;}
.y3e_c00284{bottom:716.733333pt;}
.y3d_c00284{bottom:717.693333pt;}
.y39_c00284{bottom:731.026667pt;}
.y37_c00284{bottom:733.106667pt;}
.y3b_c00284{bottom:733.893333pt;}
.y3a_c00284{bottom:734.640000pt;}
.y38_c00284{bottom:735.026667pt;}
.y35_c00284{bottom:750.440000pt;}
.y36_c00284{bottom:751.600000pt;}
.y33_c00284{bottom:752.360000pt;}
.y34_c00284{bottom:752.560000pt;}
.y31_c00284{bottom:767.026667pt;}
.y2e_c00284{bottom:767.773333pt;}
.y2f_c00284{bottom:768.560000pt;}
.y2d_c00284{bottom:769.693333pt;}
.y30_c00284{bottom:769.893333pt;}
.y32_c00284{bottom:770.640000pt;}
.y2c_c00284{bottom:785.106667pt;}
.y2b_c00284{bottom:786.440000pt;}
.y2a_c00284{bottom:787.026667pt;}
.y29_c00284{bottom:787.226667pt;}
.y25_c00284{bottom:802.440000pt;}
.y28_c00284{bottom:803.400000pt;}
.y26_c00284{bottom:803.773333pt;}
.y27_c00284{bottom:804.360000pt;}
.y22_c00284{bottom:804.560000pt;}
.y24_c00284{bottom:805.306667pt;}
.y23_c00284{bottom:805.693333pt;}
.y21_c00284{bottom:819.773333pt;}
.y1d_c00284{bottom:821.693333pt;}
.y1f_c00284{bottom:821.893333pt;}
.y20_c00284{bottom:822.640000pt;}
.y1e_c00284{bottom:823.040000pt;}
.y1c_c00284{bottom:839.226667pt;}
.y1a_c00284{bottom:855.773333pt;}
.y19_c00284{bottom:857.693333pt;}
.y1b_c00284{bottom:858.640000pt;}
.y18_c00284{bottom:873.106667pt;}
.y16_c00284{bottom:875.026667pt;}
.y17_c00284{bottom:875.973333pt;}
.y11_c00284{bottom:890.440000pt;}
.y15_c00284{bottom:890.640000pt;}
.y13_c00284{bottom:890.826667pt;}
.y14_c00284{bottom:891.400000pt;}
.y12_c00284{bottom:892.360000pt;}
.yd_c00284{bottom:907.773333pt;}
.ye_c00284{bottom:908.733333pt;}
.yf_c00284{bottom:909.693333pt;}
.y10_c00284{bottom:910.640000pt;}
.yb_c00284{bottom:925.106667pt;}
.yc_c00284{bottom:926.440000pt;}
.y9_c00284{bottom:927.026667pt;}
.ya_c00284{bottom:928.373333pt;}
.y7_c00284{bottom:942.826667pt;}
.y8_c00284{bottom:943.773333pt;}
.y5_c00284{bottom:944.560000pt;}
.y4_c00284{bottom:945.693333pt;}
.y6_c00284{bottom:945.706667pt;}
.y2_c00284{bottom:977.693333pt;}
.y1_c00284{bottom:979.226667pt;}
.h4_c00284{height:3.739141pt;}
.hb_c00284{height:7.412682pt;}
.ha_c00284{height:12.988594pt;}
.h9_c00284{height:14.890964pt;}
.h1_c00284{height:20.466875pt;}
.h3_c00284{height:22.303646pt;}
.h8_c00284{height:27.879557pt;}
.h2_c00284{height:31.618698pt;}
.h7_c00284{height:35.357839pt;}
.h6_c00284{height:39.031380pt;}
.h5_c00284{height:42.770521pt;}
.h0_c00284{height:1186.666667pt;}
.w0_c00284{width:782.666667pt;}
.x0_c00284{left:0.000000pt;}
.x66_c00284{left:135.040000pt;}
.x16_c00284{left:136.000000pt;}
.xd4_c00284{left:145.333333pt;}
.xd8_c00284{left:146.666667pt;}
.xb4_c00284{left:148.000000pt;}
.x4_c00284{left:150.666667pt;}
.x9b_c00284{left:153.333333pt;}
.xb0_c00284{left:158.666667pt;}
.x53_c00284{left:160.000000pt;}
.x89_c00284{left:162.666667pt;}
.x2b_c00284{left:164.960000pt;}
.xbe_c00284{left:167.040000pt;}
.xf2_c00284{left:168.373333pt;}
.x101_c00284{left:169.333333pt;}
.x9c_c00284{left:170.293333pt;}
.xab_c00284{left:172.373333pt;}
.x4b_c00284{left:173.706667pt;}
.x81_c00284{left:175.040000pt;}
.xc3_c00284{left:176.373333pt;}
.xb5_c00284{left:178.666667pt;}
.x5d_c00284{left:180.000000pt;}
.x54_c00284{left:184.960000pt;}
.xcb_c00284{left:187.626667pt;}
.xe4_c00284{left:189.333333pt;}
.x93_c00284{left:190.293333pt;}
.x17_c00284{left:192.000000pt;}
.x82_c00284{left:194.093333pt;}
.x4c_c00284{left:196.000000pt;}
.xd5_c00284{left:198.293333pt;}
.xf7_c00284{left:199.626667pt;}
.x78_c00284{left:200.960000pt;}
.x2c_c00284{left:202.666667pt;}
.x21_c00284{left:204.000000pt;}
.x94_c00284{left:206.666667pt;}
.x5e_c00284{left:208.000000pt;}
.xa8_c00284{left:212.000000pt;}
.x102_c00284{left:213.706667pt;}
.xb1_c00284{left:214.666667pt;}
.xef_c00284{left:215.626667pt;}
.x9d_c00284{left:219.040000pt;}
.x4d_c00284{left:220.373333pt;}
.xc7_c00284{left:221.706667pt;}
.x40_c00284{left:222.666667pt;}
.x6e_c00284{left:223.626667pt;}
.x5_c00284{left:226.666667pt;}
.xcc_c00284{left:228.960000pt;}
.xd_c00284{left:232.000000pt;}
.x8a_c00284{left:233.706667pt;}
.x83_c00284{left:234.666667pt;}
.xc4_c00284{left:236.000000pt;}
.xd6_c00284{left:237.333333pt;}
.x41_c00284{left:239.626667pt;}
.xf0_c00284{left:241.333333pt;}
.xde_c00284{left:242.293333pt;}
.x9e_c00284{left:244.000000pt;}
.xb6_c00284{left:248.960000pt;}
.xe_c00284{left:250.666667pt;}
.xa3_c00284{left:251.626667pt;}
.x2d_c00284{left:254.666667pt;}
.x18_c00284{left:255.626667pt;}
.xbf_c00284{left:256.960000pt;}
.x37_c00284{left:258.666667pt;}
.xe5_c00284{left:261.333333pt;}
.xac_c00284{left:262.666667pt;}
.xb2_c00284{left:263.626667pt;}
.x6f_c00284{left:267.626667pt;}
.x5f_c00284{left:269.333333pt;}
.xc8_c00284{left:270.666667pt;}
.xdf_c00284{left:272.000000pt;}
.x8b_c00284{left:273.133333pt;}
.x55_c00284{left:274.666667pt;}
.x6_c00284{left:276.000000pt;}
.xf_c00284{left:277.333333pt;}
.x38_c00284{left:280.960000pt;}
.x19_c00284{left:282.666667pt;}
.x67_c00284{left:285.333333pt;}
.xd7_c00284{left:286.666667pt;}
.xcd_c00284{left:287.626667pt;}
.x2e_c00284{left:289.333333pt;}
.x22_c00284{left:290.666667pt;}
.xb3_c00284{left:292.373333pt;}
.x79_c00284{left:293.706667pt;}
.xe0_c00284{left:294.666667pt;}
.x70_c00284{left:296.000000pt;}
.x103_c00284{left:296.960000pt;}
.x7_c00284{left:298.293333pt;}
.x95_c00284{left:300.373333pt;}
.xc5_c00284{left:302.666667pt;}
.x42_c00284{left:304.000000pt;}
.x8c_c00284{left:305.333333pt;}
.x2f_c00284{left:306.293333pt;}
.xff_c00284{left:309.706667pt;}
.x71_c00284{left:311.626667pt;}
.x39_c00284{left:312.960000pt;}
.xe6_c00284{left:315.040000pt;}
.xbb_c00284{left:316.000000pt;}
.x7a_c00284{left:318.293333pt;}
.x68_c00284{left:320.000000pt;}
.x43_c00284{left:322.666667pt;}
.x8_c00284{left:323.626667pt;}
.x84_c00284{left:324.960000pt;}
.xf8_c00284{left:327.040000pt;}
.xe1_c00284{left:329.333333pt;}
.xc0_c00284{left:330.293333pt;}
.x72_c00284{left:331.626667pt;}
.xa9_c00284{left:333.333333pt;}
.xa4_c00284{left:336.373333pt;}
.x60_c00284{left:337.333333pt;}
.x1a_c00284{left:339.626667pt;}
.x85_c00284{left:341.333333pt;}
.x44_c00284{left:343.040000pt;}
.x30_c00284{left:344.000000pt;}
.x8d_c00284{left:347.800000pt;}
.xf3_c00284{left:350.666667pt;}
.x56_c00284{left:354.293333pt;}
.x4e_c00284{left:355.626667pt;}
.x23_c00284{left:356.960000pt;}
.x61_c00284{left:358.093333pt;}
.x1_c00284{left:360.960000pt;}
.x1b_c00284{left:364.960000pt;}
.x7b_c00284{left:367.040000pt;}
.x3a_c00284{left:368.000000pt;}
.xbc_c00284{left:369.333333pt;}
.x9f_c00284{left:370.666667pt;}
.xce_c00284{left:371.626667pt;}
.xe7_c00284{left:377.333333pt;}
.x8e_c00284{left:378.666667pt;}
.x86_c00284{left:381.333333pt;}
.x45_c00284{left:382.666667pt;}
.xfd_c00284{left:384.000000pt;}
.x24_c00284{left:384.960000pt;}
.xa0_c00284{left:386.666667pt;}
.xf4_c00284{left:387.626667pt;}
.xad_c00284{left:390.293333pt;}
.xc1_c00284{left:391.426667pt;}
.x46_c00284{left:392.960000pt;}
.x10_c00284{left:394.666667pt;}
.xc9_c00284{left:396.373333pt;}
.x4f_c00284{left:397.333333pt;}
.x69_c00284{left:398.293333pt;}
.x31_c00284{left:400.000000pt;}
.xf1_c00284{left:402.666667pt;}
.x9_c00284{left:404.000000pt;}
.xd9_c00284{left:405.333333pt;}
.x62_c00284{left:409.333333pt;}
.xf5_c00284{left:410.293333pt;}
.x1c_c00284{left:413.333333pt;}
.x57_c00284{left:414.293333pt;}
.x32_c00284{left:416.000000pt;}
.xa5_c00284{left:418.666667pt;}
.xcf_c00284{left:419.626667pt;}
.x104_c00284{left:423.626667pt;}
.xda_c00284{left:425.333333pt;}
.x7c_c00284{left:427.040000pt;}
.x50_c00284{left:428.000000pt;}
.x63_c00284{left:429.706667pt;}
.x47_c00284{left:432.373333pt;}
.x58_c00284{left:438.666667pt;}
.xb7_c00284{left:442.666667pt;}
.xca_c00284{left:444.000000pt;}
.x25_c00284{left:444.960000pt;}
.x96_c00284{left:447.626667pt;}
.xf6_c00284{left:449.333333pt;}
.xf9_c00284{left:451.040000pt;}
.xc6_c00284{left:453.333333pt;}
.x3b_c00284{left:454.293333pt;}
.x48_c00284{left:456.000000pt;}
.x1d_c00284{left:457.333333pt;}
.x11_c00284{left:458.293333pt;}
.x6a_c00284{left:459.626667pt;}
.x7d_c00284{left:461.333333pt;}
.xe2_c00284{left:464.000000pt;}
.x51_c00284{left:468.373333pt;}
.xa1_c00284{left:469.333333pt;}
.x73_c00284{left:470.666667pt;}
.xea_c00284{left:472.000000pt;}
.x26_c00284{left:473.706667pt;}
.x87_c00284{left:475.040000pt;}
.xfa_c00284{left:476.960000pt;}
.x33_c00284{left:478.666667pt;}
.xa_c00284{left:480.960000pt;}
.x6b_c00284{left:484.000000pt;}
.x64_c00284{left:487.626667pt;}
.x52_c00284{left:492.000000pt;}
.xb8_c00284{left:493.706667pt;}
.x8f_c00284{left:494.666667pt;}
.xc2_c00284{left:496.000000pt;}
.xe8_c00284{left:498.666667pt;}
.x49_c00284{left:501.333333pt;}
.xeb_c00284{left:503.626667pt;}
.x97_c00284{left:505.333333pt;}
.x34_c00284{left:506.666667pt;}
.xdb_c00284{left:508.000000pt;}
.xb_c00284{left:509.333333pt;}
.x74_c00284{left:510.666667pt;}
.xae_c00284{left:511.626667pt;}
.xaa_c00284{left:514.666667pt;}
.x3c_c00284{left:515.626667pt;}
.x1e_c00284{left:517.333333pt;}
.xa6_c00284{left:518.666667pt;}
.x7e_c00284{left:520.373333pt;}
.x59_c00284{left:521.706667pt;}
.x98_c00284{left:523.800000pt;}
.x12_c00284{left:527.800000pt;}
.x27_c00284{left:529.133333pt;}
.xd0_c00284{left:531.040000pt;}
.xec_c00284{left:532.373333pt;}
.x75_c00284{left:537.333333pt;}
.xe9_c00284{left:538.666667pt;}
.xe3_c00284{left:540.373333pt;}
.x3d_c00284{left:541.706667pt;}
.xd1_c00284{left:544.000000pt;}
.x6c_c00284{left:546.666667pt;}
.x5a_c00284{left:550.293333pt;}
.x88_c00284{left:551.626667pt;}
.x7f_c00284{left:555.040000pt;}
.x100_c00284{left:556.000000pt;}
.xdc_c00284{left:557.333333pt;}
.xfb_c00284{left:558.666667pt;}
.x65_c00284{left:560.000000pt;}
.x13_c00284{left:561.333333pt;}
.x3e_c00284{left:564.000000pt;}
.xd2_c00284{left:565.333333pt;}
.x28_c00284{left:567.040000pt;}
.xdd_c00284{left:568.000000pt;}
.x35_c00284{left:569.333333pt;}
.xed_c00284{left:572.000000pt;}
.x14_c00284{left:574.293333pt;}
.xb9_c00284{left:578.666667pt;}
.xd3_c00284{left:580.000000pt;}
.xc_c00284{left:581.333333pt;}
.x90_c00284{left:582.293333pt;}
.x1f_c00284{left:585.333333pt;}
.x4a_c00284{left:587.040000pt;}
.x99_c00284{left:588.373333pt;}
.x5b_c00284{left:589.706667pt;}
.x29_c00284{left:590.666667pt;}
.xa7_c00284{left:592.000000pt;}
.x6d_c00284{left:594.293333pt;}
.xaf_c00284{left:596.000000pt;}
.x3f_c00284{left:598.666667pt;}
.xbd_c00284{left:600.373333pt;}
.x20_c00284{left:601.333333pt;}
.x76_c00284{left:602.666667pt;}
.xa2_c00284{left:605.333333pt;}
.x80_c00284{left:606.666667pt;}
.x5c_c00284{left:610.093333pt;}
.x9a_c00284{left:612.373333pt;}
.x2a_c00284{left:613.333333pt;}
.x91_c00284{left:616.000000pt;}
.x15_c00284{left:620.373333pt;}
.x77_c00284{left:625.333333pt;}
.x2_c00284{left:627.626667pt;}
.xba_c00284{left:629.706667pt;}
.xfe_c00284{left:630.666667pt;}
.x36_c00284{left:634.293333pt;}
.xfc_c00284{left:636.000000pt;}
.xee_c00284{left:637.333333pt;}
.x3_c00284{left:640.760000pt;}
.x92_c00284{left:642.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_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_4553005526784c6af3378088.woff2')format("woff");}.ff1_c00285{font-family:ff1_c00285;line-height:1.688965;font-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_c00285{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.m0_c00285{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m16_c00285{transform:matrix(0.393321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393321,0.000000,0.000000,0.250000,0,0);}
.mf_c00285{transform:matrix(0.397959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397959,0.000000,0.000000,0.250000,0,0);}
.m13_c00285{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m1f_c00285{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.m19_c00285{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.mc_c00285{transform:matrix(0.427386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427386,0.000000,0.000000,0.250000,0,0);}
.m14_c00285{transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);}
.m22_c00285{transform:matrix(0.443109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443109,0.000000,0.000000,0.250000,0,0);}
.m17_c00285{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m8_c00285{transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);}
.m2_c00285{transform:matrix(0.460581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460581,0.000000,0.000000,0.250000,0,0);}
.m1d_c00285{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.m21_c00285{transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);}
.m24_c00285{transform:matrix(0.471765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471765,0.000000,0.000000,0.250000,0,0);}
.m1e_c00285{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m18_c00285{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m23_c00285{transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);}
.m9_c00285{transform:matrix(0.494706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494706,0.000000,0.000000,0.250000,0,0);}
.ma_c00285{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);}
.m27_c00285{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m7_c00285{transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);}
.m20_c00285{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_c00285{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m1c_c00285{transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);}
.m6_c00285{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m10_c00285{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.m26_c00285{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.md_c00285{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_c00285{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m1a_c00285{transform:matrix(0.598529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598529,0.000000,0.000000,0.250000,0,0);}
.m15_c00285{transform:matrix(0.607353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607353,0.000000,0.000000,0.250000,0,0);}
.m11_c00285{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m1_c00285{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m25_c00285{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m12_c00285{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mb_c00285{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.me_c00285{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m5_c00285{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);}
.v0_c00285{vertical-align:0.000000px;}
.v1_c00285{vertical-align:6.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;}
}
.ws1_c00285{word-spacing:-5.340800px;}
.ws0_c00285{word-spacing:-4.007745px;}
.ws2_c00285{word-spacing:0.000000px;}
.fc0_c00285{color:transparent;}
.fs5_c00285{font-size:18.720000px;}
.fs1_c00285{font-size:20.400000px;}
.fs3_c00285{font-size:25.500000px;}
.fs2_c00285{font-size:28.920000px;}
.fs4_c00285{font-size:32.340000px;}
.fs0_c00285{font-size:35.700000px;}
.y0_c00285{bottom:0.000000px;}
.y5_c00285{bottom:249.825000px;}
.y3_c00285{bottom:250.905000px;}
.y4_c00285{bottom:251.970000px;}
.y6_c00285{bottom:253.050000px;}
.y7_c00285{bottom:253.470000px;}
.ye_c00285{bottom:264.825000px;}
.y8_c00285{bottom:265.905000px;}
.y10_c00285{bottom:266.325000px;}
.yc_c00285{bottom:266.970000px;}
.yf_c00285{bottom:267.630000px;}
.yd_c00285{bottom:268.050000px;}
.y11_c00285{bottom:279.825000px;}
.yb_c00285{bottom:280.905000px;}
.y12_c00285{bottom:281.325000px;}
.y9_c00285{bottom:281.970000px;}
.ya_c00285{bottom:283.050000px;}
.y14_c00285{bottom:294.405000px;}
.y15_c00285{bottom:295.050000px;}
.y13_c00285{bottom:295.905000px;}
.y16_c00285{bottom:296.130000px;}
.y18_c00285{bottom:296.970000px;}
.y17_c00285{bottom:298.050000px;}
.y1_c00285{bottom:1097.745000px;}
.y2_c00285{bottom:1099.050000px;}
.h7_c00285{height:23.025234px;}
.h2_c00285{height:25.091602px;}
.h4_c00285{height:31.364502px;}
.h3_c00285{height:35.571035px;}
.h6_c00285{height:37.364502px;}
.h5_c00285{height:39.777568px;}
.h1_c00285{height:43.910303px;}
.h0_c00285{height:1335.000000px;}
.w0_c00285{width:880.500000px;}
.x0_c00285{left:0.000000px;}
.x24_c00285{left:146.145000px;}
.xf_c00285{left:147.420000px;}
.x1_c00285{left:148.500000px;}
.x25_c00285{left:175.080000px;}
.x29_c00285{left:192.000000px;}
.x10_c00285{left:196.500000px;}
.x26_c00285{left:199.920000px;}
.x30_c00285{left:217.080000px;}
.x11_c00285{left:230.580000px;}
.x1f_c00285{left:256.080000px;}
.xa_c00285{left:265.500000px;}
.x31_c00285{left:276.000000px;}
.x12_c00285{left:282.000000px;}
.x20_c00285{left:286.500000px;}
.x21_c00285{left:321.000000px;}
.x13_c00285{left:337.500000px;}
.x14_c00285{left:362.580000px;}
.x22_c00285{left:379.920000px;}
.x15_c00285{left:396.420000px;}
.x2_c00285{left:402.000000px;}
.x16_c00285{left:415.500000px;}
.x23_c00285{left:417.000000px;}
.x3_c00285{left:428.580000px;}
.x1d_c00285{left:436.080000px;}
.x2a_c00285{left:445.080000px;}
.x4_c00285{left:450.000000px;}
.x17_c00285{left:451.500000px;}
.x2b_c00285{left:469.500000px;}
.x5_c00285{left:483.000000px;}
.x1e_c00285{left:493.080000px;}
.x2c_c00285{left:504.000000px;}
.x6_c00285{left:510.000000px;}
.x18_c00285{left:519.000000px;}
.x2d_c00285{left:523.920000px;}
.x7_c00285{left:526.920000px;}
.x19_c00285{left:562.920000px;}
.x2e_c00285{left:567.420000px;}
.x8_c00285{left:574.920000px;}
.x1a_c00285{left:580.500000px;}
.xb_c00285{left:602.580000px;}
.x1b_c00285{left:607.080000px;}
.x2f_c00285{left:610.080000px;}
.x27_c00285{left:628.080000px;}
.xc_c00285{left:654.000000px;}
.x1c_c00285{left:655.920000px;}
.x9_c00285{left:673.080000px;}
.xd_c00285{left:685.500000px;}
.x28_c00285{left:702.420000px;}
.xe_c00285{left:714.000000px;}
@media print{
.v0_c00285{vertical-align:0.000000pt;}
.v1_c00285{vertical-align:5.333333pt;}
.ls0_c00285{letter-spacing:0.000000pt;}
.ws1_c00285{word-spacing:-4.747378pt;}
.ws0_c00285{word-spacing:-3.562440pt;}
.ws2_c00285{word-spacing:0.000000pt;}
.fs5_c00285{font-size:16.640000pt;}
.fs1_c00285{font-size:18.133333pt;}
.fs3_c00285{font-size:22.666667pt;}
.fs2_c00285{font-size:25.706667pt;}
.fs4_c00285{font-size:28.746667pt;}
.fs0_c00285{font-size:31.733333pt;}
.y0_c00285{bottom:0.000000pt;}
.y5_c00285{bottom:222.066667pt;}
.y3_c00285{bottom:223.026667pt;}
.y4_c00285{bottom:223.973333pt;}
.y6_c00285{bottom:224.933333pt;}
.y7_c00285{bottom:225.306667pt;}
.ye_c00285{bottom:235.400000pt;}
.y8_c00285{bottom:236.360000pt;}
.y10_c00285{bottom:236.733333pt;}
.yc_c00285{bottom:237.306667pt;}
.yf_c00285{bottom:237.893333pt;}
.yd_c00285{bottom:238.266667pt;}
.y11_c00285{bottom:248.733333pt;}
.yb_c00285{bottom:249.693333pt;}
.y12_c00285{bottom:250.066667pt;}
.y9_c00285{bottom:250.640000pt;}
.ya_c00285{bottom:251.600000pt;}
.y14_c00285{bottom:261.693333pt;}
.y15_c00285{bottom:262.266667pt;}
.y13_c00285{bottom:263.026667pt;}
.y16_c00285{bottom:263.226667pt;}
.y18_c00285{bottom:263.973333pt;}
.y17_c00285{bottom:264.933333pt;}
.y1_c00285{bottom:975.773333pt;}
.y2_c00285{bottom:976.933333pt;}
.h7_c00285{height:20.466875pt;}
.h2_c00285{height:22.303646pt;}
.h4_c00285{height:27.879557pt;}
.h3_c00285{height:31.618698pt;}
.h6_c00285{height:33.212891pt;}
.h5_c00285{height:35.357839pt;}
.h1_c00285{height:39.031380pt;}
.h0_c00285{height:1186.666667pt;}
.w0_c00285{width:782.666667pt;}
.x0_c00285{left:0.000000pt;}
.x24_c00285{left:129.906667pt;}
.xf_c00285{left:131.040000pt;}
.x1_c00285{left:132.000000pt;}
.x25_c00285{left:155.626667pt;}
.x29_c00285{left:170.666667pt;}
.x10_c00285{left:174.666667pt;}
.x26_c00285{left:177.706667pt;}
.x30_c00285{left:192.960000pt;}
.x11_c00285{left:204.960000pt;}
.x1f_c00285{left:227.626667pt;}
.xa_c00285{left:236.000000pt;}
.x31_c00285{left:245.333333pt;}
.x12_c00285{left:250.666667pt;}
.x20_c00285{left:254.666667pt;}
.x21_c00285{left:285.333333pt;}
.x13_c00285{left:300.000000pt;}
.x14_c00285{left:322.293333pt;}
.x22_c00285{left:337.706667pt;}
.x15_c00285{left:352.373333pt;}
.x2_c00285{left:357.333333pt;}
.x16_c00285{left:369.333333pt;}
.x23_c00285{left:370.666667pt;}
.x3_c00285{left:380.960000pt;}
.x1d_c00285{left:387.626667pt;}
.x2a_c00285{left:395.626667pt;}
.x4_c00285{left:400.000000pt;}
.x17_c00285{left:401.333333pt;}
.x2b_c00285{left:417.333333pt;}
.x5_c00285{left:429.333333pt;}
.x1e_c00285{left:438.293333pt;}
.x2c_c00285{left:448.000000pt;}
.x6_c00285{left:453.333333pt;}
.x18_c00285{left:461.333333pt;}
.x2d_c00285{left:465.706667pt;}
.x7_c00285{left:468.373333pt;}
.x19_c00285{left:500.373333pt;}
.x2e_c00285{left:504.373333pt;}
.x8_c00285{left:511.040000pt;}
.x1a_c00285{left:516.000000pt;}
.xb_c00285{left:535.626667pt;}
.x1b_c00285{left:539.626667pt;}
.x2f_c00285{left:542.293333pt;}
.x27_c00285{left:558.293333pt;}
.xc_c00285{left:581.333333pt;}
.x1c_c00285{left:583.040000pt;}
.x9_c00285{left:598.293333pt;}
.xd_c00285{left:609.333333pt;}
.x28_c00285{left:624.373333pt;}
.xe_c00285{left:634.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_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_3cc6dfdd1bc5160d12a76f0a.woff2')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5f_c00286{transform:matrix(0.333206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333206,0.000000,0.000000,0.250000,0,0);}
.m6_c00286{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m59_c00286{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_c00286{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.m8f_c00286{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.md0_c00286{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m5e_c00286{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m43_c00286{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m80_c00286{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m90_c00286{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.md7_c00286{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mc3_c00286{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m37_c00286{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m8a_c00286{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m73_c00286{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m25_c00286{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.mc0_c00286{transform:matrix(0.384874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384874,0.000000,0.000000,0.250000,0,0);}
.m7c_c00286{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.me9_c00286{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m56_c00286{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m9_c00286{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m30_c00286{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.mf0_c00286{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.md6_c00286{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mcf_c00286{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mc7_c00286{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m4d_c00286{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m8_c00286{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m22_c00286{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m92_c00286{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m38_c00286{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);}
.m1a_c00286{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.ma6_c00286{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m94_c00286{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m1c_c00286{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m81_c00286{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mb2_c00286{transform:matrix(0.407209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407209,0.000000,0.000000,0.250000,0,0);}
.me4_c00286{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.ma2_c00286{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mda_c00286{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m3d_c00286{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.mb1_c00286{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.ma8_c00286{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.mc9_c00286{transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);}
.ma3_c00286{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m58_c00286{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m5d_c00286{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.ma9_c00286{transform:matrix(0.416976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416976,0.000000,0.000000,0.250000,0,0);}
.m46_c00286{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m51_c00286{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.mbf_c00286{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m7f_c00286{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m86_c00286{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m3a_c00286{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.maa_c00286{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m35_c00286{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.mbe_c00286{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.me6_c00286{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m7_c00286{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m41_c00286{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m2a_c00286{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m4c_c00286{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m9a_c00286{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m36_c00286{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m4e_c00286{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m97_c00286{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mc1_c00286{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m3c_c00286{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.mf2_c00286{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m10_c00286{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m88_c00286{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mca_c00286{transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);}
.m21_c00286{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m1f_c00286{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m64_c00286{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.m1e_c00286{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m68_c00286{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m77_c00286{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mef_c00286{transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);}
.m32_c00286{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.mf3_c00286{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.mdd_c00286{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m45_c00286{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m6a_c00286{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mc6_c00286{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m8e_c00286{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m72_c00286{transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);}
.mc2_c00286{transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);}
.mcb_c00286{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m3f_c00286{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m39_c00286{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m34_c00286{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.mb6_c00286{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m7e_c00286{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m75_c00286{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.me5_c00286{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m1d_c00286{transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);}
.ma5_c00286{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m89_c00286{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.mf6_c00286{transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);}
.mae_c00286{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m93_c00286{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.mec_c00286{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m14_c00286{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.m82_c00286{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.mdb_c00286{transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);}
.mb0_c00286{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.mf5_c00286{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m71_c00286{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m84_c00286{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m11_c00286{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m53_c00286{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m23_c00286{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m2_c00286{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m87_c00286{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m69_c00286{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m78_c00286{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m1_c00286{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m61_c00286{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m3b_c00286{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m2c_c00286{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m12_c00286{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);}
.md5_c00286{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mac_c00286{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m15_c00286{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m16_c00286{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.mb8_c00286{transform:matrix(0.508349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508349,0.000000,0.000000,0.250000,0,0);}
.mdf_c00286{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.meb_c00286{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mcc_c00286{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m98_c00286{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.me0_c00286{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m31_c00286{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m6f_c00286{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.mb9_c00286{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m33_c00286{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m8c_c00286{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m40_c00286{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m9c_c00286{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m2b_c00286{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m6e_c00286{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mad_c00286{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m95_c00286{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.me2_c00286{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m55_c00286{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.me_c00286{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mab_c00286{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m54_c00286{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m63_c00286{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.md_c00286{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m4_c00286{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mee_c00286{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m42_c00286{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m26_c00286{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m27_c00286{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m85_c00286{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mc5_c00286{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m48_c00286{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m49_c00286{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.mb5_c00286{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m6c_c00286{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m18_c00286{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.md3_c00286{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m65_c00286{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.maf_c00286{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.mb7_c00286{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m5c_c00286{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m62_c00286{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m5b_c00286{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mf4_c00286{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.md1_c00286{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m2f_c00286{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m4f_c00286{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mba_c00286{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m2e_c00286{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m19_c00286{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m79_c00286{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m96_c00286{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.ma1_c00286{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m47_c00286{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m74_c00286{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);}
.mdc_c00286{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mbb_c00286{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.ma4_c00286{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.me7_c00286{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m57_c00286{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m9d_c00286{transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);}
.m3_c00286{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m4a_c00286{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m52_c00286{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m2d_c00286{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.md8_c00286{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m5a_c00286{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.me3_c00286{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.m83_c00286{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m7a_c00286{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m29_c00286{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m66_c00286{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m50_c00286{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m4b_c00286{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.me8_c00286{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m9f_c00286{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.ma_c00286{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);}
.m17_c00286{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m67_c00286{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m5_c00286{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m24_c00286{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mde_c00286{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.m60_c00286{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.md4_c00286{transform:matrix(0.617739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617739,0.000000,0.000000,0.250000,0,0);}
.m9e_c00286{transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);}
.m6d_c00286{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mb_c00286{transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);}
.m0_c00286{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.mb4_c00286{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.ma7_c00286{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m76_c00286{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.md2_c00286{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.mbd_c00286{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mc_c00286{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mea_c00286{transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);}
.md9_c00286{transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);}
.mce_c00286{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.ma0_c00286{transform:matrix(0.713235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713235,0.000000,0.000000,0.250000,0,0);}
.m7d_c00286{transform:matrix(0.714706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.714706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.714706,0.000000,0.000000,0.250000,0,0);}
.m20_c00286{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.me1_c00286{transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);}
.m7b_c00286{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m1b_c00286{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m99_c00286{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m44_c00286{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mf1_c00286{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m3e_c00286{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m9b_c00286{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);}
.mc8_c00286{transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);}
.mc4_c00286{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.m28_c00286{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.med_c00286{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mcd_c00286{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.m91_c00286{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m6b_c00286{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.m13_c00286{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mbc_c00286{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.mf_c00286{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mb3_c00286{transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);}
.m8b_c00286{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m8d_c00286{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,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;}
.fs7_c00286{font-size:3.420000px;}
.fs5_c00286{font-size:18.720000px;}
.fs0_c00286{font-size:20.400000px;}
.fs2_c00286{font-size:25.500000px;}
.fs1_c00286{font-size:28.920000px;}
.fs4_c00286{font-size:32.340000px;}
.fs3_c00286{font-size:35.700000px;}
.fs6_c00286{font-size:39.120000px;}
.y0_c00286{bottom:0.000000px;}
.yc1_c00286{bottom:312.825000px;}
.yc2_c00286{bottom:313.905000px;}
.yc0_c00286{bottom:315.405000px;}
.ybd_c00286{bottom:331.245000px;}
.ybc_c00286{bottom:332.745000px;}
.ybe_c00286{bottom:333.405000px;}
.ybf_c00286{bottom:333.630000px;}
.ybb_c00286{bottom:334.905000px;}
.yb7_c00286{bottom:352.245000px;}
.yb9_c00286{bottom:353.130000px;}
.yb8_c00286{bottom:353.325000px;}
.yb5_c00286{bottom:353.550000px;}
.yba_c00286{bottom:353.970000px;}
.yb6_c00286{bottom:354.405000px;}
.yb4_c00286{bottom:371.325000px;}
.yb0_c00286{bottom:371.745000px;}
.yb1_c00286{bottom:373.470000px;}
.yb2_c00286{bottom:373.905000px;}
.yb3_c00286{bottom:374.970000px;}
.yae_c00286{bottom:390.825000px;}
.yaf_c00286{bottom:391.245000px;}
.yad_c00286{bottom:393.405000px;}
.yab_c00286{bottom:410.745000px;}
.ya9_c00286{bottom:412.050000px;}
.yaa_c00286{bottom:412.905000px;}
.yac_c00286{bottom:413.970000px;}
.ya5_c00286{bottom:430.245000px;}
.ya4_c00286{bottom:431.550000px;}
.ya8_c00286{bottom:431.745000px;}
.ya6_c00286{bottom:432.405000px;}
.ya7_c00286{bottom:433.905000px;}
.ya3_c00286{bottom:449.745000px;}
.ya2_c00286{bottom:451.245000px;}
.y9f_c00286{bottom:451.905000px;}
.ya1_c00286{bottom:452.130000px;}
.ya0_c00286{bottom:452.970000px;}
.y9e_c00286{bottom:453.405000px;}
.y9a_c00286{bottom:468.405000px;}
.y9c_c00286{bottom:469.245000px;}
.y97_c00286{bottom:470.325000px;}
.y9b_c00286{bottom:470.745000px;}
.y9d_c00286{bottom:471.405000px;}
.y99_c00286{bottom:471.630000px;}
.y95_c00286{bottom:471.825000px;}
.y96_c00286{bottom:472.470000px;}
.y98_c00286{bottom:472.905000px;}
.y90_c00286{bottom:487.905000px;}
.y8e_c00286{bottom:489.180000px;}
.y93_c00286{bottom:490.245000px;}
.y94_c00286{bottom:490.905000px;}
.y91_c00286{bottom:491.130000px;}
.y8f_c00286{bottom:491.325000px;}
.y92_c00286{bottom:492.405000px;}
.y89_c00286{bottom:509.745000px;}
.y8d_c00286{bottom:510.630000px;}
.y8a_c00286{bottom:511.470000px;}
.y8b_c00286{bottom:511.905000px;}
.y8c_c00286{bottom:512.130000px;}
.y84_c00286{bottom:530.325000px;}
.y88_c00286{bottom:530.970000px;}
.y86_c00286{bottom:531.405000px;}
.y85_c00286{bottom:531.630000px;}
.y87_c00286{bottom:532.470000px;}
.y83_c00286{bottom:532.905000px;}
.y80_c00286{bottom:548.745000px;}
.y82_c00286{bottom:548.970000px;}
.y81_c00286{bottom:549.825000px;}
.y7f_c00286{bottom:550.905000px;}
.y7d_c00286{bottom:568.245000px;}
.y7b_c00286{bottom:569.745000px;}
.y7e_c00286{bottom:569.970000px;}
.y7c_c00286{bottom:570.405000px;}
.y79_c00286{bottom:588.180000px;}
.y77_c00286{bottom:589.245000px;}
.y7a_c00286{bottom:590.130000px;}
.y78_c00286{bottom:590.970000px;}
.y76_c00286{bottom:591.405000px;}
.y74_c00286{bottom:608.745000px;}
.y75_c00286{bottom:609.825000px;}
.y73_c00286{bottom:610.905000px;}
.y72_c00286{bottom:627.405000px;}
.y6f_c00286{bottom:628.245000px;}
.y71_c00286{bottom:629.130000px;}
.y70_c00286{bottom:629.325000px;}
.y6e_c00286{bottom:629.970000px;}
.y6d_c00286{bottom:630.405000px;}
.y6a_c00286{bottom:646.470000px;}
.y69_c00286{bottom:647.745000px;}
.y6c_c00286{bottom:648.630000px;}
.y6b_c00286{bottom:648.825000px;}
.y68_c00286{bottom:649.905000px;}
.y65_c00286{bottom:667.245000px;}
.y64_c00286{bottom:668.550000px;}
.y66_c00286{bottom:668.745000px;}
.y63_c00286{bottom:668.970000px;}
.y62_c00286{bottom:669.405000px;}
.y67_c00286{bottom:669.630000px;}
.y5e_c00286{bottom:687.180000px;}
.y5c_c00286{bottom:688.050000px;}
.y60_c00286{bottom:688.245000px;}
.y5f_c00286{bottom:689.325000px;}
.y61_c00286{bottom:689.970000px;}
.y5d_c00286{bottom:690.405000px;}
.y58_c00286{bottom:706.245000px;}
.y5b_c00286{bottom:707.745000px;}
.y59_c00286{bottom:708.405000px;}
.y5a_c00286{bottom:709.470000px;}
.y57_c00286{bottom:709.905000px;}
.y54_c00286{bottom:726.180000px;}
.y53_c00286{bottom:727.245000px;}
.y51_c00286{bottom:727.905000px;}
.y56_c00286{bottom:728.130000px;}
.y55_c00286{bottom:729.405000px;}
.y52_c00286{bottom:729.420000px;}
.y50_c00286{bottom:749.130000px;}
.y4e_c00286{bottom:765.405000px;}
.y4d_c00286{bottom:766.245000px;}
.y4f_c00286{bottom:767.325000px;}
.y4c_c00286{bottom:768.405000px;}
.y4a_c00286{bottom:784.905000px;}
.y48_c00286{bottom:785.745000px;}
.y49_c00286{bottom:786.825000px;}
.y4b_c00286{bottom:787.905000px;}
.y42_c00286{bottom:804.405000px;}
.y41_c00286{bottom:805.245000px;}
.y47_c00286{bottom:806.325000px;}
.y46_c00286{bottom:806.550000px;}
.y43_c00286{bottom:807.405000px;}
.y45_c00286{bottom:807.630000px;}
.y44_c00286{bottom:808.470000px;}
.y3b_c00286{bottom:823.905000px;}
.y3a_c00286{bottom:824.325000px;}
.y39_c00286{bottom:824.745000px;}
.y40_c00286{bottom:824.970000px;}
.y3c_c00286{bottom:825.825000px;}
.y3f_c00286{bottom:826.245000px;}
.y37_c00286{bottom:826.905000px;}
.y3e_c00286{bottom:827.325000px;}
.y38_c00286{bottom:827.970000px;}
.y3d_c00286{bottom:828.405000px;}
.y35_c00286{bottom:845.745000px;}
.y36_c00286{bottom:846.630000px;}
.y34_c00286{bottom:847.470000px;}
.y33_c00286{bottom:847.905000px;}
.y32_c00286{bottom:863.745000px;}
.y31_c00286{bottom:867.405000px;}
.y30_c00286{bottom:882.405000px;}
.y2f_c00286{bottom:883.680000px;}
.y2c_c00286{bottom:884.745000px;}
.y2b_c00286{bottom:885.630000px;}
.y2d_c00286{bottom:886.905000px;}
.y2e_c00286{bottom:887.970000px;}
.y2a_c00286{bottom:904.245000px;}
.y29_c00286{bottom:905.130000px;}
.y28_c00286{bottom:905.970000px;}
.y27_c00286{bottom:906.405000px;}
.y25_c00286{bottom:923.745000px;}
.y26_c00286{bottom:924.825000px;}
.y24_c00286{bottom:925.905000px;}
.y22_c00286{bottom:943.245000px;}
.y23_c00286{bottom:944.970000px;}
.y21_c00286{bottom:945.405000px;}
.y1e_c00286{bottom:962.745000px;}
.y20_c00286{bottom:964.245000px;}
.y1d_c00286{bottom:964.905000px;}
.y1f_c00286{bottom:965.130000px;}
.y1a_c00286{bottom:981.405000px;}
.y1b_c00286{bottom:981.825000px;}
.y18_c00286{bottom:982.245000px;}
.y19_c00286{bottom:983.325000px;}
.y1c_c00286{bottom:983.745000px;}
.y17_c00286{bottom:984.405000px;}
.y14_c00286{bottom:1001.745000px;}
.y15_c00286{bottom:1003.905000px;}
.y16_c00286{bottom:1004.130000px;}
.y13_c00286{bottom:1004.970000px;}
.ye_c00286{bottom:1021.245000px;}
.y11_c00286{bottom:1022.745000px;}
.yf_c00286{bottom:1023.405000px;}
.y10_c00286{bottom:1023.630000px;}
.y12_c00286{bottom:1024.470000px;}
.ya_c00286{bottom:1041.825000px;}
.yb_c00286{bottom:1042.245000px;}
.yc_c00286{bottom:1043.130000px;}
.yd_c00286{bottom:1043.970000px;}
.y9_c00286{bottom:1044.405000px;}
.y8_c00286{bottom:1060.905000px;}
.y5_c00286{bottom:1061.745000px;}
.y7_c00286{bottom:1062.630000px;}
.y6_c00286{bottom:1062.825000px;}
.y3_c00286{bottom:1063.905000px;}
.y4_c00286{bottom:1064.970000px;}
.y2_c00286{bottom:1099.905000px;}
.y1_c00286{bottom:1102.050000px;}
.h8_c00286{height:4.206533px;}
.h6_c00286{height:23.025234px;}
.h1_c00286{height:25.091602px;}
.h3_c00286{height:31.364502px;}
.h2_c00286{height:35.571035px;}
.h5_c00286{height:39.777568px;}
.h4_c00286{height:43.910303px;}
.h7_c00286{height:48.116836px;}
.h0_c00286{height:1335.000000px;}
.w0_c00286{width:880.500000px;}
.x0_c00286{left:0.000000px;}
.x3_c00286{left:151.500000px;}
.x27_c00286{left:153.420000px;}
.x79_c00286{left:166.500000px;}
.x32_c00286{left:169.500000px;}
.x52_c00286{left:174.420000px;}
.xa6_c00286{left:175.500000px;}
.x17_c00286{left:180.000000px;}
.xab_c00286{left:181.500000px;}
.x61_c00286{left:183.000000px;}
.x4_c00286{left:188.580000px;}
.x4a_c00286{left:192.420000px;}
.x33_c00286{left:195.000000px;}
.xbe_c00286{left:196.080000px;}
.xe7_c00286{left:198.000000px;}
.x28_c00286{left:199.080000px;}
.xcd_c00286{left:200.580000px;}
.x92_c00286{left:204.000000px;}
.x5_c00286{left:207.420000px;}
.xd2_c00286{left:208.500000px;}
.x62_c00286{left:211.920000px;}
.x6d_c00286{left:213.000000px;}
.x3f_c00286{left:214.920000px;}
.x29_c00286{left:217.920000px;}
.xda_c00286{left:220.500000px;}
.xb7_c00286{left:221.580000px;}
.x18_c00286{left:224.580000px;}
.x8d_c00286{left:226.920000px;}
.xcb_c00286{left:229.500000px;}
.xe8_c00286{left:232.920000px;}
.x6_c00286{left:234.000000px;}
.x6e_c00286{left:237.000000px;}
.x93_c00286{left:240.000000px;}
.x34_c00286{left:241.080000px;}
.xdd_c00286{left:243.420000px;}
.x19_c00286{left:244.920000px;}
.xaf_c00286{left:249.000000px;}
.xe2_c00286{left:254.580000px;}
.xbf_c00286{left:256.920000px;}
.x9e_c00286{left:258.645000px;}
.x7a_c00286{left:261.000000px;}
.x40_c00286{left:262.080000px;}
.xce_c00286{left:264.645000px;}
.xb0_c00286{left:267.420000px;}
.x1a_c00286{left:271.080000px;}
.x7_c00286{left:274.080000px;}
.x63_c00286{left:277.500000px;}
.xe6_c00286{left:279.000000px;}
.x98_c00286{left:280.500000px;}
.xdb_c00286{left:282.420000px;}
.xe9_c00286{left:283.500000px;}
.xc0_c00286{left:284.580000px;}
.xa7_c00286{left:287.580000px;}
.xd7_c00286{left:291.000000px;}
.x41_c00286{left:292.080000px;}
.x82_c00286{left:293.580000px;}
.xb1_c00286{left:297.000000px;}
.xc8_c00286{left:301.500000px;}
.x8_c00286{left:303.420000px;}
.x6f_c00286{left:307.500000px;}
.x2a_c00286{left:309.000000px;}
.xed_c00286{left:310.500000px;}
.xb8_c00286{left:312.420000px;}
.x1b_c00286{left:313.500000px;}
.xd0_c00286{left:315.000000px;}
.x35_c00286{left:316.500000px;}
.xe3_c00286{left:319.080000px;}
.x9f_c00286{left:322.080000px;}
.x99_c00286{left:325.500000px;}
.x83_c00286{left:328.500000px;}
.x9_c00286{left:330.000000px;}
.xde_c00286{left:331.500000px;}
.xef_c00286{left:333.420000px;}
.x2b_c00286{left:334.500000px;}
.x53_c00286{left:337.080000px;}
.x8e_c00286{left:339.000000px;}
.xf2_c00286{left:340.500000px;}
.x4b_c00286{left:342.000000px;}
.xc1_c00286{left:343.080000px;}
.x64_c00286{left:346.500000px;}
.x1c_c00286{left:347.580000px;}
.xa_c00286{left:349.500000px;}
.x94_c00286{left:351.000000px;}
.xd3_c00286{left:354.420000px;}
.xc9_c00286{left:355.500000px;}
.x36_c00286{left:360.000000px;}
.x84_c00286{left:361.275000px;}
.x70_c00286{left:364.080000px;}
.x1d_c00286{left:367.920000px;}
.xa0_c00286{left:369.000000px;}
.xb_c00286{left:372.000000px;}
.x65_c00286{left:373.500000px;}
.xb9_c00286{left:374.580000px;}
.x8f_c00286{left:376.500000px;}
.x54_c00286{left:379.080000px;}
.x71_c00286{left:382.920000px;}
.x7b_c00286{left:384.420000px;}
.x66_c00286{left:387.420000px;}
.x42_c00286{left:391.920000px;}
.x85_c00286{left:393.855000px;}
.x1e_c00286{left:396.420000px;}
.xa1_c00286{left:397.500000px;}
.xcc_c00286{left:399.000000px;}
.x4c_c00286{left:400.500000px;}
.xc_c00286{left:403.500000px;}
.x1_c00286{left:406.500000px;}
.x7c_c00286{left:411.000000px;}
.x95_c00286{left:412.080000px;}
.x2c_c00286{left:414.000000px;}
.x5a_c00286{left:415.500000px;}
.xdf_c00286{left:416.580000px;}
.x72_c00286{left:421.500000px;}
.xf0_c00286{left:423.420000px;}
.x1f_c00286{left:424.920000px;}
.x67_c00286{left:426.000000px;}
.xd4_c00286{left:427.500000px;}
.xdc_c00286{left:430.920000px;}
.xea_c00286{left:435.000000px;}
.xa2_c00286{left:436.920000px;}
.x73_c00286{left:438.420000px;}
.x7d_c00286{left:442.500000px;}
.xa8_c00286{left:443.580000px;}
.xac_c00286{left:445.500000px;}
.x37_c00286{left:448.920000px;}
.x43_c00286{left:452.355000px;}
.x55_c00286{left:455.580000px;}
.xd_c00286{left:458.580000px;}
.xa9_c00286{left:460.080000px;}
.x20_c00286{left:462.420000px;}
.xc2_c00286{left:465.000000px;}
.xa3_c00286{left:466.500000px;}
.xb4_c00286{left:468.420000px;}
.x4d_c00286{left:469.500000px;}
.x7e_c00286{left:471.420000px;}
.x38_c00286{left:475.080000px;}
.xe_c00286{left:477.000000px;}
.xd8_c00286{left:478.500000px;}
.x9a_c00286{left:481.920000px;}
.x44_c00286{left:483.645000px;}
.x96_c00286{left:486.000000px;}
.xad_c00286{left:488.580000px;}
.x5b_c00286{left:490.920000px;}
.x4e_c00286{left:492.000000px;}
.x2d_c00286{left:493.920000px;}
.x90_c00286{left:495.420000px;}
.x86_c00286{left:496.500000px;}
.xe0_c00286{left:499.500000px;}
.xca_c00286{left:501.420000px;}
.xe4_c00286{left:507.000000px;}
.x39_c00286{left:508.080000px;}
.xa4_c00286{left:509.580000px;}
.x74_c00286{left:514.080000px;}
.x2e_c00286{left:516.000000px;}
.x21_c00286{left:520.080000px;}
.x68_c00286{left:523.500000px;}
.xd5_c00286{left:525.000000px;}
.x3a_c00286{left:526.920000px;}
.x5c_c00286{left:531.000000px;}
.x87_c00286{left:532.500000px;}
.x91_c00286{left:534.420000px;}
.xba_c00286{left:535.920000px;}
.x4f_c00286{left:537.420000px;}
.xf_c00286{left:539.580000px;}
.xee_c00286{left:541.080000px;}
.x2f_c00286{left:543.420000px;}
.xc3_c00286{left:544.500000px;}
.x7f_c00286{left:546.000000px;}
.x5d_c00286{left:547.920000px;}
.xd9_c00286{left:549.000000px;}
.x56_c00286{left:550.500000px;}
.x3b_c00286{left:553.920000px;}
.xae_c00286{left:557.145000px;}
.x22_c00286{left:564.000000px;}
.x69_c00286{left:567.000000px;}
.xb2_c00286{left:568.500000px;}
.x9b_c00286{left:569.580000px;}
.x88_c00286{left:571.500000px;}
.xe5_c00286{left:573.420000px;}
.x45_c00286{left:574.920000px;}
.x5e_c00286{left:576.420000px;}
.xd6_c00286{left:577.500000px;}
.x3c_c00286{left:580.920000px;}
.x57_c00286{left:582.420000px;}
.x10_c00286{left:583.500000px;}
.x75_c00286{left:585.000000px;}
.x23_c00286{left:586.920000px;}
.xc4_c00286{left:588.000000px;}
.x9c_c00286{left:589.920000px;}
.x80_c00286{left:591.420000px;}
.xbb_c00286{left:592.920000px;}
.x89_c00286{left:595.500000px;}
.xe1_c00286{left:596.775000px;}
.xb5_c00286{left:598.080000px;}
.xeb_c00286{left:600.000000px;}
.x11_c00286{left:606.420000px;}
.xf1_c00286{left:607.500000px;}
.xc5_c00286{left:609.000000px;}
.x6a_c00286{left:612.000000px;}
.x24_c00286{left:613.080000px;}
.x50_c00286{left:615.420000px;}
.x46_c00286{left:616.500000px;}
.x3d_c00286{left:619.500000px;}
.xaa_c00286{left:621.000000px;}
.x8a_c00286{left:622.080000px;}
.x6b_c00286{left:627.000000px;}
.x81_c00286{left:628.500000px;}
.x76_c00286{left:629.580000px;}
.x12_c00286{left:631.500000px;}
.xbc_c00286{left:634.500000px;}
.x5f_c00286{left:636.420000px;}
.x3e_c00286{left:637.920000px;}
.xd1_c00286{left:640.920000px;}
.x58_c00286{left:642.000000px;}
.x51_c00286{left:643.920000px;}
.x30_c00286{left:645.000000px;}
.x25_c00286{left:646.080000px;}
.xa5_c00286{left:649.500000px;}
.x8b_c00286{left:652.080000px;}
.xbd_c00286{left:655.080000px;}
.x97_c00286{left:658.080000px;}
.x6c_c00286{left:660.000000px;}
.x47_c00286{left:661.920000px;}
.x9d_c00286{left:663.000000px;}
.x60_c00286{left:664.500000px;}
.xcf_c00286{left:669.000000px;}
.x13_c00286{left:670.500000px;}
.x8c_c00286{left:676.080000px;}
.xb3_c00286{left:678.000000px;}
.xc6_c00286{left:679.920000px;}
.x77_c00286{left:681.000000px;}
.xec_c00286{left:682.500000px;}
.x14_c00286{left:685.080000px;}
.x48_c00286{left:694.080000px;}
.x26_c00286{left:696.420000px;}
.x15_c00286{left:697.500000px;}
.x78_c00286{left:698.580000px;}
.x31_c00286{left:700.500000px;}
.x59_c00286{left:702.000000px;}
.x2_c00286{left:706.080000px;}
.x49_c00286{left:711.000000px;}
.xc7_c00286{left:712.080000px;}
.x16_c00286{left:715.080000px;}
.xb6_c00286{left:721.500000px;}
@media print{
.v0_c00286{vertical-align:0.000000pt;}
.ls0_c00286{letter-spacing:0.000000pt;}
.ws0_c00286{word-spacing:0.000000pt;}
.fs7_c00286{font-size:3.040000pt;}
.fs5_c00286{font-size:16.640000pt;}
.fs0_c00286{font-size:18.133333pt;}
.fs2_c00286{font-size:22.666667pt;}
.fs1_c00286{font-size:25.706667pt;}
.fs4_c00286{font-size:28.746667pt;}
.fs3_c00286{font-size:31.733333pt;}
.fs6_c00286{font-size:34.773333pt;}
.y0_c00286{bottom:0.000000pt;}
.yc1_c00286{bottom:278.066667pt;}
.yc2_c00286{bottom:279.026667pt;}
.yc0_c00286{bottom:280.360000pt;}
.ybd_c00286{bottom:294.440000pt;}
.ybc_c00286{bottom:295.773333pt;}
.ybe_c00286{bottom:296.360000pt;}
.ybf_c00286{bottom:296.560000pt;}
.ybb_c00286{bottom:297.693333pt;}
.yb7_c00286{bottom:313.106667pt;}
.yb9_c00286{bottom:313.893333pt;}
.yb8_c00286{bottom:314.066667pt;}
.yb5_c00286{bottom:314.266667pt;}
.yba_c00286{bottom:314.640000pt;}
.yb6_c00286{bottom:315.026667pt;}
.yb4_c00286{bottom:330.066667pt;}
.yb0_c00286{bottom:330.440000pt;}
.yb1_c00286{bottom:331.973333pt;}
.yb2_c00286{bottom:332.360000pt;}
.yb3_c00286{bottom:333.306667pt;}
.yae_c00286{bottom:347.400000pt;}
.yaf_c00286{bottom:347.773333pt;}
.yad_c00286{bottom:349.693333pt;}
.yab_c00286{bottom:365.106667pt;}
.ya9_c00286{bottom:366.266667pt;}
.yaa_c00286{bottom:367.026667pt;}
.yac_c00286{bottom:367.973333pt;}
.ya5_c00286{bottom:382.440000pt;}
.ya4_c00286{bottom:383.600000pt;}
.ya8_c00286{bottom:383.773333pt;}
.ya6_c00286{bottom:384.360000pt;}
.ya7_c00286{bottom:385.693333pt;}
.ya3_c00286{bottom:399.773333pt;}
.ya2_c00286{bottom:401.106667pt;}
.y9f_c00286{bottom:401.693333pt;}
.ya1_c00286{bottom:401.893333pt;}
.ya0_c00286{bottom:402.640000pt;}
.y9e_c00286{bottom:403.026667pt;}
.y9a_c00286{bottom:416.360000pt;}
.y9c_c00286{bottom:417.106667pt;}
.y97_c00286{bottom:418.066667pt;}
.y9b_c00286{bottom:418.440000pt;}
.y9d_c00286{bottom:419.026667pt;}
.y99_c00286{bottom:419.226667pt;}
.y95_c00286{bottom:419.400000pt;}
.y96_c00286{bottom:419.973333pt;}
.y98_c00286{bottom:420.360000pt;}
.y90_c00286{bottom:433.693333pt;}
.y8e_c00286{bottom:434.826667pt;}
.y93_c00286{bottom:435.773333pt;}
.y94_c00286{bottom:436.360000pt;}
.y91_c00286{bottom:436.560000pt;}
.y8f_c00286{bottom:436.733333pt;}
.y92_c00286{bottom:437.693333pt;}
.y89_c00286{bottom:453.106667pt;}
.y8d_c00286{bottom:453.893333pt;}
.y8a_c00286{bottom:454.640000pt;}
.y8b_c00286{bottom:455.026667pt;}
.y8c_c00286{bottom:455.226667pt;}
.y84_c00286{bottom:471.400000pt;}
.y88_c00286{bottom:471.973333pt;}
.y86_c00286{bottom:472.360000pt;}
.y85_c00286{bottom:472.560000pt;}
.y87_c00286{bottom:473.306667pt;}
.y83_c00286{bottom:473.693333pt;}
.y80_c00286{bottom:487.773333pt;}
.y82_c00286{bottom:487.973333pt;}
.y81_c00286{bottom:488.733333pt;}
.y7f_c00286{bottom:489.693333pt;}
.y7d_c00286{bottom:505.106667pt;}
.y7b_c00286{bottom:506.440000pt;}
.y7e_c00286{bottom:506.640000pt;}
.y7c_c00286{bottom:507.026667pt;}
.y79_c00286{bottom:522.826667pt;}
.y77_c00286{bottom:523.773333pt;}
.y7a_c00286{bottom:524.560000pt;}
.y78_c00286{bottom:525.306667pt;}
.y76_c00286{bottom:525.693333pt;}
.y74_c00286{bottom:541.106667pt;}
.y75_c00286{bottom:542.066667pt;}
.y73_c00286{bottom:543.026667pt;}
.y72_c00286{bottom:557.693333pt;}
.y6f_c00286{bottom:558.440000pt;}
.y71_c00286{bottom:559.226667pt;}
.y70_c00286{bottom:559.400000pt;}
.y6e_c00286{bottom:559.973333pt;}
.y6d_c00286{bottom:560.360000pt;}
.y6a_c00286{bottom:574.640000pt;}
.y69_c00286{bottom:575.773333pt;}
.y6c_c00286{bottom:576.560000pt;}
.y6b_c00286{bottom:576.733333pt;}
.y68_c00286{bottom:577.693333pt;}
.y65_c00286{bottom:593.106667pt;}
.y64_c00286{bottom:594.266667pt;}
.y66_c00286{bottom:594.440000pt;}
.y63_c00286{bottom:594.640000pt;}
.y62_c00286{bottom:595.026667pt;}
.y67_c00286{bottom:595.226667pt;}
.y5e_c00286{bottom:610.826667pt;}
.y5c_c00286{bottom:611.600000pt;}
.y60_c00286{bottom:611.773333pt;}
.y5f_c00286{bottom:612.733333pt;}
.y61_c00286{bottom:613.306667pt;}
.y5d_c00286{bottom:613.693333pt;}
.y58_c00286{bottom:627.773333pt;}
.y5b_c00286{bottom:629.106667pt;}
.y59_c00286{bottom:629.693333pt;}
.y5a_c00286{bottom:630.640000pt;}
.y57_c00286{bottom:631.026667pt;}
.y54_c00286{bottom:645.493333pt;}
.y53_c00286{bottom:646.440000pt;}
.y51_c00286{bottom:647.026667pt;}
.y56_c00286{bottom:647.226667pt;}
.y55_c00286{bottom:648.360000pt;}
.y52_c00286{bottom:648.373333pt;}
.y50_c00286{bottom:665.893333pt;}
.y4e_c00286{bottom:680.360000pt;}
.y4d_c00286{bottom:681.106667pt;}
.y4f_c00286{bottom:682.066667pt;}
.y4c_c00286{bottom:683.026667pt;}
.y4a_c00286{bottom:697.693333pt;}
.y48_c00286{bottom:698.440000pt;}
.y49_c00286{bottom:699.400000pt;}
.y4b_c00286{bottom:700.360000pt;}
.y42_c00286{bottom:715.026667pt;}
.y41_c00286{bottom:715.773333pt;}
.y47_c00286{bottom:716.733333pt;}
.y46_c00286{bottom:716.933333pt;}
.y43_c00286{bottom:717.693333pt;}
.y45_c00286{bottom:717.893333pt;}
.y44_c00286{bottom:718.640000pt;}
.y3b_c00286{bottom:732.360000pt;}
.y3a_c00286{bottom:732.733333pt;}
.y39_c00286{bottom:733.106667pt;}
.y40_c00286{bottom:733.306667pt;}
.y3c_c00286{bottom:734.066667pt;}
.y3f_c00286{bottom:734.440000pt;}
.y37_c00286{bottom:735.026667pt;}
.y3e_c00286{bottom:735.400000pt;}
.y38_c00286{bottom:735.973333pt;}
.y3d_c00286{bottom:736.360000pt;}
.y35_c00286{bottom:751.773333pt;}
.y36_c00286{bottom:752.560000pt;}
.y34_c00286{bottom:753.306667pt;}
.y33_c00286{bottom:753.693333pt;}
.y32_c00286{bottom:767.773333pt;}
.y31_c00286{bottom:771.026667pt;}
.y30_c00286{bottom:784.360000pt;}
.y2f_c00286{bottom:785.493333pt;}
.y2c_c00286{bottom:786.440000pt;}
.y2b_c00286{bottom:787.226667pt;}
.y2d_c00286{bottom:788.360000pt;}
.y2e_c00286{bottom:789.306667pt;}
.y2a_c00286{bottom:803.773333pt;}
.y29_c00286{bottom:804.560000pt;}
.y28_c00286{bottom:805.306667pt;}
.y27_c00286{bottom:805.693333pt;}
.y25_c00286{bottom:821.106667pt;}
.y26_c00286{bottom:822.066667pt;}
.y24_c00286{bottom:823.026667pt;}
.y22_c00286{bottom:838.440000pt;}
.y23_c00286{bottom:839.973333pt;}
.y21_c00286{bottom:840.360000pt;}
.y1e_c00286{bottom:855.773333pt;}
.y20_c00286{bottom:857.106667pt;}
.y1d_c00286{bottom:857.693333pt;}
.y1f_c00286{bottom:857.893333pt;}
.y1a_c00286{bottom:872.360000pt;}
.y1b_c00286{bottom:872.733333pt;}
.y18_c00286{bottom:873.106667pt;}
.y19_c00286{bottom:874.066667pt;}
.y1c_c00286{bottom:874.440000pt;}
.y17_c00286{bottom:875.026667pt;}
.y14_c00286{bottom:890.440000pt;}
.y15_c00286{bottom:892.360000pt;}
.y16_c00286{bottom:892.560000pt;}
.y13_c00286{bottom:893.306667pt;}
.ye_c00286{bottom:907.773333pt;}
.y11_c00286{bottom:909.106667pt;}
.yf_c00286{bottom:909.693333pt;}
.y10_c00286{bottom:909.893333pt;}
.y12_c00286{bottom:910.640000pt;}
.ya_c00286{bottom:926.066667pt;}
.yb_c00286{bottom:926.440000pt;}
.yc_c00286{bottom:927.226667pt;}
.yd_c00286{bottom:927.973333pt;}
.y9_c00286{bottom:928.360000pt;}
.y8_c00286{bottom:943.026667pt;}
.y5_c00286{bottom:943.773333pt;}
.y7_c00286{bottom:944.560000pt;}
.y6_c00286{bottom:944.733333pt;}
.y3_c00286{bottom:945.693333pt;}
.y4_c00286{bottom:946.640000pt;}
.y2_c00286{bottom:977.693333pt;}
.y1_c00286{bottom:979.600000pt;}
.h8_c00286{height:3.739141pt;}
.h6_c00286{height:20.466875pt;}
.h1_c00286{height:22.303646pt;}
.h3_c00286{height:27.879557pt;}
.h2_c00286{height:31.618698pt;}
.h5_c00286{height:35.357839pt;}
.h4_c00286{height:39.031380pt;}
.h7_c00286{height:42.770521pt;}
.h0_c00286{height:1186.666667pt;}
.w0_c00286{width:782.666667pt;}
.x0_c00286{left:0.000000pt;}
.x3_c00286{left:134.666667pt;}
.x27_c00286{left:136.373333pt;}
.x79_c00286{left:148.000000pt;}
.x32_c00286{left:150.666667pt;}
.x52_c00286{left:155.040000pt;}
.xa6_c00286{left:156.000000pt;}
.x17_c00286{left:160.000000pt;}
.xab_c00286{left:161.333333pt;}
.x61_c00286{left:162.666667pt;}
.x4_c00286{left:167.626667pt;}
.x4a_c00286{left:171.040000pt;}
.x33_c00286{left:173.333333pt;}
.xbe_c00286{left:174.293333pt;}
.xe7_c00286{left:176.000000pt;}
.x28_c00286{left:176.960000pt;}
.xcd_c00286{left:178.293333pt;}
.x92_c00286{left:181.333333pt;}
.x5_c00286{left:184.373333pt;}
.xd2_c00286{left:185.333333pt;}
.x62_c00286{left:188.373333pt;}
.x6d_c00286{left:189.333333pt;}
.x3f_c00286{left:191.040000pt;}
.x29_c00286{left:193.706667pt;}
.xda_c00286{left:196.000000pt;}
.xb7_c00286{left:196.960000pt;}
.x18_c00286{left:199.626667pt;}
.x8d_c00286{left:201.706667pt;}
.xcb_c00286{left:204.000000pt;}
.xe8_c00286{left:207.040000pt;}
.x6_c00286{left:208.000000pt;}
.x6e_c00286{left:210.666667pt;}
.x93_c00286{left:213.333333pt;}
.x34_c00286{left:214.293333pt;}
.xdd_c00286{left:216.373333pt;}
.x19_c00286{left:217.706667pt;}
.xaf_c00286{left:221.333333pt;}
.xe2_c00286{left:226.293333pt;}
.xbf_c00286{left:228.373333pt;}
.x9e_c00286{left:229.906667pt;}
.x7a_c00286{left:232.000000pt;}
.x40_c00286{left:232.960000pt;}
.xce_c00286{left:235.240000pt;}
.xb0_c00286{left:237.706667pt;}
.x1a_c00286{left:240.960000pt;}
.x7_c00286{left:243.626667pt;}
.x63_c00286{left:246.666667pt;}
.xe6_c00286{left:248.000000pt;}
.x98_c00286{left:249.333333pt;}
.xdb_c00286{left:251.040000pt;}
.xe9_c00286{left:252.000000pt;}
.xc0_c00286{left:252.960000pt;}
.xa7_c00286{left:255.626667pt;}
.xd7_c00286{left:258.666667pt;}
.x41_c00286{left:259.626667pt;}
.x82_c00286{left:260.960000pt;}
.xb1_c00286{left:264.000000pt;}
.xc8_c00286{left:268.000000pt;}
.x8_c00286{left:269.706667pt;}
.x6f_c00286{left:273.333333pt;}
.x2a_c00286{left:274.666667pt;}
.xed_c00286{left:276.000000pt;}
.xb8_c00286{left:277.706667pt;}
.x1b_c00286{left:278.666667pt;}
.xd0_c00286{left:280.000000pt;}
.x35_c00286{left:281.333333pt;}
.xe3_c00286{left:283.626667pt;}
.x9f_c00286{left:286.293333pt;}
.x99_c00286{left:289.333333pt;}
.x83_c00286{left:292.000000pt;}
.x9_c00286{left:293.333333pt;}
.xde_c00286{left:294.666667pt;}
.xef_c00286{left:296.373333pt;}
.x2b_c00286{left:297.333333pt;}
.x53_c00286{left:299.626667pt;}
.x8e_c00286{left:301.333333pt;}
.xf2_c00286{left:302.666667pt;}
.x4b_c00286{left:304.000000pt;}
.xc1_c00286{left:304.960000pt;}
.x64_c00286{left:308.000000pt;}
.x1c_c00286{left:308.960000pt;}
.xa_c00286{left:310.666667pt;}
.x94_c00286{left:312.000000pt;}
.xd3_c00286{left:315.040000pt;}
.xc9_c00286{left:316.000000pt;}
.x36_c00286{left:320.000000pt;}
.x84_c00286{left:321.133333pt;}
.x70_c00286{left:323.626667pt;}
.x1d_c00286{left:327.040000pt;}
.xa0_c00286{left:328.000000pt;}
.xb_c00286{left:330.666667pt;}
.x65_c00286{left:332.000000pt;}
.xb9_c00286{left:332.960000pt;}
.x8f_c00286{left:334.666667pt;}
.x54_c00286{left:336.960000pt;}
.x71_c00286{left:340.373333pt;}
.x7b_c00286{left:341.706667pt;}
.x66_c00286{left:344.373333pt;}
.x42_c00286{left:348.373333pt;}
.x85_c00286{left:350.093333pt;}
.x1e_c00286{left:352.373333pt;}
.xa1_c00286{left:353.333333pt;}
.xcc_c00286{left:354.666667pt;}
.x4c_c00286{left:356.000000pt;}
.xc_c00286{left:358.666667pt;}
.x1_c00286{left:361.333333pt;}
.x7c_c00286{left:365.333333pt;}
.x95_c00286{left:366.293333pt;}
.x2c_c00286{left:368.000000pt;}
.x5a_c00286{left:369.333333pt;}
.xdf_c00286{left:370.293333pt;}
.x72_c00286{left:374.666667pt;}
.xf0_c00286{left:376.373333pt;}
.x1f_c00286{left:377.706667pt;}
.x67_c00286{left:378.666667pt;}
.xd4_c00286{left:380.000000pt;}
.xdc_c00286{left:383.040000pt;}
.xea_c00286{left:386.666667pt;}
.xa2_c00286{left:388.373333pt;}
.x73_c00286{left:389.706667pt;}
.x7d_c00286{left:393.333333pt;}
.xa8_c00286{left:394.293333pt;}
.xac_c00286{left:396.000000pt;}
.x37_c00286{left:399.040000pt;}
.x43_c00286{left:402.093333pt;}
.x55_c00286{left:404.960000pt;}
.xd_c00286{left:407.626667pt;}
.xa9_c00286{left:408.960000pt;}
.x20_c00286{left:411.040000pt;}
.xc2_c00286{left:413.333333pt;}
.xa3_c00286{left:414.666667pt;}
.xb4_c00286{left:416.373333pt;}
.x4d_c00286{left:417.333333pt;}
.x7e_c00286{left:419.040000pt;}
.x38_c00286{left:422.293333pt;}
.xe_c00286{left:424.000000pt;}
.xd8_c00286{left:425.333333pt;}
.x9a_c00286{left:428.373333pt;}
.x44_c00286{left:429.906667pt;}
.x96_c00286{left:432.000000pt;}
.xad_c00286{left:434.293333pt;}
.x5b_c00286{left:436.373333pt;}
.x4e_c00286{left:437.333333pt;}
.x2d_c00286{left:439.040000pt;}
.x90_c00286{left:440.373333pt;}
.x86_c00286{left:441.333333pt;}
.xe0_c00286{left:444.000000pt;}
.xca_c00286{left:445.706667pt;}
.xe4_c00286{left:450.666667pt;}
.x39_c00286{left:451.626667pt;}
.xa4_c00286{left:452.960000pt;}
.x74_c00286{left:456.960000pt;}
.x2e_c00286{left:458.666667pt;}
.x21_c00286{left:462.293333pt;}
.x68_c00286{left:465.333333pt;}
.xd5_c00286{left:466.666667pt;}
.x3a_c00286{left:468.373333pt;}
.x5c_c00286{left:472.000000pt;}
.x87_c00286{left:473.333333pt;}
.x91_c00286{left:475.040000pt;}
.xba_c00286{left:476.373333pt;}
.x4f_c00286{left:477.706667pt;}
.xf_c00286{left:479.626667pt;}
.xee_c00286{left:480.960000pt;}
.x2f_c00286{left:483.040000pt;}
.xc3_c00286{left:484.000000pt;}
.x7f_c00286{left:485.333333pt;}
.x5d_c00286{left:487.040000pt;}
.xd9_c00286{left:488.000000pt;}
.x56_c00286{left:489.333333pt;}
.x3b_c00286{left:492.373333pt;}
.xae_c00286{left:495.240000pt;}
.x22_c00286{left:501.333333pt;}
.x69_c00286{left:504.000000pt;}
.xb2_c00286{left:505.333333pt;}
.x9b_c00286{left:506.293333pt;}
.x88_c00286{left:508.000000pt;}
.xe5_c00286{left:509.706667pt;}
.x45_c00286{left:511.040000pt;}
.x5e_c00286{left:512.373333pt;}
.xd6_c00286{left:513.333333pt;}
.x3c_c00286{left:516.373333pt;}
.x57_c00286{left:517.706667pt;}
.x10_c00286{left:518.666667pt;}
.x75_c00286{left:520.000000pt;}
.x23_c00286{left:521.706667pt;}
.xc4_c00286{left:522.666667pt;}
.x9c_c00286{left:524.373333pt;}
.x80_c00286{left:525.706667pt;}
.xbb_c00286{left:527.040000pt;}
.x89_c00286{left:529.333333pt;}
.xe1_c00286{left:530.466667pt;}
.xb5_c00286{left:531.626667pt;}
.xeb_c00286{left:533.333333pt;}
.x11_c00286{left:539.040000pt;}
.xf1_c00286{left:540.000000pt;}
.xc5_c00286{left:541.333333pt;}
.x6a_c00286{left:544.000000pt;}
.x24_c00286{left:544.960000pt;}
.x50_c00286{left:547.040000pt;}
.x46_c00286{left:548.000000pt;}
.x3d_c00286{left:550.666667pt;}
.xaa_c00286{left:552.000000pt;}
.x8a_c00286{left:552.960000pt;}
.x6b_c00286{left:557.333333pt;}
.x81_c00286{left:558.666667pt;}
.x76_c00286{left:559.626667pt;}
.x12_c00286{left:561.333333pt;}
.xbc_c00286{left:564.000000pt;}
.x5f_c00286{left:565.706667pt;}
.x3e_c00286{left:567.040000pt;}
.xd1_c00286{left:569.706667pt;}
.x58_c00286{left:570.666667pt;}
.x51_c00286{left:572.373333pt;}
.x30_c00286{left:573.333333pt;}
.x25_c00286{left:574.293333pt;}
.xa5_c00286{left:577.333333pt;}
.x8b_c00286{left:579.626667pt;}
.xbd_c00286{left:582.293333pt;}
.x97_c00286{left:584.960000pt;}
.x6c_c00286{left:586.666667pt;}
.x47_c00286{left:588.373333pt;}
.x9d_c00286{left:589.333333pt;}
.x60_c00286{left:590.666667pt;}
.xcf_c00286{left:594.666667pt;}
.x13_c00286{left:596.000000pt;}
.x8c_c00286{left:600.960000pt;}
.xb3_c00286{left:602.666667pt;}
.xc6_c00286{left:604.373333pt;}
.x77_c00286{left:605.333333pt;}
.xec_c00286{left:606.666667pt;}
.x14_c00286{left:608.960000pt;}
.x48_c00286{left:616.960000pt;}
.x26_c00286{left:619.040000pt;}
.x15_c00286{left:620.000000pt;}
.x78_c00286{left:620.960000pt;}
.x31_c00286{left:622.666667pt;}
.x59_c00286{left:624.000000pt;}
.x2_c00286{left:627.626667pt;}
.x49_c00286{left:632.000000pt;}
.xc7_c00286{left:632.960000pt;}
.x16_c00286{left:635.626667pt;}
.xb6_c00286{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6960fc84a13b82124277972b.woff2')format("woff");}.ff1_c00287{font-family:ff1_c00287;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m56_c00287{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.mb9_c00287{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m5f_c00287{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.mca_c00287{transform:matrix(0.348160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348160,0.000000,0.000000,0.250000,0,0);}
.m31_c00287{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m74_c00287{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m3b_c00287{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mdf_c00287{transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);}
.m1f_c00287{transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);}
.m0_c00287{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m6_c00287{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mc6_c00287{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m3f_c00287{transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);}
.m9d_c00287{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mcb_c00287{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00287{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mc0_c00287{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m75_c00287{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.md6_c00287{transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);}
.mc1_c00287{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m4_c00287{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m5e_c00287{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m84_c00287{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m58_c00287{transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);}
.m2a_c00287{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m76_c00287{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.ma0_c00287{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m9a_c00287{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m2f_c00287{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.mb1_c00287{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.me2_c00287{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.md2_c00287{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mc2_c00287{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m3a_c00287{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m8f_c00287{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.md_c00287{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.m4e_c00287{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m63_c00287{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mbe_c00287{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m59_c00287{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m9e_c00287{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m6f_c00287{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m11_c00287{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m33_c00287{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mb6_c00287{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m30_c00287{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.mbd_c00287{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m78_c00287{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.md1_c00287{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.mcf_c00287{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m62_c00287{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m28_c00287{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mb3_c00287{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m5_c00287{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mc7_c00287{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.mcd_c00287{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.md5_c00287{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mbc_c00287{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.mb5_c00287{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.ma7_c00287{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.me8_c00287{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m83_c00287{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.md9_c00287{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.meb_c00287{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m17_c00287{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m64_c00287{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mac_c00287{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.m21_c00287{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m24_c00287{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m29_c00287{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m79_c00287{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m5c_c00287{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.m6d_c00287{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m14_c00287{transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);}
.m95_c00287{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m20_c00287{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m38_c00287{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mbf_c00287{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.mb8_c00287{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.mc_c00287{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.m87_c00287{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m57_c00287{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mde_c00287{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m12_c00287{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.mec_c00287{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m16_c00287{transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);}
.m68_c00287{transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);}
.m13_c00287{transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);}
.m80_c00287{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mce_c00287{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m90_c00287{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m18_c00287{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m7f_c00287{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m69_c00287{transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);}
.me6_c00287{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.mda_c00287{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.m32_c00287{transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);}
.ma1_c00287{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.md0_c00287{transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);}
.mea_c00287{transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);}
.m88_c00287{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m54_c00287{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.ma5_c00287{transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);}
.m82_c00287{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.me_c00287{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.me3_c00287{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mbb_c00287{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m8b_c00287{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.mf0_c00287{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mc5_c00287{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m8_c00287{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);}
.ma3_c00287{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m7e_c00287{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m3_c00287{transform:matrix(0.508349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508349,0.000000,0.000000,0.250000,0,0);}
.m42_c00287{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m36_c00287{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m77_c00287{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m4a_c00287{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m41_c00287{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mc4_c00287{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.mcc_c00287{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m8a_c00287{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m39_c00287{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m9c_c00287{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m48_c00287{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.mb2_c00287{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.mae_c00287{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m47_c00287{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m5b_c00287{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mb4_c00287{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.md8_c00287{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m27_c00287{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.mee_c00287{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.me4_c00287{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m85_c00287{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m37_c00287{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m49_c00287{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m6c_c00287{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m25_c00287{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m26_c00287{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m73_c00287{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m35_c00287{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.ma4_c00287{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m4d_c00287{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.mab_c00287{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m94_c00287{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.me7_c00287{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m93_c00287{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m19_c00287{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m9f_c00287{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m7d_c00287{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.mad_c00287{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m46_c00287{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m97_c00287{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m5d_c00287{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m81_c00287{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m89_c00287{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m86_c00287{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m9_c00287{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.mc9_c00287{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m4b_c00287{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m55_c00287{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m2e_c00287{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m6a_c00287{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m45_c00287{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.ma_c00287{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m3d_c00287{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m7c_c00287{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m2b_c00287{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m91_c00287{transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);}
.m9b_c00287{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mdc_c00287{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m6b_c00287{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mb0_c00287{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.mdd_c00287{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m71_c00287{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m44_c00287{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m7b_c00287{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m34_c00287{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m53_c00287{transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);}
.m3c_c00287{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mc3_c00287{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.mf_c00287{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m98_c00287{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m6e_c00287{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.maa_c00287{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mb7_c00287{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m8e_c00287{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m52_c00287{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m50_c00287{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.maf_c00287{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m51_c00287{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.m2_c00287{transform:matrix(0.596992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596992,0.000000,0.000000,0.250000,0,0);}
.m60_c00287{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m4f_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);}
.me0_c00287{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.ma6_c00287{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m61_c00287{transform:matrix(0.612552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612552,0.000000,0.000000,0.250000,0,0);}
.ma2_c00287{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.med_c00287{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m5a_c00287{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m1a_c00287{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m7_c00287{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_c00287{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);}
.m99_c00287{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mef_c00287{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.m10_c00287{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.mb_c00287{transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);}
.m1_c00287{transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);}
.ma8_c00287{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m8d_c00287{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m4c_c00287{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m1b_c00287{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.me9_c00287{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m1d_c00287{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.m1e_c00287{transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);}
.m40_c00287{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m1c_c00287{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m65_c00287{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m96_c00287{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.me1_c00287{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.md3_c00287{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.md7_c00287{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m72_c00287{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m15_c00287{transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);}
.m3e_c00287{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.md4_c00287{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m66_c00287{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m70_c00287{transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);}
.m8c_c00287{transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);}
.m2c_c00287{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m92_c00287{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mc8_c00287{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mba_c00287{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m67_c00287{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.ma9_c00287{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m7a_c00287{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.mdb_c00287{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.m43_c00287{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.me5_c00287{transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);}
.m22_c00287{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws1_c00287{word-spacing:-4.994764px;}
.ws0_c00287{word-spacing:-1.611816px;}
.ws2_c00287{word-spacing:0.000000px;}
.fc0_c00287{color:transparent;}
.fs5_c00287{font-size:3.420000px;}
.fs6_c00287{font-size:18.720000px;}
.fs1_c00287{font-size:20.400000px;}
.fs4_c00287{font-size:25.500000px;}
.fs2_c00287{font-size:28.920000px;}
.fs3_c00287{font-size:32.340000px;}
.fs0_c00287{font-size:35.700000px;}
.fs7_c00287{font-size:39.120000px;}
.y0_c00287{bottom:0.000000px;}
.yc8_c00287{bottom:247.905000px;}
.ycb_c00287{bottom:248.745000px;}
.yca_c00287{bottom:250.245000px;}
.yc9_c00287{bottom:251.130000px;}
.yc7_c00287{bottom:251.970000px;}
.yc6_c00287{bottom:252.405000px;}
.yc4_c00287{bottom:268.470000px;}
.yc3_c00287{bottom:268.905000px;}
.yc5_c00287{bottom:269.745000px;}
.yc1_c00287{bottom:270.405000px;}
.yc2_c00287{bottom:271.905000px;}
.ybc_c00287{bottom:289.245000px;}
.ybf_c00287{bottom:290.130000px;}
.yc0_c00287{bottom:290.325000px;}
.ybd_c00287{bottom:290.970000px;}
.ybb_c00287{bottom:291.405000px;}
.ybe_c00287{bottom:291.630000px;}
.yb8_c00287{bottom:307.905000px;}
.yba_c00287{bottom:308.745000px;}
.yb9_c00287{bottom:309.825000px;}
.yb7_c00287{bottom:310.905000px;}
.yb0_c00287{bottom:328.245000px;}
.yb6_c00287{bottom:328.470000px;}
.yb2_c00287{bottom:329.745000px;}
.yb1_c00287{bottom:330.405000px;}
.yb4_c00287{bottom:330.630000px;}
.yb5_c00287{bottom:331.470000px;}
.yb3_c00287{bottom:331.905000px;}
.yaf_c00287{bottom:347.745000px;}
.yac_c00287{bottom:349.245000px;}
.yaa_c00287{bottom:349.905000px;}
.yad_c00287{bottom:350.130000px;}
.yae_c00287{bottom:350.970000px;}
.yab_c00287{bottom:351.405000px;}
.ya7_c00287{bottom:367.245000px;}
.ya6_c00287{bottom:368.745000px;}
.ya3_c00287{bottom:369.405000px;}
.ya4_c00287{bottom:369.630000px;}
.ya5_c00287{bottom:370.470000px;}
.ya8_c00287{bottom:370.905000px;}
.ya9_c00287{bottom:371.970000px;}
.ya2_c00287{bottom:387.405000px;}
.y9e_c00287{bottom:388.245000px;}
.ya0_c00287{bottom:390.405000px;}
.ya1_c00287{bottom:391.470000px;}
.y9f_c00287{bottom:391.920000px;}
.y99_c00287{bottom:407.745000px;}
.y9d_c00287{bottom:409.245000px;}
.y9c_c00287{bottom:409.905000px;}
.y9a_c00287{bottom:410.130000px;}
.y9b_c00287{bottom:411.405000px;}
.y97_c00287{bottom:426.405000px;}
.y95_c00287{bottom:427.245000px;}
.y98_c00287{bottom:428.325000px;}
.y92_c00287{bottom:428.745000px;}
.y94_c00287{bottom:429.405000px;}
.y96_c00287{bottom:429.630000px;}
.y93_c00287{bottom:430.905000px;}
.y90_c00287{bottom:446.745000px;}
.y8c_c00287{bottom:446.970000px;}
.y8e_c00287{bottom:447.180000px;}
.y8a_c00287{bottom:447.405000px;}
.y8f_c00287{bottom:448.245000px;}
.y91_c00287{bottom:448.905000px;}
.y8b_c00287{bottom:449.130000px;}
.y8d_c00287{bottom:450.405000px;}
.y87_c00287{bottom:465.825000px;}
.y89_c00287{bottom:466.470000px;}
.y85_c00287{bottom:467.745000px;}
.y88_c00287{bottom:468.630000px;}
.y84_c00287{bottom:469.905000px;}
.y86_c00287{bottom:470.970000px;}
.y82_c00287{bottom:487.245000px;}
.y83_c00287{bottom:488.970000px;}
.y80_c00287{bottom:489.405000px;}
.y81_c00287{bottom:489.630000px;}
.y7e_c00287{bottom:506.745000px;}
.y7f_c00287{bottom:507.825000px;}
.y7d_c00287{bottom:508.905000px;}
.y7c_c00287{bottom:509.130000px;}
.y7b_c00287{bottom:525.405000px;}
.y7a_c00287{bottom:526.245000px;}
.y78_c00287{bottom:527.325000px;}
.y77_c00287{bottom:527.745000px;}
.y79_c00287{bottom:528.405000px;}
.y76_c00287{bottom:547.245000px;}
.y75_c00287{bottom:548.130000px;}
.y74_c00287{bottom:549.405000px;}
.y6d_c00287{bottom:564.405000px;}
.y71_c00287{bottom:564.825000px;}
.y73_c00287{bottom:565.470000px;}
.y70_c00287{bottom:566.745000px;}
.y72_c00287{bottom:567.630000px;}
.y6e_c00287{bottom:568.905000px;}
.y6f_c00287{bottom:569.970000px;}
.y6c_c00287{bottom:583.905000px;}
.y69_c00287{bottom:586.245000px;}
.y6b_c00287{bottom:587.130000px;}
.y6a_c00287{bottom:587.970000px;}
.y68_c00287{bottom:588.405000px;}
.y63_c00287{bottom:605.745000px;}
.y64_c00287{bottom:606.630000px;}
.y66_c00287{bottom:606.825000px;}
.y67_c00287{bottom:607.470000px;}
.y65_c00287{bottom:607.905000px;}
.y61_c00287{bottom:625.245000px;}
.y62_c00287{bottom:626.130000px;}
.y60_c00287{bottom:627.405000px;}
.y5f_c00287{bottom:645.180000px;}
.y5b_c00287{bottom:646.245000px;}
.y5a_c00287{bottom:646.905000px;}
.y5c_c00287{bottom:647.130000px;}
.y5e_c00287{bottom:647.970000px;}
.y5d_c00287{bottom:648.405000px;}
.y59_c00287{bottom:664.470000px;}
.y58_c00287{bottom:665.325000px;}
.y56_c00287{bottom:665.745000px;}
.y53_c00287{bottom:666.405000px;}
.y54_c00287{bottom:666.630000px;}
.y57_c00287{bottom:667.470000px;}
.y55_c00287{bottom:667.905000px;}
.y51_c00287{bottom:682.905000px;}
.y4f_c00287{bottom:683.970000px;}
.y4d_c00287{bottom:685.245000px;}
.y4c_c00287{bottom:685.905000px;}
.y52_c00287{bottom:686.130000px;}
.y4e_c00287{bottom:686.325000px;}
.y50_c00287{bottom:687.405000px;}
.y4b_c00287{bottom:704.745000px;}
.y4a_c00287{bottom:706.905000px;}
.y49_c00287{bottom:723.825000px;}
.y46_c00287{bottom:724.245000px;}
.y47_c00287{bottom:725.130000px;}
.y48_c00287{bottom:726.405000px;}
.y43_c00287{bottom:742.680000px;}
.y44_c00287{bottom:743.745000px;}
.y45_c00287{bottom:744.630000px;}
.y41_c00287{bottom:745.905000px;}
.y42_c00287{bottom:746.130000px;}
.y40_c00287{bottom:746.970000px;}
.y3d_c00287{bottom:762.405000px;}
.y3e_c00287{bottom:763.245000px;}
.y3c_c00287{bottom:765.405000px;}
.y3f_c00287{bottom:765.630000px;}
.y37_c00287{bottom:782.745000px;}
.y3b_c00287{bottom:783.825000px;}
.y39_c00287{bottom:784.245000px;}
.y38_c00287{bottom:784.905000px;}
.y3a_c00287{bottom:785.130000px;}
.y36_c00287{bottom:802.245000px;}
.y35_c00287{bottom:803.745000px;}
.y34_c00287{bottom:804.405000px;}
.y32_c00287{bottom:823.245000px;}
.y33_c00287{bottom:824.325000px;}
.y30_c00287{bottom:824.970000px;}
.y31_c00287{bottom:825.405000px;}
.y2f_c00287{bottom:841.470000px;}
.y2d_c00287{bottom:842.745000px;}
.y2a_c00287{bottom:843.405000px;}
.y2c_c00287{bottom:844.470000px;}
.y2b_c00287{bottom:844.905000px;}
.y2e_c00287{bottom:845.970000px;}
.y26_c00287{bottom:862.245000px;}
.y27_c00287{bottom:863.130000px;}
.y28_c00287{bottom:864.405000px;}
.y29_c00287{bottom:865.470000px;}
.y25_c00287{bottom:879.405000px;}
.y22_c00287{bottom:880.905000px;}
.y23_c00287{bottom:881.745000px;}
.y24_c00287{bottom:882.630000px;}
.y20_c00287{bottom:883.905000px;}
.y21_c00287{bottom:883.920000px;}
.y1f_c00287{bottom:901.245000px;}
.y1d_c00287{bottom:920.745000px;}
.y1e_c00287{bottom:921.825000px;}
.y1a_c00287{bottom:922.905000px;}
.y1c_c00287{bottom:922.920000px;}
.y1b_c00287{bottom:923.130000px;}
.y16_c00287{bottom:941.745000px;}
.y18_c00287{bottom:942.825000px;}
.y19_c00287{bottom:943.905000px;}
.y17_c00287{bottom:943.920000px;}
.y12_c00287{bottom:959.745000px;}
.y15_c00287{bottom:961.905000px;}
.y14_c00287{bottom:963.405000px;}
.y13_c00287{bottom:963.420000px;}
.y11_c00287{bottom:990.825000px;}
.y10_c00287{bottom:994.050000px;}
.yd_c00287{bottom:1006.905000px;}
.ye_c00287{bottom:1009.050000px;}
.yf_c00287{bottom:1009.470000px;}
.y8_c00287{bottom:1030.470000px;}
.yb_c00287{bottom:1031.325000px;}
.yc_c00287{bottom:1031.550000px;}
.ya_c00287{bottom:1032.405000px;}
.y7_c00287{bottom:1033.050000px;}
.y9_c00287{bottom:1033.470000px;}
.y6_c00287{bottom:1034.550000px;}
.y4_c00287{bottom:1058.325000px;}
.y5_c00287{bottom:1058.745000px;}
.y3_c00287{bottom:1059.405000px;}
.y1_c00287{bottom:1097.745000px;}
.y2_c00287{bottom:1099.050000px;}
.h6_c00287{height:4.206533px;}
.h7_c00287{height:23.025234px;}
.h2_c00287{height:25.091602px;}
.h5_c00287{height:31.364502px;}
.h3_c00287{height:35.571035px;}
.h4_c00287{height:39.777568px;}
.h1_c00287{height:43.910303px;}
.h8_c00287{height:48.116836px;}
.h0_c00287{height:1335.000000px;}
.w0_c00287{width:880.500000px;}
.x0_c00287{left:0.000000px;}
.x1_c00287{left:148.500000px;}
.x1e_c00287{left:150.000000px;}
.x47_c00287{left:151.080000px;}
.x78_c00287{left:152.580000px;}
.x14_c00287{left:163.080000px;}
.x20_c00287{left:166.920000px;}
.x50_c00287{left:169.920000px;}
.x6e_c00287{left:172.080000px;}
.x48_c00287{left:181.920000px;}
.xd5_c00287{left:183.000000px;}
.x64_c00287{left:186.420000px;}
.xa9_c00287{left:189.000000px;}
.x1f_c00287{left:192.000000px;}
.x93_c00287{left:196.920000px;}
.xe5_c00287{left:199.080000px;}
.xe0_c00287{left:202.500000px;}
.x21_c00287{left:207.420000px;}
.xa1_c00287{left:208.500000px;}
.x49_c00287{left:210.000000px;}
.x8a_c00287{left:211.080000px;}
.xda_c00287{left:213.000000px;}
.x9b_c00287{left:214.500000px;}
.xd6_c00287{left:217.500000px;}
.x81_c00287{left:219.000000px;}
.xa2_c00287{left:220.080000px;}
.x15_c00287{left:222.420000px;}
.x90_c00287{left:223.500000px;}
.x65_c00287{left:225.000000px;}
.xf5_c00287{left:226.500000px;}
.xb1_c00287{left:229.500000px;}
.x8_c00287{left:231.000000px;}
.x79_c00287{left:232.080000px;}
.xc3_c00287{left:234.000000px;}
.x9c_c00287{left:235.920000px;}
.xce_c00287{left:240.420000px;}
.x6f_c00287{left:241.500000px;}
.x91_c00287{left:243.420000px;}
.xd7_c00287{left:246.000000px;}
.x2c_c00287{left:249.000000px;}
.x9_c00287{left:252.000000px;}
.x51_c00287{left:255.000000px;}
.xd0_c00287{left:256.500000px;}
.x28_c00287{left:258.000000px;}
.x35_c00287{left:259.500000px;}
.x82_c00287{left:261.645000px;}
.x40_c00287{left:265.500000px;}
.x22_c00287{left:267.000000px;}
.x56_c00287{left:268.080000px;}
.xa_c00287{left:270.000000px;}
.x52_c00287{left:271.500000px;}
.x70_c00287{left:272.580000px;}
.xc8_c00287{left:273.645000px;}
.xa3_c00287{left:274.920000px;}
.xaa_c00287{left:277.500000px;}
.x29_c00287{left:280.500000px;}
.x3_c00287{left:282.645000px;}
.x23_c00287{left:288.000000px;}
.xbe_c00287{left:292.920000px;}
.x66_c00287{left:294.000000px;}
.xab_c00287{left:295.500000px;}
.x9d_c00287{left:296.580000px;}
.xef_c00287{left:298.920000px;}
.x2d_c00287{left:300.000000px;}
.xa4_c00287{left:301.500000px;}
.x16_c00287{left:303.000000px;}
.xb9_c00287{left:304.500000px;}
.xd1_c00287{left:307.500000px;}
.xe1_c00287{left:309.000000px;}
.xb_c00287{left:310.080000px;}
.x94_c00287{left:313.920000px;}
.x36_c00287{left:315.420000px;}
.x24_c00287{left:319.080000px;}
.x2e_c00287{left:322.080000px;}
.xf6_c00287{left:323.580000px;}
.x83_c00287{left:325.500000px;}
.x71_c00287{left:328.080000px;}
.xe9_c00287{left:330.000000px;}
.xc_c00287{left:337.500000px;}
.x53_c00287{left:340.080000px;}
.x57_c00287{left:342.000000px;}
.xdb_c00287{left:343.500000px;}
.x2a_c00287{left:344.775000px;}
.x41_c00287{left:346.920000px;}
.x4a_c00287{left:348.000000px;}
.x2f_c00287{left:349.500000px;}
.x7a_c00287{left:357.000000px;}
.x37_c00287{left:363.000000px;}
.xe6_c00287{left:364.500000px;}
.x17_c00287{left:366.420000px;}
.x8b_c00287{left:368.580000px;}
.x54_c00287{left:370.920000px;}
.x95_c00287{left:373.920000px;}
.x4_c00287{left:375.420000px;}
.xac_c00287{left:376.500000px;}
.x67_c00287{left:381.000000px;}
.xd_c00287{left:382.920000px;}
.x2b_c00287{left:385.080000px;}
.xc9_c00287{left:390.000000px;}
.x30_c00287{left:393.420000px;}
.x7b_c00287{left:394.500000px;}
.xcf_c00287{left:395.580000px;}
.x5e_c00287{left:399.000000px;}
.x2_c00287{left:402.000000px;}
.x25_c00287{left:403.500000px;}
.x18_c00287{left:404.580000px;}
.xbf_c00287{left:407.580000px;}
.xb2_c00287{left:411.855000px;}
.x96_c00287{left:413.580000px;}
.x84_c00287{left:416.580000px;}
.xea_c00287{left:420.420000px;}
.xd2_c00287{left:421.500000px;}
.x42_c00287{left:424.500000px;}
.x38_c00287{left:427.500000px;}
.xe_c00287{left:428.580000px;}
.x5f_c00287{left:430.500000px;}
.x55_c00287{left:433.275000px;}
.x72_c00287{left:435.000000px;}
.xad_c00287{left:439.080000px;}
.xe7_c00287{left:444.000000px;}
.x43_c00287{left:445.500000px;}
.x85_c00287{left:446.580000px;}
.xb3_c00287{left:450.000000px;}
.xba_c00287{left:451.920000px;}
.x7c_c00287{left:453.000000px;}
.x26_c00287{left:455.580000px;}
.xc0_c00287{left:457.080000px;}
.x5_c00287{left:458.580000px;}
.x68_c00287{left:462.420000px;}
.x44_c00287{left:464.580000px;}
.x39_c00287{left:466.920000px;}
.xdc_c00287{left:468.420000px;}
.xae_c00287{left:469.920000px;}
.x19_c00287{left:471.000000px;}
.xf7_c00287{left:474.000000px;}
.x31_c00287{left:475.080000px;}
.xd3_c00287{left:477.000000px;}
.x86_c00287{left:479.145000px;}
.xeb_c00287{left:481.500000px;}
.x6_c00287{left:483.000000px;}
.xf_c00287{left:485.580000px;}
.xe8_c00287{left:487.500000px;}
.x69_c00287{left:490.500000px;}
.x7d_c00287{left:492.000000px;}
.x58_c00287{left:493.080000px;}
.xa5_c00287{left:495.000000px;}
.x60_c00287{left:496.080000px;}
.xbd_c00287{left:498.420000px;}
.x3a_c00287{left:499.500000px;}
.x27_c00287{left:501.000000px;}
.x32_c00287{left:503.580000px;}
.x97_c00287{left:505.080000px;}
.x10_c00287{left:507.000000px;}
.xcb_c00287{left:508.500000px;}
.x4b_c00287{left:511.080000px;}
.xc1_c00287{left:514.080000px;}
.x9e_c00287{left:516.000000px;}
.x45_c00287{left:519.420000px;}
.xd4_c00287{left:520.920000px;}
.xb4_c00287{left:523.500000px;}
.x11_c00287{left:525.000000px;}
.x8c_c00287{left:529.920000px;}
.xf0_c00287{left:531.420000px;}
.xb5_c00287{left:535.500000px;}
.xa6_c00287{left:536.580000px;}
.x59_c00287{left:541.275000px;}
.x4c_c00287{left:542.580000px;}
.xf8_c00287{left:544.500000px;}
.x3b_c00287{left:547.500000px;}
.x87_c00287{left:548.775000px;}
.x61_c00287{left:550.080000px;}
.x1a_c00287{left:552.000000px;}
.xa7_c00287{left:553.080000px;}
.x7_c00287{left:556.275000px;}
.xaf_c00287{left:558.000000px;}
.x46_c00287{left:559.500000px;}
.xca_c00287{left:561.000000px;}
.x7e_c00287{left:562.920000px;}
.x12_c00287{left:564.000000px;}
.x5a_c00287{left:565.500000px;}
.x6a_c00287{left:568.080000px;}
.xd8_c00287{left:573.000000px;}
.xc5_c00287{left:574.275000px;}
.x98_c00287{left:577.500000px;}
.xb0_c00287{left:580.920000px;}
.xec_c00287{left:582.000000px;}
.xf9_c00287{left:585.420000px;}
.xbb_c00287{left:586.500000px;}
.x6b_c00287{left:588.420000px;}
.x73_c00287{left:592.920000px;}
.xc4_c00287{left:597.000000px;}
.xe2_c00287{left:598.920000px;}
.xd9_c00287{left:603.000000px;}
.xf1_c00287{left:604.080000px;}
.x3c_c00287{left:605.580000px;}
.x1b_c00287{left:609.000000px;}
.x13_c00287{left:610.500000px;}
.x8d_c00287{left:613.080000px;}
.xc6_c00287{left:615.000000px;}
.x6c_c00287{left:616.500000px;}
.x4d_c00287{left:618.000000px;}
.x9f_c00287{left:619.500000px;}
.x62_c00287{left:621.420000px;}
.x92_c00287{left:622.500000px;}
.x99_c00287{left:624.420000px;}
.xf2_c00287{left:625.500000px;}
.x3d_c00287{left:627.000000px;}
.x74_c00287{left:631.500000px;}
.xa0_c00287{left:633.000000px;}
.xb6_c00287{left:634.500000px;}
.x33_c00287{left:635.580000px;}
.xe3_c00287{left:637.500000px;}
.xdd_c00287{left:638.580000px;}
.x88_c00287{left:640.500000px;}
.x5b_c00287{left:643.920000px;}
.x75_c00287{left:645.420000px;}
.x8e_c00287{left:646.920000px;}
.xc7_c00287{left:648.000000px;}
.x4e_c00287{left:649.080000px;}
.x7f_c00287{left:655.080000px;}
.x9a_c00287{left:657.420000px;}
.xe4_c00287{left:658.500000px;}
.x34_c00287{left:660.000000px;}
.x6d_c00287{left:661.500000px;}
.xa8_c00287{left:662.580000px;}
.xf3_c00287{left:664.080000px;}
.xcc_c00287{left:666.420000px;}
.xed_c00287{left:667.920000px;}
.x1c_c00287{left:669.000000px;}
.x89_c00287{left:673.080000px;}
.x3e_c00287{left:676.500000px;}
.xde_c00287{left:677.580000px;}
.x5c_c00287{left:679.500000px;}
.x63_c00287{left:683.580000px;}
.xc2_c00287{left:685.500000px;}
.x76_c00287{left:688.500000px;}
.xbc_c00287{left:689.580000px;}
.x4f_c00287{left:691.080000px;}
.x80_c00287{left:693.000000px;}
.xcd_c00287{left:696.420000px;}
.xf4_c00287{left:697.500000px;}
.x3f_c00287{left:700.920000px;}
.x1d_c00287{left:702.000000px;}
.xb7_c00287{left:704.580000px;}
.x5d_c00287{left:706.920000px;}
.x77_c00287{left:708.420000px;}
.xdf_c00287{left:709.500000px;}
.x8f_c00287{left:716.580000px;}
.xee_c00287{left:718.080000px;}
.xb8_c00287{left:723.000000px;}
@media print{
.v0_c00287{vertical-align:0.000000pt;}
.ls0_c00287{letter-spacing:0.000000pt;}
.ws1_c00287{word-spacing:-4.439790pt;}
.ws0_c00287{word-spacing:-1.432725pt;}
.ws2_c00287{word-spacing:0.000000pt;}
.fs5_c00287{font-size:3.040000pt;}
.fs6_c00287{font-size:16.640000pt;}
.fs1_c00287{font-size:18.133333pt;}
.fs4_c00287{font-size:22.666667pt;}
.fs2_c00287{font-size:25.706667pt;}
.fs3_c00287{font-size:28.746667pt;}
.fs0_c00287{font-size:31.733333pt;}
.fs7_c00287{font-size:34.773333pt;}
.y0_c00287{bottom:0.000000pt;}
.yc8_c00287{bottom:220.360000pt;}
.ycb_c00287{bottom:221.106667pt;}
.yca_c00287{bottom:222.440000pt;}
.yc9_c00287{bottom:223.226667pt;}
.yc7_c00287{bottom:223.973333pt;}
.yc6_c00287{bottom:224.360000pt;}
.yc4_c00287{bottom:238.640000pt;}
.yc3_c00287{bottom:239.026667pt;}
.yc5_c00287{bottom:239.773333pt;}
.yc1_c00287{bottom:240.360000pt;}
.yc2_c00287{bottom:241.693333pt;}
.ybc_c00287{bottom:257.106667pt;}
.ybf_c00287{bottom:257.893333pt;}
.yc0_c00287{bottom:258.066667pt;}
.ybd_c00287{bottom:258.640000pt;}
.ybb_c00287{bottom:259.026667pt;}
.ybe_c00287{bottom:259.226667pt;}
.yb8_c00287{bottom:273.693333pt;}
.yba_c00287{bottom:274.440000pt;}
.yb9_c00287{bottom:275.400000pt;}
.yb7_c00287{bottom:276.360000pt;}
.yb0_c00287{bottom:291.773333pt;}
.yb6_c00287{bottom:291.973333pt;}
.yb2_c00287{bottom:293.106667pt;}
.yb1_c00287{bottom:293.693333pt;}
.yb4_c00287{bottom:293.893333pt;}
.yb5_c00287{bottom:294.640000pt;}
.yb3_c00287{bottom:295.026667pt;}
.yaf_c00287{bottom:309.106667pt;}
.yac_c00287{bottom:310.440000pt;}
.yaa_c00287{bottom:311.026667pt;}
.yad_c00287{bottom:311.226667pt;}
.yae_c00287{bottom:311.973333pt;}
.yab_c00287{bottom:312.360000pt;}
.ya7_c00287{bottom:326.440000pt;}
.ya6_c00287{bottom:327.773333pt;}
.ya3_c00287{bottom:328.360000pt;}
.ya4_c00287{bottom:328.560000pt;}
.ya5_c00287{bottom:329.306667pt;}
.ya8_c00287{bottom:329.693333pt;}
.ya9_c00287{bottom:330.640000pt;}
.ya2_c00287{bottom:344.360000pt;}
.y9e_c00287{bottom:345.106667pt;}
.ya0_c00287{bottom:347.026667pt;}
.ya1_c00287{bottom:347.973333pt;}
.y9f_c00287{bottom:348.373333pt;}
.y99_c00287{bottom:362.440000pt;}
.y9d_c00287{bottom:363.773333pt;}
.y9c_c00287{bottom:364.360000pt;}
.y9a_c00287{bottom:364.560000pt;}
.y9b_c00287{bottom:365.693333pt;}
.y97_c00287{bottom:379.026667pt;}
.y95_c00287{bottom:379.773333pt;}
.y98_c00287{bottom:380.733333pt;}
.y92_c00287{bottom:381.106667pt;}
.y94_c00287{bottom:381.693333pt;}
.y96_c00287{bottom:381.893333pt;}
.y93_c00287{bottom:383.026667pt;}
.y90_c00287{bottom:397.106667pt;}
.y8c_c00287{bottom:397.306667pt;}
.y8e_c00287{bottom:397.493333pt;}
.y8a_c00287{bottom:397.693333pt;}
.y8f_c00287{bottom:398.440000pt;}
.y91_c00287{bottom:399.026667pt;}
.y8b_c00287{bottom:399.226667pt;}
.y8d_c00287{bottom:400.360000pt;}
.y87_c00287{bottom:414.066667pt;}
.y89_c00287{bottom:414.640000pt;}
.y85_c00287{bottom:415.773333pt;}
.y88_c00287{bottom:416.560000pt;}
.y84_c00287{bottom:417.693333pt;}
.y86_c00287{bottom:418.640000pt;}
.y82_c00287{bottom:433.106667pt;}
.y83_c00287{bottom:434.640000pt;}
.y80_c00287{bottom:435.026667pt;}
.y81_c00287{bottom:435.226667pt;}
.y7e_c00287{bottom:450.440000pt;}
.y7f_c00287{bottom:451.400000pt;}
.y7d_c00287{bottom:452.360000pt;}
.y7c_c00287{bottom:452.560000pt;}
.y7b_c00287{bottom:467.026667pt;}
.y7a_c00287{bottom:467.773333pt;}
.y78_c00287{bottom:468.733333pt;}
.y77_c00287{bottom:469.106667pt;}
.y79_c00287{bottom:469.693333pt;}
.y76_c00287{bottom:486.440000pt;}
.y75_c00287{bottom:487.226667pt;}
.y74_c00287{bottom:488.360000pt;}
.y6d_c00287{bottom:501.693333pt;}
.y71_c00287{bottom:502.066667pt;}
.y73_c00287{bottom:502.640000pt;}
.y70_c00287{bottom:503.773333pt;}
.y72_c00287{bottom:504.560000pt;}
.y6e_c00287{bottom:505.693333pt;}
.y6f_c00287{bottom:506.640000pt;}
.y6c_c00287{bottom:519.026667pt;}
.y69_c00287{bottom:521.106667pt;}
.y6b_c00287{bottom:521.893333pt;}
.y6a_c00287{bottom:522.640000pt;}
.y68_c00287{bottom:523.026667pt;}
.y63_c00287{bottom:538.440000pt;}
.y64_c00287{bottom:539.226667pt;}
.y66_c00287{bottom:539.400000pt;}
.y67_c00287{bottom:539.973333pt;}
.y65_c00287{bottom:540.360000pt;}
.y61_c00287{bottom:555.773333pt;}
.y62_c00287{bottom:556.560000pt;}
.y60_c00287{bottom:557.693333pt;}
.y5f_c00287{bottom:573.493333pt;}
.y5b_c00287{bottom:574.440000pt;}
.y5a_c00287{bottom:575.026667pt;}
.y5c_c00287{bottom:575.226667pt;}
.y5e_c00287{bottom:575.973333pt;}
.y5d_c00287{bottom:576.360000pt;}
.y59_c00287{bottom:590.640000pt;}
.y58_c00287{bottom:591.400000pt;}
.y56_c00287{bottom:591.773333pt;}
.y53_c00287{bottom:592.360000pt;}
.y54_c00287{bottom:592.560000pt;}
.y57_c00287{bottom:593.306667pt;}
.y55_c00287{bottom:593.693333pt;}
.y51_c00287{bottom:607.026667pt;}
.y4f_c00287{bottom:607.973333pt;}
.y4d_c00287{bottom:609.106667pt;}
.y4c_c00287{bottom:609.693333pt;}
.y52_c00287{bottom:609.893333pt;}
.y4e_c00287{bottom:610.066667pt;}
.y50_c00287{bottom:611.026667pt;}
.y4b_c00287{bottom:626.440000pt;}
.y4a_c00287{bottom:628.360000pt;}
.y49_c00287{bottom:643.400000pt;}
.y46_c00287{bottom:643.773333pt;}
.y47_c00287{bottom:644.560000pt;}
.y48_c00287{bottom:645.693333pt;}
.y43_c00287{bottom:660.160000pt;}
.y44_c00287{bottom:661.106667pt;}
.y45_c00287{bottom:661.893333pt;}
.y41_c00287{bottom:663.026667pt;}
.y42_c00287{bottom:663.226667pt;}
.y40_c00287{bottom:663.973333pt;}
.y3d_c00287{bottom:677.693333pt;}
.y3e_c00287{bottom:678.440000pt;}
.y3c_c00287{bottom:680.360000pt;}
.y3f_c00287{bottom:680.560000pt;}
.y37_c00287{bottom:695.773333pt;}
.y3b_c00287{bottom:696.733333pt;}
.y39_c00287{bottom:697.106667pt;}
.y38_c00287{bottom:697.693333pt;}
.y3a_c00287{bottom:697.893333pt;}
.y36_c00287{bottom:713.106667pt;}
.y35_c00287{bottom:714.440000pt;}
.y34_c00287{bottom:715.026667pt;}
.y32_c00287{bottom:731.773333pt;}
.y33_c00287{bottom:732.733333pt;}
.y30_c00287{bottom:733.306667pt;}
.y31_c00287{bottom:733.693333pt;}
.y2f_c00287{bottom:747.973333pt;}
.y2d_c00287{bottom:749.106667pt;}
.y2a_c00287{bottom:749.693333pt;}
.y2c_c00287{bottom:750.640000pt;}
.y2b_c00287{bottom:751.026667pt;}
.y2e_c00287{bottom:751.973333pt;}
.y26_c00287{bottom:766.440000pt;}
.y27_c00287{bottom:767.226667pt;}
.y28_c00287{bottom:768.360000pt;}
.y29_c00287{bottom:769.306667pt;}
.y25_c00287{bottom:781.693333pt;}
.y22_c00287{bottom:783.026667pt;}
.y23_c00287{bottom:783.773333pt;}
.y24_c00287{bottom:784.560000pt;}
.y20_c00287{bottom:785.693333pt;}
.y21_c00287{bottom:785.706667pt;}
.y1f_c00287{bottom:801.106667pt;}
.y1d_c00287{bottom:818.440000pt;}
.y1e_c00287{bottom:819.400000pt;}
.y1a_c00287{bottom:820.360000pt;}
.y1c_c00287{bottom:820.373333pt;}
.y1b_c00287{bottom:820.560000pt;}
.y16_c00287{bottom:837.106667pt;}
.y18_c00287{bottom:838.066667pt;}
.y19_c00287{bottom:839.026667pt;}
.y17_c00287{bottom:839.040000pt;}
.y12_c00287{bottom:853.106667pt;}
.y15_c00287{bottom:855.026667pt;}
.y14_c00287{bottom:856.360000pt;}
.y13_c00287{bottom:856.373333pt;}
.y11_c00287{bottom:880.733333pt;}
.y10_c00287{bottom:883.600000pt;}
.yd_c00287{bottom:895.026667pt;}
.ye_c00287{bottom:896.933333pt;}
.yf_c00287{bottom:897.306667pt;}
.y8_c00287{bottom:915.973333pt;}
.yb_c00287{bottom:916.733333pt;}
.yc_c00287{bottom:916.933333pt;}
.ya_c00287{bottom:917.693333pt;}
.y7_c00287{bottom:918.266667pt;}
.y9_c00287{bottom:918.640000pt;}
.y6_c00287{bottom:919.600000pt;}
.y4_c00287{bottom:940.733333pt;}
.y5_c00287{bottom:941.106667pt;}
.y3_c00287{bottom:941.693333pt;}
.y1_c00287{bottom:975.773333pt;}
.y2_c00287{bottom:976.933333pt;}
.h6_c00287{height:3.739141pt;}
.h7_c00287{height:20.466875pt;}
.h2_c00287{height:22.303646pt;}
.h5_c00287{height:27.879557pt;}
.h3_c00287{height:31.618698pt;}
.h4_c00287{height:35.357839pt;}
.h1_c00287{height:39.031380pt;}
.h8_c00287{height:42.770521pt;}
.h0_c00287{height:1186.666667pt;}
.w0_c00287{width:782.666667pt;}
.x0_c00287{left:0.000000pt;}
.x1_c00287{left:132.000000pt;}
.x1e_c00287{left:133.333333pt;}
.x47_c00287{left:134.293333pt;}
.x78_c00287{left:135.626667pt;}
.x14_c00287{left:144.960000pt;}
.x20_c00287{left:148.373333pt;}
.x50_c00287{left:151.040000pt;}
.x6e_c00287{left:152.960000pt;}
.x48_c00287{left:161.706667pt;}
.xd5_c00287{left:162.666667pt;}
.x64_c00287{left:165.706667pt;}
.xa9_c00287{left:168.000000pt;}
.x1f_c00287{left:170.666667pt;}
.x93_c00287{left:175.040000pt;}
.xe5_c00287{left:176.960000pt;}
.xe0_c00287{left:180.000000pt;}
.x21_c00287{left:184.373333pt;}
.xa1_c00287{left:185.333333pt;}
.x49_c00287{left:186.666667pt;}
.x8a_c00287{left:187.626667pt;}
.xda_c00287{left:189.333333pt;}
.x9b_c00287{left:190.666667pt;}
.xd6_c00287{left:193.333333pt;}
.x81_c00287{left:194.666667pt;}
.xa2_c00287{left:195.626667pt;}
.x15_c00287{left:197.706667pt;}
.x90_c00287{left:198.666667pt;}
.x65_c00287{left:200.000000pt;}
.xf5_c00287{left:201.333333pt;}
.xb1_c00287{left:204.000000pt;}
.x8_c00287{left:205.333333pt;}
.x79_c00287{left:206.293333pt;}
.xc3_c00287{left:208.000000pt;}
.x9c_c00287{left:209.706667pt;}
.xce_c00287{left:213.706667pt;}
.x6f_c00287{left:214.666667pt;}
.x91_c00287{left:216.373333pt;}
.xd7_c00287{left:218.666667pt;}
.x2c_c00287{left:221.333333pt;}
.x9_c00287{left:224.000000pt;}
.x51_c00287{left:226.666667pt;}
.xd0_c00287{left:228.000000pt;}
.x28_c00287{left:229.333333pt;}
.x35_c00287{left:230.666667pt;}
.x82_c00287{left:232.573333pt;}
.x40_c00287{left:236.000000pt;}
.x22_c00287{left:237.333333pt;}
.x56_c00287{left:238.293333pt;}
.xa_c00287{left:240.000000pt;}
.x52_c00287{left:241.333333pt;}
.x70_c00287{left:242.293333pt;}
.xc8_c00287{left:243.240000pt;}
.xa3_c00287{left:244.373333pt;}
.xaa_c00287{left:246.666667pt;}
.x29_c00287{left:249.333333pt;}
.x3_c00287{left:251.240000pt;}
.x23_c00287{left:256.000000pt;}
.xbe_c00287{left:260.373333pt;}
.x66_c00287{left:261.333333pt;}
.xab_c00287{left:262.666667pt;}
.x9d_c00287{left:263.626667pt;}
.xef_c00287{left:265.706667pt;}
.x2d_c00287{left:266.666667pt;}
.xa4_c00287{left:268.000000pt;}
.x16_c00287{left:269.333333pt;}
.xb9_c00287{left:270.666667pt;}
.xd1_c00287{left:273.333333pt;}
.xe1_c00287{left:274.666667pt;}
.xb_c00287{left:275.626667pt;}
.x94_c00287{left:279.040000pt;}
.x36_c00287{left:280.373333pt;}
.x24_c00287{left:283.626667pt;}
.x2e_c00287{left:286.293333pt;}
.xf6_c00287{left:287.626667pt;}
.x83_c00287{left:289.333333pt;}
.x71_c00287{left:291.626667pt;}
.xe9_c00287{left:293.333333pt;}
.xc_c00287{left:300.000000pt;}
.x53_c00287{left:302.293333pt;}
.x57_c00287{left:304.000000pt;}
.xdb_c00287{left:305.333333pt;}
.x2a_c00287{left:306.466667pt;}
.x41_c00287{left:308.373333pt;}
.x4a_c00287{left:309.333333pt;}
.x2f_c00287{left:310.666667pt;}
.x7a_c00287{left:317.333333pt;}
.x37_c00287{left:322.666667pt;}
.xe6_c00287{left:324.000000pt;}
.x17_c00287{left:325.706667pt;}
.x8b_c00287{left:327.626667pt;}
.x54_c00287{left:329.706667pt;}
.x95_c00287{left:332.373333pt;}
.x4_c00287{left:333.706667pt;}
.xac_c00287{left:334.666667pt;}
.x67_c00287{left:338.666667pt;}
.xd_c00287{left:340.373333pt;}
.x2b_c00287{left:342.293333pt;}
.xc9_c00287{left:346.666667pt;}
.x30_c00287{left:349.706667pt;}
.x7b_c00287{left:350.666667pt;}
.xcf_c00287{left:351.626667pt;}
.x5e_c00287{left:354.666667pt;}
.x2_c00287{left:357.333333pt;}
.x25_c00287{left:358.666667pt;}
.x18_c00287{left:359.626667pt;}
.xbf_c00287{left:362.293333pt;}
.xb2_c00287{left:366.093333pt;}
.x96_c00287{left:367.626667pt;}
.x84_c00287{left:370.293333pt;}
.xea_c00287{left:373.706667pt;}
.xd2_c00287{left:374.666667pt;}
.x42_c00287{left:377.333333pt;}
.x38_c00287{left:380.000000pt;}
.xe_c00287{left:380.960000pt;}
.x5f_c00287{left:382.666667pt;}
.x55_c00287{left:385.133333pt;}
.x72_c00287{left:386.666667pt;}
.xad_c00287{left:390.293333pt;}
.xe7_c00287{left:394.666667pt;}
.x43_c00287{left:396.000000pt;}
.x85_c00287{left:396.960000pt;}
.xb3_c00287{left:400.000000pt;}
.xba_c00287{left:401.706667pt;}
.x7c_c00287{left:402.666667pt;}
.x26_c00287{left:404.960000pt;}
.xc0_c00287{left:406.293333pt;}
.x5_c00287{left:407.626667pt;}
.x68_c00287{left:411.040000pt;}
.x44_c00287{left:412.960000pt;}
.x39_c00287{left:415.040000pt;}
.xdc_c00287{left:416.373333pt;}
.xae_c00287{left:417.706667pt;}
.x19_c00287{left:418.666667pt;}
.xf7_c00287{left:421.333333pt;}
.x31_c00287{left:422.293333pt;}
.xd3_c00287{left:424.000000pt;}
.x86_c00287{left:425.906667pt;}
.xeb_c00287{left:428.000000pt;}
.x6_c00287{left:429.333333pt;}
.xf_c00287{left:431.626667pt;}
.xe8_c00287{left:433.333333pt;}
.x69_c00287{left:436.000000pt;}
.x7d_c00287{left:437.333333pt;}
.x58_c00287{left:438.293333pt;}
.xa5_c00287{left:440.000000pt;}
.x60_c00287{left:440.960000pt;}
.xbd_c00287{left:443.040000pt;}
.x3a_c00287{left:444.000000pt;}
.x27_c00287{left:445.333333pt;}
.x32_c00287{left:447.626667pt;}
.x97_c00287{left:448.960000pt;}
.x10_c00287{left:450.666667pt;}
.xcb_c00287{left:452.000000pt;}
.x4b_c00287{left:454.293333pt;}
.xc1_c00287{left:456.960000pt;}
.x9e_c00287{left:458.666667pt;}
.x45_c00287{left:461.706667pt;}
.xd4_c00287{left:463.040000pt;}
.xb4_c00287{left:465.333333pt;}
.x11_c00287{left:466.666667pt;}
.x8c_c00287{left:471.040000pt;}
.xf0_c00287{left:472.373333pt;}
.xb5_c00287{left:476.000000pt;}
.xa6_c00287{left:476.960000pt;}
.x59_c00287{left:481.133333pt;}
.x4c_c00287{left:482.293333pt;}
.xf8_c00287{left:484.000000pt;}
.x3b_c00287{left:486.666667pt;}
.x87_c00287{left:487.800000pt;}
.x61_c00287{left:488.960000pt;}
.x1a_c00287{left:490.666667pt;}
.xa7_c00287{left:491.626667pt;}
.x7_c00287{left:494.466667pt;}
.xaf_c00287{left:496.000000pt;}
.x46_c00287{left:497.333333pt;}
.xca_c00287{left:498.666667pt;}
.x7e_c00287{left:500.373333pt;}
.x12_c00287{left:501.333333pt;}
.x5a_c00287{left:502.666667pt;}
.x6a_c00287{left:504.960000pt;}
.xd8_c00287{left:509.333333pt;}
.xc5_c00287{left:510.466667pt;}
.x98_c00287{left:513.333333pt;}
.xb0_c00287{left:516.373333pt;}
.xec_c00287{left:517.333333pt;}
.xf9_c00287{left:520.373333pt;}
.xbb_c00287{left:521.333333pt;}
.x6b_c00287{left:523.040000pt;}
.x73_c00287{left:527.040000pt;}
.xc4_c00287{left:530.666667pt;}
.xe2_c00287{left:532.373333pt;}
.xd9_c00287{left:536.000000pt;}
.xf1_c00287{left:536.960000pt;}
.x3c_c00287{left:538.293333pt;}
.x1b_c00287{left:541.333333pt;}
.x13_c00287{left:542.666667pt;}
.x8d_c00287{left:544.960000pt;}
.xc6_c00287{left:546.666667pt;}
.x6c_c00287{left:548.000000pt;}
.x4d_c00287{left:549.333333pt;}
.x9f_c00287{left:550.666667pt;}
.x62_c00287{left:552.373333pt;}
.x92_c00287{left:553.333333pt;}
.x99_c00287{left:555.040000pt;}
.xf2_c00287{left:556.000000pt;}
.x3d_c00287{left:557.333333pt;}
.x74_c00287{left:561.333333pt;}
.xa0_c00287{left:562.666667pt;}
.xb6_c00287{left:564.000000pt;}
.x33_c00287{left:564.960000pt;}
.xe3_c00287{left:566.666667pt;}
.xdd_c00287{left:567.626667pt;}
.x88_c00287{left:569.333333pt;}
.x5b_c00287{left:572.373333pt;}
.x75_c00287{left:573.706667pt;}
.x8e_c00287{left:575.040000pt;}
.xc7_c00287{left:576.000000pt;}
.x4e_c00287{left:576.960000pt;}
.x7f_c00287{left:582.293333pt;}
.x9a_c00287{left:584.373333pt;}
.xe4_c00287{left:585.333333pt;}
.x34_c00287{left:586.666667pt;}
.x6d_c00287{left:588.000000pt;}
.xa8_c00287{left:588.960000pt;}
.xf3_c00287{left:590.293333pt;}
.xcc_c00287{left:592.373333pt;}
.xed_c00287{left:593.706667pt;}
.x1c_c00287{left:594.666667pt;}
.x89_c00287{left:598.293333pt;}
.x3e_c00287{left:601.333333pt;}
.xde_c00287{left:602.293333pt;}
.x5c_c00287{left:604.000000pt;}
.x63_c00287{left:607.626667pt;}
.xc2_c00287{left:609.333333pt;}
.x76_c00287{left:612.000000pt;}
.xbc_c00287{left:612.960000pt;}
.x4f_c00287{left:614.293333pt;}
.x80_c00287{left:616.000000pt;}
.xcd_c00287{left:619.040000pt;}
.xf4_c00287{left:620.000000pt;}
.x3f_c00287{left:623.040000pt;}
.x1d_c00287{left:624.000000pt;}
.xb7_c00287{left:626.293333pt;}
.x5d_c00287{left:628.373333pt;}
.x77_c00287{left:629.706667pt;}
.xdf_c00287{left:630.666667pt;}
.x8f_c00287{left:636.960000pt;}
.xee_c00287{left:638.293333pt;}
.xb8_c00287{left:642.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_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_e56a2070f3f43803cdc6b176.woff2')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc4_c00288{transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);}
.m2f_c00288{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.mc0_c00288{transform:matrix(0.341373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341373,0.000000,0.000000,0.250000,0,0);}
.m53_c00288{transform:matrix(0.347479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347479,0.000000,0.000000,0.250000,0,0);}
.m30_c00288{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);}
.m7c_c00288{transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);}
.mce_c00288{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m52_c00288{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m9e_c00288{transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);}
.m4b_c00288{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m84_c00288{transform:matrix(0.365414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365414,0.000000,0.000000,0.250000,0,0);}
.mab_c00288{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mdd_c00288{transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);}
.mc3_c00288{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.meb_c00288{transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);}
.mcf_c00288{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m51_c00288{transform:matrix(0.372699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372699,0.000000,0.000000,0.250000,0,0);}
.m93_c00288{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.mb0_c00288{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m95_c00288{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m4c_c00288{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m57_c00288{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m63_c00288{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m9f_c00288{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.ma9_c00288{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m88_c00288{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m48_c00288{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.mec_c00288{transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);}
.mef_c00288{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m58_c00288{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m19_c00288{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mc1_c00288{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.m64_c00288{transform:matrix(0.395322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395322,0.000000,0.000000,0.250000,0,0);}
.m77_c00288{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.me5_c00288{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m39_c00288{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.m5_c00288{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mf3_c00288{transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);}
.m3b_c00288{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m83_c00288{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m76_c00288{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m6c_c00288{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.ma2_c00288{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.mb_c00288{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.md9_c00288{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.maf_c00288{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m68_c00288{transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);}
.me6_c00288{transform:matrix(0.411874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411874,0.000000,0.000000,0.250000,0,0);}
.mbc_c00288{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m6d_c00288{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m73_c00288{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m5b_c00288{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m69_c00288{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m40_c00288{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m79_c00288{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m91_c00288{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m1d_c00288{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.ma5_c00288{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m42_c00288{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m75_c00288{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m16_c00288{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m5c_c00288{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m61_c00288{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m98_c00288{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m78_c00288{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.mf1_c00288{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.mc7_c00288{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m8d_c00288{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.mf4_c00288{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m81_c00288{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m6b_c00288{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m47_c00288{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.md1_c00288{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m49_c00288{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m8a_c00288{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mdf_c00288{transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);}
.maa_c00288{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m25_c00288{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m9d_c00288{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.mcb_c00288{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m66_c00288{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.mbb_c00288{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.m20_c00288{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m23_c00288{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m5a_c00288{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.mac_c00288{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.mbd_c00288{transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);}
.m8c_c00288{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m43_c00288{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m55_c00288{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m4f_c00288{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m2c_c00288{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mea_c00288{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m2_c00288{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.md4_c00288{transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);}
.mb1_c00288{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.mb7_c00288{transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);}
.m3f_c00288{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.me2_c00288{transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);}
.mb8_c00288{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.me_c00288{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.md6_c00288{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m5d_c00288{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.me9_c00288{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.mb2_c00288{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mbf_c00288{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m5f_c00288{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.mc2_c00288{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.m1a_c00288{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m6a_c00288{transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);}
.m4a_c00288{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m3d_c00288{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m1c_c00288{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mb5_c00288{transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);}
.m97_c00288{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m62_c00288{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m7e_c00288{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m0_c00288{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m3c_c00288{transform:matrix(0.490724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490724,0.000000,0.000000,0.250000,0,0);}
.m38_c00288{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m6e_c00288{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m4d_c00288{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m87_c00288{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.me1_c00288{transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);}
.m2b_c00288{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);}
.m86_c00288{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m89_c00288{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.me4_c00288{transform:matrix(0.508349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508349,0.000000,0.000000,0.250000,0,0);}
.ma3_c00288{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.me8_c00288{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.ma6_c00288{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m54_c00288{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m2e_c00288{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m9_c00288{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m32_c00288{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m70_c00288{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.md0_c00288{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m9a_c00288{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m50_c00288{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m96_c00288{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.ma4_c00288{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m41_c00288{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.mbe_c00288{transform:matrix(0.525882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525882,0.000000,0.000000,0.250000,0,0);}
.m80_c00288{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m60_c00288{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m8b_c00288{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.ma7_c00288{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mcd_c00288{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m14_c00288{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m44_c00288{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m3_c00288{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m85_c00288{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m26_c00288{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m15_c00288{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m67_c00288{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m31_c00288{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m13_c00288{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m7a_c00288{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m74_c00288{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m7f_c00288{transform:matrix(0.541280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541280,0.000000,0.000000,0.250000,0,0);}
.m22_c00288{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.ma8_c00288{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.mdb_c00288{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m21_c00288{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.me0_c00288{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.m7b_c00288{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.ma0_c00288{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.md_c00288{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m2a_c00288{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m46_c00288{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.me3_c00288{transform:matrix(0.550311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550311,0.000000,0.000000,0.250000,0,0);}
.m8_c00288{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mad_c00288{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m2d_c00288{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m7d_c00288{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mc_c00288{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mde_c00288{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mb3_c00288{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m28_c00288{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.me7_c00288{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mb6_c00288{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m37_c00288{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m82_c00288{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m6_c00288{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m35_c00288{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.md7_c00288{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m72_c00288{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m9b_c00288{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.md2_c00288{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m27_c00288{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mb9_c00288{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.mc6_c00288{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m45_c00288{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mca_c00288{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m29_c00288{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m5e_c00288{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.md3_c00288{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m65_c00288{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m18_c00288{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m4e_c00288{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.mf_c00288{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m92_c00288{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mf2_c00288{transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);}
.m33_c00288{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mb4_c00288{transform:matrix(0.601660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601660,0.000000,0.000000,0.250000,0,0);}
.m24_c00288{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m4_c00288{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mc9_c00288{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.m36_c00288{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m94_c00288{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.mda_c00288{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);}
.m8e_c00288{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m1_c00288{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m3e_c00288{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m56_c00288{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.m1b_c00288{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.mba_c00288{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);}
.ma_c00288{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m17_c00288{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.ma1_c00288{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.mc5_c00288{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.m9c_c00288{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.med_c00288{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.md5_c00288{transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);}
.mee_c00288{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m34_c00288{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mf0_c00288{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m11_c00288{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m90_c00288{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m1e_c00288{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m10_c00288{transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);}
.m3a_c00288{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.md8_c00288{transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);}
.mdc_c00288{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m99_c00288{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m12_c00288{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mcc_c00288{transform:matrix(0.774840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.774840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.774840,0.000000,0.000000,0.250000,0,0);}
.m8f_c00288{transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);}
.m1f_c00288{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.mae_c00288{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m59_c00288{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.m7_c00288{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m6f_c00288{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m71_c00288{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.mc8_c00288{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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.275955px;}
.ws1_c00288{word-spacing:0.000000px;}
.fc0_c00288{color:transparent;}
.fs7_c00288{font-size:3.420000px;}
.fs5_c00288{font-size:18.720000px;}
.fs1_c00288{font-size:20.400000px;}
.fs3_c00288{font-size:25.500000px;}
.fs0_c00288{font-size:28.920000px;}
.fs2_c00288{font-size:32.340000px;}
.fs4_c00288{font-size:35.700000px;}
.fs6_c00288{font-size:39.120000px;}
.y0_c00288{bottom:0.000000px;}
.yd6_c00288{bottom:250.905000px;}
.yd4_c00288{bottom:252.180000px;}
.yd5_c00288{bottom:253.245000px;}
.yd7_c00288{bottom:253.905000px;}
.yd2_c00288{bottom:255.405000px;}
.yd3_c00288{bottom:255.420000px;}
.yce_c00288{bottom:272.745000px;}
.ycc_c00288{bottom:273.180000px;}
.ycd_c00288{bottom:273.630000px;}
.yd0_c00288{bottom:273.825000px;}
.yd1_c00288{bottom:274.470000px;}
.ycf_c00288{bottom:274.905000px;}
.ycb_c00288{bottom:289.905000px;}
.yc7_c00288{bottom:292.245000px;}
.yca_c00288{bottom:293.130000px;}
.yc9_c00288{bottom:293.325000px;}
.yc8_c00288{bottom:293.970000px;}
.yc5_c00288{bottom:294.405000px;}
.yc6_c00288{bottom:295.920000px;}
.yc3_c00288{bottom:311.745000px;}
.yc2_c00288{bottom:312.825000px;}
.yc4_c00288{bottom:313.905000px;}
.yc1_c00288{bottom:314.325000px;}
.yc0_c00288{bottom:315.405000px;}
.ybd_c00288{bottom:331.680000px;}
.ybe_c00288{bottom:332.745000px;}
.ybb_c00288{bottom:333.630000px;}
.ybf_c00288{bottom:333.825000px;}
.yba_c00288{bottom:334.905000px;}
.ybc_c00288{bottom:334.920000px;}
.yb6_c00288{bottom:352.245000px;}
.yb8_c00288{bottom:353.325000px;}
.yb9_c00288{bottom:353.550000px;}
.yb7_c00288{bottom:354.420000px;}
.yb4_c00288{bottom:370.245000px;}
.yb5_c00288{bottom:371.745000px;}
.yb2_c00288{bottom:372.630000px;}
.yb3_c00288{bottom:373.905000px;}
.yb0_c00288{bottom:388.905000px;}
.yb1_c00288{bottom:390.825000px;}
.yad_c00288{bottom:391.245000px;}
.yaf_c00288{bottom:392.130000px;}
.yac_c00288{bottom:392.325000px;}
.yae_c00288{bottom:393.405000px;}
.ya9_c00288{bottom:410.745000px;}
.yab_c00288{bottom:411.630000px;}
.ya5_c00288{bottom:411.825000px;}
.ya4_c00288{bottom:412.050000px;}
.yaa_c00288{bottom:412.245000px;}
.ya6_c00288{bottom:412.905000px;}
.ya8_c00288{bottom:413.130000px;}
.ya7_c00288{bottom:413.970000px;}
.ya0_c00288{bottom:430.680000px;}
.ya1_c00288{bottom:431.745000px;}
.y9f_c00288{bottom:432.405000px;}
.ya3_c00288{bottom:433.470000px;}
.ya2_c00288{bottom:433.905000px;}
.y99_c00288{bottom:449.745000px;}
.y9a_c00288{bottom:451.245000px;}
.y9d_c00288{bottom:451.905000px;}
.y9e_c00288{bottom:452.130000px;}
.y9c_c00288{bottom:453.405000px;}
.y9b_c00288{bottom:453.420000px;}
.y96_c00288{bottom:479.325000px;}
.y98_c00288{bottom:479.550000px;}
.y94_c00288{bottom:480.405000px;}
.y97_c00288{bottom:480.630000px;}
.y95_c00288{bottom:481.470000px;}
.y93_c00288{bottom:498.825000px;}
.y92_c00288{bottom:499.905000px;}
.y90_c00288{bottom:500.970000px;}
.y91_c00288{bottom:502.050000px;}
.y8f_c00288{bottom:523.245000px;}
.y8e_c00288{bottom:525.405000px;}
.y8b_c00288{bottom:568.245000px;}
.y8c_c00288{bottom:569.745000px;}
.y8a_c00288{bottom:570.630000px;}
.y8d_c00288{bottom:570.825000px;}
.y89_c00288{bottom:571.905000px;}
.y86_c00288{bottom:588.825000px;}
.y87_c00288{bottom:589.245000px;}
.y88_c00288{bottom:589.905000px;}
.y85_c00288{bottom:590.130000px;}
.y84_c00288{bottom:591.405000px;}
.y81_c00288{bottom:606.405000px;}
.y83_c00288{bottom:607.245000px;}
.y80_c00288{bottom:608.745000px;}
.y82_c00288{bottom:610.470000px;}
.y7f_c00288{bottom:610.905000px;}
.y7e_c00288{bottom:626.745000px;}
.y79_c00288{bottom:628.245000px;}
.y7d_c00288{bottom:628.905000px;}
.y7c_c00288{bottom:629.130000px;}
.y7a_c00288{bottom:629.970000px;}
.y7b_c00288{bottom:630.405000px;}
.y76_c00288{bottom:646.470000px;}
.y75_c00288{bottom:647.745000px;}
.y78_c00288{bottom:648.630000px;}
.y74_c00288{bottom:649.470000px;}
.y77_c00288{bottom:649.905000px;}
.y73_c00288{bottom:667.245000px;}
.y72_c00288{bottom:668.130000px;}
.y71_c00288{bottom:669.405000px;}
.y6e_c00288{bottom:686.745000px;}
.y6d_c00288{bottom:687.825000px;}
.y6b_c00288{bottom:688.245000px;}
.y70_c00288{bottom:689.130000px;}
.y6f_c00288{bottom:689.970000px;}
.y6c_c00288{bottom:690.405000px;}
.y68_c00288{bottom:706.245000px;}
.y69_c00288{bottom:706.680000px;}
.y6a_c00288{bottom:708.405000px;}
.y64_c00288{bottom:726.825000px;}
.y67_c00288{bottom:727.245000px;}
.y65_c00288{bottom:727.905000px;}
.y63_c00288{bottom:728.325000px;}
.y66_c00288{bottom:728.970000px;}
.y62_c00288{bottom:729.405000px;}
.y60_c00288{bottom:745.245000px;}
.y5f_c00288{bottom:745.470000px;}
.y5d_c00288{bottom:746.745000px;}
.y61_c00288{bottom:747.405000px;}
.y5e_c00288{bottom:747.825000px;}
.y5b_c00288{bottom:748.470000px;}
.y5c_c00288{bottom:748.905000px;}
.y5a_c00288{bottom:764.325000px;}
.y58_c00288{bottom:766.245000px;}
.y59_c00288{bottom:767.970000px;}
.y57_c00288{bottom:768.405000px;}
.y56_c00288{bottom:785.745000px;}
.y55_c00288{bottom:786.630000px;}
.y54_c00288{bottom:787.470000px;}
.y52_c00288{bottom:787.905000px;}
.y53_c00288{bottom:787.920000px;}
.y4f_c00288{bottom:804.405000px;}
.y4e_c00288{bottom:805.245000px;}
.y51_c00288{bottom:806.130000px;}
.y4d_c00288{bottom:807.405000px;}
.y50_c00288{bottom:808.470000px;}
.y49_c00288{bottom:823.905000px;}
.y47_c00288{bottom:824.745000px;}
.y48_c00288{bottom:825.180000px;}
.y4c_c00288{bottom:825.825000px;}
.y4b_c00288{bottom:826.905000px;}
.y4a_c00288{bottom:827.130000px;}
.y44_c00288{bottom:843.405000px;}
.y46_c00288{bottom:845.325000px;}
.y45_c00288{bottom:845.745000px;}
.y42_c00288{bottom:846.825000px;}
.y43_c00288{bottom:847.905000px;}
.y3f_c00288{bottom:862.905000px;}
.y3d_c00288{bottom:863.745000px;}
.y41_c00288{bottom:864.405000px;}
.y40_c00288{bottom:864.825000px;}
.y3b_c00288{bottom:865.245000px;}
.y3e_c00288{bottom:866.130000px;}
.y3c_c00288{bottom:867.405000px;}
.y39_c00288{bottom:883.680000px;}
.y38_c00288{bottom:884.745000px;}
.y3a_c00288{bottom:885.630000px;}
.y37_c00288{bottom:886.470000px;}
.y36_c00288{bottom:886.905000px;}
.y34_c00288{bottom:903.405000px;}
.y32_c00288{bottom:904.245000px;}
.y33_c00288{bottom:905.325000px;}
.y35_c00288{bottom:906.405000px;}
.y2d_c00288{bottom:921.405000px;}
.y2f_c00288{bottom:922.905000px;}
.y2e_c00288{bottom:923.745000px;}
.y31_c00288{bottom:923.970000px;}
.y2c_c00288{bottom:924.825000px;}
.y2b_c00288{bottom:925.905000px;}
.y30_c00288{bottom:926.130000px;}
.y29_c00288{bottom:940.905000px;}
.y28_c00288{bottom:941.970000px;}
.y25_c00288{bottom:943.245000px;}
.y2a_c00288{bottom:943.470000px;}
.y26_c00288{bottom:944.130000px;}
.y27_c00288{bottom:944.325000px;}
.y24_c00288{bottom:945.405000px;}
.y23_c00288{bottom:963.825000px;}
.y20_c00288{bottom:964.905000px;}
.y21_c00288{bottom:965.130000px;}
.y22_c00288{bottom:966.405000px;}
.y1e_c00288{bottom:982.245000px;}
.y1b_c00288{bottom:983.325000px;}
.y1c_c00288{bottom:983.745000px;}
.y1a_c00288{bottom:984.405000px;}
.y1f_c00288{bottom:984.630000px;}
.y1d_c00288{bottom:985.470000px;}
.y19_c00288{bottom:985.905000px;}
.y13_c00288{bottom:1001.745000px;}
.y15_c00288{bottom:1002.825000px;}
.y18_c00288{bottom:1003.245000px;}
.y16_c00288{bottom:1003.905000px;}
.y17_c00288{bottom:1004.970000px;}
.y14_c00288{bottom:1005.405000px;}
.y11_c00288{bottom:1021.245000px;}
.y10_c00288{bottom:1021.905000px;}
.y12_c00288{bottom:1023.630000px;}
.yf_c00288{bottom:1024.470000px;}
.yd_c00288{bottom:1040.745000px;}
.yc_c00288{bottom:1042.245000px;}
.ye_c00288{bottom:1042.905000px;}
.yb_c00288{bottom:1043.130000px;}
.y9_c00288{bottom:1043.970000px;}
.ya_c00288{bottom:1044.405000px;}
.y8_c00288{bottom:1061.325000px;}
.y6_c00288{bottom:1061.745000px;}
.y7_c00288{bottom:1062.630000px;}
.y3_c00288{bottom:1062.825000px;}
.y5_c00288{bottom:1063.470000px;}
.y4_c00288{bottom:1063.905000px;}
.y1_c00288{bottom:1099.905000px;}
.y2_c00288{bottom:1102.050000px;}
.h8_c00288{height:4.206533px;}
.h6_c00288{height:23.025234px;}
.h2_c00288{height:25.091602px;}
.h4_c00288{height:31.364502px;}
.h1_c00288{height:35.571035px;}
.h3_c00288{height:39.777568px;}
.h5_c00288{height:43.910303px;}
.h7_c00288{height:48.116836px;}
.h0_c00288{height:1335.000000px;}
.w0_c00288{width:880.500000px;}
.x0_c00288{left:0.000000px;}
.x3_c00288{left:151.500000px;}
.xa2_c00288{left:153.000000px;}
.xe7_c00288{left:154.500000px;}
.x28_c00288{left:166.500000px;}
.xb5_c00288{left:168.000000px;}
.xc8_c00288{left:169.500000px;}
.xf7_c00288{left:170.580000px;}
.x5a_c00288{left:172.080000px;}
.xe8_c00288{left:174.420000px;}
.x79_c00288{left:175.500000px;}
.x14_c00288{left:180.420000px;}
.xdd_c00288{left:183.000000px;}
.x4c_c00288{left:184.080000px;}
.x41_c00288{left:186.420000px;}
.x67_c00288{left:188.355000px;}
.xcd_c00288{left:189.420000px;}
.x73_c00288{left:190.500000px;}
.x4_c00288{left:192.420000px;}
.x23_c00288{left:196.080000px;}
.xe9_c00288{left:201.000000px;}
.x4d_c00288{left:202.920000px;}
.x5b_c00288{left:204.855000px;}
.x35_c00288{left:208.080000px;}
.xac_c00288{left:210.645000px;}
.xda_c00288{left:211.920000px;}
.x68_c00288{left:213.420000px;}
.x24_c00288{left:215.580000px;}
.x81_c00288{left:217.500000px;}
.x15_c00288{left:219.000000px;}
.x5_c00288{left:220.500000px;}
.xf4_c00288{left:223.080000px;}
.x36_c00288{left:226.500000px;}
.x4e_c00288{left:231.855000px;}
.x69_c00288{left:233.580000px;}
.x95_c00288{left:237.000000px;}
.x25_c00288{left:238.500000px;}
.x90_c00288{left:239.580000px;}
.x42_c00288{left:241.920000px;}
.xb9_c00288{left:243.000000px;}
.x16_c00288{left:246.000000px;}
.x6_c00288{left:247.500000px;}
.xed_c00288{left:249.000000px;}
.x9d_c00288{left:252.000000px;}
.xf8_c00288{left:253.500000px;}
.x29_c00288{left:255.000000px;}
.x26_c00288{left:256.500000px;}
.x82_c00288{left:258.000000px;}
.x5c_c00288{left:259.500000px;}
.xea_c00288{left:261.000000px;}
.x88_c00288{left:262.920000px;}
.xc1_c00288{left:264.420000px;}
.x6a_c00288{left:265.920000px;}
.xba_c00288{left:267.000000px;}
.x9e_c00288{left:268.080000px;}
.x37_c00288{left:270.000000px;}
.x4f_c00288{left:271.500000px;}
.xa7_c00288{left:272.580000px;}
.x91_c00288{left:274.080000px;}
.xd4_c00288{left:276.000000px;}
.x7a_c00288{left:277.275000px;}
.x2a_c00288{left:279.420000px;}
.x43_c00288{left:280.920000px;}
.xeb_c00288{left:282.000000px;}
.xb1_c00288{left:285.000000px;}
.xf1_c00288{left:286.080000px;}
.x6b_c00288{left:287.580000px;}
.x7_c00288{left:289.080000px;}
.x50_c00288{left:291.000000px;}
.x74_c00288{left:292.080000px;}
.x27_c00288{left:294.000000px;}
.xd1_c00288{left:296.580000px;}
.xee_c00288{left:300.000000px;}
.xc9_c00288{left:301.080000px;}
.xbb_c00288{left:303.420000px;}
.x51_c00288{left:304.500000px;}
.xc2_c00288{left:305.580000px;}
.xdf_c00288{left:310.500000px;}
.x75_c00288{left:312.420000px;}
.x17_c00288{left:314.580000px;}
.x9f_c00288{left:316.080000px;}
.x92_c00288{left:318.420000px;}
.xce_c00288{left:321.420000px;}
.x2b_c00288{left:322.500000px;}
.x89_c00288{left:324.000000px;}
.xa3_c00288{left:328.080000px;}
.x6c_c00288{left:331.500000px;}
.x96_c00288{left:332.580000px;}
.x8_c00288{left:334.920000px;}
.x5d_c00288{left:339.420000px;}
.x7b_c00288{left:342.000000px;}
.x83_c00288{left:343.500000px;}
.xe3_c00288{left:345.000000px;}
.xec_c00288{left:346.275000px;}
.x44_c00288{left:348.000000px;}
.xbc_c00288{left:349.080000px;}
.x97_c00288{left:352.920000px;}
.x2c_c00288{left:354.420000px;}
.xe0_c00288{left:357.420000px;}
.x18_c00288{left:360.000000px;}
.xcf_c00288{left:361.500000px;}
.x7c_c00288{left:363.000000px;}
.x5e_c00288{left:364.500000px;}
.xf9_c00288{left:366.000000px;}
.x45_c00288{left:367.920000px;}
.xa4_c00288{left:369.000000px;}
.xb2_c00288{left:370.920000px;}
.x9_c00288{left:375.000000px;}
.x93_c00288{left:376.920000px;}
.x8a_c00288{left:379.920000px;}
.x19_c00288{left:381.420000px;}
.x98_c00288{left:382.500000px;}
.x2d_c00288{left:384.000000px;}
.x5f_c00288{left:385.080000px;}
.xf3_c00288{left:386.580000px;}
.x6d_c00288{left:388.500000px;}
.xbd_c00288{left:390.420000px;}
.xd5_c00288{left:393.000000px;}
.xa_c00288{left:394.920000px;}
.x38_c00288{left:397.500000px;}
.xb6_c00288{left:399.000000px;}
.xde_c00288{left:402.000000px;}
.x2_c00288{left:403.500000px;}
.x1a_c00288{left:406.500000px;}
.x6e_c00288{left:407.580000px;}
.xa0_c00288{left:412.080000px;}
.xd0_c00288{left:415.920000px;}
.x39_c00288{left:418.500000px;}
.xf5_c00288{left:420.000000px;}
.xef_c00288{left:421.500000px;}
.x2e_c00288{left:424.500000px;}
.x1b_c00288{left:425.580000px;}
.x52_c00288{left:427.080000px;}
.xb_c00288{left:429.420000px;}
.x46_c00288{left:432.000000px;}
.xb3_c00288{left:433.080000px;}
.xb7_c00288{left:434.580000px;}
.x3a_c00288{left:436.500000px;}
.xca_c00288{left:438.420000px;}
.xad_c00288{left:441.000000px;}
.x60_c00288{left:442.080000px;}
.x6f_c00288{left:445.500000px;}
.xc3_c00288{left:447.000000px;}
.xd6_c00288{left:449.580000px;}
.x8b_c00288{left:451.920000px;}
.xbe_c00288{left:453.000000px;}
.x53_c00288{left:460.500000px;}
.x3b_c00288{left:462.000000px;}
.xb4_c00288{left:463.500000px;}
.xf6_c00288{left:465.420000px;}
.x7d_c00288{left:468.000000px;}
.xc7_c00288{left:469.080000px;}
.xc_c00288{left:471.000000px;}
.xd2_c00288{left:472.080000px;}
.x84_c00288{left:476.580000px;}
.x1c_c00288{left:478.500000px;}
.xe4_c00288{left:479.580000px;}
.x61_c00288{left:481.500000px;}
.xdb_c00288{left:483.420000px;}
.x2f_c00288{left:484.500000px;}
.x70_c00288{left:487.080000px;}
.xd7_c00288{left:489.000000px;}
.xd_c00288{left:490.920000px;}
.xae_c00288{left:492.000000px;}
.x3c_c00288{left:493.920000px;}
.x54_c00288{left:496.080000px;}
.x7e_c00288{left:499.920000px;}
.x8c_c00288{left:503.580000px;}
.x47_c00288{left:508.500000px;}
.xd9_c00288{left:509.580000px;}
.x1d_c00288{left:511.500000px;}
.xc4_c00288{left:512.580000px;}
.xa1_c00288{left:514.080000px;}
.xfa_c00288{left:515.580000px;}
.x55_c00288{left:517.920000px;}
.x94_c00288{left:519.420000px;}
.xdc_c00288{left:522.420000px;}
.xe_c00288{left:524.580000px;}
.xd8_c00288{left:526.920000px;}
.x3d_c00288{left:532.500000px;}
.x99_c00288{left:534.000000px;}
.xbf_c00288{left:538.080000px;}
.x76_c00288{left:539.580000px;}
.x8d_c00288{left:544.500000px;}
.x9a_c00288{left:547.500000px;}
.x48_c00288{left:552.000000px;}
.xd3_c00288{left:553.275000px;}
.xfb_c00288{left:555.000000px;}
.xf_c00288{left:556.080000px;}
.x62_c00288{left:557.580000px;}
.x7f_c00288{left:559.920000px;}
.xa5_c00288{left:562.275000px;}
.x1e_c00288{left:563.580000px;}
.xcb_c00288{left:566.580000px;}
.xf2_c00288{left:568.500000px;}
.xaf_c00288{left:570.420000px;}
.x3e_c00288{left:575.580000px;}
.x30_c00288{left:577.920000px;}
.xa8_c00288{left:579.000000px;}
.x71_c00288{left:580.080000px;}
.x1f_c00288{left:583.500000px;}
.xe5_c00288{left:585.000000px;}
.x56_c00288{left:587.580000px;}
.x85_c00288{left:589.080000px;}
.x49_c00288{left:594.420000px;}
.xb8_c00288{left:598.500000px;}
.x10_c00288{left:601.500000px;}
.x63_c00288{left:604.080000px;}
.x20_c00288{left:605.580000px;}
.x31_c00288{left:607.500000px;}
.x9b_c00288{left:609.000000px;}
.x86_c00288{left:610.500000px;}
.x77_c00288{left:611.775000px;}
.xe1_c00288{left:613.500000px;}
.xe6_c00288{left:619.500000px;}
.x11_c00288{left:621.420000px;}
.xa9_c00288{left:627.000000px;}
.x57_c00288{left:628.500000px;}
.xb0_c00288{left:630.420000px;}
.xcc_c00288{left:632.580000px;}
.x64_c00288{left:636.420000px;}
.xaa_c00288{left:644.580000px;}
.x32_c00288{left:646.500000px;}
.x21_c00288{left:648.000000px;}
.x12_c00288{left:649.500000px;}
.x78_c00288{left:651.000000px;}
.x8e_c00288{left:652.080000px;}
.x87_c00288{left:657.000000px;}
.x80_c00288{left:658.500000px;}
.x72_c00288{left:660.000000px;}
.x65_c00288{left:663.000000px;}
.xc5_c00288{left:664.500000px;}
.x33_c00288{left:666.420000px;}
.x3f_c00288{left:669.000000px;}
.x8f_c00288{left:672.000000px;}
.xa6_c00288{left:673.080000px;}
.x58_c00288{left:674.355000px;}
.x4a_c00288{left:679.500000px;}
.xf0_c00288{left:680.580000px;}
.xc6_c00288{left:684.420000px;}
.x66_c00288{left:691.500000px;}
.x40_c00288{left:693.000000px;}
.x34_c00288{left:694.920000px;}
.x9c_c00288{left:696.000000px;}
.x4b_c00288{left:697.080000px;}
.x13_c00288{left:700.500000px;}
.x1_c00288{left:703.080000px;}
.xc0_c00288{left:706.500000px;}
.x59_c00288{left:707.580000px;}
.xe2_c00288{left:711.420000px;}
.xab_c00288{left:712.500000px;}
.x22_c00288{left:717.000000px;}
@media print{
.v0_c00288{vertical-align:0.000000pt;}
.ls0_c00288{letter-spacing:0.000000pt;}
.ws0_c00288{word-spacing:-0.245293pt;}
.ws1_c00288{word-spacing:0.000000pt;}
.fs7_c00288{font-size:3.040000pt;}
.fs5_c00288{font-size:16.640000pt;}
.fs1_c00288{font-size:18.133333pt;}
.fs3_c00288{font-size:22.666667pt;}
.fs0_c00288{font-size:25.706667pt;}
.fs2_c00288{font-size:28.746667pt;}
.fs4_c00288{font-size:31.733333pt;}
.fs6_c00288{font-size:34.773333pt;}
.y0_c00288{bottom:0.000000pt;}
.yd6_c00288{bottom:223.026667pt;}
.yd4_c00288{bottom:224.160000pt;}
.yd5_c00288{bottom:225.106667pt;}
.yd7_c00288{bottom:225.693333pt;}
.yd2_c00288{bottom:227.026667pt;}
.yd3_c00288{bottom:227.040000pt;}
.yce_c00288{bottom:242.440000pt;}
.ycc_c00288{bottom:242.826667pt;}
.ycd_c00288{bottom:243.226667pt;}
.yd0_c00288{bottom:243.400000pt;}
.yd1_c00288{bottom:243.973333pt;}
.ycf_c00288{bottom:244.360000pt;}
.ycb_c00288{bottom:257.693333pt;}
.yc7_c00288{bottom:259.773333pt;}
.yca_c00288{bottom:260.560000pt;}
.yc9_c00288{bottom:260.733333pt;}
.yc8_c00288{bottom:261.306667pt;}
.yc5_c00288{bottom:261.693333pt;}
.yc6_c00288{bottom:263.040000pt;}
.yc3_c00288{bottom:277.106667pt;}
.yc2_c00288{bottom:278.066667pt;}
.yc4_c00288{bottom:279.026667pt;}
.yc1_c00288{bottom:279.400000pt;}
.yc0_c00288{bottom:280.360000pt;}
.ybd_c00288{bottom:294.826667pt;}
.ybe_c00288{bottom:295.773333pt;}
.ybb_c00288{bottom:296.560000pt;}
.ybf_c00288{bottom:296.733333pt;}
.yba_c00288{bottom:297.693333pt;}
.ybc_c00288{bottom:297.706667pt;}
.yb6_c00288{bottom:313.106667pt;}
.yb8_c00288{bottom:314.066667pt;}
.yb9_c00288{bottom:314.266667pt;}
.yb7_c00288{bottom:315.040000pt;}
.yb4_c00288{bottom:329.106667pt;}
.yb5_c00288{bottom:330.440000pt;}
.yb2_c00288{bottom:331.226667pt;}
.yb3_c00288{bottom:332.360000pt;}
.yb0_c00288{bottom:345.693333pt;}
.yb1_c00288{bottom:347.400000pt;}
.yad_c00288{bottom:347.773333pt;}
.yaf_c00288{bottom:348.560000pt;}
.yac_c00288{bottom:348.733333pt;}
.yae_c00288{bottom:349.693333pt;}
.ya9_c00288{bottom:365.106667pt;}
.yab_c00288{bottom:365.893333pt;}
.ya5_c00288{bottom:366.066667pt;}
.ya4_c00288{bottom:366.266667pt;}
.yaa_c00288{bottom:366.440000pt;}
.ya6_c00288{bottom:367.026667pt;}
.ya8_c00288{bottom:367.226667pt;}
.ya7_c00288{bottom:367.973333pt;}
.ya0_c00288{bottom:382.826667pt;}
.ya1_c00288{bottom:383.773333pt;}
.y9f_c00288{bottom:384.360000pt;}
.ya3_c00288{bottom:385.306667pt;}
.ya2_c00288{bottom:385.693333pt;}
.y99_c00288{bottom:399.773333pt;}
.y9a_c00288{bottom:401.106667pt;}
.y9d_c00288{bottom:401.693333pt;}
.y9e_c00288{bottom:401.893333pt;}
.y9c_c00288{bottom:403.026667pt;}
.y9b_c00288{bottom:403.040000pt;}
.y96_c00288{bottom:426.066667pt;}
.y98_c00288{bottom:426.266667pt;}
.y94_c00288{bottom:427.026667pt;}
.y97_c00288{bottom:427.226667pt;}
.y95_c00288{bottom:427.973333pt;}
.y93_c00288{bottom:443.400000pt;}
.y92_c00288{bottom:444.360000pt;}
.y90_c00288{bottom:445.306667pt;}
.y91_c00288{bottom:446.266667pt;}
.y8f_c00288{bottom:465.106667pt;}
.y8e_c00288{bottom:467.026667pt;}
.y8b_c00288{bottom:505.106667pt;}
.y8c_c00288{bottom:506.440000pt;}
.y8a_c00288{bottom:507.226667pt;}
.y8d_c00288{bottom:507.400000pt;}
.y89_c00288{bottom:508.360000pt;}
.y86_c00288{bottom:523.400000pt;}
.y87_c00288{bottom:523.773333pt;}
.y88_c00288{bottom:524.360000pt;}
.y85_c00288{bottom:524.560000pt;}
.y84_c00288{bottom:525.693333pt;}
.y81_c00288{bottom:539.026667pt;}
.y83_c00288{bottom:539.773333pt;}
.y80_c00288{bottom:541.106667pt;}
.y82_c00288{bottom:542.640000pt;}
.y7f_c00288{bottom:543.026667pt;}
.y7e_c00288{bottom:557.106667pt;}
.y79_c00288{bottom:558.440000pt;}
.y7d_c00288{bottom:559.026667pt;}
.y7c_c00288{bottom:559.226667pt;}
.y7a_c00288{bottom:559.973333pt;}
.y7b_c00288{bottom:560.360000pt;}
.y76_c00288{bottom:574.640000pt;}
.y75_c00288{bottom:575.773333pt;}
.y78_c00288{bottom:576.560000pt;}
.y74_c00288{bottom:577.306667pt;}
.y77_c00288{bottom:577.693333pt;}
.y73_c00288{bottom:593.106667pt;}
.y72_c00288{bottom:593.893333pt;}
.y71_c00288{bottom:595.026667pt;}
.y6e_c00288{bottom:610.440000pt;}
.y6d_c00288{bottom:611.400000pt;}
.y6b_c00288{bottom:611.773333pt;}
.y70_c00288{bottom:612.560000pt;}
.y6f_c00288{bottom:613.306667pt;}
.y6c_c00288{bottom:613.693333pt;}
.y68_c00288{bottom:627.773333pt;}
.y69_c00288{bottom:628.160000pt;}
.y6a_c00288{bottom:629.693333pt;}
.y64_c00288{bottom:646.066667pt;}
.y67_c00288{bottom:646.440000pt;}
.y65_c00288{bottom:647.026667pt;}
.y63_c00288{bottom:647.400000pt;}
.y66_c00288{bottom:647.973333pt;}
.y62_c00288{bottom:648.360000pt;}
.y60_c00288{bottom:662.440000pt;}
.y5f_c00288{bottom:662.640000pt;}
.y5d_c00288{bottom:663.773333pt;}
.y61_c00288{bottom:664.360000pt;}
.y5e_c00288{bottom:664.733333pt;}
.y5b_c00288{bottom:665.306667pt;}
.y5c_c00288{bottom:665.693333pt;}
.y5a_c00288{bottom:679.400000pt;}
.y58_c00288{bottom:681.106667pt;}
.y59_c00288{bottom:682.640000pt;}
.y57_c00288{bottom:683.026667pt;}
.y56_c00288{bottom:698.440000pt;}
.y55_c00288{bottom:699.226667pt;}
.y54_c00288{bottom:699.973333pt;}
.y52_c00288{bottom:700.360000pt;}
.y53_c00288{bottom:700.373333pt;}
.y4f_c00288{bottom:715.026667pt;}
.y4e_c00288{bottom:715.773333pt;}
.y51_c00288{bottom:716.560000pt;}
.y4d_c00288{bottom:717.693333pt;}
.y50_c00288{bottom:718.640000pt;}
.y49_c00288{bottom:732.360000pt;}
.y47_c00288{bottom:733.106667pt;}
.y48_c00288{bottom:733.493333pt;}
.y4c_c00288{bottom:734.066667pt;}
.y4b_c00288{bottom:735.026667pt;}
.y4a_c00288{bottom:735.226667pt;}
.y44_c00288{bottom:749.693333pt;}
.y46_c00288{bottom:751.400000pt;}
.y45_c00288{bottom:751.773333pt;}
.y42_c00288{bottom:752.733333pt;}
.y43_c00288{bottom:753.693333pt;}
.y3f_c00288{bottom:767.026667pt;}
.y3d_c00288{bottom:767.773333pt;}
.y41_c00288{bottom:768.360000pt;}
.y40_c00288{bottom:768.733333pt;}
.y3b_c00288{bottom:769.106667pt;}
.y3e_c00288{bottom:769.893333pt;}
.y3c_c00288{bottom:771.026667pt;}
.y39_c00288{bottom:785.493333pt;}
.y38_c00288{bottom:786.440000pt;}
.y3a_c00288{bottom:787.226667pt;}
.y37_c00288{bottom:787.973333pt;}
.y36_c00288{bottom:788.360000pt;}
.y34_c00288{bottom:803.026667pt;}
.y32_c00288{bottom:803.773333pt;}
.y33_c00288{bottom:804.733333pt;}
.y35_c00288{bottom:805.693333pt;}
.y2d_c00288{bottom:819.026667pt;}
.y2f_c00288{bottom:820.360000pt;}
.y2e_c00288{bottom:821.106667pt;}
.y31_c00288{bottom:821.306667pt;}
.y2c_c00288{bottom:822.066667pt;}
.y2b_c00288{bottom:823.026667pt;}
.y30_c00288{bottom:823.226667pt;}
.y29_c00288{bottom:836.360000pt;}
.y28_c00288{bottom:837.306667pt;}
.y25_c00288{bottom:838.440000pt;}
.y2a_c00288{bottom:838.640000pt;}
.y26_c00288{bottom:839.226667pt;}
.y27_c00288{bottom:839.400000pt;}
.y24_c00288{bottom:840.360000pt;}
.y23_c00288{bottom:856.733333pt;}
.y20_c00288{bottom:857.693333pt;}
.y21_c00288{bottom:857.893333pt;}
.y22_c00288{bottom:859.026667pt;}
.y1e_c00288{bottom:873.106667pt;}
.y1b_c00288{bottom:874.066667pt;}
.y1c_c00288{bottom:874.440000pt;}
.y1a_c00288{bottom:875.026667pt;}
.y1f_c00288{bottom:875.226667pt;}
.y1d_c00288{bottom:875.973333pt;}
.y19_c00288{bottom:876.360000pt;}
.y13_c00288{bottom:890.440000pt;}
.y15_c00288{bottom:891.400000pt;}
.y18_c00288{bottom:891.773333pt;}
.y16_c00288{bottom:892.360000pt;}
.y17_c00288{bottom:893.306667pt;}
.y14_c00288{bottom:893.693333pt;}
.y11_c00288{bottom:907.773333pt;}
.y10_c00288{bottom:908.360000pt;}
.y12_c00288{bottom:909.893333pt;}
.yf_c00288{bottom:910.640000pt;}
.yd_c00288{bottom:925.106667pt;}
.yc_c00288{bottom:926.440000pt;}
.ye_c00288{bottom:927.026667pt;}
.yb_c00288{bottom:927.226667pt;}
.y9_c00288{bottom:927.973333pt;}
.ya_c00288{bottom:928.360000pt;}
.y8_c00288{bottom:943.400000pt;}
.y6_c00288{bottom:943.773333pt;}
.y7_c00288{bottom:944.560000pt;}
.y3_c00288{bottom:944.733333pt;}
.y5_c00288{bottom:945.306667pt;}
.y4_c00288{bottom:945.693333pt;}
.y1_c00288{bottom:977.693333pt;}
.y2_c00288{bottom:979.600000pt;}
.h8_c00288{height:3.739141pt;}
.h6_c00288{height:20.466875pt;}
.h2_c00288{height:22.303646pt;}
.h4_c00288{height:27.879557pt;}
.h1_c00288{height:31.618698pt;}
.h3_c00288{height:35.357839pt;}
.h5_c00288{height:39.031380pt;}
.h7_c00288{height:42.770521pt;}
.h0_c00288{height:1186.666667pt;}
.w0_c00288{width:782.666667pt;}
.x0_c00288{left:0.000000pt;}
.x3_c00288{left:134.666667pt;}
.xa2_c00288{left:136.000000pt;}
.xe7_c00288{left:137.333333pt;}
.x28_c00288{left:148.000000pt;}
.xb5_c00288{left:149.333333pt;}
.xc8_c00288{left:150.666667pt;}
.xf7_c00288{left:151.626667pt;}
.x5a_c00288{left:152.960000pt;}
.xe8_c00288{left:155.040000pt;}
.x79_c00288{left:156.000000pt;}
.x14_c00288{left:160.373333pt;}
.xdd_c00288{left:162.666667pt;}
.x4c_c00288{left:163.626667pt;}
.x41_c00288{left:165.706667pt;}
.x67_c00288{left:167.426667pt;}
.xcd_c00288{left:168.373333pt;}
.x73_c00288{left:169.333333pt;}
.x4_c00288{left:171.040000pt;}
.x23_c00288{left:174.293333pt;}
.xe9_c00288{left:178.666667pt;}
.x4d_c00288{left:180.373333pt;}
.x5b_c00288{left:182.093333pt;}
.x35_c00288{left:184.960000pt;}
.xac_c00288{left:187.240000pt;}
.xda_c00288{left:188.373333pt;}
.x68_c00288{left:189.706667pt;}
.x24_c00288{left:191.626667pt;}
.x81_c00288{left:193.333333pt;}
.x15_c00288{left:194.666667pt;}
.x5_c00288{left:196.000000pt;}
.xf4_c00288{left:198.293333pt;}
.x36_c00288{left:201.333333pt;}
.x4e_c00288{left:206.093333pt;}
.x69_c00288{left:207.626667pt;}
.x95_c00288{left:210.666667pt;}
.x25_c00288{left:212.000000pt;}
.x90_c00288{left:212.960000pt;}
.x42_c00288{left:215.040000pt;}
.xb9_c00288{left:216.000000pt;}
.x16_c00288{left:218.666667pt;}
.x6_c00288{left:220.000000pt;}
.xed_c00288{left:221.333333pt;}
.x9d_c00288{left:224.000000pt;}
.xf8_c00288{left:225.333333pt;}
.x29_c00288{left:226.666667pt;}
.x26_c00288{left:228.000000pt;}
.x82_c00288{left:229.333333pt;}
.x5c_c00288{left:230.666667pt;}
.xea_c00288{left:232.000000pt;}
.x88_c00288{left:233.706667pt;}
.xc1_c00288{left:235.040000pt;}
.x6a_c00288{left:236.373333pt;}
.xba_c00288{left:237.333333pt;}
.x9e_c00288{left:238.293333pt;}
.x37_c00288{left:240.000000pt;}
.x4f_c00288{left:241.333333pt;}
.xa7_c00288{left:242.293333pt;}
.x91_c00288{left:243.626667pt;}
.xd4_c00288{left:245.333333pt;}
.x7a_c00288{left:246.466667pt;}
.x2a_c00288{left:248.373333pt;}
.x43_c00288{left:249.706667pt;}
.xeb_c00288{left:250.666667pt;}
.xb1_c00288{left:253.333333pt;}
.xf1_c00288{left:254.293333pt;}
.x6b_c00288{left:255.626667pt;}
.x7_c00288{left:256.960000pt;}
.x50_c00288{left:258.666667pt;}
.x74_c00288{left:259.626667pt;}
.x27_c00288{left:261.333333pt;}
.xd1_c00288{left:263.626667pt;}
.xee_c00288{left:266.666667pt;}
.xc9_c00288{left:267.626667pt;}
.xbb_c00288{left:269.706667pt;}
.x51_c00288{left:270.666667pt;}
.xc2_c00288{left:271.626667pt;}
.xdf_c00288{left:276.000000pt;}
.x75_c00288{left:277.706667pt;}
.x17_c00288{left:279.626667pt;}
.x9f_c00288{left:280.960000pt;}
.x92_c00288{left:283.040000pt;}
.xce_c00288{left:285.706667pt;}
.x2b_c00288{left:286.666667pt;}
.x89_c00288{left:288.000000pt;}
.xa3_c00288{left:291.626667pt;}
.x6c_c00288{left:294.666667pt;}
.x96_c00288{left:295.626667pt;}
.x8_c00288{left:297.706667pt;}
.x5d_c00288{left:301.706667pt;}
.x7b_c00288{left:304.000000pt;}
.x83_c00288{left:305.333333pt;}
.xe3_c00288{left:306.666667pt;}
.xec_c00288{left:307.800000pt;}
.x44_c00288{left:309.333333pt;}
.xbc_c00288{left:310.293333pt;}
.x97_c00288{left:313.706667pt;}
.x2c_c00288{left:315.040000pt;}
.xe0_c00288{left:317.706667pt;}
.x18_c00288{left:320.000000pt;}
.xcf_c00288{left:321.333333pt;}
.x7c_c00288{left:322.666667pt;}
.x5e_c00288{left:324.000000pt;}
.xf9_c00288{left:325.333333pt;}
.x45_c00288{left:327.040000pt;}
.xa4_c00288{left:328.000000pt;}
.xb2_c00288{left:329.706667pt;}
.x9_c00288{left:333.333333pt;}
.x93_c00288{left:335.040000pt;}
.x8a_c00288{left:337.706667pt;}
.x19_c00288{left:339.040000pt;}
.x98_c00288{left:340.000000pt;}
.x2d_c00288{left:341.333333pt;}
.x5f_c00288{left:342.293333pt;}
.xf3_c00288{left:343.626667pt;}
.x6d_c00288{left:345.333333pt;}
.xbd_c00288{left:347.040000pt;}
.xd5_c00288{left:349.333333pt;}
.xa_c00288{left:351.040000pt;}
.x38_c00288{left:353.333333pt;}
.xb6_c00288{left:354.666667pt;}
.xde_c00288{left:357.333333pt;}
.x2_c00288{left:358.666667pt;}
.x1a_c00288{left:361.333333pt;}
.x6e_c00288{left:362.293333pt;}
.xa0_c00288{left:366.293333pt;}
.xd0_c00288{left:369.706667pt;}
.x39_c00288{left:372.000000pt;}
.xf5_c00288{left:373.333333pt;}
.xef_c00288{left:374.666667pt;}
.x2e_c00288{left:377.333333pt;}
.x1b_c00288{left:378.293333pt;}
.x52_c00288{left:379.626667pt;}
.xb_c00288{left:381.706667pt;}
.x46_c00288{left:384.000000pt;}
.xb3_c00288{left:384.960000pt;}
.xb7_c00288{left:386.293333pt;}
.x3a_c00288{left:388.000000pt;}
.xca_c00288{left:389.706667pt;}
.xad_c00288{left:392.000000pt;}
.x60_c00288{left:392.960000pt;}
.x6f_c00288{left:396.000000pt;}
.xc3_c00288{left:397.333333pt;}
.xd6_c00288{left:399.626667pt;}
.x8b_c00288{left:401.706667pt;}
.xbe_c00288{left:402.666667pt;}
.x53_c00288{left:409.333333pt;}
.x3b_c00288{left:410.666667pt;}
.xb4_c00288{left:412.000000pt;}
.xf6_c00288{left:413.706667pt;}
.x7d_c00288{left:416.000000pt;}
.xc7_c00288{left:416.960000pt;}
.xc_c00288{left:418.666667pt;}
.xd2_c00288{left:419.626667pt;}
.x84_c00288{left:423.626667pt;}
.x1c_c00288{left:425.333333pt;}
.xe4_c00288{left:426.293333pt;}
.x61_c00288{left:428.000000pt;}
.xdb_c00288{left:429.706667pt;}
.x2f_c00288{left:430.666667pt;}
.x70_c00288{left:432.960000pt;}
.xd7_c00288{left:434.666667pt;}
.xd_c00288{left:436.373333pt;}
.xae_c00288{left:437.333333pt;}
.x3c_c00288{left:439.040000pt;}
.x54_c00288{left:440.960000pt;}
.x7e_c00288{left:444.373333pt;}
.x8c_c00288{left:447.626667pt;}
.x47_c00288{left:452.000000pt;}
.xd9_c00288{left:452.960000pt;}
.x1d_c00288{left:454.666667pt;}
.xc4_c00288{left:455.626667pt;}
.xa1_c00288{left:456.960000pt;}
.xfa_c00288{left:458.293333pt;}
.x55_c00288{left:460.373333pt;}
.x94_c00288{left:461.706667pt;}
.xdc_c00288{left:464.373333pt;}
.xe_c00288{left:466.293333pt;}
.xd8_c00288{left:468.373333pt;}
.x3d_c00288{left:473.333333pt;}
.x99_c00288{left:474.666667pt;}
.xbf_c00288{left:478.293333pt;}
.x76_c00288{left:479.626667pt;}
.x8d_c00288{left:484.000000pt;}
.x9a_c00288{left:486.666667pt;}
.x48_c00288{left:490.666667pt;}
.xd3_c00288{left:491.800000pt;}
.xfb_c00288{left:493.333333pt;}
.xf_c00288{left:494.293333pt;}
.x62_c00288{left:495.626667pt;}
.x7f_c00288{left:497.706667pt;}
.xa5_c00288{left:499.800000pt;}
.x1e_c00288{left:500.960000pt;}
.xcb_c00288{left:503.626667pt;}
.xf2_c00288{left:505.333333pt;}
.xaf_c00288{left:507.040000pt;}
.x3e_c00288{left:511.626667pt;}
.x30_c00288{left:513.706667pt;}
.xa8_c00288{left:514.666667pt;}
.x71_c00288{left:515.626667pt;}
.x1f_c00288{left:518.666667pt;}
.xe5_c00288{left:520.000000pt;}
.x56_c00288{left:522.293333pt;}
.x85_c00288{left:523.626667pt;}
.x49_c00288{left:528.373333pt;}
.xb8_c00288{left:532.000000pt;}
.x10_c00288{left:534.666667pt;}
.x63_c00288{left:536.960000pt;}
.x20_c00288{left:538.293333pt;}
.x31_c00288{left:540.000000pt;}
.x9b_c00288{left:541.333333pt;}
.x86_c00288{left:542.666667pt;}
.x77_c00288{left:543.800000pt;}
.xe1_c00288{left:545.333333pt;}
.xe6_c00288{left:550.666667pt;}
.x11_c00288{left:552.373333pt;}
.xa9_c00288{left:557.333333pt;}
.x57_c00288{left:558.666667pt;}
.xb0_c00288{left:560.373333pt;}
.xcc_c00288{left:562.293333pt;}
.x64_c00288{left:565.706667pt;}
.xaa_c00288{left:572.960000pt;}
.x32_c00288{left:574.666667pt;}
.x21_c00288{left:576.000000pt;}
.x12_c00288{left:577.333333pt;}
.x78_c00288{left:578.666667pt;}
.x8e_c00288{left:579.626667pt;}
.x87_c00288{left:584.000000pt;}
.x80_c00288{left:585.333333pt;}
.x72_c00288{left:586.666667pt;}
.x65_c00288{left:589.333333pt;}
.xc5_c00288{left:590.666667pt;}
.x33_c00288{left:592.373333pt;}
.x3f_c00288{left:594.666667pt;}
.x8f_c00288{left:597.333333pt;}
.xa6_c00288{left:598.293333pt;}
.x58_c00288{left:599.426667pt;}
.x4a_c00288{left:604.000000pt;}
.xf0_c00288{left:604.960000pt;}
.xc6_c00288{left:608.373333pt;}
.x66_c00288{left:614.666667pt;}
.x40_c00288{left:616.000000pt;}
.x34_c00288{left:617.706667pt;}
.x9c_c00288{left:618.666667pt;}
.x4b_c00288{left:619.626667pt;}
.x13_c00288{left:622.666667pt;}
.x1_c00288{left:624.960000pt;}
.xc0_c00288{left:628.000000pt;}
.x59_c00288{left:628.960000pt;}
.xe2_c00288{left:632.373333pt;}
.xab_c00288{left:633.333333pt;}
.x22_c00288{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ce13c4943c568885cfa0cda0.woff2')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mcc_c00289{transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);}
.mb2_c00289{transform:matrix(0.313866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313866,0.000000,0.000000,0.250000,0,0);}
.m10e_c00289{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.md2_c00289{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m28_c00289{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.m74_c00289{transform:matrix(0.341258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341258,0.000000,0.000000,0.250000,0,0);}
.m66_c00289{transform:matrix(0.347479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347479,0.000000,0.000000,0.250000,0,0);}
.m104_c00289{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);}
.m9c_c00289{transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);}
.m60_c00289{transform:matrix(0.355042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355042,0.000000,0.000000,0.250000,0,0);}
.m50_c00289{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m2_c00289{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.ma4_c00289{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m7f_c00289{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mf4_c00289{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.m9d_c00289{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m38_c00289{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m32_c00289{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mbf_c00289{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m10a_c00289{transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);}
.mbd_c00289{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m27_c00289{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m8a_c00289{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m52_c00289{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m3a_c00289{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m6f_c00289{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m97_c00289{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.mdd_c00289{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m1a_c00289{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m107_c00289{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.mc9_c00289{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mdc_c00289{transform:matrix(0.399540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399540,0.000000,0.000000,0.250000,0,0);}
.mf9_c00289{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.meb_c00289{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);}
.m7b_c00289{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m34_c00289{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m10c_c00289{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mf3_c00289{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m42_c00289{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.ma1_c00289{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.md_c00289{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m5e_c00289{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.ma5_c00289{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mfa_c00289{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m76_c00289{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m56_c00289{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m43_c00289{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mb7_c00289{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m57_c00289{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mfd_c00289{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.mf5_c00289{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m62_c00289{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.ma9_c00289{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mef_c00289{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m5b_c00289{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m105_c00289{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m7a_c00289{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m98_c00289{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m40_c00289{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m2a_c00289{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.mbb_c00289{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m84_c00289{transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);}
.mf6_c00289{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.mfe_c00289{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m51_c00289{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.maa_c00289{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.ma0_c00289{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m86_c00289{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mcb_c00289{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m17_c00289{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m5c_c00289{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.me8_c00289{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m14_c00289{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m2f_c00289{transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);}
.m6e_c00289{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m5a_c00289{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m90_c00289{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m68_c00289{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.ma6_c00289{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m1e_c00289{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m26_c00289{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m1d_c00289{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.ma2_c00289{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m22_c00289{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m61_c00289{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m47_c00289{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.mc5_c00289{transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);}
.me9_c00289{transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);}
.m77_c00289{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.mfb_c00289{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m2b_c00289{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.md1_c00289{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m95_c00289{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.mb9_c00289{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m9e_c00289{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m102_c00289{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.md8_c00289{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.ma8_c00289{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mae_c00289{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mac_c00289{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.me2_c00289{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.mc7_c00289{transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);}
.m5_c00289{transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);}
.m3f_c00289{transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);}
.mca_c00289{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m85_c00289{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.m10d_c00289{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m21_c00289{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.mce_c00289{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.me6_c00289{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.mb0_c00289{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m67_c00289{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m8c_c00289{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m7_c00289{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m8d_c00289{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.mf7_c00289{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.ma3_c00289{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m106_c00289{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m93_c00289{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m83_c00289{transform:matrix(0.487477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487477,0.000000,0.000000,0.250000,0,0);}
.m25_c00289{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m24_c00289{transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);}
.m23_c00289{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m0_c00289{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m8f_c00289{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.mb1_c00289{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mad_c00289{transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);}
.mbc_c00289{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.mff_c00289{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m46_c00289{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);}
.mb5_c00289{transform:matrix(0.502319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502319,0.000000,0.000000,0.250000,0,0);}
.md9_c00289{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mab_c00289{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m37_c00289{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m13_c00289{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m36_c00289{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m5d_c00289{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m9b_c00289{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m75_c00289{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m73_c00289{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m91_c00289{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m94_c00289{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.md4_c00289{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.m4f_c00289{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m48_c00289{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m39_c00289{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.mfc_c00289{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.md6_c00289{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m89_c00289{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m3b_c00289{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m10_c00289{transform:matrix(0.519481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519481,0.000000,0.000000,0.250000,0,0);}
.m6a_c00289{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m49_c00289{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m6_c00289{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.me3_c00289{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m41_c00289{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m44_c00289{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mb3_c00289{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.mcd_c00289{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m11_c00289{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m19_c00289{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m10b_c00289{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m7e_c00289{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.md3_c00289{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.mc_c00289{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m101_c00289{transform:matrix(0.532931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532931,0.000000,0.000000,0.250000,0,0);}
.mc0_c00289{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.me1_c00289{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m3_c00289{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m31_c00289{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mc2_c00289{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m5f_c00289{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m99_c00289{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m18_c00289{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m79_c00289{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mdb_c00289{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m4d_c00289{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mf2_c00289{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.md0_c00289{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m7c_c00289{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m53_c00289{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mb4_c00289{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m103_c00289{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m45_c00289{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m58_c00289{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m69_c00289{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m54_c00289{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mbe_c00289{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m78_c00289{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m2c_c00289{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m20_c00289{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.me0_c00289{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m1b_c00289{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m72_c00289{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m87_c00289{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m8e_c00289{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m82_c00289{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.mc4_c00289{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m55_c00289{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m4e_c00289{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m8b_c00289{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.mf1_c00289{transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);}
.m6b_c00289{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m80_c00289{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m7d_c00289{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.ma7_c00289{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.mf_c00289{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m65_c00289{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.mec_c00289{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.md7_c00289{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mb6_c00289{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m4c_c00289{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m3d_c00289{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m71_c00289{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.mde_c00289{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mc1_c00289{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.med_c00289{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m6c_c00289{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m64_c00289{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m9a_c00289{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m6d_c00289{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.mf8_c00289{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m30_c00289{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m3c_c00289{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m4_c00289{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m4b_c00289{transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);}
.mee_c00289{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m100_c00289{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.mba_c00289{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.mc6_c00289{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m88_c00289{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mda_c00289{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m16_c00289{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m108_c00289{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);}
.me4_c00289{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m1_c00289{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.mdf_c00289{transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);}
.mc3_c00289{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.mea_c00289{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m81_c00289{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m8_c00289{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mf0_c00289{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m12_c00289{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m2d_c00289{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m1f_c00289{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.maf_c00289{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.m70_c00289{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m4a_c00289{transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);}
.m109_c00289{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.md5_c00289{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.mc8_c00289{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m1c_c00289{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m96_c00289{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.me5_c00289{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.me7_c00289{transform:matrix(0.736471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736471,0.000000,0.000000,0.250000,0,0);}
.m29_c00289{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.ma_c00289{transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);}
.me_c00289{transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);}
.m33_c00289{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m63_c00289{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m3e_c00289{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m92_c00289{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m35_c00289{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m59_c00289{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m9_c00289{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m15_c00289{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m9f_c00289{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m2e_c00289{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.mb_c00289{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mcf_c00289{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.mb8_c00289{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
.fs7_c00289{font-size:3.420000px;}
.fs4_c00289{font-size:18.720000px;}
.fs1_c00289{font-size:20.400000px;}
.fs3_c00289{font-size:25.500000px;}
.fs0_c00289{font-size:28.920000px;}
.fs5_c00289{font-size:32.340000px;}
.fs2_c00289{font-size:35.700000px;}
.fs6_c00289{font-size:39.120000px;}
.y0_c00289{bottom:0.000000px;}
.yd4_c00289{bottom:248.745000px;}
.yd6_c00289{bottom:250.245000px;}
.yd5_c00289{bottom:250.905000px;}
.yd7_c00289{bottom:252.405000px;}
.ycd_c00289{bottom:268.470000px;}
.yd2_c00289{bottom:268.905000px;}
.ycf_c00289{bottom:269.745000px;}
.yd1_c00289{bottom:270.630000px;}
.yce_c00289{bottom:271.470000px;}
.yd0_c00289{bottom:271.905000px;}
.yd3_c00289{bottom:272.130000px;}
.yc8_c00289{bottom:289.245000px;}
.yc7_c00289{bottom:290.130000px;}
.yca_c00289{bottom:290.325000px;}
.yc9_c00289{bottom:291.405000px;}
.ycc_c00289{bottom:291.825000px;}
.ycb_c00289{bottom:292.905000px;}
.yc2_c00289{bottom:308.745000px;}
.ybf_c00289{bottom:309.825000px;}
.yc6_c00289{bottom:310.245000px;}
.yc0_c00289{bottom:310.905000px;}
.yc4_c00289{bottom:311.130000px;}
.yc1_c00289{bottom:311.325000px;}
.yc3_c00289{bottom:312.405000px;}
.yc5_c00289{bottom:313.470000px;}
.ybb_c00289{bottom:328.245000px;}
.ybe_c00289{bottom:329.325000px;}
.ybc_c00289{bottom:329.745000px;}
.yba_c00289{bottom:330.405000px;}
.yb9_c00289{bottom:331.470000px;}
.ybd_c00289{bottom:331.905000px;}
.yb6_c00289{bottom:347.970000px;}
.yb8_c00289{bottom:349.245000px;}
.yb4_c00289{bottom:349.905000px;}
.yb7_c00289{bottom:350.130000px;}
.yb5_c00289{bottom:351.405000px;}
.yb2_c00289{bottom:368.745000px;}
.yb1_c00289{bottom:370.470000px;}
.yb0_c00289{bottom:370.905000px;}
.yb3_c00289{bottom:371.130000px;}
.yad_c00289{bottom:388.245000px;}
.yaf_c00289{bottom:390.405000px;}
.yac_c00289{bottom:390.630000px;}
.yae_c00289{bottom:391.905000px;}
.yab_c00289{bottom:407.745000px;}
.ya9_c00289{bottom:408.825000px;}
.ya7_c00289{bottom:409.905000px;}
.yaa_c00289{bottom:410.130000px;}
.ya6_c00289{bottom:410.970000px;}
.ya8_c00289{bottom:411.405000px;}
.ya2_c00289{bottom:427.245000px;}
.ya0_c00289{bottom:428.325000px;}
.ya4_c00289{bottom:429.405000px;}
.ya1_c00289{bottom:429.630000px;}
.ya5_c00289{bottom:430.470000px;}
.ya3_c00289{bottom:430.905000px;}
.y9c_c00289{bottom:447.180000px;}
.y9d_c00289{bottom:448.245000px;}
.y99_c00289{bottom:448.905000px;}
.y9b_c00289{bottom:449.130000px;}
.y9f_c00289{bottom:449.325000px;}
.y9e_c00289{bottom:449.970000px;}
.y9a_c00289{bottom:450.405000px;}
.y97_c00289{bottom:466.905000px;}
.y98_c00289{bottom:467.745000px;}
.y93_c00289{bottom:468.630000px;}
.y96_c00289{bottom:469.470000px;}
.y94_c00289{bottom:469.905000px;}
.y95_c00289{bottom:470.130000px;}
.y91_c00289{bottom:487.245000px;}
.y92_c00289{bottom:488.970000px;}
.y8f_c00289{bottom:489.405000px;}
.y8e_c00289{bottom:489.630000px;}
.y90_c00289{bottom:490.470000px;}
.y8d_c00289{bottom:505.680000px;}
.y88_c00289{bottom:506.745000px;}
.y8b_c00289{bottom:507.630000px;}
.y8c_c00289{bottom:507.825000px;}
.y87_c00289{bottom:508.470000px;}
.y89_c00289{bottom:508.905000px;}
.y8a_c00289{bottom:509.130000px;}
.y85_c00289{bottom:526.245000px;}
.y86_c00289{bottom:527.745000px;}
.y84_c00289{bottom:527.970000px;}
.y83_c00289{bottom:528.405000px;}
.y82_c00289{bottom:544.905000px;}
.y7e_c00289{bottom:547.245000px;}
.y7f_c00289{bottom:547.905000px;}
.y81_c00289{bottom:548.130000px;}
.y80_c00289{bottom:548.970000px;}
.y7d_c00289{bottom:549.405000px;}
.y7b_c00289{bottom:565.470000px;}
.y7c_c00289{bottom:566.325000px;}
.y78_c00289{bottom:566.745000px;}
.y7a_c00289{bottom:568.905000px;}
.y79_c00289{bottom:568.920000px;}
.y77_c00289{bottom:586.245000px;}
.y76_c00289{bottom:604.470000px;}
.y74_c00289{bottom:605.745000px;}
.y72_c00289{bottom:606.630000px;}
.y75_c00289{bottom:606.825000px;}
.y73_c00289{bottom:607.905000px;}
.y71_c00289{bottom:624.405000px;}
.y6d_c00289{bottom:624.825000px;}
.y6f_c00289{bottom:625.245000px;}
.y6c_c00289{bottom:626.325000px;}
.y6e_c00289{bottom:627.405000px;}
.y70_c00289{bottom:627.630000px;}
.y6a_c00289{bottom:643.905000px;}
.y67_c00289{bottom:644.745000px;}
.y69_c00289{bottom:645.825000px;}
.y66_c00289{bottom:646.905000px;}
.y68_c00289{bottom:647.970000px;}
.y6b_c00289{bottom:648.405000px;}
.y5f_c00289{bottom:664.245000px;}
.y61_c00289{bottom:664.905000px;}
.y63_c00289{bottom:665.745000px;}
.y62_c00289{bottom:666.405000px;}
.y60_c00289{bottom:666.630000px;}
.y64_c00289{bottom:667.470000px;}
.y65_c00289{bottom:667.905000px;}
.y5c_c00289{bottom:684.180000px;}
.y59_c00289{bottom:685.245000px;}
.y5b_c00289{bottom:686.130000px;}
.y5e_c00289{bottom:686.325000px;}
.y5a_c00289{bottom:687.405000px;}
.y5d_c00289{bottom:688.470000px;}
.y55_c00289{bottom:704.745000px;}
.y58_c00289{bottom:705.405000px;}
.y56_c00289{bottom:705.630000px;}
.y57_c00289{bottom:706.905000px;}
.y52_c00289{bottom:724.245000px;}
.y53_c00289{bottom:725.130000px;}
.y54_c00289{bottom:725.325000px;}
.y51_c00289{bottom:726.405000px;}
.y4e_c00289{bottom:743.745000px;}
.y4d_c00289{bottom:744.825000px;}
.y4f_c00289{bottom:745.905000px;}
.y50_c00289{bottom:746.970000px;}
.y4a_c00289{bottom:763.245000px;}
.y4b_c00289{bottom:765.405000px;}
.y4c_c00289{bottom:765.630000px;}
.y45_c00289{bottom:781.905000px;}
.y46_c00289{bottom:782.745000px;}
.y47_c00289{bottom:784.905000px;}
.y49_c00289{bottom:785.130000px;}
.y48_c00289{bottom:786.405000px;}
.y44_c00289{bottom:801.405000px;}
.y40_c00289{bottom:802.245000px;}
.y43_c00289{bottom:802.680000px;}
.y41_c00289{bottom:804.405000px;}
.y42_c00289{bottom:804.630000px;}
.y3f_c00289{bottom:805.470000px;}
.y3e_c00289{bottom:823.245000px;}
.y3d_c00289{bottom:824.130000px;}
.y3b_c00289{bottom:824.325000px;}
.y3c_c00289{bottom:825.405000px;}
.y36_c00289{bottom:840.825000px;}
.y38_c00289{bottom:841.470000px;}
.y35_c00289{bottom:842.745000px;}
.y3a_c00289{bottom:842.970000px;}
.y37_c00289{bottom:843.630000px;}
.y39_c00289{bottom:844.905000px;}
.y34_c00289{bottom:861.405000px;}
.y33_c00289{bottom:862.245000px;}
.y32_c00289{bottom:863.130000px;}
.y31_c00289{bottom:864.405000px;}
.y30_c00289{bottom:880.470000px;}
.y2e_c00289{bottom:881.745000px;}
.y2f_c00289{bottom:883.905000px;}
.y2c_c00289{bottom:901.245000px;}
.y2b_c00289{bottom:901.680000px;}
.y2a_c00289{bottom:902.970000px;}
.y29_c00289{bottom:903.405000px;}
.y2d_c00289{bottom:903.630000px;}
.y24_c00289{bottom:920.745000px;}
.y25_c00289{bottom:922.905000px;}
.y27_c00289{bottom:923.130000px;}
.y28_c00289{bottom:923.970000px;}
.y26_c00289{bottom:924.405000px;}
.y1e_c00289{bottom:940.245000px;}
.y21_c00289{bottom:941.745000px;}
.y1f_c00289{bottom:942.405000px;}
.y22_c00289{bottom:942.630000px;}
.y23_c00289{bottom:942.825000px;}
.y20_c00289{bottom:943.905000px;}
.y1b_c00289{bottom:959.745000px;}
.y1d_c00289{bottom:961.245000px;}
.y1a_c00289{bottom:962.130000px;}
.y1c_c00289{bottom:963.405000px;}
.y17_c00289{bottom:980.325000px;}
.y19_c00289{bottom:980.745000px;}
.y18_c00289{bottom:981.630000px;}
.y16_c00289{bottom:982.905000px;}
.y14_c00289{bottom:1000.245000px;}
.y15_c00289{bottom:1001.130000px;}
.y12_c00289{bottom:1001.325000px;}
.y13_c00289{bottom:1002.405000px;}
.y10_c00289{bottom:1019.325000px;}
.yd_c00289{bottom:1019.745000px;}
.yf_c00289{bottom:1020.630000px;}
.y11_c00289{bottom:1020.825000px;}
.ye_c00289{bottom:1021.905000px;}
.yc_c00289{bottom:1038.405000px;}
.ya_c00289{bottom:1039.245000px;}
.y7_c00289{bottom:1040.130000px;}
.y9_c00289{bottom:1040.325000px;}
.y8_c00289{bottom:1041.405000px;}
.yb_c00289{bottom:1041.630000px;}
.y3_c00289{bottom:1058.745000px;}
.y4_c00289{bottom:1060.905000px;}
.y6_c00289{bottom:1061.130000px;}
.y5_c00289{bottom:1061.970000px;}
.y2_c00289{bottom:1099.050000px;}
.y1_c00289{bottom:1099.905000px;}
.h8_c00289{height:4.206533px;}
.h5_c00289{height:23.025234px;}
.h2_c00289{height:25.091602px;}
.h4_c00289{height:31.364502px;}
.h1_c00289{height:35.571035px;}
.h6_c00289{height:39.777568px;}
.h3_c00289{height:43.910303px;}
.h7_c00289{height:48.116836px;}
.h0_c00289{height:1335.000000px;}
.w0_c00289{width:880.500000px;}
.x0_c00289{left:0.000000px;}
.xf9_c00289{left:150.000000px;}
.x1_c00289{left:151.080000px;}
.x29_c00289{left:153.000000px;}
.x3_c00289{left:154.275000px;}
.xbf_c00289{left:167.580000px;}
.x34_c00289{left:171.000000px;}
.xeb_c00289{left:172.080000px;}
.xfa_c00289{left:177.000000px;}
.x40_c00289{left:178.500000px;}
.x5e_c00289{left:180.000000px;}
.x105_c00289{left:189.000000px;}
.xd0_c00289{left:190.080000px;}
.x53_c00289{left:192.000000px;}
.x83_c00289{left:193.920000px;}
.xfd_c00289{left:195.420000px;}
.x4_c00289{left:196.500000px;}
.x6b_c00289{left:198.420000px;}
.x9b_c00289{left:202.500000px;}
.xa3_c00289{left:203.580000px;}
.x1e_c00289{left:208.080000px;}
.x72_c00289{left:211.080000px;}
.xd1_c00289{left:214.920000px;}
.x63_c00289{left:219.420000px;}
.xaa_c00289{left:220.500000px;}
.xf_c00289{left:223.080000px;}
.x6c_c00289{left:225.000000px;}
.x49_c00289{left:226.080000px;}
.xcc_c00289{left:228.000000px;}
.x92_c00289{left:229.080000px;}
.x54_c00289{left:231.420000px;}
.xe4_c00289{left:232.500000px;}
.x41_c00289{left:234.000000px;}
.xfe_c00289{left:235.920000px;}
.xda_c00289{left:240.000000px;}
.x1f_c00289{left:241.500000px;}
.x10_c00289{left:243.420000px;}
.x35_c00289{left:246.000000px;}
.x2a_c00289{left:250.080000px;}
.x42_c00289{left:252.000000px;}
.x84_c00289{left:253.500000px;}
.x64_c00289{left:255.420000px;}
.x55_c00289{left:256.920000px;}
.x73_c00289{left:258.000000px;}
.x4a_c00289{left:259.500000px;}
.xbb_c00289{left:261.000000px;}
.xdb_c00289{left:262.920000px;}
.x96_c00289{left:267.000000px;}
.x5_c00289{left:268.920000px;}
.x11_c00289{left:271.500000px;}
.xab_c00289{left:273.000000px;}
.xec_c00289{left:274.500000px;}
.xc0_c00289{left:275.580000px;}
.x5f_c00289{left:277.920000px;}
.x65_c00289{left:281.580000px;}
.xf5_c00289{left:283.080000px;}
.xf1_c00289{left:285.420000px;}
.xbc_c00289{left:286.500000px;}
.x74_c00289{left:289.500000px;}
.x20_c00289{left:291.420000px;}
.xac_c00289{left:295.080000px;}
.x8f_c00289{left:297.000000px;}
.x56_c00289{left:298.080000px;}
.xa4_c00289{left:299.580000px;}
.x102_c00289{left:301.920000px;}
.xd2_c00289{left:303.000000px;}
.x6_c00289{left:304.080000px;}
.xbd_c00289{left:306.645000px;}
.x2b_c00289{left:308.145000px;}
.xfb_c00289{left:309.420000px;}
.xff_c00289{left:310.920000px;}
.x4b_c00289{left:312.000000px;}
.x43_c00289{left:313.500000px;}
.x75_c00289{left:314.580000px;}
.x93_c00289{left:316.500000px;}
.xb5_c00289{left:318.000000px;}
.x7e_c00289{left:319.500000px;}
.xee_c00289{left:322.920000px;}
.xdc_c00289{left:327.420000px;}
.x57_c00289{left:328.500000px;}
.x97_c00289{left:331.500000px;}
.xd7_c00289{left:333.420000px;}
.x12_c00289{left:334.500000px;}
.x36_c00289{left:336.000000px;}
.xcd_c00289{left:340.500000px;}
.x6d_c00289{left:341.580000px;}
.x85_c00289{left:343.500000px;}
.x8a_c00289{left:345.420000px;}
.x4c_c00289{left:346.920000px;}
.xc1_c00289{left:353.580000px;}
.xae_c00289{left:356.355000px;}
.x66_c00289{left:357.645000px;}
.xc5_c00289{left:360.420000px;}
.x60_c00289{left:361.920000px;}
.xe5_c00289{left:364.080000px;}
.x103_c00289{left:367.500000px;}
.x21_c00289{left:370.500000px;}
.x8b_c00289{left:372.000000px;}
.xd8_c00289{left:373.500000px;}
.x37_c00289{left:375.000000px;}
.x76_c00289{left:376.080000px;}
.x7_c00289{left:379.500000px;}
.x13_c00289{left:382.500000px;}
.xf6_c00289{left:385.500000px;}
.x106_c00289{left:387.000000px;}
.xb6_c00289{left:390.000000px;}
.x22_c00289{left:391.920000px;}
.xc6_c00289{left:393.420000px;}
.x38_c00289{left:394.500000px;}
.x90_c00289{left:395.580000px;}
.x14_c00289{left:400.500000px;}
.x4d_c00289{left:402.000000px;}
.x9c_c00289{left:403.500000px;}
.xd3_c00289{left:405.000000px;}
.x2_c00289{left:406.500000px;}
.x77_c00289{left:408.000000px;}
.xad_c00289{left:409.080000px;}
.x6e_c00289{left:411.000000px;}
.xdd_c00289{left:412.920000px;}
.x7f_c00289{left:414.000000px;}
.xaf_c00289{left:415.500000px;}
.x2c_c00289{left:417.000000px;}
.x23_c00289{left:420.420000px;}
.xd9_c00289{left:422.580000px;}
.xc2_c00289{left:424.500000px;}
.xe6_c00289{left:426.420000px;}
.x9d_c00289{left:427.920000px;}
.x80_c00289{left:429.000000px;}
.xf7_c00289{left:431.580000px;}
.x78_c00289{left:433.500000px;}
.x67_c00289{left:436.500000px;}
.x15_c00289{left:438.000000px;}
.xc7_c00289{left:439.500000px;}
.x86_c00289{left:441.000000px;}
.x2d_c00289{left:442.500000px;}
.xd4_c00289{left:443.580000px;}
.x104_c00289{left:445.920000px;}
.xf2_c00289{left:448.500000px;}
.x79_c00289{left:450.000000px;}
.x24_c00289{left:451.920000px;}
.x8_c00289{left:453.000000px;}
.xb7_c00289{left:454.080000px;}
.xc8_c00289{left:456.000000px;}
.x6f_c00289{left:460.920000px;}
.xd5_c00289{left:463.920000px;}
.x58_c00289{left:465.000000px;}
.xe1_c00289{left:468.420000px;}
.x39_c00289{left:469.500000px;}
.x44_c00289{left:470.580000px;}
.x9_c00289{left:472.080000px;}
.x2e_c00289{left:473.580000px;}
.xa5_c00289{left:475.500000px;}
.x4e_c00289{left:477.000000px;}
.xde_c00289{left:478.080000px;}
.xbe_c00289{left:483.000000px;}
.x59_c00289{left:484.080000px;}
.xf3_c00289{left:486.000000px;}
.x61_c00289{left:487.500000px;}
.xc9_c00289{left:490.080000px;}
.xa_c00289{left:492.420000px;}
.x7a_c00289{left:493.920000px;}
.x16_c00289{left:496.500000px;}
.xfc_c00289{left:497.580000px;}
.xb8_c00289{left:501.000000px;}
.x9e_c00289{left:504.000000px;}
.x3a_c00289{left:505.920000px;}
.x25_c00289{left:507.000000px;}
.x98_c00289{left:508.080000px;}
.xca_c00289{left:510.000000px;}
.xa6_c00289{left:511.080000px;}
.x87_c00289{left:512.580000px;}
.xc3_c00289{left:514.500000px;}
.x17_c00289{left:517.500000px;}
.x2f_c00289{left:519.000000px;}
.x7b_c00289{left:520.500000px;}
.x8c_c00289{left:524.580000px;}
.xce_c00289{left:526.080000px;}
.xb0_c00289{left:531.000000px;}
.x3b_c00289{left:532.920000px;}
.x62_c00289{left:535.080000px;}
.x94_c00289{left:536.580000px;}
.x18_c00289{left:538.500000px;}
.xa7_c00289{left:543.000000px;}
.x26_c00289{left:544.500000px;}
.x100_c00289{left:546.000000px;}
.x9f_c00289{left:549.000000px;}
.x10a_c00289{left:550.080000px;}
.xb1_c00289{left:552.000000px;}
.x91_c00289{left:553.500000px;}
.xe7_c00289{left:555.420000px;}
.xb_c00289{left:556.500000px;}
.x68_c00289{left:558.420000px;}
.xd6_c00289{left:559.920000px;}
.x7c_c00289{left:561.000000px;}
.x3c_c00289{left:564.420000px;}
.x81_c00289{left:565.920000px;}
.xcf_c00289{left:567.000000px;}
.xed_c00289{left:570.000000px;}
.x30_c00289{left:574.920000px;}
.x5a_c00289{left:577.500000px;}
.x45_c00289{left:580.500000px;}
.x99_c00289{left:582.000000px;}
.xe8_c00289{left:583.500000px;}
.x19_c00289{left:585.000000px;}
.xa8_c00289{left:586.920000px;}
.x4f_c00289{left:588.420000px;}
.x70_c00289{left:592.080000px;}
.x107_c00289{left:594.000000px;}
.x95_c00289{left:595.920000px;}
.x3d_c00289{left:598.500000px;}
.xb2_c00289{left:599.580000px;}
.xcb_c00289{left:601.500000px;}
.x1a_c00289{left:603.000000px;}
.x82_c00289{left:605.580000px;}
.xf4_c00289{left:607.920000px;}
.x31_c00289{left:609.420000px;}
.x5b_c00289{left:612.420000px;}
.xa0_c00289{left:613.500000px;}
.xc4_c00289{left:615.000000px;}
.x101_c00289{left:616.500000px;}
.x1b_c00289{left:619.080000px;}
.x7d_c00289{left:622.920000px;}
.x27_c00289{left:624.420000px;}
.x88_c00289{left:626.580000px;}
.xb3_c00289{left:629.580000px;}
.x3e_c00289{left:633.420000px;}
.xc_c00289{left:636.000000px;}
.xef_c00289{left:642.420000px;}
.x50_c00289{left:643.500000px;}
.x46_c00289{left:645.000000px;}
.xa1_c00289{left:646.500000px;}
.x8d_c00289{left:649.500000px;}
.xe9_c00289{left:650.580000px;}
.xf8_c00289{left:652.500000px;}
.x1c_c00289{left:654.000000px;}
.x5c_c00289{left:658.500000px;}
.xd_c00289{left:660.420000px;}
.x3f_c00289{left:661.500000px;}
.x69_c00289{left:664.080000px;}
.xb9_c00289{left:666.420000px;}
.x51_c00289{left:668.580000px;}
.xe2_c00289{left:670.500000px;}
.x9a_c00289{left:672.000000px;}
.x1d_c00289{left:675.000000px;}
.x108_c00289{left:676.500000px;}
.x5d_c00289{left:678.000000px;}
.x47_c00289{left:679.500000px;}
.x6a_c00289{left:681.000000px;}
.xdf_c00289{left:684.000000px;}
.x32_c00289{left:687.000000px;}
.xe_c00289{left:688.500000px;}
.xb4_c00289{left:690.000000px;}
.x48_c00289{left:691.500000px;}
.x28_c00289{left:693.000000px;}
.x71_c00289{left:694.275000px;}
.x109_c00289{left:696.420000px;}
.xea_c00289{left:697.920000px;}
.xf0_c00289{left:699.420000px;}
.xa9_c00289{left:700.500000px;}
.xba_c00289{left:701.580000px;}
.x33_c00289{left:703.080000px;}
.x89_c00289{left:704.580000px;}
.x10b_c00289{left:706.080000px;}
.x8e_c00289{left:709.920000px;}
.xe3_c00289{left:715.500000px;}
.xe0_c00289{left:716.580000px;}
.x52_c00289{left:723.000000px;}
.xa2_c00289{left:724.500000px;}
@media print{
.v0_c00289{vertical-align:0.000000pt;}
.ls0_c00289{letter-spacing:0.000000pt;}
.ws0_c00289{word-spacing:0.000000pt;}
.fs7_c00289{font-size:3.040000pt;}
.fs4_c00289{font-size:16.640000pt;}
.fs1_c00289{font-size:18.133333pt;}
.fs3_c00289{font-size:22.666667pt;}
.fs0_c00289{font-size:25.706667pt;}
.fs5_c00289{font-size:28.746667pt;}
.fs2_c00289{font-size:31.733333pt;}
.fs6_c00289{font-size:34.773333pt;}
.y0_c00289{bottom:0.000000pt;}
.yd4_c00289{bottom:221.106667pt;}
.yd6_c00289{bottom:222.440000pt;}
.yd5_c00289{bottom:223.026667pt;}
.yd7_c00289{bottom:224.360000pt;}
.ycd_c00289{bottom:238.640000pt;}
.yd2_c00289{bottom:239.026667pt;}
.ycf_c00289{bottom:239.773333pt;}
.yd1_c00289{bottom:240.560000pt;}
.yce_c00289{bottom:241.306667pt;}
.yd0_c00289{bottom:241.693333pt;}
.yd3_c00289{bottom:241.893333pt;}
.yc8_c00289{bottom:257.106667pt;}
.yc7_c00289{bottom:257.893333pt;}
.yca_c00289{bottom:258.066667pt;}
.yc9_c00289{bottom:259.026667pt;}
.ycc_c00289{bottom:259.400000pt;}
.ycb_c00289{bottom:260.360000pt;}
.yc2_c00289{bottom:274.440000pt;}
.ybf_c00289{bottom:275.400000pt;}
.yc6_c00289{bottom:275.773333pt;}
.yc0_c00289{bottom:276.360000pt;}
.yc4_c00289{bottom:276.560000pt;}
.yc1_c00289{bottom:276.733333pt;}
.yc3_c00289{bottom:277.693333pt;}
.yc5_c00289{bottom:278.640000pt;}
.ybb_c00289{bottom:291.773333pt;}
.ybe_c00289{bottom:292.733333pt;}
.ybc_c00289{bottom:293.106667pt;}
.yba_c00289{bottom:293.693333pt;}
.yb9_c00289{bottom:294.640000pt;}
.ybd_c00289{bottom:295.026667pt;}
.yb6_c00289{bottom:309.306667pt;}
.yb8_c00289{bottom:310.440000pt;}
.yb4_c00289{bottom:311.026667pt;}
.yb7_c00289{bottom:311.226667pt;}
.yb5_c00289{bottom:312.360000pt;}
.yb2_c00289{bottom:327.773333pt;}
.yb1_c00289{bottom:329.306667pt;}
.yb0_c00289{bottom:329.693333pt;}
.yb3_c00289{bottom:329.893333pt;}
.yad_c00289{bottom:345.106667pt;}
.yaf_c00289{bottom:347.026667pt;}
.yac_c00289{bottom:347.226667pt;}
.yae_c00289{bottom:348.360000pt;}
.yab_c00289{bottom:362.440000pt;}
.ya9_c00289{bottom:363.400000pt;}
.ya7_c00289{bottom:364.360000pt;}
.yaa_c00289{bottom:364.560000pt;}
.ya6_c00289{bottom:365.306667pt;}
.ya8_c00289{bottom:365.693333pt;}
.ya2_c00289{bottom:379.773333pt;}
.ya0_c00289{bottom:380.733333pt;}
.ya4_c00289{bottom:381.693333pt;}
.ya1_c00289{bottom:381.893333pt;}
.ya5_c00289{bottom:382.640000pt;}
.ya3_c00289{bottom:383.026667pt;}
.y9c_c00289{bottom:397.493333pt;}
.y9d_c00289{bottom:398.440000pt;}
.y99_c00289{bottom:399.026667pt;}
.y9b_c00289{bottom:399.226667pt;}
.y9f_c00289{bottom:399.400000pt;}
.y9e_c00289{bottom:399.973333pt;}
.y9a_c00289{bottom:400.360000pt;}
.y97_c00289{bottom:415.026667pt;}
.y98_c00289{bottom:415.773333pt;}
.y93_c00289{bottom:416.560000pt;}
.y96_c00289{bottom:417.306667pt;}
.y94_c00289{bottom:417.693333pt;}
.y95_c00289{bottom:417.893333pt;}
.y91_c00289{bottom:433.106667pt;}
.y92_c00289{bottom:434.640000pt;}
.y8f_c00289{bottom:435.026667pt;}
.y8e_c00289{bottom:435.226667pt;}
.y90_c00289{bottom:435.973333pt;}
.y8d_c00289{bottom:449.493333pt;}
.y88_c00289{bottom:450.440000pt;}
.y8b_c00289{bottom:451.226667pt;}
.y8c_c00289{bottom:451.400000pt;}
.y87_c00289{bottom:451.973333pt;}
.y89_c00289{bottom:452.360000pt;}
.y8a_c00289{bottom:452.560000pt;}
.y85_c00289{bottom:467.773333pt;}
.y86_c00289{bottom:469.106667pt;}
.y84_c00289{bottom:469.306667pt;}
.y83_c00289{bottom:469.693333pt;}
.y82_c00289{bottom:484.360000pt;}
.y7e_c00289{bottom:486.440000pt;}
.y7f_c00289{bottom:487.026667pt;}
.y81_c00289{bottom:487.226667pt;}
.y80_c00289{bottom:487.973333pt;}
.y7d_c00289{bottom:488.360000pt;}
.y7b_c00289{bottom:502.640000pt;}
.y7c_c00289{bottom:503.400000pt;}
.y78_c00289{bottom:503.773333pt;}
.y7a_c00289{bottom:505.693333pt;}
.y79_c00289{bottom:505.706667pt;}
.y77_c00289{bottom:521.106667pt;}
.y76_c00289{bottom:537.306667pt;}
.y74_c00289{bottom:538.440000pt;}
.y72_c00289{bottom:539.226667pt;}
.y75_c00289{bottom:539.400000pt;}
.y73_c00289{bottom:540.360000pt;}
.y71_c00289{bottom:555.026667pt;}
.y6d_c00289{bottom:555.400000pt;}
.y6f_c00289{bottom:555.773333pt;}
.y6c_c00289{bottom:556.733333pt;}
.y6e_c00289{bottom:557.693333pt;}
.y70_c00289{bottom:557.893333pt;}
.y6a_c00289{bottom:572.360000pt;}
.y67_c00289{bottom:573.106667pt;}
.y69_c00289{bottom:574.066667pt;}
.y66_c00289{bottom:575.026667pt;}
.y68_c00289{bottom:575.973333pt;}
.y6b_c00289{bottom:576.360000pt;}
.y5f_c00289{bottom:590.440000pt;}
.y61_c00289{bottom:591.026667pt;}
.y63_c00289{bottom:591.773333pt;}
.y62_c00289{bottom:592.360000pt;}
.y60_c00289{bottom:592.560000pt;}
.y64_c00289{bottom:593.306667pt;}
.y65_c00289{bottom:593.693333pt;}
.y5c_c00289{bottom:608.160000pt;}
.y59_c00289{bottom:609.106667pt;}
.y5b_c00289{bottom:609.893333pt;}
.y5e_c00289{bottom:610.066667pt;}
.y5a_c00289{bottom:611.026667pt;}
.y5d_c00289{bottom:611.973333pt;}
.y55_c00289{bottom:626.440000pt;}
.y58_c00289{bottom:627.026667pt;}
.y56_c00289{bottom:627.226667pt;}
.y57_c00289{bottom:628.360000pt;}
.y52_c00289{bottom:643.773333pt;}
.y53_c00289{bottom:644.560000pt;}
.y54_c00289{bottom:644.733333pt;}
.y51_c00289{bottom:645.693333pt;}
.y4e_c00289{bottom:661.106667pt;}
.y4d_c00289{bottom:662.066667pt;}
.y4f_c00289{bottom:663.026667pt;}
.y50_c00289{bottom:663.973333pt;}
.y4a_c00289{bottom:678.440000pt;}
.y4b_c00289{bottom:680.360000pt;}
.y4c_c00289{bottom:680.560000pt;}
.y45_c00289{bottom:695.026667pt;}
.y46_c00289{bottom:695.773333pt;}
.y47_c00289{bottom:697.693333pt;}
.y49_c00289{bottom:697.893333pt;}
.y48_c00289{bottom:699.026667pt;}
.y44_c00289{bottom:712.360000pt;}
.y40_c00289{bottom:713.106667pt;}
.y43_c00289{bottom:713.493333pt;}
.y41_c00289{bottom:715.026667pt;}
.y42_c00289{bottom:715.226667pt;}
.y3f_c00289{bottom:715.973333pt;}
.y3e_c00289{bottom:731.773333pt;}
.y3d_c00289{bottom:732.560000pt;}
.y3b_c00289{bottom:732.733333pt;}
.y3c_c00289{bottom:733.693333pt;}
.y36_c00289{bottom:747.400000pt;}
.y38_c00289{bottom:747.973333pt;}
.y35_c00289{bottom:749.106667pt;}
.y3a_c00289{bottom:749.306667pt;}
.y37_c00289{bottom:749.893333pt;}
.y39_c00289{bottom:751.026667pt;}
.y34_c00289{bottom:765.693333pt;}
.y33_c00289{bottom:766.440000pt;}
.y32_c00289{bottom:767.226667pt;}
.y31_c00289{bottom:768.360000pt;}
.y30_c00289{bottom:782.640000pt;}
.y2e_c00289{bottom:783.773333pt;}
.y2f_c00289{bottom:785.693333pt;}
.y2c_c00289{bottom:801.106667pt;}
.y2b_c00289{bottom:801.493333pt;}
.y2a_c00289{bottom:802.640000pt;}
.y29_c00289{bottom:803.026667pt;}
.y2d_c00289{bottom:803.226667pt;}
.y24_c00289{bottom:818.440000pt;}
.y25_c00289{bottom:820.360000pt;}
.y27_c00289{bottom:820.560000pt;}
.y28_c00289{bottom:821.306667pt;}
.y26_c00289{bottom:821.693333pt;}
.y1e_c00289{bottom:835.773333pt;}
.y21_c00289{bottom:837.106667pt;}
.y1f_c00289{bottom:837.693333pt;}
.y22_c00289{bottom:837.893333pt;}
.y23_c00289{bottom:838.066667pt;}
.y20_c00289{bottom:839.026667pt;}
.y1b_c00289{bottom:853.106667pt;}
.y1d_c00289{bottom:854.440000pt;}
.y1a_c00289{bottom:855.226667pt;}
.y1c_c00289{bottom:856.360000pt;}
.y17_c00289{bottom:871.400000pt;}
.y19_c00289{bottom:871.773333pt;}
.y18_c00289{bottom:872.560000pt;}
.y16_c00289{bottom:873.693333pt;}
.y14_c00289{bottom:889.106667pt;}
.y15_c00289{bottom:889.893333pt;}
.y12_c00289{bottom:890.066667pt;}
.y13_c00289{bottom:891.026667pt;}
.y10_c00289{bottom:906.066667pt;}
.yd_c00289{bottom:906.440000pt;}
.yf_c00289{bottom:907.226667pt;}
.y11_c00289{bottom:907.400000pt;}
.ye_c00289{bottom:908.360000pt;}
.yc_c00289{bottom:923.026667pt;}
.ya_c00289{bottom:923.773333pt;}
.y7_c00289{bottom:924.560000pt;}
.y9_c00289{bottom:924.733333pt;}
.y8_c00289{bottom:925.693333pt;}
.yb_c00289{bottom:925.893333pt;}
.y3_c00289{bottom:941.106667pt;}
.y4_c00289{bottom:943.026667pt;}
.y6_c00289{bottom:943.226667pt;}
.y5_c00289{bottom:943.973333pt;}
.y2_c00289{bottom:976.933333pt;}
.y1_c00289{bottom:977.693333pt;}
.h8_c00289{height:3.739141pt;}
.h5_c00289{height:20.466875pt;}
.h2_c00289{height:22.303646pt;}
.h4_c00289{height:27.879557pt;}
.h1_c00289{height:31.618698pt;}
.h6_c00289{height:35.357839pt;}
.h3_c00289{height:39.031380pt;}
.h7_c00289{height:42.770521pt;}
.h0_c00289{height:1186.666667pt;}
.w0_c00289{width:782.666667pt;}
.x0_c00289{left:0.000000pt;}
.xf9_c00289{left:133.333333pt;}
.x1_c00289{left:134.293333pt;}
.x29_c00289{left:136.000000pt;}
.x3_c00289{left:137.133333pt;}
.xbf_c00289{left:148.960000pt;}
.x34_c00289{left:152.000000pt;}
.xeb_c00289{left:152.960000pt;}
.xfa_c00289{left:157.333333pt;}
.x40_c00289{left:158.666667pt;}
.x5e_c00289{left:160.000000pt;}
.x105_c00289{left:168.000000pt;}
.xd0_c00289{left:168.960000pt;}
.x53_c00289{left:170.666667pt;}
.x83_c00289{left:172.373333pt;}
.xfd_c00289{left:173.706667pt;}
.x4_c00289{left:174.666667pt;}
.x6b_c00289{left:176.373333pt;}
.x9b_c00289{left:180.000000pt;}
.xa3_c00289{left:180.960000pt;}
.x1e_c00289{left:184.960000pt;}
.x72_c00289{left:187.626667pt;}
.xd1_c00289{left:191.040000pt;}
.x63_c00289{left:195.040000pt;}
.xaa_c00289{left:196.000000pt;}
.xf_c00289{left:198.293333pt;}
.x6c_c00289{left:200.000000pt;}
.x49_c00289{left:200.960000pt;}
.xcc_c00289{left:202.666667pt;}
.x92_c00289{left:203.626667pt;}
.x54_c00289{left:205.706667pt;}
.xe4_c00289{left:206.666667pt;}
.x41_c00289{left:208.000000pt;}
.xfe_c00289{left:209.706667pt;}
.xda_c00289{left:213.333333pt;}
.x1f_c00289{left:214.666667pt;}
.x10_c00289{left:216.373333pt;}
.x35_c00289{left:218.666667pt;}
.x2a_c00289{left:222.293333pt;}
.x42_c00289{left:224.000000pt;}
.x84_c00289{left:225.333333pt;}
.x64_c00289{left:227.040000pt;}
.x55_c00289{left:228.373333pt;}
.x73_c00289{left:229.333333pt;}
.x4a_c00289{left:230.666667pt;}
.xbb_c00289{left:232.000000pt;}
.xdb_c00289{left:233.706667pt;}
.x96_c00289{left:237.333333pt;}
.x5_c00289{left:239.040000pt;}
.x11_c00289{left:241.333333pt;}
.xab_c00289{left:242.666667pt;}
.xec_c00289{left:244.000000pt;}
.xc0_c00289{left:244.960000pt;}
.x5f_c00289{left:247.040000pt;}
.x65_c00289{left:250.293333pt;}
.xf5_c00289{left:251.626667pt;}
.xf1_c00289{left:253.706667pt;}
.xbc_c00289{left:254.666667pt;}
.x74_c00289{left:257.333333pt;}
.x20_c00289{left:259.040000pt;}
.xac_c00289{left:262.293333pt;}
.x8f_c00289{left:264.000000pt;}
.x56_c00289{left:264.960000pt;}
.xa4_c00289{left:266.293333pt;}
.x102_c00289{left:268.373333pt;}
.xd2_c00289{left:269.333333pt;}
.x6_c00289{left:270.293333pt;}
.xbd_c00289{left:272.573333pt;}
.x2b_c00289{left:273.906667pt;}
.xfb_c00289{left:275.040000pt;}
.xff_c00289{left:276.373333pt;}
.x4b_c00289{left:277.333333pt;}
.x43_c00289{left:278.666667pt;}
.x75_c00289{left:279.626667pt;}
.x93_c00289{left:281.333333pt;}
.xb5_c00289{left:282.666667pt;}
.x7e_c00289{left:284.000000pt;}
.xee_c00289{left:287.040000pt;}
.xdc_c00289{left:291.040000pt;}
.x57_c00289{left:292.000000pt;}
.x97_c00289{left:294.666667pt;}
.xd7_c00289{left:296.373333pt;}
.x12_c00289{left:297.333333pt;}
.x36_c00289{left:298.666667pt;}
.xcd_c00289{left:302.666667pt;}
.x6d_c00289{left:303.626667pt;}
.x85_c00289{left:305.333333pt;}
.x8a_c00289{left:307.040000pt;}
.x4c_c00289{left:308.373333pt;}
.xc1_c00289{left:314.293333pt;}
.xae_c00289{left:316.760000pt;}
.x66_c00289{left:317.906667pt;}
.xc5_c00289{left:320.373333pt;}
.x60_c00289{left:321.706667pt;}
.xe5_c00289{left:323.626667pt;}
.x103_c00289{left:326.666667pt;}
.x21_c00289{left:329.333333pt;}
.x8b_c00289{left:330.666667pt;}
.xd8_c00289{left:332.000000pt;}
.x37_c00289{left:333.333333pt;}
.x76_c00289{left:334.293333pt;}
.x7_c00289{left:337.333333pt;}
.x13_c00289{left:340.000000pt;}
.xf6_c00289{left:342.666667pt;}
.x106_c00289{left:344.000000pt;}
.xb6_c00289{left:346.666667pt;}
.x22_c00289{left:348.373333pt;}
.xc6_c00289{left:349.706667pt;}
.x38_c00289{left:350.666667pt;}
.x90_c00289{left:351.626667pt;}
.x14_c00289{left:356.000000pt;}
.x4d_c00289{left:357.333333pt;}
.x9c_c00289{left:358.666667pt;}
.xd3_c00289{left:360.000000pt;}
.x2_c00289{left:361.333333pt;}
.x77_c00289{left:362.666667pt;}
.xad_c00289{left:363.626667pt;}
.x6e_c00289{left:365.333333pt;}
.xdd_c00289{left:367.040000pt;}
.x7f_c00289{left:368.000000pt;}
.xaf_c00289{left:369.333333pt;}
.x2c_c00289{left:370.666667pt;}
.x23_c00289{left:373.706667pt;}
.xd9_c00289{left:375.626667pt;}
.xc2_c00289{left:377.333333pt;}
.xe6_c00289{left:379.040000pt;}
.x9d_c00289{left:380.373333pt;}
.x80_c00289{left:381.333333pt;}
.xf7_c00289{left:383.626667pt;}
.x78_c00289{left:385.333333pt;}
.x67_c00289{left:388.000000pt;}
.x15_c00289{left:389.333333pt;}
.xc7_c00289{left:390.666667pt;}
.x86_c00289{left:392.000000pt;}
.x2d_c00289{left:393.333333pt;}
.xd4_c00289{left:394.293333pt;}
.x104_c00289{left:396.373333pt;}
.xf2_c00289{left:398.666667pt;}
.x79_c00289{left:400.000000pt;}
.x24_c00289{left:401.706667pt;}
.x8_c00289{left:402.666667pt;}
.xb7_c00289{left:403.626667pt;}
.xc8_c00289{left:405.333333pt;}
.x6f_c00289{left:409.706667pt;}
.xd5_c00289{left:412.373333pt;}
.x58_c00289{left:413.333333pt;}
.xe1_c00289{left:416.373333pt;}
.x39_c00289{left:417.333333pt;}
.x44_c00289{left:418.293333pt;}
.x9_c00289{left:419.626667pt;}
.x2e_c00289{left:420.960000pt;}
.xa5_c00289{left:422.666667pt;}
.x4e_c00289{left:424.000000pt;}
.xde_c00289{left:424.960000pt;}
.xbe_c00289{left:429.333333pt;}
.x59_c00289{left:430.293333pt;}
.xf3_c00289{left:432.000000pt;}
.x61_c00289{left:433.333333pt;}
.xc9_c00289{left:435.626667pt;}
.xa_c00289{left:437.706667pt;}
.x7a_c00289{left:439.040000pt;}
.x16_c00289{left:441.333333pt;}
.xfc_c00289{left:442.293333pt;}
.xb8_c00289{left:445.333333pt;}
.x9e_c00289{left:448.000000pt;}
.x3a_c00289{left:449.706667pt;}
.x25_c00289{left:450.666667pt;}
.x98_c00289{left:451.626667pt;}
.xca_c00289{left:453.333333pt;}
.xa6_c00289{left:454.293333pt;}
.x87_c00289{left:455.626667pt;}
.xc3_c00289{left:457.333333pt;}
.x17_c00289{left:460.000000pt;}
.x2f_c00289{left:461.333333pt;}
.x7b_c00289{left:462.666667pt;}
.x8c_c00289{left:466.293333pt;}
.xce_c00289{left:467.626667pt;}
.xb0_c00289{left:472.000000pt;}
.x3b_c00289{left:473.706667pt;}
.x62_c00289{left:475.626667pt;}
.x94_c00289{left:476.960000pt;}
.x18_c00289{left:478.666667pt;}
.xa7_c00289{left:482.666667pt;}
.x26_c00289{left:484.000000pt;}
.x100_c00289{left:485.333333pt;}
.x9f_c00289{left:488.000000pt;}
.x10a_c00289{left:488.960000pt;}
.xb1_c00289{left:490.666667pt;}
.x91_c00289{left:492.000000pt;}
.xe7_c00289{left:493.706667pt;}
.xb_c00289{left:494.666667pt;}
.x68_c00289{left:496.373333pt;}
.xd6_c00289{left:497.706667pt;}
.x7c_c00289{left:498.666667pt;}
.x3c_c00289{left:501.706667pt;}
.x81_c00289{left:503.040000pt;}
.xcf_c00289{left:504.000000pt;}
.xed_c00289{left:506.666667pt;}
.x30_c00289{left:511.040000pt;}
.x5a_c00289{left:513.333333pt;}
.x45_c00289{left:516.000000pt;}
.x99_c00289{left:517.333333pt;}
.xe8_c00289{left:518.666667pt;}
.x19_c00289{left:520.000000pt;}
.xa8_c00289{left:521.706667pt;}
.x4f_c00289{left:523.040000pt;}
.x70_c00289{left:526.293333pt;}
.x107_c00289{left:528.000000pt;}
.x95_c00289{left:529.706667pt;}
.x3d_c00289{left:532.000000pt;}
.xb2_c00289{left:532.960000pt;}
.xcb_c00289{left:534.666667pt;}
.x1a_c00289{left:536.000000pt;}
.x82_c00289{left:538.293333pt;}
.xf4_c00289{left:540.373333pt;}
.x31_c00289{left:541.706667pt;}
.x5b_c00289{left:544.373333pt;}
.xa0_c00289{left:545.333333pt;}
.xc4_c00289{left:546.666667pt;}
.x101_c00289{left:548.000000pt;}
.x1b_c00289{left:550.293333pt;}
.x7d_c00289{left:553.706667pt;}
.x27_c00289{left:555.040000pt;}
.x88_c00289{left:556.960000pt;}
.xb3_c00289{left:559.626667pt;}
.x3e_c00289{left:563.040000pt;}
.xc_c00289{left:565.333333pt;}
.xef_c00289{left:571.040000pt;}
.x50_c00289{left:572.000000pt;}
.x46_c00289{left:573.333333pt;}
.xa1_c00289{left:574.666667pt;}
.x8d_c00289{left:577.333333pt;}
.xe9_c00289{left:578.293333pt;}
.xf8_c00289{left:580.000000pt;}
.x1c_c00289{left:581.333333pt;}
.x5c_c00289{left:585.333333pt;}
.xd_c00289{left:587.040000pt;}
.x3f_c00289{left:588.000000pt;}
.x69_c00289{left:590.293333pt;}
.xb9_c00289{left:592.373333pt;}
.x51_c00289{left:594.293333pt;}
.xe2_c00289{left:596.000000pt;}
.x9a_c00289{left:597.333333pt;}
.x1d_c00289{left:600.000000pt;}
.x108_c00289{left:601.333333pt;}
.x5d_c00289{left:602.666667pt;}
.x47_c00289{left:604.000000pt;}
.x6a_c00289{left:605.333333pt;}
.xdf_c00289{left:608.000000pt;}
.x32_c00289{left:610.666667pt;}
.xe_c00289{left:612.000000pt;}
.xb4_c00289{left:613.333333pt;}
.x48_c00289{left:614.666667pt;}
.x28_c00289{left:616.000000pt;}
.x71_c00289{left:617.133333pt;}
.x109_c00289{left:619.040000pt;}
.xea_c00289{left:620.373333pt;}
.xf0_c00289{left:621.706667pt;}
.xa9_c00289{left:622.666667pt;}
.xba_c00289{left:623.626667pt;}
.x33_c00289{left:624.960000pt;}
.x89_c00289{left:626.293333pt;}
.x10b_c00289{left:627.626667pt;}
.x8e_c00289{left:631.040000pt;}
.xe3_c00289{left:636.000000pt;}
.xe0_c00289{left:636.960000pt;}
.x52_c00289{left:642.666667pt;}
.xa2_c00289{left:644.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_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_08201681bb5cbaba5c305739.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:1.688965;font-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_c00290{transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);}
.med_c00290{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.m2f_c00290{transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);}
.m8_c00290{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.me2_c00290{transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);}
.mc2_c00290{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.meb_c00290{transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);}
.mb7_c00290{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.mf6_c00290{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m8c_c00290{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.md8_c00290{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m88_c00290{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mab_c00290{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.mee_c00290{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00290{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m3_c00290{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m78_c00290{transform:matrix(0.379985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379985,0.000000,0.000000,0.250000,0,0);}
.m21_c00290{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m55_c00290{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m85_c00290{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.mf0_c00290{transform:matrix(0.387653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387653,0.000000,0.000000,0.250000,0,0);}
.m25_c00290{transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);}
.mae_c00290{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m24_c00290{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m94_c00290{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.mcf_c00290{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mf1_c00290{transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);}
.mdb_c00290{transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);}
.m30_c00290{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.mbb_c00290{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m5c_c00290{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m6f_c00290{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m3c_c00290{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.ma4_c00290{transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);}
.m23_c00290{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.mc7_c00290{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.mda_c00290{transform:matrix(0.399540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399540,0.000000,0.000000,0.250000,0,0);}
.m44_c00290{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mea_c00290{transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);}
.m27_c00290{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.maa_c00290{transform:matrix(0.403989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403989,0.000000,0.000000,0.250000,0,0);}
.m4e_c00290{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m5f_c00290{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m69_c00290{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.ma8_c00290{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m7e_c00290{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.mb8_c00290{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mb6_c00290{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mb0_c00290{transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);}
.mc5_c00290{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m8d_c00290{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.ma1_c00290{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.mde_c00290{transform:matrix(0.412960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412960,0.000000,0.000000,0.250000,0,0);}
.m59_c00290{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.mc3_c00290{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m4f_c00290{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m58_c00290{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.me5_c00290{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m13_c00290{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.mc6_c00290{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m5e_c00290{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m2a_c00290{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m74_c00290{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m60_c00290{transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);}
.m2_c00290{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.ma0_c00290{transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);}
.m8f_c00290{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m70_c00290{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.mf2_c00290{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.mcc_c00290{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.mec_c00290{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mc_c00290{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m4d_c00290{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m1a_c00290{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m37_c00290{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m99_c00290{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.md3_c00290{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m36_c00290{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.ma7_c00290{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.m89_c00290{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.m92_c00290{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m93_c00290{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m97_c00290{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m15_c00290{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m77_c00290{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m54_c00290{transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);}
.m3d_c00290{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.ma2_c00290{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m43_c00290{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.mba_c00290{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m18_c00290{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m76_c00290{transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);}
.md1_c00290{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);}
.ma3_c00290{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.m35_c00290{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m5d_c00290{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m0_c00290{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m9e_c00290{transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);}
.ma5_c00290{transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);}
.mc1_c00290{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m4b_c00290{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m31_c00290{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.me0_c00290{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.me_c00290{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.m8a_c00290{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.mb1_c00290{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.mad_c00290{transform:matrix(0.460581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460581,0.000000,0.000000,0.250000,0,0);}
.m6a_c00290{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.ma_c00290{transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);}
.mc8_c00290{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.mc9_c00290{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.m28_c00290{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m66_c00290{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.m62_c00290{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m79_c00290{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.me4_c00290{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m52_c00290{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m64_c00290{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m38_c00290{transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);}
.md_c00290{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m7c_c00290{transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);}
.m10_c00290{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m2d_c00290{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m9c_c00290{transform:matrix(0.486975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486975,0.000000,0.000000,0.250000,0,0);}
.mef_c00290{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m7d_c00290{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.md4_c00290{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.me3_c00290{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m9f_c00290{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m9b_c00290{transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);}
.mac_c00290{transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);}
.mca_c00290{transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);}
.m8e_c00290{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.mbd_c00290{transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);}
.m3f_c00290{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);}
.ma6_c00290{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mdc_c00290{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mdf_c00290{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m14_c00290{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m6_c00290{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m49_c00290{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.md5_c00290{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mcd_c00290{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.me1_c00290{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.md9_c00290{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.mbc_c00290{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m1e_c00290{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mb4_c00290{transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);}
.m50_c00290{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m3a_c00290{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.md6_c00290{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m7a_c00290{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m3b_c00290{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m9a_c00290{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m72_c00290{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m6e_c00290{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.md7_c00290{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.mcb_c00290{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.me9_c00290{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m16_c00290{transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);}
.m12_c00290{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m8b_c00290{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m41_c00290{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m7b_c00290{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m45_c00290{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m61_c00290{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m90_c00290{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m71_c00290{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m19_c00290{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mf_c00290{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m91_c00290{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m5_c00290{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mbe_c00290{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m9d_c00290{transform:matrix(0.543599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543599,0.000000,0.000000,0.250000,0,0);}
.m11_c00290{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m3e_c00290{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m46_c00290{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m84_c00290{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m1c_c00290{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m33_c00290{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mf4_c00290{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m6d_c00290{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m73_c00290{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m98_c00290{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m2c_c00290{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.me8_c00290{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m29_c00290{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mb3_c00290{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m5a_c00290{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m26_c00290{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m56_c00290{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);}
.m81_c00290{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m48_c00290{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m2e_c00290{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.ma9_c00290{transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);}
.m1d_c00290{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mb5_c00290{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m1b_c00290{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m1f_c00290{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m51_c00290{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m39_c00290{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mce_c00290{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m40_c00290{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mb2_c00290{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.m63_c00290{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m5b_c00290{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m87_c00290{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.me7_c00290{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m47_c00290{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m53_c00290{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mf3_c00290{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m67_c00290{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m4_c00290{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);}
.maf_c00290{transform:matrix(0.608974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608974,0.000000,0.000000,0.250000,0,0);}
.m68_c00290{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m7f_c00290{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.mb_c00290{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m96_c00290{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m9_c00290{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m65_c00290{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m6c_c00290{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_c00290{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m17_c00290{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m4a_c00290{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m57_c00290{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m95_c00290{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.md0_c00290{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m20_c00290{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mbf_c00290{transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);}
.me6_c00290{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m32_c00290{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m82_c00290{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mdd_c00290{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mf5_c00290{transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);}
.m34_c00290{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m42_c00290{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m2b_c00290{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m7_c00290{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.m75_c00290{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m4c_c00290{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m83_c00290{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m22_c00290{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m6b_c00290{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m80_c00290{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.md2_c00290{transform:matrix(3.728070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.728070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.728070,0.000000,0.000000,0.250000,0,0);}
.mc4_c00290{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.mb9_c00290{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
.fs7_c00290{font-size:3.420000px;}
.fs4_c00290{font-size:18.720000px;}
.fs1_c00290{font-size:20.400000px;}
.fs3_c00290{font-size:25.500000px;}
.fs0_c00290{font-size:28.920000px;}
.fs5_c00290{font-size:32.340000px;}
.fs2_c00290{font-size:35.700000px;}
.fs6_c00290{font-size:39.120000px;}
.y0_c00290{bottom:0.000000px;}
.yd1_c00290{bottom:247.905000px;}
.yd5_c00290{bottom:248.745000px;}
.yd3_c00290{bottom:250.905000px;}
.yd4_c00290{bottom:251.130000px;}
.yd0_c00290{bottom:251.325000px;}
.yd2_c00290{bottom:252.405000px;}
.ycf_c00290{bottom:267.180000px;}
.yce_c00290{bottom:268.680000px;}
.ycd_c00290{bottom:269.745000px;}
.ycc_c00290{bottom:271.905000px;}
.ycb_c00290{bottom:287.745000px;}
.yc8_c00290{bottom:288.405000px;}
.yca_c00290{bottom:289.245000px;}
.yc6_c00290{bottom:289.680000px;}
.yc9_c00290{bottom:291.405000px;}
.yc7_c00290{bottom:291.825000px;}
.yc5_c00290{bottom:292.905000px;}
.yc3_c00290{bottom:310.245000px;}
.yc4_c00290{bottom:310.905000px;}
.yc1_c00290{bottom:311.130000px;}
.yc2_c00290{bottom:312.405000px;}
.ybd_c00290{bottom:328.245000px;}
.ybe_c00290{bottom:329.325000px;}
.ybc_c00290{bottom:329.745000px;}
.ybf_c00290{bottom:330.405000px;}
.yc0_c00290{bottom:331.470000px;}
.yba_c00290{bottom:331.905000px;}
.ybb_c00290{bottom:332.970000px;}
.yb9_c00290{bottom:346.680000px;}
.yb7_c00290{bottom:347.745000px;}
.yb6_c00290{bottom:348.180000px;}
.yb4_c00290{bottom:349.245000px;}
.yb8_c00290{bottom:349.905000px;}
.yb5_c00290{bottom:350.130000px;}
.yb2_c00290{bottom:351.405000px;}
.yb3_c00290{bottom:351.420000px;}
.yb0_c00290{bottom:368.745000px;}
.yad_c00290{bottom:369.180000px;}
.yb1_c00290{bottom:369.405000px;}
.yaf_c00290{bottom:370.905000px;}
.yae_c00290{bottom:372.405000px;}
.yac_c00290{bottom:388.245000px;}
.yaa_c00290{bottom:390.405000px;}
.yab_c00290{bottom:391.470000px;}
.ya9_c00290{bottom:391.905000px;}
.ya6_c00290{bottom:406.905000px;}
.ya4_c00290{bottom:407.745000px;}
.ya8_c00290{bottom:408.420000px;}
.ya5_c00290{bottom:409.905000px;}
.ya7_c00290{bottom:410.130000px;}
.ya3_c00290{bottom:427.245000px;}
.ya0_c00290{bottom:428.325000px;}
.ya2_c00290{bottom:429.405000px;}
.ya1_c00290{bottom:429.825000px;}
.y9d_c00290{bottom:446.745000px;}
.y9e_c00290{bottom:447.825000px;}
.y9c_c00290{bottom:448.245000px;}
.y9f_c00290{bottom:448.905000px;}
.y9a_c00290{bottom:450.405000px;}
.y9b_c00290{bottom:450.420000px;}
.y99_c00290{bottom:467.745000px;}
.y97_c00290{bottom:469.050000px;}
.y96_c00290{bottom:469.905000px;}
.y98_c00290{bottom:469.920000px;}
.y95_c00290{bottom:484.905000px;}
.y94_c00290{bottom:486.405000px;}
.y91_c00290{bottom:487.245000px;}
.y93_c00290{bottom:488.325000px;}
.y92_c00290{bottom:490.920000px;}
.y90_c00290{bottom:506.745000px;}
.y8f_c00290{bottom:508.905000px;}
.y8c_c00290{bottom:526.245000px;}
.y8d_c00290{bottom:527.745000px;}
.y8e_c00290{bottom:528.405000px;}
.y89_c00290{bottom:553.470000px;}
.y87_c00290{bottom:554.325000px;}
.y8a_c00290{bottom:554.550000px;}
.y84_c00290{bottom:555.405000px;}
.y8b_c00290{bottom:555.630000px;}
.y85_c00290{bottom:556.905000px;}
.y88_c00290{bottom:557.550000px;}
.y86_c00290{bottom:557.970000px;}
.y83_c00290{bottom:573.825000px;}
.y82_c00290{bottom:574.050000px;}
.y80_c00290{bottom:574.905000px;}
.y81_c00290{bottom:575.325000px;}
.y7f_c00290{bottom:576.405000px;}
.y7d_c00290{bottom:598.245000px;}
.y7c_c00290{bottom:599.325000px;}
.y7e_c00290{bottom:600.405000px;}
.y7b_c00290{bottom:644.745000px;}
.y7a_c00290{bottom:646.905000px;}
.y77_c00290{bottom:663.825000px;}
.y75_c00290{bottom:664.245000px;}
.y79_c00290{bottom:665.325000px;}
.y78_c00290{bottom:665.970000px;}
.y73_c00290{bottom:666.405000px;}
.y76_c00290{bottom:666.630000px;}
.y74_c00290{bottom:667.470000px;}
.y71_c00290{bottom:683.745000px;}
.y6e_c00290{bottom:684.825000px;}
.y6c_c00290{bottom:685.245000px;}
.y6f_c00290{bottom:685.905000px;}
.y6d_c00290{bottom:686.325000px;}
.y72_c00290{bottom:686.970000px;}
.y70_c00290{bottom:687.405000px;}
.y6a_c00290{bottom:703.245000px;}
.y6b_c00290{bottom:703.680000px;}
.y69_c00290{bottom:705.405000px;}
.y68_c00290{bottom:705.630000px;}
.y67_c00290{bottom:706.470000px;}
.y66_c00290{bottom:706.905000px;}
.y62_c00290{bottom:722.745000px;}
.y65_c00290{bottom:724.245000px;}
.y64_c00290{bottom:724.905000px;}
.y63_c00290{bottom:725.325000px;}
.y61_c00290{bottom:725.970000px;}
.y60_c00290{bottom:726.405000px;}
.y5e_c00290{bottom:742.680000px;}
.y5c_c00290{bottom:743.745000px;}
.y5d_c00290{bottom:745.470000px;}
.y5f_c00290{bottom:745.905000px;}
.y5b_c00290{bottom:764.130000px;}
.y59_c00290{bottom:764.325000px;}
.y5a_c00290{bottom:764.970000px;}
.y58_c00290{bottom:765.405000px;}
.y57_c00290{bottom:766.470000px;}
.y54_c00290{bottom:781.905000px;}
.y56_c00290{bottom:782.325000px;}
.y53_c00290{bottom:782.745000px;}
.y55_c00290{bottom:784.470000px;}
.y52_c00290{bottom:784.905000px;}
.y51_c00290{bottom:785.970000px;}
.y4e_c00290{bottom:801.405000px;}
.y4c_c00290{bottom:802.245000px;}
.y50_c00290{bottom:803.970000px;}
.y4d_c00290{bottom:804.405000px;}
.y4f_c00290{bottom:805.470000px;}
.y4a_c00290{bottom:820.905000px;}
.y48_c00290{bottom:821.745000px;}
.y49_c00290{bottom:823.245000px;}
.y47_c00290{bottom:823.905000px;}
.y4b_c00290{bottom:824.970000px;}
.y46_c00290{bottom:825.405000px;}
.y41_c00290{bottom:841.245000px;}
.y40_c00290{bottom:841.470000px;}
.y42_c00290{bottom:842.745000px;}
.y45_c00290{bottom:843.630000px;}
.y44_c00290{bottom:843.825000px;}
.y43_c00290{bottom:844.905000px;}
.y3f_c00290{bottom:860.970000px;}
.y3e_c00290{bottom:862.245000px;}
.y3d_c00290{bottom:863.325000px;}
.y3c_c00290{bottom:864.405000px;}
.y3b_c00290{bottom:879.405000px;}
.y3a_c00290{bottom:881.325000px;}
.y36_c00290{bottom:881.745000px;}
.y39_c00290{bottom:882.630000px;}
.y38_c00290{bottom:883.470000px;}
.y37_c00290{bottom:883.905000px;}
.y35_c00290{bottom:899.970000px;}
.y33_c00290{bottom:900.405000px;}
.y32_c00290{bottom:901.245000px;}
.y34_c00290{bottom:902.325000px;}
.y31_c00290{bottom:903.405000px;}
.y30_c00290{bottom:920.745000px;}
.y2f_c00290{bottom:921.630000px;}
.y2e_c00290{bottom:921.825000px;}
.y2c_c00290{bottom:922.470000px;}
.y2b_c00290{bottom:922.905000px;}
.y2d_c00290{bottom:923.970000px;}
.y2a_c00290{bottom:940.245000px;}
.y29_c00290{bottom:941.745000px;}
.y27_c00290{bottom:942.405000px;}
.y28_c00290{bottom:942.630000px;}
.y26_c00290{bottom:959.745000px;}
.y24_c00290{bottom:961.905000px;}
.y22_c00290{bottom:962.130000px;}
.y23_c00290{bottom:962.325000px;}
.y25_c00290{bottom:963.405000px;}
.y21_c00290{bottom:979.245000px;}
.y1c_c00290{bottom:980.325000px;}
.y1b_c00290{bottom:980.745000px;}
.y1e_c00290{bottom:981.405000px;}
.y20_c00290{bottom:981.630000px;}
.y1d_c00290{bottom:982.470000px;}
.y1f_c00290{bottom:982.905000px;}
.y19_c00290{bottom:998.745000px;}
.y1a_c00290{bottom:998.970000px;}
.y18_c00290{bottom:999.405000px;}
.y15_c00290{bottom:1000.245000px;}
.y16_c00290{bottom:1000.905000px;}
.y17_c00290{bottom:1001.130000px;}
.y14_c00290{bottom:1002.405000px;}
.ye_c00290{bottom:1017.405000px;}
.yc_c00290{bottom:1018.245000px;}
.y10_c00290{bottom:1018.470000px;}
.y13_c00290{bottom:1018.905000px;}
.yf_c00290{bottom:1020.405000px;}
.y12_c00290{bottom:1020.630000px;}
.y11_c00290{bottom:1021.470000px;}
.yd_c00290{bottom:1021.905000px;}
.yb_c00290{bottom:1038.825000px;}
.y9_c00290{bottom:1039.245000px;}
.y8_c00290{bottom:1041.405000px;}
.ya_c00290{bottom:1042.470000px;}
.y3_c00290{bottom:1058.745000px;}
.y6_c00290{bottom:1059.630000px;}
.y7_c00290{bottom:1059.825000px;}
.y5_c00290{bottom:1060.905000px;}
.y4_c00290{bottom:1061.970000px;}
.y2_c00290{bottom:1099.050000px;}
.y1_c00290{bottom:1099.905000px;}
.h8_c00290{height:4.206533px;}
.h5_c00290{height:23.025234px;}
.h2_c00290{height:25.091602px;}
.h4_c00290{height:31.364502px;}
.h1_c00290{height:35.571035px;}
.h6_c00290{height:39.777568px;}
.h3_c00290{height:43.910303px;}
.h7_c00290{height:48.116836px;}
.h0_c00290{height:1335.000000px;}
.w0_c00290{width:880.500000px;}
.x0_c00290{left:0.000000px;}
.x1f_c00290{left:150.420000px;}
.x3_c00290{left:151.500000px;}
.xa0_c00290{left:153.000000px;}
.xcc_c00290{left:154.920000px;}
.x54_c00290{left:166.500000px;}
.x7e_c00290{left:168.000000px;}
.x9a_c00290{left:169.080000px;}
.x95_c00290{left:171.420000px;}
.x4_c00290{left:172.500000px;}
.x43_c00290{left:178.500000px;}
.x12_c00290{left:183.420000px;}
.xb0_c00290{left:186.420000px;}
.x79_c00290{left:187.500000px;}
.xe6_c00290{left:190.500000px;}
.x2d_c00290{left:192.000000px;}
.x50_c00290{left:195.420000px;}
.x70_c00290{left:196.500000px;}
.x20_c00290{left:197.580000px;}
.xcd_c00290{left:199.275000px;}
.x3b_c00290{left:201.420000px;}
.x5_c00290{left:204.000000px;}
.x2e_c00290{left:209.580000px;}
.xca_c00290{left:211.920000px;}
.x21_c00290{left:214.920000px;}
.xe1_c00290{left:216.000000px;}
.xe7_c00290{left:217.920000px;}
.x44_c00290{left:219.000000px;}
.x13_c00290{left:220.920000px;}
.x51_c00290{left:223.080000px;}
.xa5_c00290{left:225.000000px;}
.x68_c00290{left:226.500000px;}
.xb8_c00290{left:230.580000px;}
.xb1_c00290{left:234.420000px;}
.x6_c00290{left:235.500000px;}
.x90_c00290{left:237.420000px;}
.x22_c00290{left:240.000000px;}
.x52_c00290{left:246.420000px;}
.x14_c00290{left:247.500000px;}
.xd1_c00290{left:250.500000px;}
.xf6_c00290{left:255.000000px;}
.x55_c00290{left:258.000000px;}
.x71_c00290{left:259.500000px;}
.xd4_c00290{left:262.500000px;}
.xa1_c00290{left:264.420000px;}
.xe8_c00290{left:265.500000px;}
.x96_c00290{left:267.420000px;}
.x5c_c00290{left:268.500000px;}
.xe3_c00290{left:269.580000px;}
.xec_c00290{left:271.080000px;}
.x3c_c00290{left:273.000000px;}
.x7_c00290{left:274.920000px;}
.xce_c00290{left:280.500000px;}
.xd5_c00290{left:282.000000px;}
.x23_c00290{left:283.920000px;}
.x7a_c00290{left:285.420000px;}
.x7f_c00290{left:288.000000px;}
.x45_c00290{left:289.080000px;}
.x2f_c00290{left:291.000000px;}
.x69_c00290{left:295.500000px;}
.x72_c00290{left:300.000000px;}
.xb2_c00290{left:301.920000px;}
.x53_c00290{left:303.000000px;}
.x97_c00290{left:304.500000px;}
.x5d_c00290{left:306.000000px;}
.xe9_c00290{left:307.920000px;}
.xf3_c00290{left:310.500000px;}
.xbe_c00290{left:313.500000px;}
.xd6_c00290{left:315.000000px;}
.xdc_c00290{left:318.000000px;}
.x46_c00290{left:319.920000px;}
.x87_c00290{left:322.500000px;}
.x15_c00290{left:323.580000px;}
.x91_c00290{left:328.500000px;}
.x80_c00290{left:331.080000px;}
.xea_c00290{left:332.580000px;}
.x7b_c00290{left:334.080000px;}
.xb3_c00290{left:336.420000px;}
.x98_c00290{left:337.500000px;}
.x5e_c00290{left:340.920000px;}
.xa6_c00290{left:342.000000px;}
.xb9_c00290{left:345.000000px;}
.xcf_c00290{left:346.275000px;}
.xd2_c00290{left:350.145000px;}
.x47_c00290{left:351.420000px;}
.x8_c00290{left:352.500000px;}
.x88_c00290{left:354.000000px;}
.x24_c00290{left:355.920000px;}
.x16_c00290{left:360.000000px;}
.x30_c00290{left:363.420000px;}
.xa7_c00290{left:364.920000px;}
.xd7_c00290{left:367.080000px;}
.xc6_c00290{left:369.000000px;}
.xc3_c00290{left:370.080000px;}
.x89_c00290{left:373.500000px;}
.x17_c00290{left:376.920000px;}
.xa2_c00290{left:379.080000px;}
.xbf_c00290{left:382.500000px;}
.x73_c00290{left:384.000000px;}
.x9_c00290{left:386.580000px;}
.x3d_c00290{left:388.920000px;}
.x99_c00290{left:390.000000px;}
.xe2_c00290{left:391.080000px;}
.x31_c00290{left:393.420000px;}
.xdd_c00290{left:394.500000px;}
.x6a_c00290{left:397.080000px;}
.xed_c00290{left:398.145000px;}
.x25_c00290{left:399.420000px;}
.x56_c00290{left:403.080000px;}
.x2_c00290{left:405.000000px;}
.xdf_c00290{left:407.580000px;}
.xa_c00290{left:409.500000px;}
.x8a_c00290{left:412.920000px;}
.x5f_c00290{left:414.000000px;}
.xb4_c00290{left:415.500000px;}
.xf8_c00290{left:417.000000px;}
.xf4_c00290{left:419.580000px;}
.x9b_c00290{left:421.080000px;}
.x48_c00290{left:423.000000px;}
.x7c_c00290{left:425.580000px;}
.xb_c00290{left:427.080000px;}
.xa8_c00290{left:428.580000px;}
.xda_c00290{left:430.920000px;}
.xc0_c00290{left:433.080000px;}
.x26_c00290{left:436.500000px;}
.x8b_c00290{left:438.000000px;}
.x49_c00290{left:439.500000px;}
.x32_c00290{left:441.000000px;}
.x57_c00290{left:442.920000px;}
.x6b_c00290{left:444.000000px;}
.x18_c00290{left:445.080000px;}
.xa9_c00290{left:446.580000px;}
.xee_c00290{left:448.500000px;}
.x60_c00290{left:451.500000px;}
.x33_c00290{left:456.000000px;}
.x7d_c00290{left:457.500000px;}
.xc4_c00290{left:458.580000px;}
.xb5_c00290{left:466.080000px;}
.x27_c00290{left:468.000000px;}
.x3e_c00290{left:471.420000px;}
.x74_c00290{left:474.000000px;}
.xe4_c00290{left:475.500000px;}
.xc5_c00290{left:477.000000px;}
.x92_c00290{left:481.080000px;}
.xa3_c00290{left:483.420000px;}
.xef_c00290{left:484.920000px;}
.x28_c00290{left:486.000000px;}
.x81_c00290{left:487.920000px;}
.x61_c00290{left:489.000000px;}
.x58_c00290{left:492.000000px;}
.x9c_c00290{left:494.580000px;}
.x34_c00290{left:496.920000px;}
.xf9_c00290{left:498.000000px;}
.xc_c00290{left:499.500000px;}
.xd3_c00290{left:502.080000px;}
.xc1_c00290{left:503.580000px;}
.x6c_c00290{left:511.500000px;}
.x75_c00290{left:514.080000px;}
.x29_c00290{left:517.500000px;}
.xd0_c00290{left:519.420000px;}
.xaa_c00290{left:520.500000px;}
.x8c_c00290{left:522.000000px;}
.x19_c00290{left:523.500000px;}
.xd_c00290{left:526.500000px;}
.x4a_c00290{left:528.000000px;}
.x62_c00290{left:531.000000px;}
.x35_c00290{left:532.080000px;}
.x82_c00290{left:535.920000px;}
.xab_c00290{left:538.080000px;}
.x3f_c00290{left:540.000000px;}
.x1a_c00290{left:541.920000px;}
.x6d_c00290{left:543.420000px;}
.xb6_c00290{left:547.080000px;}
.x2a_c00290{left:548.580000px;}
.xf0_c00290{left:550.500000px;}
.x36_c00290{left:552.000000px;}
.xba_c00290{left:553.920000px;}
.x63_c00290{left:560.580000px;}
.xa4_c00290{left:562.500000px;}
.x4b_c00290{left:564.000000px;}
.xc2_c00290{left:565.920000px;}
.x9d_c00290{left:568.500000px;}
.x1b_c00290{left:570.000000px;}
.x93_c00290{left:571.080000px;}
.x76_c00290{left:574.920000px;}
.xe0_c00290{left:576.000000px;}
.x83_c00290{left:580.920000px;}
.xdb_c00290{left:582.000000px;}
.xbb_c00290{left:583.080000px;}
.x37_c00290{left:584.580000px;}
.xde_c00290{left:586.920000px;}
.xd8_c00290{left:588.000000px;}
.x64_c00290{left:592.500000px;}
.xfa_c00290{left:595.920000px;}
.x40_c00290{left:598.500000px;}
.x59_c00290{left:600.000000px;}
.x6e_c00290{left:601.920000px;}
.xe_c00290{left:604.500000px;}
.x4c_c00290{left:606.420000px;}
.x8d_c00290{left:607.920000px;}
.xac_c00290{left:610.500000px;}
.x65_c00290{left:612.000000px;}
.xe5_c00290{left:615.000000px;}
.x41_c00290{left:616.080000px;}
.xf5_c00290{left:617.580000px;}
.xf_c00290{left:621.000000px;}
.x1c_c00290{left:622.080000px;}
.x94_c00290{left:627.420000px;}
.xbc_c00290{left:631.500000px;}
.x4d_c00290{left:633.000000px;}
.x5a_c00290{left:634.500000px;}
.xc7_c00290{left:637.500000px;}
.x2b_c00290{left:638.580000px;}
.xf1_c00290{left:640.500000px;}
.x77_c00290{left:642.000000px;}
.x8e_c00290{left:643.080000px;}
.x9e_c00290{left:645.000000px;}
.x1d_c00290{left:646.500000px;}
.x84_c00290{left:649.500000px;}
.x2c_c00290{left:651.000000px;}
.x66_c00290{left:652.500000px;}
.x6f_c00290{left:654.000000px;}
.xd9_c00290{left:657.420000px;}
.x38_c00290{left:658.500000px;}
.x9f_c00290{left:664.080000px;}
.xad_c00290{left:665.580000px;}
.xc8_c00290{left:667.920000px;}
.x85_c00290{left:669.000000px;}
.xeb_c00290{left:670.080000px;}
.xbd_c00290{left:671.580000px;}
.x1e_c00290{left:673.080000px;}
.xcb_c00290{left:674.580000px;}
.x39_c00290{left:676.500000px;}
.x4e_c00290{left:677.580000px;}
.xb7_c00290{left:679.080000px;}
.xf7_c00290{left:682.500000px;}
.x78_c00290{left:687.420000px;}
.x3a_c00290{left:688.500000px;}
.xc9_c00290{left:689.580000px;}
.x10_c00290{left:691.080000px;}
.x8f_c00290{left:694.080000px;}
.x4f_c00290{left:695.580000px;}
.x42_c00290{left:697.920000px;}
.x5b_c00290{left:702.000000px;}
.x1_c00290{left:703.080000px;}
.xae_c00290{left:706.080000px;}
.x86_c00290{left:708.420000px;}
.x67_c00290{left:709.500000px;}
.xf2_c00290{left:711.420000px;}
.x11_c00290{left:715.500000px;}
.xaf_c00290{left:726.000000px;}
@media print{
.v0_c00290{vertical-align:0.000000pt;}
.ls0_c00290{letter-spacing:0.000000pt;}
.ws0_c00290{word-spacing:0.000000pt;}
.fs7_c00290{font-size:3.040000pt;}
.fs4_c00290{font-size:16.640000pt;}
.fs1_c00290{font-size:18.133333pt;}
.fs3_c00290{font-size:22.666667pt;}
.fs0_c00290{font-size:25.706667pt;}
.fs5_c00290{font-size:28.746667pt;}
.fs2_c00290{font-size:31.733333pt;}
.fs6_c00290{font-size:34.773333pt;}
.y0_c00290{bottom:0.000000pt;}
.yd1_c00290{bottom:220.360000pt;}
.yd5_c00290{bottom:221.106667pt;}
.yd3_c00290{bottom:223.026667pt;}
.yd4_c00290{bottom:223.226667pt;}
.yd0_c00290{bottom:223.400000pt;}
.yd2_c00290{bottom:224.360000pt;}
.ycf_c00290{bottom:237.493333pt;}
.yce_c00290{bottom:238.826667pt;}
.ycd_c00290{bottom:239.773333pt;}
.ycc_c00290{bottom:241.693333pt;}
.ycb_c00290{bottom:255.773333pt;}
.yc8_c00290{bottom:256.360000pt;}
.yca_c00290{bottom:257.106667pt;}
.yc6_c00290{bottom:257.493333pt;}
.yc9_c00290{bottom:259.026667pt;}
.yc7_c00290{bottom:259.400000pt;}
.yc5_c00290{bottom:260.360000pt;}
.yc3_c00290{bottom:275.773333pt;}
.yc4_c00290{bottom:276.360000pt;}
.yc1_c00290{bottom:276.560000pt;}
.yc2_c00290{bottom:277.693333pt;}
.ybd_c00290{bottom:291.773333pt;}
.ybe_c00290{bottom:292.733333pt;}
.ybc_c00290{bottom:293.106667pt;}
.ybf_c00290{bottom:293.693333pt;}
.yc0_c00290{bottom:294.640000pt;}
.yba_c00290{bottom:295.026667pt;}
.ybb_c00290{bottom:295.973333pt;}
.yb9_c00290{bottom:308.160000pt;}
.yb7_c00290{bottom:309.106667pt;}
.yb6_c00290{bottom:309.493333pt;}
.yb4_c00290{bottom:310.440000pt;}
.yb8_c00290{bottom:311.026667pt;}
.yb5_c00290{bottom:311.226667pt;}
.yb2_c00290{bottom:312.360000pt;}
.yb3_c00290{bottom:312.373333pt;}
.yb0_c00290{bottom:327.773333pt;}
.yad_c00290{bottom:328.160000pt;}
.yb1_c00290{bottom:328.360000pt;}
.yaf_c00290{bottom:329.693333pt;}
.yae_c00290{bottom:331.026667pt;}
.yac_c00290{bottom:345.106667pt;}
.yaa_c00290{bottom:347.026667pt;}
.yab_c00290{bottom:347.973333pt;}
.ya9_c00290{bottom:348.360000pt;}
.ya6_c00290{bottom:361.693333pt;}
.ya4_c00290{bottom:362.440000pt;}
.ya8_c00290{bottom:363.040000pt;}
.ya5_c00290{bottom:364.360000pt;}
.ya7_c00290{bottom:364.560000pt;}
.ya3_c00290{bottom:379.773333pt;}
.ya0_c00290{bottom:380.733333pt;}
.ya2_c00290{bottom:381.693333pt;}
.ya1_c00290{bottom:382.066667pt;}
.y9d_c00290{bottom:397.106667pt;}
.y9e_c00290{bottom:398.066667pt;}
.y9c_c00290{bottom:398.440000pt;}
.y9f_c00290{bottom:399.026667pt;}
.y9a_c00290{bottom:400.360000pt;}
.y9b_c00290{bottom:400.373333pt;}
.y99_c00290{bottom:415.773333pt;}
.y97_c00290{bottom:416.933333pt;}
.y96_c00290{bottom:417.693333pt;}
.y98_c00290{bottom:417.706667pt;}
.y95_c00290{bottom:431.026667pt;}
.y94_c00290{bottom:432.360000pt;}
.y91_c00290{bottom:433.106667pt;}
.y93_c00290{bottom:434.066667pt;}
.y92_c00290{bottom:436.373333pt;}
.y90_c00290{bottom:450.440000pt;}
.y8f_c00290{bottom:452.360000pt;}
.y8c_c00290{bottom:467.773333pt;}
.y8d_c00290{bottom:469.106667pt;}
.y8e_c00290{bottom:469.693333pt;}
.y89_c00290{bottom:491.973333pt;}
.y87_c00290{bottom:492.733333pt;}
.y8a_c00290{bottom:492.933333pt;}
.y84_c00290{bottom:493.693333pt;}
.y8b_c00290{bottom:493.893333pt;}
.y85_c00290{bottom:495.026667pt;}
.y88_c00290{bottom:495.600000pt;}
.y86_c00290{bottom:495.973333pt;}
.y83_c00290{bottom:510.066667pt;}
.y82_c00290{bottom:510.266667pt;}
.y80_c00290{bottom:511.026667pt;}
.y81_c00290{bottom:511.400000pt;}
.y7f_c00290{bottom:512.360000pt;}
.y7d_c00290{bottom:531.773333pt;}
.y7c_c00290{bottom:532.733333pt;}
.y7e_c00290{bottom:533.693333pt;}
.y7b_c00290{bottom:573.106667pt;}
.y7a_c00290{bottom:575.026667pt;}
.y77_c00290{bottom:590.066667pt;}
.y75_c00290{bottom:590.440000pt;}
.y79_c00290{bottom:591.400000pt;}
.y78_c00290{bottom:591.973333pt;}
.y73_c00290{bottom:592.360000pt;}
.y76_c00290{bottom:592.560000pt;}
.y74_c00290{bottom:593.306667pt;}
.y71_c00290{bottom:607.773333pt;}
.y6e_c00290{bottom:608.733333pt;}
.y6c_c00290{bottom:609.106667pt;}
.y6f_c00290{bottom:609.693333pt;}
.y6d_c00290{bottom:610.066667pt;}
.y72_c00290{bottom:610.640000pt;}
.y70_c00290{bottom:611.026667pt;}
.y6a_c00290{bottom:625.106667pt;}
.y6b_c00290{bottom:625.493333pt;}
.y69_c00290{bottom:627.026667pt;}
.y68_c00290{bottom:627.226667pt;}
.y67_c00290{bottom:627.973333pt;}
.y66_c00290{bottom:628.360000pt;}
.y62_c00290{bottom:642.440000pt;}
.y65_c00290{bottom:643.773333pt;}
.y64_c00290{bottom:644.360000pt;}
.y63_c00290{bottom:644.733333pt;}
.y61_c00290{bottom:645.306667pt;}
.y60_c00290{bottom:645.693333pt;}
.y5e_c00290{bottom:660.160000pt;}
.y5c_c00290{bottom:661.106667pt;}
.y5d_c00290{bottom:662.640000pt;}
.y5f_c00290{bottom:663.026667pt;}
.y5b_c00290{bottom:679.226667pt;}
.y59_c00290{bottom:679.400000pt;}
.y5a_c00290{bottom:679.973333pt;}
.y58_c00290{bottom:680.360000pt;}
.y57_c00290{bottom:681.306667pt;}
.y54_c00290{bottom:695.026667pt;}
.y56_c00290{bottom:695.400000pt;}
.y53_c00290{bottom:695.773333pt;}
.y55_c00290{bottom:697.306667pt;}
.y52_c00290{bottom:697.693333pt;}
.y51_c00290{bottom:698.640000pt;}
.y4e_c00290{bottom:712.360000pt;}
.y4c_c00290{bottom:713.106667pt;}
.y50_c00290{bottom:714.640000pt;}
.y4d_c00290{bottom:715.026667pt;}
.y4f_c00290{bottom:715.973333pt;}
.y4a_c00290{bottom:729.693333pt;}
.y48_c00290{bottom:730.440000pt;}
.y49_c00290{bottom:731.773333pt;}
.y47_c00290{bottom:732.360000pt;}
.y4b_c00290{bottom:733.306667pt;}
.y46_c00290{bottom:733.693333pt;}
.y41_c00290{bottom:747.773333pt;}
.y40_c00290{bottom:747.973333pt;}
.y42_c00290{bottom:749.106667pt;}
.y45_c00290{bottom:749.893333pt;}
.y44_c00290{bottom:750.066667pt;}
.y43_c00290{bottom:751.026667pt;}
.y3f_c00290{bottom:765.306667pt;}
.y3e_c00290{bottom:766.440000pt;}
.y3d_c00290{bottom:767.400000pt;}
.y3c_c00290{bottom:768.360000pt;}
.y3b_c00290{bottom:781.693333pt;}
.y3a_c00290{bottom:783.400000pt;}
.y36_c00290{bottom:783.773333pt;}
.y39_c00290{bottom:784.560000pt;}
.y38_c00290{bottom:785.306667pt;}
.y37_c00290{bottom:785.693333pt;}
.y35_c00290{bottom:799.973333pt;}
.y33_c00290{bottom:800.360000pt;}
.y32_c00290{bottom:801.106667pt;}
.y34_c00290{bottom:802.066667pt;}
.y31_c00290{bottom:803.026667pt;}
.y30_c00290{bottom:818.440000pt;}
.y2f_c00290{bottom:819.226667pt;}
.y2e_c00290{bottom:819.400000pt;}
.y2c_c00290{bottom:819.973333pt;}
.y2b_c00290{bottom:820.360000pt;}
.y2d_c00290{bottom:821.306667pt;}
.y2a_c00290{bottom:835.773333pt;}
.y29_c00290{bottom:837.106667pt;}
.y27_c00290{bottom:837.693333pt;}
.y28_c00290{bottom:837.893333pt;}
.y26_c00290{bottom:853.106667pt;}
.y24_c00290{bottom:855.026667pt;}
.y22_c00290{bottom:855.226667pt;}
.y23_c00290{bottom:855.400000pt;}
.y25_c00290{bottom:856.360000pt;}
.y21_c00290{bottom:870.440000pt;}
.y1c_c00290{bottom:871.400000pt;}
.y1b_c00290{bottom:871.773333pt;}
.y1e_c00290{bottom:872.360000pt;}
.y20_c00290{bottom:872.560000pt;}
.y1d_c00290{bottom:873.306667pt;}
.y1f_c00290{bottom:873.693333pt;}
.y19_c00290{bottom:887.773333pt;}
.y1a_c00290{bottom:887.973333pt;}
.y18_c00290{bottom:888.360000pt;}
.y15_c00290{bottom:889.106667pt;}
.y16_c00290{bottom:889.693333pt;}
.y17_c00290{bottom:889.893333pt;}
.y14_c00290{bottom:891.026667pt;}
.ye_c00290{bottom:904.360000pt;}
.yc_c00290{bottom:905.106667pt;}
.y10_c00290{bottom:905.306667pt;}
.y13_c00290{bottom:905.693333pt;}
.yf_c00290{bottom:907.026667pt;}
.y12_c00290{bottom:907.226667pt;}
.y11_c00290{bottom:907.973333pt;}
.yd_c00290{bottom:908.360000pt;}
.yb_c00290{bottom:923.400000pt;}
.y9_c00290{bottom:923.773333pt;}
.y8_c00290{bottom:925.693333pt;}
.ya_c00290{bottom:926.640000pt;}
.y3_c00290{bottom:941.106667pt;}
.y6_c00290{bottom:941.893333pt;}
.y7_c00290{bottom:942.066667pt;}
.y5_c00290{bottom:943.026667pt;}
.y4_c00290{bottom:943.973333pt;}
.y2_c00290{bottom:976.933333pt;}
.y1_c00290{bottom:977.693333pt;}
.h8_c00290{height:3.739141pt;}
.h5_c00290{height:20.466875pt;}
.h2_c00290{height:22.303646pt;}
.h4_c00290{height:27.879557pt;}
.h1_c00290{height:31.618698pt;}
.h6_c00290{height:35.357839pt;}
.h3_c00290{height:39.031380pt;}
.h7_c00290{height:42.770521pt;}
.h0_c00290{height:1186.666667pt;}
.w0_c00290{width:782.666667pt;}
.x0_c00290{left:0.000000pt;}
.x1f_c00290{left:133.706667pt;}
.x3_c00290{left:134.666667pt;}
.xa0_c00290{left:136.000000pt;}
.xcc_c00290{left:137.706667pt;}
.x54_c00290{left:148.000000pt;}
.x7e_c00290{left:149.333333pt;}
.x9a_c00290{left:150.293333pt;}
.x95_c00290{left:152.373333pt;}
.x4_c00290{left:153.333333pt;}
.x43_c00290{left:158.666667pt;}
.x12_c00290{left:163.040000pt;}
.xb0_c00290{left:165.706667pt;}
.x79_c00290{left:166.666667pt;}
.xe6_c00290{left:169.333333pt;}
.x2d_c00290{left:170.666667pt;}
.x50_c00290{left:173.706667pt;}
.x70_c00290{left:174.666667pt;}
.x20_c00290{left:175.626667pt;}
.xcd_c00290{left:177.133333pt;}
.x3b_c00290{left:179.040000pt;}
.x5_c00290{left:181.333333pt;}
.x2e_c00290{left:186.293333pt;}
.xca_c00290{left:188.373333pt;}
.x21_c00290{left:191.040000pt;}
.xe1_c00290{left:192.000000pt;}
.xe7_c00290{left:193.706667pt;}
.x44_c00290{left:194.666667pt;}
.x13_c00290{left:196.373333pt;}
.x51_c00290{left:198.293333pt;}
.xa5_c00290{left:200.000000pt;}
.x68_c00290{left:201.333333pt;}
.xb8_c00290{left:204.960000pt;}
.xb1_c00290{left:208.373333pt;}
.x6_c00290{left:209.333333pt;}
.x90_c00290{left:211.040000pt;}
.x22_c00290{left:213.333333pt;}
.x52_c00290{left:219.040000pt;}
.x14_c00290{left:220.000000pt;}
.xd1_c00290{left:222.666667pt;}
.xf6_c00290{left:226.666667pt;}
.x55_c00290{left:229.333333pt;}
.x71_c00290{left:230.666667pt;}
.xd4_c00290{left:233.333333pt;}
.xa1_c00290{left:235.040000pt;}
.xe8_c00290{left:236.000000pt;}
.x96_c00290{left:237.706667pt;}
.x5c_c00290{left:238.666667pt;}
.xe3_c00290{left:239.626667pt;}
.xec_c00290{left:240.960000pt;}
.x3c_c00290{left:242.666667pt;}
.x7_c00290{left:244.373333pt;}
.xce_c00290{left:249.333333pt;}
.xd5_c00290{left:250.666667pt;}
.x23_c00290{left:252.373333pt;}
.x7a_c00290{left:253.706667pt;}
.x7f_c00290{left:256.000000pt;}
.x45_c00290{left:256.960000pt;}
.x2f_c00290{left:258.666667pt;}
.x69_c00290{left:262.666667pt;}
.x72_c00290{left:266.666667pt;}
.xb2_c00290{left:268.373333pt;}
.x53_c00290{left:269.333333pt;}
.x97_c00290{left:270.666667pt;}
.x5d_c00290{left:272.000000pt;}
.xe9_c00290{left:273.706667pt;}
.xf3_c00290{left:276.000000pt;}
.xbe_c00290{left:278.666667pt;}
.xd6_c00290{left:280.000000pt;}
.xdc_c00290{left:282.666667pt;}
.x46_c00290{left:284.373333pt;}
.x87_c00290{left:286.666667pt;}
.x15_c00290{left:287.626667pt;}
.x91_c00290{left:292.000000pt;}
.x80_c00290{left:294.293333pt;}
.xea_c00290{left:295.626667pt;}
.x7b_c00290{left:296.960000pt;}
.xb3_c00290{left:299.040000pt;}
.x98_c00290{left:300.000000pt;}
.x5e_c00290{left:303.040000pt;}
.xa6_c00290{left:304.000000pt;}
.xb9_c00290{left:306.666667pt;}
.xcf_c00290{left:307.800000pt;}
.xd2_c00290{left:311.240000pt;}
.x47_c00290{left:312.373333pt;}
.x8_c00290{left:313.333333pt;}
.x88_c00290{left:314.666667pt;}
.x24_c00290{left:316.373333pt;}
.x16_c00290{left:320.000000pt;}
.x30_c00290{left:323.040000pt;}
.xa7_c00290{left:324.373333pt;}
.xd7_c00290{left:326.293333pt;}
.xc6_c00290{left:328.000000pt;}
.xc3_c00290{left:328.960000pt;}
.x89_c00290{left:332.000000pt;}
.x17_c00290{left:335.040000pt;}
.xa2_c00290{left:336.960000pt;}
.xbf_c00290{left:340.000000pt;}
.x73_c00290{left:341.333333pt;}
.x9_c00290{left:343.626667pt;}
.x3d_c00290{left:345.706667pt;}
.x99_c00290{left:346.666667pt;}
.xe2_c00290{left:347.626667pt;}
.x31_c00290{left:349.706667pt;}
.xdd_c00290{left:350.666667pt;}
.x6a_c00290{left:352.960000pt;}
.xed_c00290{left:353.906667pt;}
.x25_c00290{left:355.040000pt;}
.x56_c00290{left:358.293333pt;}
.x2_c00290{left:360.000000pt;}
.xdf_c00290{left:362.293333pt;}
.xa_c00290{left:364.000000pt;}
.x8a_c00290{left:367.040000pt;}
.x5f_c00290{left:368.000000pt;}
.xb4_c00290{left:369.333333pt;}
.xf8_c00290{left:370.666667pt;}
.xf4_c00290{left:372.960000pt;}
.x9b_c00290{left:374.293333pt;}
.x48_c00290{left:376.000000pt;}
.x7c_c00290{left:378.293333pt;}
.xb_c00290{left:379.626667pt;}
.xa8_c00290{left:380.960000pt;}
.xda_c00290{left:383.040000pt;}
.xc0_c00290{left:384.960000pt;}
.x26_c00290{left:388.000000pt;}
.x8b_c00290{left:389.333333pt;}
.x49_c00290{left:390.666667pt;}
.x32_c00290{left:392.000000pt;}
.x57_c00290{left:393.706667pt;}
.x6b_c00290{left:394.666667pt;}
.x18_c00290{left:395.626667pt;}
.xa9_c00290{left:396.960000pt;}
.xee_c00290{left:398.666667pt;}
.x60_c00290{left:401.333333pt;}
.x33_c00290{left:405.333333pt;}
.x7d_c00290{left:406.666667pt;}
.xc4_c00290{left:407.626667pt;}
.xb5_c00290{left:414.293333pt;}
.x27_c00290{left:416.000000pt;}
.x3e_c00290{left:419.040000pt;}
.x74_c00290{left:421.333333pt;}
.xe4_c00290{left:422.666667pt;}
.xc5_c00290{left:424.000000pt;}
.x92_c00290{left:427.626667pt;}
.xa3_c00290{left:429.706667pt;}
.xef_c00290{left:431.040000pt;}
.x28_c00290{left:432.000000pt;}
.x81_c00290{left:433.706667pt;}
.x61_c00290{left:434.666667pt;}
.x58_c00290{left:437.333333pt;}
.x9c_c00290{left:439.626667pt;}
.x34_c00290{left:441.706667pt;}
.xf9_c00290{left:442.666667pt;}
.xc_c00290{left:444.000000pt;}
.xd3_c00290{left:446.293333pt;}
.xc1_c00290{left:447.626667pt;}
.x6c_c00290{left:454.666667pt;}
.x75_c00290{left:456.960000pt;}
.x29_c00290{left:460.000000pt;}
.xd0_c00290{left:461.706667pt;}
.xaa_c00290{left:462.666667pt;}
.x8c_c00290{left:464.000000pt;}
.x19_c00290{left:465.333333pt;}
.xd_c00290{left:468.000000pt;}
.x4a_c00290{left:469.333333pt;}
.x62_c00290{left:472.000000pt;}
.x35_c00290{left:472.960000pt;}
.x82_c00290{left:476.373333pt;}
.xab_c00290{left:478.293333pt;}
.x3f_c00290{left:480.000000pt;}
.x1a_c00290{left:481.706667pt;}
.x6d_c00290{left:483.040000pt;}
.xb6_c00290{left:486.293333pt;}
.x2a_c00290{left:487.626667pt;}
.xf0_c00290{left:489.333333pt;}
.x36_c00290{left:490.666667pt;}
.xba_c00290{left:492.373333pt;}
.x63_c00290{left:498.293333pt;}
.xa4_c00290{left:500.000000pt;}
.x4b_c00290{left:501.333333pt;}
.xc2_c00290{left:503.040000pt;}
.x9d_c00290{left:505.333333pt;}
.x1b_c00290{left:506.666667pt;}
.x93_c00290{left:507.626667pt;}
.x76_c00290{left:511.040000pt;}
.xe0_c00290{left:512.000000pt;}
.x83_c00290{left:516.373333pt;}
.xdb_c00290{left:517.333333pt;}
.xbb_c00290{left:518.293333pt;}
.x37_c00290{left:519.626667pt;}
.xde_c00290{left:521.706667pt;}
.xd8_c00290{left:522.666667pt;}
.x64_c00290{left:526.666667pt;}
.xfa_c00290{left:529.706667pt;}
.x40_c00290{left:532.000000pt;}
.x59_c00290{left:533.333333pt;}
.x6e_c00290{left:535.040000pt;}
.xe_c00290{left:537.333333pt;}
.x4c_c00290{left:539.040000pt;}
.x8d_c00290{left:540.373333pt;}
.xac_c00290{left:542.666667pt;}
.x65_c00290{left:544.000000pt;}
.xe5_c00290{left:546.666667pt;}
.x41_c00290{left:547.626667pt;}
.xf5_c00290{left:548.960000pt;}
.xf_c00290{left:552.000000pt;}
.x1c_c00290{left:552.960000pt;}
.x94_c00290{left:557.706667pt;}
.xbc_c00290{left:561.333333pt;}
.x4d_c00290{left:562.666667pt;}
.x5a_c00290{left:564.000000pt;}
.xc7_c00290{left:566.666667pt;}
.x2b_c00290{left:567.626667pt;}
.xf1_c00290{left:569.333333pt;}
.x77_c00290{left:570.666667pt;}
.x8e_c00290{left:571.626667pt;}
.x9e_c00290{left:573.333333pt;}
.x1d_c00290{left:574.666667pt;}
.x84_c00290{left:577.333333pt;}
.x2c_c00290{left:578.666667pt;}
.x66_c00290{left:580.000000pt;}
.x6f_c00290{left:581.333333pt;}
.xd9_c00290{left:584.373333pt;}
.x38_c00290{left:585.333333pt;}
.x9f_c00290{left:590.293333pt;}
.xad_c00290{left:591.626667pt;}
.xc8_c00290{left:593.706667pt;}
.x85_c00290{left:594.666667pt;}
.xeb_c00290{left:595.626667pt;}
.xbd_c00290{left:596.960000pt;}
.x1e_c00290{left:598.293333pt;}
.xcb_c00290{left:599.626667pt;}
.x39_c00290{left:601.333333pt;}
.x4e_c00290{left:602.293333pt;}
.xb7_c00290{left:603.626667pt;}
.xf7_c00290{left:606.666667pt;}
.x78_c00290{left:611.040000pt;}
.x3a_c00290{left:612.000000pt;}
.xc9_c00290{left:612.960000pt;}
.x10_c00290{left:614.293333pt;}
.x8f_c00290{left:616.960000pt;}
.x4f_c00290{left:618.293333pt;}
.x42_c00290{left:620.373333pt;}
.x5b_c00290{left:624.000000pt;}
.x1_c00290{left:624.960000pt;}
.xae_c00290{left:627.626667pt;}
.x86_c00290{left:629.706667pt;}
.x67_c00290{left:630.666667pt;}
.xf2_c00290{left:632.373333pt;}
.x11_c00290{left:636.000000pt;}
.xaf_c00290{left:645.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7d14a5d0d804d62a30e0ba45.woff2')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m47_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);}
.m9e_c00291{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.m55_c00291{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m61_c00291{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.me4_c00291{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.ma8_c00291{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mff_c00291{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mde_c00291{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m2f_c00291{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m56_c00291{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m105_c00291{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m42_c00291{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.mcc_c00291{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m26_c00291{transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);}
.md0_c00291{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m3c_c00291{transform:matrix(0.379406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379406,0.000000,0.000000,0.250000,0,0);}
.mf5_c00291{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m87_c00291{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.mf4_c00291{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.me0_c00291{transform:matrix(0.386503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386503,0.000000,0.000000,0.250000,0,0);}
.mf7_c00291{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.mf_c00291{transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);}
.mae_c00291{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.ma3_c00291{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mb4_c00291{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mcf_c00291{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m9d_c00291{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.mdb_c00291{transform:matrix(0.397239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397239,0.000000,0.000000,0.250000,0,0);}
.m65_c00291{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m96_c00291{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.mb3_c00291{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m68_c00291{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mbe_c00291{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m63_c00291{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m103_c00291{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m104_c00291{transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);}
.mb7_c00291{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mc4_c00291{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m50_c00291{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.me3_c00291{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.mf2_c00291{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m78_c00291{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m91_c00291{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mac_c00291{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.md5_c00291{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.me1_c00291{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m9_c00291{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.mc2_c00291{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.mf8_c00291{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m67_c00291{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mb8_c00291{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mb6_c00291{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.maf_c00291{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.m1e_c00291{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.mbd_c00291{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m4d_c00291{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m8c_c00291{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m31_c00291{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m46_c00291{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mdf_c00291{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m9f_c00291{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m102_c00291{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.m51_c00291{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m6_c00291{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m100_c00291{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.md2_c00291{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m81_c00291{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m3e_c00291{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.mdc_c00291{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.mc5_c00291{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.md9_c00291{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m30_c00291{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.md1_c00291{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.me6_c00291{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m88_c00291{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m60_c00291{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m13_c00291{transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);}
.meb_c00291{transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);}
.m82_c00291{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.ma7_c00291{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m4a_c00291{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.mda_c00291{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m2b_c00291{transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);}
.m7b_c00291{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m62_c00291{transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);}
.m43_c00291{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m2a_c00291{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m8f_c00291{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.mc1_c00291{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m7a_c00291{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m0_c00291{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.mdd_c00291{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mee_c00291{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m22_c00291{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m77_c00291{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m3f_c00291{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.me9_c00291{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m86_c00291{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.m74_c00291{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m7c_c00291{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.mfb_c00291{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m34_c00291{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m24_c00291{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m2c_c00291{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.mea_c00291{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mfe_c00291{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.ma5_c00291{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.ma0_c00291{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.mca_c00291{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mbb_c00291{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m58_c00291{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m33_c00291{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mb9_c00291{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m101_c00291{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.mb_c00291{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mad_c00291{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m54_c00291{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m94_c00291{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m3a_c00291{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m35_c00291{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.mcb_c00291{transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);}
.m1f_c00291{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);}
.m6b_c00291{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mc8_c00291{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mbf_c00291{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m4c_c00291{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.md7_c00291{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m14_c00291{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m3d_c00291{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.ma6_c00291{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.mfa_c00291{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m6e_c00291{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m17_c00291{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m53_c00291{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m6a_c00291{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m1d_c00291{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.m93_c00291{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m7f_c00291{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m52_c00291{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.md4_c00291{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.maa_c00291{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.mcd_c00291{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mef_c00291{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m32_c00291{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);}
.mfc_c00291{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m1a_c00291{transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);}
.m71_c00291{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mf3_c00291{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m39_c00291{transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);}
.mb2_c00291{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m70_c00291{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m83_c00291{transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);}
.m5_c00291{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m9a_c00291{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.ma1_c00291{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m5e_c00291{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mc0_c00291{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m6d_c00291{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m90_c00291{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m4_c00291{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m72_c00291{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m8e_c00291{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mab_c00291{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m9b_c00291{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);}
.m2e_c00291{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m3_c00291{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m59_c00291{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m5c_c00291{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m10_c00291{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m4b_c00291{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.md8_c00291{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m80_c00291{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.ma9_c00291{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mba_c00291{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mc6_c00291{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.me8_c00291{transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);}
.m4e_c00291{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m4f_c00291{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m66_c00291{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m73_c00291{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m64_c00291{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mf6_c00291{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m27_c00291{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m7_c00291{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m5a_c00291{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mf0_c00291{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);}
.mc9_c00291{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.me2_c00291{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m12_c00291{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m15_c00291{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.md3_c00291{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mbc_c00291{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m44_c00291{transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);}
.m5d_c00291{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m9c_c00291{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m8a_c00291{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mb5_c00291{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m6f_c00291{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mfd_c00291{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.med_c00291{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m23_c00291{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.me_c00291{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m21_c00291{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.me5_c00291{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m84_c00291{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m7e_c00291{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m40_c00291{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.mc7_c00291{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.ma2_c00291{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mec_c00291{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m48_c00291{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);}
.m7d_c00291{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mc_c00291{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m98_c00291{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m49_c00291{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mb1_c00291{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m6c_c00291{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m89_c00291{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m1b_c00291{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.md6_c00291{transform:matrix(0.620994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620994,0.000000,0.000000,0.250000,0,0);}
.m97_c00291{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_c00291{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.m29_c00291{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m25_c00291{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m8d_c00291{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m20_c00291{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m5b_c00291{transform:matrix(0.637821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637821,0.000000,0.000000,0.250000,0,0);}
.m8_c00291{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.mb0_c00291{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m1_c00291{transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);}
.m16_c00291{transform:matrix(0.652206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652206,0.000000,0.000000,0.250000,0,0);}
.mce_c00291{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.md_c00291{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.mf1_c00291{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m18_c00291{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m69_c00291{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m36_c00291{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m38_c00291{transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);}
.m2d_c00291{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m8b_c00291{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m11_c00291{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);}
.m41_c00291{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.me7_c00291{transform:matrix(0.714706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.714706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.714706,0.000000,0.000000,0.250000,0,0);}
.m76_c00291{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m75_c00291{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m79_c00291{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m57_c00291{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m19_c00291{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m5f_c00291{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m99_c00291{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mc3_c00291{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m95_c00291{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.m85_c00291{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m92_c00291{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.ma4_c00291{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.m106_c00291{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.ma_c00291{transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);}
.m2_c00291{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m1c_c00291{transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);}
.m45_c00291{transform:matrix(0.932819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.932819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.932819,0.000000,0.000000,0.250000,0,0);}
.m28_c00291{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.mf9_c00291{transform:matrix(1.165865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.165865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.165865,0.000000,0.000000,0.250000,0,0);}
.m37_c00291{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,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;}
}
.ws1_c00291{word-spacing:0.000000px;}
.ws0_c00291{word-spacing:0.548661px;}
.fc0_c00291{color:transparent;}
.fs6_c00291{font-size:13.620000px;}
.fs4_c00291{font-size:18.720000px;}
.fs1_c00291{font-size:20.400000px;}
.fs7_c00291{font-size:22.140000px;}
.fs2_c00291{font-size:25.500000px;}
.fs0_c00291{font-size:28.920000px;}
.fs5_c00291{font-size:32.340000px;}
.fs3_c00291{font-size:35.700000px;}
.fs8_c00291{font-size:39.120000px;}
.y0_c00291{bottom:0.000000px;}
.ycf_c00291{bottom:259.245000px;}
.yd0_c00291{bottom:261.630000px;}
.ycb_c00291{bottom:277.905000px;}
.yce_c00291{bottom:278.745000px;}
.ycd_c00291{bottom:279.405000px;}
.yca_c00291{bottom:280.245000px;}
.ycc_c00291{bottom:281.325000px;}
.yc9_c00291{bottom:282.405000px;}
.yc4_c00291{bottom:298.905000px;}
.yc6_c00291{bottom:299.745000px;}
.yc7_c00291{bottom:300.825000px;}
.yc8_c00291{bottom:301.905000px;}
.yc5_c00291{bottom:302.130000px;}
.yc0_c00291{bottom:319.245000px;}
.yc3_c00291{bottom:320.325000px;}
.yc1_c00291{bottom:321.405000px;}
.yc2_c00291{bottom:321.630000px;}
.ybd_c00291{bottom:338.745000px;}
.ybc_c00291{bottom:339.405000px;}
.ybe_c00291{bottom:340.905000px;}
.ybf_c00291{bottom:341.970000px;}
.yb5_c00291{bottom:357.825000px;}
.yba_c00291{bottom:358.470000px;}
.yb9_c00291{bottom:358.905000px;}
.ybb_c00291{bottom:359.745000px;}
.yb8_c00291{bottom:359.970000px;}
.yb6_c00291{bottom:360.825000px;}
.yb7_c00291{bottom:361.905000px;}
.yb3_c00291{bottom:379.245000px;}
.yb4_c00291{bottom:380.550000px;}
.yb1_c00291{bottom:381.405000px;}
.yb2_c00291{bottom:382.470000px;}
.yb0_c00291{bottom:397.245000px;}
.yae_c00291{bottom:398.745000px;}
.yad_c00291{bottom:400.905000px;}
.yaf_c00291{bottom:401.970000px;}
.yac_c00291{bottom:417.180000px;}
.yaa_c00291{bottom:417.405000px;}
.yab_c00291{bottom:418.245000px;}
.ya8_c00291{bottom:420.405000px;}
.ya9_c00291{bottom:421.470000px;}
.ya6_c00291{bottom:436.680000px;}
.ya0_c00291{bottom:436.905000px;}
.ya7_c00291{bottom:438.825000px;}
.ya1_c00291{bottom:439.245000px;}
.ya4_c00291{bottom:439.905000px;}
.ya5_c00291{bottom:440.130000px;}
.ya3_c00291{bottom:440.970000px;}
.ya2_c00291{bottom:441.405000px;}
.y9b_c00291{bottom:458.325000px;}
.y9c_c00291{bottom:458.745000px;}
.y9e_c00291{bottom:459.405000px;}
.y9d_c00291{bottom:459.630000px;}
.y9f_c00291{bottom:460.470000px;}
.y9a_c00291{bottom:460.905000px;}
.y96_c00291{bottom:478.245000px;}
.y97_c00291{bottom:479.130000px;}
.y98_c00291{bottom:479.325000px;}
.y99_c00291{bottom:479.970000px;}
.y95_c00291{bottom:480.405000px;}
.y93_c00291{bottom:497.325000px;}
.y94_c00291{bottom:497.745000px;}
.y92_c00291{bottom:499.470000px;}
.y91_c00291{bottom:499.905000px;}
.y90_c00291{bottom:516.180000px;}
.y8f_c00291{bottom:517.245000px;}
.y8e_c00291{bottom:518.970000px;}
.y8d_c00291{bottom:519.405000px;}
.y8c_c00291{bottom:535.905000px;}
.y8a_c00291{bottom:536.745000px;}
.y88_c00291{bottom:536.970000px;}
.y8b_c00291{bottom:537.825000px;}
.y89_c00291{bottom:538.470000px;}
.y87_c00291{bottom:538.905000px;}
.y86_c00291{bottom:539.970000px;}
.y84_c00291{bottom:556.245000px;}
.y83_c00291{bottom:556.470000px;}
.y82_c00291{bottom:558.405000px;}
.y85_c00291{bottom:558.630000px;}
.y80_c00291{bottom:575.745000px;}
.y7e_c00291{bottom:577.245000px;}
.y7d_c00291{bottom:577.905000px;}
.y7f_c00291{bottom:578.130000px;}
.y81_c00291{bottom:578.970000px;}
.y7c_c00291{bottom:579.405000px;}
.y7a_c00291{bottom:595.245000px;}
.y7b_c00291{bottom:596.745000px;}
.y79_c00291{bottom:597.405000px;}
.y74_c00291{bottom:614.745000px;}
.y78_c00291{bottom:615.825000px;}
.y75_c00291{bottom:616.245000px;}
.y73_c00291{bottom:616.905000px;}
.y76_c00291{bottom:617.130000px;}
.y77_c00291{bottom:618.405000px;}
.y70_c00291{bottom:635.745000px;}
.y72_c00291{bottom:636.630000px;}
.y71_c00291{bottom:637.905000px;}
.y6a_c00291{bottom:654.405000px;}
.y6f_c00291{bottom:655.245000px;}
.y6d_c00291{bottom:655.470000px;}
.y6b_c00291{bottom:656.325000px;}
.y69_c00291{bottom:657.405000px;}
.y6e_c00291{bottom:657.630000px;}
.y6c_c00291{bottom:658.470000px;}
.y67_c00291{bottom:673.905000px;}
.y64_c00291{bottom:674.325000px;}
.y65_c00291{bottom:674.745000px;}
.y68_c00291{bottom:675.630000px;}
.y63_c00291{bottom:676.905000px;}
.y66_c00291{bottom:677.970000px;}
.y5f_c00291{bottom:694.245000px;}
.y5e_c00291{bottom:695.130000px;}
.y60_c00291{bottom:696.405000px;}
.y62_c00291{bottom:696.630000px;}
.y61_c00291{bottom:697.470000px;}
.y5d_c00291{bottom:713.745000px;}
.y5c_c00291{bottom:714.180000px;}
.y58_c00291{bottom:715.245000px;}
.y5b_c00291{bottom:715.905000px;}
.y59_c00291{bottom:716.970000px;}
.y5a_c00291{bottom:717.405000px;}
.y55_c00291{bottom:734.745000px;}
.y56_c00291{bottom:735.630000px;}
.y57_c00291{bottom:736.470000px;}
.y54_c00291{bottom:736.905000px;}
.y53_c00291{bottom:754.245000px;}
.y50_c00291{bottom:755.130000px;}
.y52_c00291{bottom:755.325000px;}
.y51_c00291{bottom:756.405000px;}
.y4c_c00291{bottom:773.745000px;}
.y4f_c00291{bottom:774.630000px;}
.y4e_c00291{bottom:774.825000px;}
.y4b_c00291{bottom:775.905000px;}
.y4d_c00291{bottom:776.970000px;}
.y48_c00291{bottom:793.245000px;}
.y49_c00291{bottom:794.130000px;}
.y4a_c00291{bottom:795.405000px;}
.y47_c00291{bottom:811.905000px;}
.y44_c00291{bottom:812.325000px;}
.y46_c00291{bottom:812.745000px;}
.y45_c00291{bottom:813.825000px;}
.y43_c00291{bottom:814.905000px;}
.y42_c00291{bottom:815.130000px;}
.y40_c00291{bottom:832.245000px;}
.y41_c00291{bottom:833.130000px;}
.y3f_c00291{bottom:833.325000px;}
.y3e_c00291{bottom:834.405000px;}
.y3b_c00291{bottom:851.745000px;}
.y3a_c00291{bottom:853.905000px;}
.y3d_c00291{bottom:854.130000px;}
.y3c_c00291{bottom:854.970000px;}
.y38_c00291{bottom:872.745000px;}
.y36_c00291{bottom:873.405000px;}
.y37_c00291{bottom:873.630000px;}
.y39_c00291{bottom:874.905000px;}
.y31_c00291{bottom:890.745000px;}
.y33_c00291{bottom:890.970000px;}
.y34_c00291{bottom:892.245000px;}
.y32_c00291{bottom:892.905000px;}
.y35_c00291{bottom:893.130000px;}
.y30_c00291{bottom:910.245000px;}
.y2c_c00291{bottom:911.745000px;}
.y2e_c00291{bottom:913.470000px;}
.y2f_c00291{bottom:913.905000px;}
.y2d_c00291{bottom:916.275000px;}
.y29_c00291{bottom:942.825000px;}
.y25_c00291{bottom:943.050000px;}
.y26_c00291{bottom:943.905000px;}
.y28_c00291{bottom:944.130000px;}
.y27_c00291{bottom:944.970000px;}
.y2a_c00291{bottom:945.195000px;}
.y2b_c00291{bottom:946.050000px;}
.y24_c00291{bottom:957.405000px;}
.y22_c00291{bottom:957.825000px;}
.y23_c00291{bottom:958.905000px;}
.y1c_c00291{bottom:973.050000px;}
.y1d_c00291{bottom:973.905000px;}
.y1e_c00291{bottom:974.130000px;}
.y21_c00291{bottom:974.970000px;}
.y1f_c00291{bottom:975.195000px;}
.y20_c00291{bottom:976.050000px;}
.y1a_c00291{bottom:986.325000px;}
.y1b_c00291{bottom:987.405000px;}
.y19_c00291{bottom:988.470000px;}
.y18_c00291{bottom:988.695000px;}
.y13_c00291{bottom:1001.550000px;}
.y14_c00291{bottom:1002.825000px;}
.y16_c00291{bottom:1003.695000px;}
.y12_c00291{bottom:1003.905000px;}
.y11_c00291{bottom:1004.130000px;}
.y17_c00291{bottom:1004.550000px;}
.y15_c00291{bottom:1004.970000px;}
.yc_c00291{bottom:1017.405000px;}
.yd_c00291{bottom:1017.630000px;}
.ye_c00291{bottom:1018.470000px;}
.yf_c00291{bottom:1019.130000px;}
.y10_c00291{bottom:1019.550000px;}
.yb_c00291{bottom:1031.325000px;}
.y7_c00291{bottom:1032.405000px;}
.y6_c00291{bottom:1032.630000px;}
.y8_c00291{bottom:1033.050000px;}
.ya_c00291{bottom:1033.470000px;}
.y9_c00291{bottom:1034.550000px;}
.y5_c00291{bottom:1058.745000px;}
.y4_c00291{bottom:1060.905000px;}
.y3_c00291{bottom:1061.970000px;}
.y2_c00291{bottom:1099.050000px;}
.y1_c00291{bottom:1099.905000px;}
.h7_c00291{height:16.752334px;}
.h5_c00291{height:23.025234px;}
.h2_c00291{height:25.091602px;}
.h8_c00291{height:27.231768px;}
.h3_c00291{height:31.364502px;}
.h1_c00291{height:35.571035px;}
.h6_c00291{height:39.777568px;}
.h4_c00291{height:43.910303px;}
.h9_c00291{height:48.116836px;}
.h0_c00291{height:1335.000000px;}
.w0_c00291{width:880.500000px;}
.x0_c00291{left:0.000000px;}
.xf9_c00291{left:148.500000px;}
.xb6_c00291{left:150.000000px;}
.x4e_c00291{left:151.080000px;}
.x1_c00291{left:152.580000px;}
.x2d_c00291{left:163.500000px;}
.xe3_c00291{left:165.000000px;}
.x22_c00291{left:166.500000px;}
.xb_c00291{left:168.000000px;}
.x3_c00291{left:169.500000px;}
.x76_c00291{left:172.920000px;}
.x8c_c00291{left:174.420000px;}
.xa4_c00291{left:177.420000px;}
.x4_c00291{left:180.000000px;}
.x62_c00291{left:181.500000px;}
.x31_c00291{left:183.000000px;}
.xc_c00291{left:184.080000px;}
.x104_c00291{left:186.000000px;}
.xae_c00291{left:187.920000px;}
.x18_c00291{left:189.000000px;}
.x58_c00291{left:191.580000px;}
.xbb_c00291{left:193.920000px;}
.xb7_c00291{left:195.000000px;}
.xdd_c00291{left:196.500000px;}
.x2e_c00291{left:197.580000px;}
.x77_c00291{left:199.500000px;}
.x8d_c00291{left:201.000000px;}
.x10c_c00291{left:203.580000px;}
.x19_c00291{left:207.000000px;}
.x111_c00291{left:208.920000px;}
.x59_c00291{left:211.080000px;}
.x3e_c00291{left:212.580000px;}
.xaf_c00291{left:214.500000px;}
.x5_c00291{left:217.080000px;}
.x1a_c00291{left:219.000000px;}
.x7d_c00291{left:223.080000px;}
.x9c_c00291{left:225.000000px;}
.x2f_c00291{left:226.080000px;}
.xc4_c00291{left:228.000000px;}
.xa5_c00291{left:231.000000px;}
.xf2_c00291{left:232.500000px;}
.x8e_c00291{left:234.420000px;}
.x6d_c00291{left:237.000000px;}
.x85_c00291{left:239.580000px;}
.x4f_c00291{left:242.580000px;}
.xe4_c00291{left:244.080000px;}
.x23_c00291{left:246.000000px;}
.x63_c00291{left:247.080000px;}
.xd_c00291{left:249.420000px;}
.x92_c00291{left:251.580000px;}
.x32_c00291{left:252.645000px;}
.x1b_c00291{left:256.500000px;}
.x102_c00291{left:258.000000px;}
.x107_c00291{left:259.500000px;}
.xde_c00291{left:261.000000px;}
.xe5_c00291{left:264.420000px;}
.x50_c00291{left:265.500000px;}
.x30_c00291{left:268.500000px;}
.x9d_c00291{left:269.580000px;}
.xa6_c00291{left:271.500000px;}
.x8f_c00291{left:274.500000px;}
.x45_c00291{left:276.000000px;}
.xd4_c00291{left:277.080000px;}
.x112_c00291{left:279.000000px;}
.xe_c00291{left:280.500000px;}
.x86_c00291{left:283.500000px;}
.x24_c00291{left:285.000000px;}
.xee_c00291{left:287.580000px;}
.x6_c00291{left:289.920000px;}
.x1c_c00291{left:291.000000px;}
.xd7_c00291{left:292.080000px;}
.x105_c00291{left:294.000000px;}
.x33_c00291{left:296.580000px;}
.x6e_c00291{left:299.580000px;}
.x1d_c00291{left:301.500000px;}
.x64_c00291{left:303.000000px;}
.x10b_c00291{left:304.080000px;}
.x5a_c00291{left:306.420000px;}
.x46_c00291{left:310.500000px;}
.xd8_c00291{left:312.420000px;}
.x3f_c00291{left:313.920000px;}
.xf3_c00291{left:315.000000px;}
.x7_c00291{left:316.920000px;}
.x90_c00291{left:318.000000px;}
.xb0_c00291{left:319.920000px;}
.xbc_c00291{left:322.080000px;}
.xe6_c00291{left:324.000000px;}
.xdf_c00291{left:325.080000px;}
.x87_c00291{left:326.580000px;}
.xb8_c00291{left:328.080000px;}
.xcd_c00291{left:331.500000px;}
.x5b_c00291{left:333.420000px;}
.xf_c00291{left:334.500000px;}
.x40_c00291{left:336.000000px;}
.xe0_c00291{left:338.580000px;}
.xbd_c00291{left:340.920000px;}
.x91_c00291{left:343.920000px;}
.x6f_c00291{left:345.000000px;}
.xce_c00291{left:348.420000px;}
.x9e_c00291{left:350.580000px;}
.x47_c00291{left:352.500000px;}
.x93_c00291{left:354.000000px;}
.x34_c00291{left:357.000000px;}
.x25_c00291{left:358.500000px;}
.x1e_c00291{left:359.580000px;}
.x78_c00291{left:361.500000px;}
.x70_c00291{left:363.420000px;}
.xa7_c00291{left:364.500000px;}
.xc5_c00291{left:366.000000px;}
.x88_c00291{left:367.080000px;}
.xbe_c00291{left:369.000000px;}
.x65_c00291{left:370.920000px;}
.xfa_c00291{left:373.080000px;}
.xd9_c00291{left:375.000000px;}
.xe7_c00291{left:378.000000px;}
.x7e_c00291{left:379.500000px;}
.x94_c00291{left:381.000000px;}
.x41_c00291{left:382.500000px;}
.x8_c00291{left:384.000000px;}
.xc6_c00291{left:387.420000px;}
.x35_c00291{left:388.500000px;}
.x71_c00291{left:390.000000px;}
.x10d_c00291{left:391.500000px;}
.x9f_c00291{left:394.500000px;}
.x26_c00291{left:395.580000px;}
.x100_c00291{left:397.080000px;}
.x1f_c00291{left:403.500000px;}
.x51_c00291{left:405.000000px;}
.x2_c00291{left:406.500000px;}
.xbf_c00291{left:409.080000px;}
.x95_c00291{left:411.000000px;}
.x10_c00291{left:412.500000px;}
.x48_c00291{left:413.580000px;}
.x7f_c00291{left:415.500000px;}
.xfe_c00291{left:416.580000px;}
.xb1_c00291{left:420.000000px;}
.x79_c00291{left:421.920000px;}
.xcf_c00291{left:424.500000px;}
.x27_c00291{left:426.000000px;}
.xa8_c00291{left:427.080000px;}
.x5c_c00291{left:429.420000px;}
.x42_c00291{left:430.500000px;}
.x20_c00291{left:432.420000px;}
.x80_c00291{left:435.000000px;}
.xfb_c00291{left:436.500000px;}
.x36_c00291{left:440.580000px;}
.x66_c00291{left:442.500000px;}
.xe1_c00291{left:443.580000px;}
.x9_c00291{left:447.000000px;}
.xff_c00291{left:449.580000px;}
.xc7_c00291{left:451.080000px;}
.x37_c00291{left:453.420000px;}
.x108_c00291{left:454.920000px;}
.x5d_c00291{left:456.000000px;}
.x11_c00291{left:457.920000px;}
.x21_c00291{left:459.000000px;}
.xd0_c00291{left:460.500000px;}
.xeb_c00291{left:465.000000px;}
.x52_c00291{left:467.580000px;}
.x96_c00291{left:470.580000px;}
.x10e_c00291{left:472.500000px;}
.x7a_c00291{left:474.000000px;}
.x12_c00291{left:475.080000px;}
.x49_c00291{left:478.500000px;}
.xa9_c00291{left:481.500000px;}
.x81_c00291{left:483.420000px;}
.xa_c00291{left:484.500000px;}
.x28_c00291{left:486.645000px;}
.x53_c00291{left:489.420000px;}
.x38_c00291{left:490.500000px;}
.xf4_c00291{left:493.500000px;}
.x67_c00291{left:494.580000px;}
.xc8_c00291{left:496.500000px;}
.x101_c00291{left:498.000000px;}
.x5e_c00291{left:499.500000px;}
.x43_c00291{left:501.000000px;}
.xc0_c00291{left:503.580000px;}
.x97_c00291{left:506.580000px;}
.xa0_c00291{left:508.500000px;}
.xec_c00291{left:510.420000px;}
.x68_c00291{left:513.000000px;}
.x13_c00291{left:517.080000px;}
.xd5_c00291{left:520.500000px;}
.xaa_c00291{left:522.420000px;}
.xd1_c00291{left:523.500000px;}
.x29_c00291{left:524.580000px;}
.x98_c00291{left:526.500000px;}
.xb2_c00291{left:528.000000px;}
.x39_c00291{left:529.500000px;}
.x89_c00291{left:532.500000px;}
.xe8_c00291{left:533.580000px;}
.x44_c00291{left:535.500000px;}
.xda_c00291{left:537.000000px;}
.x69_c00291{left:538.500000px;}
.x3a_c00291{left:543.420000px;}
.xe2_c00291{left:544.920000px;}
.xab_c00291{left:549.000000px;}
.xa1_c00291{left:550.500000px;}
.x72_c00291{left:552.420000px;}
.x82_c00291{left:555.000000px;}
.x4a_c00291{left:556.500000px;}
.x14_c00291{left:558.000000px;}
.x10f_c00291{left:559.500000px;}
.xd6_c00291{left:561.420000px;}
.x2a_c00291{left:562.500000px;}
.xc9_c00291{left:565.500000px;}
.xf5_c00291{left:568.500000px;}
.x7b_c00291{left:570.000000px;}
.xb3_c00291{left:574.080000px;}
.x5f_c00291{left:576.420000px;}
.x6a_c00291{left:577.500000px;}
.xc1_c00291{left:579.000000px;}
.x3b_c00291{left:580.500000px;}
.x4b_c00291{left:582.000000px;}
.xd2_c00291{left:583.500000px;}
.x54_c00291{left:585.420000px;}
.xca_c00291{left:586.920000px;}
.x83_c00291{left:588.420000px;}
.x99_c00291{left:589.500000px;}
.xb4_c00291{left:591.000000px;}
.x113_c00291{left:593.580000px;}
.xc2_c00291{left:595.080000px;}
.xdb_c00291{left:596.580000px;}
.xef_c00291{left:600.000000px;}
.x60_c00291{left:602.580000px;}
.xac_c00291{left:604.500000px;}
.xed_c00291{left:606.000000px;}
.xe9_c00291{left:609.000000px;}
.x73_c00291{left:610.500000px;}
.x2b_c00291{left:612.000000px;}
.xcb_c00291{left:613.920000px;}
.x84_c00291{left:615.000000px;}
.x8a_c00291{left:616.500000px;}
.xfc_c00291{left:618.000000px;}
.xad_c00291{left:619.500000px;}
.x103_c00291{left:621.000000px;}
.x55_c00291{left:622.920000px;}
.xa2_c00291{left:624.000000px;}
.xf6_c00291{left:626.580000px;}
.x15_c00291{left:630.000000px;}
.x4c_c00291{left:631.080000px;}
.x9a_c00291{left:633.000000px;}
.x109_c00291{left:634.080000px;}
.x74_c00291{left:636.000000px;}
.xb9_c00291{left:639.000000px;}
.x8b_c00291{left:640.920000px;}
.x3c_c00291{left:642.420000px;}
.xc3_c00291{left:643.500000px;}
.x6b_c00291{left:645.000000px;}
.xf7_c00291{left:646.920000px;}
.x56_c00291{left:649.080000px;}
.x110_c00291{left:654.000000px;}
.x7c_c00291{left:655.080000px;}
.xf0_c00291{left:660.000000px;}
.x61_c00291{left:662.580000px;}
.x9b_c00291{left:669.000000px;}
.xdc_c00291{left:670.500000px;}
.x4d_c00291{left:671.580000px;}
.x75_c00291{left:673.920000px;}
.x106_c00291{left:678.000000px;}
.x2c_c00291{left:679.080000px;}
.xb5_c00291{left:681.420000px;}
.xf1_c00291{left:682.500000px;}
.x16_c00291{left:685.500000px;}
.xf8_c00291{left:687.000000px;}
.xa3_c00291{left:688.500000px;}
.x57_c00291{left:690.000000px;}
.xd3_c00291{left:691.500000px;}
.xfd_c00291{left:693.420000px;}
.xea_c00291{left:694.500000px;}
.x3d_c00291{left:696.000000px;}
.x6c_c00291{left:697.920000px;}
.x10a_c00291{left:703.080000px;}
.xcc_c00291{left:706.920000px;}
.xba_c00291{left:708.420000px;}
.x17_c00291{left:718.920000px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.ls0_c00291{letter-spacing:0.000000pt;}
.ws1_c00291{word-spacing:0.000000pt;}
.ws0_c00291{word-spacing:0.487699pt;}
.fs6_c00291{font-size:12.106667pt;}
.fs4_c00291{font-size:16.640000pt;}
.fs1_c00291{font-size:18.133333pt;}
.fs7_c00291{font-size:19.680000pt;}
.fs2_c00291{font-size:22.666667pt;}
.fs0_c00291{font-size:25.706667pt;}
.fs5_c00291{font-size:28.746667pt;}
.fs3_c00291{font-size:31.733333pt;}
.fs8_c00291{font-size:34.773333pt;}
.y0_c00291{bottom:0.000000pt;}
.ycf_c00291{bottom:230.440000pt;}
.yd0_c00291{bottom:232.560000pt;}
.ycb_c00291{bottom:247.026667pt;}
.yce_c00291{bottom:247.773333pt;}
.ycd_c00291{bottom:248.360000pt;}
.yca_c00291{bottom:249.106667pt;}
.ycc_c00291{bottom:250.066667pt;}
.yc9_c00291{bottom:251.026667pt;}
.yc4_c00291{bottom:265.693333pt;}
.yc6_c00291{bottom:266.440000pt;}
.yc7_c00291{bottom:267.400000pt;}
.yc8_c00291{bottom:268.360000pt;}
.yc5_c00291{bottom:268.560000pt;}
.yc0_c00291{bottom:283.773333pt;}
.yc3_c00291{bottom:284.733333pt;}
.yc1_c00291{bottom:285.693333pt;}
.yc2_c00291{bottom:285.893333pt;}
.ybd_c00291{bottom:301.106667pt;}
.ybc_c00291{bottom:301.693333pt;}
.ybe_c00291{bottom:303.026667pt;}
.ybf_c00291{bottom:303.973333pt;}
.yb5_c00291{bottom:318.066667pt;}
.yba_c00291{bottom:318.640000pt;}
.yb9_c00291{bottom:319.026667pt;}
.ybb_c00291{bottom:319.773333pt;}
.yb8_c00291{bottom:319.973333pt;}
.yb6_c00291{bottom:320.733333pt;}
.yb7_c00291{bottom:321.693333pt;}
.yb3_c00291{bottom:337.106667pt;}
.yb4_c00291{bottom:338.266667pt;}
.yb1_c00291{bottom:339.026667pt;}
.yb2_c00291{bottom:339.973333pt;}
.yb0_c00291{bottom:353.106667pt;}
.yae_c00291{bottom:354.440000pt;}
.yad_c00291{bottom:356.360000pt;}
.yaf_c00291{bottom:357.306667pt;}
.yac_c00291{bottom:370.826667pt;}
.yaa_c00291{bottom:371.026667pt;}
.yab_c00291{bottom:371.773333pt;}
.ya8_c00291{bottom:373.693333pt;}
.ya9_c00291{bottom:374.640000pt;}
.ya6_c00291{bottom:388.160000pt;}
.ya0_c00291{bottom:388.360000pt;}
.ya7_c00291{bottom:390.066667pt;}
.ya1_c00291{bottom:390.440000pt;}
.ya4_c00291{bottom:391.026667pt;}
.ya5_c00291{bottom:391.226667pt;}
.ya3_c00291{bottom:391.973333pt;}
.ya2_c00291{bottom:392.360000pt;}
.y9b_c00291{bottom:407.400000pt;}
.y9c_c00291{bottom:407.773333pt;}
.y9e_c00291{bottom:408.360000pt;}
.y9d_c00291{bottom:408.560000pt;}
.y9f_c00291{bottom:409.306667pt;}
.y9a_c00291{bottom:409.693333pt;}
.y96_c00291{bottom:425.106667pt;}
.y97_c00291{bottom:425.893333pt;}
.y98_c00291{bottom:426.066667pt;}
.y99_c00291{bottom:426.640000pt;}
.y95_c00291{bottom:427.026667pt;}
.y93_c00291{bottom:442.066667pt;}
.y94_c00291{bottom:442.440000pt;}
.y92_c00291{bottom:443.973333pt;}
.y91_c00291{bottom:444.360000pt;}
.y90_c00291{bottom:458.826667pt;}
.y8f_c00291{bottom:459.773333pt;}
.y8e_c00291{bottom:461.306667pt;}
.y8d_c00291{bottom:461.693333pt;}
.y8c_c00291{bottom:476.360000pt;}
.y8a_c00291{bottom:477.106667pt;}
.y88_c00291{bottom:477.306667pt;}
.y8b_c00291{bottom:478.066667pt;}
.y89_c00291{bottom:478.640000pt;}
.y87_c00291{bottom:479.026667pt;}
.y86_c00291{bottom:479.973333pt;}
.y84_c00291{bottom:494.440000pt;}
.y83_c00291{bottom:494.640000pt;}
.y82_c00291{bottom:496.360000pt;}
.y85_c00291{bottom:496.560000pt;}
.y80_c00291{bottom:511.773333pt;}
.y7e_c00291{bottom:513.106667pt;}
.y7d_c00291{bottom:513.693333pt;}
.y7f_c00291{bottom:513.893333pt;}
.y81_c00291{bottom:514.640000pt;}
.y7c_c00291{bottom:515.026667pt;}
.y7a_c00291{bottom:529.106667pt;}
.y7b_c00291{bottom:530.440000pt;}
.y79_c00291{bottom:531.026667pt;}
.y74_c00291{bottom:546.440000pt;}
.y78_c00291{bottom:547.400000pt;}
.y75_c00291{bottom:547.773333pt;}
.y73_c00291{bottom:548.360000pt;}
.y76_c00291{bottom:548.560000pt;}
.y77_c00291{bottom:549.693333pt;}
.y70_c00291{bottom:565.106667pt;}
.y72_c00291{bottom:565.893333pt;}
.y71_c00291{bottom:567.026667pt;}
.y6a_c00291{bottom:581.693333pt;}
.y6f_c00291{bottom:582.440000pt;}
.y6d_c00291{bottom:582.640000pt;}
.y6b_c00291{bottom:583.400000pt;}
.y69_c00291{bottom:584.360000pt;}
.y6e_c00291{bottom:584.560000pt;}
.y6c_c00291{bottom:585.306667pt;}
.y67_c00291{bottom:599.026667pt;}
.y64_c00291{bottom:599.400000pt;}
.y65_c00291{bottom:599.773333pt;}
.y68_c00291{bottom:600.560000pt;}
.y63_c00291{bottom:601.693333pt;}
.y66_c00291{bottom:602.640000pt;}
.y5f_c00291{bottom:617.106667pt;}
.y5e_c00291{bottom:617.893333pt;}
.y60_c00291{bottom:619.026667pt;}
.y62_c00291{bottom:619.226667pt;}
.y61_c00291{bottom:619.973333pt;}
.y5d_c00291{bottom:634.440000pt;}
.y5c_c00291{bottom:634.826667pt;}
.y58_c00291{bottom:635.773333pt;}
.y5b_c00291{bottom:636.360000pt;}
.y59_c00291{bottom:637.306667pt;}
.y5a_c00291{bottom:637.693333pt;}
.y55_c00291{bottom:653.106667pt;}
.y56_c00291{bottom:653.893333pt;}
.y57_c00291{bottom:654.640000pt;}
.y54_c00291{bottom:655.026667pt;}
.y53_c00291{bottom:670.440000pt;}
.y50_c00291{bottom:671.226667pt;}
.y52_c00291{bottom:671.400000pt;}
.y51_c00291{bottom:672.360000pt;}
.y4c_c00291{bottom:687.773333pt;}
.y4f_c00291{bottom:688.560000pt;}
.y4e_c00291{bottom:688.733333pt;}
.y4b_c00291{bottom:689.693333pt;}
.y4d_c00291{bottom:690.640000pt;}
.y48_c00291{bottom:705.106667pt;}
.y49_c00291{bottom:705.893333pt;}
.y4a_c00291{bottom:707.026667pt;}
.y47_c00291{bottom:721.693333pt;}
.y44_c00291{bottom:722.066667pt;}
.y46_c00291{bottom:722.440000pt;}
.y45_c00291{bottom:723.400000pt;}
.y43_c00291{bottom:724.360000pt;}
.y42_c00291{bottom:724.560000pt;}
.y40_c00291{bottom:739.773333pt;}
.y41_c00291{bottom:740.560000pt;}
.y3f_c00291{bottom:740.733333pt;}
.y3e_c00291{bottom:741.693333pt;}
.y3b_c00291{bottom:757.106667pt;}
.y3a_c00291{bottom:759.026667pt;}
.y3d_c00291{bottom:759.226667pt;}
.y3c_c00291{bottom:759.973333pt;}
.y38_c00291{bottom:775.773333pt;}
.y36_c00291{bottom:776.360000pt;}
.y37_c00291{bottom:776.560000pt;}
.y39_c00291{bottom:777.693333pt;}
.y31_c00291{bottom:791.773333pt;}
.y33_c00291{bottom:791.973333pt;}
.y34_c00291{bottom:793.106667pt;}
.y32_c00291{bottom:793.693333pt;}
.y35_c00291{bottom:793.893333pt;}
.y30_c00291{bottom:809.106667pt;}
.y2c_c00291{bottom:810.440000pt;}
.y2e_c00291{bottom:811.973333pt;}
.y2f_c00291{bottom:812.360000pt;}
.y2d_c00291{bottom:814.466667pt;}
.y29_c00291{bottom:838.066667pt;}
.y25_c00291{bottom:838.266667pt;}
.y26_c00291{bottom:839.026667pt;}
.y28_c00291{bottom:839.226667pt;}
.y27_c00291{bottom:839.973333pt;}
.y2a_c00291{bottom:840.173333pt;}
.y2b_c00291{bottom:840.933333pt;}
.y24_c00291{bottom:851.026667pt;}
.y22_c00291{bottom:851.400000pt;}
.y23_c00291{bottom:852.360000pt;}
.y1c_c00291{bottom:864.933333pt;}
.y1d_c00291{bottom:865.693333pt;}
.y1e_c00291{bottom:865.893333pt;}
.y21_c00291{bottom:866.640000pt;}
.y1f_c00291{bottom:866.840000pt;}
.y20_c00291{bottom:867.600000pt;}
.y1a_c00291{bottom:876.733333pt;}
.y1b_c00291{bottom:877.693333pt;}
.y19_c00291{bottom:878.640000pt;}
.y18_c00291{bottom:878.840000pt;}
.y13_c00291{bottom:890.266667pt;}
.y14_c00291{bottom:891.400000pt;}
.y16_c00291{bottom:892.173333pt;}
.y12_c00291{bottom:892.360000pt;}
.y11_c00291{bottom:892.560000pt;}
.y17_c00291{bottom:892.933333pt;}
.y15_c00291{bottom:893.306667pt;}
.yc_c00291{bottom:904.360000pt;}
.yd_c00291{bottom:904.560000pt;}
.ye_c00291{bottom:905.306667pt;}
.yf_c00291{bottom:905.893333pt;}
.y10_c00291{bottom:906.266667pt;}
.yb_c00291{bottom:916.733333pt;}
.y7_c00291{bottom:917.693333pt;}
.y6_c00291{bottom:917.893333pt;}
.y8_c00291{bottom:918.266667pt;}
.ya_c00291{bottom:918.640000pt;}
.y9_c00291{bottom:919.600000pt;}
.y5_c00291{bottom:941.106667pt;}
.y4_c00291{bottom:943.026667pt;}
.y3_c00291{bottom:943.973333pt;}
.y2_c00291{bottom:976.933333pt;}
.y1_c00291{bottom:977.693333pt;}
.h7_c00291{height:14.890964pt;}
.h5_c00291{height:20.466875pt;}
.h2_c00291{height:22.303646pt;}
.h8_c00291{height:24.206016pt;}
.h3_c00291{height:27.879557pt;}
.h1_c00291{height:31.618698pt;}
.h6_c00291{height:35.357839pt;}
.h4_c00291{height:39.031380pt;}
.h9_c00291{height:42.770521pt;}
.h0_c00291{height:1186.666667pt;}
.w0_c00291{width:782.666667pt;}
.x0_c00291{left:0.000000pt;}
.xf9_c00291{left:132.000000pt;}
.xb6_c00291{left:133.333333pt;}
.x4e_c00291{left:134.293333pt;}
.x1_c00291{left:135.626667pt;}
.x2d_c00291{left:145.333333pt;}
.xe3_c00291{left:146.666667pt;}
.x22_c00291{left:148.000000pt;}
.xb_c00291{left:149.333333pt;}
.x3_c00291{left:150.666667pt;}
.x76_c00291{left:153.706667pt;}
.x8c_c00291{left:155.040000pt;}
.xa4_c00291{left:157.706667pt;}
.x4_c00291{left:160.000000pt;}
.x62_c00291{left:161.333333pt;}
.x31_c00291{left:162.666667pt;}
.xc_c00291{left:163.626667pt;}
.x104_c00291{left:165.333333pt;}
.xae_c00291{left:167.040000pt;}
.x18_c00291{left:168.000000pt;}
.x58_c00291{left:170.293333pt;}
.xbb_c00291{left:172.373333pt;}
.xb7_c00291{left:173.333333pt;}
.xdd_c00291{left:174.666667pt;}
.x2e_c00291{left:175.626667pt;}
.x77_c00291{left:177.333333pt;}
.x8d_c00291{left:178.666667pt;}
.x10c_c00291{left:180.960000pt;}
.x19_c00291{left:184.000000pt;}
.x111_c00291{left:185.706667pt;}
.x59_c00291{left:187.626667pt;}
.x3e_c00291{left:188.960000pt;}
.xaf_c00291{left:190.666667pt;}
.x5_c00291{left:192.960000pt;}
.x1a_c00291{left:194.666667pt;}
.x7d_c00291{left:198.293333pt;}
.x9c_c00291{left:200.000000pt;}
.x2f_c00291{left:200.960000pt;}
.xc4_c00291{left:202.666667pt;}
.xa5_c00291{left:205.333333pt;}
.xf2_c00291{left:206.666667pt;}
.x8e_c00291{left:208.373333pt;}
.x6d_c00291{left:210.666667pt;}
.x85_c00291{left:212.960000pt;}
.x4f_c00291{left:215.626667pt;}
.xe4_c00291{left:216.960000pt;}
.x23_c00291{left:218.666667pt;}
.x63_c00291{left:219.626667pt;}
.xd_c00291{left:221.706667pt;}
.x92_c00291{left:223.626667pt;}
.x32_c00291{left:224.573333pt;}
.x1b_c00291{left:228.000000pt;}
.x102_c00291{left:229.333333pt;}
.x107_c00291{left:230.666667pt;}
.xde_c00291{left:232.000000pt;}
.xe5_c00291{left:235.040000pt;}
.x50_c00291{left:236.000000pt;}
.x30_c00291{left:238.666667pt;}
.x9d_c00291{left:239.626667pt;}
.xa6_c00291{left:241.333333pt;}
.x8f_c00291{left:244.000000pt;}
.x45_c00291{left:245.333333pt;}
.xd4_c00291{left:246.293333pt;}
.x112_c00291{left:248.000000pt;}
.xe_c00291{left:249.333333pt;}
.x86_c00291{left:252.000000pt;}
.x24_c00291{left:253.333333pt;}
.xee_c00291{left:255.626667pt;}
.x6_c00291{left:257.706667pt;}
.x1c_c00291{left:258.666667pt;}
.xd7_c00291{left:259.626667pt;}
.x105_c00291{left:261.333333pt;}
.x33_c00291{left:263.626667pt;}
.x6e_c00291{left:266.293333pt;}
.x1d_c00291{left:268.000000pt;}
.x64_c00291{left:269.333333pt;}
.x10b_c00291{left:270.293333pt;}
.x5a_c00291{left:272.373333pt;}
.x46_c00291{left:276.000000pt;}
.xd8_c00291{left:277.706667pt;}
.x3f_c00291{left:279.040000pt;}
.xf3_c00291{left:280.000000pt;}
.x7_c00291{left:281.706667pt;}
.x90_c00291{left:282.666667pt;}
.xb0_c00291{left:284.373333pt;}
.xbc_c00291{left:286.293333pt;}
.xe6_c00291{left:288.000000pt;}
.xdf_c00291{left:288.960000pt;}
.x87_c00291{left:290.293333pt;}
.xb8_c00291{left:291.626667pt;}
.xcd_c00291{left:294.666667pt;}
.x5b_c00291{left:296.373333pt;}
.xf_c00291{left:297.333333pt;}
.x40_c00291{left:298.666667pt;}
.xe0_c00291{left:300.960000pt;}
.xbd_c00291{left:303.040000pt;}
.x91_c00291{left:305.706667pt;}
.x6f_c00291{left:306.666667pt;}
.xce_c00291{left:309.706667pt;}
.x9e_c00291{left:311.626667pt;}
.x47_c00291{left:313.333333pt;}
.x93_c00291{left:314.666667pt;}
.x34_c00291{left:317.333333pt;}
.x25_c00291{left:318.666667pt;}
.x1e_c00291{left:319.626667pt;}
.x78_c00291{left:321.333333pt;}
.x70_c00291{left:323.040000pt;}
.xa7_c00291{left:324.000000pt;}
.xc5_c00291{left:325.333333pt;}
.x88_c00291{left:326.293333pt;}
.xbe_c00291{left:328.000000pt;}
.x65_c00291{left:329.706667pt;}
.xfa_c00291{left:331.626667pt;}
.xd9_c00291{left:333.333333pt;}
.xe7_c00291{left:336.000000pt;}
.x7e_c00291{left:337.333333pt;}
.x94_c00291{left:338.666667pt;}
.x41_c00291{left:340.000000pt;}
.x8_c00291{left:341.333333pt;}
.xc6_c00291{left:344.373333pt;}
.x35_c00291{left:345.333333pt;}
.x71_c00291{left:346.666667pt;}
.x10d_c00291{left:348.000000pt;}
.x9f_c00291{left:350.666667pt;}
.x26_c00291{left:351.626667pt;}
.x100_c00291{left:352.960000pt;}
.x1f_c00291{left:358.666667pt;}
.x51_c00291{left:360.000000pt;}
.x2_c00291{left:361.333333pt;}
.xbf_c00291{left:363.626667pt;}
.x95_c00291{left:365.333333pt;}
.x10_c00291{left:366.666667pt;}
.x48_c00291{left:367.626667pt;}
.x7f_c00291{left:369.333333pt;}
.xfe_c00291{left:370.293333pt;}
.xb1_c00291{left:373.333333pt;}
.x79_c00291{left:375.040000pt;}
.xcf_c00291{left:377.333333pt;}
.x27_c00291{left:378.666667pt;}
.xa8_c00291{left:379.626667pt;}
.x5c_c00291{left:381.706667pt;}
.x42_c00291{left:382.666667pt;}
.x20_c00291{left:384.373333pt;}
.x80_c00291{left:386.666667pt;}
.xfb_c00291{left:388.000000pt;}
.x36_c00291{left:391.626667pt;}
.x66_c00291{left:393.333333pt;}
.xe1_c00291{left:394.293333pt;}
.x9_c00291{left:397.333333pt;}
.xff_c00291{left:399.626667pt;}
.xc7_c00291{left:400.960000pt;}
.x37_c00291{left:403.040000pt;}
.x108_c00291{left:404.373333pt;}
.x5d_c00291{left:405.333333pt;}
.x11_c00291{left:407.040000pt;}
.x21_c00291{left:408.000000pt;}
.xd0_c00291{left:409.333333pt;}
.xeb_c00291{left:413.333333pt;}
.x52_c00291{left:415.626667pt;}
.x96_c00291{left:418.293333pt;}
.x10e_c00291{left:420.000000pt;}
.x7a_c00291{left:421.333333pt;}
.x12_c00291{left:422.293333pt;}
.x49_c00291{left:425.333333pt;}
.xa9_c00291{left:428.000000pt;}
.x81_c00291{left:429.706667pt;}
.xa_c00291{left:430.666667pt;}
.x28_c00291{left:432.573333pt;}
.x53_c00291{left:435.040000pt;}
.x38_c00291{left:436.000000pt;}
.xf4_c00291{left:438.666667pt;}
.x67_c00291{left:439.626667pt;}
.xc8_c00291{left:441.333333pt;}
.x101_c00291{left:442.666667pt;}
.x5e_c00291{left:444.000000pt;}
.x43_c00291{left:445.333333pt;}
.xc0_c00291{left:447.626667pt;}
.x97_c00291{left:450.293333pt;}
.xa0_c00291{left:452.000000pt;}
.xec_c00291{left:453.706667pt;}
.x68_c00291{left:456.000000pt;}
.x13_c00291{left:459.626667pt;}
.xd5_c00291{left:462.666667pt;}
.xaa_c00291{left:464.373333pt;}
.xd1_c00291{left:465.333333pt;}
.x29_c00291{left:466.293333pt;}
.x98_c00291{left:468.000000pt;}
.xb2_c00291{left:469.333333pt;}
.x39_c00291{left:470.666667pt;}
.x89_c00291{left:473.333333pt;}
.xe8_c00291{left:474.293333pt;}
.x44_c00291{left:476.000000pt;}
.xda_c00291{left:477.333333pt;}
.x69_c00291{left:478.666667pt;}
.x3a_c00291{left:483.040000pt;}
.xe2_c00291{left:484.373333pt;}
.xab_c00291{left:488.000000pt;}
.xa1_c00291{left:489.333333pt;}
.x72_c00291{left:491.040000pt;}
.x82_c00291{left:493.333333pt;}
.x4a_c00291{left:494.666667pt;}
.x14_c00291{left:496.000000pt;}
.x10f_c00291{left:497.333333pt;}
.xd6_c00291{left:499.040000pt;}
.x2a_c00291{left:500.000000pt;}
.xc9_c00291{left:502.666667pt;}
.xf5_c00291{left:505.333333pt;}
.x7b_c00291{left:506.666667pt;}
.xb3_c00291{left:510.293333pt;}
.x5f_c00291{left:512.373333pt;}
.x6a_c00291{left:513.333333pt;}
.xc1_c00291{left:514.666667pt;}
.x3b_c00291{left:516.000000pt;}
.x4b_c00291{left:517.333333pt;}
.xd2_c00291{left:518.666667pt;}
.x54_c00291{left:520.373333pt;}
.xca_c00291{left:521.706667pt;}
.x83_c00291{left:523.040000pt;}
.x99_c00291{left:524.000000pt;}
.xb4_c00291{left:525.333333pt;}
.x113_c00291{left:527.626667pt;}
.xc2_c00291{left:528.960000pt;}
.xdb_c00291{left:530.293333pt;}
.xef_c00291{left:533.333333pt;}
.x60_c00291{left:535.626667pt;}
.xac_c00291{left:537.333333pt;}
.xed_c00291{left:538.666667pt;}
.xe9_c00291{left:541.333333pt;}
.x73_c00291{left:542.666667pt;}
.x2b_c00291{left:544.000000pt;}
.xcb_c00291{left:545.706667pt;}
.x84_c00291{left:546.666667pt;}
.x8a_c00291{left:548.000000pt;}
.xfc_c00291{left:549.333333pt;}
.xad_c00291{left:550.666667pt;}
.x103_c00291{left:552.000000pt;}
.x55_c00291{left:553.706667pt;}
.xa2_c00291{left:554.666667pt;}
.xf6_c00291{left:556.960000pt;}
.x15_c00291{left:560.000000pt;}
.x4c_c00291{left:560.960000pt;}
.x9a_c00291{left:562.666667pt;}
.x109_c00291{left:563.626667pt;}
.x74_c00291{left:565.333333pt;}
.xb9_c00291{left:568.000000pt;}
.x8b_c00291{left:569.706667pt;}
.x3c_c00291{left:571.040000pt;}
.xc3_c00291{left:572.000000pt;}
.x6b_c00291{left:573.333333pt;}
.xf7_c00291{left:575.040000pt;}
.x56_c00291{left:576.960000pt;}
.x110_c00291{left:581.333333pt;}
.x7c_c00291{left:582.293333pt;}
.xf0_c00291{left:586.666667pt;}
.x61_c00291{left:588.960000pt;}
.x9b_c00291{left:594.666667pt;}
.xdc_c00291{left:596.000000pt;}
.x4d_c00291{left:596.960000pt;}
.x75_c00291{left:599.040000pt;}
.x106_c00291{left:602.666667pt;}
.x2c_c00291{left:603.626667pt;}
.xb5_c00291{left:605.706667pt;}
.xf1_c00291{left:606.666667pt;}
.x16_c00291{left:609.333333pt;}
.xf8_c00291{left:610.666667pt;}
.xa3_c00291{left:612.000000pt;}
.x57_c00291{left:613.333333pt;}
.xd3_c00291{left:614.666667pt;}
.xfd_c00291{left:616.373333pt;}
.xea_c00291{left:617.333333pt;}
.x3d_c00291{left:618.666667pt;}
.x6c_c00291{left:620.373333pt;}
.x10a_c00291{left:624.960000pt;}
.xcc_c00291{left:628.373333pt;}
.xba_c00291{left:629.706667pt;}
.x17_c00291{left:639.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_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_d044b5fb7e593214497adced.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md9_c00292{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m25_c00292{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.mc4_c00292{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.mf3_c00292{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m0_c00292{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m1d_c00292{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m63_c00292{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.mad_c00292{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m35_c00292{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mbd_c00292{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.mc5_c00292{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m31_c00292{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mb0_c00292{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.me1_c00292{transform:matrix(0.376891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376891,0.000000,0.000000,0.250000,0,0);}
.m46_c00292{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m47_c00292{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.mf8_c00292{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m82_c00292{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m97_c00292{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.mb8_c00292{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m92_c00292{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m93_c00292{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mcc_c00292{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m43_c00292{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mbc_c00292{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.m6c_c00292{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.mc8_c00292{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.mf4_c00292{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m16_c00292{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m28_c00292{transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);}
.m9c_c00292{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m81_c00292{transform:matrix(0.403374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403374,0.000000,0.000000,0.250000,0,0);}
.mcb_c00292{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mf2_c00292{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.mbe_c00292{transform:matrix(0.406120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406120,0.000000,0.000000,0.250000,0,0);}
.m4a_c00292{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.mca_c00292{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.md4_c00292{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.mf_c00292{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m2c_c00292{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m8f_c00292{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mdc_c00292{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m95_c00292{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mb5_c00292{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.md6_c00292{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.ma4_c00292{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.mb7_c00292{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.mda_c00292{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m91_c00292{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m36_c00292{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.mff_c00292{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m10_c00292{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m7c_c00292{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.md3_c00292{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mb2_c00292{transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);}
.m14_c00292{transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);}
.mae_c00292{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m42_c00292{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m11_c00292{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.mce_c00292{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m65_c00292{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m99_c00292{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.ma2_c00292{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m6a_c00292{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m2e_c00292{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m33_c00292{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.m57_c00292{transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);}
.mbb_c00292{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.mec_c00292{transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);}
.ma9_c00292{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m75_c00292{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.me3_c00292{transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);}
.mc1_c00292{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.me7_c00292{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m9b_c00292{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m45_c00292{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m66_c00292{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m76_c00292{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m21_c00292{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m56_c00292{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.me9_c00292{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m1a_c00292{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.me8_c00292{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.m37_c00292{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.mb6_c00292{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.mf0_c00292{transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);}
.m54_c00292{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.maa_c00292{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.maf_c00292{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.mac_c00292{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m27_c00292{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m2b_c00292{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mcd_c00292{transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);}
.md5_c00292{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.me6_c00292{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.mba_c00292{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.med_c00292{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.m30_c00292{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.m3e_c00292{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m96_c00292{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.md8_c00292{transform:matrix(0.473098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473098,0.000000,0.000000,0.250000,0,0);}
.ma7_c00292{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.mea_c00292{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.ma0_c00292{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m9a_c00292{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.mb1_c00292{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m55_c00292{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m15_c00292{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mb4_c00292{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.mf9_c00292{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.me4_c00292{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m38_c00292{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m9d_c00292{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.ma3_c00292{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mc0_c00292{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m84_c00292{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.ma_c00292{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.me_c00292{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m3f_c00292{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m86_c00292{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);}
.md7_c00292{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m5a_c00292{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m9e_c00292{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m24_c00292{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mfa_c00292{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.md2_c00292{transform:matrix(0.508349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508349,0.000000,0.000000,0.250000,0,0);}
.m60_c00292{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m58_c00292{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m7_c00292{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m4b_c00292{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mc3_c00292{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.mc_c00292{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m34_c00292{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m13_c00292{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m3a_c00292{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m51_c00292{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m2_c00292{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m7b_c00292{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m18_c00292{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m8b_c00292{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m1b_c00292{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.me2_c00292{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m8_c00292{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m9f_c00292{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m62_c00292{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m6d_c00292{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m2a_c00292{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mfd_c00292{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m5_c00292{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.me5_c00292{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.mfb_c00292{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m6_c00292{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m1e_c00292{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m89_c00292{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.mde_c00292{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m41_c00292{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mc9_c00292{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m70_c00292{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m4f_c00292{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m2d_c00292{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m53_c00292{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m8e_c00292{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m5d_c00292{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mcf_c00292{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m1f_c00292{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m94_c00292{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.md1_c00292{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m23_c00292{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m32_c00292{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mfe_c00292{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m48_c00292{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mc7_c00292{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m40_c00292{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m74_c00292{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m6b_c00292{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m50_c00292{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mf7_c00292{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m5b_c00292{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m71_c00292{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m4c_c00292{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m1c_c00292{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.meb_c00292{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.ma8_c00292{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.mc6_c00292{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.mee_c00292{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.m73_c00292{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m100_c00292{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.me0_c00292{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.mdd_c00292{transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);}
.m8a_c00292{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m9_c00292{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m8d_c00292{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m87_c00292{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m5f_c00292{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m83_c00292{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m3d_c00292{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.mfc_c00292{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.m39_c00292{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m101_c00292{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.mdb_c00292{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m7f_c00292{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.m20_c00292{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.mb9_c00292{transform:matrix(0.586765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586765,0.000000,0.000000,0.250000,0,0);}
.m26_c00292{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m78_c00292{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m12_c00292{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mdf_c00292{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m19_c00292{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.mef_c00292{transform:matrix(0.594398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594398,0.000000,0.000000,0.250000,0,0);}
.m59_c00292{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m6f_c00292{transform:matrix(0.598824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598824,0.000000,0.000000,0.250000,0,0);}
.m72_c00292{transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);}
.m88_c00292{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m4e_c00292{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m90_c00292{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.ma5_c00292{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m69_c00292{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m85_c00292{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.mc2_c00292{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.m2f_c00292{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m52_c00292{transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);}
.m4d_c00292{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_c00292{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.mf6_c00292{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.md_c00292{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mf1_c00292{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.mb3_c00292{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);}
.m77_c00292{transform:matrix(0.653529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653529,0.000000,0.000000,0.250000,0,0);}
.mb_c00292{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m22_c00292{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mab_c00292{transform:matrix(0.667647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667647,0.000000,0.000000,0.250000,0,0);}
.mbf_c00292{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.m3b_c00292{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m8c_c00292{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m64_c00292{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m80_c00292{transform:matrix(0.705929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705929,0.000000,0.000000,0.250000,0,0);}
.m67_c00292{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.m6e_c00292{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m7e_c00292{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m79_c00292{transform:matrix(0.724359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.724359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.724359,0.000000,0.000000,0.250000,0,0);}
.ma6_c00292{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m17_c00292{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m4_c00292{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m5c_c00292{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m7d_c00292{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m49_c00292{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m5e_c00292{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.m68_c00292{transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);}
.md0_c00292{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m98_c00292{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.m7a_c00292{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.ma1_c00292{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m61_c00292{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mf5_c00292{transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);}
.m44_c00292{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m3c_c00292{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m102_c00292{transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);}
.m29_c00292{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m3_c00292{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00292{vertical-align:0.000000px;}
.v1_c00292{vertical-align:6.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;}
}
.ws1_c00292{word-spacing:-8.794214px;}
.ws0_c00292{word-spacing:-5.111450px;}
.ws3_c00292{word-spacing:-2.271297px;}
.ws2_c00292{word-spacing:-2.199412px;}
.ws4_c00292{word-spacing:0.000000px;}
.fc0_c00292{color:transparent;}
.fs3_c00292{font-size:3.420000px;}
.fs5_c00292{font-size:18.720000px;}
.fs1_c00292{font-size:20.400000px;}
.fs4_c00292{font-size:25.500000px;}
.fs2_c00292{font-size:28.920000px;}
.fs6_c00292{font-size:32.340000px;}
.fs0_c00292{font-size:35.700000px;}
.fs7_c00292{font-size:39.120000px;}
.y0_c00292{bottom:0.000000px;}
.yc6_c00292{bottom:251.130000px;}
.yc5_c00292{bottom:251.970000px;}
.yc3_c00292{bottom:252.405000px;}
.yc4_c00292{bottom:252.420000px;}
.yc2_c00292{bottom:269.745000px;}
.yc1_c00292{bottom:270.825000px;}
.yc0_c00292{bottom:271.905000px;}
.ybe_c00292{bottom:289.245000px;}
.ybf_c00292{bottom:290.970000px;}
.ybd_c00292{bottom:291.405000px;}
.ybc_c00292{bottom:292.905000px;}
.yb9_c00292{bottom:308.745000px;}
.ybb_c00292{bottom:309.825000px;}
.yb8_c00292{bottom:310.905000px;}
.yba_c00292{bottom:311.130000px;}
.yb1_c00292{bottom:327.405000px;}
.yb4_c00292{bottom:328.245000px;}
.yb6_c00292{bottom:328.470000px;}
.yb2_c00292{bottom:328.905000px;}
.yb5_c00292{bottom:329.550000px;}
.yb0_c00292{bottom:329.745000px;}
.yb7_c00292{bottom:330.405000px;}
.yb3_c00292{bottom:330.630000px;}
.yaf_c00292{bottom:331.905000px;}
.yac_c00292{bottom:346.905000px;}
.yae_c00292{bottom:347.745000px;}
.ya9_c00292{bottom:349.245000px;}
.yaa_c00292{bottom:349.905000px;}
.yab_c00292{bottom:350.130000px;}
.yad_c00292{bottom:350.970000px;}
.ya8_c00292{bottom:351.405000px;}
.ya7_c00292{bottom:368.325000px;}
.ya3_c00292{bottom:368.745000px;}
.ya6_c00292{bottom:369.405000px;}
.ya5_c00292{bottom:369.630000px;}
.ya4_c00292{bottom:370.470000px;}
.ya2_c00292{bottom:370.905000px;}
.ya1_c00292{bottom:371.325000px;}
.y9f_c00292{bottom:387.825000px;}
.ya0_c00292{bottom:388.245000px;}
.y9e_c00292{bottom:389.970000px;}
.y9d_c00292{bottom:390.405000px;}
.y99_c00292{bottom:407.745000px;}
.y9a_c00292{bottom:408.825000px;}
.y9b_c00292{bottom:409.470000px;}
.y98_c00292{bottom:409.905000px;}
.y9c_c00292{bottom:410.970000px;}
.y94_c00292{bottom:427.245000px;}
.y97_c00292{bottom:428.325000px;}
.y96_c00292{bottom:428.970000px;}
.y93_c00292{bottom:429.405000px;}
.y95_c00292{bottom:429.630000px;}
.y92_c00292{bottom:445.905000px;}
.y8f_c00292{bottom:446.745000px;}
.y90_c00292{bottom:448.905000px;}
.y91_c00292{bottom:449.130000px;}
.y8d_c00292{bottom:450.405000px;}
.y8e_c00292{bottom:450.420000px;}
.y8b_c00292{bottom:466.245000px;}
.y8c_c00292{bottom:467.325000px;}
.y89_c00292{bottom:467.745000px;}
.y8a_c00292{bottom:469.905000px;}
.y87_c00292{bottom:485.745000px;}
.y88_c00292{bottom:486.825000px;}
.y85_c00292{bottom:487.245000px;}
.y83_c00292{bottom:488.130000px;}
.y86_c00292{bottom:488.325000px;}
.y82_c00292{bottom:489.405000px;}
.y84_c00292{bottom:489.420000px;}
.y80_c00292{bottom:504.405000px;}
.y81_c00292{bottom:504.825000px;}
.y7e_c00292{bottom:506.745000px;}
.y7f_c00292{bottom:508.920000px;}
.y7b_c00292{bottom:526.245000px;}
.y7c_c00292{bottom:527.970000px;}
.y7d_c00292{bottom:528.405000px;}
.y7a_c00292{bottom:544.680000px;}
.y77_c00292{bottom:545.745000px;}
.y79_c00292{bottom:547.905000px;}
.y78_c00292{bottom:549.420000px;}
.y76_c00292{bottom:572.970000px;}
.y73_c00292{bottom:573.825000px;}
.y72_c00292{bottom:574.905000px;}
.y75_c00292{bottom:575.130000px;}
.y6f_c00292{bottom:575.325000px;}
.y74_c00292{bottom:575.970000px;}
.y71_c00292{bottom:576.405000px;}
.y70_c00292{bottom:577.050000px;}
.y6e_c00292{bottom:596.325000px;}
.y6b_c00292{bottom:597.405000px;}
.y6a_c00292{bottom:597.825000px;}
.y6c_c00292{bottom:598.905000px;}
.y6d_c00292{bottom:599.550000px;}
.y67_c00292{bottom:620.745000px;}
.y69_c00292{bottom:621.825000px;}
.y68_c00292{bottom:623.970000px;}
.y66_c00292{bottom:664.245000px;}
.y65_c00292{bottom:666.405000px;}
.y64_c00292{bottom:682.470000px;}
.y62_c00292{bottom:683.745000px;}
.y63_c00292{bottom:684.630000px;}
.y60_c00292{bottom:685.905000px;}
.y61_c00292{bottom:686.130000px;}
.y5f_c00292{bottom:702.405000px;}
.y5e_c00292{bottom:703.245000px;}
.y5d_c00292{bottom:705.405000px;}
.y5b_c00292{bottom:722.745000px;}
.y5a_c00292{bottom:723.405000px;}
.y58_c00292{bottom:723.825000px;}
.y59_c00292{bottom:724.905000px;}
.y5c_c00292{bottom:725.130000px;}
.y57_c00292{bottom:743.745000px;}
.y56_c00292{bottom:745.470000px;}
.y55_c00292{bottom:745.905000px;}
.y54_c00292{bottom:746.970000px;}
.y53_c00292{bottom:763.245000px;}
.y4f_c00292{bottom:764.130000px;}
.y52_c00292{bottom:764.970000px;}
.y51_c00292{bottom:765.405000px;}
.y50_c00292{bottom:766.470000px;}
.y4d_c00292{bottom:781.470000px;}
.y48_c00292{bottom:782.745000px;}
.y4a_c00292{bottom:783.630000px;}
.y4c_c00292{bottom:784.050000px;}
.y4b_c00292{bottom:784.470000px;}
.y49_c00292{bottom:784.905000px;}
.y4e_c00292{bottom:785.970000px;}
.y44_c00292{bottom:801.180000px;}
.y46_c00292{bottom:802.245000px;}
.y43_c00292{bottom:803.130000px;}
.y45_c00292{bottom:803.970000px;}
.y42_c00292{bottom:804.405000px;}
.y47_c00292{bottom:805.470000px;}
.y3d_c00292{bottom:821.745000px;}
.y40_c00292{bottom:822.630000px;}
.y41_c00292{bottom:823.470000px;}
.y3c_c00292{bottom:823.905000px;}
.y3f_c00292{bottom:824.130000px;}
.y3e_c00292{bottom:824.970000px;}
.y3a_c00292{bottom:841.245000px;}
.y39_c00292{bottom:843.405000px;}
.y3b_c00292{bottom:844.470000px;}
.y37_c00292{bottom:861.630000px;}
.y34_c00292{bottom:862.245000px;}
.y35_c00292{bottom:862.470000px;}
.y36_c00292{bottom:862.905000px;}
.y38_c00292{bottom:863.970000px;}
.y33_c00292{bottom:864.405000px;}
.y2e_c00292{bottom:879.405000px;}
.y2f_c00292{bottom:880.245000px;}
.y32_c00292{bottom:881.745000px;}
.y30_c00292{bottom:882.405000px;}
.y2d_c00292{bottom:882.630000px;}
.y31_c00292{bottom:883.470000px;}
.y2c_c00292{bottom:883.905000px;}
.y2a_c00292{bottom:899.970000px;}
.y28_c00292{bottom:901.245000px;}
.y29_c00292{bottom:902.130000px;}
.y2b_c00292{bottom:902.970000px;}
.y27_c00292{bottom:903.405000px;}
.y26_c00292{bottom:918.405000px;}
.y24_c00292{bottom:920.745000px;}
.y25_c00292{bottom:921.825000px;}
.y23_c00292{bottom:922.470000px;}
.y22_c00292{bottom:922.905000px;}
.y20_c00292{bottom:940.245000px;}
.y1f_c00292{bottom:941.130000px;}
.y21_c00292{bottom:941.970000px;}
.y1e_c00292{bottom:942.405000px;}
.y1b_c00292{bottom:959.745000px;}
.y1d_c00292{bottom:960.630000px;}
.y1c_c00292{bottom:961.905000px;}
.y1a_c00292{bottom:979.245000px;}
.y19_c00292{bottom:980.325000px;}
.y18_c00292{bottom:981.405000px;}
.y14_c00292{bottom:998.745000px;}
.y17_c00292{bottom:1000.905000px;}
.y15_c00292{bottom:1001.130000px;}
.y16_c00292{bottom:1001.970000px;}
.yf_c00292{bottom:1018.245000px;}
.y12_c00292{bottom:1018.470000px;}
.y13_c00292{bottom:1019.970000px;}
.y10_c00292{bottom:1020.405000px;}
.y11_c00292{bottom:1020.630000px;}
.ye_c00292{bottom:1021.470000px;}
.y9_c00292{bottom:1037.745000px;}
.yd_c00292{bottom:1037.970000px;}
.yb_c00292{bottom:1038.825000px;}
.ya_c00292{bottom:1039.905000px;}
.yc_c00292{bottom:1040.130000px;}
.y6_c00292{bottom:1056.405000px;}
.y8_c00292{bottom:1057.245000px;}
.y3_c00292{bottom:1059.405000px;}
.y4_c00292{bottom:1059.420000px;}
.y7_c00292{bottom:1059.630000px;}
.y5_c00292{bottom:1060.470000px;}
.y1_c00292{bottom:1097.745000px;}
.y2_c00292{bottom:1099.050000px;}
.h4_c00292{height:4.206533px;}
.h6_c00292{height:23.025234px;}
.h2_c00292{height:25.091602px;}
.h5_c00292{height:31.364502px;}
.h3_c00292{height:35.571035px;}
.h7_c00292{height:39.777568px;}
.h8_c00292{height:41.571035px;}
.h1_c00292{height:43.910303px;}
.h9_c00292{height:48.116836px;}
.h0_c00292{height:1335.000000px;}
.w0_c00292{width:880.500000px;}
.x0_c00292{left:0.000000px;}
.x11_c00292{left:151.080000px;}
.xeb_c00292{left:152.145000px;}
.xa4_c00292{left:153.420000px;}
.xd3_c00292{left:166.080000px;}
.x3_c00292{left:167.145000px;}
.xab_c00292{left:169.500000px;}
.x103_c00292{left:170.580000px;}
.x100_c00292{left:172.920000px;}
.x60_c00292{left:179.775000px;}
.x88_c00292{left:181.500000px;}
.x7a_c00292{left:183.000000px;}
.xee_c00292{left:185.580000px;}
.x36_c00292{left:187.500000px;}
.x4a_c00292{left:189.000000px;}
.x1f_c00292{left:192.000000px;}
.x82_c00292{left:193.500000px;}
.x90_c00292{left:195.420000px;}
.x40_c00292{left:198.000000px;}
.x101_c00292{left:199.500000px;}
.x55_c00292{left:202.500000px;}
.x9a_c00292{left:205.500000px;}
.xd9_c00292{left:207.000000px;}
.xd6_c00292{left:208.920000px;}
.xf2_c00292{left:211.080000px;}
.xce_c00292{left:214.080000px;}
.x12_c00292{left:217.920000px;}
.x61_c00292{left:220.920000px;}
.x56_c00292{left:222.420000px;}
.x6e_c00292{left:223.500000px;}
.x4b_c00292{left:226.080000px;}
.xa5_c00292{left:231.420000px;}
.xb1_c00292{left:232.500000px;}
.x7b_c00292{left:234.000000px;}
.x4_c00292{left:237.000000px;}
.xcb_c00292{left:238.080000px;}
.xb8_c00292{left:240.420000px;}
.xac_c00292{left:244.500000px;}
.x20_c00292{left:246.000000px;}
.x9b_c00292{left:247.500000px;}
.xde_c00292{left:249.000000px;}
.x91_c00292{left:250.920000px;}
.x57_c00292{left:252.000000px;}
.x62_c00292{left:255.420000px;}
.x2d_c00292{left:256.500000px;}
.x5_c00292{left:258.000000px;}
.xdb_c00292{left:259.500000px;}
.xe0_c00292{left:261.000000px;}
.x102_c00292{left:262.080000px;}
.x21_c00292{left:263.580000px;}
.xef_c00292{left:265.500000px;}
.x58_c00292{left:267.420000px;}
.xd7_c00292{left:268.500000px;}
.xbf_c00292{left:269.580000px;}
.xf8_c00292{left:271.920000px;}
.x41_c00292{left:273.000000px;}
.x2e_c00292{left:276.000000px;}
.x6_c00292{left:277.920000px;}
.xb2_c00292{left:279.420000px;}
.x13_c00292{left:280.500000px;}
.xe1_c00292{left:282.000000px;}
.x63_c00292{left:283.500000px;}
.x6f_c00292{left:285.000000px;}
.xf3_c00292{left:286.080000px;}
.x2f_c00292{left:288.000000px;}
.xd8_c00292{left:289.500000px;}
.x7c_c00292{left:291.000000px;}
.x59_c00292{left:292.500000px;}
.x4c_c00292{left:293.580000px;}
.xa6_c00292{left:297.000000px;}
.xe8_c00292{left:300.000000px;}
.x7_c00292{left:302.580000px;}
.xd4_c00292{left:304.080000px;}
.x83_c00292{left:306.000000px;}
.x9c_c00292{left:307.080000px;}
.x42_c00292{left:309.000000px;}
.x7d_c00292{left:310.920000px;}
.xcc_c00292{left:312.000000px;}
.x37_c00292{left:313.080000px;}
.xa7_c00292{left:315.420000px;}
.x14_c00292{left:317.580000px;}
.x9d_c00292{left:319.500000px;}
.x22_c00292{left:322.920000px;}
.xfe_c00292{left:324.000000px;}
.xb3_c00292{left:325.500000px;}
.xe2_c00292{left:327.000000px;}
.xc6_c00292{left:328.920000px;}
.x30_c00292{left:330.420000px;}
.x92_c00292{left:331.500000px;}
.xf5_c00292{left:334.500000px;}
.x64_c00292{left:336.000000px;}
.x7e_c00292{left:337.920000px;}
.x70_c00292{left:339.000000px;}
.x15_c00292{left:340.920000px;}
.x9e_c00292{left:342.855000px;}
.xdc_c00292{left:346.275000px;}
.xf9_c00292{left:348.420000px;}
.xc0_c00292{left:351.000000px;}
.x93_c00292{left:352.500000px;}
.xcf_c00292{left:354.000000px;}
.x71_c00292{left:357.420000px;}
.xe9_c00292{left:358.500000px;}
.x84_c00292{left:359.580000px;}
.x23_c00292{left:361.920000px;}
.x9f_c00292{left:363.420000px;}
.x38_c00292{left:365.580000px;}
.x89_c00292{left:369.420000px;}
.x8_c00292{left:372.000000px;}
.x4d_c00292{left:373.500000px;}
.xfa_c00292{left:374.580000px;}
.x24_c00292{left:376.080000px;}
.xc7_c00292{left:379.080000px;}
.xf6_c00292{left:382.500000px;}
.x43_c00292{left:385.080000px;}
.xdd_c00292{left:387.000000px;}
.x5a_c00292{left:388.920000px;}
.x94_c00292{left:390.420000px;}
.xda_c00292{left:394.500000px;}
.xc8_c00292{left:397.920000px;}
.x44_c00292{left:402.420000px;}
.x2_c00292{left:403.500000px;}
.xad_c00292{left:404.580000px;}
.x8a_c00292{left:406.920000px;}
.x72_c00292{left:408.420000px;}
.x39_c00292{left:410.580000px;}
.x25_c00292{left:412.500000px;}
.x5b_c00292{left:413.580000px;}
.x9_c00292{left:415.080000px;}
.xb4_c00292{left:417.000000px;}
.xea_c00292{left:418.920000px;}
.x4e_c00292{left:420.000000px;}
.x7f_c00292{left:423.000000px;}
.x65_c00292{left:424.500000px;}
.x31_c00292{left:426.000000px;}
.xb9_c00292{left:429.420000px;}
.x95_c00292{left:430.500000px;}
.x16_c00292{left:433.500000px;}
.xb5_c00292{left:435.420000px;}
.x73_c00292{left:436.920000px;}
.xa8_c00292{left:442.500000px;}
.x32_c00292{left:445.080000px;}
.x66_c00292{left:447.000000px;}
.x96_c00292{left:449.580000px;}
.x17_c00292{left:451.500000px;}
.x4f_c00292{left:453.000000px;}
.xf7_c00292{left:454.080000px;}
.x26_c00292{left:455.580000px;}
.x8b_c00292{left:460.500000px;}
.xb6_c00292{left:462.000000px;}
.x85_c00292{left:465.000000px;}
.x74_c00292{left:466.920000px;}
.x80_c00292{left:468.420000px;}
.xba_c00292{left:470.580000px;}
.x3a_c00292{left:472.920000px;}
.x5c_c00292{left:474.645000px;}
.xc9_c00292{left:476.580000px;}
.x86_c00292{left:481.920000px;}
.xa0_c00292{left:484.920000px;}
.xa_c00292{left:488.580000px;}
.xa9_c00292{left:491.580000px;}
.x45_c00292{left:496.500000px;}
.xe3_c00292{left:498.420000px;}
.x3b_c00292{left:499.500000px;}
.xae_c00292{left:501.000000px;}
.x18_c00292{left:502.500000px;}
.x104_c00292{left:504.000000px;}
.x50_c00292{left:505.500000px;}
.xb_c00292{left:507.420000px;}
.xaa_c00292{left:509.580000px;}
.x33_c00292{left:511.500000px;}
.x75_c00292{left:516.420000px;}
.xbb_c00292{left:517.500000px;}
.x67_c00292{left:519.000000px;}
.x97_c00292{left:520.920000px;}
.xc1_c00292{left:522.000000px;}
.xa1_c00292{left:523.500000px;}
.x19_c00292{left:525.420000px;}
.x51_c00292{left:528.000000px;}
.x34_c00292{left:529.500000px;}
.x46_c00292{left:531.000000px;}
.xdf_c00292{left:532.920000px;}
.xc2_c00292{left:534.420000px;}
.x27_c00292{left:535.500000px;}
.xcd_c00292{left:538.080000px;}
.xc_c00292{left:541.500000px;}
.xaf_c00292{left:543.420000px;}
.x76_c00292{left:544.920000px;}
.x47_c00292{left:546.000000px;}
.xbc_c00292{left:547.080000px;}
.x68_c00292{left:549.420000px;}
.x3c_c00292{left:550.920000px;}
.x1a_c00292{left:553.500000px;}
.x8c_c00292{left:555.420000px;}
.xd_c00292{left:559.500000px;}
.x81_c00292{left:562.080000px;}
.xca_c00292{left:565.500000px;}
.x5d_c00292{left:567.000000px;}
.x28_c00292{left:568.500000px;}
.xc3_c00292{left:570.000000px;}
.x35_c00292{left:572.775000px;}
.xf0_c00292{left:575.580000px;}
.xf4_c00292{left:577.500000px;}
.x1b_c00292{left:580.080000px;}
.x105_c00292{left:582.000000px;}
.x98_c00292{left:583.500000px;}
.xd5_c00292{left:584.580000px;}
.x3d_c00292{left:586.500000px;}
.x69_c00292{left:588.000000px;}
.xe4_c00292{left:589.500000px;}
.xd0_c00292{left:590.580000px;}
.xfb_c00292{left:594.420000px;}
.x8d_c00292{left:595.500000px;}
.xb0_c00292{left:598.500000px;}
.x1c_c00292{left:600.420000px;}
.x106_c00292{left:601.920000px;}
.x6a_c00292{left:604.500000px;}
.x87_c00292{left:607.920000px;}
.xe5_c00292{left:609.000000px;}
.xd1_c00292{left:610.500000px;}
.xe_c00292{left:612.000000px;}
.x77_c00292{left:613.920000px;}
.x48_c00292{left:618.000000px;}
.x29_c00292{left:621.000000px;}
.xec_c00292{left:622.500000px;}
.xfc_c00292{left:624.420000px;}
.xc4_c00292{left:625.920000px;}
.x52_c00292{left:627.000000px;}
.xff_c00292{left:628.500000px;}
.xf_c00292{left:630.420000px;}
.x8e_c00292{left:633.420000px;}
.xbd_c00292{left:634.500000px;}
.x2a_c00292{left:637.080000px;}
.x3e_c00292{left:638.580000px;}
.x78_c00292{left:643.080000px;}
.x1d_c00292{left:648.420000px;}
.x53_c00292{left:649.920000px;}
.xf1_c00292{left:651.000000px;}
.xa2_c00292{left:652.500000px;}
.x5e_c00292{left:656.580000px;}
.xe6_c00292{left:660.000000px;}
.xed_c00292{left:661.080000px;}
.x49_c00292{left:666.000000px;}
.x10_c00292{left:668.580000px;}
.x3f_c00292{left:670.500000px;}
.x79_c00292{left:672.000000px;}
.x6b_c00292{left:673.080000px;}
.x5f_c00292{left:676.080000px;}
.xbe_c00292{left:678.000000px;}
.x54_c00292{left:679.920000px;}
.x2b_c00292{left:681.000000px;}
.x8f_c00292{left:688.920000px;}
.xb7_c00292{left:690.000000px;}
.xc5_c00292{left:691.500000px;}
.x6c_c00292{left:692.580000px;}
.xd2_c00292{left:694.080000px;}
.x1_c00292{left:703.500000px;}
.xe7_c00292{left:705.000000px;}
.x2c_c00292{left:706.920000px;}
.x99_c00292{left:708.420000px;}
.x1e_c00292{left:709.920000px;}
.x6d_c00292{left:715.500000px;}
.xa3_c00292{left:717.000000px;}
.xfd_c00292{left:719.580000px;}
@media print{
.v0_c00292{vertical-align:0.000000pt;}
.v1_c00292{vertical-align:5.333333pt;}
.ls0_c00292{letter-spacing:0.000000pt;}
.ws1_c00292{word-spacing:-7.817079pt;}
.ws0_c00292{word-spacing:-4.543511pt;}
.ws3_c00292{word-spacing:-2.018931pt;}
.ws2_c00292{word-spacing:-1.955033pt;}
.ws4_c00292{word-spacing:0.000000pt;}
.fs3_c00292{font-size:3.040000pt;}
.fs5_c00292{font-size:16.640000pt;}
.fs1_c00292{font-size:18.133333pt;}
.fs4_c00292{font-size:22.666667pt;}
.fs2_c00292{font-size:25.706667pt;}
.fs6_c00292{font-size:28.746667pt;}
.fs0_c00292{font-size:31.733333pt;}
.fs7_c00292{font-size:34.773333pt;}
.y0_c00292{bottom:0.000000pt;}
.yc6_c00292{bottom:223.226667pt;}
.yc5_c00292{bottom:223.973333pt;}
.yc3_c00292{bottom:224.360000pt;}
.yc4_c00292{bottom:224.373333pt;}
.yc2_c00292{bottom:239.773333pt;}
.yc1_c00292{bottom:240.733333pt;}
.yc0_c00292{bottom:241.693333pt;}
.ybe_c00292{bottom:257.106667pt;}
.ybf_c00292{bottom:258.640000pt;}
.ybd_c00292{bottom:259.026667pt;}
.ybc_c00292{bottom:260.360000pt;}
.yb9_c00292{bottom:274.440000pt;}
.ybb_c00292{bottom:275.400000pt;}
.yb8_c00292{bottom:276.360000pt;}
.yba_c00292{bottom:276.560000pt;}
.yb1_c00292{bottom:291.026667pt;}
.yb4_c00292{bottom:291.773333pt;}
.yb6_c00292{bottom:291.973333pt;}
.yb2_c00292{bottom:292.360000pt;}
.yb5_c00292{bottom:292.933333pt;}
.yb0_c00292{bottom:293.106667pt;}
.yb7_c00292{bottom:293.693333pt;}
.yb3_c00292{bottom:293.893333pt;}
.yaf_c00292{bottom:295.026667pt;}
.yac_c00292{bottom:308.360000pt;}
.yae_c00292{bottom:309.106667pt;}
.ya9_c00292{bottom:310.440000pt;}
.yaa_c00292{bottom:311.026667pt;}
.yab_c00292{bottom:311.226667pt;}
.yad_c00292{bottom:311.973333pt;}
.ya8_c00292{bottom:312.360000pt;}
.ya7_c00292{bottom:327.400000pt;}
.ya3_c00292{bottom:327.773333pt;}
.ya6_c00292{bottom:328.360000pt;}
.ya5_c00292{bottom:328.560000pt;}
.ya4_c00292{bottom:329.306667pt;}
.ya2_c00292{bottom:329.693333pt;}
.ya1_c00292{bottom:330.066667pt;}
.y9f_c00292{bottom:344.733333pt;}
.ya0_c00292{bottom:345.106667pt;}
.y9e_c00292{bottom:346.640000pt;}
.y9d_c00292{bottom:347.026667pt;}
.y99_c00292{bottom:362.440000pt;}
.y9a_c00292{bottom:363.400000pt;}
.y9b_c00292{bottom:363.973333pt;}
.y98_c00292{bottom:364.360000pt;}
.y9c_c00292{bottom:365.306667pt;}
.y94_c00292{bottom:379.773333pt;}
.y97_c00292{bottom:380.733333pt;}
.y96_c00292{bottom:381.306667pt;}
.y93_c00292{bottom:381.693333pt;}
.y95_c00292{bottom:381.893333pt;}
.y92_c00292{bottom:396.360000pt;}
.y8f_c00292{bottom:397.106667pt;}
.y90_c00292{bottom:399.026667pt;}
.y91_c00292{bottom:399.226667pt;}
.y8d_c00292{bottom:400.360000pt;}
.y8e_c00292{bottom:400.373333pt;}
.y8b_c00292{bottom:414.440000pt;}
.y8c_c00292{bottom:415.400000pt;}
.y89_c00292{bottom:415.773333pt;}
.y8a_c00292{bottom:417.693333pt;}
.y87_c00292{bottom:431.773333pt;}
.y88_c00292{bottom:432.733333pt;}
.y85_c00292{bottom:433.106667pt;}
.y83_c00292{bottom:433.893333pt;}
.y86_c00292{bottom:434.066667pt;}
.y82_c00292{bottom:435.026667pt;}
.y84_c00292{bottom:435.040000pt;}
.y80_c00292{bottom:448.360000pt;}
.y81_c00292{bottom:448.733333pt;}
.y7e_c00292{bottom:450.440000pt;}
.y7f_c00292{bottom:452.373333pt;}
.y7b_c00292{bottom:467.773333pt;}
.y7c_c00292{bottom:469.306667pt;}
.y7d_c00292{bottom:469.693333pt;}
.y7a_c00292{bottom:484.160000pt;}
.y77_c00292{bottom:485.106667pt;}
.y79_c00292{bottom:487.026667pt;}
.y78_c00292{bottom:488.373333pt;}
.y76_c00292{bottom:509.306667pt;}
.y73_c00292{bottom:510.066667pt;}
.y72_c00292{bottom:511.026667pt;}
.y75_c00292{bottom:511.226667pt;}
.y6f_c00292{bottom:511.400000pt;}
.y74_c00292{bottom:511.973333pt;}
.y71_c00292{bottom:512.360000pt;}
.y70_c00292{bottom:512.933333pt;}
.y6e_c00292{bottom:530.066667pt;}
.y6b_c00292{bottom:531.026667pt;}
.y6a_c00292{bottom:531.400000pt;}
.y6c_c00292{bottom:532.360000pt;}
.y6d_c00292{bottom:532.933333pt;}
.y67_c00292{bottom:551.773333pt;}
.y69_c00292{bottom:552.733333pt;}
.y68_c00292{bottom:554.640000pt;}
.y66_c00292{bottom:590.440000pt;}
.y65_c00292{bottom:592.360000pt;}
.y64_c00292{bottom:606.640000pt;}
.y62_c00292{bottom:607.773333pt;}
.y63_c00292{bottom:608.560000pt;}
.y60_c00292{bottom:609.693333pt;}
.y61_c00292{bottom:609.893333pt;}
.y5f_c00292{bottom:624.360000pt;}
.y5e_c00292{bottom:625.106667pt;}
.y5d_c00292{bottom:627.026667pt;}
.y5b_c00292{bottom:642.440000pt;}
.y5a_c00292{bottom:643.026667pt;}
.y58_c00292{bottom:643.400000pt;}
.y59_c00292{bottom:644.360000pt;}
.y5c_c00292{bottom:644.560000pt;}
.y57_c00292{bottom:661.106667pt;}
.y56_c00292{bottom:662.640000pt;}
.y55_c00292{bottom:663.026667pt;}
.y54_c00292{bottom:663.973333pt;}
.y53_c00292{bottom:678.440000pt;}
.y4f_c00292{bottom:679.226667pt;}
.y52_c00292{bottom:679.973333pt;}
.y51_c00292{bottom:680.360000pt;}
.y50_c00292{bottom:681.306667pt;}
.y4d_c00292{bottom:694.640000pt;}
.y48_c00292{bottom:695.773333pt;}
.y4a_c00292{bottom:696.560000pt;}
.y4c_c00292{bottom:696.933333pt;}
.y4b_c00292{bottom:697.306667pt;}
.y49_c00292{bottom:697.693333pt;}
.y4e_c00292{bottom:698.640000pt;}
.y44_c00292{bottom:712.160000pt;}
.y46_c00292{bottom:713.106667pt;}
.y43_c00292{bottom:713.893333pt;}
.y45_c00292{bottom:714.640000pt;}
.y42_c00292{bottom:715.026667pt;}
.y47_c00292{bottom:715.973333pt;}
.y3d_c00292{bottom:730.440000pt;}
.y40_c00292{bottom:731.226667pt;}
.y41_c00292{bottom:731.973333pt;}
.y3c_c00292{bottom:732.360000pt;}
.y3f_c00292{bottom:732.560000pt;}
.y3e_c00292{bottom:733.306667pt;}
.y3a_c00292{bottom:747.773333pt;}
.y39_c00292{bottom:749.693333pt;}
.y3b_c00292{bottom:750.640000pt;}
.y37_c00292{bottom:765.893333pt;}
.y34_c00292{bottom:766.440000pt;}
.y35_c00292{bottom:766.640000pt;}
.y36_c00292{bottom:767.026667pt;}
.y38_c00292{bottom:767.973333pt;}
.y33_c00292{bottom:768.360000pt;}
.y2e_c00292{bottom:781.693333pt;}
.y2f_c00292{bottom:782.440000pt;}
.y32_c00292{bottom:783.773333pt;}
.y30_c00292{bottom:784.360000pt;}
.y2d_c00292{bottom:784.560000pt;}
.y31_c00292{bottom:785.306667pt;}
.y2c_c00292{bottom:785.693333pt;}
.y2a_c00292{bottom:799.973333pt;}
.y28_c00292{bottom:801.106667pt;}
.y29_c00292{bottom:801.893333pt;}
.y2b_c00292{bottom:802.640000pt;}
.y27_c00292{bottom:803.026667pt;}
.y26_c00292{bottom:816.360000pt;}
.y24_c00292{bottom:818.440000pt;}
.y25_c00292{bottom:819.400000pt;}
.y23_c00292{bottom:819.973333pt;}
.y22_c00292{bottom:820.360000pt;}
.y20_c00292{bottom:835.773333pt;}
.y1f_c00292{bottom:836.560000pt;}
.y21_c00292{bottom:837.306667pt;}
.y1e_c00292{bottom:837.693333pt;}
.y1b_c00292{bottom:853.106667pt;}
.y1d_c00292{bottom:853.893333pt;}
.y1c_c00292{bottom:855.026667pt;}
.y1a_c00292{bottom:870.440000pt;}
.y19_c00292{bottom:871.400000pt;}
.y18_c00292{bottom:872.360000pt;}
.y14_c00292{bottom:887.773333pt;}
.y17_c00292{bottom:889.693333pt;}
.y15_c00292{bottom:889.893333pt;}
.y16_c00292{bottom:890.640000pt;}
.yf_c00292{bottom:905.106667pt;}
.y12_c00292{bottom:905.306667pt;}
.y13_c00292{bottom:906.640000pt;}
.y10_c00292{bottom:907.026667pt;}
.y11_c00292{bottom:907.226667pt;}
.ye_c00292{bottom:907.973333pt;}
.y9_c00292{bottom:922.440000pt;}
.yd_c00292{bottom:922.640000pt;}
.yb_c00292{bottom:923.400000pt;}
.ya_c00292{bottom:924.360000pt;}
.yc_c00292{bottom:924.560000pt;}
.y6_c00292{bottom:939.026667pt;}
.y8_c00292{bottom:939.773333pt;}
.y3_c00292{bottom:941.693333pt;}
.y4_c00292{bottom:941.706667pt;}
.y7_c00292{bottom:941.893333pt;}
.y5_c00292{bottom:942.640000pt;}
.y1_c00292{bottom:975.773333pt;}
.y2_c00292{bottom:976.933333pt;}
.h4_c00292{height:3.739141pt;}
.h6_c00292{height:20.466875pt;}
.h2_c00292{height:22.303646pt;}
.h5_c00292{height:27.879557pt;}
.h3_c00292{height:31.618698pt;}
.h7_c00292{height:35.357839pt;}
.h8_c00292{height:36.952031pt;}
.h1_c00292{height:39.031380pt;}
.h9_c00292{height:42.770521pt;}
.h0_c00292{height:1186.666667pt;}
.w0_c00292{width:782.666667pt;}
.x0_c00292{left:0.000000pt;}
.x11_c00292{left:134.293333pt;}
.xeb_c00292{left:135.240000pt;}
.xa4_c00292{left:136.373333pt;}
.xd3_c00292{left:147.626667pt;}
.x3_c00292{left:148.573333pt;}
.xab_c00292{left:150.666667pt;}
.x103_c00292{left:151.626667pt;}
.x100_c00292{left:153.706667pt;}
.x60_c00292{left:159.800000pt;}
.x88_c00292{left:161.333333pt;}
.x7a_c00292{left:162.666667pt;}
.xee_c00292{left:164.960000pt;}
.x36_c00292{left:166.666667pt;}
.x4a_c00292{left:168.000000pt;}
.x1f_c00292{left:170.666667pt;}
.x82_c00292{left:172.000000pt;}
.x90_c00292{left:173.706667pt;}
.x40_c00292{left:176.000000pt;}
.x101_c00292{left:177.333333pt;}
.x55_c00292{left:180.000000pt;}
.x9a_c00292{left:182.666667pt;}
.xd9_c00292{left:184.000000pt;}
.xd6_c00292{left:185.706667pt;}
.xf2_c00292{left:187.626667pt;}
.xce_c00292{left:190.293333pt;}
.x12_c00292{left:193.706667pt;}
.x61_c00292{left:196.373333pt;}
.x56_c00292{left:197.706667pt;}
.x6e_c00292{left:198.666667pt;}
.x4b_c00292{left:200.960000pt;}
.xa5_c00292{left:205.706667pt;}
.xb1_c00292{left:206.666667pt;}
.x7b_c00292{left:208.000000pt;}
.x4_c00292{left:210.666667pt;}
.xcb_c00292{left:211.626667pt;}
.xb8_c00292{left:213.706667pt;}
.xac_c00292{left:217.333333pt;}
.x20_c00292{left:218.666667pt;}
.x9b_c00292{left:220.000000pt;}
.xde_c00292{left:221.333333pt;}
.x91_c00292{left:223.040000pt;}
.x57_c00292{left:224.000000pt;}
.x62_c00292{left:227.040000pt;}
.x2d_c00292{left:228.000000pt;}
.x5_c00292{left:229.333333pt;}
.xdb_c00292{left:230.666667pt;}
.xe0_c00292{left:232.000000pt;}
.x102_c00292{left:232.960000pt;}
.x21_c00292{left:234.293333pt;}
.xef_c00292{left:236.000000pt;}
.x58_c00292{left:237.706667pt;}
.xd7_c00292{left:238.666667pt;}
.xbf_c00292{left:239.626667pt;}
.xf8_c00292{left:241.706667pt;}
.x41_c00292{left:242.666667pt;}
.x2e_c00292{left:245.333333pt;}
.x6_c00292{left:247.040000pt;}
.xb2_c00292{left:248.373333pt;}
.x13_c00292{left:249.333333pt;}
.xe1_c00292{left:250.666667pt;}
.x63_c00292{left:252.000000pt;}
.x6f_c00292{left:253.333333pt;}
.xf3_c00292{left:254.293333pt;}
.x2f_c00292{left:256.000000pt;}
.xd8_c00292{left:257.333333pt;}
.x7c_c00292{left:258.666667pt;}
.x59_c00292{left:260.000000pt;}
.x4c_c00292{left:260.960000pt;}
.xa6_c00292{left:264.000000pt;}
.xe8_c00292{left:266.666667pt;}
.x7_c00292{left:268.960000pt;}
.xd4_c00292{left:270.293333pt;}
.x83_c00292{left:272.000000pt;}
.x9c_c00292{left:272.960000pt;}
.x42_c00292{left:274.666667pt;}
.x7d_c00292{left:276.373333pt;}
.xcc_c00292{left:277.333333pt;}
.x37_c00292{left:278.293333pt;}
.xa7_c00292{left:280.373333pt;}
.x14_c00292{left:282.293333pt;}
.x9d_c00292{left:284.000000pt;}
.x22_c00292{left:287.040000pt;}
.xfe_c00292{left:288.000000pt;}
.xb3_c00292{left:289.333333pt;}
.xe2_c00292{left:290.666667pt;}
.xc6_c00292{left:292.373333pt;}
.x30_c00292{left:293.706667pt;}
.x92_c00292{left:294.666667pt;}
.xf5_c00292{left:297.333333pt;}
.x64_c00292{left:298.666667pt;}
.x7e_c00292{left:300.373333pt;}
.x70_c00292{left:301.333333pt;}
.x15_c00292{left:303.040000pt;}
.x9e_c00292{left:304.760000pt;}
.xdc_c00292{left:307.800000pt;}
.xf9_c00292{left:309.706667pt;}
.xc0_c00292{left:312.000000pt;}
.x93_c00292{left:313.333333pt;}
.xcf_c00292{left:314.666667pt;}
.x71_c00292{left:317.706667pt;}
.xe9_c00292{left:318.666667pt;}
.x84_c00292{left:319.626667pt;}
.x23_c00292{left:321.706667pt;}
.x9f_c00292{left:323.040000pt;}
.x38_c00292{left:324.960000pt;}
.x89_c00292{left:328.373333pt;}
.x8_c00292{left:330.666667pt;}
.x4d_c00292{left:332.000000pt;}
.xfa_c00292{left:332.960000pt;}
.x24_c00292{left:334.293333pt;}
.xc7_c00292{left:336.960000pt;}
.xf6_c00292{left:340.000000pt;}
.x43_c00292{left:342.293333pt;}
.xdd_c00292{left:344.000000pt;}
.x5a_c00292{left:345.706667pt;}
.x94_c00292{left:347.040000pt;}
.xda_c00292{left:350.666667pt;}
.xc8_c00292{left:353.706667pt;}
.x44_c00292{left:357.706667pt;}
.x2_c00292{left:358.666667pt;}
.xad_c00292{left:359.626667pt;}
.x8a_c00292{left:361.706667pt;}
.x72_c00292{left:363.040000pt;}
.x39_c00292{left:364.960000pt;}
.x25_c00292{left:366.666667pt;}
.x5b_c00292{left:367.626667pt;}
.x9_c00292{left:368.960000pt;}
.xb4_c00292{left:370.666667pt;}
.xea_c00292{left:372.373333pt;}
.x4e_c00292{left:373.333333pt;}
.x7f_c00292{left:376.000000pt;}
.x65_c00292{left:377.333333pt;}
.x31_c00292{left:378.666667pt;}
.xb9_c00292{left:381.706667pt;}
.x95_c00292{left:382.666667pt;}
.x16_c00292{left:385.333333pt;}
.xb5_c00292{left:387.040000pt;}
.x73_c00292{left:388.373333pt;}
.xa8_c00292{left:393.333333pt;}
.x32_c00292{left:395.626667pt;}
.x66_c00292{left:397.333333pt;}
.x96_c00292{left:399.626667pt;}
.x17_c00292{left:401.333333pt;}
.x4f_c00292{left:402.666667pt;}
.xf7_c00292{left:403.626667pt;}
.x26_c00292{left:404.960000pt;}
.x8b_c00292{left:409.333333pt;}
.xb6_c00292{left:410.666667pt;}
.x85_c00292{left:413.333333pt;}
.x74_c00292{left:415.040000pt;}
.x80_c00292{left:416.373333pt;}
.xba_c00292{left:418.293333pt;}
.x3a_c00292{left:420.373333pt;}
.x5c_c00292{left:421.906667pt;}
.xc9_c00292{left:423.626667pt;}
.x86_c00292{left:428.373333pt;}
.xa0_c00292{left:431.040000pt;}
.xa_c00292{left:434.293333pt;}
.xa9_c00292{left:436.960000pt;}
.x45_c00292{left:441.333333pt;}
.xe3_c00292{left:443.040000pt;}
.x3b_c00292{left:444.000000pt;}
.xae_c00292{left:445.333333pt;}
.x18_c00292{left:446.666667pt;}
.x104_c00292{left:448.000000pt;}
.x50_c00292{left:449.333333pt;}
.xb_c00292{left:451.040000pt;}
.xaa_c00292{left:452.960000pt;}
.x33_c00292{left:454.666667pt;}
.x75_c00292{left:459.040000pt;}
.xbb_c00292{left:460.000000pt;}
.x67_c00292{left:461.333333pt;}
.x97_c00292{left:463.040000pt;}
.xc1_c00292{left:464.000000pt;}
.xa1_c00292{left:465.333333pt;}
.x19_c00292{left:467.040000pt;}
.x51_c00292{left:469.333333pt;}
.x34_c00292{left:470.666667pt;}
.x46_c00292{left:472.000000pt;}
.xdf_c00292{left:473.706667pt;}
.xc2_c00292{left:475.040000pt;}
.x27_c00292{left:476.000000pt;}
.xcd_c00292{left:478.293333pt;}
.xc_c00292{left:481.333333pt;}
.xaf_c00292{left:483.040000pt;}
.x76_c00292{left:484.373333pt;}
.x47_c00292{left:485.333333pt;}
.xbc_c00292{left:486.293333pt;}
.x68_c00292{left:488.373333pt;}
.x3c_c00292{left:489.706667pt;}
.x1a_c00292{left:492.000000pt;}
.x8c_c00292{left:493.706667pt;}
.xd_c00292{left:497.333333pt;}
.x81_c00292{left:499.626667pt;}
.xca_c00292{left:502.666667pt;}
.x5d_c00292{left:504.000000pt;}
.x28_c00292{left:505.333333pt;}
.xc3_c00292{left:506.666667pt;}
.x35_c00292{left:509.133333pt;}
.xf0_c00292{left:511.626667pt;}
.xf4_c00292{left:513.333333pt;}
.x1b_c00292{left:515.626667pt;}
.x105_c00292{left:517.333333pt;}
.x98_c00292{left:518.666667pt;}
.xd5_c00292{left:519.626667pt;}
.x3d_c00292{left:521.333333pt;}
.x69_c00292{left:522.666667pt;}
.xe4_c00292{left:524.000000pt;}
.xd0_c00292{left:524.960000pt;}
.xfb_c00292{left:528.373333pt;}
.x8d_c00292{left:529.333333pt;}
.xb0_c00292{left:532.000000pt;}
.x1c_c00292{left:533.706667pt;}
.x106_c00292{left:535.040000pt;}
.x6a_c00292{left:537.333333pt;}
.x87_c00292{left:540.373333pt;}
.xe5_c00292{left:541.333333pt;}
.xd1_c00292{left:542.666667pt;}
.xe_c00292{left:544.000000pt;}
.x77_c00292{left:545.706667pt;}
.x48_c00292{left:549.333333pt;}
.x29_c00292{left:552.000000pt;}
.xec_c00292{left:553.333333pt;}
.xfc_c00292{left:555.040000pt;}
.xc4_c00292{left:556.373333pt;}
.x52_c00292{left:557.333333pt;}
.xff_c00292{left:558.666667pt;}
.xf_c00292{left:560.373333pt;}
.x8e_c00292{left:563.040000pt;}
.xbd_c00292{left:564.000000pt;}
.x2a_c00292{left:566.293333pt;}
.x3e_c00292{left:567.626667pt;}
.x78_c00292{left:571.626667pt;}
.x1d_c00292{left:576.373333pt;}
.x53_c00292{left:577.706667pt;}
.xf1_c00292{left:578.666667pt;}
.xa2_c00292{left:580.000000pt;}
.x5e_c00292{left:583.626667pt;}
.xe6_c00292{left:586.666667pt;}
.xed_c00292{left:587.626667pt;}
.x49_c00292{left:592.000000pt;}
.x10_c00292{left:594.293333pt;}
.x3f_c00292{left:596.000000pt;}
.x79_c00292{left:597.333333pt;}
.x6b_c00292{left:598.293333pt;}
.x5f_c00292{left:600.960000pt;}
.xbe_c00292{left:602.666667pt;}
.x54_c00292{left:604.373333pt;}
.x2b_c00292{left:605.333333pt;}
.x8f_c00292{left:612.373333pt;}
.xb7_c00292{left:613.333333pt;}
.xc5_c00292{left:614.666667pt;}
.x6c_c00292{left:615.626667pt;}
.xd2_c00292{left:616.960000pt;}
.x1_c00292{left:625.333333pt;}
.xe7_c00292{left:626.666667pt;}
.x2c_c00292{left:628.373333pt;}
.x99_c00292{left:629.706667pt;}
.x1e_c00292{left:631.040000pt;}
.x6d_c00292{left:636.000000pt;}
.xa3_c00292{left:637.333333pt;}
.xfd_c00292{left:639.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_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_ecc894315e2150e8fb01dd4f.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc7_c00293{transform:matrix(0.322095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322095,0.000000,0.000000,0.250000,0,0);}
.m0_c00293{transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);}
.m46_c00293{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m30_c00293{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mdb_c00293{transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);}
.m20_c00293{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m9e_c00293{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m49_c00293{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mb4_c00293{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m69_c00293{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m90_c00293{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.mea_c00293{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.md7_c00293{transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);}
.m16_c00293{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m77_c00293{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.mf0_c00293{transform:matrix(0.383581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383581,0.000000,0.000000,0.250000,0,0);}
.m31_c00293{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m101_c00293{transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);}
.m79_c00293{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m67_c00293{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m10a_c00293{transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);}
.m89_c00293{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.mf_c00293{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m1b_c00293{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m60_c00293{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.ma8_c00293{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m42_c00293{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m78_c00293{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m6c_c00293{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mf9_c00293{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.m97_c00293{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m25_c00293{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.ma_c00293{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m53_c00293{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.me0_c00293{transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);}
.med_c00293{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.m52_c00293{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.me5_c00293{transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);}
.m37_c00293{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.md1_c00293{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m54_c00293{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m98_c00293{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m8_c00293{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.me_c00293{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m6e_c00293{transform:matrix(0.416976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416976,0.000000,0.000000,0.250000,0,0);}
.m82_c00293{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m4f_c00293{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m6f_c00293{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.m102_c00293{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m71_c00293{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m5a_c00293{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m9_c00293{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.me7_c00293{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m38_c00293{transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);}
.m48_c00293{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mb5_c00293{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.mb8_c00293{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m8f_c00293{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m96_c00293{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.mba_c00293{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m2c_c00293{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m73_c00293{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mf3_c00293{transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);}
.m9c_c00293{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m66_c00293{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.mde_c00293{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mf5_c00293{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.ma2_c00293{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m7d_c00293{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mc8_c00293{transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);}
.m56_c00293{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mce_c00293{transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);}
.m35_c00293{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m76_c00293{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m33_c00293{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m7e_c00293{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m61_c00293{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.ma4_c00293{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m7c_c00293{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.mcb_c00293{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m62_c00293{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m93_c00293{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m19_c00293{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m8d_c00293{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m34_c00293{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mf1_c00293{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.mc5_c00293{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mf7_c00293{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.meb_c00293{transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);}
.m10b_c00293{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.mbf_c00293{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m4a_c00293{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m11_c00293{transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);}
.m68_c00293{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m6b_c00293{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m81_c00293{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.mab_c00293{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m106_c00293{transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);}
.m13_c00293{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.md4_c00293{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.mfe_c00293{transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);}
.me8_c00293{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.mee_c00293{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mda_c00293{transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);}
.mfa_c00293{transform:matrix(0.477206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477206,0.000000,0.000000,0.250000,0,0);}
.m28_c00293{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.ma5_c00293{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m7a_c00293{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.mf4_c00293{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.mbd_c00293{transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);}
.m15_c00293{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m2b_c00293{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m85_c00293{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m58_c00293{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m4c_c00293{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m4e_c00293{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.me3_c00293{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.m86_c00293{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m17_c00293{transform:matrix(0.490724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490724,0.000000,0.000000,0.250000,0,0);}
.mb1_c00293{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m95_c00293{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m2f_c00293{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m5d_c00293{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m70_c00293{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m12_c00293{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);}
.mc6_c00293{transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);}
.m2e_c00293{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m43_c00293{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.me2_c00293{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.mb7_c00293{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m99_c00293{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m50_c00293{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m59_c00293{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m109_c00293{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.m8c_c00293{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m65_c00293{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m103_c00293{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.mc3_c00293{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m18_c00293{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mf6_c00293{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m9a_c00293{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m8a_c00293{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m14_c00293{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.ma7_c00293{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m4_c00293{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mdf_c00293{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.mc9_c00293{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);}
.mff_c00293{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m64_c00293{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m75_c00293{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.md5_c00293{transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);}
.m8b_c00293{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.md_c00293{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.mca_c00293{transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);}
.m45_c00293{transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);}
.m6_c00293{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mfd_c00293{transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);}
.m7f_c00293{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m4d_c00293{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mc_c00293{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.md2_c00293{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m2d_c00293{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m88_c00293{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mb0_c00293{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m74_c00293{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m9f_c00293{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m5e_c00293{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mb3_c00293{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m7b_c00293{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m6a_c00293{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m3e_c00293{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m9d_c00293{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mc1_c00293{transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);}
.m23_c00293{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m108_c00293{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m36_c00293{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m2a_c00293{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mcc_c00293{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m1c_c00293{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m87_c00293{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mf8_c00293{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.mec_c00293{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);}
.m92_c00293{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m10f_c00293{transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);}
.m111_c00293{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m4b_c00293{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m3b_c00293{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m107_c00293{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m1a_c00293{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.md8_c00293{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m2_c00293{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.me9_c00293{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m44_c00293{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m5c_c00293{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mcd_c00293{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m40_c00293{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m57_c00293{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.mbe_c00293{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.m21_c00293{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m47_c00293{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m63_c00293{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mac_c00293{transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);}
.ma0_c00293{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m94_c00293{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.ma3_c00293{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m72_c00293{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.mcf_c00293{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);}
.mb9_c00293{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m6d_c00293{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.md3_c00293{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m10e_c00293{transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);}
.ma1_c00293{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.mb_c00293{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m51_c00293{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m91_c00293{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m8e_c00293{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m1f_c00293{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m83_c00293{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m7_c00293{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m3a_c00293{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mdc_c00293{transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);}
.m26_c00293{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mbb_c00293{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.maf_c00293{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m55_c00293{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.mfb_c00293{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mc2_c00293{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m5b_c00293{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_c00293{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m10d_c00293{transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);}
.m1_c00293{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.mb6_c00293{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m22_c00293{transform:matrix(0.637821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637821,0.000000,0.000000,0.250000,0,0);}
.me4_c00293{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.mdd_c00293{transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);}
.mc0_c00293{transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);}
.mc4_c00293{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.maa_c00293{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);}
.mad_c00293{transform:matrix(0.651471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651471,0.000000,0.000000,0.250000,0,0);}
.mf2_c00293{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m110_c00293{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m39_c00293{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.md6_c00293{transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);}
.m27_c00293{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m5_c00293{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.me6_c00293{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.mef_c00293{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m3f_c00293{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.m105_c00293{transform:matrix(0.678676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.678676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.678676,0.000000,0.000000,0.250000,0,0);}
.md9_c00293{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.md0_c00293{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m32_c00293{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m100_c00293{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.mae_c00293{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);}
.m84_c00293{transform:matrix(0.713235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713235,0.000000,0.000000,0.250000,0,0);}
.mbc_c00293{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m9b_c00293{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m3_c00293{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m41_c00293{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m29_c00293{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m3c_c00293{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m24_c00293{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m5f_c00293{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m1d_c00293{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m80_c00293{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m104_c00293{transform:matrix(0.794872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.794872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.794872,0.000000,0.000000,0.250000,0,0);}
.m1e_c00293{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.ma6_c00293{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.me1_c00293{transform:matrix(0.922907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.922907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.922907,0.000000,0.000000,0.250000,0,0);}
.mfc_c00293{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m10_c00293{transform:matrix(1.021176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.021176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.021176,0.000000,0.000000,0.250000,0,0);}
.ma9_c00293{transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);}
.m10c_c00293{transform:matrix(1.066079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.066079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.066079,0.000000,0.000000,0.250000,0,0);}
.mb2_c00293{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,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:-4.530080px;}
.ws1_c00293{word-spacing:-0.153823px;}
.ws2_c00293{word-spacing:0.000000px;}
.fc0_c00293{color:transparent;}
.fs7_c00293{font-size:13.620000px;}
.fs5_c00293{font-size:18.720000px;}
.fs1_c00293{font-size:20.400000px;}
.fs3_c00293{font-size:25.500000px;}
.fs2_c00293{font-size:28.920000px;}
.fs4_c00293{font-size:32.340000px;}
.fs0_c00293{font-size:35.700000px;}
.fs6_c00293{font-size:39.120000px;}
.y0_c00293{bottom:0.000000px;}
.yf9_c00293{bottom:231.825000px;}
.yfa_c00293{bottom:232.905000px;}
.yf8_c00293{bottom:233.970000px;}
.yf7_c00293{bottom:234.195000px;}
.yf5_c00293{bottom:246.825000px;}
.yf1_c00293{bottom:247.050000px;}
.yf3_c00293{bottom:247.905000px;}
.yf2_c00293{bottom:248.550000px;}
.yf6_c00293{bottom:248.970000px;}
.yf4_c00293{bottom:250.050000px;}
.yeb_c00293{bottom:260.325000px;}
.yee_c00293{bottom:261.825000px;}
.yea_c00293{bottom:262.050000px;}
.yed_c00293{bottom:262.470000px;}
.yec_c00293{bottom:263.550000px;}
.yf0_c00293{bottom:263.970000px;}
.yef_c00293{bottom:264.195000px;}
.ye9_c00293{bottom:275.325000px;}
.ye7_c00293{bottom:276.405000px;}
.ye8_c00293{bottom:278.550000px;}
.ye6_c00293{bottom:291.825000px;}
.ye3_c00293{bottom:292.905000px;}
.ye1_c00293{bottom:293.130000px;}
.ye2_c00293{bottom:293.550000px;}
.ye4_c00293{bottom:293.970000px;}
.ye5_c00293{bottom:294.195000px;}
.ye0_c00293{bottom:305.325000px;}
.ydf_c00293{bottom:308.550000px;}
.yde_c00293{bottom:319.470000px;}
.yda_c00293{bottom:320.325000px;}
.ydc_c00293{bottom:321.405000px;}
.yd8_c00293{bottom:321.630000px;}
.yd9_c00293{bottom:322.470000px;}
.ydd_c00293{bottom:322.695000px;}
.ydb_c00293{bottom:323.550000px;}
.yd7_c00293{bottom:336.405000px;}
.yd5_c00293{bottom:337.470000px;}
.yd6_c00293{bottom:338.550000px;}
.yd2_c00293{bottom:349.470000px;}
.yd1_c00293{bottom:350.325000px;}
.yd4_c00293{bottom:351.405000px;}
.yce_c00293{bottom:351.630000px;}
.ycf_c00293{bottom:352.470000px;}
.yd0_c00293{bottom:352.695000px;}
.yd3_c00293{bottom:353.550000px;}
.ycb_c00293{bottom:364.470000px;}
.ycd_c00293{bottom:365.325000px;}
.yc8_c00293{bottom:366.405000px;}
.yc9_c00293{bottom:366.630000px;}
.ycc_c00293{bottom:367.470000px;}
.yca_c00293{bottom:368.550000px;}
.yc6_c00293{bottom:379.470000px;}
.yc7_c00293{bottom:380.325000px;}
.yc1_c00293{bottom:380.550000px;}
.yc5_c00293{bottom:381.405000px;}
.yc3_c00293{bottom:381.630000px;}
.yc4_c00293{bottom:382.470000px;}
.yc2_c00293{bottom:383.550000px;}
.ybe_c00293{bottom:395.325000px;}
.ybf_c00293{bottom:396.405000px;}
.ybd_c00293{bottom:397.470000px;}
.ybc_c00293{bottom:397.695000px;}
.yc0_c00293{bottom:398.550000px;}
.yba_c00293{bottom:409.470000px;}
.ybb_c00293{bottom:409.905000px;}
.yb8_c00293{bottom:410.325000px;}
.yb9_c00293{bottom:411.405000px;}
.yb7_c00293{bottom:411.630000px;}
.yb6_c00293{bottom:412.050000px;}
.yb5_c00293{bottom:424.905000px;}
.yb3_c00293{bottom:438.825000px;}
.yae_c00293{bottom:439.470000px;}
.yaf_c00293{bottom:439.905000px;}
.yb4_c00293{bottom:440.130000px;}
.yb1_c00293{bottom:440.970000px;}
.yb2_c00293{bottom:442.050000px;}
.yb0_c00293{bottom:442.470000px;}
.yad_c00293{bottom:453.825000px;}
.yaa_c00293{bottom:454.905000px;}
.yac_c00293{bottom:455.970000px;}
.yab_c00293{bottom:456.195000px;}
.ya9_c00293{bottom:457.050000px;}
.ya8_c00293{bottom:469.905000px;}
.ya5_c00293{bottom:470.970000px;}
.ya6_c00293{bottom:471.195000px;}
.ya7_c00293{bottom:472.050000px;}
.ya0_c00293{bottom:483.825000px;}
.y9e_c00293{bottom:484.470000px;}
.ya3_c00293{bottom:484.905000px;}
.ya2_c00293{bottom:485.130000px;}
.ya4_c00293{bottom:485.550000px;}
.y9f_c00293{bottom:485.970000px;}
.ya1_c00293{bottom:486.195000px;}
.y9d_c00293{bottom:497.970000px;}
.y9c_c00293{bottom:498.825000px;}
.y9a_c00293{bottom:500.130000px;}
.y9b_c00293{bottom:502.050000px;}
.y99_c00293{bottom:513.405000px;}
.y96_c00293{bottom:513.825000px;}
.y93_c00293{bottom:514.050000px;}
.y94_c00293{bottom:514.905000px;}
.y97_c00293{bottom:515.130000px;}
.y98_c00293{bottom:515.550000px;}
.y95_c00293{bottom:515.970000px;}
.y91_c00293{bottom:527.970000px;}
.y90_c00293{bottom:528.825000px;}
.y92_c00293{bottom:532.050000px;}
.y8b_c00293{bottom:541.470000px;}
.y8f_c00293{bottom:542.325000px;}
.y8a_c00293{bottom:543.405000px;}
.y88_c00293{bottom:544.050000px;}
.y8d_c00293{bottom:544.470000px;}
.y8e_c00293{bottom:544.695000px;}
.y8c_c00293{bottom:545.550000px;}
.y89_c00293{bottom:545.970000px;}
.y87_c00293{bottom:556.470000px;}
.y85_c00293{bottom:558.405000px;}
.y86_c00293{bottom:558.630000px;}
.y84_c00293{bottom:560.550000px;}
.y7e_c00293{bottom:572.325000px;}
.y7f_c00293{bottom:572.550000px;}
.y80_c00293{bottom:573.405000px;}
.y7d_c00293{bottom:573.630000px;}
.y83_c00293{bottom:574.050000px;}
.y81_c00293{bottom:574.470000px;}
.y82_c00293{bottom:575.550000px;}
.y7c_c00293{bottom:587.325000px;}
.y7b_c00293{bottom:589.470000px;}
.y7a_c00293{bottom:590.550000px;}
.y79_c00293{bottom:602.325000px;}
.y76_c00293{bottom:603.405000px;}
.y74_c00293{bottom:603.630000px;}
.y77_c00293{bottom:604.470000px;}
.y78_c00293{bottom:604.695000px;}
.y75_c00293{bottom:605.550000px;}
.y73_c00293{bottom:623.745000px;}
.y72_c00293{bottom:625.905000px;}
.y71_c00293{bottom:626.970000px;}
.y6e_c00293{bottom:643.470000px;}
.y6c_c00293{bottom:645.630000px;}
.y6f_c00293{bottom:645.825000px;}
.y70_c00293{bottom:646.470000px;}
.y6d_c00293{bottom:646.905000px;}
.y6a_c00293{bottom:662.970000px;}
.y68_c00293{bottom:664.245000px;}
.y6b_c00293{bottom:665.130000px;}
.y66_c00293{bottom:665.325000px;}
.y69_c00293{bottom:665.970000px;}
.y67_c00293{bottom:666.405000px;}
.y64_c00293{bottom:683.745000px;}
.y65_c00293{bottom:684.630000px;}
.y63_c00293{bottom:685.905000px;}
.y61_c00293{bottom:702.405000px;}
.y62_c00293{bottom:703.245000px;}
.y5f_c00293{bottom:705.405000px;}
.y60_c00293{bottom:705.630000px;}
.y5e_c00293{bottom:722.745000px;}
.y5d_c00293{bottom:724.905000px;}
.y5a_c00293{bottom:741.405000px;}
.y5b_c00293{bottom:742.245000px;}
.y59_c00293{bottom:743.745000px;}
.y5c_c00293{bottom:744.405000px;}
.y58_c00293{bottom:744.825000px;}
.y57_c00293{bottom:745.905000px;}
.y56_c00293{bottom:761.745000px;}
.y55_c00293{bottom:763.050000px;}
.y50_c00293{bottom:763.245000px;}
.y54_c00293{bottom:763.905000px;}
.y52_c00293{bottom:764.130000px;}
.y53_c00293{bottom:764.970000px;}
.y51_c00293{bottom:765.405000px;}
.y4a_c00293{bottom:781.905000px;}
.y4f_c00293{bottom:782.325000px;}
.y4c_c00293{bottom:782.745000px;}
.y4d_c00293{bottom:783.825000px;}
.y4b_c00293{bottom:784.905000px;}
.y4e_c00293{bottom:785.970000px;}
.y49_c00293{bottom:801.405000px;}
.y47_c00293{bottom:802.245000px;}
.y48_c00293{bottom:804.405000px;}
.y44_c00293{bottom:822.825000px;}
.y45_c00293{bottom:823.905000px;}
.y46_c00293{bottom:824.970000px;}
.y3f_c00293{bottom:841.245000px;}
.y40_c00293{bottom:841.905000px;}
.y42_c00293{bottom:842.325000px;}
.y41_c00293{bottom:843.405000px;}
.y43_c00293{bottom:844.470000px;}
.y3a_c00293{bottom:860.745000px;}
.y3c_c00293{bottom:861.825000px;}
.y3e_c00293{bottom:862.470000px;}
.y3d_c00293{bottom:862.905000px;}
.y3b_c00293{bottom:863.130000px;}
.y38_c00293{bottom:880.245000px;}
.y35_c00293{bottom:881.745000px;}
.y37_c00293{bottom:882.405000px;}
.y39_c00293{bottom:882.630000px;}
.y36_c00293{bottom:883.905000px;}
.y31_c00293{bottom:899.745000px;}
.y34_c00293{bottom:900.825000px;}
.y33_c00293{bottom:901.905000px;}
.y32_c00293{bottom:902.970000px;}
.y2f_c00293{bottom:918.405000px;}
.y2c_c00293{bottom:920.745000px;}
.y2d_c00293{bottom:921.405000px;}
.y30_c00293{bottom:921.630000px;}
.y2e_c00293{bottom:922.470000px;}
.y2b_c00293{bottom:922.905000px;}
.y28_c00293{bottom:938.970000px;}
.y27_c00293{bottom:939.180000px;}
.y25_c00293{bottom:940.245000px;}
.y24_c00293{bottom:941.130000px;}
.y29_c00293{bottom:941.325000px;}
.y2a_c00293{bottom:941.970000px;}
.y26_c00293{bottom:942.405000px;}
.y1f_c00293{bottom:959.745000px;}
.y20_c00293{bottom:960.825000px;}
.y22_c00293{bottom:961.905000px;}
.y23_c00293{bottom:962.130000px;}
.y21_c00293{bottom:962.970000px;}
.y1b_c00293{bottom:979.245000px;}
.y1d_c00293{bottom:980.325000px;}
.y1a_c00293{bottom:980.970000px;}
.y19_c00293{bottom:981.405000px;}
.y1c_c00293{bottom:981.630000px;}
.y1e_c00293{bottom:982.470000px;}
.y17_c00293{bottom:998.325000px;}
.y16_c00293{bottom:998.745000px;}
.y18_c00293{bottom:999.630000px;}
.y14_c00293{bottom:1000.905000px;}
.y15_c00293{bottom:1001.130000px;}
.y10_c00293{bottom:1017.405000px;}
.ye_c00293{bottom:1018.245000px;}
.yf_c00293{bottom:1019.325000px;}
.y11_c00293{bottom:1020.405000px;}
.y12_c00293{bottom:1020.630000px;}
.y13_c00293{bottom:1021.470000px;}
.yc_c00293{bottom:1037.745000px;}
.y9_c00293{bottom:1037.970000px;}
.yb_c00293{bottom:1038.405000px;}
.yd_c00293{bottom:1038.825000px;}
.y8_c00293{bottom:1039.245000px;}
.ya_c00293{bottom:1040.325000px;}
.y7_c00293{bottom:1041.405000px;}
.y6_c00293{bottom:1057.245000px;}
.y5_c00293{bottom:1057.470000px;}
.y3_c00293{bottom:1059.405000px;}
.y4_c00293{bottom:1060.470000px;}
.y2_c00293{bottom:1097.550000px;}
.y1_c00293{bottom:1097.745000px;}
.h8_c00293{height:16.752334px;}
.h6_c00293{height:23.025234px;}
.h2_c00293{height:25.091602px;}
.h4_c00293{height:31.364502px;}
.h3_c00293{height:35.571035px;}
.h5_c00293{height:39.777568px;}
.h1_c00293{height:43.910303px;}
.h7_c00293{height:48.116836px;}
.h0_c00293{height:1335.000000px;}
.w0_c00293{width:880.500000px;}
.x0_c00293{left:0.000000px;}
.xec_c00293{left:151.920000px;}
.x91_c00293{left:153.000000px;}
.x3_c00293{left:154.080000px;}
.x1_c00293{left:156.000000px;}
.x1b_c00293{left:157.275000px;}
.xe5_c00293{left:163.500000px;}
.xd1_c00293{left:165.000000px;}
.xc5_c00293{left:166.500000px;}
.xbd_c00293{left:167.580000px;}
.x8c_c00293{left:169.080000px;}
.x98_c00293{left:171.000000px;}
.xfd_c00293{left:178.500000px;}
.x4c_c00293{left:180.000000px;}
.xbb_c00293{left:181.500000px;}
.xc3_c00293{left:182.580000px;}
.xbe_c00293{left:184.500000px;}
.x9e_c00293{left:187.080000px;}
.xed_c00293{left:189.420000px;}
.x1c_c00293{left:190.500000px;}
.xee_c00293{left:191.580000px;}
.x4d_c00293{left:195.000000px;}
.xf7_c00293{left:196.500000px;}
.x28_c00293{left:198.000000px;}
.x57_c00293{left:199.080000px;}
.x69_c00293{left:200.580000px;}
.x7a_c00293{left:202.920000px;}
.x36_c00293{left:205.080000px;}
.x92_c00293{left:207.000000px;}
.x105_c00293{left:208.080000px;}
.xc4_c00293{left:210.000000px;}
.xd2_c00293{left:211.080000px;}
.x72_c00293{left:217.500000px;}
.x42_c00293{left:219.420000px;}
.xd4_c00293{left:220.500000px;}
.xb9_c00293{left:221.580000px;}
.xce_c00293{left:223.500000px;}
.x29_c00293{left:224.580000px;}
.xf_c00293{left:226.080000px;}
.x4_c00293{left:228.000000px;}
.xe6_c00293{left:229.500000px;}
.xb5_c00293{left:231.420000px;}
.x62_c00293{left:232.920000px;}
.xf8_c00293{left:234.000000px;}
.x73_c00293{left:235.920000px;}
.xef_c00293{left:237.000000px;}
.xae_c00293{left:238.080000px;}
.x8d_c00293{left:243.000000px;}
.x58_c00293{left:244.080000px;}
.x5_c00293{left:247.080000px;}
.xc6_c00293{left:249.000000px;}
.x4e_c00293{left:252.000000px;}
.xcf_c00293{left:253.920000px;}
.xe3_c00293{left:256.920000px;}
.xf0_c00293{left:258.000000px;}
.x84_c00293{left:259.920000px;}
.x7f_c00293{left:261.420000px;}
.xa7_c00293{left:262.500000px;}
.xf9_c00293{left:263.580000px;}
.x37_c00293{left:265.500000px;}
.x7b_c00293{left:268.080000px;}
.x1d_c00293{left:270.420000px;}
.xb6_c00293{left:271.920000px;}
.xde_c00293{left:277.080000px;}
.xdb_c00293{left:279.000000px;}
.x93_c00293{left:280.500000px;}
.xd3_c00293{left:282.000000px;}
.x9f_c00293{left:283.920000px;}
.xa8_c00293{left:285.000000px;}
.xaf_c00293{left:288.420000px;}
.xdc_c00293{left:291.000000px;}
.x10_c00293{left:292.275000px;}
.xfe_c00293{left:294.420000px;}
.x38_c00293{left:295.500000px;}
.x4f_c00293{left:296.580000px;}
.xbf_c00293{left:298.500000px;}
.xc9_c00293{left:302.580000px;}
.x99_c00293{left:306.000000px;}
.xc7_c00293{left:307.500000px;}
.x6a_c00293{left:308.580000px;}
.x2a_c00293{left:310.500000px;}
.x1e_c00293{left:311.580000px;}
.x43_c00293{left:316.080000px;}
.x63_c00293{left:318.420000px;}
.xbc_c00293{left:319.920000px;}
.xa0_c00293{left:322.080000px;}
.x6_c00293{left:325.500000px;}
.xb0_c00293{left:327.000000px;}
.xf1_c00293{left:328.920000px;}
.x2b_c00293{left:330.420000px;}
.x11_c00293{left:331.500000px;}
.xdf_c00293{left:333.000000px;}
.x1f_c00293{left:337.080000px;}
.xc8_c00293{left:339.000000px;}
.x50_c00293{left:340.080000px;}
.x85_c00293{left:341.580000px;}
.x7_c00293{left:346.920000px;}
.x94_c00293{left:348.000000px;}
.x39_c00293{left:351.000000px;}
.xdd_c00293{left:352.080000px;}
.xa9_c00293{left:354.420000px;}
.x12_c00293{left:356.580000px;}
.x2c_c00293{left:358.920000px;}
.xb7_c00293{left:361.500000px;}
.xba_c00293{left:362.580000px;}
.xe7_c00293{left:364.500000px;}
.xc0_c00293{left:366.000000px;}
.xca_c00293{left:367.920000px;}
.x20_c00293{left:369.000000px;}
.x3a_c00293{left:370.920000px;}
.x8_c00293{left:375.420000px;}
.xa1_c00293{left:378.000000px;}
.xfa_c00293{left:379.500000px;}
.xd5_c00293{left:382.500000px;}
.x74_c00293{left:383.580000px;}
.x80_c00293{left:385.920000px;}
.x64_c00293{left:388.920000px;}
.x101_c00293{left:390.000000px;}
.xaa_c00293{left:391.500000px;}
.x2d_c00293{left:392.580000px;}
.x8e_c00293{left:394.080000px;}
.x9a_c00293{left:396.000000px;}
.x6b_c00293{left:397.500000px;}
.x3b_c00293{left:399.000000px;}
.x86_c00293{left:402.420000px;}
.xe8_c00293{left:405.000000px;}
.xb1_c00293{left:406.500000px;}
.x2_c00293{left:408.000000px;}
.x95_c00293{left:409.500000px;}
.x44_c00293{left:411.000000px;}
.x9_c00293{left:414.000000px;}
.x6c_c00293{left:418.500000px;}
.x51_c00293{left:419.580000px;}
.x7c_c00293{left:421.500000px;}
.x21_c00293{left:422.580000px;}
.xf2_c00293{left:424.920000px;}
.x13_c00293{left:427.275000px;}
.xcb_c00293{left:430.080000px;}
.x45_c00293{left:432.000000px;}
.x87_c00293{left:440.580000px;}
.x3c_c00293{left:442.500000px;}
.x46_c00293{left:445.080000px;}
.x2e_c00293{left:450.000000px;}
.x102_c00293{left:451.500000px;}
.x88_c00293{left:453.000000px;}
.xa_c00293{left:454.500000px;}
.x6d_c00293{left:456.000000px;}
.x59_c00293{left:457.080000px;}
.xab_c00293{left:465.000000px;}
.xe0_c00293{left:466.500000px;}
.x14_c00293{left:467.580000px;}
.xcc_c00293{left:470.580000px;}
.xb8_c00293{left:472.500000px;}
.x5a_c00293{left:475.500000px;}
.x47_c00293{left:477.000000px;}
.xe1_c00293{left:478.500000px;}
.x2f_c00293{left:479.580000px;}
.x75_c00293{left:481.080000px;}
.xe9_c00293{left:488.145000px;}
.xa2_c00293{left:490.500000px;}
.x103_c00293{left:492.000000px;}
.x15_c00293{left:493.080000px;}
.xff_c00293{left:495.000000px;}
.x22_c00293{left:498.000000px;}
.x81_c00293{left:499.080000px;}
.x30_c00293{left:501.420000px;}
.x52_c00293{left:502.500000px;}
.x48_c00293{left:504.000000px;}
.x89_c00293{left:506.145000px;}
.x3d_c00293{left:508.500000px;}
.xa3_c00293{left:511.920000px;}
.xcd_c00293{left:513.000000px;}
.x7d_c00293{left:516.420000px;}
.x23_c00293{left:517.500000px;}
.xd0_c00293{left:520.080000px;}
.x5b_c00293{left:522.000000px;}
.x53_c00293{left:525.000000px;}
.x76_c00293{left:526.500000px;}
.x65_c00293{left:528.000000px;}
.xd6_c00293{left:531.000000px;}
.x9b_c00293{left:532.500000px;}
.xa4_c00293{left:538.920000px;}
.x31_c00293{left:541.500000px;}
.x5c_c00293{left:543.420000px;}
.xb_c00293{left:544.920000px;}
.x6e_c00293{left:546.000000px;}
.xac_c00293{left:547.500000px;}
.x24_c00293{left:549.000000px;}
.xb2_c00293{left:550.500000px;}
.xe4_c00293{left:551.580000px;}
.x16_c00293{left:553.275000px;}
.x9c_c00293{left:555.000000px;}
.xc1_c00293{left:556.080000px;}
.x82_c00293{left:558.000000px;}
.x32_c00293{left:559.920000px;}
.x66_c00293{left:562.080000px;}
.x100_c00293{left:564.000000px;}
.xd7_c00293{left:565.080000px;}
.x104_c00293{left:567.000000px;}
.x8a_c00293{left:568.080000px;}
.x77_c00293{left:570.000000px;}
.x3e_c00293{left:573.000000px;}
.x5d_c00293{left:580.500000px;}
.x96_c00293{left:582.000000px;}
.xd8_c00293{left:583.500000px;}
.x49_c00293{left:586.500000px;}
.x33_c00293{left:588.420000px;}
.x3f_c00293{left:589.920000px;}
.x17_c00293{left:592.080000px;}
.x5e_c00293{left:594.000000px;}
.xad_c00293{left:595.080000px;}
.x9d_c00293{left:597.000000px;}
.x6f_c00293{left:598.080000px;}
.xc_c00293{left:600.000000px;}
.x25_c00293{left:601.080000px;}
.xf3_c00293{left:602.580000px;}
.xb3_c00293{left:604.500000px;}
.xfb_c00293{left:607.500000px;}
.x18_c00293{left:609.000000px;}
.x4a_c00293{left:612.420000px;}
.x8b_c00293{left:613.500000px;}
.x7e_c00293{left:615.000000px;}
.x26_c00293{left:620.580000px;}
.xea_c00293{left:624.000000px;}
.x67_c00293{left:625.920000px;}
.x19_c00293{left:627.000000px;}
.x34_c00293{left:629.580000px;}
.x5f_c00293{left:634.080000px;}
.xfc_c00293{left:635.580000px;}
.xd_c00293{left:637.920000px;}
.x4b_c00293{left:640.500000px;}
.x78_c00293{left:643.080000px;}
.xd9_c00293{left:644.580000px;}
.xa5_c00293{left:649.920000px;}
.x8f_c00293{left:652.920000px;}
.xb4_c00293{left:654.420000px;}
.x54_c00293{left:660.000000px;}
.xf4_c00293{left:661.500000px;}
.xc2_c00293{left:662.580000px;}
.x79_c00293{left:665.580000px;}
.xe_c00293{left:667.080000px;}
.x40_c00293{left:670.500000px;}
.xf5_c00293{left:673.500000px;}
.x70_c00293{left:675.000000px;}
.xa6_c00293{left:676.500000px;}
.x83_c00293{left:678.000000px;}
.x90_c00293{left:681.000000px;}
.x55_c00293{left:684.420000px;}
.x97_c00293{left:685.500000px;}
.xda_c00293{left:687.000000px;}
.x27_c00293{left:691.500000px;}
.x60_c00293{left:692.580000px;}
.x1a_c00293{left:695.775000px;}
.xe2_c00293{left:702.000000px;}
.x35_c00293{left:705.000000px;}
.xeb_c00293{left:706.500000px;}
.xf6_c00293{left:709.080000px;}
.x71_c00293{left:712.080000px;}
.x41_c00293{left:715.080000px;}
.x56_c00293{left:716.580000px;}
.x68_c00293{left:721.500000px;}
.x61_c00293{left:724.500000px;}
@media print{
.v0_c00293{vertical-align:0.000000pt;}
.ls0_c00293{letter-spacing:0.000000pt;}
.ws0_c00293{word-spacing:-4.026738pt;}
.ws1_c00293{word-spacing:-0.136731pt;}
.ws2_c00293{word-spacing:0.000000pt;}
.fs7_c00293{font-size:12.106667pt;}
.fs5_c00293{font-size:16.640000pt;}
.fs1_c00293{font-size:18.133333pt;}
.fs3_c00293{font-size:22.666667pt;}
.fs2_c00293{font-size:25.706667pt;}
.fs4_c00293{font-size:28.746667pt;}
.fs0_c00293{font-size:31.733333pt;}
.fs6_c00293{font-size:34.773333pt;}
.y0_c00293{bottom:0.000000pt;}
.yf9_c00293{bottom:206.066667pt;}
.yfa_c00293{bottom:207.026667pt;}
.yf8_c00293{bottom:207.973333pt;}
.yf7_c00293{bottom:208.173333pt;}
.yf5_c00293{bottom:219.400000pt;}
.yf1_c00293{bottom:219.600000pt;}
.yf3_c00293{bottom:220.360000pt;}
.yf2_c00293{bottom:220.933333pt;}
.yf6_c00293{bottom:221.306667pt;}
.yf4_c00293{bottom:222.266667pt;}
.yeb_c00293{bottom:231.400000pt;}
.yee_c00293{bottom:232.733333pt;}
.yea_c00293{bottom:232.933333pt;}
.yed_c00293{bottom:233.306667pt;}
.yec_c00293{bottom:234.266667pt;}
.yf0_c00293{bottom:234.640000pt;}
.yef_c00293{bottom:234.840000pt;}
.ye9_c00293{bottom:244.733333pt;}
.ye7_c00293{bottom:245.693333pt;}
.ye8_c00293{bottom:247.600000pt;}
.ye6_c00293{bottom:259.400000pt;}
.ye3_c00293{bottom:260.360000pt;}
.ye1_c00293{bottom:260.560000pt;}
.ye2_c00293{bottom:260.933333pt;}
.ye4_c00293{bottom:261.306667pt;}
.ye5_c00293{bottom:261.506667pt;}
.ye0_c00293{bottom:271.400000pt;}
.ydf_c00293{bottom:274.266667pt;}
.yde_c00293{bottom:283.973333pt;}
.yda_c00293{bottom:284.733333pt;}
.ydc_c00293{bottom:285.693333pt;}
.yd8_c00293{bottom:285.893333pt;}
.yd9_c00293{bottom:286.640000pt;}
.ydd_c00293{bottom:286.840000pt;}
.ydb_c00293{bottom:287.600000pt;}
.yd7_c00293{bottom:299.026667pt;}
.yd5_c00293{bottom:299.973333pt;}
.yd6_c00293{bottom:300.933333pt;}
.yd2_c00293{bottom:310.640000pt;}
.yd1_c00293{bottom:311.400000pt;}
.yd4_c00293{bottom:312.360000pt;}
.yce_c00293{bottom:312.560000pt;}
.ycf_c00293{bottom:313.306667pt;}
.yd0_c00293{bottom:313.506667pt;}
.yd3_c00293{bottom:314.266667pt;}
.ycb_c00293{bottom:323.973333pt;}
.ycd_c00293{bottom:324.733333pt;}
.yc8_c00293{bottom:325.693333pt;}
.yc9_c00293{bottom:325.893333pt;}
.ycc_c00293{bottom:326.640000pt;}
.yca_c00293{bottom:327.600000pt;}
.yc6_c00293{bottom:337.306667pt;}
.yc7_c00293{bottom:338.066667pt;}
.yc1_c00293{bottom:338.266667pt;}
.yc5_c00293{bottom:339.026667pt;}
.yc3_c00293{bottom:339.226667pt;}
.yc4_c00293{bottom:339.973333pt;}
.yc2_c00293{bottom:340.933333pt;}
.ybe_c00293{bottom:351.400000pt;}
.ybf_c00293{bottom:352.360000pt;}
.ybd_c00293{bottom:353.306667pt;}
.ybc_c00293{bottom:353.506667pt;}
.yc0_c00293{bottom:354.266667pt;}
.yba_c00293{bottom:363.973333pt;}
.ybb_c00293{bottom:364.360000pt;}
.yb8_c00293{bottom:364.733333pt;}
.yb9_c00293{bottom:365.693333pt;}
.yb7_c00293{bottom:365.893333pt;}
.yb6_c00293{bottom:366.266667pt;}
.yb5_c00293{bottom:377.693333pt;}
.yb3_c00293{bottom:390.066667pt;}
.yae_c00293{bottom:390.640000pt;}
.yaf_c00293{bottom:391.026667pt;}
.yb4_c00293{bottom:391.226667pt;}
.yb1_c00293{bottom:391.973333pt;}
.yb2_c00293{bottom:392.933333pt;}
.yb0_c00293{bottom:393.306667pt;}
.yad_c00293{bottom:403.400000pt;}
.yaa_c00293{bottom:404.360000pt;}
.yac_c00293{bottom:405.306667pt;}
.yab_c00293{bottom:405.506667pt;}
.ya9_c00293{bottom:406.266667pt;}
.ya8_c00293{bottom:417.693333pt;}
.ya5_c00293{bottom:418.640000pt;}
.ya6_c00293{bottom:418.840000pt;}
.ya7_c00293{bottom:419.600000pt;}
.ya0_c00293{bottom:430.066667pt;}
.y9e_c00293{bottom:430.640000pt;}
.ya3_c00293{bottom:431.026667pt;}
.ya2_c00293{bottom:431.226667pt;}
.ya4_c00293{bottom:431.600000pt;}
.y9f_c00293{bottom:431.973333pt;}
.ya1_c00293{bottom:432.173333pt;}
.y9d_c00293{bottom:442.640000pt;}
.y9c_c00293{bottom:443.400000pt;}
.y9a_c00293{bottom:444.560000pt;}
.y9b_c00293{bottom:446.266667pt;}
.y99_c00293{bottom:456.360000pt;}
.y96_c00293{bottom:456.733333pt;}
.y93_c00293{bottom:456.933333pt;}
.y94_c00293{bottom:457.693333pt;}
.y97_c00293{bottom:457.893333pt;}
.y98_c00293{bottom:458.266667pt;}
.y95_c00293{bottom:458.640000pt;}
.y91_c00293{bottom:469.306667pt;}
.y90_c00293{bottom:470.066667pt;}
.y92_c00293{bottom:472.933333pt;}
.y8b_c00293{bottom:481.306667pt;}
.y8f_c00293{bottom:482.066667pt;}
.y8a_c00293{bottom:483.026667pt;}
.y88_c00293{bottom:483.600000pt;}
.y8d_c00293{bottom:483.973333pt;}
.y8e_c00293{bottom:484.173333pt;}
.y8c_c00293{bottom:484.933333pt;}
.y89_c00293{bottom:485.306667pt;}
.y87_c00293{bottom:494.640000pt;}
.y85_c00293{bottom:496.360000pt;}
.y86_c00293{bottom:496.560000pt;}
.y84_c00293{bottom:498.266667pt;}
.y7e_c00293{bottom:508.733333pt;}
.y7f_c00293{bottom:508.933333pt;}
.y80_c00293{bottom:509.693333pt;}
.y7d_c00293{bottom:509.893333pt;}
.y83_c00293{bottom:510.266667pt;}
.y81_c00293{bottom:510.640000pt;}
.y82_c00293{bottom:511.600000pt;}
.y7c_c00293{bottom:522.066667pt;}
.y7b_c00293{bottom:523.973333pt;}
.y7a_c00293{bottom:524.933333pt;}
.y79_c00293{bottom:535.400000pt;}
.y76_c00293{bottom:536.360000pt;}
.y74_c00293{bottom:536.560000pt;}
.y77_c00293{bottom:537.306667pt;}
.y78_c00293{bottom:537.506667pt;}
.y75_c00293{bottom:538.266667pt;}
.y73_c00293{bottom:554.440000pt;}
.y72_c00293{bottom:556.360000pt;}
.y71_c00293{bottom:557.306667pt;}
.y6e_c00293{bottom:571.973333pt;}
.y6c_c00293{bottom:573.893333pt;}
.y6f_c00293{bottom:574.066667pt;}
.y70_c00293{bottom:574.640000pt;}
.y6d_c00293{bottom:575.026667pt;}
.y6a_c00293{bottom:589.306667pt;}
.y68_c00293{bottom:590.440000pt;}
.y6b_c00293{bottom:591.226667pt;}
.y66_c00293{bottom:591.400000pt;}
.y69_c00293{bottom:591.973333pt;}
.y67_c00293{bottom:592.360000pt;}
.y64_c00293{bottom:607.773333pt;}
.y65_c00293{bottom:608.560000pt;}
.y63_c00293{bottom:609.693333pt;}
.y61_c00293{bottom:624.360000pt;}
.y62_c00293{bottom:625.106667pt;}
.y5f_c00293{bottom:627.026667pt;}
.y60_c00293{bottom:627.226667pt;}
.y5e_c00293{bottom:642.440000pt;}
.y5d_c00293{bottom:644.360000pt;}
.y5a_c00293{bottom:659.026667pt;}
.y5b_c00293{bottom:659.773333pt;}
.y59_c00293{bottom:661.106667pt;}
.y5c_c00293{bottom:661.693333pt;}
.y58_c00293{bottom:662.066667pt;}
.y57_c00293{bottom:663.026667pt;}
.y56_c00293{bottom:677.106667pt;}
.y55_c00293{bottom:678.266667pt;}
.y50_c00293{bottom:678.440000pt;}
.y54_c00293{bottom:679.026667pt;}
.y52_c00293{bottom:679.226667pt;}
.y53_c00293{bottom:679.973333pt;}
.y51_c00293{bottom:680.360000pt;}
.y4a_c00293{bottom:695.026667pt;}
.y4f_c00293{bottom:695.400000pt;}
.y4c_c00293{bottom:695.773333pt;}
.y4d_c00293{bottom:696.733333pt;}
.y4b_c00293{bottom:697.693333pt;}
.y4e_c00293{bottom:698.640000pt;}
.y49_c00293{bottom:712.360000pt;}
.y47_c00293{bottom:713.106667pt;}
.y48_c00293{bottom:715.026667pt;}
.y44_c00293{bottom:731.400000pt;}
.y45_c00293{bottom:732.360000pt;}
.y46_c00293{bottom:733.306667pt;}
.y3f_c00293{bottom:747.773333pt;}
.y40_c00293{bottom:748.360000pt;}
.y42_c00293{bottom:748.733333pt;}
.y41_c00293{bottom:749.693333pt;}
.y43_c00293{bottom:750.640000pt;}
.y3a_c00293{bottom:765.106667pt;}
.y3c_c00293{bottom:766.066667pt;}
.y3e_c00293{bottom:766.640000pt;}
.y3d_c00293{bottom:767.026667pt;}
.y3b_c00293{bottom:767.226667pt;}
.y38_c00293{bottom:782.440000pt;}
.y35_c00293{bottom:783.773333pt;}
.y37_c00293{bottom:784.360000pt;}
.y39_c00293{bottom:784.560000pt;}
.y36_c00293{bottom:785.693333pt;}
.y31_c00293{bottom:799.773333pt;}
.y34_c00293{bottom:800.733333pt;}
.y33_c00293{bottom:801.693333pt;}
.y32_c00293{bottom:802.640000pt;}
.y2f_c00293{bottom:816.360000pt;}
.y2c_c00293{bottom:818.440000pt;}
.y2d_c00293{bottom:819.026667pt;}
.y30_c00293{bottom:819.226667pt;}
.y2e_c00293{bottom:819.973333pt;}
.y2b_c00293{bottom:820.360000pt;}
.y28_c00293{bottom:834.640000pt;}
.y27_c00293{bottom:834.826667pt;}
.y25_c00293{bottom:835.773333pt;}
.y24_c00293{bottom:836.560000pt;}
.y29_c00293{bottom:836.733333pt;}
.y2a_c00293{bottom:837.306667pt;}
.y26_c00293{bottom:837.693333pt;}
.y1f_c00293{bottom:853.106667pt;}
.y20_c00293{bottom:854.066667pt;}
.y22_c00293{bottom:855.026667pt;}
.y23_c00293{bottom:855.226667pt;}
.y21_c00293{bottom:855.973333pt;}
.y1b_c00293{bottom:870.440000pt;}
.y1d_c00293{bottom:871.400000pt;}
.y1a_c00293{bottom:871.973333pt;}
.y19_c00293{bottom:872.360000pt;}
.y1c_c00293{bottom:872.560000pt;}
.y1e_c00293{bottom:873.306667pt;}
.y17_c00293{bottom:887.400000pt;}
.y16_c00293{bottom:887.773333pt;}
.y18_c00293{bottom:888.560000pt;}
.y14_c00293{bottom:889.693333pt;}
.y15_c00293{bottom:889.893333pt;}
.y10_c00293{bottom:904.360000pt;}
.ye_c00293{bottom:905.106667pt;}
.yf_c00293{bottom:906.066667pt;}
.y11_c00293{bottom:907.026667pt;}
.y12_c00293{bottom:907.226667pt;}
.y13_c00293{bottom:907.973333pt;}
.yc_c00293{bottom:922.440000pt;}
.y9_c00293{bottom:922.640000pt;}
.yb_c00293{bottom:923.026667pt;}
.yd_c00293{bottom:923.400000pt;}
.y8_c00293{bottom:923.773333pt;}
.ya_c00293{bottom:924.733333pt;}
.y7_c00293{bottom:925.693333pt;}
.y6_c00293{bottom:939.773333pt;}
.y5_c00293{bottom:939.973333pt;}
.y3_c00293{bottom:941.693333pt;}
.y4_c00293{bottom:942.640000pt;}
.y2_c00293{bottom:975.600000pt;}
.y1_c00293{bottom:975.773333pt;}
.h8_c00293{height:14.890964pt;}
.h6_c00293{height:20.466875pt;}
.h2_c00293{height:22.303646pt;}
.h4_c00293{height:27.879557pt;}
.h3_c00293{height:31.618698pt;}
.h5_c00293{height:35.357839pt;}
.h1_c00293{height:39.031380pt;}
.h7_c00293{height:42.770521pt;}
.h0_c00293{height:1186.666667pt;}
.w0_c00293{width:782.666667pt;}
.x0_c00293{left:0.000000pt;}
.xec_c00293{left:135.040000pt;}
.x91_c00293{left:136.000000pt;}
.x3_c00293{left:136.960000pt;}
.x1_c00293{left:138.666667pt;}
.x1b_c00293{left:139.800000pt;}
.xe5_c00293{left:145.333333pt;}
.xd1_c00293{left:146.666667pt;}
.xc5_c00293{left:148.000000pt;}
.xbd_c00293{left:148.960000pt;}
.x8c_c00293{left:150.293333pt;}
.x98_c00293{left:152.000000pt;}
.xfd_c00293{left:158.666667pt;}
.x4c_c00293{left:160.000000pt;}
.xbb_c00293{left:161.333333pt;}
.xc3_c00293{left:162.293333pt;}
.xbe_c00293{left:164.000000pt;}
.x9e_c00293{left:166.293333pt;}
.xed_c00293{left:168.373333pt;}
.x1c_c00293{left:169.333333pt;}
.xee_c00293{left:170.293333pt;}
.x4d_c00293{left:173.333333pt;}
.xf7_c00293{left:174.666667pt;}
.x28_c00293{left:176.000000pt;}
.x57_c00293{left:176.960000pt;}
.x69_c00293{left:178.293333pt;}
.x7a_c00293{left:180.373333pt;}
.x36_c00293{left:182.293333pt;}
.x92_c00293{left:184.000000pt;}
.x105_c00293{left:184.960000pt;}
.xc4_c00293{left:186.666667pt;}
.xd2_c00293{left:187.626667pt;}
.x72_c00293{left:193.333333pt;}
.x42_c00293{left:195.040000pt;}
.xd4_c00293{left:196.000000pt;}
.xb9_c00293{left:196.960000pt;}
.xce_c00293{left:198.666667pt;}
.x29_c00293{left:199.626667pt;}
.xf_c00293{left:200.960000pt;}
.x4_c00293{left:202.666667pt;}
.xe6_c00293{left:204.000000pt;}
.xb5_c00293{left:205.706667pt;}
.x62_c00293{left:207.040000pt;}
.xf8_c00293{left:208.000000pt;}
.x73_c00293{left:209.706667pt;}
.xef_c00293{left:210.666667pt;}
.xae_c00293{left:211.626667pt;}
.x8d_c00293{left:216.000000pt;}
.x58_c00293{left:216.960000pt;}
.x5_c00293{left:219.626667pt;}
.xc6_c00293{left:221.333333pt;}
.x4e_c00293{left:224.000000pt;}
.xcf_c00293{left:225.706667pt;}
.xe3_c00293{left:228.373333pt;}
.xf0_c00293{left:229.333333pt;}
.x84_c00293{left:231.040000pt;}
.x7f_c00293{left:232.373333pt;}
.xa7_c00293{left:233.333333pt;}
.xf9_c00293{left:234.293333pt;}
.x37_c00293{left:236.000000pt;}
.x7b_c00293{left:238.293333pt;}
.x1d_c00293{left:240.373333pt;}
.xb6_c00293{left:241.706667pt;}
.xde_c00293{left:246.293333pt;}
.xdb_c00293{left:248.000000pt;}
.x93_c00293{left:249.333333pt;}
.xd3_c00293{left:250.666667pt;}
.x9f_c00293{left:252.373333pt;}
.xa8_c00293{left:253.333333pt;}
.xaf_c00293{left:256.373333pt;}
.xdc_c00293{left:258.666667pt;}
.x10_c00293{left:259.800000pt;}
.xfe_c00293{left:261.706667pt;}
.x38_c00293{left:262.666667pt;}
.x4f_c00293{left:263.626667pt;}
.xbf_c00293{left:265.333333pt;}
.xc9_c00293{left:268.960000pt;}
.x99_c00293{left:272.000000pt;}
.xc7_c00293{left:273.333333pt;}
.x6a_c00293{left:274.293333pt;}
.x2a_c00293{left:276.000000pt;}
.x1e_c00293{left:276.960000pt;}
.x43_c00293{left:280.960000pt;}
.x63_c00293{left:283.040000pt;}
.xbc_c00293{left:284.373333pt;}
.xa0_c00293{left:286.293333pt;}
.x6_c00293{left:289.333333pt;}
.xb0_c00293{left:290.666667pt;}
.xf1_c00293{left:292.373333pt;}
.x2b_c00293{left:293.706667pt;}
.x11_c00293{left:294.666667pt;}
.xdf_c00293{left:296.000000pt;}
.x1f_c00293{left:299.626667pt;}
.xc8_c00293{left:301.333333pt;}
.x50_c00293{left:302.293333pt;}
.x85_c00293{left:303.626667pt;}
.x7_c00293{left:308.373333pt;}
.x94_c00293{left:309.333333pt;}
.x39_c00293{left:312.000000pt;}
.xdd_c00293{left:312.960000pt;}
.xa9_c00293{left:315.040000pt;}
.x12_c00293{left:316.960000pt;}
.x2c_c00293{left:319.040000pt;}
.xb7_c00293{left:321.333333pt;}
.xba_c00293{left:322.293333pt;}
.xe7_c00293{left:324.000000pt;}
.xc0_c00293{left:325.333333pt;}
.xca_c00293{left:327.040000pt;}
.x20_c00293{left:328.000000pt;}
.x3a_c00293{left:329.706667pt;}
.x8_c00293{left:333.706667pt;}
.xa1_c00293{left:336.000000pt;}
.xfa_c00293{left:337.333333pt;}
.xd5_c00293{left:340.000000pt;}
.x74_c00293{left:340.960000pt;}
.x80_c00293{left:343.040000pt;}
.x64_c00293{left:345.706667pt;}
.x101_c00293{left:346.666667pt;}
.xaa_c00293{left:348.000000pt;}
.x2d_c00293{left:348.960000pt;}
.x8e_c00293{left:350.293333pt;}
.x9a_c00293{left:352.000000pt;}
.x6b_c00293{left:353.333333pt;}
.x3b_c00293{left:354.666667pt;}
.x86_c00293{left:357.706667pt;}
.xe8_c00293{left:360.000000pt;}
.xb1_c00293{left:361.333333pt;}
.x2_c00293{left:362.666667pt;}
.x95_c00293{left:364.000000pt;}
.x44_c00293{left:365.333333pt;}
.x9_c00293{left:368.000000pt;}
.x6c_c00293{left:372.000000pt;}
.x51_c00293{left:372.960000pt;}
.x7c_c00293{left:374.666667pt;}
.x21_c00293{left:375.626667pt;}
.xf2_c00293{left:377.706667pt;}
.x13_c00293{left:379.800000pt;}
.xcb_c00293{left:382.293333pt;}
.x45_c00293{left:384.000000pt;}
.x87_c00293{left:391.626667pt;}
.x3c_c00293{left:393.333333pt;}
.x46_c00293{left:395.626667pt;}
.x2e_c00293{left:400.000000pt;}
.x102_c00293{left:401.333333pt;}
.x88_c00293{left:402.666667pt;}
.xa_c00293{left:404.000000pt;}
.x6d_c00293{left:405.333333pt;}
.x59_c00293{left:406.293333pt;}
.xab_c00293{left:413.333333pt;}
.xe0_c00293{left:414.666667pt;}
.x14_c00293{left:415.626667pt;}
.xcc_c00293{left:418.293333pt;}
.xb8_c00293{left:420.000000pt;}
.x5a_c00293{left:422.666667pt;}
.x47_c00293{left:424.000000pt;}
.xe1_c00293{left:425.333333pt;}
.x2f_c00293{left:426.293333pt;}
.x75_c00293{left:427.626667pt;}
.xe9_c00293{left:433.906667pt;}
.xa2_c00293{left:436.000000pt;}
.x103_c00293{left:437.333333pt;}
.x15_c00293{left:438.293333pt;}
.xff_c00293{left:440.000000pt;}
.x22_c00293{left:442.666667pt;}
.x81_c00293{left:443.626667pt;}
.x30_c00293{left:445.706667pt;}
.x52_c00293{left:446.666667pt;}
.x48_c00293{left:448.000000pt;}
.x89_c00293{left:449.906667pt;}
.x3d_c00293{left:452.000000pt;}
.xa3_c00293{left:455.040000pt;}
.xcd_c00293{left:456.000000pt;}
.x7d_c00293{left:459.040000pt;}
.x23_c00293{left:460.000000pt;}
.xd0_c00293{left:462.293333pt;}
.x5b_c00293{left:464.000000pt;}
.x53_c00293{left:466.666667pt;}
.x76_c00293{left:468.000000pt;}
.x65_c00293{left:469.333333pt;}
.xd6_c00293{left:472.000000pt;}
.x9b_c00293{left:473.333333pt;}
.xa4_c00293{left:479.040000pt;}
.x31_c00293{left:481.333333pt;}
.x5c_c00293{left:483.040000pt;}
.xb_c00293{left:484.373333pt;}
.x6e_c00293{left:485.333333pt;}
.xac_c00293{left:486.666667pt;}
.x24_c00293{left:488.000000pt;}
.xb2_c00293{left:489.333333pt;}
.xe4_c00293{left:490.293333pt;}
.x16_c00293{left:491.800000pt;}
.x9c_c00293{left:493.333333pt;}
.xc1_c00293{left:494.293333pt;}
.x82_c00293{left:496.000000pt;}
.x32_c00293{left:497.706667pt;}
.x66_c00293{left:499.626667pt;}
.x100_c00293{left:501.333333pt;}
.xd7_c00293{left:502.293333pt;}
.x104_c00293{left:504.000000pt;}
.x8a_c00293{left:504.960000pt;}
.x77_c00293{left:506.666667pt;}
.x3e_c00293{left:509.333333pt;}
.x5d_c00293{left:516.000000pt;}
.x96_c00293{left:517.333333pt;}
.xd8_c00293{left:518.666667pt;}
.x49_c00293{left:521.333333pt;}
.x33_c00293{left:523.040000pt;}
.x3f_c00293{left:524.373333pt;}
.x17_c00293{left:526.293333pt;}
.x5e_c00293{left:528.000000pt;}
.xad_c00293{left:528.960000pt;}
.x9d_c00293{left:530.666667pt;}
.x6f_c00293{left:531.626667pt;}
.xc_c00293{left:533.333333pt;}
.x25_c00293{left:534.293333pt;}
.xf3_c00293{left:535.626667pt;}
.xb3_c00293{left:537.333333pt;}
.xfb_c00293{left:540.000000pt;}
.x18_c00293{left:541.333333pt;}
.x4a_c00293{left:544.373333pt;}
.x8b_c00293{left:545.333333pt;}
.x7e_c00293{left:546.666667pt;}
.x26_c00293{left:551.626667pt;}
.xea_c00293{left:554.666667pt;}
.x67_c00293{left:556.373333pt;}
.x19_c00293{left:557.333333pt;}
.x34_c00293{left:559.626667pt;}
.x5f_c00293{left:563.626667pt;}
.xfc_c00293{left:564.960000pt;}
.xd_c00293{left:567.040000pt;}
.x4b_c00293{left:569.333333pt;}
.x78_c00293{left:571.626667pt;}
.xd9_c00293{left:572.960000pt;}
.xa5_c00293{left:577.706667pt;}
.x8f_c00293{left:580.373333pt;}
.xb4_c00293{left:581.706667pt;}
.x54_c00293{left:586.666667pt;}
.xf4_c00293{left:588.000000pt;}
.xc2_c00293{left:588.960000pt;}
.x79_c00293{left:591.626667pt;}
.xe_c00293{left:592.960000pt;}
.x40_c00293{left:596.000000pt;}
.xf5_c00293{left:598.666667pt;}
.x70_c00293{left:600.000000pt;}
.xa6_c00293{left:601.333333pt;}
.x83_c00293{left:602.666667pt;}
.x90_c00293{left:605.333333pt;}
.x55_c00293{left:608.373333pt;}
.x97_c00293{left:609.333333pt;}
.xda_c00293{left:610.666667pt;}
.x27_c00293{left:614.666667pt;}
.x60_c00293{left:615.626667pt;}
.x1a_c00293{left:618.466667pt;}
.xe2_c00293{left:624.000000pt;}
.x35_c00293{left:626.666667pt;}
.xeb_c00293{left:628.000000pt;}
.xf6_c00293{left:630.293333pt;}
.x71_c00293{left:632.960000pt;}
.x41_c00293{left:635.626667pt;}
.x56_c00293{left:636.960000pt;}
.x68_c00293{left:641.333333pt;}
.x61_c00293{left:644.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_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_9b746a39db43bc33fcef94f9.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:1.688965;font-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_c00294{transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);}
.m58_c00294{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m4f_c00294{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.mb0_c00294{transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);}
.maf_c00294{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);}
.m45_c00294{transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);}
.mae_c00294{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m8f_c00294{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m59_c00294{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m0_c00294{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m31_c00294{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m12_c00294{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.ma_c00294{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m11_c00294{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.mda_c00294{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m49_c00294{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m6_c00294{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m9e_c00294{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.m93_c00294{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.md6_c00294{transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);}
.m43_c00294{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.mbf_c00294{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m41_c00294{transform:matrix(0.389954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389954,0.000000,0.000000,0.250000,0,0);}
.m5b_c00294{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m10_c00294{transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);}
.m5d_c00294{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m9_c00294{transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);}
.mad_c00294{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m52_c00294{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.ma6_c00294{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m48_c00294{transform:matrix(0.400690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400690,0.000000,0.000000,0.250000,0,0);}
.m46_c00294{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m4d_c00294{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m78_c00294{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.ma3_c00294{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.mcc_c00294{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m22_c00294{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m8d_c00294{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m7e_c00294{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m8a_c00294{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m86_c00294{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m85_c00294{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.mb3_c00294{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m6c_c00294{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m29_c00294{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.ma2_c00294{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m1d_c00294{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m76_c00294{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m55_c00294{transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);}
.mc8_c00294{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m9f_c00294{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.me_c00294{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m1a_c00294{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m40_c00294{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m82_c00294{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m26_c00294{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m19_c00294{transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);}
.m3c_c00294{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m80_c00294{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m69_c00294{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.md3_c00294{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_c00294{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m34_c00294{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.md4_c00294{transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);}
.mab_c00294{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m8b_c00294{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m4e_c00294{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.ma0_c00294{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.ma5_c00294{transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);}
.mdf_c00294{transform:matrix(0.451471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451471,0.000000,0.000000,0.250000,0,0);}
.mb4_c00294{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.me6_c00294{transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);}
.m98_c00294{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mce_c00294{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mea_c00294{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.me7_c00294{transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);}
.mf3_c00294{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.mcf_c00294{transform:matrix(0.471324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471324,0.000000,0.000000,0.250000,0,0);}
.m61_c00294{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.m9d_c00294{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m91_c00294{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m3f_c00294{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m23_c00294{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.mc0_c00294{transform:matrix(0.483529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483529,0.000000,0.000000,0.250000,0,0);}
.mdd_c00294{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.ma8_c00294{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m2_c00294{transform:matrix(0.486029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486029,0.000000,0.000000,0.250000,0,0);}
.m8_c00294{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m6d_c00294{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mb6_c00294{transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);}
.m21_c00294{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m3e_c00294{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mc1_c00294{transform:matrix(0.494706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494706,0.000000,0.000000,0.250000,0,0);}
.m27_c00294{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m7_c00294{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);}
.m75_c00294{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m32_c00294{transform:matrix(0.505102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505102,0.000000,0.000000,0.250000,0,0);}
.m7c_c00294{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m2d_c00294{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mb9_c00294{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m39_c00294{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m79_c00294{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.mc7_c00294{transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);}
.m9c_c00294{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m53_c00294{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m3d_c00294{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.mac_c00294{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m84_c00294{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m70_c00294{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m7b_c00294{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m8e_c00294{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m99_c00294{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mbe_c00294{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m8c_c00294{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m1c_c00294{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mc6_c00294{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m81_c00294{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.ma4_c00294{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m54_c00294{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m5f_c00294{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m94_c00294{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m83_c00294{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m68_c00294{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m2f_c00294{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mf2_c00294{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m3_c00294{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m92_c00294{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m5c_c00294{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m97_c00294{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.ma1_c00294{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mb5_c00294{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m5e_c00294{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m73_c00294{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m4c_c00294{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m57_c00294{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_c00294{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mc4_c00294{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m2b_c00294{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mb2_c00294{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m42_c00294{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m2c_c00294{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m88_c00294{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m87_c00294{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m38_c00294{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m36_c00294{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m89_c00294{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.me3_c00294{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m17_c00294{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m2e_c00294{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m6a_c00294{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mc2_c00294{transform:matrix(0.555294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555294,0.000000,0.000000,0.250000,0,0);}
.m6e_c00294{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.ma7_c00294{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mba_c00294{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m15_c00294{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.m60_c00294{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mdb_c00294{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m63_c00294{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.ma9_c00294{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.md_c00294{transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);}
.mc5_c00294{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m74_c00294{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.mb8_c00294{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);}
.mef_c00294{transform:matrix(0.570485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570485,0.000000,0.000000,0.250000,0,0);}
.m37_c00294{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m4b_c00294{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.mb7_c00294{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m51_c00294{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.mc_c00294{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m66_c00294{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m9b_c00294{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m56_c00294{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mc3_c00294{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m7f_c00294{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m20_c00294{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m13_c00294{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.md1_c00294{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.m95_c00294{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.maa_c00294{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m28_c00294{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m90_c00294{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m7a_c00294{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m6b_c00294{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m67_c00294{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m2a_c00294{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);}
.me0_c00294{transform:matrix(0.601322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601322,0.000000,0.000000,0.250000,0,0);}
.m7d_c00294{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.me1_c00294{transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);}
.mb1_c00294{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m25_c00294{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.mca_c00294{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m1e_c00294{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mc9_c00294{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m24_c00294{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mbb_c00294{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m4a_c00294{transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);}
.m1_c00294{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m16_c00294{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m71_c00294{transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);}
.m30_c00294{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.md9_c00294{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.mcb_c00294{transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);}
.m18_c00294{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.md2_c00294{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m44_c00294{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m64_c00294{transform:matrix(0.670673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670673,0.000000,0.000000,0.250000,0,0);}
.me5_c00294{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.mf4_c00294{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.mcd_c00294{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m77_c00294{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m5a_c00294{transform:matrix(0.694853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694853,0.000000,0.000000,0.250000,0,0);}
.me9_c00294{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.m4_c00294{transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);}
.mbc_c00294{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);}
.m96_c00294{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m1f_c00294{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mee_c00294{transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);}
.m9a_c00294{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.me2_c00294{transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);}
.m62_c00294{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.med_c00294{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.me8_c00294{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.md8_c00294{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m65_c00294{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.md7_c00294{transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);}
.m72_c00294{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.me4_c00294{transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);}
.m33_c00294{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mb_c00294{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mdc_c00294{transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);}
.mbd_c00294{transform:matrix(0.780837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780837,0.000000,0.000000,0.250000,0,0);}
.m47_c00294{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mde_c00294{transform:matrix(0.801768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.801768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.801768,0.000000,0.000000,0.250000,0,0);}
.m3a_c00294{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.md5_c00294{transform:matrix(0.807269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807269,0.000000,0.000000,0.250000,0,0);}
.m6f_c00294{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mec_c00294{transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);}
.mf1_c00294{transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);}
.m50_c00294{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.mf0_c00294{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.meb_c00294{transform:matrix(0.881057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.881057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.881057,0.000000,0.000000,0.250000,0,0);}
.m14_c00294{transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);}
.m5_c00294{transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);}
.md0_c00294{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m1b_c00294{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00294{vertical-align:-6.000000px;}
.v0_c00294{vertical-align:0.000000px;}
.ls2_c00294{letter-spacing:0.000000px;}
.ls1_c00294{letter-spacing:12.014986px;}
.ls0_c00294{letter-spacing:44.811895px;}
.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;}
}
.ws4_c00294{word-spacing:-52.765975px;}
.wsb_c00294{word-spacing:-14.012266px;}
.wsf_c00294{word-spacing:0.000000px;}
.ws0_c00294{word-spacing:0.607426px;}
.ws7_c00294{word-spacing:9.255046px;}
.ws6_c00294{word-spacing:10.017706px;}
.ws9_c00294{word-spacing:10.947610px;}
.ws1_c00294{word-spacing:12.973687px;}
.wsa_c00294{word-spacing:13.155066px;}
.wsc_c00294{word-spacing:13.611988px;}
.ws8_c00294{word-spacing:16.692855px;}
.ws5_c00294{word-spacing:21.106272px;}
.wsd_c00294{word-spacing:24.638400px;}
.ws2_c00294{word-spacing:25.293111px;}
.wse_c00294{word-spacing:30.607622px;}
.ws3_c00294{word-spacing:36.857815px;}
._0_c00294{margin-left:-44.811895px;}
._1_c00294{margin-left:-12.014986px;}
.fc0_c00294{color:transparent;}
.fs7_c00294{font-size:3.420000px;}
.fs9_c00294{font-size:11.880000px;}
.fs3_c00294{font-size:13.620000px;}
.fs6_c00294{font-size:18.720000px;}
.fs1_c00294{font-size:20.400000px;}
.fs2_c00294{font-size:25.500000px;}
.fs5_c00294{font-size:28.920000px;}
.fs4_c00294{font-size:32.340000px;}
.fs0_c00294{font-size:35.700000px;}
.fs8_c00294{font-size:39.120000px;}
.y0_c00294{bottom:0.000000px;}
.y84_c00294{bottom:250.245000px;}
.y87_c00294{bottom:251.325000px;}
.y86_c00294{bottom:251.745000px;}
.y83_c00294{bottom:252.405000px;}
.y85_c00294{bottom:252.630000px;}
.y82_c00294{bottom:253.470000px;}
.y81_c00294{bottom:253.905000px;}
.y7a_c00294{bottom:268.905000px;}
.y7f_c00294{bottom:269.970000px;}
.y80_c00294{bottom:270.180000px;}
.y7d_c00294{bottom:271.245000px;}
.y7c_c00294{bottom:272.130000px;}
.y7e_c00294{bottom:272.970000px;}
.y7b_c00294{bottom:273.405000px;}
.y79_c00294{bottom:289.905000px;}
.y75_c00294{bottom:290.745000px;}
.y77_c00294{bottom:291.630000px;}
.y76_c00294{bottom:292.905000px;}
.y78_c00294{bottom:293.130000px;}
.y71_c00294{bottom:310.245000px;}
.y73_c00294{bottom:311.130000px;}
.y70_c00294{bottom:311.745000px;}
.y72_c00294{bottom:312.405000px;}
.y74_c00294{bottom:313.905000px;}
.y6d_c00294{bottom:328.905000px;}
.y6f_c00294{bottom:329.745000px;}
.y6e_c00294{bottom:330.630000px;}
.y6a_c00294{bottom:331.905000px;}
.y6b_c00294{bottom:331.920000px;}
.y6c_c00294{bottom:332.970000px;}
.yec_c00294{bottom:358.695000px;}
.yed_c00294{bottom:358.920000px;}
.yea_c00294{bottom:360.195000px;}
.yeb_c00294{bottom:360.420000px;}
.ye9_c00294{bottom:360.630000px;}
.ye8_c00294{bottom:361.695000px;}
.ye6_c00294{bottom:372.630000px;}
.ye7_c00294{bottom:373.920000px;}
.ye4_c00294{bottom:374.130000px;}
.ye3_c00294{bottom:375.195000px;}
.ye5_c00294{bottom:375.420000px;}
.ye1_c00294{bottom:385.695000px;}
.ye0_c00294{bottom:386.130000px;}
.ydd_c00294{bottom:387.195000px;}
.ye2_c00294{bottom:387.420000px;}
.ydc_c00294{bottom:387.630000px;}
.yde_c00294{bottom:388.275000px;}
.ydb_c00294{bottom:388.695000px;}
.ydf_c00294{bottom:388.920000px;}
.yda_c00294{bottom:399.630000px;}
.yd8_c00294{bottom:400.695000px;}
.yd9_c00294{bottom:400.920000px;}
.yd6_c00294{bottom:402.195000px;}
.yd7_c00294{bottom:402.420000px;}
.yd5_c00294{bottom:403.695000px;}
.yd4_c00294{bottom:413.130000px;}
.yd2_c00294{bottom:414.195000px;}
.yd3_c00294{bottom:414.420000px;}
.yd0_c00294{bottom:414.630000px;}
.ycf_c00294{bottom:415.695000px;}
.yd1_c00294{bottom:415.920000px;}
.ycd_c00294{bottom:416.130000px;}
.yce_c00294{bottom:417.195000px;}
.ycb_c00294{bottom:426.630000px;}
.ycc_c00294{bottom:427.695000px;}
.yc9_c00294{bottom:429.195000px;}
.yca_c00294{bottom:429.420000px;}
.yc7_c00294{bottom:429.630000px;}
.yc6_c00294{bottom:430.695000px;}
.yc8_c00294{bottom:430.920000px;}
.yc2_c00294{bottom:456.195000px;}
.yc5_c00294{bottom:456.420000px;}
.yc1_c00294{bottom:457.050000px;}
.yc3_c00294{bottom:457.695000px;}
.yc4_c00294{bottom:457.920000px;}
.ybf_c00294{bottom:469.695000px;}
.yc0_c00294{bottom:469.920000px;}
.ybb_c00294{bottom:470.130000px;}
.ybd_c00294{bottom:471.195000px;}
.ybe_c00294{bottom:471.420000px;}
.ybc_c00294{bottom:472.275000px;}
.yb9_c00294{bottom:482.130000px;}
.yba_c00294{bottom:483.420000px;}
.yb8_c00294{bottom:483.630000px;}
.yb5_c00294{bottom:484.695000px;}
.yb7_c00294{bottom:484.920000px;}
.yb4_c00294{bottom:486.195000px;}
.yb6_c00294{bottom:486.420000px;}
.yb2_c00294{bottom:496.695000px;}
.yb3_c00294{bottom:496.920000px;}
.yaf_c00294{bottom:497.130000px;}
.yb0_c00294{bottom:498.195000px;}
.yb1_c00294{bottom:498.420000px;}
.yad_c00294{bottom:498.630000px;}
.yac_c00294{bottom:499.695000px;}
.yae_c00294{bottom:499.920000px;}
.yab_c00294{bottom:510.630000px;}
.ya9_c00294{bottom:511.695000px;}
.yaa_c00294{bottom:511.920000px;}
.ya7_c00294{bottom:512.130000px;}
.ya8_c00294{bottom:513.420000px;}
.ya6_c00294{bottom:514.695000px;}
.ya5_c00294{bottom:525.195000px;}
.ya4_c00294{bottom:525.420000px;}
.ya0_c00294{bottom:525.630000px;}
.ya1_c00294{bottom:526.695000px;}
.ya3_c00294{bottom:526.920000px;}
.y9f_c00294{bottom:527.130000px;}
.y9e_c00294{bottom:528.195000px;}
.ya2_c00294{bottom:528.420000px;}
.y9b_c00294{bottom:542.550000px;}
.y9d_c00294{bottom:543.420000px;}
.y99_c00294{bottom:543.630000px;}
.y98_c00294{bottom:544.050000px;}
.y9a_c00294{bottom:544.695000px;}
.y9c_c00294{bottom:544.920000px;}
.y97_c00294{bottom:545.130000px;}
.y96_c00294{bottom:546.195000px;}
.y95_c00294{bottom:556.695000px;}
.y94_c00294{bottom:557.130000px;}
.y93_c00294{bottom:558.195000px;}
.y91_c00294{bottom:558.630000px;}
.y92_c00294{bottom:559.695000px;}
.y90_c00294{bottom:578.970000px;}
.y8f_c00294{bottom:580.470000px;}
.y8e_c00294{bottom:593.325000px;}
.y8b_c00294{bottom:595.050000px;}
.y8a_c00294{bottom:595.470000px;}
.y8d_c00294{bottom:595.695000px;}
.y8c_c00294{bottom:596.550000px;}
.y89_c00294{bottom:613.050000px;}
.y88_c00294{bottom:614.970000px;}
.y69_c00294{bottom:643.905000px;}
.y68_c00294{bottom:644.745000px;}
.y67_c00294{bottom:645.630000px;}
.y66_c00294{bottom:646.905000px;}
.y65_c00294{bottom:664.245000px;}
.y63_c00294{bottom:666.405000px;}
.y64_c00294{bottom:667.470000px;}
.y62_c00294{bottom:667.905000px;}
.y61_c00294{bottom:685.245000px;}
.y60_c00294{bottom:687.405000px;}
.y5f_c00294{bottom:704.745000px;}
.y5e_c00294{bottom:706.905000px;}
.y5b_c00294{bottom:721.905000px;}
.y5c_c00294{bottom:724.245000px;}
.y5d_c00294{bottom:724.905000px;}
.y5a_c00294{bottom:726.405000px;}
.y59_c00294{bottom:743.970000px;}
.y58_c00294{bottom:744.630000px;}
.y57_c00294{bottom:745.905000px;}
.y55_c00294{bottom:762.405000px;}
.y54_c00294{bottom:763.245000px;}
.y56_c00294{bottom:764.970000px;}
.y53_c00294{bottom:765.405000px;}
.y52_c00294{bottom:766.470000px;}
.y4f_c00294{bottom:782.745000px;}
.y51_c00294{bottom:784.470000px;}
.y4e_c00294{bottom:784.905000px;}
.y50_c00294{bottom:785.130000px;}
.y4d_c00294{bottom:802.245000px;}
.y4c_c00294{bottom:804.405000px;}
.y4b_c00294{bottom:821.745000px;}
.y49_c00294{bottom:822.825000px;}
.y47_c00294{bottom:823.245000px;}
.y48_c00294{bottom:824.130000px;}
.y4a_c00294{bottom:824.970000px;}
.y46_c00294{bottom:825.405000px;}
.y44_c00294{bottom:841.680000px;}
.y45_c00294{bottom:842.745000px;}
.y43_c00294{bottom:843.630000px;}
.y42_c00294{bottom:844.905000px;}
.y3f_c00294{bottom:862.245000px;}
.y40_c00294{bottom:863.130000px;}
.y41_c00294{bottom:863.325000px;}
.y3e_c00294{bottom:864.405000px;}
.y3d_c00294{bottom:881.550000px;}
.y3b_c00294{bottom:881.745000px;}
.y3c_c00294{bottom:883.470000px;}
.y3a_c00294{bottom:883.905000px;}
.y35_c00294{bottom:900.405000px;}
.y34_c00294{bottom:901.245000px;}
.y37_c00294{bottom:902.130000px;}
.y39_c00294{bottom:902.325000px;}
.y38_c00294{bottom:902.970000px;}
.y36_c00294{bottom:903.405000px;}
.y33_c00294{bottom:918.405000px;}
.y2f_c00294{bottom:920.745000px;}
.y32_c00294{bottom:922.470000px;}
.y30_c00294{bottom:922.905000px;}
.y31_c00294{bottom:923.970000px;}
.y2c_c00294{bottom:939.180000px;}
.y2b_c00294{bottom:939.405000px;}
.y2a_c00294{bottom:940.245000px;}
.y2e_c00294{bottom:941.130000px;}
.y2d_c00294{bottom:941.970000px;}
.y29_c00294{bottom:942.405000px;}
.y28_c00294{bottom:959.745000px;}
.y27_c00294{bottom:960.180000px;}
.y26_c00294{bottom:961.245000px;}
.y25_c00294{bottom:961.905000px;}
.y24_c00294{bottom:962.130000px;}
.y22_c00294{bottom:979.245000px;}
.y23_c00294{bottom:980.325000px;}
.y20_c00294{bottom:980.745000px;}
.y21_c00294{bottom:981.405000px;}
.y1f_c00294{bottom:982.470000px;}
.y1e_c00294{bottom:982.905000px;}
.y17_c00294{bottom:998.745000px;}
.y1c_c00294{bottom:998.970000px;}
.y1d_c00294{bottom:999.825000px;}
.y19_c00294{bottom:1000.905000px;}
.y1b_c00294{bottom:1001.130000px;}
.y1a_c00294{bottom:1001.970000px;}
.y18_c00294{bottom:1002.420000px;}
.y15_c00294{bottom:1030.470000px;}
.y16_c00294{bottom:1032.405000px;}
.yf_c00294{bottom:1045.050000px;}
.yd_c00294{bottom:1045.905000px;}
.y14_c00294{bottom:1046.130000px;}
.ye_c00294{bottom:1046.325000px;}
.y10_c00294{bottom:1046.550000px;}
.y11_c00294{bottom:1046.970000px;}
.y12_c00294{bottom:1047.195000px;}
.y13_c00294{bottom:1048.050000px;}
.yb_c00294{bottom:1058.970000px;}
.ya_c00294{bottom:1059.825000px;}
.y9_c00294{bottom:1060.050000px;}
.y8_c00294{bottom:1060.905000px;}
.yc_c00294{bottom:1061.130000px;}
.y7_c00294{bottom:1061.325000px;}
.y3_c00294{bottom:1061.550000px;}
.y4_c00294{bottom:1061.970000px;}
.y6_c00294{bottom:1062.195000px;}
.y5_c00294{bottom:1063.050000px;}
.y1_c00294{bottom:1097.745000px;}
.y2_c00294{bottom:1099.050000px;}
.h8_c00294{height:4.206533px;}
.ha_c00294{height:14.612168px;}
.h4_c00294{height:16.752334px;}
.h7_c00294{height:23.025234px;}
.h2_c00294{height:25.091602px;}
.h3_c00294{height:31.364502px;}
.h6_c00294{height:35.571035px;}
.h5_c00294{height:39.777568px;}
.h1_c00294{height:43.910303px;}
.h9_c00294{height:48.116836px;}
.h0_c00294{height:1335.000000px;}
.w0_c00294{width:880.500000px;}
.x0_c00294{left:0.000000px;}
.x11_c00294{left:151.080000px;}
.x4d_c00294{left:152.580000px;}
.xca_c00294{left:154.920000px;}
.xdf_c00294{left:162.000000px;}
.xf1_c00294{left:164.580000px;}
.x3_c00294{left:165.855000px;}
.x98_c00294{left:166.920000px;}
.x6f_c00294{left:168.000000px;}
.xa9_c00294{left:169.500000px;}
.xb8_c00294{left:170.580000px;}
.xb0_c00294{left:172.920000px;}
.x40_c00294{left:175.500000px;}
.x33_c00294{left:178.920000px;}
.x67_c00294{left:180.000000px;}
.xa3_c00294{left:181.080000px;}
.x91_c00294{left:183.420000px;}
.x7c_c00294{left:184.500000px;}
.x4_c00294{left:189.000000px;}
.xaa_c00294{left:192.000000px;}
.x1e_c00294{left:194.580000px;}
.xf2_c00294{left:196.500000px;}
.x70_c00294{left:198.420000px;}
.xb1_c00294{left:199.500000px;}
.xf3_c00294{left:201.000000px;}
.x4e_c00294{left:204.000000px;}
.x34_c00294{left:205.920000px;}
.xf7_c00294{left:210.000000px;}
.xfe_c00294{left:211.500000px;}
.x99_c00294{left:213.420000px;}
.x86_c00294{left:215.580000px;}
.xa4_c00294{left:221.580000px;}
.x29_c00294{left:223.500000px;}
.x59_c00294{left:224.580000px;}
.xce_c00294{left:226.500000px;}
.xee_c00294{left:229.500000px;}
.x7d_c00294{left:231.000000px;}
.xc3_c00294{left:232.920000px;}
.x87_c00294{left:234.420000px;}
.x1f_c00294{left:237.000000px;}
.x92_c00294{left:238.500000px;}
.xc5_c00294{left:240.000000px;}
.x12_c00294{left:241.080000px;}
.xf0_c00294{left:243.000000px;}
.x2a_c00294{left:244.080000px;}
.x5a_c00294{left:246.420000px;}
.x7e_c00294{left:247.500000px;}
.x9a_c00294{left:249.000000px;}
.xfa_c00294{left:250.080000px;}
.x71_c00294{left:252.000000px;}
.x5_c00294{left:255.000000px;}
.xbf_c00294{left:258.000000px;}
.x88_c00294{left:259.500000px;}
.x4f_c00294{left:260.580000px;}
.x9b_c00294{left:266.580000px;}
.x41_c00294{left:268.500000px;}
.x5b_c00294{left:271.500000px;}
.x20_c00294{left:274.500000px;}
.xfb_c00294{left:279.000000px;}
.x35_c00294{left:280.080000px;}
.xb9_c00294{left:284.580000px;}
.x13_c00294{left:286.500000px;}
.x93_c00294{left:291.000000px;}
.xc4_c00294{left:294.000000px;}
.x21_c00294{left:297.000000px;}
.x72_c00294{left:298.080000px;}
.x89_c00294{left:299.580000px;}
.x68_c00294{left:301.500000px;}
.x36_c00294{left:303.420000px;}
.x6_c00294{left:306.000000px;}
.x94_c00294{left:307.920000px;}
.x2b_c00294{left:309.000000px;}
.x9c_c00294{left:310.500000px;}
.x50_c00294{left:311.580000px;}
.x73_c00294{left:315.420000px;}
.xb2_c00294{left:317.355000px;}
.x69_c00294{left:319.080000px;}
.xcb_c00294{left:321.000000px;}
.xd4_c00294{left:322.080000px;}
.x5c_c00294{left:325.080000px;}
.xcf_c00294{left:327.000000px;}
.x8a_c00294{left:328.500000px;}
.x37_c00294{left:331.500000px;}
.x14_c00294{left:333.420000px;}
.xba_c00294{left:337.080000px;}
.x7_c00294{left:340.500000px;}
.x6a_c00294{left:341.580000px;}
.x42_c00294{left:343.080000px;}
.xe7_c00294{left:345.000000px;}
.x15_c00294{left:346.500000px;}
.xd0_c00294{left:349.080000px;}
.x9d_c00294{left:351.000000px;}
.x22_c00294{left:352.080000px;}
.xb3_c00294{left:354.000000px;}
.x51_c00294{left:357.420000px;}
.xd5_c00294{left:358.500000px;}
.x43_c00294{left:359.580000px;}
.xab_c00294{left:361.080000px;}
.x5d_c00294{left:369.000000px;}
.xe3_c00294{left:373.500000px;}
.x8b_c00294{left:376.500000px;}
.x74_c00294{left:378.000000px;}
.x23_c00294{left:379.500000px;}
.x2c_c00294{left:380.580000px;}
.xea_c00294{left:382.500000px;}
.x7f_c00294{left:383.580000px;}
.x8_c00294{left:385.500000px;}
.xcc_c00294{left:386.580000px;}
.x38_c00294{left:388.080000px;}
.x75_c00294{left:392.580000px;}
.x9e_c00294{left:394.920000px;}
.x95_c00294{left:396.000000px;}
.xe0_c00294{left:397.500000px;}
.x24_c00294{left:398.580000px;}
.x5e_c00294{left:402.420000px;}
.xda_c00294{left:403.500000px;}
.x2_c00294{left:405.000000px;}
.x39_c00294{left:408.000000px;}
.xe4_c00294{left:409.500000px;}
.x96_c00294{left:412.500000px;}
.x16_c00294{left:413.580000px;}
.xd1_c00294{left:415.080000px;}
.x52_c00294{left:417.000000px;}
.xa5_c00294{left:418.500000px;}
.xac_c00294{left:420.000000px;}
.xdb_c00294{left:421.920000px;}
.x44_c00294{left:423.420000px;}
.x5f_c00294{left:425.580000px;}
.xa6_c00294{left:430.500000px;}
.x6b_c00294{left:433.920000px;}
.x9_c00294{left:435.000000px;}
.xad_c00294{left:436.500000px;}
.x2d_c00294{left:441.000000px;}
.x9f_c00294{left:442.080000px;}
.x17_c00294{left:444.420000px;}
.xe8_c00294{left:445.920000px;}
.xa7_c00294{left:449.580000px;}
.xcd_c00294{left:453.000000px;}
.x76_c00294{left:454.500000px;}
.x53_c00294{left:456.000000px;}
.xae_c00294{left:457.500000px;}
.x6c_c00294{left:459.000000px;}
.x25_c00294{left:461.580000px;}
.xa8_c00294{left:463.080000px;}
.xe2_c00294{left:465.000000px;}
.x60_c00294{left:469.080000px;}
.x3a_c00294{left:470.580000px;}
.x77_c00294{left:472.920000px;}
.x80_c00294{left:475.500000px;}
.x45_c00294{left:477.000000px;}
.x6d_c00294{left:478.500000px;}
.xd6_c00294{left:481.500000px;}
.x8c_c00294{left:482.580000px;}
.xe1_c00294{left:484.080000px;}
.xf4_c00294{left:486.000000px;}
.x18_c00294{left:489.000000px;}
.xeb_c00294{left:490.500000px;}
.xc6_c00294{left:493.080000px;}
.x6e_c00294{left:495.420000px;}
.xd2_c00294{left:496.500000px;}
.x46_c00294{left:499.275000px;}
.x8d_c00294{left:501.420000px;}
.xa_c00294{left:504.420000px;}
.x61_c00294{left:505.500000px;}
.x78_c00294{left:508.500000px;}
.x81_c00294{left:510.000000px;}
.xc7_c00294{left:511.920000px;}
.xd3_c00294{left:514.500000px;}
.xb_c00294{left:516.000000px;}
.xe5_c00294{left:517.500000px;}
.x62_c00294{left:519.000000px;}
.xf5_c00294{left:522.000000px;}
.xdc_c00294{left:523.500000px;}
.x26_c00294{left:525.000000px;}
.xed_c00294{left:526.500000px;}
.x19_c00294{left:529.080000px;}
.xb4_c00294{left:531.420000px;}
.xaf_c00294{left:532.500000px;}
.x2e_c00294{left:534.000000px;}
.xbb_c00294{left:535.500000px;}
.xc0_c00294{left:541.080000px;}
.xc8_c00294{left:546.000000px;}
.x54_c00294{left:549.000000px;}
.x3b_c00294{left:552.420000px;}
.xbc_c00294{left:553.920000px;}
.x1a_c00294{left:555.420000px;}
.x82_c00294{left:556.500000px;}
.xfc_c00294{left:558.000000px;}
.x79_c00294{left:561.000000px;}
.xec_c00294{left:562.500000px;}
.xa0_c00294{left:564.000000px;}
.x55_c00294{left:565.500000px;}
.xc_c00294{left:566.580000px;}
.xc1_c00294{left:571.920000px;}
.x63_c00294{left:573.000000px;}
.x47_c00294{left:574.080000px;}
.xd7_c00294{left:577.500000px;}
.x2f_c00294{left:579.420000px;}
.xbd_c00294{left:580.920000px;}
.xdd_c00294{left:585.000000px;}
.x7a_c00294{left:587.580000px;}
.x48_c00294{left:589.500000px;}
.x64_c00294{left:590.580000px;}
.xfd_c00294{left:594.000000px;}
.x8e_c00294{left:595.500000px;}
.xc2_c00294{left:597.000000px;}
.xd_c00294{left:598.080000px;}
.x1b_c00294{left:601.500000px;}
.xb5_c00294{left:602.580000px;}
.x30_c00294{left:606.000000px;}
.x49_c00294{left:608.580000px;}
.x65_c00294{left:610.920000px;}
.x83_c00294{left:613.500000px;}
.x27_c00294{left:615.000000px;}
.x56_c00294{left:616.500000px;}
.x4a_c00294{left:624.000000px;}
.xe9_c00294{left:625.920000px;}
.x8f_c00294{left:628.500000px;}
.xde_c00294{left:630.000000px;}
.x3c_c00294{left:631.080000px;}
.x1c_c00294{left:632.580000px;}
.x57_c00294{left:634.500000px;}
.x31_c00294{left:636.000000px;}
.xa1_c00294{left:637.500000px;}
.xef_c00294{left:639.000000px;}
.xd8_c00294{left:640.080000px;}
.xe_c00294{left:642.000000px;}
.x4b_c00294{left:643.080000px;}
.x84_c00294{left:645.420000px;}
.x3d_c00294{left:649.920000px;}
.x58_c00294{left:652.500000px;}
.xbe_c00294{left:661.080000px;}
.xf_c00294{left:663.420000px;}
.xb6_c00294{left:664.920000px;}
.xf9_c00294{left:666.000000px;}
.xa2_c00294{left:667.500000px;}
.x4c_c00294{left:668.580000px;}
.x90_c00294{left:670.920000px;}
.xc9_c00294{left:673.080000px;}
.x28_c00294{left:674.580000px;}
.x3e_c00294{left:676.500000px;}
.x7b_c00294{left:679.920000px;}
.x10_c00294{left:687.000000px;}
.x32_c00294{left:689.355000px;}
.xb7_c00294{left:691.500000px;}
.xe6_c00294{left:697.500000px;}
.xf6_c00294{left:699.000000px;}
.xf8_c00294{left:702.000000px;}
.x1d_c00294{left:703.500000px;}
.x1_c00294{left:705.000000px;}
.x66_c00294{left:706.080000px;}
.x97_c00294{left:708.420000px;}
.xd9_c00294{left:712.500000px;}
.x85_c00294{left:714.000000px;}
.x3f_c00294{left:717.000000px;}
@media print{
.v1_c00294{vertical-align:-5.333333pt;}
.v0_c00294{vertical-align:0.000000pt;}
.ls2_c00294{letter-spacing:0.000000pt;}
.ls1_c00294{letter-spacing:10.679988pt;}
.ls0_c00294{letter-spacing:39.832796pt;}
.ws4_c00294{word-spacing:-46.903089pt;}
.wsb_c00294{word-spacing:-12.455348pt;}
.wsf_c00294{word-spacing:0.000000pt;}
.ws0_c00294{word-spacing:0.539934pt;}
.ws7_c00294{word-spacing:8.226708pt;}
.ws6_c00294{word-spacing:8.904628pt;}
.ws9_c00294{word-spacing:9.731209pt;}
.ws1_c00294{word-spacing:11.532166pt;}
.wsa_c00294{word-spacing:11.693392pt;}
.wsc_c00294{word-spacing:12.099545pt;}
.ws8_c00294{word-spacing:14.838093pt;}
.ws5_c00294{word-spacing:18.761131pt;}
.wsd_c00294{word-spacing:21.900800pt;}
.ws2_c00294{word-spacing:22.482765pt;}
.wse_c00294{word-spacing:27.206775pt;}
.ws3_c00294{word-spacing:32.762503pt;}
._0_c00294{margin-left:-39.832796pt;}
._1_c00294{margin-left:-10.679988pt;}
.fs7_c00294{font-size:3.040000pt;}
.fs9_c00294{font-size:10.560000pt;}
.fs3_c00294{font-size:12.106667pt;}
.fs6_c00294{font-size:16.640000pt;}
.fs1_c00294{font-size:18.133333pt;}
.fs2_c00294{font-size:22.666667pt;}
.fs5_c00294{font-size:25.706667pt;}
.fs4_c00294{font-size:28.746667pt;}
.fs0_c00294{font-size:31.733333pt;}
.fs8_c00294{font-size:34.773333pt;}
.y0_c00294{bottom:0.000000pt;}
.y84_c00294{bottom:222.440000pt;}
.y87_c00294{bottom:223.400000pt;}
.y86_c00294{bottom:223.773333pt;}
.y83_c00294{bottom:224.360000pt;}
.y85_c00294{bottom:224.560000pt;}
.y82_c00294{bottom:225.306667pt;}
.y81_c00294{bottom:225.693333pt;}
.y7a_c00294{bottom:239.026667pt;}
.y7f_c00294{bottom:239.973333pt;}
.y80_c00294{bottom:240.160000pt;}
.y7d_c00294{bottom:241.106667pt;}
.y7c_c00294{bottom:241.893333pt;}
.y7e_c00294{bottom:242.640000pt;}
.y7b_c00294{bottom:243.026667pt;}
.y79_c00294{bottom:257.693333pt;}
.y75_c00294{bottom:258.440000pt;}
.y77_c00294{bottom:259.226667pt;}
.y76_c00294{bottom:260.360000pt;}
.y78_c00294{bottom:260.560000pt;}
.y71_c00294{bottom:275.773333pt;}
.y73_c00294{bottom:276.560000pt;}
.y70_c00294{bottom:277.106667pt;}
.y72_c00294{bottom:277.693333pt;}
.y74_c00294{bottom:279.026667pt;}
.y6d_c00294{bottom:292.360000pt;}
.y6f_c00294{bottom:293.106667pt;}
.y6e_c00294{bottom:293.893333pt;}
.y6a_c00294{bottom:295.026667pt;}
.y6b_c00294{bottom:295.040000pt;}
.y6c_c00294{bottom:295.973333pt;}
.yec_c00294{bottom:318.840000pt;}
.yed_c00294{bottom:319.040000pt;}
.yea_c00294{bottom:320.173333pt;}
.yeb_c00294{bottom:320.373333pt;}
.ye9_c00294{bottom:320.560000pt;}
.ye8_c00294{bottom:321.506667pt;}
.ye6_c00294{bottom:331.226667pt;}
.ye7_c00294{bottom:332.373333pt;}
.ye4_c00294{bottom:332.560000pt;}
.ye3_c00294{bottom:333.506667pt;}
.ye5_c00294{bottom:333.706667pt;}
.ye1_c00294{bottom:342.840000pt;}
.ye0_c00294{bottom:343.226667pt;}
.ydd_c00294{bottom:344.173333pt;}
.ye2_c00294{bottom:344.373333pt;}
.ydc_c00294{bottom:344.560000pt;}
.yde_c00294{bottom:345.133333pt;}
.ydb_c00294{bottom:345.506667pt;}
.ydf_c00294{bottom:345.706667pt;}
.yda_c00294{bottom:355.226667pt;}
.yd8_c00294{bottom:356.173333pt;}
.yd9_c00294{bottom:356.373333pt;}
.yd6_c00294{bottom:357.506667pt;}
.yd7_c00294{bottom:357.706667pt;}
.yd5_c00294{bottom:358.840000pt;}
.yd4_c00294{bottom:367.226667pt;}
.yd2_c00294{bottom:368.173333pt;}
.yd3_c00294{bottom:368.373333pt;}
.yd0_c00294{bottom:368.560000pt;}
.ycf_c00294{bottom:369.506667pt;}
.yd1_c00294{bottom:369.706667pt;}
.ycd_c00294{bottom:369.893333pt;}
.yce_c00294{bottom:370.840000pt;}
.ycb_c00294{bottom:379.226667pt;}
.ycc_c00294{bottom:380.173333pt;}
.yc9_c00294{bottom:381.506667pt;}
.yca_c00294{bottom:381.706667pt;}
.yc7_c00294{bottom:381.893333pt;}
.yc6_c00294{bottom:382.840000pt;}
.yc8_c00294{bottom:383.040000pt;}
.yc2_c00294{bottom:405.506667pt;}
.yc5_c00294{bottom:405.706667pt;}
.yc1_c00294{bottom:406.266667pt;}
.yc3_c00294{bottom:406.840000pt;}
.yc4_c00294{bottom:407.040000pt;}
.ybf_c00294{bottom:417.506667pt;}
.yc0_c00294{bottom:417.706667pt;}
.ybb_c00294{bottom:417.893333pt;}
.ybd_c00294{bottom:418.840000pt;}
.ybe_c00294{bottom:419.040000pt;}
.ybc_c00294{bottom:419.800000pt;}
.yb9_c00294{bottom:428.560000pt;}
.yba_c00294{bottom:429.706667pt;}
.yb8_c00294{bottom:429.893333pt;}
.yb5_c00294{bottom:430.840000pt;}
.yb7_c00294{bottom:431.040000pt;}
.yb4_c00294{bottom:432.173333pt;}
.yb6_c00294{bottom:432.373333pt;}
.yb2_c00294{bottom:441.506667pt;}
.yb3_c00294{bottom:441.706667pt;}
.yaf_c00294{bottom:441.893333pt;}
.yb0_c00294{bottom:442.840000pt;}
.yb1_c00294{bottom:443.040000pt;}
.yad_c00294{bottom:443.226667pt;}
.yac_c00294{bottom:444.173333pt;}
.yae_c00294{bottom:444.373333pt;}
.yab_c00294{bottom:453.893333pt;}
.ya9_c00294{bottom:454.840000pt;}
.yaa_c00294{bottom:455.040000pt;}
.ya7_c00294{bottom:455.226667pt;}
.ya8_c00294{bottom:456.373333pt;}
.ya6_c00294{bottom:457.506667pt;}
.ya5_c00294{bottom:466.840000pt;}
.ya4_c00294{bottom:467.040000pt;}
.ya0_c00294{bottom:467.226667pt;}
.ya1_c00294{bottom:468.173333pt;}
.ya3_c00294{bottom:468.373333pt;}
.y9f_c00294{bottom:468.560000pt;}
.y9e_c00294{bottom:469.506667pt;}
.ya2_c00294{bottom:469.706667pt;}
.y9b_c00294{bottom:482.266667pt;}
.y9d_c00294{bottom:483.040000pt;}
.y99_c00294{bottom:483.226667pt;}
.y98_c00294{bottom:483.600000pt;}
.y9a_c00294{bottom:484.173333pt;}
.y9c_c00294{bottom:484.373333pt;}
.y97_c00294{bottom:484.560000pt;}
.y96_c00294{bottom:485.506667pt;}
.y95_c00294{bottom:494.840000pt;}
.y94_c00294{bottom:495.226667pt;}
.y93_c00294{bottom:496.173333pt;}
.y91_c00294{bottom:496.560000pt;}
.y92_c00294{bottom:497.506667pt;}
.y90_c00294{bottom:514.640000pt;}
.y8f_c00294{bottom:515.973333pt;}
.y8e_c00294{bottom:527.400000pt;}
.y8b_c00294{bottom:528.933333pt;}
.y8a_c00294{bottom:529.306667pt;}
.y8d_c00294{bottom:529.506667pt;}
.y8c_c00294{bottom:530.266667pt;}
.y89_c00294{bottom:544.933333pt;}
.y88_c00294{bottom:546.640000pt;}
.y69_c00294{bottom:572.360000pt;}
.y68_c00294{bottom:573.106667pt;}
.y67_c00294{bottom:573.893333pt;}
.y66_c00294{bottom:575.026667pt;}
.y65_c00294{bottom:590.440000pt;}
.y63_c00294{bottom:592.360000pt;}
.y64_c00294{bottom:593.306667pt;}
.y62_c00294{bottom:593.693333pt;}
.y61_c00294{bottom:609.106667pt;}
.y60_c00294{bottom:611.026667pt;}
.y5f_c00294{bottom:626.440000pt;}
.y5e_c00294{bottom:628.360000pt;}
.y5b_c00294{bottom:641.693333pt;}
.y5c_c00294{bottom:643.773333pt;}
.y5d_c00294{bottom:644.360000pt;}
.y5a_c00294{bottom:645.693333pt;}
.y59_c00294{bottom:661.306667pt;}
.y58_c00294{bottom:661.893333pt;}
.y57_c00294{bottom:663.026667pt;}
.y55_c00294{bottom:677.693333pt;}
.y54_c00294{bottom:678.440000pt;}
.y56_c00294{bottom:679.973333pt;}
.y53_c00294{bottom:680.360000pt;}
.y52_c00294{bottom:681.306667pt;}
.y4f_c00294{bottom:695.773333pt;}
.y51_c00294{bottom:697.306667pt;}
.y4e_c00294{bottom:697.693333pt;}
.y50_c00294{bottom:697.893333pt;}
.y4d_c00294{bottom:713.106667pt;}
.y4c_c00294{bottom:715.026667pt;}
.y4b_c00294{bottom:730.440000pt;}
.y49_c00294{bottom:731.400000pt;}
.y47_c00294{bottom:731.773333pt;}
.y48_c00294{bottom:732.560000pt;}
.y4a_c00294{bottom:733.306667pt;}
.y46_c00294{bottom:733.693333pt;}
.y44_c00294{bottom:748.160000pt;}
.y45_c00294{bottom:749.106667pt;}
.y43_c00294{bottom:749.893333pt;}
.y42_c00294{bottom:751.026667pt;}
.y3f_c00294{bottom:766.440000pt;}
.y40_c00294{bottom:767.226667pt;}
.y41_c00294{bottom:767.400000pt;}
.y3e_c00294{bottom:768.360000pt;}
.y3d_c00294{bottom:783.600000pt;}
.y3b_c00294{bottom:783.773333pt;}
.y3c_c00294{bottom:785.306667pt;}
.y3a_c00294{bottom:785.693333pt;}
.y35_c00294{bottom:800.360000pt;}
.y34_c00294{bottom:801.106667pt;}
.y37_c00294{bottom:801.893333pt;}
.y39_c00294{bottom:802.066667pt;}
.y38_c00294{bottom:802.640000pt;}
.y36_c00294{bottom:803.026667pt;}
.y33_c00294{bottom:816.360000pt;}
.y2f_c00294{bottom:818.440000pt;}
.y32_c00294{bottom:819.973333pt;}
.y30_c00294{bottom:820.360000pt;}
.y31_c00294{bottom:821.306667pt;}
.y2c_c00294{bottom:834.826667pt;}
.y2b_c00294{bottom:835.026667pt;}
.y2a_c00294{bottom:835.773333pt;}
.y2e_c00294{bottom:836.560000pt;}
.y2d_c00294{bottom:837.306667pt;}
.y29_c00294{bottom:837.693333pt;}
.y28_c00294{bottom:853.106667pt;}
.y27_c00294{bottom:853.493333pt;}
.y26_c00294{bottom:854.440000pt;}
.y25_c00294{bottom:855.026667pt;}
.y24_c00294{bottom:855.226667pt;}
.y22_c00294{bottom:870.440000pt;}
.y23_c00294{bottom:871.400000pt;}
.y20_c00294{bottom:871.773333pt;}
.y21_c00294{bottom:872.360000pt;}
.y1f_c00294{bottom:873.306667pt;}
.y1e_c00294{bottom:873.693333pt;}
.y17_c00294{bottom:887.773333pt;}
.y1c_c00294{bottom:887.973333pt;}
.y1d_c00294{bottom:888.733333pt;}
.y19_c00294{bottom:889.693333pt;}
.y1b_c00294{bottom:889.893333pt;}
.y1a_c00294{bottom:890.640000pt;}
.y18_c00294{bottom:891.040000pt;}
.y15_c00294{bottom:915.973333pt;}
.y16_c00294{bottom:917.693333pt;}
.yf_c00294{bottom:928.933333pt;}
.yd_c00294{bottom:929.693333pt;}
.y14_c00294{bottom:929.893333pt;}
.ye_c00294{bottom:930.066667pt;}
.y10_c00294{bottom:930.266667pt;}
.y11_c00294{bottom:930.640000pt;}
.y12_c00294{bottom:930.840000pt;}
.y13_c00294{bottom:931.600000pt;}
.yb_c00294{bottom:941.306667pt;}
.ya_c00294{bottom:942.066667pt;}
.y9_c00294{bottom:942.266667pt;}
.y8_c00294{bottom:943.026667pt;}
.yc_c00294{bottom:943.226667pt;}
.y7_c00294{bottom:943.400000pt;}
.y3_c00294{bottom:943.600000pt;}
.y4_c00294{bottom:943.973333pt;}
.y6_c00294{bottom:944.173333pt;}
.y5_c00294{bottom:944.933333pt;}
.y1_c00294{bottom:975.773333pt;}
.y2_c00294{bottom:976.933333pt;}
.h8_c00294{height:3.739141pt;}
.ha_c00294{height:12.988594pt;}
.h4_c00294{height:14.890964pt;}
.h7_c00294{height:20.466875pt;}
.h2_c00294{height:22.303646pt;}
.h3_c00294{height:27.879557pt;}
.h6_c00294{height:31.618698pt;}
.h5_c00294{height:35.357839pt;}
.h1_c00294{height:39.031380pt;}
.h9_c00294{height:42.770521pt;}
.h0_c00294{height:1186.666667pt;}
.w0_c00294{width:782.666667pt;}
.x0_c00294{left:0.000000pt;}
.x11_c00294{left:134.293333pt;}
.x4d_c00294{left:135.626667pt;}
.xca_c00294{left:137.706667pt;}
.xdf_c00294{left:144.000000pt;}
.xf1_c00294{left:146.293333pt;}
.x3_c00294{left:147.426667pt;}
.x98_c00294{left:148.373333pt;}
.x6f_c00294{left:149.333333pt;}
.xa9_c00294{left:150.666667pt;}
.xb8_c00294{left:151.626667pt;}
.xb0_c00294{left:153.706667pt;}
.x40_c00294{left:156.000000pt;}
.x33_c00294{left:159.040000pt;}
.x67_c00294{left:160.000000pt;}
.xa3_c00294{left:160.960000pt;}
.x91_c00294{left:163.040000pt;}
.x7c_c00294{left:164.000000pt;}
.x4_c00294{left:168.000000pt;}
.xaa_c00294{left:170.666667pt;}
.x1e_c00294{left:172.960000pt;}
.xf2_c00294{left:174.666667pt;}
.x70_c00294{left:176.373333pt;}
.xb1_c00294{left:177.333333pt;}
.xf3_c00294{left:178.666667pt;}
.x4e_c00294{left:181.333333pt;}
.x34_c00294{left:183.040000pt;}
.xf7_c00294{left:186.666667pt;}
.xfe_c00294{left:188.000000pt;}
.x99_c00294{left:189.706667pt;}
.x86_c00294{left:191.626667pt;}
.xa4_c00294{left:196.960000pt;}
.x29_c00294{left:198.666667pt;}
.x59_c00294{left:199.626667pt;}
.xce_c00294{left:201.333333pt;}
.xee_c00294{left:204.000000pt;}
.x7d_c00294{left:205.333333pt;}
.xc3_c00294{left:207.040000pt;}
.x87_c00294{left:208.373333pt;}
.x1f_c00294{left:210.666667pt;}
.x92_c00294{left:212.000000pt;}
.xc5_c00294{left:213.333333pt;}
.x12_c00294{left:214.293333pt;}
.xf0_c00294{left:216.000000pt;}
.x2a_c00294{left:216.960000pt;}
.x5a_c00294{left:219.040000pt;}
.x7e_c00294{left:220.000000pt;}
.x9a_c00294{left:221.333333pt;}
.xfa_c00294{left:222.293333pt;}
.x71_c00294{left:224.000000pt;}
.x5_c00294{left:226.666667pt;}
.xbf_c00294{left:229.333333pt;}
.x88_c00294{left:230.666667pt;}
.x4f_c00294{left:231.626667pt;}
.x9b_c00294{left:236.960000pt;}
.x41_c00294{left:238.666667pt;}
.x5b_c00294{left:241.333333pt;}
.x20_c00294{left:244.000000pt;}
.xfb_c00294{left:248.000000pt;}
.x35_c00294{left:248.960000pt;}
.xb9_c00294{left:252.960000pt;}
.x13_c00294{left:254.666667pt;}
.x93_c00294{left:258.666667pt;}
.xc4_c00294{left:261.333333pt;}
.x21_c00294{left:264.000000pt;}
.x72_c00294{left:264.960000pt;}
.x89_c00294{left:266.293333pt;}
.x68_c00294{left:268.000000pt;}
.x36_c00294{left:269.706667pt;}
.x6_c00294{left:272.000000pt;}
.x94_c00294{left:273.706667pt;}
.x2b_c00294{left:274.666667pt;}
.x9c_c00294{left:276.000000pt;}
.x50_c00294{left:276.960000pt;}
.x73_c00294{left:280.373333pt;}
.xb2_c00294{left:282.093333pt;}
.x69_c00294{left:283.626667pt;}
.xcb_c00294{left:285.333333pt;}
.xd4_c00294{left:286.293333pt;}
.x5c_c00294{left:288.960000pt;}
.xcf_c00294{left:290.666667pt;}
.x8a_c00294{left:292.000000pt;}
.x37_c00294{left:294.666667pt;}
.x14_c00294{left:296.373333pt;}
.xba_c00294{left:299.626667pt;}
.x7_c00294{left:302.666667pt;}
.x6a_c00294{left:303.626667pt;}
.x42_c00294{left:304.960000pt;}
.xe7_c00294{left:306.666667pt;}
.x15_c00294{left:308.000000pt;}
.xd0_c00294{left:310.293333pt;}
.x9d_c00294{left:312.000000pt;}
.x22_c00294{left:312.960000pt;}
.xb3_c00294{left:314.666667pt;}
.x51_c00294{left:317.706667pt;}
.xd5_c00294{left:318.666667pt;}
.x43_c00294{left:319.626667pt;}
.xab_c00294{left:320.960000pt;}
.x5d_c00294{left:328.000000pt;}
.xe3_c00294{left:332.000000pt;}
.x8b_c00294{left:334.666667pt;}
.x74_c00294{left:336.000000pt;}
.x23_c00294{left:337.333333pt;}
.x2c_c00294{left:338.293333pt;}
.xea_c00294{left:340.000000pt;}
.x7f_c00294{left:340.960000pt;}
.x8_c00294{left:342.666667pt;}
.xcc_c00294{left:343.626667pt;}
.x38_c00294{left:344.960000pt;}
.x75_c00294{left:348.960000pt;}
.x9e_c00294{left:351.040000pt;}
.x95_c00294{left:352.000000pt;}
.xe0_c00294{left:353.333333pt;}
.x24_c00294{left:354.293333pt;}
.x5e_c00294{left:357.706667pt;}
.xda_c00294{left:358.666667pt;}
.x2_c00294{left:360.000000pt;}
.x39_c00294{left:362.666667pt;}
.xe4_c00294{left:364.000000pt;}
.x96_c00294{left:366.666667pt;}
.x16_c00294{left:367.626667pt;}
.xd1_c00294{left:368.960000pt;}
.x52_c00294{left:370.666667pt;}
.xa5_c00294{left:372.000000pt;}
.xac_c00294{left:373.333333pt;}
.xdb_c00294{left:375.040000pt;}
.x44_c00294{left:376.373333pt;}
.x5f_c00294{left:378.293333pt;}
.xa6_c00294{left:382.666667pt;}
.x6b_c00294{left:385.706667pt;}
.x9_c00294{left:386.666667pt;}
.xad_c00294{left:388.000000pt;}
.x2d_c00294{left:392.000000pt;}
.x9f_c00294{left:392.960000pt;}
.x17_c00294{left:395.040000pt;}
.xe8_c00294{left:396.373333pt;}
.xa7_c00294{left:399.626667pt;}
.xcd_c00294{left:402.666667pt;}
.x76_c00294{left:404.000000pt;}
.x53_c00294{left:405.333333pt;}
.xae_c00294{left:406.666667pt;}
.x6c_c00294{left:408.000000pt;}
.x25_c00294{left:410.293333pt;}
.xa8_c00294{left:411.626667pt;}
.xe2_c00294{left:413.333333pt;}
.x60_c00294{left:416.960000pt;}
.x3a_c00294{left:418.293333pt;}
.x77_c00294{left:420.373333pt;}
.x80_c00294{left:422.666667pt;}
.x45_c00294{left:424.000000pt;}
.x6d_c00294{left:425.333333pt;}
.xd6_c00294{left:428.000000pt;}
.x8c_c00294{left:428.960000pt;}
.xe1_c00294{left:430.293333pt;}
.xf4_c00294{left:432.000000pt;}
.x18_c00294{left:434.666667pt;}
.xeb_c00294{left:436.000000pt;}
.xc6_c00294{left:438.293333pt;}
.x6e_c00294{left:440.373333pt;}
.xd2_c00294{left:441.333333pt;}
.x46_c00294{left:443.800000pt;}
.x8d_c00294{left:445.706667pt;}
.xa_c00294{left:448.373333pt;}
.x61_c00294{left:449.333333pt;}
.x78_c00294{left:452.000000pt;}
.x81_c00294{left:453.333333pt;}
.xc7_c00294{left:455.040000pt;}
.xd3_c00294{left:457.333333pt;}
.xb_c00294{left:458.666667pt;}
.xe5_c00294{left:460.000000pt;}
.x62_c00294{left:461.333333pt;}
.xf5_c00294{left:464.000000pt;}
.xdc_c00294{left:465.333333pt;}
.x26_c00294{left:466.666667pt;}
.xed_c00294{left:468.000000pt;}
.x19_c00294{left:470.293333pt;}
.xb4_c00294{left:472.373333pt;}
.xaf_c00294{left:473.333333pt;}
.x2e_c00294{left:474.666667pt;}
.xbb_c00294{left:476.000000pt;}
.xc0_c00294{left:480.960000pt;}
.xc8_c00294{left:485.333333pt;}
.x54_c00294{left:488.000000pt;}
.x3b_c00294{left:491.040000pt;}
.xbc_c00294{left:492.373333pt;}
.x1a_c00294{left:493.706667pt;}
.x82_c00294{left:494.666667pt;}
.xfc_c00294{left:496.000000pt;}
.x79_c00294{left:498.666667pt;}
.xec_c00294{left:500.000000pt;}
.xa0_c00294{left:501.333333pt;}
.x55_c00294{left:502.666667pt;}
.xc_c00294{left:503.626667pt;}
.xc1_c00294{left:508.373333pt;}
.x63_c00294{left:509.333333pt;}
.x47_c00294{left:510.293333pt;}
.xd7_c00294{left:513.333333pt;}
.x2f_c00294{left:515.040000pt;}
.xbd_c00294{left:516.373333pt;}
.xdd_c00294{left:520.000000pt;}
.x7a_c00294{left:522.293333pt;}
.x48_c00294{left:524.000000pt;}
.x64_c00294{left:524.960000pt;}
.xfd_c00294{left:528.000000pt;}
.x8e_c00294{left:529.333333pt;}
.xc2_c00294{left:530.666667pt;}
.xd_c00294{left:531.626667pt;}
.x1b_c00294{left:534.666667pt;}
.xb5_c00294{left:535.626667pt;}
.x30_c00294{left:538.666667pt;}
.x49_c00294{left:540.960000pt;}
.x65_c00294{left:543.040000pt;}
.x83_c00294{left:545.333333pt;}
.x27_c00294{left:546.666667pt;}
.x56_c00294{left:548.000000pt;}
.x4a_c00294{left:554.666667pt;}
.xe9_c00294{left:556.373333pt;}
.x8f_c00294{left:558.666667pt;}
.xde_c00294{left:560.000000pt;}
.x3c_c00294{left:560.960000pt;}
.x1c_c00294{left:562.293333pt;}
.x57_c00294{left:564.000000pt;}
.x31_c00294{left:565.333333pt;}
.xa1_c00294{left:566.666667pt;}
.xef_c00294{left:568.000000pt;}
.xd8_c00294{left:568.960000pt;}
.xe_c00294{left:570.666667pt;}
.x4b_c00294{left:571.626667pt;}
.x84_c00294{left:573.706667pt;}
.x3d_c00294{left:577.706667pt;}
.x58_c00294{left:580.000000pt;}
.xbe_c00294{left:587.626667pt;}
.xf_c00294{left:589.706667pt;}
.xb6_c00294{left:591.040000pt;}
.xf9_c00294{left:592.000000pt;}
.xa2_c00294{left:593.333333pt;}
.x4c_c00294{left:594.293333pt;}
.x90_c00294{left:596.373333pt;}
.xc9_c00294{left:598.293333pt;}
.x28_c00294{left:599.626667pt;}
.x3e_c00294{left:601.333333pt;}
.x7b_c00294{left:604.373333pt;}
.x10_c00294{left:610.666667pt;}
.x32_c00294{left:612.760000pt;}
.xb7_c00294{left:614.666667pt;}
.xe6_c00294{left:620.000000pt;}
.xf6_c00294{left:621.333333pt;}
.xf8_c00294{left:624.000000pt;}
.x1d_c00294{left:625.333333pt;}
.x1_c00294{left:626.666667pt;}
.x66_c00294{left:627.626667pt;}
.x97_c00294{left:629.706667pt;}
.xd9_c00294{left:633.333333pt;}
.x85_c00294{left:634.666667pt;}
.x3f_c00294{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_684ee304ef58d9f988f9937c.woff2')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:1.688965;font-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_c00295{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m92_c00295{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m18_c00295{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m8_c00295{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mb2_c00295{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m6_c00295{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m97_c00295{transform:matrix(0.376891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376891,0.000000,0.000000,0.250000,0,0);}
.m57_c00295{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m45_c00295{transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);}
.m5f_c00295{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.m7e_c00295{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m50_c00295{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m1a_c00295{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m4a_c00295{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m5c_c00295{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m60_c00295{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m9f_c00295{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m81_c00295{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.mb7_c00295{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m9a_c00295{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.mb5_c00295{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.mba_c00295{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m54_c00295{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);}
.m43_c00295{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mac_c00295{transform:matrix(0.401840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401840,0.000000,0.000000,0.250000,0,0);}
.m4f_c00295{transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);}
.mbc_c00295{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mae_c00295{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m48_c00295{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m72_c00295{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m68_c00295{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m4d_c00295{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m96_c00295{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m4_c00295{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m8e_c00295{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m5d_c00295{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m21_c00295{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m33_c00295{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m3_c00295{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m80_c00295{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m34_c00295{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m39_c00295{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m94_c00295{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.mb1_c00295{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m2e_c00295{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.ma_c00295{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m27_c00295{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m2c_c00295{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m2b_c00295{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m79_c00295{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m90_c00295{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m88_c00295{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.ma7_c00295{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m32_c00295{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.mb3_c00295{transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);}
.ma5_c00295{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m91_c00295{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m6a_c00295{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.ma2_c00295{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m24_c00295{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m98_c00295{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.me_c00295{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m37_c00295{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00295{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m78_c00295{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m7a_c00295{transform:matrix(0.473562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473562,0.000000,0.000000,0.250000,0,0);}
.m46_c00295{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m25_c00295{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m9_c00295{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m76_c00295{transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);}
.m95_c00295{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.m2f_c00295{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m3c_c00295{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m2a_c00295{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m55_c00295{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m84_c00295{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m44_c00295{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m9d_c00295{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m28_c00295{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mb_c00295{transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);}
.m52_c00295{transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);}
.m9b_c00295{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m12_c00295{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);}
.mb8_c00295{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.mab_c00295{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m3b_c00295{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m6d_c00295{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m1c_c00295{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mb9_c00295{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.maa_c00295{transform:matrix(0.510204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510204,0.000000,0.000000,0.250000,0,0);}
.m42_c00295{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m69_c00295{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m10_c00295{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m64_c00295{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m9c_c00295{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m30_c00295{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m36_c00295{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.maf_c00295{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m13_c00295{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m93_c00295{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m5e_c00295{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m14_c00295{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m31_c00295{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m6f_c00295{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m23_c00295{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m29_c00295{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.ma1_c00295{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.mf_c00295{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m40_c00295{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m5a_c00295{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m7_c00295{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.ma8_c00295{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m8d_c00295{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m41_c00295{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m61_c00295{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m4e_c00295{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m85_c00295{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m8c_c00295{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m66_c00295{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m51_c00295{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m62_c00295{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m2_c00295{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m35_c00295{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.ma6_c00295{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m0_c00295{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m58_c00295{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.md_c00295{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m75_c00295{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m38_c00295{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m8f_c00295{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m86_c00295{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m77_c00295{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m3d_c00295{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m8b_c00295{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m1f_c00295{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m99_c00295{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.ma4_c00295{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m4c_c00295{transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);}
.m65_c00295{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m16_c00295{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m5b_c00295{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m1e_c00295{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m9e_c00295{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m82_c00295{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m49_c00295{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m8a_c00295{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m56_c00295{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m2d_c00295{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.ma3_c00295{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m7f_c00295{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m4b_c00295{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m67_c00295{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m17_c00295{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m87_c00295{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m74_c00295{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m6c_c00295{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m11_c00295{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m20_c00295{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m73_c00295{transform:matrix(0.608974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608974,0.000000,0.000000,0.250000,0,0);}
.m70_c00295{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.m1b_c00295{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m59_c00295{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m47_c00295{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.m6e_c00295{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.m53_c00295{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.m63_c00295{transform:matrix(0.624304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624304,0.000000,0.000000,0.250000,0,0);}
.mad_c00295{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);}
.ma0_c00295{transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);}
.m71_c00295{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);}
.m1_c00295{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m1d_c00295{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.mc_c00295{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m22_c00295{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m3e_c00295{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.mb0_c00295{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m6b_c00295{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m7b_c00295{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.mb6_c00295{transform:matrix(0.721154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721154,0.000000,0.000000,0.250000,0,0);}
.m5_c00295{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m3f_c00295{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m3a_c00295{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m83_c00295{transform:matrix(0.737179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737179,0.000000,0.000000,0.250000,0,0);}
.m26_c00295{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m15_c00295{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m7c_c00295{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mbb_c00295{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m19_c00295{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m89_c00295{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m7d_c00295{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,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;}
}
.ws1_c00295{word-spacing:-7.448345px;}
.ws2_c00295{word-spacing:0.000000px;}
.ws0_c00295{word-spacing:0.264517px;}
.fc0_c00295{color:transparent;}
.fs4_c00295{font-size:18.720000px;}
.fs1_c00295{font-size:20.400000px;}
.fs0_c00295{font-size:25.500000px;}
.fs2_c00295{font-size:28.920000px;}
.fs5_c00295{font-size:32.340000px;}
.fs3_c00295{font-size:35.700000px;}
.fs6_c00295{font-size:39.120000px;}
.y0_c00295{bottom:0.000000px;}
.ya8_c00295{bottom:428.745000px;}
.ya6_c00295{bottom:430.905000px;}
.ya7_c00295{bottom:431.970000px;}
.ya4_c00295{bottom:448.245000px;}
.ya2_c00295{bottom:450.405000px;}
.ya5_c00295{bottom:450.630000px;}
.ya3_c00295{bottom:451.905000px;}
.y9f_c00295{bottom:467.745000px;}
.y9b_c00295{bottom:468.825000px;}
.ya1_c00295{bottom:469.245000px;}
.ya0_c00295{bottom:469.905000px;}
.y9e_c00295{bottom:470.130000px;}
.y9c_c00295{bottom:470.325000px;}
.y9d_c00295{bottom:471.405000px;}
.y97_c00295{bottom:488.325000px;}
.y98_c00295{bottom:488.745000px;}
.y95_c00295{bottom:489.630000px;}
.y99_c00295{bottom:489.825000px;}
.y9a_c00295{bottom:490.470000px;}
.y96_c00295{bottom:490.905000px;}
.y93_c00295{bottom:508.245000px;}
.y92_c00295{bottom:510.405000px;}
.y94_c00295{bottom:511.470000px;}
.y8f_c00295{bottom:525.405000px;}
.y91_c00295{bottom:526.680000px;}
.y8b_c00295{bottom:526.905000px;}
.y90_c00295{bottom:527.325000px;}
.y8c_c00295{bottom:527.745000px;}
.y8d_c00295{bottom:527.970000px;}
.y8a_c00295{bottom:528.825000px;}
.y8e_c00295{bottom:529.905000px;}
.y88_c00295{bottom:546.405000px;}
.y89_c00295{bottom:547.245000px;}
.y85_c00295{bottom:549.405000px;}
.y87_c00295{bottom:549.630000px;}
.y86_c00295{bottom:550.470000px;}
.y84_c00295{bottom:565.905000px;}
.y81_c00295{bottom:566.745000px;}
.y80_c00295{bottom:568.905000px;}
.y83_c00295{bottom:569.130000px;}
.y82_c00295{bottom:569.970000px;}
.y7d_c00295{bottom:586.245000px;}
.y7e_c00295{bottom:587.325000px;}
.y7f_c00295{bottom:588.405000px;}
.y7c_c00295{bottom:607.245000px;}
.y78_c00295{bottom:607.905000px;}
.y79_c00295{bottom:608.130000px;}
.y7b_c00295{bottom:608.325000px;}
.y7a_c00295{bottom:609.405000px;}
.y77_c00295{bottom:626.325000px;}
.y76_c00295{bottom:626.745000px;}
.y75_c00295{bottom:627.630000px;}
.y74_c00295{bottom:628.470000px;}
.y73_c00295{bottom:628.905000px;}
.y70_c00295{bottom:646.245000px;}
.y71_c00295{bottom:647.130000px;}
.y72_c00295{bottom:648.405000px;}
.y6d_c00295{bottom:664.470000px;}
.y6e_c00295{bottom:665.745000px;}
.y6f_c00295{bottom:666.825000px;}
.y6b_c00295{bottom:667.470000px;}
.y6c_c00295{bottom:667.905000px;}
.y67_c00295{bottom:685.245000px;}
.y68_c00295{bottom:686.130000px;}
.y66_c00295{bottom:687.405000px;}
.y69_c00295{bottom:687.630000px;}
.y6a_c00295{bottom:688.470000px;}
.y63_c00295{bottom:704.745000px;}
.y60_c00295{bottom:705.630000px;}
.y65_c00295{bottom:706.245000px;}
.y61_c00295{bottom:706.905000px;}
.y64_c00295{bottom:707.130000px;}
.y62_c00295{bottom:708.405000px;}
.y5b_c00295{bottom:724.245000px;}
.y5d_c00295{bottom:725.325000px;}
.y5c_c00295{bottom:726.405000px;}
.y5e_c00295{bottom:726.630000px;}
.y5f_c00295{bottom:727.470000px;}
.y57_c00295{bottom:744.825000px;}
.y59_c00295{bottom:745.245000px;}
.y56_c00295{bottom:745.905000px;}
.y5a_c00295{bottom:746.130000px;}
.y58_c00295{bottom:747.405000px;}
.y54_c00295{bottom:764.745000px;}
.y51_c00295{bottom:765.405000px;}
.y55_c00295{bottom:765.630000px;}
.y53_c00295{bottom:766.470000px;}
.y52_c00295{bottom:766.905000px;}
.y4d_c00295{bottom:782.745000px;}
.y4f_c00295{bottom:784.245000px;}
.y4b_c00295{bottom:784.905000px;}
.y50_c00295{bottom:785.325000px;}
.y4c_c00295{bottom:785.970000px;}
.y4e_c00295{bottom:786.405000px;}
.y47_c00295{bottom:801.405000px;}
.y45_c00295{bottom:803.325000px;}
.y4a_c00295{bottom:803.745000px;}
.y43_c00295{bottom:804.405000px;}
.y49_c00295{bottom:804.630000px;}
.y46_c00295{bottom:804.825000px;}
.y44_c00295{bottom:805.470000px;}
.y48_c00295{bottom:805.905000px;}
.y40_c00295{bottom:822.405000px;}
.y3e_c00295{bottom:823.245000px;}
.y42_c00295{bottom:824.325000px;}
.y3f_c00295{bottom:825.405000px;}
.y41_c00295{bottom:826.470000px;}
.y3c_c00295{bottom:842.745000px;}
.y3b_c00295{bottom:844.905000px;}
.y3d_c00295{bottom:845.130000px;}
.y39_c00295{bottom:862.245000px;}
.y36_c00295{bottom:863.325000px;}
.y3a_c00295{bottom:864.405000px;}
.y37_c00295{bottom:864.630000px;}
.y38_c00295{bottom:865.470000px;}
.y33_c00295{bottom:881.745000px;}
.y31_c00295{bottom:882.825000px;}
.y34_c00295{bottom:883.905000px;}
.y32_c00295{bottom:884.130000px;}
.y35_c00295{bottom:885.405000px;}
.y30_c00295{bottom:901.680000px;}
.y2c_c00295{bottom:902.745000px;}
.y2b_c00295{bottom:903.405000px;}
.y2f_c00295{bottom:903.630000px;}
.y2e_c00295{bottom:904.905000px;}
.y2d_c00295{bottom:905.970000px;}
.y25_c00295{bottom:922.245000px;}
.y26_c00295{bottom:923.130000px;}
.y28_c00295{bottom:923.325000px;}
.y27_c00295{bottom:923.970000px;}
.y29_c00295{bottom:924.405000px;}
.y2a_c00295{bottom:925.470000px;}
.y24_c00295{bottom:940.905000px;}
.y22_c00295{bottom:941.745000px;}
.y1e_c00295{bottom:942.630000px;}
.y20_c00295{bottom:943.470000px;}
.y1f_c00295{bottom:943.905000px;}
.y23_c00295{bottom:944.130000px;}
.y21_c00295{bottom:944.970000px;}
.y1a_c00295{bottom:961.245000px;}
.y1c_c00295{bottom:962.325000px;}
.y1b_c00295{bottom:963.405000px;}
.y1d_c00295{bottom:963.630000px;}
.y15_c00295{bottom:980.745000px;}
.y16_c00295{bottom:981.825000px;}
.y14_c00295{bottom:982.905000px;}
.y17_c00295{bottom:983.130000px;}
.y19_c00295{bottom:983.970000px;}
.y18_c00295{bottom:984.405000px;}
.ye_c00295{bottom:1000.245000px;}
.y13_c00295{bottom:1001.745000px;}
.yf_c00295{bottom:1001.970000px;}
.y10_c00295{bottom:1002.405000px;}
.y12_c00295{bottom:1002.630000px;}
.y11_c00295{bottom:1002.825000px;}
.yc_c00295{bottom:1021.905000px;}
.yd_c00295{bottom:1022.970000px;}
.yb_c00295{bottom:1039.245000px;}
.y9_c00295{bottom:1041.405000px;}
.ya_c00295{bottom:1041.630000px;}
.y8_c00295{bottom:1042.470000px;}
.y4_c00295{bottom:1058.745000px;}
.y3_c00295{bottom:1060.905000px;}
.y7_c00295{bottom:1061.130000px;}
.y5_c00295{bottom:1061.970000px;}
.y6_c00295{bottom:1062.405000px;}
.y2_c00295{bottom:1099.050000px;}
.y1_c00295{bottom:1100.970000px;}
.h5_c00295{height:23.025234px;}
.h2_c00295{height:25.091602px;}
.h1_c00295{height:31.364502px;}
.h3_c00295{height:35.571035px;}
.h6_c00295{height:39.777568px;}
.h4_c00295{height:43.910303px;}
.h7_c00295{height:48.116836px;}
.h0_c00295{height:1335.000000px;}
.w0_c00295{width:880.500000px;}
.x0_c00295{left:0.000000px;}
.x73_c00295{left:151.500000px;}
.x1_c00295{left:152.580000px;}
.xd0_c00295{left:166.500000px;}
.x21_c00295{left:168.000000px;}
.x1f_c00295{left:172.920000px;}
.xc5_c00295{left:178.080000px;}
.xe0_c00295{left:181.500000px;}
.x84_c00295{left:183.000000px;}
.xa4_c00295{left:184.500000px;}
.x99_c00295{left:187.500000px;}
.x11_c00295{left:188.580000px;}
.xed_c00295{left:190.920000px;}
.x44_c00295{left:192.000000px;}
.x2d_c00295{left:193.080000px;}
.xd7_c00295{left:195.000000px;}
.x5b_c00295{left:198.420000px;}
.xf1_c00295{left:199.500000px;}
.x85_c00295{left:201.000000px;}
.x9a_c00295{left:202.500000px;}
.xcd_c00295{left:204.000000px;}
.x7d_c00295{left:205.500000px;}
.x12_c00295{left:206.580000px;}
.x20_c00295{left:209.580000px;}
.x39_c00295{left:211.920000px;}
.x74_c00295{left:214.500000px;}
.xd8_c00295{left:217.080000px;}
.xb7_c00295{left:219.420000px;}
.x53_c00295{left:220.500000px;}
.xbe_c00295{left:223.920000px;}
.x3_c00295{left:226.500000px;}
.xdb_c00295{left:232.500000px;}
.x45_c00295{left:234.000000px;}
.x3a_c00295{left:238.500000px;}
.x9b_c00295{left:240.000000px;}
.x64_c00295{left:241.500000px;}
.x22_c00295{left:243.000000px;}
.xa5_c00295{left:246.420000px;}
.xc6_c00295{left:247.500000px;}
.x54_c00295{left:249.000000px;}
.x4_c00295{left:250.500000px;}
.x2e_c00295{left:252.000000px;}
.x46_c00295{left:253.920000px;}
.x65_c00295{left:255.855000px;}
.xb8_c00295{left:256.920000px;}
.x75_c00295{left:258.000000px;}
.x9c_c00295{left:259.920000px;}
.x8e_c00295{left:261.420000px;}
.x23_c00295{left:262.920000px;}
.xc7_c00295{left:265.920000px;}
.xf6_c00295{left:271.080000px;}
.xe1_c00295{left:272.580000px;}
.xa6_c00295{left:274.500000px;}
.x76_c00295{left:277.080000px;}
.x5c_c00295{left:279.000000px;}
.x13_c00295{left:282.000000px;}
.xf2_c00295{left:285.000000px;}
.x9d_c00295{left:286.080000px;}
.x8f_c00295{left:287.580000px;}
.x24_c00295{left:290.580000px;}
.xf7_c00295{left:294.000000px;}
.xe2_c00295{left:295.080000px;}
.xc8_c00295{left:296.580000px;}
.x47_c00295{left:298.500000px;}
.x5_c00295{left:300.000000px;}
.xb9_c00295{left:301.500000px;}
.xd9_c00295{left:309.000000px;}
.x2f_c00295{left:310.500000px;}
.x3b_c00295{left:313.500000px;}
.x14_c00295{left:314.580000px;}
.xbf_c00295{left:317.580000px;}
.x66_c00295{left:319.275000px;}
.x6_c00295{left:320.775000px;}
.x5d_c00295{left:322.080000px;}
.xd1_c00295{left:324.000000px;}
.xc9_c00295{left:327.000000px;}
.xdc_c00295{left:328.080000px;}
.x48_c00295{left:330.000000px;}
.xa7_c00295{left:333.420000px;}
.x55_c00295{left:334.500000px;}
.xc0_c00295{left:336.420000px;}
.xf3_c00295{left:340.500000px;}
.xaf_c00295{left:342.000000px;}
.x5e_c00295{left:345.000000px;}
.xce_c00295{left:346.920000px;}
.x77_c00295{left:348.000000px;}
.x3c_c00295{left:349.080000px;}
.x49_c00295{left:351.420000px;}
.x25_c00295{left:353.145000px;}
.xf8_c00295{left:355.080000px;}
.x7_c00295{left:357.000000px;}
.x67_c00295{left:358.080000px;}
.x56_c00295{left:359.580000px;}
.x90_c00295{left:361.500000px;}
.x30_c00295{left:364.080000px;}
.x9e_c00295{left:367.080000px;}
.xeb_c00295{left:368.580000px;}
.x86_c00295{left:373.500000px;}
.xd2_c00295{left:375.000000px;}
.xc1_c00295{left:376.080000px;}
.x4a_c00295{left:379.500000px;}
.x3d_c00295{left:381.000000px;}
.xcf_c00295{left:382.080000px;}
.x31_c00295{left:384.000000px;}
.x6e_c00295{left:385.080000px;}
.x8_c00295{left:388.500000px;}
.x15_c00295{left:391.500000px;}
.x7e_c00295{left:393.000000px;}
.x91_c00295{left:395.580000px;}
.xf4_c00295{left:397.080000px;}
.x87_c00295{left:399.000000px;}
.xe3_c00295{left:402.000000px;}
.x68_c00295{left:403.920000px;}
.x2_c00295{left:406.500000px;}
.x26_c00295{left:407.580000px;}
.x7f_c00295{left:409.500000px;}
.xa8_c00295{left:412.500000px;}
.x92_c00295{left:414.420000px;}
.x57_c00295{left:416.580000px;}
.x16_c00295{left:418.500000px;}
.x4b_c00295{left:423.420000px;}
.x69_c00295{left:430.500000px;}
.x88_c00295{left:432.000000px;}
.x5f_c00295{left:435.000000px;}
.xb0_c00295{left:436.500000px;}
.x9_c00295{left:439.500000px;}
.x93_c00295{left:441.000000px;}
.x80_c00295{left:442.500000px;}
.xdd_c00295{left:445.500000px;}
.x27_c00295{left:447.000000px;}
.x6f_c00295{left:448.500000px;}
.x3e_c00295{left:450.000000px;}
.xb1_c00295{left:453.000000px;}
.xba_c00295{left:454.500000px;}
.xa_c00295{left:456.420000px;}
.x4c_c00295{left:459.000000px;}
.xf5_c00295{left:460.500000px;}
.x81_c00295{left:462.000000px;}
.xd3_c00295{left:463.920000px;}
.xf9_c00295{left:465.000000px;}
.xe6_c00295{left:466.920000px;}
.x58_c00295{left:468.000000px;}
.x32_c00295{left:469.920000px;}
.x9f_c00295{left:471.420000px;}
.x17_c00295{left:472.500000px;}
.x78_c00295{left:475.500000px;}
.x94_c00295{left:482.580000px;}
.x4d_c00295{left:486.420000px;}
.x3f_c00295{left:487.920000px;}
.xa9_c00295{left:489.420000px;}
.xec_c00295{left:490.500000px;}
.x79_c00295{left:492.000000px;}
.xde_c00295{left:495.000000px;}
.x6a_c00295{left:496.500000px;}
.xa0_c00295{left:499.500000px;}
.xb_c00295{left:503.580000px;}
.xe7_c00295{left:505.080000px;}
.x33_c00295{left:507.000000px;}
.x59_c00295{left:508.920000px;}
.x18_c00295{left:510.420000px;}
.xb2_c00295{left:511.500000px;}
.xbb_c00295{left:514.920000px;}
.x60_c00295{left:516.000000px;}
.xaa_c00295{left:517.080000px;}
.xca_c00295{left:519.000000px;}
.x4e_c00295{left:522.000000px;}
.x89_c00295{left:524.580000px;}
.x95_c00295{left:526.500000px;}
.x40_c00295{left:528.000000px;}
.xb3_c00295{left:532.500000px;}
.x34_c00295{left:533.580000px;}
.x28_c00295{left:535.500000px;}
.x82_c00295{left:536.580000px;}
.x61_c00295{left:541.920000px;}
.xda_c00295{left:544.500000px;}
.x5a_c00295{left:546.000000px;}
.xdf_c00295{left:547.500000px;}
.x19_c00295{left:550.500000px;}
.xe8_c00295{left:552.000000px;}
.x7a_c00295{left:553.500000px;}
.x6b_c00295{left:554.580000px;}
.x70_c00295{left:561.000000px;}
.x35_c00295{left:565.500000px;}
.x4f_c00295{left:567.000000px;}
.xbc_c00295{left:568.500000px;}
.x1a_c00295{left:570.420000px;}
.xc_c00295{left:573.000000px;}
.xd4_c00295{left:574.080000px;}
.xa1_c00295{left:577.500000px;}
.xee_c00295{left:579.000000px;}
.xbd_c00295{left:582.000000px;}
.x50_c00295{left:586.920000px;}
.xab_c00295{left:588.000000px;}
.x8a_c00295{left:589.920000px;}
.xd_c00295{left:591.420000px;}
.xef_c00295{left:592.920000px;}
.xa2_c00295{left:594.420000px;}
.x36_c00295{left:598.500000px;}
.xc2_c00295{left:600.000000px;}
.x1b_c00295{left:601.080000px;}
.x7b_c00295{left:602.580000px;}
.x41_c00295{left:604.920000px;}
.x71_c00295{left:610.080000px;}
.x29_c00295{left:613.275000px;}
.x8b_c00295{left:615.000000px;}
.x6c_c00295{left:616.920000px;}
.xe4_c00295{left:618.000000px;}
.x37_c00295{left:619.080000px;}
.xd5_c00295{left:622.500000px;}
.xac_c00295{left:624.000000px;}
.xb4_c00295{left:625.920000px;}
.xe_c00295{left:627.000000px;}
.xc3_c00295{left:628.500000px;}
.x1c_c00295{left:630.000000px;}
.xcb_c00295{left:631.500000px;}
.x83_c00295{left:634.920000px;}
.x42_c00295{left:636.000000px;}
.x62_c00295{left:638.145000px;}
.xf0_c00295{left:639.420000px;}
.xe9_c00295{left:642.000000px;}
.x6d_c00295{left:643.500000px;}
.x38_c00295{left:646.500000px;}
.xf_c00295{left:649.920000px;}
.x1d_c00295{left:651.000000px;}
.x2a_c00295{left:654.420000px;}
.xfa_c00295{left:655.500000px;}
.x8c_c00295{left:658.500000px;}
.xb5_c00295{left:660.000000px;}
.x51_c00295{left:661.080000px;}
.xe5_c00295{left:668.580000px;}
.xa3_c00295{left:670.500000px;}
.x96_c00295{left:672.000000px;}
.xad_c00295{left:673.500000px;}
.xcc_c00295{left:675.000000px;}
.x10_c00295{left:676.500000px;}
.xd6_c00295{left:679.500000px;}
.x52_c00295{left:681.000000px;}
.x2b_c00295{left:682.920000px;}
.xc4_c00295{left:685.500000px;}
.x97_c00295{left:687.000000px;}
.x72_c00295{left:691.275000px;}
.xfb_c00295{left:693.420000px;}
.x63_c00295{left:697.080000px;}
.x8d_c00295{left:699.420000px;}
.x98_c00295{left:703.500000px;}
.xea_c00295{left:704.580000px;}
.x1e_c00295{left:707.580000px;}
.xb6_c00295{left:709.500000px;}
.x7c_c00295{left:711.420000px;}
.x43_c00295{left:714.420000px;}
.x2c_c00295{left:716.580000px;}
.xfc_c00295{left:718.500000px;}
.xae_c00295{left:723.000000px;}
@media print{
.v0_c00295{vertical-align:0.000000pt;}
.ls0_c00295{letter-spacing:0.000000pt;}
.ws1_c00295{word-spacing:-6.620751pt;}
.ws2_c00295{word-spacing:0.000000pt;}
.ws0_c00295{word-spacing:0.235126pt;}
.fs4_c00295{font-size:16.640000pt;}
.fs1_c00295{font-size:18.133333pt;}
.fs0_c00295{font-size:22.666667pt;}
.fs2_c00295{font-size:25.706667pt;}
.fs5_c00295{font-size:28.746667pt;}
.fs3_c00295{font-size:31.733333pt;}
.fs6_c00295{font-size:34.773333pt;}
.y0_c00295{bottom:0.000000pt;}
.ya8_c00295{bottom:381.106667pt;}
.ya6_c00295{bottom:383.026667pt;}
.ya7_c00295{bottom:383.973333pt;}
.ya4_c00295{bottom:398.440000pt;}
.ya2_c00295{bottom:400.360000pt;}
.ya5_c00295{bottom:400.560000pt;}
.ya3_c00295{bottom:401.693333pt;}
.y9f_c00295{bottom:415.773333pt;}
.y9b_c00295{bottom:416.733333pt;}
.ya1_c00295{bottom:417.106667pt;}
.ya0_c00295{bottom:417.693333pt;}
.y9e_c00295{bottom:417.893333pt;}
.y9c_c00295{bottom:418.066667pt;}
.y9d_c00295{bottom:419.026667pt;}
.y97_c00295{bottom:434.066667pt;}
.y98_c00295{bottom:434.440000pt;}
.y95_c00295{bottom:435.226667pt;}
.y99_c00295{bottom:435.400000pt;}
.y9a_c00295{bottom:435.973333pt;}
.y96_c00295{bottom:436.360000pt;}
.y93_c00295{bottom:451.773333pt;}
.y92_c00295{bottom:453.693333pt;}
.y94_c00295{bottom:454.640000pt;}
.y8f_c00295{bottom:467.026667pt;}
.y91_c00295{bottom:468.160000pt;}
.y8b_c00295{bottom:468.360000pt;}
.y90_c00295{bottom:468.733333pt;}
.y8c_c00295{bottom:469.106667pt;}
.y8d_c00295{bottom:469.306667pt;}
.y8a_c00295{bottom:470.066667pt;}
.y8e_c00295{bottom:471.026667pt;}
.y88_c00295{bottom:485.693333pt;}
.y89_c00295{bottom:486.440000pt;}
.y85_c00295{bottom:488.360000pt;}
.y87_c00295{bottom:488.560000pt;}
.y86_c00295{bottom:489.306667pt;}
.y84_c00295{bottom:503.026667pt;}
.y81_c00295{bottom:503.773333pt;}
.y80_c00295{bottom:505.693333pt;}
.y83_c00295{bottom:505.893333pt;}
.y82_c00295{bottom:506.640000pt;}
.y7d_c00295{bottom:521.106667pt;}
.y7e_c00295{bottom:522.066667pt;}
.y7f_c00295{bottom:523.026667pt;}
.y7c_c00295{bottom:539.773333pt;}
.y78_c00295{bottom:540.360000pt;}
.y79_c00295{bottom:540.560000pt;}
.y7b_c00295{bottom:540.733333pt;}
.y7a_c00295{bottom:541.693333pt;}
.y77_c00295{bottom:556.733333pt;}
.y76_c00295{bottom:557.106667pt;}
.y75_c00295{bottom:557.893333pt;}
.y74_c00295{bottom:558.640000pt;}
.y73_c00295{bottom:559.026667pt;}
.y70_c00295{bottom:574.440000pt;}
.y71_c00295{bottom:575.226667pt;}
.y72_c00295{bottom:576.360000pt;}
.y6d_c00295{bottom:590.640000pt;}
.y6e_c00295{bottom:591.773333pt;}
.y6f_c00295{bottom:592.733333pt;}
.y6b_c00295{bottom:593.306667pt;}
.y6c_c00295{bottom:593.693333pt;}
.y67_c00295{bottom:609.106667pt;}
.y68_c00295{bottom:609.893333pt;}
.y66_c00295{bottom:611.026667pt;}
.y69_c00295{bottom:611.226667pt;}
.y6a_c00295{bottom:611.973333pt;}
.y63_c00295{bottom:626.440000pt;}
.y60_c00295{bottom:627.226667pt;}
.y65_c00295{bottom:627.773333pt;}
.y61_c00295{bottom:628.360000pt;}
.y64_c00295{bottom:628.560000pt;}
.y62_c00295{bottom:629.693333pt;}
.y5b_c00295{bottom:643.773333pt;}
.y5d_c00295{bottom:644.733333pt;}
.y5c_c00295{bottom:645.693333pt;}
.y5e_c00295{bottom:645.893333pt;}
.y5f_c00295{bottom:646.640000pt;}
.y57_c00295{bottom:662.066667pt;}
.y59_c00295{bottom:662.440000pt;}
.y56_c00295{bottom:663.026667pt;}
.y5a_c00295{bottom:663.226667pt;}
.y58_c00295{bottom:664.360000pt;}
.y54_c00295{bottom:679.773333pt;}
.y51_c00295{bottom:680.360000pt;}
.y55_c00295{bottom:680.560000pt;}
.y53_c00295{bottom:681.306667pt;}
.y52_c00295{bottom:681.693333pt;}
.y4d_c00295{bottom:695.773333pt;}
.y4f_c00295{bottom:697.106667pt;}
.y4b_c00295{bottom:697.693333pt;}
.y50_c00295{bottom:698.066667pt;}
.y4c_c00295{bottom:698.640000pt;}
.y4e_c00295{bottom:699.026667pt;}
.y47_c00295{bottom:712.360000pt;}
.y45_c00295{bottom:714.066667pt;}
.y4a_c00295{bottom:714.440000pt;}
.y43_c00295{bottom:715.026667pt;}
.y49_c00295{bottom:715.226667pt;}
.y46_c00295{bottom:715.400000pt;}
.y44_c00295{bottom:715.973333pt;}
.y48_c00295{bottom:716.360000pt;}
.y40_c00295{bottom:731.026667pt;}
.y3e_c00295{bottom:731.773333pt;}
.y42_c00295{bottom:732.733333pt;}
.y3f_c00295{bottom:733.693333pt;}
.y41_c00295{bottom:734.640000pt;}
.y3c_c00295{bottom:749.106667pt;}
.y3b_c00295{bottom:751.026667pt;}
.y3d_c00295{bottom:751.226667pt;}
.y39_c00295{bottom:766.440000pt;}
.y36_c00295{bottom:767.400000pt;}
.y3a_c00295{bottom:768.360000pt;}
.y37_c00295{bottom:768.560000pt;}
.y38_c00295{bottom:769.306667pt;}
.y33_c00295{bottom:783.773333pt;}
.y31_c00295{bottom:784.733333pt;}
.y34_c00295{bottom:785.693333pt;}
.y32_c00295{bottom:785.893333pt;}
.y35_c00295{bottom:787.026667pt;}
.y30_c00295{bottom:801.493333pt;}
.y2c_c00295{bottom:802.440000pt;}
.y2b_c00295{bottom:803.026667pt;}
.y2f_c00295{bottom:803.226667pt;}
.y2e_c00295{bottom:804.360000pt;}
.y2d_c00295{bottom:805.306667pt;}
.y25_c00295{bottom:819.773333pt;}
.y26_c00295{bottom:820.560000pt;}
.y28_c00295{bottom:820.733333pt;}
.y27_c00295{bottom:821.306667pt;}
.y29_c00295{bottom:821.693333pt;}
.y2a_c00295{bottom:822.640000pt;}
.y24_c00295{bottom:836.360000pt;}
.y22_c00295{bottom:837.106667pt;}
.y1e_c00295{bottom:837.893333pt;}
.y20_c00295{bottom:838.640000pt;}
.y1f_c00295{bottom:839.026667pt;}
.y23_c00295{bottom:839.226667pt;}
.y21_c00295{bottom:839.973333pt;}
.y1a_c00295{bottom:854.440000pt;}
.y1c_c00295{bottom:855.400000pt;}
.y1b_c00295{bottom:856.360000pt;}
.y1d_c00295{bottom:856.560000pt;}
.y15_c00295{bottom:871.773333pt;}
.y16_c00295{bottom:872.733333pt;}
.y14_c00295{bottom:873.693333pt;}
.y17_c00295{bottom:873.893333pt;}
.y19_c00295{bottom:874.640000pt;}
.y18_c00295{bottom:875.026667pt;}
.ye_c00295{bottom:889.106667pt;}
.y13_c00295{bottom:890.440000pt;}
.yf_c00295{bottom:890.640000pt;}
.y10_c00295{bottom:891.026667pt;}
.y12_c00295{bottom:891.226667pt;}
.y11_c00295{bottom:891.400000pt;}
.yc_c00295{bottom:908.360000pt;}
.yd_c00295{bottom:909.306667pt;}
.yb_c00295{bottom:923.773333pt;}
.y9_c00295{bottom:925.693333pt;}
.ya_c00295{bottom:925.893333pt;}
.y8_c00295{bottom:926.640000pt;}
.y4_c00295{bottom:941.106667pt;}
.y3_c00295{bottom:943.026667pt;}
.y7_c00295{bottom:943.226667pt;}
.y5_c00295{bottom:943.973333pt;}
.y6_c00295{bottom:944.360000pt;}
.y2_c00295{bottom:976.933333pt;}
.y1_c00295{bottom:978.640000pt;}
.h5_c00295{height:20.466875pt;}
.h2_c00295{height:22.303646pt;}
.h1_c00295{height:27.879557pt;}
.h3_c00295{height:31.618698pt;}
.h6_c00295{height:35.357839pt;}
.h4_c00295{height:39.031380pt;}
.h7_c00295{height:42.770521pt;}
.h0_c00295{height:1186.666667pt;}
.w0_c00295{width:782.666667pt;}
.x0_c00295{left:0.000000pt;}
.x73_c00295{left:134.666667pt;}
.x1_c00295{left:135.626667pt;}
.xd0_c00295{left:148.000000pt;}
.x21_c00295{left:149.333333pt;}
.x1f_c00295{left:153.706667pt;}
.xc5_c00295{left:158.293333pt;}
.xe0_c00295{left:161.333333pt;}
.x84_c00295{left:162.666667pt;}
.xa4_c00295{left:164.000000pt;}
.x99_c00295{left:166.666667pt;}
.x11_c00295{left:167.626667pt;}
.xed_c00295{left:169.706667pt;}
.x44_c00295{left:170.666667pt;}
.x2d_c00295{left:171.626667pt;}
.xd7_c00295{left:173.333333pt;}
.x5b_c00295{left:176.373333pt;}
.xf1_c00295{left:177.333333pt;}
.x85_c00295{left:178.666667pt;}
.x9a_c00295{left:180.000000pt;}
.xcd_c00295{left:181.333333pt;}
.x7d_c00295{left:182.666667pt;}
.x12_c00295{left:183.626667pt;}
.x20_c00295{left:186.293333pt;}
.x39_c00295{left:188.373333pt;}
.x74_c00295{left:190.666667pt;}
.xd8_c00295{left:192.960000pt;}
.xb7_c00295{left:195.040000pt;}
.x53_c00295{left:196.000000pt;}
.xbe_c00295{left:199.040000pt;}
.x3_c00295{left:201.333333pt;}
.xdb_c00295{left:206.666667pt;}
.x45_c00295{left:208.000000pt;}
.x3a_c00295{left:212.000000pt;}
.x9b_c00295{left:213.333333pt;}
.x64_c00295{left:214.666667pt;}
.x22_c00295{left:216.000000pt;}
.xa5_c00295{left:219.040000pt;}
.xc6_c00295{left:220.000000pt;}
.x54_c00295{left:221.333333pt;}
.x4_c00295{left:222.666667pt;}
.x2e_c00295{left:224.000000pt;}
.x46_c00295{left:225.706667pt;}
.x65_c00295{left:227.426667pt;}
.xb8_c00295{left:228.373333pt;}
.x75_c00295{left:229.333333pt;}
.x9c_c00295{left:231.040000pt;}
.x8e_c00295{left:232.373333pt;}
.x23_c00295{left:233.706667pt;}
.xc7_c00295{left:236.373333pt;}
.xf6_c00295{left:240.960000pt;}
.xe1_c00295{left:242.293333pt;}
.xa6_c00295{left:244.000000pt;}
.x76_c00295{left:246.293333pt;}
.x5c_c00295{left:248.000000pt;}
.x13_c00295{left:250.666667pt;}
.xf2_c00295{left:253.333333pt;}
.x9d_c00295{left:254.293333pt;}
.x8f_c00295{left:255.626667pt;}
.x24_c00295{left:258.293333pt;}
.xf7_c00295{left:261.333333pt;}
.xe2_c00295{left:262.293333pt;}
.xc8_c00295{left:263.626667pt;}
.x47_c00295{left:265.333333pt;}
.x5_c00295{left:266.666667pt;}
.xb9_c00295{left:268.000000pt;}
.xd9_c00295{left:274.666667pt;}
.x2f_c00295{left:276.000000pt;}
.x3b_c00295{left:278.666667pt;}
.x14_c00295{left:279.626667pt;}
.xbf_c00295{left:282.293333pt;}
.x66_c00295{left:283.800000pt;}
.x6_c00295{left:285.133333pt;}
.x5d_c00295{left:286.293333pt;}
.xd1_c00295{left:288.000000pt;}
.xc9_c00295{left:290.666667pt;}
.xdc_c00295{left:291.626667pt;}
.x48_c00295{left:293.333333pt;}
.xa7_c00295{left:296.373333pt;}
.x55_c00295{left:297.333333pt;}
.xc0_c00295{left:299.040000pt;}
.xf3_c00295{left:302.666667pt;}
.xaf_c00295{left:304.000000pt;}
.x5e_c00295{left:306.666667pt;}
.xce_c00295{left:308.373333pt;}
.x77_c00295{left:309.333333pt;}
.x3c_c00295{left:310.293333pt;}
.x49_c00295{left:312.373333pt;}
.x25_c00295{left:313.906667pt;}
.xf8_c00295{left:315.626667pt;}
.x7_c00295{left:317.333333pt;}
.x67_c00295{left:318.293333pt;}
.x56_c00295{left:319.626667pt;}
.x90_c00295{left:321.333333pt;}
.x30_c00295{left:323.626667pt;}
.x9e_c00295{left:326.293333pt;}
.xeb_c00295{left:327.626667pt;}
.x86_c00295{left:332.000000pt;}
.xd2_c00295{left:333.333333pt;}
.xc1_c00295{left:334.293333pt;}
.x4a_c00295{left:337.333333pt;}
.x3d_c00295{left:338.666667pt;}
.xcf_c00295{left:339.626667pt;}
.x31_c00295{left:341.333333pt;}
.x6e_c00295{left:342.293333pt;}
.x8_c00295{left:345.333333pt;}
.x15_c00295{left:348.000000pt;}
.x7e_c00295{left:349.333333pt;}
.x91_c00295{left:351.626667pt;}
.xf4_c00295{left:352.960000pt;}
.x87_c00295{left:354.666667pt;}
.xe3_c00295{left:357.333333pt;}
.x68_c00295{left:359.040000pt;}
.x2_c00295{left:361.333333pt;}
.x26_c00295{left:362.293333pt;}
.x7f_c00295{left:364.000000pt;}
.xa8_c00295{left:366.666667pt;}
.x92_c00295{left:368.373333pt;}
.x57_c00295{left:370.293333pt;}
.x16_c00295{left:372.000000pt;}
.x4b_c00295{left:376.373333pt;}
.x69_c00295{left:382.666667pt;}
.x88_c00295{left:384.000000pt;}
.x5f_c00295{left:386.666667pt;}
.xb0_c00295{left:388.000000pt;}
.x9_c00295{left:390.666667pt;}
.x93_c00295{left:392.000000pt;}
.x80_c00295{left:393.333333pt;}
.xdd_c00295{left:396.000000pt;}
.x27_c00295{left:397.333333pt;}
.x6f_c00295{left:398.666667pt;}
.x3e_c00295{left:400.000000pt;}
.xb1_c00295{left:402.666667pt;}
.xba_c00295{left:404.000000pt;}
.xa_c00295{left:405.706667pt;}
.x4c_c00295{left:408.000000pt;}
.xf5_c00295{left:409.333333pt;}
.x81_c00295{left:410.666667pt;}
.xd3_c00295{left:412.373333pt;}
.xf9_c00295{left:413.333333pt;}
.xe6_c00295{left:415.040000pt;}
.x58_c00295{left:416.000000pt;}
.x32_c00295{left:417.706667pt;}
.x9f_c00295{left:419.040000pt;}
.x17_c00295{left:420.000000pt;}
.x78_c00295{left:422.666667pt;}
.x94_c00295{left:428.960000pt;}
.x4d_c00295{left:432.373333pt;}
.x3f_c00295{left:433.706667pt;}
.xa9_c00295{left:435.040000pt;}
.xec_c00295{left:436.000000pt;}
.x79_c00295{left:437.333333pt;}
.xde_c00295{left:440.000000pt;}
.x6a_c00295{left:441.333333pt;}
.xa0_c00295{left:444.000000pt;}
.xb_c00295{left:447.626667pt;}
.xe7_c00295{left:448.960000pt;}
.x33_c00295{left:450.666667pt;}
.x59_c00295{left:452.373333pt;}
.x18_c00295{left:453.706667pt;}
.xb2_c00295{left:454.666667pt;}
.xbb_c00295{left:457.706667pt;}
.x60_c00295{left:458.666667pt;}
.xaa_c00295{left:459.626667pt;}
.xca_c00295{left:461.333333pt;}
.x4e_c00295{left:464.000000pt;}
.x89_c00295{left:466.293333pt;}
.x95_c00295{left:468.000000pt;}
.x40_c00295{left:469.333333pt;}
.xb3_c00295{left:473.333333pt;}
.x34_c00295{left:474.293333pt;}
.x28_c00295{left:476.000000pt;}
.x82_c00295{left:476.960000pt;}
.x61_c00295{left:481.706667pt;}
.xda_c00295{left:484.000000pt;}
.x5a_c00295{left:485.333333pt;}
.xdf_c00295{left:486.666667pt;}
.x19_c00295{left:489.333333pt;}
.xe8_c00295{left:490.666667pt;}
.x7a_c00295{left:492.000000pt;}
.x6b_c00295{left:492.960000pt;}
.x70_c00295{left:498.666667pt;}
.x35_c00295{left:502.666667pt;}
.x4f_c00295{left:504.000000pt;}
.xbc_c00295{left:505.333333pt;}
.x1a_c00295{left:507.040000pt;}
.xc_c00295{left:509.333333pt;}
.xd4_c00295{left:510.293333pt;}
.xa1_c00295{left:513.333333pt;}
.xee_c00295{left:514.666667pt;}
.xbd_c00295{left:517.333333pt;}
.x50_c00295{left:521.706667pt;}
.xab_c00295{left:522.666667pt;}
.x8a_c00295{left:524.373333pt;}
.xd_c00295{left:525.706667pt;}
.xef_c00295{left:527.040000pt;}
.xa2_c00295{left:528.373333pt;}
.x36_c00295{left:532.000000pt;}
.xc2_c00295{left:533.333333pt;}
.x1b_c00295{left:534.293333pt;}
.x7b_c00295{left:535.626667pt;}
.x41_c00295{left:537.706667pt;}
.x71_c00295{left:542.293333pt;}
.x29_c00295{left:545.133333pt;}
.x8b_c00295{left:546.666667pt;}
.x6c_c00295{left:548.373333pt;}
.xe4_c00295{left:549.333333pt;}
.x37_c00295{left:550.293333pt;}
.xd5_c00295{left:553.333333pt;}
.xac_c00295{left:554.666667pt;}
.xb4_c00295{left:556.373333pt;}
.xe_c00295{left:557.333333pt;}
.xc3_c00295{left:558.666667pt;}
.x1c_c00295{left:560.000000pt;}
.xcb_c00295{left:561.333333pt;}
.x83_c00295{left:564.373333pt;}
.x42_c00295{left:565.333333pt;}
.x62_c00295{left:567.240000pt;}
.xf0_c00295{left:568.373333pt;}
.xe9_c00295{left:570.666667pt;}
.x6d_c00295{left:572.000000pt;}
.x38_c00295{left:574.666667pt;}
.xf_c00295{left:577.706667pt;}
.x1d_c00295{left:578.666667pt;}
.x2a_c00295{left:581.706667pt;}
.xfa_c00295{left:582.666667pt;}
.x8c_c00295{left:585.333333pt;}
.xb5_c00295{left:586.666667pt;}
.x51_c00295{left:587.626667pt;}
.xe5_c00295{left:594.293333pt;}
.xa3_c00295{left:596.000000pt;}
.x96_c00295{left:597.333333pt;}
.xad_c00295{left:598.666667pt;}
.xcc_c00295{left:600.000000pt;}
.x10_c00295{left:601.333333pt;}
.xd6_c00295{left:604.000000pt;}
.x52_c00295{left:605.333333pt;}
.x2b_c00295{left:607.040000pt;}
.xc4_c00295{left:609.333333pt;}
.x97_c00295{left:610.666667pt;}
.x72_c00295{left:614.466667pt;}
.xfb_c00295{left:616.373333pt;}
.x63_c00295{left:619.626667pt;}
.x8d_c00295{left:621.706667pt;}
.x98_c00295{left:625.333333pt;}
.xea_c00295{left:626.293333pt;}
.x1e_c00295{left:628.960000pt;}
.xb6_c00295{left:630.666667pt;}
.x7c_c00295{left:632.373333pt;}
.x43_c00295{left:635.040000pt;}
.x2c_c00295{left:636.960000pt;}
.xfc_c00295{left:638.666667pt;}
.xae_c00295{left:642.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_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_41213d27515e51c8d6f0195a.woff2')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md4_c00296{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.m1d_c00296{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m84_c00296{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m50_c00296{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m9a_c00296{transform:matrix(0.364264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364264,0.000000,0.000000,0.250000,0,0);}
.md7_c00296{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m4_c00296{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m26_c00296{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m90_c00296{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m98_c00296{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mce_c00296{transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);}
.m25_c00296{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m87_c00296{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.mc0_c00296{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.mb7_c00296{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m27_c00296{transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);}
.mba_c00296{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m89_c00296{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m3a_c00296{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_c00296{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m46_c00296{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.mb0_c00296{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m97_c00296{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m5e_c00296{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m4c_c00296{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m6d_c00296{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m22_c00296{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.ma0_c00296{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.m4b_c00296{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.mb5_c00296{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m82_c00296{transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);}
.mb9_c00296{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m45_c00296{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m3c_c00296{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.ma1_c00296{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mb_c00296{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m9f_c00296{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m21_c00296{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m6f_c00296{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m19_c00296{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m9b_c00296{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m7a_c00296{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m4e_c00296{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m7e_c00296{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mcf_c00296{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.mac_c00296{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.ma_c00296{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.ma8_c00296{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.ma9_c00296{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m23_c00296{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.mc7_c00296{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.mc5_c00296{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m7c_c00296{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m96_c00296{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m32_c00296{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m1a_c00296{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.md3_c00296{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m86_c00296{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.m77_c00296{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m31_c00296{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.maa_c00296{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m99_c00296{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m76_c00296{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m5b_c00296{transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);}
.m95_c00296{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m70_c00296{transform:matrix(0.444341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444341,0.000000,0.000000,0.250000,0,0);}
.m1c_c00296{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m47_c00296{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m6c_c00296{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.m8c_c00296{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.mcd_c00296{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m8e_c00296{transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);}
.m56_c00296{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m58_c00296{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mc1_c00296{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.ma4_c00296{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m10_c00296{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m57_c00296{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.m2d_c00296{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.mcb_c00296{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.mad_c00296{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.mb3_c00296{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.mb1_c00296{transform:matrix(0.472689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472689,0.000000,0.000000,0.250000,0,0);}
.m12_c00296{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m2f_c00296{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m69_c00296{transform:matrix(0.483766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483766,0.000000,0.000000,0.250000,0,0);}
.m11_c00296{transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);}
.m9_c00296{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m62_c00296{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mab_c00296{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m5a_c00296{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m63_c00296{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.maf_c00296{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m91_c00296{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m13_c00296{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m9d_c00296{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m3e_c00296{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mc6_c00296{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m94_c00296{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m53_c00296{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);}
.md1_c00296{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mbf_c00296{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.mc3_c00296{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.ma7_c00296{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m43_c00296{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m80_c00296{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m1e_c00296{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.ma6_c00296{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m83_c00296{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m20_c00296{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m33_c00296{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m30_c00296{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.mf_c00296{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.mca_c00296{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.md_c00296{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mcc_c00296{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m85_c00296{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m7d_c00296{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m52_c00296{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m1b_c00296{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m81_c00296{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m9e_c00296{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m78_c00296{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m9c_c00296{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m3f_c00296{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m92_c00296{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m18_c00296{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m72_c00296{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m6_c00296{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mb4_c00296{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m60_c00296{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m3_c00296{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m2_c00296{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m8f_c00296{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m59_c00296{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m71_c00296{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m68_c00296{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m1f_c00296{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.md6_c00296{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m64_c00296{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.mc_c00296{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m7_c00296{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m65_c00296{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m42_c00296{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.m6a_c00296{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m16_c00296{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m4d_c00296{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m67_c00296{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m34_c00296{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m37_c00296{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m39_c00296{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m4f_c00296{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m29_c00296{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mbc_c00296{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m2b_c00296{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m73_c00296{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m17_c00296{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m79_c00296{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m8b_c00296{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.me_c00296{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m41_c00296{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.ma5_c00296{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.mb2_c00296{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m8d_c00296{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m54_c00296{transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);}
.m5_c00296{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m49_c00296{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m15_c00296{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mae_c00296{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.m2c_c00296{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.md2_c00296{transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);}
.m40_c00296{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m51_c00296{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m3d_c00296{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m55_c00296{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m36_c00296{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.ma3_c00296{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m6b_c00296{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m24_c00296{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m14_c00296{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m75_c00296{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.md0_c00296{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m74_c00296{transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);}
.m7f_c00296{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_c00296{transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);}
.m44_c00296{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m4a_c00296{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m93_c00296{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.mc9_c00296{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.m7b_c00296{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m5d_c00296{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m38_c00296{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m6e_c00296{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mbe_c00296{transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);}
.m88_c00296{transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);}
.m5c_c00296{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.ma2_c00296{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.mb8_c00296{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m48_c00296{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mbd_c00296{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m8a_c00296{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m8_c00296{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.md5_c00296{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m2a_c00296{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m61_c00296{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.m3b_c00296{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m35_c00296{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m5f_c00296{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mb6_c00296{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.mbb_c00296{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m2e_c00296{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mc4_c00296{transform:matrix(0.808088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.808088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.808088,0.000000,0.000000,0.250000,0,0);}
.mc2_c00296{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m1_c00296{transform:matrix(0.845954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845954,0.000000,0.000000,0.250000,0,0);}
.m28_c00296{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.mc8_c00296{transform:matrix(7.210526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.210526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.210526,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:-4.514274px;}
.ws1_c00296{word-spacing:-1.575123px;}
.ws3_c00296{word-spacing:0.000000px;}
.ws2_c00296{word-spacing:0.123939px;}
.fc0_c00296{color:transparent;}
.fs8_c00296{font-size:3.420000px;}
.fs4_c00296{font-size:11.880000px;}
.fs2_c00296{font-size:18.720000px;}
.fs6_c00296{font-size:20.400000px;}
.fs3_c00296{font-size:25.500000px;}
.fs0_c00296{font-size:28.920000px;}
.fs5_c00296{font-size:32.340000px;}
.fs1_c00296{font-size:35.700000px;}
.fs7_c00296{font-size:39.120000px;}
.y0_c00296{bottom:0.000000px;}
.yaa_c00296{bottom:229.905000px;}
.yab_c00296{bottom:230.745000px;}
.ya9_c00296{bottom:230.970000px;}
.ya8_c00296{bottom:233.130000px;}
.ya7_c00296{bottom:234.405000px;}
.ya6_c00296{bottom:251.745000px;}
.ya5_c00296{bottom:253.905000px;}
.ya4_c00296{bottom:254.130000px;}
.ya1_c00296{bottom:271.245000px;}
.ya3_c00296{bottom:271.470000px;}
.y9e_c00296{bottom:272.550000px;}
.y9f_c00296{bottom:273.405000px;}
.ya2_c00296{bottom:274.470000px;}
.ya0_c00296{bottom:274.905000px;}
.y9a_c00296{bottom:289.905000px;}
.y98_c00296{bottom:290.745000px;}
.y9d_c00296{bottom:291.405000px;}
.y9b_c00296{bottom:291.825000px;}
.y97_c00296{bottom:292.905000px;}
.y99_c00296{bottom:293.130000px;}
.y9c_c00296{bottom:294.405000px;}
.y96_c00296{bottom:310.245000px;}
.y93_c00296{bottom:311.745000px;}
.y95_c00296{bottom:312.630000px;}
.y94_c00296{bottom:313.470000px;}
.y92_c00296{bottom:313.905000px;}
.y90_c00296{bottom:330.825000px;}
.y8e_c00296{bottom:331.245000px;}
.y91_c00296{bottom:331.920000px;}
.y8f_c00296{bottom:332.130000px;}
.y8c_c00296{bottom:332.550000px;}
.y8d_c00296{bottom:333.405000px;}
.y88_c00296{bottom:355.245000px;}
.y8b_c00296{bottom:356.130000px;}
.y89_c00296{bottom:356.970000px;}
.y8a_c00296{bottom:357.405000px;}
.y87_c00296{bottom:389.745000px;}
.y86_c00296{bottom:390.630000px;}
.y84_c00296{bottom:390.825000px;}
.y82_c00296{bottom:391.470000px;}
.y83_c00296{bottom:391.905000px;}
.y85_c00296{bottom:392.130000px;}
.y7f_c00296{bottom:409.245000px;}
.y81_c00296{bottom:410.130000px;}
.y7e_c00296{bottom:410.970000px;}
.y7d_c00296{bottom:411.405000px;}
.y80_c00296{bottom:411.630000px;}
.y7c_c00296{bottom:428.745000px;}
.y78_c00296{bottom:429.825000px;}
.y7b_c00296{bottom:430.245000px;}
.y77_c00296{bottom:430.905000px;}
.y79_c00296{bottom:431.130000px;}
.y7a_c00296{bottom:432.405000px;}
.y74_c00296{bottom:447.405000px;}
.y76_c00296{bottom:449.745000px;}
.y75_c00296{bottom:450.630000px;}
.y73_c00296{bottom:450.825000px;}
.y71_c00296{bottom:451.470000px;}
.y72_c00296{bottom:451.905000px;}
.y6f_c00296{bottom:469.245000px;}
.y70_c00296{bottom:470.970000px;}
.y6e_c00296{bottom:471.405000px;}
.y6b_c00296{bottom:486.405000px;}
.y6a_c00296{bottom:488.745000px;}
.y6d_c00296{bottom:490.470000px;}
.y6c_c00296{bottom:490.905000px;}
.y67_c00296{bottom:506.970000px;}
.y68_c00296{bottom:507.405000px;}
.y65_c00296{bottom:508.245000px;}
.y66_c00296{bottom:509.130000px;}
.y69_c00296{bottom:509.325000px;}
.y64_c00296{bottom:510.405000px;}
.y61_c00296{bottom:526.905000px;}
.y62_c00296{bottom:527.745000px;}
.y60_c00296{bottom:529.905000px;}
.y63_c00296{bottom:530.130000px;}
.y59_c00296{bottom:547.245000px;}
.y5b_c00296{bottom:547.680000px;}
.y5a_c00296{bottom:548.325000px;}
.y5e_c00296{bottom:549.405000px;}
.y5c_c00296{bottom:549.630000px;}
.y5f_c00296{bottom:550.470000px;}
.y5d_c00296{bottom:550.905000px;}
.y55_c00296{bottom:566.745000px;}
.y57_c00296{bottom:568.245000px;}
.y56_c00296{bottom:568.905000px;}
.y58_c00296{bottom:570.405000px;}
.y52_c00296{bottom:587.745000px;}
.y54_c00296{bottom:588.825000px;}
.y51_c00296{bottom:589.905000px;}
.y53_c00296{bottom:590.970000px;}
.y4e_c00296{bottom:607.245000px;}
.y4f_c00296{bottom:608.130000px;}
.y50_c00296{bottom:609.405000px;}
.y4a_c00296{bottom:626.745000px;}
.y4c_c00296{bottom:627.825000px;}
.y4d_c00296{bottom:628.050000px;}
.y4b_c00296{bottom:628.470000px;}
.y49_c00296{bottom:628.905000px;}
.y46_c00296{bottom:644.325000px;}
.y48_c00296{bottom:646.245000px;}
.y45_c00296{bottom:648.405000px;}
.y47_c00296{bottom:648.630000px;}
.y44_c00296{bottom:664.905000px;}
.y43_c00296{bottom:665.745000px;}
.y41_c00296{bottom:667.905000px;}
.y42_c00296{bottom:668.970000px;}
.y40_c00296{bottom:686.745000px;}
.y3f_c00296{bottom:688.470000px;}
.y3d_c00296{bottom:688.905000px;}
.y3e_c00296{bottom:689.970000px;}
.y39_c00296{bottom:706.245000px;}
.y3c_c00296{bottom:707.325000px;}
.y3a_c00296{bottom:707.970000px;}
.y3b_c00296{bottom:708.405000px;}
.y37_c00296{bottom:725.745000px;}
.y34_c00296{bottom:726.825000px;}
.y36_c00296{bottom:727.470000px;}
.y33_c00296{bottom:727.905000px;}
.y38_c00296{bottom:728.130000px;}
.y35_c00296{bottom:728.970000px;}
.y32_c00296{bottom:745.245000px;}
.y30_c00296{bottom:746.130000px;}
.y31_c00296{bottom:747.405000px;}
.y2a_c00296{bottom:764.325000px;}
.y2d_c00296{bottom:764.745000px;}
.y2c_c00296{bottom:766.470000px;}
.y2b_c00296{bottom:766.905000px;}
.y2e_c00296{bottom:767.130000px;}
.y2f_c00296{bottom:768.405000px;}
.y26_c00296{bottom:783.405000px;}
.y27_c00296{bottom:785.325000px;}
.y29_c00296{bottom:785.745000px;}
.y24_c00296{bottom:786.405000px;}
.y25_c00296{bottom:787.470000px;}
.y28_c00296{bottom:787.905000px;}
.y22_c00296{bottom:803.970000px;}
.y23_c00296{bottom:805.245000px;}
.y20_c00296{bottom:806.130000px;}
.y21_c00296{bottom:807.405000px;}
.y1e_c00296{bottom:824.745000px;}
.y1c_c00296{bottom:825.405000px;}
.y1f_c00296{bottom:825.825000px;}
.y1b_c00296{bottom:826.470000px;}
.y1d_c00296{bottom:826.905000px;}
.y1a_c00296{bottom:844.245000px;}
.y19_c00296{bottom:845.130000px;}
.y18_c00296{bottom:846.405000px;}
.y15_c00296{bottom:863.745000px;}
.y17_c00296{bottom:864.630000px;}
.y16_c00296{bottom:865.905000px;}
.y14_c00296{bottom:882.825000px;}
.y12_c00296{bottom:884.130000px;}
.y13_c00296{bottom:885.405000px;}
.yd_c00296{bottom:901.275000px;}
.yc_c00296{bottom:902.745000px;}
.y11_c00296{bottom:903.825000px;}
.ye_c00296{bottom:904.905000px;}
.yf_c00296{bottom:905.130000px;}
.y10_c00296{bottom:905.970000px;}
.ya_c00296{bottom:922.245000px;}
.y9_c00296{bottom:924.405000px;}
.yb_c00296{bottom:925.470000px;}
.y8_c00296{bottom:940.905000px;}
.y7_c00296{bottom:941.745000px;}
.y5_c00296{bottom:943.905000px;}
.y6_c00296{bottom:945.405000px;}
.y3_c00296{bottom:961.245000px;}
.y2_c00296{bottom:963.405000px;}
.y4_c00296{bottom:963.630000px;}
.y1_c00296{bottom:1003.905000px;}
.h9_c00296{height:4.206533px;}
.h5_c00296{height:14.612168px;}
.h3_c00296{height:23.025234px;}
.h7_c00296{height:25.091602px;}
.h4_c00296{height:31.364502px;}
.h1_c00296{height:35.571035px;}
.h6_c00296{height:39.777568px;}
.h2_c00296{height:43.910303px;}
.h8_c00296{height:48.116836px;}
.h0_c00296{height:1335.000000px;}
.w0_c00296{width:880.500000px;}
.x0_c00296{left:0.000000px;}
.xe_c00296{left:151.920000px;}
.x35_c00296{left:153.000000px;}
.xf8_c00296{left:160.920000px;}
.xe6_c00296{left:162.000000px;}
.x3_c00296{left:168.000000px;}
.x3a_c00296{left:169.080000px;}
.xb3_c00296{left:170.580000px;}
.x46_c00296{left:178.500000px;}
.x58_c00296{left:180.000000px;}
.x51_c00296{left:182.580000px;}
.x36_c00296{left:186.000000px;}
.x1e_c00296{left:189.420000px;}
.xee_c00296{left:192.000000px;}
.xf_c00296{left:193.080000px;}
.x7d_c00296{left:195.000000px;}
.x4_c00296{left:200.580000px;}
.x37_c00296{left:202.500000px;}
.x9c_c00296{left:204.000000px;}
.xbf_c00296{left:205.500000px;}
.x10_c00296{left:210.420000px;}
.x59_c00296{left:213.000000px;}
.x1f_c00296{left:214.920000px;}
.xd7_c00296{left:216.420000px;}
.x72_c00296{left:220.500000px;}
.xe3_c00296{left:222.645000px;}
.xe7_c00296{left:225.000000px;}
.x95_c00296{left:226.500000px;}
.x2a_c00296{left:227.580000px;}
.x61_c00296{left:229.500000px;}
.x20_c00296{left:234.000000px;}
.x11_c00296{left:236.580000px;}
.xb8_c00296{left:237.645000px;}
.x7e_c00296{left:240.000000px;}
.xc0_c00296{left:241.080000px;}
.x3b_c00296{left:247.080000px;}
.x84_c00296{left:250.500000px;}
.x89_c00296{left:252.000000px;}
.xc8_c00296{left:255.000000px;}
.xe4_c00296{left:256.500000px;}
.x5a_c00296{left:258.000000px;}
.x9d_c00296{left:259.500000px;}
.xa2_c00296{left:262.080000px;}
.x52_c00296{left:264.420000px;}
.x85_c00296{left:267.000000px;}
.x3c_c00296{left:268.080000px;}
.x47_c00296{left:270.000000px;}
.x96_c00296{left:271.500000px;}
.x5_c00296{left:273.000000px;}
.xaa_c00296{left:274.080000px;}
.x12_c00296{left:277.080000px;}
.xd0_c00296{left:279.000000px;}
.x38_c00296{left:280.500000px;}
.xa3_c00296{left:282.420000px;}
.x21_c00296{left:286.080000px;}
.x48_c00296{left:288.000000px;}
.x69_c00296{left:289.500000px;}
.x62_c00296{left:291.420000px;}
.x39_c00296{left:292.500000px;}
.x2b_c00296{left:295.500000px;}
.xfc_c00296{left:301.500000px;}
.x73_c00296{left:303.000000px;}
.xb9_c00296{left:304.500000px;}
.x6a_c00296{left:306.000000px;}
.x22_c00296{left:307.500000px;}
.xa4_c00296{left:310.080000px;}
.x9e_c00296{left:312.000000px;}
.x7f_c00296{left:315.420000px;}
.x86_c00296{left:316.500000px;}
.xe8_c00296{left:318.000000px;}
.xac_c00296{left:319.080000px;}
.x49_c00296{left:321.000000px;}
.x6b_c00296{left:322.500000px;}
.x13_c00296{left:324.000000px;}
.x6_c00296{left:325.080000px;}
.x5b_c00296{left:327.000000px;}
.xdd_c00296{left:328.920000px;}
.x8c_c00296{left:331.080000px;}
.xc9_c00296{left:333.000000px;}
.x3d_c00296{left:337.500000px;}
.x4a_c00296{left:339.420000px;}
.x97_c00296{left:340.920000px;}
.x53_c00296{left:342.000000px;}
.x7_c00296{left:346.920000px;}
.xfd_c00296{left:349.500000px;}
.x6c_c00296{left:351.000000px;}
.xef_c00296{left:355.920000px;}
.xe9_c00296{left:357.000000px;}
.x8a_c00296{left:358.500000px;}
.x1_c00296{left:359.580000px;}
.xf9_c00296{left:363.000000px;}
.x4b_c00296{left:365.580000px;}
.x98_c00296{left:367.920000px;}
.x74_c00296{left:370.080000px;}
.xd8_c00296{left:372.000000px;}
.x14_c00296{left:373.080000px;}
.x8_c00296{left:374.580000px;}
.xba_c00296{left:376.080000px;}
.xde_c00296{left:379.500000px;}
.x23_c00296{left:382.500000px;}
.xb4_c00296{left:384.420000px;}
.x3e_c00296{left:386.580000px;}
.xfe_c00296{left:388.500000px;}
.x2c_c00296{left:389.580000px;}
.xf3_c00296{left:393.000000px;}
.x8b_c00296{left:394.500000px;}
.xad_c00296{left:396.000000px;}
.x2d_c00296{left:399.000000px;}
.xd9_c00296{left:400.920000px;}
.xc1_c00296{left:402.420000px;}
.xea_c00296{left:403.500000px;}
.x3f_c00296{left:405.000000px;}
.x8d_c00296{left:407.355000px;}
.x5c_c00296{left:408.420000px;}
.x80_c00296{left:411.000000px;}
.xb5_c00296{left:412.500000px;}
.x2_c00296{left:415.080000px;}
.xa5_c00296{left:417.000000px;}
.xf0_c00296{left:418.500000px;}
.x24_c00296{left:421.080000px;}
.x63_c00296{left:424.500000px;}
.x87_c00296{left:426.000000px;}
.x9f_c00296{left:429.000000px;}
.xc2_c00296{left:430.920000px;}
.xdf_c00296{left:432.000000px;}
.xd1_c00296{left:433.500000px;}
.x15_c00296{left:434.580000px;}
.x5d_c00296{left:436.920000px;}
.x2e_c00296{left:444.000000px;}
.x99_c00296{left:445.080000px;}
.x8e_c00296{left:447.000000px;}
.xf4_c00296{left:448.500000px;}
.xae_c00296{left:450.000000px;}
.x54_c00296{left:451.920000px;}
.x16_c00296{left:453.000000px;}
.x77_c00296{left:456.000000px;}
.xb6_c00296{left:457.080000px;}
.x6d_c00296{left:459.000000px;}
.x25_c00296{left:460.080000px;}
.x4c_c00296{left:465.000000px;}
.x8f_c00296{left:466.500000px;}
.xc3_c00296{left:471.000000px;}
.xeb_c00296{left:472.080000px;}
.x2f_c00296{left:474.000000px;}
.x17_c00296{left:477.000000px;}
.x40_c00296{left:478.500000px;}
.x75_c00296{left:483.000000px;}
.xe0_c00296{left:489.420000px;}
.x4d_c00296{left:490.500000px;}
.x9_c00296{left:492.420000px;}
.x78_c00296{left:495.420000px;}
.x64_c00296{left:498.420000px;}
.x6e_c00296{left:499.920000px;}
.xca_c00296{left:501.000000px;}
.xda_c00296{left:503.580000px;}
.xc4_c00296{left:507.000000px;}
.xd2_c00296{left:508.500000px;}
.x81_c00296{left:509.580000px;}
.xab_c00296{left:512.580000px;}
.x9a_c00296{left:514.500000px;}
.x41_c00296{left:516.000000px;}
.xa6_c00296{left:517.080000px;}
.x90_c00296{left:519.000000px;}
.x4e_c00296{left:522.000000px;}
.xa_c00296{left:523.080000px;}
.x26_c00296{left:525.420000px;}
.xaf_c00296{left:526.500000px;}
.x42_c00296{left:528.000000px;}
.xe5_c00296{left:529.080000px;}
.x18_c00296{left:532.500000px;}
.x65_c00296{left:534.420000px;}
.xa7_c00296{left:537.420000px;}
.xd3_c00296{left:538.500000px;}
.x91_c00296{left:539.775000px;}
.xcb_c00296{left:541.920000px;}
.xe1_c00296{left:543.000000px;}
.xb_c00296{left:544.080000px;}
.xf5_c00296{left:546.000000px;}
.x19_c00296{left:548.580000px;}
.x82_c00296{left:550.500000px;}
.x30_c00296{left:552.420000px;}
.xbb_c00296{left:553.920000px;}
.xe2_c00296{left:555.420000px;}
.xce_c00296{left:556.920000px;}
.x55_c00296{left:558.000000px;}
.x27_c00296{left:562.500000px;}
.x6f_c00296{left:565.500000px;}
.xf6_c00296{left:567.420000px;}
.x79_c00296{left:570.420000px;}
.x43_c00296{left:574.500000px;}
.xc5_c00296{left:576.000000px;}
.x5e_c00296{left:577.080000px;}
.x92_c00296{left:579.000000px;}
.xbc_c00296{left:580.920000px;}
.x1a_c00296{left:585.000000px;}
.xd4_c00296{left:589.080000px;}
.x31_c00296{left:592.500000px;}
.xf7_c00296{left:594.000000px;}
.x88_c00296{left:595.080000px;}
.x5f_c00296{left:597.420000px;}
.xb7_c00296{left:598.500000px;}
.xc_c00296{left:600.420000px;}
.x4f_c00296{left:601.500000px;}
.x7a_c00296{left:606.000000px;}
.xcc_c00296{left:607.080000px;}
.x70_c00296{left:609.000000px;}
.x32_c00296{left:610.080000px;}
.xfa_c00296{left:612.420000px;}
.xff_c00296{left:613.500000px;}
.xb0_c00296{left:615.000000px;}
.x44_c00296{left:619.500000px;}
.x9b_c00296{left:622.080000px;}
.xf1_c00296{left:625.500000px;}
.x56_c00296{left:627.420000px;}
.x66_c00296{left:628.500000px;}
.x1b_c00296{left:629.580000px;}
.xa8_c00296{left:633.420000px;}
.x83_c00296{left:635.580000px;}
.x28_c00296{left:637.920000px;}
.xb1_c00296{left:639.000000px;}
.x93_c00296{left:640.080000px;}
.x7b_c00296{left:644.580000px;}
.xec_c00296{left:646.500000px;}
.xdb_c00296{left:647.580000px;}
.x100_c00296{left:649.080000px;}
.xd5_c00296{left:651.000000px;}
.xc6_c00296{left:652.080000px;}
.x45_c00296{left:654.000000px;}
.x33_c00296{left:657.000000px;}
.x67_c00296{left:658.080000px;}
.x1c_c00296{left:660.000000px;}
.xa0_c00296{left:661.920000px;}
.xcf_c00296{left:664.500000px;}
.xb2_c00296{left:666.000000px;}
.x76_c00296{left:668.580000px;}
.xf2_c00296{left:670.500000px;}
.xa9_c00296{left:672.420000px;}
.xdc_c00296{left:676.500000px;}
.x50_c00296{left:677.580000px;}
.x60_c00296{left:679.500000px;}
.xbd_c00296{left:685.920000px;}
.x94_c00296{left:687.420000px;}
.x68_c00296{left:688.500000px;}
.xa1_c00296{left:691.500000px;}
.xd6_c00296{left:693.420000px;}
.x57_c00296{left:694.920000px;}
.xd_c00296{left:697.920000px;}
.x71_c00296{left:699.420000px;}
.x1d_c00296{left:701.355000px;}
.x34_c00296{left:703.080000px;}
.xbe_c00296{left:705.420000px;}
.x101_c00296{left:706.500000px;}
.x29_c00296{left:708.000000px;}
.x7c_c00296{left:713.580000px;}
.xc7_c00296{left:715.500000px;}
.xcd_c00296{left:716.580000px;}
.xed_c00296{left:723.420000px;}
.xfb_c00296{left:725.580000px;}
@media print{
.v0_c00296{vertical-align:0.000000pt;}
.ls0_c00296{letter-spacing:0.000000pt;}
.ws0_c00296{word-spacing:-4.012688pt;}
.ws1_c00296{word-spacing:-1.400109pt;}
.ws3_c00296{word-spacing:0.000000pt;}
.ws2_c00296{word-spacing:0.110168pt;}
.fs8_c00296{font-size:3.040000pt;}
.fs4_c00296{font-size:10.560000pt;}
.fs2_c00296{font-size:16.640000pt;}
.fs6_c00296{font-size:18.133333pt;}
.fs3_c00296{font-size:22.666667pt;}
.fs0_c00296{font-size:25.706667pt;}
.fs5_c00296{font-size:28.746667pt;}
.fs1_c00296{font-size:31.733333pt;}
.fs7_c00296{font-size:34.773333pt;}
.y0_c00296{bottom:0.000000pt;}
.yaa_c00296{bottom:204.360000pt;}
.yab_c00296{bottom:205.106667pt;}
.ya9_c00296{bottom:205.306667pt;}
.ya8_c00296{bottom:207.226667pt;}
.ya7_c00296{bottom:208.360000pt;}
.ya6_c00296{bottom:223.773333pt;}
.ya5_c00296{bottom:225.693333pt;}
.ya4_c00296{bottom:225.893333pt;}
.ya1_c00296{bottom:241.106667pt;}
.ya3_c00296{bottom:241.306667pt;}
.y9e_c00296{bottom:242.266667pt;}
.y9f_c00296{bottom:243.026667pt;}
.ya2_c00296{bottom:243.973333pt;}
.ya0_c00296{bottom:244.360000pt;}
.y9a_c00296{bottom:257.693333pt;}
.y98_c00296{bottom:258.440000pt;}
.y9d_c00296{bottom:259.026667pt;}
.y9b_c00296{bottom:259.400000pt;}
.y97_c00296{bottom:260.360000pt;}
.y99_c00296{bottom:260.560000pt;}
.y9c_c00296{bottom:261.693333pt;}
.y96_c00296{bottom:275.773333pt;}
.y93_c00296{bottom:277.106667pt;}
.y95_c00296{bottom:277.893333pt;}
.y94_c00296{bottom:278.640000pt;}
.y92_c00296{bottom:279.026667pt;}
.y90_c00296{bottom:294.066667pt;}
.y8e_c00296{bottom:294.440000pt;}
.y91_c00296{bottom:295.040000pt;}
.y8f_c00296{bottom:295.226667pt;}
.y8c_c00296{bottom:295.600000pt;}
.y8d_c00296{bottom:296.360000pt;}
.y88_c00296{bottom:315.773333pt;}
.y8b_c00296{bottom:316.560000pt;}
.y89_c00296{bottom:317.306667pt;}
.y8a_c00296{bottom:317.693333pt;}
.y87_c00296{bottom:346.440000pt;}
.y86_c00296{bottom:347.226667pt;}
.y84_c00296{bottom:347.400000pt;}
.y82_c00296{bottom:347.973333pt;}
.y83_c00296{bottom:348.360000pt;}
.y85_c00296{bottom:348.560000pt;}
.y7f_c00296{bottom:363.773333pt;}
.y81_c00296{bottom:364.560000pt;}
.y7e_c00296{bottom:365.306667pt;}
.y7d_c00296{bottom:365.693333pt;}
.y80_c00296{bottom:365.893333pt;}
.y7c_c00296{bottom:381.106667pt;}
.y78_c00296{bottom:382.066667pt;}
.y7b_c00296{bottom:382.440000pt;}
.y77_c00296{bottom:383.026667pt;}
.y79_c00296{bottom:383.226667pt;}
.y7a_c00296{bottom:384.360000pt;}
.y74_c00296{bottom:397.693333pt;}
.y76_c00296{bottom:399.773333pt;}
.y75_c00296{bottom:400.560000pt;}
.y73_c00296{bottom:400.733333pt;}
.y71_c00296{bottom:401.306667pt;}
.y72_c00296{bottom:401.693333pt;}
.y6f_c00296{bottom:417.106667pt;}
.y70_c00296{bottom:418.640000pt;}
.y6e_c00296{bottom:419.026667pt;}
.y6b_c00296{bottom:432.360000pt;}
.y6a_c00296{bottom:434.440000pt;}
.y6d_c00296{bottom:435.973333pt;}
.y6c_c00296{bottom:436.360000pt;}
.y67_c00296{bottom:450.640000pt;}
.y68_c00296{bottom:451.026667pt;}
.y65_c00296{bottom:451.773333pt;}
.y66_c00296{bottom:452.560000pt;}
.y69_c00296{bottom:452.733333pt;}
.y64_c00296{bottom:453.693333pt;}
.y61_c00296{bottom:468.360000pt;}
.y62_c00296{bottom:469.106667pt;}
.y60_c00296{bottom:471.026667pt;}
.y63_c00296{bottom:471.226667pt;}
.y59_c00296{bottom:486.440000pt;}
.y5b_c00296{bottom:486.826667pt;}
.y5a_c00296{bottom:487.400000pt;}
.y5e_c00296{bottom:488.360000pt;}
.y5c_c00296{bottom:488.560000pt;}
.y5f_c00296{bottom:489.306667pt;}
.y5d_c00296{bottom:489.693333pt;}
.y55_c00296{bottom:503.773333pt;}
.y57_c00296{bottom:505.106667pt;}
.y56_c00296{bottom:505.693333pt;}
.y58_c00296{bottom:507.026667pt;}
.y52_c00296{bottom:522.440000pt;}
.y54_c00296{bottom:523.400000pt;}
.y51_c00296{bottom:524.360000pt;}
.y53_c00296{bottom:525.306667pt;}
.y4e_c00296{bottom:539.773333pt;}
.y4f_c00296{bottom:540.560000pt;}
.y50_c00296{bottom:541.693333pt;}
.y4a_c00296{bottom:557.106667pt;}
.y4c_c00296{bottom:558.066667pt;}
.y4d_c00296{bottom:558.266667pt;}
.y4b_c00296{bottom:558.640000pt;}
.y49_c00296{bottom:559.026667pt;}
.y46_c00296{bottom:572.733333pt;}
.y48_c00296{bottom:574.440000pt;}
.y45_c00296{bottom:576.360000pt;}
.y47_c00296{bottom:576.560000pt;}
.y44_c00296{bottom:591.026667pt;}
.y43_c00296{bottom:591.773333pt;}
.y41_c00296{bottom:593.693333pt;}
.y42_c00296{bottom:594.640000pt;}
.y40_c00296{bottom:610.440000pt;}
.y3f_c00296{bottom:611.973333pt;}
.y3d_c00296{bottom:612.360000pt;}
.y3e_c00296{bottom:613.306667pt;}
.y39_c00296{bottom:627.773333pt;}
.y3c_c00296{bottom:628.733333pt;}
.y3a_c00296{bottom:629.306667pt;}
.y3b_c00296{bottom:629.693333pt;}
.y37_c00296{bottom:645.106667pt;}
.y34_c00296{bottom:646.066667pt;}
.y36_c00296{bottom:646.640000pt;}
.y33_c00296{bottom:647.026667pt;}
.y38_c00296{bottom:647.226667pt;}
.y35_c00296{bottom:647.973333pt;}
.y32_c00296{bottom:662.440000pt;}
.y30_c00296{bottom:663.226667pt;}
.y31_c00296{bottom:664.360000pt;}
.y2a_c00296{bottom:679.400000pt;}
.y2d_c00296{bottom:679.773333pt;}
.y2c_c00296{bottom:681.306667pt;}
.y2b_c00296{bottom:681.693333pt;}
.y2e_c00296{bottom:681.893333pt;}
.y2f_c00296{bottom:683.026667pt;}
.y26_c00296{bottom:696.360000pt;}
.y27_c00296{bottom:698.066667pt;}
.y29_c00296{bottom:698.440000pt;}
.y24_c00296{bottom:699.026667pt;}
.y25_c00296{bottom:699.973333pt;}
.y28_c00296{bottom:700.360000pt;}
.y22_c00296{bottom:714.640000pt;}
.y23_c00296{bottom:715.773333pt;}
.y20_c00296{bottom:716.560000pt;}
.y21_c00296{bottom:717.693333pt;}
.y1e_c00296{bottom:733.106667pt;}
.y1c_c00296{bottom:733.693333pt;}
.y1f_c00296{bottom:734.066667pt;}
.y1b_c00296{bottom:734.640000pt;}
.y1d_c00296{bottom:735.026667pt;}
.y1a_c00296{bottom:750.440000pt;}
.y19_c00296{bottom:751.226667pt;}
.y18_c00296{bottom:752.360000pt;}
.y15_c00296{bottom:767.773333pt;}
.y17_c00296{bottom:768.560000pt;}
.y16_c00296{bottom:769.693333pt;}
.y14_c00296{bottom:784.733333pt;}
.y12_c00296{bottom:785.893333pt;}
.y13_c00296{bottom:787.026667pt;}
.yd_c00296{bottom:801.133333pt;}
.yc_c00296{bottom:802.440000pt;}
.y11_c00296{bottom:803.400000pt;}
.ye_c00296{bottom:804.360000pt;}
.yf_c00296{bottom:804.560000pt;}
.y10_c00296{bottom:805.306667pt;}
.ya_c00296{bottom:819.773333pt;}
.y9_c00296{bottom:821.693333pt;}
.yb_c00296{bottom:822.640000pt;}
.y8_c00296{bottom:836.360000pt;}
.y7_c00296{bottom:837.106667pt;}
.y5_c00296{bottom:839.026667pt;}
.y6_c00296{bottom:840.360000pt;}
.y3_c00296{bottom:854.440000pt;}
.y2_c00296{bottom:856.360000pt;}
.y4_c00296{bottom:856.560000pt;}
.y1_c00296{bottom:892.360000pt;}
.h9_c00296{height:3.739141pt;}
.h5_c00296{height:12.988594pt;}
.h3_c00296{height:20.466875pt;}
.h7_c00296{height:22.303646pt;}
.h4_c00296{height:27.879557pt;}
.h1_c00296{height:31.618698pt;}
.h6_c00296{height:35.357839pt;}
.h2_c00296{height:39.031380pt;}
.h8_c00296{height:42.770521pt;}
.h0_c00296{height:1186.666667pt;}
.w0_c00296{width:782.666667pt;}
.x0_c00296{left:0.000000pt;}
.xe_c00296{left:135.040000pt;}
.x35_c00296{left:136.000000pt;}
.xf8_c00296{left:143.040000pt;}
.xe6_c00296{left:144.000000pt;}
.x3_c00296{left:149.333333pt;}
.x3a_c00296{left:150.293333pt;}
.xb3_c00296{left:151.626667pt;}
.x46_c00296{left:158.666667pt;}
.x58_c00296{left:160.000000pt;}
.x51_c00296{left:162.293333pt;}
.x36_c00296{left:165.333333pt;}
.x1e_c00296{left:168.373333pt;}
.xee_c00296{left:170.666667pt;}
.xf_c00296{left:171.626667pt;}
.x7d_c00296{left:173.333333pt;}
.x4_c00296{left:178.293333pt;}
.x37_c00296{left:180.000000pt;}
.x9c_c00296{left:181.333333pt;}
.xbf_c00296{left:182.666667pt;}
.x10_c00296{left:187.040000pt;}
.x59_c00296{left:189.333333pt;}
.x1f_c00296{left:191.040000pt;}
.xd7_c00296{left:192.373333pt;}
.x72_c00296{left:196.000000pt;}
.xe3_c00296{left:197.906667pt;}
.xe7_c00296{left:200.000000pt;}
.x95_c00296{left:201.333333pt;}
.x2a_c00296{left:202.293333pt;}
.x61_c00296{left:204.000000pt;}
.x20_c00296{left:208.000000pt;}
.x11_c00296{left:210.293333pt;}
.xb8_c00296{left:211.240000pt;}
.x7e_c00296{left:213.333333pt;}
.xc0_c00296{left:214.293333pt;}
.x3b_c00296{left:219.626667pt;}
.x84_c00296{left:222.666667pt;}
.x89_c00296{left:224.000000pt;}
.xc8_c00296{left:226.666667pt;}
.xe4_c00296{left:228.000000pt;}
.x5a_c00296{left:229.333333pt;}
.x9d_c00296{left:230.666667pt;}
.xa2_c00296{left:232.960000pt;}
.x52_c00296{left:235.040000pt;}
.x85_c00296{left:237.333333pt;}
.x3c_c00296{left:238.293333pt;}
.x47_c00296{left:240.000000pt;}
.x96_c00296{left:241.333333pt;}
.x5_c00296{left:242.666667pt;}
.xaa_c00296{left:243.626667pt;}
.x12_c00296{left:246.293333pt;}
.xd0_c00296{left:248.000000pt;}
.x38_c00296{left:249.333333pt;}
.xa3_c00296{left:251.040000pt;}
.x21_c00296{left:254.293333pt;}
.x48_c00296{left:256.000000pt;}
.x69_c00296{left:257.333333pt;}
.x62_c00296{left:259.040000pt;}
.x39_c00296{left:260.000000pt;}
.x2b_c00296{left:262.666667pt;}
.xfc_c00296{left:268.000000pt;}
.x73_c00296{left:269.333333pt;}
.xb9_c00296{left:270.666667pt;}
.x6a_c00296{left:272.000000pt;}
.x22_c00296{left:273.333333pt;}
.xa4_c00296{left:275.626667pt;}
.x9e_c00296{left:277.333333pt;}
.x7f_c00296{left:280.373333pt;}
.x86_c00296{left:281.333333pt;}
.xe8_c00296{left:282.666667pt;}
.xac_c00296{left:283.626667pt;}
.x49_c00296{left:285.333333pt;}
.x6b_c00296{left:286.666667pt;}
.x13_c00296{left:288.000000pt;}
.x6_c00296{left:288.960000pt;}
.x5b_c00296{left:290.666667pt;}
.xdd_c00296{left:292.373333pt;}
.x8c_c00296{left:294.293333pt;}
.xc9_c00296{left:296.000000pt;}
.x3d_c00296{left:300.000000pt;}
.x4a_c00296{left:301.706667pt;}
.x97_c00296{left:303.040000pt;}
.x53_c00296{left:304.000000pt;}
.x7_c00296{left:308.373333pt;}
.xfd_c00296{left:310.666667pt;}
.x6c_c00296{left:312.000000pt;}
.xef_c00296{left:316.373333pt;}
.xe9_c00296{left:317.333333pt;}
.x8a_c00296{left:318.666667pt;}
.x1_c00296{left:319.626667pt;}
.xf9_c00296{left:322.666667pt;}
.x4b_c00296{left:324.960000pt;}
.x98_c00296{left:327.040000pt;}
.x74_c00296{left:328.960000pt;}
.xd8_c00296{left:330.666667pt;}
.x14_c00296{left:331.626667pt;}
.x8_c00296{left:332.960000pt;}
.xba_c00296{left:334.293333pt;}
.xde_c00296{left:337.333333pt;}
.x23_c00296{left:340.000000pt;}
.xb4_c00296{left:341.706667pt;}
.x3e_c00296{left:343.626667pt;}
.xfe_c00296{left:345.333333pt;}
.x2c_c00296{left:346.293333pt;}
.xf3_c00296{left:349.333333pt;}
.x8b_c00296{left:350.666667pt;}
.xad_c00296{left:352.000000pt;}
.x2d_c00296{left:354.666667pt;}
.xd9_c00296{left:356.373333pt;}
.xc1_c00296{left:357.706667pt;}
.xea_c00296{left:358.666667pt;}
.x3f_c00296{left:360.000000pt;}
.x8d_c00296{left:362.093333pt;}
.x5c_c00296{left:363.040000pt;}
.x80_c00296{left:365.333333pt;}
.xb5_c00296{left:366.666667pt;}
.x2_c00296{left:368.960000pt;}
.xa5_c00296{left:370.666667pt;}
.xf0_c00296{left:372.000000pt;}
.x24_c00296{left:374.293333pt;}
.x63_c00296{left:377.333333pt;}
.x87_c00296{left:378.666667pt;}
.x9f_c00296{left:381.333333pt;}
.xc2_c00296{left:383.040000pt;}
.xdf_c00296{left:384.000000pt;}
.xd1_c00296{left:385.333333pt;}
.x15_c00296{left:386.293333pt;}
.x5d_c00296{left:388.373333pt;}
.x2e_c00296{left:394.666667pt;}
.x99_c00296{left:395.626667pt;}
.x8e_c00296{left:397.333333pt;}
.xf4_c00296{left:398.666667pt;}
.xae_c00296{left:400.000000pt;}
.x54_c00296{left:401.706667pt;}
.x16_c00296{left:402.666667pt;}
.x77_c00296{left:405.333333pt;}
.xb6_c00296{left:406.293333pt;}
.x6d_c00296{left:408.000000pt;}
.x25_c00296{left:408.960000pt;}
.x4c_c00296{left:413.333333pt;}
.x8f_c00296{left:414.666667pt;}
.xc3_c00296{left:418.666667pt;}
.xeb_c00296{left:419.626667pt;}
.x2f_c00296{left:421.333333pt;}
.x17_c00296{left:424.000000pt;}
.x40_c00296{left:425.333333pt;}
.x75_c00296{left:429.333333pt;}
.xe0_c00296{left:435.040000pt;}
.x4d_c00296{left:436.000000pt;}
.x9_c00296{left:437.706667pt;}
.x78_c00296{left:440.373333pt;}
.x64_c00296{left:443.040000pt;}
.x6e_c00296{left:444.373333pt;}
.xca_c00296{left:445.333333pt;}
.xda_c00296{left:447.626667pt;}
.xc4_c00296{left:450.666667pt;}
.xd2_c00296{left:452.000000pt;}
.x81_c00296{left:452.960000pt;}
.xab_c00296{left:455.626667pt;}
.x9a_c00296{left:457.333333pt;}
.x41_c00296{left:458.666667pt;}
.xa6_c00296{left:459.626667pt;}
.x90_c00296{left:461.333333pt;}
.x4e_c00296{left:464.000000pt;}
.xa_c00296{left:464.960000pt;}
.x26_c00296{left:467.040000pt;}
.xaf_c00296{left:468.000000pt;}
.x42_c00296{left:469.333333pt;}
.xe5_c00296{left:470.293333pt;}
.x18_c00296{left:473.333333pt;}
.x65_c00296{left:475.040000pt;}
.xa7_c00296{left:477.706667pt;}
.xd3_c00296{left:478.666667pt;}
.x91_c00296{left:479.800000pt;}
.xcb_c00296{left:481.706667pt;}
.xe1_c00296{left:482.666667pt;}
.xb_c00296{left:483.626667pt;}
.xf5_c00296{left:485.333333pt;}
.x19_c00296{left:487.626667pt;}
.x82_c00296{left:489.333333pt;}
.x30_c00296{left:491.040000pt;}
.xbb_c00296{left:492.373333pt;}
.xe2_c00296{left:493.706667pt;}
.xce_c00296{left:495.040000pt;}
.x55_c00296{left:496.000000pt;}
.x27_c00296{left:500.000000pt;}
.x6f_c00296{left:502.666667pt;}
.xf6_c00296{left:504.373333pt;}
.x79_c00296{left:507.040000pt;}
.x43_c00296{left:510.666667pt;}
.xc5_c00296{left:512.000000pt;}
.x5e_c00296{left:512.960000pt;}
.x92_c00296{left:514.666667pt;}
.xbc_c00296{left:516.373333pt;}
.x1a_c00296{left:520.000000pt;}
.xd4_c00296{left:523.626667pt;}
.x31_c00296{left:526.666667pt;}
.xf7_c00296{left:528.000000pt;}
.x88_c00296{left:528.960000pt;}
.x5f_c00296{left:531.040000pt;}
.xb7_c00296{left:532.000000pt;}
.xc_c00296{left:533.706667pt;}
.x4f_c00296{left:534.666667pt;}
.x7a_c00296{left:538.666667pt;}
.xcc_c00296{left:539.626667pt;}
.x70_c00296{left:541.333333pt;}
.x32_c00296{left:542.293333pt;}
.xfa_c00296{left:544.373333pt;}
.xff_c00296{left:545.333333pt;}
.xb0_c00296{left:546.666667pt;}
.x44_c00296{left:550.666667pt;}
.x9b_c00296{left:552.960000pt;}
.xf1_c00296{left:556.000000pt;}
.x56_c00296{left:557.706667pt;}
.x66_c00296{left:558.666667pt;}
.x1b_c00296{left:559.626667pt;}
.xa8_c00296{left:563.040000pt;}
.x83_c00296{left:564.960000pt;}
.x28_c00296{left:567.040000pt;}
.xb1_c00296{left:568.000000pt;}
.x93_c00296{left:568.960000pt;}
.x7b_c00296{left:572.960000pt;}
.xec_c00296{left:574.666667pt;}
.xdb_c00296{left:575.626667pt;}
.x100_c00296{left:576.960000pt;}
.xd5_c00296{left:578.666667pt;}
.xc6_c00296{left:579.626667pt;}
.x45_c00296{left:581.333333pt;}
.x33_c00296{left:584.000000pt;}
.x67_c00296{left:584.960000pt;}
.x1c_c00296{left:586.666667pt;}
.xa0_c00296{left:588.373333pt;}
.xcf_c00296{left:590.666667pt;}
.xb2_c00296{left:592.000000pt;}
.x76_c00296{left:594.293333pt;}
.xf2_c00296{left:596.000000pt;}
.xa9_c00296{left:597.706667pt;}
.xdc_c00296{left:601.333333pt;}
.x50_c00296{left:602.293333pt;}
.x60_c00296{left:604.000000pt;}
.xbd_c00296{left:609.706667pt;}
.x94_c00296{left:611.040000pt;}
.x68_c00296{left:612.000000pt;}
.xa1_c00296{left:614.666667pt;}
.xd6_c00296{left:616.373333pt;}
.x57_c00296{left:617.706667pt;}
.xd_c00296{left:620.373333pt;}
.x71_c00296{left:621.706667pt;}
.x1d_c00296{left:623.426667pt;}
.x34_c00296{left:624.960000pt;}
.xbe_c00296{left:627.040000pt;}
.x101_c00296{left:628.000000pt;}
.x29_c00296{left:629.333333pt;}
.x7c_c00296{left:634.293333pt;}
.xc7_c00296{left:636.000000pt;}
.xcd_c00296{left:636.960000pt;}
.xed_c00296{left:643.040000pt;}
.xfb_c00296{left:644.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_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_9b13801fccf64a7ade282623.woff2')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6e_c00297{transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);}
.m30_c00297{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_c00297{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.m8b_c00297{transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);}
.m81_c00297{transform:matrix(0.360084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360084,0.000000,0.000000,0.250000,0,0);}
.m61_c00297{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m21_c00297{transform:matrix(0.365031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365031,0.000000,0.000000,0.250000,0,0);}
.m2f_c00297{transform:matrix(0.365966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365966,0.000000,0.000000,0.250000,0,0);}
.m25_c00297{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m44_c00297{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m56_c00297{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m1a_c00297{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m50_c00297{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m43_c00297{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m8f_c00297{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.mae_c00297{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m1d_c00297{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m37_c00297{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m7b_c00297{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m7c_c00297{transform:matrix(0.393405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393405,0.000000,0.000000,0.250000,0,0);}
.m20_c00297{transform:matrix(0.394555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394555,0.000000,0.000000,0.250000,0,0);}
.m5d_c00297{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m3a_c00297{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m23_c00297{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mb1_c00297{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.m9_c00297{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m31_c00297{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m6c_c00297{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m1c_c00297{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m74_c00297{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m59_c00297{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m49_c00297{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m90_c00297{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m64_c00297{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m87_c00297{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m80_c00297{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m3c_c00297{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m8a_c00297{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m8d_c00297{transform:matrix(0.420245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420245,0.000000,0.000000,0.250000,0,0);}
.ma4_c00297{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m71_c00297{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m48_c00297{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m5b_c00297{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.mac_c00297{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mb0_c00297{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.maf_c00297{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m3b_c00297{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m6b_c00297{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m22_c00297{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m83_c00297{transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);}
.m97_c00297{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m7_c00297{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m65_c00297{transform:matrix(0.435529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435529,0.000000,0.000000,0.250000,0,0);}
.m9a_c00297{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mb3_c00297{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m41_c00297{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m55_c00297{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m62_c00297{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m8_c00297{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m58_c00297{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.ma9_c00297{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m9f_c00297{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m85_c00297{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.me_c00297{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m9b_c00297{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.mf_c00297{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m52_c00297{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m29_c00297{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m70_c00297{transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);}
.mad_c00297{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m16_c00297{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m94_c00297{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m2e_c00297{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.ma3_c00297{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m72_c00297{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m60_c00297{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.ma0_c00297{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m67_c00297{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.mb7_c00297{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.m14_c00297{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m68_c00297{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m4e_c00297{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.m99_c00297{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m7e_c00297{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m10_c00297{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m1e_c00297{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m82_c00297{transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);}
.m0_c00297{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m76_c00297{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m5_c00297{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m6a_c00297{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m2_c00297{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);}
.m7a_c00297{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m78_c00297{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m51_c00297{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m2b_c00297{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m13_c00297{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mab_c00297{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.ma7_c00297{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m45_c00297{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m2d_c00297{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.maa_c00297{transform:matrix(0.522727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522727,0.000000,0.000000,0.250000,0,0);}
.m9d_c00297{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m4c_c00297{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mb4_c00297{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m40_c00297{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m1f_c00297{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m12_c00297{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m3_c00297{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m95_c00297{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m7f_c00297{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m53_c00297{transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);}
.m46_c00297{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m4_c00297{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mb8_c00297{transform:matrix(0.541667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541667,0.000000,0.000000,0.250000,0,0);}
.m38_c00297{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m84_c00297{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mb_c00297{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m2c_c00297{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.ma1_c00297{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m42_c00297{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m86_c00297{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m8c_c00297{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m36_c00297{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mb9_c00297{transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);}
.m54_c00297{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.ma_c00297{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m28_c00297{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m5f_c00297{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m4a_c00297{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m77_c00297{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.ma2_c00297{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m7d_c00297{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);}
.m89_c00297{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m5e_c00297{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m15_c00297{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m34_c00297{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m4f_c00297{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m5c_c00297{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m98_c00297{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m79_c00297{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m92_c00297{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.mb6_c00297{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m2a_c00297{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.ma8_c00297{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m9c_c00297{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m19_c00297{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m3f_c00297{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m57_c00297{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m9e_c00297{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m24_c00297{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m32_c00297{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m5a_c00297{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m4d_c00297{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m17_c00297{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.m3d_c00297{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m73_c00297{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m66_c00297{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m1_c00297{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m4b_c00297{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m35_c00297{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m27_c00297{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mb2_c00297{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m88_c00297{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m93_c00297{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m47_c00297{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m18_c00297{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m26_c00297{transform:matrix(0.675294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675294,0.000000,0.000000,0.250000,0,0);}
.mb5_c00297{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m33_c00297{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m75_c00297{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.ma6_c00297{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m3e_c00297{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m6_c00297{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m96_c00297{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m6f_c00297{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mc_c00297{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.md_c00297{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.ma5_c00297{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m69_c00297{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m11_c00297{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m1b_c00297{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m91_c00297{transform:matrix(0.882212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.882212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.882212,0.000000,0.000000,0.250000,0,0);}
.m63_c00297{transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);}
.m6d_c00297{transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);}
.m8e_c00297{transform:matrix(1.741228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.741228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.741228,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;}
}
.ws2_c00297{word-spacing:-2.161806px;}
.ws3_c00297{word-spacing:0.000000px;}
.ws1_c00297{word-spacing:10.582953px;}
.ws0_c00297{word-spacing:13.624647px;}
.fc0_c00297{color:transparent;}
.fs7_c00297{font-size:3.420000px;}
.fs8_c00297{font-size:6.780000px;}
.fs9_c00297{font-size:13.620000px;}
.fs2_c00297{font-size:18.720000px;}
.fs1_c00297{font-size:20.400000px;}
.fs5_c00297{font-size:25.500000px;}
.fs0_c00297{font-size:28.920000px;}
.fs4_c00297{font-size:32.340000px;}
.fs3_c00297{font-size:35.700000px;}
.fs6_c00297{font-size:39.120000px;}
.y0_c00297{bottom:0.000000px;}
.yd6_c00297{bottom:245.970000px;}
.yd7_c00297{bottom:247.050000px;}
.yd5_c00297{bottom:247.905000px;}
.yd3_c00297{bottom:248.130000px;}
.yd2_c00297{bottom:248.970000px;}
.yd4_c00297{bottom:250.050000px;}
.yd1_c00297{bottom:252.195000px;}
.yca_c00297{bottom:286.905000px;}
.yd0_c00297{bottom:288.405000px;}
.ycf_c00297{bottom:289.245000px;}
.ycb_c00297{bottom:289.905000px;}
.ycd_c00297{bottom:290.550000px;}
.ycc_c00297{bottom:291.405000px;}
.yce_c00297{bottom:291.630000px;}
.yc9_c00297{bottom:308.325000px;}
.yc4_c00297{bottom:308.745000px;}
.yc8_c00297{bottom:308.970000px;}
.yc7_c00297{bottom:309.825000px;}
.yc6_c00297{bottom:310.905000px;}
.yc5_c00297{bottom:312.405000px;}
.yc1_c00297{bottom:328.245000px;}
.yc0_c00297{bottom:329.130000px;}
.yc2_c00297{bottom:329.325000px;}
.ybf_c00297{bottom:330.405000px;}
.yc3_c00297{bottom:331.470000px;}
.ybb_c00297{bottom:347.745000px;}
.ybd_c00297{bottom:348.825000px;}
.ybc_c00297{bottom:349.245000px;}
.yba_c00297{bottom:349.905000px;}
.ybe_c00297{bottom:350.130000px;}
.yb9_c00297{bottom:350.970000px;}
.yb8_c00297{bottom:366.405000px;}
.yb6_c00297{bottom:367.905000px;}
.yb5_c00297{bottom:368.745000px;}
.yb3_c00297{bottom:369.405000px;}
.yb7_c00297{bottom:369.825000px;}
.yb4_c00297{bottom:370.905000px;}
.yb1_c00297{bottom:388.245000px;}
.yaf_c00297{bottom:389.130000px;}
.yb2_c00297{bottom:389.970000px;}
.yb0_c00297{bottom:390.405000px;}
.yac_c00297{bottom:407.325000px;}
.yad_c00297{bottom:407.355000px;}
.yab_c00297{bottom:407.745000px;}
.yae_c00297{bottom:407.970000px;}
.ya8_c00297{bottom:408.405000px;}
.yaa_c00297{bottom:409.470000px;}
.ya9_c00297{bottom:409.905000px;}
.ya6_c00297{bottom:429.405000px;}
.ya7_c00297{bottom:429.630000px;}
.ya5_c00297{bottom:446.325000px;}
.ya4_c00297{bottom:446.745000px;}
.ya2_c00297{bottom:447.825000px;}
.ya1_c00297{bottom:448.905000px;}
.ya3_c00297{bottom:449.130000px;}
.y9f_c00297{bottom:465.825000px;}
.y9e_c00297{bottom:467.745000px;}
.ya0_c00297{bottom:468.405000px;}
.y9b_c00297{bottom:468.630000px;}
.y9d_c00297{bottom:469.470000px;}
.y9c_c00297{bottom:469.905000px;}
.y9a_c00297{bottom:484.905000px;}
.y99_c00297{bottom:485.970000px;}
.y96_c00297{bottom:487.245000px;}
.y98_c00297{bottom:488.325000px;}
.y97_c00297{bottom:489.405000px;}
.y93_c00297{bottom:505.680000px;}
.y95_c00297{bottom:506.355000px;}
.y92_c00297{bottom:506.745000px;}
.y94_c00297{bottom:507.420000px;}
.y91_c00297{bottom:508.905000px;}
.y90_c00297{bottom:509.970000px;}
.y8f_c00297{bottom:526.245000px;}
.y8e_c00297{bottom:527.970000px;}
.y8d_c00297{bottom:528.405000px;}
.y8a_c00297{bottom:543.405000px;}
.y8c_c00297{bottom:544.905000px;}
.y88_c00297{bottom:545.745000px;}
.y8b_c00297{bottom:546.825000px;}
.y89_c00297{bottom:547.905000px;}
.y87_c00297{bottom:562.905000px;}
.y83_c00297{bottom:564.180000px;}
.y86_c00297{bottom:565.245000px;}
.y85_c00297{bottom:566.970000px;}
.y84_c00297{bottom:567.405000px;}
.y82_c00297{bottom:584.745000px;}
.y81_c00297{bottom:585.825000px;}
.y80_c00297{bottom:586.470000px;}
.y7f_c00297{bottom:586.905000px;}
.y7e_c00297{bottom:587.130000px;}
.y7c_c00297{bottom:604.245000px;}
.y7a_c00297{bottom:606.405000px;}
.y7d_c00297{bottom:606.630000px;}
.y7b_c00297{bottom:607.470000px;}
.y75_c00297{bottom:622.905000px;}
.y76_c00297{bottom:625.245000px;}
.y79_c00297{bottom:626.130000px;}
.y77_c00297{bottom:626.325000px;}
.y78_c00297{bottom:627.405000px;}
.y74_c00297{bottom:642.405000px;}
.y72_c00297{bottom:645.630000px;}
.y73_c00297{bottom:645.825000px;}
.y71_c00297{bottom:646.905000px;}
.y6f_c00297{bottom:663.405000px;}
.y6c_c00297{bottom:663.825000px;}
.y70_c00297{bottom:663.855000px;}
.y6e_c00297{bottom:664.245000px;}
.y6a_c00297{bottom:665.130000px;}
.y6b_c00297{bottom:666.405000px;}
.y6d_c00297{bottom:667.470000px;}
.y69_c00297{bottom:682.905000px;}
.y66_c00297{bottom:683.745000px;}
.y67_c00297{bottom:685.905000px;}
.y68_c00297{bottom:686.130000px;}
.y65_c00297{bottom:686.970000px;}
.y64_c00297{bottom:702.405000px;}
.y60_c00297{bottom:703.245000px;}
.y63_c00297{bottom:703.470000px;}
.y62_c00297{bottom:704.325000px;}
.y61_c00297{bottom:705.405000px;}
.y5d_c00297{bottom:721.905000px;}
.y5a_c00297{bottom:722.745000px;}
.y5f_c00297{bottom:723.420000px;}
.y5e_c00297{bottom:724.245000px;}
.y59_c00297{bottom:724.905000px;}
.y5b_c00297{bottom:725.130000px;}
.y5c_c00297{bottom:726.405000px;}
.y58_c00297{bottom:741.405000px;}
.y57_c00297{bottom:743.745000px;}
.y54_c00297{bottom:744.405000px;}
.y56_c00297{bottom:745.470000px;}
.y55_c00297{bottom:745.905000px;}
.y51_c00297{bottom:760.905000px;}
.y53_c00297{bottom:763.245000px;}
.y52_c00297{bottom:765.405000px;}
.y4f_c00297{bottom:780.405000px;}
.y50_c00297{bottom:781.905000px;}
.y4d_c00297{bottom:782.745000px;}
.y4e_c00297{bottom:783.825000px;}
.y4b_c00297{bottom:784.470000px;}
.y4c_c00297{bottom:784.905000px;}
.y49_c00297{bottom:800.970000px;}
.y4a_c00297{bottom:802.470000px;}
.y48_c00297{bottom:803.325000px;}
.y47_c00297{bottom:804.405000px;}
.y44_c00297{bottom:822.825000px;}
.y46_c00297{bottom:823.245000px;}
.y43_c00297{bottom:823.905000px;}
.y45_c00297{bottom:825.405000px;}
.y42_c00297{bottom:840.405000px;}
.y40_c00297{bottom:843.405000px;}
.y41_c00297{bottom:844.470000px;}
.y3a_c00297{bottom:859.905000px;}
.y3c_c00297{bottom:862.245000px;}
.y3b_c00297{bottom:862.905000px;}
.y3e_c00297{bottom:863.130000px;}
.y3f_c00297{bottom:863.970000px;}
.y3d_c00297{bottom:864.405000px;}
.y39_c00297{bottom:880.245000px;}
.y38_c00297{bottom:880.470000px;}
.y34_c00297{bottom:880.905000px;}
.y36_c00297{bottom:881.745000px;}
.y37_c00297{bottom:882.630000px;}
.y35_c00297{bottom:883.470000px;}
.y33_c00297{bottom:883.905000px;}
.y31_c00297{bottom:898.905000px;}
.y2e_c00297{bottom:899.970000px;}
.y32_c00297{bottom:901.245000px;}
.y2c_c00297{bottom:901.905000px;}
.y2d_c00297{bottom:902.130000px;}
.y2f_c00297{bottom:903.405000px;}
.y30_c00297{bottom:906.630000px;}
.y2b_c00297{bottom:918.405000px;}
.y2a_c00297{bottom:920.745000px;}
.y29_c00297{bottom:922.245000px;}
.y27_c00297{bottom:939.405000px;}
.y25_c00297{bottom:940.245000px;}
.y26_c00297{bottom:941.970000px;}
.y24_c00297{bottom:942.405000px;}
.y28_c00297{bottom:942.630000px;}
.y1f_c00297{bottom:958.905000px;}
.y23_c00297{bottom:959.745000px;}
.y20_c00297{bottom:961.905000px;}
.y21_c00297{bottom:962.130000px;}
.y22_c00297{bottom:965.130000px;}
.y1c_c00297{bottom:978.405000px;}
.y1e_c00297{bottom:979.245000px;}
.y1b_c00297{bottom:981.405000px;}
.y1d_c00297{bottom:981.630000px;}
.y1a_c00297{bottom:982.470000px;}
.y19_c00297{bottom:998.745000px;}
.y18_c00297{bottom:998.970000px;}
.y16_c00297{bottom:999.180000px;}
.y17_c00297{bottom:1000.245000px;}
.yd_c00297{bottom:1017.405000px;}
.y12_c00297{bottom:1017.825000px;}
.y15_c00297{bottom:1018.680000px;}
.y14_c00297{bottom:1018.905000px;}
.y13_c00297{bottom:1019.745000px;}
.ye_c00297{bottom:1020.405000px;}
.y10_c00297{bottom:1020.630000px;}
.yf_c00297{bottom:1021.470000px;}
.y11_c00297{bottom:1021.905000px;}
.yc_c00297{bottom:1037.970000px;}
.yb_c00297{bottom:1038.825000px;}
.y8_c00297{bottom:1039.245000px;}
.ya_c00297{bottom:1040.130000px;}
.y9_c00297{bottom:1041.405000px;}
.y6_c00297{bottom:1057.245000px;}
.y7_c00297{bottom:1058.745000px;}
.y3_c00297{bottom:1059.405000px;}
.y5_c00297{bottom:1059.630000px;}
.y4_c00297{bottom:1060.905000px;}
.y2_c00297{bottom:1099.050000px;}
.y1_c00297{bottom:1099.905000px;}
.h8_c00297{height:4.206533px;}
.h9_c00297{height:8.339268px;}
.ha_c00297{height:16.752334px;}
.h3_c00297{height:23.025234px;}
.h2_c00297{height:25.091602px;}
.h6_c00297{height:31.364502px;}
.h1_c00297{height:35.571035px;}
.h5_c00297{height:39.777568px;}
.h4_c00297{height:43.910303px;}
.h7_c00297{height:48.116836px;}
.h0_c00297{height:1335.000000px;}
.w0_c00297{width:880.500000px;}
.x0_c00297{left:0.000000px;}
.x1_c00297{left:152.580000px;}
.x91_c00297{left:154.920000px;}
.x2c_c00297{left:160.500000px;}
.x18_c00297{left:161.580000px;}
.xdf_c00297{left:166.500000px;}
.x3_c00297{left:167.580000px;}
.x27_c00297{left:169.080000px;}
.xe0_c00297{left:178.500000px;}
.x4_c00297{left:192.000000px;}
.x11_c00297{left:193.920000px;}
.x68_c00297{left:208.500000px;}
.x7e_c00297{left:210.000000px;}
.xce_c00297{left:216.420000px;}
.x74_c00297{left:217.500000px;}
.xa0_c00297{left:220.080000px;}
.x92_c00297{left:223.500000px;}
.x5_c00297{left:225.000000px;}
.x3a_c00297{left:226.500000px;}
.x2d_c00297{left:229.500000px;}
.x19_c00297{left:232.500000px;}
.x28_c00297{left:234.000000px;}
.xa5_c00297{left:235.500000px;}
.x4c_c00297{left:238.920000px;}
.xa1_c00297{left:241.500000px;}
.x42_c00297{left:249.000000px;}
.xb8_c00297{left:250.500000px;}
.x2e_c00297{left:252.000000px;}
.x67_c00297{left:253.080000px;}
.x8f_c00297{left:255.000000px;}
.x89_c00297{left:256.500000px;}
.xb2_c00297{left:258.000000px;}
.x93_c00297{left:259.080000px;}
.x12_c00297{left:262.080000px;}
.x6_c00297{left:264.000000px;}
.x1a_c00297{left:265.500000px;}
.x99_c00297{left:268.920000px;}
.xe1_c00297{left:270.420000px;}
.xc1_c00297{left:271.500000px;}
.xb3_c00297{left:273.000000px;}
.x4d_c00297{left:275.580000px;}
.xcf_c00297{left:280.500000px;}
.x90_c00297{left:282.420000px;}
.x43_c00297{left:285.420000px;}
.xa2_c00297{left:286.920000px;}
.x2f_c00297{left:289.920000px;}
.xdd_c00297{left:292.500000px;}
.x13_c00297{left:294.000000px;}
.x63_c00297{left:295.080000px;}
.x9a_c00297{left:297.000000px;}
.xb9_c00297{left:298.500000px;}
.x3b_c00297{left:300.420000px;}
.x5f_c00297{left:302.580000px;}
.x1b_c00297{left:304.920000px;}
.xd5_c00297{left:306.000000px;}
.x94_c00297{left:307.500000px;}
.x4e_c00297{left:309.000000px;}
.x7_c00297{left:310.500000px;}
.xd0_c00297{left:313.080000px;}
.xe2_c00297{left:315.000000px;}
.x14_c00297{left:316.920000px;}
.x8a_c00297{left:319.920000px;}
.xac_c00297{left:321.420000px;}
.x8_c00297{left:325.500000px;}
.x4f_c00297{left:328.500000px;}
.x60_c00297{left:330.000000px;}
.x29_c00297{left:331.920000px;}
.x5b_c00297{left:334.920000px;}
.x55_c00297{left:336.000000px;}
.x69_c00297{left:337.080000px;}
.x1c_c00297{left:342.855000px;}
.x15_c00297{left:343.920000px;}
.x3c_c00297{left:345.420000px;}
.xad_c00297{left:346.920000px;}
.x8b_c00297{left:348.000000px;}
.x30_c00297{left:349.080000px;}
.x7f_c00297{left:350.580000px;}
.xd6_c00297{left:358.920000px;}
.x2a_c00297{left:360.000000px;}
.x50_c00297{left:361.500000px;}
.xba_c00297{left:363.000000px;}
.x9b_c00297{left:366.420000px;}
.x80_c00297{left:367.920000px;}
.x1d_c00297{left:369.000000px;}
.xb4_c00297{left:373.500000px;}
.x6a_c00297{left:376.500000px;}
.x64_c00297{left:379.080000px;}
.xbb_c00297{left:381.000000px;}
.x9_c00297{left:382.080000px;}
.x3d_c00297{left:385.275000px;}
.xc6_c00297{left:386.580000px;}
.xc2_c00297{left:388.500000px;}
.x16_c00297{left:390.000000px;}
.x2b_c00297{left:391.920000px;}
.x56_c00297{left:393.000000px;}
.x9c_c00297{left:394.080000px;}
.x8c_c00297{left:395.580000px;}
.xa_c00297{left:400.920000px;}
.xde_c00297{left:402.000000px;}
.x2_c00297{left:403.500000px;}
.x44_c00297{left:405.420000px;}
.xbc_c00297{left:406.920000px;}
.xae_c00297{left:411.000000px;}
.x45_c00297{left:412.080000px;}
.x3e_c00297{left:417.000000px;}
.x46_c00297{left:420.000000px;}
.x8d_c00297{left:421.500000px;}
.x65_c00297{left:422.580000px;}
.xc7_c00297{left:424.080000px;}
.x31_c00297{left:426.420000px;}
.x75_c00297{left:427.920000px;}
.x5c_c00297{left:429.000000px;}
.x57_c00297{left:433.500000px;}
.x1e_c00297{left:436.080000px;}
.x32_c00297{left:437.580000px;}
.xb5_c00297{left:441.420000px;}
.x9d_c00297{left:445.920000px;}
.x66_c00297{left:448.500000px;}
.x6b_c00297{left:450.420000px;}
.x5d_c00297{left:452.145000px;}
.x76_c00297{left:454.920000px;}
.x95_c00297{left:460.080000px;}
.x1f_c00297{left:461.580000px;}
.x47_c00297{left:463.500000px;}
.x3f_c00297{left:468.000000px;}
.x33_c00297{left:469.500000px;}
.xbd_c00297{left:472.500000px;}
.x9e_c00297{left:474.000000px;}
.x22_c00297{left:475.080000px;}
.xaf_c00297{left:477.000000px;}
.x96_c00297{left:478.920000px;}
.xd7_c00297{left:480.420000px;}
.x20_c00297{left:483.000000px;}
.x77_c00297{left:485.580000px;}
.xb_c00297{left:490.500000px;}
.x34_c00297{left:495.000000px;}
.x58_c00297{left:499.500000px;}
.x81_c00297{left:503.580000px;}
.xa6_c00297{left:507.420000px;}
.x48_c00297{left:508.500000px;}
.xbe_c00297{left:509.580000px;}
.x6c_c00297{left:513.420000px;}
.xb0_c00297{left:514.920000px;}
.x78_c00297{left:516.420000px;}
.x51_c00297{left:518.580000px;}
.xc8_c00297{left:522.420000px;}
.x73_c00297{left:523.500000px;}
.x21_c00297{left:525.000000px;}
.x35_c00297{left:526.500000px;}
.xbf_c00297{left:531.000000px;}
.x82_c00297{left:532.500000px;}
.xa7_c00297{left:535.080000px;}
.xcc_c00297{left:537.000000px;}
.xdc_c00297{left:538.080000px;}
.x6d_c00297{left:539.580000px;}
.x79_c00297{left:541.080000px;}
.xc_c00297{left:544.500000px;}
.x23_c00297{left:549.000000px;}
.x49_c00297{left:552.000000px;}
.xa3_c00297{left:553.920000px;}
.xb6_c00297{left:555.000000px;}
.xd8_c00297{left:561.420000px;}
.xd1_c00297{left:564.420000px;}
.xc3_c00297{left:565.500000px;}
.xa8_c00297{left:566.580000px;}
.x40_c00297{left:570.420000px;}
.x36_c00297{left:571.500000px;}
.x83_c00297{left:572.580000px;}
.x59_c00297{left:574.500000px;}
.x6e_c00297{left:575.580000px;}
.xb1_c00297{left:577.080000px;}
.x7a_c00297{left:580.500000px;}
.xc9_c00297{left:584.580000px;}
.x61_c00297{left:586.080000px;}
.xd9_c00297{left:589.500000px;}
.xd2_c00297{left:591.000000px;}
.xd_c00297{left:592.080000px;}
.x52_c00297{left:594.000000px;}
.x84_c00297{left:600.000000px;}
.x6f_c00297{left:601.500000px;}
.x5e_c00297{left:604.500000px;}
.x4a_c00297{left:606.000000px;}
.x7b_c00297{left:607.920000px;}
.x24_c00297{left:609.000000px;}
.xc4_c00297{left:612.000000px;}
.xa9_c00297{left:613.500000px;}
.xca_c00297{left:615.420000px;}
.x37_c00297{left:616.500000px;}
.xa4_c00297{left:618.420000px;}
.x85_c00297{left:619.500000px;}
.x70_c00297{left:621.000000px;}
.x4b_c00297{left:622.920000px;}
.x9f_c00297{left:624.000000px;}
.x41_c00297{left:627.420000px;}
.x62_c00297{left:630.000000px;}
.xc0_c00297{left:634.500000px;}
.x88_c00297{left:637.920000px;}
.x53_c00297{left:639.420000px;}
.x97_c00297{left:640.500000px;}
.xcb_c00297{left:642.000000px;}
.xd3_c00297{left:643.920000px;}
.xe_c00297{left:645.000000px;}
.xda_c00297{left:646.920000px;}
.x98_c00297{left:658.500000px;}
.x38_c00297{left:661.500000px;}
.x86_c00297{left:663.420000px;}
.x71_c00297{left:664.920000px;}
.xd4_c00297{left:669.000000px;}
.xb7_c00297{left:673.920000px;}
.xc5_c00297{left:678.000000px;}
.x7c_c00297{left:684.000000px;}
.xf_c00297{left:685.500000px;}
.x25_c00297{left:688.080000px;}
.x54_c00297{left:689.580000px;}
.xaa_c00297{left:691.920000px;}
.xdb_c00297{left:694.080000px;}
.x7d_c00297{left:696.000000px;}
.x10_c00297{left:705.000000px;}
.x26_c00297{left:706.500000px;}
.xcd_c00297{left:707.580000px;}
.x72_c00297{left:709.500000px;}
.x8e_c00297{left:715.920000px;}
.x39_c00297{left:717.000000px;}
.xab_c00297{left:720.000000px;}
.x17_c00297{left:721.500000px;}
.x5a_c00297{left:722.580000px;}
.x87_c00297{left:726.000000px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.ls0_c00297{letter-spacing:0.000000pt;}
.ws2_c00297{word-spacing:-1.921606pt;}
.ws3_c00297{word-spacing:0.000000pt;}
.ws1_c00297{word-spacing:9.407069pt;}
.ws0_c00297{word-spacing:12.110798pt;}
.fs7_c00297{font-size:3.040000pt;}
.fs8_c00297{font-size:6.026667pt;}
.fs9_c00297{font-size:12.106667pt;}
.fs2_c00297{font-size:16.640000pt;}
.fs1_c00297{font-size:18.133333pt;}
.fs5_c00297{font-size:22.666667pt;}
.fs0_c00297{font-size:25.706667pt;}
.fs4_c00297{font-size:28.746667pt;}
.fs3_c00297{font-size:31.733333pt;}
.fs6_c00297{font-size:34.773333pt;}
.y0_c00297{bottom:0.000000pt;}
.yd6_c00297{bottom:218.640000pt;}
.yd7_c00297{bottom:219.600000pt;}
.yd5_c00297{bottom:220.360000pt;}
.yd3_c00297{bottom:220.560000pt;}
.yd2_c00297{bottom:221.306667pt;}
.yd4_c00297{bottom:222.266667pt;}
.yd1_c00297{bottom:224.173333pt;}
.yca_c00297{bottom:255.026667pt;}
.yd0_c00297{bottom:256.360000pt;}
.ycf_c00297{bottom:257.106667pt;}
.ycb_c00297{bottom:257.693333pt;}
.ycd_c00297{bottom:258.266667pt;}
.ycc_c00297{bottom:259.026667pt;}
.yce_c00297{bottom:259.226667pt;}
.yc9_c00297{bottom:274.066667pt;}
.yc4_c00297{bottom:274.440000pt;}
.yc8_c00297{bottom:274.640000pt;}
.yc7_c00297{bottom:275.400000pt;}
.yc6_c00297{bottom:276.360000pt;}
.yc5_c00297{bottom:277.693333pt;}
.yc1_c00297{bottom:291.773333pt;}
.yc0_c00297{bottom:292.560000pt;}
.yc2_c00297{bottom:292.733333pt;}
.ybf_c00297{bottom:293.693333pt;}
.yc3_c00297{bottom:294.640000pt;}
.ybb_c00297{bottom:309.106667pt;}
.ybd_c00297{bottom:310.066667pt;}
.ybc_c00297{bottom:310.440000pt;}
.yba_c00297{bottom:311.026667pt;}
.ybe_c00297{bottom:311.226667pt;}
.yb9_c00297{bottom:311.973333pt;}
.yb8_c00297{bottom:325.693333pt;}
.yb6_c00297{bottom:327.026667pt;}
.yb5_c00297{bottom:327.773333pt;}
.yb3_c00297{bottom:328.360000pt;}
.yb7_c00297{bottom:328.733333pt;}
.yb4_c00297{bottom:329.693333pt;}
.yb1_c00297{bottom:345.106667pt;}
.yaf_c00297{bottom:345.893333pt;}
.yb2_c00297{bottom:346.640000pt;}
.yb0_c00297{bottom:347.026667pt;}
.yac_c00297{bottom:362.066667pt;}
.yad_c00297{bottom:362.093333pt;}
.yab_c00297{bottom:362.440000pt;}
.yae_c00297{bottom:362.640000pt;}
.ya8_c00297{bottom:363.026667pt;}
.yaa_c00297{bottom:363.973333pt;}
.ya9_c00297{bottom:364.360000pt;}
.ya6_c00297{bottom:381.693333pt;}
.ya7_c00297{bottom:381.893333pt;}
.ya5_c00297{bottom:396.733333pt;}
.ya4_c00297{bottom:397.106667pt;}
.ya2_c00297{bottom:398.066667pt;}
.ya1_c00297{bottom:399.026667pt;}
.ya3_c00297{bottom:399.226667pt;}
.y9f_c00297{bottom:414.066667pt;}
.y9e_c00297{bottom:415.773333pt;}
.ya0_c00297{bottom:416.360000pt;}
.y9b_c00297{bottom:416.560000pt;}
.y9d_c00297{bottom:417.306667pt;}
.y9c_c00297{bottom:417.693333pt;}
.y9a_c00297{bottom:431.026667pt;}
.y99_c00297{bottom:431.973333pt;}
.y96_c00297{bottom:433.106667pt;}
.y98_c00297{bottom:434.066667pt;}
.y97_c00297{bottom:435.026667pt;}
.y93_c00297{bottom:449.493333pt;}
.y95_c00297{bottom:450.093333pt;}
.y92_c00297{bottom:450.440000pt;}
.y94_c00297{bottom:451.040000pt;}
.y91_c00297{bottom:452.360000pt;}
.y90_c00297{bottom:453.306667pt;}
.y8f_c00297{bottom:467.773333pt;}
.y8e_c00297{bottom:469.306667pt;}
.y8d_c00297{bottom:469.693333pt;}
.y8a_c00297{bottom:483.026667pt;}
.y8c_c00297{bottom:484.360000pt;}
.y88_c00297{bottom:485.106667pt;}
.y8b_c00297{bottom:486.066667pt;}
.y89_c00297{bottom:487.026667pt;}
.y87_c00297{bottom:500.360000pt;}
.y83_c00297{bottom:501.493333pt;}
.y86_c00297{bottom:502.440000pt;}
.y85_c00297{bottom:503.973333pt;}
.y84_c00297{bottom:504.360000pt;}
.y82_c00297{bottom:519.773333pt;}
.y81_c00297{bottom:520.733333pt;}
.y80_c00297{bottom:521.306667pt;}
.y7f_c00297{bottom:521.693333pt;}
.y7e_c00297{bottom:521.893333pt;}
.y7c_c00297{bottom:537.106667pt;}
.y7a_c00297{bottom:539.026667pt;}
.y7d_c00297{bottom:539.226667pt;}
.y7b_c00297{bottom:539.973333pt;}
.y75_c00297{bottom:553.693333pt;}
.y76_c00297{bottom:555.773333pt;}
.y79_c00297{bottom:556.560000pt;}
.y77_c00297{bottom:556.733333pt;}
.y78_c00297{bottom:557.693333pt;}
.y74_c00297{bottom:571.026667pt;}
.y72_c00297{bottom:573.893333pt;}
.y73_c00297{bottom:574.066667pt;}
.y71_c00297{bottom:575.026667pt;}
.y6f_c00297{bottom:589.693333pt;}
.y6c_c00297{bottom:590.066667pt;}
.y70_c00297{bottom:590.093333pt;}
.y6e_c00297{bottom:590.440000pt;}
.y6a_c00297{bottom:591.226667pt;}
.y6b_c00297{bottom:592.360000pt;}
.y6d_c00297{bottom:593.306667pt;}
.y69_c00297{bottom:607.026667pt;}
.y66_c00297{bottom:607.773333pt;}
.y67_c00297{bottom:609.693333pt;}
.y68_c00297{bottom:609.893333pt;}
.y65_c00297{bottom:610.640000pt;}
.y64_c00297{bottom:624.360000pt;}
.y60_c00297{bottom:625.106667pt;}
.y63_c00297{bottom:625.306667pt;}
.y62_c00297{bottom:626.066667pt;}
.y61_c00297{bottom:627.026667pt;}
.y5d_c00297{bottom:641.693333pt;}
.y5a_c00297{bottom:642.440000pt;}
.y5f_c00297{bottom:643.040000pt;}
.y5e_c00297{bottom:643.773333pt;}
.y59_c00297{bottom:644.360000pt;}
.y5b_c00297{bottom:644.560000pt;}
.y5c_c00297{bottom:645.693333pt;}
.y58_c00297{bottom:659.026667pt;}
.y57_c00297{bottom:661.106667pt;}
.y54_c00297{bottom:661.693333pt;}
.y56_c00297{bottom:662.640000pt;}
.y55_c00297{bottom:663.026667pt;}
.y51_c00297{bottom:676.360000pt;}
.y53_c00297{bottom:678.440000pt;}
.y52_c00297{bottom:680.360000pt;}
.y4f_c00297{bottom:693.693333pt;}
.y50_c00297{bottom:695.026667pt;}
.y4d_c00297{bottom:695.773333pt;}
.y4e_c00297{bottom:696.733333pt;}
.y4b_c00297{bottom:697.306667pt;}
.y4c_c00297{bottom:697.693333pt;}
.y49_c00297{bottom:711.973333pt;}
.y4a_c00297{bottom:713.306667pt;}
.y48_c00297{bottom:714.066667pt;}
.y47_c00297{bottom:715.026667pt;}
.y44_c00297{bottom:731.400000pt;}
.y46_c00297{bottom:731.773333pt;}
.y43_c00297{bottom:732.360000pt;}
.y45_c00297{bottom:733.693333pt;}
.y42_c00297{bottom:747.026667pt;}
.y40_c00297{bottom:749.693333pt;}
.y41_c00297{bottom:750.640000pt;}
.y3a_c00297{bottom:764.360000pt;}
.y3c_c00297{bottom:766.440000pt;}
.y3b_c00297{bottom:767.026667pt;}
.y3e_c00297{bottom:767.226667pt;}
.y3f_c00297{bottom:767.973333pt;}
.y3d_c00297{bottom:768.360000pt;}
.y39_c00297{bottom:782.440000pt;}
.y38_c00297{bottom:782.640000pt;}
.y34_c00297{bottom:783.026667pt;}
.y36_c00297{bottom:783.773333pt;}
.y37_c00297{bottom:784.560000pt;}
.y35_c00297{bottom:785.306667pt;}
.y33_c00297{bottom:785.693333pt;}
.y31_c00297{bottom:799.026667pt;}
.y2e_c00297{bottom:799.973333pt;}
.y32_c00297{bottom:801.106667pt;}
.y2c_c00297{bottom:801.693333pt;}
.y2d_c00297{bottom:801.893333pt;}
.y2f_c00297{bottom:803.026667pt;}
.y30_c00297{bottom:805.893333pt;}
.y2b_c00297{bottom:816.360000pt;}
.y2a_c00297{bottom:818.440000pt;}
.y29_c00297{bottom:819.773333pt;}
.y27_c00297{bottom:835.026667pt;}
.y25_c00297{bottom:835.773333pt;}
.y26_c00297{bottom:837.306667pt;}
.y24_c00297{bottom:837.693333pt;}
.y28_c00297{bottom:837.893333pt;}
.y1f_c00297{bottom:852.360000pt;}
.y23_c00297{bottom:853.106667pt;}
.y20_c00297{bottom:855.026667pt;}
.y21_c00297{bottom:855.226667pt;}
.y22_c00297{bottom:857.893333pt;}
.y1c_c00297{bottom:869.693333pt;}
.y1e_c00297{bottom:870.440000pt;}
.y1b_c00297{bottom:872.360000pt;}
.y1d_c00297{bottom:872.560000pt;}
.y1a_c00297{bottom:873.306667pt;}
.y19_c00297{bottom:887.773333pt;}
.y18_c00297{bottom:887.973333pt;}
.y16_c00297{bottom:888.160000pt;}
.y17_c00297{bottom:889.106667pt;}
.yd_c00297{bottom:904.360000pt;}
.y12_c00297{bottom:904.733333pt;}
.y15_c00297{bottom:905.493333pt;}
.y14_c00297{bottom:905.693333pt;}
.y13_c00297{bottom:906.440000pt;}
.ye_c00297{bottom:907.026667pt;}
.y10_c00297{bottom:907.226667pt;}
.yf_c00297{bottom:907.973333pt;}
.y11_c00297{bottom:908.360000pt;}
.yc_c00297{bottom:922.640000pt;}
.yb_c00297{bottom:923.400000pt;}
.y8_c00297{bottom:923.773333pt;}
.ya_c00297{bottom:924.560000pt;}
.y9_c00297{bottom:925.693333pt;}
.y6_c00297{bottom:939.773333pt;}
.y7_c00297{bottom:941.106667pt;}
.y3_c00297{bottom:941.693333pt;}
.y5_c00297{bottom:941.893333pt;}
.y4_c00297{bottom:943.026667pt;}
.y2_c00297{bottom:976.933333pt;}
.y1_c00297{bottom:977.693333pt;}
.h8_c00297{height:3.739141pt;}
.h9_c00297{height:7.412682pt;}
.ha_c00297{height:14.890964pt;}
.h3_c00297{height:20.466875pt;}
.h2_c00297{height:22.303646pt;}
.h6_c00297{height:27.879557pt;}
.h1_c00297{height:31.618698pt;}
.h5_c00297{height:35.357839pt;}
.h4_c00297{height:39.031380pt;}
.h7_c00297{height:42.770521pt;}
.h0_c00297{height:1186.666667pt;}
.w0_c00297{width:782.666667pt;}
.x0_c00297{left:0.000000pt;}
.x1_c00297{left:135.626667pt;}
.x91_c00297{left:137.706667pt;}
.x2c_c00297{left:142.666667pt;}
.x18_c00297{left:143.626667pt;}
.xdf_c00297{left:148.000000pt;}
.x3_c00297{left:148.960000pt;}
.x27_c00297{left:150.293333pt;}
.xe0_c00297{left:158.666667pt;}
.x4_c00297{left:170.666667pt;}
.x11_c00297{left:172.373333pt;}
.x68_c00297{left:185.333333pt;}
.x7e_c00297{left:186.666667pt;}
.xce_c00297{left:192.373333pt;}
.x74_c00297{left:193.333333pt;}
.xa0_c00297{left:195.626667pt;}
.x92_c00297{left:198.666667pt;}
.x5_c00297{left:200.000000pt;}
.x3a_c00297{left:201.333333pt;}
.x2d_c00297{left:204.000000pt;}
.x19_c00297{left:206.666667pt;}
.x28_c00297{left:208.000000pt;}
.xa5_c00297{left:209.333333pt;}
.x4c_c00297{left:212.373333pt;}
.xa1_c00297{left:214.666667pt;}
.x42_c00297{left:221.333333pt;}
.xb8_c00297{left:222.666667pt;}
.x2e_c00297{left:224.000000pt;}
.x67_c00297{left:224.960000pt;}
.x8f_c00297{left:226.666667pt;}
.x89_c00297{left:228.000000pt;}
.xb2_c00297{left:229.333333pt;}
.x93_c00297{left:230.293333pt;}
.x12_c00297{left:232.960000pt;}
.x6_c00297{left:234.666667pt;}
.x1a_c00297{left:236.000000pt;}
.x99_c00297{left:239.040000pt;}
.xe1_c00297{left:240.373333pt;}
.xc1_c00297{left:241.333333pt;}
.xb3_c00297{left:242.666667pt;}
.x4d_c00297{left:244.960000pt;}
.xcf_c00297{left:249.333333pt;}
.x90_c00297{left:251.040000pt;}
.x43_c00297{left:253.706667pt;}
.xa2_c00297{left:255.040000pt;}
.x2f_c00297{left:257.706667pt;}
.xdd_c00297{left:260.000000pt;}
.x13_c00297{left:261.333333pt;}
.x63_c00297{left:262.293333pt;}
.x9a_c00297{left:264.000000pt;}
.xb9_c00297{left:265.333333pt;}
.x3b_c00297{left:267.040000pt;}
.x5f_c00297{left:268.960000pt;}
.x1b_c00297{left:271.040000pt;}
.xd5_c00297{left:272.000000pt;}
.x94_c00297{left:273.333333pt;}
.x4e_c00297{left:274.666667pt;}
.x7_c00297{left:276.000000pt;}
.xd0_c00297{left:278.293333pt;}
.xe2_c00297{left:280.000000pt;}
.x14_c00297{left:281.706667pt;}
.x8a_c00297{left:284.373333pt;}
.xac_c00297{left:285.706667pt;}
.x8_c00297{left:289.333333pt;}
.x4f_c00297{left:292.000000pt;}
.x60_c00297{left:293.333333pt;}
.x29_c00297{left:295.040000pt;}
.x5b_c00297{left:297.706667pt;}
.x55_c00297{left:298.666667pt;}
.x69_c00297{left:299.626667pt;}
.x1c_c00297{left:304.760000pt;}
.x15_c00297{left:305.706667pt;}
.x3c_c00297{left:307.040000pt;}
.xad_c00297{left:308.373333pt;}
.x8b_c00297{left:309.333333pt;}
.x30_c00297{left:310.293333pt;}
.x7f_c00297{left:311.626667pt;}
.xd6_c00297{left:319.040000pt;}
.x2a_c00297{left:320.000000pt;}
.x50_c00297{left:321.333333pt;}
.xba_c00297{left:322.666667pt;}
.x9b_c00297{left:325.706667pt;}
.x80_c00297{left:327.040000pt;}
.x1d_c00297{left:328.000000pt;}
.xb4_c00297{left:332.000000pt;}
.x6a_c00297{left:334.666667pt;}
.x64_c00297{left:336.960000pt;}
.xbb_c00297{left:338.666667pt;}
.x9_c00297{left:339.626667pt;}
.x3d_c00297{left:342.466667pt;}
.xc6_c00297{left:343.626667pt;}
.xc2_c00297{left:345.333333pt;}
.x16_c00297{left:346.666667pt;}
.x2b_c00297{left:348.373333pt;}
.x56_c00297{left:349.333333pt;}
.x9c_c00297{left:350.293333pt;}
.x8c_c00297{left:351.626667pt;}
.xa_c00297{left:356.373333pt;}
.xde_c00297{left:357.333333pt;}
.x2_c00297{left:358.666667pt;}
.x44_c00297{left:360.373333pt;}
.xbc_c00297{left:361.706667pt;}
.xae_c00297{left:365.333333pt;}
.x45_c00297{left:366.293333pt;}
.x3e_c00297{left:370.666667pt;}
.x46_c00297{left:373.333333pt;}
.x8d_c00297{left:374.666667pt;}
.x65_c00297{left:375.626667pt;}
.xc7_c00297{left:376.960000pt;}
.x31_c00297{left:379.040000pt;}
.x75_c00297{left:380.373333pt;}
.x5c_c00297{left:381.333333pt;}
.x57_c00297{left:385.333333pt;}
.x1e_c00297{left:387.626667pt;}
.x32_c00297{left:388.960000pt;}
.xb5_c00297{left:392.373333pt;}
.x9d_c00297{left:396.373333pt;}
.x66_c00297{left:398.666667pt;}
.x6b_c00297{left:400.373333pt;}
.x5d_c00297{left:401.906667pt;}
.x76_c00297{left:404.373333pt;}
.x95_c00297{left:408.960000pt;}
.x1f_c00297{left:410.293333pt;}
.x47_c00297{left:412.000000pt;}
.x3f_c00297{left:416.000000pt;}
.x33_c00297{left:417.333333pt;}
.xbd_c00297{left:420.000000pt;}
.x9e_c00297{left:421.333333pt;}
.x22_c00297{left:422.293333pt;}
.xaf_c00297{left:424.000000pt;}
.x96_c00297{left:425.706667pt;}
.xd7_c00297{left:427.040000pt;}
.x20_c00297{left:429.333333pt;}
.x77_c00297{left:431.626667pt;}
.xb_c00297{left:436.000000pt;}
.x34_c00297{left:440.000000pt;}
.x58_c00297{left:444.000000pt;}
.x81_c00297{left:447.626667pt;}
.xa6_c00297{left:451.040000pt;}
.x48_c00297{left:452.000000pt;}
.xbe_c00297{left:452.960000pt;}
.x6c_c00297{left:456.373333pt;}
.xb0_c00297{left:457.706667pt;}
.x78_c00297{left:459.040000pt;}
.x51_c00297{left:460.960000pt;}
.xc8_c00297{left:464.373333pt;}
.x73_c00297{left:465.333333pt;}
.x21_c00297{left:466.666667pt;}
.x35_c00297{left:468.000000pt;}
.xbf_c00297{left:472.000000pt;}
.x82_c00297{left:473.333333pt;}
.xa7_c00297{left:475.626667pt;}
.xcc_c00297{left:477.333333pt;}
.xdc_c00297{left:478.293333pt;}
.x6d_c00297{left:479.626667pt;}
.x79_c00297{left:480.960000pt;}
.xc_c00297{left:484.000000pt;}
.x23_c00297{left:488.000000pt;}
.x49_c00297{left:490.666667pt;}
.xa3_c00297{left:492.373333pt;}
.xb6_c00297{left:493.333333pt;}
.xd8_c00297{left:499.040000pt;}
.xd1_c00297{left:501.706667pt;}
.xc3_c00297{left:502.666667pt;}
.xa8_c00297{left:503.626667pt;}
.x40_c00297{left:507.040000pt;}
.x36_c00297{left:508.000000pt;}
.x83_c00297{left:508.960000pt;}
.x59_c00297{left:510.666667pt;}
.x6e_c00297{left:511.626667pt;}
.xb1_c00297{left:512.960000pt;}
.x7a_c00297{left:516.000000pt;}
.xc9_c00297{left:519.626667pt;}
.x61_c00297{left:520.960000pt;}
.xd9_c00297{left:524.000000pt;}
.xd2_c00297{left:525.333333pt;}
.xd_c00297{left:526.293333pt;}
.x52_c00297{left:528.000000pt;}
.x84_c00297{left:533.333333pt;}
.x6f_c00297{left:534.666667pt;}
.x5e_c00297{left:537.333333pt;}
.x4a_c00297{left:538.666667pt;}
.x7b_c00297{left:540.373333pt;}
.x24_c00297{left:541.333333pt;}
.xc4_c00297{left:544.000000pt;}
.xa9_c00297{left:545.333333pt;}
.xca_c00297{left:547.040000pt;}
.x37_c00297{left:548.000000pt;}
.xa4_c00297{left:549.706667pt;}
.x85_c00297{left:550.666667pt;}
.x70_c00297{left:552.000000pt;}
.x4b_c00297{left:553.706667pt;}
.x9f_c00297{left:554.666667pt;}
.x41_c00297{left:557.706667pt;}
.x62_c00297{left:560.000000pt;}
.xc0_c00297{left:564.000000pt;}
.x88_c00297{left:567.040000pt;}
.x53_c00297{left:568.373333pt;}
.x97_c00297{left:569.333333pt;}
.xcb_c00297{left:570.666667pt;}
.xd3_c00297{left:572.373333pt;}
.xe_c00297{left:573.333333pt;}
.xda_c00297{left:575.040000pt;}
.x98_c00297{left:585.333333pt;}
.x38_c00297{left:588.000000pt;}
.x86_c00297{left:589.706667pt;}
.x71_c00297{left:591.040000pt;}
.xd4_c00297{left:594.666667pt;}
.xb7_c00297{left:599.040000pt;}
.xc5_c00297{left:602.666667pt;}
.x7c_c00297{left:608.000000pt;}
.xf_c00297{left:609.333333pt;}
.x25_c00297{left:611.626667pt;}
.x54_c00297{left:612.960000pt;}
.xaa_c00297{left:615.040000pt;}
.xdb_c00297{left:616.960000pt;}
.x7d_c00297{left:618.666667pt;}
.x10_c00297{left:626.666667pt;}
.x26_c00297{left:628.000000pt;}
.xcd_c00297{left:628.960000pt;}
.x72_c00297{left:630.666667pt;}
.x8e_c00297{left:636.373333pt;}
.x39_c00297{left:637.333333pt;}
.xab_c00297{left:640.000000pt;}
.x17_c00297{left:641.333333pt;}
.x5a_c00297{left:642.293333pt;}
.x87_c00297{left:645.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2fe1a7cdabb8c190bf81018d.woff2')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:1.688965;font-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_c00298{transform:matrix(0.200207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200207,0.000000,0.000000,0.250000,0,0);}
.mb5_c00298{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m47_c00298{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);}
.mbd_c00298{transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);}
.m66_c00298{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m54_c00298{transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);}
.m0_c00298{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m88_c00298{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m28_c00298{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m48_c00298{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mb1_c00298{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.m4b_c00298{transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);}
.m4e_c00298{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m25_c00298{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m79_c00298{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m56_c00298{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m14_c00298{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m46_c00298{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m3b_c00298{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mb3_c00298{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m81_c00298{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m55_c00298{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.mb2_c00298{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m91_c00298{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);}
.m30_c00298{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m82_c00298{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m5a_c00298{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.mac_c00298{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.maa_c00298{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.mb_c00298{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m2f_c00298{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m7a_c00298{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m59_c00298{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.m83_c00298{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m80_c00298{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m27_c00298{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.ma1_c00298{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m7b_c00298{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m9b_c00298{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mae_c00298{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m11_c00298{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m39_c00298{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.ma9_c00298{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m1b_c00298{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.maf_c00298{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m7c_c00298{transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);}
.m6f_c00298{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m35_c00298{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m3c_c00298{transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);}
.m33_c00298{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m64_c00298{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mbb_c00298{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m7e_c00298{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m58_c00298{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m32_c00298{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m29_c00298{transform:matrix(0.437848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437848,0.000000,0.000000,0.250000,0,0);}
.m89_c00298{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m96_c00298{transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);}
.mb7_c00298{transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);}
.m1e_c00298{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mc_c00298{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m6c_c00298{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m42_c00298{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.mb0_c00298{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m13_c00298{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.ma6_c00298{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m40_c00298{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m5c_c00298{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m2a_c00298{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m94_c00298{transform:matrix(0.454622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454622,0.000000,0.000000,0.250000,0,0);}
.m1d_c00298{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m6b_c00298{transform:matrix(0.458256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458256,0.000000,0.000000,0.250000,0,0);}
.m8e_c00298{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m71_c00298{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00298{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m9d_c00298{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.mb8_c00298{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.md_c00298{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m12_c00298{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.mf_c00298{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.mb6_c00298{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.m77_c00298{transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);}
.m4a_c00298{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.m6_c00298{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m9e_c00298{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m24_c00298{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m17_c00298{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m86_c00298{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m7d_c00298{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m4c_c00298{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.ma8_c00298{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m53_c00298{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m38_c00298{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m95_c00298{transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);}
.m2d_c00298{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_c00298{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m62_c00298{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m8c_c00298{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m5f_c00298{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m9a_c00298{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.ma2_c00298{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m7f_c00298{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m1f_c00298{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.me_c00298{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m21_c00298{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m97_c00298{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m69_c00298{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m31_c00298{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m52_c00298{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m8a_c00298{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m19_c00298{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m76_c00298{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m98_c00298{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m61_c00298{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m45_c00298{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m18_c00298{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m78_c00298{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m49_c00298{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m5e_c00298{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m3_c00298{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m23_c00298{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m2e_c00298{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m75_c00298{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m2b_c00298{transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);}
.m43_c00298{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m4d_c00298{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m5d_c00298{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m50_c00298{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m74_c00298{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m26_c00298{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m67_c00298{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m41_c00298{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m9c_c00298{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m2c_c00298{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m8d_c00298{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mbe_c00298{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m34_c00298{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.ma7_c00298{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m99_c00298{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m36_c00298{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mc0_c00298{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mbc_c00298{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m1a_c00298{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m85_c00298{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);}
.m5_c00298{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m68_c00298{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m4_c00298{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m20_c00298{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m72_c00298{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m8_c00298{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m87_c00298{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m90_c00298{transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);}
.m2_c00298{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m15_c00298{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m6a_c00298{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.ma3_c00298{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m3e_c00298{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m92_c00298{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);}
.m51_c00298{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m1_c00298{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m16_c00298{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m3d_c00298{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m70_c00298{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m37_c00298{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m3a_c00298{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m93_c00298{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.mb9_c00298{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.m65_c00298{transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);}
.mab_c00298{transform:matrix(0.659455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659455,0.000000,0.000000,0.250000,0,0);}
.ma5_c00298{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m6d_c00298{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m4f_c00298{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m44_c00298{transform:matrix(0.680588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680588,0.000000,0.000000,0.250000,0,0);}
.m8f_c00298{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m73_c00298{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.mba_c00298{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m22_c00298{transform:matrix(0.715545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715545,0.000000,0.000000,0.250000,0,0);}
.m1c_c00298{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m84_c00298{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m60_c00298{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m63_c00298{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m9_c00298{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m10_c00298{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m7_c00298{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.ma4_c00298{transform:matrix(0.781765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.781765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.781765,0.000000,0.000000,0.250000,0,0);}
.m9f_c00298{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.mbf_c00298{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m3f_c00298{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mb4_c00298{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.ma_c00298{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m6e_c00298{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.mad_c00298{transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);}
.m57_c00298{transform:matrix(7.210526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.210526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.210526,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:-7.448345px;}
.ws1_c00298{word-spacing:0.000000px;}
.fc0_c00298{color:transparent;}
.fs7_c00298{font-size:3.420000px;}
.fs4_c00298{font-size:18.720000px;}
.fs1_c00298{font-size:20.400000px;}
.fs2_c00298{font-size:25.500000px;}
.fs3_c00298{font-size:28.920000px;}
.fs5_c00298{font-size:32.340000px;}
.fs0_c00298{font-size:35.700000px;}
.fs6_c00298{font-size:39.120000px;}
.y0_c00298{bottom:0.000000px;}
.yc8_c00298{bottom:248.970000px;}
.yc7_c00298{bottom:249.405000px;}
.yc5_c00298{bottom:250.245000px;}
.yc6_c00298{bottom:251.130000px;}
.yc4_c00298{bottom:252.405000px;}
.yc2_c00298{bottom:267.405000px;}
.yc3_c00298{bottom:268.245000px;}
.yc1_c00298{bottom:269.745000px;}
.yc0_c00298{bottom:271.905000px;}
.ybe_c00298{bottom:288.405000px;}
.ybd_c00298{bottom:289.245000px;}
.ybf_c00298{bottom:290.745000px;}
.ybb_c00298{bottom:291.405000px;}
.ybc_c00298{bottom:291.630000px;}
.yba_c00298{bottom:292.905000px;}
.yb8_c00298{bottom:307.905000px;}
.yb5_c00298{bottom:309.180000px;}
.yb7_c00298{bottom:309.405000px;}
.yb4_c00298{bottom:310.245000px;}
.yb6_c00298{bottom:310.470000px;}
.yb9_c00298{bottom:310.905000px;}
.yb2_c00298{bottom:311.130000px;}
.yb3_c00298{bottom:312.405000px;}
.yb1_c00298{bottom:329.550000px;}
.yb0_c00298{bottom:329.745000px;}
.yad_c00298{bottom:330.405000px;}
.yaf_c00298{bottom:331.470000px;}
.yae_c00298{bottom:331.905000px;}
.yac_c00298{bottom:346.905000px;}
.yab_c00298{bottom:348.825000px;}
.yaa_c00298{bottom:349.245000px;}
.ya9_c00298{bottom:367.905000px;}
.ya8_c00298{bottom:368.745000px;}
.ya7_c00298{bottom:370.470000px;}
.ya6_c00298{bottom:370.905000px;}
.ya5_c00298{bottom:371.130000px;}
.ya2_c00298{bottom:388.245000px;}
.ya3_c00298{bottom:390.405000px;}
.ya4_c00298{bottom:390.630000px;}
.y9f_c00298{bottom:407.745000px;}
.ya0_c00298{bottom:408.825000px;}
.y9e_c00298{bottom:409.905000px;}
.y9d_c00298{bottom:410.130000px;}
.ya1_c00298{bottom:410.970000px;}
.y9c_c00298{bottom:437.745000px;}
.y9b_c00298{bottom:438.630000px;}
.y9a_c00298{bottom:454.905000px;}
.y98_c00298{bottom:457.245000px;}
.y99_c00298{bottom:457.905000px;}
.y97_c00298{bottom:458.970000px;}
.y95_c00298{bottom:459.405000px;}
.y96_c00298{bottom:460.470000px;}
.y94_c00298{bottom:476.745000px;}
.y93_c00298{bottom:477.825000px;}
.y91_c00298{bottom:478.470000px;}
.y92_c00298{bottom:478.905000px;}
.y90_c00298{bottom:479.970000px;}
.y8f_c00298{bottom:498.405000px;}
.y8b_c00298{bottom:514.905000px;}
.y89_c00298{bottom:515.745000px;}
.y8d_c00298{bottom:517.245000px;}
.y8a_c00298{bottom:517.905000px;}
.y8e_c00298{bottom:518.130000px;}
.y8c_c00298{bottom:519.405000px;}
.y85_c00298{bottom:534.405000px;}
.y87_c00298{bottom:537.405000px;}
.y88_c00298{bottom:537.630000px;}
.y86_c00298{bottom:537.825000px;}
.y84_c00298{bottom:538.905000px;}
.y83_c00298{bottom:554.745000px;}
.y82_c00298{bottom:555.405000px;}
.y7f_c00298{bottom:556.905000px;}
.y80_c00298{bottom:558.405000px;}
.y81_c00298{bottom:559.470000px;}
.y7b_c00298{bottom:575.745000px;}
.y7d_c00298{bottom:576.825000px;}
.y7a_c00298{bottom:577.470000px;}
.y7c_c00298{bottom:577.905000px;}
.y7e_c00298{bottom:578.130000px;}
.y79_c00298{bottom:578.970000px;}
.y74_c00298{bottom:594.405000px;}
.y78_c00298{bottom:595.245000px;}
.y77_c00298{bottom:595.470000px;}
.y76_c00298{bottom:596.325000px;}
.y75_c00298{bottom:597.405000px;}
.y73_c00298{bottom:613.905000px;}
.y71_c00298{bottom:614.745000px;}
.y72_c00298{bottom:616.905000px;}
.y6c_c00298{bottom:634.245000px;}
.y6f_c00298{bottom:634.470000px;}
.y6d_c00298{bottom:635.745000px;}
.y6e_c00298{bottom:636.630000px;}
.y70_c00298{bottom:637.470000px;}
.y6b_c00298{bottom:637.905000px;}
.y68_c00298{bottom:655.245000px;}
.y69_c00298{bottom:656.130000px;}
.y6a_c00298{bottom:656.970000px;}
.y67_c00298{bottom:657.405000px;}
.y65_c00298{bottom:673.470000px;}
.y64_c00298{bottom:674.745000px;}
.y62_c00298{bottom:675.630000px;}
.y66_c00298{bottom:675.825000px;}
.y63_c00298{bottom:676.905000px;}
.y5f_c00298{bottom:694.245000px;}
.y60_c00298{bottom:695.325000px;}
.y5e_c00298{bottom:696.405000px;}
.y61_c00298{bottom:697.470000px;}
.y5d_c00298{bottom:714.630000px;}
.y5a_c00298{bottom:714.825000px;}
.y5c_c00298{bottom:715.245000px;}
.y58_c00298{bottom:715.905000px;}
.y59_c00298{bottom:716.325000px;}
.y57_c00298{bottom:716.970000px;}
.y5b_c00298{bottom:717.405000px;}
.y54_c00298{bottom:733.245000px;}
.y55_c00298{bottom:734.745000px;}
.y53_c00298{bottom:735.405000px;}
.y52_c00298{bottom:736.470000px;}
.y56_c00298{bottom:736.905000px;}
.y4e_c00298{bottom:758.745000px;}
.y51_c00298{bottom:759.630000px;}
.y4f_c00298{bottom:760.470000px;}
.y50_c00298{bottom:760.905000px;}
.y49_c00298{bottom:800.325000px;}
.y48_c00298{bottom:801.180000px;}
.y4d_c00298{bottom:801.405000px;}
.y4b_c00298{bottom:802.245000px;}
.y4a_c00298{bottom:802.470000px;}
.y4c_c00298{bottom:802.920000px;}
.y47_c00298{bottom:805.470000px;}
.y44_c00298{bottom:823.245000px;}
.y46_c00298{bottom:823.905000px;}
.y43_c00298{bottom:824.970000px;}
.y45_c00298{bottom:825.405000px;}
.y3f_c00298{bottom:841.905000px;}
.y41_c00298{bottom:842.745000px;}
.y40_c00298{bottom:843.630000px;}
.y42_c00298{bottom:844.470000px;}
.y3e_c00298{bottom:844.905000px;}
.y3d_c00298{bottom:859.905000px;}
.y3c_c00298{bottom:860.970000px;}
.y3b_c00298{bottom:862.245000px;}
.y3a_c00298{bottom:863.130000px;}
.y39_c00298{bottom:864.405000px;}
.y37_c00298{bottom:881.745000px;}
.y36_c00298{bottom:882.630000px;}
.y38_c00298{bottom:883.470000px;}
.y35_c00298{bottom:883.905000px;}
.y2e_c00298{bottom:900.405000px;}
.y33_c00298{bottom:901.245000px;}
.y31_c00298{bottom:902.130000px;}
.y34_c00298{bottom:902.970000px;}
.y2f_c00298{bottom:903.405000px;}
.y32_c00298{bottom:903.630000px;}
.y30_c00298{bottom:904.470000px;}
.y2b_c00298{bottom:919.470000px;}
.y28_c00298{bottom:919.905000px;}
.y2a_c00298{bottom:920.745000px;}
.y29_c00298{bottom:921.630000px;}
.y2d_c00298{bottom:922.245000px;}
.y2c_c00298{bottom:922.905000px;}
.y24_c00298{bottom:940.245000px;}
.y27_c00298{bottom:941.745000px;}
.y25_c00298{bottom:942.405000px;}
.y26_c00298{bottom:943.905000px;}
.y23_c00298{bottom:959.745000px;}
.y20_c00298{bottom:960.825000px;}
.y22_c00298{bottom:961.245000px;}
.y1e_c00298{bottom:961.905000px;}
.y21_c00298{bottom:962.130000px;}
.y1f_c00298{bottom:963.405000px;}
.y1d_c00298{bottom:978.405000px;}
.y1c_c00298{bottom:979.470000px;}
.y1b_c00298{bottom:980.325000px;}
.y1a_c00298{bottom:980.745000px;}
.y19_c00298{bottom:997.905000px;}
.y18_c00298{bottom:999.405000px;}
.y17_c00298{bottom:1000.245000px;}
.y16_c00298{bottom:1001.130000px;}
.y15_c00298{bottom:1002.405000px;}
.y10_c00298{bottom:1018.245000px;}
.y12_c00298{bottom:1019.745000px;}
.y14_c00298{bottom:1020.405000px;}
.y11_c00298{bottom:1020.630000px;}
.yf_c00298{bottom:1021.905000px;}
.y13_c00298{bottom:1022.130000px;}
.y8_c00298{bottom:1038.405000px;}
.ya_c00298{bottom:1038.825000px;}
.yc_c00298{bottom:1039.245000px;}
.yd_c00298{bottom:1040.325000px;}
.y9_c00298{bottom:1041.405000px;}
.yb_c00298{bottom:1041.630000px;}
.ye_c00298{bottom:1042.470000px;}
.y7_c00298{bottom:1057.905000px;}
.y6_c00298{bottom:1058.745000px;}
.y4_c00298{bottom:1060.905000px;}
.y5_c00298{bottom:1061.130000px;}
.y3_c00298{bottom:1061.970000px;}
.y1_c00298{bottom:1097.745000px;}
.y2_c00298{bottom:1100.550000px;}
.h8_c00298{height:4.206533px;}
.h5_c00298{height:23.025234px;}
.h2_c00298{height:25.091602px;}
.h3_c00298{height:31.364502px;}
.h4_c00298{height:35.571035px;}
.h6_c00298{height:39.777568px;}
.h1_c00298{height:43.910303px;}
.h7_c00298{height:48.116836px;}
.h0_c00298{height:1335.000000px;}
.w0_c00298{width:880.500000px;}
.x0_c00298{left:0.000000px;}
.xe_c00298{left:151.920000px;}
.xd6_c00298{left:158.580000px;}
.x3_c00298{left:166.080000px;}
.x7f_c00298{left:168.000000px;}
.x94_c00298{left:178.500000px;}
.x87_c00298{left:183.000000px;}
.xad_c00298{left:187.080000px;}
.x4_c00298{left:190.500000px;}
.x80_c00298{left:192.420000px;}
.x95_c00298{left:198.000000px;}
.xa5_c00298{left:201.000000px;}
.x61_c00298{left:205.920000px;}
.xae_c00298{left:208.920000px;}
.x6d_c00298{left:210.420000px;}
.x45_c00298{left:211.500000px;}
.xb6_c00298{left:214.920000px;}
.xbc_c00298{left:217.920000px;}
.x59_c00298{left:219.000000px;}
.x74_c00298{left:220.080000px;}
.x5_c00298{left:222.000000px;}
.xf_c00298{left:223.920000px;}
.x9e_c00298{left:225.000000px;}
.x1a_c00298{left:227.580000px;}
.x39_c00298{left:231.000000px;}
.x88_c00298{left:234.420000px;}
.x96_c00298{left:235.920000px;}
.x46_c00298{left:241.920000px;}
.xbd_c00298{left:244.080000px;}
.x1b_c00298{left:246.420000px;}
.x75_c00298{left:247.500000px;}
.xa7_c00298{left:249.000000px;}
.xc3_c00298{left:250.500000px;}
.x6_c00298{left:258.420000px;}
.x4e_c00298{left:259.500000px;}
.xaf_c00298{left:261.420000px;}
.x9f_c00298{left:262.500000px;}
.x7a_c00298{left:265.500000px;}
.xe2_c00298{left:267.000000px;}
.x76_c00298{left:268.500000px;}
.xe8_c00298{left:269.580000px;}
.x10_c00298{left:271.500000px;}
.x27_c00298{left:273.000000px;}
.x5a_c00298{left:274.080000px;}
.x97_c00298{left:275.580000px;}
.x47_c00298{left:277.080000px;}
.xd7_c00298{left:280.500000px;}
.x7b_c00298{left:285.420000px;}
.x8f_c00298{left:288.420000px;}
.x7_c00298{left:289.500000px;}
.x4f_c00298{left:291.000000px;}
.xa8_c00298{left:292.500000px;}
.x81_c00298{left:295.500000px;}
.xc4_c00298{left:297.000000px;}
.xb0_c00298{left:298.500000px;}
.x89_c00298{left:300.000000px;}
.xa0_c00298{left:301.500000px;}
.x3a_c00298{left:303.420000px;}
.x28_c00298{left:304.500000px;}
.x8_c00298{left:306.000000px;}
.x50_c00298{left:309.000000px;}
.x62_c00298{left:310.080000px;}
.x77_c00298{left:312.420000px;}
.x11_c00298{left:313.500000px;}
.xeb_c00298{left:315.000000px;}
.x90_c00298{left:316.500000px;}
.xa1_c00298{left:320.580000px;}
.x5b_c00298{left:322.500000px;}
.x48_c00298{left:324.000000px;}
.x1c_c00298{left:325.500000px;}
.x98_c00298{left:333.000000px;}
.xa9_c00298{left:334.080000px;}
.x12_c00298{left:340.920000px;}
.x29_c00298{left:342.420000px;}
.x78_c00298{left:343.500000px;}
.x9_c00298{left:345.420000px;}
.x51_c00298{left:348.420000px;}
.x66_c00298{left:351.420000px;}
.x63_c00298{left:353.580000px;}
.x3b_c00298{left:355.500000px;}
.xe0_c00298{left:358.500000px;}
.xd8_c00298{left:361.080000px;}
.xec_c00298{left:362.580000px;}
.x1d_c00298{left:364.500000px;}
.x6e_c00298{left:367.500000px;}
.x49_c00298{left:369.420000px;}
.xb1_c00298{left:372.420000px;}
.x2a_c00298{left:373.500000px;}
.xe1_c00298{left:375.000000px;}
.x67_c00298{left:378.000000px;}
.xa_c00298{left:382.920000px;}
.x3c_c00298{left:385.920000px;}
.xe3_c00298{left:387.420000px;}
.x1e_c00298{left:388.920000px;}
.x82_c00298{left:390.420000px;}
.xbe_c00298{left:391.500000px;}
.xd0_c00298{left:396.000000px;}
.x6f_c00298{left:399.420000px;}
.x8a_c00298{left:400.920000px;}
.x2_c00298{left:402.000000px;}
.x7c_c00298{left:403.080000px;}
.x99_c00298{left:404.580000px;}
.xc5_c00298{left:408.000000px;}
.xb_c00298{left:409.500000px;}
.x13_c00298{left:411.000000px;}
.x52_c00298{left:412.500000px;}
.xa2_c00298{left:414.000000px;}
.x35_c00298{left:417.420000px;}
.x83_c00298{left:418.500000px;}
.xbf_c00298{left:421.920000px;}
.x3d_c00298{left:424.920000px;}
.x70_c00298{left:429.000000px;}
.x9a_c00298{left:433.500000px;}
.x2b_c00298{left:434.580000px;}
.xb2_c00298{left:436.080000px;}
.xb3_c00298{left:439.500000px;}
.xc_c00298{left:441.420000px;}
.xf0_c00298{left:444.420000px;}
.x53_c00298{left:445.920000px;}
.x68_c00298{left:447.000000px;}
.xed_c00298{left:448.080000px;}
.xcb_c00298{left:449.580000px;}
.xa3_c00298{left:451.500000px;}
.xd1_c00298{left:453.000000px;}
.x2c_c00298{left:454.500000px;}
.xe4_c00298{left:457.500000px;}
.x1f_c00298{left:460.920000px;}
.xb7_c00298{left:463.080000px;}
.x14_c00298{left:465.420000px;}
.x3e_c00298{left:468.000000px;}
.xc0_c00298{left:469.500000px;}
.xcc_c00298{left:471.420000px;}
.x5c_c00298{left:472.920000px;}
.xd2_c00298{left:474.420000px;}
.x91_c00298{left:475.500000px;}
.xe5_c00298{left:476.580000px;}
.x69_c00298{left:480.420000px;}
.xc6_c00298{left:481.500000px;}
.x54_c00298{left:484.080000px;}
.x2d_c00298{left:486.420000px;}
.x79_c00298{left:487.920000px;}
.x36_c00298{left:490.500000px;}
.xee_c00298{left:495.000000px;}
.x20_c00298{left:496.920000px;}
.xd9_c00298{left:498.000000px;}
.xc7_c00298{left:499.500000px;}
.x84_c00298{left:501.420000px;}
.xe6_c00298{left:508.500000px;}
.x15_c00298{left:510.000000px;}
.xb8_c00298{left:511.500000px;}
.x6a_c00298{left:513.000000px;}
.x32_c00298{left:514.080000px;}
.xc1_c00298{left:515.580000px;}
.x7d_c00298{left:517.500000px;}
.x71_c00298{left:519.000000px;}
.x2e_c00298{left:521.580000px;}
.x64_c00298{left:522.645000px;}
.x3f_c00298{left:525.000000px;}
.xda_c00298{left:526.500000px;}
.xaa_c00298{left:527.580000px;}
.x8b_c00298{left:531.000000px;}
.xb4_c00298{left:532.920000px;}
.x5d_c00298{left:540.000000px;}
.xa6_c00298{left:543.000000px;}
.x9b_c00298{left:544.500000px;}
.xab_c00298{left:546.000000px;}
.x2f_c00298{left:547.080000px;}
.x4a_c00298{left:549.645000px;}
.xef_c00298{left:551.145000px;}
.x85_c00298{left:552.420000px;}
.xb9_c00298{left:558.000000px;}
.x6b_c00298{left:561.420000px;}
.x21_c00298{left:563.580000px;}
.x92_c00298{left:567.420000px;}
.x30_c00298{left:568.500000px;}
.xc8_c00298{left:570.000000px;}
.xdb_c00298{left:571.080000px;}
.xa4_c00298{left:572.580000px;}
.x16_c00298{left:574.500000px;}
.x55_c00298{left:576.420000px;}
.x7e_c00298{left:577.500000px;}
.x40_c00298{left:579.000000px;}
.x33_c00298{left:582.000000px;}
.x72_c00298{left:583.920000px;}
.x22_c00298{left:585.000000px;}
.x4b_c00298{left:589.920000px;}
.xdc_c00298{left:591.420000px;}
.xcd_c00298{left:592.500000px;}
.xc9_c00298{left:594.420000px;}
.x9c_c00298{left:596.580000px;}
.x5e_c00298{left:598.500000px;}
.xd3_c00298{left:601.080000px;}
.xe9_c00298{left:602.580000px;}
.x93_c00298{left:604.500000px;}
.x6c_c00298{left:606.420000px;}
.x37_c00298{left:607.920000px;}
.x41_c00298{left:609.000000px;}
.x56_c00298{left:610.500000px;}
.x17_c00298{left:612.420000px;}
.x31_c00298{left:613.920000px;}
.xdd_c00298{left:619.500000px;}
.x73_c00298{left:621.420000px;}
.x23_c00298{left:622.500000px;}
.x65_c00298{left:627.420000px;}
.x5f_c00298{left:631.080000px;}
.x4c_c00298{left:634.920000px;}
.x38_c00298{left:636.420000px;}
.xba_c00298{left:639.420000px;}
.x8c_c00298{left:640.920000px;}
.x42_c00298{left:643.920000px;}
.x18_c00298{left:649.500000px;}
.xd4_c00298{left:652.080000px;}
.x24_c00298{left:654.420000px;}
.xc2_c00298{left:655.500000px;}
.x57_c00298{left:657.000000px;}
.xde_c00298{left:658.500000px;}
.x60_c00298{left:659.580000px;}
.xac_c00298{left:663.000000px;}
.xce_c00298{left:666.420000px;}
.xbb_c00298{left:667.500000px;}
.x86_c00298{left:669.000000px;}
.xb5_c00298{left:672.420000px;}
.x43_c00298{left:673.500000px;}
.xdf_c00298{left:675.000000px;}
.x25_c00298{left:678.000000px;}
.xca_c00298{left:679.080000px;}
.x34_c00298{left:685.080000px;}
.x4d_c00298{left:686.580000px;}
.x44_c00298{left:688.080000px;}
.x26_c00298{left:691.500000px;}
.x9d_c00298{left:697.920000px;}
.x8d_c00298{left:699.000000px;}
.xd5_c00298{left:700.080000px;}
.xea_c00298{left:702.000000px;}
.x1_c00298{left:703.500000px;}
.x19_c00298{left:705.420000px;}
.xcf_c00298{left:706.920000px;}
.xd_c00298{left:712.920000px;}
.x58_c00298{left:714.000000px;}
.x8e_c00298{left:717.000000px;}
.xe7_c00298{left:720.420000px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls0_c00298{letter-spacing:0.000000pt;}
.ws0_c00298{word-spacing:-6.620751pt;}
.ws1_c00298{word-spacing:0.000000pt;}
.fs7_c00298{font-size:3.040000pt;}
.fs4_c00298{font-size:16.640000pt;}
.fs1_c00298{font-size:18.133333pt;}
.fs2_c00298{font-size:22.666667pt;}
.fs3_c00298{font-size:25.706667pt;}
.fs5_c00298{font-size:28.746667pt;}
.fs0_c00298{font-size:31.733333pt;}
.fs6_c00298{font-size:34.773333pt;}
.y0_c00298{bottom:0.000000pt;}
.yc8_c00298{bottom:221.306667pt;}
.yc7_c00298{bottom:221.693333pt;}
.yc5_c00298{bottom:222.440000pt;}
.yc6_c00298{bottom:223.226667pt;}
.yc4_c00298{bottom:224.360000pt;}
.yc2_c00298{bottom:237.693333pt;}
.yc3_c00298{bottom:238.440000pt;}
.yc1_c00298{bottom:239.773333pt;}
.yc0_c00298{bottom:241.693333pt;}
.ybe_c00298{bottom:256.360000pt;}
.ybd_c00298{bottom:257.106667pt;}
.ybf_c00298{bottom:258.440000pt;}
.ybb_c00298{bottom:259.026667pt;}
.ybc_c00298{bottom:259.226667pt;}
.yba_c00298{bottom:260.360000pt;}
.yb8_c00298{bottom:273.693333pt;}
.yb5_c00298{bottom:274.826667pt;}
.yb7_c00298{bottom:275.026667pt;}
.yb4_c00298{bottom:275.773333pt;}
.yb6_c00298{bottom:275.973333pt;}
.yb9_c00298{bottom:276.360000pt;}
.yb2_c00298{bottom:276.560000pt;}
.yb3_c00298{bottom:277.693333pt;}
.yb1_c00298{bottom:292.933333pt;}
.yb0_c00298{bottom:293.106667pt;}
.yad_c00298{bottom:293.693333pt;}
.yaf_c00298{bottom:294.640000pt;}
.yae_c00298{bottom:295.026667pt;}
.yac_c00298{bottom:308.360000pt;}
.yab_c00298{bottom:310.066667pt;}
.yaa_c00298{bottom:310.440000pt;}
.ya9_c00298{bottom:327.026667pt;}
.ya8_c00298{bottom:327.773333pt;}
.ya7_c00298{bottom:329.306667pt;}
.ya6_c00298{bottom:329.693333pt;}
.ya5_c00298{bottom:329.893333pt;}
.ya2_c00298{bottom:345.106667pt;}
.ya3_c00298{bottom:347.026667pt;}
.ya4_c00298{bottom:347.226667pt;}
.y9f_c00298{bottom:362.440000pt;}
.ya0_c00298{bottom:363.400000pt;}
.y9e_c00298{bottom:364.360000pt;}
.y9d_c00298{bottom:364.560000pt;}
.ya1_c00298{bottom:365.306667pt;}
.y9c_c00298{bottom:389.106667pt;}
.y9b_c00298{bottom:389.893333pt;}
.y9a_c00298{bottom:404.360000pt;}
.y98_c00298{bottom:406.440000pt;}
.y99_c00298{bottom:407.026667pt;}
.y97_c00298{bottom:407.973333pt;}
.y95_c00298{bottom:408.360000pt;}
.y96_c00298{bottom:409.306667pt;}
.y94_c00298{bottom:423.773333pt;}
.y93_c00298{bottom:424.733333pt;}
.y91_c00298{bottom:425.306667pt;}
.y92_c00298{bottom:425.693333pt;}
.y90_c00298{bottom:426.640000pt;}
.y8f_c00298{bottom:443.026667pt;}
.y8b_c00298{bottom:457.693333pt;}
.y89_c00298{bottom:458.440000pt;}
.y8d_c00298{bottom:459.773333pt;}
.y8a_c00298{bottom:460.360000pt;}
.y8e_c00298{bottom:460.560000pt;}
.y8c_c00298{bottom:461.693333pt;}
.y85_c00298{bottom:475.026667pt;}
.y87_c00298{bottom:477.693333pt;}
.y88_c00298{bottom:477.893333pt;}
.y86_c00298{bottom:478.066667pt;}
.y84_c00298{bottom:479.026667pt;}
.y83_c00298{bottom:493.106667pt;}
.y82_c00298{bottom:493.693333pt;}
.y7f_c00298{bottom:495.026667pt;}
.y80_c00298{bottom:496.360000pt;}
.y81_c00298{bottom:497.306667pt;}
.y7b_c00298{bottom:511.773333pt;}
.y7d_c00298{bottom:512.733333pt;}
.y7a_c00298{bottom:513.306667pt;}
.y7c_c00298{bottom:513.693333pt;}
.y7e_c00298{bottom:513.893333pt;}
.y79_c00298{bottom:514.640000pt;}
.y74_c00298{bottom:528.360000pt;}
.y78_c00298{bottom:529.106667pt;}
.y77_c00298{bottom:529.306667pt;}
.y76_c00298{bottom:530.066667pt;}
.y75_c00298{bottom:531.026667pt;}
.y73_c00298{bottom:545.693333pt;}
.y71_c00298{bottom:546.440000pt;}
.y72_c00298{bottom:548.360000pt;}
.y6c_c00298{bottom:563.773333pt;}
.y6f_c00298{bottom:563.973333pt;}
.y6d_c00298{bottom:565.106667pt;}
.y6e_c00298{bottom:565.893333pt;}
.y70_c00298{bottom:566.640000pt;}
.y6b_c00298{bottom:567.026667pt;}
.y68_c00298{bottom:582.440000pt;}
.y69_c00298{bottom:583.226667pt;}
.y6a_c00298{bottom:583.973333pt;}
.y67_c00298{bottom:584.360000pt;}
.y65_c00298{bottom:598.640000pt;}
.y64_c00298{bottom:599.773333pt;}
.y62_c00298{bottom:600.560000pt;}
.y66_c00298{bottom:600.733333pt;}
.y63_c00298{bottom:601.693333pt;}
.y5f_c00298{bottom:617.106667pt;}
.y60_c00298{bottom:618.066667pt;}
.y5e_c00298{bottom:619.026667pt;}
.y61_c00298{bottom:619.973333pt;}
.y5d_c00298{bottom:635.226667pt;}
.y5a_c00298{bottom:635.400000pt;}
.y5c_c00298{bottom:635.773333pt;}
.y58_c00298{bottom:636.360000pt;}
.y59_c00298{bottom:636.733333pt;}
.y57_c00298{bottom:637.306667pt;}
.y5b_c00298{bottom:637.693333pt;}
.y54_c00298{bottom:651.773333pt;}
.y55_c00298{bottom:653.106667pt;}
.y53_c00298{bottom:653.693333pt;}
.y52_c00298{bottom:654.640000pt;}
.y56_c00298{bottom:655.026667pt;}
.y4e_c00298{bottom:674.440000pt;}
.y51_c00298{bottom:675.226667pt;}
.y4f_c00298{bottom:675.973333pt;}
.y50_c00298{bottom:676.360000pt;}
.y49_c00298{bottom:711.400000pt;}
.y48_c00298{bottom:712.160000pt;}
.y4d_c00298{bottom:712.360000pt;}
.y4b_c00298{bottom:713.106667pt;}
.y4a_c00298{bottom:713.306667pt;}
.y4c_c00298{bottom:713.706667pt;}
.y47_c00298{bottom:715.973333pt;}
.y44_c00298{bottom:731.773333pt;}
.y46_c00298{bottom:732.360000pt;}
.y43_c00298{bottom:733.306667pt;}
.y45_c00298{bottom:733.693333pt;}
.y3f_c00298{bottom:748.360000pt;}
.y41_c00298{bottom:749.106667pt;}
.y40_c00298{bottom:749.893333pt;}
.y42_c00298{bottom:750.640000pt;}
.y3e_c00298{bottom:751.026667pt;}
.y3d_c00298{bottom:764.360000pt;}
.y3c_c00298{bottom:765.306667pt;}
.y3b_c00298{bottom:766.440000pt;}
.y3a_c00298{bottom:767.226667pt;}
.y39_c00298{bottom:768.360000pt;}
.y37_c00298{bottom:783.773333pt;}
.y36_c00298{bottom:784.560000pt;}
.y38_c00298{bottom:785.306667pt;}
.y35_c00298{bottom:785.693333pt;}
.y2e_c00298{bottom:800.360000pt;}
.y33_c00298{bottom:801.106667pt;}
.y31_c00298{bottom:801.893333pt;}
.y34_c00298{bottom:802.640000pt;}
.y2f_c00298{bottom:803.026667pt;}
.y32_c00298{bottom:803.226667pt;}
.y30_c00298{bottom:803.973333pt;}
.y2b_c00298{bottom:817.306667pt;}
.y28_c00298{bottom:817.693333pt;}
.y2a_c00298{bottom:818.440000pt;}
.y29_c00298{bottom:819.226667pt;}
.y2d_c00298{bottom:819.773333pt;}
.y2c_c00298{bottom:820.360000pt;}
.y24_c00298{bottom:835.773333pt;}
.y27_c00298{bottom:837.106667pt;}
.y25_c00298{bottom:837.693333pt;}
.y26_c00298{bottom:839.026667pt;}
.y23_c00298{bottom:853.106667pt;}
.y20_c00298{bottom:854.066667pt;}
.y22_c00298{bottom:854.440000pt;}
.y1e_c00298{bottom:855.026667pt;}
.y21_c00298{bottom:855.226667pt;}
.y1f_c00298{bottom:856.360000pt;}
.y1d_c00298{bottom:869.693333pt;}
.y1c_c00298{bottom:870.640000pt;}
.y1b_c00298{bottom:871.400000pt;}
.y1a_c00298{bottom:871.773333pt;}
.y19_c00298{bottom:887.026667pt;}
.y18_c00298{bottom:888.360000pt;}
.y17_c00298{bottom:889.106667pt;}
.y16_c00298{bottom:889.893333pt;}
.y15_c00298{bottom:891.026667pt;}
.y10_c00298{bottom:905.106667pt;}
.y12_c00298{bottom:906.440000pt;}
.y14_c00298{bottom:907.026667pt;}
.y11_c00298{bottom:907.226667pt;}
.yf_c00298{bottom:908.360000pt;}
.y13_c00298{bottom:908.560000pt;}
.y8_c00298{bottom:923.026667pt;}
.ya_c00298{bottom:923.400000pt;}
.yc_c00298{bottom:923.773333pt;}
.yd_c00298{bottom:924.733333pt;}
.y9_c00298{bottom:925.693333pt;}
.yb_c00298{bottom:925.893333pt;}
.ye_c00298{bottom:926.640000pt;}
.y7_c00298{bottom:940.360000pt;}
.y6_c00298{bottom:941.106667pt;}
.y4_c00298{bottom:943.026667pt;}
.y5_c00298{bottom:943.226667pt;}
.y3_c00298{bottom:943.973333pt;}
.y1_c00298{bottom:975.773333pt;}
.y2_c00298{bottom:978.266667pt;}
.h8_c00298{height:3.739141pt;}
.h5_c00298{height:20.466875pt;}
.h2_c00298{height:22.303646pt;}
.h3_c00298{height:27.879557pt;}
.h4_c00298{height:31.618698pt;}
.h6_c00298{height:35.357839pt;}
.h1_c00298{height:39.031380pt;}
.h7_c00298{height:42.770521pt;}
.h0_c00298{height:1186.666667pt;}
.w0_c00298{width:782.666667pt;}
.x0_c00298{left:0.000000pt;}
.xe_c00298{left:135.040000pt;}
.xd6_c00298{left:140.960000pt;}
.x3_c00298{left:147.626667pt;}
.x7f_c00298{left:149.333333pt;}
.x94_c00298{left:158.666667pt;}
.x87_c00298{left:162.666667pt;}
.xad_c00298{left:166.293333pt;}
.x4_c00298{left:169.333333pt;}
.x80_c00298{left:171.040000pt;}
.x95_c00298{left:176.000000pt;}
.xa5_c00298{left:178.666667pt;}
.x61_c00298{left:183.040000pt;}
.xae_c00298{left:185.706667pt;}
.x6d_c00298{left:187.040000pt;}
.x45_c00298{left:188.000000pt;}
.xb6_c00298{left:191.040000pt;}
.xbc_c00298{left:193.706667pt;}
.x59_c00298{left:194.666667pt;}
.x74_c00298{left:195.626667pt;}
.x5_c00298{left:197.333333pt;}
.xf_c00298{left:199.040000pt;}
.x9e_c00298{left:200.000000pt;}
.x1a_c00298{left:202.293333pt;}
.x39_c00298{left:205.333333pt;}
.x88_c00298{left:208.373333pt;}
.x96_c00298{left:209.706667pt;}
.x46_c00298{left:215.040000pt;}
.xbd_c00298{left:216.960000pt;}
.x1b_c00298{left:219.040000pt;}
.x75_c00298{left:220.000000pt;}
.xa7_c00298{left:221.333333pt;}
.xc3_c00298{left:222.666667pt;}
.x6_c00298{left:229.706667pt;}
.x4e_c00298{left:230.666667pt;}
.xaf_c00298{left:232.373333pt;}
.x9f_c00298{left:233.333333pt;}
.x7a_c00298{left:236.000000pt;}
.xe2_c00298{left:237.333333pt;}
.x76_c00298{left:238.666667pt;}
.xe8_c00298{left:239.626667pt;}
.x10_c00298{left:241.333333pt;}
.x27_c00298{left:242.666667pt;}
.x5a_c00298{left:243.626667pt;}
.x97_c00298{left:244.960000pt;}
.x47_c00298{left:246.293333pt;}
.xd7_c00298{left:249.333333pt;}
.x7b_c00298{left:253.706667pt;}
.x8f_c00298{left:256.373333pt;}
.x7_c00298{left:257.333333pt;}
.x4f_c00298{left:258.666667pt;}
.xa8_c00298{left:260.000000pt;}
.x81_c00298{left:262.666667pt;}
.xc4_c00298{left:264.000000pt;}
.xb0_c00298{left:265.333333pt;}
.x89_c00298{left:266.666667pt;}
.xa0_c00298{left:268.000000pt;}
.x3a_c00298{left:269.706667pt;}
.x28_c00298{left:270.666667pt;}
.x8_c00298{left:272.000000pt;}
.x50_c00298{left:274.666667pt;}
.x62_c00298{left:275.626667pt;}
.x77_c00298{left:277.706667pt;}
.x11_c00298{left:278.666667pt;}
.xeb_c00298{left:280.000000pt;}
.x90_c00298{left:281.333333pt;}
.xa1_c00298{left:284.960000pt;}
.x5b_c00298{left:286.666667pt;}
.x48_c00298{left:288.000000pt;}
.x1c_c00298{left:289.333333pt;}
.x98_c00298{left:296.000000pt;}
.xa9_c00298{left:296.960000pt;}
.x12_c00298{left:303.040000pt;}
.x29_c00298{left:304.373333pt;}
.x78_c00298{left:305.333333pt;}
.x9_c00298{left:307.040000pt;}
.x51_c00298{left:309.706667pt;}
.x66_c00298{left:312.373333pt;}
.x63_c00298{left:314.293333pt;}
.x3b_c00298{left:316.000000pt;}
.xe0_c00298{left:318.666667pt;}
.xd8_c00298{left:320.960000pt;}
.xec_c00298{left:322.293333pt;}
.x1d_c00298{left:324.000000pt;}
.x6e_c00298{left:326.666667pt;}
.x49_c00298{left:328.373333pt;}
.xb1_c00298{left:331.040000pt;}
.x2a_c00298{left:332.000000pt;}
.xe1_c00298{left:333.333333pt;}
.x67_c00298{left:336.000000pt;}
.xa_c00298{left:340.373333pt;}
.x3c_c00298{left:343.040000pt;}
.xe3_c00298{left:344.373333pt;}
.x1e_c00298{left:345.706667pt;}
.x82_c00298{left:347.040000pt;}
.xbe_c00298{left:348.000000pt;}
.xd0_c00298{left:352.000000pt;}
.x6f_c00298{left:355.040000pt;}
.x8a_c00298{left:356.373333pt;}
.x2_c00298{left:357.333333pt;}
.x7c_c00298{left:358.293333pt;}
.x99_c00298{left:359.626667pt;}
.xc5_c00298{left:362.666667pt;}
.xb_c00298{left:364.000000pt;}
.x13_c00298{left:365.333333pt;}
.x52_c00298{left:366.666667pt;}
.xa2_c00298{left:368.000000pt;}
.x35_c00298{left:371.040000pt;}
.x83_c00298{left:372.000000pt;}
.xbf_c00298{left:375.040000pt;}
.x3d_c00298{left:377.706667pt;}
.x70_c00298{left:381.333333pt;}
.x9a_c00298{left:385.333333pt;}
.x2b_c00298{left:386.293333pt;}
.xb2_c00298{left:387.626667pt;}
.xb3_c00298{left:390.666667pt;}
.xc_c00298{left:392.373333pt;}
.xf0_c00298{left:395.040000pt;}
.x53_c00298{left:396.373333pt;}
.x68_c00298{left:397.333333pt;}
.xed_c00298{left:398.293333pt;}
.xcb_c00298{left:399.626667pt;}
.xa3_c00298{left:401.333333pt;}
.xd1_c00298{left:402.666667pt;}
.x2c_c00298{left:404.000000pt;}
.xe4_c00298{left:406.666667pt;}
.x1f_c00298{left:409.706667pt;}
.xb7_c00298{left:411.626667pt;}
.x14_c00298{left:413.706667pt;}
.x3e_c00298{left:416.000000pt;}
.xc0_c00298{left:417.333333pt;}
.xcc_c00298{left:419.040000pt;}
.x5c_c00298{left:420.373333pt;}
.xd2_c00298{left:421.706667pt;}
.x91_c00298{left:422.666667pt;}
.xe5_c00298{left:423.626667pt;}
.x69_c00298{left:427.040000pt;}
.xc6_c00298{left:428.000000pt;}
.x54_c00298{left:430.293333pt;}
.x2d_c00298{left:432.373333pt;}
.x79_c00298{left:433.706667pt;}
.x36_c00298{left:436.000000pt;}
.xee_c00298{left:440.000000pt;}
.x20_c00298{left:441.706667pt;}
.xd9_c00298{left:442.666667pt;}
.xc7_c00298{left:444.000000pt;}
.x84_c00298{left:445.706667pt;}
.xe6_c00298{left:452.000000pt;}
.x15_c00298{left:453.333333pt;}
.xb8_c00298{left:454.666667pt;}
.x6a_c00298{left:456.000000pt;}
.x32_c00298{left:456.960000pt;}
.xc1_c00298{left:458.293333pt;}
.x7d_c00298{left:460.000000pt;}
.x71_c00298{left:461.333333pt;}
.x2e_c00298{left:463.626667pt;}
.x64_c00298{left:464.573333pt;}
.x3f_c00298{left:466.666667pt;}
.xda_c00298{left:468.000000pt;}
.xaa_c00298{left:468.960000pt;}
.x8b_c00298{left:472.000000pt;}
.xb4_c00298{left:473.706667pt;}
.x5d_c00298{left:480.000000pt;}
.xa6_c00298{left:482.666667pt;}
.x9b_c00298{left:484.000000pt;}
.xab_c00298{left:485.333333pt;}
.x2f_c00298{left:486.293333pt;}
.x4a_c00298{left:488.573333pt;}
.xef_c00298{left:489.906667pt;}
.x85_c00298{left:491.040000pt;}
.xb9_c00298{left:496.000000pt;}
.x6b_c00298{left:499.040000pt;}
.x21_c00298{left:500.960000pt;}
.x92_c00298{left:504.373333pt;}
.x30_c00298{left:505.333333pt;}
.xc8_c00298{left:506.666667pt;}
.xdb_c00298{left:507.626667pt;}
.xa4_c00298{left:508.960000pt;}
.x16_c00298{left:510.666667pt;}
.x55_c00298{left:512.373333pt;}
.x7e_c00298{left:513.333333pt;}
.x40_c00298{left:514.666667pt;}
.x33_c00298{left:517.333333pt;}
.x72_c00298{left:519.040000pt;}
.x22_c00298{left:520.000000pt;}
.x4b_c00298{left:524.373333pt;}
.xdc_c00298{left:525.706667pt;}
.xcd_c00298{left:526.666667pt;}
.xc9_c00298{left:528.373333pt;}
.x9c_c00298{left:530.293333pt;}
.x5e_c00298{left:532.000000pt;}
.xd3_c00298{left:534.293333pt;}
.xe9_c00298{left:535.626667pt;}
.x93_c00298{left:537.333333pt;}
.x6c_c00298{left:539.040000pt;}
.x37_c00298{left:540.373333pt;}
.x41_c00298{left:541.333333pt;}
.x56_c00298{left:542.666667pt;}
.x17_c00298{left:544.373333pt;}
.x31_c00298{left:545.706667pt;}
.xdd_c00298{left:550.666667pt;}
.x73_c00298{left:552.373333pt;}
.x23_c00298{left:553.333333pt;}
.x65_c00298{left:557.706667pt;}
.x5f_c00298{left:560.960000pt;}
.x4c_c00298{left:564.373333pt;}
.x38_c00298{left:565.706667pt;}
.xba_c00298{left:568.373333pt;}
.x8c_c00298{left:569.706667pt;}
.x42_c00298{left:572.373333pt;}
.x18_c00298{left:577.333333pt;}
.xd4_c00298{left:579.626667pt;}
.x24_c00298{left:581.706667pt;}
.xc2_c00298{left:582.666667pt;}
.x57_c00298{left:584.000000pt;}
.xde_c00298{left:585.333333pt;}
.x60_c00298{left:586.293333pt;}
.xac_c00298{left:589.333333pt;}
.xce_c00298{left:592.373333pt;}
.xbb_c00298{left:593.333333pt;}
.x86_c00298{left:594.666667pt;}
.xb5_c00298{left:597.706667pt;}
.x43_c00298{left:598.666667pt;}
.xdf_c00298{left:600.000000pt;}
.x25_c00298{left:602.666667pt;}
.xca_c00298{left:603.626667pt;}
.x34_c00298{left:608.960000pt;}
.x4d_c00298{left:610.293333pt;}
.x44_c00298{left:611.626667pt;}
.x26_c00298{left:614.666667pt;}
.x9d_c00298{left:620.373333pt;}
.x8d_c00298{left:621.333333pt;}
.xd5_c00298{left:622.293333pt;}
.xea_c00298{left:624.000000pt;}
.x1_c00298{left:625.333333pt;}
.x19_c00298{left:627.040000pt;}
.xcf_c00298{left:628.373333pt;}
.xd_c00298{left:633.706667pt;}
.x58_c00298{left:634.666667pt;}
.x8e_c00298{left:637.333333pt;}
.xe7_c00298{left:640.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_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_fc7ee8fa66a3c17ce1038f97.woff2')format("woff");}.ff1_c00299{font-family:ff1_c00299;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m96_c00299{transform:matrix(0.320169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320169,0.000000,0.000000,0.250000,0,0);}
.m21_c00299{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.m20_c00299{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_c00299{transform:matrix(0.355828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355828,0.000000,0.000000,0.250000,0,0);}
.m8f_c00299{transform:matrix(0.360084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360084,0.000000,0.000000,0.250000,0,0);}
.m84_c00299{transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);}
.m1e_c00299{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m29_c00299{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m3a_c00299{transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);}
.m9a_c00299{transform:matrix(0.369328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369328,0.000000,0.000000,0.250000,0,0);}
.m7b_c00299{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m8d_c00299{transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);}
.m12_c00299{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m5e_c00299{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m60_c00299{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.me_c00299{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m5d_c00299{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m41_c00299{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m7c_c00299{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m22_c00299{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m1f_c00299{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m15_c00299{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m6a_c00299{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m13_c00299{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m7_c00299{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m9f_c00299{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m8e_c00299{transform:matrix(0.399923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399923,0.000000,0.000000,0.250000,0,0);}
.m76_c00299{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_c00299{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m49_c00299{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m32_c00299{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m71_c00299{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m9d_c00299{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m28_c00299{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m31_c00299{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m87_c00299{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m4e_c00299{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m62_c00299{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m92_c00299{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m8b_c00299{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m7a_c00299{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m88_c00299{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m23_c00299{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m9b_c00299{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m39_c00299{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m11_c00299{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m72_c00299{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m91_c00299{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.m51_c00299{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m2d_c00299{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m3f_c00299{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m4_c00299{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m3d_c00299{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m2c_c00299{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m93_c00299{transform:matrix(0.435529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435529,0.000000,0.000000,0.250000,0,0);}
.m65_c00299{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m6d_c00299{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m18_c00299{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m73_c00299{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m36_c00299{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m52_c00299{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m33_c00299{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mf_c00299{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m34_c00299{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m8c_c00299{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m50_c00299{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m99_c00299{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m8_c00299{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m0_c00299{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m46_c00299{transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);}
.m2_c00299{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m5_c00299{transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);}
.m8a_c00299{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.m4c_c00299{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m2e_c00299{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m4a_c00299{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m5a_c00299{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m89_c00299{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m80_c00299{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m90_c00299{transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);}
.m63_c00299{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m6e_c00299{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m61_c00299{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m70_c00299{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m53_c00299{transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);}
.m16_c00299{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);}
.m78_c00299{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m69_c00299{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m42_c00299{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m26_c00299{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m27_c00299{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m6f_c00299{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m25_c00299{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m57_c00299{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m75_c00299{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m24_c00299{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m54_c00299{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m68_c00299{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m14_c00299{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mc_c00299{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m17_c00299{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m38_c00299{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m56_c00299{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m6b_c00299{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m86_c00299{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m43_c00299{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m66_c00299{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m3b_c00299{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m10_c00299{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m64_c00299{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m2a_c00299{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m55_c00299{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m47_c00299{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m77_c00299{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m5b_c00299{transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);}
.m97_c00299{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m1a_c00299{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m1c_c00299{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m9_c00299{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.md_c00299{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m2f_c00299{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m40_c00299{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m95_c00299{transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);}
.mb_c00299{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m7d_c00299{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m7f_c00299{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m59_c00299{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m74_c00299{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m4f_c00299{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m9e_c00299{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m9c_c00299{transform:matrix(0.582469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582469,0.000000,0.000000,0.250000,0,0);}
.m48_c00299{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m67_c00299{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m94_c00299{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m3_c00299{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_c00299{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.ma_c00299{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m82_c00299{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m1b_c00299{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m5c_c00299{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m6c_c00299{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_c00299{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m4d_c00299{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m30_c00299{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m1d_c00299{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m4b_c00299{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m6_c00299{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m98_c00299{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m3c_c00299{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m19_c00299{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m45_c00299{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m7e_c00299{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m37_c00299{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.m35_c00299{transform:matrix(0.793269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.793269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.793269,0.000000,0.000000,0.250000,0,0);}
.m79_c00299{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m81_c00299{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m58_c00299{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m44_c00299{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m85_c00299{transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);}
.m5f_c00299{transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.004425,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;}
}
.ws2_c00299{word-spacing:-3.387600px;}
.ws3_c00299{word-spacing:0.000000px;}
.ws1_c00299{word-spacing:1.830501px;}
.ws0_c00299{word-spacing:10.582953px;}
.fc0_c00299{color:transparent;}
.fs8_c00299{font-size:3.420000px;}
.fs6_c00299{font-size:6.780000px;}
.fs4_c00299{font-size:18.720000px;}
.fs1_c00299{font-size:20.400000px;}
.fs2_c00299{font-size:25.500000px;}
.fs0_c00299{font-size:28.920000px;}
.fs5_c00299{font-size:32.340000px;}
.fs3_c00299{font-size:35.700000px;}
.fs7_c00299{font-size:39.120000px;}
.y0_c00299{bottom:0.000000px;}
.yba_c00299{bottom:250.905000px;}
.yb9_c00299{bottom:251.745000px;}
.yb8_c00299{bottom:253.905000px;}
.yb2_c00299{bottom:271.245000px;}
.yb4_c00299{bottom:271.470000px;}
.yb7_c00299{bottom:271.905000px;}
.yb3_c00299{bottom:272.745000px;}
.yb6_c00299{bottom:273.405000px;}
.yb5_c00299{bottom:274.905000px;}
.yb1_c00299{bottom:290.745000px;}
.yae_c00299{bottom:290.970000px;}
.yaf_c00299{bottom:292.245000px;}
.yac_c00299{bottom:292.905000px;}
.yb0_c00299{bottom:293.130000px;}
.yad_c00299{bottom:294.405000px;}
.ya8_c00299{bottom:310.680000px;}
.ya9_c00299{bottom:310.905000px;}
.yaa_c00299{bottom:311.745000px;}
.ya7_c00299{bottom:313.905000px;}
.yab_c00299{bottom:314.130000px;}
.ya3_c00299{bottom:330.405000px;}
.ya6_c00299{bottom:331.245000px;}
.ya5_c00299{bottom:331.470000px;}
.ya4_c00299{bottom:333.405000px;}
.ya2_c00299{bottom:349.905000px;}
.y9f_c00299{bottom:350.745000px;}
.ya1_c00299{bottom:351.825000px;}
.ya0_c00299{bottom:352.905000px;}
.y9e_c00299{bottom:370.245000px;}
.y9c_c00299{bottom:371.745000px;}
.y9d_c00299{bottom:372.405000px;}
.y9a_c00299{bottom:372.630000px;}
.y9b_c00299{bottom:373.905000px;}
.y99_c00299{bottom:389.970000px;}
.y98_c00299{bottom:391.245000px;}
.y97_c00299{bottom:393.405000px;}
.y96_c00299{bottom:408.405000px;}
.y93_c00299{bottom:410.745000px;}
.y95_c00299{bottom:411.825000px;}
.y94_c00299{bottom:412.905000px;}
.y90_c00299{bottom:429.180000px;}
.y91_c00299{bottom:430.245000px;}
.y92_c00299{bottom:432.405000px;}
.y8f_c00299{bottom:448.680000px;}
.y8e_c00299{bottom:449.745000px;}
.y8d_c00299{bottom:451.905000px;}
.y8a_c00299{bottom:468.405000px;}
.y8b_c00299{bottom:470.745000px;}
.y8c_c00299{bottom:472.905000px;}
.y89_c00299{bottom:490.905000px;}
.y88_c00299{bottom:491.970000px;}
.y87_c00299{bottom:492.405000px;}
.y86_c00299{bottom:508.245000px;}
.y84_c00299{bottom:509.745000px;}
.y85_c00299{bottom:510.405000px;}
.y82_c00299{bottom:511.905000px;}
.y83_c00299{bottom:512.970000px;}
.y80_c00299{bottom:529.245000px;}
.y81_c00299{bottom:531.405000px;}
.y7f_c00299{bottom:546.405000px;}
.y7c_c00299{bottom:547.905000px;}
.y7d_c00299{bottom:548.745000px;}
.y7b_c00299{bottom:550.905000px;}
.y7e_c00299{bottom:551.130000px;}
.y7a_c00299{bottom:568.245000px;}
.y78_c00299{bottom:570.405000px;}
.y79_c00299{bottom:571.470000px;}
.y75_c00299{bottom:586.905000px;}
.y77_c00299{bottom:587.745000px;}
.y76_c00299{bottom:589.905000px;}
.y74_c00299{bottom:606.405000px;}
.y71_c00299{bottom:607.245000px;}
.y6c_c00299{bottom:607.470000px;}
.y72_c00299{bottom:607.680000px;}
.y73_c00299{bottom:607.920000px;}
.y6e_c00299{bottom:608.325000px;}
.y6d_c00299{bottom:609.405000px;}
.y70_c00299{bottom:609.630000px;}
.y6f_c00299{bottom:610.905000px;}
.y69_c00299{bottom:625.905000px;}
.y6a_c00299{bottom:628.245000px;}
.y66_c00299{bottom:628.905000px;}
.y6b_c00299{bottom:629.130000px;}
.y67_c00299{bottom:629.970000px;}
.y68_c00299{bottom:630.405000px;}
.y63_c00299{bottom:646.245000px;}
.y64_c00299{bottom:647.325000px;}
.y65_c00299{bottom:647.550000px;}
.y60_c00299{bottom:647.745000px;}
.y62_c00299{bottom:648.630000px;}
.y61_c00299{bottom:649.905000px;}
.y5b_c00299{bottom:667.245000px;}
.y5f_c00299{bottom:667.905000px;}
.y5e_c00299{bottom:668.325000px;}
.y5c_c00299{bottom:668.970000px;}
.y5d_c00299{bottom:669.405000px;}
.y57_c00299{bottom:685.905000px;}
.y58_c00299{bottom:686.745000px;}
.y59_c00299{bottom:687.630000px;}
.y5a_c00299{bottom:687.825000px;}
.y56_c00299{bottom:688.905000px;}
.y55_c00299{bottom:708.405000px;}
.y54_c00299{bottom:725.745000px;}
.y53_c00299{bottom:727.905000px;}
.y52_c00299{bottom:728.970000px;}
.y51_c00299{bottom:744.405000px;}
.y4f_c00299{bottom:745.245000px;}
.y50_c00299{bottom:746.745000px;}
.y4e_c00299{bottom:747.405000px;}
.y4d_c00299{bottom:764.745000px;}
.y49_c00299{bottom:765.405000px;}
.y4b_c00299{bottom:766.245000px;}
.y4c_c00299{bottom:766.905000px;}
.y4a_c00299{bottom:768.405000px;}
.y47_c00299{bottom:782.970000px;}
.y48_c00299{bottom:783.405000px;}
.y46_c00299{bottom:785.325000px;}
.y44_c00299{bottom:785.745000px;}
.y45_c00299{bottom:787.905000px;}
.y43_c00299{bottom:803.355000px;}
.y41_c00299{bottom:803.970000px;}
.y3f_c00299{bottom:805.245000px;}
.y42_c00299{bottom:806.130000px;}
.y40_c00299{bottom:807.405000px;}
.y3d_c00299{bottom:824.745000px;}
.y3c_c00299{bottom:826.905000px;}
.y3e_c00299{bottom:827.130000px;}
.y3a_c00299{bottom:844.245000px;}
.y3b_c00299{bottom:845.130000px;}
.y37_c00299{bottom:845.745000px;}
.y39_c00299{bottom:846.405000px;}
.y35_c00299{bottom:846.630000px;}
.y38_c00299{bottom:846.825000px;}
.y36_c00299{bottom:847.905000px;}
.y33_c00299{bottom:863.745000px;}
.y34_c00299{bottom:864.825000px;}
.y32_c00299{bottom:865.245000px;}
.y31_c00299{bottom:865.905000px;}
.y30_c00299{bottom:866.970000px;}
.y2f_c00299{bottom:882.405000px;}
.y2e_c00299{bottom:883.245000px;}
.y2b_c00299{bottom:884.745000px;}
.y2a_c00299{bottom:885.405000px;}
.y2d_c00299{bottom:885.825000px;}
.y29_c00299{bottom:886.470000px;}
.y2c_c00299{bottom:886.905000px;}
.y24_c00299{bottom:901.905000px;}
.y25_c00299{bottom:905.130000px;}
.y27_c00299{bottom:905.325000px;}
.y28_c00299{bottom:905.970000px;}
.y26_c00299{bottom:906.405000px;}
.y22_c00299{bottom:921.405000px;}
.y1f_c00299{bottom:922.470000px;}
.y21_c00299{bottom:923.745000px;}
.y23_c00299{bottom:925.470000px;}
.y20_c00299{bottom:925.905000px;}
.y1e_c00299{bottom:941.745000px;}
.y1d_c00299{bottom:943.245000px;}
.y1a_c00299{bottom:943.905000px;}
.y1b_c00299{bottom:944.130000px;}
.y1c_c00299{bottom:945.405000px;}
.y17_c00299{bottom:962.745000px;}
.y18_c00299{bottom:964.905000px;}
.y19_c00299{bottom:965.130000px;}
.y14_c00299{bottom:981.405000px;}
.y16_c00299{bottom:982.245000px;}
.y15_c00299{bottom:984.405000px;}
.y13_c00299{bottom:1000.905000px;}
.y12_c00299{bottom:1001.745000px;}
.yf_c00299{bottom:1020.405000px;}
.ye_c00299{bottom:1021.245000px;}
.yd_c00299{bottom:1023.405000px;}
.y10_c00299{bottom:1023.630000px;}
.y11_c00299{bottom:1024.470000px;}
.yb_c00299{bottom:1039.905000px;}
.y9_c00299{bottom:1040.745000px;}
.yc_c00299{bottom:1041.825000px;}
.ya_c00299{bottom:1042.905000px;}
.y3_c00299{bottom:1059.405000px;}
.y5_c00299{bottom:1061.745000px;}
.y8_c00299{bottom:1062.405000px;}
.y6_c00299{bottom:1062.630000px;}
.y4_c00299{bottom:1063.470000px;}
.y7_c00299{bottom:1063.905000px;}
.y1_c00299{bottom:1099.905000px;}
.y2_c00299{bottom:1100.550000px;}
.h9_c00299{height:4.206533px;}
.h7_c00299{height:8.339268px;}
.h5_c00299{height:23.025234px;}
.h2_c00299{height:25.091602px;}
.h3_c00299{height:31.364502px;}
.h1_c00299{height:35.571035px;}
.h6_c00299{height:39.777568px;}
.h4_c00299{height:43.910303px;}
.h8_c00299{height:48.116836px;}
.h0_c00299{height:1335.000000px;}
.w0_c00299{width:880.500000px;}
.x0_c00299{left:0.000000px;}
.x1_c00299{left:154.080000px;}
.x3_c00299{left:160.080000px;}
.x4f_c00299{left:167.580000px;}
.x19_c00299{left:169.080000px;}
.xe1_c00299{left:190.500000px;}
.x4_c00299{left:192.000000px;}
.x10_c00299{left:193.080000px;}
.x89_c00299{left:213.420000px;}
.xa6_c00299{left:214.500000px;}
.x97_c00299{left:219.000000px;}
.x11_c00299{left:220.080000px;}
.x50_c00299{left:223.500000px;}
.x5_c00299{left:225.000000px;}
.xbe_c00299{left:226.500000px;}
.x84_c00299{left:228.420000px;}
.xa7_c00299{left:229.500000px;}
.x43_c00299{left:231.420000px;}
.x62_c00299{left:238.500000px;}
.x6f_c00299{left:239.580000px;}
.x12_c00299{left:241.500000px;}
.xb3_c00299{left:243.000000px;}
.x24_c00299{left:246.000000px;}
.xb9_c00299{left:248.580000px;}
.x31_c00299{left:250.500000px;}
.xcf_c00299{left:252.000000px;}
.x63_c00299{left:253.920000px;}
.xae_c00299{left:255.000000px;}
.x5b_c00299{left:256.500000px;}
.x44_c00299{left:258.420000px;}
.xe7_c00299{left:259.500000px;}
.x91_c00299{left:264.000000px;}
.x80_c00299{left:265.500000px;}
.x3b_c00299{left:267.000000px;}
.x51_c00299{left:270.000000px;}
.xca_c00299{left:271.500000px;}
.x25_c00299{left:274.500000px;}
.x85_c00299{left:280.080000px;}
.x70_c00299{left:282.000000px;}
.x3c_c00299{left:283.080000px;}
.x13_c00299{left:285.420000px;}
.x98_c00299{left:291.000000px;}
.x7c_c00299{left:294.420000px;}
.xb4_c00299{left:296.580000px;}
.xba_c00299{left:298.500000px;}
.x6_c00299{left:304.080000px;}
.xe2_c00299{left:305.580000px;}
.x1a_c00299{left:307.080000px;}
.xde_c00299{left:308.580000px;}
.x8a_c00299{left:310.080000px;}
.x32_c00299{left:313.500000px;}
.xda_c00299{left:315.000000px;}
.x92_c00299{left:316.500000px;}
.xd0_c00299{left:318.000000px;}
.xa8_c00299{left:319.500000px;}
.x7d_c00299{left:322.500000px;}
.x14_c00299{left:325.500000px;}
.x64_c00299{left:327.000000px;}
.x33_c00299{left:328.080000px;}
.xd3_c00299{left:331.920000px;}
.x86_c00299{left:333.000000px;}
.x93_c00299{left:334.500000px;}
.xc4_c00299{left:337.500000px;}
.x99_c00299{left:339.000000px;}
.x5c_c00299{left:343.920000px;}
.x65_c00299{left:345.000000px;}
.x26_c00299{left:346.920000px;}
.x15_c00299{left:348.000000px;}
.x45_c00299{left:355.500000px;}
.xe3_c00299{left:358.920000px;}
.x8b_c00299{left:361.080000px;}
.x9d_c00299{left:363.420000px;}
.xc5_c00299{left:364.500000px;}
.x16_c00299{left:367.500000px;}
.xbf_c00299{left:369.000000px;}
.x27_c00299{left:371.580000px;}
.x7_c00299{left:373.500000px;}
.xdf_c00299{left:375.000000px;}
.x1b_c00299{left:376.500000px;}
.xbb_c00299{left:378.000000px;}
.x52_c00299{left:379.500000px;}
.xdb_c00299{left:381.000000px;}
.x6b_c00299{left:384.000000px;}
.xe4_c00299{left:385.500000px;}
.x34_c00299{left:388.920000px;}
.x9e_c00299{left:391.500000px;}
.x53_c00299{left:394.080000px;}
.x8c_c00299{left:396.000000px;}
.x71_c00299{left:397.500000px;}
.x8_c00299{left:399.000000px;}
.x46_c00299{left:400.920000px;}
.xd4_c00299{left:402.000000px;}
.x2_c00299{left:403.500000px;}
.xc6_c00299{left:406.500000px;}
.xa9_c00299{left:408.000000px;}
.x17_c00299{left:411.420000px;}
.x54_c00299{left:412.500000px;}
.x5d_c00299{left:414.420000px;}
.x72_c00299{left:415.920000px;}
.x87_c00299{left:417.000000px;}
.xb5_c00299{left:420.420000px;}
.x35_c00299{left:421.500000px;}
.x28_c00299{left:424.920000px;}
.x3d_c00299{left:426.000000px;}
.xaf_c00299{left:427.500000px;}
.xcb_c00299{left:432.420000px;}
.x9f_c00299{left:437.355000px;}
.x36_c00299{left:439.500000px;}
.xdc_c00299{left:442.920000px;}
.x3e_c00299{left:445.500000px;}
.x9_c00299{left:448.920000px;}
.x9a_c00299{left:450.000000px;}
.x6c_c00299{left:451.500000px;}
.x29_c00299{left:453.000000px;}
.x73_c00299{left:454.500000px;}
.xaa_c00299{left:456.420000px;}
.xd5_c00299{left:457.920000px;}
.xcc_c00299{left:459.000000px;}
.xdd_c00299{left:461.580000px;}
.x5e_c00299{left:463.920000px;}
.x66_c00299{left:465.420000px;}
.x1c_c00299{left:466.500000px;}
.xa0_c00299{left:467.580000px;}
.x47_c00299{left:474.000000px;}
.xbc_c00299{left:475.920000px;}
.x37_c00299{left:478.080000px;}
.x9b_c00299{left:480.000000px;}
.x2a_c00299{left:484.500000px;}
.x1d_c00299{left:486.420000px;}
.xd1_c00299{left:487.500000px;}
.xe8_c00299{left:489.420000px;}
.x67_c00299{left:490.500000px;}
.x3f_c00299{left:493.500000px;}
.xb6_c00299{left:495.000000px;}
.xc7_c00299{left:496.080000px;}
.xc0_c00299{left:499.080000px;}
.x5f_c00299{left:502.920000px;}
.x9c_c00299{left:505.500000px;}
.x38_c00299{left:507.000000px;}
.x7e_c00299{left:508.500000px;}
.x8d_c00299{left:510.420000px;}
.x1e_c00299{left:515.580000px;}
.xd6_c00299{left:517.500000px;}
.xa_c00299{left:518.580000px;}
.x55_c00299{left:520.500000px;}
.x48_c00299{left:522.000000px;}
.x81_c00299{left:524.580000px;}
.x40_c00299{left:526.920000px;}
.xb7_c00299{left:529.500000px;}
.x79_c00299{left:531.000000px;}
.xab_c00299{left:532.920000px;}
.x2b_c00299{left:538.080000px;}
.x39_c00299{left:540.000000px;}
.x74_c00299{left:541.500000px;}
.x4c_c00299{left:544.500000px;}
.x56_c00299{left:550.500000px;}
.xd2_c00299{left:552.420000px;}
.xc8_c00299{left:554.580000px;}
.xa1_c00299{left:558.000000px;}
.xbd_c00299{left:561.000000px;}
.xb0_c00299{left:562.500000px;}
.xe5_c00299{left:564.000000px;}
.xe9_c00299{left:565.920000px;}
.x2c_c00299{left:567.000000px;}
.xcd_c00299{left:568.080000px;}
.xd7_c00299{left:569.580000px;}
.xb_c00299{left:571.500000px;}
.xac_c00299{left:572.580000px;}
.x1f_c00299{left:576.000000px;}
.x6d_c00299{left:577.080000px;}
.x75_c00299{left:579.000000px;}
.xc1_c00299{left:582.000000px;}
.x88_c00299{left:583.920000px;}
.x8e_c00299{left:586.920000px;}
.x2d_c00299{left:588.000000px;}
.x94_c00299{left:589.920000px;}
.x3a_c00299{left:594.000000px;}
.xd8_c00299{left:595.500000px;}
.x49_c00299{left:597.420000px;}
.xc_c00299{left:598.500000px;}
.x57_c00299{left:601.080000px;}
.x7a_c00299{left:604.920000px;}
.x82_c00299{left:606.000000px;}
.xa2_c00299{left:607.500000px;}
.x20_c00299{left:608.580000px;}
.x76_c00299{left:610.080000px;}
.x8f_c00299{left:613.500000px;}
.xb1_c00299{left:615.000000px;}
.x68_c00299{left:618.420000px;}
.x95_c00299{left:619.500000px;}
.x60_c00299{left:621.000000px;}
.xa3_c00299{left:624.000000px;}
.x58_c00299{left:626.580000px;}
.x21_c00299{left:630.420000px;}
.x2e_c00299{left:631.920000px;}
.xc9_c00299{left:634.500000px;}
.xc2_c00299{left:636.000000px;}
.x4d_c00299{left:637.920000px;}
.xe6_c00299{left:639.000000px;}
.x77_c00299{left:640.500000px;}
.x41_c00299{left:643.500000px;}
.x69_c00299{left:645.420000px;}
.x59_c00299{left:648.000000px;}
.xd_c00299{left:650.580000px;}
.xb8_c00299{left:653.580000px;}
.x7f_c00299{left:657.000000px;}
.x22_c00299{left:658.500000px;}
.xad_c00299{left:661.500000px;}
.x42_c00299{left:663.000000px;}
.xa4_c00299{left:664.920000px;}
.xc3_c00299{left:666.420000px;}
.xe_c00299{left:669.420000px;}
.x78_c00299{left:672.000000px;}
.xce_c00299{left:675.000000px;}
.x2f_c00299{left:676.500000px;}
.x6a_c00299{left:678.000000px;}
.x4a_c00299{left:682.500000px;}
.xea_c00299{left:686.580000px;}
.x4e_c00299{left:688.080000px;}
.x83_c00299{left:689.580000px;}
.xb2_c00299{left:691.080000px;}
.x5a_c00299{left:693.420000px;}
.x96_c00299{left:694.920000px;}
.x90_c00299{left:696.420000px;}
.xf_c00299{left:697.500000px;}
.x23_c00299{left:698.580000px;}
.xa5_c00299{left:702.420000px;}
.x6e_c00299{left:703.500000px;}
.xd9_c00299{left:705.000000px;}
.x30_c00299{left:706.500000px;}
.x7b_c00299{left:707.580000px;}
.x61_c00299{left:709.920000px;}
.xe0_c00299{left:715.920000px;}
.x4b_c00299{left:717.000000px;}
.x18_c00299{left:723.000000px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.ls0_c00299{letter-spacing:0.000000pt;}
.ws2_c00299{word-spacing:-3.011200pt;}
.ws3_c00299{word-spacing:0.000000pt;}
.ws1_c00299{word-spacing:1.627112pt;}
.ws0_c00299{word-spacing:9.407069pt;}
.fs8_c00299{font-size:3.040000pt;}
.fs6_c00299{font-size:6.026667pt;}
.fs4_c00299{font-size:16.640000pt;}
.fs1_c00299{font-size:18.133333pt;}
.fs2_c00299{font-size:22.666667pt;}
.fs0_c00299{font-size:25.706667pt;}
.fs5_c00299{font-size:28.746667pt;}
.fs3_c00299{font-size:31.733333pt;}
.fs7_c00299{font-size:34.773333pt;}
.y0_c00299{bottom:0.000000pt;}
.yba_c00299{bottom:223.026667pt;}
.yb9_c00299{bottom:223.773333pt;}
.yb8_c00299{bottom:225.693333pt;}
.yb2_c00299{bottom:241.106667pt;}
.yb4_c00299{bottom:241.306667pt;}
.yb7_c00299{bottom:241.693333pt;}
.yb3_c00299{bottom:242.440000pt;}
.yb6_c00299{bottom:243.026667pt;}
.yb5_c00299{bottom:244.360000pt;}
.yb1_c00299{bottom:258.440000pt;}
.yae_c00299{bottom:258.640000pt;}
.yaf_c00299{bottom:259.773333pt;}
.yac_c00299{bottom:260.360000pt;}
.yb0_c00299{bottom:260.560000pt;}
.yad_c00299{bottom:261.693333pt;}
.ya8_c00299{bottom:276.160000pt;}
.ya9_c00299{bottom:276.360000pt;}
.yaa_c00299{bottom:277.106667pt;}
.ya7_c00299{bottom:279.026667pt;}
.yab_c00299{bottom:279.226667pt;}
.ya3_c00299{bottom:293.693333pt;}
.ya6_c00299{bottom:294.440000pt;}
.ya5_c00299{bottom:294.640000pt;}
.ya4_c00299{bottom:296.360000pt;}
.ya2_c00299{bottom:311.026667pt;}
.y9f_c00299{bottom:311.773333pt;}
.ya1_c00299{bottom:312.733333pt;}
.ya0_c00299{bottom:313.693333pt;}
.y9e_c00299{bottom:329.106667pt;}
.y9c_c00299{bottom:330.440000pt;}
.y9d_c00299{bottom:331.026667pt;}
.y9a_c00299{bottom:331.226667pt;}
.y9b_c00299{bottom:332.360000pt;}
.y99_c00299{bottom:346.640000pt;}
.y98_c00299{bottom:347.773333pt;}
.y97_c00299{bottom:349.693333pt;}
.y96_c00299{bottom:363.026667pt;}
.y93_c00299{bottom:365.106667pt;}
.y95_c00299{bottom:366.066667pt;}
.y94_c00299{bottom:367.026667pt;}
.y90_c00299{bottom:381.493333pt;}
.y91_c00299{bottom:382.440000pt;}
.y92_c00299{bottom:384.360000pt;}
.y8f_c00299{bottom:398.826667pt;}
.y8e_c00299{bottom:399.773333pt;}
.y8d_c00299{bottom:401.693333pt;}
.y8a_c00299{bottom:416.360000pt;}
.y8b_c00299{bottom:418.440000pt;}
.y8c_c00299{bottom:420.360000pt;}
.y89_c00299{bottom:436.360000pt;}
.y88_c00299{bottom:437.306667pt;}
.y87_c00299{bottom:437.693333pt;}
.y86_c00299{bottom:451.773333pt;}
.y84_c00299{bottom:453.106667pt;}
.y85_c00299{bottom:453.693333pt;}
.y82_c00299{bottom:455.026667pt;}
.y83_c00299{bottom:455.973333pt;}
.y80_c00299{bottom:470.440000pt;}
.y81_c00299{bottom:472.360000pt;}
.y7f_c00299{bottom:485.693333pt;}
.y7c_c00299{bottom:487.026667pt;}
.y7d_c00299{bottom:487.773333pt;}
.y7b_c00299{bottom:489.693333pt;}
.y7e_c00299{bottom:489.893333pt;}
.y7a_c00299{bottom:505.106667pt;}
.y78_c00299{bottom:507.026667pt;}
.y79_c00299{bottom:507.973333pt;}
.y75_c00299{bottom:521.693333pt;}
.y77_c00299{bottom:522.440000pt;}
.y76_c00299{bottom:524.360000pt;}
.y74_c00299{bottom:539.026667pt;}
.y71_c00299{bottom:539.773333pt;}
.y6c_c00299{bottom:539.973333pt;}
.y72_c00299{bottom:540.160000pt;}
.y73_c00299{bottom:540.373333pt;}
.y6e_c00299{bottom:540.733333pt;}
.y6d_c00299{bottom:541.693333pt;}
.y70_c00299{bottom:541.893333pt;}
.y6f_c00299{bottom:543.026667pt;}
.y69_c00299{bottom:556.360000pt;}
.y6a_c00299{bottom:558.440000pt;}
.y66_c00299{bottom:559.026667pt;}
.y6b_c00299{bottom:559.226667pt;}
.y67_c00299{bottom:559.973333pt;}
.y68_c00299{bottom:560.360000pt;}
.y63_c00299{bottom:574.440000pt;}
.y64_c00299{bottom:575.400000pt;}
.y65_c00299{bottom:575.600000pt;}
.y60_c00299{bottom:575.773333pt;}
.y62_c00299{bottom:576.560000pt;}
.y61_c00299{bottom:577.693333pt;}
.y5b_c00299{bottom:593.106667pt;}
.y5f_c00299{bottom:593.693333pt;}
.y5e_c00299{bottom:594.066667pt;}
.y5c_c00299{bottom:594.640000pt;}
.y5d_c00299{bottom:595.026667pt;}
.y57_c00299{bottom:609.693333pt;}
.y58_c00299{bottom:610.440000pt;}
.y59_c00299{bottom:611.226667pt;}
.y5a_c00299{bottom:611.400000pt;}
.y56_c00299{bottom:612.360000pt;}
.y55_c00299{bottom:629.693333pt;}
.y54_c00299{bottom:645.106667pt;}
.y53_c00299{bottom:647.026667pt;}
.y52_c00299{bottom:647.973333pt;}
.y51_c00299{bottom:661.693333pt;}
.y4f_c00299{bottom:662.440000pt;}
.y50_c00299{bottom:663.773333pt;}
.y4e_c00299{bottom:664.360000pt;}
.y4d_c00299{bottom:679.773333pt;}
.y49_c00299{bottom:680.360000pt;}
.y4b_c00299{bottom:681.106667pt;}
.y4c_c00299{bottom:681.693333pt;}
.y4a_c00299{bottom:683.026667pt;}
.y47_c00299{bottom:695.973333pt;}
.y48_c00299{bottom:696.360000pt;}
.y46_c00299{bottom:698.066667pt;}
.y44_c00299{bottom:698.440000pt;}
.y45_c00299{bottom:700.360000pt;}
.y43_c00299{bottom:714.093333pt;}
.y41_c00299{bottom:714.640000pt;}
.y3f_c00299{bottom:715.773333pt;}
.y42_c00299{bottom:716.560000pt;}
.y40_c00299{bottom:717.693333pt;}
.y3d_c00299{bottom:733.106667pt;}
.y3c_c00299{bottom:735.026667pt;}
.y3e_c00299{bottom:735.226667pt;}
.y3a_c00299{bottom:750.440000pt;}
.y3b_c00299{bottom:751.226667pt;}
.y37_c00299{bottom:751.773333pt;}
.y39_c00299{bottom:752.360000pt;}
.y35_c00299{bottom:752.560000pt;}
.y38_c00299{bottom:752.733333pt;}
.y36_c00299{bottom:753.693333pt;}
.y33_c00299{bottom:767.773333pt;}
.y34_c00299{bottom:768.733333pt;}
.y32_c00299{bottom:769.106667pt;}
.y31_c00299{bottom:769.693333pt;}
.y30_c00299{bottom:770.640000pt;}
.y2f_c00299{bottom:784.360000pt;}
.y2e_c00299{bottom:785.106667pt;}
.y2b_c00299{bottom:786.440000pt;}
.y2a_c00299{bottom:787.026667pt;}
.y2d_c00299{bottom:787.400000pt;}
.y29_c00299{bottom:787.973333pt;}
.y2c_c00299{bottom:788.360000pt;}
.y24_c00299{bottom:801.693333pt;}
.y25_c00299{bottom:804.560000pt;}
.y27_c00299{bottom:804.733333pt;}
.y28_c00299{bottom:805.306667pt;}
.y26_c00299{bottom:805.693333pt;}
.y22_c00299{bottom:819.026667pt;}
.y1f_c00299{bottom:819.973333pt;}
.y21_c00299{bottom:821.106667pt;}
.y23_c00299{bottom:822.640000pt;}
.y20_c00299{bottom:823.026667pt;}
.y1e_c00299{bottom:837.106667pt;}
.y1d_c00299{bottom:838.440000pt;}
.y1a_c00299{bottom:839.026667pt;}
.y1b_c00299{bottom:839.226667pt;}
.y1c_c00299{bottom:840.360000pt;}
.y17_c00299{bottom:855.773333pt;}
.y18_c00299{bottom:857.693333pt;}
.y19_c00299{bottom:857.893333pt;}
.y14_c00299{bottom:872.360000pt;}
.y16_c00299{bottom:873.106667pt;}
.y15_c00299{bottom:875.026667pt;}
.y13_c00299{bottom:889.693333pt;}
.y12_c00299{bottom:890.440000pt;}
.yf_c00299{bottom:907.026667pt;}
.ye_c00299{bottom:907.773333pt;}
.yd_c00299{bottom:909.693333pt;}
.y10_c00299{bottom:909.893333pt;}
.y11_c00299{bottom:910.640000pt;}
.yb_c00299{bottom:924.360000pt;}
.y9_c00299{bottom:925.106667pt;}
.yc_c00299{bottom:926.066667pt;}
.ya_c00299{bottom:927.026667pt;}
.y3_c00299{bottom:941.693333pt;}
.y5_c00299{bottom:943.773333pt;}
.y8_c00299{bottom:944.360000pt;}
.y6_c00299{bottom:944.560000pt;}
.y4_c00299{bottom:945.306667pt;}
.y7_c00299{bottom:945.693333pt;}
.y1_c00299{bottom:977.693333pt;}
.y2_c00299{bottom:978.266667pt;}
.h9_c00299{height:3.739141pt;}
.h7_c00299{height:7.412682pt;}
.h5_c00299{height:20.466875pt;}
.h2_c00299{height:22.303646pt;}
.h3_c00299{height:27.879557pt;}
.h1_c00299{height:31.618698pt;}
.h6_c00299{height:35.357839pt;}
.h4_c00299{height:39.031380pt;}
.h8_c00299{height:42.770521pt;}
.h0_c00299{height:1186.666667pt;}
.w0_c00299{width:782.666667pt;}
.x0_c00299{left:0.000000pt;}
.x1_c00299{left:136.960000pt;}
.x3_c00299{left:142.293333pt;}
.x4f_c00299{left:148.960000pt;}
.x19_c00299{left:150.293333pt;}
.xe1_c00299{left:169.333333pt;}
.x4_c00299{left:170.666667pt;}
.x10_c00299{left:171.626667pt;}
.x89_c00299{left:189.706667pt;}
.xa6_c00299{left:190.666667pt;}
.x97_c00299{left:194.666667pt;}
.x11_c00299{left:195.626667pt;}
.x50_c00299{left:198.666667pt;}
.x5_c00299{left:200.000000pt;}
.xbe_c00299{left:201.333333pt;}
.x84_c00299{left:203.040000pt;}
.xa7_c00299{left:204.000000pt;}
.x43_c00299{left:205.706667pt;}
.x62_c00299{left:212.000000pt;}
.x6f_c00299{left:212.960000pt;}
.x12_c00299{left:214.666667pt;}
.xb3_c00299{left:216.000000pt;}
.x24_c00299{left:218.666667pt;}
.xb9_c00299{left:220.960000pt;}
.x31_c00299{left:222.666667pt;}
.xcf_c00299{left:224.000000pt;}
.x63_c00299{left:225.706667pt;}
.xae_c00299{left:226.666667pt;}
.x5b_c00299{left:228.000000pt;}
.x44_c00299{left:229.706667pt;}
.xe7_c00299{left:230.666667pt;}
.x91_c00299{left:234.666667pt;}
.x80_c00299{left:236.000000pt;}
.x3b_c00299{left:237.333333pt;}
.x51_c00299{left:240.000000pt;}
.xca_c00299{left:241.333333pt;}
.x25_c00299{left:244.000000pt;}
.x85_c00299{left:248.960000pt;}
.x70_c00299{left:250.666667pt;}
.x3c_c00299{left:251.626667pt;}
.x13_c00299{left:253.706667pt;}
.x98_c00299{left:258.666667pt;}
.x7c_c00299{left:261.706667pt;}
.xb4_c00299{left:263.626667pt;}
.xba_c00299{left:265.333333pt;}
.x6_c00299{left:270.293333pt;}
.xe2_c00299{left:271.626667pt;}
.x1a_c00299{left:272.960000pt;}
.xde_c00299{left:274.293333pt;}
.x8a_c00299{left:275.626667pt;}
.x32_c00299{left:278.666667pt;}
.xda_c00299{left:280.000000pt;}
.x92_c00299{left:281.333333pt;}
.xd0_c00299{left:282.666667pt;}
.xa8_c00299{left:284.000000pt;}
.x7d_c00299{left:286.666667pt;}
.x14_c00299{left:289.333333pt;}
.x64_c00299{left:290.666667pt;}
.x33_c00299{left:291.626667pt;}
.xd3_c00299{left:295.040000pt;}
.x86_c00299{left:296.000000pt;}
.x93_c00299{left:297.333333pt;}
.xc4_c00299{left:300.000000pt;}
.x99_c00299{left:301.333333pt;}
.x5c_c00299{left:305.706667pt;}
.x65_c00299{left:306.666667pt;}
.x26_c00299{left:308.373333pt;}
.x15_c00299{left:309.333333pt;}
.x45_c00299{left:316.000000pt;}
.xe3_c00299{left:319.040000pt;}
.x8b_c00299{left:320.960000pt;}
.x9d_c00299{left:323.040000pt;}
.xc5_c00299{left:324.000000pt;}
.x16_c00299{left:326.666667pt;}
.xbf_c00299{left:328.000000pt;}
.x27_c00299{left:330.293333pt;}
.x7_c00299{left:332.000000pt;}
.xdf_c00299{left:333.333333pt;}
.x1b_c00299{left:334.666667pt;}
.xbb_c00299{left:336.000000pt;}
.x52_c00299{left:337.333333pt;}
.xdb_c00299{left:338.666667pt;}
.x6b_c00299{left:341.333333pt;}
.xe4_c00299{left:342.666667pt;}
.x34_c00299{left:345.706667pt;}
.x9e_c00299{left:348.000000pt;}
.x53_c00299{left:350.293333pt;}
.x8c_c00299{left:352.000000pt;}
.x71_c00299{left:353.333333pt;}
.x8_c00299{left:354.666667pt;}
.x46_c00299{left:356.373333pt;}
.xd4_c00299{left:357.333333pt;}
.x2_c00299{left:358.666667pt;}
.xc6_c00299{left:361.333333pt;}
.xa9_c00299{left:362.666667pt;}
.x17_c00299{left:365.706667pt;}
.x54_c00299{left:366.666667pt;}
.x5d_c00299{left:368.373333pt;}
.x72_c00299{left:369.706667pt;}
.x87_c00299{left:370.666667pt;}
.xb5_c00299{left:373.706667pt;}
.x35_c00299{left:374.666667pt;}
.x28_c00299{left:377.706667pt;}
.x3d_c00299{left:378.666667pt;}
.xaf_c00299{left:380.000000pt;}
.xcb_c00299{left:384.373333pt;}
.x9f_c00299{left:388.760000pt;}
.x36_c00299{left:390.666667pt;}
.xdc_c00299{left:393.706667pt;}
.x3e_c00299{left:396.000000pt;}
.x9_c00299{left:399.040000pt;}
.x9a_c00299{left:400.000000pt;}
.x6c_c00299{left:401.333333pt;}
.x29_c00299{left:402.666667pt;}
.x73_c00299{left:404.000000pt;}
.xaa_c00299{left:405.706667pt;}
.xd5_c00299{left:407.040000pt;}
.xcc_c00299{left:408.000000pt;}
.xdd_c00299{left:410.293333pt;}
.x5e_c00299{left:412.373333pt;}
.x66_c00299{left:413.706667pt;}
.x1c_c00299{left:414.666667pt;}
.xa0_c00299{left:415.626667pt;}
.x47_c00299{left:421.333333pt;}
.xbc_c00299{left:423.040000pt;}
.x37_c00299{left:424.960000pt;}
.x9b_c00299{left:426.666667pt;}
.x2a_c00299{left:430.666667pt;}
.x1d_c00299{left:432.373333pt;}
.xd1_c00299{left:433.333333pt;}
.xe8_c00299{left:435.040000pt;}
.x67_c00299{left:436.000000pt;}
.x3f_c00299{left:438.666667pt;}
.xb6_c00299{left:440.000000pt;}
.xc7_c00299{left:440.960000pt;}
.xc0_c00299{left:443.626667pt;}
.x5f_c00299{left:447.040000pt;}
.x9c_c00299{left:449.333333pt;}
.x38_c00299{left:450.666667pt;}
.x7e_c00299{left:452.000000pt;}
.x8d_c00299{left:453.706667pt;}
.x1e_c00299{left:458.293333pt;}
.xd6_c00299{left:460.000000pt;}
.xa_c00299{left:460.960000pt;}
.x55_c00299{left:462.666667pt;}
.x48_c00299{left:464.000000pt;}
.x81_c00299{left:466.293333pt;}
.x40_c00299{left:468.373333pt;}
.xb7_c00299{left:470.666667pt;}
.x79_c00299{left:472.000000pt;}
.xab_c00299{left:473.706667pt;}
.x2b_c00299{left:478.293333pt;}
.x39_c00299{left:480.000000pt;}
.x74_c00299{left:481.333333pt;}
.x4c_c00299{left:484.000000pt;}
.x56_c00299{left:489.333333pt;}
.xd2_c00299{left:491.040000pt;}
.xc8_c00299{left:492.960000pt;}
.xa1_c00299{left:496.000000pt;}
.xbd_c00299{left:498.666667pt;}
.xb0_c00299{left:500.000000pt;}
.xe5_c00299{left:501.333333pt;}
.xe9_c00299{left:503.040000pt;}
.x2c_c00299{left:504.000000pt;}
.xcd_c00299{left:504.960000pt;}
.xd7_c00299{left:506.293333pt;}
.xb_c00299{left:508.000000pt;}
.xac_c00299{left:508.960000pt;}
.x1f_c00299{left:512.000000pt;}
.x6d_c00299{left:512.960000pt;}
.x75_c00299{left:514.666667pt;}
.xc1_c00299{left:517.333333pt;}
.x88_c00299{left:519.040000pt;}
.x8e_c00299{left:521.706667pt;}
.x2d_c00299{left:522.666667pt;}
.x94_c00299{left:524.373333pt;}
.x3a_c00299{left:528.000000pt;}
.xd8_c00299{left:529.333333pt;}
.x49_c00299{left:531.040000pt;}
.xc_c00299{left:532.000000pt;}
.x57_c00299{left:534.293333pt;}
.x7a_c00299{left:537.706667pt;}
.x82_c00299{left:538.666667pt;}
.xa2_c00299{left:540.000000pt;}
.x20_c00299{left:540.960000pt;}
.x76_c00299{left:542.293333pt;}
.x8f_c00299{left:545.333333pt;}
.xb1_c00299{left:546.666667pt;}
.x68_c00299{left:549.706667pt;}
.x95_c00299{left:550.666667pt;}
.x60_c00299{left:552.000000pt;}
.xa3_c00299{left:554.666667pt;}
.x58_c00299{left:556.960000pt;}
.x21_c00299{left:560.373333pt;}
.x2e_c00299{left:561.706667pt;}
.xc9_c00299{left:564.000000pt;}
.xc2_c00299{left:565.333333pt;}
.x4d_c00299{left:567.040000pt;}
.xe6_c00299{left:568.000000pt;}
.x77_c00299{left:569.333333pt;}
.x41_c00299{left:572.000000pt;}
.x69_c00299{left:573.706667pt;}
.x59_c00299{left:576.000000pt;}
.xd_c00299{left:578.293333pt;}
.xb8_c00299{left:580.960000pt;}
.x7f_c00299{left:584.000000pt;}
.x22_c00299{left:585.333333pt;}
.xad_c00299{left:588.000000pt;}
.x42_c00299{left:589.333333pt;}
.xa4_c00299{left:591.040000pt;}
.xc3_c00299{left:592.373333pt;}
.xe_c00299{left:595.040000pt;}
.x78_c00299{left:597.333333pt;}
.xce_c00299{left:600.000000pt;}
.x2f_c00299{left:601.333333pt;}
.x6a_c00299{left:602.666667pt;}
.x4a_c00299{left:606.666667pt;}
.xea_c00299{left:610.293333pt;}
.x4e_c00299{left:611.626667pt;}
.x83_c00299{left:612.960000pt;}
.xb2_c00299{left:614.293333pt;}
.x5a_c00299{left:616.373333pt;}
.x96_c00299{left:617.706667pt;}
.x90_c00299{left:619.040000pt;}
.xf_c00299{left:620.000000pt;}
.x23_c00299{left:620.960000pt;}
.xa5_c00299{left:624.373333pt;}
.x6e_c00299{left:625.333333pt;}
.xd9_c00299{left:626.666667pt;}
.x30_c00299{left:628.000000pt;}
.x7b_c00299{left:628.960000pt;}
.x61_c00299{left:631.040000pt;}
.xe0_c00299{left:636.373333pt;}
.x4b_c00299{left:637.333333pt;}
.x18_c00299{left:642.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_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_b94f7c5c14143d6bbfac5dae.woff2')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m77_c00300{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.m5f_c00300{transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);}
.m7b_c00300{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.m6d_c00300{transform:matrix(0.362730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362730,0.000000,0.000000,0.250000,0,0);}
.m27_c00300{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m51_c00300{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m7d_c00300{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m71_c00300{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m2a_c00300{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m2e_c00300{transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);}
.m26_c00300{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.ma1_c00300{transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);}
.m16_c00300{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.mc_c00300{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m68_c00300{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m19_c00300{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m94_c00300{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m72_c00300{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m79_c00300{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.ma7_c00300{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m99_c00300{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);}
.m7f_c00300{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.m45_c00300{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.ma4_c00300{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m98_c00300{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m5e_c00300{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m35_c00300{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m81_c00300{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m49_c00300{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.ma3_c00300{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m67_c00300{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.m9a_c00300{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m11_c00300{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m3a_c00300{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m5_c00300{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m42_c00300{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m6e_c00300{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m9e_c00300{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m43_c00300{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m29_c00300{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.m73_c00300{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m74_c00300{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m1f_c00300{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m44_c00300{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m5d_c00300{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m97_c00300{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m52_c00300{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m3c_c00300{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m9b_c00300{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m3f_c00300{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m95_c00300{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m64_c00300{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m90_c00300{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m46_c00300{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m3d_c00300{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m48_c00300{transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);}
.m36_c00300{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m53_c00300{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m8f_c00300{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m1_c00300{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m1c_c00300{transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);}
.m5c_c00300{transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);}
.m57_c00300{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.m8d_c00300{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m63_c00300{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.ma5_c00300{transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);}
.m14_c00300{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m76_c00300{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m62_c00300{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.md_c00300{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m3b_c00300{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m17_c00300{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m1d_c00300{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.me_c00300{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);}
.m5b_c00300{transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);}
.m2d_c00300{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m55_c00300{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m6f_c00300{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m40_c00300{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.ma0_c00300{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m1a_c00300{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m5a_c00300{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_c00300{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m8b_c00300{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m1b_c00300{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m13_c00300{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m6c_c00300{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m2_c00300{transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);}
.m7e_c00300{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.ma2_c00300{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m87_c00300{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m83_c00300{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m4e_c00300{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m41_c00300{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m86_c00300{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m3e_c00300{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m7_c00300{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m8e_c00300{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m61_c00300{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m32_c00300{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m89_c00300{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m9f_c00300{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m4d_c00300{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m70_c00300{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m50_c00300{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m24_c00300{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m85_c00300{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m56_c00300{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m37_c00300{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m8_c00300{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m12_c00300{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m18_c00300{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m66_c00300{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m75_c00300{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.mf_c00300{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m78_c00300{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m8c_c00300{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m59_c00300{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m7c_c00300{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m25_c00300{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m21_c00300{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m33_c00300{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m31_c00300{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m91_c00300{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m54_c00300{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m6a_c00300{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m30_c00300{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m6_c00300{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m4a_c00300{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m28_c00300{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m84_c00300{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m1e_c00300{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);}
.mb_c00300{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m34_c00300{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m22_c00300{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m4c_c00300{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m92_c00300{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);}
.m47_c00300{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.ma_c00300{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m4_c00300{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m39_c00300{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m9_c00300{transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);}
.m10_c00300{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m8a_c00300{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m82_c00300{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m69_c00300{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m20_c00300{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m0_c00300{transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);}
.m4b_c00300{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m9c_c00300{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.m38_c00300{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.m80_c00300{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m9d_c00300{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m23_c00300{transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);}
.m93_c00300{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m4f_c00300{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m60_c00300{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m2f_c00300{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m2c_c00300{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.m7a_c00300{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m58_c00300{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m65_c00300{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m15_c00300{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m6b_c00300{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m3_c00300{transform:matrix(0.882212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.882212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.882212,0.000000,0.000000,0.250000,0,0);}
.m2b_c00300{transform:matrix(0.999199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.999199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.999199,0.000000,0.000000,0.250000,0,0);}
.ma6_c00300{transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);}
.m96_c00300{transform:matrix(1.524038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.524038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.524038,0.000000,0.000000,0.250000,0,0);}
.v2_c00300{vertical-align:-3.420000px;}
.v0_c00300{vertical-align:0.000000px;}
.v1_c00300{vertical-align:12.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;}
}
.ws3_c00300{word-spacing:-9.136560px;}
.ws2_c00300{word-spacing:-6.207360px;}
.ws1_c00300{word-spacing:-3.207360px;}
.ws0_c00300{word-spacing:-0.318469px;}
.ws4_c00300{word-spacing:0.000000px;}
.fc0_c00300{color:transparent;}
.fs7_c00300{font-size:6.780000px;}
.fs0_c00300{font-size:18.720000px;}
.fs6_c00300{font-size:20.400000px;}
.fs2_c00300{font-size:25.500000px;}
.fs1_c00300{font-size:28.920000px;}
.fs4_c00300{font-size:32.340000px;}
.fs3_c00300{font-size:35.700000px;}
.fs5_c00300{font-size:39.120000px;}
.y0_c00300{bottom:0.000000px;}
.y3_c00300{bottom:227.130000px;}
.ye3_c00300{bottom:250.905000px;}
.ye2_c00300{bottom:251.745000px;}
.ye1_c00300{bottom:253.245000px;}
.ydd_c00300{bottom:270.405000px;}
.ye0_c00300{bottom:270.855000px;}
.ydf_c00300{bottom:272.745000px;}
.ydc_c00300{bottom:273.630000px;}
.yde_c00300{bottom:274.470000px;}
.ydb_c00300{bottom:274.905000px;}
.yd6_c00300{bottom:289.905000px;}
.yda_c00300{bottom:290.745000px;}
.yd7_c00300{bottom:291.405000px;}
.yd4_c00300{bottom:292.245000px;}
.yd8_c00300{bottom:293.970000px;}
.yd5_c00300{bottom:294.405000px;}
.yd9_c00300{bottom:294.630000px;}
.yd2_c00300{bottom:310.905000px;}
.yd0_c00300{bottom:311.745000px;}
.yd1_c00300{bottom:312.180000px;}
.yd3_c00300{bottom:313.245000px;}
.ycd_c00300{bottom:313.905000px;}
.ycf_c00300{bottom:314.130000px;}
.yce_c00300{bottom:314.970000px;}
.yc9_c00300{bottom:331.245000px;}
.yc8_c00300{bottom:333.405000px;}
.ycc_c00300{bottom:333.630000px;}
.ycb_c00300{bottom:334.470000px;}
.yca_c00300{bottom:334.905000px;}
.yc6_c00300{bottom:352.245000px;}
.yc3_c00300{bottom:352.905000px;}
.yc5_c00300{bottom:353.130000px;}
.yc4_c00300{bottom:354.405000px;}
.yc7_c00300{bottom:355.470000px;}
.yc2_c00300{bottom:370.470000px;}
.yc1_c00300{bottom:371.745000px;}
.ybc_c00300{bottom:390.405000px;}
.ybd_c00300{bottom:391.245000px;}
.yc0_c00300{bottom:392.130000px;}
.ybb_c00300{bottom:393.405000px;}
.ybe_c00300{bottom:393.630000px;}
.ybf_c00300{bottom:394.470000px;}
.yb9_c00300{bottom:408.405000px;}
.yb8_c00300{bottom:410.745000px;}
.yb7_c00300{bottom:412.905000px;}
.yba_c00300{bottom:413.130000px;}
.yb6_c00300{bottom:413.970000px;}
.yb4_c00300{bottom:430.245000px;}
.yb3_c00300{bottom:431.325000px;}
.yb5_c00300{bottom:431.970000px;}
.yb0_c00300{bottom:432.405000px;}
.yb2_c00300{bottom:432.630000px;}
.yb1_c00300{bottom:433.470000px;}
.yaf_c00300{bottom:451.470000px;}
.yae_c00300{bottom:451.905000px;}
.ya9_c00300{bottom:469.905000px;}
.yac_c00300{bottom:470.745000px;}
.yad_c00300{bottom:471.405000px;}
.yab_c00300{bottom:471.630000px;}
.yaa_c00300{bottom:472.905000px;}
.ya6_c00300{bottom:488.745000px;}
.ya7_c00300{bottom:488.970000px;}
.ya8_c00300{bottom:489.825000px;}
.ya5_c00300{bottom:490.245000px;}
.ya3_c00300{bottom:491.130000px;}
.ya4_c00300{bottom:492.405000px;}
.y9f_c00300{bottom:508.905000px;}
.ya1_c00300{bottom:509.745000px;}
.ya2_c00300{bottom:510.405000px;}
.y9d_c00300{bottom:510.630000px;}
.y9e_c00300{bottom:511.905000px;}
.ya0_c00300{bottom:512.970000px;}
.y99_c00300{bottom:526.905000px;}
.y97_c00300{bottom:528.180000px;}
.y9c_c00300{bottom:528.405000px;}
.y9a_c00300{bottom:529.245000px;}
.y98_c00300{bottom:531.405000px;}
.y9b_c00300{bottom:531.630000px;}
.y94_c00300{bottom:547.905000px;}
.y91_c00300{bottom:548.745000px;}
.y92_c00300{bottom:548.970000px;}
.y96_c00300{bottom:549.630000px;}
.y95_c00300{bottom:550.050000px;}
.y90_c00300{bottom:550.905000px;}
.y93_c00300{bottom:552.405000px;}
.y8f_c00300{bottom:566.970000px;}
.y8e_c00300{bottom:568.245000px;}
.y8a_c00300{bottom:586.905000px;}
.y8d_c00300{bottom:589.245000px;}
.y8b_c00300{bottom:590.130000px;}
.y8c_c00300{bottom:591.405000px;}
.y82_c00300{bottom:606.405000px;}
.y88_c00300{bottom:606.825000px;}
.y87_c00300{bottom:607.680000px;}
.y86_c00300{bottom:608.745000px;}
.y89_c00300{bottom:609.405000px;}
.y83_c00300{bottom:609.630000px;}
.y81_c00300{bottom:610.470000px;}
.y84_c00300{bottom:610.905000px;}
.y85_c00300{bottom:611.970000px;}
.y7e_c00300{bottom:625.905000px;}
.y7b_c00300{bottom:626.970000px;}
.y80_c00300{bottom:628.245000px;}
.y7d_c00300{bottom:629.130000px;}
.y7c_c00300{bottom:630.405000px;}
.y7f_c00300{bottom:631.470000px;}
.y79_c00300{bottom:645.825000px;}
.y75_c00300{bottom:646.905000px;}
.y77_c00300{bottom:647.745000px;}
.y7a_c00300{bottom:649.050000px;}
.y76_c00300{bottom:649.905000px;}
.y78_c00300{bottom:650.970000px;}
.y72_c00300{bottom:666.405000px;}
.y71_c00300{bottom:667.245000px;}
.y74_c00300{bottom:668.130000px;}
.y70_c00300{bottom:669.405000px;}
.y73_c00300{bottom:669.630000px;}
.y6b_c00300{bottom:685.905000px;}
.y6d_c00300{bottom:688.245000px;}
.y6c_c00300{bottom:688.905000px;}
.y6f_c00300{bottom:689.130000px;}
.y6e_c00300{bottom:690.405000px;}
.y6a_c00300{bottom:705.405000px;}
.y67_c00300{bottom:706.905000px;}
.y69_c00300{bottom:707.325000px;}
.y65_c00300{bottom:707.745000px;}
.y68_c00300{bottom:708.405000px;}
.y63_c00300{bottom:708.630000px;}
.y66_c00300{bottom:709.470000px;}
.y64_c00300{bottom:709.905000px;}
.y61_c00300{bottom:724.905000px;}
.y62_c00300{bottom:725.745000px;}
.y5f_c00300{bottom:727.245000px;}
.y60_c00300{bottom:728.130000px;}
.y5e_c00300{bottom:729.405000px;}
.y5c_c00300{bottom:745.905000px;}
.y59_c00300{bottom:746.745000px;}
.y5a_c00300{bottom:748.470000px;}
.y5b_c00300{bottom:748.905000px;}
.y5d_c00300{bottom:749.970000px;}
.y58_c00300{bottom:764.970000px;}
.y56_c00300{bottom:766.245000px;}
.y57_c00300{bottom:767.130000px;}
.y55_c00300{bottom:768.405000px;}
.y54_c00300{bottom:785.325000px;}
.y52_c00300{bottom:785.745000px;}
.y53_c00300{bottom:785.970000px;}
.y50_c00300{bottom:787.905000px;}
.y51_c00300{bottom:788.970000px;}
.y4e_c00300{bottom:804.405000px;}
.y4f_c00300{bottom:805.245000px;}
.y4d_c00300{bottom:805.470000px;}
.y4b_c00300{bottom:807.405000px;}
.y4c_c00300{bottom:807.630000px;}
.y49_c00300{bottom:823.905000px;}
.y47_c00300{bottom:824.745000px;}
.y46_c00300{bottom:824.970000px;}
.y4a_c00300{bottom:825.630000px;}
.y44_c00300{bottom:826.905000px;}
.y45_c00300{bottom:827.130000px;}
.y48_c00300{bottom:827.970000px;}
.y3f_c00300{bottom:843.405000px;}
.y40_c00300{bottom:845.745000px;}
.y43_c00300{bottom:846.405000px;}
.y42_c00300{bottom:847.470000px;}
.y41_c00300{bottom:847.905000px;}
.y3d_c00300{bottom:865.245000px;}
.y3e_c00300{bottom:865.905000px;}
.y3c_c00300{bottom:867.405000px;}
.y3b_c00300{bottom:884.325000px;}
.y39_c00300{bottom:884.745000px;}
.y36_c00300{bottom:885.630000px;}
.y38_c00300{bottom:886.470000px;}
.y37_c00300{bottom:886.905000px;}
.y3a_c00300{bottom:887.970000px;}
.y34_c00300{bottom:901.905000px;}
.y35_c00300{bottom:902.970000px;}
.y33_c00300{bottom:904.245000px;}
.y32_c00300{bottom:905.130000px;}
.y31_c00300{bottom:906.405000px;}
.y30_c00300{bottom:907.470000px;}
.y2f_c00300{bottom:923.550000px;}
.y2e_c00300{bottom:924.630000px;}
.y2c_c00300{bottom:940.905000px;}
.y2a_c00300{bottom:943.245000px;}
.y2d_c00300{bottom:943.680000px;}
.y29_c00300{bottom:944.130000px;}
.y2b_c00300{bottom:945.405000px;}
.y27_c00300{bottom:945.630000px;}
.y28_c00300{bottom:946.470000px;}
.y26_c00300{bottom:960.825000px;}
.y25_c00300{bottom:961.905000px;}
.y24_c00300{bottom:963.825000px;}
.y23_c00300{bottom:964.905000px;}
.y22_c00300{bottom:981.405000px;}
.y1d_c00300{bottom:982.245000px;}
.y1b_c00300{bottom:982.470000px;}
.y1a_c00300{bottom:982.905000px;}
.y20_c00300{bottom:983.745000px;}
.y1c_c00300{bottom:984.405000px;}
.y21_c00300{bottom:984.630000px;}
.y1f_c00300{bottom:985.470000px;}
.y1e_c00300{bottom:985.905000px;}
.y17_c00300{bottom:1000.905000px;}
.y15_c00300{bottom:1003.245000px;}
.y16_c00300{bottom:1003.905000px;}
.y19_c00300{bottom:1004.130000px;}
.y14_c00300{bottom:1004.970000px;}
.y18_c00300{bottom:1005.405000px;}
.y13_c00300{bottom:1020.405000px;}
.y12_c00300{bottom:1021.470000px;}
.y11_c00300{bottom:1022.325000px;}
.yf_c00300{bottom:1023.405000px;}
.y10_c00300{bottom:1024.905000px;}
.yd_c00300{bottom:1041.405000px;}
.yb_c00300{bottom:1042.245000px;}
.yc_c00300{bottom:1044.405000px;}
.ye_c00300{bottom:1044.630000px;}
.y8_c00300{bottom:1060.905000px;}
.y6_c00300{bottom:1061.745000px;}
.ya_c00300{bottom:1061.970000px;}
.y9_c00300{bottom:1063.470000px;}
.y7_c00300{bottom:1063.905000px;}
.y4_c00300{bottom:1064.130000px;}
.y5_c00300{bottom:1064.970000px;}
.y2_c00300{bottom:1099.905000px;}
.y1_c00300{bottom:1103.130000px;}
.h9_c00300{height:8.339268px;}
.h1_c00300{height:23.025234px;}
.h7_c00300{height:25.091602px;}
.h3_c00300{height:31.364502px;}
.h2_c00300{height:35.571035px;}
.h5_c00300{height:39.777568px;}
.h4_c00300{height:43.910303px;}
.h8_c00300{height:47.571035px;}
.h6_c00300{height:48.116836px;}
.h0_c00300{height:1335.000000px;}
.w0_c00300{width:880.500000px;}
.x0_c00300{left:0.000000px;}
.x3a_c00300{left:151.500000px;}
.x4_c00300{left:152.580000px;}
.x70_c00300{left:166.080000px;}
.x21_c00300{left:167.580000px;}
.x94_c00300{left:189.000000px;}
.x5_c00300{left:190.500000px;}
.x13_c00300{left:192.000000px;}
.x78_c00300{left:207.420000px;}
.x54_c00300{left:210.420000px;}
.xe5_c00300{left:216.000000px;}
.xcd_c00300{left:217.500000px;}
.xb1_c00300{left:219.420000px;}
.xb6_c00300{left:220.920000px;}
.x6_c00300{left:222.420000px;}
.x2b_c00300{left:223.500000px;}
.x22_c00300{left:225.420000px;}
.x3b_c00300{left:226.920000px;}
.xc5_c00300{left:229.500000px;}
.x8e_c00300{left:231.420000px;}
.x79_c00300{left:232.500000px;}
.x66_c00300{left:234.000000px;}
.x55_c00300{left:237.000000px;}
.xe0_c00300{left:238.080000px;}
.xd0_c00300{left:240.000000px;}
.xa5_c00300{left:241.500000px;}
.xca_c00300{left:243.420000px;}
.x86_c00300{left:253.080000px;}
.xbe_c00300{left:256.080000px;}
.xac_c00300{left:258.000000px;}
.x2c_c00300{left:259.920000px;}
.xe6_c00300{left:261.000000px;}
.x4e_c00300{left:262.500000px;}
.xd5_c00300{left:265.500000px;}
.x14_c00300{left:266.580000px;}
.x91_c00300{left:269.580000px;}
.x7_c00300{left:271.080000px;}
.xb7_c00300{left:274.080000px;}
.x23_c00300{left:275.580000px;}
.xa6_c00300{left:277.500000px;}
.x5f_c00300{left:278.580000px;}
.x67_c00300{left:280.920000px;}
.x2d_c00300{left:285.000000px;}
.x8_c00300{left:288.420000px;}
.xd9_c00300{left:289.500000px;}
.x98_c00300{left:291.420000px;}
.xb8_c00300{left:292.500000px;}
.x24_c00300{left:297.420000px;}
.x60_c00300{left:298.920000px;}
.x87_c00300{left:300.000000px;}
.x7a_c00300{left:303.000000px;}
.x68_c00300{left:306.000000px;}
.x56_c00300{left:309.000000px;}
.xb2_c00300{left:310.500000px;}
.x7f_c00300{left:312.000000px;}
.x45_c00300{left:313.080000px;}
.x4f_c00300{left:314.580000px;}
.x9_c00300{left:316.500000px;}
.x99_c00300{left:318.000000px;}
.xce_c00300{left:319.920000px;}
.x15_c00300{left:325.500000px;}
.x61_c00300{left:327.000000px;}
.xe1_c00300{left:330.000000px;}
.x46_c00300{left:331.500000px;}
.xb9_c00300{left:333.420000px;}
.x71_c00300{left:334.920000px;}
.xd1_c00300{left:339.000000px;}
.x16_c00300{left:340.500000px;}
.x9f_c00300{left:342.420000px;}
.x88_c00300{left:343.920000px;}
.x3c_c00300{left:346.920000px;}
.xd4_c00300{left:349.920000px;}
.x69_c00300{left:351.000000px;}
.xcb_c00300{left:354.420000px;}
.x57_c00300{left:355.500000px;}
.x47_c00300{left:357.000000px;}
.x2e_c00300{left:358.080000px;}
.xa_c00300{left:360.000000px;}
.x72_c00300{left:361.500000px;}
.x9a_c00300{left:364.500000px;}
.x8f_c00300{left:365.580000px;}
.xa7_c00300{left:367.080000px;}
.xa0_c00300{left:369.000000px;}
.xcf_c00300{left:370.500000px;}
.x17_c00300{left:373.080000px;}
.xad_c00300{left:374.580000px;}
.x3d_c00300{left:376.500000px;}
.xe7_c00300{left:378.000000px;}
.xd7_c00300{left:381.000000px;}
.x89_c00300{left:387.000000px;}
.xda_c00300{left:393.000000px;}
.x62_c00300{left:399.000000px;}
.x48_c00300{left:400.500000px;}
.x80_c00300{left:401.580000px;}
.x1_c00300{left:403.500000px;}
.x18_c00300{left:404.580000px;}
.x73_c00300{left:408.000000px;}
.xae_c00300{left:410.580000px;}
.xc7_c00300{left:412.920000px;}
.xa1_c00300{left:414.000000px;}
.x2f_c00300{left:415.920000px;}
.x50_c00300{left:418.500000px;}
.xd6_c00300{left:420.000000px;}
.x6a_c00300{left:421.920000px;}
.x74_c00300{left:423.420000px;}
.x3e_c00300{left:424.500000px;}
.xb3_c00300{left:426.000000px;}
.x58_c00300{left:429.000000px;}
.xbf_c00300{left:430.500000px;}
.xb_c00300{left:433.500000px;}
.x19_c00300{left:436.500000px;}
.xb4_c00300{left:444.420000px;}
.xc0_c00300{left:445.500000px;}
.x25_c00300{left:448.920000px;}
.x81_c00300{left:450.000000px;}
.xc_c00300{left:451.500000px;}
.xba_c00300{left:453.420000px;}
.x9b_c00300{left:456.420000px;}
.x63_c00300{left:457.920000px;}
.x30_c00300{left:459.420000px;}
.x6b_c00300{left:465.000000px;}
.x1a_c00300{left:469.080000px;}
.xe8_c00300{left:470.580000px;}
.x49_c00300{left:472.080000px;}
.x7b_c00300{left:475.920000px;}
.x92_c00300{left:478.920000px;}
.xbb_c00300{left:480.000000px;}
.xd_c00300{left:481.500000px;}
.xa8_c00300{left:483.000000px;}
.xdb_c00300{left:484.080000px;}
.x59_c00300{left:486.000000px;}
.xd2_c00300{left:487.500000px;}
.x95_c00300{left:489.420000px;}
.x9c_c00300{left:490.500000px;}
.xaf_c00300{left:491.580000px;}
.x75_c00300{left:493.920000px;}
.x1b_c00300{left:496.080000px;}
.x3f_c00300{left:500.580000px;}
.xe9_c00300{left:504.000000px;}
.x4a_c00300{left:505.500000px;}
.xdc_c00300{left:509.580000px;}
.x8a_c00300{left:511.920000px;}
.xa2_c00300{left:513.000000px;}
.x93_c00300{left:514.080000px;}
.x1c_c00300{left:516.000000px;}
.x26_c00300{left:517.920000px;}
.xc8_c00300{left:520.500000px;}
.xe2_c00300{left:522.000000px;}
.x82_c00300{left:523.500000px;}
.x96_c00300{left:524.580000px;}
.x31_c00300{left:526.500000px;}
.xcc_c00300{left:529.920000px;}
.xa3_c00300{left:531.420000px;}
.x64_c00300{left:532.500000px;}
.x1e_c00300{left:534.000000px;}
.x37_c00300{left:535.080000px;}
.x40_c00300{left:537.000000px;}
.x8b_c00300{left:538.500000px;}
.xa9_c00300{left:541.500000px;}
.xe3_c00300{left:542.775000px;}
.x32_c00300{left:544.500000px;}
.x97_c00300{left:546.000000px;}
.xc1_c00300{left:547.500000px;}
.x65_c00300{left:550.920000px;}
.xe_c00300{left:555.000000px;}
.x1d_c00300{left:558.420000px;}
.x51_c00300{left:559.920000px;}
.x7c_c00300{left:561.000000px;}
.x27_c00300{left:562.500000px;}
.x9d_c00300{left:564.000000px;}
.x5a_c00300{left:566.580000px;}
.x90_c00300{left:568.500000px;}
.xf_c00300{left:571.080000px;}
.x38_c00300{left:572.580000px;}
.x33_c00300{left:576.000000px;}
.x83_c00300{left:580.920000px;}
.x6c_c00300{left:582.420000px;}
.x8c_c00300{left:583.500000px;}
.x76_c00300{left:584.580000px;}
.x52_c00300{left:586.080000px;}
.xea_c00300{left:587.580000px;}
.x1f_c00300{left:589.920000px;}
.x5b_c00300{left:592.500000px;}
.xbc_c00300{left:596.580000px;}
.x10_c00300{left:604.080000px;}
.x34_c00300{left:607.080000px;}
.x84_c00300{left:610.500000px;}
.x41_c00300{left:612.000000px;}
.x5c_c00300{left:615.000000px;}
.xc2_c00300{left:616.500000px;}
.x4b_c00300{left:618.420000px;}
.xdd_c00300{left:621.000000px;}
.xb0_c00300{left:624.420000px;}
.x77_c00300{left:625.920000px;}
.x39_c00300{left:627.000000px;}
.x42_c00300{left:630.000000px;}
.xaa_c00300{left:631.500000px;}
.x7d_c00300{left:633.000000px;}
.x11_c00300{left:634.080000px;}
.xc6_c00300{left:636.420000px;}
.x28_c00300{left:639.420000px;}
.xd8_c00300{left:640.500000px;}
.x9e_c00300{left:642.000000px;}
.x6f_c00300{left:646.080000px;}
.xc3_c00300{left:647.580000px;}
.xc9_c00300{left:649.920000px;}
.x6d_c00300{left:651.000000px;}
.x35_c00300{left:652.500000px;}
.x4c_c00300{left:654.420000px;}
.x5d_c00300{left:658.920000px;}
.xde_c00300{left:661.500000px;}
.xa4_c00300{left:663.420000px;}
.x12_c00300{left:667.500000px;}
.x6e_c00300{left:668.580000px;}
.xb5_c00300{left:670.920000px;}
.x43_c00300{left:672.420000px;}
.x4d_c00300{left:673.500000px;}
.x85_c00300{left:675.000000px;}
.x7e_c00300{left:678.000000px;}
.x29_c00300{left:679.080000px;}
.x20_c00300{left:686.580000px;}
.xd3_c00300{left:688.500000px;}
.x8d_c00300{left:690.000000px;}
.xe4_c00300{left:691.500000px;}
.x36_c00300{left:694.920000px;}
.x53_c00300{left:699.000000px;}
.xbd_c00300{left:700.500000px;}
.x5e_c00300{left:702.000000px;}
.xab_c00300{left:703.080000px;}
.x2_c00300{left:704.580000px;}
.xdf_c00300{left:706.920000px;}
.x44_c00300{left:712.920000px;}
.x2a_c00300{left:715.500000px;}
.xc4_c00300{left:717.000000px;}
.x3_c00300{left:718.920000px;}
.xeb_c00300{left:723.000000px;}
@media print{
.v2_c00300{vertical-align:-3.040000pt;}
.v0_c00300{vertical-align:0.000000pt;}
.v1_c00300{vertical-align:10.666667pt;}
.ls0_c00300{letter-spacing:0.000000pt;}
.ws3_c00300{word-spacing:-8.121387pt;}
.ws2_c00300{word-spacing:-5.517653pt;}
.ws1_c00300{word-spacing:-2.850987pt;}
.ws0_c00300{word-spacing:-0.283084pt;}
.ws4_c00300{word-spacing:0.000000pt;}
.fs7_c00300{font-size:6.026667pt;}
.fs0_c00300{font-size:16.640000pt;}
.fs6_c00300{font-size:18.133333pt;}
.fs2_c00300{font-size:22.666667pt;}
.fs1_c00300{font-size:25.706667pt;}
.fs4_c00300{font-size:28.746667pt;}
.fs3_c00300{font-size:31.733333pt;}
.fs5_c00300{font-size:34.773333pt;}
.y0_c00300{bottom:0.000000pt;}
.y3_c00300{bottom:201.893333pt;}
.ye3_c00300{bottom:223.026667pt;}
.ye2_c00300{bottom:223.773333pt;}
.ye1_c00300{bottom:225.106667pt;}
.ydd_c00300{bottom:240.360000pt;}
.ye0_c00300{bottom:240.760000pt;}
.ydf_c00300{bottom:242.440000pt;}
.ydc_c00300{bottom:243.226667pt;}
.yde_c00300{bottom:243.973333pt;}
.ydb_c00300{bottom:244.360000pt;}
.yd6_c00300{bottom:257.693333pt;}
.yda_c00300{bottom:258.440000pt;}
.yd7_c00300{bottom:259.026667pt;}
.yd4_c00300{bottom:259.773333pt;}
.yd8_c00300{bottom:261.306667pt;}
.yd5_c00300{bottom:261.693333pt;}
.yd9_c00300{bottom:261.893333pt;}
.yd2_c00300{bottom:276.360000pt;}
.yd0_c00300{bottom:277.106667pt;}
.yd1_c00300{bottom:277.493333pt;}
.yd3_c00300{bottom:278.440000pt;}
.ycd_c00300{bottom:279.026667pt;}
.ycf_c00300{bottom:279.226667pt;}
.yce_c00300{bottom:279.973333pt;}
.yc9_c00300{bottom:294.440000pt;}
.yc8_c00300{bottom:296.360000pt;}
.ycc_c00300{bottom:296.560000pt;}
.ycb_c00300{bottom:297.306667pt;}
.yca_c00300{bottom:297.693333pt;}
.yc6_c00300{bottom:313.106667pt;}
.yc3_c00300{bottom:313.693333pt;}
.yc5_c00300{bottom:313.893333pt;}
.yc4_c00300{bottom:315.026667pt;}
.yc7_c00300{bottom:315.973333pt;}
.yc2_c00300{bottom:329.306667pt;}
.yc1_c00300{bottom:330.440000pt;}
.ybc_c00300{bottom:347.026667pt;}
.ybd_c00300{bottom:347.773333pt;}
.yc0_c00300{bottom:348.560000pt;}
.ybb_c00300{bottom:349.693333pt;}
.ybe_c00300{bottom:349.893333pt;}
.ybf_c00300{bottom:350.640000pt;}
.yb9_c00300{bottom:363.026667pt;}
.yb8_c00300{bottom:365.106667pt;}
.yb7_c00300{bottom:367.026667pt;}
.yba_c00300{bottom:367.226667pt;}
.yb6_c00300{bottom:367.973333pt;}
.yb4_c00300{bottom:382.440000pt;}
.yb3_c00300{bottom:383.400000pt;}
.yb5_c00300{bottom:383.973333pt;}
.yb0_c00300{bottom:384.360000pt;}
.yb2_c00300{bottom:384.560000pt;}
.yb1_c00300{bottom:385.306667pt;}
.yaf_c00300{bottom:401.306667pt;}
.yae_c00300{bottom:401.693333pt;}
.ya9_c00300{bottom:417.693333pt;}
.yac_c00300{bottom:418.440000pt;}
.yad_c00300{bottom:419.026667pt;}
.yab_c00300{bottom:419.226667pt;}
.yaa_c00300{bottom:420.360000pt;}
.ya6_c00300{bottom:434.440000pt;}
.ya7_c00300{bottom:434.640000pt;}
.ya8_c00300{bottom:435.400000pt;}
.ya5_c00300{bottom:435.773333pt;}
.ya3_c00300{bottom:436.560000pt;}
.ya4_c00300{bottom:437.693333pt;}
.y9f_c00300{bottom:452.360000pt;}
.ya1_c00300{bottom:453.106667pt;}
.ya2_c00300{bottom:453.693333pt;}
.y9d_c00300{bottom:453.893333pt;}
.y9e_c00300{bottom:455.026667pt;}
.ya0_c00300{bottom:455.973333pt;}
.y99_c00300{bottom:468.360000pt;}
.y97_c00300{bottom:469.493333pt;}
.y9c_c00300{bottom:469.693333pt;}
.y9a_c00300{bottom:470.440000pt;}
.y98_c00300{bottom:472.360000pt;}
.y9b_c00300{bottom:472.560000pt;}
.y94_c00300{bottom:487.026667pt;}
.y91_c00300{bottom:487.773333pt;}
.y92_c00300{bottom:487.973333pt;}
.y96_c00300{bottom:488.560000pt;}
.y95_c00300{bottom:488.933333pt;}
.y90_c00300{bottom:489.693333pt;}
.y93_c00300{bottom:491.026667pt;}
.y8f_c00300{bottom:503.973333pt;}
.y8e_c00300{bottom:505.106667pt;}
.y8a_c00300{bottom:521.693333pt;}
.y8d_c00300{bottom:523.773333pt;}
.y8b_c00300{bottom:524.560000pt;}
.y8c_c00300{bottom:525.693333pt;}
.y82_c00300{bottom:539.026667pt;}
.y88_c00300{bottom:539.400000pt;}
.y87_c00300{bottom:540.160000pt;}
.y86_c00300{bottom:541.106667pt;}
.y89_c00300{bottom:541.693333pt;}
.y83_c00300{bottom:541.893333pt;}
.y81_c00300{bottom:542.640000pt;}
.y84_c00300{bottom:543.026667pt;}
.y85_c00300{bottom:543.973333pt;}
.y7e_c00300{bottom:556.360000pt;}
.y7b_c00300{bottom:557.306667pt;}
.y80_c00300{bottom:558.440000pt;}
.y7d_c00300{bottom:559.226667pt;}
.y7c_c00300{bottom:560.360000pt;}
.y7f_c00300{bottom:561.306667pt;}
.y79_c00300{bottom:574.066667pt;}
.y75_c00300{bottom:575.026667pt;}
.y77_c00300{bottom:575.773333pt;}
.y7a_c00300{bottom:576.933333pt;}
.y76_c00300{bottom:577.693333pt;}
.y78_c00300{bottom:578.640000pt;}
.y72_c00300{bottom:592.360000pt;}
.y71_c00300{bottom:593.106667pt;}
.y74_c00300{bottom:593.893333pt;}
.y70_c00300{bottom:595.026667pt;}
.y73_c00300{bottom:595.226667pt;}
.y6b_c00300{bottom:609.693333pt;}
.y6d_c00300{bottom:611.773333pt;}
.y6c_c00300{bottom:612.360000pt;}
.y6f_c00300{bottom:612.560000pt;}
.y6e_c00300{bottom:613.693333pt;}
.y6a_c00300{bottom:627.026667pt;}
.y67_c00300{bottom:628.360000pt;}
.y69_c00300{bottom:628.733333pt;}
.y65_c00300{bottom:629.106667pt;}
.y68_c00300{bottom:629.693333pt;}
.y63_c00300{bottom:629.893333pt;}
.y66_c00300{bottom:630.640000pt;}
.y64_c00300{bottom:631.026667pt;}
.y61_c00300{bottom:644.360000pt;}
.y62_c00300{bottom:645.106667pt;}
.y5f_c00300{bottom:646.440000pt;}
.y60_c00300{bottom:647.226667pt;}
.y5e_c00300{bottom:648.360000pt;}
.y5c_c00300{bottom:663.026667pt;}
.y59_c00300{bottom:663.773333pt;}
.y5a_c00300{bottom:665.306667pt;}
.y5b_c00300{bottom:665.693333pt;}
.y5d_c00300{bottom:666.640000pt;}
.y58_c00300{bottom:679.973333pt;}
.y56_c00300{bottom:681.106667pt;}
.y57_c00300{bottom:681.893333pt;}
.y55_c00300{bottom:683.026667pt;}
.y54_c00300{bottom:698.066667pt;}
.y52_c00300{bottom:698.440000pt;}
.y53_c00300{bottom:698.640000pt;}
.y50_c00300{bottom:700.360000pt;}
.y51_c00300{bottom:701.306667pt;}
.y4e_c00300{bottom:715.026667pt;}
.y4f_c00300{bottom:715.773333pt;}
.y4d_c00300{bottom:715.973333pt;}
.y4b_c00300{bottom:717.693333pt;}
.y4c_c00300{bottom:717.893333pt;}
.y49_c00300{bottom:732.360000pt;}
.y47_c00300{bottom:733.106667pt;}
.y46_c00300{bottom:733.306667pt;}
.y4a_c00300{bottom:733.893333pt;}
.y44_c00300{bottom:735.026667pt;}
.y45_c00300{bottom:735.226667pt;}
.y48_c00300{bottom:735.973333pt;}
.y3f_c00300{bottom:749.693333pt;}
.y40_c00300{bottom:751.773333pt;}
.y43_c00300{bottom:752.360000pt;}
.y42_c00300{bottom:753.306667pt;}
.y41_c00300{bottom:753.693333pt;}
.y3d_c00300{bottom:769.106667pt;}
.y3e_c00300{bottom:769.693333pt;}
.y3c_c00300{bottom:771.026667pt;}
.y3b_c00300{bottom:786.066667pt;}
.y39_c00300{bottom:786.440000pt;}
.y36_c00300{bottom:787.226667pt;}
.y38_c00300{bottom:787.973333pt;}
.y37_c00300{bottom:788.360000pt;}
.y3a_c00300{bottom:789.306667pt;}
.y34_c00300{bottom:801.693333pt;}
.y35_c00300{bottom:802.640000pt;}
.y33_c00300{bottom:803.773333pt;}
.y32_c00300{bottom:804.560000pt;}
.y31_c00300{bottom:805.693333pt;}
.y30_c00300{bottom:806.640000pt;}
.y2f_c00300{bottom:820.933333pt;}
.y2e_c00300{bottom:821.893333pt;}
.y2c_c00300{bottom:836.360000pt;}
.y2a_c00300{bottom:838.440000pt;}
.y2d_c00300{bottom:838.826667pt;}
.y29_c00300{bottom:839.226667pt;}
.y2b_c00300{bottom:840.360000pt;}
.y27_c00300{bottom:840.560000pt;}
.y28_c00300{bottom:841.306667pt;}
.y26_c00300{bottom:854.066667pt;}
.y25_c00300{bottom:855.026667pt;}
.y24_c00300{bottom:856.733333pt;}
.y23_c00300{bottom:857.693333pt;}
.y22_c00300{bottom:872.360000pt;}
.y1d_c00300{bottom:873.106667pt;}
.y1b_c00300{bottom:873.306667pt;}
.y1a_c00300{bottom:873.693333pt;}
.y20_c00300{bottom:874.440000pt;}
.y1c_c00300{bottom:875.026667pt;}
.y21_c00300{bottom:875.226667pt;}
.y1f_c00300{bottom:875.973333pt;}
.y1e_c00300{bottom:876.360000pt;}
.y17_c00300{bottom:889.693333pt;}
.y15_c00300{bottom:891.773333pt;}
.y16_c00300{bottom:892.360000pt;}
.y19_c00300{bottom:892.560000pt;}
.y14_c00300{bottom:893.306667pt;}
.y18_c00300{bottom:893.693333pt;}
.y13_c00300{bottom:907.026667pt;}
.y12_c00300{bottom:907.973333pt;}
.y11_c00300{bottom:908.733333pt;}
.yf_c00300{bottom:909.693333pt;}
.y10_c00300{bottom:911.026667pt;}
.yd_c00300{bottom:925.693333pt;}
.yb_c00300{bottom:926.440000pt;}
.yc_c00300{bottom:928.360000pt;}
.ye_c00300{bottom:928.560000pt;}
.y8_c00300{bottom:943.026667pt;}
.y6_c00300{bottom:943.773333pt;}
.ya_c00300{bottom:943.973333pt;}
.y9_c00300{bottom:945.306667pt;}
.y7_c00300{bottom:945.693333pt;}
.y4_c00300{bottom:945.893333pt;}
.y5_c00300{bottom:946.640000pt;}
.y2_c00300{bottom:977.693333pt;}
.y1_c00300{bottom:980.560000pt;}
.h9_c00300{height:7.412682pt;}
.h1_c00300{height:20.466875pt;}
.h7_c00300{height:22.303646pt;}
.h3_c00300{height:27.879557pt;}
.h2_c00300{height:31.618698pt;}
.h5_c00300{height:35.357839pt;}
.h4_c00300{height:39.031380pt;}
.h8_c00300{height:42.285365pt;}
.h6_c00300{height:42.770521pt;}
.h0_c00300{height:1186.666667pt;}
.w0_c00300{width:782.666667pt;}
.x0_c00300{left:0.000000pt;}
.x3a_c00300{left:134.666667pt;}
.x4_c00300{left:135.626667pt;}
.x70_c00300{left:147.626667pt;}
.x21_c00300{left:148.960000pt;}
.x94_c00300{left:168.000000pt;}
.x5_c00300{left:169.333333pt;}
.x13_c00300{left:170.666667pt;}
.x78_c00300{left:184.373333pt;}
.x54_c00300{left:187.040000pt;}
.xe5_c00300{left:192.000000pt;}
.xcd_c00300{left:193.333333pt;}
.xb1_c00300{left:195.040000pt;}
.xb6_c00300{left:196.373333pt;}
.x6_c00300{left:197.706667pt;}
.x2b_c00300{left:198.666667pt;}
.x22_c00300{left:200.373333pt;}
.x3b_c00300{left:201.706667pt;}
.xc5_c00300{left:204.000000pt;}
.x8e_c00300{left:205.706667pt;}
.x79_c00300{left:206.666667pt;}
.x66_c00300{left:208.000000pt;}
.x55_c00300{left:210.666667pt;}
.xe0_c00300{left:211.626667pt;}
.xd0_c00300{left:213.333333pt;}
.xa5_c00300{left:214.666667pt;}
.xca_c00300{left:216.373333pt;}
.x86_c00300{left:224.960000pt;}
.xbe_c00300{left:227.626667pt;}
.xac_c00300{left:229.333333pt;}
.x2c_c00300{left:231.040000pt;}
.xe6_c00300{left:232.000000pt;}
.x4e_c00300{left:233.333333pt;}
.xd5_c00300{left:236.000000pt;}
.x14_c00300{left:236.960000pt;}
.x91_c00300{left:239.626667pt;}
.x7_c00300{left:240.960000pt;}
.xb7_c00300{left:243.626667pt;}
.x23_c00300{left:244.960000pt;}
.xa6_c00300{left:246.666667pt;}
.x5f_c00300{left:247.626667pt;}
.x67_c00300{left:249.706667pt;}
.x2d_c00300{left:253.333333pt;}
.x8_c00300{left:256.373333pt;}
.xd9_c00300{left:257.333333pt;}
.x98_c00300{left:259.040000pt;}
.xb8_c00300{left:260.000000pt;}
.x24_c00300{left:264.373333pt;}
.x60_c00300{left:265.706667pt;}
.x87_c00300{left:266.666667pt;}
.x7a_c00300{left:269.333333pt;}
.x68_c00300{left:272.000000pt;}
.x56_c00300{left:274.666667pt;}
.xb2_c00300{left:276.000000pt;}
.x7f_c00300{left:277.333333pt;}
.x45_c00300{left:278.293333pt;}
.x4f_c00300{left:279.626667pt;}
.x9_c00300{left:281.333333pt;}
.x99_c00300{left:282.666667pt;}
.xce_c00300{left:284.373333pt;}
.x15_c00300{left:289.333333pt;}
.x61_c00300{left:290.666667pt;}
.xe1_c00300{left:293.333333pt;}
.x46_c00300{left:294.666667pt;}
.xb9_c00300{left:296.373333pt;}
.x71_c00300{left:297.706667pt;}
.xd1_c00300{left:301.333333pt;}
.x16_c00300{left:302.666667pt;}
.x9f_c00300{left:304.373333pt;}
.x88_c00300{left:305.706667pt;}
.x3c_c00300{left:308.373333pt;}
.xd4_c00300{left:311.040000pt;}
.x69_c00300{left:312.000000pt;}
.xcb_c00300{left:315.040000pt;}
.x57_c00300{left:316.000000pt;}
.x47_c00300{left:317.333333pt;}
.x2e_c00300{left:318.293333pt;}
.xa_c00300{left:320.000000pt;}
.x72_c00300{left:321.333333pt;}
.x9a_c00300{left:324.000000pt;}
.x8f_c00300{left:324.960000pt;}
.xa7_c00300{left:326.293333pt;}
.xa0_c00300{left:328.000000pt;}
.xcf_c00300{left:329.333333pt;}
.x17_c00300{left:331.626667pt;}
.xad_c00300{left:332.960000pt;}
.x3d_c00300{left:334.666667pt;}
.xe7_c00300{left:336.000000pt;}
.xd7_c00300{left:338.666667pt;}
.x89_c00300{left:344.000000pt;}
.xda_c00300{left:349.333333pt;}
.x62_c00300{left:354.666667pt;}
.x48_c00300{left:356.000000pt;}
.x80_c00300{left:356.960000pt;}
.x1_c00300{left:358.666667pt;}
.x18_c00300{left:359.626667pt;}
.x73_c00300{left:362.666667pt;}
.xae_c00300{left:364.960000pt;}
.xc7_c00300{left:367.040000pt;}
.xa1_c00300{left:368.000000pt;}
.x2f_c00300{left:369.706667pt;}
.x50_c00300{left:372.000000pt;}
.xd6_c00300{left:373.333333pt;}
.x6a_c00300{left:375.040000pt;}
.x74_c00300{left:376.373333pt;}
.x3e_c00300{left:377.333333pt;}
.xb3_c00300{left:378.666667pt;}
.x58_c00300{left:381.333333pt;}
.xbf_c00300{left:382.666667pt;}
.xb_c00300{left:385.333333pt;}
.x19_c00300{left:388.000000pt;}
.xb4_c00300{left:395.040000pt;}
.xc0_c00300{left:396.000000pt;}
.x25_c00300{left:399.040000pt;}
.x81_c00300{left:400.000000pt;}
.xc_c00300{left:401.333333pt;}
.xba_c00300{left:403.040000pt;}
.x9b_c00300{left:405.706667pt;}
.x63_c00300{left:407.040000pt;}
.x30_c00300{left:408.373333pt;}
.x6b_c00300{left:413.333333pt;}
.x1a_c00300{left:416.960000pt;}
.xe8_c00300{left:418.293333pt;}
.x49_c00300{left:419.626667pt;}
.x7b_c00300{left:423.040000pt;}
.x92_c00300{left:425.706667pt;}
.xbb_c00300{left:426.666667pt;}
.xd_c00300{left:428.000000pt;}
.xa8_c00300{left:429.333333pt;}
.xdb_c00300{left:430.293333pt;}
.x59_c00300{left:432.000000pt;}
.xd2_c00300{left:433.333333pt;}
.x95_c00300{left:435.040000pt;}
.x9c_c00300{left:436.000000pt;}
.xaf_c00300{left:436.960000pt;}
.x75_c00300{left:439.040000pt;}
.x1b_c00300{left:440.960000pt;}
.x3f_c00300{left:444.960000pt;}
.xe9_c00300{left:448.000000pt;}
.x4a_c00300{left:449.333333pt;}
.xdc_c00300{left:452.960000pt;}
.x8a_c00300{left:455.040000pt;}
.xa2_c00300{left:456.000000pt;}
.x93_c00300{left:456.960000pt;}
.x1c_c00300{left:458.666667pt;}
.x26_c00300{left:460.373333pt;}
.xc8_c00300{left:462.666667pt;}
.xe2_c00300{left:464.000000pt;}
.x82_c00300{left:465.333333pt;}
.x96_c00300{left:466.293333pt;}
.x31_c00300{left:468.000000pt;}
.xcc_c00300{left:471.040000pt;}
.xa3_c00300{left:472.373333pt;}
.x64_c00300{left:473.333333pt;}
.x1e_c00300{left:474.666667pt;}
.x37_c00300{left:475.626667pt;}
.x40_c00300{left:477.333333pt;}
.x8b_c00300{left:478.666667pt;}
.xa9_c00300{left:481.333333pt;}
.xe3_c00300{left:482.466667pt;}
.x32_c00300{left:484.000000pt;}
.x97_c00300{left:485.333333pt;}
.xc1_c00300{left:486.666667pt;}
.x65_c00300{left:489.706667pt;}
.xe_c00300{left:493.333333pt;}
.x1d_c00300{left:496.373333pt;}
.x51_c00300{left:497.706667pt;}
.x7c_c00300{left:498.666667pt;}
.x27_c00300{left:500.000000pt;}
.x9d_c00300{left:501.333333pt;}
.x5a_c00300{left:503.626667pt;}
.x90_c00300{left:505.333333pt;}
.xf_c00300{left:507.626667pt;}
.x38_c00300{left:508.960000pt;}
.x33_c00300{left:512.000000pt;}
.x83_c00300{left:516.373333pt;}
.x6c_c00300{left:517.706667pt;}
.x8c_c00300{left:518.666667pt;}
.x76_c00300{left:519.626667pt;}
.x52_c00300{left:520.960000pt;}
.xea_c00300{left:522.293333pt;}
.x1f_c00300{left:524.373333pt;}
.x5b_c00300{left:526.666667pt;}
.xbc_c00300{left:530.293333pt;}
.x10_c00300{left:536.960000pt;}
.x34_c00300{left:539.626667pt;}
.x84_c00300{left:542.666667pt;}
.x41_c00300{left:544.000000pt;}
.x5c_c00300{left:546.666667pt;}
.xc2_c00300{left:548.000000pt;}
.x4b_c00300{left:549.706667pt;}
.xdd_c00300{left:552.000000pt;}
.xb0_c00300{left:555.040000pt;}
.x77_c00300{left:556.373333pt;}
.x39_c00300{left:557.333333pt;}
.x42_c00300{left:560.000000pt;}
.xaa_c00300{left:561.333333pt;}
.x7d_c00300{left:562.666667pt;}
.x11_c00300{left:563.626667pt;}
.xc6_c00300{left:565.706667pt;}
.x28_c00300{left:568.373333pt;}
.xd8_c00300{left:569.333333pt;}
.x9e_c00300{left:570.666667pt;}
.x6f_c00300{left:574.293333pt;}
.xc3_c00300{left:575.626667pt;}
.xc9_c00300{left:577.706667pt;}
.x6d_c00300{left:578.666667pt;}
.x35_c00300{left:580.000000pt;}
.x4c_c00300{left:581.706667pt;}
.x5d_c00300{left:585.706667pt;}
.xde_c00300{left:588.000000pt;}
.xa4_c00300{left:589.706667pt;}
.x12_c00300{left:593.333333pt;}
.x6e_c00300{left:594.293333pt;}
.xb5_c00300{left:596.373333pt;}
.x43_c00300{left:597.706667pt;}
.x4d_c00300{left:598.666667pt;}
.x85_c00300{left:600.000000pt;}
.x7e_c00300{left:602.666667pt;}
.x29_c00300{left:603.626667pt;}
.x20_c00300{left:610.293333pt;}
.xd3_c00300{left:612.000000pt;}
.x8d_c00300{left:613.333333pt;}
.xe4_c00300{left:614.666667pt;}
.x36_c00300{left:617.706667pt;}
.x53_c00300{left:621.333333pt;}
.xbd_c00300{left:622.666667pt;}
.x5e_c00300{left:624.000000pt;}
.xab_c00300{left:624.960000pt;}
.x2_c00300{left:626.293333pt;}
.xdf_c00300{left:628.373333pt;}
.x44_c00300{left:633.706667pt;}
.x2a_c00300{left:636.000000pt;}
.xc4_c00300{left:637.333333pt;}
.x3_c00300{left:639.040000pt;}
.xeb_c00300{left:642.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_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_c6892e54e5c8667dbddd3f75.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:1.688965;font-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_c00301{transform:matrix(0.047479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047479,0.000000,0.000000,0.250000,0,0);}
.m107_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);}
.mab_c00301{transform:matrix(0.321892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321892,0.000000,0.000000,0.250000,0,0);}
.mb6_c00301{transform:matrix(0.341258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341258,0.000000,0.000000,0.250000,0,0);}
.m3e_c00301{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m104_c00301{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);}
.m72_c00301{transform:matrix(0.355828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355828,0.000000,0.000000,0.250000,0,0);}
.m19_c00301{transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);}
.m29_c00301{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m8_c00301{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m5a_c00301{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m18_c00301{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m5e_c00301{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m2e_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);}
.m34_c00301{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.ma3_c00301{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m5c_c00301{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m69_c00301{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mc5_c00301{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mc6_c00301{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.mfc_c00301{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m42_c00301{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m5b_c00301{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m3f_c00301{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.mb1_c00301{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m2b_c00301{transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);}
.mb8_c00301{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m67_c00301{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m10a_c00301{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m68_c00301{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mc4_c00301{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m4a_c00301{transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);}
.m11_c00301{transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);}
.m39_c00301{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m3a_c00301{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m7_c00301{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m10e_c00301{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.md_c00301{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.m22_c00301{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mbf_c00301{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m6d_c00301{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m3b_c00301{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.m2a_c00301{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m10b_c00301{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m54_c00301{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m2f_c00301{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m37_c00301{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m59_c00301{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m26_c00301{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m73_c00301{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m8c_c00301{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.mc_c00301{transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);}
.m1c_c00301{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.maf_c00301{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.m9d_c00301{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m9e_c00301{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m6c_c00301{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m74_c00301{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.mf5_c00301{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m65_c00301{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m27_c00301{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m7b_c00301{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.mcb_c00301{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m56_c00301{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m91_c00301{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m76_c00301{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m15_c00301{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m46_c00301{transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);}
.me9_c00301{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m28_c00301{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m38_c00301{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.med_c00301{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.maa_c00301{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m1d_c00301{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mde_c00301{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m24_c00301{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m105_c00301{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.ma9_c00301{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mf3_c00301{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m16_c00301{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.m8e_c00301{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.mdf_c00301{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.md4_c00301{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mf0_c00301{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.ma4_c00301{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.mf6_c00301{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m4_c00301{transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);}
.m10_c00301{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.mad_c00301{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.mbd_c00301{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m58_c00301{transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);}
.m51_c00301{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.mf8_c00301{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.me4_c00301{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.me6_c00301{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.mcd_c00301{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.mb0_c00301{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m3d_c00301{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m2c_c00301{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.me7_c00301{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.ma0_c00301{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.mea_c00301{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m36_c00301{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m84_c00301{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.mfd_c00301{transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);}
.mf7_c00301{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m5f_c00301{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.mc9_c00301{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.mdd_c00301{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.m80_c00301{transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);}
.m94_c00301{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.mf4_c00301{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m99_c00301{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m43_c00301{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m25_c00301{transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);}
.mac_c00301{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.mcf_c00301{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m17_c00301{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.m6b_c00301{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m50_c00301{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m10d_c00301{transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);}
.mc7_c00301{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.me_c00301{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.ma5_c00301{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mae_c00301{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m0_c00301{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m9b_c00301{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.me1_c00301{transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);}
.mdc_c00301{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m53_c00301{transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);}
.me8_c00301{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.ma_c00301{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);}
.mf2_c00301{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.me0_c00301{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mb7_c00301{transform:matrix(0.508349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508349,0.000000,0.000000,0.250000,0,0);}
.mf1_c00301{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.mc3_c00301{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mc1_c00301{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.ma7_c00301{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m63_c00301{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m2_c00301{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m12_c00301{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.m3c_c00301{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mba_c00301{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m57_c00301{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mda_c00301{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m6a_c00301{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mfe_c00301{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m4f_c00301{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m9f_c00301{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_c00301{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m77_c00301{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.md9_c00301{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mfb_c00301{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m92_c00301{transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);}
.m35_c00301{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m47_c00301{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m14_c00301{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m62_c00301{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m4c_c00301{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m71_c00301{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m8b_c00301{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m41_c00301{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m44_c00301{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.md7_c00301{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m86_c00301{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m79_c00301{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m20_c00301{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m4d_c00301{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m89_c00301{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.mc0_c00301{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m2d_c00301{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m30_c00301{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m5d_c00301{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m109_c00301{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mc8_c00301{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m66_c00301{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mbb_c00301{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mf9_c00301{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m81_c00301{transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);}
.m8a_c00301{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.mee_c00301{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mb3_c00301{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m48_c00301{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m55_c00301{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.md1_c00301{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m21_c00301{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mb_c00301{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.me2_c00301{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.me3_c00301{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mb4_c00301{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.md8_c00301{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.md2_c00301{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m87_c00301{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.m103_c00301{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.md6_c00301{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m83_c00301{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.mec_c00301{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m40_c00301{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m4b_c00301{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mb9_c00301{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m96_c00301{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.mfa_c00301{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m1b_c00301{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m75_c00301{transform:matrix(0.574519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574519,0.000000,0.000000,0.250000,0,0);}
.md5_c00301{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mb2_c00301{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.mb5_c00301{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m52_c00301{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.ma8_c00301{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m10c_c00301{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mdb_c00301{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m6_c00301{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.m8d_c00301{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m106_c00301{transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);}
.m7a_c00301{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m64_c00301{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m90_c00301{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m3_c00301{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.mce_c00301{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.meb_c00301{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.ma1_c00301{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m13_c00301{transform:matrix(0.595588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595588,0.000000,0.000000,0.250000,0,0);}
.m9c_c00301{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.mff_c00301{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m1_c00301{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m102_c00301{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.ma6_c00301{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m1f_c00301{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.m45_c00301{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mbc_c00301{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m9_c00301{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_c00301{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);}
.mca_c00301{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mf_c00301{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m8f_c00301{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m49_c00301{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m85_c00301{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.mbe_c00301{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m9a_c00301{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m98_c00301{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);}
.m95_c00301{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m97_c00301{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m5_c00301{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);}
.m4e_c00301{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m6e_c00301{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m7e_c00301{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m88_c00301{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m7c_c00301{transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);}
.m1a_c00301{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.m82_c00301{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);}
.me5_c00301{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m78_c00301{transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);}
.m100_c00301{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m93_c00301{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m60_c00301{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m61_c00301{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.mef_c00301{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m101_c00301{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m70_c00301{transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);}
.m31_c00301{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.mcc_c00301{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.md0_c00301{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m6f_c00301{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.md3_c00301{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mc2_c00301{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.ma2_c00301{transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);}
.m7d_c00301{transform:matrix(1.066079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.066079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.066079,0.000000,0.000000,0.250000,0,0);}
.m33_c00301{transform:matrix(2.899123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.899123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.899123,0.000000,0.000000,0.250000,0,0);}
.m23_c00301{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m1e_c00301{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-5.629781px;}
.ws1_c00301{word-spacing:0.000000px;}
.fc0_c00301{color:transparent;}
.fs6_c00301{font-size:3.420000px;}
.fs8_c00301{font-size:13.620000px;}
.fs5_c00301{font-size:18.720000px;}
.fs1_c00301{font-size:20.400000px;}
.fs3_c00301{font-size:25.500000px;}
.fs0_c00301{font-size:28.920000px;}
.fs4_c00301{font-size:32.340000px;}
.fs2_c00301{font-size:35.700000px;}
.fs7_c00301{font-size:39.120000px;}
.y0_c00301{bottom:0.000000px;}
.yca_c00301{bottom:251.745000px;}
.ycb_c00301{bottom:252.825000px;}
.yc9_c00301{bottom:253.905000px;}
.yc8_c00301{bottom:270.405000px;}
.yc4_c00301{bottom:271.245000px;}
.yc5_c00301{bottom:272.325000px;}
.yc3_c00301{bottom:273.405000px;}
.yc6_c00301{bottom:274.470000px;}
.yc7_c00301{bottom:274.905000px;}
.yc2_c00301{bottom:292.905000px;}
.ybe_c00301{bottom:311.745000px;}
.ybf_c00301{bottom:312.630000px;}
.yc0_c00301{bottom:312.825000px;}
.ybd_c00301{bottom:313.905000px;}
.yc1_c00301{bottom:314.970000px;}
.ybb_c00301{bottom:331.245000px;}
.yba_c00301{bottom:333.405000px;}
.ybc_c00301{bottom:333.630000px;}
.yb5_c00301{bottom:350.745000px;}
.yb7_c00301{bottom:351.825000px;}
.yb8_c00301{bottom:352.245000px;}
.yb6_c00301{bottom:352.905000px;}
.yb9_c00301{bottom:353.970000px;}
.yb2_c00301{bottom:370.245000px;}
.yb1_c00301{bottom:371.325000px;}
.yb0_c00301{bottom:372.405000px;}
.yb3_c00301{bottom:372.630000px;}
.yb4_c00301{bottom:373.470000px;}
.yad_c00301{bottom:388.905000px;}
.yae_c00301{bottom:389.745000px;}
.ya8_c00301{bottom:390.405000px;}
.ya7_c00301{bottom:391.245000px;}
.yac_c00301{bottom:391.905000px;}
.yaf_c00301{bottom:392.130000px;}
.yab_c00301{bottom:392.325000px;}
.ya9_c00301{bottom:393.405000px;}
.yaa_c00301{bottom:394.470000px;}
.ya0_c00301{bottom:409.245000px;}
.ya2_c00301{bottom:410.325000px;}
.ya4_c00301{bottom:410.745000px;}
.ya5_c00301{bottom:411.405000px;}
.ya1_c00301{bottom:411.630000px;}
.ya6_c00301{bottom:411.825000px;}
.y9f_c00301{bottom:412.905000px;}
.ya3_c00301{bottom:413.970000px;}
.y9b_c00301{bottom:430.245000px;}
.y9e_c00301{bottom:431.325000px;}
.y9c_c00301{bottom:432.405000px;}
.y9d_c00301{bottom:432.630000px;}
.y98_c00301{bottom:448.470000px;}
.y9a_c00301{bottom:449.745000px;}
.y99_c00301{bottom:451.470000px;}
.y96_c00301{bottom:451.905000px;}
.y97_c00301{bottom:453.405000px;}
.y94_c00301{bottom:469.245000px;}
.y95_c00301{bottom:470.130000px;}
.y92_c00301{bottom:471.405000px;}
.y93_c00301{bottom:471.630000px;}
.y91_c00301{bottom:471.825000px;}
.y90_c00301{bottom:472.905000px;}
.y8f_c00301{bottom:488.745000px;}
.y88_c00301{bottom:489.825000px;}
.y8b_c00301{bottom:490.245000px;}
.y8e_c00301{bottom:490.905000px;}
.y8c_c00301{bottom:491.130000px;}
.y8d_c00301{bottom:491.325000px;}
.y8a_c00301{bottom:491.970000px;}
.y87_c00301{bottom:492.405000px;}
.y89_c00301{bottom:493.470000px;}
.y85_c00301{bottom:509.325000px;}
.y83_c00301{bottom:509.745000px;}
.y86_c00301{bottom:510.405000px;}
.y82_c00301{bottom:510.630000px;}
.y81_c00301{bottom:511.905000px;}
.y84_c00301{bottom:512.970000px;}
.y80_c00301{bottom:527.745000px;}
.y7e_c00301{bottom:529.245000px;}
.y7f_c00301{bottom:529.905000px;}
.y7d_c00301{bottom:530.970000px;}
.y7b_c00301{bottom:531.405000px;}
.y7c_c00301{bottom:532.470000px;}
.y74_c00301{bottom:547.680000px;}
.y7a_c00301{bottom:548.550000px;}
.y76_c00301{bottom:548.745000px;}
.y79_c00301{bottom:549.405000px;}
.y78_c00301{bottom:549.630000px;}
.y75_c00301{bottom:549.825000px;}
.y77_c00301{bottom:550.470000px;}
.y73_c00301{bottom:550.905000px;}
.y6f_c00301{bottom:568.245000px;}
.y71_c00301{bottom:569.970000px;}
.y72_c00301{bottom:570.405000px;}
.y70_c00301{bottom:570.420000px;}
.y6b_c00301{bottom:604.470000px;}
.y6d_c00301{bottom:605.325000px;}
.y6c_c00301{bottom:606.405000px;}
.y6e_c00301{bottom:608.550000px;}
.y63_c00301{bottom:619.050000px;}
.y68_c00301{bottom:619.905000px;}
.y67_c00301{bottom:620.325000px;}
.y69_c00301{bottom:620.970000px;}
.y66_c00301{bottom:621.195000px;}
.y64_c00301{bottom:621.405000px;}
.y6a_c00301{bottom:622.050000px;}
.y65_c00301{bottom:622.470000px;}
.y62_c00301{bottom:634.905000px;}
.y61_c00301{bottom:635.325000px;}
.y5e_c00301{bottom:649.905000px;}
.y5d_c00301{bottom:650.550000px;}
.y60_c00301{bottom:650.970000px;}
.y5f_c00301{bottom:651.195000px;}
.y5b_c00301{bottom:651.405000px;}
.y59_c00301{bottom:651.630000px;}
.y5c_c00301{bottom:652.050000px;}
.y5a_c00301{bottom:652.470000px;}
.y58_c00301{bottom:664.050000px;}
.y57_c00301{bottom:664.905000px;}
.y55_c00301{bottom:665.970000px;}
.y56_c00301{bottom:666.195000px;}
.y54_c00301{bottom:667.050000px;}
.y4e_c00301{bottom:678.825000px;}
.y52_c00301{bottom:679.905000px;}
.y4d_c00301{bottom:680.130000px;}
.y53_c00301{bottom:680.550000px;}
.y51_c00301{bottom:680.970000px;}
.y4f_c00301{bottom:681.195000px;}
.y50_c00301{bottom:682.050000px;}
.y4a_c00301{bottom:706.245000px;}
.y4c_c00301{bottom:707.130000px;}
.y4b_c00301{bottom:708.405000px;}
.y47_c00301{bottom:724.680000px;}
.y48_c00301{bottom:725.745000px;}
.y49_c00301{bottom:726.630000px;}
.y46_c00301{bottom:727.905000px;}
.y45_c00301{bottom:728.130000px;}
.y43_c00301{bottom:745.245000px;}
.y44_c00301{bottom:746.970000px;}
.y40_c00301{bottom:747.405000px;}
.y41_c00301{bottom:748.470000px;}
.y42_c00301{bottom:748.920000px;}
.y3e_c00301{bottom:766.245000px;}
.y3d_c00301{bottom:767.325000px;}
.y3f_c00301{bottom:768.405000px;}
.y38_c00301{bottom:785.745000px;}
.y3c_c00301{bottom:786.405000px;}
.y3a_c00301{bottom:786.630000px;}
.y3b_c00301{bottom:787.470000px;}
.y39_c00301{bottom:787.905000px;}
.y37_c00301{bottom:803.745000px;}
.y35_c00301{bottom:805.245000px;}
.y34_c00301{bottom:806.325000px;}
.y33_c00301{bottom:806.970000px;}
.y36_c00301{bottom:807.405000px;}
.y2f_c00301{bottom:824.745000px;}
.y32_c00301{bottom:825.405000px;}
.y30_c00301{bottom:825.630000px;}
.y31_c00301{bottom:825.825000px;}
.y2d_c00301{bottom:826.905000px;}
.y2e_c00301{bottom:827.970000px;}
.y2b_c00301{bottom:841.905000px;}
.y2a_c00301{bottom:844.245000px;}
.y2c_c00301{bottom:844.905000px;}
.y28_c00301{bottom:846.405000px;}
.y29_c00301{bottom:846.420000px;}
.y25_c00301{bottom:863.745000px;}
.y27_c00301{bottom:864.825000px;}
.y26_c00301{bottom:865.905000px;}
.y24_c00301{bottom:883.245000px;}
.y23_c00301{bottom:884.325000px;}
.y21_c00301{bottom:884.745000px;}
.y1f_c00301{bottom:885.405000px;}
.y20_c00301{bottom:885.630000px;}
.y22_c00301{bottom:886.920000px;}
.y1e_c00301{bottom:904.245000px;}
.y1d_c00301{bottom:921.180000px;}
.y1c_c00301{bottom:921.405000px;}
.y1a_c00301{bottom:922.245000px;}
.y19_c00301{bottom:922.680000px;}
.y1b_c00301{bottom:923.325000px;}
.y18_c00301{bottom:923.745000px;}
.y17_c00301{bottom:941.325000px;}
.y14_c00301{bottom:943.245000px;}
.y16_c00301{bottom:944.325000px;}
.y15_c00301{bottom:945.420000px;}
.y11_c00301{bottom:962.745000px;}
.y13_c00301{bottom:964.905000px;}
.y12_c00301{bottom:964.920000px;}
.yf_c00301{bottom:987.825000px;}
.ye_c00301{bottom:988.905000px;}
.y10_c00301{bottom:989.130000px;}
.yc_c00301{bottom:989.970000px;}
.yd_c00301{bottom:991.050000px;}
.y9_c00301{bottom:1007.325000px;}
.yb_c00301{bottom:1007.550000px;}
.ya_c00301{bottom:1008.405000px;}
.y8_c00301{bottom:1009.470000px;}
.y7_c00301{bottom:1010.550000px;}
.y4_c00301{bottom:1031.745000px;}
.y5_c00301{bottom:1033.470000px;}
.y6_c00301{bottom:1033.905000px;}
.y3_c00301{bottom:1063.905000px;}
.y1_c00301{bottom:1099.905000px;}
.y2_c00301{bottom:1100.550000px;}
.h7_c00301{height:4.206533px;}
.h9_c00301{height:16.752334px;}
.h6_c00301{height:23.025234px;}
.h2_c00301{height:25.091602px;}
.h4_c00301{height:31.364502px;}
.h1_c00301{height:35.571035px;}
.h5_c00301{height:39.777568px;}
.h3_c00301{height:43.910303px;}
.h8_c00301{height:48.116836px;}
.h0_c00301{height:1335.000000px;}
.w0_c00301{width:880.500000px;}
.x0_c00301{left:0.000000px;}
.xb7_c00301{left:151.500000px;}
.x44_c00301{left:153.000000px;}
.x1_c00301{left:154.080000px;}
.x29_c00301{left:155.775000px;}
.x9b_c00301{left:163.500000px;}
.x14_c00301{left:166.500000px;}
.x7a_c00301{left:168.420000px;}
.x1d_c00301{left:169.920000px;}
.xda_c00301{left:178.080000px;}
.x93_c00301{left:180.420000px;}
.x7b_c00301{left:184.500000px;}
.xf5_c00301{left:186.420000px;}
.xe2_c00301{left:187.920000px;}
.x2a_c00301{left:190.080000px;}
.x45_c00301{left:196.080000px;}
.xae_c00301{left:198.000000px;}
.x55_c00301{left:199.500000px;}
.xbf_c00301{left:201.000000px;}
.x5e_c00301{left:204.420000px;}
.x15_c00301{left:205.500000px;}
.xca_c00301{left:206.580000px;}
.xef_c00301{left:208.500000px;}
.x1e_c00301{left:210.420000px;}
.xff_c00301{left:213.420000px;}
.xb8_c00301{left:214.500000px;}
.x6a_c00301{left:217.500000px;}
.x72_c00301{left:219.000000px;}
.xfc_c00301{left:220.920000px;}
.x94_c00301{left:223.500000px;}
.xd3_c00301{left:228.420000px;}
.x46_c00301{left:229.500000px;}
.x56_c00301{left:231.000000px;}
.xa9_c00301{left:232.500000px;}
.x6b_c00301{left:237.420000px;}
.xb9_c00301{left:238.920000px;}
.x82_c00301{left:240.000000px;}
.x8c_c00301{left:241.500000px;}
.xf0_c00301{left:243.420000px;}
.x16_c00301{left:245.580000px;}
.x47_c00301{left:249.420000px;}
.x7c_c00301{left:250.920000px;}
.x63_c00301{left:252.000000px;}
.xea_c00301{left:253.920000px;}
.x30_c00301{left:255.000000px;}
.x9c_c00301{left:257.355000px;}
.x22_c00301{left:259.500000px;}
.x3a_c00301{left:262.500000px;}
.x6c_c00301{left:265.920000px;}
.xba_c00301{left:267.420000px;}
.x1f_c00301{left:268.500000px;}
.x50_c00301{left:269.580000px;}
.x5f_c00301{left:272.580000px;}
.xa_c00301{left:274.500000px;}
.x73_c00301{left:276.420000px;}
.xaa_c00301{left:277.500000px;}
.xc0_c00301{left:279.000000px;}
.x23_c00301{left:280.500000px;}
.x3b_c00301{left:283.500000px;}
.xaf_c00301{left:286.080000px;}
.xd4_c00301{left:288.000000px;}
.x5_c00301{left:291.000000px;}
.xe3_c00301{left:292.500000px;}
.x83_c00301{left:294.000000px;}
.xb_c00301{left:296.580000px;}
.x57_c00301{left:300.000000px;}
.x100_c00301{left:301.500000px;}
.xcb_c00301{left:304.500000px;}
.x31_c00301{left:306.000000px;}
.x32_c00301{left:307.500000px;}
.xeb_c00301{left:309.000000px;}
.x17_c00301{left:310.920000px;}
.x9d_c00301{left:312.420000px;}
.xc_c00301{left:313.500000px;}
.xc4_c00301{left:315.000000px;}
.xb0_c00301{left:316.500000px;}
.xbb_c00301{left:318.000000px;}
.x74_c00301{left:322.500000px;}
.x48_c00301{left:325.080000px;}
.x60_c00301{left:327.000000px;}
.x33_c00301{left:328.080000px;}
.xb1_c00301{left:331.500000px;}
.x75_c00301{left:333.000000px;}
.x2b_c00301{left:334.080000px;}
.x7d_c00301{left:340.500000px;}
.xcc_c00301{left:341.580000px;}
.xf8_c00301{left:343.500000px;}
.x18_c00301{left:344.580000px;}
.x49_c00301{left:346.080000px;}
.x9e_c00301{left:347.580000px;}
.x24_c00301{left:348.855000px;}
.xd_c00301{left:351.000000px;}
.xf6_c00301{left:352.500000px;}
.x6d_c00301{left:353.580000px;}
.xfd_c00301{left:355.920000px;}
.x20_c00301{left:358.500000px;}
.x39_c00301{left:360.000000px;}
.x3c_c00301{left:364.500000px;}
.x7e_c00301{left:366.000000px;}
.x64_c00301{left:367.500000px;}
.xf1_c00301{left:368.580000px;}
.x76_c00301{left:370.080000px;}
.xa2_c00301{left:371.580000px;}
.x3_c00301{left:372.645000px;}
.x101_c00301{left:373.920000px;}
.x21_c00301{left:376.080000px;}
.x6_c00301{left:378.000000px;}
.x95_c00301{left:379.500000px;}
.xf7_c00301{left:380.580000px;}
.xd5_c00301{left:382.920000px;}
.xb2_c00301{left:384.000000px;}
.xab_c00301{left:385.920000px;}
.xbc_c00301{left:388.080000px;}
.xe_c00301{left:391.080000px;}
.x4a_c00301{left:393.000000px;}
.x84_c00301{left:394.080000px;}
.xcd_c00301{left:399.420000px;}
.x19_c00301{left:400.500000px;}
.xb3_c00301{left:402.000000px;}
.xa3_c00301{left:403.500000px;}
.x2_c00301{left:405.000000px;}
.xe4_c00301{left:406.500000px;}
.x9f_c00301{left:409.080000px;}
.xec_c00301{left:412.500000px;}
.x51_c00301{left:414.000000px;}
.x8d_c00301{left:417.000000px;}
.x25_c00301{left:420.000000px;}
.x2c_c00301{left:421.275000px;}
.x85_c00301{left:423.000000px;}
.x6e_c00301{left:424.080000px;}
.xc5_c00301{left:426.000000px;}
.x34_c00301{left:427.080000px;}
.x7_c00301{left:429.420000px;}
.xa0_c00301{left:430.500000px;}
.x86_c00301{left:433.500000px;}
.x4_c00301{left:434.580000px;}
.x3d_c00301{left:436.920000px;}
.x77_c00301{left:441.420000px;}
.xf9_c00301{left:442.920000px;}
.x61_c00301{left:445.275000px;}
.x102_c00301{left:447.855000px;}
.xf_c00301{left:449.580000px;}
.xd6_c00301{left:451.920000px;}
.xf2_c00301{left:453.420000px;}
.x8e_c00301{left:454.920000px;}
.x4b_c00301{left:457.500000px;}
.x1a_c00301{left:458.580000px;}
.xdb_c00301{left:460.500000px;}
.xce_c00301{left:462.000000px;}
.x6f_c00301{left:463.500000px;}
.x65_c00301{left:465.645000px;}
.x35_c00301{left:468.000000px;}
.x10_c00301{left:469.920000px;}
.x58_c00301{left:471.000000px;}
.x3e_c00301{left:475.080000px;}
.x8_c00301{left:478.080000px;}
.xac_c00301{left:481.500000px;}
.xb4_c00301{left:483.420000px;}
.x62_c00301{left:486.000000px;}
.x11_c00301{left:487.500000px;}
.x26_c00301{left:488.775000px;}
.xa4_c00301{left:491.580000px;}
.x52_c00301{left:493.080000px;}
.x96_c00301{left:494.580000px;}
.xdc_c00301{left:497.580000px;}
.xcf_c00301{left:499.080000px;}
.x66_c00301{left:501.000000px;}
.xf3_c00301{left:502.500000px;}
.x4c_c00301{left:504.000000px;}
.x103_c00301{left:507.420000px;}
.xe5_c00301{left:508.500000px;}
.x1b_c00301{left:510.420000px;}
.x87_c00301{left:511.920000px;}
.xdd_c00301{left:516.420000px;}
.xbd_c00301{left:517.500000px;}
.x59_c00301{left:519.000000px;}
.x1c_c00301{left:525.000000px;}
.x12_c00301{left:526.920000px;}
.xfe_c00301{left:528.420000px;}
.xd7_c00301{left:529.500000px;}
.xc1_c00301{left:531.420000px;}
.x2d_c00301{left:532.920000px;}
.xa1_c00301{left:534.000000px;}
.x78_c00301{left:535.080000px;}
.x5a_c00301{left:537.420000px;}
.xde_c00301{left:541.500000px;}
.xd0_c00301{left:543.000000px;}
.x7f_c00301{left:544.500000px;}
.xc6_c00301{left:546.000000px;}
.x4d_c00301{left:549.000000px;}
.x8f_c00301{left:552.000000px;}
.x3f_c00301{left:553.275000px;}
.x88_c00301{left:554.580000px;}
.x36_c00301{left:557.580000px;}
.x9_c00301{left:559.275000px;}
.x5b_c00301{left:564.000000px;}
.xc7_c00301{left:565.920000px;}
.xa5_c00301{left:568.500000px;}
.x4e_c00301{left:570.000000px;}
.x13_c00301{left:572.580000px;}
.x67_c00301{left:575.580000px;}
.x97_c00301{left:577.500000px;}
.xd1_c00301{left:579.000000px;}
.x2e_c00301{left:580.920000px;}
.x90_c00301{left:586.080000px;}
.xa6_c00301{left:587.580000px;}
.xb5_c00301{left:589.920000px;}
.xbe_c00301{left:591.420000px;}
.x40_c00301{left:592.500000px;}
.xc2_c00301{left:594.000000px;}
.x27_c00301{left:595.080000px;}
.x89_c00301{left:598.500000px;}
.x80_c00301{left:600.000000px;}
.x98_c00301{left:601.500000px;}
.x37_c00301{left:602.580000px;}
.x79_c00301{left:604.500000px;}
.xdf_c00301{left:606.420000px;}
.xe6_c00301{left:614.580000px;}
.x99_c00301{left:622.500000px;}
.x5c_c00301{left:623.580000px;}
.x81_c00301{left:625.500000px;}
.x8a_c00301{left:633.420000px;}
.x38_c00301{left:634.500000px;}
.x41_c00301{left:636.000000px;}
.xad_c00301{left:639.000000px;}
.xc8_c00301{left:640.500000px;}
.x91_c00301{left:642.000000px;}
.x68_c00301{left:643.500000px;}
.xe7_c00301{left:645.420000px;}
.xed_c00301{left:647.355000px;}
.x42_c00301{left:653.580000px;}
.x9a_c00301{left:654.645000px;}
.xb6_c00301{left:655.920000px;}
.xa7_c00301{left:658.080000px;}
.x8b_c00301{left:660.000000px;}
.xe0_c00301{left:663.000000px;}
.x69_c00301{left:664.080000px;}
.xc9_c00301{left:666.000000px;}
.x53_c00301{left:670.275000px;}
.x5d_c00301{left:672.000000px;}
.x70_c00301{left:675.420000px;}
.xd8_c00301{left:676.500000px;}
.xc3_c00301{left:678.420000px;}
.xe8_c00301{left:680.580000px;}
.xf4_c00301{left:684.420000px;}
.x2f_c00301{left:686.580000px;}
.x4f_c00301{left:688.500000px;}
.x43_c00301{left:690.000000px;}
.x92_c00301{left:691.500000px;}
.xee_c00301{left:694.080000px;}
.x28_c00301{left:695.355000px;}
.xe1_c00301{left:699.000000px;}
.xd2_c00301{left:702.420000px;}
.x71_c00301{left:703.920000px;}
.xfa_c00301{left:705.000000px;}
.x54_c00301{left:707.580000px;}
.xa8_c00301{left:709.920000px;}
.xe9_c00301{left:715.500000px;}
.xd9_c00301{left:717.000000px;}
.xfb_c00301{left:723.000000px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.ls0_c00301{letter-spacing:0.000000pt;}
.ws0_c00301{word-spacing:-5.004250pt;}
.ws1_c00301{word-spacing:0.000000pt;}
.fs6_c00301{font-size:3.040000pt;}
.fs8_c00301{font-size:12.106667pt;}
.fs5_c00301{font-size:16.640000pt;}
.fs1_c00301{font-size:18.133333pt;}
.fs3_c00301{font-size:22.666667pt;}
.fs0_c00301{font-size:25.706667pt;}
.fs4_c00301{font-size:28.746667pt;}
.fs2_c00301{font-size:31.733333pt;}
.fs7_c00301{font-size:34.773333pt;}
.y0_c00301{bottom:0.000000pt;}
.yca_c00301{bottom:223.773333pt;}
.ycb_c00301{bottom:224.733333pt;}
.yc9_c00301{bottom:225.693333pt;}
.yc8_c00301{bottom:240.360000pt;}
.yc4_c00301{bottom:241.106667pt;}
.yc5_c00301{bottom:242.066667pt;}
.yc3_c00301{bottom:243.026667pt;}
.yc6_c00301{bottom:243.973333pt;}
.yc7_c00301{bottom:244.360000pt;}
.yc2_c00301{bottom:260.360000pt;}
.ybe_c00301{bottom:277.106667pt;}
.ybf_c00301{bottom:277.893333pt;}
.yc0_c00301{bottom:278.066667pt;}
.ybd_c00301{bottom:279.026667pt;}
.yc1_c00301{bottom:279.973333pt;}
.ybb_c00301{bottom:294.440000pt;}
.yba_c00301{bottom:296.360000pt;}
.ybc_c00301{bottom:296.560000pt;}
.yb5_c00301{bottom:311.773333pt;}
.yb7_c00301{bottom:312.733333pt;}
.yb8_c00301{bottom:313.106667pt;}
.yb6_c00301{bottom:313.693333pt;}
.yb9_c00301{bottom:314.640000pt;}
.yb2_c00301{bottom:329.106667pt;}
.yb1_c00301{bottom:330.066667pt;}
.yb0_c00301{bottom:331.026667pt;}
.yb3_c00301{bottom:331.226667pt;}
.yb4_c00301{bottom:331.973333pt;}
.yad_c00301{bottom:345.693333pt;}
.yae_c00301{bottom:346.440000pt;}
.ya8_c00301{bottom:347.026667pt;}
.ya7_c00301{bottom:347.773333pt;}
.yac_c00301{bottom:348.360000pt;}
.yaf_c00301{bottom:348.560000pt;}
.yab_c00301{bottom:348.733333pt;}
.ya9_c00301{bottom:349.693333pt;}
.yaa_c00301{bottom:350.640000pt;}
.ya0_c00301{bottom:363.773333pt;}
.ya2_c00301{bottom:364.733333pt;}
.ya4_c00301{bottom:365.106667pt;}
.ya5_c00301{bottom:365.693333pt;}
.ya1_c00301{bottom:365.893333pt;}
.ya6_c00301{bottom:366.066667pt;}
.y9f_c00301{bottom:367.026667pt;}
.ya3_c00301{bottom:367.973333pt;}
.y9b_c00301{bottom:382.440000pt;}
.y9e_c00301{bottom:383.400000pt;}
.y9c_c00301{bottom:384.360000pt;}
.y9d_c00301{bottom:384.560000pt;}
.y98_c00301{bottom:398.640000pt;}
.y9a_c00301{bottom:399.773333pt;}
.y99_c00301{bottom:401.306667pt;}
.y96_c00301{bottom:401.693333pt;}
.y97_c00301{bottom:403.026667pt;}
.y94_c00301{bottom:417.106667pt;}
.y95_c00301{bottom:417.893333pt;}
.y92_c00301{bottom:419.026667pt;}
.y93_c00301{bottom:419.226667pt;}
.y91_c00301{bottom:419.400000pt;}
.y90_c00301{bottom:420.360000pt;}
.y8f_c00301{bottom:434.440000pt;}
.y88_c00301{bottom:435.400000pt;}
.y8b_c00301{bottom:435.773333pt;}
.y8e_c00301{bottom:436.360000pt;}
.y8c_c00301{bottom:436.560000pt;}
.y8d_c00301{bottom:436.733333pt;}
.y8a_c00301{bottom:437.306667pt;}
.y87_c00301{bottom:437.693333pt;}
.y89_c00301{bottom:438.640000pt;}
.y85_c00301{bottom:452.733333pt;}
.y83_c00301{bottom:453.106667pt;}
.y86_c00301{bottom:453.693333pt;}
.y82_c00301{bottom:453.893333pt;}
.y81_c00301{bottom:455.026667pt;}
.y84_c00301{bottom:455.973333pt;}
.y80_c00301{bottom:469.106667pt;}
.y7e_c00301{bottom:470.440000pt;}
.y7f_c00301{bottom:471.026667pt;}
.y7d_c00301{bottom:471.973333pt;}
.y7b_c00301{bottom:472.360000pt;}
.y7c_c00301{bottom:473.306667pt;}
.y74_c00301{bottom:486.826667pt;}
.y7a_c00301{bottom:487.600000pt;}
.y76_c00301{bottom:487.773333pt;}
.y79_c00301{bottom:488.360000pt;}
.y78_c00301{bottom:488.560000pt;}
.y75_c00301{bottom:488.733333pt;}
.y77_c00301{bottom:489.306667pt;}
.y73_c00301{bottom:489.693333pt;}
.y6f_c00301{bottom:505.106667pt;}
.y71_c00301{bottom:506.640000pt;}
.y72_c00301{bottom:507.026667pt;}
.y70_c00301{bottom:507.040000pt;}
.y6b_c00301{bottom:537.306667pt;}
.y6d_c00301{bottom:538.066667pt;}
.y6c_c00301{bottom:539.026667pt;}
.y6e_c00301{bottom:540.933333pt;}
.y63_c00301{bottom:550.266667pt;}
.y68_c00301{bottom:551.026667pt;}
.y67_c00301{bottom:551.400000pt;}
.y69_c00301{bottom:551.973333pt;}
.y66_c00301{bottom:552.173333pt;}
.y64_c00301{bottom:552.360000pt;}
.y6a_c00301{bottom:552.933333pt;}
.y65_c00301{bottom:553.306667pt;}
.y62_c00301{bottom:564.360000pt;}
.y61_c00301{bottom:564.733333pt;}
.y5e_c00301{bottom:577.693333pt;}
.y5d_c00301{bottom:578.266667pt;}
.y60_c00301{bottom:578.640000pt;}
.y5f_c00301{bottom:578.840000pt;}
.y5b_c00301{bottom:579.026667pt;}
.y59_c00301{bottom:579.226667pt;}
.y5c_c00301{bottom:579.600000pt;}
.y5a_c00301{bottom:579.973333pt;}
.y58_c00301{bottom:590.266667pt;}
.y57_c00301{bottom:591.026667pt;}
.y55_c00301{bottom:591.973333pt;}
.y56_c00301{bottom:592.173333pt;}
.y54_c00301{bottom:592.933333pt;}
.y4e_c00301{bottom:603.400000pt;}
.y52_c00301{bottom:604.360000pt;}
.y4d_c00301{bottom:604.560000pt;}
.y53_c00301{bottom:604.933333pt;}
.y51_c00301{bottom:605.306667pt;}
.y4f_c00301{bottom:605.506667pt;}
.y50_c00301{bottom:606.266667pt;}
.y4a_c00301{bottom:627.773333pt;}
.y4c_c00301{bottom:628.560000pt;}
.y4b_c00301{bottom:629.693333pt;}
.y47_c00301{bottom:644.160000pt;}
.y48_c00301{bottom:645.106667pt;}
.y49_c00301{bottom:645.893333pt;}
.y46_c00301{bottom:647.026667pt;}
.y45_c00301{bottom:647.226667pt;}
.y43_c00301{bottom:662.440000pt;}
.y44_c00301{bottom:663.973333pt;}
.y40_c00301{bottom:664.360000pt;}
.y41_c00301{bottom:665.306667pt;}
.y42_c00301{bottom:665.706667pt;}
.y3e_c00301{bottom:681.106667pt;}
.y3d_c00301{bottom:682.066667pt;}
.y3f_c00301{bottom:683.026667pt;}
.y38_c00301{bottom:698.440000pt;}
.y3c_c00301{bottom:699.026667pt;}
.y3a_c00301{bottom:699.226667pt;}
.y3b_c00301{bottom:699.973333pt;}
.y39_c00301{bottom:700.360000pt;}
.y37_c00301{bottom:714.440000pt;}
.y35_c00301{bottom:715.773333pt;}
.y34_c00301{bottom:716.733333pt;}
.y33_c00301{bottom:717.306667pt;}
.y36_c00301{bottom:717.693333pt;}
.y2f_c00301{bottom:733.106667pt;}
.y32_c00301{bottom:733.693333pt;}
.y30_c00301{bottom:733.893333pt;}
.y31_c00301{bottom:734.066667pt;}
.y2d_c00301{bottom:735.026667pt;}
.y2e_c00301{bottom:735.973333pt;}
.y2b_c00301{bottom:748.360000pt;}
.y2a_c00301{bottom:750.440000pt;}
.y2c_c00301{bottom:751.026667pt;}
.y28_c00301{bottom:752.360000pt;}
.y29_c00301{bottom:752.373333pt;}
.y25_c00301{bottom:767.773333pt;}
.y27_c00301{bottom:768.733333pt;}
.y26_c00301{bottom:769.693333pt;}
.y24_c00301{bottom:785.106667pt;}
.y23_c00301{bottom:786.066667pt;}
.y21_c00301{bottom:786.440000pt;}
.y1f_c00301{bottom:787.026667pt;}
.y20_c00301{bottom:787.226667pt;}
.y22_c00301{bottom:788.373333pt;}
.y1e_c00301{bottom:803.773333pt;}
.y1d_c00301{bottom:818.826667pt;}
.y1c_c00301{bottom:819.026667pt;}
.y1a_c00301{bottom:819.773333pt;}
.y19_c00301{bottom:820.160000pt;}
.y1b_c00301{bottom:820.733333pt;}
.y18_c00301{bottom:821.106667pt;}
.y17_c00301{bottom:836.733333pt;}
.y14_c00301{bottom:838.440000pt;}
.y16_c00301{bottom:839.400000pt;}
.y15_c00301{bottom:840.373333pt;}
.y11_c00301{bottom:855.773333pt;}
.y13_c00301{bottom:857.693333pt;}
.y12_c00301{bottom:857.706667pt;}
.yf_c00301{bottom:878.066667pt;}
.ye_c00301{bottom:879.026667pt;}
.y10_c00301{bottom:879.226667pt;}
.yc_c00301{bottom:879.973333pt;}
.yd_c00301{bottom:880.933333pt;}
.y9_c00301{bottom:895.400000pt;}
.yb_c00301{bottom:895.600000pt;}
.ya_c00301{bottom:896.360000pt;}
.y8_c00301{bottom:897.306667pt;}
.y7_c00301{bottom:898.266667pt;}
.y4_c00301{bottom:917.106667pt;}
.y5_c00301{bottom:918.640000pt;}
.y6_c00301{bottom:919.026667pt;}
.y3_c00301{bottom:945.693333pt;}
.y1_c00301{bottom:977.693333pt;}
.y2_c00301{bottom:978.266667pt;}
.h7_c00301{height:3.739141pt;}
.h9_c00301{height:14.890964pt;}
.h6_c00301{height:20.466875pt;}
.h2_c00301{height:22.303646pt;}
.h4_c00301{height:27.879557pt;}
.h1_c00301{height:31.618698pt;}
.h5_c00301{height:35.357839pt;}
.h3_c00301{height:39.031380pt;}
.h8_c00301{height:42.770521pt;}
.h0_c00301{height:1186.666667pt;}
.w0_c00301{width:782.666667pt;}
.x0_c00301{left:0.000000pt;}
.xb7_c00301{left:134.666667pt;}
.x44_c00301{left:136.000000pt;}
.x1_c00301{left:136.960000pt;}
.x29_c00301{left:138.466667pt;}
.x9b_c00301{left:145.333333pt;}
.x14_c00301{left:148.000000pt;}
.x7a_c00301{left:149.706667pt;}
.x1d_c00301{left:151.040000pt;}
.xda_c00301{left:158.293333pt;}
.x93_c00301{left:160.373333pt;}
.x7b_c00301{left:164.000000pt;}
.xf5_c00301{left:165.706667pt;}
.xe2_c00301{left:167.040000pt;}
.x2a_c00301{left:168.960000pt;}
.x45_c00301{left:174.293333pt;}
.xae_c00301{left:176.000000pt;}
.x55_c00301{left:177.333333pt;}
.xbf_c00301{left:178.666667pt;}
.x5e_c00301{left:181.706667pt;}
.x15_c00301{left:182.666667pt;}
.xca_c00301{left:183.626667pt;}
.xef_c00301{left:185.333333pt;}
.x1e_c00301{left:187.040000pt;}
.xff_c00301{left:189.706667pt;}
.xb8_c00301{left:190.666667pt;}
.x6a_c00301{left:193.333333pt;}
.x72_c00301{left:194.666667pt;}
.xfc_c00301{left:196.373333pt;}
.x94_c00301{left:198.666667pt;}
.xd3_c00301{left:203.040000pt;}
.x46_c00301{left:204.000000pt;}
.x56_c00301{left:205.333333pt;}
.xa9_c00301{left:206.666667pt;}
.x6b_c00301{left:211.040000pt;}
.xb9_c00301{left:212.373333pt;}
.x82_c00301{left:213.333333pt;}
.x8c_c00301{left:214.666667pt;}
.xf0_c00301{left:216.373333pt;}
.x16_c00301{left:218.293333pt;}
.x47_c00301{left:221.706667pt;}
.x7c_c00301{left:223.040000pt;}
.x63_c00301{left:224.000000pt;}
.xea_c00301{left:225.706667pt;}
.x30_c00301{left:226.666667pt;}
.x9c_c00301{left:228.760000pt;}
.x22_c00301{left:230.666667pt;}
.x3a_c00301{left:233.333333pt;}
.x6c_c00301{left:236.373333pt;}
.xba_c00301{left:237.706667pt;}
.x1f_c00301{left:238.666667pt;}
.x50_c00301{left:239.626667pt;}
.x5f_c00301{left:242.293333pt;}
.xa_c00301{left:244.000000pt;}
.x73_c00301{left:245.706667pt;}
.xaa_c00301{left:246.666667pt;}
.xc0_c00301{left:248.000000pt;}
.x23_c00301{left:249.333333pt;}
.x3b_c00301{left:252.000000pt;}
.xaf_c00301{left:254.293333pt;}
.xd4_c00301{left:256.000000pt;}
.x5_c00301{left:258.666667pt;}
.xe3_c00301{left:260.000000pt;}
.x83_c00301{left:261.333333pt;}
.xb_c00301{left:263.626667pt;}
.x57_c00301{left:266.666667pt;}
.x100_c00301{left:268.000000pt;}
.xcb_c00301{left:270.666667pt;}
.x31_c00301{left:272.000000pt;}
.x32_c00301{left:273.333333pt;}
.xeb_c00301{left:274.666667pt;}
.x17_c00301{left:276.373333pt;}
.x9d_c00301{left:277.706667pt;}
.xc_c00301{left:278.666667pt;}
.xc4_c00301{left:280.000000pt;}
.xb0_c00301{left:281.333333pt;}
.xbb_c00301{left:282.666667pt;}
.x74_c00301{left:286.666667pt;}
.x48_c00301{left:288.960000pt;}
.x60_c00301{left:290.666667pt;}
.x33_c00301{left:291.626667pt;}
.xb1_c00301{left:294.666667pt;}
.x75_c00301{left:296.000000pt;}
.x2b_c00301{left:296.960000pt;}
.x7d_c00301{left:302.666667pt;}
.xcc_c00301{left:303.626667pt;}
.xf8_c00301{left:305.333333pt;}
.x18_c00301{left:306.293333pt;}
.x49_c00301{left:307.626667pt;}
.x9e_c00301{left:308.960000pt;}
.x24_c00301{left:310.093333pt;}
.xd_c00301{left:312.000000pt;}
.xf6_c00301{left:313.333333pt;}
.x6d_c00301{left:314.293333pt;}
.xfd_c00301{left:316.373333pt;}
.x20_c00301{left:318.666667pt;}
.x39_c00301{left:320.000000pt;}
.x3c_c00301{left:324.000000pt;}
.x7e_c00301{left:325.333333pt;}
.x64_c00301{left:326.666667pt;}
.xf1_c00301{left:327.626667pt;}
.x76_c00301{left:328.960000pt;}
.xa2_c00301{left:330.293333pt;}
.x3_c00301{left:331.240000pt;}
.x101_c00301{left:332.373333pt;}
.x21_c00301{left:334.293333pt;}
.x6_c00301{left:336.000000pt;}
.x95_c00301{left:337.333333pt;}
.xf7_c00301{left:338.293333pt;}
.xd5_c00301{left:340.373333pt;}
.xb2_c00301{left:341.333333pt;}
.xab_c00301{left:343.040000pt;}
.xbc_c00301{left:344.960000pt;}
.xe_c00301{left:347.626667pt;}
.x4a_c00301{left:349.333333pt;}
.x84_c00301{left:350.293333pt;}
.xcd_c00301{left:355.040000pt;}
.x19_c00301{left:356.000000pt;}
.xb3_c00301{left:357.333333pt;}
.xa3_c00301{left:358.666667pt;}
.x2_c00301{left:360.000000pt;}
.xe4_c00301{left:361.333333pt;}
.x9f_c00301{left:363.626667pt;}
.xec_c00301{left:366.666667pt;}
.x51_c00301{left:368.000000pt;}
.x8d_c00301{left:370.666667pt;}
.x25_c00301{left:373.333333pt;}
.x2c_c00301{left:374.466667pt;}
.x85_c00301{left:376.000000pt;}
.x6e_c00301{left:376.960000pt;}
.xc5_c00301{left:378.666667pt;}
.x34_c00301{left:379.626667pt;}
.x7_c00301{left:381.706667pt;}
.xa0_c00301{left:382.666667pt;}
.x86_c00301{left:385.333333pt;}
.x4_c00301{left:386.293333pt;}
.x3d_c00301{left:388.373333pt;}
.x77_c00301{left:392.373333pt;}
.xf9_c00301{left:393.706667pt;}
.x61_c00301{left:395.800000pt;}
.x102_c00301{left:398.093333pt;}
.xf_c00301{left:399.626667pt;}
.xd6_c00301{left:401.706667pt;}
.xf2_c00301{left:403.040000pt;}
.x8e_c00301{left:404.373333pt;}
.x4b_c00301{left:406.666667pt;}
.x1a_c00301{left:407.626667pt;}
.xdb_c00301{left:409.333333pt;}
.xce_c00301{left:410.666667pt;}
.x6f_c00301{left:412.000000pt;}
.x65_c00301{left:413.906667pt;}
.x35_c00301{left:416.000000pt;}
.x10_c00301{left:417.706667pt;}
.x58_c00301{left:418.666667pt;}
.x3e_c00301{left:422.293333pt;}
.x8_c00301{left:424.960000pt;}
.xac_c00301{left:428.000000pt;}
.xb4_c00301{left:429.706667pt;}
.x62_c00301{left:432.000000pt;}
.x11_c00301{left:433.333333pt;}
.x26_c00301{left:434.466667pt;}
.xa4_c00301{left:436.960000pt;}
.x52_c00301{left:438.293333pt;}
.x96_c00301{left:439.626667pt;}
.xdc_c00301{left:442.293333pt;}
.xcf_c00301{left:443.626667pt;}
.x66_c00301{left:445.333333pt;}
.xf3_c00301{left:446.666667pt;}
.x4c_c00301{left:448.000000pt;}
.x103_c00301{left:451.040000pt;}
.xe5_c00301{left:452.000000pt;}
.x1b_c00301{left:453.706667pt;}
.x87_c00301{left:455.040000pt;}
.xdd_c00301{left:459.040000pt;}
.xbd_c00301{left:460.000000pt;}
.x59_c00301{left:461.333333pt;}
.x1c_c00301{left:466.666667pt;}
.x12_c00301{left:468.373333pt;}
.xfe_c00301{left:469.706667pt;}
.xd7_c00301{left:470.666667pt;}
.xc1_c00301{left:472.373333pt;}
.x2d_c00301{left:473.706667pt;}
.xa1_c00301{left:474.666667pt;}
.x78_c00301{left:475.626667pt;}
.x5a_c00301{left:477.706667pt;}
.xde_c00301{left:481.333333pt;}
.xd0_c00301{left:482.666667pt;}
.x7f_c00301{left:484.000000pt;}
.xc6_c00301{left:485.333333pt;}
.x4d_c00301{left:488.000000pt;}
.x8f_c00301{left:490.666667pt;}
.x3f_c00301{left:491.800000pt;}
.x88_c00301{left:492.960000pt;}
.x36_c00301{left:495.626667pt;}
.x9_c00301{left:497.133333pt;}
.x5b_c00301{left:501.333333pt;}
.xc7_c00301{left:503.040000pt;}
.xa5_c00301{left:505.333333pt;}
.x4e_c00301{left:506.666667pt;}
.x13_c00301{left:508.960000pt;}
.x67_c00301{left:511.626667pt;}
.x97_c00301{left:513.333333pt;}
.xd1_c00301{left:514.666667pt;}
.x2e_c00301{left:516.373333pt;}
.x90_c00301{left:520.960000pt;}
.xa6_c00301{left:522.293333pt;}
.xb5_c00301{left:524.373333pt;}
.xbe_c00301{left:525.706667pt;}
.x40_c00301{left:526.666667pt;}
.xc2_c00301{left:528.000000pt;}
.x27_c00301{left:528.960000pt;}
.x89_c00301{left:532.000000pt;}
.x80_c00301{left:533.333333pt;}
.x98_c00301{left:534.666667pt;}
.x37_c00301{left:535.626667pt;}
.x79_c00301{left:537.333333pt;}
.xdf_c00301{left:539.040000pt;}
.xe6_c00301{left:546.293333pt;}
.x99_c00301{left:553.333333pt;}
.x5c_c00301{left:554.293333pt;}
.x81_c00301{left:556.000000pt;}
.x8a_c00301{left:563.040000pt;}
.x38_c00301{left:564.000000pt;}
.x41_c00301{left:565.333333pt;}
.xad_c00301{left:568.000000pt;}
.xc8_c00301{left:569.333333pt;}
.x91_c00301{left:570.666667pt;}
.x68_c00301{left:572.000000pt;}
.xe7_c00301{left:573.706667pt;}
.xed_c00301{left:575.426667pt;}
.x42_c00301{left:580.960000pt;}
.x9a_c00301{left:581.906667pt;}
.xb6_c00301{left:583.040000pt;}
.xa7_c00301{left:584.960000pt;}
.x8b_c00301{left:586.666667pt;}
.xe0_c00301{left:589.333333pt;}
.x69_c00301{left:590.293333pt;}
.xc9_c00301{left:592.000000pt;}
.x53_c00301{left:595.800000pt;}
.x5d_c00301{left:597.333333pt;}
.x70_c00301{left:600.373333pt;}
.xd8_c00301{left:601.333333pt;}
.xc3_c00301{left:603.040000pt;}
.xe8_c00301{left:604.960000pt;}
.xf4_c00301{left:608.373333pt;}
.x2f_c00301{left:610.293333pt;}
.x4f_c00301{left:612.000000pt;}
.x43_c00301{left:613.333333pt;}
.x92_c00301{left:614.666667pt;}
.xee_c00301{left:616.960000pt;}
.x28_c00301{left:618.093333pt;}
.xe1_c00301{left:621.333333pt;}
.xd2_c00301{left:624.373333pt;}
.x71_c00301{left:625.706667pt;}
.xfa_c00301{left:626.666667pt;}
.x54_c00301{left:628.960000pt;}
.xa8_c00301{left:631.040000pt;}
.xe9_c00301{left:636.000000pt;}
.xd9_c00301{left:637.333333pt;}
.xfb_c00301{left:642.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_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_1fe255fe8fb8a330e446bdca.woff2')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8c_c00302{transform:matrix(0.310966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310966,0.000000,0.000000,0.250000,0,0);}
.mdf_c00302{transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);}
.m1f_c00302{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.me5_c00302{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m6b_c00302{transform:matrix(0.346218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346218,0.000000,0.000000,0.250000,0,0);}
.mf_c00302{transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);}
.m7e_c00302{transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);}
.m4f_c00302{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.mcd_c00302{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.me9_c00302{transform:matrix(0.366564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366564,0.000000,0.000000,0.250000,0,0);}
.m9d_c00302{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.mbf_c00302{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m1b_c00302{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m5d_c00302{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m8e_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);}
.m108_c00302{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mce_c00302{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m1a_c00302{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m10_c00302{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m49_c00302{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.me1_c00302{transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);}
.mc6_c00302{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.mb9_c00302{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m7d_c00302{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.mda_c00302{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m87_c00302{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m6d_c00302{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.ma9_c00302{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m8b_c00302{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m70_c00302{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m30_c00302{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m9c_c00302{transform:matrix(0.399156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399156,0.000000,0.000000,0.250000,0,0);}
.m44_c00302{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.mca_c00302{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m22_c00302{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m56_c00302{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m104_c00302{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.mfa_c00302{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m5e_c00302{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m8f_c00302{transform:matrix(0.409126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409126,0.000000,0.000000,0.250000,0,0);}
.md3_c00302{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mf1_c00302{transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);}
.md9_c00302{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.me2_c00302{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m33_c00302{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.md1_c00302{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m27_c00302{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mc4_c00302{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.mee_c00302{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m2d_c00302{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m23_c00302{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m57_c00302{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m45_c00302{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.me3_c00302{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.ma_c00302{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m9f_c00302{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.mb7_c00302{transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);}
.mba_c00302{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m5b_c00302{transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);}
.md5_c00302{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mea_c00302{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.mc_c00302{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m80_c00302{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m5a_c00302{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m84_c00302{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m60_c00302{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m6c_c00302{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.m4b_c00302{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m12_c00302{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m94_c00302{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m3c_c00302{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m61_c00302{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m102_c00302{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.ma5_c00302{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m72_c00302{transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);}
.m79_c00302{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m82_c00302{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mf4_c00302{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m7c_c00302{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m43_c00302{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m65_c00302{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m17_c00302{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m1c_c00302{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m59_c00302{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.me6_c00302{transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);}
.m107_c00302{transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);}
.m1d_c00302{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mcf_c00302{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mcb_c00302{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.m25_c00302{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.mfb_c00302{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.mf8_c00302{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.mbc_c00302{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m3a_c00302{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m28_c00302{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m36_c00302{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.mbe_c00302{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m51_c00302{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m88_c00302{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m6a_c00302{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mf3_c00302{transform:matrix(0.460581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460581,0.000000,0.000000,0.250000,0,0);}
.m5c_c00302{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.md4_c00302{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.mf2_c00302{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m3_c00302{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.mfd_c00302{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00302{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m62_c00302{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.mc0_c00302{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.ma8_c00302{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m97_c00302{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.mf6_c00302{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m2b_c00302{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.md7_c00302{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.m4e_c00302{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m6e_c00302{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.mbd_c00302{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m9_c00302{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.ma2_c00302{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m105_c00302{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m15_c00302{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.md0_c00302{transform:matrix(0.485714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485714,0.000000,0.000000,0.250000,0,0);}
.m20_c00302{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mc2_c00302{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.ma7_c00302{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m106_c00302{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m0_c00302{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.meb_c00302{transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);}
.m63_c00302{transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);}
.m14_c00302{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mb8_c00302{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mcc_c00302{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m2c_c00302{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m7_c00302{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);}
.me4_c00302{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m38_c00302{transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);}
.mac_c00302{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mef_c00302{transform:matrix(0.504638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504638,0.000000,0.000000,0.250000,0,0);}
.mb4_c00302{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.mc8_c00302{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mad_c00302{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.maa_c00302{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m29_c00302{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m95_c00302{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mdd_c00302{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m40_c00302{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.md8_c00302{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.mb_c00302{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.ma4_c00302{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m46_c00302{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m9e_c00302{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m24_c00302{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m8_c00302{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m75_c00302{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mc1_c00302{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m4a_c00302{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mec_c00302{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m109_c00302{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m66_c00302{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mde_c00302{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mbb_c00302{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m90_c00302{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m19_c00302{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m77_c00302{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.mc3_c00302{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m5_c00302{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mdb_c00302{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m8d_c00302{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m2_c00302{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m3e_c00302{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m8a_c00302{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m37_c00302{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m31_c00302{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m4c_c00302{transform:matrix(0.539889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539889,0.000000,0.000000,0.250000,0,0);}
.m7f_c00302{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.me_c00302{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mae_c00302{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m11_c00302{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.md6_c00302{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m54_c00302{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m16_c00302{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m6_c00302{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m9a_c00302{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m34_c00302{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.med_c00302{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m103_c00302{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.ma6_c00302{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m64_c00302{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m41_c00302{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m2e_c00302{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mf5_c00302{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m18_c00302{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m50_c00302{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);}
.mb6_c00302{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m3f_c00302{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m86_c00302{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m78_c00302{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.mb1_c00302{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);}
.mf0_c00302{transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);}
.m4_c00302{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m48_c00302{transform:matrix(0.572356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572356,0.000000,0.000000,0.250000,0,0);}
.m4d_c00302{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m42_c00302{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m68_c00302{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.me7_c00302{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.mfc_c00302{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.mb0_c00302{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m98_c00302{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.md2_c00302{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mf7_c00302{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m5f_c00302{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m47_c00302{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.mc7_c00302{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m73_c00302{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m67_c00302{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m3d_c00302{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.ma1_c00302{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m99_c00302{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m7b_c00302{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m55_c00302{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.me8_c00302{transform:matrix(0.594917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594917,0.000000,0.000000,0.250000,0,0);}
.md_c00302{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mdc_c00302{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m26_c00302{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.mff_c00302{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);}
.m71_c00302{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.m1e_c00302{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m6f_c00302{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m1_c00302{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m100_c00302{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m96_c00302{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m13_c00302{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m2a_c00302{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.m21_c00302{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m83_c00302{transform:matrix(0.648824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648824,0.000000,0.000000,0.250000,0,0);}
.mb3_c00302{transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);}
.m101_c00302{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.ma3_c00302{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m35_c00302{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.ma0_c00302{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.mb2_c00302{transform:matrix(0.685096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685096,0.000000,0.000000,0.250000,0,0);}
.mc9_c00302{transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);}
.m39_c00302{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mf9_c00302{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m93_c00302{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.maf_c00302{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m89_c00302{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m32_c00302{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mb5_c00302{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m92_c00302{transform:matrix(0.744391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.744391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.744391,0.000000,0.000000,0.250000,0,0);}
.m85_c00302{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m91_c00302{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m2f_c00302{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mc5_c00302{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mab_c00302{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mfe_c00302{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m74_c00302{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m81_c00302{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.me0_c00302{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m7a_c00302{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m9b_c00302{transform:matrix(0.814103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.814103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.814103,0.000000,0.000000,0.250000,0,0);}
.m69_c00302{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m52_c00302{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m58_c00302{transform:matrix(1.165865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.165865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.165865,0.000000,0.000000,0.250000,0,0);}
.m76_c00302{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m53_c00302{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00302{vertical-align:0.000000px;}
.v1_c00302{vertical-align:6.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:-7.189112px;}
.ws1_c00302{word-spacing:0.000000px;}
.fc0_c00302{color:transparent;}
.fs7_c00302{font-size:3.420000px;}
.fs6_c00302{font-size:18.720000px;}
.fs1_c00302{font-size:20.400000px;}
.fs4_c00302{font-size:25.500000px;}
.fs0_c00302{font-size:28.920000px;}
.fs5_c00302{font-size:32.340000px;}
.fs2_c00302{font-size:35.700000px;}
.fs3_c00302{font-size:39.120000px;}
.y0_c00302{bottom:0.000000px;}
.yd9_c00302{bottom:251.745000px;}
.ydd_c00302{bottom:252.825000px;}
.yda_c00302{bottom:253.245000px;}
.ydb_c00302{bottom:253.905000px;}
.ydc_c00302{bottom:254.130000px;}
.yd8_c00302{bottom:255.405000px;}
.yd5_c00302{bottom:272.745000px;}
.yd6_c00302{bottom:273.630000px;}
.yd3_c00302{bottom:274.050000px;}
.yd7_c00302{bottom:274.470000px;}
.yd4_c00302{bottom:274.905000px;}
.yd0_c00302{bottom:292.245000px;}
.ycf_c00302{bottom:293.130000px;}
.yd1_c00302{bottom:293.970000px;}
.yce_c00302{bottom:294.405000px;}
.ycd_c00302{bottom:294.825000px;}
.yd2_c00302{bottom:295.470000px;}
.yca_c00302{bottom:311.745000px;}
.yc8_c00302{bottom:312.405000px;}
.ycb_c00302{bottom:312.630000px;}
.yc9_c00302{bottom:313.470000px;}
.ycc_c00302{bottom:313.905000px;}
.yc6_c00302{bottom:330.405000px;}
.yc4_c00302{bottom:331.245000px;}
.yc7_c00302{bottom:332.130000px;}
.yc3_c00302{bottom:332.325000px;}
.yc2_c00302{bottom:333.405000px;}
.yc5_c00302{bottom:333.630000px;}
.ybd_c00302{bottom:350.745000px;}
.ybc_c00302{bottom:351.180000px;}
.yc1_c00302{bottom:351.630000px;}
.ybf_c00302{bottom:351.825000px;}
.ybe_c00302{bottom:352.905000px;}
.yc0_c00302{bottom:353.130000px;}
.yba_c00302{bottom:368.970000px;}
.yb9_c00302{bottom:369.825000px;}
.yb7_c00302{bottom:370.245000px;}
.ybb_c00302{bottom:371.130000px;}
.yb6_c00302{bottom:372.405000px;}
.yb8_c00302{bottom:372.630000px;}
.yb5_c00302{bottom:373.905000px;}
.yb2_c00302{bottom:389.745000px;}
.yb3_c00302{bottom:391.905000px;}
.yb4_c00302{bottom:392.130000px;}
.yb1_c00302{bottom:393.630000px;}
.yb0_c00302{bottom:409.245000px;}
.yaf_c00302{bottom:411.405000px;}
.yae_c00302{bottom:412.470000px;}
.yad_c00302{bottom:412.905000px;}
.yab_c00302{bottom:428.745000px;}
.yaa_c00302{bottom:430.245000px;}
.yac_c00302{bottom:430.905000px;}
.ya8_c00302{bottom:431.325000px;}
.ya9_c00302{bottom:432.405000px;}
.ya5_c00302{bottom:448.470000px;}
.ya6_c00302{bottom:449.325000px;}
.ya4_c00302{bottom:449.745000px;}
.ya7_c00302{bottom:450.405000px;}
.ya3_c00302{bottom:451.905000px;}
.ya1_c00302{bottom:468.180000px;}
.y9f_c00302{bottom:469.245000px;}
.ya2_c00302{bottom:470.325000px;}
.ya0_c00302{bottom:471.405000px;}
.y9c_c00302{bottom:488.745000px;}
.y9d_c00302{bottom:489.630000px;}
.y99_c00302{bottom:490.245000px;}
.y9e_c00302{bottom:490.470000px;}
.y9a_c00302{bottom:490.905000px;}
.y9b_c00302{bottom:491.130000px;}
.y96_c00302{bottom:508.245000px;}
.y95_c00302{bottom:509.325000px;}
.y97_c00302{bottom:509.970000px;}
.y94_c00302{bottom:510.405000px;}
.y98_c00302{bottom:510.630000px;}
.y93_c00302{bottom:511.905000px;}
.y8e_c00302{bottom:527.745000px;}
.y91_c00302{bottom:528.825000px;}
.y90_c00302{bottom:529.905000px;}
.y92_c00302{bottom:530.130000px;}
.y8f_c00302{bottom:530.970000px;}
.y8d_c00302{bottom:548.745000px;}
.y8c_c00302{bottom:551.970000px;}
.y87_c00302{bottom:568.245000px;}
.y88_c00302{bottom:569.130000px;}
.y8b_c00302{bottom:569.325000px;}
.y8a_c00302{bottom:570.405000px;}
.y89_c00302{bottom:571.470000px;}
.y85_c00302{bottom:587.970000px;}
.y84_c00302{bottom:588.630000px;}
.y83_c00302{bottom:589.470000px;}
.y82_c00302{bottom:589.905000px;}
.y86_c00302{bottom:590.970000px;}
.y81_c00302{bottom:591.405000px;}
.y80_c00302{bottom:608.970000px;}
.y7e_c00302{bottom:609.405000px;}
.y7f_c00302{bottom:609.630000px;}
.y7d_c00302{bottom:610.905000px;}
.y7a_c00302{bottom:626.745000px;}
.y7c_c00302{bottom:627.825000px;}
.y7b_c00302{bottom:628.905000px;}
.y79_c00302{bottom:629.970000px;}
.y77_c00302{bottom:645.405000px;}
.y72_c00302{bottom:646.680000px;}
.y76_c00302{bottom:647.550000px;}
.y74_c00302{bottom:647.745000px;}
.y75_c00302{bottom:648.405000px;}
.y78_c00302{bottom:648.630000px;}
.y73_c00302{bottom:649.905000px;}
.y71_c00302{bottom:668.130000px;}
.y70_c00302{bottom:668.325000px;}
.y6f_c00302{bottom:668.970000px;}
.y6e_c00302{bottom:669.405000px;}
.y6d_c00302{bottom:686.745000px;}
.y6a_c00302{bottom:687.630000px;}
.y6c_c00302{bottom:688.470000px;}
.y69_c00302{bottom:688.905000px;}
.y6b_c00302{bottom:689.130000px;}
.y64_c00302{bottom:705.180000px;}
.y65_c00302{bottom:705.405000px;}
.y67_c00302{bottom:706.245000px;}
.y68_c00302{bottom:707.970000px;}
.y66_c00302{bottom:708.405000px;}
.y60_c00302{bottom:725.745000px;}
.y61_c00302{bottom:727.905000px;}
.y63_c00302{bottom:728.130000px;}
.y62_c00302{bottom:728.970000px;}
.y5f_c00302{bottom:729.405000px;}
.y5d_c00302{bottom:745.245000px;}
.y5b_c00302{bottom:747.405000px;}
.y5e_c00302{bottom:747.630000px;}
.y5c_c00302{bottom:748.470000px;}
.y58_c00302{bottom:765.825000px;}
.y5a_c00302{bottom:766.245000px;}
.y59_c00302{bottom:767.130000px;}
.y57_c00302{bottom:767.970000px;}
.y55_c00302{bottom:768.405000px;}
.y56_c00302{bottom:768.420000px;}
.y52_c00302{bottom:783.405000px;}
.y53_c00302{bottom:784.905000px;}
.y4f_c00302{bottom:785.745000px;}
.y54_c00302{bottom:786.630000px;}
.y51_c00302{bottom:786.825000px;}
.y50_c00302{bottom:787.470000px;}
.y4c_c00302{bottom:802.905000px;}
.y49_c00302{bottom:803.325000px;}
.y4d_c00302{bottom:803.970000px;}
.y4a_c00302{bottom:805.245000px;}
.y4e_c00302{bottom:806.325000px;}
.y4b_c00302{bottom:807.405000px;}
.y46_c00302{bottom:822.405000px;}
.y44_c00302{bottom:823.905000px;}
.y42_c00302{bottom:824.745000px;}
.y41_c00302{bottom:824.970000px;}
.y47_c00302{bottom:825.630000px;}
.y40_c00302{bottom:825.825000px;}
.y43_c00302{bottom:826.905000px;}
.y45_c00302{bottom:827.970000px;}
.y48_c00302{bottom:830.130000px;}
.y3f_c00302{bottom:842.325000px;}
.y3e_c00302{bottom:843.405000px;}
.y3d_c00302{bottom:844.245000px;}
.y3c_c00302{bottom:845.325000px;}
.y3b_c00302{bottom:846.405000px;}
.y39_c00302{bottom:862.905000px;}
.y3a_c00302{bottom:863.325000px;}
.y36_c00302{bottom:863.745000px;}
.y37_c00302{bottom:864.405000px;}
.y35_c00302{bottom:865.470000px;}
.y38_c00302{bottom:866.130000px;}
.y31_c00302{bottom:882.405000px;}
.y2f_c00302{bottom:883.245000px;}
.y32_c00302{bottom:883.470000px;}
.y2e_c00302{bottom:884.325000px;}
.y30_c00302{bottom:885.405000px;}
.y33_c00302{bottom:885.630000px;}
.y34_c00302{bottom:886.920000px;}
.y2b_c00302{bottom:901.905000px;}
.y2a_c00302{bottom:902.745000px;}
.y2d_c00302{bottom:903.405000px;}
.y2c_c00302{bottom:903.825000px;}
.y28_c00302{bottom:904.245000px;}
.y29_c00302{bottom:904.905000px;}
.y24_c00302{bottom:922.245000px;}
.y23_c00302{bottom:924.405000px;}
.y26_c00302{bottom:924.630000px;}
.y25_c00302{bottom:925.470000px;}
.y27_c00302{bottom:925.905000px;}
.y1e_c00302{bottom:940.905000px;}
.y1f_c00302{bottom:942.825000px;}
.y20_c00302{bottom:943.905000px;}
.y22_c00302{bottom:944.130000px;}
.y21_c00302{bottom:945.405000px;}
.y1b_c00302{bottom:962.745000px;}
.y1a_c00302{bottom:963.630000px;}
.y1d_c00302{bottom:963.825000px;}
.y1c_c00302{bottom:964.470000px;}
.y19_c00302{bottom:964.905000px;}
.y16_c00302{bottom:979.905000px;}
.y17_c00302{bottom:980.970000px;}
.y18_c00302{bottom:982.245000px;}
.y14_c00302{bottom:984.405000px;}
.y15_c00302{bottom:985.470000px;}
.y11_c00302{bottom:999.405000px;}
.yf_c00302{bottom:1001.745000px;}
.y12_c00302{bottom:1002.825000px;}
.y13_c00302{bottom:1003.470000px;}
.y10_c00302{bottom:1003.905000px;}
.ye_c00302{bottom:1019.970000px;}
.yb_c00302{bottom:1021.245000px;}
.yd_c00302{bottom:1022.970000px;}
.yc_c00302{bottom:1023.405000px;}
.ya_c00302{bottom:1039.905000px;}
.y9_c00302{bottom:1040.745000px;}
.y8_c00302{bottom:1042.905000px;}
.y4_c00302{bottom:1060.245000px;}
.y7_c00302{bottom:1060.680000px;}
.y6_c00302{bottom:1061.745000px;}
.y3_c00302{bottom:1062.405000px;}
.y5_c00302{bottom:1063.905000px;}
.y1_c00302{bottom:1099.905000px;}
.y2_c00302{bottom:1100.550000px;}
.h9_c00302{height:4.206533px;}
.h7_c00302{height:23.025234px;}
.h2_c00302{height:25.091602px;}
.h5_c00302{height:31.364502px;}
.h1_c00302{height:35.571035px;}
.h6_c00302{height:39.777568px;}
.h8_c00302{height:41.571035px;}
.h3_c00302{height:43.910303px;}
.h4_c00302{height:48.116836px;}
.h0_c00302{height:1335.000000px;}
.w0_c00302{width:880.500000px;}
.x0_c00302{left:0.000000px;}
.x3_c00302{left:151.500000px;}
.x20_c00302{left:152.580000px;}
.xdc_c00302{left:166.500000px;}
.x54_c00302{left:168.000000px;}
.x9e_c00302{left:169.500000px;}
.xc2_c00302{left:171.000000px;}
.x4_c00302{left:181.920000px;}
.x21_c00302{left:183.000000px;}
.xce_c00302{left:184.500000px;}
.x103_c00302{left:186.000000px;}
.x69_c00302{left:187.920000px;}
.x40_c00302{left:189.000000px;}
.x89_c00302{left:190.500000px;}
.x13_c00302{left:192.000000px;}
.x7a_c00302{left:196.500000px;}
.xb2_c00302{left:198.000000px;}
.xed_c00302{left:199.920000px;}
.x36_c00302{left:201.000000px;}
.x55_c00302{left:202.920000px;}
.x106_c00302{left:205.500000px;}
.xbb_c00302{left:209.580000px;}
.xe9_c00302{left:211.920000px;}
.x41_c00302{left:213.000000px;}
.x9f_c00302{left:214.500000px;}
.xe0_c00302{left:216.645000px;}
.x8f_c00302{left:219.000000px;}
.x9a_c00302{left:222.000000px;}
.xc9_c00302{left:223.920000px;}
.x2b_c00302{left:225.000000px;}
.x80_c00302{left:226.500000px;}
.x104_c00302{left:228.420000px;}
.x37_c00302{left:229.920000px;}
.x5d_c00302{left:231.000000px;}
.xb3_c00302{left:232.080000px;}
.x22_c00302{left:234.420000px;}
.xa0_c00302{left:235.920000px;}
.x93_c00302{left:237.000000px;}
.xa7_c00302{left:238.920000px;}
.xdd_c00302{left:241.500000px;}
.x50_c00302{left:249.000000px;}
.xe6_c00302{left:250.080000px;}
.xe1_c00302{left:252.420000px;}
.x2c_c00302{left:253.500000px;}
.x38_c00302{left:256.500000px;}
.x5_c00302{left:257.580000px;}
.x6a_c00302{left:259.920000px;}
.x42_c00302{left:261.000000px;}
.x74_c00302{left:262.500000px;}
.x14_c00302{left:265.500000px;}
.x81_c00302{left:266.580000px;}
.x5e_c00302{left:268.080000px;}
.xbc_c00302{left:270.000000px;}
.x56_c00302{left:273.000000px;}
.x6_c00302{left:274.920000px;}
.x43_c00302{left:279.000000px;}
.x51_c00302{left:280.500000px;}
.x10b_c00302{left:282.000000px;}
.xcf_c00302{left:283.920000px;}
.xca_c00302{left:285.000000px;}
.x110_c00302{left:286.920000px;}
.x2d_c00302{left:289.920000px;}
.xb4_c00302{left:292.920000px;}
.x15_c00302{left:294.420000px;}
.x10c_c00302{left:295.500000px;}
.x7b_c00302{left:297.000000px;}
.x5f_c00302{left:298.500000px;}
.x44_c00302{left:300.000000px;}
.x7_c00302{left:301.500000px;}
.xbd_c00302{left:303.000000px;}
.xf1_c00302{left:304.500000px;}
.xc3_c00302{left:306.420000px;}
.xd7_c00302{left:307.920000px;}
.x39_c00302{left:310.500000px;}
.xd0_c00302{left:311.580000px;}
.xf6_c00302{left:313.080000px;}
.xb5_c00302{left:315.000000px;}
.xf2_c00302{left:319.500000px;}
.x2e_c00302{left:321.000000px;}
.xe7_c00302{left:322.920000px;}
.x82_c00302{left:325.080000px;}
.xab_c00302{left:327.000000px;}
.x6b_c00302{left:328.500000px;}
.xf7_c00302{left:331.920000px;}
.xfa_c00302{left:333.000000px;}
.x3a_c00302{left:334.500000px;}
.xd8_c00302{left:335.580000px;}
.x16_c00302{left:337.500000px;}
.xee_c00302{left:339.000000px;}
.x60_c00302{left:341.580000px;}
.x8a_c00302{left:343.500000px;}
.x83_c00302{left:345.000000px;}
.xfb_c00302{left:346.920000px;}
.xa1_c00302{left:348.000000px;}
.x23_c00302{left:349.500000px;}
.xac_c00302{left:350.580000px;}
.xde_c00302{left:351.645000px;}
.x45_c00302{left:354.420000px;}
.x75_c00302{left:355.920000px;}
.x8_c00302{left:358.080000px;}
.xc4_c00302{left:361.920000px;}
.xa2_c00302{left:363.420000px;}
.x6c_c00302{left:364.500000px;}
.x2f_c00302{left:366.000000px;}
.x52_c00302{left:367.500000px;}
.x9_c00302{left:375.000000px;}
.x90_c00302{left:376.920000px;}
.x57_c00302{left:378.000000px;}
.x24_c00302{left:379.500000px;}
.xd1_c00302{left:382.500000px;}
.xad_c00302{left:384.000000px;}
.xfc_c00302{left:387.000000px;}
.x17_c00302{left:388.500000px;}
.xef_c00302{left:390.420000px;}
.x94_c00302{left:391.500000px;}
.xf3_c00302{left:393.000000px;}
.x91_c00302{left:396.420000px;}
.x2_c00302{left:402.000000px;}
.x6d_c00302{left:403.500000px;}
.xea_c00302{left:404.775000px;}
.x9b_c00302{left:406.080000px;}
.x92_c00302{left:408.000000px;}
.x18_c00302{left:409.080000px;}
.x76_c00302{left:411.420000px;}
.x107_c00302{left:413.580000px;}
.xf4_c00302{left:415.080000px;}
.x25_c00302{left:417.000000px;}
.x46_c00302{left:418.500000px;}
.xae_c00302{left:420.420000px;}
.x7c_c00302{left:421.500000px;}
.xa_c00302{left:424.500000px;}
.x30_c00302{left:427.920000px;}
.xe2_c00302{left:429.000000px;}
.xa3_c00302{left:430.080000px;}
.xcb_c00302{left:431.580000px;}
.x10d_c00302{left:433.500000px;}
.x47_c00302{left:436.920000px;}
.xf9_c00302{left:438.000000px;}
.xb_c00302{left:439.500000px;}
.xd9_c00302{left:441.000000px;}
.x6e_c00302{left:442.500000px;}
.x53_c00302{left:444.000000px;}
.xa8_c00302{left:445.080000px;}
.x19_c00302{left:447.000000px;}
.xfe_c00302{left:448.080000px;}
.x111_c00302{left:449.580000px;}
.x26_c00302{left:451.080000px;}
.xc5_c00302{left:452.145000px;}
.xd2_c00302{left:454.080000px;}
.x31_c00302{left:455.580000px;}
.x61_c00302{left:457.080000px;}
.x8b_c00302{left:459.420000px;}
.xbe_c00302{left:460.920000px;}
.x48_c00302{left:462.000000px;}
.xfd_c00302{left:463.500000px;}
.x77_c00302{left:464.580000px;}
.x95_c00302{left:469.500000px;}
.x3b_c00302{left:471.000000px;}
.x62_c00302{left:475.500000px;}
.xf0_c00302{left:478.080000px;}
.x1a_c00302{left:479.580000px;}
.xd3_c00302{left:482.580000px;}
.x27_c00302{left:484.500000px;}
.xc6_c00302{left:486.000000px;}
.xc_c00302{left:489.000000px;}
.x96_c00302{left:490.500000px;}
.x49_c00302{left:491.580000px;}
.x100_c00302{left:493.500000px;}
.x58_c00302{left:495.420000px;}
.x84_c00302{left:496.920000px;}
.x112_c00302{left:498.000000px;}
.x8c_c00302{left:499.920000px;}
.x1b_c00302{left:501.420000px;}
.xff_c00302{left:502.920000px;}
.xe3_c00302{left:504.000000px;}
.x28_c00302{left:505.080000px;}
.x63_c00302{left:507.000000px;}
.x4a_c00302{left:508.920000px;}
.x7d_c00302{left:511.080000px;}
.x101_c00302{left:512.580000px;}
.xa4_c00302{left:514.500000px;}
.x32_c00302{left:515.580000px;}
.x9c_c00302{left:517.920000px;}
.x6f_c00302{left:519.420000px;}
.xbf_c00302{left:520.500000px;}
.x3c_c00302{left:522.000000px;}
.xaf_c00302{left:523.500000px;}
.x59_c00302{left:524.580000px;}
.xda_c00302{left:526.920000px;}
.x1c_c00302{left:529.500000px;}
.xd_c00302{left:535.500000px;}
.xa5_c00302{left:537.420000px;}
.xd4_c00302{left:541.080000px;}
.x10e_c00302{left:542.580000px;}
.xb0_c00302{left:544.500000px;}
.x85_c00302{left:545.580000px;}
.x8d_c00302{left:547.080000px;}
.x105_c00302{left:549.000000px;}
.x7e_c00302{left:550.500000px;}
.x97_c00302{left:553.500000px;}
.x33_c00302{left:555.000000px;}
.x70_c00302{left:556.080000px;}
.xdf_c00302{left:557.355000px;}
.xe_c00302{left:558.420000px;}
.xb6_c00302{left:560.580000px;}
.xcc_c00302{left:562.500000px;}
.x86_c00302{left:564.000000px;}
.x64_c00302{left:565.500000px;}
.x3d_c00302{left:567.000000px;}
.xeb_c00302{left:568.500000px;}
.x5a_c00302{left:570.000000px;}
.x4b_c00302{left:573.000000px;}
.xa6_c00302{left:575.580000px;}
.x1d_c00302{left:576.855000px;}
.x108_c00302{left:579.000000px;}
.x113_c00302{left:581.580000px;}
.xa9_c00302{left:582.645000px;}
.x102_c00302{left:587.580000px;}
.xf_c00302{left:589.920000px;}
.xb7_c00302{left:591.000000px;}
.xe4_c00302{left:592.500000px;}
.x4c_c00302{left:594.420000px;}
.xf5_c00302{left:596.580000px;}
.x65_c00302{left:601.500000px;}
.xe8_c00302{left:604.920000px;}
.x34_c00302{left:607.500000px;}
.x5b_c00302{left:608.580000px;}
.xb1_c00302{left:610.920000px;}
.x1e_c00302{left:612.000000px;}
.xf8_c00302{left:613.500000px;}
.xe5_c00302{left:615.000000px;}
.x10_c00302{left:616.500000px;}
.x71_c00302{left:617.580000px;}
.x29_c00302{left:621.000000px;}
.x109_c00302{left:625.500000px;}
.x9d_c00302{left:627.000000px;}
.xdb_c00302{left:628.500000px;}
.xb8_c00302{left:630.000000px;}
.x66_c00302{left:632.580000px;}
.xcd_c00302{left:636.000000px;}
.x98_c00302{left:637.080000px;}
.x3e_c00302{left:638.580000px;}
.x8e_c00302{left:640.920000px;}
.xaa_c00302{left:642.000000px;}
.x5c_c00302{left:643.920000px;}
.xc0_c00302{left:648.000000px;}
.x35_c00302{left:649.500000px;}
.xc7_c00302{left:651.000000px;}
.x78_c00302{left:652.500000px;}
.x11_c00302{left:653.580000px;}
.x1f_c00302{left:655.920000px;}
.x3f_c00302{left:657.420000px;}
.x4d_c00302{left:658.500000px;}
.xb9_c00302{left:661.920000px;}
.x10a_c00302{left:663.000000px;}
.x67_c00302{left:667.920000px;}
.x7f_c00302{left:670.500000px;}
.x72_c00302{left:673.500000px;}
.x99_c00302{left:681.000000px;}
.xec_c00302{left:682.500000px;}
.x12_c00302{left:684.000000px;}
.x4e_c00302{left:688.920000px;}
.xba_c00302{left:690.000000px;}
.x79_c00302{left:691.500000px;}
.x73_c00302{left:694.080000px;}
.x2a_c00302{left:696.420000px;}
.x10f_c00302{left:697.500000px;}
.xc1_c00302{left:700.500000px;}
.xd5_c00302{left:702.000000px;}
.xc8_c00302{left:703.080000px;}
.x1_c00302{left:706.080000px;}
.x114_c00302{left:711.420000px;}
.x87_c00302{left:714.000000px;}
.x68_c00302{left:715.080000px;}
.xd6_c00302{left:717.000000px;}
.x4f_c00302{left:718.500000px;}
.x88_c00302{left:720.420000px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.v1_c00302{vertical-align:5.333333pt;}
.ls0_c00302{letter-spacing:0.000000pt;}
.ws0_c00302{word-spacing:-6.390322pt;}
.ws1_c00302{word-spacing:0.000000pt;}
.fs7_c00302{font-size:3.040000pt;}
.fs6_c00302{font-size:16.640000pt;}
.fs1_c00302{font-size:18.133333pt;}
.fs4_c00302{font-size:22.666667pt;}
.fs0_c00302{font-size:25.706667pt;}
.fs5_c00302{font-size:28.746667pt;}
.fs2_c00302{font-size:31.733333pt;}
.fs3_c00302{font-size:34.773333pt;}
.y0_c00302{bottom:0.000000pt;}
.yd9_c00302{bottom:223.773333pt;}
.ydd_c00302{bottom:224.733333pt;}
.yda_c00302{bottom:225.106667pt;}
.ydb_c00302{bottom:225.693333pt;}
.ydc_c00302{bottom:225.893333pt;}
.yd8_c00302{bottom:227.026667pt;}
.yd5_c00302{bottom:242.440000pt;}
.yd6_c00302{bottom:243.226667pt;}
.yd3_c00302{bottom:243.600000pt;}
.yd7_c00302{bottom:243.973333pt;}
.yd4_c00302{bottom:244.360000pt;}
.yd0_c00302{bottom:259.773333pt;}
.ycf_c00302{bottom:260.560000pt;}
.yd1_c00302{bottom:261.306667pt;}
.yce_c00302{bottom:261.693333pt;}
.ycd_c00302{bottom:262.066667pt;}
.yd2_c00302{bottom:262.640000pt;}
.yca_c00302{bottom:277.106667pt;}
.yc8_c00302{bottom:277.693333pt;}
.ycb_c00302{bottom:277.893333pt;}
.yc9_c00302{bottom:278.640000pt;}
.ycc_c00302{bottom:279.026667pt;}
.yc6_c00302{bottom:293.693333pt;}
.yc4_c00302{bottom:294.440000pt;}
.yc7_c00302{bottom:295.226667pt;}
.yc3_c00302{bottom:295.400000pt;}
.yc2_c00302{bottom:296.360000pt;}
.yc5_c00302{bottom:296.560000pt;}
.ybd_c00302{bottom:311.773333pt;}
.ybc_c00302{bottom:312.160000pt;}
.yc1_c00302{bottom:312.560000pt;}
.ybf_c00302{bottom:312.733333pt;}
.ybe_c00302{bottom:313.693333pt;}
.yc0_c00302{bottom:313.893333pt;}
.yba_c00302{bottom:327.973333pt;}
.yb9_c00302{bottom:328.733333pt;}
.yb7_c00302{bottom:329.106667pt;}
.ybb_c00302{bottom:329.893333pt;}
.yb6_c00302{bottom:331.026667pt;}
.yb8_c00302{bottom:331.226667pt;}
.yb5_c00302{bottom:332.360000pt;}
.yb2_c00302{bottom:346.440000pt;}
.yb3_c00302{bottom:348.360000pt;}
.yb4_c00302{bottom:348.560000pt;}
.yb1_c00302{bottom:349.893333pt;}
.yb0_c00302{bottom:363.773333pt;}
.yaf_c00302{bottom:365.693333pt;}
.yae_c00302{bottom:366.640000pt;}
.yad_c00302{bottom:367.026667pt;}
.yab_c00302{bottom:381.106667pt;}
.yaa_c00302{bottom:382.440000pt;}
.yac_c00302{bottom:383.026667pt;}
.ya8_c00302{bottom:383.400000pt;}
.ya9_c00302{bottom:384.360000pt;}
.ya5_c00302{bottom:398.640000pt;}
.ya6_c00302{bottom:399.400000pt;}
.ya4_c00302{bottom:399.773333pt;}
.ya7_c00302{bottom:400.360000pt;}
.ya3_c00302{bottom:401.693333pt;}
.ya1_c00302{bottom:416.160000pt;}
.y9f_c00302{bottom:417.106667pt;}
.ya2_c00302{bottom:418.066667pt;}
.ya0_c00302{bottom:419.026667pt;}
.y9c_c00302{bottom:434.440000pt;}
.y9d_c00302{bottom:435.226667pt;}
.y99_c00302{bottom:435.773333pt;}
.y9e_c00302{bottom:435.973333pt;}
.y9a_c00302{bottom:436.360000pt;}
.y9b_c00302{bottom:436.560000pt;}
.y96_c00302{bottom:451.773333pt;}
.y95_c00302{bottom:452.733333pt;}
.y97_c00302{bottom:453.306667pt;}
.y94_c00302{bottom:453.693333pt;}
.y98_c00302{bottom:453.893333pt;}
.y93_c00302{bottom:455.026667pt;}
.y8e_c00302{bottom:469.106667pt;}
.y91_c00302{bottom:470.066667pt;}
.y90_c00302{bottom:471.026667pt;}
.y92_c00302{bottom:471.226667pt;}
.y8f_c00302{bottom:471.973333pt;}
.y8d_c00302{bottom:487.773333pt;}
.y8c_c00302{bottom:490.640000pt;}
.y87_c00302{bottom:505.106667pt;}
.y88_c00302{bottom:505.893333pt;}
.y8b_c00302{bottom:506.066667pt;}
.y8a_c00302{bottom:507.026667pt;}
.y89_c00302{bottom:507.973333pt;}
.y85_c00302{bottom:522.640000pt;}
.y84_c00302{bottom:523.226667pt;}
.y83_c00302{bottom:523.973333pt;}
.y82_c00302{bottom:524.360000pt;}
.y86_c00302{bottom:525.306667pt;}
.y81_c00302{bottom:525.693333pt;}
.y80_c00302{bottom:541.306667pt;}
.y7e_c00302{bottom:541.693333pt;}
.y7f_c00302{bottom:541.893333pt;}
.y7d_c00302{bottom:543.026667pt;}
.y7a_c00302{bottom:557.106667pt;}
.y7c_c00302{bottom:558.066667pt;}
.y7b_c00302{bottom:559.026667pt;}
.y79_c00302{bottom:559.973333pt;}
.y77_c00302{bottom:573.693333pt;}
.y72_c00302{bottom:574.826667pt;}
.y76_c00302{bottom:575.600000pt;}
.y74_c00302{bottom:575.773333pt;}
.y75_c00302{bottom:576.360000pt;}
.y78_c00302{bottom:576.560000pt;}
.y73_c00302{bottom:577.693333pt;}
.y71_c00302{bottom:593.893333pt;}
.y70_c00302{bottom:594.066667pt;}
.y6f_c00302{bottom:594.640000pt;}
.y6e_c00302{bottom:595.026667pt;}
.y6d_c00302{bottom:610.440000pt;}
.y6a_c00302{bottom:611.226667pt;}
.y6c_c00302{bottom:611.973333pt;}
.y69_c00302{bottom:612.360000pt;}
.y6b_c00302{bottom:612.560000pt;}
.y64_c00302{bottom:626.826667pt;}
.y65_c00302{bottom:627.026667pt;}
.y67_c00302{bottom:627.773333pt;}
.y68_c00302{bottom:629.306667pt;}
.y66_c00302{bottom:629.693333pt;}
.y60_c00302{bottom:645.106667pt;}
.y61_c00302{bottom:647.026667pt;}
.y63_c00302{bottom:647.226667pt;}
.y62_c00302{bottom:647.973333pt;}
.y5f_c00302{bottom:648.360000pt;}
.y5d_c00302{bottom:662.440000pt;}
.y5b_c00302{bottom:664.360000pt;}
.y5e_c00302{bottom:664.560000pt;}
.y5c_c00302{bottom:665.306667pt;}
.y58_c00302{bottom:680.733333pt;}
.y5a_c00302{bottom:681.106667pt;}
.y59_c00302{bottom:681.893333pt;}
.y57_c00302{bottom:682.640000pt;}
.y55_c00302{bottom:683.026667pt;}
.y56_c00302{bottom:683.040000pt;}
.y52_c00302{bottom:696.360000pt;}
.y53_c00302{bottom:697.693333pt;}
.y4f_c00302{bottom:698.440000pt;}
.y54_c00302{bottom:699.226667pt;}
.y51_c00302{bottom:699.400000pt;}
.y50_c00302{bottom:699.973333pt;}
.y4c_c00302{bottom:713.693333pt;}
.y49_c00302{bottom:714.066667pt;}
.y4d_c00302{bottom:714.640000pt;}
.y4a_c00302{bottom:715.773333pt;}
.y4e_c00302{bottom:716.733333pt;}
.y4b_c00302{bottom:717.693333pt;}
.y46_c00302{bottom:731.026667pt;}
.y44_c00302{bottom:732.360000pt;}
.y42_c00302{bottom:733.106667pt;}
.y41_c00302{bottom:733.306667pt;}
.y47_c00302{bottom:733.893333pt;}
.y40_c00302{bottom:734.066667pt;}
.y43_c00302{bottom:735.026667pt;}
.y45_c00302{bottom:735.973333pt;}
.y48_c00302{bottom:737.893333pt;}
.y3f_c00302{bottom:748.733333pt;}
.y3e_c00302{bottom:749.693333pt;}
.y3d_c00302{bottom:750.440000pt;}
.y3c_c00302{bottom:751.400000pt;}
.y3b_c00302{bottom:752.360000pt;}
.y39_c00302{bottom:767.026667pt;}
.y3a_c00302{bottom:767.400000pt;}
.y36_c00302{bottom:767.773333pt;}
.y37_c00302{bottom:768.360000pt;}
.y35_c00302{bottom:769.306667pt;}
.y38_c00302{bottom:769.893333pt;}
.y31_c00302{bottom:784.360000pt;}
.y2f_c00302{bottom:785.106667pt;}
.y32_c00302{bottom:785.306667pt;}
.y2e_c00302{bottom:786.066667pt;}
.y30_c00302{bottom:787.026667pt;}
.y33_c00302{bottom:787.226667pt;}
.y34_c00302{bottom:788.373333pt;}
.y2b_c00302{bottom:801.693333pt;}
.y2a_c00302{bottom:802.440000pt;}
.y2d_c00302{bottom:803.026667pt;}
.y2c_c00302{bottom:803.400000pt;}
.y28_c00302{bottom:803.773333pt;}
.y29_c00302{bottom:804.360000pt;}
.y24_c00302{bottom:819.773333pt;}
.y23_c00302{bottom:821.693333pt;}
.y26_c00302{bottom:821.893333pt;}
.y25_c00302{bottom:822.640000pt;}
.y27_c00302{bottom:823.026667pt;}
.y1e_c00302{bottom:836.360000pt;}
.y1f_c00302{bottom:838.066667pt;}
.y20_c00302{bottom:839.026667pt;}
.y22_c00302{bottom:839.226667pt;}
.y21_c00302{bottom:840.360000pt;}
.y1b_c00302{bottom:855.773333pt;}
.y1a_c00302{bottom:856.560000pt;}
.y1d_c00302{bottom:856.733333pt;}
.y1c_c00302{bottom:857.306667pt;}
.y19_c00302{bottom:857.693333pt;}
.y16_c00302{bottom:871.026667pt;}
.y17_c00302{bottom:871.973333pt;}
.y18_c00302{bottom:873.106667pt;}
.y14_c00302{bottom:875.026667pt;}
.y15_c00302{bottom:875.973333pt;}
.y11_c00302{bottom:888.360000pt;}
.yf_c00302{bottom:890.440000pt;}
.y12_c00302{bottom:891.400000pt;}
.y13_c00302{bottom:891.973333pt;}
.y10_c00302{bottom:892.360000pt;}
.ye_c00302{bottom:906.640000pt;}
.yb_c00302{bottom:907.773333pt;}
.yd_c00302{bottom:909.306667pt;}
.yc_c00302{bottom:909.693333pt;}
.ya_c00302{bottom:924.360000pt;}
.y9_c00302{bottom:925.106667pt;}
.y8_c00302{bottom:927.026667pt;}
.y4_c00302{bottom:942.440000pt;}
.y7_c00302{bottom:942.826667pt;}
.y6_c00302{bottom:943.773333pt;}
.y3_c00302{bottom:944.360000pt;}
.y5_c00302{bottom:945.693333pt;}
.y1_c00302{bottom:977.693333pt;}
.y2_c00302{bottom:978.266667pt;}
.h9_c00302{height:3.739141pt;}
.h7_c00302{height:20.466875pt;}
.h2_c00302{height:22.303646pt;}
.h5_c00302{height:27.879557pt;}
.h1_c00302{height:31.618698pt;}
.h6_c00302{height:35.357839pt;}
.h8_c00302{height:36.952031pt;}
.h3_c00302{height:39.031380pt;}
.h4_c00302{height:42.770521pt;}
.h0_c00302{height:1186.666667pt;}
.w0_c00302{width:782.666667pt;}
.x0_c00302{left:0.000000pt;}
.x3_c00302{left:134.666667pt;}
.x20_c00302{left:135.626667pt;}
.xdc_c00302{left:148.000000pt;}
.x54_c00302{left:149.333333pt;}
.x9e_c00302{left:150.666667pt;}
.xc2_c00302{left:152.000000pt;}
.x4_c00302{left:161.706667pt;}
.x21_c00302{left:162.666667pt;}
.xce_c00302{left:164.000000pt;}
.x103_c00302{left:165.333333pt;}
.x69_c00302{left:167.040000pt;}
.x40_c00302{left:168.000000pt;}
.x89_c00302{left:169.333333pt;}
.x13_c00302{left:170.666667pt;}
.x7a_c00302{left:174.666667pt;}
.xb2_c00302{left:176.000000pt;}
.xed_c00302{left:177.706667pt;}
.x36_c00302{left:178.666667pt;}
.x55_c00302{left:180.373333pt;}
.x106_c00302{left:182.666667pt;}
.xbb_c00302{left:186.293333pt;}
.xe9_c00302{left:188.373333pt;}
.x41_c00302{left:189.333333pt;}
.x9f_c00302{left:190.666667pt;}
.xe0_c00302{left:192.573333pt;}
.x8f_c00302{left:194.666667pt;}
.x9a_c00302{left:197.333333pt;}
.xc9_c00302{left:199.040000pt;}
.x2b_c00302{left:200.000000pt;}
.x80_c00302{left:201.333333pt;}
.x104_c00302{left:203.040000pt;}
.x37_c00302{left:204.373333pt;}
.x5d_c00302{left:205.333333pt;}
.xb3_c00302{left:206.293333pt;}
.x22_c00302{left:208.373333pt;}
.xa0_c00302{left:209.706667pt;}
.x93_c00302{left:210.666667pt;}
.xa7_c00302{left:212.373333pt;}
.xdd_c00302{left:214.666667pt;}
.x50_c00302{left:221.333333pt;}
.xe6_c00302{left:222.293333pt;}
.xe1_c00302{left:224.373333pt;}
.x2c_c00302{left:225.333333pt;}
.x38_c00302{left:228.000000pt;}
.x5_c00302{left:228.960000pt;}
.x6a_c00302{left:231.040000pt;}
.x42_c00302{left:232.000000pt;}
.x74_c00302{left:233.333333pt;}
.x14_c00302{left:236.000000pt;}
.x81_c00302{left:236.960000pt;}
.x5e_c00302{left:238.293333pt;}
.xbc_c00302{left:240.000000pt;}
.x56_c00302{left:242.666667pt;}
.x6_c00302{left:244.373333pt;}
.x43_c00302{left:248.000000pt;}
.x51_c00302{left:249.333333pt;}
.x10b_c00302{left:250.666667pt;}
.xcf_c00302{left:252.373333pt;}
.xca_c00302{left:253.333333pt;}
.x110_c00302{left:255.040000pt;}
.x2d_c00302{left:257.706667pt;}
.xb4_c00302{left:260.373333pt;}
.x15_c00302{left:261.706667pt;}
.x10c_c00302{left:262.666667pt;}
.x7b_c00302{left:264.000000pt;}
.x5f_c00302{left:265.333333pt;}
.x44_c00302{left:266.666667pt;}
.x7_c00302{left:268.000000pt;}
.xbd_c00302{left:269.333333pt;}
.xf1_c00302{left:270.666667pt;}
.xc3_c00302{left:272.373333pt;}
.xd7_c00302{left:273.706667pt;}
.x39_c00302{left:276.000000pt;}
.xd0_c00302{left:276.960000pt;}
.xf6_c00302{left:278.293333pt;}
.xb5_c00302{left:280.000000pt;}
.xf2_c00302{left:284.000000pt;}
.x2e_c00302{left:285.333333pt;}
.xe7_c00302{left:287.040000pt;}
.x82_c00302{left:288.960000pt;}
.xab_c00302{left:290.666667pt;}
.x6b_c00302{left:292.000000pt;}
.xf7_c00302{left:295.040000pt;}
.xfa_c00302{left:296.000000pt;}
.x3a_c00302{left:297.333333pt;}
.xd8_c00302{left:298.293333pt;}
.x16_c00302{left:300.000000pt;}
.xee_c00302{left:301.333333pt;}
.x60_c00302{left:303.626667pt;}
.x8a_c00302{left:305.333333pt;}
.x83_c00302{left:306.666667pt;}
.xfb_c00302{left:308.373333pt;}
.xa1_c00302{left:309.333333pt;}
.x23_c00302{left:310.666667pt;}
.xac_c00302{left:311.626667pt;}
.xde_c00302{left:312.573333pt;}
.x45_c00302{left:315.040000pt;}
.x75_c00302{left:316.373333pt;}
.x8_c00302{left:318.293333pt;}
.xc4_c00302{left:321.706667pt;}
.xa2_c00302{left:323.040000pt;}
.x6c_c00302{left:324.000000pt;}
.x2f_c00302{left:325.333333pt;}
.x52_c00302{left:326.666667pt;}
.x9_c00302{left:333.333333pt;}
.x90_c00302{left:335.040000pt;}
.x57_c00302{left:336.000000pt;}
.x24_c00302{left:337.333333pt;}
.xd1_c00302{left:340.000000pt;}
.xad_c00302{left:341.333333pt;}
.xfc_c00302{left:344.000000pt;}
.x17_c00302{left:345.333333pt;}
.xef_c00302{left:347.040000pt;}
.x94_c00302{left:348.000000pt;}
.xf3_c00302{left:349.333333pt;}
.x91_c00302{left:352.373333pt;}
.x2_c00302{left:357.333333pt;}
.x6d_c00302{left:358.666667pt;}
.xea_c00302{left:359.800000pt;}
.x9b_c00302{left:360.960000pt;}
.x92_c00302{left:362.666667pt;}
.x18_c00302{left:363.626667pt;}
.x76_c00302{left:365.706667pt;}
.x107_c00302{left:367.626667pt;}
.xf4_c00302{left:368.960000pt;}
.x25_c00302{left:370.666667pt;}
.x46_c00302{left:372.000000pt;}
.xae_c00302{left:373.706667pt;}
.x7c_c00302{left:374.666667pt;}
.xa_c00302{left:377.333333pt;}
.x30_c00302{left:380.373333pt;}
.xe2_c00302{left:381.333333pt;}
.xa3_c00302{left:382.293333pt;}
.xcb_c00302{left:383.626667pt;}
.x10d_c00302{left:385.333333pt;}
.x47_c00302{left:388.373333pt;}
.xf9_c00302{left:389.333333pt;}
.xb_c00302{left:390.666667pt;}
.xd9_c00302{left:392.000000pt;}
.x6e_c00302{left:393.333333pt;}
.x53_c00302{left:394.666667pt;}
.xa8_c00302{left:395.626667pt;}
.x19_c00302{left:397.333333pt;}
.xfe_c00302{left:398.293333pt;}
.x111_c00302{left:399.626667pt;}
.x26_c00302{left:400.960000pt;}
.xc5_c00302{left:401.906667pt;}
.xd2_c00302{left:403.626667pt;}
.x31_c00302{left:404.960000pt;}
.x61_c00302{left:406.293333pt;}
.x8b_c00302{left:408.373333pt;}
.xbe_c00302{left:409.706667pt;}
.x48_c00302{left:410.666667pt;}
.xfd_c00302{left:412.000000pt;}
.x77_c00302{left:412.960000pt;}
.x95_c00302{left:417.333333pt;}
.x3b_c00302{left:418.666667pt;}
.x62_c00302{left:422.666667pt;}
.xf0_c00302{left:424.960000pt;}
.x1a_c00302{left:426.293333pt;}
.xd3_c00302{left:428.960000pt;}
.x27_c00302{left:430.666667pt;}
.xc6_c00302{left:432.000000pt;}
.xc_c00302{left:434.666667pt;}
.x96_c00302{left:436.000000pt;}
.x49_c00302{left:436.960000pt;}
.x100_c00302{left:438.666667pt;}
.x58_c00302{left:440.373333pt;}
.x84_c00302{left:441.706667pt;}
.x112_c00302{left:442.666667pt;}
.x8c_c00302{left:444.373333pt;}
.x1b_c00302{left:445.706667pt;}
.xff_c00302{left:447.040000pt;}
.xe3_c00302{left:448.000000pt;}
.x28_c00302{left:448.960000pt;}
.x63_c00302{left:450.666667pt;}
.x4a_c00302{left:452.373333pt;}
.x7d_c00302{left:454.293333pt;}
.x101_c00302{left:455.626667pt;}
.xa4_c00302{left:457.333333pt;}
.x32_c00302{left:458.293333pt;}
.x9c_c00302{left:460.373333pt;}
.x6f_c00302{left:461.706667pt;}
.xbf_c00302{left:462.666667pt;}
.x3c_c00302{left:464.000000pt;}
.xaf_c00302{left:465.333333pt;}
.x59_c00302{left:466.293333pt;}
.xda_c00302{left:468.373333pt;}
.x1c_c00302{left:470.666667pt;}
.xd_c00302{left:476.000000pt;}
.xa5_c00302{left:477.706667pt;}
.xd4_c00302{left:480.960000pt;}
.x10e_c00302{left:482.293333pt;}
.xb0_c00302{left:484.000000pt;}
.x85_c00302{left:484.960000pt;}
.x8d_c00302{left:486.293333pt;}
.x105_c00302{left:488.000000pt;}
.x7e_c00302{left:489.333333pt;}
.x97_c00302{left:492.000000pt;}
.x33_c00302{left:493.333333pt;}
.x70_c00302{left:494.293333pt;}
.xdf_c00302{left:495.426667pt;}
.xe_c00302{left:496.373333pt;}
.xb6_c00302{left:498.293333pt;}
.xcc_c00302{left:500.000000pt;}
.x86_c00302{left:501.333333pt;}
.x64_c00302{left:502.666667pt;}
.x3d_c00302{left:504.000000pt;}
.xeb_c00302{left:505.333333pt;}
.x5a_c00302{left:506.666667pt;}
.x4b_c00302{left:509.333333pt;}
.xa6_c00302{left:511.626667pt;}
.x1d_c00302{left:512.760000pt;}
.x108_c00302{left:514.666667pt;}
.x113_c00302{left:516.960000pt;}
.xa9_c00302{left:517.906667pt;}
.x102_c00302{left:522.293333pt;}
.xf_c00302{left:524.373333pt;}
.xb7_c00302{left:525.333333pt;}
.xe4_c00302{left:526.666667pt;}
.x4c_c00302{left:528.373333pt;}
.xf5_c00302{left:530.293333pt;}
.x65_c00302{left:534.666667pt;}
.xe8_c00302{left:537.706667pt;}
.x34_c00302{left:540.000000pt;}
.x5b_c00302{left:540.960000pt;}
.xb1_c00302{left:543.040000pt;}
.x1e_c00302{left:544.000000pt;}
.xf8_c00302{left:545.333333pt;}
.xe5_c00302{left:546.666667pt;}
.x10_c00302{left:548.000000pt;}
.x71_c00302{left:548.960000pt;}
.x29_c00302{left:552.000000pt;}
.x109_c00302{left:556.000000pt;}
.x9d_c00302{left:557.333333pt;}
.xdb_c00302{left:558.666667pt;}
.xb8_c00302{left:560.000000pt;}
.x66_c00302{left:562.293333pt;}
.xcd_c00302{left:565.333333pt;}
.x98_c00302{left:566.293333pt;}
.x3e_c00302{left:567.626667pt;}
.x8e_c00302{left:569.706667pt;}
.xaa_c00302{left:570.666667pt;}
.x5c_c00302{left:572.373333pt;}
.xc0_c00302{left:576.000000pt;}
.x35_c00302{left:577.333333pt;}
.xc7_c00302{left:578.666667pt;}
.x78_c00302{left:580.000000pt;}
.x11_c00302{left:580.960000pt;}
.x1f_c00302{left:583.040000pt;}
.x3f_c00302{left:584.373333pt;}
.x4d_c00302{left:585.333333pt;}
.xb9_c00302{left:588.373333pt;}
.x10a_c00302{left:589.333333pt;}
.x67_c00302{left:593.706667pt;}
.x7f_c00302{left:596.000000pt;}
.x72_c00302{left:598.666667pt;}
.x99_c00302{left:605.333333pt;}
.xec_c00302{left:606.666667pt;}
.x12_c00302{left:608.000000pt;}
.x4e_c00302{left:612.373333pt;}
.xba_c00302{left:613.333333pt;}
.x79_c00302{left:614.666667pt;}
.x73_c00302{left:616.960000pt;}
.x2a_c00302{left:619.040000pt;}
.x10f_c00302{left:620.000000pt;}
.xc1_c00302{left:622.666667pt;}
.xd5_c00302{left:624.000000pt;}
.xc8_c00302{left:624.960000pt;}
.x1_c00302{left:627.626667pt;}
.x114_c00302{left:632.373333pt;}
.x87_c00302{left:634.666667pt;}
.x68_c00302{left:635.626667pt;}
.xd6_c00302{left:637.333333pt;}
.x4f_c00302{left:638.666667pt;}
.x88_c00302{left:640.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_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_64b33eab78391818e8c47adb.woff2')format("woff");}.ff1_c00303{font-family:ff1_c00303;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md2_c00303{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.mad_c00303{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m1c_c00303{transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);}
.ma6_c00303{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.m46_c00303{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m1a_c00303{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m8d_c00303{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mba_c00303{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.ma9_c00303{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m9b_c00303{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m7e_c00303{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m3c_c00303{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m84_c00303{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m58_c00303{transform:matrix(0.386503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386503,0.000000,0.000000,0.250000,0,0);}
.m74_c00303{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.me4_c00303{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.me9_c00303{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m7d_c00303{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mcf_c00303{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.ma3_c00303{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m91_c00303{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m82_c00303{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.mab_c00303{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m75_c00303{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mbd_c00303{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mc_c00303{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m2a_c00303{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m4c_c00303{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m50_c00303{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m51_c00303{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m8c_c00303{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m62_c00303{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m10_c00303{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.me3_c00303{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.m6f_c00303{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mb7_c00303{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.md6_c00303{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m1b_c00303{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mc7_c00303{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m6e_c00303{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.maa_c00303{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.mb1_c00303{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m68_c00303{transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);}
.m48_c00303{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m78_c00303{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.me8_c00303{transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);}
.m39_c00303{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m45_c00303{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.ma5_c00303{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m96_c00303{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.md0_c00303{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m23_c00303{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.mc9_c00303{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.me7_c00303{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m77_c00303{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m9_c00303{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.mc2_c00303{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.mdc_c00303{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m35_c00303{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mca_c00303{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.ma4_c00303{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m6c_c00303{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m4f_c00303{transform:matrix(0.435529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435529,0.000000,0.000000,0.250000,0,0);}
.ma2_c00303{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m55_c00303{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mbb_c00303{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.md7_c00303{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.m60_c00303{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.m70_c00303{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.m20_c00303{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m6b_c00303{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m9a_c00303{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m3b_c00303{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.mc6_c00303{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m5f_c00303{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.m2d_c00303{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m94_c00303{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m27_c00303{transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);}
.m30_c00303{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m87_c00303{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mac_c00303{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.m72_c00303{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m8a_c00303{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.mb4_c00303{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.ma_c00303{transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);}
.m43_c00303{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.m81_c00303{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00303{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.m95_c00303{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m14_c00303{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m80_c00303{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m3d_c00303{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m7b_c00303{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m7a_c00303{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mf_c00303{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m73_c00303{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m5c_c00303{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.mb6_c00303{transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);}
.m32_c00303{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m34_c00303{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.md_c00303{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.mb0_c00303{transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);}
.mdd_c00303{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m1_c00303{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m66_c00303{transform:matrix(0.491765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491765,0.000000,0.000000,0.250000,0,0);}
.m52_c00303{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m28_c00303{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.me1_c00303{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m3f_c00303{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m61_c00303{transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);}
.m44_c00303{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_c00303{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m16_c00303{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.mcd_c00303{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mde_c00303{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m71_c00303{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m4e_c00303{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.md5_c00303{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m21_c00303{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.me2_c00303{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m22_c00303{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m12_c00303{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m64_c00303{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);}
.m4b_c00303{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m18_c00303{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m29_c00303{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m97_c00303{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m24_c00303{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.m99_c00303{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m93_c00303{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mcb_c00303{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m3_c00303{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.mb9_c00303{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mb8_c00303{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m2_c00303{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m8b_c00303{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m98_c00303{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m7_c00303{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m1d_c00303{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.maf_c00303{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m8f_c00303{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.ma1_c00303{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m3a_c00303{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m92_c00303{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m2b_c00303{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.me0_c00303{transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);}
.m13_c00303{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m89_c00303{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.ma7_c00303{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m2e_c00303{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m2c_c00303{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.md8_c00303{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.md3_c00303{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.m9f_c00303{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m19_c00303{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m5b_c00303{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m86_c00303{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mb2_c00303{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m6_c00303{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mdf_c00303{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m67_c00303{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m9e_c00303{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.me5_c00303{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m3e_c00303{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m11_c00303{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m38_c00303{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mb5_c00303{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m5e_c00303{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.mc8_c00303{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m4a_c00303{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m47_c00303{transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);}
.mce_c00303{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m9c_c00303{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mea_c00303{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.ma0_c00303{transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);}
.m40_c00303{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.me6_c00303{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.mae_c00303{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m4_c00303{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m5a_c00303{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.mc3_c00303{transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);}
.mdb_c00303{transform:matrix(0.574519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574519,0.000000,0.000000,0.250000,0,0);}
.m53_c00303{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m57_c00303{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m6a_c00303{transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);}
.mb3_c00303{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.m33_c00303{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m37_c00303{transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);}
.mcc_c00303{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m17_c00303{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mbc_c00303{transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);}
.m7c_c00303{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m79_c00303{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m1e_c00303{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m49_c00303{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mda_c00303{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m42_c00303{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m31_c00303{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mbe_c00303{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);}
.mc5_c00303{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m83_c00303{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m0_c00303{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.mc4_c00303{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m26_c00303{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m25_c00303{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m7f_c00303{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m65_c00303{transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);}
.m69_c00303{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);}
.m76_c00303{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);}
.mc1_c00303{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m88_c00303{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m56_c00303{transform:matrix(0.658824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.658824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.658824,0.000000,0.000000,0.250000,0,0);}
.m5_c00303{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m36_c00303{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m63_c00303{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.me_c00303{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m2f_c00303{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m59_c00303{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.md4_c00303{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m4d_c00303{transform:matrix(0.709135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709135,0.000000,0.000000,0.250000,0,0);}
.mb_c00303{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.md9_c00303{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.mc0_c00303{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m15_c00303{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m90_c00303{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m41_c00303{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.ma8_c00303{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.mbf_c00303{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m1f_c00303{transform:matrix(0.765560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765560,0.000000,0.000000,0.250000,0,0);}
.m85_c00303{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.md1_c00303{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m8_c00303{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m8e_c00303{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m54_c00303{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.meb_c00303{transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);}
.m6d_c00303{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws1_c00303{word-spacing:-4.249718px;}
.ws2_c00303{word-spacing:-3.468151px;}
.ws0_c00303{word-spacing:-2.568776px;}
.ws4_c00303{word-spacing:0.000000px;}
.ws3_c00303{word-spacing:1.876369px;}
.fc0_c00303{color:transparent;}
.fs7_c00303{font-size:3.420000px;}
.fs2_c00303{font-size:18.720000px;}
.fs0_c00303{font-size:20.400000px;}
.fs4_c00303{font-size:25.500000px;}
.fs1_c00303{font-size:28.920000px;}
.fs5_c00303{font-size:32.340000px;}
.fs3_c00303{font-size:35.700000px;}
.fs6_c00303{font-size:39.120000px;}
.y0_c00303{bottom:0.000000px;}
.ybe_c00303{bottom:253.245000px;}
.yc0_c00303{bottom:254.130000px;}
.yc2_c00303{bottom:254.970000px;}
.ybf_c00303{bottom:255.405000px;}
.yc1_c00303{bottom:255.630000px;}
.yb6_c00303{bottom:271.905000px;}
.ybd_c00303{bottom:272.745000px;}
.ybb_c00303{bottom:273.825000px;}
.yba_c00303{bottom:274.245000px;}
.yb7_c00303{bottom:274.905000px;}
.yb8_c00303{bottom:275.130000px;}
.ybc_c00303{bottom:275.970000px;}
.yb9_c00303{bottom:276.405000px;}
.yb0_c00303{bottom:292.245000px;}
.yb2_c00303{bottom:293.745000px;}
.yb1_c00303{bottom:294.405000px;}
.yb5_c00303{bottom:294.825000px;}
.yb3_c00303{bottom:295.470000px;}
.yb4_c00303{bottom:295.905000px;}
.yab_c00303{bottom:311.745000px;}
.yae_c00303{bottom:313.245000px;}
.yac_c00303{bottom:313.905000px;}
.yaf_c00303{bottom:314.970000px;}
.yad_c00303{bottom:315.405000px;}
.ya9_c00303{bottom:331.905000px;}
.ya7_c00303{bottom:332.325000px;}
.ya6_c00303{bottom:332.745000px;}
.ya5_c00303{bottom:333.405000px;}
.yaa_c00303{bottom:333.630000px;}
.ya8_c00303{bottom:334.905000px;}
.ya4_c00303{bottom:351.405000px;}
.y9f_c00303{bottom:352.245000px;}
.ya2_c00303{bottom:353.970000px;}
.ya0_c00303{bottom:354.405000px;}
.ya3_c00303{bottom:355.470000px;}
.ya1_c00303{bottom:355.905000px;}
.y9e_c00303{bottom:370.905000px;}
.y99_c00303{bottom:371.745000px;}
.y9d_c00303{bottom:372.180000px;}
.y9b_c00303{bottom:373.245000px;}
.y98_c00303{bottom:373.905000px;}
.y9c_c00303{bottom:374.130000px;}
.y9a_c00303{bottom:375.405000px;}
.y97_c00303{bottom:391.245000px;}
.y94_c00303{bottom:393.405000px;}
.y95_c00303{bottom:394.905000px;}
.y96_c00303{bottom:394.920000px;}
.y93_c00303{bottom:410.745000px;}
.y8f_c00303{bottom:412.245000px;}
.y8e_c00303{bottom:412.905000px;}
.y91_c00303{bottom:413.130000px;}
.y92_c00303{bottom:413.970000px;}
.y90_c00303{bottom:414.405000px;}
.y88_c00303{bottom:429.405000px;}
.y8c_c00303{bottom:429.825000px;}
.y8b_c00303{bottom:431.745000px;}
.y8d_c00303{bottom:432.825000px;}
.y8a_c00303{bottom:433.470000px;}
.y89_c00303{bottom:433.905000px;}
.y86_c00303{bottom:450.825000px;}
.y87_c00303{bottom:451.245000px;}
.y85_c00303{bottom:451.905000px;}
.y80_c00303{bottom:452.130000px;}
.y83_c00303{bottom:452.325000px;}
.y84_c00303{bottom:452.970000px;}
.y81_c00303{bottom:453.405000px;}
.y82_c00303{bottom:454.470000px;}
.y7b_c00303{bottom:470.745000px;}
.y7d_c00303{bottom:471.825000px;}
.y7e_c00303{bottom:472.470000px;}
.y7c_c00303{bottom:472.905000px;}
.y7f_c00303{bottom:473.970000px;}
.y79_c00303{bottom:490.245000px;}
.y7a_c00303{bottom:491.970000px;}
.y78_c00303{bottom:492.405000px;}
.y77_c00303{bottom:509.745000px;}
.y76_c00303{bottom:510.825000px;}
.y74_c00303{bottom:511.905000px;}
.y75_c00303{bottom:512.970000px;}
.y72_c00303{bottom:528.405000px;}
.y6f_c00303{bottom:529.245000px;}
.y71_c00303{bottom:530.745000px;}
.y6d_c00303{bottom:531.405000px;}
.y73_c00303{bottom:532.470000px;}
.y70_c00303{bottom:532.905000px;}
.y6e_c00303{bottom:532.920000px;}
.y6a_c00303{bottom:548.745000px;}
.y6b_c00303{bottom:550.245000px;}
.y67_c00303{bottom:550.905000px;}
.y68_c00303{bottom:551.130000px;}
.y6c_c00303{bottom:551.325000px;}
.y69_c00303{bottom:552.420000px;}
.y66_c00303{bottom:568.245000px;}
.y65_c00303{bottom:588.405000px;}
.y62_c00303{bottom:589.245000px;}
.y64_c00303{bottom:590.325000px;}
.y63_c00303{bottom:591.420000px;}
.y61_c00303{bottom:610.905000px;}
.y5f_c00303{bottom:627.825000px;}
.y5d_c00303{bottom:628.245000px;}
.y5e_c00303{bottom:630.405000px;}
.y60_c00303{bottom:631.470000px;}
.y59_c00303{bottom:647.325000px;}
.y5a_c00303{bottom:647.745000px;}
.y5c_c00303{bottom:648.825000px;}
.y58_c00303{bottom:649.905000px;}
.y5b_c00303{bottom:650.130000px;}
.y53_c00303{bottom:667.245000px;}
.y56_c00303{bottom:668.745000px;}
.y54_c00303{bottom:669.405000px;}
.y55_c00303{bottom:669.630000px;}
.y57_c00303{bottom:670.905000px;}
.y4f_c00303{bottom:688.245000px;}
.y4d_c00303{bottom:689.130000px;}
.y51_c00303{bottom:689.325000px;}
.y52_c00303{bottom:689.970000px;}
.y4e_c00303{bottom:690.405000px;}
.y50_c00303{bottom:691.470000px;}
.y46_c00303{bottom:706.245000px;}
.y4a_c00303{bottom:707.325000px;}
.y47_c00303{bottom:707.745000px;}
.y4b_c00303{bottom:708.825000px;}
.y48_c00303{bottom:709.470000px;}
.y49_c00303{bottom:709.905000px;}
.y4c_c00303{bottom:710.970000px;}
.y44_c00303{bottom:726.825000px;}
.y40_c00303{bottom:727.245000px;}
.y42_c00303{bottom:728.130000px;}
.y45_c00303{bottom:728.325000px;}
.y43_c00303{bottom:728.970000px;}
.y41_c00303{bottom:729.405000px;}
.y3c_c00303{bottom:746.745000px;}
.y3f_c00303{bottom:747.825000px;}
.y3e_c00303{bottom:748.905000px;}
.y3d_c00303{bottom:750.420000px;}
.y3a_c00303{bottom:770.325000px;}
.y3b_c00303{bottom:770.550000px;}
.y39_c00303{bottom:772.470000px;}
.y36_c00303{bottom:786.405000px;}
.y37_c00303{bottom:787.470000px;}
.y38_c00303{bottom:788.550000px;}
.y33_c00303{bottom:803.970000px;}
.y34_c00303{bottom:805.905000px;}
.y35_c00303{bottom:806.970000px;}
.y32_c00303{bottom:808.050000px;}
.y31_c00303{bottom:828.180000px;}
.y2e_c00303{bottom:829.245000px;}
.y2f_c00303{bottom:830.970000px;}
.y30_c00303{bottom:831.405000px;}
.y2d_c00303{bottom:866.130000px;}
.y2c_c00303{bottom:867.405000px;}
.y2b_c00303{bottom:884.745000px;}
.y29_c00303{bottom:885.630000px;}
.y2a_c00303{bottom:885.825000px;}
.y28_c00303{bottom:886.905000px;}
.y25_c00303{bottom:904.245000px;}
.y27_c00303{bottom:905.130000px;}
.y26_c00303{bottom:906.405000px;}
.y20_c00303{bottom:923.745000px;}
.y1d_c00303{bottom:924.630000px;}
.y22_c00303{bottom:925.245000px;}
.y1e_c00303{bottom:925.470000px;}
.y1f_c00303{bottom:925.905000px;}
.y24_c00303{bottom:926.130000px;}
.y21_c00303{bottom:926.970000px;}
.y23_c00303{bottom:927.405000px;}
.y1a_c00303{bottom:943.245000px;}
.y1b_c00303{bottom:944.745000px;}
.y1c_c00303{bottom:946.470000px;}
.y19_c00303{bottom:946.905000px;}
.y18_c00303{bottom:964.245000px;}
.y17_c00303{bottom:966.405000px;}
.y13_c00303{bottom:983.745000px;}
.y15_c00303{bottom:984.630000px;}
.y16_c00303{bottom:985.470000px;}
.y14_c00303{bottom:985.905000px;}
.yf_c00303{bottom:1001.970000px;}
.y12_c00303{bottom:1002.405000px;}
.yd_c00303{bottom:1003.245000px;}
.y11_c00303{bottom:1004.325000px;}
.ye_c00303{bottom:1005.405000px;}
.y10_c00303{bottom:1006.470000px;}
.yc_c00303{bottom:1022.745000px;}
.yb_c00303{bottom:1024.905000px;}
.y8_c00303{bottom:1042.245000px;}
.ya_c00303{bottom:1043.970000px;}
.y7_c00303{bottom:1044.405000px;}
.y9_c00303{bottom:1044.630000px;}
.y6_c00303{bottom:1061.745000px;}
.y5_c00303{bottom:1063.245000px;}
.y3_c00303{bottom:1063.905000px;}
.y4_c00303{bottom:1064.130000px;}
.y2_c00303{bottom:1099.905000px;}
.y1_c00303{bottom:1102.050000px;}
.h8_c00303{height:4.206533px;}
.h3_c00303{height:23.025234px;}
.h1_c00303{height:25.091602px;}
.h5_c00303{height:31.364502px;}
.h2_c00303{height:35.571035px;}
.h6_c00303{height:39.777568px;}
.h4_c00303{height:43.910303px;}
.h7_c00303{height:48.116836px;}
.h0_c00303{height:1335.000000px;}
.w0_c00303{width:880.500000px;}
.x0_c00303{left:0.000000px;}
.x2_c00303{left:149.580000px;}
.x3_c00303{left:151.920000px;}
.xc8_c00303{left:153.000000px;}
.xb6_c00303{left:154.275000px;}
.x4e_c00303{left:163.920000px;}
.x1b_c00303{left:166.500000px;}
.xb3_c00303{left:168.000000px;}
.xd8_c00303{left:169.080000px;}
.xdd_c00303{left:172.920000px;}
.x4_c00303{left:178.080000px;}
.xfd_c00303{left:183.000000px;}
.xe7_c00303{left:184.920000px;}
.xcf_c00303{left:186.000000px;}
.x9c_c00303{left:188.580000px;}
.x90_c00303{left:190.080000px;}
.x31_c00303{left:191.580000px;}
.xf9_c00303{left:193.080000px;}
.x5c_c00303{left:195.000000px;}
.xf5_c00303{left:196.500000px;}
.x5f_c00303{left:198.000000px;}
.xfe_c00303{left:199.500000px;}
.x26_c00303{left:201.420000px;}
.xc3_c00303{left:207.000000px;}
.x10_c00303{left:208.500000px;}
.x32_c00303{left:210.420000px;}
.x7a_c00303{left:211.920000px;}
.xd4_c00303{left:213.420000px;}
.xe8_c00303{left:214.500000px;}
.x4f_c00303{left:216.000000px;}
.xa4_c00303{left:217.920000px;}
.x82_c00303{left:220.500000px;}
.x11_c00303{left:223.500000px;}
.x72_c00303{left:225.420000px;}
.xc9_c00303{left:228.420000px;}
.xbf_c00303{left:229.500000px;}
.x27_c00303{left:231.420000px;}
.x42_c00303{left:235.500000px;}
.x12_c00303{left:240.420000px;}
.x5_c00303{left:242.145000px;}
.x60_c00303{left:244.080000px;}
.xa5_c00303{left:246.420000px;}
.x33_c00303{left:247.500000px;}
.xb7_c00303{left:249.000000px;}
.x50_c00303{left:250.080000px;}
.x43_c00303{left:252.420000px;}
.x91_c00303{left:255.000000px;}
.xca_c00303{left:258.000000px;}
.x5d_c00303{left:259.080000px;}
.x28_c00303{left:261.000000px;}
.x34_c00303{left:262.920000px;}
.x88_c00303{left:264.000000px;}
.x1c_c00303{left:265.080000px;}
.x51_c00303{left:268.920000px;}
.x7b_c00303{left:270.000000px;}
.x6c_c00303{left:271.500000px;}
.x6_c00303{left:274.500000px;}
.x44_c00303{left:277.920000px;}
.x92_c00303{left:279.000000px;}
.xb4_c00303{left:280.500000px;}
.xba_c00303{left:282.000000px;}
.x61_c00303{left:286.500000px;}
.xa6_c00303{left:289.080000px;}
.x7c_c00303{left:290.580000px;}
.x7_c00303{left:292.500000px;}
.x3d_c00303{left:294.420000px;}
.x52_c00303{left:295.920000px;}
.x1d_c00303{left:298.275000px;}
.x5e_c00303{left:300.420000px;}
.xe9_c00303{left:303.000000px;}
.xc0_c00303{left:304.080000px;}
.x35_c00303{left:309.420000px;}
.x89_c00303{left:310.920000px;}
.x6d_c00303{left:312.000000px;}
.x45_c00303{left:313.920000px;}
.x29_c00303{left:316.500000px;}
.x3e_c00303{left:321.000000px;}
.x73_c00303{left:322.920000px;}
.xcb_c00303{left:324.000000px;}
.x8_c00303{left:325.500000px;}
.x79_c00303{left:328.920000px;}
.x13_c00303{left:331.500000px;}
.xae_c00303{left:334.080000px;}
.xd5_c00303{left:335.580000px;}
.x2a_c00303{left:337.500000px;}
.x1e_c00303{left:339.000000px;}
.xde_c00303{left:340.080000px;}
.xd9_c00303{left:342.000000px;}
.xb5_c00303{left:343.275000px;}
.x9_c00303{left:345.420000px;}
.xc1_c00303{left:346.500000px;}
.x7d_c00303{left:347.580000px;}
.x93_c00303{left:349.500000px;}
.x6e_c00303{left:351.420000px;}
.xff_c00303{left:352.500000px;}
.x69_c00303{left:354.420000px;}
.x9d_c00303{left:357.000000px;}
.x74_c00303{left:359.580000px;}
.x67_c00303{left:361.920000px;}
.x94_c00303{left:363.000000px;}
.xa7_c00303{left:364.500000px;}
.x2b_c00303{left:366.000000px;}
.xef_c00303{left:367.500000px;}
.x46_c00303{left:368.580000px;}
.xa_c00303{left:370.920000px;}
.x53_c00303{left:373.080000px;}
.x3f_c00303{left:376.080000px;}
.xcc_c00303{left:377.580000px;}
.xaf_c00303{left:379.500000px;}
.x36_c00303{left:382.920000px;}
.x47_c00303{left:387.000000px;}
.x68_c00303{left:388.500000px;}
.x54_c00303{left:391.500000px;}
.x14_c00303{left:393.420000px;}
.x75_c00303{left:394.500000px;}
.x40_c00303{left:396.420000px;}
.xa8_c00303{left:397.920000px;}
.xe2_c00303{left:400.500000px;}
.x1_c00303{left:402.000000px;}
.xd0_c00303{left:403.080000px;}
.xf6_c00303{left:405.000000px;}
.xb0_c00303{left:406.080000px;}
.x1f_c00303{left:409.920000px;}
.x83_c00303{left:411.000000px;}
.xc2_c00303{left:412.500000px;}
.x95_c00303{left:413.580000px;}
.x2c_c00303{left:417.420000px;}
.x8a_c00303{left:418.500000px;}
.x55_c00303{left:419.580000px;}
.xb8_c00303{left:421.080000px;}
.x15_c00303{left:422.580000px;}
.xea_c00303{left:424.920000px;}
.xbb_c00303{left:427.920000px;}
.x96_c00303{left:432.000000px;}
.x6a_c00303{left:433.920000px;}
.xda_c00303{left:439.080000px;}
.x62_c00303{left:442.500000px;}
.xfa_c00303{left:445.920000px;}
.x76_c00303{left:447.000000px;}
.xb_c00303{left:448.500000px;}
.x37_c00303{left:450.000000px;}
.x20_c00303{left:451.500000px;}
.x8b_c00303{left:453.000000px;}
.x48_c00303{left:459.420000px;}
.xe3_c00303{left:462.000000px;}
.x9e_c00303{left:463.500000px;}
.xf0_c00303{left:465.000000px;}
.x38_c00303{left:467.580000px;}
.x6f_c00303{left:471.420000px;}
.x7e_c00303{left:472.500000px;}
.xcd_c00303{left:473.580000px;}
.x16_c00303{left:475.920000px;}
.x84_c00303{left:477.000000px;}
.x21_c00303{left:478.500000px;}
.xdf_c00303{left:480.420000px;}
.x9f_c00303{left:484.500000px;}
.x41_c00303{left:486.645000px;}
.x56_c00303{left:490.500000px;}
.xc_c00303{left:492.000000px;}
.xa9_c00303{left:493.920000px;}
.xfb_c00303{left:495.420000px;}
.xf7_c00303{left:498.000000px;}
.x2d_c00303{left:501.000000px;}
.x49_c00303{left:502.500000px;}
.xd1_c00303{left:503.580000px;}
.xce_c00303{left:505.500000px;}
.x22_c00303{left:508.920000px;}
.xd6_c00303{left:512.355000px;}
.x17_c00303{left:514.500000px;}
.xeb_c00303{left:516.420000px;}
.x100_c00303{left:517.500000px;}
.x8c_c00303{left:519.000000px;}
.x7f_c00303{left:520.500000px;}
.x63_c00303{left:521.580000px;}
.xdb_c00303{left:523.500000px;}
.x70_c00303{left:525.420000px;}
.x97_c00303{left:529.500000px;}
.xa0_c00303{left:534.420000px;}
.x18_c00303{left:537.000000px;}
.x2e_c00303{left:538.920000px;}
.xb9_c00303{left:544.080000px;}
.xe0_c00303{left:545.580000px;}
.x77_c00303{left:547.500000px;}
.xd2_c00303{left:550.500000px;}
.x64_c00303{left:551.580000px;}
.xaa_c00303{left:555.000000px;}
.xc4_c00303{left:556.500000px;}
.xb1_c00303{left:558.000000px;}
.x98_c00303{left:562.500000px;}
.xa1_c00303{left:564.000000px;}
.x101_c00303{left:565.920000px;}
.x8d_c00303{left:568.500000px;}
.x6b_c00303{left:569.775000px;}
.x71_c00303{left:571.500000px;}
.x80_c00303{left:573.000000px;}
.x57_c00303{left:575.580000px;}
.xc5_c00303{left:577.500000px;}
.x19_c00303{left:578.580000px;}
.x23_c00303{left:580.080000px;}
.xd_c00303{left:583.080000px;}
.x4a_c00303{left:585.000000px;}
.xbc_c00303{left:586.500000px;}
.x85_c00303{left:588.000000px;}
.xe4_c00303{left:590.580000px;}
.x58_c00303{left:594.420000px;}
.x8e_c00303{left:595.500000px;}
.x1a_c00303{left:596.580000px;}
.xec_c00303{left:598.500000px;}
.x4b_c00303{left:600.420000px;}
.x78_c00303{left:604.500000px;}
.xf1_c00303{left:606.420000px;}
.x39_c00303{left:607.500000px;}
.xe1_c00303{left:612.000000px;}
.xf8_c00303{left:615.000000px;}
.x24_c00303{left:617.580000px;}
.x65_c00303{left:619.920000px;}
.xdc_c00303{left:621.420000px;}
.x59_c00303{left:624.000000px;}
.xe_c00303{left:625.500000px;}
.x102_c00303{left:626.580000px;}
.xe5_c00303{left:630.000000px;}
.xa2_c00303{left:633.000000px;}
.xf2_c00303{left:634.500000px;}
.xbd_c00303{left:637.500000px;}
.xc6_c00303{left:640.920000px;}
.xab_c00303{left:642.000000px;}
.xd3_c00303{left:643.080000px;}
.x99_c00303{left:646.920000px;}
.x103_c00303{left:648.420000px;}
.xb2_c00303{left:649.500000px;}
.xf_c00303{left:651.000000px;}
.xac_c00303{left:655.500000px;}
.x3a_c00303{left:656.580000px;}
.x2f_c00303{left:657.645000px;}
.xe6_c00303{left:660.000000px;}
.x8f_c00303{left:661.500000px;}
.x86_c00303{left:662.580000px;}
.xa3_c00303{left:664.500000px;}
.x4c_c00303{left:666.000000px;}
.xbe_c00303{left:674.145000px;}
.xed_c00303{left:675.420000px;}
.x5a_c00303{left:676.500000px;}
.x3b_c00303{left:678.000000px;}
.x81_c00303{left:681.000000px;}
.xc7_c00303{left:682.080000px;}
.x4d_c00303{left:683.580000px;}
.x9a_c00303{left:688.080000px;}
.xf3_c00303{left:689.580000px;}
.xfc_c00303{left:691.080000px;}
.x87_c00303{left:692.580000px;}
.x66_c00303{left:694.080000px;}
.x5b_c00303{left:696.420000px;}
.x25_c00303{left:700.920000px;}
.x30_c00303{left:703.920000px;}
.xee_c00303{left:705.420000px;}
.x9b_c00303{left:708.420000px;}
.xad_c00303{left:711.420000px;}
.x3c_c00303{left:714.000000px;}
.xd7_c00303{left:717.000000px;}
.x104_c00303{left:718.080000px;}
.xf4_c00303{left:720.000000px;}
@media print{
.v0_c00303{vertical-align:0.000000pt;}
.ls0_c00303{letter-spacing:0.000000pt;}
.ws1_c00303{word-spacing:-3.777527pt;}
.ws2_c00303{word-spacing:-3.082801pt;}
.ws0_c00303{word-spacing:-2.283357pt;}
.ws4_c00303{word-spacing:0.000000pt;}
.ws3_c00303{word-spacing:1.667883pt;}
.fs7_c00303{font-size:3.040000pt;}
.fs2_c00303{font-size:16.640000pt;}
.fs0_c00303{font-size:18.133333pt;}
.fs4_c00303{font-size:22.666667pt;}
.fs1_c00303{font-size:25.706667pt;}
.fs5_c00303{font-size:28.746667pt;}
.fs3_c00303{font-size:31.733333pt;}
.fs6_c00303{font-size:34.773333pt;}
.y0_c00303{bottom:0.000000pt;}
.ybe_c00303{bottom:225.106667pt;}
.yc0_c00303{bottom:225.893333pt;}
.yc2_c00303{bottom:226.640000pt;}
.ybf_c00303{bottom:227.026667pt;}
.yc1_c00303{bottom:227.226667pt;}
.yb6_c00303{bottom:241.693333pt;}
.ybd_c00303{bottom:242.440000pt;}
.ybb_c00303{bottom:243.400000pt;}
.yba_c00303{bottom:243.773333pt;}
.yb7_c00303{bottom:244.360000pt;}
.yb8_c00303{bottom:244.560000pt;}
.ybc_c00303{bottom:245.306667pt;}
.yb9_c00303{bottom:245.693333pt;}
.yb0_c00303{bottom:259.773333pt;}
.yb2_c00303{bottom:261.106667pt;}
.yb1_c00303{bottom:261.693333pt;}
.yb5_c00303{bottom:262.066667pt;}
.yb3_c00303{bottom:262.640000pt;}
.yb4_c00303{bottom:263.026667pt;}
.yab_c00303{bottom:277.106667pt;}
.yae_c00303{bottom:278.440000pt;}
.yac_c00303{bottom:279.026667pt;}
.yaf_c00303{bottom:279.973333pt;}
.yad_c00303{bottom:280.360000pt;}
.ya9_c00303{bottom:295.026667pt;}
.ya7_c00303{bottom:295.400000pt;}
.ya6_c00303{bottom:295.773333pt;}
.ya5_c00303{bottom:296.360000pt;}
.yaa_c00303{bottom:296.560000pt;}
.ya8_c00303{bottom:297.693333pt;}
.ya4_c00303{bottom:312.360000pt;}
.y9f_c00303{bottom:313.106667pt;}
.ya2_c00303{bottom:314.640000pt;}
.ya0_c00303{bottom:315.026667pt;}
.ya3_c00303{bottom:315.973333pt;}
.ya1_c00303{bottom:316.360000pt;}
.y9e_c00303{bottom:329.693333pt;}
.y99_c00303{bottom:330.440000pt;}
.y9d_c00303{bottom:330.826667pt;}
.y9b_c00303{bottom:331.773333pt;}
.y98_c00303{bottom:332.360000pt;}
.y9c_c00303{bottom:332.560000pt;}
.y9a_c00303{bottom:333.693333pt;}
.y97_c00303{bottom:347.773333pt;}
.y94_c00303{bottom:349.693333pt;}
.y95_c00303{bottom:351.026667pt;}
.y96_c00303{bottom:351.040000pt;}
.y93_c00303{bottom:365.106667pt;}
.y8f_c00303{bottom:366.440000pt;}
.y8e_c00303{bottom:367.026667pt;}
.y91_c00303{bottom:367.226667pt;}
.y92_c00303{bottom:367.973333pt;}
.y90_c00303{bottom:368.360000pt;}
.y88_c00303{bottom:381.693333pt;}
.y8c_c00303{bottom:382.066667pt;}
.y8b_c00303{bottom:383.773333pt;}
.y8d_c00303{bottom:384.733333pt;}
.y8a_c00303{bottom:385.306667pt;}
.y89_c00303{bottom:385.693333pt;}
.y86_c00303{bottom:400.733333pt;}
.y87_c00303{bottom:401.106667pt;}
.y85_c00303{bottom:401.693333pt;}
.y80_c00303{bottom:401.893333pt;}
.y83_c00303{bottom:402.066667pt;}
.y84_c00303{bottom:402.640000pt;}
.y81_c00303{bottom:403.026667pt;}
.y82_c00303{bottom:403.973333pt;}
.y7b_c00303{bottom:418.440000pt;}
.y7d_c00303{bottom:419.400000pt;}
.y7e_c00303{bottom:419.973333pt;}
.y7c_c00303{bottom:420.360000pt;}
.y7f_c00303{bottom:421.306667pt;}
.y79_c00303{bottom:435.773333pt;}
.y7a_c00303{bottom:437.306667pt;}
.y78_c00303{bottom:437.693333pt;}
.y77_c00303{bottom:453.106667pt;}
.y76_c00303{bottom:454.066667pt;}
.y74_c00303{bottom:455.026667pt;}
.y75_c00303{bottom:455.973333pt;}
.y72_c00303{bottom:469.693333pt;}
.y6f_c00303{bottom:470.440000pt;}
.y71_c00303{bottom:471.773333pt;}
.y6d_c00303{bottom:472.360000pt;}
.y73_c00303{bottom:473.306667pt;}
.y70_c00303{bottom:473.693333pt;}
.y6e_c00303{bottom:473.706667pt;}
.y6a_c00303{bottom:487.773333pt;}
.y6b_c00303{bottom:489.106667pt;}
.y67_c00303{bottom:489.693333pt;}
.y68_c00303{bottom:489.893333pt;}
.y6c_c00303{bottom:490.066667pt;}
.y69_c00303{bottom:491.040000pt;}
.y66_c00303{bottom:505.106667pt;}
.y65_c00303{bottom:523.026667pt;}
.y62_c00303{bottom:523.773333pt;}
.y64_c00303{bottom:524.733333pt;}
.y63_c00303{bottom:525.706667pt;}
.y61_c00303{bottom:543.026667pt;}
.y5f_c00303{bottom:558.066667pt;}
.y5d_c00303{bottom:558.440000pt;}
.y5e_c00303{bottom:560.360000pt;}
.y60_c00303{bottom:561.306667pt;}
.y59_c00303{bottom:575.400000pt;}
.y5a_c00303{bottom:575.773333pt;}
.y5c_c00303{bottom:576.733333pt;}
.y58_c00303{bottom:577.693333pt;}
.y5b_c00303{bottom:577.893333pt;}
.y53_c00303{bottom:593.106667pt;}
.y56_c00303{bottom:594.440000pt;}
.y54_c00303{bottom:595.026667pt;}
.y55_c00303{bottom:595.226667pt;}
.y57_c00303{bottom:596.360000pt;}
.y4f_c00303{bottom:611.773333pt;}
.y4d_c00303{bottom:612.560000pt;}
.y51_c00303{bottom:612.733333pt;}
.y52_c00303{bottom:613.306667pt;}
.y4e_c00303{bottom:613.693333pt;}
.y50_c00303{bottom:614.640000pt;}
.y46_c00303{bottom:627.773333pt;}
.y4a_c00303{bottom:628.733333pt;}
.y47_c00303{bottom:629.106667pt;}
.y4b_c00303{bottom:630.066667pt;}
.y48_c00303{bottom:630.640000pt;}
.y49_c00303{bottom:631.026667pt;}
.y4c_c00303{bottom:631.973333pt;}
.y44_c00303{bottom:646.066667pt;}
.y40_c00303{bottom:646.440000pt;}
.y42_c00303{bottom:647.226667pt;}
.y45_c00303{bottom:647.400000pt;}
.y43_c00303{bottom:647.973333pt;}
.y41_c00303{bottom:648.360000pt;}
.y3c_c00303{bottom:663.773333pt;}
.y3f_c00303{bottom:664.733333pt;}
.y3e_c00303{bottom:665.693333pt;}
.y3d_c00303{bottom:667.040000pt;}
.y3a_c00303{bottom:684.733333pt;}
.y3b_c00303{bottom:684.933333pt;}
.y39_c00303{bottom:686.640000pt;}
.y36_c00303{bottom:699.026667pt;}
.y37_c00303{bottom:699.973333pt;}
.y38_c00303{bottom:700.933333pt;}
.y33_c00303{bottom:714.640000pt;}
.y34_c00303{bottom:716.360000pt;}
.y35_c00303{bottom:717.306667pt;}
.y32_c00303{bottom:718.266667pt;}
.y31_c00303{bottom:736.160000pt;}
.y2e_c00303{bottom:737.106667pt;}
.y2f_c00303{bottom:738.640000pt;}
.y30_c00303{bottom:739.026667pt;}
.y2d_c00303{bottom:769.893333pt;}
.y2c_c00303{bottom:771.026667pt;}
.y2b_c00303{bottom:786.440000pt;}
.y29_c00303{bottom:787.226667pt;}
.y2a_c00303{bottom:787.400000pt;}
.y28_c00303{bottom:788.360000pt;}
.y25_c00303{bottom:803.773333pt;}
.y27_c00303{bottom:804.560000pt;}
.y26_c00303{bottom:805.693333pt;}
.y20_c00303{bottom:821.106667pt;}
.y1d_c00303{bottom:821.893333pt;}
.y22_c00303{bottom:822.440000pt;}
.y1e_c00303{bottom:822.640000pt;}
.y1f_c00303{bottom:823.026667pt;}
.y24_c00303{bottom:823.226667pt;}
.y21_c00303{bottom:823.973333pt;}
.y23_c00303{bottom:824.360000pt;}
.y1a_c00303{bottom:838.440000pt;}
.y1b_c00303{bottom:839.773333pt;}
.y1c_c00303{bottom:841.306667pt;}
.y19_c00303{bottom:841.693333pt;}
.y18_c00303{bottom:857.106667pt;}
.y17_c00303{bottom:859.026667pt;}
.y13_c00303{bottom:874.440000pt;}
.y15_c00303{bottom:875.226667pt;}
.y16_c00303{bottom:875.973333pt;}
.y14_c00303{bottom:876.360000pt;}
.yf_c00303{bottom:890.640000pt;}
.y12_c00303{bottom:891.026667pt;}
.yd_c00303{bottom:891.773333pt;}
.y11_c00303{bottom:892.733333pt;}
.ye_c00303{bottom:893.693333pt;}
.y10_c00303{bottom:894.640000pt;}
.yc_c00303{bottom:909.106667pt;}
.yb_c00303{bottom:911.026667pt;}
.y8_c00303{bottom:926.440000pt;}
.ya_c00303{bottom:927.973333pt;}
.y7_c00303{bottom:928.360000pt;}
.y9_c00303{bottom:928.560000pt;}
.y6_c00303{bottom:943.773333pt;}
.y5_c00303{bottom:945.106667pt;}
.y3_c00303{bottom:945.693333pt;}
.y4_c00303{bottom:945.893333pt;}
.y2_c00303{bottom:977.693333pt;}
.y1_c00303{bottom:979.600000pt;}
.h8_c00303{height:3.739141pt;}
.h3_c00303{height:20.466875pt;}
.h1_c00303{height:22.303646pt;}
.h5_c00303{height:27.879557pt;}
.h2_c00303{height:31.618698pt;}
.h6_c00303{height:35.357839pt;}
.h4_c00303{height:39.031380pt;}
.h7_c00303{height:42.770521pt;}
.h0_c00303{height:1186.666667pt;}
.w0_c00303{width:782.666667pt;}
.x0_c00303{left:0.000000pt;}
.x2_c00303{left:132.960000pt;}
.x3_c00303{left:135.040000pt;}
.xc8_c00303{left:136.000000pt;}
.xb6_c00303{left:137.133333pt;}
.x4e_c00303{left:145.706667pt;}
.x1b_c00303{left:148.000000pt;}
.xb3_c00303{left:149.333333pt;}
.xd8_c00303{left:150.293333pt;}
.xdd_c00303{left:153.706667pt;}
.x4_c00303{left:158.293333pt;}
.xfd_c00303{left:162.666667pt;}
.xe7_c00303{left:164.373333pt;}
.xcf_c00303{left:165.333333pt;}
.x9c_c00303{left:167.626667pt;}
.x90_c00303{left:168.960000pt;}
.x31_c00303{left:170.293333pt;}
.xf9_c00303{left:171.626667pt;}
.x5c_c00303{left:173.333333pt;}
.xf5_c00303{left:174.666667pt;}
.x5f_c00303{left:176.000000pt;}
.xfe_c00303{left:177.333333pt;}
.x26_c00303{left:179.040000pt;}
.xc3_c00303{left:184.000000pt;}
.x10_c00303{left:185.333333pt;}
.x32_c00303{left:187.040000pt;}
.x7a_c00303{left:188.373333pt;}
.xd4_c00303{left:189.706667pt;}
.xe8_c00303{left:190.666667pt;}
.x4f_c00303{left:192.000000pt;}
.xa4_c00303{left:193.706667pt;}
.x82_c00303{left:196.000000pt;}
.x11_c00303{left:198.666667pt;}
.x72_c00303{left:200.373333pt;}
.xc9_c00303{left:203.040000pt;}
.xbf_c00303{left:204.000000pt;}
.x27_c00303{left:205.706667pt;}
.x42_c00303{left:209.333333pt;}
.x12_c00303{left:213.706667pt;}
.x5_c00303{left:215.240000pt;}
.x60_c00303{left:216.960000pt;}
.xa5_c00303{left:219.040000pt;}
.x33_c00303{left:220.000000pt;}
.xb7_c00303{left:221.333333pt;}
.x50_c00303{left:222.293333pt;}
.x43_c00303{left:224.373333pt;}
.x91_c00303{left:226.666667pt;}
.xca_c00303{left:229.333333pt;}
.x5d_c00303{left:230.293333pt;}
.x28_c00303{left:232.000000pt;}
.x34_c00303{left:233.706667pt;}
.x88_c00303{left:234.666667pt;}
.x1c_c00303{left:235.626667pt;}
.x51_c00303{left:239.040000pt;}
.x7b_c00303{left:240.000000pt;}
.x6c_c00303{left:241.333333pt;}
.x6_c00303{left:244.000000pt;}
.x44_c00303{left:247.040000pt;}
.x92_c00303{left:248.000000pt;}
.xb4_c00303{left:249.333333pt;}
.xba_c00303{left:250.666667pt;}
.x61_c00303{left:254.666667pt;}
.xa6_c00303{left:256.960000pt;}
.x7c_c00303{left:258.293333pt;}
.x7_c00303{left:260.000000pt;}
.x3d_c00303{left:261.706667pt;}
.x52_c00303{left:263.040000pt;}
.x1d_c00303{left:265.133333pt;}
.x5e_c00303{left:267.040000pt;}
.xe9_c00303{left:269.333333pt;}
.xc0_c00303{left:270.293333pt;}
.x35_c00303{left:275.040000pt;}
.x89_c00303{left:276.373333pt;}
.x6d_c00303{left:277.333333pt;}
.x45_c00303{left:279.040000pt;}
.x29_c00303{left:281.333333pt;}
.x3e_c00303{left:285.333333pt;}
.x73_c00303{left:287.040000pt;}
.xcb_c00303{left:288.000000pt;}
.x8_c00303{left:289.333333pt;}
.x79_c00303{left:292.373333pt;}
.x13_c00303{left:294.666667pt;}
.xae_c00303{left:296.960000pt;}
.xd5_c00303{left:298.293333pt;}
.x2a_c00303{left:300.000000pt;}
.x1e_c00303{left:301.333333pt;}
.xde_c00303{left:302.293333pt;}
.xd9_c00303{left:304.000000pt;}
.xb5_c00303{left:305.133333pt;}
.x9_c00303{left:307.040000pt;}
.xc1_c00303{left:308.000000pt;}
.x7d_c00303{left:308.960000pt;}
.x93_c00303{left:310.666667pt;}
.x6e_c00303{left:312.373333pt;}
.xff_c00303{left:313.333333pt;}
.x69_c00303{left:315.040000pt;}
.x9d_c00303{left:317.333333pt;}
.x74_c00303{left:319.626667pt;}
.x67_c00303{left:321.706667pt;}
.x94_c00303{left:322.666667pt;}
.xa7_c00303{left:324.000000pt;}
.x2b_c00303{left:325.333333pt;}
.xef_c00303{left:326.666667pt;}
.x46_c00303{left:327.626667pt;}
.xa_c00303{left:329.706667pt;}
.x53_c00303{left:331.626667pt;}
.x3f_c00303{left:334.293333pt;}
.xcc_c00303{left:335.626667pt;}
.xaf_c00303{left:337.333333pt;}
.x36_c00303{left:340.373333pt;}
.x47_c00303{left:344.000000pt;}
.x68_c00303{left:345.333333pt;}
.x54_c00303{left:348.000000pt;}
.x14_c00303{left:349.706667pt;}
.x75_c00303{left:350.666667pt;}
.x40_c00303{left:352.373333pt;}
.xa8_c00303{left:353.706667pt;}
.xe2_c00303{left:356.000000pt;}
.x1_c00303{left:357.333333pt;}
.xd0_c00303{left:358.293333pt;}
.xf6_c00303{left:360.000000pt;}
.xb0_c00303{left:360.960000pt;}
.x1f_c00303{left:364.373333pt;}
.x83_c00303{left:365.333333pt;}
.xc2_c00303{left:366.666667pt;}
.x95_c00303{left:367.626667pt;}
.x2c_c00303{left:371.040000pt;}
.x8a_c00303{left:372.000000pt;}
.x55_c00303{left:372.960000pt;}
.xb8_c00303{left:374.293333pt;}
.x15_c00303{left:375.626667pt;}
.xea_c00303{left:377.706667pt;}
.xbb_c00303{left:380.373333pt;}
.x96_c00303{left:384.000000pt;}
.x6a_c00303{left:385.706667pt;}
.xda_c00303{left:390.293333pt;}
.x62_c00303{left:393.333333pt;}
.xfa_c00303{left:396.373333pt;}
.x76_c00303{left:397.333333pt;}
.xb_c00303{left:398.666667pt;}
.x37_c00303{left:400.000000pt;}
.x20_c00303{left:401.333333pt;}
.x8b_c00303{left:402.666667pt;}
.x48_c00303{left:408.373333pt;}
.xe3_c00303{left:410.666667pt;}
.x9e_c00303{left:412.000000pt;}
.xf0_c00303{left:413.333333pt;}
.x38_c00303{left:415.626667pt;}
.x6f_c00303{left:419.040000pt;}
.x7e_c00303{left:420.000000pt;}
.xcd_c00303{left:420.960000pt;}
.x16_c00303{left:423.040000pt;}
.x84_c00303{left:424.000000pt;}
.x21_c00303{left:425.333333pt;}
.xdf_c00303{left:427.040000pt;}
.x9f_c00303{left:430.666667pt;}
.x41_c00303{left:432.573333pt;}
.x56_c00303{left:436.000000pt;}
.xc_c00303{left:437.333333pt;}
.xa9_c00303{left:439.040000pt;}
.xfb_c00303{left:440.373333pt;}
.xf7_c00303{left:442.666667pt;}
.x2d_c00303{left:445.333333pt;}
.x49_c00303{left:446.666667pt;}
.xd1_c00303{left:447.626667pt;}
.xce_c00303{left:449.333333pt;}
.x22_c00303{left:452.373333pt;}
.xd6_c00303{left:455.426667pt;}
.x17_c00303{left:457.333333pt;}
.xeb_c00303{left:459.040000pt;}
.x100_c00303{left:460.000000pt;}
.x8c_c00303{left:461.333333pt;}
.x7f_c00303{left:462.666667pt;}
.x63_c00303{left:463.626667pt;}
.xdb_c00303{left:465.333333pt;}
.x70_c00303{left:467.040000pt;}
.x97_c00303{left:470.666667pt;}
.xa0_c00303{left:475.040000pt;}
.x18_c00303{left:477.333333pt;}
.x2e_c00303{left:479.040000pt;}
.xb9_c00303{left:483.626667pt;}
.xe0_c00303{left:484.960000pt;}
.x77_c00303{left:486.666667pt;}
.xd2_c00303{left:489.333333pt;}
.x64_c00303{left:490.293333pt;}
.xaa_c00303{left:493.333333pt;}
.xc4_c00303{left:494.666667pt;}
.xb1_c00303{left:496.000000pt;}
.x98_c00303{left:500.000000pt;}
.xa1_c00303{left:501.333333pt;}
.x101_c00303{left:503.040000pt;}
.x8d_c00303{left:505.333333pt;}
.x6b_c00303{left:506.466667pt;}
.x71_c00303{left:508.000000pt;}
.x80_c00303{left:509.333333pt;}
.x57_c00303{left:511.626667pt;}
.xc5_c00303{left:513.333333pt;}
.x19_c00303{left:514.293333pt;}
.x23_c00303{left:515.626667pt;}
.xd_c00303{left:518.293333pt;}
.x4a_c00303{left:520.000000pt;}
.xbc_c00303{left:521.333333pt;}
.x85_c00303{left:522.666667pt;}
.xe4_c00303{left:524.960000pt;}
.x58_c00303{left:528.373333pt;}
.x8e_c00303{left:529.333333pt;}
.x1a_c00303{left:530.293333pt;}
.xec_c00303{left:532.000000pt;}
.x4b_c00303{left:533.706667pt;}
.x78_c00303{left:537.333333pt;}
.xf1_c00303{left:539.040000pt;}
.x39_c00303{left:540.000000pt;}
.xe1_c00303{left:544.000000pt;}
.xf8_c00303{left:546.666667pt;}
.x24_c00303{left:548.960000pt;}
.x65_c00303{left:551.040000pt;}
.xdc_c00303{left:552.373333pt;}
.x59_c00303{left:554.666667pt;}
.xe_c00303{left:556.000000pt;}
.x102_c00303{left:556.960000pt;}
.xe5_c00303{left:560.000000pt;}
.xa2_c00303{left:562.666667pt;}
.xf2_c00303{left:564.000000pt;}
.xbd_c00303{left:566.666667pt;}
.xc6_c00303{left:569.706667pt;}
.xab_c00303{left:570.666667pt;}
.xd3_c00303{left:571.626667pt;}
.x99_c00303{left:575.040000pt;}
.x103_c00303{left:576.373333pt;}
.xb2_c00303{left:577.333333pt;}
.xf_c00303{left:578.666667pt;}
.xac_c00303{left:582.666667pt;}
.x3a_c00303{left:583.626667pt;}
.x2f_c00303{left:584.573333pt;}
.xe6_c00303{left:586.666667pt;}
.x8f_c00303{left:588.000000pt;}
.x86_c00303{left:588.960000pt;}
.xa3_c00303{left:590.666667pt;}
.x4c_c00303{left:592.000000pt;}
.xbe_c00303{left:599.240000pt;}
.xed_c00303{left:600.373333pt;}
.x5a_c00303{left:601.333333pt;}
.x3b_c00303{left:602.666667pt;}
.x81_c00303{left:605.333333pt;}
.xc7_c00303{left:606.293333pt;}
.x4d_c00303{left:607.626667pt;}
.x9a_c00303{left:611.626667pt;}
.xf3_c00303{left:612.960000pt;}
.xfc_c00303{left:614.293333pt;}
.x87_c00303{left:615.626667pt;}
.x66_c00303{left:616.960000pt;}
.x5b_c00303{left:619.040000pt;}
.x25_c00303{left:623.040000pt;}
.x30_c00303{left:625.706667pt;}
.xee_c00303{left:627.040000pt;}
.x9b_c00303{left:629.706667pt;}
.xad_c00303{left:632.373333pt;}
.x3c_c00303{left:634.666667pt;}
.xd7_c00303{left:637.333333pt;}
.x104_c00303{left:638.293333pt;}
.xf4_c00303{left:640.000000pt;}
}





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

.ir_c00304:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00304{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00304;src:url('chunks/assets/font_2135aa02d2b27fdec0ab1f42.woff2')format("woff");}.ff1_c00304{font-family:ff1_c00304;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf9_c00304{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.mb1_c00304{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.mf4_c00304{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m110_c00304{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);}
.m107_c00304{transform:matrix(0.355828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355828,0.000000,0.000000,0.250000,0,0);}
.mcc_c00304{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.maa_c00304{transform:matrix(0.360084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360084,0.000000,0.000000,0.250000,0,0);}
.m104_c00304{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m47_c00304{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m116_c00304{transform:matrix(0.369632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369632,0.000000,0.000000,0.250000,0,0);}
.m72_c00304{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m1a_c00304{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mcd_c00304{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m7d_c00304{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m97_c00304{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m8f_c00304{transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);}
.mb2_c00304{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.md3_c00304{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m93_c00304{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.mf7_c00304{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m2b_c00304{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m56_c00304{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m7b_c00304{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m10_c00304{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m19_c00304{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m77_c00304{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mee_c00304{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.mc5_c00304{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m106_c00304{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m30_c00304{transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);}
.med_c00304{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.md6_c00304{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.me7_c00304{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m8a_c00304{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m65_c00304{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);}
.m105_c00304{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m51_c00304{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m3e_c00304{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.m15_c00304{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.mb6_c00304{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m10e_c00304{transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);}
.m4d_c00304{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m86_c00304{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m4b_c00304{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m75_c00304{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m119_c00304{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.mad_c00304{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.mca_c00304{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m4c_c00304{transform:matrix(0.409126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409126,0.000000,0.000000,0.250000,0,0);}
.mfb_c00304{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.maf_c00304{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.me1_c00304{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m7a_c00304{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.mde_c00304{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.mf0_c00304{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m81_c00304{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mda_c00304{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m6f_c00304{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m3d_c00304{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.mb_c00304{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.mc9_c00304{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mf_c00304{transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);}
.m20_c00304{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m63_c00304{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m10b_c00304{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.ma7_c00304{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m52_c00304{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mb5_c00304{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mcb_c00304{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.md0_c00304{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m76_c00304{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m109_c00304{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.ma2_c00304{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m7f_c00304{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m1f_c00304{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.md7_c00304{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m11_c00304{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m48_c00304{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mf5_c00304{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.mdc_c00304{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m60_c00304{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m111_c00304{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.mbf_c00304{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m84_c00304{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m44_c00304{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mf8_c00304{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m66_c00304{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.mef_c00304{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m117_c00304{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.ma1_c00304{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.me6_c00304{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m18_c00304{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.mf1_c00304{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m10f_c00304{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.mfe_c00304{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.ma9_c00304{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.mdd_c00304{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.mc7_c00304{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m6c_c00304{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m9d_c00304{transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);}
.m43_c00304{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.mc6_c00304{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m90_c00304{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mbb_c00304{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.meb_c00304{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m1_c00304{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m36_c00304{transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);}
.m46_c00304{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m89_c00304{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m3f_c00304{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m9a_c00304{transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);}
.m9f_c00304{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m118_c00304{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.mbc_c00304{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.mea_c00304{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.mfd_c00304{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m70_c00304{transform:matrix(0.466807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466807,0.000000,0.000000,0.250000,0,0);}
.m87_c00304{transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);}
.mae_c00304{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m1e_c00304{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.m5b_c00304{transform:matrix(0.476345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476345,0.000000,0.000000,0.250000,0,0);}
.m10a_c00304{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m7e_c00304{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m3b_c00304{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m91_c00304{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.mb3_c00304{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m35_c00304{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m38_c00304{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.ma3_c00304{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.md4_c00304{transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);}
.mab_c00304{transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);}
.m9b_c00304{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mc_c00304{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.me3_c00304{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m3_c00304{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m102_c00304{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.ma_c00304{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_c00304{transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);}
.me2_c00304{transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);}
.mc2_c00304{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m57_c00304{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mbe_c00304{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.mc8_c00304{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m108_c00304{transform:matrix(0.508349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508349,0.000000,0.000000,0.250000,0,0);}
.m21_c00304{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.mce_c00304{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m61_c00304{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m16_c00304{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m34_c00304{transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);}
.m113_c00304{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m2c_c00304{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m114_c00304{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.mb7_c00304{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.me4_c00304{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.mdf_c00304{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m4a_c00304{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m39_c00304{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m6_c00304{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m17_c00304{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m3c_c00304{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m69_c00304{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mfa_c00304{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m49_c00304{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m6a_c00304{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.md8_c00304{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mc1_c00304{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m64_c00304{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m2f_c00304{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m2_c00304{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m7c_c00304{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m5e_c00304{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.mb9_c00304{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m6e_c00304{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m4_c00304{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m83_c00304{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m9c_c00304{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.ma6_c00304{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m62_c00304{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m25_c00304{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m33_c00304{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);}
.m41_c00304{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m101_c00304{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.md5_c00304{transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);}
.m22_c00304{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.md9_c00304{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m5_c00304{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m67_c00304{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m13_c00304{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mff_c00304{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m42_c00304{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mb4_c00304{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.md_c00304{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.ma0_c00304{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m8_c00304{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m80_c00304{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mf6_c00304{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.me5_c00304{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m1b_c00304{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m26_c00304{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m29_c00304{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mbd_c00304{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m28_c00304{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m5a_c00304{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m88_c00304{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mcf_c00304{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.mc0_c00304{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);}
.mdb_c00304{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m54_c00304{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m1d_c00304{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m23_c00304{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mf3_c00304{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m74_c00304{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m10d_c00304{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m9_c00304{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m31_c00304{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mb8_c00304{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m112_c00304{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m96_c00304{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m92_c00304{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.m8e_c00304{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.m8b_c00304{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m9e_c00304{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m79_c00304{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m53_c00304{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.m82_c00304{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m7_c00304{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m4f_c00304{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.md2_c00304{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.m5d_c00304{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m40_c00304{transform:matrix(0.600622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600622,0.000000,0.000000,0.250000,0,0);}
.mb0_c00304{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m98_c00304{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m58_c00304{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m8d_c00304{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.me9_c00304{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.m50_c00304{transform:matrix(0.611765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611765,0.000000,0.000000,0.250000,0,0);}
.m24_c00304{transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);}
.m55_c00304{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m6d_c00304{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m27_c00304{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mc4_c00304{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mfc_c00304{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m100_c00304{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);}
.m37_c00304{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m5f_c00304{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);}
.m99_c00304{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m1c_c00304{transform:matrix(0.649896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649896,0.000000,0.000000,0.250000,0,0);}
.m8c_c00304{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m5c_c00304{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m59_c00304{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m10c_c00304{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m0_c00304{transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);}
.mc3_c00304{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.ma4_c00304{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.me8_c00304{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m12_c00304{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.mf2_c00304{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m95_c00304{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m2e_c00304{transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);}
.me0_c00304{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.ma5_c00304{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m45_c00304{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m71_c00304{transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);}
.me_c00304{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m4e_c00304{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.m68_c00304{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mac_c00304{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m115_c00304{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m78_c00304{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m103_c00304{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.mba_c00304{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m85_c00304{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.m94_c00304{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m2d_c00304{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m6b_c00304{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.md1_c00304{transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);}
.m14_c00304{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m2a_c00304{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m32_c00304{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m3a_c00304{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m73_c00304{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.ma8_c00304{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00304{vertical-align:0.000000px;}
.v1_c00304{vertical-align:18.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;}
}
.ws3_c00304{word-spacing:-16.889280px;}
.ws1_c00304{word-spacing:-7.189112px;}
.ws2_c00304{word-spacing:-2.171720px;}
.ws0_c00304{word-spacing:-0.730180px;}
.ws4_c00304{word-spacing:0.000000px;}
._0_c00304{width:5.472015px;}
.fc0_c00304{color:transparent;}
.fs6_c00304{font-size:3.420000px;}
.fs0_c00304{font-size:18.720000px;}
.fs7_c00304{font-size:20.400000px;}
.fs4_c00304{font-size:25.500000px;}
.fs1_c00304{font-size:28.920000px;}
.fs3_c00304{font-size:32.340000px;}
.fs2_c00304{font-size:35.700000px;}
.fs5_c00304{font-size:39.120000px;}
.y0_c00304{bottom:0.000000px;}
.ye0_c00304{bottom:245.745000px;}
.ydf_c00304{bottom:249.405000px;}
.yde_c00304{bottom:249.825000px;}
.ydc_c00304{bottom:265.905000px;}
.yd8_c00304{bottom:266.745000px;}
.yda_c00304{bottom:267.180000px;}
.ydd_c00304{bottom:267.825000px;}
.ydb_c00304{bottom:268.905000px;}
.yd9_c00304{bottom:269.130000px;}
.yd7_c00304{bottom:270.405000px;}
.yd2_c00304{bottom:287.745000px;}
.yd5_c00304{bottom:288.405000px;}
.yd3_c00304{bottom:288.630000px;}
.yd4_c00304{bottom:289.470000px;}
.yd6_c00304{bottom:289.905000px;}
.ycb_c00304{bottom:304.905000px;}
.yd1_c00304{bottom:305.325000px;}
.yca_c00304{bottom:305.970000px;}
.ycd_c00304{bottom:306.405000px;}
.yd0_c00304{bottom:306.825000px;}
.yc9_c00304{bottom:307.245000px;}
.ycf_c00304{bottom:307.905000px;}
.ycc_c00304{bottom:308.325000px;}
.yce_c00304{bottom:308.970000px;}
.yc8_c00304{bottom:325.680000px;}
.yc4_c00304{bottom:325.905000px;}
.yc3_c00304{bottom:326.745000px;}
.yc6_c00304{bottom:327.630000px;}
.yc5_c00304{bottom:327.825000px;}
.yc7_c00304{bottom:328.470000px;}
.yc2_c00304{bottom:328.905000px;}
.yc1_c00304{bottom:344.970000px;}
.ybd_c00304{bottom:345.825000px;}
.ybf_c00304{bottom:346.245000px;}
.yc0_c00304{bottom:347.130000px;}
.ybe_c00304{bottom:348.405000px;}
.ybc_c00304{bottom:349.905000px;}
.yb7_c00304{bottom:368.745000px;}
.yba_c00304{bottom:368.970000px;}
.ybb_c00304{bottom:369.825000px;}
.yb6_c00304{bottom:370.905000px;}
.yb9_c00304{bottom:371.130000px;}
.yb8_c00304{bottom:371.970000px;}
.yb5_c00304{bottom:387.405000px;}
.yb3_c00304{bottom:389.745000px;}
.yb4_c00304{bottom:390.825000px;}
.yb2_c00304{bottom:391.905000px;}
.yad_c00304{bottom:409.245000px;}
.yb1_c00304{bottom:409.905000px;}
.yaf_c00304{bottom:410.130000px;}
.yb0_c00304{bottom:410.970000px;}
.yae_c00304{bottom:411.405000px;}
.yac_c00304{bottom:426.405000px;}
.yab_c00304{bottom:427.245000px;}
.yaa_c00304{bottom:428.745000px;}
.ya9_c00304{bottom:429.825000px;}
.ya7_c00304{bottom:430.245000px;}
.ya8_c00304{bottom:430.905000px;}
.ya3_c00304{bottom:448.245000px;}
.ya2_c00304{bottom:449.325000px;}
.ya6_c00304{bottom:449.550000px;}
.ya4_c00304{bottom:450.405000px;}
.ya5_c00304{bottom:450.630000px;}
.ya1_c00304{bottom:451.905000px;}
.y9b_c00304{bottom:466.905000px;}
.ya0_c00304{bottom:467.745000px;}
.y9f_c00304{bottom:468.825000px;}
.y9c_c00304{bottom:469.905000px;}
.y9e_c00304{bottom:470.970000px;}
.y9d_c00304{bottom:471.405000px;}
.y9a_c00304{bottom:486.825000px;}
.y99_c00304{bottom:487.245000px;}
.y98_c00304{bottom:489.405000px;}
.y97_c00304{bottom:489.630000px;}
.y96_c00304{bottom:490.905000px;}
.y95_c00304{bottom:506.745000px;}
.y92_c00304{bottom:508.245000px;}
.y93_c00304{bottom:509.130000px;}
.y94_c00304{bottom:509.970000px;}
.y91_c00304{bottom:510.405000px;}
.y8e_c00304{bottom:526.245000px;}
.y8d_c00304{bottom:526.470000px;}
.y8a_c00304{bottom:527.325000px;}
.y8b_c00304{bottom:527.745000px;}
.y89_c00304{bottom:528.630000px;}
.y90_c00304{bottom:528.825000px;}
.y88_c00304{bottom:529.905000px;}
.y8c_c00304{bottom:529.920000px;}
.y8f_c00304{bottom:530.970000px;}
.y86_c00304{bottom:547.245000px;}
.y85_c00304{bottom:549.405000px;}
.y87_c00304{bottom:549.630000px;}
.y83_c00304{bottom:565.680000px;}
.y80_c00304{bottom:566.325000px;}
.y82_c00304{bottom:566.745000px;}
.y84_c00304{bottom:567.630000px;}
.y81_c00304{bottom:568.905000px;}
.y7e_c00304{bottom:586.245000px;}
.y7f_c00304{bottom:587.325000px;}
.y7d_c00304{bottom:587.550000px;}
.y7b_c00304{bottom:588.405000px;}
.y7a_c00304{bottom:588.630000px;}
.y7c_c00304{bottom:589.470000px;}
.y79_c00304{bottom:589.905000px;}
.y75_c00304{bottom:606.825000px;}
.y78_c00304{bottom:607.905000px;}
.y76_c00304{bottom:608.325000px;}
.y77_c00304{bottom:608.970000px;}
.y74_c00304{bottom:609.405000px;}
.y71_c00304{bottom:624.405000px;}
.y73_c00304{bottom:626.745000px;}
.y72_c00304{bottom:627.630000px;}
.y70_c00304{bottom:628.905000px;}
.y6f_c00304{bottom:643.905000px;}
.y6e_c00304{bottom:645.180000px;}
.y6b_c00304{bottom:646.245000px;}
.y6d_c00304{bottom:647.325000px;}
.y6c_c00304{bottom:648.405000px;}
.y66_c00304{bottom:665.745000px;}
.y6a_c00304{bottom:666.630000px;}
.y68_c00304{bottom:667.905000px;}
.y69_c00304{bottom:668.970000px;}
.y67_c00304{bottom:669.420000px;}
.y65_c00304{bottom:684.405000px;}
.y62_c00304{bottom:686.745000px;}
.y64_c00304{bottom:687.630000px;}
.y63_c00304{bottom:688.905000px;}
.y61_c00304{bottom:703.905000px;}
.y5f_c00304{bottom:706.245000px;}
.y60_c00304{bottom:707.130000px;}
.y5d_c00304{bottom:707.970000px;}
.y5e_c00304{bottom:708.405000px;}
.y5c_c00304{bottom:724.245000px;}
.y59_c00304{bottom:725.745000px;}
.y5b_c00304{bottom:726.405000px;}
.y57_c00304{bottom:726.630000px;}
.y5a_c00304{bottom:727.470000px;}
.y58_c00304{bottom:727.905000px;}
.y56_c00304{bottom:742.905000px;}
.y55_c00304{bottom:743.970000px;}
.y53_c00304{bottom:744.180000px;}
.y50_c00304{bottom:745.245000px;}
.y51_c00304{bottom:746.130000px;}
.y54_c00304{bottom:746.325000px;}
.y52_c00304{bottom:747.405000px;}
.y4f_c00304{bottom:764.745000px;}
.y4e_c00304{bottom:765.630000px;}
.y4d_c00304{bottom:766.470000px;}
.y4c_c00304{bottom:766.905000px;}
.y47_c00304{bottom:782.745000px;}
.y49_c00304{bottom:784.245000px;}
.y4a_c00304{bottom:785.325000px;}
.y4b_c00304{bottom:786.405000px;}
.y48_c00304{bottom:786.630000px;}
.y45_c00304{bottom:803.745000px;}
.y46_c00304{bottom:805.470000px;}
.y44_c00304{bottom:805.905000px;}
.y40_c00304{bottom:823.245000px;}
.y41_c00304{bottom:825.405000px;}
.y42_c00304{bottom:825.630000px;}
.y43_c00304{bottom:826.470000px;}
.y3e_c00304{bottom:841.905000px;}
.y3f_c00304{bottom:842.745000px;}
.y3b_c00304{bottom:844.245000px;}
.y39_c00304{bottom:845.130000px;}
.y3d_c00304{bottom:845.970000px;}
.y3a_c00304{bottom:846.405000px;}
.y3c_c00304{bottom:847.470000px;}
.y37_c00304{bottom:862.245000px;}
.y36_c00304{bottom:862.470000px;}
.y33_c00304{bottom:863.745000px;}
.y38_c00304{bottom:864.405000px;}
.y35_c00304{bottom:864.630000px;}
.y34_c00304{bottom:865.905000px;}
.y31_c00304{bottom:880.905000px;}
.y30_c00304{bottom:883.245000px;}
.y32_c00304{bottom:884.130000px;}
.y2f_c00304{bottom:884.970000px;}
.y2e_c00304{bottom:885.405000px;}
.y28_c00304{bottom:901.470000px;}
.y29_c00304{bottom:902.745000px;}
.y2d_c00304{bottom:903.630000px;}
.y2c_c00304{bottom:903.825000px;}
.y2b_c00304{bottom:904.470000px;}
.y27_c00304{bottom:904.905000px;}
.y2a_c00304{bottom:905.970000px;}
.y26_c00304{bottom:920.970000px;}
.y22_c00304{bottom:921.180000px;}
.y21_c00304{bottom:922.245000px;}
.y25_c00304{bottom:922.470000px;}
.y24_c00304{bottom:924.405000px;}
.y23_c00304{bottom:924.630000px;}
.y20_c00304{bottom:940.905000px;}
.y1d_c00304{bottom:941.745000px;}
.y1e_c00304{bottom:943.245000px;}
.y1c_c00304{bottom:943.905000px;}
.y1f_c00304{bottom:944.130000px;}
.y19_c00304{bottom:962.325000px;}
.y1b_c00304{bottom:962.745000px;}
.y18_c00304{bottom:963.405000px;}
.y1a_c00304{bottom:963.630000px;}
.y14_c00304{bottom:982.245000px;}
.y15_c00304{bottom:983.130000px;}
.y17_c00304{bottom:983.325000px;}
.y16_c00304{bottom:983.970000px;}
.y13_c00304{bottom:984.405000px;}
.y12_c00304{bottom:985.470000px;}
.y10_c00304{bottom:1001.745000px;}
.y11_c00304{bottom:1002.630000px;}
.yf_c00304{bottom:1003.905000px;}
.ya_c00304{bottom:1021.245000px;}
.yd_c00304{bottom:1021.905000px;}
.ye_c00304{bottom:1022.130000px;}
.yc_c00304{bottom:1022.325000px;}
.yb_c00304{bottom:1023.405000px;}
.y7_c00304{bottom:1040.745000px;}
.y8_c00304{bottom:1041.630000px;}
.y9_c00304{bottom:1042.905000px;}
.y4_c00304{bottom:1059.405000px;}
.y5_c00304{bottom:1060.245000px;}
.y6_c00304{bottom:1061.130000px;}
.y3_c00304{bottom:1062.405000px;}
.y2_c00304{bottom:1098.405000px;}
.y1_c00304{bottom:1101.630000px;}
.h7_c00304{height:4.206533px;}
.h1_c00304{height:23.025234px;}
.h8_c00304{height:25.091602px;}
.h5_c00304{height:31.364502px;}
.h2_c00304{height:35.571035px;}
.h4_c00304{height:39.777568px;}
.h3_c00304{height:43.910303px;}
.h6_c00304{height:48.116836px;}
.h9_c00304{height:53.571035px;}
.h0_c00304{height:1335.000000px;}
.w0_c00304{width:880.500000px;}
.x0_c00304{left:0.000000px;}
.x1a_c00304{left:150.645000px;}
.x3_c00304{left:151.920000px;}
.xbb_c00304{left:153.000000px;}
.x10d_c00304{left:154.500000px;}
.xad_c00304{left:167.580000px;}
.x104_c00304{left:169.080000px;}
.x106_c00304{left:171.000000px;}
.xcc_c00304{left:175.500000px;}
.x4_c00304{left:177.420000px;}
.x110_c00304{left:178.920000px;}
.x32_c00304{left:181.080000px;}
.xe6_c00304{left:183.000000px;}
.xf0_c00304{left:184.500000px;}
.x11_c00304{left:186.000000px;}
.xd9_c00304{left:190.500000px;}
.x52_c00304{left:191.580000px;}
.x7a_c00304{left:193.275000px;}
.x87_c00304{left:195.000000px;}
.x69_c00304{left:196.500000px;}
.xb2_c00304{left:198.420000px;}
.xbc_c00304{left:200.580000px;}
.x101_c00304{left:202.080000px;}
.x59_c00304{left:204.000000px;}
.x4b_c00304{left:205.080000px;}
.xea_c00304{left:208.500000px;}
.x44_c00304{left:209.580000px;}
.x111_c00304{left:211.500000px;}
.x1b_c00304{left:214.080000px;}
.xcd_c00304{left:215.580000px;}
.x26_c00304{left:217.500000px;}
.xa1_c00304{left:219.000000px;}
.x97_c00304{left:222.000000px;}
.xc5_c00304{left:223.920000px;}
.x5_c00304{left:225.000000px;}
.x4c_c00304{left:228.000000px;}
.x53_c00304{left:229.500000px;}
.xe0_c00304{left:232.920000px;}
.xd1_c00304{left:234.420000px;}
.x112_c00304{left:237.000000px;}
.xfb_c00304{left:238.500000px;}
.x118_c00304{left:240.000000px;}
.x3a_c00304{left:241.500000px;}
.x8e_c00304{left:243.000000px;}
.xa8_c00304{left:244.500000px;}
.xbd_c00304{left:246.000000px;}
.x5f_c00304{left:249.420000px;}
.x27_c00304{left:250.500000px;}
.xc6_c00304{left:251.580000px;}
.x75_c00304{left:253.500000px;}
.x6_c00304{left:255.645000px;}
.xce_c00304{left:259.500000px;}
.x1c_c00304{left:261.000000px;}
.x81_c00304{left:262.920000px;}
.x102_c00304{left:264.000000px;}
.x12_c00304{left:265.500000px;}
.x28_c00304{left:269.145000px;}
.xcf_c00304{left:271.500000px;}
.x60_c00304{left:276.000000px;}
.x6a_c00304{left:277.275000px;}
.x107_c00304{left:280.500000px;}
.xfc_c00304{left:282.000000px;}
.xe1_c00304{left:285.000000px;}
.x1d_c00304{left:286.500000px;}
.x3b_c00304{left:288.000000px;}
.xf1_c00304{left:290.580000px;}
.x76_c00304{left:292.500000px;}
.x7b_c00304{left:293.580000px;}
.x54_c00304{left:295.080000px;}
.xe2_c00304{left:297.000000px;}
.x98_c00304{left:301.500000px;}
.x5a_c00304{left:303.000000px;}
.x88_c00304{left:306.000000px;}
.x61_c00304{left:310.920000px;}
.xb3_c00304{left:313.080000px;}
.x6b_c00304{left:315.000000px;}
.x13_c00304{left:316.920000px;}
.x99_c00304{left:318.000000px;}
.xbe_c00304{left:319.920000px;}
.x4d_c00304{left:321.000000px;}
.x3c_c00304{left:322.500000px;}
.x29_c00304{left:326.355000px;}
.x6c_c00304{left:328.920000px;}
.x8f_c00304{left:332.580000px;}
.x62_c00304{left:336.000000px;}
.x1e_c00304{left:337.500000px;}
.xe3_c00304{left:339.420000px;}
.x7_c00304{left:340.500000px;}
.xae_c00304{left:342.000000px;}
.x45_c00304{left:343.500000px;}
.xb4_c00304{left:345.420000px;}
.x14_c00304{left:347.580000px;}
.x10e_c00304{left:351.420000px;}
.x3d_c00304{left:352.920000px;}
.x77_c00304{left:355.920000px;}
.xbf_c00304{left:357.000000px;}
.x6d_c00304{left:358.500000px;}
.xf2_c00304{left:360.000000px;}
.x7c_c00304{left:361.500000px;}
.xa9_c00304{left:364.920000px;}
.x89_c00304{left:366.420000px;}
.x46_c00304{left:368.355000px;}
.xe7_c00304{left:370.920000px;}
.x9a_c00304{left:372.000000px;}
.x1f_c00304{left:373.500000px;}
.x2a_c00304{left:375.000000px;}
.x82_c00304{left:378.000000px;}
.x5b_c00304{left:379.500000px;}
.xeb_c00304{left:381.420000px;}
.xa2_c00304{left:382.500000px;}
.x3e_c00304{left:384.645000px;}
.x103_c00304{left:387.000000px;}
.x6e_c00304{left:388.080000px;}
.xd2_c00304{left:390.000000px;}
.x63_c00304{left:391.500000px;}
.x108_c00304{left:393.000000px;}
.x90_c00304{left:394.080000px;}
.x15_c00304{left:395.145000px;}
.xc7_c00304{left:396.420000px;}
.xe8_c00304{left:397.920000px;}
.xaa_c00304{left:399.000000px;}
.x1_c00304{left:402.000000px;}
.x2b_c00304{left:403.080000px;}
.x33_c00304{left:404.580000px;}
.x47_c00304{left:407.775000px;}
.xec_c00304{left:409.080000px;}
.x64_c00304{left:411.420000px;}
.xb5_c00304{left:414.000000px;}
.xab_c00304{left:415.500000px;}
.x8_c00304{left:417.000000px;}
.xa3_c00304{left:418.080000px;}
.xe4_c00304{left:420.420000px;}
.x20_c00304{left:421.500000px;}
.x78_c00304{left:424.080000px;}
.x34_c00304{left:427.500000px;}
.x9b_c00304{left:429.000000px;}
.x115_c00304{left:430.920000px;}
.x2c_c00304{left:432.000000px;}
.x3f_c00304{left:433.920000px;}
.x91_c00304{left:436.920000px;}
.x4e_c00304{left:438.000000px;}
.x6f_c00304{left:439.080000px;}
.xf6_c00304{left:440.580000px;}
.x16_c00304{left:444.000000px;}
.xc8_c00304{left:445.500000px;}
.x55_c00304{left:447.420000px;}
.x9c_c00304{left:448.500000px;}
.x9_c00304{left:450.000000px;}
.xe9_c00304{left:452.580000px;}
.x7d_c00304{left:454.500000px;}
.x116_c00304{left:456.000000px;}
.x5c_c00304{left:459.000000px;}
.x35_c00304{left:460.080000px;}
.x65_c00304{left:461.580000px;}
.x2d_c00304{left:463.920000px;}
.xed_c00304{left:465.420000px;}
.x83_c00304{left:466.920000px;}
.x21_c00304{left:469.500000px;}
.x70_c00304{left:471.000000px;}
.xaf_c00304{left:472.080000px;}
.xfd_c00304{left:474.000000px;}
.xa4_c00304{left:475.920000px;}
.x5d_c00304{left:478.500000px;}
.x17_c00304{left:482.580000px;}
.xd4_c00304{left:484.920000px;}
.x113_c00304{left:486.000000px;}
.x79_c00304{left:487.500000px;}
.x4f_c00304{left:489.420000px;}
.x48_c00304{left:490.920000px;}
.xee_c00304{left:492.000000px;}
.x40_c00304{left:493.500000px;}
.xf7_c00304{left:494.580000px;}
.x84_c00304{left:496.080000px;}
.xa_c00304{left:497.580000px;}
.xc0_c00304{left:499.500000px;}
.x8a_c00304{left:501.420000px;}
.x92_c00304{left:502.500000px;}
.x2e_c00304{left:504.000000px;}
.x117_c00304{left:505.500000px;}
.xda_c00304{left:507.000000px;}
.xf3_c00304{left:510.000000px;}
.xf8_c00304{left:513.420000px;}
.xb_c00304{left:515.580000px;}
.xc1_c00304{left:519.000000px;}
.x36_c00304{left:520.920000px;}
.xb6_c00304{left:522.000000px;}
.xef_c00304{left:525.000000px;}
.x9d_c00304{left:526.500000px;}
.xc_c00304{left:527.580000px;}
.x22_c00304{left:529.920000px;}
.x93_c00304{left:532.080000px;}
.xac_c00304{left:534.420000px;}
.x114_c00304{left:537.000000px;}
.x41_c00304{left:538.500000px;}
.xf9_c00304{left:540.000000px;}
.xb7_c00304{left:542.580000px;}
.x66_c00304{left:544.080000px;}
.x71_c00304{left:547.080000px;}
.xb0_c00304{left:549.420000px;}
.x10b_c00304{left:550.920000px;}
.xd5_c00304{left:553.500000px;}
.x56_c00304{left:555.000000px;}
.xdb_c00304{left:558.000000px;}
.x8b_c00304{left:559.080000px;}
.x37_c00304{left:561.420000px;}
.xd_c00304{left:562.920000px;}
.xb8_c00304{left:564.000000px;}
.x94_c00304{left:566.145000px;}
.x72_c00304{left:567.420000px;}
.x85_c00304{left:569.580000px;}
.x7e_c00304{left:571.500000px;}
.xa5_c00304{left:572.580000px;}
.xc9_c00304{left:574.080000px;}
.xe5_c00304{left:577.500000px;}
.x18_c00304{left:579.000000px;}
.xdc_c00304{left:580.920000px;}
.x9e_c00304{left:583.080000px;}
.x109_c00304{left:585.000000px;}
.xc2_c00304{left:586.920000px;}
.x50_c00304{left:589.080000px;}
.x49_c00304{left:590.580000px;}
.xfa_c00304{left:592.080000px;}
.xd6_c00304{left:595.500000px;}
.x73_c00304{left:596.580000px;}
.xe_c00304{left:598.500000px;}
.x2f_c00304{left:601.920000px;}
.x9f_c00304{left:603.000000px;}
.x95_c00304{left:607.080000px;}
.x7f_c00304{left:609.420000px;}
.x86_c00304{left:611.580000px;}
.xb1_c00304{left:613.500000px;}
.x67_c00304{left:615.000000px;}
.xf4_c00304{left:618.855000px;}
.xd3_c00304{left:621.000000px;}
.xca_c00304{left:623.580000px;}
.x23_c00304{left:625.500000px;}
.xfe_c00304{left:628.500000px;}
.xa6_c00304{left:631.080000px;}
.x10f_c00304{left:634.080000px;}
.xc3_c00304{left:635.580000px;}
.x80_c00304{left:637.920000px;}
.x30_c00304{left:640.080000px;}
.x42_c00304{left:642.000000px;}
.x5e_c00304{left:643.500000px;}
.xd7_c00304{left:644.580000px;}
.xdd_c00304{left:646.080000px;}
.xb9_c00304{left:648.000000px;}
.x24_c00304{left:649.500000px;}
.x38_c00304{left:651.000000px;}
.x96_c00304{left:654.000000px;}
.x19_c00304{left:658.080000px;}
.xff_c00304{left:660.000000px;}
.x10a_c00304{left:661.500000px;}
.x57_c00304{left:663.420000px;}
.xd8_c00304{left:664.500000px;}
.xde_c00304{left:666.420000px;}
.x74_c00304{left:669.000000px;}
.x43_c00304{left:670.080000px;}
.x105_c00304{left:672.000000px;}
.xa7_c00304{left:673.500000px;}
.xf_c00304{left:675.000000px;}
.x4a_c00304{left:678.000000px;}
.xba_c00304{left:679.920000px;}
.x10c_c00304{left:681.000000px;}
.x51_c00304{left:682.080000px;}
.x39_c00304{left:683.580000px;}
.xc4_c00304{left:685.500000px;}
.xcb_c00304{left:686.580000px;}
.x10_c00304{left:688.080000px;}
.x8c_c00304{left:691.500000px;}
.xdf_c00304{left:694.920000px;}
.x31_c00304{left:699.000000px;}
.x25_c00304{left:700.920000px;}
.x2_c00304{left:704.580000px;}
.xa0_c00304{left:706.500000px;}
.x8d_c00304{left:708.000000px;}
.xf5_c00304{left:709.920000px;}
.x68_c00304{left:715.080000px;}
.x100_c00304{left:717.000000px;}
.x58_c00304{left:720.000000px;}
.xd0_c00304{left:723.000000px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.v1_c00304{vertical-align:16.000000pt;}
.ls0_c00304{letter-spacing:0.000000pt;}
.ws3_c00304{word-spacing:-15.012693pt;}
.ws1_c00304{word-spacing:-6.390322pt;}
.ws2_c00304{word-spacing:-1.930418pt;}
.ws0_c00304{word-spacing:-0.649049pt;}
.ws4_c00304{word-spacing:0.000000pt;}
._0_c00304{width:4.864013pt;}
.fs6_c00304{font-size:3.040000pt;}
.fs0_c00304{font-size:16.640000pt;}
.fs7_c00304{font-size:18.133333pt;}
.fs4_c00304{font-size:22.666667pt;}
.fs1_c00304{font-size:25.706667pt;}
.fs3_c00304{font-size:28.746667pt;}
.fs2_c00304{font-size:31.733333pt;}
.fs5_c00304{font-size:34.773333pt;}
.y0_c00304{bottom:0.000000pt;}
.ye0_c00304{bottom:218.440000pt;}
.ydf_c00304{bottom:221.693333pt;}
.yde_c00304{bottom:222.066667pt;}
.ydc_c00304{bottom:236.360000pt;}
.yd8_c00304{bottom:237.106667pt;}
.yda_c00304{bottom:237.493333pt;}
.ydd_c00304{bottom:238.066667pt;}
.ydb_c00304{bottom:239.026667pt;}
.yd9_c00304{bottom:239.226667pt;}
.yd7_c00304{bottom:240.360000pt;}
.yd2_c00304{bottom:255.773333pt;}
.yd5_c00304{bottom:256.360000pt;}
.yd3_c00304{bottom:256.560000pt;}
.yd4_c00304{bottom:257.306667pt;}
.yd6_c00304{bottom:257.693333pt;}
.ycb_c00304{bottom:271.026667pt;}
.yd1_c00304{bottom:271.400000pt;}
.yca_c00304{bottom:271.973333pt;}
.ycd_c00304{bottom:272.360000pt;}
.yd0_c00304{bottom:272.733333pt;}
.yc9_c00304{bottom:273.106667pt;}
.ycf_c00304{bottom:273.693333pt;}
.ycc_c00304{bottom:274.066667pt;}
.yce_c00304{bottom:274.640000pt;}
.yc8_c00304{bottom:289.493333pt;}
.yc4_c00304{bottom:289.693333pt;}
.yc3_c00304{bottom:290.440000pt;}
.yc6_c00304{bottom:291.226667pt;}
.yc5_c00304{bottom:291.400000pt;}
.yc7_c00304{bottom:291.973333pt;}
.yc2_c00304{bottom:292.360000pt;}
.yc1_c00304{bottom:306.640000pt;}
.ybd_c00304{bottom:307.400000pt;}
.ybf_c00304{bottom:307.773333pt;}
.yc0_c00304{bottom:308.560000pt;}
.ybe_c00304{bottom:309.693333pt;}
.ybc_c00304{bottom:311.026667pt;}
.yb7_c00304{bottom:327.773333pt;}
.yba_c00304{bottom:327.973333pt;}
.ybb_c00304{bottom:328.733333pt;}
.yb6_c00304{bottom:329.693333pt;}
.yb9_c00304{bottom:329.893333pt;}
.yb8_c00304{bottom:330.640000pt;}
.yb5_c00304{bottom:344.360000pt;}
.yb3_c00304{bottom:346.440000pt;}
.yb4_c00304{bottom:347.400000pt;}
.yb2_c00304{bottom:348.360000pt;}
.yad_c00304{bottom:363.773333pt;}
.yb1_c00304{bottom:364.360000pt;}
.yaf_c00304{bottom:364.560000pt;}
.yb0_c00304{bottom:365.306667pt;}
.yae_c00304{bottom:365.693333pt;}
.yac_c00304{bottom:379.026667pt;}
.yab_c00304{bottom:379.773333pt;}
.yaa_c00304{bottom:381.106667pt;}
.ya9_c00304{bottom:382.066667pt;}
.ya7_c00304{bottom:382.440000pt;}
.ya8_c00304{bottom:383.026667pt;}
.ya3_c00304{bottom:398.440000pt;}
.ya2_c00304{bottom:399.400000pt;}
.ya6_c00304{bottom:399.600000pt;}
.ya4_c00304{bottom:400.360000pt;}
.ya5_c00304{bottom:400.560000pt;}
.ya1_c00304{bottom:401.693333pt;}
.y9b_c00304{bottom:415.026667pt;}
.ya0_c00304{bottom:415.773333pt;}
.y9f_c00304{bottom:416.733333pt;}
.y9c_c00304{bottom:417.693333pt;}
.y9e_c00304{bottom:418.640000pt;}
.y9d_c00304{bottom:419.026667pt;}
.y9a_c00304{bottom:432.733333pt;}
.y99_c00304{bottom:433.106667pt;}
.y98_c00304{bottom:435.026667pt;}
.y97_c00304{bottom:435.226667pt;}
.y96_c00304{bottom:436.360000pt;}
.y95_c00304{bottom:450.440000pt;}
.y92_c00304{bottom:451.773333pt;}
.y93_c00304{bottom:452.560000pt;}
.y94_c00304{bottom:453.306667pt;}
.y91_c00304{bottom:453.693333pt;}
.y8e_c00304{bottom:467.773333pt;}
.y8d_c00304{bottom:467.973333pt;}
.y8a_c00304{bottom:468.733333pt;}
.y8b_c00304{bottom:469.106667pt;}
.y89_c00304{bottom:469.893333pt;}
.y90_c00304{bottom:470.066667pt;}
.y88_c00304{bottom:471.026667pt;}
.y8c_c00304{bottom:471.040000pt;}
.y8f_c00304{bottom:471.973333pt;}
.y86_c00304{bottom:486.440000pt;}
.y85_c00304{bottom:488.360000pt;}
.y87_c00304{bottom:488.560000pt;}
.y83_c00304{bottom:502.826667pt;}
.y80_c00304{bottom:503.400000pt;}
.y82_c00304{bottom:503.773333pt;}
.y84_c00304{bottom:504.560000pt;}
.y81_c00304{bottom:505.693333pt;}
.y7e_c00304{bottom:521.106667pt;}
.y7f_c00304{bottom:522.066667pt;}
.y7d_c00304{bottom:522.266667pt;}
.y7b_c00304{bottom:523.026667pt;}
.y7a_c00304{bottom:523.226667pt;}
.y7c_c00304{bottom:523.973333pt;}
.y79_c00304{bottom:524.360000pt;}
.y75_c00304{bottom:539.400000pt;}
.y78_c00304{bottom:540.360000pt;}
.y76_c00304{bottom:540.733333pt;}
.y77_c00304{bottom:541.306667pt;}
.y74_c00304{bottom:541.693333pt;}
.y71_c00304{bottom:555.026667pt;}
.y73_c00304{bottom:557.106667pt;}
.y72_c00304{bottom:557.893333pt;}
.y70_c00304{bottom:559.026667pt;}
.y6f_c00304{bottom:572.360000pt;}
.y6e_c00304{bottom:573.493333pt;}
.y6b_c00304{bottom:574.440000pt;}
.y6d_c00304{bottom:575.400000pt;}
.y6c_c00304{bottom:576.360000pt;}
.y66_c00304{bottom:591.773333pt;}
.y6a_c00304{bottom:592.560000pt;}
.y68_c00304{bottom:593.693333pt;}
.y69_c00304{bottom:594.640000pt;}
.y67_c00304{bottom:595.040000pt;}
.y65_c00304{bottom:608.360000pt;}
.y62_c00304{bottom:610.440000pt;}
.y64_c00304{bottom:611.226667pt;}
.y63_c00304{bottom:612.360000pt;}
.y61_c00304{bottom:625.693333pt;}
.y5f_c00304{bottom:627.773333pt;}
.y60_c00304{bottom:628.560000pt;}
.y5d_c00304{bottom:629.306667pt;}
.y5e_c00304{bottom:629.693333pt;}
.y5c_c00304{bottom:643.773333pt;}
.y59_c00304{bottom:645.106667pt;}
.y5b_c00304{bottom:645.693333pt;}
.y57_c00304{bottom:645.893333pt;}
.y5a_c00304{bottom:646.640000pt;}
.y58_c00304{bottom:647.026667pt;}
.y56_c00304{bottom:660.360000pt;}
.y55_c00304{bottom:661.306667pt;}
.y53_c00304{bottom:661.493333pt;}
.y50_c00304{bottom:662.440000pt;}
.y51_c00304{bottom:663.226667pt;}
.y54_c00304{bottom:663.400000pt;}
.y52_c00304{bottom:664.360000pt;}
.y4f_c00304{bottom:679.773333pt;}
.y4e_c00304{bottom:680.560000pt;}
.y4d_c00304{bottom:681.306667pt;}
.y4c_c00304{bottom:681.693333pt;}
.y47_c00304{bottom:695.773333pt;}
.y49_c00304{bottom:697.106667pt;}
.y4a_c00304{bottom:698.066667pt;}
.y4b_c00304{bottom:699.026667pt;}
.y48_c00304{bottom:699.226667pt;}
.y45_c00304{bottom:714.440000pt;}
.y46_c00304{bottom:715.973333pt;}
.y44_c00304{bottom:716.360000pt;}
.y40_c00304{bottom:731.773333pt;}
.y41_c00304{bottom:733.693333pt;}
.y42_c00304{bottom:733.893333pt;}
.y43_c00304{bottom:734.640000pt;}
.y3e_c00304{bottom:748.360000pt;}
.y3f_c00304{bottom:749.106667pt;}
.y3b_c00304{bottom:750.440000pt;}
.y39_c00304{bottom:751.226667pt;}
.y3d_c00304{bottom:751.973333pt;}
.y3a_c00304{bottom:752.360000pt;}
.y3c_c00304{bottom:753.306667pt;}
.y37_c00304{bottom:766.440000pt;}
.y36_c00304{bottom:766.640000pt;}
.y33_c00304{bottom:767.773333pt;}
.y38_c00304{bottom:768.360000pt;}
.y35_c00304{bottom:768.560000pt;}
.y34_c00304{bottom:769.693333pt;}
.y31_c00304{bottom:783.026667pt;}
.y30_c00304{bottom:785.106667pt;}
.y32_c00304{bottom:785.893333pt;}
.y2f_c00304{bottom:786.640000pt;}
.y2e_c00304{bottom:787.026667pt;}
.y28_c00304{bottom:801.306667pt;}
.y29_c00304{bottom:802.440000pt;}
.y2d_c00304{bottom:803.226667pt;}
.y2c_c00304{bottom:803.400000pt;}
.y2b_c00304{bottom:803.973333pt;}
.y27_c00304{bottom:804.360000pt;}
.y2a_c00304{bottom:805.306667pt;}
.y26_c00304{bottom:818.640000pt;}
.y22_c00304{bottom:818.826667pt;}
.y21_c00304{bottom:819.773333pt;}
.y25_c00304{bottom:819.973333pt;}
.y24_c00304{bottom:821.693333pt;}
.y23_c00304{bottom:821.893333pt;}
.y20_c00304{bottom:836.360000pt;}
.y1d_c00304{bottom:837.106667pt;}
.y1e_c00304{bottom:838.440000pt;}
.y1c_c00304{bottom:839.026667pt;}
.y1f_c00304{bottom:839.226667pt;}
.y19_c00304{bottom:855.400000pt;}
.y1b_c00304{bottom:855.773333pt;}
.y18_c00304{bottom:856.360000pt;}
.y1a_c00304{bottom:856.560000pt;}
.y14_c00304{bottom:873.106667pt;}
.y15_c00304{bottom:873.893333pt;}
.y17_c00304{bottom:874.066667pt;}
.y16_c00304{bottom:874.640000pt;}
.y13_c00304{bottom:875.026667pt;}
.y12_c00304{bottom:875.973333pt;}
.y10_c00304{bottom:890.440000pt;}
.y11_c00304{bottom:891.226667pt;}
.yf_c00304{bottom:892.360000pt;}
.ya_c00304{bottom:907.773333pt;}
.yd_c00304{bottom:908.360000pt;}
.ye_c00304{bottom:908.560000pt;}
.yc_c00304{bottom:908.733333pt;}
.yb_c00304{bottom:909.693333pt;}
.y7_c00304{bottom:925.106667pt;}
.y8_c00304{bottom:925.893333pt;}
.y9_c00304{bottom:927.026667pt;}
.y4_c00304{bottom:941.693333pt;}
.y5_c00304{bottom:942.440000pt;}
.y6_c00304{bottom:943.226667pt;}
.y3_c00304{bottom:944.360000pt;}
.y2_c00304{bottom:976.360000pt;}
.y1_c00304{bottom:979.226667pt;}
.h7_c00304{height:3.739141pt;}
.h1_c00304{height:20.466875pt;}
.h8_c00304{height:22.303646pt;}
.h5_c00304{height:27.879557pt;}
.h2_c00304{height:31.618698pt;}
.h4_c00304{height:35.357839pt;}
.h3_c00304{height:39.031380pt;}
.h6_c00304{height:42.770521pt;}
.h9_c00304{height:47.618698pt;}
.h0_c00304{height:1186.666667pt;}
.w0_c00304{width:782.666667pt;}
.x0_c00304{left:0.000000pt;}
.x1a_c00304{left:133.906667pt;}
.x3_c00304{left:135.040000pt;}
.xbb_c00304{left:136.000000pt;}
.x10d_c00304{left:137.333333pt;}
.xad_c00304{left:148.960000pt;}
.x104_c00304{left:150.293333pt;}
.x106_c00304{left:152.000000pt;}
.xcc_c00304{left:156.000000pt;}
.x4_c00304{left:157.706667pt;}
.x110_c00304{left:159.040000pt;}
.x32_c00304{left:160.960000pt;}
.xe6_c00304{left:162.666667pt;}
.xf0_c00304{left:164.000000pt;}
.x11_c00304{left:165.333333pt;}
.xd9_c00304{left:169.333333pt;}
.x52_c00304{left:170.293333pt;}
.x7a_c00304{left:171.800000pt;}
.x87_c00304{left:173.333333pt;}
.x69_c00304{left:174.666667pt;}
.xb2_c00304{left:176.373333pt;}
.xbc_c00304{left:178.293333pt;}
.x101_c00304{left:179.626667pt;}
.x59_c00304{left:181.333333pt;}
.x4b_c00304{left:182.293333pt;}
.xea_c00304{left:185.333333pt;}
.x44_c00304{left:186.293333pt;}
.x111_c00304{left:188.000000pt;}
.x1b_c00304{left:190.293333pt;}
.xcd_c00304{left:191.626667pt;}
.x26_c00304{left:193.333333pt;}
.xa1_c00304{left:194.666667pt;}
.x97_c00304{left:197.333333pt;}
.xc5_c00304{left:199.040000pt;}
.x5_c00304{left:200.000000pt;}
.x4c_c00304{left:202.666667pt;}
.x53_c00304{left:204.000000pt;}
.xe0_c00304{left:207.040000pt;}
.xd1_c00304{left:208.373333pt;}
.x112_c00304{left:210.666667pt;}
.xfb_c00304{left:212.000000pt;}
.x118_c00304{left:213.333333pt;}
.x3a_c00304{left:214.666667pt;}
.x8e_c00304{left:216.000000pt;}
.xa8_c00304{left:217.333333pt;}
.xbd_c00304{left:218.666667pt;}
.x5f_c00304{left:221.706667pt;}
.x27_c00304{left:222.666667pt;}
.xc6_c00304{left:223.626667pt;}
.x75_c00304{left:225.333333pt;}
.x6_c00304{left:227.240000pt;}
.xce_c00304{left:230.666667pt;}
.x1c_c00304{left:232.000000pt;}
.x81_c00304{left:233.706667pt;}
.x102_c00304{left:234.666667pt;}
.x12_c00304{left:236.000000pt;}
.x28_c00304{left:239.240000pt;}
.xcf_c00304{left:241.333333pt;}
.x60_c00304{left:245.333333pt;}
.x6a_c00304{left:246.466667pt;}
.x107_c00304{left:249.333333pt;}
.xfc_c00304{left:250.666667pt;}
.xe1_c00304{left:253.333333pt;}
.x1d_c00304{left:254.666667pt;}
.x3b_c00304{left:256.000000pt;}
.xf1_c00304{left:258.293333pt;}
.x76_c00304{left:260.000000pt;}
.x7b_c00304{left:260.960000pt;}
.x54_c00304{left:262.293333pt;}
.xe2_c00304{left:264.000000pt;}
.x98_c00304{left:268.000000pt;}
.x5a_c00304{left:269.333333pt;}
.x88_c00304{left:272.000000pt;}
.x61_c00304{left:276.373333pt;}
.xb3_c00304{left:278.293333pt;}
.x6b_c00304{left:280.000000pt;}
.x13_c00304{left:281.706667pt;}
.x99_c00304{left:282.666667pt;}
.xbe_c00304{left:284.373333pt;}
.x4d_c00304{left:285.333333pt;}
.x3c_c00304{left:286.666667pt;}
.x29_c00304{left:290.093333pt;}
.x6c_c00304{left:292.373333pt;}
.x8f_c00304{left:295.626667pt;}
.x62_c00304{left:298.666667pt;}
.x1e_c00304{left:300.000000pt;}
.xe3_c00304{left:301.706667pt;}
.x7_c00304{left:302.666667pt;}
.xae_c00304{left:304.000000pt;}
.x45_c00304{left:305.333333pt;}
.xb4_c00304{left:307.040000pt;}
.x14_c00304{left:308.960000pt;}
.x10e_c00304{left:312.373333pt;}
.x3d_c00304{left:313.706667pt;}
.x77_c00304{left:316.373333pt;}
.xbf_c00304{left:317.333333pt;}
.x6d_c00304{left:318.666667pt;}
.xf2_c00304{left:320.000000pt;}
.x7c_c00304{left:321.333333pt;}
.xa9_c00304{left:324.373333pt;}
.x89_c00304{left:325.706667pt;}
.x46_c00304{left:327.426667pt;}
.xe7_c00304{left:329.706667pt;}
.x9a_c00304{left:330.666667pt;}
.x1f_c00304{left:332.000000pt;}
.x2a_c00304{left:333.333333pt;}
.x82_c00304{left:336.000000pt;}
.x5b_c00304{left:337.333333pt;}
.xeb_c00304{left:339.040000pt;}
.xa2_c00304{left:340.000000pt;}
.x3e_c00304{left:341.906667pt;}
.x103_c00304{left:344.000000pt;}
.x6e_c00304{left:344.960000pt;}
.xd2_c00304{left:346.666667pt;}
.x63_c00304{left:348.000000pt;}
.x108_c00304{left:349.333333pt;}
.x90_c00304{left:350.293333pt;}
.x15_c00304{left:351.240000pt;}
.xc7_c00304{left:352.373333pt;}
.xe8_c00304{left:353.706667pt;}
.xaa_c00304{left:354.666667pt;}
.x1_c00304{left:357.333333pt;}
.x2b_c00304{left:358.293333pt;}
.x33_c00304{left:359.626667pt;}
.x47_c00304{left:362.466667pt;}
.xec_c00304{left:363.626667pt;}
.x64_c00304{left:365.706667pt;}
.xb5_c00304{left:368.000000pt;}
.xab_c00304{left:369.333333pt;}
.x8_c00304{left:370.666667pt;}
.xa3_c00304{left:371.626667pt;}
.xe4_c00304{left:373.706667pt;}
.x20_c00304{left:374.666667pt;}
.x78_c00304{left:376.960000pt;}
.x34_c00304{left:380.000000pt;}
.x9b_c00304{left:381.333333pt;}
.x115_c00304{left:383.040000pt;}
.x2c_c00304{left:384.000000pt;}
.x3f_c00304{left:385.706667pt;}
.x91_c00304{left:388.373333pt;}
.x4e_c00304{left:389.333333pt;}
.x6f_c00304{left:390.293333pt;}
.xf6_c00304{left:391.626667pt;}
.x16_c00304{left:394.666667pt;}
.xc8_c00304{left:396.000000pt;}
.x55_c00304{left:397.706667pt;}
.x9c_c00304{left:398.666667pt;}
.x9_c00304{left:400.000000pt;}
.xe9_c00304{left:402.293333pt;}
.x7d_c00304{left:404.000000pt;}
.x116_c00304{left:405.333333pt;}
.x5c_c00304{left:408.000000pt;}
.x35_c00304{left:408.960000pt;}
.x65_c00304{left:410.293333pt;}
.x2d_c00304{left:412.373333pt;}
.xed_c00304{left:413.706667pt;}
.x83_c00304{left:415.040000pt;}
.x21_c00304{left:417.333333pt;}
.x70_c00304{left:418.666667pt;}
.xaf_c00304{left:419.626667pt;}
.xfd_c00304{left:421.333333pt;}
.xa4_c00304{left:423.040000pt;}
.x5d_c00304{left:425.333333pt;}
.x17_c00304{left:428.960000pt;}
.xd4_c00304{left:431.040000pt;}
.x113_c00304{left:432.000000pt;}
.x79_c00304{left:433.333333pt;}
.x4f_c00304{left:435.040000pt;}
.x48_c00304{left:436.373333pt;}
.xee_c00304{left:437.333333pt;}
.x40_c00304{left:438.666667pt;}
.xf7_c00304{left:439.626667pt;}
.x84_c00304{left:440.960000pt;}
.xa_c00304{left:442.293333pt;}
.xc0_c00304{left:444.000000pt;}
.x8a_c00304{left:445.706667pt;}
.x92_c00304{left:446.666667pt;}
.x2e_c00304{left:448.000000pt;}
.x117_c00304{left:449.333333pt;}
.xda_c00304{left:450.666667pt;}
.xf3_c00304{left:453.333333pt;}
.xf8_c00304{left:456.373333pt;}
.xb_c00304{left:458.293333pt;}
.xc1_c00304{left:461.333333pt;}
.x36_c00304{left:463.040000pt;}
.xb6_c00304{left:464.000000pt;}
.xef_c00304{left:466.666667pt;}
.x9d_c00304{left:468.000000pt;}
.xc_c00304{left:468.960000pt;}
.x22_c00304{left:471.040000pt;}
.x93_c00304{left:472.960000pt;}
.xac_c00304{left:475.040000pt;}
.x114_c00304{left:477.333333pt;}
.x41_c00304{left:478.666667pt;}
.xf9_c00304{left:480.000000pt;}
.xb7_c00304{left:482.293333pt;}
.x66_c00304{left:483.626667pt;}
.x71_c00304{left:486.293333pt;}
.xb0_c00304{left:488.373333pt;}
.x10b_c00304{left:489.706667pt;}
.xd5_c00304{left:492.000000pt;}
.x56_c00304{left:493.333333pt;}
.xdb_c00304{left:496.000000pt;}
.x8b_c00304{left:496.960000pt;}
.x37_c00304{left:499.040000pt;}
.xd_c00304{left:500.373333pt;}
.xb8_c00304{left:501.333333pt;}
.x94_c00304{left:503.240000pt;}
.x72_c00304{left:504.373333pt;}
.x85_c00304{left:506.293333pt;}
.x7e_c00304{left:508.000000pt;}
.xa5_c00304{left:508.960000pt;}
.xc9_c00304{left:510.293333pt;}
.xe5_c00304{left:513.333333pt;}
.x18_c00304{left:514.666667pt;}
.xdc_c00304{left:516.373333pt;}
.x9e_c00304{left:518.293333pt;}
.x109_c00304{left:520.000000pt;}
.xc2_c00304{left:521.706667pt;}
.x50_c00304{left:523.626667pt;}
.x49_c00304{left:524.960000pt;}
.xfa_c00304{left:526.293333pt;}
.xd6_c00304{left:529.333333pt;}
.x73_c00304{left:530.293333pt;}
.xe_c00304{left:532.000000pt;}
.x2f_c00304{left:535.040000pt;}
.x9f_c00304{left:536.000000pt;}
.x95_c00304{left:539.626667pt;}
.x7f_c00304{left:541.706667pt;}
.x86_c00304{left:543.626667pt;}
.xb1_c00304{left:545.333333pt;}
.x67_c00304{left:546.666667pt;}
.xf4_c00304{left:550.093333pt;}
.xd3_c00304{left:552.000000pt;}
.xca_c00304{left:554.293333pt;}
.x23_c00304{left:556.000000pt;}
.xfe_c00304{left:558.666667pt;}
.xa6_c00304{left:560.960000pt;}
.x10f_c00304{left:563.626667pt;}
.xc3_c00304{left:564.960000pt;}
.x80_c00304{left:567.040000pt;}
.x30_c00304{left:568.960000pt;}
.x42_c00304{left:570.666667pt;}
.x5e_c00304{left:572.000000pt;}
.xd7_c00304{left:572.960000pt;}
.xdd_c00304{left:574.293333pt;}
.xb9_c00304{left:576.000000pt;}
.x24_c00304{left:577.333333pt;}
.x38_c00304{left:578.666667pt;}
.x96_c00304{left:581.333333pt;}
.x19_c00304{left:584.960000pt;}
.xff_c00304{left:586.666667pt;}
.x10a_c00304{left:588.000000pt;}
.x57_c00304{left:589.706667pt;}
.xd8_c00304{left:590.666667pt;}
.xde_c00304{left:592.373333pt;}
.x74_c00304{left:594.666667pt;}
.x43_c00304{left:595.626667pt;}
.x105_c00304{left:597.333333pt;}
.xa7_c00304{left:598.666667pt;}
.xf_c00304{left:600.000000pt;}
.x4a_c00304{left:602.666667pt;}
.xba_c00304{left:604.373333pt;}
.x10c_c00304{left:605.333333pt;}
.x51_c00304{left:606.293333pt;}
.x39_c00304{left:607.626667pt;}
.xc4_c00304{left:609.333333pt;}
.xcb_c00304{left:610.293333pt;}
.x10_c00304{left:611.626667pt;}
.x8c_c00304{left:614.666667pt;}
.xdf_c00304{left:617.706667pt;}
.x31_c00304{left:621.333333pt;}
.x25_c00304{left:623.040000pt;}
.x2_c00304{left:626.293333pt;}
.xa0_c00304{left:628.000000pt;}
.x8d_c00304{left:629.333333pt;}
.xf5_c00304{left:631.040000pt;}
.x68_c00304{left:635.626667pt;}
.x100_c00304{left:637.333333pt;}
.x58_c00304{left:640.000000pt;}
.xd0_c00304{left:642.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_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_713fce2f0fec25ead572b639.woff2')format("woff");}.ff1_c00305{font-family:ff1_c00305;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb3_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);}
.m8b_c00305{transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);}
.m90_c00305{transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);}
.m60_c00305{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.m7a_c00305{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m34_c00305{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.mb8_c00305{transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);}
.maf_c00305{transform:matrix(0.346218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346218,0.000000,0.000000,0.250000,0,0);}
.md9_c00305{transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);}
.mda_c00305{transform:matrix(0.349580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349580,0.000000,0.000000,0.250000,0,0);}
.mad_c00305{transform:matrix(0.356212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356212,0.000000,0.000000,0.250000,0,0);}
.m84_c00305{transform:matrix(0.358129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358129,0.000000,0.000000,0.250000,0,0);}
.m57_c00305{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m50_c00305{transform:matrix(0.360084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360084,0.000000,0.000000,0.250000,0,0);}
.mc_c00305{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mf2_c00305{transform:matrix(0.365126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365126,0.000000,0.000000,0.250000,0,0);}
.m0_c00305{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m3c_c00305{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m9d_c00305{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m26_c00305{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m8c_c00305{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m8a_c00305{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m88_c00305{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m3d_c00305{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m9a_c00305{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.ma1_c00305{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m4f_c00305{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m22_c00305{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m25_c00305{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mba_c00305{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.md4_c00305{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m9b_c00305{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.me_c00305{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.md2_c00305{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m95_c00305{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m23_c00305{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.mf_c00305{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m2e_c00305{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m9e_c00305{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m42_c00305{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.me6_c00305{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m6b_c00305{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m96_c00305{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.mce_c00305{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.md0_c00305{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m98_c00305{transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);}
.mf7_c00305{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.md3_c00305{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.me7_c00305{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m13_c00305{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.ma4_c00305{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m63_c00305{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m8d_c00305{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.mdc_c00305{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mca_c00305{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m17_c00305{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m6_c00305{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m6d_c00305{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m97_c00305{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m3f_c00305{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mef_c00305{transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);}
.me3_c00305{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.mdd_c00305{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m56_c00305{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.me4_c00305{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m7f_c00305{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m65_c00305{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m8f_c00305{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m9c_c00305{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m21_c00305{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m49_c00305{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m81_c00305{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.mbb_c00305{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.me0_c00305{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.ma0_c00305{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.md6_c00305{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mc0_c00305{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m72_c00305{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m45_c00305{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mbf_c00305{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mb0_c00305{transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);}
.mb4_c00305{transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);}
.mc6_c00305{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.m76_c00305{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.ma6_c00305{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m18_c00305{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.ma9_c00305{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m5d_c00305{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mee_c00305{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m15_c00305{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.me2_c00305{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.mc2_c00305{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m2_c00305{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m3a_c00305{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m101_c00305{transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);}
.m77_c00305{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m7d_c00305{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m104_c00305{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m6a_c00305{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.mb9_c00305{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);}
.m102_c00305{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m5e_c00305{transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);}
.m47_c00305{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.mfc_c00305{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m6e_c00305{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m54_c00305{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mae_c00305{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mea_c00305{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m86_c00305{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.mf3_c00305{transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);}
.m30_c00305{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.mf0_c00305{transform:matrix(0.468067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468067,0.000000,0.000000,0.250000,0,0);}
.m109_c00305{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m9f_c00305{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.mb2_c00305{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.m1c_c00305{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.ma5_c00305{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.ma3_c00305{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.mcf_c00305{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.me5_c00305{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.mc7_c00305{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m1f_c00305{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m5f_c00305{transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);}
.m4b_c00305{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m106_c00305{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.m51_c00305{transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);}
.meb_c00305{transform:matrix(0.489916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489916,0.000000,0.000000,0.250000,0,0);}
.m4_c00305{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.me1_c00305{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m66_c00305{transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);}
.m89_c00305{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m7e_c00305{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m1a_c00305{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);}
.mc5_c00305{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.md_c00305{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m93_c00305{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m85_c00305{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m82_c00305{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m61_c00305{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.md8_c00305{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m103_c00305{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m14_c00305{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m40_c00305{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m19_c00305{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m16_c00305{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m5b_c00305{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.me8_c00305{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m7c_c00305{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mb6_c00305{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m39_c00305{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m27_c00305{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m79_c00305{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m37_c00305{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m83_c00305{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.maa_c00305{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m94_c00305{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m2a_c00305{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mbe_c00305{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mc9_c00305{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m67_c00305{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m8_c00305{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.md1_c00305{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mc3_c00305{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.mf5_c00305{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m52_c00305{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m6c_c00305{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m105_c00305{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m10_c00305{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m53_c00305{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m8e_c00305{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mbd_c00305{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m2d_c00305{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.mdf_c00305{transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);}
.m78_c00305{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m3e_c00305{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m5_c00305{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mbc_c00305{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m12_c00305{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m33_c00305{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m9_c00305{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m69_c00305{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m3b_c00305{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mab_c00305{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m64_c00305{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m24_c00305{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mc8_c00305{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.md7_c00305{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m87_c00305{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m38_c00305{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mb1_c00305{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m4d_c00305{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m71_c00305{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.med_c00305{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m7b_c00305{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m6f_c00305{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m32_c00305{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m1e_c00305{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);}
.m58_c00305{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m28_c00305{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.md5_c00305{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mfe_c00305{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mcc_c00305{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.ma8_c00305{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m5c_c00305{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.mac_c00305{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mb_c00305{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m1d_c00305{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m1b_c00305{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m41_c00305{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mf4_c00305{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m35_c00305{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mec_c00305{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m99_c00305{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m5a_c00305{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.mf8_c00305{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.ma2_c00305{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.ma_c00305{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.mfb_c00305{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m62_c00305{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.mc4_c00305{transform:matrix(0.587647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587647,0.000000,0.000000,0.250000,0,0);}
.m73_c00305{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.mcd_c00305{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m80_c00305{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mdb_c00305{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m3_c00305{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m29_c00305{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m59_c00305{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m44_c00305{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.mcb_c00305{transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);}
.m46_c00305{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m48_c00305{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m4e_c00305{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.mfd_c00305{transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);}
.m1_c00305{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.mfa_c00305{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m68_c00305{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m2b_c00305{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m11_c00305{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.mc1_c00305{transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);}
.m31_c00305{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mde_c00305{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.me9_c00305{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m4a_c00305{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m20_c00305{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m4c_c00305{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m43_c00305{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mf1_c00305{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m100_c00305{transform:matrix(0.697794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697794,0.000000,0.000000,0.250000,0,0);}
.mf9_c00305{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m92_c00305{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m107_c00305{transform:matrix(0.719853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719853,0.000000,0.000000,0.250000,0,0);}
.m2c_c00305{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m70_c00305{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m75_c00305{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m108_c00305{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.mff_c00305{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m36_c00305{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m74_c00305{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m55_c00305{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m91_c00305{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.mf6_c00305{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m2f_c00305{transform:matrix(0.800588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800588,0.000000,0.000000,0.250000,0,0);}
.m7_c00305{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.ma7_c00305{transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);}
.mb5_c00305{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.mb7_c00305{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00305{vertical-align:-6.000000px;}
.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:-7.448345px;}
.ws5_c00305{word-spacing:-7.381114px;}
.ws3_c00305{word-spacing:-4.527360px;}
.ws1_c00305{word-spacing:-3.584672px;}
.ws4_c00305{word-spacing:-3.045198px;}
.ws6_c00305{word-spacing:0.000000px;}
.ws2_c00305{word-spacing:5.111948px;}
.fc0_c00305{color:transparent;}
.fs8_c00305{font-size:3.420000px;}
.fs7_c00305{font-size:11.880000px;}
.fs3_c00305{font-size:18.720000px;}
.fs1_c00305{font-size:20.400000px;}
.fs4_c00305{font-size:25.500000px;}
.fs2_c00305{font-size:28.920000px;}
.fs5_c00305{font-size:32.340000px;}
.fs0_c00305{font-size:35.700000px;}
.fs6_c00305{font-size:39.120000px;}
.y0_c00305{bottom:0.000000px;}
.yea_c00305{bottom:248.745000px;}
.yeb_c00305{bottom:248.970000px;}
.yed_c00305{bottom:249.825000px;}
.yef_c00305{bottom:250.050000px;}
.yee_c00305{bottom:250.245000px;}
.yec_c00305{bottom:250.905000px;}
.yf0_c00305{bottom:251.970000px;}
.ye6_c00305{bottom:268.245000px;}
.ye3_c00305{bottom:269.745000px;}
.ye9_c00305{bottom:270.405000px;}
.ye5_c00305{bottom:270.630000px;}
.ye8_c00305{bottom:270.825000px;}
.ye4_c00305{bottom:271.470000px;}
.ye7_c00305{bottom:271.905000px;}
.yde_c00305{bottom:286.905000px;}
.ye2_c00305{bottom:289.050000px;}
.ydd_c00305{bottom:289.245000px;}
.ye1_c00305{bottom:290.130000px;}
.ydc_c00305{bottom:290.325000px;}
.ye0_c00305{bottom:290.970000px;}
.ydf_c00305{bottom:291.405000px;}
.yda_c00305{bottom:307.905000px;}
.yd6_c00305{bottom:308.745000px;}
.yd8_c00305{bottom:309.825000px;}
.ydb_c00305{bottom:310.470000px;}
.yd7_c00305{bottom:310.905000px;}
.yd9_c00305{bottom:311.970000px;}
.ycf_c00305{bottom:328.245000px;}
.yd3_c00305{bottom:329.130000px;}
.yd1_c00305{bottom:329.325000px;}
.yd4_c00305{bottom:329.970000px;}
.yd0_c00305{bottom:330.405000px;}
.yd2_c00305{bottom:330.630000px;}
.yd5_c00305{bottom:331.470000px;}
.ycb_c00305{bottom:346.905000px;}
.yce_c00305{bottom:347.745000px;}
.yc9_c00305{bottom:348.180000px;}
.yca_c00305{bottom:349.245000px;}
.yc8_c00305{bottom:349.905000px;}
.ycd_c00305{bottom:350.130000px;}
.ycc_c00305{bottom:351.405000px;}
.yc6_c00305{bottom:366.825000px;}
.yc2_c00305{bottom:367.245000px;}
.yc7_c00305{bottom:368.745000px;}
.yc3_c00305{bottom:369.405000px;}
.yc5_c00305{bottom:370.470000px;}
.yc4_c00305{bottom:370.905000px;}
.yc1_c00305{bottom:386.745000px;}
.ybe_c00305{bottom:388.245000px;}
.yc0_c00305{bottom:389.130000px;}
.ybd_c00305{bottom:390.405000px;}
.ybf_c00305{bottom:391.470000px;}
.ybc_c00305{bottom:406.245000px;}
.yba_c00305{bottom:407.745000px;}
.ybb_c00305{bottom:408.405000px;}
.yb9_c00305{bottom:408.630000px;}
.yb8_c00305{bottom:409.470000px;}
.yb7_c00305{bottom:409.905000px;}
.yb3_c00305{bottom:424.905000px;}
.yb4_c00305{bottom:427.245000px;}
.yb6_c00305{bottom:428.130000px;}
.yb5_c00305{bottom:429.405000px;}
.yb1_c00305{bottom:446.745000px;}
.yb2_c00305{bottom:447.630000px;}
.yaf_c00305{bottom:448.905000px;}
.yb0_c00305{bottom:449.130000px;}
.yae_c00305{bottom:466.245000px;}
.yad_c00305{bottom:467.130000px;}
.yab_c00305{bottom:467.745000px;}
.yac_c00305{bottom:468.405000px;}
.yaa_c00305{bottom:469.905000px;}
.ya8_c00305{bottom:485.745000px;}
.ya9_c00305{bottom:486.630000px;}
.ya5_c00305{bottom:487.905000px;}
.ya6_c00305{bottom:488.130000px;}
.ya7_c00305{bottom:488.970000px;}
.ya4_c00305{bottom:489.405000px;}
.ya1_c00305{bottom:506.745000px;}
.ya2_c00305{bottom:507.405000px;}
.ya0_c00305{bottom:507.825000px;}
.ya3_c00305{bottom:508.905000px;}
.y9e_c00305{bottom:523.905000px;}
.y9b_c00305{bottom:526.245000px;}
.y9f_c00305{bottom:526.905000px;}
.y9c_c00305{bottom:527.970000px;}
.y9d_c00305{bottom:528.405000px;}
.y9a_c00305{bottom:544.245000px;}
.y99_c00305{bottom:545.745000px;}
.y98_c00305{bottom:547.905000px;}
.y96_c00305{bottom:564.180000px;}
.y95_c00305{bottom:565.245000px;}
.y97_c00305{bottom:566.130000px;}
.y93_c00305{bottom:567.405000px;}
.y94_c00305{bottom:568.920000px;}
.y90_c00305{bottom:583.275000px;}
.y8e_c00305{bottom:583.905000px;}
.y8d_c00305{bottom:584.745000px;}
.y92_c00305{bottom:585.630000px;}
.y8c_c00305{bottom:585.825000px;}
.y91_c00305{bottom:586.905000px;}
.y8f_c00305{bottom:587.130000px;}
.y87_c00305{bottom:603.405000px;}
.y86_c00305{bottom:604.245000px;}
.y8b_c00305{bottom:604.470000px;}
.y88_c00305{bottom:604.905000px;}
.y8a_c00305{bottom:605.325000px;}
.y89_c00305{bottom:606.405000px;}
.y84_c00305{bottom:622.680000px;}
.y7e_c00305{bottom:622.905000px;}
.y83_c00305{bottom:623.745000px;}
.y82_c00305{bottom:624.825000px;}
.y7f_c00305{bottom:625.245000px;}
.y81_c00305{bottom:625.905000px;}
.y80_c00305{bottom:627.405000px;}
.y85_c00305{bottom:629.130000px;}
.y7a_c00305{bottom:642.405000px;}
.y7d_c00305{bottom:642.630000px;}
.y79_c00305{bottom:643.905000px;}
.y7c_c00305{bottom:644.325000px;}
.y7b_c00305{bottom:644.745000px;}
.y78_c00305{bottom:645.825000px;}
.y77_c00305{bottom:646.905000px;}
.y74_c00305{bottom:662.745000px;}
.y76_c00305{bottom:663.405000px;}
.y75_c00305{bottom:663.825000px;}
.y73_c00305{bottom:664.245000px;}
.y71_c00305{bottom:681.825000px;}
.y72_c00305{bottom:682.470000px;}
.y70_c00305{bottom:683.745000px;}
.y6e_c00305{bottom:684.630000px;}
.y6f_c00305{bottom:685.905000px;}
.y6c_c00305{bottom:703.245000px;}
.y6d_c00305{bottom:704.130000px;}
.y6b_c00305{bottom:704.970000px;}
.y6a_c00305{bottom:705.405000px;}
.y69_c00305{bottom:722.745000px;}
.y67_c00305{bottom:724.905000px;}
.y68_c00305{bottom:725.130000px;}
.y63_c00305{bottom:741.405000px;}
.y64_c00305{bottom:742.245000px;}
.y66_c00305{bottom:742.680000px;}
.y62_c00305{bottom:743.745000px;}
.y65_c00305{bottom:744.405000px;}
.y61_c00305{bottom:744.825000px;}
.y60_c00305{bottom:745.905000px;}
.y5d_c00305{bottom:761.745000px;}
.y5e_c00305{bottom:762.180000px;}
.y5b_c00305{bottom:763.245000px;}
.y5c_c00305{bottom:763.905000px;}
.y5f_c00305{bottom:764.130000px;}
.y5a_c00305{bottom:764.325000px;}
.y59_c00305{bottom:765.405000px;}
.y58_c00305{bottom:781.245000px;}
.y57_c00305{bottom:782.745000px;}
.y56_c00305{bottom:784.905000px;}
.y55_c00305{bottom:800.325000px;}
.y51_c00305{bottom:802.245000px;}
.y53_c00305{bottom:803.130000px;}
.y54_c00305{bottom:803.325000px;}
.y52_c00305{bottom:803.970000px;}
.y50_c00305{bottom:804.405000px;}
.y4f_c00305{bottom:805.470000px;}
.y4e_c00305{bottom:820.245000px;}
.y4c_c00305{bottom:821.745000px;}
.y4d_c00305{bottom:822.630000px;}
.y4b_c00305{bottom:823.905000px;}
.y45_c00305{bottom:841.245000px;}
.y4a_c00305{bottom:842.130000px;}
.y47_c00305{bottom:842.325000px;}
.y48_c00305{bottom:842.970000px;}
.y46_c00305{bottom:843.405000px;}
.y49_c00305{bottom:844.470000px;}
.y42_c00305{bottom:860.745000px;}
.y44_c00305{bottom:861.630000px;}
.y43_c00305{bottom:861.825000px;}
.y40_c00305{bottom:862.905000px;}
.y41_c00305{bottom:863.970000px;}
.y3e_c00305{bottom:879.405000px;}
.y38_c00305{bottom:880.245000px;}
.y3c_c00305{bottom:880.680000px;}
.y3a_c00305{bottom:881.745000px;}
.y3f_c00305{bottom:881.970000px;}
.y3d_c00305{bottom:882.405000px;}
.y39_c00305{bottom:882.630000px;}
.y3b_c00305{bottom:883.905000px;}
.y37_c00305{bottom:899.745000px;}
.y35_c00305{bottom:901.245000px;}
.y36_c00305{bottom:901.905000px;}
.y33_c00305{bottom:902.970000px;}
.y34_c00305{bottom:903.405000px;}
.y2e_c00305{bottom:918.405000px;}
.y2c_c00305{bottom:919.470000px;}
.y32_c00305{bottom:919.905000px;}
.y2f_c00305{bottom:920.745000px;}
.y31_c00305{bottom:921.630000px;}
.y30_c00305{bottom:922.470000px;}
.y2d_c00305{bottom:922.905000px;}
.y28_c00305{bottom:938.325000px;}
.y2a_c00305{bottom:938.970000px;}
.y2b_c00305{bottom:939.405000px;}
.y27_c00305{bottom:940.245000px;}
.y29_c00305{bottom:941.970000px;}
.y26_c00305{bottom:942.405000px;}
.y23_c00305{bottom:958.905000px;}
.y24_c00305{bottom:959.745000px;}
.y22_c00305{bottom:959.970000px;}
.y25_c00305{bottom:961.905000px;}
.y1d_c00305{bottom:978.405000px;}
.y1f_c00305{bottom:979.245000px;}
.y1e_c00305{bottom:979.470000px;}
.y1c_c00305{bottom:980.325000px;}
.y1b_c00305{bottom:981.405000px;}
.y20_c00305{bottom:981.630000px;}
.y21_c00305{bottom:982.470000px;}
.y1a_c00305{bottom:997.470000px;}
.y19_c00305{bottom:997.905000px;}
.y15_c00305{bottom:998.745000px;}
.y16_c00305{bottom:1000.905000px;}
.y17_c00305{bottom:1001.130000px;}
.y18_c00305{bottom:1001.970000px;}
.y13_c00305{bottom:1017.405000px;}
.y11_c00305{bottom:1018.245000px;}
.y14_c00305{bottom:1018.470000px;}
.y12_c00305{bottom:1019.325000px;}
.y10_c00305{bottom:1020.405000px;}
.ye_c00305{bottom:1036.905000px;}
.yf_c00305{bottom:1037.745000px;}
.yc_c00305{bottom:1039.050000px;}
.ya_c00305{bottom:1039.245000px;}
.yd_c00305{bottom:1039.905000px;}
.yb_c00305{bottom:1040.130000px;}
.y9_c00305{bottom:1041.405000px;}
.y8_c00305{bottom:1057.245000px;}
.y3_c00305{bottom:1058.745000px;}
.y7_c00305{bottom:1059.405000px;}
.y5_c00305{bottom:1059.630000px;}
.y6_c00305{bottom:1060.470000px;}
.y4_c00305{bottom:1060.905000px;}
.y2_c00305{bottom:1097.550000px;}
.y1_c00305{bottom:1097.745000px;}
.h9_c00305{height:4.206533px;}
.h8_c00305{height:14.612168px;}
.h4_c00305{height:23.025234px;}
.h2_c00305{height:25.091602px;}
.h5_c00305{height:31.364502px;}
.h3_c00305{height:35.571035px;}
.h6_c00305{height:39.777568px;}
.h1_c00305{height:43.910303px;}
.h7_c00305{height:48.116836px;}
.h0_c00305{height:1335.000000px;}
.w0_c00305{width:880.500000px;}
.x0_c00305{left:0.000000px;}
.x118_c00305{left:144.000000px;}
.x10e_c00305{left:145.500000px;}
.xfd_c00305{left:147.000000px;}
.xd6_c00305{left:148.920000px;}
.xb0_c00305{left:150.000000px;}
.x8f_c00305{left:151.500000px;}
.x1a_c00305{left:153.000000px;}
.x1_c00305{left:154.500000px;}
.x106_c00305{left:163.500000px;}
.xd0_c00305{left:165.645000px;}
.x3_c00305{left:169.080000px;}
.x8a_c00305{left:170.580000px;}
.x6f_c00305{left:175.500000px;}
.xd7_c00305{left:178.920000px;}
.xf9_c00305{left:180.000000px;}
.xb1_c00305{left:181.500000px;}
.x52_c00305{left:183.000000px;}
.x109_c00305{left:184.500000px;}
.xb8_c00305{left:186.000000px;}
.x44_c00305{left:187.080000px;}
.xc1_c00305{left:188.580000px;}
.x1b_c00305{left:190.080000px;}
.x68_c00305{left:195.000000px;}
.x95_c00305{left:196.080000px;}
.xe9_c00305{left:197.580000px;}
.x10f_c00305{left:199.920000px;}
.xfe_c00305{left:202.500000px;}
.x2a_c00305{left:203.775000px;}
.x70_c00305{left:207.420000px;}
.x45_c00305{left:208.500000px;}
.xd8_c00305{left:210.000000px;}
.x4_c00305{left:211.500000px;}
.x82_c00305{left:213.000000px;}
.xfa_c00305{left:217.500000px;}
.x1c_c00305{left:220.500000px;}
.x53_c00305{left:222.420000px;}
.xca_c00305{left:223.500000px;}
.xac_c00305{left:224.580000px;}
.x61_c00305{left:226.500000px;}
.xf_c00305{left:227.580000px;}
.xdc_c00305{left:229.080000px;}
.xd9_c00305{left:231.420000px;}
.xdf_c00305{left:234.420000px;}
.x2b_c00305{left:235.920000px;}
.x38_c00305{left:237.000000px;}
.x9a_c00305{left:238.500000px;}
.x69_c00305{left:239.580000px;}
.xad_c00305{left:241.500000px;}
.x46_c00305{left:244.500000px;}
.x8b_c00305{left:245.580000px;}
.x62_c00305{left:247.920000px;}
.x5_c00305{left:253.500000px;}
.xd1_c00305{left:256.080000px;}
.x39_c00305{left:258.000000px;}
.x2c_c00305{left:259.500000px;}
.x112_c00305{left:262.080000px;}
.x1d_c00305{left:264.000000px;}
.x54_c00305{left:265.920000px;}
.xff_c00305{left:268.500000px;}
.xf3_c00305{left:270.000000px;}
.x7a_c00305{left:272.580000px;}
.xef_c00305{left:274.500000px;}
.x10a_c00305{left:276.420000px;}
.x2d_c00305{left:281.580000px;}
.xb2_c00305{left:283.500000px;}
.x6_c00305{left:284.580000px;}
.xea_c00305{left:286.920000px;}
.xf0_c00305{left:288.000000px;}
.xe0_c00305{left:289.920000px;}
.x83_c00305{left:291.000000px;}
.xb9_c00305{left:292.500000px;}
.x3a_c00305{left:294.000000px;}
.x1e_c00305{left:297.000000px;}
.x47_c00305{left:299.580000px;}
.x119_c00305{left:301.500000px;}
.x55_c00305{left:303.000000px;}
.xf4_c00305{left:306.420000px;}
.x10_c00305{left:307.500000px;}
.x90_c00305{left:310.500000px;}
.x48_c00305{left:311.580000px;}
.xa3_c00305{left:313.080000px;}
.x84_c00305{left:315.420000px;}
.x102_c00305{left:319.500000px;}
.x2e_c00305{left:322.500000px;}
.xe1_c00305{left:325.500000px;}
.x7_c00305{left:327.000000px;}
.xbc_c00305{left:328.500000px;}
.x1f_c00305{left:330.420000px;}
.x56_c00305{left:331.500000px;}
.x6a_c00305{left:332.580000px;}
.x3b_c00305{left:334.080000px;}
.x49_c00305{left:337.500000px;}
.x71_c00305{left:341.580000px;}
.xa4_c00305{left:343.080000px;}
.xb3_c00305{left:348.000000px;}
.x57_c00305{left:349.500000px;}
.x6b_c00305{left:351.000000px;}
.x11_c00305{left:354.000000px;}
.xcb_c00305{left:355.920000px;}
.x107_c00305{left:357.420000px;}
.x100_c00305{left:360.000000px;}
.x2f_c00305{left:361.920000px;}
.x20_c00305{left:363.000000px;}
.x63_c00305{left:364.080000px;}
.xbd_c00305{left:367.080000px;}
.x9b_c00305{left:370.080000px;}
.x10b_c00305{left:372.000000px;}
.xfb_c00305{left:373.080000px;}
.xba_c00305{left:376.080000px;}
.x58_c00305{left:378.000000px;}
.xd2_c00305{left:379.500000px;}
.xe2_c00305{left:381.420000px;}
.x64_c00305{left:382.500000px;}
.xa5_c00305{left:384.000000px;}
.xf1_c00305{left:385.500000px;}
.x72_c00305{left:388.500000px;}
.x3c_c00305{left:389.580000px;}
.xf5_c00305{left:391.500000px;}
.x4a_c00305{left:392.580000px;}
.xeb_c00305{left:394.500000px;}
.xae_c00305{left:395.580000px;}
.x21_c00305{left:397.500000px;}
.x30_c00305{left:398.580000px;}
.x9c_c00305{left:400.920000px;}
.x8_c00305{left:402.000000px;}
.x2_c00305{left:405.000000px;}
.x7b_c00305{left:406.080000px;}
.x12_c00305{left:408.000000px;}
.xd3_c00305{left:411.000000px;}
.x59_c00305{left:412.080000px;}
.x6c_c00305{left:414.420000px;}
.x110_c00305{left:417.420000px;}
.x96_c00305{left:418.920000px;}
.x85_c00305{left:421.080000px;}
.x73_c00305{left:423.000000px;}
.x8c_c00305{left:424.500000px;}
.x9_c00305{left:426.420000px;}
.xc7_c00305{left:427.500000px;}
.x13_c00305{left:429.420000px;}
.x11a_c00305{left:433.920000px;}
.x22_c00305{left:435.420000px;}
.xa6_c00305{left:436.920000px;}
.x3d_c00305{left:438.000000px;}
.x115_c00305{left:440.355000px;}
.x5a_c00305{left:442.920000px;}
.x86_c00305{left:444.420000px;}
.x97_c00305{left:445.500000px;}
.x8d_c00305{left:446.580000px;}
.x103_c00305{left:450.000000px;}
.x9d_c00305{left:454.500000px;}
.x14_c00305{left:456.000000px;}
.xa_c00305{left:457.080000px;}
.xf6_c00305{left:458.580000px;}
.x3e_c00305{left:462.420000px;}
.x4b_c00305{left:464.775000px;}
.x23_c00305{left:467.580000px;}
.xa7_c00305{left:473.580000px;}
.x65_c00305{left:475.080000px;}
.x9e_c00305{left:477.000000px;}
.x7c_c00305{left:478.920000px;}
.x6d_c00305{left:480.420000px;}
.xdd_c00305{left:482.580000px;}
.xcc_c00305{left:484.500000px;}
.x104_c00305{left:486.420000px;}
.x31_c00305{left:487.920000px;}
.x87_c00305{left:489.000000px;}
.x15_c00305{left:493.920000px;}
.xbe_c00305{left:496.500000px;}
.x24_c00305{left:497.580000px;}
.x3f_c00305{left:499.500000px;}
.xc2_c00305{left:501.420000px;}
.x74_c00305{left:502.500000px;}
.x4c_c00305{left:504.000000px;}
.x98_c00305{left:505.500000px;}
.x91_c00305{left:507.000000px;}
.xf7_c00305{left:508.275000px;}
.x9f_c00305{left:510.420000px;}
.x108_c00305{left:511.500000px;}
.x32_c00305{left:513.420000px;}
.x5b_c00305{left:515.580000px;}
.x25_c00305{left:517.500000px;}
.x66_c00305{left:518.580000px;}
.xb4_c00305{left:520.920000px;}
.xb_c00305{left:522.000000px;}
.xfc_c00305{left:523.500000px;}
.x105_c00305{left:526.920000px;}
.xec_c00305{left:528.000000px;}
.x16_c00305{left:529.500000px;}
.x67_c00305{left:532.080000px;}
.x5c_c00305{left:534.420000px;}
.xda_c00305{left:535.500000px;}
.x75_c00305{left:538.500000px;}
.xc8_c00305{left:541.920000px;}
.xe3_c00305{left:547.080000px;}
.xc3_c00305{left:548.580000px;}
.x7d_c00305{left:550.500000px;}
.x10c_c00305{left:551.580000px;}
.x33_c00305{left:553.080000px;}
.x26_c00305{left:555.000000px;}
.xb5_c00305{left:558.000000px;}
.x5d_c00305{left:559.920000px;}
.xcd_c00305{left:561.420000px;}
.xe6_c00305{left:562.500000px;}
.xe4_c00305{left:565.500000px;}
.xbb_c00305{left:567.000000px;}
.xb6_c00305{left:570.000000px;}
.xd4_c00305{left:571.080000px;}
.x4d_c00305{left:573.420000px;}
.x92_c00305{left:574.500000px;}
.x116_c00305{left:576.420000px;}
.xbf_c00305{left:577.500000px;}
.xde_c00305{left:578.580000px;}
.xc9_c00305{left:580.920000px;}
.x40_c00305{left:582.000000px;}
.xed_c00305{left:585.000000px;}
.x5e_c00305{left:586.920000px;}
.x6e_c00305{left:589.500000px;}
.xa8_c00305{left:591.000000px;}
.x93_c00305{left:594.420000px;}
.xa0_c00305{left:596.580000px;}
.x10d_c00305{left:598.080000px;}
.x34_c00305{left:600.000000px;}
.x17_c00305{left:601.920000px;}
.xaf_c00305{left:603.000000px;}
.x99_c00305{left:605.355000px;}
.x4e_c00305{left:606.420000px;}
.x27_c00305{left:608.580000px;}
.xa9_c00305{left:611.775000px;}
.x76_c00305{left:613.500000px;}
.x41_c00305{left:618.000000px;}
.xdb_c00305{left:619.500000px;}
.x28_c00305{left:620.580000px;}
.x88_c00305{left:622.500000px;}
.x5f_c00305{left:624.420000px;}
.x7e_c00305{left:626.580000px;}
.xc_c00305{left:628.080000px;}
.x4f_c00305{left:631.920000px;}
.x94_c00305{left:633.000000px;}
.xce_c00305{left:634.920000px;}
.x35_c00305{left:636.420000px;}
.x18_c00305{left:637.920000px;}
.x111_c00305{left:640.500000px;}
.xd5_c00305{left:642.000000px;}
.x113_c00305{left:643.080000px;}
.x7f_c00305{left:645.000000px;}
.x29_c00305{left:646.500000px;}
.xf2_c00305{left:647.580000px;}
.xd_c00305{left:649.920000px;}
.x60_c00305{left:651.000000px;}
.x77_c00305{left:652.920000px;}
.xb7_c00305{left:654.000000px;}
.xaa_c00305{left:655.080000px;}
.xe7_c00305{left:656.580000px;}
.x117_c00305{left:658.080000px;}
.xee_c00305{left:660.420000px;}
.x19_c00305{left:663.420000px;}
.x8e_c00305{left:664.500000px;}
.xcf_c00305{left:666.000000px;}
.x42_c00305{left:667.080000px;}
.xc0_c00305{left:669.000000px;}
.x36_c00305{left:670.500000px;}
.xa1_c00305{left:672.000000px;}
.xf8_c00305{left:675.000000px;}
.x89_c00305{left:677.580000px;}
.x50_c00305{left:679.080000px;}
.xe_c00305{left:681.000000px;}
.xc4_c00305{left:683.580000px;}
.xa2_c00305{left:685.920000px;}
.x101_c00305{left:687.000000px;}
.x78_c00305{left:688.500000px;}
.x80_c00305{left:689.580000px;}
.xe5_c00305{left:691.500000px;}
.xe8_c00305{left:693.000000px;}
.x51_c00305{left:697.500000px;}
.x43_c00305{left:702.420000px;}
.x37_c00305{left:704.580000px;}
.xab_c00305{left:708.420000px;}
.x79_c00305{left:709.920000px;}
.x114_c00305{left:714.000000px;}
.xc5_c00305{left:715.920000px;}
.xc6_c00305{left:720.420000px;}
.x81_c00305{left:723.420000px;}
@media print{
.v1_c00305{vertical-align:-5.333333pt;}
.v0_c00305{vertical-align:0.000000pt;}
.ls0_c00305{letter-spacing:0.000000pt;}
.ws0_c00305{word-spacing:-6.620751pt;}
.ws5_c00305{word-spacing:-6.560990pt;}
.ws3_c00305{word-spacing:-4.024320pt;}
.ws1_c00305{word-spacing:-3.186375pt;}
.ws4_c00305{word-spacing:-2.706843pt;}
.ws6_c00305{word-spacing:0.000000pt;}
.ws2_c00305{word-spacing:4.543954pt;}
.fs8_c00305{font-size:3.040000pt;}
.fs7_c00305{font-size:10.560000pt;}
.fs3_c00305{font-size:16.640000pt;}
.fs1_c00305{font-size:18.133333pt;}
.fs4_c00305{font-size:22.666667pt;}
.fs2_c00305{font-size:25.706667pt;}
.fs5_c00305{font-size:28.746667pt;}
.fs0_c00305{font-size:31.733333pt;}
.fs6_c00305{font-size:34.773333pt;}
.y0_c00305{bottom:0.000000pt;}
.yea_c00305{bottom:221.106667pt;}
.yeb_c00305{bottom:221.306667pt;}
.yed_c00305{bottom:222.066667pt;}
.yef_c00305{bottom:222.266667pt;}
.yee_c00305{bottom:222.440000pt;}
.yec_c00305{bottom:223.026667pt;}
.yf0_c00305{bottom:223.973333pt;}
.ye6_c00305{bottom:238.440000pt;}
.ye3_c00305{bottom:239.773333pt;}
.ye9_c00305{bottom:240.360000pt;}
.ye5_c00305{bottom:240.560000pt;}
.ye8_c00305{bottom:240.733333pt;}
.ye4_c00305{bottom:241.306667pt;}
.ye7_c00305{bottom:241.693333pt;}
.yde_c00305{bottom:255.026667pt;}
.ye2_c00305{bottom:256.933333pt;}
.ydd_c00305{bottom:257.106667pt;}
.ye1_c00305{bottom:257.893333pt;}
.ydc_c00305{bottom:258.066667pt;}
.ye0_c00305{bottom:258.640000pt;}
.ydf_c00305{bottom:259.026667pt;}
.yda_c00305{bottom:273.693333pt;}
.yd6_c00305{bottom:274.440000pt;}
.yd8_c00305{bottom:275.400000pt;}
.ydb_c00305{bottom:275.973333pt;}
.yd7_c00305{bottom:276.360000pt;}
.yd9_c00305{bottom:277.306667pt;}
.ycf_c00305{bottom:291.773333pt;}
.yd3_c00305{bottom:292.560000pt;}
.yd1_c00305{bottom:292.733333pt;}
.yd4_c00305{bottom:293.306667pt;}
.yd0_c00305{bottom:293.693333pt;}
.yd2_c00305{bottom:293.893333pt;}
.yd5_c00305{bottom:294.640000pt;}
.ycb_c00305{bottom:308.360000pt;}
.yce_c00305{bottom:309.106667pt;}
.yc9_c00305{bottom:309.493333pt;}
.yca_c00305{bottom:310.440000pt;}
.yc8_c00305{bottom:311.026667pt;}
.ycd_c00305{bottom:311.226667pt;}
.ycc_c00305{bottom:312.360000pt;}
.yc6_c00305{bottom:326.066667pt;}
.yc2_c00305{bottom:326.440000pt;}
.yc7_c00305{bottom:327.773333pt;}
.yc3_c00305{bottom:328.360000pt;}
.yc5_c00305{bottom:329.306667pt;}
.yc4_c00305{bottom:329.693333pt;}
.yc1_c00305{bottom:343.773333pt;}
.ybe_c00305{bottom:345.106667pt;}
.yc0_c00305{bottom:345.893333pt;}
.ybd_c00305{bottom:347.026667pt;}
.ybf_c00305{bottom:347.973333pt;}
.ybc_c00305{bottom:361.106667pt;}
.yba_c00305{bottom:362.440000pt;}
.ybb_c00305{bottom:363.026667pt;}
.yb9_c00305{bottom:363.226667pt;}
.yb8_c00305{bottom:363.973333pt;}
.yb7_c00305{bottom:364.360000pt;}
.yb3_c00305{bottom:377.693333pt;}
.yb4_c00305{bottom:379.773333pt;}
.yb6_c00305{bottom:380.560000pt;}
.yb5_c00305{bottom:381.693333pt;}
.yb1_c00305{bottom:397.106667pt;}
.yb2_c00305{bottom:397.893333pt;}
.yaf_c00305{bottom:399.026667pt;}
.yb0_c00305{bottom:399.226667pt;}
.yae_c00305{bottom:414.440000pt;}
.yad_c00305{bottom:415.226667pt;}
.yab_c00305{bottom:415.773333pt;}
.yac_c00305{bottom:416.360000pt;}
.yaa_c00305{bottom:417.693333pt;}
.ya8_c00305{bottom:431.773333pt;}
.ya9_c00305{bottom:432.560000pt;}
.ya5_c00305{bottom:433.693333pt;}
.ya6_c00305{bottom:433.893333pt;}
.ya7_c00305{bottom:434.640000pt;}
.ya4_c00305{bottom:435.026667pt;}
.ya1_c00305{bottom:450.440000pt;}
.ya2_c00305{bottom:451.026667pt;}
.ya0_c00305{bottom:451.400000pt;}
.ya3_c00305{bottom:452.360000pt;}
.y9e_c00305{bottom:465.693333pt;}
.y9b_c00305{bottom:467.773333pt;}
.y9f_c00305{bottom:468.360000pt;}
.y9c_c00305{bottom:469.306667pt;}
.y9d_c00305{bottom:469.693333pt;}
.y9a_c00305{bottom:483.773333pt;}
.y99_c00305{bottom:485.106667pt;}
.y98_c00305{bottom:487.026667pt;}
.y96_c00305{bottom:501.493333pt;}
.y95_c00305{bottom:502.440000pt;}
.y97_c00305{bottom:503.226667pt;}
.y93_c00305{bottom:504.360000pt;}
.y94_c00305{bottom:505.706667pt;}
.y90_c00305{bottom:518.466667pt;}
.y8e_c00305{bottom:519.026667pt;}
.y8d_c00305{bottom:519.773333pt;}
.y92_c00305{bottom:520.560000pt;}
.y8c_c00305{bottom:520.733333pt;}
.y91_c00305{bottom:521.693333pt;}
.y8f_c00305{bottom:521.893333pt;}
.y87_c00305{bottom:536.360000pt;}
.y86_c00305{bottom:537.106667pt;}
.y8b_c00305{bottom:537.306667pt;}
.y88_c00305{bottom:537.693333pt;}
.y8a_c00305{bottom:538.066667pt;}
.y89_c00305{bottom:539.026667pt;}
.y84_c00305{bottom:553.493333pt;}
.y7e_c00305{bottom:553.693333pt;}
.y83_c00305{bottom:554.440000pt;}
.y82_c00305{bottom:555.400000pt;}
.y7f_c00305{bottom:555.773333pt;}
.y81_c00305{bottom:556.360000pt;}
.y80_c00305{bottom:557.693333pt;}
.y85_c00305{bottom:559.226667pt;}
.y7a_c00305{bottom:571.026667pt;}
.y7d_c00305{bottom:571.226667pt;}
.y79_c00305{bottom:572.360000pt;}
.y7c_c00305{bottom:572.733333pt;}
.y7b_c00305{bottom:573.106667pt;}
.y78_c00305{bottom:574.066667pt;}
.y77_c00305{bottom:575.026667pt;}
.y74_c00305{bottom:589.106667pt;}
.y76_c00305{bottom:589.693333pt;}
.y75_c00305{bottom:590.066667pt;}
.y73_c00305{bottom:590.440000pt;}
.y71_c00305{bottom:606.066667pt;}
.y72_c00305{bottom:606.640000pt;}
.y70_c00305{bottom:607.773333pt;}
.y6e_c00305{bottom:608.560000pt;}
.y6f_c00305{bottom:609.693333pt;}
.y6c_c00305{bottom:625.106667pt;}
.y6d_c00305{bottom:625.893333pt;}
.y6b_c00305{bottom:626.640000pt;}
.y6a_c00305{bottom:627.026667pt;}
.y69_c00305{bottom:642.440000pt;}
.y67_c00305{bottom:644.360000pt;}
.y68_c00305{bottom:644.560000pt;}
.y63_c00305{bottom:659.026667pt;}
.y64_c00305{bottom:659.773333pt;}
.y66_c00305{bottom:660.160000pt;}
.y62_c00305{bottom:661.106667pt;}
.y65_c00305{bottom:661.693333pt;}
.y61_c00305{bottom:662.066667pt;}
.y60_c00305{bottom:663.026667pt;}
.y5d_c00305{bottom:677.106667pt;}
.y5e_c00305{bottom:677.493333pt;}
.y5b_c00305{bottom:678.440000pt;}
.y5c_c00305{bottom:679.026667pt;}
.y5f_c00305{bottom:679.226667pt;}
.y5a_c00305{bottom:679.400000pt;}
.y59_c00305{bottom:680.360000pt;}
.y58_c00305{bottom:694.440000pt;}
.y57_c00305{bottom:695.773333pt;}
.y56_c00305{bottom:697.693333pt;}
.y55_c00305{bottom:711.400000pt;}
.y51_c00305{bottom:713.106667pt;}
.y53_c00305{bottom:713.893333pt;}
.y54_c00305{bottom:714.066667pt;}
.y52_c00305{bottom:714.640000pt;}
.y50_c00305{bottom:715.026667pt;}
.y4f_c00305{bottom:715.973333pt;}
.y4e_c00305{bottom:729.106667pt;}
.y4c_c00305{bottom:730.440000pt;}
.y4d_c00305{bottom:731.226667pt;}
.y4b_c00305{bottom:732.360000pt;}
.y45_c00305{bottom:747.773333pt;}
.y4a_c00305{bottom:748.560000pt;}
.y47_c00305{bottom:748.733333pt;}
.y48_c00305{bottom:749.306667pt;}
.y46_c00305{bottom:749.693333pt;}
.y49_c00305{bottom:750.640000pt;}
.y42_c00305{bottom:765.106667pt;}
.y44_c00305{bottom:765.893333pt;}
.y43_c00305{bottom:766.066667pt;}
.y40_c00305{bottom:767.026667pt;}
.y41_c00305{bottom:767.973333pt;}
.y3e_c00305{bottom:781.693333pt;}
.y38_c00305{bottom:782.440000pt;}
.y3c_c00305{bottom:782.826667pt;}
.y3a_c00305{bottom:783.773333pt;}
.y3f_c00305{bottom:783.973333pt;}
.y3d_c00305{bottom:784.360000pt;}
.y39_c00305{bottom:784.560000pt;}
.y3b_c00305{bottom:785.693333pt;}
.y37_c00305{bottom:799.773333pt;}
.y35_c00305{bottom:801.106667pt;}
.y36_c00305{bottom:801.693333pt;}
.y33_c00305{bottom:802.640000pt;}
.y34_c00305{bottom:803.026667pt;}
.y2e_c00305{bottom:816.360000pt;}
.y2c_c00305{bottom:817.306667pt;}
.y32_c00305{bottom:817.693333pt;}
.y2f_c00305{bottom:818.440000pt;}
.y31_c00305{bottom:819.226667pt;}
.y30_c00305{bottom:819.973333pt;}
.y2d_c00305{bottom:820.360000pt;}
.y28_c00305{bottom:834.066667pt;}
.y2a_c00305{bottom:834.640000pt;}
.y2b_c00305{bottom:835.026667pt;}
.y27_c00305{bottom:835.773333pt;}
.y29_c00305{bottom:837.306667pt;}
.y26_c00305{bottom:837.693333pt;}
.y23_c00305{bottom:852.360000pt;}
.y24_c00305{bottom:853.106667pt;}
.y22_c00305{bottom:853.306667pt;}
.y25_c00305{bottom:855.026667pt;}
.y1d_c00305{bottom:869.693333pt;}
.y1f_c00305{bottom:870.440000pt;}
.y1e_c00305{bottom:870.640000pt;}
.y1c_c00305{bottom:871.400000pt;}
.y1b_c00305{bottom:872.360000pt;}
.y20_c00305{bottom:872.560000pt;}
.y21_c00305{bottom:873.306667pt;}
.y1a_c00305{bottom:886.640000pt;}
.y19_c00305{bottom:887.026667pt;}
.y15_c00305{bottom:887.773333pt;}
.y16_c00305{bottom:889.693333pt;}
.y17_c00305{bottom:889.893333pt;}
.y18_c00305{bottom:890.640000pt;}
.y13_c00305{bottom:904.360000pt;}
.y11_c00305{bottom:905.106667pt;}
.y14_c00305{bottom:905.306667pt;}
.y12_c00305{bottom:906.066667pt;}
.y10_c00305{bottom:907.026667pt;}
.ye_c00305{bottom:921.693333pt;}
.yf_c00305{bottom:922.440000pt;}
.yc_c00305{bottom:923.600000pt;}
.ya_c00305{bottom:923.773333pt;}
.yd_c00305{bottom:924.360000pt;}
.yb_c00305{bottom:924.560000pt;}
.y9_c00305{bottom:925.693333pt;}
.y8_c00305{bottom:939.773333pt;}
.y3_c00305{bottom:941.106667pt;}
.y7_c00305{bottom:941.693333pt;}
.y5_c00305{bottom:941.893333pt;}
.y6_c00305{bottom:942.640000pt;}
.y4_c00305{bottom:943.026667pt;}
.y2_c00305{bottom:975.600000pt;}
.y1_c00305{bottom:975.773333pt;}
.h9_c00305{height:3.739141pt;}
.h8_c00305{height:12.988594pt;}
.h4_c00305{height:20.466875pt;}
.h2_c00305{height:22.303646pt;}
.h5_c00305{height:27.879557pt;}
.h3_c00305{height:31.618698pt;}
.h6_c00305{height:35.357839pt;}
.h1_c00305{height:39.031380pt;}
.h7_c00305{height:42.770521pt;}
.h0_c00305{height:1186.666667pt;}
.w0_c00305{width:782.666667pt;}
.x0_c00305{left:0.000000pt;}
.x118_c00305{left:128.000000pt;}
.x10e_c00305{left:129.333333pt;}
.xfd_c00305{left:130.666667pt;}
.xd6_c00305{left:132.373333pt;}
.xb0_c00305{left:133.333333pt;}
.x8f_c00305{left:134.666667pt;}
.x1a_c00305{left:136.000000pt;}
.x1_c00305{left:137.333333pt;}
.x106_c00305{left:145.333333pt;}
.xd0_c00305{left:147.240000pt;}
.x3_c00305{left:150.293333pt;}
.x8a_c00305{left:151.626667pt;}
.x6f_c00305{left:156.000000pt;}
.xd7_c00305{left:159.040000pt;}
.xf9_c00305{left:160.000000pt;}
.xb1_c00305{left:161.333333pt;}
.x52_c00305{left:162.666667pt;}
.x109_c00305{left:164.000000pt;}
.xb8_c00305{left:165.333333pt;}
.x44_c00305{left:166.293333pt;}
.xc1_c00305{left:167.626667pt;}
.x1b_c00305{left:168.960000pt;}
.x68_c00305{left:173.333333pt;}
.x95_c00305{left:174.293333pt;}
.xe9_c00305{left:175.626667pt;}
.x10f_c00305{left:177.706667pt;}
.xfe_c00305{left:180.000000pt;}
.x2a_c00305{left:181.133333pt;}
.x70_c00305{left:184.373333pt;}
.x45_c00305{left:185.333333pt;}
.xd8_c00305{left:186.666667pt;}
.x4_c00305{left:188.000000pt;}
.x82_c00305{left:189.333333pt;}
.xfa_c00305{left:193.333333pt;}
.x1c_c00305{left:196.000000pt;}
.x53_c00305{left:197.706667pt;}
.xca_c00305{left:198.666667pt;}
.xac_c00305{left:199.626667pt;}
.x61_c00305{left:201.333333pt;}
.xf_c00305{left:202.293333pt;}
.xdc_c00305{left:203.626667pt;}
.xd9_c00305{left:205.706667pt;}
.xdf_c00305{left:208.373333pt;}
.x2b_c00305{left:209.706667pt;}
.x38_c00305{left:210.666667pt;}
.x9a_c00305{left:212.000000pt;}
.x69_c00305{left:212.960000pt;}
.xad_c00305{left:214.666667pt;}
.x46_c00305{left:217.333333pt;}
.x8b_c00305{left:218.293333pt;}
.x62_c00305{left:220.373333pt;}
.x5_c00305{left:225.333333pt;}
.xd1_c00305{left:227.626667pt;}
.x39_c00305{left:229.333333pt;}
.x2c_c00305{left:230.666667pt;}
.x112_c00305{left:232.960000pt;}
.x1d_c00305{left:234.666667pt;}
.x54_c00305{left:236.373333pt;}
.xff_c00305{left:238.666667pt;}
.xf3_c00305{left:240.000000pt;}
.x7a_c00305{left:242.293333pt;}
.xef_c00305{left:244.000000pt;}
.x10a_c00305{left:245.706667pt;}
.x2d_c00305{left:250.293333pt;}
.xb2_c00305{left:252.000000pt;}
.x6_c00305{left:252.960000pt;}
.xea_c00305{left:255.040000pt;}
.xf0_c00305{left:256.000000pt;}
.xe0_c00305{left:257.706667pt;}
.x83_c00305{left:258.666667pt;}
.xb9_c00305{left:260.000000pt;}
.x3a_c00305{left:261.333333pt;}
.x1e_c00305{left:264.000000pt;}
.x47_c00305{left:266.293333pt;}
.x119_c00305{left:268.000000pt;}
.x55_c00305{left:269.333333pt;}
.xf4_c00305{left:272.373333pt;}
.x10_c00305{left:273.333333pt;}
.x90_c00305{left:276.000000pt;}
.x48_c00305{left:276.960000pt;}
.xa3_c00305{left:278.293333pt;}
.x84_c00305{left:280.373333pt;}
.x102_c00305{left:284.000000pt;}
.x2e_c00305{left:286.666667pt;}
.xe1_c00305{left:289.333333pt;}
.x7_c00305{left:290.666667pt;}
.xbc_c00305{left:292.000000pt;}
.x1f_c00305{left:293.706667pt;}
.x56_c00305{left:294.666667pt;}
.x6a_c00305{left:295.626667pt;}
.x3b_c00305{left:296.960000pt;}
.x49_c00305{left:300.000000pt;}
.x71_c00305{left:303.626667pt;}
.xa4_c00305{left:304.960000pt;}
.xb3_c00305{left:309.333333pt;}
.x57_c00305{left:310.666667pt;}
.x6b_c00305{left:312.000000pt;}
.x11_c00305{left:314.666667pt;}
.xcb_c00305{left:316.373333pt;}
.x107_c00305{left:317.706667pt;}
.x100_c00305{left:320.000000pt;}
.x2f_c00305{left:321.706667pt;}
.x20_c00305{left:322.666667pt;}
.x63_c00305{left:323.626667pt;}
.xbd_c00305{left:326.293333pt;}
.x9b_c00305{left:328.960000pt;}
.x10b_c00305{left:330.666667pt;}
.xfb_c00305{left:331.626667pt;}
.xba_c00305{left:334.293333pt;}
.x58_c00305{left:336.000000pt;}
.xd2_c00305{left:337.333333pt;}
.xe2_c00305{left:339.040000pt;}
.x64_c00305{left:340.000000pt;}
.xa5_c00305{left:341.333333pt;}
.xf1_c00305{left:342.666667pt;}
.x72_c00305{left:345.333333pt;}
.x3c_c00305{left:346.293333pt;}
.xf5_c00305{left:348.000000pt;}
.x4a_c00305{left:348.960000pt;}
.xeb_c00305{left:350.666667pt;}
.xae_c00305{left:351.626667pt;}
.x21_c00305{left:353.333333pt;}
.x30_c00305{left:354.293333pt;}
.x9c_c00305{left:356.373333pt;}
.x8_c00305{left:357.333333pt;}
.x2_c00305{left:360.000000pt;}
.x7b_c00305{left:360.960000pt;}
.x12_c00305{left:362.666667pt;}
.xd3_c00305{left:365.333333pt;}
.x59_c00305{left:366.293333pt;}
.x6c_c00305{left:368.373333pt;}
.x110_c00305{left:371.040000pt;}
.x96_c00305{left:372.373333pt;}
.x85_c00305{left:374.293333pt;}
.x73_c00305{left:376.000000pt;}
.x8c_c00305{left:377.333333pt;}
.x9_c00305{left:379.040000pt;}
.xc7_c00305{left:380.000000pt;}
.x13_c00305{left:381.706667pt;}
.x11a_c00305{left:385.706667pt;}
.x22_c00305{left:387.040000pt;}
.xa6_c00305{left:388.373333pt;}
.x3d_c00305{left:389.333333pt;}
.x115_c00305{left:391.426667pt;}
.x5a_c00305{left:393.706667pt;}
.x86_c00305{left:395.040000pt;}
.x97_c00305{left:396.000000pt;}
.x8d_c00305{left:396.960000pt;}
.x103_c00305{left:400.000000pt;}
.x9d_c00305{left:404.000000pt;}
.x14_c00305{left:405.333333pt;}
.xa_c00305{left:406.293333pt;}
.xf6_c00305{left:407.626667pt;}
.x3e_c00305{left:411.040000pt;}
.x4b_c00305{left:413.133333pt;}
.x23_c00305{left:415.626667pt;}
.xa7_c00305{left:420.960000pt;}
.x65_c00305{left:422.293333pt;}
.x9e_c00305{left:424.000000pt;}
.x7c_c00305{left:425.706667pt;}
.x6d_c00305{left:427.040000pt;}
.xdd_c00305{left:428.960000pt;}
.xcc_c00305{left:430.666667pt;}
.x104_c00305{left:432.373333pt;}
.x31_c00305{left:433.706667pt;}
.x87_c00305{left:434.666667pt;}
.x15_c00305{left:439.040000pt;}
.xbe_c00305{left:441.333333pt;}
.x24_c00305{left:442.293333pt;}
.x3f_c00305{left:444.000000pt;}
.xc2_c00305{left:445.706667pt;}
.x74_c00305{left:446.666667pt;}
.x4c_c00305{left:448.000000pt;}
.x98_c00305{left:449.333333pt;}
.x91_c00305{left:450.666667pt;}
.xf7_c00305{left:451.800000pt;}
.x9f_c00305{left:453.706667pt;}
.x108_c00305{left:454.666667pt;}
.x32_c00305{left:456.373333pt;}
.x5b_c00305{left:458.293333pt;}
.x25_c00305{left:460.000000pt;}
.x66_c00305{left:460.960000pt;}
.xb4_c00305{left:463.040000pt;}
.xb_c00305{left:464.000000pt;}
.xfc_c00305{left:465.333333pt;}
.x105_c00305{left:468.373333pt;}
.xec_c00305{left:469.333333pt;}
.x16_c00305{left:470.666667pt;}
.x67_c00305{left:472.960000pt;}
.x5c_c00305{left:475.040000pt;}
.xda_c00305{left:476.000000pt;}
.x75_c00305{left:478.666667pt;}
.xc8_c00305{left:481.706667pt;}
.xe3_c00305{left:486.293333pt;}
.xc3_c00305{left:487.626667pt;}
.x7d_c00305{left:489.333333pt;}
.x10c_c00305{left:490.293333pt;}
.x33_c00305{left:491.626667pt;}
.x26_c00305{left:493.333333pt;}
.xb5_c00305{left:496.000000pt;}
.x5d_c00305{left:497.706667pt;}
.xcd_c00305{left:499.040000pt;}
.xe6_c00305{left:500.000000pt;}
.xe4_c00305{left:502.666667pt;}
.xbb_c00305{left:504.000000pt;}
.xb6_c00305{left:506.666667pt;}
.xd4_c00305{left:507.626667pt;}
.x4d_c00305{left:509.706667pt;}
.x92_c00305{left:510.666667pt;}
.x116_c00305{left:512.373333pt;}
.xbf_c00305{left:513.333333pt;}
.xde_c00305{left:514.293333pt;}
.xc9_c00305{left:516.373333pt;}
.x40_c00305{left:517.333333pt;}
.xed_c00305{left:520.000000pt;}
.x5e_c00305{left:521.706667pt;}
.x6e_c00305{left:524.000000pt;}
.xa8_c00305{left:525.333333pt;}
.x93_c00305{left:528.373333pt;}
.xa0_c00305{left:530.293333pt;}
.x10d_c00305{left:531.626667pt;}
.x34_c00305{left:533.333333pt;}
.x17_c00305{left:535.040000pt;}
.xaf_c00305{left:536.000000pt;}
.x99_c00305{left:538.093333pt;}
.x4e_c00305{left:539.040000pt;}
.x27_c00305{left:540.960000pt;}
.xa9_c00305{left:543.800000pt;}
.x76_c00305{left:545.333333pt;}
.x41_c00305{left:549.333333pt;}
.xdb_c00305{left:550.666667pt;}
.x28_c00305{left:551.626667pt;}
.x88_c00305{left:553.333333pt;}
.x5f_c00305{left:555.040000pt;}
.x7e_c00305{left:556.960000pt;}
.xc_c00305{left:558.293333pt;}
.x4f_c00305{left:561.706667pt;}
.x94_c00305{left:562.666667pt;}
.xce_c00305{left:564.373333pt;}
.x35_c00305{left:565.706667pt;}
.x18_c00305{left:567.040000pt;}
.x111_c00305{left:569.333333pt;}
.xd5_c00305{left:570.666667pt;}
.x113_c00305{left:571.626667pt;}
.x7f_c00305{left:573.333333pt;}
.x29_c00305{left:574.666667pt;}
.xf2_c00305{left:575.626667pt;}
.xd_c00305{left:577.706667pt;}
.x60_c00305{left:578.666667pt;}
.x77_c00305{left:580.373333pt;}
.xb7_c00305{left:581.333333pt;}
.xaa_c00305{left:582.293333pt;}
.xe7_c00305{left:583.626667pt;}
.x117_c00305{left:584.960000pt;}
.xee_c00305{left:587.040000pt;}
.x19_c00305{left:589.706667pt;}
.x8e_c00305{left:590.666667pt;}
.xcf_c00305{left:592.000000pt;}
.x42_c00305{left:592.960000pt;}
.xc0_c00305{left:594.666667pt;}
.x36_c00305{left:596.000000pt;}
.xa1_c00305{left:597.333333pt;}
.xf8_c00305{left:600.000000pt;}
.x89_c00305{left:602.293333pt;}
.x50_c00305{left:603.626667pt;}
.xe_c00305{left:605.333333pt;}
.xc4_c00305{left:607.626667pt;}
.xa2_c00305{left:609.706667pt;}
.x101_c00305{left:610.666667pt;}
.x78_c00305{left:612.000000pt;}
.x80_c00305{left:612.960000pt;}
.xe5_c00305{left:614.666667pt;}
.xe8_c00305{left:616.000000pt;}
.x51_c00305{left:620.000000pt;}
.x43_c00305{left:624.373333pt;}
.x37_c00305{left:626.293333pt;}
.xab_c00305{left:629.706667pt;}
.x79_c00305{left:631.040000pt;}
.x114_c00305{left:634.666667pt;}
.xc5_c00305{left:636.373333pt;}
.xc6_c00305{left:640.373333pt;}
.x81_c00305{left:643.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_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_215c04937224c9f576fa6ac8.woff2')format("woff");}.ff1_c00306{font-family:ff1_c00306;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma3_c00306{transform:matrix(0.314417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314417,0.000000,0.000000,0.250000,0,0);}
.m93_c00306{transform:matrix(0.321892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321892,0.000000,0.000000,0.250000,0,0);}
.ma6_c00306{transform:matrix(0.328221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328221,0.000000,0.000000,0.250000,0,0);}
.ma7_c00306{transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);}
.mc1_c00306{transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);}
.mc0_c00306{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m81_c00306{transform:matrix(0.362185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362185,0.000000,0.000000,0.250000,0,0);}
.m7c_c00306{transform:matrix(0.363445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363445,0.000000,0.000000,0.250000,0,0);}
.m70_c00306{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m33_c00306{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.med_c00306{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mb8_c00306{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m4f_c00306{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m5a_c00306{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m88_c00306{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m9d_c00306{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.me2_c00306{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.ma_c00306{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m1e_c00306{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m8a_c00306{transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);}
.m4_c00306{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.ma2_c00306{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m77_c00306{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m3d_c00306{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m34_c00306{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m41_c00306{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m86_c00306{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.mb3_c00306{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.me5_c00306{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m50_c00306{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m6_c00306{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m98_c00306{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m59_c00306{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.ma0_c00306{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m2c_c00306{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m1d_c00306{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.ma4_c00306{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m58_c00306{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.ma5_c00306{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m99_c00306{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m44_c00306{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m8b_c00306{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.mc7_c00306{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.mae_c00306{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.mad_c00306{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m38_c00306{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m52_c00306{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m85_c00306{transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);}
.mb_c00306{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mdd_c00306{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.md1_c00306{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m5b_c00306{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m20_c00306{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.mb7_c00306{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m67_c00306{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m6d_c00306{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.mf_c00306{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m79_c00306{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.md7_c00306{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.mb0_c00306{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m71_c00306{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m23_c00306{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mb5_c00306{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m8f_c00306{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m47_c00306{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m9c_c00306{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m53_c00306{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m87_c00306{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m56_c00306{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m31_c00306{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.mda_c00306{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.me6_c00306{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mb1_c00306{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m65_c00306{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m69_c00306{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m2f_c00306{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.ma1_c00306{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.mc5_c00306{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m9a_c00306{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m68_c00306{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.m18_c00306{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m61_c00306{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m11_c00306{transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);}
.m1f_c00306{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.maf_c00306{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m8e_c00306{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m95_c00306{transform:matrix(0.458506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458506,0.000000,0.000000,0.250000,0,0);}
.me9_c00306{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m82_c00306{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m49_c00306{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m3e_c00306{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m57_c00306{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m72_c00306{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.m3a_c00306{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m29_c00306{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.mce_c00306{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mcc_c00306{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m10_c00306{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mdc_c00306{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.me8_c00306{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m8c_c00306{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m3b_c00306{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m1_c00306{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m7a_c00306{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mb2_c00306{transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);}
.m24_c00306{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.me4_c00306{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m28_c00306{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);}
.m7e_c00306{transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);}
.m8d_c00306{transform:matrix(0.503529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503529,0.000000,0.000000,0.250000,0,0);}
.mec_c00306{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.mbf_c00306{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m91_c00306{transform:matrix(0.506471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506471,0.000000,0.000000,0.250000,0,0);}
.md_c00306{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m2e_c00306{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m54_c00306{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m4c_c00306{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m6b_c00306{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m4e_c00306{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mcf_c00306{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m8_c00306{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m1b_c00306{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m75_c00306{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.maa_c00306{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.mbd_c00306{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m9b_c00306{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.md4_c00306{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.md5_c00306{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mdf_c00306{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m3_c00306{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.md6_c00306{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mcb_c00306{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mbc_c00306{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m13_c00306{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mab_c00306{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mbb_c00306{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m46_c00306{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m76_c00306{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m32_c00306{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.md9_c00306{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m7b_c00306{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mb4_c00306{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.me3_c00306{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m2d_c00306{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mb6_c00306{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m73_c00306{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m83_c00306{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m5d_c00306{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m9e_c00306{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m90_c00306{transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);}
.me1_c00306{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m19_c00306{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mb9_c00306{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.me7_c00306{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m5c_c00306{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m89_c00306{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m25_c00306{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m5e_c00306{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m6e_c00306{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.mba_c00306{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m2_c00306{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m7_c00306{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mde_c00306{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m2b_c00306{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m84_c00306{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.mee_c00306{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m4d_c00306{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m14_c00306{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mc6_c00306{transform:matrix(0.561203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561203,0.000000,0.000000,0.250000,0,0);}
.m35_c00306{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mdb_c00306{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m3f_c00306{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.md2_c00306{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mca_c00306{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m6f_c00306{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m27_c00306{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m4b_c00306{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m30_c00306{transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);}
.ma9_c00306{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m5f_c00306{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.mc2_c00306{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m6a_c00306{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m74_c00306{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m55_c00306{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.me0_c00306{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m7d_c00306{transform:matrix(0.580913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580913,0.000000,0.000000,0.250000,0,0);}
.m48_c00306{transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);}
.m1c_c00306{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m26_c00306{transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);}
.m94_c00306{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.m64_c00306{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m17_c00306{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m45_c00306{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m22_c00306{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mac_c00306{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.mcd_c00306{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m16_c00306{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.meb_c00306{transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);}
.md8_c00306{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.mea_c00306{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.m1a_c00306{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.me_c00306{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m0_c00306{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m6c_c00306{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.mc9_c00306{transform:matrix(0.611765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611765,0.000000,0.000000,0.250000,0,0);}
.m60_c00306{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m40_c00306{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m97_c00306{transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);}
.m62_c00306{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);}
.m63_c00306{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.m92_c00306{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);}
.m4a_c00306{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m9_c00306{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mc_c00306{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m37_c00306{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m7f_c00306{transform:matrix(0.675882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675882,0.000000,0.000000,0.250000,0,0);}
.mef_c00306{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m80_c00306{transform:matrix(0.688824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.688824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.688824,0.000000,0.000000,0.250000,0,0);}
.m39_c00306{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m5_c00306{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.md0_c00306{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.ma8_c00306{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.mc3_c00306{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m12_c00306{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m51_c00306{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mc4_c00306{transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);}
.m3c_c00306{transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);}
.m9f_c00306{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m66_c00306{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m21_c00306{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.md3_c00306{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m43_c00306{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.m78_c00306{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m36_c00306{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m42_c00306{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m2a_c00306{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mc8_c00306{transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);}
.m15_c00306{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.mbe_c00306{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m96_c00306{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws1_c00306{word-spacing:0.000000px;}
.ws0_c00306{word-spacing:0.271680px;}
.fc0_c00306{color:transparent;}
.fs6_c00306{font-size:3.420000px;}
.fs3_c00306{font-size:18.720000px;}
.fs0_c00306{font-size:20.400000px;}
.fs4_c00306{font-size:25.500000px;}
.fs1_c00306{font-size:28.920000px;}
.fs5_c00306{font-size:32.340000px;}
.fs2_c00306{font-size:35.700000px;}
.fs7_c00306{font-size:39.120000px;}
.y0_c00306{bottom:0.000000px;}
.yc2_c00306{bottom:253.905000px;}
.yc3_c00306{bottom:254.970000px;}
.yc1_c00306{bottom:255.405000px;}
.ybe_c00306{bottom:270.405000px;}
.yc0_c00306{bottom:272.745000px;}
.ybf_c00306{bottom:273.630000px;}
.ybd_c00306{bottom:274.470000px;}
.ybc_c00306{bottom:274.905000px;}
.yba_c00306{bottom:292.245000px;}
.yb9_c00306{bottom:294.405000px;}
.ybb_c00306{bottom:295.470000px;}
.yb7_c00306{bottom:310.905000px;}
.yb6_c00306{bottom:311.745000px;}
.yb4_c00306{bottom:313.905000px;}
.yb8_c00306{bottom:314.130000px;}
.yb5_c00306{bottom:314.970000px;}
.yb1_c00306{bottom:330.405000px;}
.yb2_c00306{bottom:331.245000px;}
.yb0_c00306{bottom:332.325000px;}
.yaf_c00306{bottom:333.405000px;}
.yb3_c00306{bottom:334.905000px;}
.yae_c00306{bottom:350.745000px;}
.yac_c00306{bottom:352.245000px;}
.yab_c00306{bottom:352.905000px;}
.yad_c00306{bottom:354.405000px;}
.yaa_c00306{bottom:369.405000px;}
.ya8_c00306{bottom:370.245000px;}
.ya5_c00306{bottom:371.745000px;}
.ya9_c00306{bottom:372.405000px;}
.ya7_c00306{bottom:372.630000px;}
.ya6_c00306{bottom:373.470000px;}
.ya4_c00306{bottom:373.905000px;}
.ya3_c00306{bottom:391.245000px;}
.ya2_c00306{bottom:392.130000px;}
.y9f_c00306{bottom:392.970000px;}
.y9e_c00306{bottom:393.405000px;}
.ya1_c00306{bottom:393.630000px;}
.ya0_c00306{bottom:394.470000px;}
.y9d_c00306{bottom:408.405000px;}
.y9c_c00306{bottom:409.470000px;}
.y9a_c00306{bottom:411.630000px;}
.y9b_c00306{bottom:412.905000px;}
.y98_c00306{bottom:429.825000px;}
.y99_c00306{bottom:430.245000px;}
.y95_c00306{bottom:431.130000px;}
.y96_c00306{bottom:432.405000px;}
.y97_c00306{bottom:432.630000px;}
.y93_c00306{bottom:448.905000px;}
.y94_c00306{bottom:449.745000px;}
.y92_c00306{bottom:450.180000px;}
.y8f_c00306{bottom:451.905000px;}
.y90_c00306{bottom:453.405000px;}
.y91_c00306{bottom:453.420000px;}
.y8e_c00306{bottom:471.405000px;}
.y8b_c00306{bottom:471.825000px;}
.y8d_c00306{bottom:472.470000px;}
.y8c_c00306{bottom:472.905000px;}
.y89_c00306{bottom:490.245000px;}
.y88_c00306{bottom:490.905000px;}
.y8a_c00306{bottom:492.405000px;}
.y87_c00306{bottom:509.745000px;}
.y85_c00306{bottom:510.825000px;}
.y86_c00306{bottom:511.905000px;}
.y83_c00306{bottom:529.245000px;}
.y84_c00306{bottom:530.325000px;}
.y82_c00306{bottom:531.405000px;}
.y7e_c00306{bottom:548.745000px;}
.y7f_c00306{bottom:549.180000px;}
.y81_c00306{bottom:549.630000px;}
.y80_c00306{bottom:549.825000px;}
.y7d_c00306{bottom:550.245000px;}
.y7a_c00306{bottom:550.905000px;}
.y7c_c00306{bottom:552.405000px;}
.y7b_c00306{bottom:552.420000px;}
.y77_c00306{bottom:568.245000px;}
.y79_c00306{bottom:568.680000px;}
.y78_c00306{bottom:569.325000px;}
.y76_c00306{bottom:569.745000px;}
.y73_c00306{bottom:570.405000px;}
.y74_c00306{bottom:570.630000px;}
.y75_c00306{bottom:571.920000px;}
.y71_c00306{bottom:586.905000px;}
.y72_c00306{bottom:587.325000px;}
.y70_c00306{bottom:588.825000px;}
.y6e_c00306{bottom:589.245000px;}
.y6f_c00306{bottom:591.420000px;}
.y69_c00306{bottom:608.745000px;}
.y6d_c00306{bottom:609.630000px;}
.y6c_c00306{bottom:610.470000px;}
.y6b_c00306{bottom:610.905000px;}
.y6a_c00306{bottom:610.920000px;}
.y68_c00306{bottom:631.905000px;}
.y67_c00306{bottom:632.970000px;}
.y66_c00306{bottom:647.325000px;}
.y65_c00306{bottom:647.550000px;}
.y60_c00306{bottom:647.970000px;}
.y62_c00306{bottom:648.405000px;}
.y63_c00306{bottom:649.050000px;}
.y61_c00306{bottom:649.470000px;}
.y64_c00306{bottom:650.550000px;}
.y5f_c00306{bottom:665.970000px;}
.y5d_c00306{bottom:666.825000px;}
.y5c_c00306{bottom:667.470000px;}
.y5e_c00306{bottom:667.905000px;}
.y5b_c00306{bottom:668.970000px;}
.y5a_c00306{bottom:689.745000px;}
.y58_c00306{bottom:690.825000px;}
.y59_c00306{bottom:692.970000px;}
.y57_c00306{bottom:727.905000px;}
.y56_c00306{bottom:766.245000px;}
.y54_c00306{bottom:766.905000px;}
.y55_c00306{bottom:768.405000px;}
.y53_c00306{bottom:785.745000px;}
.y52_c00306{bottom:786.630000px;}
.y50_c00306{bottom:787.470000px;}
.y51_c00306{bottom:787.905000px;}
.y4c_c00306{bottom:805.245000px;}
.y4d_c00306{bottom:806.130000px;}
.y4f_c00306{bottom:806.970000px;}
.y4e_c00306{bottom:807.405000px;}
.y49_c00306{bottom:824.745000px;}
.y4b_c00306{bottom:826.470000px;}
.y4a_c00306{bottom:826.905000px;}
.y42_c00306{bottom:841.905000px;}
.y47_c00306{bottom:843.405000px;}
.y43_c00306{bottom:844.245000px;}
.y41_c00306{bottom:845.130000px;}
.y45_c00306{bottom:845.745000px;}
.y46_c00306{bottom:845.970000px;}
.y44_c00306{bottom:846.405000px;}
.y48_c00306{bottom:846.630000px;}
.y3f_c00306{bottom:862.905000px;}
.y3c_c00306{bottom:863.745000px;}
.y40_c00306{bottom:863.970000px;}
.y3d_c00306{bottom:865.050000px;}
.y3a_c00306{bottom:865.470000px;}
.y39_c00306{bottom:865.905000px;}
.y3e_c00306{bottom:866.130000px;}
.y3b_c00306{bottom:866.970000px;}
.y34_c00306{bottom:883.245000px;}
.y35_c00306{bottom:884.745000px;}
.y33_c00306{bottom:885.405000px;}
.y38_c00306{bottom:885.630000px;}
.y37_c00306{bottom:885.825000px;}
.y36_c00306{bottom:886.905000px;}
.y31_c00306{bottom:902.970000px;}
.y32_c00306{bottom:904.245000px;}
.y2e_c00306{bottom:904.905000px;}
.y2f_c00306{bottom:905.130000px;}
.y30_c00306{bottom:905.970000px;}
.y2d_c00306{bottom:906.405000px;}
.y26_c00306{bottom:922.245000px;}
.y2b_c00306{bottom:922.470000px;}
.y2c_c00306{bottom:923.325000px;}
.y2a_c00306{bottom:923.745000px;}
.y25_c00306{bottom:924.405000px;}
.y29_c00306{bottom:924.630000px;}
.y27_c00306{bottom:925.470000px;}
.y28_c00306{bottom:925.905000px;}
.y23_c00306{bottom:943.245000px;}
.y20_c00306{bottom:943.905000px;}
.y22_c00306{bottom:944.130000px;}
.y21_c00306{bottom:945.405000px;}
.y24_c00306{bottom:946.470000px;}
.y1c_c00306{bottom:961.905000px;}
.y1a_c00306{bottom:962.745000px;}
.y1f_c00306{bottom:964.050000px;}
.y1d_c00306{bottom:964.470000px;}
.y1b_c00306{bottom:964.905000px;}
.y1e_c00306{bottom:965.130000px;}
.y19_c00306{bottom:982.245000px;}
.y17_c00306{bottom:983.325000px;}
.y16_c00306{bottom:984.405000px;}
.y18_c00306{bottom:984.630000px;}
.y13_c00306{bottom:1001.745000px;}
.y15_c00306{bottom:1002.825000px;}
.y11_c00306{bottom:1003.905000px;}
.y14_c00306{bottom:1004.130000px;}
.y12_c00306{bottom:1004.970000px;}
.y10_c00306{bottom:1020.405000px;}
.ye_c00306{bottom:1022.970000px;}
.yf_c00306{bottom:1023.405000px;}
.y9_c00306{bottom:1040.745000px;}
.yb_c00306{bottom:1042.470000px;}
.ya_c00306{bottom:1042.905000px;}
.yc_c00306{bottom:1043.970000px;}
.yd_c00306{bottom:1044.405000px;}
.y4_c00306{bottom:1059.405000px;}
.y7_c00306{bottom:1060.245000px;}
.y5_c00306{bottom:1061.745000px;}
.y6_c00306{bottom:1062.630000px;}
.y8_c00306{bottom:1063.470000px;}
.y3_c00306{bottom:1063.905000px;}
.y2_c00306{bottom:1099.905000px;}
.y1_c00306{bottom:1100.550000px;}
.h7_c00306{height:4.206533px;}
.h4_c00306{height:23.025234px;}
.h1_c00306{height:25.091602px;}
.h5_c00306{height:31.364502px;}
.h2_c00306{height:35.571035px;}
.h6_c00306{height:39.777568px;}
.h3_c00306{height:43.910303px;}
.h8_c00306{height:48.116836px;}
.h0_c00306{height:1335.000000px;}
.w0_c00306{width:880.500000px;}
.x0_c00306{left:0.000000px;}
.x3_c00306{left:151.080000px;}
.x96_c00306{left:152.580000px;}
.xd3_c00306{left:154.500000px;}
.x23_c00306{left:166.080000px;}
.xa4_c00306{left:168.000000px;}
.x90_c00306{left:169.500000px;}
.x5f_c00306{left:171.420000px;}
.xf5_c00306{left:175.920000px;}
.xd4_c00306{left:177.420000px;}
.x7b_c00306{left:178.920000px;}
.x20_c00306{left:183.000000px;}
.xf2_c00306{left:186.420000px;}
.x89_c00306{left:189.000000px;}
.xe4_c00306{left:190.500000px;}
.x97_c00306{left:193.500000px;}
.x52_c00306{left:195.000000px;}
.x24_c00306{left:196.500000px;}
.x4_c00306{left:198.420000px;}
.x60_c00306{left:199.920000px;}
.x21_c00306{left:201.420000px;}
.xdc_c00306{left:202.500000px;}
.xf6_c00306{left:204.000000px;}
.x81_c00306{left:205.500000px;}
.x12_c00306{left:206.580000px;}
.xac_c00306{left:208.920000px;}
.x44_c00306{left:213.000000px;}
.x39_c00306{left:214.080000px;}
.xe8_c00306{left:215.580000px;}
.x25_c00306{left:217.080000px;}
.xd8_c00306{left:219.000000px;}
.x72_c00306{left:220.920000px;}
.xdd_c00306{left:222.000000px;}
.x45_c00306{left:229.920000px;}
.x22_c00306{left:232.080000px;}
.xc4_c00306{left:234.420000px;}
.x26_c00306{left:235.500000px;}
.x13_c00306{left:237.000000px;}
.x6b_c00306{left:240.000000px;}
.x5_c00306{left:244.080000px;}
.x9b_c00306{left:247.080000px;}
.xde_c00306{left:249.420000px;}
.xb2_c00306{left:250.500000px;}
.x82_c00306{left:253.500000px;}
.x14_c00306{left:254.580000px;}
.xc8_c00306{left:256.080000px;}
.x53_c00306{left:257.580000px;}
.x3a_c00306{left:259.920000px;}
.xb8_c00306{left:261.000000px;}
.x73_c00306{left:262.500000px;}
.xc5_c00306{left:264.420000px;}
.x61_c00306{left:267.000000px;}
.xad_c00306{left:268.500000px;}
.xce_c00306{left:269.580000px;}
.xd9_c00306{left:271.500000px;}
.x46_c00306{left:273.000000px;}
.x15_c00306{left:274.920000px;}
.x6c_c00306{left:276.000000px;}
.xa5_c00306{left:277.500000px;}
.x3b_c00306{left:278.580000px;}
.x30_c00306{left:280.500000px;}
.xb9_c00306{left:282.000000px;}
.x98_c00306{left:284.580000px;}
.x62_c00306{left:286.920000px;}
.x54_c00306{left:288.000000px;}
.xae_c00306{left:289.500000px;}
.x47_c00306{left:291.420000px;}
.xfb_c00306{left:292.500000px;}
.xf7_c00306{left:294.000000px;}
.xa0_c00306{left:295.080000px;}
.xc1_c00306{left:297.000000px;}
.x27_c00306{left:298.080000px;}
.xe5_c00306{left:300.420000px;}
.xb3_c00306{left:301.500000px;}
.x99_c00306{left:303.000000px;}
.x3c_c00306{left:306.000000px;}
.x55_c00306{left:307.500000px;}
.xec_c00306{left:310.500000px;}
.x63_c00306{left:313.500000px;}
.x6_c00306{left:315.000000px;}
.xba_c00306{left:316.500000px;}
.x48_c00306{left:318.420000px;}
.x9c_c00306{left:319.920000px;}
.x91_c00306{left:322.500000px;}
.x74_c00306{left:325.500000px;}
.x6d_c00306{left:327.420000px;}
.xc9_c00306{left:328.500000px;}
.x31_c00306{left:329.580000px;}
.xd5_c00306{left:331.500000px;}
.xfc_c00306{left:334.080000px;}
.x7_c00306{left:340.500000px;}
.x3d_c00306{left:341.580000px;}
.xcf_c00306{left:343.500000px;}
.xa6_c00306{left:345.420000px;}
.x28_c00306{left:348.000000px;}
.xb4_c00306{left:349.500000px;}
.x56_c00306{left:351.000000px;}
.x6e_c00306{left:352.080000px;}
.x8a_c00306{left:357.000000px;}
.x16_c00306{left:360.000000px;}
.xca_c00306{left:363.000000px;}
.xd0_c00306{left:364.080000px;}
.xdf_c00306{left:365.580000px;}
.x49_c00306{left:368.580000px;}
.xbb_c00306{left:371.580000px;}
.xc2_c00306{left:373.500000px;}
.xf8_c00306{left:376.080000px;}
.x17_c00306{left:379.920000px;}
.xaf_c00306{left:382.500000px;}
.x32_c00306{left:386.580000px;}
.x8_c00306{left:391.080000px;}
.x75_c00306{left:393.000000px;}
.x57_c00306{left:396.000000px;}
.xe0_c00306{left:397.920000px;}
.x4a_c00306{left:399.420000px;}
.x1_c00306{left:402.000000px;}
.x18_c00306{left:405.000000px;}
.xef_c00306{left:408.645000px;}
.x9a_c00306{left:410.145000px;}
.x7c_c00306{left:412.500000px;}
.x64_c00306{left:413.580000px;}
.x29_c00306{left:415.500000px;}
.x9d_c00306{left:417.420000px;}
.xf9_c00306{left:418.500000px;}
.x9_c00306{left:421.500000px;}
.x4b_c00306{left:426.420000px;}
.x3e_c00306{left:427.500000px;}
.x83_c00306{left:433.920000px;}
.xbc_c00306{left:435.000000px;}
.x92_c00306{left:439.080000px;}
.x2a_c00306{left:441.000000px;}
.x76_c00306{left:442.920000px;}
.xf3_c00306{left:444.000000px;}
.x7d_c00306{left:446.580000px;}
.xa1_c00306{left:448.500000px;}
.xe9_c00306{left:450.420000px;}
.x65_c00306{left:453.420000px;}
.x33_c00306{left:454.500000px;}
.xb0_c00306{left:455.580000px;}
.x93_c00306{left:457.080000px;}
.x3f_c00306{left:459.000000px;}
.xcc_c00306{left:460.080000px;}
.x58_c00306{left:462.420000px;}
.xcb_c00306{left:463.500000px;}
.xa_c00306{left:466.500000px;}
.xda_c00306{left:467.580000px;}
.xa2_c00306{left:469.080000px;}
.xe6_c00306{left:471.000000px;}
.x19_c00306{left:474.000000px;}
.x34_c00306{left:475.500000px;}
.x2b_c00306{left:478.920000px;}
.xe1_c00306{left:481.920000px;}
.xb_c00306{left:484.500000px;}
.xd1_c00306{left:486.000000px;}
.xa3_c00306{left:487.500000px;}
.x66_c00306{left:489.000000px;}
.xcd_c00306{left:490.500000px;}
.x4c_c00306{left:493.500000px;}
.xf0_c00306{left:494.580000px;}
.x59_c00306{left:499.080000px;}
.x6f_c00306{left:501.000000px;}
.x8b_c00306{left:502.500000px;}
.xb5_c00306{left:505.080000px;}
.x2c_c00306{left:507.420000px;}
.xa7_c00306{left:508.500000px;}
.x84_c00306{left:509.580000px;}
.x40_c00306{left:511.500000px;}
.x7e_c00306{left:513.000000px;}
.x9e_c00306{left:515.580000px;}
.x8c_c00306{left:519.000000px;}
.xbd_c00306{left:520.080000px;}
.xc_c00306{left:522.420000px;}
.x1a_c00306{left:526.920000px;}
.xc6_c00306{left:531.000000px;}
.xb6_c00306{left:532.500000px;}
.x4d_c00306{left:534.420000px;}
.xb1_c00306{left:535.500000px;}
.x77_c00306{left:537.000000px;}
.x5a_c00306{left:538.500000px;}
.xf4_c00306{left:539.580000px;}
.x9f_c00306{left:541.500000px;}
.xa8_c00306{left:543.000000px;}
.xbe_c00306{left:544.500000px;}
.x8d_c00306{left:547.080000px;}
.x67_c00306{left:550.500000px;}
.x94_c00306{left:552.420000px;}
.x70_c00306{left:553.920000px;}
.xed_c00306{left:555.000000px;}
.x7f_c00306{left:556.500000px;}
.xea_c00306{left:558.000000px;}
.x1b_c00306{left:559.920000px;}
.x35_c00306{left:561.420000px;}
.xd_c00306{left:562.500000px;}
.x68_c00306{left:564.420000px;}
.x85_c00306{left:567.420000px;}
.xa9_c00306{left:571.920000px;}
.x41_c00306{left:573.420000px;}
.x2d_c00306{left:574.500000px;}
.xf1_c00306{left:577.920000px;}
.x5b_c00306{left:583.920000px;}
.x1c_c00306{left:585.000000px;}
.xe_c00306{left:588.000000px;}
.x78_c00306{left:589.080000px;}
.xe2_c00306{left:590.580000px;}
.x69_c00306{left:598.920000px;}
.x95_c00306{left:604.500000px;}
.xeb_c00306{left:606.000000px;}
.x79_c00306{left:607.920000px;}
.x36_c00306{left:610.500000px;}
.x8e_c00306{left:612.420000px;}
.x4e_c00306{left:616.500000px;}
.xf_c00306{left:619.500000px;}
.x7a_c00306{left:621.000000px;}
.xe3_c00306{left:622.500000px;}
.x1d_c00306{left:624.000000px;}
.xb7_c00306{left:626.145000px;}
.x86_c00306{left:627.420000px;}
.x37_c00306{left:628.920000px;}
.xc7_c00306{left:630.000000px;}
.x4f_c00306{left:633.000000px;}
.xfa_c00306{left:634.275000px;}
.x42_c00306{left:636.000000px;}
.x8f_c00306{left:637.500000px;}
.x10_c00306{left:638.580000px;}
.x5c_c00306{left:645.000000px;}
.xbf_c00306{left:646.500000px;}
.x50_c00306{left:649.920000px;}
.xd2_c00306{left:651.000000px;}
.x1e_c00306{left:652.920000px;}
.x38_c00306{left:655.080000px;}
.xd6_c00306{left:656.145000px;}
.xee_c00306{left:658.920000px;}
.xdb_c00306{left:660.000000px;}
.xaa_c00306{left:661.080000px;}
.xc3_c00306{left:663.000000px;}
.x5d_c00306{left:664.500000px;}
.x2e_c00306{left:666.000000px;}
.x87_c00306{left:669.000000px;}
.x43_c00306{left:670.500000px;}
.x71_c00306{left:672.000000px;}
.x6a_c00306{left:675.000000px;}
.xe7_c00306{left:681.420000px;}
.xab_c00306{left:687.000000px;}
.x88_c00306{left:688.500000px;}
.x11_c00306{left:694.500000px;}
.x1f_c00306{left:696.420000px;}
.xc0_c00306{left:699.420000px;}
.x51_c00306{left:703.080000px;}
.x2_c00306{left:704.580000px;}
.x5e_c00306{left:706.080000px;}
.x80_c00306{left:708.000000px;}
.x2f_c00306{left:712.500000px;}
.xd7_c00306{left:721.500000px;}
@media print{
.v0_c00306{vertical-align:0.000000pt;}
.ls0_c00306{letter-spacing:0.000000pt;}
.ws1_c00306{word-spacing:0.000000pt;}
.ws0_c00306{word-spacing:0.241493pt;}
.fs6_c00306{font-size:3.040000pt;}
.fs3_c00306{font-size:16.640000pt;}
.fs0_c00306{font-size:18.133333pt;}
.fs4_c00306{font-size:22.666667pt;}
.fs1_c00306{font-size:25.706667pt;}
.fs5_c00306{font-size:28.746667pt;}
.fs2_c00306{font-size:31.733333pt;}
.fs7_c00306{font-size:34.773333pt;}
.y0_c00306{bottom:0.000000pt;}
.yc2_c00306{bottom:225.693333pt;}
.yc3_c00306{bottom:226.640000pt;}
.yc1_c00306{bottom:227.026667pt;}
.ybe_c00306{bottom:240.360000pt;}
.yc0_c00306{bottom:242.440000pt;}
.ybf_c00306{bottom:243.226667pt;}
.ybd_c00306{bottom:243.973333pt;}
.ybc_c00306{bottom:244.360000pt;}
.yba_c00306{bottom:259.773333pt;}
.yb9_c00306{bottom:261.693333pt;}
.ybb_c00306{bottom:262.640000pt;}
.yb7_c00306{bottom:276.360000pt;}
.yb6_c00306{bottom:277.106667pt;}
.yb4_c00306{bottom:279.026667pt;}
.yb8_c00306{bottom:279.226667pt;}
.yb5_c00306{bottom:279.973333pt;}
.yb1_c00306{bottom:293.693333pt;}
.yb2_c00306{bottom:294.440000pt;}
.yb0_c00306{bottom:295.400000pt;}
.yaf_c00306{bottom:296.360000pt;}
.yb3_c00306{bottom:297.693333pt;}
.yae_c00306{bottom:311.773333pt;}
.yac_c00306{bottom:313.106667pt;}
.yab_c00306{bottom:313.693333pt;}
.yad_c00306{bottom:315.026667pt;}
.yaa_c00306{bottom:328.360000pt;}
.ya8_c00306{bottom:329.106667pt;}
.ya5_c00306{bottom:330.440000pt;}
.ya9_c00306{bottom:331.026667pt;}
.ya7_c00306{bottom:331.226667pt;}
.ya6_c00306{bottom:331.973333pt;}
.ya4_c00306{bottom:332.360000pt;}
.ya3_c00306{bottom:347.773333pt;}
.ya2_c00306{bottom:348.560000pt;}
.y9f_c00306{bottom:349.306667pt;}
.y9e_c00306{bottom:349.693333pt;}
.ya1_c00306{bottom:349.893333pt;}
.ya0_c00306{bottom:350.640000pt;}
.y9d_c00306{bottom:363.026667pt;}
.y9c_c00306{bottom:363.973333pt;}
.y9a_c00306{bottom:365.893333pt;}
.y9b_c00306{bottom:367.026667pt;}
.y98_c00306{bottom:382.066667pt;}
.y99_c00306{bottom:382.440000pt;}
.y95_c00306{bottom:383.226667pt;}
.y96_c00306{bottom:384.360000pt;}
.y97_c00306{bottom:384.560000pt;}
.y93_c00306{bottom:399.026667pt;}
.y94_c00306{bottom:399.773333pt;}
.y92_c00306{bottom:400.160000pt;}
.y8f_c00306{bottom:401.693333pt;}
.y90_c00306{bottom:403.026667pt;}
.y91_c00306{bottom:403.040000pt;}
.y8e_c00306{bottom:419.026667pt;}
.y8b_c00306{bottom:419.400000pt;}
.y8d_c00306{bottom:419.973333pt;}
.y8c_c00306{bottom:420.360000pt;}
.y89_c00306{bottom:435.773333pt;}
.y88_c00306{bottom:436.360000pt;}
.y8a_c00306{bottom:437.693333pt;}
.y87_c00306{bottom:453.106667pt;}
.y85_c00306{bottom:454.066667pt;}
.y86_c00306{bottom:455.026667pt;}
.y83_c00306{bottom:470.440000pt;}
.y84_c00306{bottom:471.400000pt;}
.y82_c00306{bottom:472.360000pt;}
.y7e_c00306{bottom:487.773333pt;}
.y7f_c00306{bottom:488.160000pt;}
.y81_c00306{bottom:488.560000pt;}
.y80_c00306{bottom:488.733333pt;}
.y7d_c00306{bottom:489.106667pt;}
.y7a_c00306{bottom:489.693333pt;}
.y7c_c00306{bottom:491.026667pt;}
.y7b_c00306{bottom:491.040000pt;}
.y77_c00306{bottom:505.106667pt;}
.y79_c00306{bottom:505.493333pt;}
.y78_c00306{bottom:506.066667pt;}
.y76_c00306{bottom:506.440000pt;}
.y73_c00306{bottom:507.026667pt;}
.y74_c00306{bottom:507.226667pt;}
.y75_c00306{bottom:508.373333pt;}
.y71_c00306{bottom:521.693333pt;}
.y72_c00306{bottom:522.066667pt;}
.y70_c00306{bottom:523.400000pt;}
.y6e_c00306{bottom:523.773333pt;}
.y6f_c00306{bottom:525.706667pt;}
.y69_c00306{bottom:541.106667pt;}
.y6d_c00306{bottom:541.893333pt;}
.y6c_c00306{bottom:542.640000pt;}
.y6b_c00306{bottom:543.026667pt;}
.y6a_c00306{bottom:543.040000pt;}
.y68_c00306{bottom:561.693333pt;}
.y67_c00306{bottom:562.640000pt;}
.y66_c00306{bottom:575.400000pt;}
.y65_c00306{bottom:575.600000pt;}
.y60_c00306{bottom:575.973333pt;}
.y62_c00306{bottom:576.360000pt;}
.y63_c00306{bottom:576.933333pt;}
.y61_c00306{bottom:577.306667pt;}
.y64_c00306{bottom:578.266667pt;}
.y5f_c00306{bottom:591.973333pt;}
.y5d_c00306{bottom:592.733333pt;}
.y5c_c00306{bottom:593.306667pt;}
.y5e_c00306{bottom:593.693333pt;}
.y5b_c00306{bottom:594.640000pt;}
.y5a_c00306{bottom:613.106667pt;}
.y58_c00306{bottom:614.066667pt;}
.y59_c00306{bottom:615.973333pt;}
.y57_c00306{bottom:647.026667pt;}
.y56_c00306{bottom:681.106667pt;}
.y54_c00306{bottom:681.693333pt;}
.y55_c00306{bottom:683.026667pt;}
.y53_c00306{bottom:698.440000pt;}
.y52_c00306{bottom:699.226667pt;}
.y50_c00306{bottom:699.973333pt;}
.y51_c00306{bottom:700.360000pt;}
.y4c_c00306{bottom:715.773333pt;}
.y4d_c00306{bottom:716.560000pt;}
.y4f_c00306{bottom:717.306667pt;}
.y4e_c00306{bottom:717.693333pt;}
.y49_c00306{bottom:733.106667pt;}
.y4b_c00306{bottom:734.640000pt;}
.y4a_c00306{bottom:735.026667pt;}
.y42_c00306{bottom:748.360000pt;}
.y47_c00306{bottom:749.693333pt;}
.y43_c00306{bottom:750.440000pt;}
.y41_c00306{bottom:751.226667pt;}
.y45_c00306{bottom:751.773333pt;}
.y46_c00306{bottom:751.973333pt;}
.y44_c00306{bottom:752.360000pt;}
.y48_c00306{bottom:752.560000pt;}
.y3f_c00306{bottom:767.026667pt;}
.y3c_c00306{bottom:767.773333pt;}
.y40_c00306{bottom:767.973333pt;}
.y3d_c00306{bottom:768.933333pt;}
.y3a_c00306{bottom:769.306667pt;}
.y39_c00306{bottom:769.693333pt;}
.y3e_c00306{bottom:769.893333pt;}
.y3b_c00306{bottom:770.640000pt;}
.y34_c00306{bottom:785.106667pt;}
.y35_c00306{bottom:786.440000pt;}
.y33_c00306{bottom:787.026667pt;}
.y38_c00306{bottom:787.226667pt;}
.y37_c00306{bottom:787.400000pt;}
.y36_c00306{bottom:788.360000pt;}
.y31_c00306{bottom:802.640000pt;}
.y32_c00306{bottom:803.773333pt;}
.y2e_c00306{bottom:804.360000pt;}
.y2f_c00306{bottom:804.560000pt;}
.y30_c00306{bottom:805.306667pt;}
.y2d_c00306{bottom:805.693333pt;}
.y26_c00306{bottom:819.773333pt;}
.y2b_c00306{bottom:819.973333pt;}
.y2c_c00306{bottom:820.733333pt;}
.y2a_c00306{bottom:821.106667pt;}
.y25_c00306{bottom:821.693333pt;}
.y29_c00306{bottom:821.893333pt;}
.y27_c00306{bottom:822.640000pt;}
.y28_c00306{bottom:823.026667pt;}
.y23_c00306{bottom:838.440000pt;}
.y20_c00306{bottom:839.026667pt;}
.y22_c00306{bottom:839.226667pt;}
.y21_c00306{bottom:840.360000pt;}
.y24_c00306{bottom:841.306667pt;}
.y1c_c00306{bottom:855.026667pt;}
.y1a_c00306{bottom:855.773333pt;}
.y1f_c00306{bottom:856.933333pt;}
.y1d_c00306{bottom:857.306667pt;}
.y1b_c00306{bottom:857.693333pt;}
.y1e_c00306{bottom:857.893333pt;}
.y19_c00306{bottom:873.106667pt;}
.y17_c00306{bottom:874.066667pt;}
.y16_c00306{bottom:875.026667pt;}
.y18_c00306{bottom:875.226667pt;}
.y13_c00306{bottom:890.440000pt;}
.y15_c00306{bottom:891.400000pt;}
.y11_c00306{bottom:892.360000pt;}
.y14_c00306{bottom:892.560000pt;}
.y12_c00306{bottom:893.306667pt;}
.y10_c00306{bottom:907.026667pt;}
.ye_c00306{bottom:909.306667pt;}
.yf_c00306{bottom:909.693333pt;}
.y9_c00306{bottom:925.106667pt;}
.yb_c00306{bottom:926.640000pt;}
.ya_c00306{bottom:927.026667pt;}
.yc_c00306{bottom:927.973333pt;}
.yd_c00306{bottom:928.360000pt;}
.y4_c00306{bottom:941.693333pt;}
.y7_c00306{bottom:942.440000pt;}
.y5_c00306{bottom:943.773333pt;}
.y6_c00306{bottom:944.560000pt;}
.y8_c00306{bottom:945.306667pt;}
.y3_c00306{bottom:945.693333pt;}
.y2_c00306{bottom:977.693333pt;}
.y1_c00306{bottom:978.266667pt;}
.h7_c00306{height:3.739141pt;}
.h4_c00306{height:20.466875pt;}
.h1_c00306{height:22.303646pt;}
.h5_c00306{height:27.879557pt;}
.h2_c00306{height:31.618698pt;}
.h6_c00306{height:35.357839pt;}
.h3_c00306{height:39.031380pt;}
.h8_c00306{height:42.770521pt;}
.h0_c00306{height:1186.666667pt;}
.w0_c00306{width:782.666667pt;}
.x0_c00306{left:0.000000pt;}
.x3_c00306{left:134.293333pt;}
.x96_c00306{left:135.626667pt;}
.xd3_c00306{left:137.333333pt;}
.x23_c00306{left:147.626667pt;}
.xa4_c00306{left:149.333333pt;}
.x90_c00306{left:150.666667pt;}
.x5f_c00306{left:152.373333pt;}
.xf5_c00306{left:156.373333pt;}
.xd4_c00306{left:157.706667pt;}
.x7b_c00306{left:159.040000pt;}
.x20_c00306{left:162.666667pt;}
.xf2_c00306{left:165.706667pt;}
.x89_c00306{left:168.000000pt;}
.xe4_c00306{left:169.333333pt;}
.x97_c00306{left:172.000000pt;}
.x52_c00306{left:173.333333pt;}
.x24_c00306{left:174.666667pt;}
.x4_c00306{left:176.373333pt;}
.x60_c00306{left:177.706667pt;}
.x21_c00306{left:179.040000pt;}
.xdc_c00306{left:180.000000pt;}
.xf6_c00306{left:181.333333pt;}
.x81_c00306{left:182.666667pt;}
.x12_c00306{left:183.626667pt;}
.xac_c00306{left:185.706667pt;}
.x44_c00306{left:189.333333pt;}
.x39_c00306{left:190.293333pt;}
.xe8_c00306{left:191.626667pt;}
.x25_c00306{left:192.960000pt;}
.xd8_c00306{left:194.666667pt;}
.x72_c00306{left:196.373333pt;}
.xdd_c00306{left:197.333333pt;}
.x45_c00306{left:204.373333pt;}
.x22_c00306{left:206.293333pt;}
.xc4_c00306{left:208.373333pt;}
.x26_c00306{left:209.333333pt;}
.x13_c00306{left:210.666667pt;}
.x6b_c00306{left:213.333333pt;}
.x5_c00306{left:216.960000pt;}
.x9b_c00306{left:219.626667pt;}
.xde_c00306{left:221.706667pt;}
.xb2_c00306{left:222.666667pt;}
.x82_c00306{left:225.333333pt;}
.x14_c00306{left:226.293333pt;}
.xc8_c00306{left:227.626667pt;}
.x53_c00306{left:228.960000pt;}
.x3a_c00306{left:231.040000pt;}
.xb8_c00306{left:232.000000pt;}
.x73_c00306{left:233.333333pt;}
.xc5_c00306{left:235.040000pt;}
.x61_c00306{left:237.333333pt;}
.xad_c00306{left:238.666667pt;}
.xce_c00306{left:239.626667pt;}
.xd9_c00306{left:241.333333pt;}
.x46_c00306{left:242.666667pt;}
.x15_c00306{left:244.373333pt;}
.x6c_c00306{left:245.333333pt;}
.xa5_c00306{left:246.666667pt;}
.x3b_c00306{left:247.626667pt;}
.x30_c00306{left:249.333333pt;}
.xb9_c00306{left:250.666667pt;}
.x98_c00306{left:252.960000pt;}
.x62_c00306{left:255.040000pt;}
.x54_c00306{left:256.000000pt;}
.xae_c00306{left:257.333333pt;}
.x47_c00306{left:259.040000pt;}
.xfb_c00306{left:260.000000pt;}
.xf7_c00306{left:261.333333pt;}
.xa0_c00306{left:262.293333pt;}
.xc1_c00306{left:264.000000pt;}
.x27_c00306{left:264.960000pt;}
.xe5_c00306{left:267.040000pt;}
.xb3_c00306{left:268.000000pt;}
.x99_c00306{left:269.333333pt;}
.x3c_c00306{left:272.000000pt;}
.x55_c00306{left:273.333333pt;}
.xec_c00306{left:276.000000pt;}
.x63_c00306{left:278.666667pt;}
.x6_c00306{left:280.000000pt;}
.xba_c00306{left:281.333333pt;}
.x48_c00306{left:283.040000pt;}
.x9c_c00306{left:284.373333pt;}
.x91_c00306{left:286.666667pt;}
.x74_c00306{left:289.333333pt;}
.x6d_c00306{left:291.040000pt;}
.xc9_c00306{left:292.000000pt;}
.x31_c00306{left:292.960000pt;}
.xd5_c00306{left:294.666667pt;}
.xfc_c00306{left:296.960000pt;}
.x7_c00306{left:302.666667pt;}
.x3d_c00306{left:303.626667pt;}
.xcf_c00306{left:305.333333pt;}
.xa6_c00306{left:307.040000pt;}
.x28_c00306{left:309.333333pt;}
.xb4_c00306{left:310.666667pt;}
.x56_c00306{left:312.000000pt;}
.x6e_c00306{left:312.960000pt;}
.x8a_c00306{left:317.333333pt;}
.x16_c00306{left:320.000000pt;}
.xca_c00306{left:322.666667pt;}
.xd0_c00306{left:323.626667pt;}
.xdf_c00306{left:324.960000pt;}
.x49_c00306{left:327.626667pt;}
.xbb_c00306{left:330.293333pt;}
.xc2_c00306{left:332.000000pt;}
.xf8_c00306{left:334.293333pt;}
.x17_c00306{left:337.706667pt;}
.xaf_c00306{left:340.000000pt;}
.x32_c00306{left:343.626667pt;}
.x8_c00306{left:347.626667pt;}
.x75_c00306{left:349.333333pt;}
.x57_c00306{left:352.000000pt;}
.xe0_c00306{left:353.706667pt;}
.x4a_c00306{left:355.040000pt;}
.x1_c00306{left:357.333333pt;}
.x18_c00306{left:360.000000pt;}
.xef_c00306{left:363.240000pt;}
.x9a_c00306{left:364.573333pt;}
.x7c_c00306{left:366.666667pt;}
.x64_c00306{left:367.626667pt;}
.x29_c00306{left:369.333333pt;}
.x9d_c00306{left:371.040000pt;}
.xf9_c00306{left:372.000000pt;}
.x9_c00306{left:374.666667pt;}
.x4b_c00306{left:379.040000pt;}
.x3e_c00306{left:380.000000pt;}
.x83_c00306{left:385.706667pt;}
.xbc_c00306{left:386.666667pt;}
.x92_c00306{left:390.293333pt;}
.x2a_c00306{left:392.000000pt;}
.x76_c00306{left:393.706667pt;}
.xf3_c00306{left:394.666667pt;}
.x7d_c00306{left:396.960000pt;}
.xa1_c00306{left:398.666667pt;}
.xe9_c00306{left:400.373333pt;}
.x65_c00306{left:403.040000pt;}
.x33_c00306{left:404.000000pt;}
.xb0_c00306{left:404.960000pt;}
.x93_c00306{left:406.293333pt;}
.x3f_c00306{left:408.000000pt;}
.xcc_c00306{left:408.960000pt;}
.x58_c00306{left:411.040000pt;}
.xcb_c00306{left:412.000000pt;}
.xa_c00306{left:414.666667pt;}
.xda_c00306{left:415.626667pt;}
.xa2_c00306{left:416.960000pt;}
.xe6_c00306{left:418.666667pt;}
.x19_c00306{left:421.333333pt;}
.x34_c00306{left:422.666667pt;}
.x2b_c00306{left:425.706667pt;}
.xe1_c00306{left:428.373333pt;}
.xb_c00306{left:430.666667pt;}
.xd1_c00306{left:432.000000pt;}
.xa3_c00306{left:433.333333pt;}
.x66_c00306{left:434.666667pt;}
.xcd_c00306{left:436.000000pt;}
.x4c_c00306{left:438.666667pt;}
.xf0_c00306{left:439.626667pt;}
.x59_c00306{left:443.626667pt;}
.x6f_c00306{left:445.333333pt;}
.x8b_c00306{left:446.666667pt;}
.xb5_c00306{left:448.960000pt;}
.x2c_c00306{left:451.040000pt;}
.xa7_c00306{left:452.000000pt;}
.x84_c00306{left:452.960000pt;}
.x40_c00306{left:454.666667pt;}
.x7e_c00306{left:456.000000pt;}
.x9e_c00306{left:458.293333pt;}
.x8c_c00306{left:461.333333pt;}
.xbd_c00306{left:462.293333pt;}
.xc_c00306{left:464.373333pt;}
.x1a_c00306{left:468.373333pt;}
.xc6_c00306{left:472.000000pt;}
.xb6_c00306{left:473.333333pt;}
.x4d_c00306{left:475.040000pt;}
.xb1_c00306{left:476.000000pt;}
.x77_c00306{left:477.333333pt;}
.x5a_c00306{left:478.666667pt;}
.xf4_c00306{left:479.626667pt;}
.x9f_c00306{left:481.333333pt;}
.xa8_c00306{left:482.666667pt;}
.xbe_c00306{left:484.000000pt;}
.x8d_c00306{left:486.293333pt;}
.x67_c00306{left:489.333333pt;}
.x94_c00306{left:491.040000pt;}
.x70_c00306{left:492.373333pt;}
.xed_c00306{left:493.333333pt;}
.x7f_c00306{left:494.666667pt;}
.xea_c00306{left:496.000000pt;}
.x1b_c00306{left:497.706667pt;}
.x35_c00306{left:499.040000pt;}
.xd_c00306{left:500.000000pt;}
.x68_c00306{left:501.706667pt;}
.x85_c00306{left:504.373333pt;}
.xa9_c00306{left:508.373333pt;}
.x41_c00306{left:509.706667pt;}
.x2d_c00306{left:510.666667pt;}
.xf1_c00306{left:513.706667pt;}
.x5b_c00306{left:519.040000pt;}
.x1c_c00306{left:520.000000pt;}
.xe_c00306{left:522.666667pt;}
.x78_c00306{left:523.626667pt;}
.xe2_c00306{left:524.960000pt;}
.x69_c00306{left:532.373333pt;}
.x95_c00306{left:537.333333pt;}
.xeb_c00306{left:538.666667pt;}
.x79_c00306{left:540.373333pt;}
.x36_c00306{left:542.666667pt;}
.x8e_c00306{left:544.373333pt;}
.x4e_c00306{left:548.000000pt;}
.xf_c00306{left:550.666667pt;}
.x7a_c00306{left:552.000000pt;}
.xe3_c00306{left:553.333333pt;}
.x1d_c00306{left:554.666667pt;}
.xb7_c00306{left:556.573333pt;}
.x86_c00306{left:557.706667pt;}
.x37_c00306{left:559.040000pt;}
.xc7_c00306{left:560.000000pt;}
.x4f_c00306{left:562.666667pt;}
.xfa_c00306{left:563.800000pt;}
.x42_c00306{left:565.333333pt;}
.x8f_c00306{left:566.666667pt;}
.x10_c00306{left:567.626667pt;}
.x5c_c00306{left:573.333333pt;}
.xbf_c00306{left:574.666667pt;}
.x50_c00306{left:577.706667pt;}
.xd2_c00306{left:578.666667pt;}
.x1e_c00306{left:580.373333pt;}
.x38_c00306{left:582.293333pt;}
.xd6_c00306{left:583.240000pt;}
.xee_c00306{left:585.706667pt;}
.xdb_c00306{left:586.666667pt;}
.xaa_c00306{left:587.626667pt;}
.xc3_c00306{left:589.333333pt;}
.x5d_c00306{left:590.666667pt;}
.x2e_c00306{left:592.000000pt;}
.x87_c00306{left:594.666667pt;}
.x43_c00306{left:596.000000pt;}
.x71_c00306{left:597.333333pt;}
.x6a_c00306{left:600.000000pt;}
.xe7_c00306{left:605.706667pt;}
.xab_c00306{left:610.666667pt;}
.x88_c00306{left:612.000000pt;}
.x11_c00306{left:617.333333pt;}
.x1f_c00306{left:619.040000pt;}
.xc0_c00306{left:621.706667pt;}
.x51_c00306{left:624.960000pt;}
.x2_c00306{left:626.293333pt;}
.x5e_c00306{left:627.626667pt;}
.x80_c00306{left:629.333333pt;}
.x2f_c00306{left:633.333333pt;}
.xd7_c00306{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3e00a6abbbc8f2505e400af9.woff2')format("woff");}.ff1_c00307{font-family:ff1_c00307;line-height:1.688965;font-style: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.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m68_c00307{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mb_c00307{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m45_c00307{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m6e_c00307{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.m47_c00307{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m69_c00307{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.ma_c00307{transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);}
.m6a_c00307{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m63_c00307{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mf1_c00307{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.ma9_c00307{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mc1_c00307{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.ma4_c00307{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m8d_c00307{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m7f_c00307{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mf2_c00307{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.mac_c00307{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.me9_c00307{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.me4_c00307{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mc3_c00307{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.mb6_c00307{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mff_c00307{transform:matrix(0.409509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409509,0.000000,0.000000,0.250000,0,0);}
.me1_c00307{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m9c_c00307{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m4f_c00307{transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);}
.m6d_c00307{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.mc4_c00307{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mdd_c00307{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m7e_c00307{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mf3_c00307{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.mfb_c00307{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.mb5_c00307{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m5a_c00307{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m5e_c00307{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.md3_c00307{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m100_c00307{transform:matrix(0.422163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422163,0.000000,0.000000,0.250000,0,0);}
.m1a_c00307{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.mfe_c00307{transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);}
.m43_c00307{transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);}
.m83_c00307{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m2b_c00307{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.mc_c00307{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.mb1_c00307{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mc0_c00307{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.md5_c00307{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m37_c00307{transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);}
.m97_c00307{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m5d_c00307{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mde_c00307{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m39_c00307{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.mcc_c00307{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m7_c00307{transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);}
.mb8_c00307{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m46_c00307{transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);}
.m35_c00307{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m4_c00307{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m3d_c00307{transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);}
.ma3_c00307{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m7a_c00307{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m74_c00307{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m8f_c00307{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.mf7_c00307{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m9f_c00307{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.mef_c00307{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.mb0_c00307{transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);}
.maa_c00307{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m94_c00307{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.mbc_c00307{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.mb4_c00307{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.mad_c00307{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.md1_c00307{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mf6_c00307{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m10_c00307{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m3a_c00307{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m1d_c00307{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.mc7_c00307{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m92_c00307{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.mcf_c00307{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.mf0_c00307{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m54_c00307{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.mbf_c00307{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m66_c00307{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m23_c00307{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m11_c00307{transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);}
.m15_c00307{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.mda_c00307{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m28_c00307{transform:matrix(0.477206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477206,0.000000,0.000000,0.250000,0,0);}
.m8_c00307{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m51_c00307{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.m5f_c00307{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mf8_c00307{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.m48_c00307{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m3c_c00307{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.md2_c00307{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.mb3_c00307{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m3f_c00307{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m91_c00307{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m17_c00307{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m7c_c00307{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.me8_c00307{transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);}
.m24_c00307{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);}
.me0_c00307{transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);}
.me3_c00307{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mb2_c00307{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.md0_c00307{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m16_c00307{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m6c_c00307{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m36_c00307{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m1f_c00307{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m88_c00307{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m34_c00307{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m60_c00307{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m2d_c00307{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m9b_c00307{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.mcd_c00307{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m77_c00307{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m70_c00307{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.mf9_c00307{transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);}
.m80_c00307{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m8c_c00307{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m33_c00307{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.mbb_c00307{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m3_c00307{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_c00307{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.ma6_c00307{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.ma8_c00307{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m57_c00307{transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);}
.m8b_c00307{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.me_c00307{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.m1e_c00307{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);}
.mc6_c00307{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.ma0_c00307{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mc8_c00307{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mbe_c00307{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m49_c00307{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m8e_c00307{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m99_c00307{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m79_c00307{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m67_c00307{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m65_c00307{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m41_c00307{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m5c_c00307{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mb7_c00307{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.md6_c00307{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m20_c00307{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.ma5_c00307{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m9e_c00307{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.md9_c00307{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);}
.me7_c00307{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m27_c00307{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.mea_c00307{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.md8_c00307{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mdf_c00307{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m75_c00307{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m64_c00307{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mec_c00307{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mfc_c00307{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.mca_c00307{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m86_c00307{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.ma1_c00307{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m87_c00307{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.md7_c00307{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m85_c00307{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m7b_c00307{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m2e_c00307{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m62_c00307{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m82_c00307{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m4d_c00307{transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);}
.mab_c00307{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mb9_c00307{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m9a_c00307{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m84_c00307{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m52_c00307{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m8a_c00307{transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);}
.m55_c00307{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.mc5_c00307{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m38_c00307{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.me2_c00307{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m76_c00307{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m4b_c00307{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m6f_c00307{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mba_c00307{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.me6_c00307{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.mf5_c00307{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.me5_c00307{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m2c_c00307{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m93_c00307{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.m42_c00307{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.md_c00307{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.mce_c00307{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m1c_c00307{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m98_c00307{transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);}
.meb_c00307{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.m5_c00307{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m9d_c00307{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mfa_c00307{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m2a_c00307{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.m29_c00307{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m72_c00307{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);}
.md4_c00307{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m90_c00307{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.m53_c00307{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m7d_c00307{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m73_c00307{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m1_c00307{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m22_c00307{transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);}
.m81_c00307{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mf4_c00307{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.m4e_c00307{transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);}
.m19_c00307{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m3b_c00307{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m6_c00307{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);}
.m44_c00307{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.m2f_c00307{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m4c_c00307{transform:matrix(0.636029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636029,0.000000,0.000000,0.250000,0,0);}
.m1b_c00307{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m58_c00307{transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);}
.m13_c00307{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m6b_c00307{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m4a_c00307{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m12_c00307{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m21_c00307{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m31_c00307{transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);}
.mdc_c00307{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m59_c00307{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m89_c00307{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mee_c00307{transform:matrix(0.669412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669412,0.000000,0.000000,0.250000,0,0);}
.m30_c00307{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.mdb_c00307{transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);}
.mf_c00307{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m18_c00307{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mc9_c00307{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m50_c00307{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m26_c00307{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);}
.ma7_c00307{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.maf_c00307{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m25_c00307{transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);}
.mfd_c00307{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mae_c00307{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m56_c00307{transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);}
.ma2_c00307{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.med_c00307{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m78_c00307{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mbd_c00307{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m95_c00307{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m96_c00307{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mc2_c00307{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m71_c00307{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.mcb_c00307{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m61_c00307{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m3e_c00307{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m40_c00307{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.m2_c00307{transform:matrix(1.123348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.123348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.123348,0.000000,0.000000,0.250000,0,0);}
.m9_c00307{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m32_c00307{transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);}
.m5b_c00307{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,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:-5.489165px;}
.ws1_c00307{word-spacing:0.000000px;}
.fc0_c00307{color:transparent;}
.fs7_c00307{font-size:3.420000px;}
.fs2_c00307{font-size:13.620000px;}
.fs6_c00307{font-size:18.720000px;}
.fs1_c00307{font-size:20.400000px;}
.fs3_c00307{font-size:25.500000px;}
.fs4_c00307{font-size:28.920000px;}
.fs5_c00307{font-size:32.340000px;}
.fs0_c00307{font-size:35.700000px;}
.fs8_c00307{font-size:39.120000px;}
.y0_c00307{bottom:0.000000px;}
.yda_c00307{bottom:248.745000px;}
.yd9_c00307{bottom:249.180000px;}
.yd6_c00307{bottom:250.245000px;}
.yd8_c00307{bottom:251.130000px;}
.yd7_c00307{bottom:252.405000px;}
.yd5_c00307{bottom:269.745000px;}
.yd4_c00307{bottom:270.630000px;}
.yd2_c00307{bottom:271.905000px;}
.yd3_c00307{bottom:272.130000px;}
.yd1_c00307{bottom:288.825000px;}
.ycd_c00307{bottom:290.325000px;}
.ycf_c00307{bottom:290.745000px;}
.ycc_c00307{bottom:291.405000px;}
.yce_c00307{bottom:291.630000px;}
.yd0_c00307{bottom:292.905000px;}
.yca_c00307{bottom:308.970000px;}
.yc8_c00307{bottom:310.245000px;}
.ycb_c00307{bottom:310.905000px;}
.yc6_c00307{bottom:311.130000px;}
.yc9_c00307{bottom:311.325000px;}
.yc7_c00307{bottom:312.405000px;}
.yc4_c00307{bottom:329.325000px;}
.yc5_c00307{bottom:329.745000px;}
.yc3_c00307{bottom:331.470000px;}
.yc2_c00307{bottom:331.905000px;}
.yc1_c00307{bottom:346.905000px;}
.ybe_c00307{bottom:347.970000px;}
.ybf_c00307{bottom:349.245000px;}
.yc0_c00307{bottom:351.405000px;}
.ybd_c00307{bottom:369.825000px;}
.yb9_c00307{bottom:370.905000px;}
.ybb_c00307{bottom:371.130000px;}
.ybc_c00307{bottom:371.970000px;}
.yba_c00307{bottom:372.405000px;}
.yb8_c00307{bottom:388.245000px;}
.yb6_c00307{bottom:388.470000px;}
.yb4_c00307{bottom:389.745000px;}
.yb5_c00307{bottom:390.405000px;}
.yb2_c00307{bottom:390.630000px;}
.yb3_c00307{bottom:390.825000px;}
.yb7_c00307{bottom:391.470000px;}
.yb1_c00307{bottom:391.905000px;}
.yaf_c00307{bottom:407.745000px;}
.yb0_c00307{bottom:409.905000px;}
.yae_c00307{bottom:411.405000px;}
.yad_c00307{bottom:430.905000px;}
.yab_c00307{bottom:448.245000px;}
.yac_c00307{bottom:448.905000px;}
.ya9_c00307{bottom:450.405000px;}
.yaa_c00307{bottom:450.630000px;}
.ya7_c00307{bottom:467.550000px;}
.ya4_c00307{bottom:467.745000px;}
.ya6_c00307{bottom:467.970000px;}
.ya8_c00307{bottom:468.630000px;}
.ya3_c00307{bottom:469.245000px;}
.ya5_c00307{bottom:469.470000px;}
.ya2_c00307{bottom:469.905000px;}
.y9f_c00307{bottom:487.245000px;}
.y9e_c00307{bottom:488.745000px;}
.ya0_c00307{bottom:489.405000px;}
.ya1_c00307{bottom:489.630000px;}
.y9d_c00307{bottom:490.905000px;}
.y9c_c00307{bottom:505.905000px;}
.y98_c00307{bottom:506.745000px;}
.y9b_c00307{bottom:507.825000px;}
.y99_c00307{bottom:508.905000px;}
.y9a_c00307{bottom:509.130000px;}
.y97_c00307{bottom:526.245000px;}
.y96_c00307{bottom:527.325000px;}
.y93_c00307{bottom:527.745000px;}
.y94_c00307{bottom:528.405000px;}
.y92_c00307{bottom:528.630000px;}
.y95_c00307{bottom:529.470000px;}
.y91_c00307{bottom:529.905000px;}
.y90_c00307{bottom:547.245000px;}
.y8f_c00307{bottom:548.130000px;}
.y8e_c00307{bottom:549.405000px;}
.y8b_c00307{bottom:566.745000px;}
.y8d_c00307{bottom:567.630000px;}
.y8c_c00307{bottom:568.905000px;}
.y87_c00307{bottom:584.745000px;}
.y88_c00307{bottom:586.245000px;}
.y89_c00307{bottom:587.130000px;}
.y8a_c00307{bottom:587.325000px;}
.y86_c00307{bottom:588.405000px;}
.y83_c00307{bottom:605.745000px;}
.y85_c00307{bottom:606.630000px;}
.y84_c00307{bottom:607.905000px;}
.y82_c00307{bottom:624.825000px;}
.y81_c00307{bottom:625.245000px;}
.y7e_c00307{bottom:626.745000px;}
.y7f_c00307{bottom:627.405000px;}
.y80_c00307{bottom:627.630000px;}
.y7c_c00307{bottom:644.745000px;}
.y7d_c00307{bottom:645.630000px;}
.y7a_c00307{bottom:645.825000px;}
.y77_c00307{bottom:646.245000px;}
.y7b_c00307{bottom:646.905000px;}
.y79_c00307{bottom:647.130000px;}
.y78_c00307{bottom:648.405000px;}
.y73_c00307{bottom:664.245000px;}
.y75_c00307{bottom:665.745000px;}
.y74_c00307{bottom:666.405000px;}
.y76_c00307{bottom:666.630000px;}
.y72_c00307{bottom:667.905000px;}
.y6f_c00307{bottom:682.905000px;}
.y70_c00307{bottom:685.245000px;}
.y71_c00307{bottom:686.130000px;}
.y6e_c00307{bottom:687.405000px;}
.y6a_c00307{bottom:704.325000px;}
.y6d_c00307{bottom:704.745000px;}
.y6c_c00307{bottom:705.630000px;}
.y69_c00307{bottom:706.470000px;}
.y6b_c00307{bottom:706.905000px;}
.y68_c00307{bottom:721.905000px;}
.y64_c00307{bottom:724.245000px;}
.y66_c00307{bottom:724.905000px;}
.y65_c00307{bottom:725.130000px;}
.y67_c00307{bottom:725.970000px;}
.y63_c00307{bottom:726.405000px;}
.y62_c00307{bottom:745.470000px;}
.y61_c00307{bottom:745.905000px;}
.y5e_c00307{bottom:762.405000px;}
.y5d_c00307{bottom:763.245000px;}
.y60_c00307{bottom:764.130000px;}
.y5c_c00307{bottom:765.405000px;}
.y5f_c00307{bottom:766.470000px;}
.y5b_c00307{bottom:781.905000px;}
.y5a_c00307{bottom:782.745000px;}
.y58_c00307{bottom:784.905000px;}
.y57_c00307{bottom:785.130000px;}
.y59_c00307{bottom:785.970000px;}
.y56_c00307{bottom:786.405000px;}
.y54_c00307{bottom:802.245000px;}
.y52_c00307{bottom:803.325000px;}
.y53_c00307{bottom:804.405000px;}
.y55_c00307{bottom:805.470000px;}
.y4d_c00307{bottom:823.245000px;}
.y51_c00307{bottom:823.905000px;}
.y50_c00307{bottom:824.130000px;}
.y4f_c00307{bottom:825.405000px;}
.y4e_c00307{bottom:825.420000px;}
.y4b_c00307{bottom:853.470000px;}
.y4a_c00307{bottom:854.550000px;}
.y4c_c00307{bottom:856.050000px;}
.y48_c00307{bottom:856.470000px;}
.y47_c00307{bottom:856.695000px;}
.y49_c00307{bottom:857.550000px;}
.y42_c00307{bottom:869.325000px;}
.y45_c00307{bottom:869.550000px;}
.y43_c00307{bottom:870.405000px;}
.y46_c00307{bottom:871.050000px;}
.y44_c00307{bottom:871.470000px;}
.y41_c00307{bottom:872.550000px;}
.y3f_c00307{bottom:883.905000px;}
.y40_c00307{bottom:885.630000px;}
.y3e_c00307{bottom:886.050000px;}
.y3a_c00307{bottom:898.470000px;}
.y3c_c00307{bottom:898.905000px;}
.y3d_c00307{bottom:899.970000px;}
.y3b_c00307{bottom:901.050000px;}
.y36_c00307{bottom:912.825000px;}
.y37_c00307{bottom:913.470000px;}
.y39_c00307{bottom:913.905000px;}
.y38_c00307{bottom:916.050000px;}
.y34_c00307{bottom:927.825000px;}
.y35_c00307{bottom:928.050000px;}
.y31_c00307{bottom:928.905000px;}
.y33_c00307{bottom:929.970000px;}
.y32_c00307{bottom:930.195000px;}
.y30_c00307{bottom:931.050000px;}
.y2e_c00307{bottom:943.905000px;}
.y2c_c00307{bottom:944.130000px;}
.y2f_c00307{bottom:944.970000px;}
.y2d_c00307{bottom:946.050000px;}
.y26_c00307{bottom:956.970000px;}
.y2b_c00307{bottom:957.405000px;}
.y28_c00307{bottom:957.825000px;}
.y27_c00307{bottom:958.905000px;}
.y29_c00307{bottom:959.970000px;}
.y2a_c00307{bottom:960.195000px;}
.y24_c00307{bottom:972.405000px;}
.y23_c00307{bottom:972.825000px;}
.y25_c00307{bottom:974.970000px;}
.y1d_c00307{bottom:986.550000px;}
.y21_c00307{bottom:987.405000px;}
.y1f_c00307{bottom:988.905000px;}
.y22_c00307{bottom:989.130000px;}
.y20_c00307{bottom:989.550000px;}
.y1e_c00307{bottom:989.970000px;}
.y1c_c00307{bottom:1002.405000px;}
.y1b_c00307{bottom:1002.825000px;}
.y18_c00307{bottom:1003.470000px;}
.y1a_c00307{bottom:1004.550000px;}
.y19_c00307{bottom:1005.195000px;}
.y13_c00307{bottom:1016.550000px;}
.y15_c00307{bottom:1017.405000px;}
.y16_c00307{bottom:1018.050000px;}
.y17_c00307{bottom:1018.470000px;}
.y14_c00307{bottom:1019.550000px;}
.y12_c00307{bottom:1032.405000px;}
.y11_c00307{bottom:1034.550000px;}
.ye_c00307{bottom:1045.470000px;}
.yd_c00307{bottom:1045.905000px;}
.yb_c00307{bottom:1046.130000px;}
.yc_c00307{bottom:1046.970000px;}
.y10_c00307{bottom:1047.195000px;}
.yf_c00307{bottom:1048.050000px;}
.ya_c00307{bottom:1059.825000px;}
.y8_c00307{bottom:1060.905000px;}
.y9_c00307{bottom:1061.325000px;}
.y6_c00307{bottom:1061.970000px;}
.y3_c00307{bottom:1062.195000px;}
.y5_c00307{bottom:1062.405000px;}
.y7_c00307{bottom:1063.050000px;}
.y4_c00307{bottom:1063.470000px;}
.y1_c00307{bottom:1097.745000px;}
.y2_c00307{bottom:1099.050000px;}
.h8_c00307{height:4.206533px;}
.h3_c00307{height:16.752334px;}
.h7_c00307{height:23.025234px;}
.h2_c00307{height:25.091602px;}
.h4_c00307{height:31.364502px;}
.h5_c00307{height:35.571035px;}
.h6_c00307{height:39.777568px;}
.h1_c00307{height:43.910303px;}
.h9_c00307{height:48.116836px;}
.h0_c00307{height:1335.000000px;}
.w0_c00307{width:880.500000px;}
.x0_c00307{left:0.000000px;}
.x10c_c00307{left:148.920000px;}
.xf5_c00307{left:150.000000px;}
.xa3_c00307{left:151.500000px;}
.x7a_c00307{left:153.420000px;}
.x1_c00307{left:154.500000px;}
.x45_c00307{left:156.420000px;}
.x6e_c00307{left:165.000000px;}
.x46_c00307{left:166.500000px;}
.x10_c00307{left:168.000000px;}
.x3_c00307{left:169.080000px;}
.xe1_c00307{left:171.420000px;}
.xea_c00307{left:174.420000px;}
.x10d_c00307{left:177.000000px;}
.xfc_c00307{left:178.920000px;}
.xb5_c00307{left:180.420000px;}
.xd1_c00307{left:181.920000px;}
.x1e_c00307{left:183.420000px;}
.x3d_c00307{left:184.500000px;}
.x4_c00307{left:186.000000px;}
.x7b_c00307{left:187.920000px;}
.xed_c00307{left:189.000000px;}
.x2b_c00307{left:190.500000px;}
.x50_c00307{left:193.080000px;}
.x8e_c00307{left:194.580000px;}
.x9a_c00307{left:196.920000px;}
.xe6_c00307{left:198.420000px;}
.xe2_c00307{left:199.920000px;}
.xeb_c00307{left:201.420000px;}
.x2c_c00307{left:202.500000px;}
.x51_c00307{left:205.500000px;}
.xac_c00307{left:207.420000px;}
.x1f_c00307{left:210.000000px;}
.x47_c00307{left:211.500000px;}
.x60_c00307{left:215.580000px;}
.x85_c00307{left:217.500000px;}
.x67_c00307{left:219.420000px;}
.x20_c00307{left:220.500000px;}
.x54_c00307{left:221.580000px;}
.xb6_c00307{left:225.420000px;}
.x3a_c00307{left:226.500000px;}
.x7c_c00307{left:228.000000px;}
.xdc_c00307{left:229.500000px;}
.x11_c00307{left:231.000000px;}
.x5_c00307{left:235.080000px;}
.x2d_c00307{left:236.580000px;}
.x48_c00307{left:238.920000px;}
.x95_c00307{left:240.000000px;}
.x6f_c00307{left:241.920000px;}
.x52_c00307{left:244.080000px;}
.xad_c00307{left:246.420000px;}
.xd2_c00307{left:247.500000px;}
.x86_c00307{left:251.145000px;}
.xb7_c00307{left:252.420000px;}
.x70_c00307{left:253.920000px;}
.x3b_c00307{left:256.080000px;}
.x30_c00307{left:258.000000px;}
.x96_c00307{left:259.920000px;}
.xa4_c00307{left:261.000000px;}
.x12_c00307{left:262.080000px;}
.x3e_c00307{left:263.580000px;}
.x2e_c00307{left:265.080000px;}
.xc7_c00307{left:267.420000px;}
.x4a_c00307{left:268.500000px;}
.x21_c00307{left:271.500000px;}
.x61_c00307{left:273.420000px;}
.x53_c00307{left:277.080000px;}
.x6_c00307{left:279.000000px;}
.x49_c00307{left:280.500000px;}
.x8f_c00307{left:281.580000px;}
.x3c_c00307{left:283.500000px;}
.x62_c00307{left:285.000000px;}
.x108_c00307{left:286.920000px;}
.x55_c00307{left:288.000000px;}
.x102_c00307{left:291.000000px;}
.xb8_c00307{left:294.420000px;}
.x71_c00307{left:298.500000px;}
.xae_c00307{left:304.500000px;}
.x13_c00307{left:307.080000px;}
.x2f_c00307{left:309.000000px;}
.x7d_c00307{left:310.275000px;}
.xf1_c00307{left:311.580000px;}
.x7_c00307{left:316.920000px;}
.x63_c00307{left:319.500000px;}
.x31_c00307{left:321.000000px;}
.x56_c00307{left:322.080000px;}
.x9b_c00307{left:325.500000px;}
.xee_c00307{left:327.000000px;}
.x113_c00307{left:330.000000px;}
.xb9_c00307{left:331.500000px;}
.x8_c00307{left:333.000000px;}
.x109_c00307{left:336.000000px;}
.x14_c00307{left:337.080000px;}
.x72_c00307{left:339.000000px;}
.xaf_c00307{left:340.500000px;}
.x22_c00307{left:342.420000px;}
.xa5_c00307{left:343.500000px;}
.xfd_c00307{left:345.000000px;}
.xc8_c00307{left:348.000000px;}
.x4b_c00307{left:349.080000px;}
.x3f_c00307{left:354.000000px;}
.x32_c00307{left:355.080000px;}
.x10a_c00307{left:357.000000px;}
.x57_c00307{left:358.920000px;}
.x23_c00307{left:360.000000px;}
.x15_c00307{left:361.500000px;}
.xc9_c00307{left:362.580000px;}
.xe7_c00307{left:364.080000px;}
.xf6_c00307{left:366.000000px;}
.x73_c00307{left:367.500000px;}
.x103_c00307{left:369.420000px;}
.x87_c00307{left:372.000000px;}
.x74_c00307{left:373.920000px;}
.x58_c00307{left:376.500000px;}
.xd3_c00307{left:377.580000px;}
.xd7_c00307{left:379.920000px;}
.xdd_c00307{left:381.000000px;}
.xa6_c00307{left:382.500000px;}
.x9_c00307{left:387.000000px;}
.xba_c00307{left:388.500000px;}
.x64_c00307{left:391.500000px;}
.x16_c00307{left:394.080000px;}
.xd4_c00307{left:396.420000px;}
.xf7_c00307{left:398.580000px;}
.xb0_c00307{left:400.500000px;}
.x2_c00307{left:402.000000px;}
.x40_c00307{left:403.080000px;}
.x7e_c00307{left:406.500000px;}
.x90_c00307{left:407.580000px;}
.x17_c00307{left:410.145000px;}
.x33_c00307{left:412.500000px;}
.x10b_c00307{left:414.855000px;}
.xf2_c00307{left:417.000000px;}
.xbb_c00307{left:418.080000px;}
.x65_c00307{left:421.920000px;}
.x104_c00307{left:424.500000px;}
.xde_c00307{left:427.080000px;}
.x24_c00307{left:428.145000px;}
.x100_c00307{left:430.500000px;}
.x114_c00307{left:432.000000px;}
.x4c_c00307{left:433.080000px;}
.xec_c00307{left:435.420000px;}
.xa_c00307{left:437.580000px;}
.x59_c00307{left:438.645000px;}
.xa7_c00307{left:443.580000px;}
.x91_c00307{left:445.500000px;}
.x66_c00307{left:448.500000px;}
.x115_c00307{left:450.000000px;}
.x68_c00307{left:451.080000px;}
.xe4_c00307{left:453.000000px;}
.x7f_c00307{left:455.580000px;}
.x4d_c00307{left:458.580000px;}
.xc1_c00307{left:460.500000px;}
.xf3_c00307{left:462.000000px;}
.xdf_c00307{left:463.920000px;}
.x75_c00307{left:466.080000px;}
.x88_c00307{left:468.420000px;}
.x9c_c00307{left:471.000000px;}
.x25_c00307{left:472.920000px;}
.x69_c00307{left:475.920000px;}
.x34_c00307{left:477.000000px;}
.xc2_c00307{left:478.080000px;}
.xe3_c00307{left:481.920000px;}
.x5a_c00307{left:484.920000px;}
.x80_c00307{left:487.500000px;}
.xe0_c00307{left:488.580000px;}
.x26_c00307{left:490.080000px;}
.x18_c00307{left:492.000000px;}
.xb_c00307{left:493.080000px;}
.xca_c00307{left:496.500000px;}
.x97_c00307{left:498.000000px;}
.x10e_c00307{left:499.500000px;}
.xc_c00307{left:502.500000px;}
.x6a_c00307{left:504.420000px;}
.x105_c00307{left:507.000000px;}
.x76_c00307{left:508.500000px;}
.x9d_c00307{left:510.000000px;}
.xcb_c00307{left:513.420000px;}
.xef_c00307{left:514.500000px;}
.x27_c00307{left:516.000000px;}
.x35_c00307{left:517.500000px;}
.x6b_c00307{left:519.645000px;}
.xe8_c00307{left:521.580000px;}
.x5b_c00307{left:525.855000px;}
.xb1_c00307{left:527.580000px;}
.x77_c00307{left:529.920000px;}
.x4e_c00307{left:534.420000px;}
.xbc_c00307{left:535.920000px;}
.xd5_c00307{left:537.000000px;}
.x89_c00307{left:538.920000px;}
.xcc_c00307{left:541.080000px;}
.xc3_c00307{left:543.000000px;}
.x5c_c00307{left:544.080000px;}
.x98_c00307{left:546.000000px;}
.x28_c00307{left:547.920000px;}
.x10f_c00307{left:552.420000px;}
.xfe_c00307{left:553.500000px;}
.xa8_c00307{left:554.580000px;}
.x78_c00307{left:558.000000px;}
.x19_c00307{left:560.580000px;}
.x4f_c00307{left:562.500000px;}
.xd_c00307{left:563.580000px;}
.xc4_c00307{left:566.580000px;}
.x5d_c00307{left:570.000000px;}
.xb2_c00307{left:573.000000px;}
.x41_c00307{left:574.500000px;}
.x81_c00307{left:575.580000px;}
.x110_c00307{left:579.000000px;}
.x92_c00307{left:580.920000px;}
.xd8_c00307{left:585.000000px;}
.x36_c00307{left:586.920000px;}
.xe_c00307{left:589.080000px;}
.xf8_c00307{left:591.000000px;}
.xe5_c00307{left:594.000000px;}
.xa9_c00307{left:597.000000px;}
.x9e_c00307{left:598.080000px;}
.x6c_c00307{left:599.580000px;}
.x8a_c00307{left:601.500000px;}
.xbd_c00307{left:602.580000px;}
.x37_c00307{left:605.145000px;}
.x93_c00307{left:607.500000px;}
.xe9_c00307{left:610.500000px;}
.x82_c00307{left:612.855000px;}
.xcf_c00307{left:615.000000px;}
.x8b_c00307{left:616.920000px;}
.x1a_c00307{left:618.000000px;}
.xcd_c00307{left:619.920000px;}
.xf4_c00307{left:621.000000px;}
.x42_c00307{left:622.080000px;}
.x111_c00307{left:623.580000px;}
.x99_c00307{left:625.500000px;}
.x9f_c00307{left:627.420000px;}
.x1b_c00307{left:630.000000px;}
.x101_c00307{left:631.500000px;}
.xf_c00307{left:633.000000px;}
.xd9_c00307{left:634.500000px;}
.x5e_c00307{left:637.920000px;}
.xf9_c00307{left:639.000000px;}
.xc5_c00307{left:640.500000px;}
.xaa_c00307{left:642.000000px;}
.x8c_c00307{left:643.080000px;}
.x29_c00307{left:645.000000px;}
.xce_c00307{left:646.500000px;}
.xbe_c00307{left:648.000000px;}
.x43_c00307{left:650.580000px;}
.x5f_c00307{left:655.500000px;}
.xb3_c00307{left:657.000000px;}
.x94_c00307{left:658.500000px;}
.x116_c00307{left:659.580000px;}
.x83_c00307{left:661.500000px;}
.x1c_c00307{left:664.500000px;}
.x79_c00307{left:665.580000px;}
.xa0_c00307{left:667.500000px;}
.x112_c00307{left:669.420000px;}
.xb4_c00307{left:670.500000px;}
.xab_c00307{left:672.420000px;}
.xda_c00307{left:673.500000px;}
.xc6_c00307{left:675.000000px;}
.x6d_c00307{left:681.000000px;}
.xfa_c00307{left:682.500000px;}
.xbf_c00307{left:683.580000px;}
.xa1_c00307{left:685.500000px;}
.x106_c00307{left:688.080000px;}
.x38_c00307{left:689.580000px;}
.x1d_c00307{left:692.580000px;}
.x44_c00307{left:694.500000px;}
.xff_c00307{left:696.000000px;}
.xd0_c00307{left:697.080000px;}
.xa2_c00307{left:699.420000px;}
.xd6_c00307{left:700.500000px;}
.x39_c00307{left:703.500000px;}
.xf0_c00307{left:704.580000px;}
.x2a_c00307{left:706.500000px;}
.x107_c00307{left:708.420000px;}
.xc0_c00307{left:709.920000px;}
.x84_c00307{left:715.080000px;}
.xfb_c00307{left:716.580000px;}
.xdb_c00307{left:720.000000px;}
.x8d_c00307{left:723.000000px;}
@media print{
.v0_c00307{vertical-align:0.000000pt;}
.ls0_c00307{letter-spacing:0.000000pt;}
.ws0_c00307{word-spacing:-4.879258pt;}
.ws1_c00307{word-spacing:0.000000pt;}
.fs7_c00307{font-size:3.040000pt;}
.fs2_c00307{font-size:12.106667pt;}
.fs6_c00307{font-size:16.640000pt;}
.fs1_c00307{font-size:18.133333pt;}
.fs3_c00307{font-size:22.666667pt;}
.fs4_c00307{font-size:25.706667pt;}
.fs5_c00307{font-size:28.746667pt;}
.fs0_c00307{font-size:31.733333pt;}
.fs8_c00307{font-size:34.773333pt;}
.y0_c00307{bottom:0.000000pt;}
.yda_c00307{bottom:221.106667pt;}
.yd9_c00307{bottom:221.493333pt;}
.yd6_c00307{bottom:222.440000pt;}
.yd8_c00307{bottom:223.226667pt;}
.yd7_c00307{bottom:224.360000pt;}
.yd5_c00307{bottom:239.773333pt;}
.yd4_c00307{bottom:240.560000pt;}
.yd2_c00307{bottom:241.693333pt;}
.yd3_c00307{bottom:241.893333pt;}
.yd1_c00307{bottom:256.733333pt;}
.ycd_c00307{bottom:258.066667pt;}
.ycf_c00307{bottom:258.440000pt;}
.ycc_c00307{bottom:259.026667pt;}
.yce_c00307{bottom:259.226667pt;}
.yd0_c00307{bottom:260.360000pt;}
.yca_c00307{bottom:274.640000pt;}
.yc8_c00307{bottom:275.773333pt;}
.ycb_c00307{bottom:276.360000pt;}
.yc6_c00307{bottom:276.560000pt;}
.yc9_c00307{bottom:276.733333pt;}
.yc7_c00307{bottom:277.693333pt;}
.yc4_c00307{bottom:292.733333pt;}
.yc5_c00307{bottom:293.106667pt;}
.yc3_c00307{bottom:294.640000pt;}
.yc2_c00307{bottom:295.026667pt;}
.yc1_c00307{bottom:308.360000pt;}
.ybe_c00307{bottom:309.306667pt;}
.ybf_c00307{bottom:310.440000pt;}
.yc0_c00307{bottom:312.360000pt;}
.ybd_c00307{bottom:328.733333pt;}
.yb9_c00307{bottom:329.693333pt;}
.ybb_c00307{bottom:329.893333pt;}
.ybc_c00307{bottom:330.640000pt;}
.yba_c00307{bottom:331.026667pt;}
.yb8_c00307{bottom:345.106667pt;}
.yb6_c00307{bottom:345.306667pt;}
.yb4_c00307{bottom:346.440000pt;}
.yb5_c00307{bottom:347.026667pt;}
.yb2_c00307{bottom:347.226667pt;}
.yb3_c00307{bottom:347.400000pt;}
.yb7_c00307{bottom:347.973333pt;}
.yb1_c00307{bottom:348.360000pt;}
.yaf_c00307{bottom:362.440000pt;}
.yb0_c00307{bottom:364.360000pt;}
.yae_c00307{bottom:365.693333pt;}
.yad_c00307{bottom:383.026667pt;}
.yab_c00307{bottom:398.440000pt;}
.yac_c00307{bottom:399.026667pt;}
.ya9_c00307{bottom:400.360000pt;}
.yaa_c00307{bottom:400.560000pt;}
.ya7_c00307{bottom:415.600000pt;}
.ya4_c00307{bottom:415.773333pt;}
.ya6_c00307{bottom:415.973333pt;}
.ya8_c00307{bottom:416.560000pt;}
.ya3_c00307{bottom:417.106667pt;}
.ya5_c00307{bottom:417.306667pt;}
.ya2_c00307{bottom:417.693333pt;}
.y9f_c00307{bottom:433.106667pt;}
.y9e_c00307{bottom:434.440000pt;}
.ya0_c00307{bottom:435.026667pt;}
.ya1_c00307{bottom:435.226667pt;}
.y9d_c00307{bottom:436.360000pt;}
.y9c_c00307{bottom:449.693333pt;}
.y98_c00307{bottom:450.440000pt;}
.y9b_c00307{bottom:451.400000pt;}
.y99_c00307{bottom:452.360000pt;}
.y9a_c00307{bottom:452.560000pt;}
.y97_c00307{bottom:467.773333pt;}
.y96_c00307{bottom:468.733333pt;}
.y93_c00307{bottom:469.106667pt;}
.y94_c00307{bottom:469.693333pt;}
.y92_c00307{bottom:469.893333pt;}
.y95_c00307{bottom:470.640000pt;}
.y91_c00307{bottom:471.026667pt;}
.y90_c00307{bottom:486.440000pt;}
.y8f_c00307{bottom:487.226667pt;}
.y8e_c00307{bottom:488.360000pt;}
.y8b_c00307{bottom:503.773333pt;}
.y8d_c00307{bottom:504.560000pt;}
.y8c_c00307{bottom:505.693333pt;}
.y87_c00307{bottom:519.773333pt;}
.y88_c00307{bottom:521.106667pt;}
.y89_c00307{bottom:521.893333pt;}
.y8a_c00307{bottom:522.066667pt;}
.y86_c00307{bottom:523.026667pt;}
.y83_c00307{bottom:538.440000pt;}
.y85_c00307{bottom:539.226667pt;}
.y84_c00307{bottom:540.360000pt;}
.y82_c00307{bottom:555.400000pt;}
.y81_c00307{bottom:555.773333pt;}
.y7e_c00307{bottom:557.106667pt;}
.y7f_c00307{bottom:557.693333pt;}
.y80_c00307{bottom:557.893333pt;}
.y7c_c00307{bottom:573.106667pt;}
.y7d_c00307{bottom:573.893333pt;}
.y7a_c00307{bottom:574.066667pt;}
.y77_c00307{bottom:574.440000pt;}
.y7b_c00307{bottom:575.026667pt;}
.y79_c00307{bottom:575.226667pt;}
.y78_c00307{bottom:576.360000pt;}
.y73_c00307{bottom:590.440000pt;}
.y75_c00307{bottom:591.773333pt;}
.y74_c00307{bottom:592.360000pt;}
.y76_c00307{bottom:592.560000pt;}
.y72_c00307{bottom:593.693333pt;}
.y6f_c00307{bottom:607.026667pt;}
.y70_c00307{bottom:609.106667pt;}
.y71_c00307{bottom:609.893333pt;}
.y6e_c00307{bottom:611.026667pt;}
.y6a_c00307{bottom:626.066667pt;}
.y6d_c00307{bottom:626.440000pt;}
.y6c_c00307{bottom:627.226667pt;}
.y69_c00307{bottom:627.973333pt;}
.y6b_c00307{bottom:628.360000pt;}
.y68_c00307{bottom:641.693333pt;}
.y64_c00307{bottom:643.773333pt;}
.y66_c00307{bottom:644.360000pt;}
.y65_c00307{bottom:644.560000pt;}
.y67_c00307{bottom:645.306667pt;}
.y63_c00307{bottom:645.693333pt;}
.y62_c00307{bottom:662.640000pt;}
.y61_c00307{bottom:663.026667pt;}
.y5e_c00307{bottom:677.693333pt;}
.y5d_c00307{bottom:678.440000pt;}
.y60_c00307{bottom:679.226667pt;}
.y5c_c00307{bottom:680.360000pt;}
.y5f_c00307{bottom:681.306667pt;}
.y5b_c00307{bottom:695.026667pt;}
.y5a_c00307{bottom:695.773333pt;}
.y58_c00307{bottom:697.693333pt;}
.y57_c00307{bottom:697.893333pt;}
.y59_c00307{bottom:698.640000pt;}
.y56_c00307{bottom:699.026667pt;}
.y54_c00307{bottom:713.106667pt;}
.y52_c00307{bottom:714.066667pt;}
.y53_c00307{bottom:715.026667pt;}
.y55_c00307{bottom:715.973333pt;}
.y4d_c00307{bottom:731.773333pt;}
.y51_c00307{bottom:732.360000pt;}
.y50_c00307{bottom:732.560000pt;}
.y4f_c00307{bottom:733.693333pt;}
.y4e_c00307{bottom:733.706667pt;}
.y4b_c00307{bottom:758.640000pt;}
.y4a_c00307{bottom:759.600000pt;}
.y4c_c00307{bottom:760.933333pt;}
.y48_c00307{bottom:761.306667pt;}
.y47_c00307{bottom:761.506667pt;}
.y49_c00307{bottom:762.266667pt;}
.y42_c00307{bottom:772.733333pt;}
.y45_c00307{bottom:772.933333pt;}
.y43_c00307{bottom:773.693333pt;}
.y46_c00307{bottom:774.266667pt;}
.y44_c00307{bottom:774.640000pt;}
.y41_c00307{bottom:775.600000pt;}
.y3f_c00307{bottom:785.693333pt;}
.y40_c00307{bottom:787.226667pt;}
.y3e_c00307{bottom:787.600000pt;}
.y3a_c00307{bottom:798.640000pt;}
.y3c_c00307{bottom:799.026667pt;}
.y3d_c00307{bottom:799.973333pt;}
.y3b_c00307{bottom:800.933333pt;}
.y36_c00307{bottom:811.400000pt;}
.y37_c00307{bottom:811.973333pt;}
.y39_c00307{bottom:812.360000pt;}
.y38_c00307{bottom:814.266667pt;}
.y34_c00307{bottom:824.733333pt;}
.y35_c00307{bottom:824.933333pt;}
.y31_c00307{bottom:825.693333pt;}
.y33_c00307{bottom:826.640000pt;}
.y32_c00307{bottom:826.840000pt;}
.y30_c00307{bottom:827.600000pt;}
.y2e_c00307{bottom:839.026667pt;}
.y2c_c00307{bottom:839.226667pt;}
.y2f_c00307{bottom:839.973333pt;}
.y2d_c00307{bottom:840.933333pt;}
.y26_c00307{bottom:850.640000pt;}
.y2b_c00307{bottom:851.026667pt;}
.y28_c00307{bottom:851.400000pt;}
.y27_c00307{bottom:852.360000pt;}
.y29_c00307{bottom:853.306667pt;}
.y2a_c00307{bottom:853.506667pt;}
.y24_c00307{bottom:864.360000pt;}
.y23_c00307{bottom:864.733333pt;}
.y25_c00307{bottom:866.640000pt;}
.y1d_c00307{bottom:876.933333pt;}
.y21_c00307{bottom:877.693333pt;}
.y1f_c00307{bottom:879.026667pt;}
.y22_c00307{bottom:879.226667pt;}
.y20_c00307{bottom:879.600000pt;}
.y1e_c00307{bottom:879.973333pt;}
.y1c_c00307{bottom:891.026667pt;}
.y1b_c00307{bottom:891.400000pt;}
.y18_c00307{bottom:891.973333pt;}
.y1a_c00307{bottom:892.933333pt;}
.y19_c00307{bottom:893.506667pt;}
.y13_c00307{bottom:903.600000pt;}
.y15_c00307{bottom:904.360000pt;}
.y16_c00307{bottom:904.933333pt;}
.y17_c00307{bottom:905.306667pt;}
.y14_c00307{bottom:906.266667pt;}
.y12_c00307{bottom:917.693333pt;}
.y11_c00307{bottom:919.600000pt;}
.ye_c00307{bottom:929.306667pt;}
.yd_c00307{bottom:929.693333pt;}
.yb_c00307{bottom:929.893333pt;}
.yc_c00307{bottom:930.640000pt;}
.y10_c00307{bottom:930.840000pt;}
.yf_c00307{bottom:931.600000pt;}
.ya_c00307{bottom:942.066667pt;}
.y8_c00307{bottom:943.026667pt;}
.y9_c00307{bottom:943.400000pt;}
.y6_c00307{bottom:943.973333pt;}
.y3_c00307{bottom:944.173333pt;}
.y5_c00307{bottom:944.360000pt;}
.y7_c00307{bottom:944.933333pt;}
.y4_c00307{bottom:945.306667pt;}
.y1_c00307{bottom:975.773333pt;}
.y2_c00307{bottom:976.933333pt;}
.h8_c00307{height:3.739141pt;}
.h3_c00307{height:14.890964pt;}
.h7_c00307{height:20.466875pt;}
.h2_c00307{height:22.303646pt;}
.h4_c00307{height:27.879557pt;}
.h5_c00307{height:31.618698pt;}
.h6_c00307{height:35.357839pt;}
.h1_c00307{height:39.031380pt;}
.h9_c00307{height:42.770521pt;}
.h0_c00307{height:1186.666667pt;}
.w0_c00307{width:782.666667pt;}
.x0_c00307{left:0.000000pt;}
.x10c_c00307{left:132.373333pt;}
.xf5_c00307{left:133.333333pt;}
.xa3_c00307{left:134.666667pt;}
.x7a_c00307{left:136.373333pt;}
.x1_c00307{left:137.333333pt;}
.x45_c00307{left:139.040000pt;}
.x6e_c00307{left:146.666667pt;}
.x46_c00307{left:148.000000pt;}
.x10_c00307{left:149.333333pt;}
.x3_c00307{left:150.293333pt;}
.xe1_c00307{left:152.373333pt;}
.xea_c00307{left:155.040000pt;}
.x10d_c00307{left:157.333333pt;}
.xfc_c00307{left:159.040000pt;}
.xb5_c00307{left:160.373333pt;}
.xd1_c00307{left:161.706667pt;}
.x1e_c00307{left:163.040000pt;}
.x3d_c00307{left:164.000000pt;}
.x4_c00307{left:165.333333pt;}
.x7b_c00307{left:167.040000pt;}
.xed_c00307{left:168.000000pt;}
.x2b_c00307{left:169.333333pt;}
.x50_c00307{left:171.626667pt;}
.x8e_c00307{left:172.960000pt;}
.x9a_c00307{left:175.040000pt;}
.xe6_c00307{left:176.373333pt;}
.xe2_c00307{left:177.706667pt;}
.xeb_c00307{left:179.040000pt;}
.x2c_c00307{left:180.000000pt;}
.x51_c00307{left:182.666667pt;}
.xac_c00307{left:184.373333pt;}
.x1f_c00307{left:186.666667pt;}
.x47_c00307{left:188.000000pt;}
.x60_c00307{left:191.626667pt;}
.x85_c00307{left:193.333333pt;}
.x67_c00307{left:195.040000pt;}
.x20_c00307{left:196.000000pt;}
.x54_c00307{left:196.960000pt;}
.xb6_c00307{left:200.373333pt;}
.x3a_c00307{left:201.333333pt;}
.x7c_c00307{left:202.666667pt;}
.xdc_c00307{left:204.000000pt;}
.x11_c00307{left:205.333333pt;}
.x5_c00307{left:208.960000pt;}
.x2d_c00307{left:210.293333pt;}
.x48_c00307{left:212.373333pt;}
.x95_c00307{left:213.333333pt;}
.x6f_c00307{left:215.040000pt;}
.x52_c00307{left:216.960000pt;}
.xad_c00307{left:219.040000pt;}
.xd2_c00307{left:220.000000pt;}
.x86_c00307{left:223.240000pt;}
.xb7_c00307{left:224.373333pt;}
.x70_c00307{left:225.706667pt;}
.x3b_c00307{left:227.626667pt;}
.x30_c00307{left:229.333333pt;}
.x96_c00307{left:231.040000pt;}
.xa4_c00307{left:232.000000pt;}
.x12_c00307{left:232.960000pt;}
.x3e_c00307{left:234.293333pt;}
.x2e_c00307{left:235.626667pt;}
.xc7_c00307{left:237.706667pt;}
.x4a_c00307{left:238.666667pt;}
.x21_c00307{left:241.333333pt;}
.x61_c00307{left:243.040000pt;}
.x53_c00307{left:246.293333pt;}
.x6_c00307{left:248.000000pt;}
.x49_c00307{left:249.333333pt;}
.x8f_c00307{left:250.293333pt;}
.x3c_c00307{left:252.000000pt;}
.x62_c00307{left:253.333333pt;}
.x108_c00307{left:255.040000pt;}
.x55_c00307{left:256.000000pt;}
.x102_c00307{left:258.666667pt;}
.xb8_c00307{left:261.706667pt;}
.x71_c00307{left:265.333333pt;}
.xae_c00307{left:270.666667pt;}
.x13_c00307{left:272.960000pt;}
.x2f_c00307{left:274.666667pt;}
.x7d_c00307{left:275.800000pt;}
.xf1_c00307{left:276.960000pt;}
.x7_c00307{left:281.706667pt;}
.x63_c00307{left:284.000000pt;}
.x31_c00307{left:285.333333pt;}
.x56_c00307{left:286.293333pt;}
.x9b_c00307{left:289.333333pt;}
.xee_c00307{left:290.666667pt;}
.x113_c00307{left:293.333333pt;}
.xb9_c00307{left:294.666667pt;}
.x8_c00307{left:296.000000pt;}
.x109_c00307{left:298.666667pt;}
.x14_c00307{left:299.626667pt;}
.x72_c00307{left:301.333333pt;}
.xaf_c00307{left:302.666667pt;}
.x22_c00307{left:304.373333pt;}
.xa5_c00307{left:305.333333pt;}
.xfd_c00307{left:306.666667pt;}
.xc8_c00307{left:309.333333pt;}
.x4b_c00307{left:310.293333pt;}
.x3f_c00307{left:314.666667pt;}
.x32_c00307{left:315.626667pt;}
.x10a_c00307{left:317.333333pt;}
.x57_c00307{left:319.040000pt;}
.x23_c00307{left:320.000000pt;}
.x15_c00307{left:321.333333pt;}
.xc9_c00307{left:322.293333pt;}
.xe7_c00307{left:323.626667pt;}
.xf6_c00307{left:325.333333pt;}
.x73_c00307{left:326.666667pt;}
.x103_c00307{left:328.373333pt;}
.x87_c00307{left:330.666667pt;}
.x74_c00307{left:332.373333pt;}
.x58_c00307{left:334.666667pt;}
.xd3_c00307{left:335.626667pt;}
.xd7_c00307{left:337.706667pt;}
.xdd_c00307{left:338.666667pt;}
.xa6_c00307{left:340.000000pt;}
.x9_c00307{left:344.000000pt;}
.xba_c00307{left:345.333333pt;}
.x64_c00307{left:348.000000pt;}
.x16_c00307{left:350.293333pt;}
.xd4_c00307{left:352.373333pt;}
.xf7_c00307{left:354.293333pt;}
.xb0_c00307{left:356.000000pt;}
.x2_c00307{left:357.333333pt;}
.x40_c00307{left:358.293333pt;}
.x7e_c00307{left:361.333333pt;}
.x90_c00307{left:362.293333pt;}
.x17_c00307{left:364.573333pt;}
.x33_c00307{left:366.666667pt;}
.x10b_c00307{left:368.760000pt;}
.xf2_c00307{left:370.666667pt;}
.xbb_c00307{left:371.626667pt;}
.x65_c00307{left:375.040000pt;}
.x104_c00307{left:377.333333pt;}
.xde_c00307{left:379.626667pt;}
.x24_c00307{left:380.573333pt;}
.x100_c00307{left:382.666667pt;}
.x114_c00307{left:384.000000pt;}
.x4c_c00307{left:384.960000pt;}
.xec_c00307{left:387.040000pt;}
.xa_c00307{left:388.960000pt;}
.x59_c00307{left:389.906667pt;}
.xa7_c00307{left:394.293333pt;}
.x91_c00307{left:396.000000pt;}
.x66_c00307{left:398.666667pt;}
.x115_c00307{left:400.000000pt;}
.x68_c00307{left:400.960000pt;}
.xe4_c00307{left:402.666667pt;}
.x7f_c00307{left:404.960000pt;}
.x4d_c00307{left:407.626667pt;}
.xc1_c00307{left:409.333333pt;}
.xf3_c00307{left:410.666667pt;}
.xdf_c00307{left:412.373333pt;}
.x75_c00307{left:414.293333pt;}
.x88_c00307{left:416.373333pt;}
.x9c_c00307{left:418.666667pt;}
.x25_c00307{left:420.373333pt;}
.x69_c00307{left:423.040000pt;}
.x34_c00307{left:424.000000pt;}
.xc2_c00307{left:424.960000pt;}
.xe3_c00307{left:428.373333pt;}
.x5a_c00307{left:431.040000pt;}
.x80_c00307{left:433.333333pt;}
.xe0_c00307{left:434.293333pt;}
.x26_c00307{left:435.626667pt;}
.x18_c00307{left:437.333333pt;}
.xb_c00307{left:438.293333pt;}
.xca_c00307{left:441.333333pt;}
.x97_c00307{left:442.666667pt;}
.x10e_c00307{left:444.000000pt;}
.xc_c00307{left:446.666667pt;}
.x6a_c00307{left:448.373333pt;}
.x105_c00307{left:450.666667pt;}
.x76_c00307{left:452.000000pt;}
.x9d_c00307{left:453.333333pt;}
.xcb_c00307{left:456.373333pt;}
.xef_c00307{left:457.333333pt;}
.x27_c00307{left:458.666667pt;}
.x35_c00307{left:460.000000pt;}
.x6b_c00307{left:461.906667pt;}
.xe8_c00307{left:463.626667pt;}
.x5b_c00307{left:467.426667pt;}
.xb1_c00307{left:468.960000pt;}
.x77_c00307{left:471.040000pt;}
.x4e_c00307{left:475.040000pt;}
.xbc_c00307{left:476.373333pt;}
.xd5_c00307{left:477.333333pt;}
.x89_c00307{left:479.040000pt;}
.xcc_c00307{left:480.960000pt;}
.xc3_c00307{left:482.666667pt;}
.x5c_c00307{left:483.626667pt;}
.x98_c00307{left:485.333333pt;}
.x28_c00307{left:487.040000pt;}
.x10f_c00307{left:491.040000pt;}
.xfe_c00307{left:492.000000pt;}
.xa8_c00307{left:492.960000pt;}
.x78_c00307{left:496.000000pt;}
.x19_c00307{left:498.293333pt;}
.x4f_c00307{left:500.000000pt;}
.xd_c00307{left:500.960000pt;}
.xc4_c00307{left:503.626667pt;}
.x5d_c00307{left:506.666667pt;}
.xb2_c00307{left:509.333333pt;}
.x41_c00307{left:510.666667pt;}
.x81_c00307{left:511.626667pt;}
.x110_c00307{left:514.666667pt;}
.x92_c00307{left:516.373333pt;}
.xd8_c00307{left:520.000000pt;}
.x36_c00307{left:521.706667pt;}
.xe_c00307{left:523.626667pt;}
.xf8_c00307{left:525.333333pt;}
.xe5_c00307{left:528.000000pt;}
.xa9_c00307{left:530.666667pt;}
.x9e_c00307{left:531.626667pt;}
.x6c_c00307{left:532.960000pt;}
.x8a_c00307{left:534.666667pt;}
.xbd_c00307{left:535.626667pt;}
.x37_c00307{left:537.906667pt;}
.x93_c00307{left:540.000000pt;}
.xe9_c00307{left:542.666667pt;}
.x82_c00307{left:544.760000pt;}
.xcf_c00307{left:546.666667pt;}
.x8b_c00307{left:548.373333pt;}
.x1a_c00307{left:549.333333pt;}
.xcd_c00307{left:551.040000pt;}
.xf4_c00307{left:552.000000pt;}
.x42_c00307{left:552.960000pt;}
.x111_c00307{left:554.293333pt;}
.x99_c00307{left:556.000000pt;}
.x9f_c00307{left:557.706667pt;}
.x1b_c00307{left:560.000000pt;}
.x101_c00307{left:561.333333pt;}
.xf_c00307{left:562.666667pt;}
.xd9_c00307{left:564.000000pt;}
.x5e_c00307{left:567.040000pt;}
.xf9_c00307{left:568.000000pt;}
.xc5_c00307{left:569.333333pt;}
.xaa_c00307{left:570.666667pt;}
.x8c_c00307{left:571.626667pt;}
.x29_c00307{left:573.333333pt;}
.xce_c00307{left:574.666667pt;}
.xbe_c00307{left:576.000000pt;}
.x43_c00307{left:578.293333pt;}
.x5f_c00307{left:582.666667pt;}
.xb3_c00307{left:584.000000pt;}
.x94_c00307{left:585.333333pt;}
.x116_c00307{left:586.293333pt;}
.x83_c00307{left:588.000000pt;}
.x1c_c00307{left:590.666667pt;}
.x79_c00307{left:591.626667pt;}
.xa0_c00307{left:593.333333pt;}
.x112_c00307{left:595.040000pt;}
.xb4_c00307{left:596.000000pt;}
.xab_c00307{left:597.706667pt;}
.xda_c00307{left:598.666667pt;}
.xc6_c00307{left:600.000000pt;}
.x6d_c00307{left:605.333333pt;}
.xfa_c00307{left:606.666667pt;}
.xbf_c00307{left:607.626667pt;}
.xa1_c00307{left:609.333333pt;}
.x106_c00307{left:611.626667pt;}
.x38_c00307{left:612.960000pt;}
.x1d_c00307{left:615.626667pt;}
.x44_c00307{left:617.333333pt;}
.xff_c00307{left:618.666667pt;}
.xd0_c00307{left:619.626667pt;}
.xa2_c00307{left:621.706667pt;}
.xd6_c00307{left:622.666667pt;}
.x39_c00307{left:625.333333pt;}
.xf0_c00307{left:626.293333pt;}
.x2a_c00307{left:628.000000pt;}
.x107_c00307{left:629.706667pt;}
.xc0_c00307{left:631.040000pt;}
.x84_c00307{left:635.626667pt;}
.xfb_c00307{left:636.960000pt;}
.xdb_c00307{left:640.000000pt;}
.x8d_c00307{left:642.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_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_6c993a89c4c1e9265f740776.woff2')format("woff");}.ff1_c00308{font-family:ff1_c00308;line-height:1.688965;font-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_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);}
.m20_c00308{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m1d_c00308{transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);}
.mbd_c00308{transform:matrix(0.333529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333529,0.000000,0.000000,0.250000,0,0);}
.m98_c00308{transform:matrix(0.354294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354294,0.000000,0.000000,0.250000,0,0);}
.m5f_c00308{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.m56_c00308{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m4d_c00308{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m4f_c00308{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mb1_c00308{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m50_c00308{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m4c_c00308{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m51_c00308{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m55_c00308{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m32_c00308{transform:matrix(0.385353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385353,0.000000,0.000000,0.250000,0,0);}
.m7b_c00308{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.maa_c00308{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m9a_c00308{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m9c_c00308{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.ma6_c00308{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.mb4_c00308{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m57_c00308{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.ma9_c00308{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m8f_c00308{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.m68_c00308{transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);}
.m90_c00308{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.mab_c00308{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.ma3_c00308{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m30_c00308{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.ma0_c00308{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mba_c00308{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m31_c00308{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m82_c00308{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m67_c00308{transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);}
.m24_c00308{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m19_c00308{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m96_c00308{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m34_c00308{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.md_c00308{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m53_c00308{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m6b_c00308{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m13_c00308{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m76_c00308{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m27_c00308{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m83_c00308{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m89_c00308{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m41_c00308{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mb8_c00308{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.mcc_c00308{transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);}
.ma5_c00308{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.mc5_c00308{transform:matrix(0.425481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425481,0.000000,0.000000,0.250000,0,0);}
.m65_c00308{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m7e_c00308{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m74_c00308{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m88_c00308{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m2f_c00308{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m80_c00308{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m46_c00308{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.md4_c00308{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m1e_c00308{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.ma1_c00308{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m8d_c00308{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m33_c00308{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.md5_c00308{transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);}
.m5e_c00308{transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);}
.ma2_c00308{transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);}
.m95_c00308{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m17_c00308{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m3d_c00308{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m28_c00308{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m7f_c00308{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.mc4_c00308{transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);}
.m61_c00308{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.mb2_c00308{transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);}
.m63_c00308{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mbe_c00308{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m7d_c00308{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mcb_c00308{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.mc6_c00308{transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);}
.m91_c00308{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.mdd_c00308{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.m9f_c00308{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m60_c00308{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m93_c00308{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m5d_c00308{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m5_c00308{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.mf_c00308{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m44_c00308{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m81_c00308{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m36_c00308{transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);}
.m43_c00308{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m15_c00308{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.md8_c00308{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m64_c00308{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m29_c00308{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m4e_c00308{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mac_c00308{transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);}
.m78_c00308{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m1_c00308{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.md3_c00308{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.m2_c00308{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_c00308{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.mb3_c00308{transform:matrix(0.503529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503529,0.000000,0.000000,0.250000,0,0);}
.m6a_c00308{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mb_c00308{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m69_c00308{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m4b_c00308{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m75_c00308{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m54_c00308{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m8_c00308{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m58_c00308{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m3e_c00308{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m84_c00308{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m8b_c00308{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m99_c00308{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m2c_c00308{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m62_c00308{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m1f_c00308{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m3f_c00308{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m38_c00308{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m3a_c00308{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m85_c00308{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m7a_c00308{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m9d_c00308{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m97_c00308{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m40_c00308{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m3_c00308{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m2d_c00308{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m7c_c00308{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m5a_c00308{transform:matrix(0.539889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539889,0.000000,0.000000,0.250000,0,0);}
.mb6_c00308{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m11_c00308{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m70_c00308{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m6f_c00308{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m86_c00308{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m48_c00308{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m8a_c00308{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m37_c00308{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m1b_c00308{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m14_c00308{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m8e_c00308{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.mc2_c00308{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m26_c00308{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m87_c00308{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m45_c00308{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.ma_c00308{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m47_c00308{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mae_c00308{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m18_c00308{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m72_c00308{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m52_c00308{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);}
.m3c_c00308{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m6e_c00308{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mcf_c00308{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m1a_c00308{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.md0_c00308{transform:matrix(0.568109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568109,0.000000,0.000000,0.250000,0,0);}
.mc_c00308{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mad_c00308{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m5c_c00308{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m2e_c00308{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m6_c00308{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m12_c00308{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.mb5_c00308{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.mc8_c00308{transform:matrix(0.577724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577724,0.000000,0.000000,0.250000,0,0);}
.m39_c00308{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m6c_c00308{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m42_c00308{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m21_c00308{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m49_c00308{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m59_c00308{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.ma7_c00308{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m73_c00308{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m5b_c00308{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m4_c00308{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mce_c00308{transform:matrix(0.602564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602564,0.000000,0.000000,0.250000,0,0);}
.mbc_c00308{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m25_c00308{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m2a_c00308{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.mb9_c00308{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m35_c00308{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mb7_c00308{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.mb0_c00308{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.maf_c00308{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m3b_c00308{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.mdb_c00308{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m79_c00308{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);}
.m71_c00308{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mc7_c00308{transform:matrix(0.638767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638767,0.000000,0.000000,0.250000,0,0);}
.m9b_c00308{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.me0_c00308{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.m23_c00308{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.mbb_c00308{transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);}
.m94_c00308{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.ma4_c00308{transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);}
.m9_c00308{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m16_c00308{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.md7_c00308{transform:matrix(0.667929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667929,0.000000,0.000000,0.250000,0,0);}
.m0_c00308{transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);}
.mc3_c00308{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.md9_c00308{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.mde_c00308{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.mbf_c00308{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m92_c00308{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mca_c00308{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.m9e_c00308{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.mda_c00308{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.me2_c00308{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m77_c00308{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.ma8_c00308{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.md1_c00308{transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);}
.m7_c00308{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m6d_c00308{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mdc_c00308{transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);}
.mc1_c00308{transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);}
.m4a_c00308{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mcd_c00308{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.md6_c00308{transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);}
.mc9_c00308{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m2b_c00308{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m10_c00308{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.me1_c00308{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.me_c00308{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.md2_c00308{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m1c_c00308{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.mdf_c00308{transform:matrix(0.941630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.941630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.941630,0.000000,0.000000,0.250000,0,0);}
.mc0_c00308{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m8c_c00308{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.v2_c00308{vertical-align:-6.000000px;}
.v0_c00308{vertical-align:0.000000px;}
.v1_c00308{vertical-align:6.000000px;}
.ls1_c00308{letter-spacing:0.000000px;}
.ls0_c00308{letter-spacing:44.811895px;}
.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;}
}
.ws2_c00308{word-spacing:-8.215290px;}
.ws0_c00308{word-spacing:-4.167600px;}
.ws1_c00308{word-spacing:-1.219898px;}
.ws13_c00308{word-spacing:0.000000px;}
.ws6_c00308{word-spacing:9.942466px;}
.ws4_c00308{word-spacing:10.524047px;}
.ws8_c00308{word-spacing:10.947610px;}
.wsb_c00308{word-spacing:11.609047px;}
.wsa_c00308{word-spacing:13.611988px;}
.wsf_c00308{word-spacing:15.107856px;}
.ws10_c00308{word-spacing:15.614929px;}
.ws12_c00308{word-spacing:16.262880px;}
.ws9_c00308{word-spacing:17.262919px;}
.ws7_c00308{word-spacing:21.608172px;}
.ws11_c00308{word-spacing:24.591285px;}
.wsd_c00308{word-spacing:24.638400px;}
.ws3_c00308{word-spacing:25.293111px;}
.wsc_c00308{word-spacing:27.638400px;}
.wse_c00308{word-spacing:30.234255px;}
.ws5_c00308{word-spacing:36.857815px;}
._2_c00308{width:19.563127px;}
._0_c00308{width:21.109146px;}
._1_c00308{width:23.569009px;}
._4_c00308{width:26.864989px;}
._3_c00308{width:44.399896px;}
.fc0_c00308{color:transparent;}
.fs7_c00308{font-size:3.420000px;}
.fs6_c00308{font-size:11.880000px;}
.fs9_c00308{font-size:13.620000px;}
.fs0_c00308{font-size:18.720000px;}
.fs8_c00308{font-size:20.400000px;}
.fs4_c00308{font-size:25.500000px;}
.fs1_c00308{font-size:28.920000px;}
.fs2_c00308{font-size:32.340000px;}
.fs3_c00308{font-size:35.700000px;}
.fs5_c00308{font-size:39.120000px;}
.y0_c00308{bottom:0.000000px;}
.y77_c00308{bottom:254.745000px;}
.y79_c00308{bottom:255.405000px;}
.y78_c00308{bottom:256.470000px;}
.y75_c00308{bottom:272.970000px;}
.y73_c00308{bottom:274.245000px;}
.y76_c00308{bottom:275.130000px;}
.y74_c00308{bottom:275.970000px;}
.y72_c00308{bottom:276.405000px;}
.y6f_c00308{bottom:293.325000px;}
.y6e_c00308{bottom:293.745000px;}
.y6d_c00308{bottom:294.825000px;}
.y6b_c00308{bottom:295.050000px;}
.y71_c00308{bottom:295.470000px;}
.y6c_c00308{bottom:295.905000px;}
.y70_c00308{bottom:296.970000px;}
.y6a_c00308{bottom:310.905000px;}
.y69_c00308{bottom:312.180000px;}
.y66_c00308{bottom:313.245000px;}
.y67_c00308{bottom:314.130000px;}
.y65_c00308{bottom:314.970000px;}
.y68_c00308{bottom:315.405000px;}
.y63_c00308{bottom:332.745000px;}
.y64_c00308{bottom:333.825000px;}
.y61_c00308{bottom:334.905000px;}
.y62_c00308{bottom:336.420000px;}
.yb6_c00308{bottom:366.195000px;}
.yb4_c00308{bottom:378.630000px;}
.yb5_c00308{bottom:379.695000px;}
.yb1_c00308{bottom:392.130000px;}
.yb2_c00308{bottom:393.195000px;}
.yb3_c00308{bottom:394.695000px;}
.yb0_c00308{bottom:405.630000px;}
.yae_c00308{bottom:406.275000px;}
.yad_c00308{bottom:406.695000px;}
.yaf_c00308{bottom:407.130000px;}
.yab_c00308{bottom:418.695000px;}
.ya9_c00308{bottom:420.195000px;}
.yaa_c00308{bottom:420.630000px;}
.yac_c00308{bottom:421.695000px;}
.ya7_c00308{bottom:433.695000px;}
.ya6_c00308{bottom:434.130000px;}
.ya8_c00308{bottom:435.195000px;}
.ya3_c00308{bottom:447.630000px;}
.ya5_c00308{bottom:448.275000px;}
.ya4_c00308{bottom:448.695000px;}
.ya2_c00308{bottom:453.195000px;}
.ya1_c00308{bottom:461.130000px;}
.y9f_c00308{bottom:462.195000px;}
.ya0_c00308{bottom:462.630000px;}
.y9d_c00308{bottom:476.130000px;}
.y9e_c00308{bottom:477.195000px;}
.y9b_c00308{bottom:489.630000px;}
.y9c_c00308{bottom:490.695000px;}
.y98_c00308{bottom:502.050000px;}
.y99_c00308{bottom:504.195000px;}
.y9a_c00308{bottom:504.630000px;}
.y94_c00308{bottom:516.630000px;}
.y95_c00308{bottom:517.695000px;}
.y97_c00308{bottom:518.130000px;}
.y96_c00308{bottom:519.195000px;}
.y91_c00308{bottom:530.130000px;}
.y92_c00308{bottom:531.195000px;}
.y93_c00308{bottom:532.695000px;}
.y8e_c00308{bottom:544.695000px;}
.y8f_c00308{bottom:545.130000px;}
.y90_c00308{bottom:546.195000px;}
.y8a_c00308{bottom:563.130000px;}
.y89_c00308{bottom:564.195000px;}
.y8d_c00308{bottom:564.420000px;}
.y8b_c00308{bottom:564.630000px;}
.y8c_c00308{bottom:565.920000px;}
.y88_c00308{bottom:575.970000px;}
.y84_c00308{bottom:576.630000px;}
.y85_c00308{bottom:577.695000px;}
.y86_c00308{bottom:578.130000px;}
.y87_c00308{bottom:579.195000px;}
.y82_c00308{bottom:602.970000px;}
.y83_c00308{bottom:604.050000px;}
.y81_c00308{bottom:614.325000px;}
.y7e_c00308{bottom:615.825000px;}
.y80_c00308{bottom:616.905000px;}
.y7d_c00308{bottom:617.550000px;}
.y7c_c00308{bottom:617.970000px;}
.y7f_c00308{bottom:619.050000px;}
.y7b_c00308{bottom:635.550000px;}
.y7a_c00308{bottom:637.470000px;}
.y60_c00308{bottom:668.970000px;}
.y5f_c00308{bottom:669.405000px;}
.y5e_c00308{bottom:686.745000px;}
.y5d_c00308{bottom:688.905000px;}
.y5a_c00308{bottom:706.245000px;}
.y58_c00308{bottom:707.325000px;}
.y5b_c00308{bottom:708.405000px;}
.y59_c00308{bottom:708.630000px;}
.y5c_c00308{bottom:709.470000px;}
.y57_c00308{bottom:709.905000px;}
.y54_c00308{bottom:724.905000px;}
.y56_c00308{bottom:725.745000px;}
.y53_c00308{bottom:727.905000px;}
.y55_c00308{bottom:728.970000px;}
.y4f_c00308{bottom:744.405000px;}
.y52_c00308{bottom:745.245000px;}
.y50_c00308{bottom:746.745000px;}
.y51_c00308{bottom:747.630000px;}
.y4e_c00308{bottom:764.970000px;}
.y4c_c00308{bottom:765.405000px;}
.y4a_c00308{bottom:766.245000px;}
.y4b_c00308{bottom:767.325000px;}
.y4d_c00308{bottom:768.405000px;}
.y45_c00308{bottom:784.905000px;}
.y49_c00308{bottom:785.745000px;}
.y48_c00308{bottom:787.470000px;}
.y47_c00308{bottom:787.905000px;}
.y46_c00308{bottom:788.130000px;}
.y42_c00308{bottom:802.275000px;}
.y44_c00308{bottom:802.905000px;}
.y43_c00308{bottom:803.325000px;}
.y40_c00308{bottom:803.970000px;}
.y3e_c00308{bottom:804.405000px;}
.y41_c00308{bottom:805.245000px;}
.y3f_c00308{bottom:807.405000px;}
.y3d_c00308{bottom:823.470000px;}
.y39_c00308{bottom:823.905000px;}
.y3c_c00308{bottom:824.745000px;}
.y3b_c00308{bottom:824.970000px;}
.y38_c00308{bottom:825.825000px;}
.y3a_c00308{bottom:826.905000px;}
.y35_c00308{bottom:843.405000px;}
.y34_c00308{bottom:844.245000px;}
.y32_c00308{bottom:844.470000px;}
.y37_c00308{bottom:845.325000px;}
.y31_c00308{bottom:845.745000px;}
.y36_c00308{bottom:846.405000px;}
.y33_c00308{bottom:847.905000px;}
.y30_c00308{bottom:863.745000px;}
.y2e_c00308{bottom:865.245000px;}
.y2f_c00308{bottom:865.905000px;}
.y2d_c00308{bottom:866.130000px;}
.y2c_c00308{bottom:866.970000px;}
.y2b_c00308{bottom:867.405000px;}
.y2a_c00308{bottom:884.745000px;}
.y28_c00308{bottom:904.245000px;}
.y29_c00308{bottom:905.325000px;}
.y27_c00308{bottom:906.405000px;}
.y26_c00308{bottom:923.745000px;}
.y25_c00308{bottom:925.905000px;}
.y23_c00308{bottom:941.970000px;}
.y24_c00308{bottom:943.245000px;}
.y21_c00308{bottom:944.130000px;}
.y22_c00308{bottom:945.405000px;}
.y1e_c00308{bottom:961.905000px;}
.y20_c00308{bottom:962.970000px;}
.y1d_c00308{bottom:964.905000px;}
.y1f_c00308{bottom:965.970000px;}
.y1b_c00308{bottom:982.245000px;}
.y19_c00308{bottom:982.680000px;}
.y1c_c00308{bottom:983.325000px;}
.y17_c00308{bottom:983.745000px;}
.y18_c00308{bottom:984.405000px;}
.y1a_c00308{bottom:985.905000px;}
.y14_c00308{bottom:1003.905000px;}
.y16_c00308{bottom:1004.130000px;}
.y13_c00308{bottom:1004.325000px;}
.y15_c00308{bottom:1005.405000px;}
.y11_c00308{bottom:1021.245000px;}
.y12_c00308{bottom:1023.405000px;}
.y10_c00308{bottom:1024.470000px;}
.yf_c00308{bottom:1024.905000px;}
.ye_c00308{bottom:1040.745000px;}
.y8_c00308{bottom:1040.970000px;}
.yc_c00308{bottom:1041.825000px;}
.ya_c00308{bottom:1042.245000px;}
.yb_c00308{bottom:1042.905000px;}
.y7_c00308{bottom:1043.130000px;}
.yd_c00308{bottom:1043.970000px;}
.y9_c00308{bottom:1044.405000px;}
.y5_c00308{bottom:1061.325000px;}
.y6_c00308{bottom:1061.745000px;}
.y4_c00308{bottom:1062.630000px;}
.y3_c00308{bottom:1063.905000px;}
.y2_c00308{bottom:1099.905000px;}
.y1_c00308{bottom:1103.130000px;}
.h8_c00308{height:4.206533px;}
.h7_c00308{height:14.612168px;}
.ha_c00308{height:16.752334px;}
.hb_c00308{height:22.752334px;}
.h1_c00308{height:23.025234px;}
.h9_c00308{height:25.091602px;}
.h5_c00308{height:31.364502px;}
.h2_c00308{height:35.571035px;}
.h3_c00308{height:39.777568px;}
.h4_c00308{height:43.910303px;}
.h6_c00308{height:48.116836px;}
.h0_c00308{height:1335.000000px;}
.w0_c00308{width:880.500000px;}
.x0_c00308{left:0.000000px;}
.x3_c00308{left:151.080000px;}
.x30_c00308{left:152.355000px;}
.x94_c00308{left:153.420000px;}
.x21_c00308{left:166.080000px;}
.x73_c00308{left:168.000000px;}
.x4_c00308{left:169.920000px;}
.xad_c00308{left:171.000000px;}
.x8b_c00308{left:175.080000px;}
.x46_c00308{left:178.500000px;}
.xb8_c00308{left:180.000000px;}
.xc0_c00308{left:181.500000px;}
.x66_c00308{left:183.420000px;}
.xcc_c00308{left:186.000000px;}
.x84_c00308{left:187.080000px;}
.x9d_c00308{left:189.000000px;}
.x95_c00308{left:190.500000px;}
.x52_c00308{left:192.000000px;}
.xde_c00308{left:193.500000px;}
.x5_c00308{left:195.420000px;}
.x74_c00308{left:199.080000px;}
.x5c_c00308{left:201.000000px;}
.x7d_c00308{left:202.500000px;}
.x8c_c00308{left:208.080000px;}
.x96_c00308{left:209.580000px;}
.xa7_c00308{left:211.500000px;}
.xb4_c00308{left:214.920000px;}
.xc1_c00308{left:217.500000px;}
.x3b_c00308{left:220.080000px;}
.x22_c00308{left:222.420000px;}
.x6_c00308{left:223.500000px;}
.x15_c00308{left:225.420000px;}
.xd6_c00308{left:226.500000px;}
.x8d_c00308{left:228.000000px;}
.x67_c00308{left:229.920000px;}
.x31_c00308{left:231.420000px;}
.x5d_c00308{left:234.420000px;}
.xe4_c00308{left:237.000000px;}
.x47_c00308{left:238.500000px;}
.xc2_c00308{left:240.000000px;}
.x53_c00308{left:241.920000px;}
.xae_c00308{left:244.500000px;}
.xcd_c00308{left:245.580000px;}
.xe6_c00308{left:247.920000px;}
.xd4_c00308{left:249.000000px;}
.x3c_c00308{left:252.420000px;}
.x16_c00308{left:256.920000px;}
.x75_c00308{left:259.500000px;}
.x32_c00308{left:261.000000px;}
.xb9_c00308{left:262.920000px;}
.x68_c00308{left:265.920000px;}
.x8e_c00308{left:267.000000px;}
.x7_c00308{left:268.920000px;}
.xaf_c00308{left:270.420000px;}
.x97_c00308{left:271.500000px;}
.xaa_c00308{left:277.500000px;}
.xe7_c00308{left:279.000000px;}
.x48_c00308{left:281.580000px;}
.x85_c00308{left:283.080000px;}
.x7e_c00308{left:284.580000px;}
.x23_c00308{left:288.000000px;}
.x69_c00308{left:292.500000px;}
.xba_c00308{left:294.000000px;}
.x8_c00308{left:295.920000px;}
.x9e_c00308{left:297.000000px;}
.xd5_c00308{left:298.500000px;}
.x24_c00308{left:300.855000px;}
.x3d_c00308{left:302.580000px;}
.x17_c00308{left:304.920000px;}
.x49_c00308{left:312.000000px;}
.x33_c00308{left:313.080000px;}
.xd7_c00308{left:314.580000px;}
.x25_c00308{left:316.080000px;}
.xa8_c00308{left:318.000000px;}
.x3e_c00308{left:321.420000px;}
.xc7_c00308{left:322.920000px;}
.x8f_c00308{left:324.000000px;}
.xce_c00308{left:328.080000px;}
.xd8_c00308{left:331.500000px;}
.x9_c00308{left:334.500000px;}
.xc3_c00308{left:338.580000px;}
.xdb_c00308{left:342.000000px;}
.x6a_c00308{left:343.500000px;}
.x54_c00308{left:345.000000px;}
.x26_c00308{left:346.500000px;}
.x3f_c00308{left:348.000000px;}
.xdf_c00308{left:349.920000px;}
.x18_c00308{left:351.000000px;}
.xd9_c00308{left:354.000000px;}
.xa9_c00308{left:355.920000px;}
.x5e_c00308{left:357.000000px;}
.x27_c00308{left:361.500000px;}
.xc8_c00308{left:363.000000px;}
.x4a_c00308{left:366.420000px;}
.x9f_c00308{left:370.080000px;}
.x5f_c00308{left:375.420000px;}
.x34_c00308{left:376.920000px;}
.x28_c00308{left:378.000000px;}
.xa_c00308{left:379.500000px;}
.x86_c00308{left:382.500000px;}
.x6b_c00308{left:385.920000px;}
.x19_c00308{left:387.000000px;}
.xcf_c00308{left:388.500000px;}
.x98_c00308{left:393.000000px;}
.x29_c00308{left:394.500000px;}
.xc4_c00308{left:397.080000px;}
.xb_c00308{left:399.420000px;}
.x1_c00308{left:400.500000px;}
.xa0_c00308{left:401.580000px;}
.x40_c00308{left:403.920000px;}
.x1a_c00308{left:406.080000px;}
.x76_c00308{left:408.420000px;}
.x55_c00308{left:410.580000px;}
.x2a_c00308{left:412.500000px;}
.x99_c00308{left:415.080000px;}
.xe5_c00308{left:417.000000px;}
.x35_c00308{left:418.500000px;}
.xbb_c00308{left:421.080000px;}
.xa1_c00308{left:423.000000px;}
.xc_c00308{left:424.920000px;}
.xd0_c00308{left:426.420000px;}
.x1b_c00308{left:427.920000px;}
.x4b_c00308{left:429.000000px;}
.xab_c00308{left:432.000000px;}
.x2b_c00308{left:434.580000px;}
.x56_c00308{left:442.500000px;}
.x36_c00308{left:445.500000px;}
.xc5_c00308{left:448.080000px;}
.x7f_c00308{left:450.000000px;}
.x90_c00308{left:452.580000px;}
.x1c_c00308{left:454.920000px;}
.x77_c00308{left:457.080000px;}
.x57_c00308{left:459.420000px;}
.xb0_c00308{left:468.000000px;}
.xd1_c00308{left:469.920000px;}
.x41_c00308{left:472.500000px;}
.x2c_c00308{left:474.855000px;}
.xd_c00308{left:478.500000px;}
.x6c_c00308{left:481.500000px;}
.xbc_c00308{left:484.500000px;}
.x91_c00308{left:486.000000px;}
.x78_c00308{left:488.775000px;}
.x60_c00308{left:490.920000px;}
.x1d_c00308{left:493.500000px;}
.x80_c00308{left:495.000000px;}
.x6d_c00308{left:496.500000px;}
.xa2_c00308{left:501.000000px;}
.xda_c00308{left:505.500000px;}
.x4c_c00308{left:507.420000px;}
.xb5_c00308{left:509.580000px;}
.xe_c00308{left:511.080000px;}
.x37_c00308{left:522.000000px;}
.x92_c00308{left:523.920000px;}
.xa3_c00308{left:525.000000px;}
.xc9_c00308{left:526.920000px;}
.x58_c00308{left:528.420000px;}
.xf_c00308{left:529.920000px;}
.xe0_c00308{left:531.000000px;}
.xac_c00308{left:535.500000px;}
.x79_c00308{left:536.580000px;}
.x1e_c00308{left:540.420000px;}
.xdc_c00308{left:544.500000px;}
.x9a_c00308{left:545.580000px;}
.xc6_c00308{left:550.500000px;}
.x6e_c00308{left:553.920000px;}
.x10_c00308{left:555.000000px;}
.x61_c00308{left:556.500000px;}
.xdd_c00308{left:558.000000px;}
.x42_c00308{left:559.080000px;}
.x87_c00308{left:561.420000px;}
.xe2_c00308{left:562.500000px;}
.x38_c00308{left:564.000000px;}
.x7a_c00308{left:565.920000px;}
.xbd_c00308{left:567.000000px;}
.xb6_c00308{left:568.500000px;}
.xa4_c00308{left:570.420000px;}
.xd2_c00308{left:571.500000px;}
.x59_c00308{left:573.420000px;}
.x2d_c00308{left:576.000000px;}
.x4d_c00308{left:585.000000px;}
.x62_c00308{left:586.500000px;}
.x43_c00308{left:589.920000px;}
.x81_c00308{left:592.080000px;}
.x11_c00308{left:594.000000px;}
.xb1_c00308{left:595.920000px;}
.xca_c00308{left:597.000000px;}
.x6f_c00308{left:598.920000px;}
.xea_c00308{left:600.420000px;}
.xe1_c00308{left:603.000000px;}
.xa5_c00308{left:604.920000px;}
.x7b_c00308{left:606.000000px;}
.x1f_c00308{left:607.080000px;}
.x5a_c00308{left:610.920000px;}
.x12_c00308{left:612.000000px;}
.x88_c00308{left:619.920000px;}
.x9b_c00308{left:622.500000px;}
.x82_c00308{left:624.000000px;}
.x13_c00308{left:627.000000px;}
.x4e_c00308{left:628.500000px;}
.x63_c00308{left:630.000000px;}
.xa6_c00308{left:633.000000px;}
.x70_c00308{left:634.920000px;}
.xe8_c00308{left:636.000000px;}
.x20_c00308{left:637.920000px;}
.xec_c00308{left:640.500000px;}
.xd3_c00308{left:642.420000px;}
.x2e_c00308{left:643.500000px;}
.x4f_c00308{left:644.580000px;}
.xb2_c00308{left:648.000000px;}
.x7c_c00308{left:649.080000px;}
.xcb_c00308{left:650.580000px;}
.x39_c00308{left:652.500000px;}
.x89_c00308{left:653.580000px;}
.x93_c00308{left:655.080000px;}
.x44_c00308{left:657.000000px;}
.x9c_c00308{left:659.580000px;}
.x71_c00308{left:661.500000px;}
.x2f_c00308{left:663.420000px;}
.x14_c00308{left:665.580000px;}
.xeb_c00308{left:667.500000px;}
.xe3_c00308{left:670.500000px;}
.xe9_c00308{left:672.000000px;}
.xb3_c00308{left:673.920000px;}
.x45_c00308{left:675.000000px;}
.xbe_c00308{left:678.000000px;}
.x8a_c00308{left:683.580000px;}
.x3a_c00308{left:685.920000px;}
.x50_c00308{left:688.080000px;}
.x5b_c00308{left:690.000000px;}
.x72_c00308{left:691.500000px;}
.xbf_c00308{left:697.920000px;}
.x83_c00308{left:699.000000px;}
.x64_c00308{left:702.000000px;}
.x2_c00308{left:704.580000px;}
.x51_c00308{left:706.500000px;}
.xb7_c00308{left:716.580000px;}
.x65_c00308{left:718.500000px;}
@media print{
.v2_c00308{vertical-align:-5.333333pt;}
.v0_c00308{vertical-align:0.000000pt;}
.v1_c00308{vertical-align:5.333333pt;}
.ls1_c00308{letter-spacing:0.000000pt;}
.ls0_c00308{letter-spacing:39.832796pt;}
.ws2_c00308{word-spacing:-7.302480pt;}
.ws0_c00308{word-spacing:-3.704533pt;}
.ws1_c00308{word-spacing:-1.084354pt;}
.ws13_c00308{word-spacing:0.000000pt;}
.ws6_c00308{word-spacing:8.837748pt;}
.ws4_c00308{word-spacing:9.354708pt;}
.ws8_c00308{word-spacing:9.731209pt;}
.wsb_c00308{word-spacing:10.319153pt;}
.wsa_c00308{word-spacing:12.099545pt;}
.wsf_c00308{word-spacing:13.429205pt;}
.ws10_c00308{word-spacing:13.879937pt;}
.ws12_c00308{word-spacing:14.455894pt;}
.ws9_c00308{word-spacing:15.344817pt;}
.ws7_c00308{word-spacing:19.207264pt;}
.ws11_c00308{word-spacing:21.858920pt;}
.wsd_c00308{word-spacing:21.900800pt;}
.ws3_c00308{word-spacing:22.482765pt;}
.wsc_c00308{word-spacing:24.567467pt;}
.wse_c00308{word-spacing:26.874893pt;}
.ws5_c00308{word-spacing:32.762503pt;}
._2_c00308{width:17.389446pt;}
._0_c00308{width:18.763685pt;}
._1_c00308{width:20.950231pt;}
._4_c00308{width:23.879990pt;}
._3_c00308{width:39.466574pt;}
.fs7_c00308{font-size:3.040000pt;}
.fs6_c00308{font-size:10.560000pt;}
.fs9_c00308{font-size:12.106667pt;}
.fs0_c00308{font-size:16.640000pt;}
.fs8_c00308{font-size:18.133333pt;}
.fs4_c00308{font-size:22.666667pt;}
.fs1_c00308{font-size:25.706667pt;}
.fs2_c00308{font-size:28.746667pt;}
.fs3_c00308{font-size:31.733333pt;}
.fs5_c00308{font-size:34.773333pt;}
.y0_c00308{bottom:0.000000pt;}
.y77_c00308{bottom:226.440000pt;}
.y79_c00308{bottom:227.026667pt;}
.y78_c00308{bottom:227.973333pt;}
.y75_c00308{bottom:242.640000pt;}
.y73_c00308{bottom:243.773333pt;}
.y76_c00308{bottom:244.560000pt;}
.y74_c00308{bottom:245.306667pt;}
.y72_c00308{bottom:245.693333pt;}
.y6f_c00308{bottom:260.733333pt;}
.y6e_c00308{bottom:261.106667pt;}
.y6d_c00308{bottom:262.066667pt;}
.y6b_c00308{bottom:262.266667pt;}
.y71_c00308{bottom:262.640000pt;}
.y6c_c00308{bottom:263.026667pt;}
.y70_c00308{bottom:263.973333pt;}
.y6a_c00308{bottom:276.360000pt;}
.y69_c00308{bottom:277.493333pt;}
.y66_c00308{bottom:278.440000pt;}
.y67_c00308{bottom:279.226667pt;}
.y65_c00308{bottom:279.973333pt;}
.y68_c00308{bottom:280.360000pt;}
.y63_c00308{bottom:295.773333pt;}
.y64_c00308{bottom:296.733333pt;}
.y61_c00308{bottom:297.693333pt;}
.y62_c00308{bottom:299.040000pt;}
.yb6_c00308{bottom:325.506667pt;}
.yb4_c00308{bottom:336.560000pt;}
.yb5_c00308{bottom:337.506667pt;}
.yb1_c00308{bottom:348.560000pt;}
.yb2_c00308{bottom:349.506667pt;}
.yb3_c00308{bottom:350.840000pt;}
.yb0_c00308{bottom:360.560000pt;}
.yae_c00308{bottom:361.133333pt;}
.yad_c00308{bottom:361.506667pt;}
.yaf_c00308{bottom:361.893333pt;}
.yab_c00308{bottom:372.173333pt;}
.ya9_c00308{bottom:373.506667pt;}
.yaa_c00308{bottom:373.893333pt;}
.yac_c00308{bottom:374.840000pt;}
.ya7_c00308{bottom:385.506667pt;}
.ya6_c00308{bottom:385.893333pt;}
.ya8_c00308{bottom:386.840000pt;}
.ya3_c00308{bottom:397.893333pt;}
.ya5_c00308{bottom:398.466667pt;}
.ya4_c00308{bottom:398.840000pt;}
.ya2_c00308{bottom:402.840000pt;}
.ya1_c00308{bottom:409.893333pt;}
.y9f_c00308{bottom:410.840000pt;}
.ya0_c00308{bottom:411.226667pt;}
.y9d_c00308{bottom:423.226667pt;}
.y9e_c00308{bottom:424.173333pt;}
.y9b_c00308{bottom:435.226667pt;}
.y9c_c00308{bottom:436.173333pt;}
.y98_c00308{bottom:446.266667pt;}
.y99_c00308{bottom:448.173333pt;}
.y9a_c00308{bottom:448.560000pt;}
.y94_c00308{bottom:459.226667pt;}
.y95_c00308{bottom:460.173333pt;}
.y97_c00308{bottom:460.560000pt;}
.y96_c00308{bottom:461.506667pt;}
.y91_c00308{bottom:471.226667pt;}
.y92_c00308{bottom:472.173333pt;}
.y93_c00308{bottom:473.506667pt;}
.y8e_c00308{bottom:484.173333pt;}
.y8f_c00308{bottom:484.560000pt;}
.y90_c00308{bottom:485.506667pt;}
.y8a_c00308{bottom:500.560000pt;}
.y89_c00308{bottom:501.506667pt;}
.y8d_c00308{bottom:501.706667pt;}
.y8b_c00308{bottom:501.893333pt;}
.y8c_c00308{bottom:503.040000pt;}
.y88_c00308{bottom:511.973333pt;}
.y84_c00308{bottom:512.560000pt;}
.y85_c00308{bottom:513.506667pt;}
.y86_c00308{bottom:513.893333pt;}
.y87_c00308{bottom:514.840000pt;}
.y82_c00308{bottom:535.973333pt;}
.y83_c00308{bottom:536.933333pt;}
.y81_c00308{bottom:546.066667pt;}
.y7e_c00308{bottom:547.400000pt;}
.y80_c00308{bottom:548.360000pt;}
.y7d_c00308{bottom:548.933333pt;}
.y7c_c00308{bottom:549.306667pt;}
.y7f_c00308{bottom:550.266667pt;}
.y7b_c00308{bottom:564.933333pt;}
.y7a_c00308{bottom:566.640000pt;}
.y60_c00308{bottom:594.640000pt;}
.y5f_c00308{bottom:595.026667pt;}
.y5e_c00308{bottom:610.440000pt;}
.y5d_c00308{bottom:612.360000pt;}
.y5a_c00308{bottom:627.773333pt;}
.y58_c00308{bottom:628.733333pt;}
.y5b_c00308{bottom:629.693333pt;}
.y59_c00308{bottom:629.893333pt;}
.y5c_c00308{bottom:630.640000pt;}
.y57_c00308{bottom:631.026667pt;}
.y54_c00308{bottom:644.360000pt;}
.y56_c00308{bottom:645.106667pt;}
.y53_c00308{bottom:647.026667pt;}
.y55_c00308{bottom:647.973333pt;}
.y4f_c00308{bottom:661.693333pt;}
.y52_c00308{bottom:662.440000pt;}
.y50_c00308{bottom:663.773333pt;}
.y51_c00308{bottom:664.560000pt;}
.y4e_c00308{bottom:679.973333pt;}
.y4c_c00308{bottom:680.360000pt;}
.y4a_c00308{bottom:681.106667pt;}
.y4b_c00308{bottom:682.066667pt;}
.y4d_c00308{bottom:683.026667pt;}
.y45_c00308{bottom:697.693333pt;}
.y49_c00308{bottom:698.440000pt;}
.y48_c00308{bottom:699.973333pt;}
.y47_c00308{bottom:700.360000pt;}
.y46_c00308{bottom:700.560000pt;}
.y42_c00308{bottom:713.133333pt;}
.y44_c00308{bottom:713.693333pt;}
.y43_c00308{bottom:714.066667pt;}
.y40_c00308{bottom:714.640000pt;}
.y3e_c00308{bottom:715.026667pt;}
.y41_c00308{bottom:715.773333pt;}
.y3f_c00308{bottom:717.693333pt;}
.y3d_c00308{bottom:731.973333pt;}
.y39_c00308{bottom:732.360000pt;}
.y3c_c00308{bottom:733.106667pt;}
.y3b_c00308{bottom:733.306667pt;}
.y38_c00308{bottom:734.066667pt;}
.y3a_c00308{bottom:735.026667pt;}
.y35_c00308{bottom:749.693333pt;}
.y34_c00308{bottom:750.440000pt;}
.y32_c00308{bottom:750.640000pt;}
.y37_c00308{bottom:751.400000pt;}
.y31_c00308{bottom:751.773333pt;}
.y36_c00308{bottom:752.360000pt;}
.y33_c00308{bottom:753.693333pt;}
.y30_c00308{bottom:767.773333pt;}
.y2e_c00308{bottom:769.106667pt;}
.y2f_c00308{bottom:769.693333pt;}
.y2d_c00308{bottom:769.893333pt;}
.y2c_c00308{bottom:770.640000pt;}
.y2b_c00308{bottom:771.026667pt;}
.y2a_c00308{bottom:786.440000pt;}
.y28_c00308{bottom:803.773333pt;}
.y29_c00308{bottom:804.733333pt;}
.y27_c00308{bottom:805.693333pt;}
.y26_c00308{bottom:821.106667pt;}
.y25_c00308{bottom:823.026667pt;}
.y23_c00308{bottom:837.306667pt;}
.y24_c00308{bottom:838.440000pt;}
.y21_c00308{bottom:839.226667pt;}
.y22_c00308{bottom:840.360000pt;}
.y1e_c00308{bottom:855.026667pt;}
.y20_c00308{bottom:855.973333pt;}
.y1d_c00308{bottom:857.693333pt;}
.y1f_c00308{bottom:858.640000pt;}
.y1b_c00308{bottom:873.106667pt;}
.y19_c00308{bottom:873.493333pt;}
.y1c_c00308{bottom:874.066667pt;}
.y17_c00308{bottom:874.440000pt;}
.y18_c00308{bottom:875.026667pt;}
.y1a_c00308{bottom:876.360000pt;}
.y14_c00308{bottom:892.360000pt;}
.y16_c00308{bottom:892.560000pt;}
.y13_c00308{bottom:892.733333pt;}
.y15_c00308{bottom:893.693333pt;}
.y11_c00308{bottom:907.773333pt;}
.y12_c00308{bottom:909.693333pt;}
.y10_c00308{bottom:910.640000pt;}
.yf_c00308{bottom:911.026667pt;}
.ye_c00308{bottom:925.106667pt;}
.y8_c00308{bottom:925.306667pt;}
.yc_c00308{bottom:926.066667pt;}
.ya_c00308{bottom:926.440000pt;}
.yb_c00308{bottom:927.026667pt;}
.y7_c00308{bottom:927.226667pt;}
.yd_c00308{bottom:927.973333pt;}
.y9_c00308{bottom:928.360000pt;}
.y5_c00308{bottom:943.400000pt;}
.y6_c00308{bottom:943.773333pt;}
.y4_c00308{bottom:944.560000pt;}
.y3_c00308{bottom:945.693333pt;}
.y2_c00308{bottom:977.693333pt;}
.y1_c00308{bottom:980.560000pt;}
.h8_c00308{height:3.739141pt;}
.h7_c00308{height:12.988594pt;}
.ha_c00308{height:14.890964pt;}
.hb_c00308{height:20.224297pt;}
.h1_c00308{height:20.466875pt;}
.h9_c00308{height:22.303646pt;}
.h5_c00308{height:27.879557pt;}
.h2_c00308{height:31.618698pt;}
.h3_c00308{height:35.357839pt;}
.h4_c00308{height:39.031380pt;}
.h6_c00308{height:42.770521pt;}
.h0_c00308{height:1186.666667pt;}
.w0_c00308{width:782.666667pt;}
.x0_c00308{left:0.000000pt;}
.x3_c00308{left:134.293333pt;}
.x30_c00308{left:135.426667pt;}
.x94_c00308{left:136.373333pt;}
.x21_c00308{left:147.626667pt;}
.x73_c00308{left:149.333333pt;}
.x4_c00308{left:151.040000pt;}
.xad_c00308{left:152.000000pt;}
.x8b_c00308{left:155.626667pt;}
.x46_c00308{left:158.666667pt;}
.xb8_c00308{left:160.000000pt;}
.xc0_c00308{left:161.333333pt;}
.x66_c00308{left:163.040000pt;}
.xcc_c00308{left:165.333333pt;}
.x84_c00308{left:166.293333pt;}
.x9d_c00308{left:168.000000pt;}
.x95_c00308{left:169.333333pt;}
.x52_c00308{left:170.666667pt;}
.xde_c00308{left:172.000000pt;}
.x5_c00308{left:173.706667pt;}
.x74_c00308{left:176.960000pt;}
.x5c_c00308{left:178.666667pt;}
.x7d_c00308{left:180.000000pt;}
.x8c_c00308{left:184.960000pt;}
.x96_c00308{left:186.293333pt;}
.xa7_c00308{left:188.000000pt;}
.xb4_c00308{left:191.040000pt;}
.xc1_c00308{left:193.333333pt;}
.x3b_c00308{left:195.626667pt;}
.x22_c00308{left:197.706667pt;}
.x6_c00308{left:198.666667pt;}
.x15_c00308{left:200.373333pt;}
.xd6_c00308{left:201.333333pt;}
.x8d_c00308{left:202.666667pt;}
.x67_c00308{left:204.373333pt;}
.x31_c00308{left:205.706667pt;}
.x5d_c00308{left:208.373333pt;}
.xe4_c00308{left:210.666667pt;}
.x47_c00308{left:212.000000pt;}
.xc2_c00308{left:213.333333pt;}
.x53_c00308{left:215.040000pt;}
.xae_c00308{left:217.333333pt;}
.xcd_c00308{left:218.293333pt;}
.xe6_c00308{left:220.373333pt;}
.xd4_c00308{left:221.333333pt;}
.x3c_c00308{left:224.373333pt;}
.x16_c00308{left:228.373333pt;}
.x75_c00308{left:230.666667pt;}
.x32_c00308{left:232.000000pt;}
.xb9_c00308{left:233.706667pt;}
.x68_c00308{left:236.373333pt;}
.x8e_c00308{left:237.333333pt;}
.x7_c00308{left:239.040000pt;}
.xaf_c00308{left:240.373333pt;}
.x97_c00308{left:241.333333pt;}
.xaa_c00308{left:246.666667pt;}
.xe7_c00308{left:248.000000pt;}
.x48_c00308{left:250.293333pt;}
.x85_c00308{left:251.626667pt;}
.x7e_c00308{left:252.960000pt;}
.x23_c00308{left:256.000000pt;}
.x69_c00308{left:260.000000pt;}
.xba_c00308{left:261.333333pt;}
.x8_c00308{left:263.040000pt;}
.x9e_c00308{left:264.000000pt;}
.xd5_c00308{left:265.333333pt;}
.x24_c00308{left:267.426667pt;}
.x3d_c00308{left:268.960000pt;}
.x17_c00308{left:271.040000pt;}
.x49_c00308{left:277.333333pt;}
.x33_c00308{left:278.293333pt;}
.xd7_c00308{left:279.626667pt;}
.x25_c00308{left:280.960000pt;}
.xa8_c00308{left:282.666667pt;}
.x3e_c00308{left:285.706667pt;}
.xc7_c00308{left:287.040000pt;}
.x8f_c00308{left:288.000000pt;}
.xce_c00308{left:291.626667pt;}
.xd8_c00308{left:294.666667pt;}
.x9_c00308{left:297.333333pt;}
.xc3_c00308{left:300.960000pt;}
.xdb_c00308{left:304.000000pt;}
.x6a_c00308{left:305.333333pt;}
.x54_c00308{left:306.666667pt;}
.x26_c00308{left:308.000000pt;}
.x3f_c00308{left:309.333333pt;}
.xdf_c00308{left:311.040000pt;}
.x18_c00308{left:312.000000pt;}
.xd9_c00308{left:314.666667pt;}
.xa9_c00308{left:316.373333pt;}
.x5e_c00308{left:317.333333pt;}
.x27_c00308{left:321.333333pt;}
.xc8_c00308{left:322.666667pt;}
.x4a_c00308{left:325.706667pt;}
.x9f_c00308{left:328.960000pt;}
.x5f_c00308{left:333.706667pt;}
.x34_c00308{left:335.040000pt;}
.x28_c00308{left:336.000000pt;}
.xa_c00308{left:337.333333pt;}
.x86_c00308{left:340.000000pt;}
.x6b_c00308{left:343.040000pt;}
.x19_c00308{left:344.000000pt;}
.xcf_c00308{left:345.333333pt;}
.x98_c00308{left:349.333333pt;}
.x29_c00308{left:350.666667pt;}
.xc4_c00308{left:352.960000pt;}
.xb_c00308{left:355.040000pt;}
.x1_c00308{left:356.000000pt;}
.xa0_c00308{left:356.960000pt;}
.x40_c00308{left:359.040000pt;}
.x1a_c00308{left:360.960000pt;}
.x76_c00308{left:363.040000pt;}
.x55_c00308{left:364.960000pt;}
.x2a_c00308{left:366.666667pt;}
.x99_c00308{left:368.960000pt;}
.xe5_c00308{left:370.666667pt;}
.x35_c00308{left:372.000000pt;}
.xbb_c00308{left:374.293333pt;}
.xa1_c00308{left:376.000000pt;}
.xc_c00308{left:377.706667pt;}
.xd0_c00308{left:379.040000pt;}
.x1b_c00308{left:380.373333pt;}
.x4b_c00308{left:381.333333pt;}
.xab_c00308{left:384.000000pt;}
.x2b_c00308{left:386.293333pt;}
.x56_c00308{left:393.333333pt;}
.x36_c00308{left:396.000000pt;}
.xc5_c00308{left:398.293333pt;}
.x7f_c00308{left:400.000000pt;}
.x90_c00308{left:402.293333pt;}
.x1c_c00308{left:404.373333pt;}
.x77_c00308{left:406.293333pt;}
.x57_c00308{left:408.373333pt;}
.xb0_c00308{left:416.000000pt;}
.xd1_c00308{left:417.706667pt;}
.x41_c00308{left:420.000000pt;}
.x2c_c00308{left:422.093333pt;}
.xd_c00308{left:425.333333pt;}
.x6c_c00308{left:428.000000pt;}
.xbc_c00308{left:430.666667pt;}
.x91_c00308{left:432.000000pt;}
.x78_c00308{left:434.466667pt;}
.x60_c00308{left:436.373333pt;}
.x1d_c00308{left:438.666667pt;}
.x80_c00308{left:440.000000pt;}
.x6d_c00308{left:441.333333pt;}
.xa2_c00308{left:445.333333pt;}
.xda_c00308{left:449.333333pt;}
.x4c_c00308{left:451.040000pt;}
.xb5_c00308{left:452.960000pt;}
.xe_c00308{left:454.293333pt;}
.x37_c00308{left:464.000000pt;}
.x92_c00308{left:465.706667pt;}
.xa3_c00308{left:466.666667pt;}
.xc9_c00308{left:468.373333pt;}
.x58_c00308{left:469.706667pt;}
.xf_c00308{left:471.040000pt;}
.xe0_c00308{left:472.000000pt;}
.xac_c00308{left:476.000000pt;}
.x79_c00308{left:476.960000pt;}
.x1e_c00308{left:480.373333pt;}
.xdc_c00308{left:484.000000pt;}
.x9a_c00308{left:484.960000pt;}
.xc6_c00308{left:489.333333pt;}
.x6e_c00308{left:492.373333pt;}
.x10_c00308{left:493.333333pt;}
.x61_c00308{left:494.666667pt;}
.xdd_c00308{left:496.000000pt;}
.x42_c00308{left:496.960000pt;}
.x87_c00308{left:499.040000pt;}
.xe2_c00308{left:500.000000pt;}
.x38_c00308{left:501.333333pt;}
.x7a_c00308{left:503.040000pt;}
.xbd_c00308{left:504.000000pt;}
.xb6_c00308{left:505.333333pt;}
.xa4_c00308{left:507.040000pt;}
.xd2_c00308{left:508.000000pt;}
.x59_c00308{left:509.706667pt;}
.x2d_c00308{left:512.000000pt;}
.x4d_c00308{left:520.000000pt;}
.x62_c00308{left:521.333333pt;}
.x43_c00308{left:524.373333pt;}
.x81_c00308{left:526.293333pt;}
.x11_c00308{left:528.000000pt;}
.xb1_c00308{left:529.706667pt;}
.xca_c00308{left:530.666667pt;}
.x6f_c00308{left:532.373333pt;}
.xea_c00308{left:533.706667pt;}
.xe1_c00308{left:536.000000pt;}
.xa5_c00308{left:537.706667pt;}
.x7b_c00308{left:538.666667pt;}
.x1f_c00308{left:539.626667pt;}
.x5a_c00308{left:543.040000pt;}
.x12_c00308{left:544.000000pt;}
.x88_c00308{left:551.040000pt;}
.x9b_c00308{left:553.333333pt;}
.x82_c00308{left:554.666667pt;}
.x13_c00308{left:557.333333pt;}
.x4e_c00308{left:558.666667pt;}
.x63_c00308{left:560.000000pt;}
.xa6_c00308{left:562.666667pt;}
.x70_c00308{left:564.373333pt;}
.xe8_c00308{left:565.333333pt;}
.x20_c00308{left:567.040000pt;}
.xec_c00308{left:569.333333pt;}
.xd3_c00308{left:571.040000pt;}
.x2e_c00308{left:572.000000pt;}
.x4f_c00308{left:572.960000pt;}
.xb2_c00308{left:576.000000pt;}
.x7c_c00308{left:576.960000pt;}
.xcb_c00308{left:578.293333pt;}
.x39_c00308{left:580.000000pt;}
.x89_c00308{left:580.960000pt;}
.x93_c00308{left:582.293333pt;}
.x44_c00308{left:584.000000pt;}
.x9c_c00308{left:586.293333pt;}
.x71_c00308{left:588.000000pt;}
.x2f_c00308{left:589.706667pt;}
.x14_c00308{left:591.626667pt;}
.xeb_c00308{left:593.333333pt;}
.xe3_c00308{left:596.000000pt;}
.xe9_c00308{left:597.333333pt;}
.xb3_c00308{left:599.040000pt;}
.x45_c00308{left:600.000000pt;}
.xbe_c00308{left:602.666667pt;}
.x8a_c00308{left:607.626667pt;}
.x3a_c00308{left:609.706667pt;}
.x50_c00308{left:611.626667pt;}
.x5b_c00308{left:613.333333pt;}
.x72_c00308{left:614.666667pt;}
.xbf_c00308{left:620.373333pt;}
.x83_c00308{left:621.333333pt;}
.x64_c00308{left:624.000000pt;}
.x2_c00308{left:626.293333pt;}
.x51_c00308{left:628.000000pt;}
.xb7_c00308{left:636.960000pt;}
.x65_c00308{left:638.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_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_af341ae19d84a717648267c4.woff2')format("woff");}.ff1_c00309{font-family:ff1_c00309;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mbd_c00309{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.me1_c00309{transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);}
.mcc_c00309{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m32_c00309{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mc3_c00309{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mc8_c00309{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m9e_c00309{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.meb_c00309{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mc7_c00309{transform:matrix(0.377301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377301,0.000000,0.000000,0.250000,0,0);}
.md_c00309{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m4e_c00309{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mc0_c00309{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m43_c00309{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m4d_c00309{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m21_c00309{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m7c_c00309{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m72_c00309{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m6c_c00309{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m7a_c00309{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.md1_c00309{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m92_c00309{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m31_c00309{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m65_c00309{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m67_c00309{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m4_c00309{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.mc4_c00309{transform:matrix(0.405291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405291,0.000000,0.000000,0.250000,0,0);}
.m3f_c00309{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.maa_c00309{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m85_c00309{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m4b_c00309{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m77_c00309{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.md6_c00309{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m94_c00309{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m69_c00309{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m34_c00309{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.mb7_c00309{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.mbb_c00309{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m66_c00309{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mf_c00309{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.mdc_c00309{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.ma8_c00309{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m58_c00309{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m9a_c00309{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mc9_c00309{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m76_c00309{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mda_c00309{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m2e_c00309{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m98_c00309{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m4c_c00309{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m6e_c00309{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m2a_c00309{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.med_c00309{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.maf_c00309{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m75_c00309{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m10_c00309{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.m83_c00309{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.mdb_c00309{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.mb4_c00309{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m84_c00309{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m39_c00309{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.mbe_c00309{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mbc_c00309{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mb6_c00309{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m19_c00309{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mbf_c00309{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m56_c00309{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.md4_c00309{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.me0_c00309{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mea_c00309{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mef_c00309{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.mb1_c00309{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.mdf_c00309{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m6a_c00309{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.me7_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);}
.m9_c00309{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m3_c00309{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m93_c00309{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m6b_c00309{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.mc6_c00309{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.md0_c00309{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m90_c00309{transform:matrix(0.454622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454622,0.000000,0.000000,0.250000,0,0);}
.mc_c00309{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.md7_c00309{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m3b_c00309{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m91_c00309{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m1b_c00309{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m74_c00309{transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);}
.me8_c00309{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m88_c00309{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.m80_c00309{transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);}
.m2f_c00309{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m4f_c00309{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m97_c00309{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.ma_c00309{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m33_c00309{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.ma2_c00309{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m1d_c00309{transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);}
.mb_c00309{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.md5_c00309{transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);}
.md3_c00309{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.md8_c00309{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m11_c00309{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m30_c00309{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m5b_c00309{transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);}
.m0_c00309{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mb3_c00309{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mcb_c00309{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m26_c00309{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.mae_c00309{transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);}
.m37_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);}
.m2d_c00309{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m9d_c00309{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m47_c00309{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m8f_c00309{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.ma6_c00309{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mc2_c00309{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m28_c00309{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m7e_c00309{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mab_c00309{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mb8_c00309{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m25_c00309{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m49_c00309{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m60_c00309{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.mc5_c00309{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m20_c00309{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.me4_c00309{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m96_c00309{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m50_c00309{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m41_c00309{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m55_c00309{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m14_c00309{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m73_c00309{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mc1_c00309{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.ma0_c00309{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m7f_c00309{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m89_c00309{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m40_c00309{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m8_c00309{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m3d_c00309{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.ma3_c00309{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m9c_c00309{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m29_c00309{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m17_c00309{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m79_c00309{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m3e_c00309{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m1a_c00309{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mba_c00309{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m7_c00309{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mdd_c00309{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m7b_c00309{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mce_c00309{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m35_c00309{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m6f_c00309{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m1c_c00309{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m68_c00309{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m52_c00309{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m8d_c00309{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m64_c00309{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m15_c00309{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.ma1_c00309{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m3c_c00309{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m2b_c00309{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m24_c00309{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.ma4_c00309{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mb9_c00309{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m27_c00309{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mb2_c00309{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m8b_c00309{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m23_c00309{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m13_c00309{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m8c_c00309{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mee_c00309{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m78_c00309{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.m3a_c00309{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.mac_c00309{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.m51_c00309{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m42_c00309{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m8e_c00309{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m81_c00309{transform:matrix(0.570965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570965,0.000000,0.000000,0.250000,0,0);}
.m12_c00309{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m6d_c00309{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m2c_c00309{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m5a_c00309{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m5c_c00309{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m63_c00309{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m4a_c00309{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.me_c00309{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m36_c00309{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m22_c00309{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m48_c00309{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mde_c00309{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m87_c00309{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.me9_c00309{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m9f_c00309{transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);}
.m82_c00309{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m99_c00309{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m5e_c00309{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m44_c00309{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m95_c00309{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m53_c00309{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m46_c00309{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.mcd_c00309{transform:matrix(0.594917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594917,0.000000,0.000000,0.250000,0,0);}
.md9_c00309{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.m18_c00309{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mb5_c00309{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mad_c00309{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.mcf_c00309{transform:matrix(0.606328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606328,0.000000,0.000000,0.250000,0,0);}
.m7d_c00309{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m1_c00309{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.me2_c00309{transform:matrix(0.612552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612552,0.000000,0.000000,0.250000,0,0);}
.m6_c00309{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m5d_c00309{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m61_c00309{transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);}
.mca_c00309{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);}
.m16_c00309{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m8a_c00309{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);}
.md2_c00309{transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);}
.ma5_c00309{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.me3_c00309{transform:matrix(0.656120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656120,0.000000,0.000000,0.250000,0,0);}
.mec_c00309{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m5_c00309{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m71_c00309{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.me5_c00309{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m9b_c00309{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m86_c00309{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m57_c00309{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m1f_c00309{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.m59_c00309{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m70_c00309{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m45_c00309{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m2_c00309{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m62_c00309{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m38_c00309{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m5f_c00309{transform:matrix(0.768429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.768429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.768429,0.000000,0.000000,0.250000,0,0);}
.m54_c00309{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m1e_c00309{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.ma9_c00309{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.me6_c00309{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.ma7_c00309{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mb0_c00309{transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);}
.v0_c00309{vertical-align:0.000000px;}
.v1_c00309{vertical-align:12.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:-5.250760px;}
.ws1_c00309{word-spacing:-1.219898px;}
.ws2_c00309{word-spacing:0.000000px;}
.fc0_c00309{color:transparent;}
.fs5_c00309{font-size:18.720000px;}
.fs1_c00309{font-size:20.400000px;}
.fs2_c00309{font-size:25.500000px;}
.fs0_c00309{font-size:28.920000px;}
.fs3_c00309{font-size:32.340000px;}
.fs4_c00309{font-size:35.700000px;}
.fs6_c00309{font-size:39.120000px;}
.y0_c00309{bottom:0.000000px;}
.yc8_c00309{bottom:289.245000px;}
.yc5_c00309{bottom:289.905000px;}
.yc7_c00309{bottom:290.130000px;}
.yc9_c00309{bottom:290.970000px;}
.yc6_c00309{bottom:291.405000px;}
.yc4_c00309{bottom:307.905000px;}
.yc2_c00309{bottom:308.745000px;}
.yc1_c00309{bottom:310.905000px;}
.yc3_c00309{bottom:311.130000px;}
.ybf_c00309{bottom:327.405000px;}
.yba_c00309{bottom:328.245000px;}
.ybb_c00309{bottom:329.325000px;}
.yc0_c00309{bottom:329.745000px;}
.ybc_c00309{bottom:330.405000px;}
.ybe_c00309{bottom:330.630000px;}
.ybd_c00309{bottom:331.905000px;}
.yb6_c00309{bottom:346.905000px;}
.yb8_c00309{bottom:347.745000px;}
.yb5_c00309{bottom:349.050000px;}
.yb4_c00309{bottom:349.905000px;}
.yb9_c00309{bottom:350.130000px;}
.yb7_c00309{bottom:350.970000px;}
.yad_c00309{bottom:367.245000px;}
.yb3_c00309{bottom:367.680000px;}
.yb2_c00309{bottom:367.905000px;}
.yb0_c00309{bottom:368.745000px;}
.yae_c00309{bottom:369.405000px;}
.yaf_c00309{bottom:369.630000px;}
.yb1_c00309{bottom:370.905000px;}
.ya8_c00309{bottom:387.405000px;}
.yac_c00309{bottom:388.245000px;}
.yaa_c00309{bottom:389.130000px;}
.ya9_c00309{bottom:390.405000px;}
.yab_c00309{bottom:390.630000px;}
.ya7_c00309{bottom:407.745000px;}
.ya6_c00309{bottom:407.970000px;}
.ya5_c00309{bottom:408.825000px;}
.ya4_c00309{bottom:409.905000px;}
.ya2_c00309{bottom:426.405000px;}
.ya1_c00309{bottom:427.245000px;}
.ya0_c00309{bottom:428.550000px;}
.y9f_c00309{bottom:429.405000px;}
.ya3_c00309{bottom:429.630000px;}
.y9a_c00309{bottom:445.680000px;}
.y9c_c00309{bottom:446.745000px;}
.y9e_c00309{bottom:448.245000px;}
.y99_c00309{bottom:448.905000px;}
.y9d_c00309{bottom:449.130000px;}
.y9b_c00309{bottom:449.970000px;}
.y97_c00309{bottom:466.680000px;}
.y96_c00309{bottom:467.745000px;}
.y98_c00309{bottom:468.825000px;}
.y95_c00309{bottom:469.905000px;}
.y94_c00309{bottom:485.325000px;}
.y93_c00309{bottom:487.245000px;}
.y91_c00309{bottom:488.970000px;}
.y92_c00309{bottom:489.405000px;}
.y90_c00309{bottom:505.245000px;}
.y8c_c00309{bottom:506.745000px;}
.y8d_c00309{bottom:507.825000px;}
.y8b_c00309{bottom:508.905000px;}
.y8e_c00309{bottom:509.130000px;}
.y8f_c00309{bottom:509.970000px;}
.y89_c00309{bottom:526.245000px;}
.y88_c00309{bottom:528.405000px;}
.y8a_c00309{bottom:529.470000px;}
.y84_c00309{bottom:545.745000px;}
.y85_c00309{bottom:546.825000px;}
.y87_c00309{bottom:547.245000px;}
.y83_c00309{bottom:547.905000px;}
.y82_c00309{bottom:548.130000px;}
.y86_c00309{bottom:549.405000px;}
.y7f_c00309{bottom:565.245000px;}
.y7e_c00309{bottom:566.745000px;}
.y80_c00309{bottom:567.405000px;}
.y7d_c00309{bottom:567.630000px;}
.y81_c00309{bottom:567.825000px;}
.y7c_c00309{bottom:568.905000px;}
.y78_c00309{bottom:584.970000px;}
.y7b_c00309{bottom:586.245000px;}
.y7a_c00309{bottom:587.130000px;}
.y77_c00309{bottom:587.970000px;}
.y79_c00309{bottom:588.405000px;}
.y76_c00309{bottom:607.470000px;}
.y75_c00309{bottom:607.905000px;}
.y74_c00309{bottom:625.245000px;}
.y73_c00309{bottom:627.405000px;}
.y6f_c00309{bottom:642.405000px;}
.y6e_c00309{bottom:644.745000px;}
.y70_c00309{bottom:645.630000px;}
.y72_c00309{bottom:646.470000px;}
.y71_c00309{bottom:646.905000px;}
.y69_c00309{bottom:664.245000px;}
.y6d_c00309{bottom:665.550000px;}
.y6a_c00309{bottom:666.405000px;}
.y6b_c00309{bottom:666.630000px;}
.y6c_c00309{bottom:667.470000px;}
.y64_c00309{bottom:682.905000px;}
.y62_c00309{bottom:683.745000px;}
.y65_c00309{bottom:685.245000px;}
.y63_c00309{bottom:685.905000px;}
.y68_c00309{bottom:686.325000px;}
.y67_c00309{bottom:686.970000px;}
.y66_c00309{bottom:687.405000px;}
.y5f_c00309{bottom:704.745000px;}
.y5e_c00309{bottom:705.405000px;}
.y61_c00309{bottom:705.825000px;}
.y60_c00309{bottom:706.905000px;}
.y5b_c00309{bottom:724.245000px;}
.y5a_c00309{bottom:724.905000px;}
.y5d_c00309{bottom:725.970000px;}
.y5c_c00309{bottom:726.405000px;}
.y58_c00309{bottom:743.745000px;}
.y59_c00309{bottom:744.630000px;}
.y56_c00309{bottom:745.470000px;}
.y57_c00309{bottom:745.905000px;}
.y55_c00309{bottom:762.405000px;}
.y52_c00309{bottom:763.245000px;}
.y51_c00309{bottom:764.325000px;}
.y50_c00309{bottom:765.405000px;}
.y53_c00309{bottom:765.630000px;}
.y54_c00309{bottom:766.470000px;}
.y4b_c00309{bottom:782.745000px;}
.y4d_c00309{bottom:783.825000px;}
.y4c_c00309{bottom:784.905000px;}
.y4e_c00309{bottom:785.130000px;}
.y4f_c00309{bottom:785.970000px;}
.y48_c00309{bottom:801.405000px;}
.y47_c00309{bottom:802.245000px;}
.y46_c00309{bottom:804.405000px;}
.y49_c00309{bottom:804.630000px;}
.y4a_c00309{bottom:805.470000px;}
.y45_c00309{bottom:821.970000px;}
.y43_c00309{bottom:823.245000px;}
.y42_c00309{bottom:823.905000px;}
.y44_c00309{bottom:825.405000px;}
.y3e_c00309{bottom:841.470000px;}
.y41_c00309{bottom:842.325000px;}
.y3c_c00309{bottom:842.745000px;}
.y3d_c00309{bottom:843.630000px;}
.y3b_c00309{bottom:843.825000px;}
.y40_c00309{bottom:844.470000px;}
.y3a_c00309{bottom:844.905000px;}
.y3f_c00309{bottom:845.970000px;}
.y37_c00309{bottom:862.245000px;}
.y38_c00309{bottom:863.130000px;}
.y36_c00309{bottom:864.405000px;}
.y39_c00309{bottom:865.470000px;}
.y34_c00309{bottom:880.245000px;}
.y35_c00309{bottom:881.745000px;}
.y31_c00309{bottom:882.630000px;}
.y32_c00309{bottom:883.470000px;}
.y30_c00309{bottom:883.905000px;}
.y33_c00309{bottom:884.970000px;}
.y2f_c00309{bottom:900.825000px;}
.y2e_c00309{bottom:901.245000px;}
.y2d_c00309{bottom:902.130000px;}
.y2c_c00309{bottom:903.405000px;}
.y2b_c00309{bottom:920.745000px;}
.y2a_c00309{bottom:922.905000px;}
.y23_c00309{bottom:937.905000px;}
.y24_c00309{bottom:940.245000px;}
.y26_c00309{bottom:941.970000px;}
.y25_c00309{bottom:942.405000px;}
.y27_c00309{bottom:942.630000px;}
.y28_c00309{bottom:943.470000px;}
.y29_c00309{bottom:943.905000px;}
.y1e_c00309{bottom:959.745000px;}
.y1d_c00309{bottom:959.970000px;}
.y22_c00309{bottom:960.825000px;}
.y20_c00309{bottom:961.245000px;}
.y1b_c00309{bottom:961.905000px;}
.y1f_c00309{bottom:962.130000px;}
.y1c_c00309{bottom:962.970000px;}
.y21_c00309{bottom:963.405000px;}
.y18_c00309{bottom:979.245000px;}
.y1a_c00309{bottom:980.745000px;}
.y17_c00309{bottom:981.405000px;}
.y19_c00309{bottom:982.905000px;}
.y16_c00309{bottom:1000.245000px;}
.y13_c00309{bottom:1000.905000px;}
.y14_c00309{bottom:1001.970000px;}
.y15_c00309{bottom:1002.405000px;}
.y12_c00309{bottom:1019.745000px;}
.ye_c00309{bottom:1020.405000px;}
.y11_c00309{bottom:1020.630000px;}
.y10_c00309{bottom:1020.825000px;}
.yf_c00309{bottom:1021.470000px;}
.yd_c00309{bottom:1021.905000px;}
.ya_c00309{bottom:1039.245000px;}
.yb_c00309{bottom:1040.325000px;}
.y9_c00309{bottom:1041.405000px;}
.yc_c00309{bottom:1042.470000px;}
.y8_c00309{bottom:1057.905000px;}
.y5_c00309{bottom:1058.745000px;}
.y4_c00309{bottom:1059.825000px;}
.y6_c00309{bottom:1060.470000px;}
.y7_c00309{bottom:1060.905000px;}
.y3_c00309{bottom:1061.970000px;}
.y2_c00309{bottom:1099.050000px;}
.y1_c00309{bottom:1099.905000px;}
.h6_c00309{height:23.025234px;}
.h2_c00309{height:25.091602px;}
.h3_c00309{height:31.364502px;}
.h1_c00309{height:35.571035px;}
.h4_c00309{height:39.777568px;}
.h5_c00309{height:43.910303px;}
.h8_c00309{height:47.571035px;}
.h7_c00309{height:48.116836px;}
.h0_c00309{height:1335.000000px;}
.w0_c00309{width:880.500000px;}
.x0_c00309{left:0.000000px;}
.xd1_c00309{left:151.500000px;}
.x1b_c00309{left:153.000000px;}
.x1_c00309{left:154.080000px;}
.x113_c00309{left:166.920000px;}
.xc6_c00309{left:168.000000px;}
.x3_c00309{left:169.500000px;}
.xee_c00309{left:170.580000px;}
.x4f_c00309{left:172.920000px;}
.x6c_c00309{left:174.000000px;}
.xd2_c00309{left:180.000000px;}
.xf_c00309{left:181.500000px;}
.x75_c00309{left:183.000000px;}
.x28_c00309{left:184.500000px;}
.x1c_c00309{left:186.000000px;}
.x63_c00309{left:189.420000px;}
.x32_c00309{left:190.920000px;}
.x4_c00309{left:192.000000px;}
.xe3_c00309{left:193.920000px;}
.x101_c00309{left:196.080000px;}
.x86_c00309{left:198.000000px;}
.xc2_c00309{left:201.000000px;}
.x81_c00309{left:202.500000px;}
.x29_c00309{left:204.420000px;}
.xf8_c00309{left:205.500000px;}
.xa4_c00309{left:207.000000px;}
.xdd_c00309{left:208.920000px;}
.x8f_c00309{left:211.920000px;}
.x64_c00309{left:214.080000px;}
.xf4_c00309{left:216.420000px;}
.x50_c00309{left:217.500000px;}
.x33_c00309{left:219.000000px;}
.x105_c00309{left:220.500000px;}
.x76_c00309{left:223.500000px;}
.x1d_c00309{left:225.000000px;}
.xeb_c00309{left:226.080000px;}
.xe4_c00309{left:228.000000px;}
.xd3_c00309{left:229.080000px;}
.x2a_c00309{left:231.000000px;}
.xbb_c00309{left:232.080000px;}
.x10d_c00309{left:233.775000px;}
.x87_c00309{left:235.920000px;}
.xde_c00309{left:237.000000px;}
.xf5_c00309{left:238.500000px;}
.x1e_c00309{left:244.500000px;}
.x90_c00309{left:246.000000px;}
.xb3_c00309{left:247.920000px;}
.xa5_c00309{left:249.420000px;}
.x114_c00309{left:250.920000px;}
.xf9_c00309{left:252.000000px;}
.x34_c00309{left:255.000000px;}
.xec_c00309{left:256.080000px;}
.x91_c00309{left:259.080000px;}
.x9b_c00309{left:261.000000px;}
.xbc_c00309{left:262.500000px;}
.x10_c00309{left:265.080000px;}
.x5_c00309{left:267.000000px;}
.x57_c00309{left:268.500000px;}
.xef_c00309{left:270.420000px;}
.x65_c00309{left:271.500000px;}
.xc3_c00309{left:273.000000px;}
.x3c_c00309{left:276.000000px;}
.xdf_c00309{left:279.000000px;}
.xc4_c00309{left:285.420000px;}
.x77_c00309{left:286.500000px;}
.x2b_c00309{left:289.920000px;}
.xd8_c00309{left:292.920000px;}
.xfd_c00309{left:294.420000px;}
.x3d_c00309{left:295.920000px;}
.x9c_c00309{left:297.000000px;}
.x6d_c00309{left:298.920000px;}
.x1f_c00309{left:300.420000px;}
.xcb_c00309{left:301.500000px;}
.x51_c00309{left:302.580000px;}
.xae_c00309{left:307.500000px;}
.xa6_c00309{left:309.000000px;}
.x47_c00309{left:316.920000px;}
.xf6_c00309{left:318.420000px;}
.x9d_c00309{left:319.500000px;}
.xc5_c00309{left:321.000000px;}
.x3e_c00309{left:322.500000px;}
.x102_c00309{left:324.000000px;}
.x6e_c00309{left:325.500000px;}
.x58_c00309{left:327.420000px;}
.x66_c00309{left:328.500000px;}
.xd4_c00309{left:329.580000px;}
.x92_c00309{left:331.080000px;}
.xf0_c00309{left:334.500000px;}
.x6_c00309{left:337.500000px;}
.x11_c00309{left:338.580000px;}
.xbd_c00309{left:342.000000px;}
.xcc_c00309{left:343.920000px;}
.xfa_c00309{left:348.000000px;}
.x88_c00309{left:349.500000px;}
.x59_c00309{left:351.420000px;}
.x10e_c00309{left:352.920000px;}
.x3f_c00309{left:354.420000px;}
.x7_c00309{left:357.000000px;}
.x67_c00309{left:360.420000px;}
.x48_c00309{left:361.500000px;}
.xe5_c00309{left:362.580000px;}
.xd9_c00309{left:364.920000px;}
.x6f_c00309{left:366.000000px;}
.xed_c00309{left:367.500000px;}
.x78_c00309{left:369.000000px;}
.xaf_c00309{left:370.500000px;}
.xb4_c00309{left:372.420000px;}
.x35_c00309{left:373.500000px;}
.x9e_c00309{left:376.500000px;}
.xa7_c00309{left:377.580000px;}
.x49_c00309{left:379.920000px;}
.xcd_c00309{left:381.420000px;}
.xfe_c00309{left:382.500000px;}
.x106_c00309{left:383.580000px;}
.x8_c00309{left:385.080000px;}
.xd5_c00309{left:387.420000px;}
.x20_c00309{left:388.920000px;}
.x40_c00309{left:390.000000px;}
.xbe_c00309{left:391.500000px;}
.xb0_c00309{left:393.420000px;}
.x52_c00309{left:394.500000px;}
.x12_c00309{left:395.580000px;}
.xb5_c00309{left:400.920000px;}
.x109_c00309{left:403.500000px;}
.x2_c00309{left:405.000000px;}
.xe6_c00309{left:408.000000px;}
.x89_c00309{left:409.080000px;}
.x9f_c00309{left:411.000000px;}
.xff_c00309{left:412.920000px;}
.x13_c00309{left:414.420000px;}
.x41_c00309{left:417.420000px;}
.x21_c00309{left:418.920000px;}
.xe0_c00309{left:420.000000px;}
.x36_c00309{left:423.000000px;}
.xbf_c00309{left:425.580000px;}
.x5a_c00309{left:427.500000px;}
.x10f_c00309{left:429.000000px;}
.x2c_c00309{left:430.920000px;}
.x68_c00309{left:433.920000px;}
.xa8_c00309{left:436.920000px;}
.xb1_c00309{left:438.000000px;}
.x5b_c00309{left:439.500000px;}
.x8a_c00309{left:441.420000px;}
.x93_c00309{left:442.920000px;}
.x82_c00309{left:444.000000px;}
.x9_c00309{left:447.645000px;}
.x14_c00309{left:449.580000px;}
.xb6_c00309{left:453.000000px;}
.x70_c00309{left:454.920000px;}
.xfb_c00309{left:457.080000px;}
.x2d_c00309{left:458.145000px;}
.x22_c00309{left:462.000000px;}
.xa9_c00309{left:465.000000px;}
.xa0_c00309{left:468.000000px;}
.x8b_c00309{left:471.000000px;}
.x53_c00309{left:475.500000px;}
.x4a_c00309{left:478.500000px;}
.xb7_c00309{left:480.000000px;}
.x69_c00309{left:482.580000px;}
.x37_c00309{left:484.080000px;}
.x96_c00309{left:485.580000px;}
.xc7_c00309{left:491.145000px;}
.x5c_c00309{left:492.420000px;}
.xb2_c00309{left:493.500000px;}
.x71_c00309{left:495.000000px;}
.x79_c00309{left:496.500000px;}
.x42_c00309{left:499.500000px;}
.x4b_c00309{left:502.500000px;}
.xa_c00309{left:503.580000px;}
.xe7_c00309{left:508.080000px;}
.x83_c00309{left:509.580000px;}
.xfc_c00309{left:511.500000px;}
.x7a_c00309{left:513.420000px;}
.x110_c00309{left:514.920000px;}
.xd6_c00309{left:517.500000px;}
.x2e_c00309{left:519.000000px;}
.x10a_c00309{left:520.920000px;}
.x94_c00309{left:522.000000px;}
.xda_c00309{left:525.420000px;}
.xa1_c00309{left:529.920000px;}
.x72_c00309{left:531.000000px;}
.x5d_c00309{left:532.500000px;}
.x15_c00309{left:534.000000px;}
.xcf_c00309{left:535.080000px;}
.x4c_c00309{left:536.145000px;}
.xf1_c00309{left:538.080000px;}
.x84_c00309{left:540.000000px;}
.xb_c00309{left:541.500000px;}
.x73_c00309{left:543.000000px;}
.x6a_c00309{left:544.500000px;}
.xb8_c00309{left:546.000000px;}
.x7b_c00309{left:551.580000px;}
.x23_c00309{left:553.920000px;}
.x10b_c00309{left:555.420000px;}
.x43_c00309{left:556.500000px;}
.xc8_c00309{left:558.420000px;}
.x97_c00309{left:560.580000px;}
.xf2_c00309{left:563.580000px;}
.x38_c00309{left:565.275000px;}
.xc0_c00309{left:568.920000px;}
.x7c_c00309{left:570.000000px;}
.x5e_c00309{left:571.500000px;}
.x100_c00309{left:573.000000px;}
.x115_c00309{left:578.580000px;}
.x16_c00309{left:580.080000px;}
.x44_c00309{left:581.580000px;}
.x8c_c00309{left:583.500000px;}
.x7d_c00309{left:584.580000px;}
.xdb_c00309{left:586.500000px;}
.x2f_c00309{left:588.420000px;}
.xaa_c00309{left:589.500000px;}
.xc1_c00309{left:591.000000px;}
.x98_c00309{left:592.500000px;}
.x107_c00309{left:595.275000px;}
.x111_c00309{left:597.000000px;}
.x54_c00309{left:598.500000px;}
.xb9_c00309{left:603.000000px;}
.xe8_c00309{left:604.500000px;}
.x39_c00309{left:606.000000px;}
.x4d_c00309{left:607.080000px;}
.xab_c00309{left:609.000000px;}
.x17_c00309{left:610.500000px;}
.x24_c00309{left:612.000000px;}
.x5f_c00309{left:613.080000px;}
.x7e_c00309{left:615.000000px;}
.xd0_c00309{left:616.500000px;}
.x112_c00309{left:618.420000px;}
.x55_c00309{left:620.580000px;}
.x30_c00309{left:622.920000px;}
.x3a_c00309{left:624.000000px;}
.xe1_c00309{left:627.000000px;}
.xc_c00309{left:631.080000px;}
.x25_c00309{left:633.420000px;}
.xc9_c00309{left:634.920000px;}
.x18_c00309{left:636.420000px;}
.x10c_c00309{left:637.920000px;}
.xa2_c00309{left:643.080000px;}
.x60_c00309{left:645.000000px;}
.xac_c00309{left:646.500000px;}
.x116_c00309{left:647.580000px;}
.xe9_c00309{left:649.920000px;}
.x95_c00309{left:651.000000px;}
.xce_c00309{left:652.080000px;}
.xd_c00309{left:653.355000px;}
.x74_c00309{left:655.500000px;}
.x45_c00309{left:657.000000px;}
.x103_c00309{left:658.920000px;}
.x7f_c00309{left:660.000000px;}
.x26_c00309{left:661.920000px;}
.xca_c00309{left:663.000000px;}
.x99_c00309{left:666.000000px;}
.x19_c00309{left:667.920000px;}
.x85_c00309{left:669.000000px;}
.xdc_c00309{left:671.145000px;}
.x31_c00309{left:673.920000px;}
.x61_c00309{left:675.420000px;}
.x56_c00309{left:676.500000px;}
.x3b_c00309{left:678.000000px;}
.xa3_c00309{left:679.500000px;}
.xba_c00309{left:681.420000px;}
.x104_c00309{left:685.500000px;}
.x9a_c00309{left:688.920000px;}
.x6b_c00309{left:690.000000px;}
.xe_c00309{left:691.275000px;}
.x8d_c00309{left:693.000000px;}
.x4e_c00309{left:694.500000px;}
.x108_c00309{left:696.000000px;}
.xea_c00309{left:697.080000px;}
.x27_c00309{left:699.000000px;}
.x1a_c00309{left:700.920000px;}
.x46_c00309{left:703.080000px;}
.x80_c00309{left:704.580000px;}
.xf3_c00309{left:706.920000px;}
.xe2_c00309{left:708.420000px;}
.xd7_c00309{left:709.500000px;}
.xad_c00309{left:711.000000px;}
.xf7_c00309{left:712.080000px;}
.x8e_c00309{left:715.080000px;}
.x62_c00309{left:717.000000px;}
@media print{
.v0_c00309{vertical-align:0.000000pt;}
.v1_c00309{vertical-align:10.666667pt;}
.ls0_c00309{letter-spacing:0.000000pt;}
.ws0_c00309{word-spacing:-4.667342pt;}
.ws1_c00309{word-spacing:-1.084354pt;}
.ws2_c00309{word-spacing:0.000000pt;}
.fs5_c00309{font-size:16.640000pt;}
.fs1_c00309{font-size:18.133333pt;}
.fs2_c00309{font-size:22.666667pt;}
.fs0_c00309{font-size:25.706667pt;}
.fs3_c00309{font-size:28.746667pt;}
.fs4_c00309{font-size:31.733333pt;}
.fs6_c00309{font-size:34.773333pt;}
.y0_c00309{bottom:0.000000pt;}
.yc8_c00309{bottom:257.106667pt;}
.yc5_c00309{bottom:257.693333pt;}
.yc7_c00309{bottom:257.893333pt;}
.yc9_c00309{bottom:258.640000pt;}
.yc6_c00309{bottom:259.026667pt;}
.yc4_c00309{bottom:273.693333pt;}
.yc2_c00309{bottom:274.440000pt;}
.yc1_c00309{bottom:276.360000pt;}
.yc3_c00309{bottom:276.560000pt;}
.ybf_c00309{bottom:291.026667pt;}
.yba_c00309{bottom:291.773333pt;}
.ybb_c00309{bottom:292.733333pt;}
.yc0_c00309{bottom:293.106667pt;}
.ybc_c00309{bottom:293.693333pt;}
.ybe_c00309{bottom:293.893333pt;}
.ybd_c00309{bottom:295.026667pt;}
.yb6_c00309{bottom:308.360000pt;}
.yb8_c00309{bottom:309.106667pt;}
.yb5_c00309{bottom:310.266667pt;}
.yb4_c00309{bottom:311.026667pt;}
.yb9_c00309{bottom:311.226667pt;}
.yb7_c00309{bottom:311.973333pt;}
.yad_c00309{bottom:326.440000pt;}
.yb3_c00309{bottom:326.826667pt;}
.yb2_c00309{bottom:327.026667pt;}
.yb0_c00309{bottom:327.773333pt;}
.yae_c00309{bottom:328.360000pt;}
.yaf_c00309{bottom:328.560000pt;}
.yb1_c00309{bottom:329.693333pt;}
.ya8_c00309{bottom:344.360000pt;}
.yac_c00309{bottom:345.106667pt;}
.yaa_c00309{bottom:345.893333pt;}
.ya9_c00309{bottom:347.026667pt;}
.yab_c00309{bottom:347.226667pt;}
.ya7_c00309{bottom:362.440000pt;}
.ya6_c00309{bottom:362.640000pt;}
.ya5_c00309{bottom:363.400000pt;}
.ya4_c00309{bottom:364.360000pt;}
.ya2_c00309{bottom:379.026667pt;}
.ya1_c00309{bottom:379.773333pt;}
.ya0_c00309{bottom:380.933333pt;}
.y9f_c00309{bottom:381.693333pt;}
.ya3_c00309{bottom:381.893333pt;}
.y9a_c00309{bottom:396.160000pt;}
.y9c_c00309{bottom:397.106667pt;}
.y9e_c00309{bottom:398.440000pt;}
.y99_c00309{bottom:399.026667pt;}
.y9d_c00309{bottom:399.226667pt;}
.y9b_c00309{bottom:399.973333pt;}
.y97_c00309{bottom:414.826667pt;}
.y96_c00309{bottom:415.773333pt;}
.y98_c00309{bottom:416.733333pt;}
.y95_c00309{bottom:417.693333pt;}
.y94_c00309{bottom:431.400000pt;}
.y93_c00309{bottom:433.106667pt;}
.y91_c00309{bottom:434.640000pt;}
.y92_c00309{bottom:435.026667pt;}
.y90_c00309{bottom:449.106667pt;}
.y8c_c00309{bottom:450.440000pt;}
.y8d_c00309{bottom:451.400000pt;}
.y8b_c00309{bottom:452.360000pt;}
.y8e_c00309{bottom:452.560000pt;}
.y8f_c00309{bottom:453.306667pt;}
.y89_c00309{bottom:467.773333pt;}
.y88_c00309{bottom:469.693333pt;}
.y8a_c00309{bottom:470.640000pt;}
.y84_c00309{bottom:485.106667pt;}
.y85_c00309{bottom:486.066667pt;}
.y87_c00309{bottom:486.440000pt;}
.y83_c00309{bottom:487.026667pt;}
.y82_c00309{bottom:487.226667pt;}
.y86_c00309{bottom:488.360000pt;}
.y7f_c00309{bottom:502.440000pt;}
.y7e_c00309{bottom:503.773333pt;}
.y80_c00309{bottom:504.360000pt;}
.y7d_c00309{bottom:504.560000pt;}
.y81_c00309{bottom:504.733333pt;}
.y7c_c00309{bottom:505.693333pt;}
.y78_c00309{bottom:519.973333pt;}
.y7b_c00309{bottom:521.106667pt;}
.y7a_c00309{bottom:521.893333pt;}
.y77_c00309{bottom:522.640000pt;}
.y79_c00309{bottom:523.026667pt;}
.y76_c00309{bottom:539.973333pt;}
.y75_c00309{bottom:540.360000pt;}
.y74_c00309{bottom:555.773333pt;}
.y73_c00309{bottom:557.693333pt;}
.y6f_c00309{bottom:571.026667pt;}
.y6e_c00309{bottom:573.106667pt;}
.y70_c00309{bottom:573.893333pt;}
.y72_c00309{bottom:574.640000pt;}
.y71_c00309{bottom:575.026667pt;}
.y69_c00309{bottom:590.440000pt;}
.y6d_c00309{bottom:591.600000pt;}
.y6a_c00309{bottom:592.360000pt;}
.y6b_c00309{bottom:592.560000pt;}
.y6c_c00309{bottom:593.306667pt;}
.y64_c00309{bottom:607.026667pt;}
.y62_c00309{bottom:607.773333pt;}
.y65_c00309{bottom:609.106667pt;}
.y63_c00309{bottom:609.693333pt;}
.y68_c00309{bottom:610.066667pt;}
.y67_c00309{bottom:610.640000pt;}
.y66_c00309{bottom:611.026667pt;}
.y5f_c00309{bottom:626.440000pt;}
.y5e_c00309{bottom:627.026667pt;}
.y61_c00309{bottom:627.400000pt;}
.y60_c00309{bottom:628.360000pt;}
.y5b_c00309{bottom:643.773333pt;}
.y5a_c00309{bottom:644.360000pt;}
.y5d_c00309{bottom:645.306667pt;}
.y5c_c00309{bottom:645.693333pt;}
.y58_c00309{bottom:661.106667pt;}
.y59_c00309{bottom:661.893333pt;}
.y56_c00309{bottom:662.640000pt;}
.y57_c00309{bottom:663.026667pt;}
.y55_c00309{bottom:677.693333pt;}
.y52_c00309{bottom:678.440000pt;}
.y51_c00309{bottom:679.400000pt;}
.y50_c00309{bottom:680.360000pt;}
.y53_c00309{bottom:680.560000pt;}
.y54_c00309{bottom:681.306667pt;}
.y4b_c00309{bottom:695.773333pt;}
.y4d_c00309{bottom:696.733333pt;}
.y4c_c00309{bottom:697.693333pt;}
.y4e_c00309{bottom:697.893333pt;}
.y4f_c00309{bottom:698.640000pt;}
.y48_c00309{bottom:712.360000pt;}
.y47_c00309{bottom:713.106667pt;}
.y46_c00309{bottom:715.026667pt;}
.y49_c00309{bottom:715.226667pt;}
.y4a_c00309{bottom:715.973333pt;}
.y45_c00309{bottom:730.640000pt;}
.y43_c00309{bottom:731.773333pt;}
.y42_c00309{bottom:732.360000pt;}
.y44_c00309{bottom:733.693333pt;}
.y3e_c00309{bottom:747.973333pt;}
.y41_c00309{bottom:748.733333pt;}
.y3c_c00309{bottom:749.106667pt;}
.y3d_c00309{bottom:749.893333pt;}
.y3b_c00309{bottom:750.066667pt;}
.y40_c00309{bottom:750.640000pt;}
.y3a_c00309{bottom:751.026667pt;}
.y3f_c00309{bottom:751.973333pt;}
.y37_c00309{bottom:766.440000pt;}
.y38_c00309{bottom:767.226667pt;}
.y36_c00309{bottom:768.360000pt;}
.y39_c00309{bottom:769.306667pt;}
.y34_c00309{bottom:782.440000pt;}
.y35_c00309{bottom:783.773333pt;}
.y31_c00309{bottom:784.560000pt;}
.y32_c00309{bottom:785.306667pt;}
.y30_c00309{bottom:785.693333pt;}
.y33_c00309{bottom:786.640000pt;}
.y2f_c00309{bottom:800.733333pt;}
.y2e_c00309{bottom:801.106667pt;}
.y2d_c00309{bottom:801.893333pt;}
.y2c_c00309{bottom:803.026667pt;}
.y2b_c00309{bottom:818.440000pt;}
.y2a_c00309{bottom:820.360000pt;}
.y23_c00309{bottom:833.693333pt;}
.y24_c00309{bottom:835.773333pt;}
.y26_c00309{bottom:837.306667pt;}
.y25_c00309{bottom:837.693333pt;}
.y27_c00309{bottom:837.893333pt;}
.y28_c00309{bottom:838.640000pt;}
.y29_c00309{bottom:839.026667pt;}
.y1e_c00309{bottom:853.106667pt;}
.y1d_c00309{bottom:853.306667pt;}
.y22_c00309{bottom:854.066667pt;}
.y20_c00309{bottom:854.440000pt;}
.y1b_c00309{bottom:855.026667pt;}
.y1f_c00309{bottom:855.226667pt;}
.y1c_c00309{bottom:855.973333pt;}
.y21_c00309{bottom:856.360000pt;}
.y18_c00309{bottom:870.440000pt;}
.y1a_c00309{bottom:871.773333pt;}
.y17_c00309{bottom:872.360000pt;}
.y19_c00309{bottom:873.693333pt;}
.y16_c00309{bottom:889.106667pt;}
.y13_c00309{bottom:889.693333pt;}
.y14_c00309{bottom:890.640000pt;}
.y15_c00309{bottom:891.026667pt;}
.y12_c00309{bottom:906.440000pt;}
.ye_c00309{bottom:907.026667pt;}
.y11_c00309{bottom:907.226667pt;}
.y10_c00309{bottom:907.400000pt;}
.yf_c00309{bottom:907.973333pt;}
.yd_c00309{bottom:908.360000pt;}
.ya_c00309{bottom:923.773333pt;}
.yb_c00309{bottom:924.733333pt;}
.y9_c00309{bottom:925.693333pt;}
.yc_c00309{bottom:926.640000pt;}
.y8_c00309{bottom:940.360000pt;}
.y5_c00309{bottom:941.106667pt;}
.y4_c00309{bottom:942.066667pt;}
.y6_c00309{bottom:942.640000pt;}
.y7_c00309{bottom:943.026667pt;}
.y3_c00309{bottom:943.973333pt;}
.y2_c00309{bottom:976.933333pt;}
.y1_c00309{bottom:977.693333pt;}
.h6_c00309{height:20.466875pt;}
.h2_c00309{height:22.303646pt;}
.h3_c00309{height:27.879557pt;}
.h1_c00309{height:31.618698pt;}
.h4_c00309{height:35.357839pt;}
.h5_c00309{height:39.031380pt;}
.h8_c00309{height:42.285365pt;}
.h7_c00309{height:42.770521pt;}
.h0_c00309{height:1186.666667pt;}
.w0_c00309{width:782.666667pt;}
.x0_c00309{left:0.000000pt;}
.xd1_c00309{left:134.666667pt;}
.x1b_c00309{left:136.000000pt;}
.x1_c00309{left:136.960000pt;}
.x113_c00309{left:148.373333pt;}
.xc6_c00309{left:149.333333pt;}
.x3_c00309{left:150.666667pt;}
.xee_c00309{left:151.626667pt;}
.x4f_c00309{left:153.706667pt;}
.x6c_c00309{left:154.666667pt;}
.xd2_c00309{left:160.000000pt;}
.xf_c00309{left:161.333333pt;}
.x75_c00309{left:162.666667pt;}
.x28_c00309{left:164.000000pt;}
.x1c_c00309{left:165.333333pt;}
.x63_c00309{left:168.373333pt;}
.x32_c00309{left:169.706667pt;}
.x4_c00309{left:170.666667pt;}
.xe3_c00309{left:172.373333pt;}
.x101_c00309{left:174.293333pt;}
.x86_c00309{left:176.000000pt;}
.xc2_c00309{left:178.666667pt;}
.x81_c00309{left:180.000000pt;}
.x29_c00309{left:181.706667pt;}
.xf8_c00309{left:182.666667pt;}
.xa4_c00309{left:184.000000pt;}
.xdd_c00309{left:185.706667pt;}
.x8f_c00309{left:188.373333pt;}
.x64_c00309{left:190.293333pt;}
.xf4_c00309{left:192.373333pt;}
.x50_c00309{left:193.333333pt;}
.x33_c00309{left:194.666667pt;}
.x105_c00309{left:196.000000pt;}
.x76_c00309{left:198.666667pt;}
.x1d_c00309{left:200.000000pt;}
.xeb_c00309{left:200.960000pt;}
.xe4_c00309{left:202.666667pt;}
.xd3_c00309{left:203.626667pt;}
.x2a_c00309{left:205.333333pt;}
.xbb_c00309{left:206.293333pt;}
.x10d_c00309{left:207.800000pt;}
.x87_c00309{left:209.706667pt;}
.xde_c00309{left:210.666667pt;}
.xf5_c00309{left:212.000000pt;}
.x1e_c00309{left:217.333333pt;}
.x90_c00309{left:218.666667pt;}
.xb3_c00309{left:220.373333pt;}
.xa5_c00309{left:221.706667pt;}
.x114_c00309{left:223.040000pt;}
.xf9_c00309{left:224.000000pt;}
.x34_c00309{left:226.666667pt;}
.xec_c00309{left:227.626667pt;}
.x91_c00309{left:230.293333pt;}
.x9b_c00309{left:232.000000pt;}
.xbc_c00309{left:233.333333pt;}
.x10_c00309{left:235.626667pt;}
.x5_c00309{left:237.333333pt;}
.x57_c00309{left:238.666667pt;}
.xef_c00309{left:240.373333pt;}
.x65_c00309{left:241.333333pt;}
.xc3_c00309{left:242.666667pt;}
.x3c_c00309{left:245.333333pt;}
.xdf_c00309{left:248.000000pt;}
.xc4_c00309{left:253.706667pt;}
.x77_c00309{left:254.666667pt;}
.x2b_c00309{left:257.706667pt;}
.xd8_c00309{left:260.373333pt;}
.xfd_c00309{left:261.706667pt;}
.x3d_c00309{left:263.040000pt;}
.x9c_c00309{left:264.000000pt;}
.x6d_c00309{left:265.706667pt;}
.x1f_c00309{left:267.040000pt;}
.xcb_c00309{left:268.000000pt;}
.x51_c00309{left:268.960000pt;}
.xae_c00309{left:273.333333pt;}
.xa6_c00309{left:274.666667pt;}
.x47_c00309{left:281.706667pt;}
.xf6_c00309{left:283.040000pt;}
.x9d_c00309{left:284.000000pt;}
.xc5_c00309{left:285.333333pt;}
.x3e_c00309{left:286.666667pt;}
.x102_c00309{left:288.000000pt;}
.x6e_c00309{left:289.333333pt;}
.x58_c00309{left:291.040000pt;}
.x66_c00309{left:292.000000pt;}
.xd4_c00309{left:292.960000pt;}
.x92_c00309{left:294.293333pt;}
.xf0_c00309{left:297.333333pt;}
.x6_c00309{left:300.000000pt;}
.x11_c00309{left:300.960000pt;}
.xbd_c00309{left:304.000000pt;}
.xcc_c00309{left:305.706667pt;}
.xfa_c00309{left:309.333333pt;}
.x88_c00309{left:310.666667pt;}
.x59_c00309{left:312.373333pt;}
.x10e_c00309{left:313.706667pt;}
.x3f_c00309{left:315.040000pt;}
.x7_c00309{left:317.333333pt;}
.x67_c00309{left:320.373333pt;}
.x48_c00309{left:321.333333pt;}
.xe5_c00309{left:322.293333pt;}
.xd9_c00309{left:324.373333pt;}
.x6f_c00309{left:325.333333pt;}
.xed_c00309{left:326.666667pt;}
.x78_c00309{left:328.000000pt;}
.xaf_c00309{left:329.333333pt;}
.xb4_c00309{left:331.040000pt;}
.x35_c00309{left:332.000000pt;}
.x9e_c00309{left:334.666667pt;}
.xa7_c00309{left:335.626667pt;}
.x49_c00309{left:337.706667pt;}
.xcd_c00309{left:339.040000pt;}
.xfe_c00309{left:340.000000pt;}
.x106_c00309{left:340.960000pt;}
.x8_c00309{left:342.293333pt;}
.xd5_c00309{left:344.373333pt;}
.x20_c00309{left:345.706667pt;}
.x40_c00309{left:346.666667pt;}
.xbe_c00309{left:348.000000pt;}
.xb0_c00309{left:349.706667pt;}
.x52_c00309{left:350.666667pt;}
.x12_c00309{left:351.626667pt;}
.xb5_c00309{left:356.373333pt;}
.x109_c00309{left:358.666667pt;}
.x2_c00309{left:360.000000pt;}
.xe6_c00309{left:362.666667pt;}
.x89_c00309{left:363.626667pt;}
.x9f_c00309{left:365.333333pt;}
.xff_c00309{left:367.040000pt;}
.x13_c00309{left:368.373333pt;}
.x41_c00309{left:371.040000pt;}
.x21_c00309{left:372.373333pt;}
.xe0_c00309{left:373.333333pt;}
.x36_c00309{left:376.000000pt;}
.xbf_c00309{left:378.293333pt;}
.x5a_c00309{left:380.000000pt;}
.x10f_c00309{left:381.333333pt;}
.x2c_c00309{left:383.040000pt;}
.x68_c00309{left:385.706667pt;}
.xa8_c00309{left:388.373333pt;}
.xb1_c00309{left:389.333333pt;}
.x5b_c00309{left:390.666667pt;}
.x8a_c00309{left:392.373333pt;}
.x93_c00309{left:393.706667pt;}
.x82_c00309{left:394.666667pt;}
.x9_c00309{left:397.906667pt;}
.x14_c00309{left:399.626667pt;}
.xb6_c00309{left:402.666667pt;}
.x70_c00309{left:404.373333pt;}
.xfb_c00309{left:406.293333pt;}
.x2d_c00309{left:407.240000pt;}
.x22_c00309{left:410.666667pt;}
.xa9_c00309{left:413.333333pt;}
.xa0_c00309{left:416.000000pt;}
.x8b_c00309{left:418.666667pt;}
.x53_c00309{left:422.666667pt;}
.x4a_c00309{left:425.333333pt;}
.xb7_c00309{left:426.666667pt;}
.x69_c00309{left:428.960000pt;}
.x37_c00309{left:430.293333pt;}
.x96_c00309{left:431.626667pt;}
.xc7_c00309{left:436.573333pt;}
.x5c_c00309{left:437.706667pt;}
.xb2_c00309{left:438.666667pt;}
.x71_c00309{left:440.000000pt;}
.x79_c00309{left:441.333333pt;}
.x42_c00309{left:444.000000pt;}
.x4b_c00309{left:446.666667pt;}
.xa_c00309{left:447.626667pt;}
.xe7_c00309{left:451.626667pt;}
.x83_c00309{left:452.960000pt;}
.xfc_c00309{left:454.666667pt;}
.x7a_c00309{left:456.373333pt;}
.x110_c00309{left:457.706667pt;}
.xd6_c00309{left:460.000000pt;}
.x2e_c00309{left:461.333333pt;}
.x10a_c00309{left:463.040000pt;}
.x94_c00309{left:464.000000pt;}
.xda_c00309{left:467.040000pt;}
.xa1_c00309{left:471.040000pt;}
.x72_c00309{left:472.000000pt;}
.x5d_c00309{left:473.333333pt;}
.x15_c00309{left:474.666667pt;}
.xcf_c00309{left:475.626667pt;}
.x4c_c00309{left:476.573333pt;}
.xf1_c00309{left:478.293333pt;}
.x84_c00309{left:480.000000pt;}
.xb_c00309{left:481.333333pt;}
.x73_c00309{left:482.666667pt;}
.x6a_c00309{left:484.000000pt;}
.xb8_c00309{left:485.333333pt;}
.x7b_c00309{left:490.293333pt;}
.x23_c00309{left:492.373333pt;}
.x10b_c00309{left:493.706667pt;}
.x43_c00309{left:494.666667pt;}
.xc8_c00309{left:496.373333pt;}
.x97_c00309{left:498.293333pt;}
.xf2_c00309{left:500.960000pt;}
.x38_c00309{left:502.466667pt;}
.xc0_c00309{left:505.706667pt;}
.x7c_c00309{left:506.666667pt;}
.x5e_c00309{left:508.000000pt;}
.x100_c00309{left:509.333333pt;}
.x115_c00309{left:514.293333pt;}
.x16_c00309{left:515.626667pt;}
.x44_c00309{left:516.960000pt;}
.x8c_c00309{left:518.666667pt;}
.x7d_c00309{left:519.626667pt;}
.xdb_c00309{left:521.333333pt;}
.x2f_c00309{left:523.040000pt;}
.xaa_c00309{left:524.000000pt;}
.xc1_c00309{left:525.333333pt;}
.x98_c00309{left:526.666667pt;}
.x107_c00309{left:529.133333pt;}
.x111_c00309{left:530.666667pt;}
.x54_c00309{left:532.000000pt;}
.xb9_c00309{left:536.000000pt;}
.xe8_c00309{left:537.333333pt;}
.x39_c00309{left:538.666667pt;}
.x4d_c00309{left:539.626667pt;}
.xab_c00309{left:541.333333pt;}
.x17_c00309{left:542.666667pt;}
.x24_c00309{left:544.000000pt;}
.x5f_c00309{left:544.960000pt;}
.x7e_c00309{left:546.666667pt;}
.xd0_c00309{left:548.000000pt;}
.x112_c00309{left:549.706667pt;}
.x55_c00309{left:551.626667pt;}
.x30_c00309{left:553.706667pt;}
.x3a_c00309{left:554.666667pt;}
.xe1_c00309{left:557.333333pt;}
.xc_c00309{left:560.960000pt;}
.x25_c00309{left:563.040000pt;}
.xc9_c00309{left:564.373333pt;}
.x18_c00309{left:565.706667pt;}
.x10c_c00309{left:567.040000pt;}
.xa2_c00309{left:571.626667pt;}
.x60_c00309{left:573.333333pt;}
.xac_c00309{left:574.666667pt;}
.x116_c00309{left:575.626667pt;}
.xe9_c00309{left:577.706667pt;}
.x95_c00309{left:578.666667pt;}
.xce_c00309{left:579.626667pt;}
.xd_c00309{left:580.760000pt;}
.x74_c00309{left:582.666667pt;}
.x45_c00309{left:584.000000pt;}
.x103_c00309{left:585.706667pt;}
.x7f_c00309{left:586.666667pt;}
.x26_c00309{left:588.373333pt;}
.xca_c00309{left:589.333333pt;}
.x99_c00309{left:592.000000pt;}
.x19_c00309{left:593.706667pt;}
.x85_c00309{left:594.666667pt;}
.xdc_c00309{left:596.573333pt;}
.x31_c00309{left:599.040000pt;}
.x61_c00309{left:600.373333pt;}
.x56_c00309{left:601.333333pt;}
.x3b_c00309{left:602.666667pt;}
.xa3_c00309{left:604.000000pt;}
.xba_c00309{left:605.706667pt;}
.x104_c00309{left:609.333333pt;}
.x9a_c00309{left:612.373333pt;}
.x6b_c00309{left:613.333333pt;}
.xe_c00309{left:614.466667pt;}
.x8d_c00309{left:616.000000pt;}
.x4e_c00309{left:617.333333pt;}
.x108_c00309{left:618.666667pt;}
.xea_c00309{left:619.626667pt;}
.x27_c00309{left:621.333333pt;}
.x1a_c00309{left:623.040000pt;}
.x46_c00309{left:624.960000pt;}
.x80_c00309{left:626.293333pt;}
.xf3_c00309{left:628.373333pt;}
.xe2_c00309{left:629.706667pt;}
.xd7_c00309{left:630.666667pt;}
.xad_c00309{left:632.000000pt;}
.xf7_c00309{left:632.960000pt;}
.x8e_c00309{left:635.626667pt;}
.x62_c00309{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6c85eb46c8627dc4c84c5f08.woff2')format("woff");}.ff1_c00310{font-family:ff1_c00310;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mda_c00310{transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);}
.m64_c00310{transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);}
.m30_c00310{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m34_c00310{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m6_c00310{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m90_c00310{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m48_c00310{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m9f_c00310{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m44_c00310{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mdc_c00310{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mdd_c00310{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.md_c00310{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.mc7_c00310{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m43_c00310{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m6b_c00310{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m19_c00310{transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);}
.m8a_c00310{transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);}
.m79_c00310{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.ma1_c00310{transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);}
.m10d_c00310{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.mcc_c00310{transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);}
.m25_c00310{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m26_c00310{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m2e_c00310{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m68_c00310{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m84_c00310{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.ma3_c00310{transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);}
.m37_c00310{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mc0_c00310{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.md5_c00310{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mc5_c00310{transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);}
.mb0_c00310{transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);}
.m13_c00310{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m23_c00310{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m2c_c00310{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mb9_c00310{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.mf5_c00310{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m95_c00310{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m10e_c00310{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mbe_c00310{transform:matrix(0.417440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417440,0.000000,0.000000,0.250000,0,0);}
.mb1_c00310{transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);}
.m51_c00310{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.md6_c00310{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mca_c00310{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.mea_c00310{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mc1_c00310{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.mde_c00310{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m98_c00310{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m1b_c00310{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m6e_c00310{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.ma0_c00310{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m94_c00310{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.mf2_c00310{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m40_c00310{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m10f_c00310{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mf3_c00310{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.md2_c00310{transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);}
.m22_c00310{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.ma4_c00310{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m7a_c00310{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m52_c00310{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.md1_c00310{transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);}
.m10b_c00310{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m1c_c00310{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mce_c00310{transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);}
.m67_c00310{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mcb_c00310{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.mb2_c00310{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.ma5_c00310{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m91_c00310{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.md7_c00310{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m77_c00310{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m2f_c00310{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.mfe_c00310{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mf7_c00310{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m69_c00310{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m102_c00310{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m24_c00310{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m4e_c00310{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m5d_c00310{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.mc3_c00310{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m61_c00310{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m55_c00310{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m5_c00310{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.mf_c00310{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.m0_c00310{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m63_c00310{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m7e_c00310{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.med_c00310{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mac_c00310{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m27_c00310{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.maf_c00310{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.mb_c00310{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.ma8_c00310{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m12_c00310{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.me3_c00310{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m14_c00310{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.mef_c00310{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m96_c00310{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m2d_c00310{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.mb4_c00310{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.mc8_c00310{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m4d_c00310{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m62_c00310{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m4f_c00310{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.ma_c00310{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m99_c00310{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m107_c00310{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.mc_c00310{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m7_c00310{transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);}
.mcf_c00310{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m10a_c00310{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.me5_c00310{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m29_c00310{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m75_c00310{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.mfb_c00310{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m8d_c00310{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mf6_c00310{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mf0_c00310{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m8_c00310{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);}
.mdf_c00310{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m76_c00310{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mc2_c00310{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m82_c00310{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mc4_c00310{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);}
.m9a_c00310{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.md8_c00310{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m5f_c00310{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m42_c00310{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m7c_c00310{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m80_c00310{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m81_c00310{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m57_c00310{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m28_c00310{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m92_c00310{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m5a_c00310{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.mcd_c00310{transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);}
.m18_c00310{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m5e_c00310{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m1f_c00310{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mbc_c00310{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.m3d_c00310{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m9b_c00310{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);}
.m31_c00310{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m6f_c00310{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m108_c00310{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m110_c00310{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mc6_c00310{transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);}
.me2_c00310{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mfc_c00310{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.maa_c00310{transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);}
.m35_c00310{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m45_c00310{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m7b_c00310{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m50_c00310{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m3a_c00310{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m4c_c00310{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m97_c00310{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m33_c00310{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m3e_c00310{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m7d_c00310{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mab_c00310{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m53_c00310{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m6d_c00310{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m60_c00310{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mb8_c00310{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_c00310{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m8f_c00310{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m47_c00310{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mb3_c00310{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m2a_c00310{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m59_c00310{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m71_c00310{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m100_c00310{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m11_c00310{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.mbf_c00310{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m103_c00310{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mbd_c00310{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m6a_c00310{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m58_c00310{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m4b_c00310{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m16_c00310{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m54_c00310{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m8b_c00310{transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);}
.m3f_c00310{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m1e_c00310{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m78_c00310{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m88_c00310{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m6c_c00310{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m56_c00310{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m65_c00310{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m73_c00310{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m4a_c00310{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m20_c00310{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.me0_c00310{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.ma7_c00310{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.m2_c00310{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m32_c00310{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m5c_c00310{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m5b_c00310{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m49_c00310{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.me4_c00310{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m101_c00310{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mfd_c00310{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mbb_c00310{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);}
.mfa_c00310{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m83_c00310{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m7f_c00310{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m93_c00310{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.md0_c00310{transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);}
.m104_c00310{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.me9_c00310{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.meb_c00310{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m15_c00310{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m66_c00310{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m46_c00310{transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);}
.mba_c00310{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m109_c00310{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mee_c00310{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m9e_c00310{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.m39_c00310{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m86_c00310{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m1_c00310{transform:matrix(0.619853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619853,0.000000,0.000000,0.250000,0,0);}
.mad_c00310{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m9c_c00310{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.ma2_c00310{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);}
.m9_c00310{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.md3_c00310{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.mae_c00310{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m1a_c00310{transform:matrix(0.637019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637019,0.000000,0.000000,0.250000,0,0);}
.m10_c00310{transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);}
.ma9_c00310{transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);}
.mb7_c00310{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.m8c_c00310{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.mb5_c00310{transform:matrix(0.649265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649265,0.000000,0.000000,0.250000,0,0);}
.me_c00310{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);}
.me6_c00310{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m89_c00310{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m17_c00310{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m3c_c00310{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m41_c00310{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mc9_c00310{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.m87_c00310{transform:matrix(0.680147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680147,0.000000,0.000000,0.250000,0,0);}
.ma6_c00310{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m105_c00310{transform:matrix(0.685096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685096,0.000000,0.000000,0.250000,0,0);}
.m8e_c00310{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m72_c00310{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m70_c00310{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.m9d_c00310{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);}
.mff_c00310{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m106_c00310{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m38_c00310{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m85_c00310{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.me7_c00310{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m4_c00310{transform:matrix(0.744118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.744118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.744118,0.000000,0.000000,0.250000,0,0);}
.mec_c00310{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m2b_c00310{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m10c_c00310{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.me8_c00310{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m36_c00310{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mf8_c00310{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.mf1_c00310{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mdb_c00310{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m74_c00310{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.me1_c00310{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mf9_c00310{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.mf4_c00310{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.md9_c00310{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m21_c00310{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m3_c00310{transform:matrix(0.849359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.849359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.849359,0.000000,0.000000,0.250000,0,0);}
.mb6_c00310{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.md4_c00310{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m1d_c00310{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-7.448345px;}
.ws2_c00310{word-spacing:-7.428962px;}
.ws1_c00310{word-spacing:-2.923710px;}
.ws3_c00310{word-spacing:-2.797918px;}
.ws4_c00310{word-spacing:-2.091069px;}
.ws5_c00310{word-spacing:0.000000px;}
.fc0_c00310{color:transparent;}
.fs6_c00310{font-size:3.420000px;}
.fs8_c00310{font-size:13.620000px;}
.fs2_c00310{font-size:18.720000px;}
.fs1_c00310{font-size:20.400000px;}
.fs3_c00310{font-size:25.500000px;}
.fs0_c00310{font-size:28.920000px;}
.fs4_c00310{font-size:32.340000px;}
.fs5_c00310{font-size:35.700000px;}
.fs7_c00310{font-size:39.120000px;}
.y0_c00310{bottom:0.000000px;}
.ye2_c00310{bottom:248.745000px;}
.ye1_c00310{bottom:249.825000px;}
.ye4_c00310{bottom:250.245000px;}
.ye3_c00310{bottom:250.905000px;}
.ydf_c00310{bottom:251.130000px;}
.ye0_c00310{bottom:251.970000px;}
.ye5_c00310{bottom:252.405000px;}
.yda_c00310{bottom:268.245000px;}
.ydc_c00310{bottom:269.325000px;}
.yde_c00310{bottom:269.745000px;}
.yd9_c00310{bottom:270.405000px;}
.ydd_c00310{bottom:270.825000px;}
.ydb_c00310{bottom:271.905000px;}
.yd5_c00310{bottom:289.245000px;}
.yd7_c00310{bottom:290.130000px;}
.yd6_c00310{bottom:290.970000px;}
.yd4_c00310{bottom:291.405000px;}
.yd8_c00310{bottom:291.630000px;}
.yce_c00310{bottom:307.905000px;}
.ycf_c00310{bottom:308.745000px;}
.yd0_c00310{bottom:309.630000px;}
.yd1_c00310{bottom:310.470000px;}
.ycd_c00310{bottom:310.905000px;}
.yd2_c00310{bottom:311.130000px;}
.yd3_c00310{bottom:312.405000px;}
.yc8_c00310{bottom:325.905000px;}
.ycb_c00310{bottom:327.405000px;}
.yca_c00310{bottom:328.245000px;}
.yc6_c00310{bottom:329.130000px;}
.yc7_c00310{bottom:330.405000px;}
.yc9_c00310{bottom:330.630000px;}
.ycc_c00310{bottom:331.905000px;}
.yc3_c00310{bottom:347.745000px;}
.yc5_c00310{bottom:348.825000px;}
.yc4_c00310{bottom:349.905000px;}
.yc2_c00310{bottom:350.130000px;}
.ybd_c00310{bottom:367.245000px;}
.ybe_c00310{bottom:368.325000px;}
.yc1_c00310{bottom:368.745000px;}
.ybb_c00310{bottom:369.405000px;}
.yc0_c00310{bottom:369.630000px;}
.ybc_c00310{bottom:370.470000px;}
.ybf_c00310{bottom:370.905000px;}
.yb9_c00310{bottom:386.745000px;}
.yb8_c00310{bottom:386.970000px;}
.yba_c00310{bottom:388.245000px;}
.yb6_c00310{bottom:389.130000px;}
.yb7_c00310{bottom:390.405000px;}
.yb5_c00310{bottom:407.325000px;}
.yb2_c00310{bottom:408.630000px;}
.yb3_c00310{bottom:408.825000px;}
.yb4_c00310{bottom:409.470000px;}
.yb1_c00310{bottom:409.905000px;}
.yaf_c00310{bottom:427.245000px;}
.yae_c00310{bottom:428.130000px;}
.yb0_c00310{bottom:429.405000px;}
.yac_c00310{bottom:445.245000px;}
.ya9_c00310{bottom:446.745000px;}
.yad_c00310{bottom:447.630000px;}
.yab_c00310{bottom:448.905000px;}
.yaa_c00310{bottom:448.920000px;}
.ya6_c00310{bottom:479.325000px;}
.ya8_c00310{bottom:479.970000px;}
.ya7_c00310{bottom:480.405000px;}
.ya5_c00310{bottom:481.695000px;}
.ya4_c00310{bottom:482.550000px;}
.y9e_c00310{bottom:494.550000px;}
.ya0_c00310{bottom:495.405000px;}
.y9f_c00310{bottom:496.470000px;}
.ya2_c00310{bottom:496.695000px;}
.ya1_c00310{bottom:497.550000px;}
.ya3_c00310{bottom:497.970000px;}
.y9d_c00310{bottom:509.325000px;}
.y9a_c00310{bottom:509.550000px;}
.y9c_c00310{bottom:510.405000px;}
.y9b_c00310{bottom:511.470000px;}
.y98_c00310{bottom:511.695000px;}
.y99_c00310{bottom:512.550000px;}
.y96_c00310{bottom:524.325000px;}
.y97_c00310{bottom:525.405000px;}
.y95_c00310{bottom:526.470000px;}
.y94_c00310{bottom:527.550000px;}
.y91_c00310{bottom:540.405000px;}
.y92_c00310{bottom:540.630000px;}
.y93_c00310{bottom:541.470000px;}
.y8b_c00310{bottom:553.470000px;}
.y8d_c00310{bottom:554.325000px;}
.y8e_c00310{bottom:555.405000px;}
.y8f_c00310{bottom:555.630000px;}
.y8c_c00310{bottom:556.470000px;}
.y90_c00310{bottom:557.550000px;}
.y88_c00310{bottom:569.325000px;}
.y89_c00310{bottom:570.405000px;}
.y87_c00310{bottom:571.470000px;}
.y86_c00310{bottom:571.695000px;}
.y8a_c00310{bottom:572.550000px;}
.y84_c00310{bottom:584.325000px;}
.y85_c00310{bottom:585.405000px;}
.y83_c00310{bottom:585.630000px;}
.y81_c00310{bottom:586.050000px;}
.y82_c00310{bottom:586.470000px;}
.y7f_c00310{bottom:598.905000px;}
.y80_c00310{bottom:600.195000px;}
.y7d_c00310{bottom:601.050000px;}
.y7e_c00310{bottom:601.470000px;}
.y77_c00310{bottom:612.825000px;}
.y76_c00310{bottom:613.050000px;}
.y7a_c00310{bottom:613.470000px;}
.y7b_c00310{bottom:613.905000px;}
.y79_c00310{bottom:614.970000px;}
.y78_c00310{bottom:616.050000px;}
.y7c_c00310{bottom:616.695000px;}
.y75_c00310{bottom:627.825000px;}
.y72_c00310{bottom:628.905000px;}
.y73_c00310{bottom:629.130000px;}
.y74_c00310{bottom:631.050000px;}
.y6c_c00310{bottom:642.825000px;}
.y6b_c00310{bottom:643.050000px;}
.y6f_c00310{bottom:643.905000px;}
.y6e_c00310{bottom:644.130000px;}
.y6d_c00310{bottom:644.970000px;}
.y70_c00310{bottom:646.050000px;}
.y71_c00310{bottom:646.470000px;}
.y68_c00310{bottom:657.825000px;}
.y64_c00310{bottom:658.050000px;}
.y66_c00310{bottom:658.905000px;}
.y6a_c00310{bottom:659.325000px;}
.y65_c00310{bottom:659.970000px;}
.y69_c00310{bottom:660.630000px;}
.y67_c00310{bottom:661.050000px;}
.y63_c00310{bottom:671.970000px;}
.y5e_c00310{bottom:672.825000px;}
.y60_c00310{bottom:673.905000px;}
.y5d_c00310{bottom:674.130000px;}
.y62_c00310{bottom:674.970000px;}
.y61_c00310{bottom:675.195000px;}
.y5f_c00310{bottom:676.050000px;}
.y5b_c00310{bottom:687.825000px;}
.y58_c00310{bottom:688.905000px;}
.y5a_c00310{bottom:689.970000px;}
.y59_c00310{bottom:690.195000px;}
.y5c_c00310{bottom:691.050000px;}
.y56_c00310{bottom:702.825000px;}
.y54_c00310{bottom:704.130000px;}
.y57_c00310{bottom:704.970000px;}
.y55_c00310{bottom:706.050000px;}
.y53_c00310{bottom:728.970000px;}
.y51_c00310{bottom:730.245000px;}
.y52_c00310{bottom:732.405000px;}
.y4f_c00310{bottom:749.745000px;}
.y4e_c00310{bottom:750.630000px;}
.y50_c00310{bottom:751.470000px;}
.y4d_c00310{bottom:751.905000px;}
.y4a_c00310{bottom:769.245000px;}
.y49_c00310{bottom:771.405000px;}
.y4b_c00310{bottom:771.630000px;}
.y4c_c00310{bottom:772.470000px;}
.y47_c00310{bottom:788.745000px;}
.y48_c00310{bottom:789.825000px;}
.y45_c00310{bottom:790.905000px;}
.y46_c00310{bottom:791.130000px;}
.y42_c00310{bottom:807.405000px;}
.y40_c00310{bottom:808.245000px;}
.y44_c00310{bottom:808.680000px;}
.y41_c00310{bottom:809.325000px;}
.y43_c00310{bottom:809.745000px;}
.y3e_c00310{bottom:810.405000px;}
.y3f_c00310{bottom:811.920000px;}
.y3d_c00310{bottom:829.905000px;}
.y39_c00310{bottom:849.630000px;}
.y3c_c00310{bottom:849.825000px;}
.y3b_c00310{bottom:850.470000px;}
.y3a_c00310{bottom:850.905000px;}
.y35_c00310{bottom:868.245000px;}
.y36_c00310{bottom:869.130000px;}
.y38_c00310{bottom:869.325000px;}
.y37_c00310{bottom:870.405000px;}
.y33_c00310{bottom:886.470000px;}
.y34_c00310{bottom:887.325000px;}
.y31_c00310{bottom:887.745000px;}
.y32_c00310{bottom:888.630000px;}
.y30_c00310{bottom:889.905000px;}
.y2e_c00310{bottom:906.405000px;}
.y2c_c00310{bottom:907.245000px;}
.y2a_c00310{bottom:908.130000px;}
.y2d_c00310{bottom:908.970000px;}
.y2b_c00310{bottom:909.405000px;}
.y2f_c00310{bottom:909.630000px;}
.y28_c00310{bottom:926.745000px;}
.y26_c00310{bottom:928.905000px;}
.y27_c00310{bottom:928.920000px;}
.y29_c00310{bottom:929.130000px;}
.y22_c00310{bottom:946.245000px;}
.y23_c00310{bottom:947.325000px;}
.y24_c00310{bottom:947.745000px;}
.y1f_c00310{bottom:948.405000px;}
.y21_c00310{bottom:948.420000px;}
.y20_c00310{bottom:948.630000px;}
.y25_c00310{bottom:949.905000px;}
.y1e_c00310{bottom:964.905000px;}
.y19_c00310{bottom:965.745000px;}
.y1b_c00310{bottom:966.825000px;}
.y1c_c00310{bottom:967.245000px;}
.y1d_c00310{bottom:968.325000px;}
.y1a_c00310{bottom:969.420000px;}
.y13_c00310{bottom:985.245000px;}
.y17_c00310{bottom:986.745000px;}
.y15_c00310{bottom:987.405000px;}
.y16_c00310{bottom:987.630000px;}
.y18_c00310{bottom:988.905000px;}
.y14_c00310{bottom:988.920000px;}
.yf_c00310{bottom:1012.905000px;}
.y11_c00310{bottom:1013.325000px;}
.ye_c00310{bottom:1013.970000px;}
.y12_c00310{bottom:1014.630000px;}
.yd_c00310{bottom:1015.050000px;}
.y10_c00310{bottom:1015.470000px;}
.ya_c00310{bottom:1036.050000px;}
.y9_c00310{bottom:1036.470000px;}
.yb_c00310{bottom:1036.905000px;}
.y8_c00310{bottom:1037.970000px;}
.yc_c00310{bottom:1039.050000px;}
.y7_c00310{bottom:1058.745000px;}
.y3_c00310{bottom:1059.405000px;}
.y4_c00310{bottom:1059.630000px;}
.y6_c00310{bottom:1059.825000px;}
.y5_c00310{bottom:1060.470000px;}
.y2_c00310{bottom:1097.550000px;}
.y1_c00310{bottom:1099.905000px;}
.h7_c00310{height:4.206533px;}
.h9_c00310{height:16.752334px;}
.h3_c00310{height:23.025234px;}
.h2_c00310{height:25.091602px;}
.h4_c00310{height:31.364502px;}
.h1_c00310{height:35.571035px;}
.h5_c00310{height:39.777568px;}
.h6_c00310{height:43.910303px;}
.h8_c00310{height:48.116836px;}
.h0_c00310{height:1335.000000px;}
.w0_c00310{width:880.500000px;}
.x0_c00310{left:0.000000px;}
.x47_c00310{left:150.000000px;}
.x3c_c00310{left:151.500000px;}
.x51_c00310{left:152.580000px;}
.xbf_c00310{left:154.500000px;}
.x12_c00310{left:163.500000px;}
.xa0_c00310{left:165.420000px;}
.x1c_c00310{left:166.920000px;}
.xf4_c00310{left:169.500000px;}
.x3d_c00310{left:171.420000px;}
.xe0_c00310{left:178.920000px;}
.xca_c00310{left:180.000000px;}
.x88_c00310{left:183.000000px;}
.x92_c00310{left:184.500000px;}
.xe3_c00310{left:186.000000px;}
.x48_c00310{left:189.000000px;}
.x71_c00310{left:194.580000px;}
.x3e_c00310{left:196.500000px;}
.x6b_c00310{left:198.420000px;}
.x5a_c00310{left:199.920000px;}
.xda_c00310{left:202.500000px;}
.x1d_c00310{left:205.920000px;}
.x13_c00310{left:207.420000px;}
.x8e_c00310{left:208.500000px;}
.x89_c00310{left:216.000000px;}
.xb7_c00310{left:217.500000px;}
.x8f_c00310{left:219.000000px;}
.x97_c00310{left:221.145000px;}
.xdb_c00310{left:223.080000px;}
.x93_c00310{left:226.500000px;}
.x81_c00310{left:227.580000px;}
.xb0_c00310{left:229.500000px;}
.x6c_c00310{left:235.920000px;}
.xc0_c00310{left:237.420000px;}
.x3f_c00310{left:240.000000px;}
.xcb_c00310{left:243.000000px;}
.x82_c00310{left:244.920000px;}
.xe4_c00310{left:246.420000px;}
.x14_c00310{left:247.500000px;}
.x5b_c00310{left:249.000000px;}
.xa5_c00310{left:251.580000px;}
.x72_c00310{left:255.000000px;}
.x52_c00310{left:256.080000px;}
.x27_c00310{left:258.000000px;}
.x33_c00310{left:259.500000px;}
.x77_c00310{left:261.000000px;}
.x49_c00310{left:264.000000px;}
.x1e_c00310{left:265.500000px;}
.x5c_c00310{left:266.580000px;}
.x63_c00310{left:268.080000px;}
.xb1_c00310{left:270.000000px;}
.x8_c00310{left:271.500000px;}
.xb8_c00310{left:274.500000px;}
.xc4_c00310{left:276.000000px;}
.x78_c00310{left:277.080000px;}
.x28_c00310{left:279.000000px;}
.x34_c00310{left:280.500000px;}
.x90_c00310{left:283.080000px;}
.xa8_c00310{left:285.420000px;}
.x1f_c00310{left:286.500000px;}
.xc1_c00310{left:288.000000px;}
.xb2_c00310{left:289.500000px;}
.x9_c00310{left:292.080000px;}
.xa1_c00310{left:294.000000px;}
.xae_c00310{left:295.920000px;}
.xb6_c00310{left:297.420000px;}
.x2c_c00310{left:300.000000px;}
.x8a_c00310{left:303.000000px;}
.x3_c00310{left:306.000000px;}
.xf8_c00310{left:307.920000px;}
.x6d_c00310{left:309.000000px;}
.xa_c00310{left:310.500000px;}
.x53_c00310{left:312.000000px;}
.x2d_c00310{left:320.580000px;}
.xa6_c00310{left:322.500000px;}
.x40_c00310{left:323.580000px;}
.x20_c00310{left:325.920000px;}
.xef_c00310{left:328.920000px;}
.x4a_c00310{left:330.000000px;}
.xb9_c00310{left:333.000000px;}
.xf9_c00310{left:334.500000px;}
.x94_c00310{left:336.000000px;}
.x83_c00310{left:337.500000px;}
.xaf_c00310{left:339.000000px;}
.x15_c00310{left:340.500000px;}
.x29_c00310{left:343.275000px;}
.xbb_c00310{left:345.000000px;}
.x2e_c00310{left:348.000000px;}
.xb_c00310{left:351.420000px;}
.xa7_c00310{left:352.920000px;}
.x91_c00310{left:357.420000px;}
.xa2_c00310{left:358.500000px;}
.x21_c00310{left:360.000000px;}
.x4_c00310{left:361.500000px;}
.xcc_c00310{left:363.000000px;}
.xcf_c00310{left:364.920000px;}
.xdc_c00310{left:367.920000px;}
.x79_c00310{left:369.420000px;}
.xea_c00310{left:370.500000px;}
.x98_c00310{left:372.420000px;}
.x8b_c00310{left:373.500000px;}
.xe6_c00310{left:375.420000px;}
.x4b_c00310{left:377.580000px;}
.x54_c00310{left:379.500000px;}
.x95_c00310{left:381.000000px;}
.xe1_c00310{left:382.920000px;}
.x2a_c00310{left:384.000000px;}
.xbc_c00310{left:385.500000px;}
.xd4_c00310{left:387.000000px;}
.x99_c00310{left:388.080000px;}
.xc_c00310{left:391.500000px;}
.x64_c00310{left:392.580000px;}
.x41_c00310{left:394.500000px;}
.x2f_c00310{left:395.580000px;}
.xcd_c00310{left:397.920000px;}
.xeb_c00310{left:399.420000px;}
.x2_c00310{left:400.500000px;}
.xe7_c00310{left:402.420000px;}
.x35_c00310{left:408.000000px;}
.x22_c00310{left:409.920000px;}
.xa9_c00310{left:412.920000px;}
.x5_c00310{left:414.420000px;}
.xc5_c00310{left:415.500000px;}
.xf0_c00310{left:417.000000px;}
.x7a_c00310{left:418.920000px;}
.xd5_c00310{left:421.920000px;}
.x30_c00310{left:423.420000px;}
.xce_c00310{left:424.500000px;}
.xbe_c00310{left:425.580000px;}
.xb3_c00310{left:427.500000px;}
.xe5_c00310{left:429.000000px;}
.xaa_c00310{left:433.080000px;}
.xe8_c00310{left:436.920000px;}
.xa3_c00310{left:438.000000px;}
.x5d_c00310{left:439.080000px;}
.x23_c00310{left:441.000000px;}
.x16_c00310{left:444.000000px;}
.xd0_c00310{left:445.500000px;}
.x73_c00310{left:447.000000px;}
.xd_c00310{left:448.080000px;}
.x9a_c00310{left:449.145000px;}
.x36_c00310{left:451.080000px;}
.xdd_c00310{left:452.580000px;}
.x65_c00310{left:453.645000px;}
.x7b_c00310{left:454.920000px;}
.xab_c00310{left:459.000000px;}
.xbd_c00310{left:462.420000px;}
.xc6_c00310{left:465.000000px;}
.x4c_c00310{left:466.500000px;}
.xe_c00310{left:469.080000px;}
.x6_c00310{left:471.420000px;}
.x84_c00310{left:472.500000px;}
.x5e_c00310{left:473.580000px;}
.x17_c00310{left:475.920000px;}
.xd6_c00310{left:477.000000px;}
.x55_c00310{left:478.080000px;}
.x7c_c00310{left:480.000000px;}
.x96_c00310{left:481.080000px;}
.xe2_c00310{left:484.500000px;}
.xfa_c00310{left:486.000000px;}
.xf_c00310{left:487.500000px;}
.x2b_c00310{left:489.420000px;}
.xc2_c00310{left:490.500000px;}
.x9b_c00310{left:493.500000px;}
.x5f_c00310{left:495.420000px;}
.x31_c00310{left:497.580000px;}
.x18_c00310{left:499.080000px;}
.xb4_c00310{left:500.580000px;}
.x9c_c00310{left:504.000000px;}
.xe9_c00310{left:505.920000px;}
.x24_c00310{left:508.080000px;}
.x66_c00310{left:509.580000px;}
.xf1_c00310{left:512.580000px;}
.xd1_c00310{left:515.580000px;}
.xb5_c00310{left:516.645000px;}
.xac_c00310{left:518.145000px;}
.xfb_c00310{left:520.080000px;}
.x32_c00310{left:521.580000px;}
.x10_c00310{left:523.920000px;}
.x60_c00310{left:525.000000px;}
.x85_c00310{left:526.500000px;}
.x37_c00310{left:527.775000px;}
.x7d_c00310{left:531.000000px;}
.x25_c00310{left:532.080000px;}
.xf5_c00310{left:534.420000px;}
.x4d_c00310{left:537.000000px;}
.x7_c00310{left:539.775000px;}
.x19_c00310{left:541.500000px;}
.x9d_c00310{left:544.080000px;}
.x67_c00310{left:547.500000px;}
.x86_c00310{left:549.000000px;}
.x42_c00310{left:550.080000px;}
.xc7_c00310{left:552.000000px;}
.xc3_c00310{left:553.500000px;}
.x56_c00310{left:555.645000px;}
.xd2_c00310{left:561.000000px;}
.xfc_c00310{left:564.000000px;}
.xde_c00310{left:565.920000px;}
.x38_c00310{left:567.000000px;}
.x11_c00310{left:570.000000px;}
.x4e_c00310{left:571.920000px;}
.xf6_c00310{left:573.000000px;}
.x74_c00310{left:576.420000px;}
.x9e_c00310{left:577.920000px;}
.xd3_c00310{left:582.420000px;}
.x26_c00310{left:585.000000px;}
.x7e_c00310{left:588.420000px;}
.x61_c00310{left:590.580000px;}
.xa4_c00310{left:595.500000px;}
.x43_c00310{left:598.080000px;}
.x1a_c00310{left:602.355000px;}
.x75_c00310{left:604.080000px;}
.xec_c00310{left:607.920000px;}
.xdf_c00310{left:609.420000px;}
.x57_c00310{left:610.920000px;}
.x39_c00310{left:612.000000px;}
.x7f_c00310{left:614.580000px;}
.x6e_c00310{left:616.920000px;}
.x1b_c00310{left:618.420000px;}
.xc8_c00310{left:620.580000px;}
.x8c_c00310{left:624.000000px;}
.xd7_c00310{left:625.500000px;}
.x4f_c00310{left:627.000000px;}
.x3a_c00310{left:628.080000px;}
.x44_c00310{left:631.500000px;}
.xed_c00310{left:633.000000px;}
.x68_c00310{left:635.580000px;}
.x50_c00310{left:642.645000px;}
.x62_c00310{left:646.500000px;}
.xba_c00310{left:652.920000px;}
.xfe_c00310{left:656.580000px;}
.x69_c00310{left:657.855000px;}
.xee_c00310{left:660.000000px;}
.x87_c00310{left:661.500000px;}
.x9f_c00310{left:663.000000px;}
.x45_c00310{left:666.420000px;}
.x58_c00310{left:669.000000px;}
.x3b_c00310{left:672.000000px;}
.xf2_c00310{left:677.580000px;}
.x8d_c00310{left:679.500000px;}
.x80_c00310{left:680.580000px;}
.xd8_c00310{left:682.500000px;}
.x6f_c00310{left:687.000000px;}
.xc9_c00310{left:691.500000px;}
.x46_c00310{left:693.000000px;}
.x6a_c00310{left:694.275000px;}
.xfd_c00310{left:699.000000px;}
.xd9_c00310{left:700.920000px;}
.x1_c00310{left:703.080000px;}
.xf7_c00310{left:705.000000px;}
.xf3_c00310{left:706.920000px;}
.x70_c00310{left:708.420000px;}
.x59_c00310{left:711.000000px;}
.x76_c00310{left:713.580000px;}
.xad_c00310{left:724.500000px;}
@media print{
.v0_c00310{vertical-align:0.000000pt;}
.ls0_c00310{letter-spacing:0.000000pt;}
.ws0_c00310{word-spacing:-6.620751pt;}
.ws2_c00310{word-spacing:-6.603521pt;}
.ws1_c00310{word-spacing:-2.598853pt;}
.ws3_c00310{word-spacing:-2.487039pt;}
.ws4_c00310{word-spacing:-1.858728pt;}
.ws5_c00310{word-spacing:0.000000pt;}
.fs6_c00310{font-size:3.040000pt;}
.fs8_c00310{font-size:12.106667pt;}
.fs2_c00310{font-size:16.640000pt;}
.fs1_c00310{font-size:18.133333pt;}
.fs3_c00310{font-size:22.666667pt;}
.fs0_c00310{font-size:25.706667pt;}
.fs4_c00310{font-size:28.746667pt;}
.fs5_c00310{font-size:31.733333pt;}
.fs7_c00310{font-size:34.773333pt;}
.y0_c00310{bottom:0.000000pt;}
.ye2_c00310{bottom:221.106667pt;}
.ye1_c00310{bottom:222.066667pt;}
.ye4_c00310{bottom:222.440000pt;}
.ye3_c00310{bottom:223.026667pt;}
.ydf_c00310{bottom:223.226667pt;}
.ye0_c00310{bottom:223.973333pt;}
.ye5_c00310{bottom:224.360000pt;}
.yda_c00310{bottom:238.440000pt;}
.ydc_c00310{bottom:239.400000pt;}
.yde_c00310{bottom:239.773333pt;}
.yd9_c00310{bottom:240.360000pt;}
.ydd_c00310{bottom:240.733333pt;}
.ydb_c00310{bottom:241.693333pt;}
.yd5_c00310{bottom:257.106667pt;}
.yd7_c00310{bottom:257.893333pt;}
.yd6_c00310{bottom:258.640000pt;}
.yd4_c00310{bottom:259.026667pt;}
.yd8_c00310{bottom:259.226667pt;}
.yce_c00310{bottom:273.693333pt;}
.ycf_c00310{bottom:274.440000pt;}
.yd0_c00310{bottom:275.226667pt;}
.yd1_c00310{bottom:275.973333pt;}
.ycd_c00310{bottom:276.360000pt;}
.yd2_c00310{bottom:276.560000pt;}
.yd3_c00310{bottom:277.693333pt;}
.yc8_c00310{bottom:289.693333pt;}
.ycb_c00310{bottom:291.026667pt;}
.yca_c00310{bottom:291.773333pt;}
.yc6_c00310{bottom:292.560000pt;}
.yc7_c00310{bottom:293.693333pt;}
.yc9_c00310{bottom:293.893333pt;}
.ycc_c00310{bottom:295.026667pt;}
.yc3_c00310{bottom:309.106667pt;}
.yc5_c00310{bottom:310.066667pt;}
.yc4_c00310{bottom:311.026667pt;}
.yc2_c00310{bottom:311.226667pt;}
.ybd_c00310{bottom:326.440000pt;}
.ybe_c00310{bottom:327.400000pt;}
.yc1_c00310{bottom:327.773333pt;}
.ybb_c00310{bottom:328.360000pt;}
.yc0_c00310{bottom:328.560000pt;}
.ybc_c00310{bottom:329.306667pt;}
.ybf_c00310{bottom:329.693333pt;}
.yb9_c00310{bottom:343.773333pt;}
.yb8_c00310{bottom:343.973333pt;}
.yba_c00310{bottom:345.106667pt;}
.yb6_c00310{bottom:345.893333pt;}
.yb7_c00310{bottom:347.026667pt;}
.yb5_c00310{bottom:362.066667pt;}
.yb2_c00310{bottom:363.226667pt;}
.yb3_c00310{bottom:363.400000pt;}
.yb4_c00310{bottom:363.973333pt;}
.yb1_c00310{bottom:364.360000pt;}
.yaf_c00310{bottom:379.773333pt;}
.yae_c00310{bottom:380.560000pt;}
.yb0_c00310{bottom:381.693333pt;}
.yac_c00310{bottom:395.773333pt;}
.ya9_c00310{bottom:397.106667pt;}
.yad_c00310{bottom:397.893333pt;}
.yab_c00310{bottom:399.026667pt;}
.yaa_c00310{bottom:399.040000pt;}
.ya6_c00310{bottom:426.066667pt;}
.ya8_c00310{bottom:426.640000pt;}
.ya7_c00310{bottom:427.026667pt;}
.ya5_c00310{bottom:428.173333pt;}
.ya4_c00310{bottom:428.933333pt;}
.y9e_c00310{bottom:439.600000pt;}
.ya0_c00310{bottom:440.360000pt;}
.y9f_c00310{bottom:441.306667pt;}
.ya2_c00310{bottom:441.506667pt;}
.ya1_c00310{bottom:442.266667pt;}
.ya3_c00310{bottom:442.640000pt;}
.y9d_c00310{bottom:452.733333pt;}
.y9a_c00310{bottom:452.933333pt;}
.y9c_c00310{bottom:453.693333pt;}
.y9b_c00310{bottom:454.640000pt;}
.y98_c00310{bottom:454.840000pt;}
.y99_c00310{bottom:455.600000pt;}
.y96_c00310{bottom:466.066667pt;}
.y97_c00310{bottom:467.026667pt;}
.y95_c00310{bottom:467.973333pt;}
.y94_c00310{bottom:468.933333pt;}
.y91_c00310{bottom:480.360000pt;}
.y92_c00310{bottom:480.560000pt;}
.y93_c00310{bottom:481.306667pt;}
.y8b_c00310{bottom:491.973333pt;}
.y8d_c00310{bottom:492.733333pt;}
.y8e_c00310{bottom:493.693333pt;}
.y8f_c00310{bottom:493.893333pt;}
.y8c_c00310{bottom:494.640000pt;}
.y90_c00310{bottom:495.600000pt;}
.y88_c00310{bottom:506.066667pt;}
.y89_c00310{bottom:507.026667pt;}
.y87_c00310{bottom:507.973333pt;}
.y86_c00310{bottom:508.173333pt;}
.y8a_c00310{bottom:508.933333pt;}
.y84_c00310{bottom:519.400000pt;}
.y85_c00310{bottom:520.360000pt;}
.y83_c00310{bottom:520.560000pt;}
.y81_c00310{bottom:520.933333pt;}
.y82_c00310{bottom:521.306667pt;}
.y7f_c00310{bottom:532.360000pt;}
.y80_c00310{bottom:533.506667pt;}
.y7d_c00310{bottom:534.266667pt;}
.y7e_c00310{bottom:534.640000pt;}
.y77_c00310{bottom:544.733333pt;}
.y76_c00310{bottom:544.933333pt;}
.y7a_c00310{bottom:545.306667pt;}
.y7b_c00310{bottom:545.693333pt;}
.y79_c00310{bottom:546.640000pt;}
.y78_c00310{bottom:547.600000pt;}
.y7c_c00310{bottom:548.173333pt;}
.y75_c00310{bottom:558.066667pt;}
.y72_c00310{bottom:559.026667pt;}
.y73_c00310{bottom:559.226667pt;}
.y74_c00310{bottom:560.933333pt;}
.y6c_c00310{bottom:571.400000pt;}
.y6b_c00310{bottom:571.600000pt;}
.y6f_c00310{bottom:572.360000pt;}
.y6e_c00310{bottom:572.560000pt;}
.y6d_c00310{bottom:573.306667pt;}
.y70_c00310{bottom:574.266667pt;}
.y71_c00310{bottom:574.640000pt;}
.y68_c00310{bottom:584.733333pt;}
.y64_c00310{bottom:584.933333pt;}
.y66_c00310{bottom:585.693333pt;}
.y6a_c00310{bottom:586.066667pt;}
.y65_c00310{bottom:586.640000pt;}
.y69_c00310{bottom:587.226667pt;}
.y67_c00310{bottom:587.600000pt;}
.y63_c00310{bottom:597.306667pt;}
.y5e_c00310{bottom:598.066667pt;}
.y60_c00310{bottom:599.026667pt;}
.y5d_c00310{bottom:599.226667pt;}
.y62_c00310{bottom:599.973333pt;}
.y61_c00310{bottom:600.173333pt;}
.y5f_c00310{bottom:600.933333pt;}
.y5b_c00310{bottom:611.400000pt;}
.y58_c00310{bottom:612.360000pt;}
.y5a_c00310{bottom:613.306667pt;}
.y59_c00310{bottom:613.506667pt;}
.y5c_c00310{bottom:614.266667pt;}
.y56_c00310{bottom:624.733333pt;}
.y54_c00310{bottom:625.893333pt;}
.y57_c00310{bottom:626.640000pt;}
.y55_c00310{bottom:627.600000pt;}
.y53_c00310{bottom:647.973333pt;}
.y51_c00310{bottom:649.106667pt;}
.y52_c00310{bottom:651.026667pt;}
.y4f_c00310{bottom:666.440000pt;}
.y4e_c00310{bottom:667.226667pt;}
.y50_c00310{bottom:667.973333pt;}
.y4d_c00310{bottom:668.360000pt;}
.y4a_c00310{bottom:683.773333pt;}
.y49_c00310{bottom:685.693333pt;}
.y4b_c00310{bottom:685.893333pt;}
.y4c_c00310{bottom:686.640000pt;}
.y47_c00310{bottom:701.106667pt;}
.y48_c00310{bottom:702.066667pt;}
.y45_c00310{bottom:703.026667pt;}
.y46_c00310{bottom:703.226667pt;}
.y42_c00310{bottom:717.693333pt;}
.y40_c00310{bottom:718.440000pt;}
.y44_c00310{bottom:718.826667pt;}
.y41_c00310{bottom:719.400000pt;}
.y43_c00310{bottom:719.773333pt;}
.y3e_c00310{bottom:720.360000pt;}
.y3f_c00310{bottom:721.706667pt;}
.y3d_c00310{bottom:737.693333pt;}
.y39_c00310{bottom:755.226667pt;}
.y3c_c00310{bottom:755.400000pt;}
.y3b_c00310{bottom:755.973333pt;}
.y3a_c00310{bottom:756.360000pt;}
.y35_c00310{bottom:771.773333pt;}
.y36_c00310{bottom:772.560000pt;}
.y38_c00310{bottom:772.733333pt;}
.y37_c00310{bottom:773.693333pt;}
.y33_c00310{bottom:787.973333pt;}
.y34_c00310{bottom:788.733333pt;}
.y31_c00310{bottom:789.106667pt;}
.y32_c00310{bottom:789.893333pt;}
.y30_c00310{bottom:791.026667pt;}
.y2e_c00310{bottom:805.693333pt;}
.y2c_c00310{bottom:806.440000pt;}
.y2a_c00310{bottom:807.226667pt;}
.y2d_c00310{bottom:807.973333pt;}
.y2b_c00310{bottom:808.360000pt;}
.y2f_c00310{bottom:808.560000pt;}
.y28_c00310{bottom:823.773333pt;}
.y26_c00310{bottom:825.693333pt;}
.y27_c00310{bottom:825.706667pt;}
.y29_c00310{bottom:825.893333pt;}
.y22_c00310{bottom:841.106667pt;}
.y23_c00310{bottom:842.066667pt;}
.y24_c00310{bottom:842.440000pt;}
.y1f_c00310{bottom:843.026667pt;}
.y21_c00310{bottom:843.040000pt;}
.y20_c00310{bottom:843.226667pt;}
.y25_c00310{bottom:844.360000pt;}
.y1e_c00310{bottom:857.693333pt;}
.y19_c00310{bottom:858.440000pt;}
.y1b_c00310{bottom:859.400000pt;}
.y1c_c00310{bottom:859.773333pt;}
.y1d_c00310{bottom:860.733333pt;}
.y1a_c00310{bottom:861.706667pt;}
.y13_c00310{bottom:875.773333pt;}
.y17_c00310{bottom:877.106667pt;}
.y15_c00310{bottom:877.693333pt;}
.y16_c00310{bottom:877.893333pt;}
.y18_c00310{bottom:879.026667pt;}
.y14_c00310{bottom:879.040000pt;}
.yf_c00310{bottom:900.360000pt;}
.y11_c00310{bottom:900.733333pt;}
.ye_c00310{bottom:901.306667pt;}
.y12_c00310{bottom:901.893333pt;}
.yd_c00310{bottom:902.266667pt;}
.y10_c00310{bottom:902.640000pt;}
.ya_c00310{bottom:920.933333pt;}
.y9_c00310{bottom:921.306667pt;}
.yb_c00310{bottom:921.693333pt;}
.y8_c00310{bottom:922.640000pt;}
.yc_c00310{bottom:923.600000pt;}
.y7_c00310{bottom:941.106667pt;}
.y3_c00310{bottom:941.693333pt;}
.y4_c00310{bottom:941.893333pt;}
.y6_c00310{bottom:942.066667pt;}
.y5_c00310{bottom:942.640000pt;}
.y2_c00310{bottom:975.600000pt;}
.y1_c00310{bottom:977.693333pt;}
.h7_c00310{height:3.739141pt;}
.h9_c00310{height:14.890964pt;}
.h3_c00310{height:20.466875pt;}
.h2_c00310{height:22.303646pt;}
.h4_c00310{height:27.879557pt;}
.h1_c00310{height:31.618698pt;}
.h5_c00310{height:35.357839pt;}
.h6_c00310{height:39.031380pt;}
.h8_c00310{height:42.770521pt;}
.h0_c00310{height:1186.666667pt;}
.w0_c00310{width:782.666667pt;}
.x0_c00310{left:0.000000pt;}
.x47_c00310{left:133.333333pt;}
.x3c_c00310{left:134.666667pt;}
.x51_c00310{left:135.626667pt;}
.xbf_c00310{left:137.333333pt;}
.x12_c00310{left:145.333333pt;}
.xa0_c00310{left:147.040000pt;}
.x1c_c00310{left:148.373333pt;}
.xf4_c00310{left:150.666667pt;}
.x3d_c00310{left:152.373333pt;}
.xe0_c00310{left:159.040000pt;}
.xca_c00310{left:160.000000pt;}
.x88_c00310{left:162.666667pt;}
.x92_c00310{left:164.000000pt;}
.xe3_c00310{left:165.333333pt;}
.x48_c00310{left:168.000000pt;}
.x71_c00310{left:172.960000pt;}
.x3e_c00310{left:174.666667pt;}
.x6b_c00310{left:176.373333pt;}
.x5a_c00310{left:177.706667pt;}
.xda_c00310{left:180.000000pt;}
.x1d_c00310{left:183.040000pt;}
.x13_c00310{left:184.373333pt;}
.x8e_c00310{left:185.333333pt;}
.x89_c00310{left:192.000000pt;}
.xb7_c00310{left:193.333333pt;}
.x8f_c00310{left:194.666667pt;}
.x97_c00310{left:196.573333pt;}
.xdb_c00310{left:198.293333pt;}
.x93_c00310{left:201.333333pt;}
.x81_c00310{left:202.293333pt;}
.xb0_c00310{left:204.000000pt;}
.x6c_c00310{left:209.706667pt;}
.xc0_c00310{left:211.040000pt;}
.x3f_c00310{left:213.333333pt;}
.xcb_c00310{left:216.000000pt;}
.x82_c00310{left:217.706667pt;}
.xe4_c00310{left:219.040000pt;}
.x14_c00310{left:220.000000pt;}
.x5b_c00310{left:221.333333pt;}
.xa5_c00310{left:223.626667pt;}
.x72_c00310{left:226.666667pt;}
.x52_c00310{left:227.626667pt;}
.x27_c00310{left:229.333333pt;}
.x33_c00310{left:230.666667pt;}
.x77_c00310{left:232.000000pt;}
.x49_c00310{left:234.666667pt;}
.x1e_c00310{left:236.000000pt;}
.x5c_c00310{left:236.960000pt;}
.x63_c00310{left:238.293333pt;}
.xb1_c00310{left:240.000000pt;}
.x8_c00310{left:241.333333pt;}
.xb8_c00310{left:244.000000pt;}
.xc4_c00310{left:245.333333pt;}
.x78_c00310{left:246.293333pt;}
.x28_c00310{left:248.000000pt;}
.x34_c00310{left:249.333333pt;}
.x90_c00310{left:251.626667pt;}
.xa8_c00310{left:253.706667pt;}
.x1f_c00310{left:254.666667pt;}
.xc1_c00310{left:256.000000pt;}
.xb2_c00310{left:257.333333pt;}
.x9_c00310{left:259.626667pt;}
.xa1_c00310{left:261.333333pt;}
.xae_c00310{left:263.040000pt;}
.xb6_c00310{left:264.373333pt;}
.x2c_c00310{left:266.666667pt;}
.x8a_c00310{left:269.333333pt;}
.x3_c00310{left:272.000000pt;}
.xf8_c00310{left:273.706667pt;}
.x6d_c00310{left:274.666667pt;}
.xa_c00310{left:276.000000pt;}
.x53_c00310{left:277.333333pt;}
.x2d_c00310{left:284.960000pt;}
.xa6_c00310{left:286.666667pt;}
.x40_c00310{left:287.626667pt;}
.x20_c00310{left:289.706667pt;}
.xef_c00310{left:292.373333pt;}
.x4a_c00310{left:293.333333pt;}
.xb9_c00310{left:296.000000pt;}
.xf9_c00310{left:297.333333pt;}
.x94_c00310{left:298.666667pt;}
.x83_c00310{left:300.000000pt;}
.xaf_c00310{left:301.333333pt;}
.x15_c00310{left:302.666667pt;}
.x29_c00310{left:305.133333pt;}
.xbb_c00310{left:306.666667pt;}
.x2e_c00310{left:309.333333pt;}
.xb_c00310{left:312.373333pt;}
.xa7_c00310{left:313.706667pt;}
.x91_c00310{left:317.706667pt;}
.xa2_c00310{left:318.666667pt;}
.x21_c00310{left:320.000000pt;}
.x4_c00310{left:321.333333pt;}
.xcc_c00310{left:322.666667pt;}
.xcf_c00310{left:324.373333pt;}
.xdc_c00310{left:327.040000pt;}
.x79_c00310{left:328.373333pt;}
.xea_c00310{left:329.333333pt;}
.x98_c00310{left:331.040000pt;}
.x8b_c00310{left:332.000000pt;}
.xe6_c00310{left:333.706667pt;}
.x4b_c00310{left:335.626667pt;}
.x54_c00310{left:337.333333pt;}
.x95_c00310{left:338.666667pt;}
.xe1_c00310{left:340.373333pt;}
.x2a_c00310{left:341.333333pt;}
.xbc_c00310{left:342.666667pt;}
.xd4_c00310{left:344.000000pt;}
.x99_c00310{left:344.960000pt;}
.xc_c00310{left:348.000000pt;}
.x64_c00310{left:348.960000pt;}
.x41_c00310{left:350.666667pt;}
.x2f_c00310{left:351.626667pt;}
.xcd_c00310{left:353.706667pt;}
.xeb_c00310{left:355.040000pt;}
.x2_c00310{left:356.000000pt;}
.xe7_c00310{left:357.706667pt;}
.x35_c00310{left:362.666667pt;}
.x22_c00310{left:364.373333pt;}
.xa9_c00310{left:367.040000pt;}
.x5_c00310{left:368.373333pt;}
.xc5_c00310{left:369.333333pt;}
.xf0_c00310{left:370.666667pt;}
.x7a_c00310{left:372.373333pt;}
.xd5_c00310{left:375.040000pt;}
.x30_c00310{left:376.373333pt;}
.xce_c00310{left:377.333333pt;}
.xbe_c00310{left:378.293333pt;}
.xb3_c00310{left:380.000000pt;}
.xe5_c00310{left:381.333333pt;}
.xaa_c00310{left:384.960000pt;}
.xe8_c00310{left:388.373333pt;}
.xa3_c00310{left:389.333333pt;}
.x5d_c00310{left:390.293333pt;}
.x23_c00310{left:392.000000pt;}
.x16_c00310{left:394.666667pt;}
.xd0_c00310{left:396.000000pt;}
.x73_c00310{left:397.333333pt;}
.xd_c00310{left:398.293333pt;}
.x9a_c00310{left:399.240000pt;}
.x36_c00310{left:400.960000pt;}
.xdd_c00310{left:402.293333pt;}
.x65_c00310{left:403.240000pt;}
.x7b_c00310{left:404.373333pt;}
.xab_c00310{left:408.000000pt;}
.xbd_c00310{left:411.040000pt;}
.xc6_c00310{left:413.333333pt;}
.x4c_c00310{left:414.666667pt;}
.xe_c00310{left:416.960000pt;}
.x6_c00310{left:419.040000pt;}
.x84_c00310{left:420.000000pt;}
.x5e_c00310{left:420.960000pt;}
.x17_c00310{left:423.040000pt;}
.xd6_c00310{left:424.000000pt;}
.x55_c00310{left:424.960000pt;}
.x7c_c00310{left:426.666667pt;}
.x96_c00310{left:427.626667pt;}
.xe2_c00310{left:430.666667pt;}
.xfa_c00310{left:432.000000pt;}
.xf_c00310{left:433.333333pt;}
.x2b_c00310{left:435.040000pt;}
.xc2_c00310{left:436.000000pt;}
.x9b_c00310{left:438.666667pt;}
.x5f_c00310{left:440.373333pt;}
.x31_c00310{left:442.293333pt;}
.x18_c00310{left:443.626667pt;}
.xb4_c00310{left:444.960000pt;}
.x9c_c00310{left:448.000000pt;}
.xe9_c00310{left:449.706667pt;}
.x24_c00310{left:451.626667pt;}
.x66_c00310{left:452.960000pt;}
.xf1_c00310{left:455.626667pt;}
.xd1_c00310{left:458.293333pt;}
.xb5_c00310{left:459.240000pt;}
.xac_c00310{left:460.573333pt;}
.xfb_c00310{left:462.293333pt;}
.x32_c00310{left:463.626667pt;}
.x10_c00310{left:465.706667pt;}
.x60_c00310{left:466.666667pt;}
.x85_c00310{left:468.000000pt;}
.x37_c00310{left:469.133333pt;}
.x7d_c00310{left:472.000000pt;}
.x25_c00310{left:472.960000pt;}
.xf5_c00310{left:475.040000pt;}
.x4d_c00310{left:477.333333pt;}
.x7_c00310{left:479.800000pt;}
.x19_c00310{left:481.333333pt;}
.x9d_c00310{left:483.626667pt;}
.x67_c00310{left:486.666667pt;}
.x86_c00310{left:488.000000pt;}
.x42_c00310{left:488.960000pt;}
.xc7_c00310{left:490.666667pt;}
.xc3_c00310{left:492.000000pt;}
.x56_c00310{left:493.906667pt;}
.xd2_c00310{left:498.666667pt;}
.xfc_c00310{left:501.333333pt;}
.xde_c00310{left:503.040000pt;}
.x38_c00310{left:504.000000pt;}
.x11_c00310{left:506.666667pt;}
.x4e_c00310{left:508.373333pt;}
.xf6_c00310{left:509.333333pt;}
.x74_c00310{left:512.373333pt;}
.x9e_c00310{left:513.706667pt;}
.xd3_c00310{left:517.706667pt;}
.x26_c00310{left:520.000000pt;}
.x7e_c00310{left:523.040000pt;}
.x61_c00310{left:524.960000pt;}
.xa4_c00310{left:529.333333pt;}
.x43_c00310{left:531.626667pt;}
.x1a_c00310{left:535.426667pt;}
.x75_c00310{left:536.960000pt;}
.xec_c00310{left:540.373333pt;}
.xdf_c00310{left:541.706667pt;}
.x57_c00310{left:543.040000pt;}
.x39_c00310{left:544.000000pt;}
.x7f_c00310{left:546.293333pt;}
.x6e_c00310{left:548.373333pt;}
.x1b_c00310{left:549.706667pt;}
.xc8_c00310{left:551.626667pt;}
.x8c_c00310{left:554.666667pt;}
.xd7_c00310{left:556.000000pt;}
.x4f_c00310{left:557.333333pt;}
.x3a_c00310{left:558.293333pt;}
.x44_c00310{left:561.333333pt;}
.xed_c00310{left:562.666667pt;}
.x68_c00310{left:564.960000pt;}
.x50_c00310{left:571.240000pt;}
.x62_c00310{left:574.666667pt;}
.xba_c00310{left:580.373333pt;}
.xfe_c00310{left:583.626667pt;}
.x69_c00310{left:584.760000pt;}
.xee_c00310{left:586.666667pt;}
.x87_c00310{left:588.000000pt;}
.x9f_c00310{left:589.333333pt;}
.x45_c00310{left:592.373333pt;}
.x58_c00310{left:594.666667pt;}
.x3b_c00310{left:597.333333pt;}
.xf2_c00310{left:602.293333pt;}
.x8d_c00310{left:604.000000pt;}
.x80_c00310{left:604.960000pt;}
.xd8_c00310{left:606.666667pt;}
.x6f_c00310{left:610.666667pt;}
.xc9_c00310{left:614.666667pt;}
.x46_c00310{left:616.000000pt;}
.x6a_c00310{left:617.133333pt;}
.xfd_c00310{left:621.333333pt;}
.xd9_c00310{left:623.040000pt;}
.x1_c00310{left:624.960000pt;}
.xf7_c00310{left:626.666667pt;}
.xf3_c00310{left:628.373333pt;}
.x70_c00310{left:629.706667pt;}
.x59_c00310{left:632.000000pt;}
.x76_c00310{left:634.293333pt;}
.xad_c00310{left:644.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_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_2ba550c78bcb1a76d241c1a0.woff2')format("woff");}.ff1_c00311{font-family:ff1_c00311;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m93_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);}
.maa_c00311{transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);}
.mab_c00311{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.ma6_c00311{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m7b_c00311{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);}
.m80_c00311{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m61_c00311{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m3c_c00311{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.mad_c00311{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m44_c00311{transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);}
.m52_c00311{transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);}
.mc9_c00311{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m5d_c00311{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00311{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mac_c00311{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m62_c00311{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m17_c00311{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m70_c00311{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.mc8_c00311{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m5b_c00311{transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);}
.m10_c00311{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m51_c00311{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.ma4_c00311{transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);}
.mc4_c00311{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m74_c00311{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m7d_c00311{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mdc_c00311{transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);}
.m7_c00311{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.md0_c00311{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m57_c00311{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m8f_c00311{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m8c_c00311{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.mbc_c00311{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.md2_c00311{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.ma2_c00311{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m85_c00311{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m95_c00311{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m4b_c00311{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mb3_c00311{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m46_c00311{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m9_c00311{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.mcc_c00311{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m82_c00311{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.me0_c00311{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.mb4_c00311{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.me1_c00311{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m64_c00311{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m40_c00311{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.md7_c00311{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.mba_c00311{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m5f_c00311{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mb8_c00311{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.mc6_c00311{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mce_c00311{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m89_c00311{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m2b_c00311{transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);}
.m81_c00311{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m18_c00311{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mcb_c00311{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m1e_c00311{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m1c_c00311{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m54_c00311{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.md6_c00311{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m2_c00311{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m71_c00311{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.md3_c00311{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.ma1_c00311{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m94_c00311{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m96_c00311{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.mdb_c00311{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m7f_c00311{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mdf_c00311{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m7e_c00311{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m45_c00311{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m34_c00311{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m37_c00311{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m98_c00311{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.ma3_c00311{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m88_c00311{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.m47_c00311{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.mae_c00311{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m6_c00311{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m27_c00311{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m14_c00311{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m0_c00311{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m9e_c00311{transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);}
.m1f_c00311{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m83_c00311{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mb_c00311{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m68_c00311{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.ma9_c00311{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.ma0_c00311{transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);}
.m55_c00311{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m42_c00311{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.mc3_c00311{transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);}
.m6c_c00311{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.ma5_c00311{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.ma_c00311{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m3b_c00311{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m6d_c00311{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m69_c00311{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m6b_c00311{transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);}
.mb5_c00311{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m3e_c00311{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m3a_c00311{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);}
.m20_c00311{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.md1_c00311{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m32_c00311{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m4_c00311{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);}
.m50_c00311{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m53_c00311{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mbd_c00311{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m59_c00311{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m22_c00311{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m3_c00311{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m67_c00311{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mb0_c00311{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mcf_c00311{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m36_c00311{transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);}
.m63_c00311{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m9c_c00311{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.mc_c00311{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.mca_c00311{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m76_c00311{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m8a_c00311{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.mbf_c00311{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m11_c00311{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mc7_c00311{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m58_c00311{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.md9_c00311{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.me_c00311{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m9b_c00311{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m21_c00311{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m60_c00311{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mbe_c00311{transform:matrix(0.528293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528293,0.000000,0.000000,0.250000,0,0);}
.m99_c00311{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m6a_c00311{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mcd_c00311{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m4a_c00311{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m5_c00311{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m73_c00311{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.md_c00311{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m78_c00311{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m25_c00311{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m90_c00311{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m24_c00311{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m2c_c00311{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.maf_c00311{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m84_c00311{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m4e_c00311{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m72_c00311{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.md5_c00311{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mc0_c00311{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m87_c00311{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m5e_c00311{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m43_c00311{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m35_c00311{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mdd_c00311{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m6e_c00311{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m49_c00311{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m4f_c00311{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m7c_c00311{transform:matrix(0.552905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552905,0.000000,0.000000,0.250000,0,0);}
.m2f_c00311{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.ma8_c00311{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m19_c00311{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m9d_c00311{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m48_c00311{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m66_c00311{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m1b_c00311{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m91_c00311{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m56_c00311{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m77_c00311{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m33_c00311{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.mf_c00311{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m12_c00311{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m3d_c00311{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mb9_c00311{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.ma7_c00311{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.md8_c00311{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m5c_c00311{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.mde_c00311{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m8d_c00311{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.md4_c00311{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.mb2_c00311{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m79_c00311{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m8e_c00311{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m41_c00311{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m7a_c00311{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.mc1_c00311{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m1a_c00311{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m26_c00311{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.m39_c00311{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m31_c00311{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);}
.m3f_c00311{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m97_c00311{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m1_c00311{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m8b_c00311{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m1d_c00311{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mb7_c00311{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.mb1_c00311{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_c00311{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m86_c00311{transform:matrix(0.633529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633529,0.000000,0.000000,0.250000,0,0);}
.mc5_c00311{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m4d_c00311{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.mb6_c00311{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m28_c00311{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m75_c00311{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m9a_c00311{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m4c_c00311{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m92_c00311{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m2e_c00311{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m2d_c00311{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m15_c00311{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m65_c00311{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m16_c00311{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m23_c00311{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mc2_c00311{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m2a_c00311{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m5a_c00311{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m9f_c00311{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.m29_c00311{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m38_c00311{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m8_c00311{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m6f_c00311{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.mbb_c00311{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.mda_c00311{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00311{vertical-align:0.000000px;}
.v2_c00311{vertical-align:6.000000px;}
.v1_c00311{vertical-align:12.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;}
}
.ws2_c00311{word-spacing:-16.889280px;}
.ws0_c00311{word-spacing:-7.568855px;}
.ws1_c00311{word-spacing:-2.331312px;}
.ws3_c00311{word-spacing:0.000000px;}
._0_c00311{width:1.977048px;}
.fc0_c00311{color:transparent;}
.fs7_c00311{font-size:3.420000px;}
.fs4_c00311{font-size:18.720000px;}
.fs1_c00311{font-size:20.400000px;}
.fs5_c00311{font-size:25.500000px;}
.fs0_c00311{font-size:28.920000px;}
.fs3_c00311{font-size:32.340000px;}
.fs2_c00311{font-size:35.700000px;}
.fs6_c00311{font-size:39.120000px;}
.y0_c00311{bottom:0.000000px;}
.ycd_c00311{bottom:249.825000px;}
.yce_c00311{bottom:250.245000px;}
.ycc_c00311{bottom:250.470000px;}
.ycb_c00311{bottom:250.905000px;}
.ycf_c00311{bottom:252.405000px;}
.yc8_c00311{bottom:267.825000px;}
.yc7_c00311{bottom:268.680000px;}
.yc6_c00311{bottom:269.745000px;}
.yc4_c00311{bottom:270.405000px;}
.yca_c00311{bottom:271.470000px;}
.yc9_c00311{bottom:271.905000px;}
.yc5_c00311{bottom:271.920000px;}
.yc2_c00311{bottom:289.245000px;}
.yc0_c00311{bottom:289.905000px;}
.yc1_c00311{bottom:291.405000px;}
.yc3_c00311{bottom:292.470000px;}
.ybb_c00311{bottom:307.245000px;}
.ybc_c00311{bottom:308.745000px;}
.ybd_c00311{bottom:310.905000px;}
.ybe_c00311{bottom:311.130000px;}
.ybf_c00311{bottom:311.970000px;}
.yb8_c00311{bottom:328.245000px;}
.yb7_c00311{bottom:329.130000px;}
.yba_c00311{bottom:329.745000px;}
.yb6_c00311{bottom:330.405000px;}
.yb9_c00311{bottom:330.630000px;}
.yb4_c00311{bottom:349.245000px;}
.yb1_c00311{bottom:349.905000px;}
.yb5_c00311{bottom:350.130000px;}
.yb2_c00311{bottom:350.970000px;}
.yb3_c00311{bottom:351.405000px;}
.yb0_c00311{bottom:367.905000px;}
.yaf_c00311{bottom:368.745000px;}
.yac_c00311{bottom:369.405000px;}
.yad_c00311{bottom:370.470000px;}
.yae_c00311{bottom:370.905000px;}
.ya9_c00311{bottom:388.245000px;}
.ya7_c00311{bottom:389.130000px;}
.ya8_c00311{bottom:389.325000px;}
.ya6_c00311{bottom:390.405000px;}
.yaa_c00311{bottom:390.630000px;}
.yab_c00311{bottom:391.470000px;}
.ya2_c00311{bottom:406.905000px;}
.ya4_c00311{bottom:407.745000px;}
.ya3_c00311{bottom:409.470000px;}
.ya1_c00311{bottom:409.905000px;}
.ya5_c00311{bottom:410.130000px;}
.ya0_c00311{bottom:429.405000px;}
.y9e_c00311{bottom:446.745000px;}
.y9f_c00311{bottom:448.245000px;}
.y9c_c00311{bottom:448.905000px;}
.y9d_c00311{bottom:450.405000px;}
.y98_c00311{bottom:466.470000px;}
.y9b_c00311{bottom:467.745000px;}
.y99_c00311{bottom:468.630000px;}
.y9a_c00311{bottom:468.825000px;}
.y97_c00311{bottom:469.905000px;}
.y93_c00311{bottom:487.245000px;}
.y95_c00311{bottom:488.130000px;}
.y92_c00311{bottom:489.405000px;}
.y96_c00311{bottom:489.630000px;}
.y94_c00311{bottom:490.470000px;}
.y91_c00311{bottom:505.470000px;}
.y90_c00311{bottom:506.745000px;}
.y8d_c00311{bottom:507.825000px;}
.y8e_c00311{bottom:508.905000px;}
.y8f_c00311{bottom:509.970000px;}
.y87_c00311{bottom:526.245000px;}
.y89_c00311{bottom:527.130000px;}
.y8b_c00311{bottom:527.745000px;}
.y88_c00311{bottom:528.405000px;}
.y8c_c00311{bottom:528.630000px;}
.y8a_c00311{bottom:529.905000px;}
.y84_c00311{bottom:546.180000px;}
.y83_c00311{bottom:546.825000px;}
.y85_c00311{bottom:547.245000px;}
.y82_c00311{bottom:547.905000px;}
.y86_c00311{bottom:549.405000px;}
.y7d_c00311{bottom:565.245000px;}
.y7f_c00311{bottom:566.325000px;}
.y80_c00311{bottom:566.745000px;}
.y7e_c00311{bottom:567.405000px;}
.y81_c00311{bottom:568.905000px;}
.y76_c00311{bottom:585.825000px;}
.y7c_c00311{bottom:586.245000px;}
.y78_c00311{bottom:586.905000px;}
.y7b_c00311{bottom:587.130000px;}
.y7a_c00311{bottom:587.325000px;}
.y77_c00311{bottom:587.970000px;}
.y79_c00311{bottom:588.405000px;}
.y73_c00311{bottom:604.245000px;}
.y75_c00311{bottom:605.745000px;}
.y74_c00311{bottom:607.470000px;}
.y72_c00311{bottom:607.905000px;}
.y70_c00311{bottom:625.245000px;}
.y71_c00311{bottom:627.405000px;}
.y6a_c00311{bottom:644.745000px;}
.y6f_c00311{bottom:644.970000px;}
.y6b_c00311{bottom:645.825000px;}
.y6e_c00311{bottom:646.245000px;}
.y69_c00311{bottom:646.905000px;}
.y6d_c00311{bottom:647.130000px;}
.y6c_c00311{bottom:647.970000px;}
.y64_c00311{bottom:664.245000px;}
.y68_c00311{bottom:665.325000px;}
.y66_c00311{bottom:665.745000px;}
.y63_c00311{bottom:666.405000px;}
.y67_c00311{bottom:667.470000px;}
.y65_c00311{bottom:667.905000px;}
.y61_c00311{bottom:683.745000px;}
.y62_c00311{bottom:685.245000px;}
.y5d_c00311{bottom:703.245000px;}
.y60_c00311{bottom:704.325000px;}
.y5c_c00311{bottom:705.405000px;}
.y5f_c00311{bottom:706.470000px;}
.y5e_c00311{bottom:706.905000px;}
.y57_c00311{bottom:722.745000px;}
.y59_c00311{bottom:724.905000px;}
.y5b_c00311{bottom:725.325000px;}
.y58_c00311{bottom:725.970000px;}
.y5a_c00311{bottom:726.405000px;}
.y54_c00311{bottom:743.745000px;}
.y53_c00311{bottom:744.630000px;}
.y55_c00311{bottom:744.825000px;}
.y56_c00311{bottom:745.905000px;}
.y52_c00311{bottom:762.405000px;}
.y51_c00311{bottom:763.245000px;}
.y4f_c00311{bottom:764.325000px;}
.y50_c00311{bottom:765.405000px;}
.y4c_c00311{bottom:781.905000px;}
.y4b_c00311{bottom:782.745000px;}
.y4a_c00311{bottom:783.180000px;}
.y49_c00311{bottom:784.905000px;}
.y4d_c00311{bottom:785.130000px;}
.y4e_c00311{bottom:786.405000px;}
.y45_c00311{bottom:801.180000px;}
.y47_c00311{bottom:801.405000px;}
.y46_c00311{bottom:802.245000px;}
.y44_c00311{bottom:804.405000px;}
.y48_c00311{bottom:804.630000px;}
.y3e_c00311{bottom:820.905000px;}
.y42_c00311{bottom:822.180000px;}
.y43_c00311{bottom:822.405000px;}
.y41_c00311{bottom:823.245000px;}
.y3f_c00311{bottom:823.905000px;}
.y3d_c00311{bottom:824.130000px;}
.y40_c00311{bottom:825.405000px;}
.y3a_c00311{bottom:842.745000px;}
.y3b_c00311{bottom:843.630000px;}
.y3c_c00311{bottom:843.825000px;}
.y39_c00311{bottom:844.905000px;}
.y38_c00311{bottom:864.405000px;}
.y37_c00311{bottom:880.905000px;}
.y35_c00311{bottom:881.745000px;}
.y32_c00311{bottom:882.630000px;}
.y33_c00311{bottom:883.470000px;}
.y34_c00311{bottom:883.905000px;}
.y36_c00311{bottom:884.130000px;}
.y30_c00311{bottom:901.245000px;}
.y2e_c00311{bottom:902.130000px;}
.y2d_c00311{bottom:903.405000px;}
.y31_c00311{bottom:903.630000px;}
.y2f_c00311{bottom:904.905000px;}
.y29_c00311{bottom:921.825000px;}
.y2b_c00311{bottom:922.245000px;}
.y28_c00311{bottom:922.905000px;}
.y2a_c00311{bottom:923.130000px;}
.y27_c00311{bottom:923.970000px;}
.y2c_c00311{bottom:924.405000px;}
.y24_c00311{bottom:941.745000px;}
.y23_c00311{bottom:942.405000px;}
.y26_c00311{bottom:942.630000px;}
.y25_c00311{bottom:943.905000px;}
.y1f_c00311{bottom:960.825000px;}
.y1e_c00311{bottom:961.905000px;}
.y21_c00311{bottom:962.130000px;}
.y22_c00311{bottom:962.970000px;}
.y20_c00311{bottom:963.405000px;}
.y1c_c00311{bottom:980.325000px;}
.y19_c00311{bottom:980.745000px;}
.y18_c00311{bottom:981.405000px;}
.y1d_c00311{bottom:981.630000px;}
.y1a_c00311{bottom:982.470000px;}
.y1b_c00311{bottom:982.905000px;}
.y16_c00311{bottom:1000.245000px;}
.y14_c00311{bottom:1001.130000px;}
.y15_c00311{bottom:1001.325000px;}
.y13_c00311{bottom:1002.405000px;}
.y17_c00311{bottom:1002.630000px;}
.y12_c00311{bottom:1018.905000px;}
.yd_c00311{bottom:1019.745000px;}
.yf_c00311{bottom:1020.630000px;}
.y10_c00311{bottom:1020.825000px;}
.ye_c00311{bottom:1021.905000px;}
.y11_c00311{bottom:1022.130000px;}
.y9_c00311{bottom:1039.245000px;}
.ya_c00311{bottom:1040.325000px;}
.y8_c00311{bottom:1041.405000px;}
.yc_c00311{bottom:1041.630000px;}
.yb_c00311{bottom:1042.470000px;}
.y4_c00311{bottom:1058.325000px;}
.y3_c00311{bottom:1058.745000px;}
.y6_c00311{bottom:1059.825000px;}
.y5_c00311{bottom:1060.905000px;}
.y7_c00311{bottom:1061.130000px;}
.y2_c00311{bottom:1099.050000px;}
.y1_c00311{bottom:1099.905000px;}
.ha_c00311{height:4.206533px;}
.h5_c00311{height:23.025234px;}
.h2_c00311{height:25.091602px;}
.h6_c00311{height:31.364502px;}
.h1_c00311{height:35.571035px;}
.h4_c00311{height:39.777568px;}
.h9_c00311{height:41.571035px;}
.h3_c00311{height:43.910303px;}
.h8_c00311{height:47.571035px;}
.h7_c00311{height:48.116836px;}
.h0_c00311{height:1335.000000px;}
.w0_c00311{width:880.500000px;}
.x0_c00311{left:0.000000px;}
.x109_c00311{left:149.580000px;}
.xa9_c00311{left:151.500000px;}
.x1_c00311{left:152.580000px;}
.x10d_c00311{left:165.645000px;}
.x7f_c00311{left:168.000000px;}
.x62_c00311{left:169.920000px;}
.x10_c00311{left:172.920000px;}
.xba_c00311{left:174.420000px;}
.xc0_c00311{left:175.500000px;}
.x74_c00311{left:179.580000px;}
.xf0_c00311{left:181.500000px;}
.x54_c00311{left:184.080000px;}
.x38_c00311{left:189.420000px;}
.x8a_c00311{left:193.080000px;}
.x2b_c00311{left:195.000000px;}
.xc1_c00311{left:196.920000px;}
.x11_c00311{left:199.920000px;}
.xb5_c00311{left:201.000000px;}
.x55_c00311{left:202.920000px;}
.x46_c00311{left:208.500000px;}
.x101_c00311{left:212.580000px;}
.xed_c00311{left:214.500000px;}
.xd7_c00311{left:215.580000px;}
.x1e_c00311{left:217.500000px;}
.x3_c00311{left:219.000000px;}
.x39_c00311{left:220.500000px;}
.xb3_c00311{left:222.000000px;}
.x2c_c00311{left:223.920000px;}
.x75_c00311{left:226.920000px;}
.x9f_c00311{left:228.000000px;}
.x56_c00311{left:229.920000px;}
.xe7_c00311{left:232.500000px;}
.xad_c00311{left:233.580000px;}
.x92_c00311{left:235.920000px;}
.x1f_c00311{left:237.000000px;}
.x63_c00311{left:238.500000px;}
.xd1_c00311{left:241.080000px;}
.x2d_c00311{left:243.000000px;}
.x97_c00311{left:245.580000px;}
.x6e_c00311{left:247.920000px;}
.x20_c00311{left:249.000000px;}
.xc2_c00311{left:252.000000px;}
.x4_c00311{left:253.080000px;}
.xee_c00311{left:255.000000px;}
.x12_c00311{left:256.080000px;}
.x10e_c00311{left:257.145000px;}
.xe0_c00311{left:259.080000px;}
.x106_c00311{left:260.580000px;}
.x2e_c00311{left:262.500000px;}
.xb4_c00311{left:264.000000px;}
.x47_c00311{left:265.500000px;}
.xa6_c00311{left:267.000000px;}
.x76_c00311{left:268.920000px;}
.x5_c00311{left:271.920000px;}
.xfd_c00311{left:273.000000px;}
.xa0_c00311{left:274.500000px;}
.x8b_c00311{left:276.000000px;}
.x107_c00311{left:280.920000px;}
.xe8_c00311{left:283.500000px;}
.x3a_c00311{left:284.580000px;}
.x13_c00311{left:286.500000px;}
.xae_c00311{left:287.580000px;}
.xbb_c00311{left:289.500000px;}
.x98_c00311{left:292.500000px;}
.x8c_c00311{left:295.080000px;}
.x6_c00311{left:297.000000px;}
.x2f_c00311{left:298.500000px;}
.x21_c00311{left:300.000000px;}
.xfe_c00311{left:301.080000px;}
.x93_c00311{left:304.920000px;}
.x57_c00311{left:306.000000px;}
.x64_c00311{left:307.080000px;}
.x108_c00311{left:309.000000px;}
.x77_c00311{left:310.500000px;}
.x48_c00311{left:312.420000px;}
.xef_c00311{left:313.500000px;}
.xdb_c00311{left:315.000000px;}
.x111_c00311{left:318.420000px;}
.xe1_c00311{left:319.500000px;}
.x14_c00311{left:322.920000px;}
.xb6_c00311{left:324.420000px;}
.x3b_c00311{left:325.500000px;}
.xd2_c00311{left:328.920000px;}
.x78_c00311{left:331.500000px;}
.xaf_c00311{left:333.420000px;}
.x65_c00311{left:334.500000px;}
.xbc_c00311{left:336.000000px;}
.x7_c00311{left:339.000000px;}
.xf3_c00311{left:340.500000px;}
.x6f_c00311{left:341.580000px;}
.x102_c00311{left:343.080000px;}
.x22_c00311{left:346.920000px;}
.xf1_c00311{left:348.000000px;}
.x80_c00311{left:349.500000px;}
.xbd_c00311{left:351.000000px;}
.x15_c00311{left:352.500000px;}
.xc3_c00311{left:354.420000px;}
.x49_c00311{left:355.500000px;}
.x10a_c00311{left:357.420000px;}
.x3c_c00311{left:359.580000px;}
.xe2_c00311{left:363.000000px;}
.x58_c00311{left:364.080000px;}
.xb0_c00311{left:365.580000px;}
.x16_c00311{left:367.500000px;}
.x79_c00311{left:369.000000px;}
.x30_c00311{left:370.920000px;}
.xff_c00311{left:372.000000px;}
.xc9_c00311{left:373.080000px;}
.x94_c00311{left:376.920000px;}
.xa1_c00311{left:378.000000px;}
.x3d_c00311{left:379.920000px;}
.x8d_c00311{left:381.000000px;}
.x59_c00311{left:382.920000px;}
.x10b_c00311{left:384.000000px;}
.x23_c00311{left:385.500000px;}
.x81_c00311{left:387.000000px;}
.x7a_c00311{left:390.420000px;}
.xf8_c00311{left:391.500000px;}
.x99_c00311{left:393.000000px;}
.x4a_c00311{left:394.920000px;}
.xca_c00311{left:397.080000px;}
.x66_c00311{left:398.580000px;}
.xc4_c00311{left:400.500000px;}
.x82_c00311{left:401.580000px;}
.x2_c00311{left:405.000000px;}
.x3e_c00311{left:406.500000px;}
.x10f_c00311{left:407.775000px;}
.x8_c00311{left:409.500000px;}
.x5a_c00311{left:411.420000px;}
.x8e_c00311{left:414.420000px;}
.x67_c00311{left:415.920000px;}
.x70_c00311{left:417.000000px;}
.x83_c00311{left:420.000000px;}
.x95_c00311{left:421.500000px;}
.xa2_c00311{left:427.920000px;}
.x24_c00311{left:429.000000px;}
.x9_c00311{left:430.920000px;}
.x84_c00311{left:432.420000px;}
.x17_c00311{left:433.500000px;}
.xe9_c00311{left:435.000000px;}
.xe3_c00311{left:436.500000px;}
.x112_c00311{left:438.420000px;}
.x5b_c00311{left:439.500000px;}
.xb7_c00311{left:444.000000px;}
.xf4_c00311{left:445.500000px;}
.x71_c00311{left:448.080000px;}
.xd8_c00311{left:449.580000px;}
.x18_c00311{left:451.920000px;}
.xea_c00311{left:453.000000px;}
.xbe_c00311{left:454.080000px;}
.xb1_c00311{left:456.420000px;}
.xa_c00311{left:457.500000px;}
.xdc_c00311{left:458.580000px;}
.x96_c00311{left:460.080000px;}
.x4b_c00311{left:462.420000px;}
.xa7_c00311{left:465.000000px;}
.x7b_c00311{left:466.080000px;}
.x25_c00311{left:468.000000px;}
.x3f_c00311{left:469.920000px;}
.xc5_c00311{left:471.000000px;}
.xf2_c00311{left:472.500000px;}
.xcd_c00311{left:473.580000px;}
.x110_c00311{left:475.500000px;}
.x103_c00311{left:477.000000px;}
.x5c_c00311{left:478.920000px;}
.xd3_c00311{left:480.000000px;}
.x31_c00311{left:483.000000px;}
.x9a_c00311{left:486.420000px;}
.x4c_c00311{left:489.000000px;}
.x19_c00311{left:490.500000px;}
.x104_c00311{left:492.000000px;}
.xf9_c00311{left:493.080000px;}
.x40_c00311{left:496.920000px;}
.xb_c00311{left:498.000000px;}
.xaa_c00311{left:499.500000px;}
.xb8_c00311{left:502.080000px;}
.xa3_c00311{left:504.420000px;}
.x5d_c00311{left:505.920000px;}
.xeb_c00311{left:510.420000px;}
.xcb_c00311{left:511.500000px;}
.xe4_c00311{left:513.000000px;}
.xc_c00311{left:514.920000px;}
.x85_c00311{left:516.000000px;}
.x32_c00311{left:519.420000px;}
.xf5_c00311{left:520.500000px;}
.x68_c00311{left:521.580000px;}
.xce_c00311{left:526.500000px;}
.x41_c00311{left:528.000000px;}
.xc6_c00311{left:529.500000px;}
.x10c_c00311{left:533.580000px;}
.x4d_c00311{left:535.500000px;}
.x8f_c00311{left:536.580000px;}
.xd4_c00311{left:538.080000px;}
.xfa_c00311{left:540.000000px;}
.x26_c00311{left:543.000000px;}
.x5e_c00311{left:544.500000px;}
.x33_c00311{left:546.420000px;}
.xf6_c00311{left:549.000000px;}
.x4e_c00311{left:552.000000px;}
.xd9_c00311{left:556.920000px;}
.xdd_c00311{left:558.000000px;}
.x69_c00311{left:559.500000px;}
.x1a_c00311{left:564.420000px;}
.x86_c00311{left:565.500000px;}
.x9b_c00311{left:566.580000px;}
.x27_c00311{left:568.920000px;}
.xd5_c00311{left:570.000000px;}
.xbf_c00311{left:571.500000px;}
.x6a_c00311{left:573.000000px;}
.x42_c00311{left:574.920000px;}
.xcf_c00311{left:576.000000px;}
.xab_c00311{left:579.420000px;}
.xfb_c00311{left:580.500000px;}
.x87_c00311{left:583.920000px;}
.x9c_c00311{left:585.000000px;}
.xd_c00311{left:586.080000px;}
.x113_c00311{left:591.420000px;}
.x4f_c00311{left:592.500000px;}
.xcc_c00311{left:594.000000px;}
.x43_c00311{left:601.920000px;}
.x34_c00311{left:603.000000px;}
.x28_c00311{left:604.920000px;}
.x100_c00311{left:606.000000px;}
.x9d_c00311{left:607.080000px;}
.x7c_c00311{left:608.580000px;}
.x5f_c00311{left:612.420000px;}
.xe5_c00311{left:613.920000px;}
.xd6_c00311{left:615.000000px;}
.x1b_c00311{left:619.500000px;}
.x88_c00311{left:621.000000px;}
.x50_c00311{left:622.920000px;}
.xde_c00311{left:624.000000px;}
.x6b_c00311{left:627.000000px;}
.x35_c00311{left:628.500000px;}
.x72_c00311{left:630.000000px;}
.xa4_c00311{left:631.920000px;}
.x90_c00311{left:633.000000px;}
.xda_c00311{left:634.500000px;}
.xdf_c00311{left:637.920000px;}
.x60_c00311{left:639.000000px;}
.x44_c00311{left:642.000000px;}
.x6c_c00311{left:643.920000px;}
.xa8_c00311{left:646.920000px;}
.x7d_c00311{left:648.000000px;}
.xe_c00311{left:651.000000px;}
.xac_c00311{left:652.500000px;}
.xd0_c00311{left:655.080000px;}
.x51_c00311{left:656.580000px;}
.x1c_c00311{left:658.500000px;}
.x105_c00311{left:660.000000px;}
.x29_c00311{left:661.080000px;}
.xb9_c00311{left:663.000000px;}
.x91_c00311{left:667.920000px;}
.x6d_c00311{left:669.000000px;}
.xf7_c00311{left:672.000000px;}
.xe6_c00311{left:673.920000px;}
.x52_c00311{left:675.420000px;}
.xec_c00311{left:678.000000px;}
.x36_c00311{left:679.080000px;}
.xb2_c00311{left:681.000000px;}
.xf_c00311{left:682.080000px;}
.xc7_c00311{left:688.080000px;}
.x45_c00311{left:690.000000px;}
.x2a_c00311{left:691.920000px;}
.x1d_c00311{left:693.000000px;}
.x89_c00311{left:694.500000px;}
.xfc_c00311{left:697.500000px;}
.x9e_c00311{left:699.420000px;}
.xa5_c00311{left:700.500000px;}
.x73_c00311{left:702.000000px;}
.x53_c00311{left:703.080000px;}
.x61_c00311{left:705.000000px;}
.xc8_c00311{left:708.420000px;}
.x37_c00311{left:709.920000px;}
.x7e_c00311{left:712.500000px;}
.x114_c00311{left:720.000000px;}
@media print{
.v0_c00311{vertical-align:0.000000pt;}
.v2_c00311{vertical-align:5.333333pt;}
.v1_c00311{vertical-align:10.666667pt;}
.ls0_c00311{letter-spacing:0.000000pt;}
.ws2_c00311{word-spacing:-15.012693pt;}
.ws0_c00311{word-spacing:-6.727871pt;}
.ws1_c00311{word-spacing:-2.072278pt;}
.ws3_c00311{word-spacing:0.000000pt;}
._0_c00311{width:1.757376pt;}
.fs7_c00311{font-size:3.040000pt;}
.fs4_c00311{font-size:16.640000pt;}
.fs1_c00311{font-size:18.133333pt;}
.fs5_c00311{font-size:22.666667pt;}
.fs0_c00311{font-size:25.706667pt;}
.fs3_c00311{font-size:28.746667pt;}
.fs2_c00311{font-size:31.733333pt;}
.fs6_c00311{font-size:34.773333pt;}
.y0_c00311{bottom:0.000000pt;}
.ycd_c00311{bottom:222.066667pt;}
.yce_c00311{bottom:222.440000pt;}
.ycc_c00311{bottom:222.640000pt;}
.ycb_c00311{bottom:223.026667pt;}
.ycf_c00311{bottom:224.360000pt;}
.yc8_c00311{bottom:238.066667pt;}
.yc7_c00311{bottom:238.826667pt;}
.yc6_c00311{bottom:239.773333pt;}
.yc4_c00311{bottom:240.360000pt;}
.yca_c00311{bottom:241.306667pt;}
.yc9_c00311{bottom:241.693333pt;}
.yc5_c00311{bottom:241.706667pt;}
.yc2_c00311{bottom:257.106667pt;}
.yc0_c00311{bottom:257.693333pt;}
.yc1_c00311{bottom:259.026667pt;}
.yc3_c00311{bottom:259.973333pt;}
.ybb_c00311{bottom:273.106667pt;}
.ybc_c00311{bottom:274.440000pt;}
.ybd_c00311{bottom:276.360000pt;}
.ybe_c00311{bottom:276.560000pt;}
.ybf_c00311{bottom:277.306667pt;}
.yb8_c00311{bottom:291.773333pt;}
.yb7_c00311{bottom:292.560000pt;}
.yba_c00311{bottom:293.106667pt;}
.yb6_c00311{bottom:293.693333pt;}
.yb9_c00311{bottom:293.893333pt;}
.yb4_c00311{bottom:310.440000pt;}
.yb1_c00311{bottom:311.026667pt;}
.yb5_c00311{bottom:311.226667pt;}
.yb2_c00311{bottom:311.973333pt;}
.yb3_c00311{bottom:312.360000pt;}
.yb0_c00311{bottom:327.026667pt;}
.yaf_c00311{bottom:327.773333pt;}
.yac_c00311{bottom:328.360000pt;}
.yad_c00311{bottom:329.306667pt;}
.yae_c00311{bottom:329.693333pt;}
.ya9_c00311{bottom:345.106667pt;}
.ya7_c00311{bottom:345.893333pt;}
.ya8_c00311{bottom:346.066667pt;}
.ya6_c00311{bottom:347.026667pt;}
.yaa_c00311{bottom:347.226667pt;}
.yab_c00311{bottom:347.973333pt;}
.ya2_c00311{bottom:361.693333pt;}
.ya4_c00311{bottom:362.440000pt;}
.ya3_c00311{bottom:363.973333pt;}
.ya1_c00311{bottom:364.360000pt;}
.ya5_c00311{bottom:364.560000pt;}
.ya0_c00311{bottom:381.693333pt;}
.y9e_c00311{bottom:397.106667pt;}
.y9f_c00311{bottom:398.440000pt;}
.y9c_c00311{bottom:399.026667pt;}
.y9d_c00311{bottom:400.360000pt;}
.y98_c00311{bottom:414.640000pt;}
.y9b_c00311{bottom:415.773333pt;}
.y99_c00311{bottom:416.560000pt;}
.y9a_c00311{bottom:416.733333pt;}
.y97_c00311{bottom:417.693333pt;}
.y93_c00311{bottom:433.106667pt;}
.y95_c00311{bottom:433.893333pt;}
.y92_c00311{bottom:435.026667pt;}
.y96_c00311{bottom:435.226667pt;}
.y94_c00311{bottom:435.973333pt;}
.y91_c00311{bottom:449.306667pt;}
.y90_c00311{bottom:450.440000pt;}
.y8d_c00311{bottom:451.400000pt;}
.y8e_c00311{bottom:452.360000pt;}
.y8f_c00311{bottom:453.306667pt;}
.y87_c00311{bottom:467.773333pt;}
.y89_c00311{bottom:468.560000pt;}
.y8b_c00311{bottom:469.106667pt;}
.y88_c00311{bottom:469.693333pt;}
.y8c_c00311{bottom:469.893333pt;}
.y8a_c00311{bottom:471.026667pt;}
.y84_c00311{bottom:485.493333pt;}
.y83_c00311{bottom:486.066667pt;}
.y85_c00311{bottom:486.440000pt;}
.y82_c00311{bottom:487.026667pt;}
.y86_c00311{bottom:488.360000pt;}
.y7d_c00311{bottom:502.440000pt;}
.y7f_c00311{bottom:503.400000pt;}
.y80_c00311{bottom:503.773333pt;}
.y7e_c00311{bottom:504.360000pt;}
.y81_c00311{bottom:505.693333pt;}
.y76_c00311{bottom:520.733333pt;}
.y7c_c00311{bottom:521.106667pt;}
.y78_c00311{bottom:521.693333pt;}
.y7b_c00311{bottom:521.893333pt;}
.y7a_c00311{bottom:522.066667pt;}
.y77_c00311{bottom:522.640000pt;}
.y79_c00311{bottom:523.026667pt;}
.y73_c00311{bottom:537.106667pt;}
.y75_c00311{bottom:538.440000pt;}
.y74_c00311{bottom:539.973333pt;}
.y72_c00311{bottom:540.360000pt;}
.y70_c00311{bottom:555.773333pt;}
.y71_c00311{bottom:557.693333pt;}
.y6a_c00311{bottom:573.106667pt;}
.y6f_c00311{bottom:573.306667pt;}
.y6b_c00311{bottom:574.066667pt;}
.y6e_c00311{bottom:574.440000pt;}
.y69_c00311{bottom:575.026667pt;}
.y6d_c00311{bottom:575.226667pt;}
.y6c_c00311{bottom:575.973333pt;}
.y64_c00311{bottom:590.440000pt;}
.y68_c00311{bottom:591.400000pt;}
.y66_c00311{bottom:591.773333pt;}
.y63_c00311{bottom:592.360000pt;}
.y67_c00311{bottom:593.306667pt;}
.y65_c00311{bottom:593.693333pt;}
.y61_c00311{bottom:607.773333pt;}
.y62_c00311{bottom:609.106667pt;}
.y5d_c00311{bottom:625.106667pt;}
.y60_c00311{bottom:626.066667pt;}
.y5c_c00311{bottom:627.026667pt;}
.y5f_c00311{bottom:627.973333pt;}
.y5e_c00311{bottom:628.360000pt;}
.y57_c00311{bottom:642.440000pt;}
.y59_c00311{bottom:644.360000pt;}
.y5b_c00311{bottom:644.733333pt;}
.y58_c00311{bottom:645.306667pt;}
.y5a_c00311{bottom:645.693333pt;}
.y54_c00311{bottom:661.106667pt;}
.y53_c00311{bottom:661.893333pt;}
.y55_c00311{bottom:662.066667pt;}
.y56_c00311{bottom:663.026667pt;}
.y52_c00311{bottom:677.693333pt;}
.y51_c00311{bottom:678.440000pt;}
.y4f_c00311{bottom:679.400000pt;}
.y50_c00311{bottom:680.360000pt;}
.y4c_c00311{bottom:695.026667pt;}
.y4b_c00311{bottom:695.773333pt;}
.y4a_c00311{bottom:696.160000pt;}
.y49_c00311{bottom:697.693333pt;}
.y4d_c00311{bottom:697.893333pt;}
.y4e_c00311{bottom:699.026667pt;}
.y45_c00311{bottom:712.160000pt;}
.y47_c00311{bottom:712.360000pt;}
.y46_c00311{bottom:713.106667pt;}
.y44_c00311{bottom:715.026667pt;}
.y48_c00311{bottom:715.226667pt;}
.y3e_c00311{bottom:729.693333pt;}
.y42_c00311{bottom:730.826667pt;}
.y43_c00311{bottom:731.026667pt;}
.y41_c00311{bottom:731.773333pt;}
.y3f_c00311{bottom:732.360000pt;}
.y3d_c00311{bottom:732.560000pt;}
.y40_c00311{bottom:733.693333pt;}
.y3a_c00311{bottom:749.106667pt;}
.y3b_c00311{bottom:749.893333pt;}
.y3c_c00311{bottom:750.066667pt;}
.y39_c00311{bottom:751.026667pt;}
.y38_c00311{bottom:768.360000pt;}
.y37_c00311{bottom:783.026667pt;}
.y35_c00311{bottom:783.773333pt;}
.y32_c00311{bottom:784.560000pt;}
.y33_c00311{bottom:785.306667pt;}
.y34_c00311{bottom:785.693333pt;}
.y36_c00311{bottom:785.893333pt;}
.y30_c00311{bottom:801.106667pt;}
.y2e_c00311{bottom:801.893333pt;}
.y2d_c00311{bottom:803.026667pt;}
.y31_c00311{bottom:803.226667pt;}
.y2f_c00311{bottom:804.360000pt;}
.y29_c00311{bottom:819.400000pt;}
.y2b_c00311{bottom:819.773333pt;}
.y28_c00311{bottom:820.360000pt;}
.y2a_c00311{bottom:820.560000pt;}
.y27_c00311{bottom:821.306667pt;}
.y2c_c00311{bottom:821.693333pt;}
.y24_c00311{bottom:837.106667pt;}
.y23_c00311{bottom:837.693333pt;}
.y26_c00311{bottom:837.893333pt;}
.y25_c00311{bottom:839.026667pt;}
.y1f_c00311{bottom:854.066667pt;}
.y1e_c00311{bottom:855.026667pt;}
.y21_c00311{bottom:855.226667pt;}
.y22_c00311{bottom:855.973333pt;}
.y20_c00311{bottom:856.360000pt;}
.y1c_c00311{bottom:871.400000pt;}
.y19_c00311{bottom:871.773333pt;}
.y18_c00311{bottom:872.360000pt;}
.y1d_c00311{bottom:872.560000pt;}
.y1a_c00311{bottom:873.306667pt;}
.y1b_c00311{bottom:873.693333pt;}
.y16_c00311{bottom:889.106667pt;}
.y14_c00311{bottom:889.893333pt;}
.y15_c00311{bottom:890.066667pt;}
.y13_c00311{bottom:891.026667pt;}
.y17_c00311{bottom:891.226667pt;}
.y12_c00311{bottom:905.693333pt;}
.yd_c00311{bottom:906.440000pt;}
.yf_c00311{bottom:907.226667pt;}
.y10_c00311{bottom:907.400000pt;}
.ye_c00311{bottom:908.360000pt;}
.y11_c00311{bottom:908.560000pt;}
.y9_c00311{bottom:923.773333pt;}
.ya_c00311{bottom:924.733333pt;}
.y8_c00311{bottom:925.693333pt;}
.yc_c00311{bottom:925.893333pt;}
.yb_c00311{bottom:926.640000pt;}
.y4_c00311{bottom:940.733333pt;}
.y3_c00311{bottom:941.106667pt;}
.y6_c00311{bottom:942.066667pt;}
.y5_c00311{bottom:943.026667pt;}
.y7_c00311{bottom:943.226667pt;}
.y2_c00311{bottom:976.933333pt;}
.y1_c00311{bottom:977.693333pt;}
.ha_c00311{height:3.739141pt;}
.h5_c00311{height:20.466875pt;}
.h2_c00311{height:22.303646pt;}
.h6_c00311{height:27.879557pt;}
.h1_c00311{height:31.618698pt;}
.h4_c00311{height:35.357839pt;}
.h9_c00311{height:36.952031pt;}
.h3_c00311{height:39.031380pt;}
.h8_c00311{height:42.285365pt;}
.h7_c00311{height:42.770521pt;}
.h0_c00311{height:1186.666667pt;}
.w0_c00311{width:782.666667pt;}
.x0_c00311{left:0.000000pt;}
.x109_c00311{left:132.960000pt;}
.xa9_c00311{left:134.666667pt;}
.x1_c00311{left:135.626667pt;}
.x10d_c00311{left:147.240000pt;}
.x7f_c00311{left:149.333333pt;}
.x62_c00311{left:151.040000pt;}
.x10_c00311{left:153.706667pt;}
.xba_c00311{left:155.040000pt;}
.xc0_c00311{left:156.000000pt;}
.x74_c00311{left:159.626667pt;}
.xf0_c00311{left:161.333333pt;}
.x54_c00311{left:163.626667pt;}
.x38_c00311{left:168.373333pt;}
.x8a_c00311{left:171.626667pt;}
.x2b_c00311{left:173.333333pt;}
.xc1_c00311{left:175.040000pt;}
.x11_c00311{left:177.706667pt;}
.xb5_c00311{left:178.666667pt;}
.x55_c00311{left:180.373333pt;}
.x46_c00311{left:185.333333pt;}
.x101_c00311{left:188.960000pt;}
.xed_c00311{left:190.666667pt;}
.xd7_c00311{left:191.626667pt;}
.x1e_c00311{left:193.333333pt;}
.x3_c00311{left:194.666667pt;}
.x39_c00311{left:196.000000pt;}
.xb3_c00311{left:197.333333pt;}
.x2c_c00311{left:199.040000pt;}
.x75_c00311{left:201.706667pt;}
.x9f_c00311{left:202.666667pt;}
.x56_c00311{left:204.373333pt;}
.xe7_c00311{left:206.666667pt;}
.xad_c00311{left:207.626667pt;}
.x92_c00311{left:209.706667pt;}
.x1f_c00311{left:210.666667pt;}
.x63_c00311{left:212.000000pt;}
.xd1_c00311{left:214.293333pt;}
.x2d_c00311{left:216.000000pt;}
.x97_c00311{left:218.293333pt;}
.x6e_c00311{left:220.373333pt;}
.x20_c00311{left:221.333333pt;}
.xc2_c00311{left:224.000000pt;}
.x4_c00311{left:224.960000pt;}
.xee_c00311{left:226.666667pt;}
.x12_c00311{left:227.626667pt;}
.x10e_c00311{left:228.573333pt;}
.xe0_c00311{left:230.293333pt;}
.x106_c00311{left:231.626667pt;}
.x2e_c00311{left:233.333333pt;}
.xb4_c00311{left:234.666667pt;}
.x47_c00311{left:236.000000pt;}
.xa6_c00311{left:237.333333pt;}
.x76_c00311{left:239.040000pt;}
.x5_c00311{left:241.706667pt;}
.xfd_c00311{left:242.666667pt;}
.xa0_c00311{left:244.000000pt;}
.x8b_c00311{left:245.333333pt;}
.x107_c00311{left:249.706667pt;}
.xe8_c00311{left:252.000000pt;}
.x3a_c00311{left:252.960000pt;}
.x13_c00311{left:254.666667pt;}
.xae_c00311{left:255.626667pt;}
.xbb_c00311{left:257.333333pt;}
.x98_c00311{left:260.000000pt;}
.x8c_c00311{left:262.293333pt;}
.x6_c00311{left:264.000000pt;}
.x2f_c00311{left:265.333333pt;}
.x21_c00311{left:266.666667pt;}
.xfe_c00311{left:267.626667pt;}
.x93_c00311{left:271.040000pt;}
.x57_c00311{left:272.000000pt;}
.x64_c00311{left:272.960000pt;}
.x108_c00311{left:274.666667pt;}
.x77_c00311{left:276.000000pt;}
.x48_c00311{left:277.706667pt;}
.xef_c00311{left:278.666667pt;}
.xdb_c00311{left:280.000000pt;}
.x111_c00311{left:283.040000pt;}
.xe1_c00311{left:284.000000pt;}
.x14_c00311{left:287.040000pt;}
.xb6_c00311{left:288.373333pt;}
.x3b_c00311{left:289.333333pt;}
.xd2_c00311{left:292.373333pt;}
.x78_c00311{left:294.666667pt;}
.xaf_c00311{left:296.373333pt;}
.x65_c00311{left:297.333333pt;}
.xbc_c00311{left:298.666667pt;}
.x7_c00311{left:301.333333pt;}
.xf3_c00311{left:302.666667pt;}
.x6f_c00311{left:303.626667pt;}
.x102_c00311{left:304.960000pt;}
.x22_c00311{left:308.373333pt;}
.xf1_c00311{left:309.333333pt;}
.x80_c00311{left:310.666667pt;}
.xbd_c00311{left:312.000000pt;}
.x15_c00311{left:313.333333pt;}
.xc3_c00311{left:315.040000pt;}
.x49_c00311{left:316.000000pt;}
.x10a_c00311{left:317.706667pt;}
.x3c_c00311{left:319.626667pt;}
.xe2_c00311{left:322.666667pt;}
.x58_c00311{left:323.626667pt;}
.xb0_c00311{left:324.960000pt;}
.x16_c00311{left:326.666667pt;}
.x79_c00311{left:328.000000pt;}
.x30_c00311{left:329.706667pt;}
.xff_c00311{left:330.666667pt;}
.xc9_c00311{left:331.626667pt;}
.x94_c00311{left:335.040000pt;}
.xa1_c00311{left:336.000000pt;}
.x3d_c00311{left:337.706667pt;}
.x8d_c00311{left:338.666667pt;}
.x59_c00311{left:340.373333pt;}
.x10b_c00311{left:341.333333pt;}
.x23_c00311{left:342.666667pt;}
.x81_c00311{left:344.000000pt;}
.x7a_c00311{left:347.040000pt;}
.xf8_c00311{left:348.000000pt;}
.x99_c00311{left:349.333333pt;}
.x4a_c00311{left:351.040000pt;}
.xca_c00311{left:352.960000pt;}
.x66_c00311{left:354.293333pt;}
.xc4_c00311{left:356.000000pt;}
.x82_c00311{left:356.960000pt;}
.x2_c00311{left:360.000000pt;}
.x3e_c00311{left:361.333333pt;}
.x10f_c00311{left:362.466667pt;}
.x8_c00311{left:364.000000pt;}
.x5a_c00311{left:365.706667pt;}
.x8e_c00311{left:368.373333pt;}
.x67_c00311{left:369.706667pt;}
.x70_c00311{left:370.666667pt;}
.x83_c00311{left:373.333333pt;}
.x95_c00311{left:374.666667pt;}
.xa2_c00311{left:380.373333pt;}
.x24_c00311{left:381.333333pt;}
.x9_c00311{left:383.040000pt;}
.x84_c00311{left:384.373333pt;}
.x17_c00311{left:385.333333pt;}
.xe9_c00311{left:386.666667pt;}
.xe3_c00311{left:388.000000pt;}
.x112_c00311{left:389.706667pt;}
.x5b_c00311{left:390.666667pt;}
.xb7_c00311{left:394.666667pt;}
.xf4_c00311{left:396.000000pt;}
.x71_c00311{left:398.293333pt;}
.xd8_c00311{left:399.626667pt;}
.x18_c00311{left:401.706667pt;}
.xea_c00311{left:402.666667pt;}
.xbe_c00311{left:403.626667pt;}
.xb1_c00311{left:405.706667pt;}
.xa_c00311{left:406.666667pt;}
.xdc_c00311{left:407.626667pt;}
.x96_c00311{left:408.960000pt;}
.x4b_c00311{left:411.040000pt;}
.xa7_c00311{left:413.333333pt;}
.x7b_c00311{left:414.293333pt;}
.x25_c00311{left:416.000000pt;}
.x3f_c00311{left:417.706667pt;}
.xc5_c00311{left:418.666667pt;}
.xf2_c00311{left:420.000000pt;}
.xcd_c00311{left:420.960000pt;}
.x110_c00311{left:422.666667pt;}
.x103_c00311{left:424.000000pt;}
.x5c_c00311{left:425.706667pt;}
.xd3_c00311{left:426.666667pt;}
.x31_c00311{left:429.333333pt;}
.x9a_c00311{left:432.373333pt;}
.x4c_c00311{left:434.666667pt;}
.x19_c00311{left:436.000000pt;}
.x104_c00311{left:437.333333pt;}
.xf9_c00311{left:438.293333pt;}
.x40_c00311{left:441.706667pt;}
.xb_c00311{left:442.666667pt;}
.xaa_c00311{left:444.000000pt;}
.xb8_c00311{left:446.293333pt;}
.xa3_c00311{left:448.373333pt;}
.x5d_c00311{left:449.706667pt;}
.xeb_c00311{left:453.706667pt;}
.xcb_c00311{left:454.666667pt;}
.xe4_c00311{left:456.000000pt;}
.xc_c00311{left:457.706667pt;}
.x85_c00311{left:458.666667pt;}
.x32_c00311{left:461.706667pt;}
.xf5_c00311{left:462.666667pt;}
.x68_c00311{left:463.626667pt;}
.xce_c00311{left:468.000000pt;}
.x41_c00311{left:469.333333pt;}
.xc6_c00311{left:470.666667pt;}
.x10c_c00311{left:474.293333pt;}
.x4d_c00311{left:476.000000pt;}
.x8f_c00311{left:476.960000pt;}
.xd4_c00311{left:478.293333pt;}
.xfa_c00311{left:480.000000pt;}
.x26_c00311{left:482.666667pt;}
.x5e_c00311{left:484.000000pt;}
.x33_c00311{left:485.706667pt;}
.xf6_c00311{left:488.000000pt;}
.x4e_c00311{left:490.666667pt;}
.xd9_c00311{left:495.040000pt;}
.xdd_c00311{left:496.000000pt;}
.x69_c00311{left:497.333333pt;}
.x1a_c00311{left:501.706667pt;}
.x86_c00311{left:502.666667pt;}
.x9b_c00311{left:503.626667pt;}
.x27_c00311{left:505.706667pt;}
.xd5_c00311{left:506.666667pt;}
.xbf_c00311{left:508.000000pt;}
.x6a_c00311{left:509.333333pt;}
.x42_c00311{left:511.040000pt;}
.xcf_c00311{left:512.000000pt;}
.xab_c00311{left:515.040000pt;}
.xfb_c00311{left:516.000000pt;}
.x87_c00311{left:519.040000pt;}
.x9c_c00311{left:520.000000pt;}
.xd_c00311{left:520.960000pt;}
.x113_c00311{left:525.706667pt;}
.x4f_c00311{left:526.666667pt;}
.xcc_c00311{left:528.000000pt;}
.x43_c00311{left:535.040000pt;}
.x34_c00311{left:536.000000pt;}
.x28_c00311{left:537.706667pt;}
.x100_c00311{left:538.666667pt;}
.x9d_c00311{left:539.626667pt;}
.x7c_c00311{left:540.960000pt;}
.x5f_c00311{left:544.373333pt;}
.xe5_c00311{left:545.706667pt;}
.xd6_c00311{left:546.666667pt;}
.x1b_c00311{left:550.666667pt;}
.x88_c00311{left:552.000000pt;}
.x50_c00311{left:553.706667pt;}
.xde_c00311{left:554.666667pt;}
.x6b_c00311{left:557.333333pt;}
.x35_c00311{left:558.666667pt;}
.x72_c00311{left:560.000000pt;}
.xa4_c00311{left:561.706667pt;}
.x90_c00311{left:562.666667pt;}
.xda_c00311{left:564.000000pt;}
.xdf_c00311{left:567.040000pt;}
.x60_c00311{left:568.000000pt;}
.x44_c00311{left:570.666667pt;}
.x6c_c00311{left:572.373333pt;}
.xa8_c00311{left:575.040000pt;}
.x7d_c00311{left:576.000000pt;}
.xe_c00311{left:578.666667pt;}
.xac_c00311{left:580.000000pt;}
.xd0_c00311{left:582.293333pt;}
.x51_c00311{left:583.626667pt;}
.x1c_c00311{left:585.333333pt;}
.x105_c00311{left:586.666667pt;}
.x29_c00311{left:587.626667pt;}
.xb9_c00311{left:589.333333pt;}
.x91_c00311{left:593.706667pt;}
.x6d_c00311{left:594.666667pt;}
.xf7_c00311{left:597.333333pt;}
.xe6_c00311{left:599.040000pt;}
.x52_c00311{left:600.373333pt;}
.xec_c00311{left:602.666667pt;}
.x36_c00311{left:603.626667pt;}
.xb2_c00311{left:605.333333pt;}
.xf_c00311{left:606.293333pt;}
.xc7_c00311{left:611.626667pt;}
.x45_c00311{left:613.333333pt;}
.x2a_c00311{left:615.040000pt;}
.x1d_c00311{left:616.000000pt;}
.x89_c00311{left:617.333333pt;}
.xfc_c00311{left:620.000000pt;}
.x9e_c00311{left:621.706667pt;}
.xa5_c00311{left:622.666667pt;}
.x73_c00311{left:624.000000pt;}
.x53_c00311{left:624.960000pt;}
.x61_c00311{left:626.666667pt;}
.xc8_c00311{left:629.706667pt;}
.x37_c00311{left:631.040000pt;}
.x7e_c00311{left:633.333333pt;}
.x114_c00311{left:640.000000pt;}
}





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

.ir_c00312:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00312{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00312;src:url('chunks/assets/font_be2a97dd7ecb410938b21c51.woff2')format("woff");}.ff1_c00312{font-family:ff1_c00312;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mbe_c00312{transform:matrix(0.328235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328235,0.000000,0.000000,0.250000,0,0);}
.ma4_c00312{transform:matrix(0.333824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333824,0.000000,0.000000,0.250000,0,0);}
.ma5_c00312{transform:matrix(0.364583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364583,0.000000,0.000000,0.250000,0,0);}
.m6e_c00312{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m70_c00312{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m13_c00312{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m7b_c00312{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m4d_c00312{transform:matrix(0.381176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381176,0.000000,0.000000,0.250000,0,0);}
.m25_c00312{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m9d_c00312{transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);}
.m12_c00312{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m3_c00312{transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);}
.maa_c00312{transform:matrix(0.392070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392070,0.000000,0.000000,0.250000,0,0);}
.m6f_c00312{transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);}
.m2c_c00312{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m0_c00312{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.m3d_c00312{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m4e_c00312{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m69_c00312{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m60_c00312{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m8d_c00312{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m34_c00312{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.mf_c00312{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m23_c00312{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m47_c00312{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m74_c00312{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.mb5_c00312{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.m54_c00312{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.ma_c00312{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m8b_c00312{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.mb1_c00312{transform:matrix(0.425481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425481,0.000000,0.000000,0.250000,0,0);}
.m56_c00312{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m4c_c00312{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m6b_c00312{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m15_c00312{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m5_c00312{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m3e_c00312{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m21_c00312{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.mb_c00312{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m95_c00312{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);}
.m76_c00312{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m96_c00312{transform:matrix(0.442308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442308,0.000000,0.000000,0.250000,0,0);}
.m11_c00312{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m2e_c00312{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.m63_c00312{transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);}
.m40_c00312{transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);}
.m9c_c00312{transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);}
.m3b_c00312{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.m67_c00312{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.ma6_c00312{transform:matrix(0.451471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451471,0.000000,0.000000,0.250000,0,0);}
.mae_c00312{transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);}
.m91_c00312{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m1f_c00312{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mb4_c00312{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m2d_c00312{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.mb6_c00312{transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);}
.mb0_c00312{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.mc8_c00312{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.m39_c00312{transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);}
.m9a_c00312{transform:matrix(0.471154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471154,0.000000,0.000000,0.250000,0,0);}
.m9e_c00312{transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);}
.m50_c00312{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m30_c00312{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.mc0_c00312{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m51_c00312{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m6_c00312{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m61_c00312{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m4_c00312{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mc_c00312{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m4a_c00312{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m45_c00312{transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);}
.m1e_c00312{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m68_c00312{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.md_c00312{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);}
.m5a_c00312{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m5f_c00312{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m3f_c00312{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m57_c00312{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m14_c00312{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m6a_c00312{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m5c_c00312{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m22_c00312{transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);}
.m35_c00312{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m62_c00312{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m26_c00312{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m19_c00312{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m42_c00312{transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);}
.m4b_c00312{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m44_c00312{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m55_c00312{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m27_c00312{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m20_c00312{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m9_c00312{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mc6_c00312{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m41_c00312{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m1b_c00312{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m7c_c00312{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m2f_c00312{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m4f_c00312{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m2b_c00312{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m1c_c00312{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m31_c00312{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m89_c00312{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.me_c00312{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m36_c00312{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m87_c00312{transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);}
.ma3_c00312{transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);}
.m38_c00312{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m7e_c00312{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m66_c00312{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.m3c_c00312{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m53_c00312{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m6d_c00312{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m10_c00312{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);}
.mad_c00312{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m5d_c00312{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m43_c00312{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m9b_c00312{transform:matrix(0.552083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552083,0.000000,0.000000,0.250000,0,0);}
.m28_c00312{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m18_c00312{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m71_c00312{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m85_c00312{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m24_c00312{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m46_c00312{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m37_c00312{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.ma2_c00312{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m59_c00312{transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);}
.m2_c00312{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m3a_c00312{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m8a_c00312{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m72_c00312{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m17_c00312{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m84_c00312{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m52_c00312{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m33_c00312{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mab_c00312{transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);}
.m8_c00312{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m32_c00312{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m49_c00312{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m1d_c00312{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.m93_c00312{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.m9f_c00312{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m73_c00312{transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);}
.m16_c00312{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m5b_c00312{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.ma7_c00312{transform:matrix(0.601322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601322,0.000000,0.000000,0.250000,0,0);}
.m75_c00312{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m1_c00312{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m97_c00312{transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);}
.m8e_c00312{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m7_c00312{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m8c_c00312{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m83_c00312{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m86_c00312{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m78_c00312{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mbf_c00312{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m2a_c00312{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);}
.m81_c00312{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.mc2_c00312{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.m7a_c00312{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);}
.ma1_c00312{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m7f_c00312{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m8f_c00312{transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);}
.m94_c00312{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m88_c00312{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m82_c00312{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.maf_c00312{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.mc5_c00312{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m77_c00312{transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);}
.mca_c00312{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.m92_c00312{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mb3_c00312{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.mcc_c00312{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m80_c00312{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.mc4_c00312{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m79_c00312{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);}
.mbb_c00312{transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);}
.mbc_c00312{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.m6c_c00312{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mc7_c00312{transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);}
.m5e_c00312{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.mac_c00312{transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);}
.mc1_c00312{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mb7_c00312{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.mbd_c00312{transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);}
.ma0_c00312{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m98_c00312{transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);}
.m58_c00312{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.mba_c00312{transform:matrix(0.783040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.783040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.783040,0.000000,0.000000,0.250000,0,0);}
.m65_c00312{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.mc3_c00312{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.mb2_c00312{transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);}
.m1a_c00312{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mb9_c00312{transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);}
.m64_c00312{transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);}
.m29_c00312{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m48_c00312{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.mc9_c00312{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mb8_c00312{transform:matrix(0.881057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.881057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.881057,0.000000,0.000000,0.250000,0,0);}
.mcb_c00312{transform:matrix(0.941630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.941630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.941630,0.000000,0.000000,0.250000,0,0);}
.m99_c00312{transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);}
.m7d_c00312{transform:matrix(1.011013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.011013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.011013,0.000000,0.000000,0.250000,0,0);}
.ma9_c00312{transform:matrix(1.165198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.165198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.165198,0.000000,0.000000,0.250000,0,0);}
.ma8_c00312{transform:matrix(1.169192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.169192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.169192,0.000000,0.000000,0.250000,0,0);}
.m90_c00312{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.v2_c00312{vertical-align:-6.000000px;}
.v0_c00312{vertical-align:0.000000px;}
.v1_c00312{vertical-align:6.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;}
}
.ws17_c00312{word-spacing:0.000000px;}
.ws9_c00312{word-spacing:9.469629px;}
.wsb_c00312{word-spacing:10.947610px;}
.ws6_c00312{word-spacing:12.758091px;}
.ws7_c00312{word-spacing:12.973687px;}
.ws10_c00312{word-spacing:13.611988px;}
.wse_c00312{word-spacing:15.107856px;}
.ws15_c00312{word-spacing:16.262880px;}
.ws12_c00312{word-spacing:17.262919px;}
.ws14_c00312{word-spacing:18.138913px;}
.ws11_c00312{word-spacing:19.417982px;}
.wsa_c00312{word-spacing:21.608172px;}
.ws13_c00312{word-spacing:24.591285px;}
.wsc_c00312{word-spacing:24.638400px;}
.wsd_c00312{word-spacing:27.001094px;}
.wsf_c00312{word-spacing:30.234255px;}
.ws16_c00312{word-spacing:30.607622px;}
.ws8_c00312{word-spacing:36.857815px;}
.ws2_c00312{word-spacing:36.864950px;}
.ws4_c00312{word-spacing:43.283673px;}
.ws1_c00312{word-spacing:49.953969px;}
.ws5_c00312{word-spacing:57.018127px;}
.ws3_c00312{word-spacing:59.214401px;}
.ws0_c00312{word-spacing:76.841018px;}
._6_c00312{width:12.487823px;}
._5_c00312{width:15.851525px;}
._8_c00312{width:19.563127px;}
._7_c00312{width:23.569009px;}
._9_c00312{width:27.969026px;}
._0_c00312{width:44.811895px;}
._1_c00312{width:47.070270px;}
._4_c00312{width:55.815905px;}
._3_c00312{width:68.901176px;}
._2_c00312{width:73.525943px;}
.fc0_c00312{color:transparent;}
.fs8_c00312{font-size:3.420000px;}
.fs9_c00312{font-size:11.880000px;}
.fs7_c00312{font-size:13.620000px;}
.fs6_c00312{font-size:18.720000px;}
.fs1_c00312{font-size:20.400000px;}
.fs5_c00312{font-size:25.500000px;}
.fs2_c00312{font-size:28.920000px;}
.fs0_c00312{font-size:32.340000px;}
.fs4_c00312{font-size:35.700000px;}
.fs3_c00312{font-size:39.120000px;}
.y0_c00312{bottom:0.000000px;}
.y3d_c00312{bottom:250.905000px;}
.y3c_c00312{bottom:251.745000px;}
.y3b_c00312{bottom:253.905000px;}
.y3e_c00312{bottom:255.405000px;}
.y39_c00312{bottom:271.245000px;}
.y38_c00312{bottom:273.405000px;}
.y3a_c00312{bottom:273.630000px;}
.y36_c00312{bottom:290.745000px;}
.y33_c00312{bottom:291.630000px;}
.y35_c00312{bottom:291.825000px;}
.y34_c00312{bottom:292.905000px;}
.y37_c00312{bottom:294.405000px;}
.y2f_c00312{bottom:311.745000px;}
.y2d_c00312{bottom:312.405000px;}
.y32_c00312{bottom:312.630000px;}
.y31_c00312{bottom:312.825000px;}
.y2e_c00312{bottom:313.470000px;}
.y30_c00312{bottom:313.905000px;}
.y2c_c00312{bottom:330.405000px;}
.y29_c00312{bottom:331.245000px;}
.y2a_c00312{bottom:332.130000px;}
.y2b_c00312{bottom:332.325000px;}
.y28_c00312{bottom:333.405000px;}
.y26_c00312{bottom:350.745000px;}
.y27_c00312{bottom:352.905000px;}
.y22_c00312{bottom:370.245000px;}
.y25_c00312{bottom:370.470000px;}
.y24_c00312{bottom:371.130000px;}
.y21_c00312{bottom:372.405000px;}
.y23_c00312{bottom:372.630000px;}
.y20_c00312{bottom:390.825000px;}
.y1f_c00312{bottom:391.905000px;}
.y1e_c00312{bottom:409.245000px;}
.y1d_c00312{bottom:410.325000px;}
.y1c_c00312{bottom:411.405000px;}
.y1b_c00312{bottom:430.245000px;}
.y19_c00312{bottom:430.905000px;}
.y1a_c00312{bottom:432.405000px;}
.y18_c00312{bottom:448.245000px;}
.y17_c00312{bottom:449.550000px;}
.y14_c00312{bottom:450.405000px;}
.y16_c00312{bottom:450.630000px;}
.y15_c00312{bottom:451.905000px;}
.y12_c00312{bottom:467.745000px;}
.y13_c00312{bottom:469.245000px;}
.y11_c00312{bottom:470.325000px;}
.y10_c00312{bottom:471.405000px;}
.yb_c00312{bottom:486.405000px;}
.ya_c00312{bottom:488.745000px;}
.yf_c00312{bottom:489.630000px;}
.yd_c00312{bottom:490.470000px;}
.yc_c00312{bottom:490.905000px;}
.ye_c00312{bottom:491.970000px;}
.y8_c00312{bottom:506.745000px;}
.y9_c00312{bottom:509.970000px;}
.y4_c00312{bottom:526.680000px;}
.y5_c00312{bottom:527.745000px;}
.y7_c00312{bottom:528.825000px;}
.y3_c00312{bottom:529.905000px;}
.y6_c00312{bottom:530.970000px;}
.yaf_c00312{bottom:568.695000px;}
.yae_c00312{bottom:569.130000px;}
.yac_c00312{bottom:570.195000px;}
.yad_c00312{bottom:570.630000px;}
.yab_c00312{bottom:582.195000px;}
.ya8_c00312{bottom:582.630000px;}
.yaa_c00312{bottom:583.695000px;}
.ya9_c00312{bottom:585.195000px;}
.ya6_c00312{bottom:596.130000px;}
.ya7_c00312{bottom:597.195000px;}
.ya4_c00312{bottom:597.630000px;}
.ya5_c00312{bottom:598.695000px;}
.ya3_c00312{bottom:609.630000px;}
.ya2_c00312{bottom:610.695000px;}
.ya1_c00312{bottom:611.130000px;}
.ya0_c00312{bottom:611.775000px;}
.y9f_c00312{bottom:612.195000px;}
.y9e_c00312{bottom:624.195000px;}
.y9d_c00312{bottom:624.630000px;}
.y9c_c00312{bottom:625.695000px;}
.y9a_c00312{bottom:637.695000px;}
.y98_c00312{bottom:638.130000px;}
.y9b_c00312{bottom:639.195000px;}
.y99_c00312{bottom:639.630000px;}
.y93_c00312{bottom:651.630000px;}
.y97_c00312{bottom:652.695000px;}
.y96_c00312{bottom:653.130000px;}
.y95_c00312{bottom:653.970000px;}
.y94_c00312{bottom:654.195000px;}
.y92_c00312{bottom:666.195000px;}
.y90_c00312{bottom:667.695000px;}
.y91_c00312{bottom:667.920000px;}
.y8f_c00312{bottom:679.695000px;}
.y8e_c00312{bottom:681.195000px;}
.y8d_c00312{bottom:694.695000px;}
.y8c_c00312{bottom:696.195000px;}
.y8a_c00312{bottom:707.130000px;}
.y89_c00312{bottom:708.195000px;}
.y87_c00312{bottom:708.630000px;}
.y88_c00312{bottom:709.695000px;}
.y8b_c00312{bottom:709.920000px;}
.y85_c00312{bottom:720.630000px;}
.y86_c00312{bottom:721.695000px;}
.y84_c00312{bottom:722.130000px;}
.y83_c00312{bottom:723.195000px;}
.y82_c00312{bottom:735.195000px;}
.y7f_c00312{bottom:735.630000px;}
.y80_c00312{bottom:736.695000px;}
.y81_c00312{bottom:736.920000px;}
.y7d_c00312{bottom:749.130000px;}
.y7c_c00312{bottom:750.195000px;}
.y7e_c00312{bottom:750.420000px;}
.y78_c00312{bottom:768.195000px;}
.y7b_c00312{bottom:768.420000px;}
.y79_c00312{bottom:768.630000px;}
.y7a_c00312{bottom:769.695000px;}
.y73_c00312{bottom:780.630000px;}
.y74_c00312{bottom:781.695000px;}
.y77_c00312{bottom:787.695000px;}
.y75_c00312{bottom:788.775000px;}
.y76_c00312{bottom:789.195000px;}
.y4e_c00312{bottom:806.970000px;}
.y4f_c00312{bottom:808.050000px;}
.y4c_c00312{bottom:819.825000px;}
.y4a_c00312{bottom:821.550000px;}
.y49_c00312{bottom:821.970000px;}
.y4d_c00312{bottom:822.195000px;}
.y4b_c00312{bottom:823.050000px;}
.y48_c00312{bottom:839.550000px;}
.y47_c00312{bottom:842.550000px;}
.y6f_c00312{bottom:888.195000px;}
.y71_c00312{bottom:888.630000px;}
.y6e_c00312{bottom:889.050000px;}
.y70_c00312{bottom:889.695000px;}
.y72_c00312{bottom:889.920000px;}
.y6c_c00312{bottom:901.050000px;}
.y6d_c00312{bottom:902.130000px;}
.y6b_c00312{bottom:903.195000px;}
.y6a_c00312{bottom:915.630000px;}
.y69_c00312{bottom:916.695000px;}
.y67_c00312{bottom:917.130000px;}
.y66_c00312{bottom:918.195000px;}
.y68_c00312{bottom:918.420000px;}
.y63_c00312{bottom:930.630000px;}
.y64_c00312{bottom:931.695000px;}
.y65_c00312{bottom:931.920000px;}
.y60_c00312{bottom:944.130000px;}
.y61_c00312{bottom:945.195000px;}
.y62_c00312{bottom:945.420000px;}
.y5f_c00312{bottom:957.630000px;}
.y5d_c00312{bottom:958.695000px;}
.y5b_c00312{bottom:959.130000px;}
.y5c_c00312{bottom:960.195000px;}
.y5e_c00312{bottom:960.420000px;}
.y5a_c00312{bottom:971.130000px;}
.y59_c00312{bottom:972.195000px;}
.y58_c00312{bottom:972.630000px;}
.y57_c00312{bottom:973.695000px;}
.y56_c00312{bottom:990.630000px;}
.y55_c00312{bottom:991.695000px;}
.y53_c00312{bottom:1003.695000px;}
.y50_c00312{bottom:1004.130000px;}
.y52_c00312{bottom:1005.195000px;}
.y54_c00312{bottom:1005.420000px;}
.y51_c00312{bottom:1006.695000px;}
.y45_c00312{bottom:1027.470000px;}
.y46_c00312{bottom:1028.550000px;}
.y42_c00312{bottom:1040.325000px;}
.y43_c00312{bottom:1042.470000px;}
.y44_c00312{bottom:1042.695000px;}
.y41_c00312{bottom:1043.550000px;}
.y40_c00312{bottom:1058.970000px;}
.y3f_c00312{bottom:1063.050000px;}
.y1_c00312{bottom:1098.825000px;}
.y2_c00312{bottom:1099.050000px;}
.h9_c00312{height:4.206533px;}
.ha_c00312{height:14.612168px;}
.h8_c00312{height:16.752334px;}
.hb_c00312{height:22.752334px;}
.h7_c00312{height:23.025234px;}
.h2_c00312{height:25.091602px;}
.h6_c00312{height:31.364502px;}
.h3_c00312{height:35.571035px;}
.h1_c00312{height:39.777568px;}
.h5_c00312{height:43.910303px;}
.h4_c00312{height:48.116836px;}
.h0_c00312{height:1335.000000px;}
.w0_c00312{width:880.500000px;}
.x0_c00312{left:0.000000px;}
.x3_c00312{left:151.500000px;}
.x11_c00312{left:167.145000px;}
.x79_c00312{left:169.500000px;}
.x4e_c00312{left:184.500000px;}
.x3b_c00312{left:189.000000px;}
.x27_c00312{left:190.500000px;}
.x7a_c00312{left:192.000000px;}
.x60_c00312{left:195.000000px;}
.x1e_c00312{left:198.000000px;}
.x4_c00312{left:201.000000px;}
.x57_c00312{left:204.000000px;}
.x46_c00312{left:205.500000px;}
.x6e_c00312{left:214.920000px;}
.xb7_c00312{left:219.000000px;}
.x65_c00312{left:220.080000px;}
.x7b_c00312{left:221.775000px;}
.x8f_c00312{left:223.500000px;}
.x3c_c00312{left:224.580000px;}
.x12_c00312{left:227.580000px;}
.x10_c00312{left:231.000000px;}
.xac_c00312{left:232.080000px;}
.x32_c00312{left:236.580000px;}
.x47_c00312{left:241.920000px;}
.x4f_c00312{left:243.000000px;}
.x6f_c00312{left:244.500000px;}
.x66_c00312{left:246.000000px;}
.x1f_c00312{left:247.920000px;}
.xaf_c00312{left:250.080000px;}
.x28_c00312{left:252.000000px;}
.x97_c00312{left:255.000000px;}
.x83_c00312{left:256.500000px;}
.x58_c00312{left:259.500000px;}
.x76_c00312{left:261.000000px;}
.x33_c00312{left:264.420000px;}
.x50_c00312{left:267.000000px;}
.xb8_c00312{left:268.920000px;}
.x13_c00312{left:275.775000px;}
.x5_c00312{left:277.500000px;}
.x67_c00312{left:282.420000px;}
.x59_c00312{left:283.500000px;}
.x29_c00312{left:290.145000px;}
.x3d_c00312{left:292.080000px;}
.x9b_c00312{left:295.080000px;}
.x88_c00312{left:301.500000px;}
.x7c_c00312{left:302.580000px;}
.x9c_c00312{left:304.500000px;}
.x14_c00312{left:306.420000px;}
.x90_c00312{left:312.420000px;}
.x61_c00312{left:313.500000px;}
.x84_c00312{left:316.500000px;}
.x6_c00312{left:318.420000px;}
.x20_c00312{left:319.500000px;}
.x91_c00312{left:327.000000px;}
.x48_c00312{left:328.500000px;}
.x7d_c00312{left:332.580000px;}
.x2a_c00312{left:337.920000px;}
.x77_c00312{left:339.420000px;}
.x68_c00312{left:340.920000px;}
.x15_c00312{left:342.420000px;}
.xaa_c00312{left:345.000000px;}
.x92_c00312{left:349.500000px;}
.x3e_c00312{left:350.580000px;}
.x7_c00312{left:357.420000px;}
.x78_c00312{left:360.000000px;}
.x34_c00312{left:361.500000px;}
.x16_c00312{left:367.920000px;}
.x21_c00312{left:369.000000px;}
.x7e_c00312{left:373.500000px;}
.xb0_c00312{left:376.500000px;}
.xbb_c00312{left:378.000000px;}
.xab_c00312{left:379.500000px;}
.x70_c00312{left:381.420000px;}
.x8_c00312{left:382.500000px;}
.x49_c00312{left:385.500000px;}
.x3f_c00312{left:388.080000px;}
.x2b_c00312{left:389.580000px;}
.x35_c00312{left:391.500000px;}
.x62_c00312{left:393.000000px;}
.x5a_c00312{left:394.080000px;}
.x89_c00312{left:399.000000px;}
.x2_c00312{left:400.500000px;}
.x7f_c00312{left:402.645000px;}
.x51_c00312{left:405.000000px;}
.x81_c00312{left:409.500000px;}
.x9_c00312{left:412.080000px;}
.x40_c00312{left:414.000000px;}
.x71_c00312{left:416.145000px;}
.x22_c00312{left:426.000000px;}
.x98_c00312{left:427.500000px;}
.x85_c00312{left:429.000000px;}
.x36_c00312{left:430.920000px;}
.x17_c00312{left:433.080000px;}
.x52_c00312{left:441.000000px;}
.xa_c00312{left:442.920000px;}
.xa1_c00312{left:445.500000px;}
.xb4_c00312{left:448.500000px;}
.x82_c00312{left:453.000000px;}
.x8e_c00312{left:454.920000px;}
.x23_c00312{left:457.080000px;}
.x8a_c00312{left:465.000000px;}
.x53_c00312{left:466.500000px;}
.x2c_c00312{left:467.580000px;}
.x41_c00312{left:469.080000px;}
.x93_c00312{left:470.580000px;}
.xb_c00312{left:472.500000px;}
.x5b_c00312{left:477.000000px;}
.x9a_c00312{left:480.000000px;}
.x69_c00312{left:481.920000px;}
.x37_c00312{left:483.000000px;}
.xb1_c00312{left:484.500000px;}
.x63_c00312{left:485.580000px;}
.x8b_c00312{left:487.500000px;}
.xad_c00312{left:489.000000px;}
.x18_c00312{left:490.080000px;}
.x72_c00312{left:493.500000px;}
.x4a_c00312{left:501.000000px;}
.x19_c00312{left:507.000000px;}
.x94_c00312{left:508.920000px;}
.x5c_c00312{left:510.000000px;}
.x54_c00312{left:511.920000px;}
.x8c_c00312{left:516.000000px;}
.xae_c00312{left:517.920000px;}
.xb5_c00312{left:520.500000px;}
.x64_c00312{left:522.420000px;}
.x38_c00312{left:523.920000px;}
.x9e_c00312{left:525.000000px;}
.x9d_c00312{left:526.500000px;}
.x2d_c00312{left:528.000000px;}
.x1a_c00312{left:529.080000px;}
.x6a_c00312{left:533.580000px;}
.x73_c00312{left:537.000000px;}
.xa2_c00312{left:538.500000px;}
.x86_c00312{left:540.000000px;}
.x55_c00312{left:543.000000px;}
.x95_c00312{left:549.000000px;}
.xa4_c00312{left:553.500000px;}
.x24_c00312{left:555.420000px;}
.x42_c00312{left:556.500000px;}
.xb2_c00312{left:558.000000px;}
.xc_c00312{left:560.580000px;}
.x99_c00312{left:562.500000px;}
.x8d_c00312{left:567.000000px;}
.x4b_c00312{left:570.000000px;}
.x9f_c00312{left:571.500000px;}
.xa3_c00312{left:574.920000px;}
.x87_c00312{left:586.080000px;}
.xa6_c00312{left:589.500000px;}
.xa0_c00312{left:592.500000px;}
.x43_c00312{left:595.920000px;}
.x56_c00312{left:598.080000px;}
.x2e_c00312{left:599.580000px;}
.x74_c00312{left:601.500000px;}
.x6b_c00312{left:603.000000px;}
.x39_c00312{left:604.500000px;}
.x4c_c00312{left:607.500000px;}
.xa5_c00312{left:610.500000px;}
.x5d_c00312{left:613.920000px;}
.x1b_c00312{left:619.500000px;}
.xa8_c00312{left:625.500000px;}
.xb6_c00312{left:628.500000px;}
.xd_c00312{left:629.580000px;}
.x96_c00312{left:631.500000px;}
.xb9_c00312{left:633.000000px;}
.x44_c00312{left:634.500000px;}
.x75_c00312{left:636.000000px;}
.x2f_c00312{left:637.920000px;}
.x1c_c00312{left:639.420000px;}
.xa7_c00312{left:646.500000px;}
.x80_c00312{left:649.500000px;}
.x25_c00312{left:651.420000px;}
.x6c_c00312{left:652.500000px;}
.x5e_c00312{left:661.080000px;}
.x1d_c00312{left:664.080000px;}
.xb3_c00312{left:666.000000px;}
.x3a_c00312{left:669.420000px;}
.xba_c00312{left:670.500000px;}
.x30_c00312{left:672.000000px;}
.x4d_c00312{left:674.580000px;}
.x45_c00312{left:676.500000px;}
.xa9_c00312{left:682.500000px;}
.x5f_c00312{left:688.500000px;}
.xe_c00312{left:691.080000px;}
.x6d_c00312{left:694.500000px;}
.x31_c00312{left:696.000000px;}
.x1_c00312{left:703.500000px;}
.x26_c00312{left:709.500000px;}
.xf_c00312{left:712.500000px;}
@media print{
.v2_c00312{vertical-align:-5.333333pt;}
.v0_c00312{vertical-align:0.000000pt;}
.v1_c00312{vertical-align:5.333333pt;}
.ls0_c00312{letter-spacing:0.000000pt;}
.ws17_c00312{word-spacing:0.000000pt;}
.ws9_c00312{word-spacing:8.417448pt;}
.wsb_c00312{word-spacing:9.731209pt;}
.ws6_c00312{word-spacing:11.340525pt;}
.ws7_c00312{word-spacing:11.532166pt;}
.ws10_c00312{word-spacing:12.099545pt;}
.wse_c00312{word-spacing:13.429205pt;}
.ws15_c00312{word-spacing:14.455894pt;}
.ws12_c00312{word-spacing:15.344817pt;}
.ws14_c00312{word-spacing:16.123479pt;}
.ws11_c00312{word-spacing:17.260429pt;}
.wsa_c00312{word-spacing:19.207264pt;}
.ws13_c00312{word-spacing:21.858920pt;}
.wsc_c00312{word-spacing:21.900800pt;}
.wsd_c00312{word-spacing:24.000973pt;}
.wsf_c00312{word-spacing:26.874893pt;}
.ws16_c00312{word-spacing:27.206775pt;}
.ws8_c00312{word-spacing:32.762503pt;}
.ws2_c00312{word-spacing:32.768845pt;}
.ws4_c00312{word-spacing:38.474376pt;}
.ws1_c00312{word-spacing:44.403528pt;}
.ws5_c00312{word-spacing:50.682780pt;}
.ws3_c00312{word-spacing:52.635023pt;}
.ws0_c00312{word-spacing:68.303127pt;}
._6_c00312{width:11.100287pt;}
._5_c00312{width:14.090244pt;}
._8_c00312{width:17.389446pt;}
._7_c00312{width:20.950231pt;}
._9_c00312{width:24.861357pt;}
._0_c00312{width:39.832796pt;}
._1_c00312{width:41.840240pt;}
._4_c00312{width:49.614137pt;}
._3_c00312{width:61.245490pt;}
._2_c00312{width:65.356393pt;}
.fs8_c00312{font-size:3.040000pt;}
.fs9_c00312{font-size:10.560000pt;}
.fs7_c00312{font-size:12.106667pt;}
.fs6_c00312{font-size:16.640000pt;}
.fs1_c00312{font-size:18.133333pt;}
.fs5_c00312{font-size:22.666667pt;}
.fs2_c00312{font-size:25.706667pt;}
.fs0_c00312{font-size:28.746667pt;}
.fs4_c00312{font-size:31.733333pt;}
.fs3_c00312{font-size:34.773333pt;}
.y0_c00312{bottom:0.000000pt;}
.y3d_c00312{bottom:223.026667pt;}
.y3c_c00312{bottom:223.773333pt;}
.y3b_c00312{bottom:225.693333pt;}
.y3e_c00312{bottom:227.026667pt;}
.y39_c00312{bottom:241.106667pt;}
.y38_c00312{bottom:243.026667pt;}
.y3a_c00312{bottom:243.226667pt;}
.y36_c00312{bottom:258.440000pt;}
.y33_c00312{bottom:259.226667pt;}
.y35_c00312{bottom:259.400000pt;}
.y34_c00312{bottom:260.360000pt;}
.y37_c00312{bottom:261.693333pt;}
.y2f_c00312{bottom:277.106667pt;}
.y2d_c00312{bottom:277.693333pt;}
.y32_c00312{bottom:277.893333pt;}
.y31_c00312{bottom:278.066667pt;}
.y2e_c00312{bottom:278.640000pt;}
.y30_c00312{bottom:279.026667pt;}
.y2c_c00312{bottom:293.693333pt;}
.y29_c00312{bottom:294.440000pt;}
.y2a_c00312{bottom:295.226667pt;}
.y2b_c00312{bottom:295.400000pt;}
.y28_c00312{bottom:296.360000pt;}
.y26_c00312{bottom:311.773333pt;}
.y27_c00312{bottom:313.693333pt;}
.y22_c00312{bottom:329.106667pt;}
.y25_c00312{bottom:329.306667pt;}
.y24_c00312{bottom:329.893333pt;}
.y21_c00312{bottom:331.026667pt;}
.y23_c00312{bottom:331.226667pt;}
.y20_c00312{bottom:347.400000pt;}
.y1f_c00312{bottom:348.360000pt;}
.y1e_c00312{bottom:363.773333pt;}
.y1d_c00312{bottom:364.733333pt;}
.y1c_c00312{bottom:365.693333pt;}
.y1b_c00312{bottom:382.440000pt;}
.y19_c00312{bottom:383.026667pt;}
.y1a_c00312{bottom:384.360000pt;}
.y18_c00312{bottom:398.440000pt;}
.y17_c00312{bottom:399.600000pt;}
.y14_c00312{bottom:400.360000pt;}
.y16_c00312{bottom:400.560000pt;}
.y15_c00312{bottom:401.693333pt;}
.y12_c00312{bottom:415.773333pt;}
.y13_c00312{bottom:417.106667pt;}
.y11_c00312{bottom:418.066667pt;}
.y10_c00312{bottom:419.026667pt;}
.yb_c00312{bottom:432.360000pt;}
.ya_c00312{bottom:434.440000pt;}
.yf_c00312{bottom:435.226667pt;}
.yd_c00312{bottom:435.973333pt;}
.yc_c00312{bottom:436.360000pt;}
.ye_c00312{bottom:437.306667pt;}
.y8_c00312{bottom:450.440000pt;}
.y9_c00312{bottom:453.306667pt;}
.y4_c00312{bottom:468.160000pt;}
.y5_c00312{bottom:469.106667pt;}
.y7_c00312{bottom:470.066667pt;}
.y3_c00312{bottom:471.026667pt;}
.y6_c00312{bottom:471.973333pt;}
.yaf_c00312{bottom:505.506667pt;}
.yae_c00312{bottom:505.893333pt;}
.yac_c00312{bottom:506.840000pt;}
.yad_c00312{bottom:507.226667pt;}
.yab_c00312{bottom:517.506667pt;}
.ya8_c00312{bottom:517.893333pt;}
.yaa_c00312{bottom:518.840000pt;}
.ya9_c00312{bottom:520.173333pt;}
.ya6_c00312{bottom:529.893333pt;}
.ya7_c00312{bottom:530.840000pt;}
.ya4_c00312{bottom:531.226667pt;}
.ya5_c00312{bottom:532.173333pt;}
.ya3_c00312{bottom:541.893333pt;}
.ya2_c00312{bottom:542.840000pt;}
.ya1_c00312{bottom:543.226667pt;}
.ya0_c00312{bottom:543.800000pt;}
.y9f_c00312{bottom:544.173333pt;}
.y9e_c00312{bottom:554.840000pt;}
.y9d_c00312{bottom:555.226667pt;}
.y9c_c00312{bottom:556.173333pt;}
.y9a_c00312{bottom:566.840000pt;}
.y98_c00312{bottom:567.226667pt;}
.y9b_c00312{bottom:568.173333pt;}
.y99_c00312{bottom:568.560000pt;}
.y93_c00312{bottom:579.226667pt;}
.y97_c00312{bottom:580.173333pt;}
.y96_c00312{bottom:580.560000pt;}
.y95_c00312{bottom:581.306667pt;}
.y94_c00312{bottom:581.506667pt;}
.y92_c00312{bottom:592.173333pt;}
.y90_c00312{bottom:593.506667pt;}
.y91_c00312{bottom:593.706667pt;}
.y8f_c00312{bottom:604.173333pt;}
.y8e_c00312{bottom:605.506667pt;}
.y8d_c00312{bottom:617.506667pt;}
.y8c_c00312{bottom:618.840000pt;}
.y8a_c00312{bottom:628.560000pt;}
.y89_c00312{bottom:629.506667pt;}
.y87_c00312{bottom:629.893333pt;}
.y88_c00312{bottom:630.840000pt;}
.y8b_c00312{bottom:631.040000pt;}
.y85_c00312{bottom:640.560000pt;}
.y86_c00312{bottom:641.506667pt;}
.y84_c00312{bottom:641.893333pt;}
.y83_c00312{bottom:642.840000pt;}
.y82_c00312{bottom:653.506667pt;}
.y7f_c00312{bottom:653.893333pt;}
.y80_c00312{bottom:654.840000pt;}
.y81_c00312{bottom:655.040000pt;}
.y7d_c00312{bottom:665.893333pt;}
.y7c_c00312{bottom:666.840000pt;}
.y7e_c00312{bottom:667.040000pt;}
.y78_c00312{bottom:682.840000pt;}
.y7b_c00312{bottom:683.040000pt;}
.y79_c00312{bottom:683.226667pt;}
.y7a_c00312{bottom:684.173333pt;}
.y73_c00312{bottom:693.893333pt;}
.y74_c00312{bottom:694.840000pt;}
.y77_c00312{bottom:700.173333pt;}
.y75_c00312{bottom:701.133333pt;}
.y76_c00312{bottom:701.506667pt;}
.y4e_c00312{bottom:717.306667pt;}
.y4f_c00312{bottom:718.266667pt;}
.y4c_c00312{bottom:728.733333pt;}
.y4a_c00312{bottom:730.266667pt;}
.y49_c00312{bottom:730.640000pt;}
.y4d_c00312{bottom:730.840000pt;}
.y4b_c00312{bottom:731.600000pt;}
.y48_c00312{bottom:746.266667pt;}
.y47_c00312{bottom:748.933333pt;}
.y6f_c00312{bottom:789.506667pt;}
.y71_c00312{bottom:789.893333pt;}
.y6e_c00312{bottom:790.266667pt;}
.y70_c00312{bottom:790.840000pt;}
.y72_c00312{bottom:791.040000pt;}
.y6c_c00312{bottom:800.933333pt;}
.y6d_c00312{bottom:801.893333pt;}
.y6b_c00312{bottom:802.840000pt;}
.y6a_c00312{bottom:813.893333pt;}
.y69_c00312{bottom:814.840000pt;}
.y67_c00312{bottom:815.226667pt;}
.y66_c00312{bottom:816.173333pt;}
.y68_c00312{bottom:816.373333pt;}
.y63_c00312{bottom:827.226667pt;}
.y64_c00312{bottom:828.173333pt;}
.y65_c00312{bottom:828.373333pt;}
.y60_c00312{bottom:839.226667pt;}
.y61_c00312{bottom:840.173333pt;}
.y62_c00312{bottom:840.373333pt;}
.y5f_c00312{bottom:851.226667pt;}
.y5d_c00312{bottom:852.173333pt;}
.y5b_c00312{bottom:852.560000pt;}
.y5c_c00312{bottom:853.506667pt;}
.y5e_c00312{bottom:853.706667pt;}
.y5a_c00312{bottom:863.226667pt;}
.y59_c00312{bottom:864.173333pt;}
.y58_c00312{bottom:864.560000pt;}
.y57_c00312{bottom:865.506667pt;}
.y56_c00312{bottom:880.560000pt;}
.y55_c00312{bottom:881.506667pt;}
.y53_c00312{bottom:892.173333pt;}
.y50_c00312{bottom:892.560000pt;}
.y52_c00312{bottom:893.506667pt;}
.y54_c00312{bottom:893.706667pt;}
.y51_c00312{bottom:894.840000pt;}
.y45_c00312{bottom:913.306667pt;}
.y46_c00312{bottom:914.266667pt;}
.y42_c00312{bottom:924.733333pt;}
.y43_c00312{bottom:926.640000pt;}
.y44_c00312{bottom:926.840000pt;}
.y41_c00312{bottom:927.600000pt;}
.y40_c00312{bottom:941.306667pt;}
.y3f_c00312{bottom:944.933333pt;}
.y1_c00312{bottom:976.733333pt;}
.y2_c00312{bottom:976.933333pt;}
.h9_c00312{height:3.739141pt;}
.ha_c00312{height:12.988594pt;}
.h8_c00312{height:14.890964pt;}
.hb_c00312{height:20.224297pt;}
.h7_c00312{height:20.466875pt;}
.h2_c00312{height:22.303646pt;}
.h6_c00312{height:27.879557pt;}
.h3_c00312{height:31.618698pt;}
.h1_c00312{height:35.357839pt;}
.h5_c00312{height:39.031380pt;}
.h4_c00312{height:42.770521pt;}
.h0_c00312{height:1186.666667pt;}
.w0_c00312{width:782.666667pt;}
.x0_c00312{left:0.000000pt;}
.x3_c00312{left:134.666667pt;}
.x11_c00312{left:148.573333pt;}
.x79_c00312{left:150.666667pt;}
.x4e_c00312{left:164.000000pt;}
.x3b_c00312{left:168.000000pt;}
.x27_c00312{left:169.333333pt;}
.x7a_c00312{left:170.666667pt;}
.x60_c00312{left:173.333333pt;}
.x1e_c00312{left:176.000000pt;}
.x4_c00312{left:178.666667pt;}
.x57_c00312{left:181.333333pt;}
.x46_c00312{left:182.666667pt;}
.x6e_c00312{left:191.040000pt;}
.xb7_c00312{left:194.666667pt;}
.x65_c00312{left:195.626667pt;}
.x7b_c00312{left:197.133333pt;}
.x8f_c00312{left:198.666667pt;}
.x3c_c00312{left:199.626667pt;}
.x12_c00312{left:202.293333pt;}
.x10_c00312{left:205.333333pt;}
.xac_c00312{left:206.293333pt;}
.x32_c00312{left:210.293333pt;}
.x47_c00312{left:215.040000pt;}
.x4f_c00312{left:216.000000pt;}
.x6f_c00312{left:217.333333pt;}
.x66_c00312{left:218.666667pt;}
.x1f_c00312{left:220.373333pt;}
.xaf_c00312{left:222.293333pt;}
.x28_c00312{left:224.000000pt;}
.x97_c00312{left:226.666667pt;}
.x83_c00312{left:228.000000pt;}
.x58_c00312{left:230.666667pt;}
.x76_c00312{left:232.000000pt;}
.x33_c00312{left:235.040000pt;}
.x50_c00312{left:237.333333pt;}
.xb8_c00312{left:239.040000pt;}
.x13_c00312{left:245.133333pt;}
.x5_c00312{left:246.666667pt;}
.x67_c00312{left:251.040000pt;}
.x59_c00312{left:252.000000pt;}
.x29_c00312{left:257.906667pt;}
.x3d_c00312{left:259.626667pt;}
.x9b_c00312{left:262.293333pt;}
.x88_c00312{left:268.000000pt;}
.x7c_c00312{left:268.960000pt;}
.x9c_c00312{left:270.666667pt;}
.x14_c00312{left:272.373333pt;}
.x90_c00312{left:277.706667pt;}
.x61_c00312{left:278.666667pt;}
.x84_c00312{left:281.333333pt;}
.x6_c00312{left:283.040000pt;}
.x20_c00312{left:284.000000pt;}
.x91_c00312{left:290.666667pt;}
.x48_c00312{left:292.000000pt;}
.x7d_c00312{left:295.626667pt;}
.x2a_c00312{left:300.373333pt;}
.x77_c00312{left:301.706667pt;}
.x68_c00312{left:303.040000pt;}
.x15_c00312{left:304.373333pt;}
.xaa_c00312{left:306.666667pt;}
.x92_c00312{left:310.666667pt;}
.x3e_c00312{left:311.626667pt;}
.x7_c00312{left:317.706667pt;}
.x78_c00312{left:320.000000pt;}
.x34_c00312{left:321.333333pt;}
.x16_c00312{left:327.040000pt;}
.x21_c00312{left:328.000000pt;}
.x7e_c00312{left:332.000000pt;}
.xb0_c00312{left:334.666667pt;}
.xbb_c00312{left:336.000000pt;}
.xab_c00312{left:337.333333pt;}
.x70_c00312{left:339.040000pt;}
.x8_c00312{left:340.000000pt;}
.x49_c00312{left:342.666667pt;}
.x3f_c00312{left:344.960000pt;}
.x2b_c00312{left:346.293333pt;}
.x35_c00312{left:348.000000pt;}
.x62_c00312{left:349.333333pt;}
.x5a_c00312{left:350.293333pt;}
.x89_c00312{left:354.666667pt;}
.x2_c00312{left:356.000000pt;}
.x7f_c00312{left:357.906667pt;}
.x51_c00312{left:360.000000pt;}
.x81_c00312{left:364.000000pt;}
.x9_c00312{left:366.293333pt;}
.x40_c00312{left:368.000000pt;}
.x71_c00312{left:369.906667pt;}
.x22_c00312{left:378.666667pt;}
.x98_c00312{left:380.000000pt;}
.x85_c00312{left:381.333333pt;}
.x36_c00312{left:383.040000pt;}
.x17_c00312{left:384.960000pt;}
.x52_c00312{left:392.000000pt;}
.xa_c00312{left:393.706667pt;}
.xa1_c00312{left:396.000000pt;}
.xb4_c00312{left:398.666667pt;}
.x82_c00312{left:402.666667pt;}
.x8e_c00312{left:404.373333pt;}
.x23_c00312{left:406.293333pt;}
.x8a_c00312{left:413.333333pt;}
.x53_c00312{left:414.666667pt;}
.x2c_c00312{left:415.626667pt;}
.x41_c00312{left:416.960000pt;}
.x93_c00312{left:418.293333pt;}
.xb_c00312{left:420.000000pt;}
.x5b_c00312{left:424.000000pt;}
.x9a_c00312{left:426.666667pt;}
.x69_c00312{left:428.373333pt;}
.x37_c00312{left:429.333333pt;}
.xb1_c00312{left:430.666667pt;}
.x63_c00312{left:431.626667pt;}
.x8b_c00312{left:433.333333pt;}
.xad_c00312{left:434.666667pt;}
.x18_c00312{left:435.626667pt;}
.x72_c00312{left:438.666667pt;}
.x4a_c00312{left:445.333333pt;}
.x19_c00312{left:450.666667pt;}
.x94_c00312{left:452.373333pt;}
.x5c_c00312{left:453.333333pt;}
.x54_c00312{left:455.040000pt;}
.x8c_c00312{left:458.666667pt;}
.xae_c00312{left:460.373333pt;}
.xb5_c00312{left:462.666667pt;}
.x64_c00312{left:464.373333pt;}
.x38_c00312{left:465.706667pt;}
.x9e_c00312{left:466.666667pt;}
.x9d_c00312{left:468.000000pt;}
.x2d_c00312{left:469.333333pt;}
.x1a_c00312{left:470.293333pt;}
.x6a_c00312{left:474.293333pt;}
.x73_c00312{left:477.333333pt;}
.xa2_c00312{left:478.666667pt;}
.x86_c00312{left:480.000000pt;}
.x55_c00312{left:482.666667pt;}
.x95_c00312{left:488.000000pt;}
.xa4_c00312{left:492.000000pt;}
.x24_c00312{left:493.706667pt;}
.x42_c00312{left:494.666667pt;}
.xb2_c00312{left:496.000000pt;}
.xc_c00312{left:498.293333pt;}
.x99_c00312{left:500.000000pt;}
.x8d_c00312{left:504.000000pt;}
.x4b_c00312{left:506.666667pt;}
.x9f_c00312{left:508.000000pt;}
.xa3_c00312{left:511.040000pt;}
.x87_c00312{left:520.960000pt;}
.xa6_c00312{left:524.000000pt;}
.xa0_c00312{left:526.666667pt;}
.x43_c00312{left:529.706667pt;}
.x56_c00312{left:531.626667pt;}
.x2e_c00312{left:532.960000pt;}
.x74_c00312{left:534.666667pt;}
.x6b_c00312{left:536.000000pt;}
.x39_c00312{left:537.333333pt;}
.x4c_c00312{left:540.000000pt;}
.xa5_c00312{left:542.666667pt;}
.x5d_c00312{left:545.706667pt;}
.x1b_c00312{left:550.666667pt;}
.xa8_c00312{left:556.000000pt;}
.xb6_c00312{left:558.666667pt;}
.xd_c00312{left:559.626667pt;}
.x96_c00312{left:561.333333pt;}
.xb9_c00312{left:562.666667pt;}
.x44_c00312{left:564.000000pt;}
.x75_c00312{left:565.333333pt;}
.x2f_c00312{left:567.040000pt;}
.x1c_c00312{left:568.373333pt;}
.xa7_c00312{left:574.666667pt;}
.x80_c00312{left:577.333333pt;}
.x25_c00312{left:579.040000pt;}
.x6c_c00312{left:580.000000pt;}
.x5e_c00312{left:587.626667pt;}
.x1d_c00312{left:590.293333pt;}
.xb3_c00312{left:592.000000pt;}
.x3a_c00312{left:595.040000pt;}
.xba_c00312{left:596.000000pt;}
.x30_c00312{left:597.333333pt;}
.x4d_c00312{left:599.626667pt;}
.x45_c00312{left:601.333333pt;}
.xa9_c00312{left:606.666667pt;}
.x5f_c00312{left:612.000000pt;}
.xe_c00312{left:614.293333pt;}
.x6d_c00312{left:617.333333pt;}
.x31_c00312{left:618.666667pt;}
.x1_c00312{left:625.333333pt;}
.x26_c00312{left:630.666667pt;}
.xf_c00312{left:633.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1a08f9581a1a2f8883fd8053.woff2')format("woff");}.ff1_c00313{font-family:ff1_c00313;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4c_c00313{transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);}
.mae_c00313{transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);}
.m0_c00313{transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);}
.mbe_c00313{transform:matrix(0.344709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344709,0.000000,0.000000,0.250000,0,0);}
.m66_c00313{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m92_c00313{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.ma2_c00313{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mf9_c00313{transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);}
.m7f_c00313{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mc0_c00313{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.mbf_c00313{transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);}
.m9b_c00313{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m80_c00313{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mdf_c00313{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m8e_c00313{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m4e_c00313{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m3a_c00313{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.mb6_c00313{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m5c_c00313{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.md5_c00313{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m2_c00313{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.mca_c00313{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_c00313{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.me2_c00313{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.me6_c00313{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m30_c00313{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m16_c00313{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m22_c00313{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m56_c00313{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m3e_c00313{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m42_c00313{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.mce_c00313{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m7e_c00313{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m62_c00313{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.me8_c00313{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m59_c00313{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mfe_c00313{transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);}
.m9f_c00313{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m4d_c00313{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m19_c00313{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m57_c00313{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mf7_c00313{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m75_c00313{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m2c_c00313{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.mdc_c00313{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m6e_c00313{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.md9_c00313{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m89_c00313{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.mab_c00313{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m3f_c00313{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mbc_c00313{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mea_c00313{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.mbd_c00313{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m6f_c00313{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.mcd_c00313{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m91_c00313{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.md1_c00313{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m8f_c00313{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m64_c00313{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.me9_c00313{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m12_c00313{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.mcf_c00313{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.maa_c00313{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.mcb_c00313{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m11_c00313{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.mc5_c00313{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mbb_c00313{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.mb1_c00313{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.mf_c00313{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m7b_c00313{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mc1_c00313{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m3c_c00313{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.mf5_c00313{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m5e_c00313{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.mb7_c00313{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.m52_c00313{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.m99_c00313{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.md7_c00313{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m3b_c00313{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.mc4_c00313{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.mc3_c00313{transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);}
.mad_c00313{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m87_c00313{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.md4_c00313{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.ma8_c00313{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m90_c00313{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m71_c00313{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m55_c00313{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.mb2_c00313{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.mfd_c00313{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.mc_c00313{transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);}
.m53_c00313{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.m26_c00313{transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);}
.m50_c00313{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m8_c00313{transform:matrix(0.477273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477273,0.000000,0.000000,0.250000,0,0);}
.m32_c00313{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.mac_c00313{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.mdd_c00313{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.m69_c00313{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m45_c00313{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m43_c00313{transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);}
.mb_c00313{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m95_c00313{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mef_c00313{transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);}
.m83_c00313{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.mde_c00313{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.md_c00313{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m31_c00313{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m97_c00313{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mb0_c00313{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.md3_c00313{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.mfc_c00313{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m20_c00313{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);}
.m5a_c00313{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m3_c00313{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m8c_c00313{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m51_c00313{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m4a_c00313{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m44_c00313{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m37_c00313{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m28_c00313{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mf2_c00313{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m9c_c00313{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.mc9_c00313{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m33_c00313{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m76_c00313{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m18_c00313{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.maf_c00313{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m2e_c00313{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m5d_c00313{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m4b_c00313{transform:matrix(0.521008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521008,0.000000,0.000000,0.250000,0,0);}
.m6_c00313{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m49_c00313{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m1e_c00313{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m9d_c00313{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m21_c00313{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m58_c00313{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mf6_c00313{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m23_c00313{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m72_c00313{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m1f_c00313{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mf8_c00313{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.md6_c00313{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.mc2_c00313{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.mba_c00313{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m54_c00313{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m4f_c00313{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m46_c00313{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.mb3_c00313{transform:matrix(0.537570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537570,0.000000,0.000000,0.250000,0,0);}
.me_c00313{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m34_c00313{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m2a_c00313{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m7_c00313{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m67_c00313{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m9e_c00313{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m47_c00313{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m35_c00313{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m1c_c00313{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m1d_c00313{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m3d_c00313{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m2d_c00313{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m2f_c00313{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m17_c00313{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m8d_c00313{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m74_c00313{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m88_c00313{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m82_c00313{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m4_c00313{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mb4_c00313{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.ma7_c00313{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m14_c00313{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.med_c00313{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m81_c00313{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.md0_c00313{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);}
.me0_c00313{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m9_c00313{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m25_c00313{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mc7_c00313{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m5f_c00313{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m38_c00313{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.ma6_c00313{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m29_c00313{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.mf1_c00313{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m68_c00313{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mec_c00313{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.mfa_c00313{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m73_c00313{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m65_c00313{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m5b_c00313{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m6c_c00313{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m63_c00313{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m7a_c00313{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m61_c00313{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mf0_c00313{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.mda_c00313{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m96_c00313{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m79_c00313{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m9a_c00313{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mb9_c00313{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m24_c00313{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m10_c00313{transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);}
.me1_c00313{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m7d_c00313{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.mc6_c00313{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.ma3_c00313{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mcc_c00313{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m1_c00313{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.mdb_c00313{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m84_c00313{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.me5_c00313{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.mb8_c00313{transform:matrix(0.612552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612552,0.000000,0.000000,0.250000,0,0);}
.m60_c00313{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.ma1_c00313{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m8b_c00313{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.ma5_c00313{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m13_c00313{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m41_c00313{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m98_c00313{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);}
.me3_c00313{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mf4_c00313{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m1b_c00313{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m93_c00313{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);}
.mc8_c00313{transform:matrix(0.651452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651452,0.000000,0.000000,0.250000,0,0);}
.me4_c00313{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.meb_c00313{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.md8_c00313{transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);}
.m1a_c00313{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m94_c00313{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m8a_c00313{transform:matrix(0.669412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669412,0.000000,0.000000,0.250000,0,0);}
.m39_c00313{transform:matrix(0.673529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673529,0.000000,0.000000,0.250000,0,0);}
.m70_c00313{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.ma9_c00313{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m77_c00313{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.mb5_c00313{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.m86_c00313{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.ma0_c00313{transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);}
.m2b_c00313{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mfb_c00313{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m48_c00313{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m6b_c00313{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m78_c00313{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mf3_c00313{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m85_c00313{transform:matrix(0.772436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772436,0.000000,0.000000,0.250000,0,0);}
.m15_c00313{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m6a_c00313{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.me7_c00313{transform:matrix(0.793269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.793269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.793269,0.000000,0.000000,0.250000,0,0);}
.ma4_c00313{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m6d_c00313{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m27_c00313{transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);}
.m5_c00313{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.m40_c00313{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.ma_c00313{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m7c_c00313{transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);}
.mee_c00313{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.md2_c00313{transform:matrix(3.109649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.109649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.109649,0.000000,0.000000,0.250000,0,0);}
.v0_c00313{vertical-align:0.000000px;}
.ls1_c00313{letter-spacing:0.000000px;}
.ls0_c00313{letter-spacing:35.037617px;}
.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;}
}
.ws2_c00313{word-spacing:-55.886417px;}
.ws0_c00313{word-spacing:-6.497360px;}
.ws1_c00313{word-spacing:-5.435275px;}
.ws3_c00313{word-spacing:0.000000px;}
._0_c00313{margin-left:-35.037617px;}
.fc0_c00313{color:transparent;}
.fs7_c00313{font-size:3.420000px;}
.fs3_c00313{font-size:18.720000px;}
.fs1_c00313{font-size:20.400000px;}
.fs5_c00313{font-size:25.500000px;}
.fs2_c00313{font-size:28.920000px;}
.fs4_c00313{font-size:32.340000px;}
.fs0_c00313{font-size:35.700000px;}
.fs6_c00313{font-size:39.120000px;}
.y0_c00313{bottom:0.000000px;}
.yc3_c00313{bottom:250.905000px;}
.yc4_c00313{bottom:251.130000px;}
.yc6_c00313{bottom:251.325000px;}
.yc2_c00313{bottom:251.970000px;}
.yc5_c00313{bottom:252.405000px;}
.ybe_c00313{bottom:268.245000px;}
.ybf_c00313{bottom:270.405000px;}
.yc0_c00313{bottom:270.630000px;}
.yc1_c00313{bottom:271.905000px;}
.ybb_c00313{bottom:289.245000px;}
.ybc_c00313{bottom:290.970000px;}
.yba_c00313{bottom:291.405000px;}
.ybd_c00313{bottom:292.470000px;}
.yb9_c00313{bottom:309.825000px;}
.yb8_c00313{bottom:310.245000px;}
.yb5_c00313{bottom:310.905000px;}
.yb6_c00313{bottom:311.130000px;}
.yb7_c00313{bottom:311.970000px;}
.yb3_c00313{bottom:327.405000px;}
.yb4_c00313{bottom:328.470000px;}
.yb1_c00313{bottom:330.405000px;}
.yb2_c00313{bottom:331.470000px;}
.yae_c00313{bottom:349.245000px;}
.yad_c00313{bottom:349.905000px;}
.yb0_c00313{bottom:350.970000px;}
.yaf_c00313{bottom:351.405000px;}
.yac_c00313{bottom:367.905000px;}
.yab_c00313{bottom:368.745000px;}
.ya9_c00313{bottom:369.630000px;}
.yaa_c00313{bottom:370.905000px;}
.ya5_c00313{bottom:387.405000px;}
.ya4_c00313{bottom:388.245000px;}
.ya7_c00313{bottom:389.970000px;}
.ya3_c00313{bottom:390.405000px;}
.ya8_c00313{bottom:390.630000px;}
.ya6_c00313{bottom:391.470000px;}
.y9f_c00313{bottom:407.745000px;}
.ya2_c00313{bottom:408.630000px;}
.y9e_c00313{bottom:409.905000px;}
.ya1_c00313{bottom:410.130000px;}
.ya0_c00313{bottom:410.970000px;}
.y9c_c00313{bottom:427.245000px;}
.y9b_c00313{bottom:429.405000px;}
.y9d_c00313{bottom:430.470000px;}
.y9a_c00313{bottom:446.745000px;}
.y99_c00313{bottom:447.825000px;}
.y97_c00313{bottom:448.245000px;}
.y94_c00313{bottom:448.905000px;}
.y96_c00313{bottom:448.920000px;}
.y93_c00313{bottom:449.130000px;}
.y95_c00313{bottom:449.970000px;}
.y98_c00313{bottom:450.405000px;}
.y91_c00313{bottom:467.745000px;}
.y92_c00313{bottom:469.470000px;}
.y90_c00313{bottom:469.905000px;}
.y8b_c00313{bottom:486.405000px;}
.y8f_c00313{bottom:487.245000px;}
.y8c_c00313{bottom:488.130000px;}
.y8e_c00313{bottom:488.970000px;}
.y8a_c00313{bottom:489.405000px;}
.y8d_c00313{bottom:490.470000px;}
.y88_c00313{bottom:506.745000px;}
.y86_c00313{bottom:507.630000px;}
.y87_c00313{bottom:507.825000px;}
.y89_c00313{bottom:508.905000px;}
.y85_c00313{bottom:525.180000px;}
.y84_c00313{bottom:526.245000px;}
.y83_c00313{bottom:528.405000px;}
.y7f_c00313{bottom:545.325000px;}
.y80_c00313{bottom:545.745000px;}
.y82_c00313{bottom:546.180000px;}
.y81_c00313{bottom:547.245000px;}
.y7d_c00313{bottom:547.905000px;}
.y7e_c00313{bottom:548.130000px;}
.y79_c00313{bottom:565.245000px;}
.y7c_c00313{bottom:566.325000px;}
.y78_c00313{bottom:567.405000px;}
.y7b_c00313{bottom:567.630000px;}
.y7a_c00313{bottom:568.470000px;}
.y73_c00313{bottom:583.905000px;}
.y72_c00313{bottom:585.825000px;}
.y76_c00313{bottom:586.245000px;}
.y71_c00313{bottom:587.130000px;}
.y75_c00313{bottom:587.325000px;}
.y77_c00313{bottom:587.970000px;}
.y74_c00313{bottom:588.405000px;}
.y70_c00313{bottom:604.680000px;}
.y6f_c00313{bottom:604.905000px;}
.y6b_c00313{bottom:605.745000px;}
.y6e_c00313{bottom:606.825000px;}
.y6c_c00313{bottom:607.470000px;}
.y6d_c00313{bottom:607.905000px;}
.y68_c00313{bottom:625.050000px;}
.y6a_c00313{bottom:625.245000px;}
.y67_c00313{bottom:626.130000px;}
.y69_c00313{bottom:627.405000px;}
.y63_c00313{bottom:642.405000px;}
.y61_c00313{bottom:645.630000px;}
.y66_c00313{bottom:645.825000px;}
.y65_c00313{bottom:646.470000px;}
.y64_c00313{bottom:646.905000px;}
.y62_c00313{bottom:647.970000px;}
.y5d_c00313{bottom:664.245000px;}
.y5f_c00313{bottom:665.970000px;}
.y60_c00313{bottom:666.405000px;}
.y5e_c00313{bottom:666.630000px;}
.y5c_c00313{bottom:682.905000px;}
.y5b_c00313{bottom:683.745000px;}
.y59_c00313{bottom:685.905000px;}
.y5a_c00313{bottom:686.130000px;}
.y55_c00313{bottom:703.245000px;}
.y52_c00313{bottom:704.325000px;}
.y57_c00313{bottom:704.550000px;}
.y53_c00313{bottom:705.405000px;}
.y54_c00313{bottom:705.630000px;}
.y58_c00313{bottom:706.470000px;}
.y56_c00313{bottom:706.905000px;}
.y4e_c00313{bottom:724.050000px;}
.y50_c00313{bottom:724.245000px;}
.y4d_c00313{bottom:724.905000px;}
.y51_c00313{bottom:725.130000px;}
.y4f_c00313{bottom:726.405000px;}
.y4b_c00313{bottom:743.745000px;}
.y4a_c00313{bottom:744.630000px;}
.y4c_c00313{bottom:745.470000px;}
.y49_c00313{bottom:745.905000px;}
.y47_c00313{bottom:763.245000px;}
.y46_c00313{bottom:765.405000px;}
.y48_c00313{bottom:765.630000px;}
.y45_c00313{bottom:781.470000px;}
.y44_c00313{bottom:782.745000px;}
.y41_c00313{bottom:783.630000px;}
.y43_c00313{bottom:784.470000px;}
.y42_c00313{bottom:784.905000px;}
.y40_c00313{bottom:785.970000px;}
.y3f_c00313{bottom:801.405000px;}
.y3c_c00313{bottom:802.245000px;}
.y3b_c00313{bottom:804.405000px;}
.y3e_c00313{bottom:804.630000px;}
.y3d_c00313{bottom:805.470000px;}
.y39_c00313{bottom:820.905000px;}
.y37_c00313{bottom:823.905000px;}
.y3a_c00313{bottom:824.130000px;}
.y38_c00313{bottom:825.405000px;}
.y36_c00313{bottom:841.470000px;}
.y35_c00313{bottom:842.745000px;}
.y33_c00313{bottom:844.470000px;}
.y34_c00313{bottom:844.905000px;}
.y32_c00313{bottom:863.325000px;}
.y31_c00313{bottom:864.405000px;}
.y30_c00313{bottom:881.745000px;}
.y2f_c00313{bottom:883.905000px;}
.y2e_c00313{bottom:900.405000px;}
.y2c_c00313{bottom:901.245000px;}
.y2d_c00313{bottom:902.325000px;}
.y2b_c00313{bottom:903.405000px;}
.y28_c00313{bottom:919.905000px;}
.y26_c00313{bottom:920.325000px;}
.y27_c00313{bottom:922.905000px;}
.y2a_c00313{bottom:923.130000px;}
.y29_c00313{bottom:923.970000px;}
.y23_c00313{bottom:940.245000px;}
.y24_c00313{bottom:941.745000px;}
.y20_c00313{bottom:942.405000px;}
.y21_c00313{bottom:942.630000px;}
.y25_c00313{bottom:943.470000px;}
.y22_c00313{bottom:943.905000px;}
.y1d_c00313{bottom:959.745000px;}
.y1b_c00313{bottom:961.905000px;}
.y1e_c00313{bottom:962.550000px;}
.y1c_c00313{bottom:963.405000px;}
.y1f_c00313{bottom:963.825000px;}
.y18_c00313{bottom:980.325000px;}
.y1a_c00313{bottom:980.745000px;}
.y16_c00313{bottom:981.405000px;}
.y17_c00313{bottom:981.630000px;}
.y19_c00313{bottom:982.905000px;}
.y13_c00313{bottom:1000.245000px;}
.y11_c00313{bottom:1000.905000px;}
.y15_c00313{bottom:1001.130000px;}
.y14_c00313{bottom:1001.325000px;}
.y12_c00313{bottom:1002.405000px;}
.ye_c00313{bottom:1019.745000px;}
.yc_c00313{bottom:1020.405000px;}
.yf_c00313{bottom:1020.630000px;}
.y10_c00313{bottom:1021.470000px;}
.yd_c00313{bottom:1021.905000px;}
.ya_c00313{bottom:1039.245000px;}
.y8_c00313{bottom:1040.325000px;}
.y7_c00313{bottom:1041.405000px;}
.yb_c00313{bottom:1041.630000px;}
.y9_c00313{bottom:1042.470000px;}
.y3_c00313{bottom:1058.745000px;}
.y5_c00313{bottom:1059.630000px;}
.y6_c00313{bottom:1059.825000px;}
.y4_c00313{bottom:1060.905000px;}
.y1_c00313{bottom:1097.745000px;}
.y2_c00313{bottom:1099.050000px;}
.h8_c00313{height:4.206533px;}
.h4_c00313{height:23.025234px;}
.h2_c00313{height:25.091602px;}
.h6_c00313{height:31.364502px;}
.h3_c00313{height:35.571035px;}
.h5_c00313{height:39.777568px;}
.h1_c00313{height:43.910303px;}
.h7_c00313{height:48.116836px;}
.h0_c00313{height:1335.000000px;}
.w0_c00313{width:880.500000px;}
.x0_c00313{left:0.000000px;}
.x3c_c00313{left:151.500000px;}
.x1_c00313{left:153.000000px;}
.x69_c00313{left:168.000000px;}
.xfe_c00313{left:169.500000px;}
.xea_c00313{left:171.000000px;}
.xbe_c00313{left:172.500000px;}
.xb1_c00313{left:174.000000px;}
.xc7_c00313{left:175.500000px;}
.x61_c00313{left:177.000000px;}
.x22_c00313{left:178.080000px;}
.xce_c00313{left:181.500000px;}
.xd_c00313{left:184.080000px;}
.x85_c00313{left:186.000000px;}
.xb2_c00313{left:187.920000px;}
.xeb_c00313{left:189.000000px;}
.x73_c00313{left:190.500000px;}
.x98_c00313{left:196.500000px;}
.xe0_c00313{left:197.580000px;}
.x6a_c00313{left:199.500000px;}
.x3d_c00313{left:201.000000px;}
.x105_c00313{left:202.500000px;}
.xba_c00313{left:205.920000px;}
.x23_c00313{left:207.420000px;}
.x34_c00313{left:211.500000px;}
.x51_c00313{left:213.000000px;}
.xaa_c00313{left:214.500000px;}
.xd1_c00313{left:219.000000px;}
.x6b_c00313{left:220.080000px;}
.x101_c00313{left:222.000000px;}
.xd6_c00313{left:223.080000px;}
.xf2_c00313{left:224.580000px;}
.x62_c00313{left:226.920000px;}
.x52_c00313{left:228.000000px;}
.x35_c00313{left:229.500000px;}
.x19_c00313{left:231.000000px;}
.xfa_c00313{left:232.500000px;}
.x4a_c00313{left:234.420000px;}
.x3e_c00313{left:235.500000px;}
.x3_c00313{left:236.580000px;}
.x6c_c00313{left:238.500000px;}
.xe_c00313{left:241.080000px;}
.x99_c00313{left:243.000000px;}
.xa0_c00313{left:246.000000px;}
.x1a_c00313{left:249.420000px;}
.xd2_c00313{left:250.500000px;}
.x8f_c00313{left:252.000000px;}
.x86_c00313{left:258.000000px;}
.x3f_c00313{left:259.080000px;}
.xc4_c00313{left:261.420000px;}
.x4b_c00313{left:262.920000px;}
.xbf_c00313{left:264.000000px;}
.xcf_c00313{left:265.920000px;}
.x7e_c00313{left:268.500000px;}
.x2d_c00313{left:271.500000px;}
.x59_c00313{left:274.500000px;}
.xc8_c00313{left:275.580000px;}
.x1b_c00313{left:277.500000px;}
.x53_c00313{left:279.420000px;}
.xf_c00313{left:280.920000px;}
.x102_c00313{left:282.000000px;}
.x40_c00313{left:286.500000px;}
.x4_c00313{left:288.000000px;}
.x24_c00313{left:291.420000px;}
.x5a_c00313{left:294.000000px;}
.x87_c00313{left:295.500000px;}
.xbb_c00313{left:297.420000px;}
.xe1_c00313{left:298.500000px;}
.x6d_c00313{left:303.420000px;}
.xa1_c00313{left:306.420000px;}
.x4c_c00313{left:307.500000px;}
.xc9_c00313{left:310.080000px;}
.x9a_c00313{left:313.080000px;}
.x103_c00313{left:315.000000px;}
.x90_c00313{left:316.500000px;}
.x5_c00313{left:318.000000px;}
.x74_c00313{left:319.080000px;}
.xd3_c00313{left:324.000000px;}
.x88_c00313{left:325.920000px;}
.x2e_c00313{left:327.000000px;}
.x41_c00313{left:328.500000px;}
.xec_c00313{left:331.500000px;}
.x7f_c00313{left:333.000000px;}
.xa2_c00313{left:334.080000px;}
.xb3_c00313{left:338.580000px;}
.x6e_c00313{left:342.420000px;}
.xf6_c00313{left:343.500000px;}
.x6_c00313{left:344.580000px;}
.xd4_c00313{left:346.080000px;}
.x80_c00313{left:348.420000px;}
.x36_c00313{left:350.580000px;}
.xda_c00313{left:352.500000px;}
.x10_c00313{left:357.000000px;}
.x63_c00313{left:359.580000px;}
.x25_c00313{left:361.500000px;}
.x1c_c00313{left:364.500000px;}
.x89_c00313{left:366.420000px;}
.x91_c00313{left:367.920000px;}
.x7_c00313{left:369.000000px;}
.xc0_c00313{left:370.920000px;}
.x6f_c00313{left:372.420000px;}
.x9b_c00313{left:376.500000px;}
.x42_c00313{left:379.920000px;}
.x81_c00313{left:381.000000px;}
.xe5_c00313{left:382.080000px;}
.xf1_c00313{left:384.000000px;}
.xf9_c00313{left:387.000000px;}
.x5b_c00313{left:388.920000px;}
.x2f_c00313{left:391.080000px;}
.x104_c00313{left:393.420000px;}
.xc1_c00313{left:397.500000px;}
.x43_c00313{left:399.000000px;}
.x75_c00313{left:400.500000px;}
.x2_c00313{left:403.500000px;}
.x92_c00313{left:405.000000px;}
.x64_c00313{left:406.500000px;}
.x8a_c00313{left:408.420000px;}
.x11_c00313{left:409.500000px;}
.x1d_c00313{left:411.000000px;}
.x8_c00313{left:414.420000px;}
.xff_c00313{left:415.500000px;}
.xa3_c00313{left:417.000000px;}
.xb4_c00313{left:418.500000px;}
.xca_c00313{left:419.580000px;}
.x5c_c00313{left:421.500000px;}
.x54_c00313{left:423.000000px;}
.x37_c00313{left:426.000000px;}
.x1e_c00313{left:427.500000px;}
.xd7_c00313{left:432.420000px;}
.xa4_c00313{left:433.500000px;}
.x76_c00313{left:436.500000px;}
.x65_c00313{left:438.000000px;}
.x26_c00313{left:442.500000px;}
.x30_c00313{left:443.580000px;}
.x4d_c00313{left:445.500000px;}
.xf7_c00313{left:447.000000px;}
.x93_c00313{left:448.920000px;}
.x77_c00313{left:454.920000px;}
.x55_c00313{left:456.000000px;}
.x38_c00313{left:457.500000px;}
.xd5_c00313{left:458.580000px;}
.x106_c00313{left:460.920000px;}
.xe2_c00313{left:462.000000px;}
.x44_c00313{left:463.080000px;}
.x9c_c00313{left:464.580000px;}
.xa5_c00313{left:466.920000px;}
.xd8_c00313{left:468.420000px;}
.x1f_c00313{left:469.500000px;}
.x12_c00313{left:470.580000px;}
.xab_c00313{left:472.500000px;}
.xed_c00313{left:474.000000px;}
.x27_c00313{left:475.920000px;}
.xfb_c00313{left:478.500000px;}
.x66_c00313{left:484.500000px;}
.x94_c00313{left:486.000000px;}
.xdb_c00313{left:487.500000px;}
.x4e_c00313{left:489.000000px;}
.x5d_c00313{left:490.080000px;}
.xe6_c00313{left:492.000000px;}
.xbc_c00313{left:493.500000px;}
.xb5_c00313{left:495.420000px;}
.x100_c00313{left:496.920000px;}
.x45_c00313{left:498.000000px;}
.x13_c00313{left:499.920000px;}
.x28_c00313{left:503.580000px;}
.x78_c00313{left:505.080000px;}
.x82_c00313{left:508.500000px;}
.xac_c00313{left:510.000000px;}
.xd9_c00313{left:511.500000px;}
.x67_c00313{left:516.000000px;}
.x9d_c00313{left:517.500000px;}
.x9_c00313{left:519.420000px;}
.x83_c00313{left:520.920000px;}
.x56_c00313{left:522.420000px;}
.xb6_c00313{left:523.920000px;}
.xe7_c00313{left:526.080000px;}
.x8b_c00313{left:527.580000px;}
.x70_c00313{left:530.580000px;}
.x14_c00313{left:534.000000px;}
.x79_c00313{left:535.500000px;}
.xc2_c00313{left:537.420000px;}
.x107_c00313{left:540.000000px;}
.xf3_c00313{left:541.920000px;}
.x5e_c00313{left:544.500000px;}
.x29_c00313{left:546.420000px;}
.xad_c00313{left:549.000000px;}
.xdc_c00313{left:550.080000px;}
.x7a_c00313{left:552.000000px;}
.x46_c00313{left:555.000000px;}
.x68_c00313{left:556.920000px;}
.x9e_c00313{left:561.420000px;}
.xa_c00313{left:562.500000px;}
.x31_c00313{left:564.000000px;}
.x39_c00313{left:566.145000px;}
.x15_c00313{left:568.500000px;}
.xf8_c00313{left:569.580000px;}
.xb7_c00313{left:572.580000px;}
.x5f_c00313{left:574.500000px;}
.xae_c00313{left:575.580000px;}
.xa6_c00313{left:577.080000px;}
.x47_c00313{left:579.420000px;}
.xcb_c00313{left:580.500000px;}
.xdd_c00313{left:582.000000px;}
.xfc_c00313{left:583.500000px;}
.xc3_c00313{left:585.000000px;}
.x16_c00313{left:588.645000px;}
.x20_c00313{left:591.000000px;}
.xaf_c00313{left:594.420000px;}
.xb_c00313{left:595.500000px;}
.x57_c00313{left:598.920000px;}
.xcc_c00313{left:600.000000px;}
.x32_c00313{left:601.080000px;}
.xee_c00313{left:602.580000px;}
.x7b_c00313{left:604.920000px;}
.xe8_c00313{left:606.000000px;}
.xf4_c00313{left:607.920000px;}
.x48_c00313{left:610.920000px;}
.x71_c00313{left:612.000000px;}
.x9f_c00313{left:613.080000px;}
.x2a_c00313{left:615.000000px;}
.x4f_c00313{left:617.145000px;}
.x3a_c00313{left:618.420000px;}
.x8c_c00313{left:619.920000px;}
.xe9_c00313{left:624.420000px;}
.xc5_c00313{left:628.920000px;}
.xb0_c00313{left:630.000000px;}
.x60_c00313{left:631.500000px;}
.xef_c00313{left:632.580000px;}
.x95_c00313{left:634.080000px;}
.xa7_c00313{left:636.420000px;}
.xe3_c00313{left:639.000000px;}
.xc_c00313{left:640.500000px;}
.x2b_c00313{left:643.500000px;}
.x58_c00313{left:645.000000px;}
.x8d_c00313{left:646.920000px;}
.x17_c00313{left:648.420000px;}
.x21_c00313{left:651.000000px;}
.x84_c00313{left:652.920000px;}
.x96_c00313{left:654.000000px;}
.xc6_c00313{left:655.080000px;}
.xd0_c00313{left:660.000000px;}
.xf5_c00313{left:664.500000px;}
.xa8_c00313{left:665.580000px;}
.x72_c00313{left:670.080000px;}
.x50_c00313{left:672.000000px;}
.xfd_c00313{left:673.920000px;}
.x7c_c00313{left:676.920000px;}
.xcd_c00313{left:678.420000px;}
.x33_c00313{left:679.500000px;}
.x2c_c00313{left:680.580000px;}
.x18_c00313{left:682.500000px;}
.xf0_c00313{left:684.000000px;}
.xde_c00313{left:685.500000px;}
.xbd_c00313{left:686.580000px;}
.xb8_c00313{left:688.080000px;}
.x3b_c00313{left:690.000000px;}
.x108_c00313{left:695.355000px;}
.xa9_c00313{left:696.420000px;}
.xe4_c00313{left:697.500000px;}
.x49_c00313{left:702.000000px;}
.x8e_c00313{left:703.500000px;}
.x97_c00313{left:704.580000px;}
.x7d_c00313{left:714.000000px;}
.xdf_c00313{left:717.000000px;}
.xb9_c00313{left:720.000000px;}
@media print{
.v0_c00313{vertical-align:0.000000pt;}
.ls1_c00313{letter-spacing:0.000000pt;}
.ls0_c00313{letter-spacing:31.144548pt;}
.ws2_c00313{word-spacing:-49.676815pt;}
.ws0_c00313{word-spacing:-5.775431pt;}
.ws1_c00313{word-spacing:-4.831356pt;}
.ws3_c00313{word-spacing:0.000000pt;}
._0_c00313{margin-left:-31.144548pt;}
.fs7_c00313{font-size:3.040000pt;}
.fs3_c00313{font-size:16.640000pt;}
.fs1_c00313{font-size:18.133333pt;}
.fs5_c00313{font-size:22.666667pt;}
.fs2_c00313{font-size:25.706667pt;}
.fs4_c00313{font-size:28.746667pt;}
.fs0_c00313{font-size:31.733333pt;}
.fs6_c00313{font-size:34.773333pt;}
.y0_c00313{bottom:0.000000pt;}
.yc3_c00313{bottom:223.026667pt;}
.yc4_c00313{bottom:223.226667pt;}
.yc6_c00313{bottom:223.400000pt;}
.yc2_c00313{bottom:223.973333pt;}
.yc5_c00313{bottom:224.360000pt;}
.ybe_c00313{bottom:238.440000pt;}
.ybf_c00313{bottom:240.360000pt;}
.yc0_c00313{bottom:240.560000pt;}
.yc1_c00313{bottom:241.693333pt;}
.ybb_c00313{bottom:257.106667pt;}
.ybc_c00313{bottom:258.640000pt;}
.yba_c00313{bottom:259.026667pt;}
.ybd_c00313{bottom:259.973333pt;}
.yb9_c00313{bottom:275.400000pt;}
.yb8_c00313{bottom:275.773333pt;}
.yb5_c00313{bottom:276.360000pt;}
.yb6_c00313{bottom:276.560000pt;}
.yb7_c00313{bottom:277.306667pt;}
.yb3_c00313{bottom:291.026667pt;}
.yb4_c00313{bottom:291.973333pt;}
.yb1_c00313{bottom:293.693333pt;}
.yb2_c00313{bottom:294.640000pt;}
.yae_c00313{bottom:310.440000pt;}
.yad_c00313{bottom:311.026667pt;}
.yb0_c00313{bottom:311.973333pt;}
.yaf_c00313{bottom:312.360000pt;}
.yac_c00313{bottom:327.026667pt;}
.yab_c00313{bottom:327.773333pt;}
.ya9_c00313{bottom:328.560000pt;}
.yaa_c00313{bottom:329.693333pt;}
.ya5_c00313{bottom:344.360000pt;}
.ya4_c00313{bottom:345.106667pt;}
.ya7_c00313{bottom:346.640000pt;}
.ya3_c00313{bottom:347.026667pt;}
.ya8_c00313{bottom:347.226667pt;}
.ya6_c00313{bottom:347.973333pt;}
.y9f_c00313{bottom:362.440000pt;}
.ya2_c00313{bottom:363.226667pt;}
.y9e_c00313{bottom:364.360000pt;}
.ya1_c00313{bottom:364.560000pt;}
.ya0_c00313{bottom:365.306667pt;}
.y9c_c00313{bottom:379.773333pt;}
.y9b_c00313{bottom:381.693333pt;}
.y9d_c00313{bottom:382.640000pt;}
.y9a_c00313{bottom:397.106667pt;}
.y99_c00313{bottom:398.066667pt;}
.y97_c00313{bottom:398.440000pt;}
.y94_c00313{bottom:399.026667pt;}
.y96_c00313{bottom:399.040000pt;}
.y93_c00313{bottom:399.226667pt;}
.y95_c00313{bottom:399.973333pt;}
.y98_c00313{bottom:400.360000pt;}
.y91_c00313{bottom:415.773333pt;}
.y92_c00313{bottom:417.306667pt;}
.y90_c00313{bottom:417.693333pt;}
.y8b_c00313{bottom:432.360000pt;}
.y8f_c00313{bottom:433.106667pt;}
.y8c_c00313{bottom:433.893333pt;}
.y8e_c00313{bottom:434.640000pt;}
.y8a_c00313{bottom:435.026667pt;}
.y8d_c00313{bottom:435.973333pt;}
.y88_c00313{bottom:450.440000pt;}
.y86_c00313{bottom:451.226667pt;}
.y87_c00313{bottom:451.400000pt;}
.y89_c00313{bottom:452.360000pt;}
.y85_c00313{bottom:466.826667pt;}
.y84_c00313{bottom:467.773333pt;}
.y83_c00313{bottom:469.693333pt;}
.y7f_c00313{bottom:484.733333pt;}
.y80_c00313{bottom:485.106667pt;}
.y82_c00313{bottom:485.493333pt;}
.y81_c00313{bottom:486.440000pt;}
.y7d_c00313{bottom:487.026667pt;}
.y7e_c00313{bottom:487.226667pt;}
.y79_c00313{bottom:502.440000pt;}
.y7c_c00313{bottom:503.400000pt;}
.y78_c00313{bottom:504.360000pt;}
.y7b_c00313{bottom:504.560000pt;}
.y7a_c00313{bottom:505.306667pt;}
.y73_c00313{bottom:519.026667pt;}
.y72_c00313{bottom:520.733333pt;}
.y76_c00313{bottom:521.106667pt;}
.y71_c00313{bottom:521.893333pt;}
.y75_c00313{bottom:522.066667pt;}
.y77_c00313{bottom:522.640000pt;}
.y74_c00313{bottom:523.026667pt;}
.y70_c00313{bottom:537.493333pt;}
.y6f_c00313{bottom:537.693333pt;}
.y6b_c00313{bottom:538.440000pt;}
.y6e_c00313{bottom:539.400000pt;}
.y6c_c00313{bottom:539.973333pt;}
.y6d_c00313{bottom:540.360000pt;}
.y68_c00313{bottom:555.600000pt;}
.y6a_c00313{bottom:555.773333pt;}
.y67_c00313{bottom:556.560000pt;}
.y69_c00313{bottom:557.693333pt;}
.y63_c00313{bottom:571.026667pt;}
.y61_c00313{bottom:573.893333pt;}
.y66_c00313{bottom:574.066667pt;}
.y65_c00313{bottom:574.640000pt;}
.y64_c00313{bottom:575.026667pt;}
.y62_c00313{bottom:575.973333pt;}
.y5d_c00313{bottom:590.440000pt;}
.y5f_c00313{bottom:591.973333pt;}
.y60_c00313{bottom:592.360000pt;}
.y5e_c00313{bottom:592.560000pt;}
.y5c_c00313{bottom:607.026667pt;}
.y5b_c00313{bottom:607.773333pt;}
.y59_c00313{bottom:609.693333pt;}
.y5a_c00313{bottom:609.893333pt;}
.y55_c00313{bottom:625.106667pt;}
.y52_c00313{bottom:626.066667pt;}
.y57_c00313{bottom:626.266667pt;}
.y53_c00313{bottom:627.026667pt;}
.y54_c00313{bottom:627.226667pt;}
.y58_c00313{bottom:627.973333pt;}
.y56_c00313{bottom:628.360000pt;}
.y4e_c00313{bottom:643.600000pt;}
.y50_c00313{bottom:643.773333pt;}
.y4d_c00313{bottom:644.360000pt;}
.y51_c00313{bottom:644.560000pt;}
.y4f_c00313{bottom:645.693333pt;}
.y4b_c00313{bottom:661.106667pt;}
.y4a_c00313{bottom:661.893333pt;}
.y4c_c00313{bottom:662.640000pt;}
.y49_c00313{bottom:663.026667pt;}
.y47_c00313{bottom:678.440000pt;}
.y46_c00313{bottom:680.360000pt;}
.y48_c00313{bottom:680.560000pt;}
.y45_c00313{bottom:694.640000pt;}
.y44_c00313{bottom:695.773333pt;}
.y41_c00313{bottom:696.560000pt;}
.y43_c00313{bottom:697.306667pt;}
.y42_c00313{bottom:697.693333pt;}
.y40_c00313{bottom:698.640000pt;}
.y3f_c00313{bottom:712.360000pt;}
.y3c_c00313{bottom:713.106667pt;}
.y3b_c00313{bottom:715.026667pt;}
.y3e_c00313{bottom:715.226667pt;}
.y3d_c00313{bottom:715.973333pt;}
.y39_c00313{bottom:729.693333pt;}
.y37_c00313{bottom:732.360000pt;}
.y3a_c00313{bottom:732.560000pt;}
.y38_c00313{bottom:733.693333pt;}
.y36_c00313{bottom:747.973333pt;}
.y35_c00313{bottom:749.106667pt;}
.y33_c00313{bottom:750.640000pt;}
.y34_c00313{bottom:751.026667pt;}
.y32_c00313{bottom:767.400000pt;}
.y31_c00313{bottom:768.360000pt;}
.y30_c00313{bottom:783.773333pt;}
.y2f_c00313{bottom:785.693333pt;}
.y2e_c00313{bottom:800.360000pt;}
.y2c_c00313{bottom:801.106667pt;}
.y2d_c00313{bottom:802.066667pt;}
.y2b_c00313{bottom:803.026667pt;}
.y28_c00313{bottom:817.693333pt;}
.y26_c00313{bottom:818.066667pt;}
.y27_c00313{bottom:820.360000pt;}
.y2a_c00313{bottom:820.560000pt;}
.y29_c00313{bottom:821.306667pt;}
.y23_c00313{bottom:835.773333pt;}
.y24_c00313{bottom:837.106667pt;}
.y20_c00313{bottom:837.693333pt;}
.y21_c00313{bottom:837.893333pt;}
.y25_c00313{bottom:838.640000pt;}
.y22_c00313{bottom:839.026667pt;}
.y1d_c00313{bottom:853.106667pt;}
.y1b_c00313{bottom:855.026667pt;}
.y1e_c00313{bottom:855.600000pt;}
.y1c_c00313{bottom:856.360000pt;}
.y1f_c00313{bottom:856.733333pt;}
.y18_c00313{bottom:871.400000pt;}
.y1a_c00313{bottom:871.773333pt;}
.y16_c00313{bottom:872.360000pt;}
.y17_c00313{bottom:872.560000pt;}
.y19_c00313{bottom:873.693333pt;}
.y13_c00313{bottom:889.106667pt;}
.y11_c00313{bottom:889.693333pt;}
.y15_c00313{bottom:889.893333pt;}
.y14_c00313{bottom:890.066667pt;}
.y12_c00313{bottom:891.026667pt;}
.ye_c00313{bottom:906.440000pt;}
.yc_c00313{bottom:907.026667pt;}
.yf_c00313{bottom:907.226667pt;}
.y10_c00313{bottom:907.973333pt;}
.yd_c00313{bottom:908.360000pt;}
.ya_c00313{bottom:923.773333pt;}
.y8_c00313{bottom:924.733333pt;}
.y7_c00313{bottom:925.693333pt;}
.yb_c00313{bottom:925.893333pt;}
.y9_c00313{bottom:926.640000pt;}
.y3_c00313{bottom:941.106667pt;}
.y5_c00313{bottom:941.893333pt;}
.y6_c00313{bottom:942.066667pt;}
.y4_c00313{bottom:943.026667pt;}
.y1_c00313{bottom:975.773333pt;}
.y2_c00313{bottom:976.933333pt;}
.h8_c00313{height:3.739141pt;}
.h4_c00313{height:20.466875pt;}
.h2_c00313{height:22.303646pt;}
.h6_c00313{height:27.879557pt;}
.h3_c00313{height:31.618698pt;}
.h5_c00313{height:35.357839pt;}
.h1_c00313{height:39.031380pt;}
.h7_c00313{height:42.770521pt;}
.h0_c00313{height:1186.666667pt;}
.w0_c00313{width:782.666667pt;}
.x0_c00313{left:0.000000pt;}
.x3c_c00313{left:134.666667pt;}
.x1_c00313{left:136.000000pt;}
.x69_c00313{left:149.333333pt;}
.xfe_c00313{left:150.666667pt;}
.xea_c00313{left:152.000000pt;}
.xbe_c00313{left:153.333333pt;}
.xb1_c00313{left:154.666667pt;}
.xc7_c00313{left:156.000000pt;}
.x61_c00313{left:157.333333pt;}
.x22_c00313{left:158.293333pt;}
.xce_c00313{left:161.333333pt;}
.xd_c00313{left:163.626667pt;}
.x85_c00313{left:165.333333pt;}
.xb2_c00313{left:167.040000pt;}
.xeb_c00313{left:168.000000pt;}
.x73_c00313{left:169.333333pt;}
.x98_c00313{left:174.666667pt;}
.xe0_c00313{left:175.626667pt;}
.x6a_c00313{left:177.333333pt;}
.x3d_c00313{left:178.666667pt;}
.x105_c00313{left:180.000000pt;}
.xba_c00313{left:183.040000pt;}
.x23_c00313{left:184.373333pt;}
.x34_c00313{left:188.000000pt;}
.x51_c00313{left:189.333333pt;}
.xaa_c00313{left:190.666667pt;}
.xd1_c00313{left:194.666667pt;}
.x6b_c00313{left:195.626667pt;}
.x101_c00313{left:197.333333pt;}
.xd6_c00313{left:198.293333pt;}
.xf2_c00313{left:199.626667pt;}
.x62_c00313{left:201.706667pt;}
.x52_c00313{left:202.666667pt;}
.x35_c00313{left:204.000000pt;}
.x19_c00313{left:205.333333pt;}
.xfa_c00313{left:206.666667pt;}
.x4a_c00313{left:208.373333pt;}
.x3e_c00313{left:209.333333pt;}
.x3_c00313{left:210.293333pt;}
.x6c_c00313{left:212.000000pt;}
.xe_c00313{left:214.293333pt;}
.x99_c00313{left:216.000000pt;}
.xa0_c00313{left:218.666667pt;}
.x1a_c00313{left:221.706667pt;}
.xd2_c00313{left:222.666667pt;}
.x8f_c00313{left:224.000000pt;}
.x86_c00313{left:229.333333pt;}
.x3f_c00313{left:230.293333pt;}
.xc4_c00313{left:232.373333pt;}
.x4b_c00313{left:233.706667pt;}
.xbf_c00313{left:234.666667pt;}
.xcf_c00313{left:236.373333pt;}
.x7e_c00313{left:238.666667pt;}
.x2d_c00313{left:241.333333pt;}
.x59_c00313{left:244.000000pt;}
.xc8_c00313{left:244.960000pt;}
.x1b_c00313{left:246.666667pt;}
.x53_c00313{left:248.373333pt;}
.xf_c00313{left:249.706667pt;}
.x102_c00313{left:250.666667pt;}
.x40_c00313{left:254.666667pt;}
.x4_c00313{left:256.000000pt;}
.x24_c00313{left:259.040000pt;}
.x5a_c00313{left:261.333333pt;}
.x87_c00313{left:262.666667pt;}
.xbb_c00313{left:264.373333pt;}
.xe1_c00313{left:265.333333pt;}
.x6d_c00313{left:269.706667pt;}
.xa1_c00313{left:272.373333pt;}
.x4c_c00313{left:273.333333pt;}
.xc9_c00313{left:275.626667pt;}
.x9a_c00313{left:278.293333pt;}
.x103_c00313{left:280.000000pt;}
.x90_c00313{left:281.333333pt;}
.x5_c00313{left:282.666667pt;}
.x74_c00313{left:283.626667pt;}
.xd3_c00313{left:288.000000pt;}
.x88_c00313{left:289.706667pt;}
.x2e_c00313{left:290.666667pt;}
.x41_c00313{left:292.000000pt;}
.xec_c00313{left:294.666667pt;}
.x7f_c00313{left:296.000000pt;}
.xa2_c00313{left:296.960000pt;}
.xb3_c00313{left:300.960000pt;}
.x6e_c00313{left:304.373333pt;}
.xf6_c00313{left:305.333333pt;}
.x6_c00313{left:306.293333pt;}
.xd4_c00313{left:307.626667pt;}
.x80_c00313{left:309.706667pt;}
.x36_c00313{left:311.626667pt;}
.xda_c00313{left:313.333333pt;}
.x10_c00313{left:317.333333pt;}
.x63_c00313{left:319.626667pt;}
.x25_c00313{left:321.333333pt;}
.x1c_c00313{left:324.000000pt;}
.x89_c00313{left:325.706667pt;}
.x91_c00313{left:327.040000pt;}
.x7_c00313{left:328.000000pt;}
.xc0_c00313{left:329.706667pt;}
.x6f_c00313{left:331.040000pt;}
.x9b_c00313{left:334.666667pt;}
.x42_c00313{left:337.706667pt;}
.x81_c00313{left:338.666667pt;}
.xe5_c00313{left:339.626667pt;}
.xf1_c00313{left:341.333333pt;}
.xf9_c00313{left:344.000000pt;}
.x5b_c00313{left:345.706667pt;}
.x2f_c00313{left:347.626667pt;}
.x104_c00313{left:349.706667pt;}
.xc1_c00313{left:353.333333pt;}
.x43_c00313{left:354.666667pt;}
.x75_c00313{left:356.000000pt;}
.x2_c00313{left:358.666667pt;}
.x92_c00313{left:360.000000pt;}
.x64_c00313{left:361.333333pt;}
.x8a_c00313{left:363.040000pt;}
.x11_c00313{left:364.000000pt;}
.x1d_c00313{left:365.333333pt;}
.x8_c00313{left:368.373333pt;}
.xff_c00313{left:369.333333pt;}
.xa3_c00313{left:370.666667pt;}
.xb4_c00313{left:372.000000pt;}
.xca_c00313{left:372.960000pt;}
.x5c_c00313{left:374.666667pt;}
.x54_c00313{left:376.000000pt;}
.x37_c00313{left:378.666667pt;}
.x1e_c00313{left:380.000000pt;}
.xd7_c00313{left:384.373333pt;}
.xa4_c00313{left:385.333333pt;}
.x76_c00313{left:388.000000pt;}
.x65_c00313{left:389.333333pt;}
.x26_c00313{left:393.333333pt;}
.x30_c00313{left:394.293333pt;}
.x4d_c00313{left:396.000000pt;}
.xf7_c00313{left:397.333333pt;}
.x93_c00313{left:399.040000pt;}
.x77_c00313{left:404.373333pt;}
.x55_c00313{left:405.333333pt;}
.x38_c00313{left:406.666667pt;}
.xd5_c00313{left:407.626667pt;}
.x106_c00313{left:409.706667pt;}
.xe2_c00313{left:410.666667pt;}
.x44_c00313{left:411.626667pt;}
.x9c_c00313{left:412.960000pt;}
.xa5_c00313{left:415.040000pt;}
.xd8_c00313{left:416.373333pt;}
.x1f_c00313{left:417.333333pt;}
.x12_c00313{left:418.293333pt;}
.xab_c00313{left:420.000000pt;}
.xed_c00313{left:421.333333pt;}
.x27_c00313{left:423.040000pt;}
.xfb_c00313{left:425.333333pt;}
.x66_c00313{left:430.666667pt;}
.x94_c00313{left:432.000000pt;}
.xdb_c00313{left:433.333333pt;}
.x4e_c00313{left:434.666667pt;}
.x5d_c00313{left:435.626667pt;}
.xe6_c00313{left:437.333333pt;}
.xbc_c00313{left:438.666667pt;}
.xb5_c00313{left:440.373333pt;}
.x100_c00313{left:441.706667pt;}
.x45_c00313{left:442.666667pt;}
.x13_c00313{left:444.373333pt;}
.x28_c00313{left:447.626667pt;}
.x78_c00313{left:448.960000pt;}
.x82_c00313{left:452.000000pt;}
.xac_c00313{left:453.333333pt;}
.xd9_c00313{left:454.666667pt;}
.x67_c00313{left:458.666667pt;}
.x9d_c00313{left:460.000000pt;}
.x9_c00313{left:461.706667pt;}
.x83_c00313{left:463.040000pt;}
.x56_c00313{left:464.373333pt;}
.xb6_c00313{left:465.706667pt;}
.xe7_c00313{left:467.626667pt;}
.x8b_c00313{left:468.960000pt;}
.x70_c00313{left:471.626667pt;}
.x14_c00313{left:474.666667pt;}
.x79_c00313{left:476.000000pt;}
.xc2_c00313{left:477.706667pt;}
.x107_c00313{left:480.000000pt;}
.xf3_c00313{left:481.706667pt;}
.x5e_c00313{left:484.000000pt;}
.x29_c00313{left:485.706667pt;}
.xad_c00313{left:488.000000pt;}
.xdc_c00313{left:488.960000pt;}
.x7a_c00313{left:490.666667pt;}
.x46_c00313{left:493.333333pt;}
.x68_c00313{left:495.040000pt;}
.x9e_c00313{left:499.040000pt;}
.xa_c00313{left:500.000000pt;}
.x31_c00313{left:501.333333pt;}
.x39_c00313{left:503.240000pt;}
.x15_c00313{left:505.333333pt;}
.xf8_c00313{left:506.293333pt;}
.xb7_c00313{left:508.960000pt;}
.x5f_c00313{left:510.666667pt;}
.xae_c00313{left:511.626667pt;}
.xa6_c00313{left:512.960000pt;}
.x47_c00313{left:515.040000pt;}
.xcb_c00313{left:516.000000pt;}
.xdd_c00313{left:517.333333pt;}
.xfc_c00313{left:518.666667pt;}
.xc3_c00313{left:520.000000pt;}
.x16_c00313{left:523.240000pt;}
.x20_c00313{left:525.333333pt;}
.xaf_c00313{left:528.373333pt;}
.xb_c00313{left:529.333333pt;}
.x57_c00313{left:532.373333pt;}
.xcc_c00313{left:533.333333pt;}
.x32_c00313{left:534.293333pt;}
.xee_c00313{left:535.626667pt;}
.x7b_c00313{left:537.706667pt;}
.xe8_c00313{left:538.666667pt;}
.xf4_c00313{left:540.373333pt;}
.x48_c00313{left:543.040000pt;}
.x71_c00313{left:544.000000pt;}
.x9f_c00313{left:544.960000pt;}
.x2a_c00313{left:546.666667pt;}
.x4f_c00313{left:548.573333pt;}
.x3a_c00313{left:549.706667pt;}
.x8c_c00313{left:551.040000pt;}
.xe9_c00313{left:555.040000pt;}
.xc5_c00313{left:559.040000pt;}
.xb0_c00313{left:560.000000pt;}
.x60_c00313{left:561.333333pt;}
.xef_c00313{left:562.293333pt;}
.x95_c00313{left:563.626667pt;}
.xa7_c00313{left:565.706667pt;}
.xe3_c00313{left:568.000000pt;}
.xc_c00313{left:569.333333pt;}
.x2b_c00313{left:572.000000pt;}
.x58_c00313{left:573.333333pt;}
.x8d_c00313{left:575.040000pt;}
.x17_c00313{left:576.373333pt;}
.x21_c00313{left:578.666667pt;}
.x84_c00313{left:580.373333pt;}
.x96_c00313{left:581.333333pt;}
.xc6_c00313{left:582.293333pt;}
.xd0_c00313{left:586.666667pt;}
.xf5_c00313{left:590.666667pt;}
.xa8_c00313{left:591.626667pt;}
.x72_c00313{left:595.626667pt;}
.x50_c00313{left:597.333333pt;}
.xfd_c00313{left:599.040000pt;}
.x7c_c00313{left:601.706667pt;}
.xcd_c00313{left:603.040000pt;}
.x33_c00313{left:604.000000pt;}
.x2c_c00313{left:604.960000pt;}
.x18_c00313{left:606.666667pt;}
.xf0_c00313{left:608.000000pt;}
.xde_c00313{left:609.333333pt;}
.xbd_c00313{left:610.293333pt;}
.xb8_c00313{left:611.626667pt;}
.x3b_c00313{left:613.333333pt;}
.x108_c00313{left:618.093333pt;}
.xa9_c00313{left:619.040000pt;}
.xe4_c00313{left:620.000000pt;}
.x49_c00313{left:624.000000pt;}
.x8e_c00313{left:625.333333pt;}
.x97_c00313{left:626.293333pt;}
.x7d_c00313{left:634.666667pt;}
.xdf_c00313{left:637.333333pt;}
.xb9_c00313{left:640.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_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_e45e427184b94dc5dff4aea4.woff2')format("woff");}.ff1_c00314{font-family:ff1_c00314;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mef_c00314{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m37_c00314{transform:matrix(0.321892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321892,0.000000,0.000000,0.250000,0,0);}
.m8c_c00314{transform:matrix(0.338574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338574,0.000000,0.000000,0.250000,0,0);}
.m0_c00314{transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);}
.mda_c00314{transform:matrix(0.344118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344118,0.000000,0.000000,0.250000,0,0);}
.m93_c00314{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m10a_c00314{transform:matrix(0.348330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348330,0.000000,0.000000,0.250000,0,0);}
.m40_c00314{transform:matrix(0.355042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355042,0.000000,0.000000,0.250000,0,0);}
.m18_c00314{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mf9_c00314{transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);}
.mc6_c00314{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m4_c00314{transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);}
.m10_c00314{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m104_c00314{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.mab_c00314{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m6f_c00314{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m112_c00314{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m3_c00314{transform:matrix(0.376891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376891,0.000000,0.000000,0.250000,0,0);}
.m106_c00314{transform:matrix(0.377087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377087,0.000000,0.000000,0.250000,0,0);}
.m56_c00314{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.mce_c00314{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m89_c00314{transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);}
.m111_c00314{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m77_c00314{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.mc7_c00314{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m6e_c00314{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m86_c00314{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m58_c00314{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m2c_c00314{transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);}
.mb1_c00314{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m90_c00314{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m10b_c00314{transform:matrix(0.397032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397032,0.000000,0.000000,0.250000,0,0);}
.m1c_c00314{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.mb_c00314{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m11c_c00314{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);}
.ma9_c00314{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m67_c00314{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m49_c00314{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.me_c00314{transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);}
.m115_c00314{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mcc_c00314{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m3a_c00314{transform:matrix(0.406772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406772,0.000000,0.000000,0.250000,0,0);}
.m11b_c00314{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m83_c00314{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m34_c00314{transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);}
.m44_c00314{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.mcb_c00314{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m5a_c00314{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m35_c00314{transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);}
.m2a_c00314{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.mb2_c00314{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m2d_c00314{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.mac_c00314{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m46_c00314{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m10c_c00314{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mf8_c00314{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m8f_c00314{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m51_c00314{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m41_c00314{transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);}
.me2_c00314{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m3b_c00314{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m70_c00314{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m4e_c00314{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m24_c00314{transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);}
.mad_c00314{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.mf1_c00314{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.me6_c00314{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.mca_c00314{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m13_c00314{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.ma7_c00314{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m92_c00314{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.mff_c00314{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.md6_c00314{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m105_c00314{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m9_c00314{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.mbf_c00314{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m21_c00314{transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);}
.m98_c00314{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m3c_c00314{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m6c_c00314{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.mcd_c00314{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m7e_c00314{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mfb_c00314{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.ma6_c00314{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.m8e_c00314{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.ma_c00314{transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);}
.mc0_c00314{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m17_c00314{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mc4_c00314{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m85_c00314{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m8d_c00314{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.m4c_c00314{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m91_c00314{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m2f_c00314{transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);}
.m100_c00314{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m107_c00314{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m9b_c00314{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.m79_c00314{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.mb4_c00314{transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);}
.m20_c00314{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m32_c00314{transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);}
.ma4_c00314{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m11a_c00314{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mbb_c00314{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mb7_c00314{transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);}
.m33_c00314{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m88_c00314{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mec_c00314{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.mf_c00314{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.ma1_c00314{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m118_c00314{transform:matrix(0.463445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463445,0.000000,0.000000,0.250000,0,0);}
.mfc_c00314{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.ma5_c00314{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.m1f_c00314{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.me8_c00314{transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);}
.m71_c00314{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m97_c00314{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.m1d_c00314{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.mf5_c00314{transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);}
.m108_c00314{transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);}
.mde_c00314{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m7_c00314{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mfa_c00314{transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);}
.m5c_c00314{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m6_c00314{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m4b_c00314{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m25_c00314{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m50_c00314{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m29_c00314{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.me3_c00314{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m7a_c00314{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m26_c00314{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mee_c00314{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m23_c00314{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m117_c00314{transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);}
.mbc_c00314{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.ma3_c00314{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.me0_c00314{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m14_c00314{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m30_c00314{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m48_c00314{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m78_c00314{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m110_c00314{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m27_c00314{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);}
.mb8_c00314{transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);}
.m120_c00314{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m9d_c00314{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m62_c00314{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.mb6_c00314{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.maa_c00314{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m4f_c00314{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mcf_c00314{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m10e_c00314{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m3f_c00314{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m1e_c00314{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m52_c00314{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mb0_c00314{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m7c_c00314{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m11_c00314{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m11f_c00314{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m68_c00314{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m94_c00314{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m43_c00314{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.me4_c00314{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.maf_c00314{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.mf7_c00314{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m74_c00314{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.mb3_c00314{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m87_c00314{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m15_c00314{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mf3_c00314{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);}
.me9_c00314{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m82_c00314{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m73_c00314{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.me7_c00314{transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);}
.m9e_c00314{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m6d_c00314{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m5e_c00314{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m2_c00314{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m42_c00314{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m5b_c00314{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.md1_c00314{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.ma0_c00314{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.md0_c00314{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.me1_c00314{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m96_c00314{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mc1_c00314{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m60_c00314{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.md_c00314{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mc9_c00314{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m6b_c00314{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m47_c00314{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.mdf_c00314{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m76_c00314{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m66_c00314{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mdc_c00314{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.mc3_c00314{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m8a_c00314{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m9a_c00314{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m113_c00314{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m5_c00314{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m28_c00314{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m55_c00314{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.mc5_c00314{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m63_c00314{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m4a_c00314{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m65_c00314{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.mc_c00314{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.md7_c00314{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m36_c00314{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m7b_c00314{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m119_c00314{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.md9_c00314{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mea_c00314{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.m7f_c00314{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m57_c00314{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m95_c00314{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.md4_c00314{transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);}
.m4d_c00314{transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);}
.m59_c00314{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m2b_c00314{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m81_c00314{transform:matrix(0.574519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574519,0.000000,0.000000,0.250000,0,0);}
.m116_c00314{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m109_c00314{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m22_c00314{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00314{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mbe_c00314{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.mae_c00314{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.m7d_c00314{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m12_c00314{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m11d_c00314{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.md8_c00314{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.me5_c00314{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m75_c00314{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m1a_c00314{transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);}
.m38_c00314{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.mf4_c00314{transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);}
.m114_c00314{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m9f_c00314{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m9c_c00314{transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);}
.md3_c00314{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m8_c00314{transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);}
.mc2_c00314{transform:matrix(0.594853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594853,0.000000,0.000000,0.250000,0,0);}
.m5d_c00314{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.m54_c00314{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mba_c00314{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m11e_c00314{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.meb_c00314{transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);}
.m1_c00314{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m16_c00314{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m45_c00314{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mf0_c00314{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.mdd_c00314{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_c00314{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.m39_c00314{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.mbd_c00314{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mf2_c00314{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m6a_c00314{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m61_c00314{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.mf6_c00314{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m31_c00314{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m19_c00314{transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);}
.m3e_c00314{transform:matrix(0.651971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651971,0.000000,0.000000,0.250000,0,0);}
.mdb_c00314{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m2e_c00314{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.md2_c00314{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m80_c00314{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m102_c00314{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.mb5_c00314{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m1b_c00314{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);}
.m103_c00314{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.ma2_c00314{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m101_c00314{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.mfd_c00314{transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);}
.md5_c00314{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.med_c00314{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);}
.mfe_c00314{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m10f_c00314{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.m99_c00314{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m64_c00314{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m8b_c00314{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m5f_c00314{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m72_c00314{transform:matrix(0.763622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.763622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.763622,0.000000,0.000000,0.250000,0,0);}
.mc8_c00314{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mb9_c00314{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m10d_c00314{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m69_c00314{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.m84_c00314{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m3d_c00314{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-9.732281px;}
.ws1_c00314{word-spacing:-3.584672px;}
.ws2_c00314{word-spacing:0.000000px;}
.fc0_c00314{color:transparent;}
.fs6_c00314{font-size:3.420000px;}
.fs8_c00314{font-size:13.620000px;}
.fs5_c00314{font-size:18.720000px;}
.fs1_c00314{font-size:20.400000px;}
.fs4_c00314{font-size:25.500000px;}
.fs2_c00314{font-size:28.920000px;}
.fs3_c00314{font-size:32.340000px;}
.fs0_c00314{font-size:35.700000px;}
.fs7_c00314{font-size:39.120000px;}
.y0_c00314{bottom:0.000000px;}
.yc5_c00314{bottom:248.970000px;}
.yc7_c00314{bottom:249.405000px;}
.yc3_c00314{bottom:250.245000px;}
.yc6_c00314{bottom:250.905000px;}
.yc4_c00314{bottom:252.405000px;}
.yc2_c00314{bottom:265.905000px;}
.ybe_c00314{bottom:267.405000px;}
.yc0_c00314{bottom:268.245000px;}
.ybd_c00314{bottom:269.745000px;}
.yc1_c00314{bottom:270.405000px;}
.ybc_c00314{bottom:270.825000px;}
.ybf_c00314{bottom:271.470000px;}
.ybb_c00314{bottom:271.905000px;}
.yba_c00314{bottom:286.905000px;}
.yb6_c00314{bottom:288.405000px;}
.yb7_c00314{bottom:289.245000px;}
.yb9_c00314{bottom:290.130000px;}
.yb8_c00314{bottom:291.405000px;}
.yb5_c00314{bottom:291.630000px;}
.yb1_c00314{bottom:308.745000px;}
.yb3_c00314{bottom:310.905000px;}
.yb4_c00314{bottom:311.130000px;}
.yb2_c00314{bottom:312.420000px;}
.yb0_c00314{bottom:345.825000px;}
.yaf_c00314{bottom:359.970000px;}
.yaa_c00314{bottom:360.825000px;}
.yad_c00314{bottom:361.470000px;}
.yae_c00314{bottom:361.905000px;}
.yac_c00314{bottom:362.130000px;}
.ya8_c00314{bottom:362.970000px;}
.yab_c00314{bottom:363.195000px;}
.ya9_c00314{bottom:364.050000px;}
.ya7_c00314{bottom:374.325000px;}
.y9f_c00314{bottom:374.550000px;}
.ya4_c00314{bottom:375.405000px;}
.ya3_c00314{bottom:375.825000px;}
.ya6_c00314{bottom:376.470000px;}
.ya5_c00314{bottom:376.695000px;}
.ya0_c00314{bottom:376.905000px;}
.ya2_c00314{bottom:377.130000px;}
.ya1_c00314{bottom:377.550000px;}
.y9d_c00314{bottom:390.405000px;}
.y9e_c00314{bottom:392.550000px;}
.y9c_c00314{bottom:392.970000px;}
.y9b_c00314{bottom:393.195000px;}
.y99_c00314{bottom:404.325000px;}
.y9a_c00314{bottom:405.405000px;}
.y97_c00314{bottom:405.825000px;}
.y93_c00314{bottom:406.050000px;}
.y98_c00314{bottom:406.470000px;}
.y95_c00314{bottom:406.905000px;}
.y94_c00314{bottom:407.550000px;}
.y96_c00314{bottom:407.970000px;}
.y92_c00314{bottom:420.405000px;}
.y90_c00314{bottom:422.130000px;}
.y91_c00314{bottom:422.550000px;}
.y8d_c00314{bottom:435.405000px;}
.y8c_c00314{bottom:435.630000px;}
.y8f_c00314{bottom:436.470000px;}
.y8e_c00314{bottom:437.550000px;}
.y8b_c00314{bottom:449.325000px;}
.y8a_c00314{bottom:452.550000px;}
.y86_c00314{bottom:463.470000px;}
.y84_c00314{bottom:464.325000px;}
.y89_c00314{bottom:464.970000px;}
.y88_c00314{bottom:465.405000px;}
.y83_c00314{bottom:465.630000px;}
.y85_c00314{bottom:466.470000px;}
.y87_c00314{bottom:467.550000px;}
.y82_c00314{bottom:487.245000px;}
.y81_c00314{bottom:489.405000px;}
.y7e_c00314{bottom:506.745000px;}
.y80_c00314{bottom:507.405000px;}
.y7f_c00314{bottom:507.630000px;}
.y7d_c00314{bottom:508.470000px;}
.y7c_c00314{bottom:508.905000px;}
.y7b_c00314{bottom:524.745000px;}
.y78_c00314{bottom:526.245000px;}
.y7a_c00314{bottom:527.325000px;}
.y79_c00314{bottom:528.405000px;}
.y76_c00314{bottom:545.745000px;}
.y75_c00314{bottom:547.905000px;}
.y77_c00314{bottom:548.130000px;}
.y74_c00314{bottom:565.050000px;}
.y71_c00314{bottom:565.245000px;}
.y6e_c00314{bottom:566.745000px;}
.y70_c00314{bottom:567.405000px;}
.y6f_c00314{bottom:567.630000px;}
.y72_c00314{bottom:568.470000px;}
.y73_c00314{bottom:568.905000px;}
.y6c_c00314{bottom:584.745000px;}
.y6d_c00314{bottom:586.470000px;}
.y6b_c00314{bottom:586.905000px;}
.y69_c00314{bottom:604.245000px;}
.y6a_c00314{bottom:606.405000px;}
.y68_c00314{bottom:607.905000px;}
.y66_c00314{bottom:622.905000px;}
.y63_c00314{bottom:624.825000px;}
.y65_c00314{bottom:625.245000px;}
.y67_c00314{bottom:626.970000px;}
.y64_c00314{bottom:627.405000px;}
.y62_c00314{bottom:644.325000px;}
.y61_c00314{bottom:644.745000px;}
.y5f_c00314{bottom:645.825000px;}
.y60_c00314{bottom:646.905000px;}
.y5e_c00314{bottom:664.245000px;}
.y5d_c00314{bottom:665.325000px;}
.y5b_c00314{bottom:665.970000px;}
.y5c_c00314{bottom:666.405000px;}
.y59_c00314{bottom:683.745000px;}
.y57_c00314{bottom:685.905000px;}
.y58_c00314{bottom:685.920000px;}
.y5a_c00314{bottom:686.130000px;}
.y54_c00314{bottom:703.245000px;}
.y55_c00314{bottom:704.745000px;}
.y56_c00314{bottom:706.905000px;}
.y51_c00314{bottom:723.180000px;}
.y52_c00314{bottom:724.245000px;}
.y4f_c00314{bottom:725.130000px;}
.y53_c00314{bottom:725.325000px;}
.y4e_c00314{bottom:726.405000px;}
.y50_c00314{bottom:726.420000px;}
.y4d_c00314{bottom:742.905000px;}
.y4a_c00314{bottom:743.745000px;}
.y4c_c00314{bottom:744.825000px;}
.y4b_c00314{bottom:745.920000px;}
.y48_c00314{bottom:762.825000px;}
.y49_c00314{bottom:763.245000px;}
.y47_c00314{bottom:765.405000px;}
.y45_c00314{bottom:781.905000px;}
.y44_c00314{bottom:782.745000px;}
.y46_c00314{bottom:783.630000px;}
.y43_c00314{bottom:784.905000px;}
.y42_c00314{bottom:801.405000px;}
.y40_c00314{bottom:802.245000px;}
.y41_c00314{bottom:803.325000px;}
.y3f_c00314{bottom:804.405000px;}
.y3e_c00314{bottom:819.405000px;}
.y3d_c00314{bottom:822.825000px;}
.y3a_c00314{bottom:823.245000px;}
.y3c_c00314{bottom:824.130000px;}
.y3b_c00314{bottom:825.405000px;}
.y38_c00314{bottom:840.825000px;}
.y37_c00314{bottom:842.745000px;}
.y39_c00314{bottom:843.405000px;}
.y34_c00314{bottom:843.630000px;}
.y35_c00314{bottom:844.470000px;}
.y36_c00314{bottom:844.905000px;}
.y2f_c00314{bottom:859.905000px;}
.y32_c00314{bottom:860.745000px;}
.y30_c00314{bottom:860.970000px;}
.y33_c00314{bottom:862.905000px;}
.y2d_c00314{bottom:863.130000px;}
.y2e_c00314{bottom:863.970000px;}
.y2c_c00314{bottom:864.405000px;}
.y31_c00314{bottom:865.470000px;}
.y28_c00314{bottom:880.470000px;}
.y2a_c00314{bottom:881.745000px;}
.y2b_c00314{bottom:882.405000px;}
.y29_c00314{bottom:883.905000px;}
.y24_c00314{bottom:900.405000px;}
.y26_c00314{bottom:900.825000px;}
.y23_c00314{bottom:901.245000px;}
.y27_c00314{bottom:901.905000px;}
.y25_c00314{bottom:903.405000px;}
.y1f_c00314{bottom:920.745000px;}
.y22_c00314{bottom:921.825000px;}
.y21_c00314{bottom:922.905000px;}
.y20_c00314{bottom:922.920000px;}
.y1c_c00314{bottom:943.470000px;}
.y1a_c00314{bottom:944.325000px;}
.y1b_c00314{bottom:945.405000px;}
.y1d_c00314{bottom:945.630000px;}
.y1e_c00314{bottom:946.470000px;}
.y19_c00314{bottom:947.550000px;}
.y17_c00314{bottom:962.970000px;}
.y18_c00314{bottom:963.825000px;}
.y15_c00314{bottom:964.905000px;}
.y16_c00314{bottom:967.050000px;}
.y12_c00314{bottom:977.970000px;}
.y14_c00314{bottom:978.825000px;}
.y13_c00314{bottom:979.050000px;}
.y11_c00314{bottom:979.905000px;}
.y10_c00314{bottom:1003.245000px;}
.yd_c00314{bottom:1004.970000px;}
.ye_c00314{bottom:1005.405000px;}
.yf_c00314{bottom:1006.470000px;}
.yc_c00314{bottom:1038.825000px;}
.y8_c00314{bottom:1039.245000px;}
.y9_c00314{bottom:1040.325000px;}
.ya_c00314{bottom:1041.405000px;}
.yb_c00314{bottom:1042.470000px;}
.y6_c00314{bottom:1057.905000px;}
.y4_c00314{bottom:1058.745000px;}
.y5_c00314{bottom:1059.825000px;}
.y3_c00314{bottom:1060.905000px;}
.y7_c00314{bottom:1061.970000px;}
.y1_c00314{bottom:1097.745000px;}
.y2_c00314{bottom:1099.050000px;}
.h7_c00314{height:4.206533px;}
.h9_c00314{height:16.752334px;}
.h6_c00314{height:23.025234px;}
.h2_c00314{height:25.091602px;}
.h5_c00314{height:31.364502px;}
.h3_c00314{height:35.571035px;}
.h4_c00314{height:39.777568px;}
.h1_c00314{height:43.910303px;}
.h8_c00314{height:48.116836px;}
.h0_c00314{height:1335.000000px;}
.w0_c00314{width:880.500000px;}
.x0_c00314{left:0.000000px;}
.x3_c00314{left:151.500000px;}
.x10_c00314{left:152.580000px;}
.x89_c00314{left:154.500000px;}
.xd8_c00314{left:165.000000px;}
.x34_c00314{left:166.500000px;}
.x40_c00314{left:168.420000px;}
.x8c_c00314{left:169.500000px;}
.x11_c00314{left:177.000000px;}
.xd4_c00314{left:180.000000px;}
.xcc_c00314{left:184.080000px;}
.xa7_c00314{left:185.580000px;}
.xe3_c00314{left:190.500000px;}
.x84_c00314{left:192.420000px;}
.x57_c00314{left:193.920000px;}
.x69_c00314{left:196.500000px;}
.x4_c00314{left:198.000000px;}
.x8a_c00314{left:202.500000px;}
.xb6_c00314{left:204.420000px;}
.x35_c00314{left:207.000000px;}
.xf2_c00314{left:210.000000px;}
.x73_c00314{left:211.500000px;}
.x20_c00314{left:214.500000px;}
.x7a_c00314{left:220.080000px;}
.xc9_c00314{left:225.420000px;}
.xab_c00314{left:226.920000px;}
.x4c_c00314{left:228.420000px;}
.x74_c00314{left:231.000000px;}
.x12_c00314{left:232.275000px;}
.x6a_c00314{left:235.920000px;}
.x8b_c00314{left:237.420000px;}
.xf9_c00314{left:238.500000px;}
.x21_c00314{left:240.000000px;}
.x7b_c00314{left:241.500000px;}
.xc4_c00314{left:243.000000px;}
.xcd_c00314{left:245.580000px;}
.xe4_c00314{left:247.500000px;}
.x36_c00314{left:248.580000px;}
.x58_c00314{left:251.145000px;}
.xca_c00314{left:252.420000px;}
.xbc_c00314{left:253.920000px;}
.x92_c00314{left:255.000000px;}
.xe9_c00314{left:256.500000px;}
.xc5_c00314{left:258.420000px;}
.x8d_c00314{left:259.500000px;}
.x96_c00314{left:261.645000px;}
.x6b_c00314{left:265.500000px;}
.x41_c00314{left:267.000000px;}
.x4d_c00314{left:269.775000px;}
.xf3_c00314{left:271.500000px;}
.x13_c00314{left:273.000000px;}
.x85_c00314{left:274.500000px;}
.xea_c00314{left:277.500000px;}
.xee_c00314{left:278.580000px;}
.x8e_c00314{left:280.500000px;}
.xa8_c00314{left:282.000000px;}
.xfa_c00314{left:283.500000px;}
.xb7_c00314{left:285.420000px;}
.xac_c00314{left:286.920000px;}
.x42_c00314{left:288.000000px;}
.x5_c00314{left:290.355000px;}
.x60_c00314{left:297.000000px;}
.x22_c00314{left:298.080000px;}
.x75_c00314{left:300.000000px;}
.xf4_c00314{left:302.580000px;}
.x1b_c00314{left:304.500000px;}
.x6_c00314{left:306.000000px;}
.x4e_c00314{left:307.275000px;}
.xde_c00314{left:309.000000px;}
.x14_c00314{left:310.080000px;}
.xb8_c00314{left:312.420000px;}
.xad_c00314{left:313.500000px;}
.x59_c00314{left:316.080000px;}
.x43_c00314{left:318.000000px;}
.xcb_c00314{left:319.500000px;}
.xce_c00314{left:322.500000px;}
.x7_c00314{left:327.420000px;}
.x23_c00314{left:328.500000px;}
.xe5_c00314{left:332.580000px;}
.xf5_c00314{left:334.500000px;}
.x97_c00314{left:337.500000px;}
.xdd_c00314{left:339.000000px;}
.xc0_c00314{left:340.275000px;}
.x44_c00314{left:342.420000px;}
.xb2_c00314{left:343.500000px;}
.x37_c00314{left:345.000000px;}
.x15_c00314{left:348.000000px;}
.xa9_c00314{left:349.500000px;}
.x7c_c00314{left:352.500000px;}
.x1c_c00314{left:354.420000px;}
.xb9_c00314{left:357.420000px;}
.xef_c00314{left:358.500000px;}
.x2f_c00314{left:359.580000px;}
.x5a_c00314{left:361.500000px;}
.xd9_c00314{left:363.000000px;}
.x6c_c00314{left:365.355000px;}
.x9c_c00314{left:367.500000px;}
.x45_c00314{left:369.000000px;}
.x38_c00314{left:370.080000px;}
.x8_c00314{left:372.420000px;}
.x24_c00314{left:373.920000px;}
.x4f_c00314{left:376.500000px;}
.xeb_c00314{left:378.420000px;}
.x30_c00314{left:379.920000px;}
.xc1_c00314{left:381.000000px;}
.x61_c00314{left:382.080000px;}
.x8f_c00314{left:385.080000px;}
.xda_c00314{left:388.920000px;}
.xf0_c00314{left:391.500000px;}
.xdf_c00314{left:393.000000px;}
.x25_c00314{left:397.500000px;}
.x31_c00314{left:399.000000px;}
.x9d_c00314{left:400.080000px;}
.x2_c00314{left:402.000000px;}
.x46_c00314{left:403.920000px;}
.xae_c00314{left:405.420000px;}
.xba_c00314{left:406.500000px;}
.x1d_c00314{left:408.000000px;}
.x9_c00314{left:409.500000px;}
.x50_c00314{left:411.420000px;}
.x7d_c00314{left:413.580000px;}
.x98_c00314{left:415.920000px;}
.x90_c00314{left:420.420000px;}
.xd5_c00314{left:421.500000px;}
.x16_c00314{left:424.500000px;}
.x62_c00314{left:427.920000px;}
.xf1_c00314{left:429.000000px;}
.xaf_c00314{left:430.500000px;}
.xbd_c00314{left:433.500000px;}
.x26_c00314{left:435.000000px;}
.x32_c00314{left:438.000000px;}
.x93_c00314{left:439.080000px;}
.x6d_c00314{left:441.000000px;}
.x5b_c00314{left:442.080000px;}
.xe6_c00314{left:443.355000px;}
.x39_c00314{left:444.420000px;}
.x9e_c00314{left:445.920000px;}
.x7e_c00314{left:447.000000px;}
.x76_c00314{left:450.000000px;}
.xbe_c00314{left:453.000000px;}
.x3a_c00314{left:455.580000px;}
.xa_c00314{left:457.080000px;}
.xcf_c00314{left:459.000000px;}
.x17_c00314{left:460.920000px;}
.x1e_c00314{left:463.080000px;}
.xf6_c00314{left:465.420000px;}
.x51_c00314{left:466.500000px;}
.x27_c00314{left:467.580000px;}
.x47_c00314{left:471.420000px;}
.xec_c00314{left:475.080000px;}
.x86_c00314{left:478.080000px;}
.xc2_c00314{left:481.080000px;}
.x33_c00314{left:482.580000px;}
.x18_c00314{left:484.500000px;}
.x94_c00314{left:487.500000px;}
.xb_c00314{left:490.080000px;}
.xb0_c00314{left:491.580000px;}
.x28_c00314{left:496.500000px;}
.x48_c00314{left:499.500000px;}
.xfb_c00314{left:502.500000px;}
.x91_c00314{left:505.275000px;}
.x63_c00314{left:508.080000px;}
.x3b_c00314{left:510.000000px;}
.x19_c00314{left:511.500000px;}
.xd6_c00314{left:513.000000px;}
.xe0_c00314{left:516.000000px;}
.xdb_c00314{left:518.580000px;}
.x77_c00314{left:520.500000px;}
.xd0_c00314{left:521.580000px;}
.xa2_c00314{left:525.420000px;}
.x6e_c00314{left:529.080000px;}
.x29_c00314{left:531.000000px;}
.x7f_c00314{left:532.275000px;}
.xc3_c00314{left:533.580000px;}
.xbb_c00314{left:535.080000px;}
.x64_c00314{left:537.000000px;}
.xb3_c00314{left:538.080000px;}
.x52_c00314{left:540.000000px;}
.x1f_c00314{left:541.275000px;}
.xed_c00314{left:543.420000px;}
.x3c_c00314{left:547.080000px;}
.x99_c00314{left:548.775000px;}
.xa3_c00314{left:553.500000px;}
.x65_c00314{left:554.580000px;}
.x9f_c00314{left:556.500000px;}
.x5c_c00314{left:557.775000px;}
.x2a_c00314{left:560.580000px;}
.x53_c00314{left:562.080000px;}
.x49_c00314{left:564.000000px;}
.x80_c00314{left:565.080000px;}
.x1a_c00314{left:567.000000px;}
.xc_c00314{left:570.855000px;}
.x3d_c00314{left:574.500000px;}
.x6f_c00314{left:576.000000px;}
.xd1_c00314{left:577.920000px;}
.xaa_c00314{left:579.000000px;}
.x2b_c00314{left:580.080000px;}
.x4a_c00314{left:581.355000px;}
.xfc_c00314{left:583.500000px;}
.xb4_c00314{left:585.000000px;}
.xc6_c00314{left:586.500000px;}
.xb1_c00314{left:589.500000px;}
.x9a_c00314{left:592.500000px;}
.x5d_c00314{left:594.000000px;}
.x81_c00314{left:595.080000px;}
.x2c_c00314{left:598.500000px;}
.x87_c00314{left:601.500000px;}
.xbf_c00314{left:604.500000px;}
.xc7_c00314{left:607.080000px;}
.xd_c00314{left:608.580000px;}
.x70_c00314{left:610.500000px;}
.xdc_c00314{left:612.000000px;}
.xd7_c00314{left:613.500000px;}
.x66_c00314{left:615.000000px;}
.xfd_c00314{left:616.920000px;}
.x78_c00314{left:618.000000px;}
.xa4_c00314{left:619.080000px;}
.x3e_c00314{left:621.000000px;}
.x54_c00314{left:625.500000px;}
.x5e_c00314{left:628.500000px;}
.xe7_c00314{left:630.000000px;}
.x95_c00314{left:632.580000px;}
.xa0_c00314{left:634.080000px;}
.x2d_c00314{left:636.420000px;}
.xe_c00314{left:637.500000px;}
.x55_c00314{left:640.500000px;}
.x4b_c00314{left:641.580000px;}
.x9b_c00314{left:645.420000px;}
.xb5_c00314{left:647.145000px;}
.xf7_c00314{left:648.420000px;}
.xa5_c00314{left:652.920000px;}
.x82_c00314{left:655.080000px;}
.x88_c00314{left:657.000000px;}
.x3f_c00314{left:659.580000px;}
.xd2_c00314{left:663.420000px;}
.xe8_c00314{left:669.000000px;}
.x71_c00314{left:670.500000px;}
.xe1_c00314{left:672.000000px;}
.xf8_c00314{left:673.080000px;}
.x2e_c00314{left:676.080000px;}
.xa6_c00314{left:681.420000px;}
.xc8_c00314{left:684.000000px;}
.xf_c00314{left:685.500000px;}
.x67_c00314{left:687.000000px;}
.x56_c00314{left:691.080000px;}
.xa1_c00314{left:697.920000px;}
.x79_c00314{left:700.500000px;}
.x83_c00314{left:702.000000px;}
.x72_c00314{left:703.920000px;}
.x1_c00314{left:705.000000px;}
.xd3_c00314{left:706.500000px;}
.xe2_c00314{left:709.080000px;}
.x5f_c00314{left:711.000000px;}
.x68_c00314{left:718.500000px;}
@media print{
.v0_c00314{vertical-align:0.000000pt;}
.ls0_c00314{letter-spacing:0.000000pt;}
.ws0_c00314{word-spacing:-8.650916pt;}
.ws1_c00314{word-spacing:-3.186375pt;}
.ws2_c00314{word-spacing:0.000000pt;}
.fs6_c00314{font-size:3.040000pt;}
.fs8_c00314{font-size:12.106667pt;}
.fs5_c00314{font-size:16.640000pt;}
.fs1_c00314{font-size:18.133333pt;}
.fs4_c00314{font-size:22.666667pt;}
.fs2_c00314{font-size:25.706667pt;}
.fs3_c00314{font-size:28.746667pt;}
.fs0_c00314{font-size:31.733333pt;}
.fs7_c00314{font-size:34.773333pt;}
.y0_c00314{bottom:0.000000pt;}
.yc5_c00314{bottom:221.306667pt;}
.yc7_c00314{bottom:221.693333pt;}
.yc3_c00314{bottom:222.440000pt;}
.yc6_c00314{bottom:223.026667pt;}
.yc4_c00314{bottom:224.360000pt;}
.yc2_c00314{bottom:236.360000pt;}
.ybe_c00314{bottom:237.693333pt;}
.yc0_c00314{bottom:238.440000pt;}
.ybd_c00314{bottom:239.773333pt;}
.yc1_c00314{bottom:240.360000pt;}
.ybc_c00314{bottom:240.733333pt;}
.ybf_c00314{bottom:241.306667pt;}
.ybb_c00314{bottom:241.693333pt;}
.yba_c00314{bottom:255.026667pt;}
.yb6_c00314{bottom:256.360000pt;}
.yb7_c00314{bottom:257.106667pt;}
.yb9_c00314{bottom:257.893333pt;}
.yb8_c00314{bottom:259.026667pt;}
.yb5_c00314{bottom:259.226667pt;}
.yb1_c00314{bottom:274.440000pt;}
.yb3_c00314{bottom:276.360000pt;}
.yb4_c00314{bottom:276.560000pt;}
.yb2_c00314{bottom:277.706667pt;}
.yb0_c00314{bottom:307.400000pt;}
.yaf_c00314{bottom:319.973333pt;}
.yaa_c00314{bottom:320.733333pt;}
.yad_c00314{bottom:321.306667pt;}
.yae_c00314{bottom:321.693333pt;}
.yac_c00314{bottom:321.893333pt;}
.ya8_c00314{bottom:322.640000pt;}
.yab_c00314{bottom:322.840000pt;}
.ya9_c00314{bottom:323.600000pt;}
.ya7_c00314{bottom:332.733333pt;}
.y9f_c00314{bottom:332.933333pt;}
.ya4_c00314{bottom:333.693333pt;}
.ya3_c00314{bottom:334.066667pt;}
.ya6_c00314{bottom:334.640000pt;}
.ya5_c00314{bottom:334.840000pt;}
.ya0_c00314{bottom:335.026667pt;}
.ya2_c00314{bottom:335.226667pt;}
.ya1_c00314{bottom:335.600000pt;}
.y9d_c00314{bottom:347.026667pt;}
.y9e_c00314{bottom:348.933333pt;}
.y9c_c00314{bottom:349.306667pt;}
.y9b_c00314{bottom:349.506667pt;}
.y99_c00314{bottom:359.400000pt;}
.y9a_c00314{bottom:360.360000pt;}
.y97_c00314{bottom:360.733333pt;}
.y93_c00314{bottom:360.933333pt;}
.y98_c00314{bottom:361.306667pt;}
.y95_c00314{bottom:361.693333pt;}
.y94_c00314{bottom:362.266667pt;}
.y96_c00314{bottom:362.640000pt;}
.y92_c00314{bottom:373.693333pt;}
.y90_c00314{bottom:375.226667pt;}
.y91_c00314{bottom:375.600000pt;}
.y8d_c00314{bottom:387.026667pt;}
.y8c_c00314{bottom:387.226667pt;}
.y8f_c00314{bottom:387.973333pt;}
.y8e_c00314{bottom:388.933333pt;}
.y8b_c00314{bottom:399.400000pt;}
.y8a_c00314{bottom:402.266667pt;}
.y86_c00314{bottom:411.973333pt;}
.y84_c00314{bottom:412.733333pt;}
.y89_c00314{bottom:413.306667pt;}
.y88_c00314{bottom:413.693333pt;}
.y83_c00314{bottom:413.893333pt;}
.y85_c00314{bottom:414.640000pt;}
.y87_c00314{bottom:415.600000pt;}
.y82_c00314{bottom:433.106667pt;}
.y81_c00314{bottom:435.026667pt;}
.y7e_c00314{bottom:450.440000pt;}
.y80_c00314{bottom:451.026667pt;}
.y7f_c00314{bottom:451.226667pt;}
.y7d_c00314{bottom:451.973333pt;}
.y7c_c00314{bottom:452.360000pt;}
.y7b_c00314{bottom:466.440000pt;}
.y78_c00314{bottom:467.773333pt;}
.y7a_c00314{bottom:468.733333pt;}
.y79_c00314{bottom:469.693333pt;}
.y76_c00314{bottom:485.106667pt;}
.y75_c00314{bottom:487.026667pt;}
.y77_c00314{bottom:487.226667pt;}
.y74_c00314{bottom:502.266667pt;}
.y71_c00314{bottom:502.440000pt;}
.y6e_c00314{bottom:503.773333pt;}
.y70_c00314{bottom:504.360000pt;}
.y6f_c00314{bottom:504.560000pt;}
.y72_c00314{bottom:505.306667pt;}
.y73_c00314{bottom:505.693333pt;}
.y6c_c00314{bottom:519.773333pt;}
.y6d_c00314{bottom:521.306667pt;}
.y6b_c00314{bottom:521.693333pt;}
.y69_c00314{bottom:537.106667pt;}
.y6a_c00314{bottom:539.026667pt;}
.y68_c00314{bottom:540.360000pt;}
.y66_c00314{bottom:553.693333pt;}
.y63_c00314{bottom:555.400000pt;}
.y65_c00314{bottom:555.773333pt;}
.y67_c00314{bottom:557.306667pt;}
.y64_c00314{bottom:557.693333pt;}
.y62_c00314{bottom:572.733333pt;}
.y61_c00314{bottom:573.106667pt;}
.y5f_c00314{bottom:574.066667pt;}
.y60_c00314{bottom:575.026667pt;}
.y5e_c00314{bottom:590.440000pt;}
.y5d_c00314{bottom:591.400000pt;}
.y5b_c00314{bottom:591.973333pt;}
.y5c_c00314{bottom:592.360000pt;}
.y59_c00314{bottom:607.773333pt;}
.y57_c00314{bottom:609.693333pt;}
.y58_c00314{bottom:609.706667pt;}
.y5a_c00314{bottom:609.893333pt;}
.y54_c00314{bottom:625.106667pt;}
.y55_c00314{bottom:626.440000pt;}
.y56_c00314{bottom:628.360000pt;}
.y51_c00314{bottom:642.826667pt;}
.y52_c00314{bottom:643.773333pt;}
.y4f_c00314{bottom:644.560000pt;}
.y53_c00314{bottom:644.733333pt;}
.y4e_c00314{bottom:645.693333pt;}
.y50_c00314{bottom:645.706667pt;}
.y4d_c00314{bottom:660.360000pt;}
.y4a_c00314{bottom:661.106667pt;}
.y4c_c00314{bottom:662.066667pt;}
.y4b_c00314{bottom:663.040000pt;}
.y48_c00314{bottom:678.066667pt;}
.y49_c00314{bottom:678.440000pt;}
.y47_c00314{bottom:680.360000pt;}
.y45_c00314{bottom:695.026667pt;}
.y44_c00314{bottom:695.773333pt;}
.y46_c00314{bottom:696.560000pt;}
.y43_c00314{bottom:697.693333pt;}
.y42_c00314{bottom:712.360000pt;}
.y40_c00314{bottom:713.106667pt;}
.y41_c00314{bottom:714.066667pt;}
.y3f_c00314{bottom:715.026667pt;}
.y3e_c00314{bottom:728.360000pt;}
.y3d_c00314{bottom:731.400000pt;}
.y3a_c00314{bottom:731.773333pt;}
.y3c_c00314{bottom:732.560000pt;}
.y3b_c00314{bottom:733.693333pt;}
.y38_c00314{bottom:747.400000pt;}
.y37_c00314{bottom:749.106667pt;}
.y39_c00314{bottom:749.693333pt;}
.y34_c00314{bottom:749.893333pt;}
.y35_c00314{bottom:750.640000pt;}
.y36_c00314{bottom:751.026667pt;}
.y2f_c00314{bottom:764.360000pt;}
.y32_c00314{bottom:765.106667pt;}
.y30_c00314{bottom:765.306667pt;}
.y33_c00314{bottom:767.026667pt;}
.y2d_c00314{bottom:767.226667pt;}
.y2e_c00314{bottom:767.973333pt;}
.y2c_c00314{bottom:768.360000pt;}
.y31_c00314{bottom:769.306667pt;}
.y28_c00314{bottom:782.640000pt;}
.y2a_c00314{bottom:783.773333pt;}
.y2b_c00314{bottom:784.360000pt;}
.y29_c00314{bottom:785.693333pt;}
.y24_c00314{bottom:800.360000pt;}
.y26_c00314{bottom:800.733333pt;}
.y23_c00314{bottom:801.106667pt;}
.y27_c00314{bottom:801.693333pt;}
.y25_c00314{bottom:803.026667pt;}
.y1f_c00314{bottom:818.440000pt;}
.y22_c00314{bottom:819.400000pt;}
.y21_c00314{bottom:820.360000pt;}
.y20_c00314{bottom:820.373333pt;}
.y1c_c00314{bottom:838.640000pt;}
.y1a_c00314{bottom:839.400000pt;}
.y1b_c00314{bottom:840.360000pt;}
.y1d_c00314{bottom:840.560000pt;}
.y1e_c00314{bottom:841.306667pt;}
.y19_c00314{bottom:842.266667pt;}
.y17_c00314{bottom:855.973333pt;}
.y18_c00314{bottom:856.733333pt;}
.y15_c00314{bottom:857.693333pt;}
.y16_c00314{bottom:859.600000pt;}
.y12_c00314{bottom:869.306667pt;}
.y14_c00314{bottom:870.066667pt;}
.y13_c00314{bottom:870.266667pt;}
.y11_c00314{bottom:871.026667pt;}
.y10_c00314{bottom:891.773333pt;}
.yd_c00314{bottom:893.306667pt;}
.ye_c00314{bottom:893.693333pt;}
.yf_c00314{bottom:894.640000pt;}
.yc_c00314{bottom:923.400000pt;}
.y8_c00314{bottom:923.773333pt;}
.y9_c00314{bottom:924.733333pt;}
.ya_c00314{bottom:925.693333pt;}
.yb_c00314{bottom:926.640000pt;}
.y6_c00314{bottom:940.360000pt;}
.y4_c00314{bottom:941.106667pt;}
.y5_c00314{bottom:942.066667pt;}
.y3_c00314{bottom:943.026667pt;}
.y7_c00314{bottom:943.973333pt;}
.y1_c00314{bottom:975.773333pt;}
.y2_c00314{bottom:976.933333pt;}
.h7_c00314{height:3.739141pt;}
.h9_c00314{height:14.890964pt;}
.h6_c00314{height:20.466875pt;}
.h2_c00314{height:22.303646pt;}
.h5_c00314{height:27.879557pt;}
.h3_c00314{height:31.618698pt;}
.h4_c00314{height:35.357839pt;}
.h1_c00314{height:39.031380pt;}
.h8_c00314{height:42.770521pt;}
.h0_c00314{height:1186.666667pt;}
.w0_c00314{width:782.666667pt;}
.x0_c00314{left:0.000000pt;}
.x3_c00314{left:134.666667pt;}
.x10_c00314{left:135.626667pt;}
.x89_c00314{left:137.333333pt;}
.xd8_c00314{left:146.666667pt;}
.x34_c00314{left:148.000000pt;}
.x40_c00314{left:149.706667pt;}
.x8c_c00314{left:150.666667pt;}
.x11_c00314{left:157.333333pt;}
.xd4_c00314{left:160.000000pt;}
.xcc_c00314{left:163.626667pt;}
.xa7_c00314{left:164.960000pt;}
.xe3_c00314{left:169.333333pt;}
.x84_c00314{left:171.040000pt;}
.x57_c00314{left:172.373333pt;}
.x69_c00314{left:174.666667pt;}
.x4_c00314{left:176.000000pt;}
.x8a_c00314{left:180.000000pt;}
.xb6_c00314{left:181.706667pt;}
.x35_c00314{left:184.000000pt;}
.xf2_c00314{left:186.666667pt;}
.x73_c00314{left:188.000000pt;}
.x20_c00314{left:190.666667pt;}
.x7a_c00314{left:195.626667pt;}
.xc9_c00314{left:200.373333pt;}
.xab_c00314{left:201.706667pt;}
.x4c_c00314{left:203.040000pt;}
.x74_c00314{left:205.333333pt;}
.x12_c00314{left:206.466667pt;}
.x6a_c00314{left:209.706667pt;}
.x8b_c00314{left:211.040000pt;}
.xf9_c00314{left:212.000000pt;}
.x21_c00314{left:213.333333pt;}
.x7b_c00314{left:214.666667pt;}
.xc4_c00314{left:216.000000pt;}
.xcd_c00314{left:218.293333pt;}
.xe4_c00314{left:220.000000pt;}
.x36_c00314{left:220.960000pt;}
.x58_c00314{left:223.240000pt;}
.xca_c00314{left:224.373333pt;}
.xbc_c00314{left:225.706667pt;}
.x92_c00314{left:226.666667pt;}
.xe9_c00314{left:228.000000pt;}
.xc5_c00314{left:229.706667pt;}
.x8d_c00314{left:230.666667pt;}
.x96_c00314{left:232.573333pt;}
.x6b_c00314{left:236.000000pt;}
.x41_c00314{left:237.333333pt;}
.x4d_c00314{left:239.800000pt;}
.xf3_c00314{left:241.333333pt;}
.x13_c00314{left:242.666667pt;}
.x85_c00314{left:244.000000pt;}
.xea_c00314{left:246.666667pt;}
.xee_c00314{left:247.626667pt;}
.x8e_c00314{left:249.333333pt;}
.xa8_c00314{left:250.666667pt;}
.xfa_c00314{left:252.000000pt;}
.xb7_c00314{left:253.706667pt;}
.xac_c00314{left:255.040000pt;}
.x42_c00314{left:256.000000pt;}
.x5_c00314{left:258.093333pt;}
.x60_c00314{left:264.000000pt;}
.x22_c00314{left:264.960000pt;}
.x75_c00314{left:266.666667pt;}
.xf4_c00314{left:268.960000pt;}
.x1b_c00314{left:270.666667pt;}
.x6_c00314{left:272.000000pt;}
.x4e_c00314{left:273.133333pt;}
.xde_c00314{left:274.666667pt;}
.x14_c00314{left:275.626667pt;}
.xb8_c00314{left:277.706667pt;}
.xad_c00314{left:278.666667pt;}
.x59_c00314{left:280.960000pt;}
.x43_c00314{left:282.666667pt;}
.xcb_c00314{left:284.000000pt;}
.xce_c00314{left:286.666667pt;}
.x7_c00314{left:291.040000pt;}
.x23_c00314{left:292.000000pt;}
.xe5_c00314{left:295.626667pt;}
.xf5_c00314{left:297.333333pt;}
.x97_c00314{left:300.000000pt;}
.xdd_c00314{left:301.333333pt;}
.xc0_c00314{left:302.466667pt;}
.x44_c00314{left:304.373333pt;}
.xb2_c00314{left:305.333333pt;}
.x37_c00314{left:306.666667pt;}
.x15_c00314{left:309.333333pt;}
.xa9_c00314{left:310.666667pt;}
.x7c_c00314{left:313.333333pt;}
.x1c_c00314{left:315.040000pt;}
.xb9_c00314{left:317.706667pt;}
.xef_c00314{left:318.666667pt;}
.x2f_c00314{left:319.626667pt;}
.x5a_c00314{left:321.333333pt;}
.xd9_c00314{left:322.666667pt;}
.x6c_c00314{left:324.760000pt;}
.x9c_c00314{left:326.666667pt;}
.x45_c00314{left:328.000000pt;}
.x38_c00314{left:328.960000pt;}
.x8_c00314{left:331.040000pt;}
.x24_c00314{left:332.373333pt;}
.x4f_c00314{left:334.666667pt;}
.xeb_c00314{left:336.373333pt;}
.x30_c00314{left:337.706667pt;}
.xc1_c00314{left:338.666667pt;}
.x61_c00314{left:339.626667pt;}
.x8f_c00314{left:342.293333pt;}
.xda_c00314{left:345.706667pt;}
.xf0_c00314{left:348.000000pt;}
.xdf_c00314{left:349.333333pt;}
.x25_c00314{left:353.333333pt;}
.x31_c00314{left:354.666667pt;}
.x9d_c00314{left:355.626667pt;}
.x2_c00314{left:357.333333pt;}
.x46_c00314{left:359.040000pt;}
.xae_c00314{left:360.373333pt;}
.xba_c00314{left:361.333333pt;}
.x1d_c00314{left:362.666667pt;}
.x9_c00314{left:364.000000pt;}
.x50_c00314{left:365.706667pt;}
.x7d_c00314{left:367.626667pt;}
.x98_c00314{left:369.706667pt;}
.x90_c00314{left:373.706667pt;}
.xd5_c00314{left:374.666667pt;}
.x16_c00314{left:377.333333pt;}
.x62_c00314{left:380.373333pt;}
.xf1_c00314{left:381.333333pt;}
.xaf_c00314{left:382.666667pt;}
.xbd_c00314{left:385.333333pt;}
.x26_c00314{left:386.666667pt;}
.x32_c00314{left:389.333333pt;}
.x93_c00314{left:390.293333pt;}
.x6d_c00314{left:392.000000pt;}
.x5b_c00314{left:392.960000pt;}
.xe6_c00314{left:394.093333pt;}
.x39_c00314{left:395.040000pt;}
.x9e_c00314{left:396.373333pt;}
.x7e_c00314{left:397.333333pt;}
.x76_c00314{left:400.000000pt;}
.xbe_c00314{left:402.666667pt;}
.x3a_c00314{left:404.960000pt;}
.xa_c00314{left:406.293333pt;}
.xcf_c00314{left:408.000000pt;}
.x17_c00314{left:409.706667pt;}
.x1e_c00314{left:411.626667pt;}
.xf6_c00314{left:413.706667pt;}
.x51_c00314{left:414.666667pt;}
.x27_c00314{left:415.626667pt;}
.x47_c00314{left:419.040000pt;}
.xec_c00314{left:422.293333pt;}
.x86_c00314{left:424.960000pt;}
.xc2_c00314{left:427.626667pt;}
.x33_c00314{left:428.960000pt;}
.x18_c00314{left:430.666667pt;}
.x94_c00314{left:433.333333pt;}
.xb_c00314{left:435.626667pt;}
.xb0_c00314{left:436.960000pt;}
.x28_c00314{left:441.333333pt;}
.x48_c00314{left:444.000000pt;}
.xfb_c00314{left:446.666667pt;}
.x91_c00314{left:449.133333pt;}
.x63_c00314{left:451.626667pt;}
.x3b_c00314{left:453.333333pt;}
.x19_c00314{left:454.666667pt;}
.xd6_c00314{left:456.000000pt;}
.xe0_c00314{left:458.666667pt;}
.xdb_c00314{left:460.960000pt;}
.x77_c00314{left:462.666667pt;}
.xd0_c00314{left:463.626667pt;}
.xa2_c00314{left:467.040000pt;}
.x6e_c00314{left:470.293333pt;}
.x29_c00314{left:472.000000pt;}
.x7f_c00314{left:473.133333pt;}
.xc3_c00314{left:474.293333pt;}
.xbb_c00314{left:475.626667pt;}
.x64_c00314{left:477.333333pt;}
.xb3_c00314{left:478.293333pt;}
.x52_c00314{left:480.000000pt;}
.x1f_c00314{left:481.133333pt;}
.xed_c00314{left:483.040000pt;}
.x3c_c00314{left:486.293333pt;}
.x99_c00314{left:487.800000pt;}
.xa3_c00314{left:492.000000pt;}
.x65_c00314{left:492.960000pt;}
.x9f_c00314{left:494.666667pt;}
.x5c_c00314{left:495.800000pt;}
.x2a_c00314{left:498.293333pt;}
.x53_c00314{left:499.626667pt;}
.x49_c00314{left:501.333333pt;}
.x80_c00314{left:502.293333pt;}
.x1a_c00314{left:504.000000pt;}
.xc_c00314{left:507.426667pt;}
.x3d_c00314{left:510.666667pt;}
.x6f_c00314{left:512.000000pt;}
.xd1_c00314{left:513.706667pt;}
.xaa_c00314{left:514.666667pt;}
.x2b_c00314{left:515.626667pt;}
.x4a_c00314{left:516.760000pt;}
.xfc_c00314{left:518.666667pt;}
.xb4_c00314{left:520.000000pt;}
.xc6_c00314{left:521.333333pt;}
.xb1_c00314{left:524.000000pt;}
.x9a_c00314{left:526.666667pt;}
.x5d_c00314{left:528.000000pt;}
.x81_c00314{left:528.960000pt;}
.x2c_c00314{left:532.000000pt;}
.x87_c00314{left:534.666667pt;}
.xbf_c00314{left:537.333333pt;}
.xc7_c00314{left:539.626667pt;}
.xd_c00314{left:540.960000pt;}
.x70_c00314{left:542.666667pt;}
.xdc_c00314{left:544.000000pt;}
.xd7_c00314{left:545.333333pt;}
.x66_c00314{left:546.666667pt;}
.xfd_c00314{left:548.373333pt;}
.x78_c00314{left:549.333333pt;}
.xa4_c00314{left:550.293333pt;}
.x3e_c00314{left:552.000000pt;}
.x54_c00314{left:556.000000pt;}
.x5e_c00314{left:558.666667pt;}
.xe7_c00314{left:560.000000pt;}
.x95_c00314{left:562.293333pt;}
.xa0_c00314{left:563.626667pt;}
.x2d_c00314{left:565.706667pt;}
.xe_c00314{left:566.666667pt;}
.x55_c00314{left:569.333333pt;}
.x4b_c00314{left:570.293333pt;}
.x9b_c00314{left:573.706667pt;}
.xb5_c00314{left:575.240000pt;}
.xf7_c00314{left:576.373333pt;}
.xa5_c00314{left:580.373333pt;}
.x82_c00314{left:582.293333pt;}
.x88_c00314{left:584.000000pt;}
.x3f_c00314{left:586.293333pt;}
.xd2_c00314{left:589.706667pt;}
.xe8_c00314{left:594.666667pt;}
.x71_c00314{left:596.000000pt;}
.xe1_c00314{left:597.333333pt;}
.xf8_c00314{left:598.293333pt;}
.x2e_c00314{left:600.960000pt;}
.xa6_c00314{left:605.706667pt;}
.xc8_c00314{left:608.000000pt;}
.xf_c00314{left:609.333333pt;}
.x67_c00314{left:610.666667pt;}
.x56_c00314{left:614.293333pt;}
.xa1_c00314{left:620.373333pt;}
.x79_c00314{left:622.666667pt;}
.x83_c00314{left:624.000000pt;}
.x72_c00314{left:625.706667pt;}
.x1_c00314{left:626.666667pt;}
.xd3_c00314{left:628.000000pt;}
.xe2_c00314{left:630.293333pt;}
.x5f_c00314{left:632.000000pt;}
.x68_c00314{left:638.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_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_41bcb3345d3e2eb3ff281281.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:1.688965;font-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_c00315{transform:matrix(0.347866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347866,0.000000,0.000000,0.250000,0,0);}
.m8_c00315{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m69_c00315{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m25_c00315{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m7f_c00315{transform:matrix(0.376160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376160,0.000000,0.000000,0.250000,0,0);}
.m67_c00315{transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);}
.m6d_c00315{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m53_c00315{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.mc_c00315{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);}
.m30_c00315{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m60_c00315{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m4b_c00315{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m26_c00315{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m4f_c00315{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.md_c00315{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m43_c00315{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m82_c00315{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m32_c00315{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m4e_c00315{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m62_c00315{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m7d_c00315{transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);}
.m4_c00315{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m47_c00315{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m3_c00315{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m4c_c00315{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m28_c00315{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m49_c00315{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.m4a_c00315{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m3f_c00315{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m46_c00315{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m76_c00315{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m38_c00315{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m2e_c00315{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m7b_c00315{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m17_c00315{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m2a_c00315{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m11_c00315{transform:matrix(0.457563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457563,0.000000,0.000000,0.250000,0,0);}
.m52_c00315{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.m3c_c00315{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m31_c00315{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m5d_c00315{transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);}
.m58_c00315{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m1d_c00315{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m1a_c00315{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m83_c00315{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m75_c00315{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m12_c00315{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mf_c00315{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m0_c00315{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m6_c00315{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);}
.m44_c00315{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m5e_c00315{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m4d_c00315{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mb_c00315{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m59_c00315{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m54_c00315{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m7e_c00315{transform:matrix(0.521324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521324,0.000000,0.000000,0.250000,0,0);}
.m5_c00315{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m71_c00315{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);}
.m3a_c00315{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m39_c00315{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m22_c00315{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m6c_c00315{transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);}
.m3e_c00315{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m7_c00315{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m5c_c00315{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m68_c00315{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m3b_c00315{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m55_c00315{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m36_c00315{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m56_c00315{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m16_c00315{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m5b_c00315{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m41_c00315{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.ma_c00315{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m27_c00315{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m37_c00315{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m18_c00315{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.me_c00315{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m29_c00315{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m9_c00315{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m61_c00315{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m35_c00315{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m1c_c00315{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m14_c00315{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m72_c00315{transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);}
.m15_c00315{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m1f_c00315{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m21_c00315{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m10_c00315{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m79_c00315{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m33_c00315{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m40_c00315{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m51_c00315{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m6b_c00315{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m3d_c00315{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m6f_c00315{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);}
.m6e_c00315{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m34_c00315{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m65_c00315{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m78_c00315{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m81_c00315{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m2b_c00315{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m77_c00315{transform:matrix(0.598529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598529,0.000000,0.000000,0.250000,0,0);}
.m2d_c00315{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m1_c00315{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m20_c00315{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m80_c00315{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);}
.m2_c00315{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m50_c00315{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m5f_c00315{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m1e_c00315{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m23_c00315{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m7c_c00315{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m1b_c00315{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m74_c00315{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m70_c00315{transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);}
.m42_c00315{transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);}
.m24_c00315{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m57_c00315{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m73_c00315{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);}
.m48_c00315{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m19_c00315{transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);}
.m64_c00315{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m7a_c00315{transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);}
.m13_c00315{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m66_c00315{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m2c_c00315{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m2f_c00315{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m45_c00315{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m5a_c00315{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m63_c00315{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,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;}
.fs5_c00315{font-size:18.720000px;}
.fs1_c00315{font-size:20.400000px;}
.fs2_c00315{font-size:25.500000px;}
.fs0_c00315{font-size:28.920000px;}
.fs4_c00315{font-size:32.340000px;}
.fs3_c00315{font-size:35.700000px;}
.y0_c00315{bottom:0.000000px;}
.y3f_c00315{bottom:249.405000px;}
.y40_c00315{bottom:251.745000px;}
.y3b_c00315{bottom:252.405000px;}
.y3d_c00315{bottom:252.630000px;}
.y3c_c00315{bottom:253.470000px;}
.y3e_c00315{bottom:253.905000px;}
.y38_c00315{bottom:271.245000px;}
.y37_c00315{bottom:272.130000px;}
.y39_c00315{bottom:273.405000px;}
.y3a_c00315{bottom:274.470000px;}
.y36_c00315{bottom:289.470000px;}
.y34_c00315{bottom:290.325000px;}
.y30_c00315{bottom:290.745000px;}
.y32_c00315{bottom:291.630000px;}
.y33_c00315{bottom:292.050000px;}
.y31_c00315{bottom:292.905000px;}
.y35_c00315{bottom:293.130000px;}
.y2b_c00315{bottom:307.905000px;}
.y2a_c00315{bottom:310.245000px;}
.y2e_c00315{bottom:311.745000px;}
.y2c_c00315{bottom:311.970000px;}
.y2d_c00315{bottom:312.405000px;}
.y2f_c00315{bottom:313.905000px;}
.y23_c00315{bottom:329.745000px;}
.y28_c00315{bottom:330.825000px;}
.y27_c00315{bottom:331.245000px;}
.y24_c00315{bottom:331.905000px;}
.y26_c00315{bottom:332.130000px;}
.y29_c00315{bottom:332.970000px;}
.y25_c00315{bottom:333.405000px;}
.y1e_c00315{bottom:349.245000px;}
.y20_c00315{bottom:350.325000px;}
.y21_c00315{bottom:350.745000px;}
.y1d_c00315{bottom:351.405000px;}
.y22_c00315{bottom:351.630000px;}
.y1f_c00315{bottom:352.905000px;}
.y4c_c00315{bottom:387.825000px;}
.y4d_c00315{bottom:389.550000px;}
.y4b_c00315{bottom:391.050000px;}
.y47_c00315{bottom:401.550000px;}
.y4a_c00315{bottom:402.405000px;}
.y48_c00315{bottom:403.470000px;}
.y49_c00315{bottom:403.905000px;}
.y46_c00315{bottom:404.550000px;}
.y43_c00315{bottom:416.325000px;}
.y4f_c00315{bottom:416.550000px;}
.y4e_c00315{bottom:417.405000px;}
.y41_c00315{bottom:417.825000px;}
.y44_c00315{bottom:418.470000px;}
.y45_c00315{bottom:419.550000px;}
.y42_c00315{bottom:419.970000px;}
.y1c_c00315{bottom:977.970000px;}
.y1a_c00315{bottom:979.245000px;}
.y1b_c00315{bottom:981.405000px;}
.y16_c00315{bottom:998.325000px;}
.y13_c00315{bottom:998.745000px;}
.y19_c00315{bottom:999.630000px;}
.y17_c00315{bottom:999.825000px;}
.y15_c00315{bottom:1000.470000px;}
.y12_c00315{bottom:1000.905000px;}
.y14_c00315{bottom:1001.130000px;}
.y18_c00315{bottom:1001.970000px;}
.yf_c00315{bottom:1016.970000px;}
.y11_c00315{bottom:1018.245000px;}
.y10_c00315{bottom:1019.130000px;}
.yd_c00315{bottom:1019.325000px;}
.yb_c00315{bottom:1019.970000px;}
.yc_c00315{bottom:1020.405000px;}
.ye_c00315{bottom:1021.470000px;}
.y7_c00315{bottom:1037.325000px;}
.y8_c00315{bottom:1037.745000px;}
.y9_c00315{bottom:1038.630000px;}
.ya_c00315{bottom:1038.825000px;}
.y6_c00315{bottom:1039.905000px;}
.y4_c00315{bottom:1057.245000px;}
.y5_c00315{bottom:1059.405000px;}
.y3_c00315{bottom:1060.470000px;}
.y2_c00315{bottom:1099.050000px;}
.y1_c00315{bottom:1099.905000px;}
.h6_c00315{height:23.025234px;}
.h2_c00315{height:25.091602px;}
.h3_c00315{height:31.364502px;}
.h1_c00315{height:35.571035px;}
.h5_c00315{height:39.777568px;}
.h4_c00315{height:43.910303px;}
.h0_c00315{height:1335.000000px;}
.w0_c00315{width:880.500000px;}
.x0_c00315{left:0.000000px;}
.x1_c00315{left:151.080000px;}
.x1f_c00315{left:170.580000px;}
.x46_c00315{left:178.920000px;}
.x3_c00315{left:180.000000px;}
.x8e_c00315{left:181.920000px;}
.x73_c00315{left:183.420000px;}
.x39_c00315{left:189.420000px;}
.x7e_c00315{left:193.920000px;}
.x8c_c00315{left:205.500000px;}
.x11_c00315{left:207.000000px;}
.x7f_c00315{left:209.580000px;}
.x2c_c00315{left:216.420000px;}
.x74_c00315{left:217.500000px;}
.x4_c00315{left:221.580000px;}
.x61_c00315{left:225.000000px;}
.x6c_c00315{left:229.080000px;}
.x4f_c00315{left:231.420000px;}
.x5a_c00315{left:237.000000px;}
.x12_c00315{left:239.580000px;}
.x8d_c00315{left:243.000000px;}
.x20_c00315{left:247.500000px;}
.x80_c00315{left:255.000000px;}
.x3a_c00315{left:257.580000px;}
.x13_c00315{left:259.920000px;}
.x50_c00315{left:265.920000px;}
.x81_c00315{left:271.500000px;}
.x2d_c00315{left:277.500000px;}
.x3b_c00315{left:280.080000px;}
.x14_c00315{left:286.920000px;}
.x75_c00315{left:292.500000px;}
.x5_c00315{left:295.500000px;}
.x5b_c00315{left:298.080000px;}
.x21_c00315{left:299.580000px;}
.x51_c00315{left:303.000000px;}
.x2e_c00315{left:312.000000px;}
.x62_c00315{left:315.000000px;}
.x82_c00315{left:316.920000px;}
.x15_c00315{left:319.500000px;}
.x3c_c00315{left:321.420000px;}
.x6_c00315{left:323.580000px;}
.x6d_c00315{left:325.500000px;}
.x22_c00315{left:328.500000px;}
.x16_c00315{left:334.080000px;}
.x52_c00315{left:340.500000px;}
.x23_c00315{left:345.420000px;}
.x3d_c00315{left:347.580000px;}
.x17_c00315{left:354.000000px;}
.x47_c00315{left:357.420000px;}
.x7b_c00315{left:358.500000px;}
.x53_c00315{left:360.420000px;}
.x18_c00315{left:366.000000px;}
.x63_c00315{left:370.500000px;}
.x83_c00315{left:373.500000px;}
.x7_c00315{left:379.080000px;}
.x24_c00315{left:381.420000px;}
.x48_c00315{left:383.580000px;}
.x8a_c00315{left:385.500000px;}
.x3e_c00315{left:390.000000px;}
.x54_c00315{left:397.500000px;}
.x8_c00315{left:399.420000px;}
.x64_c00315{left:400.920000px;}
.x2f_c00315{left:402.420000px;}
.x2_c00315{left:403.500000px;}
.x7c_c00315{left:404.580000px;}
.x84_c00315{left:408.000000px;}
.x19_c00315{left:414.000000px;}
.x76_c00315{left:420.000000px;}
.x65_c00315{left:421.920000px;}
.x85_c00315{left:424.500000px;}
.x9_c00315{left:427.920000px;}
.x7d_c00315{left:432.855000px;}
.x3f_c00315{left:433.920000px;}
.x30_c00315{left:436.920000px;}
.x5c_c00315{left:438.420000px;}
.x25_c00315{left:439.500000px;}
.x66_c00315{left:450.420000px;}
.x26_c00315{left:459.420000px;}
.xa_c00315{left:464.580000px;}
.x55_c00315{left:466.500000px;}
.x40_c00315{left:470.580000px;}
.x1a_c00315{left:472.080000px;}
.x8b_c00315{left:475.920000px;}
.x31_c00315{left:477.000000px;}
.x67_c00315{left:481.080000px;}
.x5d_c00315{left:484.500000px;}
.x77_c00315{left:490.500000px;}
.xb_c00315{left:496.920000px;}
.x32_c00315{left:502.500000px;}
.x27_c00315{left:505.500000px;}
.x86_c00315{left:508.500000px;}
.x68_c00315{left:511.920000px;}
.x41_c00315{left:519.420000px;}
.x78_c00315{left:520.500000px;}
.x28_c00315{left:523.500000px;}
.xc_c00315{left:524.580000px;}
.x56_c00315{left:526.920000px;}
.x6e_c00315{left:531.000000px;}
.x33_c00315{left:532.500000px;}
.x5e_c00315{left:535.500000px;}
.x29_c00315{left:540.000000px;}
.x1b_c00315{left:541.500000px;}
.x69_c00315{left:549.000000px;}
.x49_c00315{left:550.080000px;}
.x6f_c00315{left:555.000000px;}
.x87_c00315{left:561.000000px;}
.x4a_c00315{left:568.920000px;}
.xd_c00315{left:570.420000px;}
.x34_c00315{left:575.580000px;}
.x57_c00315{left:578.580000px;}
.x42_c00315{left:582.420000px;}
.x70_c00315{left:583.500000px;}
.x6a_c00315{left:589.500000px;}
.x1c_c00315{left:592.500000px;}
.x35_c00315{left:594.420000px;}
.x4b_c00315{left:595.920000px;}
.x2a_c00315{left:598.500000px;}
.x5f_c00315{left:607.500000px;}
.x43_c00315{left:609.420000px;}
.x58_c00315{left:612.000000px;}
.x71_c00315{left:616.500000px;}
.xe_c00315{left:618.000000px;}
.x4c_c00315{left:620.580000px;}
.x6b_c00315{left:624.420000px;}
.x79_c00315{left:630.420000px;}
.x36_c00315{left:636.000000px;}
.x1d_c00315{left:637.920000px;}
.x88_c00315{left:643.500000px;}
.x44_c00315{left:646.500000px;}
.xf_c00315{left:652.920000px;}
.x59_c00315{left:657.420000px;}
.x4d_c00315{left:661.920000px;}
.x37_c00315{left:663.000000px;}
.x89_c00315{left:678.000000px;}
.x10_c00315{left:681.420000px;}
.x1e_c00315{left:684.000000px;}
.x45_c00315{left:685.500000px;}
.x2b_c00315{left:690.000000px;}
.x60_c00315{left:691.920000px;}
.x38_c00315{left:693.000000px;}
.x72_c00315{left:699.420000px;}
.x7a_c00315{left:700.500000px;}
.x4e_c00315{left:709.920000px;}
@media print{
.v0_c00315{vertical-align:0.000000pt;}
.ls0_c00315{letter-spacing:0.000000pt;}
.ws0_c00315{word-spacing:0.000000pt;}
.fs5_c00315{font-size:16.640000pt;}
.fs1_c00315{font-size:18.133333pt;}
.fs2_c00315{font-size:22.666667pt;}
.fs0_c00315{font-size:25.706667pt;}
.fs4_c00315{font-size:28.746667pt;}
.fs3_c00315{font-size:31.733333pt;}
.y0_c00315{bottom:0.000000pt;}
.y3f_c00315{bottom:221.693333pt;}
.y40_c00315{bottom:223.773333pt;}
.y3b_c00315{bottom:224.360000pt;}
.y3d_c00315{bottom:224.560000pt;}
.y3c_c00315{bottom:225.306667pt;}
.y3e_c00315{bottom:225.693333pt;}
.y38_c00315{bottom:241.106667pt;}
.y37_c00315{bottom:241.893333pt;}
.y39_c00315{bottom:243.026667pt;}
.y3a_c00315{bottom:243.973333pt;}
.y36_c00315{bottom:257.306667pt;}
.y34_c00315{bottom:258.066667pt;}
.y30_c00315{bottom:258.440000pt;}
.y32_c00315{bottom:259.226667pt;}
.y33_c00315{bottom:259.600000pt;}
.y31_c00315{bottom:260.360000pt;}
.y35_c00315{bottom:260.560000pt;}
.y2b_c00315{bottom:273.693333pt;}
.y2a_c00315{bottom:275.773333pt;}
.y2e_c00315{bottom:277.106667pt;}
.y2c_c00315{bottom:277.306667pt;}
.y2d_c00315{bottom:277.693333pt;}
.y2f_c00315{bottom:279.026667pt;}
.y23_c00315{bottom:293.106667pt;}
.y28_c00315{bottom:294.066667pt;}
.y27_c00315{bottom:294.440000pt;}
.y24_c00315{bottom:295.026667pt;}
.y26_c00315{bottom:295.226667pt;}
.y29_c00315{bottom:295.973333pt;}
.y25_c00315{bottom:296.360000pt;}
.y1e_c00315{bottom:310.440000pt;}
.y20_c00315{bottom:311.400000pt;}
.y21_c00315{bottom:311.773333pt;}
.y1d_c00315{bottom:312.360000pt;}
.y22_c00315{bottom:312.560000pt;}
.y1f_c00315{bottom:313.693333pt;}
.y4c_c00315{bottom:344.733333pt;}
.y4d_c00315{bottom:346.266667pt;}
.y4b_c00315{bottom:347.600000pt;}
.y47_c00315{bottom:356.933333pt;}
.y4a_c00315{bottom:357.693333pt;}
.y48_c00315{bottom:358.640000pt;}
.y49_c00315{bottom:359.026667pt;}
.y46_c00315{bottom:359.600000pt;}
.y43_c00315{bottom:370.066667pt;}
.y4f_c00315{bottom:370.266667pt;}
.y4e_c00315{bottom:371.026667pt;}
.y41_c00315{bottom:371.400000pt;}
.y44_c00315{bottom:371.973333pt;}
.y45_c00315{bottom:372.933333pt;}
.y42_c00315{bottom:373.306667pt;}
.y1c_c00315{bottom:869.306667pt;}
.y1a_c00315{bottom:870.440000pt;}
.y1b_c00315{bottom:872.360000pt;}
.y16_c00315{bottom:887.400000pt;}
.y13_c00315{bottom:887.773333pt;}
.y19_c00315{bottom:888.560000pt;}
.y17_c00315{bottom:888.733333pt;}
.y15_c00315{bottom:889.306667pt;}
.y12_c00315{bottom:889.693333pt;}
.y14_c00315{bottom:889.893333pt;}
.y18_c00315{bottom:890.640000pt;}
.yf_c00315{bottom:903.973333pt;}
.y11_c00315{bottom:905.106667pt;}
.y10_c00315{bottom:905.893333pt;}
.yd_c00315{bottom:906.066667pt;}
.yb_c00315{bottom:906.640000pt;}
.yc_c00315{bottom:907.026667pt;}
.ye_c00315{bottom:907.973333pt;}
.y7_c00315{bottom:922.066667pt;}
.y8_c00315{bottom:922.440000pt;}
.y9_c00315{bottom:923.226667pt;}
.ya_c00315{bottom:923.400000pt;}
.y6_c00315{bottom:924.360000pt;}
.y4_c00315{bottom:939.773333pt;}
.y5_c00315{bottom:941.693333pt;}
.y3_c00315{bottom:942.640000pt;}
.y2_c00315{bottom:976.933333pt;}
.y1_c00315{bottom:977.693333pt;}
.h6_c00315{height:20.466875pt;}
.h2_c00315{height:22.303646pt;}
.h3_c00315{height:27.879557pt;}
.h1_c00315{height:31.618698pt;}
.h5_c00315{height:35.357839pt;}
.h4_c00315{height:39.031380pt;}
.h0_c00315{height:1186.666667pt;}
.w0_c00315{width:782.666667pt;}
.x0_c00315{left:0.000000pt;}
.x1_c00315{left:134.293333pt;}
.x1f_c00315{left:151.626667pt;}
.x46_c00315{left:159.040000pt;}
.x3_c00315{left:160.000000pt;}
.x8e_c00315{left:161.706667pt;}
.x73_c00315{left:163.040000pt;}
.x39_c00315{left:168.373333pt;}
.x7e_c00315{left:172.373333pt;}
.x8c_c00315{left:182.666667pt;}
.x11_c00315{left:184.000000pt;}
.x7f_c00315{left:186.293333pt;}
.x2c_c00315{left:192.373333pt;}
.x74_c00315{left:193.333333pt;}
.x4_c00315{left:196.960000pt;}
.x61_c00315{left:200.000000pt;}
.x6c_c00315{left:203.626667pt;}
.x4f_c00315{left:205.706667pt;}
.x5a_c00315{left:210.666667pt;}
.x12_c00315{left:212.960000pt;}
.x8d_c00315{left:216.000000pt;}
.x20_c00315{left:220.000000pt;}
.x80_c00315{left:226.666667pt;}
.x3a_c00315{left:228.960000pt;}
.x13_c00315{left:231.040000pt;}
.x50_c00315{left:236.373333pt;}
.x81_c00315{left:241.333333pt;}
.x2d_c00315{left:246.666667pt;}
.x3b_c00315{left:248.960000pt;}
.x14_c00315{left:255.040000pt;}
.x75_c00315{left:260.000000pt;}
.x5_c00315{left:262.666667pt;}
.x5b_c00315{left:264.960000pt;}
.x21_c00315{left:266.293333pt;}
.x51_c00315{left:269.333333pt;}
.x2e_c00315{left:277.333333pt;}
.x62_c00315{left:280.000000pt;}
.x82_c00315{left:281.706667pt;}
.x15_c00315{left:284.000000pt;}
.x3c_c00315{left:285.706667pt;}
.x6_c00315{left:287.626667pt;}
.x6d_c00315{left:289.333333pt;}
.x22_c00315{left:292.000000pt;}
.x16_c00315{left:296.960000pt;}
.x52_c00315{left:302.666667pt;}
.x23_c00315{left:307.040000pt;}
.x3d_c00315{left:308.960000pt;}
.x17_c00315{left:314.666667pt;}
.x47_c00315{left:317.706667pt;}
.x7b_c00315{left:318.666667pt;}
.x53_c00315{left:320.373333pt;}
.x18_c00315{left:325.333333pt;}
.x63_c00315{left:329.333333pt;}
.x83_c00315{left:332.000000pt;}
.x7_c00315{left:336.960000pt;}
.x24_c00315{left:339.040000pt;}
.x48_c00315{left:340.960000pt;}
.x8a_c00315{left:342.666667pt;}
.x3e_c00315{left:346.666667pt;}
.x54_c00315{left:353.333333pt;}
.x8_c00315{left:355.040000pt;}
.x64_c00315{left:356.373333pt;}
.x2f_c00315{left:357.706667pt;}
.x2_c00315{left:358.666667pt;}
.x7c_c00315{left:359.626667pt;}
.x84_c00315{left:362.666667pt;}
.x19_c00315{left:368.000000pt;}
.x76_c00315{left:373.333333pt;}
.x65_c00315{left:375.040000pt;}
.x85_c00315{left:377.333333pt;}
.x9_c00315{left:380.373333pt;}
.x7d_c00315{left:384.760000pt;}
.x3f_c00315{left:385.706667pt;}
.x30_c00315{left:388.373333pt;}
.x5c_c00315{left:389.706667pt;}
.x25_c00315{left:390.666667pt;}
.x66_c00315{left:400.373333pt;}
.x26_c00315{left:408.373333pt;}
.xa_c00315{left:412.960000pt;}
.x55_c00315{left:414.666667pt;}
.x40_c00315{left:418.293333pt;}
.x1a_c00315{left:419.626667pt;}
.x8b_c00315{left:423.040000pt;}
.x31_c00315{left:424.000000pt;}
.x67_c00315{left:427.626667pt;}
.x5d_c00315{left:430.666667pt;}
.x77_c00315{left:436.000000pt;}
.xb_c00315{left:441.706667pt;}
.x32_c00315{left:446.666667pt;}
.x27_c00315{left:449.333333pt;}
.x86_c00315{left:452.000000pt;}
.x68_c00315{left:455.040000pt;}
.x41_c00315{left:461.706667pt;}
.x78_c00315{left:462.666667pt;}
.x28_c00315{left:465.333333pt;}
.xc_c00315{left:466.293333pt;}
.x56_c00315{left:468.373333pt;}
.x6e_c00315{left:472.000000pt;}
.x33_c00315{left:473.333333pt;}
.x5e_c00315{left:476.000000pt;}
.x29_c00315{left:480.000000pt;}
.x1b_c00315{left:481.333333pt;}
.x69_c00315{left:488.000000pt;}
.x49_c00315{left:488.960000pt;}
.x6f_c00315{left:493.333333pt;}
.x87_c00315{left:498.666667pt;}
.x4a_c00315{left:505.706667pt;}
.xd_c00315{left:507.040000pt;}
.x34_c00315{left:511.626667pt;}
.x57_c00315{left:514.293333pt;}
.x42_c00315{left:517.706667pt;}
.x70_c00315{left:518.666667pt;}
.x6a_c00315{left:524.000000pt;}
.x1c_c00315{left:526.666667pt;}
.x35_c00315{left:528.373333pt;}
.x4b_c00315{left:529.706667pt;}
.x2a_c00315{left:532.000000pt;}
.x5f_c00315{left:540.000000pt;}
.x43_c00315{left:541.706667pt;}
.x58_c00315{left:544.000000pt;}
.x71_c00315{left:548.000000pt;}
.xe_c00315{left:549.333333pt;}
.x4c_c00315{left:551.626667pt;}
.x6b_c00315{left:555.040000pt;}
.x79_c00315{left:560.373333pt;}
.x36_c00315{left:565.333333pt;}
.x1d_c00315{left:567.040000pt;}
.x88_c00315{left:572.000000pt;}
.x44_c00315{left:574.666667pt;}
.xf_c00315{left:580.373333pt;}
.x59_c00315{left:584.373333pt;}
.x4d_c00315{left:588.373333pt;}
.x37_c00315{left:589.333333pt;}
.x89_c00315{left:602.666667pt;}
.x10_c00315{left:605.706667pt;}
.x1e_c00315{left:608.000000pt;}
.x45_c00315{left:609.333333pt;}
.x2b_c00315{left:613.333333pt;}
.x60_c00315{left:615.040000pt;}
.x38_c00315{left:616.000000pt;}
.x72_c00315{left:621.706667pt;}
.x7a_c00315{left:622.666667pt;}
.x4e_c00315{left:631.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_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_c29c07b80cb1185b62f84fa1.woff2')format("woff");}.ff1_c00316{font-family:ff1_c00316;line-height:1.688965;font-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_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);}
.m34_c00316{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m0_c00316{transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);}
.m18_c00316{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m79_c00316{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m72_c00316{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m7c_c00316{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m7e_c00316{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mac_c00316{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m22_c00316{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m71_c00316{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mb0_c00316{transform:matrix(0.378942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378942,0.000000,0.000000,0.250000,0,0);}
.m77_c00316{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m10_c00316{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m7d_c00316{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.ma4_c00316{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m65_c00316{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m85_c00316{transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);}
.m89_c00316{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m2c_c00316{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m90_c00316{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.mb7_c00316{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m35_c00316{transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);}
.m47_c00316{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m9f_c00316{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m91_c00316{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m5_c00316{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m7b_c00316{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.maf_c00316{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m43_c00316{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m62_c00316{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m88_c00316{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m2a_c00316{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m60_c00316{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m3f_c00316{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.mb5_c00316{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m8a_c00316{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m8f_c00316{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m45_c00316{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m1c_c00316{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m3d_c00316{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m4f_c00316{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m28_c00316{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m5b_c00316{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m1b_c00316{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m57_c00316{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mcd_c00316{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.ma8_c00316{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m4d_c00316{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.ma6_c00316{transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);}
.ma0_c00316{transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);}
.m9a_c00316{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m2_c00316{transform:matrix(0.446324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446324,0.000000,0.000000,0.250000,0,0);}
.m48_c00316{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.m2d_c00316{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m69_c00316{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);}
.m46_c00316{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m68_c00316{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m70_c00316{transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);}
.m9d_c00316{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.ma1_c00316{transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);}
.mba_c00316{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mbd_c00316{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m42_c00316{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.m5e_c00316{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.mbf_c00316{transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);}
.m40_c00316{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.mae_c00316{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.ma2_c00316{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.m76_c00316{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mbb_c00316{transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);}
.m4_c00316{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mc8_c00316{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m8b_c00316{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mc_c00316{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.mad_c00316{transform:matrix(0.487059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487059,0.000000,0.000000,0.250000,0,0);}
.m1f_c00316{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m50_c00316{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m41_c00316{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m83_c00316{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mda_c00316{transform:matrix(0.489583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489583,0.000000,0.000000,0.250000,0,0);}
.m8c_c00316{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m3b_c00316{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m52_c00316{transform:matrix(0.491651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491651,0.000000,0.000000,0.250000,0,0);}
.md0_c00316{transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);}
.m14_c00316{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);}
.m64_c00316{transform:matrix(0.502319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502319,0.000000,0.000000,0.250000,0,0);}
.m1d_c00316{transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);}
.m24_c00316{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m25_c00316{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m8_c00316{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mb4_c00316{transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);}
.md3_c00316{transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);}
.m2b_c00316{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m26_c00316{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m23_c00316{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m15_c00316{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m97_c00316{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m51_c00316{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m75_c00316{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m9c_c00316{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m3e_c00316{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m6c_c00316{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m16_c00316{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m6a_c00316{transform:matrix(0.528293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528293,0.000000,0.000000,0.250000,0,0);}
.m95_c00316{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.md4_c00316{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00316{transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);}
.ma_c00316{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m4a_c00316{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m19_c00316{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m27_c00316{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.ma3_c00316{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mab_c00316{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m9_c00316{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mb2_c00316{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m74_c00316{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m3a_c00316{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m6d_c00316{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m56_c00316{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m4c_c00316{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m61_c00316{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m9e_c00316{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.mbc_c00316{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m4e_c00316{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m31_c00316{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m59_c00316{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m93_c00316{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.ma9_c00316{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m12_c00316{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m13_c00316{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mb_c00316{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m66_c00316{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m49_c00316{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m78_c00316{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);}
.m94_c00316{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m6f_c00316{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.ma5_c00316{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m32_c00316{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mc5_c00316{transform:matrix(0.568109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568109,0.000000,0.000000,0.250000,0,0);}
.m1a_c00316{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m20_c00316{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m17_c00316{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.mf_c00316{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.md_c00316{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m3_c00316{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.mb1_c00316{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m6_c00316{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m7f_c00316{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m67_c00316{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m80_c00316{transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);}
.m6e_c00316{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m92_c00316{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m37_c00316{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m86_c00316{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.m2e_c00316{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.m5c_c00316{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m81_c00316{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m55_c00316{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m5f_c00316{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.ma7_c00316{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m6b_c00316{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m82_c00316{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m99_c00316{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m1_c00316{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.mb8_c00316{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m21_c00316{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m54_c00316{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.mb6_c00316{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.me_c00316{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mb3_c00316{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.maa_c00316{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m5a_c00316{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m39_c00316{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);}
.m36_c00316{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m1e_c00316{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.m84_c00316{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m8d_c00316{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.md2_c00316{transform:matrix(0.642070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642070,0.000000,0.000000,0.250000,0,0);}
.m53_c00316{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.mc9_c00316{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.md8_c00316{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m7a_c00316{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.md5_c00316{transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);}
.m87_c00316{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m30_c00316{transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);}
.m5d_c00316{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mcb_c00316{transform:matrix(0.667929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667929,0.000000,0.000000,0.250000,0,0);}
.md7_c00316{transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);}
.md6_c00316{transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);}
.md9_c00316{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.mb9_c00316{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m33_c00316{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.mce_c00316{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m11_c00316{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mc4_c00316{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.m9b_c00316{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m8e_c00316{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.mc7_c00316{transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);}
.m96_c00316{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mcc_c00316{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.mc0_c00316{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.mca_c00316{transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);}
.mc1_c00316{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m3c_c00316{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.md1_c00316{transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);}
.m44_c00316{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mcf_c00316{transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);}
.m29_c00316{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mc6_c00316{transform:matrix(0.787445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.787445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.787445,0.000000,0.000000,0.250000,0,0);}
.m73_c00316{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.m7_c00316{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mbe_c00316{transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);}
.m63_c00316{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m2f_c00316{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mc3_c00316{transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);}
.m58_c00316{transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);}
.mdc_c00316{transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);}
.mc2_c00316{transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);}
.mdb_c00316{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m98_c00316{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00316{vertical-align:0.000000px;}
.v2_c00316{vertical-align:6.000000px;}
.v1_c00316{vertical-align:12.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;}
}
.ws1_c00316{word-spacing:-8.678629px;}
.ws0_c00316{word-spacing:-4.373143px;}
.ws9_c00316{word-spacing:0.000000px;}
.ws7_c00316{word-spacing:18.982993px;}
.ws6_c00316{word-spacing:25.629635px;}
.ws5_c00316{word-spacing:30.193299px;}
.ws8_c00316{word-spacing:37.246408px;}
.ws4_c00316{word-spacing:37.647282px;}
.ws3_c00316{word-spacing:42.638400px;}
.ws2_c00316{word-spacing:49.953969px;}
._2_c00316{width:48.178888px;}
._1_c00316{width:51.077758px;}
._0_c00316{width:71.570880px;}
.fc0_c00316{color:transparent;}
.fs6_c00316{font-size:3.420000px;}
.fs8_c00316{font-size:11.880000px;}
.fs7_c00316{font-size:13.620000px;}
.fs3_c00316{font-size:18.720000px;}
.fs1_c00316{font-size:20.400000px;}
.fs5_c00316{font-size:25.500000px;}
.fs2_c00316{font-size:28.920000px;}
.fs4_c00316{font-size:32.340000px;}
.fs0_c00316{font-size:35.700000px;}
.y0_c00316{bottom:0.000000px;}
.y3_c00316{bottom:227.550000px;}
.ybe_c00316{bottom:256.275000px;}
.ybb_c00316{bottom:256.695000px;}
.ybc_c00316{bottom:257.130000px;}
.ybd_c00316{bottom:258.195000px;}
.yb8_c00316{bottom:270.630000px;}
.yba_c00316{bottom:271.275000px;}
.yb9_c00316{bottom:271.695000px;}
.yb6_c00316{bottom:284.130000px;}
.yb7_c00316{bottom:285.195000px;}
.yb3_c00316{bottom:298.275000px;}
.yb2_c00316{bottom:298.695000px;}
.yb5_c00316{bottom:299.130000px;}
.yb4_c00316{bottom:300.195000px;}
.yad_c00316{bottom:310.695000px;}
.yac_c00316{bottom:312.195000px;}
.yae_c00316{bottom:312.630000px;}
.yb0_c00316{bottom:313.275000px;}
.yaf_c00316{bottom:313.695000px;}
.yb1_c00316{bottom:315.195000px;}
.ya9_c00316{bottom:325.695000px;}
.yaa_c00316{bottom:326.130000px;}
.yab_c00316{bottom:326.775000px;}
.ya8_c00316{bottom:327.195000px;}
.ya4_c00316{bottom:339.195000px;}
.ya2_c00316{bottom:339.630000px;}
.ya6_c00316{bottom:340.275000px;}
.ya3_c00316{bottom:340.695000px;}
.ya7_c00316{bottom:342.195000px;}
.ya5_c00316{bottom:345.195000px;}
.ya0_c00316{bottom:353.130000px;}
.y9f_c00316{bottom:354.195000px;}
.ya1_c00316{bottom:355.695000px;}
.y9e_c00316{bottom:367.695000px;}
.y9c_c00316{bottom:368.130000px;}
.y9d_c00316{bottom:369.195000px;}
.y9b_c00316{bottom:382.695000px;}
.y99_c00316{bottom:395.130000px;}
.y9a_c00316{bottom:396.195000px;}
.y98_c00316{bottom:408.630000px;}
.y97_c00316{bottom:409.695000px;}
.y95_c00316{bottom:422.130000px;}
.y96_c00316{bottom:423.630000px;}
.y92_c00316{bottom:441.195000px;}
.y93_c00316{bottom:442.695000px;}
.y94_c00316{bottom:443.130000px;}
.y8f_c00316{bottom:453.630000px;}
.y91_c00316{bottom:455.130000px;}
.y90_c00316{bottom:456.195000px;}
.y8e_c00316{bottom:479.970000px;}
.y8d_c00316{bottom:481.050000px;}
.y8a_c00316{bottom:492.825000px;}
.y89_c00316{bottom:493.905000px;}
.y8b_c00316{bottom:494.970000px;}
.y8c_c00316{bottom:496.050000px;}
.y88_c00316{bottom:507.825000px;}
.y86_c00316{bottom:509.970000px;}
.y87_c00316{bottom:511.050000px;}
.y85_c00316{bottom:527.970000px;}
.y84_c00316{bottom:530.550000px;}
.y83_c00316{bottom:564.825000px;}
.y80_c00316{bottom:565.245000px;}
.y81_c00316{bottom:566.130000px;}
.y82_c00316{bottom:566.325000px;}
.y7f_c00316{bottom:567.405000px;}
.y7e_c00316{bottom:584.745000px;}
.y7d_c00316{bottom:586.905000px;}
.y7b_c00316{bottom:604.245000px;}
.y7c_c00316{bottom:605.550000px;}
.y78_c00316{bottom:606.405000px;}
.y79_c00316{bottom:606.420000px;}
.y7a_c00316{bottom:607.470000px;}
.y73_c00316{bottom:622.905000px;}
.y76_c00316{bottom:625.245000px;}
.y72_c00316{bottom:625.905000px;}
.y74_c00316{bottom:626.130000px;}
.y75_c00316{bottom:626.970000px;}
.y77_c00316{bottom:627.405000px;}
.y6b_c00316{bottom:642.405000px;}
.y6d_c00316{bottom:643.245000px;}
.y6c_c00316{bottom:643.470000px;}
.y70_c00316{bottom:644.745000px;}
.y71_c00316{bottom:645.630000px;}
.y6f_c00316{bottom:646.470000px;}
.y6e_c00316{bottom:646.905000px;}
.y68_c00316{bottom:663.405000px;}
.y65_c00316{bottom:664.245000px;}
.y6a_c00316{bottom:664.470000px;}
.y66_c00316{bottom:665.130000px;}
.y69_c00316{bottom:665.325000px;}
.y64_c00316{bottom:665.970000px;}
.y67_c00316{bottom:666.405000px;}
.y60_c00316{bottom:682.470000px;}
.y5f_c00316{bottom:683.745000px;}
.y61_c00316{bottom:684.630000px;}
.y62_c00316{bottom:685.470000px;}
.y5e_c00316{bottom:685.905000px;}
.y63_c00316{bottom:686.970000px;}
.y5c_c00316{bottom:701.970000px;}
.y5a_c00316{bottom:702.405000px;}
.y59_c00316{bottom:703.245000px;}
.y5d_c00316{bottom:703.470000px;}
.y5b_c00316{bottom:704.325000px;}
.y58_c00316{bottom:705.405000px;}
.y56_c00316{bottom:722.745000px;}
.y54_c00316{bottom:724.905000px;}
.y57_c00316{bottom:725.130000px;}
.y55_c00316{bottom:725.970000px;}
.y52_c00316{bottom:743.325000px;}
.y50_c00316{bottom:743.745000px;}
.y51_c00316{bottom:744.405000px;}
.y53_c00316{bottom:745.905000px;}
.y4e_c00316{bottom:763.245000px;}
.y4f_c00316{bottom:764.130000px;}
.y4d_c00316{bottom:764.325000px;}
.y4c_c00316{bottom:765.405000px;}
.y4a_c00316{bottom:781.470000px;}
.y48_c00316{bottom:782.745000px;}
.y47_c00316{bottom:783.405000px;}
.y4b_c00316{bottom:783.630000px;}
.y49_c00316{bottom:784.905000px;}
.y42_c00316{bottom:802.245000px;}
.y43_c00316{bottom:803.130000px;}
.y44_c00316{bottom:803.325000px;}
.y46_c00316{bottom:804.405000px;}
.y45_c00316{bottom:805.470000px;}
.y41_c00316{bottom:821.745000px;}
.y40_c00316{bottom:823.905000px;}
.y3f_c00316{bottom:840.405000px;}
.y3b_c00316{bottom:841.245000px;}
.y3a_c00316{bottom:842.130000px;}
.y3d_c00316{bottom:842.325000px;}
.y39_c00316{bottom:843.405000px;}
.y3c_c00316{bottom:843.630000px;}
.y3e_c00316{bottom:844.470000px;}
.y36_c00316{bottom:859.470000px;}
.y37_c00316{bottom:860.745000px;}
.y35_c00316{bottom:861.405000px;}
.y33_c00316{bottom:861.630000px;}
.y34_c00316{bottom:862.905000px;}
.y38_c00316{bottom:863.130000px;}
.y2e_c00316{bottom:881.325000px;}
.y31_c00316{bottom:881.745000px;}
.y30_c00316{bottom:882.405000px;}
.y2d_c00316{bottom:882.630000px;}
.y2f_c00316{bottom:883.470000px;}
.y32_c00316{bottom:883.905000px;}
.y28_c00316{bottom:898.905000px;}
.y29_c00316{bottom:899.745000px;}
.y2b_c00316{bottom:901.245000px;}
.y27_c00316{bottom:901.905000px;}
.y2c_c00316{bottom:902.325000px;}
.y2a_c00316{bottom:903.405000px;}
.y23_c00316{bottom:919.245000px;}
.y25_c00316{bottom:920.745000px;}
.y24_c00316{bottom:921.405000px;}
.y22_c00316{bottom:921.630000px;}
.y26_c00316{bottom:922.905000px;}
.y1f_c00316{bottom:940.245000px;}
.y21_c00316{bottom:941.130000px;}
.y20_c00316{bottom:941.325000px;}
.y1e_c00316{bottom:942.405000px;}
.y1b_c00316{bottom:959.745000px;}
.y1c_c00316{bottom:960.825000px;}
.y19_c00316{bottom:961.905000px;}
.y1d_c00316{bottom:962.130000px;}
.y1a_c00316{bottom:962.970000px;}
.y16_c00316{bottom:977.970000px;}
.y17_c00316{bottom:980.130000px;}
.y18_c00316{bottom:982.470000px;}
.y14_c00316{bottom:998.745000px;}
.y15_c00316{bottom:999.630000px;}
.y13_c00316{bottom:999.825000px;}
.y12_c00316{bottom:1000.905000px;}
.y11_c00316{bottom:1017.825000px;}
.ye_c00316{bottom:1018.245000px;}
.yd_c00316{bottom:1019.325000px;}
.yf_c00316{bottom:1020.405000px;}
.y10_c00316{bottom:1021.470000px;}
.yc_c00316{bottom:1037.745000px;}
.yb_c00316{bottom:1038.630000px;}
.ya_c00316{bottom:1039.905000px;}
.y5_c00316{bottom:1057.245000px;}
.y7_c00316{bottom:1058.325000px;}
.y9_c00316{bottom:1058.745000px;}
.y4_c00316{bottom:1059.405000px;}
.y6_c00316{bottom:1059.630000px;}
.y8_c00316{bottom:1060.905000px;}
.y2_c00316{bottom:1097.550000px;}
.y1_c00316{bottom:1097.745000px;}
.h8_c00316{height:4.206533px;}
.hc_c00316{height:14.612168px;}
.h9_c00316{height:16.752334px;}
.hb_c00316{height:22.752334px;}
.h4_c00316{height:23.025234px;}
.h2_c00316{height:25.091602px;}
.ha_c00316{height:29.025234px;}
.h6_c00316{height:31.364502px;}
.h3_c00316{height:35.571035px;}
.h5_c00316{height:39.777568px;}
.h1_c00316{height:43.910303px;}
.h7_c00316{height:47.571035px;}
.h0_c00316{height:1335.000000px;}
.w0_c00316{width:880.500000px;}
.x0_c00316{left:0.000000px;}
.x4_c00316{left:151.500000px;}
.x3e_c00316{left:166.080000px;}
.xc7_c00316{left:167.145000px;}
.x2f_c00316{left:169.920000px;}
.xb8_c00316{left:171.000000px;}
.x15_c00316{left:172.500000px;}
.x5_c00316{left:183.000000px;}
.xc0_c00316{left:187.500000px;}
.x16_c00316{left:191.580000px;}
.x62_c00316{left:193.920000px;}
.x30_c00316{left:196.500000px;}
.x88_c00316{left:198.000000px;}
.x6_c00316{left:199.920000px;}
.x3b_c00316{left:202.500000px;}
.xb9_c00316{left:207.000000px;}
.x96_c00316{left:208.500000px;}
.x23_c00316{left:210.420000px;}
.x8f_c00316{left:213.000000px;}
.xaf_c00316{left:214.920000px;}
.x71_c00316{left:216.420000px;}
.x6b_c00316{left:217.920000px;}
.x3f_c00316{left:219.420000px;}
.x3c_c00316{left:223.500000px;}
.x83_c00316{left:225.000000px;}
.x31_c00316{left:226.500000px;}
.x5a_c00316{left:229.500000px;}
.xc1_c00316{left:231.000000px;}
.xc8_c00316{left:237.000000px;}
.x7_c00316{left:240.420000px;}
.x32_c00316{left:243.000000px;}
.x17_c00316{left:244.920000px;}
.x4f_c00316{left:249.420000px;}
.x79_c00316{left:250.920000px;}
.x3d_c00316{left:252.000000px;}
.x6c_c00316{left:255.420000px;}
.xc9_c00316{left:256.500000px;}
.x97_c00316{left:261.420000px;}
.xba_c00316{left:263.775000px;}
.x9c_c00316{left:265.500000px;}
.xa1_c00316{left:271.500000px;}
.x18_c00316{left:273.000000px;}
.x5b_c00316{left:276.000000px;}
.x8_c00316{left:279.000000px;}
.x63_c00316{left:280.500000px;}
.x54_c00316{left:282.000000px;}
.x33_c00316{left:285.420000px;}
.x90_c00316{left:286.500000px;}
.x40_c00316{left:288.000000px;}
.x7a_c00316{left:289.920000px;}
.xc2_c00316{left:291.000000px;}
.xda_c00316{left:294.420000px;}
.xd6_c00316{left:295.500000px;}
.x41_c00316{left:297.000000px;}
.x9_c00316{left:298.080000px;}
.xdf_c00316{left:300.000000px;}
.xea_c00316{left:301.080000px;}
.xb0_c00316{left:303.000000px;}
.xa7_c00316{left:304.920000px;}
.x24_c00316{left:306.000000px;}
.xa2_c00316{left:310.500000px;}
.x42_c00316{left:313.500000px;}
.x5c_c00316{left:320.355000px;}
.xe0_c00316{left:322.080000px;}
.x64_c00316{left:325.500000px;}
.x19_c00316{left:326.580000px;}
.xc3_c00316{left:328.500000px;}
.x84_c00316{left:330.000000px;}
.x91_c00316{left:331.920000px;}
.xeb_c00316{left:333.000000px;}
.x34_c00316{left:334.080000px;}
.xe4_c00316{left:335.580000px;}
.xe5_c00316{left:337.500000px;}
.x72_c00316{left:339.000000px;}
.x43_c00316{left:342.000000px;}
.x1a_c00316{left:345.420000px;}
.xa_c00316{left:349.500000px;}
.x7b_c00316{left:351.000000px;}
.x65_c00316{left:354.420000px;}
.x44_c00316{left:355.500000px;}
.xa8_c00316{left:356.580000px;}
.x73_c00316{left:358.500000px;}
.x25_c00316{left:360.420000px;}
.x92_c00316{left:361.500000px;}
.x98_c00316{left:362.580000px;}
.x35_c00316{left:364.500000px;}
.xb_c00316{left:369.420000px;}
.x45_c00316{left:370.500000px;}
.xca_c00316{left:372.645000px;}
.x1b_c00316{left:375.420000px;}
.x55_c00316{left:376.500000px;}
.xdb_c00316{left:379.080000px;}
.x89_c00316{left:381.000000px;}
.xa3_c00316{left:382.500000px;}
.xb1_c00316{left:384.000000px;}
.xbb_c00316{left:385.500000px;}
.x26_c00316{left:387.000000px;}
.x46_c00316{left:388.500000px;}
.x85_c00316{left:390.000000px;}
.x99_c00316{left:391.080000px;}
.x66_c00316{left:394.500000px;}
.xc_c00316{left:397.080000px;}
.xe6_c00316{left:400.920000px;}
.x2_c00316{left:402.000000px;}
.xbc_c00316{left:405.000000px;}
.x47_c00316{left:406.500000px;}
.x5d_c00316{left:408.000000px;}
.xec_c00316{left:409.920000px;}
.xd4_c00316{left:411.000000px;}
.xa9_c00316{left:412.500000px;}
.x67_c00316{left:414.420000px;}
.x74_c00316{left:415.920000px;}
.x8a_c00316{left:418.920000px;}
.xa4_c00316{left:421.500000px;}
.xb2_c00316{left:422.580000px;}
.x7c_c00316{left:424.500000px;}
.x27_c00316{left:427.500000px;}
.x6d_c00316{left:430.500000px;}
.xde_c00316{left:435.000000px;}
.x1c_c00316{left:436.080000px;}
.xcb_c00316{left:442.500000px;}
.xd1_c00316{left:444.000000px;}
.xbd_c00316{left:447.000000px;}
.x7d_c00316{left:448.920000px;}
.xe7_c00316{left:450.000000px;}
.xed_c00316{left:451.500000px;}
.xb3_c00316{left:453.000000px;}
.xd5_c00316{left:456.000000px;}
.xd_c00316{left:457.500000px;}
.x50_c00316{left:459.420000px;}
.x9d_c00316{left:460.920000px;}
.x9a_c00316{left:462.420000px;}
.x75_c00316{left:463.500000px;}
.xe2_c00316{left:465.000000px;}
.x28_c00316{left:466.080000px;}
.x36_c00316{left:469.920000px;}
.xcc_c00316{left:471.420000px;}
.xd7_c00316{left:472.500000px;}
.x48_c00316{left:474.000000px;}
.x5e_c00316{left:475.500000px;}
.x7e_c00316{left:477.000000px;}
.xbe_c00316{left:481.920000px;}
.xdc_c00316{left:483.000000px;}
.x29_c00316{left:486.000000px;}
.xc4_c00316{left:489.000000px;}
.xa5_c00316{left:490.080000px;}
.x5f_c00316{left:491.355000px;}
.x49_c00316{left:493.920000px;}
.xe8_c00316{left:495.000000px;}
.xe_c00316{left:496.080000px;}
.x1d_c00316{left:499.920000px;}
.xd2_c00316{left:501.000000px;}
.x9b_c00316{left:502.500000px;}
.x76_c00316{left:504.000000px;}
.x37_c00316{left:507.420000px;}
.xe9_c00316{left:508.500000px;}
.x68_c00316{left:511.500000px;}
.x2a_c00316{left:513.420000px;}
.x7f_c00316{left:522.855000px;}
.x93_c00316{left:525.000000px;}
.xf_c00316{left:526.500000px;}
.x8b_c00316{left:529.080000px;}
.xaa_c00316{left:531.000000px;}
.x38_c00316{left:532.920000px;}
.xd8_c00316{left:536.580000px;}
.x1e_c00316{left:539.580000px;}
.x2b_c00316{left:544.080000px;}
.x10_c00316{left:545.580000px;}
.x4a_c00316{left:547.920000px;}
.x6e_c00316{left:549.420000px;}
.x69_c00316{left:550.920000px;}
.xd9_c00316{left:552.000000px;}
.x80_c00316{left:555.420000px;}
.xe1_c00316{left:556.920000px;}
.xcd_c00316{left:558.000000px;}
.xab_c00316{left:559.500000px;}
.xe3_c00316{left:561.000000px;}
.xc5_c00316{left:562.500000px;}
.xdd_c00316{left:564.000000px;}
.xb4_c00316{left:565.500000px;}
.x60_c00316{left:567.420000px;}
.x11_c00316{left:568.500000px;}
.x56_c00316{left:571.500000px;}
.x1f_c00316{left:573.000000px;}
.x2c_c00316{left:576.420000px;}
.x39_c00316{left:579.000000px;}
.x51_c00316{left:583.500000px;}
.x4b_c00316{left:585.420000px;}
.xd3_c00316{left:588.420000px;}
.xc6_c00316{left:589.500000px;}
.x57_c00316{left:591.420000px;}
.x61_c00316{left:594.000000px;}
.xce_c00316{left:595.080000px;}
.xac_c00316{left:601.500000px;}
.x2d_c00316{left:602.580000px;}
.xbf_c00316{left:606.000000px;}
.x20_c00316{left:609.420000px;}
.x4c_c00316{left:612.000000px;}
.x8c_c00316{left:616.920000px;}
.x9e_c00316{left:619.080000px;}
.x58_c00316{left:620.580000px;}
.x6a_c00316{left:622.500000px;}
.x94_c00316{left:627.420000px;}
.x86_c00316{left:628.920000px;}
.x3a_c00316{left:636.000000px;}
.xb5_c00316{left:637.500000px;}
.xad_c00316{left:638.580000px;}
.xcf_c00316{left:641.580000px;}
.x12_c00316{left:643.500000px;}
.xa6_c00316{left:644.775000px;}
.x21_c00316{left:646.500000px;}
.x8d_c00316{left:648.000000px;}
.x4d_c00316{left:649.500000px;}
.x9f_c00316{left:650.775000px;}
.x81_c00316{left:652.920000px;}
.x52_c00316{left:658.080000px;}
.x13_c00316{left:660.000000px;}
.x59_c00316{left:662.580000px;}
.x6f_c00316{left:667.920000px;}
.x8e_c00316{left:669.420000px;}
.x77_c00316{left:672.000000px;}
.xb6_c00316{left:675.000000px;}
.x14_c00316{left:676.920000px;}
.x22_c00316{left:678.420000px;}
.x82_c00316{left:682.500000px;}
.xd0_c00316{left:684.000000px;}
.x78_c00316{left:688.920000px;}
.x87_c00316{left:691.500000px;}
.x4e_c00316{left:693.420000px;}
.x70_c00316{left:694.920000px;}
.x2e_c00316{left:699.000000px;}
.xa0_c00316{left:700.500000px;}
.xb7_c00316{left:701.580000px;}
.x95_c00316{left:703.080000px;}
.x1_c00316{left:705.000000px;}
.x53_c00316{left:706.500000px;}
.xae_c00316{left:707.580000px;}
.x3_c00316{left:720.855000px;}
@media print{
.v0_c00316{vertical-align:0.000000pt;}
.v2_c00316{vertical-align:5.333333pt;}
.v1_c00316{vertical-align:10.666667pt;}
.ls0_c00316{letter-spacing:0.000000pt;}
.ws1_c00316{word-spacing:-7.714337pt;}
.ws0_c00316{word-spacing:-3.887238pt;}
.ws9_c00316{word-spacing:0.000000pt;}
.ws7_c00316{word-spacing:16.873772pt;}
.ws6_c00316{word-spacing:22.781898pt;}
.ws5_c00316{word-spacing:26.838488pt;}
.ws8_c00316{word-spacing:33.107918pt;}
.ws4_c00316{word-spacing:33.464251pt;}
.ws3_c00316{word-spacing:37.900800pt;}
.ws2_c00316{word-spacing:44.403528pt;}
._2_c00316{width:42.825678pt;}
._1_c00316{width:45.402452pt;}
._0_c00316{width:63.618560pt;}
.fs6_c00316{font-size:3.040000pt;}
.fs8_c00316{font-size:10.560000pt;}
.fs7_c00316{font-size:12.106667pt;}
.fs3_c00316{font-size:16.640000pt;}
.fs1_c00316{font-size:18.133333pt;}
.fs5_c00316{font-size:22.666667pt;}
.fs2_c00316{font-size:25.706667pt;}
.fs4_c00316{font-size:28.746667pt;}
.fs0_c00316{font-size:31.733333pt;}
.y0_c00316{bottom:0.000000pt;}
.y3_c00316{bottom:202.266667pt;}
.ybe_c00316{bottom:227.800000pt;}
.ybb_c00316{bottom:228.173333pt;}
.ybc_c00316{bottom:228.560000pt;}
.ybd_c00316{bottom:229.506667pt;}
.yb8_c00316{bottom:240.560000pt;}
.yba_c00316{bottom:241.133333pt;}
.yb9_c00316{bottom:241.506667pt;}
.yb6_c00316{bottom:252.560000pt;}
.yb7_c00316{bottom:253.506667pt;}
.yb3_c00316{bottom:265.133333pt;}
.yb2_c00316{bottom:265.506667pt;}
.yb5_c00316{bottom:265.893333pt;}
.yb4_c00316{bottom:266.840000pt;}
.yad_c00316{bottom:276.173333pt;}
.yac_c00316{bottom:277.506667pt;}
.yae_c00316{bottom:277.893333pt;}
.yb0_c00316{bottom:278.466667pt;}
.yaf_c00316{bottom:278.840000pt;}
.yb1_c00316{bottom:280.173333pt;}
.ya9_c00316{bottom:289.506667pt;}
.yaa_c00316{bottom:289.893333pt;}
.yab_c00316{bottom:290.466667pt;}
.ya8_c00316{bottom:290.840000pt;}
.ya4_c00316{bottom:301.506667pt;}
.ya2_c00316{bottom:301.893333pt;}
.ya6_c00316{bottom:302.466667pt;}
.ya3_c00316{bottom:302.840000pt;}
.ya7_c00316{bottom:304.173333pt;}
.ya5_c00316{bottom:306.840000pt;}
.ya0_c00316{bottom:313.893333pt;}
.y9f_c00316{bottom:314.840000pt;}
.ya1_c00316{bottom:316.173333pt;}
.y9e_c00316{bottom:326.840000pt;}
.y9c_c00316{bottom:327.226667pt;}
.y9d_c00316{bottom:328.173333pt;}
.y9b_c00316{bottom:340.173333pt;}
.y99_c00316{bottom:351.226667pt;}
.y9a_c00316{bottom:352.173333pt;}
.y98_c00316{bottom:363.226667pt;}
.y97_c00316{bottom:364.173333pt;}
.y95_c00316{bottom:375.226667pt;}
.y96_c00316{bottom:376.560000pt;}
.y92_c00316{bottom:392.173333pt;}
.y93_c00316{bottom:393.506667pt;}
.y94_c00316{bottom:393.893333pt;}
.y8f_c00316{bottom:403.226667pt;}
.y91_c00316{bottom:404.560000pt;}
.y90_c00316{bottom:405.506667pt;}
.y8e_c00316{bottom:426.640000pt;}
.y8d_c00316{bottom:427.600000pt;}
.y8a_c00316{bottom:438.066667pt;}
.y89_c00316{bottom:439.026667pt;}
.y8b_c00316{bottom:439.973333pt;}
.y8c_c00316{bottom:440.933333pt;}
.y88_c00316{bottom:451.400000pt;}
.y86_c00316{bottom:453.306667pt;}
.y87_c00316{bottom:454.266667pt;}
.y85_c00316{bottom:469.306667pt;}
.y84_c00316{bottom:471.600000pt;}
.y83_c00316{bottom:502.066667pt;}
.y80_c00316{bottom:502.440000pt;}
.y81_c00316{bottom:503.226667pt;}
.y82_c00316{bottom:503.400000pt;}
.y7f_c00316{bottom:504.360000pt;}
.y7e_c00316{bottom:519.773333pt;}
.y7d_c00316{bottom:521.693333pt;}
.y7b_c00316{bottom:537.106667pt;}
.y7c_c00316{bottom:538.266667pt;}
.y78_c00316{bottom:539.026667pt;}
.y79_c00316{bottom:539.040000pt;}
.y7a_c00316{bottom:539.973333pt;}
.y73_c00316{bottom:553.693333pt;}
.y76_c00316{bottom:555.773333pt;}
.y72_c00316{bottom:556.360000pt;}
.y74_c00316{bottom:556.560000pt;}
.y75_c00316{bottom:557.306667pt;}
.y77_c00316{bottom:557.693333pt;}
.y6b_c00316{bottom:571.026667pt;}
.y6d_c00316{bottom:571.773333pt;}
.y6c_c00316{bottom:571.973333pt;}
.y70_c00316{bottom:573.106667pt;}
.y71_c00316{bottom:573.893333pt;}
.y6f_c00316{bottom:574.640000pt;}
.y6e_c00316{bottom:575.026667pt;}
.y68_c00316{bottom:589.693333pt;}
.y65_c00316{bottom:590.440000pt;}
.y6a_c00316{bottom:590.640000pt;}
.y66_c00316{bottom:591.226667pt;}
.y69_c00316{bottom:591.400000pt;}
.y64_c00316{bottom:591.973333pt;}
.y67_c00316{bottom:592.360000pt;}
.y60_c00316{bottom:606.640000pt;}
.y5f_c00316{bottom:607.773333pt;}
.y61_c00316{bottom:608.560000pt;}
.y62_c00316{bottom:609.306667pt;}
.y5e_c00316{bottom:609.693333pt;}
.y63_c00316{bottom:610.640000pt;}
.y5c_c00316{bottom:623.973333pt;}
.y5a_c00316{bottom:624.360000pt;}
.y59_c00316{bottom:625.106667pt;}
.y5d_c00316{bottom:625.306667pt;}
.y5b_c00316{bottom:626.066667pt;}
.y58_c00316{bottom:627.026667pt;}
.y56_c00316{bottom:642.440000pt;}
.y54_c00316{bottom:644.360000pt;}
.y57_c00316{bottom:644.560000pt;}
.y55_c00316{bottom:645.306667pt;}
.y52_c00316{bottom:660.733333pt;}
.y50_c00316{bottom:661.106667pt;}
.y51_c00316{bottom:661.693333pt;}
.y53_c00316{bottom:663.026667pt;}
.y4e_c00316{bottom:678.440000pt;}
.y4f_c00316{bottom:679.226667pt;}
.y4d_c00316{bottom:679.400000pt;}
.y4c_c00316{bottom:680.360000pt;}
.y4a_c00316{bottom:694.640000pt;}
.y48_c00316{bottom:695.773333pt;}
.y47_c00316{bottom:696.360000pt;}
.y4b_c00316{bottom:696.560000pt;}
.y49_c00316{bottom:697.693333pt;}
.y42_c00316{bottom:713.106667pt;}
.y43_c00316{bottom:713.893333pt;}
.y44_c00316{bottom:714.066667pt;}
.y46_c00316{bottom:715.026667pt;}
.y45_c00316{bottom:715.973333pt;}
.y41_c00316{bottom:730.440000pt;}
.y40_c00316{bottom:732.360000pt;}
.y3f_c00316{bottom:747.026667pt;}
.y3b_c00316{bottom:747.773333pt;}
.y3a_c00316{bottom:748.560000pt;}
.y3d_c00316{bottom:748.733333pt;}
.y39_c00316{bottom:749.693333pt;}
.y3c_c00316{bottom:749.893333pt;}
.y3e_c00316{bottom:750.640000pt;}
.y36_c00316{bottom:763.973333pt;}
.y37_c00316{bottom:765.106667pt;}
.y35_c00316{bottom:765.693333pt;}
.y33_c00316{bottom:765.893333pt;}
.y34_c00316{bottom:767.026667pt;}
.y38_c00316{bottom:767.226667pt;}
.y2e_c00316{bottom:783.400000pt;}
.y31_c00316{bottom:783.773333pt;}
.y30_c00316{bottom:784.360000pt;}
.y2d_c00316{bottom:784.560000pt;}
.y2f_c00316{bottom:785.306667pt;}
.y32_c00316{bottom:785.693333pt;}
.y28_c00316{bottom:799.026667pt;}
.y29_c00316{bottom:799.773333pt;}
.y2b_c00316{bottom:801.106667pt;}
.y27_c00316{bottom:801.693333pt;}
.y2c_c00316{bottom:802.066667pt;}
.y2a_c00316{bottom:803.026667pt;}
.y23_c00316{bottom:817.106667pt;}
.y25_c00316{bottom:818.440000pt;}
.y24_c00316{bottom:819.026667pt;}
.y22_c00316{bottom:819.226667pt;}
.y26_c00316{bottom:820.360000pt;}
.y1f_c00316{bottom:835.773333pt;}
.y21_c00316{bottom:836.560000pt;}
.y20_c00316{bottom:836.733333pt;}
.y1e_c00316{bottom:837.693333pt;}
.y1b_c00316{bottom:853.106667pt;}
.y1c_c00316{bottom:854.066667pt;}
.y19_c00316{bottom:855.026667pt;}
.y1d_c00316{bottom:855.226667pt;}
.y1a_c00316{bottom:855.973333pt;}
.y16_c00316{bottom:869.306667pt;}
.y17_c00316{bottom:871.226667pt;}
.y18_c00316{bottom:873.306667pt;}
.y14_c00316{bottom:887.773333pt;}
.y15_c00316{bottom:888.560000pt;}
.y13_c00316{bottom:888.733333pt;}
.y12_c00316{bottom:889.693333pt;}
.y11_c00316{bottom:904.733333pt;}
.ye_c00316{bottom:905.106667pt;}
.yd_c00316{bottom:906.066667pt;}
.yf_c00316{bottom:907.026667pt;}
.y10_c00316{bottom:907.973333pt;}
.yc_c00316{bottom:922.440000pt;}
.yb_c00316{bottom:923.226667pt;}
.ya_c00316{bottom:924.360000pt;}
.y5_c00316{bottom:939.773333pt;}
.y7_c00316{bottom:940.733333pt;}
.y9_c00316{bottom:941.106667pt;}
.y4_c00316{bottom:941.693333pt;}
.y6_c00316{bottom:941.893333pt;}
.y8_c00316{bottom:943.026667pt;}
.y2_c00316{bottom:975.600000pt;}
.y1_c00316{bottom:975.773333pt;}
.h8_c00316{height:3.739141pt;}
.hc_c00316{height:12.988594pt;}
.h9_c00316{height:14.890964pt;}
.hb_c00316{height:20.224297pt;}
.h4_c00316{height:20.466875pt;}
.h2_c00316{height:22.303646pt;}
.ha_c00316{height:25.800208pt;}
.h6_c00316{height:27.879557pt;}
.h3_c00316{height:31.618698pt;}
.h5_c00316{height:35.357839pt;}
.h1_c00316{height:39.031380pt;}
.h7_c00316{height:42.285365pt;}
.h0_c00316{height:1186.666667pt;}
.w0_c00316{width:782.666667pt;}
.x0_c00316{left:0.000000pt;}
.x4_c00316{left:134.666667pt;}
.x3e_c00316{left:147.626667pt;}
.xc7_c00316{left:148.573333pt;}
.x2f_c00316{left:151.040000pt;}
.xb8_c00316{left:152.000000pt;}
.x15_c00316{left:153.333333pt;}
.x5_c00316{left:162.666667pt;}
.xc0_c00316{left:166.666667pt;}
.x16_c00316{left:170.293333pt;}
.x62_c00316{left:172.373333pt;}
.x30_c00316{left:174.666667pt;}
.x88_c00316{left:176.000000pt;}
.x6_c00316{left:177.706667pt;}
.x3b_c00316{left:180.000000pt;}
.xb9_c00316{left:184.000000pt;}
.x96_c00316{left:185.333333pt;}
.x23_c00316{left:187.040000pt;}
.x8f_c00316{left:189.333333pt;}
.xaf_c00316{left:191.040000pt;}
.x71_c00316{left:192.373333pt;}
.x6b_c00316{left:193.706667pt;}
.x3f_c00316{left:195.040000pt;}
.x3c_c00316{left:198.666667pt;}
.x83_c00316{left:200.000000pt;}
.x31_c00316{left:201.333333pt;}
.x5a_c00316{left:204.000000pt;}
.xc1_c00316{left:205.333333pt;}
.xc8_c00316{left:210.666667pt;}
.x7_c00316{left:213.706667pt;}
.x32_c00316{left:216.000000pt;}
.x17_c00316{left:217.706667pt;}
.x4f_c00316{left:221.706667pt;}
.x79_c00316{left:223.040000pt;}
.x3d_c00316{left:224.000000pt;}
.x6c_c00316{left:227.040000pt;}
.xc9_c00316{left:228.000000pt;}
.x97_c00316{left:232.373333pt;}
.xba_c00316{left:234.466667pt;}
.x9c_c00316{left:236.000000pt;}
.xa1_c00316{left:241.333333pt;}
.x18_c00316{left:242.666667pt;}
.x5b_c00316{left:245.333333pt;}
.x8_c00316{left:248.000000pt;}
.x63_c00316{left:249.333333pt;}
.x54_c00316{left:250.666667pt;}
.x33_c00316{left:253.706667pt;}
.x90_c00316{left:254.666667pt;}
.x40_c00316{left:256.000000pt;}
.x7a_c00316{left:257.706667pt;}
.xc2_c00316{left:258.666667pt;}
.xda_c00316{left:261.706667pt;}
.xd6_c00316{left:262.666667pt;}
.x41_c00316{left:264.000000pt;}
.x9_c00316{left:264.960000pt;}
.xdf_c00316{left:266.666667pt;}
.xea_c00316{left:267.626667pt;}
.xb0_c00316{left:269.333333pt;}
.xa7_c00316{left:271.040000pt;}
.x24_c00316{left:272.000000pt;}
.xa2_c00316{left:276.000000pt;}
.x42_c00316{left:278.666667pt;}
.x5c_c00316{left:284.760000pt;}
.xe0_c00316{left:286.293333pt;}
.x64_c00316{left:289.333333pt;}
.x19_c00316{left:290.293333pt;}
.xc3_c00316{left:292.000000pt;}
.x84_c00316{left:293.333333pt;}
.x91_c00316{left:295.040000pt;}
.xeb_c00316{left:296.000000pt;}
.x34_c00316{left:296.960000pt;}
.xe4_c00316{left:298.293333pt;}
.xe5_c00316{left:300.000000pt;}
.x72_c00316{left:301.333333pt;}
.x43_c00316{left:304.000000pt;}
.x1a_c00316{left:307.040000pt;}
.xa_c00316{left:310.666667pt;}
.x7b_c00316{left:312.000000pt;}
.x65_c00316{left:315.040000pt;}
.x44_c00316{left:316.000000pt;}
.xa8_c00316{left:316.960000pt;}
.x73_c00316{left:318.666667pt;}
.x25_c00316{left:320.373333pt;}
.x92_c00316{left:321.333333pt;}
.x98_c00316{left:322.293333pt;}
.x35_c00316{left:324.000000pt;}
.xb_c00316{left:328.373333pt;}
.x45_c00316{left:329.333333pt;}
.xca_c00316{left:331.240000pt;}
.x1b_c00316{left:333.706667pt;}
.x55_c00316{left:334.666667pt;}
.xdb_c00316{left:336.960000pt;}
.x89_c00316{left:338.666667pt;}
.xa3_c00316{left:340.000000pt;}
.xb1_c00316{left:341.333333pt;}
.xbb_c00316{left:342.666667pt;}
.x26_c00316{left:344.000000pt;}
.x46_c00316{left:345.333333pt;}
.x85_c00316{left:346.666667pt;}
.x99_c00316{left:347.626667pt;}
.x66_c00316{left:350.666667pt;}
.xc_c00316{left:352.960000pt;}
.xe6_c00316{left:356.373333pt;}
.x2_c00316{left:357.333333pt;}
.xbc_c00316{left:360.000000pt;}
.x47_c00316{left:361.333333pt;}
.x5d_c00316{left:362.666667pt;}
.xec_c00316{left:364.373333pt;}
.xd4_c00316{left:365.333333pt;}
.xa9_c00316{left:366.666667pt;}
.x67_c00316{left:368.373333pt;}
.x74_c00316{left:369.706667pt;}
.x8a_c00316{left:372.373333pt;}
.xa4_c00316{left:374.666667pt;}
.xb2_c00316{left:375.626667pt;}
.x7c_c00316{left:377.333333pt;}
.x27_c00316{left:380.000000pt;}
.x6d_c00316{left:382.666667pt;}
.xde_c00316{left:386.666667pt;}
.x1c_c00316{left:387.626667pt;}
.xcb_c00316{left:393.333333pt;}
.xd1_c00316{left:394.666667pt;}
.xbd_c00316{left:397.333333pt;}
.x7d_c00316{left:399.040000pt;}
.xe7_c00316{left:400.000000pt;}
.xed_c00316{left:401.333333pt;}
.xb3_c00316{left:402.666667pt;}
.xd5_c00316{left:405.333333pt;}
.xd_c00316{left:406.666667pt;}
.x50_c00316{left:408.373333pt;}
.x9d_c00316{left:409.706667pt;}
.x9a_c00316{left:411.040000pt;}
.x75_c00316{left:412.000000pt;}
.xe2_c00316{left:413.333333pt;}
.x28_c00316{left:414.293333pt;}
.x36_c00316{left:417.706667pt;}
.xcc_c00316{left:419.040000pt;}
.xd7_c00316{left:420.000000pt;}
.x48_c00316{left:421.333333pt;}
.x5e_c00316{left:422.666667pt;}
.x7e_c00316{left:424.000000pt;}
.xbe_c00316{left:428.373333pt;}
.xdc_c00316{left:429.333333pt;}
.x29_c00316{left:432.000000pt;}
.xc4_c00316{left:434.666667pt;}
.xa5_c00316{left:435.626667pt;}
.x5f_c00316{left:436.760000pt;}
.x49_c00316{left:439.040000pt;}
.xe8_c00316{left:440.000000pt;}
.xe_c00316{left:440.960000pt;}
.x1d_c00316{left:444.373333pt;}
.xd2_c00316{left:445.333333pt;}
.x9b_c00316{left:446.666667pt;}
.x76_c00316{left:448.000000pt;}
.x37_c00316{left:451.040000pt;}
.xe9_c00316{left:452.000000pt;}
.x68_c00316{left:454.666667pt;}
.x2a_c00316{left:456.373333pt;}
.x7f_c00316{left:464.760000pt;}
.x93_c00316{left:466.666667pt;}
.xf_c00316{left:468.000000pt;}
.x8b_c00316{left:470.293333pt;}
.xaa_c00316{left:472.000000pt;}
.x38_c00316{left:473.706667pt;}
.xd8_c00316{left:476.960000pt;}
.x1e_c00316{left:479.626667pt;}
.x2b_c00316{left:483.626667pt;}
.x10_c00316{left:484.960000pt;}
.x4a_c00316{left:487.040000pt;}
.x6e_c00316{left:488.373333pt;}
.x69_c00316{left:489.706667pt;}
.xd9_c00316{left:490.666667pt;}
.x80_c00316{left:493.706667pt;}
.xe1_c00316{left:495.040000pt;}
.xcd_c00316{left:496.000000pt;}
.xab_c00316{left:497.333333pt;}
.xe3_c00316{left:498.666667pt;}
.xc5_c00316{left:500.000000pt;}
.xdd_c00316{left:501.333333pt;}
.xb4_c00316{left:502.666667pt;}
.x60_c00316{left:504.373333pt;}
.x11_c00316{left:505.333333pt;}
.x56_c00316{left:508.000000pt;}
.x1f_c00316{left:509.333333pt;}
.x2c_c00316{left:512.373333pt;}
.x39_c00316{left:514.666667pt;}
.x51_c00316{left:518.666667pt;}
.x4b_c00316{left:520.373333pt;}
.xd3_c00316{left:523.040000pt;}
.xc6_c00316{left:524.000000pt;}
.x57_c00316{left:525.706667pt;}
.x61_c00316{left:528.000000pt;}
.xce_c00316{left:528.960000pt;}
.xac_c00316{left:534.666667pt;}
.x2d_c00316{left:535.626667pt;}
.xbf_c00316{left:538.666667pt;}
.x20_c00316{left:541.706667pt;}
.x4c_c00316{left:544.000000pt;}
.x8c_c00316{left:548.373333pt;}
.x9e_c00316{left:550.293333pt;}
.x58_c00316{left:551.626667pt;}
.x6a_c00316{left:553.333333pt;}
.x94_c00316{left:557.706667pt;}
.x86_c00316{left:559.040000pt;}
.x3a_c00316{left:565.333333pt;}
.xb5_c00316{left:566.666667pt;}
.xad_c00316{left:567.626667pt;}
.xcf_c00316{left:570.293333pt;}
.x12_c00316{left:572.000000pt;}
.xa6_c00316{left:573.133333pt;}
.x21_c00316{left:574.666667pt;}
.x8d_c00316{left:576.000000pt;}
.x4d_c00316{left:577.333333pt;}
.x9f_c00316{left:578.466667pt;}
.x81_c00316{left:580.373333pt;}
.x52_c00316{left:584.960000pt;}
.x13_c00316{left:586.666667pt;}
.x59_c00316{left:588.960000pt;}
.x6f_c00316{left:593.706667pt;}
.x8e_c00316{left:595.040000pt;}
.x77_c00316{left:597.333333pt;}
.xb6_c00316{left:600.000000pt;}
.x14_c00316{left:601.706667pt;}
.x22_c00316{left:603.040000pt;}
.x82_c00316{left:606.666667pt;}
.xd0_c00316{left:608.000000pt;}
.x78_c00316{left:612.373333pt;}
.x87_c00316{left:614.666667pt;}
.x4e_c00316{left:616.373333pt;}
.x70_c00316{left:617.706667pt;}
.x2e_c00316{left:621.333333pt;}
.xa0_c00316{left:622.666667pt;}
.xb7_c00316{left:623.626667pt;}
.x95_c00316{left:624.960000pt;}
.x1_c00316{left:626.666667pt;}
.x53_c00316{left:628.000000pt;}
.xae_c00316{left:628.960000pt;}
.x3_c00316{left:640.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_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_8403198fbad996c24f5ba39b.woff2')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:1.688965;font-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_c00317{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m10e_c00317{transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);}
.md7_c00317{transform:matrix(0.343558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343558,0.000000,0.000000,0.250000,0,0);}
.m10d_c00317{transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);}
.m110_c00317{transform:matrix(0.358129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358129,0.000000,0.000000,0.250000,0,0);}
.mb9_c00317{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m76_c00317{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m10b_c00317{transform:matrix(0.360924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360924,0.000000,0.000000,0.250000,0,0);}
.mfe_c00317{transform:matrix(0.361580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361580,0.000000,0.000000,0.250000,0,0);}
.md1_c00317{transform:matrix(0.364264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364264,0.000000,0.000000,0.250000,0,0);}
.m10c_c00317{transform:matrix(0.364647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364647,0.000000,0.000000,0.250000,0,0);}
.m4d_c00317{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m39_c00317{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.md0_c00317{transform:matrix(0.368865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368865,0.000000,0.000000,0.250000,0,0);}
.m109_c00317{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m77_c00317{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m99_c00317{transform:matrix(0.371429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371429,0.000000,0.000000,0.250000,0,0);}
.m2d_c00317{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mda_c00317{transform:matrix(0.373083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373083,0.000000,0.000000,0.250000,0,0);}
.mbd_c00317{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m27_c00317{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m74_c00317{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.me7_c00317{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m4e_c00317{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mdb_c00317{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m10f_c00317{transform:matrix(0.389187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389187,0.000000,0.000000,0.250000,0,0);}
.m2c_c00317{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m73_c00317{transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);}
.m13_c00317{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.mfd_c00317{transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393021,0.000000,0.000000,0.250000,0,0);}
.m19_c00317{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.mb6_c00317{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.mc6_c00317{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m52_c00317{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m97_c00317{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.m1d_c00317{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.mb7_c00317{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m94_c00317{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mee_c00317{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.mc5_c00317{transform:matrix(0.405291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405291,0.000000,0.000000,0.250000,0,0);}
.m87_c00317{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m95_c00317{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m91_c00317{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.ma4_c00317{transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);}
.me0_c00317{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m81_c00317{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mdc_c00317{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.mb5_c00317{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.m9a_c00317{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mca_c00317{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.md2_c00317{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.me1_c00317{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m80_c00317{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mff_c00317{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m51_c00317{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m3c_c00317{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m3_c00317{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m90_c00317{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.mb2_c00317{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m104_c00317{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m62_c00317{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m20_c00317{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m4b_c00317{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.md6_c00317{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.mb8_c00317{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m7a_c00317{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m7b_c00317{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m5b_c00317{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.ma8_c00317{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.mf6_c00317{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m35_c00317{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m84_c00317{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.mf_c00317{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m5d_c00317{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m37_c00317{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mc0_c00317{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.m72_c00317{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m75_c00317{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.mec_c00317{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m38_c00317{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m30_c00317{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m6_c00317{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.mab_c00317{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.mf5_c00317{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.mba_c00317{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.maa_c00317{transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);}
.md3_c00317{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m23_c00317{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m44_c00317{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.mfa_c00317{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m61_c00317{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m6a_c00317{transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);}
.m16_c00317{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m26_c00317{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.mf9_c00317{transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);}
.mde_c00317{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m6c_c00317{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m41_c00317{transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);}
.m8e_c00317{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.mdf_c00317{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m63_c00317{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m5f_c00317{transform:matrix(0.463025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463025,0.000000,0.000000,0.250000,0,0);}
.m98_c00317{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.me8_c00317{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.mb1_c00317{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mf4_c00317{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m24_c00317{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m36_c00317{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mf3_c00317{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m14_c00317{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m9_c00317{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m25_c00317{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m9e_c00317{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m93_c00317{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.me_c00317{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m50_c00317{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m0_c00317{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m2e_c00317{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m4_c00317{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mf0_c00317{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m9c_c00317{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m3e_c00317{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m48_c00317{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_c00317{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m3b_c00317{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m103_c00317{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.maf_c00317{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.me3_c00317{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mf1_c00317{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.md9_c00317{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.ma9_c00317{transform:matrix(0.507421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507421,0.000000,0.000000,0.250000,0,0);}
.m102_c00317{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mbb_c00317{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m8c_c00317{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mc2_c00317{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.me9_c00317{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m58_c00317{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mb4_c00317{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.mfc_c00317{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.mcc_c00317{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m12_c00317{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.ma3_c00317{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.ma0_c00317{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.ma6_c00317{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mac_c00317{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.me2_c00317{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.ma_c00317{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m68_c00317{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m3d_c00317{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m29_c00317{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mb_c00317{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m22_c00317{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mc9_c00317{transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);}
.md5_c00317{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m2b_c00317{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m15_c00317{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m21_c00317{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m89_c00317{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m5e_c00317{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m3f_c00317{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mc_c00317{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.me6_c00317{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m32_c00317{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m42_c00317{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m64_c00317{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m1b_c00317{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m46_c00317{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m107_c00317{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.mad_c00317{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m5_c00317{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mfb_c00317{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m6e_c00317{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m92_c00317{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m1f_c00317{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m60_c00317{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m71_c00317{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mef_c00317{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);}
.m33_c00317{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m4c_c00317{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.ma1_c00317{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mc1_c00317{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.md_c00317{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m88_c00317{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m2_c00317{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mb3_c00317{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m47_c00317{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mdd_c00317{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m101_c00317{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m28_c00317{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m78_c00317{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m5c_c00317{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mbf_c00317{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.ma7_c00317{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mf7_c00317{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m2a_c00317{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m6b_c00317{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m4a_c00317{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m10_c00317{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mae_c00317{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.mb0_c00317{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.mc3_c00317{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m18_c00317{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m45_c00317{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m83_c00317{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m54_c00317{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m7e_c00317{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m5a_c00317{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.md8_c00317{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m31_c00317{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.m8_c00317{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m65_c00317{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m34_c00317{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.me5_c00317{transform:matrix(0.590445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590445,0.000000,0.000000,0.250000,0,0);}
.m70_c00317{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.mbe_c00317{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.meb_c00317{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mf8_c00317{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m69_c00317{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.md4_c00317{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.m40_c00317{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m8d_c00317{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.mbc_c00317{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);}
.m96_c00317{transform:matrix(0.601763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601763,0.000000,0.000000,0.250000,0,0);}
.m8f_c00317{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m9f_c00317{transform:matrix(0.608235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608235,0.000000,0.000000,0.250000,0,0);}
.mc7_c00317{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m66_c00317{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m1_c00317{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m11_c00317{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m7f_c00317{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m1a_c00317{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m7_c00317{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m79_c00317{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m10a_c00317{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.m1c_c00317{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m6d_c00317{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.m49_c00317{transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);}
.mcf_c00317{transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);}
.m53_c00317{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_c00317{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mce_c00317{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mcd_c00317{transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);}
.m82_c00317{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.med_c00317{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m67_c00317{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m9d_c00317{transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);}
.m108_c00317{transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);}
.me4_c00317{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.mc4_c00317{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.mf2_c00317{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m3a_c00317{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m55_c00317{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m106_c00317{transform:matrix(0.682692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682692,0.000000,0.000000,0.250000,0,0);}
.m7c_c00317{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mea_c00317{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m86_c00317{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mcb_c00317{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m105_c00317{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m6f_c00317{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m8b_c00317{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m8a_c00317{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m1e_c00317{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m59_c00317{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.m17_c00317{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m4f_c00317{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m7d_c00317{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mc8_c00317{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.m2f_c00317{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.ma2_c00317{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m43_c00317{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m100_c00317{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m85_c00317{transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);}
.ma5_c00317{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,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;}
.fs4_c00317{font-size:18.720000px;}
.fs1_c00317{font-size:20.400000px;}
.fs5_c00317{font-size:25.500000px;}
.fs0_c00317{font-size:28.920000px;}
.fs3_c00317{font-size:32.340000px;}
.fs2_c00317{font-size:35.700000px;}
.fs6_c00317{font-size:39.120000px;}
.y0_c00317{bottom:0.000000px;}
.yd2_c00317{bottom:247.680000px;}
.yd3_c00317{bottom:249.180000px;}
.yd5_c00317{bottom:251.130000px;}
.yd4_c00317{bottom:252.405000px;}
.yd0_c00317{bottom:268.905000px;}
.yd1_c00317{bottom:269.745000px;}
.ycd_c00317{bottom:271.905000px;}
.ycf_c00317{bottom:272.130000px;}
.yce_c00317{bottom:272.970000px;}
.ycc_c00317{bottom:289.245000px;}
.yc9_c00317{bottom:290.130000px;}
.yc8_c00317{bottom:291.405000px;}
.yca_c00317{bottom:291.630000px;}
.ycb_c00317{bottom:292.470000px;}
.yc3_c00317{bottom:308.745000px;}
.yc5_c00317{bottom:309.630000px;}
.yc4_c00317{bottom:310.905000px;}
.yc7_c00317{bottom:311.130000px;}
.yc6_c00317{bottom:311.970000px;}
.ybe_c00317{bottom:327.405000px;}
.yc0_c00317{bottom:328.680000px;}
.yc2_c00317{bottom:329.550000px;}
.ybf_c00317{bottom:330.405000px;}
.yc1_c00317{bottom:331.905000px;}
.ybc_c00317{bottom:349.245000px;}
.yba_c00317{bottom:350.970000px;}
.ybb_c00317{bottom:351.405000px;}
.ybd_c00317{bottom:352.470000px;}
.yb5_c00317{bottom:368.325000px;}
.yb7_c00317{bottom:368.745000px;}
.yb6_c00317{bottom:370.245000px;}
.yb8_c00317{bottom:370.470000px;}
.yb4_c00317{bottom:370.905000px;}
.yb9_c00317{bottom:371.130000px;}
.yb0_c00317{bottom:388.245000px;}
.yb2_c00317{bottom:388.470000px;}
.yb3_c00317{bottom:389.970000px;}
.yb1_c00317{bottom:390.405000px;}
.yaf_c00317{bottom:391.470000px;}
.yae_c00317{bottom:406.905000px;}
.yab_c00317{bottom:407.745000px;}
.yac_c00317{bottom:409.905000px;}
.yad_c00317{bottom:410.130000px;}
.ya8_c00317{bottom:426.405000px;}
.ya4_c00317{bottom:427.245000px;}
.ya3_c00317{bottom:428.325000px;}
.ya5_c00317{bottom:428.745000px;}
.yaa_c00317{bottom:429.405000px;}
.ya7_c00317{bottom:429.630000px;}
.ya9_c00317{bottom:430.470000px;}
.ya6_c00317{bottom:430.905000px;}
.y9f_c00317{bottom:446.745000px;}
.ya1_c00317{bottom:446.970000px;}
.ya0_c00317{bottom:448.245000px;}
.y9e_c00317{bottom:448.905000px;}
.ya2_c00317{bottom:449.970000px;}
.y99_c00317{bottom:466.680000px;}
.y9b_c00317{bottom:467.745000px;}
.y9c_c00317{bottom:468.630000px;}
.y9a_c00317{bottom:468.825000px;}
.y9d_c00317{bottom:469.470000px;}
.y98_c00317{bottom:469.905000px;}
.y93_c00317{bottom:486.180000px;}
.y96_c00317{bottom:486.405000px;}
.y95_c00317{bottom:487.245000px;}
.y97_c00317{bottom:488.325000px;}
.y94_c00317{bottom:489.405000px;}
.y8f_c00317{bottom:506.745000px;}
.y8d_c00317{bottom:507.630000px;}
.y92_c00317{bottom:508.470000px;}
.y91_c00317{bottom:508.905000px;}
.y90_c00317{bottom:509.130000px;}
.y8e_c00317{bottom:509.970000px;}
.y86_c00317{bottom:525.405000px;}
.y88_c00317{bottom:526.245000px;}
.y8b_c00317{bottom:526.680000px;}
.y89_c00317{bottom:527.970000px;}
.y87_c00317{bottom:528.405000px;}
.y8c_c00317{bottom:528.630000px;}
.y8a_c00317{bottom:529.470000px;}
.y81_c00317{bottom:545.745000px;}
.y84_c00317{bottom:546.825000px;}
.y85_c00317{bottom:547.245000px;}
.y80_c00317{bottom:547.905000px;}
.y83_c00317{bottom:548.970000px;}
.y82_c00317{bottom:549.405000px;}
.y7e_c00317{bottom:566.745000px;}
.y7d_c00317{bottom:567.630000px;}
.y7c_c00317{bottom:567.825000px;}
.y7b_c00317{bottom:568.905000px;}
.y7f_c00317{bottom:569.970000px;}
.y7a_c00317{bottom:586.245000px;}
.y78_c00317{bottom:586.905000px;}
.y79_c00317{bottom:588.405000px;}
.y76_c00317{bottom:605.745000px;}
.y77_c00317{bottom:606.630000px;}
.y75_c00317{bottom:607.905000px;}
.y74_c00317{bottom:624.405000px;}
.y70_c00317{bottom:625.245000px;}
.y71_c00317{bottom:626.325000px;}
.y6f_c00317{bottom:627.405000px;}
.y73_c00317{bottom:627.630000px;}
.y72_c00317{bottom:628.905000px;}
.y6e_c00317{bottom:644.745000px;}
.y6b_c00317{bottom:645.825000px;}
.y6c_c00317{bottom:646.905000px;}
.y6d_c00317{bottom:647.130000px;}
.y68_c00317{bottom:666.405000px;}
.y6a_c00317{bottom:666.630000px;}
.y69_c00317{bottom:667.470000px;}
.y64_c00317{bottom:685.245000px;}
.y63_c00317{bottom:685.905000px;}
.y66_c00317{bottom:686.130000px;}
.y67_c00317{bottom:686.325000px;}
.y62_c00317{bottom:686.970000px;}
.y65_c00317{bottom:687.405000px;}
.y5e_c00317{bottom:703.245000px;}
.y60_c00317{bottom:704.745000px;}
.y5b_c00317{bottom:705.405000px;}
.y5f_c00317{bottom:705.630000px;}
.y5d_c00317{bottom:705.825000px;}
.y5c_c00317{bottom:706.905000px;}
.y61_c00317{bottom:707.130000px;}
.y56_c00317{bottom:724.245000px;}
.y58_c00317{bottom:724.905000px;}
.y54_c00317{bottom:725.130000px;}
.y5a_c00317{bottom:725.325000px;}
.y55_c00317{bottom:725.970000px;}
.y57_c00317{bottom:726.405000px;}
.y59_c00317{bottom:727.470000px;}
.y50_c00317{bottom:742.245000px;}
.y4f_c00317{bottom:742.470000px;}
.y53_c00317{bottom:743.325000px;}
.y51_c00317{bottom:743.745000px;}
.y4e_c00317{bottom:744.630000px;}
.y52_c00317{bottom:745.470000px;}
.y4d_c00317{bottom:745.905000px;}
.y48_c00317{bottom:762.180000px;}
.y47_c00317{bottom:763.245000px;}
.y4b_c00317{bottom:764.550000px;}
.y49_c00317{bottom:765.405000px;}
.y4a_c00317{bottom:765.630000px;}
.y4c_c00317{bottom:766.905000px;}
.y46_c00317{bottom:781.905000px;}
.y45_c00317{bottom:784.245000px;}
.y42_c00317{bottom:784.905000px;}
.y44_c00317{bottom:785.130000px;}
.y43_c00317{bottom:786.405000px;}
.y41_c00317{bottom:803.325000px;}
.y40_c00317{bottom:803.745000px;}
.y3e_c00317{bottom:804.405000px;}
.y3f_c00317{bottom:805.470000px;}
.y37_c00317{bottom:821.745000px;}
.y39_c00317{bottom:823.245000px;}
.y38_c00317{bottom:823.905000px;}
.y3b_c00317{bottom:824.130000px;}
.y3d_c00317{bottom:824.325000px;}
.y3c_c00317{bottom:824.970000px;}
.y3a_c00317{bottom:825.405000px;}
.y36_c00317{bottom:840.405000px;}
.y34_c00317{bottom:842.745000px;}
.y33_c00317{bottom:843.630000px;}
.y35_c00317{bottom:844.470000px;}
.y32_c00317{bottom:844.905000px;}
.y2f_c00317{bottom:862.245000px;}
.y30_c00317{bottom:863.970000px;}
.y31_c00317{bottom:864.405000px;}
.y2e_c00317{bottom:880.905000px;}
.y2d_c00317{bottom:881.745000px;}
.y2b_c00317{bottom:883.470000px;}
.y2a_c00317{bottom:883.905000px;}
.y2c_c00317{bottom:884.970000px;}
.y27_c00317{bottom:901.245000px;}
.y28_c00317{bottom:903.405000px;}
.y29_c00317{bottom:903.630000px;}
.y24_c00317{bottom:922.245000px;}
.y23_c00317{bottom:922.905000px;}
.y26_c00317{bottom:923.970000px;}
.y25_c00317{bottom:924.405000px;}
.y20_c00317{bottom:939.405000px;}
.y1d_c00317{bottom:941.745000px;}
.y21_c00317{bottom:942.630000px;}
.y22_c00317{bottom:942.825000px;}
.y1f_c00317{bottom:943.470000px;}
.y1e_c00317{bottom:943.905000px;}
.y1b_c00317{bottom:959.745000px;}
.y1a_c00317{bottom:961.905000px;}
.y19_c00317{bottom:962.130000px;}
.y1c_c00317{bottom:963.405000px;}
.y18_c00317{bottom:980.325000px;}
.y16_c00317{bottom:980.745000px;}
.y14_c00317{bottom:981.405000px;}
.y17_c00317{bottom:981.630000px;}
.y15_c00317{bottom:982.905000px;}
.y10_c00317{bottom:997.905000px;}
.y11_c00317{bottom:1000.245000px;}
.y13_c00317{bottom:1001.130000px;}
.y12_c00317{bottom:1002.405000px;}
.yd_c00317{bottom:1019.745000px;}
.ye_c00317{bottom:1020.630000px;}
.yf_c00317{bottom:1020.825000px;}
.ya_c00317{bottom:1021.470000px;}
.yb_c00317{bottom:1021.905000px;}
.yc_c00317{bottom:1022.970000px;}
.y6_c00317{bottom:1039.245000px;}
.y7_c00317{bottom:1040.325000px;}
.y5_c00317{bottom:1041.405000px;}
.y8_c00317{bottom:1041.630000px;}
.y9_c00317{bottom:1042.470000px;}
.y4_c00317{bottom:1058.745000px;}
.y3_c00317{bottom:1060.905000px;}
.y2_c00317{bottom:1099.050000px;}
.y1_c00317{bottom:1099.905000px;}
.h5_c00317{height:23.025234px;}
.h2_c00317{height:25.091602px;}
.h6_c00317{height:31.364502px;}
.h1_c00317{height:35.571035px;}
.h4_c00317{height:39.777568px;}
.h3_c00317{height:43.910303px;}
.h7_c00317{height:48.116836px;}
.h0_c00317{height:1335.000000px;}
.w0_c00317{width:880.500000px;}
.x0_c00317{left:0.000000px;}
.x1_c00317{left:152.580000px;}
.x70_c00317{left:153.645000px;}
.xf9_c00317{left:154.920000px;}
.xf2_c00317{left:168.000000px;}
.x76_c00317{left:169.500000px;}
.x3f_c00317{left:172.500000px;}
.x28_c00317{left:174.855000px;}
.x9d_c00317{left:178.500000px;}
.x1d_c00317{left:179.580000px;}
.x54_c00317{left:181.500000px;}
.x3_c00317{left:183.420000px;}
.xbf_c00317{left:189.000000px;}
.x8e_c00317{left:190.080000px;}
.x11_c00317{left:191.580000px;}
.x98_c00317{left:193.500000px;}
.xad_c00317{left:194.580000px;}
.xc3_c00317{left:196.080000px;}
.x9e_c00317{left:198.000000px;}
.x55_c00317{left:199.080000px;}
.x7d_c00317{left:202.920000px;}
.xd2_c00317{left:204.420000px;}
.xba_c00317{left:207.000000px;}
.x86_c00317{left:208.080000px;}
.x29_c00317{left:209.775000px;}
.xcb_c00317{left:214.920000px;}
.xb5_c00317{left:216.000000px;}
.xc4_c00317{left:217.080000px;}
.xfc_c00317{left:219.000000px;}
.x49_c00317{left:222.000000px;}
.x71_c00317{left:223.080000px;}
.x12_c00317{left:225.420000px;}
.x40_c00317{left:226.500000px;}
.x87_c00317{left:228.000000px;}
.xe5_c00317{left:229.920000px;}
.x1e_c00317{left:231.000000px;}
.x8f_c00317{left:232.920000px;}
.xae_c00317{left:234.420000px;}
.xea_c00317{left:235.920000px;}
.x4a_c00317{left:237.000000px;}
.x33_c00317{left:238.500000px;}
.x4_c00317{left:240.420000px;}
.xc1_c00317{left:242.355000px;}
.x72_c00317{left:243.420000px;}
.x65_c00317{left:244.500000px;}
.x108_c00317{left:246.000000px;}
.x56_c00317{left:248.580000px;}
.xbb_c00317{left:253.500000px;}
.x2a_c00317{left:255.000000px;}
.x1f_c00317{left:256.920000px;}
.x109_c00317{left:262.500000px;}
.x4b_c00317{left:264.420000px;}
.x66_c00317{left:265.920000px;}
.xd3_c00317{left:267.000000px;}
.x88_c00317{left:268.080000px;}
.x34_c00317{left:270.000000px;}
.xcc_c00317{left:273.000000px;}
.xfd_c00317{left:274.500000px;}
.x13_c00317{left:275.580000px;}
.x77_c00317{left:277.500000px;}
.xde_c00317{left:278.580000px;}
.x5_c00317{left:280.080000px;}
.x73_c00317{left:283.500000px;}
.xfa_c00317{left:286.920000px;}
.xd4_c00317{left:288.000000px;}
.xf3_c00317{left:289.080000px;}
.x41_c00317{left:291.000000px;}
.x67_c00317{left:293.580000px;}
.x2b_c00317{left:295.500000px;}
.x90_c00317{left:296.580000px;}
.xc5_c00317{left:298.080000px;}
.x4c_c00317{left:299.580000px;}
.xbc_c00317{left:301.920000px;}
.x20_c00317{left:303.000000px;}
.x92_c00317{left:304.080000px;}
.x14_c00317{left:306.000000px;}
.xc0_c00317{left:309.420000px;}
.x89_c00317{left:310.500000px;}
.x5e_c00317{left:312.000000px;}
.x42_c00317{left:313.500000px;}
.x99_c00317{left:315.000000px;}
.xeb_c00317{left:316.500000px;}
.x6_c00317{left:318.420000px;}
.x57_c00317{left:321.000000px;}
.x78_c00317{left:324.000000px;}
.xc2_c00317{left:325.500000px;}
.xcd_c00317{left:326.580000px;}
.xa6_c00317{left:328.500000px;}
.x4d_c00317{left:331.500000px;}
.x21_c00317{left:332.580000px;}
.x5f_c00317{left:334.500000px;}
.x10a_c00317{left:335.580000px;}
.x68_c00317{left:336.645000px;}
.xdc_c00317{left:337.920000px;}
.x35_c00317{left:339.000000px;}
.xd5_c00317{left:340.500000px;}
.xd8_c00317{left:342.420000px;}
.x15_c00317{left:346.920000px;}
.x4e_c00317{left:348.000000px;}
.xef_c00317{left:351.000000px;}
.x7e_c00317{left:352.500000px;}
.xce_c00317{left:355.080000px;}
.xdf_c00317{left:356.580000px;}
.x58_c00317{left:358.500000px;}
.x9f_c00317{left:359.580000px;}
.x2c_c00317{left:363.000000px;}
.x22_c00317{left:364.500000px;}
.x7f_c00317{left:366.000000px;}
.x74_c00317{left:367.500000px;}
.x93_c00317{left:369.000000px;}
.x91_c00317{left:376.500000px;}
.x8a_c00317{left:379.500000px;}
.x36_c00317{left:381.000000px;}
.x7_c00317{left:382.500000px;}
.xcf_c00317{left:385.500000px;}
.xf0_c00317{left:387.000000px;}
.xa7_c00317{left:388.500000px;}
.x75_c00317{left:390.420000px;}
.xec_c00317{left:391.500000px;}
.xbd_c00317{left:397.920000px;}
.xf1_c00317{left:399.000000px;}
.x8_c00317{left:400.500000px;}
.x2_c00317{left:403.500000px;}
.x69_c00317{left:404.580000px;}
.xaf_c00317{left:408.420000px;}
.x60_c00317{left:409.500000px;}
.xa0_c00317{left:411.000000px;}
.xe6_c00317{left:412.500000px;}
.x79_c00317{left:413.580000px;}
.xf7_c00317{left:414.645000px;}
.x102_c00317{left:416.580000px;}
.xa8_c00317{left:418.920000px;}
.x16_c00317{left:421.080000px;}
.x9_c00317{left:424.500000px;}
.x80_c00317{left:425.580000px;}
.xf4_c00317{left:428.580000px;}
.x10b_c00317{left:430.920000px;}
.x59_c00317{left:433.500000px;}
.x6a_c00317{left:436.080000px;}
.xa1_c00317{left:438.000000px;}
.xed_c00317{left:439.500000px;}
.x23_c00317{left:441.000000px;}
.x7a_c00317{left:444.000000px;}
.x37_c00317{left:447.000000px;}
.x61_c00317{left:448.500000px;}
.xe7_c00317{left:451.080000px;}
.x4f_c00317{left:453.420000px;}
.x43_c00317{left:454.500000px;}
.xb0_c00317{left:456.000000px;}
.x81_c00317{left:457.500000px;}
.xd9_c00317{left:459.000000px;}
.x17_c00317{left:460.080000px;}
.x38_c00317{left:462.420000px;}
.xa9_c00317{left:463.500000px;}
.x24_c00317{left:465.420000px;}
.xd6_c00317{left:466.500000px;}
.xa2_c00317{left:467.580000px;}
.x2d_c00317{left:469.275000px;}
.xd0_c00317{left:471.420000px;}
.xa_c00317{left:472.920000px;}
.x6b_c00317{left:474.000000px;}
.xbe_c00317{left:478.500000px;}
.xc6_c00317{left:480.000000px;}
.xe8_c00317{left:481.920000px;}
.x44_c00317{left:485.580000px;}
.x39_c00317{left:488.580000px;}
.x18_c00317{left:490.500000px;}
.x62_c00317{left:493.500000px;}
.xe0_c00317{left:494.580000px;}
.xb_c00317{left:498.420000px;}
.x82_c00317{left:499.500000px;}
.x2e_c00317{left:501.000000px;}
.xaa_c00317{left:502.500000px;}
.x10c_c00317{left:504.420000px;}
.xfe_c00317{left:507.000000px;}
.x6c_c00317{left:510.000000px;}
.x50_c00317{left:512.580000px;}
.xb6_c00317{left:516.645000px;}
.xa3_c00317{left:519.420000px;}
.x8b_c00317{left:522.000000px;}
.x9a_c00317{left:525.420000px;}
.x6d_c00317{left:526.500000px;}
.xb1_c00317{left:528.000000px;}
.x105_c00317{left:529.500000px;}
.x5a_c00317{left:531.000000px;}
.xff_c00317{left:532.080000px;}
.xe1_c00317{left:534.645000px;}
.xc_c00317{left:537.000000px;}
.x3a_c00317{left:538.500000px;}
.x19_c00317{left:541.500000px;}
.xee_c00317{left:543.000000px;}
.x94_c00317{left:544.920000px;}
.x45_c00317{left:548.145000px;}
.xe3_c00317{left:550.500000px;}
.x25_c00317{left:552.645000px;}
.x5b_c00317{left:555.420000px;}
.xc7_c00317{left:556.920000px;}
.xf5_c00317{left:558.420000px;}
.x9b_c00317{left:559.500000px;}
.xdd_c00317{left:561.000000px;}
.x51_c00317{left:562.500000px;}
.x2f_c00317{left:564.000000px;}
.x1a_c00317{left:566.580000px;}
.xd_c00317{left:570.420000px;}
.x3b_c00317{left:571.920000px;}
.xda_c00317{left:573.000000px;}
.x83_c00317{left:574.500000px;}
.x100_c00317{left:576.000000px;}
.xe2_c00317{left:577.500000px;}
.x95_c00317{left:582.000000px;}
.x52_c00317{left:585.000000px;}
.x8c_c00317{left:588.420000px;}
.x7b_c00317{left:589.500000px;}
.xc8_c00317{left:591.420000px;}
.x6e_c00317{left:594.000000px;}
.xab_c00317{left:595.080000px;}
.xb2_c00317{left:596.580000px;}
.x3c_c00317{left:598.500000px;}
.x46_c00317{left:603.000000px;}
.xe_c00317{left:604.500000px;}
.x30_c00317{left:606.000000px;}
.x26_c00317{left:608.580000px;}
.x10d_c00317{left:610.080000px;}
.x1b_c00317{left:612.000000px;}
.x106_c00317{left:615.000000px;}
.xc9_c00317{left:618.000000px;}
.x5c_c00317{left:619.920000px;}
.xf6_c00317{left:621.000000px;}
.x101_c00317{left:622.080000px;}
.x103_c00317{left:627.000000px;}
.xb7_c00317{left:630.000000px;}
.x107_c00317{left:631.080000px;}
.x63_c00317{left:632.580000px;}
.xdb_c00317{left:634.080000px;}
.xd7_c00317{left:637.500000px;}
.x8d_c00317{left:640.080000px;}
.xe4_c00317{left:642.420000px;}
.x1c_c00317{left:643.500000px;}
.x27_c00317{left:646.500000px;}
.xa4_c00317{left:647.580000px;}
.x3d_c00317{left:652.500000px;}
.x5d_c00317{left:655.920000px;}
.xfb_c00317{left:657.000000px;}
.xf_c00317{left:663.000000px;}
.x31_c00317{left:664.080000px;}
.xb8_c00317{left:666.420000px;}
.xca_c00317{left:669.000000px;}
.x6f_c00317{left:672.420000px;}
.x47_c00317{left:673.920000px;}
.x53_c00317{left:675.000000px;}
.xb3_c00317{left:676.500000px;}
.x84_c00317{left:678.000000px;}
.x96_c00317{left:679.500000px;}
.x9c_c00317{left:681.420000px;}
.xa5_c00317{left:684.000000px;}
.x104_c00317{left:685.920000px;}
.x64_c00317{left:687.000000px;}
.x7c_c00317{left:691.500000px;}
.xb9_c00317{left:694.500000px;}
.xd1_c00317{left:697.500000px;}
.xac_c00317{left:700.500000px;}
.x97_c00317{left:702.000000px;}
.x3e_c00317{left:703.500000px;}
.xe9_c00317{left:705.000000px;}
.x48_c00317{left:708.420000px;}
.x85_c00317{left:709.920000px;}
.x32_c00317{left:711.420000px;}
.xb4_c00317{left:714.420000px;}
.x10_c00317{left:716.580000px;}
.xf8_c00317{left:723.000000px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.ls0_c00317{letter-spacing:0.000000pt;}
.ws0_c00317{word-spacing:0.000000pt;}
.fs4_c00317{font-size:16.640000pt;}
.fs1_c00317{font-size:18.133333pt;}
.fs5_c00317{font-size:22.666667pt;}
.fs0_c00317{font-size:25.706667pt;}
.fs3_c00317{font-size:28.746667pt;}
.fs2_c00317{font-size:31.733333pt;}
.fs6_c00317{font-size:34.773333pt;}
.y0_c00317{bottom:0.000000pt;}
.yd2_c00317{bottom:220.160000pt;}
.yd3_c00317{bottom:221.493333pt;}
.yd5_c00317{bottom:223.226667pt;}
.yd4_c00317{bottom:224.360000pt;}
.yd0_c00317{bottom:239.026667pt;}
.yd1_c00317{bottom:239.773333pt;}
.ycd_c00317{bottom:241.693333pt;}
.ycf_c00317{bottom:241.893333pt;}
.yce_c00317{bottom:242.640000pt;}
.ycc_c00317{bottom:257.106667pt;}
.yc9_c00317{bottom:257.893333pt;}
.yc8_c00317{bottom:259.026667pt;}
.yca_c00317{bottom:259.226667pt;}
.ycb_c00317{bottom:259.973333pt;}
.yc3_c00317{bottom:274.440000pt;}
.yc5_c00317{bottom:275.226667pt;}
.yc4_c00317{bottom:276.360000pt;}
.yc7_c00317{bottom:276.560000pt;}
.yc6_c00317{bottom:277.306667pt;}
.ybe_c00317{bottom:291.026667pt;}
.yc0_c00317{bottom:292.160000pt;}
.yc2_c00317{bottom:292.933333pt;}
.ybf_c00317{bottom:293.693333pt;}
.yc1_c00317{bottom:295.026667pt;}
.ybc_c00317{bottom:310.440000pt;}
.yba_c00317{bottom:311.973333pt;}
.ybb_c00317{bottom:312.360000pt;}
.ybd_c00317{bottom:313.306667pt;}
.yb5_c00317{bottom:327.400000pt;}
.yb7_c00317{bottom:327.773333pt;}
.yb6_c00317{bottom:329.106667pt;}
.yb8_c00317{bottom:329.306667pt;}
.yb4_c00317{bottom:329.693333pt;}
.yb9_c00317{bottom:329.893333pt;}
.yb0_c00317{bottom:345.106667pt;}
.yb2_c00317{bottom:345.306667pt;}
.yb3_c00317{bottom:346.640000pt;}
.yb1_c00317{bottom:347.026667pt;}
.yaf_c00317{bottom:347.973333pt;}
.yae_c00317{bottom:361.693333pt;}
.yab_c00317{bottom:362.440000pt;}
.yac_c00317{bottom:364.360000pt;}
.yad_c00317{bottom:364.560000pt;}
.ya8_c00317{bottom:379.026667pt;}
.ya4_c00317{bottom:379.773333pt;}
.ya3_c00317{bottom:380.733333pt;}
.ya5_c00317{bottom:381.106667pt;}
.yaa_c00317{bottom:381.693333pt;}
.ya7_c00317{bottom:381.893333pt;}
.ya9_c00317{bottom:382.640000pt;}
.ya6_c00317{bottom:383.026667pt;}
.y9f_c00317{bottom:397.106667pt;}
.ya1_c00317{bottom:397.306667pt;}
.ya0_c00317{bottom:398.440000pt;}
.y9e_c00317{bottom:399.026667pt;}
.ya2_c00317{bottom:399.973333pt;}
.y99_c00317{bottom:414.826667pt;}
.y9b_c00317{bottom:415.773333pt;}
.y9c_c00317{bottom:416.560000pt;}
.y9a_c00317{bottom:416.733333pt;}
.y9d_c00317{bottom:417.306667pt;}
.y98_c00317{bottom:417.693333pt;}
.y93_c00317{bottom:432.160000pt;}
.y96_c00317{bottom:432.360000pt;}
.y95_c00317{bottom:433.106667pt;}
.y97_c00317{bottom:434.066667pt;}
.y94_c00317{bottom:435.026667pt;}
.y8f_c00317{bottom:450.440000pt;}
.y8d_c00317{bottom:451.226667pt;}
.y92_c00317{bottom:451.973333pt;}
.y91_c00317{bottom:452.360000pt;}
.y90_c00317{bottom:452.560000pt;}
.y8e_c00317{bottom:453.306667pt;}
.y86_c00317{bottom:467.026667pt;}
.y88_c00317{bottom:467.773333pt;}
.y8b_c00317{bottom:468.160000pt;}
.y89_c00317{bottom:469.306667pt;}
.y87_c00317{bottom:469.693333pt;}
.y8c_c00317{bottom:469.893333pt;}
.y8a_c00317{bottom:470.640000pt;}
.y81_c00317{bottom:485.106667pt;}
.y84_c00317{bottom:486.066667pt;}
.y85_c00317{bottom:486.440000pt;}
.y80_c00317{bottom:487.026667pt;}
.y83_c00317{bottom:487.973333pt;}
.y82_c00317{bottom:488.360000pt;}
.y7e_c00317{bottom:503.773333pt;}
.y7d_c00317{bottom:504.560000pt;}
.y7c_c00317{bottom:504.733333pt;}
.y7b_c00317{bottom:505.693333pt;}
.y7f_c00317{bottom:506.640000pt;}
.y7a_c00317{bottom:521.106667pt;}
.y78_c00317{bottom:521.693333pt;}
.y79_c00317{bottom:523.026667pt;}
.y76_c00317{bottom:538.440000pt;}
.y77_c00317{bottom:539.226667pt;}
.y75_c00317{bottom:540.360000pt;}
.y74_c00317{bottom:555.026667pt;}
.y70_c00317{bottom:555.773333pt;}
.y71_c00317{bottom:556.733333pt;}
.y6f_c00317{bottom:557.693333pt;}
.y73_c00317{bottom:557.893333pt;}
.y72_c00317{bottom:559.026667pt;}
.y6e_c00317{bottom:573.106667pt;}
.y6b_c00317{bottom:574.066667pt;}
.y6c_c00317{bottom:575.026667pt;}
.y6d_c00317{bottom:575.226667pt;}
.y68_c00317{bottom:592.360000pt;}
.y6a_c00317{bottom:592.560000pt;}
.y69_c00317{bottom:593.306667pt;}
.y64_c00317{bottom:609.106667pt;}
.y63_c00317{bottom:609.693333pt;}
.y66_c00317{bottom:609.893333pt;}
.y67_c00317{bottom:610.066667pt;}
.y62_c00317{bottom:610.640000pt;}
.y65_c00317{bottom:611.026667pt;}
.y5e_c00317{bottom:625.106667pt;}
.y60_c00317{bottom:626.440000pt;}
.y5b_c00317{bottom:627.026667pt;}
.y5f_c00317{bottom:627.226667pt;}
.y5d_c00317{bottom:627.400000pt;}
.y5c_c00317{bottom:628.360000pt;}
.y61_c00317{bottom:628.560000pt;}
.y56_c00317{bottom:643.773333pt;}
.y58_c00317{bottom:644.360000pt;}
.y54_c00317{bottom:644.560000pt;}
.y5a_c00317{bottom:644.733333pt;}
.y55_c00317{bottom:645.306667pt;}
.y57_c00317{bottom:645.693333pt;}
.y59_c00317{bottom:646.640000pt;}
.y50_c00317{bottom:659.773333pt;}
.y4f_c00317{bottom:659.973333pt;}
.y53_c00317{bottom:660.733333pt;}
.y51_c00317{bottom:661.106667pt;}
.y4e_c00317{bottom:661.893333pt;}
.y52_c00317{bottom:662.640000pt;}
.y4d_c00317{bottom:663.026667pt;}
.y48_c00317{bottom:677.493333pt;}
.y47_c00317{bottom:678.440000pt;}
.y4b_c00317{bottom:679.600000pt;}
.y49_c00317{bottom:680.360000pt;}
.y4a_c00317{bottom:680.560000pt;}
.y4c_c00317{bottom:681.693333pt;}
.y46_c00317{bottom:695.026667pt;}
.y45_c00317{bottom:697.106667pt;}
.y42_c00317{bottom:697.693333pt;}
.y44_c00317{bottom:697.893333pt;}
.y43_c00317{bottom:699.026667pt;}
.y41_c00317{bottom:714.066667pt;}
.y40_c00317{bottom:714.440000pt;}
.y3e_c00317{bottom:715.026667pt;}
.y3f_c00317{bottom:715.973333pt;}
.y37_c00317{bottom:730.440000pt;}
.y39_c00317{bottom:731.773333pt;}
.y38_c00317{bottom:732.360000pt;}
.y3b_c00317{bottom:732.560000pt;}
.y3d_c00317{bottom:732.733333pt;}
.y3c_c00317{bottom:733.306667pt;}
.y3a_c00317{bottom:733.693333pt;}
.y36_c00317{bottom:747.026667pt;}
.y34_c00317{bottom:749.106667pt;}
.y33_c00317{bottom:749.893333pt;}
.y35_c00317{bottom:750.640000pt;}
.y32_c00317{bottom:751.026667pt;}
.y2f_c00317{bottom:766.440000pt;}
.y30_c00317{bottom:767.973333pt;}
.y31_c00317{bottom:768.360000pt;}
.y2e_c00317{bottom:783.026667pt;}
.y2d_c00317{bottom:783.773333pt;}
.y2b_c00317{bottom:785.306667pt;}
.y2a_c00317{bottom:785.693333pt;}
.y2c_c00317{bottom:786.640000pt;}
.y27_c00317{bottom:801.106667pt;}
.y28_c00317{bottom:803.026667pt;}
.y29_c00317{bottom:803.226667pt;}
.y24_c00317{bottom:819.773333pt;}
.y23_c00317{bottom:820.360000pt;}
.y26_c00317{bottom:821.306667pt;}
.y25_c00317{bottom:821.693333pt;}
.y20_c00317{bottom:835.026667pt;}
.y1d_c00317{bottom:837.106667pt;}
.y21_c00317{bottom:837.893333pt;}
.y22_c00317{bottom:838.066667pt;}
.y1f_c00317{bottom:838.640000pt;}
.y1e_c00317{bottom:839.026667pt;}
.y1b_c00317{bottom:853.106667pt;}
.y1a_c00317{bottom:855.026667pt;}
.y19_c00317{bottom:855.226667pt;}
.y1c_c00317{bottom:856.360000pt;}
.y18_c00317{bottom:871.400000pt;}
.y16_c00317{bottom:871.773333pt;}
.y14_c00317{bottom:872.360000pt;}
.y17_c00317{bottom:872.560000pt;}
.y15_c00317{bottom:873.693333pt;}
.y10_c00317{bottom:887.026667pt;}
.y11_c00317{bottom:889.106667pt;}
.y13_c00317{bottom:889.893333pt;}
.y12_c00317{bottom:891.026667pt;}
.yd_c00317{bottom:906.440000pt;}
.ye_c00317{bottom:907.226667pt;}
.yf_c00317{bottom:907.400000pt;}
.ya_c00317{bottom:907.973333pt;}
.yb_c00317{bottom:908.360000pt;}
.yc_c00317{bottom:909.306667pt;}
.y6_c00317{bottom:923.773333pt;}
.y7_c00317{bottom:924.733333pt;}
.y5_c00317{bottom:925.693333pt;}
.y8_c00317{bottom:925.893333pt;}
.y9_c00317{bottom:926.640000pt;}
.y4_c00317{bottom:941.106667pt;}
.y3_c00317{bottom:943.026667pt;}
.y2_c00317{bottom:976.933333pt;}
.y1_c00317{bottom:977.693333pt;}
.h5_c00317{height:20.466875pt;}
.h2_c00317{height:22.303646pt;}
.h6_c00317{height:27.879557pt;}
.h1_c00317{height:31.618698pt;}
.h4_c00317{height:35.357839pt;}
.h3_c00317{height:39.031380pt;}
.h7_c00317{height:42.770521pt;}
.h0_c00317{height:1186.666667pt;}
.w0_c00317{width:782.666667pt;}
.x0_c00317{left:0.000000pt;}
.x1_c00317{left:135.626667pt;}
.x70_c00317{left:136.573333pt;}
.xf9_c00317{left:137.706667pt;}
.xf2_c00317{left:149.333333pt;}
.x76_c00317{left:150.666667pt;}
.x3f_c00317{left:153.333333pt;}
.x28_c00317{left:155.426667pt;}
.x9d_c00317{left:158.666667pt;}
.x1d_c00317{left:159.626667pt;}
.x54_c00317{left:161.333333pt;}
.x3_c00317{left:163.040000pt;}
.xbf_c00317{left:168.000000pt;}
.x8e_c00317{left:168.960000pt;}
.x11_c00317{left:170.293333pt;}
.x98_c00317{left:172.000000pt;}
.xad_c00317{left:172.960000pt;}
.xc3_c00317{left:174.293333pt;}
.x9e_c00317{left:176.000000pt;}
.x55_c00317{left:176.960000pt;}
.x7d_c00317{left:180.373333pt;}
.xd2_c00317{left:181.706667pt;}
.xba_c00317{left:184.000000pt;}
.x86_c00317{left:184.960000pt;}
.x29_c00317{left:186.466667pt;}
.xcb_c00317{left:191.040000pt;}
.xb5_c00317{left:192.000000pt;}
.xc4_c00317{left:192.960000pt;}
.xfc_c00317{left:194.666667pt;}
.x49_c00317{left:197.333333pt;}
.x71_c00317{left:198.293333pt;}
.x12_c00317{left:200.373333pt;}
.x40_c00317{left:201.333333pt;}
.x87_c00317{left:202.666667pt;}
.xe5_c00317{left:204.373333pt;}
.x1e_c00317{left:205.333333pt;}
.x8f_c00317{left:207.040000pt;}
.xae_c00317{left:208.373333pt;}
.xea_c00317{left:209.706667pt;}
.x4a_c00317{left:210.666667pt;}
.x33_c00317{left:212.000000pt;}
.x4_c00317{left:213.706667pt;}
.xc1_c00317{left:215.426667pt;}
.x72_c00317{left:216.373333pt;}
.x65_c00317{left:217.333333pt;}
.x108_c00317{left:218.666667pt;}
.x56_c00317{left:220.960000pt;}
.xbb_c00317{left:225.333333pt;}
.x2a_c00317{left:226.666667pt;}
.x1f_c00317{left:228.373333pt;}
.x109_c00317{left:233.333333pt;}
.x4b_c00317{left:235.040000pt;}
.x66_c00317{left:236.373333pt;}
.xd3_c00317{left:237.333333pt;}
.x88_c00317{left:238.293333pt;}
.x34_c00317{left:240.000000pt;}
.xcc_c00317{left:242.666667pt;}
.xfd_c00317{left:244.000000pt;}
.x13_c00317{left:244.960000pt;}
.x77_c00317{left:246.666667pt;}
.xde_c00317{left:247.626667pt;}
.x5_c00317{left:248.960000pt;}
.x73_c00317{left:252.000000pt;}
.xfa_c00317{left:255.040000pt;}
.xd4_c00317{left:256.000000pt;}
.xf3_c00317{left:256.960000pt;}
.x41_c00317{left:258.666667pt;}
.x67_c00317{left:260.960000pt;}
.x2b_c00317{left:262.666667pt;}
.x90_c00317{left:263.626667pt;}
.xc5_c00317{left:264.960000pt;}
.x4c_c00317{left:266.293333pt;}
.xbc_c00317{left:268.373333pt;}
.x20_c00317{left:269.333333pt;}
.x92_c00317{left:270.293333pt;}
.x14_c00317{left:272.000000pt;}
.xc0_c00317{left:275.040000pt;}
.x89_c00317{left:276.000000pt;}
.x5e_c00317{left:277.333333pt;}
.x42_c00317{left:278.666667pt;}
.x99_c00317{left:280.000000pt;}
.xeb_c00317{left:281.333333pt;}
.x6_c00317{left:283.040000pt;}
.x57_c00317{left:285.333333pt;}
.x78_c00317{left:288.000000pt;}
.xc2_c00317{left:289.333333pt;}
.xcd_c00317{left:290.293333pt;}
.xa6_c00317{left:292.000000pt;}
.x4d_c00317{left:294.666667pt;}
.x21_c00317{left:295.626667pt;}
.x5f_c00317{left:297.333333pt;}
.x10a_c00317{left:298.293333pt;}
.x68_c00317{left:299.240000pt;}
.xdc_c00317{left:300.373333pt;}
.x35_c00317{left:301.333333pt;}
.xd5_c00317{left:302.666667pt;}
.xd8_c00317{left:304.373333pt;}
.x15_c00317{left:308.373333pt;}
.x4e_c00317{left:309.333333pt;}
.xef_c00317{left:312.000000pt;}
.x7e_c00317{left:313.333333pt;}
.xce_c00317{left:315.626667pt;}
.xdf_c00317{left:316.960000pt;}
.x58_c00317{left:318.666667pt;}
.x9f_c00317{left:319.626667pt;}
.x2c_c00317{left:322.666667pt;}
.x22_c00317{left:324.000000pt;}
.x7f_c00317{left:325.333333pt;}
.x74_c00317{left:326.666667pt;}
.x93_c00317{left:328.000000pt;}
.x91_c00317{left:334.666667pt;}
.x8a_c00317{left:337.333333pt;}
.x36_c00317{left:338.666667pt;}
.x7_c00317{left:340.000000pt;}
.xcf_c00317{left:342.666667pt;}
.xf0_c00317{left:344.000000pt;}
.xa7_c00317{left:345.333333pt;}
.x75_c00317{left:347.040000pt;}
.xec_c00317{left:348.000000pt;}
.xbd_c00317{left:353.706667pt;}
.xf1_c00317{left:354.666667pt;}
.x8_c00317{left:356.000000pt;}
.x2_c00317{left:358.666667pt;}
.x69_c00317{left:359.626667pt;}
.xaf_c00317{left:363.040000pt;}
.x60_c00317{left:364.000000pt;}
.xa0_c00317{left:365.333333pt;}
.xe6_c00317{left:366.666667pt;}
.x79_c00317{left:367.626667pt;}
.xf7_c00317{left:368.573333pt;}
.x102_c00317{left:370.293333pt;}
.xa8_c00317{left:372.373333pt;}
.x16_c00317{left:374.293333pt;}
.x9_c00317{left:377.333333pt;}
.x80_c00317{left:378.293333pt;}
.xf4_c00317{left:380.960000pt;}
.x10b_c00317{left:383.040000pt;}
.x59_c00317{left:385.333333pt;}
.x6a_c00317{left:387.626667pt;}
.xa1_c00317{left:389.333333pt;}
.xed_c00317{left:390.666667pt;}
.x23_c00317{left:392.000000pt;}
.x7a_c00317{left:394.666667pt;}
.x37_c00317{left:397.333333pt;}
.x61_c00317{left:398.666667pt;}
.xe7_c00317{left:400.960000pt;}
.x4f_c00317{left:403.040000pt;}
.x43_c00317{left:404.000000pt;}
.xb0_c00317{left:405.333333pt;}
.x81_c00317{left:406.666667pt;}
.xd9_c00317{left:408.000000pt;}
.x17_c00317{left:408.960000pt;}
.x38_c00317{left:411.040000pt;}
.xa9_c00317{left:412.000000pt;}
.x24_c00317{left:413.706667pt;}
.xd6_c00317{left:414.666667pt;}
.xa2_c00317{left:415.626667pt;}
.x2d_c00317{left:417.133333pt;}
.xd0_c00317{left:419.040000pt;}
.xa_c00317{left:420.373333pt;}
.x6b_c00317{left:421.333333pt;}
.xbe_c00317{left:425.333333pt;}
.xc6_c00317{left:426.666667pt;}
.xe8_c00317{left:428.373333pt;}
.x44_c00317{left:431.626667pt;}
.x39_c00317{left:434.293333pt;}
.x18_c00317{left:436.000000pt;}
.x62_c00317{left:438.666667pt;}
.xe0_c00317{left:439.626667pt;}
.xb_c00317{left:443.040000pt;}
.x82_c00317{left:444.000000pt;}
.x2e_c00317{left:445.333333pt;}
.xaa_c00317{left:446.666667pt;}
.x10c_c00317{left:448.373333pt;}
.xfe_c00317{left:450.666667pt;}
.x6c_c00317{left:453.333333pt;}
.x50_c00317{left:455.626667pt;}
.xb6_c00317{left:459.240000pt;}
.xa3_c00317{left:461.706667pt;}
.x8b_c00317{left:464.000000pt;}
.x9a_c00317{left:467.040000pt;}
.x6d_c00317{left:468.000000pt;}
.xb1_c00317{left:469.333333pt;}
.x105_c00317{left:470.666667pt;}
.x5a_c00317{left:472.000000pt;}
.xff_c00317{left:472.960000pt;}
.xe1_c00317{left:475.240000pt;}
.xc_c00317{left:477.333333pt;}
.x3a_c00317{left:478.666667pt;}
.x19_c00317{left:481.333333pt;}
.xee_c00317{left:482.666667pt;}
.x94_c00317{left:484.373333pt;}
.x45_c00317{left:487.240000pt;}
.xe3_c00317{left:489.333333pt;}
.x25_c00317{left:491.240000pt;}
.x5b_c00317{left:493.706667pt;}
.xc7_c00317{left:495.040000pt;}
.xf5_c00317{left:496.373333pt;}
.x9b_c00317{left:497.333333pt;}
.xdd_c00317{left:498.666667pt;}
.x51_c00317{left:500.000000pt;}
.x2f_c00317{left:501.333333pt;}
.x1a_c00317{left:503.626667pt;}
.xd_c00317{left:507.040000pt;}
.x3b_c00317{left:508.373333pt;}
.xda_c00317{left:509.333333pt;}
.x83_c00317{left:510.666667pt;}
.x100_c00317{left:512.000000pt;}
.xe2_c00317{left:513.333333pt;}
.x95_c00317{left:517.333333pt;}
.x52_c00317{left:520.000000pt;}
.x8c_c00317{left:523.040000pt;}
.x7b_c00317{left:524.000000pt;}
.xc8_c00317{left:525.706667pt;}
.x6e_c00317{left:528.000000pt;}
.xab_c00317{left:528.960000pt;}
.xb2_c00317{left:530.293333pt;}
.x3c_c00317{left:532.000000pt;}
.x46_c00317{left:536.000000pt;}
.xe_c00317{left:537.333333pt;}
.x30_c00317{left:538.666667pt;}
.x26_c00317{left:540.960000pt;}
.x10d_c00317{left:542.293333pt;}
.x1b_c00317{left:544.000000pt;}
.x106_c00317{left:546.666667pt;}
.xc9_c00317{left:549.333333pt;}
.x5c_c00317{left:551.040000pt;}
.xf6_c00317{left:552.000000pt;}
.x101_c00317{left:552.960000pt;}
.x103_c00317{left:557.333333pt;}
.xb7_c00317{left:560.000000pt;}
.x107_c00317{left:560.960000pt;}
.x63_c00317{left:562.293333pt;}
.xdb_c00317{left:563.626667pt;}
.xd7_c00317{left:566.666667pt;}
.x8d_c00317{left:568.960000pt;}
.xe4_c00317{left:571.040000pt;}
.x1c_c00317{left:572.000000pt;}
.x27_c00317{left:574.666667pt;}
.xa4_c00317{left:575.626667pt;}
.x3d_c00317{left:580.000000pt;}
.x5d_c00317{left:583.040000pt;}
.xfb_c00317{left:584.000000pt;}
.xf_c00317{left:589.333333pt;}
.x31_c00317{left:590.293333pt;}
.xb8_c00317{left:592.373333pt;}
.xca_c00317{left:594.666667pt;}
.x6f_c00317{left:597.706667pt;}
.x47_c00317{left:599.040000pt;}
.x53_c00317{left:600.000000pt;}
.xb3_c00317{left:601.333333pt;}
.x84_c00317{left:602.666667pt;}
.x96_c00317{left:604.000000pt;}
.x9c_c00317{left:605.706667pt;}
.xa5_c00317{left:608.000000pt;}
.x104_c00317{left:609.706667pt;}
.x64_c00317{left:610.666667pt;}
.x7c_c00317{left:614.666667pt;}
.xb9_c00317{left:617.333333pt;}
.xd1_c00317{left:620.000000pt;}
.xac_c00317{left:622.666667pt;}
.x97_c00317{left:624.000000pt;}
.x3e_c00317{left:625.333333pt;}
.xe9_c00317{left:626.666667pt;}
.x48_c00317{left:629.706667pt;}
.x85_c00317{left:631.040000pt;}
.x32_c00317{left:632.373333pt;}
.xb4_c00317{left:635.040000pt;}
.x10_c00317{left:636.960000pt;}
.xf8_c00317{left:642.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_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_f5db483bbcbafbc30f2ac368.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb7_c00318{transform:matrix(0.297546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297546,0.000000,0.000000,0.250000,0,0);}
.m9a_c00318{transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);}
.mb8_c00318{transform:matrix(0.324003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324003,0.000000,0.000000,0.250000,0,0);}
.m8e_c00318{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.me2_c00318{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m47_c00318{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m63_c00318{transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);}
.m58_c00318{transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);}
.m6a_c00318{transform:matrix(0.354202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354202,0.000000,0.000000,0.250000,0,0);}
.m66_c00318{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.m65_c00318{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.me6_c00318{transform:matrix(0.360924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360924,0.000000,0.000000,0.250000,0,0);}
.m2_c00318{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m7f_c00318{transform:matrix(0.364264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364264,0.000000,0.000000,0.250000,0,0);}
.m0_c00318{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.md9_c00318{transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);}
.m3b_c00318{transform:matrix(0.368482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368482,0.000000,0.000000,0.250000,0,0);}
.m85_c00318{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m1b_c00318{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m53_c00318{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.mc8_c00318{transform:matrix(0.371933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371933,0.000000,0.000000,0.250000,0,0);}
.m3c_c00318{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m7a_c00318{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m38_c00318{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.mb2_c00318{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mac_c00318{transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);}
.m67_c00318{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m91_c00318{transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);}
.mb6_c00318{transform:matrix(0.385736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385736,0.000000,0.000000,0.250000,0,0);}
.m8c_c00318{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.ma8_c00318{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m6f_c00318{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.mb1_c00318{transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);}
.m99_c00318{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m73_c00318{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m68_c00318{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m30_c00318{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m7c_c00318{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m3a_c00318{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);}
.md7_c00318{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.md1_c00318{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m96_c00318{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m2f_c00318{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m76_c00318{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m88_c00318{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.md5_c00318{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.m8b_c00318{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.ma4_c00318{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m19_c00318{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m48_c00318{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mde_c00318{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m44_c00318{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m60_c00318{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mc9_c00318{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.m25_c00318{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m31_c00318{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m18_c00318{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m5b_c00318{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m36_c00318{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mc3_c00318{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m9e_c00318{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m9c_c00318{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m3_c00318{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mc6_c00318{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m87_c00318{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m9b_c00318{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mcc_c00318{transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);}
.m14_c00318{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m2c_c00318{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mbe_c00318{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.mdf_c00318{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m6c_c00318{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.maa_c00318{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.mad_c00318{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m74_c00318{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.md6_c00318{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.me1_c00318{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m8d_c00318{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m70_c00318{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m95_c00318{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m79_c00318{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.me_c00318{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.mcf_c00318{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.mc5_c00318{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m51_c00318{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.mb4_c00318{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m4d_c00318{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.mb0_c00318{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m50_c00318{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m2e_c00318{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m81_c00318{transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);}
.m29_c00318{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.mce_c00318{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.mba_c00318{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.ma2_c00318{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m4f_c00318{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m28_c00318{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.mc2_c00318{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.mcd_c00318{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m3f_c00318{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m4c_c00318{transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);}
.m78_c00318{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m21_c00318{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m5d_c00318{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mc0_c00318{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m1e_c00318{transform:matrix(0.485577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485577,0.000000,0.000000,0.250000,0,0);}
.m49_c00318{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m7_c00318{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.me3_c00318{transform:matrix(0.490724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490724,0.000000,0.000000,0.250000,0,0);}
.m35_c00318{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.md_c00318{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mdd_c00318{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.md2_c00318{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m27_c00318{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_c00318{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.mc7_c00318{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m7e_c00318{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m5f_c00318{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m86_c00318{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m37_c00318{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.me7_c00318{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m97_c00318{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m8a_c00318{transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);}
.m57_c00318{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.ma7_c00318{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m69_c00318{transform:matrix(0.513445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513445,0.000000,0.000000,0.250000,0,0);}
.m82_c00318{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m8_c00318{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m5c_c00318{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m6d_c00318{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.me9_c00318{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m23_c00318{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.ma9_c00318{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.m5e_c00318{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m4a_c00318{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m7d_c00318{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m1c_c00318{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m84_c00318{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m72_c00318{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.mb3_c00318{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mae_c00318{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m94_c00318{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mf_c00318{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m39_c00318{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m1a_c00318{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m16_c00318{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.me8_c00318{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.md0_c00318{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.me5_c00318{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mcb_c00318{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m40_c00318{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m3e_c00318{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m46_c00318{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m1d_c00318{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mdc_c00318{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m6e_c00318{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m9_c00318{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m77_c00318{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m93_c00318{transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);}
.m7b_c00318{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m64_c00318{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.ma6_c00318{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m6_c00318{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m2b_c00318{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m2d_c00318{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mda_c00318{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m3d_c00318{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m34_c00318{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m9d_c00318{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m12_c00318{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m13_c00318{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m32_c00318{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mec_c00318{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m89_c00318{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m42_c00318{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m45_c00318{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m10_c00318{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m22_c00318{transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);}
.me4_c00318{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mb5_c00318{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m62_c00318{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m75_c00318{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m43_c00318{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.m4e_c00318{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m24_c00318{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m90_c00318{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m71_c00318{transform:matrix(0.570588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570588,0.000000,0.000000,0.250000,0,0);}
.m15_c00318{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m5_c00318{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.mb9_c00318{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m52_c00318{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m56_c00318{transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);}
.maf_c00318{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mea_c00318{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m80_c00318{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.mc_c00318{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mab_c00318{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m1f_c00318{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.me0_c00318{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m6b_c00318{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m26_c00318{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m55_c00318{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.m4_c00318{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m11_c00318{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mbd_c00318{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m2a_c00318{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.ma3_c00318{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.med_c00318{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m8f_c00318{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m92_c00318{transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);}
.m41_c00318{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_c00318{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.meb_c00318{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.ma5_c00318{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);}
.mbf_c00318{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m83_c00318{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mb_c00318{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m1_c00318{transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);}
.m54_c00318{transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);}
.mdb_c00318{transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);}
.md3_c00318{transform:matrix(0.693878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693878,0.000000,0.000000,0.250000,0,0);}
.mc4_c00318{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.md8_c00318{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m33_c00318{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.ma1_c00318{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mc1_c00318{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mbc_c00318{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m98_c00318{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m17_c00318{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m9f_c00318{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mbb_c00318{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m59_c00318{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.md4_c00318{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.ma_c00318{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m4b_c00318{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mca_c00318{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m61_c00318{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m20_c00318{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,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:-7.768560px;}
.ws1_c00318{word-spacing:-3.243449px;}
.ws2_c00318{word-spacing:0.000000px;}
.fc0_c00318{color:transparent;}
.fs1_c00318{font-size:18.720000px;}
.fs6_c00318{font-size:20.400000px;}
.fs3_c00318{font-size:25.500000px;}
.fs2_c00318{font-size:28.920000px;}
.fs4_c00318{font-size:32.340000px;}
.fs0_c00318{font-size:35.700000px;}
.fs5_c00318{font-size:39.120000px;}
.y0_c00318{bottom:0.000000px;}
.yed_c00318{bottom:267.825000px;}
.yee_c00318{bottom:268.245000px;}
.yec_c00318{bottom:271.905000px;}
.ye9_c00318{bottom:287.745000px;}
.ye8_c00318{bottom:289.245000px;}
.yeb_c00318{bottom:289.905000px;}
.yea_c00318{bottom:290.970000px;}
.ye4_c00318{bottom:308.130000px;}
.ye6_c00318{bottom:308.745000px;}
.ye3_c00318{bottom:309.405000px;}
.ye5_c00318{bottom:309.630000px;}
.ye7_c00318{bottom:310.905000px;}
.ye0_c00318{bottom:325.905000px;}
.ye2_c00318{bottom:327.405000px;}
.yde_c00318{bottom:328.245000px;}
.ye1_c00318{bottom:329.130000px;}
.ydf_c00318{bottom:329.325000px;}
.ydd_c00318{bottom:330.405000px;}
.yda_c00318{bottom:346.905000px;}
.ydc_c00318{bottom:347.745000px;}
.yd6_c00318{bottom:348.630000px;}
.yd9_c00318{bottom:348.825000px;}
.yd5_c00318{bottom:349.245000px;}
.ydb_c00318{bottom:349.470000px;}
.yd8_c00318{bottom:349.905000px;}
.yd7_c00318{bottom:350.970000px;}
.yd3_c00318{bottom:366.405000px;}
.yd4_c00318{bottom:367.245000px;}
.yd2_c00318{bottom:368.325000px;}
.ycf_c00318{bottom:368.550000px;}
.yd1_c00318{bottom:369.405000px;}
.yd0_c00318{bottom:370.470000px;}
.ycd_c00318{bottom:385.905000px;}
.ycb_c00318{bottom:386.745000px;}
.ycc_c00318{bottom:388.905000px;}
.yce_c00318{bottom:389.970000px;}
.yc9_c00318{bottom:405.405000px;}
.yc7_c00318{bottom:406.245000px;}
.yc3_c00318{bottom:407.130000px;}
.yc8_c00318{bottom:407.325000px;}
.yca_c00318{bottom:407.550000px;}
.yc5_c00318{bottom:407.970000px;}
.yc4_c00318{bottom:408.405000px;}
.yc6_c00318{bottom:408.630000px;}
.yc2_c00318{bottom:408.825000px;}
.ybf_c00318{bottom:424.905000px;}
.ybc_c00318{bottom:427.050000px;}
.ybe_c00318{bottom:427.245000px;}
.yc1_c00318{bottom:427.905000px;}
.ybd_c00318{bottom:428.130000px;}
.ybb_c00318{bottom:428.325000px;}
.yc0_c00318{bottom:429.405000px;}
.yba_c00318{bottom:444.405000px;}
.yb7_c00318{bottom:445.245000px;}
.yb5_c00318{bottom:446.325000px;}
.yb8_c00318{bottom:447.405000px;}
.yb6_c00318{bottom:447.630000px;}
.yb9_c00318{bottom:448.470000px;}
.yb3_c00318{bottom:465.180000px;}
.yaf_c00318{bottom:466.245000px;}
.yb4_c00318{bottom:466.905000px;}
.yb0_c00318{bottom:467.130000px;}
.yb2_c00318{bottom:467.970000px;}
.yb1_c00318{bottom:468.405000px;}
.yae_c00318{bottom:469.470000px;}
.yac_c00318{bottom:485.745000px;}
.yaa_c00318{bottom:486.630000px;}
.yab_c00318{bottom:486.825000px;}
.yad_c00318{bottom:487.470000px;}
.ya9_c00318{bottom:487.905000px;}
.ya8_c00318{bottom:488.970000px;}
.ya5_c00318{bottom:504.405000px;}
.ya1_c00318{bottom:504.825000px;}
.ya3_c00318{bottom:505.245000px;}
.ya2_c00318{bottom:506.130000px;}
.ya7_c00318{bottom:506.970000px;}
.ya6_c00318{bottom:507.405000px;}
.ya4_c00318{bottom:508.470000px;}
.y9e_c00318{bottom:523.245000px;}
.ya0_c00318{bottom:523.680000px;}
.y9d_c00318{bottom:526.905000px;}
.y9c_c00318{bottom:527.130000px;}
.y9f_c00318{bottom:527.970000px;}
.y9b_c00318{bottom:528.405000px;}
.y95_c00318{bottom:544.245000px;}
.y98_c00318{bottom:544.680000px;}
.y97_c00318{bottom:545.550000px;}
.y9a_c00318{bottom:545.745000px;}
.y94_c00318{bottom:546.405000px;}
.y99_c00318{bottom:546.630000px;}
.y96_c00318{bottom:546.825000px;}
.y92_c00318{bottom:564.180000px;}
.y93_c00318{bottom:564.405000px;}
.y8f_c00318{bottom:565.245000px;}
.y91_c00318{bottom:566.130000px;}
.y8e_c00318{bottom:566.325000px;}
.y90_c00318{bottom:567.405000px;}
.y8b_c00318{bottom:584.745000px;}
.y8c_c00318{bottom:586.470000px;}
.y8a_c00318{bottom:586.905000px;}
.y8d_c00318{bottom:587.130000px;}
.y88_c00318{bottom:603.825000px;}
.y89_c00318{bottom:604.245000px;}
.y87_c00318{bottom:606.405000px;}
.y86_c00318{bottom:607.470000px;}
.y83_c00318{bottom:623.745000px;}
.y85_c00318{bottom:624.825000px;}
.y84_c00318{bottom:625.050000px;}
.y7f_c00318{bottom:625.245000px;}
.y80_c00318{bottom:625.905000px;}
.y81_c00318{bottom:626.130000px;}
.y82_c00318{bottom:627.405000px;}
.y78_c00318{bottom:642.405000px;}
.y7e_c00318{bottom:643.470000px;}
.y79_c00318{bottom:644.325000px;}
.y77_c00318{bottom:644.745000px;}
.y7c_c00318{bottom:645.405000px;}
.y7a_c00318{bottom:645.630000px;}
.y7d_c00318{bottom:646.470000px;}
.y7b_c00318{bottom:646.905000px;}
.y76_c00318{bottom:661.905000px;}
.y73_c00318{bottom:663.180000px;}
.y70_c00318{bottom:663.825000px;}
.y71_c00318{bottom:664.245000px;}
.y72_c00318{bottom:664.905000px;}
.y74_c00318{bottom:665.130000px;}
.y75_c00318{bottom:666.405000px;}
.y6c_c00318{bottom:683.745000px;}
.y6e_c00318{bottom:684.630000px;}
.y6d_c00318{bottom:684.825000px;}
.y6b_c00318{bottom:685.905000px;}
.y6f_c00318{bottom:686.130000px;}
.y6a_c00318{bottom:705.405000px;}
.y65_c00318{bottom:721.905000px;}
.y63_c00318{bottom:722.745000px;}
.y69_c00318{bottom:722.970000px;}
.y64_c00318{bottom:723.825000px;}
.y67_c00318{bottom:724.905000px;}
.y68_c00318{bottom:725.130000px;}
.y66_c00318{bottom:725.970000px;}
.y5f_c00318{bottom:742.245000px;}
.y62_c00318{bottom:743.325000px;}
.y60_c00318{bottom:743.745000px;}
.y5e_c00318{bottom:744.405000px;}
.y61_c00318{bottom:745.470000px;}
.y5b_c00318{bottom:762.180000px;}
.y59_c00318{bottom:763.245000px;}
.y5c_c00318{bottom:763.905000px;}
.y5d_c00318{bottom:764.130000px;}
.y5a_c00318{bottom:765.405000px;}
.y57_c00318{bottom:781.905000px;}
.y55_c00318{bottom:782.745000px;}
.y58_c00318{bottom:783.825000px;}
.y56_c00318{bottom:784.470000px;}
.y54_c00318{bottom:784.905000px;}
.y50_c00318{bottom:800.970000px;}
.y4f_c00318{bottom:802.245000px;}
.y52_c00318{bottom:803.130000px;}
.y51_c00318{bottom:803.325000px;}
.y53_c00318{bottom:804.405000px;}
.y4e_c00318{bottom:805.470000px;}
.y4d_c00318{bottom:821.325000px;}
.y4b_c00318{bottom:821.745000px;}
.y4c_c00318{bottom:823.470000px;}
.y4a_c00318{bottom:823.905000px;}
.y46_c00318{bottom:840.180000px;}
.y48_c00318{bottom:841.245000px;}
.y47_c00318{bottom:841.680000px;}
.y45_c00318{bottom:843.405000px;}
.y49_c00318{bottom:844.905000px;}
.y42_c00318{bottom:859.905000px;}
.y41_c00318{bottom:860.745000px;}
.y43_c00318{bottom:862.245000px;}
.y3f_c00318{bottom:862.905000px;}
.y40_c00318{bottom:863.130000px;}
.y3e_c00318{bottom:863.970000px;}
.y44_c00318{bottom:864.405000px;}
.y39_c00318{bottom:879.405000px;}
.y3a_c00318{bottom:881.745000px;}
.y38_c00318{bottom:882.405000px;}
.y3b_c00318{bottom:882.630000px;}
.y37_c00318{bottom:883.470000px;}
.y3d_c00318{bottom:883.905000px;}
.y3c_c00318{bottom:884.970000px;}
.y33_c00318{bottom:898.905000px;}
.y36_c00318{bottom:899.325000px;}
.y31_c00318{bottom:899.745000px;}
.y35_c00318{bottom:899.970000px;}
.y2f_c00318{bottom:900.825000px;}
.y30_c00318{bottom:901.905000px;}
.y32_c00318{bottom:902.970000px;}
.y34_c00318{bottom:903.405000px;}
.y2a_c00318{bottom:918.405000px;}
.y2e_c00318{bottom:919.905000px;}
.y28_c00318{bottom:920.745000px;}
.y27_c00318{bottom:921.405000px;}
.y2c_c00318{bottom:921.630000px;}
.y2d_c00318{bottom:921.825000px;}
.y29_c00318{bottom:922.470000px;}
.y2b_c00318{bottom:922.905000px;}
.y26_c00318{bottom:940.245000px;}
.y25_c00318{bottom:941.130000px;}
.y24_c00318{bottom:941.970000px;}
.y23_c00318{bottom:942.405000px;}
.y22_c00318{bottom:958.680000px;}
.y20_c00318{bottom:959.745000px;}
.y21_c00318{bottom:960.630000px;}
.y1f_c00318{bottom:961.905000px;}
.y1d_c00318{bottom:979.245000px;}
.y1e_c00318{bottom:980.130000px;}
.y1c_c00318{bottom:981.405000px;}
.y16_c00318{bottom:997.905000px;}
.y1b_c00318{bottom:998.745000px;}
.y1a_c00318{bottom:999.825000px;}
.y18_c00318{bottom:1000.470000px;}
.y17_c00318{bottom:1000.905000px;}
.y19_c00318{bottom:1001.130000px;}
.y11_c00318{bottom:1015.905000px;}
.y13_c00318{bottom:1016.970000px;}
.y14_c00318{bottom:1017.405000px;}
.y10_c00318{bottom:1018.245000px;}
.y12_c00318{bottom:1019.130000px;}
.yf_c00318{bottom:1020.405000px;}
.y15_c00318{bottom:1021.470000px;}
.yb_c00318{bottom:1036.470000px;}
.yc_c00318{bottom:1037.745000px;}
.ya_c00318{bottom:1039.470000px;}
.y9_c00318{bottom:1039.905000px;}
.yd_c00318{bottom:1040.130000px;}
.ye_c00318{bottom:1040.970000px;}
.y3_c00318{bottom:1057.245000px;}
.y8_c00318{bottom:1058.745000px;}
.y4_c00318{bottom:1059.405000px;}
.y6_c00318{bottom:1059.630000px;}
.y7_c00318{bottom:1060.470000px;}
.y5_c00318{bottom:1060.905000px;}
.y1_c00318{bottom:1097.745000px;}
.y2_c00318{bottom:1098.630000px;}
.h2_c00318{height:23.025234px;}
.h7_c00318{height:25.091602px;}
.h4_c00318{height:31.364502px;}
.h3_c00318{height:35.571035px;}
.h5_c00318{height:39.777568px;}
.h1_c00318{height:43.910303px;}
.h6_c00318{height:48.116836px;}
.h0_c00318{height:1335.000000px;}
.w0_c00318{width:880.500000px;}
.x0_c00318{left:0.000000px;}
.xc8_c00318{left:151.920000px;}
.x10_c00318{left:153.000000px;}
.x3_c00318{left:154.500000px;}
.x3c_c00318{left:169.500000px;}
.x10a_c00318{left:171.000000px;}
.xd0_c00318{left:172.080000px;}
.xe4_c00318{left:174.420000px;}
.x7d_c00318{left:175.500000px;}
.xaa_c00318{left:181.500000px;}
.xb0_c00318{left:183.000000px;}
.xf5_c00318{left:187.920000px;}
.x75_c00318{left:189.420000px;}
.xc1_c00318{left:192.000000px;}
.xa2_c00318{left:193.080000px;}
.xd1_c00318{left:195.000000px;}
.x29_c00318{left:196.500000px;}
.x4b_c00318{left:198.000000px;}
.x67_c00318{left:199.080000px;}
.x7e_c00318{left:201.000000px;}
.x3d_c00318{left:202.500000px;}
.xf6_c00318{left:207.000000px;}
.x59_c00318{left:208.080000px;}
.x4_c00318{left:211.500000px;}
.x2a_c00318{left:213.420000px;}
.x11_c00318{left:214.920000px;}
.x4c_c00318{left:217.500000px;}
.x1c_c00318{left:218.580000px;}
.x90_c00318{left:220.920000px;}
.xea_c00318{left:222.000000px;}
.x105_c00318{left:225.000000px;}
.xfb_c00318{left:226.920000px;}
.x36_c00318{left:229.500000px;}
.x68_c00318{left:230.580000px;}
.xa3_c00318{left:234.420000px;}
.x7f_c00318{left:235.500000px;}
.x10d_c00318{left:237.000000px;}
.x2b_c00318{left:241.920000px;}
.x12_c00318{left:243.000000px;}
.x4d_c00318{left:244.920000px;}
.x9f_c00318{left:247.500000px;}
.xd9_c00318{left:248.580000px;}
.x37_c00318{left:252.645000px;}
.x69_c00318{left:255.000000px;}
.x80_c00318{left:256.500000px;}
.x3e_c00318{left:258.000000px;}
.xa4_c00318{left:260.580000px;}
.x86_c00318{left:262.080000px;}
.xb8_c00318{left:264.420000px;}
.x5_c00318{left:265.920000px;}
.x99_c00318{left:267.000000px;}
.x91_c00318{left:268.920000px;}
.x13_c00318{left:271.500000px;}
.x5a_c00318{left:273.000000px;}
.x6a_c00318{left:276.000000px;}
.x4e_c00318{left:277.920000px;}
.x87_c00318{left:280.500000px;}
.xd2_c00318{left:282.000000px;}
.x81_c00318{left:283.080000px;}
.xc9_c00318{left:285.645000px;}
.x9a_c00318{left:292.920000px;}
.xb1_c00318{left:295.500000px;}
.x2c_c00318{left:297.000000px;}
.x3f_c00318{left:300.000000px;}
.x6_c00318{left:301.500000px;}
.x88_c00318{left:303.000000px;}
.xab_c00318{left:304.080000px;}
.x107_c00318{left:306.420000px;}
.x38_c00318{left:307.500000px;}
.x1d_c00318{left:309.000000px;}
.xa5_c00318{left:310.500000px;}
.xda_c00318{left:313.080000px;}
.xb9_c00318{left:315.000000px;}
.xd3_c00318{left:318.000000px;}
.xdf_c00318{left:319.920000px;}
.x14_c00318{left:322.500000px;}
.xeb_c00318{left:325.080000px;}
.x1e_c00318{left:327.000000px;}
.x40_c00318{left:328.920000px;}
.x4f_c00318{left:334.080000px;}
.x7_c00318{left:336.645000px;}
.x100_c00318{left:338.580000px;}
.x2d_c00318{left:340.080000px;}
.x10c_c00318{left:345.000000px;}
.xa0_c00318{left:346.080000px;}
.x6b_c00318{left:348.000000px;}
.xe5_c00318{left:349.500000px;}
.xf0_c00318{left:351.420000px;}
.x50_c00318{left:352.500000px;}
.xbe_c00318{left:354.420000px;}
.x89_c00318{left:355.500000px;}
.x5b_c00318{left:358.500000px;}
.x2e_c00318{left:360.420000px;}
.x41_c00318{left:361.500000px;}
.xe6_c00318{left:366.000000px;}
.xb2_c00318{left:367.500000px;}
.x15_c00318{left:369.000000px;}
.xc2_c00318{left:372.000000px;}
.x1f_c00318{left:373.500000px;}
.x51_c00318{left:376.500000px;}
.x5c_c00318{left:379.500000px;}
.x6c_c00318{left:382.920000px;}
.xe0_c00318{left:385.500000px;}
.x39_c00318{left:387.420000px;}
.x2f_c00318{left:388.920000px;}
.xac_c00318{left:390.000000px;}
.xc3_c00318{left:391.500000px;}
.x8_c00318{left:393.000000px;}
.x20_c00318{left:394.080000px;}
.x76_c00318{left:396.000000px;}
.x42_c00318{left:397.500000px;}
.x101_c00318{left:398.580000px;}
.xec_c00318{left:400.500000px;}
.xba_c00318{left:402.000000px;}
.x106_c00318{left:403.500000px;}
.x2_c00318{left:405.000000px;}
.xb3_c00318{left:409.080000px;}
.x92_c00318{left:411.000000px;}
.x6d_c00318{left:412.920000px;}
.x21_c00318{left:414.420000px;}
.xf1_c00318{left:417.000000px;}
.x5d_c00318{left:418.500000px;}
.x43_c00318{left:419.580000px;}
.x52_c00318{left:421.500000px;}
.x9_c00318{left:423.000000px;}
.xca_c00318{left:424.920000px;}
.xe7_c00318{left:426.420000px;}
.x8a_c00318{left:431.145000px;}
.x9b_c00318{left:433.500000px;}
.xed_c00318{left:435.000000px;}
.x6e_c00318{left:436.920000px;}
.x30_c00318{left:438.000000px;}
.xe1_c00318{left:439.500000px;}
.x22_c00318{left:441.000000px;}
.x53_c00318{left:442.920000px;}
.xf2_c00318{left:445.500000px;}
.x77_c00318{left:448.275000px;}
.x6f_c00318{left:451.080000px;}
.x16_c00318{left:452.580000px;}
.xb4_c00318{left:456.000000px;}
.x23_c00318{left:457.500000px;}
.xbb_c00318{left:458.580000px;}
.x5e_c00318{left:460.500000px;}
.xee_c00318{left:462.000000px;}
.xfc_c00318{left:465.000000px;}
.xa6_c00318{left:467.580000px;}
.x3a_c00318{left:469.500000px;}
.xad_c00318{left:470.580000px;}
.xa_c00318{left:472.500000px;}
.x54_c00318{left:474.000000px;}
.x70_c00318{left:478.080000px;}
.xd4_c00318{left:480.000000px;}
.xcb_c00318{left:481.500000px;}
.x82_c00318{left:482.580000px;}
.x44_c00318{left:484.080000px;}
.x5f_c00318{left:486.000000px;}
.xf3_c00318{left:487.080000px;}
.x93_c00318{left:490.500000px;}
.x78_c00318{left:492.420000px;}
.xb_c00318{left:496.500000px;}
.xcc_c00318{left:499.920000px;}
.x71_c00318{left:503.580000px;}
.x8b_c00318{left:505.080000px;}
.xb5_c00318{left:507.000000px;}
.x3b_c00318{left:508.920000px;}
.x31_c00318{left:510.000000px;}
.x94_c00318{left:513.000000px;}
.xdb_c00318{left:514.275000px;}
.xd6_c00318{left:516.000000px;}
.x55_c00318{left:517.500000px;}
.x79_c00318{left:519.000000px;}
.x60_c00318{left:520.920000px;}
.x24_c00318{left:522.420000px;}
.xbf_c00318{left:525.000000px;}
.xa7_c00318{left:526.500000px;}
.x17_c00318{left:528.000000px;}
.x45_c00318{left:529.080000px;}
.x32_c00318{left:531.420000px;}
.xcd_c00318{left:532.920000px;}
.xe8_c00318{left:534.000000px;}
.xc4_c00318{left:535.500000px;}
.xfd_c00318{left:537.420000px;}
.xc_c00318{left:538.500000px;}
.x108_c00318{left:547.080000px;}
.xbc_c00318{left:548.145000px;}
.x7a_c00318{left:550.920000px;}
.x18_c00318{left:552.000000px;}
.x9c_c00318{left:553.500000px;}
.x25_c00318{left:555.000000px;}
.x46_c00318{left:558.000000px;}
.xd_c00318{left:559.080000px;}
.xef_c00318{left:561.000000px;}
.x56_c00318{left:562.920000px;}
.x95_c00318{left:564.000000px;}
.xde_c00318{left:565.500000px;}
.x61_c00318{left:566.580000px;}
.xc5_c00318{left:568.080000px;}
.x7b_c00318{left:570.420000px;}
.x72_c00318{left:571.500000px;}
.xa8_c00318{left:573.000000px;}
.xd7_c00318{left:577.500000px;}
.xd5_c00318{left:579.000000px;}
.xc0_c00318{left:580.920000px;}
.x19_c00318{left:583.080000px;}
.x8c_c00318{left:585.000000px;}
.x96_c00318{left:588.420000px;}
.x57_c00318{left:589.500000px;}
.xe_c00318{left:591.000000px;}
.xdc_c00318{left:595.500000px;}
.x26_c00318{left:596.580000px;}
.x33_c00318{left:599.580000px;}
.xc6_c00318{left:604.500000px;}
.x8d_c00318{left:607.920000px;}
.x62_c00318{left:610.080000px;}
.xae_c00318{left:612.000000px;}
.xb6_c00318{left:613.500000px;}
.xf7_c00318{left:615.420000px;}
.x7c_c00318{left:617.580000px;}
.x97_c00318{left:619.500000px;}
.xbd_c00318{left:622.500000px;}
.xe2_c00318{left:625.500000px;}
.x8e_c00318{left:627.420000px;}
.x63_c00318{left:628.920000px;}
.x73_c00318{left:631.080000px;}
.xf_c00318{left:632.580000px;}
.xdd_c00318{left:634.500000px;}
.x9d_c00318{left:635.580000px;}
.x103_c00318{left:637.920000px;}
.x47_c00318{left:640.275000px;}
.x10b_c00318{left:642.000000px;}
.xce_c00318{left:643.500000px;}
.x34_c00318{left:645.420000px;}
.xf8_c00318{left:649.500000px;}
.x27_c00318{left:650.580000px;}
.x83_c00318{left:652.080000px;}
.x1a_c00318{left:654.000000px;}
.x102_c00318{left:657.000000px;}
.x64_c00318{left:658.080000px;}
.x48_c00318{left:659.775000px;}
.xc7_c00318{left:663.420000px;}
.xf9_c00318{left:664.500000px;}
.x28_c00318{left:666.000000px;}
.xfe_c00318{left:667.920000px;}
.x109_c00318{left:669.000000px;}
.xcf_c00318{left:672.000000px;}
.xaf_c00318{left:673.080000px;}
.x84_c00318{left:675.420000px;}
.x8f_c00318{left:676.920000px;}
.x65_c00318{left:678.000000px;}
.x98_c00318{left:679.500000px;}
.xb7_c00318{left:682.500000px;}
.x104_c00318{left:685.920000px;}
.x9e_c00318{left:687.000000px;}
.x58_c00318{left:688.920000px;}
.xe3_c00318{left:690.000000px;}
.x49_c00318{left:691.500000px;}
.xf4_c00318{left:696.420000px;}
.x74_c00318{left:697.920000px;}
.xd8_c00318{left:699.420000px;}
.xa1_c00318{left:700.500000px;}
.xa9_c00318{left:702.420000px;}
.x66_c00318{left:703.500000px;}
.x35_c00318{left:705.000000px;}
.x1_c00318{left:706.500000px;}
.xfa_c00318{left:708.000000px;}
.x4a_c00318{left:709.920000px;}
.x85_c00318{left:712.500000px;}
.xff_c00318{left:713.580000px;}
.x1b_c00318{left:715.500000px;}
.xe9_c00318{left:721.500000px;}
@media print{
.v0_c00318{vertical-align:0.000000pt;}
.ls0_c00318{letter-spacing:0.000000pt;}
.ws0_c00318{word-spacing:-6.905387pt;}
.ws1_c00318{word-spacing:-2.883065pt;}
.ws2_c00318{word-spacing:0.000000pt;}
.fs1_c00318{font-size:16.640000pt;}
.fs6_c00318{font-size:18.133333pt;}
.fs3_c00318{font-size:22.666667pt;}
.fs2_c00318{font-size:25.706667pt;}
.fs4_c00318{font-size:28.746667pt;}
.fs0_c00318{font-size:31.733333pt;}
.fs5_c00318{font-size:34.773333pt;}
.y0_c00318{bottom:0.000000pt;}
.yed_c00318{bottom:238.066667pt;}
.yee_c00318{bottom:238.440000pt;}
.yec_c00318{bottom:241.693333pt;}
.ye9_c00318{bottom:255.773333pt;}
.ye8_c00318{bottom:257.106667pt;}
.yeb_c00318{bottom:257.693333pt;}
.yea_c00318{bottom:258.640000pt;}
.ye4_c00318{bottom:273.893333pt;}
.ye6_c00318{bottom:274.440000pt;}
.ye3_c00318{bottom:275.026667pt;}
.ye5_c00318{bottom:275.226667pt;}
.ye7_c00318{bottom:276.360000pt;}
.ye0_c00318{bottom:289.693333pt;}
.ye2_c00318{bottom:291.026667pt;}
.yde_c00318{bottom:291.773333pt;}
.ye1_c00318{bottom:292.560000pt;}
.ydf_c00318{bottom:292.733333pt;}
.ydd_c00318{bottom:293.693333pt;}
.yda_c00318{bottom:308.360000pt;}
.ydc_c00318{bottom:309.106667pt;}
.yd6_c00318{bottom:309.893333pt;}
.yd9_c00318{bottom:310.066667pt;}
.yd5_c00318{bottom:310.440000pt;}
.ydb_c00318{bottom:310.640000pt;}
.yd8_c00318{bottom:311.026667pt;}
.yd7_c00318{bottom:311.973333pt;}
.yd3_c00318{bottom:325.693333pt;}
.yd4_c00318{bottom:326.440000pt;}
.yd2_c00318{bottom:327.400000pt;}
.ycf_c00318{bottom:327.600000pt;}
.yd1_c00318{bottom:328.360000pt;}
.yd0_c00318{bottom:329.306667pt;}
.ycd_c00318{bottom:343.026667pt;}
.ycb_c00318{bottom:343.773333pt;}
.ycc_c00318{bottom:345.693333pt;}
.yce_c00318{bottom:346.640000pt;}
.yc9_c00318{bottom:360.360000pt;}
.yc7_c00318{bottom:361.106667pt;}
.yc3_c00318{bottom:361.893333pt;}
.yc8_c00318{bottom:362.066667pt;}
.yca_c00318{bottom:362.266667pt;}
.yc5_c00318{bottom:362.640000pt;}
.yc4_c00318{bottom:363.026667pt;}
.yc6_c00318{bottom:363.226667pt;}
.yc2_c00318{bottom:363.400000pt;}
.ybf_c00318{bottom:377.693333pt;}
.ybc_c00318{bottom:379.600000pt;}
.ybe_c00318{bottom:379.773333pt;}
.yc1_c00318{bottom:380.360000pt;}
.ybd_c00318{bottom:380.560000pt;}
.ybb_c00318{bottom:380.733333pt;}
.yc0_c00318{bottom:381.693333pt;}
.yba_c00318{bottom:395.026667pt;}
.yb7_c00318{bottom:395.773333pt;}
.yb5_c00318{bottom:396.733333pt;}
.yb8_c00318{bottom:397.693333pt;}
.yb6_c00318{bottom:397.893333pt;}
.yb9_c00318{bottom:398.640000pt;}
.yb3_c00318{bottom:413.493333pt;}
.yaf_c00318{bottom:414.440000pt;}
.yb4_c00318{bottom:415.026667pt;}
.yb0_c00318{bottom:415.226667pt;}
.yb2_c00318{bottom:415.973333pt;}
.yb1_c00318{bottom:416.360000pt;}
.yae_c00318{bottom:417.306667pt;}
.yac_c00318{bottom:431.773333pt;}
.yaa_c00318{bottom:432.560000pt;}
.yab_c00318{bottom:432.733333pt;}
.yad_c00318{bottom:433.306667pt;}
.ya9_c00318{bottom:433.693333pt;}
.ya8_c00318{bottom:434.640000pt;}
.ya5_c00318{bottom:448.360000pt;}
.ya1_c00318{bottom:448.733333pt;}
.ya3_c00318{bottom:449.106667pt;}
.ya2_c00318{bottom:449.893333pt;}
.ya7_c00318{bottom:450.640000pt;}
.ya6_c00318{bottom:451.026667pt;}
.ya4_c00318{bottom:451.973333pt;}
.y9e_c00318{bottom:465.106667pt;}
.ya0_c00318{bottom:465.493333pt;}
.y9d_c00318{bottom:468.360000pt;}
.y9c_c00318{bottom:468.560000pt;}
.y9f_c00318{bottom:469.306667pt;}
.y9b_c00318{bottom:469.693333pt;}
.y95_c00318{bottom:483.773333pt;}
.y98_c00318{bottom:484.160000pt;}
.y97_c00318{bottom:484.933333pt;}
.y9a_c00318{bottom:485.106667pt;}
.y94_c00318{bottom:485.693333pt;}
.y99_c00318{bottom:485.893333pt;}
.y96_c00318{bottom:486.066667pt;}
.y92_c00318{bottom:501.493333pt;}
.y93_c00318{bottom:501.693333pt;}
.y8f_c00318{bottom:502.440000pt;}
.y91_c00318{bottom:503.226667pt;}
.y8e_c00318{bottom:503.400000pt;}
.y90_c00318{bottom:504.360000pt;}
.y8b_c00318{bottom:519.773333pt;}
.y8c_c00318{bottom:521.306667pt;}
.y8a_c00318{bottom:521.693333pt;}
.y8d_c00318{bottom:521.893333pt;}
.y88_c00318{bottom:536.733333pt;}
.y89_c00318{bottom:537.106667pt;}
.y87_c00318{bottom:539.026667pt;}
.y86_c00318{bottom:539.973333pt;}
.y83_c00318{bottom:554.440000pt;}
.y85_c00318{bottom:555.400000pt;}
.y84_c00318{bottom:555.600000pt;}
.y7f_c00318{bottom:555.773333pt;}
.y80_c00318{bottom:556.360000pt;}
.y81_c00318{bottom:556.560000pt;}
.y82_c00318{bottom:557.693333pt;}
.y78_c00318{bottom:571.026667pt;}
.y7e_c00318{bottom:571.973333pt;}
.y79_c00318{bottom:572.733333pt;}
.y77_c00318{bottom:573.106667pt;}
.y7c_c00318{bottom:573.693333pt;}
.y7a_c00318{bottom:573.893333pt;}
.y7d_c00318{bottom:574.640000pt;}
.y7b_c00318{bottom:575.026667pt;}
.y76_c00318{bottom:588.360000pt;}
.y73_c00318{bottom:589.493333pt;}
.y70_c00318{bottom:590.066667pt;}
.y71_c00318{bottom:590.440000pt;}
.y72_c00318{bottom:591.026667pt;}
.y74_c00318{bottom:591.226667pt;}
.y75_c00318{bottom:592.360000pt;}
.y6c_c00318{bottom:607.773333pt;}
.y6e_c00318{bottom:608.560000pt;}
.y6d_c00318{bottom:608.733333pt;}
.y6b_c00318{bottom:609.693333pt;}
.y6f_c00318{bottom:609.893333pt;}
.y6a_c00318{bottom:627.026667pt;}
.y65_c00318{bottom:641.693333pt;}
.y63_c00318{bottom:642.440000pt;}
.y69_c00318{bottom:642.640000pt;}
.y64_c00318{bottom:643.400000pt;}
.y67_c00318{bottom:644.360000pt;}
.y68_c00318{bottom:644.560000pt;}
.y66_c00318{bottom:645.306667pt;}
.y5f_c00318{bottom:659.773333pt;}
.y62_c00318{bottom:660.733333pt;}
.y60_c00318{bottom:661.106667pt;}
.y5e_c00318{bottom:661.693333pt;}
.y61_c00318{bottom:662.640000pt;}
.y5b_c00318{bottom:677.493333pt;}
.y59_c00318{bottom:678.440000pt;}
.y5c_c00318{bottom:679.026667pt;}
.y5d_c00318{bottom:679.226667pt;}
.y5a_c00318{bottom:680.360000pt;}
.y57_c00318{bottom:695.026667pt;}
.y55_c00318{bottom:695.773333pt;}
.y58_c00318{bottom:696.733333pt;}
.y56_c00318{bottom:697.306667pt;}
.y54_c00318{bottom:697.693333pt;}
.y50_c00318{bottom:711.973333pt;}
.y4f_c00318{bottom:713.106667pt;}
.y52_c00318{bottom:713.893333pt;}
.y51_c00318{bottom:714.066667pt;}
.y53_c00318{bottom:715.026667pt;}
.y4e_c00318{bottom:715.973333pt;}
.y4d_c00318{bottom:730.066667pt;}
.y4b_c00318{bottom:730.440000pt;}
.y4c_c00318{bottom:731.973333pt;}
.y4a_c00318{bottom:732.360000pt;}
.y46_c00318{bottom:746.826667pt;}
.y48_c00318{bottom:747.773333pt;}
.y47_c00318{bottom:748.160000pt;}
.y45_c00318{bottom:749.693333pt;}
.y49_c00318{bottom:751.026667pt;}
.y42_c00318{bottom:764.360000pt;}
.y41_c00318{bottom:765.106667pt;}
.y43_c00318{bottom:766.440000pt;}
.y3f_c00318{bottom:767.026667pt;}
.y40_c00318{bottom:767.226667pt;}
.y3e_c00318{bottom:767.973333pt;}
.y44_c00318{bottom:768.360000pt;}
.y39_c00318{bottom:781.693333pt;}
.y3a_c00318{bottom:783.773333pt;}
.y38_c00318{bottom:784.360000pt;}
.y3b_c00318{bottom:784.560000pt;}
.y37_c00318{bottom:785.306667pt;}
.y3d_c00318{bottom:785.693333pt;}
.y3c_c00318{bottom:786.640000pt;}
.y33_c00318{bottom:799.026667pt;}
.y36_c00318{bottom:799.400000pt;}
.y31_c00318{bottom:799.773333pt;}
.y35_c00318{bottom:799.973333pt;}
.y2f_c00318{bottom:800.733333pt;}
.y30_c00318{bottom:801.693333pt;}
.y32_c00318{bottom:802.640000pt;}
.y34_c00318{bottom:803.026667pt;}
.y2a_c00318{bottom:816.360000pt;}
.y2e_c00318{bottom:817.693333pt;}
.y28_c00318{bottom:818.440000pt;}
.y27_c00318{bottom:819.026667pt;}
.y2c_c00318{bottom:819.226667pt;}
.y2d_c00318{bottom:819.400000pt;}
.y29_c00318{bottom:819.973333pt;}
.y2b_c00318{bottom:820.360000pt;}
.y26_c00318{bottom:835.773333pt;}
.y25_c00318{bottom:836.560000pt;}
.y24_c00318{bottom:837.306667pt;}
.y23_c00318{bottom:837.693333pt;}
.y22_c00318{bottom:852.160000pt;}
.y20_c00318{bottom:853.106667pt;}
.y21_c00318{bottom:853.893333pt;}
.y1f_c00318{bottom:855.026667pt;}
.y1d_c00318{bottom:870.440000pt;}
.y1e_c00318{bottom:871.226667pt;}
.y1c_c00318{bottom:872.360000pt;}
.y16_c00318{bottom:887.026667pt;}
.y1b_c00318{bottom:887.773333pt;}
.y1a_c00318{bottom:888.733333pt;}
.y18_c00318{bottom:889.306667pt;}
.y17_c00318{bottom:889.693333pt;}
.y19_c00318{bottom:889.893333pt;}
.y11_c00318{bottom:903.026667pt;}
.y13_c00318{bottom:903.973333pt;}
.y14_c00318{bottom:904.360000pt;}
.y10_c00318{bottom:905.106667pt;}
.y12_c00318{bottom:905.893333pt;}
.yf_c00318{bottom:907.026667pt;}
.y15_c00318{bottom:907.973333pt;}
.yb_c00318{bottom:921.306667pt;}
.yc_c00318{bottom:922.440000pt;}
.ya_c00318{bottom:923.973333pt;}
.y9_c00318{bottom:924.360000pt;}
.yd_c00318{bottom:924.560000pt;}
.ye_c00318{bottom:925.306667pt;}
.y3_c00318{bottom:939.773333pt;}
.y8_c00318{bottom:941.106667pt;}
.y4_c00318{bottom:941.693333pt;}
.y6_c00318{bottom:941.893333pt;}
.y7_c00318{bottom:942.640000pt;}
.y5_c00318{bottom:943.026667pt;}
.y1_c00318{bottom:975.773333pt;}
.y2_c00318{bottom:976.560000pt;}
.h2_c00318{height:20.466875pt;}
.h7_c00318{height:22.303646pt;}
.h4_c00318{height:27.879557pt;}
.h3_c00318{height:31.618698pt;}
.h5_c00318{height:35.357839pt;}
.h1_c00318{height:39.031380pt;}
.h6_c00318{height:42.770521pt;}
.h0_c00318{height:1186.666667pt;}
.w0_c00318{width:782.666667pt;}
.x0_c00318{left:0.000000pt;}
.xc8_c00318{left:135.040000pt;}
.x10_c00318{left:136.000000pt;}
.x3_c00318{left:137.333333pt;}
.x3c_c00318{left:150.666667pt;}
.x10a_c00318{left:152.000000pt;}
.xd0_c00318{left:152.960000pt;}
.xe4_c00318{left:155.040000pt;}
.x7d_c00318{left:156.000000pt;}
.xaa_c00318{left:161.333333pt;}
.xb0_c00318{left:162.666667pt;}
.xf5_c00318{left:167.040000pt;}
.x75_c00318{left:168.373333pt;}
.xc1_c00318{left:170.666667pt;}
.xa2_c00318{left:171.626667pt;}
.xd1_c00318{left:173.333333pt;}
.x29_c00318{left:174.666667pt;}
.x4b_c00318{left:176.000000pt;}
.x67_c00318{left:176.960000pt;}
.x7e_c00318{left:178.666667pt;}
.x3d_c00318{left:180.000000pt;}
.xf6_c00318{left:184.000000pt;}
.x59_c00318{left:184.960000pt;}
.x4_c00318{left:188.000000pt;}
.x2a_c00318{left:189.706667pt;}
.x11_c00318{left:191.040000pt;}
.x4c_c00318{left:193.333333pt;}
.x1c_c00318{left:194.293333pt;}
.x90_c00318{left:196.373333pt;}
.xea_c00318{left:197.333333pt;}
.x105_c00318{left:200.000000pt;}
.xfb_c00318{left:201.706667pt;}
.x36_c00318{left:204.000000pt;}
.x68_c00318{left:204.960000pt;}
.xa3_c00318{left:208.373333pt;}
.x7f_c00318{left:209.333333pt;}
.x10d_c00318{left:210.666667pt;}
.x2b_c00318{left:215.040000pt;}
.x12_c00318{left:216.000000pt;}
.x4d_c00318{left:217.706667pt;}
.x9f_c00318{left:220.000000pt;}
.xd9_c00318{left:220.960000pt;}
.x37_c00318{left:224.573333pt;}
.x69_c00318{left:226.666667pt;}
.x80_c00318{left:228.000000pt;}
.x3e_c00318{left:229.333333pt;}
.xa4_c00318{left:231.626667pt;}
.x86_c00318{left:232.960000pt;}
.xb8_c00318{left:235.040000pt;}
.x5_c00318{left:236.373333pt;}
.x99_c00318{left:237.333333pt;}
.x91_c00318{left:239.040000pt;}
.x13_c00318{left:241.333333pt;}
.x5a_c00318{left:242.666667pt;}
.x6a_c00318{left:245.333333pt;}
.x4e_c00318{left:247.040000pt;}
.x87_c00318{left:249.333333pt;}
.xd2_c00318{left:250.666667pt;}
.x81_c00318{left:251.626667pt;}
.xc9_c00318{left:253.906667pt;}
.x9a_c00318{left:260.373333pt;}
.xb1_c00318{left:262.666667pt;}
.x2c_c00318{left:264.000000pt;}
.x3f_c00318{left:266.666667pt;}
.x6_c00318{left:268.000000pt;}
.x88_c00318{left:269.333333pt;}
.xab_c00318{left:270.293333pt;}
.x107_c00318{left:272.373333pt;}
.x38_c00318{left:273.333333pt;}
.x1d_c00318{left:274.666667pt;}
.xa5_c00318{left:276.000000pt;}
.xda_c00318{left:278.293333pt;}
.xb9_c00318{left:280.000000pt;}
.xd3_c00318{left:282.666667pt;}
.xdf_c00318{left:284.373333pt;}
.x14_c00318{left:286.666667pt;}
.xeb_c00318{left:288.960000pt;}
.x1e_c00318{left:290.666667pt;}
.x40_c00318{left:292.373333pt;}
.x4f_c00318{left:296.960000pt;}
.x7_c00318{left:299.240000pt;}
.x100_c00318{left:300.960000pt;}
.x2d_c00318{left:302.293333pt;}
.x10c_c00318{left:306.666667pt;}
.xa0_c00318{left:307.626667pt;}
.x6b_c00318{left:309.333333pt;}
.xe5_c00318{left:310.666667pt;}
.xf0_c00318{left:312.373333pt;}
.x50_c00318{left:313.333333pt;}
.xbe_c00318{left:315.040000pt;}
.x89_c00318{left:316.000000pt;}
.x5b_c00318{left:318.666667pt;}
.x2e_c00318{left:320.373333pt;}
.x41_c00318{left:321.333333pt;}
.xe6_c00318{left:325.333333pt;}
.xb2_c00318{left:326.666667pt;}
.x15_c00318{left:328.000000pt;}
.xc2_c00318{left:330.666667pt;}
.x1f_c00318{left:332.000000pt;}
.x51_c00318{left:334.666667pt;}
.x5c_c00318{left:337.333333pt;}
.x6c_c00318{left:340.373333pt;}
.xe0_c00318{left:342.666667pt;}
.x39_c00318{left:344.373333pt;}
.x2f_c00318{left:345.706667pt;}
.xac_c00318{left:346.666667pt;}
.xc3_c00318{left:348.000000pt;}
.x8_c00318{left:349.333333pt;}
.x20_c00318{left:350.293333pt;}
.x76_c00318{left:352.000000pt;}
.x42_c00318{left:353.333333pt;}
.x101_c00318{left:354.293333pt;}
.xec_c00318{left:356.000000pt;}
.xba_c00318{left:357.333333pt;}
.x106_c00318{left:358.666667pt;}
.x2_c00318{left:360.000000pt;}
.xb3_c00318{left:363.626667pt;}
.x92_c00318{left:365.333333pt;}
.x6d_c00318{left:367.040000pt;}
.x21_c00318{left:368.373333pt;}
.xf1_c00318{left:370.666667pt;}
.x5d_c00318{left:372.000000pt;}
.x43_c00318{left:372.960000pt;}
.x52_c00318{left:374.666667pt;}
.x9_c00318{left:376.000000pt;}
.xca_c00318{left:377.706667pt;}
.xe7_c00318{left:379.040000pt;}
.x8a_c00318{left:383.240000pt;}
.x9b_c00318{left:385.333333pt;}
.xed_c00318{left:386.666667pt;}
.x6e_c00318{left:388.373333pt;}
.x30_c00318{left:389.333333pt;}
.xe1_c00318{left:390.666667pt;}
.x22_c00318{left:392.000000pt;}
.x53_c00318{left:393.706667pt;}
.xf2_c00318{left:396.000000pt;}
.x77_c00318{left:398.466667pt;}
.x6f_c00318{left:400.960000pt;}
.x16_c00318{left:402.293333pt;}
.xb4_c00318{left:405.333333pt;}
.x23_c00318{left:406.666667pt;}
.xbb_c00318{left:407.626667pt;}
.x5e_c00318{left:409.333333pt;}
.xee_c00318{left:410.666667pt;}
.xfc_c00318{left:413.333333pt;}
.xa6_c00318{left:415.626667pt;}
.x3a_c00318{left:417.333333pt;}
.xad_c00318{left:418.293333pt;}
.xa_c00318{left:420.000000pt;}
.x54_c00318{left:421.333333pt;}
.x70_c00318{left:424.960000pt;}
.xd4_c00318{left:426.666667pt;}
.xcb_c00318{left:428.000000pt;}
.x82_c00318{left:428.960000pt;}
.x44_c00318{left:430.293333pt;}
.x5f_c00318{left:432.000000pt;}
.xf3_c00318{left:432.960000pt;}
.x93_c00318{left:436.000000pt;}
.x78_c00318{left:437.706667pt;}
.xb_c00318{left:441.333333pt;}
.xcc_c00318{left:444.373333pt;}
.x71_c00318{left:447.626667pt;}
.x8b_c00318{left:448.960000pt;}
.xb5_c00318{left:450.666667pt;}
.x3b_c00318{left:452.373333pt;}
.x31_c00318{left:453.333333pt;}
.x94_c00318{left:456.000000pt;}
.xdb_c00318{left:457.133333pt;}
.xd6_c00318{left:458.666667pt;}
.x55_c00318{left:460.000000pt;}
.x79_c00318{left:461.333333pt;}
.x60_c00318{left:463.040000pt;}
.x24_c00318{left:464.373333pt;}
.xbf_c00318{left:466.666667pt;}
.xa7_c00318{left:468.000000pt;}
.x17_c00318{left:469.333333pt;}
.x45_c00318{left:470.293333pt;}
.x32_c00318{left:472.373333pt;}
.xcd_c00318{left:473.706667pt;}
.xe8_c00318{left:474.666667pt;}
.xc4_c00318{left:476.000000pt;}
.xfd_c00318{left:477.706667pt;}
.xc_c00318{left:478.666667pt;}
.x108_c00318{left:486.293333pt;}
.xbc_c00318{left:487.240000pt;}
.x7a_c00318{left:489.706667pt;}
.x18_c00318{left:490.666667pt;}
.x9c_c00318{left:492.000000pt;}
.x25_c00318{left:493.333333pt;}
.x46_c00318{left:496.000000pt;}
.xd_c00318{left:496.960000pt;}
.xef_c00318{left:498.666667pt;}
.x56_c00318{left:500.373333pt;}
.x95_c00318{left:501.333333pt;}
.xde_c00318{left:502.666667pt;}
.x61_c00318{left:503.626667pt;}
.xc5_c00318{left:504.960000pt;}
.x7b_c00318{left:507.040000pt;}
.x72_c00318{left:508.000000pt;}
.xa8_c00318{left:509.333333pt;}
.xd7_c00318{left:513.333333pt;}
.xd5_c00318{left:514.666667pt;}
.xc0_c00318{left:516.373333pt;}
.x19_c00318{left:518.293333pt;}
.x8c_c00318{left:520.000000pt;}
.x96_c00318{left:523.040000pt;}
.x57_c00318{left:524.000000pt;}
.xe_c00318{left:525.333333pt;}
.xdc_c00318{left:529.333333pt;}
.x26_c00318{left:530.293333pt;}
.x33_c00318{left:532.960000pt;}
.xc6_c00318{left:537.333333pt;}
.x8d_c00318{left:540.373333pt;}
.x62_c00318{left:542.293333pt;}
.xae_c00318{left:544.000000pt;}
.xb6_c00318{left:545.333333pt;}
.xf7_c00318{left:547.040000pt;}
.x7c_c00318{left:548.960000pt;}
.x97_c00318{left:550.666667pt;}
.xbd_c00318{left:553.333333pt;}
.xe2_c00318{left:556.000000pt;}
.x8e_c00318{left:557.706667pt;}
.x63_c00318{left:559.040000pt;}
.x73_c00318{left:560.960000pt;}
.xf_c00318{left:562.293333pt;}
.xdd_c00318{left:564.000000pt;}
.x9d_c00318{left:564.960000pt;}
.x103_c00318{left:567.040000pt;}
.x47_c00318{left:569.133333pt;}
.x10b_c00318{left:570.666667pt;}
.xce_c00318{left:572.000000pt;}
.x34_c00318{left:573.706667pt;}
.xf8_c00318{left:577.333333pt;}
.x27_c00318{left:578.293333pt;}
.x83_c00318{left:579.626667pt;}
.x1a_c00318{left:581.333333pt;}
.x102_c00318{left:584.000000pt;}
.x64_c00318{left:584.960000pt;}
.x48_c00318{left:586.466667pt;}
.xc7_c00318{left:589.706667pt;}
.xf9_c00318{left:590.666667pt;}
.x28_c00318{left:592.000000pt;}
.xfe_c00318{left:593.706667pt;}
.x109_c00318{left:594.666667pt;}
.xcf_c00318{left:597.333333pt;}
.xaf_c00318{left:598.293333pt;}
.x84_c00318{left:600.373333pt;}
.x8f_c00318{left:601.706667pt;}
.x65_c00318{left:602.666667pt;}
.x98_c00318{left:604.000000pt;}
.xb7_c00318{left:606.666667pt;}
.x104_c00318{left:609.706667pt;}
.x9e_c00318{left:610.666667pt;}
.x58_c00318{left:612.373333pt;}
.xe3_c00318{left:613.333333pt;}
.x49_c00318{left:614.666667pt;}
.xf4_c00318{left:619.040000pt;}
.x74_c00318{left:620.373333pt;}
.xd8_c00318{left:621.706667pt;}
.xa1_c00318{left:622.666667pt;}
.xa9_c00318{left:624.373333pt;}
.x66_c00318{left:625.333333pt;}
.x35_c00318{left:626.666667pt;}
.x1_c00318{left:628.000000pt;}
.xfa_c00318{left:629.333333pt;}
.x4a_c00318{left:631.040000pt;}
.x85_c00318{left:633.333333pt;}
.xff_c00318{left:634.293333pt;}
.x1b_c00318{left:636.000000pt;}
.xe9_c00318{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a9a084c39977afdc5ac93d8f.woff2')format("woff");}.ff1_c00319{font-family:ff1_c00319;line-height:1.688965;font-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_c00319{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_c00319{transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);}
.m89_c00319{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.maa_c00319{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m48_c00319{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m7_c00319{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mc5_c00319{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m6d_c00319{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mb4_c00319{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m5a_c00319{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m4d_c00319{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m8d_c00319{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mab_c00319{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m6a_c00319{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m72_c00319{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m2b_c00319{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.mb5_c00319{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m59_c00319{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m68_c00319{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m3a_c00319{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m2c_c00319{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m5d_c00319{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.md3_c00319{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m87_c00319{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.mdd_c00319{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m6_c00319{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m2d_c00319{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.m4a_c00319{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m29_c00319{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.mee_c00319{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.mc6_c00319{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m70_c00319{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.ma4_c00319{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.mc7_c00319{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m9a_c00319{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m79_c00319{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m93_c00319{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m1c_c00319{transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);}
.m84_c00319{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m7f_c00319{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.md2_c00319{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.m1e_c00319{transform:matrix(0.411874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411874,0.000000,0.000000,0.250000,0,0);}
.med_c00319{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.mc_c00319{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m43_c00319{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m10_c00319{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m34_c00319{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.md6_c00319{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m7c_c00319{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m71_c00319{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m46_c00319{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mb_c00319{transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);}
.m1f_c00319{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m78_c00319{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m35_c00319{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m8f_c00319{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.md4_c00319{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m7d_c00319{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m95_c00319{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.ma1_c00319{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m40_c00319{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m94_c00319{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.mb8_c00319{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m3c_c00319{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mea_c00319{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m14_c00319{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m57_c00319{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m20_c00319{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m7b_c00319{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m9_c00319{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.ma9_c00319{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.mcf_c00319{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m6f_c00319{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m69_c00319{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mca_c00319{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m64_c00319{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m61_c00319{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m1b_c00319{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.mba_c00319{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.mc3_c00319{transform:matrix(0.447614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447614,0.000000,0.000000,0.250000,0,0);}
.m58_c00319{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m7e_c00319{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.ma0_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);}
.mf_c00319{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.m8e_c00319{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.m9d_c00319{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.me1_c00319{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m85_c00319{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m16_c00319{transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);}
.m6c_c00319{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m17_c00319{transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);}
.mbe_c00319{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.md7_c00319{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mc9_c00319{transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);}
.m88_c00319{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m3d_c00319{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m62_c00319{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.mcc_c00319{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m97_c00319{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m3b_c00319{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m5f_c00319{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m18_c00319{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mbc_c00319{transform:matrix(0.481513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481513,0.000000,0.000000,0.250000,0,0);}
.md_c00319{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m86_c00319{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.mec_c00319{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m9f_c00319{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m1_c00319{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m8b_c00319{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.me8_c00319{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.mde_c00319{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.ma6_c00319{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m13_c00319{transform:matrix(0.496471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496471,0.000000,0.000000,0.250000,0,0);}
.me_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);}
.maf_c00319{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.ma8_c00319{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.mbb_c00319{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m36_c00319{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mac_c00319{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m80_c00319{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.ma5_c00319{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m19_c00319{transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);}
.mb9_c00319{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m27_c00319{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m1d_c00319{transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);}
.m31_c00319{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m75_c00319{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m56_c00319{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.mae_c00319{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m67_c00319{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mc2_c00319{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.md0_c00319{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.mb0_c00319{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m74_c00319{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mb3_c00319{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m39_c00319{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m4e_c00319{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m60_c00319{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.mb1_c00319{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m51_c00319{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m49_c00319{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mcb_c00319{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m30_c00319{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m4f_c00319{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m23_c00319{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m77_c00319{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.me7_c00319{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m26_c00319{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m55_c00319{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m24_c00319{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m81_c00319{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.me5_c00319{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m9c_c00319{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m5c_c00319{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m96_c00319{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.me2_c00319{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m6b_c00319{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m90_c00319{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m33_c00319{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m8a_c00319{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.me9_c00319{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m50_c00319{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m53_c00319{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m3f_c00319{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mdb_c00319{transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);}
.m98_c00319{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mc4_c00319{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m15_c00319{transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);}
.m2a_c00319{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m65_c00319{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m92_c00319{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m54_c00319{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m4c_c00319{transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);}
.ma2_c00319{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.me3_c00319{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m28_c00319{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.ma3_c00319{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m2e_c00319{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m9b_c00319{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.mce_c00319{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m4b_c00319{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m8c_c00319{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mdf_c00319{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m2_c00319{transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);}
.md9_c00319{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.md1_c00319{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m63_c00319{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.mda_c00319{transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);}
.me0_c00319{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m73_c00319{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mdc_c00319{transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);}
.m91_c00319{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.mb2_c00319{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m42_c00319{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m3_c00319{transform:matrix(0.599066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599066,0.000000,0.000000,0.250000,0,0);}
.m3e_c00319{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);}
.m52_c00319{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m4_c00319{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.m5e_c00319{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m0_c00319{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m45_c00319{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m5b_c00319{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mb6_c00319{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.m6e_c00319{transform:matrix(0.616701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616701,0.000000,0.000000,0.250000,0,0);}
.m8_c00319{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);}
.me4_c00319{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);}
.m44_c00319{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m11_c00319{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m66_c00319{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mb7_c00319{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m1a_c00319{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.ma_c00319{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);}
.md5_c00319{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m12_c00319{transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);}
.m38_c00319{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m47_c00319{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m25_c00319{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m9e_c00319{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m99_c00319{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.md8_c00319{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.meb_c00319{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.ma7_c00319{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mad_c00319{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.mcd_c00319{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m5_c00319{transform:matrix(0.744118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.744118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.744118,0.000000,0.000000,0.250000,0,0);}
.m32_c00319{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mbf_c00319{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.m82_c00319{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.me6_c00319{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m76_c00319{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mc1_c00319{transform:matrix(0.771635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.771635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.771635,0.000000,0.000000,0.250000,0,0);}
.mc0_c00319{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m2f_c00319{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.mbd_c00319{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.mc8_c00319{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m41_c00319{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m83_c00319{transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);}
.m22_c00319{transform:matrix(3.978070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.978070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.978070,0.000000,0.000000,0.250000,0,0);}
.m7a_c00319{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00319{vertical-align:0.000000px;}
.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:-4.309399px;}
.ws1_c00319{word-spacing:-1.038795px;}
.ws2_c00319{word-spacing:0.000000px;}
.fc0_c00319{color:transparent;}
.fs6_c00319{font-size:3.420000px;}
.fs7_c00319{font-size:18.720000px;}
.fs0_c00319{font-size:20.400000px;}
.fs2_c00319{font-size:25.500000px;}
.fs1_c00319{font-size:28.920000px;}
.fs4_c00319{font-size:32.340000px;}
.fs3_c00319{font-size:35.700000px;}
.fs5_c00319{font-size:39.120000px;}
.y0_c00319{bottom:0.000000px;}
.yc1_c00319{bottom:251.745000px;}
.ybf_c00319{bottom:252.825000px;}
.yc0_c00319{bottom:253.905000px;}
.ybb_c00319{bottom:270.405000px;}
.yb8_c00319{bottom:271.245000px;}
.ybc_c00319{bottom:271.905000px;}
.ybd_c00319{bottom:272.745000px;}
.yb9_c00319{bottom:273.405000px;}
.ybe_c00319{bottom:273.630000px;}
.yba_c00319{bottom:274.905000px;}
.yb7_c00319{bottom:292.245000px;}
.yb4_c00319{bottom:294.405000px;}
.yb5_c00319{bottom:294.630000px;}
.yb6_c00319{bottom:295.470000px;}
.yb3_c00319{bottom:310.905000px;}
.yb1_c00319{bottom:312.825000px;}
.yb0_c00319{bottom:313.905000px;}
.yb2_c00319{bottom:314.970000px;}
.yaf_c00319{bottom:330.405000px;}
.yae_c00319{bottom:331.245000px;}
.yac_c00319{bottom:333.405000px;}
.yad_c00319{bottom:333.630000px;}
.ya7_c00319{bottom:349.905000px;}
.ya5_c00319{bottom:350.745000px;}
.yab_c00319{bottom:352.245000px;}
.ya4_c00319{bottom:352.905000px;}
.ya6_c00319{bottom:353.130000px;}
.ya8_c00319{bottom:353.325000px;}
.yaa_c00319{bottom:353.970000px;}
.ya9_c00319{bottom:354.405000px;}
.y9e_c00319{bottom:370.245000px;}
.y9f_c00319{bottom:372.405000px;}
.ya3_c00319{bottom:372.630000px;}
.ya0_c00319{bottom:372.825000px;}
.ya2_c00319{bottom:373.470000px;}
.ya1_c00319{bottom:373.905000px;}
.y9d_c00319{bottom:389.970000px;}
.y98_c00319{bottom:391.050000px;}
.y99_c00319{bottom:391.245000px;}
.y97_c00319{bottom:392.130000px;}
.y9a_c00319{bottom:393.405000px;}
.y9b_c00319{bottom:393.630000px;}
.y9c_c00319{bottom:394.470000px;}
.y95_c00319{bottom:409.905000px;}
.y90_c00319{bottom:410.745000px;}
.y93_c00319{bottom:411.630000px;}
.y94_c00319{bottom:411.825000px;}
.y92_c00319{bottom:412.470000px;}
.y91_c00319{bottom:412.905000px;}
.y96_c00319{bottom:413.970000px;}
.y8f_c00319{bottom:429.405000px;}
.y8c_c00319{bottom:430.245000px;}
.y8e_c00319{bottom:432.405000px;}
.y8d_c00319{bottom:432.630000px;}
.y87_c00319{bottom:449.745000px;}
.y8a_c00319{bottom:450.825000px;}
.y86_c00319{bottom:451.905000px;}
.y88_c00319{bottom:452.130000px;}
.y8b_c00319{bottom:452.970000px;}
.y89_c00319{bottom:453.405000px;}
.y85_c00319{bottom:470.745000px;}
.y83_c00319{bottom:472.905000px;}
.y84_c00319{bottom:472.920000px;}
.y81_c00319{bottom:491.325000px;}
.y7f_c00319{bottom:491.970000px;}
.y82_c00319{bottom:492.405000px;}
.y80_c00319{bottom:493.470000px;}
.y7e_c00319{bottom:509.745000px;}
.y7c_c00319{bottom:511.905000px;}
.y7d_c00319{bottom:512.970000px;}
.y78_c00319{bottom:529.245000px;}
.y79_c00319{bottom:530.130000px;}
.y7b_c00319{bottom:530.970000px;}
.y7a_c00319{bottom:531.405000px;}
.y73_c00319{bottom:548.325000px;}
.y76_c00319{bottom:548.745000px;}
.y75_c00319{bottom:549.180000px;}
.y74_c00319{bottom:550.905000px;}
.y77_c00319{bottom:551.970000px;}
.y70_c00319{bottom:567.405000px;}
.y6f_c00319{bottom:568.245000px;}
.y6d_c00319{bottom:570.405000px;}
.y71_c00319{bottom:570.630000px;}
.y72_c00319{bottom:571.470000px;}
.y6e_c00319{bottom:571.920000px;}
.y6c_c00319{bottom:589.245000px;}
.y6a_c00319{bottom:589.905000px;}
.y6b_c00319{bottom:591.405000px;}
.y68_c00319{bottom:606.405000px;}
.y69_c00319{bottom:608.745000px;}
.y67_c00319{bottom:609.630000px;}
.y66_c00319{bottom:609.825000px;}
.y64_c00319{bottom:610.470000px;}
.y65_c00319{bottom:610.905000px;}
.y62_c00319{bottom:628.245000px;}
.y5e_c00319{bottom:628.905000px;}
.y61_c00319{bottom:629.130000px;}
.y63_c00319{bottom:629.325000px;}
.y5f_c00319{bottom:630.405000px;}
.y60_c00319{bottom:631.470000px;}
.y5a_c00319{bottom:646.470000px;}
.y5c_c00319{bottom:647.745000px;}
.y5b_c00319{bottom:648.630000px;}
.y5d_c00319{bottom:649.470000px;}
.y59_c00319{bottom:649.905000px;}
.y55_c00319{bottom:667.245000px;}
.y56_c00319{bottom:668.325000px;}
.y58_c00319{bottom:668.745000px;}
.y53_c00319{bottom:669.405000px;}
.y54_c00319{bottom:669.630000px;}
.y57_c00319{bottom:670.470000px;}
.y4e_c00319{bottom:686.745000px;}
.y51_c00319{bottom:687.825000px;}
.y52_c00319{bottom:688.245000px;}
.y4b_c00319{bottom:688.905000px;}
.y4c_c00319{bottom:689.130000px;}
.y4f_c00319{bottom:689.325000px;}
.y50_c00319{bottom:690.405000px;}
.y4d_c00319{bottom:690.420000px;}
.y49_c00319{bottom:706.245000px;}
.y4a_c00319{bottom:708.405000px;}
.y48_c00319{bottom:724.905000px;}
.y47_c00319{bottom:725.325000px;}
.y43_c00319{bottom:725.745000px;}
.y45_c00319{bottom:726.825000px;}
.y46_c00319{bottom:727.245000px;}
.y44_c00319{bottom:729.420000px;}
.y42_c00319{bottom:746.745000px;}
.y41_c00319{bottom:747.630000px;}
.y40_c00319{bottom:765.405000px;}
.y3f_c00319{bottom:766.245000px;}
.y3d_c00319{bottom:768.405000px;}
.y3e_c00319{bottom:768.630000px;}
.y3b_c00319{bottom:785.745000px;}
.y3c_c00319{bottom:787.470000px;}
.y3a_c00319{bottom:787.905000px;}
.y39_c00319{bottom:805.245000px;}
.y38_c00319{bottom:807.405000px;}
.y37_c00319{bottom:824.745000px;}
.y36_c00319{bottom:825.825000px;}
.y34_c00319{bottom:826.905000px;}
.y35_c00319{bottom:827.970000px;}
.y2e_c00319{bottom:842.745000px;}
.y33_c00319{bottom:845.325000px;}
.y2f_c00319{bottom:845.745000px;}
.y31_c00319{bottom:846.630000px;}
.y32_c00319{bottom:847.470000px;}
.y30_c00319{bottom:847.905000px;}
.y2d_c00319{bottom:862.905000px;}
.y2a_c00319{bottom:865.245000px;}
.y29_c00319{bottom:866.130000px;}
.y2c_c00319{bottom:866.970000px;}
.y2b_c00319{bottom:867.405000px;}
.y26_c00319{bottom:884.745000px;}
.y28_c00319{bottom:885.630000px;}
.y27_c00319{bottom:886.905000px;}
.y23_c00319{bottom:903.405000px;}
.y21_c00319{bottom:904.245000px;}
.y25_c00319{bottom:905.130000px;}
.y22_c00319{bottom:906.405000px;}
.y24_c00319{bottom:907.470000px;}
.y1d_c00319{bottom:923.745000px;}
.y20_c00319{bottom:924.180000px;}
.y1e_c00319{bottom:925.905000px;}
.y1f_c00319{bottom:926.130000px;}
.y16_c00319{bottom:943.245000px;}
.y17_c00319{bottom:943.680000px;}
.y1c_c00319{bottom:944.745000px;}
.y19_c00319{bottom:945.405000px;}
.y18_c00319{bottom:945.420000px;}
.y1a_c00319{bottom:945.630000px;}
.y1b_c00319{bottom:946.905000px;}
.y13_c00319{bottom:969.825000px;}
.y12_c00319{bottom:970.050000px;}
.y14_c00319{bottom:970.470000px;}
.y11_c00319{bottom:970.905000px;}
.y15_c00319{bottom:971.325000px;}
.yf_c00319{bottom:985.905000px;}
.y10_c00319{bottom:986.550000px;}
.ye_c00319{bottom:986.970000px;}
.yd_c00319{bottom:988.050000px;}
.y9_c00319{bottom:1006.470000px;}
.ya_c00319{bottom:1007.325000px;}
.yb_c00319{bottom:1008.405000px;}
.yc_c00319{bottom:1009.905000px;}
.y8_c00319{bottom:1010.550000px;}
.y7_c00319{bottom:1031.745000px;}
.y6_c00319{bottom:1033.470000px;}
.y5_c00319{bottom:1033.905000px;}
.y3_c00319{bottom:1063.470000px;}
.y4_c00319{bottom:1063.905000px;}
.y2_c00319{bottom:1098.405000px;}
.y1_c00319{bottom:1102.050000px;}
.h7_c00319{height:4.206533px;}
.h8_c00319{height:23.025234px;}
.h1_c00319{height:25.091602px;}
.h3_c00319{height:31.364502px;}
.h2_c00319{height:35.571035px;}
.h5_c00319{height:39.777568px;}
.h4_c00319{height:43.910303px;}
.h6_c00319{height:48.116836px;}
.h0_c00319{height:1335.000000px;}
.w0_c00319{width:880.500000px;}
.x0_c00319{left:0.000000px;}
.x2_c00319{left:152.580000px;}
.x46_c00319{left:154.500000px;}
.x2b_c00319{left:155.775000px;}
.x86_c00319{left:157.080000px;}
.x13_c00319{left:169.500000px;}
.x89_c00319{left:171.000000px;}
.x7f_c00319{left:172.500000px;}
.xa5_c00319{left:174.420000px;}
.xcb_c00319{left:175.500000px;}
.xde_c00319{left:178.920000px;}
.x9a_c00319{left:181.080000px;}
.xef_c00319{left:184.500000px;}
.x51_c00319{left:186.000000px;}
.x92_c00319{left:187.080000px;}
.x5b_c00319{left:190.920000px;}
.x2c_c00319{left:195.000000px;}
.xa6_c00319{left:200.580000px;}
.x38_c00319{left:202.080000px;}
.xaf_c00319{left:204.000000px;}
.x87_c00319{left:205.500000px;}
.xc2_c00319{left:207.000000px;}
.x21_c00319{left:210.420000px;}
.x47_c00319{left:211.500000px;}
.x77_c00319{left:212.580000px;}
.xf6_c00319{left:214.500000px;}
.x14_c00319{left:217.500000px;}
.x64_c00319{left:219.000000px;}
.x39_c00319{left:220.500000px;}
.x6d_c00319{left:223.080000px;}
.x1e_c00319{left:226.920000px;}
.xcc_c00319{left:228.420000px;}
.x52_c00319{left:229.920000px;}
.x9e_c00319{left:231.420000px;}
.xd3_c00319{left:232.500000px;}
.x2d_c00319{left:235.500000px;}
.xb0_c00319{left:238.080000px;}
.x1f_c00319{left:239.580000px;}
.x78_c00319{left:242.145000px;}
.xc3_c00319{left:244.500000px;}
.x3a_c00319{left:246.000000px;}
.x5c_c00319{left:247.080000px;}
.xa7_c00319{left:249.000000px;}
.x53_c00319{left:250.080000px;}
.x8a_c00319{left:252.000000px;}
.xb8_c00319{left:253.920000px;}
.x88_c00319{left:255.000000px;}
.x15_c00319{left:259.500000px;}
.xd4_c00319{left:260.580000px;}
.x80_c00319{left:262.500000px;}
.xa8_c00319{left:264.000000px;}
.x5d_c00319{left:265.920000px;}
.x2e_c00319{left:268.500000px;}
.x22_c00319{left:270.000000px;}
.x20_c00319{left:271.500000px;}
.xdf_c00319{left:272.775000px;}
.x9_c00319{left:274.500000px;}
.xfa_c00319{left:276.000000px;}
.xbd_c00319{left:279.000000px;}
.x81_c00319{left:283.500000px;}
.x3b_c00319{left:285.420000px;}
.x48_c00319{left:286.500000px;}
.x72_c00319{left:288.420000px;}
.x23_c00319{left:291.000000px;}
.x5_c00319{left:294.000000px;}
.xa1_c00319{left:295.500000px;}
.xa_c00319{left:296.580000px;}
.x79_c00319{left:301.500000px;}
.x8b_c00319{left:303.000000px;}
.x6e_c00319{left:306.000000px;}
.xb1_c00319{left:307.080000px;}
.xa2_c00319{left:310.500000px;}
.x2f_c00319{left:312.000000px;}
.xb_c00319{left:315.000000px;}
.x3c_c00319{left:318.000000px;}
.x49_c00319{left:319.500000px;}
.x16_c00319{left:321.420000px;}
.x24_c00319{left:322.500000px;}
.x8c_c00319{left:325.080000px;}
.x54_c00319{left:327.000000px;}
.xeb_c00319{left:328.080000px;}
.x93_c00319{left:331.500000px;}
.xd5_c00319{left:335.580000px;}
.x7a_c00319{left:337.500000px;}
.xa3_c00319{left:339.000000px;}
.xc6_c00319{left:342.000000px;}
.x6f_c00319{left:343.500000px;}
.xcd_c00319{left:345.420000px;}
.x25_c00319{left:346.500000px;}
.x3d_c00319{left:349.080000px;}
.xc_c00319{left:351.000000px;}
.x8d_c00319{left:352.920000px;}
.xb2_c00319{left:354.000000px;}
.x3_c00319{left:356.580000px;}
.x6_c00319{left:360.420000px;}
.x94_c00319{left:363.420000px;}
.x30_c00319{left:367.920000px;}
.x4a_c00319{left:370.920000px;}
.x55_c00319{left:372.420000px;}
.xe3_c00319{left:373.500000px;}
.x26_c00319{left:374.580000px;}
.x65_c00319{left:376.920000px;}
.xf0_c00319{left:379.500000px;}
.x17_c00319{left:383.580000px;}
.x5e_c00319{left:388.080000px;}
.xd6_c00319{left:390.000000px;}
.xd_c00319{left:391.080000px;}
.xce_c00319{left:393.420000px;}
.xb9_c00319{left:394.500000px;}
.x95_c00319{left:397.500000px;}
.x7b_c00319{left:398.580000px;}
.x3e_c00319{left:400.920000px;}
.x1_c00319{left:403.500000px;}
.x8e_c00319{left:406.500000px;}
.xf1_c00319{left:408.000000px;}
.x4b_c00319{left:409.500000px;}
.xc4_c00319{left:410.580000px;}
.x66_c00319{left:412.500000px;}
.x31_c00319{left:414.000000px;}
.x4_c00319{left:417.000000px;}
.x56_c00319{left:422.580000px;}
.xbe_c00319{left:429.000000px;}
.xc7_c00319{left:430.080000px;}
.x96_c00319{left:433.500000px;}
.x73_c00319{left:435.000000px;}
.x5f_c00319{left:436.500000px;}
.x27_c00319{left:439.500000px;}
.xf2_c00319{left:441.000000px;}
.xc5_c00319{left:442.500000px;}
.x9b_c00319{left:444.000000px;}
.x32_c00319{left:445.920000px;}
.xcf_c00319{left:448.080000px;}
.xe_c00319{left:449.580000px;}
.xa9_c00319{left:451.920000px;}
.xb3_c00319{left:453.420000px;}
.x3f_c00319{left:454.500000px;}
.x82_c00319{left:456.645000px;}
.x18_c00319{left:457.920000px;}
.xf7_c00319{left:460.500000px;}
.x7c_c00319{left:462.000000px;}
.x9f_c00319{left:463.500000px;}
.xf_c00319{left:471.420000px;}
.xe4_c00319{left:475.080000px;}
.x7_c00319{left:476.580000px;}
.xec_c00319{left:478.500000px;}
.x33_c00319{left:480.000000px;}
.xf8_c00319{left:481.920000px;}
.x4c_c00319{left:484.080000px;}
.xb4_c00319{left:486.000000px;}
.x10_c00319{left:489.000000px;}
.x67_c00319{left:491.580000px;}
.xda_c00319{left:493.080000px;}
.xaa_c00319{left:496.500000px;}
.xed_c00319{left:499.920000px;}
.x19_c00319{left:502.080000px;}
.xa4_c00319{left:503.580000px;}
.xc8_c00319{left:505.080000px;}
.x7d_c00319{left:507.000000px;}
.xe0_c00319{left:508.500000px;}
.x40_c00319{left:510.000000px;}
.xb5_c00319{left:513.000000px;}
.xba_c00319{left:514.080000px;}
.xf3_c00319{left:517.080000px;}
.xf9_c00319{left:518.580000px;}
.x57_c00319{left:522.420000px;}
.x68_c00319{left:523.500000px;}
.x11_c00319{left:525.420000px;}
.x97_c00319{left:530.580000px;}
.xbf_c00319{left:532.500000px;}
.x4d_c00319{left:535.500000px;}
.xf4_c00319{left:537.000000px;}
.x28_c00319{left:538.920000px;}
.xd7_c00319{left:540.000000px;}
.xe5_c00319{left:543.000000px;}
.xd0_c00319{left:547.500000px;}
.x41_c00319{left:549.000000px;}
.x1a_c00319{left:550.500000px;}
.x34_c00319{left:552.000000px;}
.xab_c00319{left:553.500000px;}
.x8_c00319{left:556.275000px;}
.xdb_c00319{left:557.580000px;}
.x60_c00319{left:559.500000px;}
.xe1_c00319{left:561.000000px;}
.xe7_c00319{left:562.080000px;}
.xb6_c00319{left:564.000000px;}
.xd1_c00319{left:565.500000px;}
.x12_c00319{left:571.080000px;}
.xbb_c00319{left:573.000000px;}
.x35_c00319{left:575.580000px;}
.x98_c00319{left:577.500000px;}
.xac_c00319{left:580.500000px;}
.x7e_c00319{left:581.580000px;}
.x42_c00319{left:583.500000px;}
.xc9_c00319{left:585.000000px;}
.xdc_c00319{left:586.500000px;}
.x58_c00319{left:588.420000px;}
.x70_c00319{left:589.500000px;}
.xe8_c00319{left:592.920000px;}
.x29_c00319{left:597.000000px;}
.x43_c00319{left:600.000000px;}
.x61_c00319{left:601.500000px;}
.x8f_c00319{left:607.080000px;}
.x1b_c00319{left:610.500000px;}
.xd8_c00319{left:613.275000px;}
.x71_c00319{left:615.000000px;}
.x69_c00319{left:619.080000px;}
.x4e_c00319{left:621.420000px;}
.x59_c00319{left:623.580000px;}
.x9c_c00319{left:625.500000px;}
.x44_c00319{left:627.420000px;}
.xc0_c00319{left:628.920000px;}
.xca_c00319{left:630.420000px;}
.x90_c00319{left:631.500000px;}
.x74_c00319{left:633.420000px;}
.xf5_c00319{left:637.500000px;}
.xad_c00319{left:639.420000px;}
.x36_c00319{left:641.580000px;}
.xe6_c00319{left:643.080000px;}
.x99_c00319{left:646.500000px;}
.xdd_c00319{left:649.080000px;}
.x4f_c00319{left:655.920000px;}
.x83_c00319{left:657.420000px;}
.x6a_c00319{left:660.000000px;}
.x2a_c00319{left:662.580000px;}
.xb7_c00319{left:664.080000px;}
.xe9_c00319{left:665.580000px;}
.x62_c00319{left:669.000000px;}
.x1c_c00319{left:673.920000px;}
.x75_c00319{left:675.000000px;}
.xd2_c00319{left:676.500000px;}
.x6b_c00319{left:678.000000px;}
.x9d_c00319{left:680.580000px;}
.x84_c00319{left:682.080000px;}
.xee_c00319{left:684.000000px;}
.x50_c00319{left:685.080000px;}
.xd9_c00319{left:687.000000px;}
.x37_c00319{left:688.500000px;}
.x45_c00319{left:691.080000px;}
.x5a_c00319{left:693.000000px;}
.xa0_c00319{left:696.000000px;}
.xea_c00319{left:697.500000px;}
.x63_c00319{left:700.500000px;}
.x85_c00319{left:702.000000px;}
.x6c_c00319{left:703.500000px;}
.x91_c00319{left:706.500000px;}
.x1d_c00319{left:709.500000px;}
.xe2_c00319{left:712.500000px;}
.x76_c00319{left:714.000000px;}
.xbc_c00319{left:718.500000px;}
.xc1_c00319{left:723.000000px;}
.xae_c00319{left:726.000000px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.ls0_c00319{letter-spacing:0.000000pt;}
.ws0_c00319{word-spacing:-3.830577pt;}
.ws1_c00319{word-spacing:-0.923373pt;}
.ws2_c00319{word-spacing:0.000000pt;}
.fs6_c00319{font-size:3.040000pt;}
.fs7_c00319{font-size:16.640000pt;}
.fs0_c00319{font-size:18.133333pt;}
.fs2_c00319{font-size:22.666667pt;}
.fs1_c00319{font-size:25.706667pt;}
.fs4_c00319{font-size:28.746667pt;}
.fs3_c00319{font-size:31.733333pt;}
.fs5_c00319{font-size:34.773333pt;}
.y0_c00319{bottom:0.000000pt;}
.yc1_c00319{bottom:223.773333pt;}
.ybf_c00319{bottom:224.733333pt;}
.yc0_c00319{bottom:225.693333pt;}
.ybb_c00319{bottom:240.360000pt;}
.yb8_c00319{bottom:241.106667pt;}
.ybc_c00319{bottom:241.693333pt;}
.ybd_c00319{bottom:242.440000pt;}
.yb9_c00319{bottom:243.026667pt;}
.ybe_c00319{bottom:243.226667pt;}
.yba_c00319{bottom:244.360000pt;}
.yb7_c00319{bottom:259.773333pt;}
.yb4_c00319{bottom:261.693333pt;}
.yb5_c00319{bottom:261.893333pt;}
.yb6_c00319{bottom:262.640000pt;}
.yb3_c00319{bottom:276.360000pt;}
.yb1_c00319{bottom:278.066667pt;}
.yb0_c00319{bottom:279.026667pt;}
.yb2_c00319{bottom:279.973333pt;}
.yaf_c00319{bottom:293.693333pt;}
.yae_c00319{bottom:294.440000pt;}
.yac_c00319{bottom:296.360000pt;}
.yad_c00319{bottom:296.560000pt;}
.ya7_c00319{bottom:311.026667pt;}
.ya5_c00319{bottom:311.773333pt;}
.yab_c00319{bottom:313.106667pt;}
.ya4_c00319{bottom:313.693333pt;}
.ya6_c00319{bottom:313.893333pt;}
.ya8_c00319{bottom:314.066667pt;}
.yaa_c00319{bottom:314.640000pt;}
.ya9_c00319{bottom:315.026667pt;}
.y9e_c00319{bottom:329.106667pt;}
.y9f_c00319{bottom:331.026667pt;}
.ya3_c00319{bottom:331.226667pt;}
.ya0_c00319{bottom:331.400000pt;}
.ya2_c00319{bottom:331.973333pt;}
.ya1_c00319{bottom:332.360000pt;}
.y9d_c00319{bottom:346.640000pt;}
.y98_c00319{bottom:347.600000pt;}
.y99_c00319{bottom:347.773333pt;}
.y97_c00319{bottom:348.560000pt;}
.y9a_c00319{bottom:349.693333pt;}
.y9b_c00319{bottom:349.893333pt;}
.y9c_c00319{bottom:350.640000pt;}
.y95_c00319{bottom:364.360000pt;}
.y90_c00319{bottom:365.106667pt;}
.y93_c00319{bottom:365.893333pt;}
.y94_c00319{bottom:366.066667pt;}
.y92_c00319{bottom:366.640000pt;}
.y91_c00319{bottom:367.026667pt;}
.y96_c00319{bottom:367.973333pt;}
.y8f_c00319{bottom:381.693333pt;}
.y8c_c00319{bottom:382.440000pt;}
.y8e_c00319{bottom:384.360000pt;}
.y8d_c00319{bottom:384.560000pt;}
.y87_c00319{bottom:399.773333pt;}
.y8a_c00319{bottom:400.733333pt;}
.y86_c00319{bottom:401.693333pt;}
.y88_c00319{bottom:401.893333pt;}
.y8b_c00319{bottom:402.640000pt;}
.y89_c00319{bottom:403.026667pt;}
.y85_c00319{bottom:418.440000pt;}
.y83_c00319{bottom:420.360000pt;}
.y84_c00319{bottom:420.373333pt;}
.y81_c00319{bottom:436.733333pt;}
.y7f_c00319{bottom:437.306667pt;}
.y82_c00319{bottom:437.693333pt;}
.y80_c00319{bottom:438.640000pt;}
.y7e_c00319{bottom:453.106667pt;}
.y7c_c00319{bottom:455.026667pt;}
.y7d_c00319{bottom:455.973333pt;}
.y78_c00319{bottom:470.440000pt;}
.y79_c00319{bottom:471.226667pt;}
.y7b_c00319{bottom:471.973333pt;}
.y7a_c00319{bottom:472.360000pt;}
.y73_c00319{bottom:487.400000pt;}
.y76_c00319{bottom:487.773333pt;}
.y75_c00319{bottom:488.160000pt;}
.y74_c00319{bottom:489.693333pt;}
.y77_c00319{bottom:490.640000pt;}
.y70_c00319{bottom:504.360000pt;}
.y6f_c00319{bottom:505.106667pt;}
.y6d_c00319{bottom:507.026667pt;}
.y71_c00319{bottom:507.226667pt;}
.y72_c00319{bottom:507.973333pt;}
.y6e_c00319{bottom:508.373333pt;}
.y6c_c00319{bottom:523.773333pt;}
.y6a_c00319{bottom:524.360000pt;}
.y6b_c00319{bottom:525.693333pt;}
.y68_c00319{bottom:539.026667pt;}
.y69_c00319{bottom:541.106667pt;}
.y67_c00319{bottom:541.893333pt;}
.y66_c00319{bottom:542.066667pt;}
.y64_c00319{bottom:542.640000pt;}
.y65_c00319{bottom:543.026667pt;}
.y62_c00319{bottom:558.440000pt;}
.y5e_c00319{bottom:559.026667pt;}
.y61_c00319{bottom:559.226667pt;}
.y63_c00319{bottom:559.400000pt;}
.y5f_c00319{bottom:560.360000pt;}
.y60_c00319{bottom:561.306667pt;}
.y5a_c00319{bottom:574.640000pt;}
.y5c_c00319{bottom:575.773333pt;}
.y5b_c00319{bottom:576.560000pt;}
.y5d_c00319{bottom:577.306667pt;}
.y59_c00319{bottom:577.693333pt;}
.y55_c00319{bottom:593.106667pt;}
.y56_c00319{bottom:594.066667pt;}
.y58_c00319{bottom:594.440000pt;}
.y53_c00319{bottom:595.026667pt;}
.y54_c00319{bottom:595.226667pt;}
.y57_c00319{bottom:595.973333pt;}
.y4e_c00319{bottom:610.440000pt;}
.y51_c00319{bottom:611.400000pt;}
.y52_c00319{bottom:611.773333pt;}
.y4b_c00319{bottom:612.360000pt;}
.y4c_c00319{bottom:612.560000pt;}
.y4f_c00319{bottom:612.733333pt;}
.y50_c00319{bottom:613.693333pt;}
.y4d_c00319{bottom:613.706667pt;}
.y49_c00319{bottom:627.773333pt;}
.y4a_c00319{bottom:629.693333pt;}
.y48_c00319{bottom:644.360000pt;}
.y47_c00319{bottom:644.733333pt;}
.y43_c00319{bottom:645.106667pt;}
.y45_c00319{bottom:646.066667pt;}
.y46_c00319{bottom:646.440000pt;}
.y44_c00319{bottom:648.373333pt;}
.y42_c00319{bottom:663.773333pt;}
.y41_c00319{bottom:664.560000pt;}
.y40_c00319{bottom:680.360000pt;}
.y3f_c00319{bottom:681.106667pt;}
.y3d_c00319{bottom:683.026667pt;}
.y3e_c00319{bottom:683.226667pt;}
.y3b_c00319{bottom:698.440000pt;}
.y3c_c00319{bottom:699.973333pt;}
.y3a_c00319{bottom:700.360000pt;}
.y39_c00319{bottom:715.773333pt;}
.y38_c00319{bottom:717.693333pt;}
.y37_c00319{bottom:733.106667pt;}
.y36_c00319{bottom:734.066667pt;}
.y34_c00319{bottom:735.026667pt;}
.y35_c00319{bottom:735.973333pt;}
.y2e_c00319{bottom:749.106667pt;}
.y33_c00319{bottom:751.400000pt;}
.y2f_c00319{bottom:751.773333pt;}
.y31_c00319{bottom:752.560000pt;}
.y32_c00319{bottom:753.306667pt;}
.y30_c00319{bottom:753.693333pt;}
.y2d_c00319{bottom:767.026667pt;}
.y2a_c00319{bottom:769.106667pt;}
.y29_c00319{bottom:769.893333pt;}
.y2c_c00319{bottom:770.640000pt;}
.y2b_c00319{bottom:771.026667pt;}
.y26_c00319{bottom:786.440000pt;}
.y28_c00319{bottom:787.226667pt;}
.y27_c00319{bottom:788.360000pt;}
.y23_c00319{bottom:803.026667pt;}
.y21_c00319{bottom:803.773333pt;}
.y25_c00319{bottom:804.560000pt;}
.y22_c00319{bottom:805.693333pt;}
.y24_c00319{bottom:806.640000pt;}
.y1d_c00319{bottom:821.106667pt;}
.y20_c00319{bottom:821.493333pt;}
.y1e_c00319{bottom:823.026667pt;}
.y1f_c00319{bottom:823.226667pt;}
.y16_c00319{bottom:838.440000pt;}
.y17_c00319{bottom:838.826667pt;}
.y1c_c00319{bottom:839.773333pt;}
.y19_c00319{bottom:840.360000pt;}
.y18_c00319{bottom:840.373333pt;}
.y1a_c00319{bottom:840.560000pt;}
.y1b_c00319{bottom:841.693333pt;}
.y13_c00319{bottom:862.066667pt;}
.y12_c00319{bottom:862.266667pt;}
.y14_c00319{bottom:862.640000pt;}
.y11_c00319{bottom:863.026667pt;}
.y15_c00319{bottom:863.400000pt;}
.yf_c00319{bottom:876.360000pt;}
.y10_c00319{bottom:876.933333pt;}
.ye_c00319{bottom:877.306667pt;}
.yd_c00319{bottom:878.266667pt;}
.y9_c00319{bottom:894.640000pt;}
.ya_c00319{bottom:895.400000pt;}
.yb_c00319{bottom:896.360000pt;}
.yc_c00319{bottom:897.693333pt;}
.y8_c00319{bottom:898.266667pt;}
.y7_c00319{bottom:917.106667pt;}
.y6_c00319{bottom:918.640000pt;}
.y5_c00319{bottom:919.026667pt;}
.y3_c00319{bottom:945.306667pt;}
.y4_c00319{bottom:945.693333pt;}
.y2_c00319{bottom:976.360000pt;}
.y1_c00319{bottom:979.600000pt;}
.h7_c00319{height:3.739141pt;}
.h8_c00319{height:20.466875pt;}
.h1_c00319{height:22.303646pt;}
.h3_c00319{height:27.879557pt;}
.h2_c00319{height:31.618698pt;}
.h5_c00319{height:35.357839pt;}
.h4_c00319{height:39.031380pt;}
.h6_c00319{height:42.770521pt;}
.h0_c00319{height:1186.666667pt;}
.w0_c00319{width:782.666667pt;}
.x0_c00319{left:0.000000pt;}
.x2_c00319{left:135.626667pt;}
.x46_c00319{left:137.333333pt;}
.x2b_c00319{left:138.466667pt;}
.x86_c00319{left:139.626667pt;}
.x13_c00319{left:150.666667pt;}
.x89_c00319{left:152.000000pt;}
.x7f_c00319{left:153.333333pt;}
.xa5_c00319{left:155.040000pt;}
.xcb_c00319{left:156.000000pt;}
.xde_c00319{left:159.040000pt;}
.x9a_c00319{left:160.960000pt;}
.xef_c00319{left:164.000000pt;}
.x51_c00319{left:165.333333pt;}
.x92_c00319{left:166.293333pt;}
.x5b_c00319{left:169.706667pt;}
.x2c_c00319{left:173.333333pt;}
.xa6_c00319{left:178.293333pt;}
.x38_c00319{left:179.626667pt;}
.xaf_c00319{left:181.333333pt;}
.x87_c00319{left:182.666667pt;}
.xc2_c00319{left:184.000000pt;}
.x21_c00319{left:187.040000pt;}
.x47_c00319{left:188.000000pt;}
.x77_c00319{left:188.960000pt;}
.xf6_c00319{left:190.666667pt;}
.x14_c00319{left:193.333333pt;}
.x64_c00319{left:194.666667pt;}
.x39_c00319{left:196.000000pt;}
.x6d_c00319{left:198.293333pt;}
.x1e_c00319{left:201.706667pt;}
.xcc_c00319{left:203.040000pt;}
.x52_c00319{left:204.373333pt;}
.x9e_c00319{left:205.706667pt;}
.xd3_c00319{left:206.666667pt;}
.x2d_c00319{left:209.333333pt;}
.xb0_c00319{left:211.626667pt;}
.x1f_c00319{left:212.960000pt;}
.x78_c00319{left:215.240000pt;}
.xc3_c00319{left:217.333333pt;}
.x3a_c00319{left:218.666667pt;}
.x5c_c00319{left:219.626667pt;}
.xa7_c00319{left:221.333333pt;}
.x53_c00319{left:222.293333pt;}
.x8a_c00319{left:224.000000pt;}
.xb8_c00319{left:225.706667pt;}
.x88_c00319{left:226.666667pt;}
.x15_c00319{left:230.666667pt;}
.xd4_c00319{left:231.626667pt;}
.x80_c00319{left:233.333333pt;}
.xa8_c00319{left:234.666667pt;}
.x5d_c00319{left:236.373333pt;}
.x2e_c00319{left:238.666667pt;}
.x22_c00319{left:240.000000pt;}
.x20_c00319{left:241.333333pt;}
.xdf_c00319{left:242.466667pt;}
.x9_c00319{left:244.000000pt;}
.xfa_c00319{left:245.333333pt;}
.xbd_c00319{left:248.000000pt;}
.x81_c00319{left:252.000000pt;}
.x3b_c00319{left:253.706667pt;}
.x48_c00319{left:254.666667pt;}
.x72_c00319{left:256.373333pt;}
.x23_c00319{left:258.666667pt;}
.x5_c00319{left:261.333333pt;}
.xa1_c00319{left:262.666667pt;}
.xa_c00319{left:263.626667pt;}
.x79_c00319{left:268.000000pt;}
.x8b_c00319{left:269.333333pt;}
.x6e_c00319{left:272.000000pt;}
.xb1_c00319{left:272.960000pt;}
.xa2_c00319{left:276.000000pt;}
.x2f_c00319{left:277.333333pt;}
.xb_c00319{left:280.000000pt;}
.x3c_c00319{left:282.666667pt;}
.x49_c00319{left:284.000000pt;}
.x16_c00319{left:285.706667pt;}
.x24_c00319{left:286.666667pt;}
.x8c_c00319{left:288.960000pt;}
.x54_c00319{left:290.666667pt;}
.xeb_c00319{left:291.626667pt;}
.x93_c00319{left:294.666667pt;}
.xd5_c00319{left:298.293333pt;}
.x7a_c00319{left:300.000000pt;}
.xa3_c00319{left:301.333333pt;}
.xc6_c00319{left:304.000000pt;}
.x6f_c00319{left:305.333333pt;}
.xcd_c00319{left:307.040000pt;}
.x25_c00319{left:308.000000pt;}
.x3d_c00319{left:310.293333pt;}
.xc_c00319{left:312.000000pt;}
.x8d_c00319{left:313.706667pt;}
.xb2_c00319{left:314.666667pt;}
.x3_c00319{left:316.960000pt;}
.x6_c00319{left:320.373333pt;}
.x94_c00319{left:323.040000pt;}
.x30_c00319{left:327.040000pt;}
.x4a_c00319{left:329.706667pt;}
.x55_c00319{left:331.040000pt;}
.xe3_c00319{left:332.000000pt;}
.x26_c00319{left:332.960000pt;}
.x65_c00319{left:335.040000pt;}
.xf0_c00319{left:337.333333pt;}
.x17_c00319{left:340.960000pt;}
.x5e_c00319{left:344.960000pt;}
.xd6_c00319{left:346.666667pt;}
.xd_c00319{left:347.626667pt;}
.xce_c00319{left:349.706667pt;}
.xb9_c00319{left:350.666667pt;}
.x95_c00319{left:353.333333pt;}
.x7b_c00319{left:354.293333pt;}
.x3e_c00319{left:356.373333pt;}
.x1_c00319{left:358.666667pt;}
.x8e_c00319{left:361.333333pt;}
.xf1_c00319{left:362.666667pt;}
.x4b_c00319{left:364.000000pt;}
.xc4_c00319{left:364.960000pt;}
.x66_c00319{left:366.666667pt;}
.x31_c00319{left:368.000000pt;}
.x4_c00319{left:370.666667pt;}
.x56_c00319{left:375.626667pt;}
.xbe_c00319{left:381.333333pt;}
.xc7_c00319{left:382.293333pt;}
.x96_c00319{left:385.333333pt;}
.x73_c00319{left:386.666667pt;}
.x5f_c00319{left:388.000000pt;}
.x27_c00319{left:390.666667pt;}
.xf2_c00319{left:392.000000pt;}
.xc5_c00319{left:393.333333pt;}
.x9b_c00319{left:394.666667pt;}
.x32_c00319{left:396.373333pt;}
.xcf_c00319{left:398.293333pt;}
.xe_c00319{left:399.626667pt;}
.xa9_c00319{left:401.706667pt;}
.xb3_c00319{left:403.040000pt;}
.x3f_c00319{left:404.000000pt;}
.x82_c00319{left:405.906667pt;}
.x18_c00319{left:407.040000pt;}
.xf7_c00319{left:409.333333pt;}
.x7c_c00319{left:410.666667pt;}
.x9f_c00319{left:412.000000pt;}
.xf_c00319{left:419.040000pt;}
.xe4_c00319{left:422.293333pt;}
.x7_c00319{left:423.626667pt;}
.xec_c00319{left:425.333333pt;}
.x33_c00319{left:426.666667pt;}
.xf8_c00319{left:428.373333pt;}
.x4c_c00319{left:430.293333pt;}
.xb4_c00319{left:432.000000pt;}
.x10_c00319{left:434.666667pt;}
.x67_c00319{left:436.960000pt;}
.xda_c00319{left:438.293333pt;}
.xaa_c00319{left:441.333333pt;}
.xed_c00319{left:444.373333pt;}
.x19_c00319{left:446.293333pt;}
.xa4_c00319{left:447.626667pt;}
.xc8_c00319{left:448.960000pt;}
.x7d_c00319{left:450.666667pt;}
.xe0_c00319{left:452.000000pt;}
.x40_c00319{left:453.333333pt;}
.xb5_c00319{left:456.000000pt;}
.xba_c00319{left:456.960000pt;}
.xf3_c00319{left:459.626667pt;}
.xf9_c00319{left:460.960000pt;}
.x57_c00319{left:464.373333pt;}
.x68_c00319{left:465.333333pt;}
.x11_c00319{left:467.040000pt;}
.x97_c00319{left:471.626667pt;}
.xbf_c00319{left:473.333333pt;}
.x4d_c00319{left:476.000000pt;}
.xf4_c00319{left:477.333333pt;}
.x28_c00319{left:479.040000pt;}
.xd7_c00319{left:480.000000pt;}
.xe5_c00319{left:482.666667pt;}
.xd0_c00319{left:486.666667pt;}
.x41_c00319{left:488.000000pt;}
.x1a_c00319{left:489.333333pt;}
.x34_c00319{left:490.666667pt;}
.xab_c00319{left:492.000000pt;}
.x8_c00319{left:494.466667pt;}
.xdb_c00319{left:495.626667pt;}
.x60_c00319{left:497.333333pt;}
.xe1_c00319{left:498.666667pt;}
.xe7_c00319{left:499.626667pt;}
.xb6_c00319{left:501.333333pt;}
.xd1_c00319{left:502.666667pt;}
.x12_c00319{left:507.626667pt;}
.xbb_c00319{left:509.333333pt;}
.x35_c00319{left:511.626667pt;}
.x98_c00319{left:513.333333pt;}
.xac_c00319{left:516.000000pt;}
.x7e_c00319{left:516.960000pt;}
.x42_c00319{left:518.666667pt;}
.xc9_c00319{left:520.000000pt;}
.xdc_c00319{left:521.333333pt;}
.x58_c00319{left:523.040000pt;}
.x70_c00319{left:524.000000pt;}
.xe8_c00319{left:527.040000pt;}
.x29_c00319{left:530.666667pt;}
.x43_c00319{left:533.333333pt;}
.x61_c00319{left:534.666667pt;}
.x8f_c00319{left:539.626667pt;}
.x1b_c00319{left:542.666667pt;}
.xd8_c00319{left:545.133333pt;}
.x71_c00319{left:546.666667pt;}
.x69_c00319{left:550.293333pt;}
.x4e_c00319{left:552.373333pt;}
.x59_c00319{left:554.293333pt;}
.x9c_c00319{left:556.000000pt;}
.x44_c00319{left:557.706667pt;}
.xc0_c00319{left:559.040000pt;}
.xca_c00319{left:560.373333pt;}
.x90_c00319{left:561.333333pt;}
.x74_c00319{left:563.040000pt;}
.xf5_c00319{left:566.666667pt;}
.xad_c00319{left:568.373333pt;}
.x36_c00319{left:570.293333pt;}
.xe6_c00319{left:571.626667pt;}
.x99_c00319{left:574.666667pt;}
.xdd_c00319{left:576.960000pt;}
.x4f_c00319{left:583.040000pt;}
.x83_c00319{left:584.373333pt;}
.x6a_c00319{left:586.666667pt;}
.x2a_c00319{left:588.960000pt;}
.xb7_c00319{left:590.293333pt;}
.xe9_c00319{left:591.626667pt;}
.x62_c00319{left:594.666667pt;}
.x1c_c00319{left:599.040000pt;}
.x75_c00319{left:600.000000pt;}
.xd2_c00319{left:601.333333pt;}
.x6b_c00319{left:602.666667pt;}
.x9d_c00319{left:604.960000pt;}
.x84_c00319{left:606.293333pt;}
.xee_c00319{left:608.000000pt;}
.x50_c00319{left:608.960000pt;}
.xd9_c00319{left:610.666667pt;}
.x37_c00319{left:612.000000pt;}
.x45_c00319{left:614.293333pt;}
.x5a_c00319{left:616.000000pt;}
.xa0_c00319{left:618.666667pt;}
.xea_c00319{left:620.000000pt;}
.x63_c00319{left:622.666667pt;}
.x85_c00319{left:624.000000pt;}
.x6c_c00319{left:625.333333pt;}
.x91_c00319{left:628.000000pt;}
.x1d_c00319{left:630.666667pt;}
.xe2_c00319{left:633.333333pt;}
.x76_c00319{left:634.666667pt;}
.xbc_c00319{left:638.666667pt;}
.xc1_c00319{left:642.666667pt;}
.xae_c00319{left:645.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_510337f5c76d5e4ae6bf9a45.woff2')format("woff");}.ff1_c00320{font-family:ff1_c00320;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m46_c00320{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m4c_c00320{transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);}
.ma9_c00320{transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);}
.m97_c00320{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m4b_c00320{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m7_c00320{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mf2_c00320{transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);}
.m2a_c00320{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m19_c00320{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.ma0_c00320{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mbc_c00320{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.m25_c00320{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m54_c00320{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m48_c00320{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mb6_c00320{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m10_c00320{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m24_c00320{transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);}
.md_c00320{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m43_c00320{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mce_c00320{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.mf_c00320{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mec_c00320{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m4a_c00320{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.mcd_c00320{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m45_c00320{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m4e_c00320{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_c00320{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mee_c00320{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m1b_c00320{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m8e_c00320{transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);}
.mda_c00320{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m74_c00320{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m69_c00320{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.mf0_c00320{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m26_c00320{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m96_c00320{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mb2_c00320{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mb3_c00320{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.m11_c00320{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m99_c00320{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m6a_c00320{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m5a_c00320{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m50_c00320{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mad_c00320{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.ma2_c00320{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m3a_c00320{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mc7_c00320{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mc6_c00320{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m3_c00320{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m6f_c00320{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.mbf_c00320{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mbe_c00320{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m38_c00320{transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);}
.m57_c00320{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m5d_c00320{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.ma_c00320{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.me2_c00320{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.md3_c00320{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.mea_c00320{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m16_c00320{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.me1_c00320{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.m21_c00320{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.me6_c00320{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.mdf_c00320{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.mdb_c00320{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m71_c00320{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m9f_c00320{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m2f_c00320{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.mc3_c00320{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m6e_c00320{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.m87_c00320{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m7b_c00320{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m18_c00320{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m82_c00320{transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);}
.m2c_c00320{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m93_c00320{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m6_c00320{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.ma7_c00320{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m42_c00320{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.m6c_c00320{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.mc5_c00320{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.ma6_c00320{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.mb9_c00320{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.ma3_c00320{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m3d_c00320{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m80_c00320{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m58_c00320{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.mef_c00320{transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);}
.m1_c00320{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m30_c00320{transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);}
.mb_c00320{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.md7_c00320{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mc0_c00320{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m55_c00320{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.md2_c00320{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m79_c00320{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m3e_c00320{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.md6_c00320{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.m5e_c00320{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.mbb_c00320{transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);}
.m78_c00320{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m85_c00320{transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);}
.m91_c00320{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m66_c00320{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m51_c00320{transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);}
.m8a_c00320{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m9a_c00320{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.me0_c00320{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.ma1_c00320{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m6d_c00320{transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);}
.m98_c00320{transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);}
.m22_c00320{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m89_c00320{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m77_c00320{transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);}
.mb1_c00320{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mb0_c00320{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m83_c00320{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.mc2_c00320{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m65_c00320{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m90_c00320{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m4_c00320{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);}
.me9_c00320{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mcb_c00320{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m6b_c00320{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m7f_c00320{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m60_c00320{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m8_c00320{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.me5_c00320{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.me_c00320{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m61_c00320{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.md5_c00320{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.maa_c00320{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m72_c00320{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.mab_c00320{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m52_c00320{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.md9_c00320{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m5f_c00320{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m70_c00320{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m29_c00320{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m27_c00320{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m1e_c00320{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mc9_c00320{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m5c_c00320{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m86_c00320{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mde_c00320{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m36_c00320{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m33_c00320{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m7e_c00320{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mcf_c00320{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m88_c00320{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m84_c00320{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m23_c00320{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m7d_c00320{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m4f_c00320{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m5_c00320{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m35_c00320{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.ma5_c00320{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m62_c00320{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.mc8_c00320{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m1d_c00320{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m73_c00320{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mcc_c00320{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m32_c00320{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m40_c00320{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.md0_c00320{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.mac_c00320{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m76_c00320{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m94_c00320{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m2b_c00320{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m31_c00320{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m17_c00320{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m1a_c00320{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mc1_c00320{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m56_c00320{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m15_c00320{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m44_c00320{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m1f_c00320{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m81_c00320{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m13_c00320{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.ma8_c00320{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m67_c00320{transform:matrix(0.554267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554267,0.000000,0.000000,0.250000,0,0);}
.m2d_c00320{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mb8_c00320{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m9_c00320{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.meb_c00320{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.me7_c00320{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m49_c00320{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mc4_c00320{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m92_c00320{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.mb5_c00320{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);}
.md8_c00320{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m9e_c00320{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m9d_c00320{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m39_c00320{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m64_c00320{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.me8_c00320{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m2_c00320{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mb7_c00320{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mbd_c00320{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m95_c00320{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.mc_c00320{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m9c_c00320{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m20_c00320{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m8c_c00320{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.m7a_c00320{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m47_c00320{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.ma4_c00320{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.mdd_c00320{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_c00320{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m8d_c00320{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m1c_c00320{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m68_c00320{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m8b_c00320{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m3f_c00320{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m41_c00320{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m28_c00320{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m5b_c00320{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mf1_c00320{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m4d_c00320{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);}
.me4_c00320{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mca_c00320{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m63_c00320{transform:matrix(0.651971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651971,0.000000,0.000000,0.250000,0,0);}
.m59_c00320{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m14_c00320{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m0_c00320{transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);}
.mdc_c00320{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.me3_c00320{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.md4_c00320{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m12_c00320{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mba_c00320{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.m9b_c00320{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mb4_c00320{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mae_c00320{transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);}
.m37_c00320{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.med_c00320{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m34_c00320{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m7c_c00320{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m3b_c00320{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m3c_c00320{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.md1_c00320{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m75_c00320{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m8f_c00320{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.maf_c00320{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,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:-7.049706px;}
.ws1_c00320{word-spacing:0.000000px;}
.fc0_c00320{color:transparent;}
.fs6_c00320{font-size:3.420000px;}
.fs0_c00320{font-size:18.720000px;}
.fs4_c00320{font-size:25.500000px;}
.fs1_c00320{font-size:28.920000px;}
.fs3_c00320{font-size:32.340000px;}
.fs2_c00320{font-size:35.700000px;}
.fs5_c00320{font-size:39.120000px;}
.y0_c00320{bottom:0.000000px;}
.yc0_c00320{bottom:252.180000px;}
.ybc_c00320{bottom:253.245000px;}
.ybf_c00320{bottom:253.905000px;}
.ybb_c00320{bottom:254.130000px;}
.ybe_c00320{bottom:254.970000px;}
.ybd_c00320{bottom:255.405000px;}
.yba_c00320{bottom:256.905000px;}
.yb9_c00320{bottom:271.245000px;}
.yb7_c00320{bottom:272.745000px;}
.yb8_c00320{bottom:273.630000px;}
.yb5_c00320{bottom:274.245000px;}
.yb6_c00320{bottom:274.905000px;}
.yb3_c00320{bottom:292.245000px;}
.yb4_c00320{bottom:293.745000px;}
.yb2_c00320{bottom:294.405000px;}
.yb1_c00320{bottom:295.905000px;}
.yb0_c00320{bottom:311.745000px;}
.yac_c00320{bottom:313.245000px;}
.yae_c00320{bottom:313.905000px;}
.yad_c00320{bottom:314.130000px;}
.yaf_c00320{bottom:315.405000px;}
.yab_c00320{bottom:332.325000px;}
.ya9_c00320{bottom:332.745000px;}
.yaa_c00320{bottom:333.405000px;}
.ya8_c00320{bottom:334.470000px;}
.ya7_c00320{bottom:334.905000px;}
.ya4_c00320{bottom:352.245000px;}
.ya6_c00320{bottom:352.905000px;}
.ya5_c00320{bottom:353.130000px;}
.ya3_c00320{bottom:354.405000px;}
.ya1_c00320{bottom:369.405000px;}
.y9e_c00320{bottom:371.745000px;}
.y9f_c00320{bottom:372.825000px;}
.ya2_c00320{bottom:373.470000px;}
.ya0_c00320{bottom:373.905000px;}
.y98_c00320{bottom:391.245000px;}
.y9b_c00320{bottom:391.470000px;}
.y9d_c00320{bottom:392.130000px;}
.y9c_c00320{bottom:393.405000px;}
.y9a_c00320{bottom:393.630000px;}
.y99_c00320{bottom:394.470000px;}
.y96_c00320{bottom:409.905000px;}
.y94_c00320{bottom:410.745000px;}
.y95_c00320{bottom:411.825000px;}
.y93_c00320{bottom:412.905000px;}
.y97_c00320{bottom:413.130000px;}
.y92_c00320{bottom:414.405000px;}
.y90_c00320{bottom:430.245000px;}
.y8e_c00320{bottom:430.470000px;}
.y91_c00320{bottom:431.325000px;}
.y8d_c00320{bottom:432.405000px;}
.y8f_c00320{bottom:433.470000px;}
.y88_c00320{bottom:448.905000px;}
.y86_c00320{bottom:449.745000px;}
.y8a_c00320{bottom:449.970000px;}
.y8c_c00320{bottom:450.825000px;}
.y85_c00320{bottom:451.245000px;}
.y87_c00320{bottom:451.905000px;}
.y8b_c00320{bottom:452.130000px;}
.y89_c00320{bottom:453.405000px;}
.y81_c00320{bottom:470.745000px;}
.y84_c00320{bottom:472.470000px;}
.y82_c00320{bottom:472.905000px;}
.y80_c00320{bottom:473.130000px;}
.y83_c00320{bottom:473.970000px;}
.y7f_c00320{bottom:490.245000px;}
.y7e_c00320{bottom:491.130000px;}
.y7b_c00320{bottom:491.325000px;}
.y7c_c00320{bottom:492.405000px;}
.y7d_c00320{bottom:493.470000px;}
.y77_c00320{bottom:509.745000px;}
.y79_c00320{bottom:510.825000px;}
.y76_c00320{bottom:511.905000px;}
.y7a_c00320{bottom:512.130000px;}
.y78_c00320{bottom:512.970000px;}
.y75_c00320{bottom:529.245000px;}
.y72_c00320{bottom:530.745000px;}
.y74_c00320{bottom:531.405000px;}
.y73_c00320{bottom:531.630000px;}
.y6d_c00320{bottom:550.245000px;}
.y6e_c00320{bottom:550.905000px;}
.y6f_c00320{bottom:551.130000px;}
.y71_c00320{bottom:551.970000px;}
.y70_c00320{bottom:552.405000px;}
.y69_c00320{bottom:569.745000px;}
.y6c_c00320{bottom:570.630000px;}
.y6b_c00320{bottom:571.905000px;}
.y6a_c00320{bottom:571.920000px;}
.y68_c00320{bottom:589.245000px;}
.y67_c00320{bottom:590.130000px;}
.y66_c00320{bottom:591.405000px;}
.y65_c00320{bottom:607.680000px;}
.y64_c00320{bottom:608.745000px;}
.y63_c00320{bottom:609.630000px;}
.y61_c00320{bottom:610.470000px;}
.y62_c00320{bottom:610.905000px;}
.y5e_c00320{bottom:627.825000px;}
.y5d_c00320{bottom:628.245000px;}
.y5f_c00320{bottom:629.325000px;}
.y5c_c00320{bottom:630.405000px;}
.y60_c00320{bottom:630.630000px;}
.y5b_c00320{bottom:647.745000px;}
.y5a_c00320{bottom:649.470000px;}
.y59_c00320{bottom:649.905000px;}
.y58_c00320{bottom:650.130000px;}
.y54_c00320{bottom:667.245000px;}
.y55_c00320{bottom:668.745000px;}
.y57_c00320{bottom:669.405000px;}
.y56_c00320{bottom:669.825000px;}
.y53_c00320{bottom:670.905000px;}
.y52_c00320{bottom:685.905000px;}
.y4e_c00320{bottom:688.245000px;}
.y4f_c00320{bottom:689.130000px;}
.y50_c00320{bottom:689.325000px;}
.y4d_c00320{bottom:689.970000px;}
.y51_c00320{bottom:690.405000px;}
.y4b_c00320{bottom:706.905000px;}
.y4c_c00320{bottom:707.745000px;}
.y4a_c00320{bottom:708.825000px;}
.y49_c00320{bottom:709.905000px;}
.y46_c00320{bottom:726.825000px;}
.y48_c00320{bottom:727.245000px;}
.y47_c00320{bottom:728.325000px;}
.y45_c00320{bottom:729.405000px;}
.y43_c00320{bottom:747.630000px;}
.y44_c00320{bottom:747.825000px;}
.y42_c00320{bottom:748.905000px;}
.y41_c00320{bottom:749.130000px;}
.y3e_c00320{bottom:766.245000px;}
.y40_c00320{bottom:767.325000px;}
.y3d_c00320{bottom:768.405000px;}
.y3f_c00320{bottom:768.630000px;}
.y3a_c00320{bottom:785.745000px;}
.y3b_c00320{bottom:786.825000px;}
.y3c_c00320{bottom:787.905000px;}
.y37_c00320{bottom:804.405000px;}
.y39_c00320{bottom:805.245000px;}
.y38_c00320{bottom:806.325000px;}
.y35_c00320{bottom:807.405000px;}
.y36_c00320{bottom:808.470000px;}
.y32_c00320{bottom:824.745000px;}
.y34_c00320{bottom:825.825000px;}
.y33_c00320{bottom:826.905000px;}
.y31_c00320{bottom:845.745000px;}
.y2e_c00320{bottom:846.630000px;}
.y30_c00320{bottom:846.825000px;}
.y2f_c00320{bottom:847.905000px;}
.y2c_c00320{bottom:863.745000px;}
.y2a_c00320{bottom:865.245000px;}
.y2d_c00320{bottom:866.325000px;}
.y2b_c00320{bottom:867.405000px;}
.y25_c00320{bottom:883.470000px;}
.y28_c00320{bottom:883.680000px;}
.y24_c00320{bottom:884.745000px;}
.y29_c00320{bottom:885.630000px;}
.y27_c00320{bottom:886.470000px;}
.y26_c00320{bottom:886.905000px;}
.y23_c00320{bottom:904.245000px;}
.y21_c00320{bottom:905.970000px;}
.y22_c00320{bottom:906.405000px;}
.y20_c00320{bottom:922.905000px;}
.y1d_c00320{bottom:923.745000px;}
.y1c_c00320{bottom:925.905000px;}
.y1f_c00320{bottom:926.130000px;}
.y1e_c00320{bottom:926.970000px;}
.y1b_c00320{bottom:944.130000px;}
.y1a_c00320{bottom:944.970000px;}
.y18_c00320{bottom:945.405000px;}
.y19_c00320{bottom:945.630000px;}
.y17_c00320{bottom:946.905000px;}
.y12_c00320{bottom:962.745000px;}
.y14_c00320{bottom:963.825000px;}
.y15_c00320{bottom:964.245000px;}
.y13_c00320{bottom:964.905000px;}
.y16_c00320{bottom:966.405000px;}
.y10_c00320{bottom:982.680000px;}
.ye_c00320{bottom:983.745000px;}
.y11_c00320{bottom:985.470000px;}
.yf_c00320{bottom:985.905000px;}
.yc_c00320{bottom:1003.245000px;}
.yd_c00320{bottom:1005.405000px;}
.yb_c00320{bottom:1024.905000px;}
.y8_c00320{bottom:1041.405000px;}
.y7_c00320{bottom:1042.245000px;}
.y9_c00320{bottom:1043.130000px;}
.ya_c00320{bottom:1043.970000px;}
.y6_c00320{bottom:1044.405000px;}
.y5_c00320{bottom:1061.325000px;}
.y4_c00320{bottom:1061.745000px;}
.y3_c00320{bottom:1063.905000px;}
.y2_c00320{bottom:1099.905000px;}
.y1_c00320{bottom:1103.130000px;}
.h7_c00320{height:4.206533px;}
.h1_c00320{height:23.025234px;}
.h5_c00320{height:31.364502px;}
.h2_c00320{height:35.571035px;}
.h4_c00320{height:39.777568px;}
.h3_c00320{height:43.910303px;}
.h6_c00320{height:48.116836px;}
.h0_c00320{height:1335.000000px;}
.w0_c00320{width:880.500000px;}
.x0_c00320{left:0.000000px;}
.xf_c00320{left:151.080000px;}
.xbf_c00320{left:152.580000px;}
.xd1_c00320{left:154.080000px;}
.x3_c00320{left:166.500000px;}
.x96_c00320{left:168.000000px;}
.xc0_c00320{left:171.420000px;}
.x8c_c00320{left:172.920000px;}
.xaf_c00320{left:174.000000px;}
.x85_c00320{left:177.645000px;}
.xed_c00320{left:180.420000px;}
.x44_c00320{left:181.500000px;}
.x56_c00320{left:182.580000px;}
.x10_c00320{left:185.580000px;}
.xcb_c00320{left:189.420000px;}
.x9e_c00320{left:191.580000px;}
.x27_c00320{left:197.580000px;}
.x97_c00320{left:199.080000px;}
.x4_c00320{left:201.420000px;}
.x32_c00320{left:205.500000px;}
.x7d_c00320{left:207.000000px;}
.xf9_c00320{left:208.500000px;}
.xfc_c00320{left:210.000000px;}
.x60_c00320{left:211.500000px;}
.xd8_c00320{left:212.580000px;}
.xbb_c00320{left:214.500000px;}
.x103_c00320{left:216.420000px;}
.x9f_c00320{left:217.920000px;}
.xcc_c00320{left:219.000000px;}
.x3b_c00320{left:220.500000px;}
.x8d_c00320{left:225.000000px;}
.xe3_c00320{left:226.500000px;}
.x1c_c00320{left:229.080000px;}
.xf1_c00320{left:231.000000px;}
.x4e_c00320{left:232.080000px;}
.x86_c00320{left:234.000000px;}
.x10a_c00320{left:235.500000px;}
.x73_c00320{left:237.000000px;}
.x57_c00320{left:241.500000px;}
.xa8_c00320{left:244.080000px;}
.x28_c00320{left:246.000000px;}
.xa0_c00320{left:249.420000px;}
.xcd_c00320{left:250.920000px;}
.x3c_c00320{left:252.000000px;}
.x93_c00320{left:253.080000px;}
.xc5_c00320{left:255.000000px;}
.x11_c00320{left:256.080000px;}
.x74_c00320{left:259.080000px;}
.x98_c00320{left:261.645000px;}
.x107_c00320{left:262.920000px;}
.x87_c00320{left:265.920000px;}
.x29_c00320{left:267.000000px;}
.x5_c00320{left:268.080000px;}
.xb0_c00320{left:270.420000px;}
.x67_c00320{left:272.580000px;}
.x1d_c00320{left:274.500000px;}
.xc6_c00320{left:276.000000px;}
.x45_c00320{left:277.080000px;}
.x4f_c00320{left:279.000000px;}
.xe4_c00320{left:281.355000px;}
.x58_c00320{left:283.500000px;}
.xc1_c00320{left:285.000000px;}
.x61_c00320{left:286.080000px;}
.x6_c00320{left:288.420000px;}
.xf2_c00320{left:289.500000px;}
.x8e_c00320{left:290.580000px;}
.xb5_c00320{left:292.500000px;}
.xee_c00320{left:293.580000px;}
.x46_c00320{left:295.920000px;}
.xb1_c00320{left:297.420000px;}
.xfe_c00320{left:298.500000px;}
.x1e_c00320{left:301.500000px;}
.x3d_c00320{left:304.080000px;}
.x12_c00320{left:306.000000px;}
.xa9_c00320{left:307.500000px;}
.x50_c00320{left:310.500000px;}
.xa1_c00320{left:312.000000px;}
.x8f_c00320{left:313.500000px;}
.x7_c00320{left:316.500000px;}
.x99_c00320{left:319.080000px;}
.x33_c00320{left:321.000000px;}
.x47_c00320{left:322.500000px;}
.x104_c00320{left:323.580000px;}
.xd9_c00320{left:325.500000px;}
.x13_c00320{left:328.920000px;}
.x68_c00320{left:331.080000px;}
.x59_c00320{left:333.000000px;}
.xb2_c00320{left:336.000000px;}
.x6d_c00320{left:339.420000px;}
.x105_c00320{left:340.920000px;}
.x1f_c00320{left:343.920000px;}
.xde_c00320{left:345.000000px;}
.xbc_c00320{left:346.500000px;}
.xc2_c00320{left:348.420000px;}
.x7e_c00320{left:352.080000px;}
.xef_c00320{left:354.000000px;}
.xda_c00320{left:355.080000px;}
.x9a_c00320{left:357.000000px;}
.x75_c00320{left:358.500000px;}
.x62_c00320{left:361.920000px;}
.x34_c00320{left:363.000000px;}
.x5a_c00320{left:364.500000px;}
.xe9_c00320{left:367.500000px;}
.x14_c00320{left:368.775000px;}
.xd2_c00320{left:371.580000px;}
.x8_c00320{left:373.500000px;}
.xc3_c00320{left:374.580000px;}
.x3e_c00320{left:377.580000px;}
.x2a_c00320{left:381.000000px;}
.xe5_c00320{left:382.080000px;}
.xb3_c00320{left:384.420000px;}
.x51_c00320{left:385.500000px;}
.xaa_c00320{left:386.580000px;}
.x76_c00320{left:388.080000px;}
.xdf_c00320{left:389.580000px;}
.xd3_c00320{left:391.500000px;}
.xff_c00320{left:396.420000px;}
.x20_c00320{left:397.500000px;}
.xdb_c00320{left:399.000000px;}
.x1_c00320{left:400.500000px;}
.x7f_c00320{left:401.580000px;}
.xbd_c00320{left:403.080000px;}
.x6e_c00320{left:406.500000px;}
.x108_c00320{left:408.000000px;}
.x63_c00320{left:409.500000px;}
.x94_c00320{left:411.000000px;}
.x77_c00320{left:414.000000px;}
.xe6_c00320{left:416.580000px;}
.xa2_c00320{left:418.500000px;}
.x35_c00320{left:420.000000px;}
.xb4_c00320{left:421.080000px;}
.xf3_c00320{left:424.080000px;}
.xb6_c00320{left:426.420000px;}
.x5b_c00320{left:427.500000px;}
.x9_c00320{left:430.920000px;}
.x21_c00320{left:433.920000px;}
.x2b_c00320{left:437.580000px;}
.xa3_c00320{left:439.080000px;}
.x90_c00320{left:445.500000px;}
.x9b_c00320{left:446.580000px;}
.x78_c00320{left:452.580000px;}
.xb7_c00320{left:454.500000px;}
.x3f_c00320{left:456.000000px;}
.x48_c00320{left:457.920000px;}
.x22_c00320{left:460.080000px;}
.xfd_c00320{left:461.580000px;}
.xc4_c00320{left:465.000000px;}
.x80_c00320{left:466.500000px;}
.x2c_c00320{left:468.000000px;}
.xce_c00320{left:469.275000px;}
.x64_c00320{left:471.000000px;}
.xc7_c00320{left:473.580000px;}
.x91_c00320{left:475.080000px;}
.x95_c00320{left:477.420000px;}
.xf6_c00320{left:478.500000px;}
.x15_c00320{left:480.000000px;}
.xea_c00320{left:481.920000px;}
.xbe_c00320{left:484.500000px;}
.x36_c00320{left:486.420000px;}
.x69_c00320{left:487.500000px;}
.x79_c00320{left:490.500000px;}
.x6f_c00320{left:492.420000px;}
.x100_c00320{left:493.920000px;}
.x81_c00320{left:497.580000px;}
.x52_c00320{left:499.500000px;}
.xa_c00320{left:500.580000px;}
.xdc_c00320{left:502.920000px;}
.x5c_c00320{left:505.500000px;}
.xeb_c00320{left:510.000000px;}
.xa4_c00320{left:511.080000px;}
.xcf_c00320{left:512.580000px;}
.x16_c00320{left:514.920000px;}
.x9c_c00320{left:517.275000px;}
.xc8_c00320{left:519.000000px;}
.x70_c00320{left:520.080000px;}
.x88_c00320{left:522.420000px;}
.x82_c00320{left:523.500000px;}
.x2d_c00320{left:529.920000px;}
.x23_c00320{left:531.000000px;}
.xb_c00320{left:532.920000px;}
.xd4_c00320{left:534.000000px;}
.x53_c00320{left:535.500000px;}
.x40_c00320{left:537.000000px;}
.x37_c00320{left:538.500000px;}
.xab_c00320{left:540.000000px;}
.xc9_c00320{left:541.920000px;}
.x17_c00320{left:544.920000px;}
.x89_c00320{left:547.080000px;}
.x7a_c00320{left:552.000000px;}
.xd5_c00320{left:553.500000px;}
.x83_c00320{left:555.420000px;}
.x5d_c00320{left:557.145000px;}
.x101_c00320{left:561.000000px;}
.x38_c00320{left:564.420000px;}
.xb8_c00320{left:565.920000px;}
.xfa_c00320{left:568.500000px;}
.x6a_c00320{left:573.000000px;}
.x49_c00320{left:576.000000px;}
.x2e_c00320{left:578.580000px;}
.x18_c00320{left:580.500000px;}
.xca_c00320{left:582.000000px;}
.x71_c00320{left:583.500000px;}
.xd6_c00320{left:586.500000px;}
.xc_c00320{left:588.000000px;}
.x6b_c00320{left:589.080000px;}
.x24_c00320{left:591.000000px;}
.xe0_c00320{left:592.500000px;}
.x8a_c00320{left:593.580000px;}
.x4a_c00320{left:595.500000px;}
.x92_c00320{left:597.000000px;}
.x2f_c00320{left:600.000000px;}
.x106_c00320{left:601.080000px;}
.x19_c00320{left:604.080000px;}
.xd7_c00320{left:606.420000px;}
.x54_c00320{left:607.920000px;}
.x65_c00320{left:610.275000px;}
.xd_c00320{left:612.000000px;}
.xe7_c00320{left:613.500000px;}
.xa5_c00320{left:616.920000px;}
.x8b_c00320{left:618.000000px;}
.xac_c00320{left:619.500000px;}
.x5e_c00320{left:620.580000px;}
.x4b_c00320{left:623.580000px;}
.xf7_c00320{left:625.500000px;}
.x30_c00320{left:627.000000px;}
.x1a_c00320{left:628.080000px;}
.x39_c00320{left:630.000000px;}
.xec_c00320{left:631.920000px;}
.xf4_c00320{left:634.500000px;}
.x84_c00320{left:636.000000px;}
.xa6_c00320{left:638.580000px;}
.xad_c00320{left:640.500000px;}
.x9d_c00320{left:642.000000px;}
.xf0_c00320{left:643.920000px;}
.xe1_c00320{left:645.000000px;}
.xd0_c00320{left:648.645000px;}
.xe8_c00320{left:650.580000px;}
.x7b_c00320{left:654.000000px;}
.x31_c00320{left:655.500000px;}
.x66_c00320{left:658.500000px;}
.x41_c00320{left:660.420000px;}
.x6c_c00320{left:662.145000px;}
.x3a_c00320{left:663.420000px;}
.x109_c00320{left:665.580000px;}
.x55_c00320{left:666.645000px;}
.x25_c00320{left:668.580000px;}
.x4c_c00320{left:670.500000px;}
.xf5_c00320{left:673.080000px;}
.xa7_c00320{left:675.420000px;}
.xf8_c00320{left:676.920000px;}
.x72_c00320{left:678.000000px;}
.xdd_c00320{left:679.500000px;}
.xb9_c00320{left:680.580000px;}
.x42_c00320{left:684.000000px;}
.xe_c00320{left:686.580000px;}
.x102_c00320{left:689.580000px;}
.x1b_c00320{left:694.920000px;}
.x5f_c00320{left:696.000000px;}
.x43_c00320{left:697.920000px;}
.x7c_c00320{left:702.000000px;}
.x2_c00320{left:703.080000px;}
.x26_c00320{left:705.420000px;}
.x4d_c00320{left:706.920000px;}
.xe2_c00320{left:709.920000px;}
.xfb_c00320{left:711.000000px;}
.xba_c00320{left:712.500000px;}
.xae_c00320{left:718.500000px;}
@media print{
.v0_c00320{vertical-align:0.000000pt;}
.ls0_c00320{letter-spacing:0.000000pt;}
.ws0_c00320{word-spacing:-6.266406pt;}
.ws1_c00320{word-spacing:0.000000pt;}
.fs6_c00320{font-size:3.040000pt;}
.fs0_c00320{font-size:16.640000pt;}
.fs4_c00320{font-size:22.666667pt;}
.fs1_c00320{font-size:25.706667pt;}
.fs3_c00320{font-size:28.746667pt;}
.fs2_c00320{font-size:31.733333pt;}
.fs5_c00320{font-size:34.773333pt;}
.y0_c00320{bottom:0.000000pt;}
.yc0_c00320{bottom:224.160000pt;}
.ybc_c00320{bottom:225.106667pt;}
.ybf_c00320{bottom:225.693333pt;}
.ybb_c00320{bottom:225.893333pt;}
.ybe_c00320{bottom:226.640000pt;}
.ybd_c00320{bottom:227.026667pt;}
.yba_c00320{bottom:228.360000pt;}
.yb9_c00320{bottom:241.106667pt;}
.yb7_c00320{bottom:242.440000pt;}
.yb8_c00320{bottom:243.226667pt;}
.yb5_c00320{bottom:243.773333pt;}
.yb6_c00320{bottom:244.360000pt;}
.yb3_c00320{bottom:259.773333pt;}
.yb4_c00320{bottom:261.106667pt;}
.yb2_c00320{bottom:261.693333pt;}
.yb1_c00320{bottom:263.026667pt;}
.yb0_c00320{bottom:277.106667pt;}
.yac_c00320{bottom:278.440000pt;}
.yae_c00320{bottom:279.026667pt;}
.yad_c00320{bottom:279.226667pt;}
.yaf_c00320{bottom:280.360000pt;}
.yab_c00320{bottom:295.400000pt;}
.ya9_c00320{bottom:295.773333pt;}
.yaa_c00320{bottom:296.360000pt;}
.ya8_c00320{bottom:297.306667pt;}
.ya7_c00320{bottom:297.693333pt;}
.ya4_c00320{bottom:313.106667pt;}
.ya6_c00320{bottom:313.693333pt;}
.ya5_c00320{bottom:313.893333pt;}
.ya3_c00320{bottom:315.026667pt;}
.ya1_c00320{bottom:328.360000pt;}
.y9e_c00320{bottom:330.440000pt;}
.y9f_c00320{bottom:331.400000pt;}
.ya2_c00320{bottom:331.973333pt;}
.ya0_c00320{bottom:332.360000pt;}
.y98_c00320{bottom:347.773333pt;}
.y9b_c00320{bottom:347.973333pt;}
.y9d_c00320{bottom:348.560000pt;}
.y9c_c00320{bottom:349.693333pt;}
.y9a_c00320{bottom:349.893333pt;}
.y99_c00320{bottom:350.640000pt;}
.y96_c00320{bottom:364.360000pt;}
.y94_c00320{bottom:365.106667pt;}
.y95_c00320{bottom:366.066667pt;}
.y93_c00320{bottom:367.026667pt;}
.y97_c00320{bottom:367.226667pt;}
.y92_c00320{bottom:368.360000pt;}
.y90_c00320{bottom:382.440000pt;}
.y8e_c00320{bottom:382.640000pt;}
.y91_c00320{bottom:383.400000pt;}
.y8d_c00320{bottom:384.360000pt;}
.y8f_c00320{bottom:385.306667pt;}
.y88_c00320{bottom:399.026667pt;}
.y86_c00320{bottom:399.773333pt;}
.y8a_c00320{bottom:399.973333pt;}
.y8c_c00320{bottom:400.733333pt;}
.y85_c00320{bottom:401.106667pt;}
.y87_c00320{bottom:401.693333pt;}
.y8b_c00320{bottom:401.893333pt;}
.y89_c00320{bottom:403.026667pt;}
.y81_c00320{bottom:418.440000pt;}
.y84_c00320{bottom:419.973333pt;}
.y82_c00320{bottom:420.360000pt;}
.y80_c00320{bottom:420.560000pt;}
.y83_c00320{bottom:421.306667pt;}
.y7f_c00320{bottom:435.773333pt;}
.y7e_c00320{bottom:436.560000pt;}
.y7b_c00320{bottom:436.733333pt;}
.y7c_c00320{bottom:437.693333pt;}
.y7d_c00320{bottom:438.640000pt;}
.y77_c00320{bottom:453.106667pt;}
.y79_c00320{bottom:454.066667pt;}
.y76_c00320{bottom:455.026667pt;}
.y7a_c00320{bottom:455.226667pt;}
.y78_c00320{bottom:455.973333pt;}
.y75_c00320{bottom:470.440000pt;}
.y72_c00320{bottom:471.773333pt;}
.y74_c00320{bottom:472.360000pt;}
.y73_c00320{bottom:472.560000pt;}
.y6d_c00320{bottom:489.106667pt;}
.y6e_c00320{bottom:489.693333pt;}
.y6f_c00320{bottom:489.893333pt;}
.y71_c00320{bottom:490.640000pt;}
.y70_c00320{bottom:491.026667pt;}
.y69_c00320{bottom:506.440000pt;}
.y6c_c00320{bottom:507.226667pt;}
.y6b_c00320{bottom:508.360000pt;}
.y6a_c00320{bottom:508.373333pt;}
.y68_c00320{bottom:523.773333pt;}
.y67_c00320{bottom:524.560000pt;}
.y66_c00320{bottom:525.693333pt;}
.y65_c00320{bottom:540.160000pt;}
.y64_c00320{bottom:541.106667pt;}
.y63_c00320{bottom:541.893333pt;}
.y61_c00320{bottom:542.640000pt;}
.y62_c00320{bottom:543.026667pt;}
.y5e_c00320{bottom:558.066667pt;}
.y5d_c00320{bottom:558.440000pt;}
.y5f_c00320{bottom:559.400000pt;}
.y5c_c00320{bottom:560.360000pt;}
.y60_c00320{bottom:560.560000pt;}
.y5b_c00320{bottom:575.773333pt;}
.y5a_c00320{bottom:577.306667pt;}
.y59_c00320{bottom:577.693333pt;}
.y58_c00320{bottom:577.893333pt;}
.y54_c00320{bottom:593.106667pt;}
.y55_c00320{bottom:594.440000pt;}
.y57_c00320{bottom:595.026667pt;}
.y56_c00320{bottom:595.400000pt;}
.y53_c00320{bottom:596.360000pt;}
.y52_c00320{bottom:609.693333pt;}
.y4e_c00320{bottom:611.773333pt;}
.y4f_c00320{bottom:612.560000pt;}
.y50_c00320{bottom:612.733333pt;}
.y4d_c00320{bottom:613.306667pt;}
.y51_c00320{bottom:613.693333pt;}
.y4b_c00320{bottom:628.360000pt;}
.y4c_c00320{bottom:629.106667pt;}
.y4a_c00320{bottom:630.066667pt;}
.y49_c00320{bottom:631.026667pt;}
.y46_c00320{bottom:646.066667pt;}
.y48_c00320{bottom:646.440000pt;}
.y47_c00320{bottom:647.400000pt;}
.y45_c00320{bottom:648.360000pt;}
.y43_c00320{bottom:664.560000pt;}
.y44_c00320{bottom:664.733333pt;}
.y42_c00320{bottom:665.693333pt;}
.y41_c00320{bottom:665.893333pt;}
.y3e_c00320{bottom:681.106667pt;}
.y40_c00320{bottom:682.066667pt;}
.y3d_c00320{bottom:683.026667pt;}
.y3f_c00320{bottom:683.226667pt;}
.y3a_c00320{bottom:698.440000pt;}
.y3b_c00320{bottom:699.400000pt;}
.y3c_c00320{bottom:700.360000pt;}
.y37_c00320{bottom:715.026667pt;}
.y39_c00320{bottom:715.773333pt;}
.y38_c00320{bottom:716.733333pt;}
.y35_c00320{bottom:717.693333pt;}
.y36_c00320{bottom:718.640000pt;}
.y32_c00320{bottom:733.106667pt;}
.y34_c00320{bottom:734.066667pt;}
.y33_c00320{bottom:735.026667pt;}
.y31_c00320{bottom:751.773333pt;}
.y2e_c00320{bottom:752.560000pt;}
.y30_c00320{bottom:752.733333pt;}
.y2f_c00320{bottom:753.693333pt;}
.y2c_c00320{bottom:767.773333pt;}
.y2a_c00320{bottom:769.106667pt;}
.y2d_c00320{bottom:770.066667pt;}
.y2b_c00320{bottom:771.026667pt;}
.y25_c00320{bottom:785.306667pt;}
.y28_c00320{bottom:785.493333pt;}
.y24_c00320{bottom:786.440000pt;}
.y29_c00320{bottom:787.226667pt;}
.y27_c00320{bottom:787.973333pt;}
.y26_c00320{bottom:788.360000pt;}
.y23_c00320{bottom:803.773333pt;}
.y21_c00320{bottom:805.306667pt;}
.y22_c00320{bottom:805.693333pt;}
.y20_c00320{bottom:820.360000pt;}
.y1d_c00320{bottom:821.106667pt;}
.y1c_c00320{bottom:823.026667pt;}
.y1f_c00320{bottom:823.226667pt;}
.y1e_c00320{bottom:823.973333pt;}
.y1b_c00320{bottom:839.226667pt;}
.y1a_c00320{bottom:839.973333pt;}
.y18_c00320{bottom:840.360000pt;}
.y19_c00320{bottom:840.560000pt;}
.y17_c00320{bottom:841.693333pt;}
.y12_c00320{bottom:855.773333pt;}
.y14_c00320{bottom:856.733333pt;}
.y15_c00320{bottom:857.106667pt;}
.y13_c00320{bottom:857.693333pt;}
.y16_c00320{bottom:859.026667pt;}
.y10_c00320{bottom:873.493333pt;}
.ye_c00320{bottom:874.440000pt;}
.y11_c00320{bottom:875.973333pt;}
.yf_c00320{bottom:876.360000pt;}
.yc_c00320{bottom:891.773333pt;}
.yd_c00320{bottom:893.693333pt;}
.yb_c00320{bottom:911.026667pt;}
.y8_c00320{bottom:925.693333pt;}
.y7_c00320{bottom:926.440000pt;}
.y9_c00320{bottom:927.226667pt;}
.ya_c00320{bottom:927.973333pt;}
.y6_c00320{bottom:928.360000pt;}
.y5_c00320{bottom:943.400000pt;}
.y4_c00320{bottom:943.773333pt;}
.y3_c00320{bottom:945.693333pt;}
.y2_c00320{bottom:977.693333pt;}
.y1_c00320{bottom:980.560000pt;}
.h7_c00320{height:3.739141pt;}
.h1_c00320{height:20.466875pt;}
.h5_c00320{height:27.879557pt;}
.h2_c00320{height:31.618698pt;}
.h4_c00320{height:35.357839pt;}
.h3_c00320{height:39.031380pt;}
.h6_c00320{height:42.770521pt;}
.h0_c00320{height:1186.666667pt;}
.w0_c00320{width:782.666667pt;}
.x0_c00320{left:0.000000pt;}
.xf_c00320{left:134.293333pt;}
.xbf_c00320{left:135.626667pt;}
.xd1_c00320{left:136.960000pt;}
.x3_c00320{left:148.000000pt;}
.x96_c00320{left:149.333333pt;}
.xc0_c00320{left:152.373333pt;}
.x8c_c00320{left:153.706667pt;}
.xaf_c00320{left:154.666667pt;}
.x85_c00320{left:157.906667pt;}
.xed_c00320{left:160.373333pt;}
.x44_c00320{left:161.333333pt;}
.x56_c00320{left:162.293333pt;}
.x10_c00320{left:164.960000pt;}
.xcb_c00320{left:168.373333pt;}
.x9e_c00320{left:170.293333pt;}
.x27_c00320{left:175.626667pt;}
.x97_c00320{left:176.960000pt;}
.x4_c00320{left:179.040000pt;}
.x32_c00320{left:182.666667pt;}
.x7d_c00320{left:184.000000pt;}
.xf9_c00320{left:185.333333pt;}
.xfc_c00320{left:186.666667pt;}
.x60_c00320{left:188.000000pt;}
.xd8_c00320{left:188.960000pt;}
.xbb_c00320{left:190.666667pt;}
.x103_c00320{left:192.373333pt;}
.x9f_c00320{left:193.706667pt;}
.xcc_c00320{left:194.666667pt;}
.x3b_c00320{left:196.000000pt;}
.x8d_c00320{left:200.000000pt;}
.xe3_c00320{left:201.333333pt;}
.x1c_c00320{left:203.626667pt;}
.xf1_c00320{left:205.333333pt;}
.x4e_c00320{left:206.293333pt;}
.x86_c00320{left:208.000000pt;}
.x10a_c00320{left:209.333333pt;}
.x73_c00320{left:210.666667pt;}
.x57_c00320{left:214.666667pt;}
.xa8_c00320{left:216.960000pt;}
.x28_c00320{left:218.666667pt;}
.xa0_c00320{left:221.706667pt;}
.xcd_c00320{left:223.040000pt;}
.x3c_c00320{left:224.000000pt;}
.x93_c00320{left:224.960000pt;}
.xc5_c00320{left:226.666667pt;}
.x11_c00320{left:227.626667pt;}
.x74_c00320{left:230.293333pt;}
.x98_c00320{left:232.573333pt;}
.x107_c00320{left:233.706667pt;}
.x87_c00320{left:236.373333pt;}
.x29_c00320{left:237.333333pt;}
.x5_c00320{left:238.293333pt;}
.xb0_c00320{left:240.373333pt;}
.x67_c00320{left:242.293333pt;}
.x1d_c00320{left:244.000000pt;}
.xc6_c00320{left:245.333333pt;}
.x45_c00320{left:246.293333pt;}
.x4f_c00320{left:248.000000pt;}
.xe4_c00320{left:250.093333pt;}
.x58_c00320{left:252.000000pt;}
.xc1_c00320{left:253.333333pt;}
.x61_c00320{left:254.293333pt;}
.x6_c00320{left:256.373333pt;}
.xf2_c00320{left:257.333333pt;}
.x8e_c00320{left:258.293333pt;}
.xb5_c00320{left:260.000000pt;}
.xee_c00320{left:260.960000pt;}
.x46_c00320{left:263.040000pt;}
.xb1_c00320{left:264.373333pt;}
.xfe_c00320{left:265.333333pt;}
.x1e_c00320{left:268.000000pt;}
.x3d_c00320{left:270.293333pt;}
.x12_c00320{left:272.000000pt;}
.xa9_c00320{left:273.333333pt;}
.x50_c00320{left:276.000000pt;}
.xa1_c00320{left:277.333333pt;}
.x8f_c00320{left:278.666667pt;}
.x7_c00320{left:281.333333pt;}
.x99_c00320{left:283.626667pt;}
.x33_c00320{left:285.333333pt;}
.x47_c00320{left:286.666667pt;}
.x104_c00320{left:287.626667pt;}
.xd9_c00320{left:289.333333pt;}
.x13_c00320{left:292.373333pt;}
.x68_c00320{left:294.293333pt;}
.x59_c00320{left:296.000000pt;}
.xb2_c00320{left:298.666667pt;}
.x6d_c00320{left:301.706667pt;}
.x105_c00320{left:303.040000pt;}
.x1f_c00320{left:305.706667pt;}
.xde_c00320{left:306.666667pt;}
.xbc_c00320{left:308.000000pt;}
.xc2_c00320{left:309.706667pt;}
.x7e_c00320{left:312.960000pt;}
.xef_c00320{left:314.666667pt;}
.xda_c00320{left:315.626667pt;}
.x9a_c00320{left:317.333333pt;}
.x75_c00320{left:318.666667pt;}
.x62_c00320{left:321.706667pt;}
.x34_c00320{left:322.666667pt;}
.x5a_c00320{left:324.000000pt;}
.xe9_c00320{left:326.666667pt;}
.x14_c00320{left:327.800000pt;}
.xd2_c00320{left:330.293333pt;}
.x8_c00320{left:332.000000pt;}
.xc3_c00320{left:332.960000pt;}
.x3e_c00320{left:335.626667pt;}
.x2a_c00320{left:338.666667pt;}
.xe5_c00320{left:339.626667pt;}
.xb3_c00320{left:341.706667pt;}
.x51_c00320{left:342.666667pt;}
.xaa_c00320{left:343.626667pt;}
.x76_c00320{left:344.960000pt;}
.xdf_c00320{left:346.293333pt;}
.xd3_c00320{left:348.000000pt;}
.xff_c00320{left:352.373333pt;}
.x20_c00320{left:353.333333pt;}
.xdb_c00320{left:354.666667pt;}
.x1_c00320{left:356.000000pt;}
.x7f_c00320{left:356.960000pt;}
.xbd_c00320{left:358.293333pt;}
.x6e_c00320{left:361.333333pt;}
.x108_c00320{left:362.666667pt;}
.x63_c00320{left:364.000000pt;}
.x94_c00320{left:365.333333pt;}
.x77_c00320{left:368.000000pt;}
.xe6_c00320{left:370.293333pt;}
.xa2_c00320{left:372.000000pt;}
.x35_c00320{left:373.333333pt;}
.xb4_c00320{left:374.293333pt;}
.xf3_c00320{left:376.960000pt;}
.xb6_c00320{left:379.040000pt;}
.x5b_c00320{left:380.000000pt;}
.x9_c00320{left:383.040000pt;}
.x21_c00320{left:385.706667pt;}
.x2b_c00320{left:388.960000pt;}
.xa3_c00320{left:390.293333pt;}
.x90_c00320{left:396.000000pt;}
.x9b_c00320{left:396.960000pt;}
.x78_c00320{left:402.293333pt;}
.xb7_c00320{left:404.000000pt;}
.x3f_c00320{left:405.333333pt;}
.x48_c00320{left:407.040000pt;}
.x22_c00320{left:408.960000pt;}
.xfd_c00320{left:410.293333pt;}
.xc4_c00320{left:413.333333pt;}
.x80_c00320{left:414.666667pt;}
.x2c_c00320{left:416.000000pt;}
.xce_c00320{left:417.133333pt;}
.x64_c00320{left:418.666667pt;}
.xc7_c00320{left:420.960000pt;}
.x91_c00320{left:422.293333pt;}
.x95_c00320{left:424.373333pt;}
.xf6_c00320{left:425.333333pt;}
.x15_c00320{left:426.666667pt;}
.xea_c00320{left:428.373333pt;}
.xbe_c00320{left:430.666667pt;}
.x36_c00320{left:432.373333pt;}
.x69_c00320{left:433.333333pt;}
.x79_c00320{left:436.000000pt;}
.x6f_c00320{left:437.706667pt;}
.x100_c00320{left:439.040000pt;}
.x81_c00320{left:442.293333pt;}
.x52_c00320{left:444.000000pt;}
.xa_c00320{left:444.960000pt;}
.xdc_c00320{left:447.040000pt;}
.x5c_c00320{left:449.333333pt;}
.xeb_c00320{left:453.333333pt;}
.xa4_c00320{left:454.293333pt;}
.xcf_c00320{left:455.626667pt;}
.x16_c00320{left:457.706667pt;}
.x9c_c00320{left:459.800000pt;}
.xc8_c00320{left:461.333333pt;}
.x70_c00320{left:462.293333pt;}
.x88_c00320{left:464.373333pt;}
.x82_c00320{left:465.333333pt;}
.x2d_c00320{left:471.040000pt;}
.x23_c00320{left:472.000000pt;}
.xb_c00320{left:473.706667pt;}
.xd4_c00320{left:474.666667pt;}
.x53_c00320{left:476.000000pt;}
.x40_c00320{left:477.333333pt;}
.x37_c00320{left:478.666667pt;}
.xab_c00320{left:480.000000pt;}
.xc9_c00320{left:481.706667pt;}
.x17_c00320{left:484.373333pt;}
.x89_c00320{left:486.293333pt;}
.x7a_c00320{left:490.666667pt;}
.xd5_c00320{left:492.000000pt;}
.x83_c00320{left:493.706667pt;}
.x5d_c00320{left:495.240000pt;}
.x101_c00320{left:498.666667pt;}
.x38_c00320{left:501.706667pt;}
.xb8_c00320{left:503.040000pt;}
.xfa_c00320{left:505.333333pt;}
.x6a_c00320{left:509.333333pt;}
.x49_c00320{left:512.000000pt;}
.x2e_c00320{left:514.293333pt;}
.x18_c00320{left:516.000000pt;}
.xca_c00320{left:517.333333pt;}
.x71_c00320{left:518.666667pt;}
.xd6_c00320{left:521.333333pt;}
.xc_c00320{left:522.666667pt;}
.x6b_c00320{left:523.626667pt;}
.x24_c00320{left:525.333333pt;}
.xe0_c00320{left:526.666667pt;}
.x8a_c00320{left:527.626667pt;}
.x4a_c00320{left:529.333333pt;}
.x92_c00320{left:530.666667pt;}
.x2f_c00320{left:533.333333pt;}
.x106_c00320{left:534.293333pt;}
.x19_c00320{left:536.960000pt;}
.xd7_c00320{left:539.040000pt;}
.x54_c00320{left:540.373333pt;}
.x65_c00320{left:542.466667pt;}
.xd_c00320{left:544.000000pt;}
.xe7_c00320{left:545.333333pt;}
.xa5_c00320{left:548.373333pt;}
.x8b_c00320{left:549.333333pt;}
.xac_c00320{left:550.666667pt;}
.x5e_c00320{left:551.626667pt;}
.x4b_c00320{left:554.293333pt;}
.xf7_c00320{left:556.000000pt;}
.x30_c00320{left:557.333333pt;}
.x1a_c00320{left:558.293333pt;}
.x39_c00320{left:560.000000pt;}
.xec_c00320{left:561.706667pt;}
.xf4_c00320{left:564.000000pt;}
.x84_c00320{left:565.333333pt;}
.xa6_c00320{left:567.626667pt;}
.xad_c00320{left:569.333333pt;}
.x9d_c00320{left:570.666667pt;}
.xf0_c00320{left:572.373333pt;}
.xe1_c00320{left:573.333333pt;}
.xd0_c00320{left:576.573333pt;}
.xe8_c00320{left:578.293333pt;}
.x7b_c00320{left:581.333333pt;}
.x31_c00320{left:582.666667pt;}
.x66_c00320{left:585.333333pt;}
.x41_c00320{left:587.040000pt;}
.x6c_c00320{left:588.573333pt;}
.x3a_c00320{left:589.706667pt;}
.x109_c00320{left:591.626667pt;}
.x55_c00320{left:592.573333pt;}
.x25_c00320{left:594.293333pt;}
.x4c_c00320{left:596.000000pt;}
.xf5_c00320{left:598.293333pt;}
.xa7_c00320{left:600.373333pt;}
.xf8_c00320{left:601.706667pt;}
.x72_c00320{left:602.666667pt;}
.xdd_c00320{left:604.000000pt;}
.xb9_c00320{left:604.960000pt;}
.x42_c00320{left:608.000000pt;}
.xe_c00320{left:610.293333pt;}
.x102_c00320{left:612.960000pt;}
.x1b_c00320{left:617.706667pt;}
.x5f_c00320{left:618.666667pt;}
.x43_c00320{left:620.373333pt;}
.x7c_c00320{left:624.000000pt;}
.x2_c00320{left:624.960000pt;}
.x26_c00320{left:627.040000pt;}
.x4d_c00320{left:628.373333pt;}
.xe2_c00320{left:631.040000pt;}
.xfb_c00320{left:632.000000pt;}
.xba_c00320{left:633.333333pt;}
.xae_c00320{left:638.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_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_ed68cc35c62a489e64d66ab1.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mde_c00321{transform:matrix(0.090909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090909,0.000000,0.000000,0.250000,0,0);}
.m4c_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);}
.m4e_c00321{transform:matrix(0.346218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346218,0.000000,0.000000,0.250000,0,0);}
.m98_c00321{transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);}
.mf_c00321{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_c00321{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m82_c00321{transform:matrix(0.360813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360813,0.000000,0.000000,0.250000,0,0);}
.m9_c00321{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.ma7_c00321{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m9e_c00321{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m9b_c00321{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m36_c00321{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.mae_c00321{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m35_c00321{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m47_c00321{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m66_c00321{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.mb2_c00321{transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);}
.mb5_c00321{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m97_c00321{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m59_c00321{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m32_c00321{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m46_c00321{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.ma3_c00321{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m2e_c00321{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m80_c00321{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mbd_c00321{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.m34_c00321{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.mc3_c00321{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m85_c00321{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m21_c00321{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m18_c00321{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m49_c00321{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m84_c00321{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.ma2_c00321{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mbc_c00321{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m55_c00321{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m5f_c00321{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mbf_c00321{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m6e_c00321{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m9d_c00321{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m92_c00321{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m27_c00321{transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);}
.m76_c00321{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m71_c00321{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mc1_c00321{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.md0_c00321{transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);}
.m23_c00321{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m70_c00321{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m8d_c00321{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mc2_c00321{transform:matrix(0.431891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431891,0.000000,0.000000,0.250000,0,0);}
.m58_c00321{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m96_c00321{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m88_c00321{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m77_c00321{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mbb_c00321{transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);}
.m2c_c00321{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.md2_c00321{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);}
.m14_c00321{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m30_c00321{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m65_c00321{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.mb9_c00321{transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);}
.m7c_c00321{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m1d_c00321{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m10_c00321{transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);}
.m0_c00321{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m91_c00321{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m9c_c00321{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m2d_c00321{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mb_c00321{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mdd_c00321{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.m8e_c00321{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m3b_c00321{transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);}
.mcf_c00321{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.mb4_c00321{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.me1_c00321{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.m87_c00321{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.m13_c00321{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m11_c00321{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.mc0_c00321{transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);}
.m61_c00321{transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);}
.m8b_c00321{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m50_c00321{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.m4d_c00321{transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);}
.m42_c00321{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.ma6_c00321{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.md5_c00321{transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);}
.m60_c00321{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.mc9_c00321{transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);}
.ma_c00321{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m3_c00321{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m7e_c00321{transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);}
.mda_c00321{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m5a_c00321{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m5c_c00321{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m40_c00321{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.me5_c00321{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m8c_c00321{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m29_c00321{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.md9_c00321{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.m75_c00321{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m74_c00321{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);}
.m78_c00321{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m1c_c00321{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m73_c00321{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.me9_c00321{transform:matrix(0.509615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509615,0.000000,0.000000,0.250000,0,0);}
.m48_c00321{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m99_c00321{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.mb7_c00321{transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);}
.m54_c00321{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m5b_c00321{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m93_c00321{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.ma4_c00321{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m2b_c00321{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m6a_c00321{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m79_c00321{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mb0_c00321{transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);}
.m1f_c00321{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m6b_c00321{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m4f_c00321{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m3a_c00321{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m5_c00321{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m64_c00321{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.mdf_c00321{transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);}
.m2f_c00321{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m17_c00321{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m6_c00321{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.me2_c00321{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.mbe_c00321{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.m95_c00321{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.me_c00321{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m83_c00321{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mc_c00321{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m1a_c00321{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m7f_c00321{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m31_c00321{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m6c_c00321{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mb3_c00321{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m41_c00321{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m33_c00321{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.md_c00321{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mb1_c00321{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m9f_c00321{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m5e_c00321{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m53_c00321{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m7d_c00321{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mca_c00321{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m51_c00321{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m38_c00321{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m56_c00321{transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);}
.m89_c00321{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m90_c00321{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mab_c00321{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m2_c00321{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m63_c00321{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m22_c00321{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m28_c00321{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m8f_c00321{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m8a_c00321{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m6d_c00321{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.mad_c00321{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);}
.m7b_c00321{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m20_c00321{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m25_c00321{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m4b_c00321{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.md4_c00321{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m4a_c00321{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.md6_c00321{transform:matrix(0.568109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568109,0.000000,0.000000,0.250000,0,0);}
.m69_c00321{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m1e_c00321{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.maa_c00321{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.ma5_c00321{transform:matrix(0.572356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572356,0.000000,0.000000,0.250000,0,0);}
.m8_c00321{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m94_c00321{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m67_c00321{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m44_c00321{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m3c_c00321{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m3e_c00321{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m6f_c00321{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mb8_c00321{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m37_c00321{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m62_c00321{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.ma0_c00321{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m24_c00321{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m4_c00321{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m1b_c00321{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.m57_c00321{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);}
.md3_c00321{transform:matrix(0.602564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602564,0.000000,0.000000,0.250000,0,0);}
.ma9_c00321{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m52_c00321{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mc4_c00321{transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);}
.m1_c00321{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.mc5_c00321{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m3d_c00321{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mc6_c00321{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m86_c00321{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mac_c00321{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m7a_c00321{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.me0_c00321{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.mb6_c00321{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m72_c00321{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.me8_c00321{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.m7_c00321{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.mba_c00321{transform:matrix(0.655147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655147,0.000000,0.000000,0.250000,0,0);}
.m43_c00321{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m26_c00321{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m15_c00321{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.me6_c00321{transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);}
.me7_c00321{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.mc7_c00321{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m39_c00321{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.mdc_c00321{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m3f_c00321{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mcc_c00321{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.mcd_c00321{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.me3_c00321{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m45_c00321{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.maf_c00321{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);}
.md7_c00321{transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);}
.m68_c00321{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m81_c00321{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.md1_c00321{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.mdb_c00321{transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);}
.mcb_c00321{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m16_c00321{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m19_c00321{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m12_c00321{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m5d_c00321{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m2a_c00321{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.ma1_c00321{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.me4_c00321{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.mce_c00321{transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);}
.ma8_c00321{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.md8_c00321{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mc8_c00321{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.v0_c00321{vertical-align:0.000000px;}
.v2_c00321{vertical-align:6.000000px;}
.v1_c00321{vertical-align:12.000000px;}
.ls1_c00321{letter-spacing:0.000000px;}
.ls0_c00321{letter-spacing:51.359972px;}
.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:-6.837240px;}
.ws1_c00321{word-spacing:-0.401728px;}
.wsc_c00321{word-spacing:0.000000px;}
.ws5_c00321{word-spacing:9.942466px;}
.ws4_c00321{word-spacing:12.973687px;}
.ws6_c00321{word-spacing:13.611988px;}
.wsa_c00321{word-spacing:17.262919px;}
.ws8_c00321{word-spacing:19.417982px;}
.ws7_c00321{word-spacing:19.620812px;}
.wsb_c00321{word-spacing:23.728109px;}
.ws3_c00321{word-spacing:39.846793px;}
.ws9_c00321{word-spacing:43.166897px;}
.ws2_c00321{word-spacing:47.719225px;}
._0_c00321{width:27.574892px;}
._1_c00321{width:33.837252px;}
.fc0_c00321{color:transparent;}
.fs8_c00321{font-size:3.420000px;}
.fs9_c00321{font-size:11.880000px;}
.fs7_c00321{font-size:13.620000px;}
.fs4_c00321{font-size:18.720000px;}
.fs1_c00321{font-size:20.400000px;}
.fs2_c00321{font-size:25.500000px;}
.fs0_c00321{font-size:28.920000px;}
.fs5_c00321{font-size:32.340000px;}
.fs3_c00321{font-size:35.700000px;}
.fs6_c00321{font-size:39.120000px;}
.y0_c00321{bottom:0.000000px;}
.yb3_c00321{bottom:254.130000px;}
.yb4_c00321{bottom:255.195000px;}
.yb0_c00321{bottom:267.630000px;}
.yb1_c00321{bottom:268.695000px;}
.yb2_c00321{bottom:269.130000px;}
.yae_c00321{bottom:281.775000px;}
.yad_c00321{bottom:282.630000px;}
.yaf_c00321{bottom:283.695000px;}
.yaa_c00321{bottom:294.195000px;}
.ya9_c00321{bottom:296.130000px;}
.yac_c00321{bottom:297.195000px;}
.yab_c00321{bottom:297.630000px;}
.ya4_c00321{bottom:309.195000px;}
.ya3_c00321{bottom:309.630000px;}
.ya8_c00321{bottom:309.825000px;}
.ya6_c00321{bottom:310.275000px;}
.ya5_c00321{bottom:310.695000px;}
.ya7_c00321{bottom:312.420000px;}
.ya2_c00321{bottom:323.130000px;}
.ya0_c00321{bottom:324.195000px;}
.ya1_c00321{bottom:324.630000px;}
.y9d_c00321{bottom:336.630000px;}
.y9f_c00321{bottom:337.695000px;}
.y9e_c00321{bottom:338.130000px;}
.y9b_c00321{bottom:351.630000px;}
.y9c_c00321{bottom:352.695000px;}
.y97_c00321{bottom:364.050000px;}
.y99_c00321{bottom:365.130000px;}
.y98_c00321{bottom:366.195000px;}
.y9a_c00321{bottom:366.630000px;}
.y95_c00321{bottom:378.630000px;}
.y94_c00321{bottom:379.695000px;}
.y96_c00321{bottom:380.130000px;}
.y93_c00321{bottom:393.630000px;}
.y92_c00321{bottom:394.695000px;}
.y90_c00321{bottom:406.695000px;}
.y8f_c00321{bottom:407.130000px;}
.y91_c00321{bottom:408.195000px;}
.y8c_c00321{bottom:426.195000px;}
.y8d_c00321{bottom:426.420000px;}
.y8e_c00321{bottom:427.920000px;}
.y89_c00321{bottom:438.630000px;}
.y8b_c00321{bottom:439.695000px;}
.y8a_c00321{bottom:440.130000px;}
.y88_c00321{bottom:453.195000px;}
.y87_c00321{bottom:477.825000px;}
.y85_c00321{bottom:478.905000px;}
.y86_c00321{bottom:479.970000px;}
.y80_c00321{bottom:492.825000px;}
.y84_c00321{bottom:493.905000px;}
.y83_c00321{bottom:494.130000px;}
.y82_c00321{bottom:494.970000px;}
.y81_c00321{bottom:496.050000px;}
.y7f_c00321{bottom:507.825000px;}
.y7e_c00321{bottom:509.970000px;}
.y7c_c00321{bottom:522.825000px;}
.y7b_c00321{bottom:524.550000px;}
.y7a_c00321{bottom:524.970000px;}
.y7d_c00321{bottom:526.050000px;}
.y79_c00321{bottom:542.550000px;}
.y78_c00321{bottom:545.550000px;}
.y77_c00321{bottom:586.905000px;}
.y75_c00321{bottom:588.405000px;}
.y72_c00321{bottom:589.245000px;}
.y76_c00321{bottom:590.130000px;}
.y73_c00321{bottom:590.325000px;}
.y74_c00321{bottom:591.405000px;}
.y70_c00321{bottom:608.745000px;}
.y71_c00321{bottom:609.630000px;}
.y6f_c00321{bottom:610.470000px;}
.y6e_c00321{bottom:610.905000px;}
.y6d_c00321{bottom:627.405000px;}
.y6c_c00321{bottom:628.245000px;}
.y6b_c00321{bottom:630.405000px;}
.y67_c00321{bottom:646.680000px;}
.y68_c00321{bottom:647.745000px;}
.y69_c00321{bottom:648.630000px;}
.y6a_c00321{bottom:649.470000px;}
.y66_c00321{bottom:649.905000px;}
.y65_c00321{bottom:667.245000px;}
.y63_c00321{bottom:667.470000px;}
.y62_c00321{bottom:668.745000px;}
.y61_c00321{bottom:669.405000px;}
.y64_c00321{bottom:670.905000px;}
.y5d_c00321{bottom:685.905000px;}
.y60_c00321{bottom:688.245000px;}
.y5c_c00321{bottom:688.905000px;}
.y5f_c00321{bottom:689.130000px;}
.y5e_c00321{bottom:689.325000px;}
.y5b_c00321{bottom:690.405000px;}
.y5a_c00321{bottom:705.405000px;}
.y58_c00321{bottom:706.245000px;}
.y59_c00321{bottom:707.325000px;}
.y56_c00321{bottom:708.405000px;}
.y57_c00321{bottom:709.905000px;}
.y54_c00321{bottom:724.905000px;}
.y53_c00321{bottom:725.745000px;}
.y52_c00321{bottom:727.245000px;}
.y55_c00321{bottom:728.130000px;}
.y51_c00321{bottom:729.405000px;}
.y4e_c00321{bottom:745.680000px;}
.y50_c00321{bottom:746.745000px;}
.y4f_c00321{bottom:748.905000px;}
.y4c_c00321{bottom:766.245000px;}
.y4b_c00321{bottom:768.405000px;}
.y4d_c00321{bottom:768.630000px;}
.y47_c00321{bottom:784.905000px;}
.y49_c00321{bottom:785.745000px;}
.y48_c00321{bottom:786.825000px;}
.y46_c00321{bottom:787.905000px;}
.y4a_c00321{bottom:788.130000px;}
.y44_c00321{bottom:804.405000px;}
.y42_c00321{bottom:805.245000px;}
.y45_c00321{bottom:805.470000px;}
.y40_c00321{bottom:807.405000px;}
.y43_c00321{bottom:807.630000px;}
.y41_c00321{bottom:808.470000px;}
.y3c_c00321{bottom:824.745000px;}
.y3e_c00321{bottom:825.825000px;}
.y3b_c00321{bottom:826.905000px;}
.y3f_c00321{bottom:827.130000px;}
.y3d_c00321{bottom:827.970000px;}
.y3a_c00321{bottom:845.745000px;}
.y38_c00321{bottom:846.630000px;}
.y37_c00321{bottom:847.905000px;}
.y39_c00321{bottom:848.970000px;}
.y35_c00321{bottom:864.825000px;}
.y33_c00321{bottom:865.245000px;}
.y34_c00321{bottom:866.130000px;}
.y36_c00321{bottom:866.325000px;}
.y32_c00321{bottom:866.970000px;}
.y31_c00321{bottom:867.405000px;}
.y2d_c00321{bottom:882.405000px;}
.y2e_c00321{bottom:884.745000px;}
.y30_c00321{bottom:885.630000px;}
.y2f_c00321{bottom:885.825000px;}
.y2b_c00321{bottom:886.905000px;}
.y2c_c00321{bottom:887.970000px;}
.y29_c00321{bottom:901.905000px;}
.y27_c00321{bottom:902.745000px;}
.y25_c00321{bottom:904.245000px;}
.y2a_c00321{bottom:905.130000px;}
.y28_c00321{bottom:905.970000px;}
.y24_c00321{bottom:906.405000px;}
.y26_c00321{bottom:907.470000px;}
.y23_c00321{bottom:923.745000px;}
.y1e_c00321{bottom:942.405000px;}
.y22_c00321{bottom:943.245000px;}
.y1f_c00321{bottom:944.325000px;}
.y21_c00321{bottom:944.745000px;}
.y1d_c00321{bottom:945.405000px;}
.y20_c00321{bottom:945.630000px;}
.y17_c00321{bottom:962.745000px;}
.y1c_c00321{bottom:962.970000px;}
.y1b_c00321{bottom:964.470000px;}
.y19_c00321{bottom:964.905000px;}
.y1a_c00321{bottom:965.325000px;}
.y18_c00321{bottom:965.970000px;}
.y15_c00321{bottom:982.245000px;}
.y16_c00321{bottom:984.405000px;}
.y12_c00321{bottom:1002.825000px;}
.yf_c00321{bottom:1003.245000px;}
.y10_c00321{bottom:1003.905000px;}
.y14_c00321{bottom:1004.130000px;}
.y11_c00321{bottom:1004.970000px;}
.y13_c00321{bottom:1005.405000px;}
.yc_c00321{bottom:1021.245000px;}
.ye_c00321{bottom:1022.325000px;}
.yd_c00321{bottom:1022.745000px;}
.yb_c00321{bottom:1024.905000px;}
.y9_c00321{bottom:1041.825000px;}
.y8_c00321{bottom:1042.245000px;}
.y7_c00321{bottom:1043.130000px;}
.ya_c00321{bottom:1043.970000px;}
.y6_c00321{bottom:1044.405000px;}
.y5_c00321{bottom:1061.745000px;}
.y4_c00321{bottom:1063.470000px;}
.y3_c00321{bottom:1063.905000px;}
.y1_c00321{bottom:1099.905000px;}
.y2_c00321{bottom:1102.050000px;}
.hb_c00321{height:4.206533px;}
.hc_c00321{height:14.612168px;}
.h9_c00321{height:16.752334px;}
.ha_c00321{height:22.752334px;}
.h5_c00321{height:23.025234px;}
.h2_c00321{height:25.091602px;}
.h3_c00321{height:31.364502px;}
.h1_c00321{height:35.571035px;}
.h6_c00321{height:39.777568px;}
.h4_c00321{height:43.910303px;}
.h8_c00321{height:47.571035px;}
.h7_c00321{height:48.116836px;}
.h0_c00321{height:1335.000000px;}
.w0_c00321{width:880.500000px;}
.x0_c00321{left:0.000000px;}
.x84_c00321{left:151.500000px;}
.x1f_c00321{left:152.580000px;}
.x1_c00321{left:154.080000px;}
.xc3_c00321{left:166.500000px;}
.x53_c00321{left:169.080000px;}
.xa1_c00321{left:180.000000px;}
.x73_c00321{left:181.920000px;}
.x3_c00321{left:185.580000px;}
.x7d_c00321{left:192.420000px;}
.x20_c00321{left:195.000000px;}
.x68_c00321{left:198.420000px;}
.x11_c00321{left:199.500000px;}
.x2c_c00321{left:208.920000px;}
.x92_c00321{left:210.000000px;}
.x8b_c00321{left:211.080000px;}
.x4b_c00321{left:212.580000px;}
.x85_c00321{left:217.500000px;}
.x4_c00321{left:219.420000px;}
.x54_c00321{left:220.920000px;}
.xa2_c00321{left:222.855000px;}
.x12_c00321{left:224.580000px;}
.xac_c00321{left:228.000000px;}
.x21_c00321{left:229.080000px;}
.x3f_c00321{left:230.580000px;}
.x69_c00321{left:232.500000px;}
.x9b_c00321{left:235.500000px;}
.x74_c00321{left:237.420000px;}
.x86_c00321{left:238.500000px;}
.x38_c00321{left:243.420000px;}
.x22_c00321{left:247.920000px;}
.x9c_c00321{left:252.000000px;}
.x5_c00321{left:253.080000px;}
.x13_c00321{left:255.420000px;}
.xa3_c00321{left:258.000000px;}
.xad_c00321{left:259.500000px;}
.x62_c00321{left:261.000000px;}
.x40_c00321{left:262.275000px;}
.x2d_c00321{left:267.000000px;}
.xb6_c00321{left:272.580000px;}
.x23_c00321{left:275.580000px;}
.xcc_c00321{left:277.500000px;}
.x7e_c00321{left:279.000000px;}
.x8c_c00321{left:280.920000px;}
.x75_c00321{left:284.580000px;}
.x55_c00321{left:286.500000px;}
.xc7_c00321{left:288.420000px;}
.xc2_c00321{left:291.420000px;}
.x4c_c00321{left:292.500000px;}
.xbd_c00321{left:294.000000px;}
.x6a_c00321{left:295.500000px;}
.x56_c00321{left:297.000000px;}
.xa4_c00321{left:300.420000px;}
.xd7_c00321{left:301.500000px;}
.x2e_c00321{left:303.000000px;}
.x87_c00321{left:304.500000px;}
.x63_c00321{left:306.000000px;}
.x39_c00321{left:307.920000px;}
.xae_c00321{left:309.000000px;}
.xdc_c00321{left:310.080000px;}
.x57_c00321{left:312.000000px;}
.x6_c00321{left:315.420000px;}
.x41_c00321{left:317.580000px;}
.x8d_c00321{left:322.920000px;}
.xe0_c00321{left:324.000000px;}
.x58_c00321{left:325.500000px;}
.x14_c00321{left:328.920000px;}
.xd0_c00321{left:334.920000px;}
.x64_c00321{left:336.000000px;}
.x3a_c00321{left:337.920000px;}
.x42_c00321{left:339.000000px;}
.x59_c00321{left:340.500000px;}
.x7_c00321{left:343.500000px;}
.x2f_c00321{left:346.080000px;}
.x24_c00321{left:348.420000px;}
.x6b_c00321{left:349.500000px;}
.x8e_c00321{left:351.000000px;}
.x5a_c00321{left:354.000000px;}
.x76_c00321{left:357.420000px;}
.x93_c00321{left:360.000000px;}
.xc4_c00321{left:361.080000px;}
.x15_c00321{left:363.000000px;}
.xa5_c00321{left:364.500000px;}
.x30_c00321{left:366.420000px;}
.x4d_c00321{left:367.500000px;}
.x5b_c00321{left:370.500000px;}
.xb7_c00321{left:373.500000px;}
.x8_c00321{left:375.000000px;}
.x7f_c00321{left:379.500000px;}
.x94_c00321{left:382.920000px;}
.xdd_c00321{left:384.420000px;}
.x43_c00321{left:388.500000px;}
.xbe_c00321{left:391.500000px;}
.x31_c00321{left:393.000000px;}
.x6c_c00321{left:396.000000px;}
.xd1_c00321{left:397.920000px;}
.x88_c00321{left:399.000000px;}
.x5c_c00321{left:400.500000px;}
.x44_c00321{left:401.580000px;}
.x2_c00321{left:405.000000px;}
.xb0_c00321{left:406.920000px;}
.x6d_c00321{left:408.000000px;}
.x95_c00321{left:409.500000px;}
.x9_c00321{left:411.420000px;}
.x77_c00321{left:412.920000px;}
.x4e_c00321{left:414.000000px;}
.x16_c00321{left:417.000000px;}
.xb8_c00321{left:424.500000px;}
.xd4_c00321{left:427.500000px;}
.xda_c00321{left:429.000000px;}
.xe1_c00321{left:430.500000px;}
.x4f_c00321{left:433.500000px;}
.x32_c00321{left:435.420000px;}
.x80_c00321{left:436.920000px;}
.x9d_c00321{left:438.000000px;}
.x25_c00321{left:442.500000px;}
.xc5_c00321{left:445.500000px;}
.xa_c00321{left:447.000000px;}
.xc8_c00321{left:448.080000px;}
.x96_c00321{left:450.000000px;}
.xaf_c00321{left:451.500000px;}
.x78_c00321{left:454.500000px;}
.x6e_c00321{left:457.080000px;}
.xa6_c00321{left:459.000000px;}
.x33_c00321{left:462.000000px;}
.xb_c00321{left:463.920000px;}
.x17_c00321{left:465.000000px;}
.x3b_c00321{left:466.500000px;}
.xcd_c00321{left:469.500000px;}
.xe2_c00321{left:471.000000px;}
.xd2_c00321{left:472.500000px;}
.xde_c00321{left:474.000000px;}
.x45_c00321{left:475.920000px;}
.x9e_c00321{left:481.500000px;}
.x65_c00321{left:483.000000px;}
.x97_c00321{left:485.580000px;}
.x89_c00321{left:487.500000px;}
.x18_c00321{left:489.000000px;}
.x26_c00321{left:490.500000px;}
.xb1_c00321{left:493.500000px;}
.x5d_c00321{left:496.500000px;}
.x6f_c00321{left:499.500000px;}
.x19_c00321{left:501.000000px;}
.x98_c00321{left:504.420000px;}
.xb9_c00321{left:505.500000px;}
.x46_c00321{left:507.000000px;}
.xd5_c00321{left:510.000000px;}
.x81_c00321{left:514.080000px;}
.xa7_c00321{left:515.580000px;}
.x34_c00321{left:517.500000px;}
.xc6_c00321{left:520.080000px;}
.x50_c00321{left:522.000000px;}
.x66_c00321{left:524.580000px;}
.x3c_c00321{left:528.000000px;}
.x27_c00321{left:531.000000px;}
.xd3_c00321{left:532.920000px;}
.x8f_c00321{left:535.920000px;}
.xc_c00321{left:537.420000px;}
.xb2_c00321{left:538.500000px;}
.xce_c00321{left:540.420000px;}
.x1a_c00321{left:541.920000px;}
.x67_c00321{left:546.000000px;}
.x47_c00321{left:547.080000px;}
.x70_c00321{left:553.920000px;}
.xa8_c00321{left:556.500000px;}
.xcf_c00321{left:559.500000px;}
.xbf_c00321{left:561.420000px;}
.x35_c00321{left:563.580000px;}
.xb3_c00321{left:565.500000px;}
.x79_c00321{left:569.580000px;}
.xc9_c00321{left:571.500000px;}
.x5e_c00321{left:572.580000px;}
.xd_c00321{left:574.080000px;}
.xd8_c00321{left:577.920000px;}
.x28_c00321{left:579.420000px;}
.xd6_c00321{left:580.500000px;}
.x99_c00321{left:582.000000px;}
.xdb_c00321{left:583.920000px;}
.xdf_c00321{left:586.500000px;}
.xc0_c00321{left:589.500000px;}
.xd9_c00321{left:591.000000px;}
.x3d_c00321{left:592.500000px;}
.x5f_c00321{left:594.000000px;}
.x9f_c00321{left:595.920000px;}
.x1b_c00321{left:598.500000px;}
.x7a_c00321{left:601.080000px;}
.xca_c00321{left:604.920000px;}
.x29_c00321{left:606.000000px;}
.x82_c00321{left:609.420000px;}
.xa9_c00321{left:610.500000px;}
.x71_c00321{left:612.000000px;}
.x8a_c00321{left:615.000000px;}
.xba_c00321{left:620.580000px;}
.x2a_c00321{left:622.080000px;}
.x48_c00321{left:624.000000px;}
.x51_c00321{left:625.500000px;}
.xe_c00321{left:627.000000px;}
.x1c_c00321{left:631.500000px;}
.x60_c00321{left:636.000000px;}
.xcb_c00321{left:640.920000px;}
.xc1_c00321{left:645.000000px;}
.x7b_c00321{left:646.080000px;}
.x1d_c00321{left:649.920000px;}
.x72_c00321{left:651.000000px;}
.x49_c00321{left:655.080000px;}
.x9a_c00321{left:657.420000px;}
.xf_c00321{left:660.420000px;}
.x52_c00321{left:663.420000px;}
.x90_c00321{left:664.500000px;}
.x36_c00321{left:665.580000px;}
.x83_c00321{left:667.500000px;}
.xbb_c00321{left:670.275000px;}
.x1e_c00321{left:676.080000px;}
.xb4_c00321{left:680.580000px;}
.x2b_c00321{left:684.000000px;}
.xaa_c00321{left:687.000000px;}
.x10_c00321{left:691.920000px;}
.x7c_c00321{left:693.000000px;}
.x37_c00321{left:697.500000px;}
.x3e_c00321{left:699.420000px;}
.xb5_c00321{left:702.420000px;}
.xbc_c00321{left:704.580000px;}
.x91_c00321{left:706.080000px;}
.xab_c00321{left:708.420000px;}
.x61_c00321{left:709.500000px;}
.xa0_c00321{left:717.000000px;}
.x4a_c00321{left:720.000000px;}
@media print{
.v0_c00321{vertical-align:0.000000pt;}
.v2_c00321{vertical-align:5.333333pt;}
.v1_c00321{vertical-align:10.666667pt;}
.ls1_c00321{letter-spacing:0.000000pt;}
.ls0_c00321{letter-spacing:45.653309pt;}
.ws0_c00321{word-spacing:-6.077547pt;}
.ws1_c00321{word-spacing:-0.357092pt;}
.wsc_c00321{word-spacing:0.000000pt;}
.ws5_c00321{word-spacing:8.837748pt;}
.ws4_c00321{word-spacing:11.532166pt;}
.ws6_c00321{word-spacing:12.099545pt;}
.wsa_c00321{word-spacing:15.344817pt;}
.ws8_c00321{word-spacing:17.260429pt;}
.ws7_c00321{word-spacing:17.440722pt;}
.wsb_c00321{word-spacing:21.091652pt;}
.ws3_c00321{word-spacing:35.419372pt;}
.ws9_c00321{word-spacing:38.370575pt;}
.ws2_c00321{word-spacing:42.417089pt;}
._0_c00321{width:24.511015pt;}
._1_c00321{width:30.077557pt;}
.fs8_c00321{font-size:3.040000pt;}
.fs9_c00321{font-size:10.560000pt;}
.fs7_c00321{font-size:12.106667pt;}
.fs4_c00321{font-size:16.640000pt;}
.fs1_c00321{font-size:18.133333pt;}
.fs2_c00321{font-size:22.666667pt;}
.fs0_c00321{font-size:25.706667pt;}
.fs5_c00321{font-size:28.746667pt;}
.fs3_c00321{font-size:31.733333pt;}
.fs6_c00321{font-size:34.773333pt;}
.y0_c00321{bottom:0.000000pt;}
.yb3_c00321{bottom:225.893333pt;}
.yb4_c00321{bottom:226.840000pt;}
.yb0_c00321{bottom:237.893333pt;}
.yb1_c00321{bottom:238.840000pt;}
.yb2_c00321{bottom:239.226667pt;}
.yae_c00321{bottom:250.466667pt;}
.yad_c00321{bottom:251.226667pt;}
.yaf_c00321{bottom:252.173333pt;}
.yaa_c00321{bottom:261.506667pt;}
.ya9_c00321{bottom:263.226667pt;}
.yac_c00321{bottom:264.173333pt;}
.yab_c00321{bottom:264.560000pt;}
.ya4_c00321{bottom:274.840000pt;}
.ya3_c00321{bottom:275.226667pt;}
.ya8_c00321{bottom:275.400000pt;}
.ya6_c00321{bottom:275.800000pt;}
.ya5_c00321{bottom:276.173333pt;}
.ya7_c00321{bottom:277.706667pt;}
.ya2_c00321{bottom:287.226667pt;}
.ya0_c00321{bottom:288.173333pt;}
.ya1_c00321{bottom:288.560000pt;}
.y9d_c00321{bottom:299.226667pt;}
.y9f_c00321{bottom:300.173333pt;}
.y9e_c00321{bottom:300.560000pt;}
.y9b_c00321{bottom:312.560000pt;}
.y9c_c00321{bottom:313.506667pt;}
.y97_c00321{bottom:323.600000pt;}
.y99_c00321{bottom:324.560000pt;}
.y98_c00321{bottom:325.506667pt;}
.y9a_c00321{bottom:325.893333pt;}
.y95_c00321{bottom:336.560000pt;}
.y94_c00321{bottom:337.506667pt;}
.y96_c00321{bottom:337.893333pt;}
.y93_c00321{bottom:349.893333pt;}
.y92_c00321{bottom:350.840000pt;}
.y90_c00321{bottom:361.506667pt;}
.y8f_c00321{bottom:361.893333pt;}
.y91_c00321{bottom:362.840000pt;}
.y8c_c00321{bottom:378.840000pt;}
.y8d_c00321{bottom:379.040000pt;}
.y8e_c00321{bottom:380.373333pt;}
.y89_c00321{bottom:389.893333pt;}
.y8b_c00321{bottom:390.840000pt;}
.y8a_c00321{bottom:391.226667pt;}
.y88_c00321{bottom:402.840000pt;}
.y87_c00321{bottom:424.733333pt;}
.y85_c00321{bottom:425.693333pt;}
.y86_c00321{bottom:426.640000pt;}
.y80_c00321{bottom:438.066667pt;}
.y84_c00321{bottom:439.026667pt;}
.y83_c00321{bottom:439.226667pt;}
.y82_c00321{bottom:439.973333pt;}
.y81_c00321{bottom:440.933333pt;}
.y7f_c00321{bottom:451.400000pt;}
.y7e_c00321{bottom:453.306667pt;}
.y7c_c00321{bottom:464.733333pt;}
.y7b_c00321{bottom:466.266667pt;}
.y7a_c00321{bottom:466.640000pt;}
.y7d_c00321{bottom:467.600000pt;}
.y79_c00321{bottom:482.266667pt;}
.y78_c00321{bottom:484.933333pt;}
.y77_c00321{bottom:521.693333pt;}
.y75_c00321{bottom:523.026667pt;}
.y72_c00321{bottom:523.773333pt;}
.y76_c00321{bottom:524.560000pt;}
.y73_c00321{bottom:524.733333pt;}
.y74_c00321{bottom:525.693333pt;}
.y70_c00321{bottom:541.106667pt;}
.y71_c00321{bottom:541.893333pt;}
.y6f_c00321{bottom:542.640000pt;}
.y6e_c00321{bottom:543.026667pt;}
.y6d_c00321{bottom:557.693333pt;}
.y6c_c00321{bottom:558.440000pt;}
.y6b_c00321{bottom:560.360000pt;}
.y67_c00321{bottom:574.826667pt;}
.y68_c00321{bottom:575.773333pt;}
.y69_c00321{bottom:576.560000pt;}
.y6a_c00321{bottom:577.306667pt;}
.y66_c00321{bottom:577.693333pt;}
.y65_c00321{bottom:593.106667pt;}
.y63_c00321{bottom:593.306667pt;}
.y62_c00321{bottom:594.440000pt;}
.y61_c00321{bottom:595.026667pt;}
.y64_c00321{bottom:596.360000pt;}
.y5d_c00321{bottom:609.693333pt;}
.y60_c00321{bottom:611.773333pt;}
.y5c_c00321{bottom:612.360000pt;}
.y5f_c00321{bottom:612.560000pt;}
.y5e_c00321{bottom:612.733333pt;}
.y5b_c00321{bottom:613.693333pt;}
.y5a_c00321{bottom:627.026667pt;}
.y58_c00321{bottom:627.773333pt;}
.y59_c00321{bottom:628.733333pt;}
.y56_c00321{bottom:629.693333pt;}
.y57_c00321{bottom:631.026667pt;}
.y54_c00321{bottom:644.360000pt;}
.y53_c00321{bottom:645.106667pt;}
.y52_c00321{bottom:646.440000pt;}
.y55_c00321{bottom:647.226667pt;}
.y51_c00321{bottom:648.360000pt;}
.y4e_c00321{bottom:662.826667pt;}
.y50_c00321{bottom:663.773333pt;}
.y4f_c00321{bottom:665.693333pt;}
.y4c_c00321{bottom:681.106667pt;}
.y4b_c00321{bottom:683.026667pt;}
.y4d_c00321{bottom:683.226667pt;}
.y47_c00321{bottom:697.693333pt;}
.y49_c00321{bottom:698.440000pt;}
.y48_c00321{bottom:699.400000pt;}
.y46_c00321{bottom:700.360000pt;}
.y4a_c00321{bottom:700.560000pt;}
.y44_c00321{bottom:715.026667pt;}
.y42_c00321{bottom:715.773333pt;}
.y45_c00321{bottom:715.973333pt;}
.y40_c00321{bottom:717.693333pt;}
.y43_c00321{bottom:717.893333pt;}
.y41_c00321{bottom:718.640000pt;}
.y3c_c00321{bottom:733.106667pt;}
.y3e_c00321{bottom:734.066667pt;}
.y3b_c00321{bottom:735.026667pt;}
.y3f_c00321{bottom:735.226667pt;}
.y3d_c00321{bottom:735.973333pt;}
.y3a_c00321{bottom:751.773333pt;}
.y38_c00321{bottom:752.560000pt;}
.y37_c00321{bottom:753.693333pt;}
.y39_c00321{bottom:754.640000pt;}
.y35_c00321{bottom:768.733333pt;}
.y33_c00321{bottom:769.106667pt;}
.y34_c00321{bottom:769.893333pt;}
.y36_c00321{bottom:770.066667pt;}
.y32_c00321{bottom:770.640000pt;}
.y31_c00321{bottom:771.026667pt;}
.y2d_c00321{bottom:784.360000pt;}
.y2e_c00321{bottom:786.440000pt;}
.y30_c00321{bottom:787.226667pt;}
.y2f_c00321{bottom:787.400000pt;}
.y2b_c00321{bottom:788.360000pt;}
.y2c_c00321{bottom:789.306667pt;}
.y29_c00321{bottom:801.693333pt;}
.y27_c00321{bottom:802.440000pt;}
.y25_c00321{bottom:803.773333pt;}
.y2a_c00321{bottom:804.560000pt;}
.y28_c00321{bottom:805.306667pt;}
.y24_c00321{bottom:805.693333pt;}
.y26_c00321{bottom:806.640000pt;}
.y23_c00321{bottom:821.106667pt;}
.y1e_c00321{bottom:837.693333pt;}
.y22_c00321{bottom:838.440000pt;}
.y1f_c00321{bottom:839.400000pt;}
.y21_c00321{bottom:839.773333pt;}
.y1d_c00321{bottom:840.360000pt;}
.y20_c00321{bottom:840.560000pt;}
.y17_c00321{bottom:855.773333pt;}
.y1c_c00321{bottom:855.973333pt;}
.y1b_c00321{bottom:857.306667pt;}
.y19_c00321{bottom:857.693333pt;}
.y1a_c00321{bottom:858.066667pt;}
.y18_c00321{bottom:858.640000pt;}
.y15_c00321{bottom:873.106667pt;}
.y16_c00321{bottom:875.026667pt;}
.y12_c00321{bottom:891.400000pt;}
.yf_c00321{bottom:891.773333pt;}
.y10_c00321{bottom:892.360000pt;}
.y14_c00321{bottom:892.560000pt;}
.y11_c00321{bottom:893.306667pt;}
.y13_c00321{bottom:893.693333pt;}
.yc_c00321{bottom:907.773333pt;}
.ye_c00321{bottom:908.733333pt;}
.yd_c00321{bottom:909.106667pt;}
.yb_c00321{bottom:911.026667pt;}
.y9_c00321{bottom:926.066667pt;}
.y8_c00321{bottom:926.440000pt;}
.y7_c00321{bottom:927.226667pt;}
.ya_c00321{bottom:927.973333pt;}
.y6_c00321{bottom:928.360000pt;}
.y5_c00321{bottom:943.773333pt;}
.y4_c00321{bottom:945.306667pt;}
.y3_c00321{bottom:945.693333pt;}
.y1_c00321{bottom:977.693333pt;}
.y2_c00321{bottom:979.600000pt;}
.hb_c00321{height:3.739141pt;}
.hc_c00321{height:12.988594pt;}
.h9_c00321{height:14.890964pt;}
.ha_c00321{height:20.224297pt;}
.h5_c00321{height:20.466875pt;}
.h2_c00321{height:22.303646pt;}
.h3_c00321{height:27.879557pt;}
.h1_c00321{height:31.618698pt;}
.h6_c00321{height:35.357839pt;}
.h4_c00321{height:39.031380pt;}
.h8_c00321{height:42.285365pt;}
.h7_c00321{height:42.770521pt;}
.h0_c00321{height:1186.666667pt;}
.w0_c00321{width:782.666667pt;}
.x0_c00321{left:0.000000pt;}
.x84_c00321{left:134.666667pt;}
.x1f_c00321{left:135.626667pt;}
.x1_c00321{left:136.960000pt;}
.xc3_c00321{left:148.000000pt;}
.x53_c00321{left:150.293333pt;}
.xa1_c00321{left:160.000000pt;}
.x73_c00321{left:161.706667pt;}
.x3_c00321{left:164.960000pt;}
.x7d_c00321{left:171.040000pt;}
.x20_c00321{left:173.333333pt;}
.x68_c00321{left:176.373333pt;}
.x11_c00321{left:177.333333pt;}
.x2c_c00321{left:185.706667pt;}
.x92_c00321{left:186.666667pt;}
.x8b_c00321{left:187.626667pt;}
.x4b_c00321{left:188.960000pt;}
.x85_c00321{left:193.333333pt;}
.x4_c00321{left:195.040000pt;}
.x54_c00321{left:196.373333pt;}
.xa2_c00321{left:198.093333pt;}
.x12_c00321{left:199.626667pt;}
.xac_c00321{left:202.666667pt;}
.x21_c00321{left:203.626667pt;}
.x3f_c00321{left:204.960000pt;}
.x69_c00321{left:206.666667pt;}
.x9b_c00321{left:209.333333pt;}
.x74_c00321{left:211.040000pt;}
.x86_c00321{left:212.000000pt;}
.x38_c00321{left:216.373333pt;}
.x22_c00321{left:220.373333pt;}
.x9c_c00321{left:224.000000pt;}
.x5_c00321{left:224.960000pt;}
.x13_c00321{left:227.040000pt;}
.xa3_c00321{left:229.333333pt;}
.xad_c00321{left:230.666667pt;}
.x62_c00321{left:232.000000pt;}
.x40_c00321{left:233.133333pt;}
.x2d_c00321{left:237.333333pt;}
.xb6_c00321{left:242.293333pt;}
.x23_c00321{left:244.960000pt;}
.xcc_c00321{left:246.666667pt;}
.x7e_c00321{left:248.000000pt;}
.x8c_c00321{left:249.706667pt;}
.x75_c00321{left:252.960000pt;}
.x55_c00321{left:254.666667pt;}
.xc7_c00321{left:256.373333pt;}
.xc2_c00321{left:259.040000pt;}
.x4c_c00321{left:260.000000pt;}
.xbd_c00321{left:261.333333pt;}
.x6a_c00321{left:262.666667pt;}
.x56_c00321{left:264.000000pt;}
.xa4_c00321{left:267.040000pt;}
.xd7_c00321{left:268.000000pt;}
.x2e_c00321{left:269.333333pt;}
.x87_c00321{left:270.666667pt;}
.x63_c00321{left:272.000000pt;}
.x39_c00321{left:273.706667pt;}
.xae_c00321{left:274.666667pt;}
.xdc_c00321{left:275.626667pt;}
.x57_c00321{left:277.333333pt;}
.x6_c00321{left:280.373333pt;}
.x41_c00321{left:282.293333pt;}
.x8d_c00321{left:287.040000pt;}
.xe0_c00321{left:288.000000pt;}
.x58_c00321{left:289.333333pt;}
.x14_c00321{left:292.373333pt;}
.xd0_c00321{left:297.706667pt;}
.x64_c00321{left:298.666667pt;}
.x3a_c00321{left:300.373333pt;}
.x42_c00321{left:301.333333pt;}
.x59_c00321{left:302.666667pt;}
.x7_c00321{left:305.333333pt;}
.x2f_c00321{left:307.626667pt;}
.x24_c00321{left:309.706667pt;}
.x6b_c00321{left:310.666667pt;}
.x8e_c00321{left:312.000000pt;}
.x5a_c00321{left:314.666667pt;}
.x76_c00321{left:317.706667pt;}
.x93_c00321{left:320.000000pt;}
.xc4_c00321{left:320.960000pt;}
.x15_c00321{left:322.666667pt;}
.xa5_c00321{left:324.000000pt;}
.x30_c00321{left:325.706667pt;}
.x4d_c00321{left:326.666667pt;}
.x5b_c00321{left:329.333333pt;}
.xb7_c00321{left:332.000000pt;}
.x8_c00321{left:333.333333pt;}
.x7f_c00321{left:337.333333pt;}
.x94_c00321{left:340.373333pt;}
.xdd_c00321{left:341.706667pt;}
.x43_c00321{left:345.333333pt;}
.xbe_c00321{left:348.000000pt;}
.x31_c00321{left:349.333333pt;}
.x6c_c00321{left:352.000000pt;}
.xd1_c00321{left:353.706667pt;}
.x88_c00321{left:354.666667pt;}
.x5c_c00321{left:356.000000pt;}
.x44_c00321{left:356.960000pt;}
.x2_c00321{left:360.000000pt;}
.xb0_c00321{left:361.706667pt;}
.x6d_c00321{left:362.666667pt;}
.x95_c00321{left:364.000000pt;}
.x9_c00321{left:365.706667pt;}
.x77_c00321{left:367.040000pt;}
.x4e_c00321{left:368.000000pt;}
.x16_c00321{left:370.666667pt;}
.xb8_c00321{left:377.333333pt;}
.xd4_c00321{left:380.000000pt;}
.xda_c00321{left:381.333333pt;}
.xe1_c00321{left:382.666667pt;}
.x4f_c00321{left:385.333333pt;}
.x32_c00321{left:387.040000pt;}
.x80_c00321{left:388.373333pt;}
.x9d_c00321{left:389.333333pt;}
.x25_c00321{left:393.333333pt;}
.xc5_c00321{left:396.000000pt;}
.xa_c00321{left:397.333333pt;}
.xc8_c00321{left:398.293333pt;}
.x96_c00321{left:400.000000pt;}
.xaf_c00321{left:401.333333pt;}
.x78_c00321{left:404.000000pt;}
.x6e_c00321{left:406.293333pt;}
.xa6_c00321{left:408.000000pt;}
.x33_c00321{left:410.666667pt;}
.xb_c00321{left:412.373333pt;}
.x17_c00321{left:413.333333pt;}
.x3b_c00321{left:414.666667pt;}
.xcd_c00321{left:417.333333pt;}
.xe2_c00321{left:418.666667pt;}
.xd2_c00321{left:420.000000pt;}
.xde_c00321{left:421.333333pt;}
.x45_c00321{left:423.040000pt;}
.x9e_c00321{left:428.000000pt;}
.x65_c00321{left:429.333333pt;}
.x97_c00321{left:431.626667pt;}
.x89_c00321{left:433.333333pt;}
.x18_c00321{left:434.666667pt;}
.x26_c00321{left:436.000000pt;}
.xb1_c00321{left:438.666667pt;}
.x5d_c00321{left:441.333333pt;}
.x6f_c00321{left:444.000000pt;}
.x19_c00321{left:445.333333pt;}
.x98_c00321{left:448.373333pt;}
.xb9_c00321{left:449.333333pt;}
.x46_c00321{left:450.666667pt;}
.xd5_c00321{left:453.333333pt;}
.x81_c00321{left:456.960000pt;}
.xa7_c00321{left:458.293333pt;}
.x34_c00321{left:460.000000pt;}
.xc6_c00321{left:462.293333pt;}
.x50_c00321{left:464.000000pt;}
.x66_c00321{left:466.293333pt;}
.x3c_c00321{left:469.333333pt;}
.x27_c00321{left:472.000000pt;}
.xd3_c00321{left:473.706667pt;}
.x8f_c00321{left:476.373333pt;}
.xc_c00321{left:477.706667pt;}
.xb2_c00321{left:478.666667pt;}
.xce_c00321{left:480.373333pt;}
.x1a_c00321{left:481.706667pt;}
.x67_c00321{left:485.333333pt;}
.x47_c00321{left:486.293333pt;}
.x70_c00321{left:492.373333pt;}
.xa8_c00321{left:494.666667pt;}
.xcf_c00321{left:497.333333pt;}
.xbf_c00321{left:499.040000pt;}
.x35_c00321{left:500.960000pt;}
.xb3_c00321{left:502.666667pt;}
.x79_c00321{left:506.293333pt;}
.xc9_c00321{left:508.000000pt;}
.x5e_c00321{left:508.960000pt;}
.xd_c00321{left:510.293333pt;}
.xd8_c00321{left:513.706667pt;}
.x28_c00321{left:515.040000pt;}
.xd6_c00321{left:516.000000pt;}
.x99_c00321{left:517.333333pt;}
.xdb_c00321{left:519.040000pt;}
.xdf_c00321{left:521.333333pt;}
.xc0_c00321{left:524.000000pt;}
.xd9_c00321{left:525.333333pt;}
.x3d_c00321{left:526.666667pt;}
.x5f_c00321{left:528.000000pt;}
.x9f_c00321{left:529.706667pt;}
.x1b_c00321{left:532.000000pt;}
.x7a_c00321{left:534.293333pt;}
.xca_c00321{left:537.706667pt;}
.x29_c00321{left:538.666667pt;}
.x82_c00321{left:541.706667pt;}
.xa9_c00321{left:542.666667pt;}
.x71_c00321{left:544.000000pt;}
.x8a_c00321{left:546.666667pt;}
.xba_c00321{left:551.626667pt;}
.x2a_c00321{left:552.960000pt;}
.x48_c00321{left:554.666667pt;}
.x51_c00321{left:556.000000pt;}
.xe_c00321{left:557.333333pt;}
.x1c_c00321{left:561.333333pt;}
.x60_c00321{left:565.333333pt;}
.xcb_c00321{left:569.706667pt;}
.xc1_c00321{left:573.333333pt;}
.x7b_c00321{left:574.293333pt;}
.x1d_c00321{left:577.706667pt;}
.x72_c00321{left:578.666667pt;}
.x49_c00321{left:582.293333pt;}
.x9a_c00321{left:584.373333pt;}
.xf_c00321{left:587.040000pt;}
.x52_c00321{left:589.706667pt;}
.x90_c00321{left:590.666667pt;}
.x36_c00321{left:591.626667pt;}
.x83_c00321{left:593.333333pt;}
.xbb_c00321{left:595.800000pt;}
.x1e_c00321{left:600.960000pt;}
.xb4_c00321{left:604.960000pt;}
.x2b_c00321{left:608.000000pt;}
.xaa_c00321{left:610.666667pt;}
.x10_c00321{left:615.040000pt;}
.x7c_c00321{left:616.000000pt;}
.x37_c00321{left:620.000000pt;}
.x3e_c00321{left:621.706667pt;}
.xb5_c00321{left:624.373333pt;}
.xbc_c00321{left:626.293333pt;}
.x91_c00321{left:627.626667pt;}
.xab_c00321{left:629.706667pt;}
.x61_c00321{left:630.666667pt;}
.xa0_c00321{left:637.333333pt;}
.x4a_c00321{left:640.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_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_1bb17d1c876ff59519f181f2.woff2')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma2_c00322{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m94_c00322{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m85_c00322{transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);}
.m96_c00322{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.me1_c00322{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.ma4_c00322{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.ma7_c00322{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m2b_c00322{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m3d_c00322{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m43_c00322{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.md6_c00322{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m61_c00322{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m28_c00322{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.m58_c00322{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m27_c00322{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m4a_c00322{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m2e_c00322{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mdc_c00322{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m42_c00322{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.md8_c00322{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mca_c00322{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m3a_c00322{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.maa_c00322{transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);}
.m69_c00322{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.mc4_c00322{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m8a_c00322{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m12_c00322{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.mac_c00322{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m7_c00322{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m26_c00322{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m4c_c00322{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m8e_c00322{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m31_c00322{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.md9_c00322{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mba_c00322{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m78_c00322{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m36_c00322{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.mb0_c00322{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.md4_c00322{transform:matrix(0.413344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413344,0.000000,0.000000,0.250000,0,0);}
.m4f_c00322{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m60_c00322{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m11_c00322{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m19_c00322{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.ma1_c00322{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m51_c00322{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mb9_c00322{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m66_c00322{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m5d_c00322{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m6d_c00322{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m84_c00322{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mcd_c00322{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.mbc_c00322{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.mc5_c00322{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.ma5_c00322{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m34_c00322{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m86_c00322{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m9f_c00322{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m9_c00322{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.maf_c00322{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.me_c00322{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mc8_c00322{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m6f_c00322{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m14_c00322{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m52_c00322{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.mc9_c00322{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m41_c00322{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.mc6_c00322{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mb3_c00322{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.mc0_c00322{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m8b_c00322{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mcf_c00322{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m3c_c00322{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.ma3_c00322{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.md5_c00322{transform:matrix(0.450153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450153,0.000000,0.000000,0.250000,0,0);}
.me4_c00322{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m6c_c00322{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.mbd_c00322{transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);}
.m93_c00322{transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);}
.m9c_c00322{transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);}
.m75_c00322{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mc1_c00322{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m79_c00322{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m48_c00322{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.mb5_c00322{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.m6e_c00322{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.md2_c00322{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.m5a_c00322{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.m4e_c00322{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.mde_c00322{transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);}
.m16_c00322{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mc_c00322{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m83_c00322{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m59_c00322{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.me3_c00322{transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);}
.mcb_c00322{transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);}
.m1e_c00322{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m9d_c00322{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m7f_c00322{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m8c_c00322{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m1b_c00322{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m1_c00322{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mc7_c00322{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.m1a_c00322{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m90_c00322{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m76_c00322{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m3_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);}
.mb8_c00322{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m87_c00322{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m46_c00322{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mc3_c00322{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m6_c00322{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mad_c00322{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m32_c00322{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.me2_c00322{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.md1_c00322{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.mf_c00322{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.md3_c00322{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m64_c00322{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m13_c00322{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m2c_c00322{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m9b_c00322{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m73_c00322{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m3f_c00322{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mce_c00322{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m7a_c00322{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.mc2_c00322{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m88_c00322{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mbe_c00322{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.me5_c00322{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.ma6_c00322{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m20_c00322{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m6b_c00322{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m99_c00322{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m18_c00322{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m4d_c00322{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m5f_c00322{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.mb_c00322{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m44_c00322{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m62_c00322{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m39_c00322{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m68_c00322{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m38_c00322{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m72_c00322{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m71_c00322{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.md7_c00322{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m7b_c00322{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m8f_c00322{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.mdf_c00322{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m2f_c00322{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m25_c00322{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m8d_c00322{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m6a_c00322{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m56_c00322{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m4b_c00322{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m7c_c00322{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m9a_c00322{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mda_c00322{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m77_c00322{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m98_c00322{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mdb_c00322{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mbf_c00322{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m67_c00322{transform:matrix(0.552905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552905,0.000000,0.000000,0.250000,0,0);}
.m7e_c00322{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m2a_c00322{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m50_c00322{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m89_c00322{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m63_c00322{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m37_c00322{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mb2_c00322{transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);}
.m17_c00322{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);}
.m1d_c00322{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m70_c00322{transform:matrix(0.562152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562152,0.000000,0.000000,0.250000,0,0);}
.m5_c00322{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mbb_c00322{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m92_c00322{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mb7_c00322{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.ma_c00322{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m9e_c00322{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m49_c00322{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m5e_c00322{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.me0_c00322{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.m21_c00322{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m65_c00322{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m24_c00322{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m8_c00322{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.m2_c00322{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m5b_c00322{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mcc_c00322{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m15_c00322{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m45_c00322{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mae_c00322{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.md0_c00322{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);}
.ma9_c00322{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m2d_c00322{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m81_c00322{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m23_c00322{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m80_c00322{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.md_c00322{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m30_c00322{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mb6_c00322{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m5c_c00322{transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);}
.m97_c00322{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m95_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);}
.m10_c00322{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m3b_c00322{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m82_c00322{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.m55_c00322{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.ma8_c00322{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.mdd_c00322{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m91_c00322{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m33_c00322{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m0_c00322{transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);}
.m57_c00322{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m74_c00322{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m35_c00322{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.m22_c00322{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m1f_c00322{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m4_c00322{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m1c_c00322{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.mb1_c00322{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m29_c00322{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m3e_c00322{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mb4_c00322{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m54_c00322{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m7d_c00322{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m47_c00322{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.ma0_c00322{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mab_c00322{transform:matrix(0.875735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875735,0.000000,0.000000,0.250000,0,0);}
.m53_c00322{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.m40_c00322{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.v0_c00322{vertical-align:0.000000px;}
.ls0_c00322{letter-spacing:0.000000px;}
.sc__c00322{text-shadow:none;}
.sc0_c00322{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00322{-webkit-text-stroke:0px transparent;}
.sc0_c00322{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00322{word-spacing:-3.233492px;}
.ws1_c00322{word-spacing:0.000000px;}
.fc0_c00322{color:transparent;}
.fs5_c00322{font-size:3.420000px;}
.fs0_c00322{font-size:18.720000px;}
.fs6_c00322{font-size:20.400000px;}
.fs2_c00322{font-size:25.500000px;}
.fs1_c00322{font-size:28.920000px;}
.fs4_c00322{font-size:32.340000px;}
.fs3_c00322{font-size:35.700000px;}
.fs7_c00322{font-size:39.120000px;}
.y0_c00322{bottom:0.000000px;}
.yd1_c00322{bottom:250.905000px;}
.ycf_c00322{bottom:251.745000px;}
.yd0_c00322{bottom:253.905000px;}
.yd2_c00322{bottom:254.130000px;}
.yce_c00322{bottom:254.970000px;}
.ycd_c00322{bottom:271.245000px;}
.ycc_c00322{bottom:273.405000px;}
.ycb_c00322{bottom:273.630000px;}
.yca_c00322{bottom:290.745000px;}
.yc7_c00322{bottom:292.245000px;}
.yc9_c00322{bottom:292.470000px;}
.yc4_c00322{bottom:292.905000px;}
.yc8_c00322{bottom:293.130000px;}
.yc6_c00322{bottom:293.970000px;}
.yc5_c00322{bottom:294.405000px;}
.yc3_c00322{bottom:311.745000px;}
.yc2_c00322{bottom:328.905000px;}
.yc1_c00322{bottom:329.970000px;}
.ybc_c00322{bottom:330.405000px;}
.ybb_c00322{bottom:331.245000px;}
.ybe_c00322{bottom:331.470000px;}
.yc0_c00322{bottom:332.970000px;}
.ybf_c00322{bottom:333.405000px;}
.ybd_c00322{bottom:334.470000px;}
.yb9_c00322{bottom:348.825000px;}
.yba_c00322{bottom:349.470000px;}
.yb8_c00322{bottom:349.680000px;}
.yb5_c00322{bottom:350.745000px;}
.yb6_c00322{bottom:350.970000px;}
.yb7_c00322{bottom:352.905000px;}
.yb0_c00322{bottom:370.245000px;}
.yb2_c00322{bottom:371.325000px;}
.yae_c00322{bottom:371.745000px;}
.yb4_c00322{bottom:371.970000px;}
.yb1_c00322{bottom:372.405000px;}
.yb3_c00322{bottom:372.630000px;}
.yaf_c00322{bottom:373.905000px;}
.yaa_c00322{bottom:389.745000px;}
.yab_c00322{bottom:389.970000px;}
.yac_c00322{bottom:391.245000px;}
.yad_c00322{bottom:391.905000px;}
.ya8_c00322{bottom:392.970000px;}
.ya9_c00322{bottom:393.405000px;}
.ya6_c00322{bottom:409.245000px;}
.ya5_c00322{bottom:410.325000px;}
.ya2_c00322{bottom:410.745000px;}
.ya4_c00322{bottom:410.970000px;}
.ya7_c00322{bottom:411.405000px;}
.ya3_c00322{bottom:412.905000px;}
.ya1_c00322{bottom:430.245000px;}
.ya0_c00322{bottom:432.405000px;}
.y9f_c00322{bottom:448.245000px;}
.y9c_c00322{bottom:449.745000px;}
.y9d_c00322{bottom:450.630000px;}
.y9e_c00322{bottom:451.470000px;}
.y9b_c00322{bottom:451.905000px;}
.y97_c00322{bottom:469.245000px;}
.y9a_c00322{bottom:470.325000px;}
.y98_c00322{bottom:470.970000px;}
.y99_c00322{bottom:471.405000px;}
.y96_c00322{bottom:488.745000px;}
.y94_c00322{bottom:490.245000px;}
.y95_c00322{bottom:490.905000px;}
.y8f_c00322{bottom:507.405000px;}
.y8d_c00322{bottom:508.245000px;}
.y92_c00322{bottom:509.130000px;}
.y90_c00322{bottom:509.325000px;}
.y93_c00322{bottom:509.550000px;}
.y8b_c00322{bottom:509.745000px;}
.y8c_c00322{bottom:510.405000px;}
.y8e_c00322{bottom:510.630000px;}
.y91_c00322{bottom:511.470000px;}
.y88_c00322{bottom:526.905000px;}
.y8a_c00322{bottom:527.745000px;}
.y87_c00322{bottom:528.405000px;}
.y84_c00322{bottom:529.245000px;}
.y89_c00322{bottom:529.905000px;}
.y85_c00322{bottom:530.970000px;}
.y86_c00322{bottom:531.405000px;}
.y81_c00322{bottom:548.745000px;}
.y83_c00322{bottom:549.630000px;}
.y82_c00322{bottom:550.470000px;}
.y80_c00322{bottom:550.905000px;}
.y7e_c00322{bottom:565.905000px;}
.y7f_c00322{bottom:568.050000px;}
.y7a_c00322{bottom:568.245000px;}
.y7d_c00322{bottom:569.550000px;}
.y7c_c00322{bottom:569.970000px;}
.y7b_c00322{bottom:570.405000px;}
.y78_c00322{bottom:588.630000px;}
.y79_c00322{bottom:589.470000px;}
.y77_c00322{bottom:589.905000px;}
.y76_c00322{bottom:590.970000px;}
.y72_c00322{bottom:607.245000px;}
.y75_c00322{bottom:607.470000px;}
.y74_c00322{bottom:609.405000px;}
.y73_c00322{bottom:610.470000px;}
.y70_c00322{bottom:626.745000px;}
.y6f_c00322{bottom:627.825000px;}
.y6c_c00322{bottom:628.245000px;}
.y6e_c00322{bottom:628.905000px;}
.y6d_c00322{bottom:629.130000px;}
.y71_c00322{bottom:629.970000px;}
.y67_c00322{bottom:645.405000px;}
.y6b_c00322{bottom:646.470000px;}
.y65_c00322{bottom:647.745000px;}
.y69_c00322{bottom:648.630000px;}
.y6a_c00322{bottom:648.825000px;}
.y68_c00322{bottom:649.470000px;}
.y66_c00322{bottom:649.905000px;}
.y63_c00322{bottom:667.245000px;}
.y62_c00322{bottom:668.325000px;}
.y64_c00322{bottom:668.970000px;}
.y61_c00322{bottom:669.405000px;}
.y5d_c00322{bottom:685.470000px;}
.y5b_c00322{bottom:686.745000px;}
.y5f_c00322{bottom:687.405000px;}
.y60_c00322{bottom:687.630000px;}
.y5e_c00322{bottom:688.470000px;}
.y5c_c00322{bottom:688.905000px;}
.y59_c00322{bottom:706.245000px;}
.y5a_c00322{bottom:707.130000px;}
.y57_c00322{bottom:707.970000px;}
.y58_c00322{bottom:708.405000px;}
.y56_c00322{bottom:724.905000px;}
.y55_c00322{bottom:725.325000px;}
.y54_c00322{bottom:725.745000px;}
.y53_c00322{bottom:727.470000px;}
.y52_c00322{bottom:727.905000px;}
.y4f_c00322{bottom:744.405000px;}
.y4e_c00322{bottom:745.245000px;}
.y51_c00322{bottom:747.405000px;}
.y50_c00322{bottom:747.630000px;}
.y4d_c00322{bottom:763.470000px;}
.y4c_c00322{bottom:764.745000px;}
.y4b_c00322{bottom:765.630000px;}
.y4a_c00322{bottom:766.905000px;}
.y45_c00322{bottom:783.405000px;}
.y48_c00322{bottom:785.325000px;}
.y47_c00322{bottom:785.745000px;}
.y44_c00322{bottom:786.405000px;}
.y46_c00322{bottom:786.630000px;}
.y49_c00322{bottom:787.470000px;}
.y43_c00322{bottom:803.745000px;}
.y40_c00322{bottom:804.825000px;}
.y42_c00322{bottom:805.905000px;}
.y41_c00322{bottom:806.325000px;}
.y3f_c00322{bottom:807.405000px;}
.y3c_c00322{bottom:824.745000px;}
.y3e_c00322{bottom:825.825000px;}
.y3b_c00322{bottom:826.470000px;}
.y3d_c00322{bottom:826.905000px;}
.y3a_c00322{bottom:844.245000px;}
.y39_c00322{bottom:845.130000px;}
.y38_c00322{bottom:846.405000px;}
.y34_c00322{bottom:863.745000px;}
.y37_c00322{bottom:864.630000px;}
.y35_c00322{bottom:865.905000px;}
.y36_c00322{bottom:866.970000px;}
.y32_c00322{bottom:882.405000px;}
.y31_c00322{bottom:883.245000px;}
.y30_c00322{bottom:884.970000px;}
.y2f_c00322{bottom:885.405000px;}
.y2e_c00322{bottom:885.630000px;}
.y33_c00322{bottom:886.470000px;}
.y29_c00322{bottom:902.745000px;}
.y2d_c00322{bottom:903.825000px;}
.y2a_c00322{bottom:904.470000px;}
.y28_c00322{bottom:904.905000px;}
.y2c_c00322{bottom:905.130000px;}
.y2b_c00322{bottom:905.970000px;}
.y25_c00322{bottom:922.245000px;}
.y27_c00322{bottom:923.325000px;}
.y23_c00322{bottom:924.405000px;}
.y26_c00322{bottom:924.630000px;}
.y24_c00322{bottom:925.920000px;}
.y21_c00322{bottom:944.130000px;}
.y22_c00322{bottom:945.405000px;}
.y1f_c00322{bottom:961.245000px;}
.y20_c00322{bottom:962.745000px;}
.y1d_c00322{bottom:963.405000px;}
.y1e_c00322{bottom:963.630000px;}
.y1c_c00322{bottom:964.470000px;}
.y1b_c00322{bottom:964.905000px;}
.y17_c00322{bottom:982.245000px;}
.y19_c00322{bottom:983.130000px;}
.y1a_c00322{bottom:983.325000px;}
.y18_c00322{bottom:983.970000px;}
.y16_c00322{bottom:984.405000px;}
.y12_c00322{bottom:1001.745000px;}
.y14_c00322{bottom:1002.630000px;}
.y15_c00322{bottom:1003.470000px;}
.y13_c00322{bottom:1003.905000px;}
.yf_c00322{bottom:1020.405000px;}
.y11_c00322{bottom:1021.245000px;}
.ye_c00322{bottom:1023.405000px;}
.y10_c00322{bottom:1023.630000px;}
.yd_c00322{bottom:1024.470000px;}
.yb_c00322{bottom:1039.905000px;}
.y8_c00322{bottom:1040.745000px;}
.yc_c00322{bottom:1040.970000px;}
.y9_c00322{bottom:1041.825000px;}
.ya_c00322{bottom:1042.905000px;}
.y7_c00322{bottom:1043.970000px;}
.y6_c00322{bottom:1060.245000px;}
.y5_c00322{bottom:1061.130000px;}
.y3_c00322{bottom:1061.970000px;}
.y4_c00322{bottom:1062.405000px;}
.y2_c00322{bottom:1098.405000px;}
.y1_c00322{bottom:1101.630000px;}
.h6_c00322{height:4.206533px;}
.h1_c00322{height:23.025234px;}
.h7_c00322{height:25.091602px;}
.h3_c00322{height:31.364502px;}
.h2_c00322{height:35.571035px;}
.h5_c00322{height:39.777568px;}
.h4_c00322{height:43.910303px;}
.h8_c00322{height:48.116836px;}
.h0_c00322{height:1335.000000px;}
.w0_c00322{width:880.500000px;}
.x0_c00322{left:0.000000px;}
.x3_c00322{left:151.500000px;}
.x57_c00322{left:153.000000px;}
.x27_c00322{left:154.275000px;}
.xee_c00322{left:166.920000px;}
.x1c_c00322{left:168.000000px;}
.xaa_c00322{left:169.080000px;}
.x77_c00322{left:171.645000px;}
.x64_c00322{left:175.500000px;}
.x40_c00322{left:178.080000px;}
.x49_c00322{left:180.000000px;}
.xfe_c00322{left:181.500000px;}
.x11_c00322{left:183.000000px;}
.x10e_c00322{left:184.500000px;}
.xcd_c00322{left:186.000000px;}
.x58_c00322{left:187.920000px;}
.x1d_c00322{left:189.000000px;}
.xfa_c00322{left:190.080000px;}
.x94_c00322{left:191.580000px;}
.xb6_c00322{left:193.500000px;}
.x37_c00322{left:195.000000px;}
.x4a_c00322{left:196.500000px;}
.xda_c00322{left:198.420000px;}
.xce_c00322{left:200.580000px;}
.xc0_c00322{left:204.000000px;}
.x109_c00322{left:205.500000px;}
.x28_c00322{left:206.580000px;}
.x8a_c00322{left:208.920000px;}
.x65_c00322{left:211.080000px;}
.x59_c00322{left:213.000000px;}
.xa3_c00322{left:214.920000px;}
.xd2_c00322{left:216.000000px;}
.xab_c00322{left:217.500000px;}
.xe2_c00322{left:219.000000px;}
.xff_c00322{left:220.920000px;}
.x38_c00322{left:223.500000px;}
.xb7_c00322{left:224.580000px;}
.x12_c00322{left:226.500000px;}
.x66_c00322{left:227.580000px;}
.xcf_c00322{left:229.500000px;}
.x1e_c00322{left:232.500000px;}
.x78_c00322{left:234.000000px;}
.x10f_c00322{left:235.920000px;}
.x30_c00322{left:237.000000px;}
.x29_c00322{left:238.920000px;}
.x82_c00322{left:240.000000px;}
.xa4_c00322{left:241.500000px;}
.x8b_c00322{left:243.420000px;}
.xdb_c00322{left:245.580000px;}
.x100_c00322{left:249.420000px;}
.xc1_c00322{left:250.500000px;}
.x4_c00322{left:254.580000px;}
.x5a_c00322{left:256.500000px;}
.x9c_c00322{left:257.580000px;}
.x41_c00322{left:258.645000px;}
.xd0_c00322{left:260.580000px;}
.x13_c00322{left:262.500000px;}
.x4b_c00322{left:264.000000px;}
.xb8_c00322{left:265.920000px;}
.xd3_c00322{left:267.000000px;}
.x8c_c00322{left:270.420000px;}
.x5_c00322{left:271.500000px;}
.x10a_c00322{left:273.000000px;}
.x5b_c00322{left:274.080000px;}
.xf2_c00322{left:276.420000px;}
.x9d_c00322{left:277.920000px;}
.x39_c00322{left:279.000000px;}
.x31_c00322{left:280.500000px;}
.x83_c00322{left:282.000000px;}
.x4c_c00322{left:283.080000px;}
.x95_c00322{left:286.920000px;}
.xac_c00322{left:288.420000px;}
.x2a_c00322{left:289.920000px;}
.x6_c00322{left:292.080000px;}
.x14_c00322{left:294.855000px;}
.x4d_c00322{left:303.000000px;}
.x9e_c00322{left:304.500000px;}
.x3a_c00322{left:306.000000px;}
.xd1_c00322{left:307.500000px;}
.xd4_c00322{left:310.920000px;}
.xa5_c00322{left:312.000000px;}
.xc2_c00322{left:313.500000px;}
.xad_c00322{left:315.000000px;}
.x4e_c00322{left:316.920000px;}
.x79_c00322{left:318.000000px;}
.xec_c00322{left:319.080000px;}
.x101_c00322{left:321.000000px;}
.x42_c00322{left:322.080000px;}
.xe7_c00322{left:324.000000px;}
.xf4_c00322{left:325.500000px;}
.x15_c00322{left:328.500000px;}
.xc3_c00322{left:331.500000px;}
.x7_c00322{left:333.420000px;}
.x7a_c00322{left:334.500000px;}
.x5c_c00322{left:336.000000px;}
.x97_c00322{left:337.920000px;}
.xf3_c00322{left:340.920000px;}
.x3b_c00322{left:342.000000px;}
.x67_c00322{left:351.000000px;}
.xef_c00322{left:352.500000px;}
.x2b_c00322{left:354.645000px;}
.xe3_c00322{left:357.420000px;}
.xb9_c00322{left:360.000000px;}
.xae_c00322{left:361.500000px;}
.x8d_c00322{left:363.000000px;}
.x16_c00322{left:364.500000px;}
.x43_c00322{left:367.500000px;}
.xe8_c00322{left:370.500000px;}
.x106_c00322{left:373.080000px;}
.xb5_c00322{left:375.000000px;}
.x10b_c00322{left:376.920000px;}
.xdc_c00322{left:378.000000px;}
.x5d_c00322{left:379.500000px;}
.x110_c00322{left:381.000000px;}
.x8_c00322{left:382.080000px;}
.xe4_c00322{left:384.420000px;}
.x68_c00322{left:385.920000px;}
.x7b_c00322{left:387.000000px;}
.x70_c00322{left:388.920000px;}
.xaf_c00322{left:391.500000px;}
.x96_c00322{left:393.420000px;}
.x44_c00322{left:394.500000px;}
.x5e_c00322{left:396.420000px;}
.xdd_c00322{left:397.500000px;}
.xba_c00322{left:399.000000px;}
.x1_c00322{left:402.000000px;}
.xc7_c00322{left:403.080000px;}
.x10c_c00322{left:405.000000px;}
.xd5_c00322{left:407.580000px;}
.x84_c00322{left:411.000000px;}
.x8e_c00322{left:412.500000px;}
.x9_c00322{left:413.580000px;}
.xbb_c00322{left:417.000000px;}
.xea_c00322{left:418.080000px;}
.x4f_c00322{left:419.580000px;}
.x71_c00322{left:421.500000px;}
.x9f_c00322{left:423.000000px;}
.x5f_c00322{left:427.500000px;}
.x17_c00322{left:428.580000px;}
.x32_c00322{left:432.000000px;}
.xe5_c00322{left:433.080000px;}
.xd6_c00322{left:435.000000px;}
.x1f_c00322{left:436.500000px;}
.x72_c00322{left:438.000000px;}
.x3c_c00322{left:443.580000px;}
.x69_c00322{left:445.500000px;}
.xde_c00322{left:448.080000px;}
.x50_c00322{left:450.855000px;}
.x73_c00322{left:453.000000px;}
.xd7_c00322{left:454.080000px;}
.x111_c00322{left:455.580000px;}
.x18_c00322{left:458.580000px;}
.x98_c00322{left:460.275000px;}
.x20_c00322{left:462.000000px;}
.x74_c00322{left:465.420000px;}
.x45_c00322{left:466.920000px;}
.x2c_c00322{left:469.080000px;}
.xc8_c00322{left:471.000000px;}
.x112_c00322{left:472.920000px;}
.x3d_c00322{left:474.000000px;}
.xa_c00322{left:475.920000px;}
.xc4_c00322{left:480.000000px;}
.x8f_c00322{left:481.500000px;}
.xc9_c00322{left:484.080000px;}
.x19_c00322{left:486.000000px;}
.xe6_c00322{left:488.580000px;}
.x7c_c00322{left:490.080000px;}
.xb0_c00322{left:492.420000px;}
.x51_c00322{left:493.500000px;}
.xc5_c00322{left:496.500000px;}
.x6a_c00322{left:498.000000px;}
.xd8_c00322{left:499.500000px;}
.x2d_c00322{left:500.775000px;}
.xbc_c00322{left:502.500000px;}
.x60_c00322{left:503.580000px;}
.x85_c00322{left:505.080000px;}
.x21_c00322{left:506.580000px;}
.xf7_c00322{left:509.580000px;}
.x6b_c00322{left:513.000000px;}
.x33_c00322{left:515.580000px;}
.xc6_c00322{left:517.500000px;}
.xb1_c00322{left:519.420000px;}
.xdf_c00322{left:520.500000px;}
.xa0_c00322{left:522.000000px;}
.xfb_c00322{left:523.500000px;}
.x22_c00322{left:525.420000px;}
.x6c_c00322{left:526.920000px;}
.x46_c00322{left:529.500000px;}
.xb_c00322{left:530.580000px;}
.x90_c00322{left:533.580000px;}
.xe0_c00322{left:535.920000px;}
.x99_c00322{left:538.920000px;}
.xf5_c00322{left:540.000000px;}
.x1a_c00322{left:541.920000px;}
.xbd_c00322{left:544.080000px;}
.xc_c00322{left:547.500000px;}
.x7d_c00322{left:549.000000px;}
.x61_c00322{left:550.500000px;}
.x23_c00322{left:552.000000px;}
.xb2_c00322{left:553.500000px;}
.xf8_c00322{left:555.000000px;}
.x52_c00322{left:556.080000px;}
.x34_c00322{left:559.500000px;}
.x102_c00322{left:560.580000px;}
.x6d_c00322{left:564.000000px;}
.x9a_c00322{left:565.920000px;}
.x7e_c00322{left:568.080000px;}
.x86_c00322{left:570.000000px;}
.x2e_c00322{left:571.080000px;}
.xa6_c00322{left:573.000000px;}
.x1b_c00322{left:579.420000px;}
.xed_c00322{left:583.080000px;}
.xe1_c00322{left:584.580000px;}
.x53_c00322{left:586.500000px;}
.x87_c00322{left:589.500000px;}
.x24_c00322{left:591.420000px;}
.xd_c00322{left:592.500000px;}
.x75_c00322{left:594.000000px;}
.x91_c00322{left:595.500000px;}
.xb3_c00322{left:597.000000px;}
.x62_c00322{left:598.500000px;}
.xca_c00322{left:601.080000px;}
.xf6_c00322{left:603.000000px;}
.x10d_c00322{left:604.500000px;}
.xe9_c00322{left:606.000000px;}
.xe_c00322{left:607.500000px;}
.x103_c00322{left:609.000000px;}
.x7f_c00322{left:610.500000px;}
.x76_c00322{left:612.000000px;}
.xbe_c00322{left:615.420000px;}
.xfc_c00322{left:619.080000px;}
.x2f_c00322{left:621.000000px;}
.x92_c00322{left:622.080000px;}
.xa1_c00322{left:624.420000px;}
.xeb_c00322{left:625.500000px;}
.xa7_c00322{left:627.000000px;}
.x25_c00322{left:628.080000px;}
.xcb_c00322{left:630.000000px;}
.x6e_c00322{left:631.080000px;}
.x54_c00322{left:633.000000px;}
.xf_c00322{left:634.080000px;}
.xf0_c00322{left:637.500000px;}
.x35_c00322{left:640.275000px;}
.x113_c00322{left:642.000000px;}
.xa8_c00322{left:643.080000px;}
.x104_c00322{left:646.500000px;}
.x107_c00322{left:647.580000px;}
.x80_c00322{left:651.000000px;}
.x3e_c00322{left:653.580000px;}
.x88_c00322{left:655.500000px;}
.x63_c00322{left:660.000000px;}
.x6f_c00322{left:661.080000px;}
.xcc_c00322{left:664.500000px;}
.xa2_c00322{left:668.580000px;}
.x47_c00322{left:672.000000px;}
.xd9_c00322{left:673.080000px;}
.xa9_c00322{left:674.580000px;}
.xf1_c00322{left:679.500000px;}
.x89_c00322{left:681.000000px;}
.x55_c00322{left:682.500000px;}
.x108_c00322{left:683.580000px;}
.x3f_c00322{left:685.275000px;}
.xf9_c00322{left:689.580000px;}
.x36_c00322{left:691.500000px;}
.x48_c00322{left:693.000000px;}
.x10_c00322{left:696.000000px;}
.x56_c00322{left:697.500000px;}
.x105_c00322{left:698.580000px;}
.x26_c00322{left:701.580000px;}
.x2_c00322{left:703.080000px;}
.x9b_c00322{left:709.920000px;}
.x93_c00322{left:711.000000px;}
.xbf_c00322{left:714.000000px;}
.x81_c00322{left:717.000000px;}
.xfd_c00322{left:720.000000px;}
.xb4_c00322{left:721.500000px;}
@media print{
.v0_c00322{vertical-align:0.000000pt;}
.ls0_c00322{letter-spacing:0.000000pt;}
.ws0_c00322{word-spacing:-2.874215pt;}
.ws1_c00322{word-spacing:0.000000pt;}
.fs5_c00322{font-size:3.040000pt;}
.fs0_c00322{font-size:16.640000pt;}
.fs6_c00322{font-size:18.133333pt;}
.fs2_c00322{font-size:22.666667pt;}
.fs1_c00322{font-size:25.706667pt;}
.fs4_c00322{font-size:28.746667pt;}
.fs3_c00322{font-size:31.733333pt;}
.fs7_c00322{font-size:34.773333pt;}
.y0_c00322{bottom:0.000000pt;}
.yd1_c00322{bottom:223.026667pt;}
.ycf_c00322{bottom:223.773333pt;}
.yd0_c00322{bottom:225.693333pt;}
.yd2_c00322{bottom:225.893333pt;}
.yce_c00322{bottom:226.640000pt;}
.ycd_c00322{bottom:241.106667pt;}
.ycc_c00322{bottom:243.026667pt;}
.ycb_c00322{bottom:243.226667pt;}
.yca_c00322{bottom:258.440000pt;}
.yc7_c00322{bottom:259.773333pt;}
.yc9_c00322{bottom:259.973333pt;}
.yc4_c00322{bottom:260.360000pt;}
.yc8_c00322{bottom:260.560000pt;}
.yc6_c00322{bottom:261.306667pt;}
.yc5_c00322{bottom:261.693333pt;}
.yc3_c00322{bottom:277.106667pt;}
.yc2_c00322{bottom:292.360000pt;}
.yc1_c00322{bottom:293.306667pt;}
.ybc_c00322{bottom:293.693333pt;}
.ybb_c00322{bottom:294.440000pt;}
.ybe_c00322{bottom:294.640000pt;}
.yc0_c00322{bottom:295.973333pt;}
.ybf_c00322{bottom:296.360000pt;}
.ybd_c00322{bottom:297.306667pt;}
.yb9_c00322{bottom:310.066667pt;}
.yba_c00322{bottom:310.640000pt;}
.yb8_c00322{bottom:310.826667pt;}
.yb5_c00322{bottom:311.773333pt;}
.yb6_c00322{bottom:311.973333pt;}
.yb7_c00322{bottom:313.693333pt;}
.yb0_c00322{bottom:329.106667pt;}
.yb2_c00322{bottom:330.066667pt;}
.yae_c00322{bottom:330.440000pt;}
.yb4_c00322{bottom:330.640000pt;}
.yb1_c00322{bottom:331.026667pt;}
.yb3_c00322{bottom:331.226667pt;}
.yaf_c00322{bottom:332.360000pt;}
.yaa_c00322{bottom:346.440000pt;}
.yab_c00322{bottom:346.640000pt;}
.yac_c00322{bottom:347.773333pt;}
.yad_c00322{bottom:348.360000pt;}
.ya8_c00322{bottom:349.306667pt;}
.ya9_c00322{bottom:349.693333pt;}
.ya6_c00322{bottom:363.773333pt;}
.ya5_c00322{bottom:364.733333pt;}
.ya2_c00322{bottom:365.106667pt;}
.ya4_c00322{bottom:365.306667pt;}
.ya7_c00322{bottom:365.693333pt;}
.ya3_c00322{bottom:367.026667pt;}
.ya1_c00322{bottom:382.440000pt;}
.ya0_c00322{bottom:384.360000pt;}
.y9f_c00322{bottom:398.440000pt;}
.y9c_c00322{bottom:399.773333pt;}
.y9d_c00322{bottom:400.560000pt;}
.y9e_c00322{bottom:401.306667pt;}
.y9b_c00322{bottom:401.693333pt;}
.y97_c00322{bottom:417.106667pt;}
.y9a_c00322{bottom:418.066667pt;}
.y98_c00322{bottom:418.640000pt;}
.y99_c00322{bottom:419.026667pt;}
.y96_c00322{bottom:434.440000pt;}
.y94_c00322{bottom:435.773333pt;}
.y95_c00322{bottom:436.360000pt;}
.y8f_c00322{bottom:451.026667pt;}
.y8d_c00322{bottom:451.773333pt;}
.y92_c00322{bottom:452.560000pt;}
.y90_c00322{bottom:452.733333pt;}
.y93_c00322{bottom:452.933333pt;}
.y8b_c00322{bottom:453.106667pt;}
.y8c_c00322{bottom:453.693333pt;}
.y8e_c00322{bottom:453.893333pt;}
.y91_c00322{bottom:454.640000pt;}
.y88_c00322{bottom:468.360000pt;}
.y8a_c00322{bottom:469.106667pt;}
.y87_c00322{bottom:469.693333pt;}
.y84_c00322{bottom:470.440000pt;}
.y89_c00322{bottom:471.026667pt;}
.y85_c00322{bottom:471.973333pt;}
.y86_c00322{bottom:472.360000pt;}
.y81_c00322{bottom:487.773333pt;}
.y83_c00322{bottom:488.560000pt;}
.y82_c00322{bottom:489.306667pt;}
.y80_c00322{bottom:489.693333pt;}
.y7e_c00322{bottom:503.026667pt;}
.y7f_c00322{bottom:504.933333pt;}
.y7a_c00322{bottom:505.106667pt;}
.y7d_c00322{bottom:506.266667pt;}
.y7c_c00322{bottom:506.640000pt;}
.y7b_c00322{bottom:507.026667pt;}
.y78_c00322{bottom:523.226667pt;}
.y79_c00322{bottom:523.973333pt;}
.y77_c00322{bottom:524.360000pt;}
.y76_c00322{bottom:525.306667pt;}
.y72_c00322{bottom:539.773333pt;}
.y75_c00322{bottom:539.973333pt;}
.y74_c00322{bottom:541.693333pt;}
.y73_c00322{bottom:542.640000pt;}
.y70_c00322{bottom:557.106667pt;}
.y6f_c00322{bottom:558.066667pt;}
.y6c_c00322{bottom:558.440000pt;}
.y6e_c00322{bottom:559.026667pt;}
.y6d_c00322{bottom:559.226667pt;}
.y71_c00322{bottom:559.973333pt;}
.y67_c00322{bottom:573.693333pt;}
.y6b_c00322{bottom:574.640000pt;}
.y65_c00322{bottom:575.773333pt;}
.y69_c00322{bottom:576.560000pt;}
.y6a_c00322{bottom:576.733333pt;}
.y68_c00322{bottom:577.306667pt;}
.y66_c00322{bottom:577.693333pt;}
.y63_c00322{bottom:593.106667pt;}
.y62_c00322{bottom:594.066667pt;}
.y64_c00322{bottom:594.640000pt;}
.y61_c00322{bottom:595.026667pt;}
.y5d_c00322{bottom:609.306667pt;}
.y5b_c00322{bottom:610.440000pt;}
.y5f_c00322{bottom:611.026667pt;}
.y60_c00322{bottom:611.226667pt;}
.y5e_c00322{bottom:611.973333pt;}
.y5c_c00322{bottom:612.360000pt;}
.y59_c00322{bottom:627.773333pt;}
.y5a_c00322{bottom:628.560000pt;}
.y57_c00322{bottom:629.306667pt;}
.y58_c00322{bottom:629.693333pt;}
.y56_c00322{bottom:644.360000pt;}
.y55_c00322{bottom:644.733333pt;}
.y54_c00322{bottom:645.106667pt;}
.y53_c00322{bottom:646.640000pt;}
.y52_c00322{bottom:647.026667pt;}
.y4f_c00322{bottom:661.693333pt;}
.y4e_c00322{bottom:662.440000pt;}
.y51_c00322{bottom:664.360000pt;}
.y50_c00322{bottom:664.560000pt;}
.y4d_c00322{bottom:678.640000pt;}
.y4c_c00322{bottom:679.773333pt;}
.y4b_c00322{bottom:680.560000pt;}
.y4a_c00322{bottom:681.693333pt;}
.y45_c00322{bottom:696.360000pt;}
.y48_c00322{bottom:698.066667pt;}
.y47_c00322{bottom:698.440000pt;}
.y44_c00322{bottom:699.026667pt;}
.y46_c00322{bottom:699.226667pt;}
.y49_c00322{bottom:699.973333pt;}
.y43_c00322{bottom:714.440000pt;}
.y40_c00322{bottom:715.400000pt;}
.y42_c00322{bottom:716.360000pt;}
.y41_c00322{bottom:716.733333pt;}
.y3f_c00322{bottom:717.693333pt;}
.y3c_c00322{bottom:733.106667pt;}
.y3e_c00322{bottom:734.066667pt;}
.y3b_c00322{bottom:734.640000pt;}
.y3d_c00322{bottom:735.026667pt;}
.y3a_c00322{bottom:750.440000pt;}
.y39_c00322{bottom:751.226667pt;}
.y38_c00322{bottom:752.360000pt;}
.y34_c00322{bottom:767.773333pt;}
.y37_c00322{bottom:768.560000pt;}
.y35_c00322{bottom:769.693333pt;}
.y36_c00322{bottom:770.640000pt;}
.y32_c00322{bottom:784.360000pt;}
.y31_c00322{bottom:785.106667pt;}
.y30_c00322{bottom:786.640000pt;}
.y2f_c00322{bottom:787.026667pt;}
.y2e_c00322{bottom:787.226667pt;}
.y33_c00322{bottom:787.973333pt;}
.y29_c00322{bottom:802.440000pt;}
.y2d_c00322{bottom:803.400000pt;}
.y2a_c00322{bottom:803.973333pt;}
.y28_c00322{bottom:804.360000pt;}
.y2c_c00322{bottom:804.560000pt;}
.y2b_c00322{bottom:805.306667pt;}
.y25_c00322{bottom:819.773333pt;}
.y27_c00322{bottom:820.733333pt;}
.y23_c00322{bottom:821.693333pt;}
.y26_c00322{bottom:821.893333pt;}
.y24_c00322{bottom:823.040000pt;}
.y21_c00322{bottom:839.226667pt;}
.y22_c00322{bottom:840.360000pt;}
.y1f_c00322{bottom:854.440000pt;}
.y20_c00322{bottom:855.773333pt;}
.y1d_c00322{bottom:856.360000pt;}
.y1e_c00322{bottom:856.560000pt;}
.y1c_c00322{bottom:857.306667pt;}
.y1b_c00322{bottom:857.693333pt;}
.y17_c00322{bottom:873.106667pt;}
.y19_c00322{bottom:873.893333pt;}
.y1a_c00322{bottom:874.066667pt;}
.y18_c00322{bottom:874.640000pt;}
.y16_c00322{bottom:875.026667pt;}
.y12_c00322{bottom:890.440000pt;}
.y14_c00322{bottom:891.226667pt;}
.y15_c00322{bottom:891.973333pt;}
.y13_c00322{bottom:892.360000pt;}
.yf_c00322{bottom:907.026667pt;}
.y11_c00322{bottom:907.773333pt;}
.ye_c00322{bottom:909.693333pt;}
.y10_c00322{bottom:909.893333pt;}
.yd_c00322{bottom:910.640000pt;}
.yb_c00322{bottom:924.360000pt;}
.y8_c00322{bottom:925.106667pt;}
.yc_c00322{bottom:925.306667pt;}
.y9_c00322{bottom:926.066667pt;}
.ya_c00322{bottom:927.026667pt;}
.y7_c00322{bottom:927.973333pt;}
.y6_c00322{bottom:942.440000pt;}
.y5_c00322{bottom:943.226667pt;}
.y3_c00322{bottom:943.973333pt;}
.y4_c00322{bottom:944.360000pt;}
.y2_c00322{bottom:976.360000pt;}
.y1_c00322{bottom:979.226667pt;}
.h6_c00322{height:3.739141pt;}
.h1_c00322{height:20.466875pt;}
.h7_c00322{height:22.303646pt;}
.h3_c00322{height:27.879557pt;}
.h2_c00322{height:31.618698pt;}
.h5_c00322{height:35.357839pt;}
.h4_c00322{height:39.031380pt;}
.h8_c00322{height:42.770521pt;}
.h0_c00322{height:1186.666667pt;}
.w0_c00322{width:782.666667pt;}
.x0_c00322{left:0.000000pt;}
.x3_c00322{left:134.666667pt;}
.x57_c00322{left:136.000000pt;}
.x27_c00322{left:137.133333pt;}
.xee_c00322{left:148.373333pt;}
.x1c_c00322{left:149.333333pt;}
.xaa_c00322{left:150.293333pt;}
.x77_c00322{left:152.573333pt;}
.x64_c00322{left:156.000000pt;}
.x40_c00322{left:158.293333pt;}
.x49_c00322{left:160.000000pt;}
.xfe_c00322{left:161.333333pt;}
.x11_c00322{left:162.666667pt;}
.x10e_c00322{left:164.000000pt;}
.xcd_c00322{left:165.333333pt;}
.x58_c00322{left:167.040000pt;}
.x1d_c00322{left:168.000000pt;}
.xfa_c00322{left:168.960000pt;}
.x94_c00322{left:170.293333pt;}
.xb6_c00322{left:172.000000pt;}
.x37_c00322{left:173.333333pt;}
.x4a_c00322{left:174.666667pt;}
.xda_c00322{left:176.373333pt;}
.xce_c00322{left:178.293333pt;}
.xc0_c00322{left:181.333333pt;}
.x109_c00322{left:182.666667pt;}
.x28_c00322{left:183.626667pt;}
.x8a_c00322{left:185.706667pt;}
.x65_c00322{left:187.626667pt;}
.x59_c00322{left:189.333333pt;}
.xa3_c00322{left:191.040000pt;}
.xd2_c00322{left:192.000000pt;}
.xab_c00322{left:193.333333pt;}
.xe2_c00322{left:194.666667pt;}
.xff_c00322{left:196.373333pt;}
.x38_c00322{left:198.666667pt;}
.xb7_c00322{left:199.626667pt;}
.x12_c00322{left:201.333333pt;}
.x66_c00322{left:202.293333pt;}
.xcf_c00322{left:204.000000pt;}
.x1e_c00322{left:206.666667pt;}
.x78_c00322{left:208.000000pt;}
.x10f_c00322{left:209.706667pt;}
.x30_c00322{left:210.666667pt;}
.x29_c00322{left:212.373333pt;}
.x82_c00322{left:213.333333pt;}
.xa4_c00322{left:214.666667pt;}
.x8b_c00322{left:216.373333pt;}
.xdb_c00322{left:218.293333pt;}
.x100_c00322{left:221.706667pt;}
.xc1_c00322{left:222.666667pt;}
.x4_c00322{left:226.293333pt;}
.x5a_c00322{left:228.000000pt;}
.x9c_c00322{left:228.960000pt;}
.x41_c00322{left:229.906667pt;}
.xd0_c00322{left:231.626667pt;}
.x13_c00322{left:233.333333pt;}
.x4b_c00322{left:234.666667pt;}
.xb8_c00322{left:236.373333pt;}
.xd3_c00322{left:237.333333pt;}
.x8c_c00322{left:240.373333pt;}
.x5_c00322{left:241.333333pt;}
.x10a_c00322{left:242.666667pt;}
.x5b_c00322{left:243.626667pt;}
.xf2_c00322{left:245.706667pt;}
.x9d_c00322{left:247.040000pt;}
.x39_c00322{left:248.000000pt;}
.x31_c00322{left:249.333333pt;}
.x83_c00322{left:250.666667pt;}
.x4c_c00322{left:251.626667pt;}
.x95_c00322{left:255.040000pt;}
.xac_c00322{left:256.373333pt;}
.x2a_c00322{left:257.706667pt;}
.x6_c00322{left:259.626667pt;}
.x14_c00322{left:262.093333pt;}
.x4d_c00322{left:269.333333pt;}
.x9e_c00322{left:270.666667pt;}
.x3a_c00322{left:272.000000pt;}
.xd1_c00322{left:273.333333pt;}
.xd4_c00322{left:276.373333pt;}
.xa5_c00322{left:277.333333pt;}
.xc2_c00322{left:278.666667pt;}
.xad_c00322{left:280.000000pt;}
.x4e_c00322{left:281.706667pt;}
.x79_c00322{left:282.666667pt;}
.xec_c00322{left:283.626667pt;}
.x101_c00322{left:285.333333pt;}
.x42_c00322{left:286.293333pt;}
.xe7_c00322{left:288.000000pt;}
.xf4_c00322{left:289.333333pt;}
.x15_c00322{left:292.000000pt;}
.xc3_c00322{left:294.666667pt;}
.x7_c00322{left:296.373333pt;}
.x7a_c00322{left:297.333333pt;}
.x5c_c00322{left:298.666667pt;}
.x97_c00322{left:300.373333pt;}
.xf3_c00322{left:303.040000pt;}
.x3b_c00322{left:304.000000pt;}
.x67_c00322{left:312.000000pt;}
.xef_c00322{left:313.333333pt;}
.x2b_c00322{left:315.240000pt;}
.xe3_c00322{left:317.706667pt;}
.xb9_c00322{left:320.000000pt;}
.xae_c00322{left:321.333333pt;}
.x8d_c00322{left:322.666667pt;}
.x16_c00322{left:324.000000pt;}
.x43_c00322{left:326.666667pt;}
.xe8_c00322{left:329.333333pt;}
.x106_c00322{left:331.626667pt;}
.xb5_c00322{left:333.333333pt;}
.x10b_c00322{left:335.040000pt;}
.xdc_c00322{left:336.000000pt;}
.x5d_c00322{left:337.333333pt;}
.x110_c00322{left:338.666667pt;}
.x8_c00322{left:339.626667pt;}
.xe4_c00322{left:341.706667pt;}
.x68_c00322{left:343.040000pt;}
.x7b_c00322{left:344.000000pt;}
.x70_c00322{left:345.706667pt;}
.xaf_c00322{left:348.000000pt;}
.x96_c00322{left:349.706667pt;}
.x44_c00322{left:350.666667pt;}
.x5e_c00322{left:352.373333pt;}
.xdd_c00322{left:353.333333pt;}
.xba_c00322{left:354.666667pt;}
.x1_c00322{left:357.333333pt;}
.xc7_c00322{left:358.293333pt;}
.x10c_c00322{left:360.000000pt;}
.xd5_c00322{left:362.293333pt;}
.x84_c00322{left:365.333333pt;}
.x8e_c00322{left:366.666667pt;}
.x9_c00322{left:367.626667pt;}
.xbb_c00322{left:370.666667pt;}
.xea_c00322{left:371.626667pt;}
.x4f_c00322{left:372.960000pt;}
.x71_c00322{left:374.666667pt;}
.x9f_c00322{left:376.000000pt;}
.x5f_c00322{left:380.000000pt;}
.x17_c00322{left:380.960000pt;}
.x32_c00322{left:384.000000pt;}
.xe5_c00322{left:384.960000pt;}
.xd6_c00322{left:386.666667pt;}
.x1f_c00322{left:388.000000pt;}
.x72_c00322{left:389.333333pt;}
.x3c_c00322{left:394.293333pt;}
.x69_c00322{left:396.000000pt;}
.xde_c00322{left:398.293333pt;}
.x50_c00322{left:400.760000pt;}
.x73_c00322{left:402.666667pt;}
.xd7_c00322{left:403.626667pt;}
.x111_c00322{left:404.960000pt;}
.x18_c00322{left:407.626667pt;}
.x98_c00322{left:409.133333pt;}
.x20_c00322{left:410.666667pt;}
.x74_c00322{left:413.706667pt;}
.x45_c00322{left:415.040000pt;}
.x2c_c00322{left:416.960000pt;}
.xc8_c00322{left:418.666667pt;}
.x112_c00322{left:420.373333pt;}
.x3d_c00322{left:421.333333pt;}
.xa_c00322{left:423.040000pt;}
.xc4_c00322{left:426.666667pt;}
.x8f_c00322{left:428.000000pt;}
.xc9_c00322{left:430.293333pt;}
.x19_c00322{left:432.000000pt;}
.xe6_c00322{left:434.293333pt;}
.x7c_c00322{left:435.626667pt;}
.xb0_c00322{left:437.706667pt;}
.x51_c00322{left:438.666667pt;}
.xc5_c00322{left:441.333333pt;}
.x6a_c00322{left:442.666667pt;}
.xd8_c00322{left:444.000000pt;}
.x2d_c00322{left:445.133333pt;}
.xbc_c00322{left:446.666667pt;}
.x60_c00322{left:447.626667pt;}
.x85_c00322{left:448.960000pt;}
.x21_c00322{left:450.293333pt;}
.xf7_c00322{left:452.960000pt;}
.x6b_c00322{left:456.000000pt;}
.x33_c00322{left:458.293333pt;}
.xc6_c00322{left:460.000000pt;}
.xb1_c00322{left:461.706667pt;}
.xdf_c00322{left:462.666667pt;}
.xa0_c00322{left:464.000000pt;}
.xfb_c00322{left:465.333333pt;}
.x22_c00322{left:467.040000pt;}
.x6c_c00322{left:468.373333pt;}
.x46_c00322{left:470.666667pt;}
.xb_c00322{left:471.626667pt;}
.x90_c00322{left:474.293333pt;}
.xe0_c00322{left:476.373333pt;}
.x99_c00322{left:479.040000pt;}
.xf5_c00322{left:480.000000pt;}
.x1a_c00322{left:481.706667pt;}
.xbd_c00322{left:483.626667pt;}
.xc_c00322{left:486.666667pt;}
.x7d_c00322{left:488.000000pt;}
.x61_c00322{left:489.333333pt;}
.x23_c00322{left:490.666667pt;}
.xb2_c00322{left:492.000000pt;}
.xf8_c00322{left:493.333333pt;}
.x52_c00322{left:494.293333pt;}
.x34_c00322{left:497.333333pt;}
.x102_c00322{left:498.293333pt;}
.x6d_c00322{left:501.333333pt;}
.x9a_c00322{left:503.040000pt;}
.x7e_c00322{left:504.960000pt;}
.x86_c00322{left:506.666667pt;}
.x2e_c00322{left:507.626667pt;}
.xa6_c00322{left:509.333333pt;}
.x1b_c00322{left:515.040000pt;}
.xed_c00322{left:518.293333pt;}
.xe1_c00322{left:519.626667pt;}
.x53_c00322{left:521.333333pt;}
.x87_c00322{left:524.000000pt;}
.x24_c00322{left:525.706667pt;}
.xd_c00322{left:526.666667pt;}
.x75_c00322{left:528.000000pt;}
.x91_c00322{left:529.333333pt;}
.xb3_c00322{left:530.666667pt;}
.x62_c00322{left:532.000000pt;}
.xca_c00322{left:534.293333pt;}
.xf6_c00322{left:536.000000pt;}
.x10d_c00322{left:537.333333pt;}
.xe9_c00322{left:538.666667pt;}
.xe_c00322{left:540.000000pt;}
.x103_c00322{left:541.333333pt;}
.x7f_c00322{left:542.666667pt;}
.x76_c00322{left:544.000000pt;}
.xbe_c00322{left:547.040000pt;}
.xfc_c00322{left:550.293333pt;}
.x2f_c00322{left:552.000000pt;}
.x92_c00322{left:552.960000pt;}
.xa1_c00322{left:555.040000pt;}
.xeb_c00322{left:556.000000pt;}
.xa7_c00322{left:557.333333pt;}
.x25_c00322{left:558.293333pt;}
.xcb_c00322{left:560.000000pt;}
.x6e_c00322{left:560.960000pt;}
.x54_c00322{left:562.666667pt;}
.xf_c00322{left:563.626667pt;}
.xf0_c00322{left:566.666667pt;}
.x35_c00322{left:569.133333pt;}
.x113_c00322{left:570.666667pt;}
.xa8_c00322{left:571.626667pt;}
.x104_c00322{left:574.666667pt;}
.x107_c00322{left:575.626667pt;}
.x80_c00322{left:578.666667pt;}
.x3e_c00322{left:580.960000pt;}
.x88_c00322{left:582.666667pt;}
.x63_c00322{left:586.666667pt;}
.x6f_c00322{left:587.626667pt;}
.xcc_c00322{left:590.666667pt;}
.xa2_c00322{left:594.293333pt;}
.x47_c00322{left:597.333333pt;}
.xd9_c00322{left:598.293333pt;}
.xa9_c00322{left:599.626667pt;}
.xf1_c00322{left:604.000000pt;}
.x89_c00322{left:605.333333pt;}
.x55_c00322{left:606.666667pt;}
.x108_c00322{left:607.626667pt;}
.x3f_c00322{left:609.133333pt;}
.xf9_c00322{left:612.960000pt;}
.x36_c00322{left:614.666667pt;}
.x48_c00322{left:616.000000pt;}
.x10_c00322{left:618.666667pt;}
.x56_c00322{left:620.000000pt;}
.x105_c00322{left:620.960000pt;}
.x26_c00322{left:623.626667pt;}
.x2_c00322{left:624.960000pt;}
.x9b_c00322{left:631.040000pt;}
.x93_c00322{left:632.000000pt;}
.xbf_c00322{left:634.666667pt;}
.x81_c00322{left:637.333333pt;}
.xfd_c00322{left:640.000000pt;}
.xb4_c00322{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b3c95190d342701c7dccda69.woff2')format("woff");}.ff1_c00323{font-family:ff1_c00323;line-height:1.688965;font-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_c00323{transform:matrix(0.333206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333206,0.000000,0.000000,0.250000,0,0);}
.mdf_c00323{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m2e_c00323{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.md2_c00323{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.me4_c00323{transform:matrix(0.352761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352761,0.000000,0.000000,0.250000,0,0);}
.me6_c00323{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.mc8_c00323{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m98_c00323{transform:matrix(0.363497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363497,0.000000,0.000000,0.250000,0,0);}
.me9_c00323{transform:matrix(0.364264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364264,0.000000,0.000000,0.250000,0,0);}
.m5f_c00323{transform:matrix(0.366948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366948,0.000000,0.000000,0.250000,0,0);}
.m47_c00323{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m40_c00323{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.mc_c00323{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.me0_c00323{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mc3_c00323{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.m35_c00323{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.m9d_c00323{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m33_c00323{transform:matrix(0.376917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376917,0.000000,0.000000,0.250000,0,0);}
.ma5_c00323{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m9_c00323{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m50_c00323{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.ma_c00323{transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);}
.mb3_c00323{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.me7_c00323{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.md0_c00323{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m26_c00323{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m39_c00323{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.m94_c00323{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.mab_c00323{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m7a_c00323{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m30_c00323{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m5d_c00323{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m36_c00323{transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);}
.m3c_c00323{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.me2_c00323{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.md4_c00323{transform:matrix(0.402991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402991,0.000000,0.000000,0.250000,0,0);}
.m3e_c00323{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mc2_c00323{transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);}
.mce_c00323{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m44_c00323{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m74_c00323{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.mc0_c00323{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m8c_c00323{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m8e_c00323{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m88_c00323{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mb0_c00323{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.mb1_c00323{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m72_c00323{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.me5_c00323{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.m9f_c00323{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.md7_c00323{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m97_c00323{transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);}
.md3_c00323{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m5a_c00323{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m6e_c00323{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mdb_c00323{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m3b_c00323{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mbb_c00323{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mac_c00323{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.ma4_c00323{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.mb4_c00323{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m43_c00323{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m67_c00323{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mbd_c00323{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m22_c00323{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.mc4_c00323{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m6a_c00323{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m4c_c00323{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m96_c00323{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.md1_c00323{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m2f_c00323{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mc1_c00323{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m16_c00323{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.ma1_c00323{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.mdd_c00323{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m85_c00323{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mbf_c00323{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m87_c00323{transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);}
.mdc_c00323{transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);}
.m4d_c00323{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mda_c00323{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m64_c00323{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.m77_c00323{transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);}
.m1f_c00323{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m7d_c00323{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m9e_c00323{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_c00323{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.m12_c00323{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m91_c00323{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m2d_c00323{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m4b_c00323{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mb6_c00323{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m83_c00323{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m10_c00323{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.mcc_c00323{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00323{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m34_c00323{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.ma6_c00323{transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);}
.mb5_c00323{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m17_c00323{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mc9_c00323{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m3f_c00323{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.me_c00323{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m1_c00323{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m51_c00323{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m4f_c00323{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m58_c00323{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m4_c00323{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m42_c00323{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m11_c00323{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);}
.ma3_c00323{transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);}
.m71_c00323{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m45_c00323{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m59_c00323{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.ma8_c00323{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.mae_c00323{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.me1_c00323{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m69_c00323{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m2b_c00323{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m9b_c00323{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.mcd_c00323{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m7f_c00323{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mcf_c00323{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.mb2_c00323{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m61_c00323{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m82_c00323{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.mb_c00323{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m52_c00323{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m1b_c00323{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m99_c00323{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m75_c00323{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m55_c00323{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m5_c00323{transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);}
.mcb_c00323{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mbc_c00323{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m84_c00323{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m66_c00323{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m86_c00323{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m78_c00323{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m79_c00323{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m3d_c00323{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mde_c00323{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m6c_c00323{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m57_c00323{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mf_c00323{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m4e_c00323{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m92_c00323{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m28_c00323{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m8_c00323{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m73_c00323{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m4a_c00323{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m6_c00323{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m41_c00323{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m95_c00323{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m2c_c00323{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m93_c00323{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m8a_c00323{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m76_c00323{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.md_c00323{transform:matrix(0.542353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542353,0.000000,0.000000,0.250000,0,0);}
.m68_c00323{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m65_c00323{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mb7_c00323{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.md6_c00323{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m3_c00323{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.maa_c00323{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m8f_c00323{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m9c_c00323{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.me8_c00323{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m1d_c00323{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.md5_c00323{transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);}
.mb9_c00323{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m90_c00323{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mbe_c00323{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m13_c00323{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m2a_c00323{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m5b_c00323{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m70_c00323{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m15_c00323{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m7_c00323{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.me3_c00323{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m38_c00323{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);}
.m8b_c00323{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.ma7_c00323{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m7c_c00323{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mc6_c00323{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m48_c00323{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.ma2_c00323{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m29_c00323{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m62_c00323{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.md9_c00323{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m9a_c00323{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m20_c00323{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m6f_c00323{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mc5_c00323{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.mb8_c00323{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m32_c00323{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m54_c00323{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m53_c00323{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m46_c00323{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m8d_c00323{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.mc7_c00323{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m24_c00323{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m23_c00323{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.ma9_c00323{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m80_c00323{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.m25_c00323{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m0_c00323{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m18_c00323{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m27_c00323{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m56_c00323{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.ma0_c00323{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m63_c00323{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.mca_c00323{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m49_c00323{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m1a_c00323{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m3a_c00323{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m21_c00323{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m19_c00323{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.mba_c00323{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.maf_c00323{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.m14_c00323{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m2_c00323{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m1e_c00323{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m7b_c00323{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m89_c00323{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m1c_c00323{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m6d_c00323{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mad_c00323{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m37_c00323{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m31_c00323{transform:matrix(0.800588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800588,0.000000,0.000000,0.250000,0,0);}
.m6b_c00323{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.md8_c00323{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m81_c00323{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m60_c00323{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,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:-7.489932px;}
.ws1_c00323{word-spacing:0.000000px;}
.fc0_c00323{color:transparent;}
.fs2_c00323{font-size:18.720000px;}
.fs0_c00323{font-size:20.400000px;}
.fs4_c00323{font-size:25.500000px;}
.fs1_c00323{font-size:28.920000px;}
.fs5_c00323{font-size:32.340000px;}
.fs3_c00323{font-size:35.700000px;}
.fs6_c00323{font-size:39.120000px;}
.y0_c00323{bottom:0.000000px;}
.yc3_c00323{bottom:253.245000px;}
.yc6_c00323{bottom:253.680000px;}
.yc7_c00323{bottom:254.745000px;}
.yc4_c00323{bottom:255.405000px;}
.yc8_c00323{bottom:255.630000px;}
.yc5_c00323{bottom:256.905000px;}
.yc2_c00323{bottom:271.905000px;}
.ybe_c00323{bottom:272.745000px;}
.yc1_c00323{bottom:273.180000px;}
.yc0_c00323{bottom:274.245000px;}
.ybf_c00323{bottom:276.405000px;}
.ybb_c00323{bottom:293.745000px;}
.ybd_c00323{bottom:294.630000px;}
.ybc_c00323{bottom:294.825000px;}
.yba_c00323{bottom:295.905000px;}
.yb8_c00323{bottom:312.405000px;}
.yb7_c00323{bottom:312.825000px;}
.yb9_c00323{bottom:313.245000px;}
.yb6_c00323{bottom:314.970000px;}
.yb5_c00323{bottom:315.405000px;}
.yb4_c00323{bottom:332.745000px;}
.yaf_c00323{bottom:352.245000px;}
.yb3_c00323{bottom:352.470000px;}
.yae_c00323{bottom:353.970000px;}
.yb0_c00323{bottom:354.405000px;}
.yb1_c00323{bottom:354.630000px;}
.yb2_c00323{bottom:355.905000px;}
.yad_c00323{bottom:371.745000px;}
.yab_c00323{bottom:372.180000px;}
.yaa_c00323{bottom:373.905000px;}
.yac_c00323{bottom:375.405000px;}
.ya9_c00323{bottom:391.245000px;}
.ya8_c00323{bottom:392.745000px;}
.ya6_c00323{bottom:393.405000px;}
.ya7_c00323{bottom:394.905000px;}
.ya3_c00323{bottom:412.245000px;}
.ya5_c00323{bottom:412.905000px;}
.ya4_c00323{bottom:413.130000px;}
.ya2_c00323{bottom:414.405000px;}
.y9d_c00323{bottom:429.405000px;}
.y9e_c00323{bottom:431.325000px;}
.y9a_c00323{bottom:431.745000px;}
.ya1_c00323{bottom:432.405000px;}
.ya0_c00323{bottom:432.630000px;}
.y9b_c00323{bottom:432.825000px;}
.y9c_c00323{bottom:433.470000px;}
.y9f_c00323{bottom:433.905000px;}
.y97_c00323{bottom:451.245000px;}
.y98_c00323{bottom:452.130000px;}
.y99_c00323{bottom:452.970000px;}
.y96_c00323{bottom:453.405000px;}
.y95_c00323{bottom:470.745000px;}
.y92_c00323{bottom:472.245000px;}
.y91_c00323{bottom:472.905000px;}
.y90_c00323{bottom:473.130000px;}
.y94_c00323{bottom:473.970000px;}
.y93_c00323{bottom:474.405000px;}
.y8e_c00323{bottom:490.245000px;}
.y8d_c00323{bottom:491.745000px;}
.y8f_c00323{bottom:491.970000px;}
.y8b_c00323{bottom:492.405000px;}
.y8c_c00323{bottom:493.905000px;}
.y89_c00323{bottom:509.745000px;}
.y8a_c00323{bottom:511.905000px;}
.y86_c00323{bottom:512.325000px;}
.y87_c00323{bottom:512.970000px;}
.y88_c00323{bottom:513.405000px;}
.y82_c00323{bottom:530.745000px;}
.y85_c00323{bottom:531.405000px;}
.y81_c00323{bottom:531.630000px;}
.y84_c00323{bottom:532.470000px;}
.y83_c00323{bottom:532.905000px;}
.y7f_c00323{bottom:549.405000px;}
.y7e_c00323{bottom:550.245000px;}
.y7d_c00323{bottom:551.130000px;}
.y80_c00323{bottom:551.325000px;}
.y7c_c00323{bottom:552.405000px;}
.y7a_c00323{bottom:568.905000px;}
.y79_c00323{bottom:569.745000px;}
.y77_c00323{bottom:571.470000px;}
.y78_c00323{bottom:571.905000px;}
.y7b_c00323{bottom:572.130000px;}
.y76_c00323{bottom:586.905000px;}
.y72_c00323{bottom:589.245000px;}
.y74_c00323{bottom:591.405000px;}
.y73_c00323{bottom:591.630000px;}
.y75_c00323{bottom:592.470000px;}
.y71_c00323{bottom:608.325000px;}
.y70_c00323{bottom:608.970000px;}
.y6d_c00323{bottom:610.905000px;}
.y6e_c00323{bottom:611.130000px;}
.y6f_c00323{bottom:611.970000px;}
.y6a_c00323{bottom:629.745000px;}
.y6c_c00323{bottom:630.405000px;}
.y6b_c00323{bottom:630.825000px;}
.y69_c00323{bottom:631.905000px;}
.y66_c00323{bottom:649.245000px;}
.y68_c00323{bottom:650.970000px;}
.y67_c00323{bottom:651.405000px;}
.y65_c00323{bottom:668.745000px;}
.y64_c00323{bottom:669.630000px;}
.y63_c00323{bottom:670.905000px;}
.y62_c00323{bottom:687.180000px;}
.y60_c00323{bottom:688.245000px;}
.y61_c00323{bottom:689.325000px;}
.y5f_c00323{bottom:690.405000px;}
.y5c_c00323{bottom:707.745000px;}
.y5d_c00323{bottom:708.630000px;}
.y5b_c00323{bottom:709.905000px;}
.y5e_c00323{bottom:710.970000px;}
.y5a_c00323{bottom:725.745000px;}
.y59_c00323{bottom:727.245000px;}
.y58_c00323{bottom:729.405000px;}
.y57_c00323{bottom:745.905000px;}
.y55_c00323{bottom:746.745000px;}
.y54_c00323{bottom:747.825000px;}
.y53_c00323{bottom:748.245000px;}
.y52_c00323{bottom:748.905000px;}
.y56_c00323{bottom:749.130000px;}
.y4e_c00323{bottom:767.325000px;}
.y4f_c00323{bottom:767.745000px;}
.y4d_c00323{bottom:768.405000px;}
.y4c_c00323{bottom:768.630000px;}
.y51_c00323{bottom:768.825000px;}
.y50_c00323{bottom:769.470000px;}
.y4b_c00323{bottom:769.905000px;}
.y48_c00323{bottom:787.245000px;}
.y4a_c00323{bottom:787.905000px;}
.y49_c00323{bottom:788.130000px;}
.y47_c00323{bottom:789.405000px;}
.y45_c00323{bottom:806.745000px;}
.y44_c00323{bottom:807.405000px;}
.y46_c00323{bottom:808.905000px;}
.y41_c00323{bottom:826.245000px;}
.y43_c00323{bottom:828.405000px;}
.y42_c00323{bottom:828.630000px;}
.y3f_c00323{bottom:845.745000px;}
.y3e_c00323{bottom:847.905000px;}
.y40_c00323{bottom:848.970000px;}
.y3d_c00323{bottom:864.405000px;}
.y3c_c00323{bottom:865.245000px;}
.y39_c00323{bottom:867.405000px;}
.y3a_c00323{bottom:867.630000px;}
.y3b_c00323{bottom:868.470000px;}
.y35_c00323{bottom:883.680000px;}
.y34_c00323{bottom:884.745000px;}
.y37_c00323{bottom:885.825000px;}
.y33_c00323{bottom:886.905000px;}
.y38_c00323{bottom:887.130000px;}
.y36_c00323{bottom:887.970000px;}
.y30_c00323{bottom:904.470000px;}
.y32_c00323{bottom:905.325000px;}
.y2e_c00323{bottom:906.405000px;}
.y2f_c00323{bottom:906.630000px;}
.y2d_c00323{bottom:907.470000px;}
.y31_c00323{bottom:907.905000px;}
.y2b_c00323{bottom:925.245000px;}
.y2c_c00323{bottom:925.905000px;}
.y2a_c00323{bottom:927.405000px;}
.y27_c00323{bottom:942.405000px;}
.y29_c00323{bottom:943.905000px;}
.y28_c00323{bottom:944.325000px;}
.y25_c00323{bottom:944.745000px;}
.y26_c00323{bottom:945.630000px;}
.y24_c00323{bottom:946.905000px;}
.y20_c00323{bottom:962.970000px;}
.y21_c00323{bottom:963.405000px;}
.y1e_c00323{bottom:964.245000px;}
.y1f_c00323{bottom:965.130000px;}
.y1d_c00323{bottom:966.405000px;}
.y22_c00323{bottom:966.630000px;}
.y23_c00323{bottom:967.470000px;}
.y1c_c00323{bottom:982.905000px;}
.y18_c00323{bottom:983.745000px;}
.y19_c00323{bottom:983.970000px;}
.y1b_c00323{bottom:984.180000px;}
.y1a_c00323{bottom:984.630000px;}
.y17_c00323{bottom:985.905000px;}
.y14_c00323{bottom:1003.245000px;}
.y15_c00323{bottom:1004.970000px;}
.y16_c00323{bottom:1005.405000px;}
.ye_c00323{bottom:1022.745000px;}
.y11_c00323{bottom:1023.630000px;}
.y13_c00323{bottom:1023.825000px;}
.y10_c00323{bottom:1024.470000px;}
.yf_c00323{bottom:1024.905000px;}
.y12_c00323{bottom:1025.130000px;}
.yd_c00323{bottom:1041.405000px;}
.ya_c00323{bottom:1042.245000px;}
.y8_c00323{bottom:1044.405000px;}
.y9_c00323{bottom:1044.630000px;}
.yc_c00323{bottom:1045.470000px;}
.yb_c00323{bottom:1045.905000px;}
.y6_c00323{bottom:1060.905000px;}
.y5_c00323{bottom:1061.745000px;}
.y7_c00323{bottom:1063.470000px;}
.y4_c00323{bottom:1063.905000px;}
.y3_c00323{bottom:1064.130000px;}
.y2_c00323{bottom:1099.905000px;}
.y1_c00323{bottom:1102.050000px;}
.h3_c00323{height:23.025234px;}
.h1_c00323{height:25.091602px;}
.h5_c00323{height:31.364502px;}
.h2_c00323{height:35.571035px;}
.h6_c00323{height:39.777568px;}
.h4_c00323{height:43.910303px;}
.h7_c00323{height:48.116836px;}
.h0_c00323{height:1335.000000px;}
.w0_c00323{width:880.500000px;}
.x0_c00323{left:0.000000px;}
.x111_c00323{left:147.420000px;}
.xf7_c00323{left:148.920000px;}
.xb4_c00323{left:150.000000px;}
.x35_c00323{left:151.500000px;}
.x2_c00323{left:152.580000px;}
.x10b_c00323{left:163.500000px;}
.x7a_c00323{left:167.580000px;}
.x1a_c00323{left:169.080000px;}
.x95_c00323{left:171.420000px;}
.x3_c00323{left:172.920000px;}
.xe_c00323{left:174.000000px;}
.x42_c00323{left:175.500000px;}
.xe2_c00323{left:177.000000px;}
.x63_c00323{left:181.500000px;}
.xef_c00323{left:183.000000px;}
.xf5_c00323{left:186.000000px;}
.xa1_c00323{left:187.500000px;}
.x4c_c00323{left:190.920000px;}
.x70_c00323{left:192.420000px;}
.xd0_c00323{left:193.500000px;}
.xf_c00323{left:195.420000px;}
.x1b_c00323{left:196.500000px;}
.x8d_c00323{left:198.000000px;}
.x99_c00323{left:199.080000px;}
.x7b_c00323{left:201.000000px;}
.x86_c00323{left:202.500000px;}
.xb5_c00323{left:205.080000px;}
.x59_c00323{left:207.000000px;}
.x36_c00323{left:210.000000px;}
.xd1_c00323{left:211.920000px;}
.xa2_c00323{left:214.500000px;}
.xc8_c00323{left:216.420000px;}
.xe3_c00323{left:217.500000px;}
.x64_c00323{left:222.000000px;}
.x10_c00323{left:223.920000px;}
.xb0_c00323{left:225.420000px;}
.x5a_c00323{left:230.145000px;}
.x29_c00323{left:234.000000px;}
.x7c_c00323{left:235.500000px;}
.x4_c00323{left:237.420000px;}
.x100_c00323{left:238.500000px;}
.x71_c00323{left:241.080000px;}
.xca_c00323{left:243.000000px;}
.xbb_c00323{left:244.080000px;}
.x4d_c00323{left:246.000000px;}
.xe8_c00323{left:247.500000px;}
.xa3_c00323{left:249.420000px;}
.xd2_c00323{left:250.500000px;}
.x43_c00323{left:255.000000px;}
.x2a_c00323{left:256.500000px;}
.x1c_c00323{left:258.000000px;}
.x72_c00323{left:259.920000px;}
.x8e_c00323{left:261.420000px;}
.xac_c00323{left:262.500000px;}
.x87_c00323{left:265.920000px;}
.x7d_c00323{left:267.000000px;}
.xd3_c00323{left:270.420000px;}
.xe4_c00323{left:271.920000px;}
.xd9_c00323{left:273.420000px;}
.x1d_c00323{left:274.500000px;}
.xa8_c00323{left:276.000000px;}
.x65_c00323{left:277.080000px;}
.x4e_c00323{left:279.000000px;}
.x106_c00323{left:280.500000px;}
.x101_c00323{left:282.000000px;}
.x5_c00323{left:283.500000px;}
.x37_c00323{left:284.580000px;}
.xf0_c00323{left:288.000000px;}
.x44_c00323{left:289.080000px;}
.x9a_c00323{left:291.000000px;}
.xb1_c00323{left:292.500000px;}
.x2b_c00323{left:294.420000px;}
.x66_c00323{left:296.580000px;}
.xda_c00323{left:298.080000px;}
.x11_c00323{left:299.580000px;}
.x1e_c00323{left:301.920000px;}
.xb6_c00323{left:303.420000px;}
.x88_c00323{left:304.920000px;}
.xbc_c00323{left:306.000000px;}
.x115_c00323{left:307.080000px;}
.x4f_c00323{left:310.500000px;}
.x7e_c00323{left:313.080000px;}
.x38_c00323{left:314.355000px;}
.xed_c00323{left:315.420000px;}
.x12_c00323{left:318.000000px;}
.x5b_c00323{left:319.500000px;}
.xa4_c00323{left:320.580000px;}
.x45_c00323{left:322.500000px;}
.x8f_c00323{left:325.500000px;}
.x67_c00323{left:328.500000px;}
.x2c_c00323{left:331.500000px;}
.x109_c00323{left:334.500000px;}
.xcb_c00323{left:335.580000px;}
.x50_c00323{left:337.275000px;}
.xf6_c00323{left:339.000000px;}
.x89_c00323{left:340.080000px;}
.xbd_c00323{left:342.420000px;}
.x13_c00323{left:347.580000px;}
.xdb_c00323{left:349.080000px;}
.x5c_c00323{left:351.000000px;}
.x46_c00323{left:352.275000px;}
.xf8_c00323{left:354.000000px;}
.x112_c00323{left:355.500000px;}
.x7f_c00323{left:357.420000px;}
.xc2_c00323{left:358.500000px;}
.x73_c00323{left:359.580000px;}
.xfb_c00323{left:362.580000px;}
.x2d_c00323{left:364.500000px;}
.x1f_c00323{left:367.080000px;}
.x6_c00323{left:369.000000px;}
.x9b_c00323{left:370.500000px;}
.xbe_c00323{left:371.580000px;}
.xf9_c00323{left:373.920000px;}
.x39_c00323{left:377.775000px;}
.x14_c00323{left:379.500000px;}
.xd4_c00323{left:381.000000px;}
.x80_c00323{left:382.080000px;}
.xb7_c00323{left:384.000000px;}
.x51_c00323{left:385.500000px;}
.x8a_c00323{left:388.080000px;}
.xb2_c00323{left:392.580000px;}
.xe9_c00323{left:397.080000px;}
.x81_c00323{left:399.420000px;}
.x102_c00323{left:400.500000px;}
.xc3_c00323{left:401.580000px;}
.x7_c00323{left:403.080000px;}
.x1_c00323{left:405.000000px;}
.xa9_c00323{left:406.920000px;}
.xc9_c00323{left:408.000000px;}
.x10c_c00323{left:409.500000px;}
.x68_c00323{left:410.580000px;}
.xdc_c00323{left:412.080000px;}
.x20_c00323{left:415.500000px;}
.xad_c00323{left:417.420000px;}
.x3a_c00323{left:418.500000px;}
.xe5_c00323{left:420.000000px;}
.xa5_c00323{left:423.000000px;}
.x15_c00323{left:426.000000px;}
.xc4_c00323{left:427.920000px;}
.x10d_c00323{left:429.420000px;}
.xfc_c00323{left:430.500000px;}
.x96_c00323{left:433.500000px;}
.x9c_c00323{left:435.420000px;}
.xea_c00323{left:439.080000px;}
.x21_c00323{left:441.000000px;}
.x2e_c00323{left:442.500000px;}
.x8_c00323{left:443.580000px;}
.x16_c00323{left:445.500000px;}
.xfd_c00323{left:447.000000px;}
.xf1_c00323{left:448.080000px;}
.x3b_c00323{left:450.000000px;}
.x5d_c00323{left:451.500000px;}
.xb3_c00323{left:452.580000px;}
.x82_c00323{left:456.000000px;}
.x52_c00323{left:457.080000px;}
.x22_c00323{left:460.080000px;}
.x9d_c00323{left:462.000000px;}
.x2f_c00323{left:463.920000px;}
.x10a_c00323{left:465.420000px;}
.xa6_c00323{left:469.500000px;}
.x47_c00323{left:470.775000px;}
.x74_c00323{left:472.500000px;}
.xfe_c00323{left:474.000000px;}
.x3c_c00323{left:475.920000px;}
.x69_c00323{left:477.420000px;}
.xd5_c00323{left:483.420000px;}
.x90_c00323{left:486.000000px;}
.x3d_c00323{left:487.080000px;}
.x5e_c00323{left:488.580000px;}
.xf2_c00323{left:490.500000px;}
.xdd_c00323{left:492.000000px;}
.x30_c00323{left:493.500000px;}
.xb8_c00323{left:496.080000px;}
.x114_c00323{left:497.580000px;}
.x75_c00323{left:499.500000px;}
.x9_c00323{left:500.580000px;}
.xbf_c00323{left:502.500000px;}
.x6a_c00323{left:504.000000px;}
.x23_c00323{left:505.080000px;}
.x17_c00323{left:506.580000px;}
.xde_c00323{left:513.000000px;}
.x48_c00323{left:514.920000px;}
.x103_c00323{left:516.000000px;}
.x53_c00323{left:517.500000px;}
.x97_c00323{left:518.580000px;}
.xd6_c00323{left:523.500000px;}
.x24_c00323{left:525.000000px;}
.x18_c00323{left:526.920000px;}
.x83_c00323{left:529.500000px;}
.xaa_c00323{left:530.580000px;}
.xeb_c00323{left:532.500000px;}
.x3e_c00323{left:533.580000px;}
.xae_c00323{left:535.500000px;}
.xa_c00323{left:536.580000px;}
.x25_c00323{left:538.920000px;}
.x91_c00323{left:541.080000px;}
.xcc_c00323{left:543.420000px;}
.x98_c00323{left:544.920000px;}
.x5f_c00323{left:547.500000px;}
.x49_c00323{left:549.000000px;}
.x6b_c00323{left:550.500000px;}
.xf3_c00323{left:551.580000px;}
.xd7_c00323{left:555.000000px;}
.x19_c00323{left:556.920000px;}
.x104_c00323{left:559.500000px;}
.xc5_c00323{left:560.580000px;}
.x3f_c00323{left:565.275000px;}
.x31_c00323{left:566.580000px;}
.x54_c00323{left:568.080000px;}
.x6c_c00323{left:570.000000px;}
.x76_c00323{left:572.580000px;}
.xdf_c00323{left:576.000000px;}
.x4a_c00323{left:577.500000px;}
.xc6_c00323{left:579.420000px;}
.xff_c00323{left:582.420000px;}
.x32_c00323{left:588.420000px;}
.x6d_c00323{left:589.500000px;}
.x4b_c00323{left:590.580000px;}
.x10e_c00323{left:592.500000px;}
.xb_c00323{left:595.920000px;}
.xee_c00323{left:597.000000px;}
.x108_c00323{left:598.500000px;}
.xab_c00323{left:600.000000px;}
.x77_c00323{left:601.500000px;}
.x84_c00323{left:603.000000px;}
.xe6_c00323{left:604.500000px;}
.x40_c00323{left:606.420000px;}
.x92_c00323{left:607.920000px;}
.x10f_c00323{left:609.000000px;}
.x55_c00323{left:610.500000px;}
.x105_c00323{left:612.000000px;}
.x9e_c00323{left:616.500000px;}
.x33_c00323{left:617.580000px;}
.x60_c00323{left:620.580000px;}
.xcd_c00323{left:625.500000px;}
.xc0_c00323{left:630.420000px;}
.x9f_c00323{left:633.420000px;}
.x93_c00323{left:634.920000px;}
.xc_c00323{left:637.500000px;}
.xec_c00323{left:638.580000px;}
.xc7_c00323{left:645.420000px;}
.x56_c00323{left:646.500000px;}
.xb9_c00323{left:648.000000px;}
.xe0_c00323{left:649.500000px;}
.x8b_c00323{left:652.500000px;}
.x61_c00323{left:653.775000px;}
.xa7_c00323{left:655.500000px;}
.xaf_c00323{left:658.080000px;}
.xce_c00323{left:659.580000px;}
.x6e_c00323{left:661.500000px;}
.xd_c00323{left:663.420000px;}
.xf4_c00323{left:665.580000px;}
.x78_c00323{left:667.500000px;}
.x107_c00323{left:669.000000px;}
.xfa_c00323{left:670.500000px;}
.x8c_c00323{left:672.420000px;}
.x34_c00323{left:673.500000px;}
.x26_c00323{left:674.580000px;}
.x41_c00323{left:676.080000px;}
.xcf_c00323{left:678.420000px;}
.x79_c00323{left:679.500000px;}
.x94_c00323{left:681.000000px;}
.xd8_c00323{left:682.500000px;}
.xa0_c00323{left:684.000000px;}
.xe7_c00323{left:685.275000px;}
.xe1_c00323{left:688.500000px;}
.x57_c00323{left:698.580000px;}
.x62_c00323{left:700.920000px;}
.xba_c00323{left:702.000000px;}
.x27_c00323{left:703.500000px;}
.x85_c00323{left:704.580000px;}
.xc1_c00323{left:706.920000px;}
.x6f_c00323{left:708.420000px;}
.x110_c00323{left:709.500000px;}
.x58_c00323{left:717.000000px;}
.x28_c00323{left:720.000000px;}
.x113_c00323{left:723.000000px;}
@media print{
.v0_c00323{vertical-align:0.000000pt;}
.ls0_c00323{letter-spacing:0.000000pt;}
.ws0_c00323{word-spacing:-6.657718pt;}
.ws1_c00323{word-spacing:0.000000pt;}
.fs2_c00323{font-size:16.640000pt;}
.fs0_c00323{font-size:18.133333pt;}
.fs4_c00323{font-size:22.666667pt;}
.fs1_c00323{font-size:25.706667pt;}
.fs5_c00323{font-size:28.746667pt;}
.fs3_c00323{font-size:31.733333pt;}
.fs6_c00323{font-size:34.773333pt;}
.y0_c00323{bottom:0.000000pt;}
.yc3_c00323{bottom:225.106667pt;}
.yc6_c00323{bottom:225.493333pt;}
.yc7_c00323{bottom:226.440000pt;}
.yc4_c00323{bottom:227.026667pt;}
.yc8_c00323{bottom:227.226667pt;}
.yc5_c00323{bottom:228.360000pt;}
.yc2_c00323{bottom:241.693333pt;}
.ybe_c00323{bottom:242.440000pt;}
.yc1_c00323{bottom:242.826667pt;}
.yc0_c00323{bottom:243.773333pt;}
.ybf_c00323{bottom:245.693333pt;}
.ybb_c00323{bottom:261.106667pt;}
.ybd_c00323{bottom:261.893333pt;}
.ybc_c00323{bottom:262.066667pt;}
.yba_c00323{bottom:263.026667pt;}
.yb8_c00323{bottom:277.693333pt;}
.yb7_c00323{bottom:278.066667pt;}
.yb9_c00323{bottom:278.440000pt;}
.yb6_c00323{bottom:279.973333pt;}
.yb5_c00323{bottom:280.360000pt;}
.yb4_c00323{bottom:295.773333pt;}
.yaf_c00323{bottom:313.106667pt;}
.yb3_c00323{bottom:313.306667pt;}
.yae_c00323{bottom:314.640000pt;}
.yb0_c00323{bottom:315.026667pt;}
.yb1_c00323{bottom:315.226667pt;}
.yb2_c00323{bottom:316.360000pt;}
.yad_c00323{bottom:330.440000pt;}
.yab_c00323{bottom:330.826667pt;}
.yaa_c00323{bottom:332.360000pt;}
.yac_c00323{bottom:333.693333pt;}
.ya9_c00323{bottom:347.773333pt;}
.ya8_c00323{bottom:349.106667pt;}
.ya6_c00323{bottom:349.693333pt;}
.ya7_c00323{bottom:351.026667pt;}
.ya3_c00323{bottom:366.440000pt;}
.ya5_c00323{bottom:367.026667pt;}
.ya4_c00323{bottom:367.226667pt;}
.ya2_c00323{bottom:368.360000pt;}
.y9d_c00323{bottom:381.693333pt;}
.y9e_c00323{bottom:383.400000pt;}
.y9a_c00323{bottom:383.773333pt;}
.ya1_c00323{bottom:384.360000pt;}
.ya0_c00323{bottom:384.560000pt;}
.y9b_c00323{bottom:384.733333pt;}
.y9c_c00323{bottom:385.306667pt;}
.y9f_c00323{bottom:385.693333pt;}
.y97_c00323{bottom:401.106667pt;}
.y98_c00323{bottom:401.893333pt;}
.y99_c00323{bottom:402.640000pt;}
.y96_c00323{bottom:403.026667pt;}
.y95_c00323{bottom:418.440000pt;}
.y92_c00323{bottom:419.773333pt;}
.y91_c00323{bottom:420.360000pt;}
.y90_c00323{bottom:420.560000pt;}
.y94_c00323{bottom:421.306667pt;}
.y93_c00323{bottom:421.693333pt;}
.y8e_c00323{bottom:435.773333pt;}
.y8d_c00323{bottom:437.106667pt;}
.y8f_c00323{bottom:437.306667pt;}
.y8b_c00323{bottom:437.693333pt;}
.y8c_c00323{bottom:439.026667pt;}
.y89_c00323{bottom:453.106667pt;}
.y8a_c00323{bottom:455.026667pt;}
.y86_c00323{bottom:455.400000pt;}
.y87_c00323{bottom:455.973333pt;}
.y88_c00323{bottom:456.360000pt;}
.y82_c00323{bottom:471.773333pt;}
.y85_c00323{bottom:472.360000pt;}
.y81_c00323{bottom:472.560000pt;}
.y84_c00323{bottom:473.306667pt;}
.y83_c00323{bottom:473.693333pt;}
.y7f_c00323{bottom:488.360000pt;}
.y7e_c00323{bottom:489.106667pt;}
.y7d_c00323{bottom:489.893333pt;}
.y80_c00323{bottom:490.066667pt;}
.y7c_c00323{bottom:491.026667pt;}
.y7a_c00323{bottom:505.693333pt;}
.y79_c00323{bottom:506.440000pt;}
.y77_c00323{bottom:507.973333pt;}
.y78_c00323{bottom:508.360000pt;}
.y7b_c00323{bottom:508.560000pt;}
.y76_c00323{bottom:521.693333pt;}
.y72_c00323{bottom:523.773333pt;}
.y74_c00323{bottom:525.693333pt;}
.y73_c00323{bottom:525.893333pt;}
.y75_c00323{bottom:526.640000pt;}
.y71_c00323{bottom:540.733333pt;}
.y70_c00323{bottom:541.306667pt;}
.y6d_c00323{bottom:543.026667pt;}
.y6e_c00323{bottom:543.226667pt;}
.y6f_c00323{bottom:543.973333pt;}
.y6a_c00323{bottom:559.773333pt;}
.y6c_c00323{bottom:560.360000pt;}
.y6b_c00323{bottom:560.733333pt;}
.y69_c00323{bottom:561.693333pt;}
.y66_c00323{bottom:577.106667pt;}
.y68_c00323{bottom:578.640000pt;}
.y67_c00323{bottom:579.026667pt;}
.y65_c00323{bottom:594.440000pt;}
.y64_c00323{bottom:595.226667pt;}
.y63_c00323{bottom:596.360000pt;}
.y62_c00323{bottom:610.826667pt;}
.y60_c00323{bottom:611.773333pt;}
.y61_c00323{bottom:612.733333pt;}
.y5f_c00323{bottom:613.693333pt;}
.y5c_c00323{bottom:629.106667pt;}
.y5d_c00323{bottom:629.893333pt;}
.y5b_c00323{bottom:631.026667pt;}
.y5e_c00323{bottom:631.973333pt;}
.y5a_c00323{bottom:645.106667pt;}
.y59_c00323{bottom:646.440000pt;}
.y58_c00323{bottom:648.360000pt;}
.y57_c00323{bottom:663.026667pt;}
.y55_c00323{bottom:663.773333pt;}
.y54_c00323{bottom:664.733333pt;}
.y53_c00323{bottom:665.106667pt;}
.y52_c00323{bottom:665.693333pt;}
.y56_c00323{bottom:665.893333pt;}
.y4e_c00323{bottom:682.066667pt;}
.y4f_c00323{bottom:682.440000pt;}
.y4d_c00323{bottom:683.026667pt;}
.y4c_c00323{bottom:683.226667pt;}
.y51_c00323{bottom:683.400000pt;}
.y50_c00323{bottom:683.973333pt;}
.y4b_c00323{bottom:684.360000pt;}
.y48_c00323{bottom:699.773333pt;}
.y4a_c00323{bottom:700.360000pt;}
.y49_c00323{bottom:700.560000pt;}
.y47_c00323{bottom:701.693333pt;}
.y45_c00323{bottom:717.106667pt;}
.y44_c00323{bottom:717.693333pt;}
.y46_c00323{bottom:719.026667pt;}
.y41_c00323{bottom:734.440000pt;}
.y43_c00323{bottom:736.360000pt;}
.y42_c00323{bottom:736.560000pt;}
.y3f_c00323{bottom:751.773333pt;}
.y3e_c00323{bottom:753.693333pt;}
.y40_c00323{bottom:754.640000pt;}
.y3d_c00323{bottom:768.360000pt;}
.y3c_c00323{bottom:769.106667pt;}
.y39_c00323{bottom:771.026667pt;}
.y3a_c00323{bottom:771.226667pt;}
.y3b_c00323{bottom:771.973333pt;}
.y35_c00323{bottom:785.493333pt;}
.y34_c00323{bottom:786.440000pt;}
.y37_c00323{bottom:787.400000pt;}
.y33_c00323{bottom:788.360000pt;}
.y38_c00323{bottom:788.560000pt;}
.y36_c00323{bottom:789.306667pt;}
.y30_c00323{bottom:803.973333pt;}
.y32_c00323{bottom:804.733333pt;}
.y2e_c00323{bottom:805.693333pt;}
.y2f_c00323{bottom:805.893333pt;}
.y2d_c00323{bottom:806.640000pt;}
.y31_c00323{bottom:807.026667pt;}
.y2b_c00323{bottom:822.440000pt;}
.y2c_c00323{bottom:823.026667pt;}
.y2a_c00323{bottom:824.360000pt;}
.y27_c00323{bottom:837.693333pt;}
.y29_c00323{bottom:839.026667pt;}
.y28_c00323{bottom:839.400000pt;}
.y25_c00323{bottom:839.773333pt;}
.y26_c00323{bottom:840.560000pt;}
.y24_c00323{bottom:841.693333pt;}
.y20_c00323{bottom:855.973333pt;}
.y21_c00323{bottom:856.360000pt;}
.y1e_c00323{bottom:857.106667pt;}
.y1f_c00323{bottom:857.893333pt;}
.y1d_c00323{bottom:859.026667pt;}
.y22_c00323{bottom:859.226667pt;}
.y23_c00323{bottom:859.973333pt;}
.y1c_c00323{bottom:873.693333pt;}
.y18_c00323{bottom:874.440000pt;}
.y19_c00323{bottom:874.640000pt;}
.y1b_c00323{bottom:874.826667pt;}
.y1a_c00323{bottom:875.226667pt;}
.y17_c00323{bottom:876.360000pt;}
.y14_c00323{bottom:891.773333pt;}
.y15_c00323{bottom:893.306667pt;}
.y16_c00323{bottom:893.693333pt;}
.ye_c00323{bottom:909.106667pt;}
.y11_c00323{bottom:909.893333pt;}
.y13_c00323{bottom:910.066667pt;}
.y10_c00323{bottom:910.640000pt;}
.yf_c00323{bottom:911.026667pt;}
.y12_c00323{bottom:911.226667pt;}
.yd_c00323{bottom:925.693333pt;}
.ya_c00323{bottom:926.440000pt;}
.y8_c00323{bottom:928.360000pt;}
.y9_c00323{bottom:928.560000pt;}
.yc_c00323{bottom:929.306667pt;}
.yb_c00323{bottom:929.693333pt;}
.y6_c00323{bottom:943.026667pt;}
.y5_c00323{bottom:943.773333pt;}
.y7_c00323{bottom:945.306667pt;}
.y4_c00323{bottom:945.693333pt;}
.y3_c00323{bottom:945.893333pt;}
.y2_c00323{bottom:977.693333pt;}
.y1_c00323{bottom:979.600000pt;}
.h3_c00323{height:20.466875pt;}
.h1_c00323{height:22.303646pt;}
.h5_c00323{height:27.879557pt;}
.h2_c00323{height:31.618698pt;}
.h6_c00323{height:35.357839pt;}
.h4_c00323{height:39.031380pt;}
.h7_c00323{height:42.770521pt;}
.h0_c00323{height:1186.666667pt;}
.w0_c00323{width:782.666667pt;}
.x0_c00323{left:0.000000pt;}
.x111_c00323{left:131.040000pt;}
.xf7_c00323{left:132.373333pt;}
.xb4_c00323{left:133.333333pt;}
.x35_c00323{left:134.666667pt;}
.x2_c00323{left:135.626667pt;}
.x10b_c00323{left:145.333333pt;}
.x7a_c00323{left:148.960000pt;}
.x1a_c00323{left:150.293333pt;}
.x95_c00323{left:152.373333pt;}
.x3_c00323{left:153.706667pt;}
.xe_c00323{left:154.666667pt;}
.x42_c00323{left:156.000000pt;}
.xe2_c00323{left:157.333333pt;}
.x63_c00323{left:161.333333pt;}
.xef_c00323{left:162.666667pt;}
.xf5_c00323{left:165.333333pt;}
.xa1_c00323{left:166.666667pt;}
.x4c_c00323{left:169.706667pt;}
.x70_c00323{left:171.040000pt;}
.xd0_c00323{left:172.000000pt;}
.xf_c00323{left:173.706667pt;}
.x1b_c00323{left:174.666667pt;}
.x8d_c00323{left:176.000000pt;}
.x99_c00323{left:176.960000pt;}
.x7b_c00323{left:178.666667pt;}
.x86_c00323{left:180.000000pt;}
.xb5_c00323{left:182.293333pt;}
.x59_c00323{left:184.000000pt;}
.x36_c00323{left:186.666667pt;}
.xd1_c00323{left:188.373333pt;}
.xa2_c00323{left:190.666667pt;}
.xc8_c00323{left:192.373333pt;}
.xe3_c00323{left:193.333333pt;}
.x64_c00323{left:197.333333pt;}
.x10_c00323{left:199.040000pt;}
.xb0_c00323{left:200.373333pt;}
.x5a_c00323{left:204.573333pt;}
.x29_c00323{left:208.000000pt;}
.x7c_c00323{left:209.333333pt;}
.x4_c00323{left:211.040000pt;}
.x100_c00323{left:212.000000pt;}
.x71_c00323{left:214.293333pt;}
.xca_c00323{left:216.000000pt;}
.xbb_c00323{left:216.960000pt;}
.x4d_c00323{left:218.666667pt;}
.xe8_c00323{left:220.000000pt;}
.xa3_c00323{left:221.706667pt;}
.xd2_c00323{left:222.666667pt;}
.x43_c00323{left:226.666667pt;}
.x2a_c00323{left:228.000000pt;}
.x1c_c00323{left:229.333333pt;}
.x72_c00323{left:231.040000pt;}
.x8e_c00323{left:232.373333pt;}
.xac_c00323{left:233.333333pt;}
.x87_c00323{left:236.373333pt;}
.x7d_c00323{left:237.333333pt;}
.xd3_c00323{left:240.373333pt;}
.xe4_c00323{left:241.706667pt;}
.xd9_c00323{left:243.040000pt;}
.x1d_c00323{left:244.000000pt;}
.xa8_c00323{left:245.333333pt;}
.x65_c00323{left:246.293333pt;}
.x4e_c00323{left:248.000000pt;}
.x106_c00323{left:249.333333pt;}
.x101_c00323{left:250.666667pt;}
.x5_c00323{left:252.000000pt;}
.x37_c00323{left:252.960000pt;}
.xf0_c00323{left:256.000000pt;}
.x44_c00323{left:256.960000pt;}
.x9a_c00323{left:258.666667pt;}
.xb1_c00323{left:260.000000pt;}
.x2b_c00323{left:261.706667pt;}
.x66_c00323{left:263.626667pt;}
.xda_c00323{left:264.960000pt;}
.x11_c00323{left:266.293333pt;}
.x1e_c00323{left:268.373333pt;}
.xb6_c00323{left:269.706667pt;}
.x88_c00323{left:271.040000pt;}
.xbc_c00323{left:272.000000pt;}
.x115_c00323{left:272.960000pt;}
.x4f_c00323{left:276.000000pt;}
.x7e_c00323{left:278.293333pt;}
.x38_c00323{left:279.426667pt;}
.xed_c00323{left:280.373333pt;}
.x12_c00323{left:282.666667pt;}
.x5b_c00323{left:284.000000pt;}
.xa4_c00323{left:284.960000pt;}
.x45_c00323{left:286.666667pt;}
.x8f_c00323{left:289.333333pt;}
.x67_c00323{left:292.000000pt;}
.x2c_c00323{left:294.666667pt;}
.x109_c00323{left:297.333333pt;}
.xcb_c00323{left:298.293333pt;}
.x50_c00323{left:299.800000pt;}
.xf6_c00323{left:301.333333pt;}
.x89_c00323{left:302.293333pt;}
.xbd_c00323{left:304.373333pt;}
.x13_c00323{left:308.960000pt;}
.xdb_c00323{left:310.293333pt;}
.x5c_c00323{left:312.000000pt;}
.x46_c00323{left:313.133333pt;}
.xf8_c00323{left:314.666667pt;}
.x112_c00323{left:316.000000pt;}
.x7f_c00323{left:317.706667pt;}
.xc2_c00323{left:318.666667pt;}
.x73_c00323{left:319.626667pt;}
.xfb_c00323{left:322.293333pt;}
.x2d_c00323{left:324.000000pt;}
.x1f_c00323{left:326.293333pt;}
.x6_c00323{left:328.000000pt;}
.x9b_c00323{left:329.333333pt;}
.xbe_c00323{left:330.293333pt;}
.xf9_c00323{left:332.373333pt;}
.x39_c00323{left:335.800000pt;}
.x14_c00323{left:337.333333pt;}
.xd4_c00323{left:338.666667pt;}
.x80_c00323{left:339.626667pt;}
.xb7_c00323{left:341.333333pt;}
.x51_c00323{left:342.666667pt;}
.x8a_c00323{left:344.960000pt;}
.xb2_c00323{left:348.960000pt;}
.xe9_c00323{left:352.960000pt;}
.x81_c00323{left:355.040000pt;}
.x102_c00323{left:356.000000pt;}
.xc3_c00323{left:356.960000pt;}
.x7_c00323{left:358.293333pt;}
.x1_c00323{left:360.000000pt;}
.xa9_c00323{left:361.706667pt;}
.xc9_c00323{left:362.666667pt;}
.x10c_c00323{left:364.000000pt;}
.x68_c00323{left:364.960000pt;}
.xdc_c00323{left:366.293333pt;}
.x20_c00323{left:369.333333pt;}
.xad_c00323{left:371.040000pt;}
.x3a_c00323{left:372.000000pt;}
.xe5_c00323{left:373.333333pt;}
.xa5_c00323{left:376.000000pt;}
.x15_c00323{left:378.666667pt;}
.xc4_c00323{left:380.373333pt;}
.x10d_c00323{left:381.706667pt;}
.xfc_c00323{left:382.666667pt;}
.x96_c00323{left:385.333333pt;}
.x9c_c00323{left:387.040000pt;}
.xea_c00323{left:390.293333pt;}
.x21_c00323{left:392.000000pt;}
.x2e_c00323{left:393.333333pt;}
.x8_c00323{left:394.293333pt;}
.x16_c00323{left:396.000000pt;}
.xfd_c00323{left:397.333333pt;}
.xf1_c00323{left:398.293333pt;}
.x3b_c00323{left:400.000000pt;}
.x5d_c00323{left:401.333333pt;}
.xb3_c00323{left:402.293333pt;}
.x82_c00323{left:405.333333pt;}
.x52_c00323{left:406.293333pt;}
.x22_c00323{left:408.960000pt;}
.x9d_c00323{left:410.666667pt;}
.x2f_c00323{left:412.373333pt;}
.x10a_c00323{left:413.706667pt;}
.xa6_c00323{left:417.333333pt;}
.x47_c00323{left:418.466667pt;}
.x74_c00323{left:420.000000pt;}
.xfe_c00323{left:421.333333pt;}
.x3c_c00323{left:423.040000pt;}
.x69_c00323{left:424.373333pt;}
.xd5_c00323{left:429.706667pt;}
.x90_c00323{left:432.000000pt;}
.x3d_c00323{left:432.960000pt;}
.x5e_c00323{left:434.293333pt;}
.xf2_c00323{left:436.000000pt;}
.xdd_c00323{left:437.333333pt;}
.x30_c00323{left:438.666667pt;}
.xb8_c00323{left:440.960000pt;}
.x114_c00323{left:442.293333pt;}
.x75_c00323{left:444.000000pt;}
.x9_c00323{left:444.960000pt;}
.xbf_c00323{left:446.666667pt;}
.x6a_c00323{left:448.000000pt;}
.x23_c00323{left:448.960000pt;}
.x17_c00323{left:450.293333pt;}
.xde_c00323{left:456.000000pt;}
.x48_c00323{left:457.706667pt;}
.x103_c00323{left:458.666667pt;}
.x53_c00323{left:460.000000pt;}
.x97_c00323{left:460.960000pt;}
.xd6_c00323{left:465.333333pt;}
.x24_c00323{left:466.666667pt;}
.x18_c00323{left:468.373333pt;}
.x83_c00323{left:470.666667pt;}
.xaa_c00323{left:471.626667pt;}
.xeb_c00323{left:473.333333pt;}
.x3e_c00323{left:474.293333pt;}
.xae_c00323{left:476.000000pt;}
.xa_c00323{left:476.960000pt;}
.x25_c00323{left:479.040000pt;}
.x91_c00323{left:480.960000pt;}
.xcc_c00323{left:483.040000pt;}
.x98_c00323{left:484.373333pt;}
.x5f_c00323{left:486.666667pt;}
.x49_c00323{left:488.000000pt;}
.x6b_c00323{left:489.333333pt;}
.xf3_c00323{left:490.293333pt;}
.xd7_c00323{left:493.333333pt;}
.x19_c00323{left:495.040000pt;}
.x104_c00323{left:497.333333pt;}
.xc5_c00323{left:498.293333pt;}
.x3f_c00323{left:502.466667pt;}
.x31_c00323{left:503.626667pt;}
.x54_c00323{left:504.960000pt;}
.x6c_c00323{left:506.666667pt;}
.x76_c00323{left:508.960000pt;}
.xdf_c00323{left:512.000000pt;}
.x4a_c00323{left:513.333333pt;}
.xc6_c00323{left:515.040000pt;}
.xff_c00323{left:517.706667pt;}
.x32_c00323{left:523.040000pt;}
.x6d_c00323{left:524.000000pt;}
.x4b_c00323{left:524.960000pt;}
.x10e_c00323{left:526.666667pt;}
.xb_c00323{left:529.706667pt;}
.xee_c00323{left:530.666667pt;}
.x108_c00323{left:532.000000pt;}
.xab_c00323{left:533.333333pt;}
.x77_c00323{left:534.666667pt;}
.x84_c00323{left:536.000000pt;}
.xe6_c00323{left:537.333333pt;}
.x40_c00323{left:539.040000pt;}
.x92_c00323{left:540.373333pt;}
.x10f_c00323{left:541.333333pt;}
.x55_c00323{left:542.666667pt;}
.x105_c00323{left:544.000000pt;}
.x9e_c00323{left:548.000000pt;}
.x33_c00323{left:548.960000pt;}
.x60_c00323{left:551.626667pt;}
.xcd_c00323{left:556.000000pt;}
.xc0_c00323{left:560.373333pt;}
.x9f_c00323{left:563.040000pt;}
.x93_c00323{left:564.373333pt;}
.xc_c00323{left:566.666667pt;}
.xec_c00323{left:567.626667pt;}
.xc7_c00323{left:573.706667pt;}
.x56_c00323{left:574.666667pt;}
.xb9_c00323{left:576.000000pt;}
.xe0_c00323{left:577.333333pt;}
.x8b_c00323{left:580.000000pt;}
.x61_c00323{left:581.133333pt;}
.xa7_c00323{left:582.666667pt;}
.xaf_c00323{left:584.960000pt;}
.xce_c00323{left:586.293333pt;}
.x6e_c00323{left:588.000000pt;}
.xd_c00323{left:589.706667pt;}
.xf4_c00323{left:591.626667pt;}
.x78_c00323{left:593.333333pt;}
.x107_c00323{left:594.666667pt;}
.xfa_c00323{left:596.000000pt;}
.x8c_c00323{left:597.706667pt;}
.x34_c00323{left:598.666667pt;}
.x26_c00323{left:599.626667pt;}
.x41_c00323{left:600.960000pt;}
.xcf_c00323{left:603.040000pt;}
.x79_c00323{left:604.000000pt;}
.x94_c00323{left:605.333333pt;}
.xd8_c00323{left:606.666667pt;}
.xa0_c00323{left:608.000000pt;}
.xe7_c00323{left:609.133333pt;}
.xe1_c00323{left:612.000000pt;}
.x57_c00323{left:620.960000pt;}
.x62_c00323{left:623.040000pt;}
.xba_c00323{left:624.000000pt;}
.x27_c00323{left:625.333333pt;}
.x85_c00323{left:626.293333pt;}
.xc1_c00323{left:628.373333pt;}
.x6f_c00323{left:629.706667pt;}
.x110_c00323{left:630.666667pt;}
.x58_c00323{left:637.333333pt;}
.x28_c00323{left:640.000000pt;}
.x113_c00323{left:642.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_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_71296947bd16982383f58371.woff2')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md8_c00324{transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);}
.m40_c00324{transform:matrix(0.348160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348160,0.000000,0.000000,0.250000,0,0);}
.m2_c00324{transform:matrix(0.358129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358129,0.000000,0.000000,0.250000,0,0);}
.ma6_c00324{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m4d_c00324{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.md4_c00324{transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);}
.m71_c00324{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m5f_c00324{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m4e_c00324{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.md7_c00324{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.me6_c00324{transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);}
.m51_c00324{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.mab_c00324{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m42_c00324{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m1f_c00324{transform:matrix(0.376050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376050,0.000000,0.000000,0.250000,0,0);}
.m36_c00324{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m98_c00324{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m55_c00324{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m28_c00324{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m7e_c00324{transform:matrix(0.386503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386503,0.000000,0.000000,0.250000,0,0);}
.me5_c00324{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.mb_c00324{transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);}
.mcd_c00324{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m5_c00324{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m9f_c00324{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m75_c00324{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.md5_c00324{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.mcf_c00324{transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);}
.m7b_c00324{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m16_c00324{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m56_c00324{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m6_c00324{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);}
.m84_c00324{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m31_c00324{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.me2_c00324{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m77_c00324{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m6a_c00324{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m8_c00324{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m7f_c00324{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m3f_c00324{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m7_c00324{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m1a_c00324{transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);}
.me0_c00324{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m37_c00324{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.mcb_c00324{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m35_c00324{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.md0_c00324{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.mdf_c00324{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.mba_c00324{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.ma5_c00324{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m3e_c00324{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.me9_c00324{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m54_c00324{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mbc_c00324{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.me7_c00324{transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);}
.m2b_c00324{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mda_c00324{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.m3a_c00324{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mb5_c00324{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.ma2_c00324{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m22_c00324{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m83_c00324{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m62_c00324{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m99_c00324{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m92_c00324{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m94_c00324{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.mac_c00324{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.mb8_c00324{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m5b_c00324{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m89_c00324{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.maf_c00324{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m8b_c00324{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mcc_c00324{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m73_c00324{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m47_c00324{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m6c_c00324{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m19_c00324{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m4c_c00324{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m59_c00324{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m80_c00324{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m72_c00324{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mbd_c00324{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m24_c00324{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.maa_c00324{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.m9d_c00324{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m97_c00324{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.mb7_c00324{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m0_c00324{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m82_c00324{transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);}
.m74_c00324{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.mf_c00324{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m49_c00324{transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);}
.mbe_c00324{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m67_c00324{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.mc5_c00324{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m8d_c00324{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m9b_c00324{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m64_c00324{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m6e_c00324{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m53_c00324{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.m6f_c00324{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m86_c00324{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.m41_c00324{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.md3_c00324{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m50_c00324{transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);}
.md6_c00324{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.m1b_c00324{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mc3_c00324{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m4b_c00324{transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);}
.m5d_c00324{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mb1_c00324{transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);}
.m8a_c00324{transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);}
.m13_c00324{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m46_c00324{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m9a_c00324{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.mb6_c00324{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m87_c00324{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.me_c00324{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m48_c00324{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m45_c00324{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m79_c00324{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.me4_c00324{transform:matrix(0.497479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497479,0.000000,0.000000,0.250000,0,0);}
.mb3_c00324{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m52_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);}
.m2f_c00324{transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);}
.m68_c00324{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m9e_c00324{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m4_c00324{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m1e_c00324{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m18_c00324{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.md2_c00324{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_c00324{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m85_c00324{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m10_c00324{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m3c_c00324{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m4f_c00324{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m7a_c00324{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m23_c00324{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.ma3_c00324{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mc0_c00324{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m5e_c00324{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mb2_c00324{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m91_c00324{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m38_c00324{transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);}
.m44_c00324{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m5a_c00324{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m4a_c00324{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m5c_c00324{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.me3_c00324{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mc_c00324{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m8e_c00324{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m39_c00324{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.mc2_c00324{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.md1_c00324{transform:matrix(0.534706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534706,0.000000,0.000000,0.250000,0,0);}
.m61_c00324{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m15_c00324{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mc1_c00324{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m65_c00324{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m25_c00324{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mde_c00324{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mae_c00324{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.mb9_c00324{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m66_c00324{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mca_c00324{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.md_c00324{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m32_c00324{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m69_c00324{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m63_c00324{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m81_c00324{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mea_c00324{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.m88_c00324{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.mc7_c00324{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mce_c00324{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m29_c00324{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m57_c00324{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m43_c00324{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.ma4_c00324{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m26_c00324{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.me1_c00324{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m76_c00324{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m3_c00324{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m8c_c00324{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m90_c00324{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m34_c00324{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m6b_c00324{transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);}
.ma1_c00324{transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);}
.mc4_c00324{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.mdd_c00324{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m96_c00324{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m2c_c00324{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m2d_c00324{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.ma_c00324{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.ma7_c00324{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m3b_c00324{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m20_c00324{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m95_c00324{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m9c_c00324{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.me8_c00324{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.mbf_c00324{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m14_c00324{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_c00324{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m2e_c00324{transform:matrix(0.584025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584025,0.000000,0.000000,0.250000,0,0);}
.m1c_c00324{transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);}
.ma8_c00324{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m6d_c00324{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.ma9_c00324{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m7d_c00324{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m1_c00324{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m2a_c00324{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mdc_c00324{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.m33_c00324{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mc9_c00324{transform:matrix(0.618257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618257,0.000000,0.000000,0.250000,0,0);}
.m58_c00324{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m9_c00324{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_c00324{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mc8_c00324{transform:matrix(0.649896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649896,0.000000,0.000000,0.250000,0,0);}
.mc6_c00324{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m1d_c00324{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m12_c00324{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m8f_c00324{transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);}
.m7c_c00324{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m11_c00324{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m93_c00324{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.mad_c00324{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mbb_c00324{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m30_c00324{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.ma0_c00324{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m27_c00324{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mb4_c00324{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m60_c00324{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m17_c00324{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m70_c00324{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m3d_c00324{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.md9_c00324{transform:matrix(1.040749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.040749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.040749,0.000000,0.000000,0.250000,0,0);}
.mdb_c00324{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00324{vertical-align:0.000000px;}
.v1_c00324{vertical-align:6.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:-16.889280px;}
.ws2_c00324{word-spacing:-2.517399px;}
.ws1_c00324{word-spacing:-1.038795px;}
.ws3_c00324{word-spacing:0.000000px;}
._0_c00324{width:7.237048px;}
.fc0_c00324{color:transparent;}
.fs8_c00324{font-size:3.420000px;}
.fs7_c00324{font-size:13.620000px;}
.fs4_c00324{font-size:18.720000px;}
.fs1_c00324{font-size:20.400000px;}
.fs5_c00324{font-size:25.500000px;}
.fs0_c00324{font-size:28.920000px;}
.fs6_c00324{font-size:32.340000px;}
.fs3_c00324{font-size:35.700000px;}
.fs2_c00324{font-size:39.120000px;}
.y0_c00324{bottom:0.000000px;}
.yc6_c00324{bottom:251.745000px;}
.yc7_c00324{bottom:252.180000px;}
.yc9_c00324{bottom:253.245000px;}
.yc5_c00324{bottom:253.905000px;}
.yc8_c00324{bottom:254.970000px;}
.yc4_c00324{bottom:255.405000px;}
.yc1_c00324{bottom:272.745000px;}
.yc3_c00324{bottom:273.630000px;}
.yc0_c00324{bottom:273.825000px;}
.yc2_c00324{bottom:274.905000px;}
.ybc_c00324{bottom:292.245000px;}
.ybe_c00324{bottom:294.405000px;}
.ybd_c00324{bottom:294.420000px;}
.ybf_c00324{bottom:295.470000px;}
.yba_c00324{bottom:314.325000px;}
.yb9_c00324{bottom:315.405000px;}
.yb8_c00324{bottom:316.470000px;}
.ybb_c00324{bottom:316.695000px;}
.yb5_c00324{bottom:332.970000px;}
.yb6_c00324{bottom:333.825000px;}
.yb7_c00324{bottom:334.905000px;}
.yb4_c00324{bottom:335.970000px;}
.yb3_c00324{bottom:356.745000px;}
.yb1_c00324{bottom:358.905000px;}
.yb2_c00324{bottom:360.405000px;}
.yaf_c00324{bottom:391.470000px;}
.yb0_c00324{bottom:391.905000px;}
.yae_c00324{bottom:410.325000px;}
.ya9_c00324{bottom:410.745000px;}
.yaa_c00324{bottom:411.405000px;}
.yad_c00324{bottom:411.825000px;}
.yac_c00324{bottom:412.470000px;}
.yab_c00324{bottom:412.905000px;}
.ya8_c00324{bottom:427.905000px;}
.ya4_c00324{bottom:430.245000px;}
.ya7_c00324{bottom:430.905000px;}
.ya3_c00324{bottom:431.130000px;}
.ya6_c00324{bottom:431.325000px;}
.ya5_c00324{bottom:431.970000px;}
.ya2_c00324{bottom:432.405000px;}
.ya1_c00324{bottom:448.245000px;}
.y9f_c00324{bottom:449.745000px;}
.ya0_c00324{bottom:450.630000px;}
.y9e_c00324{bottom:451.905000px;}
.y9b_c00324{bottom:469.245000px;}
.y9d_c00324{bottom:470.130000px;}
.y9c_c00324{bottom:470.325000px;}
.y9a_c00324{bottom:471.405000px;}
.y97_c00324{bottom:488.325000px;}
.y99_c00324{bottom:488.745000px;}
.y98_c00324{bottom:489.630000px;}
.y96_c00324{bottom:490.905000px;}
.y94_c00324{bottom:507.405000px;}
.y92_c00324{bottom:508.245000px;}
.y95_c00324{bottom:509.130000px;}
.y90_c00324{bottom:509.325000px;}
.y93_c00324{bottom:509.970000px;}
.y8f_c00324{bottom:510.405000px;}
.y91_c00324{bottom:510.630000px;}
.y8c_c00324{bottom:529.245000px;}
.y8e_c00324{bottom:529.905000px;}
.y8d_c00324{bottom:530.970000px;}
.y8b_c00324{bottom:531.405000px;}
.y89_c00324{bottom:547.245000px;}
.y8a_c00324{bottom:547.470000px;}
.y87_c00324{bottom:548.745000px;}
.y88_c00324{bottom:549.405000px;}
.y86_c00324{bottom:550.905000px;}
.y81_c00324{bottom:568.245000px;}
.y82_c00324{bottom:569.130000px;}
.y85_c00324{bottom:569.325000px;}
.y83_c00324{bottom:569.970000px;}
.y84_c00324{bottom:570.405000px;}
.y7f_c00324{bottom:587.745000px;}
.y80_c00324{bottom:588.630000px;}
.y7e_c00324{bottom:589.905000px;}
.y7c_c00324{bottom:607.245000px;}
.y79_c00324{bottom:607.470000px;}
.y7b_c00324{bottom:608.325000px;}
.y78_c00324{bottom:609.405000px;}
.y7a_c00324{bottom:609.630000px;}
.y7d_c00324{bottom:610.470000px;}
.y74_c00324{bottom:626.745000px;}
.y75_c00324{bottom:627.825000px;}
.y76_c00324{bottom:628.245000px;}
.y73_c00324{bottom:628.905000px;}
.y77_c00324{bottom:630.405000px;}
.y6f_c00324{bottom:646.245000px;}
.y71_c00324{bottom:647.325000px;}
.y72_c00324{bottom:647.745000px;}
.y70_c00324{bottom:648.405000px;}
.y6e_c00324{bottom:667.050000px;}
.y6c_c00324{bottom:667.245000px;}
.y6d_c00324{bottom:668.130000px;}
.y6b_c00324{bottom:669.405000px;}
.y6a_c00324{bottom:686.745000px;}
.y69_c00324{bottom:688.905000px;}
.y68_c00324{bottom:689.130000px;}
.y67_c00324{bottom:705.825000px;}
.y63_c00324{bottom:706.245000px;}
.y65_c00324{bottom:707.130000px;}
.y66_c00324{bottom:707.325000px;}
.y64_c00324{bottom:708.405000px;}
.y60_c00324{bottom:725.745000px;}
.y5f_c00324{bottom:726.825000px;}
.y61_c00324{bottom:727.905000px;}
.y62_c00324{bottom:728.970000px;}
.y59_c00324{bottom:745.245000px;}
.y57_c00324{bottom:745.680000px;}
.y5c_c00324{bottom:746.325000px;}
.y5e_c00324{bottom:746.745000px;}
.y5a_c00324{bottom:747.405000px;}
.y5d_c00324{bottom:747.630000px;}
.y58_c00324{bottom:748.470000px;}
.y5b_c00324{bottom:748.905000px;}
.y54_c00324{bottom:765.825000px;}
.y53_c00324{bottom:766.245000px;}
.y55_c00324{bottom:767.130000px;}
.y56_c00324{bottom:767.970000px;}
.y52_c00324{bottom:768.405000px;}
.y4d_c00324{bottom:785.745000px;}
.y4f_c00324{bottom:786.825000px;}
.y50_c00324{bottom:787.470000px;}
.y4e_c00324{bottom:787.905000px;}
.y51_c00324{bottom:788.970000px;}
.y49_c00324{bottom:805.245000px;}
.y4b_c00324{bottom:806.130000px;}
.y4c_c00324{bottom:806.325000px;}
.y4a_c00324{bottom:807.405000px;}
.y48_c00324{bottom:824.745000px;}
.y46_c00324{bottom:825.630000px;}
.y47_c00324{bottom:826.470000px;}
.y45_c00324{bottom:826.905000px;}
.y42_c00324{bottom:844.245000px;}
.y40_c00324{bottom:845.130000px;}
.y41_c00324{bottom:846.405000px;}
.y44_c00324{bottom:846.825000px;}
.y43_c00324{bottom:847.905000px;}
.y3e_c00324{bottom:862.905000px;}
.y3a_c00324{bottom:863.745000px;}
.y3b_c00324{bottom:864.630000px;}
.y3f_c00324{bottom:865.245000px;}
.y3c_c00324{bottom:865.905000px;}
.y3d_c00324{bottom:866.130000px;}
.y39_c00324{bottom:882.405000px;}
.y34_c00324{bottom:883.245000px;}
.y32_c00324{bottom:884.325000px;}
.y35_c00324{bottom:884.745000px;}
.y33_c00324{bottom:885.405000px;}
.y36_c00324{bottom:885.630000px;}
.y38_c00324{bottom:886.470000px;}
.y37_c00324{bottom:886.905000px;}
.y2c_c00324{bottom:902.745000px;}
.y2d_c00324{bottom:903.180000px;}
.y2e_c00324{bottom:904.245000px;}
.y31_c00324{bottom:905.130000px;}
.y30_c00324{bottom:905.970000px;}
.y2f_c00324{bottom:906.405000px;}
.y25_c00324{bottom:921.405000px;}
.y2b_c00324{bottom:923.325000px;}
.y29_c00324{bottom:923.745000px;}
.y26_c00324{bottom:924.405000px;}
.y2a_c00324{bottom:924.630000px;}
.y28_c00324{bottom:924.825000px;}
.y27_c00324{bottom:925.905000px;}
.y21_c00324{bottom:942.180000px;}
.y20_c00324{bottom:943.245000px;}
.y24_c00324{bottom:944.130000px;}
.y23_c00324{bottom:944.325000px;}
.y22_c00324{bottom:945.405000px;}
.y1d_c00324{bottom:962.745000px;}
.y1e_c00324{bottom:964.905000px;}
.y1f_c00324{bottom:965.130000px;}
.y1c_c00324{bottom:981.405000px;}
.y1b_c00324{bottom:982.245000px;}
.y19_c00324{bottom:984.405000px;}
.y1a_c00324{bottom:984.630000px;}
.y16_c00324{bottom:1001.745000px;}
.y18_c00324{bottom:1001.970000px;}
.y14_c00324{bottom:1002.630000px;}
.y13_c00324{bottom:1003.905000px;}
.y15_c00324{bottom:1004.130000px;}
.y17_c00324{bottom:1004.970000px;}
.y12_c00324{bottom:1020.405000px;}
.y11_c00324{bottom:1021.245000px;}
.ye_c00324{bottom:1022.325000px;}
.yf_c00324{bottom:1023.405000px;}
.y10_c00324{bottom:1023.630000px;}
.y9_c00324{bottom:1040.745000px;}
.yd_c00324{bottom:1041.825000px;}
.y8_c00324{bottom:1042.905000px;}
.ya_c00324{bottom:1043.130000px;}
.yb_c00324{bottom:1043.970000px;}
.yc_c00324{bottom:1044.405000px;}
.y7_c00324{bottom:1060.245000px;}
.y3_c00324{bottom:1060.680000px;}
.y6_c00324{bottom:1061.745000px;}
.y4_c00324{bottom:1062.405000px;}
.y5_c00324{bottom:1063.905000px;}
.y1_c00324{bottom:1099.905000px;}
.y2_c00324{bottom:1100.550000px;}
.ha_c00324{height:4.206533px;}
.h9_c00324{height:16.752334px;}
.h5_c00324{height:23.025234px;}
.h2_c00324{height:25.091602px;}
.h6_c00324{height:31.364502px;}
.h1_c00324{height:35.571035px;}
.h7_c00324{height:39.777568px;}
.h8_c00324{height:41.571035px;}
.h4_c00324{height:43.910303px;}
.h3_c00324{height:48.116836px;}
.h0_c00324{height:1335.000000px;}
.w0_c00324{width:880.500000px;}
.x0_c00324{left:0.000000px;}
.x25_c00324{left:150.000000px;}
.x3_c00324{left:151.080000px;}
.x1a_c00324{left:152.355000px;}
.xff_c00324{left:153.420000px;}
.xac_c00324{left:166.500000px;}
.xc8_c00324{left:168.000000px;}
.xf6_c00324{left:169.920000px;}
.x85_c00324{left:172.500000px;}
.xd8_c00324{left:174.000000px;}
.xf0_c00324{left:181.500000px;}
.xc2_c00324{left:186.000000px;}
.x5d_c00324{left:189.000000px;}
.x1b_c00324{left:193.500000px;}
.xa7_c00324{left:198.000000px;}
.x26_c00324{left:199.920000px;}
.x45_c00324{left:201.000000px;}
.x53_c00324{left:202.500000px;}
.xb3_c00324{left:205.500000px;}
.x7d_c00324{left:210.000000px;}
.x1c_c00324{left:211.500000px;}
.x5e_c00324{left:213.420000px;}
.x36_c00324{left:217.080000px;}
.xf3_c00324{left:218.580000px;}
.x91_c00324{left:220.500000px;}
.x74_c00324{left:222.420000px;}
.x46_c00324{left:223.500000px;}
.x54_c00324{left:225.000000px;}
.xa1_c00324{left:226.500000px;}
.x4_c00324{left:229.080000px;}
.x27_c00324{left:234.000000px;}
.x7e_c00324{left:235.920000px;}
.x6c_c00324{left:237.000000px;}
.x4d_c00324{left:238.080000px;}
.x5f_c00324{left:241.920000px;}
.xdd_c00324{left:243.000000px;}
.x65_c00324{left:244.500000px;}
.x9a_c00324{left:246.420000px;}
.x75_c00324{left:247.920000px;}
.xe_c00324{left:249.000000px;}
.xd4_c00324{left:252.000000px;}
.xe5_c00324{left:253.920000px;}
.x86_c00324{left:255.000000px;}
.x6d_c00324{left:259.500000px;}
.x5_c00324{left:261.000000px;}
.xea_c00324{left:262.920000px;}
.x7f_c00324{left:264.000000px;}
.xc9_c00324{left:265.500000px;}
.x1d_c00324{left:267.000000px;}
.xa2_c00324{left:268.920000px;}
.xf7_c00324{left:271.500000px;}
.x9b_c00324{left:272.580000px;}
.x55_c00324{left:276.000000px;}
.x28_c00324{left:277.500000px;}
.xb4_c00324{left:279.420000px;}
.x6e_c00324{left:282.000000px;}
.xf_c00324{left:285.000000px;}
.x1e_c00324{left:287.580000px;}
.xb7_c00324{left:289.500000px;}
.xca_c00324{left:291.420000px;}
.xa3_c00324{left:292.500000px;}
.x47_c00324{left:294.420000px;}
.x60_c00324{left:296.580000px;}
.xc3_c00324{left:298.080000px;}
.xeb_c00324{left:301.080000px;}
.x3c_c00324{left:305.775000px;}
.x92_c00324{left:307.500000px;}
.x10_c00324{left:308.580000px;}
.x29_c00324{left:312.000000px;}
.xa8_c00324{left:313.080000px;}
.xb8_c00324{left:315.000000px;}
.x66_c00324{left:317.580000px;}
.x6_c00324{left:319.080000px;}
.xcb_c00324{left:321.000000px;}
.xd9_c00324{left:322.920000px;}
.xbc_c00324{left:325.500000px;}
.x93_c00324{left:326.580000px;}
.x61_c00324{left:330.000000px;}
.x76_c00324{left:333.000000px;}
.x87_c00324{left:334.920000px;}
.x30_c00324{left:337.500000px;}
.x56_c00324{left:339.420000px;}
.x1f_c00324{left:341.580000px;}
.xa4_c00324{left:345.000000px;}
.xe6_c00324{left:346.500000px;}
.x3d_c00324{left:349.500000px;}
.xfd_c00324{left:351.000000px;}
.xd2_c00324{left:353.580000px;}
.x67_c00324{left:355.080000px;}
.x31_c00324{left:360.000000px;}
.x88_c00324{left:361.500000px;}
.x80_c00324{left:363.000000px;}
.x9c_c00324{left:364.500000px;}
.x57_c00324{left:366.000000px;}
.x11_c00324{left:367.920000px;}
.xf4_c00324{left:369.000000px;}
.xe0_c00324{left:370.080000px;}
.xbd_c00324{left:373.500000px;}
.x77_c00324{left:375.420000px;}
.xde_c00324{left:376.920000px;}
.xa9_c00324{left:384.000000px;}
.xf8_c00324{left:386.580000px;}
.x4e_c00324{left:388.500000px;}
.x2a_c00324{left:390.000000px;}
.xe1_c00324{left:391.080000px;}
.x89_c00324{left:395.580000px;}
.xcc_c00324{left:397.500000px;}
.x2_c00324{left:399.000000px;}
.x48_c00324{left:400.500000px;}
.x7_c00324{left:402.000000px;}
.x78_c00324{left:403.500000px;}
.x3e_c00324{left:405.000000px;}
.x2b_c00324{left:409.500000px;}
.xf1_c00324{left:411.000000px;}
.x12_c00324{left:412.500000px;}
.x8a_c00324{left:414.000000px;}
.xec_c00324{left:417.000000px;}
.xd5_c00324{left:418.500000px;}
.xad_c00324{left:423.420000px;}
.x37_c00324{left:424.920000px;}
.xf5_c00324{left:426.000000px;}
.x20_c00324{left:427.500000px;}
.x6f_c00324{left:429.420000px;}
.x94_c00324{left:430.500000px;}
.x13_c00324{left:431.580000px;}
.x32_c00324{left:435.000000px;}
.x8_c00324{left:439.080000px;}
.xe2_c00324{left:441.000000px;}
.xe7_c00324{left:442.500000px;}
.x58_c00324{left:444.000000px;}
.x3f_c00324{left:446.775000px;}
.x95_c00324{left:450.420000px;}
.xae_c00324{left:451.500000px;}
.x38_c00324{left:453.000000px;}
.x14_c00324{left:454.920000px;}
.x70_c00324{left:457.920000px;}
.xe3_c00324{left:459.000000px;}
.xa5_c00324{left:462.000000px;}
.x81_c00324{left:463.500000px;}
.xd6_c00324{left:465.420000px;}
.x8b_c00324{left:468.420000px;}
.xb5_c00324{left:470.580000px;}
.xbe_c00324{left:472.500000px;}
.x49_c00324{left:474.420000px;}
.x68_c00324{left:475.500000px;}
.x4f_c00324{left:478.500000px;}
.xd3_c00324{left:480.000000px;}
.x100_c00324{left:483.000000px;}
.xc4_c00324{left:484.500000px;}
.x59_c00324{left:486.000000px;}
.x40_c00324{left:487.500000px;}
.xf2_c00324{left:489.000000px;}
.x2c_c00324{left:490.500000px;}
.x71_c00324{left:496.920000px;}
.xb9_c00324{left:501.000000px;}
.x9_c00324{left:502.080000px;}
.x41_c00324{left:504.420000px;}
.x9d_c00324{left:505.920000px;}
.xaa_c00324{left:507.000000px;}
.x15_c00324{left:510.000000px;}
.xc5_c00324{left:512.580000px;}
.x8c_c00324{left:514.080000px;}
.xe4_c00324{left:515.580000px;}
.x4a_c00324{left:517.500000px;}
.xcf_c00324{left:519.420000px;}
.x69_c00324{left:522.420000px;}
.xd7_c00324{left:524.580000px;}
.xab_c00324{left:525.645000px;}
.x9e_c00324{left:529.500000px;}
.x42_c00324{left:532.920000px;}
.xda_c00324{left:534.000000px;}
.x62_c00324{left:535.500000px;}
.x33_c00324{left:537.000000px;}
.x21_c00324{left:538.080000px;}
.xf9_c00324{left:540.000000px;}
.xbf_c00324{left:542.145000px;}
.x16_c00324{left:543.420000px;}
.xaf_c00324{left:544.500000px;}
.x82_c00324{left:547.080000px;}
.xd0_c00324{left:549.000000px;}
.x39_c00324{left:550.080000px;}
.xed_c00324{left:551.145000px;}
.xba_c00324{left:554.580000px;}
.xdb_c00324{left:556.500000px;}
.x34_c00324{left:558.420000px;}
.x72_c00324{left:559.500000px;}
.x79_c00324{left:561.000000px;}
.xfa_c00324{left:566.580000px;}
.x2d_c00324{left:568.500000px;}
.xc6_c00324{left:570.420000px;}
.xbb_c00324{left:572.580000px;}
.xe8_c00324{left:574.920000px;}
.xb0_c00324{left:576.420000px;}
.x4b_c00324{left:577.500000px;}
.x50_c00324{left:579.000000px;}
.x96_c00324{left:580.920000px;}
.x73_c00324{left:583.500000px;}
.x7a_c00324{left:586.500000px;}
.x8d_c00324{left:589.275000px;}
.x51_c00324{left:591.000000px;}
.xa6_c00324{left:592.080000px;}
.xa_c00324{left:595.500000px;}
.x17_c00324{left:597.000000px;}
.x6a_c00324{left:598.500000px;}
.x9f_c00324{left:602.145000px;}
.x101_c00324{left:603.420000px;}
.x5a_c00324{left:604.500000px;}
.xc7_c00324{left:609.000000px;}
.xb1_c00324{left:610.500000px;}
.x97_c00324{left:613.080000px;}
.xb_c00324{left:619.080000px;}
.x7b_c00324{left:621.000000px;}
.x63_c00324{left:622.080000px;}
.x4c_c00324{left:624.000000px;}
.x2e_c00324{left:628.080000px;}
.xc0_c00324{left:630.420000px;}
.x8e_c00324{left:633.000000px;}
.x3a_c00324{left:636.000000px;}
.x18_c00324{left:637.500000px;}
.xcd_c00324{left:640.080000px;}
.xfb_c00324{left:641.580000px;}
.xc_c00324{left:643.080000px;}
.xe9_c00324{left:646.080000px;}
.x8f_c00324{left:649.920000px;}
.x5b_c00324{left:652.500000px;}
.x35_c00324{left:655.500000px;}
.x6b_c00324{left:657.000000px;}
.x3b_c00324{left:658.500000px;}
.x83_c00324{left:660.000000px;}
.xdf_c00324{left:661.080000px;}
.xce_c00324{left:662.580000px;}
.x22_c00324{left:664.920000px;}
.x52_c00324{left:667.080000px;}
.xfe_c00324{left:669.000000px;}
.xee_c00324{left:670.080000px;}
.x98_c00324{left:672.000000px;}
.xb6_c00324{left:676.080000px;}
.x7c_c00324{left:677.580000px;}
.x43_c00324{left:679.920000px;}
.x64_c00324{left:682.500000px;}
.x2f_c00324{left:683.580000px;}
.xc1_c00324{left:685.500000px;}
.x19_c00324{left:687.000000px;}
.xd1_c00324{left:691.920000px;}
.xa0_c00324{left:693.000000px;}
.x23_c00324{left:694.080000px;}
.x90_c00324{left:696.000000px;}
.xb2_c00324{left:697.080000px;}
.xef_c00324{left:700.920000px;}
.x5c_c00324{left:702.000000px;}
.x1_c00324{left:703.080000px;}
.xd_c00324{left:705.420000px;}
.x44_c00324{left:706.920000px;}
.xdc_c00324{left:709.500000px;}
.x84_c00324{left:712.500000px;}
.x24_c00324{left:714.000000px;}
.x99_c00324{left:715.500000px;}
.xfc_c00324{left:717.000000px;}
@media print{
.v0_c00324{vertical-align:0.000000pt;}
.v1_c00324{vertical-align:5.333333pt;}
.ls0_c00324{letter-spacing:0.000000pt;}
.ws0_c00324{word-spacing:-15.012693pt;}
.ws2_c00324{word-spacing:-2.237688pt;}
.ws1_c00324{word-spacing:-0.923373pt;}
.ws3_c00324{word-spacing:0.000000pt;}
._0_c00324{width:6.432931pt;}
.fs8_c00324{font-size:3.040000pt;}
.fs7_c00324{font-size:12.106667pt;}
.fs4_c00324{font-size:16.640000pt;}
.fs1_c00324{font-size:18.133333pt;}
.fs5_c00324{font-size:22.666667pt;}
.fs0_c00324{font-size:25.706667pt;}
.fs6_c00324{font-size:28.746667pt;}
.fs3_c00324{font-size:31.733333pt;}
.fs2_c00324{font-size:34.773333pt;}
.y0_c00324{bottom:0.000000pt;}
.yc6_c00324{bottom:223.773333pt;}
.yc7_c00324{bottom:224.160000pt;}
.yc9_c00324{bottom:225.106667pt;}
.yc5_c00324{bottom:225.693333pt;}
.yc8_c00324{bottom:226.640000pt;}
.yc4_c00324{bottom:227.026667pt;}
.yc1_c00324{bottom:242.440000pt;}
.yc3_c00324{bottom:243.226667pt;}
.yc0_c00324{bottom:243.400000pt;}
.yc2_c00324{bottom:244.360000pt;}
.ybc_c00324{bottom:259.773333pt;}
.ybe_c00324{bottom:261.693333pt;}
.ybd_c00324{bottom:261.706667pt;}
.ybf_c00324{bottom:262.640000pt;}
.yba_c00324{bottom:279.400000pt;}
.yb9_c00324{bottom:280.360000pt;}
.yb8_c00324{bottom:281.306667pt;}
.ybb_c00324{bottom:281.506667pt;}
.yb5_c00324{bottom:295.973333pt;}
.yb6_c00324{bottom:296.733333pt;}
.yb7_c00324{bottom:297.693333pt;}
.yb4_c00324{bottom:298.640000pt;}
.yb3_c00324{bottom:317.106667pt;}
.yb1_c00324{bottom:319.026667pt;}
.yb2_c00324{bottom:320.360000pt;}
.yaf_c00324{bottom:347.973333pt;}
.yb0_c00324{bottom:348.360000pt;}
.yae_c00324{bottom:364.733333pt;}
.ya9_c00324{bottom:365.106667pt;}
.yaa_c00324{bottom:365.693333pt;}
.yad_c00324{bottom:366.066667pt;}
.yac_c00324{bottom:366.640000pt;}
.yab_c00324{bottom:367.026667pt;}
.ya8_c00324{bottom:380.360000pt;}
.ya4_c00324{bottom:382.440000pt;}
.ya7_c00324{bottom:383.026667pt;}
.ya3_c00324{bottom:383.226667pt;}
.ya6_c00324{bottom:383.400000pt;}
.ya5_c00324{bottom:383.973333pt;}
.ya2_c00324{bottom:384.360000pt;}
.ya1_c00324{bottom:398.440000pt;}
.y9f_c00324{bottom:399.773333pt;}
.ya0_c00324{bottom:400.560000pt;}
.y9e_c00324{bottom:401.693333pt;}
.y9b_c00324{bottom:417.106667pt;}
.y9d_c00324{bottom:417.893333pt;}
.y9c_c00324{bottom:418.066667pt;}
.y9a_c00324{bottom:419.026667pt;}
.y97_c00324{bottom:434.066667pt;}
.y99_c00324{bottom:434.440000pt;}
.y98_c00324{bottom:435.226667pt;}
.y96_c00324{bottom:436.360000pt;}
.y94_c00324{bottom:451.026667pt;}
.y92_c00324{bottom:451.773333pt;}
.y95_c00324{bottom:452.560000pt;}
.y90_c00324{bottom:452.733333pt;}
.y93_c00324{bottom:453.306667pt;}
.y8f_c00324{bottom:453.693333pt;}
.y91_c00324{bottom:453.893333pt;}
.y8c_c00324{bottom:470.440000pt;}
.y8e_c00324{bottom:471.026667pt;}
.y8d_c00324{bottom:471.973333pt;}
.y8b_c00324{bottom:472.360000pt;}
.y89_c00324{bottom:486.440000pt;}
.y8a_c00324{bottom:486.640000pt;}
.y87_c00324{bottom:487.773333pt;}
.y88_c00324{bottom:488.360000pt;}
.y86_c00324{bottom:489.693333pt;}
.y81_c00324{bottom:505.106667pt;}
.y82_c00324{bottom:505.893333pt;}
.y85_c00324{bottom:506.066667pt;}
.y83_c00324{bottom:506.640000pt;}
.y84_c00324{bottom:507.026667pt;}
.y7f_c00324{bottom:522.440000pt;}
.y80_c00324{bottom:523.226667pt;}
.y7e_c00324{bottom:524.360000pt;}
.y7c_c00324{bottom:539.773333pt;}
.y79_c00324{bottom:539.973333pt;}
.y7b_c00324{bottom:540.733333pt;}
.y78_c00324{bottom:541.693333pt;}
.y7a_c00324{bottom:541.893333pt;}
.y7d_c00324{bottom:542.640000pt;}
.y74_c00324{bottom:557.106667pt;}
.y75_c00324{bottom:558.066667pt;}
.y76_c00324{bottom:558.440000pt;}
.y73_c00324{bottom:559.026667pt;}
.y77_c00324{bottom:560.360000pt;}
.y6f_c00324{bottom:574.440000pt;}
.y71_c00324{bottom:575.400000pt;}
.y72_c00324{bottom:575.773333pt;}
.y70_c00324{bottom:576.360000pt;}
.y6e_c00324{bottom:592.933333pt;}
.y6c_c00324{bottom:593.106667pt;}
.y6d_c00324{bottom:593.893333pt;}
.y6b_c00324{bottom:595.026667pt;}
.y6a_c00324{bottom:610.440000pt;}
.y69_c00324{bottom:612.360000pt;}
.y68_c00324{bottom:612.560000pt;}
.y67_c00324{bottom:627.400000pt;}
.y63_c00324{bottom:627.773333pt;}
.y65_c00324{bottom:628.560000pt;}
.y66_c00324{bottom:628.733333pt;}
.y64_c00324{bottom:629.693333pt;}
.y60_c00324{bottom:645.106667pt;}
.y5f_c00324{bottom:646.066667pt;}
.y61_c00324{bottom:647.026667pt;}
.y62_c00324{bottom:647.973333pt;}
.y59_c00324{bottom:662.440000pt;}
.y57_c00324{bottom:662.826667pt;}
.y5c_c00324{bottom:663.400000pt;}
.y5e_c00324{bottom:663.773333pt;}
.y5a_c00324{bottom:664.360000pt;}
.y5d_c00324{bottom:664.560000pt;}
.y58_c00324{bottom:665.306667pt;}
.y5b_c00324{bottom:665.693333pt;}
.y54_c00324{bottom:680.733333pt;}
.y53_c00324{bottom:681.106667pt;}
.y55_c00324{bottom:681.893333pt;}
.y56_c00324{bottom:682.640000pt;}
.y52_c00324{bottom:683.026667pt;}
.y4d_c00324{bottom:698.440000pt;}
.y4f_c00324{bottom:699.400000pt;}
.y50_c00324{bottom:699.973333pt;}
.y4e_c00324{bottom:700.360000pt;}
.y51_c00324{bottom:701.306667pt;}
.y49_c00324{bottom:715.773333pt;}
.y4b_c00324{bottom:716.560000pt;}
.y4c_c00324{bottom:716.733333pt;}
.y4a_c00324{bottom:717.693333pt;}
.y48_c00324{bottom:733.106667pt;}
.y46_c00324{bottom:733.893333pt;}
.y47_c00324{bottom:734.640000pt;}
.y45_c00324{bottom:735.026667pt;}
.y42_c00324{bottom:750.440000pt;}
.y40_c00324{bottom:751.226667pt;}
.y41_c00324{bottom:752.360000pt;}
.y44_c00324{bottom:752.733333pt;}
.y43_c00324{bottom:753.693333pt;}
.y3e_c00324{bottom:767.026667pt;}
.y3a_c00324{bottom:767.773333pt;}
.y3b_c00324{bottom:768.560000pt;}
.y3f_c00324{bottom:769.106667pt;}
.y3c_c00324{bottom:769.693333pt;}
.y3d_c00324{bottom:769.893333pt;}
.y39_c00324{bottom:784.360000pt;}
.y34_c00324{bottom:785.106667pt;}
.y32_c00324{bottom:786.066667pt;}
.y35_c00324{bottom:786.440000pt;}
.y33_c00324{bottom:787.026667pt;}
.y36_c00324{bottom:787.226667pt;}
.y38_c00324{bottom:787.973333pt;}
.y37_c00324{bottom:788.360000pt;}
.y2c_c00324{bottom:802.440000pt;}
.y2d_c00324{bottom:802.826667pt;}
.y2e_c00324{bottom:803.773333pt;}
.y31_c00324{bottom:804.560000pt;}
.y30_c00324{bottom:805.306667pt;}
.y2f_c00324{bottom:805.693333pt;}
.y25_c00324{bottom:819.026667pt;}
.y2b_c00324{bottom:820.733333pt;}
.y29_c00324{bottom:821.106667pt;}
.y26_c00324{bottom:821.693333pt;}
.y2a_c00324{bottom:821.893333pt;}
.y28_c00324{bottom:822.066667pt;}
.y27_c00324{bottom:823.026667pt;}
.y21_c00324{bottom:837.493333pt;}
.y20_c00324{bottom:838.440000pt;}
.y24_c00324{bottom:839.226667pt;}
.y23_c00324{bottom:839.400000pt;}
.y22_c00324{bottom:840.360000pt;}
.y1d_c00324{bottom:855.773333pt;}
.y1e_c00324{bottom:857.693333pt;}
.y1f_c00324{bottom:857.893333pt;}
.y1c_c00324{bottom:872.360000pt;}
.y1b_c00324{bottom:873.106667pt;}
.y19_c00324{bottom:875.026667pt;}
.y1a_c00324{bottom:875.226667pt;}
.y16_c00324{bottom:890.440000pt;}
.y18_c00324{bottom:890.640000pt;}
.y14_c00324{bottom:891.226667pt;}
.y13_c00324{bottom:892.360000pt;}
.y15_c00324{bottom:892.560000pt;}
.y17_c00324{bottom:893.306667pt;}
.y12_c00324{bottom:907.026667pt;}
.y11_c00324{bottom:907.773333pt;}
.ye_c00324{bottom:908.733333pt;}
.yf_c00324{bottom:909.693333pt;}
.y10_c00324{bottom:909.893333pt;}
.y9_c00324{bottom:925.106667pt;}
.yd_c00324{bottom:926.066667pt;}
.y8_c00324{bottom:927.026667pt;}
.ya_c00324{bottom:927.226667pt;}
.yb_c00324{bottom:927.973333pt;}
.yc_c00324{bottom:928.360000pt;}
.y7_c00324{bottom:942.440000pt;}
.y3_c00324{bottom:942.826667pt;}
.y6_c00324{bottom:943.773333pt;}
.y4_c00324{bottom:944.360000pt;}
.y5_c00324{bottom:945.693333pt;}
.y1_c00324{bottom:977.693333pt;}
.y2_c00324{bottom:978.266667pt;}
.ha_c00324{height:3.739141pt;}
.h9_c00324{height:14.890964pt;}
.h5_c00324{height:20.466875pt;}
.h2_c00324{height:22.303646pt;}
.h6_c00324{height:27.879557pt;}
.h1_c00324{height:31.618698pt;}
.h7_c00324{height:35.357839pt;}
.h8_c00324{height:36.952031pt;}
.h4_c00324{height:39.031380pt;}
.h3_c00324{height:42.770521pt;}
.h0_c00324{height:1186.666667pt;}
.w0_c00324{width:782.666667pt;}
.x0_c00324{left:0.000000pt;}
.x25_c00324{left:133.333333pt;}
.x3_c00324{left:134.293333pt;}
.x1a_c00324{left:135.426667pt;}
.xff_c00324{left:136.373333pt;}
.xac_c00324{left:148.000000pt;}
.xc8_c00324{left:149.333333pt;}
.xf6_c00324{left:151.040000pt;}
.x85_c00324{left:153.333333pt;}
.xd8_c00324{left:154.666667pt;}
.xf0_c00324{left:161.333333pt;}
.xc2_c00324{left:165.333333pt;}
.x5d_c00324{left:168.000000pt;}
.x1b_c00324{left:172.000000pt;}
.xa7_c00324{left:176.000000pt;}
.x26_c00324{left:177.706667pt;}
.x45_c00324{left:178.666667pt;}
.x53_c00324{left:180.000000pt;}
.xb3_c00324{left:182.666667pt;}
.x7d_c00324{left:186.666667pt;}
.x1c_c00324{left:188.000000pt;}
.x5e_c00324{left:189.706667pt;}
.x36_c00324{left:192.960000pt;}
.xf3_c00324{left:194.293333pt;}
.x91_c00324{left:196.000000pt;}
.x74_c00324{left:197.706667pt;}
.x46_c00324{left:198.666667pt;}
.x54_c00324{left:200.000000pt;}
.xa1_c00324{left:201.333333pt;}
.x4_c00324{left:203.626667pt;}
.x27_c00324{left:208.000000pt;}
.x7e_c00324{left:209.706667pt;}
.x6c_c00324{left:210.666667pt;}
.x4d_c00324{left:211.626667pt;}
.x5f_c00324{left:215.040000pt;}
.xdd_c00324{left:216.000000pt;}
.x65_c00324{left:217.333333pt;}
.x9a_c00324{left:219.040000pt;}
.x75_c00324{left:220.373333pt;}
.xe_c00324{left:221.333333pt;}
.xd4_c00324{left:224.000000pt;}
.xe5_c00324{left:225.706667pt;}
.x86_c00324{left:226.666667pt;}
.x6d_c00324{left:230.666667pt;}
.x5_c00324{left:232.000000pt;}
.xea_c00324{left:233.706667pt;}
.x7f_c00324{left:234.666667pt;}
.xc9_c00324{left:236.000000pt;}
.x1d_c00324{left:237.333333pt;}
.xa2_c00324{left:239.040000pt;}
.xf7_c00324{left:241.333333pt;}
.x9b_c00324{left:242.293333pt;}
.x55_c00324{left:245.333333pt;}
.x28_c00324{left:246.666667pt;}
.xb4_c00324{left:248.373333pt;}
.x6e_c00324{left:250.666667pt;}
.xf_c00324{left:253.333333pt;}
.x1e_c00324{left:255.626667pt;}
.xb7_c00324{left:257.333333pt;}
.xca_c00324{left:259.040000pt;}
.xa3_c00324{left:260.000000pt;}
.x47_c00324{left:261.706667pt;}
.x60_c00324{left:263.626667pt;}
.xc3_c00324{left:264.960000pt;}
.xeb_c00324{left:267.626667pt;}
.x3c_c00324{left:271.800000pt;}
.x92_c00324{left:273.333333pt;}
.x10_c00324{left:274.293333pt;}
.x29_c00324{left:277.333333pt;}
.xa8_c00324{left:278.293333pt;}
.xb8_c00324{left:280.000000pt;}
.x66_c00324{left:282.293333pt;}
.x6_c00324{left:283.626667pt;}
.xcb_c00324{left:285.333333pt;}
.xd9_c00324{left:287.040000pt;}
.xbc_c00324{left:289.333333pt;}
.x93_c00324{left:290.293333pt;}
.x61_c00324{left:293.333333pt;}
.x76_c00324{left:296.000000pt;}
.x87_c00324{left:297.706667pt;}
.x30_c00324{left:300.000000pt;}
.x56_c00324{left:301.706667pt;}
.x1f_c00324{left:303.626667pt;}
.xa4_c00324{left:306.666667pt;}
.xe6_c00324{left:308.000000pt;}
.x3d_c00324{left:310.666667pt;}
.xfd_c00324{left:312.000000pt;}
.xd2_c00324{left:314.293333pt;}
.x67_c00324{left:315.626667pt;}
.x31_c00324{left:320.000000pt;}
.x88_c00324{left:321.333333pt;}
.x80_c00324{left:322.666667pt;}
.x9c_c00324{left:324.000000pt;}
.x57_c00324{left:325.333333pt;}
.x11_c00324{left:327.040000pt;}
.xf4_c00324{left:328.000000pt;}
.xe0_c00324{left:328.960000pt;}
.xbd_c00324{left:332.000000pt;}
.x77_c00324{left:333.706667pt;}
.xde_c00324{left:335.040000pt;}
.xa9_c00324{left:341.333333pt;}
.xf8_c00324{left:343.626667pt;}
.x4e_c00324{left:345.333333pt;}
.x2a_c00324{left:346.666667pt;}
.xe1_c00324{left:347.626667pt;}
.x89_c00324{left:351.626667pt;}
.xcc_c00324{left:353.333333pt;}
.x2_c00324{left:354.666667pt;}
.x48_c00324{left:356.000000pt;}
.x7_c00324{left:357.333333pt;}
.x78_c00324{left:358.666667pt;}
.x3e_c00324{left:360.000000pt;}
.x2b_c00324{left:364.000000pt;}
.xf1_c00324{left:365.333333pt;}
.x12_c00324{left:366.666667pt;}
.x8a_c00324{left:368.000000pt;}
.xec_c00324{left:370.666667pt;}
.xd5_c00324{left:372.000000pt;}
.xad_c00324{left:376.373333pt;}
.x37_c00324{left:377.706667pt;}
.xf5_c00324{left:378.666667pt;}
.x20_c00324{left:380.000000pt;}
.x6f_c00324{left:381.706667pt;}
.x94_c00324{left:382.666667pt;}
.x13_c00324{left:383.626667pt;}
.x32_c00324{left:386.666667pt;}
.x8_c00324{left:390.293333pt;}
.xe2_c00324{left:392.000000pt;}
.xe7_c00324{left:393.333333pt;}
.x58_c00324{left:394.666667pt;}
.x3f_c00324{left:397.133333pt;}
.x95_c00324{left:400.373333pt;}
.xae_c00324{left:401.333333pt;}
.x38_c00324{left:402.666667pt;}
.x14_c00324{left:404.373333pt;}
.x70_c00324{left:407.040000pt;}
.xe3_c00324{left:408.000000pt;}
.xa5_c00324{left:410.666667pt;}
.x81_c00324{left:412.000000pt;}
.xd6_c00324{left:413.706667pt;}
.x8b_c00324{left:416.373333pt;}
.xb5_c00324{left:418.293333pt;}
.xbe_c00324{left:420.000000pt;}
.x49_c00324{left:421.706667pt;}
.x68_c00324{left:422.666667pt;}
.x4f_c00324{left:425.333333pt;}
.xd3_c00324{left:426.666667pt;}
.x100_c00324{left:429.333333pt;}
.xc4_c00324{left:430.666667pt;}
.x59_c00324{left:432.000000pt;}
.x40_c00324{left:433.333333pt;}
.xf2_c00324{left:434.666667pt;}
.x2c_c00324{left:436.000000pt;}
.x71_c00324{left:441.706667pt;}
.xb9_c00324{left:445.333333pt;}
.x9_c00324{left:446.293333pt;}
.x41_c00324{left:448.373333pt;}
.x9d_c00324{left:449.706667pt;}
.xaa_c00324{left:450.666667pt;}
.x15_c00324{left:453.333333pt;}
.xc5_c00324{left:455.626667pt;}
.x8c_c00324{left:456.960000pt;}
.xe4_c00324{left:458.293333pt;}
.x4a_c00324{left:460.000000pt;}
.xcf_c00324{left:461.706667pt;}
.x69_c00324{left:464.373333pt;}
.xd7_c00324{left:466.293333pt;}
.xab_c00324{left:467.240000pt;}
.x9e_c00324{left:470.666667pt;}
.x42_c00324{left:473.706667pt;}
.xda_c00324{left:474.666667pt;}
.x62_c00324{left:476.000000pt;}
.x33_c00324{left:477.333333pt;}
.x21_c00324{left:478.293333pt;}
.xf9_c00324{left:480.000000pt;}
.xbf_c00324{left:481.906667pt;}
.x16_c00324{left:483.040000pt;}
.xaf_c00324{left:484.000000pt;}
.x82_c00324{left:486.293333pt;}
.xd0_c00324{left:488.000000pt;}
.x39_c00324{left:488.960000pt;}
.xed_c00324{left:489.906667pt;}
.xba_c00324{left:492.960000pt;}
.xdb_c00324{left:494.666667pt;}
.x34_c00324{left:496.373333pt;}
.x72_c00324{left:497.333333pt;}
.x79_c00324{left:498.666667pt;}
.xfa_c00324{left:503.626667pt;}
.x2d_c00324{left:505.333333pt;}
.xc6_c00324{left:507.040000pt;}
.xbb_c00324{left:508.960000pt;}
.xe8_c00324{left:511.040000pt;}
.xb0_c00324{left:512.373333pt;}
.x4b_c00324{left:513.333333pt;}
.x50_c00324{left:514.666667pt;}
.x96_c00324{left:516.373333pt;}
.x73_c00324{left:518.666667pt;}
.x7a_c00324{left:521.333333pt;}
.x8d_c00324{left:523.800000pt;}
.x51_c00324{left:525.333333pt;}
.xa6_c00324{left:526.293333pt;}
.xa_c00324{left:529.333333pt;}
.x17_c00324{left:530.666667pt;}
.x6a_c00324{left:532.000000pt;}
.x9f_c00324{left:535.240000pt;}
.x101_c00324{left:536.373333pt;}
.x5a_c00324{left:537.333333pt;}
.xc7_c00324{left:541.333333pt;}
.xb1_c00324{left:542.666667pt;}
.x97_c00324{left:544.960000pt;}
.xb_c00324{left:550.293333pt;}
.x7b_c00324{left:552.000000pt;}
.x63_c00324{left:552.960000pt;}
.x4c_c00324{left:554.666667pt;}
.x2e_c00324{left:558.293333pt;}
.xc0_c00324{left:560.373333pt;}
.x8e_c00324{left:562.666667pt;}
.x3a_c00324{left:565.333333pt;}
.x18_c00324{left:566.666667pt;}
.xcd_c00324{left:568.960000pt;}
.xfb_c00324{left:570.293333pt;}
.xc_c00324{left:571.626667pt;}
.xe9_c00324{left:574.293333pt;}
.x8f_c00324{left:577.706667pt;}
.x5b_c00324{left:580.000000pt;}
.x35_c00324{left:582.666667pt;}
.x6b_c00324{left:584.000000pt;}
.x3b_c00324{left:585.333333pt;}
.x83_c00324{left:586.666667pt;}
.xdf_c00324{left:587.626667pt;}
.xce_c00324{left:588.960000pt;}
.x22_c00324{left:591.040000pt;}
.x52_c00324{left:592.960000pt;}
.xfe_c00324{left:594.666667pt;}
.xee_c00324{left:595.626667pt;}
.x98_c00324{left:597.333333pt;}
.xb6_c00324{left:600.960000pt;}
.x7c_c00324{left:602.293333pt;}
.x43_c00324{left:604.373333pt;}
.x64_c00324{left:606.666667pt;}
.x2f_c00324{left:607.626667pt;}
.xc1_c00324{left:609.333333pt;}
.x19_c00324{left:610.666667pt;}
.xd1_c00324{left:615.040000pt;}
.xa0_c00324{left:616.000000pt;}
.x23_c00324{left:616.960000pt;}
.x90_c00324{left:618.666667pt;}
.xb2_c00324{left:619.626667pt;}
.xef_c00324{left:623.040000pt;}
.x5c_c00324{left:624.000000pt;}
.x1_c00324{left:624.960000pt;}
.xd_c00324{left:627.040000pt;}
.x44_c00324{left:628.373333pt;}
.xdc_c00324{left:630.666667pt;}
.x84_c00324{left:633.333333pt;}
.x24_c00324{left:634.666667pt;}
.x99_c00324{left:636.000000pt;}
.xfc_c00324{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f2502d5a23a04dec2e9592a8.woff2')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mce_c00325{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.mbc_c00325{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.mf0_c00325{transform:matrix(0.348926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348926,0.000000,0.000000,0.250000,0,0);}
.ma8_c00325{transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);}
.m6c_c00325{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);}
.mdb_c00325{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m0_c00325{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.mbe_c00325{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mdc_c00325{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m9d_c00325{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.mc8_c00325{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m25_c00325{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m1b_c00325{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m16_c00325{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m2f_c00325{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.mb0_c00325{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mad_c00325{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mae_c00325{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m74_c00325{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m5a_c00325{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.mba_c00325{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.mda_c00325{transform:matrix(0.398006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398006,0.000000,0.000000,0.250000,0,0);}
.mb1_c00325{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_c00325{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.md6_c00325{transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);}
.m9c_c00325{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.ma_c00325{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m6e_c00325{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.med_c00325{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m4c_c00325{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mb8_c00325{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mb3_c00325{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.meb_c00325{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mc7_c00325{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m5_c00325{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m97_c00325{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m73_c00325{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m11_c00325{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m85_c00325{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m81_c00325{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m44_c00325{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m6b_c00325{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.ma4_c00325{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m84_c00325{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m37_c00325{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m8e_c00325{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.ma5_c00325{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m6f_c00325{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m66_c00325{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m92_c00325{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mb6_c00325{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m98_c00325{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.m6a_c00325{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m13_c00325{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.mca_c00325{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m5b_c00325{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mc6_c00325{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.me7_c00325{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m59_c00325{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.maf_c00325{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m43_c00325{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.me0_c00325{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.mac_c00325{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m52_c00325{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m29_c00325{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m47_c00325{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.mb4_c00325{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.ma3_c00325{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.ma1_c00325{transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);}
.m4e_c00325{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m28_c00325{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.me8_c00325{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.mef_c00325{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m80_c00325{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.m77_c00325{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m8f_c00325{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.ma0_c00325{transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);}
.mb9_c00325{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m70_c00325{transform:matrix(0.454622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454622,0.000000,0.000000,0.250000,0,0);}
.m99_c00325{transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);}
.md8_c00325{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m96_c00325{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mea_c00325{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m72_c00325{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m36_c00325{transform:matrix(0.461345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461345,0.000000,0.000000,0.250000,0,0);}
.m33_c00325{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.m9a_c00325{transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);}
.m19_c00325{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.ma7_c00325{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m75_c00325{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mb2_c00325{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.md7_c00325{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m3f_c00325{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mcc_c00325{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m8d_c00325{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mb5_c00325{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.mbb_c00325{transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);}
.m91_c00325{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m67_c00325{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m40_c00325{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mf_c00325{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mdf_c00325{transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);}
.m31_c00325{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mb_c00325{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m1d_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);}
.md9_c00325{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.me1_c00325{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m78_c00325{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m63_c00325{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.me3_c00325{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m23_c00325{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.md5_c00325{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m3e_c00325{transform:matrix(0.510668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510668,0.000000,0.000000,0.250000,0,0);}
.m94_c00325{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m58_c00325{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m7e_c00325{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.me4_c00325{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m4_c00325{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m93_c00325{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m8a_c00325{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m88_c00325{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m64_c00325{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m12_c00325{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m18_c00325{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m87_c00325{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m2b_c00325{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m22_c00325{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.mc1_c00325{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m54_c00325{transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);}
.m95_c00325{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m50_c00325{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m39_c00325{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m5f_c00325{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m2e_c00325{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m7d_c00325{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mdd_c00325{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.me_c00325{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.md_c00325{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m8b_c00325{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mcd_c00325{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m7_c00325{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m65_c00325{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.ma9_c00325{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m8_c00325{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m32_c00325{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mc4_c00325{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mc2_c00325{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m9e_c00325{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m71_c00325{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m53_c00325{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m46_c00325{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);}
.m9_c00325{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m68_c00325{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m76_c00325{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m8c_c00325{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.mc0_c00325{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m89_c00325{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m26_c00325{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m86_c00325{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m9b_c00325{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.md2_c00325{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mcb_c00325{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.md0_c00325{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m3c_c00325{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m5c_c00325{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m6d_c00325{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m57_c00325{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m82_c00325{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m4b_c00325{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m35_c00325{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m34_c00325{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m2c_c00325{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mc5_c00325{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m15_c00325{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.ma6_c00325{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m2_c00325{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m10_c00325{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m24_c00325{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m4f_c00325{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m49_c00325{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.mee_c00325{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mbd_c00325{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m21_c00325{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m4d_c00325{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m62_c00325{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m42_c00325{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.md3_c00325{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mcf_c00325{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.mc9_c00325{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.m1c_c00325{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m27_c00325{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.me6_c00325{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);}
.m55_c00325{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m1a_c00325{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m7a_c00325{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m20_c00325{transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);}
.mde_c00325{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m79_c00325{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m38_c00325{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mc3_c00325{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m51_c00325{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.m17_c00325{transform:matrix(0.597866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597866,0.000000,0.000000,0.250000,0,0);}
.m7c_c00325{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m3d_c00325{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);}
.m30_c00325{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.me9_c00325{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m7f_c00325{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m61_c00325{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m7b_c00325{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.m69_c00325{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m1_c00325{transform:matrix(0.619853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619853,0.000000,0.000000,0.250000,0,0);}
.m14_c00325{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m90_c00325{transform:matrix(0.630588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630588,0.000000,0.000000,0.250000,0,0);}
.m1e_c00325{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.m45_c00325{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.me2_c00325{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m5e_c00325{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.mc_c00325{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m6_c00325{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.me5_c00325{transform:matrix(0.675481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675481,0.000000,0.000000,0.250000,0,0);}
.m3a_c00325{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m48_c00325{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m56_c00325{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m5d_c00325{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m1f_c00325{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.md4_c00325{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m2d_c00325{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m4a_c00325{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.maa_c00325{transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);}
.m3_c00325{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mb7_c00325{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.mec_c00325{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m2a_c00325{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m83_c00325{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.ma2_c00325{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.m60_c00325{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m9f_c00325{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m41_c00325{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m3b_c00325{transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);}
.md1_c00325{transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);}
.mab_c00325{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-16.889280px;}
.ws1_c00325{word-spacing:0.000000px;}
._0_c00325{width:6.522671px;}
.fc0_c00325{color:transparent;}
.fs7_c00325{font-size:3.420000px;}
.fs3_c00325{font-size:18.720000px;}
.fs1_c00325{font-size:20.400000px;}
.fs4_c00325{font-size:25.500000px;}
.fs2_c00325{font-size:28.920000px;}
.fs5_c00325{font-size:32.340000px;}
.fs0_c00325{font-size:35.700000px;}
.fs6_c00325{font-size:39.120000px;}
.y0_c00325{bottom:0.000000px;}
.yc0_c00325{bottom:248.745000px;}
.yc5_c00325{bottom:249.180000px;}
.yc3_c00325{bottom:249.825000px;}
.yc4_c00325{bottom:250.245000px;}
.yc2_c00325{bottom:250.905000px;}
.yc1_c00325{bottom:251.130000px;}
.ybc_c00325{bottom:268.245000px;}
.ybd_c00325{bottom:269.745000px;}
.ybf_c00325{bottom:270.630000px;}
.ybb_c00325{bottom:271.470000px;}
.ybe_c00325{bottom:271.905000px;}
.yb9_c00325{bottom:288.405000px;}
.yb8_c00325{bottom:289.245000px;}
.yb7_c00325{bottom:289.905000px;}
.yba_c00325{bottom:290.130000px;}
.yb5_c00325{bottom:290.970000px;}
.yb6_c00325{bottom:291.405000px;}
.yb3_c00325{bottom:310.245000px;}
.yb2_c00325{bottom:310.905000px;}
.yb4_c00325{bottom:312.405000px;}
.yaa_c00325{bottom:328.245000px;}
.yac_c00325{bottom:328.470000px;}
.yab_c00325{bottom:328.680000px;}
.yb0_c00325{bottom:329.745000px;}
.yae_c00325{bottom:330.405000px;}
.yad_c00325{bottom:330.630000px;}
.yb1_c00325{bottom:330.825000px;}
.yaf_c00325{bottom:331.470000px;}
.ya7_c00325{bottom:348.180000px;}
.ya6_c00325{bottom:349.905000px;}
.ya5_c00325{bottom:350.130000px;}
.ya9_c00325{bottom:350.970000px;}
.ya8_c00325{bottom:351.405000px;}
.ya0_c00325{bottom:367.680000px;}
.ya2_c00325{bottom:367.905000px;}
.ya3_c00325{bottom:368.745000px;}
.y9f_c00325{bottom:369.405000px;}
.ya1_c00325{bottom:369.825000px;}
.ya4_c00325{bottom:370.905000px;}
.y9d_c00325{bottom:388.245000px;}
.y9c_c00325{bottom:390.405000px;}
.y9e_c00325{bottom:390.630000px;}
.y9a_c00325{bottom:407.745000px;}
.y98_c00325{bottom:409.905000px;}
.y9b_c00325{bottom:410.130000px;}
.y99_c00325{bottom:411.420000px;}
.y97_c00325{bottom:427.245000px;}
.y94_c00325{bottom:428.325000px;}
.y95_c00325{bottom:429.405000px;}
.y96_c00325{bottom:430.470000px;}
.y93_c00325{bottom:447.825000px;}
.y91_c00325{bottom:448.905000px;}
.y92_c00325{bottom:449.970000px;}
.y8e_c00325{bottom:467.745000px;}
.y90_c00325{bottom:469.470000px;}
.y8f_c00325{bottom:469.905000px;}
.y8c_c00325{bottom:487.245000px;}
.y8d_c00325{bottom:488.130000px;}
.y8b_c00325{bottom:489.405000px;}
.y8a_c00325{bottom:505.905000px;}
.y89_c00325{bottom:506.745000px;}
.y87_c00325{bottom:508.905000px;}
.y88_c00325{bottom:508.920000px;}
.y85_c00325{bottom:526.245000px;}
.y84_c00325{bottom:527.325000px;}
.y86_c00325{bottom:528.405000px;}
.y82_c00325{bottom:545.745000px;}
.y80_c00325{bottom:546.630000px;}
.y83_c00325{bottom:546.825000px;}
.y7f_c00325{bottom:547.905000px;}
.y81_c00325{bottom:547.920000px;}
.y7e_c00325{bottom:564.405000px;}
.y7d_c00325{bottom:565.245000px;}
.y7b_c00325{bottom:583.905000px;}
.y78_c00325{bottom:586.245000px;}
.y7a_c00325{bottom:587.325000px;}
.y7c_c00325{bottom:588.405000px;}
.y79_c00325{bottom:588.420000px;}
.y74_c00325{bottom:604.680000px;}
.y77_c00325{bottom:606.630000px;}
.y76_c00325{bottom:607.470000px;}
.y75_c00325{bottom:607.905000px;}
.y73_c00325{bottom:623.745000px;}
.y6e_c00325{bottom:624.825000px;}
.y72_c00325{bottom:625.245000px;}
.y6f_c00325{bottom:625.905000px;}
.y70_c00325{bottom:626.130000px;}
.y71_c00325{bottom:627.405000px;}
.y6c_c00325{bottom:642.405000px;}
.y6d_c00325{bottom:644.745000px;}
.y6b_c00325{bottom:645.630000px;}
.y6a_c00325{bottom:646.905000px;}
.y66_c00325{bottom:664.245000px;}
.y69_c00325{bottom:665.325000px;}
.y67_c00325{bottom:666.405000px;}
.y68_c00325{bottom:666.630000px;}
.y64_c00325{bottom:683.745000px;}
.y65_c00325{bottom:684.825000px;}
.y62_c00325{bottom:685.905000px;}
.y63_c00325{bottom:686.130000px;}
.y61_c00325{bottom:702.405000px;}
.y5c_c00325{bottom:703.245000px;}
.y5e_c00325{bottom:705.405000px;}
.y60_c00325{bottom:705.630000px;}
.y5d_c00325{bottom:706.470000px;}
.y5f_c00325{bottom:706.905000px;}
.y58_c00325{bottom:723.825000px;}
.y59_c00325{bottom:724.905000px;}
.y5a_c00325{bottom:725.130000px;}
.y5b_c00325{bottom:725.970000px;}
.y56_c00325{bottom:743.745000px;}
.y55_c00325{bottom:744.630000px;}
.y54_c00325{bottom:745.905000px;}
.y57_c00325{bottom:746.970000px;}
.y53_c00325{bottom:761.745000px;}
.y52_c00325{bottom:763.245000px;}
.y51_c00325{bottom:764.970000px;}
.y50_c00325{bottom:765.405000px;}
.y4c_c00325{bottom:782.325000px;}
.y4e_c00325{bottom:782.745000px;}
.y4b_c00325{bottom:783.630000px;}
.y4f_c00325{bottom:784.050000px;}
.y4d_c00325{bottom:784.905000px;}
.y4a_c00325{bottom:801.825000px;}
.y45_c00325{bottom:802.245000px;}
.y47_c00325{bottom:803.130000px;}
.y48_c00325{bottom:803.325000px;}
.y49_c00325{bottom:803.970000px;}
.y46_c00325{bottom:804.405000px;}
.y42_c00325{bottom:821.745000px;}
.y44_c00325{bottom:822.825000px;}
.y41_c00325{bottom:823.905000px;}
.y43_c00325{bottom:824.970000px;}
.y3b_c00325{bottom:840.405000px;}
.y3c_c00325{bottom:842.325000px;}
.y3f_c00325{bottom:842.745000px;}
.y3d_c00325{bottom:843.405000px;}
.y40_c00325{bottom:843.630000px;}
.y3e_c00325{bottom:844.470000px;}
.y3a_c00325{bottom:844.905000px;}
.y39_c00325{bottom:863.130000px;}
.y38_c00325{bottom:863.970000px;}
.y37_c00325{bottom:864.405000px;}
.y36_c00325{bottom:883.905000px;}
.y33_c00325{bottom:898.905000px;}
.y35_c00325{bottom:899.745000px;}
.y30_c00325{bottom:899.970000px;}
.y2f_c00325{bottom:901.245000px;}
.y32_c00325{bottom:902.130000px;}
.y34_c00325{bottom:902.970000px;}
.y31_c00325{bottom:903.405000px;}
.y2d_c00325{bottom:920.745000px;}
.y2e_c00325{bottom:921.630000px;}
.y2c_c00325{bottom:922.905000px;}
.y26_c00325{bottom:940.245000px;}
.y2a_c00325{bottom:941.325000px;}
.y27_c00325{bottom:941.970000px;}
.y29_c00325{bottom:942.405000px;}
.y2b_c00325{bottom:942.630000px;}
.y28_c00325{bottom:943.470000px;}
.y24_c00325{bottom:960.825000px;}
.y22_c00325{bottom:961.905000px;}
.y25_c00325{bottom:962.130000px;}
.y23_c00325{bottom:962.970000px;}
.y21_c00325{bottom:963.405000px;}
.y1e_c00325{bottom:978.405000px;}
.y1c_c00325{bottom:979.245000px;}
.y20_c00325{bottom:980.970000px;}
.y1b_c00325{bottom:981.405000px;}
.y1d_c00325{bottom:981.630000px;}
.y1f_c00325{bottom:982.470000px;}
.y18_c00325{bottom:998.745000px;}
.y1a_c00325{bottom:999.825000px;}
.y16_c00325{bottom:1000.905000px;}
.y15_c00325{bottom:1001.130000px;}
.y19_c00325{bottom:1001.970000px;}
.y17_c00325{bottom:1002.405000px;}
.y12_c00325{bottom:1018.470000px;}
.y13_c00325{bottom:1019.745000px;}
.y14_c00325{bottom:1020.405000px;}
.y11_c00325{bottom:1021.905000px;}
.ye_c00325{bottom:1037.970000px;}
.yd_c00325{bottom:1038.405000px;}
.ya_c00325{bottom:1038.825000px;}
.y9_c00325{bottom:1039.245000px;}
.y10_c00325{bottom:1040.130000px;}
.yc_c00325{bottom:1040.325000px;}
.yf_c00325{bottom:1040.970000px;}
.y8_c00325{bottom:1041.405000px;}
.yb_c00325{bottom:1042.470000px;}
.y5_c00325{bottom:1058.745000px;}
.y4_c00325{bottom:1059.630000px;}
.y7_c00325{bottom:1059.825000px;}
.y6_c00325{bottom:1060.470000px;}
.y3_c00325{bottom:1060.905000px;}
.y1_c00325{bottom:1097.745000px;}
.y2_c00325{bottom:1099.050000px;}
.h8_c00325{height:4.206533px;}
.h4_c00325{height:23.025234px;}
.h2_c00325{height:25.091602px;}
.h5_c00325{height:31.364502px;}
.h3_c00325{height:35.571035px;}
.h6_c00325{height:39.777568px;}
.h1_c00325{height:43.910303px;}
.h7_c00325{height:48.116836px;}
.h0_c00325{height:1335.000000px;}
.w0_c00325{width:880.500000px;}
.x0_c00325{left:0.000000px;}
.xc8_c00325{left:151.500000px;}
.x1e_c00325{left:153.000000px;}
.x1_c00325{left:154.500000px;}
.x8e_c00325{left:166.500000px;}
.xd3_c00325{left:168.000000px;}
.x6c_c00325{left:169.500000px;}
.x7c_c00325{left:175.500000px;}
.x102_c00325{left:179.580000px;}
.xf_c00325{left:183.000000px;}
.x6d_c00325{left:189.000000px;}
.x98_c00325{left:190.500000px;}
.x1f_c00325{left:195.000000px;}
.x27_c00325{left:198.420000px;}
.xfb_c00325{left:199.500000px;}
.x8f_c00325{left:202.080000px;}
.xeb_c00325{left:204.000000px;}
.x6e_c00325{left:205.500000px;}
.x55_c00325{left:206.580000px;}
.x99_c00325{left:208.500000px;}
.xcd_c00325{left:210.420000px;}
.x61_c00325{left:211.500000px;}
.x49_c00325{left:214.500000px;}
.x3e_c00325{left:215.580000px;}
.x31_c00325{left:217.500000px;}
.xfc_c00325{left:219.420000px;}
.x3_c00325{left:220.500000px;}
.x90_c00325{left:222.420000px;}
.xf0_c00325{left:223.500000px;}
.x83_c00325{left:225.000000px;}
.x10_c00325{left:226.080000px;}
.x105_c00325{left:227.580000px;}
.xda_c00325{left:230.580000px;}
.xaf_c00325{left:232.500000px;}
.x109_c00325{left:233.580000px;}
.x4a_c00325{left:234.855000px;}
.xbe_c00325{left:238.500000px;}
.x7d_c00325{left:241.080000px;}
.x74_c00325{left:243.000000px;}
.xf5_c00325{left:246.000000px;}
.xa0_c00325{left:248.580000px;}
.x91_c00325{left:250.500000px;}
.x56_c00325{left:253.500000px;}
.xdb_c00325{left:255.000000px;}
.x106_c00325{left:256.500000px;}
.x62_c00325{left:259.500000px;}
.xb4_c00325{left:260.580000px;}
.xbf_c00325{left:262.080000px;}
.xa7_c00325{left:264.000000px;}
.xf1_c00325{left:265.920000px;}
.x4_c00325{left:267.000000px;}
.xed_c00325{left:268.080000px;}
.x11_c00325{left:269.580000px;}
.x6f_c00325{left:271.500000px;}
.xde_c00325{left:272.580000px;}
.xe8_c00325{left:276.420000px;}
.x63_c00325{left:277.920000px;}
.x32_c00325{left:280.080000px;}
.x3f_c00325{left:282.000000px;}
.xa8_c00325{left:283.080000px;}
.x84_c00325{left:285.420000px;}
.x92_c00325{left:286.920000px;}
.xd6_c00325{left:288.420000px;}
.x20_c00325{left:289.500000px;}
.x10a_c00325{left:290.580000px;}
.x28_c00325{left:296.580000px;}
.x57_c00325{left:298.500000px;}
.x12_c00325{left:300.420000px;}
.x33_c00325{left:302.355000px;}
.xc5_c00325{left:304.080000px;}
.xb5_c00325{left:306.000000px;}
.xec_c00325{left:307.500000px;}
.xce_c00325{left:309.000000px;}
.x7e_c00325{left:312.000000px;}
.xdc_c00325{left:313.500000px;}
.xc0_c00325{left:318.420000px;}
.xc9_c00325{left:321.420000px;}
.xc6_c00325{left:322.920000px;}
.x85_c00325{left:324.000000px;}
.x64_c00325{left:325.080000px;}
.xe3_c00325{left:327.000000px;}
.xb6_c00325{left:328.500000px;}
.xd7_c00325{left:329.580000px;}
.xdf_c00325{left:331.500000px;}
.xa9_c00325{left:333.000000px;}
.x4b_c00325{left:334.920000px;}
.xa1_c00325{left:337.500000px;}
.x5_c00325{left:339.000000px;}
.x103_c00325{left:340.920000px;}
.xb7_c00325{left:342.000000px;}
.xd4_c00325{left:343.275000px;}
.x75_c00325{left:348.000000px;}
.x21_c00325{left:349.080000px;}
.x7f_c00325{left:351.420000px;}
.x70_c00325{left:354.000000px;}
.xd8_c00325{left:355.920000px;}
.xfd_c00325{left:357.000000px;}
.xc1_c00325{left:358.920000px;}
.xb0_c00325{left:361.500000px;}
.x4c_c00325{left:363.420000px;}
.x76_c00325{left:366.000000px;}
.xdd_c00325{left:367.080000px;}
.xcf_c00325{left:368.580000px;}
.x10b_c00325{left:371.775000px;}
.x13_c00325{left:373.500000px;}
.x86_c00325{left:376.500000px;}
.x65_c00325{left:379.500000px;}
.x71_c00325{left:382.500000px;}
.xd5_c00325{left:384.000000px;}
.xb8_c00325{left:385.920000px;}
.x29_c00325{left:387.000000px;}
.x93_c00325{left:388.080000px;}
.x40_c00325{left:390.000000px;}
.xa2_c00325{left:391.920000px;}
.x6_c00325{left:393.000000px;}
.xf6_c00325{left:394.275000px;}
.x87_c00325{left:396.420000px;}
.xe0_c00325{left:397.500000px;}
.xc7_c00325{left:399.000000px;}
.xe4_c00325{left:400.500000px;}
.x34_c00325{left:402.000000px;}
.xff_c00325{left:403.500000px;}
.x2_c00325{left:405.000000px;}
.x9a_c00325{left:408.000000px;}
.x2a_c00325{left:409.080000px;}
.x7_c00325{left:411.420000px;}
.x10c_c00325{left:412.500000px;}
.x14_c00325{left:413.580000px;}
.xe5_c00325{left:417.000000px;}
.x41_c00325{left:423.000000px;}
.x58_c00325{left:424.500000px;}
.xc2_c00325{left:427.500000px;}
.xf2_c00325{left:429.000000px;}
.x4d_c00325{left:430.920000px;}
.x35_c00325{left:433.500000px;}
.xb1_c00325{left:434.580000px;}
.x8_c00325{left:437.580000px;}
.x15_c00325{left:441.000000px;}
.x59_c00325{left:442.500000px;}
.x22_c00325{left:448.080000px;}
.xb9_c00325{left:450.000000px;}
.xca_c00325{left:453.420000px;}
.xfe_c00325{left:454.500000px;}
.x94_c00325{left:456.000000px;}
.x2b_c00325{left:457.500000px;}
.x72_c00325{left:459.000000px;}
.xd0_c00325{left:462.420000px;}
.x66_c00325{left:465.420000px;}
.x36_c00325{left:471.000000px;}
.xba_c00325{left:473.145000px;}
.x16_c00325{left:474.645000px;}
.xe9_c00325{left:475.920000px;}
.x42_c00325{left:478.080000px;}
.x9_c00325{left:481.500000px;}
.xe1_c00325{left:483.000000px;}
.x5a_c00325{left:484.500000px;}
.x37_c00325{left:486.420000px;}
.x4e_c00325{left:487.500000px;}
.xa3_c00325{left:488.580000px;}
.x88_c00325{left:492.000000px;}
.x80_c00325{left:493.500000px;}
.x67_c00325{left:496.920000px;}
.xc3_c00325{left:498.000000px;}
.xd1_c00325{left:499.920000px;}
.x23_c00325{left:501.420000px;}
.xf7_c00325{left:504.420000px;}
.x89_c00325{left:507.000000px;}
.x5b_c00325{left:508.500000px;}
.xcb_c00325{left:514.080000px;}
.x81_c00325{left:516.000000px;}
.x9b_c00325{left:517.500000px;}
.x17_c00325{left:519.420000px;}
.xa4_c00325{left:522.000000px;}
.x43_c00325{left:525.000000px;}
.xee_c00325{left:526.500000px;}
.x77_c00325{left:529.080000px;}
.x2c_c00325{left:531.000000px;}
.xe6_c00325{left:532.920000px;}
.x4f_c00325{left:534.000000px;}
.x68_c00325{left:535.080000px;}
.x38_c00325{left:537.000000px;}
.x9c_c00325{left:538.920000px;}
.x24_c00325{left:540.000000px;}
.x44_c00325{left:541.080000px;}
.xa_c00325{left:543.420000px;}
.x8a_c00325{left:547.500000px;}
.x50_c00325{left:550.500000px;}
.x78_c00325{left:553.500000px;}
.xaa_c00325{left:554.580000px;}
.x2d_c00325{left:556.500000px;}
.x18_c00325{left:557.580000px;}
.x100_c00325{left:562.500000px;}
.xbb_c00325{left:563.580000px;}
.xf8_c00325{left:565.920000px;}
.x51_c00325{left:567.000000px;}
.x9d_c00325{left:568.500000px;}
.x39_c00325{left:570.420000px;}
.xe2_c00325{left:573.420000px;}
.x101_c00325{left:574.500000px;}
.xb2_c00325{left:576.000000px;}
.x19_c00325{left:577.275000px;}
.x73_c00325{left:578.580000px;}
.xa5_c00325{left:580.080000px;}
.x52_c00325{left:582.000000px;}
.x5c_c00325{left:583.500000px;}
.x69_c00325{left:584.580000px;}
.x45_c00325{left:586.500000px;}
.x95_c00325{left:589.500000px;}
.x107_c00325{left:592.500000px;}
.x2e_c00325{left:594.000000px;}
.xb_c00325{left:598.500000px;}
.x5d_c00325{left:601.500000px;}
.x79_c00325{left:603.000000px;}
.xcc_c00325{left:604.500000px;}
.xab_c00325{left:606.000000px;}
.x6a_c00325{left:607.920000px;}
.x46_c00325{left:610.500000px;}
.xf9_c00325{left:612.000000px;}
.x1a_c00325{left:613.500000px;}
.x8b_c00325{left:615.000000px;}
.xd2_c00325{left:618.000000px;}
.x25_c00325{left:619.500000px;}
.x7a_c00325{left:621.420000px;}
.x104_c00325{left:622.500000px;}
.x3a_c00325{left:624.000000px;}
.x2f_c00325{left:627.000000px;}
.xc_c00325{left:630.000000px;}
.x47_c00325{left:632.580000px;}
.xef_c00325{left:634.920000px;}
.x3b_c00325{left:636.000000px;}
.xea_c00325{left:637.500000px;}
.xf3_c00325{left:639.000000px;}
.x96_c00325{left:640.920000px;}
.xac_c00325{left:642.000000px;}
.x53_c00325{left:643.500000px;}
.xd9_c00325{left:645.000000px;}
.x9e_c00325{left:648.000000px;}
.xd_c00325{left:649.500000px;}
.x1b_c00325{left:652.080000px;}
.x82_c00325{left:655.080000px;}
.xc4_c00325{left:657.000000px;}
.x6b_c00325{left:658.080000px;}
.xfa_c00325{left:660.420000px;}
.xbc_c00325{left:661.920000px;}
.x3c_c00325{left:664.500000px;}
.xb3_c00325{left:665.580000px;}
.x5e_c00325{left:667.500000px;}
.x54_c00325{left:669.420000px;}
.x1c_c00325{left:670.500000px;}
.xf4_c00325{left:671.580000px;}
.xad_c00325{left:673.500000px;}
.xe_c00325{left:676.500000px;}
.xe7_c00325{left:680.580000px;}
.x108_c00325{left:682.080000px;}
.x7b_c00325{left:683.580000px;}
.x48_c00325{left:687.000000px;}
.xbd_c00325{left:688.080000px;}
.xa6_c00325{left:690.000000px;}
.x8c_c00325{left:691.500000px;}
.x97_c00325{left:694.500000px;}
.x26_c00325{left:701.580000px;}
.x5f_c00325{left:703.500000px;}
.x30_c00325{left:704.580000px;}
.x8d_c00325{left:708.000000px;}
.x9f_c00325{left:709.920000px;}
.x1d_c00325{left:711.000000px;}
.x3d_c00325{left:717.000000px;}
.xae_c00325{left:720.000000px;}
.x60_c00325{left:723.000000px;}
@media print{
.v0_c00325{vertical-align:0.000000pt;}
.ls0_c00325{letter-spacing:0.000000pt;}
.ws0_c00325{word-spacing:-15.012693pt;}
.ws1_c00325{word-spacing:0.000000pt;}
._0_c00325{width:5.797930pt;}
.fs7_c00325{font-size:3.040000pt;}
.fs3_c00325{font-size:16.640000pt;}
.fs1_c00325{font-size:18.133333pt;}
.fs4_c00325{font-size:22.666667pt;}
.fs2_c00325{font-size:25.706667pt;}
.fs5_c00325{font-size:28.746667pt;}
.fs0_c00325{font-size:31.733333pt;}
.fs6_c00325{font-size:34.773333pt;}
.y0_c00325{bottom:0.000000pt;}
.yc0_c00325{bottom:221.106667pt;}
.yc5_c00325{bottom:221.493333pt;}
.yc3_c00325{bottom:222.066667pt;}
.yc4_c00325{bottom:222.440000pt;}
.yc2_c00325{bottom:223.026667pt;}
.yc1_c00325{bottom:223.226667pt;}
.ybc_c00325{bottom:238.440000pt;}
.ybd_c00325{bottom:239.773333pt;}
.ybf_c00325{bottom:240.560000pt;}
.ybb_c00325{bottom:241.306667pt;}
.ybe_c00325{bottom:241.693333pt;}
.yb9_c00325{bottom:256.360000pt;}
.yb8_c00325{bottom:257.106667pt;}
.yb7_c00325{bottom:257.693333pt;}
.yba_c00325{bottom:257.893333pt;}
.yb5_c00325{bottom:258.640000pt;}
.yb6_c00325{bottom:259.026667pt;}
.yb3_c00325{bottom:275.773333pt;}
.yb2_c00325{bottom:276.360000pt;}
.yb4_c00325{bottom:277.693333pt;}
.yaa_c00325{bottom:291.773333pt;}
.yac_c00325{bottom:291.973333pt;}
.yab_c00325{bottom:292.160000pt;}
.yb0_c00325{bottom:293.106667pt;}
.yae_c00325{bottom:293.693333pt;}
.yad_c00325{bottom:293.893333pt;}
.yb1_c00325{bottom:294.066667pt;}
.yaf_c00325{bottom:294.640000pt;}
.ya7_c00325{bottom:309.493333pt;}
.ya6_c00325{bottom:311.026667pt;}
.ya5_c00325{bottom:311.226667pt;}
.ya9_c00325{bottom:311.973333pt;}
.ya8_c00325{bottom:312.360000pt;}
.ya0_c00325{bottom:326.826667pt;}
.ya2_c00325{bottom:327.026667pt;}
.ya3_c00325{bottom:327.773333pt;}
.y9f_c00325{bottom:328.360000pt;}
.ya1_c00325{bottom:328.733333pt;}
.ya4_c00325{bottom:329.693333pt;}
.y9d_c00325{bottom:345.106667pt;}
.y9c_c00325{bottom:347.026667pt;}
.y9e_c00325{bottom:347.226667pt;}
.y9a_c00325{bottom:362.440000pt;}
.y98_c00325{bottom:364.360000pt;}
.y9b_c00325{bottom:364.560000pt;}
.y99_c00325{bottom:365.706667pt;}
.y97_c00325{bottom:379.773333pt;}
.y94_c00325{bottom:380.733333pt;}
.y95_c00325{bottom:381.693333pt;}
.y96_c00325{bottom:382.640000pt;}
.y93_c00325{bottom:398.066667pt;}
.y91_c00325{bottom:399.026667pt;}
.y92_c00325{bottom:399.973333pt;}
.y8e_c00325{bottom:415.773333pt;}
.y90_c00325{bottom:417.306667pt;}
.y8f_c00325{bottom:417.693333pt;}
.y8c_c00325{bottom:433.106667pt;}
.y8d_c00325{bottom:433.893333pt;}
.y8b_c00325{bottom:435.026667pt;}
.y8a_c00325{bottom:449.693333pt;}
.y89_c00325{bottom:450.440000pt;}
.y87_c00325{bottom:452.360000pt;}
.y88_c00325{bottom:452.373333pt;}
.y85_c00325{bottom:467.773333pt;}
.y84_c00325{bottom:468.733333pt;}
.y86_c00325{bottom:469.693333pt;}
.y82_c00325{bottom:485.106667pt;}
.y80_c00325{bottom:485.893333pt;}
.y83_c00325{bottom:486.066667pt;}
.y7f_c00325{bottom:487.026667pt;}
.y81_c00325{bottom:487.040000pt;}
.y7e_c00325{bottom:501.693333pt;}
.y7d_c00325{bottom:502.440000pt;}
.y7b_c00325{bottom:519.026667pt;}
.y78_c00325{bottom:521.106667pt;}
.y7a_c00325{bottom:522.066667pt;}
.y7c_c00325{bottom:523.026667pt;}
.y79_c00325{bottom:523.040000pt;}
.y74_c00325{bottom:537.493333pt;}
.y77_c00325{bottom:539.226667pt;}
.y76_c00325{bottom:539.973333pt;}
.y75_c00325{bottom:540.360000pt;}
.y73_c00325{bottom:554.440000pt;}
.y6e_c00325{bottom:555.400000pt;}
.y72_c00325{bottom:555.773333pt;}
.y6f_c00325{bottom:556.360000pt;}
.y70_c00325{bottom:556.560000pt;}
.y71_c00325{bottom:557.693333pt;}
.y6c_c00325{bottom:571.026667pt;}
.y6d_c00325{bottom:573.106667pt;}
.y6b_c00325{bottom:573.893333pt;}
.y6a_c00325{bottom:575.026667pt;}
.y66_c00325{bottom:590.440000pt;}
.y69_c00325{bottom:591.400000pt;}
.y67_c00325{bottom:592.360000pt;}
.y68_c00325{bottom:592.560000pt;}
.y64_c00325{bottom:607.773333pt;}
.y65_c00325{bottom:608.733333pt;}
.y62_c00325{bottom:609.693333pt;}
.y63_c00325{bottom:609.893333pt;}
.y61_c00325{bottom:624.360000pt;}
.y5c_c00325{bottom:625.106667pt;}
.y5e_c00325{bottom:627.026667pt;}
.y60_c00325{bottom:627.226667pt;}
.y5d_c00325{bottom:627.973333pt;}
.y5f_c00325{bottom:628.360000pt;}
.y58_c00325{bottom:643.400000pt;}
.y59_c00325{bottom:644.360000pt;}
.y5a_c00325{bottom:644.560000pt;}
.y5b_c00325{bottom:645.306667pt;}
.y56_c00325{bottom:661.106667pt;}
.y55_c00325{bottom:661.893333pt;}
.y54_c00325{bottom:663.026667pt;}
.y57_c00325{bottom:663.973333pt;}
.y53_c00325{bottom:677.106667pt;}
.y52_c00325{bottom:678.440000pt;}
.y51_c00325{bottom:679.973333pt;}
.y50_c00325{bottom:680.360000pt;}
.y4c_c00325{bottom:695.400000pt;}
.y4e_c00325{bottom:695.773333pt;}
.y4b_c00325{bottom:696.560000pt;}
.y4f_c00325{bottom:696.933333pt;}
.y4d_c00325{bottom:697.693333pt;}
.y4a_c00325{bottom:712.733333pt;}
.y45_c00325{bottom:713.106667pt;}
.y47_c00325{bottom:713.893333pt;}
.y48_c00325{bottom:714.066667pt;}
.y49_c00325{bottom:714.640000pt;}
.y46_c00325{bottom:715.026667pt;}
.y42_c00325{bottom:730.440000pt;}
.y44_c00325{bottom:731.400000pt;}
.y41_c00325{bottom:732.360000pt;}
.y43_c00325{bottom:733.306667pt;}
.y3b_c00325{bottom:747.026667pt;}
.y3c_c00325{bottom:748.733333pt;}
.y3f_c00325{bottom:749.106667pt;}
.y3d_c00325{bottom:749.693333pt;}
.y40_c00325{bottom:749.893333pt;}
.y3e_c00325{bottom:750.640000pt;}
.y3a_c00325{bottom:751.026667pt;}
.y39_c00325{bottom:767.226667pt;}
.y38_c00325{bottom:767.973333pt;}
.y37_c00325{bottom:768.360000pt;}
.y36_c00325{bottom:785.693333pt;}
.y33_c00325{bottom:799.026667pt;}
.y35_c00325{bottom:799.773333pt;}
.y30_c00325{bottom:799.973333pt;}
.y2f_c00325{bottom:801.106667pt;}
.y32_c00325{bottom:801.893333pt;}
.y34_c00325{bottom:802.640000pt;}
.y31_c00325{bottom:803.026667pt;}
.y2d_c00325{bottom:818.440000pt;}
.y2e_c00325{bottom:819.226667pt;}
.y2c_c00325{bottom:820.360000pt;}
.y26_c00325{bottom:835.773333pt;}
.y2a_c00325{bottom:836.733333pt;}
.y27_c00325{bottom:837.306667pt;}
.y29_c00325{bottom:837.693333pt;}
.y2b_c00325{bottom:837.893333pt;}
.y28_c00325{bottom:838.640000pt;}
.y24_c00325{bottom:854.066667pt;}
.y22_c00325{bottom:855.026667pt;}
.y25_c00325{bottom:855.226667pt;}
.y23_c00325{bottom:855.973333pt;}
.y21_c00325{bottom:856.360000pt;}
.y1e_c00325{bottom:869.693333pt;}
.y1c_c00325{bottom:870.440000pt;}
.y20_c00325{bottom:871.973333pt;}
.y1b_c00325{bottom:872.360000pt;}
.y1d_c00325{bottom:872.560000pt;}
.y1f_c00325{bottom:873.306667pt;}
.y18_c00325{bottom:887.773333pt;}
.y1a_c00325{bottom:888.733333pt;}
.y16_c00325{bottom:889.693333pt;}
.y15_c00325{bottom:889.893333pt;}
.y19_c00325{bottom:890.640000pt;}
.y17_c00325{bottom:891.026667pt;}
.y12_c00325{bottom:905.306667pt;}
.y13_c00325{bottom:906.440000pt;}
.y14_c00325{bottom:907.026667pt;}
.y11_c00325{bottom:908.360000pt;}
.ye_c00325{bottom:922.640000pt;}
.yd_c00325{bottom:923.026667pt;}
.ya_c00325{bottom:923.400000pt;}
.y9_c00325{bottom:923.773333pt;}
.y10_c00325{bottom:924.560000pt;}
.yc_c00325{bottom:924.733333pt;}
.yf_c00325{bottom:925.306667pt;}
.y8_c00325{bottom:925.693333pt;}
.yb_c00325{bottom:926.640000pt;}
.y5_c00325{bottom:941.106667pt;}
.y4_c00325{bottom:941.893333pt;}
.y7_c00325{bottom:942.066667pt;}
.y6_c00325{bottom:942.640000pt;}
.y3_c00325{bottom:943.026667pt;}
.y1_c00325{bottom:975.773333pt;}
.y2_c00325{bottom:976.933333pt;}
.h8_c00325{height:3.739141pt;}
.h4_c00325{height:20.466875pt;}
.h2_c00325{height:22.303646pt;}
.h5_c00325{height:27.879557pt;}
.h3_c00325{height:31.618698pt;}
.h6_c00325{height:35.357839pt;}
.h1_c00325{height:39.031380pt;}
.h7_c00325{height:42.770521pt;}
.h0_c00325{height:1186.666667pt;}
.w0_c00325{width:782.666667pt;}
.x0_c00325{left:0.000000pt;}
.xc8_c00325{left:134.666667pt;}
.x1e_c00325{left:136.000000pt;}
.x1_c00325{left:137.333333pt;}
.x8e_c00325{left:148.000000pt;}
.xd3_c00325{left:149.333333pt;}
.x6c_c00325{left:150.666667pt;}
.x7c_c00325{left:156.000000pt;}
.x102_c00325{left:159.626667pt;}
.xf_c00325{left:162.666667pt;}
.x6d_c00325{left:168.000000pt;}
.x98_c00325{left:169.333333pt;}
.x1f_c00325{left:173.333333pt;}
.x27_c00325{left:176.373333pt;}
.xfb_c00325{left:177.333333pt;}
.x8f_c00325{left:179.626667pt;}
.xeb_c00325{left:181.333333pt;}
.x6e_c00325{left:182.666667pt;}
.x55_c00325{left:183.626667pt;}
.x99_c00325{left:185.333333pt;}
.xcd_c00325{left:187.040000pt;}
.x61_c00325{left:188.000000pt;}
.x49_c00325{left:190.666667pt;}
.x3e_c00325{left:191.626667pt;}
.x31_c00325{left:193.333333pt;}
.xfc_c00325{left:195.040000pt;}
.x3_c00325{left:196.000000pt;}
.x90_c00325{left:197.706667pt;}
.xf0_c00325{left:198.666667pt;}
.x83_c00325{left:200.000000pt;}
.x10_c00325{left:200.960000pt;}
.x105_c00325{left:202.293333pt;}
.xda_c00325{left:204.960000pt;}
.xaf_c00325{left:206.666667pt;}
.x109_c00325{left:207.626667pt;}
.x4a_c00325{left:208.760000pt;}
.xbe_c00325{left:212.000000pt;}
.x7d_c00325{left:214.293333pt;}
.x74_c00325{left:216.000000pt;}
.xf5_c00325{left:218.666667pt;}
.xa0_c00325{left:220.960000pt;}
.x91_c00325{left:222.666667pt;}
.x56_c00325{left:225.333333pt;}
.xdb_c00325{left:226.666667pt;}
.x106_c00325{left:228.000000pt;}
.x62_c00325{left:230.666667pt;}
.xb4_c00325{left:231.626667pt;}
.xbf_c00325{left:232.960000pt;}
.xa7_c00325{left:234.666667pt;}
.xf1_c00325{left:236.373333pt;}
.x4_c00325{left:237.333333pt;}
.xed_c00325{left:238.293333pt;}
.x11_c00325{left:239.626667pt;}
.x6f_c00325{left:241.333333pt;}
.xde_c00325{left:242.293333pt;}
.xe8_c00325{left:245.706667pt;}
.x63_c00325{left:247.040000pt;}
.x32_c00325{left:248.960000pt;}
.x3f_c00325{left:250.666667pt;}
.xa8_c00325{left:251.626667pt;}
.x84_c00325{left:253.706667pt;}
.x92_c00325{left:255.040000pt;}
.xd6_c00325{left:256.373333pt;}
.x20_c00325{left:257.333333pt;}
.x10a_c00325{left:258.293333pt;}
.x28_c00325{left:263.626667pt;}
.x57_c00325{left:265.333333pt;}
.x12_c00325{left:267.040000pt;}
.x33_c00325{left:268.760000pt;}
.xc5_c00325{left:270.293333pt;}
.xb5_c00325{left:272.000000pt;}
.xec_c00325{left:273.333333pt;}
.xce_c00325{left:274.666667pt;}
.x7e_c00325{left:277.333333pt;}
.xdc_c00325{left:278.666667pt;}
.xc0_c00325{left:283.040000pt;}
.xc9_c00325{left:285.706667pt;}
.xc6_c00325{left:287.040000pt;}
.x85_c00325{left:288.000000pt;}
.x64_c00325{left:288.960000pt;}
.xe3_c00325{left:290.666667pt;}
.xb6_c00325{left:292.000000pt;}
.xd7_c00325{left:292.960000pt;}
.xdf_c00325{left:294.666667pt;}
.xa9_c00325{left:296.000000pt;}
.x4b_c00325{left:297.706667pt;}
.xa1_c00325{left:300.000000pt;}
.x5_c00325{left:301.333333pt;}
.x103_c00325{left:303.040000pt;}
.xb7_c00325{left:304.000000pt;}
.xd4_c00325{left:305.133333pt;}
.x75_c00325{left:309.333333pt;}
.x21_c00325{left:310.293333pt;}
.x7f_c00325{left:312.373333pt;}
.x70_c00325{left:314.666667pt;}
.xd8_c00325{left:316.373333pt;}
.xfd_c00325{left:317.333333pt;}
.xc1_c00325{left:319.040000pt;}
.xb0_c00325{left:321.333333pt;}
.x4c_c00325{left:323.040000pt;}
.x76_c00325{left:325.333333pt;}
.xdd_c00325{left:326.293333pt;}
.xcf_c00325{left:327.626667pt;}
.x10b_c00325{left:330.466667pt;}
.x13_c00325{left:332.000000pt;}
.x86_c00325{left:334.666667pt;}
.x65_c00325{left:337.333333pt;}
.x71_c00325{left:340.000000pt;}
.xd5_c00325{left:341.333333pt;}
.xb8_c00325{left:343.040000pt;}
.x29_c00325{left:344.000000pt;}
.x93_c00325{left:344.960000pt;}
.x40_c00325{left:346.666667pt;}
.xa2_c00325{left:348.373333pt;}
.x6_c00325{left:349.333333pt;}
.xf6_c00325{left:350.466667pt;}
.x87_c00325{left:352.373333pt;}
.xe0_c00325{left:353.333333pt;}
.xc7_c00325{left:354.666667pt;}
.xe4_c00325{left:356.000000pt;}
.x34_c00325{left:357.333333pt;}
.xff_c00325{left:358.666667pt;}
.x2_c00325{left:360.000000pt;}
.x9a_c00325{left:362.666667pt;}
.x2a_c00325{left:363.626667pt;}
.x7_c00325{left:365.706667pt;}
.x10c_c00325{left:366.666667pt;}
.x14_c00325{left:367.626667pt;}
.xe5_c00325{left:370.666667pt;}
.x41_c00325{left:376.000000pt;}
.x58_c00325{left:377.333333pt;}
.xc2_c00325{left:380.000000pt;}
.xf2_c00325{left:381.333333pt;}
.x4d_c00325{left:383.040000pt;}
.x35_c00325{left:385.333333pt;}
.xb1_c00325{left:386.293333pt;}
.x8_c00325{left:388.960000pt;}
.x15_c00325{left:392.000000pt;}
.x59_c00325{left:393.333333pt;}
.x22_c00325{left:398.293333pt;}
.xb9_c00325{left:400.000000pt;}
.xca_c00325{left:403.040000pt;}
.xfe_c00325{left:404.000000pt;}
.x94_c00325{left:405.333333pt;}
.x2b_c00325{left:406.666667pt;}
.x72_c00325{left:408.000000pt;}
.xd0_c00325{left:411.040000pt;}
.x66_c00325{left:413.706667pt;}
.x36_c00325{left:418.666667pt;}
.xba_c00325{left:420.573333pt;}
.x16_c00325{left:421.906667pt;}
.xe9_c00325{left:423.040000pt;}
.x42_c00325{left:424.960000pt;}
.x9_c00325{left:428.000000pt;}
.xe1_c00325{left:429.333333pt;}
.x5a_c00325{left:430.666667pt;}
.x37_c00325{left:432.373333pt;}
.x4e_c00325{left:433.333333pt;}
.xa3_c00325{left:434.293333pt;}
.x88_c00325{left:437.333333pt;}
.x80_c00325{left:438.666667pt;}
.x67_c00325{left:441.706667pt;}
.xc3_c00325{left:442.666667pt;}
.xd1_c00325{left:444.373333pt;}
.x23_c00325{left:445.706667pt;}
.xf7_c00325{left:448.373333pt;}
.x89_c00325{left:450.666667pt;}
.x5b_c00325{left:452.000000pt;}
.xcb_c00325{left:456.960000pt;}
.x81_c00325{left:458.666667pt;}
.x9b_c00325{left:460.000000pt;}
.x17_c00325{left:461.706667pt;}
.xa4_c00325{left:464.000000pt;}
.x43_c00325{left:466.666667pt;}
.xee_c00325{left:468.000000pt;}
.x77_c00325{left:470.293333pt;}
.x2c_c00325{left:472.000000pt;}
.xe6_c00325{left:473.706667pt;}
.x4f_c00325{left:474.666667pt;}
.x68_c00325{left:475.626667pt;}
.x38_c00325{left:477.333333pt;}
.x9c_c00325{left:479.040000pt;}
.x24_c00325{left:480.000000pt;}
.x44_c00325{left:480.960000pt;}
.xa_c00325{left:483.040000pt;}
.x8a_c00325{left:486.666667pt;}
.x50_c00325{left:489.333333pt;}
.x78_c00325{left:492.000000pt;}
.xaa_c00325{left:492.960000pt;}
.x2d_c00325{left:494.666667pt;}
.x18_c00325{left:495.626667pt;}
.x100_c00325{left:500.000000pt;}
.xbb_c00325{left:500.960000pt;}
.xf8_c00325{left:503.040000pt;}
.x51_c00325{left:504.000000pt;}
.x9d_c00325{left:505.333333pt;}
.x39_c00325{left:507.040000pt;}
.xe2_c00325{left:509.706667pt;}
.x101_c00325{left:510.666667pt;}
.xb2_c00325{left:512.000000pt;}
.x19_c00325{left:513.133333pt;}
.x73_c00325{left:514.293333pt;}
.xa5_c00325{left:515.626667pt;}
.x52_c00325{left:517.333333pt;}
.x5c_c00325{left:518.666667pt;}
.x69_c00325{left:519.626667pt;}
.x45_c00325{left:521.333333pt;}
.x95_c00325{left:524.000000pt;}
.x107_c00325{left:526.666667pt;}
.x2e_c00325{left:528.000000pt;}
.xb_c00325{left:532.000000pt;}
.x5d_c00325{left:534.666667pt;}
.x79_c00325{left:536.000000pt;}
.xcc_c00325{left:537.333333pt;}
.xab_c00325{left:538.666667pt;}
.x6a_c00325{left:540.373333pt;}
.x46_c00325{left:542.666667pt;}
.xf9_c00325{left:544.000000pt;}
.x1a_c00325{left:545.333333pt;}
.x8b_c00325{left:546.666667pt;}
.xd2_c00325{left:549.333333pt;}
.x25_c00325{left:550.666667pt;}
.x7a_c00325{left:552.373333pt;}
.x104_c00325{left:553.333333pt;}
.x3a_c00325{left:554.666667pt;}
.x2f_c00325{left:557.333333pt;}
.xc_c00325{left:560.000000pt;}
.x47_c00325{left:562.293333pt;}
.xef_c00325{left:564.373333pt;}
.x3b_c00325{left:565.333333pt;}
.xea_c00325{left:566.666667pt;}
.xf3_c00325{left:568.000000pt;}
.x96_c00325{left:569.706667pt;}
.xac_c00325{left:570.666667pt;}
.x53_c00325{left:572.000000pt;}
.xd9_c00325{left:573.333333pt;}
.x9e_c00325{left:576.000000pt;}
.xd_c00325{left:577.333333pt;}
.x1b_c00325{left:579.626667pt;}
.x82_c00325{left:582.293333pt;}
.xc4_c00325{left:584.000000pt;}
.x6b_c00325{left:584.960000pt;}
.xfa_c00325{left:587.040000pt;}
.xbc_c00325{left:588.373333pt;}
.x3c_c00325{left:590.666667pt;}
.xb3_c00325{left:591.626667pt;}
.x5e_c00325{left:593.333333pt;}
.x54_c00325{left:595.040000pt;}
.x1c_c00325{left:596.000000pt;}
.xf4_c00325{left:596.960000pt;}
.xad_c00325{left:598.666667pt;}
.xe_c00325{left:601.333333pt;}
.xe7_c00325{left:604.960000pt;}
.x108_c00325{left:606.293333pt;}
.x7b_c00325{left:607.626667pt;}
.x48_c00325{left:610.666667pt;}
.xbd_c00325{left:611.626667pt;}
.xa6_c00325{left:613.333333pt;}
.x8c_c00325{left:614.666667pt;}
.x97_c00325{left:617.333333pt;}
.x26_c00325{left:623.626667pt;}
.x5f_c00325{left:625.333333pt;}
.x30_c00325{left:626.293333pt;}
.x8d_c00325{left:629.333333pt;}
.x9f_c00325{left:631.040000pt;}
.x1d_c00325{left:632.000000pt;}
.x3d_c00325{left:637.333333pt;}
.xae_c00325{left:640.000000pt;}
.x60_c00325{left:642.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_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_e466327e179f3f80249f380e.woff2')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mee_c00326{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00326{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.mf0_c00326{transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);}
.m65_c00326{transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);}
.mf8_c00326{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m21_c00326{transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);}
.m24_c00326{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.ma4_c00326{transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);}
.m39_c00326{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.mba_c00326{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m56_c00326{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m1d_c00326{transform:matrix(0.381725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381725,0.000000,0.000000,0.250000,0,0);}
.m5_c00326{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m91_c00326{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.md2_c00326{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m86_c00326{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.mf4_c00326{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m8e_c00326{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.mdb_c00326{transform:matrix(0.394555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394555,0.000000,0.000000,0.250000,0,0);}
.ma6_c00326{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.mb2_c00326{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m40_c00326{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.m74_c00326{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m30_c00326{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.m70_c00326{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m35_c00326{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.mce_c00326{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.meb_c00326{transform:matrix(0.409509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409509,0.000000,0.000000,0.250000,0,0);}
.mbc_c00326{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mcc_c00326{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m71_c00326{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m4c_c00326{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.m3b_c00326{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.ma1_c00326{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m7a_c00326{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m77_c00326{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mc5_c00326{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m3c_c00326{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m9c_c00326{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m5e_c00326{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m52_c00326{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m79_c00326{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m16_c00326{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m1e_c00326{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m26_c00326{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m5a_c00326{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m44_c00326{transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);}
.mf5_c00326{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mdd_c00326{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m4d_c00326{transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);}
.me8_c00326{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m63_c00326{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m8_c00326{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mb8_c00326{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mbb_c00326{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mac_c00326{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.mea_c00326{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.mef_c00326{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.mdc_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);}
.m3a_c00326{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mb3_c00326{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m17_c00326{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.me6_c00326{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m5d_c00326{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.mae_c00326{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m11_c00326{transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);}
.mad_c00326{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m6a_c00326{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m6f_c00326{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.me5_c00326{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m53_c00326{transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);}
.md1_c00326{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m97_c00326{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m57_c00326{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m9d_c00326{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.mc8_c00326{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);}
.m9f_c00326{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mc7_c00326{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m1_c00326{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.mf9_c00326{transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);}
.m7d_c00326{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.me3_c00326{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m45_c00326{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m37_c00326{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m1a_c00326{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m99_c00326{transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);}
.md6_c00326{transform:matrix(0.463445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463445,0.000000,0.000000,0.250000,0,0);}
.m54_c00326{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.mc3_c00326{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m51_c00326{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m90_c00326{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.md0_c00326{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.m29_c00326{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m2b_c00326{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m3f_c00326{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m89_c00326{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m4a_c00326{transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);}
.m62_c00326{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.md9_c00326{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.m48_c00326{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m5f_c00326{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m7e_c00326{transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);}
.m58_c00326{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m2d_c00326{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m8f_c00326{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m2e_c00326{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mb1_c00326{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.mbf_c00326{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m93_c00326{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m43_c00326{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m25_c00326{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);}
.m6e_c00326{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mcb_c00326{transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);}
.mcf_c00326{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.md7_c00326{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mc1_c00326{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mf6_c00326{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m68_c00326{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m60_c00326{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.md8_c00326{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m9a_c00326{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m3_c00326{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m8c_c00326{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m6d_c00326{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m15_c00326{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.mf3_c00326{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m73_c00326{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m41_c00326{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.mc9_c00326{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.me0_c00326{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m95_c00326{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.m3e_c00326{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.mb5_c00326{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.mb9_c00326{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m59_c00326{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.m27_c00326{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);}
.m64_c00326{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m9b_c00326{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m80_c00326{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m4_c00326{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m1f_c00326{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mde_c00326{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.md3_c00326{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m88_c00326{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mb_c00326{transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);}
.m7_c00326{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m94_c00326{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m9_c00326{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m23_c00326{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m5c_c00326{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m12_c00326{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m72_c00326{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.ma3_c00326{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mc_c00326{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m7c_c00326{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m78_c00326{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m36_c00326{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m6b_c00326{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.mcd_c00326{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m6_c00326{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mf7_c00326{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m4b_c00326{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.ma7_c00326{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.me_c00326{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.md4_c00326{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m67_c00326{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m42_c00326{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.me4_c00326{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mbd_c00326{transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);}
.m47_c00326{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.mbe_c00326{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.me2_c00326{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.mc2_c00326{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m85_c00326{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.ma2_c00326{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m7f_c00326{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m46_c00326{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m38_c00326{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m83_c00326{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.med_c00326{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m96_c00326{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.mb4_c00326{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.mec_c00326{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.ma5_c00326{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m6c_c00326{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mc0_c00326{transform:matrix(0.572356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572356,0.000000,0.000000,0.250000,0,0);}
.me1_c00326{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m9e_c00326{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m13_c00326{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);}
.m33_c00326{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m4e_c00326{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m50_c00326{transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);}
.md5_c00326{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m34_c00326{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m81_c00326{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m92_c00326{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m55_c00326{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m75_c00326{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m76_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);}
.mb7_c00326{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.ma0_c00326{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m3d_c00326{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m69_c00326{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m0_c00326{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m8a_c00326{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.me7_c00326{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m8b_c00326{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m4f_c00326{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m2f_c00326{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m2a_c00326{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m2c_c00326{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);}
.mf2_c00326{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);}
.m19_c00326{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m1c_c00326{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.me9_c00326{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m18_c00326{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m84_c00326{transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);}
.m31_c00326{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.mb0_c00326{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.mf_c00326{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m28_c00326{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);}
.m20_c00326{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m32_c00326{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.mc4_c00326{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.mab_c00326{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m7b_c00326{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m10_c00326{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.m49_c00326{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m22_c00326{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m98_c00326{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.md_c00326{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);}
.mdf_c00326{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.ma9_c00326{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.maa_c00326{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mda_c00326{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);}
.ma8_c00326{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m61_c00326{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m82_c00326{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.maf_c00326{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mc6_c00326{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m66_c00326{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m87_c00326{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mb6_c00326{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.mca_c00326{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m8d_c00326{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.m1b_c00326{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m2_c00326{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.ma_c00326{transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);}
.m14_c00326{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m5b_c00326{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00326{vertical-align:0.000000px;}
.ls0_c00326{letter-spacing:0.000000px;}
.sc__c00326{text-shadow:none;}
.sc0_c00326{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00326{-webkit-text-stroke:0px transparent;}
.sc0_c00326{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00326{word-spacing:-7.428962px;}
.ws1_c00326{word-spacing:-7.189112px;}
.ws2_c00326{word-spacing:0.000000px;}
.fc0_c00326{color:transparent;}
.fs7_c00326{font-size:3.420000px;}
.fs5_c00326{font-size:13.620000px;}
.fs4_c00326{font-size:18.720000px;}
.fs0_c00326{font-size:20.400000px;}
.fs2_c00326{font-size:25.500000px;}
.fs1_c00326{font-size:28.920000px;}
.fs6_c00326{font-size:32.340000px;}
.fs3_c00326{font-size:35.700000px;}
.fs8_c00326{font-size:39.120000px;}
.y0_c00326{bottom:0.000000px;}
.yd6_c00326{bottom:252.405000px;}
.yd5_c00326{bottom:253.245000px;}
.yd9_c00326{bottom:254.325000px;}
.yd3_c00326{bottom:254.745000px;}
.yd4_c00326{bottom:255.405000px;}
.yd8_c00326{bottom:256.470000px;}
.yd7_c00326{bottom:256.905000px;}
.yd0_c00326{bottom:272.745000px;}
.yd2_c00326{bottom:274.245000px;}
.ycf_c00326{bottom:274.905000px;}
.yd1_c00326{bottom:275.130000px;}
.yce_c00326{bottom:276.405000px;}
.ycd_c00326{bottom:292.680000px;}
.ycc_c00326{bottom:295.905000px;}
.yc7_c00326{bottom:313.245000px;}
.yc8_c00326{bottom:313.905000px;}
.ycb_c00326{bottom:314.130000px;}
.yca_c00326{bottom:314.325000px;}
.yc9_c00326{bottom:314.970000px;}
.yc6_c00326{bottom:315.405000px;}
.yc3_c00326{bottom:330.405000px;}
.yc5_c00326{bottom:332.745000px;}
.yc4_c00326{bottom:334.470000px;}
.yc2_c00326{bottom:334.905000px;}
.yc1_c00326{bottom:335.970000px;}
.yc0_c00326{bottom:349.905000px;}
.ybe_c00326{bottom:352.245000px;}
.ybd_c00326{bottom:353.130000px;}
.ybf_c00326{bottom:353.970000px;}
.ybc_c00326{bottom:354.405000px;}
.yba_c00326{bottom:371.745000px;}
.ybb_c00326{bottom:372.405000px;}
.yb9_c00326{bottom:373.905000px;}
.yb4_c00326{bottom:391.680000px;}
.yb6_c00326{bottom:392.745000px;}
.yb5_c00326{bottom:393.405000px;}
.yb8_c00326{bottom:393.630000px;}
.yb7_c00326{bottom:394.470000px;}
.yb1_c00326{bottom:410.745000px;}
.yb2_c00326{bottom:411.825000px;}
.yb3_c00326{bottom:412.050000px;}
.yae_c00326{bottom:412.245000px;}
.yaf_c00326{bottom:412.905000px;}
.yb0_c00326{bottom:413.130000px;}
.yad_c00326{bottom:430.245000px;}
.yaa_c00326{bottom:431.745000px;}
.yac_c00326{bottom:432.405000px;}
.yab_c00326{bottom:433.470000px;}
.ya9_c00326{bottom:433.905000px;}
.ya5_c00326{bottom:451.245000px;}
.ya7_c00326{bottom:451.905000px;}
.ya8_c00326{bottom:452.130000px;}
.ya6_c00326{bottom:453.405000px;}
.ya1_c00326{bottom:468.405000px;}
.ya2_c00326{bottom:469.245000px;}
.y9e_c00326{bottom:469.905000px;}
.ya4_c00326{bottom:470.325000px;}
.ya0_c00326{bottom:470.745000px;}
.ya3_c00326{bottom:471.405000px;}
.y9f_c00326{bottom:471.630000px;}
.y9d_c00326{bottom:472.905000px;}
.y9b_c00326{bottom:490.245000px;}
.y99_c00326{bottom:491.130000px;}
.y9c_c00326{bottom:491.970000px;}
.y9a_c00326{bottom:492.405000px;}
.y98_c00326{bottom:493.470000px;}
.y94_c00326{bottom:509.745000px;}
.y97_c00326{bottom:510.630000px;}
.y95_c00326{bottom:510.825000px;}
.y93_c00326{bottom:511.905000px;}
.y96_c00326{bottom:512.130000px;}
.y91_c00326{bottom:529.245000px;}
.y92_c00326{bottom:530.325000px;}
.y90_c00326{bottom:531.405000px;}
.y8f_c00326{bottom:531.630000px;}
.y8c_c00326{bottom:550.245000px;}
.y8e_c00326{bottom:550.905000px;}
.y8d_c00326{bottom:552.405000px;}
.y88_c00326{bottom:569.745000px;}
.y8a_c00326{bottom:570.405000px;}
.y89_c00326{bottom:570.630000px;}
.y87_c00326{bottom:570.825000px;}
.y8b_c00326{bottom:571.470000px;}
.y86_c00326{bottom:571.905000px;}
.y84_c00326{bottom:589.245000px;}
.y85_c00326{bottom:590.130000px;}
.y83_c00326{bottom:591.405000px;}
.y82_c00326{bottom:606.405000px;}
.y81_c00326{bottom:608.745000px;}
.y80_c00326{bottom:609.825000px;}
.y7f_c00326{bottom:610.905000px;}
.y7e_c00326{bottom:625.905000px;}
.y7c_c00326{bottom:628.245000px;}
.y7b_c00326{bottom:629.130000px;}
.y7d_c00326{bottom:630.405000px;}
.y7a_c00326{bottom:631.905000px;}
.y77_c00326{bottom:646.905000px;}
.y78_c00326{bottom:648.630000px;}
.y79_c00326{bottom:648.825000px;}
.y76_c00326{bottom:649.905000px;}
.y75_c00326{bottom:651.405000px;}
.y72_c00326{bottom:666.405000px;}
.y70_c00326{bottom:667.245000px;}
.y73_c00326{bottom:668.325000px;}
.y74_c00326{bottom:668.745000px;}
.y71_c00326{bottom:669.405000px;}
.y6f_c00326{bottom:669.630000px;}
.y6e_c00326{bottom:670.470000px;}
.y6d_c00326{bottom:670.905000px;}
.y68_c00326{bottom:685.905000px;}
.y6b_c00326{bottom:688.245000px;}
.y6c_c00326{bottom:688.905000px;}
.y69_c00326{bottom:689.130000px;}
.y6a_c00326{bottom:689.970000px;}
.y67_c00326{bottom:690.405000px;}
.y66_c00326{bottom:705.405000px;}
.y64_c00326{bottom:706.245000px;}
.y65_c00326{bottom:707.745000px;}
.y63_c00326{bottom:708.405000px;}
.y62_c00326{bottom:709.470000px;}
.y61_c00326{bottom:709.905000px;}
.y5f_c00326{bottom:727.245000px;}
.y60_c00326{bottom:727.905000px;}
.y5e_c00326{bottom:728.325000px;}
.y5d_c00326{bottom:729.405000px;}
.y5c_c00326{bottom:746.745000px;}
.y59_c00326{bottom:747.630000px;}
.y5b_c00326{bottom:748.470000px;}
.y5a_c00326{bottom:748.905000px;}
.y55_c00326{bottom:766.245000px;}
.y57_c00326{bottom:768.405000px;}
.y56_c00326{bottom:768.420000px;}
.y58_c00326{bottom:768.630000px;}
.y53_c00326{bottom:802.050000px;}
.y52_c00326{bottom:803.325000px;}
.y4f_c00326{bottom:803.550000px;}
.y54_c00326{bottom:803.970000px;}
.y50_c00326{bottom:804.405000px;}
.y51_c00326{bottom:805.470000px;}
.y4e_c00326{bottom:818.325000px;}
.y4c_c00326{bottom:819.630000px;}
.y4d_c00326{bottom:820.470000px;}
.y4b_c00326{bottom:831.825000px;}
.y4a_c00326{bottom:832.905000px;}
.y49_c00326{bottom:835.050000px;}
.y48_c00326{bottom:847.905000px;}
.y47_c00326{bottom:850.050000px;}
.y45_c00326{bottom:861.825000px;}
.y41_c00326{bottom:862.050000px;}
.y43_c00326{bottom:862.905000px;}
.y44_c00326{bottom:863.970000px;}
.y46_c00326{bottom:864.195000px;}
.y42_c00326{bottom:865.050000px;}
.y3f_c00326{bottom:876.405000px;}
.y3c_c00326{bottom:876.825000px;}
.y3b_c00326{bottom:877.905000px;}
.y3e_c00326{bottom:878.970000px;}
.y3d_c00326{bottom:879.195000px;}
.y40_c00326{bottom:880.050000px;}
.y3a_c00326{bottom:890.970000px;}
.y39_c00326{bottom:892.905000px;}
.y37_c00326{bottom:893.550000px;}
.y38_c00326{bottom:893.970000px;}
.y36_c00326{bottom:906.825000px;}
.y33_c00326{bottom:907.905000px;}
.y34_c00326{bottom:908.970000px;}
.y35_c00326{bottom:910.050000px;}
.y2b_c00326{bottom:920.325000px;}
.y2a_c00326{bottom:920.970000px;}
.y30_c00326{bottom:921.405000px;}
.y2c_c00326{bottom:921.825000px;}
.y32_c00326{bottom:922.470000px;}
.y31_c00326{bottom:922.695000px;}
.y2f_c00326{bottom:922.905000px;}
.y2d_c00326{bottom:923.550000px;}
.y2e_c00326{bottom:923.970000px;}
.y29_c00326{bottom:935.325000px;}
.y26_c00326{bottom:936.405000px;}
.y28_c00326{bottom:937.470000px;}
.y27_c00326{bottom:938.130000px;}
.y23_c00326{bottom:950.325000px;}
.y21_c00326{bottom:950.550000px;}
.y24_c00326{bottom:952.050000px;}
.y25_c00326{bottom:952.470000px;}
.y22_c00326{bottom:953.550000px;}
.y20_c00326{bottom:965.325000px;}
.y1f_c00326{bottom:968.550000px;}
.y1c_c00326{bottom:980.325000px;}
.y18_c00326{bottom:980.550000px;}
.y1a_c00326{bottom:981.405000px;}
.y1b_c00326{bottom:982.050000px;}
.y1d_c00326{bottom:982.470000px;}
.y1e_c00326{bottom:982.695000px;}
.y19_c00326{bottom:983.550000px;}
.y17_c00326{bottom:995.325000px;}
.y16_c00326{bottom:998.550000px;}
.y13_c00326{bottom:1009.470000px;}
.y11_c00326{bottom:1010.325000px;}
.y12_c00326{bottom:1011.405000px;}
.y15_c00326{bottom:1012.050000px;}
.y14_c00326{bottom:1012.470000px;}
.yf_c00326{bottom:1012.695000px;}
.y10_c00326{bottom:1013.550000px;}
.ye_c00326{bottom:1024.905000px;}
.yd_c00326{bottom:1027.050000px;}
.ya_c00326{bottom:1037.970000px;}
.yb_c00326{bottom:1039.905000px;}
.y8_c00326{bottom:1040.970000px;}
.yc_c00326{bottom:1041.195000px;}
.y6_c00326{bottom:1041.630000px;}
.y9_c00326{bottom:1042.050000px;}
.y7_c00326{bottom:1042.470000px;}
.y5_c00326{bottom:1061.745000px;}
.y4_c00326{bottom:1063.905000px;}
.y3_c00326{bottom:1064.970000px;}
.y2_c00326{bottom:1099.905000px;}
.y1_c00326{bottom:1102.050000px;}
.h8_c00326{height:4.206533px;}
.h6_c00326{height:16.752334px;}
.h5_c00326{height:23.025234px;}
.h1_c00326{height:25.091602px;}
.h3_c00326{height:31.364502px;}
.h2_c00326{height:35.571035px;}
.h7_c00326{height:39.777568px;}
.h4_c00326{height:43.910303px;}
.h9_c00326{height:48.116836px;}
.h0_c00326{height:1335.000000px;}
.w0_c00326{width:880.500000px;}
.x0_c00326{left:0.000000px;}
.x19_c00326{left:151.500000px;}
.x45_c00326{left:153.420000px;}
.xff_c00326{left:154.500000px;}
.x64_c00326{left:163.500000px;}
.xb_c00326{left:166.080000px;}
.x3_c00326{left:168.000000px;}
.x9c_c00326{left:171.420000px;}
.xfa_c00326{left:174.420000px;}
.x4_c00326{left:178.500000px;}
.xcb_c00326{left:180.000000px;}
.x1a_c00326{left:181.920000px;}
.xc_c00326{left:183.000000px;}
.x32_c00326{left:184.500000px;}
.x7e_c00326{left:187.080000px;}
.xa5_c00326{left:189.420000px;}
.x70_c00326{left:193.500000px;}
.x46_c00326{left:195.000000px;}
.xf4_c00326{left:196.500000px;}
.x65_c00326{left:197.580000px;}
.xb9_c00326{left:200.580000px;}
.xfb_c00326{left:202.920000px;}
.xed_c00326{left:205.920000px;}
.x7f_c00326{left:207.420000px;}
.x1b_c00326{left:208.500000px;}
.x96_c00326{left:211.920000px;}
.xbd_c00326{left:214.920000px;}
.x5_c00326{left:217.080000px;}
.x1c_c00326{left:219.855000px;}
.x29_c00326{left:221.145000px;}
.x100_c00326{left:223.920000px;}
.x47_c00326{left:225.420000px;}
.x77_c00326{left:226.920000px;}
.xc2_c00326{left:230.580000px;}
.xcc_c00326{left:232.080000px;}
.x80_c00326{left:233.580000px;}
.xfc_c00326{left:235.080000px;}
.xe4_c00326{left:238.500000px;}
.xf5_c00326{left:240.000000px;}
.xd8_c00326{left:241.500000px;}
.x88_c00326{left:242.580000px;}
.x5d_c00326{left:246.000000px;}
.xd_c00326{left:248.580000px;}
.xb3_c00326{left:250.080000px;}
.x3b_c00326{left:252.000000px;}
.xac_c00326{left:253.500000px;}
.x6a_c00326{left:255.000000px;}
.x1d_c00326{left:257.580000px;}
.x89_c00326{left:259.500000px;}
.xc3_c00326{left:261.000000px;}
.x57_c00326{left:262.500000px;}
.x2a_c00326{left:265.920000px;}
.x91_c00326{left:267.000000px;}
.xb4_c00326{left:268.920000px;}
.xe5_c00326{left:271.500000px;}
.x71_c00326{left:272.580000px;}
.x4f_c00326{left:275.580000px;}
.x48_c00326{left:277.080000px;}
.x3c_c00326{left:279.000000px;}
.xe_c00326{left:283.500000px;}
.x81_c00326{left:285.420000px;}
.xdf_c00326{left:286.920000px;}
.x6_c00326{left:288.000000px;}
.x97_c00326{left:289.500000px;}
.xbe_c00326{left:290.580000px;}
.xf6_c00326{left:292.080000px;}
.x92_c00326{left:294.000000px;}
.x5e_c00326{left:297.000000px;}
.xe6_c00326{left:298.080000px;}
.x1e_c00326{left:300.420000px;}
.xf_c00326{left:301.500000px;}
.xc4_c00326{left:306.000000px;}
.x58_c00326{left:307.920000px;}
.x6b_c00326{left:309.420000px;}
.xa6_c00326{left:310.500000px;}
.x82_c00326{left:312.000000px;}
.x2b_c00326{left:315.000000px;}
.xcd_c00326{left:316.080000px;}
.x9d_c00326{left:318.420000px;}
.x105_c00326{left:320.580000px;}
.x3d_c00326{left:322.920000px;}
.xd9_c00326{left:325.500000px;}
.xd1_c00326{left:327.000000px;}
.x98_c00326{left:330.000000px;}
.x33_c00326{left:331.500000px;}
.x50_c00326{left:333.000000px;}
.x5f_c00326{left:334.500000px;}
.xf1_c00326{left:335.580000px;}
.x49_c00326{left:337.500000px;}
.xc5_c00326{left:339.000000px;}
.xce_c00326{left:340.920000px;}
.x10_c00326{left:342.000000px;}
.x51_c00326{left:343.500000px;}
.x66_c00326{left:346.500000px;}
.xfd_c00326{left:348.420000px;}
.xee_c00326{left:350.580000px;}
.x8a_c00326{left:354.000000px;}
.xe0_c00326{left:355.920000px;}
.x72_c00326{left:357.000000px;}
.x101_c00326{left:358.500000px;}
.x1f_c00326{left:360.420000px;}
.x7_c00326{left:361.920000px;}
.xd2_c00326{left:364.500000px;}
.x34_c00326{left:367.080000px;}
.xb5_c00326{left:369.420000px;}
.xdc_c00326{left:370.920000px;}
.x99_c00326{left:373.500000px;}
.x20_c00326{left:375.000000px;}
.x2c_c00326{left:376.920000px;}
.xf7_c00326{left:378.000000px;}
.xba_c00326{left:379.920000px;}
.x3e_c00326{left:382.920000px;}
.x35_c00326{left:384.000000px;}
.x52_c00326{left:388.080000px;}
.x83_c00326{left:390.000000px;}
.x59_c00326{left:391.500000px;}
.x2d_c00326{left:394.080000px;}
.x67_c00326{left:396.000000px;}
.x8_c00326{left:399.420000px;}
.x4a_c00326{left:400.920000px;}
.x1_c00326{left:402.000000px;}
.xe7_c00326{left:406.500000px;}
.xad_c00326{left:409.080000px;}
.xd3_c00326{left:411.420000px;}
.xbf_c00326{left:412.920000px;}
.x21_c00326{left:414.000000px;}
.x53_c00326{left:415.080000px;}
.xc6_c00326{left:418.500000px;}
.xcf_c00326{left:421.500000px;}
.x93_c00326{left:423.000000px;}
.xb6_c00326{left:424.080000px;}
.x9_c00326{left:426.420000px;}
.x84_c00326{left:427.920000px;}
.x3f_c00326{left:431.145000px;}
.x5a_c00326{left:433.920000px;}
.xc7_c00326{left:436.500000px;}
.x8b_c00326{left:437.580000px;}
.x11_c00326{left:439.920000px;}
.x78_c00326{left:442.920000px;}
.x36_c00326{left:445.500000px;}
.xc8_c00326{left:450.000000px;}
.x9e_c00326{left:453.420000px;}
.x73_c00326{left:454.920000px;}
.x60_c00326{left:456.000000px;}
.x12_c00326{left:457.080000px;}
.x54_c00326{left:459.000000px;}
.x94_c00326{left:462.420000px;}
.xa7_c00326{left:463.920000px;}
.x68_c00326{left:465.420000px;}
.x22_c00326{left:468.000000px;}
.x79_c00326{left:471.000000px;}
.x6c_c00326{left:473.580000px;}
.x69_c00326{left:475.500000px;}
.x106_c00326{left:477.000000px;}
.xf2_c00326{left:478.080000px;}
.xda_c00326{left:480.420000px;}
.xd4_c00326{left:483.000000px;}
.x37_c00326{left:484.500000px;}
.x8c_c00326{left:486.420000px;}
.x4b_c00326{left:487.500000px;}
.x55_c00326{left:489.420000px;}
.x9a_c00326{left:490.920000px;}
.x9f_c00326{left:492.000000px;}
.xa_c00326{left:493.500000px;}
.x107_c00326{left:495.420000px;}
.x61_c00326{left:498.420000px;}
.x13_c00326{left:499.500000px;}
.x2e_c00326{left:501.000000px;}
.x102_c00326{left:504.420000px;}
.x23_c00326{left:505.920000px;}
.x74_c00326{left:509.580000px;}
.xa0_c00326{left:511.080000px;}
.x40_c00326{left:514.500000px;}
.x56_c00326{left:516.000000px;}
.x62_c00326{left:517.920000px;}
.x6d_c00326{left:519.000000px;}
.x7a_c00326{left:520.080000px;}
.x24_c00326{left:522.420000px;}
.x4c_c00326{left:526.080000px;}
.x75_c00326{left:529.920000px;}
.xf8_c00326{left:531.000000px;}
.xae_c00326{left:532.500000px;}
.x85_c00326{left:534.420000px;}
.xe1_c00326{left:535.500000px;}
.xc0_c00326{left:537.420000px;}
.x38_c00326{left:538.500000px;}
.x8d_c00326{left:540.000000px;}
.x6e_c00326{left:541.500000px;}
.xc9_c00326{left:547.500000px;}
.x5b_c00326{left:555.000000px;}
.x14_c00326{left:556.500000px;}
.x2f_c00326{left:557.580000px;}
.xa1_c00326{left:559.500000px;}
.x25_c00326{left:561.000000px;}
.x103_c00326{left:562.500000px;}
.x6f_c00326{left:565.080000px;}
.x5c_c00326{left:567.420000px;}
.x7b_c00326{left:570.000000px;}
.xe2_c00326{left:571.500000px;}
.xdd_c00326{left:573.420000px;}
.x8e_c00326{left:574.500000px;}
.xa2_c00326{left:576.000000px;}
.xaf_c00326{left:577.920000px;}
.xb7_c00326{left:582.420000px;}
.xe8_c00326{left:583.920000px;}
.xca_c00326{left:585.000000px;}
.xbb_c00326{left:586.500000px;}
.x86_c00326{left:589.500000px;}
.x8f_c00326{left:592.920000px;}
.xa8_c00326{left:596.580000px;}
.x41_c00326{left:598.080000px;}
.xef_c00326{left:600.000000px;}
.x9b_c00326{left:601.500000px;}
.xb0_c00326{left:604.920000px;}
.xb8_c00326{left:607.080000px;}
.x26_c00326{left:609.000000px;}
.x7c_c00326{left:610.080000px;}
.xe9_c00326{left:612.000000px;}
.x15_c00326{left:613.080000px;}
.x30_c00326{left:614.580000px;}
.x39_c00326{left:616.080000px;}
.xf0_c00326{left:617.580000px;}
.x27_c00326{left:619.500000px;}
.xd0_c00326{left:625.500000px;}
.x16_c00326{left:627.000000px;}
.xa3_c00326{left:628.500000px;}
.xf3_c00326{left:630.420000px;}
.xc1_c00326{left:633.420000px;}
.x104_c00326{left:634.500000px;}
.xd5_c00326{left:637.500000px;}
.x76_c00326{left:641.580000px;}
.xb1_c00326{left:643.500000px;}
.xde_c00326{left:645.000000px;}
.xbc_c00326{left:646.080000px;}
.x4d_c00326{left:647.580000px;}
.xe3_c00326{left:649.500000px;}
.xea_c00326{left:652.080000px;}
.xa9_c00326{left:654.000000px;}
.x3a_c00326{left:655.500000px;}
.x42_c00326{left:657.000000px;}
.xd6_c00326{left:658.920000px;}
.x17_c00326{left:661.500000px;}
.x28_c00326{left:664.080000px;}
.x95_c00326{left:666.420000px;}
.x43_c00326{left:670.500000px;}
.xeb_c00326{left:672.420000px;}
.xdb_c00326{left:675.420000px;}
.x4e_c00326{left:676.500000px;}
.x63_c00326{left:679.080000px;}
.x7d_c00326{left:682.500000px;}
.xd7_c00326{left:684.000000px;}
.xaa_c00326{left:685.080000px;}
.xa4_c00326{left:687.420000px;}
.x18_c00326{left:689.580000px;}
.x31_c00326{left:691.920000px;}
.xf9_c00326{left:693.000000px;}
.x90_c00326{left:695.580000px;}
.xec_c00326{left:700.500000px;}
.xab_c00326{left:703.500000px;}
.x2_c00326{left:704.580000px;}
.x44_c00326{left:707.580000px;}
.xb2_c00326{left:709.920000px;}
.x87_c00326{left:712.500000px;}
.xfe_c00326{left:724.500000px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.ls0_c00326{letter-spacing:0.000000pt;}
.ws0_c00326{word-spacing:-6.603521pt;}
.ws1_c00326{word-spacing:-6.390322pt;}
.ws2_c00326{word-spacing:0.000000pt;}
.fs7_c00326{font-size:3.040000pt;}
.fs5_c00326{font-size:12.106667pt;}
.fs4_c00326{font-size:16.640000pt;}
.fs0_c00326{font-size:18.133333pt;}
.fs2_c00326{font-size:22.666667pt;}
.fs1_c00326{font-size:25.706667pt;}
.fs6_c00326{font-size:28.746667pt;}
.fs3_c00326{font-size:31.733333pt;}
.fs8_c00326{font-size:34.773333pt;}
.y0_c00326{bottom:0.000000pt;}
.yd6_c00326{bottom:224.360000pt;}
.yd5_c00326{bottom:225.106667pt;}
.yd9_c00326{bottom:226.066667pt;}
.yd3_c00326{bottom:226.440000pt;}
.yd4_c00326{bottom:227.026667pt;}
.yd8_c00326{bottom:227.973333pt;}
.yd7_c00326{bottom:228.360000pt;}
.yd0_c00326{bottom:242.440000pt;}
.yd2_c00326{bottom:243.773333pt;}
.ycf_c00326{bottom:244.360000pt;}
.yd1_c00326{bottom:244.560000pt;}
.yce_c00326{bottom:245.693333pt;}
.ycd_c00326{bottom:260.160000pt;}
.ycc_c00326{bottom:263.026667pt;}
.yc7_c00326{bottom:278.440000pt;}
.yc8_c00326{bottom:279.026667pt;}
.ycb_c00326{bottom:279.226667pt;}
.yca_c00326{bottom:279.400000pt;}
.yc9_c00326{bottom:279.973333pt;}
.yc6_c00326{bottom:280.360000pt;}
.yc3_c00326{bottom:293.693333pt;}
.yc5_c00326{bottom:295.773333pt;}
.yc4_c00326{bottom:297.306667pt;}
.yc2_c00326{bottom:297.693333pt;}
.yc1_c00326{bottom:298.640000pt;}
.yc0_c00326{bottom:311.026667pt;}
.ybe_c00326{bottom:313.106667pt;}
.ybd_c00326{bottom:313.893333pt;}
.ybf_c00326{bottom:314.640000pt;}
.ybc_c00326{bottom:315.026667pt;}
.yba_c00326{bottom:330.440000pt;}
.ybb_c00326{bottom:331.026667pt;}
.yb9_c00326{bottom:332.360000pt;}
.yb4_c00326{bottom:348.160000pt;}
.yb6_c00326{bottom:349.106667pt;}
.yb5_c00326{bottom:349.693333pt;}
.yb8_c00326{bottom:349.893333pt;}
.yb7_c00326{bottom:350.640000pt;}
.yb1_c00326{bottom:365.106667pt;}
.yb2_c00326{bottom:366.066667pt;}
.yb3_c00326{bottom:366.266667pt;}
.yae_c00326{bottom:366.440000pt;}
.yaf_c00326{bottom:367.026667pt;}
.yb0_c00326{bottom:367.226667pt;}
.yad_c00326{bottom:382.440000pt;}
.yaa_c00326{bottom:383.773333pt;}
.yac_c00326{bottom:384.360000pt;}
.yab_c00326{bottom:385.306667pt;}
.ya9_c00326{bottom:385.693333pt;}
.ya5_c00326{bottom:401.106667pt;}
.ya7_c00326{bottom:401.693333pt;}
.ya8_c00326{bottom:401.893333pt;}
.ya6_c00326{bottom:403.026667pt;}
.ya1_c00326{bottom:416.360000pt;}
.ya2_c00326{bottom:417.106667pt;}
.y9e_c00326{bottom:417.693333pt;}
.ya4_c00326{bottom:418.066667pt;}
.ya0_c00326{bottom:418.440000pt;}
.ya3_c00326{bottom:419.026667pt;}
.y9f_c00326{bottom:419.226667pt;}
.y9d_c00326{bottom:420.360000pt;}
.y9b_c00326{bottom:435.773333pt;}
.y99_c00326{bottom:436.560000pt;}
.y9c_c00326{bottom:437.306667pt;}
.y9a_c00326{bottom:437.693333pt;}
.y98_c00326{bottom:438.640000pt;}
.y94_c00326{bottom:453.106667pt;}
.y97_c00326{bottom:453.893333pt;}
.y95_c00326{bottom:454.066667pt;}
.y93_c00326{bottom:455.026667pt;}
.y96_c00326{bottom:455.226667pt;}
.y91_c00326{bottom:470.440000pt;}
.y92_c00326{bottom:471.400000pt;}
.y90_c00326{bottom:472.360000pt;}
.y8f_c00326{bottom:472.560000pt;}
.y8c_c00326{bottom:489.106667pt;}
.y8e_c00326{bottom:489.693333pt;}
.y8d_c00326{bottom:491.026667pt;}
.y88_c00326{bottom:506.440000pt;}
.y8a_c00326{bottom:507.026667pt;}
.y89_c00326{bottom:507.226667pt;}
.y87_c00326{bottom:507.400000pt;}
.y8b_c00326{bottom:507.973333pt;}
.y86_c00326{bottom:508.360000pt;}
.y84_c00326{bottom:523.773333pt;}
.y85_c00326{bottom:524.560000pt;}
.y83_c00326{bottom:525.693333pt;}
.y82_c00326{bottom:539.026667pt;}
.y81_c00326{bottom:541.106667pt;}
.y80_c00326{bottom:542.066667pt;}
.y7f_c00326{bottom:543.026667pt;}
.y7e_c00326{bottom:556.360000pt;}
.y7c_c00326{bottom:558.440000pt;}
.y7b_c00326{bottom:559.226667pt;}
.y7d_c00326{bottom:560.360000pt;}
.y7a_c00326{bottom:561.693333pt;}
.y77_c00326{bottom:575.026667pt;}
.y78_c00326{bottom:576.560000pt;}
.y79_c00326{bottom:576.733333pt;}
.y76_c00326{bottom:577.693333pt;}
.y75_c00326{bottom:579.026667pt;}
.y72_c00326{bottom:592.360000pt;}
.y70_c00326{bottom:593.106667pt;}
.y73_c00326{bottom:594.066667pt;}
.y74_c00326{bottom:594.440000pt;}
.y71_c00326{bottom:595.026667pt;}
.y6f_c00326{bottom:595.226667pt;}
.y6e_c00326{bottom:595.973333pt;}
.y6d_c00326{bottom:596.360000pt;}
.y68_c00326{bottom:609.693333pt;}
.y6b_c00326{bottom:611.773333pt;}
.y6c_c00326{bottom:612.360000pt;}
.y69_c00326{bottom:612.560000pt;}
.y6a_c00326{bottom:613.306667pt;}
.y67_c00326{bottom:613.693333pt;}
.y66_c00326{bottom:627.026667pt;}
.y64_c00326{bottom:627.773333pt;}
.y65_c00326{bottom:629.106667pt;}
.y63_c00326{bottom:629.693333pt;}
.y62_c00326{bottom:630.640000pt;}
.y61_c00326{bottom:631.026667pt;}
.y5f_c00326{bottom:646.440000pt;}
.y60_c00326{bottom:647.026667pt;}
.y5e_c00326{bottom:647.400000pt;}
.y5d_c00326{bottom:648.360000pt;}
.y5c_c00326{bottom:663.773333pt;}
.y59_c00326{bottom:664.560000pt;}
.y5b_c00326{bottom:665.306667pt;}
.y5a_c00326{bottom:665.693333pt;}
.y55_c00326{bottom:681.106667pt;}
.y57_c00326{bottom:683.026667pt;}
.y56_c00326{bottom:683.040000pt;}
.y58_c00326{bottom:683.226667pt;}
.y53_c00326{bottom:712.933333pt;}
.y52_c00326{bottom:714.066667pt;}
.y4f_c00326{bottom:714.266667pt;}
.y54_c00326{bottom:714.640000pt;}
.y50_c00326{bottom:715.026667pt;}
.y51_c00326{bottom:715.973333pt;}
.y4e_c00326{bottom:727.400000pt;}
.y4c_c00326{bottom:728.560000pt;}
.y4d_c00326{bottom:729.306667pt;}
.y4b_c00326{bottom:739.400000pt;}
.y4a_c00326{bottom:740.360000pt;}
.y49_c00326{bottom:742.266667pt;}
.y48_c00326{bottom:753.693333pt;}
.y47_c00326{bottom:755.600000pt;}
.y45_c00326{bottom:766.066667pt;}
.y41_c00326{bottom:766.266667pt;}
.y43_c00326{bottom:767.026667pt;}
.y44_c00326{bottom:767.973333pt;}
.y46_c00326{bottom:768.173333pt;}
.y42_c00326{bottom:768.933333pt;}
.y3f_c00326{bottom:779.026667pt;}
.y3c_c00326{bottom:779.400000pt;}
.y3b_c00326{bottom:780.360000pt;}
.y3e_c00326{bottom:781.306667pt;}
.y3d_c00326{bottom:781.506667pt;}
.y40_c00326{bottom:782.266667pt;}
.y3a_c00326{bottom:791.973333pt;}
.y39_c00326{bottom:793.693333pt;}
.y37_c00326{bottom:794.266667pt;}
.y38_c00326{bottom:794.640000pt;}
.y36_c00326{bottom:806.066667pt;}
.y33_c00326{bottom:807.026667pt;}
.y34_c00326{bottom:807.973333pt;}
.y35_c00326{bottom:808.933333pt;}
.y2b_c00326{bottom:818.066667pt;}
.y2a_c00326{bottom:818.640000pt;}
.y30_c00326{bottom:819.026667pt;}
.y2c_c00326{bottom:819.400000pt;}
.y32_c00326{bottom:819.973333pt;}
.y31_c00326{bottom:820.173333pt;}
.y2f_c00326{bottom:820.360000pt;}
.y2d_c00326{bottom:820.933333pt;}
.y2e_c00326{bottom:821.306667pt;}
.y29_c00326{bottom:831.400000pt;}
.y26_c00326{bottom:832.360000pt;}
.y28_c00326{bottom:833.306667pt;}
.y27_c00326{bottom:833.893333pt;}
.y23_c00326{bottom:844.733333pt;}
.y21_c00326{bottom:844.933333pt;}
.y24_c00326{bottom:846.266667pt;}
.y25_c00326{bottom:846.640000pt;}
.y22_c00326{bottom:847.600000pt;}
.y20_c00326{bottom:858.066667pt;}
.y1f_c00326{bottom:860.933333pt;}
.y1c_c00326{bottom:871.400000pt;}
.y18_c00326{bottom:871.600000pt;}
.y1a_c00326{bottom:872.360000pt;}
.y1b_c00326{bottom:872.933333pt;}
.y1d_c00326{bottom:873.306667pt;}
.y1e_c00326{bottom:873.506667pt;}
.y19_c00326{bottom:874.266667pt;}
.y17_c00326{bottom:884.733333pt;}
.y16_c00326{bottom:887.600000pt;}
.y13_c00326{bottom:897.306667pt;}
.y11_c00326{bottom:898.066667pt;}
.y12_c00326{bottom:899.026667pt;}
.y15_c00326{bottom:899.600000pt;}
.y14_c00326{bottom:899.973333pt;}
.yf_c00326{bottom:900.173333pt;}
.y10_c00326{bottom:900.933333pt;}
.ye_c00326{bottom:911.026667pt;}
.yd_c00326{bottom:912.933333pt;}
.ya_c00326{bottom:922.640000pt;}
.yb_c00326{bottom:924.360000pt;}
.y8_c00326{bottom:925.306667pt;}
.yc_c00326{bottom:925.506667pt;}
.y6_c00326{bottom:925.893333pt;}
.y9_c00326{bottom:926.266667pt;}
.y7_c00326{bottom:926.640000pt;}
.y5_c00326{bottom:943.773333pt;}
.y4_c00326{bottom:945.693333pt;}
.y3_c00326{bottom:946.640000pt;}
.y2_c00326{bottom:977.693333pt;}
.y1_c00326{bottom:979.600000pt;}
.h8_c00326{height:3.739141pt;}
.h6_c00326{height:14.890964pt;}
.h5_c00326{height:20.466875pt;}
.h1_c00326{height:22.303646pt;}
.h3_c00326{height:27.879557pt;}
.h2_c00326{height:31.618698pt;}
.h7_c00326{height:35.357839pt;}
.h4_c00326{height:39.031380pt;}
.h9_c00326{height:42.770521pt;}
.h0_c00326{height:1186.666667pt;}
.w0_c00326{width:782.666667pt;}
.x0_c00326{left:0.000000pt;}
.x19_c00326{left:134.666667pt;}
.x45_c00326{left:136.373333pt;}
.xff_c00326{left:137.333333pt;}
.x64_c00326{left:145.333333pt;}
.xb_c00326{left:147.626667pt;}
.x3_c00326{left:149.333333pt;}
.x9c_c00326{left:152.373333pt;}
.xfa_c00326{left:155.040000pt;}
.x4_c00326{left:158.666667pt;}
.xcb_c00326{left:160.000000pt;}
.x1a_c00326{left:161.706667pt;}
.xc_c00326{left:162.666667pt;}
.x32_c00326{left:164.000000pt;}
.x7e_c00326{left:166.293333pt;}
.xa5_c00326{left:168.373333pt;}
.x70_c00326{left:172.000000pt;}
.x46_c00326{left:173.333333pt;}
.xf4_c00326{left:174.666667pt;}
.x65_c00326{left:175.626667pt;}
.xb9_c00326{left:178.293333pt;}
.xfb_c00326{left:180.373333pt;}
.xed_c00326{left:183.040000pt;}
.x7f_c00326{left:184.373333pt;}
.x1b_c00326{left:185.333333pt;}
.x96_c00326{left:188.373333pt;}
.xbd_c00326{left:191.040000pt;}
.x5_c00326{left:192.960000pt;}
.x1c_c00326{left:195.426667pt;}
.x29_c00326{left:196.573333pt;}
.x100_c00326{left:199.040000pt;}
.x47_c00326{left:200.373333pt;}
.x77_c00326{left:201.706667pt;}
.xc2_c00326{left:204.960000pt;}
.xcc_c00326{left:206.293333pt;}
.x80_c00326{left:207.626667pt;}
.xfc_c00326{left:208.960000pt;}
.xe4_c00326{left:212.000000pt;}
.xf5_c00326{left:213.333333pt;}
.xd8_c00326{left:214.666667pt;}
.x88_c00326{left:215.626667pt;}
.x5d_c00326{left:218.666667pt;}
.xd_c00326{left:220.960000pt;}
.xb3_c00326{left:222.293333pt;}
.x3b_c00326{left:224.000000pt;}
.xac_c00326{left:225.333333pt;}
.x6a_c00326{left:226.666667pt;}
.x1d_c00326{left:228.960000pt;}
.x89_c00326{left:230.666667pt;}
.xc3_c00326{left:232.000000pt;}
.x57_c00326{left:233.333333pt;}
.x2a_c00326{left:236.373333pt;}
.x91_c00326{left:237.333333pt;}
.xb4_c00326{left:239.040000pt;}
.xe5_c00326{left:241.333333pt;}
.x71_c00326{left:242.293333pt;}
.x4f_c00326{left:244.960000pt;}
.x48_c00326{left:246.293333pt;}
.x3c_c00326{left:248.000000pt;}
.xe_c00326{left:252.000000pt;}
.x81_c00326{left:253.706667pt;}
.xdf_c00326{left:255.040000pt;}
.x6_c00326{left:256.000000pt;}
.x97_c00326{left:257.333333pt;}
.xbe_c00326{left:258.293333pt;}
.xf6_c00326{left:259.626667pt;}
.x92_c00326{left:261.333333pt;}
.x5e_c00326{left:264.000000pt;}
.xe6_c00326{left:264.960000pt;}
.x1e_c00326{left:267.040000pt;}
.xf_c00326{left:268.000000pt;}
.xc4_c00326{left:272.000000pt;}
.x58_c00326{left:273.706667pt;}
.x6b_c00326{left:275.040000pt;}
.xa6_c00326{left:276.000000pt;}
.x82_c00326{left:277.333333pt;}
.x2b_c00326{left:280.000000pt;}
.xcd_c00326{left:280.960000pt;}
.x9d_c00326{left:283.040000pt;}
.x105_c00326{left:284.960000pt;}
.x3d_c00326{left:287.040000pt;}
.xd9_c00326{left:289.333333pt;}
.xd1_c00326{left:290.666667pt;}
.x98_c00326{left:293.333333pt;}
.x33_c00326{left:294.666667pt;}
.x50_c00326{left:296.000000pt;}
.x5f_c00326{left:297.333333pt;}
.xf1_c00326{left:298.293333pt;}
.x49_c00326{left:300.000000pt;}
.xc5_c00326{left:301.333333pt;}
.xce_c00326{left:303.040000pt;}
.x10_c00326{left:304.000000pt;}
.x51_c00326{left:305.333333pt;}
.x66_c00326{left:308.000000pt;}
.xfd_c00326{left:309.706667pt;}
.xee_c00326{left:311.626667pt;}
.x8a_c00326{left:314.666667pt;}
.xe0_c00326{left:316.373333pt;}
.x72_c00326{left:317.333333pt;}
.x101_c00326{left:318.666667pt;}
.x1f_c00326{left:320.373333pt;}
.x7_c00326{left:321.706667pt;}
.xd2_c00326{left:324.000000pt;}
.x34_c00326{left:326.293333pt;}
.xb5_c00326{left:328.373333pt;}
.xdc_c00326{left:329.706667pt;}
.x99_c00326{left:332.000000pt;}
.x20_c00326{left:333.333333pt;}
.x2c_c00326{left:335.040000pt;}
.xf7_c00326{left:336.000000pt;}
.xba_c00326{left:337.706667pt;}
.x3e_c00326{left:340.373333pt;}
.x35_c00326{left:341.333333pt;}
.x52_c00326{left:344.960000pt;}
.x83_c00326{left:346.666667pt;}
.x59_c00326{left:348.000000pt;}
.x2d_c00326{left:350.293333pt;}
.x67_c00326{left:352.000000pt;}
.x8_c00326{left:355.040000pt;}
.x4a_c00326{left:356.373333pt;}
.x1_c00326{left:357.333333pt;}
.xe7_c00326{left:361.333333pt;}
.xad_c00326{left:363.626667pt;}
.xd3_c00326{left:365.706667pt;}
.xbf_c00326{left:367.040000pt;}
.x21_c00326{left:368.000000pt;}
.x53_c00326{left:368.960000pt;}
.xc6_c00326{left:372.000000pt;}
.xcf_c00326{left:374.666667pt;}
.x93_c00326{left:376.000000pt;}
.xb6_c00326{left:376.960000pt;}
.x9_c00326{left:379.040000pt;}
.x84_c00326{left:380.373333pt;}
.x3f_c00326{left:383.240000pt;}
.x5a_c00326{left:385.706667pt;}
.xc7_c00326{left:388.000000pt;}
.x8b_c00326{left:388.960000pt;}
.x11_c00326{left:391.040000pt;}
.x78_c00326{left:393.706667pt;}
.x36_c00326{left:396.000000pt;}
.xc8_c00326{left:400.000000pt;}
.x9e_c00326{left:403.040000pt;}
.x73_c00326{left:404.373333pt;}
.x60_c00326{left:405.333333pt;}
.x12_c00326{left:406.293333pt;}
.x54_c00326{left:408.000000pt;}
.x94_c00326{left:411.040000pt;}
.xa7_c00326{left:412.373333pt;}
.x68_c00326{left:413.706667pt;}
.x22_c00326{left:416.000000pt;}
.x79_c00326{left:418.666667pt;}
.x6c_c00326{left:420.960000pt;}
.x69_c00326{left:422.666667pt;}
.x106_c00326{left:424.000000pt;}
.xf2_c00326{left:424.960000pt;}
.xda_c00326{left:427.040000pt;}
.xd4_c00326{left:429.333333pt;}
.x37_c00326{left:430.666667pt;}
.x8c_c00326{left:432.373333pt;}
.x4b_c00326{left:433.333333pt;}
.x55_c00326{left:435.040000pt;}
.x9a_c00326{left:436.373333pt;}
.x9f_c00326{left:437.333333pt;}
.xa_c00326{left:438.666667pt;}
.x107_c00326{left:440.373333pt;}
.x61_c00326{left:443.040000pt;}
.x13_c00326{left:444.000000pt;}
.x2e_c00326{left:445.333333pt;}
.x102_c00326{left:448.373333pt;}
.x23_c00326{left:449.706667pt;}
.x74_c00326{left:452.960000pt;}
.xa0_c00326{left:454.293333pt;}
.x40_c00326{left:457.333333pt;}
.x56_c00326{left:458.666667pt;}
.x62_c00326{left:460.373333pt;}
.x6d_c00326{left:461.333333pt;}
.x7a_c00326{left:462.293333pt;}
.x24_c00326{left:464.373333pt;}
.x4c_c00326{left:467.626667pt;}
.x75_c00326{left:471.040000pt;}
.xf8_c00326{left:472.000000pt;}
.xae_c00326{left:473.333333pt;}
.x85_c00326{left:475.040000pt;}
.xe1_c00326{left:476.000000pt;}
.xc0_c00326{left:477.706667pt;}
.x38_c00326{left:478.666667pt;}
.x8d_c00326{left:480.000000pt;}
.x6e_c00326{left:481.333333pt;}
.xc9_c00326{left:486.666667pt;}
.x5b_c00326{left:493.333333pt;}
.x14_c00326{left:494.666667pt;}
.x2f_c00326{left:495.626667pt;}
.xa1_c00326{left:497.333333pt;}
.x25_c00326{left:498.666667pt;}
.x103_c00326{left:500.000000pt;}
.x6f_c00326{left:502.293333pt;}
.x5c_c00326{left:504.373333pt;}
.x7b_c00326{left:506.666667pt;}
.xe2_c00326{left:508.000000pt;}
.xdd_c00326{left:509.706667pt;}
.x8e_c00326{left:510.666667pt;}
.xa2_c00326{left:512.000000pt;}
.xaf_c00326{left:513.706667pt;}
.xb7_c00326{left:517.706667pt;}
.xe8_c00326{left:519.040000pt;}
.xca_c00326{left:520.000000pt;}
.xbb_c00326{left:521.333333pt;}
.x86_c00326{left:524.000000pt;}
.x8f_c00326{left:527.040000pt;}
.xa8_c00326{left:530.293333pt;}
.x41_c00326{left:531.626667pt;}
.xef_c00326{left:533.333333pt;}
.x9b_c00326{left:534.666667pt;}
.xb0_c00326{left:537.706667pt;}
.xb8_c00326{left:539.626667pt;}
.x26_c00326{left:541.333333pt;}
.x7c_c00326{left:542.293333pt;}
.xe9_c00326{left:544.000000pt;}
.x15_c00326{left:544.960000pt;}
.x30_c00326{left:546.293333pt;}
.x39_c00326{left:547.626667pt;}
.xf0_c00326{left:548.960000pt;}
.x27_c00326{left:550.666667pt;}
.xd0_c00326{left:556.000000pt;}
.x16_c00326{left:557.333333pt;}
.xa3_c00326{left:558.666667pt;}
.xf3_c00326{left:560.373333pt;}
.xc1_c00326{left:563.040000pt;}
.x104_c00326{left:564.000000pt;}
.xd5_c00326{left:566.666667pt;}
.x76_c00326{left:570.293333pt;}
.xb1_c00326{left:572.000000pt;}
.xde_c00326{left:573.333333pt;}
.xbc_c00326{left:574.293333pt;}
.x4d_c00326{left:575.626667pt;}
.xe3_c00326{left:577.333333pt;}
.xea_c00326{left:579.626667pt;}
.xa9_c00326{left:581.333333pt;}
.x3a_c00326{left:582.666667pt;}
.x42_c00326{left:584.000000pt;}
.xd6_c00326{left:585.706667pt;}
.x17_c00326{left:588.000000pt;}
.x28_c00326{left:590.293333pt;}
.x95_c00326{left:592.373333pt;}
.x43_c00326{left:596.000000pt;}
.xeb_c00326{left:597.706667pt;}
.xdb_c00326{left:600.373333pt;}
.x4e_c00326{left:601.333333pt;}
.x63_c00326{left:603.626667pt;}
.x7d_c00326{left:606.666667pt;}
.xd7_c00326{left:608.000000pt;}
.xaa_c00326{left:608.960000pt;}
.xa4_c00326{left:611.040000pt;}
.x18_c00326{left:612.960000pt;}
.x31_c00326{left:615.040000pt;}
.xf9_c00326{left:616.000000pt;}
.x90_c00326{left:618.293333pt;}
.xec_c00326{left:622.666667pt;}
.xab_c00326{left:625.333333pt;}
.x2_c00326{left:626.293333pt;}
.x44_c00326{left:628.960000pt;}
.xb2_c00326{left:631.040000pt;}
.x87_c00326{left:633.333333pt;}
.xfe_c00326{left:644.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_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_a2cd780c0c48b3315ed41677.woff2')format("woff");}.ff1_c00327{font-family:ff1_c00327;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mdc_c00327{transform:matrix(0.110996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110996,0.000000,0.000000,0.250000,0,0);}
.m48_c00327{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.ma0_c00327{transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);}
.m5c_c00327{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m0_c00327{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m8a_c00327{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.me_c00327{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.mc_c00327{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m85_c00327{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m5d_c00327{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.ma7_c00327{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.mc6_c00327{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00327{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m2c_c00327{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m30_c00327{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m55_c00327{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m93_c00327{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m47_c00327{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m79_c00327{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m27_c00327{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.mab_c00327{transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);}
.m60_c00327{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m98_c00327{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m8d_c00327{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m23_c00327{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.m87_c00327{transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);}
.m70_c00327{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m25_c00327{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mb2_c00327{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m5f_c00327{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m57_c00327{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m2f_c00327{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m66_c00327{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m1e_c00327{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m72_c00327{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m4a_c00327{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m4e_c00327{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m42_c00327{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m33_c00327{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m83_c00327{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m99_c00327{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mb0_c00327{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m62_c00327{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.md0_c00327{transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);}
.m2e_c00327{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m64_c00327{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m97_c00327{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m6d_c00327{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m18_c00327{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mc7_c00327{transform:matrix(0.433088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433088,0.000000,0.000000,0.250000,0,0);}
.m46_c00327{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m94_c00327{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.m1f_c00327{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m13_c00327{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m9_c00327{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m26_c00327{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mb6_c00327{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.mb9_c00327{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_c00327{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m1d_c00327{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.m84_c00327{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.mba_c00327{transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);}
.m21_c00327{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m6_c00327{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m92_c00327{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m7d_c00327{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m8e_c00327{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m1a_c00327{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m73_c00327{transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);}
.m82_c00327{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m9f_c00327{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m81_c00327{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.mcc_c00327{transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);}
.m89_c00327{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m5a_c00327{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mb5_c00327{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m7a_c00327{transform:matrix(0.461765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461765,0.000000,0.000000,0.250000,0,0);}
.m5_c00327{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.mcf_c00327{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m9d_c00327{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.mc9_c00327{transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);}
.me6_c00327{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.me3_c00327{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.m22_c00327{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m7e_c00327{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m3f_c00327{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m31_c00327{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.md8_c00327{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m3d_c00327{transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);}
.m88_c00327{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m77_c00327{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m44_c00327{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.me1_c00327{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m36_c00327{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m63_c00327{transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);}
.m6a_c00327{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.me5_c00327{transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);}
.md7_c00327{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.m45_c00327{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m3e_c00327{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);}
.m35_c00327{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m50_c00327{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m3a_c00327{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m5b_c00327{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m8b_c00327{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m2a_c00327{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.maa_c00327{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);}
.mc4_c00327{transform:matrix(0.510417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510417,0.000000,0.000000,0.250000,0,0);}
.m6b_c00327{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.maf_c00327{transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);}
.ma_c00327{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m7b_c00327{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m91_c00327{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m4f_c00327{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m67_c00327{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m40_c00327{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.mb_c00327{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m6c_c00327{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m86_c00327{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m52_c00327{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m9a_c00327{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m80_c00327{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m4_c00327{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.me0_c00327{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.mc3_c00327{transform:matrix(0.535256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535256,0.000000,0.000000,0.250000,0,0);}
.m56_c00327{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m7_c00327{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m71_c00327{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m12_c00327{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m1c_c00327{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m8c_c00327{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m2b_c00327{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m9e_c00327{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m49_c00327{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m6e_c00327{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.mbd_c00327{transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);}
.m29_c00327{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m51_c00327{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m78_c00327{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m4d_c00327{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m75_c00327{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.mca_c00327{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.mae_c00327{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m76_c00327{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m3b_c00327{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m2d_c00327{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mc8_c00327{transform:matrix(0.556167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556167,0.000000,0.000000,0.250000,0,0);}
.m96_c00327{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m1b_c00327{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m10_c00327{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m14_c00327{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m59_c00327{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mc5_c00327{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m9c_c00327{transform:matrix(0.562152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562152,0.000000,0.000000,0.250000,0,0);}
.m65_c00327{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m4c_c00327{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.md4_c00327{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m74_c00327{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.md5_c00327{transform:matrix(0.568109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568109,0.000000,0.000000,0.250000,0,0);}
.m19_c00327{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m3_c00327{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m34_c00327{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m9b_c00327{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m32_c00327{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mb7_c00327{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.m53_c00327{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.mc0_c00327{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m6f_c00327{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.ma3_c00327{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m43_c00327{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m4b_c00327{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.ma9_c00327{transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);}
.m90_c00327{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.m5e_c00327{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m28_c00327{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);}
.m39_c00327{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.md3_c00327{transform:matrix(0.602564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602564,0.000000,0.000000,0.250000,0,0);}
.ma1_c00327{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m8_c00327{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m1_c00327{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.mbc_c00327{transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);}
.mb3_c00327{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m16_c00327{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mb1_c00327{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m58_c00327{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.ma8_c00327{transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);}
.m95_c00327{transform:matrix(0.617347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617347,0.000000,0.000000,0.250000,0,0);}
.ma5_c00327{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.me4_c00327{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m69_c00327{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_c00327{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m24_c00327{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.mbf_c00327{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m11_c00327{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.mb8_c00327{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m41_c00327{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mdb_c00327{transform:matrix(0.667929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667929,0.000000,0.000000,0.250000,0,0);}
.ma4_c00327{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.mcd_c00327{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.me2_c00327{transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);}
.ma2_c00327{transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);}
.mb4_c00327{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.md2_c00327{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.m61_c00327{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.md9_c00327{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.mac_c00327{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.mde_c00327{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m7c_c00327{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.md6_c00327{transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);}
.m37_c00327{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mdd_c00327{transform:matrix(0.727974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727974,0.000000,0.000000,0.250000,0,0);}
.m7f_c00327{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m54_c00327{transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);}
.m17_c00327{transform:matrix(0.736471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736471,0.000000,0.000000,0.250000,0,0);}
.md1_c00327{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.mda_c00327{transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);}
.mbe_c00327{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.mf_c00327{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m8f_c00327{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mcb_c00327{transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);}
.m20_c00327{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mc1_c00327{transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);}
.mdf_c00327{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m3c_c00327{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mce_c00327{transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);}
.m15_c00327{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.mc2_c00327{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m38_c00327{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.ma6_c00327{transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);}
.mbb_c00327{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m68_c00327{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00327{vertical-align:-6.000000px;}
.v0_c00327{vertical-align:0.000000px;}
.v2_c00327{vertical-align:6.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;}
}
.ws13_c00327{word-spacing:0.000000px;}
.ws4_c00327{word-spacing:13.230928px;}
.ws2_c00327{word-spacing:13.306168px;}
.wsc_c00327{word-spacing:19.620812px;}
.ws12_c00327{word-spacing:21.573046px;}
.ws9_c00327{word-spacing:25.629635px;}
.ws0_c00327{word-spacing:27.671529px;}
.wse_c00327{word-spacing:29.635518px;}
.wsb_c00327{word-spacing:30.193299px;}
.wsa_c00327{word-spacing:31.638459px;}
.wsd_c00327{word-spacing:33.641400px;}
.ws3_c00327{word-spacing:36.864950px;}
.ws10_c00327{word-spacing:38.813552px;}
.ws8_c00327{word-spacing:41.452695px;}
.ws6_c00327{word-spacing:45.572749px;}
.ws11_c00327{word-spacing:49.633219px;}
.ws1_c00327{word-spacing:49.953969px;}
.ws7_c00327{word-spacing:50.291383px;}
.ws5_c00327{word-spacing:54.347539px;}
.wsf_c00327{word-spacing:59.332701px;}
._0_c00327{width:33.175968px;}
._1_c00327{width:62.307436px;}
.fc0_c00327{color:transparent;}
.fs7_c00327{font-size:3.420000px;}
.fs9_c00327{font-size:11.880000px;}
.fs8_c00327{font-size:13.620000px;}
.fs5_c00327{font-size:18.720000px;}
.fs1_c00327{font-size:20.400000px;}
.fs4_c00327{font-size:25.500000px;}
.fs3_c00327{font-size:28.920000px;}
.fs2_c00327{font-size:32.340000px;}
.fs0_c00327{font-size:35.700000px;}
.fs6_c00327{font-size:39.120000px;}
.y0_c00327{bottom:0.000000px;}
.y71_c00327{bottom:249.405000px;}
.y75_c00327{bottom:250.905000px;}
.y73_c00327{bottom:251.745000px;}
.y72_c00327{bottom:252.405000px;}
.y74_c00327{bottom:253.905000px;}
.y6c_c00327{bottom:271.245000px;}
.y6e_c00327{bottom:272.130000px;}
.y70_c00327{bottom:272.325000px;}
.y6f_c00327{bottom:272.970000px;}
.y6d_c00327{bottom:273.405000px;}
.y6a_c00327{bottom:288.825000px;}
.y6b_c00327{bottom:290.745000px;}
.y69_c00327{bottom:292.905000px;}
.y64_c00327{bottom:310.245000px;}
.y65_c00327{bottom:311.325000px;}
.y68_c00327{bottom:311.745000px;}
.y66_c00327{bottom:312.405000px;}
.y67_c00327{bottom:312.630000px;}
.y61_c00327{bottom:330.405000px;}
.y5e_c00327{bottom:331.245000px;}
.y5d_c00327{bottom:331.905000px;}
.y62_c00327{bottom:332.130000px;}
.y5f_c00327{bottom:332.325000px;}
.y63_c00327{bottom:332.970000px;}
.y60_c00327{bottom:333.405000px;}
.y5c_c00327{bottom:348.405000px;}
.y57_c00327{bottom:349.245000px;}
.y58_c00327{bottom:350.745000px;}
.y5a_c00327{bottom:351.630000px;}
.y5b_c00327{bottom:352.470000px;}
.y59_c00327{bottom:352.905000px;}
.y56_c00327{bottom:367.905000px;}
.y55_c00327{bottom:369.180000px;}
.y52_c00327{bottom:370.245000px;}
.y53_c00327{bottom:371.970000px;}
.y54_c00327{bottom:372.405000px;}
.y51_c00327{bottom:387.405000px;}
.y4b_c00327{bottom:388.245000px;}
.y4d_c00327{bottom:389.745000px;}
.y4f_c00327{bottom:390.630000px;}
.y50_c00327{bottom:390.825000px;}
.y4c_c00327{bottom:391.470000px;}
.y4e_c00327{bottom:391.905000px;}
.y46_c00327{bottom:409.245000px;}
.y4a_c00327{bottom:410.130000px;}
.y48_c00327{bottom:411.405000px;}
.y49_c00327{bottom:411.630000px;}
.y47_c00327{bottom:412.905000px;}
.y42_c00327{bottom:428.745000px;}
.y43_c00327{bottom:430.905000px;}
.y45_c00327{bottom:431.970000px;}
.y44_c00327{bottom:432.405000px;}
.y41_c00327{bottom:447.405000px;}
.y3f_c00327{bottom:448.905000px;}
.y40_c00327{bottom:450.405000px;}
.y3d_c00327{bottom:451.905000px;}
.y3e_c00327{bottom:451.920000px;}
.ycc_c00327{bottom:489.630000px;}
.yca_c00327{bottom:491.130000px;}
.ycb_c00327{bottom:492.195000px;}
.yc6_c00327{bottom:504.630000px;}
.yc7_c00327{bottom:505.695000px;}
.yc8_c00327{bottom:506.130000px;}
.yc9_c00327{bottom:507.195000px;}
.yc4_c00327{bottom:518.775000px;}
.yc5_c00327{bottom:519.195000px;}
.yc3_c00327{bottom:519.630000px;}
.ybf_c00327{bottom:531.630000px;}
.yc1_c00327{bottom:532.695000px;}
.yc2_c00327{bottom:533.130000px;}
.yc0_c00327{bottom:534.195000px;}
.yba_c00327{bottom:544.695000px;}
.yb8_c00327{bottom:545.130000px;}
.yb9_c00327{bottom:546.195000px;}
.ybe_c00327{bottom:546.630000px;}
.ybc_c00327{bottom:547.275000px;}
.ybb_c00327{bottom:547.695000px;}
.ybd_c00327{bottom:547.905000px;}
.yb7_c00327{bottom:560.130000px;}
.yb6_c00327{bottom:561.195000px;}
.yb2_c00327{bottom:573.630000px;}
.yb4_c00327{bottom:574.695000px;}
.yb3_c00327{bottom:575.130000px;}
.yb5_c00327{bottom:576.195000px;}
.yb0_c00327{bottom:588.630000px;}
.yb1_c00327{bottom:589.695000px;}
.yab_c00327{bottom:601.050000px;}
.yad_c00327{bottom:602.130000px;}
.yac_c00327{bottom:603.195000px;}
.yae_c00327{bottom:603.420000px;}
.yaf_c00327{bottom:603.630000px;}
.yaa_c00327{bottom:614.130000px;}
.ya7_c00327{bottom:615.195000px;}
.ya8_c00327{bottom:615.630000px;}
.ya9_c00327{bottom:616.695000px;}
.ya3_c00327{bottom:629.130000px;}
.ya4_c00327{bottom:630.195000px;}
.ya5_c00327{bottom:630.630000px;}
.ya6_c00327{bottom:631.695000px;}
.y9d_c00327{bottom:641.550000px;}
.y9e_c00327{bottom:642.195000px;}
.ya2_c00327{bottom:642.630000px;}
.y9f_c00327{bottom:643.695000px;}
.ya0_c00327{bottom:644.130000px;}
.ya1_c00327{bottom:645.420000px;}
.y98_c00327{bottom:657.195000px;}
.y9a_c00327{bottom:657.630000px;}
.y99_c00327{bottom:658.695000px;}
.y9b_c00327{bottom:658.920000px;}
.y9c_c00327{bottom:660.420000px;}
.y95_c00327{bottom:669.630000px;}
.y96_c00327{bottom:671.130000px;}
.y94_c00327{bottom:672.195000px;}
.y97_c00327{bottom:673.920000px;}
.y91_c00327{bottom:684.630000px;}
.y92_c00327{bottom:685.695000px;}
.y93_c00327{bottom:687.420000px;}
.y8e_c00327{bottom:698.130000px;}
.y8f_c00327{bottom:699.195000px;}
.y90_c00327{bottom:700.920000px;}
.y8b_c00327{bottom:711.630000px;}
.y8a_c00327{bottom:712.695000px;}
.y8c_c00327{bottom:713.130000px;}
.y8d_c00327{bottom:714.420000px;}
.y86_c00327{bottom:730.695000px;}
.y89_c00327{bottom:731.130000px;}
.y87_c00327{bottom:732.195000px;}
.y88_c00327{bottom:732.630000px;}
.y80_c00327{bottom:743.130000px;}
.y81_c00327{bottom:744.195000px;}
.y82_c00327{bottom:744.630000px;}
.y83_c00327{bottom:745.695000px;}
.y84_c00327{bottom:746.130000px;}
.y85_c00327{bottom:747.195000px;}
.y7d_c00327{bottom:770.325000px;}
.y7f_c00327{bottom:772.470000px;}
.y7e_c00327{bottom:773.550000px;}
.y7b_c00327{bottom:785.325000px;}
.y79_c00327{bottom:787.050000px;}
.y7c_c00327{bottom:787.470000px;}
.y7a_c00327{bottom:787.695000px;}
.y78_c00327{bottom:788.550000px;}
.y77_c00327{bottom:803.970000px;}
.y76_c00327{bottom:808.050000px;}
.y39_c00327{bottom:842.745000px;}
.y3b_c00327{bottom:843.630000px;}
.y3a_c00327{bottom:844.905000px;}
.y3c_c00327{bottom:845.970000px;}
.y37_c00327{bottom:860.745000px;}
.y33_c00327{bottom:861.180000px;}
.y32_c00327{bottom:861.405000px;}
.y34_c00327{bottom:862.245000px;}
.y36_c00327{bottom:863.130000px;}
.y38_c00327{bottom:863.325000px;}
.y31_c00327{bottom:864.405000px;}
.y35_c00327{bottom:865.470000px;}
.y30_c00327{bottom:881.745000px;}
.y2f_c00327{bottom:882.630000px;}
.y2e_c00327{bottom:883.470000px;}
.y2d_c00327{bottom:883.905000px;}
.y2b_c00327{bottom:901.245000px;}
.y2c_c00327{bottom:903.405000px;}
.y29_c00327{bottom:920.745000px;}
.y2a_c00327{bottom:922.905000px;}
.y28_c00327{bottom:924.405000px;}
.y23_c00327{bottom:939.405000px;}
.y26_c00327{bottom:940.245000px;}
.y24_c00327{bottom:942.405000px;}
.y25_c00327{bottom:942.630000px;}
.y27_c00327{bottom:943.470000px;}
.y22_c00327{bottom:959.745000px;}
.y1e_c00327{bottom:961.905000px;}
.y21_c00327{bottom:962.130000px;}
.y1f_c00327{bottom:962.970000px;}
.y20_c00327{bottom:963.405000px;}
.y1c_c00327{bottom:979.245000px;}
.y19_c00327{bottom:980.745000px;}
.y1a_c00327{bottom:981.405000px;}
.y1b_c00327{bottom:981.630000px;}
.y1d_c00327{bottom:982.470000px;}
.y18_c00327{bottom:982.905000px;}
.y13_c00327{bottom:998.745000px;}
.y14_c00327{bottom:1000.245000px;}
.y17_c00327{bottom:1000.905000px;}
.y15_c00327{bottom:1001.970000px;}
.y16_c00327{bottom:1002.405000px;}
.y11_c00327{bottom:1018.245000px;}
.yf_c00327{bottom:1019.745000px;}
.y10_c00327{bottom:1020.630000px;}
.ye_c00327{bottom:1020.825000px;}
.y12_c00327{bottom:1021.470000px;}
.yd_c00327{bottom:1021.905000px;}
.ya_c00327{bottom:1039.245000px;}
.y7_c00327{bottom:1040.130000px;}
.yc_c00327{bottom:1040.325000px;}
.yb_c00327{bottom:1040.970000px;}
.y8_c00327{bottom:1041.405000px;}
.y9_c00327{bottom:1042.470000px;}
.y3_c00327{bottom:1058.325000px;}
.y6_c00327{bottom:1058.745000px;}
.y5_c00327{bottom:1060.470000px;}
.y4_c00327{bottom:1060.905000px;}
.y1_c00327{bottom:1097.745000px;}
.y2_c00327{bottom:1099.050000px;}
.h8_c00327{height:4.206533px;}
.hb_c00327{height:14.612168px;}
.h9_c00327{height:16.752334px;}
.ha_c00327{height:22.752334px;}
.h6_c00327{height:23.025234px;}
.h2_c00327{height:25.091602px;}
.hc_c00327{height:29.025234px;}
.h5_c00327{height:31.364502px;}
.h4_c00327{height:35.571035px;}
.h3_c00327{height:39.777568px;}
.h1_c00327{height:43.910303px;}
.h7_c00327{height:48.116836px;}
.h0_c00327{height:1335.000000px;}
.w0_c00327{width:880.500000px;}
.x0_c00327{left:0.000000px;}
.x7b_c00327{left:148.920000px;}
.x28_c00327{left:151.500000px;}
.x1_c00327{left:153.000000px;}
.xb0_c00327{left:162.645000px;}
.x71_c00327{left:164.145000px;}
.x10_c00327{left:166.500000px;}
.x5b_c00327{left:168.000000px;}
.x63_c00327{left:171.000000px;}
.x90_c00327{left:183.000000px;}
.x9b_c00327{left:188.775000px;}
.x31_c00327{left:190.920000px;}
.xc5_c00327{left:192.000000px;}
.xad_c00327{left:193.500000px;}
.x11_c00327{left:194.580000px;}
.x7c_c00327{left:196.500000px;}
.x5c_c00327{left:199.080000px;}
.x3_c00327{left:202.920000px;}
.x50_c00327{left:210.645000px;}
.x7d_c00327{left:211.920000px;}
.x3a_c00327{left:214.920000px;}
.x64_c00327{left:216.000000px;}
.x32_c00327{left:217.080000px;}
.xce_c00327{left:219.000000px;}
.xd6_c00327{left:223.500000px;}
.x12_c00327{left:225.420000px;}
.x1f_c00327{left:226.500000px;}
.x4_c00327{left:228.420000px;}
.x9c_c00327{left:231.420000px;}
.x87_c00327{left:234.000000px;}
.x72_c00327{left:235.500000px;}
.xd5_c00327{left:237.000000px;}
.x46_c00327{left:238.500000px;}
.x65_c00327{left:241.080000px;}
.x3b_c00327{left:243.000000px;}
.xa7_c00327{left:245.580000px;}
.xd2_c00327{left:250.080000px;}
.xbe_c00327{left:252.420000px;}
.x5_c00327{left:253.920000px;}
.x47_c00327{left:255.000000px;}
.x5a_c00327{left:256.500000px;}
.x5d_c00327{left:259.080000px;}
.x97_c00327{left:261.645000px;}
.xdd_c00327{left:264.000000px;}
.xd7_c00327{left:265.500000px;}
.xb9_c00327{left:267.000000px;}
.xa8_c00327{left:269.580000px;}
.x7e_c00327{left:274.500000px;}
.x3c_c00327{left:276.420000px;}
.x20_c00327{left:277.500000px;}
.x73_c00327{left:279.420000px;}
.x13_c00327{left:282.000000px;}
.xae_c00327{left:283.080000px;}
.x5e_c00327{left:289.500000px;}
.x29_c00327{left:292.080000px;}
.x88_c00327{left:293.580000px;}
.x51_c00327{left:296.580000px;}
.xb1_c00327{left:301.500000px;}
.xaf_c00327{left:302.580000px;}
.x91_c00327{left:306.000000px;}
.x6_c00327{left:307.500000px;}
.x9d_c00327{left:309.000000px;}
.x48_c00327{left:313.920000px;}
.xa3_c00327{left:316.920000px;}
.xbf_c00327{left:318.000000px;}
.x66_c00327{left:319.080000px;}
.x70_c00327{left:320.580000px;}
.x21_c00327{left:322.500000px;}
.x92_c00327{left:325.920000px;}
.x5f_c00327{left:327.000000px;}
.xd8_c00327{left:328.920000px;}
.xcf_c00327{left:331.920000px;}
.x3d_c00327{left:334.500000px;}
.x14_c00327{left:337.920000px;}
.x7_c00327{left:342.000000px;}
.x2a_c00327{left:343.500000px;}
.x52_c00327{left:345.000000px;}
.x9e_c00327{left:346.500000px;}
.xb2_c00327{left:349.920000px;}
.x49_c00327{left:354.000000px;}
.x33_c00327{left:356.580000px;}
.x7f_c00327{left:361.920000px;}
.x3e_c00327{left:363.000000px;}
.x89_c00327{left:364.500000px;}
.x67_c00327{left:366.000000px;}
.x53_c00327{left:369.420000px;}
.x4a_c00327{left:372.000000px;}
.x8_c00327{left:373.500000px;}
.x15_c00327{left:376.500000px;}
.xb3_c00327{left:385.920000px;}
.x22_c00327{left:387.000000px;}
.x4b_c00327{left:388.500000px;}
.xc6_c00327{left:390.000000px;}
.x93_c00327{left:391.920000px;}
.x3f_c00327{left:393.420000px;}
.xca_c00327{left:394.500000px;}
.xa9_c00327{left:397.500000px;}
.x8a_c00327{left:399.000000px;}
.x68_c00327{left:400.500000px;}
.x2_c00327{left:403.500000px;}
.x9_c00327{left:405.420000px;}
.x54_c00327{left:408.000000px;}
.x16_c00327{left:411.000000px;}
.xb4_c00327{left:412.080000px;}
.x23_c00327{left:415.920000px;}
.x2b_c00327{left:421.920000px;}
.x74_c00327{left:424.920000px;}
.x9f_c00327{left:426.000000px;}
.x60_c00327{left:428.580000px;}
.x94_c00327{left:430.500000px;}
.xc0_c00327{left:432.000000px;}
.x98_c00327{left:433.920000px;}
.xd0_c00327{left:435.000000px;}
.x34_c00327{left:436.500000px;}
.x17_c00327{left:438.000000px;}
.xcb_c00327{left:439.500000px;}
.xd9_c00327{left:441.000000px;}
.x69_c00327{left:444.420000px;}
.x61_c00327{left:445.920000px;}
.xa0_c00327{left:447.000000px;}
.x75_c00327{left:452.580000px;}
.xbd_c00327{left:456.000000px;}
.x4c_c00327{left:459.000000px;}
.x2c_c00327{left:460.920000px;}
.x18_c00327{left:466.920000px;}
.xc4_c00327{left:469.500000px;}
.xb5_c00327{left:472.500000px;}
.xa4_c00327{left:474.000000px;}
.x35_c00327{left:475.080000px;}
.x40_c00327{left:477.000000px;}
.x6a_c00327{left:478.500000px;}
.xa_c00327{left:480.000000px;}
.x4d_c00327{left:481.920000px;}
.xcc_c00327{left:484.500000px;}
.xda_c00327{left:486.000000px;}
.x62_c00327{left:487.500000px;}
.x2d_c00327{left:489.000000px;}
.x41_c00327{left:490.920000px;}
.x95_c00327{left:493.080000px;}
.x8b_c00327{left:496.920000px;}
.xb6_c00327{left:499.080000px;}
.x36_c00327{left:507.000000px;}
.x80_c00327{left:510.000000px;}
.x19_c00327{left:514.080000px;}
.xb_c00327{left:517.500000px;}
.x24_c00327{left:519.000000px;}
.x37_c00327{left:520.500000px;}
.x55_c00327{left:523.920000px;}
.x76_c00327{left:525.000000px;}
.xd4_c00327{left:529.500000px;}
.xdc_c00327{left:531.000000px;}
.x1a_c00327{left:532.920000px;}
.xc7_c00327{left:534.000000px;}
.xcd_c00327{left:535.500000px;}
.x81_c00327{left:538.500000px;}
.xc1_c00327{left:541.080000px;}
.x2e_c00327{left:544.500000px;}
.xaa_c00327{left:546.000000px;}
.x38_c00327{left:550.080000px;}
.xba_c00327{left:551.580000px;}
.x96_c00327{left:553.080000px;}
.xa5_c00327{left:554.580000px;}
.x82_c00327{left:556.920000px;}
.x6b_c00327{left:558.000000px;}
.xc2_c00327{left:559.500000px;}
.x1b_c00327{left:561.000000px;}
.xc_c00327{left:562.080000px;}
.x4e_c00327{left:563.580000px;}
.xd3_c00327{left:567.000000px;}
.xd1_c00327{left:570.000000px;}
.x77_c00327{left:571.080000px;}
.xbb_c00327{left:575.355000px;}
.xa1_c00327{left:577.500000px;}
.xc8_c00327{left:579.000000px;}
.x39_c00327{left:580.920000px;}
.x83_c00327{left:583.500000px;}
.x8c_c00327{left:591.420000px;}
.x42_c00327{left:594.000000px;}
.xc3_c00327{left:595.500000px;}
.xd_c00327{left:598.500000px;}
.x25_c00327{left:604.500000px;}
.x4f_c00327{left:607.500000px;}
.xa2_c00327{left:613.500000px;}
.x56_c00327{left:616.080000px;}
.x8d_c00327{left:618.420000px;}
.xb7_c00327{left:619.500000px;}
.x99_c00327{left:621.000000px;}
.xab_c00327{left:622.080000px;}
.x2f_c00327{left:623.580000px;}
.xc9_c00327{left:625.080000px;}
.x6c_c00327{left:627.420000px;}
.x57_c00327{left:634.920000px;}
.x1c_c00327{left:636.000000px;}
.xac_c00327{left:641.580000px;}
.x84_c00327{left:646.080000px;}
.x78_c00327{left:647.580000px;}
.xe_c00327{left:650.775000px;}
.x30_c00327{left:654.000000px;}
.xbc_c00327{left:655.500000px;}
.x43_c00327{left:657.000000px;}
.x58_c00327{left:660.000000px;}
.x6d_c00327{left:661.500000px;}
.x1d_c00327{left:663.000000px;}
.x8e_c00327{left:664.080000px;}
.x85_c00327{left:666.420000px;}
.x26_c00327{left:667.500000px;}
.x79_c00327{left:669.420000px;}
.xdb_c00327{left:670.500000px;}
.x44_c00327{left:678.000000px;}
.xa6_c00327{left:683.580000px;}
.x6e_c00327{left:685.920000px;}
.x86_c00327{left:693.000000px;}
.x1e_c00327{left:694.080000px;}
.xf_c00327{left:697.500000px;}
.xb8_c00327{left:701.580000px;}
.x27_c00327{left:705.000000px;}
.x7a_c00327{left:706.920000px;}
.x45_c00327{left:708.420000px;}
.x9a_c00327{left:712.080000px;}
.x59_c00327{left:716.580000px;}
.x8f_c00327{left:720.000000px;}
.x6f_c00327{left:723.000000px;}
@media print{
.v1_c00327{vertical-align:-5.333333pt;}
.v0_c00327{vertical-align:0.000000pt;}
.v2_c00327{vertical-align:5.333333pt;}
.ls0_c00327{letter-spacing:0.000000pt;}
.ws13_c00327{word-spacing:0.000000pt;}
.ws4_c00327{word-spacing:11.760825pt;}
.ws2_c00327{word-spacing:11.827705pt;}
.wsc_c00327{word-spacing:17.440722pt;}
.ws12_c00327{word-spacing:19.176041pt;}
.ws9_c00327{word-spacing:22.781898pt;}
.ws0_c00327{word-spacing:24.596914pt;}
.wse_c00327{word-spacing:26.342682pt;}
.wsb_c00327{word-spacing:26.838488pt;}
.wsa_c00327{word-spacing:28.123075pt;}
.wsd_c00327{word-spacing:29.903467pt;}
.ws3_c00327{word-spacing:32.768845pt;}
.ws10_c00327{word-spacing:34.500935pt;}
.ws8_c00327{word-spacing:36.846840pt;}
.ws6_c00327{word-spacing:40.509110pt;}
.ws11_c00327{word-spacing:44.118417pt;}
.ws1_c00327{word-spacing:44.403528pt;}
.ws7_c00327{word-spacing:44.703451pt;}
.ws5_c00327{word-spacing:48.308923pt;}
.wsf_c00327{word-spacing:52.740178pt;}
._0_c00327{width:29.489750pt;}
._1_c00327{width:55.384388pt;}
.fs7_c00327{font-size:3.040000pt;}
.fs9_c00327{font-size:10.560000pt;}
.fs8_c00327{font-size:12.106667pt;}
.fs5_c00327{font-size:16.640000pt;}
.fs1_c00327{font-size:18.133333pt;}
.fs4_c00327{font-size:22.666667pt;}
.fs3_c00327{font-size:25.706667pt;}
.fs2_c00327{font-size:28.746667pt;}
.fs0_c00327{font-size:31.733333pt;}
.fs6_c00327{font-size:34.773333pt;}
.y0_c00327{bottom:0.000000pt;}
.y71_c00327{bottom:221.693333pt;}
.y75_c00327{bottom:223.026667pt;}
.y73_c00327{bottom:223.773333pt;}
.y72_c00327{bottom:224.360000pt;}
.y74_c00327{bottom:225.693333pt;}
.y6c_c00327{bottom:241.106667pt;}
.y6e_c00327{bottom:241.893333pt;}
.y70_c00327{bottom:242.066667pt;}
.y6f_c00327{bottom:242.640000pt;}
.y6d_c00327{bottom:243.026667pt;}
.y6a_c00327{bottom:256.733333pt;}
.y6b_c00327{bottom:258.440000pt;}
.y69_c00327{bottom:260.360000pt;}
.y64_c00327{bottom:275.773333pt;}
.y65_c00327{bottom:276.733333pt;}
.y68_c00327{bottom:277.106667pt;}
.y66_c00327{bottom:277.693333pt;}
.y67_c00327{bottom:277.893333pt;}
.y61_c00327{bottom:293.693333pt;}
.y5e_c00327{bottom:294.440000pt;}
.y5d_c00327{bottom:295.026667pt;}
.y62_c00327{bottom:295.226667pt;}
.y5f_c00327{bottom:295.400000pt;}
.y63_c00327{bottom:295.973333pt;}
.y60_c00327{bottom:296.360000pt;}
.y5c_c00327{bottom:309.693333pt;}
.y57_c00327{bottom:310.440000pt;}
.y58_c00327{bottom:311.773333pt;}
.y5a_c00327{bottom:312.560000pt;}
.y5b_c00327{bottom:313.306667pt;}
.y59_c00327{bottom:313.693333pt;}
.y56_c00327{bottom:327.026667pt;}
.y55_c00327{bottom:328.160000pt;}
.y52_c00327{bottom:329.106667pt;}
.y53_c00327{bottom:330.640000pt;}
.y54_c00327{bottom:331.026667pt;}
.y51_c00327{bottom:344.360000pt;}
.y4b_c00327{bottom:345.106667pt;}
.y4d_c00327{bottom:346.440000pt;}
.y4f_c00327{bottom:347.226667pt;}
.y50_c00327{bottom:347.400000pt;}
.y4c_c00327{bottom:347.973333pt;}
.y4e_c00327{bottom:348.360000pt;}
.y46_c00327{bottom:363.773333pt;}
.y4a_c00327{bottom:364.560000pt;}
.y48_c00327{bottom:365.693333pt;}
.y49_c00327{bottom:365.893333pt;}
.y47_c00327{bottom:367.026667pt;}
.y42_c00327{bottom:381.106667pt;}
.y43_c00327{bottom:383.026667pt;}
.y45_c00327{bottom:383.973333pt;}
.y44_c00327{bottom:384.360000pt;}
.y41_c00327{bottom:397.693333pt;}
.y3f_c00327{bottom:399.026667pt;}
.y40_c00327{bottom:400.360000pt;}
.y3d_c00327{bottom:401.693333pt;}
.y3e_c00327{bottom:401.706667pt;}
.ycc_c00327{bottom:435.226667pt;}
.yca_c00327{bottom:436.560000pt;}
.ycb_c00327{bottom:437.506667pt;}
.yc6_c00327{bottom:448.560000pt;}
.yc7_c00327{bottom:449.506667pt;}
.yc8_c00327{bottom:449.893333pt;}
.yc9_c00327{bottom:450.840000pt;}
.yc4_c00327{bottom:461.133333pt;}
.yc5_c00327{bottom:461.506667pt;}
.yc3_c00327{bottom:461.893333pt;}
.ybf_c00327{bottom:472.560000pt;}
.yc1_c00327{bottom:473.506667pt;}
.yc2_c00327{bottom:473.893333pt;}
.yc0_c00327{bottom:474.840000pt;}
.yba_c00327{bottom:484.173333pt;}
.yb8_c00327{bottom:484.560000pt;}
.yb9_c00327{bottom:485.506667pt;}
.ybe_c00327{bottom:485.893333pt;}
.ybc_c00327{bottom:486.466667pt;}
.ybb_c00327{bottom:486.840000pt;}
.ybd_c00327{bottom:487.026667pt;}
.yb7_c00327{bottom:497.893333pt;}
.yb6_c00327{bottom:498.840000pt;}
.yb2_c00327{bottom:509.893333pt;}
.yb4_c00327{bottom:510.840000pt;}
.yb3_c00327{bottom:511.226667pt;}
.yb5_c00327{bottom:512.173333pt;}
.yb0_c00327{bottom:523.226667pt;}
.yb1_c00327{bottom:524.173333pt;}
.yab_c00327{bottom:534.266667pt;}
.yad_c00327{bottom:535.226667pt;}
.yac_c00327{bottom:536.173333pt;}
.yae_c00327{bottom:536.373333pt;}
.yaf_c00327{bottom:536.560000pt;}
.yaa_c00327{bottom:545.893333pt;}
.ya7_c00327{bottom:546.840000pt;}
.ya8_c00327{bottom:547.226667pt;}
.ya9_c00327{bottom:548.173333pt;}
.ya3_c00327{bottom:559.226667pt;}
.ya4_c00327{bottom:560.173333pt;}
.ya5_c00327{bottom:560.560000pt;}
.ya6_c00327{bottom:561.506667pt;}
.y9d_c00327{bottom:570.266667pt;}
.y9e_c00327{bottom:570.840000pt;}
.ya2_c00327{bottom:571.226667pt;}
.y9f_c00327{bottom:572.173333pt;}
.ya0_c00327{bottom:572.560000pt;}
.ya1_c00327{bottom:573.706667pt;}
.y98_c00327{bottom:584.173333pt;}
.y9a_c00327{bottom:584.560000pt;}
.y99_c00327{bottom:585.506667pt;}
.y9b_c00327{bottom:585.706667pt;}
.y9c_c00327{bottom:587.040000pt;}
.y95_c00327{bottom:595.226667pt;}
.y96_c00327{bottom:596.560000pt;}
.y94_c00327{bottom:597.506667pt;}
.y97_c00327{bottom:599.040000pt;}
.y91_c00327{bottom:608.560000pt;}
.y92_c00327{bottom:609.506667pt;}
.y93_c00327{bottom:611.040000pt;}
.y8e_c00327{bottom:620.560000pt;}
.y8f_c00327{bottom:621.506667pt;}
.y90_c00327{bottom:623.040000pt;}
.y8b_c00327{bottom:632.560000pt;}
.y8a_c00327{bottom:633.506667pt;}
.y8c_c00327{bottom:633.893333pt;}
.y8d_c00327{bottom:635.040000pt;}
.y86_c00327{bottom:649.506667pt;}
.y89_c00327{bottom:649.893333pt;}
.y87_c00327{bottom:650.840000pt;}
.y88_c00327{bottom:651.226667pt;}
.y80_c00327{bottom:660.560000pt;}
.y81_c00327{bottom:661.506667pt;}
.y82_c00327{bottom:661.893333pt;}
.y83_c00327{bottom:662.840000pt;}
.y84_c00327{bottom:663.226667pt;}
.y85_c00327{bottom:664.173333pt;}
.y7d_c00327{bottom:684.733333pt;}
.y7f_c00327{bottom:686.640000pt;}
.y7e_c00327{bottom:687.600000pt;}
.y7b_c00327{bottom:698.066667pt;}
.y79_c00327{bottom:699.600000pt;}
.y7c_c00327{bottom:699.973333pt;}
.y7a_c00327{bottom:700.173333pt;}
.y78_c00327{bottom:700.933333pt;}
.y77_c00327{bottom:714.640000pt;}
.y76_c00327{bottom:718.266667pt;}
.y39_c00327{bottom:749.106667pt;}
.y3b_c00327{bottom:749.893333pt;}
.y3a_c00327{bottom:751.026667pt;}
.y3c_c00327{bottom:751.973333pt;}
.y37_c00327{bottom:765.106667pt;}
.y33_c00327{bottom:765.493333pt;}
.y32_c00327{bottom:765.693333pt;}
.y34_c00327{bottom:766.440000pt;}
.y36_c00327{bottom:767.226667pt;}
.y38_c00327{bottom:767.400000pt;}
.y31_c00327{bottom:768.360000pt;}
.y35_c00327{bottom:769.306667pt;}
.y30_c00327{bottom:783.773333pt;}
.y2f_c00327{bottom:784.560000pt;}
.y2e_c00327{bottom:785.306667pt;}
.y2d_c00327{bottom:785.693333pt;}
.y2b_c00327{bottom:801.106667pt;}
.y2c_c00327{bottom:803.026667pt;}
.y29_c00327{bottom:818.440000pt;}
.y2a_c00327{bottom:820.360000pt;}
.y28_c00327{bottom:821.693333pt;}
.y23_c00327{bottom:835.026667pt;}
.y26_c00327{bottom:835.773333pt;}
.y24_c00327{bottom:837.693333pt;}
.y25_c00327{bottom:837.893333pt;}
.y27_c00327{bottom:838.640000pt;}
.y22_c00327{bottom:853.106667pt;}
.y1e_c00327{bottom:855.026667pt;}
.y21_c00327{bottom:855.226667pt;}
.y1f_c00327{bottom:855.973333pt;}
.y20_c00327{bottom:856.360000pt;}
.y1c_c00327{bottom:870.440000pt;}
.y19_c00327{bottom:871.773333pt;}
.y1a_c00327{bottom:872.360000pt;}
.y1b_c00327{bottom:872.560000pt;}
.y1d_c00327{bottom:873.306667pt;}
.y18_c00327{bottom:873.693333pt;}
.y13_c00327{bottom:887.773333pt;}
.y14_c00327{bottom:889.106667pt;}
.y17_c00327{bottom:889.693333pt;}
.y15_c00327{bottom:890.640000pt;}
.y16_c00327{bottom:891.026667pt;}
.y11_c00327{bottom:905.106667pt;}
.yf_c00327{bottom:906.440000pt;}
.y10_c00327{bottom:907.226667pt;}
.ye_c00327{bottom:907.400000pt;}
.y12_c00327{bottom:907.973333pt;}
.yd_c00327{bottom:908.360000pt;}
.ya_c00327{bottom:923.773333pt;}
.y7_c00327{bottom:924.560000pt;}
.yc_c00327{bottom:924.733333pt;}
.yb_c00327{bottom:925.306667pt;}
.y8_c00327{bottom:925.693333pt;}
.y9_c00327{bottom:926.640000pt;}
.y3_c00327{bottom:940.733333pt;}
.y6_c00327{bottom:941.106667pt;}
.y5_c00327{bottom:942.640000pt;}
.y4_c00327{bottom:943.026667pt;}
.y1_c00327{bottom:975.773333pt;}
.y2_c00327{bottom:976.933333pt;}
.h8_c00327{height:3.739141pt;}
.hb_c00327{height:12.988594pt;}
.h9_c00327{height:14.890964pt;}
.ha_c00327{height:20.224297pt;}
.h6_c00327{height:20.466875pt;}
.h2_c00327{height:22.303646pt;}
.hc_c00327{height:25.800208pt;}
.h5_c00327{height:27.879557pt;}
.h4_c00327{height:31.618698pt;}
.h3_c00327{height:35.357839pt;}
.h1_c00327{height:39.031380pt;}
.h7_c00327{height:42.770521pt;}
.h0_c00327{height:1186.666667pt;}
.w0_c00327{width:782.666667pt;}
.x0_c00327{left:0.000000pt;}
.x7b_c00327{left:132.373333pt;}
.x28_c00327{left:134.666667pt;}
.x1_c00327{left:136.000000pt;}
.xb0_c00327{left:144.573333pt;}
.x71_c00327{left:145.906667pt;}
.x10_c00327{left:148.000000pt;}
.x5b_c00327{left:149.333333pt;}
.x63_c00327{left:152.000000pt;}
.x90_c00327{left:162.666667pt;}
.x9b_c00327{left:167.800000pt;}
.x31_c00327{left:169.706667pt;}
.xc5_c00327{left:170.666667pt;}
.xad_c00327{left:172.000000pt;}
.x11_c00327{left:172.960000pt;}
.x7c_c00327{left:174.666667pt;}
.x5c_c00327{left:176.960000pt;}
.x3_c00327{left:180.373333pt;}
.x50_c00327{left:187.240000pt;}
.x7d_c00327{left:188.373333pt;}
.x3a_c00327{left:191.040000pt;}
.x64_c00327{left:192.000000pt;}
.x32_c00327{left:192.960000pt;}
.xce_c00327{left:194.666667pt;}
.xd6_c00327{left:198.666667pt;}
.x12_c00327{left:200.373333pt;}
.x1f_c00327{left:201.333333pt;}
.x4_c00327{left:203.040000pt;}
.x9c_c00327{left:205.706667pt;}
.x87_c00327{left:208.000000pt;}
.x72_c00327{left:209.333333pt;}
.xd5_c00327{left:210.666667pt;}
.x46_c00327{left:212.000000pt;}
.x65_c00327{left:214.293333pt;}
.x3b_c00327{left:216.000000pt;}
.xa7_c00327{left:218.293333pt;}
.xd2_c00327{left:222.293333pt;}
.xbe_c00327{left:224.373333pt;}
.x5_c00327{left:225.706667pt;}
.x47_c00327{left:226.666667pt;}
.x5a_c00327{left:228.000000pt;}
.x5d_c00327{left:230.293333pt;}
.x97_c00327{left:232.573333pt;}
.xdd_c00327{left:234.666667pt;}
.xd7_c00327{left:236.000000pt;}
.xb9_c00327{left:237.333333pt;}
.xa8_c00327{left:239.626667pt;}
.x7e_c00327{left:244.000000pt;}
.x3c_c00327{left:245.706667pt;}
.x20_c00327{left:246.666667pt;}
.x73_c00327{left:248.373333pt;}
.x13_c00327{left:250.666667pt;}
.xae_c00327{left:251.626667pt;}
.x5e_c00327{left:257.333333pt;}
.x29_c00327{left:259.626667pt;}
.x88_c00327{left:260.960000pt;}
.x51_c00327{left:263.626667pt;}
.xb1_c00327{left:268.000000pt;}
.xaf_c00327{left:268.960000pt;}
.x91_c00327{left:272.000000pt;}
.x6_c00327{left:273.333333pt;}
.x9d_c00327{left:274.666667pt;}
.x48_c00327{left:279.040000pt;}
.xa3_c00327{left:281.706667pt;}
.xbf_c00327{left:282.666667pt;}
.x66_c00327{left:283.626667pt;}
.x70_c00327{left:284.960000pt;}
.x21_c00327{left:286.666667pt;}
.x92_c00327{left:289.706667pt;}
.x5f_c00327{left:290.666667pt;}
.xd8_c00327{left:292.373333pt;}
.xcf_c00327{left:295.040000pt;}
.x3d_c00327{left:297.333333pt;}
.x14_c00327{left:300.373333pt;}
.x7_c00327{left:304.000000pt;}
.x2a_c00327{left:305.333333pt;}
.x52_c00327{left:306.666667pt;}
.x9e_c00327{left:308.000000pt;}
.xb2_c00327{left:311.040000pt;}
.x49_c00327{left:314.666667pt;}
.x33_c00327{left:316.960000pt;}
.x7f_c00327{left:321.706667pt;}
.x3e_c00327{left:322.666667pt;}
.x89_c00327{left:324.000000pt;}
.x67_c00327{left:325.333333pt;}
.x53_c00327{left:328.373333pt;}
.x4a_c00327{left:330.666667pt;}
.x8_c00327{left:332.000000pt;}
.x15_c00327{left:334.666667pt;}
.xb3_c00327{left:343.040000pt;}
.x22_c00327{left:344.000000pt;}
.x4b_c00327{left:345.333333pt;}
.xc6_c00327{left:346.666667pt;}
.x93_c00327{left:348.373333pt;}
.x3f_c00327{left:349.706667pt;}
.xca_c00327{left:350.666667pt;}
.xa9_c00327{left:353.333333pt;}
.x8a_c00327{left:354.666667pt;}
.x68_c00327{left:356.000000pt;}
.x2_c00327{left:358.666667pt;}
.x9_c00327{left:360.373333pt;}
.x54_c00327{left:362.666667pt;}
.x16_c00327{left:365.333333pt;}
.xb4_c00327{left:366.293333pt;}
.x23_c00327{left:369.706667pt;}
.x2b_c00327{left:375.040000pt;}
.x74_c00327{left:377.706667pt;}
.x9f_c00327{left:378.666667pt;}
.x60_c00327{left:380.960000pt;}
.x94_c00327{left:382.666667pt;}
.xc0_c00327{left:384.000000pt;}
.x98_c00327{left:385.706667pt;}
.xd0_c00327{left:386.666667pt;}
.x34_c00327{left:388.000000pt;}
.x17_c00327{left:389.333333pt;}
.xcb_c00327{left:390.666667pt;}
.xd9_c00327{left:392.000000pt;}
.x69_c00327{left:395.040000pt;}
.x61_c00327{left:396.373333pt;}
.xa0_c00327{left:397.333333pt;}
.x75_c00327{left:402.293333pt;}
.xbd_c00327{left:405.333333pt;}
.x4c_c00327{left:408.000000pt;}
.x2c_c00327{left:409.706667pt;}
.x18_c00327{left:415.040000pt;}
.xc4_c00327{left:417.333333pt;}
.xb5_c00327{left:420.000000pt;}
.xa4_c00327{left:421.333333pt;}
.x35_c00327{left:422.293333pt;}
.x40_c00327{left:424.000000pt;}
.x6a_c00327{left:425.333333pt;}
.xa_c00327{left:426.666667pt;}
.x4d_c00327{left:428.373333pt;}
.xcc_c00327{left:430.666667pt;}
.xda_c00327{left:432.000000pt;}
.x62_c00327{left:433.333333pt;}
.x2d_c00327{left:434.666667pt;}
.x41_c00327{left:436.373333pt;}
.x95_c00327{left:438.293333pt;}
.x8b_c00327{left:441.706667pt;}
.xb6_c00327{left:443.626667pt;}
.x36_c00327{left:450.666667pt;}
.x80_c00327{left:453.333333pt;}
.x19_c00327{left:456.960000pt;}
.xb_c00327{left:460.000000pt;}
.x24_c00327{left:461.333333pt;}
.x37_c00327{left:462.666667pt;}
.x55_c00327{left:465.706667pt;}
.x76_c00327{left:466.666667pt;}
.xd4_c00327{left:470.666667pt;}
.xdc_c00327{left:472.000000pt;}
.x1a_c00327{left:473.706667pt;}
.xc7_c00327{left:474.666667pt;}
.xcd_c00327{left:476.000000pt;}
.x81_c00327{left:478.666667pt;}
.xc1_c00327{left:480.960000pt;}
.x2e_c00327{left:484.000000pt;}
.xaa_c00327{left:485.333333pt;}
.x38_c00327{left:488.960000pt;}
.xba_c00327{left:490.293333pt;}
.x96_c00327{left:491.626667pt;}
.xa5_c00327{left:492.960000pt;}
.x82_c00327{left:495.040000pt;}
.x6b_c00327{left:496.000000pt;}
.xc2_c00327{left:497.333333pt;}
.x1b_c00327{left:498.666667pt;}
.xc_c00327{left:499.626667pt;}
.x4e_c00327{left:500.960000pt;}
.xd3_c00327{left:504.000000pt;}
.xd1_c00327{left:506.666667pt;}
.x77_c00327{left:507.626667pt;}
.xbb_c00327{left:511.426667pt;}
.xa1_c00327{left:513.333333pt;}
.xc8_c00327{left:514.666667pt;}
.x39_c00327{left:516.373333pt;}
.x83_c00327{left:518.666667pt;}
.x8c_c00327{left:525.706667pt;}
.x42_c00327{left:528.000000pt;}
.xc3_c00327{left:529.333333pt;}
.xd_c00327{left:532.000000pt;}
.x25_c00327{left:537.333333pt;}
.x4f_c00327{left:540.000000pt;}
.xa2_c00327{left:545.333333pt;}
.x56_c00327{left:547.626667pt;}
.x8d_c00327{left:549.706667pt;}
.xb7_c00327{left:550.666667pt;}
.x99_c00327{left:552.000000pt;}
.xab_c00327{left:552.960000pt;}
.x2f_c00327{left:554.293333pt;}
.xc9_c00327{left:555.626667pt;}
.x6c_c00327{left:557.706667pt;}
.x57_c00327{left:564.373333pt;}
.x1c_c00327{left:565.333333pt;}
.xac_c00327{left:570.293333pt;}
.x84_c00327{left:574.293333pt;}
.x78_c00327{left:575.626667pt;}
.xe_c00327{left:578.466667pt;}
.x30_c00327{left:581.333333pt;}
.xbc_c00327{left:582.666667pt;}
.x43_c00327{left:584.000000pt;}
.x58_c00327{left:586.666667pt;}
.x6d_c00327{left:588.000000pt;}
.x1d_c00327{left:589.333333pt;}
.x8e_c00327{left:590.293333pt;}
.x85_c00327{left:592.373333pt;}
.x26_c00327{left:593.333333pt;}
.x79_c00327{left:595.040000pt;}
.xdb_c00327{left:596.000000pt;}
.x44_c00327{left:602.666667pt;}
.xa6_c00327{left:607.626667pt;}
.x6e_c00327{left:609.706667pt;}
.x86_c00327{left:616.000000pt;}
.x1e_c00327{left:616.960000pt;}
.xf_c00327{left:620.000000pt;}
.xb8_c00327{left:623.626667pt;}
.x27_c00327{left:626.666667pt;}
.x7a_c00327{left:628.373333pt;}
.x45_c00327{left:629.706667pt;}
.x9a_c00327{left:632.960000pt;}
.x59_c00327{left:636.960000pt;}
.x8f_c00327{left:640.000000pt;}
.x6f_c00327{left:642.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_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_9befd411529c577d7566b946.woff2')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:1.688965;font-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_c00328{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.m79_c00328{transform:matrix(0.333506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333506,0.000000,0.000000,0.250000,0,0);}
.mab_c00328{transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);}
.mb7_c00328{transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);}
.m5c_c00328{transform:matrix(0.356212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356212,0.000000,0.000000,0.250000,0,0);}
.m5b_c00328{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.mbb_c00328{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.ma7_c00328{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.m46_c00328{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m96_c00328{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m97_c00328{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m98_c00328{transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);}
.mb8_c00328{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.md4_c00328{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m69_c00328{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mb6_c00328{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.mbd_c00328{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m45_c00328{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m55_c00328{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m7c_c00328{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.md5_c00328{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m20_c00328{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m1d_c00328{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m93_c00328{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mc9_c00328{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.ma9_c00328{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.mb3_c00328{transform:matrix(0.398773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398773,0.000000,0.000000,0.250000,0,0);}
.m88_c00328{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.ma5_c00328{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mc7_c00328{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.maf_c00328{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.mbe_c00328{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m7d_c00328{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m16_c00328{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m82_c00328{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.ma2_c00328{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m42_c00328{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.mca_c00328{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mcb_c00328{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.mb0_c00328{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m9c_c00328{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m50_c00328{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m36_c00328{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.md2_c00328{transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);}
.m47_c00328{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m6b_c00328{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m29_c00328{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.ma6_c00328{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m3e_c00328{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m43_c00328{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mad_c00328{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.ma_c00328{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mb5_c00328{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.ma3_c00328{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.md9_c00328{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mf_c00328{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m4e_c00328{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.mb1_c00328{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m2c_c00328{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m13_c00328{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m60_c00328{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m54_c00328{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.m9d_c00328{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.md0_c00328{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m9e_c00328{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m2b_c00328{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m56_c00328{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m58_c00328{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.mae_c00328{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m9a_c00328{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.mdb_c00328{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.mc4_c00328{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m80_c00328{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mc3_c00328{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.m39_c00328{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.ma0_c00328{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m5e_c00328{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.mdd_c00328{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m6_c00328{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m8d_c00328{transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);}
.md8_c00328{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.mcf_c00328{transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);}
.mac_c00328{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mb9_c00328{transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);}
.m81_c00328{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.mc2_c00328{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m51_c00328{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m7b_c00328{transform:matrix(0.477273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477273,0.000000,0.000000,0.250000,0,0);}
.m12_c00328{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mc_c00328{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m38_c00328{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m5d_c00328{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.md3_c00328{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m8b_c00328{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.maa_c00328{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m1_c00328{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m84_c00328{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m90_c00328{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m62_c00328{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.mc5_c00328{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m4b_c00328{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);}
.mda_c00328{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m9b_c00328{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mc8_c00328{transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);}
.m6f_c00328{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m68_c00328{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m40_c00328{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mb4_c00328{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m67_c00328{transform:matrix(0.507780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507780,0.000000,0.000000,0.250000,0,0);}
.m35_c00328{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m19_c00328{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m71_c00328{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mbf_c00328{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m66_c00328{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m4d_c00328{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m6d_c00328{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m8_c00328{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m5a_c00328{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.ma8_c00328{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m85_c00328{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m2e_c00328{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m52_c00328{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m17_c00328{transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);}
.m78_c00328{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m2d_c00328{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m2a_c00328{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m6a_c00328{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m53_c00328{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m83_c00328{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.md_c00328{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m18_c00328{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m32_c00328{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mdc_c00328{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m21_c00328{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m65_c00328{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.me0_c00328{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.mcd_c00328{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m41_c00328{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m5f_c00328{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m33_c00328{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m49_c00328{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m6e_c00328{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m22_c00328{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m3d_c00328{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m5_c00328{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.me1_c00328{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mcc_c00328{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m72_c00328{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m4f_c00328{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m95_c00328{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m99_c00328{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m34_c00328{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mdf_c00328{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.mba_c00328{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m3_c00328{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m73_c00328{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m8f_c00328{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m76_c00328{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m27_c00328{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m10_c00328{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m2_c00328{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m30_c00328{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.ma4_c00328{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m26_c00328{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m23_c00328{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m3f_c00328{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m59_c00328{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m9_c00328{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m94_c00328{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m44_c00328{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.ma1_c00328{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.mb_c00328{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m7_c00328{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mce_c00328{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.mbc_c00328{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m28_c00328{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m57_c00328{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mb2_c00328{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.m8c_c00328{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m4a_c00328{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m75_c00328{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m7f_c00328{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m6c_c00328{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m4c_c00328{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m92_c00328{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);}
.m91_c00328{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.me_c00328{transform:matrix(0.603529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603529,0.000000,0.000000,0.250000,0,0);}
.m0_c00328{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m14_c00328{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m11_c00328{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m25_c00328{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m1c_c00328{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m31_c00328{transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);}
.mc6_c00328{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m1e_c00328{transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);}
.m1a_c00328{transform:matrix(0.617059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617059,0.000000,0.000000,0.250000,0,0);}
.m1f_c00328{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m87_c00328{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);}
.m2f_c00328{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m3c_c00328{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m9f_c00328{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m3a_c00328{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.mc0_c00328{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m4_c00328{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m8e_c00328{transform:matrix(0.695882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695882,0.000000,0.000000,0.250000,0,0);}
.m64_c00328{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.md1_c00328{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m63_c00328{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m7a_c00328{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.m74_c00328{transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);}
.mde_c00328{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m15_c00328{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m1b_c00328{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m37_c00328{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m3b_c00328{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.md7_c00328{transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);}
.m24_c00328{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m70_c00328{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mc1_c00328{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.md6_c00328{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m77_c00328{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m61_c00328{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m86_c00328{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m89_c00328{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m7e_c00328{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m8a_c00328{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.v0_c00328{vertical-align:0.000000px;}
.ls0_c00328{letter-spacing:0.000000px;}
.sc__c00328{text-shadow:none;}
.sc0_c00328{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00328{-webkit-text-stroke:0px transparent;}
.sc0_c00328{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00328{word-spacing:-1.577396px;}
.ws1_c00328{word-spacing:0.000000px;}
.fc0_c00328{color:transparent;}
.fs5_c00328{font-size:18.720000px;}
.fs0_c00328{font-size:20.400000px;}
.fs2_c00328{font-size:25.500000px;}
.fs1_c00328{font-size:28.920000px;}
.fs3_c00328{font-size:32.340000px;}
.fs4_c00328{font-size:35.700000px;}
.fs6_c00328{font-size:39.120000px;}
.y0_c00328{bottom:0.000000px;}
.yc7_c00328{bottom:253.470000px;}
.yc3_c00328{bottom:255.405000px;}
.yc4_c00328{bottom:255.630000px;}
.yc5_c00328{bottom:256.470000px;}
.yc6_c00328{bottom:256.905000px;}
.yc1_c00328{bottom:274.245000px;}
.yc0_c00328{bottom:275.130000px;}
.yc2_c00328{bottom:275.325000px;}
.ybf_c00328{bottom:276.405000px;}
.ybc_c00328{bottom:291.405000px;}
.ybe_c00328{bottom:293.745000px;}
.ybd_c00328{bottom:293.970000px;}
.yb9_c00328{bottom:294.630000px;}
.ybb_c00328{bottom:295.470000px;}
.yba_c00328{bottom:295.905000px;}
.yb7_c00328{bottom:313.245000px;}
.yb8_c00328{bottom:314.130000px;}
.yb6_c00328{bottom:315.405000px;}
.yb3_c00328{bottom:332.325000px;}
.yb5_c00328{bottom:332.745000px;}
.yb0_c00328{bottom:333.630000px;}
.yaf_c00328{bottom:333.825000px;}
.yb1_c00328{bottom:334.905000px;}
.yb2_c00328{bottom:335.130000px;}
.yb4_c00328{bottom:335.970000px;}
.yac_c00328{bottom:352.245000px;}
.yad_c00328{bottom:353.325000px;}
.yab_c00328{bottom:354.405000px;}
.yae_c00328{bottom:354.630000px;}
.ya7_c00328{bottom:371.745000px;}
.yaa_c00328{bottom:371.970000px;}
.ya9_c00328{bottom:373.905000px;}
.ya8_c00328{bottom:374.130000px;}
.ya6_c00328{bottom:375.405000px;}
.ya5_c00328{bottom:391.245000px;}
.ya3_c00328{bottom:393.405000px;}
.ya2_c00328{bottom:393.630000px;}
.ya4_c00328{bottom:394.470000px;}
.ya1_c00328{bottom:394.905000px;}
.y9f_c00328{bottom:410.745000px;}
.y9d_c00328{bottom:412.905000px;}
.ya0_c00328{bottom:413.130000px;}
.y9e_c00328{bottom:413.970000px;}
.y9c_c00328{bottom:414.405000px;}
.y98_c00328{bottom:430.245000px;}
.y97_c00328{bottom:431.745000px;}
.y99_c00328{bottom:432.630000px;}
.y9b_c00328{bottom:432.825000px;}
.y9a_c00328{bottom:433.905000px;}
.y96_c00328{bottom:448.905000px;}
.y94_c00328{bottom:451.245000px;}
.y95_c00328{bottom:452.130000px;}
.y93_c00328{bottom:453.405000px;}
.y92_c00328{bottom:469.905000px;}
.y90_c00328{bottom:470.745000px;}
.y8f_c00328{bottom:472.905000px;}
.y91_c00328{bottom:473.130000px;}
.y8b_c00328{bottom:490.245000px;}
.y8e_c00328{bottom:490.470000px;}
.y8c_c00328{bottom:491.325000px;}
.y8a_c00328{bottom:492.405000px;}
.y8d_c00328{bottom:492.630000px;}
.y89_c00328{bottom:508.905000px;}
.y86_c00328{bottom:509.745000px;}
.y88_c00328{bottom:511.245000px;}
.y87_c00328{bottom:511.905000px;}
.y7f_c00328{bottom:528.405000px;}
.y80_c00328{bottom:529.680000px;}
.y81_c00328{bottom:530.745000px;}
.y85_c00328{bottom:531.405000px;}
.y84_c00328{bottom:531.630000px;}
.y83_c00328{bottom:532.470000px;}
.y82_c00328{bottom:532.905000px;}
.y7d_c00328{bottom:549.405000px;}
.y7c_c00328{bottom:550.245000px;}
.y7e_c00328{bottom:551.970000px;}
.y7b_c00328{bottom:552.405000px;}
.y75_c00328{bottom:568.245000px;}
.y79_c00328{bottom:568.470000px;}
.y7a_c00328{bottom:568.680000px;}
.y77_c00328{bottom:569.745000px;}
.y76_c00328{bottom:570.630000px;}
.y74_c00328{bottom:571.905000px;}
.y78_c00328{bottom:572.130000px;}
.y71_c00328{bottom:589.245000px;}
.y70_c00328{bottom:591.405000px;}
.y73_c00328{bottom:591.630000px;}
.y72_c00328{bottom:592.470000px;}
.y6e_c00328{bottom:608.325000px;}
.y6a_c00328{bottom:608.745000px;}
.y6d_c00328{bottom:610.470000px;}
.y6c_c00328{bottom:610.905000px;}
.y6b_c00328{bottom:611.130000px;}
.y6f_c00328{bottom:611.970000px;}
.y66_c00328{bottom:628.245000px;}
.y68_c00328{bottom:628.680000px;}
.y65_c00328{bottom:629.745000px;}
.y67_c00328{bottom:630.405000px;}
.y69_c00328{bottom:631.905000px;}
.y64_c00328{bottom:649.245000px;}
.y63_c00328{bottom:651.405000px;}
.y61_c00328{bottom:668.325000px;}
.y5e_c00328{bottom:668.745000px;}
.y62_c00328{bottom:669.630000px;}
.y60_c00328{bottom:669.825000px;}
.y5f_c00328{bottom:670.470000px;}
.y5d_c00328{bottom:670.905000px;}
.y5c_c00328{bottom:687.825000px;}
.y5a_c00328{bottom:688.245000px;}
.y5b_c00328{bottom:689.970000px;}
.y59_c00328{bottom:690.405000px;}
.y58_c00328{bottom:707.745000px;}
.y55_c00328{bottom:708.630000px;}
.y54_c00328{bottom:708.825000px;}
.y53_c00328{bottom:709.470000px;}
.y56_c00328{bottom:709.905000px;}
.y57_c00328{bottom:710.970000px;}
.y52_c00328{bottom:726.405000px;}
.y4f_c00328{bottom:727.245000px;}
.y50_c00328{bottom:729.405000px;}
.y51_c00328{bottom:729.630000px;}
.y4c_c00328{bottom:746.745000px;}
.y4b_c00328{bottom:747.825000px;}
.y4a_c00328{bottom:748.905000px;}
.y4e_c00328{bottom:749.970000px;}
.y4d_c00328{bottom:750.405000px;}
.y46_c00328{bottom:766.245000px;}
.y45_c00328{bottom:767.325000px;}
.y48_c00328{bottom:767.745000px;}
.y49_c00328{bottom:768.405000px;}
.y44_c00328{bottom:768.630000px;}
.y47_c00328{bottom:769.905000px;}
.y42_c00328{bottom:787.905000px;}
.y43_c00328{bottom:788.130000px;}
.y41_c00328{bottom:789.405000px;}
.y40_c00328{bottom:807.825000px;}
.y3f_c00328{bottom:808.905000px;}
.y3b_c00328{bottom:826.245000px;}
.y3d_c00328{bottom:827.130000px;}
.y3c_c00328{bottom:828.405000px;}
.y3e_c00328{bottom:828.630000px;}
.y3a_c00328{bottom:844.905000px;}
.y39_c00328{bottom:847.470000px;}
.y37_c00328{bottom:847.905000px;}
.y36_c00328{bottom:848.130000px;}
.y38_c00328{bottom:848.970000px;}
.y33_c00328{bottom:864.180000px;}
.y34_c00328{bottom:865.245000px;}
.y32_c00328{bottom:867.405000px;}
.y35_c00328{bottom:868.470000px;}
.y2d_c00328{bottom:884.745000px;}
.y30_c00328{bottom:885.825000px;}
.y2e_c00328{bottom:886.905000px;}
.y31_c00328{bottom:887.130000px;}
.y2f_c00328{bottom:887.970000px;}
.y2a_c00328{bottom:905.745000px;}
.y2b_c00328{bottom:906.405000px;}
.y2c_c00328{bottom:907.905000px;}
.y27_c00328{bottom:925.245000px;}
.y29_c00328{bottom:926.970000px;}
.y28_c00328{bottom:927.405000px;}
.y26_c00328{bottom:944.745000px;}
.y25_c00328{bottom:946.905000px;}
.y20_c00328{bottom:963.825000px;}
.y23_c00328{bottom:964.245000px;}
.y1f_c00328{bottom:964.905000px;}
.y22_c00328{bottom:965.130000px;}
.y21_c00328{bottom:965.970000px;}
.y24_c00328{bottom:966.405000px;}
.y1d_c00328{bottom:981.405000px;}
.y1e_c00328{bottom:983.745000px;}
.y1c_c00328{bottom:984.405000px;}
.y19_c00328{bottom:984.630000px;}
.y1b_c00328{bottom:985.470000px;}
.y1a_c00328{bottom:985.905000px;}
.y15_c00328{bottom:1000.905000px;}
.y17_c00328{bottom:1003.245000px;}
.y18_c00328{bottom:1004.970000px;}
.y16_c00328{bottom:1005.405000px;}
.y11_c00328{bottom:1021.245000px;}
.y14_c00328{bottom:1021.470000px;}
.ye_c00328{bottom:1022.745000px;}
.y13_c00328{bottom:1023.630000px;}
.y10_c00328{bottom:1024.470000px;}
.yf_c00328{bottom:1024.905000px;}
.y12_c00328{bottom:1025.970000px;}
.y9_c00328{bottom:1042.245000px;}
.yc_c00328{bottom:1042.470000px;}
.yd_c00328{bottom:1043.130000px;}
.ya_c00328{bottom:1043.970000px;}
.y8_c00328{bottom:1044.405000px;}
.yb_c00328{bottom:1045.470000px;}
.y6_c00328{bottom:1061.745000px;}
.y5_c00328{bottom:1062.825000px;}
.y4_c00328{bottom:1063.470000px;}
.y3_c00328{bottom:1063.905000px;}
.y7_c00328{bottom:1064.970000px;}
.y2_c00328{bottom:1099.905000px;}
.y1_c00328{bottom:1102.050000px;}
.h6_c00328{height:23.025234px;}
.h1_c00328{height:25.091602px;}
.h3_c00328{height:31.364502px;}
.h2_c00328{height:35.571035px;}
.h4_c00328{height:39.777568px;}
.h5_c00328{height:43.910303px;}
.h7_c00328{height:48.116836px;}
.h0_c00328{height:1335.000000px;}
.w0_c00328{width:880.500000px;}
.x0_c00328{left:0.000000px;}
.x3_c00328{left:151.920000px;}
.xa4_c00328{left:153.000000px;}
.x53_c00328{left:167.145000px;}
.x42_c00328{left:172.500000px;}
.x37_c00328{left:174.420000px;}
.xcb_c00328{left:177.000000px;}
.x8a_c00328{left:178.500000px;}
.x4d_c00328{left:180.000000px;}
.x101_c00328{left:181.080000px;}
.x2d_c00328{left:186.000000px;}
.xa5_c00328{left:187.080000px;}
.x4_c00328{left:189.420000px;}
.x10e_c00328{left:192.000000px;}
.x7c_c00328{left:193.080000px;}
.x12_c00328{left:195.420000px;}
.x106_c00328{left:198.000000px;}
.xbb_c00328{left:199.500000px;}
.x60_c00328{left:200.580000px;}
.x38_c00328{left:202.500000px;}
.xeb_c00328{left:204.000000px;}
.x9c_c00328{left:205.080000px;}
.xb7_c00328{left:206.580000px;}
.x113_c00328{left:208.920000px;}
.xcc_c00328{left:213.420000px;}
.xff_c00328{left:217.500000px;}
.x5_c00328{left:219.000000px;}
.xf1_c00328{left:220.080000px;}
.xe6_c00328{left:222.000000px;}
.x84_c00328{left:223.080000px;}
.x43_c00328{left:224.580000px;}
.x8b_c00328{left:226.080000px;}
.x1f_c00328{left:227.580000px;}
.x75_c00328{left:229.080000px;}
.x107_c00328{left:231.000000px;}
.x13_c00328{left:232.500000px;}
.xdb_c00328{left:235.275000px;}
.x114_c00328{left:237.000000px;}
.x39_c00328{left:238.080000px;}
.x6_c00328{left:240.000000px;}
.x8c_c00328{left:243.420000px;}
.x2e_c00328{left:244.500000px;}
.x117_c00328{left:246.000000px;}
.x20_c00328{left:249.420000px;}
.x14_c00328{left:250.500000px;}
.x44_c00328{left:253.500000px;}
.x54_c00328{left:254.580000px;}
.x68_c00328{left:256.500000px;}
.xb3_c00328{left:257.580000px;}
.xd1_c00328{left:259.500000px;}
.xcd_c00328{left:262.080000px;}
.xaf_c00328{left:265.500000px;}
.xbf_c00328{left:266.580000px;}
.x4e_c00328{left:268.080000px;}
.x3a_c00328{left:270.000000px;}
.xec_c00328{left:271.500000px;}
.x109_c00328{left:272.580000px;}
.xe0_c00328{left:274.080000px;}
.x76_c00328{left:276.000000px;}
.x21_c00328{left:277.080000px;}
.xd7_c00328{left:279.000000px;}
.xd2_c00328{left:283.920000px;}
.x4f_c00328{left:286.920000px;}
.x15_c00328{left:288.000000px;}
.x45_c00328{left:289.500000px;}
.x69_c00328{left:291.000000px;}
.xc5_c00328{left:292.500000px;}
.x85_c00328{left:294.000000px;}
.xa6_c00328{left:295.080000px;}
.x7_c00328{left:297.000000px;}
.x115_c00328{left:298.080000px;}
.xa1_c00328{left:299.580000px;}
.x55_c00328{left:301.500000px;}
.xf6_c00328{left:303.420000px;}
.x9d_c00328{left:304.500000px;}
.x7d_c00328{left:306.420000px;}
.x96_c00328{left:307.920000px;}
.xf2_c00328{left:310.080000px;}
.xc6_c00328{left:311.580000px;}
.x50_c00328{left:313.920000px;}
.x86_c00328{left:315.000000px;}
.x8d_c00328{left:316.500000px;}
.x3b_c00328{left:317.580000px;}
.xbc_c00328{left:319.500000px;}
.xdc_c00328{left:322.500000px;}
.xd8_c00328{left:323.580000px;}
.x46_c00328{left:325.920000px;}
.xa7_c00328{left:327.000000px;}
.x2f_c00328{left:328.080000px;}
.x61_c00328{left:329.145000px;}
.x102_c00328{left:331.500000px;}
.x16_c00328{left:333.000000px;}
.xfc_c00328{left:334.920000px;}
.x22_c00328{left:337.500000px;}
.xb4_c00328{left:339.000000px;}
.x8_c00328{left:340.080000px;}
.x6a_c00328{left:341.580000px;}
.x87_c00328{left:343.080000px;}
.xed_c00328{left:346.080000px;}
.x56_c00328{left:348.420000px;}
.xc0_c00328{left:350.145000px;}
.x17_c00328{left:354.000000px;}
.x97_c00328{left:355.500000px;}
.x10a_c00328{left:357.000000px;}
.x51_c00328{left:360.420000px;}
.xd3_c00328{left:361.500000px;}
.x23_c00328{left:363.420000px;}
.xb0_c00328{left:366.000000px;}
.x7e_c00328{left:367.500000px;}
.x8e_c00328{left:368.580000px;}
.x9_c00328{left:370.080000px;}
.x57_c00328{left:373.500000px;}
.x47_c00328{left:375.420000px;}
.xf7_c00328{left:376.500000px;}
.xd4_c00328{left:378.420000px;}
.x10f_c00328{left:379.500000px;}
.x9e_c00328{left:381.420000px;}
.xe1_c00328{left:384.420000px;}
.x52_c00328{left:385.920000px;}
.x3c_c00328{left:387.000000px;}
.x98_c00328{left:388.920000px;}
.xc1_c00328{left:392.355000px;}
.x58_c00328{left:393.420000px;}
.xb5_c00328{left:396.000000px;}
.x30_c00328{left:397.500000px;}
.xee_c00328{left:400.920000px;}
.x1_c00328{left:402.000000px;}
.xa_c00328{left:405.420000px;}
.x62_c00328{left:406.920000px;}
.x6b_c00328{left:408.000000px;}
.x77_c00328{left:409.920000px;}
.xf8_c00328{left:411.000000px;}
.x8f_c00328{left:412.500000px;}
.x48_c00328{left:414.000000px;}
.x24_c00328{left:415.500000px;}
.x31_c00328{left:417.420000px;}
.xa8_c00328{left:418.500000px;}
.x3d_c00328{left:420.000000px;}
.x7f_c00328{left:423.000000px;}
.x116_c00328{left:424.920000px;}
.xdd_c00328{left:426.000000px;}
.x6c_c00328{left:427.920000px;}
.xd5_c00328{left:429.000000px;}
.x59_c00328{left:430.500000px;}
.xf9_c00328{left:433.920000px;}
.x10b_c00328{left:435.000000px;}
.xc2_c00328{left:436.080000px;}
.x78_c00328{left:438.420000px;}
.x18_c00328{left:439.920000px;}
.xb_c00328{left:441.420000px;}
.x80_c00328{left:442.500000px;}
.x32_c00328{left:445.080000px;}
.x103_c00328{left:448.500000px;}
.x90_c00328{left:450.420000px;}
.x6d_c00328{left:453.000000px;}
.x63_c00328{left:456.000000px;}
.xef_c00328{left:457.080000px;}
.xce_c00328{left:459.420000px;}
.x88_c00328{left:460.920000px;}
.x25_c00328{left:462.420000px;}
.xf3_c00328{left:465.420000px;}
.x5a_c00328{left:466.920000px;}
.x118_c00328{left:469.500000px;}
.xd6_c00328{left:471.420000px;}
.x10c_c00328{left:472.920000px;}
.x49_c00328{left:474.000000px;}
.x99_c00328{left:475.920000px;}
.x91_c00328{left:477.000000px;}
.xc_c00328{left:479.580000px;}
.x6e_c00328{left:481.080000px;}
.x19_c00328{left:486.420000px;}
.x64_c00328{left:489.420000px;}
.x110_c00328{left:492.000000px;}
.x4a_c00328{left:493.500000px;}
.xcf_c00328{left:495.000000px;}
.x26_c00328{left:499.080000px;}
.x33_c00328{left:500.580000px;}
.xa9_c00328{left:502.500000px;}
.x81_c00328{left:503.580000px;}
.xd_c00328{left:505.080000px;}
.xe7_c00328{left:506.580000px;}
.xb1_c00328{left:508.920000px;}
.x6f_c00328{left:511.500000px;}
.x92_c00328{left:513.420000px;}
.x1a_c00328{left:515.145000px;}
.xc7_c00328{left:517.500000px;}
.xa2_c00328{left:518.580000px;}
.x34_c00328{left:520.920000px;}
.x3e_c00328{left:523.920000px;}
.xde_c00328{left:529.500000px;}
.xe2_c00328{left:531.420000px;}
.x119_c00328{left:532.500000px;}
.x100_c00328{left:534.000000px;}
.xe_c00328{left:535.500000px;}
.xb6_c00328{left:538.500000px;}
.x111_c00328{left:539.580000px;}
.x9f_c00328{left:541.500000px;}
.x27_c00328{left:543.000000px;}
.x9a_c00328{left:544.920000px;}
.x35_c00328{left:547.080000px;}
.xb2_c00328{left:549.000000px;}
.x89_c00328{left:550.920000px;}
.x10d_c00328{left:552.000000px;}
.x3f_c00328{left:553.500000px;}
.xd0_c00328{left:556.500000px;}
.x70_c00328{left:557.580000px;}
.xe3_c00328{left:559.500000px;}
.x5b_c00328{left:560.580000px;}
.xf4_c00328{left:562.500000px;}
.x28_c00328{left:563.580000px;}
.xaa_c00328{left:567.000000px;}
.xfa_c00328{left:570.420000px;}
.xfe_c00328{left:571.500000px;}
.x71_c00328{left:576.420000px;}
.xf_c00328{left:577.500000px;}
.x1b_c00328{left:578.580000px;}
.x5c_c00328{left:580.920000px;}
.xb8_c00328{left:582.420000px;}
.xbd_c00328{left:583.500000px;}
.x36_c00328{left:587.145000px;}
.xc8_c00328{left:588.420000px;}
.x82_c00328{left:589.500000px;}
.xc3_c00328{left:592.080000px;}
.x40_c00328{left:595.920000px;}
.xe4_c00328{left:597.420000px;}
.x79_c00328{left:598.500000px;}
.xf0_c00328{left:600.000000px;}
.x72_c00328{left:601.500000px;}
.xab_c00328{left:603.000000px;}
.xe8_c00328{left:606.000000px;}
.x5d_c00328{left:607.920000px;}
.xb9_c00328{left:609.420000px;}
.xa0_c00328{left:610.500000px;}
.x1c_c00328{left:612.420000px;}
.x93_c00328{left:613.920000px;}
.x29_c00328{left:615.000000px;}
.xc9_c00328{left:616.920000px;}
.xa3_c00328{left:618.420000px;}
.x65_c00328{left:622.080000px;}
.xe9_c00328{left:625.500000px;}
.x4b_c00328{left:628.080000px;}
.xf5_c00328{left:630.420000px;}
.xac_c00328{left:633.000000px;}
.x2a_c00328{left:634.500000px;}
.x5e_c00328{left:640.500000px;}
.x104_c00328{left:642.000000px;}
.xd9_c00328{left:643.500000px;}
.x66_c00328{left:646.080000px;}
.x10_c00328{left:647.580000px;}
.x2b_c00328{left:649.920000px;}
.x108_c00328{left:652.500000px;}
.x73_c00328{left:655.920000px;}
.x11a_c00328{left:657.000000px;}
.xad_c00328{left:658.500000px;}
.x4c_c00328{left:660.000000px;}
.xfb_c00328{left:661.920000px;}
.x41_c00328{left:663.420000px;}
.xda_c00328{left:664.920000px;}
.x94_c00328{left:666.420000px;}
.x7a_c00328{left:667.920000px;}
.xfd_c00328{left:670.080000px;}
.x83_c00328{left:672.000000px;}
.x112_c00328{left:673.500000px;}
.x67_c00328{left:674.580000px;}
.x11_c00328{left:678.000000px;}
.x74_c00328{left:681.420000px;}
.x1d_c00328{left:682.500000px;}
.xba_c00328{left:684.000000px;}
.xe5_c00328{left:685.080000px;}
.x2c_c00328{left:686.580000px;}
.x5f_c00328{left:688.080000px;}
.xdf_c00328{left:689.580000px;}
.x95_c00328{left:691.500000px;}
.xbe_c00328{left:692.580000px;}
.x105_c00328{left:694.080000px;}
.x7b_c00328{left:695.580000px;}
.xae_c00328{left:697.500000px;}
.xc4_c00328{left:703.080000px;}
.x2_c00328{left:704.580000px;}
.x1e_c00328{left:706.500000px;}
.x9b_c00328{left:707.580000px;}
.xea_c00328{left:715.500000px;}
.xca_c00328{left:716.580000px;}
@media print{
.v0_c00328{vertical-align:0.000000pt;}
.ls0_c00328{letter-spacing:0.000000pt;}
.ws0_c00328{word-spacing:-1.402129pt;}
.ws1_c00328{word-spacing:0.000000pt;}
.fs5_c00328{font-size:16.640000pt;}
.fs0_c00328{font-size:18.133333pt;}
.fs2_c00328{font-size:22.666667pt;}
.fs1_c00328{font-size:25.706667pt;}
.fs3_c00328{font-size:28.746667pt;}
.fs4_c00328{font-size:31.733333pt;}
.fs6_c00328{font-size:34.773333pt;}
.y0_c00328{bottom:0.000000pt;}
.yc7_c00328{bottom:225.306667pt;}
.yc3_c00328{bottom:227.026667pt;}
.yc4_c00328{bottom:227.226667pt;}
.yc5_c00328{bottom:227.973333pt;}
.yc6_c00328{bottom:228.360000pt;}
.yc1_c00328{bottom:243.773333pt;}
.yc0_c00328{bottom:244.560000pt;}
.yc2_c00328{bottom:244.733333pt;}
.ybf_c00328{bottom:245.693333pt;}
.ybc_c00328{bottom:259.026667pt;}
.ybe_c00328{bottom:261.106667pt;}
.ybd_c00328{bottom:261.306667pt;}
.yb9_c00328{bottom:261.893333pt;}
.ybb_c00328{bottom:262.640000pt;}
.yba_c00328{bottom:263.026667pt;}
.yb7_c00328{bottom:278.440000pt;}
.yb8_c00328{bottom:279.226667pt;}
.yb6_c00328{bottom:280.360000pt;}
.yb3_c00328{bottom:295.400000pt;}
.yb5_c00328{bottom:295.773333pt;}
.yb0_c00328{bottom:296.560000pt;}
.yaf_c00328{bottom:296.733333pt;}
.yb1_c00328{bottom:297.693333pt;}
.yb2_c00328{bottom:297.893333pt;}
.yb4_c00328{bottom:298.640000pt;}
.yac_c00328{bottom:313.106667pt;}
.yad_c00328{bottom:314.066667pt;}
.yab_c00328{bottom:315.026667pt;}
.yae_c00328{bottom:315.226667pt;}
.ya7_c00328{bottom:330.440000pt;}
.yaa_c00328{bottom:330.640000pt;}
.ya9_c00328{bottom:332.360000pt;}
.ya8_c00328{bottom:332.560000pt;}
.ya6_c00328{bottom:333.693333pt;}
.ya5_c00328{bottom:347.773333pt;}
.ya3_c00328{bottom:349.693333pt;}
.ya2_c00328{bottom:349.893333pt;}
.ya4_c00328{bottom:350.640000pt;}
.ya1_c00328{bottom:351.026667pt;}
.y9f_c00328{bottom:365.106667pt;}
.y9d_c00328{bottom:367.026667pt;}
.ya0_c00328{bottom:367.226667pt;}
.y9e_c00328{bottom:367.973333pt;}
.y9c_c00328{bottom:368.360000pt;}
.y98_c00328{bottom:382.440000pt;}
.y97_c00328{bottom:383.773333pt;}
.y99_c00328{bottom:384.560000pt;}
.y9b_c00328{bottom:384.733333pt;}
.y9a_c00328{bottom:385.693333pt;}
.y96_c00328{bottom:399.026667pt;}
.y94_c00328{bottom:401.106667pt;}
.y95_c00328{bottom:401.893333pt;}
.y93_c00328{bottom:403.026667pt;}
.y92_c00328{bottom:417.693333pt;}
.y90_c00328{bottom:418.440000pt;}
.y8f_c00328{bottom:420.360000pt;}
.y91_c00328{bottom:420.560000pt;}
.y8b_c00328{bottom:435.773333pt;}
.y8e_c00328{bottom:435.973333pt;}
.y8c_c00328{bottom:436.733333pt;}
.y8a_c00328{bottom:437.693333pt;}
.y8d_c00328{bottom:437.893333pt;}
.y89_c00328{bottom:452.360000pt;}
.y86_c00328{bottom:453.106667pt;}
.y88_c00328{bottom:454.440000pt;}
.y87_c00328{bottom:455.026667pt;}
.y7f_c00328{bottom:469.693333pt;}
.y80_c00328{bottom:470.826667pt;}
.y81_c00328{bottom:471.773333pt;}
.y85_c00328{bottom:472.360000pt;}
.y84_c00328{bottom:472.560000pt;}
.y83_c00328{bottom:473.306667pt;}
.y82_c00328{bottom:473.693333pt;}
.y7d_c00328{bottom:488.360000pt;}
.y7c_c00328{bottom:489.106667pt;}
.y7e_c00328{bottom:490.640000pt;}
.y7b_c00328{bottom:491.026667pt;}
.y75_c00328{bottom:505.106667pt;}
.y79_c00328{bottom:505.306667pt;}
.y7a_c00328{bottom:505.493333pt;}
.y77_c00328{bottom:506.440000pt;}
.y76_c00328{bottom:507.226667pt;}
.y74_c00328{bottom:508.360000pt;}
.y78_c00328{bottom:508.560000pt;}
.y71_c00328{bottom:523.773333pt;}
.y70_c00328{bottom:525.693333pt;}
.y73_c00328{bottom:525.893333pt;}
.y72_c00328{bottom:526.640000pt;}
.y6e_c00328{bottom:540.733333pt;}
.y6a_c00328{bottom:541.106667pt;}
.y6d_c00328{bottom:542.640000pt;}
.y6c_c00328{bottom:543.026667pt;}
.y6b_c00328{bottom:543.226667pt;}
.y6f_c00328{bottom:543.973333pt;}
.y66_c00328{bottom:558.440000pt;}
.y68_c00328{bottom:558.826667pt;}
.y65_c00328{bottom:559.773333pt;}
.y67_c00328{bottom:560.360000pt;}
.y69_c00328{bottom:561.693333pt;}
.y64_c00328{bottom:577.106667pt;}
.y63_c00328{bottom:579.026667pt;}
.y61_c00328{bottom:594.066667pt;}
.y5e_c00328{bottom:594.440000pt;}
.y62_c00328{bottom:595.226667pt;}
.y60_c00328{bottom:595.400000pt;}
.y5f_c00328{bottom:595.973333pt;}
.y5d_c00328{bottom:596.360000pt;}
.y5c_c00328{bottom:611.400000pt;}
.y5a_c00328{bottom:611.773333pt;}
.y5b_c00328{bottom:613.306667pt;}
.y59_c00328{bottom:613.693333pt;}
.y58_c00328{bottom:629.106667pt;}
.y55_c00328{bottom:629.893333pt;}
.y54_c00328{bottom:630.066667pt;}
.y53_c00328{bottom:630.640000pt;}
.y56_c00328{bottom:631.026667pt;}
.y57_c00328{bottom:631.973333pt;}
.y52_c00328{bottom:645.693333pt;}
.y4f_c00328{bottom:646.440000pt;}
.y50_c00328{bottom:648.360000pt;}
.y51_c00328{bottom:648.560000pt;}
.y4c_c00328{bottom:663.773333pt;}
.y4b_c00328{bottom:664.733333pt;}
.y4a_c00328{bottom:665.693333pt;}
.y4e_c00328{bottom:666.640000pt;}
.y4d_c00328{bottom:667.026667pt;}
.y46_c00328{bottom:681.106667pt;}
.y45_c00328{bottom:682.066667pt;}
.y48_c00328{bottom:682.440000pt;}
.y49_c00328{bottom:683.026667pt;}
.y44_c00328{bottom:683.226667pt;}
.y47_c00328{bottom:684.360000pt;}
.y42_c00328{bottom:700.360000pt;}
.y43_c00328{bottom:700.560000pt;}
.y41_c00328{bottom:701.693333pt;}
.y40_c00328{bottom:718.066667pt;}
.y3f_c00328{bottom:719.026667pt;}
.y3b_c00328{bottom:734.440000pt;}
.y3d_c00328{bottom:735.226667pt;}
.y3c_c00328{bottom:736.360000pt;}
.y3e_c00328{bottom:736.560000pt;}
.y3a_c00328{bottom:751.026667pt;}
.y39_c00328{bottom:753.306667pt;}
.y37_c00328{bottom:753.693333pt;}
.y36_c00328{bottom:753.893333pt;}
.y38_c00328{bottom:754.640000pt;}
.y33_c00328{bottom:768.160000pt;}
.y34_c00328{bottom:769.106667pt;}
.y32_c00328{bottom:771.026667pt;}
.y35_c00328{bottom:771.973333pt;}
.y2d_c00328{bottom:786.440000pt;}
.y30_c00328{bottom:787.400000pt;}
.y2e_c00328{bottom:788.360000pt;}
.y31_c00328{bottom:788.560000pt;}
.y2f_c00328{bottom:789.306667pt;}
.y2a_c00328{bottom:805.106667pt;}
.y2b_c00328{bottom:805.693333pt;}
.y2c_c00328{bottom:807.026667pt;}
.y27_c00328{bottom:822.440000pt;}
.y29_c00328{bottom:823.973333pt;}
.y28_c00328{bottom:824.360000pt;}
.y26_c00328{bottom:839.773333pt;}
.y25_c00328{bottom:841.693333pt;}
.y20_c00328{bottom:856.733333pt;}
.y23_c00328{bottom:857.106667pt;}
.y1f_c00328{bottom:857.693333pt;}
.y22_c00328{bottom:857.893333pt;}
.y21_c00328{bottom:858.640000pt;}
.y24_c00328{bottom:859.026667pt;}
.y1d_c00328{bottom:872.360000pt;}
.y1e_c00328{bottom:874.440000pt;}
.y1c_c00328{bottom:875.026667pt;}
.y19_c00328{bottom:875.226667pt;}
.y1b_c00328{bottom:875.973333pt;}
.y1a_c00328{bottom:876.360000pt;}
.y15_c00328{bottom:889.693333pt;}
.y17_c00328{bottom:891.773333pt;}
.y18_c00328{bottom:893.306667pt;}
.y16_c00328{bottom:893.693333pt;}
.y11_c00328{bottom:907.773333pt;}
.y14_c00328{bottom:907.973333pt;}
.ye_c00328{bottom:909.106667pt;}
.y13_c00328{bottom:909.893333pt;}
.y10_c00328{bottom:910.640000pt;}
.yf_c00328{bottom:911.026667pt;}
.y12_c00328{bottom:911.973333pt;}
.y9_c00328{bottom:926.440000pt;}
.yc_c00328{bottom:926.640000pt;}
.yd_c00328{bottom:927.226667pt;}
.ya_c00328{bottom:927.973333pt;}
.y8_c00328{bottom:928.360000pt;}
.yb_c00328{bottom:929.306667pt;}
.y6_c00328{bottom:943.773333pt;}
.y5_c00328{bottom:944.733333pt;}
.y4_c00328{bottom:945.306667pt;}
.y3_c00328{bottom:945.693333pt;}
.y7_c00328{bottom:946.640000pt;}
.y2_c00328{bottom:977.693333pt;}
.y1_c00328{bottom:979.600000pt;}
.h6_c00328{height:20.466875pt;}
.h1_c00328{height:22.303646pt;}
.h3_c00328{height:27.879557pt;}
.h2_c00328{height:31.618698pt;}
.h4_c00328{height:35.357839pt;}
.h5_c00328{height:39.031380pt;}
.h7_c00328{height:42.770521pt;}
.h0_c00328{height:1186.666667pt;}
.w0_c00328{width:782.666667pt;}
.x0_c00328{left:0.000000pt;}
.x3_c00328{left:135.040000pt;}
.xa4_c00328{left:136.000000pt;}
.x53_c00328{left:148.573333pt;}
.x42_c00328{left:153.333333pt;}
.x37_c00328{left:155.040000pt;}
.xcb_c00328{left:157.333333pt;}
.x8a_c00328{left:158.666667pt;}
.x4d_c00328{left:160.000000pt;}
.x101_c00328{left:160.960000pt;}
.x2d_c00328{left:165.333333pt;}
.xa5_c00328{left:166.293333pt;}
.x4_c00328{left:168.373333pt;}
.x10e_c00328{left:170.666667pt;}
.x7c_c00328{left:171.626667pt;}
.x12_c00328{left:173.706667pt;}
.x106_c00328{left:176.000000pt;}
.xbb_c00328{left:177.333333pt;}
.x60_c00328{left:178.293333pt;}
.x38_c00328{left:180.000000pt;}
.xeb_c00328{left:181.333333pt;}
.x9c_c00328{left:182.293333pt;}
.xb7_c00328{left:183.626667pt;}
.x113_c00328{left:185.706667pt;}
.xcc_c00328{left:189.706667pt;}
.xff_c00328{left:193.333333pt;}
.x5_c00328{left:194.666667pt;}
.xf1_c00328{left:195.626667pt;}
.xe6_c00328{left:197.333333pt;}
.x84_c00328{left:198.293333pt;}
.x43_c00328{left:199.626667pt;}
.x8b_c00328{left:200.960000pt;}
.x1f_c00328{left:202.293333pt;}
.x75_c00328{left:203.626667pt;}
.x107_c00328{left:205.333333pt;}
.x13_c00328{left:206.666667pt;}
.xdb_c00328{left:209.133333pt;}
.x114_c00328{left:210.666667pt;}
.x39_c00328{left:211.626667pt;}
.x6_c00328{left:213.333333pt;}
.x8c_c00328{left:216.373333pt;}
.x2e_c00328{left:217.333333pt;}
.x117_c00328{left:218.666667pt;}
.x20_c00328{left:221.706667pt;}
.x14_c00328{left:222.666667pt;}
.x44_c00328{left:225.333333pt;}
.x54_c00328{left:226.293333pt;}
.x68_c00328{left:228.000000pt;}
.xb3_c00328{left:228.960000pt;}
.xd1_c00328{left:230.666667pt;}
.xcd_c00328{left:232.960000pt;}
.xaf_c00328{left:236.000000pt;}
.xbf_c00328{left:236.960000pt;}
.x4e_c00328{left:238.293333pt;}
.x3a_c00328{left:240.000000pt;}
.xec_c00328{left:241.333333pt;}
.x109_c00328{left:242.293333pt;}
.xe0_c00328{left:243.626667pt;}
.x76_c00328{left:245.333333pt;}
.x21_c00328{left:246.293333pt;}
.xd7_c00328{left:248.000000pt;}
.xd2_c00328{left:252.373333pt;}
.x4f_c00328{left:255.040000pt;}
.x15_c00328{left:256.000000pt;}
.x45_c00328{left:257.333333pt;}
.x69_c00328{left:258.666667pt;}
.xc5_c00328{left:260.000000pt;}
.x85_c00328{left:261.333333pt;}
.xa6_c00328{left:262.293333pt;}
.x7_c00328{left:264.000000pt;}
.x115_c00328{left:264.960000pt;}
.xa1_c00328{left:266.293333pt;}
.x55_c00328{left:268.000000pt;}
.xf6_c00328{left:269.706667pt;}
.x9d_c00328{left:270.666667pt;}
.x7d_c00328{left:272.373333pt;}
.x96_c00328{left:273.706667pt;}
.xf2_c00328{left:275.626667pt;}
.xc6_c00328{left:276.960000pt;}
.x50_c00328{left:279.040000pt;}
.x86_c00328{left:280.000000pt;}
.x8d_c00328{left:281.333333pt;}
.x3b_c00328{left:282.293333pt;}
.xbc_c00328{left:284.000000pt;}
.xdc_c00328{left:286.666667pt;}
.xd8_c00328{left:287.626667pt;}
.x46_c00328{left:289.706667pt;}
.xa7_c00328{left:290.666667pt;}
.x2f_c00328{left:291.626667pt;}
.x61_c00328{left:292.573333pt;}
.x102_c00328{left:294.666667pt;}
.x16_c00328{left:296.000000pt;}
.xfc_c00328{left:297.706667pt;}
.x22_c00328{left:300.000000pt;}
.xb4_c00328{left:301.333333pt;}
.x8_c00328{left:302.293333pt;}
.x6a_c00328{left:303.626667pt;}
.x87_c00328{left:304.960000pt;}
.xed_c00328{left:307.626667pt;}
.x56_c00328{left:309.706667pt;}
.xc0_c00328{left:311.240000pt;}
.x17_c00328{left:314.666667pt;}
.x97_c00328{left:316.000000pt;}
.x10a_c00328{left:317.333333pt;}
.x51_c00328{left:320.373333pt;}
.xd3_c00328{left:321.333333pt;}
.x23_c00328{left:323.040000pt;}
.xb0_c00328{left:325.333333pt;}
.x7e_c00328{left:326.666667pt;}
.x8e_c00328{left:327.626667pt;}
.x9_c00328{left:328.960000pt;}
.x57_c00328{left:332.000000pt;}
.x47_c00328{left:333.706667pt;}
.xf7_c00328{left:334.666667pt;}
.xd4_c00328{left:336.373333pt;}
.x10f_c00328{left:337.333333pt;}
.x9e_c00328{left:339.040000pt;}
.xe1_c00328{left:341.706667pt;}
.x52_c00328{left:343.040000pt;}
.x3c_c00328{left:344.000000pt;}
.x98_c00328{left:345.706667pt;}
.xc1_c00328{left:348.760000pt;}
.x58_c00328{left:349.706667pt;}
.xb5_c00328{left:352.000000pt;}
.x30_c00328{left:353.333333pt;}
.xee_c00328{left:356.373333pt;}
.x1_c00328{left:357.333333pt;}
.xa_c00328{left:360.373333pt;}
.x62_c00328{left:361.706667pt;}
.x6b_c00328{left:362.666667pt;}
.x77_c00328{left:364.373333pt;}
.xf8_c00328{left:365.333333pt;}
.x8f_c00328{left:366.666667pt;}
.x48_c00328{left:368.000000pt;}
.x24_c00328{left:369.333333pt;}
.x31_c00328{left:371.040000pt;}
.xa8_c00328{left:372.000000pt;}
.x3d_c00328{left:373.333333pt;}
.x7f_c00328{left:376.000000pt;}
.x116_c00328{left:377.706667pt;}
.xdd_c00328{left:378.666667pt;}
.x6c_c00328{left:380.373333pt;}
.xd5_c00328{left:381.333333pt;}
.x59_c00328{left:382.666667pt;}
.xf9_c00328{left:385.706667pt;}
.x10b_c00328{left:386.666667pt;}
.xc2_c00328{left:387.626667pt;}
.x78_c00328{left:389.706667pt;}
.x18_c00328{left:391.040000pt;}
.xb_c00328{left:392.373333pt;}
.x80_c00328{left:393.333333pt;}
.x32_c00328{left:395.626667pt;}
.x103_c00328{left:398.666667pt;}
.x90_c00328{left:400.373333pt;}
.x6d_c00328{left:402.666667pt;}
.x63_c00328{left:405.333333pt;}
.xef_c00328{left:406.293333pt;}
.xce_c00328{left:408.373333pt;}
.x88_c00328{left:409.706667pt;}
.x25_c00328{left:411.040000pt;}
.xf3_c00328{left:413.706667pt;}
.x5a_c00328{left:415.040000pt;}
.x118_c00328{left:417.333333pt;}
.xd6_c00328{left:419.040000pt;}
.x10c_c00328{left:420.373333pt;}
.x49_c00328{left:421.333333pt;}
.x99_c00328{left:423.040000pt;}
.x91_c00328{left:424.000000pt;}
.xc_c00328{left:426.293333pt;}
.x6e_c00328{left:427.626667pt;}
.x19_c00328{left:432.373333pt;}
.x64_c00328{left:435.040000pt;}
.x110_c00328{left:437.333333pt;}
.x4a_c00328{left:438.666667pt;}
.xcf_c00328{left:440.000000pt;}
.x26_c00328{left:443.626667pt;}
.x33_c00328{left:444.960000pt;}
.xa9_c00328{left:446.666667pt;}
.x81_c00328{left:447.626667pt;}
.xd_c00328{left:448.960000pt;}
.xe7_c00328{left:450.293333pt;}
.xb1_c00328{left:452.373333pt;}
.x6f_c00328{left:454.666667pt;}
.x92_c00328{left:456.373333pt;}
.x1a_c00328{left:457.906667pt;}
.xc7_c00328{left:460.000000pt;}
.xa2_c00328{left:460.960000pt;}
.x34_c00328{left:463.040000pt;}
.x3e_c00328{left:465.706667pt;}
.xde_c00328{left:470.666667pt;}
.xe2_c00328{left:472.373333pt;}
.x119_c00328{left:473.333333pt;}
.x100_c00328{left:474.666667pt;}
.xe_c00328{left:476.000000pt;}
.xb6_c00328{left:478.666667pt;}
.x111_c00328{left:479.626667pt;}
.x9f_c00328{left:481.333333pt;}
.x27_c00328{left:482.666667pt;}
.x9a_c00328{left:484.373333pt;}
.x35_c00328{left:486.293333pt;}
.xb2_c00328{left:488.000000pt;}
.x89_c00328{left:489.706667pt;}
.x10d_c00328{left:490.666667pt;}
.x3f_c00328{left:492.000000pt;}
.xd0_c00328{left:494.666667pt;}
.x70_c00328{left:495.626667pt;}
.xe3_c00328{left:497.333333pt;}
.x5b_c00328{left:498.293333pt;}
.xf4_c00328{left:500.000000pt;}
.x28_c00328{left:500.960000pt;}
.xaa_c00328{left:504.000000pt;}
.xfa_c00328{left:507.040000pt;}
.xfe_c00328{left:508.000000pt;}
.x71_c00328{left:512.373333pt;}
.xf_c00328{left:513.333333pt;}
.x1b_c00328{left:514.293333pt;}
.x5c_c00328{left:516.373333pt;}
.xb8_c00328{left:517.706667pt;}
.xbd_c00328{left:518.666667pt;}
.x36_c00328{left:521.906667pt;}
.xc8_c00328{left:523.040000pt;}
.x82_c00328{left:524.000000pt;}
.xc3_c00328{left:526.293333pt;}
.x40_c00328{left:529.706667pt;}
.xe4_c00328{left:531.040000pt;}
.x79_c00328{left:532.000000pt;}
.xf0_c00328{left:533.333333pt;}
.x72_c00328{left:534.666667pt;}
.xab_c00328{left:536.000000pt;}
.xe8_c00328{left:538.666667pt;}
.x5d_c00328{left:540.373333pt;}
.xb9_c00328{left:541.706667pt;}
.xa0_c00328{left:542.666667pt;}
.x1c_c00328{left:544.373333pt;}
.x93_c00328{left:545.706667pt;}
.x29_c00328{left:546.666667pt;}
.xc9_c00328{left:548.373333pt;}
.xa3_c00328{left:549.706667pt;}
.x65_c00328{left:552.960000pt;}
.xe9_c00328{left:556.000000pt;}
.x4b_c00328{left:558.293333pt;}
.xf5_c00328{left:560.373333pt;}
.xac_c00328{left:562.666667pt;}
.x2a_c00328{left:564.000000pt;}
.x5e_c00328{left:569.333333pt;}
.x104_c00328{left:570.666667pt;}
.xd9_c00328{left:572.000000pt;}
.x66_c00328{left:574.293333pt;}
.x10_c00328{left:575.626667pt;}
.x2b_c00328{left:577.706667pt;}
.x108_c00328{left:580.000000pt;}
.x73_c00328{left:583.040000pt;}
.x11a_c00328{left:584.000000pt;}
.xad_c00328{left:585.333333pt;}
.x4c_c00328{left:586.666667pt;}
.xfb_c00328{left:588.373333pt;}
.x41_c00328{left:589.706667pt;}
.xda_c00328{left:591.040000pt;}
.x94_c00328{left:592.373333pt;}
.x7a_c00328{left:593.706667pt;}
.xfd_c00328{left:595.626667pt;}
.x83_c00328{left:597.333333pt;}
.x112_c00328{left:598.666667pt;}
.x67_c00328{left:599.626667pt;}
.x11_c00328{left:602.666667pt;}
.x74_c00328{left:605.706667pt;}
.x1d_c00328{left:606.666667pt;}
.xba_c00328{left:608.000000pt;}
.xe5_c00328{left:608.960000pt;}
.x2c_c00328{left:610.293333pt;}
.x5f_c00328{left:611.626667pt;}
.xdf_c00328{left:612.960000pt;}
.x95_c00328{left:614.666667pt;}
.xbe_c00328{left:615.626667pt;}
.x105_c00328{left:616.960000pt;}
.x7b_c00328{left:618.293333pt;}
.xae_c00328{left:620.000000pt;}
.xc4_c00328{left:624.960000pt;}
.x2_c00328{left:626.293333pt;}
.x1e_c00328{left:628.000000pt;}
.x9b_c00328{left:628.960000pt;}
.xea_c00328{left:636.000000pt;}
.xca_c00328{left:636.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_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_ffec57ba4c8b86a54d2d618e.woff2')format("woff");}.ff1_c00329{font-family:ff1_c00329;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc6_c00329{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.m51_c00329{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.m78_c00329{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m49_c00329{transform:matrix(0.340756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340756,0.000000,0.000000,0.250000,0,0);}
.mc0_c00329{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.mf7_c00329{transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);}
.m10a_c00329{transform:matrix(0.354360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354360,0.000000,0.000000,0.250000,0,0);}
.m48_c00329{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.md5_c00329{transform:matrix(0.361317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361317,0.000000,0.000000,0.250000,0,0);}
.m2e_c00329{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.md6_c00329{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.m8a_c00329{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m17_c00329{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m28_c00329{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m34_c00329{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mec_c00329{transform:matrix(0.377087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377087,0.000000,0.000000,0.250000,0,0);}
.m55_c00329{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m37_c00329{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m33_c00329{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.mee_c00329{transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);}
.mdb_c00329{transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);}
.m16_c00329{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.me7_c00329{transform:matrix(0.389523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389523,0.000000,0.000000,0.250000,0,0);}
.m56_c00329{transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);}
.ma9_c00329{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m29_c00329{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m7a_c00329{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m10c_c00329{transform:matrix(0.395176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395176,0.000000,0.000000,0.250000,0,0);}
.m90_c00329{transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);}
.m91_c00329{transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);}
.mbc_c00329{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m80_c00329{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.md0_c00329{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m10f_c00329{transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);}
.m60_c00329{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mb8_c00329{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mb4_c00329{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m5c_c00329{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m20_c00329{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m8d_c00329{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.ma1_c00329{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mab_c00329{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m10e_c00329{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.mc1_c00329{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m4a_c00329{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.mb3_c00329{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m27_c00329{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m81_c00329{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.ma8_c00329{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m9c_c00329{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m50_c00329{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mff_c00329{transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);}
.m4f_c00329{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m45_c00329{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mfc_c00329{transform:matrix(0.426349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426349,0.000000,0.000000,0.250000,0,0);}
.maf_c00329{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.mc5_c00329{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m105_c00329{transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);}
.m15_c00329{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mc9_c00329{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m70_c00329{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mce_c00329{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m96_c00329{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.mb0_c00329{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m36_c00329{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mbb_c00329{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.mbd_c00329{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.me5_c00329{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m59_c00329{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m79_c00329{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m5a_c00329{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m8e_c00329{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.mb1_c00329{transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);}
.m3c_c00329{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.mfe_c00329{transform:matrix(0.441390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441390,0.000000,0.000000,0.250000,0,0);}
.m61_c00329{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m62_c00329{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m72_c00329{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m2d_c00329{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m2b_c00329{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m76_c00329{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m74_c00329{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.mb_c00329{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.me2_c00329{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m1b_c00329{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m104_c00329{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.m43_c00329{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.mfd_c00329{transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);}
.m4c_c00329{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m95_c00329{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m102_c00329{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m11a_c00329{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m73_c00329{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m98_c00329{transform:matrix(0.463529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463529,0.000000,0.000000,0.250000,0,0);}
.meb_c00329{transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);}
.m99_c00329{transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);}
.md4_c00329{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.md3_c00329{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.mb5_c00329{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.md2_c00329{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.m9b_c00329{transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);}
.m5b_c00329{transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);}
.m100_c00329{transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);}
.m22_c00329{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.mac_c00329{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mc_c00329{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m9_c00329{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m101_c00329{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m44_c00329{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m5_c00329{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m8c_c00329{transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);}
.mdf_c00329{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.mb9_c00329{transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);}
.m107_c00329{transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);}
.m1e_c00329{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m6f_c00329{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mc3_c00329{transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);}
.mf3_c00329{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m71_c00329{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m5e_c00329{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m46_c00329{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_c00329{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.me1_c00329{transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);}
.m13_c00329{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m3_c00329{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mf_c00329{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m114_c00329{transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);}
.m77_c00329{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m7e_c00329{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m67_c00329{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m47_c00329{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.mc8_c00329{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m118_c00329{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.m83_c00329{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m54_c00329{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m93_c00329{transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);}
.m11b_c00329{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m11e_c00329{transform:matrix(0.517647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517647,0.000000,0.000000,0.250000,0,0);}
.m35_c00329{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m4b_c00329{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m26_c00329{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m40_c00329{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m6a_c00329{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m9a_c00329{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.mbe_c00329{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.mbf_c00329{transform:matrix(0.525974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525974,0.000000,0.000000,0.250000,0,0);}
.m6c_c00329{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m32_c00329{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m6e_c00329{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m21_c00329{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m10d_c00329{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m1a_c00329{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m38_c00329{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mf8_c00329{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m7c_c00329{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m66_c00329{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m10b_c00329{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m7f_c00329{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m82_c00329{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m2a_c00329{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.ma5_c00329{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m94_c00329{transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);}
.m5f_c00329{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m6b_c00329{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.ma7_c00329{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.maa_c00329{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m3d_c00329{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m86_c00329{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m7d_c00329{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.ma3_c00329{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m8f_c00329{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m52_c00329{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m69_c00329{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.mf5_c00329{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m31_c00329{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m9f_c00329{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m103_c00329{transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);}
.m1_c00329{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.ma_c00329{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mae_c00329{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m10_c00329{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.ma2_c00329{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.md_c00329{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mdd_c00329{transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);}
.mcf_c00329{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m65_c00329{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m68_c00329{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m2_c00329{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mef_c00329{transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);}
.m116_c00329{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m6_c00329{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m41_c00329{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m5d_c00329{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mba_c00329{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m6d_c00329{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mf6_c00329{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.mc2_c00329{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m2c_c00329{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m0_c00329{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.mf1_c00329{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.me_c00329{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.me0_c00329{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m1d_c00329{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.md9_c00329{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m57_c00329{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.me3_c00329{transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);}
.mc4_c00329{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.m84_c00329{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.mc7_c00329{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mfb_c00329{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.mf4_c00329{transform:matrix(0.580147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580147,0.000000,0.000000,0.250000,0,0);}
.mcc_c00329{transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);}
.m63_c00329{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m106_c00329{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m3a_c00329{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.me4_c00329{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.mdc_c00329{transform:matrix(0.588824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588824,0.000000,0.000000,0.250000,0,0);}
.m112_c00329{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.m11d_c00329{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m92_c00329{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m14_c00329{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m7b_c00329{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m4d_c00329{transform:matrix(0.594398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594398,0.000000,0.000000,0.250000,0,0);}
.mb2_c00329{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.m19_c00329{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.me6_c00329{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.ma4_c00329{transform:matrix(0.599066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599066,0.000000,0.000000,0.250000,0,0);}
.mad_c00329{transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);}
.ma0_c00329{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.me8_c00329{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m88_c00329{transform:matrix(0.608921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608921,0.000000,0.000000,0.250000,0,0);}
.m119_c00329{transform:matrix(0.611765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611765,0.000000,0.000000,0.250000,0,0);}
.m115_c00329{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m30_c00329{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m7_c00329{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m89_c00329{transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);}
.m85_c00329{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.mf9_c00329{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m117_c00329{transform:matrix(0.618590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618590,0.000000,0.000000,0.250000,0,0);}
.m18_c00329{transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);}
.md8_c00329{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_c00329{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m111_c00329{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.mda_c00329{transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);}
.m120_c00329{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m2f_c00329{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m108_c00329{transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);}
.md7_c00329{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m87_c00329{transform:matrix(0.650934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650934,0.000000,0.000000,0.250000,0,0);}
.mea_c00329{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m25_c00329{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m23_c00329{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m9e_c00329{transform:matrix(0.666494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666494,0.000000,0.000000,0.250000,0,0);}
.m97_c00329{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m12_c00329{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m11f_c00329{transform:matrix(0.671324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.671324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.671324,0.000000,0.000000,0.250000,0,0);}
.me9_c00329{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m8b_c00329{transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);}
.md1_c00329{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m24_c00329{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m11_c00329{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.mf2_c00329{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m3b_c00329{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.m58_c00329{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.ma6_c00329{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mde_c00329{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);}
.m110_c00329{transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);}
.m42_c00329{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m3e_c00329{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m3f_c00329{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m1c_c00329{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m4_c00329{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m75_c00329{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mf0_c00329{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);}
.mb6_c00329{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.mca_c00329{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.m39_c00329{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m64_c00329{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m53_c00329{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.mcb_c00329{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m1f_c00329{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m8_c00329{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.med_c00329{transform:matrix(0.875735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875735,0.000000,0.000000,0.250000,0,0);}
.m11c_c00329{transform:matrix(0.916912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.916912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.916912,0.000000,0.000000,0.250000,0,0);}
.mfa_c00329{transform:matrix(0.932819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.932819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.932819,0.000000,0.000000,0.250000,0,0);}
.m109_c00329{transform:matrix(1.025330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.025330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.025330,0.000000,0.000000,0.250000,0,0);}
.m113_c00329{transform:matrix(2.899123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.899123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.899123,0.000000,0.000000,0.250000,0,0);}
.m9d_c00329{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.mb7_c00329{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00329{vertical-align:0.000000px;}
.v2_c00329{vertical-align:6.000000px;}
.v1_c00329{vertical-align:18.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;}
}
.ws1_c00329{word-spacing:-8.094387px;}
.ws0_c00329{word-spacing:-7.990561px;}
.ws2_c00329{word-spacing:0.000000px;}
.fc0_c00329{color:transparent;}
.fs7_c00329{font-size:3.420000px;}
.fs8_c00329{font-size:13.620000px;}
.fs3_c00329{font-size:18.720000px;}
.fs0_c00329{font-size:20.400000px;}
.fs1_c00329{font-size:25.500000px;}
.fs2_c00329{font-size:28.920000px;}
.fs4_c00329{font-size:32.340000px;}
.fs5_c00329{font-size:35.700000px;}
.fs6_c00329{font-size:39.120000px;}
.y0_c00329{bottom:0.000000px;}
.yd8_c00329{bottom:250.470000px;}
.yd9_c00329{bottom:251.550000px;}
.yda_c00329{bottom:253.050000px;}
.yd4_c00329{bottom:264.630000px;}
.yd6_c00329{bottom:265.905000px;}
.yd5_c00329{bottom:266.970000px;}
.yd7_c00329{bottom:268.050000px;}
.ycd_c00329{bottom:278.325000px;}
.ycc_c00329{bottom:279.405000px;}
.yd3_c00329{bottom:280.905000px;}
.yd2_c00329{bottom:280.920000px;}
.ycf_c00329{bottom:281.130000px;}
.yce_c00329{bottom:281.550000px;}
.yd0_c00329{bottom:281.970000px;}
.yd1_c00329{bottom:283.050000px;}
.yc7_c00329{bottom:293.970000px;}
.yc6_c00329{bottom:294.630000px;}
.ycb_c00329{bottom:294.825000px;}
.yc5_c00329{bottom:295.470000px;}
.yca_c00329{bottom:296.970000px;}
.yc9_c00329{bottom:297.195000px;}
.yc8_c00329{bottom:298.050000px;}
.yc0_c00329{bottom:309.405000px;}
.yc1_c00329{bottom:309.825000px;}
.yc3_c00329{bottom:310.905000px;}
.yc4_c00329{bottom:311.970000px;}
.yc2_c00329{bottom:313.050000px;}
.yb9_c00329{bottom:322.470000px;}
.ybf_c00329{bottom:324.405000px;}
.ybc_c00329{bottom:324.825000px;}
.yba_c00329{bottom:326.550000px;}
.ybb_c00329{bottom:326.970000px;}
.ybe_c00329{bottom:327.195000px;}
.ybd_c00329{bottom:328.050000px;}
.yb2_c00329{bottom:337.470000px;}
.yb4_c00329{bottom:339.825000px;}
.yb8_c00329{bottom:340.050000px;}
.yb0_c00329{bottom:340.470000px;}
.yb3_c00329{bottom:340.905000px;}
.yb7_c00329{bottom:341.130000px;}
.yb1_c00329{bottom:341.550000px;}
.yb6_c00329{bottom:341.970000px;}
.yb5_c00329{bottom:343.050000px;}
.yad_c00329{bottom:353.970000px;}
.yaa_c00329{bottom:355.470000px;}
.yae_c00329{bottom:355.905000px;}
.yab_c00329{bottom:356.550000px;}
.yac_c00329{bottom:356.970000px;}
.yaf_c00329{bottom:358.050000px;}
.ya7_c00329{bottom:368.325000px;}
.ya5_c00329{bottom:369.405000px;}
.ya8_c00329{bottom:369.825000px;}
.ya6_c00329{bottom:370.470000px;}
.ya9_c00329{bottom:371.550000px;}
.ya4_c00329{bottom:373.695000px;}
.ya2_c00329{bottom:399.405000px;}
.ya3_c00329{bottom:401.745000px;}
.y9c_c00329{bottom:402.405000px;}
.y9d_c00329{bottom:402.630000px;}
.ya1_c00329{bottom:402.825000px;}
.y9f_c00329{bottom:403.470000px;}
.y9e_c00329{bottom:403.905000px;}
.ya0_c00329{bottom:404.970000px;}
.y99_c00329{bottom:421.245000px;}
.y96_c00329{bottom:421.905000px;}
.y9b_c00329{bottom:422.130000px;}
.y9a_c00329{bottom:422.970000px;}
.y97_c00329{bottom:423.405000px;}
.y98_c00329{bottom:423.420000px;}
.y95_c00329{bottom:440.745000px;}
.y93_c00329{bottom:441.405000px;}
.y94_c00329{bottom:442.905000px;}
.y92_c00329{bottom:459.180000px;}
.y90_c00329{bottom:461.325000px;}
.y91_c00329{bottom:461.970000px;}
.y8e_c00329{bottom:462.405000px;}
.y8f_c00329{bottom:463.920000px;}
.y8d_c00329{bottom:479.745000px;}
.y8b_c00329{bottom:480.825000px;}
.y8c_c00329{bottom:481.245000px;}
.y8a_c00329{bottom:481.905000px;}
.y89_c00329{bottom:499.245000px;}
.y87_c00329{bottom:500.325000px;}
.y85_c00329{bottom:500.745000px;}
.y88_c00329{bottom:501.405000px;}
.y83_c00329{bottom:501.630000px;}
.y82_c00329{bottom:501.825000px;}
.y86_c00329{bottom:502.905000px;}
.y84_c00329{bottom:502.920000px;}
.y81_c00329{bottom:517.905000px;}
.y7e_c00329{bottom:520.245000px;}
.y80_c00329{bottom:521.325000px;}
.y7f_c00329{bottom:522.420000px;}
.y7a_c00329{bottom:538.245000px;}
.y7b_c00329{bottom:539.745000px;}
.y7c_c00329{bottom:541.470000px;}
.y7d_c00329{bottom:541.905000px;}
.y78_c00329{bottom:558.825000px;}
.y76_c00329{bottom:559.245000px;}
.y75_c00329{bottom:559.905000px;}
.y79_c00329{bottom:560.970000px;}
.y77_c00329{bottom:561.405000px;}
.y74_c00329{bottom:578.745000px;}
.y73_c00329{bottom:580.905000px;}
.y6f_c00329{bottom:598.245000px;}
.y71_c00329{bottom:598.470000px;}
.y6e_c00329{bottom:600.405000px;}
.y72_c00329{bottom:600.630000px;}
.y70_c00329{bottom:601.470000px;}
.y6a_c00329{bottom:617.745000px;}
.y6c_c00329{bottom:619.905000px;}
.y6d_c00329{bottom:620.970000px;}
.y6b_c00329{bottom:621.420000px;}
.y69_c00329{bottom:643.470000px;}
.y68_c00329{bottom:644.970000px;}
.y66_c00329{bottom:645.405000px;}
.y65_c00329{bottom:646.470000px;}
.y67_c00329{bottom:647.550000px;}
.y64_c00329{bottom:664.470000px;}
.y63_c00329{bottom:664.905000px;}
.y62_c00329{bottom:665.325000px;}
.y61_c00329{bottom:665.550000px;}
.y60_c00329{bottom:667.470000px;}
.y5e_c00329{bottom:689.745000px;}
.y5d_c00329{bottom:690.825000px;}
.y5c_c00329{bottom:691.470000px;}
.y5b_c00329{bottom:691.905000px;}
.y5f_c00329{bottom:693.630000px;}
.y57_c00329{bottom:723.405000px;}
.y5a_c00329{bottom:725.325000px;}
.y58_c00329{bottom:727.905000px;}
.y59_c00329{bottom:728.970000px;}
.y53_c00329{bottom:745.245000px;}
.y55_c00329{bottom:746.325000px;}
.y52_c00329{bottom:747.405000px;}
.y54_c00329{bottom:747.630000px;}
.y56_c00329{bottom:748.470000px;}
.y51_c00329{bottom:766.905000px;}
.y4c_c00329{bottom:785.325000px;}
.y4d_c00329{bottom:785.745000px;}
.y50_c00329{bottom:787.470000px;}
.y4e_c00329{bottom:787.905000px;}
.y4f_c00329{bottom:788.130000px;}
.y4b_c00329{bottom:802.905000px;}
.y46_c00329{bottom:803.745000px;}
.y4a_c00329{bottom:805.245000px;}
.y45_c00329{bottom:806.130000px;}
.y47_c00329{bottom:806.325000px;}
.y48_c00329{bottom:807.405000px;}
.y49_c00329{bottom:807.630000px;}
.y43_c00329{bottom:824.745000px;}
.y42_c00329{bottom:826.905000px;}
.y44_c00329{bottom:827.130000px;}
.y40_c00329{bottom:845.970000px;}
.y41_c00329{bottom:846.405000px;}
.y3b_c00329{bottom:864.630000px;}
.y3d_c00329{bottom:865.245000px;}
.y3c_c00329{bottom:865.905000px;}
.y3f_c00329{bottom:866.130000px;}
.y3e_c00329{bottom:867.405000px;}
.y3a_c00329{bottom:883.245000px;}
.y36_c00329{bottom:884.325000px;}
.y38_c00329{bottom:884.745000px;}
.y37_c00329{bottom:885.405000px;}
.y39_c00329{bottom:886.905000px;}
.y34_c00329{bottom:904.245000px;}
.y31_c00329{bottom:904.905000px;}
.y32_c00329{bottom:905.130000px;}
.y35_c00329{bottom:905.970000px;}
.y33_c00329{bottom:906.405000px;}
.y30_c00329{bottom:921.405000px;}
.y2b_c00329{bottom:922.245000px;}
.y2a_c00329{bottom:922.680000px;}
.y2f_c00329{bottom:922.905000px;}
.y2e_c00329{bottom:923.745000px;}
.y2c_c00329{bottom:925.905000px;}
.y2d_c00329{bottom:926.970000px;}
.y28_c00329{bottom:942.405000px;}
.y29_c00329{bottom:943.245000px;}
.y24_c00329{bottom:943.905000px;}
.y26_c00329{bottom:944.130000px;}
.y27_c00329{bottom:944.325000px;}
.y25_c00329{bottom:945.405000px;}
.y1f_c00329{bottom:961.245000px;}
.y20_c00329{bottom:962.745000px;}
.y21_c00329{bottom:964.905000px;}
.y22_c00329{bottom:965.130000px;}
.y23_c00329{bottom:965.970000px;}
.y1c_c00329{bottom:981.825000px;}
.y1e_c00329{bottom:982.245000px;}
.y1d_c00329{bottom:984.405000px;}
.y1b_c00329{bottom:985.470000px;}
.y17_c00329{bottom:1001.745000px;}
.y1a_c00329{bottom:1002.825000px;}
.y16_c00329{bottom:1003.470000px;}
.y19_c00329{bottom:1003.905000px;}
.y18_c00329{bottom:1004.130000px;}
.y10_c00329{bottom:1022.325000px;}
.y12_c00329{bottom:1022.745000px;}
.yf_c00329{bottom:1023.405000px;}
.y11_c00329{bottom:1023.630000px;}
.y15_c00329{bottom:1023.825000px;}
.y14_c00329{bottom:1024.470000px;}
.y13_c00329{bottom:1024.905000px;}
.y8_c00329{bottom:1038.405000px;}
.yc_c00329{bottom:1039.905000px;}
.ye_c00329{bottom:1040.745000px;}
.yd_c00329{bottom:1042.245000px;}
.y9_c00329{bottom:1042.905000px;}
.ya_c00329{bottom:1043.130000px;}
.yb_c00329{bottom:1043.970000px;}
.y7_c00329{bottom:1061.745000px;}
.y3_c00329{bottom:1062.405000px;}
.y4_c00329{bottom:1062.630000px;}
.y6_c00329{bottom:1062.825000px;}
.y5_c00329{bottom:1063.905000px;}
.y2_c00329{bottom:1099.470000px;}
.y1_c00329{bottom:1102.050000px;}
.ha_c00329{height:4.206533px;}
.hb_c00329{height:16.752334px;}
.h4_c00329{height:23.025234px;}
.h1_c00329{height:25.091602px;}
.h2_c00329{height:31.364502px;}
.h3_c00329{height:35.571035px;}
.h5_c00329{height:39.777568px;}
.h8_c00329{height:41.571035px;}
.h6_c00329{height:43.910303px;}
.h9_c00329{height:48.116836px;}
.h7_c00329{height:53.571035px;}
.h0_c00329{height:1335.000000px;}
.w0_c00329{width:880.500000px;}
.x0_c00329{left:0.000000px;}
.x2_c00329{left:151.500000px;}
.x3e_c00329{left:152.580000px;}
.xa3_c00329{left:166.080000px;}
.x33_c00329{left:167.580000px;}
.x28_c00329{left:171.420000px;}
.xb7_c00329{left:174.420000px;}
.xf7_c00329{left:175.500000px;}
.xbd_c00329{left:178.080000px;}
.x69_c00329{left:179.580000px;}
.x18_c00329{left:186.420000px;}
.xf0_c00329{left:189.000000px;}
.xe6_c00329{left:190.500000px;}
.x3_c00329{left:193.500000px;}
.xe0_c00329{left:195.000000px;}
.x34_c00329{left:196.500000px;}
.x3f_c00329{left:199.500000px;}
.x6a_c00329{left:201.420000px;}
.xa4_c00329{left:203.580000px;}
.xcc_c00329{left:205.500000px;}
.xb8_c00329{left:208.500000px;}
.xf1_c00329{left:210.000000px;}
.x19_c00329{left:211.500000px;}
.x72_c00329{left:214.080000px;}
.xad_c00329{left:216.420000px;}
.x75_c00329{left:218.580000px;}
.xb4_c00329{left:220.500000px;}
.x35_c00329{left:222.000000px;}
.x101_c00329{left:225.000000px;}
.x40_c00329{left:231.000000px;}
.x53_c00329{left:234.000000px;}
.x76_c00329{left:235.500000px;}
.xc7_c00329{left:237.000000px;}
.xf_c00329{left:238.500000px;}
.xd3_c00329{left:240.000000px;}
.xae_c00329{left:243.420000px;}
.x7e_c00329{left:244.500000px;}
.x1a_c00329{left:246.000000px;}
.xe7_c00329{left:247.080000px;}
.x4b_c00329{left:249.420000px;}
.x29_c00329{left:250.500000px;}
.xa5_c00329{left:251.580000px;}
.x8e_c00329{left:253.500000px;}
.x62_c00329{left:255.000000px;}
.xf8_c00329{left:258.000000px;}
.x85_c00329{left:259.500000px;}
.xdb_c00329{left:262.500000px;}
.x41_c00329{left:265.500000px;}
.x1b_c00329{left:267.420000px;}
.xd4_c00329{left:268.500000px;}
.x4_c00329{left:270.420000px;}
.x6b_c00329{left:271.500000px;}
.x4c_c00329{left:274.080000px;}
.x36_c00329{left:276.000000px;}
.x96_c00329{left:279.000000px;}
.xc1_c00329{left:280.500000px;}
.x73_c00329{left:282.420000px;}
.x54_c00329{left:283.500000px;}
.xd0_c00329{left:285.000000px;}
.x37_c00329{left:286.920000px;}
.xa7_c00329{left:291.000000px;}
.x42_c00329{left:292.080000px;}
.x1c_c00329{left:294.420000px;}
.x5_c00329{left:298.080000px;}
.x86_c00329{left:300.000000px;}
.x8f_c00329{left:303.420000px;}
.xc3_c00329{left:304.500000px;}
.x74_c00329{left:305.580000px;}
.x9d_c00329{left:310.500000px;}
.x43_c00329{left:312.420000px;}
.x7f_c00329{left:313.920000px;}
.x4d_c00329{left:315.000000px;}
.x87_c00329{left:316.920000px;}
.x10_c00329{left:318.000000px;}
.x6c_c00329{left:319.500000px;}
.x6_c00329{left:321.420000px;}
.x98_c00329{left:323.580000px;}
.x2a_c00329{left:325.500000px;}
.xa8_c00329{left:327.000000px;}
.xf2_c00329{left:328.500000px;}
.xfc_c00329{left:330.420000px;}
.x38_c00329{left:331.500000px;}
.x9e_c00329{left:333.000000px;}
.xe1_c00329{left:336.855000px;}
.x44_c00329{left:340.500000px;}
.x1d_c00329{left:342.000000px;}
.xdc_c00329{left:343.080000px;}
.x55_c00329{left:345.420000px;}
.xd5_c00329{left:347.580000px;}
.x5b_c00329{left:349.500000px;}
.xaf_c00329{left:351.000000px;}
.x11_c00329{left:352.920000px;}
.x4e_c00329{left:354.420000px;}
.xc4_c00329{left:355.500000px;}
.xfd_c00329{left:357.420000px;}
.x63_c00329{left:360.420000px;}
.x97_c00329{left:361.920000px;}
.xcd_c00329{left:364.080000px;}
.x7_c00329{left:366.000000px;}
.x6d_c00329{left:367.500000px;}
.x1e_c00329{left:369.000000px;}
.x2b_c00329{left:370.500000px;}
.xe2_c00329{left:372.000000px;}
.x88_c00329{left:373.500000px;}
.x99_c00329{left:374.580000px;}
.x77_c00329{left:378.000000px;}
.xed_c00329{left:379.500000px;}
.x80_c00329{left:382.500000px;}
.xe3_c00329{left:384.000000px;}
.x8_c00329{left:385.500000px;}
.xdd_c00329{left:387.420000px;}
.xd6_c00329{left:388.500000px;}
.x1f_c00329{left:390.000000px;}
.x2c_c00329{left:391.920000px;}
.xe8_c00329{left:394.500000px;}
.xa9_c00329{left:396.000000px;}
.x12_c00329{left:397.500000px;}
.x89_c00329{left:403.080000px;}
.xc8_c00329{left:405.000000px;}
.x1_c00329{left:406.500000px;}
.xb0_c00329{left:408.000000px;}
.x9f_c00329{left:409.500000px;}
.x90_c00329{left:410.580000px;}
.xf3_c00329{left:412.500000px;}
.x9_c00329{left:414.420000px;}
.x78_c00329{left:415.920000px;}
.xb9_c00329{left:417.000000px;}
.x2d_c00329{left:418.500000px;}
.xfe_c00329{left:421.500000px;}
.x64_c00329{left:424.920000px;}
.xee_c00329{left:426.000000px;}
.xa0_c00329{left:430.080000px;}
.xf9_c00329{left:432.000000px;}
.x45_c00329{left:433.500000px;}
.xf4_c00329{left:435.000000px;}
.x39_c00329{left:439.275000px;}
.x9a_c00329{left:440.580000px;}
.x5c_c00329{left:443.580000px;}
.xe9_c00329{left:445.500000px;}
.xa1_c00329{left:448.500000px;}
.xd1_c00329{left:450.000000px;}
.x4f_c00329{left:451.080000px;}
.x8a_c00329{left:453.000000px;}
.x13_c00329{left:456.000000px;}
.x9b_c00329{left:460.500000px;}
.x46_c00329{left:462.420000px;}
.xc5_c00329{left:463.500000px;}
.xce_c00329{left:465.000000px;}
.x2e_c00329{left:466.500000px;}
.x20_c00329{left:468.420000px;}
.x6e_c00329{left:469.920000px;}
.x5d_c00329{left:474.000000px;}
.x81_c00329{left:478.500000px;}
.xd7_c00329{left:480.000000px;}
.xa_c00329{left:481.500000px;}
.x50_c00329{left:482.580000px;}
.xb1_c00329{left:484.920000px;}
.x79_c00329{left:487.920000px;}
.x91_c00329{left:489.000000px;}
.x14_c00329{left:491.145000px;}
.xde_c00329{left:492.420000px;}
.x82_c00329{left:495.000000px;}
.xc2_c00329{left:496.920000px;}
.x65_c00329{left:499.080000px;}
.xbe_c00329{left:500.580000px;}
.x3a_c00329{left:504.000000px;}
.x6f_c00329{left:506.580000px;}
.x83_c00329{left:507.855000px;}
.x21_c00329{left:509.580000px;}
.xc9_c00329{left:511.500000px;}
.x8b_c00329{left:512.580000px;}
.x47_c00329{left:514.920000px;}
.xff_c00329{left:517.080000px;}
.x9c_c00329{left:518.775000px;}
.x2f_c00329{left:521.580000px;}
.xba_c00329{left:525.000000px;}
.x5e_c00329{left:526.500000px;}
.xb_c00329{left:528.000000px;}
.xa2_c00329{left:533.580000px;}
.x7a_c00329{left:535.080000px;}
.x56_c00329{left:536.580000px;}
.xea_c00329{left:538.500000px;}
.x30_c00329{left:540.420000px;}
.xaa_c00329{left:542.580000px;}
.x92_c00329{left:544.080000px;}
.xcf_c00329{left:546.000000px;}
.xf5_c00329{left:552.000000px;}
.x22_c00329{left:553.920000px;}
.x5f_c00329{left:556.500000px;}
.x66_c00329{left:558.000000px;}
.x8c_c00329{left:559.500000px;}
.x93_c00329{left:562.080000px;}
.xbb_c00329{left:564.420000px;}
.xdf_c00329{left:565.920000px;}
.x31_c00329{left:567.000000px;}
.xef_c00329{left:568.500000px;}
.xbf_c00329{left:569.580000px;}
.xca_c00329{left:571.080000px;}
.x23_c00329{left:573.420000px;}
.x70_c00329{left:575.580000px;}
.xa6_c00329{left:577.080000px;}
.x57_c00329{left:582.000000px;}
.xd8_c00329{left:585.000000px;}
.x3b_c00329{left:586.500000px;}
.x15_c00329{left:587.580000px;}
.xb2_c00329{left:591.000000px;}
.x7b_c00329{left:592.500000px;}
.x67_c00329{left:594.420000px;}
.xd2_c00329{left:595.920000px;}
.xe4_c00329{left:597.420000px;}
.xb5_c00329{left:598.500000px;}
.x94_c00329{left:600.000000px;}
.x51_c00329{left:602.775000px;}
.xfa_c00329{left:604.080000px;}
.x24_c00329{left:606.000000px;}
.xd9_c00329{left:607.500000px;}
.xc_c00329{left:609.000000px;}
.x48_c00329{left:610.080000px;}
.x60_c00329{left:615.000000px;}
.x3c_c00329{left:619.080000px;}
.x25_c00329{left:621.000000px;}
.x32_c00329{left:622.500000px;}
.xab_c00329{left:624.000000px;}
.xd_c00329{left:625.500000px;}
.x71_c00329{left:632.580000px;}
.x16_c00329{left:634.500000px;}
.x26_c00329{left:637.500000px;}
.x7c_c00329{left:640.920000px;}
.xb6_c00329{left:643.920000px;}
.x58_c00329{left:645.000000px;}
.x3d_c00329{left:647.145000px;}
.x100_c00329{left:651.000000px;}
.xc0_c00329{left:652.500000px;}
.xac_c00329{left:654.000000px;}
.xcb_c00329{left:656.580000px;}
.xda_c00329{left:658.920000px;}
.x17_c00329{left:660.000000px;}
.xfb_c00329{left:663.000000px;}
.x27_c00329{left:664.080000px;}
.x49_c00329{left:666.000000px;}
.x59_c00329{left:667.080000px;}
.xe5_c00329{left:670.080000px;}
.x68_c00329{left:672.420000px;}
.xbc_c00329{left:673.500000px;}
.x52_c00329{left:674.580000px;}
.x8d_c00329{left:677.580000px;}
.xeb_c00329{left:679.500000px;}
.xc6_c00329{left:685.080000px;}
.xf6_c00329{left:686.580000px;}
.x5a_c00329{left:690.420000px;}
.x7d_c00329{left:695.580000px;}
.x61_c00329{left:697.920000px;}
.x84_c00329{left:704.580000px;}
.xe_c00329{left:709.920000px;}
.xec_c00329{left:711.000000px;}
.x95_c00329{left:712.500000px;}
.x4a_c00329{left:715.500000px;}
.xb3_c00329{left:717.000000px;}
@media print{
.v0_c00329{vertical-align:0.000000pt;}
.v2_c00329{vertical-align:5.333333pt;}
.v1_c00329{vertical-align:16.000000pt;}
.ls0_c00329{letter-spacing:0.000000pt;}
.ws1_c00329{word-spacing:-7.195010pt;}
.ws0_c00329{word-spacing:-7.102721pt;}
.ws2_c00329{word-spacing:0.000000pt;}
.fs7_c00329{font-size:3.040000pt;}
.fs8_c00329{font-size:12.106667pt;}
.fs3_c00329{font-size:16.640000pt;}
.fs0_c00329{font-size:18.133333pt;}
.fs1_c00329{font-size:22.666667pt;}
.fs2_c00329{font-size:25.706667pt;}
.fs4_c00329{font-size:28.746667pt;}
.fs5_c00329{font-size:31.733333pt;}
.fs6_c00329{font-size:34.773333pt;}
.y0_c00329{bottom:0.000000pt;}
.yd8_c00329{bottom:222.640000pt;}
.yd9_c00329{bottom:223.600000pt;}
.yda_c00329{bottom:224.933333pt;}
.yd4_c00329{bottom:235.226667pt;}
.yd6_c00329{bottom:236.360000pt;}
.yd5_c00329{bottom:237.306667pt;}
.yd7_c00329{bottom:238.266667pt;}
.ycd_c00329{bottom:247.400000pt;}
.ycc_c00329{bottom:248.360000pt;}
.yd3_c00329{bottom:249.693333pt;}
.yd2_c00329{bottom:249.706667pt;}
.ycf_c00329{bottom:249.893333pt;}
.yce_c00329{bottom:250.266667pt;}
.yd0_c00329{bottom:250.640000pt;}
.yd1_c00329{bottom:251.600000pt;}
.yc7_c00329{bottom:261.306667pt;}
.yc6_c00329{bottom:261.893333pt;}
.ycb_c00329{bottom:262.066667pt;}
.yc5_c00329{bottom:262.640000pt;}
.yca_c00329{bottom:263.973333pt;}
.yc9_c00329{bottom:264.173333pt;}
.yc8_c00329{bottom:264.933333pt;}
.yc0_c00329{bottom:275.026667pt;}
.yc1_c00329{bottom:275.400000pt;}
.yc3_c00329{bottom:276.360000pt;}
.yc4_c00329{bottom:277.306667pt;}
.yc2_c00329{bottom:278.266667pt;}
.yb9_c00329{bottom:286.640000pt;}
.ybf_c00329{bottom:288.360000pt;}
.ybc_c00329{bottom:288.733333pt;}
.yba_c00329{bottom:290.266667pt;}
.ybb_c00329{bottom:290.640000pt;}
.ybe_c00329{bottom:290.840000pt;}
.ybd_c00329{bottom:291.600000pt;}
.yb2_c00329{bottom:299.973333pt;}
.yb4_c00329{bottom:302.066667pt;}
.yb8_c00329{bottom:302.266667pt;}
.yb0_c00329{bottom:302.640000pt;}
.yb3_c00329{bottom:303.026667pt;}
.yb7_c00329{bottom:303.226667pt;}
.yb1_c00329{bottom:303.600000pt;}
.yb6_c00329{bottom:303.973333pt;}
.yb5_c00329{bottom:304.933333pt;}
.yad_c00329{bottom:314.640000pt;}
.yaa_c00329{bottom:315.973333pt;}
.yae_c00329{bottom:316.360000pt;}
.yab_c00329{bottom:316.933333pt;}
.yac_c00329{bottom:317.306667pt;}
.yaf_c00329{bottom:318.266667pt;}
.ya7_c00329{bottom:327.400000pt;}
.ya5_c00329{bottom:328.360000pt;}
.ya8_c00329{bottom:328.733333pt;}
.ya6_c00329{bottom:329.306667pt;}
.ya9_c00329{bottom:330.266667pt;}
.ya4_c00329{bottom:332.173333pt;}
.ya2_c00329{bottom:355.026667pt;}
.ya3_c00329{bottom:357.106667pt;}
.y9c_c00329{bottom:357.693333pt;}
.y9d_c00329{bottom:357.893333pt;}
.ya1_c00329{bottom:358.066667pt;}
.y9f_c00329{bottom:358.640000pt;}
.y9e_c00329{bottom:359.026667pt;}
.ya0_c00329{bottom:359.973333pt;}
.y99_c00329{bottom:374.440000pt;}
.y96_c00329{bottom:375.026667pt;}
.y9b_c00329{bottom:375.226667pt;}
.y9a_c00329{bottom:375.973333pt;}
.y97_c00329{bottom:376.360000pt;}
.y98_c00329{bottom:376.373333pt;}
.y95_c00329{bottom:391.773333pt;}
.y93_c00329{bottom:392.360000pt;}
.y94_c00329{bottom:393.693333pt;}
.y92_c00329{bottom:408.160000pt;}
.y90_c00329{bottom:410.066667pt;}
.y91_c00329{bottom:410.640000pt;}
.y8e_c00329{bottom:411.026667pt;}
.y8f_c00329{bottom:412.373333pt;}
.y8d_c00329{bottom:426.440000pt;}
.y8b_c00329{bottom:427.400000pt;}
.y8c_c00329{bottom:427.773333pt;}
.y8a_c00329{bottom:428.360000pt;}
.y89_c00329{bottom:443.773333pt;}
.y87_c00329{bottom:444.733333pt;}
.y85_c00329{bottom:445.106667pt;}
.y88_c00329{bottom:445.693333pt;}
.y83_c00329{bottom:445.893333pt;}
.y82_c00329{bottom:446.066667pt;}
.y86_c00329{bottom:447.026667pt;}
.y84_c00329{bottom:447.040000pt;}
.y81_c00329{bottom:460.360000pt;}
.y7e_c00329{bottom:462.440000pt;}
.y80_c00329{bottom:463.400000pt;}
.y7f_c00329{bottom:464.373333pt;}
.y7a_c00329{bottom:478.440000pt;}
.y7b_c00329{bottom:479.773333pt;}
.y7c_c00329{bottom:481.306667pt;}
.y7d_c00329{bottom:481.693333pt;}
.y78_c00329{bottom:496.733333pt;}
.y76_c00329{bottom:497.106667pt;}
.y75_c00329{bottom:497.693333pt;}
.y79_c00329{bottom:498.640000pt;}
.y77_c00329{bottom:499.026667pt;}
.y74_c00329{bottom:514.440000pt;}
.y73_c00329{bottom:516.360000pt;}
.y6f_c00329{bottom:531.773333pt;}
.y71_c00329{bottom:531.973333pt;}
.y6e_c00329{bottom:533.693333pt;}
.y72_c00329{bottom:533.893333pt;}
.y70_c00329{bottom:534.640000pt;}
.y6a_c00329{bottom:549.106667pt;}
.y6c_c00329{bottom:551.026667pt;}
.y6d_c00329{bottom:551.973333pt;}
.y6b_c00329{bottom:552.373333pt;}
.y69_c00329{bottom:571.973333pt;}
.y68_c00329{bottom:573.306667pt;}
.y66_c00329{bottom:573.693333pt;}
.y65_c00329{bottom:574.640000pt;}
.y67_c00329{bottom:575.600000pt;}
.y64_c00329{bottom:590.640000pt;}
.y63_c00329{bottom:591.026667pt;}
.y62_c00329{bottom:591.400000pt;}
.y61_c00329{bottom:591.600000pt;}
.y60_c00329{bottom:593.306667pt;}
.y5e_c00329{bottom:613.106667pt;}
.y5d_c00329{bottom:614.066667pt;}
.y5c_c00329{bottom:614.640000pt;}
.y5b_c00329{bottom:615.026667pt;}
.y5f_c00329{bottom:616.560000pt;}
.y57_c00329{bottom:643.026667pt;}
.y5a_c00329{bottom:644.733333pt;}
.y58_c00329{bottom:647.026667pt;}
.y59_c00329{bottom:647.973333pt;}
.y53_c00329{bottom:662.440000pt;}
.y55_c00329{bottom:663.400000pt;}
.y52_c00329{bottom:664.360000pt;}
.y54_c00329{bottom:664.560000pt;}
.y56_c00329{bottom:665.306667pt;}
.y51_c00329{bottom:681.693333pt;}
.y4c_c00329{bottom:698.066667pt;}
.y4d_c00329{bottom:698.440000pt;}
.y50_c00329{bottom:699.973333pt;}
.y4e_c00329{bottom:700.360000pt;}
.y4f_c00329{bottom:700.560000pt;}
.y4b_c00329{bottom:713.693333pt;}
.y46_c00329{bottom:714.440000pt;}
.y4a_c00329{bottom:715.773333pt;}
.y45_c00329{bottom:716.560000pt;}
.y47_c00329{bottom:716.733333pt;}
.y48_c00329{bottom:717.693333pt;}
.y49_c00329{bottom:717.893333pt;}
.y43_c00329{bottom:733.106667pt;}
.y42_c00329{bottom:735.026667pt;}
.y44_c00329{bottom:735.226667pt;}
.y40_c00329{bottom:751.973333pt;}
.y41_c00329{bottom:752.360000pt;}
.y3b_c00329{bottom:768.560000pt;}
.y3d_c00329{bottom:769.106667pt;}
.y3c_c00329{bottom:769.693333pt;}
.y3f_c00329{bottom:769.893333pt;}
.y3e_c00329{bottom:771.026667pt;}
.y3a_c00329{bottom:785.106667pt;}
.y36_c00329{bottom:786.066667pt;}
.y38_c00329{bottom:786.440000pt;}
.y37_c00329{bottom:787.026667pt;}
.y39_c00329{bottom:788.360000pt;}
.y34_c00329{bottom:803.773333pt;}
.y31_c00329{bottom:804.360000pt;}
.y32_c00329{bottom:804.560000pt;}
.y35_c00329{bottom:805.306667pt;}
.y33_c00329{bottom:805.693333pt;}
.y30_c00329{bottom:819.026667pt;}
.y2b_c00329{bottom:819.773333pt;}
.y2a_c00329{bottom:820.160000pt;}
.y2f_c00329{bottom:820.360000pt;}
.y2e_c00329{bottom:821.106667pt;}
.y2c_c00329{bottom:823.026667pt;}
.y2d_c00329{bottom:823.973333pt;}
.y28_c00329{bottom:837.693333pt;}
.y29_c00329{bottom:838.440000pt;}
.y24_c00329{bottom:839.026667pt;}
.y26_c00329{bottom:839.226667pt;}
.y27_c00329{bottom:839.400000pt;}
.y25_c00329{bottom:840.360000pt;}
.y1f_c00329{bottom:854.440000pt;}
.y20_c00329{bottom:855.773333pt;}
.y21_c00329{bottom:857.693333pt;}
.y22_c00329{bottom:857.893333pt;}
.y23_c00329{bottom:858.640000pt;}
.y1c_c00329{bottom:872.733333pt;}
.y1e_c00329{bottom:873.106667pt;}
.y1d_c00329{bottom:875.026667pt;}
.y1b_c00329{bottom:875.973333pt;}
.y17_c00329{bottom:890.440000pt;}
.y1a_c00329{bottom:891.400000pt;}
.y16_c00329{bottom:891.973333pt;}
.y19_c00329{bottom:892.360000pt;}
.y18_c00329{bottom:892.560000pt;}
.y10_c00329{bottom:908.733333pt;}
.y12_c00329{bottom:909.106667pt;}
.yf_c00329{bottom:909.693333pt;}
.y11_c00329{bottom:909.893333pt;}
.y15_c00329{bottom:910.066667pt;}
.y14_c00329{bottom:910.640000pt;}
.y13_c00329{bottom:911.026667pt;}
.y8_c00329{bottom:923.026667pt;}
.yc_c00329{bottom:924.360000pt;}
.ye_c00329{bottom:925.106667pt;}
.yd_c00329{bottom:926.440000pt;}
.y9_c00329{bottom:927.026667pt;}
.ya_c00329{bottom:927.226667pt;}
.yb_c00329{bottom:927.973333pt;}
.y7_c00329{bottom:943.773333pt;}
.y3_c00329{bottom:944.360000pt;}
.y4_c00329{bottom:944.560000pt;}
.y6_c00329{bottom:944.733333pt;}
.y5_c00329{bottom:945.693333pt;}
.y2_c00329{bottom:977.306667pt;}
.y1_c00329{bottom:979.600000pt;}
.ha_c00329{height:3.739141pt;}
.hb_c00329{height:14.890964pt;}
.h4_c00329{height:20.466875pt;}
.h1_c00329{height:22.303646pt;}
.h2_c00329{height:27.879557pt;}
.h3_c00329{height:31.618698pt;}
.h5_c00329{height:35.357839pt;}
.h8_c00329{height:36.952031pt;}
.h6_c00329{height:39.031380pt;}
.h9_c00329{height:42.770521pt;}
.h7_c00329{height:47.618698pt;}
.h0_c00329{height:1186.666667pt;}
.w0_c00329{width:782.666667pt;}
.x0_c00329{left:0.000000pt;}
.x2_c00329{left:134.666667pt;}
.x3e_c00329{left:135.626667pt;}
.xa3_c00329{left:147.626667pt;}
.x33_c00329{left:148.960000pt;}
.x28_c00329{left:152.373333pt;}
.xb7_c00329{left:155.040000pt;}
.xf7_c00329{left:156.000000pt;}
.xbd_c00329{left:158.293333pt;}
.x69_c00329{left:159.626667pt;}
.x18_c00329{left:165.706667pt;}
.xf0_c00329{left:168.000000pt;}
.xe6_c00329{left:169.333333pt;}
.x3_c00329{left:172.000000pt;}
.xe0_c00329{left:173.333333pt;}
.x34_c00329{left:174.666667pt;}
.x3f_c00329{left:177.333333pt;}
.x6a_c00329{left:179.040000pt;}
.xa4_c00329{left:180.960000pt;}
.xcc_c00329{left:182.666667pt;}
.xb8_c00329{left:185.333333pt;}
.xf1_c00329{left:186.666667pt;}
.x19_c00329{left:188.000000pt;}
.x72_c00329{left:190.293333pt;}
.xad_c00329{left:192.373333pt;}
.x75_c00329{left:194.293333pt;}
.xb4_c00329{left:196.000000pt;}
.x35_c00329{left:197.333333pt;}
.x101_c00329{left:200.000000pt;}
.x40_c00329{left:205.333333pt;}
.x53_c00329{left:208.000000pt;}
.x76_c00329{left:209.333333pt;}
.xc7_c00329{left:210.666667pt;}
.xf_c00329{left:212.000000pt;}
.xd3_c00329{left:213.333333pt;}
.xae_c00329{left:216.373333pt;}
.x7e_c00329{left:217.333333pt;}
.x1a_c00329{left:218.666667pt;}
.xe7_c00329{left:219.626667pt;}
.x4b_c00329{left:221.706667pt;}
.x29_c00329{left:222.666667pt;}
.xa5_c00329{left:223.626667pt;}
.x8e_c00329{left:225.333333pt;}
.x62_c00329{left:226.666667pt;}
.xf8_c00329{left:229.333333pt;}
.x85_c00329{left:230.666667pt;}
.xdb_c00329{left:233.333333pt;}
.x41_c00329{left:236.000000pt;}
.x1b_c00329{left:237.706667pt;}
.xd4_c00329{left:238.666667pt;}
.x4_c00329{left:240.373333pt;}
.x6b_c00329{left:241.333333pt;}
.x4c_c00329{left:243.626667pt;}
.x36_c00329{left:245.333333pt;}
.x96_c00329{left:248.000000pt;}
.xc1_c00329{left:249.333333pt;}
.x73_c00329{left:251.040000pt;}
.x54_c00329{left:252.000000pt;}
.xd0_c00329{left:253.333333pt;}
.x37_c00329{left:255.040000pt;}
.xa7_c00329{left:258.666667pt;}
.x42_c00329{left:259.626667pt;}
.x1c_c00329{left:261.706667pt;}
.x5_c00329{left:264.960000pt;}
.x86_c00329{left:266.666667pt;}
.x8f_c00329{left:269.706667pt;}
.xc3_c00329{left:270.666667pt;}
.x74_c00329{left:271.626667pt;}
.x9d_c00329{left:276.000000pt;}
.x43_c00329{left:277.706667pt;}
.x7f_c00329{left:279.040000pt;}
.x4d_c00329{left:280.000000pt;}
.x87_c00329{left:281.706667pt;}
.x10_c00329{left:282.666667pt;}
.x6c_c00329{left:284.000000pt;}
.x6_c00329{left:285.706667pt;}
.x98_c00329{left:287.626667pt;}
.x2a_c00329{left:289.333333pt;}
.xa8_c00329{left:290.666667pt;}
.xf2_c00329{left:292.000000pt;}
.xfc_c00329{left:293.706667pt;}
.x38_c00329{left:294.666667pt;}
.x9e_c00329{left:296.000000pt;}
.xe1_c00329{left:299.426667pt;}
.x44_c00329{left:302.666667pt;}
.x1d_c00329{left:304.000000pt;}
.xdc_c00329{left:304.960000pt;}
.x55_c00329{left:307.040000pt;}
.xd5_c00329{left:308.960000pt;}
.x5b_c00329{left:310.666667pt;}
.xaf_c00329{left:312.000000pt;}
.x11_c00329{left:313.706667pt;}
.x4e_c00329{left:315.040000pt;}
.xc4_c00329{left:316.000000pt;}
.xfd_c00329{left:317.706667pt;}
.x63_c00329{left:320.373333pt;}
.x97_c00329{left:321.706667pt;}
.xcd_c00329{left:323.626667pt;}
.x7_c00329{left:325.333333pt;}
.x6d_c00329{left:326.666667pt;}
.x1e_c00329{left:328.000000pt;}
.x2b_c00329{left:329.333333pt;}
.xe2_c00329{left:330.666667pt;}
.x88_c00329{left:332.000000pt;}
.x99_c00329{left:332.960000pt;}
.x77_c00329{left:336.000000pt;}
.xed_c00329{left:337.333333pt;}
.x80_c00329{left:340.000000pt;}
.xe3_c00329{left:341.333333pt;}
.x8_c00329{left:342.666667pt;}
.xdd_c00329{left:344.373333pt;}
.xd6_c00329{left:345.333333pt;}
.x1f_c00329{left:346.666667pt;}
.x2c_c00329{left:348.373333pt;}
.xe8_c00329{left:350.666667pt;}
.xa9_c00329{left:352.000000pt;}
.x12_c00329{left:353.333333pt;}
.x89_c00329{left:358.293333pt;}
.xc8_c00329{left:360.000000pt;}
.x1_c00329{left:361.333333pt;}
.xb0_c00329{left:362.666667pt;}
.x9f_c00329{left:364.000000pt;}
.x90_c00329{left:364.960000pt;}
.xf3_c00329{left:366.666667pt;}
.x9_c00329{left:368.373333pt;}
.x78_c00329{left:369.706667pt;}
.xb9_c00329{left:370.666667pt;}
.x2d_c00329{left:372.000000pt;}
.xfe_c00329{left:374.666667pt;}
.x64_c00329{left:377.706667pt;}
.xee_c00329{left:378.666667pt;}
.xa0_c00329{left:382.293333pt;}
.xf9_c00329{left:384.000000pt;}
.x45_c00329{left:385.333333pt;}
.xf4_c00329{left:386.666667pt;}
.x39_c00329{left:390.466667pt;}
.x9a_c00329{left:391.626667pt;}
.x5c_c00329{left:394.293333pt;}
.xe9_c00329{left:396.000000pt;}
.xa1_c00329{left:398.666667pt;}
.xd1_c00329{left:400.000000pt;}
.x4f_c00329{left:400.960000pt;}
.x8a_c00329{left:402.666667pt;}
.x13_c00329{left:405.333333pt;}
.x9b_c00329{left:409.333333pt;}
.x46_c00329{left:411.040000pt;}
.xc5_c00329{left:412.000000pt;}
.xce_c00329{left:413.333333pt;}
.x2e_c00329{left:414.666667pt;}
.x20_c00329{left:416.373333pt;}
.x6e_c00329{left:417.706667pt;}
.x5d_c00329{left:421.333333pt;}
.x81_c00329{left:425.333333pt;}
.xd7_c00329{left:426.666667pt;}
.xa_c00329{left:428.000000pt;}
.x50_c00329{left:428.960000pt;}
.xb1_c00329{left:431.040000pt;}
.x79_c00329{left:433.706667pt;}
.x91_c00329{left:434.666667pt;}
.x14_c00329{left:436.573333pt;}
.xde_c00329{left:437.706667pt;}
.x82_c00329{left:440.000000pt;}
.xc2_c00329{left:441.706667pt;}
.x65_c00329{left:443.626667pt;}
.xbe_c00329{left:444.960000pt;}
.x3a_c00329{left:448.000000pt;}
.x6f_c00329{left:450.293333pt;}
.x83_c00329{left:451.426667pt;}
.x21_c00329{left:452.960000pt;}
.xc9_c00329{left:454.666667pt;}
.x8b_c00329{left:455.626667pt;}
.x47_c00329{left:457.706667pt;}
.xff_c00329{left:459.626667pt;}
.x9c_c00329{left:461.133333pt;}
.x2f_c00329{left:463.626667pt;}
.xba_c00329{left:466.666667pt;}
.x5e_c00329{left:468.000000pt;}
.xb_c00329{left:469.333333pt;}
.xa2_c00329{left:474.293333pt;}
.x7a_c00329{left:475.626667pt;}
.x56_c00329{left:476.960000pt;}
.xea_c00329{left:478.666667pt;}
.x30_c00329{left:480.373333pt;}
.xaa_c00329{left:482.293333pt;}
.x92_c00329{left:483.626667pt;}
.xcf_c00329{left:485.333333pt;}
.xf5_c00329{left:490.666667pt;}
.x22_c00329{left:492.373333pt;}
.x5f_c00329{left:494.666667pt;}
.x66_c00329{left:496.000000pt;}
.x8c_c00329{left:497.333333pt;}
.x93_c00329{left:499.626667pt;}
.xbb_c00329{left:501.706667pt;}
.xdf_c00329{left:503.040000pt;}
.x31_c00329{left:504.000000pt;}
.xef_c00329{left:505.333333pt;}
.xbf_c00329{left:506.293333pt;}
.xca_c00329{left:507.626667pt;}
.x23_c00329{left:509.706667pt;}
.x70_c00329{left:511.626667pt;}
.xa6_c00329{left:512.960000pt;}
.x57_c00329{left:517.333333pt;}
.xd8_c00329{left:520.000000pt;}
.x3b_c00329{left:521.333333pt;}
.x15_c00329{left:522.293333pt;}
.xb2_c00329{left:525.333333pt;}
.x7b_c00329{left:526.666667pt;}
.x67_c00329{left:528.373333pt;}
.xd2_c00329{left:529.706667pt;}
.xe4_c00329{left:531.040000pt;}
.xb5_c00329{left:532.000000pt;}
.x94_c00329{left:533.333333pt;}
.x51_c00329{left:535.800000pt;}
.xfa_c00329{left:536.960000pt;}
.x24_c00329{left:538.666667pt;}
.xd9_c00329{left:540.000000pt;}
.xc_c00329{left:541.333333pt;}
.x48_c00329{left:542.293333pt;}
.x60_c00329{left:546.666667pt;}
.x3c_c00329{left:550.293333pt;}
.x25_c00329{left:552.000000pt;}
.x32_c00329{left:553.333333pt;}
.xab_c00329{left:554.666667pt;}
.xd_c00329{left:556.000000pt;}
.x71_c00329{left:562.293333pt;}
.x16_c00329{left:564.000000pt;}
.x26_c00329{left:566.666667pt;}
.x7c_c00329{left:569.706667pt;}
.xb6_c00329{left:572.373333pt;}
.x58_c00329{left:573.333333pt;}
.x3d_c00329{left:575.240000pt;}
.x100_c00329{left:578.666667pt;}
.xc0_c00329{left:580.000000pt;}
.xac_c00329{left:581.333333pt;}
.xcb_c00329{left:583.626667pt;}
.xda_c00329{left:585.706667pt;}
.x17_c00329{left:586.666667pt;}
.xfb_c00329{left:589.333333pt;}
.x27_c00329{left:590.293333pt;}
.x49_c00329{left:592.000000pt;}
.x59_c00329{left:592.960000pt;}
.xe5_c00329{left:595.626667pt;}
.x68_c00329{left:597.706667pt;}
.xbc_c00329{left:598.666667pt;}
.x52_c00329{left:599.626667pt;}
.x8d_c00329{left:602.293333pt;}
.xeb_c00329{left:604.000000pt;}
.xc6_c00329{left:608.960000pt;}
.xf6_c00329{left:610.293333pt;}
.x5a_c00329{left:613.706667pt;}
.x7d_c00329{left:618.293333pt;}
.x61_c00329{left:620.373333pt;}
.x84_c00329{left:626.293333pt;}
.xe_c00329{left:631.040000pt;}
.xec_c00329{left:632.000000pt;}
.x95_c00329{left:633.333333pt;}
.x4a_c00329{left:636.000000pt;}
.xb3_c00329{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a1bbbdaf6cc5a132218afc50.woff2')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md3_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);}
.md5_c00330{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.mc5_c00330{transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);}
.m25_c00330{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m89_c00330{transform:matrix(0.356723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356723,0.000000,0.000000,0.250000,0,0);}
.m6b_c00330{transform:matrix(0.357607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357607,0.000000,0.000000,0.250000,0,0);}
.me1_c00330{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m61_c00330{transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);}
.m2a_c00330{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.md8_c00330{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m1c_c00330{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m60_c00330{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m3e_c00330{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m77_c00330{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.mbb_c00330{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m71_c00330{transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);}
.mff_c00330{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m4f_c00330{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m3d_c00330{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mb5_c00330{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mf9_c00330{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.mda_c00330{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m98_c00330{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.ma2_c00330{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m49_c00330{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m48_c00330{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m7d_c00330{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.mc8_c00330{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m50_c00330{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.ma9_c00330{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m19_c00330{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.mcd_c00330{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mde_c00330{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.md7_c00330{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.mb2_c00330{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m97_c00330{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m94_c00330{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m6a_c00330{transform:matrix(0.410788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410788,0.000000,0.000000,0.250000,0,0);}
.me5_c00330{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.ma5_c00330{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mb8_c00330{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m6f_c00330{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.m20_c00330{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m7f_c00330{transform:matrix(0.414938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414938,0.000000,0.000000,0.250000,0,0);}
.mb4_c00330{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m47_c00330{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m3a_c00330{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.mdf_c00330{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mcc_c00330{transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);}
.mee_c00330{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m11_c00330{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m2f_c00330{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m46_c00330{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m6_c00330{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m9_c00330{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m59_c00330{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m84_c00330{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m26_c00330{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m45_c00330{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mfb_c00330{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m5a_c00330{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.mc6_c00330{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mf3_c00330{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.me4_c00330{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m37_c00330{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.mdd_c00330{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m85_c00330{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m9a_c00330{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.mdb_c00330{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mdc_c00330{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m7b_c00330{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m4a_c00330{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mec_c00330{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.mea_c00330{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m9e_c00330{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m35_c00330{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.m99_c00330{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m102_c00330{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m103_c00330{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.md4_c00330{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.mac_c00330{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m4d_c00330{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mc1_c00330{transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);}
.m29_c00330{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m9f_c00330{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.mca_c00330{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m68_c00330{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.maf_c00330{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.maa_c00330{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m1_c00330{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m31_c00330{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m106_c00330{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.mf_c00330{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mf7_c00330{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m9c_c00330{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.mb6_c00330{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m53_c00330{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m36_c00330{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.m42_c00330{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.ma8_c00330{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m5d_c00330{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m38_c00330{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.me2_c00330{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.md6_c00330{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m75_c00330{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m4_c00330{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m2c_c00330{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m63_c00330{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.mf5_c00330{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m5c_c00330{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.me9_c00330{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m6d_c00330{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.ma0_c00330{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.me_c00330{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.me6_c00330{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mfe_c00330{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.me3_c00330{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m1a_c00330{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_c00330{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mf6_c00330{transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);}
.mc9_c00330{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.mbe_c00330{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mbf_c00330{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.meb_c00330{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m30_c00330{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m2_c00330{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m8c_c00330{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.md_c00330{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m83_c00330{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mc4_c00330{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m4e_c00330{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m3c_c00330{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m5_c00330{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.mcf_c00330{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.me8_c00330{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m64_c00330{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.mab_c00330{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m13_c00330{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m91_c00330{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m6e_c00330{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.m62_c00330{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);}
.m70_c00330{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.mc2_c00330{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mcb_c00330{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.ma7_c00330{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m92_c00330{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mc3_c00330{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.mb3_c00330{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m34_c00330{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m1f_c00330{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m24_c00330{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m78_c00330{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m22_c00330{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m1b_c00330{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mb_c00330{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m76_c00330{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m81_c00330{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.med_c00330{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m6c_c00330{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m39_c00330{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m4c_c00330{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.ma6_c00330{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m9b_c00330{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m5f_c00330{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.mb7_c00330{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m27_c00330{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mf4_c00330{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m51_c00330{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m2b_c00330{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mce_c00330{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m65_c00330{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.md9_c00330{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m4b_c00330{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m96_c00330{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m8a_c00330{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.md0_c00330{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.ma3_c00330{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.mef_c00330{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m32_c00330{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mfd_c00330{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m101_c00330{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mb0_c00330{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.ma4_c00330{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m66_c00330{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.mf1_c00330{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m105_c00330{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.mc0_c00330{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);}
.mfa_c00330{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m95_c00330{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m69_c00330{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.md1_c00330{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m8e_c00330{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m93_c00330{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m7c_c00330{transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);}
.m54_c00330{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);}
.m9d_c00330{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m82_c00330{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.mba_c00330{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m40_c00330{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m104_c00330{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.mf8_c00330{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m16_c00330{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m43_c00330{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m2d_c00330{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m8b_c00330{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m56_c00330{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);}
.m21_c00330{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m5b_c00330{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m41_c00330{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m12_c00330{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.m28_c00330{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m15_c00330{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.mc_c00330{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.me7_c00330{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.m44_c00330{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m23_c00330{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m8d_c00330{transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);}
.mbd_c00330{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.m86_c00330{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mb1_c00330{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m0_c00330{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m8_c00330{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m18_c00330{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m74_c00330{transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);}
.mf2_c00330{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m7_c00330{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m1d_c00330{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.m58_c00330{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.me0_c00330{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.ma1_c00330{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_c00330{transform:matrix(0.628235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628235,0.000000,0.000000,0.250000,0,0);}
.mf0_c00330{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m33_c00330{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mc7_c00330{transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);}
.m87_c00330{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m55_c00330{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m10_c00330{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m3_c00330{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m72_c00330{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m90_c00330{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m67_c00330{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.m73_c00330{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m5e_c00330{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m17_c00330{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m79_c00330{transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);}
.m7e_c00330{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.md2_c00330{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m7a_c00330{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.mbc_c00330{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mb9_c00330{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m3f_c00330{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m1e_c00330{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m107_c00330{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m2e_c00330{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m14_c00330{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m3b_c00330{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mae_c00330{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m100_c00330{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.mad_c00330{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.ma_c00330{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mfc_c00330{transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);}
.m52_c00330{transform:matrix(0.899840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.899840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.899840,0.000000,0.000000,0.250000,0,0);}
.m57_c00330{transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);}
.m80_c00330{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,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;}
}
.ws1_c00330{word-spacing:-3.626154px;}
.ws2_c00330{word-spacing:0.000000px;}
.ws0_c00330{word-spacing:1.686058px;}
.fc0_c00330{color:transparent;}
.fs7_c00330{font-size:3.420000px;}
.fs6_c00330{font-size:13.620000px;}
.fs2_c00330{font-size:18.720000px;}
.fs0_c00330{font-size:20.400000px;}
.fs4_c00330{font-size:25.500000px;}
.fs1_c00330{font-size:28.920000px;}
.fs5_c00330{font-size:32.340000px;}
.fs3_c00330{font-size:35.700000px;}
.fs8_c00330{font-size:39.120000px;}
.y0_c00330{bottom:0.000000px;}
.ye1_c00330{bottom:252.405000px;}
.yde_c00330{bottom:252.825000px;}
.ydf_c00330{bottom:253.245000px;}
.ydd_c00330{bottom:253.905000px;}
.ye2_c00330{bottom:254.970000px;}
.ydc_c00330{bottom:255.405000px;}
.ye0_c00330{bottom:255.630000px;}
.yda_c00330{bottom:270.405000px;}
.ydb_c00330{bottom:271.905000px;}
.yd8_c00330{bottom:272.745000px;}
.yd6_c00330{bottom:273.405000px;}
.yd7_c00330{bottom:273.630000px;}
.yd9_c00330{bottom:274.905000px;}
.yd1_c00330{bottom:292.245000px;}
.yd5_c00330{bottom:293.745000px;}
.yd2_c00330{bottom:294.405000px;}
.yd3_c00330{bottom:294.630000px;}
.yd4_c00330{bottom:295.905000px;}
.yd0_c00330{bottom:310.905000px;}
.ycd_c00330{bottom:312.825000px;}
.yce_c00330{bottom:313.245000px;}
.ycc_c00330{bottom:313.905000px;}
.ycf_c00330{bottom:315.405000px;}
.yc7_c00330{bottom:330.405000px;}
.yc8_c00330{bottom:332.745000px;}
.yc6_c00330{bottom:333.405000px;}
.yca_c00330{bottom:333.630000px;}
.ycb_c00330{bottom:333.825000px;}
.yc9_c00330{bottom:334.905000px;}
.yc3_c00330{bottom:349.905000px;}
.yc1_c00330{bottom:350.745000px;}
.yc4_c00330{bottom:352.245000px;}
.yc0_c00330{bottom:352.905000px;}
.yc2_c00330{bottom:354.405000px;}
.yc5_c00330{bottom:355.470000px;}
.ybc_c00330{bottom:369.405000px;}
.ybd_c00330{bottom:371.745000px;}
.yba_c00330{bottom:372.405000px;}
.ybf_c00330{bottom:372.825000px;}
.yb9_c00330{bottom:373.470000px;}
.ybb_c00330{bottom:373.905000px;}
.ybe_c00330{bottom:374.970000px;}
.yb6_c00330{bottom:389.970000px;}
.yb7_c00330{bottom:391.245000px;}
.yb8_c00330{bottom:392.130000px;}
.yb4_c00330{bottom:393.405000px;}
.yb5_c00330{bottom:394.470000px;}
.yb2_c00330{bottom:409.905000px;}
.yb1_c00330{bottom:410.745000px;}
.yb0_c00330{bottom:412.905000px;}
.yb3_c00330{bottom:413.130000px;}
.yaa_c00330{bottom:428.745000px;}
.yad_c00330{bottom:429.405000px;}
.yab_c00330{bottom:430.245000px;}
.yae_c00330{bottom:430.470000px;}
.yaf_c00330{bottom:431.325000px;}
.yac_c00330{bottom:432.405000px;}
.ya8_c00330{bottom:449.745000px;}
.ya9_c00330{bottom:451.245000px;}
.ya7_c00330{bottom:451.905000px;}
.ya5_c00330{bottom:468.405000px;}
.ya3_c00330{bottom:469.245000px;}
.ya4_c00330{bottom:470.745000px;}
.ya6_c00330{bottom:471.405000px;}
.ya2_c00330{bottom:472.905000px;}
.ya0_c00330{bottom:488.745000px;}
.y9f_c00330{bottom:490.245000px;}
.y9c_c00330{bottom:490.470000px;}
.y9d_c00330{bottom:490.905000px;}
.y9e_c00330{bottom:491.325000px;}
.ya1_c00330{bottom:492.405000px;}
.y9a_c00330{bottom:508.680000px;}
.y98_c00330{bottom:509.745000px;}
.y99_c00330{bottom:510.825000px;}
.y9b_c00330{bottom:511.470000px;}
.y97_c00330{bottom:511.905000px;}
.y96_c00330{bottom:529.245000px;}
.y94_c00330{bottom:531.405000px;}
.y95_c00330{bottom:532.470000px;}
.y91_c00330{bottom:548.325000px;}
.y8f_c00330{bottom:548.745000px;}
.y8e_c00330{bottom:549.825000px;}
.y90_c00330{bottom:550.470000px;}
.y8d_c00330{bottom:550.905000px;}
.y92_c00330{bottom:551.970000px;}
.y93_c00330{bottom:552.405000px;}
.y89_c00330{bottom:568.245000px;}
.y87_c00330{bottom:569.130000px;}
.y8b_c00330{bottom:569.745000px;}
.y88_c00330{bottom:570.405000px;}
.y8c_c00330{bottom:570.630000px;}
.y8a_c00330{bottom:571.905000px;}
.y84_c00330{bottom:589.245000px;}
.y83_c00330{bottom:589.905000px;}
.y86_c00330{bottom:590.130000px;}
.y85_c00330{bottom:591.405000px;}
.y82_c00330{bottom:608.745000px;}
.y7f_c00330{bottom:609.405000px;}
.y81_c00330{bottom:610.470000px;}
.y80_c00330{bottom:610.905000px;}
.y7d_c00330{bottom:628.245000px;}
.y7c_c00330{bottom:629.970000px;}
.y7b_c00330{bottom:630.405000px;}
.y7e_c00330{bottom:630.630000px;}
.y78_c00330{bottom:647.325000px;}
.y7a_c00330{bottom:647.745000px;}
.y76_c00330{bottom:648.405000px;}
.y79_c00330{bottom:649.470000px;}
.y77_c00330{bottom:649.905000px;}
.y71_c00330{bottom:667.245000px;}
.y70_c00330{bottom:668.325000px;}
.y75_c00330{bottom:668.745000px;}
.y72_c00330{bottom:669.405000px;}
.y74_c00330{bottom:670.470000px;}
.y73_c00330{bottom:670.905000px;}
.y6f_c00330{bottom:688.245000px;}
.y6d_c00330{bottom:688.905000px;}
.y6e_c00330{bottom:690.405000px;}
.y68_c00330{bottom:706.245000px;}
.y67_c00330{bottom:707.325000px;}
.y6b_c00330{bottom:707.745000px;}
.y66_c00330{bottom:708.405000px;}
.y6c_c00330{bottom:708.630000px;}
.y6a_c00330{bottom:708.825000px;}
.y69_c00330{bottom:709.905000px;}
.y61_c00330{bottom:725.745000px;}
.y65_c00330{bottom:727.245000px;}
.y60_c00330{bottom:727.905000px;}
.y62_c00330{bottom:728.970000px;}
.y63_c00330{bottom:729.405000px;}
.y64_c00330{bottom:730.470000px;}
.y5d_c00330{bottom:747.405000px;}
.y5f_c00330{bottom:748.470000px;}
.y5e_c00330{bottom:748.905000px;}
.y5b_c00330{bottom:766.245000px;}
.y58_c00330{bottom:766.470000px;}
.y5c_c00330{bottom:767.130000px;}
.y59_c00330{bottom:768.405000px;}
.y5a_c00330{bottom:769.470000px;}
.y54_c00330{bottom:785.745000px;}
.y57_c00330{bottom:787.470000px;}
.y56_c00330{bottom:787.905000px;}
.y55_c00330{bottom:787.920000px;}
.y4d_c00330{bottom:811.470000px;}
.y53_c00330{bottom:812.325000px;}
.y51_c00330{bottom:813.405000px;}
.y50_c00330{bottom:813.630000px;}
.y4e_c00330{bottom:814.470000px;}
.y52_c00330{bottom:814.695000px;}
.y4f_c00330{bottom:815.550000px;}
.y4c_c00330{bottom:825.825000px;}
.y4b_c00330{bottom:826.905000px;}
.y44_c00330{bottom:841.050000px;}
.y46_c00330{bottom:842.325000px;}
.y45_c00330{bottom:842.970000px;}
.y49_c00330{bottom:843.405000px;}
.y47_c00330{bottom:844.470000px;}
.y4a_c00330{bottom:844.695000px;}
.y48_c00330{bottom:845.550000px;}
.y43_c00330{bottom:855.825000px;}
.y42_c00330{bottom:857.970000px;}
.y41_c00330{bottom:858.195000px;}
.y39_c00330{bottom:871.050000px;}
.y3c_c00330{bottom:871.470000px;}
.y3b_c00330{bottom:871.905000px;}
.y40_c00330{bottom:872.325000px;}
.y3a_c00330{bottom:872.970000px;}
.y3f_c00330{bottom:873.405000px;}
.y3d_c00330{bottom:874.470000px;}
.y3e_c00330{bottom:875.550000px;}
.y38_c00330{bottom:885.825000px;}
.y35_c00330{bottom:886.905000px;}
.y34_c00330{bottom:887.130000px;}
.y37_c00330{bottom:887.970000px;}
.y36_c00330{bottom:888.195000px;}
.y30_c00330{bottom:901.905000px;}
.y2f_c00330{bottom:902.130000px;}
.y31_c00330{bottom:902.970000px;}
.y33_c00330{bottom:903.630000px;}
.y32_c00330{bottom:904.050000px;}
.y2c_c00330{bottom:923.745000px;}
.y2d_c00330{bottom:925.245000px;}
.y2b_c00330{bottom:925.905000px;}
.y2e_c00330{bottom:927.405000px;}
.y28_c00330{bottom:943.245000px;}
.y2a_c00330{bottom:944.745000px;}
.y29_c00330{bottom:945.405000px;}
.y25_c00330{bottom:962.745000px;}
.y24_c00330{bottom:964.905000px;}
.y23_c00330{bottom:965.130000px;}
.y26_c00330{bottom:966.405000px;}
.y27_c00330{bottom:967.470000px;}
.y1f_c00330{bottom:982.245000px;}
.y1d_c00330{bottom:983.325000px;}
.y21_c00330{bottom:983.745000px;}
.y1c_c00330{bottom:984.405000px;}
.y1e_c00330{bottom:984.630000px;}
.y22_c00330{bottom:984.825000px;}
.y20_c00330{bottom:985.905000px;}
.y15_c00330{bottom:1001.325000px;}
.y16_c00330{bottom:1001.745000px;}
.y18_c00330{bottom:1001.970000px;}
.y1a_c00330{bottom:1003.245000px;}
.y17_c00330{bottom:1003.905000px;}
.y19_c00330{bottom:1004.130000px;}
.y14_c00330{bottom:1004.970000px;}
.y1b_c00330{bottom:1005.405000px;}
.y11_c00330{bottom:1020.405000px;}
.ye_c00330{bottom:1021.245000px;}
.y12_c00330{bottom:1022.745000px;}
.yf_c00330{bottom:1023.405000px;}
.y10_c00330{bottom:1024.470000px;}
.y13_c00330{bottom:1024.905000px;}
.y8_c00330{bottom:1041.825000px;}
.ya_c00330{bottom:1042.245000px;}
.yd_c00330{bottom:1042.470000px;}
.y9_c00330{bottom:1043.970000px;}
.yb_c00330{bottom:1044.405000px;}
.yc_c00330{bottom:1044.630000px;}
.y6_c00330{bottom:1060.470000px;}
.y5_c00330{bottom:1061.745000px;}
.y4_c00330{bottom:1062.630000px;}
.y3_c00330{bottom:1063.905000px;}
.y7_c00330{bottom:1064.130000px;}
.y2_c00330{bottom:1099.905000px;}
.y1_c00330{bottom:1102.050000px;}
.h8_c00330{height:4.206533px;}
.h7_c00330{height:16.752334px;}
.h3_c00330{height:23.025234px;}
.h1_c00330{height:25.091602px;}
.h5_c00330{height:31.364502px;}
.h2_c00330{height:35.571035px;}
.h6_c00330{height:39.777568px;}
.h4_c00330{height:43.910303px;}
.h9_c00330{height:48.116836px;}
.h0_c00330{height:1335.000000px;}
.w0_c00330{width:880.500000px;}
.x0_c00330{left:0.000000px;}
.x3_c00330{left:151.500000px;}
.x4a_c00330{left:152.580000px;}
.xc3_c00330{left:154.500000px;}
.xf8_c00330{left:156.000000px;}
.x108_c00330{left:157.080000px;}
.x65_c00330{left:163.500000px;}
.x56_c00330{left:166.080000px;}
.x76_c00330{left:167.580000px;}
.xe4_c00330{left:170.580000px;}
.xfc_c00330{left:172.500000px;}
.x2b_c00330{left:178.500000px;}
.xaf_c00330{left:180.000000px;}
.xcd_c00330{left:181.500000px;}
.x57_c00330{left:183.000000px;}
.x67_c00330{left:184.080000px;}
.xff_c00330{left:189.000000px;}
.xa1_c00330{left:192.420000px;}
.x81_c00330{left:193.500000px;}
.x4_c00330{left:195.000000px;}
.xf3_c00330{left:196.080000px;}
.x40_c00330{left:197.580000px;}
.x88_c00330{left:201.000000px;}
.x1d_c00330{left:202.500000px;}
.x92_c00330{left:207.000000px;}
.xb0_c00330{left:208.080000px;}
.xd3_c00330{left:210.420000px;}
.xa8_c00330{left:211.920000px;}
.x5_c00330{left:213.000000px;}
.xb5_c00330{left:214.500000px;}
.x89_c00330{left:216.000000px;}
.xbf_c00330{left:217.920000px;}
.x1e_c00330{left:219.000000px;}
.xa2_c00330{left:220.920000px;}
.x51_c00330{left:223.500000px;}
.x5c_c00330{left:224.580000px;}
.x66_c00330{left:225.855000px;}
.x6_c00330{left:227.145000px;}
.x68_c00330{left:228.420000px;}
.x104_c00330{left:232.920000px;}
.x10_c00330{left:234.000000px;}
.x36_c00330{left:237.000000px;}
.x109_c00330{left:238.500000px;}
.x100_c00330{left:239.580000px;}
.x5d_c00330{left:243.000000px;}
.x5a_c00330{left:245.145000px;}
.x82_c00330{left:247.080000px;}
.x6f_c00330{left:249.000000px;}
.xbb_c00330{left:251.580000px;}
.xea_c00330{left:253.500000px;}
.x10a_c00330{left:254.580000px;}
.x52_c00330{left:258.420000px;}
.x93_c00330{left:259.500000px;}
.xce_c00330{left:261.420000px;}
.xd4_c00330{left:262.500000px;}
.x11_c00330{left:265.500000px;}
.x4b_c00330{left:267.000000px;}
.xa3_c00330{left:268.500000px;}
.xc4_c00330{left:270.420000px;}
.x1f_c00330{left:271.500000px;}
.x41_c00330{left:272.580000px;}
.x8a_c00330{left:275.580000px;}
.x5e_c00330{left:276.645000px;}
.xf9_c00330{left:277.920000px;}
.xf0_c00330{left:280.500000px;}
.x77_c00330{left:282.000000px;}
.x37_c00330{left:286.500000px;}
.x53_c00330{left:288.000000px;}
.x2c_c00330{left:291.000000px;}
.x20_c00330{left:292.500000px;}
.xd9_c00330{left:294.000000px;}
.xec_c00330{left:295.080000px;}
.x5b_c00330{left:298.500000px;}
.x38_c00330{left:299.580000px;}
.x12_c00330{left:301.080000px;}
.x7_c00330{left:303.420000px;}
.x8b_c00330{left:306.420000px;}
.xf4_c00330{left:308.580000px;}
.xa9_c00330{left:310.500000px;}
.xed_c00330{left:313.920000px;}
.x78_c00330{left:315.420000px;}
.xc0_c00330{left:316.920000px;}
.xf1_c00330{left:318.000000px;}
.x21_c00330{left:319.500000px;}
.x58_c00330{left:322.500000px;}
.x83_c00330{left:327.000000px;}
.xe5_c00330{left:328.500000px;}
.x94_c00330{left:330.000000px;}
.x2d_c00330{left:333.000000px;}
.x70_c00330{left:334.080000px;}
.xb6_c00330{left:335.580000px;}
.xe2_c00330{left:337.500000px;}
.x39_c00330{left:340.080000px;}
.xfa_c00330{left:341.580000px;}
.x69_c00330{left:345.000000px;}
.x95_c00330{left:348.000000px;}
.xa4_c00330{left:349.920000px;}
.x79_c00330{left:351.000000px;}
.x42_c00330{left:352.500000px;}
.x2e_c00330{left:354.420000px;}
.xb7_c00330{left:357.420000px;}
.x8_c00330{left:360.000000px;}
.xfd_c00330{left:361.500000px;}
.x5f_c00330{left:362.580000px;}
.x13_c00330{left:366.000000px;}
.x10c_c00330{left:369.000000px;}
.xf5_c00330{left:370.920000px;}
.x84_c00330{left:372.420000px;}
.x110_c00330{left:373.500000px;}
.x22_c00330{left:375.000000px;}
.x9_c00330{left:376.500000px;}
.xa5_c00330{left:377.580000px;}
.x71_c00330{left:379.500000px;}
.xda_c00330{left:380.580000px;}
.xeb_c00330{left:385.920000px;}
.xb8_c00330{left:387.000000px;}
.x8c_c00330{left:388.080000px;}
.xcf_c00330{left:390.000000px;}
.x23_c00330{left:391.500000px;}
.x3a_c00330{left:394.080000px;}
.x96_c00330{left:396.000000px;}
.xbc_c00330{left:397.920000px;}
.xf6_c00330{left:399.000000px;}
.x1_c00330{left:400.500000px;}
.xc5_c00330{left:402.000000px;}
.x60_c00330{left:403.500000px;}
.x2f_c00330{left:405.420000px;}
.x24_c00330{left:406.500000px;}
.xd5_c00330{left:408.000000px;}
.x3b_c00330{left:414.420000px;}
.xee_c00330{left:415.500000px;}
.xc1_c00330{left:418.080000px;}
.xa_c00330{left:420.000000px;}
.x9a_c00330{left:424.920000px;}
.x10d_c00330{left:426.420000px;}
.xdb_c00330{left:427.920000px;}
.x43_c00330{left:429.000000px;}
.x97_c00330{left:432.420000px;}
.x14_c00330{left:433.500000px;}
.x85_c00330{left:437.580000px;}
.xe6_c00330{left:441.000000px;}
.x3c_c00330{left:442.080000px;}
.x61_c00330{left:443.580000px;}
.x4c_c00330{left:447.000000px;}
.xb1_c00330{left:448.080000px;}
.x7a_c00330{left:450.420000px;}
.x9b_c00330{left:451.500000px;}
.xdc_c00330{left:454.080000px;}
.x6a_c00330{left:459.000000px;}
.x15_c00330{left:460.080000px;}
.x8d_c00330{left:462.000000px;}
.xc6_c00330{left:467.580000px;}
.xd0_c00330{left:472.920000px;}
.xf2_c00330{left:474.000000px;}
.x59_c00330{left:477.000000px;}
.xb2_c00330{left:478.920000px;}
.xe7_c00330{left:481.080000px;}
.x30_c00330{left:485.580000px;}
.x9c_c00330{left:490.080000px;}
.x3d_c00330{left:491.580000px;}
.x25_c00330{left:493.080000px;}
.xc7_c00330{left:496.920000px;}
.x7b_c00330{left:498.000000px;}
.x16_c00330{left:499.080000px;}
.x101_c00330{left:501.000000px;}
.x44_c00330{left:502.500000px;}
.x31_c00330{left:504.000000px;}
.xb_c00330{left:507.000000px;}
.x4d_c00330{left:508.920000px;}
.x72_c00330{left:510.000000px;}
.xef_c00330{left:513.000000px;}
.x6b_c00330{left:517.080000px;}
.x45_c00330{left:518.580000px;}
.xdd_c00330{left:522.420000px;}
.xc8_c00330{left:523.920000px;}
.xe3_c00330{left:525.000000px;}
.x8e_c00330{left:526.080000px;}
.xc_c00330{left:527.580000px;}
.x17_c00330{left:529.500000px;}
.xfb_c00330{left:531.000000px;}
.xaa_c00330{left:532.500000px;}
.xbd_c00330{left:534.000000px;}
.x9d_c00330{left:535.920000px;}
.x46_c00330{left:540.000000px;}
.x7c_c00330{left:541.080000px;}
.x73_c00330{left:542.580000px;}
.x105_c00330{left:546.000000px;}
.x18_c00330{left:547.500000px;}
.xab_c00330{left:549.000000px;}
.x6c_c00330{left:550.500000px;}
.x98_c00330{left:552.000000px;}
.xd6_c00330{left:554.580000px;}
.x54_c00330{left:556.920000px;}
.xb3_c00330{left:558.000000px;}
.x26_c00330{left:560.580000px;}
.xc9_c00330{left:564.420000px;}
.x19_c00330{left:565.500000px;}
.x32_c00330{left:566.580000px;}
.x62_c00330{left:568.500000px;}
.xc2_c00330{left:570.420000px;}
.x10e_c00330{left:572.580000px;}
.xfe_c00330{left:574.500000px;}
.xe8_c00330{left:576.420000px;}
.x8f_c00330{left:577.500000px;}
.x86_c00330{left:580.080000px;}
.x74_c00330{left:582.000000px;}
.x47_c00330{left:583.080000px;}
.x4e_c00330{left:586.080000px;}
.xde_c00330{left:587.580000px;}
.xb9_c00330{left:589.500000px;}
.xca_c00330{left:591.000000px;}
.x9e_c00330{left:592.500000px;}
.x1a_c00330{left:595.500000px;}
.x3e_c00330{left:597.000000px;}
.xd_c00330{left:598.500000px;}
.x27_c00330{left:599.580000px;}
.x102_c00330{left:601.500000px;}
.xac_c00330{left:604.500000px;}
.x75_c00330{left:606.420000px;}
.xdf_c00330{left:607.920000px;}
.x90_c00330{left:609.420000px;}
.xba_c00330{left:612.000000px;}
.x48_c00330{left:613.500000px;}
.x7d_c00330{left:615.420000px;}
.xcb_c00330{left:616.500000px;}
.x10f_c00330{left:618.420000px;}
.x28_c00330{left:621.000000px;}
.x63_c00330{left:622.500000px;}
.x55_c00330{left:624.000000px;}
.xad_c00330{left:625.920000px;}
.x106_c00330{left:627.000000px;}
.x9f_c00330{left:628.500000px;}
.x33_c00330{left:633.000000px;}
.x4f_c00330{left:634.500000px;}
.xbe_c00330{left:637.500000px;}
.x99_c00330{left:640.500000px;}
.x87_c00330{left:641.580000px;}
.x91_c00330{left:643.500000px;}
.x7e_c00330{left:645.420000px;}
.x1b_c00330{left:648.000000px;}
.xd7_c00330{left:651.420000px;}
.xa6_c00330{left:652.920000px;}
.x34_c00330{left:655.500000px;}
.xd1_c00330{left:657.000000px;}
.x29_c00330{left:658.920000px;}
.xe_c00330{left:660.000000px;}
.x49_c00330{left:661.080000px;}
.x103_c00330{left:662.355000px;}
.xae_c00330{left:663.420000px;}
.xb4_c00330{left:666.420000px;}
.xe0_c00330{left:669.000000px;}
.x107_c00330{left:672.000000px;}
.xd2_c00330{left:673.500000px;}
.x7f_c00330{left:674.580000px;}
.x111_c00330{left:676.080000px;}
.x6d_c00330{left:678.000000px;}
.x64_c00330{left:679.080000px;}
.xa7_c00330{left:681.420000px;}
.x50_c00330{left:684.000000px;}
.xa0_c00330{left:685.920000px;}
.x1c_c00330{left:688.500000px;}
.x6e_c00330{left:690.000000px;}
.x3f_c00330{left:694.080000px;}
.xf_c00330{left:695.580000px;}
.x2a_c00330{left:697.500000px;}
.xd8_c00330{left:699.420000px;}
.xcc_c00330{left:700.500000px;}
.x2_c00330{left:703.080000px;}
.x35_c00330{left:706.920000px;}
.x80_c00330{left:708.420000px;}
.xf7_c00330{left:711.000000px;}
.xe1_c00330{left:715.920000px;}
.xe9_c00330{left:721.500000px;}
.x10b_c00330{left:723.000000px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.ls0_c00330{letter-spacing:0.000000pt;}
.ws1_c00330{word-spacing:-3.223248pt;}
.ws2_c00330{word-spacing:0.000000pt;}
.ws0_c00330{word-spacing:1.498718pt;}
.fs7_c00330{font-size:3.040000pt;}
.fs6_c00330{font-size:12.106667pt;}
.fs2_c00330{font-size:16.640000pt;}
.fs0_c00330{font-size:18.133333pt;}
.fs4_c00330{font-size:22.666667pt;}
.fs1_c00330{font-size:25.706667pt;}
.fs5_c00330{font-size:28.746667pt;}
.fs3_c00330{font-size:31.733333pt;}
.fs8_c00330{font-size:34.773333pt;}
.y0_c00330{bottom:0.000000pt;}
.ye1_c00330{bottom:224.360000pt;}
.yde_c00330{bottom:224.733333pt;}
.ydf_c00330{bottom:225.106667pt;}
.ydd_c00330{bottom:225.693333pt;}
.ye2_c00330{bottom:226.640000pt;}
.ydc_c00330{bottom:227.026667pt;}
.ye0_c00330{bottom:227.226667pt;}
.yda_c00330{bottom:240.360000pt;}
.ydb_c00330{bottom:241.693333pt;}
.yd8_c00330{bottom:242.440000pt;}
.yd6_c00330{bottom:243.026667pt;}
.yd7_c00330{bottom:243.226667pt;}
.yd9_c00330{bottom:244.360000pt;}
.yd1_c00330{bottom:259.773333pt;}
.yd5_c00330{bottom:261.106667pt;}
.yd2_c00330{bottom:261.693333pt;}
.yd3_c00330{bottom:261.893333pt;}
.yd4_c00330{bottom:263.026667pt;}
.yd0_c00330{bottom:276.360000pt;}
.ycd_c00330{bottom:278.066667pt;}
.yce_c00330{bottom:278.440000pt;}
.ycc_c00330{bottom:279.026667pt;}
.ycf_c00330{bottom:280.360000pt;}
.yc7_c00330{bottom:293.693333pt;}
.yc8_c00330{bottom:295.773333pt;}
.yc6_c00330{bottom:296.360000pt;}
.yca_c00330{bottom:296.560000pt;}
.ycb_c00330{bottom:296.733333pt;}
.yc9_c00330{bottom:297.693333pt;}
.yc3_c00330{bottom:311.026667pt;}
.yc1_c00330{bottom:311.773333pt;}
.yc4_c00330{bottom:313.106667pt;}
.yc0_c00330{bottom:313.693333pt;}
.yc2_c00330{bottom:315.026667pt;}
.yc5_c00330{bottom:315.973333pt;}
.ybc_c00330{bottom:328.360000pt;}
.ybd_c00330{bottom:330.440000pt;}
.yba_c00330{bottom:331.026667pt;}
.ybf_c00330{bottom:331.400000pt;}
.yb9_c00330{bottom:331.973333pt;}
.ybb_c00330{bottom:332.360000pt;}
.ybe_c00330{bottom:333.306667pt;}
.yb6_c00330{bottom:346.640000pt;}
.yb7_c00330{bottom:347.773333pt;}
.yb8_c00330{bottom:348.560000pt;}
.yb4_c00330{bottom:349.693333pt;}
.yb5_c00330{bottom:350.640000pt;}
.yb2_c00330{bottom:364.360000pt;}
.yb1_c00330{bottom:365.106667pt;}
.yb0_c00330{bottom:367.026667pt;}
.yb3_c00330{bottom:367.226667pt;}
.yaa_c00330{bottom:381.106667pt;}
.yad_c00330{bottom:381.693333pt;}
.yab_c00330{bottom:382.440000pt;}
.yae_c00330{bottom:382.640000pt;}
.yaf_c00330{bottom:383.400000pt;}
.yac_c00330{bottom:384.360000pt;}
.ya8_c00330{bottom:399.773333pt;}
.ya9_c00330{bottom:401.106667pt;}
.ya7_c00330{bottom:401.693333pt;}
.ya5_c00330{bottom:416.360000pt;}
.ya3_c00330{bottom:417.106667pt;}
.ya4_c00330{bottom:418.440000pt;}
.ya6_c00330{bottom:419.026667pt;}
.ya2_c00330{bottom:420.360000pt;}
.ya0_c00330{bottom:434.440000pt;}
.y9f_c00330{bottom:435.773333pt;}
.y9c_c00330{bottom:435.973333pt;}
.y9d_c00330{bottom:436.360000pt;}
.y9e_c00330{bottom:436.733333pt;}
.ya1_c00330{bottom:437.693333pt;}
.y9a_c00330{bottom:452.160000pt;}
.y98_c00330{bottom:453.106667pt;}
.y99_c00330{bottom:454.066667pt;}
.y9b_c00330{bottom:454.640000pt;}
.y97_c00330{bottom:455.026667pt;}
.y96_c00330{bottom:470.440000pt;}
.y94_c00330{bottom:472.360000pt;}
.y95_c00330{bottom:473.306667pt;}
.y91_c00330{bottom:487.400000pt;}
.y8f_c00330{bottom:487.773333pt;}
.y8e_c00330{bottom:488.733333pt;}
.y90_c00330{bottom:489.306667pt;}
.y8d_c00330{bottom:489.693333pt;}
.y92_c00330{bottom:490.640000pt;}
.y93_c00330{bottom:491.026667pt;}
.y89_c00330{bottom:505.106667pt;}
.y87_c00330{bottom:505.893333pt;}
.y8b_c00330{bottom:506.440000pt;}
.y88_c00330{bottom:507.026667pt;}
.y8c_c00330{bottom:507.226667pt;}
.y8a_c00330{bottom:508.360000pt;}
.y84_c00330{bottom:523.773333pt;}
.y83_c00330{bottom:524.360000pt;}
.y86_c00330{bottom:524.560000pt;}
.y85_c00330{bottom:525.693333pt;}
.y82_c00330{bottom:541.106667pt;}
.y7f_c00330{bottom:541.693333pt;}
.y81_c00330{bottom:542.640000pt;}
.y80_c00330{bottom:543.026667pt;}
.y7d_c00330{bottom:558.440000pt;}
.y7c_c00330{bottom:559.973333pt;}
.y7b_c00330{bottom:560.360000pt;}
.y7e_c00330{bottom:560.560000pt;}
.y78_c00330{bottom:575.400000pt;}
.y7a_c00330{bottom:575.773333pt;}
.y76_c00330{bottom:576.360000pt;}
.y79_c00330{bottom:577.306667pt;}
.y77_c00330{bottom:577.693333pt;}
.y71_c00330{bottom:593.106667pt;}
.y70_c00330{bottom:594.066667pt;}
.y75_c00330{bottom:594.440000pt;}
.y72_c00330{bottom:595.026667pt;}
.y74_c00330{bottom:595.973333pt;}
.y73_c00330{bottom:596.360000pt;}
.y6f_c00330{bottom:611.773333pt;}
.y6d_c00330{bottom:612.360000pt;}
.y6e_c00330{bottom:613.693333pt;}
.y68_c00330{bottom:627.773333pt;}
.y67_c00330{bottom:628.733333pt;}
.y6b_c00330{bottom:629.106667pt;}
.y66_c00330{bottom:629.693333pt;}
.y6c_c00330{bottom:629.893333pt;}
.y6a_c00330{bottom:630.066667pt;}
.y69_c00330{bottom:631.026667pt;}
.y61_c00330{bottom:645.106667pt;}
.y65_c00330{bottom:646.440000pt;}
.y60_c00330{bottom:647.026667pt;}
.y62_c00330{bottom:647.973333pt;}
.y63_c00330{bottom:648.360000pt;}
.y64_c00330{bottom:649.306667pt;}
.y5d_c00330{bottom:664.360000pt;}
.y5f_c00330{bottom:665.306667pt;}
.y5e_c00330{bottom:665.693333pt;}
.y5b_c00330{bottom:681.106667pt;}
.y58_c00330{bottom:681.306667pt;}
.y5c_c00330{bottom:681.893333pt;}
.y59_c00330{bottom:683.026667pt;}
.y5a_c00330{bottom:683.973333pt;}
.y54_c00330{bottom:698.440000pt;}
.y57_c00330{bottom:699.973333pt;}
.y56_c00330{bottom:700.360000pt;}
.y55_c00330{bottom:700.373333pt;}
.y4d_c00330{bottom:721.306667pt;}
.y53_c00330{bottom:722.066667pt;}
.y51_c00330{bottom:723.026667pt;}
.y50_c00330{bottom:723.226667pt;}
.y4e_c00330{bottom:723.973333pt;}
.y52_c00330{bottom:724.173333pt;}
.y4f_c00330{bottom:724.933333pt;}
.y4c_c00330{bottom:734.066667pt;}
.y4b_c00330{bottom:735.026667pt;}
.y44_c00330{bottom:747.600000pt;}
.y46_c00330{bottom:748.733333pt;}
.y45_c00330{bottom:749.306667pt;}
.y49_c00330{bottom:749.693333pt;}
.y47_c00330{bottom:750.640000pt;}
.y4a_c00330{bottom:750.840000pt;}
.y48_c00330{bottom:751.600000pt;}
.y43_c00330{bottom:760.733333pt;}
.y42_c00330{bottom:762.640000pt;}
.y41_c00330{bottom:762.840000pt;}
.y39_c00330{bottom:774.266667pt;}
.y3c_c00330{bottom:774.640000pt;}
.y3b_c00330{bottom:775.026667pt;}
.y40_c00330{bottom:775.400000pt;}
.y3a_c00330{bottom:775.973333pt;}
.y3f_c00330{bottom:776.360000pt;}
.y3d_c00330{bottom:777.306667pt;}
.y3e_c00330{bottom:778.266667pt;}
.y38_c00330{bottom:787.400000pt;}
.y35_c00330{bottom:788.360000pt;}
.y34_c00330{bottom:788.560000pt;}
.y37_c00330{bottom:789.306667pt;}
.y36_c00330{bottom:789.506667pt;}
.y30_c00330{bottom:801.693333pt;}
.y2f_c00330{bottom:801.893333pt;}
.y31_c00330{bottom:802.640000pt;}
.y33_c00330{bottom:803.226667pt;}
.y32_c00330{bottom:803.600000pt;}
.y2c_c00330{bottom:821.106667pt;}
.y2d_c00330{bottom:822.440000pt;}
.y2b_c00330{bottom:823.026667pt;}
.y2e_c00330{bottom:824.360000pt;}
.y28_c00330{bottom:838.440000pt;}
.y2a_c00330{bottom:839.773333pt;}
.y29_c00330{bottom:840.360000pt;}
.y25_c00330{bottom:855.773333pt;}
.y24_c00330{bottom:857.693333pt;}
.y23_c00330{bottom:857.893333pt;}
.y26_c00330{bottom:859.026667pt;}
.y27_c00330{bottom:859.973333pt;}
.y1f_c00330{bottom:873.106667pt;}
.y1d_c00330{bottom:874.066667pt;}
.y21_c00330{bottom:874.440000pt;}
.y1c_c00330{bottom:875.026667pt;}
.y1e_c00330{bottom:875.226667pt;}
.y22_c00330{bottom:875.400000pt;}
.y20_c00330{bottom:876.360000pt;}
.y15_c00330{bottom:890.066667pt;}
.y16_c00330{bottom:890.440000pt;}
.y18_c00330{bottom:890.640000pt;}
.y1a_c00330{bottom:891.773333pt;}
.y17_c00330{bottom:892.360000pt;}
.y19_c00330{bottom:892.560000pt;}
.y14_c00330{bottom:893.306667pt;}
.y1b_c00330{bottom:893.693333pt;}
.y11_c00330{bottom:907.026667pt;}
.ye_c00330{bottom:907.773333pt;}
.y12_c00330{bottom:909.106667pt;}
.yf_c00330{bottom:909.693333pt;}
.y10_c00330{bottom:910.640000pt;}
.y13_c00330{bottom:911.026667pt;}
.y8_c00330{bottom:926.066667pt;}
.ya_c00330{bottom:926.440000pt;}
.yd_c00330{bottom:926.640000pt;}
.y9_c00330{bottom:927.973333pt;}
.yb_c00330{bottom:928.360000pt;}
.yc_c00330{bottom:928.560000pt;}
.y6_c00330{bottom:942.640000pt;}
.y5_c00330{bottom:943.773333pt;}
.y4_c00330{bottom:944.560000pt;}
.y3_c00330{bottom:945.693333pt;}
.y7_c00330{bottom:945.893333pt;}
.y2_c00330{bottom:977.693333pt;}
.y1_c00330{bottom:979.600000pt;}
.h8_c00330{height:3.739141pt;}
.h7_c00330{height:14.890964pt;}
.h3_c00330{height:20.466875pt;}
.h1_c00330{height:22.303646pt;}
.h5_c00330{height:27.879557pt;}
.h2_c00330{height:31.618698pt;}
.h6_c00330{height:35.357839pt;}
.h4_c00330{height:39.031380pt;}
.h9_c00330{height:42.770521pt;}
.h0_c00330{height:1186.666667pt;}
.w0_c00330{width:782.666667pt;}
.x0_c00330{left:0.000000pt;}
.x3_c00330{left:134.666667pt;}
.x4a_c00330{left:135.626667pt;}
.xc3_c00330{left:137.333333pt;}
.xf8_c00330{left:138.666667pt;}
.x108_c00330{left:139.626667pt;}
.x65_c00330{left:145.333333pt;}
.x56_c00330{left:147.626667pt;}
.x76_c00330{left:148.960000pt;}
.xe4_c00330{left:151.626667pt;}
.xfc_c00330{left:153.333333pt;}
.x2b_c00330{left:158.666667pt;}
.xaf_c00330{left:160.000000pt;}
.xcd_c00330{left:161.333333pt;}
.x57_c00330{left:162.666667pt;}
.x67_c00330{left:163.626667pt;}
.xff_c00330{left:168.000000pt;}
.xa1_c00330{left:171.040000pt;}
.x81_c00330{left:172.000000pt;}
.x4_c00330{left:173.333333pt;}
.xf3_c00330{left:174.293333pt;}
.x40_c00330{left:175.626667pt;}
.x88_c00330{left:178.666667pt;}
.x1d_c00330{left:180.000000pt;}
.x92_c00330{left:184.000000pt;}
.xb0_c00330{left:184.960000pt;}
.xd3_c00330{left:187.040000pt;}
.xa8_c00330{left:188.373333pt;}
.x5_c00330{left:189.333333pt;}
.xb5_c00330{left:190.666667pt;}
.x89_c00330{left:192.000000pt;}
.xbf_c00330{left:193.706667pt;}
.x1e_c00330{left:194.666667pt;}
.xa2_c00330{left:196.373333pt;}
.x51_c00330{left:198.666667pt;}
.x5c_c00330{left:199.626667pt;}
.x66_c00330{left:200.760000pt;}
.x6_c00330{left:201.906667pt;}
.x68_c00330{left:203.040000pt;}
.x104_c00330{left:207.040000pt;}
.x10_c00330{left:208.000000pt;}
.x36_c00330{left:210.666667pt;}
.x109_c00330{left:212.000000pt;}
.x100_c00330{left:212.960000pt;}
.x5d_c00330{left:216.000000pt;}
.x5a_c00330{left:217.906667pt;}
.x82_c00330{left:219.626667pt;}
.x6f_c00330{left:221.333333pt;}
.xbb_c00330{left:223.626667pt;}
.xea_c00330{left:225.333333pt;}
.x10a_c00330{left:226.293333pt;}
.x52_c00330{left:229.706667pt;}
.x93_c00330{left:230.666667pt;}
.xce_c00330{left:232.373333pt;}
.xd4_c00330{left:233.333333pt;}
.x11_c00330{left:236.000000pt;}
.x4b_c00330{left:237.333333pt;}
.xa3_c00330{left:238.666667pt;}
.xc4_c00330{left:240.373333pt;}
.x1f_c00330{left:241.333333pt;}
.x41_c00330{left:242.293333pt;}
.x8a_c00330{left:244.960000pt;}
.x5e_c00330{left:245.906667pt;}
.xf9_c00330{left:247.040000pt;}
.xf0_c00330{left:249.333333pt;}
.x77_c00330{left:250.666667pt;}
.x37_c00330{left:254.666667pt;}
.x53_c00330{left:256.000000pt;}
.x2c_c00330{left:258.666667pt;}
.x20_c00330{left:260.000000pt;}
.xd9_c00330{left:261.333333pt;}
.xec_c00330{left:262.293333pt;}
.x5b_c00330{left:265.333333pt;}
.x38_c00330{left:266.293333pt;}
.x12_c00330{left:267.626667pt;}
.x7_c00330{left:269.706667pt;}
.x8b_c00330{left:272.373333pt;}
.xf4_c00330{left:274.293333pt;}
.xa9_c00330{left:276.000000pt;}
.xed_c00330{left:279.040000pt;}
.x78_c00330{left:280.373333pt;}
.xc0_c00330{left:281.706667pt;}
.xf1_c00330{left:282.666667pt;}
.x21_c00330{left:284.000000pt;}
.x58_c00330{left:286.666667pt;}
.x83_c00330{left:290.666667pt;}
.xe5_c00330{left:292.000000pt;}
.x94_c00330{left:293.333333pt;}
.x2d_c00330{left:296.000000pt;}
.x70_c00330{left:296.960000pt;}
.xb6_c00330{left:298.293333pt;}
.xe2_c00330{left:300.000000pt;}
.x39_c00330{left:302.293333pt;}
.xfa_c00330{left:303.626667pt;}
.x69_c00330{left:306.666667pt;}
.x95_c00330{left:309.333333pt;}
.xa4_c00330{left:311.040000pt;}
.x79_c00330{left:312.000000pt;}
.x42_c00330{left:313.333333pt;}
.x2e_c00330{left:315.040000pt;}
.xb7_c00330{left:317.706667pt;}
.x8_c00330{left:320.000000pt;}
.xfd_c00330{left:321.333333pt;}
.x5f_c00330{left:322.293333pt;}
.x13_c00330{left:325.333333pt;}
.x10c_c00330{left:328.000000pt;}
.xf5_c00330{left:329.706667pt;}
.x84_c00330{left:331.040000pt;}
.x110_c00330{left:332.000000pt;}
.x22_c00330{left:333.333333pt;}
.x9_c00330{left:334.666667pt;}
.xa5_c00330{left:335.626667pt;}
.x71_c00330{left:337.333333pt;}
.xda_c00330{left:338.293333pt;}
.xeb_c00330{left:343.040000pt;}
.xb8_c00330{left:344.000000pt;}
.x8c_c00330{left:344.960000pt;}
.xcf_c00330{left:346.666667pt;}
.x23_c00330{left:348.000000pt;}
.x3a_c00330{left:350.293333pt;}
.x96_c00330{left:352.000000pt;}
.xbc_c00330{left:353.706667pt;}
.xf6_c00330{left:354.666667pt;}
.x1_c00330{left:356.000000pt;}
.xc5_c00330{left:357.333333pt;}
.x60_c00330{left:358.666667pt;}
.x2f_c00330{left:360.373333pt;}
.x24_c00330{left:361.333333pt;}
.xd5_c00330{left:362.666667pt;}
.x3b_c00330{left:368.373333pt;}
.xee_c00330{left:369.333333pt;}
.xc1_c00330{left:371.626667pt;}
.xa_c00330{left:373.333333pt;}
.x9a_c00330{left:377.706667pt;}
.x10d_c00330{left:379.040000pt;}
.xdb_c00330{left:380.373333pt;}
.x43_c00330{left:381.333333pt;}
.x97_c00330{left:384.373333pt;}
.x14_c00330{left:385.333333pt;}
.x85_c00330{left:388.960000pt;}
.xe6_c00330{left:392.000000pt;}
.x3c_c00330{left:392.960000pt;}
.x61_c00330{left:394.293333pt;}
.x4c_c00330{left:397.333333pt;}
.xb1_c00330{left:398.293333pt;}
.x7a_c00330{left:400.373333pt;}
.x9b_c00330{left:401.333333pt;}
.xdc_c00330{left:403.626667pt;}
.x6a_c00330{left:408.000000pt;}
.x15_c00330{left:408.960000pt;}
.x8d_c00330{left:410.666667pt;}
.xc6_c00330{left:415.626667pt;}
.xd0_c00330{left:420.373333pt;}
.xf2_c00330{left:421.333333pt;}
.x59_c00330{left:424.000000pt;}
.xb2_c00330{left:425.706667pt;}
.xe7_c00330{left:427.626667pt;}
.x30_c00330{left:431.626667pt;}
.x9c_c00330{left:435.626667pt;}
.x3d_c00330{left:436.960000pt;}
.x25_c00330{left:438.293333pt;}
.xc7_c00330{left:441.706667pt;}
.x7b_c00330{left:442.666667pt;}
.x16_c00330{left:443.626667pt;}
.x101_c00330{left:445.333333pt;}
.x44_c00330{left:446.666667pt;}
.x31_c00330{left:448.000000pt;}
.xb_c00330{left:450.666667pt;}
.x4d_c00330{left:452.373333pt;}
.x72_c00330{left:453.333333pt;}
.xef_c00330{left:456.000000pt;}
.x6b_c00330{left:459.626667pt;}
.x45_c00330{left:460.960000pt;}
.xdd_c00330{left:464.373333pt;}
.xc8_c00330{left:465.706667pt;}
.xe3_c00330{left:466.666667pt;}
.x8e_c00330{left:467.626667pt;}
.xc_c00330{left:468.960000pt;}
.x17_c00330{left:470.666667pt;}
.xfb_c00330{left:472.000000pt;}
.xaa_c00330{left:473.333333pt;}
.xbd_c00330{left:474.666667pt;}
.x9d_c00330{left:476.373333pt;}
.x46_c00330{left:480.000000pt;}
.x7c_c00330{left:480.960000pt;}
.x73_c00330{left:482.293333pt;}
.x105_c00330{left:485.333333pt;}
.x18_c00330{left:486.666667pt;}
.xab_c00330{left:488.000000pt;}
.x6c_c00330{left:489.333333pt;}
.x98_c00330{left:490.666667pt;}
.xd6_c00330{left:492.960000pt;}
.x54_c00330{left:495.040000pt;}
.xb3_c00330{left:496.000000pt;}
.x26_c00330{left:498.293333pt;}
.xc9_c00330{left:501.706667pt;}
.x19_c00330{left:502.666667pt;}
.x32_c00330{left:503.626667pt;}
.x62_c00330{left:505.333333pt;}
.xc2_c00330{left:507.040000pt;}
.x10e_c00330{left:508.960000pt;}
.xfe_c00330{left:510.666667pt;}
.xe8_c00330{left:512.373333pt;}
.x8f_c00330{left:513.333333pt;}
.x86_c00330{left:515.626667pt;}
.x74_c00330{left:517.333333pt;}
.x47_c00330{left:518.293333pt;}
.x4e_c00330{left:520.960000pt;}
.xde_c00330{left:522.293333pt;}
.xb9_c00330{left:524.000000pt;}
.xca_c00330{left:525.333333pt;}
.x9e_c00330{left:526.666667pt;}
.x1a_c00330{left:529.333333pt;}
.x3e_c00330{left:530.666667pt;}
.xd_c00330{left:532.000000pt;}
.x27_c00330{left:532.960000pt;}
.x102_c00330{left:534.666667pt;}
.xac_c00330{left:537.333333pt;}
.x75_c00330{left:539.040000pt;}
.xdf_c00330{left:540.373333pt;}
.x90_c00330{left:541.706667pt;}
.xba_c00330{left:544.000000pt;}
.x48_c00330{left:545.333333pt;}
.x7d_c00330{left:547.040000pt;}
.xcb_c00330{left:548.000000pt;}
.x10f_c00330{left:549.706667pt;}
.x28_c00330{left:552.000000pt;}
.x63_c00330{left:553.333333pt;}
.x55_c00330{left:554.666667pt;}
.xad_c00330{left:556.373333pt;}
.x106_c00330{left:557.333333pt;}
.x9f_c00330{left:558.666667pt;}
.x33_c00330{left:562.666667pt;}
.x4f_c00330{left:564.000000pt;}
.xbe_c00330{left:566.666667pt;}
.x99_c00330{left:569.333333pt;}
.x87_c00330{left:570.293333pt;}
.x91_c00330{left:572.000000pt;}
.x7e_c00330{left:573.706667pt;}
.x1b_c00330{left:576.000000pt;}
.xd7_c00330{left:579.040000pt;}
.xa6_c00330{left:580.373333pt;}
.x34_c00330{left:582.666667pt;}
.xd1_c00330{left:584.000000pt;}
.x29_c00330{left:585.706667pt;}
.xe_c00330{left:586.666667pt;}
.x49_c00330{left:587.626667pt;}
.x103_c00330{left:588.760000pt;}
.xae_c00330{left:589.706667pt;}
.xb4_c00330{left:592.373333pt;}
.xe0_c00330{left:594.666667pt;}
.x107_c00330{left:597.333333pt;}
.xd2_c00330{left:598.666667pt;}
.x7f_c00330{left:599.626667pt;}
.x111_c00330{left:600.960000pt;}
.x6d_c00330{left:602.666667pt;}
.x64_c00330{left:603.626667pt;}
.xa7_c00330{left:605.706667pt;}
.x50_c00330{left:608.000000pt;}
.xa0_c00330{left:609.706667pt;}
.x1c_c00330{left:612.000000pt;}
.x6e_c00330{left:613.333333pt;}
.x3f_c00330{left:616.960000pt;}
.xf_c00330{left:618.293333pt;}
.x2a_c00330{left:620.000000pt;}
.xd8_c00330{left:621.706667pt;}
.xcc_c00330{left:622.666667pt;}
.x2_c00330{left:624.960000pt;}
.x35_c00330{left:628.373333pt;}
.x80_c00330{left:629.706667pt;}
.xf7_c00330{left:632.000000pt;}
.xe1_c00330{left:636.373333pt;}
.xe9_c00330{left:641.333333pt;}
.x10b_c00330{left:642.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_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_ddd0f01cb96abe7a903860d7.woff2')format("woff");}.ff1_c00331{font-family:ff1_c00331;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc8_c00331{transform:matrix(0.305066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305066,0.000000,0.000000,0.250000,0,0);}
.m22_c00331{transform:matrix(0.335294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335294,0.000000,0.000000,0.250000,0,0);}
.m65_c00331{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m81_c00331{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m47_c00331{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m61_c00331{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m6f_c00331{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m5c_c00331{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.md3_c00331{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m46_c00331{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m69_c00331{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m7e_c00331{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m75_c00331{transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);}
.mb7_c00331{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m5b_c00331{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m2a_c00331{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m44_c00331{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m34_c00331{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m98_c00331{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.ma0_c00331{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m6b_c00331{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.ma8_c00331{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m8d_c00331{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mc6_c00331{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m2e_c00331{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.ma_c00331{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m92_c00331{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m7d_c00331{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.m6d_c00331{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m53_c00331{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m49_c00331{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.meb_c00331{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.m7_c00331{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m1c_c00331{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m40_c00331{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mc0_c00331{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m8a_c00331{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m18_c00331{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m38_c00331{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m59_c00331{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.md4_c00331{transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);}
.mbd_c00331{transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);}
.m9a_c00331{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m24_c00331{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m51_c00331{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.ma7_c00331{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m71_c00331{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m16_c00331{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m9d_c00331{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mae_c00331{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.mc2_c00331{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m9f_c00331{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m4a_c00331{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m10_c00331{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mc1_c00331{transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);}
.mb5_c00331{transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);}
.m87_c00331{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mab_c00331{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m85_c00331{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m99_c00331{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.m23_c00331{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_c00331{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.mcf_c00331{transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);}
.mc3_c00331{transform:matrix(0.455929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455929,0.000000,0.000000,0.250000,0,0);}
.m5f_c00331{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m2b_c00331{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mc9_c00331{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.ma5_c00331{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.mbe_c00331{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.mdc_c00331{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.ma2_c00331{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.mca_c00331{transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);}
.m82_c00331{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m93_c00331{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m5e_c00331{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m79_c00331{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m90_c00331{transform:matrix(0.476345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476345,0.000000,0.000000,0.250000,0,0);}
.m4e_c00331{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.md_c00331{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m6_c00331{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m39_c00331{transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);}
.mc_c00331{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mdd_c00331{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m60_c00331{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m21_c00331{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.ma4_c00331{transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);}
.me7_c00331{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m45_c00331{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m94_c00331{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m30_c00331{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);}
.m96_c00331{transform:matrix(0.505102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505102,0.000000,0.000000,0.250000,0,0);}
.me5_c00331{transform:matrix(0.505609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505609,0.000000,0.000000,0.250000,0,0);}
.m5a_c00331{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m62_c00331{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m56_c00331{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mb8_c00331{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m88_c00331{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m89_c00331{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m3_c00331{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m78_c00331{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m43_c00331{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mb9_c00331{transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);}
.m80_c00331{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.mb0_c00331{transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);}
.m4b_c00331{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.mf_c00331{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m15_c00331{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m19_c00331{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m28_c00331{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m7a_c00331{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m4c_c00331{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m76_c00331{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m6c_c00331{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m86_c00331{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m74_c00331{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m67_c00331{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m6e_c00331{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m31_c00331{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m27_c00331{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m13_c00331{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mbf_c00331{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.m7f_c00331{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m9c_c00331{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m57_c00331{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mb2_c00331{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m4_c00331{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m64_c00331{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m37_c00331{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m8f_c00331{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m70_c00331{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mb1_c00331{transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);}
.m35_c00331{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mb4_c00331{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m9e_c00331{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m25_c00331{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m1f_c00331{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m3b_c00331{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m32_c00331{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m41_c00331{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m5_c00331{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m58_c00331{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m8_c00331{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mcb_c00331{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m29_c00331{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m1_c00331{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.mb_c00331{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m83_c00331{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mbb_c00331{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m2_c00331{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m4f_c00331{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);}
.m52_c00331{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.md6_c00331{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m55_c00331{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.md8_c00331{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m3f_c00331{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m4d_c00331{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m1e_c00331{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m2f_c00331{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m2c_c00331{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m17_c00331{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mad_c00331{transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);}
.m9_c00331{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m72_c00331{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m68_c00331{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m8b_c00331{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m20_c00331{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m42_c00331{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m9b_c00331{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m11_c00331{transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);}
.ma3_c00331{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m1a_c00331{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);}
.maa_c00331{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m1b_c00331{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.m26_c00331{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mc7_c00331{transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);}
.m0_c00331{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m3a_c00331{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.mc5_c00331{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m7c_c00331{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m3e_c00331{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.mc4_c00331{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m36_c00331{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mba_c00331{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m95_c00331{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.md7_c00331{transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);}
.me3_c00331{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.ma6_c00331{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_c00331{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.ma9_c00331{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mcc_c00331{transform:matrix(0.638767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638767,0.000000,0.000000,0.250000,0,0);}
.m3c_c00331{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.mbc_c00331{transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);}
.mea_c00331{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.ma1_c00331{transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);}
.mac_c00331{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m14_c00331{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.me6_c00331{transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);}
.m33_c00331{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m6a_c00331{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.me0_c00331{transform:matrix(0.667929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667929,0.000000,0.000000,0.250000,0,0);}
.mcd_c00331{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.me9_c00331{transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);}
.m50_c00331{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.me8_c00331{transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);}
.mdb_c00331{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.m12_c00331{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.md2_c00331{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.maf_c00331{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m8c_c00331{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.mde_c00331{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.mb6_c00331{transform:matrix(0.697794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697794,0.000000,0.000000,0.250000,0,0);}
.mb3_c00331{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m91_c00331{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m48_c00331{transform:matrix(0.714706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.714706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.714706,0.000000,0.000000,0.250000,0,0);}
.m73_c00331{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m66_c00331{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.me2_c00331{transform:matrix(0.727974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727974,0.000000,0.000000,0.250000,0,0);}
.m54_c00331{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m63_c00331{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.me4_c00331{transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);}
.m3d_c00331{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mce_c00331{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.md5_c00331{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.mdf_c00331{transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);}
.md1_c00331{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.me_c00331{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m1d_c00331{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m84_c00331{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m97_c00331{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.m8e_c00331{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.md0_c00331{transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);}
.md9_c00331{transform:matrix(0.805066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805066,0.000000,0.000000,0.250000,0,0);}
.m77_c00331{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.me1_c00331{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mda_c00331{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m7b_c00331{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v2_c00331{vertical-align:-6.000000px;}
.v0_c00331{vertical-align:0.000000px;}
.v1_c00331{vertical-align:18.000000px;}
.ls1_c00331{letter-spacing:0.000000px;}
.ls0_c00331{letter-spacing:77.955316px;}
.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;}
}
.ws2_c00331{word-spacing:-88.887796px;}
.ws0_c00331{word-spacing:-8.678629px;}
.wsd_c00331{word-spacing:0.000000px;}
.ws5_c00331{word-spacing:13.611988px;}
.wsa_c00331{word-spacing:19.417982px;}
.ws8_c00331{word-spacing:19.620812px;}
.ws6_c00331{word-spacing:21.573046px;}
.ws7_c00331{word-spacing:23.728109px;}
.ws4_c00331{word-spacing:31.530433px;}
.wsc_c00331{word-spacing:33.467416px;}
.ws9_c00331{word-spacing:33.638400px;}
.wsb_c00331{word-spacing:39.933737px;}
.ws1_c00331{word-spacing:47.719225px;}
.ws3_c00331{word-spacing:67.022836px;}
._0_c00331{margin-left:-9.818182px;}
._3_c00331{width:25.216999px;}
._1_c00331{width:27.574892px;}
._4_c00331{width:29.527126px;}
._5_c00331{width:31.682189px;}
._2_c00331{width:33.837252px;}
.fc0_c00331{color:transparent;}
.fs6_c00331{font-size:3.420000px;}
.fs8_c00331{font-size:11.880000px;}
.fs7_c00331{font-size:13.620000px;}
.fs4_c00331{font-size:18.720000px;}
.fs0_c00331{font-size:20.400000px;}
.fs1_c00331{font-size:25.500000px;}
.fs2_c00331{font-size:28.920000px;}
.fs5_c00331{font-size:32.340000px;}
.fs3_c00331{font-size:35.700000px;}
.y0_c00331{bottom:0.000000px;}
.y87_c00331{bottom:252.825000px;}
.y84_c00331{bottom:253.245000px;}
.y85_c00331{bottom:254.130000px;}
.y88_c00331{bottom:254.970000px;}
.y83_c00331{bottom:255.405000px;}
.y86_c00331{bottom:256.905000px;}
.y82_c00331{bottom:274.905000px;}
.y81_c00331{bottom:293.745000px;}
.y7d_c00331{bottom:294.405000px;}
.y80_c00331{bottom:294.630000px;}
.y7f_c00331{bottom:294.825000px;}
.y7e_c00331{bottom:295.905000px;}
.y7b_c00331{bottom:312.405000px;}
.y78_c00331{bottom:313.245000px;}
.y75_c00331{bottom:313.905000px;}
.y77_c00331{bottom:314.130000px;}
.y7c_c00331{bottom:314.325000px;}
.y79_c00331{bottom:314.970000px;}
.y76_c00331{bottom:315.405000px;}
.y7a_c00331{bottom:316.470000px;}
.y70_c00331{bottom:332.325000px;}
.y74_c00331{bottom:332.745000px;}
.y72_c00331{bottom:333.630000px;}
.y73_c00331{bottom:334.245000px;}
.y71_c00331{bottom:334.905000px;}
.y6a_c00331{bottom:352.245000px;}
.y69_c00331{bottom:353.130000px;}
.y6b_c00331{bottom:353.325000px;}
.y68_c00331{bottom:354.405000px;}
.y6f_c00331{bottom:354.630000px;}
.y6c_c00331{bottom:354.825000px;}
.y6e_c00331{bottom:355.470000px;}
.y6d_c00331{bottom:355.905000px;}
.y67_c00331{bottom:370.905000px;}
.y66_c00331{bottom:373.245000px;}
.y62_c00331{bottom:373.905000px;}
.y65_c00331{bottom:374.130000px;}
.y63_c00331{bottom:374.325000px;}
.y64_c00331{bottom:375.405000px;}
.y61_c00331{bottom:391.245000px;}
.y5e_c00331{bottom:392.325000px;}
.y60_c00331{bottom:392.745000px;}
.y5a_c00331{bottom:393.405000px;}
.y5f_c00331{bottom:393.630000px;}
.y5b_c00331{bottom:393.825000px;}
.y5d_c00331{bottom:394.470000px;}
.y5c_c00331{bottom:394.905000px;}
.y56_c00331{bottom:412.245000px;}
.y59_c00331{bottom:412.905000px;}
.y58_c00331{bottom:413.130000px;}
.y57_c00331{bottom:413.325000px;}
.y53_c00331{bottom:414.405000px;}
.y54_c00331{bottom:414.420000px;}
.y55_c00331{bottom:415.470000px;}
.yce_c00331{bottom:446.130000px;}
.ycd_c00331{bottom:447.195000px;}
.ycf_c00331{bottom:447.420000px;}
.ycb_c00331{bottom:447.630000px;}
.ycc_c00331{bottom:448.695000px;}
.yc9_c00331{bottom:459.630000px;}
.yc8_c00331{bottom:461.130000px;}
.yc6_c00331{bottom:462.195000px;}
.yca_c00331{bottom:462.420000px;}
.yc5_c00331{bottom:462.630000px;}
.yc7_c00331{bottom:463.695000px;}
.yc4_c00331{bottom:474.630000px;}
.yc2_c00331{bottom:475.695000px;}
.yc0_c00331{bottom:476.130000px;}
.yc1_c00331{bottom:476.775000px;}
.yc3_c00331{bottom:477.195000px;}
.ybf_c00331{bottom:488.130000px;}
.ybe_c00331{bottom:489.195000px;}
.ybd_c00331{bottom:489.630000px;}
.ybc_c00331{bottom:490.695000px;}
.ybb_c00331{bottom:502.695000px;}
.yb9_c00331{bottom:503.130000px;}
.yba_c00331{bottom:504.195000px;}
.yb6_c00331{bottom:516.195000px;}
.yb8_c00331{bottom:516.420000px;}
.yb4_c00331{bottom:516.630000px;}
.yb7_c00331{bottom:517.275000px;}
.yb5_c00331{bottom:517.695000px;}
.yb3_c00331{bottom:530.130000px;}
.yb2_c00331{bottom:531.195000px;}
.yb1_c00331{bottom:532.695000px;}
.yaf_c00331{bottom:544.695000px;}
.yb0_c00331{bottom:544.920000px;}
.yae_c00331{bottom:545.130000px;}
.yad_c00331{bottom:546.195000px;}
.yac_c00331{bottom:558.195000px;}
.yab_c00331{bottom:558.630000px;}
.yaa_c00331{bottom:571.695000px;}
.ya9_c00331{bottom:572.130000px;}
.ya7_c00331{bottom:572.550000px;}
.ya8_c00331{bottom:573.195000px;}
.ya6_c00331{bottom:584.130000px;}
.ya5_c00331{bottom:585.630000px;}
.ya4_c00331{bottom:586.695000px;}
.ya3_c00331{bottom:587.130000px;}
.ya2_c00331{bottom:588.195000px;}
.ya1_c00331{bottom:599.130000px;}
.ya0_c00331{bottom:600.195000px;}
.y9f_c00331{bottom:600.630000px;}
.y9e_c00331{bottom:618.630000px;}
.y9d_c00331{bottom:619.695000px;}
.y9c_c00331{bottom:631.695000px;}
.y9b_c00331{bottom:632.130000px;}
.y9a_c00331{bottom:633.195000px;}
.y98_c00331{bottom:633.630000px;}
.y99_c00331{bottom:634.695000px;}
.y97_c00331{bottom:645.195000px;}
.y96_c00331{bottom:646.695000px;}
.y95_c00331{bottom:664.905000px;}
.y93_c00331{bottom:665.970000px;}
.y94_c00331{bottom:667.050000px;}
.y91_c00331{bottom:678.825000px;}
.y92_c00331{bottom:679.905000px;}
.y90_c00331{bottom:680.970000px;}
.y8f_c00331{bottom:682.050000px;}
.y8e_c00331{bottom:694.905000px;}
.y8c_c00331{bottom:695.550000px;}
.y8d_c00331{bottom:695.970000px;}
.y8b_c00331{bottom:697.050000px;}
.y8a_c00331{bottom:714.405000px;}
.y89_c00331{bottom:716.550000px;}
.y50_c00331{bottom:744.405000px;}
.y51_c00331{bottom:745.245000px;}
.y52_c00331{bottom:746.325000px;}
.y4e_c00331{bottom:747.405000px;}
.y4f_c00331{bottom:747.630000px;}
.y4b_c00331{bottom:767.130000px;}
.y4d_c00331{bottom:767.970000px;}
.y4c_c00331{bottom:768.405000px;}
.y46_c00331{bottom:785.745000px;}
.y4a_c00331{bottom:786.405000px;}
.y49_c00331{bottom:786.630000px;}
.y48_c00331{bottom:787.905000px;}
.y47_c00331{bottom:788.970000px;}
.y42_c00331{bottom:802.905000px;}
.y43_c00331{bottom:805.245000px;}
.y41_c00331{bottom:805.470000px;}
.y45_c00331{bottom:806.970000px;}
.y44_c00331{bottom:807.405000px;}
.y3e_c00331{bottom:824.745000px;}
.y3f_c00331{bottom:825.630000px;}
.y40_c00331{bottom:826.470000px;}
.y3d_c00331{bottom:826.905000px;}
.y3c_c00331{bottom:827.970000px;}
.y39_c00331{bottom:843.405000px;}
.y3b_c00331{bottom:844.245000px;}
.y3a_c00331{bottom:844.470000px;}
.y38_c00331{bottom:845.325000px;}
.y37_c00331{bottom:846.405000px;}
.y35_c00331{bottom:862.905000px;}
.y30_c00331{bottom:863.745000px;}
.y33_c00331{bottom:863.970000px;}
.y36_c00331{bottom:864.825000px;}
.y32_c00331{bottom:865.245000px;}
.y31_c00331{bottom:865.905000px;}
.y34_c00331{bottom:866.970000px;}
.y2c_c00331{bottom:883.245000px;}
.y2d_c00331{bottom:885.405000px;}
.y2f_c00331{bottom:885.630000px;}
.y2e_c00331{bottom:886.470000px;}
.y29_c00331{bottom:901.905000px;}
.y2b_c00331{bottom:902.745000px;}
.y2a_c00331{bottom:902.970000px;}
.y24_c00331{bottom:904.050000px;}
.y27_c00331{bottom:904.245000px;}
.y25_c00331{bottom:904.905000px;}
.y28_c00331{bottom:905.325000px;}
.y26_c00331{bottom:906.405000px;}
.y23_c00331{bottom:923.745000px;}
.y22_c00331{bottom:925.470000px;}
.y21_c00331{bottom:925.905000px;}
.y1c_c00331{bottom:942.825000px;}
.y20_c00331{bottom:943.245000px;}
.y1f_c00331{bottom:944.130000px;}
.y1d_c00331{bottom:944.970000px;}
.y1e_c00331{bottom:945.405000px;}
.y1a_c00331{bottom:962.745000px;}
.y1b_c00331{bottom:964.905000px;}
.y16_c00331{bottom:981.825000px;}
.y18_c00331{bottom:982.245000px;}
.y19_c00331{bottom:983.130000px;}
.y17_c00331{bottom:984.405000px;}
.y13_c00331{bottom:1001.745000px;}
.y15_c00331{bottom:1003.470000px;}
.y14_c00331{bottom:1003.905000px;}
.yf_c00331{bottom:1021.245000px;}
.y11_c00331{bottom:1022.130000px;}
.y12_c00331{bottom:1022.325000px;}
.ye_c00331{bottom:1023.405000px;}
.y10_c00331{bottom:1024.470000px;}
.yd_c00331{bottom:1038.405000px;}
.ya_c00331{bottom:1040.745000px;}
.yb_c00331{bottom:1040.970000px;}
.y9_c00331{bottom:1042.905000px;}
.yc_c00331{bottom:1043.970000px;}
.y4_c00331{bottom:1059.405000px;}
.y6_c00331{bottom:1060.245000px;}
.y8_c00331{bottom:1061.130000px;}
.y7_c00331{bottom:1061.745000px;}
.y3_c00331{bottom:1062.405000px;}
.y5_c00331{bottom:1063.905000px;}
.y2_c00331{bottom:1100.970000px;}
.y1_c00331{bottom:1102.050000px;}
.h8_c00331{height:4.206533px;}
.ha_c00331{height:14.612168px;}
.h9_c00331{height:16.752334px;}
.h6_c00331{height:23.025234px;}
.h1_c00331{height:25.091602px;}
.h2_c00331{height:31.364502px;}
.h3_c00331{height:35.571035px;}
.h7_c00331{height:39.777568px;}
.h5_c00331{height:43.910303px;}
.h4_c00331{height:53.571035px;}
.h0_c00331{height:1335.000000px;}
.w0_c00331{width:880.500000px;}
.x0_c00331{left:0.000000px;}
.x27_c00331{left:151.920000px;}
.x2_c00331{left:153.000000px;}
.x56_c00331{left:168.000000px;}
.x86_c00331{left:169.500000px;}
.xa5_c00331{left:171.000000px;}
.x8e_c00331{left:172.500000px;}
.x71_c00331{left:175.080000px;}
.x1b_c00331{left:180.000000px;}
.x3_c00331{left:183.000000px;}
.xa6_c00331{left:184.920000px;}
.x5e_c00331{left:187.500000px;}
.x7b_c00331{left:189.000000px;}
.x87_c00331{left:190.500000px;}
.x28_c00331{left:192.420000px;}
.xb1_c00331{left:195.000000px;}
.xc6_c00331{left:197.580000px;}
.xf_c00331{left:199.080000px;}
.x8f_c00331{left:202.920000px;}
.xc0_c00331{left:204.000000px;}
.x4b_c00331{left:211.080000px;}
.xd9_c00331{left:214.500000px;}
.x40_c00331{left:220.080000px;}
.x34_c00331{left:221.580000px;}
.x7c_c00331{left:225.420000px;}
.x5f_c00331{left:227.580000px;}
.x10_c00331{left:231.000000px;}
.xa7_c00331{left:232.500000px;}
.x1c_c00331{left:234.000000px;}
.x29_c00331{left:237.000000px;}
.xd3_c00331{left:238.920000px;}
.xb9_c00331{left:240.000000px;}
.x4_c00331{left:244.500000px;}
.xe6_c00331{left:246.000000px;}
.xdc_c00331{left:249.000000px;}
.x72_c00331{left:251.580000px;}
.x35_c00331{left:253.920000px;}
.x4c_c00331{left:255.000000px;}
.x88_c00331{left:256.920000px;}
.x69_c00331{left:258.000000px;}
.x7d_c00331{left:259.920000px;}
.x57_c00331{left:261.000000px;}
.xcb_c00331{left:265.500000px;}
.x90_c00331{left:268.920000px;}
.x41_c00331{left:271.500000px;}
.xda_c00331{left:273.000000px;}
.x1d_c00331{left:276.000000px;}
.xee_c00331{left:277.500000px;}
.x5_c00331{left:279.000000px;}
.xb2_c00331{left:280.500000px;}
.xeb_c00331{left:281.580000px;}
.xc1_c00331{left:283.500000px;}
.xef_c00331{left:285.420000px;}
.x4d_c00331{left:286.500000px;}
.x11_c00331{left:288.420000px;}
.xcc_c00331{left:289.500000px;}
.x95_c00331{left:290.580000px;}
.x7e_c00331{left:293.580000px;}
.x89_c00331{left:297.000000px;}
.x73_c00331{left:298.500000px;}
.xa8_c00331{left:299.580000px;}
.xf3_c00331{left:302.580000px;}
.xea_c00331{left:304.080000px;}
.x1e_c00331{left:306.000000px;}
.x60_c00331{left:307.500000px;}
.x96_c00331{left:310.080000px;}
.xa9_c00331{left:317.580000px;}
.x2a_c00331{left:320.580000px;}
.x7f_c00331{left:323.580000px;}
.xf0_c00331{left:327.000000px;}
.xad_c00331{left:328.500000px;}
.x9e_c00331{left:329.580000px;}
.x74_c00331{left:331.080000px;}
.x42_c00331{left:334.080000px;}
.x8a_c00331{left:336.000000px;}
.xaa_c00331{left:337.500000px;}
.xf1_c00331{left:338.580000px;}
.xba_c00331{left:340.500000px;}
.x4e_c00331{left:342.000000px;}
.x2b_c00331{left:345.420000px;}
.x1f_c00331{left:348.000000px;}
.x97_c00331{left:352.500000px;}
.xb3_c00331{left:354.420000px;}
.xbb_c00331{left:357.000000px;}
.x6a_c00331{left:359.580000px;}
.x75_c00331{left:361.080000px;}
.x4f_c00331{left:363.420000px;}
.xf2_c00331{left:366.000000px;}
.x36_c00331{left:367.920000px;}
.x80_c00331{left:369.000000px;}
.x6_c00331{left:370.500000px;}
.x2c_c00331{left:372.000000px;}
.xdd_c00331{left:373.920000px;}
.x6b_c00331{left:376.500000px;}
.x12_c00331{left:378.420000px;}
.x61_c00331{left:379.500000px;}
.x58_c00331{left:381.420000px;}
.xc2_c00331{left:382.500000px;}
.x7_c00331{left:388.920000px;}
.xe4_c00331{left:390.000000px;}
.x43_c00331{left:391.080000px;}
.x37_c00331{left:396.000000px;}
.x6c_c00331{left:397.080000px;}
.xe1_c00331{left:399.000000px;}
.xc3_c00331{left:402.420000px;}
.x1_c00331{left:403.500000px;}
.x81_c00331{left:406.500000px;}
.x59_c00331{left:408.000000px;}
.x9f_c00331{left:409.500000px;}
.xb4_c00331{left:410.580000px;}
.xdb_c00331{left:412.500000px;}
.xde_c00331{left:414.000000px;}
.xab_c00331{left:415.920000px;}
.x62_c00331{left:417.000000px;}
.x98_c00331{left:418.080000px;}
.x20_c00331{left:421.500000px;}
.x50_c00331{left:422.580000px;}
.xbc_c00331{left:424.500000px;}
.xe9_c00331{left:426.420000px;}
.xae_c00331{left:431.580000px;}
.x13_c00331{left:435.000000px;}
.x6d_c00331{left:438.000000px;}
.xd4_c00331{left:439.080000px;}
.x38_c00331{left:440.355000px;}
.xe5_c00331{left:444.000000px;}
.x2d_c00331{left:445.500000px;}
.x21_c00331{left:446.580000px;}
.xac_c00331{left:448.500000px;}
.x44_c00331{left:450.000000px;}
.x14_c00331{left:451.500000px;}
.x51_c00331{left:452.580000px;}
.x63_c00331{left:456.000000px;}
.xe2_c00331{left:457.080000px;}
.xc7_c00331{left:460.920000px;}
.x82_c00331{left:462.420000px;}
.x99_c00331{left:465.000000px;}
.x8b_c00331{left:466.500000px;}
.x22_c00331{left:468.000000px;}
.x15_c00331{left:469.500000px;}
.xbd_c00331{left:471.000000px;}
.x39_c00331{left:474.000000px;}
.xdf_c00331{left:478.920000px;}
.xb5_c00331{left:481.500000px;}
.x45_c00331{left:483.000000px;}
.xc4_c00331{left:486.420000px;}
.xd5_c00331{left:487.500000px;}
.xc8_c00331{left:489.000000px;}
.x8_c00331{left:490.500000px;}
.x76_c00331{left:493.080000px;}
.x64_c00331{left:494.580000px;}
.x2e_c00331{left:498.420000px;}
.xec_c00331{left:499.500000px;}
.xd6_c00331{left:502.500000px;}
.x6e_c00331{left:504.420000px;}
.xa0_c00331{left:506.580000px;}
.x3a_c00331{left:508.080000px;}
.xbe_c00331{left:510.420000px;}
.x5a_c00331{left:511.920000px;}
.x46_c00331{left:513.000000px;}
.x83_c00331{left:515.580000px;}
.x23_c00331{left:517.080000px;}
.xcd_c00331{left:519.000000px;}
.x65_c00331{left:523.080000px;}
.x16_c00331{left:525.000000px;}
.x52_c00331{left:526.920000px;}
.x8c_c00331{left:529.920000px;}
.xb6_c00331{left:531.000000px;}
.xc9_c00331{left:532.080000px;}
.xe7_c00331{left:534.420000px;}
.x9_c00331{left:535.920000px;}
.xed_c00331{left:538.500000px;}
.xce_c00331{left:541.920000px;}
.x84_c00331{left:546.000000px;}
.x24_c00331{left:548.355000px;}
.x5b_c00331{left:549.420000px;}
.x6f_c00331{left:552.420000px;}
.x91_c00331{left:555.000000px;}
.x66_c00331{left:556.080000px;}
.x47_c00331{left:558.000000px;}
.x2f_c00331{left:560.580000px;}
.x17_c00331{left:562.920000px;}
.xcf_c00331{left:565.500000px;}
.x53_c00331{left:566.580000px;}
.x9a_c00331{left:572.145000px;}
.xa_c00331{left:574.920000px;}
.xe8_c00331{left:576.000000px;}
.xca_c00331{left:577.500000px;}
.x92_c00331{left:579.000000px;}
.xd0_c00331{left:580.920000px;}
.x85_c00331{left:582.420000px;}
.x54_c00331{left:583.500000px;}
.xe3_c00331{left:585.420000px;}
.x70_c00331{left:589.080000px;}
.x18_c00331{left:591.000000px;}
.xe0_c00331{left:594.000000px;}
.xa1_c00331{left:596.580000px;}
.x77_c00331{left:599.580000px;}
.x3b_c00331{left:601.500000px;}
.x48_c00331{left:604.500000px;}
.x55_c00331{left:606.420000px;}
.xb_c00331{left:608.580000px;}
.x5c_c00331{left:611.145000px;}
.xd7_c00331{left:612.420000px;}
.xd1_c00331{left:615.000000px;}
.x67_c00331{left:616.500000px;}
.x9b_c00331{left:617.580000px;}
.x3c_c00331{left:621.420000px;}
.x19_c00331{left:622.500000px;}
.x25_c00331{left:624.000000px;}
.x78_c00331{left:634.500000px;}
.xd8_c00331{left:636.000000px;}
.x93_c00331{left:640.080000px;}
.xc_c00331{left:641.580000px;}
.x30_c00331{left:643.500000px;}
.xd2_c00331{left:649.500000px;}
.xbf_c00331{left:651.000000px;}
.xc5_c00331{left:654.000000px;}
.x3d_c00331{left:657.000000px;}
.x31_c00331{left:658.500000px;}
.x8d_c00331{left:661.500000px;}
.xb7_c00331{left:663.000000px;}
.x9c_c00331{left:664.500000px;}
.xa2_c00331{left:666.000000px;}
.x79_c00331{left:667.080000px;}
.x1a_c00331{left:669.000000px;}
.xaf_c00331{left:673.500000px;}
.xd_c00331{left:675.000000px;}
.x3e_c00331{left:678.420000px;}
.x49_c00331{left:680.580000px;}
.x32_c00331{left:682.920000px;}
.xa3_c00331{left:684.000000px;}
.xb8_c00331{left:685.500000px;}
.x5d_c00331{left:686.775000px;}
.x94_c00331{left:688.500000px;}
.x9d_c00331{left:691.500000px;}
.x26_c00331{left:694.920000px;}
.x7a_c00331{left:700.500000px;}
.xb0_c00331{left:702.420000px;}
.x3f_c00331{left:705.000000px;}
.x33_c00331{left:708.420000px;}
.xa4_c00331{left:715.500000px;}
.x4a_c00331{left:717.000000px;}
.x68_c00331{left:721.080000px;}
.xe_c00331{left:723.000000px;}
@media print{
.v2_c00331{vertical-align:-5.333333pt;}
.v0_c00331{vertical-align:0.000000pt;}
.v1_c00331{vertical-align:16.000000pt;}
.ls1_c00331{letter-spacing:0.000000pt;}
.ls0_c00331{letter-spacing:69.293615pt;}
.ws2_c00331{word-spacing:-79.011375pt;}
.ws0_c00331{word-spacing:-7.714337pt;}
.wsd_c00331{word-spacing:0.000000pt;}
.ws5_c00331{word-spacing:12.099545pt;}
.wsa_c00331{word-spacing:17.260429pt;}
.ws8_c00331{word-spacing:17.440722pt;}
.ws6_c00331{word-spacing:19.176041pt;}
.ws7_c00331{word-spacing:21.091652pt;}
.ws4_c00331{word-spacing:28.027052pt;}
.wsc_c00331{word-spacing:29.748814pt;}
.ws9_c00331{word-spacing:29.900800pt;}
.wsb_c00331{word-spacing:35.496655pt;}
.ws1_c00331{word-spacing:42.417089pt;}
.ws3_c00331{word-spacing:59.575855pt;}
._0_c00331{margin-left:-8.727273pt;}
._3_c00331{width:22.415110pt;}
._1_c00331{width:24.511015pt;}
._4_c00331{width:26.246334pt;}
._5_c00331{width:28.161946pt;}
._2_c00331{width:30.077557pt;}
.fs6_c00331{font-size:3.040000pt;}
.fs8_c00331{font-size:10.560000pt;}
.fs7_c00331{font-size:12.106667pt;}
.fs4_c00331{font-size:16.640000pt;}
.fs0_c00331{font-size:18.133333pt;}
.fs1_c00331{font-size:22.666667pt;}
.fs2_c00331{font-size:25.706667pt;}
.fs5_c00331{font-size:28.746667pt;}
.fs3_c00331{font-size:31.733333pt;}
.y0_c00331{bottom:0.000000pt;}
.y87_c00331{bottom:224.733333pt;}
.y84_c00331{bottom:225.106667pt;}
.y85_c00331{bottom:225.893333pt;}
.y88_c00331{bottom:226.640000pt;}
.y83_c00331{bottom:227.026667pt;}
.y86_c00331{bottom:228.360000pt;}
.y82_c00331{bottom:244.360000pt;}
.y81_c00331{bottom:261.106667pt;}
.y7d_c00331{bottom:261.693333pt;}
.y80_c00331{bottom:261.893333pt;}
.y7f_c00331{bottom:262.066667pt;}
.y7e_c00331{bottom:263.026667pt;}
.y7b_c00331{bottom:277.693333pt;}
.y78_c00331{bottom:278.440000pt;}
.y75_c00331{bottom:279.026667pt;}
.y77_c00331{bottom:279.226667pt;}
.y7c_c00331{bottom:279.400000pt;}
.y79_c00331{bottom:279.973333pt;}
.y76_c00331{bottom:280.360000pt;}
.y7a_c00331{bottom:281.306667pt;}
.y70_c00331{bottom:295.400000pt;}
.y74_c00331{bottom:295.773333pt;}
.y72_c00331{bottom:296.560000pt;}
.y73_c00331{bottom:297.106667pt;}
.y71_c00331{bottom:297.693333pt;}
.y6a_c00331{bottom:313.106667pt;}
.y69_c00331{bottom:313.893333pt;}
.y6b_c00331{bottom:314.066667pt;}
.y68_c00331{bottom:315.026667pt;}
.y6f_c00331{bottom:315.226667pt;}
.y6c_c00331{bottom:315.400000pt;}
.y6e_c00331{bottom:315.973333pt;}
.y6d_c00331{bottom:316.360000pt;}
.y67_c00331{bottom:329.693333pt;}
.y66_c00331{bottom:331.773333pt;}
.y62_c00331{bottom:332.360000pt;}
.y65_c00331{bottom:332.560000pt;}
.y63_c00331{bottom:332.733333pt;}
.y64_c00331{bottom:333.693333pt;}
.y61_c00331{bottom:347.773333pt;}
.y5e_c00331{bottom:348.733333pt;}
.y60_c00331{bottom:349.106667pt;}
.y5a_c00331{bottom:349.693333pt;}
.y5f_c00331{bottom:349.893333pt;}
.y5b_c00331{bottom:350.066667pt;}
.y5d_c00331{bottom:350.640000pt;}
.y5c_c00331{bottom:351.026667pt;}
.y56_c00331{bottom:366.440000pt;}
.y59_c00331{bottom:367.026667pt;}
.y58_c00331{bottom:367.226667pt;}
.y57_c00331{bottom:367.400000pt;}
.y53_c00331{bottom:368.360000pt;}
.y54_c00331{bottom:368.373333pt;}
.y55_c00331{bottom:369.306667pt;}
.yce_c00331{bottom:396.560000pt;}
.ycd_c00331{bottom:397.506667pt;}
.ycf_c00331{bottom:397.706667pt;}
.ycb_c00331{bottom:397.893333pt;}
.ycc_c00331{bottom:398.840000pt;}
.yc9_c00331{bottom:408.560000pt;}
.yc8_c00331{bottom:409.893333pt;}
.yc6_c00331{bottom:410.840000pt;}
.yca_c00331{bottom:411.040000pt;}
.yc5_c00331{bottom:411.226667pt;}
.yc7_c00331{bottom:412.173333pt;}
.yc4_c00331{bottom:421.893333pt;}
.yc2_c00331{bottom:422.840000pt;}
.yc0_c00331{bottom:423.226667pt;}
.yc1_c00331{bottom:423.800000pt;}
.yc3_c00331{bottom:424.173333pt;}
.ybf_c00331{bottom:433.893333pt;}
.ybe_c00331{bottom:434.840000pt;}
.ybd_c00331{bottom:435.226667pt;}
.ybc_c00331{bottom:436.173333pt;}
.ybb_c00331{bottom:446.840000pt;}
.yb9_c00331{bottom:447.226667pt;}
.yba_c00331{bottom:448.173333pt;}
.yb6_c00331{bottom:458.840000pt;}
.yb8_c00331{bottom:459.040000pt;}
.yb4_c00331{bottom:459.226667pt;}
.yb7_c00331{bottom:459.800000pt;}
.yb5_c00331{bottom:460.173333pt;}
.yb3_c00331{bottom:471.226667pt;}
.yb2_c00331{bottom:472.173333pt;}
.yb1_c00331{bottom:473.506667pt;}
.yaf_c00331{bottom:484.173333pt;}
.yb0_c00331{bottom:484.373333pt;}
.yae_c00331{bottom:484.560000pt;}
.yad_c00331{bottom:485.506667pt;}
.yac_c00331{bottom:496.173333pt;}
.yab_c00331{bottom:496.560000pt;}
.yaa_c00331{bottom:508.173333pt;}
.ya9_c00331{bottom:508.560000pt;}
.ya7_c00331{bottom:508.933333pt;}
.ya8_c00331{bottom:509.506667pt;}
.ya6_c00331{bottom:519.226667pt;}
.ya5_c00331{bottom:520.560000pt;}
.ya4_c00331{bottom:521.506667pt;}
.ya3_c00331{bottom:521.893333pt;}
.ya2_c00331{bottom:522.840000pt;}
.ya1_c00331{bottom:532.560000pt;}
.ya0_c00331{bottom:533.506667pt;}
.y9f_c00331{bottom:533.893333pt;}
.y9e_c00331{bottom:549.893333pt;}
.y9d_c00331{bottom:550.840000pt;}
.y9c_c00331{bottom:561.506667pt;}
.y9b_c00331{bottom:561.893333pt;}
.y9a_c00331{bottom:562.840000pt;}
.y98_c00331{bottom:563.226667pt;}
.y99_c00331{bottom:564.173333pt;}
.y97_c00331{bottom:573.506667pt;}
.y96_c00331{bottom:574.840000pt;}
.y95_c00331{bottom:591.026667pt;}
.y93_c00331{bottom:591.973333pt;}
.y94_c00331{bottom:592.933333pt;}
.y91_c00331{bottom:603.400000pt;}
.y92_c00331{bottom:604.360000pt;}
.y90_c00331{bottom:605.306667pt;}
.y8f_c00331{bottom:606.266667pt;}
.y8e_c00331{bottom:617.693333pt;}
.y8c_c00331{bottom:618.266667pt;}
.y8d_c00331{bottom:618.640000pt;}
.y8b_c00331{bottom:619.600000pt;}
.y8a_c00331{bottom:635.026667pt;}
.y89_c00331{bottom:636.933333pt;}
.y50_c00331{bottom:661.693333pt;}
.y51_c00331{bottom:662.440000pt;}
.y52_c00331{bottom:663.400000pt;}
.y4e_c00331{bottom:664.360000pt;}
.y4f_c00331{bottom:664.560000pt;}
.y4b_c00331{bottom:681.893333pt;}
.y4d_c00331{bottom:682.640000pt;}
.y4c_c00331{bottom:683.026667pt;}
.y46_c00331{bottom:698.440000pt;}
.y4a_c00331{bottom:699.026667pt;}
.y49_c00331{bottom:699.226667pt;}
.y48_c00331{bottom:700.360000pt;}
.y47_c00331{bottom:701.306667pt;}
.y42_c00331{bottom:713.693333pt;}
.y43_c00331{bottom:715.773333pt;}
.y41_c00331{bottom:715.973333pt;}
.y45_c00331{bottom:717.306667pt;}
.y44_c00331{bottom:717.693333pt;}
.y3e_c00331{bottom:733.106667pt;}
.y3f_c00331{bottom:733.893333pt;}
.y40_c00331{bottom:734.640000pt;}
.y3d_c00331{bottom:735.026667pt;}
.y3c_c00331{bottom:735.973333pt;}
.y39_c00331{bottom:749.693333pt;}
.y3b_c00331{bottom:750.440000pt;}
.y3a_c00331{bottom:750.640000pt;}
.y38_c00331{bottom:751.400000pt;}
.y37_c00331{bottom:752.360000pt;}
.y35_c00331{bottom:767.026667pt;}
.y30_c00331{bottom:767.773333pt;}
.y33_c00331{bottom:767.973333pt;}
.y36_c00331{bottom:768.733333pt;}
.y32_c00331{bottom:769.106667pt;}
.y31_c00331{bottom:769.693333pt;}
.y34_c00331{bottom:770.640000pt;}
.y2c_c00331{bottom:785.106667pt;}
.y2d_c00331{bottom:787.026667pt;}
.y2f_c00331{bottom:787.226667pt;}
.y2e_c00331{bottom:787.973333pt;}
.y29_c00331{bottom:801.693333pt;}
.y2b_c00331{bottom:802.440000pt;}
.y2a_c00331{bottom:802.640000pt;}
.y24_c00331{bottom:803.600000pt;}
.y27_c00331{bottom:803.773333pt;}
.y25_c00331{bottom:804.360000pt;}
.y28_c00331{bottom:804.733333pt;}
.y26_c00331{bottom:805.693333pt;}
.y23_c00331{bottom:821.106667pt;}
.y22_c00331{bottom:822.640000pt;}
.y21_c00331{bottom:823.026667pt;}
.y1c_c00331{bottom:838.066667pt;}
.y20_c00331{bottom:838.440000pt;}
.y1f_c00331{bottom:839.226667pt;}
.y1d_c00331{bottom:839.973333pt;}
.y1e_c00331{bottom:840.360000pt;}
.y1a_c00331{bottom:855.773333pt;}
.y1b_c00331{bottom:857.693333pt;}
.y16_c00331{bottom:872.733333pt;}
.y18_c00331{bottom:873.106667pt;}
.y19_c00331{bottom:873.893333pt;}
.y17_c00331{bottom:875.026667pt;}
.y13_c00331{bottom:890.440000pt;}
.y15_c00331{bottom:891.973333pt;}
.y14_c00331{bottom:892.360000pt;}
.yf_c00331{bottom:907.773333pt;}
.y11_c00331{bottom:908.560000pt;}
.y12_c00331{bottom:908.733333pt;}
.ye_c00331{bottom:909.693333pt;}
.y10_c00331{bottom:910.640000pt;}
.yd_c00331{bottom:923.026667pt;}
.ya_c00331{bottom:925.106667pt;}
.yb_c00331{bottom:925.306667pt;}
.y9_c00331{bottom:927.026667pt;}
.yc_c00331{bottom:927.973333pt;}
.y4_c00331{bottom:941.693333pt;}
.y6_c00331{bottom:942.440000pt;}
.y8_c00331{bottom:943.226667pt;}
.y7_c00331{bottom:943.773333pt;}
.y3_c00331{bottom:944.360000pt;}
.y5_c00331{bottom:945.693333pt;}
.y2_c00331{bottom:978.640000pt;}
.y1_c00331{bottom:979.600000pt;}
.h8_c00331{height:3.739141pt;}
.ha_c00331{height:12.988594pt;}
.h9_c00331{height:14.890964pt;}
.h6_c00331{height:20.466875pt;}
.h1_c00331{height:22.303646pt;}
.h2_c00331{height:27.879557pt;}
.h3_c00331{height:31.618698pt;}
.h7_c00331{height:35.357839pt;}
.h5_c00331{height:39.031380pt;}
.h4_c00331{height:47.618698pt;}
.h0_c00331{height:1186.666667pt;}
.w0_c00331{width:782.666667pt;}
.x0_c00331{left:0.000000pt;}
.x27_c00331{left:135.040000pt;}
.x2_c00331{left:136.000000pt;}
.x56_c00331{left:149.333333pt;}
.x86_c00331{left:150.666667pt;}
.xa5_c00331{left:152.000000pt;}
.x8e_c00331{left:153.333333pt;}
.x71_c00331{left:155.626667pt;}
.x1b_c00331{left:160.000000pt;}
.x3_c00331{left:162.666667pt;}
.xa6_c00331{left:164.373333pt;}
.x5e_c00331{left:166.666667pt;}
.x7b_c00331{left:168.000000pt;}
.x87_c00331{left:169.333333pt;}
.x28_c00331{left:171.040000pt;}
.xb1_c00331{left:173.333333pt;}
.xc6_c00331{left:175.626667pt;}
.xf_c00331{left:176.960000pt;}
.x8f_c00331{left:180.373333pt;}
.xc0_c00331{left:181.333333pt;}
.x4b_c00331{left:187.626667pt;}
.xd9_c00331{left:190.666667pt;}
.x40_c00331{left:195.626667pt;}
.x34_c00331{left:196.960000pt;}
.x7c_c00331{left:200.373333pt;}
.x5f_c00331{left:202.293333pt;}
.x10_c00331{left:205.333333pt;}
.xa7_c00331{left:206.666667pt;}
.x1c_c00331{left:208.000000pt;}
.x29_c00331{left:210.666667pt;}
.xd3_c00331{left:212.373333pt;}
.xb9_c00331{left:213.333333pt;}
.x4_c00331{left:217.333333pt;}
.xe6_c00331{left:218.666667pt;}
.xdc_c00331{left:221.333333pt;}
.x72_c00331{left:223.626667pt;}
.x35_c00331{left:225.706667pt;}
.x4c_c00331{left:226.666667pt;}
.x88_c00331{left:228.373333pt;}
.x69_c00331{left:229.333333pt;}
.x7d_c00331{left:231.040000pt;}
.x57_c00331{left:232.000000pt;}
.xcb_c00331{left:236.000000pt;}
.x90_c00331{left:239.040000pt;}
.x41_c00331{left:241.333333pt;}
.xda_c00331{left:242.666667pt;}
.x1d_c00331{left:245.333333pt;}
.xee_c00331{left:246.666667pt;}
.x5_c00331{left:248.000000pt;}
.xb2_c00331{left:249.333333pt;}
.xeb_c00331{left:250.293333pt;}
.xc1_c00331{left:252.000000pt;}
.xef_c00331{left:253.706667pt;}
.x4d_c00331{left:254.666667pt;}
.x11_c00331{left:256.373333pt;}
.xcc_c00331{left:257.333333pt;}
.x95_c00331{left:258.293333pt;}
.x7e_c00331{left:260.960000pt;}
.x89_c00331{left:264.000000pt;}
.x73_c00331{left:265.333333pt;}
.xa8_c00331{left:266.293333pt;}
.xf3_c00331{left:268.960000pt;}
.xea_c00331{left:270.293333pt;}
.x1e_c00331{left:272.000000pt;}
.x60_c00331{left:273.333333pt;}
.x96_c00331{left:275.626667pt;}
.xa9_c00331{left:282.293333pt;}
.x2a_c00331{left:284.960000pt;}
.x7f_c00331{left:287.626667pt;}
.xf0_c00331{left:290.666667pt;}
.xad_c00331{left:292.000000pt;}
.x9e_c00331{left:292.960000pt;}
.x74_c00331{left:294.293333pt;}
.x42_c00331{left:296.960000pt;}
.x8a_c00331{left:298.666667pt;}
.xaa_c00331{left:300.000000pt;}
.xf1_c00331{left:300.960000pt;}
.xba_c00331{left:302.666667pt;}
.x4e_c00331{left:304.000000pt;}
.x2b_c00331{left:307.040000pt;}
.x1f_c00331{left:309.333333pt;}
.x97_c00331{left:313.333333pt;}
.xb3_c00331{left:315.040000pt;}
.xbb_c00331{left:317.333333pt;}
.x6a_c00331{left:319.626667pt;}
.x75_c00331{left:320.960000pt;}
.x4f_c00331{left:323.040000pt;}
.xf2_c00331{left:325.333333pt;}
.x36_c00331{left:327.040000pt;}
.x80_c00331{left:328.000000pt;}
.x6_c00331{left:329.333333pt;}
.x2c_c00331{left:330.666667pt;}
.xdd_c00331{left:332.373333pt;}
.x6b_c00331{left:334.666667pt;}
.x12_c00331{left:336.373333pt;}
.x61_c00331{left:337.333333pt;}
.x58_c00331{left:339.040000pt;}
.xc2_c00331{left:340.000000pt;}
.x7_c00331{left:345.706667pt;}
.xe4_c00331{left:346.666667pt;}
.x43_c00331{left:347.626667pt;}
.x37_c00331{left:352.000000pt;}
.x6c_c00331{left:352.960000pt;}
.xe1_c00331{left:354.666667pt;}
.xc3_c00331{left:357.706667pt;}
.x1_c00331{left:358.666667pt;}
.x81_c00331{left:361.333333pt;}
.x59_c00331{left:362.666667pt;}
.x9f_c00331{left:364.000000pt;}
.xb4_c00331{left:364.960000pt;}
.xdb_c00331{left:366.666667pt;}
.xde_c00331{left:368.000000pt;}
.xab_c00331{left:369.706667pt;}
.x62_c00331{left:370.666667pt;}
.x98_c00331{left:371.626667pt;}
.x20_c00331{left:374.666667pt;}
.x50_c00331{left:375.626667pt;}
.xbc_c00331{left:377.333333pt;}
.xe9_c00331{left:379.040000pt;}
.xae_c00331{left:383.626667pt;}
.x13_c00331{left:386.666667pt;}
.x6d_c00331{left:389.333333pt;}
.xd4_c00331{left:390.293333pt;}
.x38_c00331{left:391.426667pt;}
.xe5_c00331{left:394.666667pt;}
.x2d_c00331{left:396.000000pt;}
.x21_c00331{left:396.960000pt;}
.xac_c00331{left:398.666667pt;}
.x44_c00331{left:400.000000pt;}
.x14_c00331{left:401.333333pt;}
.x51_c00331{left:402.293333pt;}
.x63_c00331{left:405.333333pt;}
.xe2_c00331{left:406.293333pt;}
.xc7_c00331{left:409.706667pt;}
.x82_c00331{left:411.040000pt;}
.x99_c00331{left:413.333333pt;}
.x8b_c00331{left:414.666667pt;}
.x22_c00331{left:416.000000pt;}
.x15_c00331{left:417.333333pt;}
.xbd_c00331{left:418.666667pt;}
.x39_c00331{left:421.333333pt;}
.xdf_c00331{left:425.706667pt;}
.xb5_c00331{left:428.000000pt;}
.x45_c00331{left:429.333333pt;}
.xc4_c00331{left:432.373333pt;}
.xd5_c00331{left:433.333333pt;}
.xc8_c00331{left:434.666667pt;}
.x8_c00331{left:436.000000pt;}
.x76_c00331{left:438.293333pt;}
.x64_c00331{left:439.626667pt;}
.x2e_c00331{left:443.040000pt;}
.xec_c00331{left:444.000000pt;}
.xd6_c00331{left:446.666667pt;}
.x6e_c00331{left:448.373333pt;}
.xa0_c00331{left:450.293333pt;}
.x3a_c00331{left:451.626667pt;}
.xbe_c00331{left:453.706667pt;}
.x5a_c00331{left:455.040000pt;}
.x46_c00331{left:456.000000pt;}
.x83_c00331{left:458.293333pt;}
.x23_c00331{left:459.626667pt;}
.xcd_c00331{left:461.333333pt;}
.x65_c00331{left:464.960000pt;}
.x16_c00331{left:466.666667pt;}
.x52_c00331{left:468.373333pt;}
.x8c_c00331{left:471.040000pt;}
.xb6_c00331{left:472.000000pt;}
.xc9_c00331{left:472.960000pt;}
.xe7_c00331{left:475.040000pt;}
.x9_c00331{left:476.373333pt;}
.xed_c00331{left:478.666667pt;}
.xce_c00331{left:481.706667pt;}
.x84_c00331{left:485.333333pt;}
.x24_c00331{left:487.426667pt;}
.x5b_c00331{left:488.373333pt;}
.x6f_c00331{left:491.040000pt;}
.x91_c00331{left:493.333333pt;}
.x66_c00331{left:494.293333pt;}
.x47_c00331{left:496.000000pt;}
.x2f_c00331{left:498.293333pt;}
.x17_c00331{left:500.373333pt;}
.xcf_c00331{left:502.666667pt;}
.x53_c00331{left:503.626667pt;}
.x9a_c00331{left:508.573333pt;}
.xa_c00331{left:511.040000pt;}
.xe8_c00331{left:512.000000pt;}
.xca_c00331{left:513.333333pt;}
.x92_c00331{left:514.666667pt;}
.xd0_c00331{left:516.373333pt;}
.x85_c00331{left:517.706667pt;}
.x54_c00331{left:518.666667pt;}
.xe3_c00331{left:520.373333pt;}
.x70_c00331{left:523.626667pt;}
.x18_c00331{left:525.333333pt;}
.xe0_c00331{left:528.000000pt;}
.xa1_c00331{left:530.293333pt;}
.x77_c00331{left:532.960000pt;}
.x3b_c00331{left:534.666667pt;}
.x48_c00331{left:537.333333pt;}
.x55_c00331{left:539.040000pt;}
.xb_c00331{left:540.960000pt;}
.x5c_c00331{left:543.240000pt;}
.xd7_c00331{left:544.373333pt;}
.xd1_c00331{left:546.666667pt;}
.x67_c00331{left:548.000000pt;}
.x9b_c00331{left:548.960000pt;}
.x3c_c00331{left:552.373333pt;}
.x19_c00331{left:553.333333pt;}
.x25_c00331{left:554.666667pt;}
.x78_c00331{left:564.000000pt;}
.xd8_c00331{left:565.333333pt;}
.x93_c00331{left:568.960000pt;}
.xc_c00331{left:570.293333pt;}
.x30_c00331{left:572.000000pt;}
.xd2_c00331{left:577.333333pt;}
.xbf_c00331{left:578.666667pt;}
.xc5_c00331{left:581.333333pt;}
.x3d_c00331{left:584.000000pt;}
.x31_c00331{left:585.333333pt;}
.x8d_c00331{left:588.000000pt;}
.xb7_c00331{left:589.333333pt;}
.x9c_c00331{left:590.666667pt;}
.xa2_c00331{left:592.000000pt;}
.x79_c00331{left:592.960000pt;}
.x1a_c00331{left:594.666667pt;}
.xaf_c00331{left:598.666667pt;}
.xd_c00331{left:600.000000pt;}
.x3e_c00331{left:603.040000pt;}
.x49_c00331{left:604.960000pt;}
.x32_c00331{left:607.040000pt;}
.xa3_c00331{left:608.000000pt;}
.xb8_c00331{left:609.333333pt;}
.x5d_c00331{left:610.466667pt;}
.x94_c00331{left:612.000000pt;}
.x9d_c00331{left:614.666667pt;}
.x26_c00331{left:617.706667pt;}
.x7a_c00331{left:622.666667pt;}
.xb0_c00331{left:624.373333pt;}
.x3f_c00331{left:626.666667pt;}
.x33_c00331{left:629.706667pt;}
.xa4_c00331{left:636.000000pt;}
.x4a_c00331{left:637.333333pt;}
.x68_c00331{left:640.960000pt;}
.xe_c00331{left:642.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_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_8c55b155fbe942f2b9e38f58.woff2')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md6_c00332{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.me5_c00332{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.ma_c00332{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m4e_c00332{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.maa_c00332{transform:matrix(0.363173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363173,0.000000,0.000000,0.250000,0,0);}
.m16_c00332{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m7e_c00332{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m20_c00332{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m8a_c00332{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m41_c00332{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m93_c00332{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mca_c00332{transform:matrix(0.380252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380252,0.000000,0.000000,0.250000,0,0);}
.m8b_c00332{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.mb2_c00332{transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);}
.m9c_c00332{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m1f_c00332{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m7c_c00332{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mcb_c00332{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m17_c00332{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.mdb_c00332{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m82_c00332{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m98_c00332{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.mac_c00332{transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);}
.me2_c00332{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m9d_c00332{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m8c_c00332{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m9e_c00332{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);}
.m19_c00332{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m36_c00332{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m38_c00332{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.me8_c00332{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mb1_c00332{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m53_c00332{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m66_c00332{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m3c_c00332{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mc1_c00332{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m6e_c00332{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.md8_c00332{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.mbb_c00332{transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);}
.m9f_c00332{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.ma8_c00332{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m59_c00332{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.ma0_c00332{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.mad_c00332{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m95_c00332{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mef_c00332{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m3b_c00332{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m96_c00332{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m85_c00332{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m42_c00332{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.me3_c00332{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m30_c00332{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.mbc_c00332{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m11_c00332{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m55_c00332{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m3a_c00332{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m57_c00332{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m64_c00332{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.me0_c00332{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.ma3_c00332{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.med_c00332{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m97_c00332{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.me1_c00332{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.mc5_c00332{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m5_c00332{transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);}
.mbd_c00332{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m1e_c00332{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.mda_c00332{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m2e_c00332{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.ma9_c00332{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.ma5_c00332{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m6a_c00332{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m73_c00332{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.mb5_c00332{transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);}
.m84_c00332{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m8d_c00332{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m7a_c00332{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m43_c00332{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.meb_c00332{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m1b_c00332{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m2d_c00332{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m6d_c00332{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m70_c00332{transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);}
.m61_c00332{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m90_c00332{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m4b_c00332{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m56_c00332{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mc4_c00332{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.mc7_c00332{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.mb8_c00332{transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);}
.mea_c00332{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m68_c00332{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00332{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m33_c00332{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m34_c00332{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m7b_c00332{transform:matrix(0.471176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471176,0.000000,0.000000,0.250000,0,0);}
.mf0_c00332{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.mb9_c00332{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.ma7_c00332{transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);}
.mb0_c00332{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.mb_c00332{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m86_c00332{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.mce_c00332{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.mc8_c00332{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m27_c00332{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mdc_c00332{transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);}
.mdf_c00332{transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);}
.ma4_c00332{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);}
.m1_c00332{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.me4_c00332{transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);}
.m76_c00332{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m2f_c00332{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);}
.m62_c00332{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m80_c00332{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m5a_c00332{transform:matrix(0.505102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505102,0.000000,0.000000,0.250000,0,0);}
.mcf_c00332{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m7_c00332{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m83_c00332{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.mec_c00332{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.mb3_c00332{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m75_c00332{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m5d_c00332{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.ma6_c00332{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m22_c00332{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m4c_c00332{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m2a_c00332{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m5e_c00332{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m3_c00332{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.md5_c00332{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m3d_c00332{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m88_c00332{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m46_c00332{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m54_c00332{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.maf_c00332{transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);}
.mcd_c00332{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.mf_c00332{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mc9_c00332{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m8f_c00332{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m39_c00332{transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);}
.m10_c00332{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mb4_c00332{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);}
.m6b_c00332{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m3e_c00332{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mc_c00332{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m91_c00332{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mab_c00332{transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);}
.m81_c00332{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m18_c00332{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m77_c00332{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m14_c00332{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m87_c00332{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m32_c00332{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m2b_c00332{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.me7_c00332{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m69_c00332{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m9b_c00332{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.md3_c00332{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m2c_c00332{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m67_c00332{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.md1_c00332{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.md4_c00332{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m79_c00332{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m65_c00332{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m4_c00332{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mb7_c00332{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m13_c00332{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m31_c00332{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m24_c00332{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m51_c00332{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m4f_c00332{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m94_c00332{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m25_c00332{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m4a_c00332{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m28_c00332{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m60_c00332{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m6_c00332{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m89_c00332{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mbf_c00332{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.md2_c00332{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.me6_c00332{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m37_c00332{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m72_c00332{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.mdd_c00332{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.mc6_c00332{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.md7_c00332{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m1d_c00332{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m5c_c00332{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mc2_c00332{transform:matrix(0.583206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583206,0.000000,0.000000,0.250000,0,0);}
.m9_c00332{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.mae_c00332{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m45_c00332{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m5f_c00332{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m92_c00332{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m74_c00332{transform:matrix(0.595294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595294,0.000000,0.000000,0.250000,0,0);}
.m26_c00332{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m9a_c00332{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_c00332{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.ma2_c00332{transform:matrix(0.602697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602697,0.000000,0.000000,0.250000,0,0);}
.m40_c00332{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m0_c00332{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m3f_c00332{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m6c_c00332{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m7f_c00332{transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);}
.m44_c00332{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m78_c00332{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m48_c00332{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);}
.mc3_c00332{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mb6_c00332{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m15_c00332{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m7d_c00332{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m29_c00332{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.m99_c00332{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m4d_c00332{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m5b_c00332{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m12_c00332{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m63_c00332{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.md_c00332{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mba_c00332{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.m1a_c00332{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m1c_c00332{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.ma1_c00332{transform:matrix(0.703529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.703529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.703529,0.000000,0.000000,0.250000,0,0);}
.m21_c00332{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m71_c00332{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.me9_c00332{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.me_c00332{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m49_c00332{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m8e_c00332{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m8_c00332{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mde_c00332{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m50_c00332{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m47_c00332{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m2_c00332{transform:matrix(0.780837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780837,0.000000,0.000000,0.250000,0,0);}
.m6f_c00332{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.m52_c00332{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.mee_c00332{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m58_c00332{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m23_c00332{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.md0_c00332{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mf1_c00332{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.mc0_c00332{transform:matrix(3.482456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.482456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.482456,0.000000,0.000000,0.250000,0,0);}
.md9_c00332{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.mbe_c00332{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws1_c00332{word-spacing:0.000000px;}
.ws0_c00332{word-spacing:1.874126px;}
.fc0_c00332{color:transparent;}
.fs8_c00332{font-size:3.420000px;}
.fs7_c00332{font-size:11.880000px;}
.fs2_c00332{font-size:13.620000px;}
.fs4_c00332{font-size:18.720000px;}
.fs0_c00332{font-size:20.400000px;}
.fs6_c00332{font-size:25.500000px;}
.fs1_c00332{font-size:28.920000px;}
.fs3_c00332{font-size:32.340000px;}
.fs5_c00332{font-size:35.700000px;}
.fs9_c00332{font-size:39.120000px;}
.y0_c00332{bottom:0.000000px;}
.y3_c00332{bottom:208.695000px;}
.yc7_c00332{bottom:231.405000px;}
.yc8_c00332{bottom:233.745000px;}
.yc6_c00332{bottom:235.905000px;}
.yc9_c00332{bottom:236.970000px;}
.yca_c00332{bottom:237.405000px;}
.yc4_c00332{bottom:254.745000px;}
.yc1_c00332{bottom:255.405000px;}
.yc5_c00332{bottom:255.630000px;}
.yc2_c00332{bottom:256.905000px;}
.yc3_c00332{bottom:256.920000px;}
.yc0_c00332{bottom:273.405000px;}
.ybf_c00332{bottom:273.825000px;}
.ybd_c00332{bottom:274.245000px;}
.ybc_c00332{bottom:274.905000px;}
.ybe_c00332{bottom:276.405000px;}
.yba_c00332{bottom:293.745000px;}
.ybb_c00332{bottom:294.630000px;}
.yb8_c00332{bottom:294.825000px;}
.yb9_c00332{bottom:295.470000px;}
.yb7_c00332{bottom:295.905000px;}
.yb3_c00332{bottom:313.245000px;}
.yb5_c00332{bottom:313.470000px;}
.yb4_c00332{bottom:314.970000px;}
.yb1_c00332{bottom:315.405000px;}
.yb2_c00332{bottom:315.420000px;}
.yb6_c00332{bottom:315.630000px;}
.yb0_c00332{bottom:332.745000px;}
.yab_c00332{bottom:352.245000px;}
.yaa_c00332{bottom:353.325000px;}
.yac_c00332{bottom:353.745000px;}
.yae_c00332{bottom:354.405000px;}
.yaf_c00332{bottom:354.825000px;}
.yad_c00332{bottom:355.905000px;}
.ya5_c00332{bottom:371.745000px;}
.ya8_c00332{bottom:372.825000px;}
.ya9_c00332{bottom:373.245000px;}
.ya2_c00332{bottom:373.905000px;}
.ya3_c00332{bottom:374.130000px;}
.ya7_c00332{bottom:374.325000px;}
.ya6_c00332{bottom:375.405000px;}
.ya4_c00332{bottom:375.420000px;}
.y9f_c00332{bottom:390.405000px;}
.ya0_c00332{bottom:391.245000px;}
.ya1_c00332{bottom:391.470000px;}
.y9d_c00332{bottom:391.905000px;}
.y9c_c00332{bottom:392.325000px;}
.y9a_c00332{bottom:392.745000px;}
.y9e_c00332{bottom:393.825000px;}
.y9b_c00332{bottom:394.920000px;}
.y98_c00332{bottom:412.245000px;}
.y97_c00332{bottom:412.905000px;}
.y99_c00332{bottom:414.405000px;}
.y95_c00332{bottom:430.245000px;}
.y96_c00332{bottom:431.745000px;}
.y92_c00332{bottom:432.630000px;}
.y94_c00332{bottom:433.470000px;}
.y93_c00332{bottom:433.905000px;}
.y91_c00332{bottom:448.905000px;}
.y90_c00332{bottom:451.245000px;}
.y8f_c00332{bottom:453.405000px;}
.y8d_c00332{bottom:470.745000px;}
.y8c_c00332{bottom:471.825000px;}
.y8b_c00332{bottom:472.905000px;}
.y8e_c00332{bottom:473.970000px;}
.y84_c00332{bottom:490.245000px;}
.y89_c00332{bottom:490.680000px;}
.y87_c00332{bottom:490.920000px;}
.y88_c00332{bottom:491.745000px;}
.y86_c00332{bottom:492.405000px;}
.y8a_c00332{bottom:493.470000px;}
.y85_c00332{bottom:493.920000px;}
.y82_c00332{bottom:517.905000px;}
.y83_c00332{bottom:518.130000px;}
.y7f_c00332{bottom:532.905000px;}
.y80_c00332{bottom:533.325000px;}
.y7e_c00332{bottom:533.970000px;}
.y81_c00332{bottom:535.050000px;}
.y7c_c00332{bottom:551.970000px;}
.y7d_c00332{bottom:552.825000px;}
.y7b_c00332{bottom:554.970000px;}
.y7a_c00332{bottom:575.745000px;}
.y79_c00332{bottom:577.905000px;}
.y78_c00332{bottom:578.970000px;}
.y77_c00332{bottom:608.745000px;}
.y75_c00332{bottom:609.630000px;}
.y76_c00332{bottom:610.905000px;}
.y73_c00332{bottom:625.905000px;}
.y72_c00332{bottom:628.245000px;}
.y6f_c00332{bottom:629.970000px;}
.y71_c00332{bottom:630.405000px;}
.y74_c00332{bottom:630.630000px;}
.y70_c00332{bottom:631.470000px;}
.y6b_c00332{bottom:647.745000px;}
.y6d_c00332{bottom:648.630000px;}
.y6c_c00332{bottom:649.470000px;}
.y6e_c00332{bottom:649.905000px;}
.y68_c00332{bottom:666.405000px;}
.y67_c00332{bottom:667.245000px;}
.y6a_c00332{bottom:668.745000px;}
.y66_c00332{bottom:669.405000px;}
.y69_c00332{bottom:670.470000px;}
.y60_c00332{bottom:686.745000px;}
.y62_c00332{bottom:688.245000px;}
.y61_c00332{bottom:688.905000px;}
.y63_c00332{bottom:689.130000px;}
.y65_c00332{bottom:689.325000px;}
.y64_c00332{bottom:690.405000px;}
.y5f_c00332{bottom:706.245000px;}
.y5e_c00332{bottom:707.745000px;}
.y5c_c00332{bottom:708.405000px;}
.y5d_c00332{bottom:709.905000px;}
.y59_c00332{bottom:727.245000px;}
.y5b_c00332{bottom:728.130000px;}
.y58_c00332{bottom:728.325000px;}
.y57_c00332{bottom:729.405000px;}
.y5a_c00332{bottom:730.470000px;}
.y53_c00332{bottom:746.745000px;}
.y56_c00332{bottom:747.630000px;}
.y55_c00332{bottom:748.905000px;}
.y54_c00332{bottom:749.970000px;}
.y52_c00332{bottom:766.470000px;}
.y4f_c00332{bottom:767.130000px;}
.y51_c00332{bottom:767.325000px;}
.y4e_c00332{bottom:768.405000px;}
.y50_c00332{bottom:769.470000px;}
.y4d_c00332{bottom:787.905000px;}
.y49_c00332{bottom:804.405000px;}
.y4a_c00332{bottom:805.245000px;}
.y48_c00332{bottom:807.405000px;}
.y4b_c00332{bottom:807.630000px;}
.y4c_c00332{bottom:808.470000px;}
.y45_c00332{bottom:825.825000px;}
.y46_c00332{bottom:826.245000px;}
.y44_c00332{bottom:826.905000px;}
.y47_c00332{bottom:828.405000px;}
.y41_c00332{bottom:845.745000px;}
.y40_c00332{bottom:846.630000px;}
.y42_c00332{bottom:846.825000px;}
.y43_c00332{bottom:847.470000px;}
.y3f_c00332{bottom:847.905000px;}
.y3d_c00332{bottom:862.275000px;}
.y38_c00332{bottom:864.825000px;}
.y3a_c00332{bottom:865.905000px;}
.y3e_c00332{bottom:866.130000px;}
.y3c_c00332{bottom:866.325000px;}
.y39_c00332{bottom:866.970000px;}
.y3b_c00332{bottom:867.405000px;}
.y34_c00332{bottom:883.245000px;}
.y37_c00332{bottom:884.745000px;}
.y36_c00332{bottom:885.630000px;}
.y35_c00332{bottom:885.825000px;}
.y33_c00332{bottom:886.905000px;}
.y2f_c00332{bottom:904.245000px;}
.y31_c00332{bottom:905.130000px;}
.y2d_c00332{bottom:905.970000px;}
.y30_c00332{bottom:906.405000px;}
.y32_c00332{bottom:906.630000px;}
.y2e_c00332{bottom:907.470000px;}
.y2b_c00332{bottom:923.745000px;}
.y2a_c00332{bottom:925.905000px;}
.y2c_c00332{bottom:926.130000px;}
.y28_c00332{bottom:942.825000px;}
.y26_c00332{bottom:944.745000px;}
.y25_c00332{bottom:944.970000px;}
.y23_c00332{bottom:945.405000px;}
.y29_c00332{bottom:945.630000px;}
.y24_c00332{bottom:946.470000px;}
.y27_c00332{bottom:946.905000px;}
.y1e_c00332{bottom:962.745000px;}
.y20_c00332{bottom:964.245000px;}
.y1d_c00332{bottom:964.905000px;}
.y1f_c00332{bottom:965.130000px;}
.y22_c00332{bottom:965.970000px;}
.y21_c00332{bottom:966.405000px;}
.y19_c00332{bottom:983.325000px;}
.y1c_c00332{bottom:983.745000px;}
.y18_c00332{bottom:984.405000px;}
.y1a_c00332{bottom:984.825000px;}
.y1b_c00332{bottom:985.905000px;}
.y17_c00332{bottom:1002.405000px;}
.y16_c00332{bottom:1003.245000px;}
.y15_c00332{bottom:1004.130000px;}
.y14_c00332{bottom:1004.970000px;}
.y13_c00332{bottom:1005.405000px;}
.yf_c00332{bottom:1021.245000px;}
.y10_c00332{bottom:1022.745000px;}
.ye_c00332{bottom:1023.405000px;}
.y12_c00332{bottom:1023.630000px;}
.yd_c00332{bottom:1024.470000px;}
.y11_c00332{bottom:1024.905000px;}
.ya_c00332{bottom:1042.245000px;}
.y9_c00332{bottom:1042.905000px;}
.yb_c00332{bottom:1043.970000px;}
.yc_c00332{bottom:1044.405000px;}
.y7_c00332{bottom:1061.745000px;}
.y6_c00332{bottom:1062.630000px;}
.y5_c00332{bottom:1062.825000px;}
.y4_c00332{bottom:1063.905000px;}
.y8_c00332{bottom:1064.970000px;}
.y2_c00332{bottom:1099.905000px;}
.y1_c00332{bottom:1102.050000px;}
.h9_c00332{height:4.206533px;}
.h8_c00332{height:14.612168px;}
.h3_c00332{height:16.752334px;}
.h5_c00332{height:23.025234px;}
.h1_c00332{height:25.091602px;}
.h7_c00332{height:31.364502px;}
.h2_c00332{height:35.571035px;}
.h4_c00332{height:39.777568px;}
.h6_c00332{height:43.910303px;}
.ha_c00332{height:48.116836px;}
.h0_c00332{height:1335.000000px;}
.w0_c00332{width:880.500000px;}
.x0_c00332{left:0.000000px;}
.x4_c00332{left:151.500000px;}
.xf0_c00332{left:152.580000px;}
.x88_c00332{left:165.420000px;}
.x91_c00332{left:166.500000px;}
.xe1_c00332{left:168.000000px;}
.x2c_c00332{left:172.920000px;}
.x7a_c00332{left:174.000000px;}
.xf1_c00332{left:177.000000px;}
.x101_c00332{left:179.580000px;}
.x63_c00332{left:181.080000px;}
.x1f_c00332{left:182.580000px;}
.xb4_c00332{left:185.580000px;}
.xa2_c00332{left:187.920000px;}
.x5_c00332{left:191.580000px;}
.xac_c00332{left:193.920000px;}
.x99_c00332{left:196.500000px;}
.x2d_c00332{left:198.000000px;}
.x92_c00332{left:199.080000px;}
.x5a_c00332{left:201.420000px;}
.xc6_c00332{left:202.500000px;}
.x4e_c00332{left:205.080000px;}
.xd0_c00332{left:207.420000px;}
.xba_c00332{left:213.000000px;}
.xa3_c00332{left:214.920000px;}
.xd7_c00332{left:216.000000px;}
.x7b_c00332{left:217.500000px;}
.x20_c00332{left:219.645000px;}
.x6a_c00332{left:222.000000px;}
.x4f_c00332{left:223.500000px;}
.xc1_c00332{left:225.420000px;}
.x12_c00332{left:226.500000px;}
.x89_c00332{left:227.580000px;}
.xde_c00332{left:229.080000px;}
.x37_c00332{left:231.420000px;}
.x6_c00332{left:233.580000px;}
.x74_c00332{left:235.080000px;}
.x3f_c00332{left:239.580000px;}
.xb7_c00332{left:241.080000px;}
.x6b_c00332{left:244.500000px;}
.x13_c00332{left:249.000000px;}
.x2e_c00332{left:250.080000px;}
.x93_c00332{left:255.000000px;}
.x9a_c00332{left:256.500000px;}
.x8a_c00332{left:258.000000px;}
.xdf_c00332{left:259.920000px;}
.x40_c00332{left:262.500000px;}
.xb8_c00332{left:267.000000px;}
.xd3_c00332{left:268.500000px;}
.xda_c00332{left:269.580000px;}
.x7_c00332{left:273.000000px;}
.x38_c00332{left:274.080000px;}
.x64_c00332{left:277.500000px;}
.x50_c00332{left:278.580000px;}
.x75_c00332{left:280.080000px;}
.x5b_c00332{left:281.580000px;}
.xd1_c00332{left:288.000000px;}
.x6c_c00332{left:289.920000px;}
.x102_c00332{left:291.000000px;}
.x21_c00332{left:292.080000px;}
.x2f_c00332{left:293.580000px;}
.xeb_c00332{left:297.000000px;}
.x94_c00332{left:298.920000px;}
.x5c_c00332{left:300.420000px;}
.x7c_c00332{left:303.000000px;}
.x9b_c00332{left:304.080000px;}
.x14_c00332{left:305.580000px;}
.xc9_c00332{left:307.080000px;}
.xc7_c00332{left:311.580000px;}
.x41_c00332{left:313.500000px;}
.x7d_c00332{left:318.000000px;}
.x51_c00332{left:321.000000px;}
.x65_c00332{left:322.500000px;}
.xe7_c00332{left:323.580000px;}
.xb5_c00332{left:325.500000px;}
.x5d_c00332{left:327.000000px;}
.xad_c00332{left:328.500000px;}
.xa4_c00332{left:333.420000px;}
.x15_c00332{left:334.500000px;}
.xd8_c00332{left:336.420000px;}
.x22_c00332{left:339.000000px;}
.xf7_c00332{left:342.000000px;}
.x8_c00332{left:343.500000px;}
.xec_c00332{left:344.580000px;}
.x39_c00332{left:348.000000px;}
.x30_c00332{left:351.000000px;}
.xe8_c00332{left:352.500000px;}
.xca_c00332{left:353.580000px;}
.x6d_c00332{left:357.000000px;}
.xe0_c00332{left:358.080000px;}
.x9c_c00332{left:360.000000px;}
.xf9_c00332{left:363.420000px;}
.x76_c00332{left:364.500000px;}
.x23_c00332{left:366.000000px;}
.x103_c00332{left:369.420000px;}
.xa5_c00332{left:370.500000px;}
.xed_c00332{left:372.000000px;}
.xce_c00332{left:373.920000px;}
.x5e_c00332{left:375.000000px;}
.x42_c00332{left:376.500000px;}
.x52_c00332{left:378.000000px;}
.x16_c00332{left:379.920000px;}
.xae_c00332{left:381.000000px;}
.x31_c00332{left:382.080000px;}
.xe2_c00332{left:383.580000px;}
.x9_c00332{left:387.000000px;}
.x43_c00332{left:388.500000px;}
.xfa_c00332{left:390.000000px;}
.xd4_c00332{left:393.420000px;}
.x77_c00332{left:395.145000px;}
.x5f_c00332{left:397.920000px;}
.x3a_c00332{left:399.420000px;}
.x1_c00332{left:402.000000px;}
.xaf_c00332{left:403.920000px;}
.x17_c00332{left:406.500000px;}
.xb9_c00332{left:413.775000px;}
.x66_c00332{left:415.500000px;}
.xee_c00332{left:417.000000px;}
.xd9_c00332{left:418.920000px;}
.x82_c00332{left:421.920000px;}
.xd5_c00332{left:423.000000px;}
.xdb_c00332{left:424.500000px;}
.x8b_c00332{left:425.580000px;}
.x53_c00332{left:427.920000px;}
.x44_c00332{left:430.920000px;}
.xbb_c00332{left:433.080000px;}
.x6e_c00332{left:435.000000px;}
.x3b_c00332{left:436.500000px;}
.xfd_c00332{left:439.080000px;}
.x18_c00332{left:441.000000px;}
.xa6_c00332{left:442.500000px;}
.x32_c00332{left:444.645000px;}
.xe9_c00332{left:447.000000px;}
.x67_c00332{left:450.420000px;}
.x95_c00332{left:453.420000px;}
.x54_c00332{left:454.500000px;}
.xfb_c00332{left:456.000000px;}
.xbc_c00332{left:457.500000px;}
.xcb_c00332{left:462.000000px;}
.xd2_c00332{left:463.080000px;}
.xa_c00332{left:465.000000px;}
.x24_c00332{left:466.500000px;}
.x78_c00332{left:467.580000px;}
.x83_c00332{left:469.500000px;}
.x9d_c00332{left:472.500000px;}
.x60_c00332{left:475.500000px;}
.xb_c00332{left:480.420000px;}
.xfe_c00332{left:483.000000px;}
.x84_c00332{left:484.080000px;}
.x7e_c00332{left:486.000000px;}
.xa7_c00332{left:487.500000px;}
.x3c_c00332{left:490.500000px;}
.x25_c00332{left:491.580000px;}
.x19_c00332{left:494.580000px;}
.xdc_c00332{left:496.500000px;}
.x1a_c00332{left:498.645000px;}
.x8c_c00332{left:499.920000px;}
.xe3_c00332{left:502.080000px;}
.xea_c00332{left:503.145000px;}
.x7f_c00332{left:504.420000px;}
.xc8_c00332{left:506.580000px;}
.x45_c00332{left:510.000000px;}
.xa8_c00332{left:513.000000px;}
.xbd_c00332{left:515.580000px;}
.xcc_c00332{left:517.500000px;}
.x96_c00332{left:519.000000px;}
.xc_c00332{left:520.500000px;}
.x104_c00332{left:521.580000px;}
.x68_c00332{left:523.500000px;}
.x46_c00332{left:526.920000px;}
.xc2_c00332{left:528.000000px;}
.x80_c00332{left:529.500000px;}
.xb6_c00332{left:532.920000px;}
.x61_c00332{left:534.000000px;}
.x26_c00332{left:535.500000px;}
.x33_c00332{left:537.000000px;}
.xe4_c00332{left:538.500000px;}
.xfc_c00332{left:541.500000px;}
.x9e_c00332{left:543.420000px;}
.x79_c00332{left:544.500000px;}
.xbe_c00332{left:546.000000px;}
.xef_c00332{left:547.500000px;}
.xf2_c00332{left:550.920000px;}
.xdd_c00332{left:552.000000px;}
.xc3_c00332{left:553.500000px;}
.xa9_c00332{left:554.580000px;}
.x27_c00332{left:558.420000px;}
.x55_c00332{left:559.500000px;}
.xcd_c00332{left:562.080000px;}
.x69_c00332{left:564.000000px;}
.xb0_c00332{left:565.080000px;}
.xd6_c00332{left:568.080000px;}
.x1b_c00332{left:570.000000px;}
.x8d_c00332{left:571.080000px;}
.x47_c00332{left:572.580000px;}
.xd_c00332{left:574.500000px;}
.x56_c00332{left:576.000000px;}
.x3d_c00332{left:577.080000px;}
.xf3_c00332{left:579.000000px;}
.x6f_c00332{left:580.500000px;}
.xb1_c00332{left:583.500000px;}
.x28_c00332{left:585.000000px;}
.x8e_c00332{left:589.500000px;}
.xe_c00332{left:590.580000px;}
.x85_c00332{left:592.500000px;}
.xe5_c00332{left:593.775000px;}
.x105_c00332{left:595.500000px;}
.x97_c00332{left:596.580000px;}
.x3e_c00332{left:600.000000px;}
.x70_c00332{left:601.920000px;}
.x48_c00332{left:603.000000px;}
.xff_c00332{left:604.500000px;}
.xb2_c00332{left:606.000000px;}
.xc4_c00332{left:607.500000px;}
.x86_c00332{left:610.500000px;}
.x9f_c00332{left:613.500000px;}
.x49_c00332{left:618.000000px;}
.x81_c00332{left:619.500000px;}
.x57_c00332{left:622.500000px;}
.xf4_c00332{left:623.580000px;}
.x34_c00332{left:625.080000px;}
.x29_c00332{left:628.080000px;}
.xa0_c00332{left:630.000000px;}
.xe6_c00332{left:632.580000px;}
.x4a_c00332{left:634.500000px;}
.xbf_c00332{left:636.000000px;}
.x35_c00332{left:637.500000px;}
.xaa_c00332{left:639.000000px;}
.x98_c00332{left:640.500000px;}
.x8f_c00332{left:642.000000px;}
.x71_c00332{left:643.080000px;}
.x62_c00332{left:644.580000px;}
.xb3_c00332{left:648.000000px;}
.x100_c00332{left:654.420000px;}
.xf_c00332{left:655.500000px;}
.x58_c00332{left:658.920000px;}
.x1c_c00332{left:660.000000px;}
.x72_c00332{left:663.420000px;}
.x4b_c00332{left:666.000000px;}
.xf5_c00332{left:667.500000px;}
.x90_c00332{left:668.580000px;}
.x2a_c00332{left:670.080000px;}
.x1d_c00332{left:675.000000px;}
.x10_c00332{left:676.080000px;}
.xc5_c00332{left:678.000000px;}
.xc0_c00332{left:679.500000px;}
.xa1_c00332{left:682.500000px;}
.xab_c00332{left:684.000000px;}
.x4c_c00332{left:685.080000px;}
.x59_c00332{left:687.000000px;}
.x73_c00332{left:690.000000px;}
.x1e_c00332{left:691.920000px;}
.x36_c00332{left:694.275000px;}
.x2b_c00332{left:700.920000px;}
.xf8_c00332{left:703.500000px;}
.x2_c00332{left:704.580000px;}
.x4d_c00332{left:706.920000px;}
.xcf_c00332{left:709.920000px;}
.x11_c00332{left:715.500000px;}
.xf6_c00332{left:717.000000px;}
.x87_c00332{left:718.500000px;}
.x3_c00332{left:720.000000px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.ls0_c00332{letter-spacing:0.000000pt;}
.ws1_c00332{word-spacing:0.000000pt;}
.ws0_c00332{word-spacing:1.665889pt;}
.fs8_c00332{font-size:3.040000pt;}
.fs7_c00332{font-size:10.560000pt;}
.fs2_c00332{font-size:12.106667pt;}
.fs4_c00332{font-size:16.640000pt;}
.fs0_c00332{font-size:18.133333pt;}
.fs6_c00332{font-size:22.666667pt;}
.fs1_c00332{font-size:25.706667pt;}
.fs3_c00332{font-size:28.746667pt;}
.fs5_c00332{font-size:31.733333pt;}
.fs9_c00332{font-size:34.773333pt;}
.y0_c00332{bottom:0.000000pt;}
.y3_c00332{bottom:185.506667pt;}
.yc7_c00332{bottom:205.693333pt;}
.yc8_c00332{bottom:207.773333pt;}
.yc6_c00332{bottom:209.693333pt;}
.yc9_c00332{bottom:210.640000pt;}
.yca_c00332{bottom:211.026667pt;}
.yc4_c00332{bottom:226.440000pt;}
.yc1_c00332{bottom:227.026667pt;}
.yc5_c00332{bottom:227.226667pt;}
.yc2_c00332{bottom:228.360000pt;}
.yc3_c00332{bottom:228.373333pt;}
.yc0_c00332{bottom:243.026667pt;}
.ybf_c00332{bottom:243.400000pt;}
.ybd_c00332{bottom:243.773333pt;}
.ybc_c00332{bottom:244.360000pt;}
.ybe_c00332{bottom:245.693333pt;}
.yba_c00332{bottom:261.106667pt;}
.ybb_c00332{bottom:261.893333pt;}
.yb8_c00332{bottom:262.066667pt;}
.yb9_c00332{bottom:262.640000pt;}
.yb7_c00332{bottom:263.026667pt;}
.yb3_c00332{bottom:278.440000pt;}
.yb5_c00332{bottom:278.640000pt;}
.yb4_c00332{bottom:279.973333pt;}
.yb1_c00332{bottom:280.360000pt;}
.yb2_c00332{bottom:280.373333pt;}
.yb6_c00332{bottom:280.560000pt;}
.yb0_c00332{bottom:295.773333pt;}
.yab_c00332{bottom:313.106667pt;}
.yaa_c00332{bottom:314.066667pt;}
.yac_c00332{bottom:314.440000pt;}
.yae_c00332{bottom:315.026667pt;}
.yaf_c00332{bottom:315.400000pt;}
.yad_c00332{bottom:316.360000pt;}
.ya5_c00332{bottom:330.440000pt;}
.ya8_c00332{bottom:331.400000pt;}
.ya9_c00332{bottom:331.773333pt;}
.ya2_c00332{bottom:332.360000pt;}
.ya3_c00332{bottom:332.560000pt;}
.ya7_c00332{bottom:332.733333pt;}
.ya6_c00332{bottom:333.693333pt;}
.ya4_c00332{bottom:333.706667pt;}
.y9f_c00332{bottom:347.026667pt;}
.ya0_c00332{bottom:347.773333pt;}
.ya1_c00332{bottom:347.973333pt;}
.y9d_c00332{bottom:348.360000pt;}
.y9c_c00332{bottom:348.733333pt;}
.y9a_c00332{bottom:349.106667pt;}
.y9e_c00332{bottom:350.066667pt;}
.y9b_c00332{bottom:351.040000pt;}
.y98_c00332{bottom:366.440000pt;}
.y97_c00332{bottom:367.026667pt;}
.y99_c00332{bottom:368.360000pt;}
.y95_c00332{bottom:382.440000pt;}
.y96_c00332{bottom:383.773333pt;}
.y92_c00332{bottom:384.560000pt;}
.y94_c00332{bottom:385.306667pt;}
.y93_c00332{bottom:385.693333pt;}
.y91_c00332{bottom:399.026667pt;}
.y90_c00332{bottom:401.106667pt;}
.y8f_c00332{bottom:403.026667pt;}
.y8d_c00332{bottom:418.440000pt;}
.y8c_c00332{bottom:419.400000pt;}
.y8b_c00332{bottom:420.360000pt;}
.y8e_c00332{bottom:421.306667pt;}
.y84_c00332{bottom:435.773333pt;}
.y89_c00332{bottom:436.160000pt;}
.y87_c00332{bottom:436.373333pt;}
.y88_c00332{bottom:437.106667pt;}
.y86_c00332{bottom:437.693333pt;}
.y8a_c00332{bottom:438.640000pt;}
.y85_c00332{bottom:439.040000pt;}
.y82_c00332{bottom:460.360000pt;}
.y83_c00332{bottom:460.560000pt;}
.y7f_c00332{bottom:473.693333pt;}
.y80_c00332{bottom:474.066667pt;}
.y7e_c00332{bottom:474.640000pt;}
.y81_c00332{bottom:475.600000pt;}
.y7c_c00332{bottom:490.640000pt;}
.y7d_c00332{bottom:491.400000pt;}
.y7b_c00332{bottom:493.306667pt;}
.y7a_c00332{bottom:511.773333pt;}
.y79_c00332{bottom:513.693333pt;}
.y78_c00332{bottom:514.640000pt;}
.y77_c00332{bottom:541.106667pt;}
.y75_c00332{bottom:541.893333pt;}
.y76_c00332{bottom:543.026667pt;}
.y73_c00332{bottom:556.360000pt;}
.y72_c00332{bottom:558.440000pt;}
.y6f_c00332{bottom:559.973333pt;}
.y71_c00332{bottom:560.360000pt;}
.y74_c00332{bottom:560.560000pt;}
.y70_c00332{bottom:561.306667pt;}
.y6b_c00332{bottom:575.773333pt;}
.y6d_c00332{bottom:576.560000pt;}
.y6c_c00332{bottom:577.306667pt;}
.y6e_c00332{bottom:577.693333pt;}
.y68_c00332{bottom:592.360000pt;}
.y67_c00332{bottom:593.106667pt;}
.y6a_c00332{bottom:594.440000pt;}
.y66_c00332{bottom:595.026667pt;}
.y69_c00332{bottom:595.973333pt;}
.y60_c00332{bottom:610.440000pt;}
.y62_c00332{bottom:611.773333pt;}
.y61_c00332{bottom:612.360000pt;}
.y63_c00332{bottom:612.560000pt;}
.y65_c00332{bottom:612.733333pt;}
.y64_c00332{bottom:613.693333pt;}
.y5f_c00332{bottom:627.773333pt;}
.y5e_c00332{bottom:629.106667pt;}
.y5c_c00332{bottom:629.693333pt;}
.y5d_c00332{bottom:631.026667pt;}
.y59_c00332{bottom:646.440000pt;}
.y5b_c00332{bottom:647.226667pt;}
.y58_c00332{bottom:647.400000pt;}
.y57_c00332{bottom:648.360000pt;}
.y5a_c00332{bottom:649.306667pt;}
.y53_c00332{bottom:663.773333pt;}
.y56_c00332{bottom:664.560000pt;}
.y55_c00332{bottom:665.693333pt;}
.y54_c00332{bottom:666.640000pt;}
.y52_c00332{bottom:681.306667pt;}
.y4f_c00332{bottom:681.893333pt;}
.y51_c00332{bottom:682.066667pt;}
.y4e_c00332{bottom:683.026667pt;}
.y50_c00332{bottom:683.973333pt;}
.y4d_c00332{bottom:700.360000pt;}
.y49_c00332{bottom:715.026667pt;}
.y4a_c00332{bottom:715.773333pt;}
.y48_c00332{bottom:717.693333pt;}
.y4b_c00332{bottom:717.893333pt;}
.y4c_c00332{bottom:718.640000pt;}
.y45_c00332{bottom:734.066667pt;}
.y46_c00332{bottom:734.440000pt;}
.y44_c00332{bottom:735.026667pt;}
.y47_c00332{bottom:736.360000pt;}
.y41_c00332{bottom:751.773333pt;}
.y40_c00332{bottom:752.560000pt;}
.y42_c00332{bottom:752.733333pt;}
.y43_c00332{bottom:753.306667pt;}
.y3f_c00332{bottom:753.693333pt;}
.y3d_c00332{bottom:766.466667pt;}
.y38_c00332{bottom:768.733333pt;}
.y3a_c00332{bottom:769.693333pt;}
.y3e_c00332{bottom:769.893333pt;}
.y3c_c00332{bottom:770.066667pt;}
.y39_c00332{bottom:770.640000pt;}
.y3b_c00332{bottom:771.026667pt;}
.y34_c00332{bottom:785.106667pt;}
.y37_c00332{bottom:786.440000pt;}
.y36_c00332{bottom:787.226667pt;}
.y35_c00332{bottom:787.400000pt;}
.y33_c00332{bottom:788.360000pt;}
.y2f_c00332{bottom:803.773333pt;}
.y31_c00332{bottom:804.560000pt;}
.y2d_c00332{bottom:805.306667pt;}
.y30_c00332{bottom:805.693333pt;}
.y32_c00332{bottom:805.893333pt;}
.y2e_c00332{bottom:806.640000pt;}
.y2b_c00332{bottom:821.106667pt;}
.y2a_c00332{bottom:823.026667pt;}
.y2c_c00332{bottom:823.226667pt;}
.y28_c00332{bottom:838.066667pt;}
.y26_c00332{bottom:839.773333pt;}
.y25_c00332{bottom:839.973333pt;}
.y23_c00332{bottom:840.360000pt;}
.y29_c00332{bottom:840.560000pt;}
.y24_c00332{bottom:841.306667pt;}
.y27_c00332{bottom:841.693333pt;}
.y1e_c00332{bottom:855.773333pt;}
.y20_c00332{bottom:857.106667pt;}
.y1d_c00332{bottom:857.693333pt;}
.y1f_c00332{bottom:857.893333pt;}
.y22_c00332{bottom:858.640000pt;}
.y21_c00332{bottom:859.026667pt;}
.y19_c00332{bottom:874.066667pt;}
.y1c_c00332{bottom:874.440000pt;}
.y18_c00332{bottom:875.026667pt;}
.y1a_c00332{bottom:875.400000pt;}
.y1b_c00332{bottom:876.360000pt;}
.y17_c00332{bottom:891.026667pt;}
.y16_c00332{bottom:891.773333pt;}
.y15_c00332{bottom:892.560000pt;}
.y14_c00332{bottom:893.306667pt;}
.y13_c00332{bottom:893.693333pt;}
.yf_c00332{bottom:907.773333pt;}
.y10_c00332{bottom:909.106667pt;}
.ye_c00332{bottom:909.693333pt;}
.y12_c00332{bottom:909.893333pt;}
.yd_c00332{bottom:910.640000pt;}
.y11_c00332{bottom:911.026667pt;}
.ya_c00332{bottom:926.440000pt;}
.y9_c00332{bottom:927.026667pt;}
.yb_c00332{bottom:927.973333pt;}
.yc_c00332{bottom:928.360000pt;}
.y7_c00332{bottom:943.773333pt;}
.y6_c00332{bottom:944.560000pt;}
.y5_c00332{bottom:944.733333pt;}
.y4_c00332{bottom:945.693333pt;}
.y8_c00332{bottom:946.640000pt;}
.y2_c00332{bottom:977.693333pt;}
.y1_c00332{bottom:979.600000pt;}
.h9_c00332{height:3.739141pt;}
.h8_c00332{height:12.988594pt;}
.h3_c00332{height:14.890964pt;}
.h5_c00332{height:20.466875pt;}
.h1_c00332{height:22.303646pt;}
.h7_c00332{height:27.879557pt;}
.h2_c00332{height:31.618698pt;}
.h4_c00332{height:35.357839pt;}
.h6_c00332{height:39.031380pt;}
.ha_c00332{height:42.770521pt;}
.h0_c00332{height:1186.666667pt;}
.w0_c00332{width:782.666667pt;}
.x0_c00332{left:0.000000pt;}
.x4_c00332{left:134.666667pt;}
.xf0_c00332{left:135.626667pt;}
.x88_c00332{left:147.040000pt;}
.x91_c00332{left:148.000000pt;}
.xe1_c00332{left:149.333333pt;}
.x2c_c00332{left:153.706667pt;}
.x7a_c00332{left:154.666667pt;}
.xf1_c00332{left:157.333333pt;}
.x101_c00332{left:159.626667pt;}
.x63_c00332{left:160.960000pt;}
.x1f_c00332{left:162.293333pt;}
.xb4_c00332{left:164.960000pt;}
.xa2_c00332{left:167.040000pt;}
.x5_c00332{left:170.293333pt;}
.xac_c00332{left:172.373333pt;}
.x99_c00332{left:174.666667pt;}
.x2d_c00332{left:176.000000pt;}
.x92_c00332{left:176.960000pt;}
.x5a_c00332{left:179.040000pt;}
.xc6_c00332{left:180.000000pt;}
.x4e_c00332{left:182.293333pt;}
.xd0_c00332{left:184.373333pt;}
.xba_c00332{left:189.333333pt;}
.xa3_c00332{left:191.040000pt;}
.xd7_c00332{left:192.000000pt;}
.x7b_c00332{left:193.333333pt;}
.x20_c00332{left:195.240000pt;}
.x6a_c00332{left:197.333333pt;}
.x4f_c00332{left:198.666667pt;}
.xc1_c00332{left:200.373333pt;}
.x12_c00332{left:201.333333pt;}
.x89_c00332{left:202.293333pt;}
.xde_c00332{left:203.626667pt;}
.x37_c00332{left:205.706667pt;}
.x6_c00332{left:207.626667pt;}
.x74_c00332{left:208.960000pt;}
.x3f_c00332{left:212.960000pt;}
.xb7_c00332{left:214.293333pt;}
.x6b_c00332{left:217.333333pt;}
.x13_c00332{left:221.333333pt;}
.x2e_c00332{left:222.293333pt;}
.x93_c00332{left:226.666667pt;}
.x9a_c00332{left:228.000000pt;}
.x8a_c00332{left:229.333333pt;}
.xdf_c00332{left:231.040000pt;}
.x40_c00332{left:233.333333pt;}
.xb8_c00332{left:237.333333pt;}
.xd3_c00332{left:238.666667pt;}
.xda_c00332{left:239.626667pt;}
.x7_c00332{left:242.666667pt;}
.x38_c00332{left:243.626667pt;}
.x64_c00332{left:246.666667pt;}
.x50_c00332{left:247.626667pt;}
.x75_c00332{left:248.960000pt;}
.x5b_c00332{left:250.293333pt;}
.xd1_c00332{left:256.000000pt;}
.x6c_c00332{left:257.706667pt;}
.x102_c00332{left:258.666667pt;}
.x21_c00332{left:259.626667pt;}
.x2f_c00332{left:260.960000pt;}
.xeb_c00332{left:264.000000pt;}
.x94_c00332{left:265.706667pt;}
.x5c_c00332{left:267.040000pt;}
.x7c_c00332{left:269.333333pt;}
.x9b_c00332{left:270.293333pt;}
.x14_c00332{left:271.626667pt;}
.xc9_c00332{left:272.960000pt;}
.xc7_c00332{left:276.960000pt;}
.x41_c00332{left:278.666667pt;}
.x7d_c00332{left:282.666667pt;}
.x51_c00332{left:285.333333pt;}
.x65_c00332{left:286.666667pt;}
.xe7_c00332{left:287.626667pt;}
.xb5_c00332{left:289.333333pt;}
.x5d_c00332{left:290.666667pt;}
.xad_c00332{left:292.000000pt;}
.xa4_c00332{left:296.373333pt;}
.x15_c00332{left:297.333333pt;}
.xd8_c00332{left:299.040000pt;}
.x22_c00332{left:301.333333pt;}
.xf7_c00332{left:304.000000pt;}
.x8_c00332{left:305.333333pt;}
.xec_c00332{left:306.293333pt;}
.x39_c00332{left:309.333333pt;}
.x30_c00332{left:312.000000pt;}
.xe8_c00332{left:313.333333pt;}
.xca_c00332{left:314.293333pt;}
.x6d_c00332{left:317.333333pt;}
.xe0_c00332{left:318.293333pt;}
.x9c_c00332{left:320.000000pt;}
.xf9_c00332{left:323.040000pt;}
.x76_c00332{left:324.000000pt;}
.x23_c00332{left:325.333333pt;}
.x103_c00332{left:328.373333pt;}
.xa5_c00332{left:329.333333pt;}
.xed_c00332{left:330.666667pt;}
.xce_c00332{left:332.373333pt;}
.x5e_c00332{left:333.333333pt;}
.x42_c00332{left:334.666667pt;}
.x52_c00332{left:336.000000pt;}
.x16_c00332{left:337.706667pt;}
.xae_c00332{left:338.666667pt;}
.x31_c00332{left:339.626667pt;}
.xe2_c00332{left:340.960000pt;}
.x9_c00332{left:344.000000pt;}
.x43_c00332{left:345.333333pt;}
.xfa_c00332{left:346.666667pt;}
.xd4_c00332{left:349.706667pt;}
.x77_c00332{left:351.240000pt;}
.x5f_c00332{left:353.706667pt;}
.x3a_c00332{left:355.040000pt;}
.x1_c00332{left:357.333333pt;}
.xaf_c00332{left:359.040000pt;}
.x17_c00332{left:361.333333pt;}
.xb9_c00332{left:367.800000pt;}
.x66_c00332{left:369.333333pt;}
.xee_c00332{left:370.666667pt;}
.xd9_c00332{left:372.373333pt;}
.x82_c00332{left:375.040000pt;}
.xd5_c00332{left:376.000000pt;}
.xdb_c00332{left:377.333333pt;}
.x8b_c00332{left:378.293333pt;}
.x53_c00332{left:380.373333pt;}
.x44_c00332{left:383.040000pt;}
.xbb_c00332{left:384.960000pt;}
.x6e_c00332{left:386.666667pt;}
.x3b_c00332{left:388.000000pt;}
.xfd_c00332{left:390.293333pt;}
.x18_c00332{left:392.000000pt;}
.xa6_c00332{left:393.333333pt;}
.x32_c00332{left:395.240000pt;}
.xe9_c00332{left:397.333333pt;}
.x67_c00332{left:400.373333pt;}
.x95_c00332{left:403.040000pt;}
.x54_c00332{left:404.000000pt;}
.xfb_c00332{left:405.333333pt;}
.xbc_c00332{left:406.666667pt;}
.xcb_c00332{left:410.666667pt;}
.xd2_c00332{left:411.626667pt;}
.xa_c00332{left:413.333333pt;}
.x24_c00332{left:414.666667pt;}
.x78_c00332{left:415.626667pt;}
.x83_c00332{left:417.333333pt;}
.x9d_c00332{left:420.000000pt;}
.x60_c00332{left:422.666667pt;}
.xb_c00332{left:427.040000pt;}
.xfe_c00332{left:429.333333pt;}
.x84_c00332{left:430.293333pt;}
.x7e_c00332{left:432.000000pt;}
.xa7_c00332{left:433.333333pt;}
.x3c_c00332{left:436.000000pt;}
.x25_c00332{left:436.960000pt;}
.x19_c00332{left:439.626667pt;}
.xdc_c00332{left:441.333333pt;}
.x1a_c00332{left:443.240000pt;}
.x8c_c00332{left:444.373333pt;}
.xe3_c00332{left:446.293333pt;}
.xea_c00332{left:447.240000pt;}
.x7f_c00332{left:448.373333pt;}
.xc8_c00332{left:450.293333pt;}
.x45_c00332{left:453.333333pt;}
.xa8_c00332{left:456.000000pt;}
.xbd_c00332{left:458.293333pt;}
.xcc_c00332{left:460.000000pt;}
.x96_c00332{left:461.333333pt;}
.xc_c00332{left:462.666667pt;}
.x104_c00332{left:463.626667pt;}
.x68_c00332{left:465.333333pt;}
.x46_c00332{left:468.373333pt;}
.xc2_c00332{left:469.333333pt;}
.x80_c00332{left:470.666667pt;}
.xb6_c00332{left:473.706667pt;}
.x61_c00332{left:474.666667pt;}
.x26_c00332{left:476.000000pt;}
.x33_c00332{left:477.333333pt;}
.xe4_c00332{left:478.666667pt;}
.xfc_c00332{left:481.333333pt;}
.x9e_c00332{left:483.040000pt;}
.x79_c00332{left:484.000000pt;}
.xbe_c00332{left:485.333333pt;}
.xef_c00332{left:486.666667pt;}
.xf2_c00332{left:489.706667pt;}
.xdd_c00332{left:490.666667pt;}
.xc3_c00332{left:492.000000pt;}
.xa9_c00332{left:492.960000pt;}
.x27_c00332{left:496.373333pt;}
.x55_c00332{left:497.333333pt;}
.xcd_c00332{left:499.626667pt;}
.x69_c00332{left:501.333333pt;}
.xb0_c00332{left:502.293333pt;}
.xd6_c00332{left:504.960000pt;}
.x1b_c00332{left:506.666667pt;}
.x8d_c00332{left:507.626667pt;}
.x47_c00332{left:508.960000pt;}
.xd_c00332{left:510.666667pt;}
.x56_c00332{left:512.000000pt;}
.x3d_c00332{left:512.960000pt;}
.xf3_c00332{left:514.666667pt;}
.x6f_c00332{left:516.000000pt;}
.xb1_c00332{left:518.666667pt;}
.x28_c00332{left:520.000000pt;}
.x8e_c00332{left:524.000000pt;}
.xe_c00332{left:524.960000pt;}
.x85_c00332{left:526.666667pt;}
.xe5_c00332{left:527.800000pt;}
.x105_c00332{left:529.333333pt;}
.x97_c00332{left:530.293333pt;}
.x3e_c00332{left:533.333333pt;}
.x70_c00332{left:535.040000pt;}
.x48_c00332{left:536.000000pt;}
.xff_c00332{left:537.333333pt;}
.xb2_c00332{left:538.666667pt;}
.xc4_c00332{left:540.000000pt;}
.x86_c00332{left:542.666667pt;}
.x9f_c00332{left:545.333333pt;}
.x49_c00332{left:549.333333pt;}
.x81_c00332{left:550.666667pt;}
.x57_c00332{left:553.333333pt;}
.xf4_c00332{left:554.293333pt;}
.x34_c00332{left:555.626667pt;}
.x29_c00332{left:558.293333pt;}
.xa0_c00332{left:560.000000pt;}
.xe6_c00332{left:562.293333pt;}
.x4a_c00332{left:564.000000pt;}
.xbf_c00332{left:565.333333pt;}
.x35_c00332{left:566.666667pt;}
.xaa_c00332{left:568.000000pt;}
.x98_c00332{left:569.333333pt;}
.x8f_c00332{left:570.666667pt;}
.x71_c00332{left:571.626667pt;}
.x62_c00332{left:572.960000pt;}
.xb3_c00332{left:576.000000pt;}
.x100_c00332{left:581.706667pt;}
.xf_c00332{left:582.666667pt;}
.x58_c00332{left:585.706667pt;}
.x1c_c00332{left:586.666667pt;}
.x72_c00332{left:589.706667pt;}
.x4b_c00332{left:592.000000pt;}
.xf5_c00332{left:593.333333pt;}
.x90_c00332{left:594.293333pt;}
.x2a_c00332{left:595.626667pt;}
.x1d_c00332{left:600.000000pt;}
.x10_c00332{left:600.960000pt;}
.xc5_c00332{left:602.666667pt;}
.xc0_c00332{left:604.000000pt;}
.xa1_c00332{left:606.666667pt;}
.xab_c00332{left:608.000000pt;}
.x4c_c00332{left:608.960000pt;}
.x59_c00332{left:610.666667pt;}
.x73_c00332{left:613.333333pt;}
.x1e_c00332{left:615.040000pt;}
.x36_c00332{left:617.133333pt;}
.x2b_c00332{left:623.040000pt;}
.xf8_c00332{left:625.333333pt;}
.x2_c00332{left:626.293333pt;}
.x4d_c00332{left:628.373333pt;}
.xcf_c00332{left:631.040000pt;}
.x11_c00332{left:636.000000pt;}
.xf6_c00332{left:637.333333pt;}
.x87_c00332{left:638.666667pt;}
.x3_c00332{left:640.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_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_0be7b73bd9217544c0593e06.woff2')format("woff");}.ff1_c00333{font-family:ff1_c00333;line-height:1.688965;font-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_c00333{transform:matrix(0.354294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354294,0.000000,0.000000,0.250000,0,0);}
.mbb_c00333{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m27_c00333{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.md8_c00333{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m39_c00333{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m6d_c00333{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m7e_c00333{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m73_c00333{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m5b_c00333{transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);}
.m68_c00333{transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);}
.mab_c00333{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.mea_c00333{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m7d_c00333{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mc1_c00333{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m45_c00333{transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);}
.me0_c00333{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.me9_c00333{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.md1_c00333{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m6e_c00333{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m76_c00333{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.mb3_c00333{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m33_c00333{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m89_c00333{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m5c_c00333{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.mc7_c00333{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m80_c00333{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.ma0_c00333{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.mc3_c00333{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.md_c00333{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m3_c00333{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m56_c00333{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.m9a_c00333{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mef_c00333{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m14_c00333{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m6c_c00333{transform:matrix(0.417440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417440,0.000000,0.000000,0.250000,0,0);}
.mfa_c00333{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m8e_c00333{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mcd_c00333{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mfc_c00333{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m49_c00333{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.md3_c00333{transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);}
.m2b_c00333{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m3d_c00333{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.mc2_c00333{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m8b_c00333{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mf4_c00333{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.ma4_c00333{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m94_c00333{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m100_c00333{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m2_c00333{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mde_c00333{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.ma1_c00333{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.md5_c00333{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m69_c00333{transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);}
.me4_c00333{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.mce_c00333{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mb7_c00333{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.mbf_c00333{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m6f_c00333{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m59_c00333{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.me7_c00333{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m3a_c00333{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.mfd_c00333{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m7b_c00333{transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);}
.mbc_c00333{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mb2_c00333{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m26_c00333{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m12_c00333{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.m8a_c00333{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m74_c00333{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.mad_c00333{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.mf6_c00333{transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);}
.m84_c00333{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.ma6_c00333{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mff_c00333{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mc6_c00333{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m101_c00333{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.me5_c00333{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m96_c00333{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m98_c00333{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m57_c00333{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m5a_c00333{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.ma8_c00333{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m64_c00333{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.mc9_c00333{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m70_c00333{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.md9_c00333{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.m95_c00333{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m18_c00333{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.mf2_c00333{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.mdd_c00333{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m51_c00333{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.m4f_c00333{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m4d_c00333{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m58_c00333{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m1a_c00333{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m11_c00333{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m55_c00333{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m66_c00333{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m15_c00333{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m86_c00333{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m75_c00333{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m9d_c00333{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.mf5_c00333{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m2f_c00333{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mb0_c00333{transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);}
.m1_c00333{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m35_c00333{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.md0_c00333{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m79_c00333{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m42_c00333{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_c00333{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mb6_c00333{transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);}
.mf9_c00333{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m7c_c00333{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mb_c00333{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m91_c00333{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m3c_c00333{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m8f_c00333{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m102_c00333{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m82_c00333{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mbd_c00333{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m21_c00333{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m54_c00333{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.mf7_c00333{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.med_c00333{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.maa_c00333{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m3b_c00333{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m61_c00333{transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);}
.mcf_c00333{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m5d_c00333{transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);}
.m4e_c00333{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.mca_c00333{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.mba_c00333{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mb4_c00333{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m9e_c00333{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m2d_c00333{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mbe_c00333{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mb9_c00333{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m9_c00333{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.me8_c00333{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m16_c00333{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m62_c00333{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m8d_c00333{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.md4_c00333{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m34_c00333{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.mae_c00333{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.md7_c00333{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m9c_c00333{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mcc_c00333{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m78_c00333{transform:matrix(0.540441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540441,0.000000,0.000000,0.250000,0,0);}
.mb5_c00333{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m38_c00333{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.mee_c00333{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m44_c00333{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m83_c00333{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m1c_c00333{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.md6_c00333{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m5f_c00333{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m92_c00333{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m7f_c00333{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mf3_c00333{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m47_c00333{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m4_c00333{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mc5_c00333{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m7_c00333{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m17_c00333{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m87_c00333{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.me1_c00333{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mc0_c00333{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m40_c00333{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m7a_c00333{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.mf1_c00333{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m4a_c00333{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.m99_c00333{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m3f_c00333{transform:matrix(0.561765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561765,0.000000,0.000000,0.250000,0,0);}
.ma3_c00333{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m41_c00333{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.me3_c00333{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m1d_c00333{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m9f_c00333{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.mc4_c00333{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.mb1_c00333{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m4c_c00333{transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);}
.m24_c00333{transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);}
.mc_c00333{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mf8_c00333{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m5_c00333{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mec_c00333{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.me6_c00333{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m85_c00333{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.ma7_c00333{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m19_c00333{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.maf_c00333{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mfe_c00333{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m3e_c00333{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m25_c00333{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m4b_c00333{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m81_c00333{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.mdb_c00333{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.ma_c00333{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m20_c00333{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m53_c00333{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.mf_c00333{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m97_c00333{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m2c_c00333{transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);}
.mda_c00333{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.m50_c00333{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mfb_c00333{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m23_c00333{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m0_c00333{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.mac_c00333{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m22_c00333{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m6a_c00333{transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);}
.m8_c00333{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m65_c00333{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m48_c00333{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m2e_c00333{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_c00333{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);}
.m77_c00333{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m67_c00333{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m1b_c00333{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m63_c00333{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.meb_c00333{transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);}
.m60_c00333{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.me2_c00333{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m32_c00333{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m43_c00333{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m2a_c00333{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m88_c00333{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.me_c00333{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m5e_c00333{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m13_c00333{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m30_c00333{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.m37_c00333{transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);}
.m46_c00333{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m10_c00333{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m31_c00333{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);}
.m72_c00333{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m6_c00333{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mb8_c00333{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m71_c00333{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);}
.m28_c00333{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.ma5_c00333{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mdc_c00333{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.md2_c00333{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m1e_c00333{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mc8_c00333{transform:matrix(0.762821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.762821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.762821,0.000000,0.000000,0.250000,0,0);}
.ma2_c00333{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m1f_c00333{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m9b_c00333{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m90_c00333{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mcb_c00333{transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);}
.mf0_c00333{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.m29_c00333{transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);}
.m6b_c00333{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m52_c00333{transform:matrix(0.915198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.915198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.915198,0.000000,0.000000,0.250000,0,0);}
.m36_c00333{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m8c_c00333{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
.fs7_c00333{font-size:3.420000px;}
.fs6_c00333{font-size:13.620000px;}
.fs3_c00333{font-size:18.720000px;}
.fs0_c00333{font-size:20.400000px;}
.fs4_c00333{font-size:25.500000px;}
.fs1_c00333{font-size:28.920000px;}
.fs5_c00333{font-size:32.340000px;}
.fs2_c00333{font-size:35.700000px;}
.fs8_c00333{font-size:39.120000px;}
.y0_c00333{bottom:0.000000px;}
.yd9_c00333{bottom:227.745000px;}
.yda_c00333{bottom:229.905000px;}
.ydb_c00333{bottom:231.405000px;}
.yd8_c00333{bottom:248.745000px;}
.yd7_c00333{bottom:249.825000px;}
.yd6_c00333{bottom:250.905000px;}
.yd4_c00333{bottom:268.245000px;}
.yd5_c00333{bottom:269.325000px;}
.yd3_c00333{bottom:269.970000px;}
.yd2_c00333{bottom:270.405000px;}
.yd1_c00333{bottom:287.325000px;}
.ycf_c00333{bottom:287.745000px;}
.yd0_c00333{bottom:289.905000px;}
.yca_c00333{bottom:307.245000px;}
.yce_c00333{bottom:308.130000px;}
.ycc_c00333{bottom:309.405000px;}
.ycd_c00333{bottom:309.630000px;}
.ycb_c00333{bottom:310.905000px;}
.yc5_c00333{bottom:326.745000px;}
.yc8_c00333{bottom:328.050000px;}
.yc4_c00333{bottom:328.905000px;}
.yc9_c00333{bottom:329.130000px;}
.yc6_c00333{bottom:329.970000px;}
.yc7_c00333{bottom:330.405000px;}
.yc3_c00333{bottom:347.325000px;}
.ybf_c00333{bottom:347.745000px;}
.ybe_c00333{bottom:348.405000px;}
.yc2_c00333{bottom:348.630000px;}
.yc1_c00333{bottom:348.825000px;}
.yc0_c00333{bottom:349.905000px;}
.ybb_c00333{bottom:367.245000px;}
.ybc_c00333{bottom:368.130000px;}
.ybd_c00333{bottom:368.325000px;}
.yba_c00333{bottom:369.405000px;}
.yb6_c00333{bottom:385.245000px;}
.yb8_c00333{bottom:386.745000px;}
.yb5_c00333{bottom:388.905000px;}
.yb9_c00333{bottom:389.970000px;}
.yb7_c00333{bottom:390.405000px;}
.yb3_c00333{bottom:406.245000px;}
.yb4_c00333{bottom:407.130000px;}
.yb1_c00333{bottom:408.405000px;}
.yb2_c00333{bottom:409.905000px;}
.yb0_c00333{bottom:425.745000px;}
.yad_c00333{bottom:427.245000px;}
.yaf_c00333{bottom:427.905000px;}
.yae_c00333{bottom:428.130000px;}
.yac_c00333{bottom:428.970000px;}
.yab_c00333{bottom:429.405000px;}
.ya8_c00333{bottom:444.405000px;}
.ya6_c00333{bottom:445.245000px;}
.ya9_c00333{bottom:446.745000px;}
.yaa_c00333{bottom:447.405000px;}
.ya7_c00333{bottom:448.905000px;}
.ya0_c00333{bottom:463.905000px;}
.ya5_c00333{bottom:464.745000px;}
.ya4_c00333{bottom:465.825000px;}
.y9f_c00333{bottom:466.245000px;}
.ya2_c00333{bottom:466.905000px;}
.ya1_c00333{bottom:467.130000px;}
.ya3_c00333{bottom:467.970000px;}
.y9e_c00333{bottom:468.405000px;}
.y9c_c00333{bottom:483.405000px;}
.y9b_c00333{bottom:484.680000px;}
.y98_c00333{bottom:485.745000px;}
.y9d_c00333{bottom:486.405000px;}
.y99_c00333{bottom:486.630000px;}
.y9a_c00333{bottom:487.905000px;}
.y97_c00333{bottom:505.245000px;}
.y96_c00333{bottom:507.405000px;}
.y95_c00333{bottom:524.745000px;}
.y93_c00333{bottom:526.905000px;}
.y94_c00333{bottom:527.130000px;}
.y8e_c00333{bottom:545.745000px;}
.y92_c00333{bottom:545.970000px;}
.y8d_c00333{bottom:546.405000px;}
.y90_c00333{bottom:546.630000px;}
.y91_c00333{bottom:547.470000px;}
.y8f_c00333{bottom:547.905000px;}
.y88_c00333{bottom:563.745000px;}
.y8c_c00333{bottom:564.825000px;}
.y8b_c00333{bottom:565.245000px;}
.y89_c00333{bottom:565.905000px;}
.y8a_c00333{bottom:566.130000px;}
.y86_c00333{bottom:583.245000px;}
.y85_c00333{bottom:584.745000px;}
.y84_c00333{bottom:585.405000px;}
.y87_c00333{bottom:585.630000px;}
.y83_c00333{bottom:586.905000px;}
.y7f_c00333{bottom:604.245000px;}
.y81_c00333{bottom:605.130000px;}
.y82_c00333{bottom:605.325000px;}
.y80_c00333{bottom:606.405000px;}
.y7e_c00333{bottom:622.245000px;}
.y7c_c00333{bottom:623.325000px;}
.y7d_c00333{bottom:624.825000px;}
.y7b_c00333{bottom:625.905000px;}
.y75_c00333{bottom:642.180000px;}
.y79_c00333{bottom:642.825000px;}
.y77_c00333{bottom:643.245000px;}
.y7a_c00333{bottom:644.970000px;}
.y76_c00333{bottom:645.405000px;}
.y78_c00333{bottom:645.630000px;}
.y73_c00333{bottom:662.745000px;}
.y74_c00333{bottom:663.825000px;}
.y71_c00333{bottom:664.905000px;}
.y72_c00333{bottom:665.130000px;}
.y70_c00333{bottom:683.325000px;}
.y6c_c00333{bottom:683.745000px;}
.y6b_c00333{bottom:684.405000px;}
.y6f_c00333{bottom:684.630000px;}
.y6d_c00333{bottom:685.470000px;}
.y6e_c00333{bottom:685.905000px;}
.y69_c00333{bottom:700.905000px;}
.y68_c00333{bottom:703.245000px;}
.y66_c00333{bottom:704.325000px;}
.y6a_c00333{bottom:704.970000px;}
.y67_c00333{bottom:705.405000px;}
.y61_c00333{bottom:722.745000px;}
.y64_c00333{bottom:723.630000px;}
.y65_c00333{bottom:724.470000px;}
.y63_c00333{bottom:724.905000px;}
.y62_c00333{bottom:724.920000px;}
.y5f_c00333{bottom:742.245000px;}
.y60_c00333{bottom:744.405000px;}
.y5b_c00333{bottom:761.745000px;}
.y5c_c00333{bottom:762.630000px;}
.y5d_c00333{bottom:762.825000px;}
.y5e_c00333{bottom:763.470000px;}
.y5a_c00333{bottom:763.905000px;}
.y56_c00333{bottom:788.325000px;}
.y59_c00333{bottom:789.405000px;}
.y57_c00333{bottom:789.630000px;}
.y58_c00333{bottom:790.470000px;}
.y55_c00333{bottom:791.550000px;}
.y4e_c00333{bottom:802.470000px;}
.y52_c00333{bottom:803.325000px;}
.y54_c00333{bottom:803.550000px;}
.y4f_c00333{bottom:804.405000px;}
.y51_c00333{bottom:804.630000px;}
.y53_c00333{bottom:805.470000px;}
.y50_c00333{bottom:806.550000px;}
.y4c_c00333{bottom:817.470000px;}
.y4b_c00333{bottom:818.325000px;}
.y4d_c00333{bottom:819.405000px;}
.y4a_c00333{bottom:820.695000px;}
.y48_c00333{bottom:832.905000px;}
.y49_c00333{bottom:833.325000px;}
.y46_c00333{bottom:835.050000px;}
.y47_c00333{bottom:835.470000px;}
.y44_c00333{bottom:847.470000px;}
.y43_c00333{bottom:847.905000px;}
.y45_c00333{bottom:850.050000px;}
.y3d_c00333{bottom:862.470000px;}
.y40_c00333{bottom:862.905000px;}
.y41_c00333{bottom:863.970000px;}
.y42_c00333{bottom:864.195000px;}
.y3f_c00333{bottom:865.050000px;}
.y3e_c00333{bottom:865.470000px;}
.y3b_c00333{bottom:876.825000px;}
.y3c_c00333{bottom:877.905000px;}
.y38_c00333{bottom:891.825000px;}
.y35_c00333{bottom:892.050000px;}
.y36_c00333{bottom:892.905000px;}
.y3a_c00333{bottom:893.130000px;}
.y37_c00333{bottom:893.970000px;}
.y39_c00333{bottom:895.050000px;}
.y32_c00333{bottom:906.825000px;}
.y33_c00333{bottom:907.905000px;}
.y34_c00333{bottom:908.970000px;}
.y2f_c00333{bottom:921.825000px;}
.y2c_c00333{bottom:922.050000px;}
.y2e_c00333{bottom:922.905000px;}
.y30_c00333{bottom:923.550000px;}
.y2d_c00333{bottom:923.970000px;}
.y31_c00333{bottom:924.195000px;}
.y2b_c00333{bottom:936.825000px;}
.y2a_c00333{bottom:938.550000px;}
.y28_c00333{bottom:950.550000px;}
.y27_c00333{bottom:951.405000px;}
.y25_c00333{bottom:951.825000px;}
.y22_c00333{bottom:952.050000px;}
.y29_c00333{bottom:952.470000px;}
.y20_c00333{bottom:953.130000px;}
.y23_c00333{bottom:953.550000px;}
.y21_c00333{bottom:953.970000px;}
.y26_c00333{bottom:954.195000px;}
.y24_c00333{bottom:955.050000px;}
.y1e_c00333{bottom:965.325000px;}
.y1f_c00333{bottom:966.405000px;}
.y1d_c00333{bottom:967.470000px;}
.y1b_c00333{bottom:967.695000px;}
.y1c_c00333{bottom:968.550000px;}
.y19_c00333{bottom:980.325000px;}
.y18_c00333{bottom:981.405000px;}
.y16_c00333{bottom:981.630000px;}
.y1a_c00333{bottom:982.470000px;}
.y17_c00333{bottom:983.550000px;}
.y13_c00333{bottom:1003.245000px;}
.y15_c00333{bottom:1005.405000px;}
.y14_c00333{bottom:1006.470000px;}
.ye_c00333{bottom:1022.325000px;}
.y12_c00333{bottom:1023.630000px;}
.y11_c00333{bottom:1024.470000px;}
.y10_c00333{bottom:1024.905000px;}
.yf_c00333{bottom:1025.970000px;}
.yc_c00333{bottom:1041.825000px;}
.ya_c00333{bottom:1042.245000px;}
.yd_c00333{bottom:1042.905000px;}
.yb_c00333{bottom:1043.970000px;}
.y9_c00333{bottom:1044.405000px;}
.y7_c00333{bottom:1061.325000px;}
.y3_c00333{bottom:1061.745000px;}
.y8_c00333{bottom:1062.630000px;}
.y4_c00333{bottom:1063.905000px;}
.y5_c00333{bottom:1064.130000px;}
.y6_c00333{bottom:1064.970000px;}
.y2_c00333{bottom:1099.905000px;}
.y1_c00333{bottom:1102.050000px;}
.h8_c00333{height:4.206533px;}
.h7_c00333{height:16.752334px;}
.h4_c00333{height:23.025234px;}
.h1_c00333{height:25.091602px;}
.h5_c00333{height:31.364502px;}
.h2_c00333{height:35.571035px;}
.h6_c00333{height:39.777568px;}
.h3_c00333{height:43.910303px;}
.h9_c00333{height:48.116836px;}
.h0_c00333{height:1335.000000px;}
.w0_c00333{width:880.500000px;}
.x0_c00333{left:0.000000px;}
.x104_c00333{left:150.420000px;}
.xb4_c00333{left:151.500000px;}
.x2_c00333{left:152.580000px;}
.x3a_c00333{left:154.080000px;}
.x3b_c00333{left:165.420000px;}
.x40_c00333{left:166.500000px;}
.x2e_c00333{left:168.000000px;}
.x10_c00333{left:169.500000px;}
.x9b_c00333{left:172.500000px;}
.xbc_c00333{left:176.580000px;}
.xf8_c00333{left:178.080000px;}
.x4e_c00333{left:180.000000px;}
.x56_c00333{left:181.920000px;}
.x7a_c00333{left:183.420000px;}
.x41_c00333{left:184.500000px;}
.x2f_c00333{left:185.580000px;}
.x11_c00333{left:187.920000px;}
.xe2_c00333{left:189.420000px;}
.xab_c00333{left:190.920000px;}
.x105_c00333{left:195.420000px;}
.xd9_c00333{left:198.000000px;}
.xa1_c00333{left:199.080000px;}
.x3c_c00333{left:202.500000px;}
.x2c_c00333{left:204.000000px;}
.x82_c00333{left:205.920000px;}
.x1f_c00333{left:210.000000px;}
.x61_c00333{left:212.580000px;}
.xde_c00333{left:214.500000px;}
.xc4_c00333{left:216.000000px;}
.xe3_c00333{left:217.500000px;}
.xac_c00333{left:219.000000px;}
.x3_c00333{left:220.920000px;}
.x2d_c00333{left:223.080000px;}
.x6a_c00333{left:225.000000px;}
.x20_c00333{left:227.580000px;}
.xa2_c00333{left:229.500000px;}
.xb5_c00333{left:230.580000px;}
.x63_c00333{left:232.080000px;}
.x3d_c00333{left:236.580000px;}
.x106_c00333{left:238.500000px;}
.x30_c00333{left:239.580000px;}
.x7b_c00333{left:244.080000px;}
.xe4_c00333{left:245.580000px;}
.xcc_c00333{left:247.500000px;}
.x93_c00333{left:249.420000px;}
.x72_c00333{left:250.500000px;}
.x57_c00333{left:253.080000px;}
.x6b_c00333{left:255.420000px;}
.x42_c00333{left:256.500000px;}
.xbd_c00333{left:260.580000px;}
.x12_c00333{left:262.500000px;}
.x3e_c00333{left:263.580000px;}
.x10b_c00333{left:265.500000px;}
.x21_c00333{left:267.000000px;}
.xad_c00333{left:268.920000px;}
.xc5_c00333{left:270.000000px;}
.xd3_c00333{left:271.500000px;}
.x107_c00333{left:272.580000px;}
.x6c_c00333{left:274.500000px;}
.x84_c00333{left:276.000000px;}
.x94_c00333{left:277.500000px;}
.x58_c00333{left:280.500000px;}
.x62_c00333{left:282.000000px;}
.x13_c00333{left:283.920000px;}
.xe9_c00333{left:285.000000px;}
.x83_c00333{left:289.920000px;}
.x4_c00333{left:291.000000px;}
.x95_c00333{left:294.420000px;}
.x43_c00333{left:296.580000px;}
.xae_c00333{left:298.500000px;}
.x71_c00333{left:301.080000px;}
.x73_c00333{left:303.000000px;}
.x4f_c00333{left:306.000000px;}
.x3f_c00333{left:307.500000px;}
.x85_c00333{left:309.420000px;}
.xed_c00333{left:315.420000px;}
.xb6_c00333{left:316.500000px;}
.xcd_c00333{left:318.420000px;}
.xf9_c00333{left:319.500000px;}
.x59_c00333{left:323.580000px;}
.x31_c00333{left:331.920000px;}
.x22_c00333{left:333.000000px;}
.xdf_c00333{left:334.500000px;}
.xf2_c00333{left:336.000000px;}
.x5_c00333{left:337.080000px;}
.x74_c00333{left:339.000000px;}
.xfb_c00333{left:340.920000px;}
.xaf_c00333{left:342.000000px;}
.x5a_c00333{left:343.500000px;}
.x23_c00333{left:345.000000px;}
.x10e_c00333{left:346.080000px;}
.x44_c00333{left:349.080000px;}
.xa3_c00333{left:351.420000px;}
.x64_c00333{left:353.145000px;}
.x8e_c00333{left:355.500000px;}
.xff_c00333{left:358.080000px;}
.x6_c00333{left:360.000000px;}
.xda_c00333{left:361.920000px;}
.x14_c00333{left:364.080000px;}
.x50_c00333{left:365.580000px;}
.x9c_c00333{left:367.500000px;}
.xe5_c00333{left:369.000000px;}
.xc6_c00333{left:370.500000px;}
.xe8_c00333{left:372.000000px;}
.x6d_c00333{left:373.500000px;}
.x45_c00333{left:375.000000px;}
.x86_c00333{left:376.920000px;}
.xf3_c00333{left:379.500000px;}
.x24_c00333{left:382.920000px;}
.x75_c00333{left:385.500000px;}
.x7_c00333{left:387.000000px;}
.xdb_c00333{left:390.420000px;}
.xe0_c00333{left:393.420000px;}
.x32_c00333{left:394.920000px;}
.x15_c00333{left:396.420000px;}
.x108_c00333{left:397.500000px;}
.x7c_c00333{left:399.000000px;}
.x1_c00333{left:403.500000px;}
.xc7_c00333{left:405.000000px;}
.xbe_c00333{left:408.000000px;}
.x9d_c00333{left:409.080000px;}
.x33_c00333{left:410.580000px;}
.x5b_c00333{left:412.920000px;}
.x46_c00333{left:414.420000px;}
.xa4_c00333{left:417.000000px;}
.x51_c00333{left:421.500000px;}
.xce_c00333{left:423.000000px;}
.x16_c00333{left:424.500000px;}
.xc8_c00333{left:426.420000px;}
.x47_c00333{left:430.500000px;}
.x8f_c00333{left:432.420000px;}
.x25_c00333{left:433.500000px;}
.x65_c00333{left:436.500000px;}
.x10c_c00333{left:438.420000px;}
.x5c_c00333{left:442.500000px;}
.xb7_c00333{left:444.420000px;}
.x8_c00333{left:447.000000px;}
.x7d_c00333{left:448.080000px;}
.x6e_c00333{left:450.000000px;}
.xa5_c00333{left:451.080000px;}
.xee_c00333{left:454.920000px;}
.x87_c00333{left:456.000000px;}
.x96_c00333{left:457.080000px;}
.x100_c00333{left:459.000000px;}
.xcf_c00333{left:461.145000px;}
.x26_c00333{left:464.580000px;}
.x9_c00333{left:466.920000px;}
.xd4_c00333{left:468.000000px;}
.x17_c00333{left:469.080000px;}
.xf4_c00333{left:471.000000px;}
.x88_c00333{left:472.080000px;}
.x34_c00333{left:474.000000px;}
.x52_c00333{left:477.645000px;}
.xfc_c00333{left:478.920000px;}
.xd5_c00333{left:480.000000px;}
.x27_c00333{left:481.500000px;}
.xef_c00333{left:483.000000px;}
.x10d_c00333{left:484.500000px;}
.xc9_c00333{left:485.580000px;}
.xe1_c00333{left:487.500000px;}
.x7e_c00333{left:489.000000px;}
.xb0_c00333{left:490.500000px;}
.x66_c00333{left:491.580000px;}
.xa_c00333{left:495.000000px;}
.x6f_c00333{left:496.920000px;}
.xa6_c00333{left:498.420000px;}
.xf5_c00333{left:499.500000px;}
.x18_c00333{left:501.000000px;}
.xd0_c00333{left:504.420000px;}
.x97_c00333{left:505.500000px;}
.xfd_c00333{left:507.000000px;}
.x28_c00333{left:508.080000px;}
.xbf_c00333{left:511.500000px;}
.xea_c00333{left:513.420000px;}
.x35_c00333{left:514.920000px;}
.x48_c00333{left:516.000000px;}
.x89_c00333{left:517.500000px;}
.x76_c00333{left:518.580000px;}
.xec_c00333{left:520.500000px;}
.x53_c00333{left:522.420000px;}
.xe6_c00333{left:523.500000px;}
.x7f_c00333{left:525.420000px;}
.x101_c00333{left:526.500000px;}
.x49_c00333{left:528.000000px;}
.xa7_c00333{left:529.500000px;}
.xd1_c00333{left:531.420000px;}
.x36_c00333{left:532.920000px;}
.x8a_c00333{left:538.920000px;}
.xb1_c00333{left:543.420000px;}
.xd6_c00333{left:547.500000px;}
.x9e_c00333{left:549.000000px;}
.x19_c00333{left:550.080000px;}
.x5d_c00333{left:552.420000px;}
.xb_c00333{left:553.500000px;}
.x70_c00333{left:556.080000px;}
.xc0_c00333{left:559.500000px;}
.x80_c00333{left:561.000000px;}
.xfa_c00333{left:562.500000px;}
.xd7_c00333{left:565.080000px;}
.x54_c00333{left:567.000000px;}
.xb2_c00333{left:568.920000px;}
.x1a_c00333{left:570.420000px;}
.x5e_c00333{left:571.920000px;}
.x37_c00333{left:573.000000px;}
.x109_c00333{left:576.420000px;}
.x90_c00333{left:577.500000px;}
.xb8_c00333{left:579.420000px;}
.xf0_c00333{left:580.500000px;}
.xeb_c00333{left:582.420000px;}
.xc1_c00333{left:583.920000px;}
.xc_c00333{left:587.580000px;}
.x98_c00333{left:589.500000px;}
.x77_c00333{left:590.580000px;}
.xdc_c00333{left:592.080000px;}
.x4a_c00333{left:597.000000px;}
.x1b_c00333{left:598.080000px;}
.x8b_c00333{left:600.000000px;}
.x9f_c00333{left:601.500000px;}
.xca_c00333{left:603.000000px;}
.xa8_c00333{left:604.500000px;}
.xd_c00333{left:607.500000px;}
.xb9_c00333{left:610.080000px;}
.x5f_c00333{left:613.080000px;}
.x102_c00333{left:615.000000px;}
.x91_c00333{left:616.920000px;}
.xa9_c00333{left:619.920000px;}
.x38_c00333{left:624.000000px;}
.xdd_c00333{left:625.920000px;}
.xd2_c00333{left:630.000000px;}
.x78_c00333{left:631.500000px;}
.x4b_c00333{left:633.000000px;}
.x81_c00333{left:634.080000px;}
.xcb_c00333{left:636.000000px;}
.x29_c00333{left:637.080000px;}
.x8c_c00333{left:640.920000px;}
.xba_c00333{left:642.000000px;}
.x67_c00333{left:643.500000px;}
.xa0_c00333{left:645.000000px;}
.x1c_c00333{left:652.500000px;}
.x68_c00333{left:653.580000px;}
.x2a_c00333{left:655.500000px;}
.xe7_c00333{left:657.000000px;}
.x10a_c00333{left:658.500000px;}
.xf1_c00333{left:660.645000px;}
.x4c_c00333{left:661.920000px;}
.x55_c00333{left:664.080000px;}
.xc2_c00333{left:667.500000px;}
.xaa_c00333{left:669.000000px;}
.x99_c00333{left:670.500000px;}
.xf6_c00333{left:672.000000px;}
.xfe_c00333{left:675.420000px;}
.x8d_c00333{left:678.000000px;}
.x39_c00333{left:679.080000px;}
.x2b_c00333{left:681.000000px;}
.xe_c00333{left:682.920000px;}
.xbb_c00333{left:684.420000px;}
.xd8_c00333{left:687.000000px;}
.x1d_c00333{left:688.080000px;}
.x69_c00333{left:691.500000px;}
.xc3_c00333{left:696.420000px;}
.x79_c00333{left:699.420000px;}
.xf_c00333{left:702.420000px;}
.x103_c00333{left:703.500000px;}
.x4d_c00333{left:705.000000px;}
.x1e_c00333{left:708.420000px;}
.x9a_c00333{left:709.500000px;}
.xf7_c00333{left:714.000000px;}
.x92_c00333{left:717.000000px;}
.xb3_c00333{left:720.000000px;}
.x60_c00333{left:724.920000px;}
@media print{
.v0_c00333{vertical-align:0.000000pt;}
.ls0_c00333{letter-spacing:0.000000pt;}
.ws0_c00333{word-spacing:0.000000pt;}
.fs7_c00333{font-size:3.040000pt;}
.fs6_c00333{font-size:12.106667pt;}
.fs3_c00333{font-size:16.640000pt;}
.fs0_c00333{font-size:18.133333pt;}
.fs4_c00333{font-size:22.666667pt;}
.fs1_c00333{font-size:25.706667pt;}
.fs5_c00333{font-size:28.746667pt;}
.fs2_c00333{font-size:31.733333pt;}
.fs8_c00333{font-size:34.773333pt;}
.y0_c00333{bottom:0.000000pt;}
.yd9_c00333{bottom:202.440000pt;}
.yda_c00333{bottom:204.360000pt;}
.ydb_c00333{bottom:205.693333pt;}
.yd8_c00333{bottom:221.106667pt;}
.yd7_c00333{bottom:222.066667pt;}
.yd6_c00333{bottom:223.026667pt;}
.yd4_c00333{bottom:238.440000pt;}
.yd5_c00333{bottom:239.400000pt;}
.yd3_c00333{bottom:239.973333pt;}
.yd2_c00333{bottom:240.360000pt;}
.yd1_c00333{bottom:255.400000pt;}
.ycf_c00333{bottom:255.773333pt;}
.yd0_c00333{bottom:257.693333pt;}
.yca_c00333{bottom:273.106667pt;}
.yce_c00333{bottom:273.893333pt;}
.ycc_c00333{bottom:275.026667pt;}
.ycd_c00333{bottom:275.226667pt;}
.ycb_c00333{bottom:276.360000pt;}
.yc5_c00333{bottom:290.440000pt;}
.yc8_c00333{bottom:291.600000pt;}
.yc4_c00333{bottom:292.360000pt;}
.yc9_c00333{bottom:292.560000pt;}
.yc6_c00333{bottom:293.306667pt;}
.yc7_c00333{bottom:293.693333pt;}
.yc3_c00333{bottom:308.733333pt;}
.ybf_c00333{bottom:309.106667pt;}
.ybe_c00333{bottom:309.693333pt;}
.yc2_c00333{bottom:309.893333pt;}
.yc1_c00333{bottom:310.066667pt;}
.yc0_c00333{bottom:311.026667pt;}
.ybb_c00333{bottom:326.440000pt;}
.ybc_c00333{bottom:327.226667pt;}
.ybd_c00333{bottom:327.400000pt;}
.yba_c00333{bottom:328.360000pt;}
.yb6_c00333{bottom:342.440000pt;}
.yb8_c00333{bottom:343.773333pt;}
.yb5_c00333{bottom:345.693333pt;}
.yb9_c00333{bottom:346.640000pt;}
.yb7_c00333{bottom:347.026667pt;}
.yb3_c00333{bottom:361.106667pt;}
.yb4_c00333{bottom:361.893333pt;}
.yb1_c00333{bottom:363.026667pt;}
.yb2_c00333{bottom:364.360000pt;}
.yb0_c00333{bottom:378.440000pt;}
.yad_c00333{bottom:379.773333pt;}
.yaf_c00333{bottom:380.360000pt;}
.yae_c00333{bottom:380.560000pt;}
.yac_c00333{bottom:381.306667pt;}
.yab_c00333{bottom:381.693333pt;}
.ya8_c00333{bottom:395.026667pt;}
.ya6_c00333{bottom:395.773333pt;}
.ya9_c00333{bottom:397.106667pt;}
.yaa_c00333{bottom:397.693333pt;}
.ya7_c00333{bottom:399.026667pt;}
.ya0_c00333{bottom:412.360000pt;}
.ya5_c00333{bottom:413.106667pt;}
.ya4_c00333{bottom:414.066667pt;}
.y9f_c00333{bottom:414.440000pt;}
.ya2_c00333{bottom:415.026667pt;}
.ya1_c00333{bottom:415.226667pt;}
.ya3_c00333{bottom:415.973333pt;}
.y9e_c00333{bottom:416.360000pt;}
.y9c_c00333{bottom:429.693333pt;}
.y9b_c00333{bottom:430.826667pt;}
.y98_c00333{bottom:431.773333pt;}
.y9d_c00333{bottom:432.360000pt;}
.y99_c00333{bottom:432.560000pt;}
.y9a_c00333{bottom:433.693333pt;}
.y97_c00333{bottom:449.106667pt;}
.y96_c00333{bottom:451.026667pt;}
.y95_c00333{bottom:466.440000pt;}
.y93_c00333{bottom:468.360000pt;}
.y94_c00333{bottom:468.560000pt;}
.y8e_c00333{bottom:485.106667pt;}
.y92_c00333{bottom:485.306667pt;}
.y8d_c00333{bottom:485.693333pt;}
.y90_c00333{bottom:485.893333pt;}
.y91_c00333{bottom:486.640000pt;}
.y8f_c00333{bottom:487.026667pt;}
.y88_c00333{bottom:501.106667pt;}
.y8c_c00333{bottom:502.066667pt;}
.y8b_c00333{bottom:502.440000pt;}
.y89_c00333{bottom:503.026667pt;}
.y8a_c00333{bottom:503.226667pt;}
.y86_c00333{bottom:518.440000pt;}
.y85_c00333{bottom:519.773333pt;}
.y84_c00333{bottom:520.360000pt;}
.y87_c00333{bottom:520.560000pt;}
.y83_c00333{bottom:521.693333pt;}
.y7f_c00333{bottom:537.106667pt;}
.y81_c00333{bottom:537.893333pt;}
.y82_c00333{bottom:538.066667pt;}
.y80_c00333{bottom:539.026667pt;}
.y7e_c00333{bottom:553.106667pt;}
.y7c_c00333{bottom:554.066667pt;}
.y7d_c00333{bottom:555.400000pt;}
.y7b_c00333{bottom:556.360000pt;}
.y75_c00333{bottom:570.826667pt;}
.y79_c00333{bottom:571.400000pt;}
.y77_c00333{bottom:571.773333pt;}
.y7a_c00333{bottom:573.306667pt;}
.y76_c00333{bottom:573.693333pt;}
.y78_c00333{bottom:573.893333pt;}
.y73_c00333{bottom:589.106667pt;}
.y74_c00333{bottom:590.066667pt;}
.y71_c00333{bottom:591.026667pt;}
.y72_c00333{bottom:591.226667pt;}
.y70_c00333{bottom:607.400000pt;}
.y6c_c00333{bottom:607.773333pt;}
.y6b_c00333{bottom:608.360000pt;}
.y6f_c00333{bottom:608.560000pt;}
.y6d_c00333{bottom:609.306667pt;}
.y6e_c00333{bottom:609.693333pt;}
.y69_c00333{bottom:623.026667pt;}
.y68_c00333{bottom:625.106667pt;}
.y66_c00333{bottom:626.066667pt;}
.y6a_c00333{bottom:626.640000pt;}
.y67_c00333{bottom:627.026667pt;}
.y61_c00333{bottom:642.440000pt;}
.y64_c00333{bottom:643.226667pt;}
.y65_c00333{bottom:643.973333pt;}
.y63_c00333{bottom:644.360000pt;}
.y62_c00333{bottom:644.373333pt;}
.y5f_c00333{bottom:659.773333pt;}
.y60_c00333{bottom:661.693333pt;}
.y5b_c00333{bottom:677.106667pt;}
.y5c_c00333{bottom:677.893333pt;}
.y5d_c00333{bottom:678.066667pt;}
.y5e_c00333{bottom:678.640000pt;}
.y5a_c00333{bottom:679.026667pt;}
.y56_c00333{bottom:700.733333pt;}
.y59_c00333{bottom:701.693333pt;}
.y57_c00333{bottom:701.893333pt;}
.y58_c00333{bottom:702.640000pt;}
.y55_c00333{bottom:703.600000pt;}
.y4e_c00333{bottom:713.306667pt;}
.y52_c00333{bottom:714.066667pt;}
.y54_c00333{bottom:714.266667pt;}
.y4f_c00333{bottom:715.026667pt;}
.y51_c00333{bottom:715.226667pt;}
.y53_c00333{bottom:715.973333pt;}
.y50_c00333{bottom:716.933333pt;}
.y4c_c00333{bottom:726.640000pt;}
.y4b_c00333{bottom:727.400000pt;}
.y4d_c00333{bottom:728.360000pt;}
.y4a_c00333{bottom:729.506667pt;}
.y48_c00333{bottom:740.360000pt;}
.y49_c00333{bottom:740.733333pt;}
.y46_c00333{bottom:742.266667pt;}
.y47_c00333{bottom:742.640000pt;}
.y44_c00333{bottom:753.306667pt;}
.y43_c00333{bottom:753.693333pt;}
.y45_c00333{bottom:755.600000pt;}
.y3d_c00333{bottom:766.640000pt;}
.y40_c00333{bottom:767.026667pt;}
.y41_c00333{bottom:767.973333pt;}
.y42_c00333{bottom:768.173333pt;}
.y3f_c00333{bottom:768.933333pt;}
.y3e_c00333{bottom:769.306667pt;}
.y3b_c00333{bottom:779.400000pt;}
.y3c_c00333{bottom:780.360000pt;}
.y38_c00333{bottom:792.733333pt;}
.y35_c00333{bottom:792.933333pt;}
.y36_c00333{bottom:793.693333pt;}
.y3a_c00333{bottom:793.893333pt;}
.y37_c00333{bottom:794.640000pt;}
.y39_c00333{bottom:795.600000pt;}
.y32_c00333{bottom:806.066667pt;}
.y33_c00333{bottom:807.026667pt;}
.y34_c00333{bottom:807.973333pt;}
.y2f_c00333{bottom:819.400000pt;}
.y2c_c00333{bottom:819.600000pt;}
.y2e_c00333{bottom:820.360000pt;}
.y30_c00333{bottom:820.933333pt;}
.y2d_c00333{bottom:821.306667pt;}
.y31_c00333{bottom:821.506667pt;}
.y2b_c00333{bottom:832.733333pt;}
.y2a_c00333{bottom:834.266667pt;}
.y28_c00333{bottom:844.933333pt;}
.y27_c00333{bottom:845.693333pt;}
.y25_c00333{bottom:846.066667pt;}
.y22_c00333{bottom:846.266667pt;}
.y29_c00333{bottom:846.640000pt;}
.y20_c00333{bottom:847.226667pt;}
.y23_c00333{bottom:847.600000pt;}
.y21_c00333{bottom:847.973333pt;}
.y26_c00333{bottom:848.173333pt;}
.y24_c00333{bottom:848.933333pt;}
.y1e_c00333{bottom:858.066667pt;}
.y1f_c00333{bottom:859.026667pt;}
.y1d_c00333{bottom:859.973333pt;}
.y1b_c00333{bottom:860.173333pt;}
.y1c_c00333{bottom:860.933333pt;}
.y19_c00333{bottom:871.400000pt;}
.y18_c00333{bottom:872.360000pt;}
.y16_c00333{bottom:872.560000pt;}
.y1a_c00333{bottom:873.306667pt;}
.y17_c00333{bottom:874.266667pt;}
.y13_c00333{bottom:891.773333pt;}
.y15_c00333{bottom:893.693333pt;}
.y14_c00333{bottom:894.640000pt;}
.ye_c00333{bottom:908.733333pt;}
.y12_c00333{bottom:909.893333pt;}
.y11_c00333{bottom:910.640000pt;}
.y10_c00333{bottom:911.026667pt;}
.yf_c00333{bottom:911.973333pt;}
.yc_c00333{bottom:926.066667pt;}
.ya_c00333{bottom:926.440000pt;}
.yd_c00333{bottom:927.026667pt;}
.yb_c00333{bottom:927.973333pt;}
.y9_c00333{bottom:928.360000pt;}
.y7_c00333{bottom:943.400000pt;}
.y3_c00333{bottom:943.773333pt;}
.y8_c00333{bottom:944.560000pt;}
.y4_c00333{bottom:945.693333pt;}
.y5_c00333{bottom:945.893333pt;}
.y6_c00333{bottom:946.640000pt;}
.y2_c00333{bottom:977.693333pt;}
.y1_c00333{bottom:979.600000pt;}
.h8_c00333{height:3.739141pt;}
.h7_c00333{height:14.890964pt;}
.h4_c00333{height:20.466875pt;}
.h1_c00333{height:22.303646pt;}
.h5_c00333{height:27.879557pt;}
.h2_c00333{height:31.618698pt;}
.h6_c00333{height:35.357839pt;}
.h3_c00333{height:39.031380pt;}
.h9_c00333{height:42.770521pt;}
.h0_c00333{height:1186.666667pt;}
.w0_c00333{width:782.666667pt;}
.x0_c00333{left:0.000000pt;}
.x104_c00333{left:133.706667pt;}
.xb4_c00333{left:134.666667pt;}
.x2_c00333{left:135.626667pt;}
.x3a_c00333{left:136.960000pt;}
.x3b_c00333{left:147.040000pt;}
.x40_c00333{left:148.000000pt;}
.x2e_c00333{left:149.333333pt;}
.x10_c00333{left:150.666667pt;}
.x9b_c00333{left:153.333333pt;}
.xbc_c00333{left:156.960000pt;}
.xf8_c00333{left:158.293333pt;}
.x4e_c00333{left:160.000000pt;}
.x56_c00333{left:161.706667pt;}
.x7a_c00333{left:163.040000pt;}
.x41_c00333{left:164.000000pt;}
.x2f_c00333{left:164.960000pt;}
.x11_c00333{left:167.040000pt;}
.xe2_c00333{left:168.373333pt;}
.xab_c00333{left:169.706667pt;}
.x105_c00333{left:173.706667pt;}
.xd9_c00333{left:176.000000pt;}
.xa1_c00333{left:176.960000pt;}
.x3c_c00333{left:180.000000pt;}
.x2c_c00333{left:181.333333pt;}
.x82_c00333{left:183.040000pt;}
.x1f_c00333{left:186.666667pt;}
.x61_c00333{left:188.960000pt;}
.xde_c00333{left:190.666667pt;}
.xc4_c00333{left:192.000000pt;}
.xe3_c00333{left:193.333333pt;}
.xac_c00333{left:194.666667pt;}
.x3_c00333{left:196.373333pt;}
.x2d_c00333{left:198.293333pt;}
.x6a_c00333{left:200.000000pt;}
.x20_c00333{left:202.293333pt;}
.xa2_c00333{left:204.000000pt;}
.xb5_c00333{left:204.960000pt;}
.x63_c00333{left:206.293333pt;}
.x3d_c00333{left:210.293333pt;}
.x106_c00333{left:212.000000pt;}
.x30_c00333{left:212.960000pt;}
.x7b_c00333{left:216.960000pt;}
.xe4_c00333{left:218.293333pt;}
.xcc_c00333{left:220.000000pt;}
.x93_c00333{left:221.706667pt;}
.x72_c00333{left:222.666667pt;}
.x57_c00333{left:224.960000pt;}
.x6b_c00333{left:227.040000pt;}
.x42_c00333{left:228.000000pt;}
.xbd_c00333{left:231.626667pt;}
.x12_c00333{left:233.333333pt;}
.x3e_c00333{left:234.293333pt;}
.x10b_c00333{left:236.000000pt;}
.x21_c00333{left:237.333333pt;}
.xad_c00333{left:239.040000pt;}
.xc5_c00333{left:240.000000pt;}
.xd3_c00333{left:241.333333pt;}
.x107_c00333{left:242.293333pt;}
.x6c_c00333{left:244.000000pt;}
.x84_c00333{left:245.333333pt;}
.x94_c00333{left:246.666667pt;}
.x58_c00333{left:249.333333pt;}
.x62_c00333{left:250.666667pt;}
.x13_c00333{left:252.373333pt;}
.xe9_c00333{left:253.333333pt;}
.x83_c00333{left:257.706667pt;}
.x4_c00333{left:258.666667pt;}
.x95_c00333{left:261.706667pt;}
.x43_c00333{left:263.626667pt;}
.xae_c00333{left:265.333333pt;}
.x71_c00333{left:267.626667pt;}
.x73_c00333{left:269.333333pt;}
.x4f_c00333{left:272.000000pt;}
.x3f_c00333{left:273.333333pt;}
.x85_c00333{left:275.040000pt;}
.xed_c00333{left:280.373333pt;}
.xb6_c00333{left:281.333333pt;}
.xcd_c00333{left:283.040000pt;}
.xf9_c00333{left:284.000000pt;}
.x59_c00333{left:287.626667pt;}
.x31_c00333{left:295.040000pt;}
.x22_c00333{left:296.000000pt;}
.xdf_c00333{left:297.333333pt;}
.xf2_c00333{left:298.666667pt;}
.x5_c00333{left:299.626667pt;}
.x74_c00333{left:301.333333pt;}
.xfb_c00333{left:303.040000pt;}
.xaf_c00333{left:304.000000pt;}
.x5a_c00333{left:305.333333pt;}
.x23_c00333{left:306.666667pt;}
.x10e_c00333{left:307.626667pt;}
.x44_c00333{left:310.293333pt;}
.xa3_c00333{left:312.373333pt;}
.x64_c00333{left:313.906667pt;}
.x8e_c00333{left:316.000000pt;}
.xff_c00333{left:318.293333pt;}
.x6_c00333{left:320.000000pt;}
.xda_c00333{left:321.706667pt;}
.x14_c00333{left:323.626667pt;}
.x50_c00333{left:324.960000pt;}
.x9c_c00333{left:326.666667pt;}
.xe5_c00333{left:328.000000pt;}
.xc6_c00333{left:329.333333pt;}
.xe8_c00333{left:330.666667pt;}
.x6d_c00333{left:332.000000pt;}
.x45_c00333{left:333.333333pt;}
.x86_c00333{left:335.040000pt;}
.xf3_c00333{left:337.333333pt;}
.x24_c00333{left:340.373333pt;}
.x75_c00333{left:342.666667pt;}
.x7_c00333{left:344.000000pt;}
.xdb_c00333{left:347.040000pt;}
.xe0_c00333{left:349.706667pt;}
.x32_c00333{left:351.040000pt;}
.x15_c00333{left:352.373333pt;}
.x108_c00333{left:353.333333pt;}
.x7c_c00333{left:354.666667pt;}
.x1_c00333{left:358.666667pt;}
.xc7_c00333{left:360.000000pt;}
.xbe_c00333{left:362.666667pt;}
.x9d_c00333{left:363.626667pt;}
.x33_c00333{left:364.960000pt;}
.x5b_c00333{left:367.040000pt;}
.x46_c00333{left:368.373333pt;}
.xa4_c00333{left:370.666667pt;}
.x51_c00333{left:374.666667pt;}
.xce_c00333{left:376.000000pt;}
.x16_c00333{left:377.333333pt;}
.xc8_c00333{left:379.040000pt;}
.x47_c00333{left:382.666667pt;}
.x8f_c00333{left:384.373333pt;}
.x25_c00333{left:385.333333pt;}
.x65_c00333{left:388.000000pt;}
.x10c_c00333{left:389.706667pt;}
.x5c_c00333{left:393.333333pt;}
.xb7_c00333{left:395.040000pt;}
.x8_c00333{left:397.333333pt;}
.x7d_c00333{left:398.293333pt;}
.x6e_c00333{left:400.000000pt;}
.xa5_c00333{left:400.960000pt;}
.xee_c00333{left:404.373333pt;}
.x87_c00333{left:405.333333pt;}
.x96_c00333{left:406.293333pt;}
.x100_c00333{left:408.000000pt;}
.xcf_c00333{left:409.906667pt;}
.x26_c00333{left:412.960000pt;}
.x9_c00333{left:415.040000pt;}
.xd4_c00333{left:416.000000pt;}
.x17_c00333{left:416.960000pt;}
.xf4_c00333{left:418.666667pt;}
.x88_c00333{left:419.626667pt;}
.x34_c00333{left:421.333333pt;}
.x52_c00333{left:424.573333pt;}
.xfc_c00333{left:425.706667pt;}
.xd5_c00333{left:426.666667pt;}
.x27_c00333{left:428.000000pt;}
.xef_c00333{left:429.333333pt;}
.x10d_c00333{left:430.666667pt;}
.xc9_c00333{left:431.626667pt;}
.xe1_c00333{left:433.333333pt;}
.x7e_c00333{left:434.666667pt;}
.xb0_c00333{left:436.000000pt;}
.x66_c00333{left:436.960000pt;}
.xa_c00333{left:440.000000pt;}
.x6f_c00333{left:441.706667pt;}
.xa6_c00333{left:443.040000pt;}
.xf5_c00333{left:444.000000pt;}
.x18_c00333{left:445.333333pt;}
.xd0_c00333{left:448.373333pt;}
.x97_c00333{left:449.333333pt;}
.xfd_c00333{left:450.666667pt;}
.x28_c00333{left:451.626667pt;}
.xbf_c00333{left:454.666667pt;}
.xea_c00333{left:456.373333pt;}
.x35_c00333{left:457.706667pt;}
.x48_c00333{left:458.666667pt;}
.x89_c00333{left:460.000000pt;}
.x76_c00333{left:460.960000pt;}
.xec_c00333{left:462.666667pt;}
.x53_c00333{left:464.373333pt;}
.xe6_c00333{left:465.333333pt;}
.x7f_c00333{left:467.040000pt;}
.x101_c00333{left:468.000000pt;}
.x49_c00333{left:469.333333pt;}
.xa7_c00333{left:470.666667pt;}
.xd1_c00333{left:472.373333pt;}
.x36_c00333{left:473.706667pt;}
.x8a_c00333{left:479.040000pt;}
.xb1_c00333{left:483.040000pt;}
.xd6_c00333{left:486.666667pt;}
.x9e_c00333{left:488.000000pt;}
.x19_c00333{left:488.960000pt;}
.x5d_c00333{left:491.040000pt;}
.xb_c00333{left:492.000000pt;}
.x70_c00333{left:494.293333pt;}
.xc0_c00333{left:497.333333pt;}
.x80_c00333{left:498.666667pt;}
.xfa_c00333{left:500.000000pt;}
.xd7_c00333{left:502.293333pt;}
.x54_c00333{left:504.000000pt;}
.xb2_c00333{left:505.706667pt;}
.x1a_c00333{left:507.040000pt;}
.x5e_c00333{left:508.373333pt;}
.x37_c00333{left:509.333333pt;}
.x109_c00333{left:512.373333pt;}
.x90_c00333{left:513.333333pt;}
.xb8_c00333{left:515.040000pt;}
.xf0_c00333{left:516.000000pt;}
.xeb_c00333{left:517.706667pt;}
.xc1_c00333{left:519.040000pt;}
.xc_c00333{left:522.293333pt;}
.x98_c00333{left:524.000000pt;}
.x77_c00333{left:524.960000pt;}
.xdc_c00333{left:526.293333pt;}
.x4a_c00333{left:530.666667pt;}
.x1b_c00333{left:531.626667pt;}
.x8b_c00333{left:533.333333pt;}
.x9f_c00333{left:534.666667pt;}
.xca_c00333{left:536.000000pt;}
.xa8_c00333{left:537.333333pt;}
.xd_c00333{left:540.000000pt;}
.xb9_c00333{left:542.293333pt;}
.x5f_c00333{left:544.960000pt;}
.x102_c00333{left:546.666667pt;}
.x91_c00333{left:548.373333pt;}
.xa9_c00333{left:551.040000pt;}
.x38_c00333{left:554.666667pt;}
.xdd_c00333{left:556.373333pt;}
.xd2_c00333{left:560.000000pt;}
.x78_c00333{left:561.333333pt;}
.x4b_c00333{left:562.666667pt;}
.x81_c00333{left:563.626667pt;}
.xcb_c00333{left:565.333333pt;}
.x29_c00333{left:566.293333pt;}
.x8c_c00333{left:569.706667pt;}
.xba_c00333{left:570.666667pt;}
.x67_c00333{left:572.000000pt;}
.xa0_c00333{left:573.333333pt;}
.x1c_c00333{left:580.000000pt;}
.x68_c00333{left:580.960000pt;}
.x2a_c00333{left:582.666667pt;}
.xe7_c00333{left:584.000000pt;}
.x10a_c00333{left:585.333333pt;}
.xf1_c00333{left:587.240000pt;}
.x4c_c00333{left:588.373333pt;}
.x55_c00333{left:590.293333pt;}
.xc2_c00333{left:593.333333pt;}
.xaa_c00333{left:594.666667pt;}
.x99_c00333{left:596.000000pt;}
.xf6_c00333{left:597.333333pt;}
.xfe_c00333{left:600.373333pt;}
.x8d_c00333{left:602.666667pt;}
.x39_c00333{left:603.626667pt;}
.x2b_c00333{left:605.333333pt;}
.xe_c00333{left:607.040000pt;}
.xbb_c00333{left:608.373333pt;}
.xd8_c00333{left:610.666667pt;}
.x1d_c00333{left:611.626667pt;}
.x69_c00333{left:614.666667pt;}
.xc3_c00333{left:619.040000pt;}
.x79_c00333{left:621.706667pt;}
.xf_c00333{left:624.373333pt;}
.x103_c00333{left:625.333333pt;}
.x4d_c00333{left:626.666667pt;}
.x1e_c00333{left:629.706667pt;}
.x9a_c00333{left:630.666667pt;}
.xf7_c00333{left:634.666667pt;}
.x92_c00333{left:637.333333pt;}
.xb3_c00333{left:640.000000pt;}
.x60_c00333{left:644.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_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_3a4127437b6de106e5c0c9e9.woff2')format("woff");}.ff1_c00334{font-family:ff1_c00334;line-height:1.688965;font-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_c00334{transform:matrix(0.236963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236963,0.000000,0.000000,0.250000,0,0);}
.ma_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);}
.md0_c00334{transform:matrix(0.305066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305066,0.000000,0.000000,0.250000,0,0);}
.m6f_c00334{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.m6c_c00334{transform:matrix(0.360813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360813,0.000000,0.000000,0.250000,0,0);}
.m13_c00334{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m58_c00334{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m71_c00334{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m78_c00334{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m65_c00334{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m17_c00334{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.m57_c00334{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m5a_c00334{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m69_c00334{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.maa_c00334{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m7d_c00334{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m75_c00334{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m64_c00334{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m6a_c00334{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mbb_c00334{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m5f_c00334{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.mad_c00334{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m99_c00334{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.mf_c00334{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m9d_c00334{transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);}
.ma5_c00334{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m16_c00334{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mc3_c00334{transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);}
.m24_c00334{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.mcc_c00334{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m5b_c00334{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m90_c00334{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mf2_c00334{transform:matrix(0.411859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411859,0.000000,0.000000,0.250000,0,0);}
.m82_c00334{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m67_c00334{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.me_c00334{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m9c_c00334{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.me1_c00334{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.m47_c00334{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m2c_c00334{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m8b_c00334{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mc7_c00334{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m7f_c00334{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m97_c00334{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m28_c00334{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mc9_c00334{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m31_c00334{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m29_c00334{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.md5_c00334{transform:matrix(0.425481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425481,0.000000,0.000000,0.250000,0,0);}
.m73_c00334{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mae_c00334{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m87_c00334{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m96_c00334{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m21_c00334{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mb3_c00334{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m49_c00334{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m48_c00334{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m3b_c00334{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mc0_c00334{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m6_c00334{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.me6_c00334{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);}
.m1e_c00334{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m41_c00334{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m2f_c00334{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m4d_c00334{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.ma7_c00334{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m77_c00334{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.mc8_c00334{transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);}
.m12_c00334{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m80_c00334{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m70_c00334{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_c00334{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.md6_c00334{transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);}
.m19_c00334{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.mcf_c00334{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m2a_c00334{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m25_c00334{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m26_c00334{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.md9_c00334{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.mdc_c00334{transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);}
.m6b_c00334{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m9f_c00334{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m5e_c00334{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m8_c00334{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m6e_c00334{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.md2_c00334{transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);}
.m2b_c00334{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m4e_c00334{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m1f_c00334{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.me2_c00334{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m7a_c00334{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.me9_c00334{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m56_c00334{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mbc_c00334{transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);}
.m76_c00334{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.md7_c00334{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m0_c00334{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m44_c00334{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m83_c00334{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m45_c00334{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m9_c00334{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_c00334{transform:matrix(0.502783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502783,0.000000,0.000000,0.250000,0,0);}
.ma2_c00334{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.mef_c00334{transform:matrix(0.505609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505609,0.000000,0.000000,0.250000,0,0);}
.m63_c00334{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.ma0_c00334{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m40_c00334{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m5c_c00334{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m95_c00334{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m1d_c00334{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m55_c00334{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m4f_c00334{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.mac_c00334{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m18_c00334{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m37_c00334{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.ma4_c00334{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m32_c00334{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mc2_c00334{transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);}
.mb4_c00334{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m9b_c00334{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m93_c00334{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m66_c00334{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m86_c00334{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m35_c00334{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m30_c00334{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m51_c00334{transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);}
.m10_c00334{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mc6_c00334{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.mc5_c00334{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.mb2_c00334{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m50_c00334{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m52_c00334{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m85_c00334{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m3a_c00334{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m42_c00334{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m79_c00334{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m34_c00334{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m61_c00334{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m3e_c00334{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m53_c00334{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m11_c00334{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m20_c00334{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m4b_c00334{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.md3_c00334{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m27_c00334{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m2_c00334{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m46_c00334{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m8a_c00334{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m36_c00334{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m33_c00334{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.ma6_c00334{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m3f_c00334{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.maf_c00334{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m4c_c00334{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m38_c00334{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m3c_c00334{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m7c_c00334{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.me8_c00334{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m43_c00334{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m68_c00334{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m3_c00334{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mdf_c00334{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.mab_c00334{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m4a_c00334{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m6d_c00334{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.mc_c00334{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m39_c00334{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m2d_c00334{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.ma3_c00334{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m1c_c00334{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.me4_c00334{transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579327,0.000000,0.000000,0.250000,0,0);}
.m54_c00334{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m88_c00334{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m7_c00334{transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);}
.m81_c00334{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m89_c00334{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m60_c00334{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.md_c00334{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m98_c00334{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m7e_c00334{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mb9_c00334{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.mb1_c00334{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m62_c00334{transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);}
.m9a_c00334{transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);}
.mba_c00334{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.mce_c00334{transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);}
.m92_c00334{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m1_c00334{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.mcd_c00334{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.mb6_c00334{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);}
.m14_c00334{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mca_c00334{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m2e_c00334{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mbe_c00334{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mb7_c00334{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_c00334{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m59_c00334{transform:matrix(0.627059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627059,0.000000,0.000000,0.250000,0,0);}
.m84_c00334{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mf4_c00334{transform:matrix(0.638767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638767,0.000000,0.000000,0.250000,0,0);}
.mc1_c00334{transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);}
.mf5_c00334{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.mbf_c00334{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);}
.me7_c00334{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.mbd_c00334{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m72_c00334{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.mcb_c00334{transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);}
.m9e_c00334{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m1a_c00334{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m1b_c00334{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mec_c00334{transform:matrix(0.667929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667929,0.000000,0.000000,0.250000,0,0);}
.mb5_c00334{transform:matrix(0.677885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677885,0.000000,0.000000,0.250000,0,0);}
.md4_c00334{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.mf1_c00334{transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);}
.mf3_c00334{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.md1_c00334{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m91_c00334{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mdb_c00334{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.m7b_c00334{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.mea_c00334{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.mc4_c00334{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m94_c00334{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m4_c00334{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m8f_c00334{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m8e_c00334{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mb8_c00334{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.m5d_c00334{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.med_c00334{transform:matrix(0.727974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727974,0.000000,0.000000,0.250000,0,0);}
.mf0_c00334{transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);}
.m8d_c00334{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.mee_c00334{transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);}
.mdd_c00334{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.meb_c00334{transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);}
.mda_c00334{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m15_c00334{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m23_c00334{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mb0_c00334{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.me5_c00334{transform:matrix(0.787445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.787445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.787445,0.000000,0.000000,0.250000,0,0);}
.md8_c00334{transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);}
.me0_c00334{transform:matrix(0.805066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805066,0.000000,0.000000,0.250000,0,0);}
.m3d_c00334{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.ma8_c00334{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m74_c00334{transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);}
.mde_c00334{transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);}
.me3_c00334{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.ma1_c00334{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m8c_c00334{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v2_c00334{vertical-align:-6.000000px;}
.v0_c00334{vertical-align:0.000000px;}
.v1_c00334{vertical-align:12.000000px;}
.ls1_c00334{letter-spacing:0.000000px;}
.ls0_c00334{letter-spacing:156.500771px;}
.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;}
}
.wsd_c00334{word-spacing:-10.932480px;}
.ws0_c00334{word-spacing:-5.939993px;}
.wsf_c00334{word-spacing:0.000000px;}
.ws1_c00334{word-spacing:2.970720px;}
.ws3_c00334{word-spacing:15.370340px;}
.wsb_c00334{word-spacing:15.614929px;}
.ws9_c00334{word-spacing:17.262919px;}
.wse_c00334{word-spacing:19.620812px;}
.ws6_c00334{word-spacing:21.623753px;}
.ws7_c00334{word-spacing:23.728109px;}
.ws5_c00334{word-spacing:24.638400px;}
.ws4_c00334{word-spacing:35.296726px;}
.wsc_c00334{word-spacing:39.933737px;}
.ws2_c00334{word-spacing:47.719225px;}
.ws8_c00334{word-spacing:49.838400px;}
.wsa_c00334{word-spacing:60.822309px;}
._2_c00334{width:1.547520px;}
._0_c00334{width:25.571951px;}
._1_c00334{width:31.682189px;}
.fc0_c00334{color:transparent;}
.fs7_c00334{font-size:3.420000px;}
.fs9_c00334{font-size:11.880000px;}
.fs8_c00334{font-size:13.620000px;}
.fs6_c00334{font-size:18.720000px;}
.fs1_c00334{font-size:20.400000px;}
.fs5_c00334{font-size:25.500000px;}
.fs0_c00334{font-size:28.920000px;}
.fs3_c00334{font-size:32.340000px;}
.fs4_c00334{font-size:35.700000px;}
.fs2_c00334{font-size:39.120000px;}
.y0_c00334{bottom:0.000000px;}
.y7d_c00334{bottom:254.550000px;}
.y80_c00334{bottom:254.745000px;}
.y81_c00334{bottom:255.405000px;}
.y7f_c00334{bottom:255.630000px;}
.y82_c00334{bottom:256.470000px;}
.y7e_c00334{bottom:256.905000px;}
.y7b_c00334{bottom:273.405000px;}
.y79_c00334{bottom:274.245000px;}
.y7c_c00334{bottom:275.130000px;}
.y7a_c00334{bottom:275.325000px;}
.y78_c00334{bottom:276.405000px;}
.y76_c00334{bottom:293.745000px;}
.y77_c00334{bottom:294.630000px;}
.y75_c00334{bottom:295.905000px;}
.y74_c00334{bottom:313.245000px;}
.y73_c00334{bottom:315.405000px;}
.y70_c00334{bottom:332.325000px;}
.y6c_c00334{bottom:332.745000px;}
.y71_c00334{bottom:333.630000px;}
.y72_c00334{bottom:333.825000px;}
.y6e_c00334{bottom:334.470000px;}
.y6d_c00334{bottom:334.905000px;}
.y6f_c00334{bottom:336.405000px;}
.y6a_c00334{bottom:351.405000px;}
.y6b_c00334{bottom:352.245000px;}
.y68_c00334{bottom:352.470000px;}
.y67_c00334{bottom:352.905000px;}
.y66_c00334{bottom:353.745000px;}
.y64_c00334{bottom:354.405000px;}
.y69_c00334{bottom:354.630000px;}
.y65_c00334{bottom:355.920000px;}
.yd3_c00334{bottom:386.130000px;}
.yd1_c00334{bottom:387.195000px;}
.yd0_c00334{bottom:387.630000px;}
.yd2_c00334{bottom:388.695000px;}
.ycf_c00334{bottom:398.130000px;}
.yce_c00334{bottom:399.195000px;}
.ycd_c00334{bottom:400.695000px;}
.ycb_c00334{bottom:401.130000px;}
.ycc_c00334{bottom:402.195000px;}
.yc9_c00334{bottom:411.630000px;}
.yca_c00334{bottom:412.695000px;}
.yc8_c00334{bottom:413.130000px;}
.yc7_c00334{bottom:414.195000px;}
.yc6_c00334{bottom:415.275000px;}
.yc5_c00334{bottom:415.695000px;}
.yc4_c00334{bottom:426.195000px;}
.yc3_c00334{bottom:426.630000px;}
.yc1_c00334{bottom:427.695000px;}
.yc2_c00334{bottom:428.130000px;}
.ybf_c00334{bottom:429.195000px;}
.yc0_c00334{bottom:429.630000px;}
.ybe_c00334{bottom:440.130000px;}
.ybd_c00334{bottom:441.195000px;}
.ybc_c00334{bottom:442.695000px;}
.ybb_c00334{bottom:443.130000px;}
.yba_c00334{bottom:454.695000px;}
.yb9_c00334{bottom:455.130000px;}
.yb7_c00334{bottom:455.775000px;}
.yb6_c00334{bottom:456.195000px;}
.yb4_c00334{bottom:456.630000px;}
.yb5_c00334{bottom:457.695000px;}
.yb8_c00334{bottom:461.775000px;}
.yb3_c00334{bottom:468.195000px;}
.yb1_c00334{bottom:468.630000px;}
.yb2_c00334{bottom:469.695000px;}
.yaf_c00334{bottom:470.130000px;}
.yb0_c00334{bottom:471.195000px;}
.yae_c00334{bottom:481.695000px;}
.yad_c00334{bottom:483.195000px;}
.yab_c00334{bottom:483.630000px;}
.yac_c00334{bottom:484.695000px;}
.ya9_c00334{bottom:495.630000px;}
.yaa_c00334{bottom:496.695000px;}
.ya8_c00334{bottom:497.130000px;}
.ya7_c00334{bottom:498.630000px;}
.ya6_c00334{bottom:499.695000px;}
.ya4_c00334{bottom:509.130000px;}
.ya5_c00334{bottom:510.195000px;}
.ya2_c00334{bottom:510.630000px;}
.ya3_c00334{bottom:511.695000px;}
.ya1_c00334{bottom:512.130000px;}
.ya0_c00334{bottom:513.195000px;}
.y9f_c00334{bottom:522.630000px;}
.y9e_c00334{bottom:525.195000px;}
.y9c_c00334{bottom:525.630000px;}
.y9d_c00334{bottom:526.695000px;}
.y9b_c00334{bottom:537.630000px;}
.y9a_c00334{bottom:538.695000px;}
.y99_c00334{bottom:539.130000px;}
.y98_c00334{bottom:540.195000px;}
.y96_c00334{bottom:551.130000px;}
.y97_c00334{bottom:552.195000px;}
.y94_c00334{bottom:552.630000px;}
.y95_c00334{bottom:553.695000px;}
.y93_c00334{bottom:570.630000px;}
.y91_c00334{bottom:571.695000px;}
.y92_c00334{bottom:572.130000px;}
.y90_c00334{bottom:583.695000px;}
.y8d_c00334{bottom:584.130000px;}
.y8f_c00334{bottom:585.195000px;}
.y8e_c00334{bottom:586.695000px;}
.y8c_c00334{bottom:597.195000px;}
.y8b_c00334{bottom:598.695000px;}
.y89_c00334{bottom:620.325000px;}
.y88_c00334{bottom:622.470000px;}
.y8a_c00334{bottom:623.550000px;}
.y86_c00334{bottom:636.405000px;}
.y87_c00334{bottom:637.470000px;}
.y85_c00334{bottom:638.550000px;}
.y84_c00334{bottom:653.970000px;}
.y83_c00334{bottom:656.970000px;}
.y63_c00334{bottom:686.745000px;}
.y61_c00334{bottom:688.905000px;}
.y62_c00334{bottom:689.970000px;}
.y5c_c00334{bottom:705.405000px;}
.y5e_c00334{bottom:706.245000px;}
.y60_c00334{bottom:707.745000px;}
.y59_c00334{bottom:708.405000px;}
.y5b_c00334{bottom:708.630000px;}
.y5d_c00334{bottom:708.825000px;}
.y5f_c00334{bottom:709.470000px;}
.y5a_c00334{bottom:709.905000px;}
.y58_c00334{bottom:725.745000px;}
.y56_c00334{bottom:727.905000px;}
.y54_c00334{bottom:728.130000px;}
.y55_c00334{bottom:728.970000px;}
.y57_c00334{bottom:729.405000px;}
.y52_c00334{bottom:745.245000px;}
.y51_c00334{bottom:745.905000px;}
.y4f_c00334{bottom:746.745000px;}
.y50_c00334{bottom:747.405000px;}
.y4d_c00334{bottom:748.470000px;}
.y4e_c00334{bottom:748.905000px;}
.y53_c00334{bottom:748.920000px;}
.y4c_c00334{bottom:764.970000px;}
.y48_c00334{bottom:766.245000px;}
.y4b_c00334{bottom:767.130000px;}
.y4a_c00334{bottom:768.405000px;}
.y49_c00334{bottom:769.470000px;}
.y44_c00334{bottom:783.405000px;}
.y45_c00334{bottom:785.745000px;}
.y47_c00334{bottom:786.630000px;}
.y46_c00334{bottom:787.905000px;}
.y43_c00334{bottom:803.130000px;}
.y3e_c00334{bottom:804.180000px;}
.y3d_c00334{bottom:804.405000px;}
.y41_c00334{bottom:805.245000px;}
.y42_c00334{bottom:805.470000px;}
.y40_c00334{bottom:806.325000px;}
.y3f_c00334{bottom:807.405000px;}
.y3a_c00334{bottom:824.745000px;}
.y3c_c00334{bottom:824.970000px;}
.y3b_c00334{bottom:825.630000px;}
.y39_c00334{bottom:826.905000px;}
.y33_c00334{bottom:844.245000px;}
.y38_c00334{bottom:845.130000px;}
.y36_c00334{bottom:845.325000px;}
.y37_c00334{bottom:845.970000px;}
.y34_c00334{bottom:846.405000px;}
.y35_c00334{bottom:847.470000px;}
.y31_c00334{bottom:863.745000px;}
.y2f_c00334{bottom:865.905000px;}
.y32_c00334{bottom:866.130000px;}
.y30_c00334{bottom:866.970000px;}
.y2e_c00334{bottom:883.245000px;}
.y2c_c00334{bottom:885.405000px;}
.y2d_c00334{bottom:886.470000px;}
.y2a_c00334{bottom:903.825000px;}
.y29_c00334{bottom:904.245000px;}
.y2b_c00334{bottom:906.405000px;}
.y27_c00334{bottom:923.745000px;}
.y28_c00334{bottom:925.470000px;}
.y26_c00334{bottom:925.905000px;}
.y24_c00334{bottom:943.245000px;}
.y25_c00334{bottom:944.970000px;}
.y23_c00334{bottom:945.405000px;}
.y22_c00334{bottom:962.325000px;}
.y1f_c00334{bottom:962.745000px;}
.y20_c00334{bottom:964.470000px;}
.y1d_c00334{bottom:964.905000px;}
.y21_c00334{bottom:965.130000px;}
.y1e_c00334{bottom:965.970000px;}
.y1c_c00334{bottom:981.405000px;}
.y1a_c00334{bottom:982.245000px;}
.y19_c00334{bottom:983.325000px;}
.y1b_c00334{bottom:984.405000px;}
.y17_c00334{bottom:1000.905000px;}
.y18_c00334{bottom:1001.745000px;}
.y15_c00334{bottom:1002.825000px;}
.y16_c00334{bottom:1003.905000px;}
.y11_c00334{bottom:1020.405000px;}
.y12_c00334{bottom:1021.245000px;}
.yf_c00334{bottom:1021.470000px;}
.y14_c00334{bottom:1022.325000px;}
.ye_c00334{bottom:1023.405000px;}
.y13_c00334{bottom:1023.630000px;}
.y10_c00334{bottom:1024.470000px;}
.ya_c00334{bottom:1040.745000px;}
.y9_c00334{bottom:1041.825000px;}
.yb_c00334{bottom:1042.905000px;}
.yd_c00334{bottom:1043.130000px;}
.yc_c00334{bottom:1043.970000px;}
.y7_c00334{bottom:1060.245000px;}
.y4_c00334{bottom:1060.680000px;}
.y5_c00334{bottom:1061.325000px;}
.y6_c00334{bottom:1061.745000px;}
.y8_c00334{bottom:1062.825000px;}
.y3_c00334{bottom:1063.905000px;}
.y1_c00334{bottom:1099.905000px;}
.y2_c00334{bottom:1102.050000px;}
.h9_c00334{height:4.206533px;}
.hb_c00334{height:14.612168px;}
.ha_c00334{height:16.752334px;}
.h7_c00334{height:23.025234px;}
.h2_c00334{height:25.091602px;}
.h6_c00334{height:31.364502px;}
.h1_c00334{height:35.571035px;}
.h4_c00334{height:39.777568px;}
.h5_c00334{height:43.910303px;}
.h8_c00334{height:47.571035px;}
.h3_c00334{height:48.116836px;}
.h0_c00334{height:1335.000000px;}
.w0_c00334{width:880.500000px;}
.x0_c00334{left:0.000000px;}
.x37_c00334{left:151.500000px;}
.x15_c00334{left:153.000000px;}
.x67_c00334{left:168.000000px;}
.x3_c00334{left:169.080000px;}
.x4e_c00334{left:172.920000px;}
.xa0_c00334{left:179.580000px;}
.xda_c00334{left:181.500000px;}
.x72_c00334{left:182.580000px;}
.x87_c00334{left:186.000000px;}
.xb2_c00334{left:187.500000px;}
.x38_c00334{left:189.000000px;}
.xab_c00334{left:193.500000px;}
.x78_c00334{left:195.000000px;}
.xcf_c00334{left:198.000000px;}
.x68_c00334{left:199.080000px;}
.x4f_c00334{left:201.000000px;}
.x42_c00334{left:202.500000px;}
.x22_c00334{left:203.580000px;}
.x8f_c00334{left:204.645000px;}
.x16_c00334{left:207.000000px;}
.xd3_c00334{left:208.920000px;}
.x23_c00334{left:214.080000px;}
.x4_c00334{left:220.920000px;}
.x2d_c00334{left:223.920000px;}
.xb3_c00334{left:225.000000px;}
.x58_c00334{left:229.500000px;}
.xcc_c00334{left:235.080000px;}
.xbf_c00334{left:237.000000px;}
.xc8_c00334{left:240.000000px;}
.x61_c00334{left:243.000000px;}
.x24_c00334{left:246.000000px;}
.xe6_c00334{left:247.500000px;}
.x79_c00334{left:250.920000px;}
.x2e_c00334{left:252.420000px;}
.x17_c00334{left:258.000000px;}
.xd0_c00334{left:259.080000px;}
.x69_c00334{left:261.000000px;}
.x88_c00334{left:265.500000px;}
.xd4_c00334{left:268.920000px;}
.x43_c00334{left:270.420000px;}
.x98_c00334{left:272.580000px;}
.x25_c00334{left:274.500000px;}
.xe0_c00334{left:277.500000px;}
.x7a_c00334{left:282.000000px;}
.x50_c00334{left:283.500000px;}
.x5_c00334{left:286.500000px;}
.x59_c00334{left:289.920000px;}
.xdb_c00334{left:291.000000px;}
.xd5_c00334{left:295.920000px;}
.xb4_c00334{left:297.000000px;}
.x6_c00334{left:298.500000px;}
.x18_c00334{left:300.000000px;}
.x89_c00334{left:303.000000px;}
.xa1_c00334{left:304.080000px;}
.x73_c00334{left:306.000000px;}
.xc0_c00334{left:307.080000px;}
.xe2_c00334{left:310.080000px;}
.x44_c00334{left:312.000000px;}
.x7_c00334{left:313.080000px;}
.xec_c00334{left:318.000000px;}
.x26_c00334{left:319.500000px;}
.x62_c00334{left:321.420000px;}
.x39_c00334{left:322.500000px;}
.xb5_c00334{left:325.500000px;}
.x8_c00334{left:327.000000px;}
.x45_c00334{left:328.500000px;}
.x19_c00334{left:330.420000px;}
.x2f_c00334{left:331.500000px;}
.xdc_c00334{left:333.000000px;}
.xba_c00334{left:334.500000px;}
.xd6_c00334{left:339.000000px;}
.xed_c00334{left:340.080000px;}
.x99_c00334{left:341.580000px;}
.x9_c00334{left:342.645000px;}
.x74_c00334{left:343.920000px;}
.xac_c00334{left:345.000000px;}
.x82_c00334{left:346.500000px;}
.xa2_c00334{left:348.000000px;}
.x7b_c00334{left:349.500000px;}
.x27_c00334{left:351.000000px;}
.xc1_c00334{left:353.580000px;}
.x46_c00334{left:358.080000px;}
.x63_c00334{left:361.080000px;}
.x6a_c00334{left:362.580000px;}
.xc9_c00334{left:364.920000px;}
.x9a_c00334{left:366.420000px;}
.x3a_c00334{left:367.920000px;}
.x51_c00334{left:370.500000px;}
.x1a_c00334{left:372.420000px;}
.xa_c00334{left:373.500000px;}
.x64_c00334{left:379.080000px;}
.x6b_c00334{left:381.420000px;}
.xeb_c00334{left:382.920000px;}
.x47_c00334{left:388.920000px;}
.xb_c00334{left:390.855000px;}
.x52_c00334{left:391.920000px;}
.xca_c00334{left:393.000000px;}
.x9b_c00334{left:394.500000px;}
.x3b_c00334{left:397.500000px;}
.x90_c00334{left:399.420000px;}
.x65_c00334{left:401.580000px;}
.x2_c00334{left:403.500000px;}
.xc_c00334{left:406.500000px;}
.x5a_c00334{left:408.000000px;}
.xad_c00334{left:411.420000px;}
.x8a_c00334{left:414.420000px;}
.xc2_c00334{left:415.500000px;}
.x28_c00334{left:418.080000px;}
.x53_c00334{left:420.000000px;}
.xe9_c00334{left:421.500000px;}
.xa3_c00334{left:423.000000px;}
.x1b_c00334{left:430.500000px;}
.x91_c00334{left:433.500000px;}
.x7c_c00334{left:435.420000px;}
.xae_c00334{left:441.000000px;}
.x66_c00334{left:442.080000px;}
.x48_c00334{left:444.000000px;}
.xb6_c00334{left:445.500000px;}
.x6c_c00334{left:448.500000px;}
.x29_c00334{left:450.420000px;}
.xa4_c00334{left:452.145000px;}
.xd_c00334{left:453.420000px;}
.x92_c00334{left:456.000000px;}
.xdd_c00334{left:457.500000px;}
.x75_c00334{left:458.580000px;}
.x83_c00334{left:460.500000px;}
.xd7_c00334{left:462.000000px;}
.x7d_c00334{left:463.500000px;}
.xb7_c00334{left:465.000000px;}
.x30_c00334{left:471.000000px;}
.xe3_c00334{left:475.500000px;}
.x1c_c00334{left:476.580000px;}
.xc3_c00334{left:478.920000px;}
.x3c_c00334{left:481.920000px;}
.xbb_c00334{left:484.920000px;}
.x6d_c00334{left:486.420000px;}
.x93_c00334{left:487.920000px;}
.xe1_c00334{left:489.420000px;}
.xe_c00334{left:492.420000px;}
.x5b_c00334{left:496.500000px;}
.x84_c00334{left:497.580000px;}
.xe4_c00334{left:499.920000px;}
.x49_c00334{left:501.420000px;}
.xea_c00334{left:502.500000px;}
.x54_c00334{left:504.420000px;}
.xd8_c00334{left:507.000000px;}
.x1d_c00334{left:510.000000px;}
.x3d_c00334{left:511.500000px;}
.x9c_c00334{left:512.580000px;}
.xc4_c00334{left:514.500000px;}
.x31_c00334{left:516.000000px;}
.xcd_c00334{left:518.580000px;}
.x8b_c00334{left:520.500000px;}
.xa5_c00334{left:521.580000px;}
.x6e_c00334{left:523.920000px;}
.x94_c00334{left:525.000000px;}
.xc5_c00334{left:526.500000px;}
.x5c_c00334{left:528.420000px;}
.xf_c00334{left:529.920000px;}
.xaf_c00334{left:531.000000px;}
.x32_c00334{left:532.920000px;}
.x4a_c00334{left:538.080000px;}
.xef_c00334{left:540.420000px;}
.xe7_c00334{left:541.500000px;}
.x55_c00334{left:543.000000px;}
.xa6_c00334{left:544.080000px;}
.x6f_c00334{left:550.080000px;}
.xde_c00334{left:553.500000px;}
.x5d_c00334{left:558.000000px;}
.xd9_c00334{left:561.000000px;}
.x56_c00334{left:563.580000px;}
.x3e_c00334{left:565.500000px;}
.x7e_c00334{left:566.580000px;}
.x2a_c00334{left:568.500000px;}
.x95_c00334{left:570.000000px;}
.xce_c00334{left:573.000000px;}
.x4b_c00334{left:574.920000px;}
.x9d_c00334{left:576.420000px;}
.x33_c00334{left:579.420000px;}
.xe5_c00334{left:580.500000px;}
.x10_c00334{left:583.500000px;}
.xe8_c00334{left:585.000000px;}
.x7f_c00334{left:586.920000px;}
.xd1_c00334{left:592.080000px;}
.xb8_c00334{left:594.420000px;}
.x2b_c00334{left:595.500000px;}
.x5e_c00334{left:596.580000px;}
.x57_c00334{left:602.580000px;}
.x1e_c00334{left:604.500000px;}
.xbc_c00334{left:606.000000px;}
.xb0_c00334{left:609.000000px;}
.x70_c00334{left:610.080000px;}
.x3f_c00334{left:612.000000px;}
.x8c_c00334{left:613.500000px;}
.x80_c00334{left:614.580000px;}
.x34_c00334{left:616.500000px;}
.x5f_c00334{left:618.420000px;}
.x11_c00334{left:619.920000px;}
.xc6_c00334{left:621.000000px;}
.xbd_c00334{left:624.000000px;}
.xa7_c00334{left:625.500000px;}
.x1f_c00334{left:627.420000px;}
.xb9_c00334{left:633.000000px;}
.xee_c00334{left:634.500000px;}
.x35_c00334{left:635.580000px;}
.x4c_c00334{left:640.080000px;}
.xdf_c00334{left:642.420000px;}
.x96_c00334{left:645.000000px;}
.x12_c00334{left:646.920000px;}
.xa8_c00334{left:648.000000px;}
.x85_c00334{left:649.080000px;}
.xbe_c00334{left:652.500000px;}
.x71_c00334{left:655.080000px;}
.x76_c00334{left:658.500000px;}
.xcb_c00334{left:661.500000px;}
.xd2_c00334{left:663.420000px;}
.x8d_c00334{left:667.080000px;}
.xa9_c00334{left:669.000000px;}
.x20_c00334{left:670.080000px;}
.x9e_c00334{left:672.000000px;}
.x36_c00334{left:679.080000px;}
.x2c_c00334{left:681.000000px;}
.x97_c00334{left:682.500000px;}
.x40_c00334{left:685.500000px;}
.x13_c00334{left:688.080000px;}
.xb1_c00334{left:690.000000px;}
.x21_c00334{left:691.080000px;}
.x60_c00334{left:692.580000px;}
.x81_c00334{left:694.500000px;}
.x8e_c00334{left:698.580000px;}
.x4d_c00334{left:700.500000px;}
.x86_c00334{left:702.420000px;}
.x41_c00334{left:703.500000px;}
.x1_c00334{left:704.580000px;}
.x14_c00334{left:706.920000px;}
.x77_c00334{left:708.000000px;}
.xc7_c00334{left:709.500000px;}
.xaa_c00334{left:714.000000px;}
.x9f_c00334{left:715.500000px;}
@media print{
.v2_c00334{vertical-align:-5.333333pt;}
.v0_c00334{vertical-align:0.000000pt;}
.v1_c00334{vertical-align:10.666667pt;}
.ls1_c00334{letter-spacing:0.000000pt;}
.ls0_c00334{letter-spacing:139.111796pt;}
.wsd_c00334{word-spacing:-9.717760pt;}
.ws0_c00334{word-spacing:-5.279994pt;}
.wsf_c00334{word-spacing:0.000000pt;}
.ws1_c00334{word-spacing:2.640640pt;}
.ws3_c00334{word-spacing:13.662524pt;}
.wsb_c00334{word-spacing:13.879937pt;}
.ws9_c00334{word-spacing:15.344817pt;}
.wse_c00334{word-spacing:17.440722pt;}
.ws6_c00334{word-spacing:19.221114pt;}
.ws7_c00334{word-spacing:21.091652pt;}
.ws5_c00334{word-spacing:21.900800pt;}
.ws4_c00334{word-spacing:31.374867pt;}
.wsc_c00334{word-spacing:35.496655pt;}
.ws2_c00334{word-spacing:42.417089pt;}
.ws8_c00334{word-spacing:44.300800pt;}
.wsa_c00334{word-spacing:54.064274pt;}
._2_c00334{width:1.375573pt;}
._0_c00334{width:22.730623pt;}
._1_c00334{width:28.161946pt;}
.fs7_c00334{font-size:3.040000pt;}
.fs9_c00334{font-size:10.560000pt;}
.fs8_c00334{font-size:12.106667pt;}
.fs6_c00334{font-size:16.640000pt;}
.fs1_c00334{font-size:18.133333pt;}
.fs5_c00334{font-size:22.666667pt;}
.fs0_c00334{font-size:25.706667pt;}
.fs3_c00334{font-size:28.746667pt;}
.fs4_c00334{font-size:31.733333pt;}
.fs2_c00334{font-size:34.773333pt;}
.y0_c00334{bottom:0.000000pt;}
.y7d_c00334{bottom:226.266667pt;}
.y80_c00334{bottom:226.440000pt;}
.y81_c00334{bottom:227.026667pt;}
.y7f_c00334{bottom:227.226667pt;}
.y82_c00334{bottom:227.973333pt;}
.y7e_c00334{bottom:228.360000pt;}
.y7b_c00334{bottom:243.026667pt;}
.y79_c00334{bottom:243.773333pt;}
.y7c_c00334{bottom:244.560000pt;}
.y7a_c00334{bottom:244.733333pt;}
.y78_c00334{bottom:245.693333pt;}
.y76_c00334{bottom:261.106667pt;}
.y77_c00334{bottom:261.893333pt;}
.y75_c00334{bottom:263.026667pt;}
.y74_c00334{bottom:278.440000pt;}
.y73_c00334{bottom:280.360000pt;}
.y70_c00334{bottom:295.400000pt;}
.y6c_c00334{bottom:295.773333pt;}
.y71_c00334{bottom:296.560000pt;}
.y72_c00334{bottom:296.733333pt;}
.y6e_c00334{bottom:297.306667pt;}
.y6d_c00334{bottom:297.693333pt;}
.y6f_c00334{bottom:299.026667pt;}
.y6a_c00334{bottom:312.360000pt;}
.y6b_c00334{bottom:313.106667pt;}
.y68_c00334{bottom:313.306667pt;}
.y67_c00334{bottom:313.693333pt;}
.y66_c00334{bottom:314.440000pt;}
.y64_c00334{bottom:315.026667pt;}
.y69_c00334{bottom:315.226667pt;}
.y65_c00334{bottom:316.373333pt;}
.yd3_c00334{bottom:343.226667pt;}
.yd1_c00334{bottom:344.173333pt;}
.yd0_c00334{bottom:344.560000pt;}
.yd2_c00334{bottom:345.506667pt;}
.ycf_c00334{bottom:353.893333pt;}
.yce_c00334{bottom:354.840000pt;}
.ycd_c00334{bottom:356.173333pt;}
.ycb_c00334{bottom:356.560000pt;}
.ycc_c00334{bottom:357.506667pt;}
.yc9_c00334{bottom:365.893333pt;}
.yca_c00334{bottom:366.840000pt;}
.yc8_c00334{bottom:367.226667pt;}
.yc7_c00334{bottom:368.173333pt;}
.yc6_c00334{bottom:369.133333pt;}
.yc5_c00334{bottom:369.506667pt;}
.yc4_c00334{bottom:378.840000pt;}
.yc3_c00334{bottom:379.226667pt;}
.yc1_c00334{bottom:380.173333pt;}
.yc2_c00334{bottom:380.560000pt;}
.ybf_c00334{bottom:381.506667pt;}
.yc0_c00334{bottom:381.893333pt;}
.ybe_c00334{bottom:391.226667pt;}
.ybd_c00334{bottom:392.173333pt;}
.ybc_c00334{bottom:393.506667pt;}
.ybb_c00334{bottom:393.893333pt;}
.yba_c00334{bottom:404.173333pt;}
.yb9_c00334{bottom:404.560000pt;}
.yb7_c00334{bottom:405.133333pt;}
.yb6_c00334{bottom:405.506667pt;}
.yb4_c00334{bottom:405.893333pt;}
.yb5_c00334{bottom:406.840000pt;}
.yb8_c00334{bottom:410.466667pt;}
.yb3_c00334{bottom:416.173333pt;}
.yb1_c00334{bottom:416.560000pt;}
.yb2_c00334{bottom:417.506667pt;}
.yaf_c00334{bottom:417.893333pt;}
.yb0_c00334{bottom:418.840000pt;}
.yae_c00334{bottom:428.173333pt;}
.yad_c00334{bottom:429.506667pt;}
.yab_c00334{bottom:429.893333pt;}
.yac_c00334{bottom:430.840000pt;}
.ya9_c00334{bottom:440.560000pt;}
.yaa_c00334{bottom:441.506667pt;}
.ya8_c00334{bottom:441.893333pt;}
.ya7_c00334{bottom:443.226667pt;}
.ya6_c00334{bottom:444.173333pt;}
.ya4_c00334{bottom:452.560000pt;}
.ya5_c00334{bottom:453.506667pt;}
.ya2_c00334{bottom:453.893333pt;}
.ya3_c00334{bottom:454.840000pt;}
.ya1_c00334{bottom:455.226667pt;}
.ya0_c00334{bottom:456.173333pt;}
.y9f_c00334{bottom:464.560000pt;}
.y9e_c00334{bottom:466.840000pt;}
.y9c_c00334{bottom:467.226667pt;}
.y9d_c00334{bottom:468.173333pt;}
.y9b_c00334{bottom:477.893333pt;}
.y9a_c00334{bottom:478.840000pt;}
.y99_c00334{bottom:479.226667pt;}
.y98_c00334{bottom:480.173333pt;}
.y96_c00334{bottom:489.893333pt;}
.y97_c00334{bottom:490.840000pt;}
.y94_c00334{bottom:491.226667pt;}
.y95_c00334{bottom:492.173333pt;}
.y93_c00334{bottom:507.226667pt;}
.y91_c00334{bottom:508.173333pt;}
.y92_c00334{bottom:508.560000pt;}
.y90_c00334{bottom:518.840000pt;}
.y8d_c00334{bottom:519.226667pt;}
.y8f_c00334{bottom:520.173333pt;}
.y8e_c00334{bottom:521.506667pt;}
.y8c_c00334{bottom:530.840000pt;}
.y8b_c00334{bottom:532.173333pt;}
.y89_c00334{bottom:551.400000pt;}
.y88_c00334{bottom:553.306667pt;}
.y8a_c00334{bottom:554.266667pt;}
.y86_c00334{bottom:565.693333pt;}
.y87_c00334{bottom:566.640000pt;}
.y85_c00334{bottom:567.600000pt;}
.y84_c00334{bottom:581.306667pt;}
.y83_c00334{bottom:583.973333pt;}
.y63_c00334{bottom:610.440000pt;}
.y61_c00334{bottom:612.360000pt;}
.y62_c00334{bottom:613.306667pt;}
.y5c_c00334{bottom:627.026667pt;}
.y5e_c00334{bottom:627.773333pt;}
.y60_c00334{bottom:629.106667pt;}
.y59_c00334{bottom:629.693333pt;}
.y5b_c00334{bottom:629.893333pt;}
.y5d_c00334{bottom:630.066667pt;}
.y5f_c00334{bottom:630.640000pt;}
.y5a_c00334{bottom:631.026667pt;}
.y58_c00334{bottom:645.106667pt;}
.y56_c00334{bottom:647.026667pt;}
.y54_c00334{bottom:647.226667pt;}
.y55_c00334{bottom:647.973333pt;}
.y57_c00334{bottom:648.360000pt;}
.y52_c00334{bottom:662.440000pt;}
.y51_c00334{bottom:663.026667pt;}
.y4f_c00334{bottom:663.773333pt;}
.y50_c00334{bottom:664.360000pt;}
.y4d_c00334{bottom:665.306667pt;}
.y4e_c00334{bottom:665.693333pt;}
.y53_c00334{bottom:665.706667pt;}
.y4c_c00334{bottom:679.973333pt;}
.y48_c00334{bottom:681.106667pt;}
.y4b_c00334{bottom:681.893333pt;}
.y4a_c00334{bottom:683.026667pt;}
.y49_c00334{bottom:683.973333pt;}
.y44_c00334{bottom:696.360000pt;}
.y45_c00334{bottom:698.440000pt;}
.y47_c00334{bottom:699.226667pt;}
.y46_c00334{bottom:700.360000pt;}
.y43_c00334{bottom:713.893333pt;}
.y3e_c00334{bottom:714.826667pt;}
.y3d_c00334{bottom:715.026667pt;}
.y41_c00334{bottom:715.773333pt;}
.y42_c00334{bottom:715.973333pt;}
.y40_c00334{bottom:716.733333pt;}
.y3f_c00334{bottom:717.693333pt;}
.y3a_c00334{bottom:733.106667pt;}
.y3c_c00334{bottom:733.306667pt;}
.y3b_c00334{bottom:733.893333pt;}
.y39_c00334{bottom:735.026667pt;}
.y33_c00334{bottom:750.440000pt;}
.y38_c00334{bottom:751.226667pt;}
.y36_c00334{bottom:751.400000pt;}
.y37_c00334{bottom:751.973333pt;}
.y34_c00334{bottom:752.360000pt;}
.y35_c00334{bottom:753.306667pt;}
.y31_c00334{bottom:767.773333pt;}
.y2f_c00334{bottom:769.693333pt;}
.y32_c00334{bottom:769.893333pt;}
.y30_c00334{bottom:770.640000pt;}
.y2e_c00334{bottom:785.106667pt;}
.y2c_c00334{bottom:787.026667pt;}
.y2d_c00334{bottom:787.973333pt;}
.y2a_c00334{bottom:803.400000pt;}
.y29_c00334{bottom:803.773333pt;}
.y2b_c00334{bottom:805.693333pt;}
.y27_c00334{bottom:821.106667pt;}
.y28_c00334{bottom:822.640000pt;}
.y26_c00334{bottom:823.026667pt;}
.y24_c00334{bottom:838.440000pt;}
.y25_c00334{bottom:839.973333pt;}
.y23_c00334{bottom:840.360000pt;}
.y22_c00334{bottom:855.400000pt;}
.y1f_c00334{bottom:855.773333pt;}
.y20_c00334{bottom:857.306667pt;}
.y1d_c00334{bottom:857.693333pt;}
.y21_c00334{bottom:857.893333pt;}
.y1e_c00334{bottom:858.640000pt;}
.y1c_c00334{bottom:872.360000pt;}
.y1a_c00334{bottom:873.106667pt;}
.y19_c00334{bottom:874.066667pt;}
.y1b_c00334{bottom:875.026667pt;}
.y17_c00334{bottom:889.693333pt;}
.y18_c00334{bottom:890.440000pt;}
.y15_c00334{bottom:891.400000pt;}
.y16_c00334{bottom:892.360000pt;}
.y11_c00334{bottom:907.026667pt;}
.y12_c00334{bottom:907.773333pt;}
.yf_c00334{bottom:907.973333pt;}
.y14_c00334{bottom:908.733333pt;}
.ye_c00334{bottom:909.693333pt;}
.y13_c00334{bottom:909.893333pt;}
.y10_c00334{bottom:910.640000pt;}
.ya_c00334{bottom:925.106667pt;}
.y9_c00334{bottom:926.066667pt;}
.yb_c00334{bottom:927.026667pt;}
.yd_c00334{bottom:927.226667pt;}
.yc_c00334{bottom:927.973333pt;}
.y7_c00334{bottom:942.440000pt;}
.y4_c00334{bottom:942.826667pt;}
.y5_c00334{bottom:943.400000pt;}
.y6_c00334{bottom:943.773333pt;}
.y8_c00334{bottom:944.733333pt;}
.y3_c00334{bottom:945.693333pt;}
.y1_c00334{bottom:977.693333pt;}
.y2_c00334{bottom:979.600000pt;}
.h9_c00334{height:3.739141pt;}
.hb_c00334{height:12.988594pt;}
.ha_c00334{height:14.890964pt;}
.h7_c00334{height:20.466875pt;}
.h2_c00334{height:22.303646pt;}
.h6_c00334{height:27.879557pt;}
.h1_c00334{height:31.618698pt;}
.h4_c00334{height:35.357839pt;}
.h5_c00334{height:39.031380pt;}
.h8_c00334{height:42.285365pt;}
.h3_c00334{height:42.770521pt;}
.h0_c00334{height:1186.666667pt;}
.w0_c00334{width:782.666667pt;}
.x0_c00334{left:0.000000pt;}
.x37_c00334{left:134.666667pt;}
.x15_c00334{left:136.000000pt;}
.x67_c00334{left:149.333333pt;}
.x3_c00334{left:150.293333pt;}
.x4e_c00334{left:153.706667pt;}
.xa0_c00334{left:159.626667pt;}
.xda_c00334{left:161.333333pt;}
.x72_c00334{left:162.293333pt;}
.x87_c00334{left:165.333333pt;}
.xb2_c00334{left:166.666667pt;}
.x38_c00334{left:168.000000pt;}
.xab_c00334{left:172.000000pt;}
.x78_c00334{left:173.333333pt;}
.xcf_c00334{left:176.000000pt;}
.x68_c00334{left:176.960000pt;}
.x4f_c00334{left:178.666667pt;}
.x42_c00334{left:180.000000pt;}
.x22_c00334{left:180.960000pt;}
.x8f_c00334{left:181.906667pt;}
.x16_c00334{left:184.000000pt;}
.xd3_c00334{left:185.706667pt;}
.x23_c00334{left:190.293333pt;}
.x4_c00334{left:196.373333pt;}
.x2d_c00334{left:199.040000pt;}
.xb3_c00334{left:200.000000pt;}
.x58_c00334{left:204.000000pt;}
.xcc_c00334{left:208.960000pt;}
.xbf_c00334{left:210.666667pt;}
.xc8_c00334{left:213.333333pt;}
.x61_c00334{left:216.000000pt;}
.x24_c00334{left:218.666667pt;}
.xe6_c00334{left:220.000000pt;}
.x79_c00334{left:223.040000pt;}
.x2e_c00334{left:224.373333pt;}
.x17_c00334{left:229.333333pt;}
.xd0_c00334{left:230.293333pt;}
.x69_c00334{left:232.000000pt;}
.x88_c00334{left:236.000000pt;}
.xd4_c00334{left:239.040000pt;}
.x43_c00334{left:240.373333pt;}
.x98_c00334{left:242.293333pt;}
.x25_c00334{left:244.000000pt;}
.xe0_c00334{left:246.666667pt;}
.x7a_c00334{left:250.666667pt;}
.x50_c00334{left:252.000000pt;}
.x5_c00334{left:254.666667pt;}
.x59_c00334{left:257.706667pt;}
.xdb_c00334{left:258.666667pt;}
.xd5_c00334{left:263.040000pt;}
.xb4_c00334{left:264.000000pt;}
.x6_c00334{left:265.333333pt;}
.x18_c00334{left:266.666667pt;}
.x89_c00334{left:269.333333pt;}
.xa1_c00334{left:270.293333pt;}
.x73_c00334{left:272.000000pt;}
.xc0_c00334{left:272.960000pt;}
.xe2_c00334{left:275.626667pt;}
.x44_c00334{left:277.333333pt;}
.x7_c00334{left:278.293333pt;}
.xec_c00334{left:282.666667pt;}
.x26_c00334{left:284.000000pt;}
.x62_c00334{left:285.706667pt;}
.x39_c00334{left:286.666667pt;}
.xb5_c00334{left:289.333333pt;}
.x8_c00334{left:290.666667pt;}
.x45_c00334{left:292.000000pt;}
.x19_c00334{left:293.706667pt;}
.x2f_c00334{left:294.666667pt;}
.xdc_c00334{left:296.000000pt;}
.xba_c00334{left:297.333333pt;}
.xd6_c00334{left:301.333333pt;}
.xed_c00334{left:302.293333pt;}
.x99_c00334{left:303.626667pt;}
.x9_c00334{left:304.573333pt;}
.x74_c00334{left:305.706667pt;}
.xac_c00334{left:306.666667pt;}
.x82_c00334{left:308.000000pt;}
.xa2_c00334{left:309.333333pt;}
.x7b_c00334{left:310.666667pt;}
.x27_c00334{left:312.000000pt;}
.xc1_c00334{left:314.293333pt;}
.x46_c00334{left:318.293333pt;}
.x63_c00334{left:320.960000pt;}
.x6a_c00334{left:322.293333pt;}
.xc9_c00334{left:324.373333pt;}
.x9a_c00334{left:325.706667pt;}
.x3a_c00334{left:327.040000pt;}
.x51_c00334{left:329.333333pt;}
.x1a_c00334{left:331.040000pt;}
.xa_c00334{left:332.000000pt;}
.x64_c00334{left:336.960000pt;}
.x6b_c00334{left:339.040000pt;}
.xeb_c00334{left:340.373333pt;}
.x47_c00334{left:345.706667pt;}
.xb_c00334{left:347.426667pt;}
.x52_c00334{left:348.373333pt;}
.xca_c00334{left:349.333333pt;}
.x9b_c00334{left:350.666667pt;}
.x3b_c00334{left:353.333333pt;}
.x90_c00334{left:355.040000pt;}
.x65_c00334{left:356.960000pt;}
.x2_c00334{left:358.666667pt;}
.xc_c00334{left:361.333333pt;}
.x5a_c00334{left:362.666667pt;}
.xad_c00334{left:365.706667pt;}
.x8a_c00334{left:368.373333pt;}
.xc2_c00334{left:369.333333pt;}
.x28_c00334{left:371.626667pt;}
.x53_c00334{left:373.333333pt;}
.xe9_c00334{left:374.666667pt;}
.xa3_c00334{left:376.000000pt;}
.x1b_c00334{left:382.666667pt;}
.x91_c00334{left:385.333333pt;}
.x7c_c00334{left:387.040000pt;}
.xae_c00334{left:392.000000pt;}
.x66_c00334{left:392.960000pt;}
.x48_c00334{left:394.666667pt;}
.xb6_c00334{left:396.000000pt;}
.x6c_c00334{left:398.666667pt;}
.x29_c00334{left:400.373333pt;}
.xa4_c00334{left:401.906667pt;}
.xd_c00334{left:403.040000pt;}
.x92_c00334{left:405.333333pt;}
.xdd_c00334{left:406.666667pt;}
.x75_c00334{left:407.626667pt;}
.x83_c00334{left:409.333333pt;}
.xd7_c00334{left:410.666667pt;}
.x7d_c00334{left:412.000000pt;}
.xb7_c00334{left:413.333333pt;}
.x30_c00334{left:418.666667pt;}
.xe3_c00334{left:422.666667pt;}
.x1c_c00334{left:423.626667pt;}
.xc3_c00334{left:425.706667pt;}
.x3c_c00334{left:428.373333pt;}
.xbb_c00334{left:431.040000pt;}
.x6d_c00334{left:432.373333pt;}
.x93_c00334{left:433.706667pt;}
.xe1_c00334{left:435.040000pt;}
.xe_c00334{left:437.706667pt;}
.x5b_c00334{left:441.333333pt;}
.x84_c00334{left:442.293333pt;}
.xe4_c00334{left:444.373333pt;}
.x49_c00334{left:445.706667pt;}
.xea_c00334{left:446.666667pt;}
.x54_c00334{left:448.373333pt;}
.xd8_c00334{left:450.666667pt;}
.x1d_c00334{left:453.333333pt;}
.x3d_c00334{left:454.666667pt;}
.x9c_c00334{left:455.626667pt;}
.xc4_c00334{left:457.333333pt;}
.x31_c00334{left:458.666667pt;}
.xcd_c00334{left:460.960000pt;}
.x8b_c00334{left:462.666667pt;}
.xa5_c00334{left:463.626667pt;}
.x6e_c00334{left:465.706667pt;}
.x94_c00334{left:466.666667pt;}
.xc5_c00334{left:468.000000pt;}
.x5c_c00334{left:469.706667pt;}
.xf_c00334{left:471.040000pt;}
.xaf_c00334{left:472.000000pt;}
.x32_c00334{left:473.706667pt;}
.x4a_c00334{left:478.293333pt;}
.xef_c00334{left:480.373333pt;}
.xe7_c00334{left:481.333333pt;}
.x55_c00334{left:482.666667pt;}
.xa6_c00334{left:483.626667pt;}
.x6f_c00334{left:488.960000pt;}
.xde_c00334{left:492.000000pt;}
.x5d_c00334{left:496.000000pt;}
.xd9_c00334{left:498.666667pt;}
.x56_c00334{left:500.960000pt;}
.x3e_c00334{left:502.666667pt;}
.x7e_c00334{left:503.626667pt;}
.x2a_c00334{left:505.333333pt;}
.x95_c00334{left:506.666667pt;}
.xce_c00334{left:509.333333pt;}
.x4b_c00334{left:511.040000pt;}
.x9d_c00334{left:512.373333pt;}
.x33_c00334{left:515.040000pt;}
.xe5_c00334{left:516.000000pt;}
.x10_c00334{left:518.666667pt;}
.xe8_c00334{left:520.000000pt;}
.x7f_c00334{left:521.706667pt;}
.xd1_c00334{left:526.293333pt;}
.xb8_c00334{left:528.373333pt;}
.x2b_c00334{left:529.333333pt;}
.x5e_c00334{left:530.293333pt;}
.x57_c00334{left:535.626667pt;}
.x1e_c00334{left:537.333333pt;}
.xbc_c00334{left:538.666667pt;}
.xb0_c00334{left:541.333333pt;}
.x70_c00334{left:542.293333pt;}
.x3f_c00334{left:544.000000pt;}
.x8c_c00334{left:545.333333pt;}
.x80_c00334{left:546.293333pt;}
.x34_c00334{left:548.000000pt;}
.x5f_c00334{left:549.706667pt;}
.x11_c00334{left:551.040000pt;}
.xc6_c00334{left:552.000000pt;}
.xbd_c00334{left:554.666667pt;}
.xa7_c00334{left:556.000000pt;}
.x1f_c00334{left:557.706667pt;}
.xb9_c00334{left:562.666667pt;}
.xee_c00334{left:564.000000pt;}
.x35_c00334{left:564.960000pt;}
.x4c_c00334{left:568.960000pt;}
.xdf_c00334{left:571.040000pt;}
.x96_c00334{left:573.333333pt;}
.x12_c00334{left:575.040000pt;}
.xa8_c00334{left:576.000000pt;}
.x85_c00334{left:576.960000pt;}
.xbe_c00334{left:580.000000pt;}
.x71_c00334{left:582.293333pt;}
.x76_c00334{left:585.333333pt;}
.xcb_c00334{left:588.000000pt;}
.xd2_c00334{left:589.706667pt;}
.x8d_c00334{left:592.960000pt;}
.xa9_c00334{left:594.666667pt;}
.x20_c00334{left:595.626667pt;}
.x9e_c00334{left:597.333333pt;}
.x36_c00334{left:603.626667pt;}
.x2c_c00334{left:605.333333pt;}
.x97_c00334{left:606.666667pt;}
.x40_c00334{left:609.333333pt;}
.x13_c00334{left:611.626667pt;}
.xb1_c00334{left:613.333333pt;}
.x21_c00334{left:614.293333pt;}
.x60_c00334{left:615.626667pt;}
.x81_c00334{left:617.333333pt;}
.x8e_c00334{left:620.960000pt;}
.x4d_c00334{left:622.666667pt;}
.x86_c00334{left:624.373333pt;}
.x41_c00334{left:625.333333pt;}
.x1_c00334{left:626.293333pt;}
.x14_c00334{left:628.373333pt;}
.x77_c00334{left:629.333333pt;}
.xc7_c00334{left:630.666667pt;}
.xaa_c00334{left:634.666667pt;}
.x9f_c00334{left:636.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_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_7a12f27292e87375b7788c88.woff2')format("woff");}.ff1_c00335{font-family:ff1_c00335;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb8_c00335{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m2f_c00335{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.md9_c00335{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m0_c00335{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m36_c00335{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m3b_c00335{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m3a_c00335{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mdd_c00335{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m9a_c00335{transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);}
.mb3_c00335{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m39_c00335{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.m84_c00335{transform:matrix(0.387653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387653,0.000000,0.000000,0.250000,0,0);}
.m75_c00335{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m2_c00335{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.maf_c00335{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m51_c00335{transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);}
.mb1_c00335{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.mdf_c00335{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mbf_c00335{transform:matrix(0.394939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394939,0.000000,0.000000,0.250000,0,0);}
.m1b_c00335{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m6b_c00335{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mbb_c00335{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);}
.mc9_c00335{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m11_c00335{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mb4_c00335{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m4c_c00335{transform:matrix(0.404453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404453,0.000000,0.000000,0.250000,0,0);}
.m8c_c00335{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m41_c00335{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.me5_c00335{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m26_c00335{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m94_c00335{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.mb7_c00335{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m2e_c00335{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m59_c00335{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m4_c00335{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m54_c00335{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.mc7_c00335{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m31_c00335{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mad_c00335{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m85_c00335{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.me0_c00335{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.md2_c00335{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.md1_c00335{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m58_c00335{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.me3_c00335{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mc0_c00335{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m95_c00335{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mac_c00335{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m1e_c00335{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m7b_c00335{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mdb_c00335{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m9c_c00335{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.ma4_c00335{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m9b_c00335{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.ma7_c00335{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m29_c00335{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m8d_c00335{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m3d_c00335{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mcf_c00335{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m2c_c00335{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mdc_c00335{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m28_c00335{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m99_c00335{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m20_c00335{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mab_c00335{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.md7_c00335{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m62_c00335{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.m55_c00335{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m71_c00335{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.md3_c00335{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m56_c00335{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.m77_c00335{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m83_c00335{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m4a_c00335{transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);}
.me2_c00335{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mce_c00335{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m96_c00335{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mcb_c00335{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m9f_c00335{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m76_c00335{transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);}
.maa_c00335{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m60_c00335{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m50_c00335{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m6a_c00335{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m34_c00335{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.m6_c00335{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m64_c00335{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m72_c00335{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.m69_c00335{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.mc4_c00335{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.ma2_c00335{transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);}
.me4_c00335{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m5f_c00335{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.mcc_c00335{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m7d_c00335{transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);}
.m30_c00335{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m68_c00335{transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);}
.m98_c00335{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m93_c00335{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m45_c00335{transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);}
.mb_c00335{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m4e_c00335{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m79_c00335{transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);}
.mb0_c00335{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m92_c00335{transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);}
.m66_c00335{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mc3_c00335{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m1c_c00335{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);}
.mda_c00335{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.me1_c00335{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.mb2_c00335{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m43_c00335{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.ma6_c00335{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.md5_c00335{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m89_c00335{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m5e_c00335{transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);}
.m2a_c00335{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m52_c00335{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m6f_c00335{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.md_c00335{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m3c_c00335{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m67_c00335{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m1d_c00335{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m18_c00335{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m9_c00335{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m5_c00335{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mc8_c00335{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m4b_c00335{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mbe_c00335{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mb5_c00335{transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);}
.m2b_c00335{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m61_c00335{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m32_c00335{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.md8_c00335{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m91_c00335{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m42_c00335{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m8a_c00335{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m4d_c00335{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m80_c00335{transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);}
.m17_c00335{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.me6_c00335{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m38_c00335{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m81_c00335{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m74_c00335{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m35_c00335{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.ma8_c00335{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mc_c00335{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m15_c00335{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.md4_c00335{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m8b_c00335{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m63_c00335{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mae_c00335{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.ma1_c00335{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mde_c00335{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.ma9_c00335{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m2d_c00335{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m33_c00335{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m78_c00335{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m14_c00335{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m16_c00335{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m7a_c00335{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m48_c00335{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m9d_c00335{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m5a_c00335{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m70_c00335{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mca_c00335{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mf_c00335{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m8f_c00335{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mc5_c00335{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.ma3_c00335{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m6c_c00335{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.me_c00335{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m7e_c00335{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m10_c00335{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.mc1_c00335{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);}
.m44_c00335{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m5b_c00335{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m24_c00335{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m21_c00335{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m73_c00335{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mb6_c00335{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m4f_c00335{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m88_c00335{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m9e_c00335{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.m1a_c00335{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m22_c00335{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m5d_c00335{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mbc_c00335{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.ma5_c00335{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m97_c00335{transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);}
.m6d_c00335{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m37_c00335{transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);}
.m86_c00335{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m46_c00335{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m1_c00335{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m6e_c00335{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m8_c00335{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m1f_c00335{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m3e_c00335{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.m25_c00335{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m49_c00335{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m87_c00335{transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);}
.mcd_c00335{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m8e_c00335{transform:matrix(0.644710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644710,0.000000,0.000000,0.250000,0,0);}
.m47_c00335{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m53_c00335{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m3_c00335{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m12_c00335{transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);}
.m3f_c00335{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.md6_c00335{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m7f_c00335{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.mc6_c00335{transform:matrix(0.714744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.714744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.714744,0.000000,0.000000,0.250000,0,0);}
.m57_c00335{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.ma_c00335{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m82_c00335{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.md0_c00335{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m65_c00335{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m27_c00335{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m5c_c00335{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m13_c00335{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m40_c00335{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m19_c00335{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mbd_c00335{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.mb9_c00335{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m7_c00335{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.mc2_c00335{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m23_c00335{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mba_c00335{transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);}
.m7c_c00335{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.m90_c00335{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.ma0_c00335{transform:matrix(3.728070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.728070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.728070,0.000000,0.000000,0.250000,0,0);}
.v0_c00335{vertical-align:0.000000px;}
.ls0_c00335{letter-spacing:0.000000px;}
.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:-6.570543px;}
.ws1_c00335{word-spacing:-4.299067px;}
.ws2_c00335{word-spacing:0.000000px;}
.fc0_c00335{color:transparent;}
.fs7_c00335{font-size:3.420000px;}
.fs4_c00335{font-size:18.720000px;}
.fs1_c00335{font-size:20.400000px;}
.fs2_c00335{font-size:25.500000px;}
.fs3_c00335{font-size:28.920000px;}
.fs5_c00335{font-size:32.340000px;}
.fs0_c00335{font-size:35.700000px;}
.fs6_c00335{font-size:39.120000px;}
.y0_c00335{bottom:0.000000px;}
.yd2_c00335{bottom:247.905000px;}
.yd4_c00335{bottom:248.745000px;}
.yd6_c00335{bottom:250.245000px;}
.yd1_c00335{bottom:250.905000px;}
.yd7_c00335{bottom:251.130000px;}
.yd3_c00335{bottom:251.970000px;}
.yd5_c00335{bottom:252.405000px;}
.yce_c00335{bottom:269.745000px;}
.ycc_c00335{bottom:270.405000px;}
.ycd_c00335{bottom:270.630000px;}
.yd0_c00335{bottom:270.825000px;}
.ycf_c00335{bottom:271.905000px;}
.yc7_c00335{bottom:286.905000px;}
.yc6_c00335{bottom:287.745000px;}
.yc9_c00335{bottom:289.245000px;}
.yc5_c00335{bottom:289.905000px;}
.yca_c00335{bottom:290.130000px;}
.ycb_c00335{bottom:290.970000px;}
.yc8_c00335{bottom:291.405000px;}
.yc0_c00335{bottom:308.745000px;}
.yc2_c00335{bottom:309.630000px;}
.yc4_c00335{bottom:310.470000px;}
.yc1_c00335{bottom:310.905000px;}
.yc3_c00335{bottom:311.130000px;}
.ybc_c00335{bottom:325.905000px;}
.ybe_c00335{bottom:328.245000px;}
.ybd_c00335{bottom:330.405000px;}
.ybf_c00335{bottom:330.630000px;}
.ybb_c00335{bottom:347.745000px;}
.yb8_c00335{bottom:349.905000px;}
.yba_c00335{bottom:350.130000px;}
.yb9_c00335{bottom:351.405000px;}
.yb5_c00335{bottom:367.245000px;}
.yb7_c00335{bottom:368.745000px;}
.yb2_c00335{bottom:369.405000px;}
.yb4_c00335{bottom:369.630000px;}
.yb3_c00335{bottom:370.470000px;}
.yb6_c00335{bottom:370.905000px;}
.yb1_c00335{bottom:387.825000px;}
.yac_c00335{bottom:388.245000px;}
.yad_c00335{bottom:389.325000px;}
.yb0_c00335{bottom:389.970000px;}
.yae_c00335{bottom:390.405000px;}
.yaf_c00335{bottom:391.470000px;}
.yaa_c00335{bottom:407.745000px;}
.ya8_c00335{bottom:408.630000px;}
.yab_c00335{bottom:409.470000px;}
.ya9_c00335{bottom:409.905000px;}
.ya7_c00335{bottom:426.825000px;}
.ya5_c00335{bottom:428.325000px;}
.ya4_c00335{bottom:429.405000px;}
.ya6_c00335{bottom:429.630000px;}
.ya3_c00335{bottom:430.470000px;}
.ya0_c00335{bottom:446.745000px;}
.y9f_c00335{bottom:446.970000px;}
.ya2_c00335{bottom:447.825000px;}
.ya1_c00335{bottom:448.470000px;}
.y9c_c00335{bottom:448.905000px;}
.y9e_c00335{bottom:449.130000px;}
.y9d_c00335{bottom:449.970000px;}
.y9b_c00335{bottom:466.245000px;}
.y98_c00335{bottom:467.745000px;}
.y9a_c00335{bottom:468.405000px;}
.y97_c00335{bottom:468.630000px;}
.y99_c00335{bottom:469.905000px;}
.y96_c00335{bottom:486.180000px;}
.y93_c00335{bottom:487.245000px;}
.y95_c00335{bottom:487.905000px;}
.y91_c00335{bottom:488.130000px;}
.y94_c00335{bottom:488.970000px;}
.y92_c00335{bottom:489.405000px;}
.y8d_c00335{bottom:506.745000px;}
.y8e_c00335{bottom:507.630000px;}
.y8f_c00335{bottom:508.470000px;}
.y8c_c00335{bottom:508.905000px;}
.y90_c00335{bottom:509.970000px;}
.y89_c00335{bottom:526.245000px;}
.y88_c00335{bottom:527.130000px;}
.y8a_c00335{bottom:528.405000px;}
.y8b_c00335{bottom:529.470000px;}
.y85_c00335{bottom:544.245000px;}
.y86_c00335{bottom:545.745000px;}
.y87_c00335{bottom:546.630000px;}
.y84_c00335{bottom:547.905000px;}
.y80_c00335{bottom:565.245000px;}
.y81_c00335{bottom:567.405000px;}
.y83_c00335{bottom:568.470000px;}
.y82_c00335{bottom:568.905000px;}
.y7f_c00335{bottom:583.905000px;}
.y78_c00335{bottom:584.745000px;}
.y7c_c00335{bottom:586.245000px;}
.y7a_c00335{bottom:586.470000px;}
.y79_c00335{bottom:586.905000px;}
.y7b_c00335{bottom:587.130000px;}
.y7e_c00335{bottom:587.970000px;}
.y7d_c00335{bottom:588.405000px;}
.y74_c00335{bottom:604.245000px;}
.y76_c00335{bottom:604.470000px;}
.y75_c00335{bottom:605.745000px;}
.y73_c00335{bottom:606.405000px;}
.y77_c00335{bottom:606.630000px;}
.y71_c00335{bottom:625.245000px;}
.y72_c00335{bottom:626.130000px;}
.y70_c00335{bottom:627.405000px;}
.y6c_c00335{bottom:644.745000px;}
.y6e_c00335{bottom:645.420000px;}
.y6f_c00335{bottom:645.825000px;}
.y6d_c00335{bottom:646.905000px;}
.y69_c00335{bottom:664.245000px;}
.y6b_c00335{bottom:665.325000px;}
.y6a_c00335{bottom:666.405000px;}
.y68_c00335{bottom:683.325000px;}
.y67_c00335{bottom:683.745000px;}
.y64_c00335{bottom:684.630000px;}
.y66_c00335{bottom:684.825000px;}
.y65_c00335{bottom:685.905000px;}
.y61_c00335{bottom:703.245000px;}
.y60_c00335{bottom:704.325000px;}
.y5f_c00335{bottom:705.405000px;}
.y63_c00335{bottom:705.630000px;}
.y62_c00335{bottom:706.470000px;}
.y59_c00335{bottom:722.745000px;}
.y5a_c00335{bottom:723.180000px;}
.y5b_c00335{bottom:724.245000px;}
.y5d_c00335{bottom:724.905000px;}
.y5c_c00335{bottom:725.970000px;}
.y5e_c00335{bottom:726.405000px;}
.y58_c00335{bottom:743.745000px;}
.y57_c00335{bottom:744.630000px;}
.y56_c00335{bottom:745.470000px;}
.y55_c00335{bottom:745.905000px;}
.y50_c00335{bottom:763.245000px;}
.y53_c00335{bottom:763.905000px;}
.y52_c00335{bottom:764.130000px;}
.y51_c00335{bottom:765.405000px;}
.y54_c00335{bottom:766.470000px;}
.y4c_c00335{bottom:782.745000px;}
.y4e_c00335{bottom:783.630000px;}
.y4f_c00335{bottom:783.825000px;}
.y4d_c00335{bottom:784.905000px;}
.y49_c00335{bottom:801.405000px;}
.y4b_c00335{bottom:801.825000px;}
.y48_c00335{bottom:802.245000px;}
.y4a_c00335{bottom:803.325000px;}
.y46_c00335{bottom:804.405000px;}
.y47_c00335{bottom:804.630000px;}
.y45_c00335{bottom:820.470000px;}
.y3f_c00335{bottom:820.905000px;}
.y3e_c00335{bottom:821.325000px;}
.y44_c00335{bottom:821.970000px;}
.y3d_c00335{bottom:822.630000px;}
.y42_c00335{bottom:823.245000px;}
.y3c_c00335{bottom:823.905000px;}
.y40_c00335{bottom:824.130000px;}
.y41_c00335{bottom:824.325000px;}
.y43_c00335{bottom:825.405000px;}
.y38_c00335{bottom:842.325000px;}
.y39_c00335{bottom:843.405000px;}
.y3a_c00335{bottom:843.630000px;}
.y3b_c00335{bottom:844.905000px;}
.y31_c00335{bottom:860.745000px;}
.y37_c00335{bottom:861.825000px;}
.y32_c00335{bottom:862.245000px;}
.y33_c00335{bottom:862.905000px;}
.y35_c00335{bottom:863.130000px;}
.y36_c00335{bottom:863.325000px;}
.y34_c00335{bottom:864.405000px;}
.y2e_c00335{bottom:881.745000px;}
.y2d_c00335{bottom:882.630000px;}
.y30_c00335{bottom:882.825000px;}
.y2f_c00335{bottom:883.905000px;}
.y2b_c00335{bottom:901.245000px;}
.y2c_c00335{bottom:902.130000px;}
.y2a_c00335{bottom:903.405000px;}
.y25_c00335{bottom:920.325000px;}
.y29_c00335{bottom:921.825000px;}
.y28_c00335{bottom:922.470000px;}
.y26_c00335{bottom:922.905000px;}
.y27_c00335{bottom:923.970000px;}
.y20_c00335{bottom:937.905000px;}
.y1f_c00335{bottom:940.245000px;}
.y22_c00335{bottom:941.970000px;}
.y21_c00335{bottom:942.405000px;}
.y24_c00335{bottom:942.630000px;}
.y23_c00335{bottom:943.470000px;}
.y1c_c00335{bottom:959.745000px;}
.y1b_c00335{bottom:961.905000px;}
.y1d_c00335{bottom:962.970000px;}
.y1e_c00335{bottom:963.405000px;}
.y18_c00335{bottom:979.245000px;}
.y17_c00335{bottom:981.405000px;}
.y1a_c00335{bottom:981.630000px;}
.y19_c00335{bottom:982.470000px;}
.y14_c00335{bottom:998.745000px;}
.y16_c00335{bottom:1000.905000px;}
.y15_c00335{bottom:1001.970000px;}
.ye_c00335{bottom:1018.245000px;}
.y10_c00335{bottom:1019.745000px;}
.yf_c00335{bottom:1020.405000px;}
.y13_c00335{bottom:1020.630000px;}
.y12_c00335{bottom:1021.470000px;}
.y11_c00335{bottom:1021.905000px;}
.yb_c00335{bottom:1037.970000px;}
.ya_c00335{bottom:1039.245000px;}
.yc_c00335{bottom:1040.130000px;}
.y9_c00335{bottom:1040.970000px;}
.yd_c00335{bottom:1041.405000px;}
.y8_c00335{bottom:1056.405000px;}
.y3_c00335{bottom:1058.745000px;}
.y6_c00335{bottom:1059.630000px;}
.y4_c00335{bottom:1060.470000px;}
.y5_c00335{bottom:1060.905000px;}
.y7_c00335{bottom:1061.970000px;}
.y1_c00335{bottom:1097.745000px;}
.y2_c00335{bottom:1099.050000px;}
.h8_c00335{height:4.206533px;}
.h5_c00335{height:23.025234px;}
.h2_c00335{height:25.091602px;}
.h3_c00335{height:31.364502px;}
.h4_c00335{height:35.571035px;}
.h6_c00335{height:39.777568px;}
.h1_c00335{height:43.910303px;}
.h7_c00335{height:48.116836px;}
.h0_c00335{height:1335.000000px;}
.w0_c00335{width:880.500000px;}
.x0_c00335{left:0.000000px;}
.x12_c00335{left:151.500000px;}
.x1_c00335{left:153.000000px;}
.x4b_c00335{left:154.275000px;}
.x13_c00335{left:168.420000px;}
.xb3_c00335{left:172.080000px;}
.x68_c00335{left:174.420000px;}
.xe6_c00335{left:180.000000px;}
.x3_c00335{left:181.080000px;}
.xd1_c00335{left:183.000000px;}
.xd9_c00335{left:184.920000px;}
.x4c_c00335{left:189.420000px;}
.x109_c00335{left:190.500000px;}
.x23_c00335{left:192.420000px;}
.xdf_c00335{left:194.580000px;}
.x8f_c00335{left:196.500000px;}
.xe7_c00335{left:197.580000px;}
.xc5_c00335{left:199.080000px;}
.x4_c00335{left:201.000000px;}
.xc9_c00335{left:203.580000px;}
.x70_c00335{left:205.920000px;}
.x58_c00335{left:208.500000px;}
.x14_c00335{left:209.580000px;}
.x3f_c00335{left:211.080000px;}
.x34_c00335{left:214.500000px;}
.xc1_c00335{left:216.000000px;}
.x83_c00335{left:217.500000px;}
.xda_c00335{left:219.000000px;}
.x24_c00335{left:220.500000px;}
.x10d_c00335{left:222.000000px;}
.xac_c00335{left:224.580000px;}
.x5_c00335{left:226.080000px;}
.x96_c00335{left:228.000000px;}
.x90_c00335{left:230.580000px;}
.xbb_c00335{left:232.080000px;}
.x35_c00335{left:234.420000px;}
.x15_c00335{left:237.420000px;}
.x25_c00335{left:238.920000px;}
.x69_c00335{left:240.000000px;}
.xdb_c00335{left:241.080000px;}
.x40_c00335{left:243.420000px;}
.xa5_c00335{left:244.500000px;}
.xcc_c00335{left:247.920000px;}
.x84_c00335{left:249.000000px;}
.x37_c00335{left:250.080000px;}
.xf8_c00335{left:253.920000px;}
.x4d_c00335{left:255.420000px;}
.x9f_c00335{left:256.500000px;}
.xe3_c00335{left:258.000000px;}
.xf4_c00335{left:259.500000px;}
.xbc_c00335{left:261.000000px;}
.x85_c00335{left:262.500000px;}
.x26_c00335{left:265.920000px;}
.x97_c00335{left:267.420000px;}
.xb7_c00335{left:269.145000px;}
.x41_c00335{left:270.420000px;}
.x7c_c00335{left:274.080000px;}
.x16_c00335{left:276.000000px;}
.xe4_c00335{left:277.080000px;}
.x38_c00335{left:280.500000px;}
.xa0_c00335{left:283.920000px;}
.x63_c00335{left:285.420000px;}
.x6_c00335{left:288.000000px;}
.xe0_c00335{left:289.500000px;}
.x36_c00335{left:294.000000px;}
.x86_c00335{left:295.920000px;}
.xd2_c00335{left:297.420000px;}
.xa6_c00335{left:298.500000px;}
.x17_c00335{left:301.080000px;}
.x59_c00335{left:303.000000px;}
.xe2_c00335{left:304.500000px;}
.x7_c00335{left:306.000000px;}
.x71_c00335{left:307.080000px;}
.xa1_c00335{left:310.500000px;}
.xf9_c00335{left:312.420000px;}
.xef_c00335{left:313.920000px;}
.x5a_c00335{left:316.500000px;}
.x10f_c00335{left:318.420000px;}
.xa7_c00335{left:319.500000px;}
.xdc_c00335{left:321.000000px;}
.x87_c00335{left:322.080000px;}
.x4e_c00335{left:323.580000px;}
.x27_c00335{left:325.080000px;}
.x10a_c00335{left:327.000000px;}
.x91_c00335{left:328.500000px;}
.xcd_c00335{left:329.580000px;}
.x42_c00335{left:331.080000px;}
.xd5_c00335{left:335.580000px;}
.x72_c00335{left:337.080000px;}
.xad_c00335{left:340.920000px;}
.xf0_c00335{left:342.000000px;}
.x8_c00335{left:343.500000px;}
.xbd_c00335{left:344.580000px;}
.x110_c00335{left:346.500000px;}
.x10e_c00335{left:348.420000px;}
.x43_c00335{left:349.920000px;}
.x98_c00335{left:351.000000px;}
.x18_c00335{left:352.500000px;}
.x39_c00335{left:354.000000px;}
.x28_c00335{left:355.080000px;}
.x5b_c00335{left:357.000000px;}
.x88_c00335{left:358.500000px;}
.x73_c00335{left:360.000000px;}
.x64_c00335{left:362.580000px;}
.xb4_c00335{left:364.500000px;}
.xfa_c00335{left:366.420000px;}
.x6a_c00335{left:367.500000px;}
.x19_c00335{left:370.500000px;}
.xfc_c00335{left:373.080000px;}
.x104_c00335{left:376.920000px;}
.x9_c00335{left:378.000000px;}
.x29_c00335{left:379.920000px;}
.xf1_c00335{left:382.500000px;}
.x89_c00335{left:385.500000px;}
.x5c_c00335{left:388.080000px;}
.x4f_c00335{left:390.000000px;}
.xae_c00335{left:391.920000px;}
.x74_c00335{left:394.500000px;}
.x7d_c00335{left:396.000000px;}
.x99_c00335{left:398.580000px;}
.x6b_c00335{left:400.500000px;}
.xfb_c00335{left:402.000000px;}
.x2_c00335{left:403.500000px;}
.xa_c00335{left:404.580000px;}
.x92_c00335{left:408.000000px;}
.xa8_c00335{left:409.500000px;}
.xce_c00335{left:410.580000px;}
.xb8_c00335{left:412.080000px;}
.xea_c00335{left:414.000000px;}
.x1a_c00335{left:415.920000px;}
.x2a_c00335{left:417.420000px;}
.x3a_c00335{left:418.500000px;}
.xfd_c00335{left:421.500000px;}
.x50_c00335{left:423.000000px;}
.x5d_c00335{left:426.420000px;}
.xa2_c00335{left:430.500000px;}
.x8a_c00335{left:431.580000px;}
.x65_c00335{left:433.500000px;}
.x51_c00335{left:436.500000px;}
.xaf_c00335{left:441.000000px;}
.x1b_c00335{left:442.080000px;}
.x105_c00335{left:444.000000px;}
.x2b_c00335{left:445.500000px;}
.x7e_c00335{left:447.420000px;}
.x44_c00335{left:448.500000px;}
.x75_c00335{left:450.000000px;}
.xd6_c00335{left:453.000000px;}
.x5e_c00335{left:454.080000px;}
.x10b_c00335{left:459.000000px;}
.xfe_c00335{left:460.080000px;}
.x8b_c00335{left:462.000000px;}
.x52_c00335{left:463.500000px;}
.xd3_c00335{left:464.580000px;}
.x2c_c00335{left:466.080000px;}
.xbe_c00335{left:468.000000px;}
.x9a_c00335{left:469.500000px;}
.xf2_c00335{left:474.420000px;}
.x3b_c00335{left:475.920000px;}
.x7f_c00335{left:477.000000px;}
.x6c_c00335{left:478.500000px;}
.xb_c00335{left:480.420000px;}
.xc2_c00335{left:481.500000px;}
.x76_c00335{left:484.920000px;}
.xc6_c00335{left:486.420000px;}
.x111_c00335{left:487.920000px;}
.xb9_c00335{left:492.000000px;}
.x9b_c00335{left:493.920000px;}
.xeb_c00335{left:496.500000px;}
.xa9_c00335{left:497.580000px;}
.x1c_c00335{left:499.500000px;}
.x45_c00335{left:500.580000px;}
.xa3_c00335{left:502.920000px;}
.xc7_c00335{left:504.000000px;}
.xd7_c00335{left:505.500000px;}
.x2d_c00335{left:506.580000px;}
.x93_c00335{left:511.500000px;}
.x8c_c00335{left:512.580000px;}
.xcf_c00335{left:514.500000px;}
.xc3_c00335{left:516.000000px;}
.x3c_c00335{left:517.500000px;}
.x46_c00335{left:518.580000px;}
.xc_c00335{left:522.000000px;}
.x9c_c00335{left:525.000000px;}
.xff_c00335{left:528.000000px;}
.x53_c00335{left:529.080000px;}
.xb0_c00335{left:531.645000px;}
.x2e_c00335{left:533.580000px;}
.x1d_c00335{left:535.080000px;}
.xd_c00335{left:539.580000px;}
.x5f_c00335{left:541.500000px;}
.xba_c00335{left:546.420000px;}
.xdd_c00335{left:547.500000px;}
.x100_c00335{left:549.420000px;}
.x2f_c00335{left:550.920000px;}
.xec_c00335{left:552.000000px;}
.x94_c00335{left:555.000000px;}
.xe1_c00335{left:558.420000px;}
.x1e_c00335{left:559.920000px;}
.xe_c00335{left:561.420000px;}
.xf5_c00335{left:565.500000px;}
.x6d_c00335{left:567.000000px;}
.x47_c00335{left:569.580000px;}
.x77_c00335{left:571.920000px;}
.xed_c00335{left:573.000000px;}
.x30_c00335{left:576.000000px;}
.xbf_c00335{left:577.500000px;}
.x54_c00335{left:578.580000px;}
.x101_c00335{left:580.500000px;}
.xa4_c00335{left:582.420000px;}
.x112_c00335{left:585.000000px;}
.x1f_c00335{left:586.500000px;}
.x60_c00335{left:588.000000px;}
.x3d_c00335{left:589.500000px;}
.xd0_c00335{left:591.000000px;}
.xe8_c00335{left:593.580000px;}
.x6e_c00335{left:595.080000px;}
.xf_c00335{left:597.000000px;}
.x66_c00335{left:598.920000px;}
.xc8_c00335{left:600.420000px;}
.x78_c00335{left:603.000000px;}
.xf6_c00335{left:604.500000px;}
.xf3_c00335{left:607.500000px;}
.xd4_c00335{left:609.420000px;}
.xc0_c00335{left:610.500000px;}
.x106_c00335{left:615.000000px;}
.xee_c00335{left:616.920000px;}
.x80_c00335{left:618.000000px;}
.x9d_c00335{left:619.080000px;}
.xaa_c00335{left:620.580000px;}
.x31_c00335{left:624.420000px;}
.x8d_c00335{left:627.420000px;}
.x79_c00335{left:628.500000px;}
.xca_c00335{left:631.080000px;}
.x48_c00335{left:635.580000px;}
.x55_c00335{left:637.920000px;}
.xb5_c00335{left:639.000000px;}
.x61_c00335{left:640.500000px;}
.x102_c00335{left:642.000000px;}
.x20_c00335{left:643.080000px;}
.xc4_c00335{left:645.000000px;}
.x10_c00335{left:650.580000px;}
.x9e_c00335{left:652.500000px;}
.x81_c00335{left:655.080000px;}
.xe9_c00335{left:658.920000px;}
.x95_c00335{left:660.000000px;}
.x21_c00335{left:661.920000px;}
.x32_c00335{left:663.000000px;}
.x107_c00335{left:664.080000px;}
.xe5_c00335{left:669.420000px;}
.xde_c00335{left:670.500000px;}
.xd8_c00335{left:672.000000px;}
.x7a_c00335{left:673.920000px;}
.x49_c00335{left:676.080000px;}
.xb1_c00335{left:679.920000px;}
.xb6_c00335{left:681.000000px;}
.x8e_c00335{left:682.500000px;}
.x56_c00335{left:684.000000px;}
.xcb_c00335{left:685.080000px;}
.x62_c00335{left:687.000000px;}
.x22_c00335{left:688.080000px;}
.x67_c00335{left:690.000000px;}
.x11_c00335{left:694.500000px;}
.x4a_c00335{left:697.080000px;}
.x82_c00335{left:699.000000px;}
.x103_c00335{left:700.500000px;}
.xab_c00335{left:703.080000px;}
.x57_c00335{left:705.420000px;}
.x3e_c00335{left:708.000000px;}
.x7b_c00335{left:709.500000px;}
.xb2_c00335{left:710.580000px;}
.x10c_c00335{left:714.000000px;}
.xf7_c00335{left:715.920000px;}
.x6f_c00335{left:717.000000px;}
.x108_c00335{left:720.000000px;}
.x33_c00335{left:721.500000px;}
@media print{
.v0_c00335{vertical-align:0.000000pt;}
.ls0_c00335{letter-spacing:0.000000pt;}
.ws0_c00335{word-spacing:-5.840483pt;}
.ws1_c00335{word-spacing:-3.821393pt;}
.ws2_c00335{word-spacing:0.000000pt;}
.fs7_c00335{font-size:3.040000pt;}
.fs4_c00335{font-size:16.640000pt;}
.fs1_c00335{font-size:18.133333pt;}
.fs2_c00335{font-size:22.666667pt;}
.fs3_c00335{font-size:25.706667pt;}
.fs5_c00335{font-size:28.746667pt;}
.fs0_c00335{font-size:31.733333pt;}
.fs6_c00335{font-size:34.773333pt;}
.y0_c00335{bottom:0.000000pt;}
.yd2_c00335{bottom:220.360000pt;}
.yd4_c00335{bottom:221.106667pt;}
.yd6_c00335{bottom:222.440000pt;}
.yd1_c00335{bottom:223.026667pt;}
.yd7_c00335{bottom:223.226667pt;}
.yd3_c00335{bottom:223.973333pt;}
.yd5_c00335{bottom:224.360000pt;}
.yce_c00335{bottom:239.773333pt;}
.ycc_c00335{bottom:240.360000pt;}
.ycd_c00335{bottom:240.560000pt;}
.yd0_c00335{bottom:240.733333pt;}
.ycf_c00335{bottom:241.693333pt;}
.yc7_c00335{bottom:255.026667pt;}
.yc6_c00335{bottom:255.773333pt;}
.yc9_c00335{bottom:257.106667pt;}
.yc5_c00335{bottom:257.693333pt;}
.yca_c00335{bottom:257.893333pt;}
.ycb_c00335{bottom:258.640000pt;}
.yc8_c00335{bottom:259.026667pt;}
.yc0_c00335{bottom:274.440000pt;}
.yc2_c00335{bottom:275.226667pt;}
.yc4_c00335{bottom:275.973333pt;}
.yc1_c00335{bottom:276.360000pt;}
.yc3_c00335{bottom:276.560000pt;}
.ybc_c00335{bottom:289.693333pt;}
.ybe_c00335{bottom:291.773333pt;}
.ybd_c00335{bottom:293.693333pt;}
.ybf_c00335{bottom:293.893333pt;}
.ybb_c00335{bottom:309.106667pt;}
.yb8_c00335{bottom:311.026667pt;}
.yba_c00335{bottom:311.226667pt;}
.yb9_c00335{bottom:312.360000pt;}
.yb5_c00335{bottom:326.440000pt;}
.yb7_c00335{bottom:327.773333pt;}
.yb2_c00335{bottom:328.360000pt;}
.yb4_c00335{bottom:328.560000pt;}
.yb3_c00335{bottom:329.306667pt;}
.yb6_c00335{bottom:329.693333pt;}
.yb1_c00335{bottom:344.733333pt;}
.yac_c00335{bottom:345.106667pt;}
.yad_c00335{bottom:346.066667pt;}
.yb0_c00335{bottom:346.640000pt;}
.yae_c00335{bottom:347.026667pt;}
.yaf_c00335{bottom:347.973333pt;}
.yaa_c00335{bottom:362.440000pt;}
.ya8_c00335{bottom:363.226667pt;}
.yab_c00335{bottom:363.973333pt;}
.ya9_c00335{bottom:364.360000pt;}
.ya7_c00335{bottom:379.400000pt;}
.ya5_c00335{bottom:380.733333pt;}
.ya4_c00335{bottom:381.693333pt;}
.ya6_c00335{bottom:381.893333pt;}
.ya3_c00335{bottom:382.640000pt;}
.ya0_c00335{bottom:397.106667pt;}
.y9f_c00335{bottom:397.306667pt;}
.ya2_c00335{bottom:398.066667pt;}
.ya1_c00335{bottom:398.640000pt;}
.y9c_c00335{bottom:399.026667pt;}
.y9e_c00335{bottom:399.226667pt;}
.y9d_c00335{bottom:399.973333pt;}
.y9b_c00335{bottom:414.440000pt;}
.y98_c00335{bottom:415.773333pt;}
.y9a_c00335{bottom:416.360000pt;}
.y97_c00335{bottom:416.560000pt;}
.y99_c00335{bottom:417.693333pt;}
.y96_c00335{bottom:432.160000pt;}
.y93_c00335{bottom:433.106667pt;}
.y95_c00335{bottom:433.693333pt;}
.y91_c00335{bottom:433.893333pt;}
.y94_c00335{bottom:434.640000pt;}
.y92_c00335{bottom:435.026667pt;}
.y8d_c00335{bottom:450.440000pt;}
.y8e_c00335{bottom:451.226667pt;}
.y8f_c00335{bottom:451.973333pt;}
.y8c_c00335{bottom:452.360000pt;}
.y90_c00335{bottom:453.306667pt;}
.y89_c00335{bottom:467.773333pt;}
.y88_c00335{bottom:468.560000pt;}
.y8a_c00335{bottom:469.693333pt;}
.y8b_c00335{bottom:470.640000pt;}
.y85_c00335{bottom:483.773333pt;}
.y86_c00335{bottom:485.106667pt;}
.y87_c00335{bottom:485.893333pt;}
.y84_c00335{bottom:487.026667pt;}
.y80_c00335{bottom:502.440000pt;}
.y81_c00335{bottom:504.360000pt;}
.y83_c00335{bottom:505.306667pt;}
.y82_c00335{bottom:505.693333pt;}
.y7f_c00335{bottom:519.026667pt;}
.y78_c00335{bottom:519.773333pt;}
.y7c_c00335{bottom:521.106667pt;}
.y7a_c00335{bottom:521.306667pt;}
.y79_c00335{bottom:521.693333pt;}
.y7b_c00335{bottom:521.893333pt;}
.y7e_c00335{bottom:522.640000pt;}
.y7d_c00335{bottom:523.026667pt;}
.y74_c00335{bottom:537.106667pt;}
.y76_c00335{bottom:537.306667pt;}
.y75_c00335{bottom:538.440000pt;}
.y73_c00335{bottom:539.026667pt;}
.y77_c00335{bottom:539.226667pt;}
.y71_c00335{bottom:555.773333pt;}
.y72_c00335{bottom:556.560000pt;}
.y70_c00335{bottom:557.693333pt;}
.y6c_c00335{bottom:573.106667pt;}
.y6e_c00335{bottom:573.706667pt;}
.y6f_c00335{bottom:574.066667pt;}
.y6d_c00335{bottom:575.026667pt;}
.y69_c00335{bottom:590.440000pt;}
.y6b_c00335{bottom:591.400000pt;}
.y6a_c00335{bottom:592.360000pt;}
.y68_c00335{bottom:607.400000pt;}
.y67_c00335{bottom:607.773333pt;}
.y64_c00335{bottom:608.560000pt;}
.y66_c00335{bottom:608.733333pt;}
.y65_c00335{bottom:609.693333pt;}
.y61_c00335{bottom:625.106667pt;}
.y60_c00335{bottom:626.066667pt;}
.y5f_c00335{bottom:627.026667pt;}
.y63_c00335{bottom:627.226667pt;}
.y62_c00335{bottom:627.973333pt;}
.y59_c00335{bottom:642.440000pt;}
.y5a_c00335{bottom:642.826667pt;}
.y5b_c00335{bottom:643.773333pt;}
.y5d_c00335{bottom:644.360000pt;}
.y5c_c00335{bottom:645.306667pt;}
.y5e_c00335{bottom:645.693333pt;}
.y58_c00335{bottom:661.106667pt;}
.y57_c00335{bottom:661.893333pt;}
.y56_c00335{bottom:662.640000pt;}
.y55_c00335{bottom:663.026667pt;}
.y50_c00335{bottom:678.440000pt;}
.y53_c00335{bottom:679.026667pt;}
.y52_c00335{bottom:679.226667pt;}
.y51_c00335{bottom:680.360000pt;}
.y54_c00335{bottom:681.306667pt;}
.y4c_c00335{bottom:695.773333pt;}
.y4e_c00335{bottom:696.560000pt;}
.y4f_c00335{bottom:696.733333pt;}
.y4d_c00335{bottom:697.693333pt;}
.y49_c00335{bottom:712.360000pt;}
.y4b_c00335{bottom:712.733333pt;}
.y48_c00335{bottom:713.106667pt;}
.y4a_c00335{bottom:714.066667pt;}
.y46_c00335{bottom:715.026667pt;}
.y47_c00335{bottom:715.226667pt;}
.y45_c00335{bottom:729.306667pt;}
.y3f_c00335{bottom:729.693333pt;}
.y3e_c00335{bottom:730.066667pt;}
.y44_c00335{bottom:730.640000pt;}
.y3d_c00335{bottom:731.226667pt;}
.y42_c00335{bottom:731.773333pt;}
.y3c_c00335{bottom:732.360000pt;}
.y40_c00335{bottom:732.560000pt;}
.y41_c00335{bottom:732.733333pt;}
.y43_c00335{bottom:733.693333pt;}
.y38_c00335{bottom:748.733333pt;}
.y39_c00335{bottom:749.693333pt;}
.y3a_c00335{bottom:749.893333pt;}
.y3b_c00335{bottom:751.026667pt;}
.y31_c00335{bottom:765.106667pt;}
.y37_c00335{bottom:766.066667pt;}
.y32_c00335{bottom:766.440000pt;}
.y33_c00335{bottom:767.026667pt;}
.y35_c00335{bottom:767.226667pt;}
.y36_c00335{bottom:767.400000pt;}
.y34_c00335{bottom:768.360000pt;}
.y2e_c00335{bottom:783.773333pt;}
.y2d_c00335{bottom:784.560000pt;}
.y30_c00335{bottom:784.733333pt;}
.y2f_c00335{bottom:785.693333pt;}
.y2b_c00335{bottom:801.106667pt;}
.y2c_c00335{bottom:801.893333pt;}
.y2a_c00335{bottom:803.026667pt;}
.y25_c00335{bottom:818.066667pt;}
.y29_c00335{bottom:819.400000pt;}
.y28_c00335{bottom:819.973333pt;}
.y26_c00335{bottom:820.360000pt;}
.y27_c00335{bottom:821.306667pt;}
.y20_c00335{bottom:833.693333pt;}
.y1f_c00335{bottom:835.773333pt;}
.y22_c00335{bottom:837.306667pt;}
.y21_c00335{bottom:837.693333pt;}
.y24_c00335{bottom:837.893333pt;}
.y23_c00335{bottom:838.640000pt;}
.y1c_c00335{bottom:853.106667pt;}
.y1b_c00335{bottom:855.026667pt;}
.y1d_c00335{bottom:855.973333pt;}
.y1e_c00335{bottom:856.360000pt;}
.y18_c00335{bottom:870.440000pt;}
.y17_c00335{bottom:872.360000pt;}
.y1a_c00335{bottom:872.560000pt;}
.y19_c00335{bottom:873.306667pt;}
.y14_c00335{bottom:887.773333pt;}
.y16_c00335{bottom:889.693333pt;}
.y15_c00335{bottom:890.640000pt;}
.ye_c00335{bottom:905.106667pt;}
.y10_c00335{bottom:906.440000pt;}
.yf_c00335{bottom:907.026667pt;}
.y13_c00335{bottom:907.226667pt;}
.y12_c00335{bottom:907.973333pt;}
.y11_c00335{bottom:908.360000pt;}
.yb_c00335{bottom:922.640000pt;}
.ya_c00335{bottom:923.773333pt;}
.yc_c00335{bottom:924.560000pt;}
.y9_c00335{bottom:925.306667pt;}
.yd_c00335{bottom:925.693333pt;}
.y8_c00335{bottom:939.026667pt;}
.y3_c00335{bottom:941.106667pt;}
.y6_c00335{bottom:941.893333pt;}
.y4_c00335{bottom:942.640000pt;}
.y5_c00335{bottom:943.026667pt;}
.y7_c00335{bottom:943.973333pt;}
.y1_c00335{bottom:975.773333pt;}
.y2_c00335{bottom:976.933333pt;}
.h8_c00335{height:3.739141pt;}
.h5_c00335{height:20.466875pt;}
.h2_c00335{height:22.303646pt;}
.h3_c00335{height:27.879557pt;}
.h4_c00335{height:31.618698pt;}
.h6_c00335{height:35.357839pt;}
.h1_c00335{height:39.031380pt;}
.h7_c00335{height:42.770521pt;}
.h0_c00335{height:1186.666667pt;}
.w0_c00335{width:782.666667pt;}
.x0_c00335{left:0.000000pt;}
.x12_c00335{left:134.666667pt;}
.x1_c00335{left:136.000000pt;}
.x4b_c00335{left:137.133333pt;}
.x13_c00335{left:149.706667pt;}
.xb3_c00335{left:152.960000pt;}
.x68_c00335{left:155.040000pt;}
.xe6_c00335{left:160.000000pt;}
.x3_c00335{left:160.960000pt;}
.xd1_c00335{left:162.666667pt;}
.xd9_c00335{left:164.373333pt;}
.x4c_c00335{left:168.373333pt;}
.x109_c00335{left:169.333333pt;}
.x23_c00335{left:171.040000pt;}
.xdf_c00335{left:172.960000pt;}
.x8f_c00335{left:174.666667pt;}
.xe7_c00335{left:175.626667pt;}
.xc5_c00335{left:176.960000pt;}
.x4_c00335{left:178.666667pt;}
.xc9_c00335{left:180.960000pt;}
.x70_c00335{left:183.040000pt;}
.x58_c00335{left:185.333333pt;}
.x14_c00335{left:186.293333pt;}
.x3f_c00335{left:187.626667pt;}
.x34_c00335{left:190.666667pt;}
.xc1_c00335{left:192.000000pt;}
.x83_c00335{left:193.333333pt;}
.xda_c00335{left:194.666667pt;}
.x24_c00335{left:196.000000pt;}
.x10d_c00335{left:197.333333pt;}
.xac_c00335{left:199.626667pt;}
.x5_c00335{left:200.960000pt;}
.x96_c00335{left:202.666667pt;}
.x90_c00335{left:204.960000pt;}
.xbb_c00335{left:206.293333pt;}
.x35_c00335{left:208.373333pt;}
.x15_c00335{left:211.040000pt;}
.x25_c00335{left:212.373333pt;}
.x69_c00335{left:213.333333pt;}
.xdb_c00335{left:214.293333pt;}
.x40_c00335{left:216.373333pt;}
.xa5_c00335{left:217.333333pt;}
.xcc_c00335{left:220.373333pt;}
.x84_c00335{left:221.333333pt;}
.x37_c00335{left:222.293333pt;}
.xf8_c00335{left:225.706667pt;}
.x4d_c00335{left:227.040000pt;}
.x9f_c00335{left:228.000000pt;}
.xe3_c00335{left:229.333333pt;}
.xf4_c00335{left:230.666667pt;}
.xbc_c00335{left:232.000000pt;}
.x85_c00335{left:233.333333pt;}
.x26_c00335{left:236.373333pt;}
.x97_c00335{left:237.706667pt;}
.xb7_c00335{left:239.240000pt;}
.x41_c00335{left:240.373333pt;}
.x7c_c00335{left:243.626667pt;}
.x16_c00335{left:245.333333pt;}
.xe4_c00335{left:246.293333pt;}
.x38_c00335{left:249.333333pt;}
.xa0_c00335{left:252.373333pt;}
.x63_c00335{left:253.706667pt;}
.x6_c00335{left:256.000000pt;}
.xe0_c00335{left:257.333333pt;}
.x36_c00335{left:261.333333pt;}
.x86_c00335{left:263.040000pt;}
.xd2_c00335{left:264.373333pt;}
.xa6_c00335{left:265.333333pt;}
.x17_c00335{left:267.626667pt;}
.x59_c00335{left:269.333333pt;}
.xe2_c00335{left:270.666667pt;}
.x7_c00335{left:272.000000pt;}
.x71_c00335{left:272.960000pt;}
.xa1_c00335{left:276.000000pt;}
.xf9_c00335{left:277.706667pt;}
.xef_c00335{left:279.040000pt;}
.x5a_c00335{left:281.333333pt;}
.x10f_c00335{left:283.040000pt;}
.xa7_c00335{left:284.000000pt;}
.xdc_c00335{left:285.333333pt;}
.x87_c00335{left:286.293333pt;}
.x4e_c00335{left:287.626667pt;}
.x27_c00335{left:288.960000pt;}
.x10a_c00335{left:290.666667pt;}
.x91_c00335{left:292.000000pt;}
.xcd_c00335{left:292.960000pt;}
.x42_c00335{left:294.293333pt;}
.xd5_c00335{left:298.293333pt;}
.x72_c00335{left:299.626667pt;}
.xad_c00335{left:303.040000pt;}
.xf0_c00335{left:304.000000pt;}
.x8_c00335{left:305.333333pt;}
.xbd_c00335{left:306.293333pt;}
.x110_c00335{left:308.000000pt;}
.x10e_c00335{left:309.706667pt;}
.x43_c00335{left:311.040000pt;}
.x98_c00335{left:312.000000pt;}
.x18_c00335{left:313.333333pt;}
.x39_c00335{left:314.666667pt;}
.x28_c00335{left:315.626667pt;}
.x5b_c00335{left:317.333333pt;}
.x88_c00335{left:318.666667pt;}
.x73_c00335{left:320.000000pt;}
.x64_c00335{left:322.293333pt;}
.xb4_c00335{left:324.000000pt;}
.xfa_c00335{left:325.706667pt;}
.x6a_c00335{left:326.666667pt;}
.x19_c00335{left:329.333333pt;}
.xfc_c00335{left:331.626667pt;}
.x104_c00335{left:335.040000pt;}
.x9_c00335{left:336.000000pt;}
.x29_c00335{left:337.706667pt;}
.xf1_c00335{left:340.000000pt;}
.x89_c00335{left:342.666667pt;}
.x5c_c00335{left:344.960000pt;}
.x4f_c00335{left:346.666667pt;}
.xae_c00335{left:348.373333pt;}
.x74_c00335{left:350.666667pt;}
.x7d_c00335{left:352.000000pt;}
.x99_c00335{left:354.293333pt;}
.x6b_c00335{left:356.000000pt;}
.xfb_c00335{left:357.333333pt;}
.x2_c00335{left:358.666667pt;}
.xa_c00335{left:359.626667pt;}
.x92_c00335{left:362.666667pt;}
.xa8_c00335{left:364.000000pt;}
.xce_c00335{left:364.960000pt;}
.xb8_c00335{left:366.293333pt;}
.xea_c00335{left:368.000000pt;}
.x1a_c00335{left:369.706667pt;}
.x2a_c00335{left:371.040000pt;}
.x3a_c00335{left:372.000000pt;}
.xfd_c00335{left:374.666667pt;}
.x50_c00335{left:376.000000pt;}
.x5d_c00335{left:379.040000pt;}
.xa2_c00335{left:382.666667pt;}
.x8a_c00335{left:383.626667pt;}
.x65_c00335{left:385.333333pt;}
.x51_c00335{left:388.000000pt;}
.xaf_c00335{left:392.000000pt;}
.x1b_c00335{left:392.960000pt;}
.x105_c00335{left:394.666667pt;}
.x2b_c00335{left:396.000000pt;}
.x7e_c00335{left:397.706667pt;}
.x44_c00335{left:398.666667pt;}
.x75_c00335{left:400.000000pt;}
.xd6_c00335{left:402.666667pt;}
.x5e_c00335{left:403.626667pt;}
.x10b_c00335{left:408.000000pt;}
.xfe_c00335{left:408.960000pt;}
.x8b_c00335{left:410.666667pt;}
.x52_c00335{left:412.000000pt;}
.xd3_c00335{left:412.960000pt;}
.x2c_c00335{left:414.293333pt;}
.xbe_c00335{left:416.000000pt;}
.x9a_c00335{left:417.333333pt;}
.xf2_c00335{left:421.706667pt;}
.x3b_c00335{left:423.040000pt;}
.x7f_c00335{left:424.000000pt;}
.x6c_c00335{left:425.333333pt;}
.xb_c00335{left:427.040000pt;}
.xc2_c00335{left:428.000000pt;}
.x76_c00335{left:431.040000pt;}
.xc6_c00335{left:432.373333pt;}
.x111_c00335{left:433.706667pt;}
.xb9_c00335{left:437.333333pt;}
.x9b_c00335{left:439.040000pt;}
.xeb_c00335{left:441.333333pt;}
.xa9_c00335{left:442.293333pt;}
.x1c_c00335{left:444.000000pt;}
.x45_c00335{left:444.960000pt;}
.xa3_c00335{left:447.040000pt;}
.xc7_c00335{left:448.000000pt;}
.xd7_c00335{left:449.333333pt;}
.x2d_c00335{left:450.293333pt;}
.x93_c00335{left:454.666667pt;}
.x8c_c00335{left:455.626667pt;}
.xcf_c00335{left:457.333333pt;}
.xc3_c00335{left:458.666667pt;}
.x3c_c00335{left:460.000000pt;}
.x46_c00335{left:460.960000pt;}
.xc_c00335{left:464.000000pt;}
.x9c_c00335{left:466.666667pt;}
.xff_c00335{left:469.333333pt;}
.x53_c00335{left:470.293333pt;}
.xb0_c00335{left:472.573333pt;}
.x2e_c00335{left:474.293333pt;}
.x1d_c00335{left:475.626667pt;}
.xd_c00335{left:479.626667pt;}
.x5f_c00335{left:481.333333pt;}
.xba_c00335{left:485.706667pt;}
.xdd_c00335{left:486.666667pt;}
.x100_c00335{left:488.373333pt;}
.x2f_c00335{left:489.706667pt;}
.xec_c00335{left:490.666667pt;}
.x94_c00335{left:493.333333pt;}
.xe1_c00335{left:496.373333pt;}
.x1e_c00335{left:497.706667pt;}
.xe_c00335{left:499.040000pt;}
.xf5_c00335{left:502.666667pt;}
.x6d_c00335{left:504.000000pt;}
.x47_c00335{left:506.293333pt;}
.x77_c00335{left:508.373333pt;}
.xed_c00335{left:509.333333pt;}
.x30_c00335{left:512.000000pt;}
.xbf_c00335{left:513.333333pt;}
.x54_c00335{left:514.293333pt;}
.x101_c00335{left:516.000000pt;}
.xa4_c00335{left:517.706667pt;}
.x112_c00335{left:520.000000pt;}
.x1f_c00335{left:521.333333pt;}
.x60_c00335{left:522.666667pt;}
.x3d_c00335{left:524.000000pt;}
.xd0_c00335{left:525.333333pt;}
.xe8_c00335{left:527.626667pt;}
.x6e_c00335{left:528.960000pt;}
.xf_c00335{left:530.666667pt;}
.x66_c00335{left:532.373333pt;}
.xc8_c00335{left:533.706667pt;}
.x78_c00335{left:536.000000pt;}
.xf6_c00335{left:537.333333pt;}
.xf3_c00335{left:540.000000pt;}
.xd4_c00335{left:541.706667pt;}
.xc0_c00335{left:542.666667pt;}
.x106_c00335{left:546.666667pt;}
.xee_c00335{left:548.373333pt;}
.x80_c00335{left:549.333333pt;}
.x9d_c00335{left:550.293333pt;}
.xaa_c00335{left:551.626667pt;}
.x31_c00335{left:555.040000pt;}
.x8d_c00335{left:557.706667pt;}
.x79_c00335{left:558.666667pt;}
.xca_c00335{left:560.960000pt;}
.x48_c00335{left:564.960000pt;}
.x55_c00335{left:567.040000pt;}
.xb5_c00335{left:568.000000pt;}
.x61_c00335{left:569.333333pt;}
.x102_c00335{left:570.666667pt;}
.x20_c00335{left:571.626667pt;}
.xc4_c00335{left:573.333333pt;}
.x10_c00335{left:578.293333pt;}
.x9e_c00335{left:580.000000pt;}
.x81_c00335{left:582.293333pt;}
.xe9_c00335{left:585.706667pt;}
.x95_c00335{left:586.666667pt;}
.x21_c00335{left:588.373333pt;}
.x32_c00335{left:589.333333pt;}
.x107_c00335{left:590.293333pt;}
.xe5_c00335{left:595.040000pt;}
.xde_c00335{left:596.000000pt;}
.xd8_c00335{left:597.333333pt;}
.x7a_c00335{left:599.040000pt;}
.x49_c00335{left:600.960000pt;}
.xb1_c00335{left:604.373333pt;}
.xb6_c00335{left:605.333333pt;}
.x8e_c00335{left:606.666667pt;}
.x56_c00335{left:608.000000pt;}
.xcb_c00335{left:608.960000pt;}
.x62_c00335{left:610.666667pt;}
.x22_c00335{left:611.626667pt;}
.x67_c00335{left:613.333333pt;}
.x11_c00335{left:617.333333pt;}
.x4a_c00335{left:619.626667pt;}
.x82_c00335{left:621.333333pt;}
.x103_c00335{left:622.666667pt;}
.xab_c00335{left:624.960000pt;}
.x57_c00335{left:627.040000pt;}
.x3e_c00335{left:629.333333pt;}
.x7b_c00335{left:630.666667pt;}
.xb2_c00335{left:631.626667pt;}
.x10c_c00335{left:634.666667pt;}
.xf7_c00335{left:636.373333pt;}
.x6f_c00335{left:637.333333pt;}
.x108_c00335{left:640.000000pt;}
.x33_c00335{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d2b8e5ad4608466adff1668.woff2')format("woff");}.ff1_c00336{font-family:ff1_c00336;line-height:1.688965;font-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_c00336{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00336{transform:matrix(0.333506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333506,0.000000,0.000000,0.250000,0,0);}
.mf_c00336{transform:matrix(0.337815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337815,0.000000,0.000000,0.250000,0,0);}
.maf_c00336{transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);}
.mad_c00336{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.ma6_c00336{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.mac_c00336{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m15_c00336{transform:matrix(0.367227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367227,0.000000,0.000000,0.250000,0,0);}
.m94_c00336{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mb2_c00336{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m85_c00336{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mc5_c00336{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m9c_c00336{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.maa_c00336{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m71_c00336{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.mce_c00336{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m8_c00336{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.md5_c00336{transform:matrix(0.388037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388037,0.000000,0.000000,0.250000,0,0);}
.m6e_c00336{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m84_c00336{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mdb_c00336{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.md0_c00336{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m13_c00336{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.md_c00336{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m48_c00336{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m8b_c00336{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m1f_c00336{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m93_c00336{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.md4_c00336{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m43_c00336{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m63_c00336{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m7a_c00336{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m6b_c00336{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m4c_c00336{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.mcd_c00336{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m95_c00336{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m21_c00336{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.ma2_c00336{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m14_c00336{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m50_c00336{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m26_c00336{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m40_c00336{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m97_c00336{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.mcb_c00336{transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);}
.m12_c00336{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m8d_c00336{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m92_c00336{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.ma5_c00336{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m18_c00336{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.mab_c00336{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m90_c00336{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m45_c00336{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m52_c00336{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mc6_c00336{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.ma7_c00336{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m68_c00336{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.md2_c00336{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m3f_c00336{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m5b_c00336{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m7d_c00336{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.mde_c00336{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mc9_c00336{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m39_c00336{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mae_c00336{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m41_c00336{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m75_c00336{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m89_c00336{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.ma3_c00336{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m2b_c00336{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m98_c00336{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m5c_c00336{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m69_c00336{transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);}
.m72_c00336{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mc_c00336{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m22_c00336{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m83_c00336{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m7f_c00336{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m77_c00336{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m8a_c00336{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.md9_c00336{transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);}
.mbf_c00336{transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);}
.mc4_c00336{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.m67_c00336{transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);}
.mcc_c00336{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m73_c00336{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m27_c00336{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mdd_c00336{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m59_c00336{transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);}
.m5a_c00336{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m96_c00336{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m1_c00336{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m8e_c00336{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m74_c00336{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m8f_c00336{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.me_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);}
.m16_c00336{transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);}
.m34_c00336{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m3a_c00336{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m51_c00336{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m7b_c00336{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m86_c00336{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m9b_c00336{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m65_c00336{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mb9_c00336{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.ma4_c00336{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m6_c00336{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m9d_c00336{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m3e_c00336{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mb5_c00336{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m28_c00336{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m2f_c00336{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.ma8_c00336{transform:matrix(0.518487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518487,0.000000,0.000000,0.250000,0,0);}
.m91_c00336{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m24_c00336{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mdf_c00336{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m4_c00336{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.mb6_c00336{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.md7_c00336{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m56_c00336{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mc7_c00336{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mbb_c00336{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.mda_c00336{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m37_c00336{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m9e_c00336{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m5e_c00336{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m32_c00336{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m88_c00336{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.md1_c00336{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m5_c00336{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mdc_c00336{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.md3_c00336{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m1b_c00336{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m64_c00336{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m33_c00336{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m5f_c00336{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m6a_c00336{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m1a_c00336{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mb4_c00336{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m2c_c00336{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mb0_c00336{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.md6_c00336{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m3b_c00336{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m9a_c00336{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m99_c00336{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m29_c00336{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m38_c00336{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m35_c00336{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mb1_c00336{transform:matrix(0.548237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548237,0.000000,0.000000,0.250000,0,0);}
.mc8_c00336{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m36_c00336{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m1d_c00336{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m70_c00336{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m19_c00336{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m2d_c00336{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m61_c00336{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m4a_c00336{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m7_c00336{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m3_c00336{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m8c_c00336{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.md8_c00336{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m46_c00336{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m7e_c00336{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mca_c00336{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m62_c00336{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m53_c00336{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m82_c00336{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mc1_c00336{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.ma9_c00336{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m9_c00336{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m66_c00336{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m42_c00336{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m80_c00336{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m7c_c00336{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mbc_c00336{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.mc3_c00336{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m2e_c00336{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m6d_c00336{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.mbd_c00336{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mb8_c00336{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m5d_c00336{transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);}
.m76_c00336{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m3d_c00336{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m1c_c00336{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m49_c00336{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m4f_c00336{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.mba_c00336{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.mb3_c00336{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m25_c00336{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);}
.mc2_c00336{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.ma_c00336{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m6f_c00336{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.m0_c00336{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m44_c00336{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m17_c00336{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m6c_c00336{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m2_c00336{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m60_c00336{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m3c_c00336{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m81_c00336{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m4d_c00336{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m47_c00336{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m55_c00336{transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);}
.m30_c00336{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mb_c00336{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mcf_c00336{transform:matrix(0.671324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.671324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.671324,0.000000,0.000000,0.250000,0,0);}
.m58_c00336{transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);}
.m4e_c00336{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mc0_c00336{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m78_c00336{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.m4b_c00336{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.ma1_c00336{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.m54_c00336{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m9f_c00336{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.mbe_c00336{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m57_c00336{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m31_c00336{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m1e_c00336{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m23_c00336{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m87_c00336{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m20_c00336{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mb7_c00336{transform:matrix(0.802885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802885,0.000000,0.000000,0.250000,0,0);}
.m10_c00336{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m2a_c00336{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m79_c00336{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,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;}
}
.ws1_c00336{word-spacing:-8.752647px;}
.ws0_c00336{word-spacing:-2.841362px;}
.ws2_c00336{word-spacing:-1.348680px;}
.ws3_c00336{word-spacing:0.000000px;}
.fc0_c00336{color:transparent;}
.fs4_c00336{font-size:18.720000px;}
.fs0_c00336{font-size:20.400000px;}
.fs3_c00336{font-size:25.500000px;}
.fs1_c00336{font-size:28.920000px;}
.fs5_c00336{font-size:32.340000px;}
.fs2_c00336{font-size:35.700000px;}
.fs6_c00336{font-size:39.120000px;}
.y0_c00336{bottom:0.000000px;}
.ybd_c00336{bottom:254.970000px;}
.ybc_c00336{bottom:255.405000px;}
.yb9_c00336{bottom:272.745000px;}
.yba_c00336{bottom:274.905000px;}
.ybb_c00336{bottom:275.130000px;}
.yb8_c00336{bottom:292.245000px;}
.yb7_c00336{bottom:293.970000px;}
.yb6_c00336{bottom:294.405000px;}
.yb2_c00336{bottom:311.745000px;}
.yb4_c00336{bottom:312.180000px;}
.yb3_c00336{bottom:313.905000px;}
.yb5_c00336{bottom:315.405000px;}
.yaf_c00336{bottom:331.245000px;}
.yb0_c00336{bottom:332.745000px;}
.yae_c00336{bottom:333.405000px;}
.yb1_c00336{bottom:333.630000px;}
.yab_c00336{bottom:349.905000px;}
.yac_c00336{bottom:350.745000px;}
.ya5_c00336{bottom:352.050000px;}
.ya7_c00336{bottom:352.245000px;}
.ya9_c00336{bottom:352.905000px;}
.yaa_c00336{bottom:353.130000px;}
.ya6_c00336{bottom:353.970000px;}
.ya8_c00336{bottom:354.405000px;}
.yad_c00336{bottom:355.470000px;}
.ya2_c00336{bottom:371.745000px;}
.ya4_c00336{bottom:372.630000px;}
.ya1_c00336{bottom:372.825000px;}
.ya3_c00336{bottom:373.905000px;}
.y9d_c00336{bottom:391.245000px;}
.y9c_c00336{bottom:392.130000px;}
.ya0_c00336{bottom:392.970000px;}
.y9e_c00336{bottom:393.405000px;}
.y9f_c00336{bottom:393.630000px;}
.y9b_c00336{bottom:394.470000px;}
.y9a_c00336{bottom:408.405000px;}
.y99_c00336{bottom:410.745000px;}
.y98_c00336{bottom:411.825000px;}
.y97_c00336{bottom:412.905000px;}
.y96_c00336{bottom:413.130000px;}
.y8e_c00336{bottom:430.245000px;}
.y94_c00336{bottom:431.130000px;}
.y92_c00336{bottom:431.325000px;}
.y93_c00336{bottom:431.550000px;}
.y95_c00336{bottom:431.970000px;}
.y8f_c00336{bottom:432.405000px;}
.y91_c00336{bottom:432.630000px;}
.y90_c00336{bottom:433.470000px;}
.y8d_c00336{bottom:449.745000px;}
.y8a_c00336{bottom:451.905000px;}
.y8b_c00336{bottom:452.130000px;}
.y8c_c00336{bottom:452.970000px;}
.y89_c00336{bottom:453.405000px;}
.y88_c00336{bottom:471.630000px;}
.y87_c00336{bottom:472.905000px;}
.y84_c00336{bottom:490.245000px;}
.y85_c00336{bottom:491.130000px;}
.y83_c00336{bottom:492.405000px;}
.y86_c00336{bottom:493.470000px;}
.y80_c00336{bottom:509.745000px;}
.y82_c00336{bottom:511.470000px;}
.y81_c00336{bottom:511.905000px;}
.y7f_c00336{bottom:528.825000px;}
.y7d_c00336{bottom:529.245000px;}
.y7c_c00336{bottom:530.130000px;}
.y7b_c00336{bottom:531.405000px;}
.y7e_c00336{bottom:531.630000px;}
.y77_c00336{bottom:547.905000px;}
.y7a_c00336{bottom:548.745000px;}
.y79_c00336{bottom:549.180000px;}
.y76_c00336{bottom:550.245000px;}
.y78_c00336{bottom:551.130000px;}
.y75_c00336{bottom:552.405000px;}
.y74_c00336{bottom:568.245000px;}
.y73_c00336{bottom:568.680000px;}
.y72_c00336{bottom:569.745000px;}
.y6f_c00336{bottom:570.630000px;}
.y70_c00336{bottom:571.470000px;}
.y71_c00336{bottom:571.905000px;}
.y6c_c00336{bottom:589.245000px;}
.y6e_c00336{bottom:590.130000px;}
.y6d_c00336{bottom:591.405000px;}
.y6b_c00336{bottom:608.745000px;}
.y6a_c00336{bottom:610.905000px;}
.y69_c00336{bottom:628.245000px;}
.y68_c00336{bottom:630.405000px;}
.y64_c00336{bottom:647.745000px;}
.y66_c00336{bottom:649.245000px;}
.y63_c00336{bottom:649.905000px;}
.y65_c00336{bottom:650.130000px;}
.y67_c00336{bottom:651.405000px;}
.y62_c00336{bottom:670.905000px;}
.y5f_c00336{bottom:686.970000px;}
.y5e_c00336{bottom:688.245000px;}
.y61_c00336{bottom:689.130000px;}
.y60_c00336{bottom:689.325000px;}
.y5d_c00336{bottom:690.405000px;}
.y5b_c00336{bottom:707.745000px;}
.y59_c00336{bottom:708.630000px;}
.y5a_c00336{bottom:708.825000px;}
.y5c_c00336{bottom:709.470000px;}
.y58_c00336{bottom:709.905000px;}
.y56_c00336{bottom:727.245000px;}
.y57_c00336{bottom:728.130000px;}
.y55_c00336{bottom:729.405000px;}
.y54_c00336{bottom:748.470000px;}
.y52_c00336{bottom:748.905000px;}
.y53_c00336{bottom:749.970000px;}
.y51_c00336{bottom:766.245000px;}
.y4d_c00336{bottom:767.325000px;}
.y4f_c00336{bottom:768.405000px;}
.y50_c00336{bottom:768.630000px;}
.y4e_c00336{bottom:769.470000px;}
.y4c_c00336{bottom:785.745000px;}
.y4a_c00336{bottom:787.905000px;}
.y4b_c00336{bottom:788.970000px;}
.y47_c00336{bottom:805.245000px;}
.y48_c00336{bottom:807.405000px;}
.y49_c00336{bottom:807.630000px;}
.y46_c00336{bottom:823.905000px;}
.y40_c00336{bottom:824.745000px;}
.y45_c00336{bottom:825.405000px;}
.y41_c00336{bottom:826.905000px;}
.y43_c00336{bottom:827.130000px;}
.y42_c00336{bottom:827.970000px;}
.y44_c00336{bottom:828.405000px;}
.y3d_c00336{bottom:843.405000px;}
.y3f_c00336{bottom:845.325000px;}
.y39_c00336{bottom:845.745000px;}
.y3c_c00336{bottom:846.630000px;}
.y3e_c00336{bottom:846.825000px;}
.y3b_c00336{bottom:847.470000px;}
.y3a_c00336{bottom:847.905000px;}
.y37_c00336{bottom:865.245000px;}
.y34_c00336{bottom:865.905000px;}
.y38_c00336{bottom:866.130000px;}
.y36_c00336{bottom:866.970000px;}
.y35_c00336{bottom:867.405000px;}
.y33_c00336{bottom:884.745000px;}
.y30_c00336{bottom:885.630000px;}
.y32_c00336{bottom:885.825000px;}
.y31_c00336{bottom:886.470000px;}
.y2f_c00336{bottom:886.905000px;}
.y2b_c00336{bottom:901.905000px;}
.y2d_c00336{bottom:902.745000px;}
.y2a_c00336{bottom:904.245000px;}
.y2e_c00336{bottom:905.130000px;}
.y2c_c00336{bottom:905.970000px;}
.y29_c00336{bottom:906.405000px;}
.y24_c00336{bottom:923.745000px;}
.y28_c00336{bottom:924.630000px;}
.y27_c00336{bottom:925.470000px;}
.y26_c00336{bottom:925.905000px;}
.y25_c00336{bottom:926.970000px;}
.y1f_c00336{bottom:943.245000px;}
.y20_c00336{bottom:944.130000px;}
.y22_c00336{bottom:944.970000px;}
.y21_c00336{bottom:945.405000px;}
.y23_c00336{bottom:946.470000px;}
.y1d_c00336{bottom:961.905000px;}
.y1c_c00336{bottom:962.745000px;}
.y1e_c00336{bottom:964.470000px;}
.y1b_c00336{bottom:964.905000px;}
.y1a_c00336{bottom:981.405000px;}
.y19_c00336{bottom:982.245000px;}
.y17_c00336{bottom:984.405000px;}
.y18_c00336{bottom:984.630000px;}
.y14_c00336{bottom:1001.745000px;}
.y16_c00336{bottom:1003.245000px;}
.y12_c00336{bottom:1003.905000px;}
.y11_c00336{bottom:1004.130000px;}
.y13_c00336{bottom:1004.970000px;}
.y15_c00336{bottom:1005.405000px;}
.yd_c00336{bottom:1021.245000px;}
.y10_c00336{bottom:1022.325000px;}
.ye_c00336{bottom:1023.405000px;}
.yf_c00336{bottom:1023.630000px;}
.y9_c00336{bottom:1040.745000px;}
.ya_c00336{bottom:1042.245000px;}
.yb_c00336{bottom:1042.905000px;}
.y8_c00336{bottom:1043.130000px;}
.yc_c00336{bottom:1043.970000px;}
.y5_c00336{bottom:1060.470000px;}
.y7_c00336{bottom:1060.905000px;}
.y4_c00336{bottom:1061.745000px;}
.y6_c00336{bottom:1063.470000px;}
.y3_c00336{bottom:1063.905000px;}
.y2_c00336{bottom:1099.905000px;}
.y1_c00336{bottom:1102.050000px;}
.h5_c00336{height:23.025234px;}
.h1_c00336{height:25.091602px;}
.h4_c00336{height:31.364502px;}
.h2_c00336{height:35.571035px;}
.h6_c00336{height:39.777568px;}
.h3_c00336{height:43.910303px;}
.h7_c00336{height:48.116836px;}
.h0_c00336{height:1335.000000px;}
.w0_c00336{width:880.500000px;}
.x0_c00336{left:0.000000px;}
.x3_c00336{left:151.500000px;}
.x8d_c00336{left:153.420000px;}
.xe8_c00336{left:154.500000px;}
.x93_c00336{left:168.000000px;}
.x4_c00336{left:169.920000px;}
.x78_c00336{left:172.920000px;}
.x27_c00336{left:176.580000px;}
.xb1_c00336{left:178.500000px;}
.x71_c00336{left:181.500000px;}
.xba_c00336{left:186.645000px;}
.xcf_c00336{left:189.000000px;}
.x6a_c00336{left:190.500000px;}
.x12_c00336{left:193.080000px;}
.xd4_c00336{left:195.000000px;}
.xf2_c00336{left:196.080000px;}
.x13_c00336{left:197.580000px;}
.xf7_c00336{left:199.920000px;}
.x5_c00336{left:201.000000px;}
.x56_c00336{left:202.500000px;}
.xff_c00336{left:205.500000px;}
.xe1_c00336{left:206.580000px;}
.x33_c00336{left:210.000000px;}
.xac_c00336{left:211.080000px;}
.x107_c00336{left:213.000000px;}
.x1c_c00336{left:214.500000px;}
.xb2_c00336{left:218.145000px;}
.x82_c00336{left:220.920000px;}
.xc1_c00336{left:223.500000px;}
.x4b_c00336{left:224.580000px;}
.x9b_c00336{left:228.000000px;}
.x60_c00336{left:229.500000px;}
.x3f_c00336{left:230.580000px;}
.xd5_c00336{left:232.080000px;}
.xee_c00336{left:234.000000px;}
.xa6_c00336{left:235.500000px;}
.x28_c00336{left:238.500000px;}
.x10d_c00336{left:244.500000px;}
.xdd_c00336{left:246.000000px;}
.x6b_c00336{left:247.500000px;}
.x57_c00336{left:249.000000px;}
.x8e_c00336{left:250.080000px;}
.xd0_c00336{left:253.500000px;}
.x14_c00336{left:256.500000px;}
.x34_c00336{left:259.920000px;}
.x4c_c00336{left:262.080000px;}
.x10e_c00336{left:264.000000px;}
.x6c_c00336{left:265.080000px;}
.x29_c00336{left:270.000000px;}
.xd6_c00336{left:271.920000px;}
.x72_c00336{left:274.500000px;}
.xef_c00336{left:277.080000px;}
.x6_c00336{left:279.420000px;}
.x9c_c00336{left:280.500000px;}
.x8f_c00336{left:282.000000px;}
.x4d_c00336{left:283.920000px;}
.x1d_c00336{left:285.000000px;}
.x40_c00336{left:286.920000px;}
.xeb_c00336{left:288.420000px;}
.xb3_c00336{left:289.500000px;}
.x35_c00336{left:291.000000px;}
.xbb_c00336{left:292.500000px;}
.xc9_c00336{left:295.080000px;}
.x83_c00336{left:296.580000px;}
.xc2_c00336{left:298.920000px;}
.x79_c00336{left:300.000000px;}
.x109_c00336{left:303.000000px;}
.x1e_c00336{left:304.080000px;}
.x7_c00336{left:305.145000px;}
.x9d_c00336{left:309.000000px;}
.xcd_c00336{left:310.080000px;}
.xe6_c00336{left:312.000000px;}
.xf9_c00336{left:314.580000px;}
.x58_c00336{left:316.500000px;}
.xf3_c00336{left:318.000000px;}
.xa7_c00336{left:319.920000px;}
.x94_c00336{left:321.000000px;}
.x9e_c00336{left:322.920000px;}
.x41_c00336{left:325.920000px;}
.x84_c00336{left:327.000000px;}
.x108_c00336{left:328.080000px;}
.x7a_c00336{left:331.920000px;}
.x59_c00336{left:333.000000px;}
.x73_c00336{left:337.500000px;}
.xda_c00336{left:338.580000px;}
.xa8_c00336{left:342.000000px;}
.x4e_c00336{left:343.500000px;}
.xf0_c00336{left:345.000000px;}
.x36_c00336{left:346.080000px;}
.x61_c00336{left:349.080000px;}
.x90_c00336{left:354.000000px;}
.x42_c00336{left:355.500000px;}
.x2a_c00336{left:357.000000px;}
.x6d_c00336{left:360.000000px;}
.x9f_c00336{left:363.420000px;}
.x8_c00336{left:367.500000px;}
.xa9_c00336{left:368.580000px;}
.x15_c00336{left:370.080000px;}
.x2b_c00336{left:372.000000px;}
.x105_c00336{left:373.500000px;}
.x1f_c00336{left:375.000000px;}
.x95_c00336{left:376.920000px;}
.xec_c00336{left:378.000000px;}
.x91_c00336{left:379.500000px;}
.x7b_c00336{left:380.580000px;}
.xd7_c00336{left:382.500000px;}
.xe2_c00336{left:385.275000px;}
.xc3_c00336{left:387.420000px;}
.xbc_c00336{left:388.920000px;}
.xe9_c00336{left:391.500000px;}
.xaa_c00336{left:394.500000px;}
.x37_c00336{left:396.420000px;}
.x43_c00336{left:400.500000px;}
.x1_c00336{left:402.000000px;}
.x2c_c00336{left:405.000000px;}
.xa0_c00336{left:406.080000px;}
.x85_c00336{left:408.000000px;}
.x74_c00336{left:411.000000px;}
.x20_c00336{left:412.920000px;}
.xed_c00336{left:414.000000px;}
.xc4_c00336{left:415.500000px;}
.x86_c00336{left:420.000000px;}
.x2d_c00336{left:421.080000px;}
.xab_c00336{left:422.580000px;}
.x7c_c00336{left:424.500000px;}
.x4f_c00336{left:426.420000px;}
.x9_c00336{left:427.500000px;}
.x75_c00336{left:430.920000px;}
.x100_c00336{left:432.000000px;}
.xb4_c00336{left:433.500000px;}
.xd8_c00336{left:434.580000px;}
.xa1_c00336{left:436.500000px;}
.x38_c00336{left:438.000000px;}
.x10a_c00336{left:439.080000px;}
.x21_c00336{left:441.000000px;}
.x2e_c00336{left:442.500000px;}
.x62_c00336{left:450.000000px;}
.xa2_c00336{left:453.000000px;}
.xbd_c00336{left:454.500000px;}
.x16_c00336{left:456.000000px;}
.xdb_c00336{left:459.000000px;}
.x87_c00336{left:460.080000px;}
.x102_c00336{left:462.000000px;}
.x2f_c00336{left:463.920000px;}
.x50_c00336{left:468.000000px;}
.x5a_c00336{left:470.580000px;}
.xc5_c00336{left:472.500000px;}
.xf4_c00336{left:475.080000px;}
.x103_c00336{left:476.580000px;}
.x44_c00336{left:478.500000px;}
.x96_c00336{left:481.080000px;}
.x7d_c00336{left:483.000000px;}
.x10b_c00336{left:484.500000px;}
.xca_c00336{left:485.580000px;}
.xad_c00336{left:487.500000px;}
.x5b_c00336{left:489.420000px;}
.x22_c00336{left:490.500000px;}
.x88_c00336{left:492.000000px;}
.xde_c00336{left:494.580000px;}
.xd9_c00336{left:499.080000px;}
.xa_c00336{left:500.580000px;}
.x97_c00336{left:502.920000px;}
.xcb_c00336{left:504.420000px;}
.xdc_c00336{left:507.000000px;}
.x63_c00336{left:510.000000px;}
.x17_c00336{left:511.080000px;}
.xf1_c00336{left:514.500000px;}
.xd1_c00336{left:515.775000px;}
.x45_c00336{left:517.080000px;}
.xbe_c00336{left:519.000000px;}
.xb_c00336{left:520.500000px;}
.xae_c00336{left:522.420000px;}
.xc6_c00336{left:523.500000px;}
.x51_c00336{left:525.000000px;}
.xb5_c00336{left:526.500000px;}
.xe3_c00336{left:527.775000px;}
.x18_c00336{left:530.580000px;}
.xa3_c00336{left:531.645000px;}
.x39_c00336{left:534.000000px;}
.x92_c00336{left:535.920000px;}
.xfa_c00336{left:537.420000px;}
.x76_c00336{left:538.920000px;}
.x23_c00336{left:540.000000px;}
.xc_c00336{left:543.000000px;}
.x3a_c00336{left:544.920000px;}
.x6e_c00336{left:546.000000px;}
.x106_c00336{left:548.145000px;}
.x46_c00336{left:550.920000px;}
.xb6_c00336{left:553.080000px;}
.x7e_c00336{left:555.000000px;}
.xf5_c00336{left:559.920000px;}
.x64_c00336{left:561.000000px;}
.xd_c00336{left:562.920000px;}
.xdf_c00336{left:564.000000px;}
.x5c_c00336{left:565.500000px;}
.xbf_c00336{left:573.000000px;}
.x77_c00336{left:574.080000px;}
.x89_c00336{left:576.000000px;}
.x98_c00336{left:577.500000px;}
.x47_c00336{left:579.420000px;}
.xe_c00336{left:583.500000px;}
.x6f_c00336{left:585.000000px;}
.x24_c00336{left:586.500000px;}
.x3b_c00336{left:588.000000px;}
.xb7_c00336{left:589.080000px;}
.x30_c00336{left:591.000000px;}
.x10c_c00336{left:592.500000px;}
.xe4_c00336{left:594.000000px;}
.x5d_c00336{left:595.080000px;}
.xd2_c00336{left:597.000000px;}
.xa4_c00336{left:598.500000px;}
.x8a_c00336{left:600.420000px;}
.x52_c00336{left:601.920000px;}
.x65_c00336{left:603.000000px;}
.xaf_c00336{left:604.500000px;}
.x7f_c00336{left:606.420000px;}
.x25_c00336{left:607.500000px;}
.x70_c00336{left:612.000000px;}
.xf8_c00336{left:613.080000px;}
.xfb_c00336{left:615.420000px;}
.x3c_c00336{left:616.500000px;}
.xc7_c00336{left:618.000000px;}
.x19_c00336{left:619.080000px;}
.xa5_c00336{left:622.920000px;}
.x66_c00336{left:625.920000px;}
.x5e_c00336{left:627.000000px;}
.xea_c00336{left:628.500000px;}
.x8b_c00336{left:633.420000px;}
.x31_c00336{left:636.000000px;}
.xf_c00336{left:637.080000px;}
.x104_c00336{left:639.000000px;}
.x48_c00336{left:640.080000px;}
.x53_c00336{left:643.080000px;}
.x5f_c00336{left:645.000000px;}
.xb0_c00336{left:647.580000px;}
.x80_c00336{left:649.500000px;}
.x67_c00336{left:651.000000px;}
.xb8_c00336{left:652.500000px;}
.x10_c00336{left:655.920000px;}
.xfc_c00336{left:657.000000px;}
.x8c_c00336{left:660.420000px;}
.x49_c00336{left:661.920000px;}
.x32_c00336{left:664.500000px;}
.x26_c00336{left:666.420000px;}
.xd3_c00336{left:669.000000px;}
.xb9_c00336{left:670.500000px;}
.x99_c00336{left:671.580000px;}
.xc8_c00336{left:673.080000px;}
.xfd_c00336{left:675.000000px;}
.x54_c00336{left:676.500000px;}
.xe5_c00336{left:679.080000px;}
.x3d_c00336{left:681.000000px;}
.xcc_c00336{left:684.000000px;}
.x11_c00336{left:685.500000px;}
.x1a_c00336{left:686.580000px;}
.xce_c00336{left:688.080000px;}
.x4a_c00336{left:690.000000px;}
.x68_c00336{left:691.080000px;}
.x3e_c00336{left:692.580000px;}
.xfe_c00336{left:699.420000px;}
.x81_c00336{left:700.500000px;}
.x101_c00336{left:702.000000px;}
.x2_c00336{left:704.580000px;}
.x1b_c00336{left:706.500000px;}
.x69_c00336{left:708.420000px;}
.xe0_c00336{left:709.920000px;}
.xc0_c00336{left:712.500000px;}
.xe7_c00336{left:714.000000px;}
.x9a_c00336{left:715.500000px;}
.xf6_c00336{left:720.000000px;}
.x55_c00336{left:721.500000px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.ls0_c00336{letter-spacing:0.000000pt;}
.ws1_c00336{word-spacing:-7.780131pt;}
.ws0_c00336{word-spacing:-2.525655pt;}
.ws2_c00336{word-spacing:-1.198827pt;}
.ws3_c00336{word-spacing:0.000000pt;}
.fs4_c00336{font-size:16.640000pt;}
.fs0_c00336{font-size:18.133333pt;}
.fs3_c00336{font-size:22.666667pt;}
.fs1_c00336{font-size:25.706667pt;}
.fs5_c00336{font-size:28.746667pt;}
.fs2_c00336{font-size:31.733333pt;}
.fs6_c00336{font-size:34.773333pt;}
.y0_c00336{bottom:0.000000pt;}
.ybd_c00336{bottom:226.640000pt;}
.ybc_c00336{bottom:227.026667pt;}
.yb9_c00336{bottom:242.440000pt;}
.yba_c00336{bottom:244.360000pt;}
.ybb_c00336{bottom:244.560000pt;}
.yb8_c00336{bottom:259.773333pt;}
.yb7_c00336{bottom:261.306667pt;}
.yb6_c00336{bottom:261.693333pt;}
.yb2_c00336{bottom:277.106667pt;}
.yb4_c00336{bottom:277.493333pt;}
.yb3_c00336{bottom:279.026667pt;}
.yb5_c00336{bottom:280.360000pt;}
.yaf_c00336{bottom:294.440000pt;}
.yb0_c00336{bottom:295.773333pt;}
.yae_c00336{bottom:296.360000pt;}
.yb1_c00336{bottom:296.560000pt;}
.yab_c00336{bottom:311.026667pt;}
.yac_c00336{bottom:311.773333pt;}
.ya5_c00336{bottom:312.933333pt;}
.ya7_c00336{bottom:313.106667pt;}
.ya9_c00336{bottom:313.693333pt;}
.yaa_c00336{bottom:313.893333pt;}
.ya6_c00336{bottom:314.640000pt;}
.ya8_c00336{bottom:315.026667pt;}
.yad_c00336{bottom:315.973333pt;}
.ya2_c00336{bottom:330.440000pt;}
.ya4_c00336{bottom:331.226667pt;}
.ya1_c00336{bottom:331.400000pt;}
.ya3_c00336{bottom:332.360000pt;}
.y9d_c00336{bottom:347.773333pt;}
.y9c_c00336{bottom:348.560000pt;}
.ya0_c00336{bottom:349.306667pt;}
.y9e_c00336{bottom:349.693333pt;}
.y9f_c00336{bottom:349.893333pt;}
.y9b_c00336{bottom:350.640000pt;}
.y9a_c00336{bottom:363.026667pt;}
.y99_c00336{bottom:365.106667pt;}
.y98_c00336{bottom:366.066667pt;}
.y97_c00336{bottom:367.026667pt;}
.y96_c00336{bottom:367.226667pt;}
.y8e_c00336{bottom:382.440000pt;}
.y94_c00336{bottom:383.226667pt;}
.y92_c00336{bottom:383.400000pt;}
.y93_c00336{bottom:383.600000pt;}
.y95_c00336{bottom:383.973333pt;}
.y8f_c00336{bottom:384.360000pt;}
.y91_c00336{bottom:384.560000pt;}
.y90_c00336{bottom:385.306667pt;}
.y8d_c00336{bottom:399.773333pt;}
.y8a_c00336{bottom:401.693333pt;}
.y8b_c00336{bottom:401.893333pt;}
.y8c_c00336{bottom:402.640000pt;}
.y89_c00336{bottom:403.026667pt;}
.y88_c00336{bottom:419.226667pt;}
.y87_c00336{bottom:420.360000pt;}
.y84_c00336{bottom:435.773333pt;}
.y85_c00336{bottom:436.560000pt;}
.y83_c00336{bottom:437.693333pt;}
.y86_c00336{bottom:438.640000pt;}
.y80_c00336{bottom:453.106667pt;}
.y82_c00336{bottom:454.640000pt;}
.y81_c00336{bottom:455.026667pt;}
.y7f_c00336{bottom:470.066667pt;}
.y7d_c00336{bottom:470.440000pt;}
.y7c_c00336{bottom:471.226667pt;}
.y7b_c00336{bottom:472.360000pt;}
.y7e_c00336{bottom:472.560000pt;}
.y77_c00336{bottom:487.026667pt;}
.y7a_c00336{bottom:487.773333pt;}
.y79_c00336{bottom:488.160000pt;}
.y76_c00336{bottom:489.106667pt;}
.y78_c00336{bottom:489.893333pt;}
.y75_c00336{bottom:491.026667pt;}
.y74_c00336{bottom:505.106667pt;}
.y73_c00336{bottom:505.493333pt;}
.y72_c00336{bottom:506.440000pt;}
.y6f_c00336{bottom:507.226667pt;}
.y70_c00336{bottom:507.973333pt;}
.y71_c00336{bottom:508.360000pt;}
.y6c_c00336{bottom:523.773333pt;}
.y6e_c00336{bottom:524.560000pt;}
.y6d_c00336{bottom:525.693333pt;}
.y6b_c00336{bottom:541.106667pt;}
.y6a_c00336{bottom:543.026667pt;}
.y69_c00336{bottom:558.440000pt;}
.y68_c00336{bottom:560.360000pt;}
.y64_c00336{bottom:575.773333pt;}
.y66_c00336{bottom:577.106667pt;}
.y63_c00336{bottom:577.693333pt;}
.y65_c00336{bottom:577.893333pt;}
.y67_c00336{bottom:579.026667pt;}
.y62_c00336{bottom:596.360000pt;}
.y5f_c00336{bottom:610.640000pt;}
.y5e_c00336{bottom:611.773333pt;}
.y61_c00336{bottom:612.560000pt;}
.y60_c00336{bottom:612.733333pt;}
.y5d_c00336{bottom:613.693333pt;}
.y5b_c00336{bottom:629.106667pt;}
.y59_c00336{bottom:629.893333pt;}
.y5a_c00336{bottom:630.066667pt;}
.y5c_c00336{bottom:630.640000pt;}
.y58_c00336{bottom:631.026667pt;}
.y56_c00336{bottom:646.440000pt;}
.y57_c00336{bottom:647.226667pt;}
.y55_c00336{bottom:648.360000pt;}
.y54_c00336{bottom:665.306667pt;}
.y52_c00336{bottom:665.693333pt;}
.y53_c00336{bottom:666.640000pt;}
.y51_c00336{bottom:681.106667pt;}
.y4d_c00336{bottom:682.066667pt;}
.y4f_c00336{bottom:683.026667pt;}
.y50_c00336{bottom:683.226667pt;}
.y4e_c00336{bottom:683.973333pt;}
.y4c_c00336{bottom:698.440000pt;}
.y4a_c00336{bottom:700.360000pt;}
.y4b_c00336{bottom:701.306667pt;}
.y47_c00336{bottom:715.773333pt;}
.y48_c00336{bottom:717.693333pt;}
.y49_c00336{bottom:717.893333pt;}
.y46_c00336{bottom:732.360000pt;}
.y40_c00336{bottom:733.106667pt;}
.y45_c00336{bottom:733.693333pt;}
.y41_c00336{bottom:735.026667pt;}
.y43_c00336{bottom:735.226667pt;}
.y42_c00336{bottom:735.973333pt;}
.y44_c00336{bottom:736.360000pt;}
.y3d_c00336{bottom:749.693333pt;}
.y3f_c00336{bottom:751.400000pt;}
.y39_c00336{bottom:751.773333pt;}
.y3c_c00336{bottom:752.560000pt;}
.y3e_c00336{bottom:752.733333pt;}
.y3b_c00336{bottom:753.306667pt;}
.y3a_c00336{bottom:753.693333pt;}
.y37_c00336{bottom:769.106667pt;}
.y34_c00336{bottom:769.693333pt;}
.y38_c00336{bottom:769.893333pt;}
.y36_c00336{bottom:770.640000pt;}
.y35_c00336{bottom:771.026667pt;}
.y33_c00336{bottom:786.440000pt;}
.y30_c00336{bottom:787.226667pt;}
.y32_c00336{bottom:787.400000pt;}
.y31_c00336{bottom:787.973333pt;}
.y2f_c00336{bottom:788.360000pt;}
.y2b_c00336{bottom:801.693333pt;}
.y2d_c00336{bottom:802.440000pt;}
.y2a_c00336{bottom:803.773333pt;}
.y2e_c00336{bottom:804.560000pt;}
.y2c_c00336{bottom:805.306667pt;}
.y29_c00336{bottom:805.693333pt;}
.y24_c00336{bottom:821.106667pt;}
.y28_c00336{bottom:821.893333pt;}
.y27_c00336{bottom:822.640000pt;}
.y26_c00336{bottom:823.026667pt;}
.y25_c00336{bottom:823.973333pt;}
.y1f_c00336{bottom:838.440000pt;}
.y20_c00336{bottom:839.226667pt;}
.y22_c00336{bottom:839.973333pt;}
.y21_c00336{bottom:840.360000pt;}
.y23_c00336{bottom:841.306667pt;}
.y1d_c00336{bottom:855.026667pt;}
.y1c_c00336{bottom:855.773333pt;}
.y1e_c00336{bottom:857.306667pt;}
.y1b_c00336{bottom:857.693333pt;}
.y1a_c00336{bottom:872.360000pt;}
.y19_c00336{bottom:873.106667pt;}
.y17_c00336{bottom:875.026667pt;}
.y18_c00336{bottom:875.226667pt;}
.y14_c00336{bottom:890.440000pt;}
.y16_c00336{bottom:891.773333pt;}
.y12_c00336{bottom:892.360000pt;}
.y11_c00336{bottom:892.560000pt;}
.y13_c00336{bottom:893.306667pt;}
.y15_c00336{bottom:893.693333pt;}
.yd_c00336{bottom:907.773333pt;}
.y10_c00336{bottom:908.733333pt;}
.ye_c00336{bottom:909.693333pt;}
.yf_c00336{bottom:909.893333pt;}
.y9_c00336{bottom:925.106667pt;}
.ya_c00336{bottom:926.440000pt;}
.yb_c00336{bottom:927.026667pt;}
.y8_c00336{bottom:927.226667pt;}
.yc_c00336{bottom:927.973333pt;}
.y5_c00336{bottom:942.640000pt;}
.y7_c00336{bottom:943.026667pt;}
.y4_c00336{bottom:943.773333pt;}
.y6_c00336{bottom:945.306667pt;}
.y3_c00336{bottom:945.693333pt;}
.y2_c00336{bottom:977.693333pt;}
.y1_c00336{bottom:979.600000pt;}
.h5_c00336{height:20.466875pt;}
.h1_c00336{height:22.303646pt;}
.h4_c00336{height:27.879557pt;}
.h2_c00336{height:31.618698pt;}
.h6_c00336{height:35.357839pt;}
.h3_c00336{height:39.031380pt;}
.h7_c00336{height:42.770521pt;}
.h0_c00336{height:1186.666667pt;}
.w0_c00336{width:782.666667pt;}
.x0_c00336{left:0.000000pt;}
.x3_c00336{left:134.666667pt;}
.x8d_c00336{left:136.373333pt;}
.xe8_c00336{left:137.333333pt;}
.x93_c00336{left:149.333333pt;}
.x4_c00336{left:151.040000pt;}
.x78_c00336{left:153.706667pt;}
.x27_c00336{left:156.960000pt;}
.xb1_c00336{left:158.666667pt;}
.x71_c00336{left:161.333333pt;}
.xba_c00336{left:165.906667pt;}
.xcf_c00336{left:168.000000pt;}
.x6a_c00336{left:169.333333pt;}
.x12_c00336{left:171.626667pt;}
.xd4_c00336{left:173.333333pt;}
.xf2_c00336{left:174.293333pt;}
.x13_c00336{left:175.626667pt;}
.xf7_c00336{left:177.706667pt;}
.x5_c00336{left:178.666667pt;}
.x56_c00336{left:180.000000pt;}
.xff_c00336{left:182.666667pt;}
.xe1_c00336{left:183.626667pt;}
.x33_c00336{left:186.666667pt;}
.xac_c00336{left:187.626667pt;}
.x107_c00336{left:189.333333pt;}
.x1c_c00336{left:190.666667pt;}
.xb2_c00336{left:193.906667pt;}
.x82_c00336{left:196.373333pt;}
.xc1_c00336{left:198.666667pt;}
.x4b_c00336{left:199.626667pt;}
.x9b_c00336{left:202.666667pt;}
.x60_c00336{left:204.000000pt;}
.x3f_c00336{left:204.960000pt;}
.xd5_c00336{left:206.293333pt;}
.xee_c00336{left:208.000000pt;}
.xa6_c00336{left:209.333333pt;}
.x28_c00336{left:212.000000pt;}
.x10d_c00336{left:217.333333pt;}
.xdd_c00336{left:218.666667pt;}
.x6b_c00336{left:220.000000pt;}
.x57_c00336{left:221.333333pt;}
.x8e_c00336{left:222.293333pt;}
.xd0_c00336{left:225.333333pt;}
.x14_c00336{left:228.000000pt;}
.x34_c00336{left:231.040000pt;}
.x4c_c00336{left:232.960000pt;}
.x10e_c00336{left:234.666667pt;}
.x6c_c00336{left:235.626667pt;}
.x29_c00336{left:240.000000pt;}
.xd6_c00336{left:241.706667pt;}
.x72_c00336{left:244.000000pt;}
.xef_c00336{left:246.293333pt;}
.x6_c00336{left:248.373333pt;}
.x9c_c00336{left:249.333333pt;}
.x8f_c00336{left:250.666667pt;}
.x4d_c00336{left:252.373333pt;}
.x1d_c00336{left:253.333333pt;}
.x40_c00336{left:255.040000pt;}
.xeb_c00336{left:256.373333pt;}
.xb3_c00336{left:257.333333pt;}
.x35_c00336{left:258.666667pt;}
.xbb_c00336{left:260.000000pt;}
.xc9_c00336{left:262.293333pt;}
.x83_c00336{left:263.626667pt;}
.xc2_c00336{left:265.706667pt;}
.x79_c00336{left:266.666667pt;}
.x109_c00336{left:269.333333pt;}
.x1e_c00336{left:270.293333pt;}
.x7_c00336{left:271.240000pt;}
.x9d_c00336{left:274.666667pt;}
.xcd_c00336{left:275.626667pt;}
.xe6_c00336{left:277.333333pt;}
.xf9_c00336{left:279.626667pt;}
.x58_c00336{left:281.333333pt;}
.xf3_c00336{left:282.666667pt;}
.xa7_c00336{left:284.373333pt;}
.x94_c00336{left:285.333333pt;}
.x9e_c00336{left:287.040000pt;}
.x41_c00336{left:289.706667pt;}
.x84_c00336{left:290.666667pt;}
.x108_c00336{left:291.626667pt;}
.x7a_c00336{left:295.040000pt;}
.x59_c00336{left:296.000000pt;}
.x73_c00336{left:300.000000pt;}
.xda_c00336{left:300.960000pt;}
.xa8_c00336{left:304.000000pt;}
.x4e_c00336{left:305.333333pt;}
.xf0_c00336{left:306.666667pt;}
.x36_c00336{left:307.626667pt;}
.x61_c00336{left:310.293333pt;}
.x90_c00336{left:314.666667pt;}
.x42_c00336{left:316.000000pt;}
.x2a_c00336{left:317.333333pt;}
.x6d_c00336{left:320.000000pt;}
.x9f_c00336{left:323.040000pt;}
.x8_c00336{left:326.666667pt;}
.xa9_c00336{left:327.626667pt;}
.x15_c00336{left:328.960000pt;}
.x2b_c00336{left:330.666667pt;}
.x105_c00336{left:332.000000pt;}
.x1f_c00336{left:333.333333pt;}
.x95_c00336{left:335.040000pt;}
.xec_c00336{left:336.000000pt;}
.x91_c00336{left:337.333333pt;}
.x7b_c00336{left:338.293333pt;}
.xd7_c00336{left:340.000000pt;}
.xe2_c00336{left:342.466667pt;}
.xc3_c00336{left:344.373333pt;}
.xbc_c00336{left:345.706667pt;}
.xe9_c00336{left:348.000000pt;}
.xaa_c00336{left:350.666667pt;}
.x37_c00336{left:352.373333pt;}
.x43_c00336{left:356.000000pt;}
.x1_c00336{left:357.333333pt;}
.x2c_c00336{left:360.000000pt;}
.xa0_c00336{left:360.960000pt;}
.x85_c00336{left:362.666667pt;}
.x74_c00336{left:365.333333pt;}
.x20_c00336{left:367.040000pt;}
.xed_c00336{left:368.000000pt;}
.xc4_c00336{left:369.333333pt;}
.x86_c00336{left:373.333333pt;}
.x2d_c00336{left:374.293333pt;}
.xab_c00336{left:375.626667pt;}
.x7c_c00336{left:377.333333pt;}
.x4f_c00336{left:379.040000pt;}
.x9_c00336{left:380.000000pt;}
.x75_c00336{left:383.040000pt;}
.x100_c00336{left:384.000000pt;}
.xb4_c00336{left:385.333333pt;}
.xd8_c00336{left:386.293333pt;}
.xa1_c00336{left:388.000000pt;}
.x38_c00336{left:389.333333pt;}
.x10a_c00336{left:390.293333pt;}
.x21_c00336{left:392.000000pt;}
.x2e_c00336{left:393.333333pt;}
.x62_c00336{left:400.000000pt;}
.xa2_c00336{left:402.666667pt;}
.xbd_c00336{left:404.000000pt;}
.x16_c00336{left:405.333333pt;}
.xdb_c00336{left:408.000000pt;}
.x87_c00336{left:408.960000pt;}
.x102_c00336{left:410.666667pt;}
.x2f_c00336{left:412.373333pt;}
.x50_c00336{left:416.000000pt;}
.x5a_c00336{left:418.293333pt;}
.xc5_c00336{left:420.000000pt;}
.xf4_c00336{left:422.293333pt;}
.x103_c00336{left:423.626667pt;}
.x44_c00336{left:425.333333pt;}
.x96_c00336{left:427.626667pt;}
.x7d_c00336{left:429.333333pt;}
.x10b_c00336{left:430.666667pt;}
.xca_c00336{left:431.626667pt;}
.xad_c00336{left:433.333333pt;}
.x5b_c00336{left:435.040000pt;}
.x22_c00336{left:436.000000pt;}
.x88_c00336{left:437.333333pt;}
.xde_c00336{left:439.626667pt;}
.xd9_c00336{left:443.626667pt;}
.xa_c00336{left:444.960000pt;}
.x97_c00336{left:447.040000pt;}
.xcb_c00336{left:448.373333pt;}
.xdc_c00336{left:450.666667pt;}
.x63_c00336{left:453.333333pt;}
.x17_c00336{left:454.293333pt;}
.xf1_c00336{left:457.333333pt;}
.xd1_c00336{left:458.466667pt;}
.x45_c00336{left:459.626667pt;}
.xbe_c00336{left:461.333333pt;}
.xb_c00336{left:462.666667pt;}
.xae_c00336{left:464.373333pt;}
.xc6_c00336{left:465.333333pt;}
.x51_c00336{left:466.666667pt;}
.xb5_c00336{left:468.000000pt;}
.xe3_c00336{left:469.133333pt;}
.x18_c00336{left:471.626667pt;}
.xa3_c00336{left:472.573333pt;}
.x39_c00336{left:474.666667pt;}
.x92_c00336{left:476.373333pt;}
.xfa_c00336{left:477.706667pt;}
.x76_c00336{left:479.040000pt;}
.x23_c00336{left:480.000000pt;}
.xc_c00336{left:482.666667pt;}
.x3a_c00336{left:484.373333pt;}
.x6e_c00336{left:485.333333pt;}
.x106_c00336{left:487.240000pt;}
.x46_c00336{left:489.706667pt;}
.xb6_c00336{left:491.626667pt;}
.x7e_c00336{left:493.333333pt;}
.xf5_c00336{left:497.706667pt;}
.x64_c00336{left:498.666667pt;}
.xd_c00336{left:500.373333pt;}
.xdf_c00336{left:501.333333pt;}
.x5c_c00336{left:502.666667pt;}
.xbf_c00336{left:509.333333pt;}
.x77_c00336{left:510.293333pt;}
.x89_c00336{left:512.000000pt;}
.x98_c00336{left:513.333333pt;}
.x47_c00336{left:515.040000pt;}
.xe_c00336{left:518.666667pt;}
.x6f_c00336{left:520.000000pt;}
.x24_c00336{left:521.333333pt;}
.x3b_c00336{left:522.666667pt;}
.xb7_c00336{left:523.626667pt;}
.x30_c00336{left:525.333333pt;}
.x10c_c00336{left:526.666667pt;}
.xe4_c00336{left:528.000000pt;}
.x5d_c00336{left:528.960000pt;}
.xd2_c00336{left:530.666667pt;}
.xa4_c00336{left:532.000000pt;}
.x8a_c00336{left:533.706667pt;}
.x52_c00336{left:535.040000pt;}
.x65_c00336{left:536.000000pt;}
.xaf_c00336{left:537.333333pt;}
.x7f_c00336{left:539.040000pt;}
.x25_c00336{left:540.000000pt;}
.x70_c00336{left:544.000000pt;}
.xf8_c00336{left:544.960000pt;}
.xfb_c00336{left:547.040000pt;}
.x3c_c00336{left:548.000000pt;}
.xc7_c00336{left:549.333333pt;}
.x19_c00336{left:550.293333pt;}
.xa5_c00336{left:553.706667pt;}
.x66_c00336{left:556.373333pt;}
.x5e_c00336{left:557.333333pt;}
.xea_c00336{left:558.666667pt;}
.x8b_c00336{left:563.040000pt;}
.x31_c00336{left:565.333333pt;}
.xf_c00336{left:566.293333pt;}
.x104_c00336{left:568.000000pt;}
.x48_c00336{left:568.960000pt;}
.x53_c00336{left:571.626667pt;}
.x5f_c00336{left:573.333333pt;}
.xb0_c00336{left:575.626667pt;}
.x80_c00336{left:577.333333pt;}
.x67_c00336{left:578.666667pt;}
.xb8_c00336{left:580.000000pt;}
.x10_c00336{left:583.040000pt;}
.xfc_c00336{left:584.000000pt;}
.x8c_c00336{left:587.040000pt;}
.x49_c00336{left:588.373333pt;}
.x32_c00336{left:590.666667pt;}
.x26_c00336{left:592.373333pt;}
.xd3_c00336{left:594.666667pt;}
.xb9_c00336{left:596.000000pt;}
.x99_c00336{left:596.960000pt;}
.xc8_c00336{left:598.293333pt;}
.xfd_c00336{left:600.000000pt;}
.x54_c00336{left:601.333333pt;}
.xe5_c00336{left:603.626667pt;}
.x3d_c00336{left:605.333333pt;}
.xcc_c00336{left:608.000000pt;}
.x11_c00336{left:609.333333pt;}
.x1a_c00336{left:610.293333pt;}
.xce_c00336{left:611.626667pt;}
.x4a_c00336{left:613.333333pt;}
.x68_c00336{left:614.293333pt;}
.x3e_c00336{left:615.626667pt;}
.xfe_c00336{left:621.706667pt;}
.x81_c00336{left:622.666667pt;}
.x101_c00336{left:624.000000pt;}
.x2_c00336{left:626.293333pt;}
.x1b_c00336{left:628.000000pt;}
.x69_c00336{left:629.706667pt;}
.xe0_c00336{left:631.040000pt;}
.xc0_c00336{left:633.333333pt;}
.xe7_c00336{left:634.666667pt;}
.x9a_c00336{left:636.000000pt;}
.xf6_c00336{left:640.000000pt;}
.x55_c00336{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_88d418bf4bae301ccd4bc355.woff2')format("woff");}.ff1_c00337{font-family:ff1_c00337;line-height:1.688965;font-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_c00337{transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);}
.m2_c00337{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.md3_c00337{transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);}
.m7f_c00337{transform:matrix(0.355042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355042,0.000000,0.000000,0.250000,0,0);}
.m6b_c00337{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.mc9_c00337{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m4c_c00337{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m0_c00337{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m62_c00337{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.ma6_c00337{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mca_c00337{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m18_c00337{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.me_c00337{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.m3e_c00337{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m5_c00337{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.me8_c00337{transform:matrix(0.379985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379985,0.000000,0.000000,0.250000,0,0);}
.m9f_c00337{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m82_c00337{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.mde_c00337{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m6a_c00337{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m5d_c00337{transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);}
.m4_c00337{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m8a_c00337{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m2d_c00337{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mf4_c00337{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m60_c00337{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.mf0_c00337{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m24_c00337{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m89_c00337{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.ma0_c00337{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m7a_c00337{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_c00337{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m61_c00337{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m30_c00337{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m55_c00337{transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);}
.me9_c00337{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m21_c00337{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m14_c00337{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.mc_c00337{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m13_c00337{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m91_c00337{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m9e_c00337{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mc7_c00337{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.me6_c00337{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m78_c00337{transform:matrix(0.412863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412863,0.000000,0.000000,0.250000,0,0);}
.maf_c00337{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m9a_c00337{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m8c_c00337{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.mb8_c00337{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m7d_c00337{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m72_c00337{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m64_c00337{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mf8_c00337{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.mdc_c00337{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.mc2_c00337{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m77_c00337{transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);}
.m1e_c00337{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m54_c00337{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m51_c00337{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mcd_c00337{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m99_c00337{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.mf7_c00337{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m9_c00337{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.ma8_c00337{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mbb_c00337{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m74_c00337{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m32_c00337{transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);}
.mef_c00337{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.mc1_c00337{transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);}
.mc3_c00337{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m87_c00337{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mf1_c00337{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.mc6_c00337{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.mfa_c00337{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m46_c00337{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mf3_c00337{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.ma5_c00337{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.mcc_c00337{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.mcf_c00337{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.mb7_c00337{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.mee_c00337{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m23_c00337{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.me4_c00337{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.me2_c00337{transform:matrix(0.457563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457563,0.000000,0.000000,0.250000,0,0);}
.mb1_c00337{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m83_c00337{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m93_c00337{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m48_c00337{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.m9d_c00337{transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);}
.m92_c00337{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.mb4_c00337{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.m4b_c00337{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.mbe_c00337{transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);}
.maa_c00337{transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);}
.m11_c00337{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.mf9_c00337{transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);}
.m5c_c00337{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mae_c00337{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.m69_c00337{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m35_c00337{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m2f_c00337{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m7b_c00337{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.mb3_c00337{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.md1_c00337{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.mb0_c00337{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m41_c00337{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.mba_c00337{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m2c_c00337{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mda_c00337{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m4f_c00337{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m2a_c00337{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mbf_c00337{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m79_c00337{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.md9_c00337{transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);}
.m49_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);}
.mad_c00337{transform:matrix(0.502319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502319,0.000000,0.000000,0.250000,0,0);}
.mc8_c00337{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m8f_c00337{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m53_c00337{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.mbc_c00337{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m25_c00337{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mab_c00337{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m96_c00337{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m7_c00337{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m75_c00337{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m63_c00337{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m67_c00337{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m3f_c00337{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m71_c00337{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.ma7_c00337{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m8d_c00337{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.me3_c00337{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mbd_c00337{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.m7e_c00337{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.md8_c00337{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m26_c00337{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.mdf_c00337{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m65_c00337{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.md_c00337{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m80_c00337{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.me1_c00337{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.mfb_c00337{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m47_c00337{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m6_c00337{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m9b_c00337{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m6f_c00337{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m70_c00337{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m3_c00337{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.md7_c00337{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mdd_c00337{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m39_c00337{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.ma2_c00337{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m95_c00337{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m22_c00337{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m7c_c00337{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m6c_c00337{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m45_c00337{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m8b_c00337{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m86_c00337{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m73_c00337{transform:matrix(0.546474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546474,0.000000,0.000000,0.250000,0,0);}
.m3c_c00337{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m90_c00337{transform:matrix(0.548237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548237,0.000000,0.000000,0.250000,0,0);}
.mcb_c00337{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.me5_c00337{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m42_c00337{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.me7_c00337{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m68_c00337{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m88_c00337{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m1a_c00337{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m57_c00337{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m52_c00337{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.md4_c00337{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m3d_c00337{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m17_c00337{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mf2_c00337{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.ma9_c00337{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m6e_c00337{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m3b_c00337{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m5f_c00337{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.md0_c00337{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.mf_c00337{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m1d_c00337{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m5a_c00337{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.mb5_c00337{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.mb9_c00337{transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);}
.m6d_c00337{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m94_c00337{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m3a_c00337{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m29_c00337{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mc5_c00337{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m15_c00337{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m59_c00337{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m12_c00337{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m4a_c00337{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m5e_c00337{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.mdb_c00337{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m85_c00337{transform:matrix(0.583206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583206,0.000000,0.000000,0.250000,0,0);}
.m2e_c00337{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m31_c00337{transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);}
.m9c_c00337{transform:matrix(0.584025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584025,0.000000,0.000000,0.250000,0,0);}
.m98_c00337{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.med_c00337{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.ma1_c00337{transform:matrix(0.591805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591805,0.000000,0.000000,0.250000,0,0);}
.m19_c00337{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m76_c00337{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m66_c00337{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m81_c00337{transform:matrix(0.608921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608921,0.000000,0.000000,0.250000,0,0);}
.m20_c00337{transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);}
.m1_c00337{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m8e_c00337{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m1b_c00337{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.md5_c00337{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_c00337{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.ma3_c00337{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.ma_c00337{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.m84_c00337{transform:matrix(0.616564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616564,0.000000,0.000000,0.250000,0,0);}
.mb_c00337{transform:matrix(0.619295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619295,0.000000,0.000000,0.250000,0,0);}
.m36_c00337{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mac_c00337{transform:matrix(0.626556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.626556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.626556,0.000000,0.000000,0.250000,0,0);}
.m1c_c00337{transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);}
.mb6_c00337{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.mf5_c00337{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.me0_c00337{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.mb2_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);}
.m28_c00337{transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);}
.m37_c00337{transform:matrix(0.656120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656120,0.000000,0.000000,0.250000,0,0);}
.m2b_c00337{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m50_c00337{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m40_c00337{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m27_c00337{transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);}
.m43_c00337{transform:matrix(0.685096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685096,0.000000,0.000000,0.250000,0,0);}
.m56_c00337{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mf6_c00337{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m34_c00337{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.mc0_c00337{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m4d_c00337{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.meb_c00337{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.md2_c00337{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m1f_c00337{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m44_c00337{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.mea_c00337{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m38_c00337{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.ma4_c00337{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m58_c00337{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m33_c00337{transform:matrix(0.781765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.781765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.781765,0.000000,0.000000,0.250000,0,0);}
.mec_c00337{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.md6_c00337{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m4e_c00337{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mce_c00337{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m97_c00337{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m5b_c00337{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.mc4_c00337{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-7.665879px;}
.ws1_c00337{word-spacing:0.000000px;}
.fc0_c00337{color:transparent;}
.fs7_c00337{font-size:3.420000px;}
.fs5_c00337{font-size:18.720000px;}
.fs1_c00337{font-size:20.400000px;}
.fs3_c00337{font-size:25.500000px;}
.fs2_c00337{font-size:28.920000px;}
.fs6_c00337{font-size:32.340000px;}
.fs0_c00337{font-size:35.700000px;}
.fs4_c00337{font-size:39.120000px;}
.y0_c00337{bottom:0.000000px;}
.yca_c00337{bottom:248.745000px;}
.ycb_c00337{bottom:249.825000px;}
.yc9_c00337{bottom:250.245000px;}
.yc7_c00337{bottom:250.905000px;}
.ycc_c00337{bottom:251.970000px;}
.yc8_c00337{bottom:252.405000px;}
.yc2_c00337{bottom:268.245000px;}
.yc5_c00337{bottom:269.745000px;}
.yc3_c00337{bottom:270.630000px;}
.yc4_c00337{bottom:271.470000px;}
.yc1_c00337{bottom:271.905000px;}
.yc6_c00337{bottom:272.130000px;}
.ybb_c00337{bottom:289.245000px;}
.ybd_c00337{bottom:290.745000px;}
.ybc_c00337{bottom:291.405000px;}
.ybf_c00337{bottom:291.630000px;}
.ybe_c00337{bottom:292.470000px;}
.yc0_c00337{bottom:292.905000px;}
.yb5_c00337{bottom:308.745000px;}
.yb7_c00337{bottom:309.825000px;}
.yb8_c00337{bottom:310.245000px;}
.yb6_c00337{bottom:310.905000px;}
.yba_c00337{bottom:311.325000px;}
.yb9_c00337{bottom:312.405000px;}
.yb1_c00337{bottom:328.245000px;}
.yb2_c00337{bottom:329.745000px;}
.yb0_c00337{bottom:330.405000px;}
.yb4_c00337{bottom:330.630000px;}
.yb3_c00337{bottom:331.905000px;}
.yad_c00337{bottom:346.905000px;}
.yaf_c00337{bottom:348.180000px;}
.yaa_c00337{bottom:349.245000px;}
.yae_c00337{bottom:350.130000px;}
.yac_c00337{bottom:350.325000px;}
.yab_c00337{bottom:351.405000px;}
.ya3_c00337{bottom:366.405000px;}
.ya9_c00337{bottom:367.905000px;}
.ya5_c00337{bottom:368.745000px;}
.ya8_c00337{bottom:368.970000px;}
.ya4_c00337{bottom:370.470000px;}
.ya7_c00337{bottom:370.905000px;}
.ya6_c00337{bottom:372.405000px;}
.ya1_c00337{bottom:387.405000px;}
.ya2_c00337{bottom:388.245000px;}
.ya0_c00337{bottom:389.325000px;}
.y9c_c00337{bottom:389.550000px;}
.y9d_c00337{bottom:390.405000px;}
.y9e_c00337{bottom:390.630000px;}
.y9b_c00337{bottom:391.470000px;}
.y9f_c00337{bottom:391.905000px;}
.y97_c00337{bottom:407.745000px;}
.y99_c00337{bottom:408.180000px;}
.y98_c00337{bottom:409.245000px;}
.y9a_c00337{bottom:409.905000px;}
.y95_c00337{bottom:410.130000px;}
.y93_c00337{bottom:410.325000px;}
.y96_c00337{bottom:410.970000px;}
.y94_c00337{bottom:411.405000px;}
.y8e_c00337{bottom:428.325000px;}
.y8f_c00337{bottom:428.745000px;}
.y90_c00337{bottom:429.405000px;}
.y91_c00337{bottom:429.630000px;}
.y92_c00337{bottom:430.470000px;}
.y8d_c00337{bottom:430.905000px;}
.y8b_c00337{bottom:447.180000px;}
.y88_c00337{bottom:448.245000px;}
.y8c_c00337{bottom:449.130000px;}
.y8a_c00337{bottom:450.405000px;}
.y89_c00337{bottom:451.920000px;}
.y86_c00337{bottom:474.405000px;}
.y87_c00337{bottom:474.630000px;}
.y84_c00337{bottom:475.470000px;}
.y85_c00337{bottom:476.550000px;}
.y80_c00337{bottom:491.970000px;}
.y83_c00337{bottom:492.825000px;}
.y82_c00337{bottom:493.050000px;}
.y7e_c00337{bottom:493.905000px;}
.y7f_c00337{bottom:494.970000px;}
.y81_c00337{bottom:496.050000px;}
.y7b_c00337{bottom:516.825000px;}
.y7c_c00337{bottom:517.245000px;}
.y7d_c00337{bottom:519.405000px;}
.y7a_c00337{bottom:549.405000px;}
.y79_c00337{bottom:585.405000px;}
.y77_c00337{bottom:587.130000px;}
.y76_c00337{bottom:587.325000px;}
.y78_c00337{bottom:588.405000px;}
.y74_c00337{bottom:605.745000px;}
.y75_c00337{bottom:606.630000px;}
.y73_c00337{bottom:607.905000px;}
.y72_c00337{bottom:624.405000px;}
.y6f_c00337{bottom:625.245000px;}
.y70_c00337{bottom:626.130000px;}
.y71_c00337{bottom:627.405000px;}
.y6e_c00337{bottom:644.745000px;}
.y6d_c00337{bottom:645.630000px;}
.y6c_c00337{bottom:646.905000px;}
.y69_c00337{bottom:664.245000px;}
.y6a_c00337{bottom:665.325000px;}
.y6b_c00337{bottom:665.745000px;}
.y68_c00337{bottom:666.405000px;}
.y64_c00337{bottom:683.745000px;}
.y67_c00337{bottom:684.405000px;}
.y66_c00337{bottom:685.245000px;}
.y62_c00337{bottom:685.905000px;}
.y63_c00337{bottom:686.130000px;}
.y65_c00337{bottom:687.405000px;}
.y5d_c00337{bottom:702.405000px;}
.y5f_c00337{bottom:703.245000px;}
.y61_c00337{bottom:704.745000px;}
.y5c_c00337{bottom:705.405000px;}
.y5e_c00337{bottom:705.630000px;}
.y60_c00337{bottom:706.905000px;}
.y5a_c00337{bottom:724.245000px;}
.y5b_c00337{bottom:725.325000px;}
.y59_c00337{bottom:726.405000px;}
.y57_c00337{bottom:743.745000px;}
.y58_c00337{bottom:745.470000px;}
.y56_c00337{bottom:745.905000px;}
.y55_c00337{bottom:763.245000px;}
.y54_c00337{bottom:765.405000px;}
.y50_c00337{bottom:782.745000px;}
.y52_c00337{bottom:783.180000px;}
.y51_c00337{bottom:783.825000px;}
.y4f_c00337{bottom:784.905000px;}
.y53_c00337{bottom:786.405000px;}
.y4b_c00337{bottom:802.245000px;}
.y4d_c00337{bottom:803.325000px;}
.y4e_c00337{bottom:803.745000px;}
.y4a_c00337{bottom:804.405000px;}
.y4c_c00337{bottom:805.470000px;}
.y46_c00337{bottom:820.905000px;}
.y47_c00337{bottom:821.745000px;}
.y49_c00337{bottom:822.180000px;}
.y48_c00337{bottom:822.825000px;}
.y45_c00337{bottom:825.405000px;}
.y42_c00337{bottom:841.245000px;}
.y40_c00337{bottom:842.745000px;}
.y44_c00337{bottom:843.630000px;}
.y43_c00337{bottom:844.905000px;}
.y41_c00337{bottom:845.970000px;}
.y3b_c00337{bottom:860.745000px;}
.y3c_c00337{bottom:862.245000px;}
.y3d_c00337{bottom:863.130000px;}
.y3f_c00337{bottom:863.325000px;}
.y3e_c00337{bottom:864.405000px;}
.y34_c00337{bottom:880.470000px;}
.y39_c00337{bottom:880.905000px;}
.y37_c00337{bottom:881.745000px;}
.y38_c00337{bottom:882.630000px;}
.y3a_c00337{bottom:883.470000px;}
.y36_c00337{bottom:883.905000px;}
.y35_c00337{bottom:884.970000px;}
.y31_c00337{bottom:901.245000px;}
.y30_c00337{bottom:902.130000px;}
.y32_c00337{bottom:902.745000px;}
.y2f_c00337{bottom:903.405000px;}
.y33_c00337{bottom:903.630000px;}
.y2e_c00337{bottom:920.745000px;}
.y2b_c00337{bottom:922.245000px;}
.y2a_c00337{bottom:922.470000px;}
.y29_c00337{bottom:922.905000px;}
.y2d_c00337{bottom:923.325000px;}
.y28_c00337{bottom:923.970000px;}
.y2c_c00337{bottom:924.405000px;}
.y25_c00337{bottom:940.470000px;}
.y22_c00337{bottom:940.680000px;}
.y24_c00337{bottom:941.745000px;}
.y27_c00337{bottom:942.630000px;}
.y26_c00337{bottom:943.470000px;}
.y23_c00337{bottom:943.905000px;}
.y1c_c00337{bottom:959.745000px;}
.y21_c00337{bottom:959.970000px;}
.y20_c00337{bottom:962.130000px;}
.y1e_c00337{bottom:962.325000px;}
.y1d_c00337{bottom:962.970000px;}
.y1f_c00337{bottom:963.405000px;}
.y1a_c00337{bottom:978.405000px;}
.y19_c00337{bottom:979.470000px;}
.y1b_c00337{bottom:980.745000px;}
.y18_c00337{bottom:981.630000px;}
.y17_c00337{bottom:982.470000px;}
.y16_c00337{bottom:982.905000px;}
.y12_c00337{bottom:1000.245000px;}
.y11_c00337{bottom:1000.905000px;}
.y13_c00337{bottom:1001.130000px;}
.y15_c00337{bottom:1001.325000px;}
.y14_c00337{bottom:1002.405000px;}
.yf_c00337{bottom:1018.470000px;}
.yb_c00337{bottom:1018.680000px;}
.yd_c00337{bottom:1019.745000px;}
.y10_c00337{bottom:1020.630000px;}
.yc_c00337{bottom:1021.905000px;}
.ye_c00337{bottom:1022.970000px;}
.ya_c00337{bottom:1037.970000px;}
.y8_c00337{bottom:1039.245000px;}
.y9_c00337{bottom:1041.405000px;}
.y5_c00337{bottom:1057.905000px;}
.y3_c00337{bottom:1058.745000px;}
.y7_c00337{bottom:1060.470000px;}
.y4_c00337{bottom:1060.905000px;}
.y6_c00337{bottom:1061.970000px;}
.y1_c00337{bottom:1097.745000px;}
.y2_c00337{bottom:1099.050000px;}
.h8_c00337{height:4.206533px;}
.h6_c00337{height:23.025234px;}
.h2_c00337{height:25.091602px;}
.h4_c00337{height:31.364502px;}
.h3_c00337{height:35.571035px;}
.h7_c00337{height:39.777568px;}
.h1_c00337{height:43.910303px;}
.h5_c00337{height:48.116836px;}
.h0_c00337{height:1335.000000px;}
.w0_c00337{width:880.500000px;}
.x0_c00337{left:0.000000px;}
.xc5_c00337{left:148.500000px;}
.xcc_c00337{left:150.420000px;}
.x95_c00337{left:151.500000px;}
.x20_c00337{left:152.580000px;}
.x1_c00337{left:154.500000px;}
.xbf_c00337{left:163.080000px;}
.x4b_c00337{left:165.000000px;}
.x90_c00337{left:168.000000px;}
.x43_c00337{left:169.500000px;}
.x3_c00337{left:170.580000px;}
.xf4_c00337{left:174.000000px;}
.xd2_c00337{left:177.000000px;}
.xa6_c00337{left:181.500000px;}
.xe2_c00337{left:183.420000px;}
.xd9_c00337{left:185.580000px;}
.x56_c00337{left:187.500000px;}
.x44_c00337{left:190.080000px;}
.xeb_c00337{left:193.080000px;}
.x4_c00337{left:196.080000px;}
.x21_c00337{left:198.000000px;}
.x57_c00337{left:199.500000px;}
.x7e_c00337{left:200.580000px;}
.xd3_c00337{left:204.420000px;}
.x86_c00337{left:205.500000px;}
.x69_c00337{left:207.000000px;}
.x62_c00337{left:208.500000px;}
.xec_c00337{left:209.580000px;}
.x29_c00337{left:211.080000px;}
.xa7_c00337{left:214.500000px;}
.x96_c00337{left:216.000000px;}
.xcd_c00337{left:217.500000px;}
.xf_c00337{left:220.080000px;}
.x73_c00337{left:222.000000px;}
.x33_c00337{left:223.500000px;}
.xf5_c00337{left:229.920000px;}
.x45_c00337{left:231.000000px;}
.x6a_c00337{left:235.500000px;}
.x10_c00337{left:237.420000px;}
.xe8_c00337{left:238.500000px;}
.x34_c00337{left:239.580000px;}
.x58_c00337{left:243.420000px;}
.x9b_c00337{left:247.500000px;}
.xaf_c00337{left:248.580000px;}
.x17_c00337{left:251.580000px;}
.x5_c00337{left:253.080000px;}
.x3c_c00337{left:256.080000px;}
.x4c_c00337{left:258.000000px;}
.x63_c00337{left:259.500000px;}
.x9e_c00337{left:262.500000px;}
.x35_c00337{left:264.000000px;}
.x7f_c00337{left:265.920000px;}
.x87_c00337{left:267.000000px;}
.x59_c00337{left:268.920000px;}
.xb5_c00337{left:272.580000px;}
.x64_c00337{left:277.500000px;}
.x2a_c00337{left:278.580000px;}
.xee_c00337{left:280.920000px;}
.xce_c00337{left:283.920000px;}
.xb9_c00337{left:285.000000px;}
.xa8_c00337{left:286.920000px;}
.x9c_c00337{left:288.000000px;}
.x11_c00337{left:289.500000px;}
.x6b_c00337{left:291.000000px;}
.xda_c00337{left:298.080000px;}
.x18_c00337{left:299.775000px;}
.x6_c00337{left:302.775000px;}
.x91_c00337{left:306.000000px;}
.xb0_c00337{left:307.920000px;}
.xef_c00337{left:309.000000px;}
.x74_c00337{left:311.580000px;}
.x88_c00337{left:313.920000px;}
.xdb_c00337{left:316.500000px;}
.x22_c00337{left:319.500000px;}
.x2b_c00337{left:320.580000px;}
.x12_c00337{left:322.920000px;}
.xc0_c00337{left:324.000000px;}
.x65_c00337{left:325.500000px;}
.xf6_c00337{left:329.580000px;}
.x3d_c00337{left:331.500000px;}
.xba_c00337{left:332.580000px;}
.x89_c00337{left:334.500000px;}
.x7_c00337{left:337.500000px;}
.x36_c00337{left:338.580000px;}
.x80_c00337{left:340.500000px;}
.x23_c00337{left:342.000000px;}
.x6c_c00337{left:343.920000px;}
.xb3_c00337{left:346.080000px;}
.x4d_c00337{left:348.420000px;}
.x19_c00337{left:349.500000px;}
.x3e_c00337{left:351.000000px;}
.x37_c00337{left:354.000000px;}
.xc6_c00337{left:356.580000px;}
.x2c_c00337{left:360.420000px;}
.x75_c00337{left:361.920000px;}
.x13_c00337{left:364.080000px;}
.xd4_c00337{left:366.420000px;}
.xc2_c00337{left:367.500000px;}
.x38_c00337{left:369.000000px;}
.x8_c00337{left:370.920000px;}
.x4e_c00337{left:373.080000px;}
.xdc_c00337{left:375.000000px;}
.xc7_c00337{left:376.920000px;}
.xcf_c00337{left:378.000000px;}
.x14_c00337{left:381.000000px;}
.x1a_c00337{left:382.920000px;}
.xe9_c00337{left:384.000000px;}
.xf0_c00337{left:385.500000px;}
.x3f_c00337{left:388.500000px;}
.x2d_c00337{left:389.580000px;}
.x46_c00337{left:391.920000px;}
.xab_c00337{left:394.920000px;}
.xd5_c00337{left:396.000000px;}
.x76_c00337{left:397.500000px;}
.x39_c00337{left:399.420000px;}
.x97_c00337{left:400.920000px;}
.xc8_c00337{left:402.000000px;}
.x6d_c00337{left:403.080000px;}
.x2_c00337{left:405.000000px;}
.xf1_c00337{left:406.080000px;}
.xbb_c00337{left:408.420000px;}
.x9_c00337{left:409.500000px;}
.xa9_c00337{left:416.580000px;}
.xb1_c00337{left:418.080000px;}
.x1b_c00337{left:420.420000px;}
.x8a_c00337{left:423.000000px;}
.x24_c00337{left:424.500000px;}
.xd0_c00337{left:427.920000px;}
.xb4_c00337{left:431.145000px;}
.xb6_c00337{left:433.500000px;}
.x40_c00337{left:435.000000px;}
.xa_c00337{left:436.920000px;}
.xa4_c00337{left:438.000000px;}
.xe3_c00337{left:439.080000px;}
.x9f_c00337{left:442.500000px;}
.xdd_c00337{left:444.000000px;}
.x3a_c00337{left:445.920000px;}
.x5a_c00337{left:447.000000px;}
.xf2_c00337{left:448.500000px;}
.x47_c00337{left:451.080000px;}
.x81_c00337{left:452.145000px;}
.x1c_c00337{left:454.500000px;}
.x98_c00337{left:456.000000px;}
.x8b_c00337{left:459.420000px;}
.x77_c00337{left:460.500000px;}
.xac_c00337{left:465.420000px;}
.x5b_c00337{left:466.920000px;}
.xe4_c00337{left:468.000000px;}
.x48_c00337{left:469.080000px;}
.xde_c00337{left:470.580000px;}
.x15_c00337{left:472.080000px;}
.x3b_c00337{left:475.500000px;}
.x78_c00337{left:477.420000px;}
.xf7_c00337{left:478.500000px;}
.xc1_c00337{left:480.420000px;}
.xc3_c00337{left:481.920000px;}
.x41_c00337{left:484.500000px;}
.xea_c00337{left:488.580000px;}
.x6e_c00337{left:490.500000px;}
.x1d_c00337{left:493.500000px;}
.x2e_c00337{left:495.420000px;}
.x5c_c00337{left:496.500000px;}
.xa0_c00337{left:499.080000px;}
.xb_c00337{left:502.080000px;}
.xdf_c00337{left:505.920000px;}
.x82_c00337{left:507.000000px;}
.xbc_c00337{left:509.580000px;}
.x42_c00337{left:511.920000px;}
.x4f_c00337{left:515.580000px;}
.x25_c00337{left:517.500000px;}
.x9d_c00337{left:518.580000px;}
.x16_c00337{left:523.080000px;}
.xb7_c00337{left:524.580000px;}
.xad_c00337{left:530.580000px;}
.xd6_c00337{left:532.080000px;}
.xaa_c00337{left:534.000000px;}
.xc9_c00337{left:535.500000px;}
.x79_c00337{left:538.500000px;}
.x26_c00337{left:539.580000px;}
.xe5_c00337{left:541.500000px;}
.xbd_c00337{left:549.000000px;}
.x66_c00337{left:550.080000px;}
.x99_c00337{left:551.580000px;}
.xb2_c00337{left:555.000000px;}
.x5d_c00337{left:556.080000px;}
.xf3_c00337{left:558.420000px;}
.xa1_c00337{left:560.580000px;}
.x6f_c00337{left:562.080000px;}
.x83_c00337{left:563.580000px;}
.xd1_c00337{left:565.080000px;}
.xc_c00337{left:568.500000px;}
.x2f_c00337{left:570.000000px;}
.xb8_c00337{left:571.275000px;}
.x50_c00337{left:572.580000px;}
.x7a_c00337{left:574.080000px;}
.x67_c00337{left:580.920000px;}
.x1e_c00337{left:585.000000px;}
.x27_c00337{left:586.500000px;}
.x5e_c00337{left:588.420000px;}
.x30_c00337{left:589.500000px;}
.xa2_c00337{left:590.580000px;}
.x49_c00337{left:592.500000px;}
.xe0_c00337{left:594.420000px;}
.x51_c00337{left:595.500000px;}
.x8c_c00337{left:601.500000px;}
.xe6_c00337{left:606.420000px;}
.x52_c00337{left:609.000000px;}
.xca_c00337{left:618.420000px;}
.xae_c00337{left:619.500000px;}
.xd_c00337{left:621.420000px;}
.x92_c00337{left:622.500000px;}
.x8d_c00337{left:625.500000px;}
.xa5_c00337{left:627.000000px;}
.x53_c00337{left:630.000000px;}
.x7b_c00337{left:631.080000px;}
.x5f_c00337{left:633.000000px;}
.xbe_c00337{left:634.080000px;}
.x84_c00337{left:636.645000px;}
.x70_c00337{left:639.000000px;}
.x68_c00337{left:640.500000px;}
.x8e_c00337{left:641.580000px;}
.x28_c00337{left:645.000000px;}
.x7c_c00337{left:649.080000px;}
.xcb_c00337{left:654.000000px;}
.xd7_c00337{left:657.000000px;}
.x54_c00337{left:660.000000px;}
.x31_c00337{left:661.500000px;}
.x9a_c00337{left:670.500000px;}
.x71_c00337{left:672.000000px;}
.xc4_c00337{left:673.500000px;}
.xd8_c00337{left:675.000000px;}
.x93_c00337{left:681.000000px;}
.x32_c00337{left:686.580000px;}
.x60_c00337{left:688.500000px;}
.xe_c00337{left:690.000000px;}
.x85_c00337{left:691.080000px;}
.x7d_c00337{left:692.580000px;}
.x4a_c00337{left:695.775000px;}
.x55_c00337{left:699.420000px;}
.x94_c00337{left:700.500000px;}
.xed_c00337{left:702.420000px;}
.xa3_c00337{left:704.580000px;}
.x72_c00337{left:706.500000px;}
.x61_c00337{left:708.420000px;}
.xe7_c00337{left:712.500000px;}
.x8f_c00337{left:714.420000px;}
.x1f_c00337{left:715.500000px;}
.xe1_c00337{left:716.580000px;}
@media print{
.v0_c00337{vertical-align:0.000000pt;}
.ls0_c00337{letter-spacing:0.000000pt;}
.ws0_c00337{word-spacing:-6.814115pt;}
.ws1_c00337{word-spacing:0.000000pt;}
.fs7_c00337{font-size:3.040000pt;}
.fs5_c00337{font-size:16.640000pt;}
.fs1_c00337{font-size:18.133333pt;}
.fs3_c00337{font-size:22.666667pt;}
.fs2_c00337{font-size:25.706667pt;}
.fs6_c00337{font-size:28.746667pt;}
.fs0_c00337{font-size:31.733333pt;}
.fs4_c00337{font-size:34.773333pt;}
.y0_c00337{bottom:0.000000pt;}
.yca_c00337{bottom:221.106667pt;}
.ycb_c00337{bottom:222.066667pt;}
.yc9_c00337{bottom:222.440000pt;}
.yc7_c00337{bottom:223.026667pt;}
.ycc_c00337{bottom:223.973333pt;}
.yc8_c00337{bottom:224.360000pt;}
.yc2_c00337{bottom:238.440000pt;}
.yc5_c00337{bottom:239.773333pt;}
.yc3_c00337{bottom:240.560000pt;}
.yc4_c00337{bottom:241.306667pt;}
.yc1_c00337{bottom:241.693333pt;}
.yc6_c00337{bottom:241.893333pt;}
.ybb_c00337{bottom:257.106667pt;}
.ybd_c00337{bottom:258.440000pt;}
.ybc_c00337{bottom:259.026667pt;}
.ybf_c00337{bottom:259.226667pt;}
.ybe_c00337{bottom:259.973333pt;}
.yc0_c00337{bottom:260.360000pt;}
.yb5_c00337{bottom:274.440000pt;}
.yb7_c00337{bottom:275.400000pt;}
.yb8_c00337{bottom:275.773333pt;}
.yb6_c00337{bottom:276.360000pt;}
.yba_c00337{bottom:276.733333pt;}
.yb9_c00337{bottom:277.693333pt;}
.yb1_c00337{bottom:291.773333pt;}
.yb2_c00337{bottom:293.106667pt;}
.yb0_c00337{bottom:293.693333pt;}
.yb4_c00337{bottom:293.893333pt;}
.yb3_c00337{bottom:295.026667pt;}
.yad_c00337{bottom:308.360000pt;}
.yaf_c00337{bottom:309.493333pt;}
.yaa_c00337{bottom:310.440000pt;}
.yae_c00337{bottom:311.226667pt;}
.yac_c00337{bottom:311.400000pt;}
.yab_c00337{bottom:312.360000pt;}
.ya3_c00337{bottom:325.693333pt;}
.ya9_c00337{bottom:327.026667pt;}
.ya5_c00337{bottom:327.773333pt;}
.ya8_c00337{bottom:327.973333pt;}
.ya4_c00337{bottom:329.306667pt;}
.ya7_c00337{bottom:329.693333pt;}
.ya6_c00337{bottom:331.026667pt;}
.ya1_c00337{bottom:344.360000pt;}
.ya2_c00337{bottom:345.106667pt;}
.ya0_c00337{bottom:346.066667pt;}
.y9c_c00337{bottom:346.266667pt;}
.y9d_c00337{bottom:347.026667pt;}
.y9e_c00337{bottom:347.226667pt;}
.y9b_c00337{bottom:347.973333pt;}
.y9f_c00337{bottom:348.360000pt;}
.y97_c00337{bottom:362.440000pt;}
.y99_c00337{bottom:362.826667pt;}
.y98_c00337{bottom:363.773333pt;}
.y9a_c00337{bottom:364.360000pt;}
.y95_c00337{bottom:364.560000pt;}
.y93_c00337{bottom:364.733333pt;}
.y96_c00337{bottom:365.306667pt;}
.y94_c00337{bottom:365.693333pt;}
.y8e_c00337{bottom:380.733333pt;}
.y8f_c00337{bottom:381.106667pt;}
.y90_c00337{bottom:381.693333pt;}
.y91_c00337{bottom:381.893333pt;}
.y92_c00337{bottom:382.640000pt;}
.y8d_c00337{bottom:383.026667pt;}
.y8b_c00337{bottom:397.493333pt;}
.y88_c00337{bottom:398.440000pt;}
.y8c_c00337{bottom:399.226667pt;}
.y8a_c00337{bottom:400.360000pt;}
.y89_c00337{bottom:401.706667pt;}
.y86_c00337{bottom:421.693333pt;}
.y87_c00337{bottom:421.893333pt;}
.y84_c00337{bottom:422.640000pt;}
.y85_c00337{bottom:423.600000pt;}
.y80_c00337{bottom:437.306667pt;}
.y83_c00337{bottom:438.066667pt;}
.y82_c00337{bottom:438.266667pt;}
.y7e_c00337{bottom:439.026667pt;}
.y7f_c00337{bottom:439.973333pt;}
.y81_c00337{bottom:440.933333pt;}
.y7b_c00337{bottom:459.400000pt;}
.y7c_c00337{bottom:459.773333pt;}
.y7d_c00337{bottom:461.693333pt;}
.y7a_c00337{bottom:488.360000pt;}
.y79_c00337{bottom:520.360000pt;}
.y77_c00337{bottom:521.893333pt;}
.y76_c00337{bottom:522.066667pt;}
.y78_c00337{bottom:523.026667pt;}
.y74_c00337{bottom:538.440000pt;}
.y75_c00337{bottom:539.226667pt;}
.y73_c00337{bottom:540.360000pt;}
.y72_c00337{bottom:555.026667pt;}
.y6f_c00337{bottom:555.773333pt;}
.y70_c00337{bottom:556.560000pt;}
.y71_c00337{bottom:557.693333pt;}
.y6e_c00337{bottom:573.106667pt;}
.y6d_c00337{bottom:573.893333pt;}
.y6c_c00337{bottom:575.026667pt;}
.y69_c00337{bottom:590.440000pt;}
.y6a_c00337{bottom:591.400000pt;}
.y6b_c00337{bottom:591.773333pt;}
.y68_c00337{bottom:592.360000pt;}
.y64_c00337{bottom:607.773333pt;}
.y67_c00337{bottom:608.360000pt;}
.y66_c00337{bottom:609.106667pt;}
.y62_c00337{bottom:609.693333pt;}
.y63_c00337{bottom:609.893333pt;}
.y65_c00337{bottom:611.026667pt;}
.y5d_c00337{bottom:624.360000pt;}
.y5f_c00337{bottom:625.106667pt;}
.y61_c00337{bottom:626.440000pt;}
.y5c_c00337{bottom:627.026667pt;}
.y5e_c00337{bottom:627.226667pt;}
.y60_c00337{bottom:628.360000pt;}
.y5a_c00337{bottom:643.773333pt;}
.y5b_c00337{bottom:644.733333pt;}
.y59_c00337{bottom:645.693333pt;}
.y57_c00337{bottom:661.106667pt;}
.y58_c00337{bottom:662.640000pt;}
.y56_c00337{bottom:663.026667pt;}
.y55_c00337{bottom:678.440000pt;}
.y54_c00337{bottom:680.360000pt;}
.y50_c00337{bottom:695.773333pt;}
.y52_c00337{bottom:696.160000pt;}
.y51_c00337{bottom:696.733333pt;}
.y4f_c00337{bottom:697.693333pt;}
.y53_c00337{bottom:699.026667pt;}
.y4b_c00337{bottom:713.106667pt;}
.y4d_c00337{bottom:714.066667pt;}
.y4e_c00337{bottom:714.440000pt;}
.y4a_c00337{bottom:715.026667pt;}
.y4c_c00337{bottom:715.973333pt;}
.y46_c00337{bottom:729.693333pt;}
.y47_c00337{bottom:730.440000pt;}
.y49_c00337{bottom:730.826667pt;}
.y48_c00337{bottom:731.400000pt;}
.y45_c00337{bottom:733.693333pt;}
.y42_c00337{bottom:747.773333pt;}
.y40_c00337{bottom:749.106667pt;}
.y44_c00337{bottom:749.893333pt;}
.y43_c00337{bottom:751.026667pt;}
.y41_c00337{bottom:751.973333pt;}
.y3b_c00337{bottom:765.106667pt;}
.y3c_c00337{bottom:766.440000pt;}
.y3d_c00337{bottom:767.226667pt;}
.y3f_c00337{bottom:767.400000pt;}
.y3e_c00337{bottom:768.360000pt;}
.y34_c00337{bottom:782.640000pt;}
.y39_c00337{bottom:783.026667pt;}
.y37_c00337{bottom:783.773333pt;}
.y38_c00337{bottom:784.560000pt;}
.y3a_c00337{bottom:785.306667pt;}
.y36_c00337{bottom:785.693333pt;}
.y35_c00337{bottom:786.640000pt;}
.y31_c00337{bottom:801.106667pt;}
.y30_c00337{bottom:801.893333pt;}
.y32_c00337{bottom:802.440000pt;}
.y2f_c00337{bottom:803.026667pt;}
.y33_c00337{bottom:803.226667pt;}
.y2e_c00337{bottom:818.440000pt;}
.y2b_c00337{bottom:819.773333pt;}
.y2a_c00337{bottom:819.973333pt;}
.y29_c00337{bottom:820.360000pt;}
.y2d_c00337{bottom:820.733333pt;}
.y28_c00337{bottom:821.306667pt;}
.y2c_c00337{bottom:821.693333pt;}
.y25_c00337{bottom:835.973333pt;}
.y22_c00337{bottom:836.160000pt;}
.y24_c00337{bottom:837.106667pt;}
.y27_c00337{bottom:837.893333pt;}
.y26_c00337{bottom:838.640000pt;}
.y23_c00337{bottom:839.026667pt;}
.y1c_c00337{bottom:853.106667pt;}
.y21_c00337{bottom:853.306667pt;}
.y20_c00337{bottom:855.226667pt;}
.y1e_c00337{bottom:855.400000pt;}
.y1d_c00337{bottom:855.973333pt;}
.y1f_c00337{bottom:856.360000pt;}
.y1a_c00337{bottom:869.693333pt;}
.y19_c00337{bottom:870.640000pt;}
.y1b_c00337{bottom:871.773333pt;}
.y18_c00337{bottom:872.560000pt;}
.y17_c00337{bottom:873.306667pt;}
.y16_c00337{bottom:873.693333pt;}
.y12_c00337{bottom:889.106667pt;}
.y11_c00337{bottom:889.693333pt;}
.y13_c00337{bottom:889.893333pt;}
.y15_c00337{bottom:890.066667pt;}
.y14_c00337{bottom:891.026667pt;}
.yf_c00337{bottom:905.306667pt;}
.yb_c00337{bottom:905.493333pt;}
.yd_c00337{bottom:906.440000pt;}
.y10_c00337{bottom:907.226667pt;}
.yc_c00337{bottom:908.360000pt;}
.ye_c00337{bottom:909.306667pt;}
.ya_c00337{bottom:922.640000pt;}
.y8_c00337{bottom:923.773333pt;}
.y9_c00337{bottom:925.693333pt;}
.y5_c00337{bottom:940.360000pt;}
.y3_c00337{bottom:941.106667pt;}
.y7_c00337{bottom:942.640000pt;}
.y4_c00337{bottom:943.026667pt;}
.y6_c00337{bottom:943.973333pt;}
.y1_c00337{bottom:975.773333pt;}
.y2_c00337{bottom:976.933333pt;}
.h8_c00337{height:3.739141pt;}
.h6_c00337{height:20.466875pt;}
.h2_c00337{height:22.303646pt;}
.h4_c00337{height:27.879557pt;}
.h3_c00337{height:31.618698pt;}
.h7_c00337{height:35.357839pt;}
.h1_c00337{height:39.031380pt;}
.h5_c00337{height:42.770521pt;}
.h0_c00337{height:1186.666667pt;}
.w0_c00337{width:782.666667pt;}
.x0_c00337{left:0.000000pt;}
.xc5_c00337{left:132.000000pt;}
.xcc_c00337{left:133.706667pt;}
.x95_c00337{left:134.666667pt;}
.x20_c00337{left:135.626667pt;}
.x1_c00337{left:137.333333pt;}
.xbf_c00337{left:144.960000pt;}
.x4b_c00337{left:146.666667pt;}
.x90_c00337{left:149.333333pt;}
.x43_c00337{left:150.666667pt;}
.x3_c00337{left:151.626667pt;}
.xf4_c00337{left:154.666667pt;}
.xd2_c00337{left:157.333333pt;}
.xa6_c00337{left:161.333333pt;}
.xe2_c00337{left:163.040000pt;}
.xd9_c00337{left:164.960000pt;}
.x56_c00337{left:166.666667pt;}
.x44_c00337{left:168.960000pt;}
.xeb_c00337{left:171.626667pt;}
.x4_c00337{left:174.293333pt;}
.x21_c00337{left:176.000000pt;}
.x57_c00337{left:177.333333pt;}
.x7e_c00337{left:178.293333pt;}
.xd3_c00337{left:181.706667pt;}
.x86_c00337{left:182.666667pt;}
.x69_c00337{left:184.000000pt;}
.x62_c00337{left:185.333333pt;}
.xec_c00337{left:186.293333pt;}
.x29_c00337{left:187.626667pt;}
.xa7_c00337{left:190.666667pt;}
.x96_c00337{left:192.000000pt;}
.xcd_c00337{left:193.333333pt;}
.xf_c00337{left:195.626667pt;}
.x73_c00337{left:197.333333pt;}
.x33_c00337{left:198.666667pt;}
.xf5_c00337{left:204.373333pt;}
.x45_c00337{left:205.333333pt;}
.x6a_c00337{left:209.333333pt;}
.x10_c00337{left:211.040000pt;}
.xe8_c00337{left:212.000000pt;}
.x34_c00337{left:212.960000pt;}
.x58_c00337{left:216.373333pt;}
.x9b_c00337{left:220.000000pt;}
.xaf_c00337{left:220.960000pt;}
.x17_c00337{left:223.626667pt;}
.x5_c00337{left:224.960000pt;}
.x3c_c00337{left:227.626667pt;}
.x4c_c00337{left:229.333333pt;}
.x63_c00337{left:230.666667pt;}
.x9e_c00337{left:233.333333pt;}
.x35_c00337{left:234.666667pt;}
.x7f_c00337{left:236.373333pt;}
.x87_c00337{left:237.333333pt;}
.x59_c00337{left:239.040000pt;}
.xb5_c00337{left:242.293333pt;}
.x64_c00337{left:246.666667pt;}
.x2a_c00337{left:247.626667pt;}
.xee_c00337{left:249.706667pt;}
.xce_c00337{left:252.373333pt;}
.xb9_c00337{left:253.333333pt;}
.xa8_c00337{left:255.040000pt;}
.x9c_c00337{left:256.000000pt;}
.x11_c00337{left:257.333333pt;}
.x6b_c00337{left:258.666667pt;}
.xda_c00337{left:264.960000pt;}
.x18_c00337{left:266.466667pt;}
.x6_c00337{left:269.133333pt;}
.x91_c00337{left:272.000000pt;}
.xb0_c00337{left:273.706667pt;}
.xef_c00337{left:274.666667pt;}
.x74_c00337{left:276.960000pt;}
.x88_c00337{left:279.040000pt;}
.xdb_c00337{left:281.333333pt;}
.x22_c00337{left:284.000000pt;}
.x2b_c00337{left:284.960000pt;}
.x12_c00337{left:287.040000pt;}
.xc0_c00337{left:288.000000pt;}
.x65_c00337{left:289.333333pt;}
.xf6_c00337{left:292.960000pt;}
.x3d_c00337{left:294.666667pt;}
.xba_c00337{left:295.626667pt;}
.x89_c00337{left:297.333333pt;}
.x7_c00337{left:300.000000pt;}
.x36_c00337{left:300.960000pt;}
.x80_c00337{left:302.666667pt;}
.x23_c00337{left:304.000000pt;}
.x6c_c00337{left:305.706667pt;}
.xb3_c00337{left:307.626667pt;}
.x4d_c00337{left:309.706667pt;}
.x19_c00337{left:310.666667pt;}
.x3e_c00337{left:312.000000pt;}
.x37_c00337{left:314.666667pt;}
.xc6_c00337{left:316.960000pt;}
.x2c_c00337{left:320.373333pt;}
.x75_c00337{left:321.706667pt;}
.x13_c00337{left:323.626667pt;}
.xd4_c00337{left:325.706667pt;}
.xc2_c00337{left:326.666667pt;}
.x38_c00337{left:328.000000pt;}
.x8_c00337{left:329.706667pt;}
.x4e_c00337{left:331.626667pt;}
.xdc_c00337{left:333.333333pt;}
.xc7_c00337{left:335.040000pt;}
.xcf_c00337{left:336.000000pt;}
.x14_c00337{left:338.666667pt;}
.x1a_c00337{left:340.373333pt;}
.xe9_c00337{left:341.333333pt;}
.xf0_c00337{left:342.666667pt;}
.x3f_c00337{left:345.333333pt;}
.x2d_c00337{left:346.293333pt;}
.x46_c00337{left:348.373333pt;}
.xab_c00337{left:351.040000pt;}
.xd5_c00337{left:352.000000pt;}
.x76_c00337{left:353.333333pt;}
.x39_c00337{left:355.040000pt;}
.x97_c00337{left:356.373333pt;}
.xc8_c00337{left:357.333333pt;}
.x6d_c00337{left:358.293333pt;}
.x2_c00337{left:360.000000pt;}
.xf1_c00337{left:360.960000pt;}
.xbb_c00337{left:363.040000pt;}
.x9_c00337{left:364.000000pt;}
.xa9_c00337{left:370.293333pt;}
.xb1_c00337{left:371.626667pt;}
.x1b_c00337{left:373.706667pt;}
.x8a_c00337{left:376.000000pt;}
.x24_c00337{left:377.333333pt;}
.xd0_c00337{left:380.373333pt;}
.xb4_c00337{left:383.240000pt;}
.xb6_c00337{left:385.333333pt;}
.x40_c00337{left:386.666667pt;}
.xa_c00337{left:388.373333pt;}
.xa4_c00337{left:389.333333pt;}
.xe3_c00337{left:390.293333pt;}
.x9f_c00337{left:393.333333pt;}
.xdd_c00337{left:394.666667pt;}
.x3a_c00337{left:396.373333pt;}
.x5a_c00337{left:397.333333pt;}
.xf2_c00337{left:398.666667pt;}
.x47_c00337{left:400.960000pt;}
.x81_c00337{left:401.906667pt;}
.x1c_c00337{left:404.000000pt;}
.x98_c00337{left:405.333333pt;}
.x8b_c00337{left:408.373333pt;}
.x77_c00337{left:409.333333pt;}
.xac_c00337{left:413.706667pt;}
.x5b_c00337{left:415.040000pt;}
.xe4_c00337{left:416.000000pt;}
.x48_c00337{left:416.960000pt;}
.xde_c00337{left:418.293333pt;}
.x15_c00337{left:419.626667pt;}
.x3b_c00337{left:422.666667pt;}
.x78_c00337{left:424.373333pt;}
.xf7_c00337{left:425.333333pt;}
.xc1_c00337{left:427.040000pt;}
.xc3_c00337{left:428.373333pt;}
.x41_c00337{left:430.666667pt;}
.xea_c00337{left:434.293333pt;}
.x6e_c00337{left:436.000000pt;}
.x1d_c00337{left:438.666667pt;}
.x2e_c00337{left:440.373333pt;}
.x5c_c00337{left:441.333333pt;}
.xa0_c00337{left:443.626667pt;}
.xb_c00337{left:446.293333pt;}
.xdf_c00337{left:449.706667pt;}
.x82_c00337{left:450.666667pt;}
.xbc_c00337{left:452.960000pt;}
.x42_c00337{left:455.040000pt;}
.x4f_c00337{left:458.293333pt;}
.x25_c00337{left:460.000000pt;}
.x9d_c00337{left:460.960000pt;}
.x16_c00337{left:464.960000pt;}
.xb7_c00337{left:466.293333pt;}
.xad_c00337{left:471.626667pt;}
.xd6_c00337{left:472.960000pt;}
.xaa_c00337{left:474.666667pt;}
.xc9_c00337{left:476.000000pt;}
.x79_c00337{left:478.666667pt;}
.x26_c00337{left:479.626667pt;}
.xe5_c00337{left:481.333333pt;}
.xbd_c00337{left:488.000000pt;}
.x66_c00337{left:488.960000pt;}
.x99_c00337{left:490.293333pt;}
.xb2_c00337{left:493.333333pt;}
.x5d_c00337{left:494.293333pt;}
.xf3_c00337{left:496.373333pt;}
.xa1_c00337{left:498.293333pt;}
.x6f_c00337{left:499.626667pt;}
.x83_c00337{left:500.960000pt;}
.xd1_c00337{left:502.293333pt;}
.xc_c00337{left:505.333333pt;}
.x2f_c00337{left:506.666667pt;}
.xb8_c00337{left:507.800000pt;}
.x50_c00337{left:508.960000pt;}
.x7a_c00337{left:510.293333pt;}
.x67_c00337{left:516.373333pt;}
.x1e_c00337{left:520.000000pt;}
.x27_c00337{left:521.333333pt;}
.x5e_c00337{left:523.040000pt;}
.x30_c00337{left:524.000000pt;}
.xa2_c00337{left:524.960000pt;}
.x49_c00337{left:526.666667pt;}
.xe0_c00337{left:528.373333pt;}
.x51_c00337{left:529.333333pt;}
.x8c_c00337{left:534.666667pt;}
.xe6_c00337{left:539.040000pt;}
.x52_c00337{left:541.333333pt;}
.xca_c00337{left:549.706667pt;}
.xae_c00337{left:550.666667pt;}
.xd_c00337{left:552.373333pt;}
.x92_c00337{left:553.333333pt;}
.x8d_c00337{left:556.000000pt;}
.xa5_c00337{left:557.333333pt;}
.x53_c00337{left:560.000000pt;}
.x7b_c00337{left:560.960000pt;}
.x5f_c00337{left:562.666667pt;}
.xbe_c00337{left:563.626667pt;}
.x84_c00337{left:565.906667pt;}
.x70_c00337{left:568.000000pt;}
.x68_c00337{left:569.333333pt;}
.x8e_c00337{left:570.293333pt;}
.x28_c00337{left:573.333333pt;}
.x7c_c00337{left:576.960000pt;}
.xcb_c00337{left:581.333333pt;}
.xd7_c00337{left:584.000000pt;}
.x54_c00337{left:586.666667pt;}
.x31_c00337{left:588.000000pt;}
.x9a_c00337{left:596.000000pt;}
.x71_c00337{left:597.333333pt;}
.xc4_c00337{left:598.666667pt;}
.xd8_c00337{left:600.000000pt;}
.x93_c00337{left:605.333333pt;}
.x32_c00337{left:610.293333pt;}
.x60_c00337{left:612.000000pt;}
.xe_c00337{left:613.333333pt;}
.x85_c00337{left:614.293333pt;}
.x7d_c00337{left:615.626667pt;}
.x4a_c00337{left:618.466667pt;}
.x55_c00337{left:621.706667pt;}
.x94_c00337{left:622.666667pt;}
.xed_c00337{left:624.373333pt;}
.xa3_c00337{left:626.293333pt;}
.x72_c00337{left:628.000000pt;}
.x61_c00337{left:629.706667pt;}
.xe7_c00337{left:633.333333pt;}
.x8f_c00337{left:635.040000pt;}
.x1f_c00337{left:636.000000pt;}
.xe1_c00337{left:636.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_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_07eb4134fa0a3cf0a8d74a6a.woff2')format("woff");}.ff1_c00338{font-family:ff1_c00338;line-height:1.688965;font-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_c00338{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m3c_c00338{transform:matrix(0.359664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359664,0.000000,0.000000,0.250000,0,0);}
.m22_c00338{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m10c_c00338{transform:matrix(0.369202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369202,0.000000,0.000000,0.250000,0,0);}
.m67_c00338{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mbb_c00338{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m40_c00338{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.me3_c00338{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m7a_c00338{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mbc_c00338{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m17_c00338{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m103_c00338{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.mc2_c00338{transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);}
.m58_c00338{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m11_c00338{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.m66_c00338{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m12_c00338{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m90_c00338{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m10_c00338{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m14_c00338{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m1d_c00338{transform:matrix(0.395228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395228,0.000000,0.000000,0.250000,0,0);}
.m77_c00338{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m1a_c00338{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m23_c00338{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m4f_c00338{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.m4e_c00338{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m2e_c00338{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.mfd_c00338{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.mbf_c00338{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.m24_c00338{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.me9_c00338{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.mf_c00338{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m9_c00338{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m82_c00338{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m6e_c00338{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m2_c00338{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m6_c00338{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m5_c00338{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m93_c00338{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m4c_c00338{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m96_c00338{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.mc1_c00338{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m4b_c00338{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m41_c00338{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m30_c00338{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.mff_c00338{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m7e_c00338{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.maa_c00338{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m75_c00338{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m106_c00338{transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);}
.m28_c00338{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mdb_c00338{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.md2_c00338{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m19_c00338{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m92_c00338{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m10a_c00338{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.m10e_c00338{transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);}
.m85_c00338{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m13_c00338{transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);}
.m8_c00338{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m9a_c00338{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m7f_c00338{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mee_c00338{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.me_c00338{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m31_c00338{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m4_c00338{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.mbd_c00338{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.me5_c00338{transform:matrix(0.437848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437848,0.000000,0.000000,0.250000,0,0);}
.mc_c00338{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.mab_c00338{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.md8_c00338{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.mdf_c00338{transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);}
.ma4_c00338{transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);}
.m65_c00338{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m72_c00338{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.mcd_c00338{transform:matrix(0.444706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444706,0.000000,0.000000,0.250000,0,0);}
.m8f_c00338{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m18_c00338{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.mb_c00338{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m5d_c00338{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.mfb_c00338{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m8d_c00338{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m104_c00338{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m9f_c00338{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m70_c00338{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m5a_c00338{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m49_c00338{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m10b_c00338{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.m5c_c00338{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.mb5_c00338{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.m1b_c00338{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m8c_c00338{transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);}
.me8_c00338{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.mda_c00338{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mc6_c00338{transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);}
.m45_c00338{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m38_c00338{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.mae_c00338{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m100_c00338{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.mf9_c00338{transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);}
.m48_c00338{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.mf3_c00338{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m1e_c00338{transform:matrix(0.470168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470168,0.000000,0.000000,0.250000,0,0);}
.mf1_c00338{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.m89_c00338{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.ma2_c00338{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m108_c00338{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.md9_c00338{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.md3_c00338{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m71_c00338{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m6c_c00338{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.md1_c00338{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m5e_c00338{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m55_c00338{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m8a_c00338{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mf7_c00338{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mb1_c00338{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mf5_c00338{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);}
.m83_c00338{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m1_c00338{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.ma6_c00338{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mf2_c00338{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.md6_c00338{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m3a_c00338{transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);}
.m50_c00338{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);}
.m52_c00338{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m46_c00338{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m2b_c00338{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.mb8_c00338{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.md5_c00338{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mad_c00338{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m7d_c00338{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m5b_c00338{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mfa_c00338{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.m81_c00338{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.md_c00338{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mdc_c00338{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m42_c00338{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m6b_c00338{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mdd_c00338{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m51_c00338{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m105_c00338{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.m37_c00338{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.md4_c00338{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);}
.mfc_c00338{transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);}
.m86_c00338{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mbe_c00338{transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);}
.m2d_c00338{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mc8_c00338{transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);}
.m8b_c00338{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m2a_c00338{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m3e_c00338{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m9e_c00338{transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);}
.m3d_c00338{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m29_c00338{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m60_c00338{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m39_c00338{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m35_c00338{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m6a_c00338{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.ma9_c00338{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m3f_c00338{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m68_c00338{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m32_c00338{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.ma1_c00338{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m98_c00338{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m5f_c00338{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m33_c00338{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mc0_c00338{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m7_c00338{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mc7_c00338{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m15_c00338{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m26_c00338{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mf0_c00338{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m7b_c00338{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.ma_c00338{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m9c_c00338{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m95_c00338{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m88_c00338{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m63_c00338{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mce_c00338{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.mb3_c00338{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m2f_c00338{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m61_c00338{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m3b_c00338{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mb6_c00338{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m99_c00338{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m78_c00338{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.mba_c00338{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m6f_c00338{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m87_c00338{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.me6_c00338{transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);}
.m4a_c00338{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mb7_c00338{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mec_c00338{transform:matrix(0.564706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564706,0.000000,0.000000,0.250000,0,0);}
.me1_c00338{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.m47_c00338{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m94_c00338{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m1f_c00338{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m21_c00338{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m80_c00338{transform:matrix(0.571314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571314,0.000000,0.000000,0.250000,0,0);}
.m76_c00338{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m109_c00338{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m8e_c00338{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m56_c00338{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m107_c00338{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.me4_c00338{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m2c_c00338{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.m27_c00338{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.mea_c00338{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);}
.maf_c00338{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.mcc_c00338{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mc4_c00338{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m34_c00338{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m101_c00338{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m7c_c00338{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.ma8_c00338{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m69_c00338{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m4d_c00338{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mb2_c00338{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m74_c00338{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m0_c00338{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m73_c00338{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m44_c00338{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m10d_c00338{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.md0_c00338{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.meb_c00338{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.mc5_c00338{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);}
.me2_c00338{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.me0_c00338{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.ma0_c00338{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.mac_c00338{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.mcb_c00338{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.mfe_c00338{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.ma5_c00338{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.me7_c00338{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);}
.ma3_c00338{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.mca_c00338{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.med_c00338{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m59_c00338{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m36_c00338{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m54_c00338{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mde_c00338{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.md7_c00338{transform:matrix(0.671324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.671324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.671324,0.000000,0.000000,0.250000,0,0);}
.mb0_c00338{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mc3_c00338{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m53_c00338{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.mef_c00338{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m97_c00338{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mb4_c00338{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);}
.m102_c00338{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m9d_c00338{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m43_c00338{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.mf6_c00338{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);}
.m79_c00338{transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);}
.m25_c00338{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m16_c00338{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m62_c00338{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m91_c00338{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m64_c00338{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m6d_c00338{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m84_c00338{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m57_c00338{transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);}
.mf4_c00338{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mcf_c00338{transform:matrix(0.915198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.915198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.915198,0.000000,0.000000,0.250000,0,0);}
.mc9_c00338{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.mf8_c00338{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.m9b_c00338{transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);}
.ma7_c00338{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.mb9_c00338{transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);}
.m3_c00338{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m20_c00338{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
.fs3_c00338{font-size:3.420000px;}
.fs7_c00338{font-size:13.620000px;}
.fs5_c00338{font-size:18.720000px;}
.fs0_c00338{font-size:20.400000px;}
.fs6_c00338{font-size:25.500000px;}
.fs1_c00338{font-size:28.920000px;}
.fs4_c00338{font-size:32.340000px;}
.fs2_c00338{font-size:35.700000px;}
.y0_c00338{bottom:0.000000px;}
.yde_c00338{bottom:258.825000px;}
.ydc_c00338{bottom:259.905000px;}
.ye0_c00338{bottom:260.130000px;}
.ydd_c00338{bottom:260.970000px;}
.ydf_c00338{bottom:262.050000px;}
.yda_c00338{bottom:273.825000px;}
.yd6_c00338{bottom:274.050000px;}
.yd7_c00338{bottom:274.905000px;}
.yd9_c00338{bottom:275.130000px;}
.yd8_c00338{bottom:275.970000px;}
.ydb_c00338{bottom:277.050000px;}
.yd4_c00338{bottom:288.825000px;}
.yd5_c00338{bottom:289.905000px;}
.ycf_c00338{bottom:302.970000px;}
.yd0_c00338{bottom:303.405000px;}
.ycc_c00338{bottom:303.825000px;}
.ycb_c00338{bottom:304.050000px;}
.yce_c00338{bottom:304.905000px;}
.yd2_c00338{bottom:305.130000px;}
.yd1_c00338{bottom:305.550000px;}
.ycd_c00338{bottom:305.970000px;}
.yd3_c00338{bottom:307.050000px;}
.yca_c00338{bottom:317.970000px;}
.yc7_c00338{bottom:318.405000px;}
.yc6_c00338{bottom:319.470000px;}
.yc9_c00338{bottom:319.695000px;}
.yc8_c00338{bottom:320.550000px;}
.yc1_c00338{bottom:333.405000px;}
.yc0_c00338{bottom:333.630000px;}
.yc3_c00338{bottom:334.470000px;}
.yc2_c00338{bottom:335.550000px;}
.yc5_c00338{bottom:335.970000px;}
.yc4_c00338{bottom:336.195000px;}
.ybc_c00338{bottom:347.325000px;}
.yba_c00338{bottom:348.630000px;}
.ybf_c00338{bottom:348.825000px;}
.ybb_c00338{bottom:349.470000px;}
.ybe_c00338{bottom:349.695000px;}
.ybd_c00338{bottom:350.550000px;}
.yb9_c00338{bottom:362.325000px;}
.yb8_c00338{bottom:364.470000px;}
.yb5_c00338{bottom:377.325000px;}
.yb6_c00338{bottom:378.405000px;}
.yb2_c00338{bottom:378.630000px;}
.yb4_c00338{bottom:379.470000px;}
.yb7_c00338{bottom:379.695000px;}
.yb3_c00338{bottom:380.550000px;}
.yad_c00338{bottom:392.325000px;}
.yb1_c00338{bottom:392.550000px;}
.yac_c00338{bottom:393.405000px;}
.yae_c00338{bottom:394.470000px;}
.yaf_c00338{bottom:394.695000px;}
.yb0_c00338{bottom:395.550000px;}
.ya8_c00338{bottom:407.325000px;}
.ya6_c00338{bottom:407.550000px;}
.yab_c00338{bottom:407.970000px;}
.yaa_c00338{bottom:408.405000px;}
.ya9_c00338{bottom:409.050000px;}
.ya7_c00338{bottom:409.470000px;}
.ya5_c00338{bottom:420.825000px;}
.ya2_c00338{bottom:421.905000px;}
.ya3_c00338{bottom:422.970000px;}
.ya4_c00338{bottom:423.630000px;}
.ya1_c00338{bottom:424.050000px;}
.y9b_c00338{bottom:436.470000px;}
.ya0_c00338{bottom:436.905000px;}
.y9f_c00338{bottom:437.325000px;}
.y9d_c00338{bottom:438.405000px;}
.y9e_c00338{bottom:438.630000px;}
.y9c_c00338{bottom:439.050000px;}
.y98_c00338{bottom:450.825000px;}
.y99_c00338{bottom:451.905000px;}
.y9a_c00338{bottom:452.970000px;}
.y95_c00338{bottom:465.825000px;}
.y94_c00338{bottom:466.905000px;}
.y97_c00338{bottom:467.130000px;}
.y96_c00338{bottom:467.970000px;}
.y93_c00338{bottom:469.050000px;}
.y8e_c00338{bottom:479.970000px;}
.y92_c00338{bottom:480.825000px;}
.y90_c00338{bottom:481.905000px;}
.y8f_c00338{bottom:482.970000px;}
.y91_c00338{bottom:483.195000px;}
.y8d_c00338{bottom:495.825000px;}
.y8c_c00338{bottom:496.905000px;}
.y89_c00338{bottom:497.970000px;}
.y8a_c00338{bottom:498.195000px;}
.y8b_c00338{bottom:499.050000px;}
.y87_c00338{bottom:509.970000px;}
.y86_c00338{bottom:510.825000px;}
.y81_c00338{bottom:511.050000px;}
.y82_c00338{bottom:511.905000px;}
.y88_c00338{bottom:512.550000px;}
.y83_c00338{bottom:512.970000px;}
.y85_c00338{bottom:513.195000px;}
.y84_c00338{bottom:514.050000px;}
.y7d_c00338{bottom:525.825000px;}
.y7e_c00338{bottom:526.470000px;}
.y80_c00338{bottom:526.905000px;}
.y7f_c00338{bottom:529.050000px;}
.y79_c00338{bottom:538.470000px;}
.y78_c00338{bottom:539.325000px;}
.y75_c00338{bottom:539.970000px;}
.y7a_c00338{bottom:540.405000px;}
.y77_c00338{bottom:540.825000px;}
.y7c_c00338{bottom:541.470000px;}
.y7b_c00338{bottom:541.695000px;}
.y76_c00338{bottom:542.970000px;}
.y74_c00338{bottom:555.825000px;}
.y72_c00338{bottom:557.130000px;}
.y73_c00338{bottom:557.970000px;}
.y6f_c00338{bottom:570.405000px;}
.y6e_c00338{bottom:571.470000px;}
.y71_c00338{bottom:571.905000px;}
.y6d_c00338{bottom:572.130000px;}
.y70_c00338{bottom:572.550000px;}
.y6b_c00338{bottom:585.405000px;}
.y6a_c00338{bottom:586.470000px;}
.y6c_c00338{bottom:587.550000px;}
.y67_c00338{bottom:599.550000px;}
.y66_c00338{bottom:600.405000px;}
.y64_c00338{bottom:600.630000px;}
.y65_c00338{bottom:601.470000px;}
.y69_c00338{bottom:601.695000px;}
.y68_c00338{bottom:602.550000px;}
.y63_c00338{bottom:626.745000px;}
.y62_c00338{bottom:628.905000px;}
.y60_c00338{bottom:646.245000px;}
.y5f_c00338{bottom:647.325000px;}
.y61_c00338{bottom:648.405000px;}
.y5e_c00338{bottom:665.745000px;}
.y5b_c00338{bottom:665.970000px;}
.y59_c00338{bottom:667.245000px;}
.y5d_c00338{bottom:667.905000px;}
.y5c_c00338{bottom:668.130000px;}
.y5a_c00338{bottom:669.405000px;}
.y56_c00338{bottom:684.405000px;}
.y57_c00338{bottom:686.745000px;}
.y58_c00338{bottom:687.630000px;}
.y54_c00338{bottom:688.470000px;}
.y55_c00338{bottom:688.905000px;}
.y52_c00338{bottom:706.245000px;}
.y53_c00338{bottom:707.130000px;}
.y51_c00338{bottom:708.405000px;}
.y4d_c00338{bottom:725.745000px;}
.y4e_c00338{bottom:726.825000px;}
.y4c_c00338{bottom:727.905000px;}
.y50_c00338{bottom:728.130000px;}
.y4f_c00338{bottom:728.970000px;}
.y4a_c00338{bottom:744.405000px;}
.y49_c00338{bottom:745.245000px;}
.y47_c00338{bottom:747.405000px;}
.y4b_c00338{bottom:747.630000px;}
.y48_c00338{bottom:748.470000px;}
.y40_c00338{bottom:764.745000px;}
.y41_c00338{bottom:766.245000px;}
.y45_c00338{bottom:766.470000px;}
.y43_c00338{bottom:766.905000px;}
.y46_c00338{bottom:767.130000px;}
.y44_c00338{bottom:767.970000px;}
.y42_c00338{bottom:768.405000px;}
.y3b_c00338{bottom:784.245000px;}
.y3f_c00338{bottom:784.905000px;}
.y3d_c00338{bottom:785.745000px;}
.y39_c00338{bottom:786.405000px;}
.y3a_c00338{bottom:786.630000px;}
.y3e_c00338{bottom:786.825000px;}
.y3c_c00338{bottom:787.905000px;}
.y38_c00338{bottom:805.245000px;}
.y36_c00338{bottom:806.130000px;}
.y37_c00338{bottom:806.970000px;}
.y35_c00338{bottom:807.405000px;}
.y33_c00338{bottom:823.245000px;}
.y34_c00338{bottom:825.630000px;}
.y31_c00338{bottom:825.825000px;}
.y30_c00338{bottom:826.470000px;}
.y32_c00338{bottom:826.905000px;}
.y2f_c00338{bottom:844.245000px;}
.y2e_c00338{bottom:845.970000px;}
.y2b_c00338{bottom:846.405000px;}
.y2c_c00338{bottom:846.420000px;}
.y2d_c00338{bottom:846.630000px;}
.y2a_c00338{bottom:862.905000px;}
.y29_c00338{bottom:863.745000px;}
.y26_c00338{bottom:883.245000px;}
.y25_c00338{bottom:884.325000px;}
.y27_c00338{bottom:884.745000px;}
.y24_c00338{bottom:885.405000px;}
.y28_c00338{bottom:886.905000px;}
.y22_c00338{bottom:904.245000px;}
.y20_c00338{bottom:904.905000px;}
.y23_c00338{bottom:905.130000px;}
.y21_c00338{bottom:906.405000px;}
.y1f_c00338{bottom:923.745000px;}
.y1d_c00338{bottom:924.630000px;}
.y1e_c00338{bottom:924.825000px;}
.y1c_c00338{bottom:925.905000px;}
.y1b_c00338{bottom:942.825000px;}
.y19_c00338{bottom:943.245000px;}
.y1a_c00338{bottom:945.405000px;}
.y16_c00338{bottom:962.745000px;}
.y18_c00338{bottom:962.970000px;}
.y14_c00338{bottom:964.905000px;}
.y15_c00338{bottom:964.920000px;}
.y17_c00338{bottom:965.130000px;}
.y13_c00338{bottom:982.245000px;}
.yf_c00338{bottom:1001.745000px;}
.y10_c00338{bottom:1002.825000px;}
.y11_c00338{bottom:1003.245000px;}
.yc_c00338{bottom:1003.905000px;}
.yd_c00338{bottom:1004.130000px;}
.y12_c00338{bottom:1005.405000px;}
.ye_c00338{bottom:1005.420000px;}
.yb_c00338{bottom:1021.245000px;}
.y9_c00338{bottom:1039.905000px;}
.y7_c00338{bottom:1040.745000px;}
.y8_c00338{bottom:1041.825000px;}
.ya_c00338{bottom:1042.905000px;}
.y3_c00338{bottom:1061.745000px;}
.y5_c00338{bottom:1062.825000px;}
.y6_c00338{bottom:1063.905000px;}
.y4_c00338{bottom:1063.920000px;}
.y2_c00338{bottom:1099.905000px;}
.y1_c00338{bottom:1102.050000px;}
.h4_c00338{height:4.206533px;}
.h8_c00338{height:16.752334px;}
.h6_c00338{height:23.025234px;}
.h1_c00338{height:25.091602px;}
.h7_c00338{height:31.364502px;}
.h2_c00338{height:35.571035px;}
.h5_c00338{height:39.777568px;}
.h3_c00338{height:43.910303px;}
.h0_c00338{height:1335.000000px;}
.w0_c00338{width:880.500000px;}
.x0_c00338{left:0.000000px;}
.xd_c00338{left:151.500000px;}
.x51_c00338{left:152.580000px;}
.x76_c00338{left:153.855000px;}
.xc9_c00338{left:155.580000px;}
.xb4_c00338{left:165.000000px;}
.x18_c00338{left:166.500000px;}
.x3_c00338{left:168.000000px;}
.xa2_c00338{left:169.500000px;}
.x7e_c00338{left:172.500000px;}
.x6d_c00338{left:179.580000px;}
.xbb_c00338{left:181.080000px;}
.x3d_c00338{left:182.580000px;}
.xa6_c00338{left:185.580000px;}
.x77_c00338{left:190.275000px;}
.xda_c00338{left:193.500000px;}
.x47_c00338{left:194.580000px;}
.xad_c00338{left:198.000000px;}
.xb5_c00338{left:199.080000px;}
.x7f_c00338{left:201.000000px;}
.xe_c00338{left:203.580000px;}
.x33_c00338{left:205.500000px;}
.xe9_c00338{left:206.580000px;}
.x3e_c00338{left:213.000000px;}
.x52_c00338{left:217.920000px;}
.x2c_c00338{left:223.920000px;}
.xb6_c00338{left:225.000000px;}
.x48_c00338{left:226.080000px;}
.xa7_c00338{left:228.000000px;}
.x6e_c00338{left:229.500000px;}
.xb7_c00338{left:230.580000px;}
.xea_c00338{left:232.500000px;}
.x9b_c00338{left:234.000000px;}
.x95_c00338{left:235.920000px;}
.x61_c00338{left:237.420000px;}
.xe3_c00338{left:240.000000px;}
.x6f_c00338{left:246.420000px;}
.x54_c00338{left:249.000000px;}
.x8f_c00338{left:251.580000px;}
.x19_c00338{left:253.500000px;}
.xca_c00338{left:254.580000px;}
.xc4_c00338{left:256.080000px;}
.x53_c00338{left:258.000000px;}
.x4_c00338{left:259.500000px;}
.xe5_c00338{left:261.000000px;}
.x62_c00338{left:262.500000px;}
.xf_c00338{left:264.420000px;}
.x34_c00338{left:268.500000px;}
.x87_c00338{left:276.000000px;}
.xd5_c00338{left:279.000000px;}
.x5_c00338{left:280.500000px;}
.x49_c00338{left:282.420000px;}
.xbc_c00338{left:284.580000px;}
.x2d_c00338{left:286.500000px;}
.xa3_c00338{left:289.500000px;}
.xa0_c00338{left:291.000000px;}
.x80_c00338{left:297.420000px;}
.x35_c00338{left:299.580000px;}
.x1a_c00338{left:304.500000px;}
.x10_c00338{left:306.000000px;}
.x70_c00338{left:309.000000px;}
.x23_c00338{left:310.500000px;}
.xc5_c00338{left:313.500000px;}
.xdb_c00338{left:316.500000px;}
.x63_c00338{left:318.000000px;}
.x5c_c00338{left:319.500000px;}
.xaf_c00338{left:321.420000px;}
.x96_c00338{left:322.500000px;}
.xc6_c00338{left:324.000000px;}
.xae_c00338{left:325.500000px;}
.x1b_c00338{left:326.580000px;}
.x9c_c00338{left:328.500000px;}
.x78_c00338{left:331.500000px;}
.x81_c00338{left:333.000000px;}
.x90_c00338{left:334.920000px;}
.xd6_c00338{left:336.000000px;}
.xbd_c00338{left:337.500000px;}
.x55_c00338{left:340.500000px;}
.x64_c00338{left:341.580000px;}
.x4a_c00338{left:343.080000px;}
.x36_c00338{left:345.000000px;}
.xd7_c00338{left:346.500000px;}
.xe2_c00338{left:347.580000px;}
.x6_c00338{left:349.275000px;}
.x2e_c00338{left:351.000000px;}
.xc2_c00338{left:352.080000px;}
.xdc_c00338{left:354.000000px;}
.x1c_c00338{left:357.000000px;}
.x79_c00338{left:358.080000px;}
.x3f_c00338{left:360.000000px;}
.x24_c00338{left:361.080000px;}
.xde_c00338{left:366.000000px;}
.xe4_c00338{left:367.920000px;}
.x11_c00338{left:369.000000px;}
.xa4_c00338{left:370.920000px;}
.xa1_c00338{left:373.500000px;}
.xbe_c00338{left:375.000000px;}
.x4b_c00338{left:376.080000px;}
.xc3_c00338{left:379.500000px;}
.xb8_c00338{left:380.580000px;}
.x2f_c00338{left:383.580000px;}
.xc7_c00338{left:387.000000px;}
.x88_c00338{left:388.500000px;}
.x40_c00338{left:390.000000px;}
.xd8_c00338{left:391.080000px;}
.x56_c00338{left:392.580000px;}
.x97_c00338{left:394.080000px;}
.x91_c00338{left:396.420000px;}
.x71_c00338{left:397.500000px;}
.xcf_c00338{left:399.000000px;}
.xa8_c00338{left:400.500000px;}
.x1_c00338{left:402.000000px;}
.xdf_c00338{left:403.080000px;}
.x37_c00338{left:406.500000px;}
.xdd_c00338{left:409.500000px;}
.x65_c00338{left:411.000000px;}
.x82_c00338{left:414.000000px;}
.x1d_c00338{left:415.920000px;}
.xd9_c00338{left:418.920000px;}
.x12_c00338{left:425.775000px;}
.x4c_c00338{left:427.500000px;}
.x89_c00338{left:428.580000px;}
.x83_c00338{left:430.500000px;}
.x25_c00338{left:433.500000px;}
.x5d_c00338{left:436.500000px;}
.xe0_c00338{left:437.580000px;}
.x66_c00338{left:438.645000px;}
.x72_c00338{left:439.920000px;}
.x57_c00338{left:442.920000px;}
.xd0_c00338{left:444.000000px;}
.x92_c00338{left:445.500000px;}
.x30_c00338{left:447.000000px;}
.x38_c00338{left:448.500000px;}
.xcb_c00338{left:450.000000px;}
.x7_c00338{left:452.580000px;}
.xa9_c00338{left:453.645000px;}
.xcc_c00338{left:460.500000px;}
.x7a_c00338{left:462.000000px;}
.x41_c00338{left:464.580000px;}
.x13_c00338{left:466.500000px;}
.xeb_c00338{left:468.000000px;}
.x5e_c00338{left:472.080000px;}
.x8a_c00338{left:474.000000px;}
.xb0_c00338{left:475.500000px;}
.x7b_c00338{left:480.420000px;}
.x9d_c00338{left:481.500000px;}
.x42_c00338{left:483.000000px;}
.x4d_c00338{left:484.080000px;}
.x98_c00338{left:486.000000px;}
.x58_c00338{left:487.500000px;}
.xe1_c00338{left:489.000000px;}
.xec_c00338{left:490.500000px;}
.x93_c00338{left:492.000000px;}
.x26_c00338{left:494.580000px;}
.x1e_c00338{left:497.580000px;}
.x67_c00338{left:499.080000px;}
.x84_c00338{left:502.080000px;}
.x8_c00338{left:504.645000px;}
.x59_c00338{left:506.580000px;}
.x39_c00338{left:508.500000px;}
.x14_c00338{left:509.580000px;}
.x8b_c00338{left:514.080000px;}
.xe6_c00338{left:516.420000px;}
.x5f_c00338{left:522.000000px;}
.xd1_c00338{left:523.500000px;}
.x9e_c00338{left:524.580000px;}
.x5a_c00338{left:528.000000px;}
.xb1_c00338{left:529.080000px;}
.x1f_c00338{left:531.000000px;}
.xcd_c00338{left:532.080000px;}
.x94_c00338{left:535.500000px;}
.xaa_c00338{left:536.580000px;}
.x43_c00338{left:541.500000px;}
.x7c_c00338{left:544.920000px;}
.x68_c00338{left:546.000000px;}
.x9_c00338{left:547.500000px;}
.x15_c00338{left:557.580000px;}
.x3a_c00338{left:559.500000px;}
.x4e_c00338{left:560.580000px;}
.xd2_c00338{left:562.080000px;}
.xbf_c00338{left:563.580000px;}
.xb2_c00338{left:569.580000px;}
.x69_c00338{left:571.500000px;}
.x27_c00338{left:572.775000px;}
.x85_c00338{left:574.500000px;}
.xce_c00338{left:576.000000px;}
.xa5_c00338{left:577.500000px;}
.x31_c00338{left:580.080000px;}
.x8c_c00338{left:584.580000px;}
.x73_c00338{left:586.080000px;}
.x20_c00338{left:588.420000px;}
.x86_c00338{left:594.420000px;}
.x4f_c00338{left:595.500000px;}
.xd3_c00338{left:599.580000px;}
.xb9_c00338{left:600.645000px;}
.x8d_c00338{left:604.920000px;}
.x5b_c00338{left:606.420000px;}
.x7d_c00338{left:607.500000px;}
.x28_c00338{left:610.500000px;}
.xa_c00338{left:612.000000px;}
.x6a_c00338{left:613.920000px;}
.x44_c00338{left:616.500000px;}
.x3b_c00338{left:618.000000px;}
.x60_c00338{left:622.500000px;}
.x74_c00338{left:624.000000px;}
.x16_c00338{left:630.000000px;}
.xab_c00338{left:632.580000px;}
.xc8_c00338{left:634.080000px;}
.x29_c00338{left:637.500000px;}
.xed_c00338{left:643.080000px;}
.x6b_c00338{left:646.500000px;}
.xc0_c00338{left:648.000000px;}
.x2a_c00338{left:649.500000px;}
.x99_c00338{left:650.580000px;}
.xd4_c00338{left:655.080000px;}
.x50_c00338{left:660.000000px;}
.x45_c00338{left:663.000000px;}
.x6c_c00338{left:664.080000px;}
.xe7_c00338{left:667.500000px;}
.x21_c00338{left:668.580000px;}
.x32_c00338{left:675.420000px;}
.xb3_c00338{left:679.080000px;}
.x46_c00338{left:681.000000px;}
.x3c_c00338{left:682.500000px;}
.x2b_c00338{left:686.580000px;}
.xac_c00338{left:688.080000px;}
.x17_c00338{left:691.500000px;}
.xb_c00338{left:695.355000px;}
.xc1_c00338{left:697.500000px;}
.x22_c00338{left:699.000000px;}
.xe8_c00338{left:700.500000px;}
.xba_c00338{left:702.000000px;}
.x2_c00338{left:703.080000px;}
.x9a_c00338{left:708.420000px;}
.x8e_c00338{left:711.000000px;}
.xc_c00338{left:712.500000px;}
.x75_c00338{left:714.420000px;}
.x9f_c00338{left:718.080000px;}
@media print{
.v0_c00338{vertical-align:0.000000pt;}
.ls0_c00338{letter-spacing:0.000000pt;}
.ws0_c00338{word-spacing:0.000000pt;}
.fs3_c00338{font-size:3.040000pt;}
.fs7_c00338{font-size:12.106667pt;}
.fs5_c00338{font-size:16.640000pt;}
.fs0_c00338{font-size:18.133333pt;}
.fs6_c00338{font-size:22.666667pt;}
.fs1_c00338{font-size:25.706667pt;}
.fs4_c00338{font-size:28.746667pt;}
.fs2_c00338{font-size:31.733333pt;}
.y0_c00338{bottom:0.000000pt;}
.yde_c00338{bottom:230.066667pt;}
.ydc_c00338{bottom:231.026667pt;}
.ye0_c00338{bottom:231.226667pt;}
.ydd_c00338{bottom:231.973333pt;}
.ydf_c00338{bottom:232.933333pt;}
.yda_c00338{bottom:243.400000pt;}
.yd6_c00338{bottom:243.600000pt;}
.yd7_c00338{bottom:244.360000pt;}
.yd9_c00338{bottom:244.560000pt;}
.yd8_c00338{bottom:245.306667pt;}
.ydb_c00338{bottom:246.266667pt;}
.yd4_c00338{bottom:256.733333pt;}
.yd5_c00338{bottom:257.693333pt;}
.ycf_c00338{bottom:269.306667pt;}
.yd0_c00338{bottom:269.693333pt;}
.ycc_c00338{bottom:270.066667pt;}
.ycb_c00338{bottom:270.266667pt;}
.yce_c00338{bottom:271.026667pt;}
.yd2_c00338{bottom:271.226667pt;}
.yd1_c00338{bottom:271.600000pt;}
.ycd_c00338{bottom:271.973333pt;}
.yd3_c00338{bottom:272.933333pt;}
.yca_c00338{bottom:282.640000pt;}
.yc7_c00338{bottom:283.026667pt;}
.yc6_c00338{bottom:283.973333pt;}
.yc9_c00338{bottom:284.173333pt;}
.yc8_c00338{bottom:284.933333pt;}
.yc1_c00338{bottom:296.360000pt;}
.yc0_c00338{bottom:296.560000pt;}
.yc3_c00338{bottom:297.306667pt;}
.yc2_c00338{bottom:298.266667pt;}
.yc5_c00338{bottom:298.640000pt;}
.yc4_c00338{bottom:298.840000pt;}
.ybc_c00338{bottom:308.733333pt;}
.yba_c00338{bottom:309.893333pt;}
.ybf_c00338{bottom:310.066667pt;}
.ybb_c00338{bottom:310.640000pt;}
.ybe_c00338{bottom:310.840000pt;}
.ybd_c00338{bottom:311.600000pt;}
.yb9_c00338{bottom:322.066667pt;}
.yb8_c00338{bottom:323.973333pt;}
.yb5_c00338{bottom:335.400000pt;}
.yb6_c00338{bottom:336.360000pt;}
.yb2_c00338{bottom:336.560000pt;}
.yb4_c00338{bottom:337.306667pt;}
.yb7_c00338{bottom:337.506667pt;}
.yb3_c00338{bottom:338.266667pt;}
.yad_c00338{bottom:348.733333pt;}
.yb1_c00338{bottom:348.933333pt;}
.yac_c00338{bottom:349.693333pt;}
.yae_c00338{bottom:350.640000pt;}
.yaf_c00338{bottom:350.840000pt;}
.yb0_c00338{bottom:351.600000pt;}
.ya8_c00338{bottom:362.066667pt;}
.ya6_c00338{bottom:362.266667pt;}
.yab_c00338{bottom:362.640000pt;}
.yaa_c00338{bottom:363.026667pt;}
.ya9_c00338{bottom:363.600000pt;}
.ya7_c00338{bottom:363.973333pt;}
.ya5_c00338{bottom:374.066667pt;}
.ya2_c00338{bottom:375.026667pt;}
.ya3_c00338{bottom:375.973333pt;}
.ya4_c00338{bottom:376.560000pt;}
.ya1_c00338{bottom:376.933333pt;}
.y9b_c00338{bottom:387.973333pt;}
.ya0_c00338{bottom:388.360000pt;}
.y9f_c00338{bottom:388.733333pt;}
.y9d_c00338{bottom:389.693333pt;}
.y9e_c00338{bottom:389.893333pt;}
.y9c_c00338{bottom:390.266667pt;}
.y98_c00338{bottom:400.733333pt;}
.y99_c00338{bottom:401.693333pt;}
.y9a_c00338{bottom:402.640000pt;}
.y95_c00338{bottom:414.066667pt;}
.y94_c00338{bottom:415.026667pt;}
.y97_c00338{bottom:415.226667pt;}
.y96_c00338{bottom:415.973333pt;}
.y93_c00338{bottom:416.933333pt;}
.y8e_c00338{bottom:426.640000pt;}
.y92_c00338{bottom:427.400000pt;}
.y90_c00338{bottom:428.360000pt;}
.y8f_c00338{bottom:429.306667pt;}
.y91_c00338{bottom:429.506667pt;}
.y8d_c00338{bottom:440.733333pt;}
.y8c_c00338{bottom:441.693333pt;}
.y89_c00338{bottom:442.640000pt;}
.y8a_c00338{bottom:442.840000pt;}
.y8b_c00338{bottom:443.600000pt;}
.y87_c00338{bottom:453.306667pt;}
.y86_c00338{bottom:454.066667pt;}
.y81_c00338{bottom:454.266667pt;}
.y82_c00338{bottom:455.026667pt;}
.y88_c00338{bottom:455.600000pt;}
.y83_c00338{bottom:455.973333pt;}
.y85_c00338{bottom:456.173333pt;}
.y84_c00338{bottom:456.933333pt;}
.y7d_c00338{bottom:467.400000pt;}
.y7e_c00338{bottom:467.973333pt;}
.y80_c00338{bottom:468.360000pt;}
.y7f_c00338{bottom:470.266667pt;}
.y79_c00338{bottom:478.640000pt;}
.y78_c00338{bottom:479.400000pt;}
.y75_c00338{bottom:479.973333pt;}
.y7a_c00338{bottom:480.360000pt;}
.y77_c00338{bottom:480.733333pt;}
.y7c_c00338{bottom:481.306667pt;}
.y7b_c00338{bottom:481.506667pt;}
.y76_c00338{bottom:482.640000pt;}
.y74_c00338{bottom:494.066667pt;}
.y72_c00338{bottom:495.226667pt;}
.y73_c00338{bottom:495.973333pt;}
.y6f_c00338{bottom:507.026667pt;}
.y6e_c00338{bottom:507.973333pt;}
.y71_c00338{bottom:508.360000pt;}
.y6d_c00338{bottom:508.560000pt;}
.y70_c00338{bottom:508.933333pt;}
.y6b_c00338{bottom:520.360000pt;}
.y6a_c00338{bottom:521.306667pt;}
.y6c_c00338{bottom:522.266667pt;}
.y67_c00338{bottom:532.933333pt;}
.y66_c00338{bottom:533.693333pt;}
.y64_c00338{bottom:533.893333pt;}
.y65_c00338{bottom:534.640000pt;}
.y69_c00338{bottom:534.840000pt;}
.y68_c00338{bottom:535.600000pt;}
.y63_c00338{bottom:557.106667pt;}
.y62_c00338{bottom:559.026667pt;}
.y60_c00338{bottom:574.440000pt;}
.y5f_c00338{bottom:575.400000pt;}
.y61_c00338{bottom:576.360000pt;}
.y5e_c00338{bottom:591.773333pt;}
.y5b_c00338{bottom:591.973333pt;}
.y59_c00338{bottom:593.106667pt;}
.y5d_c00338{bottom:593.693333pt;}
.y5c_c00338{bottom:593.893333pt;}
.y5a_c00338{bottom:595.026667pt;}
.y56_c00338{bottom:608.360000pt;}
.y57_c00338{bottom:610.440000pt;}
.y58_c00338{bottom:611.226667pt;}
.y54_c00338{bottom:611.973333pt;}
.y55_c00338{bottom:612.360000pt;}
.y52_c00338{bottom:627.773333pt;}
.y53_c00338{bottom:628.560000pt;}
.y51_c00338{bottom:629.693333pt;}
.y4d_c00338{bottom:645.106667pt;}
.y4e_c00338{bottom:646.066667pt;}
.y4c_c00338{bottom:647.026667pt;}
.y50_c00338{bottom:647.226667pt;}
.y4f_c00338{bottom:647.973333pt;}
.y4a_c00338{bottom:661.693333pt;}
.y49_c00338{bottom:662.440000pt;}
.y47_c00338{bottom:664.360000pt;}
.y4b_c00338{bottom:664.560000pt;}
.y48_c00338{bottom:665.306667pt;}
.y40_c00338{bottom:679.773333pt;}
.y41_c00338{bottom:681.106667pt;}
.y45_c00338{bottom:681.306667pt;}
.y43_c00338{bottom:681.693333pt;}
.y46_c00338{bottom:681.893333pt;}
.y44_c00338{bottom:682.640000pt;}
.y42_c00338{bottom:683.026667pt;}
.y3b_c00338{bottom:697.106667pt;}
.y3f_c00338{bottom:697.693333pt;}
.y3d_c00338{bottom:698.440000pt;}
.y39_c00338{bottom:699.026667pt;}
.y3a_c00338{bottom:699.226667pt;}
.y3e_c00338{bottom:699.400000pt;}
.y3c_c00338{bottom:700.360000pt;}
.y38_c00338{bottom:715.773333pt;}
.y36_c00338{bottom:716.560000pt;}
.y37_c00338{bottom:717.306667pt;}
.y35_c00338{bottom:717.693333pt;}
.y33_c00338{bottom:731.773333pt;}
.y34_c00338{bottom:733.893333pt;}
.y31_c00338{bottom:734.066667pt;}
.y30_c00338{bottom:734.640000pt;}
.y32_c00338{bottom:735.026667pt;}
.y2f_c00338{bottom:750.440000pt;}
.y2e_c00338{bottom:751.973333pt;}
.y2b_c00338{bottom:752.360000pt;}
.y2c_c00338{bottom:752.373333pt;}
.y2d_c00338{bottom:752.560000pt;}
.y2a_c00338{bottom:767.026667pt;}
.y29_c00338{bottom:767.773333pt;}
.y26_c00338{bottom:785.106667pt;}
.y25_c00338{bottom:786.066667pt;}
.y27_c00338{bottom:786.440000pt;}
.y24_c00338{bottom:787.026667pt;}
.y28_c00338{bottom:788.360000pt;}
.y22_c00338{bottom:803.773333pt;}
.y20_c00338{bottom:804.360000pt;}
.y23_c00338{bottom:804.560000pt;}
.y21_c00338{bottom:805.693333pt;}
.y1f_c00338{bottom:821.106667pt;}
.y1d_c00338{bottom:821.893333pt;}
.y1e_c00338{bottom:822.066667pt;}
.y1c_c00338{bottom:823.026667pt;}
.y1b_c00338{bottom:838.066667pt;}
.y19_c00338{bottom:838.440000pt;}
.y1a_c00338{bottom:840.360000pt;}
.y16_c00338{bottom:855.773333pt;}
.y18_c00338{bottom:855.973333pt;}
.y14_c00338{bottom:857.693333pt;}
.y15_c00338{bottom:857.706667pt;}
.y17_c00338{bottom:857.893333pt;}
.y13_c00338{bottom:873.106667pt;}
.yf_c00338{bottom:890.440000pt;}
.y10_c00338{bottom:891.400000pt;}
.y11_c00338{bottom:891.773333pt;}
.yc_c00338{bottom:892.360000pt;}
.yd_c00338{bottom:892.560000pt;}
.y12_c00338{bottom:893.693333pt;}
.ye_c00338{bottom:893.706667pt;}
.yb_c00338{bottom:907.773333pt;}
.y9_c00338{bottom:924.360000pt;}
.y7_c00338{bottom:925.106667pt;}
.y8_c00338{bottom:926.066667pt;}
.ya_c00338{bottom:927.026667pt;}
.y3_c00338{bottom:943.773333pt;}
.y5_c00338{bottom:944.733333pt;}
.y6_c00338{bottom:945.693333pt;}
.y4_c00338{bottom:945.706667pt;}
.y2_c00338{bottom:977.693333pt;}
.y1_c00338{bottom:979.600000pt;}
.h4_c00338{height:3.739141pt;}
.h8_c00338{height:14.890964pt;}
.h6_c00338{height:20.466875pt;}
.h1_c00338{height:22.303646pt;}
.h7_c00338{height:27.879557pt;}
.h2_c00338{height:31.618698pt;}
.h5_c00338{height:35.357839pt;}
.h3_c00338{height:39.031380pt;}
.h0_c00338{height:1186.666667pt;}
.w0_c00338{width:782.666667pt;}
.x0_c00338{left:0.000000pt;}
.xd_c00338{left:134.666667pt;}
.x51_c00338{left:135.626667pt;}
.x76_c00338{left:136.760000pt;}
.xc9_c00338{left:138.293333pt;}
.xb4_c00338{left:146.666667pt;}
.x18_c00338{left:148.000000pt;}
.x3_c00338{left:149.333333pt;}
.xa2_c00338{left:150.666667pt;}
.x7e_c00338{left:153.333333pt;}
.x6d_c00338{left:159.626667pt;}
.xbb_c00338{left:160.960000pt;}
.x3d_c00338{left:162.293333pt;}
.xa6_c00338{left:164.960000pt;}
.x77_c00338{left:169.133333pt;}
.xda_c00338{left:172.000000pt;}
.x47_c00338{left:172.960000pt;}
.xad_c00338{left:176.000000pt;}
.xb5_c00338{left:176.960000pt;}
.x7f_c00338{left:178.666667pt;}
.xe_c00338{left:180.960000pt;}
.x33_c00338{left:182.666667pt;}
.xe9_c00338{left:183.626667pt;}
.x3e_c00338{left:189.333333pt;}
.x52_c00338{left:193.706667pt;}
.x2c_c00338{left:199.040000pt;}
.xb6_c00338{left:200.000000pt;}
.x48_c00338{left:200.960000pt;}
.xa7_c00338{left:202.666667pt;}
.x6e_c00338{left:204.000000pt;}
.xb7_c00338{left:204.960000pt;}
.xea_c00338{left:206.666667pt;}
.x9b_c00338{left:208.000000pt;}
.x95_c00338{left:209.706667pt;}
.x61_c00338{left:211.040000pt;}
.xe3_c00338{left:213.333333pt;}
.x6f_c00338{left:219.040000pt;}
.x54_c00338{left:221.333333pt;}
.x8f_c00338{left:223.626667pt;}
.x19_c00338{left:225.333333pt;}
.xca_c00338{left:226.293333pt;}
.xc4_c00338{left:227.626667pt;}
.x53_c00338{left:229.333333pt;}
.x4_c00338{left:230.666667pt;}
.xe5_c00338{left:232.000000pt;}
.x62_c00338{left:233.333333pt;}
.xf_c00338{left:235.040000pt;}
.x34_c00338{left:238.666667pt;}
.x87_c00338{left:245.333333pt;}
.xd5_c00338{left:248.000000pt;}
.x5_c00338{left:249.333333pt;}
.x49_c00338{left:251.040000pt;}
.xbc_c00338{left:252.960000pt;}
.x2d_c00338{left:254.666667pt;}
.xa3_c00338{left:257.333333pt;}
.xa0_c00338{left:258.666667pt;}
.x80_c00338{left:264.373333pt;}
.x35_c00338{left:266.293333pt;}
.x1a_c00338{left:270.666667pt;}
.x10_c00338{left:272.000000pt;}
.x70_c00338{left:274.666667pt;}
.x23_c00338{left:276.000000pt;}
.xc5_c00338{left:278.666667pt;}
.xdb_c00338{left:281.333333pt;}
.x63_c00338{left:282.666667pt;}
.x5c_c00338{left:284.000000pt;}
.xaf_c00338{left:285.706667pt;}
.x96_c00338{left:286.666667pt;}
.xc6_c00338{left:288.000000pt;}
.xae_c00338{left:289.333333pt;}
.x1b_c00338{left:290.293333pt;}
.x9c_c00338{left:292.000000pt;}
.x78_c00338{left:294.666667pt;}
.x81_c00338{left:296.000000pt;}
.x90_c00338{left:297.706667pt;}
.xd6_c00338{left:298.666667pt;}
.xbd_c00338{left:300.000000pt;}
.x55_c00338{left:302.666667pt;}
.x64_c00338{left:303.626667pt;}
.x4a_c00338{left:304.960000pt;}
.x36_c00338{left:306.666667pt;}
.xd7_c00338{left:308.000000pt;}
.xe2_c00338{left:308.960000pt;}
.x6_c00338{left:310.466667pt;}
.x2e_c00338{left:312.000000pt;}
.xc2_c00338{left:312.960000pt;}
.xdc_c00338{left:314.666667pt;}
.x1c_c00338{left:317.333333pt;}
.x79_c00338{left:318.293333pt;}
.x3f_c00338{left:320.000000pt;}
.x24_c00338{left:320.960000pt;}
.xde_c00338{left:325.333333pt;}
.xe4_c00338{left:327.040000pt;}
.x11_c00338{left:328.000000pt;}
.xa4_c00338{left:329.706667pt;}
.xa1_c00338{left:332.000000pt;}
.xbe_c00338{left:333.333333pt;}
.x4b_c00338{left:334.293333pt;}
.xc3_c00338{left:337.333333pt;}
.xb8_c00338{left:338.293333pt;}
.x2f_c00338{left:340.960000pt;}
.xc7_c00338{left:344.000000pt;}
.x88_c00338{left:345.333333pt;}
.x40_c00338{left:346.666667pt;}
.xd8_c00338{left:347.626667pt;}
.x56_c00338{left:348.960000pt;}
.x97_c00338{left:350.293333pt;}
.x91_c00338{left:352.373333pt;}
.x71_c00338{left:353.333333pt;}
.xcf_c00338{left:354.666667pt;}
.xa8_c00338{left:356.000000pt;}
.x1_c00338{left:357.333333pt;}
.xdf_c00338{left:358.293333pt;}
.x37_c00338{left:361.333333pt;}
.xdd_c00338{left:364.000000pt;}
.x65_c00338{left:365.333333pt;}
.x82_c00338{left:368.000000pt;}
.x1d_c00338{left:369.706667pt;}
.xd9_c00338{left:372.373333pt;}
.x12_c00338{left:378.466667pt;}
.x4c_c00338{left:380.000000pt;}
.x89_c00338{left:380.960000pt;}
.x83_c00338{left:382.666667pt;}
.x25_c00338{left:385.333333pt;}
.x5d_c00338{left:388.000000pt;}
.xe0_c00338{left:388.960000pt;}
.x66_c00338{left:389.906667pt;}
.x72_c00338{left:391.040000pt;}
.x57_c00338{left:393.706667pt;}
.xd0_c00338{left:394.666667pt;}
.x92_c00338{left:396.000000pt;}
.x30_c00338{left:397.333333pt;}
.x38_c00338{left:398.666667pt;}
.xcb_c00338{left:400.000000pt;}
.x7_c00338{left:402.293333pt;}
.xa9_c00338{left:403.240000pt;}
.xcc_c00338{left:409.333333pt;}
.x7a_c00338{left:410.666667pt;}
.x41_c00338{left:412.960000pt;}
.x13_c00338{left:414.666667pt;}
.xeb_c00338{left:416.000000pt;}
.x5e_c00338{left:419.626667pt;}
.x8a_c00338{left:421.333333pt;}
.xb0_c00338{left:422.666667pt;}
.x7b_c00338{left:427.040000pt;}
.x9d_c00338{left:428.000000pt;}
.x42_c00338{left:429.333333pt;}
.x4d_c00338{left:430.293333pt;}
.x98_c00338{left:432.000000pt;}
.x58_c00338{left:433.333333pt;}
.xe1_c00338{left:434.666667pt;}
.xec_c00338{left:436.000000pt;}
.x93_c00338{left:437.333333pt;}
.x26_c00338{left:439.626667pt;}
.x1e_c00338{left:442.293333pt;}
.x67_c00338{left:443.626667pt;}
.x84_c00338{left:446.293333pt;}
.x8_c00338{left:448.573333pt;}
.x59_c00338{left:450.293333pt;}
.x39_c00338{left:452.000000pt;}
.x14_c00338{left:452.960000pt;}
.x8b_c00338{left:456.960000pt;}
.xe6_c00338{left:459.040000pt;}
.x5f_c00338{left:464.000000pt;}
.xd1_c00338{left:465.333333pt;}
.x9e_c00338{left:466.293333pt;}
.x5a_c00338{left:469.333333pt;}
.xb1_c00338{left:470.293333pt;}
.x1f_c00338{left:472.000000pt;}
.xcd_c00338{left:472.960000pt;}
.x94_c00338{left:476.000000pt;}
.xaa_c00338{left:476.960000pt;}
.x43_c00338{left:481.333333pt;}
.x7c_c00338{left:484.373333pt;}
.x68_c00338{left:485.333333pt;}
.x9_c00338{left:486.666667pt;}
.x15_c00338{left:495.626667pt;}
.x3a_c00338{left:497.333333pt;}
.x4e_c00338{left:498.293333pt;}
.xd2_c00338{left:499.626667pt;}
.xbf_c00338{left:500.960000pt;}
.xb2_c00338{left:506.293333pt;}
.x69_c00338{left:508.000000pt;}
.x27_c00338{left:509.133333pt;}
.x85_c00338{left:510.666667pt;}
.xce_c00338{left:512.000000pt;}
.xa5_c00338{left:513.333333pt;}
.x31_c00338{left:515.626667pt;}
.x8c_c00338{left:519.626667pt;}
.x73_c00338{left:520.960000pt;}
.x20_c00338{left:523.040000pt;}
.x86_c00338{left:528.373333pt;}
.x4f_c00338{left:529.333333pt;}
.xd3_c00338{left:532.960000pt;}
.xb9_c00338{left:533.906667pt;}
.x8d_c00338{left:537.706667pt;}
.x5b_c00338{left:539.040000pt;}
.x7d_c00338{left:540.000000pt;}
.x28_c00338{left:542.666667pt;}
.xa_c00338{left:544.000000pt;}
.x6a_c00338{left:545.706667pt;}
.x44_c00338{left:548.000000pt;}
.x3b_c00338{left:549.333333pt;}
.x60_c00338{left:553.333333pt;}
.x74_c00338{left:554.666667pt;}
.x16_c00338{left:560.000000pt;}
.xab_c00338{left:562.293333pt;}
.xc8_c00338{left:563.626667pt;}
.x29_c00338{left:566.666667pt;}
.xed_c00338{left:571.626667pt;}
.x6b_c00338{left:574.666667pt;}
.xc0_c00338{left:576.000000pt;}
.x2a_c00338{left:577.333333pt;}
.x99_c00338{left:578.293333pt;}
.xd4_c00338{left:582.293333pt;}
.x50_c00338{left:586.666667pt;}
.x45_c00338{left:589.333333pt;}
.x6c_c00338{left:590.293333pt;}
.xe7_c00338{left:593.333333pt;}
.x21_c00338{left:594.293333pt;}
.x32_c00338{left:600.373333pt;}
.xb3_c00338{left:603.626667pt;}
.x46_c00338{left:605.333333pt;}
.x3c_c00338{left:606.666667pt;}
.x2b_c00338{left:610.293333pt;}
.xac_c00338{left:611.626667pt;}
.x17_c00338{left:614.666667pt;}
.xb_c00338{left:618.093333pt;}
.xc1_c00338{left:620.000000pt;}
.x22_c00338{left:621.333333pt;}
.xe8_c00338{left:622.666667pt;}
.xba_c00338{left:624.000000pt;}
.x2_c00338{left:624.960000pt;}
.x9a_c00338{left:629.706667pt;}
.x8e_c00338{left:632.000000pt;}
.xc_c00338{left:633.333333pt;}
.x75_c00338{left:635.040000pt;}
.x9f_c00338{left:638.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_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_27e7a65acd923e58f3a14fc8.woff2')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma2_c00339{transform:matrix(0.348739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348739,0.000000,0.000000,0.250000,0,0);}
.m5b_c00339{transform:matrix(0.365031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365031,0.000000,0.000000,0.250000,0,0);}
.mb1_c00339{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m10_c00339{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m13_c00339{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.md3_c00339{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m90_c00339{transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);}
.md5_c00339{transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);}
.m88_c00339{transform:matrix(0.381902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381902,0.000000,0.000000,0.250000,0,0);}
.ma0_c00339{transform:matrix(0.384874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384874,0.000000,0.000000,0.250000,0,0);}
.mac_c00339{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m57_c00339{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mb4_c00339{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m27_c00339{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.md_c00339{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.md1_c00339{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m98_c00339{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m97_c00339{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m48_c00339{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m47_c00339{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.md6_c00339{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.m89_c00339{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m78_c00339{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m61_c00339{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m62_c00339{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m44_c00339{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.mb0_c00339{transform:matrix(0.412193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412193,0.000000,0.000000,0.250000,0,0);}
.m11_c00339{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m2e_c00339{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m19_c00339{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m2_c00339{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m7_c00339{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m68_c00339{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m52_c00339{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.ma3_c00339{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m14_c00339{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m64_c00339{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m42_c00339{transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);}
.m1a_c00339{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m80_c00339{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mb8_c00339{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mb3_c00339{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m5c_c00339{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m30_c00339{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m4a_c00339{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m5_c00339{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m9e_c00339{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m7f_c00339{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m3b_c00339{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.mb6_c00339{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m8d_c00339{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mb9_c00339{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.m91_c00339{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m7d_c00339{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m7e_c00339{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m39_c00339{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m7c_c00339{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m7b_c00339{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m4b_c00339{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.mb7_c00339{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mc7_c00339{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.mcf_c00339{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.m81_c00339{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.mcb_c00339{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m9b_c00339{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m92_c00339{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.md0_c00339{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m9c_c00339{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.mc0_c00339{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m6f_c00339{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m4f_c00339{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.mb5_c00339{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m23_c00339{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m1d_c00339{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m5f_c00339{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.m25_c00339{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m9d_c00339{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.ma4_c00339{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.maf_c00339{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.m84_c00339{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m99_c00339{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.ma7_c00339{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m37_c00339{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m72_c00339{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m8_c00339{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m5e_c00339{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m6d_c00339{transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);}
.m8a_c00339{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m20_c00339{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.mae_c00339{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m7a_c00339{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m41_c00339{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m86_c00339{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m6a_c00339{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m12_c00339{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m28_c00339{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m24_c00339{transform:matrix(0.497407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497407,0.000000,0.000000,0.250000,0,0);}
.m29_c00339{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m36_c00339{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);}
.m2b_c00339{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mbc_c00339{transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);}
.m6c_c00339{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.mce_c00339{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m73_c00339{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m17_c00339{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m4c_c00339{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mbf_c00339{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.mc4_c00339{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m9_c00339{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m70_c00339{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.md4_c00339{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.mcc_c00339{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m31_c00339{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m82_c00339{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.ma6_c00339{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m96_c00339{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m5d_c00339{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mbe_c00339{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m85_c00339{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m38_c00339{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mc1_c00339{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.ma1_c00339{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.ma5_c00339{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mbb_c00339{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m53_c00339{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m87_c00339{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.maa_c00339{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m1f_c00339{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mb_c00339{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mc8_c00339{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mc9_c00339{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m8b_c00339{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m49_c00339{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mf_c00339{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m4_c00339{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mc6_c00339{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m16_c00339{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m6_c00339{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m59_c00339{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m46_c00339{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m55_c00339{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m2c_c00339{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m69_c00339{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m8c_c00339{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.me_c00339{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m3e_c00339{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m79_c00339{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m8f_c00339{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m75_c00339{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.ma9_c00339{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m34_c00339{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m8e_c00339{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m6b_c00339{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m74_c00339{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m1_c00339{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m3d_c00339{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m83_c00339{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m2f_c00339{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m63_c00339{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mbd_c00339{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m71_c00339{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m3a_c00339{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mc_c00339{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m4e_c00339{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m9a_c00339{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m2a_c00339{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m18_c00339{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.md2_c00339{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m50_c00339{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.mc3_c00339{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m21_c00339{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mb2_c00339{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.mca_c00339{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.m56_c00339{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m60_c00339{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mba_c00339{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m66_c00339{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.mc5_c00339{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.m2d_c00339{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);}
.m22_c00339{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m3c_c00339{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m76_c00339{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m0_c00339{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m1e_c00339{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m33_c00339{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m1c_c00339{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m5a_c00339{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m95_c00339{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m94_c00339{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);}
.m65_c00339{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m1b_c00339{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m3f_c00339{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.mc2_c00339{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m93_c00339{transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);}
.m9f_c00339{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.ma8_c00339{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m15_c00339{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mad_c00339{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m43_c00339{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m54_c00339{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m26_c00339{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mab_c00339{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m67_c00339{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m58_c00339{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mcd_c00339{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m45_c00339{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m32_c00339{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m77_c00339{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m40_c00339{transform:matrix(0.773237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.773237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.773237,0.000000,0.000000,0.250000,0,0);}
.m51_c00339{transform:matrix(0.796474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.796474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.796474,0.000000,0.000000,0.250000,0,0);}
.m35_c00339{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m4d_c00339{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m6e_c00339{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.ma_c00339{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m3_c00339{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00339{vertical-align:-6.000000px;}
.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;}
}
.ws1_c00339{word-spacing:-7.939814px;}
.ws0_c00339{word-spacing:-7.198785px;}
.ws2_c00339{word-spacing:0.000000px;}
.fc0_c00339{color:transparent;}
.fs3_c00339{font-size:3.420000px;}
.fs5_c00339{font-size:18.720000px;}
.fs0_c00339{font-size:20.400000px;}
.fs1_c00339{font-size:25.500000px;}
.fs4_c00339{font-size:28.920000px;}
.fs6_c00339{font-size:32.340000px;}
.fs2_c00339{font-size:35.700000px;}
.fs7_c00339{font-size:39.120000px;}
.y0_c00339{bottom:0.000000px;}
.yd9_c00339{bottom:250.905000px;}
.yd6_c00339{bottom:251.745000px;}
.ydb_c00339{bottom:252.180000px;}
.yda_c00339{bottom:253.245000px;}
.yd7_c00339{bottom:253.905000px;}
.yd8_c00339{bottom:255.405000px;}
.yd0_c00339{bottom:271.245000px;}
.yd2_c00339{bottom:272.325000px;}
.yd5_c00339{bottom:273.405000px;}
.yd3_c00339{bottom:273.630000px;}
.yd1_c00339{bottom:274.470000px;}
.yd4_c00339{bottom:274.905000px;}
.ycf_c00339{bottom:290.745000px;}
.ycc_c00339{bottom:292.245000px;}
.yca_c00339{bottom:292.905000px;}
.yce_c00339{bottom:293.130000px;}
.ycd_c00339{bottom:293.970000px;}
.ycb_c00339{bottom:294.405000px;}
.yc6_c00339{bottom:311.745000px;}
.yc8_c00339{bottom:313.470000px;}
.yc7_c00339{bottom:313.905000px;}
.yc9_c00339{bottom:314.970000px;}
.yc2_c00339{bottom:331.245000px;}
.yc5_c00339{bottom:332.325000px;}
.yc1_c00339{bottom:333.405000px;}
.yc3_c00339{bottom:333.630000px;}
.yc4_c00339{bottom:334.470000px;}
.ybc_c00339{bottom:350.745000px;}
.ybf_c00339{bottom:351.825000px;}
.ybd_c00339{bottom:352.905000px;}
.yc0_c00339{bottom:353.130000px;}
.ybe_c00339{bottom:353.970000px;}
.yb7_c00339{bottom:370.245000px;}
.yb9_c00339{bottom:371.745000px;}
.yb6_c00339{bottom:372.405000px;}
.yb8_c00339{bottom:372.630000px;}
.ybb_c00339{bottom:373.470000px;}
.yba_c00339{bottom:373.905000px;}
.yb5_c00339{bottom:391.245000px;}
.yb3_c00339{bottom:392.130000px;}
.yb2_c00339{bottom:392.970000px;}
.yb4_c00339{bottom:393.405000px;}
.yb0_c00339{bottom:409.470000px;}
.yb1_c00339{bottom:410.745000px;}
.yad_c00339{bottom:411.825000px;}
.yaf_c00339{bottom:412.470000px;}
.yab_c00339{bottom:412.905000px;}
.yac_c00339{bottom:413.130000px;}
.yae_c00339{bottom:413.970000px;}
.ya9_c00339{bottom:430.245000px;}
.yaa_c00339{bottom:431.970000px;}
.ya8_c00339{bottom:432.405000px;}
.ya7_c00339{bottom:449.745000px;}
.ya6_c00339{bottom:451.905000px;}
.ya5_c00339{bottom:466.905000px;}
.ya1_c00339{bottom:469.245000px;}
.ya4_c00339{bottom:470.325000px;}
.ya0_c00339{bottom:470.745000px;}
.ya3_c00339{bottom:471.405000px;}
.ya2_c00339{bottom:472.905000px;}
.y9e_c00339{bottom:488.745000px;}
.y9d_c00339{bottom:489.825000px;}
.y9b_c00339{bottom:490.245000px;}
.y9f_c00339{bottom:490.905000px;}
.y9c_c00339{bottom:491.130000px;}
.y99_c00339{bottom:491.970000px;}
.y9a_c00339{bottom:492.405000px;}
.y97_c00339{bottom:507.405000px;}
.y98_c00339{bottom:508.680000px;}
.y96_c00339{bottom:509.745000px;}
.y95_c00339{bottom:510.825000px;}
.y94_c00339{bottom:511.905000px;}
.y8f_c00339{bottom:526.905000px;}
.y90_c00339{bottom:527.970000px;}
.y92_c00339{bottom:529.245000px;}
.y93_c00339{bottom:529.905000px;}
.y91_c00339{bottom:530.130000px;}
.y8e_c00339{bottom:531.405000px;}
.y89_c00339{bottom:548.745000px;}
.y8d_c00339{bottom:549.630000px;}
.y8c_c00339{bottom:549.825000px;}
.y8a_c00339{bottom:550.470000px;}
.y8b_c00339{bottom:550.905000px;}
.y87_c00339{bottom:567.825000px;}
.y85_c00339{bottom:568.245000px;}
.y88_c00339{bottom:569.325000px;}
.y86_c00339{bottom:570.405000px;}
.y7f_c00339{bottom:587.745000px;}
.y80_c00339{bottom:588.825000px;}
.y84_c00339{bottom:589.470000px;}
.y82_c00339{bottom:589.905000px;}
.y81_c00339{bottom:590.130000px;}
.y83_c00339{bottom:591.405000px;}
.y7a_c00339{bottom:606.405000px;}
.y7b_c00339{bottom:607.245000px;}
.y7d_c00339{bottom:608.325000px;}
.y7e_c00339{bottom:609.405000px;}
.y7c_c00339{bottom:609.630000px;}
.y76_c00339{bottom:626.745000px;}
.y79_c00339{bottom:626.970000px;}
.y78_c00339{bottom:628.050000px;}
.y74_c00339{bottom:628.245000px;}
.y77_c00339{bottom:628.905000px;}
.y75_c00339{bottom:629.130000px;}
.y70_c00339{bottom:645.405000px;}
.y72_c00339{bottom:647.745000px;}
.y73_c00339{bottom:648.405000px;}
.y71_c00339{bottom:649.470000px;}
.y6f_c00339{bottom:649.905000px;}
.y6d_c00339{bottom:667.245000px;}
.y6e_c00339{bottom:668.130000px;}
.y6c_c00339{bottom:668.970000px;}
.y6b_c00339{bottom:669.405000px;}
.y69_c00339{bottom:685.680000px;}
.y67_c00339{bottom:686.745000px;}
.y6a_c00339{bottom:688.470000px;}
.y66_c00339{bottom:688.905000px;}
.y68_c00339{bottom:689.130000px;}
.y63_c00339{bottom:705.825000px;}
.y64_c00339{bottom:706.245000px;}
.y62_c00339{bottom:708.405000px;}
.y65_c00339{bottom:709.470000px;}
.y61_c00339{bottom:725.745000px;}
.y60_c00339{bottom:726.825000px;}
.y5e_c00339{bottom:727.905000px;}
.y5f_c00339{bottom:728.130000px;}
.y5a_c00339{bottom:745.245000px;}
.y5b_c00339{bottom:746.325000px;}
.y5c_c00339{bottom:746.745000px;}
.y59_c00339{bottom:747.405000px;}
.y5d_c00339{bottom:747.630000px;}
.y58_c00339{bottom:764.325000px;}
.y53_c00339{bottom:764.970000px;}
.y56_c00339{bottom:766.245000px;}
.y57_c00339{bottom:766.905000px;}
.y55_c00339{bottom:767.130000px;}
.y54_c00339{bottom:768.405000px;}
.y50_c00339{bottom:785.745000px;}
.y52_c00339{bottom:786.405000px;}
.y51_c00339{bottom:787.905000px;}
.y4e_c00339{bottom:805.245000px;}
.y4f_c00339{bottom:806.130000px;}
.y4c_c00339{bottom:806.325000px;}
.y4d_c00339{bottom:806.970000px;}
.y4b_c00339{bottom:807.405000px;}
.y49_c00339{bottom:822.405000px;}
.y4a_c00339{bottom:823.470000px;}
.y47_c00339{bottom:824.745000px;}
.y48_c00339{bottom:825.825000px;}
.y44_c00339{bottom:826.905000px;}
.y45_c00339{bottom:827.130000px;}
.y46_c00339{bottom:827.970000px;}
.y40_c00339{bottom:844.245000px;}
.y43_c00339{bottom:845.130000px;}
.y42_c00339{bottom:846.405000px;}
.y41_c00339{bottom:847.470000px;}
.y3f_c00339{bottom:863.745000px;}
.y3d_c00339{bottom:864.825000px;}
.y3e_c00339{bottom:865.905000px;}
.y3c_c00339{bottom:866.130000px;}
.y35_c00339{bottom:883.245000px;}
.y37_c00339{bottom:883.470000px;}
.y38_c00339{bottom:883.680000px;}
.y3b_c00339{bottom:884.325000px;}
.y39_c00339{bottom:884.745000px;}
.y3a_c00339{bottom:885.405000px;}
.y36_c00339{bottom:885.630000px;}
.y34_c00339{bottom:886.905000px;}
.y33_c00339{bottom:901.905000px;}
.y30_c00339{bottom:904.245000px;}
.y31_c00339{bottom:905.130000px;}
.y32_c00339{bottom:905.970000px;}
.y2f_c00339{bottom:906.405000px;}
.y2d_c00339{bottom:922.470000px;}
.y2b_c00339{bottom:923.325000px;}
.y28_c00339{bottom:923.745000px;}
.y2e_c00339{bottom:924.405000px;}
.y2a_c00339{bottom:924.630000px;}
.y2c_c00339{bottom:925.470000px;}
.y29_c00339{bottom:925.905000px;}
.y24_c00339{bottom:943.245000px;}
.y25_c00339{bottom:944.130000px;}
.y27_c00339{bottom:944.325000px;}
.y26_c00339{bottom:945.405000px;}
.y23_c00339{bottom:961.905000px;}
.y1e_c00339{bottom:962.745000px;}
.y20_c00339{bottom:963.825000px;}
.y1f_c00339{bottom:964.905000px;}
.y22_c00339{bottom:965.130000px;}
.y21_c00339{bottom:965.970000px;}
.y1d_c00339{bottom:981.405000px;}
.y1a_c00339{bottom:981.825000px;}
.y18_c00339{bottom:982.245000px;}
.y19_c00339{bottom:984.405000px;}
.y1b_c00339{bottom:984.630000px;}
.y1c_c00339{bottom:985.470000px;}
.y15_c00339{bottom:1001.745000px;}
.y16_c00339{bottom:1002.825000px;}
.y13_c00339{bottom:1003.905000px;}
.y14_c00339{bottom:1004.130000px;}
.y17_c00339{bottom:1004.970000px;}
.y10_c00339{bottom:1021.245000px;}
.y12_c00339{bottom:1022.325000px;}
.yf_c00339{bottom:1023.405000px;}
.y11_c00339{bottom:1024.470000px;}
.ya_c00339{bottom:1039.905000px;}
.ye_c00339{bottom:1040.325000px;}
.y8_c00339{bottom:1040.745000px;}
.yb_c00339{bottom:1042.245000px;}
.y7_c00339{bottom:1042.905000px;}
.y9_c00339{bottom:1043.325000px;}
.yd_c00339{bottom:1043.970000px;}
.yc_c00339{bottom:1044.405000px;}
.y3_c00339{bottom:1061.745000px;}
.y6_c00339{bottom:1062.630000px;}
.y5_c00339{bottom:1063.905000px;}
.y4_c00339{bottom:1063.920000px;}
.y2_c00339{bottom:1100.970000px;}
.y1_c00339{bottom:1102.050000px;}
.h4_c00339{height:4.206533px;}
.h6_c00339{height:23.025234px;}
.h1_c00339{height:25.091602px;}
.h2_c00339{height:31.364502px;}
.h5_c00339{height:35.571035px;}
.h7_c00339{height:39.777568px;}
.h3_c00339{height:43.910303px;}
.h8_c00339{height:48.116836px;}
.h0_c00339{height:1335.000000px;}
.w0_c00339{width:880.500000px;}
.x0_c00339{left:0.000000px;}
.x117_c00339{left:148.920000px;}
.x10a_c00339{left:150.000000px;}
.xc0_c00339{left:151.080000px;}
.x2_c00339{left:153.000000px;}
.xf_c00339{left:154.920000px;}
.x101_c00339{left:166.500000px;}
.x3_c00339{left:169.080000px;}
.x107_c00339{left:172.920000px;}
.xf3_c00339{left:174.420000px;}
.xa1_c00339{left:176.580000px;}
.xeb_c00339{left:178.500000px;}
.x1c_c00339{left:180.000000px;}
.x62_c00339{left:181.500000px;}
.xb7_c00339{left:183.000000px;}
.xac_c00339{left:184.500000px;}
.x58_c00339{left:185.580000px;}
.x90_c00339{left:187.080000px;}
.x6b_c00339{left:189.000000px;}
.x10_c00339{left:191.580000px;}
.x87_c00339{left:193.500000px;}
.x105_c00339{left:194.580000px;}
.x4f_c00339{left:196.500000px;}
.x114_c00339{left:197.580000px;}
.x10e_c00339{left:199.080000px;}
.x102_c00339{left:201.420000px;}
.xdf_c00339{left:202.920000px;}
.x59_c00339{left:204.000000px;}
.x37_c00339{left:205.080000px;}
.xe4_c00339{left:207.000000px;}
.xc5_c00339{left:208.500000px;}
.xa2_c00339{left:210.420000px;}
.xcf_c00339{left:211.500000px;}
.x108_c00339{left:213.420000px;}
.xec_c00339{left:214.920000px;}
.xf8_c00339{left:216.000000px;}
.x80_c00339{left:220.500000px;}
.xb2_c00339{left:223.500000px;}
.x1d_c00339{left:225.000000px;}
.xad_c00339{left:226.080000px;}
.x6c_c00339{left:229.500000px;}
.x88_c00339{left:231.000000px;}
.xb8_c00339{left:232.500000px;}
.x91_c00339{left:235.500000px;}
.x38_c00339{left:237.000000px;}
.x2c_c00339{left:240.000000px;}
.x43_c00339{left:241.920000px;}
.xed_c00339{left:244.500000px;}
.x78_c00339{left:246.000000px;}
.xa3_c00339{left:249.000000px;}
.xf9_c00339{left:250.080000px;}
.xe5_c00339{left:251.580000px;}
.xd8_c00339{left:253.920000px;}
.x6d_c00339{left:255.420000px;}
.x4_c00339{left:256.500000px;}
.x89_c00339{left:259.920000px;}
.x11_c00339{left:262.080000px;}
.xfa_c00339{left:267.420000px;}
.x50_c00339{left:268.500000px;}
.xe0_c00339{left:270.000000px;}
.xae_c00339{left:271.080000px;}
.x2d_c00339{left:273.000000px;}
.xee_c00339{left:274.500000px;}
.x5a_c00339{left:276.420000px;}
.x5_c00339{left:277.500000px;}
.x81_c00339{left:278.580000px;}
.x39_c00339{left:280.500000px;}
.x79_c00339{left:283.920000px;}
.xf4_c00339{left:285.000000px;}
.x8a_c00339{left:288.420000px;}
.x9b_c00339{left:289.920000px;}
.xa4_c00339{left:291.000000px;}
.xb9_c00339{left:292.920000px;}
.xfb_c00339{left:294.420000px;}
.x1e_c00339{left:297.000000px;}
.x12_c00339{left:298.500000px;}
.x63_c00339{left:300.420000px;}
.x3a_c00339{left:303.000000px;}
.x6e_c00339{left:304.500000px;}
.xd9_c00339{left:306.000000px;}
.xc1_c00339{left:307.500000px;}
.x6_c00339{left:309.420000px;}
.xa5_c00339{left:310.500000px;}
.x2e_c00339{left:313.500000px;}
.x51_c00339{left:315.000000px;}
.x92_c00339{left:316.080000px;}
.x44_c00339{left:318.000000px;}
.xba_c00339{left:319.500000px;}
.x82_c00339{left:322.080000px;}
.xe1_c00339{left:324.000000px;}
.x6f_c00339{left:325.920000px;}
.x52_c00339{left:327.000000px;}
.x64_c00339{left:328.500000px;}
.x3b_c00339{left:331.080000px;}
.x1f_c00339{left:334.500000px;}
.x8b_c00339{left:337.080000px;}
.xfc_c00339{left:339.000000px;}
.x2f_c00339{left:340.500000px;}
.xa6_c00339{left:342.420000px;}
.x13_c00339{left:346.080000px;}
.xc6_c00339{left:347.580000px;}
.x45_c00339{left:349.080000px;}
.x70_c00339{left:351.420000px;}
.x111_c00339{left:352.920000px;}
.x118_c00339{left:354.000000px;}
.x103_c00339{left:355.920000px;}
.x8c_c00339{left:357.420000px;}
.x93_c00339{left:358.500000px;}
.x20_c00339{left:363.420000px;}
.xe6_c00339{left:364.500000px;}
.xc2_c00339{left:366.000000px;}
.x46_c00339{left:367.500000px;}
.x9c_c00339{left:370.920000px;}
.x3c_c00339{left:372.000000px;}
.x7_c00339{left:375.000000px;}
.x30_c00339{left:376.080000px;}
.xef_c00339{left:382.500000px;}
.x5b_c00339{left:384.000000px;}
.x21_c00339{left:386.580000px;}
.x112_c00339{left:388.080000px;}
.x94_c00339{left:391.500000px;}
.x71_c00339{left:393.000000px;}
.xf0_c00339{left:394.500000px;}
.x14_c00339{left:396.000000px;}
.x9d_c00339{left:397.500000px;}
.x3d_c00339{left:399.420000px;}
.xa7_c00339{left:400.920000px;}
.x115_c00339{left:402.000000px;}
.x1_c00339{left:405.000000px;}
.x53_c00339{left:406.500000px;}
.x7a_c00339{left:408.000000px;}
.x47_c00339{left:412.080000px;}
.x83_c00339{left:414.000000px;}
.x119_c00339{left:415.500000px;}
.xd0_c00339{left:417.000000px;}
.x5c_c00339{left:418.080000px;}
.xbb_c00339{left:420.420000px;}
.x8_c00339{left:421.920000px;}
.x72_c00339{left:424.080000px;}
.xc7_c00339{left:426.000000px;}
.x8d_c00339{left:427.500000px;}
.xf1_c00339{left:429.000000px;}
.x65_c00339{left:430.920000px;}
.x22_c00339{left:432.000000px;}
.xda_c00339{left:433.500000px;}
.xb3_c00339{left:436.080000px;}
.x3e_c00339{left:438.420000px;}
.x113_c00339{left:439.920000px;}
.x11b_c00339{left:441.000000px;}
.xe7_c00339{left:442.500000px;}
.x7b_c00339{left:445.500000px;}
.x54_c00339{left:447.000000px;}
.x15_c00339{left:448.500000px;}
.xc8_c00339{left:450.000000px;}
.x95_c00339{left:451.500000px;}
.xc3_c00339{left:453.000000px;}
.x8e_c00339{left:456.000000px;}
.x31_c00339{left:457.500000px;}
.x66_c00339{left:459.000000px;}
.x73_c00339{left:460.500000px;}
.xfd_c00339{left:462.420000px;}
.xc9_c00339{left:463.920000px;}
.x48_c00339{left:465.420000px;}
.x9e_c00339{left:467.580000px;}
.xd1_c00339{left:469.920000px;}
.x23_c00339{left:475.500000px;}
.x84_c00339{left:478.920000px;}
.x16_c00339{left:480.420000px;}
.x96_c00339{left:483.420000px;}
.xf5_c00339{left:484.500000px;}
.x104_c00339{left:486.000000px;}
.xdb_c00339{left:487.920000px;}
.x67_c00339{left:489.000000px;}
.x74_c00339{left:490.500000px;}
.xfe_c00339{left:492.000000px;}
.x24_c00339{left:495.000000px;}
.x32_c00339{left:496.920000px;}
.xca_c00339{left:499.500000px;}
.x9_c00339{left:501.000000px;}
.x49_c00339{left:502.920000px;}
.x5d_c00339{left:507.420000px;}
.xd2_c00339{left:508.500000px;}
.x10f_c00339{left:509.580000px;}
.xe8_c00339{left:511.500000px;}
.xaf_c00339{left:513.420000px;}
.x116_c00339{left:515.580000px;}
.xa_c00339{left:517.080000px;}
.x10b_c00339{left:519.000000px;}
.xc4_c00339{left:520.920000px;}
.x25_c00339{left:522.420000px;}
.x3f_c00339{left:525.000000px;}
.x33_c00339{left:526.920000px;}
.x106_c00339{left:528.000000px;}
.x4a_c00339{left:529.080000px;}
.x17_c00339{left:534.000000px;}
.xcb_c00339{left:535.500000px;}
.x10c_c00339{left:537.000000px;}
.x109_c00339{left:538.500000px;}
.x7c_c00339{left:540.000000px;}
.x97_c00339{left:541.500000px;}
.xb4_c00339{left:544.080000px;}
.x40_c00339{left:545.580000px;}
.xa8_c00339{left:549.000000px;}
.x5e_c00339{left:554.580000px;}
.xf6_c00339{left:558.000000px;}
.xd3_c00339{left:559.500000px;}
.xb_c00339{left:561.000000px;}
.x26_c00339{left:564.000000px;}
.xdc_c00339{left:565.500000px;}
.x9f_c00339{left:567.420000px;}
.x55_c00339{left:570.420000px;}
.x4b_c00339{left:571.920000px;}
.x5f_c00339{left:573.420000px;}
.x7d_c00339{left:574.500000px;}
.xbc_c00339{left:575.580000px;}
.xf2_c00339{left:577.500000px;}
.x75_c00339{left:580.920000px;}
.xc_c00339{left:582.420000px;}
.xb5_c00339{left:583.500000px;}
.xe9_c00339{left:586.500000px;}
.xf7_c00339{left:589.500000px;}
.xd4_c00339{left:592.080000px;}
.x41_c00339{left:594.000000px;}
.x56_c00339{left:595.920000px;}
.x27_c00339{left:598.080000px;}
.xe2_c00339{left:600.420000px;}
.x18_c00339{left:601.920000px;}
.x85_c00339{left:604.500000px;}
.xb0_c00339{left:607.500000px;}
.x7e_c00339{left:610.920000px;}
.xa9_c00339{left:612.000000px;}
.x8f_c00339{left:613.920000px;}
.x28_c00339{left:616.920000px;}
.x68_c00339{left:618.000000px;}
.x4c_c00339{left:619.080000px;}
.x10d_c00339{left:621.000000px;}
.xd_c00339{left:622.080000px;}
.xcd_c00339{left:624.000000px;}
.xdd_c00339{left:625.920000px;}
.x19_c00339{left:628.500000px;}
.x60_c00339{left:629.580000px;}
.x57_c00339{left:631.500000px;}
.xaa_c00339{left:633.000000px;}
.x98_c00339{left:634.080000px;}
.x34_c00339{left:637.500000px;}
.x86_c00339{left:640.080000px;}
.x11c_c00339{left:642.420000px;}
.xff_c00339{left:643.920000px;}
.x29_c00339{left:645.420000px;}
.x110_c00339{left:646.500000px;}
.xd5_c00339{left:649.500000px;}
.x69_c00339{left:651.000000px;}
.x99_c00339{left:652.920000px;}
.x35_c00339{left:655.500000px;}
.xbd_c00339{left:657.420000px;}
.xcc_c00339{left:658.500000px;}
.xce_c00339{left:660.420000px;}
.xb6_c00339{left:661.920000px;}
.xe_c00339{left:663.000000px;}
.x4d_c00339{left:664.080000px;}
.x76_c00339{left:665.580000px;}
.xb1_c00339{left:669.000000px;}
.xe3_c00339{left:670.920000px;}
.x2a_c00339{left:672.000000px;}
.xde_c00339{left:675.000000px;}
.x100_c00339{left:678.420000px;}
.x9a_c00339{left:681.000000px;}
.x1a_c00339{left:684.000000px;}
.xbe_c00339{left:685.500000px;}
.x77_c00339{left:687.420000px;}
.x2b_c00339{left:688.920000px;}
.xd6_c00339{left:690.000000px;}
.xa0_c00339{left:691.080000px;}
.x4e_c00339{left:692.580000px;}
.x6a_c00339{left:694.500000px;}
.xab_c00339{left:696.000000px;}
.x61_c00339{left:700.500000px;}
.xbf_c00339{left:702.420000px;}
.x36_c00339{left:705.000000px;}
.x11a_c00339{left:706.920000px;}
.xd7_c00339{left:708.420000px;}
.x7f_c00339{left:709.920000px;}
.x42_c00339{left:712.500000px;}
.xea_c00339{left:714.000000px;}
.x1b_c00339{left:718.080000px;}
@media print{
.v1_c00339{vertical-align:-5.333333pt;}
.v0_c00339{vertical-align:0.000000pt;}
.ls0_c00339{letter-spacing:0.000000pt;}
.ws1_c00339{word-spacing:-7.057613pt;}
.ws0_c00339{word-spacing:-6.398920pt;}
.ws2_c00339{word-spacing:0.000000pt;}
.fs3_c00339{font-size:3.040000pt;}
.fs5_c00339{font-size:16.640000pt;}
.fs0_c00339{font-size:18.133333pt;}
.fs1_c00339{font-size:22.666667pt;}
.fs4_c00339{font-size:25.706667pt;}
.fs6_c00339{font-size:28.746667pt;}
.fs2_c00339{font-size:31.733333pt;}
.fs7_c00339{font-size:34.773333pt;}
.y0_c00339{bottom:0.000000pt;}
.yd9_c00339{bottom:223.026667pt;}
.yd6_c00339{bottom:223.773333pt;}
.ydb_c00339{bottom:224.160000pt;}
.yda_c00339{bottom:225.106667pt;}
.yd7_c00339{bottom:225.693333pt;}
.yd8_c00339{bottom:227.026667pt;}
.yd0_c00339{bottom:241.106667pt;}
.yd2_c00339{bottom:242.066667pt;}
.yd5_c00339{bottom:243.026667pt;}
.yd3_c00339{bottom:243.226667pt;}
.yd1_c00339{bottom:243.973333pt;}
.yd4_c00339{bottom:244.360000pt;}
.ycf_c00339{bottom:258.440000pt;}
.ycc_c00339{bottom:259.773333pt;}
.yca_c00339{bottom:260.360000pt;}
.yce_c00339{bottom:260.560000pt;}
.ycd_c00339{bottom:261.306667pt;}
.ycb_c00339{bottom:261.693333pt;}
.yc6_c00339{bottom:277.106667pt;}
.yc8_c00339{bottom:278.640000pt;}
.yc7_c00339{bottom:279.026667pt;}
.yc9_c00339{bottom:279.973333pt;}
.yc2_c00339{bottom:294.440000pt;}
.yc5_c00339{bottom:295.400000pt;}
.yc1_c00339{bottom:296.360000pt;}
.yc3_c00339{bottom:296.560000pt;}
.yc4_c00339{bottom:297.306667pt;}
.ybc_c00339{bottom:311.773333pt;}
.ybf_c00339{bottom:312.733333pt;}
.ybd_c00339{bottom:313.693333pt;}
.yc0_c00339{bottom:313.893333pt;}
.ybe_c00339{bottom:314.640000pt;}
.yb7_c00339{bottom:329.106667pt;}
.yb9_c00339{bottom:330.440000pt;}
.yb6_c00339{bottom:331.026667pt;}
.yb8_c00339{bottom:331.226667pt;}
.ybb_c00339{bottom:331.973333pt;}
.yba_c00339{bottom:332.360000pt;}
.yb5_c00339{bottom:347.773333pt;}
.yb3_c00339{bottom:348.560000pt;}
.yb2_c00339{bottom:349.306667pt;}
.yb4_c00339{bottom:349.693333pt;}
.yb0_c00339{bottom:363.973333pt;}
.yb1_c00339{bottom:365.106667pt;}
.yad_c00339{bottom:366.066667pt;}
.yaf_c00339{bottom:366.640000pt;}
.yab_c00339{bottom:367.026667pt;}
.yac_c00339{bottom:367.226667pt;}
.yae_c00339{bottom:367.973333pt;}
.ya9_c00339{bottom:382.440000pt;}
.yaa_c00339{bottom:383.973333pt;}
.ya8_c00339{bottom:384.360000pt;}
.ya7_c00339{bottom:399.773333pt;}
.ya6_c00339{bottom:401.693333pt;}
.ya5_c00339{bottom:415.026667pt;}
.ya1_c00339{bottom:417.106667pt;}
.ya4_c00339{bottom:418.066667pt;}
.ya0_c00339{bottom:418.440000pt;}
.ya3_c00339{bottom:419.026667pt;}
.ya2_c00339{bottom:420.360000pt;}
.y9e_c00339{bottom:434.440000pt;}
.y9d_c00339{bottom:435.400000pt;}
.y9b_c00339{bottom:435.773333pt;}
.y9f_c00339{bottom:436.360000pt;}
.y9c_c00339{bottom:436.560000pt;}
.y99_c00339{bottom:437.306667pt;}
.y9a_c00339{bottom:437.693333pt;}
.y97_c00339{bottom:451.026667pt;}
.y98_c00339{bottom:452.160000pt;}
.y96_c00339{bottom:453.106667pt;}
.y95_c00339{bottom:454.066667pt;}
.y94_c00339{bottom:455.026667pt;}
.y8f_c00339{bottom:468.360000pt;}
.y90_c00339{bottom:469.306667pt;}
.y92_c00339{bottom:470.440000pt;}
.y93_c00339{bottom:471.026667pt;}
.y91_c00339{bottom:471.226667pt;}
.y8e_c00339{bottom:472.360000pt;}
.y89_c00339{bottom:487.773333pt;}
.y8d_c00339{bottom:488.560000pt;}
.y8c_c00339{bottom:488.733333pt;}
.y8a_c00339{bottom:489.306667pt;}
.y8b_c00339{bottom:489.693333pt;}
.y87_c00339{bottom:504.733333pt;}
.y85_c00339{bottom:505.106667pt;}
.y88_c00339{bottom:506.066667pt;}
.y86_c00339{bottom:507.026667pt;}
.y7f_c00339{bottom:522.440000pt;}
.y80_c00339{bottom:523.400000pt;}
.y84_c00339{bottom:523.973333pt;}
.y82_c00339{bottom:524.360000pt;}
.y81_c00339{bottom:524.560000pt;}
.y83_c00339{bottom:525.693333pt;}
.y7a_c00339{bottom:539.026667pt;}
.y7b_c00339{bottom:539.773333pt;}
.y7d_c00339{bottom:540.733333pt;}
.y7e_c00339{bottom:541.693333pt;}
.y7c_c00339{bottom:541.893333pt;}
.y76_c00339{bottom:557.106667pt;}
.y79_c00339{bottom:557.306667pt;}
.y78_c00339{bottom:558.266667pt;}
.y74_c00339{bottom:558.440000pt;}
.y77_c00339{bottom:559.026667pt;}
.y75_c00339{bottom:559.226667pt;}
.y70_c00339{bottom:573.693333pt;}
.y72_c00339{bottom:575.773333pt;}
.y73_c00339{bottom:576.360000pt;}
.y71_c00339{bottom:577.306667pt;}
.y6f_c00339{bottom:577.693333pt;}
.y6d_c00339{bottom:593.106667pt;}
.y6e_c00339{bottom:593.893333pt;}
.y6c_c00339{bottom:594.640000pt;}
.y6b_c00339{bottom:595.026667pt;}
.y69_c00339{bottom:609.493333pt;}
.y67_c00339{bottom:610.440000pt;}
.y6a_c00339{bottom:611.973333pt;}
.y66_c00339{bottom:612.360000pt;}
.y68_c00339{bottom:612.560000pt;}
.y63_c00339{bottom:627.400000pt;}
.y64_c00339{bottom:627.773333pt;}
.y62_c00339{bottom:629.693333pt;}
.y65_c00339{bottom:630.640000pt;}
.y61_c00339{bottom:645.106667pt;}
.y60_c00339{bottom:646.066667pt;}
.y5e_c00339{bottom:647.026667pt;}
.y5f_c00339{bottom:647.226667pt;}
.y5a_c00339{bottom:662.440000pt;}
.y5b_c00339{bottom:663.400000pt;}
.y5c_c00339{bottom:663.773333pt;}
.y59_c00339{bottom:664.360000pt;}
.y5d_c00339{bottom:664.560000pt;}
.y58_c00339{bottom:679.400000pt;}
.y53_c00339{bottom:679.973333pt;}
.y56_c00339{bottom:681.106667pt;}
.y57_c00339{bottom:681.693333pt;}
.y55_c00339{bottom:681.893333pt;}
.y54_c00339{bottom:683.026667pt;}
.y50_c00339{bottom:698.440000pt;}
.y52_c00339{bottom:699.026667pt;}
.y51_c00339{bottom:700.360000pt;}
.y4e_c00339{bottom:715.773333pt;}
.y4f_c00339{bottom:716.560000pt;}
.y4c_c00339{bottom:716.733333pt;}
.y4d_c00339{bottom:717.306667pt;}
.y4b_c00339{bottom:717.693333pt;}
.y49_c00339{bottom:731.026667pt;}
.y4a_c00339{bottom:731.973333pt;}
.y47_c00339{bottom:733.106667pt;}
.y48_c00339{bottom:734.066667pt;}
.y44_c00339{bottom:735.026667pt;}
.y45_c00339{bottom:735.226667pt;}
.y46_c00339{bottom:735.973333pt;}
.y40_c00339{bottom:750.440000pt;}
.y43_c00339{bottom:751.226667pt;}
.y42_c00339{bottom:752.360000pt;}
.y41_c00339{bottom:753.306667pt;}
.y3f_c00339{bottom:767.773333pt;}
.y3d_c00339{bottom:768.733333pt;}
.y3e_c00339{bottom:769.693333pt;}
.y3c_c00339{bottom:769.893333pt;}
.y35_c00339{bottom:785.106667pt;}
.y37_c00339{bottom:785.306667pt;}
.y38_c00339{bottom:785.493333pt;}
.y3b_c00339{bottom:786.066667pt;}
.y39_c00339{bottom:786.440000pt;}
.y3a_c00339{bottom:787.026667pt;}
.y36_c00339{bottom:787.226667pt;}
.y34_c00339{bottom:788.360000pt;}
.y33_c00339{bottom:801.693333pt;}
.y30_c00339{bottom:803.773333pt;}
.y31_c00339{bottom:804.560000pt;}
.y32_c00339{bottom:805.306667pt;}
.y2f_c00339{bottom:805.693333pt;}
.y2d_c00339{bottom:819.973333pt;}
.y2b_c00339{bottom:820.733333pt;}
.y28_c00339{bottom:821.106667pt;}
.y2e_c00339{bottom:821.693333pt;}
.y2a_c00339{bottom:821.893333pt;}
.y2c_c00339{bottom:822.640000pt;}
.y29_c00339{bottom:823.026667pt;}
.y24_c00339{bottom:838.440000pt;}
.y25_c00339{bottom:839.226667pt;}
.y27_c00339{bottom:839.400000pt;}
.y26_c00339{bottom:840.360000pt;}
.y23_c00339{bottom:855.026667pt;}
.y1e_c00339{bottom:855.773333pt;}
.y20_c00339{bottom:856.733333pt;}
.y1f_c00339{bottom:857.693333pt;}
.y22_c00339{bottom:857.893333pt;}
.y21_c00339{bottom:858.640000pt;}
.y1d_c00339{bottom:872.360000pt;}
.y1a_c00339{bottom:872.733333pt;}
.y18_c00339{bottom:873.106667pt;}
.y19_c00339{bottom:875.026667pt;}
.y1b_c00339{bottom:875.226667pt;}
.y1c_c00339{bottom:875.973333pt;}
.y15_c00339{bottom:890.440000pt;}
.y16_c00339{bottom:891.400000pt;}
.y13_c00339{bottom:892.360000pt;}
.y14_c00339{bottom:892.560000pt;}
.y17_c00339{bottom:893.306667pt;}
.y10_c00339{bottom:907.773333pt;}
.y12_c00339{bottom:908.733333pt;}
.yf_c00339{bottom:909.693333pt;}
.y11_c00339{bottom:910.640000pt;}
.ya_c00339{bottom:924.360000pt;}
.ye_c00339{bottom:924.733333pt;}
.y8_c00339{bottom:925.106667pt;}
.yb_c00339{bottom:926.440000pt;}
.y7_c00339{bottom:927.026667pt;}
.y9_c00339{bottom:927.400000pt;}
.yd_c00339{bottom:927.973333pt;}
.yc_c00339{bottom:928.360000pt;}
.y3_c00339{bottom:943.773333pt;}
.y6_c00339{bottom:944.560000pt;}
.y5_c00339{bottom:945.693333pt;}
.y4_c00339{bottom:945.706667pt;}
.y2_c00339{bottom:978.640000pt;}
.y1_c00339{bottom:979.600000pt;}
.h4_c00339{height:3.739141pt;}
.h6_c00339{height:20.466875pt;}
.h1_c00339{height:22.303646pt;}
.h2_c00339{height:27.879557pt;}
.h5_c00339{height:31.618698pt;}
.h7_c00339{height:35.357839pt;}
.h3_c00339{height:39.031380pt;}
.h8_c00339{height:42.770521pt;}
.h0_c00339{height:1186.666667pt;}
.w0_c00339{width:782.666667pt;}
.x0_c00339{left:0.000000pt;}
.x117_c00339{left:132.373333pt;}
.x10a_c00339{left:133.333333pt;}
.xc0_c00339{left:134.293333pt;}
.x2_c00339{left:136.000000pt;}
.xf_c00339{left:137.706667pt;}
.x101_c00339{left:148.000000pt;}
.x3_c00339{left:150.293333pt;}
.x107_c00339{left:153.706667pt;}
.xf3_c00339{left:155.040000pt;}
.xa1_c00339{left:156.960000pt;}
.xeb_c00339{left:158.666667pt;}
.x1c_c00339{left:160.000000pt;}
.x62_c00339{left:161.333333pt;}
.xb7_c00339{left:162.666667pt;}
.xac_c00339{left:164.000000pt;}
.x58_c00339{left:164.960000pt;}
.x90_c00339{left:166.293333pt;}
.x6b_c00339{left:168.000000pt;}
.x10_c00339{left:170.293333pt;}
.x87_c00339{left:172.000000pt;}
.x105_c00339{left:172.960000pt;}
.x4f_c00339{left:174.666667pt;}
.x114_c00339{left:175.626667pt;}
.x10e_c00339{left:176.960000pt;}
.x102_c00339{left:179.040000pt;}
.xdf_c00339{left:180.373333pt;}
.x59_c00339{left:181.333333pt;}
.x37_c00339{left:182.293333pt;}
.xe4_c00339{left:184.000000pt;}
.xc5_c00339{left:185.333333pt;}
.xa2_c00339{left:187.040000pt;}
.xcf_c00339{left:188.000000pt;}
.x108_c00339{left:189.706667pt;}
.xec_c00339{left:191.040000pt;}
.xf8_c00339{left:192.000000pt;}
.x80_c00339{left:196.000000pt;}
.xb2_c00339{left:198.666667pt;}
.x1d_c00339{left:200.000000pt;}
.xad_c00339{left:200.960000pt;}
.x6c_c00339{left:204.000000pt;}
.x88_c00339{left:205.333333pt;}
.xb8_c00339{left:206.666667pt;}
.x91_c00339{left:209.333333pt;}
.x38_c00339{left:210.666667pt;}
.x2c_c00339{left:213.333333pt;}
.x43_c00339{left:215.040000pt;}
.xed_c00339{left:217.333333pt;}
.x78_c00339{left:218.666667pt;}
.xa3_c00339{left:221.333333pt;}
.xf9_c00339{left:222.293333pt;}
.xe5_c00339{left:223.626667pt;}
.xd8_c00339{left:225.706667pt;}
.x6d_c00339{left:227.040000pt;}
.x4_c00339{left:228.000000pt;}
.x89_c00339{left:231.040000pt;}
.x11_c00339{left:232.960000pt;}
.xfa_c00339{left:237.706667pt;}
.x50_c00339{left:238.666667pt;}
.xe0_c00339{left:240.000000pt;}
.xae_c00339{left:240.960000pt;}
.x2d_c00339{left:242.666667pt;}
.xee_c00339{left:244.000000pt;}
.x5a_c00339{left:245.706667pt;}
.x5_c00339{left:246.666667pt;}
.x81_c00339{left:247.626667pt;}
.x39_c00339{left:249.333333pt;}
.x79_c00339{left:252.373333pt;}
.xf4_c00339{left:253.333333pt;}
.x8a_c00339{left:256.373333pt;}
.x9b_c00339{left:257.706667pt;}
.xa4_c00339{left:258.666667pt;}
.xb9_c00339{left:260.373333pt;}
.xfb_c00339{left:261.706667pt;}
.x1e_c00339{left:264.000000pt;}
.x12_c00339{left:265.333333pt;}
.x63_c00339{left:267.040000pt;}
.x3a_c00339{left:269.333333pt;}
.x6e_c00339{left:270.666667pt;}
.xd9_c00339{left:272.000000pt;}
.xc1_c00339{left:273.333333pt;}
.x6_c00339{left:275.040000pt;}
.xa5_c00339{left:276.000000pt;}
.x2e_c00339{left:278.666667pt;}
.x51_c00339{left:280.000000pt;}
.x92_c00339{left:280.960000pt;}
.x44_c00339{left:282.666667pt;}
.xba_c00339{left:284.000000pt;}
.x82_c00339{left:286.293333pt;}
.xe1_c00339{left:288.000000pt;}
.x6f_c00339{left:289.706667pt;}
.x52_c00339{left:290.666667pt;}
.x64_c00339{left:292.000000pt;}
.x3b_c00339{left:294.293333pt;}
.x1f_c00339{left:297.333333pt;}
.x8b_c00339{left:299.626667pt;}
.xfc_c00339{left:301.333333pt;}
.x2f_c00339{left:302.666667pt;}
.xa6_c00339{left:304.373333pt;}
.x13_c00339{left:307.626667pt;}
.xc6_c00339{left:308.960000pt;}
.x45_c00339{left:310.293333pt;}
.x70_c00339{left:312.373333pt;}
.x111_c00339{left:313.706667pt;}
.x118_c00339{left:314.666667pt;}
.x103_c00339{left:316.373333pt;}
.x8c_c00339{left:317.706667pt;}
.x93_c00339{left:318.666667pt;}
.x20_c00339{left:323.040000pt;}
.xe6_c00339{left:324.000000pt;}
.xc2_c00339{left:325.333333pt;}
.x46_c00339{left:326.666667pt;}
.x9c_c00339{left:329.706667pt;}
.x3c_c00339{left:330.666667pt;}
.x7_c00339{left:333.333333pt;}
.x30_c00339{left:334.293333pt;}
.xef_c00339{left:340.000000pt;}
.x5b_c00339{left:341.333333pt;}
.x21_c00339{left:343.626667pt;}
.x112_c00339{left:344.960000pt;}
.x94_c00339{left:348.000000pt;}
.x71_c00339{left:349.333333pt;}
.xf0_c00339{left:350.666667pt;}
.x14_c00339{left:352.000000pt;}
.x9d_c00339{left:353.333333pt;}
.x3d_c00339{left:355.040000pt;}
.xa7_c00339{left:356.373333pt;}
.x115_c00339{left:357.333333pt;}
.x1_c00339{left:360.000000pt;}
.x53_c00339{left:361.333333pt;}
.x7a_c00339{left:362.666667pt;}
.x47_c00339{left:366.293333pt;}
.x83_c00339{left:368.000000pt;}
.x119_c00339{left:369.333333pt;}
.xd0_c00339{left:370.666667pt;}
.x5c_c00339{left:371.626667pt;}
.xbb_c00339{left:373.706667pt;}
.x8_c00339{left:375.040000pt;}
.x72_c00339{left:376.960000pt;}
.xc7_c00339{left:378.666667pt;}
.x8d_c00339{left:380.000000pt;}
.xf1_c00339{left:381.333333pt;}
.x65_c00339{left:383.040000pt;}
.x22_c00339{left:384.000000pt;}
.xda_c00339{left:385.333333pt;}
.xb3_c00339{left:387.626667pt;}
.x3e_c00339{left:389.706667pt;}
.x113_c00339{left:391.040000pt;}
.x11b_c00339{left:392.000000pt;}
.xe7_c00339{left:393.333333pt;}
.x7b_c00339{left:396.000000pt;}
.x54_c00339{left:397.333333pt;}
.x15_c00339{left:398.666667pt;}
.xc8_c00339{left:400.000000pt;}
.x95_c00339{left:401.333333pt;}
.xc3_c00339{left:402.666667pt;}
.x8e_c00339{left:405.333333pt;}
.x31_c00339{left:406.666667pt;}
.x66_c00339{left:408.000000pt;}
.x73_c00339{left:409.333333pt;}
.xfd_c00339{left:411.040000pt;}
.xc9_c00339{left:412.373333pt;}
.x48_c00339{left:413.706667pt;}
.x9e_c00339{left:415.626667pt;}
.xd1_c00339{left:417.706667pt;}
.x23_c00339{left:422.666667pt;}
.x84_c00339{left:425.706667pt;}
.x16_c00339{left:427.040000pt;}
.x96_c00339{left:429.706667pt;}
.xf5_c00339{left:430.666667pt;}
.x104_c00339{left:432.000000pt;}
.xdb_c00339{left:433.706667pt;}
.x67_c00339{left:434.666667pt;}
.x74_c00339{left:436.000000pt;}
.xfe_c00339{left:437.333333pt;}
.x24_c00339{left:440.000000pt;}
.x32_c00339{left:441.706667pt;}
.xca_c00339{left:444.000000pt;}
.x9_c00339{left:445.333333pt;}
.x49_c00339{left:447.040000pt;}
.x5d_c00339{left:451.040000pt;}
.xd2_c00339{left:452.000000pt;}
.x10f_c00339{left:452.960000pt;}
.xe8_c00339{left:454.666667pt;}
.xaf_c00339{left:456.373333pt;}
.x116_c00339{left:458.293333pt;}
.xa_c00339{left:459.626667pt;}
.x10b_c00339{left:461.333333pt;}
.xc4_c00339{left:463.040000pt;}
.x25_c00339{left:464.373333pt;}
.x3f_c00339{left:466.666667pt;}
.x33_c00339{left:468.373333pt;}
.x106_c00339{left:469.333333pt;}
.x4a_c00339{left:470.293333pt;}
.x17_c00339{left:474.666667pt;}
.xcb_c00339{left:476.000000pt;}
.x10c_c00339{left:477.333333pt;}
.x109_c00339{left:478.666667pt;}
.x7c_c00339{left:480.000000pt;}
.x97_c00339{left:481.333333pt;}
.xb4_c00339{left:483.626667pt;}
.x40_c00339{left:484.960000pt;}
.xa8_c00339{left:488.000000pt;}
.x5e_c00339{left:492.960000pt;}
.xf6_c00339{left:496.000000pt;}
.xd3_c00339{left:497.333333pt;}
.xb_c00339{left:498.666667pt;}
.x26_c00339{left:501.333333pt;}
.xdc_c00339{left:502.666667pt;}
.x9f_c00339{left:504.373333pt;}
.x55_c00339{left:507.040000pt;}
.x4b_c00339{left:508.373333pt;}
.x5f_c00339{left:509.706667pt;}
.x7d_c00339{left:510.666667pt;}
.xbc_c00339{left:511.626667pt;}
.xf2_c00339{left:513.333333pt;}
.x75_c00339{left:516.373333pt;}
.xc_c00339{left:517.706667pt;}
.xb5_c00339{left:518.666667pt;}
.xe9_c00339{left:521.333333pt;}
.xf7_c00339{left:524.000000pt;}
.xd4_c00339{left:526.293333pt;}
.x41_c00339{left:528.000000pt;}
.x56_c00339{left:529.706667pt;}
.x27_c00339{left:531.626667pt;}
.xe2_c00339{left:533.706667pt;}
.x18_c00339{left:535.040000pt;}
.x85_c00339{left:537.333333pt;}
.xb0_c00339{left:540.000000pt;}
.x7e_c00339{left:543.040000pt;}
.xa9_c00339{left:544.000000pt;}
.x8f_c00339{left:545.706667pt;}
.x28_c00339{left:548.373333pt;}
.x68_c00339{left:549.333333pt;}
.x4c_c00339{left:550.293333pt;}
.x10d_c00339{left:552.000000pt;}
.xd_c00339{left:552.960000pt;}
.xcd_c00339{left:554.666667pt;}
.xdd_c00339{left:556.373333pt;}
.x19_c00339{left:558.666667pt;}
.x60_c00339{left:559.626667pt;}
.x57_c00339{left:561.333333pt;}
.xaa_c00339{left:562.666667pt;}
.x98_c00339{left:563.626667pt;}
.x34_c00339{left:566.666667pt;}
.x86_c00339{left:568.960000pt;}
.x11c_c00339{left:571.040000pt;}
.xff_c00339{left:572.373333pt;}
.x29_c00339{left:573.706667pt;}
.x110_c00339{left:574.666667pt;}
.xd5_c00339{left:577.333333pt;}
.x69_c00339{left:578.666667pt;}
.x99_c00339{left:580.373333pt;}
.x35_c00339{left:582.666667pt;}
.xbd_c00339{left:584.373333pt;}
.xcc_c00339{left:585.333333pt;}
.xce_c00339{left:587.040000pt;}
.xb6_c00339{left:588.373333pt;}
.xe_c00339{left:589.333333pt;}
.x4d_c00339{left:590.293333pt;}
.x76_c00339{left:591.626667pt;}
.xb1_c00339{left:594.666667pt;}
.xe3_c00339{left:596.373333pt;}
.x2a_c00339{left:597.333333pt;}
.xde_c00339{left:600.000000pt;}
.x100_c00339{left:603.040000pt;}
.x9a_c00339{left:605.333333pt;}
.x1a_c00339{left:608.000000pt;}
.xbe_c00339{left:609.333333pt;}
.x77_c00339{left:611.040000pt;}
.x2b_c00339{left:612.373333pt;}
.xd6_c00339{left:613.333333pt;}
.xa0_c00339{left:614.293333pt;}
.x4e_c00339{left:615.626667pt;}
.x6a_c00339{left:617.333333pt;}
.xab_c00339{left:618.666667pt;}
.x61_c00339{left:622.666667pt;}
.xbf_c00339{left:624.373333pt;}
.x36_c00339{left:626.666667pt;}
.x11a_c00339{left:628.373333pt;}
.xd7_c00339{left:629.706667pt;}
.x7f_c00339{left:631.040000pt;}
.x42_c00339{left:633.333333pt;}
.xea_c00339{left:634.666667pt;}
.x1b_c00339{left:638.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_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_87c10ca501471ad4bc2e1b7d.woff2')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me0_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);}
.m5a_c00340{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.meb_c00340{transform:matrix(0.304487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304487,0.000000,0.000000,0.250000,0,0);}
.m57_c00340{transform:matrix(0.328221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328221,0.000000,0.000000,0.250000,0,0);}
.m97_c00340{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);}
.m88_c00340{transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);}
.m94_c00340{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.m80_c00340{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m98_c00340{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m86_c00340{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m70_c00340{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.mb7_c00340{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m15_c00340{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m83_c00340{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m2_c00340{transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);}
.ma5_c00340{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m62_c00340{transform:matrix(0.382285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382285,0.000000,0.000000,0.250000,0,0);}
.m39_c00340{transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);}
.ma1_c00340{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m84_c00340{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.mad_c00340{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mb9_c00340{transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);}
.m8_c00340{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m5f_c00340{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.maf_c00340{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m3a_c00340{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m2b_c00340{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.mba_c00340{transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);}
.m1f_c00340{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.ma7_c00340{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.mae_c00340{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m60_c00340{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.ma3_c00340{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m18_c00340{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m4e_c00340{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.maa_c00340{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m93_c00340{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m12_c00340{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m71_c00340{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m49_c00340{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m78_c00340{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m75_c00340{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m7f_c00340{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.mbc_c00340{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.mc5_c00340{transform:matrix(0.420673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420673,0.000000,0.000000,0.250000,0,0);}
.m8c_c00340{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.me1_c00340{transform:matrix(0.421324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421324,0.000000,0.000000,0.250000,0,0);}
.me_c00340{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m64_c00340{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m8b_c00340{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m6b_c00340{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m52_c00340{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.mcb_c00340{transform:matrix(0.425481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425481,0.000000,0.000000,0.250000,0,0);}
.m96_c00340{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m9a_c00340{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m1a_c00340{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.mab_c00340{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m48_c00340{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.m5e_c00340{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mb_c00340{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.ma_c00340{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m6d_c00340{transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);}
.m2f_c00340{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mc8_c00340{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m58_c00340{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m5d_c00340{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m1c_c00340{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.m26_c00340{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m8d_c00340{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.mb3_c00340{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m35_c00340{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m4f_c00340{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m8a_c00340{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m3e_c00340{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m51_c00340{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m4d_c00340{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.mcd_c00340{transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);}
.m0_c00340{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.mcf_c00340{transform:matrix(0.455128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455128,0.000000,0.000000,0.250000,0,0);}
.mc1_c00340{transform:matrix(0.455929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455929,0.000000,0.000000,0.250000,0,0);}
.m53_c00340{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m22_c00340{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mc7_c00340{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mb1_c00340{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.m6f_c00340{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m44_c00340{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m21_c00340{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.md2_c00340{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.mc9_c00340{transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);}
.m6c_c00340{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.me7_c00340{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.ma8_c00340{transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);}
.m9d_c00340{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m77_c00340{transform:matrix(0.469748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469748,0.000000,0.000000,0.250000,0,0);}
.m8e_c00340{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.mdd_c00340{transform:matrix(0.472756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472756,0.000000,0.000000,0.250000,0,0);}
.m59_c00340{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m92_c00340{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m9_c00340{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mdc_c00340{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.md9_c00340{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m45_c00340{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m32_c00340{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.me4_c00340{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m95_c00340{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m3b_c00340{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.me8_c00340{transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);}
.mdb_c00340{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.m43_c00340{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m10_c00340{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_c00340{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m5_c00340{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m4a_c00340{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m20_c00340{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m6a_c00340{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m2a_c00340{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.mea_c00340{transform:matrix(0.509615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509615,0.000000,0.000000,0.250000,0,0);}
.m82_c00340{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m7e_c00340{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m6e_c00340{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mc0_c00340{transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);}
.m85_c00340{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m73_c00340{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m55_c00340{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.md_c00340{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mac_c00340{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m1d_c00340{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m69_c00340{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m3f_c00340{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m3c_c00340{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m91_c00340{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m9c_c00340{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m13_c00340{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m9f_c00340{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.me2_c00340{transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);}
.m87_c00340{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m2e_c00340{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m7_c00340{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m74_c00340{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m3_c00340{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mf_c00340{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m7b_c00340{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m33_c00340{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m90_c00340{transform:matrix(0.539889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539889,0.000000,0.000000,0.250000,0,0);}
.mbe_c00340{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m3d_c00340{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.ma4_c00340{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m63_c00340{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m37_c00340{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m46_c00340{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m23_c00340{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m41_c00340{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m89_c00340{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m65_c00340{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mca_c00340{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m61_c00340{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m56_c00340{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mbf_c00340{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m2c_c00340{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mb4_c00340{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m30_c00340{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m68_c00340{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m66_c00340{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m42_c00340{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);}
.m19_c00340{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m17_c00340{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.md6_c00340{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m6_c00340{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m36_c00340{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m11_c00340{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mc_c00340{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m34_c00340{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.m8f_c00340{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.ma0_c00340{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m5b_c00340{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m79_c00340{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m81_c00340{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m28_c00340{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m38_c00340{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m14_c00340{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mb2_c00340{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.mbb_c00340{transform:matrix(0.608088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608088,0.000000,0.000000,0.250000,0,0);}
.m7c_c00340{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m1_c00340{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.md0_c00340{transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);}
.mc3_c00340{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m2d_c00340{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m25_c00340{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mc2_c00340{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m4b_c00340{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m54_c00340{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.mb5_c00340{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.ma9_c00340{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.me3_c00340{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m4c_c00340{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);}
.m16_c00340{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m4_c00340{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.me9_c00340{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.m27_c00340{transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);}
.m7d_c00340{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m67_c00340{transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);}
.m47_c00340{transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);}
.m99_c00340{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.mc4_c00340{transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);}
.m24_c00340{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mdf_c00340{transform:matrix(0.667929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667929,0.000000,0.000000,0.250000,0,0);}
.mb6_c00340{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.mcc_c00340{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.mc6_c00340{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.md3_c00340{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.me6_c00340{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m7a_c00340{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.mbd_c00340{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.mb8_c00340{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);}
.ma2_c00340{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m72_c00340{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.me5_c00340{transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);}
.m5c_c00340{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.md4_c00340{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.mde_c00340{transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);}
.md1_c00340{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m29_c00340{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m1e_c00340{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m1b_c00340{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m31_c00340{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mb0_c00340{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m50_c00340{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mce_c00340{transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);}
.md7_c00340{transform:matrix(0.805066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805066,0.000000,0.000000,0.250000,0,0);}
.m40_c00340{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.md8_c00340{transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);}
.ma6_c00340{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.md5_c00340{transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);}
.mda_c00340{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m9b_c00340{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m9e_c00340{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v3_c00340{vertical-align:-6.000000px;}
.v0_c00340{vertical-align:0.000000px;}
.v2_c00340{vertical-align:6.000000px;}
.v1_c00340{vertical-align:18.000000px;}
.ls1_c00340{letter-spacing:0.000000px;}
.ls0_c00340{letter-spacing:57.908049px;}
.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;}
}
.ws5_c00340{word-spacing:-65.862129px;}
.ws1_c00340{word-spacing:-8.678629px;}
.ws3_c00340{word-spacing:-4.167600px;}
.ws2_c00340{word-spacing:-2.463856px;}
.ws0_c00340{word-spacing:-1.410387px;}
.ws11_c00340{word-spacing:0.000000px;}
.ws9_c00340{word-spacing:24.192343px;}
.wsa_c00340{word-spacing:25.629635px;}
.ws8_c00340{word-spacing:26.399798px;}
.ws4_c00340{word-spacing:27.671529px;}
.wse_c00340{word-spacing:28.038235px;}
.wsd_c00340{word-spacing:30.193299px;}
.ws10_c00340{word-spacing:37.604892px;}
.wsf_c00340{word-spacing:42.638400px;}
.wsc_c00340{word-spacing:45.638400px;}
.wsb_c00340{word-spacing:49.633219px;}
.ws6_c00340{word-spacing:76.841018px;}
.ws7_c00340{word-spacing:86.434510px;}
._2_c00340{margin-left:-57.908049px;}
._1_c00340{width:33.175968px;}
._4_c00340{width:35.586656px;}
._0_c00340{width:38.075249px;}
._3_c00340{width:40.302442px;}
._5_c00340{width:63.798859px;}
.fc0_c00340{color:transparent;}
.fs7_c00340{font-size:3.420000px;}
.fs9_c00340{font-size:11.880000px;}
.fs8_c00340{font-size:13.620000px;}
.fs5_c00340{font-size:18.720000px;}
.fs1_c00340{font-size:20.400000px;}
.fs3_c00340{font-size:25.500000px;}
.fs0_c00340{font-size:28.920000px;}
.fs4_c00340{font-size:32.340000px;}
.fs2_c00340{font-size:35.700000px;}
.fs6_c00340{font-size:39.120000px;}
.y0_c00340{bottom:0.000000px;}
.yb8_c00340{bottom:251.550000px;}
.yba_c00340{bottom:252.630000px;}
.yb9_c00340{bottom:253.695000px;}
.yb4_c00340{bottom:266.550000px;}
.yb5_c00340{bottom:267.195000px;}
.yb6_c00340{bottom:267.630000px;}
.yb7_c00340{bottom:268.695000px;}
.yb2_c00340{bottom:280.695000px;}
.yb0_c00340{bottom:281.130000px;}
.yb1_c00340{bottom:281.775000px;}
.yb3_c00340{bottom:282.195000px;}
.yae_c00340{bottom:293.130000px;}
.yac_c00340{bottom:293.550000px;}
.yaf_c00340{bottom:294.630000px;}
.yad_c00340{bottom:295.695000px;}
.ya8_c00340{bottom:306.630000px;}
.ya6_c00340{bottom:308.130000px;}
.ya9_c00340{bottom:308.775000px;}
.ya7_c00340{bottom:309.195000px;}
.yab_c00340{bottom:309.630000px;}
.yaa_c00340{bottom:313.695000px;}
.ya4_c00340{bottom:321.630000px;}
.ya3_c00340{bottom:322.695000px;}
.ya2_c00340{bottom:323.130000px;}
.ya5_c00340{bottom:324.195000px;}
.ya1_c00340{bottom:336.195000px;}
.ya0_c00340{bottom:337.695000px;}
.y9f_c00340{bottom:350.130000px;}
.y9e_c00340{bottom:351.195000px;}
.y9c_c00340{bottom:363.630000px;}
.y9d_c00340{bottom:364.695000px;}
.y9a_c00340{bottom:377.130000px;}
.y99_c00340{bottom:378.195000px;}
.y9b_c00340{bottom:378.630000px;}
.y98_c00340{bottom:391.695000px;}
.y96_c00340{bottom:392.130000px;}
.y97_c00340{bottom:393.195000px;}
.y94_c00340{bottom:410.130000px;}
.y95_c00340{bottom:411.195000px;}
.y92_c00340{bottom:423.630000px;}
.y93_c00340{bottom:424.695000px;}
.y91_c00340{bottom:454.470000px;}
.y90_c00340{bottom:455.550000px;}
.y8e_c00340{bottom:465.825000px;}
.y8c_c00340{bottom:467.325000px;}
.y8f_c00340{bottom:467.970000px;}
.y8b_c00340{bottom:469.050000px;}
.y8a_c00340{bottom:469.470000px;}
.y8d_c00340{bottom:470.550000px;}
.y89_c00340{bottom:486.405000px;}
.y88_c00340{bottom:488.550000px;}
.y87_c00340{bottom:529.245000px;}
.y85_c00340{bottom:530.130000px;}
.y86_c00340{bottom:531.405000px;}
.y80_c00340{bottom:546.405000px;}
.y84_c00340{bottom:547.245000px;}
.y7f_c00340{bottom:548.745000px;}
.y7e_c00340{bottom:549.405000px;}
.y83_c00340{bottom:549.630000px;}
.y82_c00340{bottom:550.470000px;}
.y81_c00340{bottom:550.905000px;}
.y7b_c00340{bottom:565.905000px;}
.y7d_c00340{bottom:566.745000px;}
.y7a_c00340{bottom:566.970000px;}
.y77_c00340{bottom:568.245000px;}
.y79_c00340{bottom:569.130000px;}
.y7c_c00340{bottom:569.970000px;}
.y78_c00340{bottom:570.405000px;}
.y73_c00340{bottom:585.405000px;}
.y76_c00340{bottom:586.905000px;}
.y72_c00340{bottom:587.745000px;}
.y75_c00340{bottom:588.630000px;}
.y70_c00340{bottom:589.050000px;}
.y74_c00340{bottom:589.470000px;}
.y71_c00340{bottom:589.905000px;}
.y6a_c00340{bottom:607.245000px;}
.y6e_c00340{bottom:608.970000px;}
.y6c_c00340{bottom:609.405000px;}
.y6d_c00340{bottom:609.630000px;}
.y6f_c00340{bottom:610.470000px;}
.y6b_c00340{bottom:610.920000px;}
.y66_c00340{bottom:626.745000px;}
.y68_c00340{bottom:626.970000px;}
.y69_c00340{bottom:627.405000px;}
.y67_c00340{bottom:627.825000px;}
.y65_c00340{bottom:628.905000px;}
.y62_c00340{bottom:645.405000px;}
.y5e_c00340{bottom:646.245000px;}
.y5f_c00340{bottom:646.905000px;}
.y60_c00340{bottom:647.325000px;}
.y61_c00340{bottom:647.745000px;}
.y5d_c00340{bottom:648.405000px;}
.y64_c00340{bottom:648.825000px;}
.y63_c00340{bottom:649.905000px;}
.y5c_c00340{bottom:665.970000px;}
.y59_c00340{bottom:666.180000px;}
.y5a_c00340{bottom:667.245000px;}
.y5b_c00340{bottom:668.325000px;}
.y58_c00340{bottom:669.405000px;}
.y57_c00340{bottom:686.745000px;}
.y56_c00340{bottom:688.470000px;}
.y55_c00340{bottom:688.905000px;}
.y52_c00340{bottom:703.905000px;}
.y54_c00340{bottom:706.245000px;}
.y50_c00340{bottom:707.130000px;}
.y53_c00340{bottom:707.970000px;}
.y51_c00340{bottom:708.405000px;}
.y4f_c00340{bottom:724.905000px;}
.y4d_c00340{bottom:725.745000px;}
.y4c_c00340{bottom:727.905000px;}
.y4e_c00340{bottom:728.970000px;}
.y49_c00340{bottom:745.245000px;}
.y48_c00340{bottom:746.325000px;}
.y47_c00340{bottom:747.405000px;}
.y4a_c00340{bottom:747.630000px;}
.y4b_c00340{bottom:748.905000px;}
.y43_c00340{bottom:766.245000px;}
.y46_c00340{bottom:767.130000px;}
.y45_c00340{bottom:767.325000px;}
.y44_c00340{bottom:768.405000px;}
.y41_c00340{bottom:785.745000px;}
.y40_c00340{bottom:786.405000px;}
.y42_c00340{bottom:787.470000px;}
.y3f_c00340{bottom:787.905000px;}
.y3e_c00340{bottom:802.905000px;}
.y3d_c00340{bottom:804.180000px;}
.y3c_c00340{bottom:805.245000px;}
.y3b_c00340{bottom:807.405000px;}
.y3a_c00340{bottom:822.405000px;}
.y37_c00340{bottom:823.680000px;}
.y38_c00340{bottom:824.745000px;}
.y36_c00340{bottom:826.905000px;}
.y39_c00340{bottom:827.970000px;}
.y33_c00340{bottom:844.245000px;}
.y32_c00340{bottom:846.405000px;}
.y35_c00340{bottom:846.630000px;}
.y34_c00340{bottom:847.470000px;}
.y2f_c00340{bottom:862.245000px;}
.y30_c00340{bottom:863.745000px;}
.y31_c00340{bottom:864.630000px;}
.y2e_c00340{bottom:865.905000px;}
.y2a_c00340{bottom:883.245000px;}
.y2c_c00340{bottom:884.970000px;}
.y2d_c00340{bottom:885.630000px;}
.y2b_c00340{bottom:886.905000px;}
.y26_c00340{bottom:903.825000px;}
.y24_c00340{bottom:904.245000px;}
.y23_c00340{bottom:904.905000px;}
.y29_c00340{bottom:905.130000px;}
.y28_c00340{bottom:905.325000px;}
.y27_c00340{bottom:905.970000px;}
.y25_c00340{bottom:906.405000px;}
.y1e_c00340{bottom:924.405000px;}
.y1f_c00340{bottom:924.630000px;}
.y21_c00340{bottom:925.470000px;}
.y20_c00340{bottom:925.905000px;}
.y22_c00340{bottom:926.970000px;}
.y1d_c00340{bottom:944.970000px;}
.y1c_c00340{bottom:945.405000px;}
.y19_c00340{bottom:962.745000px;}
.y1b_c00340{bottom:964.470000px;}
.y1a_c00340{bottom:964.905000px;}
.y14_c00340{bottom:982.245000px;}
.y16_c00340{bottom:982.470000px;}
.y17_c00340{bottom:983.325000px;}
.y13_c00340{bottom:984.405000px;}
.y15_c00340{bottom:984.630000px;}
.y18_c00340{bottom:985.470000px;}
.y11_c00340{bottom:1001.745000px;}
.yf_c00340{bottom:1003.905000px;}
.y10_c00340{bottom:1004.130000px;}
.y12_c00340{bottom:1004.970000px;}
.yb_c00340{bottom:1021.245000px;}
.yd_c00340{bottom:1022.325000px;}
.yc_c00340{bottom:1023.405000px;}
.ye_c00340{bottom:1023.630000px;}
.y8_c00340{bottom:1040.745000px;}
.ya_c00340{bottom:1040.970000px;}
.y7_c00340{bottom:1042.905000px;}
.y9_c00340{bottom:1043.970000px;}
.y3_c00340{bottom:1060.245000px;}
.y6_c00340{bottom:1061.745000px;}
.y5_c00340{bottom:1063.470000px;}
.y4_c00340{bottom:1063.905000px;}
.y1_c00340{bottom:1099.905000px;}
.y2_c00340{bottom:1102.050000px;}
.h9_c00340{height:4.206533px;}
.hc_c00340{height:14.612168px;}
.ha_c00340{height:16.752334px;}
.hb_c00340{height:22.752334px;}
.h6_c00340{height:23.025234px;}
.h2_c00340{height:25.091602px;}
.hd_c00340{height:29.025234px;}
.h4_c00340{height:31.364502px;}
.h1_c00340{height:35.571035px;}
.h5_c00340{height:39.777568px;}
.h3_c00340{height:43.910303px;}
.h7_c00340{height:48.116836px;}
.h8_c00340{height:53.571035px;}
.h0_c00340{height:1335.000000px;}
.w0_c00340{width:880.500000px;}
.x0_c00340{left:0.000000px;}
.xe9_c00340{left:151.500000px;}
.x11_c00340{left:159.000000px;}
.x3_c00340{left:160.500000px;}
.xe2_c00340{left:162.000000px;}
.xea_c00340{left:173.580000px;}
.x7f_c00340{left:175.080000px;}
.x70_c00340{left:177.000000px;}
.xfb_c00340{left:178.500000px;}
.x9c_c00340{left:180.420000px;}
.xce_c00340{left:181.500000px;}
.xf9_c00340{left:183.000000px;}
.xb5_c00340{left:187.920000px;}
.x53_c00340{left:189.000000px;}
.x3c_c00340{left:196.500000px;}
.x2f_c00340{left:198.000000px;}
.xba_c00340{left:199.080000px;}
.x69_c00340{left:201.000000px;}
.x89_c00340{left:204.420000px;}
.x4_c00340{left:205.500000px;}
.x12_c00340{left:206.580000px;}
.x22_c00340{left:210.420000px;}
.xd8_c00340{left:215.580000px;}
.x5d_c00340{left:217.500000px;}
.xf1_c00340{left:220.500000px;}
.x71_c00340{left:221.580000px;}
.x92_c00340{left:223.500000px;}
.x13_c00340{left:225.420000px;}
.x6e_c00340{left:226.500000px;}
.x80_c00340{left:228.420000px;}
.xa3_c00340{left:230.145000px;}
.xa9_c00340{left:232.500000px;}
.xd3_c00340{left:234.000000px;}
.xc7_c00340{left:235.500000px;}
.xc1_c00340{left:238.275000px;}
.x5_c00340{left:239.580000px;}
.xe0_c00340{left:241.500000px;}
.x7a_c00340{left:242.580000px;}
.x46_c00340{left:244.500000px;}
.x23_c00340{left:247.500000px;}
.x14_c00340{left:252.000000px;}
.x8a_c00340{left:255.420000px;}
.xc8_c00340{left:256.500000px;}
.x54_c00340{left:259.920000px;}
.xd9_c00340{left:262.080000px;}
.x72_c00340{left:264.000000px;}
.xb6_c00340{left:268.500000px;}
.xc2_c00340{left:270.420000px;}
.xb1_c00340{left:273.000000px;}
.xbb_c00340{left:274.080000px;}
.xaa_c00340{left:276.000000px;}
.x47_c00340{left:277.500000px;}
.x5e_c00340{left:278.580000px;}
.x6_c00340{left:283.500000px;}
.x3d_c00340{left:285.000000px;}
.x24_c00340{left:288.000000px;}
.x55_c00340{left:289.080000px;}
.xe3_c00340{left:290.580000px;}
.x81_c00340{left:295.275000px;}
.x15_c00340{left:296.580000px;}
.x30_c00340{left:300.420000px;}
.x8b_c00340{left:301.500000px;}
.xbc_c00340{left:309.000000px;}
.x3e_c00340{left:312.420000px;}
.x25_c00340{left:315.000000px;}
.x6f_c00340{left:319.080000px;}
.x5f_c00340{left:322.500000px;}
.x48_c00340{left:325.080000px;}
.x73_c00340{left:327.420000px;}
.xab_c00340{left:328.500000px;}
.xe1_c00340{left:331.500000px;}
.x56_c00340{left:333.000000px;}
.x16_c00340{left:334.920000px;}
.x7_c00340{left:337.080000px;}
.x7b_c00340{left:339.000000px;}
.x31_c00340{left:340.500000px;}
.xbd_c00340{left:341.580000px;}
.x49_c00340{left:343.920000px;}
.xc9_c00340{left:345.420000px;}
.xac_c00340{left:346.500000px;}
.x3f_c00340{left:348.000000px;}
.x9d_c00340{left:352.500000px;}
.x7c_c00340{left:355.920000px;}
.x8_c00340{left:357.420000px;}
.x96_c00340{left:360.420000px;}
.x17_c00340{left:361.920000px;}
.x60_c00340{left:363.000000px;}
.xa4_c00340{left:367.080000px;}
.x8c_c00340{left:368.580000px;}
.x4a_c00340{left:372.000000px;}
.x32_c00340{left:373.500000px;}
.x93_c00340{left:375.000000px;}
.x26_c00340{left:376.920000px;}
.x82_c00340{left:378.000000px;}
.xda_c00340{left:381.000000px;}
.xad_c00340{left:384.420000px;}
.xa5_c00340{left:385.500000px;}
.x9_c00340{left:387.420000px;}
.x18_c00340{left:388.920000px;}
.x7d_c00340{left:391.080000px;}
.x57_c00340{left:392.580000px;}
.x83_c00340{left:394.500000px;}
.xb2_c00340{left:396.420000px;}
.x61_c00340{left:399.420000px;}
.xb7_c00340{left:400.500000px;}
.x8d_c00340{left:405.000000px;}
.xdb_c00340{left:406.500000px;}
.x4b_c00340{left:408.420000px;}
.x2_c00340{left:409.500000px;}
.x84_c00340{left:411.000000px;}
.xa6_c00340{left:412.500000px;}
.x33_c00340{left:415.500000px;}
.xf8_c00340{left:417.000000px;}
.x27_c00340{left:418.500000px;}
.x58_c00340{left:420.000000px;}
.xae_c00340{left:421.500000px;}
.xca_c00340{left:423.000000px;}
.xb3_c00340{left:424.920000px;}
.x85_c00340{left:430.920000px;}
.x62_c00340{left:433.500000px;}
.x19_c00340{left:437.580000px;}
.x4c_c00340{left:439.500000px;}
.xbe_c00340{left:441.000000px;}
.xc3_c00340{left:442.080000px;}
.xa_c00340{left:445.500000px;}
.x6a_c00340{left:447.000000px;}
.x40_c00340{left:448.080000px;}
.x28_c00340{left:454.920000px;}
.x1a_c00340{left:456.420000px;}
.x7e_c00340{left:458.580000px;}
.xcf_c00340{left:460.920000px;}
.xf2_c00340{left:462.000000px;}
.xb_c00340{left:463.500000px;}
.x63_c00340{left:464.580000px;}
.xe8_c00340{left:466.500000px;}
.x34_c00340{left:469.080000px;}
.xc4_c00340{left:474.000000px;}
.x94_c00340{left:475.920000px;}
.x41_c00340{left:478.500000px;}
.x1b_c00340{left:482.580000px;}
.x97_c00340{left:484.500000px;}
.xe4_c00340{left:486.000000px;}
.x59_c00340{left:487.500000px;}
.x35_c00340{left:489.000000px;}
.xaf_c00340{left:490.500000px;}
.x74_c00340{left:493.500000px;}
.x64_c00340{left:494.580000px;}
.xd4_c00340{left:496.080000px;}
.x6b_c00340{left:499.500000px;}
.x98_c00340{left:501.000000px;}
.x86_c00340{left:504.855000px;}
.xd0_c00340{left:505.920000px;}
.x4d_c00340{left:507.000000px;}
.xdc_c00340{left:508.080000px;}
.xed_c00340{left:511.500000px;}
.x65_c00340{left:513.000000px;}
.x29_c00340{left:514.500000px;}
.x36_c00340{left:516.420000px;}
.x42_c00340{left:518.355000px;}
.xc_c00340{left:520.920000px;}
.x1c_c00340{left:523.500000px;}
.x9e_c00340{left:524.580000px;}
.x4e_c00340{left:526.920000px;}
.xd5_c00340{left:529.500000px;}
.xc5_c00340{left:531.000000px;}
.x75_c00340{left:534.000000px;}
.x8e_c00340{left:535.500000px;}
.x66_c00340{left:538.500000px;}
.xe5_c00340{left:540.000000px;}
.x5a_c00340{left:543.420000px;}
.x9f_c00340{left:544.920000px;}
.x99_c00340{left:546.000000px;}
.x37_c00340{left:547.500000px;}
.xef_c00340{left:549.000000px;}
.x8f_c00340{left:550.920000px;}
.xf7_c00340{left:552.000000px;}
.xf3_c00340{left:553.500000px;}
.x76_c00340{left:555.000000px;}
.xee_c00340{left:556.500000px;}
.x2a_c00340{left:558.000000px;}
.x87_c00340{left:561.000000px;}
.x4f_c00340{left:562.080000px;}
.x38_c00340{left:564.000000px;}
.x6c_c00340{left:565.920000px;}
.xa7_c00340{left:571.500000px;}
.xd_c00340{left:573.420000px;}
.xcb_c00340{left:574.500000px;}
.x1d_c00340{left:575.580000px;}
.x43_c00340{left:578.580000px;}
.x50_c00340{left:580.920000px;}
.xb0_c00340{left:583.920000px;}
.x77_c00340{left:585.420000px;}
.xc6_c00340{left:586.500000px;}
.x90_c00340{left:588.000000px;}
.x88_c00340{left:591.000000px;}
.xb4_c00340{left:592.500000px;}
.xeb_c00340{left:594.000000px;}
.x1e_c00340{left:595.920000px;}
.xf4_c00340{left:598.500000px;}
.xbf_c00340{left:604.080000px;}
.xdd_c00340{left:607.500000px;}
.x51_c00340{left:609.420000px;}
.xe_c00340{left:610.920000px;}
.xa0_c00340{left:615.000000px;}
.xd6_c00340{left:616.080000px;}
.x39_c00340{left:618.000000px;}
.xb8_c00340{left:619.080000px;}
.x1f_c00340{left:621.420000px;}
.x2b_c00340{left:622.500000px;}
.xd1_c00340{left:627.000000px;}
.x91_c00340{left:630.000000px;}
.x67_c00340{left:631.500000px;}
.xc0_c00340{left:634.080000px;}
.x44_c00340{left:635.580000px;}
.x6d_c00340{left:637.500000px;}
.xf_c00340{left:640.920000px;}
.xf5_c00340{left:643.500000px;}
.xe6_c00340{left:648.000000px;}
.xb9_c00340{left:649.080000px;}
.x20_c00340{left:652.500000px;}
.x2c_c00340{left:655.500000px;}
.x78_c00340{left:656.580000px;}
.xd2_c00340{left:658.080000px;}
.x3a_c00340{left:661.500000px;}
.x9a_c00340{left:664.920000px;}
.x45_c00340{left:666.000000px;}
.x52_c00340{left:670.500000px;}
.xa8_c00340{left:672.420000px;}
.xde_c00340{left:673.500000px;}
.xcc_c00340{left:675.420000px;}
.x68_c00340{left:676.500000px;}
.x5b_c00340{left:681.420000px;}
.xe7_c00340{left:682.500000px;}
.xf0_c00340{left:684.420000px;}
.x95_c00340{left:686.580000px;}
.x10_c00340{left:688.920000px;}
.x9b_c00340{left:691.920000px;}
.x2d_c00340{left:694.080000px;}
.x21_c00340{left:696.000000px;}
.x3b_c00340{left:699.000000px;}
.xa1_c00340{left:700.500000px;}
.xd7_c00340{left:703.500000px;}
.x79_c00340{left:706.500000px;}
.x5c_c00340{left:711.000000px;}
.x1_c00340{left:712.080000px;}
.x2e_c00340{left:714.420000px;}
.xdf_c00340{left:717.420000px;}
.xa2_c00340{left:721.080000px;}
.xcd_c00340{left:723.000000px;}
.xec_c00340{left:729.000000px;}
.xf6_c00340{left:733.500000px;}
.xfa_c00340{left:735.000000px;}
@media print{
.v3_c00340{vertical-align:-5.333333pt;}
.v0_c00340{vertical-align:0.000000pt;}
.v2_c00340{vertical-align:5.333333pt;}
.v1_c00340{vertical-align:16.000000pt;}
.ls1_c00340{letter-spacing:0.000000pt;}
.ls0_c00340{letter-spacing:51.473822pt;}
.ws5_c00340{word-spacing:-58.544115pt;}
.ws1_c00340{word-spacing:-7.714337pt;}
.ws3_c00340{word-spacing:-3.704533pt;}
.ws2_c00340{word-spacing:-2.190094pt;}
.ws0_c00340{word-spacing:-1.253677pt;}
.ws11_c00340{word-spacing:0.000000pt;}
.ws9_c00340{word-spacing:21.504305pt;}
.wsa_c00340{word-spacing:22.781898pt;}
.ws8_c00340{word-spacing:23.466487pt;}
.ws4_c00340{word-spacing:24.596914pt;}
.wse_c00340{word-spacing:24.922876pt;}
.wsd_c00340{word-spacing:26.838488pt;}
.ws10_c00340{word-spacing:33.426571pt;}
.wsf_c00340{word-spacing:37.900800pt;}
.wsc_c00340{word-spacing:40.567467pt;}
.wsb_c00340{word-spacing:44.118417pt;}
.ws6_c00340{word-spacing:68.303127pt;}
.ws7_c00340{word-spacing:76.830675pt;}
._2_c00340{margin-left:-51.473822pt;}
._1_c00340{width:29.489750pt;}
._4_c00340{width:31.632584pt;}
._0_c00340{width:33.844666pt;}
._3_c00340{width:35.824393pt;}
._5_c00340{width:56.710097pt;}
.fs7_c00340{font-size:3.040000pt;}
.fs9_c00340{font-size:10.560000pt;}
.fs8_c00340{font-size:12.106667pt;}
.fs5_c00340{font-size:16.640000pt;}
.fs1_c00340{font-size:18.133333pt;}
.fs3_c00340{font-size:22.666667pt;}
.fs0_c00340{font-size:25.706667pt;}
.fs4_c00340{font-size:28.746667pt;}
.fs2_c00340{font-size:31.733333pt;}
.fs6_c00340{font-size:34.773333pt;}
.y0_c00340{bottom:0.000000pt;}
.yb8_c00340{bottom:223.600000pt;}
.yba_c00340{bottom:224.560000pt;}
.yb9_c00340{bottom:225.506667pt;}
.yb4_c00340{bottom:236.933333pt;}
.yb5_c00340{bottom:237.506667pt;}
.yb6_c00340{bottom:237.893333pt;}
.yb7_c00340{bottom:238.840000pt;}
.yb2_c00340{bottom:249.506667pt;}
.yb0_c00340{bottom:249.893333pt;}
.yb1_c00340{bottom:250.466667pt;}
.yb3_c00340{bottom:250.840000pt;}
.yae_c00340{bottom:260.560000pt;}
.yac_c00340{bottom:260.933333pt;}
.yaf_c00340{bottom:261.893333pt;}
.yad_c00340{bottom:262.840000pt;}
.ya8_c00340{bottom:272.560000pt;}
.ya6_c00340{bottom:273.893333pt;}
.ya9_c00340{bottom:274.466667pt;}
.ya7_c00340{bottom:274.840000pt;}
.yab_c00340{bottom:275.226667pt;}
.yaa_c00340{bottom:278.840000pt;}
.ya4_c00340{bottom:285.893333pt;}
.ya3_c00340{bottom:286.840000pt;}
.ya2_c00340{bottom:287.226667pt;}
.ya5_c00340{bottom:288.173333pt;}
.ya1_c00340{bottom:298.840000pt;}
.ya0_c00340{bottom:300.173333pt;}
.y9f_c00340{bottom:311.226667pt;}
.y9e_c00340{bottom:312.173333pt;}
.y9c_c00340{bottom:323.226667pt;}
.y9d_c00340{bottom:324.173333pt;}
.y9a_c00340{bottom:335.226667pt;}
.y99_c00340{bottom:336.173333pt;}
.y9b_c00340{bottom:336.560000pt;}
.y98_c00340{bottom:348.173333pt;}
.y96_c00340{bottom:348.560000pt;}
.y97_c00340{bottom:349.506667pt;}
.y94_c00340{bottom:364.560000pt;}
.y95_c00340{bottom:365.506667pt;}
.y92_c00340{bottom:376.560000pt;}
.y93_c00340{bottom:377.506667pt;}
.y91_c00340{bottom:403.973333pt;}
.y90_c00340{bottom:404.933333pt;}
.y8e_c00340{bottom:414.066667pt;}
.y8c_c00340{bottom:415.400000pt;}
.y8f_c00340{bottom:415.973333pt;}
.y8b_c00340{bottom:416.933333pt;}
.y8a_c00340{bottom:417.306667pt;}
.y8d_c00340{bottom:418.266667pt;}
.y89_c00340{bottom:432.360000pt;}
.y88_c00340{bottom:434.266667pt;}
.y87_c00340{bottom:470.440000pt;}
.y85_c00340{bottom:471.226667pt;}
.y86_c00340{bottom:472.360000pt;}
.y80_c00340{bottom:485.693333pt;}
.y84_c00340{bottom:486.440000pt;}
.y7f_c00340{bottom:487.773333pt;}
.y7e_c00340{bottom:488.360000pt;}
.y83_c00340{bottom:488.560000pt;}
.y82_c00340{bottom:489.306667pt;}
.y81_c00340{bottom:489.693333pt;}
.y7b_c00340{bottom:503.026667pt;}
.y7d_c00340{bottom:503.773333pt;}
.y7a_c00340{bottom:503.973333pt;}
.y77_c00340{bottom:505.106667pt;}
.y79_c00340{bottom:505.893333pt;}
.y7c_c00340{bottom:506.640000pt;}
.y78_c00340{bottom:507.026667pt;}
.y73_c00340{bottom:520.360000pt;}
.y76_c00340{bottom:521.693333pt;}
.y72_c00340{bottom:522.440000pt;}
.y75_c00340{bottom:523.226667pt;}
.y70_c00340{bottom:523.600000pt;}
.y74_c00340{bottom:523.973333pt;}
.y71_c00340{bottom:524.360000pt;}
.y6a_c00340{bottom:539.773333pt;}
.y6e_c00340{bottom:541.306667pt;}
.y6c_c00340{bottom:541.693333pt;}
.y6d_c00340{bottom:541.893333pt;}
.y6f_c00340{bottom:542.640000pt;}
.y6b_c00340{bottom:543.040000pt;}
.y66_c00340{bottom:557.106667pt;}
.y68_c00340{bottom:557.306667pt;}
.y69_c00340{bottom:557.693333pt;}
.y67_c00340{bottom:558.066667pt;}
.y65_c00340{bottom:559.026667pt;}
.y62_c00340{bottom:573.693333pt;}
.y5e_c00340{bottom:574.440000pt;}
.y5f_c00340{bottom:575.026667pt;}
.y60_c00340{bottom:575.400000pt;}
.y61_c00340{bottom:575.773333pt;}
.y5d_c00340{bottom:576.360000pt;}
.y64_c00340{bottom:576.733333pt;}
.y63_c00340{bottom:577.693333pt;}
.y5c_c00340{bottom:591.973333pt;}
.y59_c00340{bottom:592.160000pt;}
.y5a_c00340{bottom:593.106667pt;}
.y5b_c00340{bottom:594.066667pt;}
.y58_c00340{bottom:595.026667pt;}
.y57_c00340{bottom:610.440000pt;}
.y56_c00340{bottom:611.973333pt;}
.y55_c00340{bottom:612.360000pt;}
.y52_c00340{bottom:625.693333pt;}
.y54_c00340{bottom:627.773333pt;}
.y50_c00340{bottom:628.560000pt;}
.y53_c00340{bottom:629.306667pt;}
.y51_c00340{bottom:629.693333pt;}
.y4f_c00340{bottom:644.360000pt;}
.y4d_c00340{bottom:645.106667pt;}
.y4c_c00340{bottom:647.026667pt;}
.y4e_c00340{bottom:647.973333pt;}
.y49_c00340{bottom:662.440000pt;}
.y48_c00340{bottom:663.400000pt;}
.y47_c00340{bottom:664.360000pt;}
.y4a_c00340{bottom:664.560000pt;}
.y4b_c00340{bottom:665.693333pt;}
.y43_c00340{bottom:681.106667pt;}
.y46_c00340{bottom:681.893333pt;}
.y45_c00340{bottom:682.066667pt;}
.y44_c00340{bottom:683.026667pt;}
.y41_c00340{bottom:698.440000pt;}
.y40_c00340{bottom:699.026667pt;}
.y42_c00340{bottom:699.973333pt;}
.y3f_c00340{bottom:700.360000pt;}
.y3e_c00340{bottom:713.693333pt;}
.y3d_c00340{bottom:714.826667pt;}
.y3c_c00340{bottom:715.773333pt;}
.y3b_c00340{bottom:717.693333pt;}
.y3a_c00340{bottom:731.026667pt;}
.y37_c00340{bottom:732.160000pt;}
.y38_c00340{bottom:733.106667pt;}
.y36_c00340{bottom:735.026667pt;}
.y39_c00340{bottom:735.973333pt;}
.y33_c00340{bottom:750.440000pt;}
.y32_c00340{bottom:752.360000pt;}
.y35_c00340{bottom:752.560000pt;}
.y34_c00340{bottom:753.306667pt;}
.y2f_c00340{bottom:766.440000pt;}
.y30_c00340{bottom:767.773333pt;}
.y31_c00340{bottom:768.560000pt;}
.y2e_c00340{bottom:769.693333pt;}
.y2a_c00340{bottom:785.106667pt;}
.y2c_c00340{bottom:786.640000pt;}
.y2d_c00340{bottom:787.226667pt;}
.y2b_c00340{bottom:788.360000pt;}
.y26_c00340{bottom:803.400000pt;}
.y24_c00340{bottom:803.773333pt;}
.y23_c00340{bottom:804.360000pt;}
.y29_c00340{bottom:804.560000pt;}
.y28_c00340{bottom:804.733333pt;}
.y27_c00340{bottom:805.306667pt;}
.y25_c00340{bottom:805.693333pt;}
.y1e_c00340{bottom:821.693333pt;}
.y1f_c00340{bottom:821.893333pt;}
.y21_c00340{bottom:822.640000pt;}
.y20_c00340{bottom:823.026667pt;}
.y22_c00340{bottom:823.973333pt;}
.y1d_c00340{bottom:839.973333pt;}
.y1c_c00340{bottom:840.360000pt;}
.y19_c00340{bottom:855.773333pt;}
.y1b_c00340{bottom:857.306667pt;}
.y1a_c00340{bottom:857.693333pt;}
.y14_c00340{bottom:873.106667pt;}
.y16_c00340{bottom:873.306667pt;}
.y17_c00340{bottom:874.066667pt;}
.y13_c00340{bottom:875.026667pt;}
.y15_c00340{bottom:875.226667pt;}
.y18_c00340{bottom:875.973333pt;}
.y11_c00340{bottom:890.440000pt;}
.yf_c00340{bottom:892.360000pt;}
.y10_c00340{bottom:892.560000pt;}
.y12_c00340{bottom:893.306667pt;}
.yb_c00340{bottom:907.773333pt;}
.yd_c00340{bottom:908.733333pt;}
.yc_c00340{bottom:909.693333pt;}
.ye_c00340{bottom:909.893333pt;}
.y8_c00340{bottom:925.106667pt;}
.ya_c00340{bottom:925.306667pt;}
.y7_c00340{bottom:927.026667pt;}
.y9_c00340{bottom:927.973333pt;}
.y3_c00340{bottom:942.440000pt;}
.y6_c00340{bottom:943.773333pt;}
.y5_c00340{bottom:945.306667pt;}
.y4_c00340{bottom:945.693333pt;}
.y1_c00340{bottom:977.693333pt;}
.y2_c00340{bottom:979.600000pt;}
.h9_c00340{height:3.739141pt;}
.hc_c00340{height:12.988594pt;}
.ha_c00340{height:14.890964pt;}
.hb_c00340{height:20.224297pt;}
.h6_c00340{height:20.466875pt;}
.h2_c00340{height:22.303646pt;}
.hd_c00340{height:25.800208pt;}
.h4_c00340{height:27.879557pt;}
.h1_c00340{height:31.618698pt;}
.h5_c00340{height:35.357839pt;}
.h3_c00340{height:39.031380pt;}
.h7_c00340{height:42.770521pt;}
.h8_c00340{height:47.618698pt;}
.h0_c00340{height:1186.666667pt;}
.w0_c00340{width:782.666667pt;}
.x0_c00340{left:0.000000pt;}
.xe9_c00340{left:134.666667pt;}
.x11_c00340{left:141.333333pt;}
.x3_c00340{left:142.666667pt;}
.xe2_c00340{left:144.000000pt;}
.xea_c00340{left:154.293333pt;}
.x7f_c00340{left:155.626667pt;}
.x70_c00340{left:157.333333pt;}
.xfb_c00340{left:158.666667pt;}
.x9c_c00340{left:160.373333pt;}
.xce_c00340{left:161.333333pt;}
.xf9_c00340{left:162.666667pt;}
.xb5_c00340{left:167.040000pt;}
.x53_c00340{left:168.000000pt;}
.x3c_c00340{left:174.666667pt;}
.x2f_c00340{left:176.000000pt;}
.xba_c00340{left:176.960000pt;}
.x69_c00340{left:178.666667pt;}
.x89_c00340{left:181.706667pt;}
.x4_c00340{left:182.666667pt;}
.x12_c00340{left:183.626667pt;}
.x22_c00340{left:187.040000pt;}
.xd8_c00340{left:191.626667pt;}
.x5d_c00340{left:193.333333pt;}
.xf1_c00340{left:196.000000pt;}
.x71_c00340{left:196.960000pt;}
.x92_c00340{left:198.666667pt;}
.x13_c00340{left:200.373333pt;}
.x6e_c00340{left:201.333333pt;}
.x80_c00340{left:203.040000pt;}
.xa3_c00340{left:204.573333pt;}
.xa9_c00340{left:206.666667pt;}
.xd3_c00340{left:208.000000pt;}
.xc7_c00340{left:209.333333pt;}
.xc1_c00340{left:211.800000pt;}
.x5_c00340{left:212.960000pt;}
.xe0_c00340{left:214.666667pt;}
.x7a_c00340{left:215.626667pt;}
.x46_c00340{left:217.333333pt;}
.x23_c00340{left:220.000000pt;}
.x14_c00340{left:224.000000pt;}
.x8a_c00340{left:227.040000pt;}
.xc8_c00340{left:228.000000pt;}
.x54_c00340{left:231.040000pt;}
.xd9_c00340{left:232.960000pt;}
.x72_c00340{left:234.666667pt;}
.xb6_c00340{left:238.666667pt;}
.xc2_c00340{left:240.373333pt;}
.xb1_c00340{left:242.666667pt;}
.xbb_c00340{left:243.626667pt;}
.xaa_c00340{left:245.333333pt;}
.x47_c00340{left:246.666667pt;}
.x5e_c00340{left:247.626667pt;}
.x6_c00340{left:252.000000pt;}
.x3d_c00340{left:253.333333pt;}
.x24_c00340{left:256.000000pt;}
.x55_c00340{left:256.960000pt;}
.xe3_c00340{left:258.293333pt;}
.x81_c00340{left:262.466667pt;}
.x15_c00340{left:263.626667pt;}
.x30_c00340{left:267.040000pt;}
.x8b_c00340{left:268.000000pt;}
.xbc_c00340{left:274.666667pt;}
.x3e_c00340{left:277.706667pt;}
.x25_c00340{left:280.000000pt;}
.x6f_c00340{left:283.626667pt;}
.x5f_c00340{left:286.666667pt;}
.x48_c00340{left:288.960000pt;}
.x73_c00340{left:291.040000pt;}
.xab_c00340{left:292.000000pt;}
.xe1_c00340{left:294.666667pt;}
.x56_c00340{left:296.000000pt;}
.x16_c00340{left:297.706667pt;}
.x7_c00340{left:299.626667pt;}
.x7b_c00340{left:301.333333pt;}
.x31_c00340{left:302.666667pt;}
.xbd_c00340{left:303.626667pt;}
.x49_c00340{left:305.706667pt;}
.xc9_c00340{left:307.040000pt;}
.xac_c00340{left:308.000000pt;}
.x3f_c00340{left:309.333333pt;}
.x9d_c00340{left:313.333333pt;}
.x7c_c00340{left:316.373333pt;}
.x8_c00340{left:317.706667pt;}
.x96_c00340{left:320.373333pt;}
.x17_c00340{left:321.706667pt;}
.x60_c00340{left:322.666667pt;}
.xa4_c00340{left:326.293333pt;}
.x8c_c00340{left:327.626667pt;}
.x4a_c00340{left:330.666667pt;}
.x32_c00340{left:332.000000pt;}
.x93_c00340{left:333.333333pt;}
.x26_c00340{left:335.040000pt;}
.x82_c00340{left:336.000000pt;}
.xda_c00340{left:338.666667pt;}
.xad_c00340{left:341.706667pt;}
.xa5_c00340{left:342.666667pt;}
.x9_c00340{left:344.373333pt;}
.x18_c00340{left:345.706667pt;}
.x7d_c00340{left:347.626667pt;}
.x57_c00340{left:348.960000pt;}
.x83_c00340{left:350.666667pt;}
.xb2_c00340{left:352.373333pt;}
.x61_c00340{left:355.040000pt;}
.xb7_c00340{left:356.000000pt;}
.x8d_c00340{left:360.000000pt;}
.xdb_c00340{left:361.333333pt;}
.x4b_c00340{left:363.040000pt;}
.x2_c00340{left:364.000000pt;}
.x84_c00340{left:365.333333pt;}
.xa6_c00340{left:366.666667pt;}
.x33_c00340{left:369.333333pt;}
.xf8_c00340{left:370.666667pt;}
.x27_c00340{left:372.000000pt;}
.x58_c00340{left:373.333333pt;}
.xae_c00340{left:374.666667pt;}
.xca_c00340{left:376.000000pt;}
.xb3_c00340{left:377.706667pt;}
.x85_c00340{left:383.040000pt;}
.x62_c00340{left:385.333333pt;}
.x19_c00340{left:388.960000pt;}
.x4c_c00340{left:390.666667pt;}
.xbe_c00340{left:392.000000pt;}
.xc3_c00340{left:392.960000pt;}
.xa_c00340{left:396.000000pt;}
.x6a_c00340{left:397.333333pt;}
.x40_c00340{left:398.293333pt;}
.x28_c00340{left:404.373333pt;}
.x1a_c00340{left:405.706667pt;}
.x7e_c00340{left:407.626667pt;}
.xcf_c00340{left:409.706667pt;}
.xf2_c00340{left:410.666667pt;}
.xb_c00340{left:412.000000pt;}
.x63_c00340{left:412.960000pt;}
.xe8_c00340{left:414.666667pt;}
.x34_c00340{left:416.960000pt;}
.xc4_c00340{left:421.333333pt;}
.x94_c00340{left:423.040000pt;}
.x41_c00340{left:425.333333pt;}
.x1b_c00340{left:428.960000pt;}
.x97_c00340{left:430.666667pt;}
.xe4_c00340{left:432.000000pt;}
.x59_c00340{left:433.333333pt;}
.x35_c00340{left:434.666667pt;}
.xaf_c00340{left:436.000000pt;}
.x74_c00340{left:438.666667pt;}
.x64_c00340{left:439.626667pt;}
.xd4_c00340{left:440.960000pt;}
.x6b_c00340{left:444.000000pt;}
.x98_c00340{left:445.333333pt;}
.x86_c00340{left:448.760000pt;}
.xd0_c00340{left:449.706667pt;}
.x4d_c00340{left:450.666667pt;}
.xdc_c00340{left:451.626667pt;}
.xed_c00340{left:454.666667pt;}
.x65_c00340{left:456.000000pt;}
.x29_c00340{left:457.333333pt;}
.x36_c00340{left:459.040000pt;}
.x42_c00340{left:460.760000pt;}
.xc_c00340{left:463.040000pt;}
.x1c_c00340{left:465.333333pt;}
.x9e_c00340{left:466.293333pt;}
.x4e_c00340{left:468.373333pt;}
.xd5_c00340{left:470.666667pt;}
.xc5_c00340{left:472.000000pt;}
.x75_c00340{left:474.666667pt;}
.x8e_c00340{left:476.000000pt;}
.x66_c00340{left:478.666667pt;}
.xe5_c00340{left:480.000000pt;}
.x5a_c00340{left:483.040000pt;}
.x9f_c00340{left:484.373333pt;}
.x99_c00340{left:485.333333pt;}
.x37_c00340{left:486.666667pt;}
.xef_c00340{left:488.000000pt;}
.x8f_c00340{left:489.706667pt;}
.xf7_c00340{left:490.666667pt;}
.xf3_c00340{left:492.000000pt;}
.x76_c00340{left:493.333333pt;}
.xee_c00340{left:494.666667pt;}
.x2a_c00340{left:496.000000pt;}
.x87_c00340{left:498.666667pt;}
.x4f_c00340{left:499.626667pt;}
.x38_c00340{left:501.333333pt;}
.x6c_c00340{left:503.040000pt;}
.xa7_c00340{left:508.000000pt;}
.xd_c00340{left:509.706667pt;}
.xcb_c00340{left:510.666667pt;}
.x1d_c00340{left:511.626667pt;}
.x43_c00340{left:514.293333pt;}
.x50_c00340{left:516.373333pt;}
.xb0_c00340{left:519.040000pt;}
.x77_c00340{left:520.373333pt;}
.xc6_c00340{left:521.333333pt;}
.x90_c00340{left:522.666667pt;}
.x88_c00340{left:525.333333pt;}
.xb4_c00340{left:526.666667pt;}
.xeb_c00340{left:528.000000pt;}
.x1e_c00340{left:529.706667pt;}
.xf4_c00340{left:532.000000pt;}
.xbf_c00340{left:536.960000pt;}
.xdd_c00340{left:540.000000pt;}
.x51_c00340{left:541.706667pt;}
.xe_c00340{left:543.040000pt;}
.xa0_c00340{left:546.666667pt;}
.xd6_c00340{left:547.626667pt;}
.x39_c00340{left:549.333333pt;}
.xb8_c00340{left:550.293333pt;}
.x1f_c00340{left:552.373333pt;}
.x2b_c00340{left:553.333333pt;}
.xd1_c00340{left:557.333333pt;}
.x91_c00340{left:560.000000pt;}
.x67_c00340{left:561.333333pt;}
.xc0_c00340{left:563.626667pt;}
.x44_c00340{left:564.960000pt;}
.x6d_c00340{left:566.666667pt;}
.xf_c00340{left:569.706667pt;}
.xf5_c00340{left:572.000000pt;}
.xe6_c00340{left:576.000000pt;}
.xb9_c00340{left:576.960000pt;}
.x20_c00340{left:580.000000pt;}
.x2c_c00340{left:582.666667pt;}
.x78_c00340{left:583.626667pt;}
.xd2_c00340{left:584.960000pt;}
.x3a_c00340{left:588.000000pt;}
.x9a_c00340{left:591.040000pt;}
.x45_c00340{left:592.000000pt;}
.x52_c00340{left:596.000000pt;}
.xa8_c00340{left:597.706667pt;}
.xde_c00340{left:598.666667pt;}
.xcc_c00340{left:600.373333pt;}
.x68_c00340{left:601.333333pt;}
.x5b_c00340{left:605.706667pt;}
.xe7_c00340{left:606.666667pt;}
.xf0_c00340{left:608.373333pt;}
.x95_c00340{left:610.293333pt;}
.x10_c00340{left:612.373333pt;}
.x9b_c00340{left:615.040000pt;}
.x2d_c00340{left:616.960000pt;}
.x21_c00340{left:618.666667pt;}
.x3b_c00340{left:621.333333pt;}
.xa1_c00340{left:622.666667pt;}
.xd7_c00340{left:625.333333pt;}
.x79_c00340{left:628.000000pt;}
.x5c_c00340{left:632.000000pt;}
.x1_c00340{left:632.960000pt;}
.x2e_c00340{left:635.040000pt;}
.xdf_c00340{left:637.706667pt;}
.xa2_c00340{left:640.960000pt;}
.xcd_c00340{left:642.666667pt;}
.xec_c00340{left:648.000000pt;}
.xf6_c00340{left:652.000000pt;}
.xfa_c00340{left:653.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a00897584a66fa0e3d6919a4.woff2')format("woff");}.ff1_c00341{font-family:ff1_c00341;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m90_c00341{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.me2_c00341{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m7f_c00341{transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);}
.m64_c00341{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.mdb_c00341{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m3e_c00341{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.mb_c00341{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m83_c00341{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m107_c00341{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m65_c00341{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mc5_c00341{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m91_c00341{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mec_c00341{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.mbb_c00341{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.md0_c00341{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m27_c00341{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m7d_c00341{transform:matrix(0.386503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386503,0.000000,0.000000,0.250000,0,0);}
.m99_c00341{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m106_c00341{transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);}
.mbc_c00341{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m2a_c00341{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.mcc_c00341{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.me5_c00341{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m9f_c00341{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.mb8_c00341{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.mc7_c00341{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.maa_c00341{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.md6_c00341{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m86_c00341{transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);}
.m18_c00341{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m7b_c00341{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m96_c00341{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m24_c00341{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mac_c00341{transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);}
.m8c_c00341{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.mdf_c00341{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m68_c00341{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.mb2_c00341{transform:matrix(0.411874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411874,0.000000,0.000000,0.250000,0,0);}
.m5f_c00341{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m8f_c00341{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m4b_c00341{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.ma2_c00341{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.mbe_c00341{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.md8_c00341{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.ma4_c00341{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.mb9_c00341{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m49_c00341{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m80_c00341{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.md3_c00341{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m1a_c00341{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.mfd_c00341{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m3b_c00341{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mcf_c00341{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.ma1_c00341{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.m52_c00341{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m108_c00341{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m10b_c00341{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.mb7_c00341{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m57_c00341{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mc2_c00341{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.maf_c00341{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.mc4_c00341{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.mf1_c00341{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.mc3_c00341{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.meb_c00341{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.mf6_c00341{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.md7_c00341{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m30_c00341{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m3a_c00341{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.mb0_c00341{transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);}
.mb3_c00341{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m93_c00341{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mad_c00341{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.mab_c00341{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m12_c00341{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.mb1_c00341{transform:matrix(0.441390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441390,0.000000,0.000000,0.250000,0,0);}
.m2e_c00341{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.ma6_c00341{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.ma3_c00341{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.mda_c00341{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m82_c00341{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.mdc_c00341{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m53_c00341{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m40_c00341{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.m75_c00341{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.ma7_c00341{transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);}
.m42_c00341{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.me3_c00341{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m60_c00341{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m1_c00341{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.ma_c00341{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m4d_c00341{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m105_c00341{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m9c_c00341{transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);}
.m8b_c00341{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m78_c00341{transform:matrix(0.463866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463866,0.000000,0.000000,0.250000,0,0);}
.m47_c00341{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m22_c00341{transform:matrix(0.465546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465546,0.000000,0.000000,0.250000,0,0);}
.m74_c00341{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m15_c00341{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.mbf_c00341{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m67_c00341{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m7a_c00341{transform:matrix(0.469748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469748,0.000000,0.000000,0.250000,0,0);}
.me0_c00341{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m70_c00341{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.mcb_c00341{transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);}
.m7c_c00341{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m7_c00341{transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);}
.mbd_c00341{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.md4_c00341{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m7e_c00341{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m100_c00341{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m8_c00341{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.mf7_c00341{transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);}
.m23_c00341{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mee_c00341{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.me8_c00341{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m9b_c00341{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m44_c00341{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m5b_c00341{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m39_c00341{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m11_c00341{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m72_c00341{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m89_c00341{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m51_c00341{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m31_c00341{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.ma8_c00341{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m58_c00341{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m9_c00341{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);}
.m84_c00341{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m10_c00341{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m88_c00341{transform:matrix(0.506303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506303,0.000000,0.000000,0.250000,0,0);}
.mf9_c00341{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.mba_c00341{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m10a_c00341{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m73_c00341{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m77_c00341{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mef_c00341{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m8a_c00341{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.md9_c00341{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m45_c00341{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m109_c00341{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m55_c00341{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m2_c00341{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m5c_c00341{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.me9_c00341{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.mb5_c00341{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mb4_c00341{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mf3_c00341{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m2b_c00341{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m85_c00341{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m2f_c00341{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m79_c00341{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m4a_c00341{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mb6_c00341{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m92_c00341{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m13_c00341{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m6_c00341{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mff_c00341{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.m95_c00341{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m94_c00341{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m87_c00341{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m20_c00341{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m5d_c00341{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.me7_c00341{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.med_c00341{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.mcd_c00341{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m4f_c00341{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.md1_c00341{transform:matrix(0.540336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540336,0.000000,0.000000,0.250000,0,0);}
.m5_c00341{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.ma5_c00341{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m28_c00341{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.ma0_c00341{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.mdd_c00341{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.me1_c00341{transform:matrix(0.543599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543599,0.000000,0.000000,0.250000,0,0);}
.mc8_c00341{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m35_c00341{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m63_c00341{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mc_c00341{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m97_c00341{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m71_c00341{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m54_c00341{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mae_c00341{transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);}
.m5e_c00341{transform:matrix(0.549629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549629,0.000000,0.000000,0.250000,0,0);}
.m5a_c00341{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m1c_c00341{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m16_c00341{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m2d_c00341{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m46_c00341{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.me_c00341{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m14_c00341{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mc1_c00341{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mea_c00341{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.ma9_c00341{transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);}
.mf5_c00341{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.mfc_c00341{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m4e_c00341{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m76_c00341{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m6a_c00341{transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);}
.m101_c00341{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m66_c00341{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m3d_c00341{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.mc9_c00341{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m9d_c00341{transform:matrix(0.568182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568182,0.000000,0.000000,0.250000,0,0);}
.me4_c00341{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.mf_c00341{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m3f_c00341{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m98_c00341{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m8e_c00341{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m1e_c00341{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.md5_c00341{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m41_c00341{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mf0_c00341{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.m32_c00341{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mfa_c00341{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);}
.m8d_c00341{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mfe_c00341{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m69_c00341{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m9e_c00341{transform:matrix(0.584416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584416,0.000000,0.000000,0.250000,0,0);}
.m9a_c00341{transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);}
.mf2_c00341{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.mce_c00341{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m6d_c00341{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.md_c00341{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m4_c00341{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);}
.m50_c00341{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m36_c00341{transform:matrix(0.606846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606846,0.000000,0.000000,0.250000,0,0);}
.m34_c00341{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m61_c00341{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.md2_c00341{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m0_c00341{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m33_c00341{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m26_c00341{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m1d_c00341{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m1f_c00341{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_c00341{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.mca_c00341{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.mc0_c00341{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m2c_c00341{transform:matrix(0.641598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641598,0.000000,0.000000,0.250000,0,0);}
.mf8_c00341{transform:matrix(0.642070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642070,0.000000,0.000000,0.250000,0,0);}
.m103_c00341{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m102_c00341{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m1b_c00341{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m25_c00341{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m17_c00341{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mc6_c00341{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m56_c00341{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m4c_c00341{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m38_c00341{transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);}
.m81_c00341{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m6c_c00341{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.m48_c00341{transform:matrix(0.722794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722794,0.000000,0.000000,0.250000,0,0);}
.me6_c00341{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m6b_c00341{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m19_c00341{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m29_c00341{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m37_c00341{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.mde_c00341{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m43_c00341{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m3c_c00341{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m6f_c00341{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m21_c00341{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m62_c00341{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m59_c00341{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mf4_c00341{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m6e_c00341{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.mfb_c00341{transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);}
.m3_c00341{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-6.409900px;}
.ws1_c00341{word-spacing:0.000000px;}
.fc0_c00341{color:transparent;}
.fs2_c00341{font-size:3.420000px;}
.fs8_c00341{font-size:13.620000px;}
.fs6_c00341{font-size:18.720000px;}
.fs0_c00341{font-size:20.400000px;}
.fs3_c00341{font-size:25.500000px;}
.fs1_c00341{font-size:28.920000px;}
.fs5_c00341{font-size:32.340000px;}
.fs4_c00341{font-size:35.700000px;}
.fs7_c00341{font-size:39.120000px;}
.y0_c00341{bottom:0.000000px;}
.ybf_c00341{bottom:249.825000px;}
.yc0_c00341{bottom:250.905000px;}
.yc1_c00341{bottom:251.970000px;}
.ybe_c00341{bottom:264.825000px;}
.ybb_c00341{bottom:265.905000px;}
.yb9_c00341{bottom:266.130000px;}
.yba_c00341{bottom:266.970000px;}
.ybd_c00341{bottom:267.630000px;}
.ybc_c00341{bottom:268.050000px;}
.yb8_c00341{bottom:280.905000px;}
.yb7_c00341{bottom:281.130000px;}
.yb6_c00341{bottom:281.970000px;}
.yb5_c00341{bottom:282.195000px;}
.yb3_c00341{bottom:302.745000px;}
.yb4_c00341{bottom:303.825000px;}
.yb0_c00341{bottom:304.905000px;}
.yb1_c00341{bottom:304.920000px;}
.yb2_c00341{bottom:305.970000px;}
.yaf_c00341{bottom:321.405000px;}
.yad_c00341{bottom:323.325000px;}
.yac_c00341{bottom:323.970000px;}
.yab_c00341{bottom:324.405000px;}
.yae_c00341{bottom:325.470000px;}
.ya9_c00341{bottom:341.745000px;}
.yaa_c00341{bottom:342.825000px;}
.ya8_c00341{bottom:343.905000px;}
.ya6_c00341{bottom:361.245000px;}
.ya7_c00341{bottom:362.745000px;}
.ya3_c00341{bottom:363.405000px;}
.ya5_c00341{bottom:364.470000px;}
.ya4_c00341{bottom:364.905000px;}
.ya1_c00341{bottom:382.245000px;}
.y9e_c00341{bottom:382.905000px;}
.ya2_c00341{bottom:383.130000px;}
.ya0_c00341{bottom:384.405000px;}
.y9f_c00341{bottom:384.420000px;}
.y9c_c00341{bottom:401.745000px;}
.y9a_c00341{bottom:402.630000px;}
.y9d_c00341{bottom:402.825000px;}
.y99_c00341{bottom:403.905000px;}
.y9b_c00341{bottom:403.920000px;}
.y95_c00341{bottom:421.245000px;}
.y97_c00341{bottom:422.325000px;}
.y98_c00341{bottom:423.405000px;}
.y96_c00341{bottom:423.420000px;}
.y93_c00341{bottom:440.325000px;}
.y94_c00341{bottom:440.745000px;}
.y91_c00341{bottom:442.470000px;}
.y92_c00341{bottom:442.905000px;}
.y8c_c00341{bottom:460.245000px;}
.y8d_c00341{bottom:461.325000px;}
.y90_c00341{bottom:462.405000px;}
.y8f_c00341{bottom:462.630000px;}
.y8e_c00341{bottom:463.470000px;}
.y8a_c00341{bottom:478.905000px;}
.y87_c00341{bottom:479.745000px;}
.y85_c00341{bottom:481.245000px;}
.y8b_c00341{bottom:481.470000px;}
.y89_c00341{bottom:481.905000px;}
.y88_c00341{bottom:482.130000px;}
.y86_c00341{bottom:483.405000px;}
.y84_c00341{bottom:499.245000px;}
.y82_c00341{bottom:499.905000px;}
.y83_c00341{bottom:500.325000px;}
.y7f_c00341{bottom:500.745000px;}
.y7e_c00341{bottom:501.405000px;}
.y80_c00341{bottom:501.630000px;}
.y81_c00341{bottom:502.905000px;}
.y7b_c00341{bottom:520.245000px;}
.y7d_c00341{bottom:521.130000px;}
.y7a_c00341{bottom:522.405000px;}
.y7c_c00341{bottom:523.470000px;}
.y76_c00341{bottom:539.745000px;}
.y78_c00341{bottom:540.630000px;}
.y79_c00341{bottom:541.470000px;}
.y77_c00341{bottom:541.905000px;}
.y75_c00341{bottom:558.405000px;}
.y72_c00341{bottom:559.245000px;}
.y74_c00341{bottom:561.405000px;}
.y73_c00341{bottom:561.420000px;}
.y6f_c00341{bottom:581.325000px;}
.y70_c00341{bottom:581.550000px;}
.y71_c00341{bottom:582.405000px;}
.y6d_c00341{bottom:595.470000px;}
.y6b_c00341{bottom:596.325000px;}
.y6c_c00341{bottom:597.405000px;}
.y6a_c00341{bottom:598.470000px;}
.y6e_c00341{bottom:599.550000px;}
.y68_c00341{bottom:614.970000px;}
.y69_c00341{bottom:615.825000px;}
.y67_c00341{bottom:616.905000px;}
.y66_c00341{bottom:617.970000px;}
.y65_c00341{bottom:638.325000px;}
.y64_c00341{bottom:638.745000px;}
.y63_c00341{bottom:669.405000px;}
.y62_c00341{bottom:686.745000px;}
.y61_c00341{bottom:687.825000px;}
.y60_c00341{bottom:688.905000px;}
.y5e_c00341{bottom:706.245000px;}
.y5f_c00341{bottom:707.325000px;}
.y5b_c00341{bottom:708.405000px;}
.y5d_c00341{bottom:708.630000px;}
.y5c_c00341{bottom:709.905000px;}
.y5a_c00341{bottom:724.905000px;}
.y58_c00341{bottom:725.745000px;}
.y59_c00341{bottom:727.245000px;}
.y57_c00341{bottom:727.905000px;}
.y53_c00341{bottom:746.745000px;}
.y56_c00341{bottom:747.630000px;}
.y55_c00341{bottom:747.825000px;}
.y54_c00341{bottom:748.905000px;}
.y51_c00341{bottom:764.325000px;}
.y50_c00341{bottom:766.245000px;}
.y52_c00341{bottom:767.130000px;}
.y4f_c00341{bottom:768.405000px;}
.y4e_c00341{bottom:785.745000px;}
.y4d_c00341{bottom:786.630000px;}
.y4b_c00341{bottom:786.825000px;}
.y4c_c00341{bottom:787.905000px;}
.y49_c00341{bottom:804.180000px;}
.y48_c00341{bottom:804.405000px;}
.y47_c00341{bottom:805.245000px;}
.y4a_c00341{bottom:806.325000px;}
.y46_c00341{bottom:807.405000px;}
.y45_c00341{bottom:824.745000px;}
.y43_c00341{bottom:825.825000px;}
.y44_c00341{bottom:826.905000px;}
.y42_c00341{bottom:827.130000px;}
.y40_c00341{bottom:844.245000px;}
.y3d_c00341{bottom:846.405000px;}
.y3f_c00341{bottom:846.630000px;}
.y41_c00341{bottom:847.470000px;}
.y3e_c00341{bottom:847.905000px;}
.y3b_c00341{bottom:864.180000px;}
.y38_c00341{bottom:865.245000px;}
.y3c_c00341{bottom:866.325000px;}
.y39_c00341{bottom:866.970000px;}
.y3a_c00341{bottom:867.405000px;}
.y33_c00341{bottom:884.745000px;}
.y37_c00341{bottom:885.630000px;}
.y35_c00341{bottom:885.825000px;}
.y36_c00341{bottom:886.470000px;}
.y34_c00341{bottom:886.905000px;}
.y2f_c00341{bottom:903.405000px;}
.y30_c00341{bottom:904.245000px;}
.y2e_c00341{bottom:905.130000px;}
.y32_c00341{bottom:905.325000px;}
.y2d_c00341{bottom:906.405000px;}
.y31_c00341{bottom:906.630000px;}
.y29_c00341{bottom:923.745000px;}
.y2a_c00341{bottom:924.630000px;}
.y2b_c00341{bottom:924.825000px;}
.y28_c00341{bottom:925.905000px;}
.y2c_c00341{bottom:926.970000px;}
.y23_c00341{bottom:943.245000px;}
.y24_c00341{bottom:944.130000px;}
.y26_c00341{bottom:944.325000px;}
.y27_c00341{bottom:944.550000px;}
.y25_c00341{bottom:945.405000px;}
.y1f_c00341{bottom:962.745000px;}
.y1d_c00341{bottom:964.245000px;}
.y22_c00341{bottom:964.905000px;}
.y20_c00341{bottom:965.130000px;}
.y21_c00341{bottom:965.970000px;}
.y1e_c00341{bottom:966.405000px;}
.y17_c00341{bottom:982.245000px;}
.y1a_c00341{bottom:982.470000px;}
.y18_c00341{bottom:984.405000px;}
.y1c_c00341{bottom:984.630000px;}
.y19_c00341{bottom:985.470000px;}
.y1b_c00341{bottom:985.905000px;}
.y16_c00341{bottom:1001.745000px;}
.y14_c00341{bottom:1003.905000px;}
.y15_c00341{bottom:1004.130000px;}
.y13_c00341{bottom:1004.970000px;}
.y12_c00341{bottom:1021.245000px;}
.yf_c00341{bottom:1022.745000px;}
.ye_c00341{bottom:1023.405000px;}
.yd_c00341{bottom:1023.630000px;}
.y11_c00341{bottom:1024.470000px;}
.y10_c00341{bottom:1024.905000px;}
.yc_c00341{bottom:1040.745000px;}
.ya_c00341{bottom:1042.245000px;}
.yb_c00341{bottom:1043.325000px;}
.y9_c00341{bottom:1044.405000px;}
.y6_c00341{bottom:1061.745000px;}
.y8_c00341{bottom:1061.970000px;}
.y7_c00341{bottom:1062.825000px;}
.y3_c00341{bottom:1063.905000px;}
.y4_c00341{bottom:1063.920000px;}
.y5_c00341{bottom:1064.970000px;}
.y2_c00341{bottom:1099.905000px;}
.y1_c00341{bottom:1102.050000px;}
.h3_c00341{height:4.206533px;}
.h9_c00341{height:16.752334px;}
.h7_c00341{height:23.025234px;}
.h1_c00341{height:25.091602px;}
.h4_c00341{height:31.364502px;}
.h2_c00341{height:35.571035px;}
.h6_c00341{height:39.777568px;}
.h5_c00341{height:43.910303px;}
.h8_c00341{height:48.116836px;}
.h0_c00341{height:1335.000000px;}
.w0_c00341{width:880.500000px;}
.x0_c00341{left:0.000000px;}
.xb4_c00341{left:149.145000px;}
.xea_c00341{left:150.420000px;}
.x62_c00341{left:151.500000px;}
.x2_c00341{left:152.580000px;}
.x99_c00341{left:153.855000px;}
.x108_c00341{left:163.500000px;}
.xc4_c00341{left:164.580000px;}
.xcc_c00341{left:166.920000px;}
.x3_c00341{left:168.645000px;}
.x2a_c00341{left:171.000000px;}
.x63_c00341{left:172.500000px;}
.x1d_c00341{left:175.920000px;}
.xab_c00341{left:177.420000px;}
.xf_c00341{left:178.920000px;}
.x80_c00341{left:180.000000px;}
.x103_c00341{left:181.080000px;}
.xdf_c00341{left:183.000000px;}
.xfa_c00341{left:184.080000px;}
.x64_c00341{left:186.420000px;}
.xb5_c00341{left:188.580000px;}
.xe6_c00341{left:190.500000px;}
.x9a_c00341{left:191.580000px;}
.x81_c00341{left:195.000000px;}
.x2b_c00341{left:197.580000px;}
.x57_c00341{left:200.580000px;}
.x1e_c00341{left:202.920000px;}
.x4c_c00341{left:205.500000px;}
.xcd_c00341{left:207.420000px;}
.xad_c00341{left:208.500000px;}
.x82_c00341{left:210.000000px;}
.xee_c00341{left:211.500000px;}
.x10_c00341{left:212.580000px;}
.xd9_c00341{left:216.420000px;}
.x100_c00341{left:219.000000px;}
.x9c_c00341{left:220.275000px;}
.x83_c00341{left:222.000000px;}
.x43_c00341{left:223.920000px;}
.xe0_c00341{left:225.000000px;}
.x8c_c00341{left:226.080000px;}
.x11_c00341{left:231.420000px;}
.xfb_c00341{left:232.500000px;}
.xc9_c00341{left:236.580000px;}
.x4_c00341{left:238.500000px;}
.x37_c00341{left:239.580000px;}
.x76_c00341{left:241.500000px;}
.x4d_c00341{left:242.580000px;}
.x95_c00341{left:244.500000px;}
.xc5_c00341{left:245.580000px;}
.x2c_c00341{left:247.500000px;}
.x65_c00341{left:249.000000px;}
.x84_c00341{left:250.080000px;}
.x71_c00341{left:251.580000px;}
.x10b_c00341{left:253.080000px;}
.xb6_c00341{left:254.145000px;}
.x12_c00341{left:256.080000px;}
.x58_c00341{left:258.000000px;}
.x5_c00341{left:259.500000px;}
.x77_c00341{left:261.000000px;}
.x9b_c00341{left:262.920000px;}
.x2d_c00341{left:265.500000px;}
.x44_c00341{left:267.000000px;}
.xca_c00341{left:268.080000px;}
.xbf_c00341{left:269.580000px;}
.x109_c00341{left:271.080000px;}
.xb7_c00341{left:274.500000px;}
.x1f_c00341{left:276.000000px;}
.xf4_c00341{left:279.000000px;}
.x2e_c00341{left:280.500000px;}
.xda_c00341{left:281.580000px;}
.x66_c00341{left:286.080000px;}
.xac_c00341{left:287.580000px;}
.x6_c00341{left:289.080000px;}
.xa2_c00341{left:294.420000px;}
.x2f_c00341{left:295.500000px;}
.xfc_c00341{left:298.920000px;}
.xd3_c00341{left:300.420000px;}
.x4e_c00341{left:301.500000px;}
.x13_c00341{left:306.000000px;}
.xe1_c00341{left:307.920000px;}
.x20_c00341{left:310.500000px;}
.xf7_c00341{left:312.000000px;}
.xeb_c00341{left:313.500000px;}
.x72_c00341{left:314.580000px;}
.xa3_c00341{left:316.920000px;}
.xbc_c00341{left:318.420000px;}
.x59_c00341{left:319.500000px;}
.xcb_c00341{left:320.580000px;}
.x38_c00341{left:325.500000px;}
.x21_c00341{left:328.500000px;}
.x85_c00341{left:331.080000px;}
.xdb_c00341{left:334.920000px;}
.x105_c00341{left:337.500000px;}
.xce_c00341{left:339.420000px;}
.xc2_c00341{left:342.000000px;}
.xa4_c00341{left:343.500000px;}
.x5a_c00341{left:344.580000px;}
.xbd_c00341{left:346.080000px;}
.x22_c00341{left:348.420000px;}
.x67_c00341{left:349.500000px;}
.x7_c00341{left:351.645000px;}
.x39_c00341{left:354.000000px;}
.x8d_c00341{left:355.500000px;}
.x78_c00341{left:357.000000px;}
.x9d_c00341{left:358.500000px;}
.xec_c00341{left:360.000000px;}
.xae_c00341{left:361.500000px;}
.x14_c00341{left:363.000000px;}
.xb8_c00341{left:364.500000px;}
.xef_c00341{left:366.000000px;}
.x68_c00341{left:367.920000px;}
.x45_c00341{left:369.000000px;}
.xcf_c00341{left:372.420000px;}
.x73_c00341{left:373.500000px;}
.xc6_c00341{left:375.000000px;}
.x23_c00341{left:376.500000px;}
.x30_c00341{left:381.000000px;}
.x4f_c00341{left:385.500000px;}
.x79_c00341{left:388.920000px;}
.x3a_c00341{left:393.000000px;}
.x5b_c00341{left:399.000000px;}
.xe2_c00341{left:400.080000px;}
.xf0_c00341{left:402.420000px;}
.x1_c00341{left:403.500000px;}
.x9e_c00341{left:404.580000px;}
.x8_c00341{left:406.080000px;}
.xe7_c00341{left:407.580000px;}
.x8e_c00341{left:411.420000px;}
.x15_c00341{left:413.580000px;}
.x3b_c00341{left:415.080000px;}
.xbe_c00341{left:416.580000px;}
.x24_c00341{left:418.500000px;}
.x69_c00341{left:423.420000px;}
.xd0_c00341{left:424.500000px;}
.x96_c00341{left:427.500000px;}
.xa5_c00341{left:429.000000px;}
.x16_c00341{left:430.500000px;}
.xaf_c00341{left:432.420000px;}
.x8f_c00341{left:436.080000px;}
.x5c_c00341{left:439.500000px;}
.x25_c00341{left:440.580000px;}
.x50_c00341{left:442.920000px;}
.x9_c00341{left:444.000000px;}
.xdc_c00341{left:445.500000px;}
.xfd_c00341{left:446.580000px;}
.x74_c00341{left:450.000000px;}
.x3c_c00341{left:451.080000px;}
.x10a_c00341{left:453.645000px;}
.xe3_c00341{left:455.580000px;}
.xb0_c00341{left:457.500000px;}
.xb9_c00341{left:459.000000px;}
.xf5_c00341{left:460.080000px;}
.x7a_c00341{left:462.000000px;}
.x6a_c00341{left:463.500000px;}
.xc7_c00341{left:464.580000px;}
.x104_c00341{left:468.000000px;}
.x5d_c00341{left:469.920000px;}
.x17_c00341{left:471.000000px;}
.x106_c00341{left:474.000000px;}
.xf1_c00341{left:477.420000px;}
.x7b_c00341{left:478.920000px;}
.x51_c00341{left:480.000000px;}
.x3d_c00341{left:481.500000px;}
.xa6_c00341{left:484.500000px;}
.x6b_c00341{left:486.420000px;}
.xe4_c00341{left:489.000000px;}
.x46_c00341{left:493.920000px;}
.x5e_c00341{left:496.500000px;}
.xc0_c00341{left:497.580000px;}
.x52_c00341{left:499.080000px;}
.x90_c00341{left:500.580000px;}
.xc3_c00341{left:502.080000px;}
.xf2_c00341{left:504.000000px;}
.x31_c00341{left:507.420000px;}
.xf6_c00341{left:509.580000px;}
.x26_c00341{left:511.920000px;}
.x6c_c00341{left:514.080000px;}
.x91_c00341{left:519.000000px;}
.x86_c00341{left:520.500000px;}
.xb1_c00341{left:522.000000px;}
.x3e_c00341{left:523.500000px;}
.x47_c00341{left:529.080000px;}
.x32_c00341{left:531.420000px;}
.x7c_c00341{left:532.500000px;}
.xa_c00341{left:534.420000px;}
.x107_c00341{left:535.920000px;}
.xdd_c00341{left:537.420000px;}
.x75_c00341{left:539.580000px;}
.x18_c00341{left:541.080000px;}
.xc8_c00341{left:545.580000px;}
.x9f_c00341{left:547.920000px;}
.xba_c00341{left:549.645000px;}
.x53_c00341{left:552.000000px;}
.xb_c00341{left:554.355000px;}
.xd1_c00341{left:555.420000px;}
.x5f_c00341{left:556.500000px;}
.x33_c00341{left:558.000000px;}
.xf3_c00341{left:559.500000px;}
.x48_c00341{left:561.000000px;}
.xa7_c00341{left:562.080000px;}
.xde_c00341{left:564.420000px;}
.x87_c00341{left:565.500000px;}
.x3f_c00341{left:567.000000px;}
.x19_c00341{left:570.000000px;}
.x97_c00341{left:572.580000px;}
.xd4_c00341{left:574.080000px;}
.x6d_c00341{left:576.000000px;}
.xc1_c00341{left:577.275000px;}
.x88_c00341{left:580.500000px;}
.x40_c00341{left:583.920000px;}
.x7d_c00341{left:585.000000px;}
.x27_c00341{left:586.080000px;}
.xbb_c00341{left:588.000000px;}
.xc_c00341{left:590.775000px;}
.x54_c00341{left:593.580000px;}
.x89_c00341{left:595.500000px;}
.x6e_c00341{left:598.920000px;}
.xe5_c00341{left:600.000000px;}
.x7e_c00341{left:601.500000px;}
.xb2_c00341{left:603.000000px;}
.x34_c00341{left:604.080000px;}
.x98_c00341{left:609.000000px;}
.x60_c00341{left:611.580000px;}
.x1a_c00341{left:613.500000px;}
.x7f_c00341{left:615.000000px;}
.xe8_c00341{left:618.000000px;}
.xa8_c00341{left:619.500000px;}
.xd5_c00341{left:621.000000px;}
.xfe_c00341{left:622.500000px;}
.x49_c00341{left:623.580000px;}
.xa0_c00341{left:627.000000px;}
.x35_c00341{left:630.000000px;}
.xd_c00341{left:631.500000px;}
.xa9_c00341{left:634.500000px;}
.xd6_c00341{left:639.420000px;}
.x55_c00341{left:643.080000px;}
.x92_c00341{left:645.000000px;}
.x101_c00341{left:648.420000px;}
.xaa_c00341{left:649.500000px;}
.x61_c00341{left:651.000000px;}
.x8a_c00341{left:652.500000px;}
.x4a_c00341{left:655.920000px;}
.x1b_c00341{left:658.500000px;}
.x6f_c00341{left:660.000000px;}
.xf8_c00341{left:661.500000px;}
.xb3_c00341{left:662.580000px;}
.xd7_c00341{left:666.420000px;}
.x41_c00341{left:668.580000px;}
.xa1_c00341{left:672.000000px;}
.x1c_c00341{left:673.500000px;}
.x102_c00341{left:675.000000px;}
.xed_c00341{left:676.500000px;}
.x28_c00341{left:678.000000px;}
.xf9_c00341{left:680.580000px;}
.x4b_c00341{left:684.000000px;}
.x93_c00341{left:688.500000px;}
.x70_c00341{left:691.500000px;}
.xd2_c00341{left:693.420000px;}
.x29_c00341{left:694.920000px;}
.xe9_c00341{left:696.420000px;}
.x36_c00341{left:697.920000px;}
.x42_c00341{left:700.920000px;}
.xe_c00341{left:702.420000px;}
.xff_c00341{left:703.500000px;}
.x94_c00341{left:708.420000px;}
.x56_c00341{left:709.920000px;}
.xd8_c00341{left:715.500000px;}
.x8b_c00341{left:720.000000px;}
@media print{
.v0_c00341{vertical-align:0.000000pt;}
.ls0_c00341{letter-spacing:0.000000pt;}
.ws0_c00341{word-spacing:-5.697689pt;}
.ws1_c00341{word-spacing:0.000000pt;}
.fs2_c00341{font-size:3.040000pt;}
.fs8_c00341{font-size:12.106667pt;}
.fs6_c00341{font-size:16.640000pt;}
.fs0_c00341{font-size:18.133333pt;}
.fs3_c00341{font-size:22.666667pt;}
.fs1_c00341{font-size:25.706667pt;}
.fs5_c00341{font-size:28.746667pt;}
.fs4_c00341{font-size:31.733333pt;}
.fs7_c00341{font-size:34.773333pt;}
.y0_c00341{bottom:0.000000pt;}
.ybf_c00341{bottom:222.066667pt;}
.yc0_c00341{bottom:223.026667pt;}
.yc1_c00341{bottom:223.973333pt;}
.ybe_c00341{bottom:235.400000pt;}
.ybb_c00341{bottom:236.360000pt;}
.yb9_c00341{bottom:236.560000pt;}
.yba_c00341{bottom:237.306667pt;}
.ybd_c00341{bottom:237.893333pt;}
.ybc_c00341{bottom:238.266667pt;}
.yb8_c00341{bottom:249.693333pt;}
.yb7_c00341{bottom:249.893333pt;}
.yb6_c00341{bottom:250.640000pt;}
.yb5_c00341{bottom:250.840000pt;}
.yb3_c00341{bottom:269.106667pt;}
.yb4_c00341{bottom:270.066667pt;}
.yb0_c00341{bottom:271.026667pt;}
.yb1_c00341{bottom:271.040000pt;}
.yb2_c00341{bottom:271.973333pt;}
.yaf_c00341{bottom:285.693333pt;}
.yad_c00341{bottom:287.400000pt;}
.yac_c00341{bottom:287.973333pt;}
.yab_c00341{bottom:288.360000pt;}
.yae_c00341{bottom:289.306667pt;}
.ya9_c00341{bottom:303.773333pt;}
.yaa_c00341{bottom:304.733333pt;}
.ya8_c00341{bottom:305.693333pt;}
.ya6_c00341{bottom:321.106667pt;}
.ya7_c00341{bottom:322.440000pt;}
.ya3_c00341{bottom:323.026667pt;}
.ya5_c00341{bottom:323.973333pt;}
.ya4_c00341{bottom:324.360000pt;}
.ya1_c00341{bottom:339.773333pt;}
.y9e_c00341{bottom:340.360000pt;}
.ya2_c00341{bottom:340.560000pt;}
.ya0_c00341{bottom:341.693333pt;}
.y9f_c00341{bottom:341.706667pt;}
.y9c_c00341{bottom:357.106667pt;}
.y9a_c00341{bottom:357.893333pt;}
.y9d_c00341{bottom:358.066667pt;}
.y99_c00341{bottom:359.026667pt;}
.y9b_c00341{bottom:359.040000pt;}
.y95_c00341{bottom:374.440000pt;}
.y97_c00341{bottom:375.400000pt;}
.y98_c00341{bottom:376.360000pt;}
.y96_c00341{bottom:376.373333pt;}
.y93_c00341{bottom:391.400000pt;}
.y94_c00341{bottom:391.773333pt;}
.y91_c00341{bottom:393.306667pt;}
.y92_c00341{bottom:393.693333pt;}
.y8c_c00341{bottom:409.106667pt;}
.y8d_c00341{bottom:410.066667pt;}
.y90_c00341{bottom:411.026667pt;}
.y8f_c00341{bottom:411.226667pt;}
.y8e_c00341{bottom:411.973333pt;}
.y8a_c00341{bottom:425.693333pt;}
.y87_c00341{bottom:426.440000pt;}
.y85_c00341{bottom:427.773333pt;}
.y8b_c00341{bottom:427.973333pt;}
.y89_c00341{bottom:428.360000pt;}
.y88_c00341{bottom:428.560000pt;}
.y86_c00341{bottom:429.693333pt;}
.y84_c00341{bottom:443.773333pt;}
.y82_c00341{bottom:444.360000pt;}
.y83_c00341{bottom:444.733333pt;}
.y7f_c00341{bottom:445.106667pt;}
.y7e_c00341{bottom:445.693333pt;}
.y80_c00341{bottom:445.893333pt;}
.y81_c00341{bottom:447.026667pt;}
.y7b_c00341{bottom:462.440000pt;}
.y7d_c00341{bottom:463.226667pt;}
.y7a_c00341{bottom:464.360000pt;}
.y7c_c00341{bottom:465.306667pt;}
.y76_c00341{bottom:479.773333pt;}
.y78_c00341{bottom:480.560000pt;}
.y79_c00341{bottom:481.306667pt;}
.y77_c00341{bottom:481.693333pt;}
.y75_c00341{bottom:496.360000pt;}
.y72_c00341{bottom:497.106667pt;}
.y74_c00341{bottom:499.026667pt;}
.y73_c00341{bottom:499.040000pt;}
.y6f_c00341{bottom:516.733333pt;}
.y70_c00341{bottom:516.933333pt;}
.y71_c00341{bottom:517.693333pt;}
.y6d_c00341{bottom:529.306667pt;}
.y6b_c00341{bottom:530.066667pt;}
.y6c_c00341{bottom:531.026667pt;}
.y6a_c00341{bottom:531.973333pt;}
.y6e_c00341{bottom:532.933333pt;}
.y68_c00341{bottom:546.640000pt;}
.y69_c00341{bottom:547.400000pt;}
.y67_c00341{bottom:548.360000pt;}
.y66_c00341{bottom:549.306667pt;}
.y65_c00341{bottom:567.400000pt;}
.y64_c00341{bottom:567.773333pt;}
.y63_c00341{bottom:595.026667pt;}
.y62_c00341{bottom:610.440000pt;}
.y61_c00341{bottom:611.400000pt;}
.y60_c00341{bottom:612.360000pt;}
.y5e_c00341{bottom:627.773333pt;}
.y5f_c00341{bottom:628.733333pt;}
.y5b_c00341{bottom:629.693333pt;}
.y5d_c00341{bottom:629.893333pt;}
.y5c_c00341{bottom:631.026667pt;}
.y5a_c00341{bottom:644.360000pt;}
.y58_c00341{bottom:645.106667pt;}
.y59_c00341{bottom:646.440000pt;}
.y57_c00341{bottom:647.026667pt;}
.y53_c00341{bottom:663.773333pt;}
.y56_c00341{bottom:664.560000pt;}
.y55_c00341{bottom:664.733333pt;}
.y54_c00341{bottom:665.693333pt;}
.y51_c00341{bottom:679.400000pt;}
.y50_c00341{bottom:681.106667pt;}
.y52_c00341{bottom:681.893333pt;}
.y4f_c00341{bottom:683.026667pt;}
.y4e_c00341{bottom:698.440000pt;}
.y4d_c00341{bottom:699.226667pt;}
.y4b_c00341{bottom:699.400000pt;}
.y4c_c00341{bottom:700.360000pt;}
.y49_c00341{bottom:714.826667pt;}
.y48_c00341{bottom:715.026667pt;}
.y47_c00341{bottom:715.773333pt;}
.y4a_c00341{bottom:716.733333pt;}
.y46_c00341{bottom:717.693333pt;}
.y45_c00341{bottom:733.106667pt;}
.y43_c00341{bottom:734.066667pt;}
.y44_c00341{bottom:735.026667pt;}
.y42_c00341{bottom:735.226667pt;}
.y40_c00341{bottom:750.440000pt;}
.y3d_c00341{bottom:752.360000pt;}
.y3f_c00341{bottom:752.560000pt;}
.y41_c00341{bottom:753.306667pt;}
.y3e_c00341{bottom:753.693333pt;}
.y3b_c00341{bottom:768.160000pt;}
.y38_c00341{bottom:769.106667pt;}
.y3c_c00341{bottom:770.066667pt;}
.y39_c00341{bottom:770.640000pt;}
.y3a_c00341{bottom:771.026667pt;}
.y33_c00341{bottom:786.440000pt;}
.y37_c00341{bottom:787.226667pt;}
.y35_c00341{bottom:787.400000pt;}
.y36_c00341{bottom:787.973333pt;}
.y34_c00341{bottom:788.360000pt;}
.y2f_c00341{bottom:803.026667pt;}
.y30_c00341{bottom:803.773333pt;}
.y2e_c00341{bottom:804.560000pt;}
.y32_c00341{bottom:804.733333pt;}
.y2d_c00341{bottom:805.693333pt;}
.y31_c00341{bottom:805.893333pt;}
.y29_c00341{bottom:821.106667pt;}
.y2a_c00341{bottom:821.893333pt;}
.y2b_c00341{bottom:822.066667pt;}
.y28_c00341{bottom:823.026667pt;}
.y2c_c00341{bottom:823.973333pt;}
.y23_c00341{bottom:838.440000pt;}
.y24_c00341{bottom:839.226667pt;}
.y26_c00341{bottom:839.400000pt;}
.y27_c00341{bottom:839.600000pt;}
.y25_c00341{bottom:840.360000pt;}
.y1f_c00341{bottom:855.773333pt;}
.y1d_c00341{bottom:857.106667pt;}
.y22_c00341{bottom:857.693333pt;}
.y20_c00341{bottom:857.893333pt;}
.y21_c00341{bottom:858.640000pt;}
.y1e_c00341{bottom:859.026667pt;}
.y17_c00341{bottom:873.106667pt;}
.y1a_c00341{bottom:873.306667pt;}
.y18_c00341{bottom:875.026667pt;}
.y1c_c00341{bottom:875.226667pt;}
.y19_c00341{bottom:875.973333pt;}
.y1b_c00341{bottom:876.360000pt;}
.y16_c00341{bottom:890.440000pt;}
.y14_c00341{bottom:892.360000pt;}
.y15_c00341{bottom:892.560000pt;}
.y13_c00341{bottom:893.306667pt;}
.y12_c00341{bottom:907.773333pt;}
.yf_c00341{bottom:909.106667pt;}
.ye_c00341{bottom:909.693333pt;}
.yd_c00341{bottom:909.893333pt;}
.y11_c00341{bottom:910.640000pt;}
.y10_c00341{bottom:911.026667pt;}
.yc_c00341{bottom:925.106667pt;}
.ya_c00341{bottom:926.440000pt;}
.yb_c00341{bottom:927.400000pt;}
.y9_c00341{bottom:928.360000pt;}
.y6_c00341{bottom:943.773333pt;}
.y8_c00341{bottom:943.973333pt;}
.y7_c00341{bottom:944.733333pt;}
.y3_c00341{bottom:945.693333pt;}
.y4_c00341{bottom:945.706667pt;}
.y5_c00341{bottom:946.640000pt;}
.y2_c00341{bottom:977.693333pt;}
.y1_c00341{bottom:979.600000pt;}
.h3_c00341{height:3.739141pt;}
.h9_c00341{height:14.890964pt;}
.h7_c00341{height:20.466875pt;}
.h1_c00341{height:22.303646pt;}
.h4_c00341{height:27.879557pt;}
.h2_c00341{height:31.618698pt;}
.h6_c00341{height:35.357839pt;}
.h5_c00341{height:39.031380pt;}
.h8_c00341{height:42.770521pt;}
.h0_c00341{height:1186.666667pt;}
.w0_c00341{width:782.666667pt;}
.x0_c00341{left:0.000000pt;}
.xb4_c00341{left:132.573333pt;}
.xea_c00341{left:133.706667pt;}
.x62_c00341{left:134.666667pt;}
.x2_c00341{left:135.626667pt;}
.x99_c00341{left:136.760000pt;}
.x108_c00341{left:145.333333pt;}
.xc4_c00341{left:146.293333pt;}
.xcc_c00341{left:148.373333pt;}
.x3_c00341{left:149.906667pt;}
.x2a_c00341{left:152.000000pt;}
.x63_c00341{left:153.333333pt;}
.x1d_c00341{left:156.373333pt;}
.xab_c00341{left:157.706667pt;}
.xf_c00341{left:159.040000pt;}
.x80_c00341{left:160.000000pt;}
.x103_c00341{left:160.960000pt;}
.xdf_c00341{left:162.666667pt;}
.xfa_c00341{left:163.626667pt;}
.x64_c00341{left:165.706667pt;}
.xb5_c00341{left:167.626667pt;}
.xe6_c00341{left:169.333333pt;}
.x9a_c00341{left:170.293333pt;}
.x81_c00341{left:173.333333pt;}
.x2b_c00341{left:175.626667pt;}
.x57_c00341{left:178.293333pt;}
.x1e_c00341{left:180.373333pt;}
.x4c_c00341{left:182.666667pt;}
.xcd_c00341{left:184.373333pt;}
.xad_c00341{left:185.333333pt;}
.x82_c00341{left:186.666667pt;}
.xee_c00341{left:188.000000pt;}
.x10_c00341{left:188.960000pt;}
.xd9_c00341{left:192.373333pt;}
.x100_c00341{left:194.666667pt;}
.x9c_c00341{left:195.800000pt;}
.x83_c00341{left:197.333333pt;}
.x43_c00341{left:199.040000pt;}
.xe0_c00341{left:200.000000pt;}
.x8c_c00341{left:200.960000pt;}
.x11_c00341{left:205.706667pt;}
.xfb_c00341{left:206.666667pt;}
.xc9_c00341{left:210.293333pt;}
.x4_c00341{left:212.000000pt;}
.x37_c00341{left:212.960000pt;}
.x76_c00341{left:214.666667pt;}
.x4d_c00341{left:215.626667pt;}
.x95_c00341{left:217.333333pt;}
.xc5_c00341{left:218.293333pt;}
.x2c_c00341{left:220.000000pt;}
.x65_c00341{left:221.333333pt;}
.x84_c00341{left:222.293333pt;}
.x71_c00341{left:223.626667pt;}
.x10b_c00341{left:224.960000pt;}
.xb6_c00341{left:225.906667pt;}
.x12_c00341{left:227.626667pt;}
.x58_c00341{left:229.333333pt;}
.x5_c00341{left:230.666667pt;}
.x77_c00341{left:232.000000pt;}
.x9b_c00341{left:233.706667pt;}
.x2d_c00341{left:236.000000pt;}
.x44_c00341{left:237.333333pt;}
.xca_c00341{left:238.293333pt;}
.xbf_c00341{left:239.626667pt;}
.x109_c00341{left:240.960000pt;}
.xb7_c00341{left:244.000000pt;}
.x1f_c00341{left:245.333333pt;}
.xf4_c00341{left:248.000000pt;}
.x2e_c00341{left:249.333333pt;}
.xda_c00341{left:250.293333pt;}
.x66_c00341{left:254.293333pt;}
.xac_c00341{left:255.626667pt;}
.x6_c00341{left:256.960000pt;}
.xa2_c00341{left:261.706667pt;}
.x2f_c00341{left:262.666667pt;}
.xfc_c00341{left:265.706667pt;}
.xd3_c00341{left:267.040000pt;}
.x4e_c00341{left:268.000000pt;}
.x13_c00341{left:272.000000pt;}
.xe1_c00341{left:273.706667pt;}
.x20_c00341{left:276.000000pt;}
.xf7_c00341{left:277.333333pt;}
.xeb_c00341{left:278.666667pt;}
.x72_c00341{left:279.626667pt;}
.xa3_c00341{left:281.706667pt;}
.xbc_c00341{left:283.040000pt;}
.x59_c00341{left:284.000000pt;}
.xcb_c00341{left:284.960000pt;}
.x38_c00341{left:289.333333pt;}
.x21_c00341{left:292.000000pt;}
.x85_c00341{left:294.293333pt;}
.xdb_c00341{left:297.706667pt;}
.x105_c00341{left:300.000000pt;}
.xce_c00341{left:301.706667pt;}
.xc2_c00341{left:304.000000pt;}
.xa4_c00341{left:305.333333pt;}
.x5a_c00341{left:306.293333pt;}
.xbd_c00341{left:307.626667pt;}
.x22_c00341{left:309.706667pt;}
.x67_c00341{left:310.666667pt;}
.x7_c00341{left:312.573333pt;}
.x39_c00341{left:314.666667pt;}
.x8d_c00341{left:316.000000pt;}
.x78_c00341{left:317.333333pt;}
.x9d_c00341{left:318.666667pt;}
.xec_c00341{left:320.000000pt;}
.xae_c00341{left:321.333333pt;}
.x14_c00341{left:322.666667pt;}
.xb8_c00341{left:324.000000pt;}
.xef_c00341{left:325.333333pt;}
.x68_c00341{left:327.040000pt;}
.x45_c00341{left:328.000000pt;}
.xcf_c00341{left:331.040000pt;}
.x73_c00341{left:332.000000pt;}
.xc6_c00341{left:333.333333pt;}
.x23_c00341{left:334.666667pt;}
.x30_c00341{left:338.666667pt;}
.x4f_c00341{left:342.666667pt;}
.x79_c00341{left:345.706667pt;}
.x3a_c00341{left:349.333333pt;}
.x5b_c00341{left:354.666667pt;}
.xe2_c00341{left:355.626667pt;}
.xf0_c00341{left:357.706667pt;}
.x1_c00341{left:358.666667pt;}
.x9e_c00341{left:359.626667pt;}
.x8_c00341{left:360.960000pt;}
.xe7_c00341{left:362.293333pt;}
.x8e_c00341{left:365.706667pt;}
.x15_c00341{left:367.626667pt;}
.x3b_c00341{left:368.960000pt;}
.xbe_c00341{left:370.293333pt;}
.x24_c00341{left:372.000000pt;}
.x69_c00341{left:376.373333pt;}
.xd0_c00341{left:377.333333pt;}
.x96_c00341{left:380.000000pt;}
.xa5_c00341{left:381.333333pt;}
.x16_c00341{left:382.666667pt;}
.xaf_c00341{left:384.373333pt;}
.x8f_c00341{left:387.626667pt;}
.x5c_c00341{left:390.666667pt;}
.x25_c00341{left:391.626667pt;}
.x50_c00341{left:393.706667pt;}
.x9_c00341{left:394.666667pt;}
.xdc_c00341{left:396.000000pt;}
.xfd_c00341{left:396.960000pt;}
.x74_c00341{left:400.000000pt;}
.x3c_c00341{left:400.960000pt;}
.x10a_c00341{left:403.240000pt;}
.xe3_c00341{left:404.960000pt;}
.xb0_c00341{left:406.666667pt;}
.xb9_c00341{left:408.000000pt;}
.xf5_c00341{left:408.960000pt;}
.x7a_c00341{left:410.666667pt;}
.x6a_c00341{left:412.000000pt;}
.xc7_c00341{left:412.960000pt;}
.x104_c00341{left:416.000000pt;}
.x5d_c00341{left:417.706667pt;}
.x17_c00341{left:418.666667pt;}
.x106_c00341{left:421.333333pt;}
.xf1_c00341{left:424.373333pt;}
.x7b_c00341{left:425.706667pt;}
.x51_c00341{left:426.666667pt;}
.x3d_c00341{left:428.000000pt;}
.xa6_c00341{left:430.666667pt;}
.x6b_c00341{left:432.373333pt;}
.xe4_c00341{left:434.666667pt;}
.x46_c00341{left:439.040000pt;}
.x5e_c00341{left:441.333333pt;}
.xc0_c00341{left:442.293333pt;}
.x52_c00341{left:443.626667pt;}
.x90_c00341{left:444.960000pt;}
.xc3_c00341{left:446.293333pt;}
.xf2_c00341{left:448.000000pt;}
.x31_c00341{left:451.040000pt;}
.xf6_c00341{left:452.960000pt;}
.x26_c00341{left:455.040000pt;}
.x6c_c00341{left:456.960000pt;}
.x91_c00341{left:461.333333pt;}
.x86_c00341{left:462.666667pt;}
.xb1_c00341{left:464.000000pt;}
.x3e_c00341{left:465.333333pt;}
.x47_c00341{left:470.293333pt;}
.x32_c00341{left:472.373333pt;}
.x7c_c00341{left:473.333333pt;}
.xa_c00341{left:475.040000pt;}
.x107_c00341{left:476.373333pt;}
.xdd_c00341{left:477.706667pt;}
.x75_c00341{left:479.626667pt;}
.x18_c00341{left:480.960000pt;}
.xc8_c00341{left:484.960000pt;}
.x9f_c00341{left:487.040000pt;}
.xba_c00341{left:488.573333pt;}
.x53_c00341{left:490.666667pt;}
.xb_c00341{left:492.760000pt;}
.xd1_c00341{left:493.706667pt;}
.x5f_c00341{left:494.666667pt;}
.x33_c00341{left:496.000000pt;}
.xf3_c00341{left:497.333333pt;}
.x48_c00341{left:498.666667pt;}
.xa7_c00341{left:499.626667pt;}
.xde_c00341{left:501.706667pt;}
.x87_c00341{left:502.666667pt;}
.x3f_c00341{left:504.000000pt;}
.x19_c00341{left:506.666667pt;}
.x97_c00341{left:508.960000pt;}
.xd4_c00341{left:510.293333pt;}
.x6d_c00341{left:512.000000pt;}
.xc1_c00341{left:513.133333pt;}
.x88_c00341{left:516.000000pt;}
.x40_c00341{left:519.040000pt;}
.x7d_c00341{left:520.000000pt;}
.x27_c00341{left:520.960000pt;}
.xbb_c00341{left:522.666667pt;}
.xc_c00341{left:525.133333pt;}
.x54_c00341{left:527.626667pt;}
.x89_c00341{left:529.333333pt;}
.x6e_c00341{left:532.373333pt;}
.xe5_c00341{left:533.333333pt;}
.x7e_c00341{left:534.666667pt;}
.xb2_c00341{left:536.000000pt;}
.x34_c00341{left:536.960000pt;}
.x98_c00341{left:541.333333pt;}
.x60_c00341{left:543.626667pt;}
.x1a_c00341{left:545.333333pt;}
.x7f_c00341{left:546.666667pt;}
.xe8_c00341{left:549.333333pt;}
.xa8_c00341{left:550.666667pt;}
.xd5_c00341{left:552.000000pt;}
.xfe_c00341{left:553.333333pt;}
.x49_c00341{left:554.293333pt;}
.xa0_c00341{left:557.333333pt;}
.x35_c00341{left:560.000000pt;}
.xd_c00341{left:561.333333pt;}
.xa9_c00341{left:564.000000pt;}
.xd6_c00341{left:568.373333pt;}
.x55_c00341{left:571.626667pt;}
.x92_c00341{left:573.333333pt;}
.x101_c00341{left:576.373333pt;}
.xaa_c00341{left:577.333333pt;}
.x61_c00341{left:578.666667pt;}
.x8a_c00341{left:580.000000pt;}
.x4a_c00341{left:583.040000pt;}
.x1b_c00341{left:585.333333pt;}
.x6f_c00341{left:586.666667pt;}
.xf8_c00341{left:588.000000pt;}
.xb3_c00341{left:588.960000pt;}
.xd7_c00341{left:592.373333pt;}
.x41_c00341{left:594.293333pt;}
.xa1_c00341{left:597.333333pt;}
.x1c_c00341{left:598.666667pt;}
.x102_c00341{left:600.000000pt;}
.xed_c00341{left:601.333333pt;}
.x28_c00341{left:602.666667pt;}
.xf9_c00341{left:604.960000pt;}
.x4b_c00341{left:608.000000pt;}
.x93_c00341{left:612.000000pt;}
.x70_c00341{left:614.666667pt;}
.xd2_c00341{left:616.373333pt;}
.x29_c00341{left:617.706667pt;}
.xe9_c00341{left:619.040000pt;}
.x36_c00341{left:620.373333pt;}
.x42_c00341{left:623.040000pt;}
.xe_c00341{left:624.373333pt;}
.xff_c00341{left:625.333333pt;}
.x94_c00341{left:629.706667pt;}
.x56_c00341{left:631.040000pt;}
.xd8_c00341{left:636.000000pt;}
.x8b_c00341{left:640.000000pt;}
}





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

.ir_c00342:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00342{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00342;src:url('chunks/assets/font_ac848c83f453d5b37e4f3ce7.woff2')format("woff");}.ff1_c00342{font-family:ff1_c00342;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m36_c00342{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.m37_c00342{transform:matrix(0.348926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348926,0.000000,0.000000,0.250000,0,0);}
.m35_c00342{transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);}
.m46_c00342{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mb9_c00342{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m70_c00342{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m3e_c00342{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m15_c00342{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.mfc_c00342{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m26_c00342{transform:matrix(0.376160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376160,0.000000,0.000000,0.250000,0,0);}
.m88_c00342{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m29_c00342{transform:matrix(0.380187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380187,0.000000,0.000000,0.250000,0,0);}
.m94_c00342{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m9c_c00342{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m33_c00342{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.md8_c00342{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m86_c00342{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mf1_c00342{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.ma1_c00342{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m60_c00342{transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);}
.mcc_c00342{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mf8_c00342{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.me8_c00342{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m5b_c00342{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.mc6_c00342{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m87_c00342{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m50_c00342{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m1c_c00342{transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);}
.ma9_c00342{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mb4_c00342{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m2f_c00342{transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);}
.me0_c00342{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m9d_c00342{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mb1_c00342{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m4b_c00342{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.me1_c00342{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m3b_c00342{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m66_c00342{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m6c_c00342{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m59_c00342{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m89_c00342{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m22_c00342{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m8d_c00342{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m80_c00342{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m23_c00342{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m19_c00342{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m82_c00342{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mb5_c00342{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mc2_c00342{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.ma6_c00342{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m6d_c00342{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mef_c00342{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.m84_c00342{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m73_c00342{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m9b_c00342{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m6b_c00342{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.meb_c00342{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m101_c00342{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.ma5_c00342{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.mb2_c00342{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mdc_c00342{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.me7_c00342{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m43_c00342{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.ma8_c00342{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.mac_c00342{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m76_c00342{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m58_c00342{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.md9_c00342{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m42_c00342{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.mb8_c00342{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m45_c00342{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m9a_c00342{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.mf7_c00342{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.mca_c00342{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.mbc_c00342{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.me5_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);}
.mf2_c00342{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m6a_c00342{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.mcb_c00342{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.maf_c00342{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m67_c00342{transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);}
.m52_c00342{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m62_c00342{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.mb0_c00342{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.ma0_c00342{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m7a_c00342{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.me3_c00342{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.m20_c00342{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m7c_c00342{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.me6_c00342{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.mbe_c00342{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m69_c00342{transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);}
.mad_c00342{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.ma4_c00342{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.maa_c00342{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m6_c00342{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mae_c00342{transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);}
.med_c00342{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m10_c00342{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.mbb_c00342{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m61_c00342{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m4f_c00342{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m16_c00342{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.mdb_c00342{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m28_c00342{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m92_c00342{transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);}
.m31_c00342{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m8c_c00342{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m93_c00342{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mc5_c00342{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.mf5_c00342{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m1_c00342{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m11_c00342{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mb7_c00342{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mfb_c00342{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mba_c00342{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m3c_c00342{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m91_c00342{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m7_c00342{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_c00342{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m96_c00342{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.md1_c00342{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m97_c00342{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mf3_c00342{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m18_c00342{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m85_c00342{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.me4_c00342{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.m57_c00342{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m9f_c00342{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m8a_c00342{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m21_c00342{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.m90_c00342{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.md2_c00342{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m9e_c00342{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m17_c00342{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.md5_c00342{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.ma_c00342{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.mbd_c00342{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m30_c00342{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m2_c00342{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);}
.m1f_c00342{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m7d_c00342{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mb6_c00342{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mc0_c00342{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m2a_c00342{transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);}
.m8f_c00342{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mfe_c00342{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mb_c00342{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m3a_c00342{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m7e_c00342{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.mc7_c00342{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m40_c00342{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m55_c00342{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m8b_c00342{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m98_c00342{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mc9_c00342{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m5f_c00342{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m14_c00342{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m6f_c00342{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m3f_c00342{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.md4_c00342{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mf9_c00342{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m32_c00342{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mab_c00342{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m77_c00342{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m65_c00342{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m75_c00342{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m41_c00342{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m64_c00342{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m72_c00342{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mde_c00342{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m63_c00342{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mfd_c00342{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.me9_c00342{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m56_c00342{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m53_c00342{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m2c_c00342{transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);}
.m5e_c00342{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mff_c00342{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m1d_c00342{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m4e_c00342{transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);}
.m99_c00342{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m34_c00342{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m5c_c00342{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.mb3_c00342{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m39_c00342{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m7f_c00342{transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);}
.m1e_c00342{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m24_c00342{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.mda_c00342{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.me2_c00342{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mee_c00342{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.mc3_c00342{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m1a_c00342{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m81_c00342{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);}
.m1b_c00342{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m74_c00342{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m100_c00342{transform:matrix(0.587059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587059,0.000000,0.000000,0.250000,0,0);}
.mf4_c00342{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m78_c00342{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m95_c00342{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m5d_c00342{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m79_c00342{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m4d_c00342{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m13_c00342{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m3d_c00342{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mc8_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);}
.m102_c00342{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mdd_c00342{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.mcf_c00342{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mc4_c00342{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mcd_c00342{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.m0_c00342{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m8e_c00342{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.ma3_c00342{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m4c_c00342{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m48_c00342{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mf_c00342{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_c00342{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m71_c00342{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m49_c00342{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m9_c00342{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m3_c00342{transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);}
.md6_c00342{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m5_c00342{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m4a_c00342{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.me_c00342{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);}
.mf0_c00342{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.mc_c00342{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.md_c00342{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m47_c00342{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m4_c00342{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m44_c00342{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m68_c00342{transform:matrix(0.673529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673529,0.000000,0.000000,0.250000,0,0);}
.m2b_c00342{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m12_c00342{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m2e_c00342{transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);}
.m5a_c00342{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m2d_c00342{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m25_c00342{transform:matrix(0.697794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697794,0.000000,0.000000,0.250000,0,0);}
.mbf_c00342{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.ma7_c00342{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m8_c00342{transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);}
.m38_c00342{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mce_c00342{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.md7_c00342{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m7b_c00342{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mc1_c00342{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mec_c00342{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m54_c00342{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.ma2_c00342{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.md0_c00342{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mf6_c00342{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mea_c00342{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.md3_c00342{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m51_c00342{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mdf_c00342{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m27_c00342{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m83_c00342{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.v0_c00342{vertical-align:0.000000px;}
.ls0_c00342{letter-spacing:0.000000px;}
.sc__c00342{text-shadow:none;}
.sc0_c00342{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00342{-webkit-text-stroke:0px transparent;}
.sc0_c00342{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00342{word-spacing:0.000000px;}
.fc0_c00342{color:transparent;}
.fs8_c00342{font-size:3.420000px;}
.fs4_c00342{font-size:13.620000px;}
.fs2_c00342{font-size:18.720000px;}
.fs0_c00342{font-size:20.400000px;}
.fs3_c00342{font-size:25.500000px;}
.fs1_c00342{font-size:28.920000px;}
.fs5_c00342{font-size:32.340000px;}
.fs6_c00342{font-size:35.700000px;}
.fs7_c00342{font-size:39.120000px;}
.y0_c00342{bottom:0.000000px;}
.yd2_c00342{bottom:251.745000px;}
.yd3_c00342{bottom:253.905000px;}
.yd4_c00342{bottom:254.130000px;}
.ycd_c00342{bottom:271.245000px;}
.yd1_c00342{bottom:271.470000px;}
.ycf_c00342{bottom:273.405000px;}
.yce_c00342{bottom:273.630000px;}
.yd0_c00342{bottom:274.470000px;}
.ycc_c00342{bottom:274.905000px;}
.yca_c00342{bottom:292.245000px;}
.ycb_c00342{bottom:293.130000px;}
.yc9_c00342{bottom:294.405000px;}
.yc5_c00342{bottom:311.745000px;}
.yc8_c00342{bottom:312.630000px;}
.yc7_c00342{bottom:313.470000px;}
.yc4_c00342{bottom:313.905000px;}
.yc6_c00342{bottom:314.130000px;}
.yc1_c00342{bottom:331.245000px;}
.yc2_c00342{bottom:333.405000px;}
.yc0_c00342{bottom:333.630000px;}
.yc3_c00342{bottom:334.470000px;}
.ybf_c00342{bottom:351.825000px;}
.ybd_c00342{bottom:352.905000px;}
.ybc_c00342{bottom:353.130000px;}
.ybe_c00342{bottom:353.970000px;}
.yb9_c00342{bottom:370.245000px;}
.ybb_c00342{bottom:371.325000px;}
.yb8_c00342{bottom:372.405000px;}
.yba_c00342{bottom:372.630000px;}
.yb7_c00342{bottom:373.470000px;}
.yb6_c00342{bottom:389.745000px;}
.yb4_c00342{bottom:390.825000px;}
.yb1_c00342{bottom:391.245000px;}
.yb2_c00342{bottom:392.130000px;}
.yb3_c00342{bottom:392.325000px;}
.yb5_c00342{bottom:393.405000px;}
.yab_c00342{bottom:410.325000px;}
.yaa_c00342{bottom:410.745000px;}
.yae_c00342{bottom:411.630000px;}
.yaf_c00342{bottom:411.825000px;}
.yb0_c00342{bottom:412.470000px;}
.yad_c00342{bottom:412.905000px;}
.yac_c00342{bottom:413.130000px;}
.ya8_c00342{bottom:430.245000px;}
.ya9_c00342{bottom:431.130000px;}
.ya7_c00342{bottom:432.405000px;}
.ya6_c00342{bottom:448.905000px;}
.ya4_c00342{bottom:449.325000px;}
.ya5_c00342{bottom:449.745000px;}
.ya3_c00342{bottom:451.905000px;}
.ya2_c00342{bottom:467.745000px;}
.ya0_c00342{bottom:468.405000px;}
.y9f_c00342{bottom:469.245000px;}
.y9e_c00342{bottom:470.970000px;}
.y9d_c00342{bottom:471.405000px;}
.ya1_c00342{bottom:472.470000px;}
.y97_c00342{bottom:488.745000px;}
.y99_c00342{bottom:490.245000px;}
.y9a_c00342{bottom:490.905000px;}
.y98_c00342{bottom:491.130000px;}
.y9c_c00342{bottom:491.970000px;}
.y9b_c00342{bottom:492.405000px;}
.y96_c00342{bottom:507.405000px;}
.y92_c00342{bottom:509.745000px;}
.y94_c00342{bottom:510.630000px;}
.y95_c00342{bottom:511.470000px;}
.y93_c00342{bottom:511.905000px;}
.y91_c00342{bottom:527.970000px;}
.y8e_c00342{bottom:529.245000px;}
.y8f_c00342{bottom:530.970000px;}
.y90_c00342{bottom:531.405000px;}
.y8c_c00342{bottom:546.405000px;}
.y8a_c00342{bottom:549.825000px;}
.y8d_c00342{bottom:550.470000px;}
.y8b_c00342{bottom:550.905000px;}
.y88_c00342{bottom:568.245000px;}
.y89_c00342{bottom:569.130000px;}
.y87_c00342{bottom:570.405000px;}
.y85_c00342{bottom:586.905000px;}
.y84_c00342{bottom:587.745000px;}
.y86_c00342{bottom:588.630000px;}
.y83_c00342{bottom:589.905000px;}
.y81_c00342{bottom:608.745000px;}
.y7f_c00342{bottom:609.405000px;}
.y82_c00342{bottom:609.825000px;}
.y80_c00342{bottom:610.905000px;}
.y7c_c00342{bottom:625.905000px;}
.y7e_c00342{bottom:627.825000px;}
.y7a_c00342{bottom:628.245000px;}
.y7b_c00342{bottom:629.130000px;}
.y7d_c00342{bottom:630.405000px;}
.y78_c00342{bottom:647.325000px;}
.y76_c00342{bottom:647.745000px;}
.y77_c00342{bottom:648.630000px;}
.y79_c00342{bottom:648.825000px;}
.y75_c00342{bottom:649.905000px;}
.y72_c00342{bottom:666.825000px;}
.y70_c00342{bottom:667.245000px;}
.y73_c00342{bottom:668.130000px;}
.y74_c00342{bottom:668.325000px;}
.y71_c00342{bottom:669.405000px;}
.y6c_c00342{bottom:685.905000px;}
.y6a_c00342{bottom:686.745000px;}
.y6e_c00342{bottom:686.970000px;}
.y6f_c00342{bottom:687.825000px;}
.y6b_c00342{bottom:688.905000px;}
.y6d_c00342{bottom:689.130000px;}
.y68_c00342{bottom:705.405000px;}
.y65_c00342{bottom:706.245000px;}
.y66_c00342{bottom:708.405000px;}
.y67_c00342{bottom:709.470000px;}
.y69_c00342{bottom:709.905000px;}
.y62_c00342{bottom:725.745000px;}
.y63_c00342{bottom:726.825000px;}
.y61_c00342{bottom:727.905000px;}
.y64_c00342{bottom:728.130000px;}
.y60_c00342{bottom:728.970000px;}
.y5c_c00342{bottom:745.245000px;}
.y5f_c00342{bottom:746.325000px;}
.y5d_c00342{bottom:746.745000px;}
.y5b_c00342{bottom:747.405000px;}
.y5e_c00342{bottom:748.905000px;}
.y57_c00342{bottom:766.245000px;}
.y5a_c00342{bottom:767.130000px;}
.y59_c00342{bottom:768.405000px;}
.y58_c00342{bottom:768.420000px;}
.y56_c00342{bottom:785.745000px;}
.y54_c00342{bottom:787.470000px;}
.y55_c00342{bottom:787.905000px;}
.y51_c00342{bottom:805.245000px;}
.y52_c00342{bottom:806.130000px;}
.y53_c00342{bottom:806.325000px;}
.y4f_c00342{bottom:806.970000px;}
.y50_c00342{bottom:807.405000px;}
.y47_c00342{bottom:823.470000px;}
.y4c_c00342{bottom:823.905000px;}
.y4a_c00342{bottom:824.745000px;}
.y4d_c00342{bottom:824.970000px;}
.y49_c00342{bottom:825.630000px;}
.y4e_c00342{bottom:826.050000px;}
.y48_c00342{bottom:826.905000px;}
.y4b_c00342{bottom:827.970000px;}
.y41_c00342{bottom:844.245000px;}
.y43_c00342{bottom:845.325000px;}
.y46_c00342{bottom:845.745000px;}
.y40_c00342{bottom:846.405000px;}
.y44_c00342{bottom:846.630000px;}
.y42_c00342{bottom:847.470000px;}
.y45_c00342{bottom:847.905000px;}
.y3d_c00342{bottom:863.970000px;}
.y3b_c00342{bottom:864.180000px;}
.y3e_c00342{bottom:865.245000px;}
.y3a_c00342{bottom:865.905000px;}
.y3c_c00342{bottom:866.325000px;}
.y3f_c00342{bottom:867.405000px;}
.y39_c00342{bottom:885.405000px;}
.y37_c00342{bottom:904.245000px;}
.y34_c00342{bottom:905.130000px;}
.y36_c00342{bottom:905.325000px;}
.y38_c00342{bottom:905.970000px;}
.y35_c00342{bottom:906.405000px;}
.y31_c00342{bottom:922.470000px;}
.y32_c00342{bottom:923.745000px;}
.y2f_c00342{bottom:924.630000px;}
.y33_c00342{bottom:924.825000px;}
.y2e_c00342{bottom:925.470000px;}
.y30_c00342{bottom:925.905000px;}
.y2b_c00342{bottom:940.905000px;}
.y2d_c00342{bottom:942.825000px;}
.y2a_c00342{bottom:943.245000px;}
.y2c_c00342{bottom:944.970000px;}
.y29_c00342{bottom:945.405000px;}
.y26_c00342{bottom:961.680000px;}
.y27_c00342{bottom:961.905000px;}
.y25_c00342{bottom:962.745000px;}
.y24_c00342{bottom:964.905000px;}
.y28_c00342{bottom:965.130000px;}
.y23_c00342{bottom:1004.325000px;}
.y22_c00342{bottom:1005.630000px;}
.y21_c00342{bottom:1006.050000px;}
.y1a_c00342{bottom:1018.905000px;}
.y1d_c00342{bottom:1019.325000px;}
.y19_c00342{bottom:1019.970000px;}
.y1f_c00342{bottom:1020.405000px;}
.y18_c00342{bottom:1020.630000px;}
.y20_c00342{bottom:1021.050000px;}
.y1b_c00342{bottom:1021.470000px;}
.y1e_c00342{bottom:1021.695000px;}
.y1c_c00342{bottom:1022.550000px;}
.y11_c00342{bottom:1033.050000px;}
.y15_c00342{bottom:1034.325000px;}
.y16_c00342{bottom:1034.550000px;}
.y17_c00342{bottom:1035.405000px;}
.y13_c00342{bottom:1035.630000px;}
.y12_c00342{bottom:1036.470000px;}
.y14_c00342{bottom:1037.550000px;}
.yc_c00342{bottom:1048.905000px;}
.yf_c00342{bottom:1049.325000px;}
.ye_c00342{bottom:1049.970000px;}
.yd_c00342{bottom:1050.195000px;}
.y10_c00342{bottom:1051.470000px;}
.y3_c00342{bottom:1063.050000px;}
.y6_c00342{bottom:1063.905000px;}
.y5_c00342{bottom:1064.130000px;}
.y7_c00342{bottom:1064.550000px;}
.y9_c00342{bottom:1064.970000px;}
.yb_c00342{bottom:1065.405000px;}
.y4_c00342{bottom:1066.050000px;}
.y8_c00342{bottom:1066.470000px;}
.ya_c00342{bottom:1067.550000px;}
.y2_c00342{bottom:1099.905000px;}
.y1_c00342{bottom:1100.550000px;}
.h9_c00342{height:4.206533px;}
.h5_c00342{height:16.752334px;}
.h3_c00342{height:23.025234px;}
.h1_c00342{height:25.091602px;}
.h4_c00342{height:31.364502px;}
.h2_c00342{height:35.571035px;}
.h6_c00342{height:39.777568px;}
.h7_c00342{height:43.910303px;}
.h8_c00342{height:48.116836px;}
.h0_c00342{height:1335.000000px;}
.w0_c00342{width:880.500000px;}
.x0_c00342{left:0.000000px;}
.x14_c00342{left:149.580000px;}
.x28_c00342{left:151.920000px;}
.xaf_c00342{left:153.000000px;}
.xee_c00342{left:154.080000px;}
.x10a_c00342{left:156.000000px;}
.x29_c00342{left:162.000000px;}
.x3_c00342{left:165.420000px;}
.x3c_c00342{left:166.500000px;}
.x69_c00342{left:168.000000px;}
.x5e_c00342{left:172.500000px;}
.x3a_c00342{left:175.500000px;}
.x51_c00342{left:180.000000px;}
.x1a_c00342{left:181.500000px;}
.x4_c00342{left:183.000000px;}
.xcf_c00342{left:184.080000px;}
.x5f_c00342{left:186.000000px;}
.x7a_c00342{left:187.080000px;}
.x3d_c00342{left:192.420000px;}
.xb6_c00342{left:194.580000px;}
.x2a_c00342{left:196.500000px;}
.x82_c00342{left:198.420000px;}
.x52_c00342{left:199.500000px;}
.x70_c00342{left:202.920000px;}
.xfd_c00342{left:204.000000px;}
.xa9_c00342{left:205.080000px;}
.x15_c00342{left:207.000000px;}
.x96_c00342{left:215.580000px;}
.x16_c00342{left:217.080000px;}
.x60_c00342{left:219.000000px;}
.xd3_c00342{left:220.500000px;}
.x2b_c00342{left:224.580000px;}
.x1b_c00342{left:226.920000px;}
.x114_c00342{left:228.000000px;}
.x3b_c00342{left:229.500000px;}
.xb0_c00342{left:230.580000px;}
.x8b_c00342{left:232.920000px;}
.xb7_c00342{left:234.000000px;}
.x5_c00342{left:235.500000px;}
.x53_c00342{left:237.000000px;}
.xd7_c00342{left:239.580000px;}
.x97_c00342{left:241.500000px;}
.x61_c00342{left:243.000000px;}
.x102_c00342{left:244.080000px;}
.x1c_c00342{left:245.580000px;}
.x10f_c00342{left:247.500000px;}
.x108_c00342{left:250.080000px;}
.xe6_c00342{left:251.580000px;}
.xdb_c00342{left:253.920000px;}
.x6_c00342{left:255.000000px;}
.xbc_c00342{left:256.500000px;}
.x47_c00342{left:259.500000px;}
.x3e_c00342{left:262.500000px;}
.x71_c00342{left:265.080000px;}
.x83_c00342{left:267.000000px;}
.x2c_c00342{left:268.500000px;}
.x9e_c00342{left:270.420000px;}
.x1d_c00342{left:271.500000px;}
.x98_c00342{left:273.000000px;}
.x103_c00342{left:274.500000px;}
.x8f_c00342{left:276.000000px;}
.xb1_c00342{left:277.500000px;}
.x54_c00342{left:280.920000px;}
.xd4_c00342{left:283.500000px;}
.x7b_c00342{left:284.580000px;}
.x7_c00342{left:287.145000px;}
.x72_c00342{left:288.420000px;}
.xcb_c00342{left:291.000000px;}
.xd0_c00342{left:292.500000px;}
.x8c_c00342{left:294.000000px;}
.x9f_c00342{left:298.920000px;}
.xa7_c00342{left:301.500000px;}
.x7c_c00342{left:303.420000px;}
.x2d_c00342{left:306.000000px;}
.xe9_c00342{left:307.500000px;}
.x3f_c00342{left:308.580000px;}
.x1e_c00342{left:310.080000px;}
.xd8_c00342{left:311.580000px;}
.x48_c00342{left:313.920000px;}
.x17_c00342{left:316.920000px;}
.xd1_c00342{left:318.000000px;}
.x55_c00342{left:319.920000px;}
.x104_c00342{left:321.000000px;}
.xa0_c00342{left:323.580000px;}
.xe7_c00342{left:325.080000px;}
.xfe_c00342{left:326.580000px;}
.x1f_c00342{left:328.500000px;}
.x2e_c00342{left:330.000000px;}
.x8_c00342{left:331.920000px;}
.xf1_c00342{left:333.000000px;}
.xbd_c00342{left:334.500000px;}
.x62_c00342{left:335.580000px;}
.xcc_c00342{left:338.580000px;}
.x84_c00342{left:340.500000px;}
.xc3_c00342{left:342.000000px;}
.x9_c00342{left:343.080000px;}
.xd9_c00342{left:345.420000px;}
.xff_c00342{left:346.920000px;}
.x73_c00342{left:348.420000px;}
.x110_c00342{left:349.500000px;}
.x49_c00342{left:350.580000px;}
.x118_c00342{left:352.500000px;}
.xf6_c00342{left:354.420000px;}
.x6a_c00342{left:355.500000px;}
.x18_c00342{left:360.000000px;}
.xea_c00342{left:361.500000px;}
.xdf_c00342{left:363.420000px;}
.xbe_c00342{left:366.420000px;}
.xa_c00342{left:367.500000px;}
.xef_c00342{left:369.420000px;}
.xd5_c00342{left:370.920000px;}
.xa1_c00342{left:372.000000px;}
.x56_c00342{left:373.500000px;}
.xc4_c00342{left:374.580000px;}
.x2f_c00342{left:376.500000px;}
.xf7_c00342{left:378.000000px;}
.x90_c00342{left:381.420000px;}
.x40_c00342{left:385.500000px;}
.x20_c00342{left:388.080000px;}
.x19_c00342{left:389.580000px;}
.xb8_c00342{left:391.500000px;}
.xc5_c00342{left:393.420000px;}
.x7d_c00342{left:394.500000px;}
.xb2_c00342{left:396.000000px;}
.x85_c00342{left:397.500000px;}
.xb_c00342{left:398.580000px;}
.x1_c00342{left:400.500000px;}
.x119_c00342{left:402.000000px;}
.x30_c00342{left:403.500000px;}
.xa2_c00342{left:405.000000px;}
.x99_c00342{left:407.580000px;}
.xdc_c00342{left:409.500000px;}
.xeb_c00342{left:412.500000px;}
.x8d_c00342{left:414.420000px;}
.xda_c00342{left:415.500000px;}
.xc_c00342{left:417.000000px;}
.xaa_c00342{left:418.500000px;}
.x4a_c00342{left:421.500000px;}
.xb3_c00342{left:423.420000px;}
.x9a_c00342{left:426.420000px;}
.xf8_c00342{left:429.420000px;}
.xc6_c00342{left:430.500000px;}
.x41_c00342{left:432.420000px;}
.xcd_c00342{left:436.920000px;}
.x57_c00342{left:438.000000px;}
.x7e_c00342{left:439.500000px;}
.xb9_c00342{left:440.580000px;}
.xdd_c00342{left:442.500000px;}
.x63_c00342{left:444.000000px;}
.x6b_c00342{left:445.920000px;}
.xec_c00342{left:448.080000px;}
.x111_c00342{left:450.420000px;}
.x10b_c00342{left:451.500000px;}
.x9b_c00342{left:454.500000px;}
.xa8_c00342{left:456.420000px;}
.x4b_c00342{left:457.500000px;}
.x21_c00342{left:459.420000px;}
.x74_c00342{left:460.920000px;}
.xbf_c00342{left:462.000000px;}
.x91_c00342{left:465.000000px;}
.x109_c00342{left:466.500000px;}
.x31_c00342{left:468.000000px;}
.x86_c00342{left:469.500000px;}
.x115_c00342{left:471.000000px;}
.xde_c00342{left:472.500000px;}
.xf2_c00342{left:475.920000px;}
.xb4_c00342{left:477.000000px;}
.x22_c00342{left:478.080000px;}
.xd_c00342{left:480.420000px;}
.x92_c00342{left:482.580000px;}
.xf9_c00342{left:486.000000px;}
.x87_c00342{left:487.920000px;}
.xab_c00342{left:489.000000px;}
.x7f_c00342{left:490.500000px;}
.x100_c00342{left:493.500000px;}
.xc7_c00342{left:496.500000px;}
.x10c_c00342{left:498.000000px;}
.x11a_c00342{left:499.080000px;}
.x64_c00342{left:501.000000px;}
.xa3_c00342{left:502.500000px;}
.x23_c00342{left:504.000000px;}
.x75_c00342{left:508.500000px;}
.x32_c00342{left:510.000000px;}
.x42_c00342{left:512.580000px;}
.x112_c00342{left:517.500000px;}
.x4c_c00342{left:519.000000px;}
.xe_c00342{left:520.920000px;}
.xac_c00342{left:523.500000px;}
.x58_c00342{left:525.000000px;}
.x33_c00342{left:529.080000px;}
.x43_c00342{left:531.000000px;}
.xf3_c00342{left:535.500000px;}
.xf_c00342{left:538.080000px;}
.x59_c00342{left:540.420000px;}
.xfa_c00342{left:541.500000px;}
.x24_c00342{left:543.420000px;}
.x6c_c00342{left:544.920000px;}
.xed_c00342{left:546.420000px;}
.xd2_c00342{left:547.500000px;}
.x10d_c00342{left:549.000000px;}
.x34_c00342{left:550.080000px;}
.x101_c00342{left:553.920000px;}
.x93_c00342{left:555.420000px;}
.x8e_c00342{left:556.500000px;}
.x25_c00342{left:560.145000px;}
.x10_c00342{left:562.500000px;}
.xe0_c00342{left:565.080000px;}
.xc8_c00342{left:567.420000px;}
.xc0_c00342{left:570.000000px;}
.x44_c00342{left:571.920000px;}
.x35_c00342{left:573.420000px;}
.x4d_c00342{left:574.500000px;}
.x76_c00342{left:575.580000px;}
.xa4_c00342{left:579.420000px;}
.x105_c00342{left:580.500000px;}
.x5a_c00342{left:582.000000px;}
.x94_c00342{left:585.000000px;}
.xd6_c00342{left:586.080000px;}
.x113_c00342{left:591.420000px;}
.x4e_c00342{left:592.920000px;}
.x65_c00342{left:595.500000px;}
.xba_c00342{left:597.000000px;}
.xe1_c00342{left:598.080000px;}
.xf4_c00342{left:600.000000px;}
.x11_c00342{left:601.920000px;}
.x5b_c00342{left:603.420000px;}
.x80_c00342{left:604.500000px;}
.xa5_c00342{left:607.500000px;}
.x36_c00342{left:609.000000px;}
.x45_c00342{left:611.580000px;}
.x66_c00342{left:616.080000px;}
.x12_c00342{left:617.145000px;}
.xc1_c00342{left:618.420000px;}
.xe2_c00342{left:619.920000px;}
.x4f_c00342{left:621.000000px;}
.xfb_c00342{left:624.000000px;}
.xf5_c00342{left:625.080000px;}
.x95_c00342{left:627.000000px;}
.x106_c00342{left:628.500000px;}
.x5c_c00342{left:630.000000px;}
.x88_c00342{left:631.500000px;}
.x6d_c00342{left:633.000000px;}
.x37_c00342{left:634.080000px;}
.x77_c00342{left:635.580000px;}
.xce_c00342{left:637.920000px;}
.x10e_c00342{left:639.420000px;}
.x81_c00342{left:640.920000px;}
.x26_c00342{left:642.000000px;}
.xad_c00342{left:643.920000px;}
.x116_c00342{left:645.000000px;}
.xa6_c00342{left:646.500000px;}
.xe3_c00342{left:648.000000px;}
.x38_c00342{left:652.080000px;}
.xc2_c00342{left:654.000000px;}
.xc9_c00342{left:657.420000px;}
.xfc_c00342{left:658.920000px;}
.x107_c00342{left:660.420000px;}
.x46_c00342{left:661.500000px;}
.x6e_c00342{left:662.580000px;}
.x78_c00342{left:666.000000px;}
.x67_c00342{left:667.500000px;}
.x9c_c00342{left:669.420000px;}
.xbb_c00342{left:675.000000px;}
.x27_c00342{left:676.080000px;}
.x50_c00342{left:678.000000px;}
.x68_c00342{left:681.420000px;}
.xae_c00342{left:682.500000px;}
.xb5_c00342{left:683.580000px;}
.x117_c00342{left:685.500000px;}
.xe8_c00342{left:687.000000px;}
.xe4_c00342{left:688.080000px;}
.x5d_c00342{left:691.500000px;}
.x11b_c00342{left:693.000000px;}
.xca_c00342{left:694.500000px;}
.x13_c00342{left:697.500000px;}
.x89_c00342{left:702.000000px;}
.x2_c00342{left:703.080000px;}
.x79_c00342{left:705.000000px;}
.x9d_c00342{left:708.420000px;}
.xe5_c00342{left:709.920000px;}
.x39_c00342{left:711.000000px;}
.x6f_c00342{left:715.080000px;}
.x8a_c00342{left:718.500000px;}
.xf0_c00342{left:719.580000px;}
@media print{
.v0_c00342{vertical-align:0.000000pt;}
.ls0_c00342{letter-spacing:0.000000pt;}
.ws0_c00342{word-spacing:0.000000pt;}
.fs8_c00342{font-size:3.040000pt;}
.fs4_c00342{font-size:12.106667pt;}
.fs2_c00342{font-size:16.640000pt;}
.fs0_c00342{font-size:18.133333pt;}
.fs3_c00342{font-size:22.666667pt;}
.fs1_c00342{font-size:25.706667pt;}
.fs5_c00342{font-size:28.746667pt;}
.fs6_c00342{font-size:31.733333pt;}
.fs7_c00342{font-size:34.773333pt;}
.y0_c00342{bottom:0.000000pt;}
.yd2_c00342{bottom:223.773333pt;}
.yd3_c00342{bottom:225.693333pt;}
.yd4_c00342{bottom:225.893333pt;}
.ycd_c00342{bottom:241.106667pt;}
.yd1_c00342{bottom:241.306667pt;}
.ycf_c00342{bottom:243.026667pt;}
.yce_c00342{bottom:243.226667pt;}
.yd0_c00342{bottom:243.973333pt;}
.ycc_c00342{bottom:244.360000pt;}
.yca_c00342{bottom:259.773333pt;}
.ycb_c00342{bottom:260.560000pt;}
.yc9_c00342{bottom:261.693333pt;}
.yc5_c00342{bottom:277.106667pt;}
.yc8_c00342{bottom:277.893333pt;}
.yc7_c00342{bottom:278.640000pt;}
.yc4_c00342{bottom:279.026667pt;}
.yc6_c00342{bottom:279.226667pt;}
.yc1_c00342{bottom:294.440000pt;}
.yc2_c00342{bottom:296.360000pt;}
.yc0_c00342{bottom:296.560000pt;}
.yc3_c00342{bottom:297.306667pt;}
.ybf_c00342{bottom:312.733333pt;}
.ybd_c00342{bottom:313.693333pt;}
.ybc_c00342{bottom:313.893333pt;}
.ybe_c00342{bottom:314.640000pt;}
.yb9_c00342{bottom:329.106667pt;}
.ybb_c00342{bottom:330.066667pt;}
.yb8_c00342{bottom:331.026667pt;}
.yba_c00342{bottom:331.226667pt;}
.yb7_c00342{bottom:331.973333pt;}
.yb6_c00342{bottom:346.440000pt;}
.yb4_c00342{bottom:347.400000pt;}
.yb1_c00342{bottom:347.773333pt;}
.yb2_c00342{bottom:348.560000pt;}
.yb3_c00342{bottom:348.733333pt;}
.yb5_c00342{bottom:349.693333pt;}
.yab_c00342{bottom:364.733333pt;}
.yaa_c00342{bottom:365.106667pt;}
.yae_c00342{bottom:365.893333pt;}
.yaf_c00342{bottom:366.066667pt;}
.yb0_c00342{bottom:366.640000pt;}
.yad_c00342{bottom:367.026667pt;}
.yac_c00342{bottom:367.226667pt;}
.ya8_c00342{bottom:382.440000pt;}
.ya9_c00342{bottom:383.226667pt;}
.ya7_c00342{bottom:384.360000pt;}
.ya6_c00342{bottom:399.026667pt;}
.ya4_c00342{bottom:399.400000pt;}
.ya5_c00342{bottom:399.773333pt;}
.ya3_c00342{bottom:401.693333pt;}
.ya2_c00342{bottom:415.773333pt;}
.ya0_c00342{bottom:416.360000pt;}
.y9f_c00342{bottom:417.106667pt;}
.y9e_c00342{bottom:418.640000pt;}
.y9d_c00342{bottom:419.026667pt;}
.ya1_c00342{bottom:419.973333pt;}
.y97_c00342{bottom:434.440000pt;}
.y99_c00342{bottom:435.773333pt;}
.y9a_c00342{bottom:436.360000pt;}
.y98_c00342{bottom:436.560000pt;}
.y9c_c00342{bottom:437.306667pt;}
.y9b_c00342{bottom:437.693333pt;}
.y96_c00342{bottom:451.026667pt;}
.y92_c00342{bottom:453.106667pt;}
.y94_c00342{bottom:453.893333pt;}
.y95_c00342{bottom:454.640000pt;}
.y93_c00342{bottom:455.026667pt;}
.y91_c00342{bottom:469.306667pt;}
.y8e_c00342{bottom:470.440000pt;}
.y8f_c00342{bottom:471.973333pt;}
.y90_c00342{bottom:472.360000pt;}
.y8c_c00342{bottom:485.693333pt;}
.y8a_c00342{bottom:488.733333pt;}
.y8d_c00342{bottom:489.306667pt;}
.y8b_c00342{bottom:489.693333pt;}
.y88_c00342{bottom:505.106667pt;}
.y89_c00342{bottom:505.893333pt;}
.y87_c00342{bottom:507.026667pt;}
.y85_c00342{bottom:521.693333pt;}
.y84_c00342{bottom:522.440000pt;}
.y86_c00342{bottom:523.226667pt;}
.y83_c00342{bottom:524.360000pt;}
.y81_c00342{bottom:541.106667pt;}
.y7f_c00342{bottom:541.693333pt;}
.y82_c00342{bottom:542.066667pt;}
.y80_c00342{bottom:543.026667pt;}
.y7c_c00342{bottom:556.360000pt;}
.y7e_c00342{bottom:558.066667pt;}
.y7a_c00342{bottom:558.440000pt;}
.y7b_c00342{bottom:559.226667pt;}
.y7d_c00342{bottom:560.360000pt;}
.y78_c00342{bottom:575.400000pt;}
.y76_c00342{bottom:575.773333pt;}
.y77_c00342{bottom:576.560000pt;}
.y79_c00342{bottom:576.733333pt;}
.y75_c00342{bottom:577.693333pt;}
.y72_c00342{bottom:592.733333pt;}
.y70_c00342{bottom:593.106667pt;}
.y73_c00342{bottom:593.893333pt;}
.y74_c00342{bottom:594.066667pt;}
.y71_c00342{bottom:595.026667pt;}
.y6c_c00342{bottom:609.693333pt;}
.y6a_c00342{bottom:610.440000pt;}
.y6e_c00342{bottom:610.640000pt;}
.y6f_c00342{bottom:611.400000pt;}
.y6b_c00342{bottom:612.360000pt;}
.y6d_c00342{bottom:612.560000pt;}
.y68_c00342{bottom:627.026667pt;}
.y65_c00342{bottom:627.773333pt;}
.y66_c00342{bottom:629.693333pt;}
.y67_c00342{bottom:630.640000pt;}
.y69_c00342{bottom:631.026667pt;}
.y62_c00342{bottom:645.106667pt;}
.y63_c00342{bottom:646.066667pt;}
.y61_c00342{bottom:647.026667pt;}
.y64_c00342{bottom:647.226667pt;}
.y60_c00342{bottom:647.973333pt;}
.y5c_c00342{bottom:662.440000pt;}
.y5f_c00342{bottom:663.400000pt;}
.y5d_c00342{bottom:663.773333pt;}
.y5b_c00342{bottom:664.360000pt;}
.y5e_c00342{bottom:665.693333pt;}
.y57_c00342{bottom:681.106667pt;}
.y5a_c00342{bottom:681.893333pt;}
.y59_c00342{bottom:683.026667pt;}
.y58_c00342{bottom:683.040000pt;}
.y56_c00342{bottom:698.440000pt;}
.y54_c00342{bottom:699.973333pt;}
.y55_c00342{bottom:700.360000pt;}
.y51_c00342{bottom:715.773333pt;}
.y52_c00342{bottom:716.560000pt;}
.y53_c00342{bottom:716.733333pt;}
.y4f_c00342{bottom:717.306667pt;}
.y50_c00342{bottom:717.693333pt;}
.y47_c00342{bottom:731.973333pt;}
.y4c_c00342{bottom:732.360000pt;}
.y4a_c00342{bottom:733.106667pt;}
.y4d_c00342{bottom:733.306667pt;}
.y49_c00342{bottom:733.893333pt;}
.y4e_c00342{bottom:734.266667pt;}
.y48_c00342{bottom:735.026667pt;}
.y4b_c00342{bottom:735.973333pt;}
.y41_c00342{bottom:750.440000pt;}
.y43_c00342{bottom:751.400000pt;}
.y46_c00342{bottom:751.773333pt;}
.y40_c00342{bottom:752.360000pt;}
.y44_c00342{bottom:752.560000pt;}
.y42_c00342{bottom:753.306667pt;}
.y45_c00342{bottom:753.693333pt;}
.y3d_c00342{bottom:767.973333pt;}
.y3b_c00342{bottom:768.160000pt;}
.y3e_c00342{bottom:769.106667pt;}
.y3a_c00342{bottom:769.693333pt;}
.y3c_c00342{bottom:770.066667pt;}
.y3f_c00342{bottom:771.026667pt;}
.y39_c00342{bottom:787.026667pt;}
.y37_c00342{bottom:803.773333pt;}
.y34_c00342{bottom:804.560000pt;}
.y36_c00342{bottom:804.733333pt;}
.y38_c00342{bottom:805.306667pt;}
.y35_c00342{bottom:805.693333pt;}
.y31_c00342{bottom:819.973333pt;}
.y32_c00342{bottom:821.106667pt;}
.y2f_c00342{bottom:821.893333pt;}
.y33_c00342{bottom:822.066667pt;}
.y2e_c00342{bottom:822.640000pt;}
.y30_c00342{bottom:823.026667pt;}
.y2b_c00342{bottom:836.360000pt;}
.y2d_c00342{bottom:838.066667pt;}
.y2a_c00342{bottom:838.440000pt;}
.y2c_c00342{bottom:839.973333pt;}
.y29_c00342{bottom:840.360000pt;}
.y26_c00342{bottom:854.826667pt;}
.y27_c00342{bottom:855.026667pt;}
.y25_c00342{bottom:855.773333pt;}
.y24_c00342{bottom:857.693333pt;}
.y28_c00342{bottom:857.893333pt;}
.y23_c00342{bottom:892.733333pt;}
.y22_c00342{bottom:893.893333pt;}
.y21_c00342{bottom:894.266667pt;}
.y1a_c00342{bottom:905.693333pt;}
.y1d_c00342{bottom:906.066667pt;}
.y19_c00342{bottom:906.640000pt;}
.y1f_c00342{bottom:907.026667pt;}
.y18_c00342{bottom:907.226667pt;}
.y20_c00342{bottom:907.600000pt;}
.y1b_c00342{bottom:907.973333pt;}
.y1e_c00342{bottom:908.173333pt;}
.y1c_c00342{bottom:908.933333pt;}
.y11_c00342{bottom:918.266667pt;}
.y15_c00342{bottom:919.400000pt;}
.y16_c00342{bottom:919.600000pt;}
.y17_c00342{bottom:920.360000pt;}
.y13_c00342{bottom:920.560000pt;}
.y12_c00342{bottom:921.306667pt;}
.y14_c00342{bottom:922.266667pt;}
.yc_c00342{bottom:932.360000pt;}
.yf_c00342{bottom:932.733333pt;}
.ye_c00342{bottom:933.306667pt;}
.yd_c00342{bottom:933.506667pt;}
.y10_c00342{bottom:934.640000pt;}
.y3_c00342{bottom:944.933333pt;}
.y6_c00342{bottom:945.693333pt;}
.y5_c00342{bottom:945.893333pt;}
.y7_c00342{bottom:946.266667pt;}
.y9_c00342{bottom:946.640000pt;}
.yb_c00342{bottom:947.026667pt;}
.y4_c00342{bottom:947.600000pt;}
.y8_c00342{bottom:947.973333pt;}
.ya_c00342{bottom:948.933333pt;}
.y2_c00342{bottom:977.693333pt;}
.y1_c00342{bottom:978.266667pt;}
.h9_c00342{height:3.739141pt;}
.h5_c00342{height:14.890964pt;}
.h3_c00342{height:20.466875pt;}
.h1_c00342{height:22.303646pt;}
.h4_c00342{height:27.879557pt;}
.h2_c00342{height:31.618698pt;}
.h6_c00342{height:35.357839pt;}
.h7_c00342{height:39.031380pt;}
.h8_c00342{height:42.770521pt;}
.h0_c00342{height:1186.666667pt;}
.w0_c00342{width:782.666667pt;}
.x0_c00342{left:0.000000pt;}
.x14_c00342{left:132.960000pt;}
.x28_c00342{left:135.040000pt;}
.xaf_c00342{left:136.000000pt;}
.xee_c00342{left:136.960000pt;}
.x10a_c00342{left:138.666667pt;}
.x29_c00342{left:144.000000pt;}
.x3_c00342{left:147.040000pt;}
.x3c_c00342{left:148.000000pt;}
.x69_c00342{left:149.333333pt;}
.x5e_c00342{left:153.333333pt;}
.x3a_c00342{left:156.000000pt;}
.x51_c00342{left:160.000000pt;}
.x1a_c00342{left:161.333333pt;}
.x4_c00342{left:162.666667pt;}
.xcf_c00342{left:163.626667pt;}
.x5f_c00342{left:165.333333pt;}
.x7a_c00342{left:166.293333pt;}
.x3d_c00342{left:171.040000pt;}
.xb6_c00342{left:172.960000pt;}
.x2a_c00342{left:174.666667pt;}
.x82_c00342{left:176.373333pt;}
.x52_c00342{left:177.333333pt;}
.x70_c00342{left:180.373333pt;}
.xfd_c00342{left:181.333333pt;}
.xa9_c00342{left:182.293333pt;}
.x15_c00342{left:184.000000pt;}
.x96_c00342{left:191.626667pt;}
.x16_c00342{left:192.960000pt;}
.x60_c00342{left:194.666667pt;}
.xd3_c00342{left:196.000000pt;}
.x2b_c00342{left:199.626667pt;}
.x1b_c00342{left:201.706667pt;}
.x114_c00342{left:202.666667pt;}
.x3b_c00342{left:204.000000pt;}
.xb0_c00342{left:204.960000pt;}
.x8b_c00342{left:207.040000pt;}
.xb7_c00342{left:208.000000pt;}
.x5_c00342{left:209.333333pt;}
.x53_c00342{left:210.666667pt;}
.xd7_c00342{left:212.960000pt;}
.x97_c00342{left:214.666667pt;}
.x61_c00342{left:216.000000pt;}
.x102_c00342{left:216.960000pt;}
.x1c_c00342{left:218.293333pt;}
.x10f_c00342{left:220.000000pt;}
.x108_c00342{left:222.293333pt;}
.xe6_c00342{left:223.626667pt;}
.xdb_c00342{left:225.706667pt;}
.x6_c00342{left:226.666667pt;}
.xbc_c00342{left:228.000000pt;}
.x47_c00342{left:230.666667pt;}
.x3e_c00342{left:233.333333pt;}
.x71_c00342{left:235.626667pt;}
.x83_c00342{left:237.333333pt;}
.x2c_c00342{left:238.666667pt;}
.x9e_c00342{left:240.373333pt;}
.x1d_c00342{left:241.333333pt;}
.x98_c00342{left:242.666667pt;}
.x103_c00342{left:244.000000pt;}
.x8f_c00342{left:245.333333pt;}
.xb1_c00342{left:246.666667pt;}
.x54_c00342{left:249.706667pt;}
.xd4_c00342{left:252.000000pt;}
.x7b_c00342{left:252.960000pt;}
.x7_c00342{left:255.240000pt;}
.x72_c00342{left:256.373333pt;}
.xcb_c00342{left:258.666667pt;}
.xd0_c00342{left:260.000000pt;}
.x8c_c00342{left:261.333333pt;}
.x9f_c00342{left:265.706667pt;}
.xa7_c00342{left:268.000000pt;}
.x7c_c00342{left:269.706667pt;}
.x2d_c00342{left:272.000000pt;}
.xe9_c00342{left:273.333333pt;}
.x3f_c00342{left:274.293333pt;}
.x1e_c00342{left:275.626667pt;}
.xd8_c00342{left:276.960000pt;}
.x48_c00342{left:279.040000pt;}
.x17_c00342{left:281.706667pt;}
.xd1_c00342{left:282.666667pt;}
.x55_c00342{left:284.373333pt;}
.x104_c00342{left:285.333333pt;}
.xa0_c00342{left:287.626667pt;}
.xe7_c00342{left:288.960000pt;}
.xfe_c00342{left:290.293333pt;}
.x1f_c00342{left:292.000000pt;}
.x2e_c00342{left:293.333333pt;}
.x8_c00342{left:295.040000pt;}
.xf1_c00342{left:296.000000pt;}
.xbd_c00342{left:297.333333pt;}
.x62_c00342{left:298.293333pt;}
.xcc_c00342{left:300.960000pt;}
.x84_c00342{left:302.666667pt;}
.xc3_c00342{left:304.000000pt;}
.x9_c00342{left:304.960000pt;}
.xd9_c00342{left:307.040000pt;}
.xff_c00342{left:308.373333pt;}
.x73_c00342{left:309.706667pt;}
.x110_c00342{left:310.666667pt;}
.x49_c00342{left:311.626667pt;}
.x118_c00342{left:313.333333pt;}
.xf6_c00342{left:315.040000pt;}
.x6a_c00342{left:316.000000pt;}
.x18_c00342{left:320.000000pt;}
.xea_c00342{left:321.333333pt;}
.xdf_c00342{left:323.040000pt;}
.xbe_c00342{left:325.706667pt;}
.xa_c00342{left:326.666667pt;}
.xef_c00342{left:328.373333pt;}
.xd5_c00342{left:329.706667pt;}
.xa1_c00342{left:330.666667pt;}
.x56_c00342{left:332.000000pt;}
.xc4_c00342{left:332.960000pt;}
.x2f_c00342{left:334.666667pt;}
.xf7_c00342{left:336.000000pt;}
.x90_c00342{left:339.040000pt;}
.x40_c00342{left:342.666667pt;}
.x20_c00342{left:344.960000pt;}
.x19_c00342{left:346.293333pt;}
.xb8_c00342{left:348.000000pt;}
.xc5_c00342{left:349.706667pt;}
.x7d_c00342{left:350.666667pt;}
.xb2_c00342{left:352.000000pt;}
.x85_c00342{left:353.333333pt;}
.xb_c00342{left:354.293333pt;}
.x1_c00342{left:356.000000pt;}
.x119_c00342{left:357.333333pt;}
.x30_c00342{left:358.666667pt;}
.xa2_c00342{left:360.000000pt;}
.x99_c00342{left:362.293333pt;}
.xdc_c00342{left:364.000000pt;}
.xeb_c00342{left:366.666667pt;}
.x8d_c00342{left:368.373333pt;}
.xda_c00342{left:369.333333pt;}
.xc_c00342{left:370.666667pt;}
.xaa_c00342{left:372.000000pt;}
.x4a_c00342{left:374.666667pt;}
.xb3_c00342{left:376.373333pt;}
.x9a_c00342{left:379.040000pt;}
.xf8_c00342{left:381.706667pt;}
.xc6_c00342{left:382.666667pt;}
.x41_c00342{left:384.373333pt;}
.xcd_c00342{left:388.373333pt;}
.x57_c00342{left:389.333333pt;}
.x7e_c00342{left:390.666667pt;}
.xb9_c00342{left:391.626667pt;}
.xdd_c00342{left:393.333333pt;}
.x63_c00342{left:394.666667pt;}
.x6b_c00342{left:396.373333pt;}
.xec_c00342{left:398.293333pt;}
.x111_c00342{left:400.373333pt;}
.x10b_c00342{left:401.333333pt;}
.x9b_c00342{left:404.000000pt;}
.xa8_c00342{left:405.706667pt;}
.x4b_c00342{left:406.666667pt;}
.x21_c00342{left:408.373333pt;}
.x74_c00342{left:409.706667pt;}
.xbf_c00342{left:410.666667pt;}
.x91_c00342{left:413.333333pt;}
.x109_c00342{left:414.666667pt;}
.x31_c00342{left:416.000000pt;}
.x86_c00342{left:417.333333pt;}
.x115_c00342{left:418.666667pt;}
.xde_c00342{left:420.000000pt;}
.xf2_c00342{left:423.040000pt;}
.xb4_c00342{left:424.000000pt;}
.x22_c00342{left:424.960000pt;}
.xd_c00342{left:427.040000pt;}
.x92_c00342{left:428.960000pt;}
.xf9_c00342{left:432.000000pt;}
.x87_c00342{left:433.706667pt;}
.xab_c00342{left:434.666667pt;}
.x7f_c00342{left:436.000000pt;}
.x100_c00342{left:438.666667pt;}
.xc7_c00342{left:441.333333pt;}
.x10c_c00342{left:442.666667pt;}
.x11a_c00342{left:443.626667pt;}
.x64_c00342{left:445.333333pt;}
.xa3_c00342{left:446.666667pt;}
.x23_c00342{left:448.000000pt;}
.x75_c00342{left:452.000000pt;}
.x32_c00342{left:453.333333pt;}
.x42_c00342{left:455.626667pt;}
.x112_c00342{left:460.000000pt;}
.x4c_c00342{left:461.333333pt;}
.xe_c00342{left:463.040000pt;}
.xac_c00342{left:465.333333pt;}
.x58_c00342{left:466.666667pt;}
.x33_c00342{left:470.293333pt;}
.x43_c00342{left:472.000000pt;}
.xf3_c00342{left:476.000000pt;}
.xf_c00342{left:478.293333pt;}
.x59_c00342{left:480.373333pt;}
.xfa_c00342{left:481.333333pt;}
.x24_c00342{left:483.040000pt;}
.x6c_c00342{left:484.373333pt;}
.xed_c00342{left:485.706667pt;}
.xd2_c00342{left:486.666667pt;}
.x10d_c00342{left:488.000000pt;}
.x34_c00342{left:488.960000pt;}
.x101_c00342{left:492.373333pt;}
.x93_c00342{left:493.706667pt;}
.x8e_c00342{left:494.666667pt;}
.x25_c00342{left:497.906667pt;}
.x10_c00342{left:500.000000pt;}
.xe0_c00342{left:502.293333pt;}
.xc8_c00342{left:504.373333pt;}
.xc0_c00342{left:506.666667pt;}
.x44_c00342{left:508.373333pt;}
.x35_c00342{left:509.706667pt;}
.x4d_c00342{left:510.666667pt;}
.x76_c00342{left:511.626667pt;}
.xa4_c00342{left:515.040000pt;}
.x105_c00342{left:516.000000pt;}
.x5a_c00342{left:517.333333pt;}
.x94_c00342{left:520.000000pt;}
.xd6_c00342{left:520.960000pt;}
.x113_c00342{left:525.706667pt;}
.x4e_c00342{left:527.040000pt;}
.x65_c00342{left:529.333333pt;}
.xba_c00342{left:530.666667pt;}
.xe1_c00342{left:531.626667pt;}
.xf4_c00342{left:533.333333pt;}
.x11_c00342{left:535.040000pt;}
.x5b_c00342{left:536.373333pt;}
.x80_c00342{left:537.333333pt;}
.xa5_c00342{left:540.000000pt;}
.x36_c00342{left:541.333333pt;}
.x45_c00342{left:543.626667pt;}
.x66_c00342{left:547.626667pt;}
.x12_c00342{left:548.573333pt;}
.xc1_c00342{left:549.706667pt;}
.xe2_c00342{left:551.040000pt;}
.x4f_c00342{left:552.000000pt;}
.xfb_c00342{left:554.666667pt;}
.xf5_c00342{left:555.626667pt;}
.x95_c00342{left:557.333333pt;}
.x106_c00342{left:558.666667pt;}
.x5c_c00342{left:560.000000pt;}
.x88_c00342{left:561.333333pt;}
.x6d_c00342{left:562.666667pt;}
.x37_c00342{left:563.626667pt;}
.x77_c00342{left:564.960000pt;}
.xce_c00342{left:567.040000pt;}
.x10e_c00342{left:568.373333pt;}
.x81_c00342{left:569.706667pt;}
.x26_c00342{left:570.666667pt;}
.xad_c00342{left:572.373333pt;}
.x116_c00342{left:573.333333pt;}
.xa6_c00342{left:574.666667pt;}
.xe3_c00342{left:576.000000pt;}
.x38_c00342{left:579.626667pt;}
.xc2_c00342{left:581.333333pt;}
.xc9_c00342{left:584.373333pt;}
.xfc_c00342{left:585.706667pt;}
.x107_c00342{left:587.040000pt;}
.x46_c00342{left:588.000000pt;}
.x6e_c00342{left:588.960000pt;}
.x78_c00342{left:592.000000pt;}
.x67_c00342{left:593.333333pt;}
.x9c_c00342{left:595.040000pt;}
.xbb_c00342{left:600.000000pt;}
.x27_c00342{left:600.960000pt;}
.x50_c00342{left:602.666667pt;}
.x68_c00342{left:605.706667pt;}
.xae_c00342{left:606.666667pt;}
.xb5_c00342{left:607.626667pt;}
.x117_c00342{left:609.333333pt;}
.xe8_c00342{left:610.666667pt;}
.xe4_c00342{left:611.626667pt;}
.x5d_c00342{left:614.666667pt;}
.x11b_c00342{left:616.000000pt;}
.xca_c00342{left:617.333333pt;}
.x13_c00342{left:620.000000pt;}
.x89_c00342{left:624.000000pt;}
.x2_c00342{left:624.960000pt;}
.x79_c00342{left:626.666667pt;}
.x9d_c00342{left:629.706667pt;}
.xe5_c00342{left:631.040000pt;}
.x39_c00342{left:632.000000pt;}
.x6f_c00342{left:635.626667pt;}
.x8a_c00342{left:638.666667pt;}
.xf0_c00342{left:639.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_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_6c798a250ce9cae7aebec90b.woff2')format("woff");}.ff1_c00343{font-family:ff1_c00343;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md5_c00343{transform:matrix(0.090909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090909,0.000000,0.000000,0.250000,0,0);}
.m97_c00343{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m78_c00343{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);}
.m9b_c00343{transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);}
.m92_c00343{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m88_c00343{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m1f_c00343{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m6c_c00343{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.m7_c00343{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m98_c00343{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m1e_c00343{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mb3_c00343{transform:matrix(0.378942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378942,0.000000,0.000000,0.250000,0,0);}
.m85_c00343{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m28_c00343{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m3a_c00343{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m12_c00343{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m51_c00343{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m2f_c00343{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m3d_c00343{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m95_c00343{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m37_c00343{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m9f_c00343{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.me_c00343{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m75_c00343{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.m7f_c00343{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m50_c00343{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m53_c00343{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m18_c00343{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m3b_c00343{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m2_c00343{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mbd_c00343{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m2e_c00343{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m8e_c00343{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m21_c00343{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mc_c00343{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m35_c00343{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m9e_c00343{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m90_c00343{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m8a_c00343{transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);}
.m76_c00343{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.ma9_c00343{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m9c_c00343{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m73_c00343{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m66_c00343{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m29_c00343{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m3e_c00343{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mb9_c00343{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m84_c00343{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mc9_c00343{transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);}
.ma4_c00343{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mb2_c00343{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.m5b_c00343{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m32_c00343{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m5c_c00343{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m7c_c00343{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.mba_c00343{transform:matrix(0.431891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431891,0.000000,0.000000,0.250000,0,0);}
.m58_c00343{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m4b_c00343{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m34_c00343{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m57_c00343{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.mb0_c00343{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m94_c00343{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m8c_c00343{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m7d_c00343{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m36_c00343{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mbe_c00343{transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);}
.m87_c00343{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m4_c00343{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m42_c00343{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mf_c00343{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.mb1_c00343{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m70_c00343{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m67_c00343{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m14_c00343{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mc0_c00343{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m8f_c00343{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m74_c00343{transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);}
.m9d_c00343{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.mc5_c00343{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m49_c00343{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m60_c00343{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.m56_c00343{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m4a_c00343{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.ma0_c00343{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mc3_c00343{transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);}
.m17_c00343{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m79_c00343{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.m4e_c00343{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.md1_c00343{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.ma2_c00343{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mdb_c00343{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m7b_c00343{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m5d_c00343{transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);}
.m83_c00343{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.md9_c00343{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m1_c00343{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m54_c00343{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m4c_c00343{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m7a_c00343{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m39_c00343{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_c00343{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m86_c00343{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.ma5_c00343{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.ma8_c00343{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mb8_c00343{transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);}
.m20_c00343{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m63_c00343{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m1a_c00343{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m55_c00343{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m31_c00343{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m24_c00343{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m96_c00343{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m3f_c00343{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m64_c00343{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m2b_c00343{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m43_c00343{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mb5_c00343{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.md6_c00343{transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);}
.m61_c00343{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m40_c00343{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m11_c00343{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.md8_c00343{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m4d_c00343{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m52_c00343{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m1c_c00343{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m93_c00343{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m13_c00343{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m80_c00343{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m26_c00343{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m81_c00343{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m5f_c00343{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m25_c00343{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m1b_c00343{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m48_c00343{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m99_c00343{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m91_c00343{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m68_c00343{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.ma7_c00343{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mc7_c00343{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m5_c00343{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m2c_c00343{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m82_c00343{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m33_c00343{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m6b_c00343{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m6e_c00343{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m69_c00343{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m5a_c00343{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.ma1_c00343{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);}
.m45_c00343{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mcc_c00343{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m89_c00343{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m72_c00343{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mcd_c00343{transform:matrix(0.568109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568109,0.000000,0.000000,0.250000,0,0);}
.mb6_c00343{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m15_c00343{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mab_c00343{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m23_c00343{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.md_c00343{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m6a_c00343{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mbb_c00343{transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);}
.m4f_c00343{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.ma6_c00343{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m3c_c00343{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m8d_c00343{transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);}
.m9a_c00343{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m71_c00343{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m47_c00343{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m19_c00343{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);}
.m16_c00343{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mcb_c00343{transform:matrix(0.602564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602564,0.000000,0.000000,0.250000,0,0);}
.m1d_c00343{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.maa_c00343{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m44_c00343{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.ma_c00343{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m0_c00343{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.mbc_c00343{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m22_c00343{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mbf_c00343{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m6_c00343{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mad_c00343{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mae_c00343{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);}
.m6f_c00343{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.m27_c00343{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m2d_c00343{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m3_c00343{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m8b_c00343{transform:matrix(0.638804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638804,0.000000,0.000000,0.250000,0,0);}
.mac_c00343{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.ma3_c00343{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m77_c00343{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.maf_c00343{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m9_c00343{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.md4_c00343{transform:matrix(0.667929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667929,0.000000,0.000000,0.250000,0,0);}
.mb7_c00343{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.mdc_c00343{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.mc2_c00343{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mc8_c00343{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.md2_c00343{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.mb4_c00343{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m62_c00343{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mce_c00343{transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);}
.m41_c00343{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.md0_c00343{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.m8_c00343{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m30_c00343{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mda_c00343{transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);}
.m59_c00343{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m5e_c00343{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mca_c00343{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.md3_c00343{transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);}
.mc4_c00343{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.mb_c00343{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m10_c00343{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m38_c00343{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m2a_c00343{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m6d_c00343{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.md7_c00343{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.mc6_c00343{transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);}
.m65_c00343{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m7e_c00343{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mcf_c00343{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mc1_c00343{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,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:-6.861421px;}
.ws1_c00343{word-spacing:-6.400641px;}
.ws9_c00343{word-spacing:0.000000px;}
.ws2_c00343{word-spacing:3.292043px;}
.ws4_c00343{word-spacing:27.632576px;}
.ws7_c00343{word-spacing:42.638400px;}
.ws6_c00343{word-spacing:45.638400px;}
.ws8_c00343{word-spacing:47.497848px;}
.ws5_c00343{word-spacing:49.633219px;}
.ws3_c00343{word-spacing:76.841018px;}
._0_c00343{width:61.245365px;}
.fc0_c00343{color:transparent;}
.fs8_c00343{font-size:3.420000px;}
.fs9_c00343{font-size:11.880000px;}
.fs7_c00343{font-size:13.620000px;}
.fs5_c00343{font-size:18.720000px;}
.fs0_c00343{font-size:20.400000px;}
.fs3_c00343{font-size:25.500000px;}
.fs1_c00343{font-size:28.920000px;}
.fs4_c00343{font-size:32.340000px;}
.fs2_c00343{font-size:35.700000px;}
.fs6_c00343{font-size:39.120000px;}
.y0_c00343{bottom:0.000000px;}
.yaf_c00343{bottom:255.630000px;}
.yb0_c00343{bottom:256.695000px;}
.yac_c00343{bottom:269.130000px;}
.yad_c00343{bottom:270.195000px;}
.yae_c00343{bottom:270.420000px;}
.yab_c00343{bottom:282.630000px;}
.ya9_c00343{bottom:283.275000px;}
.yaa_c00343{bottom:283.695000px;}
.ya8_c00343{bottom:284.130000px;}
.ya5_c00343{bottom:296.130000px;}
.ya6_c00343{bottom:297.195000px;}
.ya7_c00343{bottom:297.630000px;}
.ya2_c00343{bottom:310.695000px;}
.ya0_c00343{bottom:311.130000px;}
.ya4_c00343{bottom:311.325000px;}
.ya3_c00343{bottom:311.775000px;}
.ya1_c00343{bottom:312.195000px;}
.y9e_c00343{bottom:324.630000px;}
.y9c_c00343{bottom:325.695000px;}
.y9f_c00343{bottom:325.920000px;}
.y9d_c00343{bottom:327.195000px;}
.y9b_c00343{bottom:339.630000px;}
.y99_c00343{bottom:353.130000px;}
.y9a_c00343{bottom:354.630000px;}
.y96_c00343{bottom:366.630000px;}
.y94_c00343{bottom:367.050000px;}
.y98_c00343{bottom:367.695000px;}
.y97_c00343{bottom:367.920000px;}
.y95_c00343{bottom:369.195000px;}
.y93_c00343{bottom:381.195000px;}
.y92_c00343{bottom:381.630000px;}
.y91_c00343{bottom:382.695000px;}
.y90_c00343{bottom:393.630000px;}
.y8e_c00343{bottom:394.695000px;}
.y8f_c00343{bottom:394.920000px;}
.y8d_c00343{bottom:395.130000px;}
.y8b_c00343{bottom:413.130000px;}
.y8a_c00343{bottom:414.195000px;}
.y8c_c00343{bottom:414.420000px;}
.y87_c00343{bottom:426.630000px;}
.y89_c00343{bottom:427.695000px;}
.y88_c00343{bottom:428.130000px;}
.y86_c00343{bottom:452.970000px;}
.y85_c00343{bottom:454.050000px;}
.y82_c00343{bottom:467.325000px;}
.y83_c00343{bottom:469.050000px;}
.y84_c00343{bottom:469.470000px;}
.y81_c00343{bottom:481.905000px;}
.y80_c00343{bottom:484.050000px;}
.y7f_c00343{bottom:500.550000px;}
.y7e_c00343{bottom:503.550000px;}
.y7c_c00343{bottom:526.905000px;}
.y7d_c00343{bottom:527.745000px;}
.y7b_c00343{bottom:529.245000px;}
.y78_c00343{bottom:529.905000px;}
.y79_c00343{bottom:530.130000px;}
.y7a_c00343{bottom:530.970000px;}
.y77_c00343{bottom:531.405000px;}
.y76_c00343{bottom:546.405000px;}
.y75_c00343{bottom:547.470000px;}
.y73_c00343{bottom:547.905000px;}
.y71_c00343{bottom:548.745000px;}
.y72_c00343{bottom:549.825000px;}
.y74_c00343{bottom:550.905000px;}
.y6e_c00343{bottom:567.825000px;}
.y6c_c00343{bottom:568.245000px;}
.y6f_c00343{bottom:569.130000px;}
.y70_c00343{bottom:569.325000px;}
.y6d_c00343{bottom:570.405000px;}
.y6b_c00343{bottom:586.680000px;}
.y6a_c00343{bottom:587.745000px;}
.y69_c00343{bottom:589.470000px;}
.y68_c00343{bottom:589.905000px;}
.y67_c00343{bottom:606.405000px;}
.y66_c00343{bottom:607.245000px;}
.y64_c00343{bottom:609.405000px;}
.y65_c00343{bottom:610.470000px;}
.y62_c00343{bottom:626.745000px;}
.y61_c00343{bottom:628.905000px;}
.y63_c00343{bottom:629.970000px;}
.y5e_c00343{bottom:645.180000px;}
.y60_c00343{bottom:646.245000px;}
.y5f_c00343{bottom:647.325000px;}
.y5d_c00343{bottom:648.405000px;}
.y5c_c00343{bottom:665.745000px;}
.y5a_c00343{bottom:667.245000px;}
.y59_c00343{bottom:667.905000px;}
.y5b_c00343{bottom:669.405000px;}
.y56_c00343{bottom:686.745000px;}
.y58_c00343{bottom:687.630000px;}
.y57_c00343{bottom:687.825000px;}
.y55_c00343{bottom:688.905000px;}
.y54_c00343{bottom:708.405000px;}
.y53_c00343{bottom:724.245000px;}
.y52_c00343{bottom:725.745000px;}
.y50_c00343{bottom:726.630000px;}
.y51_c00343{bottom:727.905000px;}
.y4f_c00343{bottom:744.825000px;}
.y4d_c00343{bottom:745.245000px;}
.y4e_c00343{bottom:746.325000px;}
.y4b_c00343{bottom:747.405000px;}
.y4c_c00343{bottom:748.470000px;}
.y4a_c00343{bottom:764.325000px;}
.y48_c00343{bottom:764.745000px;}
.y47_c00343{bottom:766.905000px;}
.y49_c00343{bottom:767.130000px;}
.y44_c00343{bottom:784.245000px;}
.y46_c00343{bottom:785.325000px;}
.y45_c00343{bottom:786.405000px;}
.y43_c00343{bottom:787.470000px;}
.y3f_c00343{bottom:804.825000px;}
.y3e_c00343{bottom:805.245000px;}
.y41_c00343{bottom:805.905000px;}
.y42_c00343{bottom:806.130000px;}
.y40_c00343{bottom:807.405000px;}
.y3c_c00343{bottom:823.905000px;}
.y3b_c00343{bottom:824.745000px;}
.y3d_c00343{bottom:825.630000px;}
.y3a_c00343{bottom:826.905000px;}
.y39_c00343{bottom:846.405000px;}
.y37_c00343{bottom:863.325000px;}
.y34_c00343{bottom:863.745000px;}
.y38_c00343{bottom:864.630000px;}
.y36_c00343{bottom:865.905000px;}
.y35_c00343{bottom:866.970000px;}
.y2e_c00343{bottom:881.745000px;}
.y31_c00343{bottom:881.970000px;}
.y2f_c00343{bottom:883.245000px;}
.y33_c00343{bottom:884.325000px;}
.y32_c00343{bottom:884.970000px;}
.y30_c00343{bottom:885.405000px;}
.y2c_c00343{bottom:902.745000px;}
.y2d_c00343{bottom:904.245000px;}
.y2b_c00343{bottom:904.905000px;}
.y2a_c00343{bottom:905.970000px;}
.y26_c00343{bottom:921.405000px;}
.y29_c00343{bottom:923.325000px;}
.y28_c00343{bottom:923.745000px;}
.y24_c00343{bottom:924.405000px;}
.y27_c00343{bottom:924.825000px;}
.y23_c00343{bottom:925.470000px;}
.y25_c00343{bottom:925.905000px;}
.y20_c00343{bottom:941.745000px;}
.y22_c00343{bottom:942.825000px;}
.y1e_c00343{bottom:943.245000px;}
.y21_c00343{bottom:944.130000px;}
.y1f_c00343{bottom:945.405000px;}
.y1d_c00343{bottom:961.245000px;}
.y1b_c00343{bottom:962.745000px;}
.y1c_c00343{bottom:963.630000px;}
.y1a_c00343{bottom:964.470000px;}
.y19_c00343{bottom:964.905000px;}
.y18_c00343{bottom:980.745000px;}
.y17_c00343{bottom:981.825000px;}
.y15_c00343{bottom:982.245000px;}
.y16_c00343{bottom:983.130000px;}
.y14_c00343{bottom:984.405000px;}
.y13_c00343{bottom:985.470000px;}
.y10_c00343{bottom:1000.470000px;}
.y11_c00343{bottom:1001.745000px;}
.y12_c00343{bottom:1002.630000px;}
.yf_c00343{bottom:1003.905000px;}
.ye_c00343{bottom:1021.245000px;}
.yd_c00343{bottom:1023.405000px;}
.yc_c00343{bottom:1024.470000px;}
.y8_c00343{bottom:1040.745000px;}
.y9_c00343{bottom:1041.630000px;}
.yb_c00343{bottom:1042.470000px;}
.ya_c00343{bottom:1042.905000px;}
.y5_c00343{bottom:1059.825000px;}
.y3_c00343{bottom:1060.245000px;}
.y6_c00343{bottom:1062.405000px;}
.y7_c00343{bottom:1062.630000px;}
.y4_c00343{bottom:1063.470000px;}
.y2_c00343{bottom:1098.405000px;}
.y1_c00343{bottom:1100.550000px;}
.h9_c00343{height:4.206533px;}
.ha_c00343{height:14.612168px;}
.h8_c00343{height:16.752334px;}
.h6_c00343{height:23.025234px;}
.h1_c00343{height:25.091602px;}
.h4_c00343{height:31.364502px;}
.h2_c00343{height:35.571035px;}
.h5_c00343{height:39.777568px;}
.h3_c00343{height:43.910303px;}
.h7_c00343{height:48.116836px;}
.h0_c00343{height:1335.000000px;}
.w0_c00343{width:880.500000px;}
.x0_c00343{left:0.000000px;}
.xba_c00343{left:151.500000px;}
.x68_c00343{left:152.580000px;}
.x2_c00343{left:154.080000px;}
.x96_c00343{left:166.080000px;}
.x9f_c00343{left:168.000000px;}
.x1b_c00343{left:169.500000px;}
.x31_c00343{left:172.920000px;}
.x7d_c00343{left:180.000000px;}
.x56_c00343{left:183.000000px;}
.x4c_c00343{left:186.420000px;}
.x43_c00343{left:187.500000px;}
.xbb_c00343{left:189.420000px;}
.xa0_c00343{left:190.500000px;}
.x6f_c00343{left:191.580000px;}
.xb4_c00343{left:193.080000px;}
.x3_c00343{left:195.420000px;}
.xd3_c00343{left:196.920000px;}
.x28_c00343{left:201.000000px;}
.x1c_c00343{left:204.000000px;}
.x69_c00343{left:205.500000px;}
.x87_c00343{left:207.000000px;}
.x5d_c00343{left:210.000000px;}
.x11_c00343{left:211.500000px;}
.x76_c00343{left:212.580000px;}
.x97_c00343{left:214.080000px;}
.x57_c00343{left:217.500000px;}
.xcd_c00343{left:221.580000px;}
.x88_c00343{left:223.500000px;}
.x4d_c00343{left:225.000000px;}
.xbc_c00343{left:229.080000px;}
.x44_c00343{left:231.000000px;}
.x4_c00343{left:234.000000px;}
.x29_c00343{left:235.500000px;}
.x12_c00343{left:237.420000px;}
.xa1_c00343{left:238.500000px;}
.x1d_c00343{left:240.420000px;}
.xb5_c00343{left:243.000000px;}
.x7e_c00343{left:247.920000px;}
.xc5_c00343{left:251.580000px;}
.xa7_c00343{left:253.920000px;}
.x8f_c00343{left:256.080000px;}
.xce_c00343{left:258.000000px;}
.xa2_c00343{left:259.920000px;}
.x4e_c00343{left:262.920000px;}
.xbf_c00343{left:264.000000px;}
.x13_c00343{left:265.500000px;}
.xc6_c00343{left:270.420000px;}
.x2a_c00343{left:271.500000px;}
.x7f_c00343{left:273.000000px;}
.x70_c00343{left:274.500000px;}
.x5e_c00343{left:277.500000px;}
.x1e_c00343{left:280.080000px;}
.x5_c00343{left:282.000000px;}
.x89_c00343{left:283.500000px;}
.xac_c00343{left:289.500000px;}
.x6a_c00343{left:292.500000px;}
.xc7_c00343{left:295.500000px;}
.x4f_c00343{left:298.080000px;}
.xde_c00343{left:300.000000px;}
.x80_c00343{left:301.500000px;}
.x45_c00343{left:303.000000px;}
.x14_c00343{left:304.500000px;}
.x77_c00343{left:306.420000px;}
.xe6_c00343{left:309.000000px;}
.x3b_c00343{left:313.080000px;}
.xda_c00343{left:315.000000px;}
.xad_c00343{left:317.580000px;}
.xbd_c00343{left:321.000000px;}
.xe5_c00343{left:322.500000px;}
.x98_c00343{left:324.000000px;}
.x71_c00343{left:325.080000px;}
.x1f_c00343{left:327.000000px;}
.x6_c00343{left:328.500000px;}
.x5f_c00343{left:331.500000px;}
.x3c_c00343{left:333.420000px;}
.xe7_c00343{left:335.580000px;}
.x32_c00343{left:337.500000px;}
.x81_c00343{left:339.000000px;}
.x99_c00343{left:342.420000px;}
.x90_c00343{left:345.000000px;}
.x7_c00343{left:349.500000px;}
.x50_c00343{left:351.000000px;}
.x82_c00343{left:358.500000px;}
.xae_c00343{left:363.000000px;}
.xb6_c00343{left:364.080000px;}
.xc0_c00343{left:367.080000px;}
.x78_c00343{left:369.420000px;}
.x58_c00343{left:370.920000px;}
.x20_c00343{left:374.580000px;}
.x6b_c00343{left:380.580000px;}
.x33_c00343{left:382.500000px;}
.xc1_c00343{left:387.420000px;}
.x91_c00343{left:388.500000px;}
.xd4_c00343{left:390.420000px;}
.x51_c00343{left:391.500000px;}
.x2b_c00343{left:393.420000px;}
.x15_c00343{left:396.000000px;}
.x8_c00343{left:399.420000px;}
.xa8_c00343{left:400.920000px;}
.x60_c00343{left:402.000000px;}
.x8a_c00343{left:403.500000px;}
.x1_c00343{left:405.000000px;}
.x21_c00343{left:406.275000px;}
.xdb_c00343{left:408.420000px;}
.x34_c00343{left:409.500000px;}
.xb7_c00343{left:410.580000px;}
.x3d_c00343{left:414.000000px;}
.xc2_c00343{left:415.500000px;}
.xc8_c00343{left:417.000000px;}
.x2c_c00343{left:418.920000px;}
.x79_c00343{left:421.080000px;}
.x9a_c00343{left:423.000000px;}
.x61_c00343{left:426.000000px;}
.x16_c00343{left:427.920000px;}
.xd5_c00343{left:429.000000px;}
.xa9_c00343{left:430.500000px;}
.x35_c00343{left:431.580000px;}
.xa3_c00343{left:436.500000px;}
.xdd_c00343{left:438.000000px;}
.x9_c00343{left:439.500000px;}
.x6c_c00343{left:442.920000px;}
.x62_c00343{left:445.920000px;}
.x46_c00343{left:447.420000px;}
.xaf_c00343{left:448.920000px;}
.xdf_c00343{left:450.000000px;}
.xb8_c00343{left:451.080000px;}
.x17_c00343{left:452.580000px;}
.x52_c00343{left:454.500000px;}
.x92_c00343{left:456.420000px;}
.x22_c00343{left:457.500000px;}
.xbe_c00343{left:458.580000px;}
.xa_c00343{left:460.500000px;}
.x8b_c00343{left:462.000000px;}
.xcf_c00343{left:466.500000px;}
.x3e_c00343{left:468.420000px;}
.x59_c00343{left:469.500000px;}
.x18_c00343{left:471.420000px;}
.x7a_c00343{left:472.500000px;}
.x6d_c00343{left:474.000000px;}
.x72_c00343{left:477.000000px;}
.x47_c00343{left:480.000000px;}
.xaa_c00343{left:481.500000px;}
.x8c_c00343{left:486.000000px;}
.x23_c00343{left:487.080000px;}
.x36_c00343{left:489.000000px;}
.x83_c00343{left:490.500000px;}
.x73_c00343{left:492.000000px;}
.xe0_c00343{left:495.000000px;}
.xab_c00343{left:498.000000px;}
.xb_c00343{left:499.500000px;}
.xc9_c00343{left:501.000000px;}
.xd0_c00343{left:504.000000px;}
.x84_c00343{left:507.000000px;}
.x63_c00343{left:508.080000px;}
.xb0_c00343{left:513.000000px;}
.xc_c00343{left:516.420000px;}
.x2d_c00343{left:517.500000px;}
.x48_c00343{left:522.000000px;}
.x93_c00343{left:523.500000px;}
.xca_c00343{left:525.000000px;}
.x19_c00343{left:526.500000px;}
.x37_c00343{left:529.500000px;}
.xd6_c00343{left:532.500000px;}
.x53_c00343{left:534.000000px;}
.xe1_c00343{left:540.420000px;}
.x1a_c00343{left:543.420000px;}
.xe3_c00343{left:544.500000px;}
.x38_c00343{left:549.420000px;}
.xa4_c00343{left:550.500000px;}
.x64_c00343{left:553.500000px;}
.x3f_c00343{left:556.500000px;}
.x2e_c00343{left:558.000000px;}
.xb1_c00343{left:559.080000px;}
.xc3_c00343{left:560.580000px;}
.x74_c00343{left:562.080000px;}
.x49_c00343{left:564.000000px;}
.xa5_c00343{left:570.000000px;}
.x94_c00343{left:573.000000px;}
.xb9_c00343{left:577.500000px;}
.x39_c00343{left:580.500000px;}
.xdc_c00343{left:582.000000px;}
.xe2_c00343{left:583.500000px;}
.xd_c00343{left:585.000000px;}
.x65_c00343{left:586.080000px;}
.xe4_c00343{left:589.500000px;}
.x4a_c00343{left:591.000000px;}
.xb2_c00343{left:592.500000px;}
.x24_c00343{left:594.000000px;}
.xcb_c00343{left:595.500000px;}
.x9b_c00343{left:598.080000px;}
.xd7_c00343{left:600.000000px;}
.xe_c00343{left:606.420000px;}
.x5a_c00343{left:608.580000px;}
.x25_c00343{left:615.000000px;}
.x9c_c00343{left:616.920000px;}
.xd8_c00343{left:618.000000px;}
.x8d_c00343{left:620.580000px;}
.x66_c00343{left:624.000000px;}
.xcc_c00343{left:625.500000px;}
.x85_c00343{left:634.500000px;}
.x40_c00343{left:638.580000px;}
.x5b_c00343{left:640.500000px;}
.x9d_c00343{left:641.580000px;}
.xf_c00343{left:646.080000px;}
.xd1_c00343{left:650.580000px;}
.x2f_c00343{left:652.500000px;}
.xc4_c00343{left:655.275000px;}
.x54_c00343{left:657.000000px;}
.xd9_c00343{left:661.500000px;}
.xa6_c00343{left:663.000000px;}
.x75_c00343{left:664.500000px;}
.x8e_c00343{left:669.000000px;}
.x7b_c00343{left:672.000000px;}
.xd2_c00343{left:673.920000px;}
.x41_c00343{left:677.580000px;}
.x9e_c00343{left:679.500000px;}
.x3a_c00343{left:681.000000px;}
.x26_c00343{left:682.080000px;}
.xb3_c00343{left:685.080000px;}
.x5c_c00343{left:688.500000px;}
.x86_c00343{left:690.000000px;}
.x10_c00343{left:691.500000px;}
.x67_c00343{left:693.000000px;}
.x42_c00343{left:696.000000px;}
.x55_c00343{left:699.420000px;}
.x30_c00343{left:700.920000px;}
.x95_c00343{left:702.420000px;}
.x6e_c00343{left:708.000000px;}
.x4b_c00343{left:709.920000px;}
.x27_c00343{left:714.000000px;}
.x7c_c00343{left:716.580000px;}
@media print{
.v0_c00343{vertical-align:0.000000pt;}
.ls0_c00343{letter-spacing:0.000000pt;}
.ws0_c00343{word-spacing:-6.099041pt;}
.ws1_c00343{word-spacing:-5.689459pt;}
.ws9_c00343{word-spacing:0.000000pt;}
.ws2_c00343{word-spacing:2.926261pt;}
.ws4_c00343{word-spacing:24.562290pt;}
.ws7_c00343{word-spacing:37.900800pt;}
.ws6_c00343{word-spacing:40.567467pt;}
.ws8_c00343{word-spacing:42.220309pt;}
.ws5_c00343{word-spacing:44.118417pt;}
.ws3_c00343{word-spacing:68.303127pt;}
._0_c00343{width:54.440325pt;}
.fs8_c00343{font-size:3.040000pt;}
.fs9_c00343{font-size:10.560000pt;}
.fs7_c00343{font-size:12.106667pt;}
.fs5_c00343{font-size:16.640000pt;}
.fs0_c00343{font-size:18.133333pt;}
.fs3_c00343{font-size:22.666667pt;}
.fs1_c00343{font-size:25.706667pt;}
.fs4_c00343{font-size:28.746667pt;}
.fs2_c00343{font-size:31.733333pt;}
.fs6_c00343{font-size:34.773333pt;}
.y0_c00343{bottom:0.000000pt;}
.yaf_c00343{bottom:227.226667pt;}
.yb0_c00343{bottom:228.173333pt;}
.yac_c00343{bottom:239.226667pt;}
.yad_c00343{bottom:240.173333pt;}
.yae_c00343{bottom:240.373333pt;}
.yab_c00343{bottom:251.226667pt;}
.ya9_c00343{bottom:251.800000pt;}
.yaa_c00343{bottom:252.173333pt;}
.ya8_c00343{bottom:252.560000pt;}
.ya5_c00343{bottom:263.226667pt;}
.ya6_c00343{bottom:264.173333pt;}
.ya7_c00343{bottom:264.560000pt;}
.ya2_c00343{bottom:276.173333pt;}
.ya0_c00343{bottom:276.560000pt;}
.ya4_c00343{bottom:276.733333pt;}
.ya3_c00343{bottom:277.133333pt;}
.ya1_c00343{bottom:277.506667pt;}
.y9e_c00343{bottom:288.560000pt;}
.y9c_c00343{bottom:289.506667pt;}
.y9f_c00343{bottom:289.706667pt;}
.y9d_c00343{bottom:290.840000pt;}
.y9b_c00343{bottom:301.893333pt;}
.y99_c00343{bottom:313.893333pt;}
.y9a_c00343{bottom:315.226667pt;}
.y96_c00343{bottom:325.893333pt;}
.y94_c00343{bottom:326.266667pt;}
.y98_c00343{bottom:326.840000pt;}
.y97_c00343{bottom:327.040000pt;}
.y95_c00343{bottom:328.173333pt;}
.y93_c00343{bottom:338.840000pt;}
.y92_c00343{bottom:339.226667pt;}
.y91_c00343{bottom:340.173333pt;}
.y90_c00343{bottom:349.893333pt;}
.y8e_c00343{bottom:350.840000pt;}
.y8f_c00343{bottom:351.040000pt;}
.y8d_c00343{bottom:351.226667pt;}
.y8b_c00343{bottom:367.226667pt;}
.y8a_c00343{bottom:368.173333pt;}
.y8c_c00343{bottom:368.373333pt;}
.y87_c00343{bottom:379.226667pt;}
.y89_c00343{bottom:380.173333pt;}
.y88_c00343{bottom:380.560000pt;}
.y86_c00343{bottom:402.640000pt;}
.y85_c00343{bottom:403.600000pt;}
.y82_c00343{bottom:415.400000pt;}
.y83_c00343{bottom:416.933333pt;}
.y84_c00343{bottom:417.306667pt;}
.y81_c00343{bottom:428.360000pt;}
.y80_c00343{bottom:430.266667pt;}
.y7f_c00343{bottom:444.933333pt;}
.y7e_c00343{bottom:447.600000pt;}
.y7c_c00343{bottom:468.360000pt;}
.y7d_c00343{bottom:469.106667pt;}
.y7b_c00343{bottom:470.440000pt;}
.y78_c00343{bottom:471.026667pt;}
.y79_c00343{bottom:471.226667pt;}
.y7a_c00343{bottom:471.973333pt;}
.y77_c00343{bottom:472.360000pt;}
.y76_c00343{bottom:485.693333pt;}
.y75_c00343{bottom:486.640000pt;}
.y73_c00343{bottom:487.026667pt;}
.y71_c00343{bottom:487.773333pt;}
.y72_c00343{bottom:488.733333pt;}
.y74_c00343{bottom:489.693333pt;}
.y6e_c00343{bottom:504.733333pt;}
.y6c_c00343{bottom:505.106667pt;}
.y6f_c00343{bottom:505.893333pt;}
.y70_c00343{bottom:506.066667pt;}
.y6d_c00343{bottom:507.026667pt;}
.y6b_c00343{bottom:521.493333pt;}
.y6a_c00343{bottom:522.440000pt;}
.y69_c00343{bottom:523.973333pt;}
.y68_c00343{bottom:524.360000pt;}
.y67_c00343{bottom:539.026667pt;}
.y66_c00343{bottom:539.773333pt;}
.y64_c00343{bottom:541.693333pt;}
.y65_c00343{bottom:542.640000pt;}
.y62_c00343{bottom:557.106667pt;}
.y61_c00343{bottom:559.026667pt;}
.y63_c00343{bottom:559.973333pt;}
.y5e_c00343{bottom:573.493333pt;}
.y60_c00343{bottom:574.440000pt;}
.y5f_c00343{bottom:575.400000pt;}
.y5d_c00343{bottom:576.360000pt;}
.y5c_c00343{bottom:591.773333pt;}
.y5a_c00343{bottom:593.106667pt;}
.y59_c00343{bottom:593.693333pt;}
.y5b_c00343{bottom:595.026667pt;}
.y56_c00343{bottom:610.440000pt;}
.y58_c00343{bottom:611.226667pt;}
.y57_c00343{bottom:611.400000pt;}
.y55_c00343{bottom:612.360000pt;}
.y54_c00343{bottom:629.693333pt;}
.y53_c00343{bottom:643.773333pt;}
.y52_c00343{bottom:645.106667pt;}
.y50_c00343{bottom:645.893333pt;}
.y51_c00343{bottom:647.026667pt;}
.y4f_c00343{bottom:662.066667pt;}
.y4d_c00343{bottom:662.440000pt;}
.y4e_c00343{bottom:663.400000pt;}
.y4b_c00343{bottom:664.360000pt;}
.y4c_c00343{bottom:665.306667pt;}
.y4a_c00343{bottom:679.400000pt;}
.y48_c00343{bottom:679.773333pt;}
.y47_c00343{bottom:681.693333pt;}
.y49_c00343{bottom:681.893333pt;}
.y44_c00343{bottom:697.106667pt;}
.y46_c00343{bottom:698.066667pt;}
.y45_c00343{bottom:699.026667pt;}
.y43_c00343{bottom:699.973333pt;}
.y3f_c00343{bottom:715.400000pt;}
.y3e_c00343{bottom:715.773333pt;}
.y41_c00343{bottom:716.360000pt;}
.y42_c00343{bottom:716.560000pt;}
.y40_c00343{bottom:717.693333pt;}
.y3c_c00343{bottom:732.360000pt;}
.y3b_c00343{bottom:733.106667pt;}
.y3d_c00343{bottom:733.893333pt;}
.y3a_c00343{bottom:735.026667pt;}
.y39_c00343{bottom:752.360000pt;}
.y37_c00343{bottom:767.400000pt;}
.y34_c00343{bottom:767.773333pt;}
.y38_c00343{bottom:768.560000pt;}
.y36_c00343{bottom:769.693333pt;}
.y35_c00343{bottom:770.640000pt;}
.y2e_c00343{bottom:783.773333pt;}
.y31_c00343{bottom:783.973333pt;}
.y2f_c00343{bottom:785.106667pt;}
.y33_c00343{bottom:786.066667pt;}
.y32_c00343{bottom:786.640000pt;}
.y30_c00343{bottom:787.026667pt;}
.y2c_c00343{bottom:802.440000pt;}
.y2d_c00343{bottom:803.773333pt;}
.y2b_c00343{bottom:804.360000pt;}
.y2a_c00343{bottom:805.306667pt;}
.y26_c00343{bottom:819.026667pt;}
.y29_c00343{bottom:820.733333pt;}
.y28_c00343{bottom:821.106667pt;}
.y24_c00343{bottom:821.693333pt;}
.y27_c00343{bottom:822.066667pt;}
.y23_c00343{bottom:822.640000pt;}
.y25_c00343{bottom:823.026667pt;}
.y20_c00343{bottom:837.106667pt;}
.y22_c00343{bottom:838.066667pt;}
.y1e_c00343{bottom:838.440000pt;}
.y21_c00343{bottom:839.226667pt;}
.y1f_c00343{bottom:840.360000pt;}
.y1d_c00343{bottom:854.440000pt;}
.y1b_c00343{bottom:855.773333pt;}
.y1c_c00343{bottom:856.560000pt;}
.y1a_c00343{bottom:857.306667pt;}
.y19_c00343{bottom:857.693333pt;}
.y18_c00343{bottom:871.773333pt;}
.y17_c00343{bottom:872.733333pt;}
.y15_c00343{bottom:873.106667pt;}
.y16_c00343{bottom:873.893333pt;}
.y14_c00343{bottom:875.026667pt;}
.y13_c00343{bottom:875.973333pt;}
.y10_c00343{bottom:889.306667pt;}
.y11_c00343{bottom:890.440000pt;}
.y12_c00343{bottom:891.226667pt;}
.yf_c00343{bottom:892.360000pt;}
.ye_c00343{bottom:907.773333pt;}
.yd_c00343{bottom:909.693333pt;}
.yc_c00343{bottom:910.640000pt;}
.y8_c00343{bottom:925.106667pt;}
.y9_c00343{bottom:925.893333pt;}
.yb_c00343{bottom:926.640000pt;}
.ya_c00343{bottom:927.026667pt;}
.y5_c00343{bottom:942.066667pt;}
.y3_c00343{bottom:942.440000pt;}
.y6_c00343{bottom:944.360000pt;}
.y7_c00343{bottom:944.560000pt;}
.y4_c00343{bottom:945.306667pt;}
.y2_c00343{bottom:976.360000pt;}
.y1_c00343{bottom:978.266667pt;}
.h9_c00343{height:3.739141pt;}
.ha_c00343{height:12.988594pt;}
.h8_c00343{height:14.890964pt;}
.h6_c00343{height:20.466875pt;}
.h1_c00343{height:22.303646pt;}
.h4_c00343{height:27.879557pt;}
.h2_c00343{height:31.618698pt;}
.h5_c00343{height:35.357839pt;}
.h3_c00343{height:39.031380pt;}
.h7_c00343{height:42.770521pt;}
.h0_c00343{height:1186.666667pt;}
.w0_c00343{width:782.666667pt;}
.x0_c00343{left:0.000000pt;}
.xba_c00343{left:134.666667pt;}
.x68_c00343{left:135.626667pt;}
.x2_c00343{left:136.960000pt;}
.x96_c00343{left:147.626667pt;}
.x9f_c00343{left:149.333333pt;}
.x1b_c00343{left:150.666667pt;}
.x31_c00343{left:153.706667pt;}
.x7d_c00343{left:160.000000pt;}
.x56_c00343{left:162.666667pt;}
.x4c_c00343{left:165.706667pt;}
.x43_c00343{left:166.666667pt;}
.xbb_c00343{left:168.373333pt;}
.xa0_c00343{left:169.333333pt;}
.x6f_c00343{left:170.293333pt;}
.xb4_c00343{left:171.626667pt;}
.x3_c00343{left:173.706667pt;}
.xd3_c00343{left:175.040000pt;}
.x28_c00343{left:178.666667pt;}
.x1c_c00343{left:181.333333pt;}
.x69_c00343{left:182.666667pt;}
.x87_c00343{left:184.000000pt;}
.x5d_c00343{left:186.666667pt;}
.x11_c00343{left:188.000000pt;}
.x76_c00343{left:188.960000pt;}
.x97_c00343{left:190.293333pt;}
.x57_c00343{left:193.333333pt;}
.xcd_c00343{left:196.960000pt;}
.x88_c00343{left:198.666667pt;}
.x4d_c00343{left:200.000000pt;}
.xbc_c00343{left:203.626667pt;}
.x44_c00343{left:205.333333pt;}
.x4_c00343{left:208.000000pt;}
.x29_c00343{left:209.333333pt;}
.x12_c00343{left:211.040000pt;}
.xa1_c00343{left:212.000000pt;}
.x1d_c00343{left:213.706667pt;}
.xb5_c00343{left:216.000000pt;}
.x7e_c00343{left:220.373333pt;}
.xc5_c00343{left:223.626667pt;}
.xa7_c00343{left:225.706667pt;}
.x8f_c00343{left:227.626667pt;}
.xce_c00343{left:229.333333pt;}
.xa2_c00343{left:231.040000pt;}
.x4e_c00343{left:233.706667pt;}
.xbf_c00343{left:234.666667pt;}
.x13_c00343{left:236.000000pt;}
.xc6_c00343{left:240.373333pt;}
.x2a_c00343{left:241.333333pt;}
.x7f_c00343{left:242.666667pt;}
.x70_c00343{left:244.000000pt;}
.x5e_c00343{left:246.666667pt;}
.x1e_c00343{left:248.960000pt;}
.x5_c00343{left:250.666667pt;}
.x89_c00343{left:252.000000pt;}
.xac_c00343{left:257.333333pt;}
.x6a_c00343{left:260.000000pt;}
.xc7_c00343{left:262.666667pt;}
.x4f_c00343{left:264.960000pt;}
.xde_c00343{left:266.666667pt;}
.x80_c00343{left:268.000000pt;}
.x45_c00343{left:269.333333pt;}
.x14_c00343{left:270.666667pt;}
.x77_c00343{left:272.373333pt;}
.xe6_c00343{left:274.666667pt;}
.x3b_c00343{left:278.293333pt;}
.xda_c00343{left:280.000000pt;}
.xad_c00343{left:282.293333pt;}
.xbd_c00343{left:285.333333pt;}
.xe5_c00343{left:286.666667pt;}
.x98_c00343{left:288.000000pt;}
.x71_c00343{left:288.960000pt;}
.x1f_c00343{left:290.666667pt;}
.x6_c00343{left:292.000000pt;}
.x5f_c00343{left:294.666667pt;}
.x3c_c00343{left:296.373333pt;}
.xe7_c00343{left:298.293333pt;}
.x32_c00343{left:300.000000pt;}
.x81_c00343{left:301.333333pt;}
.x99_c00343{left:304.373333pt;}
.x90_c00343{left:306.666667pt;}
.x7_c00343{left:310.666667pt;}
.x50_c00343{left:312.000000pt;}
.x82_c00343{left:318.666667pt;}
.xae_c00343{left:322.666667pt;}
.xb6_c00343{left:323.626667pt;}
.xc0_c00343{left:326.293333pt;}
.x78_c00343{left:328.373333pt;}
.x58_c00343{left:329.706667pt;}
.x20_c00343{left:332.960000pt;}
.x6b_c00343{left:338.293333pt;}
.x33_c00343{left:340.000000pt;}
.xc1_c00343{left:344.373333pt;}
.x91_c00343{left:345.333333pt;}
.xd4_c00343{left:347.040000pt;}
.x51_c00343{left:348.000000pt;}
.x2b_c00343{left:349.706667pt;}
.x15_c00343{left:352.000000pt;}
.x8_c00343{left:355.040000pt;}
.xa8_c00343{left:356.373333pt;}
.x60_c00343{left:357.333333pt;}
.x8a_c00343{left:358.666667pt;}
.x1_c00343{left:360.000000pt;}
.x21_c00343{left:361.133333pt;}
.xdb_c00343{left:363.040000pt;}
.x34_c00343{left:364.000000pt;}
.xb7_c00343{left:364.960000pt;}
.x3d_c00343{left:368.000000pt;}
.xc2_c00343{left:369.333333pt;}
.xc8_c00343{left:370.666667pt;}
.x2c_c00343{left:372.373333pt;}
.x79_c00343{left:374.293333pt;}
.x9a_c00343{left:376.000000pt;}
.x61_c00343{left:378.666667pt;}
.x16_c00343{left:380.373333pt;}
.xd5_c00343{left:381.333333pt;}
.xa9_c00343{left:382.666667pt;}
.x35_c00343{left:383.626667pt;}
.xa3_c00343{left:388.000000pt;}
.xdd_c00343{left:389.333333pt;}
.x9_c00343{left:390.666667pt;}
.x6c_c00343{left:393.706667pt;}
.x62_c00343{left:396.373333pt;}
.x46_c00343{left:397.706667pt;}
.xaf_c00343{left:399.040000pt;}
.xdf_c00343{left:400.000000pt;}
.xb8_c00343{left:400.960000pt;}
.x17_c00343{left:402.293333pt;}
.x52_c00343{left:404.000000pt;}
.x92_c00343{left:405.706667pt;}
.x22_c00343{left:406.666667pt;}
.xbe_c00343{left:407.626667pt;}
.xa_c00343{left:409.333333pt;}
.x8b_c00343{left:410.666667pt;}
.xcf_c00343{left:414.666667pt;}
.x3e_c00343{left:416.373333pt;}
.x59_c00343{left:417.333333pt;}
.x18_c00343{left:419.040000pt;}
.x7a_c00343{left:420.000000pt;}
.x6d_c00343{left:421.333333pt;}
.x72_c00343{left:424.000000pt;}
.x47_c00343{left:426.666667pt;}
.xaa_c00343{left:428.000000pt;}
.x8c_c00343{left:432.000000pt;}
.x23_c00343{left:432.960000pt;}
.x36_c00343{left:434.666667pt;}
.x83_c00343{left:436.000000pt;}
.x73_c00343{left:437.333333pt;}
.xe0_c00343{left:440.000000pt;}
.xab_c00343{left:442.666667pt;}
.xb_c00343{left:444.000000pt;}
.xc9_c00343{left:445.333333pt;}
.xd0_c00343{left:448.000000pt;}
.x84_c00343{left:450.666667pt;}
.x63_c00343{left:451.626667pt;}
.xb0_c00343{left:456.000000pt;}
.xc_c00343{left:459.040000pt;}
.x2d_c00343{left:460.000000pt;}
.x48_c00343{left:464.000000pt;}
.x93_c00343{left:465.333333pt;}
.xca_c00343{left:466.666667pt;}
.x19_c00343{left:468.000000pt;}
.x37_c00343{left:470.666667pt;}
.xd6_c00343{left:473.333333pt;}
.x53_c00343{left:474.666667pt;}
.xe1_c00343{left:480.373333pt;}
.x1a_c00343{left:483.040000pt;}
.xe3_c00343{left:484.000000pt;}
.x38_c00343{left:488.373333pt;}
.xa4_c00343{left:489.333333pt;}
.x64_c00343{left:492.000000pt;}
.x3f_c00343{left:494.666667pt;}
.x2e_c00343{left:496.000000pt;}
.xb1_c00343{left:496.960000pt;}
.xc3_c00343{left:498.293333pt;}
.x74_c00343{left:499.626667pt;}
.x49_c00343{left:501.333333pt;}
.xa5_c00343{left:506.666667pt;}
.x94_c00343{left:509.333333pt;}
.xb9_c00343{left:513.333333pt;}
.x39_c00343{left:516.000000pt;}
.xdc_c00343{left:517.333333pt;}
.xe2_c00343{left:518.666667pt;}
.xd_c00343{left:520.000000pt;}
.x65_c00343{left:520.960000pt;}
.xe4_c00343{left:524.000000pt;}
.x4a_c00343{left:525.333333pt;}
.xb2_c00343{left:526.666667pt;}
.x24_c00343{left:528.000000pt;}
.xcb_c00343{left:529.333333pt;}
.x9b_c00343{left:531.626667pt;}
.xd7_c00343{left:533.333333pt;}
.xe_c00343{left:539.040000pt;}
.x5a_c00343{left:540.960000pt;}
.x25_c00343{left:546.666667pt;}
.x9c_c00343{left:548.373333pt;}
.xd8_c00343{left:549.333333pt;}
.x8d_c00343{left:551.626667pt;}
.x66_c00343{left:554.666667pt;}
.xcc_c00343{left:556.000000pt;}
.x85_c00343{left:564.000000pt;}
.x40_c00343{left:567.626667pt;}
.x5b_c00343{left:569.333333pt;}
.x9d_c00343{left:570.293333pt;}
.xf_c00343{left:574.293333pt;}
.xd1_c00343{left:578.293333pt;}
.x2f_c00343{left:580.000000pt;}
.xc4_c00343{left:582.466667pt;}
.x54_c00343{left:584.000000pt;}
.xd9_c00343{left:588.000000pt;}
.xa6_c00343{left:589.333333pt;}
.x75_c00343{left:590.666667pt;}
.x8e_c00343{left:594.666667pt;}
.x7b_c00343{left:597.333333pt;}
.xd2_c00343{left:599.040000pt;}
.x41_c00343{left:602.293333pt;}
.x9e_c00343{left:604.000000pt;}
.x3a_c00343{left:605.333333pt;}
.x26_c00343{left:606.293333pt;}
.xb3_c00343{left:608.960000pt;}
.x5c_c00343{left:612.000000pt;}
.x86_c00343{left:613.333333pt;}
.x10_c00343{left:614.666667pt;}
.x67_c00343{left:616.000000pt;}
.x42_c00343{left:618.666667pt;}
.x55_c00343{left:621.706667pt;}
.x30_c00343{left:623.040000pt;}
.x95_c00343{left:624.373333pt;}
.x6e_c00343{left:629.333333pt;}
.x4b_c00343{left:631.040000pt;}
.x27_c00343{left:634.666667pt;}
.x7c_c00343{left:636.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_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_20f6036f4cd2606a782cd498.woff2')format("woff");}.ff1_c00344{font-family:ff1_c00344;line-height:1.688965;font-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_c00344{transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);}
.m51_c00344{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.m4_c00344{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.m85_c00344{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m33_c00344{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_c00344{transform:matrix(0.354294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354294,0.000000,0.000000,0.250000,0,0);}
.maf_c00344{transform:matrix(0.357745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357745,0.000000,0.000000,0.250000,0,0);}
.m86_c00344{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m66_c00344{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m49_c00344{transform:matrix(0.365031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365031,0.000000,0.000000,0.250000,0,0);}
.mab_c00344{transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);}
.m2_c00344{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m78_c00344{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.md2_c00344{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mbf_c00344{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m7e_c00344{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m67_c00344{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m52_c00344{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mb8_c00344{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m1a_c00344{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.md3_c00344{transform:matrix(0.381902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381902,0.000000,0.000000,0.250000,0,0);}
.mb0_c00344{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m36_c00344{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.md5_c00344{transform:matrix(0.384874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384874,0.000000,0.000000,0.250000,0,0);}
.mb5_c00344{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m9_c00344{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mda_c00344{transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);}
.m1e_c00344{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m7d_c00344{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.md6_c00344{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m23_c00344{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.mae_c00344{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m3f_c00344{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m76_c00344{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.mbe_c00344{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mb7_c00344{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);}
.m35_c00344{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.mce_c00344{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m2a_c00344{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.ma1_c00344{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m70_c00344{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.md4_c00344{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.ma0_c00344{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.md8_c00344{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.ma5_c00344{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mb2_c00344{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.mbb_c00344{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m19_c00344{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m3a_c00344{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m22_c00344{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m55_c00344{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.mb1_c00344{transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);}
.mb3_c00344{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m75_c00344{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.mb4_c00344{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m32_c00344{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.ma2_c00344{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m71_c00344{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.md1_c00344{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.me0_c00344{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.ma8_c00344{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mdc_c00344{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m8d_c00344{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.mcb_c00344{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m1f_c00344{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m4a_c00344{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m99_c00344{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m20_c00344{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.md9_c00344{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.mbd_c00344{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mc_c00344{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mcc_c00344{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m1b_c00344{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.ma9_c00344{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m62_c00344{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mcf_c00344{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.md7_c00344{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.m2f_c00344{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m2e_c00344{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m61_c00344{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m91_c00344{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m5f_c00344{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m4c_c00344{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.me1_c00344{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m9c_c00344{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m4e_c00344{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m9a_c00344{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mb6_c00344{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mb9_c00344{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m90_c00344{transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);}
.m6e_c00344{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m8b_c00344{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.m17_c00344{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m4b_c00344{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m29_c00344{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m6c_c00344{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.m79_c00344{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m87_c00344{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.maa_c00344{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m68_c00344{transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);}
.m46_c00344{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mc8_c00344{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.mca_c00344{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m0_c00344{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m3c_c00344{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m97_c00344{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m53_c00344{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m9b_c00344{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.ma_c00344{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_c00344{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m7c_c00344{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mc2_c00344{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m41_c00344{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.md0_c00344{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m5c_c00344{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.ma4_c00344{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mcd_c00344{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m9d_c00344{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m2d_c00344{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m39_c00344{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m24_c00344{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m89_c00344{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m6b_c00344{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m37_c00344{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m6f_c00344{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m69_c00344{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m9e_c00344{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.m7b_c00344{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mba_c00344{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.ma6_c00344{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mc9_c00344{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m9f_c00344{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m65_c00344{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m8a_c00344{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m1d_c00344{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m50_c00344{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.mf_c00344{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m5e_c00344{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m25_c00344{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m83_c00344{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m27_c00344{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m44_c00344{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m48_c00344{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m5_c00344{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mdb_c00344{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m14_c00344{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m2b_c00344{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m28_c00344{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mb_c00344{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m45_c00344{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m8f_c00344{transform:matrix(0.542208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542208,0.000000,0.000000,0.250000,0,0);}
.mc0_c00344{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.md_c00344{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m92_c00344{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mac_c00344{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m74_c00344{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.ma7_c00344{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m12_c00344{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m8e_c00344{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m38_c00344{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m80_c00344{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.me_c00344{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mdf_c00344{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m4d_c00344{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.ma3_c00344{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m6d_c00344{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m1c_c00344{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mc5_c00344{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m64_c00344{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m54_c00344{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);}
.m42_c00344{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m3e_c00344{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m77_c00344{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m2c_c00344{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m82_c00344{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m26_c00344{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m6_c00344{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m94_c00344{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mad_c00344{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m3d_c00344{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m95_c00344{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m3b_c00344{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m60_c00344{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.mdd_c00344{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m10_c00344{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m40_c00344{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m31_c00344{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mc1_c00344{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m1_c00344{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m81_c00344{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m11_c00344{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m7_c00344{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mde_c00344{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m98_c00344{transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);}
.mc3_c00344{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m15_c00344{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.mbc_c00344{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m4f_c00344{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m93_c00344{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m7f_c00344{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m57_c00344{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m16_c00344{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mc7_c00344{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m30_c00344{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m72_c00344{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m5d_c00344{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m63_c00344{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m7a_c00344{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m43_c00344{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m21_c00344{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m8_c00344{transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);}
.m73_c00344{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m47_c00344{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m8c_c00344{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.m34_c00344{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m96_c00344{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mc6_c00344{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m58_c00344{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m5b_c00344{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.m59_c00344{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.mc4_c00344{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m56_c00344{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m88_c00344{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m5a_c00344{transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);}
.me2_c00344{transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);}
.m18_c00344{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m6a_c00344{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00344{vertical-align:-6.000000px;}
.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;}
}
.ws2_c00344{word-spacing:-16.889280px;}
.ws0_c00344{word-spacing:-8.811328px;}
.ws3_c00344{word-spacing:-6.861421px;}
.ws1_c00344{word-spacing:-6.184625px;}
.ws4_c00344{word-spacing:0.000000px;}
._0_c00344{width:4.774453px;}
.fc0_c00344{color:transparent;}
.fs7_c00344{font-size:3.420000px;}
.fs3_c00344{font-size:18.720000px;}
.fs1_c00344{font-size:20.400000px;}
.fs4_c00344{font-size:25.500000px;}
.fs0_c00344{font-size:28.920000px;}
.fs5_c00344{font-size:32.340000px;}
.fs2_c00344{font-size:35.700000px;}
.fs6_c00344{font-size:39.120000px;}
.y0_c00344{bottom:0.000000px;}
.yc7_c00344{bottom:251.745000px;}
.yc8_c00344{bottom:253.905000px;}
.yca_c00344{bottom:254.130000px;}
.yc9_c00344{bottom:255.405000px;}
.yc4_c00344{bottom:270.405000px;}
.yc2_c00344{bottom:271.245000px;}
.yc3_c00344{bottom:272.745000px;}
.yc1_c00344{bottom:272.970000px;}
.yc0_c00344{bottom:273.405000px;}
.yc5_c00344{bottom:274.470000px;}
.yc6_c00344{bottom:274.905000px;}
.yb8_c00344{bottom:290.745000px;}
.yb7_c00344{bottom:291.180000px;}
.ybd_c00344{bottom:291.825000px;}
.yb9_c00344{bottom:292.245000px;}
.yba_c00344{bottom:292.905000px;}
.ybc_c00344{bottom:293.130000px;}
.ybb_c00344{bottom:293.325000px;}
.ybf_c00344{bottom:293.970000px;}
.ybe_c00344{bottom:294.405000px;}
.yb5_c00344{bottom:310.680000px;}
.yb4_c00344{bottom:311.745000px;}
.yb6_c00344{bottom:313.905000px;}
.yb3_c00344{bottom:330.405000px;}
.yb1_c00344{bottom:331.245000px;}
.yb2_c00344{bottom:333.405000px;}
.yae_c00344{bottom:350.745000px;}
.yad_c00344{bottom:352.470000px;}
.yac_c00344{bottom:352.905000px;}
.yb0_c00344{bottom:353.130000px;}
.yaf_c00344{bottom:353.970000px;}
.yab_c00344{bottom:370.245000px;}
.ya9_c00344{bottom:372.405000px;}
.yaa_c00344{bottom:372.630000px;}
.ya8_c00344{bottom:391.245000px;}
.ya6_c00344{bottom:391.905000px;}
.ya7_c00344{bottom:393.405000px;}
.ya5_c00344{bottom:410.745000px;}
.ya3_c00344{bottom:411.630000px;}
.ya4_c00344{bottom:412.470000px;}
.ya2_c00344{bottom:412.905000px;}
.ya1_c00344{bottom:430.245000px;}
.y9f_c00344{bottom:431.130000px;}
.y9e_c00344{bottom:432.405000px;}
.ya0_c00344{bottom:433.470000px;}
.y9c_c00344{bottom:448.470000px;}
.y9b_c00344{bottom:449.745000px;}
.y9d_c00344{bottom:450.630000px;}
.y9a_c00344{bottom:451.470000px;}
.y99_c00344{bottom:451.905000px;}
.y97_c00344{bottom:469.245000px;}
.y98_c00344{bottom:470.970000px;}
.y95_c00344{bottom:471.405000px;}
.y96_c00344{bottom:472.470000px;}
.y91_c00344{bottom:488.745000px;}
.y94_c00344{bottom:490.245000px;}
.y93_c00344{bottom:490.470000px;}
.y92_c00344{bottom:490.905000px;}
.y8c_c00344{bottom:507.405000px;}
.y8b_c00344{bottom:508.245000px;}
.y8d_c00344{bottom:509.325000px;}
.y8f_c00344{bottom:509.745000px;}
.y90_c00344{bottom:510.405000px;}
.y8e_c00344{bottom:510.630000px;}
.y88_c00344{bottom:529.245000px;}
.y89_c00344{bottom:529.905000px;}
.y8a_c00344{bottom:531.405000px;}
.y87_c00344{bottom:547.680000px;}
.y85_c00344{bottom:548.745000px;}
.y86_c00344{bottom:550.905000px;}
.y82_c00344{bottom:568.245000px;}
.y84_c00344{bottom:569.325000px;}
.y83_c00344{bottom:570.405000px;}
.y80_c00344{bottom:587.745000px;}
.y81_c00344{bottom:589.470000px;}
.y7f_c00344{bottom:589.905000px;}
.y7e_c00344{bottom:607.245000px;}
.y7d_c00344{bottom:609.405000px;}
.y78_c00344{bottom:626.745000px;}
.y79_c00344{bottom:628.245000px;}
.y77_c00344{bottom:628.905000px;}
.y7c_c00344{bottom:629.130000px;}
.y7b_c00344{bottom:629.325000px;}
.y76_c00344{bottom:629.970000px;}
.y7a_c00344{bottom:630.405000px;}
.y74_c00344{bottom:647.745000px;}
.y75_c00344{bottom:648.630000px;}
.y73_c00344{bottom:649.905000px;}
.y72_c00344{bottom:669.405000px;}
.y6c_c00344{bottom:686.745000px;}
.y6f_c00344{bottom:686.970000px;}
.y6e_c00344{bottom:687.825000px;}
.y71_c00344{bottom:688.470000px;}
.y6d_c00344{bottom:688.905000px;}
.y70_c00344{bottom:689.970000px;}
.y69_c00344{bottom:705.405000px;}
.y66_c00344{bottom:706.245000px;}
.y6a_c00344{bottom:707.325000px;}
.y67_c00344{bottom:708.405000px;}
.y68_c00344{bottom:708.630000px;}
.y6b_c00344{bottom:709.470000px;}
.y63_c00344{bottom:724.680000px;}
.y65_c00344{bottom:724.905000px;}
.y64_c00344{bottom:725.745000px;}
.y62_c00344{bottom:727.905000px;}
.y5e_c00344{bottom:745.245000px;}
.y61_c00344{bottom:746.745000px;}
.y5d_c00344{bottom:747.405000px;}
.y5f_c00344{bottom:747.630000px;}
.y60_c00344{bottom:748.905000px;}
.y59_c00344{bottom:764.745000px;}
.y5a_c00344{bottom:766.245000px;}
.y57_c00344{bottom:766.470000px;}
.y5b_c00344{bottom:767.130000px;}
.y58_c00344{bottom:768.405000px;}
.y5c_c00344{bottom:769.470000px;}
.y53_c00344{bottom:785.325000px;}
.y54_c00344{bottom:785.745000px;}
.y56_c00344{bottom:786.630000px;}
.y55_c00344{bottom:787.470000px;}
.y51_c00344{bottom:787.905000px;}
.y52_c00344{bottom:787.920000px;}
.y4d_c00344{bottom:802.905000px;}
.y50_c00344{bottom:806.130000px;}
.y4e_c00344{bottom:806.970000px;}
.y4f_c00344{bottom:807.405000px;}
.y4c_c00344{bottom:824.745000px;}
.y4b_c00344{bottom:825.630000px;}
.y4a_c00344{bottom:826.905000px;}
.y49_c00344{bottom:842.970000px;}
.y45_c00344{bottom:844.245000px;}
.y43_c00344{bottom:845.130000px;}
.y47_c00344{bottom:845.745000px;}
.y44_c00344{bottom:845.970000px;}
.y42_c00344{bottom:846.405000px;}
.y46_c00344{bottom:846.630000px;}
.y48_c00344{bottom:847.905000px;}
.y3b_c00344{bottom:862.470000px;}
.y3c_c00344{bottom:863.745000px;}
.y3d_c00344{bottom:864.630000px;}
.y3f_c00344{bottom:865.050000px;}
.y3e_c00344{bottom:865.905000px;}
.y40_c00344{bottom:866.130000px;}
.y41_c00344{bottom:866.970000px;}
.y39_c00344{bottom:882.405000px;}
.y35_c00344{bottom:883.470000px;}
.y38_c00344{bottom:883.680000px;}
.y3a_c00344{bottom:884.745000px;}
.y34_c00344{bottom:885.405000px;}
.y36_c00344{bottom:885.825000px;}
.y37_c00344{bottom:886.905000px;}
.y2f_c00344{bottom:901.905000px;}
.y31_c00344{bottom:903.180000px;}
.y32_c00344{bottom:904.245000px;}
.y2e_c00344{bottom:904.905000px;}
.y33_c00344{bottom:905.130000px;}
.y30_c00344{bottom:906.405000px;}
.y2b_c00344{bottom:921.405000px;}
.y28_c00344{bottom:922.245000px;}
.y2d_c00344{bottom:923.745000px;}
.y27_c00344{bottom:924.405000px;}
.y2c_c00344{bottom:924.630000px;}
.y29_c00344{bottom:925.905000px;}
.y2a_c00344{bottom:926.970000px;}
.y25_c00344{bottom:940.905000px;}
.y26_c00344{bottom:941.970000px;}
.y23_c00344{bottom:943.245000px;}
.y24_c00344{bottom:945.405000px;}
.y20_c00344{bottom:962.745000px;}
.y1f_c00344{bottom:963.630000px;}
.y22_c00344{bottom:964.470000px;}
.y21_c00344{bottom:964.905000px;}
.y1e_c00344{bottom:965.130000px;}
.y1b_c00344{bottom:981.405000px;}
.y18_c00344{bottom:982.245000px;}
.y1d_c00344{bottom:983.970000px;}
.y1a_c00344{bottom:984.405000px;}
.y19_c00344{bottom:985.470000px;}
.y1c_c00344{bottom:985.905000px;}
.y17_c00344{bottom:1001.745000px;}
.y16_c00344{bottom:1002.825000px;}
.y15_c00344{bottom:1003.905000px;}
.y10_c00344{bottom:1019.325000px;}
.y12_c00344{bottom:1021.245000px;}
.y11_c00344{bottom:1022.970000px;}
.yf_c00344{bottom:1023.405000px;}
.y13_c00344{bottom:1023.630000px;}
.y14_c00344{bottom:1024.470000px;}
.y9_c00344{bottom:1039.905000px;}
.yb_c00344{bottom:1041.405000px;}
.yd_c00344{bottom:1042.245000px;}
.ya_c00344{bottom:1042.905000px;}
.yc_c00344{bottom:1043.130000px;}
.y8_c00344{bottom:1043.970000px;}
.ye_c00344{bottom:1044.405000px;}
.y3_c00344{bottom:1060.245000px;}
.y5_c00344{bottom:1061.745000px;}
.y4_c00344{bottom:1062.630000px;}
.y7_c00344{bottom:1063.470000px;}
.y6_c00344{bottom:1063.905000px;}
.y1_c00344{bottom:1099.905000px;}
.y2_c00344{bottom:1102.050000px;}
.h8_c00344{height:4.206533px;}
.h4_c00344{height:23.025234px;}
.h2_c00344{height:25.091602px;}
.h5_c00344{height:31.364502px;}
.h1_c00344{height:35.571035px;}
.h6_c00344{height:39.777568px;}
.h3_c00344{height:43.910303px;}
.h7_c00344{height:48.116836px;}
.h0_c00344{height:1335.000000px;}
.w0_c00344{width:880.500000px;}
.x0_c00344{left:0.000000px;}
.x13_c00344{left:150.000000px;}
.x3_c00344{left:151.080000px;}
.x92_c00344{left:153.000000px;}
.xe7_c00344{left:154.275000px;}
.x98_c00344{left:165.645000px;}
.x110_c00344{left:167.580000px;}
.x65_c00344{left:171.420000px;}
.xa1_c00344{left:172.500000px;}
.x8c_c00344{left:174.420000px;}
.x4f_c00344{left:175.500000px;}
.x14_c00344{left:177.000000px;}
.xd3_c00344{left:178.500000px;}
.x10a_c00344{left:180.000000px;}
.x41_c00344{left:183.000000px;}
.x84_c00344{left:189.420000px;}
.x4_c00344{left:190.500000px;}
.x6f_c00344{left:195.000000px;}
.xa9_c00344{left:198.420000px;}
.x5a_c00344{left:199.500000px;}
.x5_c00344{left:201.000000px;}
.xb2_c00344{left:203.580000px;}
.xc6_c00344{left:205.920000px;}
.xb8_c00344{left:210.000000px;}
.x35_c00344{left:214.080000px;}
.x42_c00344{left:215.580000px;}
.x2c_c00344{left:217.080000px;}
.x50_c00344{left:219.000000px;}
.x6_c00344{left:220.500000px;}
.xf8_c00344{left:222.420000px;}
.x93_c00344{left:223.500000px;}
.x22_c00344{left:225.420000px;}
.x106_c00344{left:228.420000px;}
.x85_c00344{left:229.500000px;}
.xb9_c00344{left:231.420000px;}
.x2d_c00344{left:237.000000px;}
.xeb_c00344{left:238.500000px;}
.xff_c00344{left:241.500000px;}
.x94_c00344{left:242.580000px;}
.x66_c00344{left:244.500000px;}
.x109_c00344{left:246.420000px;}
.xd4_c00344{left:247.920000px;}
.xaa_c00344{left:249.000000px;}
.x5b_c00344{left:250.500000px;}
.xa2_c00344{left:252.000000px;}
.x51_c00344{left:253.080000px;}
.x99_c00344{left:256.500000px;}
.xba_c00344{left:259.920000px;}
.xbc_c00344{left:261.000000px;}
.xf4_c00344{left:262.080000px;}
.x23_c00344{left:264.000000px;}
.x7_c00344{left:265.920000px;}
.x43_c00344{left:267.000000px;}
.x10b_c00344{left:268.500000px;}
.xcd_c00344{left:273.000000px;}
.xc7_c00344{left:274.500000px;}
.x79_c00344{left:276.000000px;}
.xe8_c00344{left:278.580000px;}
.xbd_c00344{left:280.920000px;}
.xe1_c00344{left:282.000000px;}
.x36_c00344{left:283.500000px;}
.x115_c00344{left:285.855000px;}
.x5c_c00344{left:286.920000px;}
.x9a_c00344{left:288.000000px;}
.x15_c00344{left:291.420000px;}
.x37_c00344{left:294.000000px;}
.xab_c00344{left:295.080000px;}
.x70_c00344{left:297.420000px;}
.x8_c00344{left:300.000000px;}
.x2e_c00344{left:302.580000px;}
.x8d_c00344{left:306.000000px;}
.x95_c00344{left:307.500000px;}
.xbe_c00344{left:309.000000px;}
.xce_c00344{left:310.500000px;}
.x24_c00344{left:312.000000px;}
.x52_c00344{left:313.920000px;}
.x7a_c00344{left:316.920000px;}
.x67_c00344{left:318.000000px;}
.x9_c00344{left:319.920000px;}
.x96_c00344{left:321.420000px;}
.xec_c00344{left:325.500000px;}
.x44_c00344{left:326.580000px;}
.x86_c00344{left:328.500000px;}
.xd5_c00344{left:330.000000px;}
.xe2_c00344{left:331.920000px;}
.x71_c00344{left:334.080000px;}
.x107_c00344{left:336.000000px;}
.x16_c00344{left:337.500000px;}
.x25_c00344{left:339.000000px;}
.xdd_c00344{left:341.580000px;}
.xf0_c00344{left:343.920000px;}
.xf5_c00344{left:348.420000px;}
.x2f_c00344{left:349.500000px;}
.xc8_c00344{left:351.420000px;}
.xa3_c00344{left:352.500000px;}
.x10c_c00344{left:354.420000px;}
.x7b_c00344{left:356.355000px;}
.x45_c00344{left:357.420000px;}
.x72_c00344{left:358.500000px;}
.xbf_c00344{left:360.420000px;}
.xfd_c00344{left:361.500000px;}
.x5d_c00344{left:363.420000px;}
.xa_c00344{left:364.500000px;}
.x53_c00344{left:368.580000px;}
.x38_c00344{left:370.920000px;}
.x17_c00344{left:373.080000px;}
.x97_c00344{left:376.500000px;}
.xda_c00344{left:378.000000px;}
.x10d_c00344{left:382.500000px;}
.x18_c00344{left:385.500000px;}
.x7c_c00344{left:387.000000px;}
.x54_c00344{left:389.580000px;}
.xc0_c00344{left:391.500000px;}
.xe9_c00344{left:392.775000px;}
.xac_c00344{left:394.080000px;}
.x73_c00344{left:396.000000px;}
.x39_c00344{left:397.920000px;}
.xa4_c00344{left:399.000000px;}
.xe3_c00344{left:400.500000px;}
.x2_c00344{left:402.000000px;}
.x19_c00344{left:405.420000px;}
.x5e_c00344{left:406.500000px;}
.x46_c00344{left:408.420000px;}
.xde_c00344{left:410.580000px;}
.x30_c00344{left:412.080000px;}
.x74_c00344{left:415.080000px;}
.xa5_c00344{left:417.420000px;}
.x7d_c00344{left:419.580000px;}
.x87_c00344{left:421.500000px;}
.xb3_c00344{left:424.920000px;}
.x5f_c00344{left:426.000000px;}
.x26_c00344{left:427.500000px;}
.x55_c00344{left:429.420000px;}
.x10e_c00344{left:430.500000px;}
.xed_c00344{left:432.000000px;}
.x47_c00344{left:433.500000px;}
.x1a_c00344{left:435.000000px;}
.x75_c00344{left:436.920000px;}
.xb_c00344{left:439.080000px;}
.xe4_c00344{left:441.000000px;}
.xcf_c00344{left:442.500000px;}
.xf6_c00344{left:444.420000px;}
.x31_c00344{left:445.500000px;}
.xa6_c00344{left:446.580000px;}
.x10f_c00344{left:450.000000px;}
.x7e_c00344{left:451.500000px;}
.x60_c00344{left:452.580000px;}
.xc9_c00344{left:454.080000px;}
.xc_c00344{left:458.145000px;}
.xdb_c00344{left:462.000000px;}
.x3a_c00344{left:463.920000px;}
.x100_c00344{left:465.000000px;}
.x1b_c00344{left:466.080000px;}
.xad_c00344{left:468.645000px;}
.xa7_c00344{left:469.920000px;}
.x68_c00344{left:471.000000px;}
.x48_c00344{left:475.500000px;}
.x111_c00344{left:478.500000px;}
.x8e_c00344{left:480.000000px;}
.xb4_c00344{left:481.500000px;}
.x116_c00344{left:483.000000px;}
.x118_c00344{left:484.500000px;}
.x9b_c00344{left:486.000000px;}
.x69_c00344{left:487.500000px;}
.xd6_c00344{left:489.000000px;}
.x3b_c00344{left:490.500000px;}
.x7f_c00344{left:492.420000px;}
.x101_c00344{left:493.920000px;}
.x32_c00344{left:496.500000px;}
.xd_c00344{left:498.420000px;}
.x9c_c00344{left:501.420000px;}
.x27_c00344{left:502.500000px;}
.xe5_c00344{left:503.580000px;}
.x56_c00344{left:505.080000px;}
.x114_c00344{left:507.000000px;}
.x119_c00344{left:508.275000px;}
.x88_c00344{left:510.000000px;}
.xb5_c00344{left:515.580000px;}
.x1c_c00344{left:517.500000px;}
.x8f_c00344{left:519.000000px;}
.x102_c00344{left:520.500000px;}
.x61_c00344{left:523.500000px;}
.x28_c00344{left:525.000000px;}
.xae_c00344{left:526.080000px;}
.xf1_c00344{left:527.580000px;}
.x80_c00344{left:530.580000px;}
.xdc_c00344{left:532.500000px;}
.xc1_c00344{left:534.000000px;}
.x3c_c00344{left:535.500000px;}
.xb6_c00344{left:537.420000px;}
.x57_c00344{left:538.920000px;}
.x9d_c00344{left:540.420000px;}
.x49_c00344{left:546.420000px;}
.xd0_c00344{left:547.500000px;}
.xe_c00344{left:550.920000px;}
.x89_c00344{left:552.000000px;}
.xc2_c00344{left:553.500000px;}
.x81_c00344{left:555.000000px;}
.x6a_c00344{left:556.920000px;}
.xdf_c00344{left:559.500000px;}
.x112_c00344{left:564.000000px;}
.x29_c00344{left:565.500000px;}
.x58_c00344{left:567.000000px;}
.x33_c00344{left:568.500000px;}
.xca_c00344{left:571.080000px;}
.xaf_c00344{left:573.000000px;}
.x11b_c00344{left:576.420000px;}
.x108_c00344{left:577.500000px;}
.x76_c00344{left:580.080000px;}
.x4a_c00344{left:582.000000px;}
.xee_c00344{left:583.080000px;}
.x1d_c00344{left:584.580000px;}
.x11a_c00344{left:586.920000px;}
.x6b_c00344{left:588.000000px;}
.xf_c00344{left:589.080000px;}
.x103_c00344{left:591.000000px;}
.x82_c00344{left:592.500000px;}
.xd7_c00344{left:594.000000px;}
.xf7_c00344{left:597.000000px;}
.x77_c00344{left:598.500000px;}
.xd1_c00344{left:600.000000px;}
.x9e_c00344{left:601.080000px;}
.xa8_c00344{left:604.920000px;}
.x3d_c00344{left:606.420000px;}
.x4b_c00344{left:607.500000px;}
.xf2_c00344{left:608.580000px;}
.xf9_c00344{left:610.500000px;}
.x59_c00344{left:612.000000px;}
.x62_c00344{left:613.500000px;}
.x1e_c00344{left:615.420000px;}
.xe6_c00344{left:619.080000px;}
.x6c_c00344{left:620.580000px;}
.xef_c00344{left:622.920000px;}
.x4c_c00344{left:625.080000px;}
.xb0_c00344{left:627.000000px;}
.x9f_c00344{left:631.920000px;}
.x83_c00344{left:633.000000px;}
.x90_c00344{left:634.080000px;}
.x10_c00344{left:636.420000px;}
.x78_c00344{left:637.920000px;}
.xcb_c00344{left:639.000000px;}
.x2a_c00344{left:640.920000px;}
.x117_c00344{left:643.500000px;}
.xc3_c00344{left:645.000000px;}
.x104_c00344{left:646.080000px;}
.x1f_c00344{left:647.580000px;}
.x4d_c00344{left:649.500000px;}
.x3e_c00344{left:651.420000px;}
.x6d_c00344{left:652.920000px;}
.xfa_c00344{left:655.080000px;}
.xf3_c00344{left:657.000000px;}
.x63_c00344{left:658.920000px;}
.x8a_c00344{left:660.000000px;}
.xd2_c00344{left:661.920000px;}
.xc4_c00344{left:663.000000px;}
.x11_c00344{left:664.920000px;}
.x20_c00344{left:666.420000px;}
.xb7_c00344{left:668.580000px;}
.x34_c00344{left:670.500000px;}
.xfb_c00344{left:673.500000px;}
.xbb_c00344{left:675.000000px;}
.x113_c00344{left:676.500000px;}
.xd8_c00344{left:677.580000px;}
.x2b_c00344{left:679.500000px;}
.x4e_c00344{left:680.580000px;}
.xfe_c00344{left:684.000000px;}
.x64_c00344{left:685.920000px;}
.xea_c00344{left:687.000000px;}
.x3f_c00344{left:688.500000px;}
.x11c_c00344{left:690.000000px;}
.x21_c00344{left:691.500000px;}
.xa0_c00344{left:694.920000px;}
.xe0_c00344{left:700.500000px;}
.xfc_c00344{left:702.000000px;}
.x1_c00344{left:703.080000px;}
.x105_c00344{left:705.000000px;}
.x6e_c00344{left:706.920000px;}
.xd9_c00344{left:708.420000px;}
.xc5_c00344{left:712.080000px;}
.x40_c00344{left:714.000000px;}
.x12_c00344{left:715.080000px;}
.x91_c00344{left:717.000000px;}
.xb1_c00344{left:718.080000px;}
.xcc_c00344{left:721.500000px;}
.x8b_c00344{left:724.080000px;}
@media print{
.v1_c00344{vertical-align:-5.333333pt;}
.v0_c00344{vertical-align:0.000000pt;}
.ls0_c00344{letter-spacing:0.000000pt;}
.ws2_c00344{word-spacing:-15.012693pt;}
.ws0_c00344{word-spacing:-7.832291pt;}
.ws3_c00344{word-spacing:-6.099041pt;}
.ws1_c00344{word-spacing:-5.497444pt;}
.ws4_c00344{word-spacing:0.000000pt;}
._0_c00344{width:4.243958pt;}
.fs7_c00344{font-size:3.040000pt;}
.fs3_c00344{font-size:16.640000pt;}
.fs1_c00344{font-size:18.133333pt;}
.fs4_c00344{font-size:22.666667pt;}
.fs0_c00344{font-size:25.706667pt;}
.fs5_c00344{font-size:28.746667pt;}
.fs2_c00344{font-size:31.733333pt;}
.fs6_c00344{font-size:34.773333pt;}
.y0_c00344{bottom:0.000000pt;}
.yc7_c00344{bottom:223.773333pt;}
.yc8_c00344{bottom:225.693333pt;}
.yca_c00344{bottom:225.893333pt;}
.yc9_c00344{bottom:227.026667pt;}
.yc4_c00344{bottom:240.360000pt;}
.yc2_c00344{bottom:241.106667pt;}
.yc3_c00344{bottom:242.440000pt;}
.yc1_c00344{bottom:242.640000pt;}
.yc0_c00344{bottom:243.026667pt;}
.yc5_c00344{bottom:243.973333pt;}
.yc6_c00344{bottom:244.360000pt;}
.yb8_c00344{bottom:258.440000pt;}
.yb7_c00344{bottom:258.826667pt;}
.ybd_c00344{bottom:259.400000pt;}
.yb9_c00344{bottom:259.773333pt;}
.yba_c00344{bottom:260.360000pt;}
.ybc_c00344{bottom:260.560000pt;}
.ybb_c00344{bottom:260.733333pt;}
.ybf_c00344{bottom:261.306667pt;}
.ybe_c00344{bottom:261.693333pt;}
.yb5_c00344{bottom:276.160000pt;}
.yb4_c00344{bottom:277.106667pt;}
.yb6_c00344{bottom:279.026667pt;}
.yb3_c00344{bottom:293.693333pt;}
.yb1_c00344{bottom:294.440000pt;}
.yb2_c00344{bottom:296.360000pt;}
.yae_c00344{bottom:311.773333pt;}
.yad_c00344{bottom:313.306667pt;}
.yac_c00344{bottom:313.693333pt;}
.yb0_c00344{bottom:313.893333pt;}
.yaf_c00344{bottom:314.640000pt;}
.yab_c00344{bottom:329.106667pt;}
.ya9_c00344{bottom:331.026667pt;}
.yaa_c00344{bottom:331.226667pt;}
.ya8_c00344{bottom:347.773333pt;}
.ya6_c00344{bottom:348.360000pt;}
.ya7_c00344{bottom:349.693333pt;}
.ya5_c00344{bottom:365.106667pt;}
.ya3_c00344{bottom:365.893333pt;}
.ya4_c00344{bottom:366.640000pt;}
.ya2_c00344{bottom:367.026667pt;}
.ya1_c00344{bottom:382.440000pt;}
.y9f_c00344{bottom:383.226667pt;}
.y9e_c00344{bottom:384.360000pt;}
.ya0_c00344{bottom:385.306667pt;}
.y9c_c00344{bottom:398.640000pt;}
.y9b_c00344{bottom:399.773333pt;}
.y9d_c00344{bottom:400.560000pt;}
.y9a_c00344{bottom:401.306667pt;}
.y99_c00344{bottom:401.693333pt;}
.y97_c00344{bottom:417.106667pt;}
.y98_c00344{bottom:418.640000pt;}
.y95_c00344{bottom:419.026667pt;}
.y96_c00344{bottom:419.973333pt;}
.y91_c00344{bottom:434.440000pt;}
.y94_c00344{bottom:435.773333pt;}
.y93_c00344{bottom:435.973333pt;}
.y92_c00344{bottom:436.360000pt;}
.y8c_c00344{bottom:451.026667pt;}
.y8b_c00344{bottom:451.773333pt;}
.y8d_c00344{bottom:452.733333pt;}
.y8f_c00344{bottom:453.106667pt;}
.y90_c00344{bottom:453.693333pt;}
.y8e_c00344{bottom:453.893333pt;}
.y88_c00344{bottom:470.440000pt;}
.y89_c00344{bottom:471.026667pt;}
.y8a_c00344{bottom:472.360000pt;}
.y87_c00344{bottom:486.826667pt;}
.y85_c00344{bottom:487.773333pt;}
.y86_c00344{bottom:489.693333pt;}
.y82_c00344{bottom:505.106667pt;}
.y84_c00344{bottom:506.066667pt;}
.y83_c00344{bottom:507.026667pt;}
.y80_c00344{bottom:522.440000pt;}
.y81_c00344{bottom:523.973333pt;}
.y7f_c00344{bottom:524.360000pt;}
.y7e_c00344{bottom:539.773333pt;}
.y7d_c00344{bottom:541.693333pt;}
.y78_c00344{bottom:557.106667pt;}
.y79_c00344{bottom:558.440000pt;}
.y77_c00344{bottom:559.026667pt;}
.y7c_c00344{bottom:559.226667pt;}
.y7b_c00344{bottom:559.400000pt;}
.y76_c00344{bottom:559.973333pt;}
.y7a_c00344{bottom:560.360000pt;}
.y74_c00344{bottom:575.773333pt;}
.y75_c00344{bottom:576.560000pt;}
.y73_c00344{bottom:577.693333pt;}
.y72_c00344{bottom:595.026667pt;}
.y6c_c00344{bottom:610.440000pt;}
.y6f_c00344{bottom:610.640000pt;}
.y6e_c00344{bottom:611.400000pt;}
.y71_c00344{bottom:611.973333pt;}
.y6d_c00344{bottom:612.360000pt;}
.y70_c00344{bottom:613.306667pt;}
.y69_c00344{bottom:627.026667pt;}
.y66_c00344{bottom:627.773333pt;}
.y6a_c00344{bottom:628.733333pt;}
.y67_c00344{bottom:629.693333pt;}
.y68_c00344{bottom:629.893333pt;}
.y6b_c00344{bottom:630.640000pt;}
.y63_c00344{bottom:644.160000pt;}
.y65_c00344{bottom:644.360000pt;}
.y64_c00344{bottom:645.106667pt;}
.y62_c00344{bottom:647.026667pt;}
.y5e_c00344{bottom:662.440000pt;}
.y61_c00344{bottom:663.773333pt;}
.y5d_c00344{bottom:664.360000pt;}
.y5f_c00344{bottom:664.560000pt;}
.y60_c00344{bottom:665.693333pt;}
.y59_c00344{bottom:679.773333pt;}
.y5a_c00344{bottom:681.106667pt;}
.y57_c00344{bottom:681.306667pt;}
.y5b_c00344{bottom:681.893333pt;}
.y58_c00344{bottom:683.026667pt;}
.y5c_c00344{bottom:683.973333pt;}
.y53_c00344{bottom:698.066667pt;}
.y54_c00344{bottom:698.440000pt;}
.y56_c00344{bottom:699.226667pt;}
.y55_c00344{bottom:699.973333pt;}
.y51_c00344{bottom:700.360000pt;}
.y52_c00344{bottom:700.373333pt;}
.y4d_c00344{bottom:713.693333pt;}
.y50_c00344{bottom:716.560000pt;}
.y4e_c00344{bottom:717.306667pt;}
.y4f_c00344{bottom:717.693333pt;}
.y4c_c00344{bottom:733.106667pt;}
.y4b_c00344{bottom:733.893333pt;}
.y4a_c00344{bottom:735.026667pt;}
.y49_c00344{bottom:749.306667pt;}
.y45_c00344{bottom:750.440000pt;}
.y43_c00344{bottom:751.226667pt;}
.y47_c00344{bottom:751.773333pt;}
.y44_c00344{bottom:751.973333pt;}
.y42_c00344{bottom:752.360000pt;}
.y46_c00344{bottom:752.560000pt;}
.y48_c00344{bottom:753.693333pt;}
.y3b_c00344{bottom:766.640000pt;}
.y3c_c00344{bottom:767.773333pt;}
.y3d_c00344{bottom:768.560000pt;}
.y3f_c00344{bottom:768.933333pt;}
.y3e_c00344{bottom:769.693333pt;}
.y40_c00344{bottom:769.893333pt;}
.y41_c00344{bottom:770.640000pt;}
.y39_c00344{bottom:784.360000pt;}
.y35_c00344{bottom:785.306667pt;}
.y38_c00344{bottom:785.493333pt;}
.y3a_c00344{bottom:786.440000pt;}
.y34_c00344{bottom:787.026667pt;}
.y36_c00344{bottom:787.400000pt;}
.y37_c00344{bottom:788.360000pt;}
.y2f_c00344{bottom:801.693333pt;}
.y31_c00344{bottom:802.826667pt;}
.y32_c00344{bottom:803.773333pt;}
.y2e_c00344{bottom:804.360000pt;}
.y33_c00344{bottom:804.560000pt;}
.y30_c00344{bottom:805.693333pt;}
.y2b_c00344{bottom:819.026667pt;}
.y28_c00344{bottom:819.773333pt;}
.y2d_c00344{bottom:821.106667pt;}
.y27_c00344{bottom:821.693333pt;}
.y2c_c00344{bottom:821.893333pt;}
.y29_c00344{bottom:823.026667pt;}
.y2a_c00344{bottom:823.973333pt;}
.y25_c00344{bottom:836.360000pt;}
.y26_c00344{bottom:837.306667pt;}
.y23_c00344{bottom:838.440000pt;}
.y24_c00344{bottom:840.360000pt;}
.y20_c00344{bottom:855.773333pt;}
.y1f_c00344{bottom:856.560000pt;}
.y22_c00344{bottom:857.306667pt;}
.y21_c00344{bottom:857.693333pt;}
.y1e_c00344{bottom:857.893333pt;}
.y1b_c00344{bottom:872.360000pt;}
.y18_c00344{bottom:873.106667pt;}
.y1d_c00344{bottom:874.640000pt;}
.y1a_c00344{bottom:875.026667pt;}
.y19_c00344{bottom:875.973333pt;}
.y1c_c00344{bottom:876.360000pt;}
.y17_c00344{bottom:890.440000pt;}
.y16_c00344{bottom:891.400000pt;}
.y15_c00344{bottom:892.360000pt;}
.y10_c00344{bottom:906.066667pt;}
.y12_c00344{bottom:907.773333pt;}
.y11_c00344{bottom:909.306667pt;}
.yf_c00344{bottom:909.693333pt;}
.y13_c00344{bottom:909.893333pt;}
.y14_c00344{bottom:910.640000pt;}
.y9_c00344{bottom:924.360000pt;}
.yb_c00344{bottom:925.693333pt;}
.yd_c00344{bottom:926.440000pt;}
.ya_c00344{bottom:927.026667pt;}
.yc_c00344{bottom:927.226667pt;}
.y8_c00344{bottom:927.973333pt;}
.ye_c00344{bottom:928.360000pt;}
.y3_c00344{bottom:942.440000pt;}
.y5_c00344{bottom:943.773333pt;}
.y4_c00344{bottom:944.560000pt;}
.y7_c00344{bottom:945.306667pt;}
.y6_c00344{bottom:945.693333pt;}
.y1_c00344{bottom:977.693333pt;}
.y2_c00344{bottom:979.600000pt;}
.h8_c00344{height:3.739141pt;}
.h4_c00344{height:20.466875pt;}
.h2_c00344{height:22.303646pt;}
.h5_c00344{height:27.879557pt;}
.h1_c00344{height:31.618698pt;}
.h6_c00344{height:35.357839pt;}
.h3_c00344{height:39.031380pt;}
.h7_c00344{height:42.770521pt;}
.h0_c00344{height:1186.666667pt;}
.w0_c00344{width:782.666667pt;}
.x0_c00344{left:0.000000pt;}
.x13_c00344{left:133.333333pt;}
.x3_c00344{left:134.293333pt;}
.x92_c00344{left:136.000000pt;}
.xe7_c00344{left:137.133333pt;}
.x98_c00344{left:147.240000pt;}
.x110_c00344{left:148.960000pt;}
.x65_c00344{left:152.373333pt;}
.xa1_c00344{left:153.333333pt;}
.x8c_c00344{left:155.040000pt;}
.x4f_c00344{left:156.000000pt;}
.x14_c00344{left:157.333333pt;}
.xd3_c00344{left:158.666667pt;}
.x10a_c00344{left:160.000000pt;}
.x41_c00344{left:162.666667pt;}
.x84_c00344{left:168.373333pt;}
.x4_c00344{left:169.333333pt;}
.x6f_c00344{left:173.333333pt;}
.xa9_c00344{left:176.373333pt;}
.x5a_c00344{left:177.333333pt;}
.x5_c00344{left:178.666667pt;}
.xb2_c00344{left:180.960000pt;}
.xc6_c00344{left:183.040000pt;}
.xb8_c00344{left:186.666667pt;}
.x35_c00344{left:190.293333pt;}
.x42_c00344{left:191.626667pt;}
.x2c_c00344{left:192.960000pt;}
.x50_c00344{left:194.666667pt;}
.x6_c00344{left:196.000000pt;}
.xf8_c00344{left:197.706667pt;}
.x93_c00344{left:198.666667pt;}
.x22_c00344{left:200.373333pt;}
.x106_c00344{left:203.040000pt;}
.x85_c00344{left:204.000000pt;}
.xb9_c00344{left:205.706667pt;}
.x2d_c00344{left:210.666667pt;}
.xeb_c00344{left:212.000000pt;}
.xff_c00344{left:214.666667pt;}
.x94_c00344{left:215.626667pt;}
.x66_c00344{left:217.333333pt;}
.x109_c00344{left:219.040000pt;}
.xd4_c00344{left:220.373333pt;}
.xaa_c00344{left:221.333333pt;}
.x5b_c00344{left:222.666667pt;}
.xa2_c00344{left:224.000000pt;}
.x51_c00344{left:224.960000pt;}
.x99_c00344{left:228.000000pt;}
.xba_c00344{left:231.040000pt;}
.xbc_c00344{left:232.000000pt;}
.xf4_c00344{left:232.960000pt;}
.x23_c00344{left:234.666667pt;}
.x7_c00344{left:236.373333pt;}
.x43_c00344{left:237.333333pt;}
.x10b_c00344{left:238.666667pt;}
.xcd_c00344{left:242.666667pt;}
.xc7_c00344{left:244.000000pt;}
.x79_c00344{left:245.333333pt;}
.xe8_c00344{left:247.626667pt;}
.xbd_c00344{left:249.706667pt;}
.xe1_c00344{left:250.666667pt;}
.x36_c00344{left:252.000000pt;}
.x115_c00344{left:254.093333pt;}
.x5c_c00344{left:255.040000pt;}
.x9a_c00344{left:256.000000pt;}
.x15_c00344{left:259.040000pt;}
.x37_c00344{left:261.333333pt;}
.xab_c00344{left:262.293333pt;}
.x70_c00344{left:264.373333pt;}
.x8_c00344{left:266.666667pt;}
.x2e_c00344{left:268.960000pt;}
.x8d_c00344{left:272.000000pt;}
.x95_c00344{left:273.333333pt;}
.xbe_c00344{left:274.666667pt;}
.xce_c00344{left:276.000000pt;}
.x24_c00344{left:277.333333pt;}
.x52_c00344{left:279.040000pt;}
.x7a_c00344{left:281.706667pt;}
.x67_c00344{left:282.666667pt;}
.x9_c00344{left:284.373333pt;}
.x96_c00344{left:285.706667pt;}
.xec_c00344{left:289.333333pt;}
.x44_c00344{left:290.293333pt;}
.x86_c00344{left:292.000000pt;}
.xd5_c00344{left:293.333333pt;}
.xe2_c00344{left:295.040000pt;}
.x71_c00344{left:296.960000pt;}
.x107_c00344{left:298.666667pt;}
.x16_c00344{left:300.000000pt;}
.x25_c00344{left:301.333333pt;}
.xdd_c00344{left:303.626667pt;}
.xf0_c00344{left:305.706667pt;}
.xf5_c00344{left:309.706667pt;}
.x2f_c00344{left:310.666667pt;}
.xc8_c00344{left:312.373333pt;}
.xa3_c00344{left:313.333333pt;}
.x10c_c00344{left:315.040000pt;}
.x7b_c00344{left:316.760000pt;}
.x45_c00344{left:317.706667pt;}
.x72_c00344{left:318.666667pt;}
.xbf_c00344{left:320.373333pt;}
.xfd_c00344{left:321.333333pt;}
.x5d_c00344{left:323.040000pt;}
.xa_c00344{left:324.000000pt;}
.x53_c00344{left:327.626667pt;}
.x38_c00344{left:329.706667pt;}
.x17_c00344{left:331.626667pt;}
.x97_c00344{left:334.666667pt;}
.xda_c00344{left:336.000000pt;}
.x10d_c00344{left:340.000000pt;}
.x18_c00344{left:342.666667pt;}
.x7c_c00344{left:344.000000pt;}
.x54_c00344{left:346.293333pt;}
.xc0_c00344{left:348.000000pt;}
.xe9_c00344{left:349.133333pt;}
.xac_c00344{left:350.293333pt;}
.x73_c00344{left:352.000000pt;}
.x39_c00344{left:353.706667pt;}
.xa4_c00344{left:354.666667pt;}
.xe3_c00344{left:356.000000pt;}
.x2_c00344{left:357.333333pt;}
.x19_c00344{left:360.373333pt;}
.x5e_c00344{left:361.333333pt;}
.x46_c00344{left:363.040000pt;}
.xde_c00344{left:364.960000pt;}
.x30_c00344{left:366.293333pt;}
.x74_c00344{left:368.960000pt;}
.xa5_c00344{left:371.040000pt;}
.x7d_c00344{left:372.960000pt;}
.x87_c00344{left:374.666667pt;}
.xb3_c00344{left:377.706667pt;}
.x5f_c00344{left:378.666667pt;}
.x26_c00344{left:380.000000pt;}
.x55_c00344{left:381.706667pt;}
.x10e_c00344{left:382.666667pt;}
.xed_c00344{left:384.000000pt;}
.x47_c00344{left:385.333333pt;}
.x1a_c00344{left:386.666667pt;}
.x75_c00344{left:388.373333pt;}
.xb_c00344{left:390.293333pt;}
.xe4_c00344{left:392.000000pt;}
.xcf_c00344{left:393.333333pt;}
.xf6_c00344{left:395.040000pt;}
.x31_c00344{left:396.000000pt;}
.xa6_c00344{left:396.960000pt;}
.x10f_c00344{left:400.000000pt;}
.x7e_c00344{left:401.333333pt;}
.x60_c00344{left:402.293333pt;}
.xc9_c00344{left:403.626667pt;}
.xc_c00344{left:407.240000pt;}
.xdb_c00344{left:410.666667pt;}
.x3a_c00344{left:412.373333pt;}
.x100_c00344{left:413.333333pt;}
.x1b_c00344{left:414.293333pt;}
.xad_c00344{left:416.573333pt;}
.xa7_c00344{left:417.706667pt;}
.x68_c00344{left:418.666667pt;}
.x48_c00344{left:422.666667pt;}
.x111_c00344{left:425.333333pt;}
.x8e_c00344{left:426.666667pt;}
.xb4_c00344{left:428.000000pt;}
.x116_c00344{left:429.333333pt;}
.x118_c00344{left:430.666667pt;}
.x9b_c00344{left:432.000000pt;}
.x69_c00344{left:433.333333pt;}
.xd6_c00344{left:434.666667pt;}
.x3b_c00344{left:436.000000pt;}
.x7f_c00344{left:437.706667pt;}
.x101_c00344{left:439.040000pt;}
.x32_c00344{left:441.333333pt;}
.xd_c00344{left:443.040000pt;}
.x9c_c00344{left:445.706667pt;}
.x27_c00344{left:446.666667pt;}
.xe5_c00344{left:447.626667pt;}
.x56_c00344{left:448.960000pt;}
.x114_c00344{left:450.666667pt;}
.x119_c00344{left:451.800000pt;}
.x88_c00344{left:453.333333pt;}
.xb5_c00344{left:458.293333pt;}
.x1c_c00344{left:460.000000pt;}
.x8f_c00344{left:461.333333pt;}
.x102_c00344{left:462.666667pt;}
.x61_c00344{left:465.333333pt;}
.x28_c00344{left:466.666667pt;}
.xae_c00344{left:467.626667pt;}
.xf1_c00344{left:468.960000pt;}
.x80_c00344{left:471.626667pt;}
.xdc_c00344{left:473.333333pt;}
.xc1_c00344{left:474.666667pt;}
.x3c_c00344{left:476.000000pt;}
.xb6_c00344{left:477.706667pt;}
.x57_c00344{left:479.040000pt;}
.x9d_c00344{left:480.373333pt;}
.x49_c00344{left:485.706667pt;}
.xd0_c00344{left:486.666667pt;}
.xe_c00344{left:489.706667pt;}
.x89_c00344{left:490.666667pt;}
.xc2_c00344{left:492.000000pt;}
.x81_c00344{left:493.333333pt;}
.x6a_c00344{left:495.040000pt;}
.xdf_c00344{left:497.333333pt;}
.x112_c00344{left:501.333333pt;}
.x29_c00344{left:502.666667pt;}
.x58_c00344{left:504.000000pt;}
.x33_c00344{left:505.333333pt;}
.xca_c00344{left:507.626667pt;}
.xaf_c00344{left:509.333333pt;}
.x11b_c00344{left:512.373333pt;}
.x108_c00344{left:513.333333pt;}
.x76_c00344{left:515.626667pt;}
.x4a_c00344{left:517.333333pt;}
.xee_c00344{left:518.293333pt;}
.x1d_c00344{left:519.626667pt;}
.x11a_c00344{left:521.706667pt;}
.x6b_c00344{left:522.666667pt;}
.xf_c00344{left:523.626667pt;}
.x103_c00344{left:525.333333pt;}
.x82_c00344{left:526.666667pt;}
.xd7_c00344{left:528.000000pt;}
.xf7_c00344{left:530.666667pt;}
.x77_c00344{left:532.000000pt;}
.xd1_c00344{left:533.333333pt;}
.x9e_c00344{left:534.293333pt;}
.xa8_c00344{left:537.706667pt;}
.x3d_c00344{left:539.040000pt;}
.x4b_c00344{left:540.000000pt;}
.xf2_c00344{left:540.960000pt;}
.xf9_c00344{left:542.666667pt;}
.x59_c00344{left:544.000000pt;}
.x62_c00344{left:545.333333pt;}
.x1e_c00344{left:547.040000pt;}
.xe6_c00344{left:550.293333pt;}
.x6c_c00344{left:551.626667pt;}
.xef_c00344{left:553.706667pt;}
.x4c_c00344{left:555.626667pt;}
.xb0_c00344{left:557.333333pt;}
.x9f_c00344{left:561.706667pt;}
.x83_c00344{left:562.666667pt;}
.x90_c00344{left:563.626667pt;}
.x10_c00344{left:565.706667pt;}
.x78_c00344{left:567.040000pt;}
.xcb_c00344{left:568.000000pt;}
.x2a_c00344{left:569.706667pt;}
.x117_c00344{left:572.000000pt;}
.xc3_c00344{left:573.333333pt;}
.x104_c00344{left:574.293333pt;}
.x1f_c00344{left:575.626667pt;}
.x4d_c00344{left:577.333333pt;}
.x3e_c00344{left:579.040000pt;}
.x6d_c00344{left:580.373333pt;}
.xfa_c00344{left:582.293333pt;}
.xf3_c00344{left:584.000000pt;}
.x63_c00344{left:585.706667pt;}
.x8a_c00344{left:586.666667pt;}
.xd2_c00344{left:588.373333pt;}
.xc4_c00344{left:589.333333pt;}
.x11_c00344{left:591.040000pt;}
.x20_c00344{left:592.373333pt;}
.xb7_c00344{left:594.293333pt;}
.x34_c00344{left:596.000000pt;}
.xfb_c00344{left:598.666667pt;}
.xbb_c00344{left:600.000000pt;}
.x113_c00344{left:601.333333pt;}
.xd8_c00344{left:602.293333pt;}
.x2b_c00344{left:604.000000pt;}
.x4e_c00344{left:604.960000pt;}
.xfe_c00344{left:608.000000pt;}
.x64_c00344{left:609.706667pt;}
.xea_c00344{left:610.666667pt;}
.x3f_c00344{left:612.000000pt;}
.x11c_c00344{left:613.333333pt;}
.x21_c00344{left:614.666667pt;}
.xa0_c00344{left:617.706667pt;}
.xe0_c00344{left:622.666667pt;}
.xfc_c00344{left:624.000000pt;}
.x1_c00344{left:624.960000pt;}
.x105_c00344{left:626.666667pt;}
.x6e_c00344{left:628.373333pt;}
.xd9_c00344{left:629.706667pt;}
.xc5_c00344{left:632.960000pt;}
.x40_c00344{left:634.666667pt;}
.x12_c00344{left:635.626667pt;}
.x91_c00344{left:637.333333pt;}
.xb1_c00344{left:638.293333pt;}
.xcc_c00344{left:641.333333pt;}
.x8b_c00344{left:643.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_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_6c30cdabcac3138f0bf64a93.woff2')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me3_c00345{transform:matrix(0.333206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333206,0.000000,0.000000,0.250000,0,0);}
.m2_c00345{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m71_c00345{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m88_c00345{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.m3f_c00345{transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);}
.m99_c00345{transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);}
.ma5_c00345{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_c00345{transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);}
.m4f_c00345{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.m84_c00345{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m61_c00345{transform:matrix(0.365126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365126,0.000000,0.000000,0.250000,0,0);}
.m0_c00345{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m57_c00345{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mc4_c00345{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m60_c00345{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m38_c00345{transform:matrix(0.372449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372449,0.000000,0.000000,0.250000,0,0);}
.m8c_c00345{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.m52_c00345{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mab_c00345{transform:matrix(0.376534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376534,0.000000,0.000000,0.250000,0,0);}
.m29_c00345{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m4_c00345{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m3c_c00345{transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);}
.mb8_c00345{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m2b_c00345{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m70_c00345{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m24_c00345{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.mb6_c00345{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m87_c00345{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m4e_c00345{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m7e_c00345{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m59_c00345{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m54_c00345{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m58_c00345{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.mbc_c00345{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.mde_c00345{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m7_c00345{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m31_c00345{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m95_c00345{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mc0_c00345{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.m17_c00345{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m4c_c00345{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mfd_c00345{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mb2_c00345{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m69_c00345{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mbd_c00345{transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);}
.m98_c00345{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m35_c00345{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m73_c00345{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mff_c00345{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m11_c00345{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m19_c00345{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.mdf_c00345{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m41_c00345{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mc6_c00345{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m3_c00345{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m9c_c00345{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.md5_c00345{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m44_c00345{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mba_c00345{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.md4_c00345{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m20_c00345{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m6a_c00345{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.ma9_c00345{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mf7_c00345{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.me1_c00345{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m2a_c00345{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mef_c00345{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.me5_c00345{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.mce_c00345{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m42_c00345{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m75_c00345{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m5e_c00345{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.mda_c00345{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m93_c00345{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.mdb_c00345{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mb4_c00345{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.ma1_c00345{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.ma2_c00345{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m86_c00345{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m4d_c00345{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.mc3_c00345{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.mf6_c00345{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.mc9_c00345{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.ma4_c00345{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.mbb_c00345{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.mb0_c00345{transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);}
.md2_c00345{transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);}
.mcb_c00345{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m6e_c00345{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m96_c00345{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.md6_c00345{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m77_c00345{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.mad_c00345{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m39_c00345{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m53_c00345{transform:matrix(0.462430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462430,0.000000,0.000000,0.250000,0,0);}
.mb9_c00345{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.mf3_c00345{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.mf2_c00345{transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);}
.m101_c00345{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.mbf_c00345{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m7d_c00345{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.mb7_c00345{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.mec_c00345{transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);}
.maf_c00345{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.me7_c00345{transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);}
.mca_c00345{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m15_c00345{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m1b_c00345{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.mf_c00345{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m48_c00345{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m33_c00345{transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);}
.m85_c00345{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m6f_c00345{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.me9_c00345{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m8e_c00345{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m3a_c00345{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.md9_c00345{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m30_c00345{transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);}
.m9f_c00345{transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);}
.m1e_c00345{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);}
.m2e_c00345{transform:matrix(0.502319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502319,0.000000,0.000000,0.250000,0,0);}
.m14_c00345{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m5c_c00345{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m46_c00345{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m49_c00345{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.maa_c00345{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m90_c00345{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m7f_c00345{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mf9_c00345{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m9_c00345{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mb3_c00345{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m6b_c00345{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m22_c00345{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m21_c00345{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mfa_c00345{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m66_c00345{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m74_c00345{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m82_c00345{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m18_c00345{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m65_c00345{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m6c_c00345{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m97_c00345{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mf4_c00345{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m83_c00345{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mf1_c00345{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.md_c00345{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.me0_c00345{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m3b_c00345{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m91_c00345{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.ma7_c00345{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mf8_c00345{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m4b_c00345{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m10_c00345{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.md1_c00345{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m64_c00345{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mb_c00345{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m56_c00345{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m5d_c00345{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m68_c00345{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m63_c00345{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.mcc_c00345{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m6_c00345{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m36_c00345{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.mac_c00345{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m5b_c00345{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m50_c00345{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m80_c00345{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m23_c00345{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mdd_c00345{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mc_c00345{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m92_c00345{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.mdc_c00345{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m9d_c00345{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m13_c00345{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mc5_c00345{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m67_c00345{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mae_c00345{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m1d_c00345{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m5a_c00345{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m9a_c00345{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mfe_c00345{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m5f_c00345{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m4a_c00345{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.ma8_c00345{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m6d_c00345{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m27_c00345{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m47_c00345{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m81_c00345{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);}
.m62_c00345{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m8f_c00345{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.med_c00345{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mee_c00345{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m28_c00345{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m8d_c00345{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m55_c00345{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m1f_c00345{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m34_c00345{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m3e_c00345{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m9b_c00345{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m79_c00345{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.mc7_c00345{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m7a_c00345{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.me8_c00345{transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);}
.m7c_c00345{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m40_c00345{transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);}
.ma3_c00345{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.mc1_c00345{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.md3_c00345{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m7b_c00345{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.mcf_c00345{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m8a_c00345{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m94_c00345{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m37_c00345{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);}
.mfc_c00345{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.md8_c00345{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m76_c00345{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mb1_c00345{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m78_c00345{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.me2_c00345{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.mcd_c00345{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m1a_c00345{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.ma0_c00345{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m1_c00345{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m5_c00345{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m1c_c00345{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mf5_c00345{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.mf0_c00345{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.md0_c00345{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m2f_c00345{transform:matrix(0.630705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630705,0.000000,0.000000,0.250000,0,0);}
.m26_c00345{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m72_c00345{transform:matrix(0.636411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636411,0.000000,0.000000,0.250000,0,0);}
.ma6_c00345{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.meb_c00345{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.md7_c00345{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m2c_c00345{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m12_c00345{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m100_c00345{transform:matrix(0.673529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673529,0.000000,0.000000,0.250000,0,0);}
.m3d_c00345{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.m89_c00345{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m8b_c00345{transform:matrix(0.696324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696324,0.000000,0.000000,0.250000,0,0);}
.m45_c00345{transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);}
.ma_c00345{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m16_c00345{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m51_c00345{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.mc8_c00345{transform:matrix(0.759615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.759615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.759615,0.000000,0.000000,0.250000,0,0);}
.m25_c00345{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m9e_c00345{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.me_c00345{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mbe_c00345{transform:matrix(0.770833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770833,0.000000,0.000000,0.250000,0,0);}
.mfb_c00345{transform:matrix(0.774840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.774840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.774840,0.000000,0.000000,0.250000,0,0);}
.m8_c00345{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mc2_c00345{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m2d_c00345{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.mb5_c00345{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mea_c00345{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.me4_c00345{transform:matrix(1.753788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.753788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.753788,0.000000,0.000000,0.250000,0,0);}
.me6_c00345{transform:matrix(2.003788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.003788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.003788,0.000000,0.000000,0.250000,0,0);}
.m43_c00345{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws3_c00345{word-spacing:-8.678629px;}
.ws4_c00345{word-spacing:-7.448345px;}
.ws1_c00345{word-spacing:-6.409900px;}
.ws2_c00345{word-spacing:-6.400641px;}
.ws0_c00345{word-spacing:-6.029280px;}
.ws5_c00345{word-spacing:0.000000px;}
.fc0_c00345{color:transparent;}
.fs6_c00345{font-size:3.420000px;}
.fs8_c00345{font-size:11.880000px;}
.fs4_c00345{font-size:18.720000px;}
.fs1_c00345{font-size:20.400000px;}
.fs2_c00345{font-size:25.500000px;}
.fs3_c00345{font-size:28.920000px;}
.fs5_c00345{font-size:32.340000px;}
.fs0_c00345{font-size:35.700000px;}
.fs7_c00345{font-size:39.120000px;}
.y0_c00345{bottom:0.000000px;}
.yca_c00345{bottom:248.745000px;}
.ycc_c00345{bottom:249.825000px;}
.yc8_c00345{bottom:250.905000px;}
.yc9_c00345{bottom:251.130000px;}
.ycb_c00345{bottom:251.970000px;}
.yc3_c00345{bottom:268.245000px;}
.yc2_c00345{bottom:269.970000px;}
.yc4_c00345{bottom:270.405000px;}
.yc6_c00345{bottom:270.630000px;}
.yc7_c00345{bottom:271.470000px;}
.yc5_c00345{bottom:271.905000px;}
.yc1_c00345{bottom:286.905000px;}
.ybd_c00345{bottom:288.825000px;}
.yc0_c00345{bottom:289.245000px;}
.ybe_c00345{bottom:289.905000px;}
.ybf_c00345{bottom:291.405000px;}
.yb8_c00345{bottom:308.745000px;}
.yba_c00345{bottom:309.825000px;}
.yb9_c00345{bottom:310.905000px;}
.ybb_c00345{bottom:311.130000px;}
.ybc_c00345{bottom:311.970000px;}
.yb4_c00345{bottom:327.405000px;}
.yb6_c00345{bottom:328.245000px;}
.yb5_c00345{bottom:329.130000px;}
.yb3_c00345{bottom:329.775000px;}
.yb7_c00345{bottom:329.970000px;}
.yb1_c00345{bottom:330.405000px;}
.yb2_c00345{bottom:331.470000px;}
.yac_c00345{bottom:346.905000px;}
.yae_c00345{bottom:347.745000px;}
.yad_c00345{bottom:347.970000px;}
.yb0_c00345{bottom:348.630000px;}
.yab_c00345{bottom:349.275000px;}
.yaa_c00345{bottom:349.905000px;}
.yaf_c00345{bottom:350.130000px;}
.ya3_c00345{bottom:366.180000px;}
.ya6_c00345{bottom:367.245000px;}
.ya8_c00345{bottom:367.470000px;}
.ya7_c00345{bottom:368.745000px;}
.ya2_c00345{bottom:368.970000px;}
.ya5_c00345{bottom:369.405000px;}
.ya9_c00345{bottom:369.630000px;}
.ya4_c00345{bottom:370.275000px;}
.ya0_c00345{bottom:385.905000px;}
.ya1_c00345{bottom:388.050000px;}
.y9e_c00345{bottom:388.245000px;}
.y9f_c00345{bottom:390.405000px;}
.y9a_c00345{bottom:407.745000px;}
.y9b_c00345{bottom:408.630000px;}
.y9c_c00345{bottom:409.905000px;}
.y9d_c00345{bottom:410.970000px;}
.y98_c00345{bottom:425.970000px;}
.y95_c00345{bottom:427.245000px;}
.y99_c00345{bottom:428.325000px;}
.y94_c00345{bottom:429.405000px;}
.y96_c00345{bottom:429.630000px;}
.y97_c00345{bottom:430.470000px;}
.y93_c00345{bottom:445.905000px;}
.y91_c00345{bottom:446.745000px;}
.y92_c00345{bottom:447.825000px;}
.y8f_c00345{bottom:448.905000px;}
.y90_c00345{bottom:449.130000px;}
.y8c_c00345{bottom:466.245000px;}
.y8e_c00345{bottom:467.130000px;}
.y8a_c00345{bottom:467.745000px;}
.y89_c00345{bottom:468.405000px;}
.y8b_c00345{bottom:468.630000px;}
.y8d_c00345{bottom:469.470000px;}
.y88_c00345{bottom:484.905000px;}
.y87_c00345{bottom:487.245000px;}
.y85_c00345{bottom:488.130000px;}
.y86_c00345{bottom:488.325000px;}
.y84_c00345{bottom:489.405000px;}
.y83_c00345{bottom:506.745000px;}
.y81_c00345{bottom:507.630000px;}
.y82_c00345{bottom:507.825000px;}
.y80_c00345{bottom:508.905000px;}
.y7f_c00345{bottom:509.970000px;}
.y7e_c00345{bottom:526.245000px;}
.y7d_c00345{bottom:528.405000px;}
.y79_c00345{bottom:544.905000px;}
.y78_c00345{bottom:545.745000px;}
.y7b_c00345{bottom:546.630000px;}
.y7c_c00345{bottom:546.825000px;}
.y7a_c00345{bottom:547.905000px;}
.y77_c00345{bottom:564.405000px;}
.y74_c00345{bottom:565.245000px;}
.y76_c00345{bottom:566.130000px;}
.y73_c00345{bottom:566.325000px;}
.y75_c00345{bottom:566.970000px;}
.y72_c00345{bottom:567.405000px;}
.y6b_c00345{bottom:583.905000px;}
.y70_c00345{bottom:584.745000px;}
.y6e_c00345{bottom:585.180000px;}
.y71_c00345{bottom:585.825000px;}
.y6c_c00345{bottom:586.905000px;}
.y6d_c00345{bottom:587.130000px;}
.y6f_c00345{bottom:588.405000px;}
.y68_c00345{bottom:604.245000px;}
.y6a_c00345{bottom:605.745000px;}
.y67_c00345{bottom:606.405000px;}
.y69_c00345{bottom:607.470000px;}
.y63_c00345{bottom:623.745000px;}
.y65_c00345{bottom:624.825000px;}
.y62_c00345{bottom:625.905000px;}
.y64_c00345{bottom:626.130000px;}
.y66_c00345{bottom:626.970000px;}
.y61_c00345{bottom:643.680000px;}
.y5f_c00345{bottom:644.745000px;}
.y5d_c00345{bottom:645.405000px;}
.y60_c00345{bottom:645.630000px;}
.y5e_c00345{bottom:646.905000px;}
.y5c_c00345{bottom:662.745000px;}
.y57_c00345{bottom:664.245000px;}
.y58_c00345{bottom:664.470000px;}
.y59_c00345{bottom:665.550000px;}
.y5b_c00345{bottom:666.405000px;}
.y5a_c00345{bottom:666.630000px;}
.y56_c00345{bottom:683.745000px;}
.y54_c00345{bottom:685.905000px;}
.y55_c00345{bottom:686.970000px;}
.y52_c00345{bottom:703.245000px;}
.y53_c00345{bottom:704.130000px;}
.y51_c00345{bottom:704.325000px;}
.y50_c00345{bottom:705.405000px;}
.y4c_c00345{bottom:722.745000px;}
.y4e_c00345{bottom:724.905000px;}
.y4d_c00345{bottom:725.130000px;}
.y4f_c00345{bottom:725.970000px;}
.y4a_c00345{bottom:742.245000px;}
.y4b_c00345{bottom:743.745000px;}
.y47_c00345{bottom:744.405000px;}
.y48_c00345{bottom:745.905000px;}
.y49_c00345{bottom:745.920000px;}
.y45_c00345{bottom:763.905000px;}
.y46_c00345{bottom:765.405000px;}
.y43_c00345{bottom:782.745000px;}
.y40_c00345{bottom:783.405000px;}
.y44_c00345{bottom:783.825000px;}
.y42_c00345{bottom:784.470000px;}
.y41_c00345{bottom:784.905000px;}
.y3e_c00345{bottom:802.245000px;}
.y3f_c00345{bottom:804.405000px;}
.y3d_c00345{bottom:821.745000px;}
.y3c_c00345{bottom:822.825000px;}
.y3b_c00345{bottom:823.470000px;}
.y3a_c00345{bottom:823.905000px;}
.y38_c00345{bottom:841.245000px;}
.y39_c00345{bottom:842.745000px;}
.y36_c00345{bottom:843.405000px;}
.y37_c00345{bottom:843.420000px;}
.y35_c00345{bottom:860.745000px;}
.y34_c00345{bottom:861.825000px;}
.y33_c00345{bottom:862.245000px;}
.y30_c00345{bottom:862.905000px;}
.y31_c00345{bottom:863.130000px;}
.y32_c00345{bottom:864.420000px;}
.y2d_c00345{bottom:881.745000px;}
.y2f_c00345{bottom:882.825000px;}
.y2e_c00345{bottom:883.920000px;}
.y26_c00345{bottom:899.745000px;}
.y2b_c00345{bottom:900.405000px;}
.y2c_c00345{bottom:900.825000px;}
.y29_c00345{bottom:901.050000px;}
.y27_c00345{bottom:901.245000px;}
.y2a_c00345{bottom:901.905000px;}
.y28_c00345{bottom:903.420000px;}
.y23_c00345{bottom:925.470000px;}
.y21_c00345{bottom:926.325000px;}
.y25_c00345{bottom:926.550000px;}
.y22_c00345{bottom:927.405000px;}
.y24_c00345{bottom:928.050000px;}
.y20_c00345{bottom:928.470000px;}
.y1f_c00345{bottom:945.825000px;}
.y1d_c00345{bottom:947.970000px;}
.y1e_c00345{bottom:949.050000px;}
.y1c_c00345{bottom:965.745000px;}
.y1a_c00345{bottom:966.825000px;}
.y1b_c00345{bottom:967.905000px;}
.y18_c00345{bottom:996.405000px;}
.y15_c00345{bottom:998.745000px;}
.y19_c00345{bottom:999.630000px;}
.y17_c00345{bottom:1000.050000px;}
.y16_c00345{bottom:1000.470000px;}
.y14_c00345{bottom:1000.905000px;}
.y10_c00345{bottom:1016.325000px;}
.y13_c00345{bottom:1016.970000px;}
.yf_c00345{bottom:1018.245000px;}
.y12_c00345{bottom:1019.130000px;}
.yd_c00345{bottom:1019.325000px;}
.y11_c00345{bottom:1019.970000px;}
.ye_c00345{bottom:1020.405000px;}
.ya_c00345{bottom:1036.905000px;}
.y8_c00345{bottom:1037.745000px;}
.yc_c00345{bottom:1039.470000px;}
.y7_c00345{bottom:1039.905000px;}
.yb_c00345{bottom:1040.130000px;}
.y9_c00345{bottom:1040.970000px;}
.y3_c00345{bottom:1057.245000px;}
.y6_c00345{bottom:1058.130000px;}
.y5_c00345{bottom:1059.405000px;}
.y4_c00345{bottom:1060.470000px;}
.y2_c00345{bottom:1097.550000px;}
.y1_c00345{bottom:1097.745000px;}
.h7_c00345{height:4.206533px;}
.h9_c00345{height:14.612168px;}
.h5_c00345{height:23.025234px;}
.h2_c00345{height:25.091602px;}
.h3_c00345{height:31.364502px;}
.h4_c00345{height:35.571035px;}
.h6_c00345{height:39.777568px;}
.h1_c00345{height:43.910303px;}
.h8_c00345{height:48.116836px;}
.h0_c00345{height:1335.000000px;}
.w0_c00345{width:880.500000px;}
.x0_c00345{left:0.000000px;}
.x1_c00345{left:151.500000px;}
.x3_c00345{left:152.580000px;}
.x40_c00345{left:164.580000px;}
.xf1_c00345{left:166.500000px;}
.x49_c00345{left:168.420000px;}
.x53_c00345{left:169.500000px;}
.xc4_c00345{left:170.580000px;}
.xd1_c00345{left:172.920000px;}
.x81_c00345{left:174.000000px;}
.xa4_c00345{left:175.920000px;}
.x4_c00345{left:183.000000px;}
.xf7_c00345{left:184.080000px;}
.x12_c00345{left:186.420000px;}
.x70_c00345{left:189.420000px;}
.x106_c00345{left:190.500000px;}
.xd6_c00345{left:192.000000px;}
.x2d_c00345{left:193.500000px;}
.xb5_c00345{left:196.500000px;}
.xab_c00345{left:197.580000px;}
.x82_c00345{left:199.500000px;}
.x1f_c00345{left:201.000000px;}
.xe5_c00345{left:203.145000px;}
.x5_c00345{left:205.500000px;}
.x4a_c00345{left:208.920000px;}
.xc5_c00345{left:211.080000px;}
.x2e_c00345{left:212.580000px;}
.x13_c00345{left:214.920000px;}
.x62_c00345{left:216.000000px;}
.x20_c00345{left:219.420000px;}
.x76_c00345{left:220.500000px;}
.x68_c00345{left:223.500000px;}
.xbb_c00345{left:224.580000px;}
.xc0_c00345{left:229.500000px;}
.x2f_c00345{left:234.000000px;}
.xa5_c00345{left:235.500000px;}
.x6_c00345{left:237.000000px;}
.xed_c00345{left:238.500000px;}
.xdb_c00345{left:240.645000px;}
.x21_c00345{left:244.920000px;}
.x41_c00345{left:246.420000px;}
.x77_c00345{left:247.500000px;}
.x57_c00345{left:249.000000px;}
.xf2_c00345{left:251.145000px;}
.xaf_c00345{left:252.420000px;}
.x103_c00345{left:253.920000px;}
.x69_c00345{left:255.000000px;}
.x83_c00345{left:256.080000px;}
.xd2_c00345{left:257.145000px;}
.x54_c00345{left:259.500000px;}
.x5c_c00345{left:261.000000px;}
.xdc_c00345{left:262.500000px;}
.x7_c00345{left:264.420000px;}
.x9b_c00345{left:265.500000px;}
.x93_c00345{left:267.000000px;}
.x4b_c00345{left:268.500000px;}
.xc6_c00345{left:271.080000px;}
.x71_c00345{left:272.580000px;}
.xbc_c00345{left:274.500000px;}
.x22_c00345{left:277.500000px;}
.x30_c00345{left:280.920000px;}
.x14_c00345{left:285.420000px;}
.xff_c00345{left:286.500000px;}
.x4c_c00345{left:289.500000px;}
.x63_c00345{left:291.000000px;}
.x107_c00345{left:295.080000px;}
.x9c_c00345{left:297.000000px;}
.xc1_c00345{left:298.500000px;}
.x58_c00345{left:300.000000px;}
.xc7_c00345{left:302.775000px;}
.xcf_c00345{left:304.275000px;}
.xc8_c00345{left:305.580000px;}
.xb0_c00345{left:307.080000px;}
.x8b_c00345{left:309.000000px;}
.x15_c00345{left:313.500000px;}
.x8_c00345{left:315.000000px;}
.xa6_c00345{left:316.080000px;}
.x5d_c00345{left:318.000000px;}
.x59_c00345{left:322.080000px;}
.x9d_c00345{left:323.775000px;}
.x31_c00345{left:325.920000px;}
.xe6_c00345{left:327.420000px;}
.xb1_c00345{left:328.500000px;}
.x6a_c00345{left:331.080000px;}
.x23_c00345{left:335.580000px;}
.x78_c00345{left:337.500000px;}
.xb6_c00345{left:338.580000px;}
.xac_c00345{left:342.000000px;}
.x42_c00345{left:343.920000px;}
.xf3_c00345{left:345.000000px;}
.x55_c00345{left:346.275000px;}
.x5a_c00345{left:348.420000px;}
.x100_c00345{left:350.580000px;}
.x6b_c00345{left:354.000000px;}
.x24_c00345{left:355.920000px;}
.x9_c00345{left:357.000000px;}
.x79_c00345{left:358.500000px;}
.x16_c00345{left:360.000000px;}
.xd7_c00345{left:362.145000px;}
.xe7_c00345{left:363.420000px;}
.xad_c00345{left:367.500000px;}
.x8c_c00345{left:369.420000px;}
.xb7_c00345{left:370.500000px;}
.x39_c00345{left:375.000000px;}
.xc9_c00345{left:376.920000px;}
.xdd_c00345{left:378.000000px;}
.x43_c00345{left:379.500000px;}
.x94_c00345{left:383.775000px;}
.x56_c00345{left:385.500000px;}
.x7a_c00345{left:388.080000px;}
.xf4_c00345{left:391.500000px;}
.x84_c00345{left:392.580000px;}
.xa_c00345{left:395.580000px;}
.x4d_c00345{left:397.500000px;}
.x6c_c00345{left:399.420000px;}
.xbd_c00345{left:400.500000px;}
.x3d_c00345{left:402.000000px;}
.x2_c00345{left:403.500000px;}
.x32_c00345{left:405.000000px;}
.x108_c00345{left:406.080000px;}
.x9e_c00345{left:412.500000px;}
.x85_c00345{left:414.000000px;}
.xd0_c00345{left:417.420000px;}
.xa7_c00345{left:420.000000px;}
.x95_c00345{left:421.500000px;}
.x3e_c00345{left:423.420000px;}
.x33_c00345{left:424.500000px;}
.x44_c00345{left:426.420000px;}
.x3a_c00345{left:429.420000px;}
.x86_c00345{left:430.500000px;}
.x17_c00345{left:432.000000px;}
.xb_c00345{left:435.000000px;}
.x5b_c00345{left:437.580000px;}
.xee_c00345{left:439.080000px;}
.x3f_c00345{left:442.080000px;}
.x64_c00345{left:445.500000px;}
.x9f_c00345{left:446.580000px;}
.x18_c00345{left:450.000000px;}
.xca_c00345{left:451.500000px;}
.x109_c00345{left:453.000000px;}
.xe8_c00345{left:454.920000px;}
.xc_c00345{left:456.000000px;}
.x7b_c00345{left:457.500000px;}
.xfc_c00345{left:458.580000px;}
.x96_c00345{left:459.855000px;}
.x6d_c00345{left:462.420000px;}
.x19_c00345{left:463.920000px;}
.x25_c00345{left:466.920000px;}
.x8d_c00345{left:469.920000px;}
.xb2_c00345{left:471.000000px;}
.x104_c00345{left:473.355000px;}
.x4e_c00345{left:475.500000px;}
.xde_c00345{left:477.420000px;}
.xcb_c00345{left:478.500000px;}
.xf8_c00345{left:481.500000px;}
.xd_c00345{left:482.580000px;}
.x3b_c00345{left:487.080000px;}
.x45_c00345{left:489.000000px;}
.xd3_c00345{left:490.500000px;}
.x72_c00345{left:492.000000px;}
.x101_c00345{left:493.080000px;}
.x26_c00345{left:496.920000px;}
.xef_c00345{left:498.645000px;}
.x8e_c00345{left:501.000000px;}
.x1a_c00345{left:502.500000px;}
.x65_c00345{left:504.000000px;}
.x4f_c00345{left:505.080000px;}
.xe1_c00345{left:507.000000px;}
.x5e_c00345{left:508.080000px;}
.xfd_c00345{left:511.920000px;}
.xb8_c00345{left:514.920000px;}
.x7c_c00345{left:517.080000px;}
.xf5_c00345{left:519.000000px;}
.x46_c00345{left:520.500000px;}
.xc2_c00345{left:525.000000px;}
.x50_c00345{left:526.920000px;}
.x34_c00345{left:529.500000px;}
.xd4_c00345{left:532.500000px;}
.x7d_c00345{left:534.420000px;}
.xa8_c00345{left:535.500000px;}
.xf0_c00345{left:538.500000px;}
.xe9_c00345{left:540.420000px;}
.x27_c00345{left:543.420000px;}
.x102_c00345{left:546.000000px;}
.x35_c00345{left:548.355000px;}
.x73_c00345{left:551.580000px;}
.xe_c00345{left:553.500000px;}
.xe2_c00345{left:555.000000px;}
.x87_c00345{left:556.500000px;}
.xf9_c00345{left:558.000000px;}
.x7e_c00345{left:559.500000px;}
.x3c_c00345{left:560.775000px;}
.x51_c00345{left:562.500000px;}
.x97_c00345{left:564.000000px;}
.x66_c00345{left:567.000000px;}
.xa0_c00345{left:570.000000px;}
.x8f_c00345{left:571.500000px;}
.x1b_c00345{left:573.000000px;}
.x5f_c00345{left:574.275000px;}
.xea_c00345{left:576.420000px;}
.xdf_c00345{left:579.000000px;}
.x36_c00345{left:580.080000px;}
.x47_c00345{left:582.855000px;}
.x105_c00345{left:585.000000px;}
.xb9_c00345{left:586.920000px;}
.x28_c00345{left:588.420000px;}
.x98_c00345{left:589.500000px;}
.xe3_c00345{left:590.580000px;}
.x1c_c00345{left:594.420000px;}
.xe0_c00345{left:597.000000px;}
.x74_c00345{left:598.500000px;}
.xa9_c00345{left:599.580000px;}
.xeb_c00345{left:603.420000px;}
.x90_c00345{left:604.500000px;}
.x48_c00345{left:606.855000px;}
.xcc_c00345{left:609.000000px;}
.xd8_c00345{left:610.275000px;}
.x37_c00345{left:612.420000px;}
.x7f_c00345{left:613.500000px;}
.xf_c00345{left:614.580000px;}
.x75_c00345{left:616.500000px;}
.xd5_c00345{left:618.000000px;}
.x60_c00345{left:619.500000px;}
.x88_c00345{left:621.000000px;}
.x29_c00345{left:624.000000px;}
.x6e_c00345{left:625.080000px;}
.x52_c00345{left:626.580000px;}
.x99_c00345{left:630.000000px;}
.xa1_c00345{left:633.000000px;}
.x61_c00345{left:640.080000px;}
.xae_c00345{left:642.420000px;}
.x38_c00345{left:643.500000px;}
.x9a_c00345{left:645.000000px;}
.x2a_c00345{left:648.000000px;}
.xfa_c00345{left:651.420000px;}
.xd9_c00345{left:652.500000px;}
.xa2_c00345{left:654.000000px;}
.x89_c00345{left:657.000000px;}
.xb3_c00345{left:660.000000px;}
.xc3_c00345{left:661.920000px;}
.x80_c00345{left:664.080000px;}
.xcd_c00345{left:665.355000px;}
.x2b_c00345{left:666.420000px;}
.x91_c00345{left:667.920000px;}
.xec_c00345{left:669.000000px;}
.x67_c00345{left:670.500000px;}
.x6f_c00345{left:672.000000px;}
.xa3_c00345{left:674.145000px;}
.x1d_c00345{left:675.420000px;}
.xf6_c00345{left:676.500000px;}
.xfe_c00345{left:678.000000px;}
.x10a_c00345{left:679.500000px;}
.x8a_c00345{left:682.500000px;}
.xfb_c00345{left:684.000000px;}
.x10_c00345{left:685.500000px;}
.xe4_c00345{left:688.080000px;}
.xb4_c00345{left:689.580000px;}
.xba_c00345{left:692.580000px;}
.x2c_c00345{left:697.500000px;}
.xbe_c00345{left:700.500000px;}
.xda_c00345{left:702.420000px;}
.x1e_c00345{left:703.500000px;}
.xce_c00345{left:704.580000px;}
.x92_c00345{left:708.420000px;}
.x11_c00345{left:709.500000px;}
.xaa_c00345{left:717.000000px;}
.xbf_c00345{left:722.580000px;}
@media print{
.v0_c00345{vertical-align:0.000000pt;}
.ls0_c00345{letter-spacing:0.000000pt;}
.ws3_c00345{word-spacing:-7.714337pt;}
.ws4_c00345{word-spacing:-6.620751pt;}
.ws1_c00345{word-spacing:-5.697689pt;}
.ws2_c00345{word-spacing:-5.689459pt;}
.ws0_c00345{word-spacing:-5.359360pt;}
.ws5_c00345{word-spacing:0.000000pt;}
.fs6_c00345{font-size:3.040000pt;}
.fs8_c00345{font-size:10.560000pt;}
.fs4_c00345{font-size:16.640000pt;}
.fs1_c00345{font-size:18.133333pt;}
.fs2_c00345{font-size:22.666667pt;}
.fs3_c00345{font-size:25.706667pt;}
.fs5_c00345{font-size:28.746667pt;}
.fs0_c00345{font-size:31.733333pt;}
.fs7_c00345{font-size:34.773333pt;}
.y0_c00345{bottom:0.000000pt;}
.yca_c00345{bottom:221.106667pt;}
.ycc_c00345{bottom:222.066667pt;}
.yc8_c00345{bottom:223.026667pt;}
.yc9_c00345{bottom:223.226667pt;}
.ycb_c00345{bottom:223.973333pt;}
.yc3_c00345{bottom:238.440000pt;}
.yc2_c00345{bottom:239.973333pt;}
.yc4_c00345{bottom:240.360000pt;}
.yc6_c00345{bottom:240.560000pt;}
.yc7_c00345{bottom:241.306667pt;}
.yc5_c00345{bottom:241.693333pt;}
.yc1_c00345{bottom:255.026667pt;}
.ybd_c00345{bottom:256.733333pt;}
.yc0_c00345{bottom:257.106667pt;}
.ybe_c00345{bottom:257.693333pt;}
.ybf_c00345{bottom:259.026667pt;}
.yb8_c00345{bottom:274.440000pt;}
.yba_c00345{bottom:275.400000pt;}
.yb9_c00345{bottom:276.360000pt;}
.ybb_c00345{bottom:276.560000pt;}
.ybc_c00345{bottom:277.306667pt;}
.yb4_c00345{bottom:291.026667pt;}
.yb6_c00345{bottom:291.773333pt;}
.yb5_c00345{bottom:292.560000pt;}
.yb3_c00345{bottom:293.133333pt;}
.yb7_c00345{bottom:293.306667pt;}
.yb1_c00345{bottom:293.693333pt;}
.yb2_c00345{bottom:294.640000pt;}
.yac_c00345{bottom:308.360000pt;}
.yae_c00345{bottom:309.106667pt;}
.yad_c00345{bottom:309.306667pt;}
.yb0_c00345{bottom:309.893333pt;}
.yab_c00345{bottom:310.466667pt;}
.yaa_c00345{bottom:311.026667pt;}
.yaf_c00345{bottom:311.226667pt;}
.ya3_c00345{bottom:325.493333pt;}
.ya6_c00345{bottom:326.440000pt;}
.ya8_c00345{bottom:326.640000pt;}
.ya7_c00345{bottom:327.773333pt;}
.ya2_c00345{bottom:327.973333pt;}
.ya5_c00345{bottom:328.360000pt;}
.ya9_c00345{bottom:328.560000pt;}
.ya4_c00345{bottom:329.133333pt;}
.ya0_c00345{bottom:343.026667pt;}
.ya1_c00345{bottom:344.933333pt;}
.y9e_c00345{bottom:345.106667pt;}
.y9f_c00345{bottom:347.026667pt;}
.y9a_c00345{bottom:362.440000pt;}
.y9b_c00345{bottom:363.226667pt;}
.y9c_c00345{bottom:364.360000pt;}
.y9d_c00345{bottom:365.306667pt;}
.y98_c00345{bottom:378.640000pt;}
.y95_c00345{bottom:379.773333pt;}
.y99_c00345{bottom:380.733333pt;}
.y94_c00345{bottom:381.693333pt;}
.y96_c00345{bottom:381.893333pt;}
.y97_c00345{bottom:382.640000pt;}
.y93_c00345{bottom:396.360000pt;}
.y91_c00345{bottom:397.106667pt;}
.y92_c00345{bottom:398.066667pt;}
.y8f_c00345{bottom:399.026667pt;}
.y90_c00345{bottom:399.226667pt;}
.y8c_c00345{bottom:414.440000pt;}
.y8e_c00345{bottom:415.226667pt;}
.y8a_c00345{bottom:415.773333pt;}
.y89_c00345{bottom:416.360000pt;}
.y8b_c00345{bottom:416.560000pt;}
.y8d_c00345{bottom:417.306667pt;}
.y88_c00345{bottom:431.026667pt;}
.y87_c00345{bottom:433.106667pt;}
.y85_c00345{bottom:433.893333pt;}
.y86_c00345{bottom:434.066667pt;}
.y84_c00345{bottom:435.026667pt;}
.y83_c00345{bottom:450.440000pt;}
.y81_c00345{bottom:451.226667pt;}
.y82_c00345{bottom:451.400000pt;}
.y80_c00345{bottom:452.360000pt;}
.y7f_c00345{bottom:453.306667pt;}
.y7e_c00345{bottom:467.773333pt;}
.y7d_c00345{bottom:469.693333pt;}
.y79_c00345{bottom:484.360000pt;}
.y78_c00345{bottom:485.106667pt;}
.y7b_c00345{bottom:485.893333pt;}
.y7c_c00345{bottom:486.066667pt;}
.y7a_c00345{bottom:487.026667pt;}
.y77_c00345{bottom:501.693333pt;}
.y74_c00345{bottom:502.440000pt;}
.y76_c00345{bottom:503.226667pt;}
.y73_c00345{bottom:503.400000pt;}
.y75_c00345{bottom:503.973333pt;}
.y72_c00345{bottom:504.360000pt;}
.y6b_c00345{bottom:519.026667pt;}
.y70_c00345{bottom:519.773333pt;}
.y6e_c00345{bottom:520.160000pt;}
.y71_c00345{bottom:520.733333pt;}
.y6c_c00345{bottom:521.693333pt;}
.y6d_c00345{bottom:521.893333pt;}
.y6f_c00345{bottom:523.026667pt;}
.y68_c00345{bottom:537.106667pt;}
.y6a_c00345{bottom:538.440000pt;}
.y67_c00345{bottom:539.026667pt;}
.y69_c00345{bottom:539.973333pt;}
.y63_c00345{bottom:554.440000pt;}
.y65_c00345{bottom:555.400000pt;}
.y62_c00345{bottom:556.360000pt;}
.y64_c00345{bottom:556.560000pt;}
.y66_c00345{bottom:557.306667pt;}
.y61_c00345{bottom:572.160000pt;}
.y5f_c00345{bottom:573.106667pt;}
.y5d_c00345{bottom:573.693333pt;}
.y60_c00345{bottom:573.893333pt;}
.y5e_c00345{bottom:575.026667pt;}
.y5c_c00345{bottom:589.106667pt;}
.y57_c00345{bottom:590.440000pt;}
.y58_c00345{bottom:590.640000pt;}
.y59_c00345{bottom:591.600000pt;}
.y5b_c00345{bottom:592.360000pt;}
.y5a_c00345{bottom:592.560000pt;}
.y56_c00345{bottom:607.773333pt;}
.y54_c00345{bottom:609.693333pt;}
.y55_c00345{bottom:610.640000pt;}
.y52_c00345{bottom:625.106667pt;}
.y53_c00345{bottom:625.893333pt;}
.y51_c00345{bottom:626.066667pt;}
.y50_c00345{bottom:627.026667pt;}
.y4c_c00345{bottom:642.440000pt;}
.y4e_c00345{bottom:644.360000pt;}
.y4d_c00345{bottom:644.560000pt;}
.y4f_c00345{bottom:645.306667pt;}
.y4a_c00345{bottom:659.773333pt;}
.y4b_c00345{bottom:661.106667pt;}
.y47_c00345{bottom:661.693333pt;}
.y48_c00345{bottom:663.026667pt;}
.y49_c00345{bottom:663.040000pt;}
.y45_c00345{bottom:679.026667pt;}
.y46_c00345{bottom:680.360000pt;}
.y43_c00345{bottom:695.773333pt;}
.y40_c00345{bottom:696.360000pt;}
.y44_c00345{bottom:696.733333pt;}
.y42_c00345{bottom:697.306667pt;}
.y41_c00345{bottom:697.693333pt;}
.y3e_c00345{bottom:713.106667pt;}
.y3f_c00345{bottom:715.026667pt;}
.y3d_c00345{bottom:730.440000pt;}
.y3c_c00345{bottom:731.400000pt;}
.y3b_c00345{bottom:731.973333pt;}
.y3a_c00345{bottom:732.360000pt;}
.y38_c00345{bottom:747.773333pt;}
.y39_c00345{bottom:749.106667pt;}
.y36_c00345{bottom:749.693333pt;}
.y37_c00345{bottom:749.706667pt;}
.y35_c00345{bottom:765.106667pt;}
.y34_c00345{bottom:766.066667pt;}
.y33_c00345{bottom:766.440000pt;}
.y30_c00345{bottom:767.026667pt;}
.y31_c00345{bottom:767.226667pt;}
.y32_c00345{bottom:768.373333pt;}
.y2d_c00345{bottom:783.773333pt;}
.y2f_c00345{bottom:784.733333pt;}
.y2e_c00345{bottom:785.706667pt;}
.y26_c00345{bottom:799.773333pt;}
.y2b_c00345{bottom:800.360000pt;}
.y2c_c00345{bottom:800.733333pt;}
.y29_c00345{bottom:800.933333pt;}
.y27_c00345{bottom:801.106667pt;}
.y2a_c00345{bottom:801.693333pt;}
.y28_c00345{bottom:803.040000pt;}
.y23_c00345{bottom:822.640000pt;}
.y21_c00345{bottom:823.400000pt;}
.y25_c00345{bottom:823.600000pt;}
.y22_c00345{bottom:824.360000pt;}
.y24_c00345{bottom:824.933333pt;}
.y20_c00345{bottom:825.306667pt;}
.y1f_c00345{bottom:840.733333pt;}
.y1d_c00345{bottom:842.640000pt;}
.y1e_c00345{bottom:843.600000pt;}
.y1c_c00345{bottom:858.440000pt;}
.y1a_c00345{bottom:859.400000pt;}
.y1b_c00345{bottom:860.360000pt;}
.y18_c00345{bottom:885.693333pt;}
.y15_c00345{bottom:887.773333pt;}
.y19_c00345{bottom:888.560000pt;}
.y17_c00345{bottom:888.933333pt;}
.y16_c00345{bottom:889.306667pt;}
.y14_c00345{bottom:889.693333pt;}
.y10_c00345{bottom:903.400000pt;}
.y13_c00345{bottom:903.973333pt;}
.yf_c00345{bottom:905.106667pt;}
.y12_c00345{bottom:905.893333pt;}
.yd_c00345{bottom:906.066667pt;}
.y11_c00345{bottom:906.640000pt;}
.ye_c00345{bottom:907.026667pt;}
.ya_c00345{bottom:921.693333pt;}
.y8_c00345{bottom:922.440000pt;}
.yc_c00345{bottom:923.973333pt;}
.y7_c00345{bottom:924.360000pt;}
.yb_c00345{bottom:924.560000pt;}
.y9_c00345{bottom:925.306667pt;}
.y3_c00345{bottom:939.773333pt;}
.y6_c00345{bottom:940.560000pt;}
.y5_c00345{bottom:941.693333pt;}
.y4_c00345{bottom:942.640000pt;}
.y2_c00345{bottom:975.600000pt;}
.y1_c00345{bottom:975.773333pt;}
.h7_c00345{height:3.739141pt;}
.h9_c00345{height:12.988594pt;}
.h5_c00345{height:20.466875pt;}
.h2_c00345{height:22.303646pt;}
.h3_c00345{height:27.879557pt;}
.h4_c00345{height:31.618698pt;}
.h6_c00345{height:35.357839pt;}
.h1_c00345{height:39.031380pt;}
.h8_c00345{height:42.770521pt;}
.h0_c00345{height:1186.666667pt;}
.w0_c00345{width:782.666667pt;}
.x0_c00345{left:0.000000pt;}
.x1_c00345{left:134.666667pt;}
.x3_c00345{left:135.626667pt;}
.x40_c00345{left:146.293333pt;}
.xf1_c00345{left:148.000000pt;}
.x49_c00345{left:149.706667pt;}
.x53_c00345{left:150.666667pt;}
.xc4_c00345{left:151.626667pt;}
.xd1_c00345{left:153.706667pt;}
.x81_c00345{left:154.666667pt;}
.xa4_c00345{left:156.373333pt;}
.x4_c00345{left:162.666667pt;}
.xf7_c00345{left:163.626667pt;}
.x12_c00345{left:165.706667pt;}
.x70_c00345{left:168.373333pt;}
.x106_c00345{left:169.333333pt;}
.xd6_c00345{left:170.666667pt;}
.x2d_c00345{left:172.000000pt;}
.xb5_c00345{left:174.666667pt;}
.xab_c00345{left:175.626667pt;}
.x82_c00345{left:177.333333pt;}
.x1f_c00345{left:178.666667pt;}
.xe5_c00345{left:180.573333pt;}
.x5_c00345{left:182.666667pt;}
.x4a_c00345{left:185.706667pt;}
.xc5_c00345{left:187.626667pt;}
.x2e_c00345{left:188.960000pt;}
.x13_c00345{left:191.040000pt;}
.x62_c00345{left:192.000000pt;}
.x20_c00345{left:195.040000pt;}
.x76_c00345{left:196.000000pt;}
.x68_c00345{left:198.666667pt;}
.xbb_c00345{left:199.626667pt;}
.xc0_c00345{left:204.000000pt;}
.x2f_c00345{left:208.000000pt;}
.xa5_c00345{left:209.333333pt;}
.x6_c00345{left:210.666667pt;}
.xed_c00345{left:212.000000pt;}
.xdb_c00345{left:213.906667pt;}
.x21_c00345{left:217.706667pt;}
.x41_c00345{left:219.040000pt;}
.x77_c00345{left:220.000000pt;}
.x57_c00345{left:221.333333pt;}
.xf2_c00345{left:223.240000pt;}
.xaf_c00345{left:224.373333pt;}
.x103_c00345{left:225.706667pt;}
.x69_c00345{left:226.666667pt;}
.x83_c00345{left:227.626667pt;}
.xd2_c00345{left:228.573333pt;}
.x54_c00345{left:230.666667pt;}
.x5c_c00345{left:232.000000pt;}
.xdc_c00345{left:233.333333pt;}
.x7_c00345{left:235.040000pt;}
.x9b_c00345{left:236.000000pt;}
.x93_c00345{left:237.333333pt;}
.x4b_c00345{left:238.666667pt;}
.xc6_c00345{left:240.960000pt;}
.x71_c00345{left:242.293333pt;}
.xbc_c00345{left:244.000000pt;}
.x22_c00345{left:246.666667pt;}
.x30_c00345{left:249.706667pt;}
.x14_c00345{left:253.706667pt;}
.xff_c00345{left:254.666667pt;}
.x4c_c00345{left:257.333333pt;}
.x63_c00345{left:258.666667pt;}
.x107_c00345{left:262.293333pt;}
.x9c_c00345{left:264.000000pt;}
.xc1_c00345{left:265.333333pt;}
.x58_c00345{left:266.666667pt;}
.xc7_c00345{left:269.133333pt;}
.xcf_c00345{left:270.466667pt;}
.xc8_c00345{left:271.626667pt;}
.xb0_c00345{left:272.960000pt;}
.x8b_c00345{left:274.666667pt;}
.x15_c00345{left:278.666667pt;}
.x8_c00345{left:280.000000pt;}
.xa6_c00345{left:280.960000pt;}
.x5d_c00345{left:282.666667pt;}
.x59_c00345{left:286.293333pt;}
.x9d_c00345{left:287.800000pt;}
.x31_c00345{left:289.706667pt;}
.xe6_c00345{left:291.040000pt;}
.xb1_c00345{left:292.000000pt;}
.x6a_c00345{left:294.293333pt;}
.x23_c00345{left:298.293333pt;}
.x78_c00345{left:300.000000pt;}
.xb6_c00345{left:300.960000pt;}
.xac_c00345{left:304.000000pt;}
.x42_c00345{left:305.706667pt;}
.xf3_c00345{left:306.666667pt;}
.x55_c00345{left:307.800000pt;}
.x5a_c00345{left:309.706667pt;}
.x100_c00345{left:311.626667pt;}
.x6b_c00345{left:314.666667pt;}
.x24_c00345{left:316.373333pt;}
.x9_c00345{left:317.333333pt;}
.x79_c00345{left:318.666667pt;}
.x16_c00345{left:320.000000pt;}
.xd7_c00345{left:321.906667pt;}
.xe7_c00345{left:323.040000pt;}
.xad_c00345{left:326.666667pt;}
.x8c_c00345{left:328.373333pt;}
.xb7_c00345{left:329.333333pt;}
.x39_c00345{left:333.333333pt;}
.xc9_c00345{left:335.040000pt;}
.xdd_c00345{left:336.000000pt;}
.x43_c00345{left:337.333333pt;}
.x94_c00345{left:341.133333pt;}
.x56_c00345{left:342.666667pt;}
.x7a_c00345{left:344.960000pt;}
.xf4_c00345{left:348.000000pt;}
.x84_c00345{left:348.960000pt;}
.xa_c00345{left:351.626667pt;}
.x4d_c00345{left:353.333333pt;}
.x6c_c00345{left:355.040000pt;}
.xbd_c00345{left:356.000000pt;}
.x3d_c00345{left:357.333333pt;}
.x2_c00345{left:358.666667pt;}
.x32_c00345{left:360.000000pt;}
.x108_c00345{left:360.960000pt;}
.x9e_c00345{left:366.666667pt;}
.x85_c00345{left:368.000000pt;}
.xd0_c00345{left:371.040000pt;}
.xa7_c00345{left:373.333333pt;}
.x95_c00345{left:374.666667pt;}
.x3e_c00345{left:376.373333pt;}
.x33_c00345{left:377.333333pt;}
.x44_c00345{left:379.040000pt;}
.x3a_c00345{left:381.706667pt;}
.x86_c00345{left:382.666667pt;}
.x17_c00345{left:384.000000pt;}
.xb_c00345{left:386.666667pt;}
.x5b_c00345{left:388.960000pt;}
.xee_c00345{left:390.293333pt;}
.x3f_c00345{left:392.960000pt;}
.x64_c00345{left:396.000000pt;}
.x9f_c00345{left:396.960000pt;}
.x18_c00345{left:400.000000pt;}
.xca_c00345{left:401.333333pt;}
.x109_c00345{left:402.666667pt;}
.xe8_c00345{left:404.373333pt;}
.xc_c00345{left:405.333333pt;}
.x7b_c00345{left:406.666667pt;}
.xfc_c00345{left:407.626667pt;}
.x96_c00345{left:408.760000pt;}
.x6d_c00345{left:411.040000pt;}
.x19_c00345{left:412.373333pt;}
.x25_c00345{left:415.040000pt;}
.x8d_c00345{left:417.706667pt;}
.xb2_c00345{left:418.666667pt;}
.x104_c00345{left:420.760000pt;}
.x4e_c00345{left:422.666667pt;}
.xde_c00345{left:424.373333pt;}
.xcb_c00345{left:425.333333pt;}
.xf8_c00345{left:428.000000pt;}
.xd_c00345{left:428.960000pt;}
.x3b_c00345{left:432.960000pt;}
.x45_c00345{left:434.666667pt;}
.xd3_c00345{left:436.000000pt;}
.x72_c00345{left:437.333333pt;}
.x101_c00345{left:438.293333pt;}
.x26_c00345{left:441.706667pt;}
.xef_c00345{left:443.240000pt;}
.x8e_c00345{left:445.333333pt;}
.x1a_c00345{left:446.666667pt;}
.x65_c00345{left:448.000000pt;}
.x4f_c00345{left:448.960000pt;}
.xe1_c00345{left:450.666667pt;}
.x5e_c00345{left:451.626667pt;}
.xfd_c00345{left:455.040000pt;}
.xb8_c00345{left:457.706667pt;}
.x7c_c00345{left:459.626667pt;}
.xf5_c00345{left:461.333333pt;}
.x46_c00345{left:462.666667pt;}
.xc2_c00345{left:466.666667pt;}
.x50_c00345{left:468.373333pt;}
.x34_c00345{left:470.666667pt;}
.xd4_c00345{left:473.333333pt;}
.x7d_c00345{left:475.040000pt;}
.xa8_c00345{left:476.000000pt;}
.xf0_c00345{left:478.666667pt;}
.xe9_c00345{left:480.373333pt;}
.x27_c00345{left:483.040000pt;}
.x102_c00345{left:485.333333pt;}
.x35_c00345{left:487.426667pt;}
.x73_c00345{left:490.293333pt;}
.xe_c00345{left:492.000000pt;}
.xe2_c00345{left:493.333333pt;}
.x87_c00345{left:494.666667pt;}
.xf9_c00345{left:496.000000pt;}
.x7e_c00345{left:497.333333pt;}
.x3c_c00345{left:498.466667pt;}
.x51_c00345{left:500.000000pt;}
.x97_c00345{left:501.333333pt;}
.x66_c00345{left:504.000000pt;}
.xa0_c00345{left:506.666667pt;}
.x8f_c00345{left:508.000000pt;}
.x1b_c00345{left:509.333333pt;}
.x5f_c00345{left:510.466667pt;}
.xea_c00345{left:512.373333pt;}
.xdf_c00345{left:514.666667pt;}
.x36_c00345{left:515.626667pt;}
.x47_c00345{left:518.093333pt;}
.x105_c00345{left:520.000000pt;}
.xb9_c00345{left:521.706667pt;}
.x28_c00345{left:523.040000pt;}
.x98_c00345{left:524.000000pt;}
.xe3_c00345{left:524.960000pt;}
.x1c_c00345{left:528.373333pt;}
.xe0_c00345{left:530.666667pt;}
.x74_c00345{left:532.000000pt;}
.xa9_c00345{left:532.960000pt;}
.xeb_c00345{left:536.373333pt;}
.x90_c00345{left:537.333333pt;}
.x48_c00345{left:539.426667pt;}
.xcc_c00345{left:541.333333pt;}
.xd8_c00345{left:542.466667pt;}
.x37_c00345{left:544.373333pt;}
.x7f_c00345{left:545.333333pt;}
.xf_c00345{left:546.293333pt;}
.x75_c00345{left:548.000000pt;}
.xd5_c00345{left:549.333333pt;}
.x60_c00345{left:550.666667pt;}
.x88_c00345{left:552.000000pt;}
.x29_c00345{left:554.666667pt;}
.x6e_c00345{left:555.626667pt;}
.x52_c00345{left:556.960000pt;}
.x99_c00345{left:560.000000pt;}
.xa1_c00345{left:562.666667pt;}
.x61_c00345{left:568.960000pt;}
.xae_c00345{left:571.040000pt;}
.x38_c00345{left:572.000000pt;}
.x9a_c00345{left:573.333333pt;}
.x2a_c00345{left:576.000000pt;}
.xfa_c00345{left:579.040000pt;}
.xd9_c00345{left:580.000000pt;}
.xa2_c00345{left:581.333333pt;}
.x89_c00345{left:584.000000pt;}
.xb3_c00345{left:586.666667pt;}
.xc3_c00345{left:588.373333pt;}
.x80_c00345{left:590.293333pt;}
.xcd_c00345{left:591.426667pt;}
.x2b_c00345{left:592.373333pt;}
.x91_c00345{left:593.706667pt;}
.xec_c00345{left:594.666667pt;}
.x67_c00345{left:596.000000pt;}
.x6f_c00345{left:597.333333pt;}
.xa3_c00345{left:599.240000pt;}
.x1d_c00345{left:600.373333pt;}
.xf6_c00345{left:601.333333pt;}
.xfe_c00345{left:602.666667pt;}
.x10a_c00345{left:604.000000pt;}
.x8a_c00345{left:606.666667pt;}
.xfb_c00345{left:608.000000pt;}
.x10_c00345{left:609.333333pt;}
.xe4_c00345{left:611.626667pt;}
.xb4_c00345{left:612.960000pt;}
.xba_c00345{left:615.626667pt;}
.x2c_c00345{left:620.000000pt;}
.xbe_c00345{left:622.666667pt;}
.xda_c00345{left:624.373333pt;}
.x1e_c00345{left:625.333333pt;}
.xce_c00345{left:626.293333pt;}
.x92_c00345{left:629.706667pt;}
.x11_c00345{left:630.666667pt;}
.xaa_c00345{left:637.333333pt;}
.xbf_c00345{left:642.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_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_82c88fbbe47c2094d6cf8fd9.woff2')format("woff");}.ff1_c00346{font-family:ff1_c00346;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf6_c00346{transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);}
.mf5_c00346{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.md7_c00346{transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);}
.md_c00346{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mb8_c00346{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m14_c00346{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m67_c00346{transform:matrix(0.372699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372699,0.000000,0.000000,0.250000,0,0);}
.m4f_c00346{transform:matrix(0.378151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378151,0.000000,0.000000,0.250000,0,0);}
.m95_c00346{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.m72_c00346{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m13_c00346{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.md6_c00346{transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);}
.m4b_c00346{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m65_c00346{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mb1_c00346{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m3e_c00346{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.mc4_c00346{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m17_c00346{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.mc3_c00346{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.mf9_c00346{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m6c_c00346{transform:matrix(0.399923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399923,0.000000,0.000000,0.250000,0,0);}
.mc2_c00346{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_c00346{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mca_c00346{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m6b_c00346{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m34_c00346{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m1b_c00346{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m54_c00346{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.mfc_c00346{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mc6_c00346{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.me4_c00346{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.mba_c00346{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m9c_c00346{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.me0_c00346{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m35_c00346{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.mae_c00346{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.maf_c00346{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m8_c00346{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m8a_c00346{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m7a_c00346{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m94_c00346{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.md0_c00346{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.ma1_c00346{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.ma0_c00346{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m86_c00346{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m1e_c00346{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m3a_c00346{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m45_c00346{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m8b_c00346{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m4e_c00346{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m5c_c00346{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m88_c00346{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.mb5_c00346{transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);}
.mda_c00346{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m7e_c00346{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.ma3_c00346{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m37_c00346{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mc8_c00346{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m32_c00346{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mf7_c00346{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.ma7_c00346{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.md5_c00346{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.me2_c00346{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m98_c00346{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m40_c00346{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m43_c00346{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.m87_c00346{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.mc5_c00346{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m7_c00346{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m41_c00346{transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);}
.me5_c00346{transform:matrix(0.443465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443465,0.000000,0.000000,0.250000,0,0);}
.m78_c00346{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m9a_c00346{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.mb3_c00346{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.ma6_c00346{transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);}
.mf0_c00346{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m60_c00346{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.mfb_c00346{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m58_c00346{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.mc7_c00346{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m21_c00346{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m73_c00346{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m66_c00346{transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);}
.mdd_c00346{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.ma8_c00346{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m39_c00346{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.md4_c00346{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m63_c00346{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m24_c00346{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m50_c00346{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.md9_c00346{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mc1_c00346{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.m83_c00346{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.me6_c00346{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.mee_c00346{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.m7c_c00346{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.m68_c00346{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.mf3_c00346{transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);}
.mab_c00346{transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);}
.ma4_c00346{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.me8_c00346{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.m85_c00346{transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);}
.m7b_c00346{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.mdf_c00346{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.md3_c00346{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.mbf_c00346{transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);}
.m23_c00346{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.md1_c00346{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m2c_c00346{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m48_c00346{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m53_c00346{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m4_c00346{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m1_c00346{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m44_c00346{transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);}
.m15_c00346{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mc_c00346{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mde_c00346{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m46_c00346{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);}
.mea_c00346{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mdc_c00346{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m12_c00346{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m93_c00346{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.ma_c00346{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mf1_c00346{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m28_c00346{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m6d_c00346{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mec_c00346{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.ma9_c00346{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m77_c00346{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m6_c00346{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m59_c00346{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m52_c00346{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m2f_c00346{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mf_c00346{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m19_c00346{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m61_c00346{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m99_c00346{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m9_c00346{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mb_c00346{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.ma2_c00346{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mf4_c00346{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m5a_c00346{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m1a_c00346{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m3_c00346{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m3d_c00346{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mbd_c00346{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.mcf_c00346{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m8e_c00346{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m75_c00346{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m29_c00346{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m36_c00346{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m7f_c00346{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.me7_c00346{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m25_c00346{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m92_c00346{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m42_c00346{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mbb_c00346{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m7d_c00346{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m5f_c00346{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m4c_c00346{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m9e_c00346{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mc0_c00346{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mf2_c00346{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m26_c00346{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.md8_c00346{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m84_c00346{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m4d_c00346{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m90_c00346{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m64_c00346{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.me3_c00346{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m91_c00346{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m47_c00346{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m81_c00346{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m49_c00346{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m97_c00346{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m1f_c00346{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mbe_c00346{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mce_c00346{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m51_c00346{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.mfd_c00346{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);}
.maa_c00346{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m6f_c00346{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m80_c00346{transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);}
.m5d_c00346{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m33_c00346{transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);}
.mac_c00346{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m18_c00346{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mcc_c00346{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m62_c00346{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m3f_c00346{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m1c_c00346{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.mbc_c00346{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m2_c00346{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m3c_c00346{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.md2_c00346{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m5e_c00346{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.meb_c00346{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.mb2_c00346{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.mc9_c00346{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m56_c00346{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m70_c00346{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m10_c00346{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m76_c00346{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.med_c00346{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.mb6_c00346{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.mcd_c00346{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m4a_c00346{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.m79_c00346{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m30_c00346{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mef_c00346{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m9d_c00346{transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);}
.m11_c00346{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m8d_c00346{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.mb7_c00346{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m0_c00346{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m38_c00346{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m5_c00346{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m20_c00346{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m6e_c00346{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.me9_c00346{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.m55_c00346{transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);}
.m96_c00346{transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);}
.m2a_c00346{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.mb9_c00346{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m74_c00346{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.me1_c00346{transform:matrix(0.657051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657051,0.000000,0.000000,0.250000,0,0);}
.mfa_c00346{transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);}
.mb0_c00346{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m69_c00346{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.me_c00346{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m31_c00346{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m57_c00346{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.mdb_c00346{transform:matrix(0.696471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696471,0.000000,0.000000,0.250000,0,0);}
.m1d_c00346{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m89_c00346{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m2b_c00346{transform:matrix(0.705929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705929,0.000000,0.000000,0.250000,0,0);}
.m82_c00346{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m71_c00346{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mcb_c00346{transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);}
.m27_c00346{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m8f_c00346{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m22_c00346{transform:matrix(0.765560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765560,0.000000,0.000000,0.250000,0,0);}
.m5b_c00346{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m9b_c00346{transform:matrix(0.772059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772059,0.000000,0.000000,0.250000,0,0);}
.m3b_c00346{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m16_c00346{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.mf8_c00346{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.m9f_c00346{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.m2e_c00346{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.ma5_c00346{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.mad_c00346{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mb4_c00346{transform:matrix(0.822917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.822917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.822917,0.000000,0.000000,0.250000,0,0);}
.m2d_c00346{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.mfe_c00346{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m8c_c00346{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,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:-4.506262px;}
.ws1_c00346{word-spacing:0.000000px;}
.fc0_c00346{color:transparent;}
.fs7_c00346{font-size:3.420000px;}
.fs4_c00346{font-size:18.720000px;}
.fs0_c00346{font-size:20.400000px;}
.fs2_c00346{font-size:25.500000px;}
.fs1_c00346{font-size:28.920000px;}
.fs5_c00346{font-size:32.340000px;}
.fs3_c00346{font-size:35.700000px;}
.fs6_c00346{font-size:39.120000px;}
.y0_c00346{bottom:0.000000px;}
.yd5_c00346{bottom:251.970000px;}
.yd6_c00346{bottom:252.405000px;}
.yd7_c00346{bottom:254.130000px;}
.ycd_c00346{bottom:271.245000px;}
.yd4_c00346{bottom:271.470000px;}
.yd1_c00346{bottom:271.905000px;}
.yd0_c00346{bottom:272.325000px;}
.ycf_c00346{bottom:272.745000px;}
.ycc_c00346{bottom:273.405000px;}
.yce_c00346{bottom:273.630000px;}
.yd2_c00346{bottom:274.470000px;}
.yd3_c00346{bottom:274.905000px;}
.ycb_c00346{bottom:291.180000px;}
.yca_c00346{bottom:292.245000px;}
.yc9_c00346{bottom:293.970000px;}
.yc7_c00346{bottom:294.405000px;}
.yc8_c00346{bottom:294.825000px;}
.yc5_c00346{bottom:311.325000px;}
.yc2_c00346{bottom:311.745000px;}
.yc3_c00346{bottom:313.905000px;}
.yc6_c00346{bottom:314.130000px;}
.yc4_c00346{bottom:314.970000px;}
.ybd_c00346{bottom:331.245000px;}
.yc0_c00346{bottom:331.470000px;}
.ybf_c00346{bottom:332.745000px;}
.ybe_c00346{bottom:333.405000px;}
.yc1_c00346{bottom:333.630000px;}
.ybc_c00346{bottom:334.470000px;}
.yba_c00346{bottom:350.745000px;}
.ybb_c00346{bottom:350.970000px;}
.yb7_c00346{bottom:351.825000px;}
.yb6_c00346{bottom:352.905000px;}
.yb9_c00346{bottom:353.970000px;}
.yb8_c00346{bottom:354.405000px;}
.yb3_c00346{bottom:370.245000px;}
.yb5_c00346{bottom:371.745000px;}
.yb4_c00346{bottom:372.405000px;}
.yb2_c00346{bottom:373.905000px;}
.yaf_c00346{bottom:391.245000px;}
.yb0_c00346{bottom:392.130000px;}
.yb1_c00346{bottom:392.970000px;}
.yae_c00346{bottom:393.405000px;}
.yab_c00346{bottom:410.745000px;}
.yad_c00346{bottom:411.630000px;}
.ya8_c00346{bottom:411.825000px;}
.ya9_c00346{bottom:412.905000px;}
.yac_c00346{bottom:413.130000px;}
.yaa_c00346{bottom:413.970000px;}
.ya3_c00346{bottom:430.245000px;}
.ya6_c00346{bottom:431.325000px;}
.ya7_c00346{bottom:431.970000px;}
.ya5_c00346{bottom:432.405000px;}
.ya4_c00346{bottom:433.470000px;}
.ya1_c00346{bottom:448.680000px;}
.y9f_c00346{bottom:449.325000px;}
.ya0_c00346{bottom:449.745000px;}
.y9d_c00346{bottom:450.630000px;}
.ya2_c00346{bottom:451.905000px;}
.y9e_c00346{bottom:452.130000px;}
.y9b_c00346{bottom:469.245000px;}
.y9c_c00346{bottom:470.325000px;}
.y9a_c00346{bottom:470.745000px;}
.y97_c00346{bottom:471.405000px;}
.y98_c00346{bottom:472.470000px;}
.y99_c00346{bottom:472.905000px;}
.y94_c00346{bottom:488.745000px;}
.y92_c00346{bottom:490.245000px;}
.y96_c00346{bottom:490.905000px;}
.y91_c00346{bottom:491.130000px;}
.y90_c00346{bottom:491.325000px;}
.y93_c00346{bottom:491.970000px;}
.y95_c00346{bottom:492.405000px;}
.y8e_c00346{bottom:509.745000px;}
.y8d_c00346{bottom:511.470000px;}
.y8f_c00346{bottom:511.905000px;}
.y8b_c00346{bottom:529.245000px;}
.y8c_c00346{bottom:529.905000px;}
.y88_c00346{bottom:530.130000px;}
.y8a_c00346{bottom:530.325000px;}
.y89_c00346{bottom:531.405000px;}
.y87_c00346{bottom:548.745000px;}
.y86_c00346{bottom:550.905000px;}
.y84_c00346{bottom:568.245000px;}
.y85_c00346{bottom:568.470000px;}
.y80_c00346{bottom:569.745000px;}
.y83_c00346{bottom:570.405000px;}
.y82_c00346{bottom:571.470000px;}
.y81_c00346{bottom:571.905000px;}
.y7f_c00346{bottom:586.470000px;}
.y7a_c00346{bottom:586.905000px;}
.y7b_c00346{bottom:589.245000px;}
.y7e_c00346{bottom:589.905000px;}
.y7d_c00346{bottom:590.130000px;}
.y7c_c00346{bottom:590.325000px;}
.y79_c00346{bottom:591.405000px;}
.y77_c00346{bottom:606.405000px;}
.y78_c00346{bottom:607.245000px;}
.y71_c00346{bottom:608.745000px;}
.y75_c00346{bottom:609.405000px;}
.y73_c00346{bottom:609.630000px;}
.y74_c00346{bottom:609.825000px;}
.y76_c00346{bottom:610.470000px;}
.y72_c00346{bottom:610.905000px;}
.y70_c00346{bottom:626.970000px;}
.y6f_c00346{bottom:627.825000px;}
.y6b_c00346{bottom:628.245000px;}
.y6d_c00346{bottom:629.130000px;}
.y6c_c00346{bottom:629.325000px;}
.y6e_c00346{bottom:630.405000px;}
.y6a_c00346{bottom:647.745000px;}
.y69_c00346{bottom:648.630000px;}
.y68_c00346{bottom:649.470000px;}
.y67_c00346{bottom:649.905000px;}
.y65_c00346{bottom:666.405000px;}
.y62_c00346{bottom:667.245000px;}
.y66_c00346{bottom:668.550000px;}
.y64_c00346{bottom:668.745000px;}
.y63_c00346{bottom:669.405000px;}
.y61_c00346{bottom:670.905000px;}
.y60_c00346{bottom:686.745000px;}
.y5f_c00346{bottom:688.245000px;}
.y5d_c00346{bottom:688.905000px;}
.y5c_c00346{bottom:689.130000px;}
.y5e_c00346{bottom:689.970000px;}
.y56_c00346{bottom:706.245000px;}
.y5b_c00346{bottom:706.470000px;}
.y59_c00346{bottom:708.405000px;}
.y5a_c00346{bottom:708.630000px;}
.y58_c00346{bottom:709.470000px;}
.y57_c00346{bottom:709.920000px;}
.y54_c00346{bottom:725.745000px;}
.y53_c00346{bottom:727.245000px;}
.y55_c00346{bottom:728.130000px;}
.y52_c00346{bottom:745.245000px;}
.y4f_c00346{bottom:746.745000px;}
.y50_c00346{bottom:747.405000px;}
.y51_c00346{bottom:748.470000px;}
.y4e_c00346{bottom:748.905000px;}
.y4b_c00346{bottom:765.825000px;}
.y4c_c00346{bottom:767.130000px;}
.y4a_c00346{bottom:767.325000px;}
.y4d_c00346{bottom:767.970000px;}
.y49_c00346{bottom:768.405000px;}
.y48_c00346{bottom:785.325000px;}
.y45_c00346{bottom:785.745000px;}
.y46_c00346{bottom:786.630000px;}
.y47_c00346{bottom:786.825000px;}
.y44_c00346{bottom:787.470000px;}
.y43_c00346{bottom:787.905000px;}
.y42_c00346{bottom:804.825000px;}
.y3f_c00346{bottom:805.245000px;}
.y41_c00346{bottom:806.130000px;}
.y40_c00346{bottom:806.550000px;}
.y3e_c00346{bottom:806.970000px;}
.y3d_c00346{bottom:807.405000px;}
.y39_c00346{bottom:823.680000px;}
.y3a_c00346{bottom:824.745000px;}
.y3c_c00346{bottom:826.905000px;}
.y3b_c00346{bottom:827.130000px;}
.y36_c00346{bottom:843.405000px;}
.y38_c00346{bottom:844.245000px;}
.y33_c00346{bottom:845.745000px;}
.y35_c00346{bottom:846.405000px;}
.y37_c00346{bottom:846.630000px;}
.y34_c00346{bottom:847.905000px;}
.y2f_c00346{bottom:865.245000px;}
.y30_c00346{bottom:865.905000px;}
.y32_c00346{bottom:866.130000px;}
.y31_c00346{bottom:867.405000px;}
.y2c_c00346{bottom:882.405000px;}
.y2a_c00346{bottom:884.745000px;}
.y2e_c00346{bottom:885.630000px;}
.y2d_c00346{bottom:886.470000px;}
.y2b_c00346{bottom:886.905000px;}
.y27_c00346{bottom:904.245000px;}
.y29_c00346{bottom:905.130000px;}
.y28_c00346{bottom:905.970000px;}
.y26_c00346{bottom:906.405000px;}
.y24_c00346{bottom:923.325000px;}
.y23_c00346{bottom:923.745000px;}
.y25_c00346{bottom:925.470000px;}
.y22_c00346{bottom:925.905000px;}
.y20_c00346{bottom:942.405000px;}
.y21_c00346{bottom:942.825000px;}
.y1c_c00346{bottom:943.245000px;}
.y1e_c00346{bottom:944.130000px;}
.y1b_c00346{bottom:944.325000px;}
.y1d_c00346{bottom:945.405000px;}
.y1f_c00346{bottom:945.630000px;}
.y19_c00346{bottom:962.745000px;}
.y1a_c00346{bottom:964.905000px;}
.y18_c00346{bottom:984.405000px;}
.y17_c00346{bottom:984.630000px;}
.y16_c00346{bottom:985.470000px;}
.y12_c00346{bottom:1001.745000px;}
.y14_c00346{bottom:1002.825000px;}
.y15_c00346{bottom:1003.470000px;}
.y13_c00346{bottom:1003.905000px;}
.y11_c00346{bottom:1004.130000px;}
.yf_c00346{bottom:1021.245000px;}
.yc_c00346{bottom:1022.745000px;}
.yd_c00346{bottom:1023.405000px;}
.ye_c00346{bottom:1023.630000px;}
.y10_c00346{bottom:1024.470000px;}
.yb_c00346{bottom:1024.905000px;}
.ya_c00346{bottom:1041.405000px;}
.y8_c00346{bottom:1042.245000px;}
.y9_c00346{bottom:1043.970000px;}
.y7_c00346{bottom:1044.405000px;}
.y5_c00346{bottom:1061.745000px;}
.y4_c00346{bottom:1063.470000px;}
.y3_c00346{bottom:1063.905000px;}
.y6_c00346{bottom:1064.970000px;}
.y2_c00346{bottom:1098.405000px;}
.y1_c00346{bottom:1102.050000px;}
.h8_c00346{height:4.206533px;}
.h5_c00346{height:23.025234px;}
.h1_c00346{height:25.091602px;}
.h3_c00346{height:31.364502px;}
.h2_c00346{height:35.571035px;}
.h6_c00346{height:39.777568px;}
.h4_c00346{height:43.910303px;}
.h7_c00346{height:48.116836px;}
.h0_c00346{height:1335.000000px;}
.w0_c00346{width:880.500000px;}
.x0_c00346{left:0.000000px;}
.x3_c00346{left:151.080000px;}
.x74_c00346{left:152.580000px;}
.x13_c00346{left:166.080000px;}
.x68_c00346{left:167.580000px;}
.xed_c00346{left:171.000000px;}
.x2c_c00346{left:172.500000px;}
.x10a_c00346{left:178.920000px;}
.x7e_c00346{left:180.000000px;}
.x4_c00346{left:183.420000px;}
.x1f_c00346{left:186.000000px;}
.xd1_c00346{left:187.500000px;}
.xff_c00346{left:189.000000px;}
.x49_c00346{left:190.920000px;}
.xe_c00346{left:192.000000px;}
.x62_c00346{left:195.420000px;}
.xb7_c00346{left:196.920000px;}
.x52_c00346{left:199.500000px;}
.xf4_c00346{left:200.580000px;}
.x58_c00346{left:202.080000px;}
.x37_c00346{left:204.420000px;}
.x7f_c00346{left:206.580000px;}
.x20_c00346{left:208.500000px;}
.xe8_c00346{left:211.080000px;}
.x10b_c00346{left:214.500000px;}
.x102_c00346{left:216.420000px;}
.x9d_c00346{left:217.920000px;}
.xd2_c00346{left:219.000000px;}
.xa7_c00346{left:220.500000px;}
.x8b_c00346{left:222.420000px;}
.x5_c00346{left:226.080000px;}
.x3e_c00346{left:228.000000px;}
.x2d_c00346{left:229.080000px;}
.x63_c00346{left:230.580000px;}
.x104_c00346{left:232.080000px;}
.xc7_c00346{left:234.000000px;}
.xee_c00346{left:238.500000px;}
.x97_c00346{left:240.420000px;}
.x21_c00346{left:241.500000px;}
.xf_c00346{left:243.000000px;}
.x80_c00346{left:244.500000px;}
.xcb_c00346{left:246.000000px;}
.xbf_c00346{left:247.500000px;}
.xb2_c00346{left:249.000000px;}
.x105_c00346{left:253.920000px;}
.x8c_c00346{left:255.420000px;}
.x75_c00346{left:256.500000px;}
.xdd_c00346{left:258.000000px;}
.x22_c00346{left:261.000000px;}
.x10_c00346{left:262.080000px;}
.x59_c00346{left:264.000000px;}
.xc0_c00346{left:267.420000px;}
.xd3_c00346{left:268.500000px;}
.xe9_c00346{left:271.080000px;}
.x6_c00346{left:273.000000px;}
.x76_c00346{left:276.000000px;}
.x9e_c00346{left:277.500000px;}
.x69_c00346{left:280.080000px;}
.xcc_c00346{left:283.500000px;}
.x2e_c00346{left:285.000000px;}
.xb8_c00346{left:287.580000px;}
.x14_c00346{left:289.500000px;}
.x8d_c00346{left:291.000000px;}
.xf9_c00346{left:292.500000px;}
.x38_c00346{left:293.580000px;}
.x53_c00346{left:295.500000px;}
.x6a_c00346{left:297.000000px;}
.x5a_c00346{left:298.080000px;}
.xde_c00346{left:299.580000px;}
.xaa_c00346{left:301.500000px;}
.x7_c00346{left:304.500000px;}
.x11_c00346{left:306.420000px;}
.xd7_c00346{left:307.500000px;}
.x98_c00346{left:309.000000px;}
.xa8_c00346{left:310.500000px;}
.xb3_c00346{left:312.000000px;}
.x3f_c00346{left:313.500000px;}
.x9f_c00346{left:314.580000px;}
.x2f_c00346{left:316.920000px;}
.x4a_c00346{left:318.000000px;}
.x77_c00346{left:319.500000px;}
.x15_c00346{left:324.000000px;}
.xea_c00346{left:325.500000px;}
.x40_c00346{left:327.000000px;}
.x8e_c00346{left:328.500000px;}
.xc3_c00346{left:334.500000px;}
.x23_c00346{left:335.580000px;}
.xf5_c00346{left:337.080000px;}
.xfa_c00346{left:339.420000px;}
.xab_c00346{left:341.580000px;}
.x12_c00346{left:343.500000px;}
.xcd_c00346{left:345.855000px;}
.x54_c00346{left:347.580000px;}
.x8_c00346{left:349.920000px;}
.x81_c00346{left:351.420000px;}
.x8f_c00346{left:352.500000px;}
.x30_c00346{left:355.920000px;}
.x6b_c00346{left:358.080000px;}
.x16_c00346{left:360.420000px;}
.xb9_c00346{left:364.920000px;}
.x41_c00346{left:366.000000px;}
.x24_c00346{left:367.500000px;}
.x82_c00346{left:369.420000px;}
.x78_c00346{left:372.420000px;}
.x64_c00346{left:375.000000px;}
.x39_c00346{left:379.080000px;}
.x4b_c00346{left:382.500000px;}
.x99_c00346{left:384.000000px;}
.xdf_c00346{left:385.920000px;}
.x17_c00346{left:388.500000px;}
.xf6_c00346{left:391.500000px;}
.xeb_c00346{left:392.580000px;}
.xd8_c00346{left:395.580000px;}
.xa9_c00346{left:397.920000px;}
.x9a_c00346{left:399.000000px;}
.x1_c00346{left:400.500000px;}
.x6c_c00346{left:404.580000px;}
.xef_c00346{left:406.080000px;}
.x83_c00346{left:408.000000px;}
.x31_c00346{left:409.080000px;}
.x5b_c00346{left:410.580000px;}
.x65_c00346{left:412.080000px;}
.xe3_c00346{left:414.420000px;}
.xc1_c00346{left:415.500000px;}
.xf7_c00346{left:417.000000px;}
.xba_c00346{left:418.500000px;}
.xa0_c00346{left:420.000000px;}
.x42_c00346{left:421.500000px;}
.x79_c00346{left:423.420000px;}
.x10c_c00346{left:424.500000px;}
.xfb_c00346{left:426.000000px;}
.x18_c00346{left:430.080000px;}
.xac_c00346{left:432.000000px;}
.xc4_c00346{left:433.500000px;}
.xce_c00346{left:435.000000px;}
.xd9_c00346{left:436.500000px;}
.x9_c00346{left:437.580000px;}
.x32_c00346{left:441.000000px;}
.xf0_c00346{left:442.500000px;}
.x25_c00346{left:444.000000px;}
.x84_c00346{left:448.500000px;}
.x5c_c00346{left:449.580000px;}
.x7a_c00346{left:451.500000px;}
.x6d_c00346{left:453.000000px;}
.x43_c00346{left:454.080000px;}
.xbb_c00346{left:455.580000px;}
.xe4_c00346{left:457.500000px;}
.x10d_c00346{left:459.000000px;}
.xd4_c00346{left:460.080000px;}
.x3a_c00346{left:463.500000px;}
.x5d_c00346{left:467.580000px;}
.x85_c00346{left:469.920000px;}
.x26_c00346{left:471.000000px;}
.x4c_c00346{left:474.000000px;}
.xa1_c00346{left:478.500000px;}
.xf8_c00346{left:482.580000px;}
.x90_c00346{left:484.500000px;}
.x27_c00346{left:487.500000px;}
.x6e_c00346{left:489.000000px;}
.x10e_c00346{left:490.500000px;}
.x103_c00346{left:492.420000px;}
.xc8_c00346{left:493.500000px;}
.xa2_c00346{left:495.000000px;}
.x86_c00346{left:496.500000px;}
.xfc_c00346{left:499.500000px;}
.x19_c00346{left:504.000000px;}
.xcf_c00346{left:505.500000px;}
.xad_c00346{left:507.000000px;}
.xe5_c00346{left:508.500000px;}
.xa_c00346{left:510.000000px;}
.xa3_c00346{left:511.500000px;}
.x33_c00346{left:514.500000px;}
.xf1_c00346{left:516.000000px;}
.xc9_c00346{left:518.580000px;}
.xb4_c00346{left:520.920000px;}
.x91_c00346{left:522.000000px;}
.x4d_c00346{left:524.580000px;}
.xc5_c00346{left:526.500000px;}
.xec_c00346{left:527.580000px;}
.x9b_c00346{left:530.580000px;}
.xae_c00346{left:532.080000px;}
.x6f_c00346{left:534.000000px;}
.x7b_c00346{left:535.500000px;}
.x92_c00346{left:537.000000px;}
.xfd_c00346{left:538.920000px;}
.xa4_c00346{left:540.000000px;}
.xb_c00346{left:541.080000px;}
.x34_c00346{left:543.000000px;}
.x44_c00346{left:544.080000px;}
.x66_c00346{left:546.000000px;}
.x100_c00346{left:547.500000px;}
.x70_c00346{left:549.000000px;}
.x1a_c00346{left:550.920000px;}
.x3b_c00346{left:553.080000px;}
.xbc_c00346{left:555.420000px;}
.x5e_c00346{left:558.000000px;}
.xc2_c00346{left:559.920000px;}
.x28_c00346{left:564.420000px;}
.xfe_c00346{left:565.500000px;}
.x108_c00346{left:567.000000px;}
.x87_c00346{left:570.000000px;}
.xda_c00346{left:571.500000px;}
.x1b_c00346{left:574.920000px;}
.x93_c00346{left:576.420000px;}
.xe0_c00346{left:578.580000px;}
.xe6_c00346{left:583.500000px;}
.x4e_c00346{left:586.500000px;}
.xf2_c00346{left:588.000000px;}
.xd0_c00346{left:589.500000px;}
.xc_c00346{left:591.420000px;}
.x29_c00346{left:592.500000px;}
.x67_c00346{left:594.420000px;}
.xca_c00346{left:595.500000px;}
.xa5_c00346{left:598.500000px;}
.xaf_c00346{left:600.000000px;}
.x1c_c00346{left:601.500000px;}
.xd5_c00346{left:603.420000px;}
.x4f_c00346{left:607.500000px;}
.xbd_c00346{left:609.420000px;}
.x88_c00346{left:612.000000px;}
.x7c_c00346{left:615.000000px;}
.xc6_c00346{left:616.080000px;}
.x71_c00346{left:617.580000px;}
.xb0_c00346{left:621.000000px;}
.x94_c00346{left:622.920000px;}
.xe1_c00346{left:624.420000px;}
.xf3_c00346{left:627.000000px;}
.x45_c00346{left:628.500000px;}
.x55_c00346{left:630.000000px;}
.x3c_c00346{left:631.920000px;}
.x5f_c00346{left:633.000000px;}
.x7d_c00346{left:637.920000px;}
.x72_c00346{left:639.420000px;}
.x1d_c00346{left:643.500000px;}
.xb5_c00346{left:645.000000px;}
.xbe_c00346{left:647.145000px;}
.x60_c00346{left:649.920000px;}
.xb1_c00346{left:651.420000px;}
.x56_c00346{left:652.500000px;}
.x101_c00346{left:655.500000px;}
.x50_c00346{left:657.000000px;}
.xe7_c00346{left:658.920000px;}
.x95_c00346{left:661.500000px;}
.x57_c00346{left:666.000000px;}
.x35_c00346{left:667.920000px;}
.x73_c00346{left:669.000000px;}
.x46_c00346{left:670.500000px;}
.xd_c00346{left:671.580000px;}
.x89_c00346{left:675.000000px;}
.x96_c00346{left:676.500000px;}
.xb6_c00346{left:677.580000px;}
.xdc_c00346{left:679.500000px;}
.x106_c00346{left:682.920000px;}
.x2a_c00346{left:685.500000px;}
.x47_c00346{left:687.000000px;}
.xd6_c00346{left:688.500000px;}
.xdb_c00346{left:689.580000px;}
.x61_c00346{left:694.500000px;}
.x51_c00346{left:696.000000px;}
.x3d_c00346{left:697.500000px;}
.x1e_c00346{left:700.920000px;}
.xe2_c00346{left:702.000000px;}
.x2_c00346{left:703.080000px;}
.x8a_c00346{left:705.000000px;}
.x48_c00346{left:706.920000px;}
.xa6_c00346{left:708.420000px;}
.x109_c00346{left:711.420000px;}
.x2b_c00346{left:714.000000px;}
.x9c_c00346{left:715.500000px;}
.x36_c00346{left:717.000000px;}
.x107_c00346{left:721.500000px;}
@media print{
.v0_c00346{vertical-align:0.000000pt;}
.ls0_c00346{letter-spacing:0.000000pt;}
.ws0_c00346{word-spacing:-4.005566pt;}
.ws1_c00346{word-spacing:0.000000pt;}
.fs7_c00346{font-size:3.040000pt;}
.fs4_c00346{font-size:16.640000pt;}
.fs0_c00346{font-size:18.133333pt;}
.fs2_c00346{font-size:22.666667pt;}
.fs1_c00346{font-size:25.706667pt;}
.fs5_c00346{font-size:28.746667pt;}
.fs3_c00346{font-size:31.733333pt;}
.fs6_c00346{font-size:34.773333pt;}
.y0_c00346{bottom:0.000000pt;}
.yd5_c00346{bottom:223.973333pt;}
.yd6_c00346{bottom:224.360000pt;}
.yd7_c00346{bottom:225.893333pt;}
.ycd_c00346{bottom:241.106667pt;}
.yd4_c00346{bottom:241.306667pt;}
.yd1_c00346{bottom:241.693333pt;}
.yd0_c00346{bottom:242.066667pt;}
.ycf_c00346{bottom:242.440000pt;}
.ycc_c00346{bottom:243.026667pt;}
.yce_c00346{bottom:243.226667pt;}
.yd2_c00346{bottom:243.973333pt;}
.yd3_c00346{bottom:244.360000pt;}
.ycb_c00346{bottom:258.826667pt;}
.yca_c00346{bottom:259.773333pt;}
.yc9_c00346{bottom:261.306667pt;}
.yc7_c00346{bottom:261.693333pt;}
.yc8_c00346{bottom:262.066667pt;}
.yc5_c00346{bottom:276.733333pt;}
.yc2_c00346{bottom:277.106667pt;}
.yc3_c00346{bottom:279.026667pt;}
.yc6_c00346{bottom:279.226667pt;}
.yc4_c00346{bottom:279.973333pt;}
.ybd_c00346{bottom:294.440000pt;}
.yc0_c00346{bottom:294.640000pt;}
.ybf_c00346{bottom:295.773333pt;}
.ybe_c00346{bottom:296.360000pt;}
.yc1_c00346{bottom:296.560000pt;}
.ybc_c00346{bottom:297.306667pt;}
.yba_c00346{bottom:311.773333pt;}
.ybb_c00346{bottom:311.973333pt;}
.yb7_c00346{bottom:312.733333pt;}
.yb6_c00346{bottom:313.693333pt;}
.yb9_c00346{bottom:314.640000pt;}
.yb8_c00346{bottom:315.026667pt;}
.yb3_c00346{bottom:329.106667pt;}
.yb5_c00346{bottom:330.440000pt;}
.yb4_c00346{bottom:331.026667pt;}
.yb2_c00346{bottom:332.360000pt;}
.yaf_c00346{bottom:347.773333pt;}
.yb0_c00346{bottom:348.560000pt;}
.yb1_c00346{bottom:349.306667pt;}
.yae_c00346{bottom:349.693333pt;}
.yab_c00346{bottom:365.106667pt;}
.yad_c00346{bottom:365.893333pt;}
.ya8_c00346{bottom:366.066667pt;}
.ya9_c00346{bottom:367.026667pt;}
.yac_c00346{bottom:367.226667pt;}
.yaa_c00346{bottom:367.973333pt;}
.ya3_c00346{bottom:382.440000pt;}
.ya6_c00346{bottom:383.400000pt;}
.ya7_c00346{bottom:383.973333pt;}
.ya5_c00346{bottom:384.360000pt;}
.ya4_c00346{bottom:385.306667pt;}
.ya1_c00346{bottom:398.826667pt;}
.y9f_c00346{bottom:399.400000pt;}
.ya0_c00346{bottom:399.773333pt;}
.y9d_c00346{bottom:400.560000pt;}
.ya2_c00346{bottom:401.693333pt;}
.y9e_c00346{bottom:401.893333pt;}
.y9b_c00346{bottom:417.106667pt;}
.y9c_c00346{bottom:418.066667pt;}
.y9a_c00346{bottom:418.440000pt;}
.y97_c00346{bottom:419.026667pt;}
.y98_c00346{bottom:419.973333pt;}
.y99_c00346{bottom:420.360000pt;}
.y94_c00346{bottom:434.440000pt;}
.y92_c00346{bottom:435.773333pt;}
.y96_c00346{bottom:436.360000pt;}
.y91_c00346{bottom:436.560000pt;}
.y90_c00346{bottom:436.733333pt;}
.y93_c00346{bottom:437.306667pt;}
.y95_c00346{bottom:437.693333pt;}
.y8e_c00346{bottom:453.106667pt;}
.y8d_c00346{bottom:454.640000pt;}
.y8f_c00346{bottom:455.026667pt;}
.y8b_c00346{bottom:470.440000pt;}
.y8c_c00346{bottom:471.026667pt;}
.y88_c00346{bottom:471.226667pt;}
.y8a_c00346{bottom:471.400000pt;}
.y89_c00346{bottom:472.360000pt;}
.y87_c00346{bottom:487.773333pt;}
.y86_c00346{bottom:489.693333pt;}
.y84_c00346{bottom:505.106667pt;}
.y85_c00346{bottom:505.306667pt;}
.y80_c00346{bottom:506.440000pt;}
.y83_c00346{bottom:507.026667pt;}
.y82_c00346{bottom:507.973333pt;}
.y81_c00346{bottom:508.360000pt;}
.y7f_c00346{bottom:521.306667pt;}
.y7a_c00346{bottom:521.693333pt;}
.y7b_c00346{bottom:523.773333pt;}
.y7e_c00346{bottom:524.360000pt;}
.y7d_c00346{bottom:524.560000pt;}
.y7c_c00346{bottom:524.733333pt;}
.y79_c00346{bottom:525.693333pt;}
.y77_c00346{bottom:539.026667pt;}
.y78_c00346{bottom:539.773333pt;}
.y71_c00346{bottom:541.106667pt;}
.y75_c00346{bottom:541.693333pt;}
.y73_c00346{bottom:541.893333pt;}
.y74_c00346{bottom:542.066667pt;}
.y76_c00346{bottom:542.640000pt;}
.y72_c00346{bottom:543.026667pt;}
.y70_c00346{bottom:557.306667pt;}
.y6f_c00346{bottom:558.066667pt;}
.y6b_c00346{bottom:558.440000pt;}
.y6d_c00346{bottom:559.226667pt;}
.y6c_c00346{bottom:559.400000pt;}
.y6e_c00346{bottom:560.360000pt;}
.y6a_c00346{bottom:575.773333pt;}
.y69_c00346{bottom:576.560000pt;}
.y68_c00346{bottom:577.306667pt;}
.y67_c00346{bottom:577.693333pt;}
.y65_c00346{bottom:592.360000pt;}
.y62_c00346{bottom:593.106667pt;}
.y66_c00346{bottom:594.266667pt;}
.y64_c00346{bottom:594.440000pt;}
.y63_c00346{bottom:595.026667pt;}
.y61_c00346{bottom:596.360000pt;}
.y60_c00346{bottom:610.440000pt;}
.y5f_c00346{bottom:611.773333pt;}
.y5d_c00346{bottom:612.360000pt;}
.y5c_c00346{bottom:612.560000pt;}
.y5e_c00346{bottom:613.306667pt;}
.y56_c00346{bottom:627.773333pt;}
.y5b_c00346{bottom:627.973333pt;}
.y59_c00346{bottom:629.693333pt;}
.y5a_c00346{bottom:629.893333pt;}
.y58_c00346{bottom:630.640000pt;}
.y57_c00346{bottom:631.040000pt;}
.y54_c00346{bottom:645.106667pt;}
.y53_c00346{bottom:646.440000pt;}
.y55_c00346{bottom:647.226667pt;}
.y52_c00346{bottom:662.440000pt;}
.y4f_c00346{bottom:663.773333pt;}
.y50_c00346{bottom:664.360000pt;}
.y51_c00346{bottom:665.306667pt;}
.y4e_c00346{bottom:665.693333pt;}
.y4b_c00346{bottom:680.733333pt;}
.y4c_c00346{bottom:681.893333pt;}
.y4a_c00346{bottom:682.066667pt;}
.y4d_c00346{bottom:682.640000pt;}
.y49_c00346{bottom:683.026667pt;}
.y48_c00346{bottom:698.066667pt;}
.y45_c00346{bottom:698.440000pt;}
.y46_c00346{bottom:699.226667pt;}
.y47_c00346{bottom:699.400000pt;}
.y44_c00346{bottom:699.973333pt;}
.y43_c00346{bottom:700.360000pt;}
.y42_c00346{bottom:715.400000pt;}
.y3f_c00346{bottom:715.773333pt;}
.y41_c00346{bottom:716.560000pt;}
.y40_c00346{bottom:716.933333pt;}
.y3e_c00346{bottom:717.306667pt;}
.y3d_c00346{bottom:717.693333pt;}
.y39_c00346{bottom:732.160000pt;}
.y3a_c00346{bottom:733.106667pt;}
.y3c_c00346{bottom:735.026667pt;}
.y3b_c00346{bottom:735.226667pt;}
.y36_c00346{bottom:749.693333pt;}
.y38_c00346{bottom:750.440000pt;}
.y33_c00346{bottom:751.773333pt;}
.y35_c00346{bottom:752.360000pt;}
.y37_c00346{bottom:752.560000pt;}
.y34_c00346{bottom:753.693333pt;}
.y2f_c00346{bottom:769.106667pt;}
.y30_c00346{bottom:769.693333pt;}
.y32_c00346{bottom:769.893333pt;}
.y31_c00346{bottom:771.026667pt;}
.y2c_c00346{bottom:784.360000pt;}
.y2a_c00346{bottom:786.440000pt;}
.y2e_c00346{bottom:787.226667pt;}
.y2d_c00346{bottom:787.973333pt;}
.y2b_c00346{bottom:788.360000pt;}
.y27_c00346{bottom:803.773333pt;}
.y29_c00346{bottom:804.560000pt;}
.y28_c00346{bottom:805.306667pt;}
.y26_c00346{bottom:805.693333pt;}
.y24_c00346{bottom:820.733333pt;}
.y23_c00346{bottom:821.106667pt;}
.y25_c00346{bottom:822.640000pt;}
.y22_c00346{bottom:823.026667pt;}
.y20_c00346{bottom:837.693333pt;}
.y21_c00346{bottom:838.066667pt;}
.y1c_c00346{bottom:838.440000pt;}
.y1e_c00346{bottom:839.226667pt;}
.y1b_c00346{bottom:839.400000pt;}
.y1d_c00346{bottom:840.360000pt;}
.y1f_c00346{bottom:840.560000pt;}
.y19_c00346{bottom:855.773333pt;}
.y1a_c00346{bottom:857.693333pt;}
.y18_c00346{bottom:875.026667pt;}
.y17_c00346{bottom:875.226667pt;}
.y16_c00346{bottom:875.973333pt;}
.y12_c00346{bottom:890.440000pt;}
.y14_c00346{bottom:891.400000pt;}
.y15_c00346{bottom:891.973333pt;}
.y13_c00346{bottom:892.360000pt;}
.y11_c00346{bottom:892.560000pt;}
.yf_c00346{bottom:907.773333pt;}
.yc_c00346{bottom:909.106667pt;}
.yd_c00346{bottom:909.693333pt;}
.ye_c00346{bottom:909.893333pt;}
.y10_c00346{bottom:910.640000pt;}
.yb_c00346{bottom:911.026667pt;}
.ya_c00346{bottom:925.693333pt;}
.y8_c00346{bottom:926.440000pt;}
.y9_c00346{bottom:927.973333pt;}
.y7_c00346{bottom:928.360000pt;}
.y5_c00346{bottom:943.773333pt;}
.y4_c00346{bottom:945.306667pt;}
.y3_c00346{bottom:945.693333pt;}
.y6_c00346{bottom:946.640000pt;}
.y2_c00346{bottom:976.360000pt;}
.y1_c00346{bottom:979.600000pt;}
.h8_c00346{height:3.739141pt;}
.h5_c00346{height:20.466875pt;}
.h1_c00346{height:22.303646pt;}
.h3_c00346{height:27.879557pt;}
.h2_c00346{height:31.618698pt;}
.h6_c00346{height:35.357839pt;}
.h4_c00346{height:39.031380pt;}
.h7_c00346{height:42.770521pt;}
.h0_c00346{height:1186.666667pt;}
.w0_c00346{width:782.666667pt;}
.x0_c00346{left:0.000000pt;}
.x3_c00346{left:134.293333pt;}
.x74_c00346{left:135.626667pt;}
.x13_c00346{left:147.626667pt;}
.x68_c00346{left:148.960000pt;}
.xed_c00346{left:152.000000pt;}
.x2c_c00346{left:153.333333pt;}
.x10a_c00346{left:159.040000pt;}
.x7e_c00346{left:160.000000pt;}
.x4_c00346{left:163.040000pt;}
.x1f_c00346{left:165.333333pt;}
.xd1_c00346{left:166.666667pt;}
.xff_c00346{left:168.000000pt;}
.x49_c00346{left:169.706667pt;}
.xe_c00346{left:170.666667pt;}
.x62_c00346{left:173.706667pt;}
.xb7_c00346{left:175.040000pt;}
.x52_c00346{left:177.333333pt;}
.xf4_c00346{left:178.293333pt;}
.x58_c00346{left:179.626667pt;}
.x37_c00346{left:181.706667pt;}
.x7f_c00346{left:183.626667pt;}
.x20_c00346{left:185.333333pt;}
.xe8_c00346{left:187.626667pt;}
.x10b_c00346{left:190.666667pt;}
.x102_c00346{left:192.373333pt;}
.x9d_c00346{left:193.706667pt;}
.xd2_c00346{left:194.666667pt;}
.xa7_c00346{left:196.000000pt;}
.x8b_c00346{left:197.706667pt;}
.x5_c00346{left:200.960000pt;}
.x3e_c00346{left:202.666667pt;}
.x2d_c00346{left:203.626667pt;}
.x63_c00346{left:204.960000pt;}
.x104_c00346{left:206.293333pt;}
.xc7_c00346{left:208.000000pt;}
.xee_c00346{left:212.000000pt;}
.x97_c00346{left:213.706667pt;}
.x21_c00346{left:214.666667pt;}
.xf_c00346{left:216.000000pt;}
.x80_c00346{left:217.333333pt;}
.xcb_c00346{left:218.666667pt;}
.xbf_c00346{left:220.000000pt;}
.xb2_c00346{left:221.333333pt;}
.x105_c00346{left:225.706667pt;}
.x8c_c00346{left:227.040000pt;}
.x75_c00346{left:228.000000pt;}
.xdd_c00346{left:229.333333pt;}
.x22_c00346{left:232.000000pt;}
.x10_c00346{left:232.960000pt;}
.x59_c00346{left:234.666667pt;}
.xc0_c00346{left:237.706667pt;}
.xd3_c00346{left:238.666667pt;}
.xe9_c00346{left:240.960000pt;}
.x6_c00346{left:242.666667pt;}
.x76_c00346{left:245.333333pt;}
.x9e_c00346{left:246.666667pt;}
.x69_c00346{left:248.960000pt;}
.xcc_c00346{left:252.000000pt;}
.x2e_c00346{left:253.333333pt;}
.xb8_c00346{left:255.626667pt;}
.x14_c00346{left:257.333333pt;}
.x8d_c00346{left:258.666667pt;}
.xf9_c00346{left:260.000000pt;}
.x38_c00346{left:260.960000pt;}
.x53_c00346{left:262.666667pt;}
.x6a_c00346{left:264.000000pt;}
.x5a_c00346{left:264.960000pt;}
.xde_c00346{left:266.293333pt;}
.xaa_c00346{left:268.000000pt;}
.x7_c00346{left:270.666667pt;}
.x11_c00346{left:272.373333pt;}
.xd7_c00346{left:273.333333pt;}
.x98_c00346{left:274.666667pt;}
.xa8_c00346{left:276.000000pt;}
.xb3_c00346{left:277.333333pt;}
.x3f_c00346{left:278.666667pt;}
.x9f_c00346{left:279.626667pt;}
.x2f_c00346{left:281.706667pt;}
.x4a_c00346{left:282.666667pt;}
.x77_c00346{left:284.000000pt;}
.x15_c00346{left:288.000000pt;}
.xea_c00346{left:289.333333pt;}
.x40_c00346{left:290.666667pt;}
.x8e_c00346{left:292.000000pt;}
.xc3_c00346{left:297.333333pt;}
.x23_c00346{left:298.293333pt;}
.xf5_c00346{left:299.626667pt;}
.xfa_c00346{left:301.706667pt;}
.xab_c00346{left:303.626667pt;}
.x12_c00346{left:305.333333pt;}
.xcd_c00346{left:307.426667pt;}
.x54_c00346{left:308.960000pt;}
.x8_c00346{left:311.040000pt;}
.x81_c00346{left:312.373333pt;}
.x8f_c00346{left:313.333333pt;}
.x30_c00346{left:316.373333pt;}
.x6b_c00346{left:318.293333pt;}
.x16_c00346{left:320.373333pt;}
.xb9_c00346{left:324.373333pt;}
.x41_c00346{left:325.333333pt;}
.x24_c00346{left:326.666667pt;}
.x82_c00346{left:328.373333pt;}
.x78_c00346{left:331.040000pt;}
.x64_c00346{left:333.333333pt;}
.x39_c00346{left:336.960000pt;}
.x4b_c00346{left:340.000000pt;}
.x99_c00346{left:341.333333pt;}
.xdf_c00346{left:343.040000pt;}
.x17_c00346{left:345.333333pt;}
.xf6_c00346{left:348.000000pt;}
.xeb_c00346{left:348.960000pt;}
.xd8_c00346{left:351.626667pt;}
.xa9_c00346{left:353.706667pt;}
.x9a_c00346{left:354.666667pt;}
.x1_c00346{left:356.000000pt;}
.x6c_c00346{left:359.626667pt;}
.xef_c00346{left:360.960000pt;}
.x83_c00346{left:362.666667pt;}
.x31_c00346{left:363.626667pt;}
.x5b_c00346{left:364.960000pt;}
.x65_c00346{left:366.293333pt;}
.xe3_c00346{left:368.373333pt;}
.xc1_c00346{left:369.333333pt;}
.xf7_c00346{left:370.666667pt;}
.xba_c00346{left:372.000000pt;}
.xa0_c00346{left:373.333333pt;}
.x42_c00346{left:374.666667pt;}
.x79_c00346{left:376.373333pt;}
.x10c_c00346{left:377.333333pt;}
.xfb_c00346{left:378.666667pt;}
.x18_c00346{left:382.293333pt;}
.xac_c00346{left:384.000000pt;}
.xc4_c00346{left:385.333333pt;}
.xce_c00346{left:386.666667pt;}
.xd9_c00346{left:388.000000pt;}
.x9_c00346{left:388.960000pt;}
.x32_c00346{left:392.000000pt;}
.xf0_c00346{left:393.333333pt;}
.x25_c00346{left:394.666667pt;}
.x84_c00346{left:398.666667pt;}
.x5c_c00346{left:399.626667pt;}
.x7a_c00346{left:401.333333pt;}
.x6d_c00346{left:402.666667pt;}
.x43_c00346{left:403.626667pt;}
.xbb_c00346{left:404.960000pt;}
.xe4_c00346{left:406.666667pt;}
.x10d_c00346{left:408.000000pt;}
.xd4_c00346{left:408.960000pt;}
.x3a_c00346{left:412.000000pt;}
.x5d_c00346{left:415.626667pt;}
.x85_c00346{left:417.706667pt;}
.x26_c00346{left:418.666667pt;}
.x4c_c00346{left:421.333333pt;}
.xa1_c00346{left:425.333333pt;}
.xf8_c00346{left:428.960000pt;}
.x90_c00346{left:430.666667pt;}
.x27_c00346{left:433.333333pt;}
.x6e_c00346{left:434.666667pt;}
.x10e_c00346{left:436.000000pt;}
.x103_c00346{left:437.706667pt;}
.xc8_c00346{left:438.666667pt;}
.xa2_c00346{left:440.000000pt;}
.x86_c00346{left:441.333333pt;}
.xfc_c00346{left:444.000000pt;}
.x19_c00346{left:448.000000pt;}
.xcf_c00346{left:449.333333pt;}
.xad_c00346{left:450.666667pt;}
.xe5_c00346{left:452.000000pt;}
.xa_c00346{left:453.333333pt;}
.xa3_c00346{left:454.666667pt;}
.x33_c00346{left:457.333333pt;}
.xf1_c00346{left:458.666667pt;}
.xc9_c00346{left:460.960000pt;}
.xb4_c00346{left:463.040000pt;}
.x91_c00346{left:464.000000pt;}
.x4d_c00346{left:466.293333pt;}
.xc5_c00346{left:468.000000pt;}
.xec_c00346{left:468.960000pt;}
.x9b_c00346{left:471.626667pt;}
.xae_c00346{left:472.960000pt;}
.x6f_c00346{left:474.666667pt;}
.x7b_c00346{left:476.000000pt;}
.x92_c00346{left:477.333333pt;}
.xfd_c00346{left:479.040000pt;}
.xa4_c00346{left:480.000000pt;}
.xb_c00346{left:480.960000pt;}
.x34_c00346{left:482.666667pt;}
.x44_c00346{left:483.626667pt;}
.x66_c00346{left:485.333333pt;}
.x100_c00346{left:486.666667pt;}
.x70_c00346{left:488.000000pt;}
.x1a_c00346{left:489.706667pt;}
.x3b_c00346{left:491.626667pt;}
.xbc_c00346{left:493.706667pt;}
.x5e_c00346{left:496.000000pt;}
.xc2_c00346{left:497.706667pt;}
.x28_c00346{left:501.706667pt;}
.xfe_c00346{left:502.666667pt;}
.x108_c00346{left:504.000000pt;}
.x87_c00346{left:506.666667pt;}
.xda_c00346{left:508.000000pt;}
.x1b_c00346{left:511.040000pt;}
.x93_c00346{left:512.373333pt;}
.xe0_c00346{left:514.293333pt;}
.xe6_c00346{left:518.666667pt;}
.x4e_c00346{left:521.333333pt;}
.xf2_c00346{left:522.666667pt;}
.xd0_c00346{left:524.000000pt;}
.xc_c00346{left:525.706667pt;}
.x29_c00346{left:526.666667pt;}
.x67_c00346{left:528.373333pt;}
.xca_c00346{left:529.333333pt;}
.xa5_c00346{left:532.000000pt;}
.xaf_c00346{left:533.333333pt;}
.x1c_c00346{left:534.666667pt;}
.xd5_c00346{left:536.373333pt;}
.x4f_c00346{left:540.000000pt;}
.xbd_c00346{left:541.706667pt;}
.x88_c00346{left:544.000000pt;}
.x7c_c00346{left:546.666667pt;}
.xc6_c00346{left:547.626667pt;}
.x71_c00346{left:548.960000pt;}
.xb0_c00346{left:552.000000pt;}
.x94_c00346{left:553.706667pt;}
.xe1_c00346{left:555.040000pt;}
.xf3_c00346{left:557.333333pt;}
.x45_c00346{left:558.666667pt;}
.x55_c00346{left:560.000000pt;}
.x3c_c00346{left:561.706667pt;}
.x5f_c00346{left:562.666667pt;}
.x7d_c00346{left:567.040000pt;}
.x72_c00346{left:568.373333pt;}
.x1d_c00346{left:572.000000pt;}
.xb5_c00346{left:573.333333pt;}
.xbe_c00346{left:575.240000pt;}
.x60_c00346{left:577.706667pt;}
.xb1_c00346{left:579.040000pt;}
.x56_c00346{left:580.000000pt;}
.x101_c00346{left:582.666667pt;}
.x50_c00346{left:584.000000pt;}
.xe7_c00346{left:585.706667pt;}
.x95_c00346{left:588.000000pt;}
.x57_c00346{left:592.000000pt;}
.x35_c00346{left:593.706667pt;}
.x73_c00346{left:594.666667pt;}
.x46_c00346{left:596.000000pt;}
.xd_c00346{left:596.960000pt;}
.x89_c00346{left:600.000000pt;}
.x96_c00346{left:601.333333pt;}
.xb6_c00346{left:602.293333pt;}
.xdc_c00346{left:604.000000pt;}
.x106_c00346{left:607.040000pt;}
.x2a_c00346{left:609.333333pt;}
.x47_c00346{left:610.666667pt;}
.xd6_c00346{left:612.000000pt;}
.xdb_c00346{left:612.960000pt;}
.x61_c00346{left:617.333333pt;}
.x51_c00346{left:618.666667pt;}
.x3d_c00346{left:620.000000pt;}
.x1e_c00346{left:623.040000pt;}
.xe2_c00346{left:624.000000pt;}
.x2_c00346{left:624.960000pt;}
.x8a_c00346{left:626.666667pt;}
.x48_c00346{left:628.373333pt;}
.xa6_c00346{left:629.706667pt;}
.x109_c00346{left:632.373333pt;}
.x2b_c00346{left:634.666667pt;}
.x9c_c00346{left:636.000000pt;}
.x36_c00346{left:637.333333pt;}
.x107_c00346{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d37f53995c38d47da1fd8700.woff2')format("woff");}.ff1_c00347{font-family:ff1_c00347;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mdc_c00347{transform:matrix(0.312353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312353,0.000000,0.000000,0.250000,0,0);}
.m4_c00347{transform:matrix(0.328221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328221,0.000000,0.000000,0.250000,0,0);}
.m20_c00347{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m43_c00347{transform:matrix(0.344958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344958,0.000000,0.000000,0.250000,0,0);}
.m9_c00347{transform:matrix(0.346218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346218,0.000000,0.000000,0.250000,0,0);}
.maf_c00347{transform:matrix(0.354824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354824,0.000000,0.000000,0.250000,0,0);}
.m12_c00347{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m34_c00347{transform:matrix(0.365126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365126,0.000000,0.000000,0.250000,0,0);}
.m0_c00347{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m2c_c00347{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m3e_c00347{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mc_c00347{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.mac_c00347{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m47_c00347{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m22_c00347{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m76_c00347{transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);}
.mad_c00347{transform:matrix(0.378942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378942,0.000000,0.000000,0.250000,0,0);}
.m86_c00347{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m2a_c00347{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mba_c00347{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.mb5_c00347{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m3c_c00347{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m32_c00347{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mb0_c00347{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.m46_c00347{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m65_c00347{transform:matrix(0.396472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396472,0.000000,0.000000,0.250000,0,0);}
.m1d_c00347{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m3d_c00347{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.m82_c00347{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m2b_c00347{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m39_c00347{transform:matrix(0.403758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403758,0.000000,0.000000,0.250000,0,0);}
.m79_c00347{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m71_c00347{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.mc4_c00347{transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00347{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m56_c00347{transform:matrix(0.408742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408742,0.000000,0.000000,0.250000,0,0);}
.m2e_c00347{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m68_c00347{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m94_c00347{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m4b_c00347{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m61_c00347{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m3_c00347{transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);}
.m6f_c00347{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.mbd_c00347{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m74_c00347{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m96_c00347{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mc0_c00347{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m7e_c00347{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m2f_c00347{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.ma5_c00347{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m9e_c00347{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m1e_c00347{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m4c_c00347{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m4d_c00347{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.ma1_c00347{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m31_c00347{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m9f_c00347{transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);}
.m19_c00347{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.mc3_c00347{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m5_c00347{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m5d_c00347{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.m41_c00347{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m7b_c00347{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m7a_c00347{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mbe_c00347{transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);}
.m17_c00347{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m70_c00347{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m69_c00347{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m8a_c00347{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m3a_c00347{transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);}
.me_c00347{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m36_c00347{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mc9_c00347{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mb_c00347{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.mbb_c00347{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.md4_c00347{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.mb3_c00347{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00347{transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);}
.me0_c00347{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.m55_c00347{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m75_c00347{transform:matrix(0.472269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472269,0.000000,0.000000,0.250000,0,0);}
.m5e_c00347{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mbf_c00347{transform:matrix(0.476872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476872,0.000000,0.000000,0.250000,0,0);}
.m7_c00347{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.mca_c00347{transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);}
.m18_c00347{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m4a_c00347{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m67_c00347{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.md9_c00347{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m25_c00347{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m44_c00347{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m8c_c00347{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.me1_c00347{transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);}
.m66_c00347{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.ma3_c00347{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.mc6_c00347{transform:matrix(0.495192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495192,0.000000,0.000000,0.250000,0,0);}
.m8_c00347{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);}
.m4f_c00347{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m9b_c00347{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m5c_c00347{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m1f_c00347{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.me3_c00347{transform:matrix(0.509615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509615,0.000000,0.000000,0.250000,0,0);}
.m5a_c00347{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m28_c00347{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m38_c00347{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m90_c00347{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m7d_c00347{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m59_c00347{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mb7_c00347{transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);}
.m89_c00347{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m80_c00347{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m3b_c00347{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m30_c00347{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.ma2_c00347{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m97_c00347{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.maa_c00347{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m49_c00347{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m40_c00347{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.md1_c00347{transform:matrix(0.524229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524229,0.000000,0.000000,0.250000,0,0);}
.m6_c00347{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.ma4_c00347{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m27_c00347{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m7c_c00347{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m10_c00347{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.me4_c00347{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.mbc_c00347{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.ma0_c00347{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m16_c00347{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.ma_c00347{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m35_c00347{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m8d_c00347{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mab_c00347{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m13_c00347{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mb8_c00347{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m95_c00347{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m33_c00347{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m51_c00347{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m9a_c00347{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m60_c00347{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m4e_c00347{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m29_c00347{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m85_c00347{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mcb_c00347{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m6a_c00347{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m73_c00347{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m50_c00347{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.ma8_c00347{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m9c_c00347{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.md_c00347{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m1a_c00347{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m5b_c00347{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m92_c00347{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m83_c00347{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m42_c00347{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m24_c00347{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mae_c00347{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m6e_c00347{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m5f_c00347{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m45_c00347{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.md3_c00347{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m2_c00347{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.mf_c00347{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m81_c00347{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m52_c00347{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m99_c00347{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m11_c00347{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m84_c00347{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m57_c00347{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.ma6_c00347{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m6b_c00347{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m21_c00347{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m1c_c00347{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m1b_c00347{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m14_c00347{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.md2_c00347{transform:matrix(0.602564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602564,0.000000,0.000000,0.250000,0,0);}
.ma7_c00347{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.mc5_c00347{transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);}
.m1_c00347{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m7f_c00347{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mc1_c00347{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m3f_c00347{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mb2_c00347{transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);}
.mb9_c00347{transform:matrix(0.619853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619853,0.000000,0.000000,0.250000,0,0);}
.ma9_c00347{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m23_c00347{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);}
.mb6_c00347{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.mb4_c00347{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m48_c00347{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m87_c00347{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m15_c00347{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.me2_c00347{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.m64_c00347{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.mde_c00347{transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);}
.m63_c00347{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m53_c00347{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mdf_c00347{transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);}
.mc8_c00347{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m8b_c00347{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m77_c00347{transform:matrix(0.695539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695539,0.000000,0.000000,0.250000,0,0);}
.mcc_c00347{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.m8e_c00347{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.mda_c00347{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m72_c00347{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.mb1_c00347{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m62_c00347{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m88_c00347{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.md6_c00347{transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);}
.m2d_c00347{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.md8_c00347{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.m26_c00347{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m78_c00347{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m91_c00347{transform:matrix(0.736765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736765,0.000000,0.000000,0.250000,0,0);}
.md0_c00347{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.mdb_c00347{transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);}
.mcd_c00347{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m58_c00347{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mdd_c00347{transform:matrix(0.756608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756608,0.000000,0.000000,0.250000,0,0);}
.m6c_c00347{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m93_c00347{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m37_c00347{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m98_c00347{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.me5_c00347{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m9d_c00347{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mce_c00347{transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);}
.md5_c00347{transform:matrix(0.805066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805066,0.000000,0.000000,0.250000,0,0);}
.m8f_c00347{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m54_c00347{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.md7_c00347{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m6d_c00347{transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);}
.mc7_c00347{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.v1_c00347{vertical-align:-6.000000px;}
.v0_c00347{vertical-align:0.000000px;}
.v2_c00347{vertical-align:6.000000px;}
.ls0_c00347{letter-spacing:0.000000px;}
.sc__c00347{text-shadow:none;}
.sc0_c00347{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00347{-webkit-text-stroke:0px transparent;}
.sc0_c00347{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00347{word-spacing:-16.889280px;}
.ws1_c00347{word-spacing:-14.892000px;}
.ws4_c00347{word-spacing:-9.488124px;}
.ws3_c00347{word-spacing:-9.216610px;}
.ws2_c00347{word-spacing:-3.824270px;}
.ws11_c00347{word-spacing:0.000000px;}
.ws5_c00347{word-spacing:0.590100px;}
.ws7_c00347{word-spacing:11.661937px;}
.ws9_c00347{word-spacing:13.611988px;}
.wsa_c00347{word-spacing:17.262919px;}
.wsd_c00347{word-spacing:23.728109px;}
.wsc_c00347{word-spacing:24.638400px;}
.wsb_c00347{word-spacing:30.234255px;}
.ws8_c00347{word-spacing:36.658489px;}
.wse_c00347{word-spacing:38.813552px;}
.ws6_c00347{word-spacing:47.719225px;}
.ws10_c00347{word-spacing:55.942961px;}
.wsf_c00347{word-spacing:62.565861px;}
._1_c00347{width:5.717127px;}
._0_c00347{width:7.296330px;}
._2_c00347{width:27.574892px;}
._7_c00347{width:31.682189px;}
._3_c00347{width:41.595480px;}
._4_c00347{width:44.612569px;}
._5_c00347{width:54.099377px;}
._6_c00347{width:70.265181px;}
.fc0_c00347{color:transparent;}
.fs8_c00347{font-size:3.420000px;}
.fs9_c00347{font-size:11.880000px;}
.fs7_c00347{font-size:13.620000px;}
.fs6_c00347{font-size:18.720000px;}
.fs1_c00347{font-size:20.400000px;}
.fs4_c00347{font-size:25.500000px;}
.fs2_c00347{font-size:28.920000px;}
.fs5_c00347{font-size:32.340000px;}
.fs0_c00347{font-size:35.700000px;}
.fs3_c00347{font-size:39.120000px;}
.y0_c00347{bottom:0.000000px;}
.y8d_c00347{bottom:250.245000px;}
.y8f_c00347{bottom:250.470000px;}
.y90_c00347{bottom:250.905000px;}
.y8e_c00347{bottom:251.745000px;}
.y8b_c00347{bottom:252.405000px;}
.y8c_c00347{bottom:253.470000px;}
.y89_c00347{bottom:271.245000px;}
.y86_c00347{bottom:271.905000px;}
.y8a_c00347{bottom:272.130000px;}
.y88_c00347{bottom:272.970000px;}
.y87_c00347{bottom:273.405000px;}
.y85_c00347{bottom:289.245000px;}
.y84_c00347{bottom:290.745000px;}
.y82_c00347{bottom:291.405000px;}
.y83_c00347{bottom:292.905000px;}
.y80_c00347{bottom:310.245000px;}
.y7d_c00347{bottom:310.905000px;}
.y7e_c00347{bottom:311.970000px;}
.y7f_c00347{bottom:312.405000px;}
.y81_c00347{bottom:312.630000px;}
.y79_c00347{bottom:329.745000px;}
.y7a_c00347{bottom:331.470000px;}
.y78_c00347{bottom:331.905000px;}
.y7b_c00347{bottom:332.130000px;}
.y7c_c00347{bottom:332.970000px;}
.y77_c00347{bottom:349.245000px;}
.y75_c00347{bottom:350.130000px;}
.y76_c00347{bottom:351.405000px;}
.y72_c00347{bottom:367.905000px;}
.y70_c00347{bottom:370.050000px;}
.y6f_c00347{bottom:370.905000px;}
.y71_c00347{bottom:371.130000px;}
.y74_c00347{bottom:371.970000px;}
.y73_c00347{bottom:372.405000px;}
.y6b_c00347{bottom:387.405000px;}
.y6c_c00347{bottom:390.405000px;}
.y6e_c00347{bottom:390.825000px;}
.y6d_c00347{bottom:391.905000px;}
.y67_c00347{bottom:406.905000px;}
.y69_c00347{bottom:409.245000px;}
.y64_c00347{bottom:409.905000px;}
.y6a_c00347{bottom:410.130000px;}
.y68_c00347{bottom:410.970000px;}
.y65_c00347{bottom:411.405000px;}
.y66_c00347{bottom:412.470000px;}
.y5f_c00347{bottom:426.405000px;}
.y5c_c00347{bottom:427.245000px;}
.y60_c00347{bottom:427.470000px;}
.y61_c00347{bottom:427.905000px;}
.y63_c00347{bottom:428.745000px;}
.y5b_c00347{bottom:429.405000px;}
.y62_c00347{bottom:429.630000px;}
.y5e_c00347{bottom:430.470000px;}
.y5d_c00347{bottom:430.905000px;}
.y5a_c00347{bottom:446.970000px;}
.y58_c00347{bottom:448.245000px;}
.y59_c00347{bottom:450.405000px;}
.y52_c00347{bottom:466.680000px;}
.y57_c00347{bottom:468.825000px;}
.y55_c00347{bottom:469.245000px;}
.y53_c00347{bottom:469.905000px;}
.y51_c00347{bottom:470.130000px;}
.y56_c00347{bottom:470.970000px;}
.y54_c00347{bottom:471.405000px;}
.y4c_c00347{bottom:487.245000px;}
.y50_c00347{bottom:488.745000px;}
.y4d_c00347{bottom:489.405000px;}
.y4e_c00347{bottom:490.470000px;}
.y4f_c00347{bottom:490.905000px;}
.y4b_c00347{bottom:505.905000px;}
.y47_c00347{bottom:506.745000px;}
.y4a_c00347{bottom:508.245000px;}
.y45_c00347{bottom:508.905000px;}
.y49_c00347{bottom:509.130000px;}
.y46_c00347{bottom:509.970000px;}
.y48_c00347{bottom:510.405000px;}
.y41_c00347{bottom:525.405000px;}
.y44_c00347{bottom:526.470000px;}
.y3f_c00347{bottom:526.680000px;}
.y42_c00347{bottom:527.745000px;}
.y3d_c00347{bottom:528.405000px;}
.y43_c00347{bottom:528.630000px;}
.y40_c00347{bottom:528.825000px;}
.y3e_c00347{bottom:529.905000px;}
.y39_c00347{bottom:547.245000px;}
.y3c_c00347{bottom:547.470000px;}
.y3a_c00347{bottom:548.325000px;}
.y38_c00347{bottom:549.405000px;}
.y3b_c00347{bottom:549.630000px;}
.y33_c00347{bottom:565.680000px;}
.y37_c00347{bottom:565.905000px;}
.y35_c00347{bottom:567.630000px;}
.y36_c00347{bottom:567.825000px;}
.y34_c00347{bottom:568.905000px;}
.y2f_c00347{bottom:585.405000px;}
.y2d_c00347{bottom:586.245000px;}
.y30_c00347{bottom:587.550000px;}
.y2e_c00347{bottom:588.405000px;}
.y32_c00347{bottom:588.630000px;}
.y31_c00347{bottom:589.470000px;}
.y2c_c00347{bottom:605.745000px;}
.y28_c00347{bottom:607.245000px;}
.y27_c00347{bottom:607.905000px;}
.y2b_c00347{bottom:608.325000px;}
.y29_c00347{bottom:608.970000px;}
.y2a_c00347{bottom:609.405000px;}
.y23_c00347{bottom:624.825000px;}
.y21_c00347{bottom:625.245000px;}
.y26_c00347{bottom:625.470000px;}
.y22_c00347{bottom:625.905000px;}
.y25_c00347{bottom:626.745000px;}
.y20_c00347{bottom:627.405000px;}
.y24_c00347{bottom:628.905000px;}
.yc3_c00347{bottom:656.130000px;}
.yc4_c00347{bottom:657.195000px;}
.yc0_c00347{bottom:669.630000px;}
.yc1_c00347{bottom:670.695000px;}
.yc2_c00347{bottom:671.130000px;}
.ybd_c00347{bottom:683.775000px;}
.ybe_c00347{bottom:684.195000px;}
.ybf_c00347{bottom:684.630000px;}
.ybc_c00347{bottom:685.695000px;}
.yba_c00347{bottom:697.695000px;}
.yb9_c00347{bottom:698.130000px;}
.ybb_c00347{bottom:699.195000px;}
.yb6_c00347{bottom:709.695000px;}
.yb8_c00347{bottom:711.195000px;}
.yb4_c00347{bottom:711.630000px;}
.yb5_c00347{bottom:712.695000px;}
.yb7_c00347{bottom:713.970000px;}
.yb3_c00347{bottom:726.195000px;}
.yb2_c00347{bottom:738.630000px;}
.yb1_c00347{bottom:739.695000px;}
.yb0_c00347{bottom:752.130000px;}
.yaf_c00347{bottom:753.630000px;}
.yad_c00347{bottom:767.130000px;}
.yae_c00347{bottom:768.195000px;}
.yac_c00347{bottom:780.630000px;}
.yab_c00347{bottom:781.695000px;}
.ya9_c00347{bottom:794.130000px;}
.yaa_c00347{bottom:795.195000px;}
.ya6_c00347{bottom:813.195000px;}
.ya7_c00347{bottom:813.420000px;}
.ya8_c00347{bottom:813.630000px;}
.ya3_c00347{bottom:825.630000px;}
.ya4_c00347{bottom:826.695000px;}
.ya5_c00347{bottom:827.130000px;}
.ya2_c00347{bottom:841.695000px;}
.ya0_c00347{bottom:869.325000px;}
.ya1_c00347{bottom:870.405000px;}
.y9f_c00347{bottom:871.050000px;}
.y9a_c00347{bottom:882.825000px;}
.y9d_c00347{bottom:883.905000px;}
.y9c_c00347{bottom:884.970000px;}
.y9b_c00347{bottom:886.050000px;}
.y9e_c00347{bottom:886.470000px;}
.y98_c00347{bottom:897.825000px;}
.y97_c00347{bottom:899.970000px;}
.y99_c00347{bottom:901.050000px;}
.y96_c00347{bottom:914.325000px;}
.y95_c00347{bottom:914.970000px;}
.y94_c00347{bottom:916.050000px;}
.y93_c00347{bottom:916.470000px;}
.y92_c00347{bottom:934.050000px;}
.y91_c00347{bottom:935.550000px;}
.y1f_c00347{bottom:958.680000px;}
.y1c_c00347{bottom:959.745000px;}
.y1e_c00347{bottom:960.630000px;}
.y1d_c00347{bottom:961.905000px;}
.y1a_c00347{bottom:979.245000px;}
.y19_c00347{bottom:981.405000px;}
.y1b_c00347{bottom:981.630000px;}
.y18_c00347{bottom:998.745000px;}
.y15_c00347{bottom:999.405000px;}
.y13_c00347{bottom:1000.905000px;}
.y16_c00347{bottom:1001.130000px;}
.y17_c00347{bottom:1001.970000px;}
.y14_c00347{bottom:1002.405000px;}
.y11_c00347{bottom:1018.245000px;}
.y12_c00347{bottom:1018.470000px;}
.y10_c00347{bottom:1020.405000px;}
.yf_c00347{bottom:1021.470000px;}
.yb_c00347{bottom:1039.245000px;}
.ya_c00347{bottom:1039.905000px;}
.ye_c00347{bottom:1040.325000px;}
.yd_c00347{bottom:1040.970000px;}
.yc_c00347{bottom:1041.405000px;}
.y6_c00347{bottom:1057.245000px;}
.y4_c00347{bottom:1057.680000px;}
.y9_c00347{bottom:1058.325000px;}
.y8_c00347{bottom:1058.745000px;}
.y7_c00347{bottom:1059.825000px;}
.y3_c00347{bottom:1060.905000px;}
.y5_c00347{bottom:1061.970000px;}
.y1_c00347{bottom:1097.745000px;}
.y2_c00347{bottom:1099.050000px;}
.h9_c00347{height:4.206533px;}
.hb_c00347{height:14.612168px;}
.h8_c00347{height:16.752334px;}
.ha_c00347{height:22.752334px;}
.h7_c00347{height:23.025234px;}
.h2_c00347{height:25.091602px;}
.h5_c00347{height:31.364502px;}
.h3_c00347{height:35.571035px;}
.h6_c00347{height:39.777568px;}
.h1_c00347{height:43.910303px;}
.h4_c00347{height:48.116836px;}
.h0_c00347{height:1335.000000px;}
.w0_c00347{width:880.500000px;}
.x0_c00347{left:0.000000px;}
.x4c_c00347{left:151.920000px;}
.x1_c00347{left:153.000000px;}
.x3e_c00347{left:167.145000px;}
.x3_c00347{left:169.080000px;}
.x13_c00347{left:172.920000px;}
.x74_c00347{left:174.000000px;}
.xb6_c00347{left:177.000000px;}
.x98_c00347{left:180.420000px;}
.x4d_c00347{left:181.500000px;}
.xab_c00347{left:184.920000px;}
.x7c_c00347{left:186.000000px;}
.x8b_c00347{left:187.080000px;}
.x26_c00347{left:189.000000px;}
.xd2_c00347{left:192.000000px;}
.xc3_c00347{left:193.500000px;}
.x20_c00347{left:194.580000px;}
.x14_c00347{left:199.500000px;}
.x30_c00347{left:201.000000px;}
.xca_c00347{left:203.580000px;}
.xac_c00347{left:205.500000px;}
.x6a_c00347{left:208.080000px;}
.x21_c00347{left:212.580000px;}
.xa3_c00347{left:214.920000px;}
.x86_c00347{left:217.500000px;}
.x75_c00347{left:219.000000px;}
.x4_c00347{left:220.500000px;}
.x3f_c00347{left:221.580000px;}
.xcb_c00347{left:223.920000px;}
.xad_c00347{left:226.080000px;}
.x5e_c00347{left:227.580000px;}
.x7d_c00347{left:229.080000px;}
.x27_c00347{left:230.580000px;}
.xbf_c00347{left:238.920000px;}
.x6b_c00347{left:240.000000px;}
.x3a_c00347{left:243.000000px;}
.x99_c00347{left:250.500000px;}
.x28_c00347{left:252.420000px;}
.xa4_c00347{left:255.420000px;}
.x15_c00347{left:256.500000px;}
.x31_c00347{left:258.000000px;}
.x87_c00347{left:259.500000px;}
.x3b_c00347{left:265.500000px;}
.x91_c00347{left:266.580000px;}
.x40_c00347{left:268.080000px;}
.xd3_c00347{left:273.000000px;}
.x4e_c00347{left:274.080000px;}
.xde_c00347{left:277.500000px;}
.x9a_c00347{left:279.000000px;}
.xe3_c00347{left:280.500000px;}
.x5f_c00347{left:283.500000px;}
.x5_c00347{left:284.775000px;}
.x16_c00347{left:286.920000px;}
.xc4_c00347{left:288.420000px;}
.xa5_c00347{left:289.500000px;}
.x29_c00347{left:291.000000px;}
.x60_c00347{left:295.500000px;}
.xb7_c00347{left:298.920000px;}
.x6c_c00347{left:300.420000px;}
.xae_c00347{left:301.920000px;}
.x41_c00347{left:303.000000px;}
.x53_c00347{left:307.080000px;}
.x6_c00347{left:308.580000px;}
.x32_c00347{left:310.500000px;}
.xe9_c00347{left:312.000000px;}
.x7e_c00347{left:313.920000px;}
.xd8_c00347{left:315.000000px;}
.xe8_c00347{left:316.080000px;}
.x92_c00347{left:318.000000px;}
.xcc_c00347{left:321.000000px;}
.x17_c00347{left:322.080000px;}
.x54_c00347{left:325.920000px;}
.x2a_c00347{left:327.000000px;}
.xaf_c00347{left:328.080000px;}
.x42_c00347{left:329.580000px;}
.x61_c00347{left:332.580000px;}
.xb8_c00347{left:334.500000px;}
.x7_c00347{left:336.000000px;}
.x33_c00347{left:337.920000px;}
.x6d_c00347{left:339.000000px;}
.x18_c00347{left:340.920000px;}
.xd4_c00347{left:343.500000px;}
.x76_c00347{left:345.420000px;}
.xcf_c00347{left:346.920000px;}
.x22_c00347{left:348.000000px;}
.x8_c00347{left:349.500000px;}
.xc5_c00347{left:351.000000px;}
.x55_c00347{left:352.500000px;}
.xb9_c00347{left:354.420000px;}
.x43_c00347{left:360.000000px;}
.x62_c00347{left:363.000000px;}
.x9_c00347{left:364.500000px;}
.x8c_c00347{left:366.000000px;}
.xdb_c00347{left:367.080000px;}
.x19_c00347{left:368.580000px;}
.xd0_c00347{left:373.500000px;}
.x63_c00347{left:375.420000px;}
.xba_c00347{left:379.500000px;}
.xa_c00347{left:381.000000px;}
.x6e_c00347{left:384.420000px;}
.x77_c00347{left:385.920000px;}
.x3c_c00347{left:390.000000px;}
.x44_c00347{left:393.420000px;}
.xb_c00347{left:396.000000px;}
.x56_c00347{left:399.000000px;}
.xcd_c00347{left:400.080000px;}
.xea_c00347{left:402.420000px;}
.x2_c00347{left:403.500000px;}
.xd9_c00347{left:407.580000px;}
.x1a_c00347{left:410.580000px;}
.xd7_c00347{left:412.500000px;}
.x4f_c00347{left:418.500000px;}
.xdf_c00347{left:420.000000px;}
.x23_c00347{left:422.580000px;}
.x64_c00347{left:424.500000px;}
.xd5_c00347{left:425.580000px;}
.xc_c00347{left:427.920000px;}
.xc6_c00347{left:430.500000px;}
.xdc_c00347{left:433.500000px;}
.x45_c00347{left:436.920000px;}
.xc0_c00347{left:438.000000px;}
.x7f_c00347{left:439.500000px;}
.x6f_c00347{left:441.420000px;}
.x93_c00347{left:443.580000px;}
.x2b_c00347{left:445.920000px;}
.x9b_c00347{left:447.420000px;}
.x9e_c00347{left:450.000000px;}
.xe4_c00347{left:451.500000px;}
.x24_c00347{left:452.580000px;}
.xd6_c00347{left:454.080000px;}
.x78_c00347{left:455.580000px;}
.xe2_c00347{left:457.500000px;}
.xb0_c00347{left:458.580000px;}
.xe6_c00347{left:460.500000px;}
.x65_c00347{left:461.580000px;}
.x46_c00347{left:468.000000px;}
.x25_c00347{left:471.000000px;}
.x2c_c00347{left:472.080000px;}
.x70_c00347{left:474.420000px;}
.x80_c00347{left:475.500000px;}
.xe0_c00347{left:478.080000px;}
.x66_c00347{left:479.580000px;}
.x1b_c00347{left:481.080000px;}
.xc7_c00347{left:484.920000px;}
.xd_c00347{left:487.500000px;}
.x88_c00347{left:490.920000px;}
.xa6_c00347{left:492.420000px;}
.x81_c00347{left:495.000000px;}
.xb1_c00347{left:496.920000px;}
.x67_c00347{left:499.500000px;}
.xce_c00347{left:501.420000px;}
.x47_c00347{left:505.500000px;}
.x94_c00347{left:508.500000px;}
.x3d_c00347{left:515.580000px;}
.x2d_c00347{left:517.500000px;}
.x57_c00347{left:519.420000px;}
.x89_c00347{left:520.920000px;}
.xb2_c00347{left:522.000000px;}
.x34_c00347{left:524.580000px;}
.xda_c00347{left:526.080000px;}
.x9f_c00347{left:527.580000px;}
.xa7_c00347{left:529.500000px;}
.xe_c00347{left:530.580000px;}
.xbb_c00347{left:532.500000px;}
.xdd_c00347{left:536.580000px;}
.x82_c00347{left:538.500000px;}
.x8d_c00347{left:539.580000px;}
.x1c_c00347{left:541.500000px;}
.x35_c00347{left:544.920000px;}
.x48_c00347{left:548.580000px;}
.x95_c00347{left:553.500000px;}
.x1d_c00347{left:556.500000px;}
.x58_c00347{left:558.855000px;}
.xe5_c00347{left:559.920000px;}
.xf_c00347{left:561.000000px;}
.x49_c00347{left:565.920000px;}
.x50_c00347{left:568.080000px;}
.xe1_c00347{left:570.420000px;}
.x36_c00347{left:573.420000px;}
.x9c_c00347{left:574.500000px;}
.x71_c00347{left:576.000000px;}
.x59_c00347{left:577.500000px;}
.xa0_c00347{left:581.580000px;}
.xe7_c00347{left:586.500000px;}
.x83_c00347{left:589.080000px;}
.x4a_c00347{left:591.420000px;}
.x2e_c00347{left:593.580000px;}
.x8e_c00347{left:595.500000px;}
.xb3_c00347{left:597.000000px;}
.x5a_c00347{left:599.355000px;}
.xa8_c00347{left:603.000000px;}
.xc8_c00347{left:604.500000px;}
.x37_c00347{left:609.000000px;}
.xc1_c00347{left:610.920000px;}
.x8a_c00347{left:613.920000px;}
.x72_c00347{left:615.000000px;}
.x5b_c00347{left:616.500000px;}
.xa9_c00347{left:617.580000px;}
.xbc_c00347{left:620.580000px;}
.xb4_c00347{left:622.500000px;}
.xa1_c00347{left:627.000000px;}
.x79_c00347{left:628.920000px;}
.x1e_c00347{left:634.500000px;}
.x84_c00347{left:635.580000px;}
.x51_c00347{left:640.080000px;}
.x4b_c00347{left:641.580000px;}
.x7a_c00347{left:646.500000px;}
.xc2_c00347{left:647.580000px;}
.x5c_c00347{left:649.080000px;}
.x10_c00347{left:650.580000px;}
.x8f_c00347{left:652.080000px;}
.x85_c00347{left:654.000000px;}
.x68_c00347{left:658.920000px;}
.x2f_c00347{left:661.500000px;}
.x9d_c00347{left:663.420000px;}
.xb5_c00347{left:664.500000px;}
.x11_c00347{left:669.420000px;}
.x52_c00347{left:670.500000px;}
.xbd_c00347{left:672.000000px;}
.x38_c00347{left:677.580000px;}
.xaa_c00347{left:679.080000px;}
.xc9_c00347{left:681.000000px;}
.x96_c00347{left:684.000000px;}
.x90_c00347{left:685.500000px;}
.x7b_c00347{left:686.580000px;}
.xbe_c00347{left:688.500000px;}
.x12_c00347{left:694.920000px;}
.x39_c00347{left:696.645000px;}
.x69_c00347{left:697.920000px;}
.x1f_c00347{left:700.500000px;}
.x5d_c00347{left:703.920000px;}
.x97_c00347{left:706.500000px;}
.xd1_c00347{left:709.500000px;}
.xa2_c00347{left:712.500000px;}
.x73_c00347{left:716.580000px;}
@media print{
.v1_c00347{vertical-align:-5.333333pt;}
.v0_c00347{vertical-align:0.000000pt;}
.v2_c00347{vertical-align:5.333333pt;}
.ls0_c00347{letter-spacing:0.000000pt;}
.ws0_c00347{word-spacing:-15.012693pt;}
.ws1_c00347{word-spacing:-13.237333pt;}
.ws4_c00347{word-spacing:-8.433888pt;}
.ws3_c00347{word-spacing:-8.192542pt;}
.ws2_c00347{word-spacing:-3.399351pt;}
.ws11_c00347{word-spacing:0.000000pt;}
.ws5_c00347{word-spacing:0.524533pt;}
.ws7_c00347{word-spacing:10.366166pt;}
.ws9_c00347{word-spacing:12.099545pt;}
.wsa_c00347{word-spacing:15.344817pt;}
.wsd_c00347{word-spacing:21.091652pt;}
.wsc_c00347{word-spacing:21.900800pt;}
.wsb_c00347{word-spacing:26.874893pt;}
.ws8_c00347{word-spacing:32.585323pt;}
.wse_c00347{word-spacing:34.500935pt;}
.ws6_c00347{word-spacing:42.417089pt;}
.ws10_c00347{word-spacing:49.727076pt;}
.wsf_c00347{word-spacing:55.614099pt;}
._1_c00347{width:5.081891pt;}
._0_c00347{width:6.485627pt;}
._2_c00347{width:24.511015pt;}
._7_c00347{width:28.161946pt;}
._3_c00347{width:36.973760pt;}
._4_c00347{width:39.655617pt;}
._5_c00347{width:48.088335pt;}
._6_c00347{width:62.457938pt;}
.fs8_c00347{font-size:3.040000pt;}
.fs9_c00347{font-size:10.560000pt;}
.fs7_c00347{font-size:12.106667pt;}
.fs6_c00347{font-size:16.640000pt;}
.fs1_c00347{font-size:18.133333pt;}
.fs4_c00347{font-size:22.666667pt;}
.fs2_c00347{font-size:25.706667pt;}
.fs5_c00347{font-size:28.746667pt;}
.fs0_c00347{font-size:31.733333pt;}
.fs3_c00347{font-size:34.773333pt;}
.y0_c00347{bottom:0.000000pt;}
.y8d_c00347{bottom:222.440000pt;}
.y8f_c00347{bottom:222.640000pt;}
.y90_c00347{bottom:223.026667pt;}
.y8e_c00347{bottom:223.773333pt;}
.y8b_c00347{bottom:224.360000pt;}
.y8c_c00347{bottom:225.306667pt;}
.y89_c00347{bottom:241.106667pt;}
.y86_c00347{bottom:241.693333pt;}
.y8a_c00347{bottom:241.893333pt;}
.y88_c00347{bottom:242.640000pt;}
.y87_c00347{bottom:243.026667pt;}
.y85_c00347{bottom:257.106667pt;}
.y84_c00347{bottom:258.440000pt;}
.y82_c00347{bottom:259.026667pt;}
.y83_c00347{bottom:260.360000pt;}
.y80_c00347{bottom:275.773333pt;}
.y7d_c00347{bottom:276.360000pt;}
.y7e_c00347{bottom:277.306667pt;}
.y7f_c00347{bottom:277.693333pt;}
.y81_c00347{bottom:277.893333pt;}
.y79_c00347{bottom:293.106667pt;}
.y7a_c00347{bottom:294.640000pt;}
.y78_c00347{bottom:295.026667pt;}
.y7b_c00347{bottom:295.226667pt;}
.y7c_c00347{bottom:295.973333pt;}
.y77_c00347{bottom:310.440000pt;}
.y75_c00347{bottom:311.226667pt;}
.y76_c00347{bottom:312.360000pt;}
.y72_c00347{bottom:327.026667pt;}
.y70_c00347{bottom:328.933333pt;}
.y6f_c00347{bottom:329.693333pt;}
.y71_c00347{bottom:329.893333pt;}
.y74_c00347{bottom:330.640000pt;}
.y73_c00347{bottom:331.026667pt;}
.y6b_c00347{bottom:344.360000pt;}
.y6c_c00347{bottom:347.026667pt;}
.y6e_c00347{bottom:347.400000pt;}
.y6d_c00347{bottom:348.360000pt;}
.y67_c00347{bottom:361.693333pt;}
.y69_c00347{bottom:363.773333pt;}
.y64_c00347{bottom:364.360000pt;}
.y6a_c00347{bottom:364.560000pt;}
.y68_c00347{bottom:365.306667pt;}
.y65_c00347{bottom:365.693333pt;}
.y66_c00347{bottom:366.640000pt;}
.y5f_c00347{bottom:379.026667pt;}
.y5c_c00347{bottom:379.773333pt;}
.y60_c00347{bottom:379.973333pt;}
.y61_c00347{bottom:380.360000pt;}
.y63_c00347{bottom:381.106667pt;}
.y5b_c00347{bottom:381.693333pt;}
.y62_c00347{bottom:381.893333pt;}
.y5e_c00347{bottom:382.640000pt;}
.y5d_c00347{bottom:383.026667pt;}
.y5a_c00347{bottom:397.306667pt;}
.y58_c00347{bottom:398.440000pt;}
.y59_c00347{bottom:400.360000pt;}
.y52_c00347{bottom:414.826667pt;}
.y57_c00347{bottom:416.733333pt;}
.y55_c00347{bottom:417.106667pt;}
.y53_c00347{bottom:417.693333pt;}
.y51_c00347{bottom:417.893333pt;}
.y56_c00347{bottom:418.640000pt;}
.y54_c00347{bottom:419.026667pt;}
.y4c_c00347{bottom:433.106667pt;}
.y50_c00347{bottom:434.440000pt;}
.y4d_c00347{bottom:435.026667pt;}
.y4e_c00347{bottom:435.973333pt;}
.y4f_c00347{bottom:436.360000pt;}
.y4b_c00347{bottom:449.693333pt;}
.y47_c00347{bottom:450.440000pt;}
.y4a_c00347{bottom:451.773333pt;}
.y45_c00347{bottom:452.360000pt;}
.y49_c00347{bottom:452.560000pt;}
.y46_c00347{bottom:453.306667pt;}
.y48_c00347{bottom:453.693333pt;}
.y41_c00347{bottom:467.026667pt;}
.y44_c00347{bottom:467.973333pt;}
.y3f_c00347{bottom:468.160000pt;}
.y42_c00347{bottom:469.106667pt;}
.y3d_c00347{bottom:469.693333pt;}
.y43_c00347{bottom:469.893333pt;}
.y40_c00347{bottom:470.066667pt;}
.y3e_c00347{bottom:471.026667pt;}
.y39_c00347{bottom:486.440000pt;}
.y3c_c00347{bottom:486.640000pt;}
.y3a_c00347{bottom:487.400000pt;}
.y38_c00347{bottom:488.360000pt;}
.y3b_c00347{bottom:488.560000pt;}
.y33_c00347{bottom:502.826667pt;}
.y37_c00347{bottom:503.026667pt;}
.y35_c00347{bottom:504.560000pt;}
.y36_c00347{bottom:504.733333pt;}
.y34_c00347{bottom:505.693333pt;}
.y2f_c00347{bottom:520.360000pt;}
.y2d_c00347{bottom:521.106667pt;}
.y30_c00347{bottom:522.266667pt;}
.y2e_c00347{bottom:523.026667pt;}
.y32_c00347{bottom:523.226667pt;}
.y31_c00347{bottom:523.973333pt;}
.y2c_c00347{bottom:538.440000pt;}
.y28_c00347{bottom:539.773333pt;}
.y27_c00347{bottom:540.360000pt;}
.y2b_c00347{bottom:540.733333pt;}
.y29_c00347{bottom:541.306667pt;}
.y2a_c00347{bottom:541.693333pt;}
.y23_c00347{bottom:555.400000pt;}
.y21_c00347{bottom:555.773333pt;}
.y26_c00347{bottom:555.973333pt;}
.y22_c00347{bottom:556.360000pt;}
.y25_c00347{bottom:557.106667pt;}
.y20_c00347{bottom:557.693333pt;}
.y24_c00347{bottom:559.026667pt;}
.yc3_c00347{bottom:583.226667pt;}
.yc4_c00347{bottom:584.173333pt;}
.yc0_c00347{bottom:595.226667pt;}
.yc1_c00347{bottom:596.173333pt;}
.yc2_c00347{bottom:596.560000pt;}
.ybd_c00347{bottom:607.800000pt;}
.ybe_c00347{bottom:608.173333pt;}
.ybf_c00347{bottom:608.560000pt;}
.ybc_c00347{bottom:609.506667pt;}
.yba_c00347{bottom:620.173333pt;}
.yb9_c00347{bottom:620.560000pt;}
.ybb_c00347{bottom:621.506667pt;}
.yb6_c00347{bottom:630.840000pt;}
.yb8_c00347{bottom:632.173333pt;}
.yb4_c00347{bottom:632.560000pt;}
.yb5_c00347{bottom:633.506667pt;}
.yb7_c00347{bottom:634.640000pt;}
.yb3_c00347{bottom:645.506667pt;}
.yb2_c00347{bottom:656.560000pt;}
.yb1_c00347{bottom:657.506667pt;}
.yb0_c00347{bottom:668.560000pt;}
.yaf_c00347{bottom:669.893333pt;}
.yad_c00347{bottom:681.893333pt;}
.yae_c00347{bottom:682.840000pt;}
.yac_c00347{bottom:693.893333pt;}
.yab_c00347{bottom:694.840000pt;}
.ya9_c00347{bottom:705.893333pt;}
.yaa_c00347{bottom:706.840000pt;}
.ya6_c00347{bottom:722.840000pt;}
.ya7_c00347{bottom:723.040000pt;}
.ya8_c00347{bottom:723.226667pt;}
.ya3_c00347{bottom:733.893333pt;}
.ya4_c00347{bottom:734.840000pt;}
.ya5_c00347{bottom:735.226667pt;}
.ya2_c00347{bottom:748.173333pt;}
.ya0_c00347{bottom:772.733333pt;}
.ya1_c00347{bottom:773.693333pt;}
.y9f_c00347{bottom:774.266667pt;}
.y9a_c00347{bottom:784.733333pt;}
.y9d_c00347{bottom:785.693333pt;}
.y9c_c00347{bottom:786.640000pt;}
.y9b_c00347{bottom:787.600000pt;}
.y9e_c00347{bottom:787.973333pt;}
.y98_c00347{bottom:798.066667pt;}
.y97_c00347{bottom:799.973333pt;}
.y99_c00347{bottom:800.933333pt;}
.y96_c00347{bottom:812.733333pt;}
.y95_c00347{bottom:813.306667pt;}
.y94_c00347{bottom:814.266667pt;}
.y93_c00347{bottom:814.640000pt;}
.y92_c00347{bottom:830.266667pt;}
.y91_c00347{bottom:831.600000pt;}
.y1f_c00347{bottom:852.160000pt;}
.y1c_c00347{bottom:853.106667pt;}
.y1e_c00347{bottom:853.893333pt;}
.y1d_c00347{bottom:855.026667pt;}
.y1a_c00347{bottom:870.440000pt;}
.y19_c00347{bottom:872.360000pt;}
.y1b_c00347{bottom:872.560000pt;}
.y18_c00347{bottom:887.773333pt;}
.y15_c00347{bottom:888.360000pt;}
.y13_c00347{bottom:889.693333pt;}
.y16_c00347{bottom:889.893333pt;}
.y17_c00347{bottom:890.640000pt;}
.y14_c00347{bottom:891.026667pt;}
.y11_c00347{bottom:905.106667pt;}
.y12_c00347{bottom:905.306667pt;}
.y10_c00347{bottom:907.026667pt;}
.yf_c00347{bottom:907.973333pt;}
.yb_c00347{bottom:923.773333pt;}
.ya_c00347{bottom:924.360000pt;}
.ye_c00347{bottom:924.733333pt;}
.yd_c00347{bottom:925.306667pt;}
.yc_c00347{bottom:925.693333pt;}
.y6_c00347{bottom:939.773333pt;}
.y4_c00347{bottom:940.160000pt;}
.y9_c00347{bottom:940.733333pt;}
.y8_c00347{bottom:941.106667pt;}
.y7_c00347{bottom:942.066667pt;}
.y3_c00347{bottom:943.026667pt;}
.y5_c00347{bottom:943.973333pt;}
.y1_c00347{bottom:975.773333pt;}
.y2_c00347{bottom:976.933333pt;}
.h9_c00347{height:3.739141pt;}
.hb_c00347{height:12.988594pt;}
.h8_c00347{height:14.890964pt;}
.ha_c00347{height:20.224297pt;}
.h7_c00347{height:20.466875pt;}
.h2_c00347{height:22.303646pt;}
.h5_c00347{height:27.879557pt;}
.h3_c00347{height:31.618698pt;}
.h6_c00347{height:35.357839pt;}
.h1_c00347{height:39.031380pt;}
.h4_c00347{height:42.770521pt;}
.h0_c00347{height:1186.666667pt;}
.w0_c00347{width:782.666667pt;}
.x0_c00347{left:0.000000pt;}
.x4c_c00347{left:135.040000pt;}
.x1_c00347{left:136.000000pt;}
.x3e_c00347{left:148.573333pt;}
.x3_c00347{left:150.293333pt;}
.x13_c00347{left:153.706667pt;}
.x74_c00347{left:154.666667pt;}
.xb6_c00347{left:157.333333pt;}
.x98_c00347{left:160.373333pt;}
.x4d_c00347{left:161.333333pt;}
.xab_c00347{left:164.373333pt;}
.x7c_c00347{left:165.333333pt;}
.x8b_c00347{left:166.293333pt;}
.x26_c00347{left:168.000000pt;}
.xd2_c00347{left:170.666667pt;}
.xc3_c00347{left:172.000000pt;}
.x20_c00347{left:172.960000pt;}
.x14_c00347{left:177.333333pt;}
.x30_c00347{left:178.666667pt;}
.xca_c00347{left:180.960000pt;}
.xac_c00347{left:182.666667pt;}
.x6a_c00347{left:184.960000pt;}
.x21_c00347{left:188.960000pt;}
.xa3_c00347{left:191.040000pt;}
.x86_c00347{left:193.333333pt;}
.x75_c00347{left:194.666667pt;}
.x4_c00347{left:196.000000pt;}
.x3f_c00347{left:196.960000pt;}
.xcb_c00347{left:199.040000pt;}
.xad_c00347{left:200.960000pt;}
.x5e_c00347{left:202.293333pt;}
.x7d_c00347{left:203.626667pt;}
.x27_c00347{left:204.960000pt;}
.xbf_c00347{left:212.373333pt;}
.x6b_c00347{left:213.333333pt;}
.x3a_c00347{left:216.000000pt;}
.x99_c00347{left:222.666667pt;}
.x28_c00347{left:224.373333pt;}
.xa4_c00347{left:227.040000pt;}
.x15_c00347{left:228.000000pt;}
.x31_c00347{left:229.333333pt;}
.x87_c00347{left:230.666667pt;}
.x3b_c00347{left:236.000000pt;}
.x91_c00347{left:236.960000pt;}
.x40_c00347{left:238.293333pt;}
.xd3_c00347{left:242.666667pt;}
.x4e_c00347{left:243.626667pt;}
.xde_c00347{left:246.666667pt;}
.x9a_c00347{left:248.000000pt;}
.xe3_c00347{left:249.333333pt;}
.x5f_c00347{left:252.000000pt;}
.x5_c00347{left:253.133333pt;}
.x16_c00347{left:255.040000pt;}
.xc4_c00347{left:256.373333pt;}
.xa5_c00347{left:257.333333pt;}
.x29_c00347{left:258.666667pt;}
.x60_c00347{left:262.666667pt;}
.xb7_c00347{left:265.706667pt;}
.x6c_c00347{left:267.040000pt;}
.xae_c00347{left:268.373333pt;}
.x41_c00347{left:269.333333pt;}
.x53_c00347{left:272.960000pt;}
.x6_c00347{left:274.293333pt;}
.x32_c00347{left:276.000000pt;}
.xe9_c00347{left:277.333333pt;}
.x7e_c00347{left:279.040000pt;}
.xd8_c00347{left:280.000000pt;}
.xe8_c00347{left:280.960000pt;}
.x92_c00347{left:282.666667pt;}
.xcc_c00347{left:285.333333pt;}
.x17_c00347{left:286.293333pt;}
.x54_c00347{left:289.706667pt;}
.x2a_c00347{left:290.666667pt;}
.xaf_c00347{left:291.626667pt;}
.x42_c00347{left:292.960000pt;}
.x61_c00347{left:295.626667pt;}
.xb8_c00347{left:297.333333pt;}
.x7_c00347{left:298.666667pt;}
.x33_c00347{left:300.373333pt;}
.x6d_c00347{left:301.333333pt;}
.x18_c00347{left:303.040000pt;}
.xd4_c00347{left:305.333333pt;}
.x76_c00347{left:307.040000pt;}
.xcf_c00347{left:308.373333pt;}
.x22_c00347{left:309.333333pt;}
.x8_c00347{left:310.666667pt;}
.xc5_c00347{left:312.000000pt;}
.x55_c00347{left:313.333333pt;}
.xb9_c00347{left:315.040000pt;}
.x43_c00347{left:320.000000pt;}
.x62_c00347{left:322.666667pt;}
.x9_c00347{left:324.000000pt;}
.x8c_c00347{left:325.333333pt;}
.xdb_c00347{left:326.293333pt;}
.x19_c00347{left:327.626667pt;}
.xd0_c00347{left:332.000000pt;}
.x63_c00347{left:333.706667pt;}
.xba_c00347{left:337.333333pt;}
.xa_c00347{left:338.666667pt;}
.x6e_c00347{left:341.706667pt;}
.x77_c00347{left:343.040000pt;}
.x3c_c00347{left:346.666667pt;}
.x44_c00347{left:349.706667pt;}
.xb_c00347{left:352.000000pt;}
.x56_c00347{left:354.666667pt;}
.xcd_c00347{left:355.626667pt;}
.xea_c00347{left:357.706667pt;}
.x2_c00347{left:358.666667pt;}
.xd9_c00347{left:362.293333pt;}
.x1a_c00347{left:364.960000pt;}
.xd7_c00347{left:366.666667pt;}
.x4f_c00347{left:372.000000pt;}
.xdf_c00347{left:373.333333pt;}
.x23_c00347{left:375.626667pt;}
.x64_c00347{left:377.333333pt;}
.xd5_c00347{left:378.293333pt;}
.xc_c00347{left:380.373333pt;}
.xc6_c00347{left:382.666667pt;}
.xdc_c00347{left:385.333333pt;}
.x45_c00347{left:388.373333pt;}
.xc0_c00347{left:389.333333pt;}
.x7f_c00347{left:390.666667pt;}
.x6f_c00347{left:392.373333pt;}
.x93_c00347{left:394.293333pt;}
.x2b_c00347{left:396.373333pt;}
.x9b_c00347{left:397.706667pt;}
.x9e_c00347{left:400.000000pt;}
.xe4_c00347{left:401.333333pt;}
.x24_c00347{left:402.293333pt;}
.xd6_c00347{left:403.626667pt;}
.x78_c00347{left:404.960000pt;}
.xe2_c00347{left:406.666667pt;}
.xb0_c00347{left:407.626667pt;}
.xe6_c00347{left:409.333333pt;}
.x65_c00347{left:410.293333pt;}
.x46_c00347{left:416.000000pt;}
.x25_c00347{left:418.666667pt;}
.x2c_c00347{left:419.626667pt;}
.x70_c00347{left:421.706667pt;}
.x80_c00347{left:422.666667pt;}
.xe0_c00347{left:424.960000pt;}
.x66_c00347{left:426.293333pt;}
.x1b_c00347{left:427.626667pt;}
.xc7_c00347{left:431.040000pt;}
.xd_c00347{left:433.333333pt;}
.x88_c00347{left:436.373333pt;}
.xa6_c00347{left:437.706667pt;}
.x81_c00347{left:440.000000pt;}
.xb1_c00347{left:441.706667pt;}
.x67_c00347{left:444.000000pt;}
.xce_c00347{left:445.706667pt;}
.x47_c00347{left:449.333333pt;}
.x94_c00347{left:452.000000pt;}
.x3d_c00347{left:458.293333pt;}
.x2d_c00347{left:460.000000pt;}
.x57_c00347{left:461.706667pt;}
.x89_c00347{left:463.040000pt;}
.xb2_c00347{left:464.000000pt;}
.x34_c00347{left:466.293333pt;}
.xda_c00347{left:467.626667pt;}
.x9f_c00347{left:468.960000pt;}
.xa7_c00347{left:470.666667pt;}
.xe_c00347{left:471.626667pt;}
.xbb_c00347{left:473.333333pt;}
.xdd_c00347{left:476.960000pt;}
.x82_c00347{left:478.666667pt;}
.x8d_c00347{left:479.626667pt;}
.x1c_c00347{left:481.333333pt;}
.x35_c00347{left:484.373333pt;}
.x48_c00347{left:487.626667pt;}
.x95_c00347{left:492.000000pt;}
.x1d_c00347{left:494.666667pt;}
.x58_c00347{left:496.760000pt;}
.xe5_c00347{left:497.706667pt;}
.xf_c00347{left:498.666667pt;}
.x49_c00347{left:503.040000pt;}
.x50_c00347{left:504.960000pt;}
.xe1_c00347{left:507.040000pt;}
.x36_c00347{left:509.706667pt;}
.x9c_c00347{left:510.666667pt;}
.x71_c00347{left:512.000000pt;}
.x59_c00347{left:513.333333pt;}
.xa0_c00347{left:516.960000pt;}
.xe7_c00347{left:521.333333pt;}
.x83_c00347{left:523.626667pt;}
.x4a_c00347{left:525.706667pt;}
.x2e_c00347{left:527.626667pt;}
.x8e_c00347{left:529.333333pt;}
.xb3_c00347{left:530.666667pt;}
.x5a_c00347{left:532.760000pt;}
.xa8_c00347{left:536.000000pt;}
.xc8_c00347{left:537.333333pt;}
.x37_c00347{left:541.333333pt;}
.xc1_c00347{left:543.040000pt;}
.x8a_c00347{left:545.706667pt;}
.x72_c00347{left:546.666667pt;}
.x5b_c00347{left:548.000000pt;}
.xa9_c00347{left:548.960000pt;}
.xbc_c00347{left:551.626667pt;}
.xb4_c00347{left:553.333333pt;}
.xa1_c00347{left:557.333333pt;}
.x79_c00347{left:559.040000pt;}
.x1e_c00347{left:564.000000pt;}
.x84_c00347{left:564.960000pt;}
.x51_c00347{left:568.960000pt;}
.x4b_c00347{left:570.293333pt;}
.x7a_c00347{left:574.666667pt;}
.xc2_c00347{left:575.626667pt;}
.x5c_c00347{left:576.960000pt;}
.x10_c00347{left:578.293333pt;}
.x8f_c00347{left:579.626667pt;}
.x85_c00347{left:581.333333pt;}
.x68_c00347{left:585.706667pt;}
.x2f_c00347{left:588.000000pt;}
.x9d_c00347{left:589.706667pt;}
.xb5_c00347{left:590.666667pt;}
.x11_c00347{left:595.040000pt;}
.x52_c00347{left:596.000000pt;}
.xbd_c00347{left:597.333333pt;}
.x38_c00347{left:602.293333pt;}
.xaa_c00347{left:603.626667pt;}
.xc9_c00347{left:605.333333pt;}
.x96_c00347{left:608.000000pt;}
.x90_c00347{left:609.333333pt;}
.x7b_c00347{left:610.293333pt;}
.xbe_c00347{left:612.000000pt;}
.x12_c00347{left:617.706667pt;}
.x39_c00347{left:619.240000pt;}
.x69_c00347{left:620.373333pt;}
.x1f_c00347{left:622.666667pt;}
.x5d_c00347{left:625.706667pt;}
.x97_c00347{left:628.000000pt;}
.xd1_c00347{left:630.666667pt;}
.xa2_c00347{left:633.333333pt;}
.x73_c00347{left:636.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_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_40668f1ed5b39c0d0d3c5011.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m47_c00348{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);}
.md0_c00348{transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);}
.m78_c00348{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m42_c00348{transform:matrix(0.333824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333824,0.000000,0.000000,0.250000,0,0);}
.m5d_c00348{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m22_c00348{transform:matrix(0.348330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348330,0.000000,0.000000,0.250000,0,0);}
.ma5_c00348{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m81_c00348{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m2e_c00348{transform:matrix(0.364647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364647,0.000000,0.000000,0.250000,0,0);}
.m118_c00348{transform:matrix(0.365028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365028,0.000000,0.000000,0.250000,0,0);}
.mc5_c00348{transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);}
.m7_c00348{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m35_c00348{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m11d_c00348{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m61_c00348{transform:matrix(0.371549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371549,0.000000,0.000000,0.250000,0,0);}
.m97_c00348{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.ma6_c00348{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m112_c00348{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m53_c00348{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m116_c00348{transform:matrix(0.376160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376160,0.000000,0.000000,0.250000,0,0);}
.med_c00348{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m30_c00348{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m9_c00348{transform:matrix(0.380187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380187,0.000000,0.000000,0.250000,0,0);}
.mca_c00348{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.m93_c00348{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m6e_c00348{transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);}
.m5c_c00348{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m48_c00348{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m34_c00348{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m21_c00348{transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);}
.m3c_c00348{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mef_c00348{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.me4_c00348{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.mdb_c00348{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m26_c00348{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m4e_c00348{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m6_c00348{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m49_c00348{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m1a_c00348{transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);}
.mee_c00348{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m91_c00348{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mf6_c00348{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m4d_c00348{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m58_c00348{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.mec_c00348{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m39_c00348{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m41_c00348{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m3e_c00348{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m45_c00348{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.mda_c00348{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.m86_c00348{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m62_c00348{transform:matrix(0.412960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412960,0.000000,0.000000,0.250000,0,0);}
.mc4_c00348{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.mb_c00348{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.mf_c00348{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m87_c00348{transform:matrix(0.416976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416976,0.000000,0.000000,0.250000,0,0);}
.m77_c00348{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m25_c00348{transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);}
.m56_c00348{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.mce_c00348{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m70_c00348{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.mb9_c00348{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m23_c00348{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.m109_c00348{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m27_c00348{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m32_c00348{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m11f_c00348{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.mad_c00348{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m24_c00348{transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);}
.maa_c00348{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m9f_c00348{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m8e_c00348{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m59_c00348{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m1e_c00348{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.md2_c00348{transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);}
.m28_c00348{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m3b_c00348{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.ma9_c00348{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m119_c00348{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.m10a_c00348{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m80_c00348{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.mea_c00348{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.meb_c00348{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.md5_c00348{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m89_c00348{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m4f_c00348{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m7d_c00348{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mfe_c00348{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.m68_c00348{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m5b_c00348{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m1d_c00348{transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);}
.me_c00348{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.mcc_c00348{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.mf4_c00348{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.mc1_c00348{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m43_c00348{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.me8_c00348{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m54_c00348{transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);}
.mab_c00348{transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);}
.mdc_c00348{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.mbe_c00348{transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);}
.m20_c00348{transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);}
.m1c_c00348{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m16_c00348{transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);}
.m95_c00348{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mf7_c00348{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m18_c00348{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m13_c00348{transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);}
.mcd_c00348{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m19_c00348{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.mae_c00348{transform:matrix(0.466807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466807,0.000000,0.000000,0.250000,0,0);}
.m40_c00348{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m15_c00348{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m10f_c00348{transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);}
.m4c_c00348{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m4a_c00348{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.ma7_c00348{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m4b_c00348{transform:matrix(0.481092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481092,0.000000,0.000000,0.250000,0,0);}
.m8d_c00348{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mc_c00348{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mf3_c00348{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m3d_c00348{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m9a_c00348{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m84_c00348{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m7a_c00348{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m11_c00348{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);}
.m44_c00348{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m82_c00348{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.ma4_c00348{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m11a_c00348{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m67_c00348{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mf8_c00348{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.me0_c00348{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mac_c00348{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m12_c00348{transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);}
.ma0_c00348{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.mb3_c00348{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.md9_c00348{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.mbf_c00348{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m2f_c00348{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m11e_c00348{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.ma3_c00348{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m85_c00348{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mc0_c00348{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m10c_c00348{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m8f_c00348{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.me3_c00348{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m69_c00348{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mb7_c00348{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m5a_c00348{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.ma2_c00348{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m64_c00348{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mc9_c00348{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m6b_c00348{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m60_c00348{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mba_c00348{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m108_c00348{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m5f_c00348{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.me5_c00348{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m71_c00348{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m106_c00348{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.mf1_c00348{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m102_c00348{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m8a_c00348{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m31_c00348{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m2d_c00348{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m74_c00348{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m10_c00348{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.mf0_c00348{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m3f_c00348{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m51_c00348{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m66_c00348{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m104_c00348{transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);}
.mdf_c00348{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m94_c00348{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m117_c00348{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.md3_c00348{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m6f_c00348{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m99_c00348{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m33_c00348{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m38_c00348{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.mc6_c00348{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m9c_c00348{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m1_c00348{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.ma8_c00348{transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);}
.mc3_c00348{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mbb_c00348{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m6a_c00348{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.ma1_c00348{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m1f_c00348{transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);}
.mdd_c00348{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.md4_c00348{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.mb8_c00348{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m83_c00348{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m2b_c00348{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m10d_c00348{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m37_c00348{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.m6c_c00348{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.m10e_c00348{transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);}
.m63_c00348{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m101_c00348{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.m9b_c00348{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m5e_c00348{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.md1_c00348{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m98_c00348{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.ma_c00348{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.mb4_c00348{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m10b_c00348{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m8c_c00348{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m17_c00348{transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);}
.m9e_c00348{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.mf9_c00348{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m8b_c00348{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.m90_c00348{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m46_c00348{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m36_c00348{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m115_c00348{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.me7_c00348{transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);}
.mbd_c00348{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m79_c00348{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.mb1_c00348{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m73_c00348{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m3_c00348{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m57_c00348{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m4_c00348{transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);}
.md7_c00348{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m11c_c00348{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m5_c00348{transform:matrix(0.597510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597510,0.000000,0.000000,0.250000,0,0);}
.mc8_c00348{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m96_c00348{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);}
.md6_c00348{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.mf2_c00348{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m55_c00348{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mb6_c00348{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m8_c00348{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);}
.m88_c00348{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m114_c00348{transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);}
.m2c_c00348{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m76_c00348{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m72_c00348{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.me9_c00348{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m105_c00348{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.mb5_c00348{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_c00348{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m113_c00348{transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);}
.m7e_c00348{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m9d_c00348{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m103_c00348{transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);}
.m14_c00348{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.md_c00348{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);}
.m2a_c00348{transform:matrix(0.651971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651971,0.000000,0.000000,0.250000,0,0);}
.m111_c00348{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m1b_c00348{transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);}
.me2_c00348{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m75_c00348{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m6d_c00348{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m7b_c00348{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m0_c00348{transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);}
.m100_c00348{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.mff_c00348{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m11b_c00348{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mfc_c00348{transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);}
.maf_c00348{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.mc7_c00348{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mb0_c00348{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m110_c00348{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);}
.m50_c00348{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.mb2_c00348{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m52_c00348{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.me6_c00348{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.me1_c00348{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m65_c00348{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mcb_c00348{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mde_c00348{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mf5_c00348{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m92_c00348{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m2_c00348{transform:matrix(0.780837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780837,0.000000,0.000000,0.250000,0,0);}
.mbc_c00348{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.mc2_c00348{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m7f_c00348{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mfa_c00348{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.md8_c00348{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.mcf_c00348{transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);}
.mfd_c00348{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.mfb_c00348{transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);}
.m107_c00348{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m3a_c00348{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m29_c00348{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-4.376664px;}
.ws3_c00348{word-spacing:0.000000px;}
.ws2_c00348{word-spacing:8.175300px;}
.ws1_c00348{word-spacing:14.188817px;}
.fc0_c00348{color:transparent;}
.fs7_c00348{font-size:3.420000px;}
.fs2_c00348{font-size:13.620000px;}
.fs0_c00348{font-size:18.720000px;}
.fs5_c00348{font-size:20.400000px;}
.fs1_c00348{font-size:25.500000px;}
.fs3_c00348{font-size:28.920000px;}
.fs6_c00348{font-size:32.340000px;}
.fs4_c00348{font-size:35.700000px;}
.fs8_c00348{font-size:39.120000px;}
.y0_c00348{bottom:0.000000px;}
.y3_c00348{bottom:226.695000px;}
.yd4_c00348{bottom:249.825000px;}
.yd3_c00348{bottom:253.050000px;}
.yd2_c00348{bottom:263.970000px;}
.yd1_c00348{bottom:264.825000px;}
.ycb_c00348{bottom:266.325000px;}
.ycc_c00348{bottom:266.970000px;}
.yce_c00348{bottom:267.405000px;}
.ycd_c00348{bottom:268.050000px;}
.yd0_c00348{bottom:268.470000px;}
.ycf_c00348{bottom:268.695000px;}
.yca_c00348{bottom:279.825000px;}
.yc9_c00348{bottom:280.905000px;}
.yc7_c00348{bottom:282.630000px;}
.yc8_c00348{bottom:283.050000px;}
.yc5_c00348{bottom:295.905000px;}
.yc4_c00348{bottom:296.970000px;}
.yc6_c00348{bottom:297.195000px;}
.yc3_c00348{bottom:298.050000px;}
.yc0_c00348{bottom:309.825000px;}
.ybe_c00348{bottom:310.905000px;}
.ybd_c00348{bottom:311.130000px;}
.yc2_c00348{bottom:311.970000px;}
.ybf_c00348{bottom:312.195000px;}
.yc1_c00348{bottom:313.050000px;}
.yba_c00348{bottom:341.745000px;}
.yb9_c00348{bottom:343.905000px;}
.ybc_c00348{bottom:344.130000px;}
.ybb_c00348{bottom:344.970000px;}
.yb4_c00348{bottom:361.245000px;}
.yb7_c00348{bottom:362.130000px;}
.yb6_c00348{bottom:362.325000px;}
.yb2_c00348{bottom:362.745000px;}
.yb8_c00348{bottom:363.405000px;}
.yb3_c00348{bottom:363.630000px;}
.yb0_c00348{bottom:363.825000px;}
.yb5_c00348{bottom:364.470000px;}
.yb1_c00348{bottom:364.905000px;}
.yad_c00348{bottom:381.180000px;}
.yaa_c00348{bottom:382.245000px;}
.yaf_c00348{bottom:382.905000px;}
.yab_c00348{bottom:383.130000px;}
.yae_c00348{bottom:383.970000px;}
.yac_c00348{bottom:384.405000px;}
.ya8_c00348{bottom:401.745000px;}
.ya9_c00348{bottom:403.470000px;}
.ya7_c00348{bottom:403.905000px;}
.ya4_c00348{bottom:419.970000px;}
.ya5_c00348{bottom:421.245000px;}
.ya6_c00348{bottom:421.905000px;}
.ya3_c00348{bottom:422.325000px;}
.ya1_c00348{bottom:423.405000px;}
.ya2_c00348{bottom:424.470000px;}
.y9c_c00348{bottom:438.405000px;}
.y9b_c00348{bottom:440.745000px;}
.y9f_c00348{bottom:441.405000px;}
.ya0_c00348{bottom:441.630000px;}
.y9e_c00348{bottom:442.470000px;}
.y9d_c00348{bottom:442.905000px;}
.y9a_c00348{bottom:460.245000px;}
.y99_c00348{bottom:461.550000px;}
.y95_c00348{bottom:461.745000px;}
.y97_c00348{bottom:462.405000px;}
.y98_c00348{bottom:462.630000px;}
.y96_c00348{bottom:463.905000px;}
.y91_c00348{bottom:479.745000px;}
.y94_c00348{bottom:480.630000px;}
.y93_c00348{bottom:481.905000px;}
.y90_c00348{bottom:482.130000px;}
.y92_c00348{bottom:482.970000px;}
.y8f_c00348{bottom:483.405000px;}
.y8e_c00348{bottom:484.470000px;}
.y8b_c00348{bottom:500.745000px;}
.y8d_c00348{bottom:501.405000px;}
.y8c_c00348{bottom:502.470000px;}
.y8a_c00348{bottom:502.905000px;}
.y87_c00348{bottom:518.970000px;}
.y83_c00348{bottom:519.420000px;}
.y84_c00348{bottom:520.245000px;}
.y89_c00348{bottom:520.905000px;}
.y85_c00348{bottom:521.130000px;}
.y88_c00348{bottom:521.325000px;}
.y86_c00348{bottom:521.970000px;}
.y82_c00348{bottom:522.405000px;}
.y7e_c00348{bottom:539.745000px;}
.y80_c00348{bottom:540.630000px;}
.y81_c00348{bottom:540.825000px;}
.y7f_c00348{bottom:541.905000px;}
.y7c_c00348{bottom:559.245000px;}
.y7d_c00348{bottom:560.130000px;}
.y7b_c00348{bottom:561.405000px;}
.y79_c00348{bottom:578.745000px;}
.y7a_c00348{bottom:580.470000px;}
.y77_c00348{bottom:580.905000px;}
.y78_c00348{bottom:581.130000px;}
.y75_c00348{bottom:581.970000px;}
.y76_c00348{bottom:582.405000px;}
.y74_c00348{bottom:597.825000px;}
.y71_c00348{bottom:598.245000px;}
.y70_c00348{bottom:598.470000px;}
.y6f_c00348{bottom:600.405000px;}
.y72_c00348{bottom:600.630000px;}
.y73_c00348{bottom:601.470000px;}
.y6e_c00348{bottom:619.245000px;}
.y6d_c00348{bottom:620.970000px;}
.y6a_c00348{bottom:637.245000px;}
.y69_c00348{bottom:639.405000px;}
.y6b_c00348{bottom:639.630000px;}
.y6c_c00348{bottom:640.470000px;}
.y67_c00348{bottom:656.745000px;}
.y66_c00348{bottom:658.245000px;}
.y68_c00348{bottom:659.130000px;}
.y65_c00348{bottom:660.405000px;}
.y64_c00348{bottom:676.680000px;}
.y62_c00348{bottom:677.745000px;}
.y60_c00348{bottom:679.905000px;}
.y61_c00348{bottom:679.920000px;}
.y63_c00348{bottom:680.970000px;}
.y5e_c00348{bottom:698.325000px;}
.y5f_c00348{bottom:699.405000px;}
.y5d_c00348{bottom:700.470000px;}
.y5c_c00348{bottom:716.325000px;}
.y5a_c00348{bottom:716.745000px;}
.y5b_c00348{bottom:718.905000px;}
.y59_c00348{bottom:719.130000px;}
.y58_c00348{bottom:719.970000px;}
.y57_c00348{bottom:736.245000px;}
.y54_c00348{bottom:737.745000px;}
.y56_c00348{bottom:738.405000px;}
.y53_c00348{bottom:739.470000px;}
.y55_c00348{bottom:739.905000px;}
.y52_c00348{bottom:754.905000px;}
.y50_c00348{bottom:757.245000px;}
.y4f_c00348{bottom:758.325000px;}
.y51_c00348{bottom:759.405000px;}
.y4e_c00348{bottom:774.825000px;}
.y49_c00348{bottom:775.470000px;}
.y4b_c00348{bottom:775.905000px;}
.y48_c00348{bottom:776.745000px;}
.y4d_c00348{bottom:777.630000px;}
.y4a_c00348{bottom:777.825000px;}
.y4c_c00348{bottom:779.970000px;}
.y44_c00348{bottom:794.745000px;}
.y42_c00348{bottom:796.245000px;}
.y46_c00348{bottom:796.905000px;}
.y47_c00348{bottom:797.130000px;}
.y45_c00348{bottom:797.970000px;}
.y43_c00348{bottom:798.405000px;}
.y40_c00348{bottom:815.745000px;}
.y3f_c00348{bottom:816.630000px;}
.y41_c00348{bottom:817.470000px;}
.y3e_c00348{bottom:817.905000px;}
.y3c_c00348{bottom:835.245000px;}
.y3d_c00348{bottom:835.680000px;}
.y3b_c00348{bottom:837.405000px;}
.y39_c00348{bottom:838.905000px;}
.y3a_c00348{bottom:838.920000px;}
.y37_c00348{bottom:854.745000px;}
.y36_c00348{bottom:855.825000px;}
.y38_c00348{bottom:856.245000px;}
.y35_c00348{bottom:858.405000px;}
.y32_c00348{bottom:874.245000px;}
.y33_c00348{bottom:875.325000px;}
.y2f_c00348{bottom:876.405000px;}
.y30_c00348{bottom:876.630000px;}
.y34_c00348{bottom:877.470000px;}
.y31_c00348{bottom:877.920000px;}
.y2d_c00348{bottom:892.905000px;}
.y2c_c00348{bottom:893.745000px;}
.y2b_c00348{bottom:895.245000px;}
.y2e_c00348{bottom:896.130000px;}
.y28_c00348{bottom:912.405000px;}
.y2a_c00348{bottom:913.245000px;}
.y26_c00348{bottom:913.680000px;}
.y23_c00348{bottom:913.905000px;}
.y24_c00348{bottom:914.745000px;}
.y25_c00348{bottom:915.630000px;}
.y29_c00348{bottom:915.825000px;}
.y27_c00348{bottom:916.905000px;}
.y20_c00348{bottom:933.405000px;}
.y22_c00348{bottom:934.050000px;}
.y1d_c00348{bottom:934.245000px;}
.y1f_c00348{bottom:935.325000px;}
.y21_c00348{bottom:936.405000px;}
.y1e_c00348{bottom:936.420000px;}
.y1b_c00348{bottom:953.745000px;}
.y1c_c00348{bottom:955.470000px;}
.y1a_c00348{bottom:955.905000px;}
.y18_c00348{bottom:972.180000px;}
.y19_c00348{bottom:972.405000px;}
.y15_c00348{bottom:973.245000px;}
.y17_c00348{bottom:975.405000px;}
.y16_c00348{bottom:976.920000px;}
.yf_c00348{bottom:1001.325000px;}
.y13_c00348{bottom:1001.550000px;}
.y11_c00348{bottom:1002.405000px;}
.y14_c00348{bottom:1002.825000px;}
.y10_c00348{bottom:1004.550000px;}
.y12_c00348{bottom:1004.970000px;}
.yb_c00348{bottom:1015.470000px;}
.ye_c00348{bottom:1016.550000px;}
.yd_c00348{bottom:1017.405000px;}
.ya_c00348{bottom:1018.470000px;}
.yc_c00348{bottom:1019.550000px;}
.y9_c00348{bottom:1035.825000px;}
.y8_c00348{bottom:1036.050000px;}
.y7_c00348{bottom:1036.905000px;}
.y6_c00348{bottom:1039.050000px;}
.y5_c00348{bottom:1061.745000px;}
.y4_c00348{bottom:1063.905000px;}
.y2_c00348{bottom:1099.470000px;}
.y1_c00348{bottom:1101.630000px;}
.h8_c00348{height:4.206533px;}
.h3_c00348{height:16.752334px;}
.h1_c00348{height:23.025234px;}
.h6_c00348{height:25.091602px;}
.h2_c00348{height:31.364502px;}
.h4_c00348{height:35.571035px;}
.h7_c00348{height:39.777568px;}
.h5_c00348{height:43.910303px;}
.h9_c00348{height:48.116836px;}
.h0_c00348{height:1335.000000px;}
.w0_c00348{width:880.500000px;}
.x0_c00348{left:0.000000px;}
.xa3_c00348{left:151.920000px;}
.x35_c00348{left:153.000000px;}
.x1f_c00348{left:154.080000px;}
.x12_c00348{left:166.080000px;}
.x2a_c00348{left:168.420000px;}
.x3b_c00348{left:169.500000px;}
.xa4_c00348{left:178.920000px;}
.x69_c00348{left:180.000000px;}
.x8b_c00348{left:181.500000px;}
.x79_c00348{left:183.000000px;}
.xea_c00348{left:184.080000px;}
.xad_c00348{left:187.500000px;}
.xb5_c00348{left:189.000000px;}
.xbc_c00348{left:192.420000px;}
.x51_c00348{left:195.000000px;}
.x20_c00348{left:196.500000px;}
.xe8_c00348{left:199.920000px;}
.x13_c00348{left:201.420000px;}
.x95_c00348{left:207.000000px;}
.x2b_c00348{left:208.920000px;}
.x72_c00348{left:211.500000px;}
.xe1_c00348{left:212.580000px;}
.x6a_c00348{left:216.420000px;}
.x46_c00348{left:217.500000px;}
.xbd_c00348{left:221.355000px;}
.x90_c00348{left:222.420000px;}
.x9e_c00348{left:223.920000px;}
.x7a_c00348{left:225.000000px;}
.xc8_c00348{left:226.500000px;}
.x47_c00348{left:229.920000px;}
.xdb_c00348{left:231.000000px;}
.xd5_c00348{left:232.500000px;}
.x48_c00348{left:237.000000px;}
.xf1_c00348{left:241.080000px;}
.x36_c00348{left:242.580000px;}
.xc9_c00348{left:244.500000px;}
.xc4_c00348{left:247.500000px;}
.x5d_c00348{left:248.580000px;}
.x14_c00348{left:250.500000px;}
.x53_c00348{left:252.000000px;}
.x21_c00348{left:253.500000px;}
.x6b_c00348{left:255.000000px;}
.xae_c00348{left:256.500000px;}
.x85_c00348{left:257.775000px;}
.x3c_c00348{left:259.500000px;}
.x61_c00348{left:261.000000px;}
.xa5_c00348{left:262.500000px;}
.xf7_c00348{left:265.920000px;}
.x2c_c00348{left:267.000000px;}
.x52_c00348{left:268.920000px;}
.xf2_c00348{left:273.000000px;}
.x99_c00348{left:275.580000px;}
.xbe_c00348{left:277.080000px;}
.xa6_c00348{left:279.000000px;}
.x3d_c00348{left:280.500000px;}
.x62_c00348{left:282.000000px;}
.x4_c00348{left:285.645000px;}
.x2d_c00348{left:288.000000px;}
.x37_c00348{left:289.500000px;}
.x86_c00348{left:293.580000px;}
.xa7_c00348{left:295.500000px;}
.x49_c00348{left:298.080000px;}
.x9_c00348{left:300.000000px;}
.x54_c00348{left:304.500000px;}
.x9f_c00348{left:306.420000px;}
.x5e_c00348{left:307.500000px;}
.xeb_c00348{left:308.580000px;}
.xee_c00348{left:310.080000px;}
.x15_c00348{left:313.920000px;}
.xca_c00348{left:315.000000px;}
.x38_c00348{left:316.500000px;}
.x2e_c00348{left:319.500000px;}
.xb6_c00348{left:321.000000px;}
.x4a_c00348{left:322.080000px;}
.xd6_c00348{left:324.000000px;}
.x55_c00348{left:325.080000px;}
.xa_c00348{left:326.580000px;}
.xaf_c00348{left:328.080000px;}
.xe9_c00348{left:330.000000px;}
.x87_c00348{left:332.580000px;}
.x39_c00348{left:336.000000px;}
.x5_c00348{left:339.000000px;}
.xf3_c00348{left:340.080000px;}
.xa8_c00348{left:342.000000px;}
.x3e_c00348{left:343.275000px;}
.x73_c00348{left:347.580000px;}
.xb_c00348{left:349.500000px;}
.xcd_c00348{left:350.580000px;}
.x56_c00348{left:355.080000px;}
.xb0_c00348{left:358.080000px;}
.x22_c00348{left:361.920000px;}
.x7b_c00348{left:363.420000px;}
.x63_c00348{left:365.145000px;}
.xc_c00348{left:367.080000px;}
.x4b_c00348{left:369.645000px;}
.xf4_c00348{left:372.000000px;}
.x96_c00348{left:373.080000px;}
.x16_c00348{left:374.580000px;}
.x6c_c00348{left:377.580000px;}
.xd1_c00348{left:378.855000px;}
.x5f_c00348{left:382.080000px;}
.x3f_c00348{left:385.080000px;}
.x2f_c00348{left:386.580000px;}
.xc5_c00348{left:388.920000px;}
.xd7_c00348{left:393.420000px;}
.xbf_c00348{left:394.500000px;}
.x23_c00348{left:396.000000px;}
.x3a_c00348{left:399.000000px;}
.x74_c00348{left:402.000000px;}
.x97_c00348{left:403.500000px;}
.x1_c00348{left:405.000000px;}
.x57_c00348{left:408.000000px;}
.x60_c00348{left:409.080000px;}
.x4c_c00348{left:411.000000px;}
.x6_c00348{left:412.920000px;}
.x64_c00348{left:414.000000px;}
.xc6_c00348{left:417.420000px;}
.xa9_c00348{left:418.500000px;}
.x24_c00348{left:421.080000px;}
.xd_c00348{left:425.580000px;}
.x8c_c00348{left:430.080000px;}
.xdc_c00348{left:431.580000px;}
.xd2_c00348{left:433.500000px;}
.x6d_c00348{left:436.080000px;}
.x88_c00348{left:439.500000px;}
.x7c_c00348{left:441.000000px;}
.xde_c00348{left:442.500000px;}
.xe5_c00348{left:444.420000px;}
.xce_c00348{left:445.920000px;}
.xe_c00348{left:447.420000px;}
.x17_c00348{left:448.920000px;}
.x58_c00348{left:450.420000px;}
.xd8_c00348{left:451.500000px;}
.xf5_c00348{left:457.500000px;}
.xb7_c00348{left:458.580000px;}
.x40_c00348{left:459.645000px;}
.x18_c00348{left:462.000000px;}
.xf_c00348{left:465.000000px;}
.xcb_c00348{left:467.580000px;}
.x98_c00348{left:469.080000px;}
.x65_c00348{left:472.080000px;}
.xef_c00348{left:475.500000px;}
.x8d_c00348{left:477.000000px;}
.x7d_c00348{left:478.080000px;}
.x30_c00348{left:481.080000px;}
.x7_c00348{left:482.580000px;}
.xaa_c00348{left:484.500000px;}
.xb1_c00348{left:486.000000px;}
.x91_c00348{left:489.000000px;}
.xb8_c00348{left:490.500000px;}
.x19_c00348{left:493.920000px;}
.xec_c00348{left:495.000000px;}
.x7e_c00348{left:496.080000px;}
.x41_c00348{left:498.000000px;}
.x59_c00348{left:499.500000px;}
.x10_c00348{left:501.420000px;}
.xe6_c00348{left:503.580000px;}
.x25_c00348{left:505.080000px;}
.x6e_c00348{left:506.580000px;}
.xc7_c00348{left:508.500000px;}
.x92_c00348{left:511.920000px;}
.xc0_c00348{left:514.500000px;}
.xcf_c00348{left:516.000000px;}
.x4d_c00348{left:522.420000px;}
.x89_c00348{left:524.145000px;}
.xe2_c00348{left:526.500000px;}
.x26_c00348{left:531.420000px;}
.x5a_c00348{left:535.920000px;}
.x6f_c00348{left:538.500000px;}
.x4e_c00348{left:541.500000px;}
.x1a_c00348{left:546.000000px;}
.x11_c00348{left:547.080000px;}
.x66_c00348{left:551.775000px;}
.x42_c00348{left:553.500000px;}
.x7f_c00348{left:554.775000px;}
.x31_c00348{left:556.920000px;}
.xab_c00348{left:559.080000px;}
.xd3_c00348{left:560.580000px;}
.x8_c00348{left:562.275000px;}
.xf8_c00348{left:563.580000px;}
.xcc_c00348{left:565.920000px;}
.x8a_c00348{left:568.500000px;}
.x93_c00348{left:570.420000px;}
.xa0_c00348{left:573.420000px;}
.xb2_c00348{left:576.000000px;}
.xb9_c00348{left:579.000000px;}
.xc1_c00348{left:583.500000px;}
.x5b_c00348{left:585.000000px;}
.xac_c00348{left:591.000000px;}
.x70_c00348{left:592.500000px;}
.x67_c00348{left:594.000000px;}
.x80_c00348{left:595.500000px;}
.x32_c00348{left:597.000000px;}
.x9a_c00348{left:598.500000px;}
.x75_c00348{left:601.500000px;}
.x27_c00348{left:602.580000px;}
.xd9_c00348{left:604.080000px;}
.xdf_c00348{left:607.500000px;}
.x8e_c00348{left:609.420000px;}
.x43_c00348{left:613.080000px;}
.xc2_c00348{left:616.920000px;}
.xba_c00348{left:618.420000px;}
.x76_c00348{left:619.500000px;}
.x44_c00348{left:622.920000px;}
.xe7_c00348{left:624.000000px;}
.x94_c00348{left:627.000000px;}
.x28_c00348{left:628.080000px;}
.x81_c00348{left:630.000000px;}
.x1b_c00348{left:633.420000px;}
.x33_c00348{left:635.145000px;}
.x4f_c00348{left:636.420000px;}
.x9b_c00348{left:637.920000px;}
.xf0_c00348{left:639.000000px;}
.xa1_c00348{left:640.920000px;}
.x77_c00348{left:642.000000px;}
.x1c_c00348{left:645.000000px;}
.x5c_c00348{left:649.080000px;}
.xc3_c00348{left:652.500000px;}
.xd0_c00348{left:654.000000px;}
.xb3_c00348{left:655.500000px;}
.xe4_c00348{left:658.500000px;}
.x82_c00348{left:660.000000px;}
.x78_c00348{left:661.080000px;}
.xf6_c00348{left:662.580000px;}
.x68_c00348{left:664.500000px;}
.x9c_c00348{left:668.145000px;}
.x71_c00348{left:670.500000px;}
.xbb_c00348{left:672.420000px;}
.xe0_c00348{left:673.500000px;}
.xd4_c00348{left:676.500000px;}
.x1d_c00348{left:677.580000px;}
.x50_c00348{left:679.500000px;}
.x83_c00348{left:680.580000px;}
.xa2_c00348{left:684.420000px;}
.x29_c00348{left:688.920000px;}
.xdd_c00348{left:691.920000px;}
.xed_c00348{left:693.000000px;}
.x45_c00348{left:694.275000px;}
.x8f_c00348{left:697.920000px;}
.x84_c00348{left:699.000000px;}
.x1e_c00348{left:700.920000px;}
.xda_c00348{left:704.580000px;}
.xb4_c00348{left:706.500000px;}
.x2_c00348{left:708.000000px;}
.xe3_c00348{left:711.000000px;}
.x34_c00348{left:712.500000px;}
.x9d_c00348{left:718.500000px;}
.x3_c00348{left:720.000000px;}
@media print{
.v0_c00348{vertical-align:0.000000pt;}
.ls0_c00348{letter-spacing:0.000000pt;}
.ws0_c00348{word-spacing:-3.890368pt;}
.ws3_c00348{word-spacing:0.000000pt;}
.ws2_c00348{word-spacing:7.266933pt;}
.ws1_c00348{word-spacing:12.612281pt;}
.fs7_c00348{font-size:3.040000pt;}
.fs2_c00348{font-size:12.106667pt;}
.fs0_c00348{font-size:16.640000pt;}
.fs5_c00348{font-size:18.133333pt;}
.fs1_c00348{font-size:22.666667pt;}
.fs3_c00348{font-size:25.706667pt;}
.fs6_c00348{font-size:28.746667pt;}
.fs4_c00348{font-size:31.733333pt;}
.fs8_c00348{font-size:34.773333pt;}
.y0_c00348{bottom:0.000000pt;}
.y3_c00348{bottom:201.506667pt;}
.yd4_c00348{bottom:222.066667pt;}
.yd3_c00348{bottom:224.933333pt;}
.yd2_c00348{bottom:234.640000pt;}
.yd1_c00348{bottom:235.400000pt;}
.ycb_c00348{bottom:236.733333pt;}
.ycc_c00348{bottom:237.306667pt;}
.yce_c00348{bottom:237.693333pt;}
.ycd_c00348{bottom:238.266667pt;}
.yd0_c00348{bottom:238.640000pt;}
.ycf_c00348{bottom:238.840000pt;}
.yca_c00348{bottom:248.733333pt;}
.yc9_c00348{bottom:249.693333pt;}
.yc7_c00348{bottom:251.226667pt;}
.yc8_c00348{bottom:251.600000pt;}
.yc5_c00348{bottom:263.026667pt;}
.yc4_c00348{bottom:263.973333pt;}
.yc6_c00348{bottom:264.173333pt;}
.yc3_c00348{bottom:264.933333pt;}
.yc0_c00348{bottom:275.400000pt;}
.ybe_c00348{bottom:276.360000pt;}
.ybd_c00348{bottom:276.560000pt;}
.yc2_c00348{bottom:277.306667pt;}
.ybf_c00348{bottom:277.506667pt;}
.yc1_c00348{bottom:278.266667pt;}
.yba_c00348{bottom:303.773333pt;}
.yb9_c00348{bottom:305.693333pt;}
.ybc_c00348{bottom:305.893333pt;}
.ybb_c00348{bottom:306.640000pt;}
.yb4_c00348{bottom:321.106667pt;}
.yb7_c00348{bottom:321.893333pt;}
.yb6_c00348{bottom:322.066667pt;}
.yb2_c00348{bottom:322.440000pt;}
.yb8_c00348{bottom:323.026667pt;}
.yb3_c00348{bottom:323.226667pt;}
.yb0_c00348{bottom:323.400000pt;}
.yb5_c00348{bottom:323.973333pt;}
.yb1_c00348{bottom:324.360000pt;}
.yad_c00348{bottom:338.826667pt;}
.yaa_c00348{bottom:339.773333pt;}
.yaf_c00348{bottom:340.360000pt;}
.yab_c00348{bottom:340.560000pt;}
.yae_c00348{bottom:341.306667pt;}
.yac_c00348{bottom:341.693333pt;}
.ya8_c00348{bottom:357.106667pt;}
.ya9_c00348{bottom:358.640000pt;}
.ya7_c00348{bottom:359.026667pt;}
.ya4_c00348{bottom:373.306667pt;}
.ya5_c00348{bottom:374.440000pt;}
.ya6_c00348{bottom:375.026667pt;}
.ya3_c00348{bottom:375.400000pt;}
.ya1_c00348{bottom:376.360000pt;}
.ya2_c00348{bottom:377.306667pt;}
.y9c_c00348{bottom:389.693333pt;}
.y9b_c00348{bottom:391.773333pt;}
.y9f_c00348{bottom:392.360000pt;}
.ya0_c00348{bottom:392.560000pt;}
.y9e_c00348{bottom:393.306667pt;}
.y9d_c00348{bottom:393.693333pt;}
.y9a_c00348{bottom:409.106667pt;}
.y99_c00348{bottom:410.266667pt;}
.y95_c00348{bottom:410.440000pt;}
.y97_c00348{bottom:411.026667pt;}
.y98_c00348{bottom:411.226667pt;}
.y96_c00348{bottom:412.360000pt;}
.y91_c00348{bottom:426.440000pt;}
.y94_c00348{bottom:427.226667pt;}
.y93_c00348{bottom:428.360000pt;}
.y90_c00348{bottom:428.560000pt;}
.y92_c00348{bottom:429.306667pt;}
.y8f_c00348{bottom:429.693333pt;}
.y8e_c00348{bottom:430.640000pt;}
.y8b_c00348{bottom:445.106667pt;}
.y8d_c00348{bottom:445.693333pt;}
.y8c_c00348{bottom:446.640000pt;}
.y8a_c00348{bottom:447.026667pt;}
.y87_c00348{bottom:461.306667pt;}
.y83_c00348{bottom:461.706667pt;}
.y84_c00348{bottom:462.440000pt;}
.y89_c00348{bottom:463.026667pt;}
.y85_c00348{bottom:463.226667pt;}
.y88_c00348{bottom:463.400000pt;}
.y86_c00348{bottom:463.973333pt;}
.y82_c00348{bottom:464.360000pt;}
.y7e_c00348{bottom:479.773333pt;}
.y80_c00348{bottom:480.560000pt;}
.y81_c00348{bottom:480.733333pt;}
.y7f_c00348{bottom:481.693333pt;}
.y7c_c00348{bottom:497.106667pt;}
.y7d_c00348{bottom:497.893333pt;}
.y7b_c00348{bottom:499.026667pt;}
.y79_c00348{bottom:514.440000pt;}
.y7a_c00348{bottom:515.973333pt;}
.y77_c00348{bottom:516.360000pt;}
.y78_c00348{bottom:516.560000pt;}
.y75_c00348{bottom:517.306667pt;}
.y76_c00348{bottom:517.693333pt;}
.y74_c00348{bottom:531.400000pt;}
.y71_c00348{bottom:531.773333pt;}
.y70_c00348{bottom:531.973333pt;}
.y6f_c00348{bottom:533.693333pt;}
.y72_c00348{bottom:533.893333pt;}
.y73_c00348{bottom:534.640000pt;}
.y6e_c00348{bottom:550.440000pt;}
.y6d_c00348{bottom:551.973333pt;}
.y6a_c00348{bottom:566.440000pt;}
.y69_c00348{bottom:568.360000pt;}
.y6b_c00348{bottom:568.560000pt;}
.y6c_c00348{bottom:569.306667pt;}
.y67_c00348{bottom:583.773333pt;}
.y66_c00348{bottom:585.106667pt;}
.y68_c00348{bottom:585.893333pt;}
.y65_c00348{bottom:587.026667pt;}
.y64_c00348{bottom:601.493333pt;}
.y62_c00348{bottom:602.440000pt;}
.y60_c00348{bottom:604.360000pt;}
.y61_c00348{bottom:604.373333pt;}
.y63_c00348{bottom:605.306667pt;}
.y5e_c00348{bottom:620.733333pt;}
.y5f_c00348{bottom:621.693333pt;}
.y5d_c00348{bottom:622.640000pt;}
.y5c_c00348{bottom:636.733333pt;}
.y5a_c00348{bottom:637.106667pt;}
.y5b_c00348{bottom:639.026667pt;}
.y59_c00348{bottom:639.226667pt;}
.y58_c00348{bottom:639.973333pt;}
.y57_c00348{bottom:654.440000pt;}
.y54_c00348{bottom:655.773333pt;}
.y56_c00348{bottom:656.360000pt;}
.y53_c00348{bottom:657.306667pt;}
.y55_c00348{bottom:657.693333pt;}
.y52_c00348{bottom:671.026667pt;}
.y50_c00348{bottom:673.106667pt;}
.y4f_c00348{bottom:674.066667pt;}
.y51_c00348{bottom:675.026667pt;}
.y4e_c00348{bottom:688.733333pt;}
.y49_c00348{bottom:689.306667pt;}
.y4b_c00348{bottom:689.693333pt;}
.y48_c00348{bottom:690.440000pt;}
.y4d_c00348{bottom:691.226667pt;}
.y4a_c00348{bottom:691.400000pt;}
.y4c_c00348{bottom:693.306667pt;}
.y44_c00348{bottom:706.440000pt;}
.y42_c00348{bottom:707.773333pt;}
.y46_c00348{bottom:708.360000pt;}
.y47_c00348{bottom:708.560000pt;}
.y45_c00348{bottom:709.306667pt;}
.y43_c00348{bottom:709.693333pt;}
.y40_c00348{bottom:725.106667pt;}
.y3f_c00348{bottom:725.893333pt;}
.y41_c00348{bottom:726.640000pt;}
.y3e_c00348{bottom:727.026667pt;}
.y3c_c00348{bottom:742.440000pt;}
.y3d_c00348{bottom:742.826667pt;}
.y3b_c00348{bottom:744.360000pt;}
.y39_c00348{bottom:745.693333pt;}
.y3a_c00348{bottom:745.706667pt;}
.y37_c00348{bottom:759.773333pt;}
.y36_c00348{bottom:760.733333pt;}
.y38_c00348{bottom:761.106667pt;}
.y35_c00348{bottom:763.026667pt;}
.y32_c00348{bottom:777.106667pt;}
.y33_c00348{bottom:778.066667pt;}
.y2f_c00348{bottom:779.026667pt;}
.y30_c00348{bottom:779.226667pt;}
.y34_c00348{bottom:779.973333pt;}
.y31_c00348{bottom:780.373333pt;}
.y2d_c00348{bottom:793.693333pt;}
.y2c_c00348{bottom:794.440000pt;}
.y2b_c00348{bottom:795.773333pt;}
.y2e_c00348{bottom:796.560000pt;}
.y28_c00348{bottom:811.026667pt;}
.y2a_c00348{bottom:811.773333pt;}
.y26_c00348{bottom:812.160000pt;}
.y23_c00348{bottom:812.360000pt;}
.y24_c00348{bottom:813.106667pt;}
.y25_c00348{bottom:813.893333pt;}
.y29_c00348{bottom:814.066667pt;}
.y27_c00348{bottom:815.026667pt;}
.y20_c00348{bottom:829.693333pt;}
.y22_c00348{bottom:830.266667pt;}
.y1d_c00348{bottom:830.440000pt;}
.y1f_c00348{bottom:831.400000pt;}
.y21_c00348{bottom:832.360000pt;}
.y1e_c00348{bottom:832.373333pt;}
.y1b_c00348{bottom:847.773333pt;}
.y1c_c00348{bottom:849.306667pt;}
.y1a_c00348{bottom:849.693333pt;}
.y18_c00348{bottom:864.160000pt;}
.y19_c00348{bottom:864.360000pt;}
.y15_c00348{bottom:865.106667pt;}
.y17_c00348{bottom:867.026667pt;}
.y16_c00348{bottom:868.373333pt;}
.yf_c00348{bottom:890.066667pt;}
.y13_c00348{bottom:890.266667pt;}
.y11_c00348{bottom:891.026667pt;}
.y14_c00348{bottom:891.400000pt;}
.y10_c00348{bottom:892.933333pt;}
.y12_c00348{bottom:893.306667pt;}
.yb_c00348{bottom:902.640000pt;}
.ye_c00348{bottom:903.600000pt;}
.yd_c00348{bottom:904.360000pt;}
.ya_c00348{bottom:905.306667pt;}
.yc_c00348{bottom:906.266667pt;}
.y9_c00348{bottom:920.733333pt;}
.y8_c00348{bottom:920.933333pt;}
.y7_c00348{bottom:921.693333pt;}
.y6_c00348{bottom:923.600000pt;}
.y5_c00348{bottom:943.773333pt;}
.y4_c00348{bottom:945.693333pt;}
.y2_c00348{bottom:977.306667pt;}
.y1_c00348{bottom:979.226667pt;}
.h8_c00348{height:3.739141pt;}
.h3_c00348{height:14.890964pt;}
.h1_c00348{height:20.466875pt;}
.h6_c00348{height:22.303646pt;}
.h2_c00348{height:27.879557pt;}
.h4_c00348{height:31.618698pt;}
.h7_c00348{height:35.357839pt;}
.h5_c00348{height:39.031380pt;}
.h9_c00348{height:42.770521pt;}
.h0_c00348{height:1186.666667pt;}
.w0_c00348{width:782.666667pt;}
.x0_c00348{left:0.000000pt;}
.xa3_c00348{left:135.040000pt;}
.x35_c00348{left:136.000000pt;}
.x1f_c00348{left:136.960000pt;}
.x12_c00348{left:147.626667pt;}
.x2a_c00348{left:149.706667pt;}
.x3b_c00348{left:150.666667pt;}
.xa4_c00348{left:159.040000pt;}
.x69_c00348{left:160.000000pt;}
.x8b_c00348{left:161.333333pt;}
.x79_c00348{left:162.666667pt;}
.xea_c00348{left:163.626667pt;}
.xad_c00348{left:166.666667pt;}
.xb5_c00348{left:168.000000pt;}
.xbc_c00348{left:171.040000pt;}
.x51_c00348{left:173.333333pt;}
.x20_c00348{left:174.666667pt;}
.xe8_c00348{left:177.706667pt;}
.x13_c00348{left:179.040000pt;}
.x95_c00348{left:184.000000pt;}
.x2b_c00348{left:185.706667pt;}
.x72_c00348{left:188.000000pt;}
.xe1_c00348{left:188.960000pt;}
.x6a_c00348{left:192.373333pt;}
.x46_c00348{left:193.333333pt;}
.xbd_c00348{left:196.760000pt;}
.x90_c00348{left:197.706667pt;}
.x9e_c00348{left:199.040000pt;}
.x7a_c00348{left:200.000000pt;}
.xc8_c00348{left:201.333333pt;}
.x47_c00348{left:204.373333pt;}
.xdb_c00348{left:205.333333pt;}
.xd5_c00348{left:206.666667pt;}
.x48_c00348{left:210.666667pt;}
.xf1_c00348{left:214.293333pt;}
.x36_c00348{left:215.626667pt;}
.xc9_c00348{left:217.333333pt;}
.xc4_c00348{left:220.000000pt;}
.x5d_c00348{left:220.960000pt;}
.x14_c00348{left:222.666667pt;}
.x53_c00348{left:224.000000pt;}
.x21_c00348{left:225.333333pt;}
.x6b_c00348{left:226.666667pt;}
.xae_c00348{left:228.000000pt;}
.x85_c00348{left:229.133333pt;}
.x3c_c00348{left:230.666667pt;}
.x61_c00348{left:232.000000pt;}
.xa5_c00348{left:233.333333pt;}
.xf7_c00348{left:236.373333pt;}
.x2c_c00348{left:237.333333pt;}
.x52_c00348{left:239.040000pt;}
.xf2_c00348{left:242.666667pt;}
.x99_c00348{left:244.960000pt;}
.xbe_c00348{left:246.293333pt;}
.xa6_c00348{left:248.000000pt;}
.x3d_c00348{left:249.333333pt;}
.x62_c00348{left:250.666667pt;}
.x4_c00348{left:253.906667pt;}
.x2d_c00348{left:256.000000pt;}
.x37_c00348{left:257.333333pt;}
.x86_c00348{left:260.960000pt;}
.xa7_c00348{left:262.666667pt;}
.x49_c00348{left:264.960000pt;}
.x9_c00348{left:266.666667pt;}
.x54_c00348{left:270.666667pt;}
.x9f_c00348{left:272.373333pt;}
.x5e_c00348{left:273.333333pt;}
.xeb_c00348{left:274.293333pt;}
.xee_c00348{left:275.626667pt;}
.x15_c00348{left:279.040000pt;}
.xca_c00348{left:280.000000pt;}
.x38_c00348{left:281.333333pt;}
.x2e_c00348{left:284.000000pt;}
.xb6_c00348{left:285.333333pt;}
.x4a_c00348{left:286.293333pt;}
.xd6_c00348{left:288.000000pt;}
.x55_c00348{left:288.960000pt;}
.xa_c00348{left:290.293333pt;}
.xaf_c00348{left:291.626667pt;}
.xe9_c00348{left:293.333333pt;}
.x87_c00348{left:295.626667pt;}
.x39_c00348{left:298.666667pt;}
.x5_c00348{left:301.333333pt;}
.xf3_c00348{left:302.293333pt;}
.xa8_c00348{left:304.000000pt;}
.x3e_c00348{left:305.133333pt;}
.x73_c00348{left:308.960000pt;}
.xb_c00348{left:310.666667pt;}
.xcd_c00348{left:311.626667pt;}
.x56_c00348{left:315.626667pt;}
.xb0_c00348{left:318.293333pt;}
.x22_c00348{left:321.706667pt;}
.x7b_c00348{left:323.040000pt;}
.x63_c00348{left:324.573333pt;}
.xc_c00348{left:326.293333pt;}
.x4b_c00348{left:328.573333pt;}
.xf4_c00348{left:330.666667pt;}
.x96_c00348{left:331.626667pt;}
.x16_c00348{left:332.960000pt;}
.x6c_c00348{left:335.626667pt;}
.xd1_c00348{left:336.760000pt;}
.x5f_c00348{left:339.626667pt;}
.x3f_c00348{left:342.293333pt;}
.x2f_c00348{left:343.626667pt;}
.xc5_c00348{left:345.706667pt;}
.xd7_c00348{left:349.706667pt;}
.xbf_c00348{left:350.666667pt;}
.x23_c00348{left:352.000000pt;}
.x3a_c00348{left:354.666667pt;}
.x74_c00348{left:357.333333pt;}
.x97_c00348{left:358.666667pt;}
.x1_c00348{left:360.000000pt;}
.x57_c00348{left:362.666667pt;}
.x60_c00348{left:363.626667pt;}
.x4c_c00348{left:365.333333pt;}
.x6_c00348{left:367.040000pt;}
.x64_c00348{left:368.000000pt;}
.xc6_c00348{left:371.040000pt;}
.xa9_c00348{left:372.000000pt;}
.x24_c00348{left:374.293333pt;}
.xd_c00348{left:378.293333pt;}
.x8c_c00348{left:382.293333pt;}
.xdc_c00348{left:383.626667pt;}
.xd2_c00348{left:385.333333pt;}
.x6d_c00348{left:387.626667pt;}
.x88_c00348{left:390.666667pt;}
.x7c_c00348{left:392.000000pt;}
.xde_c00348{left:393.333333pt;}
.xe5_c00348{left:395.040000pt;}
.xce_c00348{left:396.373333pt;}
.xe_c00348{left:397.706667pt;}
.x17_c00348{left:399.040000pt;}
.x58_c00348{left:400.373333pt;}
.xd8_c00348{left:401.333333pt;}
.xf5_c00348{left:406.666667pt;}
.xb7_c00348{left:407.626667pt;}
.x40_c00348{left:408.573333pt;}
.x18_c00348{left:410.666667pt;}
.xf_c00348{left:413.333333pt;}
.xcb_c00348{left:415.626667pt;}
.x98_c00348{left:416.960000pt;}
.x65_c00348{left:419.626667pt;}
.xef_c00348{left:422.666667pt;}
.x8d_c00348{left:424.000000pt;}
.x7d_c00348{left:424.960000pt;}
.x30_c00348{left:427.626667pt;}
.x7_c00348{left:428.960000pt;}
.xaa_c00348{left:430.666667pt;}
.xb1_c00348{left:432.000000pt;}
.x91_c00348{left:434.666667pt;}
.xb8_c00348{left:436.000000pt;}
.x19_c00348{left:439.040000pt;}
.xec_c00348{left:440.000000pt;}
.x7e_c00348{left:440.960000pt;}
.x41_c00348{left:442.666667pt;}
.x59_c00348{left:444.000000pt;}
.x10_c00348{left:445.706667pt;}
.xe6_c00348{left:447.626667pt;}
.x25_c00348{left:448.960000pt;}
.x6e_c00348{left:450.293333pt;}
.xc7_c00348{left:452.000000pt;}
.x92_c00348{left:455.040000pt;}
.xc0_c00348{left:457.333333pt;}
.xcf_c00348{left:458.666667pt;}
.x4d_c00348{left:464.373333pt;}
.x89_c00348{left:465.906667pt;}
.xe2_c00348{left:468.000000pt;}
.x26_c00348{left:472.373333pt;}
.x5a_c00348{left:476.373333pt;}
.x6f_c00348{left:478.666667pt;}
.x4e_c00348{left:481.333333pt;}
.x1a_c00348{left:485.333333pt;}
.x11_c00348{left:486.293333pt;}
.x66_c00348{left:490.466667pt;}
.x42_c00348{left:492.000000pt;}
.x7f_c00348{left:493.133333pt;}
.x31_c00348{left:495.040000pt;}
.xab_c00348{left:496.960000pt;}
.xd3_c00348{left:498.293333pt;}
.x8_c00348{left:499.800000pt;}
.xf8_c00348{left:500.960000pt;}
.xcc_c00348{left:503.040000pt;}
.x8a_c00348{left:505.333333pt;}
.x93_c00348{left:507.040000pt;}
.xa0_c00348{left:509.706667pt;}
.xb2_c00348{left:512.000000pt;}
.xb9_c00348{left:514.666667pt;}
.xc1_c00348{left:518.666667pt;}
.x5b_c00348{left:520.000000pt;}
.xac_c00348{left:525.333333pt;}
.x70_c00348{left:526.666667pt;}
.x67_c00348{left:528.000000pt;}
.x80_c00348{left:529.333333pt;}
.x32_c00348{left:530.666667pt;}
.x9a_c00348{left:532.000000pt;}
.x75_c00348{left:534.666667pt;}
.x27_c00348{left:535.626667pt;}
.xd9_c00348{left:536.960000pt;}
.xdf_c00348{left:540.000000pt;}
.x8e_c00348{left:541.706667pt;}
.x43_c00348{left:544.960000pt;}
.xc2_c00348{left:548.373333pt;}
.xba_c00348{left:549.706667pt;}
.x76_c00348{left:550.666667pt;}
.x44_c00348{left:553.706667pt;}
.xe7_c00348{left:554.666667pt;}
.x94_c00348{left:557.333333pt;}
.x28_c00348{left:558.293333pt;}
.x81_c00348{left:560.000000pt;}
.x1b_c00348{left:563.040000pt;}
.x33_c00348{left:564.573333pt;}
.x4f_c00348{left:565.706667pt;}
.x9b_c00348{left:567.040000pt;}
.xf0_c00348{left:568.000000pt;}
.xa1_c00348{left:569.706667pt;}
.x77_c00348{left:570.666667pt;}
.x1c_c00348{left:573.333333pt;}
.x5c_c00348{left:576.960000pt;}
.xc3_c00348{left:580.000000pt;}
.xd0_c00348{left:581.333333pt;}
.xb3_c00348{left:582.666667pt;}
.xe4_c00348{left:585.333333pt;}
.x82_c00348{left:586.666667pt;}
.x78_c00348{left:587.626667pt;}
.xf6_c00348{left:588.960000pt;}
.x68_c00348{left:590.666667pt;}
.x9c_c00348{left:593.906667pt;}
.x71_c00348{left:596.000000pt;}
.xbb_c00348{left:597.706667pt;}
.xe0_c00348{left:598.666667pt;}
.xd4_c00348{left:601.333333pt;}
.x1d_c00348{left:602.293333pt;}
.x50_c00348{left:604.000000pt;}
.x83_c00348{left:604.960000pt;}
.xa2_c00348{left:608.373333pt;}
.x29_c00348{left:612.373333pt;}
.xdd_c00348{left:615.040000pt;}
.xed_c00348{left:616.000000pt;}
.x45_c00348{left:617.133333pt;}
.x8f_c00348{left:620.373333pt;}
.x84_c00348{left:621.333333pt;}
.x1e_c00348{left:623.040000pt;}
.xda_c00348{left:626.293333pt;}
.xb4_c00348{left:628.000000pt;}
.x2_c00348{left:629.333333pt;}
.xe3_c00348{left:632.000000pt;}
.x34_c00348{left:633.333333pt;}
.x9d_c00348{left:638.666667pt;}
.x3_c00348{left:640.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_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_44d7280473f9c4cd87a3ebb9.woff2')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:1.688965;font-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_c00349{transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);}
.mca_c00349{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.me5_c00349{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m89_c00349{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m43_c00349{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m44_c00349{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.me9_c00349{transform:matrix(0.380705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380705,0.000000,0.000000,0.250000,0,0);}
.m22_c00349{transform:matrix(0.382189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382189,0.000000,0.000000,0.250000,0,0);}
.m72_c00349{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m3d_c00349{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m17_c00349{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.me4_c00349{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mbf_c00349{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mb4_c00349{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m4a_c00349{transform:matrix(0.393672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393672,0.000000,0.000000,0.250000,0,0);}
.m9d_c00349{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m42_c00349{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.ma1_c00349{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.mb9_c00349{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m2f_c00349{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m60_c00349{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m33_c00349{transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);}
.m84_c00349{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mbe_c00349{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m67_c00349{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m7a_c00349{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m9b_c00349{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mf7_c00349{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m5f_c00349{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m87_c00349{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.meb_c00349{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.md1_c00349{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.mf6_c00349{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mdc_c00349{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m5a_c00349{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.me1_c00349{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.ma6_c00349{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.mb6_c00349{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mdf_c00349{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.mdd_c00349{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mec_c00349{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m34_c00349{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m38_c00349{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m8f_c00349{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m4d_c00349{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m1e_c00349{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m5b_c00349{transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);}
.md8_c00349{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.md9_c00349{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mac_c00349{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m26_c00349{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m27_c00349{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.me2_c00349{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.mf4_c00349{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mc8_c00349{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.mc6_c00349{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m40_c00349{transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);}
.m88_c00349{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m2b_c00349{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m37_c00349{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m94_c00349{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.md7_c00349{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m4b_c00349{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.mf5_c00349{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mc2_c00349{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.ma4_c00349{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.me3_c00349{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m8a_c00349{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m25_c00349{transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);}
.m92_c00349{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.maa_c00349{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.mc4_c00349{transform:matrix(0.443465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443465,0.000000,0.000000,0.250000,0,0);}
.m6b_c00349{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mc9_c00349{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.mbb_c00349{transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);}
.m90_c00349{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m8d_c00349{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.mad_c00349{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.mef_c00349{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m66_c00349{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.mda_c00349{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m69_c00349{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m74_c00349{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m6a_c00349{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m51_c00349{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mbd_c00349{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m20_c00349{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m16_c00349{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m3f_c00349{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.mc5_c00349{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m8e_c00349{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.mab_c00349{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.md6_c00349{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.mcd_c00349{transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);}
.m4_c00349{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m39_c00349{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m98_c00349{transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);}
.m59_c00349{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.mb8_c00349{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m96_c00349{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mdb_c00349{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m10_c00349{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m56_c00349{transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);}
.m4f_c00349{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mf3_c00349{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m18_c00349{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m80_c00349{transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);}
.m73_c00349{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m1a_c00349{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m64_c00349{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m31_c00349{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.mea_c00349{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m55_c00349{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.mce_c00349{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m1f_c00349{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);}
.m7c_c00349{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m78_c00349{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m83_c00349{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.mcf_c00349{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mb1_c00349{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mbc_c00349{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m9f_c00349{transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);}
.md4_c00349{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m3a_c00349{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m7f_c00349{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.md0_c00349{transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);}
.m41_c00349{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m3e_c00349{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mc_c00349{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m65_c00349{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mf2_c00349{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m70_c00349{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m5c_c00349{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m8c_c00349{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m28_c00349{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_c00349{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m45_c00349{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m52_c00349{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m4c_c00349{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m46_c00349{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m32_c00349{transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);}
.m9e_c00349{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m5d_c00349{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mb5_c00349{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m3c_c00349{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m29_c00349{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m75_c00349{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.me7_c00349{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m77_c00349{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mf8_c00349{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m91_c00349{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m4e_c00349{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m6f_c00349{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.ma8_c00349{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.ma5_c00349{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m1d_c00349{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.ma0_c00349{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.mb0_c00349{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m68_c00349{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m19_c00349{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m62_c00349{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m8_c00349{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m48_c00349{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.me6_c00349{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.me8_c00349{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.mb7_c00349{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m1c_c00349{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);}
.m86_c00349{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.ma3_c00349{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mb3_c00349{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m1_c00349{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.mae_c00349{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m9c_c00349{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m95_c00349{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m49_c00349{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.md5_c00349{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m82_c00349{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.med_c00349{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mcc_c00349{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);}
.m5e_c00349{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m50_c00349{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.ma9_c00349{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mf1_c00349{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m6d_c00349{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m5_c00349{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m2c_c00349{transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);}
.m47_c00349{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mee_c00349{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.mc3_c00349{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.md2_c00349{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m7e_c00349{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m8b_c00349{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.md3_c00349{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.mf0_c00349{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.m57_c00349{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m11_c00349{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);}
.m2d_c00349{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m24_c00349{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mf_c00349{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m63_c00349{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.me_c00349{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.me0_c00349{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m36_c00349{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);}
.m93_c00349{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m23_c00349{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mc0_c00349{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.ma7_c00349{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m81_c00349{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.md_c00349{transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);}
.m9a_c00349{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m7_c00349{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m53_c00349{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m3_c00349{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m7b_c00349{transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);}
.m2_c00349{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);}
.m2e_c00349{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.m15_c00349{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.mb_c00349{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.mde_c00349{transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);}
.m71_c00349{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m12_c00349{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m21_c00349{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.ma2_c00349{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m54_c00349{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m0_c00349{transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);}
.m1b_c00349{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mcb_c00349{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mc7_c00349{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m9_c00349{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);}
.m2a_c00349{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m85_c00349{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m7d_c00349{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m97_c00349{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m76_c00349{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m99_c00349{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m6c_c00349{transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);}
.m58_c00349{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mb2_c00349{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mba_c00349{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m79_c00349{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mc1_c00349{transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);}
.maf_c00349{transform:matrix(0.796474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.796474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.796474,0.000000,0.000000,0.250000,0,0);}
.m61_c00349{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m3b_c00349{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m6e_c00349{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.m30_c00349{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.m6_c00349{transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);}
.m14_c00349{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m35_c00349{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-3.089552px;}
.ws1_c00349{word-spacing:0.000000px;}
.fc0_c00349{color:transparent;}
.fs7_c00349{font-size:3.420000px;}
.fs4_c00349{font-size:13.620000px;}
.fs0_c00349{font-size:18.720000px;}
.fs2_c00349{font-size:20.400000px;}
.fs1_c00349{font-size:25.500000px;}
.fs3_c00349{font-size:28.920000px;}
.fs5_c00349{font-size:32.340000px;}
.fs6_c00349{font-size:35.700000px;}
.y0_c00349{bottom:0.000000px;}
.yc5_c00349{bottom:251.745000px;}
.yc7_c00349{bottom:253.245000px;}
.yc6_c00349{bottom:253.905000px;}
.yc9_c00349{bottom:254.130000px;}
.yc8_c00349{bottom:255.405000px;}
.yc3_c00349{bottom:272.325000px;}
.yc2_c00349{bottom:272.745000px;}
.ybf_c00349{bottom:273.405000px;}
.yc4_c00349{bottom:273.630000px;}
.yc0_c00349{bottom:274.905000px;}
.yc1_c00349{bottom:275.970000px;}
.ybd_c00349{bottom:292.245000px;}
.ybc_c00349{bottom:294.405000px;}
.ybe_c00349{bottom:295.470000px;}
.ybb_c00349{bottom:313.905000px;}
.yba_c00349{bottom:330.405000px;}
.yb8_c00349{bottom:333.405000px;}
.yb9_c00349{bottom:334.905000px;}
.yb6_c00349{bottom:352.245000px;}
.yb4_c00349{bottom:352.905000px;}
.yb7_c00349{bottom:353.130000px;}
.yb5_c00349{bottom:354.405000px;}
.yb0_c00349{bottom:369.405000px;}
.yae_c00349{bottom:370.245000px;}
.yaf_c00349{bottom:371.325000px;}
.yb1_c00349{bottom:371.745000px;}
.yb3_c00349{bottom:373.905000px;}
.yb2_c00349{bottom:374.970000px;}
.yac_c00349{bottom:391.245000px;}
.yad_c00349{bottom:392.325000px;}
.yab_c00349{bottom:393.405000px;}
.ya6_c00349{bottom:409.905000px;}
.ya8_c00349{bottom:410.745000px;}
.ya9_c00349{bottom:412.470000px;}
.ya5_c00349{bottom:412.905000px;}
.ya7_c00349{bottom:413.130000px;}
.yaa_c00349{bottom:413.970000px;}
.ya3_c00349{bottom:429.825000px;}
.ya1_c00349{bottom:430.245000px;}
.ya2_c00349{bottom:431.325000px;}
.ya0_c00349{bottom:432.405000px;}
.ya4_c00349{bottom:432.630000px;}
.y9d_c00349{bottom:449.745000px;}
.y9c_c00349{bottom:451.905000px;}
.y9e_c00349{bottom:452.130000px;}
.y9f_c00349{bottom:452.970000px;}
.y9a_c00349{bottom:470.745000px;}
.y9b_c00349{bottom:472.905000px;}
.y99_c00349{bottom:490.050000px;}
.y98_c00349{bottom:490.245000px;}
.y97_c00349{bottom:491.130000px;}
.y96_c00349{bottom:491.325000px;}
.y95_c00349{bottom:492.405000px;}
.y94_c00349{bottom:509.745000px;}
.y93_c00349{bottom:510.630000px;}
.y92_c00349{bottom:511.470000px;}
.y91_c00349{bottom:511.905000px;}
.y8e_c00349{bottom:527.745000px;}
.y8a_c00349{bottom:529.245000px;}
.y8d_c00349{bottom:530.130000px;}
.y8c_c00349{bottom:530.325000px;}
.y90_c00349{bottom:530.970000px;}
.y8b_c00349{bottom:531.405000px;}
.y8f_c00349{bottom:531.630000px;}
.y88_c00349{bottom:548.745000px;}
.y87_c00349{bottom:550.905000px;}
.y89_c00349{bottom:551.130000px;}
.y85_c00349{bottom:568.245000px;}
.y83_c00349{bottom:570.405000px;}
.y84_c00349{bottom:571.470000px;}
.y86_c00349{bottom:571.905000px;}
.y81_c00349{bottom:587.745000px;}
.y7f_c00349{bottom:589.905000px;}
.y80_c00349{bottom:590.130000px;}
.y82_c00349{bottom:591.405000px;}
.y7e_c00349{bottom:608.745000px;}
.y7a_c00349{bottom:609.405000px;}
.y7b_c00349{bottom:609.630000px;}
.y7c_c00349{bottom:610.470000px;}
.y7d_c00349{bottom:610.905000px;}
.y76_c00349{bottom:628.245000px;}
.y78_c00349{bottom:629.130000px;}
.y79_c00349{bottom:629.325000px;}
.y77_c00349{bottom:630.405000px;}
.y71_c00349{bottom:645.405000px;}
.y74_c00349{bottom:646.470000px;}
.y72_c00349{bottom:647.745000px;}
.y6f_c00349{bottom:648.630000px;}
.y73_c00349{bottom:648.825000px;}
.y70_c00349{bottom:649.905000px;}
.y75_c00349{bottom:650.970000px;}
.y6d_c00349{bottom:667.245000px;}
.y6e_c00349{bottom:668.325000px;}
.y6c_c00349{bottom:669.405000px;}
.y6a_c00349{bottom:686.745000px;}
.y69_c00349{bottom:687.630000px;}
.y6b_c00349{bottom:687.825000px;}
.y68_c00349{bottom:688.905000px;}
.y66_c00349{bottom:707.745000px;}
.y63_c00349{bottom:708.405000px;}
.y64_c00349{bottom:708.630000px;}
.y65_c00349{bottom:709.470000px;}
.y67_c00349{bottom:709.905000px;}
.y61_c00349{bottom:725.745000px;}
.y5f_c00349{bottom:726.825000px;}
.y60_c00349{bottom:727.905000px;}
.y62_c00349{bottom:728.130000px;}
.y59_c00349{bottom:745.245000px;}
.y5d_c00349{bottom:746.325000px;}
.y5c_c00349{bottom:746.745000px;}
.y58_c00349{bottom:747.405000px;}
.y5a_c00349{bottom:747.630000px;}
.y5e_c00349{bottom:748.470000px;}
.y5b_c00349{bottom:748.905000px;}
.y55_c00349{bottom:766.245000px;}
.y52_c00349{bottom:766.905000px;}
.y54_c00349{bottom:767.130000px;}
.y56_c00349{bottom:767.325000px;}
.y57_c00349{bottom:767.970000px;}
.y53_c00349{bottom:768.405000px;}
.y50_c00349{bottom:785.745000px;}
.y4f_c00349{bottom:787.905000px;}
.y51_c00349{bottom:788.130000px;}
.y4d_c00349{bottom:805.245000px;}
.y4e_c00349{bottom:806.325000px;}
.y4a_c00349{bottom:806.970000px;}
.y4b_c00349{bottom:807.405000px;}
.y4c_c00349{bottom:807.630000px;}
.y49_c00349{bottom:808.470000px;}
.y47_c00349{bottom:824.745000px;}
.y43_c00349{bottom:825.825000px;}
.y44_c00349{bottom:826.470000px;}
.y45_c00349{bottom:826.905000px;}
.y46_c00349{bottom:827.130000px;}
.y48_c00349{bottom:827.970000px;}
.y3d_c00349{bottom:843.405000px;}
.y3e_c00349{bottom:844.245000px;}
.y42_c00349{bottom:845.745000px;}
.y3c_c00349{bottom:846.405000px;}
.y3f_c00349{bottom:846.630000px;}
.y41_c00349{bottom:847.470000px;}
.y40_c00349{bottom:847.905000px;}
.y3a_c00349{bottom:862.905000px;}
.y36_c00349{bottom:863.745000px;}
.y3b_c00349{bottom:864.825000px;}
.y38_c00349{bottom:865.245000px;}
.y35_c00349{bottom:865.905000px;}
.y39_c00349{bottom:866.130000px;}
.y37_c00349{bottom:867.405000px;}
.y31_c00349{bottom:884.325000px;}
.y34_c00349{bottom:884.745000px;}
.y30_c00349{bottom:885.405000px;}
.y33_c00349{bottom:885.630000px;}
.y2f_c00349{bottom:886.470000px;}
.y32_c00349{bottom:886.905000px;}
.y2d_c00349{bottom:904.245000px;}
.y2e_c00349{bottom:906.405000px;}
.y2b_c00349{bottom:923.745000px;}
.y2c_c00349{bottom:925.905000px;}
.y25_c00349{bottom:943.245000px;}
.y2a_c00349{bottom:944.325000px;}
.y28_c00349{bottom:945.405000px;}
.y26_c00349{bottom:945.420000px;}
.y29_c00349{bottom:945.630000px;}
.y27_c00349{bottom:946.470000px;}
.y24_c00349{bottom:974.325000px;}
.y23_c00349{bottom:989.970000px;}
.y1f_c00349{bottom:990.405000px;}
.y1e_c00349{bottom:990.630000px;}
.y21_c00349{bottom:990.825000px;}
.y1d_c00349{bottom:991.470000px;}
.y22_c00349{bottom:991.695000px;}
.y20_c00349{bottom:992.130000px;}
.y1c_c00349{bottom:992.550000px;}
.y1b_c00349{bottom:1004.325000px;}
.y1a_c00349{bottom:1005.405000px;}
.y19_c00349{bottom:1018.470000px;}
.y15_c00349{bottom:1019.325000px;}
.y13_c00349{bottom:1019.550000px;}
.y17_c00349{bottom:1020.405000px;}
.y16_c00349{bottom:1021.470000px;}
.y18_c00349{bottom:1021.695000px;}
.y14_c00349{bottom:1022.550000px;}
.yd_c00349{bottom:1033.050000px;}
.y12_c00349{bottom:1033.470000px;}
.ye_c00349{bottom:1035.405000px;}
.y10_c00349{bottom:1036.470000px;}
.y11_c00349{bottom:1036.695000px;}
.yf_c00349{bottom:1037.550000px;}
.y8_c00349{bottom:1048.905000px;}
.yb_c00349{bottom:1049.325000px;}
.y9_c00349{bottom:1049.970000px;}
.yc_c00349{bottom:1050.195000px;}
.ya_c00349{bottom:1051.050000px;}
.y3_c00349{bottom:1063.050000px;}
.y5_c00349{bottom:1063.905000px;}
.y7_c00349{bottom:1065.195000px;}
.y4_c00349{bottom:1066.050000px;}
.y6_c00349{bottom:1066.470000px;}
.y2_c00349{bottom:1099.470000px;}
.y1_c00349{bottom:1101.630000px;}
.h8_c00349{height:4.206533px;}
.h5_c00349{height:16.752334px;}
.h1_c00349{height:23.025234px;}
.h3_c00349{height:25.091602px;}
.h2_c00349{height:31.364502px;}
.h4_c00349{height:35.571035px;}
.h6_c00349{height:39.777568px;}
.h7_c00349{height:43.910303px;}
.h0_c00349{height:1335.000000px;}
.w0_c00349{width:880.500000px;}
.x0_c00349{left:0.000000px;}
.xff_c00349{left:151.500000px;}
.x2_c00349{left:153.000000px;}
.x12_c00349{left:154.080000px;}
.xa1_c00349{left:155.355000px;}
.x1a_c00349{left:168.420000px;}
.x3_c00349{left:169.920000px;}
.xbe_c00349{left:171.000000px;}
.x91_c00349{left:172.920000px;}
.x99_c00349{left:174.420000px;}
.xc9_c00349{left:176.580000px;}
.x6e_c00349{left:179.580000px;}
.x2f_c00349{left:181.920000px;}
.xb8_c00349{left:183.000000px;}
.x26_c00349{left:184.500000px;}
.x1b_c00349{left:186.000000px;}
.x4_c00349{left:187.500000px;}
.x44_c00349{left:188.580000px;}
.xcf_c00349{left:190.080000px;}
.x61_c00349{left:195.420000px;}
.x4d_c00349{left:197.145000px;}
.x92_c00349{left:199.500000px;}
.x58_c00349{left:202.500000px;}
.xaa_c00349{left:204.000000px;}
.x45_c00349{left:207.420000px;}
.x6f_c00349{left:208.500000px;}
.xa2_c00349{left:212.580000px;}
.xdb_c00349{left:214.500000px;}
.x88_c00349{left:216.000000px;}
.xaf_c00349{left:219.420000px;}
.xbf_c00349{left:220.920000px;}
.x5_c00349{left:222.000000px;}
.x30_c00349{left:223.500000px;}
.x93_c00349{left:225.000000px;}
.xea_c00349{left:226.080000px;}
.x1c_c00349{left:228.000000px;}
.x77_c00349{left:229.500000px;}
.x62_c00349{left:231.000000px;}
.x103_c00349{left:232.920000px;}
.x13_c00349{left:234.000000px;}
.x9a_c00349{left:237.000000px;}
.xb9_c00349{left:238.500000px;}
.xd0_c00349{left:240.000000px;}
.x10b_c00349{left:241.500000px;}
.xe3_c00349{left:243.000000px;}
.x70_c00349{left:244.920000px;}
.x100_c00349{left:246.420000px;}
.x4e_c00349{left:247.500000px;}
.x78_c00349{left:248.580000px;}
.x31_c00349{left:252.000000px;}
.xab_c00349{left:253.080000px;}
.x3a_c00349{left:256.500000px;}
.xb0_c00349{left:257.580000px;}
.xa3_c00349{left:259.500000px;}
.xd5_c00349{left:260.580000px;}
.xca_c00349{left:262.920000px;}
.x63_c00349{left:264.000000px;}
.xe6_c00349{left:270.420000px;}
.x89_c00349{left:271.500000px;}
.x46_c00349{left:273.000000px;}
.xf2_c00349{left:274.500000px;}
.x3b_c00349{left:277.500000px;}
.x4f_c00349{left:280.920000px;}
.x71_c00349{left:282.000000px;}
.x81_c00349{left:283.080000px;}
.x6_c00349{left:285.000000px;}
.xba_c00349{left:286.080000px;}
.x14_c00349{left:288.420000px;}
.xf6_c00349{left:289.920000px;}
.xc0_c00349{left:291.420000px;}
.x79_c00349{left:294.420000px;}
.x1d_c00349{left:298.500000px;}
.xb1_c00349{left:300.420000px;}
.x59_c00349{left:303.000000px;}
.x32_c00349{left:306.000000px;}
.x104_c00349{left:307.920000px;}
.xe0_c00349{left:309.420000px;}
.x3c_c00349{left:310.920000px;}
.x27_c00349{left:313.920000px;}
.x8a_c00349{left:315.000000px;}
.xa4_c00349{left:316.920000px;}
.xeb_c00349{left:318.420000px;}
.x72_c00349{left:319.500000px;}
.xdc_c00349{left:324.420000px;}
.x15_c00349{left:328.500000px;}
.x82_c00349{left:331.500000px;}
.x50_c00349{left:336.000000px;}
.x73_c00349{left:337.500000px;}
.x9b_c00349{left:338.580000px;}
.x1e_c00349{left:340.080000px;}
.x47_c00349{left:341.580000px;}
.x28_c00349{left:343.500000px;}
.xac_c00349{left:345.000000px;}
.xe7_c00349{left:346.080000px;}
.x7_c00349{left:348.000000px;}
.xc1_c00349{left:349.080000px;}
.x7a_c00349{left:351.000000px;}
.xd6_c00349{left:354.420000px;}
.x5a_c00349{left:355.500000px;}
.xf7_c00349{left:358.500000px;}
.xb2_c00349{left:360.420000px;}
.xf3_c00349{left:361.500000px;}
.x64_c00349{left:363.420000px;}
.x8_c00349{left:367.500000px;}
.xcb_c00349{left:369.000000px;}
.x48_c00349{left:370.500000px;}
.xfc_c00349{left:371.580000px;}
.x8b_c00349{left:373.080000px;}
.x16_c00349{left:379.080000px;}
.x3d_c00349{left:381.420000px;}
.x7b_c00349{left:382.500000px;}
.x51_c00349{left:385.080000px;}
.xef_c00349{left:387.000000px;}
.x33_c00349{left:388.500000px;}
.x17_c00349{left:390.000000px;}
.x9_c00349{left:392.580000px;}
.xdf_c00349{left:394.920000px;}
.x29_c00349{left:396.000000px;}
.x107_c00349{left:397.500000px;}
.xdd_c00349{left:400.500000px;}
.x1_c00349{left:405.000000px;}
.x52_c00349{left:406.920000px;}
.x83_c00349{left:408.000000px;}
.xbb_c00349{left:411.000000px;}
.x108_c00349{left:412.500000px;}
.xb3_c00349{left:414.000000px;}
.x5b_c00349{left:415.500000px;}
.xd7_c00349{left:416.580000px;}
.x1f_c00349{left:418.080000px;}
.x9c_c00349{left:420.420000px;}
.x49_c00349{left:421.500000px;}
.xe8_c00349{left:423.000000px;}
.x18_c00349{left:424.500000px;}
.x74_c00349{left:426.000000px;}
.x5c_c00349{left:427.500000px;}
.x65_c00349{left:429.000000px;}
.x10c_c00349{left:430.500000px;}
.xc2_c00349{left:432.000000px;}
.xe4_c00349{left:433.080000px;}
.x53_c00349{left:435.420000px;}
.xd8_c00349{left:436.920000px;}
.xa_c00349{left:438.420000px;}
.x34_c00349{left:439.500000px;}
.x94_c00349{left:441.000000px;}
.xd1_c00349{left:442.920000px;}
.xc3_c00349{left:446.580000px;}
.x7c_c00349{left:450.000000px;}
.xf4_c00349{left:453.000000px;}
.xa5_c00349{left:454.500000px;}
.xb_c00349{left:456.000000px;}
.x8c_c00349{left:457.080000px;}
.x2a_c00349{left:459.000000px;}
.x66_c00349{left:460.080000px;}
.x101_c00349{left:462.000000px;}
.x3e_c00349{left:463.500000px;}
.xcc_c00349{left:465.000000px;}
.xb4_c00349{left:466.500000px;}
.xfa_c00349{left:468.420000px;}
.xd2_c00349{left:471.000000px;}
.x95_c00349{left:472.920000px;}
.xfd_c00349{left:474.000000px;}
.x20_c00349{left:475.500000px;}
.x67_c00349{left:478.080000px;}
.xc_c00349{left:480.000000px;}
.x3f_c00349{left:481.080000px;}
.xc4_c00349{left:483.000000px;}
.x54_c00349{left:484.500000px;}
.x21_c00349{left:486.420000px;}
.x7d_c00349{left:489.420000px;}
.xa6_c00349{left:492.420000px;}
.xe5_c00349{left:495.420000px;}
.x19_c00349{left:496.920000px;}
.x109_c00349{left:498.000000px;}
.x8d_c00349{left:499.500000px;}
.x2b_c00349{left:502.500000px;}
.x5d_c00349{left:504.000000px;}
.x9d_c00349{left:505.920000px;}
.x35_c00349{left:510.000000px;}
.x68_c00349{left:514.080000px;}
.xd9_c00349{left:516.000000px;}
.xb5_c00349{left:518.580000px;}
.x36_c00349{left:522.000000px;}
.xfe_c00349{left:523.080000px;}
.xde_c00349{left:525.000000px;}
.x22_c00349{left:528.000000px;}
.x8e_c00349{left:530.580000px;}
.xd_c00349{left:538.080000px;}
.x84_c00349{left:540.000000px;}
.xbc_c00349{left:541.500000px;}
.x10d_c00349{left:543.000000px;}
.xe1_c00349{left:544.920000px;}
.x9e_c00349{left:546.000000px;}
.x69_c00349{left:547.920000px;}
.xec_c00349{left:549.000000px;}
.x4a_c00349{left:550.080000px;}
.x75_c00349{left:552.420000px;}
.x40_c00349{left:553.920000px;}
.x55_c00349{left:556.500000px;}
.xfb_c00349{left:557.580000px;}
.xc5_c00349{left:559.500000px;}
.x23_c00349{left:562.500000px;}
.x2c_c00349{left:563.580000px;}
.xe9_c00349{left:567.420000px;}
.xe_c00349{left:570.420000px;}
.x7e_c00349{left:576.420000px;}
.x6a_c00349{left:579.000000px;}
.x85_c00349{left:580.500000px;}
.x41_c00349{left:582.000000px;}
.x5e_c00349{left:585.000000px;}
.xf_c00349{left:586.500000px;}
.x24_c00349{left:589.080000px;}
.xd3_c00349{left:594.000000px;}
.xed_c00349{left:595.500000px;}
.xf0_c00349{left:597.420000px;}
.xe2_c00349{left:598.500000px;}
.xc6_c00349{left:601.500000px;}
.x37_c00349{left:602.580000px;}
.xa7_c00349{left:604.080000px;}
.x56_c00349{left:606.420000px;}
.x96_c00349{left:609.420000px;}
.x6b_c00349{left:612.000000px;}
.x105_c00349{left:613.500000px;}
.xad_c00349{left:616.500000px;}
.xb6_c00349{left:619.920000px;}
.x76_c00349{left:621.000000px;}
.x2d_c00349{left:622.500000px;}
.x7f_c00349{left:624.000000px;}
.xa8_c00349{left:625.920000px;}
.x6c_c00349{left:627.000000px;}
.x42_c00349{left:628.500000px;}
.x38_c00349{left:630.420000px;}
.x25_c00349{left:633.000000px;}
.xf8_c00349{left:634.500000px;}
.x97_c00349{left:635.580000px;}
.x86_c00349{left:640.500000px;}
.xb7_c00349{left:645.000000px;}
.xc7_c00349{left:647.580000px;}
.xbd_c00349{left:651.000000px;}
.x8f_c00349{left:654.000000px;}
.x9f_c00349{left:655.500000px;}
.x10_c00349{left:657.000000px;}
.x4b_c00349{left:660.420000px;}
.x80_c00349{left:662.580000px;}
.x43_c00349{left:664.500000px;}
.x10a_c00349{left:666.000000px;}
.x39_c00349{left:667.500000px;}
.xcd_c00349{left:670.920000px;}
.x2e_c00349{left:675.000000px;}
.x98_c00349{left:676.500000px;}
.xee_c00349{left:679.920000px;}
.x57_c00349{left:681.000000px;}
.x87_c00349{left:682.500000px;}
.x5f_c00349{left:684.000000px;}
.xa0_c00349{left:685.500000px;}
.xda_c00349{left:687.000000px;}
.x4c_c00349{left:688.080000px;}
.xf9_c00349{left:689.580000px;}
.xc8_c00349{left:691.500000px;}
.x10e_c00349{left:693.000000px;}
.x90_c00349{left:694.500000px;}
.xf5_c00349{left:696.000000px;}
.x6d_c00349{left:697.920000px;}
.xa9_c00349{left:700.500000px;}
.xd4_c00349{left:702.000000px;}
.xae_c00349{left:704.580000px;}
.x106_c00349{left:706.080000px;}
.x11_c00349{left:708.420000px;}
.xce_c00349{left:709.920000px;}
.x102_c00349{left:711.000000px;}
.xf1_c00349{left:718.080000px;}
.x60_c00349{left:723.000000px;}
@media print{
.v0_c00349{vertical-align:0.000000pt;}
.ls0_c00349{letter-spacing:0.000000pt;}
.ws0_c00349{word-spacing:-2.746269pt;}
.ws1_c00349{word-spacing:0.000000pt;}
.fs7_c00349{font-size:3.040000pt;}
.fs4_c00349{font-size:12.106667pt;}
.fs0_c00349{font-size:16.640000pt;}
.fs2_c00349{font-size:18.133333pt;}
.fs1_c00349{font-size:22.666667pt;}
.fs3_c00349{font-size:25.706667pt;}
.fs5_c00349{font-size:28.746667pt;}
.fs6_c00349{font-size:31.733333pt;}
.y0_c00349{bottom:0.000000pt;}
.yc5_c00349{bottom:223.773333pt;}
.yc7_c00349{bottom:225.106667pt;}
.yc6_c00349{bottom:225.693333pt;}
.yc9_c00349{bottom:225.893333pt;}
.yc8_c00349{bottom:227.026667pt;}
.yc3_c00349{bottom:242.066667pt;}
.yc2_c00349{bottom:242.440000pt;}
.ybf_c00349{bottom:243.026667pt;}
.yc4_c00349{bottom:243.226667pt;}
.yc0_c00349{bottom:244.360000pt;}
.yc1_c00349{bottom:245.306667pt;}
.ybd_c00349{bottom:259.773333pt;}
.ybc_c00349{bottom:261.693333pt;}
.ybe_c00349{bottom:262.640000pt;}
.ybb_c00349{bottom:279.026667pt;}
.yba_c00349{bottom:293.693333pt;}
.yb8_c00349{bottom:296.360000pt;}
.yb9_c00349{bottom:297.693333pt;}
.yb6_c00349{bottom:313.106667pt;}
.yb4_c00349{bottom:313.693333pt;}
.yb7_c00349{bottom:313.893333pt;}
.yb5_c00349{bottom:315.026667pt;}
.yb0_c00349{bottom:328.360000pt;}
.yae_c00349{bottom:329.106667pt;}
.yaf_c00349{bottom:330.066667pt;}
.yb1_c00349{bottom:330.440000pt;}
.yb3_c00349{bottom:332.360000pt;}
.yb2_c00349{bottom:333.306667pt;}
.yac_c00349{bottom:347.773333pt;}
.yad_c00349{bottom:348.733333pt;}
.yab_c00349{bottom:349.693333pt;}
.ya6_c00349{bottom:364.360000pt;}
.ya8_c00349{bottom:365.106667pt;}
.ya9_c00349{bottom:366.640000pt;}
.ya5_c00349{bottom:367.026667pt;}
.ya7_c00349{bottom:367.226667pt;}
.yaa_c00349{bottom:367.973333pt;}
.ya3_c00349{bottom:382.066667pt;}
.ya1_c00349{bottom:382.440000pt;}
.ya2_c00349{bottom:383.400000pt;}
.ya0_c00349{bottom:384.360000pt;}
.ya4_c00349{bottom:384.560000pt;}
.y9d_c00349{bottom:399.773333pt;}
.y9c_c00349{bottom:401.693333pt;}
.y9e_c00349{bottom:401.893333pt;}
.y9f_c00349{bottom:402.640000pt;}
.y9a_c00349{bottom:418.440000pt;}
.y9b_c00349{bottom:420.360000pt;}
.y99_c00349{bottom:435.600000pt;}
.y98_c00349{bottom:435.773333pt;}
.y97_c00349{bottom:436.560000pt;}
.y96_c00349{bottom:436.733333pt;}
.y95_c00349{bottom:437.693333pt;}
.y94_c00349{bottom:453.106667pt;}
.y93_c00349{bottom:453.893333pt;}
.y92_c00349{bottom:454.640000pt;}
.y91_c00349{bottom:455.026667pt;}
.y8e_c00349{bottom:469.106667pt;}
.y8a_c00349{bottom:470.440000pt;}
.y8d_c00349{bottom:471.226667pt;}
.y8c_c00349{bottom:471.400000pt;}
.y90_c00349{bottom:471.973333pt;}
.y8b_c00349{bottom:472.360000pt;}
.y8f_c00349{bottom:472.560000pt;}
.y88_c00349{bottom:487.773333pt;}
.y87_c00349{bottom:489.693333pt;}
.y89_c00349{bottom:489.893333pt;}
.y85_c00349{bottom:505.106667pt;}
.y83_c00349{bottom:507.026667pt;}
.y84_c00349{bottom:507.973333pt;}
.y86_c00349{bottom:508.360000pt;}
.y81_c00349{bottom:522.440000pt;}
.y7f_c00349{bottom:524.360000pt;}
.y80_c00349{bottom:524.560000pt;}
.y82_c00349{bottom:525.693333pt;}
.y7e_c00349{bottom:541.106667pt;}
.y7a_c00349{bottom:541.693333pt;}
.y7b_c00349{bottom:541.893333pt;}
.y7c_c00349{bottom:542.640000pt;}
.y7d_c00349{bottom:543.026667pt;}
.y76_c00349{bottom:558.440000pt;}
.y78_c00349{bottom:559.226667pt;}
.y79_c00349{bottom:559.400000pt;}
.y77_c00349{bottom:560.360000pt;}
.y71_c00349{bottom:573.693333pt;}
.y74_c00349{bottom:574.640000pt;}
.y72_c00349{bottom:575.773333pt;}
.y6f_c00349{bottom:576.560000pt;}
.y73_c00349{bottom:576.733333pt;}
.y70_c00349{bottom:577.693333pt;}
.y75_c00349{bottom:578.640000pt;}
.y6d_c00349{bottom:593.106667pt;}
.y6e_c00349{bottom:594.066667pt;}
.y6c_c00349{bottom:595.026667pt;}
.y6a_c00349{bottom:610.440000pt;}
.y69_c00349{bottom:611.226667pt;}
.y6b_c00349{bottom:611.400000pt;}
.y68_c00349{bottom:612.360000pt;}
.y66_c00349{bottom:629.106667pt;}
.y63_c00349{bottom:629.693333pt;}
.y64_c00349{bottom:629.893333pt;}
.y65_c00349{bottom:630.640000pt;}
.y67_c00349{bottom:631.026667pt;}
.y61_c00349{bottom:645.106667pt;}
.y5f_c00349{bottom:646.066667pt;}
.y60_c00349{bottom:647.026667pt;}
.y62_c00349{bottom:647.226667pt;}
.y59_c00349{bottom:662.440000pt;}
.y5d_c00349{bottom:663.400000pt;}
.y5c_c00349{bottom:663.773333pt;}
.y58_c00349{bottom:664.360000pt;}
.y5a_c00349{bottom:664.560000pt;}
.y5e_c00349{bottom:665.306667pt;}
.y5b_c00349{bottom:665.693333pt;}
.y55_c00349{bottom:681.106667pt;}
.y52_c00349{bottom:681.693333pt;}
.y54_c00349{bottom:681.893333pt;}
.y56_c00349{bottom:682.066667pt;}
.y57_c00349{bottom:682.640000pt;}
.y53_c00349{bottom:683.026667pt;}
.y50_c00349{bottom:698.440000pt;}
.y4f_c00349{bottom:700.360000pt;}
.y51_c00349{bottom:700.560000pt;}
.y4d_c00349{bottom:715.773333pt;}
.y4e_c00349{bottom:716.733333pt;}
.y4a_c00349{bottom:717.306667pt;}
.y4b_c00349{bottom:717.693333pt;}
.y4c_c00349{bottom:717.893333pt;}
.y49_c00349{bottom:718.640000pt;}
.y47_c00349{bottom:733.106667pt;}
.y43_c00349{bottom:734.066667pt;}
.y44_c00349{bottom:734.640000pt;}
.y45_c00349{bottom:735.026667pt;}
.y46_c00349{bottom:735.226667pt;}
.y48_c00349{bottom:735.973333pt;}
.y3d_c00349{bottom:749.693333pt;}
.y3e_c00349{bottom:750.440000pt;}
.y42_c00349{bottom:751.773333pt;}
.y3c_c00349{bottom:752.360000pt;}
.y3f_c00349{bottom:752.560000pt;}
.y41_c00349{bottom:753.306667pt;}
.y40_c00349{bottom:753.693333pt;}
.y3a_c00349{bottom:767.026667pt;}
.y36_c00349{bottom:767.773333pt;}
.y3b_c00349{bottom:768.733333pt;}
.y38_c00349{bottom:769.106667pt;}
.y35_c00349{bottom:769.693333pt;}
.y39_c00349{bottom:769.893333pt;}
.y37_c00349{bottom:771.026667pt;}
.y31_c00349{bottom:786.066667pt;}
.y34_c00349{bottom:786.440000pt;}
.y30_c00349{bottom:787.026667pt;}
.y33_c00349{bottom:787.226667pt;}
.y2f_c00349{bottom:787.973333pt;}
.y32_c00349{bottom:788.360000pt;}
.y2d_c00349{bottom:803.773333pt;}
.y2e_c00349{bottom:805.693333pt;}
.y2b_c00349{bottom:821.106667pt;}
.y2c_c00349{bottom:823.026667pt;}
.y25_c00349{bottom:838.440000pt;}
.y2a_c00349{bottom:839.400000pt;}
.y28_c00349{bottom:840.360000pt;}
.y26_c00349{bottom:840.373333pt;}
.y29_c00349{bottom:840.560000pt;}
.y27_c00349{bottom:841.306667pt;}
.y24_c00349{bottom:866.066667pt;}
.y23_c00349{bottom:879.973333pt;}
.y1f_c00349{bottom:880.360000pt;}
.y1e_c00349{bottom:880.560000pt;}
.y21_c00349{bottom:880.733333pt;}
.y1d_c00349{bottom:881.306667pt;}
.y22_c00349{bottom:881.506667pt;}
.y20_c00349{bottom:881.893333pt;}
.y1c_c00349{bottom:882.266667pt;}
.y1b_c00349{bottom:892.733333pt;}
.y1a_c00349{bottom:893.693333pt;}
.y19_c00349{bottom:905.306667pt;}
.y15_c00349{bottom:906.066667pt;}
.y13_c00349{bottom:906.266667pt;}
.y17_c00349{bottom:907.026667pt;}
.y16_c00349{bottom:907.973333pt;}
.y18_c00349{bottom:908.173333pt;}
.y14_c00349{bottom:908.933333pt;}
.yd_c00349{bottom:918.266667pt;}
.y12_c00349{bottom:918.640000pt;}
.ye_c00349{bottom:920.360000pt;}
.y10_c00349{bottom:921.306667pt;}
.y11_c00349{bottom:921.506667pt;}
.yf_c00349{bottom:922.266667pt;}
.y8_c00349{bottom:932.360000pt;}
.yb_c00349{bottom:932.733333pt;}
.y9_c00349{bottom:933.306667pt;}
.yc_c00349{bottom:933.506667pt;}
.ya_c00349{bottom:934.266667pt;}
.y3_c00349{bottom:944.933333pt;}
.y5_c00349{bottom:945.693333pt;}
.y7_c00349{bottom:946.840000pt;}
.y4_c00349{bottom:947.600000pt;}
.y6_c00349{bottom:947.973333pt;}
.y2_c00349{bottom:977.306667pt;}
.y1_c00349{bottom:979.226667pt;}
.h8_c00349{height:3.739141pt;}
.h5_c00349{height:14.890964pt;}
.h1_c00349{height:20.466875pt;}
.h3_c00349{height:22.303646pt;}
.h2_c00349{height:27.879557pt;}
.h4_c00349{height:31.618698pt;}
.h6_c00349{height:35.357839pt;}
.h7_c00349{height:39.031380pt;}
.h0_c00349{height:1186.666667pt;}
.w0_c00349{width:782.666667pt;}
.x0_c00349{left:0.000000pt;}
.xff_c00349{left:134.666667pt;}
.x2_c00349{left:136.000000pt;}
.x12_c00349{left:136.960000pt;}
.xa1_c00349{left:138.093333pt;}
.x1a_c00349{left:149.706667pt;}
.x3_c00349{left:151.040000pt;}
.xbe_c00349{left:152.000000pt;}
.x91_c00349{left:153.706667pt;}
.x99_c00349{left:155.040000pt;}
.xc9_c00349{left:156.960000pt;}
.x6e_c00349{left:159.626667pt;}
.x2f_c00349{left:161.706667pt;}
.xb8_c00349{left:162.666667pt;}
.x26_c00349{left:164.000000pt;}
.x1b_c00349{left:165.333333pt;}
.x4_c00349{left:166.666667pt;}
.x44_c00349{left:167.626667pt;}
.xcf_c00349{left:168.960000pt;}
.x61_c00349{left:173.706667pt;}
.x4d_c00349{left:175.240000pt;}
.x92_c00349{left:177.333333pt;}
.x58_c00349{left:180.000000pt;}
.xaa_c00349{left:181.333333pt;}
.x45_c00349{left:184.373333pt;}
.x6f_c00349{left:185.333333pt;}
.xa2_c00349{left:188.960000pt;}
.xdb_c00349{left:190.666667pt;}
.x88_c00349{left:192.000000pt;}
.xaf_c00349{left:195.040000pt;}
.xbf_c00349{left:196.373333pt;}
.x5_c00349{left:197.333333pt;}
.x30_c00349{left:198.666667pt;}
.x93_c00349{left:200.000000pt;}
.xea_c00349{left:200.960000pt;}
.x1c_c00349{left:202.666667pt;}
.x77_c00349{left:204.000000pt;}
.x62_c00349{left:205.333333pt;}
.x103_c00349{left:207.040000pt;}
.x13_c00349{left:208.000000pt;}
.x9a_c00349{left:210.666667pt;}
.xb9_c00349{left:212.000000pt;}
.xd0_c00349{left:213.333333pt;}
.x10b_c00349{left:214.666667pt;}
.xe3_c00349{left:216.000000pt;}
.x70_c00349{left:217.706667pt;}
.x100_c00349{left:219.040000pt;}
.x4e_c00349{left:220.000000pt;}
.x78_c00349{left:220.960000pt;}
.x31_c00349{left:224.000000pt;}
.xab_c00349{left:224.960000pt;}
.x3a_c00349{left:228.000000pt;}
.xb0_c00349{left:228.960000pt;}
.xa3_c00349{left:230.666667pt;}
.xd5_c00349{left:231.626667pt;}
.xca_c00349{left:233.706667pt;}
.x63_c00349{left:234.666667pt;}
.xe6_c00349{left:240.373333pt;}
.x89_c00349{left:241.333333pt;}
.x46_c00349{left:242.666667pt;}
.xf2_c00349{left:244.000000pt;}
.x3b_c00349{left:246.666667pt;}
.x4f_c00349{left:249.706667pt;}
.x71_c00349{left:250.666667pt;}
.x81_c00349{left:251.626667pt;}
.x6_c00349{left:253.333333pt;}
.xba_c00349{left:254.293333pt;}
.x14_c00349{left:256.373333pt;}
.xf6_c00349{left:257.706667pt;}
.xc0_c00349{left:259.040000pt;}
.x79_c00349{left:261.706667pt;}
.x1d_c00349{left:265.333333pt;}
.xb1_c00349{left:267.040000pt;}
.x59_c00349{left:269.333333pt;}
.x32_c00349{left:272.000000pt;}
.x104_c00349{left:273.706667pt;}
.xe0_c00349{left:275.040000pt;}
.x3c_c00349{left:276.373333pt;}
.x27_c00349{left:279.040000pt;}
.x8a_c00349{left:280.000000pt;}
.xa4_c00349{left:281.706667pt;}
.xeb_c00349{left:283.040000pt;}
.x72_c00349{left:284.000000pt;}
.xdc_c00349{left:288.373333pt;}
.x15_c00349{left:292.000000pt;}
.x82_c00349{left:294.666667pt;}
.x50_c00349{left:298.666667pt;}
.x73_c00349{left:300.000000pt;}
.x9b_c00349{left:300.960000pt;}
.x1e_c00349{left:302.293333pt;}
.x47_c00349{left:303.626667pt;}
.x28_c00349{left:305.333333pt;}
.xac_c00349{left:306.666667pt;}
.xe7_c00349{left:307.626667pt;}
.x7_c00349{left:309.333333pt;}
.xc1_c00349{left:310.293333pt;}
.x7a_c00349{left:312.000000pt;}
.xd6_c00349{left:315.040000pt;}
.x5a_c00349{left:316.000000pt;}
.xf7_c00349{left:318.666667pt;}
.xb2_c00349{left:320.373333pt;}
.xf3_c00349{left:321.333333pt;}
.x64_c00349{left:323.040000pt;}
.x8_c00349{left:326.666667pt;}
.xcb_c00349{left:328.000000pt;}
.x48_c00349{left:329.333333pt;}
.xfc_c00349{left:330.293333pt;}
.x8b_c00349{left:331.626667pt;}
.x16_c00349{left:336.960000pt;}
.x3d_c00349{left:339.040000pt;}
.x7b_c00349{left:340.000000pt;}
.x51_c00349{left:342.293333pt;}
.xef_c00349{left:344.000000pt;}
.x33_c00349{left:345.333333pt;}
.x17_c00349{left:346.666667pt;}
.x9_c00349{left:348.960000pt;}
.xdf_c00349{left:351.040000pt;}
.x29_c00349{left:352.000000pt;}
.x107_c00349{left:353.333333pt;}
.xdd_c00349{left:356.000000pt;}
.x1_c00349{left:360.000000pt;}
.x52_c00349{left:361.706667pt;}
.x83_c00349{left:362.666667pt;}
.xbb_c00349{left:365.333333pt;}
.x108_c00349{left:366.666667pt;}
.xb3_c00349{left:368.000000pt;}
.x5b_c00349{left:369.333333pt;}
.xd7_c00349{left:370.293333pt;}
.x1f_c00349{left:371.626667pt;}
.x9c_c00349{left:373.706667pt;}
.x49_c00349{left:374.666667pt;}
.xe8_c00349{left:376.000000pt;}
.x18_c00349{left:377.333333pt;}
.x74_c00349{left:378.666667pt;}
.x5c_c00349{left:380.000000pt;}
.x65_c00349{left:381.333333pt;}
.x10c_c00349{left:382.666667pt;}
.xc2_c00349{left:384.000000pt;}
.xe4_c00349{left:384.960000pt;}
.x53_c00349{left:387.040000pt;}
.xd8_c00349{left:388.373333pt;}
.xa_c00349{left:389.706667pt;}
.x34_c00349{left:390.666667pt;}
.x94_c00349{left:392.000000pt;}
.xd1_c00349{left:393.706667pt;}
.xc3_c00349{left:396.960000pt;}
.x7c_c00349{left:400.000000pt;}
.xf4_c00349{left:402.666667pt;}
.xa5_c00349{left:404.000000pt;}
.xb_c00349{left:405.333333pt;}
.x8c_c00349{left:406.293333pt;}
.x2a_c00349{left:408.000000pt;}
.x66_c00349{left:408.960000pt;}
.x101_c00349{left:410.666667pt;}
.x3e_c00349{left:412.000000pt;}
.xcc_c00349{left:413.333333pt;}
.xb4_c00349{left:414.666667pt;}
.xfa_c00349{left:416.373333pt;}
.xd2_c00349{left:418.666667pt;}
.x95_c00349{left:420.373333pt;}
.xfd_c00349{left:421.333333pt;}
.x20_c00349{left:422.666667pt;}
.x67_c00349{left:424.960000pt;}
.xc_c00349{left:426.666667pt;}
.x3f_c00349{left:427.626667pt;}
.xc4_c00349{left:429.333333pt;}
.x54_c00349{left:430.666667pt;}
.x21_c00349{left:432.373333pt;}
.x7d_c00349{left:435.040000pt;}
.xa6_c00349{left:437.706667pt;}
.xe5_c00349{left:440.373333pt;}
.x19_c00349{left:441.706667pt;}
.x109_c00349{left:442.666667pt;}
.x8d_c00349{left:444.000000pt;}
.x2b_c00349{left:446.666667pt;}
.x5d_c00349{left:448.000000pt;}
.x9d_c00349{left:449.706667pt;}
.x35_c00349{left:453.333333pt;}
.x68_c00349{left:456.960000pt;}
.xd9_c00349{left:458.666667pt;}
.xb5_c00349{left:460.960000pt;}
.x36_c00349{left:464.000000pt;}
.xfe_c00349{left:464.960000pt;}
.xde_c00349{left:466.666667pt;}
.x22_c00349{left:469.333333pt;}
.x8e_c00349{left:471.626667pt;}
.xd_c00349{left:478.293333pt;}
.x84_c00349{left:480.000000pt;}
.xbc_c00349{left:481.333333pt;}
.x10d_c00349{left:482.666667pt;}
.xe1_c00349{left:484.373333pt;}
.x9e_c00349{left:485.333333pt;}
.x69_c00349{left:487.040000pt;}
.xec_c00349{left:488.000000pt;}
.x4a_c00349{left:488.960000pt;}
.x75_c00349{left:491.040000pt;}
.x40_c00349{left:492.373333pt;}
.x55_c00349{left:494.666667pt;}
.xfb_c00349{left:495.626667pt;}
.xc5_c00349{left:497.333333pt;}
.x23_c00349{left:500.000000pt;}
.x2c_c00349{left:500.960000pt;}
.xe9_c00349{left:504.373333pt;}
.xe_c00349{left:507.040000pt;}
.x7e_c00349{left:512.373333pt;}
.x6a_c00349{left:514.666667pt;}
.x85_c00349{left:516.000000pt;}
.x41_c00349{left:517.333333pt;}
.x5e_c00349{left:520.000000pt;}
.xf_c00349{left:521.333333pt;}
.x24_c00349{left:523.626667pt;}
.xd3_c00349{left:528.000000pt;}
.xed_c00349{left:529.333333pt;}
.xf0_c00349{left:531.040000pt;}
.xe2_c00349{left:532.000000pt;}
.xc6_c00349{left:534.666667pt;}
.x37_c00349{left:535.626667pt;}
.xa7_c00349{left:536.960000pt;}
.x56_c00349{left:539.040000pt;}
.x96_c00349{left:541.706667pt;}
.x6b_c00349{left:544.000000pt;}
.x105_c00349{left:545.333333pt;}
.xad_c00349{left:548.000000pt;}
.xb6_c00349{left:551.040000pt;}
.x76_c00349{left:552.000000pt;}
.x2d_c00349{left:553.333333pt;}
.x7f_c00349{left:554.666667pt;}
.xa8_c00349{left:556.373333pt;}
.x6c_c00349{left:557.333333pt;}
.x42_c00349{left:558.666667pt;}
.x38_c00349{left:560.373333pt;}
.x25_c00349{left:562.666667pt;}
.xf8_c00349{left:564.000000pt;}
.x97_c00349{left:564.960000pt;}
.x86_c00349{left:569.333333pt;}
.xb7_c00349{left:573.333333pt;}
.xc7_c00349{left:575.626667pt;}
.xbd_c00349{left:578.666667pt;}
.x8f_c00349{left:581.333333pt;}
.x9f_c00349{left:582.666667pt;}
.x10_c00349{left:584.000000pt;}
.x4b_c00349{left:587.040000pt;}
.x80_c00349{left:588.960000pt;}
.x43_c00349{left:590.666667pt;}
.x10a_c00349{left:592.000000pt;}
.x39_c00349{left:593.333333pt;}
.xcd_c00349{left:596.373333pt;}
.x2e_c00349{left:600.000000pt;}
.x98_c00349{left:601.333333pt;}
.xee_c00349{left:604.373333pt;}
.x57_c00349{left:605.333333pt;}
.x87_c00349{left:606.666667pt;}
.x5f_c00349{left:608.000000pt;}
.xa0_c00349{left:609.333333pt;}
.xda_c00349{left:610.666667pt;}
.x4c_c00349{left:611.626667pt;}
.xf9_c00349{left:612.960000pt;}
.xc8_c00349{left:614.666667pt;}
.x10e_c00349{left:616.000000pt;}
.x90_c00349{left:617.333333pt;}
.xf5_c00349{left:618.666667pt;}
.x6d_c00349{left:620.373333pt;}
.xa9_c00349{left:622.666667pt;}
.xd4_c00349{left:624.000000pt;}
.xae_c00349{left:626.293333pt;}
.x106_c00349{left:627.626667pt;}
.x11_c00349{left:629.706667pt;}
.xce_c00349{left:631.040000pt;}
.x102_c00349{left:632.000000pt;}
.xf1_c00349{left:638.293333pt;}
.x60_c00349{left:642.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_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_7192e6cb18dbf589204d350c.woff2')format("woff");}.ff1_c00350{font-family:ff1_c00350;line-height:1.688965;font-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_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);}
.m6f_c00350{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.m2e_c00350{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.mb1_c00350{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.mda_c00350{transform:matrix(0.346955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346955,0.000000,0.000000,0.250000,0,0);}
.mba_c00350{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m21_c00350{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m4b_c00350{transform:matrix(0.363173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363173,0.000000,0.000000,0.250000,0,0);}
.m34_c00350{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m41_c00350{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mc3_c00350{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m7d_c00350{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m69_c00350{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m35_c00350{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mc8_c00350{transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);}
.m40_c00350{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m1d_c00350{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m9f_c00350{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.ma6_c00350{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m2b_c00350{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m49_c00350{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m84_c00350{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.md_c00350{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m62_c00350{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.ma9_c00350{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m82_c00350{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m94_c00350{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m9e_c00350{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m51_c00350{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m19_c00350{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m2f_c00350{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m74_c00350{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m75_c00350{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m71_c00350{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m5f_c00350{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.mcc_c00350{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m89_c00350{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m77_c00350{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m76_c00350{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mcf_c00350{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m3e_c00350{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m67_c00350{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m97_c00350{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.mf5_c00350{transform:matrix(0.425481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425481,0.000000,0.000000,0.250000,0,0);}
.m8e_c00350{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m72_c00350{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.mbd_c00350{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m2c_c00350{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.ma4_c00350{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m27_c00350{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m6c_c00350{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m16_c00350{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m59_c00350{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.md3_c00350{transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);}
.m79_c00350{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.mb5_c00350{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mb9_c00350{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.mce_c00350{transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443833,0.000000,0.000000,0.250000,0,0);}
.m86_c00350{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m33_c00350{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.ma0_c00350{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.mb3_c00350{transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);}
.m7f_c00350{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.mf4_c00350{transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);}
.m1_c00350{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m60_c00350{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m57_c00350{transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);}
.m78_c00350{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.ma_c00350{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m54_c00350{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mb_c00350{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m44_c00350{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.md6_c00350{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m1c_c00350{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m5d_c00350{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.ma2_c00350{transform:matrix(0.463866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463866,0.000000,0.000000,0.250000,0,0);}
.mde_c00350{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.me0_c00350{transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);}
.m1e_c00350{transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);}
.m5a_c00350{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.m17_c00350{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.m48_c00350{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m80_c00350{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.md8_c00350{transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);}
.m26_c00350{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m70_c00350{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.meb_c00350{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.ma7_c00350{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m5e_c00350{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m90_c00350{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m98_c00350{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m9d_c00350{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m93_c00350{transform:matrix(0.491651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491651,0.000000,0.000000,0.250000,0,0);}
.m81_c00350{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mf3_c00350{transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);}
.m5b_c00350{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m4d_c00350{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.mea_c00350{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.mac_c00350{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m6_c00350{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_c00350{transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);}
.mcd_c00350{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m9b_c00350{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m9c_c00350{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m2d_c00350{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.mf7_c00350{transform:matrix(0.509615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509615,0.000000,0.000000,0.250000,0,0);}
.mb6_c00350{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m3d_c00350{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mae_c00350{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m32_c00350{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m45_c00350{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m2a_c00350{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m3f_c00350{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.mc7_c00350{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);}
.m55_c00350{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mc4_c00350{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m46_c00350{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mb7_c00350{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m18_c00350{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m2_c00350{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.ma8_c00350{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m4_c00350{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mc5_c00350{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.mcb_c00350{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.mca_c00350{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m7a_c00350{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m24_c00350{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m30_c00350{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m25_c00350{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m9_c00350{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mf_c00350{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m7e_c00350{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m7c_c00350{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m43_c00350{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m63_c00350{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.maa_c00350{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m36_c00350{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m83_c00350{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m99_c00350{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m3a_c00350{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.md4_c00350{transform:matrix(0.546256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546256,0.000000,0.000000,0.250000,0,0);}
.ma3_c00350{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m31_c00350{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m8_c00350{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.md9_c00350{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.mb0_c00350{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m58_c00350{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mb4_c00350{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m88_c00350{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m10_c00350{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mbf_c00350{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m3_c00350{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m8a_c00350{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m28_c00350{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m4e_c00350{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m23_c00350{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.maf_c00350{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m4a_c00350{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);}
.m95_c00350{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m53_c00350{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m3c_c00350{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mab_c00350{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.me_c00350{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.me5_c00350{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m13_c00350{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m73_c00350{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m6d_c00350{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m1f_c00350{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m47_c00350{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m11_c00350{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m85_c00350{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mc2_c00350{transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);}
.m12_c00350{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m8c_c00350{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.mc6_c00350{transform:matrix(0.580147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580147,0.000000,0.000000,0.250000,0,0);}
.mdc_c00350{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.m65_c00350{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mf6_c00350{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.ma5_c00350{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m3b_c00350{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m29_c00350{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mbb_c00350{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m22_c00350{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m1b_c00350{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);}
.m5_c00350{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mbe_c00350{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m8d_c00350{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.m91_c00350{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m66_c00350{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.md1_c00350{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.mc_c00350{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m8f_c00350{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.md0_c00350{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m6e_c00350{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mc0_c00350{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.ma1_c00350{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m64_c00350{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m20_c00350{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.mee_c00350{transform:matrix(0.635463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635463,0.000000,0.000000,0.250000,0,0);}
.m52_c00350{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mf1_c00350{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.m68_c00350{transform:matrix(0.653529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653529,0.000000,0.000000,0.250000,0,0);}
.mf8_c00350{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.md2_c00350{transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);}
.mb8_c00350{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mdb_c00350{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m38_c00350{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m6b_c00350{transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);}
.m0_c00350{transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);}
.me2_c00350{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.mf2_c00350{transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);}
.mf0_c00350{transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);}
.md5_c00350{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m14_c00350{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m9a_c00350{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.me6_c00350{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.m96_c00350{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m87_c00350{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.mec_c00350{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.mad_c00350{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.mc9_c00350{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.mc1_c00350{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);}
.me8_c00350{transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);}
.m6a_c00350{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mef_c00350{transform:matrix(0.727974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727974,0.000000,0.000000,0.250000,0,0);}
.m5c_c00350{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.me3_c00350{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.m61_c00350{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.me1_c00350{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.med_c00350{transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);}
.mdf_c00350{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m7_c00350{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m37_c00350{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m50_c00350{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m4f_c00350{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m7b_c00350{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mdd_c00350{transform:matrix(0.770925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770925,0.000000,0.000000,0.250000,0,0);}
.mbc_c00350{transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);}
.m8b_c00350{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.mb2_c00350{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m42_c00350{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.m92_c00350{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.me7_c00350{transform:matrix(0.805066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805066,0.000000,0.000000,0.250000,0,0);}
.m39_c00350{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.me4_c00350{transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);}
.me9_c00350{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.md7_c00350{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m56_c00350{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m4c_c00350{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00350{vertical-align:0.000000px;}
.v1_c00350{vertical-align:6.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:-4.976843px;}
.wsd_c00350{word-spacing:0.000000px;}
.ws6_c00350{word-spacing:25.629635px;}
.ws7_c00350{word-spacing:26.399798px;}
.ws8_c00350{word-spacing:31.638459px;}
.ws2_c00350{word-spacing:35.020449px;}
.ws9_c00350{word-spacing:36.658489px;}
.wsc_c00350{word-spacing:41.452695px;}
.ws3_c00350{word-spacing:43.618669px;}
.wsb_c00350{word-spacing:48.067536px;}
.ws4_c00350{word-spacing:49.142505px;}
.wsa_c00350{word-spacing:51.638400px;}
.ws5_c00350{word-spacing:59.332701px;}
.ws1_c00350{word-spacing:69.168044px;}
._1_c00350{width:37.589598px;}
._0_c00350{width:38.768789px;}
.fc0_c00350{color:transparent;}
.fs5_c00350{font-size:3.420000px;}
.fs9_c00350{font-size:11.880000px;}
.fs8_c00350{font-size:13.620000px;}
.fs0_c00350{font-size:18.720000px;}
.fs7_c00350{font-size:20.400000px;}
.fs4_c00350{font-size:25.500000px;}
.fs1_c00350{font-size:28.920000px;}
.fs2_c00350{font-size:32.340000px;}
.fs3_c00350{font-size:35.700000px;}
.fs6_c00350{font-size:39.120000px;}
.y0_c00350{bottom:0.000000px;}
.y82_c00350{bottom:253.680000px;}
.y81_c00350{bottom:254.745000px;}
.y84_c00350{bottom:255.405000px;}
.y80_c00350{bottom:255.630000px;}
.y83_c00350{bottom:256.905000px;}
.y7d_c00350{bottom:274.245000px;}
.y7f_c00350{bottom:275.130000px;}
.y7e_c00350{bottom:276.405000px;}
.y7b_c00350{bottom:293.745000px;}
.y7a_c00350{bottom:294.825000px;}
.y79_c00350{bottom:295.905000px;}
.y7c_c00350{bottom:296.130000px;}
.y75_c00350{bottom:313.245000px;}
.y77_c00350{bottom:314.130000px;}
.y76_c00350{bottom:314.970000px;}
.y74_c00350{bottom:315.405000px;}
.y78_c00350{bottom:315.630000px;}
.y70_c00350{bottom:332.745000px;}
.y71_c00350{bottom:334.470000px;}
.y6f_c00350{bottom:334.905000px;}
.y73_c00350{bottom:335.970000px;}
.y72_c00350{bottom:336.405000px;}
.y6d_c00350{bottom:350.970000px;}
.y6b_c00350{bottom:352.245000px;}
.y6c_c00350{bottom:353.130000px;}
.y6a_c00350{bottom:354.405000px;}
.y6e_c00350{bottom:355.470000px;}
.y63_c00350{bottom:371.745000px;}
.y67_c00350{bottom:373.245000px;}
.y68_c00350{bottom:373.470000px;}
.y64_c00350{bottom:373.905000px;}
.y65_c00350{bottom:374.130000px;}
.y69_c00350{bottom:374.970000px;}
.y66_c00350{bottom:375.405000px;}
.y5f_c00350{bottom:392.745000px;}
.y61_c00350{bottom:393.405000px;}
.y62_c00350{bottom:393.630000px;}
.y60_c00350{bottom:394.905000px;}
.y5e_c00350{bottom:410.745000px;}
.y5d_c00350{bottom:412.905000px;}
.y5b_c00350{bottom:413.130000px;}
.y5c_c00350{bottom:413.325000px;}
.y5a_c00350{bottom:413.970000px;}
.y59_c00350{bottom:414.405000px;}
.y57_c00350{bottom:429.405000px;}
.y58_c00350{bottom:430.245000px;}
.y56_c00350{bottom:430.470000px;}
.y51_c00350{bottom:431.745000px;}
.y55_c00350{bottom:432.630000px;}
.y52_c00350{bottom:433.470000px;}
.y53_c00350{bottom:433.905000px;}
.y54_c00350{bottom:434.970000px;}
.y4e_c00350{bottom:448.905000px;}
.y4f_c00350{bottom:451.245000px;}
.y50_c00350{bottom:452.130000px;}
.y4d_c00350{bottom:452.970000px;}
.y4c_c00350{bottom:453.405000px;}
.y49_c00350{bottom:470.745000px;}
.y4b_c00350{bottom:470.970000px;}
.y4a_c00350{bottom:471.825000px;}
.y48_c00350{bottom:472.905000px;}
.y46_c00350{bottom:490.245000px;}
.y47_c00350{bottom:492.405000px;}
.y42_c00350{bottom:509.745000px;}
.y43_c00350{bottom:511.905000px;}
.y44_c00350{bottom:512.130000px;}
.y45_c00350{bottom:513.405000px;}
.y41_c00350{bottom:529.245000px;}
.y3f_c00350{bottom:529.680000px;}
.y40_c00350{bottom:530.745000px;}
.y3e_c00350{bottom:532.905000px;}
.y3a_c00350{bottom:550.245000px;}
.y3c_c00350{bottom:552.405000px;}
.y3d_c00350{bottom:552.630000px;}
.y3b_c00350{bottom:553.470000px;}
.y39_c00350{bottom:568.470000px;}
.y34_c00350{bottom:569.745000px;}
.y35_c00350{bottom:570.825000px;}
.y38_c00350{bottom:571.470000px;}
.y33_c00350{bottom:571.905000px;}
.y36_c00350{bottom:572.130000px;}
.y37_c00350{bottom:572.970000px;}
.y31_c00350{bottom:589.245000px;}
.y32_c00350{bottom:590.130000px;}
.y30_c00350{bottom:590.325000px;}
.y2e_c00350{bottom:591.405000px;}
.y2f_c00350{bottom:592.920000px;}
.yb2_c00350{bottom:626.130000px;}
.yb3_c00350{bottom:627.195000px;}
.yaf_c00350{bottom:639.630000px;}
.yb0_c00350{bottom:640.695000px;}
.yb1_c00350{bottom:641.130000px;}
.yac_c00350{bottom:652.695000px;}
.yab_c00350{bottom:653.775000px;}
.yaa_c00350{bottom:654.195000px;}
.yae_c00350{bottom:654.630000px;}
.yad_c00350{bottom:655.695000px;}
.ya7_c00350{bottom:666.630000px;}
.ya8_c00350{bottom:667.695000px;}
.ya9_c00350{bottom:669.195000px;}
.ya6_c00350{bottom:681.195000px;}
.ya4_c00350{bottom:681.630000px;}
.ya5_c00350{bottom:682.695000px;}
.ya2_c00350{bottom:696.195000px;}
.ya3_c00350{bottom:696.630000px;}
.ya1_c00350{bottom:709.695000px;}
.ya0_c00350{bottom:710.130000px;}
.y9f_c00350{bottom:711.195000px;}
.y9e_c00350{bottom:723.195000px;}
.y9d_c00350{bottom:723.630000px;}
.y9c_c00350{bottom:724.695000px;}
.y9a_c00350{bottom:737.130000px;}
.y9b_c00350{bottom:738.195000px;}
.y99_c00350{bottom:750.630000px;}
.y98_c00350{bottom:751.695000px;}
.y96_c00350{bottom:764.130000px;}
.y97_c00350{bottom:765.195000px;}
.y92_c00350{bottom:783.195000px;}
.y94_c00350{bottom:783.630000px;}
.y93_c00350{bottom:784.695000px;}
.y95_c00350{bottom:784.920000px;}
.y90_c00350{bottom:797.130000px;}
.y91_c00350{bottom:798.195000px;}
.y8e_c00350{bottom:811.695000px;}
.y8f_c00350{bottom:812.775000px;}
.y8b_c00350{bottom:837.825000px;}
.y8d_c00350{bottom:839.970000px;}
.y8c_c00350{bottom:841.050000px;}
.y8a_c00350{bottom:852.825000px;}
.y88_c00350{bottom:854.550000px;}
.y87_c00350{bottom:854.970000px;}
.y89_c00350{bottom:856.050000px;}
.y86_c00350{bottom:872.550000px;}
.y85_c00350{bottom:875.550000px;}
.y2d_c00350{bottom:903.405000px;}
.y2a_c00350{bottom:904.245000px;}
.y2b_c00350{bottom:905.130000px;}
.y28_c00350{bottom:905.970000px;}
.y29_c00350{bottom:906.405000px;}
.y2c_c00350{bottom:907.470000px;}
.y26_c00350{bottom:921.825000px;}
.y23_c00350{bottom:922.905000px;}
.y24_c00350{bottom:923.745000px;}
.y25_c00350{bottom:923.970000px;}
.y22_c00350{bottom:924.825000px;}
.y21_c00350{bottom:925.905000px;}
.y27_c00350{bottom:925.920000px;}
.y20_c00350{bottom:926.130000px;}
.y1f_c00350{bottom:943.245000px;}
.y1e_c00350{bottom:944.970000px;}
.y1d_c00350{bottom:945.405000px;}
.y1c_c00350{bottom:961.905000px;}
.y17_c00350{bottom:962.325000px;}
.y18_c00350{bottom:962.745000px;}
.y1b_c00350{bottom:964.470000px;}
.y19_c00350{bottom:964.905000px;}
.y1a_c00350{bottom:965.130000px;}
.y16_c00350{bottom:981.405000px;}
.y15_c00350{bottom:982.245000px;}
.y14_c00350{bottom:984.405000px;}
.y12_c00350{bottom:1003.245000px;}
.y13_c00350{bottom:1003.905000px;}
.y10_c00350{bottom:1004.970000px;}
.y11_c00350{bottom:1005.405000px;}
.yd_c00350{bottom:1021.245000px;}
.yf_c00350{bottom:1022.325000px;}
.ye_c00350{bottom:1023.405000px;}
.yc_c00350{bottom:1024.470000px;}
.yb_c00350{bottom:1024.905000px;}
.y9_c00350{bottom:1042.905000px;}
.ya_c00350{bottom:1043.970000px;}
.y8_c00350{bottom:1044.405000px;}
.y6_c00350{bottom:1061.745000px;}
.y4_c00350{bottom:1062.630000px;}
.y5_c00350{bottom:1062.825000px;}
.y7_c00350{bottom:1063.470000px;}
.y3_c00350{bottom:1063.905000px;}
.y2_c00350{bottom:1099.905000px;}
.y1_c00350{bottom:1103.130000px;}
.h6_c00350{height:4.206533px;}
.ha_c00350{height:14.612168px;}
.h9_c00350{height:16.752334px;}
.hb_c00350{height:22.752334px;}
.h1_c00350{height:23.025234px;}
.h8_c00350{height:25.091602px;}
.hc_c00350{height:29.025234px;}
.h5_c00350{height:31.364502px;}
.h2_c00350{height:35.571035px;}
.h3_c00350{height:39.777568px;}
.h4_c00350{height:43.910303px;}
.h7_c00350{height:48.116836px;}
.h0_c00350{height:1335.000000px;}
.w0_c00350{width:880.500000px;}
.x0_c00350{left:0.000000px;}
.x3_c00350{left:151.500000px;}
.x82_c00350{left:153.000000px;}
.x15_c00350{left:166.080000px;}
.x5d_c00350{left:167.145000px;}
.xce_c00350{left:170.145000px;}
.xbc_c00350{left:174.000000px;}
.xc8_c00350{left:178.080000px;}
.x2d_c00350{left:187.920000px;}
.x8c_c00350{left:189.000000px;}
.x13_c00350{left:190.920000px;}
.xb3_c00350{left:192.000000px;}
.x91_c00350{left:195.000000px;}
.xa1_c00350{left:196.080000px;}
.x40_c00350{left:197.580000px;}
.x84_c00350{left:200.145000px;}
.x4_c00350{left:205.080000px;}
.x36_c00350{left:207.000000px;}
.x23_c00350{left:210.420000px;}
.xbd_c00350{left:211.500000px;}
.x72_c00350{left:214.500000px;}
.x14_c00350{left:217.080000px;}
.x8d_c00350{left:219.000000px;}
.x16_c00350{left:220.920000px;}
.x83_c00350{left:223.500000px;}
.x98_c00350{left:226.500000px;}
.x4a_c00350{left:227.580000px;}
.x2e_c00350{left:229.080000px;}
.xcf_c00350{left:230.580000px;}
.xb4_c00350{left:232.920000px;}
.x5_c00350{left:235.500000px;}
.x5e_c00350{left:237.000000px;}
.x24_c00350{left:241.500000px;}
.x2f_c00350{left:247.080000px;}
.xd3_c00350{left:249.000000px;}
.x56_c00350{left:254.580000px;}
.x85_c00350{left:256.080000px;}
.x41_c00350{left:258.000000px;}
.x37_c00350{left:259.920000px;}
.x4b_c00350{left:261.000000px;}
.x6_c00350{left:262.920000px;}
.xc9_c00350{left:264.000000px;}
.x66_c00350{left:265.920000px;}
.xae_c00350{left:267.000000px;}
.xaa_c00350{left:268.500000px;}
.xdb_c00350{left:269.580000px;}
.x57_c00350{left:273.420000px;}
.xe5_c00350{left:276.000000px;}
.xc3_c00350{left:277.500000px;}
.x8e_c00350{left:278.580000px;}
.xe2_c00350{left:280.500000px;}
.xd4_c00350{left:283.500000px;}
.xe0_c00350{left:284.580000px;}
.x7_c00350{left:288.420000px;}
.x73_c00350{left:291.000000px;}
.xe3_c00350{left:292.080000px;}
.xab_c00350{left:294.000000px;}
.x25_c00350{left:297.000000px;}
.xca_c00350{left:298.500000px;}
.x17_c00350{left:300.000000px;}
.x92_c00350{left:302.580000px;}
.x38_c00350{left:304.500000px;}
.xdd_c00350{left:307.080000px;}
.x4c_c00350{left:309.420000px;}
.x99_c00350{left:311.580000px;}
.x6f_c00350{left:313.275000px;}
.x8_c00350{left:314.580000px;}
.x18_c00350{left:316.080000px;}
.xb5_c00350{left:319.920000px;}
.x30_c00350{left:321.000000px;}
.x39_c00350{left:324.420000px;}
.x26_c00350{left:328.920000px;}
.x19_c00350{left:330.000000px;}
.x9_c00350{left:331.500000px;}
.xe6_c00350{left:334.500000px;}
.xa2_c00350{left:336.420000px;}
.x5f_c00350{left:337.500000px;}
.xcb_c00350{left:339.000000px;}
.x67_c00350{left:340.500000px;}
.xa_c00350{left:345.000000px;}
.x74_c00350{left:346.080000px;}
.x1a_c00350{left:348.000000px;}
.xbe_c00350{left:351.000000px;}
.xc4_c00350{left:352.080000px;}
.x3a_c00350{left:354.000000px;}
.x93_c00350{left:357.000000px;}
.x42_c00350{left:359.580000px;}
.x1b_c00350{left:361.500000px;}
.x27_c00350{left:362.580000px;}
.x9a_c00350{left:367.500000px;}
.xe4_c00350{left:370.500000px;}
.x58_c00350{left:373.080000px;}
.x68_c00350{left:376.500000px;}
.x1c_c00350{left:377.580000px;}
.x75_c00350{left:379.080000px;}
.x28_c00350{left:381.420000px;}
.x31_c00350{left:382.500000px;}
.xb6_c00350{left:385.080000px;}
.xa3_c00350{left:387.420000px;}
.x4d_c00350{left:389.580000px;}
.xd0_c00350{left:391.920000px;}
.x60_c00350{left:396.000000px;}
.x69_c00350{left:397.500000px;}
.xaf_c00350{left:399.000000px;}
.x94_c00350{left:401.580000px;}
.x1_c00350{left:403.500000px;}
.x43_c00350{left:404.580000px;}
.x29_c00350{left:409.080000px;}
.x76_c00350{left:412.500000px;}
.x1d_c00350{left:414.000000px;}
.x7a_c00350{left:415.500000px;}
.x70_c00350{left:417.420000px;}
.xd8_c00350{left:418.500000px;}
.xb0_c00350{left:420.855000px;}
.xde_c00350{left:424.920000px;}
.xc5_c00350{left:426.000000px;}
.x3b_c00350{left:427.920000px;}
.xbf_c00350{left:429.855000px;}
.x7b_c00350{left:436.920000px;}
.xb_c00350{left:438.000000px;}
.x44_c00350{left:445.500000px;}
.x61_c00350{left:447.420000px;}
.x1e_c00350{left:448.920000px;}
.x95_c00350{left:450.000000px;}
.xa4_c00350{left:451.920000px;}
.x86_c00350{left:453.420000px;}
.x32_c00350{left:458.580000px;}
.xd7_c00350{left:460.500000px;}
.xc6_c00350{left:462.420000px;}
.x7c_c00350{left:463.500000px;}
.x3c_c00350{left:465.000000px;}
.x4e_c00350{left:466.500000px;}
.x59_c00350{left:468.000000px;}
.x77_c00350{left:469.500000px;}
.x87_c00350{left:474.855000px;}
.x6a_c00350{left:480.000000px;}
.x45_c00350{left:481.500000px;}
.xb1_c00350{left:483.000000px;}
.x9b_c00350{left:487.080000px;}
.xc_c00350{left:489.420000px;}
.x78_c00350{left:490.500000px;}
.x5a_c00350{left:493.500000px;}
.xd5_c00350{left:496.500000px;}
.xb7_c00350{left:498.420000px;}
.x3d_c00350{left:499.500000px;}
.xb2_c00350{left:501.000000px;}
.x6b_c00350{left:502.500000px;}
.x9c_c00350{left:505.920000px;}
.x4f_c00350{left:507.000000px;}
.xac_c00350{left:511.500000px;}
.x1f_c00350{left:513.000000px;}
.xd_c00350{left:514.920000px;}
.xe7_c00350{left:516.420000px;}
.xd9_c00350{left:517.500000px;}
.x3e_c00350{left:518.580000px;}
.x2a_c00350{left:519.645000px;}
.x62_c00350{left:522.420000px;}
.xb8_c00350{left:523.500000px;}
.xa5_c00350{left:526.500000px;}
.x9d_c00350{left:530.580000px;}
.xd6_c00350{left:537.000000px;}
.xe_c00350{left:538.500000px;}
.xc0_c00350{left:540.000000px;}
.x50_c00350{left:544.080000px;}
.x6c_c00350{left:546.000000px;}
.x3f_c00350{left:550.500000px;}
.x88_c00350{left:555.000000px;}
.xa6_c00350{left:556.080000px;}
.x46_c00350{left:558.000000px;}
.x20_c00350{left:559.080000px;}
.x5b_c00350{left:561.000000px;}
.x7d_c00350{left:562.920000px;}
.xdc_c00350{left:564.000000px;}
.xf_c00350{left:565.500000px;}
.xb9_c00350{left:567.000000px;}
.xe1_c00350{left:568.500000px;}
.xd1_c00350{left:570.000000px;}
.x33_c00350{left:571.500000px;}
.xdf_c00350{left:573.000000px;}
.x2b_c00350{left:576.000000px;}
.x51_c00350{left:577.500000px;}
.x47_c00350{left:578.580000px;}
.x8f_c00350{left:580.500000px;}
.x9e_c00350{left:582.420000px;}
.xc7_c00350{left:583.500000px;}
.xc1_c00350{left:586.500000px;}
.x7e_c00350{left:588.645000px;}
.xcc_c00350{left:591.000000px;}
.x21_c00350{left:592.500000px;}
.xba_c00350{left:594.420000px;}
.x52_c00350{left:597.000000px;}
.x96_c00350{left:601.920000px;}
.x6d_c00350{left:604.920000px;}
.x10_c00350{left:606.420000px;}
.xa7_c00350{left:609.000000px;}
.xad_c00350{left:614.145000px;}
.xe8_c00350{left:615.420000px;}
.x34_c00350{left:616.500000px;}
.xda_c00350{left:618.000000px;}
.x9f_c00350{left:619.500000px;}
.xd2_c00350{left:622.500000px;}
.x5c_c00350{left:623.580000px;}
.x89_c00350{left:627.420000px;}
.x53_c00350{left:631.500000px;}
.xc2_c00350{left:633.000000px;}
.x7f_c00350{left:634.500000px;}
.x79_c00350{left:635.775000px;}
.x63_c00350{left:637.500000px;}
.x71_c00350{left:649.500000px;}
.x54_c00350{left:652.080000px;}
.x48_c00350{left:655.080000px;}
.xa8_c00350{left:657.000000px;}
.x64_c00350{left:658.080000px;}
.xbb_c00350{left:660.000000px;}
.x8a_c00350{left:661.920000px;}
.x97_c00350{left:663.000000px;}
.x11_c00350{left:669.000000px;}
.x2c_c00350{left:670.500000px;}
.x80_c00350{left:672.420000px;}
.xa0_c00350{left:673.500000px;}
.x6e_c00350{left:678.000000px;}
.x65_c00350{left:679.500000px;}
.xcd_c00350{left:681.000000px;}
.x90_c00350{left:682.500000px;}
.x12_c00350{left:687.000000px;}
.x35_c00350{left:688.080000px;}
.x8b_c00350{left:690.645000px;}
.xa9_c00350{left:694.500000px;}
.x55_c00350{left:697.500000px;}
.x49_c00350{left:702.000000px;}
.x2_c00350{left:706.080000px;}
.x22_c00350{left:708.420000px;}
.x81_c00350{left:714.000000px;}
@media print{
.v0_c00350{vertical-align:0.000000pt;}
.v1_c00350{vertical-align:5.333333pt;}
.ls0_c00350{letter-spacing:0.000000pt;}
.ws0_c00350{word-spacing:-4.423860pt;}
.wsd_c00350{word-spacing:0.000000pt;}
.ws6_c00350{word-spacing:22.781898pt;}
.ws7_c00350{word-spacing:23.466487pt;}
.ws8_c00350{word-spacing:28.123075pt;}
.ws2_c00350{word-spacing:31.129288pt;}
.ws9_c00350{word-spacing:32.585323pt;}
.wsc_c00350{word-spacing:36.846840pt;}
.ws3_c00350{word-spacing:38.772150pt;}
.wsb_c00350{word-spacing:42.726699pt;}
.ws4_c00350{word-spacing:43.682226pt;}
.wsa_c00350{word-spacing:45.900800pt;}
.ws5_c00350{word-spacing:52.740178pt;}
.ws1_c00350{word-spacing:61.482706pt;}
._1_c00350{width:33.412976pt;}
._0_c00350{width:34.461146pt;}
.fs5_c00350{font-size:3.040000pt;}
.fs9_c00350{font-size:10.560000pt;}
.fs8_c00350{font-size:12.106667pt;}
.fs0_c00350{font-size:16.640000pt;}
.fs7_c00350{font-size:18.133333pt;}
.fs4_c00350{font-size:22.666667pt;}
.fs1_c00350{font-size:25.706667pt;}
.fs2_c00350{font-size:28.746667pt;}
.fs3_c00350{font-size:31.733333pt;}
.fs6_c00350{font-size:34.773333pt;}
.y0_c00350{bottom:0.000000pt;}
.y82_c00350{bottom:225.493333pt;}
.y81_c00350{bottom:226.440000pt;}
.y84_c00350{bottom:227.026667pt;}
.y80_c00350{bottom:227.226667pt;}
.y83_c00350{bottom:228.360000pt;}
.y7d_c00350{bottom:243.773333pt;}
.y7f_c00350{bottom:244.560000pt;}
.y7e_c00350{bottom:245.693333pt;}
.y7b_c00350{bottom:261.106667pt;}
.y7a_c00350{bottom:262.066667pt;}
.y79_c00350{bottom:263.026667pt;}
.y7c_c00350{bottom:263.226667pt;}
.y75_c00350{bottom:278.440000pt;}
.y77_c00350{bottom:279.226667pt;}
.y76_c00350{bottom:279.973333pt;}
.y74_c00350{bottom:280.360000pt;}
.y78_c00350{bottom:280.560000pt;}
.y70_c00350{bottom:295.773333pt;}
.y71_c00350{bottom:297.306667pt;}
.y6f_c00350{bottom:297.693333pt;}
.y73_c00350{bottom:298.640000pt;}
.y72_c00350{bottom:299.026667pt;}
.y6d_c00350{bottom:311.973333pt;}
.y6b_c00350{bottom:313.106667pt;}
.y6c_c00350{bottom:313.893333pt;}
.y6a_c00350{bottom:315.026667pt;}
.y6e_c00350{bottom:315.973333pt;}
.y63_c00350{bottom:330.440000pt;}
.y67_c00350{bottom:331.773333pt;}
.y68_c00350{bottom:331.973333pt;}
.y64_c00350{bottom:332.360000pt;}
.y65_c00350{bottom:332.560000pt;}
.y69_c00350{bottom:333.306667pt;}
.y66_c00350{bottom:333.693333pt;}
.y5f_c00350{bottom:349.106667pt;}
.y61_c00350{bottom:349.693333pt;}
.y62_c00350{bottom:349.893333pt;}
.y60_c00350{bottom:351.026667pt;}
.y5e_c00350{bottom:365.106667pt;}
.y5d_c00350{bottom:367.026667pt;}
.y5b_c00350{bottom:367.226667pt;}
.y5c_c00350{bottom:367.400000pt;}
.y5a_c00350{bottom:367.973333pt;}
.y59_c00350{bottom:368.360000pt;}
.y57_c00350{bottom:381.693333pt;}
.y58_c00350{bottom:382.440000pt;}
.y56_c00350{bottom:382.640000pt;}
.y51_c00350{bottom:383.773333pt;}
.y55_c00350{bottom:384.560000pt;}
.y52_c00350{bottom:385.306667pt;}
.y53_c00350{bottom:385.693333pt;}
.y54_c00350{bottom:386.640000pt;}
.y4e_c00350{bottom:399.026667pt;}
.y4f_c00350{bottom:401.106667pt;}
.y50_c00350{bottom:401.893333pt;}
.y4d_c00350{bottom:402.640000pt;}
.y4c_c00350{bottom:403.026667pt;}
.y49_c00350{bottom:418.440000pt;}
.y4b_c00350{bottom:418.640000pt;}
.y4a_c00350{bottom:419.400000pt;}
.y48_c00350{bottom:420.360000pt;}
.y46_c00350{bottom:435.773333pt;}
.y47_c00350{bottom:437.693333pt;}
.y42_c00350{bottom:453.106667pt;}
.y43_c00350{bottom:455.026667pt;}
.y44_c00350{bottom:455.226667pt;}
.y45_c00350{bottom:456.360000pt;}
.y41_c00350{bottom:470.440000pt;}
.y3f_c00350{bottom:470.826667pt;}
.y40_c00350{bottom:471.773333pt;}
.y3e_c00350{bottom:473.693333pt;}
.y3a_c00350{bottom:489.106667pt;}
.y3c_c00350{bottom:491.026667pt;}
.y3d_c00350{bottom:491.226667pt;}
.y3b_c00350{bottom:491.973333pt;}
.y39_c00350{bottom:505.306667pt;}
.y34_c00350{bottom:506.440000pt;}
.y35_c00350{bottom:507.400000pt;}
.y38_c00350{bottom:507.973333pt;}
.y33_c00350{bottom:508.360000pt;}
.y36_c00350{bottom:508.560000pt;}
.y37_c00350{bottom:509.306667pt;}
.y31_c00350{bottom:523.773333pt;}
.y32_c00350{bottom:524.560000pt;}
.y30_c00350{bottom:524.733333pt;}
.y2e_c00350{bottom:525.693333pt;}
.y2f_c00350{bottom:527.040000pt;}
.yb2_c00350{bottom:556.560000pt;}
.yb3_c00350{bottom:557.506667pt;}
.yaf_c00350{bottom:568.560000pt;}
.yb0_c00350{bottom:569.506667pt;}
.yb1_c00350{bottom:569.893333pt;}
.yac_c00350{bottom:580.173333pt;}
.yab_c00350{bottom:581.133333pt;}
.yaa_c00350{bottom:581.506667pt;}
.yae_c00350{bottom:581.893333pt;}
.yad_c00350{bottom:582.840000pt;}
.ya7_c00350{bottom:592.560000pt;}
.ya8_c00350{bottom:593.506667pt;}
.ya9_c00350{bottom:594.840000pt;}
.ya6_c00350{bottom:605.506667pt;}
.ya4_c00350{bottom:605.893333pt;}
.ya5_c00350{bottom:606.840000pt;}
.ya2_c00350{bottom:618.840000pt;}
.ya3_c00350{bottom:619.226667pt;}
.ya1_c00350{bottom:630.840000pt;}
.ya0_c00350{bottom:631.226667pt;}
.y9f_c00350{bottom:632.173333pt;}
.y9e_c00350{bottom:642.840000pt;}
.y9d_c00350{bottom:643.226667pt;}
.y9c_c00350{bottom:644.173333pt;}
.y9a_c00350{bottom:655.226667pt;}
.y9b_c00350{bottom:656.173333pt;}
.y99_c00350{bottom:667.226667pt;}
.y98_c00350{bottom:668.173333pt;}
.y96_c00350{bottom:679.226667pt;}
.y97_c00350{bottom:680.173333pt;}
.y92_c00350{bottom:696.173333pt;}
.y94_c00350{bottom:696.560000pt;}
.y93_c00350{bottom:697.506667pt;}
.y95_c00350{bottom:697.706667pt;}
.y90_c00350{bottom:708.560000pt;}
.y91_c00350{bottom:709.506667pt;}
.y8e_c00350{bottom:721.506667pt;}
.y8f_c00350{bottom:722.466667pt;}
.y8b_c00350{bottom:744.733333pt;}
.y8d_c00350{bottom:746.640000pt;}
.y8c_c00350{bottom:747.600000pt;}
.y8a_c00350{bottom:758.066667pt;}
.y88_c00350{bottom:759.600000pt;}
.y87_c00350{bottom:759.973333pt;}
.y89_c00350{bottom:760.933333pt;}
.y86_c00350{bottom:775.600000pt;}
.y85_c00350{bottom:778.266667pt;}
.y2d_c00350{bottom:803.026667pt;}
.y2a_c00350{bottom:803.773333pt;}
.y2b_c00350{bottom:804.560000pt;}
.y28_c00350{bottom:805.306667pt;}
.y29_c00350{bottom:805.693333pt;}
.y2c_c00350{bottom:806.640000pt;}
.y26_c00350{bottom:819.400000pt;}
.y23_c00350{bottom:820.360000pt;}
.y24_c00350{bottom:821.106667pt;}
.y25_c00350{bottom:821.306667pt;}
.y22_c00350{bottom:822.066667pt;}
.y21_c00350{bottom:823.026667pt;}
.y27_c00350{bottom:823.040000pt;}
.y20_c00350{bottom:823.226667pt;}
.y1f_c00350{bottom:838.440000pt;}
.y1e_c00350{bottom:839.973333pt;}
.y1d_c00350{bottom:840.360000pt;}
.y1c_c00350{bottom:855.026667pt;}
.y17_c00350{bottom:855.400000pt;}
.y18_c00350{bottom:855.773333pt;}
.y1b_c00350{bottom:857.306667pt;}
.y19_c00350{bottom:857.693333pt;}
.y1a_c00350{bottom:857.893333pt;}
.y16_c00350{bottom:872.360000pt;}
.y15_c00350{bottom:873.106667pt;}
.y14_c00350{bottom:875.026667pt;}
.y12_c00350{bottom:891.773333pt;}
.y13_c00350{bottom:892.360000pt;}
.y10_c00350{bottom:893.306667pt;}
.y11_c00350{bottom:893.693333pt;}
.yd_c00350{bottom:907.773333pt;}
.yf_c00350{bottom:908.733333pt;}
.ye_c00350{bottom:909.693333pt;}
.yc_c00350{bottom:910.640000pt;}
.yb_c00350{bottom:911.026667pt;}
.y9_c00350{bottom:927.026667pt;}
.ya_c00350{bottom:927.973333pt;}
.y8_c00350{bottom:928.360000pt;}
.y6_c00350{bottom:943.773333pt;}
.y4_c00350{bottom:944.560000pt;}
.y5_c00350{bottom:944.733333pt;}
.y7_c00350{bottom:945.306667pt;}
.y3_c00350{bottom:945.693333pt;}
.y2_c00350{bottom:977.693333pt;}
.y1_c00350{bottom:980.560000pt;}
.h6_c00350{height:3.739141pt;}
.ha_c00350{height:12.988594pt;}
.h9_c00350{height:14.890964pt;}
.hb_c00350{height:20.224297pt;}
.h1_c00350{height:20.466875pt;}
.h8_c00350{height:22.303646pt;}
.hc_c00350{height:25.800208pt;}
.h5_c00350{height:27.879557pt;}
.h2_c00350{height:31.618698pt;}
.h3_c00350{height:35.357839pt;}
.h4_c00350{height:39.031380pt;}
.h7_c00350{height:42.770521pt;}
.h0_c00350{height:1186.666667pt;}
.w0_c00350{width:782.666667pt;}
.x0_c00350{left:0.000000pt;}
.x3_c00350{left:134.666667pt;}
.x82_c00350{left:136.000000pt;}
.x15_c00350{left:147.626667pt;}
.x5d_c00350{left:148.573333pt;}
.xce_c00350{left:151.240000pt;}
.xbc_c00350{left:154.666667pt;}
.xc8_c00350{left:158.293333pt;}
.x2d_c00350{left:167.040000pt;}
.x8c_c00350{left:168.000000pt;}
.x13_c00350{left:169.706667pt;}
.xb3_c00350{left:170.666667pt;}
.x91_c00350{left:173.333333pt;}
.xa1_c00350{left:174.293333pt;}
.x40_c00350{left:175.626667pt;}
.x84_c00350{left:177.906667pt;}
.x4_c00350{left:182.293333pt;}
.x36_c00350{left:184.000000pt;}
.x23_c00350{left:187.040000pt;}
.xbd_c00350{left:188.000000pt;}
.x72_c00350{left:190.666667pt;}
.x14_c00350{left:192.960000pt;}
.x8d_c00350{left:194.666667pt;}
.x16_c00350{left:196.373333pt;}
.x83_c00350{left:198.666667pt;}
.x98_c00350{left:201.333333pt;}
.x4a_c00350{left:202.293333pt;}
.x2e_c00350{left:203.626667pt;}
.xcf_c00350{left:204.960000pt;}
.xb4_c00350{left:207.040000pt;}
.x5_c00350{left:209.333333pt;}
.x5e_c00350{left:210.666667pt;}
.x24_c00350{left:214.666667pt;}
.x2f_c00350{left:219.626667pt;}
.xd3_c00350{left:221.333333pt;}
.x56_c00350{left:226.293333pt;}
.x85_c00350{left:227.626667pt;}
.x41_c00350{left:229.333333pt;}
.x37_c00350{left:231.040000pt;}
.x4b_c00350{left:232.000000pt;}
.x6_c00350{left:233.706667pt;}
.xc9_c00350{left:234.666667pt;}
.x66_c00350{left:236.373333pt;}
.xae_c00350{left:237.333333pt;}
.xaa_c00350{left:238.666667pt;}
.xdb_c00350{left:239.626667pt;}
.x57_c00350{left:243.040000pt;}
.xe5_c00350{left:245.333333pt;}
.xc3_c00350{left:246.666667pt;}
.x8e_c00350{left:247.626667pt;}
.xe2_c00350{left:249.333333pt;}
.xd4_c00350{left:252.000000pt;}
.xe0_c00350{left:252.960000pt;}
.x7_c00350{left:256.373333pt;}
.x73_c00350{left:258.666667pt;}
.xe3_c00350{left:259.626667pt;}
.xab_c00350{left:261.333333pt;}
.x25_c00350{left:264.000000pt;}
.xca_c00350{left:265.333333pt;}
.x17_c00350{left:266.666667pt;}
.x92_c00350{left:268.960000pt;}
.x38_c00350{left:270.666667pt;}
.xdd_c00350{left:272.960000pt;}
.x4c_c00350{left:275.040000pt;}
.x99_c00350{left:276.960000pt;}
.x6f_c00350{left:278.466667pt;}
.x8_c00350{left:279.626667pt;}
.x18_c00350{left:280.960000pt;}
.xb5_c00350{left:284.373333pt;}
.x30_c00350{left:285.333333pt;}
.x39_c00350{left:288.373333pt;}
.x26_c00350{left:292.373333pt;}
.x19_c00350{left:293.333333pt;}
.x9_c00350{left:294.666667pt;}
.xe6_c00350{left:297.333333pt;}
.xa2_c00350{left:299.040000pt;}
.x5f_c00350{left:300.000000pt;}
.xcb_c00350{left:301.333333pt;}
.x67_c00350{left:302.666667pt;}
.xa_c00350{left:306.666667pt;}
.x74_c00350{left:307.626667pt;}
.x1a_c00350{left:309.333333pt;}
.xbe_c00350{left:312.000000pt;}
.xc4_c00350{left:312.960000pt;}
.x3a_c00350{left:314.666667pt;}
.x93_c00350{left:317.333333pt;}
.x42_c00350{left:319.626667pt;}
.x1b_c00350{left:321.333333pt;}
.x27_c00350{left:322.293333pt;}
.x9a_c00350{left:326.666667pt;}
.xe4_c00350{left:329.333333pt;}
.x58_c00350{left:331.626667pt;}
.x68_c00350{left:334.666667pt;}
.x1c_c00350{left:335.626667pt;}
.x75_c00350{left:336.960000pt;}
.x28_c00350{left:339.040000pt;}
.x31_c00350{left:340.000000pt;}
.xb6_c00350{left:342.293333pt;}
.xa3_c00350{left:344.373333pt;}
.x4d_c00350{left:346.293333pt;}
.xd0_c00350{left:348.373333pt;}
.x60_c00350{left:352.000000pt;}
.x69_c00350{left:353.333333pt;}
.xaf_c00350{left:354.666667pt;}
.x94_c00350{left:356.960000pt;}
.x1_c00350{left:358.666667pt;}
.x43_c00350{left:359.626667pt;}
.x29_c00350{left:363.626667pt;}
.x76_c00350{left:366.666667pt;}
.x1d_c00350{left:368.000000pt;}
.x7a_c00350{left:369.333333pt;}
.x70_c00350{left:371.040000pt;}
.xd8_c00350{left:372.000000pt;}
.xb0_c00350{left:374.093333pt;}
.xde_c00350{left:377.706667pt;}
.xc5_c00350{left:378.666667pt;}
.x3b_c00350{left:380.373333pt;}
.xbf_c00350{left:382.093333pt;}
.x7b_c00350{left:388.373333pt;}
.xb_c00350{left:389.333333pt;}
.x44_c00350{left:396.000000pt;}
.x61_c00350{left:397.706667pt;}
.x1e_c00350{left:399.040000pt;}
.x95_c00350{left:400.000000pt;}
.xa4_c00350{left:401.706667pt;}
.x86_c00350{left:403.040000pt;}
.x32_c00350{left:407.626667pt;}
.xd7_c00350{left:409.333333pt;}
.xc6_c00350{left:411.040000pt;}
.x7c_c00350{left:412.000000pt;}
.x3c_c00350{left:413.333333pt;}
.x4e_c00350{left:414.666667pt;}
.x59_c00350{left:416.000000pt;}
.x77_c00350{left:417.333333pt;}
.x87_c00350{left:422.093333pt;}
.x6a_c00350{left:426.666667pt;}
.x45_c00350{left:428.000000pt;}
.xb1_c00350{left:429.333333pt;}
.x9b_c00350{left:432.960000pt;}
.xc_c00350{left:435.040000pt;}
.x78_c00350{left:436.000000pt;}
.x5a_c00350{left:438.666667pt;}
.xd5_c00350{left:441.333333pt;}
.xb7_c00350{left:443.040000pt;}
.x3d_c00350{left:444.000000pt;}
.xb2_c00350{left:445.333333pt;}
.x6b_c00350{left:446.666667pt;}
.x9c_c00350{left:449.706667pt;}
.x4f_c00350{left:450.666667pt;}
.xac_c00350{left:454.666667pt;}
.x1f_c00350{left:456.000000pt;}
.xd_c00350{left:457.706667pt;}
.xe7_c00350{left:459.040000pt;}
.xd9_c00350{left:460.000000pt;}
.x3e_c00350{left:460.960000pt;}
.x2a_c00350{left:461.906667pt;}
.x62_c00350{left:464.373333pt;}
.xb8_c00350{left:465.333333pt;}
.xa5_c00350{left:468.000000pt;}
.x9d_c00350{left:471.626667pt;}
.xd6_c00350{left:477.333333pt;}
.xe_c00350{left:478.666667pt;}
.xc0_c00350{left:480.000000pt;}
.x50_c00350{left:483.626667pt;}
.x6c_c00350{left:485.333333pt;}
.x3f_c00350{left:489.333333pt;}
.x88_c00350{left:493.333333pt;}
.xa6_c00350{left:494.293333pt;}
.x46_c00350{left:496.000000pt;}
.x20_c00350{left:496.960000pt;}
.x5b_c00350{left:498.666667pt;}
.x7d_c00350{left:500.373333pt;}
.xdc_c00350{left:501.333333pt;}
.xf_c00350{left:502.666667pt;}
.xb9_c00350{left:504.000000pt;}
.xe1_c00350{left:505.333333pt;}
.xd1_c00350{left:506.666667pt;}
.x33_c00350{left:508.000000pt;}
.xdf_c00350{left:509.333333pt;}
.x2b_c00350{left:512.000000pt;}
.x51_c00350{left:513.333333pt;}
.x47_c00350{left:514.293333pt;}
.x8f_c00350{left:516.000000pt;}
.x9e_c00350{left:517.706667pt;}
.xc7_c00350{left:518.666667pt;}
.xc1_c00350{left:521.333333pt;}
.x7e_c00350{left:523.240000pt;}
.xcc_c00350{left:525.333333pt;}
.x21_c00350{left:526.666667pt;}
.xba_c00350{left:528.373333pt;}
.x52_c00350{left:530.666667pt;}
.x96_c00350{left:535.040000pt;}
.x6d_c00350{left:537.706667pt;}
.x10_c00350{left:539.040000pt;}
.xa7_c00350{left:541.333333pt;}
.xad_c00350{left:545.906667pt;}
.xe8_c00350{left:547.040000pt;}
.x34_c00350{left:548.000000pt;}
.xda_c00350{left:549.333333pt;}
.x9f_c00350{left:550.666667pt;}
.xd2_c00350{left:553.333333pt;}
.x5c_c00350{left:554.293333pt;}
.x89_c00350{left:557.706667pt;}
.x53_c00350{left:561.333333pt;}
.xc2_c00350{left:562.666667pt;}
.x7f_c00350{left:564.000000pt;}
.x79_c00350{left:565.133333pt;}
.x63_c00350{left:566.666667pt;}
.x71_c00350{left:577.333333pt;}
.x54_c00350{left:579.626667pt;}
.x48_c00350{left:582.293333pt;}
.xa8_c00350{left:584.000000pt;}
.x64_c00350{left:584.960000pt;}
.xbb_c00350{left:586.666667pt;}
.x8a_c00350{left:588.373333pt;}
.x97_c00350{left:589.333333pt;}
.x11_c00350{left:594.666667pt;}
.x2c_c00350{left:596.000000pt;}
.x80_c00350{left:597.706667pt;}
.xa0_c00350{left:598.666667pt;}
.x6e_c00350{left:602.666667pt;}
.x65_c00350{left:604.000000pt;}
.xcd_c00350{left:605.333333pt;}
.x90_c00350{left:606.666667pt;}
.x12_c00350{left:610.666667pt;}
.x35_c00350{left:611.626667pt;}
.x8b_c00350{left:613.906667pt;}
.xa9_c00350{left:617.333333pt;}
.x55_c00350{left:620.000000pt;}
.x49_c00350{left:624.000000pt;}
.x2_c00350{left:627.626667pt;}
.x22_c00350{left:629.706667pt;}
.x81_c00350{left:634.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_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_8827f9908b09274dbdb8b989.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mbf_c00351{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.ma4_c00351{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_c00351{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m4e_c00351{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m90_c00351{transform:matrix(0.359664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359664,0.000000,0.000000,0.250000,0,0);}
.m97_c00351{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mda_c00351{transform:matrix(0.367739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367739,0.000000,0.000000,0.250000,0,0);}
.ma8_c00351{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m18_c00351{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m31_c00351{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m19_c00351{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m37_c00351{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m3c_c00351{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m29_c00351{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mc0_c00351{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m70_c00351{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mb4_c00351{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m83_c00351{transform:matrix(0.385892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385892,0.000000,0.000000,0.250000,0,0);}
.m5b_c00351{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m36_c00351{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.ma9_c00351{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.mc1_c00351{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m99_c00351{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m6e_c00351{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mc8_c00351{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mc3_c00351{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.maa_c00351{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m25_c00351{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m9b_c00351{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.md0_c00351{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.m1c_c00351{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m1e_c00351{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m92_c00351{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m86_c00351{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m75_c00351{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m76_c00351{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m5f_c00351{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m10_c00351{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mc2_c00351{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.ma1_c00351{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.maf_c00351{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m1f_c00351{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m4c_c00351{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m50_c00351{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.ma2_c00351{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m74_c00351{transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);}
.m3d_c00351{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mc4_c00351{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.md7_c00351{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m8b_c00351{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mb8_c00351{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m2a_c00351{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m59_c00351{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.md1_c00351{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.md5_c00351{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.m80_c00351{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.mc5_c00351{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m4a_c00351{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mad_c00351{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m63_c00351{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mcc_c00351{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m64_c00351{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m33_c00351{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.md9_c00351{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.m71_c00351{transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);}
.m3e_c00351{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m7a_c00351{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.m7d_c00351{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m46_c00351{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m9d_c00351{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m41_c00351{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m9c_c00351{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.m3f_c00351{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m8_c00351{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.m68_c00351{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m53_c00351{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m72_c00351{transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);}
.m6c_c00351{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m5d_c00351{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.mc7_c00351{transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);}
.m6f_c00351{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mbc_c00351{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mdb_c00351{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.md3_c00351{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.m9a_c00351{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m2b_c00351{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.m6a_c00351{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m9_c00351{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m49_c00351{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.mc9_c00351{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.m82_c00351{transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);}
.md4_c00351{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.m94_c00351{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m87_c00351{transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);}
.m8f_c00351{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mae_c00351{transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);}
.m66_c00351{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m67_c00351{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m35_c00351{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.me_c00351{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m3_c00351{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m43_c00351{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m7_c00351{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m4b_c00351{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m8a_c00351{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mce_c00351{transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);}
.mb1_c00351{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m26_c00351{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mba_c00351{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m3b_c00351{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m40_c00351{transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);}
.m91_c00351{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m58_c00351{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);}
.m57_c00351{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.md8_c00351{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m9e_c00351{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m7f_c00351{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m8c_c00351{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m98_c00351{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m1_c00351{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.mbb_c00351{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mb0_c00351{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m73_c00351{transform:matrix(0.512059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512059,0.000000,0.000000,0.250000,0,0);}
.m45_c00351{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m79_c00351{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m56_c00351{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m4d_c00351{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m5e_c00351{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m24_c00351{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m81_c00351{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mcd_c00351{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m5_c00351{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.ma7_c00351{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m27_c00351{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.m55_c00351{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m2f_c00351{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m44_c00351{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mb3_c00351{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m61_c00351{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mab_c00351{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m5a_c00351{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m89_c00351{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mb7_c00351{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m17_c00351{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m54_c00351{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m6_c00351{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m62_c00351{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m13_c00351{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m65_c00351{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m11_c00351{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m30_c00351{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m48_c00351{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);}
.m14_c00351{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m69_c00351{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mb6_c00351{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m6b_c00351{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m1d_c00351{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mb_c00351{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m78_c00351{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.mdc_c00351{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mcb_c00351{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.ma6_c00351{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m2d_c00351{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m88_c00351{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m28_c00351{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m2_c00351{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m32_c00351{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m21_c00351{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m60_c00351{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m77_c00351{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m4_c00351{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m51_c00351{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mcf_c00351{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mb9_c00351{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.mc_c00351{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mc6_c00351{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m38_c00351{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m16_c00351{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m8e_c00351{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m85_c00351{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m2c_c00351{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mb5_c00351{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m39_c00351{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m23_c00351{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mdd_c00351{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m5c_c00351{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m1b_c00351{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.ma0_c00351{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.ma3_c00351{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mca_c00351{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m84_c00351{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.mb2_c00351{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m15_c00351{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.ma_c00351{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.m96_c00351{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m7e_c00351{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m6d_c00351{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m47_c00351{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m3a_c00351{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m8d_c00351{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m95_c00351{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);}
.m7b_c00351{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m34_c00351{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.m52_c00351{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m12_c00351{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m22_c00351{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m0_c00351{transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);}
.m20_c00351{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m93_c00351{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m2e_c00351{transform:matrix(0.714744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.714744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.714744,0.000000,0.000000,0.250000,0,0);}
.m9f_c00351{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.ma5_c00351{transform:matrix(0.724359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.724359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.724359,0.000000,0.000000,0.250000,0,0);}
.mf_c00351{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.md2_c00351{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m42_c00351{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mbe_c00351{transform:matrix(0.737981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737981,0.000000,0.000000,0.250000,0,0);}
.m1a_c00351{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.md_c00351{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m7c_c00351{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mbd_c00351{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mac_c00351{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.md6_c00351{transform:matrix(0.837340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837340,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:-2.836157px;}
.ws1_c00351{word-spacing:0.000000px;}
.fc0_c00351{color:transparent;}
.fs0_c00351{font-size:18.720000px;}
.fs1_c00351{font-size:25.500000px;}
.fs2_c00351{font-size:28.920000px;}
.fs3_c00351{font-size:32.340000px;}
.fs4_c00351{font-size:35.700000px;}
.fs5_c00351{font-size:39.120000px;}
.y0_c00351{bottom:0.000000px;}
.yde_c00351{bottom:255.405000px;}
.ydb_c00351{bottom:273.630000px;}
.yda_c00351{bottom:274.905000px;}
.ydc_c00351{bottom:275.130000px;}
.ydd_c00351{bottom:275.970000px;}
.yd3_c00351{bottom:291.825000px;}
.yd4_c00351{bottom:292.245000px;}
.yd8_c00351{bottom:293.745000px;}
.yd5_c00351{bottom:294.405000px;}
.yd7_c00351{bottom:294.630000px;}
.yd9_c00351{bottom:295.470000px;}
.yd6_c00351{bottom:295.905000px;}
.ycf_c00351{bottom:311.745000px;}
.yd1_c00351{bottom:313.245000px;}
.yce_c00351{bottom:313.905000px;}
.yd0_c00351{bottom:314.130000px;}
.yd2_c00351{bottom:315.405000px;}
.yc9_c00351{bottom:332.325000px;}
.ycd_c00351{bottom:332.745000px;}
.ycb_c00351{bottom:333.630000px;}
.yc8_c00351{bottom:333.825000px;}
.yca_c00351{bottom:334.470000px;}
.ycc_c00351{bottom:334.905000px;}
.yc4_c00351{bottom:352.245000px;}
.yc7_c00351{bottom:353.970000px;}
.yc5_c00351{bottom:354.405000px;}
.yc6_c00351{bottom:355.470000px;}
.yc3_c00351{bottom:370.470000px;}
.ybf_c00351{bottom:371.325000px;}
.yc1_c00351{bottom:371.745000px;}
.ybe_c00351{bottom:372.405000px;}
.yc0_c00351{bottom:373.905000px;}
.yc2_c00351{bottom:374.970000px;}
.yb8_c00351{bottom:391.245000px;}
.ybc_c00351{bottom:392.130000px;}
.yba_c00351{bottom:392.325000px;}
.ybb_c00351{bottom:392.970000px;}
.yb9_c00351{bottom:393.405000px;}
.ybd_c00351{bottom:394.470000px;}
.yb5_c00351{bottom:410.745000px;}
.yb4_c00351{bottom:411.825000px;}
.yb6_c00351{bottom:412.905000px;}
.yb7_c00351{bottom:413.130000px;}
.yb3_c00351{bottom:429.405000px;}
.yb0_c00351{bottom:430.245000px;}
.yb1_c00351{bottom:432.405000px;}
.yb2_c00351{bottom:432.630000px;}
.yae_c00351{bottom:449.745000px;}
.yac_c00351{bottom:451.905000px;}
.yad_c00351{bottom:452.130000px;}
.yaf_c00351{bottom:452.970000px;}
.yaa_c00351{bottom:470.745000px;}
.yab_c00351{bottom:471.630000px;}
.ya9_c00351{bottom:472.470000px;}
.ya8_c00351{bottom:472.905000px;}
.ya5_c00351{bottom:490.245000px;}
.ya6_c00351{bottom:491.130000px;}
.ya7_c00351{bottom:491.970000px;}
.ya4_c00351{bottom:492.405000px;}
.ya2_c00351{bottom:509.745000px;}
.ya3_c00351{bottom:511.470000px;}
.ya0_c00351{bottom:511.905000px;}
.ya1_c00351{bottom:512.130000px;}
.y9f_c00351{bottom:512.970000px;}
.y9d_c00351{bottom:528.405000px;}
.y9a_c00351{bottom:529.245000px;}
.y9e_c00351{bottom:530.970000px;}
.y9b_c00351{bottom:531.405000px;}
.y9c_c00351{bottom:532.470000px;}
.y98_c00351{bottom:548.745000px;}
.y99_c00351{bottom:549.825000px;}
.y96_c00351{bottom:550.470000px;}
.y97_c00351{bottom:550.905000px;}
.y93_c00351{bottom:567.825000px;}
.y91_c00351{bottom:568.245000px;}
.y94_c00351{bottom:568.680000px;}
.y95_c00351{bottom:569.745000px;}
.y90_c00351{bottom:570.405000px;}
.y92_c00351{bottom:570.630000px;}
.y8f_c00351{bottom:571.905000px;}
.y8e_c00351{bottom:587.970000px;}
.y8b_c00351{bottom:589.245000px;}
.y8c_c00351{bottom:590.130000px;}
.y8d_c00351{bottom:590.970000px;}
.y8a_c00351{bottom:591.405000px;}
.y88_c00351{bottom:607.470000px;}
.y89_c00351{bottom:607.905000px;}
.y84_c00351{bottom:608.325000px;}
.y86_c00351{bottom:608.745000px;}
.y87_c00351{bottom:609.630000px;}
.y85_c00351{bottom:610.905000px;}
.y83_c00351{bottom:627.405000px;}
.y7e_c00351{bottom:628.245000px;}
.y81_c00351{bottom:629.130000px;}
.y7f_c00351{bottom:629.325000px;}
.y80_c00351{bottom:629.970000px;}
.y82_c00351{bottom:630.405000px;}
.y78_c00351{bottom:647.745000px;}
.y79_c00351{bottom:648.630000px;}
.y7d_c00351{bottom:649.470000px;}
.y7a_c00351{bottom:649.905000px;}
.y7b_c00351{bottom:650.130000px;}
.y7c_c00351{bottom:650.970000px;}
.y77_c00351{bottom:666.405000px;}
.y73_c00351{bottom:667.245000px;}
.y75_c00351{bottom:667.680000px;}
.y71_c00351{bottom:668.325000px;}
.y74_c00351{bottom:668.970000px;}
.y72_c00351{bottom:669.405000px;}
.y76_c00351{bottom:669.630000px;}
.y70_c00351{bottom:685.905000px;}
.y6e_c00351{bottom:686.745000px;}
.y6f_c00351{bottom:686.970000px;}
.y6c_c00351{bottom:688.905000px;}
.y6d_c00351{bottom:689.130000px;}
.y6a_c00351{bottom:706.245000px;}
.y6b_c00351{bottom:707.325000px;}
.y68_c00351{bottom:708.405000px;}
.y69_c00351{bottom:708.630000px;}
.y63_c00351{bottom:725.745000px;}
.y64_c00351{bottom:726.825000px;}
.y65_c00351{bottom:727.245000px;}
.y62_c00351{bottom:727.905000px;}
.y67_c00351{bottom:728.970000px;}
.y66_c00351{bottom:729.405000px;}
.y5c_c00351{bottom:744.405000px;}
.y60_c00351{bottom:746.745000px;}
.y5e_c00351{bottom:747.405000px;}
.y61_c00351{bottom:747.630000px;}
.y5d_c00351{bottom:748.470000px;}
.y5f_c00351{bottom:748.905000px;}
.y5a_c00351{bottom:766.245000px;}
.y59_c00351{bottom:767.130000px;}
.y58_c00351{bottom:767.970000px;}
.y5b_c00351{bottom:768.405000px;}
.y54_c00351{bottom:784.905000px;}
.y52_c00351{bottom:785.745000px;}
.y57_c00351{bottom:786.825000px;}
.y53_c00351{bottom:787.905000px;}
.y56_c00351{bottom:788.130000px;}
.y55_c00351{bottom:788.970000px;}
.y50_c00351{bottom:804.825000px;}
.y4e_c00351{bottom:806.325000px;}
.y51_c00351{bottom:806.970000px;}
.y4f_c00351{bottom:807.405000px;}
.y4b_c00351{bottom:823.905000px;}
.y49_c00351{bottom:824.745000px;}
.y4d_c00351{bottom:825.825000px;}
.y4a_c00351{bottom:826.905000px;}
.y4c_c00351{bottom:827.970000px;}
.y42_c00351{bottom:843.825000px;}
.y43_c00351{bottom:845.745000px;}
.y45_c00351{bottom:845.970000px;}
.y41_c00351{bottom:846.405000px;}
.y48_c00351{bottom:846.630000px;}
.y46_c00351{bottom:846.825000px;}
.y47_c00351{bottom:847.470000px;}
.y44_c00351{bottom:847.905000px;}
.y3c_c00351{bottom:863.745000px;}
.y3f_c00351{bottom:865.245000px;}
.y40_c00351{bottom:865.470000px;}
.y3e_c00351{bottom:865.905000px;}
.y3d_c00351{bottom:867.405000px;}
.y39_c00351{bottom:882.405000px;}
.y37_c00351{bottom:884.745000px;}
.y35_c00351{bottom:885.405000px;}
.y36_c00351{bottom:885.630000px;}
.y3b_c00351{bottom:886.470000px;}
.y3a_c00351{bottom:886.905000px;}
.y38_c00351{bottom:887.970000px;}
.y2f_c00351{bottom:902.745000px;}
.y30_c00351{bottom:904.245000px;}
.y32_c00351{bottom:905.130000px;}
.y34_c00351{bottom:905.325000px;}
.y31_c00351{bottom:906.405000px;}
.y33_c00351{bottom:907.470000px;}
.y2b_c00351{bottom:922.470000px;}
.y2e_c00351{bottom:922.680000px;}
.y2d_c00351{bottom:922.905000px;}
.y2a_c00351{bottom:923.745000px;}
.y27_c00351{bottom:924.405000px;}
.y2c_c00351{bottom:924.825000px;}
.y29_c00351{bottom:925.470000px;}
.y28_c00351{bottom:925.905000px;}
.y20_c00351{bottom:942.180000px;}
.y21_c00351{bottom:943.245000px;}
.y24_c00351{bottom:943.905000px;}
.y26_c00351{bottom:944.130000px;}
.y25_c00351{bottom:944.325000px;}
.y22_c00351{bottom:944.745000px;}
.y1f_c00351{bottom:945.405000px;}
.y23_c00351{bottom:946.905000px;}
.y1d_c00351{bottom:962.745000px;}
.y1a_c00351{bottom:963.825000px;}
.y1e_c00351{bottom:964.470000px;}
.y1b_c00351{bottom:964.905000px;}
.y1c_c00351{bottom:965.130000px;}
.y19_c00351{bottom:965.970000px;}
.y17_c00351{bottom:982.245000px;}
.y16_c00351{bottom:984.405000px;}
.y18_c00351{bottom:984.630000px;}
.y15_c00351{bottom:985.470000px;}
.y10_c00351{bottom:1001.745000px;}
.y14_c00351{bottom:1003.245000px;}
.yf_c00351{bottom:1003.905000px;}
.y13_c00351{bottom:1004.130000px;}
.y11_c00351{bottom:1004.970000px;}
.y12_c00351{bottom:1005.405000px;}
.yc_c00351{bottom:1021.245000px;}
.yd_c00351{bottom:1022.745000px;}
.y9_c00351{bottom:1023.405000px;}
.ye_c00351{bottom:1023.630000px;}
.ya_c00351{bottom:1024.470000px;}
.yb_c00351{bottom:1024.905000px;}
.y6_c00351{bottom:1040.745000px;}
.y7_c00351{bottom:1042.905000px;}
.y8_c00351{bottom:1043.130000px;}
.y5_c00351{bottom:1062.630000px;}
.y4_c00351{bottom:1062.825000px;}
.y3_c00351{bottom:1063.905000px;}
.y2_c00351{bottom:1100.970000px;}
.y1_c00351{bottom:1103.130000px;}
.h1_c00351{height:23.025234px;}
.h2_c00351{height:31.364502px;}
.h3_c00351{height:35.571035px;}
.h4_c00351{height:39.777568px;}
.h5_c00351{height:43.910303px;}
.h6_c00351{height:48.116836px;}
.h0_c00351{height:1335.000000px;}
.w0_c00351{width:880.500000px;}
.x0_c00351{left:0.000000px;}
.x103_c00351{left:151.080000px;}
.x2_c00351{left:153.000000px;}
.x1e_c00351{left:154.500000px;}
.x51_c00351{left:155.775000px;}
.x8d_c00351{left:166.500000px;}
.x10e_c00351{left:168.000000px;}
.x12_c00351{left:169.500000px;}
.x1f_c00351{left:171.000000px;}
.x49_c00351{left:174.420000px;}
.x6d_c00351{left:177.420000px;}
.xe7_c00351{left:180.000000px;}
.x34_c00351{left:181.500000px;}
.x52_c00351{left:184.080000px;}
.x3_c00351{left:186.000000px;}
.x2a_c00351{left:187.500000px;}
.x9b_c00351{left:188.580000px;}
.x10f_c00351{left:190.920000px;}
.x104_c00351{left:192.855000px;}
.xe2_c00351{left:195.000000px;}
.x8e_c00351{left:199.920000px;}
.x10_c00351{left:201.000000px;}
.x6e_c00351{left:205.500000px;}
.x41_c00351{left:206.580000px;}
.x87_c00351{left:208.500000px;}
.x66_c00351{left:211.080000px;}
.xe8_c00351{left:212.580000px;}
.x4_c00351{left:216.645000px;}
.x11_c00351{left:219.000000px;}
.x20_c00351{left:220.500000px;}
.x4a_c00351{left:221.580000px;}
.x7f_c00351{left:226.500000px;}
.x76_c00351{left:228.000000px;}
.x5c_c00351{left:229.920000px;}
.xc7_c00351{left:231.000000px;}
.xf4_c00351{left:232.920000px;}
.x35_c00351{left:234.420000px;}
.xb9_c00351{left:235.500000px;}
.xa4_c00351{left:237.000000px;}
.xd9_c00351{left:240.420000px;}
.x6f_c00351{left:243.420000px;}
.x10a_c00351{left:247.080000px;}
.x5_c00351{left:249.420000px;}
.xc1_c00351{left:250.500000px;}
.xf0_c00351{left:253.500000px;}
.x105_c00351{left:255.000000px;}
.x9c_c00351{left:256.080000px;}
.x4b_c00351{left:258.000000px;}
.xf5_c00351{left:259.500000px;}
.x36_c00351{left:261.000000px;}
.x53_c00351{left:262.080000px;}
.xa6_c00351{left:264.000000px;}
.x42_c00351{left:265.080000px;}
.xed_c00351{left:267.420000px;}
.xc8_c00351{left:268.500000px;}
.x8f_c00351{left:270.420000px;}
.x6_c00351{left:273.645000px;}
.x2b_c00351{left:275.580000px;}
.x94_c00351{left:277.080000px;}
.xf6_c00351{left:279.000000px;}
.x9d_c00351{left:280.500000px;}
.xd3_c00351{left:283.500000px;}
.x80_c00351{left:287.580000px;}
.x67_c00351{left:289.080000px;}
.xaf_c00351{left:291.000000px;}
.xc2_c00351{left:292.500000px;}
.x10b_c00351{left:294.000000px;}
.xa7_c00351{left:295.920000px;}
.x5d_c00351{left:297.000000px;}
.x95_c00351{left:298.920000px;}
.xf1_c00351{left:300.000000px;}
.x37_c00351{left:301.080000px;}
.x13_c00351{left:306.000000px;}
.xf9_c00351{left:307.080000px;}
.xe9_c00351{left:309.420000px;}
.x4c_c00351{left:310.500000px;}
.xda_c00351{left:311.580000px;}
.x54_c00351{left:313.920000px;}
.x21_c00351{left:315.000000px;}
.x77_c00351{left:317.580000px;}
.x70_c00351{left:318.645000px;}
.x7_c00351{left:320.580000px;}
.xee_c00351{left:322.500000px;}
.xff_c00351{left:324.000000px;}
.x2c_c00351{left:325.500000px;}
.x22_c00351{left:328.080000px;}
.x43_c00351{left:329.580000px;}
.xdb_c00351{left:331.500000px;}
.x5e_c00351{left:334.080000px;}
.xe3_c00351{left:336.420000px;}
.xc9_c00351{left:337.500000px;}
.x38_c00351{left:339.000000px;}
.xa5_c00351{left:340.080000px;}
.x9e_c00351{left:344.580000px;}
.xd4_c00351{left:346.500000px;}
.x107_c00351{left:348.420000px;}
.x81_c00351{left:351.000000px;}
.x14_c00351{left:352.080000px;}
.x55_c00351{left:354.000000px;}
.x106_c00351{left:355.500000px;}
.xca_c00351{left:357.420000px;}
.x8_c00351{left:360.000000px;}
.xb0_c00351{left:361.500000px;}
.xdd_c00351{left:363.000000px;}
.x78_c00351{left:364.080000px;}
.xcd_c00351{left:367.080000px;}
.xea_c00351{left:369.420000px;}
.x15_c00351{left:370.920000px;}
.x23_c00351{left:374.580000px;}
.xde_c00351{left:376.500000px;}
.xb1_c00351{left:379.080000px;}
.x5f_c00351{left:384.420000px;}
.xc3_c00351{left:385.500000px;}
.x88_c00351{left:386.580000px;}
.x2d_c00351{left:390.000000px;}
.x56_c00351{left:391.080000px;}
.x96_c00351{left:394.080000px;}
.x16_c00351{left:396.000000px;}
.x39_c00351{left:397.080000px;}
.x10c_c00351{left:399.420000px;}
.xa8_c00351{left:400.500000px;}
.x44_c00351{left:401.580000px;}
.x1_c00351{left:405.000000px;}
.xeb_c00351{left:406.920000px;}
.x89_c00351{left:409.500000px;}
.x97_c00351{left:412.080000px;}
.xba_c00351{left:414.000000px;}
.xdc_c00351{left:415.080000px;}
.x90_c00351{left:417.420000px;}
.x71_c00351{left:418.500000px;}
.x79_c00351{left:420.000000px;}
.xce_c00351{left:421.500000px;}
.x60_c00351{left:423.000000px;}
.x24_c00351{left:424.920000px;}
.x9_c00351{left:427.080000px;}
.x4d_c00351{left:430.080000px;}
.xfd_c00351{left:431.580000px;}
.x9f_c00351{left:433.920000px;}
.x2e_c00351{left:435.420000px;}
.x68_c00351{left:438.420000px;}
.x72_c00351{left:440.145000px;}
.x17_c00351{left:446.580000px;}
.x7a_c00351{left:448.500000px;}
.x91_c00351{left:449.580000px;}
.x61_c00351{left:451.500000px;}
.x110_c00351{left:456.420000px;}
.xc4_c00351{left:457.500000px;}
.x2f_c00351{left:459.420000px;}
.xa0_c00351{left:462.000000px;}
.x3a_c00351{left:464.580000px;}
.x25_c00351{left:466.500000px;}
.xef_c00351{left:469.500000px;}
.xfa_c00351{left:470.580000px;}
.xdf_c00351{left:475.920000px;}
.x18_c00351{left:477.000000px;}
.xf7_c00351{left:478.500000px;}
.xa_c00351{left:481.500000px;}
.x7b_c00351{left:484.500000px;}
.x82_c00351{left:485.580000px;}
.x57_c00351{left:487.080000px;}
.x98_c00351{left:488.145000px;}
.xa9_c00351{left:490.500000px;}
.xfb_c00351{left:492.420000px;}
.xb2_c00351{left:493.500000px;}
.x4e_c00351{left:496.080000px;}
.x69_c00351{left:498.000000px;}
.x8a_c00351{left:499.920000px;}
.x83_c00351{left:503.145000px;}
.xe0_c00351{left:504.420000px;}
.xec_c00351{left:505.500000px;}
.xcf_c00351{left:507.000000px;}
.xf2_c00351{left:509.580000px;}
.x3b_c00351{left:511.500000px;}
.xaa_c00351{left:512.580000px;}
.x100_c00351{left:514.920000px;}
.x92_c00351{left:518.580000px;}
.xbb_c00351{left:520.080000px;}
.x30_c00351{left:521.580000px;}
.xb_c00351{left:523.500000px;}
.x62_c00351{left:525.000000px;}
.xb3_c00351{left:526.500000px;}
.x99_c00351{left:528.000000px;}
.x45_c00351{left:529.920000px;}
.xd5_c00351{left:531.000000px;}
.x108_c00351{left:532.080000px;}
.xd0_c00351{left:535.500000px;}
.x10d_c00351{left:541.500000px;}
.x4f_c00351{left:542.580000px;}
.x26_c00351{left:544.500000px;}
.x3c_c00351{left:546.000000px;}
.xbc_c00351{left:550.500000px;}
.x19_c00351{left:552.000000px;}
.x63_c00351{left:553.920000px;}
.x58_c00351{left:555.420000px;}
.xb4_c00351{left:556.500000px;}
.xa1_c00351{left:557.580000px;}
.xab_c00351{left:559.500000px;}
.x3d_c00351{left:560.580000px;}
.x6a_c00351{left:563.580000px;}
.xd6_c00351{left:565.500000px;}
.x111_c00351{left:567.000000px;}
.xe6_c00351{left:568.500000px;}
.x8b_c00351{left:570.000000px;}
.x46_c00351{left:571.080000px;}
.xfe_c00351{left:572.580000px;}
.xf8_c00351{left:576.000000px;}
.xa2_c00351{left:577.080000px;}
.x31_c00351{left:579.000000px;}
.x7c_c00351{left:580.500000px;}
.x73_c00351{left:586.920000px;}
.x9a_c00351{left:589.500000px;}
.x59_c00351{left:591.645000px;}
.xd7_c00351{left:594.645000px;}
.xe1_c00351{left:598.080000px;}
.x1a_c00351{left:599.580000px;}
.x32_c00351{left:601.500000px;}
.x84_c00351{left:602.580000px;}
.x3e_c00351{left:604.500000px;}
.xc_c00351{left:607.080000px;}
.x6b_c00351{left:611.580000px;}
.x1b_c00351{left:616.920000px;}
.xbd_c00351{left:618.000000px;}
.xc5_c00351{left:619.080000px;}
.xf3_c00351{left:622.080000px;}
.x27_c00351{left:624.420000px;}
.x3f_c00351{left:625.500000px;}
.xb5_c00351{left:627.000000px;}
.x101_c00351{left:628.920000px;}
.x74_c00351{left:630.000000px;}
.x50_c00351{left:632.580000px;}
.xcb_c00351{left:634.500000px;}
.x8c_c00351{left:637.080000px;}
.xac_c00351{left:638.580000px;}
.x47_c00351{left:640.920000px;}
.x64_c00351{left:642.000000px;}
.x1c_c00351{left:643.500000px;}
.xb6_c00351{left:645.420000px;}
.x5a_c00351{left:646.500000px;}
.xe4_c00351{left:648.000000px;}
.xbe_c00351{left:649.500000px;}
.x40_c00351{left:652.080000px;}
.xd8_c00351{left:653.580000px;}
.xd_c00351{left:655.500000px;}
.x102_c00351{left:657.420000px;}
.xad_c00351{left:658.500000px;}
.xc6_c00351{left:659.580000px;}
.x109_c00351{left:661.080000px;}
.x93_c00351{left:663.420000px;}
.x28_c00351{left:666.000000px;}
.x112_c00351{left:667.500000px;}
.x65_c00351{left:669.000000px;}
.x85_c00351{left:670.500000px;}
.xd1_c00351{left:671.580000px;}
.x7d_c00351{left:673.500000px;}
.x6c_c00351{left:675.000000px;}
.xa3_c00351{left:678.420000px;}
.xae_c00351{left:684.000000px;}
.xb7_c00351{left:685.500000px;}
.x33_c00351{left:688.080000px;}
.xd2_c00351{left:690.000000px;}
.x86_c00351{left:691.500000px;}
.xbf_c00351{left:693.000000px;}
.x7e_c00351{left:694.500000px;}
.xe5_c00351{left:696.000000px;}
.xe_c00351{left:697.500000px;}
.x1d_c00351{left:699.420000px;}
.x5b_c00351{left:703.500000px;}
.xb8_c00351{left:705.420000px;}
.x48_c00351{left:706.920000px;}
.xcc_c00351{left:710.580000px;}
.xc0_c00351{left:712.500000px;}
.xf_c00351{left:714.000000px;}
.x29_c00351{left:717.000000px;}
.xfc_c00351{left:718.500000px;}
.x75_c00351{left:723.000000px;}
@media print{
.v0_c00351{vertical-align:0.000000pt;}
.ls0_c00351{letter-spacing:0.000000pt;}
.ws0_c00351{word-spacing:-2.521029pt;}
.ws1_c00351{word-spacing:0.000000pt;}
.fs0_c00351{font-size:16.640000pt;}
.fs1_c00351{font-size:22.666667pt;}
.fs2_c00351{font-size:25.706667pt;}
.fs3_c00351{font-size:28.746667pt;}
.fs4_c00351{font-size:31.733333pt;}
.fs5_c00351{font-size:34.773333pt;}
.y0_c00351{bottom:0.000000pt;}
.yde_c00351{bottom:227.026667pt;}
.ydb_c00351{bottom:243.226667pt;}
.yda_c00351{bottom:244.360000pt;}
.ydc_c00351{bottom:244.560000pt;}
.ydd_c00351{bottom:245.306667pt;}
.yd3_c00351{bottom:259.400000pt;}
.yd4_c00351{bottom:259.773333pt;}
.yd8_c00351{bottom:261.106667pt;}
.yd5_c00351{bottom:261.693333pt;}
.yd7_c00351{bottom:261.893333pt;}
.yd9_c00351{bottom:262.640000pt;}
.yd6_c00351{bottom:263.026667pt;}
.ycf_c00351{bottom:277.106667pt;}
.yd1_c00351{bottom:278.440000pt;}
.yce_c00351{bottom:279.026667pt;}
.yd0_c00351{bottom:279.226667pt;}
.yd2_c00351{bottom:280.360000pt;}
.yc9_c00351{bottom:295.400000pt;}
.ycd_c00351{bottom:295.773333pt;}
.ycb_c00351{bottom:296.560000pt;}
.yc8_c00351{bottom:296.733333pt;}
.yca_c00351{bottom:297.306667pt;}
.ycc_c00351{bottom:297.693333pt;}
.yc4_c00351{bottom:313.106667pt;}
.yc7_c00351{bottom:314.640000pt;}
.yc5_c00351{bottom:315.026667pt;}
.yc6_c00351{bottom:315.973333pt;}
.yc3_c00351{bottom:329.306667pt;}
.ybf_c00351{bottom:330.066667pt;}
.yc1_c00351{bottom:330.440000pt;}
.ybe_c00351{bottom:331.026667pt;}
.yc0_c00351{bottom:332.360000pt;}
.yc2_c00351{bottom:333.306667pt;}
.yb8_c00351{bottom:347.773333pt;}
.ybc_c00351{bottom:348.560000pt;}
.yba_c00351{bottom:348.733333pt;}
.ybb_c00351{bottom:349.306667pt;}
.yb9_c00351{bottom:349.693333pt;}
.ybd_c00351{bottom:350.640000pt;}
.yb5_c00351{bottom:365.106667pt;}
.yb4_c00351{bottom:366.066667pt;}
.yb6_c00351{bottom:367.026667pt;}
.yb7_c00351{bottom:367.226667pt;}
.yb3_c00351{bottom:381.693333pt;}
.yb0_c00351{bottom:382.440000pt;}
.yb1_c00351{bottom:384.360000pt;}
.yb2_c00351{bottom:384.560000pt;}
.yae_c00351{bottom:399.773333pt;}
.yac_c00351{bottom:401.693333pt;}
.yad_c00351{bottom:401.893333pt;}
.yaf_c00351{bottom:402.640000pt;}
.yaa_c00351{bottom:418.440000pt;}
.yab_c00351{bottom:419.226667pt;}
.ya9_c00351{bottom:419.973333pt;}
.ya8_c00351{bottom:420.360000pt;}
.ya5_c00351{bottom:435.773333pt;}
.ya6_c00351{bottom:436.560000pt;}
.ya7_c00351{bottom:437.306667pt;}
.ya4_c00351{bottom:437.693333pt;}
.ya2_c00351{bottom:453.106667pt;}
.ya3_c00351{bottom:454.640000pt;}
.ya0_c00351{bottom:455.026667pt;}
.ya1_c00351{bottom:455.226667pt;}
.y9f_c00351{bottom:455.973333pt;}
.y9d_c00351{bottom:469.693333pt;}
.y9a_c00351{bottom:470.440000pt;}
.y9e_c00351{bottom:471.973333pt;}
.y9b_c00351{bottom:472.360000pt;}
.y9c_c00351{bottom:473.306667pt;}
.y98_c00351{bottom:487.773333pt;}
.y99_c00351{bottom:488.733333pt;}
.y96_c00351{bottom:489.306667pt;}
.y97_c00351{bottom:489.693333pt;}
.y93_c00351{bottom:504.733333pt;}
.y91_c00351{bottom:505.106667pt;}
.y94_c00351{bottom:505.493333pt;}
.y95_c00351{bottom:506.440000pt;}
.y90_c00351{bottom:507.026667pt;}
.y92_c00351{bottom:507.226667pt;}
.y8f_c00351{bottom:508.360000pt;}
.y8e_c00351{bottom:522.640000pt;}
.y8b_c00351{bottom:523.773333pt;}
.y8c_c00351{bottom:524.560000pt;}
.y8d_c00351{bottom:525.306667pt;}
.y8a_c00351{bottom:525.693333pt;}
.y88_c00351{bottom:539.973333pt;}
.y89_c00351{bottom:540.360000pt;}
.y84_c00351{bottom:540.733333pt;}
.y86_c00351{bottom:541.106667pt;}
.y87_c00351{bottom:541.893333pt;}
.y85_c00351{bottom:543.026667pt;}
.y83_c00351{bottom:557.693333pt;}
.y7e_c00351{bottom:558.440000pt;}
.y81_c00351{bottom:559.226667pt;}
.y7f_c00351{bottom:559.400000pt;}
.y80_c00351{bottom:559.973333pt;}
.y82_c00351{bottom:560.360000pt;}
.y78_c00351{bottom:575.773333pt;}
.y79_c00351{bottom:576.560000pt;}
.y7d_c00351{bottom:577.306667pt;}
.y7a_c00351{bottom:577.693333pt;}
.y7b_c00351{bottom:577.893333pt;}
.y7c_c00351{bottom:578.640000pt;}
.y77_c00351{bottom:592.360000pt;}
.y73_c00351{bottom:593.106667pt;}
.y75_c00351{bottom:593.493333pt;}
.y71_c00351{bottom:594.066667pt;}
.y74_c00351{bottom:594.640000pt;}
.y72_c00351{bottom:595.026667pt;}
.y76_c00351{bottom:595.226667pt;}
.y70_c00351{bottom:609.693333pt;}
.y6e_c00351{bottom:610.440000pt;}
.y6f_c00351{bottom:610.640000pt;}
.y6c_c00351{bottom:612.360000pt;}
.y6d_c00351{bottom:612.560000pt;}
.y6a_c00351{bottom:627.773333pt;}
.y6b_c00351{bottom:628.733333pt;}
.y68_c00351{bottom:629.693333pt;}
.y69_c00351{bottom:629.893333pt;}
.y63_c00351{bottom:645.106667pt;}
.y64_c00351{bottom:646.066667pt;}
.y65_c00351{bottom:646.440000pt;}
.y62_c00351{bottom:647.026667pt;}
.y67_c00351{bottom:647.973333pt;}
.y66_c00351{bottom:648.360000pt;}
.y5c_c00351{bottom:661.693333pt;}
.y60_c00351{bottom:663.773333pt;}
.y5e_c00351{bottom:664.360000pt;}
.y61_c00351{bottom:664.560000pt;}
.y5d_c00351{bottom:665.306667pt;}
.y5f_c00351{bottom:665.693333pt;}
.y5a_c00351{bottom:681.106667pt;}
.y59_c00351{bottom:681.893333pt;}
.y58_c00351{bottom:682.640000pt;}
.y5b_c00351{bottom:683.026667pt;}
.y54_c00351{bottom:697.693333pt;}
.y52_c00351{bottom:698.440000pt;}
.y57_c00351{bottom:699.400000pt;}
.y53_c00351{bottom:700.360000pt;}
.y56_c00351{bottom:700.560000pt;}
.y55_c00351{bottom:701.306667pt;}
.y50_c00351{bottom:715.400000pt;}
.y4e_c00351{bottom:716.733333pt;}
.y51_c00351{bottom:717.306667pt;}
.y4f_c00351{bottom:717.693333pt;}
.y4b_c00351{bottom:732.360000pt;}
.y49_c00351{bottom:733.106667pt;}
.y4d_c00351{bottom:734.066667pt;}
.y4a_c00351{bottom:735.026667pt;}
.y4c_c00351{bottom:735.973333pt;}
.y42_c00351{bottom:750.066667pt;}
.y43_c00351{bottom:751.773333pt;}
.y45_c00351{bottom:751.973333pt;}
.y41_c00351{bottom:752.360000pt;}
.y48_c00351{bottom:752.560000pt;}
.y46_c00351{bottom:752.733333pt;}
.y47_c00351{bottom:753.306667pt;}
.y44_c00351{bottom:753.693333pt;}
.y3c_c00351{bottom:767.773333pt;}
.y3f_c00351{bottom:769.106667pt;}
.y40_c00351{bottom:769.306667pt;}
.y3e_c00351{bottom:769.693333pt;}
.y3d_c00351{bottom:771.026667pt;}
.y39_c00351{bottom:784.360000pt;}
.y37_c00351{bottom:786.440000pt;}
.y35_c00351{bottom:787.026667pt;}
.y36_c00351{bottom:787.226667pt;}
.y3b_c00351{bottom:787.973333pt;}
.y3a_c00351{bottom:788.360000pt;}
.y38_c00351{bottom:789.306667pt;}
.y2f_c00351{bottom:802.440000pt;}
.y30_c00351{bottom:803.773333pt;}
.y32_c00351{bottom:804.560000pt;}
.y34_c00351{bottom:804.733333pt;}
.y31_c00351{bottom:805.693333pt;}
.y33_c00351{bottom:806.640000pt;}
.y2b_c00351{bottom:819.973333pt;}
.y2e_c00351{bottom:820.160000pt;}
.y2d_c00351{bottom:820.360000pt;}
.y2a_c00351{bottom:821.106667pt;}
.y27_c00351{bottom:821.693333pt;}
.y2c_c00351{bottom:822.066667pt;}
.y29_c00351{bottom:822.640000pt;}
.y28_c00351{bottom:823.026667pt;}
.y20_c00351{bottom:837.493333pt;}
.y21_c00351{bottom:838.440000pt;}
.y24_c00351{bottom:839.026667pt;}
.y26_c00351{bottom:839.226667pt;}
.y25_c00351{bottom:839.400000pt;}
.y22_c00351{bottom:839.773333pt;}
.y1f_c00351{bottom:840.360000pt;}
.y23_c00351{bottom:841.693333pt;}
.y1d_c00351{bottom:855.773333pt;}
.y1a_c00351{bottom:856.733333pt;}
.y1e_c00351{bottom:857.306667pt;}
.y1b_c00351{bottom:857.693333pt;}
.y1c_c00351{bottom:857.893333pt;}
.y19_c00351{bottom:858.640000pt;}
.y17_c00351{bottom:873.106667pt;}
.y16_c00351{bottom:875.026667pt;}
.y18_c00351{bottom:875.226667pt;}
.y15_c00351{bottom:875.973333pt;}
.y10_c00351{bottom:890.440000pt;}
.y14_c00351{bottom:891.773333pt;}
.yf_c00351{bottom:892.360000pt;}
.y13_c00351{bottom:892.560000pt;}
.y11_c00351{bottom:893.306667pt;}
.y12_c00351{bottom:893.693333pt;}
.yc_c00351{bottom:907.773333pt;}
.yd_c00351{bottom:909.106667pt;}
.y9_c00351{bottom:909.693333pt;}
.ye_c00351{bottom:909.893333pt;}
.ya_c00351{bottom:910.640000pt;}
.yb_c00351{bottom:911.026667pt;}
.y6_c00351{bottom:925.106667pt;}
.y7_c00351{bottom:927.026667pt;}
.y8_c00351{bottom:927.226667pt;}
.y5_c00351{bottom:944.560000pt;}
.y4_c00351{bottom:944.733333pt;}
.y3_c00351{bottom:945.693333pt;}
.y2_c00351{bottom:978.640000pt;}
.y1_c00351{bottom:980.560000pt;}
.h1_c00351{height:20.466875pt;}
.h2_c00351{height:27.879557pt;}
.h3_c00351{height:31.618698pt;}
.h4_c00351{height:35.357839pt;}
.h5_c00351{height:39.031380pt;}
.h6_c00351{height:42.770521pt;}
.h0_c00351{height:1186.666667pt;}
.w0_c00351{width:782.666667pt;}
.x0_c00351{left:0.000000pt;}
.x103_c00351{left:134.293333pt;}
.x2_c00351{left:136.000000pt;}
.x1e_c00351{left:137.333333pt;}
.x51_c00351{left:138.466667pt;}
.x8d_c00351{left:148.000000pt;}
.x10e_c00351{left:149.333333pt;}
.x12_c00351{left:150.666667pt;}
.x1f_c00351{left:152.000000pt;}
.x49_c00351{left:155.040000pt;}
.x6d_c00351{left:157.706667pt;}
.xe7_c00351{left:160.000000pt;}
.x34_c00351{left:161.333333pt;}
.x52_c00351{left:163.626667pt;}
.x3_c00351{left:165.333333pt;}
.x2a_c00351{left:166.666667pt;}
.x9b_c00351{left:167.626667pt;}
.x10f_c00351{left:169.706667pt;}
.x104_c00351{left:171.426667pt;}
.xe2_c00351{left:173.333333pt;}
.x8e_c00351{left:177.706667pt;}
.x10_c00351{left:178.666667pt;}
.x6e_c00351{left:182.666667pt;}
.x41_c00351{left:183.626667pt;}
.x87_c00351{left:185.333333pt;}
.x66_c00351{left:187.626667pt;}
.xe8_c00351{left:188.960000pt;}
.x4_c00351{left:192.573333pt;}
.x11_c00351{left:194.666667pt;}
.x20_c00351{left:196.000000pt;}
.x4a_c00351{left:196.960000pt;}
.x7f_c00351{left:201.333333pt;}
.x76_c00351{left:202.666667pt;}
.x5c_c00351{left:204.373333pt;}
.xc7_c00351{left:205.333333pt;}
.xf4_c00351{left:207.040000pt;}
.x35_c00351{left:208.373333pt;}
.xb9_c00351{left:209.333333pt;}
.xa4_c00351{left:210.666667pt;}
.xd9_c00351{left:213.706667pt;}
.x6f_c00351{left:216.373333pt;}
.x10a_c00351{left:219.626667pt;}
.x5_c00351{left:221.706667pt;}
.xc1_c00351{left:222.666667pt;}
.xf0_c00351{left:225.333333pt;}
.x105_c00351{left:226.666667pt;}
.x9c_c00351{left:227.626667pt;}
.x4b_c00351{left:229.333333pt;}
.xf5_c00351{left:230.666667pt;}
.x36_c00351{left:232.000000pt;}
.x53_c00351{left:232.960000pt;}
.xa6_c00351{left:234.666667pt;}
.x42_c00351{left:235.626667pt;}
.xed_c00351{left:237.706667pt;}
.xc8_c00351{left:238.666667pt;}
.x8f_c00351{left:240.373333pt;}
.x6_c00351{left:243.240000pt;}
.x2b_c00351{left:244.960000pt;}
.x94_c00351{left:246.293333pt;}
.xf6_c00351{left:248.000000pt;}
.x9d_c00351{left:249.333333pt;}
.xd3_c00351{left:252.000000pt;}
.x80_c00351{left:255.626667pt;}
.x67_c00351{left:256.960000pt;}
.xaf_c00351{left:258.666667pt;}
.xc2_c00351{left:260.000000pt;}
.x10b_c00351{left:261.333333pt;}
.xa7_c00351{left:263.040000pt;}
.x5d_c00351{left:264.000000pt;}
.x95_c00351{left:265.706667pt;}
.xf1_c00351{left:266.666667pt;}
.x37_c00351{left:267.626667pt;}
.x13_c00351{left:272.000000pt;}
.xf9_c00351{left:272.960000pt;}
.xe9_c00351{left:275.040000pt;}
.x4c_c00351{left:276.000000pt;}
.xda_c00351{left:276.960000pt;}
.x54_c00351{left:279.040000pt;}
.x21_c00351{left:280.000000pt;}
.x77_c00351{left:282.293333pt;}
.x70_c00351{left:283.240000pt;}
.x7_c00351{left:284.960000pt;}
.xee_c00351{left:286.666667pt;}
.xff_c00351{left:288.000000pt;}
.x2c_c00351{left:289.333333pt;}
.x22_c00351{left:291.626667pt;}
.x43_c00351{left:292.960000pt;}
.xdb_c00351{left:294.666667pt;}
.x5e_c00351{left:296.960000pt;}
.xe3_c00351{left:299.040000pt;}
.xc9_c00351{left:300.000000pt;}
.x38_c00351{left:301.333333pt;}
.xa5_c00351{left:302.293333pt;}
.x9e_c00351{left:306.293333pt;}
.xd4_c00351{left:308.000000pt;}
.x107_c00351{left:309.706667pt;}
.x81_c00351{left:312.000000pt;}
.x14_c00351{left:312.960000pt;}
.x55_c00351{left:314.666667pt;}
.x106_c00351{left:316.000000pt;}
.xca_c00351{left:317.706667pt;}
.x8_c00351{left:320.000000pt;}
.xb0_c00351{left:321.333333pt;}
.xdd_c00351{left:322.666667pt;}
.x78_c00351{left:323.626667pt;}
.xcd_c00351{left:326.293333pt;}
.xea_c00351{left:328.373333pt;}
.x15_c00351{left:329.706667pt;}
.x23_c00351{left:332.960000pt;}
.xde_c00351{left:334.666667pt;}
.xb1_c00351{left:336.960000pt;}
.x5f_c00351{left:341.706667pt;}
.xc3_c00351{left:342.666667pt;}
.x88_c00351{left:343.626667pt;}
.x2d_c00351{left:346.666667pt;}
.x56_c00351{left:347.626667pt;}
.x96_c00351{left:350.293333pt;}
.x16_c00351{left:352.000000pt;}
.x39_c00351{left:352.960000pt;}
.x10c_c00351{left:355.040000pt;}
.xa8_c00351{left:356.000000pt;}
.x44_c00351{left:356.960000pt;}
.x1_c00351{left:360.000000pt;}
.xeb_c00351{left:361.706667pt;}
.x89_c00351{left:364.000000pt;}
.x97_c00351{left:366.293333pt;}
.xba_c00351{left:368.000000pt;}
.xdc_c00351{left:368.960000pt;}
.x90_c00351{left:371.040000pt;}
.x71_c00351{left:372.000000pt;}
.x79_c00351{left:373.333333pt;}
.xce_c00351{left:374.666667pt;}
.x60_c00351{left:376.000000pt;}
.x24_c00351{left:377.706667pt;}
.x9_c00351{left:379.626667pt;}
.x4d_c00351{left:382.293333pt;}
.xfd_c00351{left:383.626667pt;}
.x9f_c00351{left:385.706667pt;}
.x2e_c00351{left:387.040000pt;}
.x68_c00351{left:389.706667pt;}
.x72_c00351{left:391.240000pt;}
.x17_c00351{left:396.960000pt;}
.x7a_c00351{left:398.666667pt;}
.x91_c00351{left:399.626667pt;}
.x61_c00351{left:401.333333pt;}
.x110_c00351{left:405.706667pt;}
.xc4_c00351{left:406.666667pt;}
.x2f_c00351{left:408.373333pt;}
.xa0_c00351{left:410.666667pt;}
.x3a_c00351{left:412.960000pt;}
.x25_c00351{left:414.666667pt;}
.xef_c00351{left:417.333333pt;}
.xfa_c00351{left:418.293333pt;}
.xdf_c00351{left:423.040000pt;}
.x18_c00351{left:424.000000pt;}
.xf7_c00351{left:425.333333pt;}
.xa_c00351{left:428.000000pt;}
.x7b_c00351{left:430.666667pt;}
.x82_c00351{left:431.626667pt;}
.x57_c00351{left:432.960000pt;}
.x98_c00351{left:433.906667pt;}
.xa9_c00351{left:436.000000pt;}
.xfb_c00351{left:437.706667pt;}
.xb2_c00351{left:438.666667pt;}
.x4e_c00351{left:440.960000pt;}
.x69_c00351{left:442.666667pt;}
.x8a_c00351{left:444.373333pt;}
.x83_c00351{left:447.240000pt;}
.xe0_c00351{left:448.373333pt;}
.xec_c00351{left:449.333333pt;}
.xcf_c00351{left:450.666667pt;}
.xf2_c00351{left:452.960000pt;}
.x3b_c00351{left:454.666667pt;}
.xaa_c00351{left:455.626667pt;}
.x100_c00351{left:457.706667pt;}
.x92_c00351{left:460.960000pt;}
.xbb_c00351{left:462.293333pt;}
.x30_c00351{left:463.626667pt;}
.xb_c00351{left:465.333333pt;}
.x62_c00351{left:466.666667pt;}
.xb3_c00351{left:468.000000pt;}
.x99_c00351{left:469.333333pt;}
.x45_c00351{left:471.040000pt;}
.xd5_c00351{left:472.000000pt;}
.x108_c00351{left:472.960000pt;}
.xd0_c00351{left:476.000000pt;}
.x10d_c00351{left:481.333333pt;}
.x4f_c00351{left:482.293333pt;}
.x26_c00351{left:484.000000pt;}
.x3c_c00351{left:485.333333pt;}
.xbc_c00351{left:489.333333pt;}
.x19_c00351{left:490.666667pt;}
.x63_c00351{left:492.373333pt;}
.x58_c00351{left:493.706667pt;}
.xb4_c00351{left:494.666667pt;}
.xa1_c00351{left:495.626667pt;}
.xab_c00351{left:497.333333pt;}
.x3d_c00351{left:498.293333pt;}
.x6a_c00351{left:500.960000pt;}
.xd6_c00351{left:502.666667pt;}
.x111_c00351{left:504.000000pt;}
.xe6_c00351{left:505.333333pt;}
.x8b_c00351{left:506.666667pt;}
.x46_c00351{left:507.626667pt;}
.xfe_c00351{left:508.960000pt;}
.xf8_c00351{left:512.000000pt;}
.xa2_c00351{left:512.960000pt;}
.x31_c00351{left:514.666667pt;}
.x7c_c00351{left:516.000000pt;}
.x73_c00351{left:521.706667pt;}
.x9a_c00351{left:524.000000pt;}
.x59_c00351{left:525.906667pt;}
.xd7_c00351{left:528.573333pt;}
.xe1_c00351{left:531.626667pt;}
.x1a_c00351{left:532.960000pt;}
.x32_c00351{left:534.666667pt;}
.x84_c00351{left:535.626667pt;}
.x3e_c00351{left:537.333333pt;}
.xc_c00351{left:539.626667pt;}
.x6b_c00351{left:543.626667pt;}
.x1b_c00351{left:548.373333pt;}
.xbd_c00351{left:549.333333pt;}
.xc5_c00351{left:550.293333pt;}
.xf3_c00351{left:552.960000pt;}
.x27_c00351{left:555.040000pt;}
.x3f_c00351{left:556.000000pt;}
.xb5_c00351{left:557.333333pt;}
.x101_c00351{left:559.040000pt;}
.x74_c00351{left:560.000000pt;}
.x50_c00351{left:562.293333pt;}
.xcb_c00351{left:564.000000pt;}
.x8c_c00351{left:566.293333pt;}
.xac_c00351{left:567.626667pt;}
.x47_c00351{left:569.706667pt;}
.x64_c00351{left:570.666667pt;}
.x1c_c00351{left:572.000000pt;}
.xb6_c00351{left:573.706667pt;}
.x5a_c00351{left:574.666667pt;}
.xe4_c00351{left:576.000000pt;}
.xbe_c00351{left:577.333333pt;}
.x40_c00351{left:579.626667pt;}
.xd8_c00351{left:580.960000pt;}
.xd_c00351{left:582.666667pt;}
.x102_c00351{left:584.373333pt;}
.xad_c00351{left:585.333333pt;}
.xc6_c00351{left:586.293333pt;}
.x109_c00351{left:587.626667pt;}
.x93_c00351{left:589.706667pt;}
.x28_c00351{left:592.000000pt;}
.x112_c00351{left:593.333333pt;}
.x65_c00351{left:594.666667pt;}
.x85_c00351{left:596.000000pt;}
.xd1_c00351{left:596.960000pt;}
.x7d_c00351{left:598.666667pt;}
.x6c_c00351{left:600.000000pt;}
.xa3_c00351{left:603.040000pt;}
.xae_c00351{left:608.000000pt;}
.xb7_c00351{left:609.333333pt;}
.x33_c00351{left:611.626667pt;}
.xd2_c00351{left:613.333333pt;}
.x86_c00351{left:614.666667pt;}
.xbf_c00351{left:616.000000pt;}
.x7e_c00351{left:617.333333pt;}
.xe5_c00351{left:618.666667pt;}
.xe_c00351{left:620.000000pt;}
.x1d_c00351{left:621.706667pt;}
.x5b_c00351{left:625.333333pt;}
.xb8_c00351{left:627.040000pt;}
.x48_c00351{left:628.373333pt;}
.xcc_c00351{left:631.626667pt;}
.xc0_c00351{left:633.333333pt;}
.xf_c00351{left:634.666667pt;}
.x29_c00351{left:637.333333pt;}
.xfc_c00351{left:638.666667pt;}
.x75_c00351{left:642.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_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_40867e8691857338357188b8.woff2')format("woff");}.ff1_c00352{font-family:ff1_c00352;line-height:1.688965;font-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_c00352{transform:matrix(0.314417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314417,0.000000,0.000000,0.250000,0,0);}
.m103_c00352{transform:matrix(0.328571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328571,0.000000,0.000000,0.250000,0,0);}
.m7d_c00352{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.m5a_c00352{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m3f_c00352{transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);}
.m6_c00352{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m71_c00352{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m26_c00352{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.md2_c00352{transform:matrix(0.372449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372449,0.000000,0.000000,0.250000,0,0);}
.md8_c00352{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m106_c00352{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00352{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mee_c00352{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m4c_c00352{transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);}
.mc5_c00352{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m4_c00352{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m25_c00352{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.me9_c00352{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m107_c00352{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m48_c00352{transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);}
.m9e_c00352{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m3b_c00352{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m8f_c00352{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m4f_c00352{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.mf7_c00352{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m43_c00352{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m50_c00352{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);}
.mfd_c00352{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mdb_c00352{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.m44_c00352{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mb1_c00352{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.mac_c00352{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m97_c00352{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mb6_c00352{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.md3_c00352{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.m39_c00352{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m28_c00352{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.mab_c00352{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m5c_c00352{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.mfc_c00352{transform:matrix(0.410788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410788,0.000000,0.000000,0.250000,0,0);}
.m4b_c00352{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m3c_c00352{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m5_c00352{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m37_c00352{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m7c_c00352{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mb_c00352{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m109_c00352{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mf_c00352{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.me7_c00352{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m75_c00352{transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);}
.maf_c00352{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.me8_c00352{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.md7_c00352{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m1d_c00352{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m46_c00352{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mbf_c00352{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m70_c00352{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m2f_c00352{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mb4_c00352{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.me3_c00352{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m31_c00352{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m5d_c00352{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m83_c00352{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.ma9_c00352{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.mf3_c00352{transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);}
.m8a_c00352{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m14_c00352{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.maa_c00352{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m110_c00352{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m5b_c00352{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.mf0_c00352{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m1e_c00352{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m117_c00352{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.ma3_c00352{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.me2_c00352{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.mae_c00352{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.me1_c00352{transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);}
.m10d_c00352{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m76_c00352{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m9f_c00352{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.mc2_c00352{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.md_c00352{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m55_c00352{transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);}
.med_c00352{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m3a_c00352{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m35_c00352{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.mbd_c00352{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.mf1_c00352{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m111_c00352{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.me_c00352{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.ma2_c00352{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m54_c00352{transform:matrix(0.451681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451681,0.000000,0.000000,0.250000,0,0);}
.m113_c00352{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m67_c00352{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.m11a_c00352{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m108_c00352{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m100_c00352{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.ma7_c00352{transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);}
.ma4_c00352{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m20_c00352{transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);}
.mf2_c00352{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m23_c00352{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m4d_c00352{transform:matrix(0.456865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456865,0.000000,0.000000,0.250000,0,0);}
.m4e_c00352{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mb5_c00352{transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);}
.me0_c00352{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m15_c00352{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m93_c00352{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.meb_c00352{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m3_c00352{transform:matrix(0.463866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463866,0.000000,0.000000,0.250000,0,0);}
.me4_c00352{transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);}
.m11_c00352{transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);}
.m13_c00352{transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);}
.mde_c00352{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.mff_c00352{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m8c_c00352{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m102_c00352{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.md0_c00352{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m53_c00352{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.m51_c00352{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.m8d_c00352{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mca_c00352{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m41_c00352{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m94_c00352{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m2d_c00352{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m3e_c00352{transform:matrix(0.481092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481092,0.000000,0.000000,0.250000,0,0);}
.ma_c00352{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m95_c00352{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mc_c00352{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mdf_c00352{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m10c_c00352{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m116_c00352{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m2_c00352{transform:matrix(0.488655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488655,0.000000,0.000000,0.250000,0,0);}
.m45_c00352{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.m1_c00352{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.md4_c00352{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m99_c00352{transform:matrix(0.491651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491651,0.000000,0.000000,0.250000,0,0);}
.m2a_c00352{transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);}
.m42_c00352{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mf5_c00352{transform:matrix(0.497217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497217,0.000000,0.000000,0.250000,0,0);}
.m8_c00352{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_c00352{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mb8_c00352{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m63_c00352{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m96_c00352{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.mbb_c00352{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mc1_c00352{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m72_c00352{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m32_c00352{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m66_c00352{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m115_c00352{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m2b_c00352{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m17_c00352{transform:matrix(0.518235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518235,0.000000,0.000000,0.250000,0,0);}
.mbe_c00352{transform:matrix(0.519481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519481,0.000000,0.000000,0.250000,0,0);}
.m91_c00352{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m38_c00352{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mdc_c00352{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m5e_c00352{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m7a_c00352{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m104_c00352{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m6e_c00352{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m9b_c00352{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m88_c00352{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m6c_c00352{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m16_c00352{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.mb2_c00352{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m62_c00352{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m79_c00352{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m30_c00352{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.ma8_c00352{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m86_c00352{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m33_c00352{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m84_c00352{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m57_c00352{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.ma5_c00352{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m69_c00352{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m78_c00352{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.me5_c00352{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m36_c00352{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mcb_c00352{transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);}
.m22_c00352{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m64_c00352{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m2c_c00352{transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);}
.m6a_c00352{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m10_c00352{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m3d_c00352{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mf8_c00352{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m29_c00352{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m5f_c00352{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m85_c00352{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mad_c00352{transform:matrix(0.546474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546474,0.000000,0.000000,0.250000,0,0);}
.m9_c00352{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.mb9_c00352{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m82_c00352{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m24_c00352{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.me6_c00352{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);}
.m7f_c00352{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m73_c00352{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m1c_c00352{transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);}
.mb0_c00352{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m21_c00352{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.mda_c00352{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m77_c00352{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mfb_c00352{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m6f_c00352{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m81_c00352{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m87_c00352{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mfe_c00352{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m68_c00352{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.md1_c00352{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m80_c00352{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mf9_c00352{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.m10b_c00352{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m18_c00352{transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);}
.m2e_c00352{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m56_c00352{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m59_c00352{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m40_c00352{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m90_c00352{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m9c_c00352{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mf6_c00352{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m92_c00352{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m74_c00352{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.m112_c00352{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m9d_c00352{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.ma6_c00352{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mc7_c00352{transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);}
.md9_c00352{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m65_c00352{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mea_c00352{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.mef_c00352{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m9a_c00352{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.ma1_c00352{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m6b_c00352{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m58_c00352{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.m61_c00352{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.mc4_c00352{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m89_c00352{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m0_c00352{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m60_c00352{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m10a_c00352{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mdd_c00352{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m7_c00352{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);}
.m10e_c00352{transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);}
.mcf_c00352{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.mba_c00352{transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);}
.m101_c00352{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m12_c00352{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.mcc_c00352{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.mfa_c00352{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.mc8_c00352{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m1b_c00352{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.mcd_c00352{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m6d_c00352{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m27_c00352{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.md6_c00352{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m1a_c00352{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m8e_c00352{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.mc9_c00352{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mc0_c00352{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.mc3_c00352{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.ma0_c00352{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.m19_c00352{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m7e_c00352{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mce_c00352{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);}
.m114_c00352{transform:matrix(0.710588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710588,0.000000,0.000000,0.250000,0,0);}
.m47_c00352{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.m119_c00352{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m118_c00352{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m34_c00352{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m7b_c00352{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m49_c00352{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mb7_c00352{transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);}
.m98_c00352{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mbc_c00352{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m105_c00352{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mf4_c00352{transform:matrix(0.768429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.768429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.768429,0.000000,0.000000,0.250000,0,0);}
.mb3_c00352{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m10f_c00352{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m8b_c00352{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.md5_c00352{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m4a_c00352{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m1f_c00352{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00352{vertical-align:-18.000000px;}
.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;}
}
.ws1_c00352{word-spacing:-3.296349px;}
.ws3_c00352{word-spacing:-2.704589px;}
.ws4_c00352{word-spacing:0.000000px;}
.ws2_c00352{word-spacing:0.989938px;}
.ws0_c00352{word-spacing:8.605770px;}
.fc0_c00352{color:transparent;}
.fs5_c00352{font-size:3.420000px;}
.fs8_c00352{font-size:13.620000px;}
.fs6_c00352{font-size:18.720000px;}
.fs0_c00352{font-size:20.400000px;}
.fs3_c00352{font-size:25.500000px;}
.fs1_c00352{font-size:28.920000px;}
.fs4_c00352{font-size:32.340000px;}
.fs2_c00352{font-size:35.700000px;}
.fs7_c00352{font-size:39.120000px;}
.y0_c00352{bottom:0.000000px;}
.yca_c00352{bottom:254.745000px;}
.ycd_c00352{bottom:255.405000px;}
.ycc_c00352{bottom:255.630000px;}
.ycb_c00352{bottom:256.905000px;}
.yc9_c00352{bottom:257.130000px;}
.yc8_c00352{bottom:274.245000px;}
.yc5_c00352{bottom:275.325000px;}
.yc7_c00352{bottom:275.970000px;}
.yc6_c00352{bottom:276.405000px;}
.yc4_c00352{bottom:293.745000px;}
.yc2_c00352{bottom:295.905000px;}
.yc3_c00352{bottom:296.130000px;}
.yc0_c00352{bottom:312.825000px;}
.ybe_c00352{bottom:313.245000px;}
.ybf_c00352{bottom:315.405000px;}
.yc1_c00352{bottom:315.630000px;}
.ybb_c00352{bottom:331.245000px;}
.yb9_c00352{bottom:332.745000px;}
.yb8_c00352{bottom:333.180000px;}
.ybc_c00352{bottom:333.630000px;}
.ybd_c00352{bottom:334.470000px;}
.yba_c00352{bottom:334.905000px;}
.yb7_c00352{bottom:335.130000px;}
.yb6_c00352{bottom:336.405000px;}
.yb3_c00352{bottom:351.825000px;}
.yb4_c00352{bottom:352.245000px;}
.yb0_c00352{bottom:353.325000px;}
.yae_c00352{bottom:353.745000px;}
.yb2_c00352{bottom:353.970000px;}
.yb5_c00352{bottom:354.405000px;}
.yaf_c00352{bottom:354.825000px;}
.yb1_c00352{bottom:355.470000px;}
.yad_c00352{bottom:355.905000px;}
.yac_c00352{bottom:370.905000px;}
.ya7_c00352{bottom:371.970000px;}
.ya8_c00352{bottom:373.245000px;}
.yaa_c00352{bottom:373.905000px;}
.ya5_c00352{bottom:374.130000px;}
.ya6_c00352{bottom:374.325000px;}
.yab_c00352{bottom:374.970000px;}
.ya9_c00352{bottom:375.405000px;}
.ya4_c00352{bottom:391.245000px;}
.ya1_c00352{bottom:392.325000px;}
.ya0_c00352{bottom:392.745000px;}
.ya2_c00352{bottom:393.405000px;}
.y9f_c00352{bottom:393.630000px;}
.y9e_c00352{bottom:393.825000px;}
.ya3_c00352{bottom:394.470000px;}
.y9d_c00352{bottom:394.905000px;}
.y9c_c00352{bottom:410.745000px;}
.y9a_c00352{bottom:411.825000px;}
.y98_c00352{bottom:412.245000px;}
.y9b_c00352{bottom:412.905000px;}
.y99_c00352{bottom:413.745000px;}
.y97_c00352{bottom:414.405000px;}
.y95_c00352{bottom:429.405000px;}
.y94_c00352{bottom:430.470000px;}
.y91_c00352{bottom:431.745000px;}
.y96_c00352{bottom:432.405000px;}
.y93_c00352{bottom:433.905000px;}
.y92_c00352{bottom:433.920000px;}
.y90_c00352{bottom:469.905000px;}
.y8e_c00352{bottom:483.405000px;}
.y8f_c00352{bottom:483.630000px;}
.y8c_c00352{bottom:483.825000px;}
.y8a_c00352{bottom:485.130000px;}
.y8d_c00352{bottom:485.550000px;}
.y8b_c00352{bottom:485.970000px;}
.y89_c00352{bottom:498.825000px;}
.y88_c00352{bottom:499.905000px;}
.y86_c00352{bottom:501.195000px;}
.y87_c00352{bottom:502.050000px;}
.y81_c00352{bottom:512.325000px;}
.y84_c00352{bottom:513.405000px;}
.y85_c00352{bottom:514.470000px;}
.y83_c00352{bottom:515.130000px;}
.y82_c00352{bottom:515.550000px;}
.y80_c00352{bottom:539.745000px;}
.y7b_c00352{bottom:541.245000px;}
.y7f_c00352{bottom:541.905000px;}
.y7d_c00352{bottom:542.130000px;}
.y7e_c00352{bottom:542.970000px;}
.y7c_c00352{bottom:543.405000px;}
.y7a_c00352{bottom:544.470000px;}
.y77_c00352{bottom:558.405000px;}
.y79_c00352{bottom:559.245000px;}
.y75_c00352{bottom:560.745000px;}
.y78_c00352{bottom:561.405000px;}
.y74_c00352{bottom:561.630000px;}
.y76_c00352{bottom:561.825000px;}
.y73_c00352{bottom:562.905000px;}
.y71_c00352{bottom:579.405000px;}
.y6f_c00352{bottom:580.245000px;}
.y72_c00352{bottom:581.130000px;}
.y70_c00352{bottom:582.405000px;}
.y6b_c00352{bottom:599.745000px;}
.y6c_c00352{bottom:600.405000px;}
.y6e_c00352{bottom:600.630000px;}
.y6d_c00352{bottom:601.905000px;}
.y66_c00352{bottom:619.245000px;}
.y6a_c00352{bottom:620.130000px;}
.y68_c00352{bottom:620.745000px;}
.y67_c00352{bottom:621.405000px;}
.y69_c00352{bottom:622.470000px;}
.y65_c00352{bottom:637.905000px;}
.y63_c00352{bottom:638.745000px;}
.y64_c00352{bottom:640.245000px;}
.y62_c00352{bottom:640.905000px;}
.y61_c00352{bottom:642.405000px;}
.y5f_c00352{bottom:658.245000px;}
.y60_c00352{bottom:658.470000px;}
.y5c_c00352{bottom:659.745000px;}
.y5d_c00352{bottom:660.405000px;}
.y5e_c00352{bottom:661.470000px;}
.y5b_c00352{bottom:661.905000px;}
.y59_c00352{bottom:677.745000px;}
.y56_c00352{bottom:678.825000px;}
.y55_c00352{bottom:679.245000px;}
.y58_c00352{bottom:679.905000px;}
.y5a_c00352{bottom:680.130000px;}
.y57_c00352{bottom:680.970000px;}
.y54_c00352{bottom:681.405000px;}
.y53_c00352{bottom:697.245000px;}
.y52_c00352{bottom:698.325000px;}
.y50_c00352{bottom:698.745000px;}
.y51_c00352{bottom:699.630000px;}
.y4f_c00352{bottom:700.905000px;}
.y4e_c00352{bottom:701.970000px;}
.y4d_c00352{bottom:718.245000px;}
.y4c_c00352{bottom:720.405000px;}
.y4a_c00352{bottom:737.745000px;}
.y49_c00352{bottom:737.970000px;}
.y4b_c00352{bottom:738.630000px;}
.y46_c00352{bottom:739.905000px;}
.y48_c00352{bottom:740.970000px;}
.y47_c00352{bottom:741.420000px;}
.y43_c00352{bottom:758.325000px;}
.y44_c00352{bottom:759.405000px;}
.y45_c00352{bottom:760.905000px;}
.y41_c00352{bottom:776.745000px;}
.y42_c00352{bottom:778.470000px;}
.y40_c00352{bottom:778.905000px;}
.y3d_c00352{bottom:797.745000px;}
.y3f_c00352{bottom:798.405000px;}
.y3e_c00352{bottom:798.630000px;}
.y3c_c00352{bottom:799.905000px;}
.y3a_c00352{bottom:816.825000px;}
.y36_c00352{bottom:817.245000px;}
.y3b_c00352{bottom:817.905000px;}
.y39_c00352{bottom:818.970000px;}
.y37_c00352{bottom:819.405000px;}
.y38_c00352{bottom:820.470000px;}
.y35_c00352{bottom:835.245000px;}
.y33_c00352{bottom:835.470000px;}
.y34_c00352{bottom:836.745000px;}
.y31_c00352{bottom:838.905000px;}
.y32_c00352{bottom:838.920000px;}
.y2f_c00352{bottom:855.180000px;}
.y30_c00352{bottom:856.245000px;}
.y2e_c00352{bottom:857.325000px;}
.y2c_c00352{bottom:875.745000px;}
.y2d_c00352{bottom:876.825000px;}
.y29_c00352{bottom:877.905000px;}
.y2b_c00352{bottom:877.920000px;}
.y2a_c00352{bottom:878.130000px;}
.y25_c00352{bottom:894.405000px;}
.y24_c00352{bottom:895.245000px;}
.y28_c00352{bottom:896.325000px;}
.y27_c00352{bottom:897.630000px;}
.y26_c00352{bottom:898.470000px;}
.y1f_c00352{bottom:913.905000px;}
.y20_c00352{bottom:914.745000px;}
.y23_c00352{bottom:915.825000px;}
.y1c_c00352{bottom:916.245000px;}
.y1e_c00352{bottom:917.325000px;}
.y22_c00352{bottom:917.970000px;}
.y21_c00352{bottom:918.405000px;}
.y1d_c00352{bottom:918.420000px;}
.y18_c00352{bottom:933.405000px;}
.y1a_c00352{bottom:934.245000px;}
.y19_c00352{bottom:934.905000px;}
.y1b_c00352{bottom:936.405000px;}
.y17_c00352{bottom:936.630000px;}
.y16_c00352{bottom:937.905000px;}
.y15_c00352{bottom:953.745000px;}
.y11_c00352{bottom:955.245000px;}
.y14_c00352{bottom:956.325000px;}
.y12_c00352{bottom:956.970000px;}
.y13_c00352{bottom:957.405000px;}
.ye_c00352{bottom:974.745000px;}
.y10_c00352{bottom:976.905000px;}
.yf_c00352{bottom:976.920000px;}
.yd_c00352{bottom:1003.050000px;}
.yc_c00352{bottom:1006.050000px;}
.ya_c00352{bottom:1017.405000px;}
.y9_c00352{bottom:1018.470000px;}
.yb_c00352{bottom:1019.550000px;}
.y6_c00352{bottom:1039.470000px;}
.y8_c00352{bottom:1040.325000px;}
.y5_c00352{bottom:1040.550000px;}
.y7_c00352{bottom:1041.405000px;}
.y4_c00352{bottom:1043.550000px;}
.y3_c00352{bottom:1061.745000px;}
.y2_c00352{bottom:1099.905000px;}
.y1_c00352{bottom:1102.050000px;}
.h6_c00352{height:4.206533px;}
.h9_c00352{height:16.752334px;}
.h7_c00352{height:23.025234px;}
.h1_c00352{height:25.091602px;}
.h4_c00352{height:31.364502px;}
.h2_c00352{height:35.571035px;}
.h5_c00352{height:39.777568px;}
.h3_c00352{height:43.910303px;}
.h8_c00352{height:48.116836px;}
.h0_c00352{height:1335.000000px;}
.w0_c00352{width:880.500000px;}
.x0_c00352{left:0.000000px;}
.x1c_c00352{left:151.500000px;}
.x6b_c00352{left:153.000000px;}
.x40_c00352{left:154.275000px;}
.x12_c00352{left:163.080000px;}
.xb7_c00352{left:165.000000px;}
.x1e_c00352{left:168.420000px;}
.xeb_c00352{left:169.500000px;}
.x80_c00352{left:176.580000px;}
.xf3_c00352{left:180.000000px;}
.xce_c00352{left:181.500000px;}
.x66_c00352{left:183.000000px;}
.xbd_c00352{left:184.500000px;}
.x26_c00352{left:187.500000px;}
.xb0_c00352{left:189.000000px;}
.xdb_c00352{left:192.000000px;}
.x55_c00352{left:193.080000px;}
.x1d_c00352{left:194.355000px;}
.xca_c00352{left:196.500000px;}
.x6c_c00352{left:198.420000px;}
.xc3_c00352{left:199.500000px;}
.x13_c00352{left:201.420000px;}
.x79_c00352{left:202.500000px;}
.xec_c00352{left:207.420000px;}
.xe0_c00352{left:208.500000px;}
.x3_c00352{left:209.580000px;}
.xa6_c00352{left:211.920000px;}
.x2e_c00352{left:216.000000px;}
.x9c_c00352{left:217.080000px;}
.xab_c00352{left:222.000000px;}
.xe4_c00352{left:223.080000px;}
.x6d_c00352{left:225.000000px;}
.xc4_c00352{left:226.500000px;}
.x48_c00352{left:229.080000px;}
.x92_c00352{left:235.920000px;}
.x7a_c00352{left:237.000000px;}
.xcf_c00352{left:240.420000px;}
.x41_c00352{left:241.920000px;}
.x81_c00352{left:243.420000px;}
.x45_c00352{left:247.500000px;}
.xa7_c00352{left:249.000000px;}
.x56_c00352{left:250.920000px;}
.x49_c00352{left:252.000000px;}
.x70_c00352{left:253.500000px;}
.x5d_c00352{left:254.580000px;}
.xbe_c00352{left:256.080000px;}
.x2f_c00352{left:257.580000px;}
.x93_c00352{left:259.500000px;}
.x4c_c00352{left:261.000000px;}
.xe5_c00352{left:262.500000px;}
.x82_c00352{left:265.500000px;}
.x42_c00352{left:268.920000px;}
.x1f_c00352{left:270.000000px;}
.x8_c00352{left:271.500000px;}
.x71_c00352{left:274.080000px;}
.xf4_c00352{left:276.420000px;}
.xcb_c00352{left:277.500000px;}
.x35_c00352{left:279.000000px;}
.x4d_c00352{left:280.500000px;}
.x87_c00352{left:282.000000px;}
.x6e_c00352{left:284.580000px;}
.x14_c00352{left:288.000000px;}
.xbf_c00352{left:289.500000px;}
.x20_c00352{left:291.000000px;}
.x9_c00352{left:292.500000px;}
.xed_c00352{left:294.420000px;}
.xac_c00352{left:298.500000px;}
.x46_c00352{left:300.000000px;}
.xf5_c00352{left:301.920000px;}
.x30_c00352{left:303.000000px;}
.x15_c00352{left:304.500000px;}
.x83_c00352{left:307.920000px;}
.x4_c00352{left:309.420000px;}
.xa_c00352{left:310.500000px;}
.x5e_c00352{left:312.000000px;}
.x4e_c00352{left:313.080000px;}
.x57_c00352{left:314.580000px;}
.x6f_c00352{left:316.500000px;}
.x94_c00352{left:318.000000px;}
.x43_c00352{left:321.000000px;}
.xb8_c00352{left:322.500000px;}
.x31_c00352{left:325.080000px;}
.x4a_c00352{left:326.580000px;}
.x9d_c00352{left:332.580000px;}
.x44_c00352{left:337.080000px;}
.xc5_c00352{left:339.000000px;}
.x88_c00352{left:340.920000px;}
.x27_c00352{left:342.420000px;}
.xd0_c00352{left:345.000000px;}
.x36_c00352{left:346.275000px;}
.x72_c00352{left:348.000000px;}
.xb_c00352{left:349.920000px;}
.xd3_c00352{left:351.420000px;}
.xb9_c00352{left:353.580000px;}
.xe1_c00352{left:355.080000px;}
.x4f_c00352{left:356.580000px;}
.xd6_c00352{left:363.420000px;}
.x95_c00352{left:366.645000px;}
.x16_c00352{left:369.420000px;}
.x32_c00352{left:370.500000px;}
.x58_c00352{left:373.500000px;}
.x50_c00352{left:375.420000px;}
.x5f_c00352{left:376.500000px;}
.x89_c00352{left:381.000000px;}
.xa8_c00352{left:382.500000px;}
.xd4_c00352{left:384.000000px;}
.x37_c00352{left:385.080000px;}
.xb1_c00352{left:386.580000px;}
.x21_c00352{left:388.500000px;}
.xc_c00352{left:389.580000px;}
.x73_c00352{left:393.000000px;}
.x8a_c00352{left:397.080000px;}
.x1_c00352{left:402.000000px;}
.x51_c00352{left:403.500000px;}
.x17_c00352{left:404.580000px;}
.xad_c00352{left:406.080000px;}
.x60_c00352{left:410.580000px;}
.x28_c00352{left:414.420000px;}
.x33_c00352{left:417.000000px;}
.xc0_c00352{left:418.500000px;}
.x74_c00352{left:423.000000px;}
.xba_c00352{left:424.500000px;}
.x7b_c00352{left:426.420000px;}
.x96_c00352{left:428.580000px;}
.x8b_c00352{left:430.500000px;}
.x47_c00352{left:432.000000px;}
.x4b_c00352{left:433.080000px;}
.x59_c00352{left:438.000000px;}
.xe6_c00352{left:439.500000px;}
.xe2_c00352{left:444.000000px;}
.x29_c00352{left:445.500000px;}
.xd_c00352{left:446.580000px;}
.xa2_c00352{left:448.500000px;}
.xcc_c00352{left:454.080000px;}
.x52_c00352{left:455.580000px;}
.x61_c00352{left:457.500000px;}
.xe3_c00352{left:458.580000px;}
.x38_c00352{left:464.145000px;}
.xe_c00352{left:467.580000px;}
.x18_c00352{left:471.000000px;}
.x97_c00352{left:475.500000px;}
.x9e_c00352{left:477.855000px;}
.xc1_c00352{left:479.145000px;}
.xae_c00352{left:481.080000px;}
.x75_c00352{left:483.000000px;}
.x8c_c00352{left:484.920000px;}
.xf_c00352{left:486.000000px;}
.xb2_c00352{left:488.580000px;}
.x22_c00352{left:489.645000px;}
.x34_c00352{left:491.145000px;}
.xbb_c00352{left:497.580000px;}
.x39_c00352{left:499.920000px;}
.x98_c00352{left:501.000000px;}
.xee_c00352{left:502.920000px;}
.xc6_c00352{left:504.000000px;}
.xd7_c00352{left:505.080000px;}
.xd1_c00352{left:510.000000px;}
.xdc_c00352{left:511.500000px;}
.x9f_c00352{left:512.775000px;}
.x3a_c00352{left:516.855000px;}
.x2a_c00352{left:522.000000px;}
.xf6_c00352{left:523.920000px;}
.x10_c00352{left:526.920000px;}
.xa9_c00352{left:528.855000px;}
.xa3_c00352{left:531.420000px;}
.xb3_c00352{left:532.500000px;}
.x3b_c00352{left:534.000000px;}
.x5_c00352{left:535.080000px;}
.xe7_c00352{left:536.580000px;}
.x2b_c00352{left:540.420000px;}
.x53_c00352{left:541.920000px;}
.x62_c00352{left:543.420000px;}
.xbc_c00352{left:546.000000px;}
.x5a_c00352{left:547.080000px;}
.x67_c00352{left:550.080000px;}
.x19_c00352{left:552.000000px;}
.x3c_c00352{left:553.920000px;}
.xe8_c00352{left:556.920000px;}
.x6_c00352{left:561.000000px;}
.xd8_c00352{left:564.000000px;}
.x23_c00352{left:567.000000px;}
.x63_c00352{left:568.500000px;}
.xdd_c00352{left:570.000000px;}
.x11_c00352{left:571.080000px;}
.xc7_c00352{left:574.080000px;}
.x7c_c00352{left:576.000000px;}
.x5b_c00352{left:577.500000px;}
.xb4_c00352{left:579.000000px;}
.xcd_c00352{left:583.080000px;}
.x8d_c00352{left:585.000000px;}
.x64_c00352{left:589.500000px;}
.xf7_c00352{left:592.920000px;}
.x24_c00352{left:594.000000px;}
.x7d_c00352{left:598.500000px;}
.x68_c00352{left:600.420000px;}
.x3d_c00352{left:601.920000px;}
.xd5_c00352{left:603.000000px;}
.x8e_c00352{left:604.920000px;}
.x76_c00352{left:607.500000px;}
.x1a_c00352{left:609.000000px;}
.x84_c00352{left:610.920000px;}
.x2c_c00352{left:612.000000px;}
.xb5_c00352{left:620.580000px;}
.xef_c00352{left:622.920000px;}
.xaf_c00352{left:624.000000px;}
.xa0_c00352{left:627.000000px;}
.xaa_c00352{left:628.500000px;}
.x99_c00352{left:631.500000px;}
.xc8_c00352{left:633.420000px;}
.x7_c00352{left:635.775000px;}
.x69_c00352{left:637.080000px;}
.xb6_c00352{left:638.580000px;}
.x54_c00352{left:640.080000px;}
.x3e_c00352{left:642.000000px;}
.x8f_c00352{left:643.500000px;}
.x85_c00352{left:645.000000px;}
.xd9_c00352{left:649.500000px;}
.xe9_c00352{left:651.420000px;}
.x7e_c00352{left:652.500000px;}
.xf1_c00352{left:654.420000px;}
.xa1_c00352{left:655.500000px;}
.x65_c00352{left:657.000000px;}
.x90_c00352{left:663.000000px;}
.x2d_c00352{left:664.920000px;}
.xda_c00352{left:666.420000px;}
.x1b_c00352{left:667.500000px;}
.xde_c00352{left:669.000000px;}
.x77_c00352{left:670.920000px;}
.xa4_c00352{left:674.580000px;}
.x91_c00352{left:676.920000px;}
.x3f_c00352{left:678.000000px;}
.xc2_c00352{left:679.080000px;}
.xf2_c00352{left:681.420000px;}
.x9a_c00352{left:682.500000px;}
.x86_c00352{left:684.000000px;}
.x5c_c00352{left:685.500000px;}
.x25_c00352{left:686.580000px;}
.xd2_c00352{left:688.500000px;}
.x6a_c00352{left:690.000000px;}
.xea_c00352{left:691.500000px;}
.x7f_c00352{left:694.500000px;}
.x9b_c00352{left:697.080000px;}
.x78_c00352{left:700.920000px;}
.x2_c00352{left:703.080000px;}
.xdf_c00352{left:705.420000px;}
.xa5_c00352{left:706.500000px;}
.xc9_c00352{left:708.000000px;}
.xf0_c00352{left:709.920000px;}
@media print{
.v1_c00352{vertical-align:-16.000000pt;}
.v0_c00352{vertical-align:0.000000pt;}
.ls0_c00352{letter-spacing:0.000000pt;}
.ws1_c00352{word-spacing:-2.930088pt;}
.ws3_c00352{word-spacing:-2.404079pt;}
.ws4_c00352{word-spacing:0.000000pt;}
.ws2_c00352{word-spacing:0.879945pt;}
.ws0_c00352{word-spacing:7.649573pt;}
.fs5_c00352{font-size:3.040000pt;}
.fs8_c00352{font-size:12.106667pt;}
.fs6_c00352{font-size:16.640000pt;}
.fs0_c00352{font-size:18.133333pt;}
.fs3_c00352{font-size:22.666667pt;}
.fs1_c00352{font-size:25.706667pt;}
.fs4_c00352{font-size:28.746667pt;}
.fs2_c00352{font-size:31.733333pt;}
.fs7_c00352{font-size:34.773333pt;}
.y0_c00352{bottom:0.000000pt;}
.yca_c00352{bottom:226.440000pt;}
.ycd_c00352{bottom:227.026667pt;}
.ycc_c00352{bottom:227.226667pt;}
.ycb_c00352{bottom:228.360000pt;}
.yc9_c00352{bottom:228.560000pt;}
.yc8_c00352{bottom:243.773333pt;}
.yc5_c00352{bottom:244.733333pt;}
.yc7_c00352{bottom:245.306667pt;}
.yc6_c00352{bottom:245.693333pt;}
.yc4_c00352{bottom:261.106667pt;}
.yc2_c00352{bottom:263.026667pt;}
.yc3_c00352{bottom:263.226667pt;}
.yc0_c00352{bottom:278.066667pt;}
.ybe_c00352{bottom:278.440000pt;}
.ybf_c00352{bottom:280.360000pt;}
.yc1_c00352{bottom:280.560000pt;}
.ybb_c00352{bottom:294.440000pt;}
.yb9_c00352{bottom:295.773333pt;}
.yb8_c00352{bottom:296.160000pt;}
.ybc_c00352{bottom:296.560000pt;}
.ybd_c00352{bottom:297.306667pt;}
.yba_c00352{bottom:297.693333pt;}
.yb7_c00352{bottom:297.893333pt;}
.yb6_c00352{bottom:299.026667pt;}
.yb3_c00352{bottom:312.733333pt;}
.yb4_c00352{bottom:313.106667pt;}
.yb0_c00352{bottom:314.066667pt;}
.yae_c00352{bottom:314.440000pt;}
.yb2_c00352{bottom:314.640000pt;}
.yb5_c00352{bottom:315.026667pt;}
.yaf_c00352{bottom:315.400000pt;}
.yb1_c00352{bottom:315.973333pt;}
.yad_c00352{bottom:316.360000pt;}
.yac_c00352{bottom:329.693333pt;}
.ya7_c00352{bottom:330.640000pt;}
.ya8_c00352{bottom:331.773333pt;}
.yaa_c00352{bottom:332.360000pt;}
.ya5_c00352{bottom:332.560000pt;}
.ya6_c00352{bottom:332.733333pt;}
.yab_c00352{bottom:333.306667pt;}
.ya9_c00352{bottom:333.693333pt;}
.ya4_c00352{bottom:347.773333pt;}
.ya1_c00352{bottom:348.733333pt;}
.ya0_c00352{bottom:349.106667pt;}
.ya2_c00352{bottom:349.693333pt;}
.y9f_c00352{bottom:349.893333pt;}
.y9e_c00352{bottom:350.066667pt;}
.ya3_c00352{bottom:350.640000pt;}
.y9d_c00352{bottom:351.026667pt;}
.y9c_c00352{bottom:365.106667pt;}
.y9a_c00352{bottom:366.066667pt;}
.y98_c00352{bottom:366.440000pt;}
.y9b_c00352{bottom:367.026667pt;}
.y99_c00352{bottom:367.773333pt;}
.y97_c00352{bottom:368.360000pt;}
.y95_c00352{bottom:381.693333pt;}
.y94_c00352{bottom:382.640000pt;}
.y91_c00352{bottom:383.773333pt;}
.y96_c00352{bottom:384.360000pt;}
.y93_c00352{bottom:385.693333pt;}
.y92_c00352{bottom:385.706667pt;}
.y90_c00352{bottom:417.693333pt;}
.y8e_c00352{bottom:429.693333pt;}
.y8f_c00352{bottom:429.893333pt;}
.y8c_c00352{bottom:430.066667pt;}
.y8a_c00352{bottom:431.226667pt;}
.y8d_c00352{bottom:431.600000pt;}
.y8b_c00352{bottom:431.973333pt;}
.y89_c00352{bottom:443.400000pt;}
.y88_c00352{bottom:444.360000pt;}
.y86_c00352{bottom:445.506667pt;}
.y87_c00352{bottom:446.266667pt;}
.y81_c00352{bottom:455.400000pt;}
.y84_c00352{bottom:456.360000pt;}
.y85_c00352{bottom:457.306667pt;}
.y83_c00352{bottom:457.893333pt;}
.y82_c00352{bottom:458.266667pt;}
.y80_c00352{bottom:479.773333pt;}
.y7b_c00352{bottom:481.106667pt;}
.y7f_c00352{bottom:481.693333pt;}
.y7d_c00352{bottom:481.893333pt;}
.y7e_c00352{bottom:482.640000pt;}
.y7c_c00352{bottom:483.026667pt;}
.y7a_c00352{bottom:483.973333pt;}
.y77_c00352{bottom:496.360000pt;}
.y79_c00352{bottom:497.106667pt;}
.y75_c00352{bottom:498.440000pt;}
.y78_c00352{bottom:499.026667pt;}
.y74_c00352{bottom:499.226667pt;}
.y76_c00352{bottom:499.400000pt;}
.y73_c00352{bottom:500.360000pt;}
.y71_c00352{bottom:515.026667pt;}
.y6f_c00352{bottom:515.773333pt;}
.y72_c00352{bottom:516.560000pt;}
.y70_c00352{bottom:517.693333pt;}
.y6b_c00352{bottom:533.106667pt;}
.y6c_c00352{bottom:533.693333pt;}
.y6e_c00352{bottom:533.893333pt;}
.y6d_c00352{bottom:535.026667pt;}
.y66_c00352{bottom:550.440000pt;}
.y6a_c00352{bottom:551.226667pt;}
.y68_c00352{bottom:551.773333pt;}
.y67_c00352{bottom:552.360000pt;}
.y69_c00352{bottom:553.306667pt;}
.y65_c00352{bottom:567.026667pt;}
.y63_c00352{bottom:567.773333pt;}
.y64_c00352{bottom:569.106667pt;}
.y62_c00352{bottom:569.693333pt;}
.y61_c00352{bottom:571.026667pt;}
.y5f_c00352{bottom:585.106667pt;}
.y60_c00352{bottom:585.306667pt;}
.y5c_c00352{bottom:586.440000pt;}
.y5d_c00352{bottom:587.026667pt;}
.y5e_c00352{bottom:587.973333pt;}
.y5b_c00352{bottom:588.360000pt;}
.y59_c00352{bottom:602.440000pt;}
.y56_c00352{bottom:603.400000pt;}
.y55_c00352{bottom:603.773333pt;}
.y58_c00352{bottom:604.360000pt;}
.y5a_c00352{bottom:604.560000pt;}
.y57_c00352{bottom:605.306667pt;}
.y54_c00352{bottom:605.693333pt;}
.y53_c00352{bottom:619.773333pt;}
.y52_c00352{bottom:620.733333pt;}
.y50_c00352{bottom:621.106667pt;}
.y51_c00352{bottom:621.893333pt;}
.y4f_c00352{bottom:623.026667pt;}
.y4e_c00352{bottom:623.973333pt;}
.y4d_c00352{bottom:638.440000pt;}
.y4c_c00352{bottom:640.360000pt;}
.y4a_c00352{bottom:655.773333pt;}
.y49_c00352{bottom:655.973333pt;}
.y4b_c00352{bottom:656.560000pt;}
.y46_c00352{bottom:657.693333pt;}
.y48_c00352{bottom:658.640000pt;}
.y47_c00352{bottom:659.040000pt;}
.y43_c00352{bottom:674.066667pt;}
.y44_c00352{bottom:675.026667pt;}
.y45_c00352{bottom:676.360000pt;}
.y41_c00352{bottom:690.440000pt;}
.y42_c00352{bottom:691.973333pt;}
.y40_c00352{bottom:692.360000pt;}
.y3d_c00352{bottom:709.106667pt;}
.y3f_c00352{bottom:709.693333pt;}
.y3e_c00352{bottom:709.893333pt;}
.y3c_c00352{bottom:711.026667pt;}
.y3a_c00352{bottom:726.066667pt;}
.y36_c00352{bottom:726.440000pt;}
.y3b_c00352{bottom:727.026667pt;}
.y39_c00352{bottom:727.973333pt;}
.y37_c00352{bottom:728.360000pt;}
.y38_c00352{bottom:729.306667pt;}
.y35_c00352{bottom:742.440000pt;}
.y33_c00352{bottom:742.640000pt;}
.y34_c00352{bottom:743.773333pt;}
.y31_c00352{bottom:745.693333pt;}
.y32_c00352{bottom:745.706667pt;}
.y2f_c00352{bottom:760.160000pt;}
.y30_c00352{bottom:761.106667pt;}
.y2e_c00352{bottom:762.066667pt;}
.y2c_c00352{bottom:778.440000pt;}
.y2d_c00352{bottom:779.400000pt;}
.y29_c00352{bottom:780.360000pt;}
.y2b_c00352{bottom:780.373333pt;}
.y2a_c00352{bottom:780.560000pt;}
.y25_c00352{bottom:795.026667pt;}
.y24_c00352{bottom:795.773333pt;}
.y28_c00352{bottom:796.733333pt;}
.y27_c00352{bottom:797.893333pt;}
.y26_c00352{bottom:798.640000pt;}
.y1f_c00352{bottom:812.360000pt;}
.y20_c00352{bottom:813.106667pt;}
.y23_c00352{bottom:814.066667pt;}
.y1c_c00352{bottom:814.440000pt;}
.y1e_c00352{bottom:815.400000pt;}
.y22_c00352{bottom:815.973333pt;}
.y21_c00352{bottom:816.360000pt;}
.y1d_c00352{bottom:816.373333pt;}
.y18_c00352{bottom:829.693333pt;}
.y1a_c00352{bottom:830.440000pt;}
.y19_c00352{bottom:831.026667pt;}
.y1b_c00352{bottom:832.360000pt;}
.y17_c00352{bottom:832.560000pt;}
.y16_c00352{bottom:833.693333pt;}
.y15_c00352{bottom:847.773333pt;}
.y11_c00352{bottom:849.106667pt;}
.y14_c00352{bottom:850.066667pt;}
.y12_c00352{bottom:850.640000pt;}
.y13_c00352{bottom:851.026667pt;}
.ye_c00352{bottom:866.440000pt;}
.y10_c00352{bottom:868.360000pt;}
.yf_c00352{bottom:868.373333pt;}
.yd_c00352{bottom:891.600000pt;}
.yc_c00352{bottom:894.266667pt;}
.ya_c00352{bottom:904.360000pt;}
.y9_c00352{bottom:905.306667pt;}
.yb_c00352{bottom:906.266667pt;}
.y6_c00352{bottom:923.973333pt;}
.y8_c00352{bottom:924.733333pt;}
.y5_c00352{bottom:924.933333pt;}
.y7_c00352{bottom:925.693333pt;}
.y4_c00352{bottom:927.600000pt;}
.y3_c00352{bottom:943.773333pt;}
.y2_c00352{bottom:977.693333pt;}
.y1_c00352{bottom:979.600000pt;}
.h6_c00352{height:3.739141pt;}
.h9_c00352{height:14.890964pt;}
.h7_c00352{height:20.466875pt;}
.h1_c00352{height:22.303646pt;}
.h4_c00352{height:27.879557pt;}
.h2_c00352{height:31.618698pt;}
.h5_c00352{height:35.357839pt;}
.h3_c00352{height:39.031380pt;}
.h8_c00352{height:42.770521pt;}
.h0_c00352{height:1186.666667pt;}
.w0_c00352{width:782.666667pt;}
.x0_c00352{left:0.000000pt;}
.x1c_c00352{left:134.666667pt;}
.x6b_c00352{left:136.000000pt;}
.x40_c00352{left:137.133333pt;}
.x12_c00352{left:144.960000pt;}
.xb7_c00352{left:146.666667pt;}
.x1e_c00352{left:149.706667pt;}
.xeb_c00352{left:150.666667pt;}
.x80_c00352{left:156.960000pt;}
.xf3_c00352{left:160.000000pt;}
.xce_c00352{left:161.333333pt;}
.x66_c00352{left:162.666667pt;}
.xbd_c00352{left:164.000000pt;}
.x26_c00352{left:166.666667pt;}
.xb0_c00352{left:168.000000pt;}
.xdb_c00352{left:170.666667pt;}
.x55_c00352{left:171.626667pt;}
.x1d_c00352{left:172.760000pt;}
.xca_c00352{left:174.666667pt;}
.x6c_c00352{left:176.373333pt;}
.xc3_c00352{left:177.333333pt;}
.x13_c00352{left:179.040000pt;}
.x79_c00352{left:180.000000pt;}
.xec_c00352{left:184.373333pt;}
.xe0_c00352{left:185.333333pt;}
.x3_c00352{left:186.293333pt;}
.xa6_c00352{left:188.373333pt;}
.x2e_c00352{left:192.000000pt;}
.x9c_c00352{left:192.960000pt;}
.xab_c00352{left:197.333333pt;}
.xe4_c00352{left:198.293333pt;}
.x6d_c00352{left:200.000000pt;}
.xc4_c00352{left:201.333333pt;}
.x48_c00352{left:203.626667pt;}
.x92_c00352{left:209.706667pt;}
.x7a_c00352{left:210.666667pt;}
.xcf_c00352{left:213.706667pt;}
.x41_c00352{left:215.040000pt;}
.x81_c00352{left:216.373333pt;}
.x45_c00352{left:220.000000pt;}
.xa7_c00352{left:221.333333pt;}
.x56_c00352{left:223.040000pt;}
.x49_c00352{left:224.000000pt;}
.x70_c00352{left:225.333333pt;}
.x5d_c00352{left:226.293333pt;}
.xbe_c00352{left:227.626667pt;}
.x2f_c00352{left:228.960000pt;}
.x93_c00352{left:230.666667pt;}
.x4c_c00352{left:232.000000pt;}
.xe5_c00352{left:233.333333pt;}
.x82_c00352{left:236.000000pt;}
.x42_c00352{left:239.040000pt;}
.x1f_c00352{left:240.000000pt;}
.x8_c00352{left:241.333333pt;}
.x71_c00352{left:243.626667pt;}
.xf4_c00352{left:245.706667pt;}
.xcb_c00352{left:246.666667pt;}
.x35_c00352{left:248.000000pt;}
.x4d_c00352{left:249.333333pt;}
.x87_c00352{left:250.666667pt;}
.x6e_c00352{left:252.960000pt;}
.x14_c00352{left:256.000000pt;}
.xbf_c00352{left:257.333333pt;}
.x20_c00352{left:258.666667pt;}
.x9_c00352{left:260.000000pt;}
.xed_c00352{left:261.706667pt;}
.xac_c00352{left:265.333333pt;}
.x46_c00352{left:266.666667pt;}
.xf5_c00352{left:268.373333pt;}
.x30_c00352{left:269.333333pt;}
.x15_c00352{left:270.666667pt;}
.x83_c00352{left:273.706667pt;}
.x4_c00352{left:275.040000pt;}
.xa_c00352{left:276.000000pt;}
.x5e_c00352{left:277.333333pt;}
.x4e_c00352{left:278.293333pt;}
.x57_c00352{left:279.626667pt;}
.x6f_c00352{left:281.333333pt;}
.x94_c00352{left:282.666667pt;}
.x43_c00352{left:285.333333pt;}
.xb8_c00352{left:286.666667pt;}
.x31_c00352{left:288.960000pt;}
.x4a_c00352{left:290.293333pt;}
.x9d_c00352{left:295.626667pt;}
.x44_c00352{left:299.626667pt;}
.xc5_c00352{left:301.333333pt;}
.x88_c00352{left:303.040000pt;}
.x27_c00352{left:304.373333pt;}
.xd0_c00352{left:306.666667pt;}
.x36_c00352{left:307.800000pt;}
.x72_c00352{left:309.333333pt;}
.xb_c00352{left:311.040000pt;}
.xd3_c00352{left:312.373333pt;}
.xb9_c00352{left:314.293333pt;}
.xe1_c00352{left:315.626667pt;}
.x4f_c00352{left:316.960000pt;}
.xd6_c00352{left:323.040000pt;}
.x95_c00352{left:325.906667pt;}
.x16_c00352{left:328.373333pt;}
.x32_c00352{left:329.333333pt;}
.x58_c00352{left:332.000000pt;}
.x50_c00352{left:333.706667pt;}
.x5f_c00352{left:334.666667pt;}
.x89_c00352{left:338.666667pt;}
.xa8_c00352{left:340.000000pt;}
.xd4_c00352{left:341.333333pt;}
.x37_c00352{left:342.293333pt;}
.xb1_c00352{left:343.626667pt;}
.x21_c00352{left:345.333333pt;}
.xc_c00352{left:346.293333pt;}
.x73_c00352{left:349.333333pt;}
.x8a_c00352{left:352.960000pt;}
.x1_c00352{left:357.333333pt;}
.x51_c00352{left:358.666667pt;}
.x17_c00352{left:359.626667pt;}
.xad_c00352{left:360.960000pt;}
.x60_c00352{left:364.960000pt;}
.x28_c00352{left:368.373333pt;}
.x33_c00352{left:370.666667pt;}
.xc0_c00352{left:372.000000pt;}
.x74_c00352{left:376.000000pt;}
.xba_c00352{left:377.333333pt;}
.x7b_c00352{left:379.040000pt;}
.x96_c00352{left:380.960000pt;}
.x8b_c00352{left:382.666667pt;}
.x47_c00352{left:384.000000pt;}
.x4b_c00352{left:384.960000pt;}
.x59_c00352{left:389.333333pt;}
.xe6_c00352{left:390.666667pt;}
.xe2_c00352{left:394.666667pt;}
.x29_c00352{left:396.000000pt;}
.xd_c00352{left:396.960000pt;}
.xa2_c00352{left:398.666667pt;}
.xcc_c00352{left:403.626667pt;}
.x52_c00352{left:404.960000pt;}
.x61_c00352{left:406.666667pt;}
.xe3_c00352{left:407.626667pt;}
.x38_c00352{left:412.573333pt;}
.xe_c00352{left:415.626667pt;}
.x18_c00352{left:418.666667pt;}
.x97_c00352{left:422.666667pt;}
.x9e_c00352{left:424.760000pt;}
.xc1_c00352{left:425.906667pt;}
.xae_c00352{left:427.626667pt;}
.x75_c00352{left:429.333333pt;}
.x8c_c00352{left:431.040000pt;}
.xf_c00352{left:432.000000pt;}
.xb2_c00352{left:434.293333pt;}
.x22_c00352{left:435.240000pt;}
.x34_c00352{left:436.573333pt;}
.xbb_c00352{left:442.293333pt;}
.x39_c00352{left:444.373333pt;}
.x98_c00352{left:445.333333pt;}
.xee_c00352{left:447.040000pt;}
.xc6_c00352{left:448.000000pt;}
.xd7_c00352{left:448.960000pt;}
.xd1_c00352{left:453.333333pt;}
.xdc_c00352{left:454.666667pt;}
.x9f_c00352{left:455.800000pt;}
.x3a_c00352{left:459.426667pt;}
.x2a_c00352{left:464.000000pt;}
.xf6_c00352{left:465.706667pt;}
.x10_c00352{left:468.373333pt;}
.xa9_c00352{left:470.093333pt;}
.xa3_c00352{left:472.373333pt;}
.xb3_c00352{left:473.333333pt;}
.x3b_c00352{left:474.666667pt;}
.x5_c00352{left:475.626667pt;}
.xe7_c00352{left:476.960000pt;}
.x2b_c00352{left:480.373333pt;}
.x53_c00352{left:481.706667pt;}
.x62_c00352{left:483.040000pt;}
.xbc_c00352{left:485.333333pt;}
.x5a_c00352{left:486.293333pt;}
.x67_c00352{left:488.960000pt;}
.x19_c00352{left:490.666667pt;}
.x3c_c00352{left:492.373333pt;}
.xe8_c00352{left:495.040000pt;}
.x6_c00352{left:498.666667pt;}
.xd8_c00352{left:501.333333pt;}
.x23_c00352{left:504.000000pt;}
.x63_c00352{left:505.333333pt;}
.xdd_c00352{left:506.666667pt;}
.x11_c00352{left:507.626667pt;}
.xc7_c00352{left:510.293333pt;}
.x7c_c00352{left:512.000000pt;}
.x5b_c00352{left:513.333333pt;}
.xb4_c00352{left:514.666667pt;}
.xcd_c00352{left:518.293333pt;}
.x8d_c00352{left:520.000000pt;}
.x64_c00352{left:524.000000pt;}
.xf7_c00352{left:527.040000pt;}
.x24_c00352{left:528.000000pt;}
.x7d_c00352{left:532.000000pt;}
.x68_c00352{left:533.706667pt;}
.x3d_c00352{left:535.040000pt;}
.xd5_c00352{left:536.000000pt;}
.x8e_c00352{left:537.706667pt;}
.x76_c00352{left:540.000000pt;}
.x1a_c00352{left:541.333333pt;}
.x84_c00352{left:543.040000pt;}
.x2c_c00352{left:544.000000pt;}
.xb5_c00352{left:551.626667pt;}
.xef_c00352{left:553.706667pt;}
.xaf_c00352{left:554.666667pt;}
.xa0_c00352{left:557.333333pt;}
.xaa_c00352{left:558.666667pt;}
.x99_c00352{left:561.333333pt;}
.xc8_c00352{left:563.040000pt;}
.x7_c00352{left:565.133333pt;}
.x69_c00352{left:566.293333pt;}
.xb6_c00352{left:567.626667pt;}
.x54_c00352{left:568.960000pt;}
.x3e_c00352{left:570.666667pt;}
.x8f_c00352{left:572.000000pt;}
.x85_c00352{left:573.333333pt;}
.xd9_c00352{left:577.333333pt;}
.xe9_c00352{left:579.040000pt;}
.x7e_c00352{left:580.000000pt;}
.xf1_c00352{left:581.706667pt;}
.xa1_c00352{left:582.666667pt;}
.x65_c00352{left:584.000000pt;}
.x90_c00352{left:589.333333pt;}
.x2d_c00352{left:591.040000pt;}
.xda_c00352{left:592.373333pt;}
.x1b_c00352{left:593.333333pt;}
.xde_c00352{left:594.666667pt;}
.x77_c00352{left:596.373333pt;}
.xa4_c00352{left:599.626667pt;}
.x91_c00352{left:601.706667pt;}
.x3f_c00352{left:602.666667pt;}
.xc2_c00352{left:603.626667pt;}
.xf2_c00352{left:605.706667pt;}
.x9a_c00352{left:606.666667pt;}
.x86_c00352{left:608.000000pt;}
.x5c_c00352{left:609.333333pt;}
.x25_c00352{left:610.293333pt;}
.xd2_c00352{left:612.000000pt;}
.x6a_c00352{left:613.333333pt;}
.xea_c00352{left:614.666667pt;}
.x7f_c00352{left:617.333333pt;}
.x9b_c00352{left:619.626667pt;}
.x78_c00352{left:623.040000pt;}
.x2_c00352{left:624.960000pt;}
.xdf_c00352{left:627.040000pt;}
.xa5_c00352{left:628.000000pt;}
.xc9_c00352{left:629.333333pt;}
.xf0_c00352{left:631.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_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_7cee04046d1c2f0a9cdec974.woff2')format("woff");}.ff1_c00353{font-family:ff1_c00353;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7a_c00353{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m6a_c00353{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.md2_c00353{transform:matrix(0.346218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346218,0.000000,0.000000,0.250000,0,0);}
.mc6_c00353{transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);}
.m45_c00353{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_c00353{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m63_c00353{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m5_c00353{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.mbf_c00353{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m75_c00353{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.me0_c00353{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mdd_c00353{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m8d_c00353{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00353{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.mbb_c00353{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mc5_c00353{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m8b_c00353{transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);}
.mdc_c00353{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.mba_c00353{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m43_c00353{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m37_c00353{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m6c_c00353{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m91_c00353{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m8f_c00353{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m49_c00353{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m88_c00353{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m39_c00353{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m19_c00353{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);}
.mca_c00353{transform:matrix(0.400690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400690,0.000000,0.000000,0.250000,0,0);}
.mf5_c00353{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m8_c00353{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m56_c00353{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.m1a_c00353{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m95_c00353{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m7d_c00353{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.mc7_c00353{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m16_c00353{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mac_c00353{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m4c_c00353{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.me6_c00353{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.mc1_c00353{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m55_c00353{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m67_c00353{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m1b_c00353{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m8e_c00353{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m89_c00353{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.meb_c00353{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m29_c00353{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.mc8_c00353{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m9c_c00353{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m57_c00353{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.md6_c00353{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.maf_c00353{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m3a_c00353{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mdb_c00353{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mec_c00353{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m73_c00353{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mcb_c00353{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m7_c00353{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.ma3_c00353{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m9d_c00353{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m18_c00353{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m34_c00353{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mb8_c00353{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m3e_c00353{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mce_c00353{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.ma4_c00353{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mea_c00353{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m9a_c00353{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.md3_c00353{transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);}
.m54_c00353{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m85_c00353{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m9f_c00353{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m7b_c00353{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.me7_c00353{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m2e_c00353{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m52_c00353{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m71_c00353{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.ma7_c00353{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.m84_c00353{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m6_c00353{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.me2_c00353{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m66_c00353{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m26_c00353{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.mab_c00353{transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);}
.mef_c00353{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m11_c00353{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m14_c00353{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m15_c00353{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.mae_c00353{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m51_c00353{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.mf0_c00353{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m6f_c00353{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m7f_c00353{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m50_c00353{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m2d_c00353{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m21_c00353{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m2f_c00353{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.me5_c00353{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.ma1_c00353{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.mcf_c00353{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.mbd_c00353{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mcd_c00353{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m2c_c00353{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m6d_c00353{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.ma9_c00353{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m42_c00353{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m4a_c00353{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m5c_c00353{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m1_c00353{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mb0_c00353{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m5f_c00353{transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);}
.mc3_c00353{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m27_c00353{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m9_c00353{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_c00353{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m23_c00353{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.maa_c00353{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.mb9_c00353{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m9e_c00353{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m5d_c00353{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m64_c00353{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.mb4_c00353{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m36_c00353{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.md0_c00353{transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);}
.m2b_c00353{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m61_c00353{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.me_c00353{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m24_c00353{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m17_c00353{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m8a_c00353{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m92_c00353{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m72_c00353{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.ma5_c00353{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m77_c00353{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m13_c00353{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.ma8_c00353{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m35_c00353{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mda_c00353{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m3f_c00353{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m93_c00353{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m1e_c00353{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m10_c00353{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m25_c00353{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m83_c00353{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m3_c00353{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m1c_c00353{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mf3_c00353{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.ma0_c00353{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.mc_c00353{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m80_c00353{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m5e_c00353{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mc4_c00353{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.med_c00353{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m3c_c00353{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mb3_c00353{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m53_c00353{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mb2_c00353{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m44_c00353{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mb6_c00353{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m41_c00353{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m6b_c00353{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m68_c00353{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m62_c00353{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.md_c00353{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m69_c00353{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m60_c00353{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m48_c00353{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m1d_c00353{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m2_c00353{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m38_c00353{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m99_c00353{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m86_c00353{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.ma6_c00353{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mb5_c00353{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mb1_c00353{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m82_c00353{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m4f_c00353{transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);}
.mbe_c00353{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);}
.m9b_c00353{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m4b_c00353{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m98_c00353{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mf2_c00353{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.m78_c00353{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m5a_c00353{transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);}
.m4d_c00353{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m97_c00353{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m70_c00353{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m7c_c00353{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m32_c00353{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m33_c00353{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m4_c00353{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m40_c00353{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mad_c00353{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m3d_c00353{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m31_c00353{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.ma2_c00353{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mdf_c00353{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m3b_c00353{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mcc_c00353{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m65_c00353{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.me3_c00353{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m59_c00353{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.md4_c00353{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.mb7_c00353{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m87_c00353{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m74_c00353{transform:matrix(0.594398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594398,0.000000,0.000000,0.250000,0,0);}
.m81_c00353{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mee_c00353{transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);}
.me4_c00353{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m0_c00353{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.ma_c00353{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m20_c00353{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m47_c00353{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m30_c00353{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_c00353{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m7e_c00353{transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);}
.m1f_c00353{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.md5_c00353{transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);}
.mc0_c00353{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.me8_c00353{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.mf_c00353{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m2a_c00353{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.me1_c00353{transform:matrix(0.668269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.668269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.668269,0.000000,0.000000,0.250000,0,0);}
.md1_c00353{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mde_c00353{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m79_c00353{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.me9_c00353{transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);}
.md7_c00353{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.m12_c00353{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m58_c00353{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m6e_c00353{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mb_c00353{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m22_c00353{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m94_c00353{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m76_c00353{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.mbc_c00353{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.mf4_c00353{transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);}
.m5b_c00353{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m46_c00353{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m96_c00353{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m90_c00353{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.md8_c00353{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.mc9_c00353{transform:matrix(0.883088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.883088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.883088,0.000000,0.000000,0.250000,0,0);}
.md9_c00353{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.mc2_c00353{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-3.089552px;}
.ws1_c00353{word-spacing:0.000000px;}
.fc0_c00353{color:transparent;}
.fs7_c00353{font-size:3.420000px;}
.fs8_c00353{font-size:13.620000px;}
.fs5_c00353{font-size:18.720000px;}
.fs0_c00353{font-size:20.400000px;}
.fs2_c00353{font-size:25.500000px;}
.fs1_c00353{font-size:28.920000px;}
.fs4_c00353{font-size:32.340000px;}
.fs3_c00353{font-size:35.700000px;}
.fs6_c00353{font-size:39.120000px;}
.y0_c00353{bottom:0.000000px;}
.ybf_c00353{bottom:252.405000px;}
.ybd_c00353{bottom:253.245000px;}
.yc0_c00353{bottom:253.470000px;}
.ybe_c00353{bottom:255.405000px;}
.yc1_c00353{bottom:255.630000px;}
.yb9_c00353{bottom:272.745000px;}
.ybb_c00353{bottom:272.970000px;}
.ybc_c00353{bottom:273.825000px;}
.yb7_c00353{bottom:274.905000px;}
.yba_c00353{bottom:275.325000px;}
.yb8_c00353{bottom:275.970000px;}
.yb0_c00353{bottom:289.905000px;}
.yb1_c00353{bottom:290.970000px;}
.yb3_c00353{bottom:292.245000px;}
.yb2_c00353{bottom:293.325000px;}
.yb6_c00353{bottom:293.745000px;}
.yb4_c00353{bottom:295.470000px;}
.yb5_c00353{bottom:295.905000px;}
.yad_c00353{bottom:312.825000px;}
.yac_c00353{bottom:313.245000px;}
.yaa_c00353{bottom:313.905000px;}
.yab_c00353{bottom:314.130000px;}
.yaf_c00353{bottom:314.970000px;}
.yae_c00353{bottom:315.405000px;}
.ya9_c00353{bottom:332.745000px;}
.ya7_c00353{bottom:334.905000px;}
.ya8_c00353{bottom:334.920000px;}
.ya6_c00353{bottom:353.130000px;}
.ya1_c00353{bottom:370.905000px;}
.ya5_c00353{bottom:371.745000px;}
.ya2_c00353{bottom:372.825000px;}
.ya0_c00353{bottom:373.050000px;}
.ya3_c00353{bottom:373.245000px;}
.y9f_c00353{bottom:373.905000px;}
.ya4_c00353{bottom:374.970000px;}
.y9a_c00353{bottom:390.405000px;}
.y9b_c00353{bottom:391.245000px;}
.y99_c00353{bottom:391.470000px;}
.y9e_c00353{bottom:392.325000px;}
.y9c_c00353{bottom:393.405000px;}
.y9d_c00353{bottom:397.695000px;}
.y94_c00353{bottom:409.905000px;}
.y98_c00353{bottom:411.825000px;}
.y97_c00353{bottom:412.245000px;}
.y95_c00353{bottom:412.905000px;}
.y96_c00353{bottom:413.325000px;}
.y93_c00353{bottom:429.405000px;}
.y92_c00353{bottom:430.470000px;}
.y8f_c00353{bottom:430.680000px;}
.y91_c00353{bottom:431.550000px;}
.y8e_c00353{bottom:431.745000px;}
.y90_c00353{bottom:432.630000px;}
.y87_c00353{bottom:449.970000px;}
.y89_c00353{bottom:450.405000px;}
.y88_c00353{bottom:451.245000px;}
.y8d_c00353{bottom:451.905000px;}
.y8c_c00353{bottom:452.970000px;}
.y8b_c00353{bottom:453.405000px;}
.y8a_c00353{bottom:453.420000px;}
.y83_c00353{bottom:468.825000px;}
.y86_c00353{bottom:469.470000px;}
.y85_c00353{bottom:469.905000px;}
.y80_c00353{bottom:470.745000px;}
.y84_c00353{bottom:471.825000px;}
.y7f_c00353{bottom:472.905000px;}
.y81_c00353{bottom:473.130000px;}
.y82_c00353{bottom:473.970000px;}
.y7e_c00353{bottom:490.245000px;}
.y7d_c00353{bottom:491.970000px;}
.y7c_c00353{bottom:492.405000px;}
.y7b_c00353{bottom:509.745000px;}
.y7a_c00353{bottom:511.905000px;}
.y79_c00353{bottom:528.405000px;}
.y76_c00353{bottom:529.245000px;}
.y77_c00353{bottom:531.405000px;}
.y78_c00353{bottom:531.630000px;}
.y73_c00353{bottom:550.245000px;}
.y75_c00353{bottom:551.130000px;}
.y74_c00353{bottom:552.405000px;}
.y72_c00353{bottom:569.745000px;}
.y71_c00353{bottom:571.905000px;}
.y6d_c00353{bottom:586.905000px;}
.y70_c00353{bottom:589.245000px;}
.y6c_c00353{bottom:590.130000px;}
.y6e_c00353{bottom:590.325000px;}
.y6f_c00353{bottom:591.405000px;}
.y6b_c00353{bottom:607.245000px;}
.y68_c00353{bottom:608.745000px;}
.y69_c00353{bottom:610.470000px;}
.y6a_c00353{bottom:610.905000px;}
.y64_c00353{bottom:628.245000px;}
.y67_c00353{bottom:629.130000px;}
.y66_c00353{bottom:630.405000px;}
.y65_c00353{bottom:630.630000px;}
.y61_c00353{bottom:646.905000px;}
.y63_c00353{bottom:647.745000px;}
.y5e_c00353{bottom:647.970000px;}
.y5f_c00353{bottom:649.245000px;}
.y5d_c00353{bottom:649.905000px;}
.y62_c00353{bottom:650.130000px;}
.y60_c00353{bottom:651.405000px;}
.y5c_c00353{bottom:666.405000px;}
.y5b_c00353{bottom:667.680000px;}
.y5a_c00353{bottom:668.745000px;}
.y59_c00353{bottom:670.905000px;}
.y56_c00353{bottom:688.245000px;}
.y58_c00353{bottom:689.325000px;}
.y57_c00353{bottom:690.405000px;}
.y53_c00353{bottom:706.245000px;}
.y55_c00353{bottom:707.325000px;}
.y52_c00353{bottom:709.905000px;}
.y54_c00353{bottom:710.970000px;}
.y50_c00353{bottom:727.245000px;}
.y51_c00353{bottom:728.130000px;}
.y4f_c00353{bottom:729.405000px;}
.y4b_c00353{bottom:746.745000px;}
.y4e_c00353{bottom:747.825000px;}
.y4c_c00353{bottom:748.905000px;}
.y4d_c00353{bottom:749.130000px;}
.y4a_c00353{bottom:766.245000px;}
.y49_c00353{bottom:767.325000px;}
.y48_c00353{bottom:768.405000px;}
.y47_c00353{bottom:785.745000px;}
.y44_c00353{bottom:786.825000px;}
.y43_c00353{bottom:787.905000px;}
.y46_c00353{bottom:788.130000px;}
.y45_c00353{bottom:789.405000px;}
.y42_c00353{bottom:805.245000px;}
.y40_c00353{bottom:805.470000px;}
.y41_c00353{bottom:807.405000px;}
.y3d_c00353{bottom:807.630000px;}
.y3e_c00353{bottom:808.470000px;}
.y3f_c00353{bottom:808.905000px;}
.y3c_c00353{bottom:824.745000px;}
.y39_c00353{bottom:826.245000px;}
.y38_c00353{bottom:826.905000px;}
.y3a_c00353{bottom:827.970000px;}
.y3b_c00353{bottom:828.405000px;}
.y36_c00353{bottom:843.405000px;}
.y34_c00353{bottom:844.905000px;}
.y35_c00353{bottom:845.745000px;}
.y37_c00353{bottom:846.825000px;}
.y33_c00353{bottom:847.905000px;}
.y31_c00353{bottom:864.825000px;}
.y30_c00353{bottom:865.245000px;}
.y32_c00353{bottom:866.130000px;}
.y2f_c00353{bottom:867.405000px;}
.y2d_c00353{bottom:884.325000px;}
.y2e_c00353{bottom:884.745000px;}
.y2c_c00353{bottom:886.905000px;}
.y29_c00353{bottom:904.245000px;}
.y28_c00353{bottom:905.130000px;}
.y2b_c00353{bottom:905.325000px;}
.y2a_c00353{bottom:905.970000px;}
.y27_c00353{bottom:906.405000px;}
.y26_c00353{bottom:923.745000px;}
.y25_c00353{bottom:924.825000px;}
.y23_c00353{bottom:925.245000px;}
.y24_c00353{bottom:925.470000px;}
.y22_c00353{bottom:925.905000px;}
.y21_c00353{bottom:944.745000px;}
.y20_c00353{bottom:946.905000px;}
.y1d_c00353{bottom:964.245000px;}
.y1e_c00353{bottom:965.130000px;}
.y1f_c00353{bottom:965.970000px;}
.y1c_c00353{bottom:966.405000px;}
.y19_c00353{bottom:983.745000px;}
.y1b_c00353{bottom:984.630000px;}
.y17_c00353{bottom:985.470000px;}
.y18_c00353{bottom:985.905000px;}
.y1a_c00353{bottom:986.970000px;}
.y13_c00353{bottom:1001.970000px;}
.y15_c00353{bottom:1002.825000px;}
.y11_c00353{bottom:1003.245000px;}
.y16_c00353{bottom:1004.130000px;}
.y14_c00353{bottom:1004.970000px;}
.y12_c00353{bottom:1005.405000px;}
.yf_c00353{bottom:1022.325000px;}
.ye_c00353{bottom:1023.630000px;}
.y10_c00353{bottom:1023.825000px;}
.yd_c00353{bottom:1024.470000px;}
.yc_c00353{bottom:1024.905000px;}
.yb_c00353{bottom:1042.245000px;}
.y9_c00353{bottom:1043.130000px;}
.y8_c00353{bottom:1043.325000px;}
.ya_c00353{bottom:1044.405000px;}
.y5_c00353{bottom:1061.745000px;}
.y6_c00353{bottom:1062.825000px;}
.y4_c00353{bottom:1063.905000px;}
.y7_c00353{bottom:1064.130000px;}
.y3_c00353{bottom:1064.970000px;}
.y2_c00353{bottom:1099.905000px;}
.y1_c00353{bottom:1102.050000px;}
.h8_c00353{height:4.206533px;}
.h9_c00353{height:16.752334px;}
.h6_c00353{height:23.025234px;}
.h1_c00353{height:25.091602px;}
.h3_c00353{height:31.364502px;}
.h2_c00353{height:35.571035px;}
.h5_c00353{height:39.777568px;}
.h4_c00353{height:43.910303px;}
.h7_c00353{height:48.116836px;}
.h0_c00353{height:1335.000000px;}
.w0_c00353{width:880.500000px;}
.x0_c00353{left:0.000000px;}
.x100_c00353{left:150.000000px;}
.xb9_c00353{left:151.080000px;}
.x46_c00353{left:153.000000px;}
.x2_c00353{left:154.080000px;}
.xe5_c00353{left:166.500000px;}
.xaa_c00353{left:167.580000px;}
.x79_c00353{left:169.500000px;}
.xbe_c00353{left:171.000000px;}
.x35_c00353{left:172.920000px;}
.x8c_c00353{left:177.000000px;}
.x74_c00353{left:179.580000px;}
.x98_c00353{left:181.920000px;}
.xef_c00353{left:183.000000px;}
.x9e_c00353{left:184.500000px;}
.xe1_c00353{left:189.000000px;}
.x3_c00353{left:190.500000px;}
.x101_c00353{left:193.500000px;}
.xfc_c00353{left:195.420000px;}
.x11_c00353{left:196.500000px;}
.x47_c00353{left:197.580000px;}
.x36_c00353{left:199.920000px;}
.x52_c00353{left:201.000000px;}
.x87_c00353{left:202.920000px;}
.x27_c00353{left:204.000000px;}
.xe2_c00353{left:205.920000px;}
.x1c_c00353{left:207.000000px;}
.x8d_c00353{left:208.500000px;}
.x81_c00353{left:210.000000px;}
.xd8_c00353{left:214.500000px;}
.xd2_c00353{left:216.420000px;}
.x53_c00353{left:217.500000px;}
.xab_c00353{left:219.420000px;}
.xdc_c00353{left:220.500000px;}
.xa6_c00353{left:222.000000px;}
.x4_c00353{left:223.500000px;}
.x48_c00353{left:228.420000px;}
.x37_c00353{left:229.500000px;}
.x9f_c00353{left:230.580000px;}
.xc6_c00353{left:237.000000px;}
.xdd_c00353{left:240.420000px;}
.x1d_c00353{left:241.500000px;}
.xba_c00353{left:243.000000px;}
.xa7_c00353{left:244.500000px;}
.x10c_c00353{left:246.000000px;}
.x12_c00353{left:247.500000px;}
.x28_c00353{left:248.580000px;}
.x102_c00353{left:250.500000px;}
.x5e_c00353{left:251.580000px;}
.x38_c00353{left:253.920000px;}
.xfe_c00353{left:256.500000px;}
.x54_c00353{left:258.420000px;}
.x5_c00353{left:259.920000px;}
.x75_c00353{left:261.000000px;}
.x6a_c00353{left:262.920000px;}
.x88_c00353{left:265.920000px;}
.xbf_c00353{left:267.000000px;}
.xde_c00353{left:268.500000px;}
.x5f_c00353{left:273.420000px;}
.xf3_c00353{left:274.500000px;}
.x99_c00353{left:276.000000px;}
.x13_c00353{left:277.920000px;}
.x29_c00353{left:279.420000px;}
.x39_c00353{left:280.920000px;}
.x1e_c00353{left:283.500000px;}
.xc0_c00353{left:285.420000px;}
.x49_c00353{left:286.920000px;}
.x7a_c00353{left:288.420000px;}
.xd9_c00353{left:291.000000px;}
.xac_c00353{left:294.000000px;}
.x6_c00353{left:295.920000px;}
.xf6_c00353{left:298.500000px;}
.x10d_c00353{left:301.080000px;}
.x60_c00353{left:303.420000px;}
.xd3_c00353{left:306.420000px;}
.x55_c00353{left:309.420000px;}
.xa0_c00353{left:312.000000px;}
.xcb_c00353{left:313.500000px;}
.x1f_c00353{left:315.000000px;}
.x82_c00353{left:316.500000px;}
.x4a_c00353{left:318.000000px;}
.x6b_c00353{left:321.420000px;}
.xb4_c00353{left:323.580000px;}
.x93_c00353{left:325.500000px;}
.x76_c00353{left:327.420000px;}
.xd4_c00353{left:329.580000px;}
.xcc_c00353{left:331.920000px;}
.x20_c00353{left:333.000000px;}
.x3a_c00353{left:334.500000px;}
.x10e_c00353{left:339.000000px;}
.x108_c00353{left:340.500000px;}
.x2a_c00353{left:341.580000px;}
.x8e_c00353{left:343.080000px;}
.x21_c00353{left:345.000000px;}
.x14_c00353{left:348.420000px;}
.xad_c00353{left:351.000000px;}
.xee_c00353{left:353.580000px;}
.xc7_c00353{left:355.080000px;}
.x6c_c00353{left:357.420000px;}
.xcd_c00353{left:358.500000px;}
.x2b_c00353{left:359.580000px;}
.x61_c00353{left:361.500000px;}
.x7_c00353{left:363.000000px;}
.x77_c00353{left:364.920000px;}
.xa1_c00353{left:368.580000px;}
.x56_c00353{left:370.920000px;}
.x4b_c00353{left:372.000000px;}
.xe6_c00353{left:373.080000px;}
.x103_c00353{left:375.420000px;}
.x8f_c00353{left:376.500000px;}
.xbb_c00353{left:377.580000px;}
.x62_c00353{left:379.500000px;}
.x2c_c00353{left:380.580000px;}
.x6d_c00353{left:385.080000px;}
.x3b_c00353{left:386.580000px;}
.xa8_c00353{left:388.920000px;}
.x78_c00353{left:391.920000px;}
.x89_c00353{left:393.000000px;}
.x109_c00353{left:394.920000px;}
.xae_c00353{left:396.000000px;}
.xa2_c00353{left:400.500000px;}
.xd5_c00353{left:402.000000px;}
.xf4_c00353{left:403.500000px;}
.x1_c00353{left:405.000000px;}
.x22_c00353{left:406.500000px;}
.xbc_c00353{left:408.000000px;}
.x2d_c00353{left:411.000000px;}
.x104_c00353{left:412.080000px;}
.xa9_c00353{left:415.500000px;}
.x94_c00353{left:417.420000px;}
.x9a_c00353{left:418.500000px;}
.xc1_c00353{left:420.000000px;}
.x57_c00353{left:424.500000px;}
.x2e_c00353{left:426.420000px;}
.xaf_c00353{left:427.500000px;}
.x8_c00353{left:429.000000px;}
.x6e_c00353{left:430.500000px;}
.x3c_c00353{left:432.000000px;}
.x4c_c00353{left:433.500000px;}
.x15_c00353{left:436.920000px;}
.xff_c00353{left:439.920000px;}
.x10a_c00353{left:442.500000px;}
.xf7_c00353{left:444.000000px;}
.x83_c00353{left:445.500000px;}
.x4d_c00353{left:447.000000px;}
.xf8_c00353{left:448.920000px;}
.x7b_c00353{left:450.420000px;}
.x10f_c00353{left:452.355000px;}
.xf0_c00353{left:454.500000px;}
.x63_c00353{left:456.420000px;}
.x95_c00353{left:458.580000px;}
.x6f_c00353{left:462.420000px;}
.xc2_c00353{left:465.000000px;}
.x23_c00353{left:466.920000px;}
.xe7_c00353{left:468.420000px;}
.x9_c00353{left:470.580000px;}
.x3d_c00353{left:472.920000px;}
.xe3_c00353{left:475.080000px;}
.x58_c00353{left:476.580000px;}
.x7c_c00353{left:478.500000px;}
.x9b_c00353{left:480.000000px;}
.xf5_c00353{left:483.000000px;}
.x64_c00353{left:484.500000px;}
.x4e_c00353{left:487.500000px;}
.x110_c00353{left:488.775000px;}
.xa_c00353{left:490.500000px;}
.x16_c00353{left:493.920000px;}
.xc8_c00353{left:495.000000px;}
.x9c_c00353{left:496.920000px;}
.x3e_c00353{left:498.000000px;}
.x2f_c00353{left:499.920000px;}
.xe9_c00353{left:501.000000px;}
.x8a_c00353{left:502.080000px;}
.xf9_c00353{left:504.420000px;}
.xd1_c00353{left:505.920000px;}
.xa3_c00353{left:507.420000px;}
.x84_c00353{left:511.920000px;}
.xb5_c00353{left:513.000000px;}
.xb0_c00353{left:514.500000px;}
.xb_c00353{left:516.420000px;}
.x96_c00353{left:519.000000px;}
.xce_c00353{left:521.580000px;}
.x7d_c00353{left:524.580000px;}
.x17_c00353{left:526.920000px;}
.xc9_c00353{left:531.000000px;}
.xbd_c00353{left:532.500000px;}
.xea_c00353{left:533.580000px;}
.x30_c00353{left:535.080000px;}
.x3f_c00353{left:537.000000px;}
.x59_c00353{left:538.920000px;}
.x7e_c00353{left:544.920000px;}
.x65_c00353{left:546.000000px;}
.x18_c00353{left:553.920000px;}
.x40_c00353{left:555.000000px;}
.xc_c00353{left:556.920000px;}
.xf1_c00353{left:558.000000px;}
.xe4_c00353{left:559.920000px;}
.x24_c00353{left:561.000000px;}
.xc3_c00353{left:563.580000px;}
.x5a_c00353{left:565.920000px;}
.x66_c00353{left:567.420000px;}
.x41_c00353{left:568.500000px;}
.x70_c00353{left:569.580000px;}
.x4f_c00353{left:571.920000px;}
.xfa_c00353{left:573.000000px;}
.x90_c00353{left:575.580000px;}
.x85_c00353{left:579.420000px;}
.x31_c00353{left:582.000000px;}
.xdf_c00353{left:583.500000px;}
.x71_c00353{left:588.420000px;}
.x111_c00353{left:589.920000px;}
.xb6_c00353{left:592.500000px;}
.xd_c00353{left:593.580000px;}
.x67_c00353{left:595.500000px;}
.xe0_c00353{left:597.000000px;}
.x97_c00353{left:598.500000px;}
.x42_c00353{left:600.000000px;}
.xfd_c00353{left:601.080000px;}
.x5b_c00353{left:604.080000px;}
.xeb_c00353{left:607.500000px;}
.x105_c00353{left:609.000000px;}
.xd6_c00353{left:612.420000px;}
.x25_c00353{left:614.580000px;}
.x112_c00353{left:616.080000px;}
.xfb_c00353{left:618.000000px;}
.xda_c00353{left:621.000000px;}
.xa4_c00353{left:623.580000px;}
.xcf_c00353{left:625.920000px;}
.x7f_c00353{left:627.000000px;}
.x91_c00353{left:628.500000px;}
.x19_c00353{left:632.580000px;}
.x5c_c00353{left:634.500000px;}
.x10b_c00353{left:636.420000px;}
.x43_c00353{left:637.500000px;}
.x9d_c00353{left:639.000000px;}
.xe_c00353{left:642.000000px;}
.x50_c00353{left:643.500000px;}
.xd7_c00353{left:644.580000px;}
.x72_c00353{left:646.500000px;}
.xb1_c00353{left:648.420000px;}
.xdb_c00353{left:649.920000px;}
.x1a_c00353{left:651.000000px;}
.x32_c00353{left:655.500000px;}
.xb7_c00353{left:657.000000px;}
.x26_c00353{left:658.500000px;}
.x8b_c00353{left:661.920000px;}
.x92_c00353{left:663.420000px;}
.x44_c00353{left:664.500000px;}
.x68_c00353{left:666.420000px;}
.x33_c00353{left:669.420000px;}
.x5d_c00353{left:670.920000px;}
.xf2_c00353{left:672.000000px;}
.xc4_c00353{left:673.500000px;}
.x86_c00353{left:674.580000px;}
.x106_c00353{left:676.500000px;}
.xa5_c00353{left:678.420000px;}
.x80_c00353{left:679.500000px;}
.x51_c00353{left:681.000000px;}
.xec_c00353{left:682.080000px;}
.xb2_c00353{left:688.080000px;}
.xf_c00353{left:690.000000px;}
.xd0_c00353{left:691.920000px;}
.x1b_c00353{left:693.000000px;}
.xb8_c00353{left:694.920000px;}
.x69_c00353{left:696.000000px;}
.x45_c00353{left:697.080000px;}
.xc5_c00353{left:700.500000px;}
.x34_c00353{left:705.420000px;}
.xb3_c00353{left:706.920000px;}
.xca_c00353{left:708.420000px;}
.x10_c00353{left:709.920000px;}
.xe8_c00353{left:712.500000px;}
.xed_c00353{left:714.000000px;}
.x107_c00353{left:715.500000px;}
.x73_c00353{left:717.000000px;}
@media print{
.v0_c00353{vertical-align:0.000000pt;}
.ls0_c00353{letter-spacing:0.000000pt;}
.ws0_c00353{word-spacing:-2.746269pt;}
.ws1_c00353{word-spacing:0.000000pt;}
.fs7_c00353{font-size:3.040000pt;}
.fs8_c00353{font-size:12.106667pt;}
.fs5_c00353{font-size:16.640000pt;}
.fs0_c00353{font-size:18.133333pt;}
.fs2_c00353{font-size:22.666667pt;}
.fs1_c00353{font-size:25.706667pt;}
.fs4_c00353{font-size:28.746667pt;}
.fs3_c00353{font-size:31.733333pt;}
.fs6_c00353{font-size:34.773333pt;}
.y0_c00353{bottom:0.000000pt;}
.ybf_c00353{bottom:224.360000pt;}
.ybd_c00353{bottom:225.106667pt;}
.yc0_c00353{bottom:225.306667pt;}
.ybe_c00353{bottom:227.026667pt;}
.yc1_c00353{bottom:227.226667pt;}
.yb9_c00353{bottom:242.440000pt;}
.ybb_c00353{bottom:242.640000pt;}
.ybc_c00353{bottom:243.400000pt;}
.yb7_c00353{bottom:244.360000pt;}
.yba_c00353{bottom:244.733333pt;}
.yb8_c00353{bottom:245.306667pt;}
.yb0_c00353{bottom:257.693333pt;}
.yb1_c00353{bottom:258.640000pt;}
.yb3_c00353{bottom:259.773333pt;}
.yb2_c00353{bottom:260.733333pt;}
.yb6_c00353{bottom:261.106667pt;}
.yb4_c00353{bottom:262.640000pt;}
.yb5_c00353{bottom:263.026667pt;}
.yad_c00353{bottom:278.066667pt;}
.yac_c00353{bottom:278.440000pt;}
.yaa_c00353{bottom:279.026667pt;}
.yab_c00353{bottom:279.226667pt;}
.yaf_c00353{bottom:279.973333pt;}
.yae_c00353{bottom:280.360000pt;}
.ya9_c00353{bottom:295.773333pt;}
.ya7_c00353{bottom:297.693333pt;}
.ya8_c00353{bottom:297.706667pt;}
.ya6_c00353{bottom:313.893333pt;}
.ya1_c00353{bottom:329.693333pt;}
.ya5_c00353{bottom:330.440000pt;}
.ya2_c00353{bottom:331.400000pt;}
.ya0_c00353{bottom:331.600000pt;}
.ya3_c00353{bottom:331.773333pt;}
.y9f_c00353{bottom:332.360000pt;}
.ya4_c00353{bottom:333.306667pt;}
.y9a_c00353{bottom:347.026667pt;}
.y9b_c00353{bottom:347.773333pt;}
.y99_c00353{bottom:347.973333pt;}
.y9e_c00353{bottom:348.733333pt;}
.y9c_c00353{bottom:349.693333pt;}
.y9d_c00353{bottom:353.506667pt;}
.y94_c00353{bottom:364.360000pt;}
.y98_c00353{bottom:366.066667pt;}
.y97_c00353{bottom:366.440000pt;}
.y95_c00353{bottom:367.026667pt;}
.y96_c00353{bottom:367.400000pt;}
.y93_c00353{bottom:381.693333pt;}
.y92_c00353{bottom:382.640000pt;}
.y8f_c00353{bottom:382.826667pt;}
.y91_c00353{bottom:383.600000pt;}
.y8e_c00353{bottom:383.773333pt;}
.y90_c00353{bottom:384.560000pt;}
.y87_c00353{bottom:399.973333pt;}
.y89_c00353{bottom:400.360000pt;}
.y88_c00353{bottom:401.106667pt;}
.y8d_c00353{bottom:401.693333pt;}
.y8c_c00353{bottom:402.640000pt;}
.y8b_c00353{bottom:403.026667pt;}
.y8a_c00353{bottom:403.040000pt;}
.y83_c00353{bottom:416.733333pt;}
.y86_c00353{bottom:417.306667pt;}
.y85_c00353{bottom:417.693333pt;}
.y80_c00353{bottom:418.440000pt;}
.y84_c00353{bottom:419.400000pt;}
.y7f_c00353{bottom:420.360000pt;}
.y81_c00353{bottom:420.560000pt;}
.y82_c00353{bottom:421.306667pt;}
.y7e_c00353{bottom:435.773333pt;}
.y7d_c00353{bottom:437.306667pt;}
.y7c_c00353{bottom:437.693333pt;}
.y7b_c00353{bottom:453.106667pt;}
.y7a_c00353{bottom:455.026667pt;}
.y79_c00353{bottom:469.693333pt;}
.y76_c00353{bottom:470.440000pt;}
.y77_c00353{bottom:472.360000pt;}
.y78_c00353{bottom:472.560000pt;}
.y73_c00353{bottom:489.106667pt;}
.y75_c00353{bottom:489.893333pt;}
.y74_c00353{bottom:491.026667pt;}
.y72_c00353{bottom:506.440000pt;}
.y71_c00353{bottom:508.360000pt;}
.y6d_c00353{bottom:521.693333pt;}
.y70_c00353{bottom:523.773333pt;}
.y6c_c00353{bottom:524.560000pt;}
.y6e_c00353{bottom:524.733333pt;}
.y6f_c00353{bottom:525.693333pt;}
.y6b_c00353{bottom:539.773333pt;}
.y68_c00353{bottom:541.106667pt;}
.y69_c00353{bottom:542.640000pt;}
.y6a_c00353{bottom:543.026667pt;}
.y64_c00353{bottom:558.440000pt;}
.y67_c00353{bottom:559.226667pt;}
.y66_c00353{bottom:560.360000pt;}
.y65_c00353{bottom:560.560000pt;}
.y61_c00353{bottom:575.026667pt;}
.y63_c00353{bottom:575.773333pt;}
.y5e_c00353{bottom:575.973333pt;}
.y5f_c00353{bottom:577.106667pt;}
.y5d_c00353{bottom:577.693333pt;}
.y62_c00353{bottom:577.893333pt;}
.y60_c00353{bottom:579.026667pt;}
.y5c_c00353{bottom:592.360000pt;}
.y5b_c00353{bottom:593.493333pt;}
.y5a_c00353{bottom:594.440000pt;}
.y59_c00353{bottom:596.360000pt;}
.y56_c00353{bottom:611.773333pt;}
.y58_c00353{bottom:612.733333pt;}
.y57_c00353{bottom:613.693333pt;}
.y53_c00353{bottom:627.773333pt;}
.y55_c00353{bottom:628.733333pt;}
.y52_c00353{bottom:631.026667pt;}
.y54_c00353{bottom:631.973333pt;}
.y50_c00353{bottom:646.440000pt;}
.y51_c00353{bottom:647.226667pt;}
.y4f_c00353{bottom:648.360000pt;}
.y4b_c00353{bottom:663.773333pt;}
.y4e_c00353{bottom:664.733333pt;}
.y4c_c00353{bottom:665.693333pt;}
.y4d_c00353{bottom:665.893333pt;}
.y4a_c00353{bottom:681.106667pt;}
.y49_c00353{bottom:682.066667pt;}
.y48_c00353{bottom:683.026667pt;}
.y47_c00353{bottom:698.440000pt;}
.y44_c00353{bottom:699.400000pt;}
.y43_c00353{bottom:700.360000pt;}
.y46_c00353{bottom:700.560000pt;}
.y45_c00353{bottom:701.693333pt;}
.y42_c00353{bottom:715.773333pt;}
.y40_c00353{bottom:715.973333pt;}
.y41_c00353{bottom:717.693333pt;}
.y3d_c00353{bottom:717.893333pt;}
.y3e_c00353{bottom:718.640000pt;}
.y3f_c00353{bottom:719.026667pt;}
.y3c_c00353{bottom:733.106667pt;}
.y39_c00353{bottom:734.440000pt;}
.y38_c00353{bottom:735.026667pt;}
.y3a_c00353{bottom:735.973333pt;}
.y3b_c00353{bottom:736.360000pt;}
.y36_c00353{bottom:749.693333pt;}
.y34_c00353{bottom:751.026667pt;}
.y35_c00353{bottom:751.773333pt;}
.y37_c00353{bottom:752.733333pt;}
.y33_c00353{bottom:753.693333pt;}
.y31_c00353{bottom:768.733333pt;}
.y30_c00353{bottom:769.106667pt;}
.y32_c00353{bottom:769.893333pt;}
.y2f_c00353{bottom:771.026667pt;}
.y2d_c00353{bottom:786.066667pt;}
.y2e_c00353{bottom:786.440000pt;}
.y2c_c00353{bottom:788.360000pt;}
.y29_c00353{bottom:803.773333pt;}
.y28_c00353{bottom:804.560000pt;}
.y2b_c00353{bottom:804.733333pt;}
.y2a_c00353{bottom:805.306667pt;}
.y27_c00353{bottom:805.693333pt;}
.y26_c00353{bottom:821.106667pt;}
.y25_c00353{bottom:822.066667pt;}
.y23_c00353{bottom:822.440000pt;}
.y24_c00353{bottom:822.640000pt;}
.y22_c00353{bottom:823.026667pt;}
.y21_c00353{bottom:839.773333pt;}
.y20_c00353{bottom:841.693333pt;}
.y1d_c00353{bottom:857.106667pt;}
.y1e_c00353{bottom:857.893333pt;}
.y1f_c00353{bottom:858.640000pt;}
.y1c_c00353{bottom:859.026667pt;}
.y19_c00353{bottom:874.440000pt;}
.y1b_c00353{bottom:875.226667pt;}
.y17_c00353{bottom:875.973333pt;}
.y18_c00353{bottom:876.360000pt;}
.y1a_c00353{bottom:877.306667pt;}
.y13_c00353{bottom:890.640000pt;}
.y15_c00353{bottom:891.400000pt;}
.y11_c00353{bottom:891.773333pt;}
.y16_c00353{bottom:892.560000pt;}
.y14_c00353{bottom:893.306667pt;}
.y12_c00353{bottom:893.693333pt;}
.yf_c00353{bottom:908.733333pt;}
.ye_c00353{bottom:909.893333pt;}
.y10_c00353{bottom:910.066667pt;}
.yd_c00353{bottom:910.640000pt;}
.yc_c00353{bottom:911.026667pt;}
.yb_c00353{bottom:926.440000pt;}
.y9_c00353{bottom:927.226667pt;}
.y8_c00353{bottom:927.400000pt;}
.ya_c00353{bottom:928.360000pt;}
.y5_c00353{bottom:943.773333pt;}
.y6_c00353{bottom:944.733333pt;}
.y4_c00353{bottom:945.693333pt;}
.y7_c00353{bottom:945.893333pt;}
.y3_c00353{bottom:946.640000pt;}
.y2_c00353{bottom:977.693333pt;}
.y1_c00353{bottom:979.600000pt;}
.h8_c00353{height:3.739141pt;}
.h9_c00353{height:14.890964pt;}
.h6_c00353{height:20.466875pt;}
.h1_c00353{height:22.303646pt;}
.h3_c00353{height:27.879557pt;}
.h2_c00353{height:31.618698pt;}
.h5_c00353{height:35.357839pt;}
.h4_c00353{height:39.031380pt;}
.h7_c00353{height:42.770521pt;}
.h0_c00353{height:1186.666667pt;}
.w0_c00353{width:782.666667pt;}
.x0_c00353{left:0.000000pt;}
.x100_c00353{left:133.333333pt;}
.xb9_c00353{left:134.293333pt;}
.x46_c00353{left:136.000000pt;}
.x2_c00353{left:136.960000pt;}
.xe5_c00353{left:148.000000pt;}
.xaa_c00353{left:148.960000pt;}
.x79_c00353{left:150.666667pt;}
.xbe_c00353{left:152.000000pt;}
.x35_c00353{left:153.706667pt;}
.x8c_c00353{left:157.333333pt;}
.x74_c00353{left:159.626667pt;}
.x98_c00353{left:161.706667pt;}
.xef_c00353{left:162.666667pt;}
.x9e_c00353{left:164.000000pt;}
.xe1_c00353{left:168.000000pt;}
.x3_c00353{left:169.333333pt;}
.x101_c00353{left:172.000000pt;}
.xfc_c00353{left:173.706667pt;}
.x11_c00353{left:174.666667pt;}
.x47_c00353{left:175.626667pt;}
.x36_c00353{left:177.706667pt;}
.x52_c00353{left:178.666667pt;}
.x87_c00353{left:180.373333pt;}
.x27_c00353{left:181.333333pt;}
.xe2_c00353{left:183.040000pt;}
.x1c_c00353{left:184.000000pt;}
.x8d_c00353{left:185.333333pt;}
.x81_c00353{left:186.666667pt;}
.xd8_c00353{left:190.666667pt;}
.xd2_c00353{left:192.373333pt;}
.x53_c00353{left:193.333333pt;}
.xab_c00353{left:195.040000pt;}
.xdc_c00353{left:196.000000pt;}
.xa6_c00353{left:197.333333pt;}
.x4_c00353{left:198.666667pt;}
.x48_c00353{left:203.040000pt;}
.x37_c00353{left:204.000000pt;}
.x9f_c00353{left:204.960000pt;}
.xc6_c00353{left:210.666667pt;}
.xdd_c00353{left:213.706667pt;}
.x1d_c00353{left:214.666667pt;}
.xba_c00353{left:216.000000pt;}
.xa7_c00353{left:217.333333pt;}
.x10c_c00353{left:218.666667pt;}
.x12_c00353{left:220.000000pt;}
.x28_c00353{left:220.960000pt;}
.x102_c00353{left:222.666667pt;}
.x5e_c00353{left:223.626667pt;}
.x38_c00353{left:225.706667pt;}
.xfe_c00353{left:228.000000pt;}
.x54_c00353{left:229.706667pt;}
.x5_c00353{left:231.040000pt;}
.x75_c00353{left:232.000000pt;}
.x6a_c00353{left:233.706667pt;}
.x88_c00353{left:236.373333pt;}
.xbf_c00353{left:237.333333pt;}
.xde_c00353{left:238.666667pt;}
.x5f_c00353{left:243.040000pt;}
.xf3_c00353{left:244.000000pt;}
.x99_c00353{left:245.333333pt;}
.x13_c00353{left:247.040000pt;}
.x29_c00353{left:248.373333pt;}
.x39_c00353{left:249.706667pt;}
.x1e_c00353{left:252.000000pt;}
.xc0_c00353{left:253.706667pt;}
.x49_c00353{left:255.040000pt;}
.x7a_c00353{left:256.373333pt;}
.xd9_c00353{left:258.666667pt;}
.xac_c00353{left:261.333333pt;}
.x6_c00353{left:263.040000pt;}
.xf6_c00353{left:265.333333pt;}
.x10d_c00353{left:267.626667pt;}
.x60_c00353{left:269.706667pt;}
.xd3_c00353{left:272.373333pt;}
.x55_c00353{left:275.040000pt;}
.xa0_c00353{left:277.333333pt;}
.xcb_c00353{left:278.666667pt;}
.x1f_c00353{left:280.000000pt;}
.x82_c00353{left:281.333333pt;}
.x4a_c00353{left:282.666667pt;}
.x6b_c00353{left:285.706667pt;}
.xb4_c00353{left:287.626667pt;}
.x93_c00353{left:289.333333pt;}
.x76_c00353{left:291.040000pt;}
.xd4_c00353{left:292.960000pt;}
.xcc_c00353{left:295.040000pt;}
.x20_c00353{left:296.000000pt;}
.x3a_c00353{left:297.333333pt;}
.x10e_c00353{left:301.333333pt;}
.x108_c00353{left:302.666667pt;}
.x2a_c00353{left:303.626667pt;}
.x8e_c00353{left:304.960000pt;}
.x21_c00353{left:306.666667pt;}
.x14_c00353{left:309.706667pt;}
.xad_c00353{left:312.000000pt;}
.xee_c00353{left:314.293333pt;}
.xc7_c00353{left:315.626667pt;}
.x6c_c00353{left:317.706667pt;}
.xcd_c00353{left:318.666667pt;}
.x2b_c00353{left:319.626667pt;}
.x61_c00353{left:321.333333pt;}
.x7_c00353{left:322.666667pt;}
.x77_c00353{left:324.373333pt;}
.xa1_c00353{left:327.626667pt;}
.x56_c00353{left:329.706667pt;}
.x4b_c00353{left:330.666667pt;}
.xe6_c00353{left:331.626667pt;}
.x103_c00353{left:333.706667pt;}
.x8f_c00353{left:334.666667pt;}
.xbb_c00353{left:335.626667pt;}
.x62_c00353{left:337.333333pt;}
.x2c_c00353{left:338.293333pt;}
.x6d_c00353{left:342.293333pt;}
.x3b_c00353{left:343.626667pt;}
.xa8_c00353{left:345.706667pt;}
.x78_c00353{left:348.373333pt;}
.x89_c00353{left:349.333333pt;}
.x109_c00353{left:351.040000pt;}
.xae_c00353{left:352.000000pt;}
.xa2_c00353{left:356.000000pt;}
.xd5_c00353{left:357.333333pt;}
.xf4_c00353{left:358.666667pt;}
.x1_c00353{left:360.000000pt;}
.x22_c00353{left:361.333333pt;}
.xbc_c00353{left:362.666667pt;}
.x2d_c00353{left:365.333333pt;}
.x104_c00353{left:366.293333pt;}
.xa9_c00353{left:369.333333pt;}
.x94_c00353{left:371.040000pt;}
.x9a_c00353{left:372.000000pt;}
.xc1_c00353{left:373.333333pt;}
.x57_c00353{left:377.333333pt;}
.x2e_c00353{left:379.040000pt;}
.xaf_c00353{left:380.000000pt;}
.x8_c00353{left:381.333333pt;}
.x6e_c00353{left:382.666667pt;}
.x3c_c00353{left:384.000000pt;}
.x4c_c00353{left:385.333333pt;}
.x15_c00353{left:388.373333pt;}
.xff_c00353{left:391.040000pt;}
.x10a_c00353{left:393.333333pt;}
.xf7_c00353{left:394.666667pt;}
.x83_c00353{left:396.000000pt;}
.x4d_c00353{left:397.333333pt;}
.xf8_c00353{left:399.040000pt;}
.x7b_c00353{left:400.373333pt;}
.x10f_c00353{left:402.093333pt;}
.xf0_c00353{left:404.000000pt;}
.x63_c00353{left:405.706667pt;}
.x95_c00353{left:407.626667pt;}
.x6f_c00353{left:411.040000pt;}
.xc2_c00353{left:413.333333pt;}
.x23_c00353{left:415.040000pt;}
.xe7_c00353{left:416.373333pt;}
.x9_c00353{left:418.293333pt;}
.x3d_c00353{left:420.373333pt;}
.xe3_c00353{left:422.293333pt;}
.x58_c00353{left:423.626667pt;}
.x7c_c00353{left:425.333333pt;}
.x9b_c00353{left:426.666667pt;}
.xf5_c00353{left:429.333333pt;}
.x64_c00353{left:430.666667pt;}
.x4e_c00353{left:433.333333pt;}
.x110_c00353{left:434.466667pt;}
.xa_c00353{left:436.000000pt;}
.x16_c00353{left:439.040000pt;}
.xc8_c00353{left:440.000000pt;}
.x9c_c00353{left:441.706667pt;}
.x3e_c00353{left:442.666667pt;}
.x2f_c00353{left:444.373333pt;}
.xe9_c00353{left:445.333333pt;}
.x8a_c00353{left:446.293333pt;}
.xf9_c00353{left:448.373333pt;}
.xd1_c00353{left:449.706667pt;}
.xa3_c00353{left:451.040000pt;}
.x84_c00353{left:455.040000pt;}
.xb5_c00353{left:456.000000pt;}
.xb0_c00353{left:457.333333pt;}
.xb_c00353{left:459.040000pt;}
.x96_c00353{left:461.333333pt;}
.xce_c00353{left:463.626667pt;}
.x7d_c00353{left:466.293333pt;}
.x17_c00353{left:468.373333pt;}
.xc9_c00353{left:472.000000pt;}
.xbd_c00353{left:473.333333pt;}
.xea_c00353{left:474.293333pt;}
.x30_c00353{left:475.626667pt;}
.x3f_c00353{left:477.333333pt;}
.x59_c00353{left:479.040000pt;}
.x7e_c00353{left:484.373333pt;}
.x65_c00353{left:485.333333pt;}
.x18_c00353{left:492.373333pt;}
.x40_c00353{left:493.333333pt;}
.xc_c00353{left:495.040000pt;}
.xf1_c00353{left:496.000000pt;}
.xe4_c00353{left:497.706667pt;}
.x24_c00353{left:498.666667pt;}
.xc3_c00353{left:500.960000pt;}
.x5a_c00353{left:503.040000pt;}
.x66_c00353{left:504.373333pt;}
.x41_c00353{left:505.333333pt;}
.x70_c00353{left:506.293333pt;}
.x4f_c00353{left:508.373333pt;}
.xfa_c00353{left:509.333333pt;}
.x90_c00353{left:511.626667pt;}
.x85_c00353{left:515.040000pt;}
.x31_c00353{left:517.333333pt;}
.xdf_c00353{left:518.666667pt;}
.x71_c00353{left:523.040000pt;}
.x111_c00353{left:524.373333pt;}
.xb6_c00353{left:526.666667pt;}
.xd_c00353{left:527.626667pt;}
.x67_c00353{left:529.333333pt;}
.xe0_c00353{left:530.666667pt;}
.x97_c00353{left:532.000000pt;}
.x42_c00353{left:533.333333pt;}
.xfd_c00353{left:534.293333pt;}
.x5b_c00353{left:536.960000pt;}
.xeb_c00353{left:540.000000pt;}
.x105_c00353{left:541.333333pt;}
.xd6_c00353{left:544.373333pt;}
.x25_c00353{left:546.293333pt;}
.x112_c00353{left:547.626667pt;}
.xfb_c00353{left:549.333333pt;}
.xda_c00353{left:552.000000pt;}
.xa4_c00353{left:554.293333pt;}
.xcf_c00353{left:556.373333pt;}
.x7f_c00353{left:557.333333pt;}
.x91_c00353{left:558.666667pt;}
.x19_c00353{left:562.293333pt;}
.x5c_c00353{left:564.000000pt;}
.x10b_c00353{left:565.706667pt;}
.x43_c00353{left:566.666667pt;}
.x9d_c00353{left:568.000000pt;}
.xe_c00353{left:570.666667pt;}
.x50_c00353{left:572.000000pt;}
.xd7_c00353{left:572.960000pt;}
.x72_c00353{left:574.666667pt;}
.xb1_c00353{left:576.373333pt;}
.xdb_c00353{left:577.706667pt;}
.x1a_c00353{left:578.666667pt;}
.x32_c00353{left:582.666667pt;}
.xb7_c00353{left:584.000000pt;}
.x26_c00353{left:585.333333pt;}
.x8b_c00353{left:588.373333pt;}
.x92_c00353{left:589.706667pt;}
.x44_c00353{left:590.666667pt;}
.x68_c00353{left:592.373333pt;}
.x33_c00353{left:595.040000pt;}
.x5d_c00353{left:596.373333pt;}
.xf2_c00353{left:597.333333pt;}
.xc4_c00353{left:598.666667pt;}
.x86_c00353{left:599.626667pt;}
.x106_c00353{left:601.333333pt;}
.xa5_c00353{left:603.040000pt;}
.x80_c00353{left:604.000000pt;}
.x51_c00353{left:605.333333pt;}
.xec_c00353{left:606.293333pt;}
.xb2_c00353{left:611.626667pt;}
.xf_c00353{left:613.333333pt;}
.xd0_c00353{left:615.040000pt;}
.x1b_c00353{left:616.000000pt;}
.xb8_c00353{left:617.706667pt;}
.x69_c00353{left:618.666667pt;}
.x45_c00353{left:619.626667pt;}
.xc5_c00353{left:622.666667pt;}
.x34_c00353{left:627.040000pt;}
.xb3_c00353{left:628.373333pt;}
.xca_c00353{left:629.706667pt;}
.x10_c00353{left:631.040000pt;}
.xe8_c00353{left:633.333333pt;}
.xed_c00353{left:634.666667pt;}
.x107_c00353{left:636.000000pt;}
.x73_c00353{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9d5a37d5f6ec11f329bb1e87.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8b_c00354{transform:matrix(0.199907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199907,0.000000,0.000000,0.250000,0,0);}
.m19_c00354{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.ma8_c00354{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m68_c00354{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m11_c00354{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m4f_c00354{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m89_c00354{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mb3_c00354{transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);}
.m4a_c00354{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mc3_c00354{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.m70_c00354{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m85_c00354{transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);}
.m1c_c00354{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m42_c00354{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m41_c00354{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m51_c00354{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.mba_c00354{transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);}
.m69_c00354{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m40_c00354{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m56_c00354{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m91_c00354{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.m49_c00354{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m4_c00354{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m1b_c00354{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m74_c00354{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m80_c00354{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m6c_c00354{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m25_c00354{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m22_c00354{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);}
.m13_c00354{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mc7_c00354{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m5_c00354{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m9b_c00354{transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);}
.m5f_c00354{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m60_c00354{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m8a_c00354{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m46_c00354{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.m37_c00354{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m52_c00354{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m54_c00354{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m7a_c00354{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m50_c00354{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mbb_c00354{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m9c_c00354{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m12_c00354{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m95_c00354{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m5d_c00354{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m44_c00354{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m6f_c00354{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m48_c00354{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m7d_c00354{transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);}
.mc_c00354{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m1d_c00354{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m6a_c00354{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m47_c00354{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m9d_c00354{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m6e_c00354{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mac_c00354{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m31_c00354{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m71_c00354{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.ma1_c00354{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m43_c00354{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m65_c00354{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m23_c00354{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.mb5_c00354{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m3f_c00354{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m72_c00354{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mb8_c00354{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m59_c00354{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.mbf_c00354{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mb2_c00354{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.ma2_c00354{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m83_c00354{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m62_c00354{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.m53_c00354{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m9a_c00354{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m76_c00354{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m21_c00354{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mc2_c00354{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mad_c00354{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.m26_c00354{transform:matrix(0.461765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461765,0.000000,0.000000,0.250000,0,0);}
.mbd_c00354{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00354{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.m14_c00354{transform:matrix(0.467069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467069,0.000000,0.000000,0.250000,0,0);}
.m3e_c00354{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m1a_c00354{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.ma9_c00354{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m3d_c00354{transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);}
.m16_c00354{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m75_c00354{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mb9_c00354{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m1f_c00354{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mae_c00354{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m2b_c00354{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m88_c00354{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m1_c00354{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m90_c00354{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.maa_c00354{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m9e_c00354{transform:matrix(0.496218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496218,0.000000,0.000000,0.250000,0,0);}
.m38_c00354{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_c00354{transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);}
.m3b_c00354{transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);}
.mc8_c00354{transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);}
.m15_c00354{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.ma7_c00354{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m35_c00354{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m4c_c00354{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m27_c00354{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m5b_c00354{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m5c_c00354{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m3a_c00354{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m77_c00354{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m7_c00354{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m58_c00354{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.mb_c00354{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mc5_c00354{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m29_c00354{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m67_c00354{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mab_c00354{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m6_c00354{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m7b_c00354{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.mb0_c00354{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m20_c00354{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m81_c00354{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m84_c00354{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m79_c00354{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m10_c00354{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m4d_c00354{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m66_c00354{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m2f_c00354{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m57_c00354{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mf_c00354{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m73_c00354{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.maf_c00354{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.mb1_c00354{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.ma4_c00354{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m2a_c00354{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m39_c00354{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m87_c00354{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m4e_c00354{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.ma6_c00354{transform:matrix(0.546846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546846,0.000000,0.000000,0.250000,0,0);}
.mc4_c00354{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m98_c00354{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m99_c00354{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m7f_c00354{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m64_c00354{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mbc_c00354{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m8c_c00354{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m1e_c00354{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m63_c00354{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m9_c00354{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m8_c00354{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.ma_c00354{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m86_c00354{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m7e_c00354{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m5e_c00354{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.m2c_c00354{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m92_c00354{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m45_c00354{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m3c_c00354{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m97_c00354{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m6b_c00354{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.mc6_c00354{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m61_c00354{transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);}
.m2_c00354{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m8d_c00354{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mb6_c00354{transform:matrix(0.594398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594398,0.000000,0.000000,0.250000,0,0);}
.m93_c00354{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.ma3_c00354{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.mc0_c00354{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mb4_c00354{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.m32_c00354{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m18_c00354{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m82_c00354{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m36_c00354{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m34_c00354{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m2d_c00354{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m96_c00354{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);}
.m55_c00354{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.ma5_c00354{transform:matrix(0.630705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630705,0.000000,0.000000,0.250000,0,0);}
.m24_c00354{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m6d_c00354{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.md_c00354{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m0_c00354{transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);}
.m94_c00354{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.ma0_c00354{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m4b_c00354{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m9f_c00354{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m2e_c00354{transform:matrix(0.709135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709135,0.000000,0.000000,0.250000,0,0);}
.me_c00354{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m28_c00354{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m78_c00354{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m5a_c00354{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m3_c00354{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m30_c00354{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mb7_c00354{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m7c_c00354{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mbe_c00354{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m8e_c00354{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m33_c00354{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m17_c00354{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,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;}
}
.ws2_c00354{word-spacing:-6.184625px;}
.ws1_c00354{word-spacing:-1.755360px;}
.ws3_c00354{word-spacing:0.000000px;}
.ws0_c00354{word-spacing:1.330038px;}
.fc0_c00354{color:transparent;}
.fs0_c00354{font-size:18.720000px;}
.fs6_c00354{font-size:20.400000px;}
.fs3_c00354{font-size:25.500000px;}
.fs1_c00354{font-size:28.920000px;}
.fs4_c00354{font-size:32.340000px;}
.fs2_c00354{font-size:35.700000px;}
.fs5_c00354{font-size:39.120000px;}
.y0_c00354{bottom:0.000000px;}
.yb4_c00354{bottom:311.745000px;}
.yb5_c00354{bottom:313.905000px;}
.yb0_c00354{bottom:331.245000px;}
.yb2_c00354{bottom:332.325000px;}
.yaf_c00354{bottom:333.405000px;}
.yb1_c00354{bottom:333.630000px;}
.yb3_c00354{bottom:334.905000px;}
.yac_c00354{bottom:350.745000px;}
.yab_c00354{bottom:350.970000px;}
.yad_c00354{bottom:351.825000px;}
.yaa_c00354{bottom:352.245000px;}
.ya8_c00354{bottom:352.905000px;}
.yae_c00354{bottom:353.130000px;}
.ya9_c00354{bottom:354.405000px;}
.ya4_c00354{bottom:370.245000px;}
.ya2_c00354{bottom:371.745000px;}
.ya1_c00354{bottom:372.405000px;}
.ya6_c00354{bottom:372.630000px;}
.ya5_c00354{bottom:373.470000px;}
.ya3_c00354{bottom:373.905000px;}
.ya7_c00354{bottom:374.970000px;}
.y9f_c00354{bottom:392.970000px;}
.y9e_c00354{bottom:393.405000px;}
.ya0_c00354{bottom:394.470000px;}
.y9d_c00354{bottom:410.745000px;}
.y9b_c00354{bottom:411.630000px;}
.y9c_c00354{bottom:411.825000px;}
.y9a_c00354{bottom:412.905000px;}
.y98_c00354{bottom:430.245000px;}
.y97_c00354{bottom:432.405000px;}
.y99_c00354{bottom:432.630000px;}
.y93_c00354{bottom:449.745000px;}
.y96_c00354{bottom:450.825000px;}
.y95_c00354{bottom:451.245000px;}
.y91_c00354{bottom:451.905000px;}
.y92_c00354{bottom:452.130000px;}
.y94_c00354{bottom:452.970000px;}
.y8e_c00354{bottom:468.405000px;}
.y90_c00354{bottom:470.745000px;}
.y8d_c00354{bottom:471.405000px;}
.y8c_c00354{bottom:471.630000px;}
.y8f_c00354{bottom:472.905000px;}
.y8b_c00354{bottom:490.245000px;}
.y87_c00354{bottom:490.905000px;}
.y89_c00354{bottom:491.130000px;}
.y8a_c00354{bottom:491.970000px;}
.y88_c00354{bottom:492.405000px;}
.y85_c00354{bottom:509.745000px;}
.y86_c00354{bottom:511.905000px;}
.y83_c00354{bottom:529.245000px;}
.y84_c00354{bottom:531.405000px;}
.y81_c00354{bottom:547.905000px;}
.y80_c00354{bottom:548.745000px;}
.y7f_c00354{bottom:549.630000px;}
.y82_c00354{bottom:549.825000px;}
.y7e_c00354{bottom:550.905000px;}
.y79_c00354{bottom:566.970000px;}
.y77_c00354{bottom:568.245000px;}
.y78_c00354{bottom:569.130000px;}
.y76_c00354{bottom:570.405000px;}
.y7c_c00354{bottom:570.630000px;}
.y7d_c00354{bottom:570.825000px;}
.y7b_c00354{bottom:571.470000px;}
.y7a_c00354{bottom:571.905000px;}
.y72_c00354{bottom:587.745000px;}
.y75_c00354{bottom:589.470000px;}
.y74_c00354{bottom:589.905000px;}
.y73_c00354{bottom:590.130000px;}
.y6f_c00354{bottom:607.245000px;}
.y71_c00354{bottom:608.745000px;}
.y6e_c00354{bottom:609.405000px;}
.y70_c00354{bottom:610.905000px;}
.y69_c00354{bottom:626.745000px;}
.y6d_c00354{bottom:628.245000px;}
.y6a_c00354{bottom:629.130000px;}
.y6c_c00354{bottom:629.970000px;}
.y6b_c00354{bottom:630.405000px;}
.y66_c00354{bottom:647.745000px;}
.y67_c00354{bottom:648.630000px;}
.y68_c00354{bottom:649.905000px;}
.y64_c00354{bottom:667.245000px;}
.y63_c00354{bottom:668.745000px;}
.y61_c00354{bottom:669.405000px;}
.y62_c00354{bottom:669.630000px;}
.y65_c00354{bottom:670.905000px;}
.y5d_c00354{bottom:686.745000px;}
.y5f_c00354{bottom:688.245000px;}
.y5c_c00354{bottom:688.905000px;}
.y60_c00354{bottom:689.325000px;}
.y5e_c00354{bottom:690.405000px;}
.y5b_c00354{bottom:706.680000px;}
.y59_c00354{bottom:707.325000px;}
.y5a_c00354{bottom:707.745000px;}
.y57_c00354{bottom:708.405000px;}
.y58_c00354{bottom:709.470000px;}
.y56_c00354{bottom:725.745000px;}
.y53_c00354{bottom:726.825000px;}
.y55_c00354{bottom:727.245000px;}
.y54_c00354{bottom:727.905000px;}
.y52_c00354{bottom:728.130000px;}
.y4e_c00354{bottom:745.245000px;}
.y4d_c00354{bottom:747.405000px;}
.y50_c00354{bottom:747.630000px;}
.y4c_c00354{bottom:748.470000px;}
.y4f_c00354{bottom:748.905000px;}
.y51_c00354{bottom:749.130000px;}
.y4b_c00354{bottom:766.245000px;}
.y4a_c00354{bottom:767.970000px;}
.y47_c00354{bottom:785.745000px;}
.y48_c00354{bottom:787.905000px;}
.y49_c00354{bottom:788.970000px;}
.y43_c00354{bottom:805.245000px;}
.y44_c00354{bottom:807.405000px;}
.y46_c00354{bottom:807.630000px;}
.y45_c00354{bottom:808.470000px;}
.y40_c00354{bottom:824.745000px;}
.y3f_c00354{bottom:826.905000px;}
.y41_c00354{bottom:827.130000px;}
.y42_c00354{bottom:828.405000px;}
.y3e_c00354{bottom:844.245000px;}
.y3d_c00354{bottom:845.745000px;}
.y3c_c00354{bottom:847.905000px;}
.y3a_c00354{bottom:865.245000px;}
.y39_c00354{bottom:865.905000px;}
.y3b_c00354{bottom:866.970000px;}
.y38_c00354{bottom:867.405000px;}
.y31_c00354{bottom:884.745000px;}
.y33_c00354{bottom:885.630000px;}
.y36_c00354{bottom:885.825000px;}
.y34_c00354{bottom:886.470000px;}
.y35_c00354{bottom:886.905000px;}
.y37_c00354{bottom:887.130000px;}
.y32_c00354{bottom:887.970000px;}
.y30_c00354{bottom:904.245000px;}
.y2f_c00354{bottom:905.130000px;}
.y2e_c00354{bottom:906.405000px;}
.y2b_c00354{bottom:923.745000px;}
.y2a_c00354{bottom:925.905000px;}
.y2d_c00354{bottom:926.130000px;}
.y2c_c00354{bottom:926.970000px;}
.y29_c00354{bottom:943.245000px;}
.y28_c00354{bottom:944.325000px;}
.y27_c00354{bottom:945.405000px;}
.y1d_c00354{bottom:962.745000px;}
.y23_c00354{bottom:962.970000px;}
.y26_c00354{bottom:963.405000px;}
.y22_c00354{bottom:963.825000px;}
.y25_c00354{bottom:964.245000px;}
.y1e_c00354{bottom:964.470000px;}
.y20_c00354{bottom:964.905000px;}
.y1f_c00354{bottom:965.130000px;}
.y24_c00354{bottom:965.325000px;}
.y21_c00354{bottom:966.405000px;}
.y1b_c00354{bottom:981.405000px;}
.y19_c00354{bottom:983.745000px;}
.y17_c00354{bottom:984.405000px;}
.y18_c00354{bottom:984.630000px;}
.y1a_c00354{bottom:985.470000px;}
.y1c_c00354{bottom:985.905000px;}
.y13_c00354{bottom:1001.745000px;}
.y15_c00354{bottom:1003.905000px;}
.y14_c00354{bottom:1004.970000px;}
.y16_c00354{bottom:1005.405000px;}
.yc_c00354{bottom:1020.180000px;}
.ye_c00354{bottom:1021.245000px;}
.yd_c00354{bottom:1022.325000px;}
.y12_c00354{bottom:1022.550000px;}
.y11_c00354{bottom:1022.745000px;}
.yf_c00354{bottom:1023.405000px;}
.y10_c00354{bottom:1024.905000px;}
.y9_c00354{bottom:1042.245000px;}
.y7_c00354{bottom:1043.130000px;}
.ya_c00354{bottom:1043.325000px;}
.y6_c00354{bottom:1043.970000px;}
.y8_c00354{bottom:1044.405000px;}
.yb_c00354{bottom:1044.630000px;}
.y5_c00354{bottom:1061.745000px;}
.y4_c00354{bottom:1062.630000px;}
.y3_c00354{bottom:1063.905000px;}
.y2_c00354{bottom:1099.905000px;}
.y1_c00354{bottom:1103.130000px;}
.h1_c00354{height:23.025234px;}
.h7_c00354{height:25.091602px;}
.h4_c00354{height:31.364502px;}
.h2_c00354{height:35.571035px;}
.h5_c00354{height:39.777568px;}
.h3_c00354{height:43.910303px;}
.h6_c00354{height:48.116836px;}
.h0_c00354{height:1335.000000px;}
.w0_c00354{width:880.500000px;}
.x0_c00354{left:0.000000px;}
.x3_c00354{left:151.500000px;}
.x1c_c00354{left:152.580000px;}
.xac_c00354{left:154.080000px;}
.xcc_c00354{left:156.000000px;}
.x4_c00354{left:168.000000px;}
.x91_c00354{left:169.500000px;}
.xcf_c00354{left:170.580000px;}
.x10_c00354{left:172.920000px;}
.xe5_c00354{left:177.420000px;}
.xc4_c00354{left:178.920000px;}
.xba_c00354{left:180.000000px;}
.x4b_c00354{left:182.580000px;}
.x1d_c00354{left:184.920000px;}
.x92_c00354{left:192.000000px;}
.x5_c00354{left:196.500000px;}
.x57_c00354{left:198.000000px;}
.xd6_c00354{left:199.920000px;}
.x35_c00354{left:201.000000px;}
.x4f_c00354{left:202.500000px;}
.xdc_c00354{left:204.000000px;}
.x40_c00354{left:208.500000px;}
.x6_c00354{left:210.000000px;}
.x8b_c00354{left:211.500000px;}
.x11_c00354{left:212.580000px;}
.x82_c00354{left:214.500000px;}
.xea_c00354{left:215.580000px;}
.x7a_c00354{left:218.580000px;}
.x58_c00354{left:221.145000px;}
.x60_c00354{left:223.080000px;}
.xb2_c00354{left:225.000000px;}
.x41_c00354{left:229.920000px;}
.x2a_c00354{left:231.000000px;}
.xbb_c00354{left:234.000000px;}
.x1e_c00354{left:236.775000px;}
.x7b_c00354{left:238.920000px;}
.x75_c00354{left:240.000000px;}
.x59_c00354{left:241.920000px;}
.xd0_c00354{left:244.080000px;}
.x4c_c00354{left:247.275000px;}
.xf5_c00354{left:248.580000px;}
.xb3_c00354{left:253.920000px;}
.x61_c00354{left:255.000000px;}
.xad_c00354{left:256.920000px;}
.x7_c00354{left:261.000000px;}
.x50_c00354{left:262.920000px;}
.x83_c00354{left:264.420000px;}
.x7c_c00354{left:267.000000px;}
.x42_c00354{left:268.080000px;}
.xcd_c00354{left:270.420000px;}
.x12_c00354{left:271.920000px;}
.xe6_c00354{left:274.500000px;}
.x62_c00354{left:276.000000px;}
.x1f_c00354{left:277.500000px;}
.xb4_c00354{left:280.500000px;}
.xfa_c00354{left:282.000000px;}
.xeb_c00354{left:283.500000px;}
.x6e_c00354{left:285.000000px;}
.xc5_c00354{left:286.920000px;}
.x2b_c00354{left:288.420000px;}
.x8c_c00354{left:292.500000px;}
.xa0_c00354{left:294.420000px;}
.x93_c00354{left:295.920000px;}
.xce_c00354{left:297.855000px;}
.xe7_c00354{left:298.920000px;}
.x13_c00354{left:300.000000px;}
.x76_c00354{left:303.000000px;}
.x63_c00354{left:306.000000px;}
.x6f_c00354{left:309.420000px;}
.x5a_c00354{left:313.080000px;}
.x99_c00354{left:316.920000px;}
.x20_c00354{left:318.000000px;}
.x7d_c00354{left:319.920000px;}
.xa1_c00354{left:322.080000px;}
.xbc_c00354{left:324.000000px;}
.x43_c00354{left:325.500000px;}
.xe8_c00354{left:327.420000px;}
.xec_c00354{left:328.500000px;}
.xa5_c00354{left:330.000000px;}
.x2c_c00354{left:332.580000px;}
.x70_c00354{left:336.000000px;}
.x8_c00354{left:337.920000px;}
.x9d_c00354{left:339.000000px;}
.x84_c00354{left:340.500000px;}
.xf6_c00354{left:344.580000px;}
.x51_c00354{left:346.080000px;}
.xd7_c00354{left:348.000000px;}
.x4d_c00354{left:349.500000px;}
.x21_c00354{left:351.855000px;}
.x94_c00354{left:354.000000px;}
.x5b_c00354{left:355.080000px;}
.xd1_c00354{left:357.000000px;}
.x14_c00354{left:358.500000px;}
.x85_c00354{left:360.420000px;}
.x9_c00354{left:361.920000px;}
.x36_c00354{left:363.000000px;}
.x2d_c00354{left:364.500000px;}
.xbe_c00354{left:365.580000px;}
.xa6_c00354{left:367.920000px;}
.xed_c00354{left:369.420000px;}
.xe1_c00354{left:370.500000px;}
.x4e_c00354{left:373.275000px;}
.x77_c00354{left:375.000000px;}
.xf7_c00354{left:376.080000px;}
.x44_c00354{left:378.000000px;}
.x64_c00354{left:379.500000px;}
.x2e_c00354{left:383.580000px;}
.x86_c00354{left:385.920000px;}
.xa2_c00354{left:388.500000px;}
.xb5_c00354{left:390.000000px;}
.x37_c00354{left:391.920000px;}
.xdd_c00354{left:393.000000px;}
.xe9_c00354{left:394.920000px;}
.xa7_c00354{left:396.420000px;}
.x65_c00354{left:397.920000px;}
.xfb_c00354{left:399.000000px;}
.x1_c00354{left:402.000000px;}
.x71_c00354{left:404.580000px;}
.x95_c00354{left:406.500000px;}
.x52_c00354{left:408.420000px;}
.xf0_c00354{left:412.080000px;}
.xd2_c00354{left:414.000000px;}
.xae_c00354{left:415.500000px;}
.xc9_c00354{left:419.580000px;}
.x66_c00354{left:423.000000px;}
.x15_c00354{left:424.500000px;}
.xa_c00354{left:426.420000px;}
.xbf_c00354{left:433.500000px;}
.x45_c00354{left:435.000000px;}
.x22_c00354{left:439.500000px;}
.x8d_c00354{left:441.000000px;}
.x5c_c00354{left:445.920000px;}
.x38_c00354{left:447.000000px;}
.xc6_c00354{left:450.000000px;}
.x9e_c00354{left:451.500000px;}
.x87_c00354{left:452.580000px;}
.x2f_c00354{left:454.500000px;}
.xbd_c00354{left:456.000000px;}
.xb_c00354{left:460.080000px;}
.xf1_c00354{left:462.855000px;}
.x72_c00354{left:466.500000px;}
.x16_c00354{left:468.000000px;}
.x30_c00354{left:471.000000px;}
.xc7_c00354{left:472.500000px;}
.xa8_c00354{left:475.500000px;}
.x39_c00354{left:478.500000px;}
.x7e_c00354{left:479.580000px;}
.x46_c00354{left:481.500000px;}
.x17_c00354{left:483.000000px;}
.x23_c00354{left:486.000000px;}
.x31_c00354{left:487.920000px;}
.xc_c00354{left:490.080000px;}
.x67_c00354{left:493.080000px;}
.x3a_c00354{left:499.500000px;}
.x96_c00354{left:500.580000px;}
.x24_c00354{left:503.580000px;}
.xd3_c00354{left:505.080000px;}
.x53_c00354{left:507.000000px;}
.xca_c00354{left:508.500000px;}
.x68_c00354{left:511.920000px;}
.xe2_c00354{left:513.000000px;}
.xa9_c00354{left:519.000000px;}
.x78_c00354{left:522.000000px;}
.x9f_c00354{left:523.500000px;}
.xd8_c00354{left:524.580000px;}
.x5d_c00354{left:526.080000px;}
.x9a_c00354{left:530.775000px;}
.xd_c00354{left:532.920000px;}
.x7f_c00354{left:535.500000px;}
.x69_c00354{left:537.645000px;}
.xde_c00354{left:538.920000px;}
.x3b_c00354{left:540.420000px;}
.x8e_c00354{left:543.420000px;}
.x47_c00354{left:544.500000px;}
.xe3_c00354{left:546.000000px;}
.x5e_c00354{left:547.920000px;}
.x25_c00354{left:550.500000px;}
.x54_c00354{left:553.500000px;}
.x32_c00354{left:555.000000px;}
.x18_c00354{left:558.000000px;}
.xb6_c00354{left:559.500000px;}
.xc0_c00354{left:562.500000px;}
.xdf_c00354{left:564.645000px;}
.xee_c00354{left:565.920000px;}
.xf8_c00354{left:568.920000px;}
.xf2_c00354{left:570.000000px;}
.x48_c00354{left:574.080000px;}
.x26_c00354{left:576.420000px;}
.x6a_c00354{left:577.920000px;}
.xc8_c00354{left:579.420000px;}
.xb7_c00354{left:580.920000px;}
.xc1_c00354{left:582.420000px;}
.xf3_c00354{left:585.420000px;}
.x3c_c00354{left:587.580000px;}
.x9b_c00354{left:591.000000px;}
.xcb_c00354{left:592.500000px;}
.xaf_c00354{left:595.920000px;}
.xe_c00354{left:598.080000px;}
.x88_c00354{left:603.000000px;}
.x80_c00354{left:604.500000px;}
.x27_c00354{left:607.080000px;}
.xb8_c00354{left:609.000000px;}
.xc2_c00354{left:610.500000px;}
.x3d_c00354{left:616.500000px;}
.xe4_c00354{left:618.420000px;}
.x79_c00354{left:619.500000px;}
.x55_c00354{left:620.580000px;}
.x89_c00354{left:622.500000px;}
.xb0_c00354{left:631.920000px;}
.x33_c00354{left:633.000000px;}
.x19_c00354{left:634.920000px;}
.xd4_c00354{left:636.000000px;}
.x81_c00354{left:637.500000px;}
.x28_c00354{left:639.420000px;}
.x9c_c00354{left:640.920000px;}
.xe0_c00354{left:642.000000px;}
.x6b_c00354{left:643.500000px;}
.x97_c00354{left:646.500000px;}
.xa3_c00354{left:647.580000px;}
.xd9_c00354{left:650.580000px;}
.x34_c00354{left:652.080000px;}
.xc3_c00354{left:653.355000px;}
.x8f_c00354{left:655.920000px;}
.xaa_c00354{left:657.000000px;}
.x3e_c00354{left:658.080000px;}
.xf_c00354{left:660.000000px;}
.x49_c00354{left:661.275000px;}
.xb9_c00354{left:666.000000px;}
.x98_c00354{left:669.000000px;}
.x56_c00354{left:670.275000px;}
.x6c_c00354{left:671.580000px;}
.x1a_c00354{left:675.000000px;}
.xab_c00354{left:680.145000px;}
.xa4_c00354{left:681.420000px;}
.xda_c00354{left:682.920000px;}
.x90_c00354{left:684.000000px;}
.xfc_c00354{left:685.500000px;}
.x29_c00354{left:687.000000px;}
.x6d_c00354{left:688.500000px;}
.x73_c00354{left:694.500000px;}
.x8a_c00354{left:695.775000px;}
.x5f_c00354{left:697.920000px;}
.x1b_c00354{left:699.420000px;}
.xef_c00354{left:700.920000px;}
.x4a_c00354{left:702.420000px;}
.xd5_c00354{left:703.500000px;}
.x2_c00354{left:704.580000px;}
.xdb_c00354{left:706.920000px;}
.x3f_c00354{left:709.500000px;}
.x74_c00354{left:712.500000px;}
.xb1_c00354{left:717.000000px;}
.xf4_c00354{left:718.080000px;}
.xfd_c00354{left:723.000000px;}
.xf9_c00354{left:726.000000px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.ls0_c00354{letter-spacing:0.000000pt;}
.ws2_c00354{word-spacing:-5.497444pt;}
.ws1_c00354{word-spacing:-1.560320pt;}
.ws3_c00354{word-spacing:0.000000pt;}
.ws0_c00354{word-spacing:1.182256pt;}
.fs0_c00354{font-size:16.640000pt;}
.fs6_c00354{font-size:18.133333pt;}
.fs3_c00354{font-size:22.666667pt;}
.fs1_c00354{font-size:25.706667pt;}
.fs4_c00354{font-size:28.746667pt;}
.fs2_c00354{font-size:31.733333pt;}
.fs5_c00354{font-size:34.773333pt;}
.y0_c00354{bottom:0.000000pt;}
.yb4_c00354{bottom:277.106667pt;}
.yb5_c00354{bottom:279.026667pt;}
.yb0_c00354{bottom:294.440000pt;}
.yb2_c00354{bottom:295.400000pt;}
.yaf_c00354{bottom:296.360000pt;}
.yb1_c00354{bottom:296.560000pt;}
.yb3_c00354{bottom:297.693333pt;}
.yac_c00354{bottom:311.773333pt;}
.yab_c00354{bottom:311.973333pt;}
.yad_c00354{bottom:312.733333pt;}
.yaa_c00354{bottom:313.106667pt;}
.ya8_c00354{bottom:313.693333pt;}
.yae_c00354{bottom:313.893333pt;}
.ya9_c00354{bottom:315.026667pt;}
.ya4_c00354{bottom:329.106667pt;}
.ya2_c00354{bottom:330.440000pt;}
.ya1_c00354{bottom:331.026667pt;}
.ya6_c00354{bottom:331.226667pt;}
.ya5_c00354{bottom:331.973333pt;}
.ya3_c00354{bottom:332.360000pt;}
.ya7_c00354{bottom:333.306667pt;}
.y9f_c00354{bottom:349.306667pt;}
.y9e_c00354{bottom:349.693333pt;}
.ya0_c00354{bottom:350.640000pt;}
.y9d_c00354{bottom:365.106667pt;}
.y9b_c00354{bottom:365.893333pt;}
.y9c_c00354{bottom:366.066667pt;}
.y9a_c00354{bottom:367.026667pt;}
.y98_c00354{bottom:382.440000pt;}
.y97_c00354{bottom:384.360000pt;}
.y99_c00354{bottom:384.560000pt;}
.y93_c00354{bottom:399.773333pt;}
.y96_c00354{bottom:400.733333pt;}
.y95_c00354{bottom:401.106667pt;}
.y91_c00354{bottom:401.693333pt;}
.y92_c00354{bottom:401.893333pt;}
.y94_c00354{bottom:402.640000pt;}
.y8e_c00354{bottom:416.360000pt;}
.y90_c00354{bottom:418.440000pt;}
.y8d_c00354{bottom:419.026667pt;}
.y8c_c00354{bottom:419.226667pt;}
.y8f_c00354{bottom:420.360000pt;}
.y8b_c00354{bottom:435.773333pt;}
.y87_c00354{bottom:436.360000pt;}
.y89_c00354{bottom:436.560000pt;}
.y8a_c00354{bottom:437.306667pt;}
.y88_c00354{bottom:437.693333pt;}
.y85_c00354{bottom:453.106667pt;}
.y86_c00354{bottom:455.026667pt;}
.y83_c00354{bottom:470.440000pt;}
.y84_c00354{bottom:472.360000pt;}
.y81_c00354{bottom:487.026667pt;}
.y80_c00354{bottom:487.773333pt;}
.y7f_c00354{bottom:488.560000pt;}
.y82_c00354{bottom:488.733333pt;}
.y7e_c00354{bottom:489.693333pt;}
.y79_c00354{bottom:503.973333pt;}
.y77_c00354{bottom:505.106667pt;}
.y78_c00354{bottom:505.893333pt;}
.y76_c00354{bottom:507.026667pt;}
.y7c_c00354{bottom:507.226667pt;}
.y7d_c00354{bottom:507.400000pt;}
.y7b_c00354{bottom:507.973333pt;}
.y7a_c00354{bottom:508.360000pt;}
.y72_c00354{bottom:522.440000pt;}
.y75_c00354{bottom:523.973333pt;}
.y74_c00354{bottom:524.360000pt;}
.y73_c00354{bottom:524.560000pt;}
.y6f_c00354{bottom:539.773333pt;}
.y71_c00354{bottom:541.106667pt;}
.y6e_c00354{bottom:541.693333pt;}
.y70_c00354{bottom:543.026667pt;}
.y69_c00354{bottom:557.106667pt;}
.y6d_c00354{bottom:558.440000pt;}
.y6a_c00354{bottom:559.226667pt;}
.y6c_c00354{bottom:559.973333pt;}
.y6b_c00354{bottom:560.360000pt;}
.y66_c00354{bottom:575.773333pt;}
.y67_c00354{bottom:576.560000pt;}
.y68_c00354{bottom:577.693333pt;}
.y64_c00354{bottom:593.106667pt;}
.y63_c00354{bottom:594.440000pt;}
.y61_c00354{bottom:595.026667pt;}
.y62_c00354{bottom:595.226667pt;}
.y65_c00354{bottom:596.360000pt;}
.y5d_c00354{bottom:610.440000pt;}
.y5f_c00354{bottom:611.773333pt;}
.y5c_c00354{bottom:612.360000pt;}
.y60_c00354{bottom:612.733333pt;}
.y5e_c00354{bottom:613.693333pt;}
.y5b_c00354{bottom:628.160000pt;}
.y59_c00354{bottom:628.733333pt;}
.y5a_c00354{bottom:629.106667pt;}
.y57_c00354{bottom:629.693333pt;}
.y58_c00354{bottom:630.640000pt;}
.y56_c00354{bottom:645.106667pt;}
.y53_c00354{bottom:646.066667pt;}
.y55_c00354{bottom:646.440000pt;}
.y54_c00354{bottom:647.026667pt;}
.y52_c00354{bottom:647.226667pt;}
.y4e_c00354{bottom:662.440000pt;}
.y4d_c00354{bottom:664.360000pt;}
.y50_c00354{bottom:664.560000pt;}
.y4c_c00354{bottom:665.306667pt;}
.y4f_c00354{bottom:665.693333pt;}
.y51_c00354{bottom:665.893333pt;}
.y4b_c00354{bottom:681.106667pt;}
.y4a_c00354{bottom:682.640000pt;}
.y47_c00354{bottom:698.440000pt;}
.y48_c00354{bottom:700.360000pt;}
.y49_c00354{bottom:701.306667pt;}
.y43_c00354{bottom:715.773333pt;}
.y44_c00354{bottom:717.693333pt;}
.y46_c00354{bottom:717.893333pt;}
.y45_c00354{bottom:718.640000pt;}
.y40_c00354{bottom:733.106667pt;}
.y3f_c00354{bottom:735.026667pt;}
.y41_c00354{bottom:735.226667pt;}
.y42_c00354{bottom:736.360000pt;}
.y3e_c00354{bottom:750.440000pt;}
.y3d_c00354{bottom:751.773333pt;}
.y3c_c00354{bottom:753.693333pt;}
.y3a_c00354{bottom:769.106667pt;}
.y39_c00354{bottom:769.693333pt;}
.y3b_c00354{bottom:770.640000pt;}
.y38_c00354{bottom:771.026667pt;}
.y31_c00354{bottom:786.440000pt;}
.y33_c00354{bottom:787.226667pt;}
.y36_c00354{bottom:787.400000pt;}
.y34_c00354{bottom:787.973333pt;}
.y35_c00354{bottom:788.360000pt;}
.y37_c00354{bottom:788.560000pt;}
.y32_c00354{bottom:789.306667pt;}
.y30_c00354{bottom:803.773333pt;}
.y2f_c00354{bottom:804.560000pt;}
.y2e_c00354{bottom:805.693333pt;}
.y2b_c00354{bottom:821.106667pt;}
.y2a_c00354{bottom:823.026667pt;}
.y2d_c00354{bottom:823.226667pt;}
.y2c_c00354{bottom:823.973333pt;}
.y29_c00354{bottom:838.440000pt;}
.y28_c00354{bottom:839.400000pt;}
.y27_c00354{bottom:840.360000pt;}
.y1d_c00354{bottom:855.773333pt;}
.y23_c00354{bottom:855.973333pt;}
.y26_c00354{bottom:856.360000pt;}
.y22_c00354{bottom:856.733333pt;}
.y25_c00354{bottom:857.106667pt;}
.y1e_c00354{bottom:857.306667pt;}
.y20_c00354{bottom:857.693333pt;}
.y1f_c00354{bottom:857.893333pt;}
.y24_c00354{bottom:858.066667pt;}
.y21_c00354{bottom:859.026667pt;}
.y1b_c00354{bottom:872.360000pt;}
.y19_c00354{bottom:874.440000pt;}
.y17_c00354{bottom:875.026667pt;}
.y18_c00354{bottom:875.226667pt;}
.y1a_c00354{bottom:875.973333pt;}
.y1c_c00354{bottom:876.360000pt;}
.y13_c00354{bottom:890.440000pt;}
.y15_c00354{bottom:892.360000pt;}
.y14_c00354{bottom:893.306667pt;}
.y16_c00354{bottom:893.693333pt;}
.yc_c00354{bottom:906.826667pt;}
.ye_c00354{bottom:907.773333pt;}
.yd_c00354{bottom:908.733333pt;}
.y12_c00354{bottom:908.933333pt;}
.y11_c00354{bottom:909.106667pt;}
.yf_c00354{bottom:909.693333pt;}
.y10_c00354{bottom:911.026667pt;}
.y9_c00354{bottom:926.440000pt;}
.y7_c00354{bottom:927.226667pt;}
.ya_c00354{bottom:927.400000pt;}
.y6_c00354{bottom:927.973333pt;}
.y8_c00354{bottom:928.360000pt;}
.yb_c00354{bottom:928.560000pt;}
.y5_c00354{bottom:943.773333pt;}
.y4_c00354{bottom:944.560000pt;}
.y3_c00354{bottom:945.693333pt;}
.y2_c00354{bottom:977.693333pt;}
.y1_c00354{bottom:980.560000pt;}
.h1_c00354{height:20.466875pt;}
.h7_c00354{height:22.303646pt;}
.h4_c00354{height:27.879557pt;}
.h2_c00354{height:31.618698pt;}
.h5_c00354{height:35.357839pt;}
.h3_c00354{height:39.031380pt;}
.h6_c00354{height:42.770521pt;}
.h0_c00354{height:1186.666667pt;}
.w0_c00354{width:782.666667pt;}
.x0_c00354{left:0.000000pt;}
.x3_c00354{left:134.666667pt;}
.x1c_c00354{left:135.626667pt;}
.xac_c00354{left:136.960000pt;}
.xcc_c00354{left:138.666667pt;}
.x4_c00354{left:149.333333pt;}
.x91_c00354{left:150.666667pt;}
.xcf_c00354{left:151.626667pt;}
.x10_c00354{left:153.706667pt;}
.xe5_c00354{left:157.706667pt;}
.xc4_c00354{left:159.040000pt;}
.xba_c00354{left:160.000000pt;}
.x4b_c00354{left:162.293333pt;}
.x1d_c00354{left:164.373333pt;}
.x92_c00354{left:170.666667pt;}
.x5_c00354{left:174.666667pt;}
.x57_c00354{left:176.000000pt;}
.xd6_c00354{left:177.706667pt;}
.x35_c00354{left:178.666667pt;}
.x4f_c00354{left:180.000000pt;}
.xdc_c00354{left:181.333333pt;}
.x40_c00354{left:185.333333pt;}
.x6_c00354{left:186.666667pt;}
.x8b_c00354{left:188.000000pt;}
.x11_c00354{left:188.960000pt;}
.x82_c00354{left:190.666667pt;}
.xea_c00354{left:191.626667pt;}
.x7a_c00354{left:194.293333pt;}
.x58_c00354{left:196.573333pt;}
.x60_c00354{left:198.293333pt;}
.xb2_c00354{left:200.000000pt;}
.x41_c00354{left:204.373333pt;}
.x2a_c00354{left:205.333333pt;}
.xbb_c00354{left:208.000000pt;}
.x1e_c00354{left:210.466667pt;}
.x7b_c00354{left:212.373333pt;}
.x75_c00354{left:213.333333pt;}
.x59_c00354{left:215.040000pt;}
.xd0_c00354{left:216.960000pt;}
.x4c_c00354{left:219.800000pt;}
.xf5_c00354{left:220.960000pt;}
.xb3_c00354{left:225.706667pt;}
.x61_c00354{left:226.666667pt;}
.xad_c00354{left:228.373333pt;}
.x7_c00354{left:232.000000pt;}
.x50_c00354{left:233.706667pt;}
.x83_c00354{left:235.040000pt;}
.x7c_c00354{left:237.333333pt;}
.x42_c00354{left:238.293333pt;}
.xcd_c00354{left:240.373333pt;}
.x12_c00354{left:241.706667pt;}
.xe6_c00354{left:244.000000pt;}
.x62_c00354{left:245.333333pt;}
.x1f_c00354{left:246.666667pt;}
.xb4_c00354{left:249.333333pt;}
.xfa_c00354{left:250.666667pt;}
.xeb_c00354{left:252.000000pt;}
.x6e_c00354{left:253.333333pt;}
.xc5_c00354{left:255.040000pt;}
.x2b_c00354{left:256.373333pt;}
.x8c_c00354{left:260.000000pt;}
.xa0_c00354{left:261.706667pt;}
.x93_c00354{left:263.040000pt;}
.xce_c00354{left:264.760000pt;}
.xe7_c00354{left:265.706667pt;}
.x13_c00354{left:266.666667pt;}
.x76_c00354{left:269.333333pt;}
.x63_c00354{left:272.000000pt;}
.x6f_c00354{left:275.040000pt;}
.x5a_c00354{left:278.293333pt;}
.x99_c00354{left:281.706667pt;}
.x20_c00354{left:282.666667pt;}
.x7d_c00354{left:284.373333pt;}
.xa1_c00354{left:286.293333pt;}
.xbc_c00354{left:288.000000pt;}
.x43_c00354{left:289.333333pt;}
.xe8_c00354{left:291.040000pt;}
.xec_c00354{left:292.000000pt;}
.xa5_c00354{left:293.333333pt;}
.x2c_c00354{left:295.626667pt;}
.x70_c00354{left:298.666667pt;}
.x8_c00354{left:300.373333pt;}
.x9d_c00354{left:301.333333pt;}
.x84_c00354{left:302.666667pt;}
.xf6_c00354{left:306.293333pt;}
.x51_c00354{left:307.626667pt;}
.xd7_c00354{left:309.333333pt;}
.x4d_c00354{left:310.666667pt;}
.x21_c00354{left:312.760000pt;}
.x94_c00354{left:314.666667pt;}
.x5b_c00354{left:315.626667pt;}
.xd1_c00354{left:317.333333pt;}
.x14_c00354{left:318.666667pt;}
.x85_c00354{left:320.373333pt;}
.x9_c00354{left:321.706667pt;}
.x36_c00354{left:322.666667pt;}
.x2d_c00354{left:324.000000pt;}
.xbe_c00354{left:324.960000pt;}
.xa6_c00354{left:327.040000pt;}
.xed_c00354{left:328.373333pt;}
.xe1_c00354{left:329.333333pt;}
.x4e_c00354{left:331.800000pt;}
.x77_c00354{left:333.333333pt;}
.xf7_c00354{left:334.293333pt;}
.x44_c00354{left:336.000000pt;}
.x64_c00354{left:337.333333pt;}
.x2e_c00354{left:340.960000pt;}
.x86_c00354{left:343.040000pt;}
.xa2_c00354{left:345.333333pt;}
.xb5_c00354{left:346.666667pt;}
.x37_c00354{left:348.373333pt;}
.xdd_c00354{left:349.333333pt;}
.xe9_c00354{left:351.040000pt;}
.xa7_c00354{left:352.373333pt;}
.x65_c00354{left:353.706667pt;}
.xfb_c00354{left:354.666667pt;}
.x1_c00354{left:357.333333pt;}
.x71_c00354{left:359.626667pt;}
.x95_c00354{left:361.333333pt;}
.x52_c00354{left:363.040000pt;}
.xf0_c00354{left:366.293333pt;}
.xd2_c00354{left:368.000000pt;}
.xae_c00354{left:369.333333pt;}
.xc9_c00354{left:372.960000pt;}
.x66_c00354{left:376.000000pt;}
.x15_c00354{left:377.333333pt;}
.xa_c00354{left:379.040000pt;}
.xbf_c00354{left:385.333333pt;}
.x45_c00354{left:386.666667pt;}
.x22_c00354{left:390.666667pt;}
.x8d_c00354{left:392.000000pt;}
.x5c_c00354{left:396.373333pt;}
.x38_c00354{left:397.333333pt;}
.xc6_c00354{left:400.000000pt;}
.x9e_c00354{left:401.333333pt;}
.x87_c00354{left:402.293333pt;}
.x2f_c00354{left:404.000000pt;}
.xbd_c00354{left:405.333333pt;}
.xb_c00354{left:408.960000pt;}
.xf1_c00354{left:411.426667pt;}
.x72_c00354{left:414.666667pt;}
.x16_c00354{left:416.000000pt;}
.x30_c00354{left:418.666667pt;}
.xc7_c00354{left:420.000000pt;}
.xa8_c00354{left:422.666667pt;}
.x39_c00354{left:425.333333pt;}
.x7e_c00354{left:426.293333pt;}
.x46_c00354{left:428.000000pt;}
.x17_c00354{left:429.333333pt;}
.x23_c00354{left:432.000000pt;}
.x31_c00354{left:433.706667pt;}
.xc_c00354{left:435.626667pt;}
.x67_c00354{left:438.293333pt;}
.x3a_c00354{left:444.000000pt;}
.x96_c00354{left:444.960000pt;}
.x24_c00354{left:447.626667pt;}
.xd3_c00354{left:448.960000pt;}
.x53_c00354{left:450.666667pt;}
.xca_c00354{left:452.000000pt;}
.x68_c00354{left:455.040000pt;}
.xe2_c00354{left:456.000000pt;}
.xa9_c00354{left:461.333333pt;}
.x78_c00354{left:464.000000pt;}
.x9f_c00354{left:465.333333pt;}
.xd8_c00354{left:466.293333pt;}
.x5d_c00354{left:467.626667pt;}
.x9a_c00354{left:471.800000pt;}
.xd_c00354{left:473.706667pt;}
.x7f_c00354{left:476.000000pt;}
.x69_c00354{left:477.906667pt;}
.xde_c00354{left:479.040000pt;}
.x3b_c00354{left:480.373333pt;}
.x8e_c00354{left:483.040000pt;}
.x47_c00354{left:484.000000pt;}
.xe3_c00354{left:485.333333pt;}
.x5e_c00354{left:487.040000pt;}
.x25_c00354{left:489.333333pt;}
.x54_c00354{left:492.000000pt;}
.x32_c00354{left:493.333333pt;}
.x18_c00354{left:496.000000pt;}
.xb6_c00354{left:497.333333pt;}
.xc0_c00354{left:500.000000pt;}
.xdf_c00354{left:501.906667pt;}
.xee_c00354{left:503.040000pt;}
.xf8_c00354{left:505.706667pt;}
.xf2_c00354{left:506.666667pt;}
.x48_c00354{left:510.293333pt;}
.x26_c00354{left:512.373333pt;}
.x6a_c00354{left:513.706667pt;}
.xc8_c00354{left:515.040000pt;}
.xb7_c00354{left:516.373333pt;}
.xc1_c00354{left:517.706667pt;}
.xf3_c00354{left:520.373333pt;}
.x3c_c00354{left:522.293333pt;}
.x9b_c00354{left:525.333333pt;}
.xcb_c00354{left:526.666667pt;}
.xaf_c00354{left:529.706667pt;}
.xe_c00354{left:531.626667pt;}
.x88_c00354{left:536.000000pt;}
.x80_c00354{left:537.333333pt;}
.x27_c00354{left:539.626667pt;}
.xb8_c00354{left:541.333333pt;}
.xc2_c00354{left:542.666667pt;}
.x3d_c00354{left:548.000000pt;}
.xe4_c00354{left:549.706667pt;}
.x79_c00354{left:550.666667pt;}
.x55_c00354{left:551.626667pt;}
.x89_c00354{left:553.333333pt;}
.xb0_c00354{left:561.706667pt;}
.x33_c00354{left:562.666667pt;}
.x19_c00354{left:564.373333pt;}
.xd4_c00354{left:565.333333pt;}
.x81_c00354{left:566.666667pt;}
.x28_c00354{left:568.373333pt;}
.x9c_c00354{left:569.706667pt;}
.xe0_c00354{left:570.666667pt;}
.x6b_c00354{left:572.000000pt;}
.x97_c00354{left:574.666667pt;}
.xa3_c00354{left:575.626667pt;}
.xd9_c00354{left:578.293333pt;}
.x34_c00354{left:579.626667pt;}
.xc3_c00354{left:580.760000pt;}
.x8f_c00354{left:583.040000pt;}
.xaa_c00354{left:584.000000pt;}
.x3e_c00354{left:584.960000pt;}
.xf_c00354{left:586.666667pt;}
.x49_c00354{left:587.800000pt;}
.xb9_c00354{left:592.000000pt;}
.x98_c00354{left:594.666667pt;}
.x56_c00354{left:595.800000pt;}
.x6c_c00354{left:596.960000pt;}
.x1a_c00354{left:600.000000pt;}
.xab_c00354{left:604.573333pt;}
.xa4_c00354{left:605.706667pt;}
.xda_c00354{left:607.040000pt;}
.x90_c00354{left:608.000000pt;}
.xfc_c00354{left:609.333333pt;}
.x29_c00354{left:610.666667pt;}
.x6d_c00354{left:612.000000pt;}
.x73_c00354{left:617.333333pt;}
.x8a_c00354{left:618.466667pt;}
.x5f_c00354{left:620.373333pt;}
.x1b_c00354{left:621.706667pt;}
.xef_c00354{left:623.040000pt;}
.x4a_c00354{left:624.373333pt;}
.xd5_c00354{left:625.333333pt;}
.x2_c00354{left:626.293333pt;}
.xdb_c00354{left:628.373333pt;}
.x3f_c00354{left:630.666667pt;}
.x74_c00354{left:633.333333pt;}
.xb1_c00354{left:637.333333pt;}
.xf4_c00354{left:638.293333pt;}
.xfd_c00354{left:642.666667pt;}
.xf9_c00354{left:645.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_22060feea94afb0d65fffa25.woff2')format("woff");}.ff1_c00355{font-family:ff1_c00355;line-height:1.688965;font-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_c00355{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00355{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m46_c00355{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m5_c00355{transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);}
.m2e_c00355{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m15_c00355{transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);}
.m0_c00355{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m21_c00355{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mcd_c00355{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m6e_c00355{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m23_c00355{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mec_c00355{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.me2_c00355{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m4c_c00355{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m16_c00355{transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);}
.mf0_c00355{transform:matrix(0.390560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390560,0.000000,0.000000,0.250000,0,0);}
.m69_c00355{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.me7_c00355{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m3b_c00355{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mbb_c00355{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mc7_c00355{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.md6_c00355{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m3d_c00355{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m5a_c00355{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m82_c00355{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mde_c00355{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.maf_c00355{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_c00355{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m3a_c00355{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mee_c00355{transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);}
.m27_c00355{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m39_c00355{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m8e_c00355{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mea_c00355{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m66_c00355{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m2a_c00355{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m42_c00355{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m2b_c00355{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.me9_c00355{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m32_c00355{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m8_c00355{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m9d_c00355{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m7e_c00355{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.ma0_c00355{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.m3c_c00355{transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);}
.m62_c00355{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.ma4_c00355{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m97_c00355{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.md4_c00355{transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);}
.m14_c00355{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m17_c00355{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.ma8_c00355{transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);}
.m1f_c00355{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mf5_c00355{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.ma5_c00355{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.me1_c00355{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mc9_c00355{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m68_c00355{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.me8_c00355{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m44_c00355{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m37_c00355{transform:matrix(0.428108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428108,0.000000,0.000000,0.250000,0,0);}
.m36_c00355{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.md_c00355{transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);}
.m8b_c00355{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m63_c00355{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m4e_c00355{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m11_c00355{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.md1_c00355{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m80_c00355{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mbd_c00355{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m18_c00355{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m9f_c00355{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m65_c00355{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m64_c00355{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.mf4_c00355{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m47_c00355{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.mbe_c00355{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.mdb_c00355{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.ma_c00355{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m48_c00355{transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);}
.mcb_c00355{transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);}
.me4_c00355{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.meb_c00355{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m5d_c00355{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.me3_c00355{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.mc_c00355{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.m9a_c00355{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m96_c00355{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.me0_c00355{transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);}
.m12_c00355{transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);}
.m75_c00355{transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);}
.m7f_c00355{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m53_c00355{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.m7d_c00355{transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);}
.mef_c00355{transform:matrix(0.460581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460581,0.000000,0.000000,0.250000,0,0);}
.mb4_c00355{transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);}
.m93_c00355{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.mcf_c00355{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.m10_c00355{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.mf_c00355{transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);}
.md5_c00355{transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);}
.m5b_c00355{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.md2_c00355{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m9b_c00355{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m8f_c00355{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m89_c00355{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m54_c00355{transform:matrix(0.483766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483766,0.000000,0.000000,0.250000,0,0);}
.m8c_c00355{transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);}
.m9_c00355{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m3f_c00355{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m2c_c00355{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m33_c00355{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m7c_c00355{transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);}
.mc6_c00355{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m86_c00355{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);}
.m6b_c00355{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mae_c00355{transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);}
.mb2_c00355{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m30_c00355{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m79_c00355{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.maa_c00355{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m85_c00355{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m45_c00355{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m60_c00355{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m38_c00355{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m73_c00355{transform:matrix(0.518235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518235,0.000000,0.000000,0.250000,0,0);}
.m7a_c00355{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.mc4_c00355{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mda_c00355{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m88_c00355{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mac_c00355{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m78_c00355{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mca_c00355{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mf3_c00355{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m20_c00355{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m77_c00355{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m5c_c00355{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m29_c00355{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m74_c00355{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m4d_c00355{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mcc_c00355{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m5f_c00355{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m76_c00355{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m43_c00355{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.md8_c00355{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m61_c00355{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m7b_c00355{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.md7_c00355{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m59_c00355{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m1b_c00355{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m1e_c00355{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m71_c00355{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m1c_c00355{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.me_c00355{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m4b_c00355{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m35_c00355{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m40_c00355{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.md9_c00355{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m6d_c00355{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m6f_c00355{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.mb9_c00355{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m56_c00355{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m8a_c00355{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m13_c00355{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.mc8_c00355{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m83_c00355{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.me5_c00355{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mb0_c00355{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m26_c00355{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.mba_c00355{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m5e_c00355{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m90_c00355{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m25_c00355{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.me6_c00355{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m81_c00355{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m55_c00355{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m91_c00355{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m95_c00355{transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);}
.mdf_c00355{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m1d_c00355{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.mbc_c00355{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m34_c00355{transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);}
.mc3_c00355{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.m31_c00355{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m49_c00355{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m51_c00355{transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);}
.m52_c00355{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m7_c00355{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m57_c00355{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mc0_c00355{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.mb6_c00355{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mb8_c00355{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m9c_c00355{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.mc1_c00355{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m94_c00355{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.m72_c00355{transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);}
.m4f_c00355{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.mad_c00355{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m6a_c00355{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.ma1_c00355{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m8d_c00355{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m98_c00355{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);}
.m84_c00355{transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);}
.m2_c00355{transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);}
.m1_c00355{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.mce_c00355{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m58_c00355{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m1a_c00355{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.m87_c00355{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m28_c00355{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.m99_c00355{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m6_c00355{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);}
.med_c00355{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);}
.ma3_c00355{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mb7_c00355{transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);}
.mb_c00355{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);}
.mbf_c00355{transform:matrix(0.651176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651176,0.000000,0.000000,0.250000,0,0);}
.m67_c00355{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m70_c00355{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m24_c00355{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.ma9_c00355{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m2d_c00355{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.mb5_c00355{transform:matrix(0.713235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713235,0.000000,0.000000,0.250000,0,0);}
.m3e_c00355{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.mf1_c00355{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m9e_c00355{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.mb1_c00355{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m50_c00355{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mc2_c00355{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mab_c00355{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m6c_c00355{transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);}
.m41_c00355{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.mf2_c00355{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mb3_c00355{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mc5_c00355{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mdd_c00355{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m92_c00355{transform:matrix(0.782853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782853,0.000000,0.000000,0.250000,0,0);}
.md0_c00355{transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);}
.ma6_c00355{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.mdc_c00355{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.ma7_c00355{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.ma2_c00355{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m3_c00355{transform:matrix(0.842949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.842949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.842949,0.000000,0.000000,0.250000,0,0);}
.md3_c00355{transform:matrix(3.728070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.728070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.728070,0.000000,0.000000,0.250000,0,0);}
.m4a_c00355{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m19_c00355{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00355{vertical-align:-6.000000px;}
.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;}
}
.ws1_c00355{word-spacing:-3.162277px;}
.ws2_c00355{word-spacing:-2.027785px;}
.ws3_c00355{word-spacing:0.000000px;}
.ws0_c00355{word-spacing:0.087123px;}
.fc0_c00355{color:transparent;}
.fs6_c00355{font-size:3.420000px;}
.fs3_c00355{font-size:18.720000px;}
.fs1_c00355{font-size:20.400000px;}
.fs5_c00355{font-size:25.500000px;}
.fs2_c00355{font-size:28.920000px;}
.fs4_c00355{font-size:32.340000px;}
.fs0_c00355{font-size:35.700000px;}
.y0_c00355{bottom:0.000000px;}
.yba_c00355{bottom:251.745000px;}
.yb9_c00355{bottom:252.630000px;}
.yb8_c00355{bottom:253.905000px;}
.yb6_c00355{bottom:269.325000px;}
.yb3_c00355{bottom:271.245000px;}
.yb5_c00355{bottom:272.325000px;}
.yb4_c00355{bottom:273.405000px;}
.yb7_c00355{bottom:273.630000px;}
.yb1_c00355{bottom:290.745000px;}
.yb0_c00355{bottom:292.905000px;}
.yb2_c00355{bottom:293.130000px;}
.yac_c00355{bottom:310.245000px;}
.yaf_c00355{bottom:310.470000px;}
.yae_c00355{bottom:311.745000px;}
.yab_c00355{bottom:312.405000px;}
.yaa_c00355{bottom:312.630000px;}
.yad_c00355{bottom:313.905000px;}
.ya8_c00355{bottom:331.245000px;}
.ya7_c00355{bottom:331.905000px;}
.ya9_c00355{bottom:333.405000px;}
.ya4_c00355{bottom:349.905000px;}
.ya5_c00355{bottom:350.745000px;}
.ya6_c00355{bottom:351.630000px;}
.ya3_c00355{bottom:352.905000px;}
.ya2_c00355{bottom:369.405000px;}
.ya0_c00355{bottom:370.245000px;}
.ya1_c00355{bottom:372.405000px;}
.y9b_c00355{bottom:389.745000px;}
.y9f_c00355{bottom:390.420000px;}
.y9e_c00355{bottom:390.825000px;}
.y9c_c00355{bottom:391.905000px;}
.y9d_c00355{bottom:392.130000px;}
.y96_c00355{bottom:409.245000px;}
.y99_c00355{bottom:410.745000px;}
.y95_c00355{bottom:411.405000px;}
.y9a_c00355{bottom:411.630000px;}
.y98_c00355{bottom:412.470000px;}
.y97_c00355{bottom:412.905000px;}
.y93_c00355{bottom:427.905000px;}
.y94_c00355{bottom:430.245000px;}
.y92_c00355{bottom:431.130000px;}
.y91_c00355{bottom:431.970000px;}
.y90_c00355{bottom:432.405000px;}
.y8e_c00355{bottom:449.745000px;}
.y8d_c00355{bottom:450.630000px;}
.y8f_c00355{bottom:451.470000px;}
.y8c_c00355{bottom:451.905000px;}
.y88_c00355{bottom:467.745000px;}
.y8a_c00355{bottom:469.245000px;}
.y8b_c00355{bottom:470.970000px;}
.y89_c00355{bottom:471.405000px;}
.y84_c00355{bottom:487.905000px;}
.y83_c00355{bottom:488.745000px;}
.y87_c00355{bottom:490.050000px;}
.y85_c00355{bottom:490.905000px;}
.y86_c00355{bottom:491.130000px;}
.y7f_c00355{bottom:508.245000px;}
.y82_c00355{bottom:509.745000px;}
.y7d_c00355{bottom:510.405000px;}
.y80_c00355{bottom:510.630000px;}
.y7e_c00355{bottom:511.470000px;}
.y81_c00355{bottom:511.905000px;}
.y78_c00355{bottom:527.745000px;}
.y7b_c00355{bottom:528.825000px;}
.y79_c00355{bottom:529.905000px;}
.y7c_c00355{bottom:530.130000px;}
.y7a_c00355{bottom:530.970000px;}
.y75_c00355{bottom:548.325000px;}
.y76_c00355{bottom:548.745000px;}
.y74_c00355{bottom:549.405000px;}
.y77_c00355{bottom:549.630000px;}
.y72_c00355{bottom:565.905000px;}
.y73_c00355{bottom:566.745000px;}
.y6d_c00355{bottom:566.970000px;}
.y6e_c00355{bottom:568.245000px;}
.y6f_c00355{bottom:569.130000px;}
.y71_c00355{bottom:569.970000px;}
.y70_c00355{bottom:570.405000px;}
.y6a_c00355{bottom:587.745000px;}
.y6c_c00355{bottom:588.630000px;}
.y6b_c00355{bottom:589.050000px;}
.y69_c00355{bottom:589.905000px;}
.y67_c00355{bottom:606.405000px;}
.y64_c00355{bottom:607.245000px;}
.y66_c00355{bottom:608.325000px;}
.y63_c00355{bottom:609.405000px;}
.y68_c00355{bottom:609.630000px;}
.y65_c00355{bottom:610.470000px;}
.y60_c00355{bottom:627.630000px;}
.y61_c00355{bottom:627.825000px;}
.y5f_c00355{bottom:628.905000px;}
.y62_c00355{bottom:629.970000px;}
.y5b_c00355{bottom:645.405000px;}
.y5c_c00355{bottom:646.245000px;}
.y5e_c00355{bottom:647.325000px;}
.y5a_c00355{bottom:648.405000px;}
.y5d_c00355{bottom:648.630000px;}
.y59_c00355{bottom:667.245000px;}
.y56_c00355{bottom:667.905000px;}
.y58_c00355{bottom:669.405000px;}
.y57_c00355{bottom:669.420000px;}
.y54_c00355{bottom:684.405000px;}
.y52_c00355{bottom:687.405000px;}
.y55_c00355{bottom:688.470000px;}
.y53_c00355{bottom:688.905000px;}
.y51_c00355{bottom:706.245000px;}
.y50_c00355{bottom:707.325000px;}
.y4f_c00355{bottom:708.405000px;}
.y4e_c00355{bottom:725.745000px;}
.y4d_c00355{bottom:727.470000px;}
.y4c_c00355{bottom:727.905000px;}
.y49_c00355{bottom:745.245000px;}
.y48_c00355{bottom:746.130000px;}
.y47_c00355{bottom:747.405000px;}
.y4a_c00355{bottom:747.630000px;}
.y4b_c00355{bottom:748.470000px;}
.y44_c00355{bottom:764.745000px;}
.y46_c00355{bottom:766.470000px;}
.y45_c00355{bottom:766.905000px;}
.y43_c00355{bottom:784.245000px;}
.y42_c00355{bottom:785.970000px;}
.y41_c00355{bottom:786.405000px;}
.y3d_c00355{bottom:803.745000px;}
.y3e_c00355{bottom:804.825000px;}
.y3b_c00355{bottom:805.905000px;}
.y3f_c00355{bottom:806.325000px;}
.y3c_c00355{bottom:806.970000px;}
.y40_c00355{bottom:807.405000px;}
.y36_c00355{bottom:823.245000px;}
.y37_c00355{bottom:824.745000px;}
.y35_c00355{bottom:825.405000px;}
.y38_c00355{bottom:825.825000px;}
.y3a_c00355{bottom:826.470000px;}
.y39_c00355{bottom:826.905000px;}
.y32_c00355{bottom:841.905000px;}
.y31_c00355{bottom:844.245000px;}
.y2e_c00355{bottom:844.905000px;}
.y34_c00355{bottom:845.130000px;}
.y33_c00355{bottom:845.970000px;}
.y30_c00355{bottom:846.405000px;}
.y2f_c00355{bottom:846.420000px;}
.y2d_c00355{bottom:863.745000px;}
.y2c_c00355{bottom:883.245000px;}
.y2a_c00355{bottom:884.130000px;}
.y29_c00355{bottom:885.405000px;}
.y2b_c00355{bottom:885.420000px;}
.y28_c00355{bottom:901.905000px;}
.y25_c00355{bottom:902.745000px;}
.y27_c00355{bottom:903.630000px;}
.y26_c00355{bottom:904.050000px;}
.y24_c00355{bottom:920.325000px;}
.y1e_c00355{bottom:921.405000px;}
.y20_c00355{bottom:922.245000px;}
.y1f_c00355{bottom:922.470000px;}
.y22_c00355{bottom:923.130000px;}
.y23_c00355{bottom:923.325000px;}
.y21_c00355{bottom:924.405000px;}
.y18_c00355{bottom:941.745000px;}
.y1c_c00355{bottom:941.970000px;}
.y19_c00355{bottom:943.245000px;}
.y1a_c00355{bottom:943.905000px;}
.y1b_c00355{bottom:944.130000px;}
.y1d_c00355{bottom:945.405000px;}
.y12_c00355{bottom:961.245000px;}
.y15_c00355{bottom:962.745000px;}
.y13_c00355{bottom:962.970000px;}
.y14_c00355{bottom:963.405000px;}
.y16_c00355{bottom:964.470000px;}
.y17_c00355{bottom:964.905000px;}
.yd_c00355{bottom:980.745000px;}
.ye_c00355{bottom:982.245000px;}
.y11_c00355{bottom:983.130000px;}
.y10_c00355{bottom:984.405000px;}
.yf_c00355{bottom:984.420000px;}
.yb_c00355{bottom:1014.825000px;}
.yc_c00355{bottom:1015.050000px;}
.ya_c00355{bottom:1015.905000px;}
.y9_c00355{bottom:1016.970000px;}
.y7_c00355{bottom:1035.825000px;}
.y8_c00355{bottom:1036.905000px;}
.y6_c00355{bottom:1039.050000px;}
.y5_c00355{bottom:1058.745000px;}
.y3_c00355{bottom:1060.905000px;}
.y4_c00355{bottom:1061.130000px;}
.y1_c00355{bottom:1097.745000px;}
.y2_c00355{bottom:1099.050000px;}
.h7_c00355{height:4.206533px;}
.h4_c00355{height:23.025234px;}
.h2_c00355{height:25.091602px;}
.h6_c00355{height:31.364502px;}
.h3_c00355{height:35.571035px;}
.h5_c00355{height:39.777568px;}
.h1_c00355{height:43.910303px;}
.h0_c00355{height:1335.000000px;}
.w0_c00355{width:880.500000px;}
.x0_c00355{left:0.000000px;}
.xf2_c00355{left:149.580000px;}
.xa2_c00355{left:151.920000px;}
.x52_c00355{left:153.420000px;}
.x1_c00355{left:154.500000px;}
.x25_c00355{left:155.775000px;}
.xf_c00355{left:166.080000px;}
.xb0_c00355{left:167.355000px;}
.x19_c00355{left:169.920000px;}
.xe3_c00355{left:177.000000px;}
.x3d_c00355{left:180.420000px;}
.xbc_c00355{left:183.000000px;}
.xf3_c00355{left:184.080000px;}
.xa3_c00355{left:187.920000px;}
.x26_c00355{left:189.000000px;}
.x5a_c00355{left:190.500000px;}
.xe9_c00355{left:191.580000px;}
.x64_c00355{left:193.500000px;}
.xa8_c00355{left:195.000000px;}
.x34_c00355{left:196.080000px;}
.xb7_c00355{left:199.920000px;}
.x10_c00355{left:201.000000px;}
.x8a_c00355{left:202.500000px;}
.x100_c00355{left:203.580000px;}
.xc5_c00355{left:205.500000px;}
.xf4_c00355{left:207.855000px;}
.x1a_c00355{left:208.920000px;}
.xb1_c00355{left:210.420000px;}
.x83_c00355{left:212.580000px;}
.xed_c00355{left:214.500000px;}
.x65_c00355{left:216.420000px;}
.x5b_c00355{left:217.500000px;}
.x101_c00355{left:220.920000px;}
.xcd_c00355{left:223.500000px;}
.x102_c00355{left:224.580000px;}
.xd6_c00355{left:226.920000px;}
.xbd_c00355{left:229.500000px;}
.x99_c00355{left:231.000000px;}
.x3e_c00355{left:232.080000px;}
.x11_c00355{left:235.080000px;}
.x53_c00355{left:239.580000px;}
.x84_c00355{left:241.500000px;}
.xd8_c00355{left:244.500000px;}
.xbe_c00355{left:247.500000px;}
.x3f_c00355{left:249.000000px;}
.xf5_c00355{left:250.275000px;}
.x9a_c00355{left:252.000000px;}
.x35_c00355{left:254.580000px;}
.x74_c00355{left:257.580000px;}
.xc6_c00355{left:260.145000px;}
.x54_c00355{left:261.420000px;}
.x47_c00355{left:262.500000px;}
.xdf_c00355{left:264.000000px;}
.x5c_c00355{left:265.500000px;}
.x1b_c00355{left:268.500000px;}
.xa4_c00355{left:270.000000px;}
.x7c_c00355{left:273.000000px;}
.x75_c00355{left:277.920000px;}
.xa9_c00355{left:279.000000px;}
.x6d_c00355{left:280.500000px;}
.x48_c00355{left:283.500000px;}
.xce_c00355{left:285.000000px;}
.x8b_c00355{left:286.500000px;}
.xa5_c00355{left:288.000000px;}
.x1c_c00355{left:289.500000px;}
.x7d_c00355{left:292.080000px;}
.xaa_c00355{left:294.420000px;}
.xe0_c00355{left:295.500000px;}
.x9b_c00355{left:297.000000px;}
.xc7_c00355{left:298.500000px;}
.x12_c00355{left:300.420000px;}
.x3_c00355{left:302.145000px;}
.xcf_c00355{left:303.420000px;}
.x76_c00355{left:304.500000px;}
.x8c_c00355{left:309.000000px;}
.x6e_c00355{left:312.420000px;}
.x7_c00355{left:313.500000px;}
.x27_c00355{left:317.580000px;}
.xbf_c00355{left:319.080000px;}
.x40_c00355{left:322.080000px;}
.xb2_c00355{left:323.355000px;}
.x5d_c00355{left:327.420000px;}
.xd0_c00355{left:328.500000px;}
.x13_c00355{left:334.080000px;}
.x8_c00355{left:336.420000px;}
.x49_c00355{left:338.580000px;}
.x36_c00355{left:340.500000px;}
.x92_c00355{left:342.000000px;}
.x28_c00355{left:343.080000px;}
.xfa_c00355{left:345.420000px;}
.x41_c00355{left:347.580000px;}
.x2b_c00355{left:349.275000px;}
.xab_c00355{left:351.000000px;}
.xd9_c00355{left:352.500000px;}
.x4a_c00355{left:354.000000px;}
.x9_c00355{left:355.080000px;}
.x1d_c00355{left:357.000000px;}
.x66_c00355{left:360.000000px;}
.x93_c00355{left:362.580000px;}
.x8d_c00355{left:366.000000px;}
.x85_c00355{left:369.420000px;}
.xc8_c00355{left:370.500000px;}
.xf6_c00355{left:372.000000px;}
.x77_c00355{left:373.500000px;}
.x1e_c00355{left:375.000000px;}
.x4_c00355{left:381.000000px;}
.xfb_c00355{left:384.000000px;}
.x6f_c00355{left:385.080000px;}
.xb8_c00355{left:386.580000px;}
.x9c_c00355{left:388.500000px;}
.x5e_c00355{left:390.000000px;}
.x14_c00355{left:391.500000px;}
.x7e_c00355{left:397.080000px;}
.x29_c00355{left:400.500000px;}
.xd1_c00355{left:402.855000px;}
.x94_c00355{left:403.920000px;}
.xda_c00355{left:405.000000px;}
.x2_c00355{left:406.500000px;}
.x55_c00355{left:409.500000px;}
.xa_c00355{left:412.080000px;}
.xea_c00355{left:414.000000px;}
.x67_c00355{left:415.500000px;}
.x42_c00355{left:417.855000px;}
.x8e_c00355{left:420.000000px;}
.x2c_c00355{left:422.580000px;}
.x4b_c00355{left:424.080000px;}
.x7f_c00355{left:426.645000px;}
.xf9_c00355{left:429.000000px;}
.x37_c00355{left:430.080000px;}
.xc0_c00355{left:431.580000px;}
.xb_c00355{left:433.080000px;}
.x1f_c00355{left:436.500000px;}
.x8f_c00355{left:439.920000px;}
.xac_c00355{left:441.645000px;}
.x70_c00355{left:444.420000px;}
.x86_c00355{left:445.920000px;}
.x78_c00355{left:447.645000px;}
.x15_c00355{left:450.000000px;}
.xc_c00355{left:451.500000px;}
.xd2_c00355{left:453.000000px;}
.x5f_c00355{left:454.500000px;}
.x80_c00355{left:457.500000px;}
.xe4_c00355{left:460.920000px;}
.xc1_c00355{left:465.420000px;}
.xdb_c00355{left:466.500000px;}
.x5_c00355{left:467.580000px;}
.xeb_c00355{left:469.920000px;}
.x4c_c00355{left:471.000000px;}
.x2d_c00355{left:473.580000px;}
.x43_c00355{left:475.080000px;}
.x16_c00355{left:477.420000px;}
.xc9_c00355{left:481.080000px;}
.xd3_c00355{left:483.420000px;}
.xb3_c00355{left:486.420000px;}
.x38_c00355{left:487.920000px;}
.xd_c00355{left:489.420000px;}
.xdc_c00355{left:490.920000px;}
.xe5_c00355{left:493.080000px;}
.x68_c00355{left:496.080000px;}
.x2a_c00355{left:497.580000px;}
.xfc_c00355{left:499.500000px;}
.x95_c00355{left:500.580000px;}
.x17_c00355{left:501.855000px;}
.x4d_c00355{left:505.920000px;}
.x2e_c00355{left:507.000000px;}
.xee_c00355{left:510.000000px;}
.x9d_c00355{left:511.920000px;}
.x81_c00355{left:513.420000px;}
.xca_c00355{left:514.920000px;}
.x18_c00355{left:516.420000px;}
.xdd_c00355{left:519.000000px;}
.x96_c00355{left:520.080000px;}
.xe1_c00355{left:521.580000px;}
.xd4_c00355{left:526.500000px;}
.x90_c00355{left:527.580000px;}
.x39_c00355{left:529.500000px;}
.x20_c00355{left:531.645000px;}
.x9e_c00355{left:532.920000px;}
.xe_c00355{left:534.000000px;}
.xe6_c00355{left:538.500000px;}
.xec_c00355{left:540.000000px;}
.x79_c00355{left:541.500000px;}
.xa6_c00355{left:543.000000px;}
.x2f_c00355{left:544.500000px;}
.xfd_c00355{left:546.000000px;}
.x60_c00355{left:547.080000px;}
.x6_c00355{left:548.775000px;}
.x69_c00355{left:552.420000px;}
.x71_c00355{left:555.645000px;}
.xc2_c00355{left:558.000000px;}
.x91_c00355{left:559.500000px;}
.x7a_c00355{left:561.420000px;}
.x103_c00355{left:563.580000px;}
.xb4_c00355{left:565.500000px;}
.x9f_c00355{left:567.420000px;}
.xd5_c00355{left:570.000000px;}
.x87_c00355{left:571.080000px;}
.x4e_c00355{left:573.420000px;}
.xcb_c00355{left:576.000000px;}
.x61_c00355{left:577.500000px;}
.xb9_c00355{left:579.000000px;}
.x56_c00355{left:580.080000px;}
.x30_c00355{left:581.580000px;}
.x44_c00355{left:585.855000px;}
.xef_c00355{left:588.000000px;}
.x82_c00355{left:591.000000px;}
.x3a_c00355{left:592.500000px;}
.x31_c00355{left:594.000000px;}
.xfe_c00355{left:595.080000px;}
.xa0_c00355{left:597.420000px;}
.x57_c00355{left:600.420000px;}
.x21_c00355{left:607.500000px;}
.xf7_c00355{left:608.580000px;}
.xe7_c00355{left:610.920000px;}
.x6a_c00355{left:612.000000px;}
.xb5_c00355{left:613.920000px;}
.xcc_c00355{left:617.580000px;}
.x7b_c00355{left:619.500000px;}
.xad_c00355{left:620.580000px;}
.xf0_c00355{left:622.500000px;}
.xd7_c00355{left:624.420000px;}
.x88_c00355{left:626.580000px;}
.x58_c00355{left:628.500000px;}
.x22_c00355{left:630.000000px;}
.x6b_c00355{left:634.920000px;}
.xba_c00355{left:636.420000px;}
.xde_c00355{left:639.000000px;}
.xae_c00355{left:640.080000px;}
.xc3_c00355{left:642.000000px;}
.x4f_c00355{left:643.500000px;}
.x45_c00355{left:644.580000px;}
.xe8_c00355{left:646.500000px;}
.x32_c00355{left:649.080000px;}
.x3b_c00355{left:650.775000px;}
.xf8_c00355{left:654.000000px;}
.x89_c00355{left:656.145000px;}
.x72_c00355{left:658.500000px;}
.x33_c00355{left:664.500000px;}
.x46_c00355{left:667.080000px;}
.xe2_c00355{left:668.580000px;}
.x97_c00355{left:670.500000px;}
.x59_c00355{left:671.580000px;}
.xf1_c00355{left:673.080000px;}
.x62_c00355{left:675.000000px;}
.xa1_c00355{left:676.500000px;}
.xaf_c00355{left:679.920000px;}
.x50_c00355{left:685.500000px;}
.xff_c00355{left:686.580000px;}
.x23_c00355{left:688.080000px;}
.x3c_c00355{left:690.000000px;}
.x73_c00355{left:693.000000px;}
.xb6_c00355{left:697.080000px;}
.x98_c00355{left:698.580000px;}
.xbb_c00355{left:700.500000px;}
.xa7_c00355{left:705.000000px;}
.x6c_c00355{left:708.000000px;}
.x51_c00355{left:709.920000px;}
.x63_c00355{left:716.580000px;}
.xc4_c00355{left:723.000000px;}
.x24_c00355{left:727.500000px;}
@media print{
.v1_c00355{vertical-align:-5.333333pt;}
.v0_c00355{vertical-align:0.000000pt;}
.ls0_c00355{letter-spacing:0.000000pt;}
.ws1_c00355{word-spacing:-2.810913pt;}
.ws2_c00355{word-spacing:-1.802475pt;}
.ws3_c00355{word-spacing:0.000000pt;}
.ws0_c00355{word-spacing:0.077442pt;}
.fs6_c00355{font-size:3.040000pt;}
.fs3_c00355{font-size:16.640000pt;}
.fs1_c00355{font-size:18.133333pt;}
.fs5_c00355{font-size:22.666667pt;}
.fs2_c00355{font-size:25.706667pt;}
.fs4_c00355{font-size:28.746667pt;}
.fs0_c00355{font-size:31.733333pt;}
.y0_c00355{bottom:0.000000pt;}
.yba_c00355{bottom:223.773333pt;}
.yb9_c00355{bottom:224.560000pt;}
.yb8_c00355{bottom:225.693333pt;}
.yb6_c00355{bottom:239.400000pt;}
.yb3_c00355{bottom:241.106667pt;}
.yb5_c00355{bottom:242.066667pt;}
.yb4_c00355{bottom:243.026667pt;}
.yb7_c00355{bottom:243.226667pt;}
.yb1_c00355{bottom:258.440000pt;}
.yb0_c00355{bottom:260.360000pt;}
.yb2_c00355{bottom:260.560000pt;}
.yac_c00355{bottom:275.773333pt;}
.yaf_c00355{bottom:275.973333pt;}
.yae_c00355{bottom:277.106667pt;}
.yab_c00355{bottom:277.693333pt;}
.yaa_c00355{bottom:277.893333pt;}
.yad_c00355{bottom:279.026667pt;}
.ya8_c00355{bottom:294.440000pt;}
.ya7_c00355{bottom:295.026667pt;}
.ya9_c00355{bottom:296.360000pt;}
.ya4_c00355{bottom:311.026667pt;}
.ya5_c00355{bottom:311.773333pt;}
.ya6_c00355{bottom:312.560000pt;}
.ya3_c00355{bottom:313.693333pt;}
.ya2_c00355{bottom:328.360000pt;}
.ya0_c00355{bottom:329.106667pt;}
.ya1_c00355{bottom:331.026667pt;}
.y9b_c00355{bottom:346.440000pt;}
.y9f_c00355{bottom:347.040000pt;}
.y9e_c00355{bottom:347.400000pt;}
.y9c_c00355{bottom:348.360000pt;}
.y9d_c00355{bottom:348.560000pt;}
.y96_c00355{bottom:363.773333pt;}
.y99_c00355{bottom:365.106667pt;}
.y95_c00355{bottom:365.693333pt;}
.y9a_c00355{bottom:365.893333pt;}
.y98_c00355{bottom:366.640000pt;}
.y97_c00355{bottom:367.026667pt;}
.y93_c00355{bottom:380.360000pt;}
.y94_c00355{bottom:382.440000pt;}
.y92_c00355{bottom:383.226667pt;}
.y91_c00355{bottom:383.973333pt;}
.y90_c00355{bottom:384.360000pt;}
.y8e_c00355{bottom:399.773333pt;}
.y8d_c00355{bottom:400.560000pt;}
.y8f_c00355{bottom:401.306667pt;}
.y8c_c00355{bottom:401.693333pt;}
.y88_c00355{bottom:415.773333pt;}
.y8a_c00355{bottom:417.106667pt;}
.y8b_c00355{bottom:418.640000pt;}
.y89_c00355{bottom:419.026667pt;}
.y84_c00355{bottom:433.693333pt;}
.y83_c00355{bottom:434.440000pt;}
.y87_c00355{bottom:435.600000pt;}
.y85_c00355{bottom:436.360000pt;}
.y86_c00355{bottom:436.560000pt;}
.y7f_c00355{bottom:451.773333pt;}
.y82_c00355{bottom:453.106667pt;}
.y7d_c00355{bottom:453.693333pt;}
.y80_c00355{bottom:453.893333pt;}
.y7e_c00355{bottom:454.640000pt;}
.y81_c00355{bottom:455.026667pt;}
.y78_c00355{bottom:469.106667pt;}
.y7b_c00355{bottom:470.066667pt;}
.y79_c00355{bottom:471.026667pt;}
.y7c_c00355{bottom:471.226667pt;}
.y7a_c00355{bottom:471.973333pt;}
.y75_c00355{bottom:487.400000pt;}
.y76_c00355{bottom:487.773333pt;}
.y74_c00355{bottom:488.360000pt;}
.y77_c00355{bottom:488.560000pt;}
.y72_c00355{bottom:503.026667pt;}
.y73_c00355{bottom:503.773333pt;}
.y6d_c00355{bottom:503.973333pt;}
.y6e_c00355{bottom:505.106667pt;}
.y6f_c00355{bottom:505.893333pt;}
.y71_c00355{bottom:506.640000pt;}
.y70_c00355{bottom:507.026667pt;}
.y6a_c00355{bottom:522.440000pt;}
.y6c_c00355{bottom:523.226667pt;}
.y6b_c00355{bottom:523.600000pt;}
.y69_c00355{bottom:524.360000pt;}
.y67_c00355{bottom:539.026667pt;}
.y64_c00355{bottom:539.773333pt;}
.y66_c00355{bottom:540.733333pt;}
.y63_c00355{bottom:541.693333pt;}
.y68_c00355{bottom:541.893333pt;}
.y65_c00355{bottom:542.640000pt;}
.y60_c00355{bottom:557.893333pt;}
.y61_c00355{bottom:558.066667pt;}
.y5f_c00355{bottom:559.026667pt;}
.y62_c00355{bottom:559.973333pt;}
.y5b_c00355{bottom:573.693333pt;}
.y5c_c00355{bottom:574.440000pt;}
.y5e_c00355{bottom:575.400000pt;}
.y5a_c00355{bottom:576.360000pt;}
.y5d_c00355{bottom:576.560000pt;}
.y59_c00355{bottom:593.106667pt;}
.y56_c00355{bottom:593.693333pt;}
.y58_c00355{bottom:595.026667pt;}
.y57_c00355{bottom:595.040000pt;}
.y54_c00355{bottom:608.360000pt;}
.y52_c00355{bottom:611.026667pt;}
.y55_c00355{bottom:611.973333pt;}
.y53_c00355{bottom:612.360000pt;}
.y51_c00355{bottom:627.773333pt;}
.y50_c00355{bottom:628.733333pt;}
.y4f_c00355{bottom:629.693333pt;}
.y4e_c00355{bottom:645.106667pt;}
.y4d_c00355{bottom:646.640000pt;}
.y4c_c00355{bottom:647.026667pt;}
.y49_c00355{bottom:662.440000pt;}
.y48_c00355{bottom:663.226667pt;}
.y47_c00355{bottom:664.360000pt;}
.y4a_c00355{bottom:664.560000pt;}
.y4b_c00355{bottom:665.306667pt;}
.y44_c00355{bottom:679.773333pt;}
.y46_c00355{bottom:681.306667pt;}
.y45_c00355{bottom:681.693333pt;}
.y43_c00355{bottom:697.106667pt;}
.y42_c00355{bottom:698.640000pt;}
.y41_c00355{bottom:699.026667pt;}
.y3d_c00355{bottom:714.440000pt;}
.y3e_c00355{bottom:715.400000pt;}
.y3b_c00355{bottom:716.360000pt;}
.y3f_c00355{bottom:716.733333pt;}
.y3c_c00355{bottom:717.306667pt;}
.y40_c00355{bottom:717.693333pt;}
.y36_c00355{bottom:731.773333pt;}
.y37_c00355{bottom:733.106667pt;}
.y35_c00355{bottom:733.693333pt;}
.y38_c00355{bottom:734.066667pt;}
.y3a_c00355{bottom:734.640000pt;}
.y39_c00355{bottom:735.026667pt;}
.y32_c00355{bottom:748.360000pt;}
.y31_c00355{bottom:750.440000pt;}
.y2e_c00355{bottom:751.026667pt;}
.y34_c00355{bottom:751.226667pt;}
.y33_c00355{bottom:751.973333pt;}
.y30_c00355{bottom:752.360000pt;}
.y2f_c00355{bottom:752.373333pt;}
.y2d_c00355{bottom:767.773333pt;}
.y2c_c00355{bottom:785.106667pt;}
.y2a_c00355{bottom:785.893333pt;}
.y29_c00355{bottom:787.026667pt;}
.y2b_c00355{bottom:787.040000pt;}
.y28_c00355{bottom:801.693333pt;}
.y25_c00355{bottom:802.440000pt;}
.y27_c00355{bottom:803.226667pt;}
.y26_c00355{bottom:803.600000pt;}
.y24_c00355{bottom:818.066667pt;}
.y1e_c00355{bottom:819.026667pt;}
.y20_c00355{bottom:819.773333pt;}
.y1f_c00355{bottom:819.973333pt;}
.y22_c00355{bottom:820.560000pt;}
.y23_c00355{bottom:820.733333pt;}
.y21_c00355{bottom:821.693333pt;}
.y18_c00355{bottom:837.106667pt;}
.y1c_c00355{bottom:837.306667pt;}
.y19_c00355{bottom:838.440000pt;}
.y1a_c00355{bottom:839.026667pt;}
.y1b_c00355{bottom:839.226667pt;}
.y1d_c00355{bottom:840.360000pt;}
.y12_c00355{bottom:854.440000pt;}
.y15_c00355{bottom:855.773333pt;}
.y13_c00355{bottom:855.973333pt;}
.y14_c00355{bottom:856.360000pt;}
.y16_c00355{bottom:857.306667pt;}
.y17_c00355{bottom:857.693333pt;}
.yd_c00355{bottom:871.773333pt;}
.ye_c00355{bottom:873.106667pt;}
.y11_c00355{bottom:873.893333pt;}
.y10_c00355{bottom:875.026667pt;}
.yf_c00355{bottom:875.040000pt;}
.yb_c00355{bottom:902.066667pt;}
.yc_c00355{bottom:902.266667pt;}
.ya_c00355{bottom:903.026667pt;}
.y9_c00355{bottom:903.973333pt;}
.y7_c00355{bottom:920.733333pt;}
.y8_c00355{bottom:921.693333pt;}
.y6_c00355{bottom:923.600000pt;}
.y5_c00355{bottom:941.106667pt;}
.y3_c00355{bottom:943.026667pt;}
.y4_c00355{bottom:943.226667pt;}
.y1_c00355{bottom:975.773333pt;}
.y2_c00355{bottom:976.933333pt;}
.h7_c00355{height:3.739141pt;}
.h4_c00355{height:20.466875pt;}
.h2_c00355{height:22.303646pt;}
.h6_c00355{height:27.879557pt;}
.h3_c00355{height:31.618698pt;}
.h5_c00355{height:35.357839pt;}
.h1_c00355{height:39.031380pt;}
.h0_c00355{height:1186.666667pt;}
.w0_c00355{width:782.666667pt;}
.x0_c00355{left:0.000000pt;}
.xf2_c00355{left:132.960000pt;}
.xa2_c00355{left:135.040000pt;}
.x52_c00355{left:136.373333pt;}
.x1_c00355{left:137.333333pt;}
.x25_c00355{left:138.466667pt;}
.xf_c00355{left:147.626667pt;}
.xb0_c00355{left:148.760000pt;}
.x19_c00355{left:151.040000pt;}
.xe3_c00355{left:157.333333pt;}
.x3d_c00355{left:160.373333pt;}
.xbc_c00355{left:162.666667pt;}
.xf3_c00355{left:163.626667pt;}
.xa3_c00355{left:167.040000pt;}
.x26_c00355{left:168.000000pt;}
.x5a_c00355{left:169.333333pt;}
.xe9_c00355{left:170.293333pt;}
.x64_c00355{left:172.000000pt;}
.xa8_c00355{left:173.333333pt;}
.x34_c00355{left:174.293333pt;}
.xb7_c00355{left:177.706667pt;}
.x10_c00355{left:178.666667pt;}
.x8a_c00355{left:180.000000pt;}
.x100_c00355{left:180.960000pt;}
.xc5_c00355{left:182.666667pt;}
.xf4_c00355{left:184.760000pt;}
.x1a_c00355{left:185.706667pt;}
.xb1_c00355{left:187.040000pt;}
.x83_c00355{left:188.960000pt;}
.xed_c00355{left:190.666667pt;}
.x65_c00355{left:192.373333pt;}
.x5b_c00355{left:193.333333pt;}
.x101_c00355{left:196.373333pt;}
.xcd_c00355{left:198.666667pt;}
.x102_c00355{left:199.626667pt;}
.xd6_c00355{left:201.706667pt;}
.xbd_c00355{left:204.000000pt;}
.x99_c00355{left:205.333333pt;}
.x3e_c00355{left:206.293333pt;}
.x11_c00355{left:208.960000pt;}
.x53_c00355{left:212.960000pt;}
.x84_c00355{left:214.666667pt;}
.xd8_c00355{left:217.333333pt;}
.xbe_c00355{left:220.000000pt;}
.x3f_c00355{left:221.333333pt;}
.xf5_c00355{left:222.466667pt;}
.x9a_c00355{left:224.000000pt;}
.x35_c00355{left:226.293333pt;}
.x74_c00355{left:228.960000pt;}
.xc6_c00355{left:231.240000pt;}
.x54_c00355{left:232.373333pt;}
.x47_c00355{left:233.333333pt;}
.xdf_c00355{left:234.666667pt;}
.x5c_c00355{left:236.000000pt;}
.x1b_c00355{left:238.666667pt;}
.xa4_c00355{left:240.000000pt;}
.x7c_c00355{left:242.666667pt;}
.x75_c00355{left:247.040000pt;}
.xa9_c00355{left:248.000000pt;}
.x6d_c00355{left:249.333333pt;}
.x48_c00355{left:252.000000pt;}
.xce_c00355{left:253.333333pt;}
.x8b_c00355{left:254.666667pt;}
.xa5_c00355{left:256.000000pt;}
.x1c_c00355{left:257.333333pt;}
.x7d_c00355{left:259.626667pt;}
.xaa_c00355{left:261.706667pt;}
.xe0_c00355{left:262.666667pt;}
.x9b_c00355{left:264.000000pt;}
.xc7_c00355{left:265.333333pt;}
.x12_c00355{left:267.040000pt;}
.x3_c00355{left:268.573333pt;}
.xcf_c00355{left:269.706667pt;}
.x76_c00355{left:270.666667pt;}
.x8c_c00355{left:274.666667pt;}
.x6e_c00355{left:277.706667pt;}
.x7_c00355{left:278.666667pt;}
.x27_c00355{left:282.293333pt;}
.xbf_c00355{left:283.626667pt;}
.x40_c00355{left:286.293333pt;}
.xb2_c00355{left:287.426667pt;}
.x5d_c00355{left:291.040000pt;}
.xd0_c00355{left:292.000000pt;}
.x13_c00355{left:296.960000pt;}
.x8_c00355{left:299.040000pt;}
.x49_c00355{left:300.960000pt;}
.x36_c00355{left:302.666667pt;}
.x92_c00355{left:304.000000pt;}
.x28_c00355{left:304.960000pt;}
.xfa_c00355{left:307.040000pt;}
.x41_c00355{left:308.960000pt;}
.x2b_c00355{left:310.466667pt;}
.xab_c00355{left:312.000000pt;}
.xd9_c00355{left:313.333333pt;}
.x4a_c00355{left:314.666667pt;}
.x9_c00355{left:315.626667pt;}
.x1d_c00355{left:317.333333pt;}
.x66_c00355{left:320.000000pt;}
.x93_c00355{left:322.293333pt;}
.x8d_c00355{left:325.333333pt;}
.x85_c00355{left:328.373333pt;}
.xc8_c00355{left:329.333333pt;}
.xf6_c00355{left:330.666667pt;}
.x77_c00355{left:332.000000pt;}
.x1e_c00355{left:333.333333pt;}
.x4_c00355{left:338.666667pt;}
.xfb_c00355{left:341.333333pt;}
.x6f_c00355{left:342.293333pt;}
.xb8_c00355{left:343.626667pt;}
.x9c_c00355{left:345.333333pt;}
.x5e_c00355{left:346.666667pt;}
.x14_c00355{left:348.000000pt;}
.x7e_c00355{left:352.960000pt;}
.x29_c00355{left:356.000000pt;}
.xd1_c00355{left:358.093333pt;}
.x94_c00355{left:359.040000pt;}
.xda_c00355{left:360.000000pt;}
.x2_c00355{left:361.333333pt;}
.x55_c00355{left:364.000000pt;}
.xa_c00355{left:366.293333pt;}
.xea_c00355{left:368.000000pt;}
.x67_c00355{left:369.333333pt;}
.x42_c00355{left:371.426667pt;}
.x8e_c00355{left:373.333333pt;}
.x2c_c00355{left:375.626667pt;}
.x4b_c00355{left:376.960000pt;}
.x7f_c00355{left:379.240000pt;}
.xf9_c00355{left:381.333333pt;}
.x37_c00355{left:382.293333pt;}
.xc0_c00355{left:383.626667pt;}
.xb_c00355{left:384.960000pt;}
.x1f_c00355{left:388.000000pt;}
.x8f_c00355{left:391.040000pt;}
.xac_c00355{left:392.573333pt;}
.x70_c00355{left:395.040000pt;}
.x86_c00355{left:396.373333pt;}
.x78_c00355{left:397.906667pt;}
.x15_c00355{left:400.000000pt;}
.xc_c00355{left:401.333333pt;}
.xd2_c00355{left:402.666667pt;}
.x5f_c00355{left:404.000000pt;}
.x80_c00355{left:406.666667pt;}
.xe4_c00355{left:409.706667pt;}
.xc1_c00355{left:413.706667pt;}
.xdb_c00355{left:414.666667pt;}
.x5_c00355{left:415.626667pt;}
.xeb_c00355{left:417.706667pt;}
.x4c_c00355{left:418.666667pt;}
.x2d_c00355{left:420.960000pt;}
.x43_c00355{left:422.293333pt;}
.x16_c00355{left:424.373333pt;}
.xc9_c00355{left:427.626667pt;}
.xd3_c00355{left:429.706667pt;}
.xb3_c00355{left:432.373333pt;}
.x38_c00355{left:433.706667pt;}
.xd_c00355{left:435.040000pt;}
.xdc_c00355{left:436.373333pt;}
.xe5_c00355{left:438.293333pt;}
.x68_c00355{left:440.960000pt;}
.x2a_c00355{left:442.293333pt;}
.xfc_c00355{left:444.000000pt;}
.x95_c00355{left:444.960000pt;}
.x17_c00355{left:446.093333pt;}
.x4d_c00355{left:449.706667pt;}
.x2e_c00355{left:450.666667pt;}
.xee_c00355{left:453.333333pt;}
.x9d_c00355{left:455.040000pt;}
.x81_c00355{left:456.373333pt;}
.xca_c00355{left:457.706667pt;}
.x18_c00355{left:459.040000pt;}
.xdd_c00355{left:461.333333pt;}
.x96_c00355{left:462.293333pt;}
.xe1_c00355{left:463.626667pt;}
.xd4_c00355{left:468.000000pt;}
.x90_c00355{left:468.960000pt;}
.x39_c00355{left:470.666667pt;}
.x20_c00355{left:472.573333pt;}
.x9e_c00355{left:473.706667pt;}
.xe_c00355{left:474.666667pt;}
.xe6_c00355{left:478.666667pt;}
.xec_c00355{left:480.000000pt;}
.x79_c00355{left:481.333333pt;}
.xa6_c00355{left:482.666667pt;}
.x2f_c00355{left:484.000000pt;}
.xfd_c00355{left:485.333333pt;}
.x60_c00355{left:486.293333pt;}
.x6_c00355{left:487.800000pt;}
.x69_c00355{left:491.040000pt;}
.x71_c00355{left:493.906667pt;}
.xc2_c00355{left:496.000000pt;}
.x91_c00355{left:497.333333pt;}
.x7a_c00355{left:499.040000pt;}
.x103_c00355{left:500.960000pt;}
.xb4_c00355{left:502.666667pt;}
.x9f_c00355{left:504.373333pt;}
.xd5_c00355{left:506.666667pt;}
.x87_c00355{left:507.626667pt;}
.x4e_c00355{left:509.706667pt;}
.xcb_c00355{left:512.000000pt;}
.x61_c00355{left:513.333333pt;}
.xb9_c00355{left:514.666667pt;}
.x56_c00355{left:515.626667pt;}
.x30_c00355{left:516.960000pt;}
.x44_c00355{left:520.760000pt;}
.xef_c00355{left:522.666667pt;}
.x82_c00355{left:525.333333pt;}
.x3a_c00355{left:526.666667pt;}
.x31_c00355{left:528.000000pt;}
.xfe_c00355{left:528.960000pt;}
.xa0_c00355{left:531.040000pt;}
.x57_c00355{left:533.706667pt;}
.x21_c00355{left:540.000000pt;}
.xf7_c00355{left:540.960000pt;}
.xe7_c00355{left:543.040000pt;}
.x6a_c00355{left:544.000000pt;}
.xb5_c00355{left:545.706667pt;}
.xcc_c00355{left:548.960000pt;}
.x7b_c00355{left:550.666667pt;}
.xad_c00355{left:551.626667pt;}
.xf0_c00355{left:553.333333pt;}
.xd7_c00355{left:555.040000pt;}
.x88_c00355{left:556.960000pt;}
.x58_c00355{left:558.666667pt;}
.x22_c00355{left:560.000000pt;}
.x6b_c00355{left:564.373333pt;}
.xba_c00355{left:565.706667pt;}
.xde_c00355{left:568.000000pt;}
.xae_c00355{left:568.960000pt;}
.xc3_c00355{left:570.666667pt;}
.x4f_c00355{left:572.000000pt;}
.x45_c00355{left:572.960000pt;}
.xe8_c00355{left:574.666667pt;}
.x32_c00355{left:576.960000pt;}
.x3b_c00355{left:578.466667pt;}
.xf8_c00355{left:581.333333pt;}
.x89_c00355{left:583.240000pt;}
.x72_c00355{left:585.333333pt;}
.x33_c00355{left:590.666667pt;}
.x46_c00355{left:592.960000pt;}
.xe2_c00355{left:594.293333pt;}
.x97_c00355{left:596.000000pt;}
.x59_c00355{left:596.960000pt;}
.xf1_c00355{left:598.293333pt;}
.x62_c00355{left:600.000000pt;}
.xa1_c00355{left:601.333333pt;}
.xaf_c00355{left:604.373333pt;}
.x50_c00355{left:609.333333pt;}
.xff_c00355{left:610.293333pt;}
.x23_c00355{left:611.626667pt;}
.x3c_c00355{left:613.333333pt;}
.x73_c00355{left:616.000000pt;}
.xb6_c00355{left:619.626667pt;}
.x98_c00355{left:620.960000pt;}
.xbb_c00355{left:622.666667pt;}
.xa7_c00355{left:626.666667pt;}
.x6c_c00355{left:629.333333pt;}
.x51_c00355{left:631.040000pt;}
.x63_c00355{left:636.960000pt;}
.xc4_c00355{left:642.666667pt;}
.x24_c00355{left:646.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_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_a69c058076d41b83f68ea644.woff2')format("woff");}.ff1_c00356{font-family:ff1_c00356;line-height:1.688965;font-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_c00356{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.mab_c00356{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m5d_c00356{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.ma2_c00356{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m107_c00356{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.me6_c00356{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.maa_c00356{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mfe_c00356{transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);}
.me_c00356{transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);}
.ma4_c00356{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.mb7_c00356{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mf_c00356{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.mb4_c00356{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.ma0_c00356{transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);}
.mc2_c00356{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.ma9_c00356{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m32_c00356{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m23_c00356{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.me3_c00356{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.mfb_c00356{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_c00356{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.mf5_c00356{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m90_c00356{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.mfd_c00356{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.mea_c00356{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.me4_c00356{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m8b_c00356{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.mcd_c00356{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m4a_c00356{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m96_c00356{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.md_c00356{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.m29_c00356{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m5_c00356{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m80_c00356{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.m100_c00356{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mf8_c00356{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.md3_c00356{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m1c_c00356{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m46_c00356{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mb_c00356{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.md9_c00356{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.ma5_c00356{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.ma7_c00356{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mca_c00356{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m45_c00356{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m99_c00356{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m10_c00356{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.maf_c00356{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m67_c00356{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.mfc_c00356{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m8d_c00356{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m5f_c00356{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m47_c00356{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.me0_c00356{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.mcc_c00356{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m39_c00356{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m9e_c00356{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m48_c00356{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m102_c00356{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m1d_c00356{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mac_c00356{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.m2d_c00356{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m8e_c00356{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.me2_c00356{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m69_c00356{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m3e_c00356{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.m95_c00356{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.mdf_c00356{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m9b_c00356{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.mc5_c00356{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m68_c00356{transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);}
.med_c00356{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.mff_c00356{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.md0_c00356{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.me5_c00356{transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);}
.m76_c00356{transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);}
.me9_c00356{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m3d_c00356{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.mbf_c00356{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.mf0_c00356{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mee_c00356{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.mcf_c00356{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.meb_c00356{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m62_c00356{transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);}
.m28_c00356{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m17_c00356{transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);}
.m35_c00356{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m79_c00356{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m92_c00356{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.mb3_c00356{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m57_c00356{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.md1_c00356{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.m91_c00356{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.mba_c00356{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m3b_c00356{transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);}
.m40_c00356{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m86_c00356{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mfa_c00356{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m8a_c00356{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m50_c00356{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mf9_c00356{transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);}
.m83_c00356{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m5a_c00356{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.mb5_c00356{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.ma8_c00356{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m6_c00356{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m9f_c00356{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mb2_c00356{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m6b_c00356{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m1_c00356{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m64_c00356{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m7_c00356{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mbb_c00356{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m33_c00356{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.mf4_c00356{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m16_c00356{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m2a_c00356{transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);}
.m36_c00356{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m44_c00356{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);}
.m6a_c00356{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.mb1_c00356{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mbc_c00356{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.me7_c00356{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mbe_c00356{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m6e_c00356{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m106_c00356{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m7f_c00356{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m8_c00356{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mf2_c00356{transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);}
.mc7_c00356{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.me8_c00356{transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);}
.ma1_c00356{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.m4b_c00356{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mc_c00356{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m94_c00356{transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);}
.mb0_c00356{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m41_c00356{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m97_c00356{transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);}
.m20_c00356{transform:matrix(0.519481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519481,0.000000,0.000000,0.250000,0,0);}
.m89_c00356{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m3_c00356{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mda_c00356{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m7a_c00356{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);}
.mcb_c00356{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m6d_c00356{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m61_c00356{transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);}
.mec_c00356{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mf6_c00356{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m7d_c00356{transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);}
.m1f_c00356{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m81_c00356{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.ma3_c00356{transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);}
.mb9_c00356{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m1e_c00356{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m25_c00356{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.ma_c00356{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mad_c00356{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m4e_c00356{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.mc4_c00356{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m4_c00356{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mde_c00356{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m59_c00356{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m4c_c00356{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m22_c00356{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m26_c00356{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m5c_c00356{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m38_c00356{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m43_c00356{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m3f_c00356{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m3c_c00356{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mce_c00356{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m6f_c00356{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m4d_c00356{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m14_c00356{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m72_c00356{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.mf3_c00356{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m1a_c00356{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.md2_c00356{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m7e_c00356{transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);}
.m104_c00356{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m37_c00356{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m27_c00356{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m11_c00356{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m8f_c00356{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.mc3_c00356{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.mc8_c00356{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m9a_c00356{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.mf7_c00356{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m58_c00356{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);}
.m13_c00356{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m3a_c00356{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mbd_c00356{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m105_c00356{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m19_c00356{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m5e_c00356{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m74_c00356{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);}
.m4f_c00356{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m2b_c00356{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m78_c00356{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m101_c00356{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.mc1_c00356{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m2_c00356{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m34_c00356{transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);}
.m8c_c00356{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.mdc_c00356{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m9c_c00356{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m7b_c00356{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.mef_c00356{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mae_c00356{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);}
.mc9_c00356{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m31_c00356{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m0_c00356{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m30_c00356{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m18_c00356{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m52_c00356{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m56_c00356{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_c00356{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);}
.m2c_c00356{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m73_c00356{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m77_c00356{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m70_c00356{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m98_c00356{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.mc0_c00356{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m85_c00356{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m7c_c00356{transform:matrix(0.648824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648824,0.000000,0.000000,0.250000,0,0);}
.m55_c00356{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);}
.m87_c00356{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m82_c00356{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m51_c00356{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m15_c00356{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m63_c00356{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.m66_c00356{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m54_c00356{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.m93_c00356{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m53_c00356{transform:matrix(0.680147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680147,0.000000,0.000000,0.250000,0,0);}
.m42_c00356{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m65_c00356{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m49_c00356{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.mf1_c00356{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m2f_c00356{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m71_c00356{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);}
.m9d_c00356{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.mdb_c00356{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m88_c00356{transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);}
.md8_c00356{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m6c_c00356{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m24_c00356{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.md4_c00356{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mdd_c00356{transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);}
.mb8_c00356{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m9_c00356{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m103_c00356{transform:matrix(0.762821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.762821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.762821,0.000000,0.000000,0.250000,0,0);}
.mc6_c00356{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m12_c00356{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m2e_c00356{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.md6_c00356{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mb6_c00356{transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);}
.md5_c00356{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m1b_c00356{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.me1_c00356{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m60_c00356{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m84_c00356{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m5b_c00356{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.ma6_c00356{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,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;}
}
.ws1_c00356{word-spacing:-6.072296px;}
.ws0_c00356{word-spacing:-2.308225px;}
.ws2_c00356{word-spacing:0.000000px;}
.fc0_c00356{color:transparent;}
.fs7_c00356{font-size:3.420000px;}
.fs6_c00356{font-size:13.620000px;}
.fs4_c00356{font-size:18.720000px;}
.fs0_c00356{font-size:20.400000px;}
.fs2_c00356{font-size:25.500000px;}
.fs1_c00356{font-size:28.920000px;}
.fs5_c00356{font-size:32.340000px;}
.fs3_c00356{font-size:35.700000px;}
.fs8_c00356{font-size:39.120000px;}
.y0_c00356{bottom:0.000000px;}
.ye5_c00356{bottom:252.180000px;}
.ye4_c00356{bottom:253.245000px;}
.ye2_c00356{bottom:255.405000px;}
.ye3_c00356{bottom:255.630000px;}
.ydf_c00356{bottom:271.905000px;}
.yda_c00356{bottom:272.745000px;}
.ydd_c00356{bottom:272.970000px;}
.ydb_c00356{bottom:274.245000px;}
.yde_c00356{bottom:274.905000px;}
.ye1_c00356{bottom:275.130000px;}
.ye0_c00356{bottom:275.970000px;}
.ydc_c00356{bottom:276.405000px;}
.yd9_c00356{bottom:291.405000px;}
.yd8_c00356{bottom:292.245000px;}
.yd6_c00356{bottom:293.745000px;}
.yd7_c00356{bottom:295.905000px;}
.yd4_c00356{bottom:313.245000px;}
.yd5_c00356{bottom:314.325000px;}
.yd3_c00356{bottom:315.405000px;}
.yd2_c00356{bottom:316.470000px;}
.yd1_c00356{bottom:332.325000px;}
.ycf_c00356{bottom:332.745000px;}
.yd0_c00356{bottom:334.905000px;}
.yce_c00356{bottom:351.825000px;}
.yc9_c00356{bottom:352.245000px;}
.ycd_c00356{bottom:353.325000px;}
.ycc_c00356{bottom:354.405000px;}
.ycb_c00356{bottom:355.470000px;}
.yca_c00356{bottom:355.905000px;}
.yc8_c00356{bottom:371.745000px;}
.yc5_c00356{bottom:372.825000px;}
.yc4_c00356{bottom:373.245000px;}
.yc7_c00356{bottom:373.905000px;}
.yc6_c00356{bottom:374.970000px;}
.yc3_c00356{bottom:375.405000px;}
.yc1_c00356{bottom:391.245000px;}
.ybe_c00356{bottom:392.325000px;}
.ybf_c00356{bottom:392.745000px;}
.yc0_c00356{bottom:393.405000px;}
.yc2_c00356{bottom:393.630000px;}
.ybd_c00356{bottom:394.905000px;}
.ybc_c00356{bottom:410.745000px;}
.yb8_c00356{bottom:412.245000px;}
.ybb_c00356{bottom:412.905000px;}
.yba_c00356{bottom:413.970000px;}
.yb9_c00356{bottom:414.405000px;}
.yb7_c00356{bottom:430.245000px;}
.yb5_c00356{bottom:431.745000px;}
.yb4_c00356{bottom:432.630000px;}
.yb6_c00356{bottom:433.905000px;}
.yb3_c00356{bottom:450.825000px;}
.yb0_c00356{bottom:451.245000px;}
.yb1_c00356{bottom:452.130000px;}
.yaf_c00356{bottom:453.405000px;}
.yb2_c00356{bottom:454.470000px;}
.yac_c00356{bottom:470.745000px;}
.yae_c00356{bottom:471.630000px;}
.yad_c00356{bottom:472.905000px;}
.yab_c00356{bottom:473.130000px;}
.ya7_c00356{bottom:490.245000px;}
.yaa_c00356{bottom:491.130000px;}
.ya4_c00356{bottom:491.325000px;}
.ya9_c00356{bottom:491.970000px;}
.ya5_c00356{bottom:492.405000px;}
.ya6_c00356{bottom:492.630000px;}
.ya8_c00356{bottom:493.470000px;}
.ya3_c00356{bottom:509.745000px;}
.y9e_c00356{bottom:510.825000px;}
.y9f_c00356{bottom:511.245000px;}
.ya0_c00356{bottom:511.905000px;}
.ya1_c00356{bottom:512.130000px;}
.ya2_c00356{bottom:512.970000px;}
.y9d_c00356{bottom:513.405000px;}
.y9c_c00356{bottom:529.245000px;}
.y9a_c00356{bottom:530.325000px;}
.y98_c00356{bottom:530.745000px;}
.y99_c00356{bottom:531.405000px;}
.y9b_c00356{bottom:531.630000px;}
.y92_c00356{bottom:547.905000px;}
.y91_c00356{bottom:549.825000px;}
.y96_c00356{bottom:550.245000px;}
.y97_c00356{bottom:550.905000px;}
.y95_c00356{bottom:551.130000px;}
.y93_c00356{bottom:551.970000px;}
.y90_c00356{bottom:552.405000px;}
.y94_c00356{bottom:553.470000px;}
.y8c_c00356{bottom:568.245000px;}
.y8d_c00356{bottom:569.745000px;}
.y8f_c00356{bottom:570.630000px;}
.y8b_c00356{bottom:570.825000px;}
.y8e_c00356{bottom:571.470000px;}
.y8a_c00356{bottom:571.905000px;}
.y89_c00356{bottom:572.130000px;}
.y88_c00356{bottom:587.745000px;}
.y87_c00356{bottom:588.405000px;}
.y83_c00356{bottom:589.245000px;}
.y85_c00356{bottom:591.405000px;}
.y86_c00356{bottom:591.630000px;}
.y84_c00356{bottom:592.470000px;}
.y81_c00356{bottom:608.745000px;}
.y7f_c00356{bottom:610.905000px;}
.y80_c00356{bottom:611.130000px;}
.y82_c00356{bottom:611.970000px;}
.y7d_c00356{bottom:628.245000px;}
.y7a_c00356{bottom:629.745000px;}
.y7c_c00356{bottom:630.405000px;}
.y7e_c00356{bottom:630.630000px;}
.y7b_c00356{bottom:631.920000px;}
.y79_c00356{bottom:656.325000px;}
.y78_c00356{bottom:658.470000px;}
.y77_c00356{bottom:669.825000px;}
.y75_c00356{bottom:670.905000px;}
.y76_c00356{bottom:671.550000px;}
.y73_c00356{bottom:671.970000px;}
.y72_c00356{bottom:672.405000px;}
.y74_c00356{bottom:672.630000px;}
.y71_c00356{bottom:673.050000px;}
.y70_c00356{bottom:684.825000px;}
.y6e_c00356{bottom:685.905000px;}
.y6b_c00356{bottom:686.325000px;}
.y6c_c00356{bottom:686.970000px;}
.y6d_c00356{bottom:687.195000px;}
.y6f_c00356{bottom:688.050000px;}
.y6a_c00356{bottom:698.970000px;}
.y69_c00356{bottom:699.825000px;}
.y64_c00356{bottom:700.050000px;}
.y66_c00356{bottom:700.905000px;}
.y67_c00356{bottom:701.970000px;}
.y68_c00356{bottom:702.195000px;}
.y65_c00356{bottom:703.050000px;}
.y62_c00356{bottom:715.905000px;}
.y63_c00356{bottom:717.195000px;}
.y61_c00356{bottom:718.050000px;}
.y5f_c00356{bottom:729.825000px;}
.y5e_c00356{bottom:731.970000px;}
.y60_c00356{bottom:732.195000px;}
.y5d_c00356{bottom:733.050000px;}
.y5c_c00356{bottom:745.905000px;}
.y59_c00356{bottom:746.970000px;}
.y5a_c00356{bottom:747.195000px;}
.y5b_c00356{bottom:748.050000px;}
.y53_c00356{bottom:758.970000px;}
.y58_c00356{bottom:759.825000px;}
.y55_c00356{bottom:760.905000px;}
.y57_c00356{bottom:761.970000px;}
.y56_c00356{bottom:762.195000px;}
.y54_c00356{bottom:763.050000px;}
.y50_c00356{bottom:774.405000px;}
.y52_c00356{bottom:774.825000px;}
.y51_c00356{bottom:775.470000px;}
.y4d_c00356{bottom:775.905000px;}
.y4f_c00356{bottom:776.970000px;}
.y4e_c00356{bottom:777.195000px;}
.y4c_c00356{bottom:788.325000px;}
.y47_c00356{bottom:788.550000px;}
.y4a_c00356{bottom:790.470000px;}
.y49_c00356{bottom:791.130000px;}
.y4b_c00356{bottom:791.550000px;}
.y48_c00356{bottom:791.970000px;}
.y44_c00356{bottom:803.325000px;}
.y45_c00356{bottom:804.405000px;}
.y43_c00356{bottom:805.470000px;}
.y42_c00356{bottom:805.695000px;}
.y46_c00356{bottom:806.550000px;}
.y3d_c00356{bottom:817.470000px;}
.y3e_c00356{bottom:819.405000px;}
.y40_c00356{bottom:819.630000px;}
.y3f_c00356{bottom:820.470000px;}
.y41_c00356{bottom:821.550000px;}
.y3b_c00356{bottom:834.405000px;}
.y3a_c00356{bottom:835.470000px;}
.y39_c00356{bottom:835.695000px;}
.y3c_c00356{bottom:836.550000px;}
.y37_c00356{bottom:848.325000px;}
.y38_c00356{bottom:848.550000px;}
.y32_c00356{bottom:864.405000px;}
.y33_c00356{bottom:864.630000px;}
.y35_c00356{bottom:865.470000px;}
.y36_c00356{bottom:865.695000px;}
.y34_c00356{bottom:866.550000px;}
.y30_c00356{bottom:884.745000px;}
.y31_c00356{bottom:886.905000px;}
.y2f_c00356{bottom:887.970000px;}
.y2d_c00356{bottom:904.245000px;}
.y2e_c00356{bottom:905.130000px;}
.y2b_c00356{bottom:906.405000px;}
.y2c_c00356{bottom:907.470000px;}
.y29_c00356{bottom:923.745000px;}
.y2a_c00356{bottom:924.630000px;}
.y25_c00356{bottom:924.825000px;}
.y28_c00356{bottom:925.470000px;}
.y26_c00356{bottom:925.905000px;}
.y27_c00356{bottom:926.130000px;}
.y23_c00356{bottom:943.245000px;}
.y22_c00356{bottom:944.325000px;}
.y20_c00356{bottom:944.745000px;}
.y1f_c00356{bottom:945.405000px;}
.y21_c00356{bottom:945.630000px;}
.y24_c00356{bottom:946.470000px;}
.y1d_c00356{bottom:964.245000px;}
.y1e_c00356{bottom:964.905000px;}
.y1a_c00356{bottom:965.325000px;}
.y1c_c00356{bottom:965.970000px;}
.y1b_c00356{bottom:966.405000px;}
.y19_c00356{bottom:982.245000px;}
.y15_c00356{bottom:983.745000px;}
.y18_c00356{bottom:984.630000px;}
.y16_c00356{bottom:984.825000px;}
.y17_c00356{bottom:985.470000px;}
.y13_c00356{bottom:1001.745000px;}
.y10_c00356{bottom:1003.245000px;}
.y12_c00356{bottom:1003.905000px;}
.y14_c00356{bottom:1004.130000px;}
.yf_c00356{bottom:1004.325000px;}
.y11_c00356{bottom:1005.405000px;}
.yd_c00356{bottom:1022.745000px;}
.ye_c00356{bottom:1023.630000px;}
.yc_c00356{bottom:1024.905000px;}
.y7_c00356{bottom:1042.245000px;}
.y9_c00356{bottom:1043.130000px;}
.yb_c00356{bottom:1043.970000px;}
.y8_c00356{bottom:1044.405000px;}
.ya_c00356{bottom:1045.470000px;}
.y5_c00356{bottom:1061.745000px;}
.y6_c00356{bottom:1062.630000px;}
.y3_c00356{bottom:1063.470000px;}
.y4_c00356{bottom:1063.905000px;}
.y2_c00356{bottom:1099.905000px;}
.y1_c00356{bottom:1102.050000px;}
.h8_c00356{height:4.206533px;}
.h7_c00356{height:16.752334px;}
.h5_c00356{height:23.025234px;}
.h1_c00356{height:25.091602px;}
.h3_c00356{height:31.364502px;}
.h2_c00356{height:35.571035px;}
.h6_c00356{height:39.777568px;}
.h4_c00356{height:43.910303px;}
.h9_c00356{height:48.116836px;}
.h0_c00356{height:1335.000000px;}
.w0_c00356{width:880.500000px;}
.x0_c00356{left:0.000000px;}
.x3_c00356{left:151.500000px;}
.x54_c00356{left:152.580000px;}
.xb9_c00356{left:154.500000px;}
.x7b_c00356{left:165.000000px;}
.x60_c00356{left:166.500000px;}
.x58_c00356{left:168.000000px;}
.xa3_c00356{left:169.080000px;}
.x55_c00356{left:171.000000px;}
.xe5_c00356{left:175.500000px;}
.x59_c00356{left:180.000000px;}
.x61_c00356{left:182.580000px;}
.x7d_c00356{left:184.500000px;}
.xf1_c00356{left:189.000000px;}
.x42_c00356{left:190.080000px;}
.xf5_c00356{left:193.920000px;}
.xc5_c00356{left:195.000000px;}
.x2e_c00356{left:197.580000px;}
.x37_c00356{left:200.580000px;}
.xba_c00356{left:202.080000px;}
.x19_c00356{left:203.580000px;}
.xd5_c00356{left:206.580000px;}
.x4_c00356{left:208.080000px;}
.x85_c00356{left:210.000000px;}
.xff_c00356{left:213.000000px;}
.x24_c00356{left:214.080000px;}
.x11_c00356{left:215.580000px;}
.xd3_c00356{left:217.500000px;}
.x87_c00356{left:220.080000px;}
.x6b_c00356{left:222.000000px;}
.xac_c00356{left:224.580000px;}
.x97_c00356{left:229.080000px;}
.x5a_c00356{left:231.000000px;}
.xe6_c00356{left:235.920000px;}
.x25_c00356{left:238.500000px;}
.xf2_c00356{left:240.000000px;}
.x4a_c00356{left:241.080000px;}
.x74_c00356{left:243.000000px;}
.x38_c00356{left:247.920000px;}
.x6c_c00356{left:249.000000px;}
.x62_c00356{left:250.500000px;}
.xbb_c00356{left:251.580000px;}
.x90_c00356{left:253.500000px;}
.x43_c00356{left:255.420000px;}
.x26_c00356{left:256.920000px;}
.xfa_c00356{left:258.000000px;}
.xf3_c00356{left:259.920000px;}
.xad_c00356{left:262.500000px;}
.x2f_c00356{left:265.080000px;}
.x5b_c00356{left:268.080000px;}
.xda_c00356{left:270.420000px;}
.x4b_c00356{left:273.420000px;}
.x63_c00356{left:274.500000px;}
.x39_c00356{left:276.000000px;}
.xe0_c00356{left:277.500000px;}
.x1a_c00356{left:280.080000px;}
.x5_c00356{left:283.500000px;}
.x12_c00356{left:285.000000px;}
.x9d_c00356{left:286.500000px;}
.x100_c00356{left:289.500000px;}
.xec_c00356{left:291.000000px;}
.xb5_c00356{left:292.920000px;}
.x106_c00356{left:294.000000px;}
.x30_c00356{left:295.080000px;}
.xe7_c00356{left:298.920000px;}
.x1b_c00356{left:301.500000px;}
.x88_c00356{left:303.000000px;}
.xa4_c00356{left:306.420000px;}
.x6d_c00356{left:307.500000px;}
.x4c_c00356{left:309.420000px;}
.xcb_c00356{left:310.500000px;}
.x75_c00356{left:312.000000px;}
.xfb_c00356{left:313.080000px;}
.x6_c00356{left:314.355000px;}
.xae_c00356{left:316.500000px;}
.x31_c00356{left:318.000000px;}
.x95_c00356{left:319.080000px;}
.x1c_c00356{left:321.420000px;}
.x89_c00356{left:324.000000px;}
.x86_c00356{left:328.500000px;}
.x7e_c00356{left:330.000000px;}
.x3a_c00356{left:331.080000px;}
.x56_c00356{left:333.000000px;}
.x4d_c00356{left:336.420000px;}
.x5c_c00356{left:339.000000px;}
.xcc_c00356{left:342.000000px;}
.xbc_c00356{left:343.500000px;}
.x64_c00356{left:345.000000px;}
.x9e_c00356{left:346.080000px;}
.x1d_c00356{left:348.000000px;}
.x7f_c00356{left:349.500000px;}
.x91_c00356{left:352.920000px;}
.x93_c00356{left:357.000000px;}
.xdb_c00356{left:358.920000px;}
.x76_c00356{left:360.000000px;}
.x4e_c00356{left:363.420000px;}
.x6e_c00356{left:364.500000px;}
.x7_c00356{left:366.000000px;}
.x57_c00356{left:368.580000px;}
.x27_c00356{left:370.080000px;}
.xa5_c00356{left:372.420000px;}
.xed_c00356{left:373.500000px;}
.xf6_c00356{left:375.420000px;}
.x3b_c00356{left:376.500000px;}
.x77_c00356{left:378.000000px;}
.x92_c00356{left:379.500000px;}
.x1e_c00356{left:384.645000px;}
.x8a_c00356{left:386.145000px;}
.x107_c00356{left:388.500000px;}
.xc6_c00356{left:390.000000px;}
.x7c_c00356{left:391.500000px;}
.x8_c00356{left:392.580000px;}
.x9f_c00356{left:394.500000px;}
.xbd_c00356{left:397.920000px;}
.x44_c00356{left:400.920000px;}
.x1_c00356{left:402.000000px;}
.x104_c00356{left:405.000000px;}
.xdc_c00356{left:406.080000px;}
.xcd_c00356{left:408.420000px;}
.x98_c00356{left:409.500000px;}
.x80_c00356{left:411.000000px;}
.xf7_c00356{left:412.920000px;}
.xd6_c00356{left:414.000000px;}
.xee_c00356{left:415.920000px;}
.xb6_c00356{left:417.000000px;}
.x6f_c00356{left:418.080000px;}
.x4f_c00356{left:420.420000px;}
.x65_c00356{left:421.920000px;}
.x9_c00356{left:424.080000px;}
.xe1_c00356{left:426.000000px;}
.x1f_c00356{left:427.500000px;}
.x32_c00356{left:429.420000px;}
.x8b_c00356{left:430.920000px;}
.xce_c00356{left:434.580000px;}
.x66_c00356{left:438.000000px;}
.x45_c00356{left:439.920000px;}
.x101_c00356{left:441.000000px;}
.x3c_c00356{left:442.080000px;}
.xc7_c00356{left:443.580000px;}
.x28_c00356{left:445.920000px;}
.x50_c00356{left:447.000000px;}
.x78_c00356{left:448.500000px;}
.x81_c00356{left:449.580000px;}
.xa6_c00356{left:451.500000px;}
.xe2_c00356{left:454.500000px;}
.xfc_c00356{left:457.920000px;}
.xdd_c00356{left:459.000000px;}
.xa_c00356{left:461.580000px;}
.x20_c00356{left:462.645000px;}
.xa7_c00356{left:464.580000px;}
.x46_c00356{left:468.000000px;}
.x13_c00356{left:471.000000px;}
.x99_c00356{left:472.500000px;}
.x29_c00356{left:473.580000px;}
.x70_c00356{left:475.500000px;}
.xbe_c00356{left:478.500000px;}
.x108_c00356{left:481.920000px;}
.x33_c00356{left:483.000000px;}
.x71_c00356{left:484.500000px;}
.x102_c00356{left:487.500000px;}
.x79_c00356{left:490.500000px;}
.xaf_c00356{left:492.420000px;}
.x96_c00356{left:493.500000px;}
.xea_c00356{left:495.000000px;}
.xcf_c00356{left:498.000000px;}
.x14_c00356{left:499.920000px;}
.xe8_c00356{left:501.000000px;}
.x82_c00356{left:504.000000px;}
.x34_c00356{left:508.080000px;}
.xd7_c00356{left:510.420000px;}
.xfd_c00356{left:511.500000px;}
.xbf_c00356{left:513.000000px;}
.x8c_c00356{left:517.500000px;}
.x72_c00356{left:519.000000px;}
.x103_c00356{left:520.500000px;}
.x3d_c00356{left:521.580000px;}
.xc8_c00356{left:523.500000px;}
.x2a_c00356{left:524.580000px;}
.xb_c00356{left:526.500000px;}
.xa8_c00356{left:528.420000px;}
.x109_c00356{left:531.000000px;}
.xf4_c00356{left:532.920000px;}
.x5d_c00356{left:534.000000px;}
.x15_c00356{left:535.500000px;}
.xb0_c00356{left:537.000000px;}
.x51_c00356{left:538.080000px;}
.xc9_c00356{left:539.580000px;}
.xe3_c00356{left:541.500000px;}
.x73_c00356{left:545.580000px;}
.x21_c00356{left:547.500000px;}
.xf8_c00356{left:549.420000px;}
.xa9_c00356{left:553.500000px;}
.xd0_c00356{left:555.000000px;}
.x8d_c00356{left:556.080000px;}
.x47_c00356{left:557.580000px;}
.x16_c00356{left:559.080000px;}
.x94_c00356{left:560.580000px;}
.xc_c00356{left:562.920000px;}
.x35_c00356{left:564.000000px;}
.xc0_c00356{left:565.920000px;}
.x9a_c00356{left:567.420000px;}
.xf9_c00356{left:572.580000px;}
.x8e_c00356{left:573.645000px;}
.x67_c00356{left:579.000000px;}
.x83_c00356{left:580.080000px;}
.xca_c00356{left:582.000000px;}
.xb7_c00356{left:583.920000px;}
.x3e_c00356{left:585.000000px;}
.x2b_c00356{left:586.500000px;}
.xd_c00356{left:589.080000px;}
.x36_c00356{left:591.000000px;}
.xc1_c00356{left:592.500000px;}
.x52_c00356{left:597.000000px;}
.x5e_c00356{left:600.000000px;}
.x22_c00356{left:607.500000px;}
.xde_c00356{left:609.420000px;}
.xa0_c00356{left:614.580000px;}
.x3f_c00356{left:615.855000px;}
.x5f_c00356{left:617.580000px;}
.xeb_c00356{left:619.080000px;}
.xb1_c00356{left:621.420000px;}
.x105_c00356{left:625.080000px;}
.xd1_c00356{left:627.420000px;}
.x17_c00356{left:628.920000px;}
.x53_c00356{left:631.080000px;}
.x68_c00356{left:634.080000px;}
.x9b_c00356{left:635.580000px;}
.xd4_c00356{left:640.500000px;}
.xc2_c00356{left:644.580000px;}
.xb2_c00356{left:646.500000px;}
.xfe_c00356{left:648.000000px;}
.x2c_c00356{left:649.080000px;}
.xef_c00356{left:652.080000px;}
.xd2_c00356{left:654.420000px;}
.x8f_c00356{left:655.500000px;}
.xaa_c00356{left:656.580000px;}
.x48_c00356{left:658.080000px;}
.x18_c00356{left:659.355000px;}
.xa1_c00356{left:661.080000px;}
.xe_c00356{left:664.080000px;}
.xd8_c00356{left:667.080000px;}
.x40_c00356{left:670.500000px;}
.x23_c00356{left:672.000000px;}
.x84_c00356{left:673.500000px;}
.xc3_c00356{left:675.000000px;}
.x9c_c00356{left:678.000000px;}
.x7a_c00356{left:679.500000px;}
.x2d_c00356{left:680.580000px;}
.xb3_c00356{left:684.000000px;}
.xab_c00356{left:687.000000px;}
.xd9_c00356{left:688.500000px;}
.x69_c00356{left:689.580000px;}
.xf_c00356{left:692.580000px;}
.xe4_c00356{left:696.000000px;}
.xf0_c00356{left:697.080000px;}
.xb4_c00356{left:699.420000px;}
.x6a_c00356{left:700.500000px;}
.x41_c00356{left:701.580000px;}
.x2_c00356{left:703.080000px;}
.xa2_c00356{left:707.580000px;}
.xc4_c00356{left:709.920000px;}
.xdf_c00356{left:711.420000px;}
.x10_c00356{left:713.580000px;}
.x49_c00356{left:715.080000px;}
.xe9_c00356{left:717.000000px;}
.xb8_c00356{left:718.080000px;}
@media print{
.v0_c00356{vertical-align:0.000000pt;}
.ls0_c00356{letter-spacing:0.000000pt;}
.ws1_c00356{word-spacing:-5.397597pt;}
.ws0_c00356{word-spacing:-2.051756pt;}
.ws2_c00356{word-spacing:0.000000pt;}
.fs7_c00356{font-size:3.040000pt;}
.fs6_c00356{font-size:12.106667pt;}
.fs4_c00356{font-size:16.640000pt;}
.fs0_c00356{font-size:18.133333pt;}
.fs2_c00356{font-size:22.666667pt;}
.fs1_c00356{font-size:25.706667pt;}
.fs5_c00356{font-size:28.746667pt;}
.fs3_c00356{font-size:31.733333pt;}
.fs8_c00356{font-size:34.773333pt;}
.y0_c00356{bottom:0.000000pt;}
.ye5_c00356{bottom:224.160000pt;}
.ye4_c00356{bottom:225.106667pt;}
.ye2_c00356{bottom:227.026667pt;}
.ye3_c00356{bottom:227.226667pt;}
.ydf_c00356{bottom:241.693333pt;}
.yda_c00356{bottom:242.440000pt;}
.ydd_c00356{bottom:242.640000pt;}
.ydb_c00356{bottom:243.773333pt;}
.yde_c00356{bottom:244.360000pt;}
.ye1_c00356{bottom:244.560000pt;}
.ye0_c00356{bottom:245.306667pt;}
.ydc_c00356{bottom:245.693333pt;}
.yd9_c00356{bottom:259.026667pt;}
.yd8_c00356{bottom:259.773333pt;}
.yd6_c00356{bottom:261.106667pt;}
.yd7_c00356{bottom:263.026667pt;}
.yd4_c00356{bottom:278.440000pt;}
.yd5_c00356{bottom:279.400000pt;}
.yd3_c00356{bottom:280.360000pt;}
.yd2_c00356{bottom:281.306667pt;}
.yd1_c00356{bottom:295.400000pt;}
.ycf_c00356{bottom:295.773333pt;}
.yd0_c00356{bottom:297.693333pt;}
.yce_c00356{bottom:312.733333pt;}
.yc9_c00356{bottom:313.106667pt;}
.ycd_c00356{bottom:314.066667pt;}
.ycc_c00356{bottom:315.026667pt;}
.ycb_c00356{bottom:315.973333pt;}
.yca_c00356{bottom:316.360000pt;}
.yc8_c00356{bottom:330.440000pt;}
.yc5_c00356{bottom:331.400000pt;}
.yc4_c00356{bottom:331.773333pt;}
.yc7_c00356{bottom:332.360000pt;}
.yc6_c00356{bottom:333.306667pt;}
.yc3_c00356{bottom:333.693333pt;}
.yc1_c00356{bottom:347.773333pt;}
.ybe_c00356{bottom:348.733333pt;}
.ybf_c00356{bottom:349.106667pt;}
.yc0_c00356{bottom:349.693333pt;}
.yc2_c00356{bottom:349.893333pt;}
.ybd_c00356{bottom:351.026667pt;}
.ybc_c00356{bottom:365.106667pt;}
.yb8_c00356{bottom:366.440000pt;}
.ybb_c00356{bottom:367.026667pt;}
.yba_c00356{bottom:367.973333pt;}
.yb9_c00356{bottom:368.360000pt;}
.yb7_c00356{bottom:382.440000pt;}
.yb5_c00356{bottom:383.773333pt;}
.yb4_c00356{bottom:384.560000pt;}
.yb6_c00356{bottom:385.693333pt;}
.yb3_c00356{bottom:400.733333pt;}
.yb0_c00356{bottom:401.106667pt;}
.yb1_c00356{bottom:401.893333pt;}
.yaf_c00356{bottom:403.026667pt;}
.yb2_c00356{bottom:403.973333pt;}
.yac_c00356{bottom:418.440000pt;}
.yae_c00356{bottom:419.226667pt;}
.yad_c00356{bottom:420.360000pt;}
.yab_c00356{bottom:420.560000pt;}
.ya7_c00356{bottom:435.773333pt;}
.yaa_c00356{bottom:436.560000pt;}
.ya4_c00356{bottom:436.733333pt;}
.ya9_c00356{bottom:437.306667pt;}
.ya5_c00356{bottom:437.693333pt;}
.ya6_c00356{bottom:437.893333pt;}
.ya8_c00356{bottom:438.640000pt;}
.ya3_c00356{bottom:453.106667pt;}
.y9e_c00356{bottom:454.066667pt;}
.y9f_c00356{bottom:454.440000pt;}
.ya0_c00356{bottom:455.026667pt;}
.ya1_c00356{bottom:455.226667pt;}
.ya2_c00356{bottom:455.973333pt;}
.y9d_c00356{bottom:456.360000pt;}
.y9c_c00356{bottom:470.440000pt;}
.y9a_c00356{bottom:471.400000pt;}
.y98_c00356{bottom:471.773333pt;}
.y99_c00356{bottom:472.360000pt;}
.y9b_c00356{bottom:472.560000pt;}
.y92_c00356{bottom:487.026667pt;}
.y91_c00356{bottom:488.733333pt;}
.y96_c00356{bottom:489.106667pt;}
.y97_c00356{bottom:489.693333pt;}
.y95_c00356{bottom:489.893333pt;}
.y93_c00356{bottom:490.640000pt;}
.y90_c00356{bottom:491.026667pt;}
.y94_c00356{bottom:491.973333pt;}
.y8c_c00356{bottom:505.106667pt;}
.y8d_c00356{bottom:506.440000pt;}
.y8f_c00356{bottom:507.226667pt;}
.y8b_c00356{bottom:507.400000pt;}
.y8e_c00356{bottom:507.973333pt;}
.y8a_c00356{bottom:508.360000pt;}
.y89_c00356{bottom:508.560000pt;}
.y88_c00356{bottom:522.440000pt;}
.y87_c00356{bottom:523.026667pt;}
.y83_c00356{bottom:523.773333pt;}
.y85_c00356{bottom:525.693333pt;}
.y86_c00356{bottom:525.893333pt;}
.y84_c00356{bottom:526.640000pt;}
.y81_c00356{bottom:541.106667pt;}
.y7f_c00356{bottom:543.026667pt;}
.y80_c00356{bottom:543.226667pt;}
.y82_c00356{bottom:543.973333pt;}
.y7d_c00356{bottom:558.440000pt;}
.y7a_c00356{bottom:559.773333pt;}
.y7c_c00356{bottom:560.360000pt;}
.y7e_c00356{bottom:560.560000pt;}
.y7b_c00356{bottom:561.706667pt;}
.y79_c00356{bottom:583.400000pt;}
.y78_c00356{bottom:585.306667pt;}
.y77_c00356{bottom:595.400000pt;}
.y75_c00356{bottom:596.360000pt;}
.y76_c00356{bottom:596.933333pt;}
.y73_c00356{bottom:597.306667pt;}
.y72_c00356{bottom:597.693333pt;}
.y74_c00356{bottom:597.893333pt;}
.y71_c00356{bottom:598.266667pt;}
.y70_c00356{bottom:608.733333pt;}
.y6e_c00356{bottom:609.693333pt;}
.y6b_c00356{bottom:610.066667pt;}
.y6c_c00356{bottom:610.640000pt;}
.y6d_c00356{bottom:610.840000pt;}
.y6f_c00356{bottom:611.600000pt;}
.y6a_c00356{bottom:621.306667pt;}
.y69_c00356{bottom:622.066667pt;}
.y64_c00356{bottom:622.266667pt;}
.y66_c00356{bottom:623.026667pt;}
.y67_c00356{bottom:623.973333pt;}
.y68_c00356{bottom:624.173333pt;}
.y65_c00356{bottom:624.933333pt;}
.y62_c00356{bottom:636.360000pt;}
.y63_c00356{bottom:637.506667pt;}
.y61_c00356{bottom:638.266667pt;}
.y5f_c00356{bottom:648.733333pt;}
.y5e_c00356{bottom:650.640000pt;}
.y60_c00356{bottom:650.840000pt;}
.y5d_c00356{bottom:651.600000pt;}
.y5c_c00356{bottom:663.026667pt;}
.y59_c00356{bottom:663.973333pt;}
.y5a_c00356{bottom:664.173333pt;}
.y5b_c00356{bottom:664.933333pt;}
.y53_c00356{bottom:674.640000pt;}
.y58_c00356{bottom:675.400000pt;}
.y55_c00356{bottom:676.360000pt;}
.y57_c00356{bottom:677.306667pt;}
.y56_c00356{bottom:677.506667pt;}
.y54_c00356{bottom:678.266667pt;}
.y50_c00356{bottom:688.360000pt;}
.y52_c00356{bottom:688.733333pt;}
.y51_c00356{bottom:689.306667pt;}
.y4d_c00356{bottom:689.693333pt;}
.y4f_c00356{bottom:690.640000pt;}
.y4e_c00356{bottom:690.840000pt;}
.y4c_c00356{bottom:700.733333pt;}
.y47_c00356{bottom:700.933333pt;}
.y4a_c00356{bottom:702.640000pt;}
.y49_c00356{bottom:703.226667pt;}
.y4b_c00356{bottom:703.600000pt;}
.y48_c00356{bottom:703.973333pt;}
.y44_c00356{bottom:714.066667pt;}
.y45_c00356{bottom:715.026667pt;}
.y43_c00356{bottom:715.973333pt;}
.y42_c00356{bottom:716.173333pt;}
.y46_c00356{bottom:716.933333pt;}
.y3d_c00356{bottom:726.640000pt;}
.y3e_c00356{bottom:728.360000pt;}
.y40_c00356{bottom:728.560000pt;}
.y3f_c00356{bottom:729.306667pt;}
.y41_c00356{bottom:730.266667pt;}
.y3b_c00356{bottom:741.693333pt;}
.y3a_c00356{bottom:742.640000pt;}
.y39_c00356{bottom:742.840000pt;}
.y3c_c00356{bottom:743.600000pt;}
.y37_c00356{bottom:754.066667pt;}
.y38_c00356{bottom:754.266667pt;}
.y32_c00356{bottom:768.360000pt;}
.y33_c00356{bottom:768.560000pt;}
.y35_c00356{bottom:769.306667pt;}
.y36_c00356{bottom:769.506667pt;}
.y34_c00356{bottom:770.266667pt;}
.y30_c00356{bottom:786.440000pt;}
.y31_c00356{bottom:788.360000pt;}
.y2f_c00356{bottom:789.306667pt;}
.y2d_c00356{bottom:803.773333pt;}
.y2e_c00356{bottom:804.560000pt;}
.y2b_c00356{bottom:805.693333pt;}
.y2c_c00356{bottom:806.640000pt;}
.y29_c00356{bottom:821.106667pt;}
.y2a_c00356{bottom:821.893333pt;}
.y25_c00356{bottom:822.066667pt;}
.y28_c00356{bottom:822.640000pt;}
.y26_c00356{bottom:823.026667pt;}
.y27_c00356{bottom:823.226667pt;}
.y23_c00356{bottom:838.440000pt;}
.y22_c00356{bottom:839.400000pt;}
.y20_c00356{bottom:839.773333pt;}
.y1f_c00356{bottom:840.360000pt;}
.y21_c00356{bottom:840.560000pt;}
.y24_c00356{bottom:841.306667pt;}
.y1d_c00356{bottom:857.106667pt;}
.y1e_c00356{bottom:857.693333pt;}
.y1a_c00356{bottom:858.066667pt;}
.y1c_c00356{bottom:858.640000pt;}
.y1b_c00356{bottom:859.026667pt;}
.y19_c00356{bottom:873.106667pt;}
.y15_c00356{bottom:874.440000pt;}
.y18_c00356{bottom:875.226667pt;}
.y16_c00356{bottom:875.400000pt;}
.y17_c00356{bottom:875.973333pt;}
.y13_c00356{bottom:890.440000pt;}
.y10_c00356{bottom:891.773333pt;}
.y12_c00356{bottom:892.360000pt;}
.y14_c00356{bottom:892.560000pt;}
.yf_c00356{bottom:892.733333pt;}
.y11_c00356{bottom:893.693333pt;}
.yd_c00356{bottom:909.106667pt;}
.ye_c00356{bottom:909.893333pt;}
.yc_c00356{bottom:911.026667pt;}
.y7_c00356{bottom:926.440000pt;}
.y9_c00356{bottom:927.226667pt;}
.yb_c00356{bottom:927.973333pt;}
.y8_c00356{bottom:928.360000pt;}
.ya_c00356{bottom:929.306667pt;}
.y5_c00356{bottom:943.773333pt;}
.y6_c00356{bottom:944.560000pt;}
.y3_c00356{bottom:945.306667pt;}
.y4_c00356{bottom:945.693333pt;}
.y2_c00356{bottom:977.693333pt;}
.y1_c00356{bottom:979.600000pt;}
.h8_c00356{height:3.739141pt;}
.h7_c00356{height:14.890964pt;}
.h5_c00356{height:20.466875pt;}
.h1_c00356{height:22.303646pt;}
.h3_c00356{height:27.879557pt;}
.h2_c00356{height:31.618698pt;}
.h6_c00356{height:35.357839pt;}
.h4_c00356{height:39.031380pt;}
.h9_c00356{height:42.770521pt;}
.h0_c00356{height:1186.666667pt;}
.w0_c00356{width:782.666667pt;}
.x0_c00356{left:0.000000pt;}
.x3_c00356{left:134.666667pt;}
.x54_c00356{left:135.626667pt;}
.xb9_c00356{left:137.333333pt;}
.x7b_c00356{left:146.666667pt;}
.x60_c00356{left:148.000000pt;}
.x58_c00356{left:149.333333pt;}
.xa3_c00356{left:150.293333pt;}
.x55_c00356{left:152.000000pt;}
.xe5_c00356{left:156.000000pt;}
.x59_c00356{left:160.000000pt;}
.x61_c00356{left:162.293333pt;}
.x7d_c00356{left:164.000000pt;}
.xf1_c00356{left:168.000000pt;}
.x42_c00356{left:168.960000pt;}
.xf5_c00356{left:172.373333pt;}
.xc5_c00356{left:173.333333pt;}
.x2e_c00356{left:175.626667pt;}
.x37_c00356{left:178.293333pt;}
.xba_c00356{left:179.626667pt;}
.x19_c00356{left:180.960000pt;}
.xd5_c00356{left:183.626667pt;}
.x4_c00356{left:184.960000pt;}
.x85_c00356{left:186.666667pt;}
.xff_c00356{left:189.333333pt;}
.x24_c00356{left:190.293333pt;}
.x11_c00356{left:191.626667pt;}
.xd3_c00356{left:193.333333pt;}
.x87_c00356{left:195.626667pt;}
.x6b_c00356{left:197.333333pt;}
.xac_c00356{left:199.626667pt;}
.x97_c00356{left:203.626667pt;}
.x5a_c00356{left:205.333333pt;}
.xe6_c00356{left:209.706667pt;}
.x25_c00356{left:212.000000pt;}
.xf2_c00356{left:213.333333pt;}
.x4a_c00356{left:214.293333pt;}
.x74_c00356{left:216.000000pt;}
.x38_c00356{left:220.373333pt;}
.x6c_c00356{left:221.333333pt;}
.x62_c00356{left:222.666667pt;}
.xbb_c00356{left:223.626667pt;}
.x90_c00356{left:225.333333pt;}
.x43_c00356{left:227.040000pt;}
.x26_c00356{left:228.373333pt;}
.xfa_c00356{left:229.333333pt;}
.xf3_c00356{left:231.040000pt;}
.xad_c00356{left:233.333333pt;}
.x2f_c00356{left:235.626667pt;}
.x5b_c00356{left:238.293333pt;}
.xda_c00356{left:240.373333pt;}
.x4b_c00356{left:243.040000pt;}
.x63_c00356{left:244.000000pt;}
.x39_c00356{left:245.333333pt;}
.xe0_c00356{left:246.666667pt;}
.x1a_c00356{left:248.960000pt;}
.x5_c00356{left:252.000000pt;}
.x12_c00356{left:253.333333pt;}
.x9d_c00356{left:254.666667pt;}
.x100_c00356{left:257.333333pt;}
.xec_c00356{left:258.666667pt;}
.xb5_c00356{left:260.373333pt;}
.x106_c00356{left:261.333333pt;}
.x30_c00356{left:262.293333pt;}
.xe7_c00356{left:265.706667pt;}
.x1b_c00356{left:268.000000pt;}
.x88_c00356{left:269.333333pt;}
.xa4_c00356{left:272.373333pt;}
.x6d_c00356{left:273.333333pt;}
.x4c_c00356{left:275.040000pt;}
.xcb_c00356{left:276.000000pt;}
.x75_c00356{left:277.333333pt;}
.xfb_c00356{left:278.293333pt;}
.x6_c00356{left:279.426667pt;}
.xae_c00356{left:281.333333pt;}
.x31_c00356{left:282.666667pt;}
.x95_c00356{left:283.626667pt;}
.x1c_c00356{left:285.706667pt;}
.x89_c00356{left:288.000000pt;}
.x86_c00356{left:292.000000pt;}
.x7e_c00356{left:293.333333pt;}
.x3a_c00356{left:294.293333pt;}
.x56_c00356{left:296.000000pt;}
.x4d_c00356{left:299.040000pt;}
.x5c_c00356{left:301.333333pt;}
.xcc_c00356{left:304.000000pt;}
.xbc_c00356{left:305.333333pt;}
.x64_c00356{left:306.666667pt;}
.x9e_c00356{left:307.626667pt;}
.x1d_c00356{left:309.333333pt;}
.x7f_c00356{left:310.666667pt;}
.x91_c00356{left:313.706667pt;}
.x93_c00356{left:317.333333pt;}
.xdb_c00356{left:319.040000pt;}
.x76_c00356{left:320.000000pt;}
.x4e_c00356{left:323.040000pt;}
.x6e_c00356{left:324.000000pt;}
.x7_c00356{left:325.333333pt;}
.x57_c00356{left:327.626667pt;}
.x27_c00356{left:328.960000pt;}
.xa5_c00356{left:331.040000pt;}
.xed_c00356{left:332.000000pt;}
.xf6_c00356{left:333.706667pt;}
.x3b_c00356{left:334.666667pt;}
.x77_c00356{left:336.000000pt;}
.x92_c00356{left:337.333333pt;}
.x1e_c00356{left:341.906667pt;}
.x8a_c00356{left:343.240000pt;}
.x107_c00356{left:345.333333pt;}
.xc6_c00356{left:346.666667pt;}
.x7c_c00356{left:348.000000pt;}
.x8_c00356{left:348.960000pt;}
.x9f_c00356{left:350.666667pt;}
.xbd_c00356{left:353.706667pt;}
.x44_c00356{left:356.373333pt;}
.x1_c00356{left:357.333333pt;}
.x104_c00356{left:360.000000pt;}
.xdc_c00356{left:360.960000pt;}
.xcd_c00356{left:363.040000pt;}
.x98_c00356{left:364.000000pt;}
.x80_c00356{left:365.333333pt;}
.xf7_c00356{left:367.040000pt;}
.xd6_c00356{left:368.000000pt;}
.xee_c00356{left:369.706667pt;}
.xb6_c00356{left:370.666667pt;}
.x6f_c00356{left:371.626667pt;}
.x4f_c00356{left:373.706667pt;}
.x65_c00356{left:375.040000pt;}
.x9_c00356{left:376.960000pt;}
.xe1_c00356{left:378.666667pt;}
.x1f_c00356{left:380.000000pt;}
.x32_c00356{left:381.706667pt;}
.x8b_c00356{left:383.040000pt;}
.xce_c00356{left:386.293333pt;}
.x66_c00356{left:389.333333pt;}
.x45_c00356{left:391.040000pt;}
.x101_c00356{left:392.000000pt;}
.x3c_c00356{left:392.960000pt;}
.xc7_c00356{left:394.293333pt;}
.x28_c00356{left:396.373333pt;}
.x50_c00356{left:397.333333pt;}
.x78_c00356{left:398.666667pt;}
.x81_c00356{left:399.626667pt;}
.xa6_c00356{left:401.333333pt;}
.xe2_c00356{left:404.000000pt;}
.xfc_c00356{left:407.040000pt;}
.xdd_c00356{left:408.000000pt;}
.xa_c00356{left:410.293333pt;}
.x20_c00356{left:411.240000pt;}
.xa7_c00356{left:412.960000pt;}
.x46_c00356{left:416.000000pt;}
.x13_c00356{left:418.666667pt;}
.x99_c00356{left:420.000000pt;}
.x29_c00356{left:420.960000pt;}
.x70_c00356{left:422.666667pt;}
.xbe_c00356{left:425.333333pt;}
.x108_c00356{left:428.373333pt;}
.x33_c00356{left:429.333333pt;}
.x71_c00356{left:430.666667pt;}
.x102_c00356{left:433.333333pt;}
.x79_c00356{left:436.000000pt;}
.xaf_c00356{left:437.706667pt;}
.x96_c00356{left:438.666667pt;}
.xea_c00356{left:440.000000pt;}
.xcf_c00356{left:442.666667pt;}
.x14_c00356{left:444.373333pt;}
.xe8_c00356{left:445.333333pt;}
.x82_c00356{left:448.000000pt;}
.x34_c00356{left:451.626667pt;}
.xd7_c00356{left:453.706667pt;}
.xfd_c00356{left:454.666667pt;}
.xbf_c00356{left:456.000000pt;}
.x8c_c00356{left:460.000000pt;}
.x72_c00356{left:461.333333pt;}
.x103_c00356{left:462.666667pt;}
.x3d_c00356{left:463.626667pt;}
.xc8_c00356{left:465.333333pt;}
.x2a_c00356{left:466.293333pt;}
.xb_c00356{left:468.000000pt;}
.xa8_c00356{left:469.706667pt;}
.x109_c00356{left:472.000000pt;}
.xf4_c00356{left:473.706667pt;}
.x5d_c00356{left:474.666667pt;}
.x15_c00356{left:476.000000pt;}
.xb0_c00356{left:477.333333pt;}
.x51_c00356{left:478.293333pt;}
.xc9_c00356{left:479.626667pt;}
.xe3_c00356{left:481.333333pt;}
.x73_c00356{left:484.960000pt;}
.x21_c00356{left:486.666667pt;}
.xf8_c00356{left:488.373333pt;}
.xa9_c00356{left:492.000000pt;}
.xd0_c00356{left:493.333333pt;}
.x8d_c00356{left:494.293333pt;}
.x47_c00356{left:495.626667pt;}
.x16_c00356{left:496.960000pt;}
.x94_c00356{left:498.293333pt;}
.xc_c00356{left:500.373333pt;}
.x35_c00356{left:501.333333pt;}
.xc0_c00356{left:503.040000pt;}
.x9a_c00356{left:504.373333pt;}
.xf9_c00356{left:508.960000pt;}
.x8e_c00356{left:509.906667pt;}
.x67_c00356{left:514.666667pt;}
.x83_c00356{left:515.626667pt;}
.xca_c00356{left:517.333333pt;}
.xb7_c00356{left:519.040000pt;}
.x3e_c00356{left:520.000000pt;}
.x2b_c00356{left:521.333333pt;}
.xd_c00356{left:523.626667pt;}
.x36_c00356{left:525.333333pt;}
.xc1_c00356{left:526.666667pt;}
.x52_c00356{left:530.666667pt;}
.x5e_c00356{left:533.333333pt;}
.x22_c00356{left:540.000000pt;}
.xde_c00356{left:541.706667pt;}
.xa0_c00356{left:546.293333pt;}
.x3f_c00356{left:547.426667pt;}
.x5f_c00356{left:548.960000pt;}
.xeb_c00356{left:550.293333pt;}
.xb1_c00356{left:552.373333pt;}
.x105_c00356{left:555.626667pt;}
.xd1_c00356{left:557.706667pt;}
.x17_c00356{left:559.040000pt;}
.x53_c00356{left:560.960000pt;}
.x68_c00356{left:563.626667pt;}
.x9b_c00356{left:564.960000pt;}
.xd4_c00356{left:569.333333pt;}
.xc2_c00356{left:572.960000pt;}
.xb2_c00356{left:574.666667pt;}
.xfe_c00356{left:576.000000pt;}
.x2c_c00356{left:576.960000pt;}
.xef_c00356{left:579.626667pt;}
.xd2_c00356{left:581.706667pt;}
.x8f_c00356{left:582.666667pt;}
.xaa_c00356{left:583.626667pt;}
.x48_c00356{left:584.960000pt;}
.x18_c00356{left:586.093333pt;}
.xa1_c00356{left:587.626667pt;}
.xe_c00356{left:590.293333pt;}
.xd8_c00356{left:592.960000pt;}
.x40_c00356{left:596.000000pt;}
.x23_c00356{left:597.333333pt;}
.x84_c00356{left:598.666667pt;}
.xc3_c00356{left:600.000000pt;}
.x9c_c00356{left:602.666667pt;}
.x7a_c00356{left:604.000000pt;}
.x2d_c00356{left:604.960000pt;}
.xb3_c00356{left:608.000000pt;}
.xab_c00356{left:610.666667pt;}
.xd9_c00356{left:612.000000pt;}
.x69_c00356{left:612.960000pt;}
.xf_c00356{left:615.626667pt;}
.xe4_c00356{left:618.666667pt;}
.xf0_c00356{left:619.626667pt;}
.xb4_c00356{left:621.706667pt;}
.x6a_c00356{left:622.666667pt;}
.x41_c00356{left:623.626667pt;}
.x2_c00356{left:624.960000pt;}
.xa2_c00356{left:628.960000pt;}
.xc4_c00356{left:631.040000pt;}
.xdf_c00356{left:632.373333pt;}
.x10_c00356{left:634.293333pt;}
.x49_c00356{left:635.626667pt;}
.xe9_c00356{left:637.333333pt;}
.xb8_c00356{left:638.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_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_5393d30bea7ae49ccd385880.woff2')format("woff");}.ff1_c00357{font-family:ff1_c00357;line-height:1.688965;font-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_c00357{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.ma7_c00357{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m34_c00357{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_c00357{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m72_c00357{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m5f_c00357{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.ma0_c00357{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.m30_c00357{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.ma8_c00357{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m13_c00357{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m6a_c00357{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.mac_c00357{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m80_c00357{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mcd_c00357{transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);}
.m1c_c00357{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m3f_c00357{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.ma5_c00357{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.mb0_c00357{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m91_c00357{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m0_c00357{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.maa_c00357{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m2a_c00357{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m63_c00357{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m1b_c00357{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.md5_c00357{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m40_c00357{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m82_c00357{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m9d_c00357{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m6b_c00357{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m44_c00357{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m83_c00357{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m8d_c00357{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m29_c00357{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m7f_c00357{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m25_c00357{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mb1_c00357{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mbb_c00357{transform:matrix(0.421680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421680,0.000000,0.000000,0.250000,0,0);}
.m4a_c00357{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m4d_c00357{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mf_c00357{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.md2_c00357{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m5d_c00357{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m51_c00357{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m2_c00357{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m18_c00357{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m5a_c00357{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.ma9_c00357{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m26_c00357{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m7c_c00357{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.mc9_c00357{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.ma3_c00357{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.md_c00357{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.md8_c00357{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m9a_c00357{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m8f_c00357{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m58_c00357{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.me4_c00357{transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);}
.m5e_c00357{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m54_c00357{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m71_c00357{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m60_c00357{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m52_c00357{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.m6e_c00357{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m92_c00357{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m16_c00357{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m7b_c00357{transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);}
.me0_c00357{transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);}
.m41_c00357{transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);}
.m59_c00357{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.ma2_c00357{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.mb4_c00357{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m6f_c00357{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m62_c00357{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.m23_c00357{transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);}
.m9f_c00357{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m2c_c00357{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.me8_c00357{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.mde_c00357{transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);}
.mad_c00357{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.mbe_c00357{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m4_c00357{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.mbf_c00357{transform:matrix(0.480672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480672,0.000000,0.000000,0.250000,0,0);}
.m22_c00357{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m73_c00357{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mee_c00357{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m90_c00357{transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);}
.m55_c00357{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mba_c00357{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m49_c00357{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m4f_c00357{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.m95_c00357{transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);}
.m38_c00357{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mf6_c00357{transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);}
.mc1_c00357{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m50_c00357{transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);}
.m8a_c00357{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.mb6_c00357{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m17_c00357{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_c00357{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m47_c00357{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m68_c00357{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m8_c00357{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m9_c00357{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m35_c00357{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mf7_c00357{transform:matrix(0.509615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509615,0.000000,0.000000,0.250000,0,0);}
.m11_c00357{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m70_c00357{transform:matrix(0.510668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510668,0.000000,0.000000,0.250000,0,0);}
.m8c_c00357{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mb2_c00357{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.md1_c00357{transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);}
.m42_c00357{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m2e_c00357{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m4e_c00357{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.me_c00357{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.ma6_c00357{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m69_c00357{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m5b_c00357{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m6d_c00357{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m27_c00357{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m9b_c00357{transform:matrix(0.524583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524583,0.000000,0.000000,0.250000,0,0);}
.m9c_c00357{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m2b_c00357{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m1f_c00357{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m85_c00357{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m7_c00357{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m57_c00357{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m87_c00357{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m5c_c00357{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m12_c00357{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mb9_c00357{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m4b_c00357{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m24_c00357{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m65_c00357{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m1e_c00357{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mcf_c00357{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m6c_c00357{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m7d_c00357{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m28_c00357{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m31_c00357{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mb7_c00357{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m3a_c00357{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m45_c00357{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m74_c00357{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.me6_c00357{transform:matrix(0.548878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548878,0.000000,0.000000,0.250000,0,0);}
.m88_c00357{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m76_c00357{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m8b_c00357{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.mda_c00357{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m2f_c00357{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m5_c00357{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m46_c00357{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m86_c00357{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m4c_c00357{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m3b_c00357{transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);}
.ma4_c00357{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m20_c00357{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mc0_c00357{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);}
.m3e_c00357{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.maf_c00357{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m98_c00357{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m97_c00357{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m15_c00357{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m2d_c00357{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mc4_c00357{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m33_c00357{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m78_c00357{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mb_c00357{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m67_c00357{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m64_c00357{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.mce_c00357{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.mbc_c00357{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m10_c00357{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.mdb_c00357{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.ma_c00357{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m7a_c00357{transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);}
.mb5_c00357{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.mb8_c00357{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m3d_c00357{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m93_c00357{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m7e_c00357{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m89_c00357{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m39_c00357{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_c00357{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mc3_c00357{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m94_c00357{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.m84_c00357{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m1_c00357{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.md6_c00357{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m1a_c00357{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m1d_c00357{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.md3_c00357{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m6_c00357{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mcb_c00357{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.md0_c00357{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.mc6_c00357{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mc7_c00357{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_c00357{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mc_c00357{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.me2_c00357{transform:matrix(0.638767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638767,0.000000,0.000000,0.250000,0,0);}
.m99_c00357{transform:matrix(0.639076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639076,0.000000,0.000000,0.250000,0,0);}
.mef_c00357{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.mc8_c00357{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.mc5_c00357{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.md4_c00357{transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);}
.m36_c00357{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mdc_c00357{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m3c_c00357{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mf1_c00357{transform:matrix(0.667929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667929,0.000000,0.000000,0.250000,0,0);}
.m37_c00357{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.me1_c00357{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.mf5_c00357{transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);}
.mf4_c00357{transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);}
.md7_c00357{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m79_c00357{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.me7_c00357{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.m56_c00357{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.mf2_c00357{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.mca_c00357{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);}
.mec_c00357{transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);}
.m19_c00357{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.md9_c00357{transform:matrix(0.720264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720264,0.000000,0.000000,0.250000,0,0);}
.m8e_c00357{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.mf3_c00357{transform:matrix(0.727974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727974,0.000000,0.000000,0.250000,0,0);}
.mbd_c00357{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m32_c00357{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.mab_c00357{transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);}
.m53_c00357{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mc2_c00357{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.me3_c00357{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.mf0_c00357{transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);}
.me9_c00357{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m43_c00357{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m21_c00357{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m3_c00357{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m75_c00357{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mdf_c00357{transform:matrix(0.770925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770925,0.000000,0.000000,0.250000,0,0);}
.m61_c00357{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.m77_c00357{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m9e_c00357{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);}
.mea_c00357{transform:matrix(0.805066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805066,0.000000,0.000000,0.250000,0,0);}
.m14_c00357{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.meb_c00357{transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);}
.mae_c00357{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.me5_c00357{transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);}
.med_c00357{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mb3_c00357{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.mcc_c00357{transform:matrix(0.936123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.936123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.936123,0.000000,0.000000,0.250000,0,0);}
.mdd_c00357{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.v1_c00357{vertical-align:-6.000000px;}
.v0_c00357{vertical-align:0.000000px;}
.ls1_c00357{letter-spacing:0.000000px;}
.ls0_c00357{letter-spacing:57.908049px;}
.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;}
}
.ws5_c00357{word-spacing:-65.862129px;}
.ws1_c00357{word-spacing:-7.189112px;}
.ws2_c00357{word-spacing:-6.400641px;}
.ws0_c00357{word-spacing:-4.629036px;}
.ws3_c00357{word-spacing:-3.832828px;}
.ws11_c00357{word-spacing:0.000000px;}
.ws4_c00357{word-spacing:27.671529px;}
.wsb_c00357{word-spacing:30.193299px;}
.wsd_c00357{word-spacing:32.348362px;}
.ws7_c00357{word-spacing:36.864950px;}
.ws8_c00357{word-spacing:39.116190px;}
.ws9_c00357{word-spacing:41.452695px;}
.wsc_c00357{word-spacing:42.638400px;}
.wse_c00357{word-spacing:45.638400px;}
.wsf_c00357{word-spacing:46.400058px;}
.wsa_c00357{word-spacing:49.633219px;}
.ws10_c00357{word-spacing:52.866379px;}
.ws6_c00357{word-spacing:87.395114px;}
._1_c00357{margin-left:-57.908049px;}
._0_c00357{width:14.683097px;}
._4_c00357{width:48.199470px;}
._3_c00357{width:56.570880px;}
._2_c00357{width:124.137680px;}
.fc0_c00357{color:transparent;}
.fs7_c00357{font-size:3.420000px;}
.fs8_c00357{font-size:11.880000px;}
.fs6_c00357{font-size:13.620000px;}
.fs2_c00357{font-size:18.720000px;}
.fs1_c00357{font-size:20.400000px;}
.fs4_c00357{font-size:25.500000px;}
.fs3_c00357{font-size:28.920000px;}
.fs0_c00357{font-size:32.340000px;}
.fs5_c00357{font-size:35.700000px;}
.y0_c00357{bottom:0.000000px;}
.ycb_c00357{bottom:254.130000px;}
.ycc_c00357{bottom:255.195000px;}
.yca_c00357{bottom:255.630000px;}
.yc9_c00357{bottom:256.695000px;}
.yc7_c00357{bottom:257.130000px;}
.yc8_c00357{bottom:258.195000px;}
.yc5_c00357{bottom:270.630000px;}
.yc6_c00357{bottom:271.695000px;}
.yc4_c00357{bottom:282.195000px;}
.yc3_c00357{bottom:282.630000px;}
.yc1_c00357{bottom:283.695000px;}
.yc2_c00357{bottom:284.130000px;}
.yc0_c00357{bottom:284.775000px;}
.ybf_c00357{bottom:285.195000px;}
.ybe_c00357{bottom:296.130000px;}
.ybc_c00357{bottom:297.195000px;}
.yba_c00357{bottom:297.630000px;}
.ybb_c00357{bottom:298.695000px;}
.ybd_c00357{bottom:300.195000px;}
.yb9_c00357{bottom:310.695000px;}
.yb8_c00357{bottom:311.130000px;}
.yb7_c00357{bottom:311.775000px;}
.yb6_c00357{bottom:312.195000px;}
.yb4_c00357{bottom:312.630000px;}
.yb5_c00357{bottom:313.695000px;}
.yb3_c00357{bottom:324.195000px;}
.yb1_c00357{bottom:324.630000px;}
.yb2_c00357{bottom:325.695000px;}
.yb0_c00357{bottom:327.195000px;}
.yaf_c00357{bottom:336.630000px;}
.yae_c00357{bottom:338.130000px;}
.yad_c00357{bottom:339.195000px;}
.yac_c00357{bottom:339.630000px;}
.yab_c00357{bottom:340.695000px;}
.yaa_c00357{bottom:350.130000px;}
.ya9_c00357{bottom:351.195000px;}
.ya8_c00357{bottom:352.695000px;}
.ya7_c00357{bottom:353.130000px;}
.ya6_c00357{bottom:354.195000px;}
.ya4_c00357{bottom:365.130000px;}
.ya5_c00357{bottom:366.195000px;}
.ya2_c00357{bottom:366.630000px;}
.ya3_c00357{bottom:367.695000px;}
.ya0_c00357{bottom:368.130000px;}
.ya1_c00357{bottom:369.195000px;}
.y9f_c00357{bottom:378.630000px;}
.y9e_c00357{bottom:379.695000px;}
.y9d_c00357{bottom:380.130000px;}
.y9c_c00357{bottom:381.195000px;}
.y9b_c00357{bottom:381.630000px;}
.y9a_c00357{bottom:382.695000px;}
.y99_c00357{bottom:393.195000px;}
.y97_c00357{bottom:394.695000px;}
.y98_c00357{bottom:394.920000px;}
.y95_c00357{bottom:395.130000px;}
.y96_c00357{bottom:396.195000px;}
.y94_c00357{bottom:406.695000px;}
.y92_c00357{bottom:408.195000px;}
.y93_c00357{bottom:408.420000px;}
.y91_c00357{bottom:409.695000px;}
.y90_c00357{bottom:410.130000px;}
.y8f_c00357{bottom:411.195000px;}
.y8e_c00357{bottom:426.195000px;}
.y8d_c00357{bottom:427.695000px;}
.y8c_c00357{bottom:439.695000px;}
.y8b_c00357{bottom:440.130000px;}
.y8a_c00357{bottom:441.195000px;}
.y88_c00357{bottom:441.630000px;}
.y89_c00357{bottom:442.695000px;}
.y87_c00357{bottom:472.050000px;}
.y86_c00357{bottom:472.470000px;}
.y85_c00357{bottom:483.825000px;}
.y83_c00357{bottom:484.905000px;}
.y84_c00357{bottom:486.195000px;}
.y82_c00357{bottom:486.630000px;}
.y81_c00357{bottom:487.050000px;}
.y80_c00357{bottom:488.550000px;}
.y7f_c00357{bottom:505.050000px;}
.y7e_c00357{bottom:506.550000px;}
.y7d_c00357{bottom:544.905000px;}
.y79_c00357{bottom:545.745000px;}
.y78_c00357{bottom:545.970000px;}
.y7b_c00357{bottom:546.825000px;}
.y7c_c00357{bottom:547.905000px;}
.y7a_c00357{bottom:548.130000px;}
.y77_c00357{bottom:567.405000px;}
.y76_c00357{bottom:568.470000px;}
.y72_c00357{bottom:586.245000px;}
.y71_c00357{bottom:586.905000px;}
.y75_c00357{bottom:587.970000px;}
.y74_c00357{bottom:588.405000px;}
.y73_c00357{bottom:589.470000px;}
.y6f_c00357{bottom:603.405000px;}
.y6d_c00357{bottom:604.905000px;}
.y6b_c00357{bottom:605.745000px;}
.y70_c00357{bottom:606.630000px;}
.y6e_c00357{bottom:607.470000px;}
.y6c_c00357{bottom:607.905000px;}
.y68_c00357{bottom:622.905000px;}
.y69_c00357{bottom:623.745000px;}
.y66_c00357{bottom:624.405000px;}
.y65_c00357{bottom:625.245000px;}
.y67_c00357{bottom:627.405000px;}
.y6a_c00357{bottom:627.630000px;}
.y63_c00357{bottom:644.745000px;}
.y62_c00357{bottom:646.905000px;}
.y64_c00357{bottom:647.970000px;}
.y5f_c00357{bottom:664.245000px;}
.y60_c00357{bottom:665.325000px;}
.y5e_c00357{bottom:666.405000px;}
.y61_c00357{bottom:667.470000px;}
.y5d_c00357{bottom:667.905000px;}
.y5c_c00357{bottom:683.745000px;}
.y5b_c00357{bottom:685.905000px;}
.y5a_c00357{bottom:686.970000px;}
.y59_c00357{bottom:687.405000px;}
.y54_c00357{bottom:703.245000px;}
.y57_c00357{bottom:703.470000px;}
.y58_c00357{bottom:704.745000px;}
.y52_c00357{bottom:705.405000px;}
.y55_c00357{bottom:705.825000px;}
.y56_c00357{bottom:706.470000px;}
.y53_c00357{bottom:706.905000px;}
.y51_c00357{bottom:721.905000px;}
.y4f_c00357{bottom:724.245000px;}
.y4d_c00357{bottom:725.130000px;}
.y4e_c00357{bottom:726.405000px;}
.y50_c00357{bottom:727.470000px;}
.y4a_c00357{bottom:744.630000px;}
.y4b_c00357{bottom:745.905000px;}
.y4c_c00357{bottom:746.970000px;}
.y45_c00357{bottom:763.245000px;}
.y48_c00357{bottom:764.970000px;}
.y46_c00357{bottom:765.405000px;}
.y47_c00357{bottom:765.630000px;}
.y49_c00357{bottom:766.470000px;}
.y44_c00357{bottom:781.905000px;}
.y43_c00357{bottom:782.745000px;}
.y42_c00357{bottom:784.905000px;}
.y41_c00357{bottom:785.130000px;}
.y3e_c00357{bottom:802.245000px;}
.y3d_c00357{bottom:802.905000px;}
.y3c_c00357{bottom:803.325000px;}
.y3f_c00357{bottom:804.405000px;}
.y40_c00357{bottom:804.630000px;}
.y3b_c00357{bottom:823.245000px;}
.y3a_c00357{bottom:823.905000px;}
.y39_c00357{bottom:825.405000px;}
.y36_c00357{bottom:840.405000px;}
.y38_c00357{bottom:841.470000px;}
.y37_c00357{bottom:842.745000px;}
.y35_c00357{bottom:844.905000px;}
.y31_c00357{bottom:860.745000px;}
.y32_c00357{bottom:861.825000px;}
.y30_c00357{bottom:862.245000px;}
.y33_c00357{bottom:862.905000px;}
.y34_c00357{bottom:863.130000px;}
.y2f_c00357{bottom:881.745000px;}
.y2d_c00357{bottom:882.630000px;}
.y2e_c00357{bottom:883.905000px;}
.y2b_c00357{bottom:899.745000px;}
.y2a_c00357{bottom:901.245000px;}
.y2c_c00357{bottom:902.130000px;}
.y29_c00357{bottom:902.325000px;}
.y28_c00357{bottom:903.405000px;}
.y25_c00357{bottom:920.745000px;}
.y27_c00357{bottom:922.470000px;}
.y26_c00357{bottom:922.905000px;}
.y24_c00357{bottom:941.130000px;}
.y22_c00357{bottom:941.970000px;}
.y21_c00357{bottom:942.405000px;}
.y23_c00357{bottom:943.470000px;}
.y1d_c00357{bottom:959.745000px;}
.y1e_c00357{bottom:961.905000px;}
.y1f_c00357{bottom:962.130000px;}
.y20_c00357{bottom:962.970000px;}
.y1a_c00357{bottom:979.245000px;}
.y19_c00357{bottom:981.405000px;}
.y1b_c00357{bottom:981.630000px;}
.y18_c00357{bottom:982.470000px;}
.y1c_c00357{bottom:982.905000px;}
.y16_c00357{bottom:998.745000px;}
.y15_c00357{bottom:1000.905000px;}
.y17_c00357{bottom:1001.130000px;}
.y14_c00357{bottom:1017.405000px;}
.y13_c00357{bottom:1018.245000px;}
.y12_c00357{bottom:1019.325000px;}
.yf_c00357{bottom:1020.405000px;}
.y11_c00357{bottom:1020.630000px;}
.y10_c00357{bottom:1021.470000px;}
.yb_c00357{bottom:1037.745000px;}
.ye_c00357{bottom:1037.970000px;}
.yd_c00357{bottom:1039.245000px;}
.yc_c00357{bottom:1040.130000px;}
.y9_c00357{bottom:1040.970000px;}
.ya_c00357{bottom:1041.405000px;}
.y3_c00357{bottom:1058.325000px;}
.y8_c00357{bottom:1058.745000px;}
.y4_c00357{bottom:1059.630000px;}
.y5_c00357{bottom:1059.825000px;}
.y6_c00357{bottom:1060.905000px;}
.y7_c00357{bottom:1061.970000px;}
.y1_c00357{bottom:1098.825000px;}
.y2_c00357{bottom:1099.050000px;}
.h8_c00357{height:4.206533px;}
.h9_c00357{height:14.612168px;}
.h7_c00357{height:16.752334px;}
.h3_c00357{height:23.025234px;}
.h2_c00357{height:25.091602px;}
.h5_c00357{height:31.364502px;}
.h4_c00357{height:35.571035px;}
.h1_c00357{height:39.777568px;}
.h6_c00357{height:43.910303px;}
.h0_c00357{height:1335.000000px;}
.w0_c00357{width:880.500000px;}
.x0_c00357{left:0.000000px;}
.x87_c00357{left:151.500000px;}
.x3_c00357{left:153.000000px;}
.x1_c00357{left:154.500000px;}
.xa5_c00357{left:163.920000px;}
.xdf_c00357{left:166.500000px;}
.xb9_c00357{left:168.000000px;}
.x67_c00357{left:169.500000px;}
.x20_c00357{left:172.500000px;}
.x3b_c00357{left:174.420000px;}
.x9a_c00357{left:180.855000px;}
.xcf_c00357{left:182.580000px;}
.x4b_c00357{left:184.500000px;}
.x72_c00357{left:187.500000px;}
.x2d_c00357{left:190.920000px;}
.x4_c00357{left:193.500000px;}
.x55_c00357{left:195.000000px;}
.xba_c00357{left:196.080000px;}
.x8f_c00357{left:197.580000px;}
.xd0_c00357{left:199.500000px;}
.x3c_c00357{left:201.000000px;}
.x21_c00357{left:202.500000px;}
.xfc_c00357{left:205.920000px;}
.x61_c00357{left:207.000000px;}
.xe7_c00357{left:208.500000px;}
.xaf_c00357{left:210.855000px;}
.x56_c00357{left:214.500000px;}
.x7f_c00357{left:217.920000px;}
.x5_c00357{left:219.420000px;}
.x9b_c00357{left:221.775000px;}
.xd4_c00357{left:226.920000px;}
.x12_c00357{left:229.080000px;}
.xe3_c00357{left:231.000000px;}
.x73_c00357{left:232.500000px;}
.xfd_c00357{left:234.000000px;}
.xf0_c00357{left:235.080000px;}
.x3d_c00357{left:237.420000px;}
.xc7_c00357{left:238.500000px;}
.xa6_c00357{left:241.500000px;}
.xf8_c00357{left:243.000000px;}
.xf5_c00357{left:244.080000px;}
.xe8_c00357{left:246.000000px;}
.x57_c00357{left:251.580000px;}
.x2e_c00357{left:253.500000px;}
.x22_c00357{left:255.000000px;}
.x90_c00357{left:256.275000px;}
.x4c_c00357{left:258.000000px;}
.xe0_c00357{left:259.500000px;}
.xf7_c00357{left:262.500000px;}
.x9c_c00357{left:264.000000px;}
.xfe_c00357{left:265.080000px;}
.x3e_c00357{left:267.420000px;}
.xb0_c00357{left:268.500000px;}
.x88_c00357{left:271.500000px;}
.x6_c00357{left:273.000000px;}
.xab_c00357{left:274.920000px;}
.x68_c00357{left:276.000000px;}
.x13_c00357{left:277.500000px;}
.xfb_c00357{left:279.000000px;}
.xfa_c00357{left:280.500000px;}
.x9d_c00357{left:283.500000px;}
.x74_c00357{left:285.000000px;}
.x62_c00357{left:286.500000px;}
.xe4_c00357{left:287.580000px;}
.xbd_c00357{left:289.500000px;}
.xff_c00357{left:292.500000px;}
.x3f_c00357{left:294.420000px;}
.x4d_c00357{left:295.920000px;}
.x58_c00357{left:297.000000px;}
.x23_c00357{left:301.500000px;}
.x63_c00357{left:303.000000px;}
.xc8_c00357{left:306.000000px;}
.x2f_c00357{left:307.500000px;}
.x14_c00357{left:309.000000px;}
.x7_c00357{left:316.500000px;}
.x69_c00357{left:318.000000px;}
.xbb_c00357{left:319.920000px;}
.x80_c00357{left:321.000000px;}
.xd5_c00357{left:322.080000px;}
.x91_c00357{left:327.000000px;}
.x24_c00357{left:328.500000px;}
.xbe_c00357{left:331.080000px;}
.x4e_c00357{left:333.000000px;}
.x8_c00357{left:334.920000px;}
.xe9_c00357{left:337.920000px;}
.xbc_c00357{left:346.500000px;}
.x15_c00357{left:348.000000px;}
.xda_c00357{left:349.500000px;}
.x81_c00357{left:351.000000px;}
.x9e_c00357{left:354.420000px;}
.xec_c00357{left:357.000000px;}
.xb1_c00357{left:358.500000px;}
.x30_c00357{left:360.000000px;}
.x9_c00357{left:361.080000px;}
.xbf_c00357{left:363.000000px;}
.x6a_c00357{left:364.500000px;}
.x16_c00357{left:369.420000px;}
.x89_c00357{left:370.920000px;}
.x59_c00357{left:373.080000px;}
.x95_c00357{left:374.145000px;}
.xa7_c00357{left:376.920000px;}
.x4f_c00357{left:378.000000px;}
.xc0_c00357{left:379.500000px;}
.x40_c00357{left:382.080000px;}
.xc9_c00357{left:384.000000px;}
.x25_c00357{left:385.500000px;}
.x82_c00357{left:388.500000px;}
.x31_c00357{left:390.000000px;}
.xd6_c00357{left:391.500000px;}
.x17_c00357{left:394.920000px;}
.x9f_c00357{left:396.000000px;}
.xa_c00357{left:400.500000px;}
.xb2_c00357{left:402.420000px;}
.x2_c00357{left:405.000000px;}
.xd1_c00357{left:406.500000px;}
.xa8_c00357{left:409.500000px;}
.xe6_c00357{left:411.000000px;}
.x64_c00357{left:412.500000px;}
.xe5_c00357{left:413.580000px;}
.xc1_c00357{left:415.500000px;}
.x8a_c00357{left:417.420000px;}
.x75_c00357{left:418.500000px;}
.x26_c00357{left:420.000000px;}
.xdb_c00357{left:421.920000px;}
.x5a_c00357{left:423.000000px;}
.x50_c00357{left:424.500000px;}
.xd7_c00357{left:425.580000px;}
.x32_c00357{left:427.080000px;}
.xf1_c00357{left:429.000000px;}
.x65_c00357{left:432.420000px;}
.xed_c00357{left:433.500000px;}
.xb_c00357{left:434.580000px;}
.x27_c00357{left:436.920000px;}
.x41_c00357{left:439.500000px;}
.xb3_c00357{left:441.000000px;}
.x33_c00357{left:445.920000px;}
.xca_c00357{left:447.000000px;}
.x18_c00357{left:448.500000px;}
.xc2_c00357{left:450.420000px;}
.xc_c00357{left:451.920000px;}
.xdc_c00357{left:453.000000px;}
.x5b_c00357{left:456.420000px;}
.xea_c00357{left:457.920000px;}
.x42_c00357{left:459.000000px;}
.x66_c00357{left:460.920000px;}
.x7a_c00357{left:462.000000px;}
.x96_c00357{left:463.500000px;}
.xcb_c00357{left:466.920000px;}
.xd8_c00357{left:468.000000px;}
.xee_c00357{left:469.500000px;}
.x34_c00357{left:471.000000px;}
.xf9_c00357{left:472.500000px;}
.xf4_c00357{left:474.000000px;}
.x83_c00357{left:476.145000px;}
.xd_c00357{left:478.920000px;}
.x19_c00357{left:481.080000px;}
.x76_c00357{left:482.580000px;}
.x43_c00357{left:484.500000px;}
.x6b_c00357{left:485.580000px;}
.xa0_c00357{left:487.080000px;}
.x8b_c00357{left:490.500000px;}
.x7b_c00357{left:493.500000px;}
.xd2_c00357{left:496.920000px;}
.x1a_c00357{left:499.920000px;}
.x44_c00357{left:502.500000px;}
.x51_c00357{left:504.000000px;}
.xa1_c00357{left:505.500000px;}
.x35_c00357{left:506.580000px;}
.xcc_c00357{left:508.080000px;}
.x5c_c00357{left:510.000000px;}
.xb4_c00357{left:512.580000px;}
.xc3_c00357{left:514.500000px;}
.x28_c00357{left:516.000000px;}
.x6c_c00357{left:517.500000px;}
.xf2_c00357{left:519.000000px;}
.xdd_c00357{left:520.500000px;}
.x8c_c00357{left:521.580000px;}
.x36_c00357{left:523.080000px;}
.x1b_c00357{left:525.000000px;}
.xe_c00357{left:526.500000px;}
.x45_c00357{left:529.500000px;}
.xeb_c00357{left:534.000000px;}
.x29_c00357{left:535.920000px;}
.x7c_c00357{left:537.420000px;}
.xb5_c00357{left:541.500000px;}
.xa9_c00357{left:543.000000px;}
.x37_c00357{left:544.920000px;}
.x77_c00357{left:546.420000px;}
.xac_c00357{left:553.080000px;}
.xa2_c00357{left:555.000000px;}
.xef_c00357{left:559.500000px;}
.xc4_c00357{left:560.580000px;}
.xf_c00357{left:562.920000px;}
.x1c_c00357{left:564.000000px;}
.x46_c00357{left:565.500000px;}
.x84_c00357{left:567.420000px;}
.xf3_c00357{left:568.500000px;}
.xb6_c00357{left:569.580000px;}
.x7d_c00357{left:571.500000px;}
.x38_c00357{left:576.420000px;}
.xd3_c00357{left:577.500000px;}
.x97_c00357{left:579.000000px;}
.xde_c00357{left:580.920000px;}
.x6d_c00357{left:582.420000px;}
.x52_c00357{left:584.580000px;}
.x8d_c00357{left:585.645000px;}
.x1d_c00357{left:588.420000px;}
.xc5_c00357{left:592.500000px;}
.x47_c00357{left:597.000000px;}
.xaa_c00357{left:598.500000px;}
.xcd_c00357{left:600.000000px;}
.xd9_c00357{left:604.920000px;}
.x39_c00357{left:606.000000px;}
.xe1_c00357{left:607.500000px;}
.x6e_c00357{left:609.000000px;}
.x5d_c00357{left:610.920000px;}
.x92_c00357{left:612.000000px;}
.x53_c00357{left:615.000000px;}
.x85_c00357{left:616.500000px;}
.x1e_c00357{left:622.920000px;}
.x10_c00357{left:625.080000px;}
.xa3_c00357{left:628.920000px;}
.x2a_c00357{left:630.000000px;}
.x48_c00357{left:637.500000px;}
.x5e_c00357{left:639.000000px;}
.x8e_c00357{left:641.580000px;}
.xad_c00357{left:646.500000px;}
.xe2_c00357{left:649.920000px;}
.x6f_c00357{left:651.420000px;}
.x78_c00357{left:652.500000px;}
.xf6_c00357{left:654.000000px;}
.x11_c00357{left:655.920000px;}
.x98_c00357{left:657.000000px;}
.xce_c00357{left:661.500000px;}
.x2b_c00357{left:664.920000px;}
.x1f_c00357{left:666.000000px;}
.x5f_c00357{left:667.500000px;}
.x54_c00357{left:669.420000px;}
.xae_c00357{left:671.580000px;}
.x79_c00357{left:674.145000px;}
.x93_c00357{left:676.500000px;}
.x70_c00357{left:679.500000px;}
.x60_c00357{left:681.000000px;}
.xb7_c00357{left:682.500000px;}
.x3a_c00357{left:683.580000px;}
.x99_c00357{left:687.000000px;}
.x94_c00357{left:688.500000px;}
.x49_c00357{left:691.080000px;}
.x86_c00357{left:699.420000px;}
.xb8_c00357{left:700.920000px;}
.x2c_c00357{left:702.000000px;}
.x7e_c00357{left:705.000000px;}
.xc6_c00357{left:708.420000px;}
.x4a_c00357{left:709.920000px;}
.x71_c00357{left:715.080000px;}
.xa4_c00357{left:717.000000px;}
@media print{
.v1_c00357{vertical-align:-5.333333pt;}
.v0_c00357{vertical-align:0.000000pt;}
.ls1_c00357{letter-spacing:0.000000pt;}
.ls0_c00357{letter-spacing:51.473822pt;}
.ws5_c00357{word-spacing:-58.544115pt;}
.ws1_c00357{word-spacing:-6.390322pt;}
.ws2_c00357{word-spacing:-5.689459pt;}
.ws0_c00357{word-spacing:-4.114699pt;}
.ws3_c00357{word-spacing:-3.406958pt;}
.ws11_c00357{word-spacing:0.000000pt;}
.ws4_c00357{word-spacing:24.596914pt;}
.wsb_c00357{word-spacing:26.838488pt;}
.wsd_c00357{word-spacing:28.754100pt;}
.ws7_c00357{word-spacing:32.768845pt;}
.ws8_c00357{word-spacing:34.769946pt;}
.ws9_c00357{word-spacing:36.846840pt;}
.wsc_c00357{word-spacing:37.900800pt;}
.wse_c00357{word-spacing:40.567467pt;}
.wsf_c00357{word-spacing:41.244496pt;}
.wsa_c00357{word-spacing:44.118417pt;}
.ws10_c00357{word-spacing:46.992337pt;}
.ws6_c00357{word-spacing:77.684546pt;}
._1_c00357{margin-left:-51.473822pt;}
._0_c00357{width:13.051642pt;}
._4_c00357{width:42.843973pt;}
._3_c00357{width:50.285227pt;}
._2_c00357{width:110.344604pt;}
.fs7_c00357{font-size:3.040000pt;}
.fs8_c00357{font-size:10.560000pt;}
.fs6_c00357{font-size:12.106667pt;}
.fs2_c00357{font-size:16.640000pt;}
.fs1_c00357{font-size:18.133333pt;}
.fs4_c00357{font-size:22.666667pt;}
.fs3_c00357{font-size:25.706667pt;}
.fs0_c00357{font-size:28.746667pt;}
.fs5_c00357{font-size:31.733333pt;}
.y0_c00357{bottom:0.000000pt;}
.ycb_c00357{bottom:225.893333pt;}
.ycc_c00357{bottom:226.840000pt;}
.yca_c00357{bottom:227.226667pt;}
.yc9_c00357{bottom:228.173333pt;}
.yc7_c00357{bottom:228.560000pt;}
.yc8_c00357{bottom:229.506667pt;}
.yc5_c00357{bottom:240.560000pt;}
.yc6_c00357{bottom:241.506667pt;}
.yc4_c00357{bottom:250.840000pt;}
.yc3_c00357{bottom:251.226667pt;}
.yc1_c00357{bottom:252.173333pt;}
.yc2_c00357{bottom:252.560000pt;}
.yc0_c00357{bottom:253.133333pt;}
.ybf_c00357{bottom:253.506667pt;}
.ybe_c00357{bottom:263.226667pt;}
.ybc_c00357{bottom:264.173333pt;}
.yba_c00357{bottom:264.560000pt;}
.ybb_c00357{bottom:265.506667pt;}
.ybd_c00357{bottom:266.840000pt;}
.yb9_c00357{bottom:276.173333pt;}
.yb8_c00357{bottom:276.560000pt;}
.yb7_c00357{bottom:277.133333pt;}
.yb6_c00357{bottom:277.506667pt;}
.yb4_c00357{bottom:277.893333pt;}
.yb5_c00357{bottom:278.840000pt;}
.yb3_c00357{bottom:288.173333pt;}
.yb1_c00357{bottom:288.560000pt;}
.yb2_c00357{bottom:289.506667pt;}
.yb0_c00357{bottom:290.840000pt;}
.yaf_c00357{bottom:299.226667pt;}
.yae_c00357{bottom:300.560000pt;}
.yad_c00357{bottom:301.506667pt;}
.yac_c00357{bottom:301.893333pt;}
.yab_c00357{bottom:302.840000pt;}
.yaa_c00357{bottom:311.226667pt;}
.ya9_c00357{bottom:312.173333pt;}
.ya8_c00357{bottom:313.506667pt;}
.ya7_c00357{bottom:313.893333pt;}
.ya6_c00357{bottom:314.840000pt;}
.ya4_c00357{bottom:324.560000pt;}
.ya5_c00357{bottom:325.506667pt;}
.ya2_c00357{bottom:325.893333pt;}
.ya3_c00357{bottom:326.840000pt;}
.ya0_c00357{bottom:327.226667pt;}
.ya1_c00357{bottom:328.173333pt;}
.y9f_c00357{bottom:336.560000pt;}
.y9e_c00357{bottom:337.506667pt;}
.y9d_c00357{bottom:337.893333pt;}
.y9c_c00357{bottom:338.840000pt;}
.y9b_c00357{bottom:339.226667pt;}
.y9a_c00357{bottom:340.173333pt;}
.y99_c00357{bottom:349.506667pt;}
.y97_c00357{bottom:350.840000pt;}
.y98_c00357{bottom:351.040000pt;}
.y95_c00357{bottom:351.226667pt;}
.y96_c00357{bottom:352.173333pt;}
.y94_c00357{bottom:361.506667pt;}
.y92_c00357{bottom:362.840000pt;}
.y93_c00357{bottom:363.040000pt;}
.y91_c00357{bottom:364.173333pt;}
.y90_c00357{bottom:364.560000pt;}
.y8f_c00357{bottom:365.506667pt;}
.y8e_c00357{bottom:378.840000pt;}
.y8d_c00357{bottom:380.173333pt;}
.y8c_c00357{bottom:390.840000pt;}
.y8b_c00357{bottom:391.226667pt;}
.y8a_c00357{bottom:392.173333pt;}
.y88_c00357{bottom:392.560000pt;}
.y89_c00357{bottom:393.506667pt;}
.y87_c00357{bottom:419.600000pt;}
.y86_c00357{bottom:419.973333pt;}
.y85_c00357{bottom:430.066667pt;}
.y83_c00357{bottom:431.026667pt;}
.y84_c00357{bottom:432.173333pt;}
.y82_c00357{bottom:432.560000pt;}
.y81_c00357{bottom:432.933333pt;}
.y80_c00357{bottom:434.266667pt;}
.y7f_c00357{bottom:448.933333pt;}
.y7e_c00357{bottom:450.266667pt;}
.y7d_c00357{bottom:484.360000pt;}
.y79_c00357{bottom:485.106667pt;}
.y78_c00357{bottom:485.306667pt;}
.y7b_c00357{bottom:486.066667pt;}
.y7c_c00357{bottom:487.026667pt;}
.y7a_c00357{bottom:487.226667pt;}
.y77_c00357{bottom:504.360000pt;}
.y76_c00357{bottom:505.306667pt;}
.y72_c00357{bottom:521.106667pt;}
.y71_c00357{bottom:521.693333pt;}
.y75_c00357{bottom:522.640000pt;}
.y74_c00357{bottom:523.026667pt;}
.y73_c00357{bottom:523.973333pt;}
.y6f_c00357{bottom:536.360000pt;}
.y6d_c00357{bottom:537.693333pt;}
.y6b_c00357{bottom:538.440000pt;}
.y70_c00357{bottom:539.226667pt;}
.y6e_c00357{bottom:539.973333pt;}
.y6c_c00357{bottom:540.360000pt;}
.y68_c00357{bottom:553.693333pt;}
.y69_c00357{bottom:554.440000pt;}
.y66_c00357{bottom:555.026667pt;}
.y65_c00357{bottom:555.773333pt;}
.y67_c00357{bottom:557.693333pt;}
.y6a_c00357{bottom:557.893333pt;}
.y63_c00357{bottom:573.106667pt;}
.y62_c00357{bottom:575.026667pt;}
.y64_c00357{bottom:575.973333pt;}
.y5f_c00357{bottom:590.440000pt;}
.y60_c00357{bottom:591.400000pt;}
.y5e_c00357{bottom:592.360000pt;}
.y61_c00357{bottom:593.306667pt;}
.y5d_c00357{bottom:593.693333pt;}
.y5c_c00357{bottom:607.773333pt;}
.y5b_c00357{bottom:609.693333pt;}
.y5a_c00357{bottom:610.640000pt;}
.y59_c00357{bottom:611.026667pt;}
.y54_c00357{bottom:625.106667pt;}
.y57_c00357{bottom:625.306667pt;}
.y58_c00357{bottom:626.440000pt;}
.y52_c00357{bottom:627.026667pt;}
.y55_c00357{bottom:627.400000pt;}
.y56_c00357{bottom:627.973333pt;}
.y53_c00357{bottom:628.360000pt;}
.y51_c00357{bottom:641.693333pt;}
.y4f_c00357{bottom:643.773333pt;}
.y4d_c00357{bottom:644.560000pt;}
.y4e_c00357{bottom:645.693333pt;}
.y50_c00357{bottom:646.640000pt;}
.y4a_c00357{bottom:661.893333pt;}
.y4b_c00357{bottom:663.026667pt;}
.y4c_c00357{bottom:663.973333pt;}
.y45_c00357{bottom:678.440000pt;}
.y48_c00357{bottom:679.973333pt;}
.y46_c00357{bottom:680.360000pt;}
.y47_c00357{bottom:680.560000pt;}
.y49_c00357{bottom:681.306667pt;}
.y44_c00357{bottom:695.026667pt;}
.y43_c00357{bottom:695.773333pt;}
.y42_c00357{bottom:697.693333pt;}
.y41_c00357{bottom:697.893333pt;}
.y3e_c00357{bottom:713.106667pt;}
.y3d_c00357{bottom:713.693333pt;}
.y3c_c00357{bottom:714.066667pt;}
.y3f_c00357{bottom:715.026667pt;}
.y40_c00357{bottom:715.226667pt;}
.y3b_c00357{bottom:731.773333pt;}
.y3a_c00357{bottom:732.360000pt;}
.y39_c00357{bottom:733.693333pt;}
.y36_c00357{bottom:747.026667pt;}
.y38_c00357{bottom:747.973333pt;}
.y37_c00357{bottom:749.106667pt;}
.y35_c00357{bottom:751.026667pt;}
.y31_c00357{bottom:765.106667pt;}
.y32_c00357{bottom:766.066667pt;}
.y30_c00357{bottom:766.440000pt;}
.y33_c00357{bottom:767.026667pt;}
.y34_c00357{bottom:767.226667pt;}
.y2f_c00357{bottom:783.773333pt;}
.y2d_c00357{bottom:784.560000pt;}
.y2e_c00357{bottom:785.693333pt;}
.y2b_c00357{bottom:799.773333pt;}
.y2a_c00357{bottom:801.106667pt;}
.y2c_c00357{bottom:801.893333pt;}
.y29_c00357{bottom:802.066667pt;}
.y28_c00357{bottom:803.026667pt;}
.y25_c00357{bottom:818.440000pt;}
.y27_c00357{bottom:819.973333pt;}
.y26_c00357{bottom:820.360000pt;}
.y24_c00357{bottom:836.560000pt;}
.y22_c00357{bottom:837.306667pt;}
.y21_c00357{bottom:837.693333pt;}
.y23_c00357{bottom:838.640000pt;}
.y1d_c00357{bottom:853.106667pt;}
.y1e_c00357{bottom:855.026667pt;}
.y1f_c00357{bottom:855.226667pt;}
.y20_c00357{bottom:855.973333pt;}
.y1a_c00357{bottom:870.440000pt;}
.y19_c00357{bottom:872.360000pt;}
.y1b_c00357{bottom:872.560000pt;}
.y18_c00357{bottom:873.306667pt;}
.y1c_c00357{bottom:873.693333pt;}
.y16_c00357{bottom:887.773333pt;}
.y15_c00357{bottom:889.693333pt;}
.y17_c00357{bottom:889.893333pt;}
.y14_c00357{bottom:904.360000pt;}
.y13_c00357{bottom:905.106667pt;}
.y12_c00357{bottom:906.066667pt;}
.yf_c00357{bottom:907.026667pt;}
.y11_c00357{bottom:907.226667pt;}
.y10_c00357{bottom:907.973333pt;}
.yb_c00357{bottom:922.440000pt;}
.ye_c00357{bottom:922.640000pt;}
.yd_c00357{bottom:923.773333pt;}
.yc_c00357{bottom:924.560000pt;}
.y9_c00357{bottom:925.306667pt;}
.ya_c00357{bottom:925.693333pt;}
.y3_c00357{bottom:940.733333pt;}
.y8_c00357{bottom:941.106667pt;}
.y4_c00357{bottom:941.893333pt;}
.y5_c00357{bottom:942.066667pt;}
.y6_c00357{bottom:943.026667pt;}
.y7_c00357{bottom:943.973333pt;}
.y1_c00357{bottom:976.733333pt;}
.y2_c00357{bottom:976.933333pt;}
.h8_c00357{height:3.739141pt;}
.h9_c00357{height:12.988594pt;}
.h7_c00357{height:14.890964pt;}
.h3_c00357{height:20.466875pt;}
.h2_c00357{height:22.303646pt;}
.h5_c00357{height:27.879557pt;}
.h4_c00357{height:31.618698pt;}
.h1_c00357{height:35.357839pt;}
.h6_c00357{height:39.031380pt;}
.h0_c00357{height:1186.666667pt;}
.w0_c00357{width:782.666667pt;}
.x0_c00357{left:0.000000pt;}
.x87_c00357{left:134.666667pt;}
.x3_c00357{left:136.000000pt;}
.x1_c00357{left:137.333333pt;}
.xa5_c00357{left:145.706667pt;}
.xdf_c00357{left:148.000000pt;}
.xb9_c00357{left:149.333333pt;}
.x67_c00357{left:150.666667pt;}
.x20_c00357{left:153.333333pt;}
.x3b_c00357{left:155.040000pt;}
.x9a_c00357{left:160.760000pt;}
.xcf_c00357{left:162.293333pt;}
.x4b_c00357{left:164.000000pt;}
.x72_c00357{left:166.666667pt;}
.x2d_c00357{left:169.706667pt;}
.x4_c00357{left:172.000000pt;}
.x55_c00357{left:173.333333pt;}
.xba_c00357{left:174.293333pt;}
.x8f_c00357{left:175.626667pt;}
.xd0_c00357{left:177.333333pt;}
.x3c_c00357{left:178.666667pt;}
.x21_c00357{left:180.000000pt;}
.xfc_c00357{left:183.040000pt;}
.x61_c00357{left:184.000000pt;}
.xe7_c00357{left:185.333333pt;}
.xaf_c00357{left:187.426667pt;}
.x56_c00357{left:190.666667pt;}
.x7f_c00357{left:193.706667pt;}
.x5_c00357{left:195.040000pt;}
.x9b_c00357{left:197.133333pt;}
.xd4_c00357{left:201.706667pt;}
.x12_c00357{left:203.626667pt;}
.xe3_c00357{left:205.333333pt;}
.x73_c00357{left:206.666667pt;}
.xfd_c00357{left:208.000000pt;}
.xf0_c00357{left:208.960000pt;}
.x3d_c00357{left:211.040000pt;}
.xc7_c00357{left:212.000000pt;}
.xa6_c00357{left:214.666667pt;}
.xf8_c00357{left:216.000000pt;}
.xf5_c00357{left:216.960000pt;}
.xe8_c00357{left:218.666667pt;}
.x57_c00357{left:223.626667pt;}
.x2e_c00357{left:225.333333pt;}
.x22_c00357{left:226.666667pt;}
.x90_c00357{left:227.800000pt;}
.x4c_c00357{left:229.333333pt;}
.xe0_c00357{left:230.666667pt;}
.xf7_c00357{left:233.333333pt;}
.x9c_c00357{left:234.666667pt;}
.xfe_c00357{left:235.626667pt;}
.x3e_c00357{left:237.706667pt;}
.xb0_c00357{left:238.666667pt;}
.x88_c00357{left:241.333333pt;}
.x6_c00357{left:242.666667pt;}
.xab_c00357{left:244.373333pt;}
.x68_c00357{left:245.333333pt;}
.x13_c00357{left:246.666667pt;}
.xfb_c00357{left:248.000000pt;}
.xfa_c00357{left:249.333333pt;}
.x9d_c00357{left:252.000000pt;}
.x74_c00357{left:253.333333pt;}
.x62_c00357{left:254.666667pt;}
.xe4_c00357{left:255.626667pt;}
.xbd_c00357{left:257.333333pt;}
.xff_c00357{left:260.000000pt;}
.x3f_c00357{left:261.706667pt;}
.x4d_c00357{left:263.040000pt;}
.x58_c00357{left:264.000000pt;}
.x23_c00357{left:268.000000pt;}
.x63_c00357{left:269.333333pt;}
.xc8_c00357{left:272.000000pt;}
.x2f_c00357{left:273.333333pt;}
.x14_c00357{left:274.666667pt;}
.x7_c00357{left:281.333333pt;}
.x69_c00357{left:282.666667pt;}
.xbb_c00357{left:284.373333pt;}
.x80_c00357{left:285.333333pt;}
.xd5_c00357{left:286.293333pt;}
.x91_c00357{left:290.666667pt;}
.x24_c00357{left:292.000000pt;}
.xbe_c00357{left:294.293333pt;}
.x4e_c00357{left:296.000000pt;}
.x8_c00357{left:297.706667pt;}
.xe9_c00357{left:300.373333pt;}
.xbc_c00357{left:308.000000pt;}
.x15_c00357{left:309.333333pt;}
.xda_c00357{left:310.666667pt;}
.x81_c00357{left:312.000000pt;}
.x9e_c00357{left:315.040000pt;}
.xec_c00357{left:317.333333pt;}
.xb1_c00357{left:318.666667pt;}
.x30_c00357{left:320.000000pt;}
.x9_c00357{left:320.960000pt;}
.xbf_c00357{left:322.666667pt;}
.x6a_c00357{left:324.000000pt;}
.x16_c00357{left:328.373333pt;}
.x89_c00357{left:329.706667pt;}
.x59_c00357{left:331.626667pt;}
.x95_c00357{left:332.573333pt;}
.xa7_c00357{left:335.040000pt;}
.x4f_c00357{left:336.000000pt;}
.xc0_c00357{left:337.333333pt;}
.x40_c00357{left:339.626667pt;}
.xc9_c00357{left:341.333333pt;}
.x25_c00357{left:342.666667pt;}
.x82_c00357{left:345.333333pt;}
.x31_c00357{left:346.666667pt;}
.xd6_c00357{left:348.000000pt;}
.x17_c00357{left:351.040000pt;}
.x9f_c00357{left:352.000000pt;}
.xa_c00357{left:356.000000pt;}
.xb2_c00357{left:357.706667pt;}
.x2_c00357{left:360.000000pt;}
.xd1_c00357{left:361.333333pt;}
.xa8_c00357{left:364.000000pt;}
.xe6_c00357{left:365.333333pt;}
.x64_c00357{left:366.666667pt;}
.xe5_c00357{left:367.626667pt;}
.xc1_c00357{left:369.333333pt;}
.x8a_c00357{left:371.040000pt;}
.x75_c00357{left:372.000000pt;}
.x26_c00357{left:373.333333pt;}
.xdb_c00357{left:375.040000pt;}
.x5a_c00357{left:376.000000pt;}
.x50_c00357{left:377.333333pt;}
.xd7_c00357{left:378.293333pt;}
.x32_c00357{left:379.626667pt;}
.xf1_c00357{left:381.333333pt;}
.x65_c00357{left:384.373333pt;}
.xed_c00357{left:385.333333pt;}
.xb_c00357{left:386.293333pt;}
.x27_c00357{left:388.373333pt;}
.x41_c00357{left:390.666667pt;}
.xb3_c00357{left:392.000000pt;}
.x33_c00357{left:396.373333pt;}
.xca_c00357{left:397.333333pt;}
.x18_c00357{left:398.666667pt;}
.xc2_c00357{left:400.373333pt;}
.xc_c00357{left:401.706667pt;}
.xdc_c00357{left:402.666667pt;}
.x5b_c00357{left:405.706667pt;}
.xea_c00357{left:407.040000pt;}
.x42_c00357{left:408.000000pt;}
.x66_c00357{left:409.706667pt;}
.x7a_c00357{left:410.666667pt;}
.x96_c00357{left:412.000000pt;}
.xcb_c00357{left:415.040000pt;}
.xd8_c00357{left:416.000000pt;}
.xee_c00357{left:417.333333pt;}
.x34_c00357{left:418.666667pt;}
.xf9_c00357{left:420.000000pt;}
.xf4_c00357{left:421.333333pt;}
.x83_c00357{left:423.240000pt;}
.xd_c00357{left:425.706667pt;}
.x19_c00357{left:427.626667pt;}
.x76_c00357{left:428.960000pt;}
.x43_c00357{left:430.666667pt;}
.x6b_c00357{left:431.626667pt;}
.xa0_c00357{left:432.960000pt;}
.x8b_c00357{left:436.000000pt;}
.x7b_c00357{left:438.666667pt;}
.xd2_c00357{left:441.706667pt;}
.x1a_c00357{left:444.373333pt;}
.x44_c00357{left:446.666667pt;}
.x51_c00357{left:448.000000pt;}
.xa1_c00357{left:449.333333pt;}
.x35_c00357{left:450.293333pt;}
.xcc_c00357{left:451.626667pt;}
.x5c_c00357{left:453.333333pt;}
.xb4_c00357{left:455.626667pt;}
.xc3_c00357{left:457.333333pt;}
.x28_c00357{left:458.666667pt;}
.x6c_c00357{left:460.000000pt;}
.xf2_c00357{left:461.333333pt;}
.xdd_c00357{left:462.666667pt;}
.x8c_c00357{left:463.626667pt;}
.x36_c00357{left:464.960000pt;}
.x1b_c00357{left:466.666667pt;}
.xe_c00357{left:468.000000pt;}
.x45_c00357{left:470.666667pt;}
.xeb_c00357{left:474.666667pt;}
.x29_c00357{left:476.373333pt;}
.x7c_c00357{left:477.706667pt;}
.xb5_c00357{left:481.333333pt;}
.xa9_c00357{left:482.666667pt;}
.x37_c00357{left:484.373333pt;}
.x77_c00357{left:485.706667pt;}
.xac_c00357{left:491.626667pt;}
.xa2_c00357{left:493.333333pt;}
.xef_c00357{left:497.333333pt;}
.xc4_c00357{left:498.293333pt;}
.xf_c00357{left:500.373333pt;}
.x1c_c00357{left:501.333333pt;}
.x46_c00357{left:502.666667pt;}
.x84_c00357{left:504.373333pt;}
.xf3_c00357{left:505.333333pt;}
.xb6_c00357{left:506.293333pt;}
.x7d_c00357{left:508.000000pt;}
.x38_c00357{left:512.373333pt;}
.xd3_c00357{left:513.333333pt;}
.x97_c00357{left:514.666667pt;}
.xde_c00357{left:516.373333pt;}
.x6d_c00357{left:517.706667pt;}
.x52_c00357{left:519.626667pt;}
.x8d_c00357{left:520.573333pt;}
.x1d_c00357{left:523.040000pt;}
.xc5_c00357{left:526.666667pt;}
.x47_c00357{left:530.666667pt;}
.xaa_c00357{left:532.000000pt;}
.xcd_c00357{left:533.333333pt;}
.xd9_c00357{left:537.706667pt;}
.x39_c00357{left:538.666667pt;}
.xe1_c00357{left:540.000000pt;}
.x6e_c00357{left:541.333333pt;}
.x5d_c00357{left:543.040000pt;}
.x92_c00357{left:544.000000pt;}
.x53_c00357{left:546.666667pt;}
.x85_c00357{left:548.000000pt;}
.x1e_c00357{left:553.706667pt;}
.x10_c00357{left:555.626667pt;}
.xa3_c00357{left:559.040000pt;}
.x2a_c00357{left:560.000000pt;}
.x48_c00357{left:566.666667pt;}
.x5e_c00357{left:568.000000pt;}
.x8e_c00357{left:570.293333pt;}
.xad_c00357{left:574.666667pt;}
.xe2_c00357{left:577.706667pt;}
.x6f_c00357{left:579.040000pt;}
.x78_c00357{left:580.000000pt;}
.xf6_c00357{left:581.333333pt;}
.x11_c00357{left:583.040000pt;}
.x98_c00357{left:584.000000pt;}
.xce_c00357{left:588.000000pt;}
.x2b_c00357{left:591.040000pt;}
.x1f_c00357{left:592.000000pt;}
.x5f_c00357{left:593.333333pt;}
.x54_c00357{left:595.040000pt;}
.xae_c00357{left:596.960000pt;}
.x79_c00357{left:599.240000pt;}
.x93_c00357{left:601.333333pt;}
.x70_c00357{left:604.000000pt;}
.x60_c00357{left:605.333333pt;}
.xb7_c00357{left:606.666667pt;}
.x3a_c00357{left:607.626667pt;}
.x99_c00357{left:610.666667pt;}
.x94_c00357{left:612.000000pt;}
.x49_c00357{left:614.293333pt;}
.x86_c00357{left:621.706667pt;}
.xb8_c00357{left:623.040000pt;}
.x2c_c00357{left:624.000000pt;}
.x7e_c00357{left:626.666667pt;}
.xc6_c00357{left:629.706667pt;}
.x4a_c00357{left:631.040000pt;}
.x71_c00357{left:635.626667pt;}
.xa4_c00357{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e05a0b3d4307d37d3ed763b8.woff2')format("woff");}.ff1_c00358{font-family:ff1_c00358;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m84_c00358{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m79_c00358{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.md7_c00358{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m6e_c00358{transform:matrix(0.373083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373083,0.000000,0.000000,0.250000,0,0);}
.mc8_c00358{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mec_c00358{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.meb_c00358{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m3d_c00358{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.md1_c00358{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m18_c00358{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mf0_c00358{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.mbe_c00358{transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);}
.mc_c00358{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m37_c00358{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mdf_c00358{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mf7_c00358{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m6b_c00358{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.mfc_c00358{transform:matrix(0.394939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394939,0.000000,0.000000,0.250000,0,0);}
.mca_c00358{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m89_c00358{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.mbb_c00358{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.mfa_c00358{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m26_c00358{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m98_c00358{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m46_c00358{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);}
.m77_c00358{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mc2_c00358{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m7b_c00358{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mfb_c00358{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.mf4_c00358{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m5a_c00358{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.mc5_c00358{transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);}
.m42_c00358{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mdb_c00358{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m38_c00358{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m7c_c00358{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m24_c00358{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m78_c00358{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mcc_c00358{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m3b_c00358{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mf5_c00358{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.mbf_c00358{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m83_c00358{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m9_c00358{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m2e_c00358{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.me5_c00358{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mb2_c00358{transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);}
.m44_c00358{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m2d_c00358{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m43_c00358{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m8f_c00358{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m4b_c00358{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.mc4_c00358{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.mc7_c00358{transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);}
.mf1_c00358{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mf3_c00358{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m81_c00358{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m3c_c00358{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m4f_c00358{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m49_c00358{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.me6_c00358{transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);}
.m86_c00358{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.maa_c00358{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.ma3_c00358{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mc6_c00358{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.me4_c00358{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m34_c00358{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.me2_c00358{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.mde_c00358{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m62_c00358{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.mae_c00358{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.mbc_c00358{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m5c_c00358{transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);}
.m36_c00358{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m3e_c00358{transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);}
.mb0_c00358{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m3f_c00358{transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);}
.m4c_c00358{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.med_c00358{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mf8_c00358{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.m2c_c00358{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.mb5_c00358{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m74_c00358{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m88_c00358{transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);}
.mb8_c00358{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.mcf_c00358{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m71_c00358{transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);}
.me1_c00358{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m76_c00358{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m99_c00358{transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);}
.me8_c00358{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.md3_c00358{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m4_c00358{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m8b_c00358{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.m90_c00358{transform:matrix(0.472689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472689,0.000000,0.000000,0.250000,0,0);}
.m7a_c00358{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.md6_c00358{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m1f_c00358{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m54_c00358{transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);}
.m70_c00358{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.me7_c00358{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m7_c00358{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m75_c00358{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m25_c00358{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m9f_c00358{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m52_c00358{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.mab_c00358{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m4a_c00358{transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);}
.m11_c00358{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.md8_c00358{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m66_c00358{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mbd_c00358{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.mad_c00358{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m1_c00358{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m96_c00358{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mee_c00358{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m6c_c00358{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m59_c00358{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.mc1_c00358{transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);}
.ma9_c00358{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m8_c00358{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_c00358{transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);}
.mcd_c00358{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m8a_c00358{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.ma8_c00358{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m80_c00358{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mc0_c00358{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.mf6_c00358{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m6a_c00358{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m1d_c00358{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m5f_c00358{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m21_c00358{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.mc3_c00358{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m60_c00358{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m3_c00358{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.me9_c00358{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m2_c00358{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mdc_c00358{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m9c_c00358{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m1b_c00358{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m17_c00358{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m51_c00358{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m5_c00358{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m9e_c00358{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m1e_c00358{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m93_c00358{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m13_c00358{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mb9_c00358{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m1c_c00358{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.md2_c00358{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m9d_c00358{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m55_c00358{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m3a_c00358{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mb6_c00358{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mc9_c00358{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m45_c00358{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m9a_c00358{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m1a_c00358{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m8c_c00358{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m73_c00358{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m39_c00358{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m9b_c00358{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m68_c00358{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.ma7_c00358{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m67_c00358{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m48_c00358{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m2a_c00358{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mf9_c00358{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.ma0_c00358{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m56_c00358{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mea_c00358{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.me3_c00358{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m32_c00358{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m40_c00358{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m28_c00358{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m97_c00358{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m30_c00358{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.mb_c00358{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);}
.m10_c00358{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m82_c00358{transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);}
.m57_c00358{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m33_c00358{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m85_c00358{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m15_c00358{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m6_c00358{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.mba_c00358{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.me0_c00358{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m53_c00358{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.mcb_c00358{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mb3_c00358{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m6d_c00358{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m14_c00358{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m47_c00358{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m8d_c00358{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m29_c00358{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m35_c00358{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m2f_c00358{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m7d_c00358{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.md4_c00358{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.mdd_c00358{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m72_c00358{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);}
.mda_c00358{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mb7_c00358{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.mb4_c00358{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.mf2_c00358{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m7e_c00358{transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);}
.m0_c00358{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m65_c00358{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m23_c00358{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m92_c00358{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.md9_c00358{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m87_c00358{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.m8e_c00358{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);}
.m91_c00358{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m63_c00358{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m22_c00358{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.ma6_c00358{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);}
.mb1_c00358{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.md5_c00358{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.ma_c00358{transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);}
.m4e_c00358{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.ma2_c00358{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.ma1_c00358{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m20_c00358{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m5b_c00358{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m31_c00358{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m5d_c00358{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m69_c00358{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m94_c00358{transform:matrix(0.709135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709135,0.000000,0.000000,0.250000,0,0);}
.mef_c00358{transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);}
.mce_c00358{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m64_c00358{transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);}
.m12_c00358{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.md0_c00358{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.ma4_c00358{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m27_c00358{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mf_c00358{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m16_c00358{transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);}
.m7f_c00358{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.maf_c00358{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m41_c00358{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m2b_c00358{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mac_c00358{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m19_c00358{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m5e_c00358{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m61_c00358{transform:matrix(0.781765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.781765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.781765,0.000000,0.000000,0.250000,0,0);}
.m6f_c00358{transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);}
.me_c00358{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m4d_c00358{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m58_c00358{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m50_c00358{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m95_c00358{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.md_c00358{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00358{vertical-align:0.000000px;}
.v1_c00358{vertical-align:12.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;}
}
.ws3_c00358{word-spacing:-7.652157px;}
.ws2_c00358{word-spacing:-5.619743px;}
.ws4_c00358{word-spacing:-5.612170px;}
.ws5_c00358{word-spacing:0.000000px;}
.ws0_c00358{word-spacing:1.767045px;}
.ws1_c00358{word-spacing:3.920793px;}
.fc0_c00358{color:transparent;}
.fs4_c00358{font-size:3.420000px;}
.fs5_c00358{font-size:18.720000px;}
.fs0_c00358{font-size:20.400000px;}
.fs3_c00358{font-size:25.500000px;}
.fs1_c00358{font-size:28.920000px;}
.fs2_c00358{font-size:32.340000px;}
.fs6_c00358{font-size:35.700000px;}
.fs7_c00358{font-size:39.120000px;}
.y0_c00358{bottom:0.000000px;}
.ye0_c00358{bottom:250.680000px;}
.ydd_c00358{bottom:251.745000px;}
.yde_c00358{bottom:253.905000px;}
.ydc_c00358{bottom:254.130000px;}
.ydf_c00358{bottom:254.970000px;}
.yd7_c00358{bottom:271.245000px;}
.yda_c00358{bottom:272.325000px;}
.yd5_c00358{bottom:272.745000px;}
.yd8_c00358{bottom:273.405000px;}
.yd9_c00358{bottom:273.630000px;}
.yd6_c00358{bottom:274.470000px;}
.ydb_c00358{bottom:274.905000px;}
.yd2_c00358{bottom:290.745000px;}
.yd1_c00358{bottom:292.245000px;}
.yd3_c00358{bottom:293.130000px;}
.yd0_c00358{bottom:294.405000px;}
.yd4_c00358{bottom:295.470000px;}
.ycc_c00358{bottom:311.745000px;}
.ycd_c00358{bottom:312.825000px;}
.ycf_c00358{bottom:313.050000px;}
.ycb_c00358{bottom:313.905000px;}
.yce_c00358{bottom:314.970000px;}
.yc8_c00358{bottom:330.825000px;}
.yca_c00358{bottom:331.245000px;}
.yc6_c00358{bottom:333.405000px;}
.yc7_c00358{bottom:333.630000px;}
.yc9_c00358{bottom:334.470000px;}
.yc5_c00358{bottom:348.405000px;}
.yc2_c00358{bottom:350.745000px;}
.yc3_c00358{bottom:351.825000px;}
.yc4_c00358{bottom:352.905000px;}
.ybf_c00358{bottom:370.245000px;}
.yc1_c00358{bottom:371.325000px;}
.yc0_c00358{bottom:372.405000px;}
.ybb_c00358{bottom:391.050000px;}
.yba_c00358{bottom:391.245000px;}
.ybd_c00358{bottom:391.905000px;}
.ybc_c00358{bottom:392.130000px;}
.ybe_c00358{bottom:392.970000px;}
.yb9_c00358{bottom:393.405000px;}
.yb5_c00358{bottom:408.405000px;}
.yb7_c00358{bottom:409.245000px;}
.yb4_c00358{bottom:410.745000px;}
.yb6_c00358{bottom:411.405000px;}
.yb3_c00358{bottom:411.630000px;}
.yb8_c00358{bottom:412.470000px;}
.yb1_c00358{bottom:412.905000px;}
.yb2_c00358{bottom:413.970000px;}
.yaf_c00358{bottom:427.905000px;}
.yad_c00358{bottom:430.245000px;}
.yae_c00358{bottom:431.130000px;}
.yb0_c00358{bottom:431.970000px;}
.yac_c00358{bottom:432.405000px;}
.ya8_c00358{bottom:450.630000px;}
.ya9_c00358{bottom:450.825000px;}
.yab_c00358{bottom:451.470000px;}
.yaa_c00358{bottom:451.905000px;}
.ya7_c00358{bottom:467.970000px;}
.ya5_c00358{bottom:468.405000px;}
.ya6_c00358{bottom:469.245000px;}
.ya3_c00358{bottom:470.130000px;}
.ya4_c00358{bottom:471.405000px;}
.ya1_c00358{bottom:488.325000px;}
.y9e_c00358{bottom:488.745000px;}
.ya0_c00358{bottom:489.825000px;}
.ya2_c00358{bottom:490.470000px;}
.y9f_c00358{bottom:490.905000px;}
.y99_c00358{bottom:507.405000px;}
.y98_c00358{bottom:508.245000px;}
.y9b_c00358{bottom:510.405000px;}
.y9c_c00358{bottom:510.630000px;}
.y9a_c00358{bottom:510.825000px;}
.y9d_c00358{bottom:511.470000px;}
.y93_c00358{bottom:527.745000px;}
.y97_c00358{bottom:528.825000px;}
.y94_c00358{bottom:529.245000px;}
.y96_c00358{bottom:529.905000px;}
.y95_c00358{bottom:530.970000px;}
.y92_c00358{bottom:531.405000px;}
.y90_c00358{bottom:547.245000px;}
.y8d_c00358{bottom:548.745000px;}
.y91_c00358{bottom:549.630000px;}
.y8e_c00358{bottom:550.470000px;}
.y8f_c00358{bottom:550.905000px;}
.y89_c00358{bottom:565.905000px;}
.y8c_c00358{bottom:568.245000px;}
.y8b_c00358{bottom:569.130000px;}
.y8a_c00358{bottom:569.970000px;}
.y88_c00358{bottom:570.405000px;}
.y86_c00358{bottom:587.325000px;}
.y84_c00358{bottom:587.745000px;}
.y83_c00358{bottom:588.630000px;}
.y87_c00358{bottom:589.470000px;}
.y85_c00358{bottom:589.905000px;}
.y80_c00358{bottom:606.405000px;}
.y7f_c00358{bottom:607.245000px;}
.y82_c00358{bottom:608.130000px;}
.y81_c00358{bottom:609.405000px;}
.y7e_c00358{bottom:609.630000px;}
.y7d_c00358{bottom:625.905000px;}
.y7b_c00358{bottom:626.745000px;}
.y7a_c00358{bottom:628.050000px;}
.y7c_c00358{bottom:628.905000px;}
.y79_c00358{bottom:629.130000px;}
.y76_c00358{bottom:645.405000px;}
.y74_c00358{bottom:647.745000px;}
.y77_c00358{bottom:648.630000px;}
.y75_c00358{bottom:648.825000px;}
.y78_c00358{bottom:649.470000px;}
.y73_c00358{bottom:649.905000px;}
.y71_c00358{bottom:665.745000px;}
.y72_c00358{bottom:667.245000px;}
.y6f_c00358{bottom:667.905000px;}
.y6d_c00358{bottom:668.130000px;}
.y6e_c00358{bottom:668.970000px;}
.y70_c00358{bottom:669.405000px;}
.y6b_c00358{bottom:685.245000px;}
.y6a_c00358{bottom:685.905000px;}
.y6c_c00358{bottom:686.745000px;}
.y69_c00358{bottom:688.470000px;}
.y68_c00358{bottom:688.905000px;}
.y67_c00358{bottom:689.130000px;}
.y63_c00358{bottom:705.405000px;}
.y65_c00358{bottom:706.245000px;}
.y66_c00358{bottom:707.130000px;}
.y61_c00358{bottom:708.405000px;}
.y62_c00358{bottom:708.630000px;}
.y64_c00358{bottom:709.470000px;}
.y5c_c00358{bottom:725.745000px;}
.y5f_c00358{bottom:726.825000px;}
.y5e_c00358{bottom:727.470000px;}
.y5b_c00358{bottom:727.905000px;}
.y60_c00358{bottom:728.130000px;}
.y5d_c00358{bottom:728.970000px;}
.y59_c00358{bottom:745.245000px;}
.y58_c00358{bottom:747.405000px;}
.y57_c00358{bottom:747.630000px;}
.y5a_c00358{bottom:748.905000px;}
.y50_c00358{bottom:764.745000px;}
.y52_c00358{bottom:765.825000px;}
.y56_c00358{bottom:766.050000px;}
.y51_c00358{bottom:766.245000px;}
.y54_c00358{bottom:766.905000px;}
.y53_c00358{bottom:767.130000px;}
.y55_c00358{bottom:767.970000px;}
.y4e_c00358{bottom:784.245000px;}
.y4d_c00358{bottom:784.905000px;}
.y4b_c00358{bottom:785.745000px;}
.y4f_c00358{bottom:786.630000px;}
.y4c_c00358{bottom:786.825000px;}
.y49_c00358{bottom:787.470000px;}
.y4a_c00358{bottom:787.905000px;}
.y45_c00358{bottom:804.180000px;}
.y46_c00358{bottom:805.245000px;}
.y47_c00358{bottom:806.130000px;}
.y48_c00358{bottom:806.325000px;}
.y44_c00358{bottom:807.405000px;}
.y42_c00358{bottom:824.745000px;}
.y41_c00358{bottom:826.470000px;}
.y40_c00358{bottom:826.905000px;}
.y43_c00358{bottom:827.970000px;}
.y3f_c00358{bottom:842.970000px;}
.y3c_c00358{bottom:844.245000px;}
.y3e_c00358{bottom:845.130000px;}
.y3d_c00358{bottom:845.970000px;}
.y3a_c00358{bottom:846.405000px;}
.y3b_c00358{bottom:847.470000px;}
.y36_c00358{bottom:863.325000px;}
.y34_c00358{bottom:863.745000px;}
.y37_c00358{bottom:864.630000px;}
.y35_c00358{bottom:865.470000px;}
.y33_c00358{bottom:865.905000px;}
.y39_c00358{bottom:866.130000px;}
.y38_c00358{bottom:866.970000px;}
.y32_c00358{bottom:885.405000px;}
.y31_c00358{bottom:885.630000px;}
.y2d_c00358{bottom:904.245000px;}
.y2e_c00358{bottom:905.130000px;}
.y30_c00358{bottom:905.325000px;}
.y2f_c00358{bottom:905.970000px;}
.y2c_c00358{bottom:906.405000px;}
.y25_c00358{bottom:922.245000px;}
.y27_c00358{bottom:923.745000px;}
.y26_c00358{bottom:924.405000px;}
.y2b_c00358{bottom:924.630000px;}
.y29_c00358{bottom:924.825000px;}
.y2a_c00358{bottom:925.470000px;}
.y28_c00358{bottom:925.905000px;}
.y22_c00358{bottom:942.825000px;}
.y20_c00358{bottom:943.245000px;}
.y24_c00358{bottom:944.130000px;}
.y21_c00358{bottom:944.325000px;}
.y23_c00358{bottom:945.405000px;}
.y1d_c00358{bottom:962.745000px;}
.y1e_c00358{bottom:963.825000px;}
.y1f_c00358{bottom:964.905000px;}
.y1a_c00358{bottom:981.405000px;}
.y1b_c00358{bottom:982.245000px;}
.y1c_c00358{bottom:982.470000px;}
.y19_c00358{bottom:984.405000px;}
.y18_c00358{bottom:1001.745000px;}
.y17_c00358{bottom:1001.970000px;}
.y16_c00358{bottom:1003.905000px;}
.y15_c00358{bottom:1004.130000px;}
.y12_c00358{bottom:1020.405000px;}
.y14_c00358{bottom:1021.245000px;}
.yf_c00358{bottom:1023.405000px;}
.y13_c00358{bottom:1023.630000px;}
.y11_c00358{bottom:1024.470000px;}
.y10_c00358{bottom:1024.920000px;}
.ye_c00358{bottom:1040.745000px;}
.yc_c00358{bottom:1042.905000px;}
.yb_c00358{bottom:1043.130000px;}
.yd_c00358{bottom:1043.970000px;}
.y5_c00358{bottom:1059.405000px;}
.y7_c00358{bottom:1060.470000px;}
.y3_c00358{bottom:1060.905000px;}
.y9_c00358{bottom:1062.630000px;}
.y4_c00358{bottom:1062.825000px;}
.y6_c00358{bottom:1063.905000px;}
.y8_c00358{bottom:1063.920000px;}
.ya_c00358{bottom:1064.970000px;}
.y2_c00358{bottom:1099.905000px;}
.y1_c00358{bottom:1100.550000px;}
.h5_c00358{height:4.206533px;}
.h6_c00358{height:23.025234px;}
.h1_c00358{height:25.091602px;}
.h4_c00358{height:31.364502px;}
.h2_c00358{height:35.571035px;}
.h3_c00358{height:39.777568px;}
.h7_c00358{height:43.910303px;}
.h9_c00358{height:47.571035px;}
.h8_c00358{height:48.116836px;}
.h0_c00358{height:1335.000000px;}
.w0_c00358{width:880.500000px;}
.x0_c00358{left:0.000000px;}
.x3_c00358{left:151.920000px;}
.x94_c00358{left:153.000000px;}
.x110_c00358{left:154.500000px;}
.x1d_c00358{left:165.645000px;}
.x38_c00358{left:167.145000px;}
.x102_c00358{left:169.500000px;}
.xbc_c00358{left:171.000000px;}
.x28_c00358{left:174.420000px;}
.xa8_c00358{left:175.920000px;}
.xc3_c00358{left:177.420000px;}
.x49_c00358{left:178.500000px;}
.x95_c00358{left:179.580000px;}
.x55_c00358{left:181.500000px;}
.xa2_c00358{left:183.000000px;}
.x34_c00358{left:186.000000px;}
.x60_c00358{left:187.500000px;}
.x79_c00358{left:189.000000px;}
.x15_c00358{left:190.500000px;}
.x8f_c00358{left:191.775000px;}
.x4_c00358{left:193.500000px;}
.x6c_c00358{left:196.920000px;}
.xb2_c00358{left:198.000000px;}
.x86_c00358{left:199.080000px;}
.x29_c00358{left:201.000000px;}
.xa9_c00358{left:202.080000px;}
.x108_c00358{left:204.000000px;}
.xc8_c00358{left:205.080000px;}
.xbd_c00358{left:207.000000px;}
.x61_c00358{left:208.920000px;}
.xd6_c00358{left:211.500000px;}
.x62_c00358{left:213.000000px;}
.x82_c00358{left:217.080000px;}
.x4a_c00358{left:221.580000px;}
.x5_c00358{left:224.580000px;}
.x2a_c00358{left:226.080000px;}
.x16_c00358{left:228.000000px;}
.x39_c00358{left:230.580000px;}
.x40_c00358{left:234.000000px;}
.x1e_c00358{left:237.000000px;}
.xec_c00358{left:238.080000px;}
.x56_c00358{left:241.080000px;}
.xf6_c00358{left:243.420000px;}
.x2b_c00358{left:244.920000px;}
.x9d_c00358{left:246.000000px;}
.x10f_c00358{left:247.920000px;}
.xee_c00358{left:249.000000px;}
.x6d_c00358{left:250.920000px;}
.x4b_c00358{left:252.000000px;}
.x10a_c00358{left:253.500000px;}
.xb3_c00358{left:255.000000px;}
.x35_c00358{left:256.500000px;}
.x6_c00358{left:258.000000px;}
.xaa_c00358{left:260.580000px;}
.x7a_c00358{left:262.500000px;}
.xd1_c00358{left:263.580000px;}
.xb6_c00358{left:265.500000px;}
.xf7_c00358{left:268.500000px;}
.x83_c00358{left:271.080000px;}
.x63_c00358{left:273.420000px;}
.xfc_c00358{left:275.580000px;}
.x1f_c00358{left:277.920000px;}
.x3a_c00358{left:279.855000px;}
.xab_c00358{left:280.920000px;}
.x4c_c00358{left:285.000000px;}
.x7_c00358{left:286.080000px;}
.x6e_c00358{left:288.420000px;}
.xbe_c00358{left:289.920000px;}
.x57_c00358{left:291.000000px;}
.x111_c00358{left:292.500000px;}
.xdc_c00358{left:295.500000px;}
.x10b_c00358{left:298.920000px;}
.x4d_c00358{left:301.500000px;}
.x20_c00358{left:303.000000px;}
.x41_c00358{left:305.355000px;}
.xd7_c00358{left:306.420000px;}
.xfd_c00358{left:307.920000px;}
.x36_c00358{left:310.920000px;}
.x6f_c00358{left:314.145000px;}
.x8_c00358{left:316.080000px;}
.x87_c00358{left:317.580000px;}
.xb7_c00358{left:319.920000px;}
.xa3_c00358{left:322.920000px;}
.x9e_c00358{left:324.420000px;}
.xbf_c00358{left:325.920000px;}
.xe0_c00358{left:327.420000px;}
.x17_c00358{left:329.580000px;}
.x2c_c00358{left:331.920000px;}
.xef_c00358{left:333.000000px;}
.xc4_c00358{left:337.500000px;}
.xf8_c00358{left:339.000000px;}
.x42_c00358{left:342.000000px;}
.x101_c00358{left:346.500000px;}
.x18_c00358{left:348.420000px;}
.x9_c00358{left:349.500000px;}
.xf9_c00358{left:351.000000px;}
.x96_c00358{left:352.920000px;}
.x58_c00358{left:354.420000px;}
.x64_c00358{left:355.500000px;}
.x4e_c00358{left:357.420000px;}
.x2d_c00358{left:358.500000px;}
.xf0_c00358{left:363.420000px;}
.x70_c00358{left:366.000000px;}
.x7b_c00358{left:367.500000px;}
.xd8_c00358{left:369.420000px;}
.xa4_c00358{left:370.500000px;}
.xc9_c00358{left:372.000000px;}
.xc0_c00358{left:375.420000px;}
.x103_c00358{left:376.500000px;}
.xac_c00358{left:378.000000px;}
.x90_c00358{left:379.920000px;}
.x59_c00358{left:381.000000px;}
.xb8_c00358{left:382.920000px;}
.x71_c00358{left:384.000000px;}
.xa_c00358{left:385.500000px;}
.xdd_c00358{left:388.920000px;}
.x19_c00358{left:391.080000px;}
.x37_c00358{left:393.420000px;}
.xad_c00358{left:396.420000px;}
.x4f_c00358{left:397.920000px;}
.xf1_c00358{left:399.000000px;}
.x1_c00358{left:400.500000px;}
.xe1_c00358{left:402.000000px;}
.x7c_c00358{left:403.500000px;}
.x2e_c00358{left:406.500000px;}
.xb9_c00358{left:408.000000px;}
.xd2_c00358{left:412.920000px;}
.xe7_c00358{left:414.000000px;}
.x104_c00358{left:415.500000px;}
.xde_c00358{left:416.580000px;}
.x112_c00358{left:418.500000px;}
.xb_c00358{left:421.080000px;}
.x21_c00358{left:423.420000px;}
.xfe_c00358{left:424.500000px;}
.xca_c00358{left:427.920000px;}
.x72_c00358{left:429.000000px;}
.x9f_c00358{left:430.080000px;}
.xe8_c00358{left:436.500000px;}
.xba_c00358{left:438.420000px;}
.xe2_c00358{left:439.500000px;}
.x65_c00358{left:442.920000px;}
.x88_c00358{left:445.080000px;}
.xff_c00358{left:447.000000px;}
.x3b_c00358{left:448.500000px;}
.xa5_c00358{left:451.500000px;}
.x84_c00358{left:453.000000px;}
.xc_c00358{left:454.500000px;}
.xcb_c00358{left:456.420000px;}
.xfa_c00358{left:458.580000px;}
.x1a_c00358{left:460.500000px;}
.x22_c00358{left:462.000000px;}
.x97_c00358{left:463.500000px;}
.xf2_c00358{left:466.080000px;}
.x2f_c00358{left:467.580000px;}
.x66_c00358{left:469.500000px;}
.x43_c00358{left:471.000000px;}
.xb4_c00358{left:472.920000px;}
.xc5_c00358{left:475.500000px;}
.xae_c00358{left:478.920000px;}
.x23_c00358{left:480.000000px;}
.x73_c00358{left:481.080000px;}
.xcc_c00358{left:483.000000px;}
.x98_c00358{left:484.920000px;}
.xd_c00358{left:486.000000px;}
.xa6_c00358{left:489.000000px;}
.xd9_c00358{left:493.500000px;}
.xe9_c00358{left:495.000000px;}
.x5a_c00358{left:496.080000px;}
.x113_c00358{left:498.000000px;}
.x74_c00358{left:501.420000px;}
.x105_c00358{left:502.920000px;}
.x7d_c00358{left:504.000000px;}
.x44_c00358{left:505.080000px;}
.xa0_c00358{left:506.355000px;}
.xaf_c00358{left:507.420000px;}
.x89_c00358{left:508.920000px;}
.xe3_c00358{left:510.000000px;}
.x99_c00358{left:511.500000px;}
.xe_c00358{left:512.580000px;}
.x10c_c00358{left:514.500000px;}
.x3c_c00358{left:516.420000px;}
.x85_c00358{left:517.500000px;}
.x114_c00358{left:519.420000px;}
.x8a_c00358{left:521.355000px;}
.xea_c00358{left:522.420000px;}
.x5b_c00358{left:525.000000px;}
.x50_c00358{left:526.500000px;}
.x106_c00358{left:528.000000px;}
.x67_c00358{left:529.920000px;}
.xfb_c00358{left:531.000000px;}
.x1b_c00358{left:532.500000px;}
.x45_c00358{left:535.500000px;}
.xf3_c00358{left:537.420000px;}
.xc6_c00358{left:538.500000px;}
.x30_c00358{left:541.500000px;}
.xf_c00358{left:543.000000px;}
.x7e_c00358{left:547.080000px;}
.xcd_c00358{left:549.000000px;}
.x91_c00358{left:550.920000px;}
.x24_c00358{left:552.420000px;}
.xc1_c00358{left:555.000000px;}
.xa7_c00358{left:556.500000px;}
.xa1_c00358{left:558.000000px;}
.x1c_c00358{left:559.500000px;}
.x51_c00358{left:562.500000px;}
.x8b_c00358{left:563.580000px;}
.xe5_c00358{left:565.080000px;}
.x7f_c00358{left:567.420000px;}
.x46_c00358{left:571.500000px;}
.x75_c00358{left:573.000000px;}
.x3d_c00358{left:574.920000px;}
.xd3_c00358{left:577.080000px;}
.x5c_c00358{left:579.000000px;}
.x52_c00358{left:580.080000px;}
.x9a_c00358{left:583.920000px;}
.x92_c00358{left:586.080000px;}
.xb0_c00358{left:588.000000px;}
.xda_c00358{left:589.500000px;}
.x25_c00358{left:591.000000px;}
.x10_c00358{left:592.500000px;}
.x80_c00358{left:594.000000px;}
.x31_c00358{left:595.500000px;}
.xc2_c00358{left:597.420000px;}
.x10d_c00358{left:600.000000px;}
.xdf_c00358{left:601.500000px;}
.x3e_c00358{left:602.580000px;}
.xdb_c00358{left:604.920000px;}
.xed_c00358{left:607.500000px;}
.x76_c00358{left:608.580000px;}
.x9b_c00358{left:610.500000px;}
.x11_c00358{left:613.500000px;}
.x68_c00358{left:616.500000px;}
.x26_c00358{left:618.855000px;}
.xe4_c00358{left:619.920000px;}
.x8c_c00358{left:621.420000px;}
.x115_c00358{left:622.500000px;}
.x5d_c00358{left:624.000000px;}
.xce_c00358{left:628.920000px;}
.xf4_c00358{left:630.000000px;}
.x32_c00358{left:631.920000px;}
.x81_c00358{left:637.080000px;}
.x116_c00358{left:639.000000px;}
.x8d_c00358{left:642.855000px;}
.x10e_c00358{left:643.920000px;}
.x12_c00358{left:648.000000px;}
.x5e_c00358{left:649.920000px;}
.x77_c00358{left:651.420000px;}
.x53_c00358{left:652.500000px;}
.xcf_c00358{left:654.420000px;}
.x47_c00358{left:655.500000px;}
.x33_c00358{left:658.500000px;}
.x69_c00358{left:661.500000px;}
.xc7_c00358{left:663.000000px;}
.x100_c00358{left:664.500000px;}
.xeb_c00358{left:667.500000px;}
.x13_c00358{left:669.000000px;}
.xbb_c00358{left:670.920000px;}
.xd4_c00358{left:673.500000px;}
.x3f_c00358{left:675.855000px;}
.x48_c00358{left:677.580000px;}
.x93_c00358{left:679.500000px;}
.x8e_c00358{left:680.580000px;}
.x54_c00358{left:681.855000px;}
.x5f_c00358{left:682.920000px;}
.x27_c00358{left:684.000000px;}
.x9c_c00358{left:685.080000px;}
.x109_c00358{left:686.580000px;}
.xb1_c00358{left:688.500000px;}
.xd5_c00358{left:691.500000px;}
.xf5_c00358{left:693.000000px;}
.xe6_c00358{left:694.080000px;}
.x78_c00358{left:697.920000px;}
.x6a_c00358{left:700.080000px;}
.x2_c00358{left:703.080000px;}
.xd0_c00358{left:704.580000px;}
.xb5_c00358{left:708.000000px;}
.x107_c00358{left:709.920000px;}
.x14_c00358{left:712.080000px;}
.x117_c00358{left:717.000000px;}
.x6b_c00358{left:720.000000px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.v1_c00358{vertical-align:10.666667pt;}
.ls0_c00358{letter-spacing:0.000000pt;}
.ws3_c00358{word-spacing:-6.801917pt;}
.ws2_c00358{word-spacing:-4.995327pt;}
.ws4_c00358{word-spacing:-4.988595pt;}
.ws5_c00358{word-spacing:0.000000pt;}
.ws0_c00358{word-spacing:1.570707pt;}
.ws1_c00358{word-spacing:3.485149pt;}
.fs4_c00358{font-size:3.040000pt;}
.fs5_c00358{font-size:16.640000pt;}
.fs0_c00358{font-size:18.133333pt;}
.fs3_c00358{font-size:22.666667pt;}
.fs1_c00358{font-size:25.706667pt;}
.fs2_c00358{font-size:28.746667pt;}
.fs6_c00358{font-size:31.733333pt;}
.fs7_c00358{font-size:34.773333pt;}
.y0_c00358{bottom:0.000000pt;}
.ye0_c00358{bottom:222.826667pt;}
.ydd_c00358{bottom:223.773333pt;}
.yde_c00358{bottom:225.693333pt;}
.ydc_c00358{bottom:225.893333pt;}
.ydf_c00358{bottom:226.640000pt;}
.yd7_c00358{bottom:241.106667pt;}
.yda_c00358{bottom:242.066667pt;}
.yd5_c00358{bottom:242.440000pt;}
.yd8_c00358{bottom:243.026667pt;}
.yd9_c00358{bottom:243.226667pt;}
.yd6_c00358{bottom:243.973333pt;}
.ydb_c00358{bottom:244.360000pt;}
.yd2_c00358{bottom:258.440000pt;}
.yd1_c00358{bottom:259.773333pt;}
.yd3_c00358{bottom:260.560000pt;}
.yd0_c00358{bottom:261.693333pt;}
.yd4_c00358{bottom:262.640000pt;}
.ycc_c00358{bottom:277.106667pt;}
.ycd_c00358{bottom:278.066667pt;}
.ycf_c00358{bottom:278.266667pt;}
.ycb_c00358{bottom:279.026667pt;}
.yce_c00358{bottom:279.973333pt;}
.yc8_c00358{bottom:294.066667pt;}
.yca_c00358{bottom:294.440000pt;}
.yc6_c00358{bottom:296.360000pt;}
.yc7_c00358{bottom:296.560000pt;}
.yc9_c00358{bottom:297.306667pt;}
.yc5_c00358{bottom:309.693333pt;}
.yc2_c00358{bottom:311.773333pt;}
.yc3_c00358{bottom:312.733333pt;}
.yc4_c00358{bottom:313.693333pt;}
.ybf_c00358{bottom:329.106667pt;}
.yc1_c00358{bottom:330.066667pt;}
.yc0_c00358{bottom:331.026667pt;}
.ybb_c00358{bottom:347.600000pt;}
.yba_c00358{bottom:347.773333pt;}
.ybd_c00358{bottom:348.360000pt;}
.ybc_c00358{bottom:348.560000pt;}
.ybe_c00358{bottom:349.306667pt;}
.yb9_c00358{bottom:349.693333pt;}
.yb5_c00358{bottom:363.026667pt;}
.yb7_c00358{bottom:363.773333pt;}
.yb4_c00358{bottom:365.106667pt;}
.yb6_c00358{bottom:365.693333pt;}
.yb3_c00358{bottom:365.893333pt;}
.yb8_c00358{bottom:366.640000pt;}
.yb1_c00358{bottom:367.026667pt;}
.yb2_c00358{bottom:367.973333pt;}
.yaf_c00358{bottom:380.360000pt;}
.yad_c00358{bottom:382.440000pt;}
.yae_c00358{bottom:383.226667pt;}
.yb0_c00358{bottom:383.973333pt;}
.yac_c00358{bottom:384.360000pt;}
.ya8_c00358{bottom:400.560000pt;}
.ya9_c00358{bottom:400.733333pt;}
.yab_c00358{bottom:401.306667pt;}
.yaa_c00358{bottom:401.693333pt;}
.ya7_c00358{bottom:415.973333pt;}
.ya5_c00358{bottom:416.360000pt;}
.ya6_c00358{bottom:417.106667pt;}
.ya3_c00358{bottom:417.893333pt;}
.ya4_c00358{bottom:419.026667pt;}
.ya1_c00358{bottom:434.066667pt;}
.y9e_c00358{bottom:434.440000pt;}
.ya0_c00358{bottom:435.400000pt;}
.ya2_c00358{bottom:435.973333pt;}
.y9f_c00358{bottom:436.360000pt;}
.y99_c00358{bottom:451.026667pt;}
.y98_c00358{bottom:451.773333pt;}
.y9b_c00358{bottom:453.693333pt;}
.y9c_c00358{bottom:453.893333pt;}
.y9a_c00358{bottom:454.066667pt;}
.y9d_c00358{bottom:454.640000pt;}
.y93_c00358{bottom:469.106667pt;}
.y97_c00358{bottom:470.066667pt;}
.y94_c00358{bottom:470.440000pt;}
.y96_c00358{bottom:471.026667pt;}
.y95_c00358{bottom:471.973333pt;}
.y92_c00358{bottom:472.360000pt;}
.y90_c00358{bottom:486.440000pt;}
.y8d_c00358{bottom:487.773333pt;}
.y91_c00358{bottom:488.560000pt;}
.y8e_c00358{bottom:489.306667pt;}
.y8f_c00358{bottom:489.693333pt;}
.y89_c00358{bottom:503.026667pt;}
.y8c_c00358{bottom:505.106667pt;}
.y8b_c00358{bottom:505.893333pt;}
.y8a_c00358{bottom:506.640000pt;}
.y88_c00358{bottom:507.026667pt;}
.y86_c00358{bottom:522.066667pt;}
.y84_c00358{bottom:522.440000pt;}
.y83_c00358{bottom:523.226667pt;}
.y87_c00358{bottom:523.973333pt;}
.y85_c00358{bottom:524.360000pt;}
.y80_c00358{bottom:539.026667pt;}
.y7f_c00358{bottom:539.773333pt;}
.y82_c00358{bottom:540.560000pt;}
.y81_c00358{bottom:541.693333pt;}
.y7e_c00358{bottom:541.893333pt;}
.y7d_c00358{bottom:556.360000pt;}
.y7b_c00358{bottom:557.106667pt;}
.y7a_c00358{bottom:558.266667pt;}
.y7c_c00358{bottom:559.026667pt;}
.y79_c00358{bottom:559.226667pt;}
.y76_c00358{bottom:573.693333pt;}
.y74_c00358{bottom:575.773333pt;}
.y77_c00358{bottom:576.560000pt;}
.y75_c00358{bottom:576.733333pt;}
.y78_c00358{bottom:577.306667pt;}
.y73_c00358{bottom:577.693333pt;}
.y71_c00358{bottom:591.773333pt;}
.y72_c00358{bottom:593.106667pt;}
.y6f_c00358{bottom:593.693333pt;}
.y6d_c00358{bottom:593.893333pt;}
.y6e_c00358{bottom:594.640000pt;}
.y70_c00358{bottom:595.026667pt;}
.y6b_c00358{bottom:609.106667pt;}
.y6a_c00358{bottom:609.693333pt;}
.y6c_c00358{bottom:610.440000pt;}
.y69_c00358{bottom:611.973333pt;}
.y68_c00358{bottom:612.360000pt;}
.y67_c00358{bottom:612.560000pt;}
.y63_c00358{bottom:627.026667pt;}
.y65_c00358{bottom:627.773333pt;}
.y66_c00358{bottom:628.560000pt;}
.y61_c00358{bottom:629.693333pt;}
.y62_c00358{bottom:629.893333pt;}
.y64_c00358{bottom:630.640000pt;}
.y5c_c00358{bottom:645.106667pt;}
.y5f_c00358{bottom:646.066667pt;}
.y5e_c00358{bottom:646.640000pt;}
.y5b_c00358{bottom:647.026667pt;}
.y60_c00358{bottom:647.226667pt;}
.y5d_c00358{bottom:647.973333pt;}
.y59_c00358{bottom:662.440000pt;}
.y58_c00358{bottom:664.360000pt;}
.y57_c00358{bottom:664.560000pt;}
.y5a_c00358{bottom:665.693333pt;}
.y50_c00358{bottom:679.773333pt;}
.y52_c00358{bottom:680.733333pt;}
.y56_c00358{bottom:680.933333pt;}
.y51_c00358{bottom:681.106667pt;}
.y54_c00358{bottom:681.693333pt;}
.y53_c00358{bottom:681.893333pt;}
.y55_c00358{bottom:682.640000pt;}
.y4e_c00358{bottom:697.106667pt;}
.y4d_c00358{bottom:697.693333pt;}
.y4b_c00358{bottom:698.440000pt;}
.y4f_c00358{bottom:699.226667pt;}
.y4c_c00358{bottom:699.400000pt;}
.y49_c00358{bottom:699.973333pt;}
.y4a_c00358{bottom:700.360000pt;}
.y45_c00358{bottom:714.826667pt;}
.y46_c00358{bottom:715.773333pt;}
.y47_c00358{bottom:716.560000pt;}
.y48_c00358{bottom:716.733333pt;}
.y44_c00358{bottom:717.693333pt;}
.y42_c00358{bottom:733.106667pt;}
.y41_c00358{bottom:734.640000pt;}
.y40_c00358{bottom:735.026667pt;}
.y43_c00358{bottom:735.973333pt;}
.y3f_c00358{bottom:749.306667pt;}
.y3c_c00358{bottom:750.440000pt;}
.y3e_c00358{bottom:751.226667pt;}
.y3d_c00358{bottom:751.973333pt;}
.y3a_c00358{bottom:752.360000pt;}
.y3b_c00358{bottom:753.306667pt;}
.y36_c00358{bottom:767.400000pt;}
.y34_c00358{bottom:767.773333pt;}
.y37_c00358{bottom:768.560000pt;}
.y35_c00358{bottom:769.306667pt;}
.y33_c00358{bottom:769.693333pt;}
.y39_c00358{bottom:769.893333pt;}
.y38_c00358{bottom:770.640000pt;}
.y32_c00358{bottom:787.026667pt;}
.y31_c00358{bottom:787.226667pt;}
.y2d_c00358{bottom:803.773333pt;}
.y2e_c00358{bottom:804.560000pt;}
.y30_c00358{bottom:804.733333pt;}
.y2f_c00358{bottom:805.306667pt;}
.y2c_c00358{bottom:805.693333pt;}
.y25_c00358{bottom:819.773333pt;}
.y27_c00358{bottom:821.106667pt;}
.y26_c00358{bottom:821.693333pt;}
.y2b_c00358{bottom:821.893333pt;}
.y29_c00358{bottom:822.066667pt;}
.y2a_c00358{bottom:822.640000pt;}
.y28_c00358{bottom:823.026667pt;}
.y22_c00358{bottom:838.066667pt;}
.y20_c00358{bottom:838.440000pt;}
.y24_c00358{bottom:839.226667pt;}
.y21_c00358{bottom:839.400000pt;}
.y23_c00358{bottom:840.360000pt;}
.y1d_c00358{bottom:855.773333pt;}
.y1e_c00358{bottom:856.733333pt;}
.y1f_c00358{bottom:857.693333pt;}
.y1a_c00358{bottom:872.360000pt;}
.y1b_c00358{bottom:873.106667pt;}
.y1c_c00358{bottom:873.306667pt;}
.y19_c00358{bottom:875.026667pt;}
.y18_c00358{bottom:890.440000pt;}
.y17_c00358{bottom:890.640000pt;}
.y16_c00358{bottom:892.360000pt;}
.y15_c00358{bottom:892.560000pt;}
.y12_c00358{bottom:907.026667pt;}
.y14_c00358{bottom:907.773333pt;}
.yf_c00358{bottom:909.693333pt;}
.y13_c00358{bottom:909.893333pt;}
.y11_c00358{bottom:910.640000pt;}
.y10_c00358{bottom:911.040000pt;}
.ye_c00358{bottom:925.106667pt;}
.yc_c00358{bottom:927.026667pt;}
.yb_c00358{bottom:927.226667pt;}
.yd_c00358{bottom:927.973333pt;}
.y5_c00358{bottom:941.693333pt;}
.y7_c00358{bottom:942.640000pt;}
.y3_c00358{bottom:943.026667pt;}
.y9_c00358{bottom:944.560000pt;}
.y4_c00358{bottom:944.733333pt;}
.y6_c00358{bottom:945.693333pt;}
.y8_c00358{bottom:945.706667pt;}
.ya_c00358{bottom:946.640000pt;}
.y2_c00358{bottom:977.693333pt;}
.y1_c00358{bottom:978.266667pt;}
.h5_c00358{height:3.739141pt;}
.h6_c00358{height:20.466875pt;}
.h1_c00358{height:22.303646pt;}
.h4_c00358{height:27.879557pt;}
.h2_c00358{height:31.618698pt;}
.h3_c00358{height:35.357839pt;}
.h7_c00358{height:39.031380pt;}
.h9_c00358{height:42.285365pt;}
.h8_c00358{height:42.770521pt;}
.h0_c00358{height:1186.666667pt;}
.w0_c00358{width:782.666667pt;}
.x0_c00358{left:0.000000pt;}
.x3_c00358{left:135.040000pt;}
.x94_c00358{left:136.000000pt;}
.x110_c00358{left:137.333333pt;}
.x1d_c00358{left:147.240000pt;}
.x38_c00358{left:148.573333pt;}
.x102_c00358{left:150.666667pt;}
.xbc_c00358{left:152.000000pt;}
.x28_c00358{left:155.040000pt;}
.xa8_c00358{left:156.373333pt;}
.xc3_c00358{left:157.706667pt;}
.x49_c00358{left:158.666667pt;}
.x95_c00358{left:159.626667pt;}
.x55_c00358{left:161.333333pt;}
.xa2_c00358{left:162.666667pt;}
.x34_c00358{left:165.333333pt;}
.x60_c00358{left:166.666667pt;}
.x79_c00358{left:168.000000pt;}
.x15_c00358{left:169.333333pt;}
.x8f_c00358{left:170.466667pt;}
.x4_c00358{left:172.000000pt;}
.x6c_c00358{left:175.040000pt;}
.xb2_c00358{left:176.000000pt;}
.x86_c00358{left:176.960000pt;}
.x29_c00358{left:178.666667pt;}
.xa9_c00358{left:179.626667pt;}
.x108_c00358{left:181.333333pt;}
.xc8_c00358{left:182.293333pt;}
.xbd_c00358{left:184.000000pt;}
.x61_c00358{left:185.706667pt;}
.xd6_c00358{left:188.000000pt;}
.x62_c00358{left:189.333333pt;}
.x82_c00358{left:192.960000pt;}
.x4a_c00358{left:196.960000pt;}
.x5_c00358{left:199.626667pt;}
.x2a_c00358{left:200.960000pt;}
.x16_c00358{left:202.666667pt;}
.x39_c00358{left:204.960000pt;}
.x40_c00358{left:208.000000pt;}
.x1e_c00358{left:210.666667pt;}
.xec_c00358{left:211.626667pt;}
.x56_c00358{left:214.293333pt;}
.xf6_c00358{left:216.373333pt;}
.x2b_c00358{left:217.706667pt;}
.x9d_c00358{left:218.666667pt;}
.x10f_c00358{left:220.373333pt;}
.xee_c00358{left:221.333333pt;}
.x6d_c00358{left:223.040000pt;}
.x4b_c00358{left:224.000000pt;}
.x10a_c00358{left:225.333333pt;}
.xb3_c00358{left:226.666667pt;}
.x35_c00358{left:228.000000pt;}
.x6_c00358{left:229.333333pt;}
.xaa_c00358{left:231.626667pt;}
.x7a_c00358{left:233.333333pt;}
.xd1_c00358{left:234.293333pt;}
.xb6_c00358{left:236.000000pt;}
.xf7_c00358{left:238.666667pt;}
.x83_c00358{left:240.960000pt;}
.x63_c00358{left:243.040000pt;}
.xfc_c00358{left:244.960000pt;}
.x1f_c00358{left:247.040000pt;}
.x3a_c00358{left:248.760000pt;}
.xab_c00358{left:249.706667pt;}
.x4c_c00358{left:253.333333pt;}
.x7_c00358{left:254.293333pt;}
.x6e_c00358{left:256.373333pt;}
.xbe_c00358{left:257.706667pt;}
.x57_c00358{left:258.666667pt;}
.x111_c00358{left:260.000000pt;}
.xdc_c00358{left:262.666667pt;}
.x10b_c00358{left:265.706667pt;}
.x4d_c00358{left:268.000000pt;}
.x20_c00358{left:269.333333pt;}
.x41_c00358{left:271.426667pt;}
.xd7_c00358{left:272.373333pt;}
.xfd_c00358{left:273.706667pt;}
.x36_c00358{left:276.373333pt;}
.x6f_c00358{left:279.240000pt;}
.x8_c00358{left:280.960000pt;}
.x87_c00358{left:282.293333pt;}
.xb7_c00358{left:284.373333pt;}
.xa3_c00358{left:287.040000pt;}
.x9e_c00358{left:288.373333pt;}
.xbf_c00358{left:289.706667pt;}
.xe0_c00358{left:291.040000pt;}
.x17_c00358{left:292.960000pt;}
.x2c_c00358{left:295.040000pt;}
.xef_c00358{left:296.000000pt;}
.xc4_c00358{left:300.000000pt;}
.xf8_c00358{left:301.333333pt;}
.x42_c00358{left:304.000000pt;}
.x101_c00358{left:308.000000pt;}
.x18_c00358{left:309.706667pt;}
.x9_c00358{left:310.666667pt;}
.xf9_c00358{left:312.000000pt;}
.x96_c00358{left:313.706667pt;}
.x58_c00358{left:315.040000pt;}
.x64_c00358{left:316.000000pt;}
.x4e_c00358{left:317.706667pt;}
.x2d_c00358{left:318.666667pt;}
.xf0_c00358{left:323.040000pt;}
.x70_c00358{left:325.333333pt;}
.x7b_c00358{left:326.666667pt;}
.xd8_c00358{left:328.373333pt;}
.xa4_c00358{left:329.333333pt;}
.xc9_c00358{left:330.666667pt;}
.xc0_c00358{left:333.706667pt;}
.x103_c00358{left:334.666667pt;}
.xac_c00358{left:336.000000pt;}
.x90_c00358{left:337.706667pt;}
.x59_c00358{left:338.666667pt;}
.xb8_c00358{left:340.373333pt;}
.x71_c00358{left:341.333333pt;}
.xa_c00358{left:342.666667pt;}
.xdd_c00358{left:345.706667pt;}
.x19_c00358{left:347.626667pt;}
.x37_c00358{left:349.706667pt;}
.xad_c00358{left:352.373333pt;}
.x4f_c00358{left:353.706667pt;}
.xf1_c00358{left:354.666667pt;}
.x1_c00358{left:356.000000pt;}
.xe1_c00358{left:357.333333pt;}
.x7c_c00358{left:358.666667pt;}
.x2e_c00358{left:361.333333pt;}
.xb9_c00358{left:362.666667pt;}
.xd2_c00358{left:367.040000pt;}
.xe7_c00358{left:368.000000pt;}
.x104_c00358{left:369.333333pt;}
.xde_c00358{left:370.293333pt;}
.x112_c00358{left:372.000000pt;}
.xb_c00358{left:374.293333pt;}
.x21_c00358{left:376.373333pt;}
.xfe_c00358{left:377.333333pt;}
.xca_c00358{left:380.373333pt;}
.x72_c00358{left:381.333333pt;}
.x9f_c00358{left:382.293333pt;}
.xe8_c00358{left:388.000000pt;}
.xba_c00358{left:389.706667pt;}
.xe2_c00358{left:390.666667pt;}
.x65_c00358{left:393.706667pt;}
.x88_c00358{left:395.626667pt;}
.xff_c00358{left:397.333333pt;}
.x3b_c00358{left:398.666667pt;}
.xa5_c00358{left:401.333333pt;}
.x84_c00358{left:402.666667pt;}
.xc_c00358{left:404.000000pt;}
.xcb_c00358{left:405.706667pt;}
.xfa_c00358{left:407.626667pt;}
.x1a_c00358{left:409.333333pt;}
.x22_c00358{left:410.666667pt;}
.x97_c00358{left:412.000000pt;}
.xf2_c00358{left:414.293333pt;}
.x2f_c00358{left:415.626667pt;}
.x66_c00358{left:417.333333pt;}
.x43_c00358{left:418.666667pt;}
.xb4_c00358{left:420.373333pt;}
.xc5_c00358{left:422.666667pt;}
.xae_c00358{left:425.706667pt;}
.x23_c00358{left:426.666667pt;}
.x73_c00358{left:427.626667pt;}
.xcc_c00358{left:429.333333pt;}
.x98_c00358{left:431.040000pt;}
.xd_c00358{left:432.000000pt;}
.xa6_c00358{left:434.666667pt;}
.xd9_c00358{left:438.666667pt;}
.xe9_c00358{left:440.000000pt;}
.x5a_c00358{left:440.960000pt;}
.x113_c00358{left:442.666667pt;}
.x74_c00358{left:445.706667pt;}
.x105_c00358{left:447.040000pt;}
.x7d_c00358{left:448.000000pt;}
.x44_c00358{left:448.960000pt;}
.xa0_c00358{left:450.093333pt;}
.xaf_c00358{left:451.040000pt;}
.x89_c00358{left:452.373333pt;}
.xe3_c00358{left:453.333333pt;}
.x99_c00358{left:454.666667pt;}
.xe_c00358{left:455.626667pt;}
.x10c_c00358{left:457.333333pt;}
.x3c_c00358{left:459.040000pt;}
.x85_c00358{left:460.000000pt;}
.x114_c00358{left:461.706667pt;}
.x8a_c00358{left:463.426667pt;}
.xea_c00358{left:464.373333pt;}
.x5b_c00358{left:466.666667pt;}
.x50_c00358{left:468.000000pt;}
.x106_c00358{left:469.333333pt;}
.x67_c00358{left:471.040000pt;}
.xfb_c00358{left:472.000000pt;}
.x1b_c00358{left:473.333333pt;}
.x45_c00358{left:476.000000pt;}
.xf3_c00358{left:477.706667pt;}
.xc6_c00358{left:478.666667pt;}
.x30_c00358{left:481.333333pt;}
.xf_c00358{left:482.666667pt;}
.x7e_c00358{left:486.293333pt;}
.xcd_c00358{left:488.000000pt;}
.x91_c00358{left:489.706667pt;}
.x24_c00358{left:491.040000pt;}
.xc1_c00358{left:493.333333pt;}
.xa7_c00358{left:494.666667pt;}
.xa1_c00358{left:496.000000pt;}
.x1c_c00358{left:497.333333pt;}
.x51_c00358{left:500.000000pt;}
.x8b_c00358{left:500.960000pt;}
.xe5_c00358{left:502.293333pt;}
.x7f_c00358{left:504.373333pt;}
.x46_c00358{left:508.000000pt;}
.x75_c00358{left:509.333333pt;}
.x3d_c00358{left:511.040000pt;}
.xd3_c00358{left:512.960000pt;}
.x5c_c00358{left:514.666667pt;}
.x52_c00358{left:515.626667pt;}
.x9a_c00358{left:519.040000pt;}
.x92_c00358{left:520.960000pt;}
.xb0_c00358{left:522.666667pt;}
.xda_c00358{left:524.000000pt;}
.x25_c00358{left:525.333333pt;}
.x10_c00358{left:526.666667pt;}
.x80_c00358{left:528.000000pt;}
.x31_c00358{left:529.333333pt;}
.xc2_c00358{left:531.040000pt;}
.x10d_c00358{left:533.333333pt;}
.xdf_c00358{left:534.666667pt;}
.x3e_c00358{left:535.626667pt;}
.xdb_c00358{left:537.706667pt;}
.xed_c00358{left:540.000000pt;}
.x76_c00358{left:540.960000pt;}
.x9b_c00358{left:542.666667pt;}
.x11_c00358{left:545.333333pt;}
.x68_c00358{left:548.000000pt;}
.x26_c00358{left:550.093333pt;}
.xe4_c00358{left:551.040000pt;}
.x8c_c00358{left:552.373333pt;}
.x115_c00358{left:553.333333pt;}
.x5d_c00358{left:554.666667pt;}
.xce_c00358{left:559.040000pt;}
.xf4_c00358{left:560.000000pt;}
.x32_c00358{left:561.706667pt;}
.x81_c00358{left:566.293333pt;}
.x116_c00358{left:568.000000pt;}
.x8d_c00358{left:571.426667pt;}
.x10e_c00358{left:572.373333pt;}
.x12_c00358{left:576.000000pt;}
.x5e_c00358{left:577.706667pt;}
.x77_c00358{left:579.040000pt;}
.x53_c00358{left:580.000000pt;}
.xcf_c00358{left:581.706667pt;}
.x47_c00358{left:582.666667pt;}
.x33_c00358{left:585.333333pt;}
.x69_c00358{left:588.000000pt;}
.xc7_c00358{left:589.333333pt;}
.x100_c00358{left:590.666667pt;}
.xeb_c00358{left:593.333333pt;}
.x13_c00358{left:594.666667pt;}
.xbb_c00358{left:596.373333pt;}
.xd4_c00358{left:598.666667pt;}
.x3f_c00358{left:600.760000pt;}
.x48_c00358{left:602.293333pt;}
.x93_c00358{left:604.000000pt;}
.x8e_c00358{left:604.960000pt;}
.x54_c00358{left:606.093333pt;}
.x5f_c00358{left:607.040000pt;}
.x27_c00358{left:608.000000pt;}
.x9c_c00358{left:608.960000pt;}
.x109_c00358{left:610.293333pt;}
.xb1_c00358{left:612.000000pt;}
.xd5_c00358{left:614.666667pt;}
.xf5_c00358{left:616.000000pt;}
.xe6_c00358{left:616.960000pt;}
.x78_c00358{left:620.373333pt;}
.x6a_c00358{left:622.293333pt;}
.x2_c00358{left:624.960000pt;}
.xd0_c00358{left:626.293333pt;}
.xb5_c00358{left:629.333333pt;}
.x107_c00358{left:631.040000pt;}
.x14_c00358{left:632.960000pt;}
.x117_c00358{left:637.333333pt;}
.x6b_c00358{left:640.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_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_95dc54ccf9abb2877e8591e5.woff2')format("woff");}.ff1_c00359{font-family:ff1_c00359;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mfd_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);}
.ma9_c00359{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m7e_c00359{transform:matrix(0.360813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360813,0.000000,0.000000,0.250000,0,0);}
.m82_c00359{transform:matrix(0.361765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361765,0.000000,0.000000,0.250000,0,0);}
.mad_c00359{transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);}
.ma8_c00359{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.me0_c00359{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.maa_c00359{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.md2_c00359{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.mdb_c00359{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.ma2_c00359{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m6a_c00359{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m7d_c00359{transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);}
.mdf_c00359{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.mce_c00359{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m1b_c00359{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m2f_c00359{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.mf4_c00359{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m1f_c00359{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.me1_c00359{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m103_c00359{transform:matrix(0.394555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394555,0.000000,0.000000,0.250000,0,0);}
.mea_c00359{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.mfe_c00359{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m4e_c00359{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_c00359{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m100_c00359{transform:matrix(0.401457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401457,0.000000,0.000000,0.250000,0,0);}
.m3f_c00359{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.m5d_c00359{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m14_c00359{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m16_c00359{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mef_c00359{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m59_c00359{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m5_c00359{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mff_c00359{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m34_c00359{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.m78_c00359{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.mf3_c00359{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.me5_c00359{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mf0_c00359{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m98_c00359{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m76_c00359{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m104_c00359{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m8c_c00359{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.mc0_c00359{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m6c_c00359{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m29_c00359{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m5f_c00359{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m84_c00359{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m5b_c00359{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.mb3_c00359{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m7b_c00359{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m6_c00359{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m9f_c00359{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.mc5_c00359{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.ma5_c00359{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mcf_c00359{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.mbc_c00359{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m70_c00359{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.m23_c00359{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m74_c00359{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.mb9_c00359{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m96_c00359{transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);}
.mf1_c00359{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.md9_c00359{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m4a_c00359{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m11_c00359{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m6d_c00359{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m68_c00359{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m94_c00359{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.ma0_c00359{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.m69_c00359{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.mda_c00359{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.md5_c00359{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.m8d_c00359{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.me2_c00359{transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);}
.m105_c00359{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m8a_c00359{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m9_c00359{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m48_c00359{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.maf_c00359{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.mc2_c00359{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.m2_c00359{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.md0_c00359{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m24_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);}
.m1a_c00359{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m102_c00359{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mec_c00359{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.m18_c00359{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.mae_c00359{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.mde_c00359{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m99_c00359{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mb6_c00359{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m66_c00359{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m20_c00359{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.m9e_c00359{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m89_c00359{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.m95_c00359{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.mfa_c00359{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m57_c00359{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m79_c00359{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.me4_c00359{transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);}
.m42_c00359{transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);}
.me8_c00359{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.m32_c00359{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.md1_c00359{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.mab_c00359{transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);}
.m80_c00359{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m3a_c00359{transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);}
.mf8_c00359{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mb2_c00359{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m47_c00359{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m1e_c00359{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.mcb_c00359{transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);}
.m58_c00359{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m86_c00359{transform:matrix(0.489332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489332,0.000000,0.000000,0.250000,0,0);}
.m46_c00359{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m9c_c00359{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.ma4_c00359{transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);}
.mc1_c00359{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mb8_c00359{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m4_c00359{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);}
.mf6_c00359{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m6b_c00359{transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);}
.m4b_c00359{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m3e_c00359{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m71_c00359{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mee_c00359{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m45_c00359{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.md8_c00359{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.mdc_c00359{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m83_c00359{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m53_c00359{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mba_c00359{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.me_c00359{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m6f_c00359{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m67_c00359{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m90_c00359{transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);}
.m2e_c00359{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m61_c00359{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.ma3_c00359{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mfc_c00359{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mc6_c00359{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m75_c00359{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mdd_c00359{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m4f_c00359{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.me3_c00359{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m9b_c00359{transform:matrix(0.529685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529685,0.000000,0.000000,0.250000,0,0);}
.m62_c00359{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m3_c00359{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m10_c00359{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.ma7_c00359{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.mac_c00359{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m37_c00359{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m21_c00359{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mf_c00359{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m7c_c00359{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m106_c00359{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m49_c00359{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m91_c00359{transform:matrix(0.538033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538033,0.000000,0.000000,0.250000,0,0);}
.m35_c00359{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m9a_c00359{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m43_c00359{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m54_c00359{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m85_c00359{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m8f_c00359{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m7_c00359{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mbe_c00359{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m88_c00359{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m2c_c00359{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m52_c00359{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mf5_c00359{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mc8_c00359{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.me7_c00359{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m1_c00359{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m15_c00359{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m7f_c00359{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mcc_c00359{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.mb0_c00359{transform:matrix(0.555195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555195,0.000000,0.000000,0.250000,0,0);}
.m8_c00359{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m5e_c00359{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mfb_c00359{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m22_c00359{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m1d_c00359{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m55_c00359{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m12_c00359{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m107_c00359{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.mf7_c00359{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.md_c00359{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m73_c00359{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m41_c00359{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.md7_c00359{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m7a_c00359{transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);}
.m97_c00359{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.me6_c00359{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m9d_c00359{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m1c_c00359{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m2d_c00359{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m19_c00359{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m64_c00359{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m101_c00359{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m17_c00359{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mbb_c00359{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m44_c00359{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.med_c00359{transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);}
.md4_c00359{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m56_c00359{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.md6_c00359{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.mc9_c00359{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.m2a_c00359{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m27_c00359{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.meb_c00359{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.me9_c00359{transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);}
.mcd_c00359{transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);}
.m3d_c00359{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m63_c00359{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m0_c00359{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.ma6_c00359{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m5a_c00359{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m3b_c00359{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m4d_c00359{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mb7_c00359{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.mbf_c00359{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.m36_c00359{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.m33_c00359{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.ma_c00359{transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);}
.m5c_c00359{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.m8e_c00359{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m72_c00359{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mb4_c00359{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.mbd_c00359{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.mf9_c00359{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m40_c00359{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.mc7_c00359{transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);}
.mb5_c00359{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m87_c00359{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m26_c00359{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m13_c00359{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m50_c00359{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m65_c00359{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m39_c00359{transform:matrix(0.695882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695882,0.000000,0.000000,0.250000,0,0);}
.m8b_c00359{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m3c_c00359{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.m60_c00359{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mb1_c00359{transform:matrix(0.710737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710737,0.000000,0.000000,0.250000,0,0);}
.m25_c00359{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.md3_c00359{transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);}
.ma1_c00359{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m81_c00359{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m6e_c00359{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mc_c00359{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m38_c00359{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m28_c00359{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m30_c00359{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m92_c00359{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mc4_c00359{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m2b_c00359{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m51_c00359{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.m93_c00359{transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);}
.m31_c00359{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mf2_c00359{transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);}
.mca_c00359{transform:matrix(0.806891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806891,0.000000,0.000000,0.250000,0,0);}
.m77_c00359{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m4c_c00359{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.mc3_c00359{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.v0_c00359{vertical-align:0.000000px;}
.ls0_c00359{letter-spacing:0.000000px;}
.sc__c00359{text-shadow:none;}
.sc0_c00359{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00359{-webkit-text-stroke:0px transparent;}
.sc0_c00359{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00359{word-spacing:-5.323688px;}
.ws0_c00359{word-spacing:-4.173859px;}
.ws2_c00359{word-spacing:0.000000px;}
.fc0_c00359{color:transparent;}
.fs5_c00359{font-size:18.720000px;}
.fs0_c00359{font-size:20.400000px;}
.fs1_c00359{font-size:25.500000px;}
.fs3_c00359{font-size:28.920000px;}
.fs2_c00359{font-size:32.340000px;}
.fs4_c00359{font-size:35.700000px;}
.fs6_c00359{font-size:39.120000px;}
.y0_c00359{bottom:0.000000px;}
.ydf_c00359{bottom:251.745000px;}
.ye0_c00359{bottom:253.470000px;}
.yde_c00359{bottom:253.905000px;}
.ye1_c00359{bottom:254.130000px;}
.ydd_c00359{bottom:271.245000px;}
.ydc_c00359{bottom:273.405000px;}
.yd4_c00359{bottom:289.680000px;}
.yda_c00359{bottom:290.745000px;}
.yd8_c00359{bottom:291.180000px;}
.yd7_c00359{bottom:291.825000px;}
.ydb_c00359{bottom:292.245000px;}
.yd6_c00359{bottom:292.905000px;}
.yd5_c00359{bottom:293.130000px;}
.yd9_c00359{bottom:294.405000px;}
.yd0_c00359{bottom:311.325000px;}
.yd2_c00359{bottom:311.745000px;}
.ycf_c00359{bottom:312.405000px;}
.yd3_c00359{bottom:312.630000px;}
.yd1_c00359{bottom:313.905000px;}
.ycd_c00359{bottom:331.245000px;}
.ycc_c00359{bottom:332.130000px;}
.ycb_c00359{bottom:333.405000px;}
.yce_c00359{bottom:334.470000px;}
.yca_c00359{bottom:350.745000px;}
.yc9_c00359{bottom:352.905000px;}
.yc4_c00359{bottom:369.825000px;}
.yc7_c00359{bottom:370.245000px;}
.yc6_c00359{bottom:371.325000px;}
.yc3_c00359{bottom:371.970000px;}
.yc5_c00359{bottom:372.405000px;}
.yc8_c00359{bottom:372.630000px;}
.ybe_c00359{bottom:389.745000px;}
.yc2_c00359{bottom:391.245000px;}
.ybf_c00359{bottom:391.905000px;}
.yc0_c00359{bottom:392.970000px;}
.yc1_c00359{bottom:393.405000px;}
.ybd_c00359{bottom:410.325000px;}
.ybb_c00359{bottom:410.745000px;}
.yb9_c00359{bottom:411.405000px;}
.yb8_c00359{bottom:411.825000px;}
.ybc_c00359{bottom:412.470000px;}
.yba_c00359{bottom:412.905000px;}
.yb5_c00359{bottom:427.905000px;}
.yb4_c00359{bottom:428.970000px;}
.yb3_c00359{bottom:429.405000px;}
.yb2_c00359{bottom:430.245000px;}
.yb6_c00359{bottom:431.325000px;}
.yb7_c00359{bottom:432.405000px;}
.yaf_c00359{bottom:448.470000px;}
.yb0_c00359{bottom:449.745000px;}
.yb1_c00359{bottom:450.630000px;}
.yae_c00359{bottom:450.825000px;}
.yad_c00359{bottom:451.905000px;}
.yab_c00359{bottom:469.245000px;}
.yac_c00359{bottom:470.130000px;}
.yaa_c00359{bottom:470.325000px;}
.ya9_c00359{bottom:471.405000px;}
.ya6_c00359{bottom:488.745000px;}
.ya7_c00359{bottom:489.825000px;}
.ya8_c00359{bottom:490.470000px;}
.ya3_c00359{bottom:490.905000px;}
.ya5_c00359{bottom:491.130000px;}
.ya4_c00359{bottom:491.970000px;}
.y9c_c00359{bottom:507.405000px;}
.y9d_c00359{bottom:508.470000px;}
.ya2_c00359{bottom:509.745000px;}
.y9e_c00359{bottom:510.630000px;}
.ya1_c00359{bottom:510.825000px;}
.y9f_c00359{bottom:511.470000px;}
.ya0_c00359{bottom:511.905000px;}
.y9b_c00359{bottom:512.970000px;}
.y97_c00359{bottom:527.745000px;}
.y9a_c00359{bottom:529.245000px;}
.y99_c00359{bottom:529.905000px;}
.y96_c00359{bottom:530.130000px;}
.y98_c00359{bottom:530.970000px;}
.y95_c00359{bottom:531.405000px;}
.y93_c00359{bottom:547.470000px;}
.y90_c00359{bottom:548.745000px;}
.y92_c00359{bottom:549.630000px;}
.y94_c00359{bottom:549.825000px;}
.y91_c00359{bottom:550.905000px;}
.y8d_c00359{bottom:565.905000px;}
.y8b_c00359{bottom:568.245000px;}
.y8f_c00359{bottom:569.130000px;}
.y8c_c00359{bottom:569.970000px;}
.y8e_c00359{bottom:570.405000px;}
.y89_c00359{bottom:587.745000px;}
.y8a_c00359{bottom:588.630000px;}
.y87_c00359{bottom:588.825000px;}
.y88_c00359{bottom:589.905000px;}
.y86_c00359{bottom:590.970000px;}
.y7f_c00359{bottom:607.245000px;}
.y84_c00359{bottom:607.470000px;}
.y83_c00359{bottom:608.325000px;}
.y85_c00359{bottom:608.970000px;}
.y82_c00359{bottom:609.405000px;}
.y80_c00359{bottom:609.630000px;}
.y81_c00359{bottom:610.470000px;}
.y7c_c00359{bottom:626.745000px;}
.y7e_c00359{bottom:627.825000px;}
.y7b_c00359{bottom:628.245000px;}
.y7a_c00359{bottom:628.905000px;}
.y7d_c00359{bottom:629.130000px;}
.y78_c00359{bottom:646.245000px;}
.y79_c00359{bottom:648.405000px;}
.y76_c00359{bottom:665.745000px;}
.y73_c00359{bottom:666.825000px;}
.y75_c00359{bottom:667.245000px;}
.y72_c00359{bottom:667.905000px;}
.y74_c00359{bottom:668.130000px;}
.y77_c00359{bottom:669.405000px;}
.y70_c00359{bottom:686.745000px;}
.y6f_c00359{bottom:687.630000px;}
.y71_c00359{bottom:687.825000px;}
.y6e_c00359{bottom:688.905000px;}
.y6c_c00359{bottom:703.905000px;}
.y6b_c00359{bottom:705.825000px;}
.y6d_c00359{bottom:706.245000px;}
.y6a_c00359{bottom:707.130000px;}
.y69_c00359{bottom:707.325000px;}
.y68_c00359{bottom:708.405000px;}
.y64_c00359{bottom:725.745000px;}
.y63_c00359{bottom:726.825000px;}
.y67_c00359{bottom:727.470000px;}
.y66_c00359{bottom:727.905000px;}
.y65_c00359{bottom:728.130000px;}
.y62_c00359{bottom:728.970000px;}
.y5e_c00359{bottom:745.245000px;}
.y5f_c00359{bottom:747.405000px;}
.y60_c00359{bottom:747.630000px;}
.y61_c00359{bottom:748.470000px;}
.y5c_c00359{bottom:764.745000px;}
.y5b_c00359{bottom:765.825000px;}
.y5a_c00359{bottom:766.905000px;}
.y5d_c00359{bottom:767.130000px;}
.y58_c00359{bottom:767.970000px;}
.y59_c00359{bottom:768.405000px;}
.y53_c00359{bottom:784.680000px;}
.y52_c00359{bottom:785.745000px;}
.y56_c00359{bottom:786.630000px;}
.y57_c00359{bottom:786.825000px;}
.y55_c00359{bottom:787.470000px;}
.y51_c00359{bottom:787.905000px;}
.y54_c00359{bottom:788.970000px;}
.y4d_c00359{bottom:805.245000px;}
.y4f_c00359{bottom:806.130000px;}
.y50_c00359{bottom:806.970000px;}
.y4e_c00359{bottom:807.405000px;}
.y48_c00359{bottom:822.405000px;}
.y46_c00359{bottom:823.470000px;}
.y4c_c00359{bottom:824.745000px;}
.y4a_c00359{bottom:825.825000px;}
.y49_c00359{bottom:826.470000px;}
.y47_c00359{bottom:826.905000px;}
.y4b_c00359{bottom:827.970000px;}
.y45_c00359{bottom:841.905000px;}
.y42_c00359{bottom:844.245000px;}
.y43_c00359{bottom:845.130000px;}
.y40_c00359{bottom:845.325000px;}
.y41_c00359{bottom:845.970000px;}
.y44_c00359{bottom:846.405000px;}
.y3c_c00359{bottom:863.325000px;}
.y3d_c00359{bottom:863.745000px;}
.y3f_c00359{bottom:864.825000px;}
.y3a_c00359{bottom:865.905000px;}
.y3b_c00359{bottom:866.130000px;}
.y3e_c00359{bottom:866.970000px;}
.y36_c00359{bottom:883.245000px;}
.y35_c00359{bottom:884.130000px;}
.y38_c00359{bottom:884.970000px;}
.y34_c00359{bottom:885.405000px;}
.y37_c00359{bottom:885.630000px;}
.y39_c00359{bottom:886.470000px;}
.y31_c00359{bottom:902.745000px;}
.y2e_c00359{bottom:902.970000px;}
.y2f_c00359{bottom:903.825000px;}
.y33_c00359{bottom:904.245000px;}
.y30_c00359{bottom:904.905000px;}
.y2d_c00359{bottom:905.130000px;}
.y32_c00359{bottom:905.970000px;}
.y2c_c00359{bottom:922.245000px;}
.y29_c00359{bottom:923.745000px;}
.y2b_c00359{bottom:924.405000px;}
.y28_c00359{bottom:924.630000px;}
.y2a_c00359{bottom:925.470000px;}
.y27_c00359{bottom:925.905000px;}
.y26_c00359{bottom:940.905000px;}
.y24_c00359{bottom:943.245000px;}
.y23_c00359{bottom:944.130000px;}
.y25_c00359{bottom:944.325000px;}
.y22_c00359{bottom:945.405000px;}
.y1f_c00359{bottom:961.905000px;}
.y21_c00359{bottom:962.325000px;}
.y20_c00359{bottom:962.745000px;}
.y1d_c00359{bottom:963.630000px;}
.y1b_c00359{bottom:963.825000px;}
.y1e_c00359{bottom:964.470000px;}
.y1c_c00359{bottom:964.905000px;}
.y1a_c00359{bottom:965.130000px;}
.y19_c00359{bottom:965.970000px;}
.y14_c00359{bottom:982.245000px;}
.y15_c00359{bottom:983.130000px;}
.y18_c00359{bottom:983.325000px;}
.y16_c00359{bottom:984.405000px;}
.y17_c00359{bottom:985.470000px;}
.y11_c00359{bottom:1001.745000px;}
.y13_c00359{bottom:1003.470000px;}
.y10_c00359{bottom:1003.905000px;}
.y12_c00359{bottom:1004.130000px;}
.ye_c00359{bottom:1021.245000px;}
.yf_c00359{bottom:1021.470000px;}
.yc_c00359{bottom:1022.325000px;}
.yd_c00359{bottom:1023.405000px;}
.yb_c00359{bottom:1024.470000px;}
.y9_c00359{bottom:1040.745000px;}
.y8_c00359{bottom:1042.905000px;}
.ya_c00359{bottom:1043.970000px;}
.y5_c00359{bottom:1060.245000px;}
.y7_c00359{bottom:1061.130000px;}
.y3_c00359{bottom:1061.325000px;}
.y4_c00359{bottom:1062.405000px;}
.y6_c00359{bottom:1063.470000px;}
.y2_c00359{bottom:1099.470000px;}
.y1_c00359{bottom:1100.550000px;}
.h6_c00359{height:23.025234px;}
.h1_c00359{height:25.091602px;}
.h2_c00359{height:31.364502px;}
.h4_c00359{height:35.571035px;}
.h3_c00359{height:39.777568px;}
.h5_c00359{height:43.910303px;}
.h7_c00359{height:48.116836px;}
.h0_c00359{height:1335.000000px;}
.w0_c00359{width:880.500000px;}
.x0_c00359{left:0.000000px;}
.x113_c00359{left:150.000000px;}
.xf5_c00359{left:151.920000px;}
.x78_c00359{left:153.000000px;}
.x2_c00359{left:154.500000px;}
.x3_c00359{left:156.855000px;}
.x11a_c00359{left:166.500000px;}
.xfa_c00359{left:167.580000px;}
.xc9_c00359{left:169.500000px;}
.x79_c00359{left:171.000000px;}
.x4d_c00359{left:172.500000px;}
.x1d_c00359{left:174.000000px;}
.xee_c00359{left:175.920000px;}
.x27_c00359{left:182.355000px;}
.x4e_c00359{left:184.500000px;}
.xf3_c00359{left:186.420000px;}
.x34_c00359{left:187.500000px;}
.xd0_c00359{left:188.580000px;}
.x10d_c00359{left:190.080000px;}
.x95_c00359{left:192.000000px;}
.xb9_c00359{left:195.000000px;}
.x9c_c00359{left:196.500000px;}
.x6f_c00359{left:198.420000px;}
.x4_c00359{left:201.420000px;}
.x114_c00359{left:202.500000px;}
.x8a_c00359{left:205.920000px;}
.x5a_c00359{left:207.000000px;}
.x12_c00359{left:208.080000px;}
.x101_c00359{left:209.580000px;}
.x83_c00359{left:217.080000px;}
.x4f_c00359{left:219.000000px;}
.xf8_c00359{left:220.500000px;}
.xef_c00359{left:222.000000px;}
.x35_c00359{left:223.500000px;}
.xba_c00359{left:225.420000px;}
.x7a_c00359{left:226.500000px;}
.xa5_c00359{left:228.000000px;}
.x5_c00359{left:229.500000px;}
.xdf_c00359{left:232.500000px;}
.xfb_c00359{left:233.580000px;}
.x36_c00359{left:235.920000px;}
.x66_c00359{left:237.000000px;}
.x84_c00359{left:238.920000px;}
.xb0_c00359{left:240.000000px;}
.x28_c00359{left:241.500000px;}
.x106_c00359{left:243.000000px;}
.x8b_c00359{left:246.000000px;}
.x1e_c00359{left:247.500000px;}
.xe5_c00359{left:249.000000px;}
.x50_c00359{left:250.920000px;}
.x5b_c00359{left:255.000000px;}
.x9d_c00359{left:257.580000px;}
.xbb_c00359{left:261.000000px;}
.xa6_c00359{left:262.500000px;}
.x13_c00359{left:265.500000px;}
.xe6_c00359{left:267.000000px;}
.x96_c00359{left:268.500000px;}
.x118_c00359{left:270.000000px;}
.xea_c00359{left:271.500000px;}
.x5c_c00359{left:273.420000px;}
.xd5_c00359{left:276.000000px;}
.x51_c00359{left:277.500000px;}
.x8c_c00359{left:279.000000px;}
.x6_c00359{left:280.920000px;}
.x67_c00359{left:282.000000px;}
.x37_c00359{left:285.000000px;}
.xbc_c00359{left:286.080000px;}
.x29_c00359{left:289.500000px;}
.x70_c00359{left:294.000000px;}
.xd7_c00359{left:295.500000px;}
.xd6_c00359{left:298.080000px;}
.x14_c00359{left:300.000000px;}
.x9e_c00359{left:301.920000px;}
.x7b_c00359{left:303.000000px;}
.x10f_c00359{left:304.500000px;}
.x1f_c00359{left:305.580000px;}
.x115_c00359{left:307.500000px;}
.x38_c00359{left:309.000000px;}
.xb1_c00359{left:310.920000px;}
.x97_c00359{left:313.500000px;}
.x2a_c00359{left:314.580000px;}
.xf0_c00359{left:316.080000px;}
.xd1_c00359{left:318.420000px;}
.x68_c00359{left:319.920000px;}
.x7c_c00359{left:322.080000px;}
.x7_c00359{left:324.000000px;}
.x45_c00359{left:325.500000px;}
.xf6_c00359{left:328.500000px;}
.x5d_c00359{left:330.420000px;}
.x52_c00359{left:333.000000px;}
.xa7_c00359{left:334.500000px;}
.x15_c00359{left:335.580000px;}
.x8d_c00359{left:337.500000px;}
.x46_c00359{left:339.000000px;}
.xb2_c00359{left:340.500000px;}
.x39_c00359{left:341.580000px;}
.xe7_c00359{left:343.500000px;}
.x69_c00359{left:345.000000px;}
.xca_c00359{left:346.080000px;}
.x8_c00359{left:348.000000px;}
.xc2_c00359{left:351.000000px;}
.x20_c00359{left:352.920000px;}
.x9f_c00359{left:354.000000px;}
.x107_c00359{left:357.000000px;}
.x98_c00359{left:358.080000px;}
.xe0_c00359{left:361.920000px;}
.xc3_c00359{left:363.420000px;}
.x71_c00359{left:364.500000px;}
.xfc_c00359{left:366.420000px;}
.x5e_c00359{left:370.500000px;}
.x47_c00359{left:373.080000px;}
.xb3_c00359{left:376.500000px;}
.x3a_c00359{left:379.500000px;}
.x108_c00359{left:381.855000px;}
.x53_c00359{left:382.920000px;}
.x2b_c00359{left:387.000000px;}
.x102_c00359{left:388.500000px;}
.xcb_c00359{left:390.000000px;}
.x48_c00359{left:391.500000px;}
.xbd_c00359{left:393.000000px;}
.x6a_c00359{left:394.080000px;}
.xdd_c00359{left:396.000000px;}
.x10e_c00359{left:397.500000px;}
.xd8_c00359{left:399.000000px;}
.x21_c00359{left:400.080000px;}
.xc4_c00359{left:403.500000px;}
.x1_c00359{left:405.000000px;}
.x9_c00359{left:406.080000px;}
.xeb_c00359{left:408.000000px;}
.x72_c00359{left:409.500000px;}
.x6b_c00359{left:411.000000px;}
.xa0_c00359{left:412.500000px;}
.x85_c00359{left:414.000000px;}
.x3b_c00359{left:415.500000px;}
.xa8_c00359{left:417.000000px;}
.x54_c00359{left:418.080000px;}
.xbe_c00359{left:420.420000px;}
.x16_c00359{left:423.420000px;}
.x5f_c00359{left:424.500000px;}
.x110_c00359{left:426.000000px;}
.x3c_c00359{left:427.080000px;}
.x86_c00359{left:433.500000px;}
.xf4_c00359{left:434.580000px;}
.x7d_c00359{left:436.920000px;}
.x55_c00359{left:438.420000px;}
.xa_c00359{left:439.500000px;}
.xfd_c00359{left:440.580000px;}
.xe8_c00359{left:442.920000px;}
.xd9_c00359{left:444.420000px;}
.xc5_c00359{left:447.420000px;}
.x22_c00359{left:448.500000px;}
.x8e_c00359{left:450.000000px;}
.x17_c00359{left:452.355000px;}
.x111_c00359{left:453.855000px;}
.xb4_c00359{left:456.000000px;}
.x103_c00359{left:457.500000px;}
.xa9_c00359{left:458.580000px;}
.x3d_c00359{left:460.500000px;}
.x119_c00359{left:461.580000px;}
.xb_c00359{left:463.500000px;}
.x49_c00359{left:465.000000px;}
.x2c_c00359{left:466.920000px;}
.xec_c00359{left:472.920000px;}
.x104_c00359{left:477.420000px;}
.x3e_c00359{left:478.500000px;}
.xa1_c00359{left:481.500000px;}
.x73_c00359{left:484.500000px;}
.x60_c00359{left:485.580000px;}
.xcc_c00359{left:489.000000px;}
.x8f_c00359{left:490.500000px;}
.x109_c00359{left:492.420000px;}
.xb5_c00359{left:493.920000px;}
.x116_c00359{left:495.000000px;}
.x4a_c00359{left:496.080000px;}
.xc6_c00359{left:497.580000px;}
.x99_c00359{left:499.080000px;}
.x2d_c00359{left:501.000000px;}
.x3f_c00359{left:502.500000px;}
.x11b_c00359{left:503.580000px;}
.xaa_c00359{left:507.000000px;}
.x18_c00359{left:508.500000px;}
.x56_c00359{left:510.000000px;}
.xbf_c00359{left:511.500000px;}
.xfe_c00359{left:514.500000px;}
.xd2_c00359{left:516.000000px;}
.xf9_c00359{left:517.080000px;}
.x6c_c00359{left:523.080000px;}
.x7e_c00359{left:525.000000px;}
.x74_c00359{left:526.500000px;}
.xa2_c00359{left:528.000000px;}
.x2e_c00359{left:529.080000px;}
.x61_c00359{left:531.000000px;}
.x23_c00359{left:533.775000px;}
.xc_c00359{left:535.920000px;}
.x87_c00359{left:537.000000px;}
.xff_c00359{left:538.500000px;}
.x6d_c00359{left:540.000000px;}
.xab_c00359{left:543.000000px;}
.xcd_c00359{left:544.500000px;}
.x2f_c00359{left:547.920000px;}
.x90_c00359{left:550.500000px;}
.xd3_c00359{left:552.000000px;}
.x19_c00359{left:555.420000px;}
.x40_c00359{left:556.500000px;}
.x88_c00359{left:558.000000px;}
.xc0_c00359{left:559.920000px;}
.x62_c00359{left:561.000000px;}
.xb6_c00359{left:562.500000px;}
.xd_c00359{left:564.000000px;}
.x75_c00359{left:565.500000px;}
.x112_c00359{left:568.500000px;}
.xac_c00359{left:573.000000px;}
.x24_c00359{left:576.420000px;}
.xc7_c00359{left:577.500000px;}
.xda_c00359{left:579.000000px;}
.x63_c00359{left:580.920000px;}
.xe2_c00359{left:582.000000px;}
.xf1_c00359{left:586.920000px;}
.x30_c00359{left:588.000000px;}
.xb7_c00359{left:589.500000px;}
.xdb_c00359{left:592.920000px;}
.x10a_c00359{left:595.920000px;}
.x7f_c00359{left:597.000000px;}
.xc8_c00359{left:598.920000px;}
.x41_c00359{left:601.500000px;}
.x100_c00359{left:603.000000px;}
.xa3_c00359{left:604.920000px;}
.x91_c00359{left:607.500000px;}
.x1a_c00359{left:609.000000px;}
.x10b_c00359{left:612.000000px;}
.xe_c00359{left:615.000000px;}
.x6e_c00359{left:616.500000px;}
.x31_c00359{left:618.000000px;}
.xf7_c00359{left:619.500000px;}
.x25_c00359{left:621.000000px;}
.x57_c00359{left:622.920000px;}
.xf2_c00359{left:624.000000px;}
.x92_c00359{left:625.920000px;}
.xc1_c00359{left:627.000000px;}
.x10c_c00359{left:628.920000px;}
.x80_c00359{left:630.000000px;}
.x42_c00359{left:631.500000px;}
.xb8_c00359{left:632.580000px;}
.x117_c00359{left:634.500000px;}
.xde_c00359{left:636.000000px;}
.xe3_c00359{left:637.920000px;}
.xa4_c00359{left:640.500000px;}
.x1b_c00359{left:645.420000px;}
.xd4_c00359{left:646.920000px;}
.xe1_c00359{left:649.080000px;}
.xad_c00359{left:651.420000px;}
.x9a_c00359{left:652.500000px;}
.x64_c00359{left:655.500000px;}
.x58_c00359{left:657.000000px;}
.xf_c00359{left:658.500000px;}
.x32_c00359{left:660.420000px;}
.x93_c00359{left:661.500000px;}
.x76_c00359{left:664.080000px;}
.x4b_c00359{left:666.000000px;}
.x43_c00359{left:667.500000px;}
.xdc_c00359{left:669.420000px;}
.x1c_c00359{left:672.000000px;}
.x81_c00359{left:673.500000px;}
.xce_c00359{left:675.000000px;}
.x89_c00359{left:676.500000px;}
.x4c_c00359{left:681.855000px;}
.xae_c00359{left:682.920000px;}
.xed_c00359{left:684.000000px;}
.x9b_c00359{left:685.500000px;}
.x59_c00359{left:687.420000px;}
.x105_c00359{left:688.500000px;}
.x10_c00359{left:689.580000px;}
.x26_c00359{left:691.080000px;}
.x65_c00359{left:692.580000px;}
.x77_c00359{left:694.500000px;}
.x44_c00359{left:696.420000px;}
.x82_c00359{left:699.420000px;}
.xe4_c00359{left:704.580000px;}
.xe9_c00359{left:706.920000px;}
.x11_c00359{left:709.920000px;}
.xcf_c00359{left:711.000000px;}
.x94_c00359{left:712.920000px;}
.x33_c00359{left:717.000000px;}
.xaf_c00359{left:723.000000px;}
@media print{
.v0_c00359{vertical-align:0.000000pt;}
.ls0_c00359{letter-spacing:0.000000pt;}
.ws1_c00359{word-spacing:-4.732167pt;}
.ws0_c00359{word-spacing:-3.710097pt;}
.ws2_c00359{word-spacing:0.000000pt;}
.fs5_c00359{font-size:16.640000pt;}
.fs0_c00359{font-size:18.133333pt;}
.fs1_c00359{font-size:22.666667pt;}
.fs3_c00359{font-size:25.706667pt;}
.fs2_c00359{font-size:28.746667pt;}
.fs4_c00359{font-size:31.733333pt;}
.fs6_c00359{font-size:34.773333pt;}
.y0_c00359{bottom:0.000000pt;}
.ydf_c00359{bottom:223.773333pt;}
.ye0_c00359{bottom:225.306667pt;}
.yde_c00359{bottom:225.693333pt;}
.ye1_c00359{bottom:225.893333pt;}
.ydd_c00359{bottom:241.106667pt;}
.ydc_c00359{bottom:243.026667pt;}
.yd4_c00359{bottom:257.493333pt;}
.yda_c00359{bottom:258.440000pt;}
.yd8_c00359{bottom:258.826667pt;}
.yd7_c00359{bottom:259.400000pt;}
.ydb_c00359{bottom:259.773333pt;}
.yd6_c00359{bottom:260.360000pt;}
.yd5_c00359{bottom:260.560000pt;}
.yd9_c00359{bottom:261.693333pt;}
.yd0_c00359{bottom:276.733333pt;}
.yd2_c00359{bottom:277.106667pt;}
.ycf_c00359{bottom:277.693333pt;}
.yd3_c00359{bottom:277.893333pt;}
.yd1_c00359{bottom:279.026667pt;}
.ycd_c00359{bottom:294.440000pt;}
.ycc_c00359{bottom:295.226667pt;}
.ycb_c00359{bottom:296.360000pt;}
.yce_c00359{bottom:297.306667pt;}
.yca_c00359{bottom:311.773333pt;}
.yc9_c00359{bottom:313.693333pt;}
.yc4_c00359{bottom:328.733333pt;}
.yc7_c00359{bottom:329.106667pt;}
.yc6_c00359{bottom:330.066667pt;}
.yc3_c00359{bottom:330.640000pt;}
.yc5_c00359{bottom:331.026667pt;}
.yc8_c00359{bottom:331.226667pt;}
.ybe_c00359{bottom:346.440000pt;}
.yc2_c00359{bottom:347.773333pt;}
.ybf_c00359{bottom:348.360000pt;}
.yc0_c00359{bottom:349.306667pt;}
.yc1_c00359{bottom:349.693333pt;}
.ybd_c00359{bottom:364.733333pt;}
.ybb_c00359{bottom:365.106667pt;}
.yb9_c00359{bottom:365.693333pt;}
.yb8_c00359{bottom:366.066667pt;}
.ybc_c00359{bottom:366.640000pt;}
.yba_c00359{bottom:367.026667pt;}
.yb5_c00359{bottom:380.360000pt;}
.yb4_c00359{bottom:381.306667pt;}
.yb3_c00359{bottom:381.693333pt;}
.yb2_c00359{bottom:382.440000pt;}
.yb6_c00359{bottom:383.400000pt;}
.yb7_c00359{bottom:384.360000pt;}
.yaf_c00359{bottom:398.640000pt;}
.yb0_c00359{bottom:399.773333pt;}
.yb1_c00359{bottom:400.560000pt;}
.yae_c00359{bottom:400.733333pt;}
.yad_c00359{bottom:401.693333pt;}
.yab_c00359{bottom:417.106667pt;}
.yac_c00359{bottom:417.893333pt;}
.yaa_c00359{bottom:418.066667pt;}
.ya9_c00359{bottom:419.026667pt;}
.ya6_c00359{bottom:434.440000pt;}
.ya7_c00359{bottom:435.400000pt;}
.ya8_c00359{bottom:435.973333pt;}
.ya3_c00359{bottom:436.360000pt;}
.ya5_c00359{bottom:436.560000pt;}
.ya4_c00359{bottom:437.306667pt;}
.y9c_c00359{bottom:451.026667pt;}
.y9d_c00359{bottom:451.973333pt;}
.ya2_c00359{bottom:453.106667pt;}
.y9e_c00359{bottom:453.893333pt;}
.ya1_c00359{bottom:454.066667pt;}
.y9f_c00359{bottom:454.640000pt;}
.ya0_c00359{bottom:455.026667pt;}
.y9b_c00359{bottom:455.973333pt;}
.y97_c00359{bottom:469.106667pt;}
.y9a_c00359{bottom:470.440000pt;}
.y99_c00359{bottom:471.026667pt;}
.y96_c00359{bottom:471.226667pt;}
.y98_c00359{bottom:471.973333pt;}
.y95_c00359{bottom:472.360000pt;}
.y93_c00359{bottom:486.640000pt;}
.y90_c00359{bottom:487.773333pt;}
.y92_c00359{bottom:488.560000pt;}
.y94_c00359{bottom:488.733333pt;}
.y91_c00359{bottom:489.693333pt;}
.y8d_c00359{bottom:503.026667pt;}
.y8b_c00359{bottom:505.106667pt;}
.y8f_c00359{bottom:505.893333pt;}
.y8c_c00359{bottom:506.640000pt;}
.y8e_c00359{bottom:507.026667pt;}
.y89_c00359{bottom:522.440000pt;}
.y8a_c00359{bottom:523.226667pt;}
.y87_c00359{bottom:523.400000pt;}
.y88_c00359{bottom:524.360000pt;}
.y86_c00359{bottom:525.306667pt;}
.y7f_c00359{bottom:539.773333pt;}
.y84_c00359{bottom:539.973333pt;}
.y83_c00359{bottom:540.733333pt;}
.y85_c00359{bottom:541.306667pt;}
.y82_c00359{bottom:541.693333pt;}
.y80_c00359{bottom:541.893333pt;}
.y81_c00359{bottom:542.640000pt;}
.y7c_c00359{bottom:557.106667pt;}
.y7e_c00359{bottom:558.066667pt;}
.y7b_c00359{bottom:558.440000pt;}
.y7a_c00359{bottom:559.026667pt;}
.y7d_c00359{bottom:559.226667pt;}
.y78_c00359{bottom:574.440000pt;}
.y79_c00359{bottom:576.360000pt;}
.y76_c00359{bottom:591.773333pt;}
.y73_c00359{bottom:592.733333pt;}
.y75_c00359{bottom:593.106667pt;}
.y72_c00359{bottom:593.693333pt;}
.y74_c00359{bottom:593.893333pt;}
.y77_c00359{bottom:595.026667pt;}
.y70_c00359{bottom:610.440000pt;}
.y6f_c00359{bottom:611.226667pt;}
.y71_c00359{bottom:611.400000pt;}
.y6e_c00359{bottom:612.360000pt;}
.y6c_c00359{bottom:625.693333pt;}
.y6b_c00359{bottom:627.400000pt;}
.y6d_c00359{bottom:627.773333pt;}
.y6a_c00359{bottom:628.560000pt;}
.y69_c00359{bottom:628.733333pt;}
.y68_c00359{bottom:629.693333pt;}
.y64_c00359{bottom:645.106667pt;}
.y63_c00359{bottom:646.066667pt;}
.y67_c00359{bottom:646.640000pt;}
.y66_c00359{bottom:647.026667pt;}
.y65_c00359{bottom:647.226667pt;}
.y62_c00359{bottom:647.973333pt;}
.y5e_c00359{bottom:662.440000pt;}
.y5f_c00359{bottom:664.360000pt;}
.y60_c00359{bottom:664.560000pt;}
.y61_c00359{bottom:665.306667pt;}
.y5c_c00359{bottom:679.773333pt;}
.y5b_c00359{bottom:680.733333pt;}
.y5a_c00359{bottom:681.693333pt;}
.y5d_c00359{bottom:681.893333pt;}
.y58_c00359{bottom:682.640000pt;}
.y59_c00359{bottom:683.026667pt;}
.y53_c00359{bottom:697.493333pt;}
.y52_c00359{bottom:698.440000pt;}
.y56_c00359{bottom:699.226667pt;}
.y57_c00359{bottom:699.400000pt;}
.y55_c00359{bottom:699.973333pt;}
.y51_c00359{bottom:700.360000pt;}
.y54_c00359{bottom:701.306667pt;}
.y4d_c00359{bottom:715.773333pt;}
.y4f_c00359{bottom:716.560000pt;}
.y50_c00359{bottom:717.306667pt;}
.y4e_c00359{bottom:717.693333pt;}
.y48_c00359{bottom:731.026667pt;}
.y46_c00359{bottom:731.973333pt;}
.y4c_c00359{bottom:733.106667pt;}
.y4a_c00359{bottom:734.066667pt;}
.y49_c00359{bottom:734.640000pt;}
.y47_c00359{bottom:735.026667pt;}
.y4b_c00359{bottom:735.973333pt;}
.y45_c00359{bottom:748.360000pt;}
.y42_c00359{bottom:750.440000pt;}
.y43_c00359{bottom:751.226667pt;}
.y40_c00359{bottom:751.400000pt;}
.y41_c00359{bottom:751.973333pt;}
.y44_c00359{bottom:752.360000pt;}
.y3c_c00359{bottom:767.400000pt;}
.y3d_c00359{bottom:767.773333pt;}
.y3f_c00359{bottom:768.733333pt;}
.y3a_c00359{bottom:769.693333pt;}
.y3b_c00359{bottom:769.893333pt;}
.y3e_c00359{bottom:770.640000pt;}
.y36_c00359{bottom:785.106667pt;}
.y35_c00359{bottom:785.893333pt;}
.y38_c00359{bottom:786.640000pt;}
.y34_c00359{bottom:787.026667pt;}
.y37_c00359{bottom:787.226667pt;}
.y39_c00359{bottom:787.973333pt;}
.y31_c00359{bottom:802.440000pt;}
.y2e_c00359{bottom:802.640000pt;}
.y2f_c00359{bottom:803.400000pt;}
.y33_c00359{bottom:803.773333pt;}
.y30_c00359{bottom:804.360000pt;}
.y2d_c00359{bottom:804.560000pt;}
.y32_c00359{bottom:805.306667pt;}
.y2c_c00359{bottom:819.773333pt;}
.y29_c00359{bottom:821.106667pt;}
.y2b_c00359{bottom:821.693333pt;}
.y28_c00359{bottom:821.893333pt;}
.y2a_c00359{bottom:822.640000pt;}
.y27_c00359{bottom:823.026667pt;}
.y26_c00359{bottom:836.360000pt;}
.y24_c00359{bottom:838.440000pt;}
.y23_c00359{bottom:839.226667pt;}
.y25_c00359{bottom:839.400000pt;}
.y22_c00359{bottom:840.360000pt;}
.y1f_c00359{bottom:855.026667pt;}
.y21_c00359{bottom:855.400000pt;}
.y20_c00359{bottom:855.773333pt;}
.y1d_c00359{bottom:856.560000pt;}
.y1b_c00359{bottom:856.733333pt;}
.y1e_c00359{bottom:857.306667pt;}
.y1c_c00359{bottom:857.693333pt;}
.y1a_c00359{bottom:857.893333pt;}
.y19_c00359{bottom:858.640000pt;}
.y14_c00359{bottom:873.106667pt;}
.y15_c00359{bottom:873.893333pt;}
.y18_c00359{bottom:874.066667pt;}
.y16_c00359{bottom:875.026667pt;}
.y17_c00359{bottom:875.973333pt;}
.y11_c00359{bottom:890.440000pt;}
.y13_c00359{bottom:891.973333pt;}
.y10_c00359{bottom:892.360000pt;}
.y12_c00359{bottom:892.560000pt;}
.ye_c00359{bottom:907.773333pt;}
.yf_c00359{bottom:907.973333pt;}
.yc_c00359{bottom:908.733333pt;}
.yd_c00359{bottom:909.693333pt;}
.yb_c00359{bottom:910.640000pt;}
.y9_c00359{bottom:925.106667pt;}
.y8_c00359{bottom:927.026667pt;}
.ya_c00359{bottom:927.973333pt;}
.y5_c00359{bottom:942.440000pt;}
.y7_c00359{bottom:943.226667pt;}
.y3_c00359{bottom:943.400000pt;}
.y4_c00359{bottom:944.360000pt;}
.y6_c00359{bottom:945.306667pt;}
.y2_c00359{bottom:977.306667pt;}
.y1_c00359{bottom:978.266667pt;}
.h6_c00359{height:20.466875pt;}
.h1_c00359{height:22.303646pt;}
.h2_c00359{height:27.879557pt;}
.h4_c00359{height:31.618698pt;}
.h3_c00359{height:35.357839pt;}
.h5_c00359{height:39.031380pt;}
.h7_c00359{height:42.770521pt;}
.h0_c00359{height:1186.666667pt;}
.w0_c00359{width:782.666667pt;}
.x0_c00359{left:0.000000pt;}
.x113_c00359{left:133.333333pt;}
.xf5_c00359{left:135.040000pt;}
.x78_c00359{left:136.000000pt;}
.x2_c00359{left:137.333333pt;}
.x3_c00359{left:139.426667pt;}
.x11a_c00359{left:148.000000pt;}
.xfa_c00359{left:148.960000pt;}
.xc9_c00359{left:150.666667pt;}
.x79_c00359{left:152.000000pt;}
.x4d_c00359{left:153.333333pt;}
.x1d_c00359{left:154.666667pt;}
.xee_c00359{left:156.373333pt;}
.x27_c00359{left:162.093333pt;}
.x4e_c00359{left:164.000000pt;}
.xf3_c00359{left:165.706667pt;}
.x34_c00359{left:166.666667pt;}
.xd0_c00359{left:167.626667pt;}
.x10d_c00359{left:168.960000pt;}
.x95_c00359{left:170.666667pt;}
.xb9_c00359{left:173.333333pt;}
.x9c_c00359{left:174.666667pt;}
.x6f_c00359{left:176.373333pt;}
.x4_c00359{left:179.040000pt;}
.x114_c00359{left:180.000000pt;}
.x8a_c00359{left:183.040000pt;}
.x5a_c00359{left:184.000000pt;}
.x12_c00359{left:184.960000pt;}
.x101_c00359{left:186.293333pt;}
.x83_c00359{left:192.960000pt;}
.x4f_c00359{left:194.666667pt;}
.xf8_c00359{left:196.000000pt;}
.xef_c00359{left:197.333333pt;}
.x35_c00359{left:198.666667pt;}
.xba_c00359{left:200.373333pt;}
.x7a_c00359{left:201.333333pt;}
.xa5_c00359{left:202.666667pt;}
.x5_c00359{left:204.000000pt;}
.xdf_c00359{left:206.666667pt;}
.xfb_c00359{left:207.626667pt;}
.x36_c00359{left:209.706667pt;}
.x66_c00359{left:210.666667pt;}
.x84_c00359{left:212.373333pt;}
.xb0_c00359{left:213.333333pt;}
.x28_c00359{left:214.666667pt;}
.x106_c00359{left:216.000000pt;}
.x8b_c00359{left:218.666667pt;}
.x1e_c00359{left:220.000000pt;}
.xe5_c00359{left:221.333333pt;}
.x50_c00359{left:223.040000pt;}
.x5b_c00359{left:226.666667pt;}
.x9d_c00359{left:228.960000pt;}
.xbb_c00359{left:232.000000pt;}
.xa6_c00359{left:233.333333pt;}
.x13_c00359{left:236.000000pt;}
.xe6_c00359{left:237.333333pt;}
.x96_c00359{left:238.666667pt;}
.x118_c00359{left:240.000000pt;}
.xea_c00359{left:241.333333pt;}
.x5c_c00359{left:243.040000pt;}
.xd5_c00359{left:245.333333pt;}
.x51_c00359{left:246.666667pt;}
.x8c_c00359{left:248.000000pt;}
.x6_c00359{left:249.706667pt;}
.x67_c00359{left:250.666667pt;}
.x37_c00359{left:253.333333pt;}
.xbc_c00359{left:254.293333pt;}
.x29_c00359{left:257.333333pt;}
.x70_c00359{left:261.333333pt;}
.xd7_c00359{left:262.666667pt;}
.xd6_c00359{left:264.960000pt;}
.x14_c00359{left:266.666667pt;}
.x9e_c00359{left:268.373333pt;}
.x7b_c00359{left:269.333333pt;}
.x10f_c00359{left:270.666667pt;}
.x1f_c00359{left:271.626667pt;}
.x115_c00359{left:273.333333pt;}
.x38_c00359{left:274.666667pt;}
.xb1_c00359{left:276.373333pt;}
.x97_c00359{left:278.666667pt;}
.x2a_c00359{left:279.626667pt;}
.xf0_c00359{left:280.960000pt;}
.xd1_c00359{left:283.040000pt;}
.x68_c00359{left:284.373333pt;}
.x7c_c00359{left:286.293333pt;}
.x7_c00359{left:288.000000pt;}
.x45_c00359{left:289.333333pt;}
.xf6_c00359{left:292.000000pt;}
.x5d_c00359{left:293.706667pt;}
.x52_c00359{left:296.000000pt;}
.xa7_c00359{left:297.333333pt;}
.x15_c00359{left:298.293333pt;}
.x8d_c00359{left:300.000000pt;}
.x46_c00359{left:301.333333pt;}
.xb2_c00359{left:302.666667pt;}
.x39_c00359{left:303.626667pt;}
.xe7_c00359{left:305.333333pt;}
.x69_c00359{left:306.666667pt;}
.xca_c00359{left:307.626667pt;}
.x8_c00359{left:309.333333pt;}
.xc2_c00359{left:312.000000pt;}
.x20_c00359{left:313.706667pt;}
.x9f_c00359{left:314.666667pt;}
.x107_c00359{left:317.333333pt;}
.x98_c00359{left:318.293333pt;}
.xe0_c00359{left:321.706667pt;}
.xc3_c00359{left:323.040000pt;}
.x71_c00359{left:324.000000pt;}
.xfc_c00359{left:325.706667pt;}
.x5e_c00359{left:329.333333pt;}
.x47_c00359{left:331.626667pt;}
.xb3_c00359{left:334.666667pt;}
.x3a_c00359{left:337.333333pt;}
.x108_c00359{left:339.426667pt;}
.x53_c00359{left:340.373333pt;}
.x2b_c00359{left:344.000000pt;}
.x102_c00359{left:345.333333pt;}
.xcb_c00359{left:346.666667pt;}
.x48_c00359{left:348.000000pt;}
.xbd_c00359{left:349.333333pt;}
.x6a_c00359{left:350.293333pt;}
.xdd_c00359{left:352.000000pt;}
.x10e_c00359{left:353.333333pt;}
.xd8_c00359{left:354.666667pt;}
.x21_c00359{left:355.626667pt;}
.xc4_c00359{left:358.666667pt;}
.x1_c00359{left:360.000000pt;}
.x9_c00359{left:360.960000pt;}
.xeb_c00359{left:362.666667pt;}
.x72_c00359{left:364.000000pt;}
.x6b_c00359{left:365.333333pt;}
.xa0_c00359{left:366.666667pt;}
.x85_c00359{left:368.000000pt;}
.x3b_c00359{left:369.333333pt;}
.xa8_c00359{left:370.666667pt;}
.x54_c00359{left:371.626667pt;}
.xbe_c00359{left:373.706667pt;}
.x16_c00359{left:376.373333pt;}
.x5f_c00359{left:377.333333pt;}
.x110_c00359{left:378.666667pt;}
.x3c_c00359{left:379.626667pt;}
.x86_c00359{left:385.333333pt;}
.xf4_c00359{left:386.293333pt;}
.x7d_c00359{left:388.373333pt;}
.x55_c00359{left:389.706667pt;}
.xa_c00359{left:390.666667pt;}
.xfd_c00359{left:391.626667pt;}
.xe8_c00359{left:393.706667pt;}
.xd9_c00359{left:395.040000pt;}
.xc5_c00359{left:397.706667pt;}
.x22_c00359{left:398.666667pt;}
.x8e_c00359{left:400.000000pt;}
.x17_c00359{left:402.093333pt;}
.x111_c00359{left:403.426667pt;}
.xb4_c00359{left:405.333333pt;}
.x103_c00359{left:406.666667pt;}
.xa9_c00359{left:407.626667pt;}
.x3d_c00359{left:409.333333pt;}
.x119_c00359{left:410.293333pt;}
.xb_c00359{left:412.000000pt;}
.x49_c00359{left:413.333333pt;}
.x2c_c00359{left:415.040000pt;}
.xec_c00359{left:420.373333pt;}
.x104_c00359{left:424.373333pt;}
.x3e_c00359{left:425.333333pt;}
.xa1_c00359{left:428.000000pt;}
.x73_c00359{left:430.666667pt;}
.x60_c00359{left:431.626667pt;}
.xcc_c00359{left:434.666667pt;}
.x8f_c00359{left:436.000000pt;}
.x109_c00359{left:437.706667pt;}
.xb5_c00359{left:439.040000pt;}
.x116_c00359{left:440.000000pt;}
.x4a_c00359{left:440.960000pt;}
.xc6_c00359{left:442.293333pt;}
.x99_c00359{left:443.626667pt;}
.x2d_c00359{left:445.333333pt;}
.x3f_c00359{left:446.666667pt;}
.x11b_c00359{left:447.626667pt;}
.xaa_c00359{left:450.666667pt;}
.x18_c00359{left:452.000000pt;}
.x56_c00359{left:453.333333pt;}
.xbf_c00359{left:454.666667pt;}
.xfe_c00359{left:457.333333pt;}
.xd2_c00359{left:458.666667pt;}
.xf9_c00359{left:459.626667pt;}
.x6c_c00359{left:464.960000pt;}
.x7e_c00359{left:466.666667pt;}
.x74_c00359{left:468.000000pt;}
.xa2_c00359{left:469.333333pt;}
.x2e_c00359{left:470.293333pt;}
.x61_c00359{left:472.000000pt;}
.x23_c00359{left:474.466667pt;}
.xc_c00359{left:476.373333pt;}
.x87_c00359{left:477.333333pt;}
.xff_c00359{left:478.666667pt;}
.x6d_c00359{left:480.000000pt;}
.xab_c00359{left:482.666667pt;}
.xcd_c00359{left:484.000000pt;}
.x2f_c00359{left:487.040000pt;}
.x90_c00359{left:489.333333pt;}
.xd3_c00359{left:490.666667pt;}
.x19_c00359{left:493.706667pt;}
.x40_c00359{left:494.666667pt;}
.x88_c00359{left:496.000000pt;}
.xc0_c00359{left:497.706667pt;}
.x62_c00359{left:498.666667pt;}
.xb6_c00359{left:500.000000pt;}
.xd_c00359{left:501.333333pt;}
.x75_c00359{left:502.666667pt;}
.x112_c00359{left:505.333333pt;}
.xac_c00359{left:509.333333pt;}
.x24_c00359{left:512.373333pt;}
.xc7_c00359{left:513.333333pt;}
.xda_c00359{left:514.666667pt;}
.x63_c00359{left:516.373333pt;}
.xe2_c00359{left:517.333333pt;}
.xf1_c00359{left:521.706667pt;}
.x30_c00359{left:522.666667pt;}
.xb7_c00359{left:524.000000pt;}
.xdb_c00359{left:527.040000pt;}
.x10a_c00359{left:529.706667pt;}
.x7f_c00359{left:530.666667pt;}
.xc8_c00359{left:532.373333pt;}
.x41_c00359{left:534.666667pt;}
.x100_c00359{left:536.000000pt;}
.xa3_c00359{left:537.706667pt;}
.x91_c00359{left:540.000000pt;}
.x1a_c00359{left:541.333333pt;}
.x10b_c00359{left:544.000000pt;}
.xe_c00359{left:546.666667pt;}
.x6e_c00359{left:548.000000pt;}
.x31_c00359{left:549.333333pt;}
.xf7_c00359{left:550.666667pt;}
.x25_c00359{left:552.000000pt;}
.x57_c00359{left:553.706667pt;}
.xf2_c00359{left:554.666667pt;}
.x92_c00359{left:556.373333pt;}
.xc1_c00359{left:557.333333pt;}
.x10c_c00359{left:559.040000pt;}
.x80_c00359{left:560.000000pt;}
.x42_c00359{left:561.333333pt;}
.xb8_c00359{left:562.293333pt;}
.x117_c00359{left:564.000000pt;}
.xde_c00359{left:565.333333pt;}
.xe3_c00359{left:567.040000pt;}
.xa4_c00359{left:569.333333pt;}
.x1b_c00359{left:573.706667pt;}
.xd4_c00359{left:575.040000pt;}
.xe1_c00359{left:576.960000pt;}
.xad_c00359{left:579.040000pt;}
.x9a_c00359{left:580.000000pt;}
.x64_c00359{left:582.666667pt;}
.x58_c00359{left:584.000000pt;}
.xf_c00359{left:585.333333pt;}
.x32_c00359{left:587.040000pt;}
.x93_c00359{left:588.000000pt;}
.x76_c00359{left:590.293333pt;}
.x4b_c00359{left:592.000000pt;}
.x43_c00359{left:593.333333pt;}
.xdc_c00359{left:595.040000pt;}
.x1c_c00359{left:597.333333pt;}
.x81_c00359{left:598.666667pt;}
.xce_c00359{left:600.000000pt;}
.x89_c00359{left:601.333333pt;}
.x4c_c00359{left:606.093333pt;}
.xae_c00359{left:607.040000pt;}
.xed_c00359{left:608.000000pt;}
.x9b_c00359{left:609.333333pt;}
.x59_c00359{left:611.040000pt;}
.x105_c00359{left:612.000000pt;}
.x10_c00359{left:612.960000pt;}
.x26_c00359{left:614.293333pt;}
.x65_c00359{left:615.626667pt;}
.x77_c00359{left:617.333333pt;}
.x44_c00359{left:619.040000pt;}
.x82_c00359{left:621.706667pt;}
.xe4_c00359{left:626.293333pt;}
.xe9_c00359{left:628.373333pt;}
.x11_c00359{left:631.040000pt;}
.xcf_c00359{left:632.000000pt;}
.x94_c00359{left:633.706667pt;}
.x33_c00359{left:637.333333pt;}
.xaf_c00359{left:642.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_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_b74215f3336e28744e33cf34.woff2')format("woff");}.ff1_c00360{font-family:ff1_c00360;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf0_c00360{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m82_c00360{transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);}
.m1a_c00360{transform:matrix(0.355882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355882,0.000000,0.000000,0.250000,0,0);}
.md4_c00360{transform:matrix(0.358129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358129,0.000000,0.000000,0.250000,0,0);}
.m7c_c00360{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m39_c00360{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m3b_c00360{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m13_c00360{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.m4a_c00360{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.m23_c00360{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.ma9_c00360{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.mae_c00360{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.ma4_c00360{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m93_c00360{transform:matrix(0.385900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385900,0.000000,0.000000,0.250000,0,0);}
.md1_c00360{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.mc6_c00360{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m88_c00360{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m38_c00360{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m26_c00360{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m9e_c00360{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m11_c00360{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m8a_c00360{transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);}
.mf7_c00360{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m8b_c00360{transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);}
.ma8_c00360{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m55_c00360{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.ma7_c00360{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m2_c00360{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m8_c00360{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.maf_c00360{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);}
.m51_c00360{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m70_c00360{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m81_c00360{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m2a_c00360{transform:matrix(0.402607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402607,0.000000,0.000000,0.250000,0,0);}
.mf_c00360{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m4d_c00360{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m3e_c00360{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m87_c00360{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.maa_c00360{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m2e_c00360{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.me1_c00360{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m8f_c00360{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.mf5_c00360{transform:matrix(0.408359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408359,0.000000,0.000000,0.250000,0,0);}
.m2c_c00360{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m5_c00360{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.ma2_c00360{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m9a_c00360{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m3c_c00360{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.mcd_c00360{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m27_c00360{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m5d_c00360{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.mfb_c00360{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.mfa_c00360{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.mca_c00360{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m95_c00360{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.ma5_c00360{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mc7_c00360{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m42_c00360{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.med_c00360{transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);}
.mb7_c00360{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mf1_c00360{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.mb4_c00360{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.mda_c00360{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.ma6_c00360{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m21_c00360{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mce_c00360{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m52_c00360{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.mb5_c00360{transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);}
.m96_c00360{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m99_c00360{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m1c_c00360{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.m10_c00360{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m48_c00360{transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);}
.md0_c00360{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m62_c00360{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m94_c00360{transform:matrix(0.441390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441390,0.000000,0.000000,0.250000,0,0);}
.me9_c00360{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m67_c00360{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m25_c00360{transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);}
.me4_c00360{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m29_c00360{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m56_c00360{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.me7_c00360{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m84_c00360{transform:matrix(0.446324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446324,0.000000,0.000000,0.250000,0,0);}
.mc1_c00360{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.m4e_c00360{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m1_c00360{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.mea_c00360{transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);}
.m9d_c00360{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m36_c00360{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mdd_c00360{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m8e_c00360{transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);}
.mfc_c00360{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m3d_c00360{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m6b_c00360{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.mb6_c00360{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m90_c00360{transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);}
.m9f_c00360{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m1f_c00360{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m8d_c00360{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m8c_c00360{transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);}
.m9b_c00360{transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);}
.md7_c00360{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.mdf_c00360{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.m4c_c00360{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m6d_c00360{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m66_c00360{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m86_c00360{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m35_c00360{transform:matrix(0.483613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483613,0.000000,0.000000,0.250000,0,0);}
.mb8_c00360{transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);}
.m2b_c00360{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mf4_c00360{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m73_c00360{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.me3_c00360{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mc_c00360{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m7f_c00360{transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);}
.mc0_c00360{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);}
.m54_c00360{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mac_c00360{transform:matrix(0.504202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504202,0.000000,0.000000,0.250000,0,0);}
.m68_c00360{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mbd_c00360{transform:matrix(0.505102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505102,0.000000,0.000000,0.250000,0,0);}
.mcf_c00360{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.mdc_c00360{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m2d_c00360{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m16_c00360{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m7d_c00360{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m64_c00360{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.mf6_c00360{transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);}
.m7b_c00360{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m45_c00360{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.mb2_c00360{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m37_c00360{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m18_c00360{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m58_c00360{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m60_c00360{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m80_c00360{transform:matrix(0.519944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519944,0.000000,0.000000,0.250000,0,0);}
.m77_c00360{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mb3_c00360{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m44_c00360{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m3f_c00360{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m53_c00360{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m4f_c00360{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m7a_c00360{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m20_c00360{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mab_c00360{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m98_c00360{transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);}
.mb9_c00360{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m4_c00360{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m5a_c00360{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m5b_c00360{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.me6_c00360{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m46_c00360{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m31_c00360{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mc3_c00360{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m69_c00360{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mdb_c00360{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m22_c00360{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mbe_c00360{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m5f_c00360{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m41_c00360{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m78_c00360{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m34_c00360{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.mba_c00360{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.ma0_c00360{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m43_c00360{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m30_c00360{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m65_c00360{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m85_c00360{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m33_c00360{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m47_c00360{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.mc4_c00360{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.me8_c00360{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.mb0_c00360{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m4b_c00360{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.md8_c00360{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m28_c00360{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m50_c00360{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.mf8_c00360{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m24_c00360{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mbc_c00360{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mbf_c00360{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m1d_c00360{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m1b_c00360{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m6f_c00360{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m75_c00360{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.md5_c00360{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mc5_c00360{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m9_c00360{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mf3_c00360{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.mc2_c00360{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.ma3_c00360{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m9c_c00360{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m40_c00360{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mad_c00360{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m6_c00360{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.md2_c00360{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m63_c00360{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.meb_c00360{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mcc_c00360{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m2f_c00360{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.me2_c00360{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m6e_c00360{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);}
.m59_c00360{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m14_c00360{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m1e_c00360{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m92_c00360{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.mb1_c00360{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.mc9_c00360{transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);}
.md3_c00360{transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);}
.m6a_c00360{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.me0_c00360{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.mee_c00360{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mbb_c00360{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m3_c00360{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.me_c00360{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.md9_c00360{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);}
.mec_c00360{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mf2_c00360{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.m0_c00360{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m57_c00360{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m6c_c00360{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m89_c00360{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.m7e_c00360{transform:matrix(0.618776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618776,0.000000,0.000000,0.250000,0,0);}
.m83_c00360{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);}
.mef_c00360{transform:matrix(0.628824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628824,0.000000,0.000000,0.250000,0,0);}
.m3a_c00360{transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);}
.m49_c00360{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m17_c00360{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m5e_c00360{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m72_c00360{transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);}
.mcb_c00360{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m91_c00360{transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);}
.m61_c00360{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mb_c00360{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m71_c00360{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m79_c00360{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.md_c00360{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m5c_c00360{transform:matrix(0.724359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.724359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.724359,0.000000,0.000000,0.250000,0,0);}
.md6_c00360{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m76_c00360{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m74_c00360{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.ma_c00360{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m7_c00360{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.ma1_c00360{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m19_c00360{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m12_c00360{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m15_c00360{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mde_c00360{transform:matrix(0.778846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.778846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.778846,0.000000,0.000000,0.250000,0,0);}
.m32_c00360{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.me5_c00360{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.mc8_c00360{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.mf9_c00360{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m97_c00360{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
.fs7_c00360{font-size:3.420000px;}
.fs3_c00360{font-size:18.720000px;}
.fs0_c00360{font-size:20.400000px;}
.fs4_c00360{font-size:25.500000px;}
.fs1_c00360{font-size:28.920000px;}
.fs5_c00360{font-size:32.340000px;}
.fs2_c00360{font-size:35.700000px;}
.fs6_c00360{font-size:39.120000px;}
.y0_c00360{bottom:0.000000px;}
.yd1_c00360{bottom:253.245000px;}
.yd2_c00360{bottom:253.905000px;}
.yd0_c00360{bottom:254.130000px;}
.ycf_c00360{bottom:255.405000px;}
.yc9_c00360{bottom:271.905000px;}
.ycc_c00360{bottom:272.745000px;}
.yce_c00360{bottom:273.405000px;}
.yca_c00360{bottom:274.470000px;}
.ycb_c00360{bottom:274.905000px;}
.ycd_c00360{bottom:275.130000px;}
.yc3_c00360{bottom:292.245000px;}
.yc7_c00360{bottom:292.680000px;}
.yc8_c00360{bottom:293.325000px;}
.yc4_c00360{bottom:294.405000px;}
.yc6_c00360{bottom:294.630000px;}
.yc5_c00360{bottom:295.905000px;}
.yc2_c00360{bottom:311.745000px;}
.yc1_c00360{bottom:312.825000px;}
.ybc_c00360{bottom:313.245000px;}
.ybf_c00360{bottom:313.905000px;}
.ybe_c00360{bottom:314.130000px;}
.yc0_c00360{bottom:314.970000px;}
.ybd_c00360{bottom:315.405000px;}
.yba_c00360{bottom:332.745000px;}
.ybb_c00360{bottom:333.405000px;}
.yb7_c00360{bottom:333.630000px;}
.yb9_c00360{bottom:334.470000px;}
.yb8_c00360{bottom:334.905000px;}
.yb6_c00360{bottom:351.825000px;}
.yb4_c00360{bottom:352.245000px;}
.yb5_c00360{bottom:352.905000px;}
.yb2_c00360{bottom:353.130000px;}
.yb3_c00360{bottom:354.405000px;}
.yae_c00360{bottom:370.905000px;}
.yaf_c00360{bottom:371.745000px;}
.yb1_c00360{bottom:372.405000px;}
.yb0_c00360{bottom:372.630000px;}
.yac_c00360{bottom:373.905000px;}
.yad_c00360{bottom:375.420000px;}
.yaa_c00360{bottom:391.245000px;}
.ya9_c00360{bottom:392.325000px;}
.ya8_c00360{bottom:393.405000px;}
.ya7_c00360{bottom:393.630000px;}
.yab_c00360{bottom:394.470000px;}
.ya4_c00360{bottom:409.905000px;}
.ya6_c00360{bottom:410.745000px;}
.ya3_c00360{bottom:411.825000px;}
.ya5_c00360{bottom:412.470000px;}
.ya0_c00360{bottom:412.905000px;}
.ya1_c00360{bottom:413.130000px;}
.ya2_c00360{bottom:413.970000px;}
.y9b_c00360{bottom:430.470000px;}
.y9d_c00360{bottom:430.680000px;}
.y99_c00360{bottom:431.325000px;}
.y9a_c00360{bottom:431.745000px;}
.y9e_c00360{bottom:432.405000px;}
.y9f_c00360{bottom:432.630000px;}
.y9c_c00360{bottom:433.905000px;}
.y97_c00360{bottom:447.825000px;}
.y98_c00360{bottom:448.905000px;}
.y96_c00360{bottom:449.745000px;}
.y94_c00360{bottom:451.245000px;}
.y91_c00360{bottom:451.905000px;}
.y93_c00360{bottom:452.130000px;}
.y95_c00360{bottom:452.970000px;}
.y92_c00360{bottom:453.405000px;}
.y8f_c00360{bottom:469.245000px;}
.y8d_c00360{bottom:470.745000px;}
.y90_c00360{bottom:471.405000px;}
.y8e_c00360{bottom:471.630000px;}
.y8b_c00360{bottom:472.470000px;}
.y8a_c00360{bottom:472.905000px;}
.y8c_c00360{bottom:473.970000px;}
.y89_c00360{bottom:491.325000px;}
.y88_c00360{bottom:492.405000px;}
.y85_c00360{bottom:509.745000px;}
.y87_c00360{bottom:510.405000px;}
.y84_c00360{bottom:510.825000px;}
.y86_c00360{bottom:511.905000px;}
.y82_c00360{bottom:529.245000px;}
.y83_c00360{bottom:530.970000px;}
.y81_c00360{bottom:531.405000px;}
.y7f_c00360{bottom:547.245000px;}
.y7e_c00360{bottom:548.745000px;}
.y7c_c00360{bottom:550.245000px;}
.y80_c00360{bottom:550.905000px;}
.y7d_c00360{bottom:551.970000px;}
.y7a_c00360{bottom:552.405000px;}
.y7b_c00360{bottom:552.420000px;}
.y79_c00360{bottom:568.245000px;}
.y76_c00360{bottom:569.745000px;}
.y78_c00360{bottom:570.405000px;}
.y77_c00360{bottom:571.905000px;}
.y74_c00360{bottom:589.245000px;}
.y75_c00360{bottom:589.905000px;}
.y72_c00360{bottom:590.130000px;}
.y71_c00360{bottom:591.405000px;}
.y73_c00360{bottom:591.420000px;}
.y6f_c00360{bottom:607.905000px;}
.y6d_c00360{bottom:608.745000px;}
.y6e_c00360{bottom:609.825000px;}
.y70_c00360{bottom:610.905000px;}
.y69_c00360{bottom:628.245000px;}
.y6b_c00360{bottom:629.325000px;}
.y6c_c00360{bottom:630.405000px;}
.y6a_c00360{bottom:630.420000px;}
.y67_c00360{bottom:650.325000px;}
.y68_c00360{bottom:650.550000px;}
.y65_c00360{bottom:651.405000px;}
.y66_c00360{bottom:653.550000px;}
.y62_c00360{bottom:668.970000px;}
.y64_c00360{bottom:669.825000px;}
.y61_c00360{bottom:670.050000px;}
.y63_c00360{bottom:670.905000px;}
.y60_c00360{bottom:673.050000px;}
.y5e_c00360{bottom:692.325000px;}
.y5f_c00360{bottom:692.745000px;}
.y5d_c00360{bottom:718.905000px;}
.y5b_c00360{bottom:746.325000px;}
.y5c_c00360{bottom:746.745000px;}
.y5a_c00360{bottom:748.905000px;}
.y57_c00360{bottom:767.130000px;}
.y59_c00360{bottom:767.970000px;}
.y56_c00360{bottom:768.405000px;}
.y58_c00360{bottom:768.630000px;}
.y55_c00360{bottom:769.470000px;}
.y52_c00360{bottom:785.745000px;}
.y54_c00360{bottom:787.470000px;}
.y51_c00360{bottom:787.905000px;}
.y53_c00360{bottom:788.970000px;}
.y4f_c00360{bottom:804.825000px;}
.y4c_c00360{bottom:805.245000px;}
.y50_c00360{bottom:806.970000px;}
.y4d_c00360{bottom:807.405000px;}
.y4e_c00360{bottom:808.470000px;}
.y4a_c00360{bottom:824.745000px;}
.y49_c00360{bottom:826.905000px;}
.y4b_c00360{bottom:827.970000px;}
.y44_c00360{bottom:844.245000px;}
.y48_c00360{bottom:845.745000px;}
.y43_c00360{bottom:846.405000px;}
.y47_c00360{bottom:846.630000px;}
.y45_c00360{bottom:847.470000px;}
.y46_c00360{bottom:847.905000px;}
.y3f_c00360{bottom:862.905000px;}
.y42_c00360{bottom:863.745000px;}
.y40_c00360{bottom:863.970000px;}
.y41_c00360{bottom:866.130000px;}
.y3e_c00360{bottom:866.970000px;}
.y3d_c00360{bottom:867.405000px;}
.y36_c00360{bottom:884.745000px;}
.y3c_c00360{bottom:885.405000px;}
.y37_c00360{bottom:885.630000px;}
.y39_c00360{bottom:885.825000px;}
.y3a_c00360{bottom:886.470000px;}
.y38_c00360{bottom:886.905000px;}
.y3b_c00360{bottom:887.970000px;}
.y33_c00360{bottom:903.825000px;}
.y30_c00360{bottom:904.245000px;}
.y35_c00360{bottom:904.905000px;}
.y34_c00360{bottom:905.325000px;}
.y2f_c00360{bottom:905.970000px;}
.y32_c00360{bottom:906.405000px;}
.y31_c00360{bottom:907.470000px;}
.y2e_c00360{bottom:925.905000px;}
.y29_c00360{bottom:943.245000px;}
.y2a_c00360{bottom:944.325000px;}
.y2c_c00360{bottom:944.745000px;}
.y27_c00360{bottom:944.970000px;}
.y2d_c00360{bottom:945.405000px;}
.y28_c00360{bottom:945.630000px;}
.y2b_c00360{bottom:946.905000px;}
.y26_c00360{bottom:962.745000px;}
.y25_c00360{bottom:962.970000px;}
.y24_c00360{bottom:964.245000px;}
.y20_c00360{bottom:964.905000px;}
.y21_c00360{bottom:965.130000px;}
.y23_c00360{bottom:965.970000px;}
.y22_c00360{bottom:966.405000px;}
.y1e_c00360{bottom:984.405000px;}
.y1f_c00360{bottom:985.470000px;}
.y1c_c00360{bottom:1000.905000px;}
.y18_c00360{bottom:1001.745000px;}
.y1b_c00360{bottom:1002.180000px;}
.y19_c00360{bottom:1003.245000px;}
.y16_c00360{bottom:1003.905000px;}
.y17_c00360{bottom:1004.130000px;}
.y1d_c00360{bottom:1004.970000px;}
.y1a_c00360{bottom:1005.405000px;}
.y15_c00360{bottom:1020.825000px;}
.y11_c00360{bottom:1022.745000px;}
.y14_c00360{bottom:1023.405000px;}
.y13_c00360{bottom:1023.825000px;}
.y12_c00360{bottom:1024.470000px;}
.y10_c00360{bottom:1024.905000px;}
.yf_c00360{bottom:1040.745000px;}
.yb_c00360{bottom:1041.405000px;}
.y7_c00360{bottom:1041.825000px;}
.y8_c00360{bottom:1042.245000px;}
.ye_c00360{bottom:1042.905000px;}
.y9_c00360{bottom:1043.130000px;}
.yc_c00360{bottom:1044.405000px;}
.ya_c00360{bottom:1044.630000px;}
.yd_c00360{bottom:1045.470000px;}
.y3_c00360{bottom:1061.745000px;}
.y5_c00360{bottom:1062.630000px;}
.y4_c00360{bottom:1063.905000px;}
.y6_c00360{bottom:1064.970000px;}
.y2_c00360{bottom:1099.905000px;}
.y1_c00360{bottom:1102.050000px;}
.h8_c00360{height:4.206533px;}
.h4_c00360{height:23.025234px;}
.h1_c00360{height:25.091602px;}
.h5_c00360{height:31.364502px;}
.h2_c00360{height:35.571035px;}
.h6_c00360{height:39.777568px;}
.h3_c00360{height:43.910303px;}
.h7_c00360{height:48.116836px;}
.h0_c00360{height:1335.000000px;}
.w0_c00360{width:880.500000px;}
.x0_c00360{left:0.000000px;}
.x3_c00360{left:151.920000px;}
.xbd_c00360{left:153.420000px;}
.x34_c00360{left:166.500000px;}
.x86_c00360{left:168.000000px;}
.x25_c00360{left:169.500000px;}
.x41_c00360{left:174.000000px;}
.xca_c00360{left:175.920000px;}
.x8f_c00360{left:177.420000px;}
.x82_c00360{left:178.920000px;}
.x6f_c00360{left:180.855000px;}
.x26_c00360{left:182.355000px;}
.x65_c00360{left:186.000000px;}
.xe6_c00360{left:187.500000px;}
.x42_c00360{left:189.855000px;}
.x31_c00360{left:194.580000px;}
.xeb_c00360{left:197.145000px;}
.x35_c00360{left:199.500000px;}
.xcb_c00360{left:201.420000px;}
.xb8_c00360{left:204.420000px;}
.x90_c00360{left:205.500000px;}
.xbe_c00360{left:207.000000px;}
.xa0_c00360{left:208.920000px;}
.x1e_c00360{left:211.080000px;}
.x32_c00360{left:213.420000px;}
.x4_c00360{left:214.500000px;}
.x66_c00360{left:216.420000px;}
.x12_c00360{left:217.500000px;}
.x4c_c00360{left:225.000000px;}
.xde_c00360{left:226.500000px;}
.x7a_c00360{left:228.000000px;}
.x9a_c00360{left:229.500000px;}
.x5c_c00360{left:231.000000px;}
.x76_c00360{left:232.500000px;}
.xf9_c00360{left:235.920000px;}
.xd7_c00360{left:238.500000px;}
.x33_c00360{left:240.000000px;}
.x36_c00360{left:243.000000px;}
.x43_c00360{left:244.920000px;}
.x27_c00360{left:247.920000px;}
.xab_c00360{left:249.000000px;}
.xe1_c00360{left:252.000000px;}
.x5_c00360{left:253.920000px;}
.x4d_c00360{left:256.500000px;}
.x83_c00360{left:258.000000px;}
.xa6_c00360{left:259.500000px;}
.xb4_c00360{left:261.000000px;}
.x91_c00360{left:262.500000px;}
.xd4_c00360{left:264.420000px;}
.xc5_c00360{left:265.500000px;}
.xa1_c00360{left:267.000000px;}
.x55_c00360{left:268.080000px;}
.xe7_c00360{left:270.420000px;}
.xdf_c00360{left:271.500000px;}
.x5d_c00360{left:273.000000px;}
.x7b_c00360{left:274.500000px;}
.x6_c00360{left:279.420000px;}
.xd0_c00360{left:280.500000px;}
.x92_c00360{left:282.000000px;}
.x13_c00360{left:285.000000px;}
.x56_c00360{left:288.000000px;}
.x37_c00360{left:291.000000px;}
.x94_c00360{left:295.500000px;}
.x44_c00360{left:297.000000px;}
.x4e_c00360{left:298.080000px;}
.x28_c00360{left:300.000000px;}
.xec_c00360{left:304.500000px;}
.x87_c00360{left:307.080000px;}
.xd1_c00360{left:309.000000px;}
.x7_c00360{left:310.080000px;}
.x95_c00360{left:312.000000px;}
.xef_c00360{left:313.500000px;}
.x84_c00360{left:315.000000px;}
.x5e_c00360{left:316.920000px;}
.xac_c00360{left:322.080000px;}
.xf5_c00360{left:324.000000px;}
.xbf_c00360{left:325.500000px;}
.xc6_c00360{left:327.000000px;}
.x8_c00360{left:328.500000px;}
.x38_c00360{left:329.580000px;}
.x7c_c00360{left:332.580000px;}
.x29_c00360{left:334.500000px;}
.x77_c00360{left:335.580000px;}
.xcc_c00360{left:337.500000px;}
.x9_c00360{left:339.000000px;}
.x5f_c00360{left:342.000000px;}
.x70_c00360{left:343.080000px;}
.xe2_c00360{left:345.000000px;}
.xf0_c00360{left:346.500000px;}
.xad_c00360{left:349.080000px;}
.x96_c00360{left:351.420000px;}
.x4f_c00360{left:354.000000px;}
.x78_c00360{left:355.080000px;}
.xd5_c00360{left:356.580000px;}
.xa7_c00360{left:360.420000px;}
.xa2_c00360{left:361.500000px;}
.x57_c00360{left:363.000000px;}
.x7d_c00360{left:364.500000px;}
.x1f_c00360{left:365.580000px;}
.xb9_c00360{left:367.080000px;}
.x45_c00360{left:370.500000px;}
.xd6_c00360{left:371.580000px;}
.x67_c00360{left:373.920000px;}
.x71_c00360{left:375.000000px;}
.x88_c00360{left:378.000000px;}
.xb1_c00360{left:379.080000px;}
.x85_c00360{left:380.145000px;}
.xe0_c00360{left:382.080000px;}
.x7e_c00360{left:384.000000px;}
.x14_c00360{left:385.920000px;}
.x39_c00360{left:387.000000px;}
.x46_c00360{left:391.500000px;}
.x15_c00360{left:392.580000px;}
.xc0_c00360{left:394.080000px;}
.x58_c00360{left:399.420000px;}
.x1_c00360{left:400.500000px;}
.xa8_c00360{left:402.420000px;}
.xc7_c00360{left:406.500000px;}
.xf1_c00360{left:411.420000px;}
.x68_c00360{left:414.420000px;}
.x60_c00360{left:416.580000px;}
.x3a_c00360{left:418.920000px;}
.xcd_c00360{left:420.000000px;}
.x16_c00360{left:422.355000px;}
.xa_c00360{left:424.500000px;}
.x79_c00360{left:426.855000px;}
.x50_c00360{left:430.920000px;}
.x2a_c00360{left:432.000000px;}
.x69_c00360{left:435.000000px;}
.xba_c00360{left:439.920000px;}
.xd8_c00360{left:441.000000px;}
.xae_c00360{left:443.580000px;}
.x47_c00360{left:446.580000px;}
.xa3_c00360{left:448.080000px;}
.x72_c00360{left:450.000000px;}
.x7f_c00360{left:453.420000px;}
.xfa_c00360{left:454.500000px;}
.x51_c00360{left:457.080000px;}
.x9b_c00360{left:459.000000px;}
.x2b_c00360{left:462.000000px;}
.x48_c00360{left:463.500000px;}
.xa9_c00360{left:466.500000px;}
.xb2_c00360{left:467.580000px;}
.xce_c00360{left:469.080000px;}
.x73_c00360{left:470.580000px;}
.xd9_c00360{left:472.500000px;}
.xb_c00360{left:474.000000px;}
.x20_c00360{left:475.500000px;}
.x89_c00360{left:477.000000px;}
.x17_c00360{left:480.000000px;}
.x2c_c00360{left:481.920000px;}
.x93_c00360{left:484.080000px;}
.x3b_c00360{left:485.145000px;}
.x97_c00360{left:489.000000px;}
.xda_c00360{left:490.920000px;}
.xd2_c00360{left:492.000000px;}
.xc1_c00360{left:496.500000px;}
.xbb_c00360{left:499.500000px;}
.xc_c00360{left:500.580000px;}
.x61_c00360{left:502.920000px;}
.xfb_c00360{left:505.080000px;}
.x9c_c00360{left:507.000000px;}
.xa4_c00360{left:509.580000px;}
.x6a_c00360{left:514.500000px;}
.x80_c00360{left:515.580000px;}
.x18_c00360{left:517.080000px;}
.x8a_c00360{left:518.145000px;}
.xd_c00360{left:519.420000px;}
.xaf_c00360{left:520.500000px;}
.x21_c00360{left:522.420000px;}
.xed_c00360{left:523.500000px;}
.x98_c00360{left:525.000000px;}
.x2d_c00360{left:527.580000px;}
.xa5_c00360{left:529.080000px;}
.x49_c00360{left:532.080000px;}
.x81_c00360{left:535.920000px;}
.x9d_c00360{left:537.000000px;}
.xaa_c00360{left:539.580000px;}
.x3c_c00360{left:542.580000px;}
.xb5_c00360{left:544.080000px;}
.xd3_c00360{left:545.580000px;}
.x2e_c00360{left:547.920000px;}
.xf2_c00360{left:550.500000px;}
.xf6_c00360{left:551.580000px;}
.x6b_c00360{left:553.080000px;}
.xe_c00360{left:557.355000px;}
.xdb_c00360{left:559.500000px;}
.x52_c00360{left:562.920000px;}
.xe3_c00360{left:564.000000px;}
.xe8_c00360{left:567.000000px;}
.x59_c00360{left:569.580000px;}
.x99_c00360{left:571.080000px;}
.x2f_c00360{left:573.000000px;}
.xfc_c00360{left:577.500000px;}
.xc2_c00360{left:579.420000px;}
.x19_c00360{left:582.000000px;}
.x6c_c00360{left:583.080000px;}
.x74_c00360{left:586.920000px;}
.x9e_c00360{left:588.420000px;}
.x3d_c00360{left:589.500000px;}
.x8b_c00360{left:592.080000px;}
.xe5_c00360{left:594.000000px;}
.xe4_c00360{left:595.500000px;}
.x1a_c00360{left:601.080000px;}
.x9f_c00360{left:604.080000px;}
.x62_c00360{left:610.500000px;}
.xc8_c00360{left:611.580000px;}
.xf_c00360{left:613.500000px;}
.xb0_c00360{left:614.580000px;}
.xb6_c00360{left:616.500000px;}
.x3e_c00360{left:620.580000px;}
.x22_c00360{left:624.420000px;}
.x53_c00360{left:625.920000px;}
.x63_c00360{left:630.000000px;}
.x1b_c00360{left:631.500000px;}
.x8c_c00360{left:633.000000px;}
.xdc_c00360{left:634.500000px;}
.xc3_c00360{left:636.645000px;}
.x6d_c00360{left:639.420000px;}
.xf3_c00360{left:640.500000px;}
.xf7_c00360{left:641.580000px;}
.x10_c00360{left:643.500000px;}
.xcf_c00360{left:646.500000px;}
.xe9_c00360{left:648.420000px;}
.x4a_c00360{left:652.920000px;}
.x64_c00360{left:657.000000px;}
.x30_c00360{left:658.500000px;}
.x23_c00360{left:659.580000px;}
.x8d_c00360{left:661.080000px;}
.x6e_c00360{left:662.580000px;}
.x3f_c00360{left:664.080000px;}
.x1c_c00360{left:666.420000px;}
.x75_c00360{left:667.920000px;}
.x5a_c00360{left:669.000000px;}
.xf8_c00360{left:672.000000px;}
.xb3_c00360{left:673.500000px;}
.xea_c00360{left:674.580000px;}
.x11_c00360{left:676.080000px;}
.xbc_c00360{left:685.080000px;}
.xc9_c00360{left:687.000000px;}
.x54_c00360{left:688.500000px;}
.x24_c00360{left:691.920000px;}
.x1d_c00360{left:693.000000px;}
.x40_c00360{left:694.500000px;}
.x4b_c00360{left:696.420000px;}
.x8e_c00360{left:697.500000px;}
.xc4_c00360{left:702.000000px;}
.x2_c00360{left:703.080000px;}
.x5b_c00360{left:706.920000px;}
.xdd_c00360{left:708.420000px;}
.xee_c00360{left:712.500000px;}
.xf4_c00360{left:714.000000px;}
.xb7_c00360{left:718.500000px;}
@media print{
.v0_c00360{vertical-align:0.000000pt;}
.ls0_c00360{letter-spacing:0.000000pt;}
.ws0_c00360{word-spacing:0.000000pt;}
.fs7_c00360{font-size:3.040000pt;}
.fs3_c00360{font-size:16.640000pt;}
.fs0_c00360{font-size:18.133333pt;}
.fs4_c00360{font-size:22.666667pt;}
.fs1_c00360{font-size:25.706667pt;}
.fs5_c00360{font-size:28.746667pt;}
.fs2_c00360{font-size:31.733333pt;}
.fs6_c00360{font-size:34.773333pt;}
.y0_c00360{bottom:0.000000pt;}
.yd1_c00360{bottom:225.106667pt;}
.yd2_c00360{bottom:225.693333pt;}
.yd0_c00360{bottom:225.893333pt;}
.ycf_c00360{bottom:227.026667pt;}
.yc9_c00360{bottom:241.693333pt;}
.ycc_c00360{bottom:242.440000pt;}
.yce_c00360{bottom:243.026667pt;}
.yca_c00360{bottom:243.973333pt;}
.ycb_c00360{bottom:244.360000pt;}
.ycd_c00360{bottom:244.560000pt;}
.yc3_c00360{bottom:259.773333pt;}
.yc7_c00360{bottom:260.160000pt;}
.yc8_c00360{bottom:260.733333pt;}
.yc4_c00360{bottom:261.693333pt;}
.yc6_c00360{bottom:261.893333pt;}
.yc5_c00360{bottom:263.026667pt;}
.yc2_c00360{bottom:277.106667pt;}
.yc1_c00360{bottom:278.066667pt;}
.ybc_c00360{bottom:278.440000pt;}
.ybf_c00360{bottom:279.026667pt;}
.ybe_c00360{bottom:279.226667pt;}
.yc0_c00360{bottom:279.973333pt;}
.ybd_c00360{bottom:280.360000pt;}
.yba_c00360{bottom:295.773333pt;}
.ybb_c00360{bottom:296.360000pt;}
.yb7_c00360{bottom:296.560000pt;}
.yb9_c00360{bottom:297.306667pt;}
.yb8_c00360{bottom:297.693333pt;}
.yb6_c00360{bottom:312.733333pt;}
.yb4_c00360{bottom:313.106667pt;}
.yb5_c00360{bottom:313.693333pt;}
.yb2_c00360{bottom:313.893333pt;}
.yb3_c00360{bottom:315.026667pt;}
.yae_c00360{bottom:329.693333pt;}
.yaf_c00360{bottom:330.440000pt;}
.yb1_c00360{bottom:331.026667pt;}
.yb0_c00360{bottom:331.226667pt;}
.yac_c00360{bottom:332.360000pt;}
.yad_c00360{bottom:333.706667pt;}
.yaa_c00360{bottom:347.773333pt;}
.ya9_c00360{bottom:348.733333pt;}
.ya8_c00360{bottom:349.693333pt;}
.ya7_c00360{bottom:349.893333pt;}
.yab_c00360{bottom:350.640000pt;}
.ya4_c00360{bottom:364.360000pt;}
.ya6_c00360{bottom:365.106667pt;}
.ya3_c00360{bottom:366.066667pt;}
.ya5_c00360{bottom:366.640000pt;}
.ya0_c00360{bottom:367.026667pt;}
.ya1_c00360{bottom:367.226667pt;}
.ya2_c00360{bottom:367.973333pt;}
.y9b_c00360{bottom:382.640000pt;}
.y9d_c00360{bottom:382.826667pt;}
.y99_c00360{bottom:383.400000pt;}
.y9a_c00360{bottom:383.773333pt;}
.y9e_c00360{bottom:384.360000pt;}
.y9f_c00360{bottom:384.560000pt;}
.y9c_c00360{bottom:385.693333pt;}
.y97_c00360{bottom:398.066667pt;}
.y98_c00360{bottom:399.026667pt;}
.y96_c00360{bottom:399.773333pt;}
.y94_c00360{bottom:401.106667pt;}
.y91_c00360{bottom:401.693333pt;}
.y93_c00360{bottom:401.893333pt;}
.y95_c00360{bottom:402.640000pt;}
.y92_c00360{bottom:403.026667pt;}
.y8f_c00360{bottom:417.106667pt;}
.y8d_c00360{bottom:418.440000pt;}
.y90_c00360{bottom:419.026667pt;}
.y8e_c00360{bottom:419.226667pt;}
.y8b_c00360{bottom:419.973333pt;}
.y8a_c00360{bottom:420.360000pt;}
.y8c_c00360{bottom:421.306667pt;}
.y89_c00360{bottom:436.733333pt;}
.y88_c00360{bottom:437.693333pt;}
.y85_c00360{bottom:453.106667pt;}
.y87_c00360{bottom:453.693333pt;}
.y84_c00360{bottom:454.066667pt;}
.y86_c00360{bottom:455.026667pt;}
.y82_c00360{bottom:470.440000pt;}
.y83_c00360{bottom:471.973333pt;}
.y81_c00360{bottom:472.360000pt;}
.y7f_c00360{bottom:486.440000pt;}
.y7e_c00360{bottom:487.773333pt;}
.y7c_c00360{bottom:489.106667pt;}
.y80_c00360{bottom:489.693333pt;}
.y7d_c00360{bottom:490.640000pt;}
.y7a_c00360{bottom:491.026667pt;}
.y7b_c00360{bottom:491.040000pt;}
.y79_c00360{bottom:505.106667pt;}
.y76_c00360{bottom:506.440000pt;}
.y78_c00360{bottom:507.026667pt;}
.y77_c00360{bottom:508.360000pt;}
.y74_c00360{bottom:523.773333pt;}
.y75_c00360{bottom:524.360000pt;}
.y72_c00360{bottom:524.560000pt;}
.y71_c00360{bottom:525.693333pt;}
.y73_c00360{bottom:525.706667pt;}
.y6f_c00360{bottom:540.360000pt;}
.y6d_c00360{bottom:541.106667pt;}
.y6e_c00360{bottom:542.066667pt;}
.y70_c00360{bottom:543.026667pt;}
.y69_c00360{bottom:558.440000pt;}
.y6b_c00360{bottom:559.400000pt;}
.y6c_c00360{bottom:560.360000pt;}
.y6a_c00360{bottom:560.373333pt;}
.y67_c00360{bottom:578.066667pt;}
.y68_c00360{bottom:578.266667pt;}
.y65_c00360{bottom:579.026667pt;}
.y66_c00360{bottom:580.933333pt;}
.y62_c00360{bottom:594.640000pt;}
.y64_c00360{bottom:595.400000pt;}
.y61_c00360{bottom:595.600000pt;}
.y63_c00360{bottom:596.360000pt;}
.y60_c00360{bottom:598.266667pt;}
.y5e_c00360{bottom:615.400000pt;}
.y5f_c00360{bottom:615.773333pt;}
.y5d_c00360{bottom:639.026667pt;}
.y5b_c00360{bottom:663.400000pt;}
.y5c_c00360{bottom:663.773333pt;}
.y5a_c00360{bottom:665.693333pt;}
.y57_c00360{bottom:681.893333pt;}
.y59_c00360{bottom:682.640000pt;}
.y56_c00360{bottom:683.026667pt;}
.y58_c00360{bottom:683.226667pt;}
.y55_c00360{bottom:683.973333pt;}
.y52_c00360{bottom:698.440000pt;}
.y54_c00360{bottom:699.973333pt;}
.y51_c00360{bottom:700.360000pt;}
.y53_c00360{bottom:701.306667pt;}
.y4f_c00360{bottom:715.400000pt;}
.y4c_c00360{bottom:715.773333pt;}
.y50_c00360{bottom:717.306667pt;}
.y4d_c00360{bottom:717.693333pt;}
.y4e_c00360{bottom:718.640000pt;}
.y4a_c00360{bottom:733.106667pt;}
.y49_c00360{bottom:735.026667pt;}
.y4b_c00360{bottom:735.973333pt;}
.y44_c00360{bottom:750.440000pt;}
.y48_c00360{bottom:751.773333pt;}
.y43_c00360{bottom:752.360000pt;}
.y47_c00360{bottom:752.560000pt;}
.y45_c00360{bottom:753.306667pt;}
.y46_c00360{bottom:753.693333pt;}
.y3f_c00360{bottom:767.026667pt;}
.y42_c00360{bottom:767.773333pt;}
.y40_c00360{bottom:767.973333pt;}
.y41_c00360{bottom:769.893333pt;}
.y3e_c00360{bottom:770.640000pt;}
.y3d_c00360{bottom:771.026667pt;}
.y36_c00360{bottom:786.440000pt;}
.y3c_c00360{bottom:787.026667pt;}
.y37_c00360{bottom:787.226667pt;}
.y39_c00360{bottom:787.400000pt;}
.y3a_c00360{bottom:787.973333pt;}
.y38_c00360{bottom:788.360000pt;}
.y3b_c00360{bottom:789.306667pt;}
.y33_c00360{bottom:803.400000pt;}
.y30_c00360{bottom:803.773333pt;}
.y35_c00360{bottom:804.360000pt;}
.y34_c00360{bottom:804.733333pt;}
.y2f_c00360{bottom:805.306667pt;}
.y32_c00360{bottom:805.693333pt;}
.y31_c00360{bottom:806.640000pt;}
.y2e_c00360{bottom:823.026667pt;}
.y29_c00360{bottom:838.440000pt;}
.y2a_c00360{bottom:839.400000pt;}
.y2c_c00360{bottom:839.773333pt;}
.y27_c00360{bottom:839.973333pt;}
.y2d_c00360{bottom:840.360000pt;}
.y28_c00360{bottom:840.560000pt;}
.y2b_c00360{bottom:841.693333pt;}
.y26_c00360{bottom:855.773333pt;}
.y25_c00360{bottom:855.973333pt;}
.y24_c00360{bottom:857.106667pt;}
.y20_c00360{bottom:857.693333pt;}
.y21_c00360{bottom:857.893333pt;}
.y23_c00360{bottom:858.640000pt;}
.y22_c00360{bottom:859.026667pt;}
.y1e_c00360{bottom:875.026667pt;}
.y1f_c00360{bottom:875.973333pt;}
.y1c_c00360{bottom:889.693333pt;}
.y18_c00360{bottom:890.440000pt;}
.y1b_c00360{bottom:890.826667pt;}
.y19_c00360{bottom:891.773333pt;}
.y16_c00360{bottom:892.360000pt;}
.y17_c00360{bottom:892.560000pt;}
.y1d_c00360{bottom:893.306667pt;}
.y1a_c00360{bottom:893.693333pt;}
.y15_c00360{bottom:907.400000pt;}
.y11_c00360{bottom:909.106667pt;}
.y14_c00360{bottom:909.693333pt;}
.y13_c00360{bottom:910.066667pt;}
.y12_c00360{bottom:910.640000pt;}
.y10_c00360{bottom:911.026667pt;}
.yf_c00360{bottom:925.106667pt;}
.yb_c00360{bottom:925.693333pt;}
.y7_c00360{bottom:926.066667pt;}
.y8_c00360{bottom:926.440000pt;}
.ye_c00360{bottom:927.026667pt;}
.y9_c00360{bottom:927.226667pt;}
.yc_c00360{bottom:928.360000pt;}
.ya_c00360{bottom:928.560000pt;}
.yd_c00360{bottom:929.306667pt;}
.y3_c00360{bottom:943.773333pt;}
.y5_c00360{bottom:944.560000pt;}
.y4_c00360{bottom:945.693333pt;}
.y6_c00360{bottom:946.640000pt;}
.y2_c00360{bottom:977.693333pt;}
.y1_c00360{bottom:979.600000pt;}
.h8_c00360{height:3.739141pt;}
.h4_c00360{height:20.466875pt;}
.h1_c00360{height:22.303646pt;}
.h5_c00360{height:27.879557pt;}
.h2_c00360{height:31.618698pt;}
.h6_c00360{height:35.357839pt;}
.h3_c00360{height:39.031380pt;}
.h7_c00360{height:42.770521pt;}
.h0_c00360{height:1186.666667pt;}
.w0_c00360{width:782.666667pt;}
.x0_c00360{left:0.000000pt;}
.x3_c00360{left:135.040000pt;}
.xbd_c00360{left:136.373333pt;}
.x34_c00360{left:148.000000pt;}
.x86_c00360{left:149.333333pt;}
.x25_c00360{left:150.666667pt;}
.x41_c00360{left:154.666667pt;}
.xca_c00360{left:156.373333pt;}
.x8f_c00360{left:157.706667pt;}
.x82_c00360{left:159.040000pt;}
.x6f_c00360{left:160.760000pt;}
.x26_c00360{left:162.093333pt;}
.x65_c00360{left:165.333333pt;}
.xe6_c00360{left:166.666667pt;}
.x42_c00360{left:168.760000pt;}
.x31_c00360{left:172.960000pt;}
.xeb_c00360{left:175.240000pt;}
.x35_c00360{left:177.333333pt;}
.xcb_c00360{left:179.040000pt;}
.xb8_c00360{left:181.706667pt;}
.x90_c00360{left:182.666667pt;}
.xbe_c00360{left:184.000000pt;}
.xa0_c00360{left:185.706667pt;}
.x1e_c00360{left:187.626667pt;}
.x32_c00360{left:189.706667pt;}
.x4_c00360{left:190.666667pt;}
.x66_c00360{left:192.373333pt;}
.x12_c00360{left:193.333333pt;}
.x4c_c00360{left:200.000000pt;}
.xde_c00360{left:201.333333pt;}
.x7a_c00360{left:202.666667pt;}
.x9a_c00360{left:204.000000pt;}
.x5c_c00360{left:205.333333pt;}
.x76_c00360{left:206.666667pt;}
.xf9_c00360{left:209.706667pt;}
.xd7_c00360{left:212.000000pt;}
.x33_c00360{left:213.333333pt;}
.x36_c00360{left:216.000000pt;}
.x43_c00360{left:217.706667pt;}
.x27_c00360{left:220.373333pt;}
.xab_c00360{left:221.333333pt;}
.xe1_c00360{left:224.000000pt;}
.x5_c00360{left:225.706667pt;}
.x4d_c00360{left:228.000000pt;}
.x83_c00360{left:229.333333pt;}
.xa6_c00360{left:230.666667pt;}
.xb4_c00360{left:232.000000pt;}
.x91_c00360{left:233.333333pt;}
.xd4_c00360{left:235.040000pt;}
.xc5_c00360{left:236.000000pt;}
.xa1_c00360{left:237.333333pt;}
.x55_c00360{left:238.293333pt;}
.xe7_c00360{left:240.373333pt;}
.xdf_c00360{left:241.333333pt;}
.x5d_c00360{left:242.666667pt;}
.x7b_c00360{left:244.000000pt;}
.x6_c00360{left:248.373333pt;}
.xd0_c00360{left:249.333333pt;}
.x92_c00360{left:250.666667pt;}
.x13_c00360{left:253.333333pt;}
.x56_c00360{left:256.000000pt;}
.x37_c00360{left:258.666667pt;}
.x94_c00360{left:262.666667pt;}
.x44_c00360{left:264.000000pt;}
.x4e_c00360{left:264.960000pt;}
.x28_c00360{left:266.666667pt;}
.xec_c00360{left:270.666667pt;}
.x87_c00360{left:272.960000pt;}
.xd1_c00360{left:274.666667pt;}
.x7_c00360{left:275.626667pt;}
.x95_c00360{left:277.333333pt;}
.xef_c00360{left:278.666667pt;}
.x84_c00360{left:280.000000pt;}
.x5e_c00360{left:281.706667pt;}
.xac_c00360{left:286.293333pt;}
.xf5_c00360{left:288.000000pt;}
.xbf_c00360{left:289.333333pt;}
.xc6_c00360{left:290.666667pt;}
.x8_c00360{left:292.000000pt;}
.x38_c00360{left:292.960000pt;}
.x7c_c00360{left:295.626667pt;}
.x29_c00360{left:297.333333pt;}
.x77_c00360{left:298.293333pt;}
.xcc_c00360{left:300.000000pt;}
.x9_c00360{left:301.333333pt;}
.x5f_c00360{left:304.000000pt;}
.x70_c00360{left:304.960000pt;}
.xe2_c00360{left:306.666667pt;}
.xf0_c00360{left:308.000000pt;}
.xad_c00360{left:310.293333pt;}
.x96_c00360{left:312.373333pt;}
.x4f_c00360{left:314.666667pt;}
.x78_c00360{left:315.626667pt;}
.xd5_c00360{left:316.960000pt;}
.xa7_c00360{left:320.373333pt;}
.xa2_c00360{left:321.333333pt;}
.x57_c00360{left:322.666667pt;}
.x7d_c00360{left:324.000000pt;}
.x1f_c00360{left:324.960000pt;}
.xb9_c00360{left:326.293333pt;}
.x45_c00360{left:329.333333pt;}
.xd6_c00360{left:330.293333pt;}
.x67_c00360{left:332.373333pt;}
.x71_c00360{left:333.333333pt;}
.x88_c00360{left:336.000000pt;}
.xb1_c00360{left:336.960000pt;}
.x85_c00360{left:337.906667pt;}
.xe0_c00360{left:339.626667pt;}
.x7e_c00360{left:341.333333pt;}
.x14_c00360{left:343.040000pt;}
.x39_c00360{left:344.000000pt;}
.x46_c00360{left:348.000000pt;}
.x15_c00360{left:348.960000pt;}
.xc0_c00360{left:350.293333pt;}
.x58_c00360{left:355.040000pt;}
.x1_c00360{left:356.000000pt;}
.xa8_c00360{left:357.706667pt;}
.xc7_c00360{left:361.333333pt;}
.xf1_c00360{left:365.706667pt;}
.x68_c00360{left:368.373333pt;}
.x60_c00360{left:370.293333pt;}
.x3a_c00360{left:372.373333pt;}
.xcd_c00360{left:373.333333pt;}
.x16_c00360{left:375.426667pt;}
.xa_c00360{left:377.333333pt;}
.x79_c00360{left:379.426667pt;}
.x50_c00360{left:383.040000pt;}
.x2a_c00360{left:384.000000pt;}
.x69_c00360{left:386.666667pt;}
.xba_c00360{left:391.040000pt;}
.xd8_c00360{left:392.000000pt;}
.xae_c00360{left:394.293333pt;}
.x47_c00360{left:396.960000pt;}
.xa3_c00360{left:398.293333pt;}
.x72_c00360{left:400.000000pt;}
.x7f_c00360{left:403.040000pt;}
.xfa_c00360{left:404.000000pt;}
.x51_c00360{left:406.293333pt;}
.x9b_c00360{left:408.000000pt;}
.x2b_c00360{left:410.666667pt;}
.x48_c00360{left:412.000000pt;}
.xa9_c00360{left:414.666667pt;}
.xb2_c00360{left:415.626667pt;}
.xce_c00360{left:416.960000pt;}
.x73_c00360{left:418.293333pt;}
.xd9_c00360{left:420.000000pt;}
.xb_c00360{left:421.333333pt;}
.x20_c00360{left:422.666667pt;}
.x89_c00360{left:424.000000pt;}
.x17_c00360{left:426.666667pt;}
.x2c_c00360{left:428.373333pt;}
.x93_c00360{left:430.293333pt;}
.x3b_c00360{left:431.240000pt;}
.x97_c00360{left:434.666667pt;}
.xda_c00360{left:436.373333pt;}
.xd2_c00360{left:437.333333pt;}
.xc1_c00360{left:441.333333pt;}
.xbb_c00360{left:444.000000pt;}
.xc_c00360{left:444.960000pt;}
.x61_c00360{left:447.040000pt;}
.xfb_c00360{left:448.960000pt;}
.x9c_c00360{left:450.666667pt;}
.xa4_c00360{left:452.960000pt;}
.x6a_c00360{left:457.333333pt;}
.x80_c00360{left:458.293333pt;}
.x18_c00360{left:459.626667pt;}
.x8a_c00360{left:460.573333pt;}
.xd_c00360{left:461.706667pt;}
.xaf_c00360{left:462.666667pt;}
.x21_c00360{left:464.373333pt;}
.xed_c00360{left:465.333333pt;}
.x98_c00360{left:466.666667pt;}
.x2d_c00360{left:468.960000pt;}
.xa5_c00360{left:470.293333pt;}
.x49_c00360{left:472.960000pt;}
.x81_c00360{left:476.373333pt;}
.x9d_c00360{left:477.333333pt;}
.xaa_c00360{left:479.626667pt;}
.x3c_c00360{left:482.293333pt;}
.xb5_c00360{left:483.626667pt;}
.xd3_c00360{left:484.960000pt;}
.x2e_c00360{left:487.040000pt;}
.xf2_c00360{left:489.333333pt;}
.xf6_c00360{left:490.293333pt;}
.x6b_c00360{left:491.626667pt;}
.xe_c00360{left:495.426667pt;}
.xdb_c00360{left:497.333333pt;}
.x52_c00360{left:500.373333pt;}
.xe3_c00360{left:501.333333pt;}
.xe8_c00360{left:504.000000pt;}
.x59_c00360{left:506.293333pt;}
.x99_c00360{left:507.626667pt;}
.x2f_c00360{left:509.333333pt;}
.xfc_c00360{left:513.333333pt;}
.xc2_c00360{left:515.040000pt;}
.x19_c00360{left:517.333333pt;}
.x6c_c00360{left:518.293333pt;}
.x74_c00360{left:521.706667pt;}
.x9e_c00360{left:523.040000pt;}
.x3d_c00360{left:524.000000pt;}
.x8b_c00360{left:526.293333pt;}
.xe5_c00360{left:528.000000pt;}
.xe4_c00360{left:529.333333pt;}
.x1a_c00360{left:534.293333pt;}
.x9f_c00360{left:536.960000pt;}
.x62_c00360{left:542.666667pt;}
.xc8_c00360{left:543.626667pt;}
.xf_c00360{left:545.333333pt;}
.xb0_c00360{left:546.293333pt;}
.xb6_c00360{left:548.000000pt;}
.x3e_c00360{left:551.626667pt;}
.x22_c00360{left:555.040000pt;}
.x53_c00360{left:556.373333pt;}
.x63_c00360{left:560.000000pt;}
.x1b_c00360{left:561.333333pt;}
.x8c_c00360{left:562.666667pt;}
.xdc_c00360{left:564.000000pt;}
.xc3_c00360{left:565.906667pt;}
.x6d_c00360{left:568.373333pt;}
.xf3_c00360{left:569.333333pt;}
.xf7_c00360{left:570.293333pt;}
.x10_c00360{left:572.000000pt;}
.xcf_c00360{left:574.666667pt;}
.xe9_c00360{left:576.373333pt;}
.x4a_c00360{left:580.373333pt;}
.x64_c00360{left:584.000000pt;}
.x30_c00360{left:585.333333pt;}
.x23_c00360{left:586.293333pt;}
.x8d_c00360{left:587.626667pt;}
.x6e_c00360{left:588.960000pt;}
.x3f_c00360{left:590.293333pt;}
.x1c_c00360{left:592.373333pt;}
.x75_c00360{left:593.706667pt;}
.x5a_c00360{left:594.666667pt;}
.xf8_c00360{left:597.333333pt;}
.xb3_c00360{left:598.666667pt;}
.xea_c00360{left:599.626667pt;}
.x11_c00360{left:600.960000pt;}
.xbc_c00360{left:608.960000pt;}
.xc9_c00360{left:610.666667pt;}
.x54_c00360{left:612.000000pt;}
.x24_c00360{left:615.040000pt;}
.x1d_c00360{left:616.000000pt;}
.x40_c00360{left:617.333333pt;}
.x4b_c00360{left:619.040000pt;}
.x8e_c00360{left:620.000000pt;}
.xc4_c00360{left:624.000000pt;}
.x2_c00360{left:624.960000pt;}
.x5b_c00360{left:628.373333pt;}
.xdd_c00360{left:629.706667pt;}
.xee_c00360{left:633.333333pt;}
.xf4_c00360{left:634.666667pt;}
.xb7_c00360{left:638.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_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_4363e3c5c12e331c0d43ca5c.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m97_c00361{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m94_c00361{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.md_c00361{transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);}
.med_c00361{transform:matrix(0.332599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332599,0.000000,0.000000,0.250000,0,0);}
.m49_c00361{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m9c_c00361{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.mb1_c00361{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.m4_c00361{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mbf_c00361{transform:matrix(0.370994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370994,0.000000,0.000000,0.250000,0,0);}
.m9a_c00361{transform:matrix(0.372699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372699,0.000000,0.000000,0.250000,0,0);}
.maf_c00361{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.ma3_c00361{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m4a_c00361{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m3b_c00361{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.mb3_c00361{transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);}
.m42_c00361{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.mcb_c00361{transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);}
.m70_c00361{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m6_c00361{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m1c_c00361{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);}
.m7a_c00361{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m34_c00361{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mb6_c00361{transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);}
.m81_c00361{transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);}
.m55_c00361{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m9b_c00361{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m73_c00361{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m53_c00361{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m4c_c00361{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m9d_c00361{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.me1_c00361{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.md7_c00361{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m5b_c00361{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m82_c00361{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m30_c00361{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mb7_c00361{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.m45_c00361{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m6d_c00361{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.md4_c00361{transform:matrix(0.421324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421324,0.000000,0.000000,0.250000,0,0);}
.m2d_c00361{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m7d_c00361{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.md5_c00361{transform:matrix(0.422794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422794,0.000000,0.000000,0.250000,0,0);}
.m31_c00361{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mbd_c00361{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m7_c00361{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mdd_c00361{transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);}
.m61_c00361{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m7b_c00361{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m11_c00361{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m78_c00361{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.m9f_c00361{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m80_c00361{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mc0_c00361{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.ma_c00361{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.mc3_c00361{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_c00361{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m23_c00361{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m83_c00361{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.mca_c00361{transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);}
.m88_c00361{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m21_c00361{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m5c_c00361{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m8e_c00361{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m6f_c00361{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m51_c00361{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m2e_c00361{transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);}
.m43_c00361{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m3d_c00361{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.ma4_c00361{transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);}
.m6e_c00361{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m79_c00361{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m67_c00361{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mb2_c00361{transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);}
.mc7_c00361{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m57_c00361{transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);}
.m74_c00361{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m8b_c00361{transform:matrix(0.463445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463445,0.000000,0.000000,0.250000,0,0);}
.mda_c00361{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.mec_c00361{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.mf0_c00361{transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467147,0.000000,0.000000,0.250000,0,0);}
.mee_c00361{transform:matrix(0.470353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470353,0.000000,0.000000,0.250000,0,0);}
.m6b_c00361{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m90_c00361{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m46_c00361{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m95_c00361{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m86_c00361{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m1b_c00361{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m54_c00361{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m1e_c00361{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.me6_c00361{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m72_c00361{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m2b_c00361{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m26_c00361{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m1_c00361{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m1f_c00361{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m2f_c00361{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m18_c00361{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_c00361{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m63_c00361{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m58_c00361{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.mea_c00361{transform:matrix(0.509615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509615,0.000000,0.000000,0.250000,0,0);}
.ma2_c00361{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m24_c00361{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m64_c00361{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m22_c00361{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m89_c00361{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m7c_c00361{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m6a_c00361{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m84_c00361{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m19_c00361{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m4e_c00361{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mb0_c00361{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.ma0_c00361{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m5a_c00361{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m25_c00361{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m59_c00361{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mb_c00361{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mba_c00361{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.ma5_c00361{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m66_c00361{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m14_c00361{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m98_c00361{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mbc_c00361{transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);}
.m69_c00361{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m3_c00361{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mf5_c00361{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.mcd_c00361{transform:matrix(0.533088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533088,0.000000,0.000000,0.250000,0,0);}
.m52_c00361{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m7e_c00361{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m12_c00361{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m15_c00361{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m35_c00361{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m39_c00361{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m9_c00361{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m71_c00361{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m5f_c00361{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m68_c00361{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m36_c00361{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m37_c00361{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.mce_c00361{transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);}
.m5_c00361{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m4b_c00361{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m60_c00361{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.m29_c00361{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.md8_c00361{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m85_c00361{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mb4_c00361{transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);}
.m91_c00361{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mbb_c00361{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.ma1_c00361{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m87_c00361{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m8_c00361{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m3e_c00361{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m5d_c00361{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mab_c00361{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m47_c00361{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m3c_c00361{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.md3_c00361{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m8c_c00361{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m3a_c00361{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.m92_c00361{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mdf_c00361{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m1d_c00361{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m50_c00361{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.me2_c00361{transform:matrix(0.568109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568109,0.000000,0.000000,0.250000,0,0);}
.mb9_c00361{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m5e_c00361{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_c00361{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m44_c00361{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m13_c00361{transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);}
.m1a_c00361{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mb5_c00361{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m10_c00361{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m48_c00361{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.m40_c00361{transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);}
.mc8_c00361{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.md2_c00361{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.mad_c00361{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.maa_c00361{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.ma6_c00361{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.m9e_c00361{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m4d_c00361{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m33_c00361{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.m16_c00361{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mb8_c00361{transform:matrix(0.598529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598529,0.000000,0.000000,0.250000,0,0);}
.m8d_c00361{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.ma8_c00361{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m75_c00361{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mc1_c00361{transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);}
.mf_c00361{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m0_c00361{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.md0_c00361{transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);}
.mc2_c00361{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m28_c00361{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m2c_c00361{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.mbe_c00361{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.mae_c00361{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m77_c00361{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.mac_c00361{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mde_c00361{transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);}
.me0_c00361{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m8f_c00361{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m3f_c00361{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mf3_c00361{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.md6_c00361{transform:matrix(0.649780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649780,0.000000,0.000000,0.250000,0,0);}
.mc4_c00361{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.mc5_c00361{transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);}
.m41_c00361{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mc9_c00361{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m4f_c00361{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.me9_c00361{transform:matrix(0.667929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667929,0.000000,0.000000,0.250000,0,0);}
.ma9_c00361{transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);}
.mf1_c00361{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.mc6_c00361{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m93_c00361{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m20_c00361{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mdb_c00361{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.me7_c00361{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m32_c00361{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.me3_c00361{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m65_c00361{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.me4_c00361{transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);}
.me5_c00361{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.m56_c00361{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.mf4_c00361{transform:matrix(0.727974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727974,0.000000,0.000000,0.250000,0,0);}
.m38_c00361{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mef_c00361{transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);}
.ma7_c00361{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.me8_c00361{transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);}
.md1_c00361{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.me_c00361{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m17_c00361{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.md9_c00361{transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);}
.m6c_c00361{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m8a_c00361{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m7f_c00361{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.meb_c00361{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m76_c00361{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mdc_c00361{transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);}
.m2a_c00361{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.mc_c00361{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m99_c00361{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.mf2_c00361{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mcf_c00361{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.mcc_c00361{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m62_c00361{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00361{vertical-align:0.000000px;}
.v1_c00361{vertical-align:6.000000px;}
.ls0_c00361{letter-spacing:0.000000px;}
.sc__c00361{text-shadow:none;}
.sc0_c00361{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00361{-webkit-text-stroke:0px transparent;}
.sc0_c00361{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00361{word-spacing:-7.142680px;}
.ws18_c00361{word-spacing:0.000000px;}
.ws5_c00361{word-spacing:13.306168px;}
.wsb_c00361{word-spacing:19.620812px;}
.ws15_c00361{word-spacing:23.728109px;}
.ws16_c00361{word-spacing:23.767013px;}
.wsa_c00361{word-spacing:25.629635px;}
.ws10_c00361{word-spacing:25.883172px;}
.wsd_c00361{word-spacing:27.632576px;}
.ws13_c00361{word-spacing:29.395112px;}
.ws3_c00361{word-spacing:30.111231px;}
.ws12_c00361{word-spacing:30.193299px;}
.wse_c00361{word-spacing:33.638400px;}
.wsf_c00361{word-spacing:36.638400px;}
.ws7_c00361{word-spacing:36.864950px;}
.ws17_c00361{word-spacing:37.460577px;}
.ws2_c00361{word-spacing:39.116190px;}
.ws11_c00361{word-spacing:39.933737px;}
.ws9_c00361{word-spacing:42.638400px;}
.ws4_c00361{word-spacing:49.077217px;}
.ws8_c00361{word-spacing:49.633219px;}
.ws1_c00361{word-spacing:49.953969px;}
.ws6_c00361{word-spacing:54.347539px;}
.ws14_c00361{word-spacing:59.541565px;}
.wsc_c00361{word-spacing:181.428000px;}
._7_c00361{width:31.682189px;}
._5_c00361{width:33.837252px;}
._6_c00361{width:35.586656px;}
._4_c00361{width:38.065311px;}
._3_c00361{width:51.359972px;}
._0_c00361{width:53.542665px;}
._1_c00361{width:55.725357px;}
._2_c00361{width:60.090742px;}
.fc0_c00361{color:transparent;}
.fs7_c00361{font-size:3.420000px;}
.fs9_c00361{font-size:11.880000px;}
.fs8_c00361{font-size:13.620000px;}
.fs3_c00361{font-size:18.720000px;}
.fs0_c00361{font-size:20.400000px;}
.fs4_c00361{font-size:25.500000px;}
.fs1_c00361{font-size:28.920000px;}
.fs5_c00361{font-size:32.340000px;}
.fs2_c00361{font-size:35.700000px;}
.fs6_c00361{font-size:39.120000px;}
.y0_c00361{bottom:0.000000px;}
.yb3_c00361{bottom:257.130000px;}
.yb4_c00361{bottom:258.195000px;}
.yb5_c00361{bottom:258.630000px;}
.yb0_c00361{bottom:270.630000px;}
.yb1_c00361{bottom:271.695000px;}
.yb2_c00361{bottom:273.195000px;}
.yae_c00361{bottom:283.695000px;}
.yad_c00361{bottom:284.775000px;}
.yaf_c00361{bottom:285.630000px;}
.yac_c00361{bottom:286.695000px;}
.yaa_c00361{bottom:298.695000px;}
.ya8_c00361{bottom:299.130000px;}
.ya9_c00361{bottom:300.195000px;}
.yab_c00361{bottom:300.630000px;}
.ya5_c00361{bottom:312.195000px;}
.ya3_c00361{bottom:312.630000px;}
.ya6_c00361{bottom:313.275000px;}
.ya4_c00361{bottom:313.695000px;}
.ya7_c00361{bottom:315.195000px;}
.ya2_c00361{bottom:319.695000px;}
.ya0_c00361{bottom:327.195000px;}
.ya1_c00361{bottom:328.695000px;}
.y9e_c00361{bottom:341.130000px;}
.y9f_c00361{bottom:342.195000px;}
.y9a_c00361{bottom:354.630000px;}
.y9c_c00361{bottom:355.695000px;}
.y9b_c00361{bottom:356.130000px;}
.y9d_c00361{bottom:357.195000px;}
.y96_c00361{bottom:368.550000px;}
.y99_c00361{bottom:369.195000px;}
.y97_c00361{bottom:369.630000px;}
.y98_c00361{bottom:370.695000px;}
.y95_c00361{bottom:382.695000px;}
.y94_c00361{bottom:383.130000px;}
.y93_c00361{bottom:384.195000px;}
.y8f_c00361{bottom:395.550000px;}
.y90_c00361{bottom:396.630000px;}
.y91_c00361{bottom:397.695000px;}
.y92_c00361{bottom:397.920000px;}
.y8c_c00361{bottom:424.050000px;}
.y8d_c00361{bottom:426.195000px;}
.y8e_c00361{bottom:426.420000px;}
.y8a_c00361{bottom:438.195000px;}
.y89_c00361{bottom:438.630000px;}
.y88_c00361{bottom:439.695000px;}
.y8b_c00361{bottom:439.920000px;}
.y86_c00361{bottom:452.130000px;}
.y85_c00361{bottom:453.195000px;}
.y87_c00361{bottom:453.420000px;}
.y83_c00361{bottom:465.630000px;}
.y82_c00361{bottom:466.695000px;}
.y84_c00361{bottom:466.920000px;}
.y80_c00361{bottom:467.130000px;}
.y81_c00361{bottom:468.195000px;}
.y7e_c00361{bottom:479.130000px;}
.y7a_c00361{bottom:479.550000px;}
.y7d_c00361{bottom:480.195000px;}
.y7b_c00361{bottom:480.630000px;}
.y7c_c00361{bottom:481.695000px;}
.y7f_c00361{bottom:481.920000px;}
.y78_c00361{bottom:494.130000px;}
.y77_c00361{bottom:495.195000px;}
.y79_c00361{bottom:495.420000px;}
.y76_c00361{bottom:512.130000px;}
.y75_c00361{bottom:513.195000px;}
.y73_c00361{bottom:525.630000px;}
.y74_c00361{bottom:526.695000px;}
.y71_c00361{bottom:527.130000px;}
.y72_c00361{bottom:528.195000px;}
.y6e_c00361{bottom:555.825000px;}
.y6f_c00361{bottom:556.050000px;}
.y70_c00361{bottom:556.905000px;}
.y6d_c00361{bottom:557.970000px;}
.y6b_c00361{bottom:570.825000px;}
.y6c_c00361{bottom:571.905000px;}
.y6a_c00361{bottom:572.970000px;}
.y69_c00361{bottom:574.050000px;}
.y68_c00361{bottom:590.550000px;}
.y67_c00361{bottom:593.550000px;}
.y62_c00361{bottom:626.745000px;}
.y65_c00361{bottom:626.970000px;}
.y63_c00361{bottom:628.245000px;}
.y66_c00361{bottom:629.970000px;}
.y64_c00361{bottom:630.405000px;}
.y61_c00361{bottom:645.405000px;}
.y5b_c00361{bottom:646.245000px;}
.y5f_c00361{bottom:647.325000px;}
.y5e_c00361{bottom:647.745000px;}
.y5c_c00361{bottom:648.405000px;}
.y60_c00361{bottom:648.630000px;}
.y5d_c00361{bottom:649.905000px;}
.y5a_c00361{bottom:666.180000px;}
.y58_c00361{bottom:667.245000px;}
.y59_c00361{bottom:668.130000px;}
.y56_c00361{bottom:669.405000px;}
.y57_c00361{bottom:670.470000px;}
.y55_c00361{bottom:688.905000px;}
.y54_c00361{bottom:706.245000px;}
.y52_c00361{bottom:708.405000px;}
.y53_c00361{bottom:709.470000px;}
.y51_c00361{bottom:725.745000px;}
.y4f_c00361{bottom:726.825000px;}
.y4e_c00361{bottom:727.905000px;}
.y50_c00361{bottom:728.130000px;}
.y4d_c00361{bottom:745.245000px;}
.y4b_c00361{bottom:747.405000px;}
.y4c_c00361{bottom:747.630000px;}
.y49_c00361{bottom:766.245000px;}
.y4a_c00361{bottom:767.130000px;}
.y48_c00361{bottom:767.325000px;}
.y46_c00361{bottom:768.405000px;}
.y47_c00361{bottom:769.470000px;}
.y41_c00361{bottom:785.745000px;}
.y44_c00361{bottom:786.630000px;}
.y43_c00361{bottom:786.825000px;}
.y45_c00361{bottom:787.470000px;}
.y42_c00361{bottom:787.905000px;}
.y3e_c00361{bottom:804.825000px;}
.y3d_c00361{bottom:805.245000px;}
.y3f_c00361{bottom:806.130000px;}
.y40_c00361{bottom:806.325000px;}
.y3c_c00361{bottom:807.405000px;}
.y39_c00361{bottom:824.745000px;}
.y3b_c00361{bottom:826.905000px;}
.y3a_c00361{bottom:826.920000px;}
.y38_c00361{bottom:844.470000px;}
.y36_c00361{bottom:845.745000px;}
.y34_c00361{bottom:846.405000px;}
.y37_c00361{bottom:846.825000px;}
.y35_c00361{bottom:847.905000px;}
.y33_c00361{bottom:862.905000px;}
.y31_c00361{bottom:865.245000px;}
.y2e_c00361{bottom:865.905000px;}
.y32_c00361{bottom:866.130000px;}
.y2f_c00361{bottom:866.325000px;}
.y2d_c00361{bottom:866.970000px;}
.y30_c00361{bottom:867.405000px;}
.y2c_c00361{bottom:883.680000px;}
.y2a_c00361{bottom:884.745000px;}
.y28_c00361{bottom:885.405000px;}
.y2b_c00361{bottom:885.825000px;}
.y29_c00361{bottom:886.905000px;}
.y26_c00361{bottom:904.245000px;}
.y25_c00361{bottom:905.130000px;}
.y27_c00361{bottom:905.970000px;}
.y24_c00361{bottom:906.405000px;}
.y22_c00361{bottom:923.745000px;}
.y21_c00361{bottom:924.630000px;}
.y20_c00361{bottom:925.905000px;}
.y23_c00361{bottom:926.970000px;}
.y1c_c00361{bottom:943.245000px;}
.y1f_c00361{bottom:944.970000px;}
.y1e_c00361{bottom:945.405000px;}
.y1d_c00361{bottom:945.630000px;}
.y1b_c00361{bottom:962.745000px;}
.y19_c00361{bottom:964.905000px;}
.y1a_c00361{bottom:965.130000px;}
.y18_c00361{bottom:965.970000px;}
.y13_c00361{bottom:981.405000px;}
.y16_c00361{bottom:983.970000px;}
.y15_c00361{bottom:984.405000px;}
.y14_c00361{bottom:984.630000px;}
.y17_c00361{bottom:985.470000px;}
.y11_c00361{bottom:1001.745000px;}
.y12_c00361{bottom:1003.905000px;}
.y10_c00361{bottom:1022.325000px;}
.yf_c00361{bottom:1022.745000px;}
.yb_c00361{bottom:1023.405000px;}
.yc_c00361{bottom:1023.630000px;}
.yd_c00361{bottom:1024.470000px;}
.ye_c00361{bottom:1024.905000px;}
.y8_c00361{bottom:1042.245000px;}
.ya_c00361{bottom:1042.905000px;}
.y6_c00361{bottom:1043.130000px;}
.y7_c00361{bottom:1043.970000px;}
.y9_c00361{bottom:1044.405000px;}
.y4_c00361{bottom:1061.745000px;}
.y5_c00361{bottom:1062.630000px;}
.y3_c00361{bottom:1063.905000px;}
.y2_c00361{bottom:1099.905000px;}
.y1_c00361{bottom:1102.050000px;}
.h9_c00361{height:4.206533px;}
.hb_c00361{height:14.612168px;}
.ha_c00361{height:16.752334px;}
.h4_c00361{height:23.025234px;}
.h1_c00361{height:25.091602px;}
.h5_c00361{height:31.364502px;}
.h2_c00361{height:35.571035px;}
.h7_c00361{height:39.777568px;}
.h6_c00361{height:41.571035px;}
.h3_c00361{height:43.910303px;}
.h8_c00361{height:48.116836px;}
.h0_c00361{height:1335.000000px;}
.w0_c00361{width:880.500000px;}
.x0_c00361{left:0.000000px;}
.xe8_c00361{left:146.580000px;}
.xc7_c00361{left:148.500000px;}
.x2_c00361{left:151.080000px;}
.x47_c00361{left:152.580000px;}
.x5a_c00361{left:168.420000px;}
.x6e_c00361{left:170.580000px;}
.x3_c00361{left:172.920000px;}
.xd2_c00361{left:175.500000px;}
.x1a_c00361{left:180.000000px;}
.xde_c00361{left:181.080000px;}
.xa0_c00361{left:183.000000px;}
.xa2_c00361{left:184.920000px;}
.xcd_c00361{left:188.580000px;}
.xe_c00361{left:192.000000px;}
.x92_c00361{left:193.920000px;}
.x5b_c00361{left:195.420000px;}
.x75_c00361{left:196.500000px;}
.xaf_c00361{left:198.420000px;}
.x4_c00361{left:199.500000px;}
.xe6_c00361{left:202.920000px;}
.x3e_c00361{left:205.500000px;}
.xe4_c00361{left:207.420000px;}
.x65_c00361{left:208.920000px;}
.xbf_c00361{left:210.420000px;}
.xd3_c00361{left:211.500000px;}
.x1b_c00361{left:214.500000px;}
.x29_c00361{left:216.420000px;}
.xa7_c00361{left:219.420000px;}
.xd6_c00361{left:220.500000px;}
.x48_c00361{left:222.000000px;}
.x6f_c00361{left:223.920000px;}
.x33_c00361{left:226.500000px;}
.xb0_c00361{left:227.580000px;}
.xf_c00361{left:229.080000px;}
.x9b_c00361{left:231.000000px;}
.xea_c00361{left:234.420000px;}
.x66_c00361{left:235.500000px;}
.xc0_c00361{left:237.000000px;}
.x76_c00361{left:241.920000px;}
.x49_c00361{left:247.920000px;}
.x82_c00361{left:249.000000px;}
.x1c_c00361{left:250.080000px;}
.x5_c00361{left:252.420000px;}
.x79_c00361{left:255.000000px;}
.x88_c00361{left:259.500000px;}
.x5c_c00361{left:261.420000px;}
.x52_c00361{left:262.500000px;}
.x10_c00361{left:266.580000px;}
.x1d_c00361{left:268.920000px;}
.x3f_c00361{left:270.420000px;}
.xc1_c00361{left:271.500000px;}
.x83_c00361{left:273.000000px;}
.x9c_c00361{left:274.500000px;}
.x4a_c00361{left:275.580000px;}
.x93_c00361{left:277.500000px;}
.x34_c00361{left:279.000000px;}
.x5d_c00361{left:280.920000px;}
.x2a_c00361{left:282.000000px;}
.xe7_c00361{left:283.500000px;}
.xa8_c00361{left:285.000000px;}
.xb1_c00361{left:286.500000px;}
.x6_c00361{left:290.580000px;}
.x89_c00361{left:295.920000px;}
.x84_c00361{left:297.420000px;}
.x1e_c00361{left:300.000000px;}
.x5e_c00361{left:304.920000px;}
.x40_c00361{left:307.500000px;}
.x7a_c00361{left:308.580000px;}
.x4b_c00361{left:310.080000px;}
.x35_c00361{left:316.080000px;}
.xe0_c00361{left:319.500000px;}
.xc8_c00361{left:321.420000px;}
.xce_c00361{left:324.000000px;}
.xd4_c00361{left:325.500000px;}
.x94_c00361{left:328.920000px;}
.x11_c00361{left:330.420000px;}
.xa3_c00361{left:331.920000px;}
.x8a_c00361{left:333.000000px;}
.x2b_c00361{left:336.000000px;}
.x1f_c00361{left:337.500000px;}
.x77_c00361{left:343.500000px;}
.x53_c00361{left:348.000000px;}
.x67_c00361{left:351.000000px;}
.x4c_c00361{left:352.080000px;}
.x20_c00361{left:354.420000px;}
.x36_c00361{left:356.580000px;}
.x41_c00361{left:359.580000px;}
.x7_c00361{left:362.580000px;}
.xe3_c00361{left:364.500000px;}
.x2c_c00361{left:365.580000px;}
.x12_c00361{left:367.080000px;}
.xa9_c00361{left:369.000000px;}
.x54_c00361{left:370.920000px;}
.xd7_c00361{left:373.500000px;}
.xdc_c00361{left:375.000000px;}
.x37_c00361{left:378.000000px;}
.x7b_c00361{left:379.500000px;}
.x21_c00361{left:381.000000px;}
.x4d_c00361{left:384.645000px;}
.x8b_c00361{left:387.420000px;}
.xb6_c00361{left:388.920000px;}
.x68_c00361{left:392.145000px;}
.x70_c00361{left:396.000000px;}
.xaa_c00361{left:400.500000px;}
.x1_c00361{left:403.500000px;}
.x2d_c00361{left:405.000000px;}
.x38_c00361{left:406.080000px;}
.xa4_c00361{left:408.000000px;}
.xe1_c00361{left:409.500000px;}
.xbd_c00361{left:411.000000px;}
.xc9_c00361{left:412.500000px;}
.x8c_c00361{left:414.420000px;}
.xcf_c00361{left:415.500000px;}
.xb7_c00361{left:418.080000px;}
.x22_c00361{left:420.420000px;}
.x95_c00361{left:421.920000px;}
.x7c_c00361{left:424.500000px;}
.x5f_c00361{left:430.500000px;}
.x69_c00361{left:431.580000px;}
.x85_c00361{left:433.920000px;}
.x13_c00361{left:438.000000px;}
.x55_c00361{left:446.580000px;}
.x8_c00361{left:448.080000px;}
.xbe_c00361{left:456.420000px;}
.xb2_c00361{left:457.500000px;}
.x2e_c00361{left:458.580000px;}
.xd0_c00361{left:460.500000px;}
.xb8_c00361{left:462.420000px;}
.x86_c00361{left:465.000000px;}
.xc2_c00361{left:469.080000px;}
.xab_c00361{left:471.000000px;}
.x14_c00361{left:473.580000px;}
.x23_c00361{left:475.500000px;}
.x39_c00361{left:477.645000px;}
.x9_c00361{left:480.000000px;}
.x7d_c00361{left:484.080000px;}
.xc3_c00361{left:486.000000px;}
.xac_c00361{left:487.500000px;}
.x42_c00361{left:490.500000px;}
.x15_c00361{left:492.420000px;}
.x60_c00361{left:494.580000px;}
.xe2_c00361{left:496.500000px;}
.x4e_c00361{left:498.420000px;}
.x56_c00361{left:499.500000px;}
.xd5_c00361{left:501.000000px;}
.xb3_c00361{left:502.500000px;}
.x7e_c00361{left:504.420000px;}
.xd8_c00361{left:505.500000px;}
.xdd_c00361{left:507.000000px;}
.x6a_c00361{left:508.500000px;}
.x96_c00361{left:512.580000px;}
.xb9_c00361{left:515.580000px;}
.x8d_c00361{left:517.500000px;}
.x16_c00361{left:518.580000px;}
.x71_c00361{left:522.000000px;}
.x3a_c00361{left:523.500000px;}
.x4f_c00361{left:528.000000px;}
.x7f_c00361{left:531.000000px;}
.x78_c00361{left:532.500000px;}
.x43_c00361{left:535.920000px;}
.xba_c00361{left:537.000000px;}
.xad_c00361{left:539.580000px;}
.x2f_c00361{left:541.920000px;}
.x8e_c00361{left:543.420000px;}
.x87_c00361{left:544.500000px;}
.xd1_c00361{left:546.000000px;}
.x24_c00361{left:547.500000px;}
.x6b_c00361{left:549.420000px;}
.xd9_c00361{left:550.500000px;}
.x61_c00361{left:558.420000px;}
.x97_c00361{left:561.000000px;}
.x44_c00361{left:562.500000px;}
.x50_c00361{left:565.080000px;}
.xc5_c00361{left:568.500000px;}
.x3b_c00361{left:570.000000px;}
.xa1_c00361{left:571.920000px;}
.x98_c00361{left:580.080000px;}
.x25_c00361{left:581.580000px;}
.xdf_c00361{left:583.500000px;}
.xa5_c00361{left:585.420000px;}
.x72_c00361{left:586.500000px;}
.x17_c00361{left:588.645000px;}
.x9d_c00361{left:590.580000px;}
.x62_c00361{left:595.920000px;}
.x26_c00361{left:599.580000px;}
.x6c_c00361{left:601.500000px;}
.x80_c00361{left:607.080000px;}
.xc6_c00361{left:608.580000px;}
.x3c_c00361{left:612.000000px;}
.xb4_c00361{left:613.500000px;}
.xbb_c00361{left:614.580000px;}
.xa_c00361{left:619.080000px;}
.x63_c00361{left:623.580000px;}
.x81_c00361{left:625.080000px;}
.x30_c00361{left:626.580000px;}
.xe5_c00361{left:628.920000px;}
.x45_c00361{left:630.645000px;}
.xe9_c00361{left:633.000000px;}
.x57_c00361{left:634.080000px;}
.xc4_c00361{left:635.580000px;}
.x18_c00361{left:637.500000px;}
.xb_c00361{left:642.420000px;}
.x73_c00361{left:645.000000px;}
.x99_c00361{left:646.500000px;}
.x8f_c00361{left:648.000000px;}
.x58_c00361{left:654.420000px;}
.x64_c00361{left:655.500000px;}
.xb5_c00361{left:661.920000px;}
.x6d_c00361{left:663.000000px;}
.xc_c00361{left:666.000000px;}
.xca_c00361{left:667.500000px;}
.xae_c00361{left:669.000000px;}
.x27_c00361{left:670.500000px;}
.x9e_c00361{left:672.000000px;}
.x46_c00361{left:673.080000px;}
.x51_c00361{left:675.000000px;}
.xda_c00361{left:676.500000px;}
.x9a_c00361{left:677.580000px;}
.x59_c00361{left:682.500000px;}
.x90_c00361{left:684.000000px;}
.x31_c00361{left:686.580000px;}
.x9f_c00361{left:688.920000px;}
.xd_c00361{left:690.000000px;}
.x74_c00361{left:691.920000px;}
.x3d_c00361{left:696.000000px;}
.x19_c00361{left:700.920000px;}
.xa6_c00361{left:703.080000px;}
.x32_c00361{left:708.420000px;}
.xcb_c00361{left:712.500000px;}
.xbc_c00361{left:714.000000px;}
.x91_c00361{left:715.500000px;}
.x28_c00361{left:718.500000px;}
.xcc_c00361{left:721.500000px;}
.xdb_c00361{left:723.000000px;}
@media print{
.v0_c00361{vertical-align:0.000000pt;}
.v1_c00361{vertical-align:5.333333pt;}
.ls0_c00361{letter-spacing:0.000000pt;}
.ws0_c00361{word-spacing:-6.349049pt;}
.ws18_c00361{word-spacing:0.000000pt;}
.ws5_c00361{word-spacing:11.827705pt;}
.wsb_c00361{word-spacing:17.440722pt;}
.ws15_c00361{word-spacing:21.091652pt;}
.ws16_c00361{word-spacing:21.126233pt;}
.wsa_c00361{word-spacing:22.781898pt;}
.ws10_c00361{word-spacing:23.007264pt;}
.wsd_c00361{word-spacing:24.562290pt;}
.ws13_c00361{word-spacing:26.128988pt;}
.ws3_c00361{word-spacing:26.765539pt;}
.ws12_c00361{word-spacing:26.838488pt;}
.wse_c00361{word-spacing:29.900800pt;}
.wsf_c00361{word-spacing:32.567467pt;}
.ws7_c00361{word-spacing:32.768845pt;}
.ws17_c00361{word-spacing:33.298290pt;}
.ws2_c00361{word-spacing:34.769946pt;}
.ws11_c00361{word-spacing:35.496655pt;}
.ws9_c00361{word-spacing:37.900800pt;}
.ws4_c00361{word-spacing:43.624193pt;}
.ws8_c00361{word-spacing:44.118417pt;}
.ws1_c00361{word-spacing:44.403528pt;}
.ws6_c00361{word-spacing:48.308923pt;}
.ws14_c00361{word-spacing:52.925836pt;}
.wsc_c00361{word-spacing:161.269333pt;}
._7_c00361{width:28.161946pt;}
._5_c00361{width:30.077557pt;}
._6_c00361{width:31.632584pt;}
._4_c00361{width:33.835832pt;}
._3_c00361{width:45.653309pt;}
._0_c00361{width:47.593480pt;}
._1_c00361{width:49.533651pt;}
._2_c00361{width:53.413992pt;}
.fs7_c00361{font-size:3.040000pt;}
.fs9_c00361{font-size:10.560000pt;}
.fs8_c00361{font-size:12.106667pt;}
.fs3_c00361{font-size:16.640000pt;}
.fs0_c00361{font-size:18.133333pt;}
.fs4_c00361{font-size:22.666667pt;}
.fs1_c00361{font-size:25.706667pt;}
.fs5_c00361{font-size:28.746667pt;}
.fs2_c00361{font-size:31.733333pt;}
.fs6_c00361{font-size:34.773333pt;}
.y0_c00361{bottom:0.000000pt;}
.yb3_c00361{bottom:228.560000pt;}
.yb4_c00361{bottom:229.506667pt;}
.yb5_c00361{bottom:229.893333pt;}
.yb0_c00361{bottom:240.560000pt;}
.yb1_c00361{bottom:241.506667pt;}
.yb2_c00361{bottom:242.840000pt;}
.yae_c00361{bottom:252.173333pt;}
.yad_c00361{bottom:253.133333pt;}
.yaf_c00361{bottom:253.893333pt;}
.yac_c00361{bottom:254.840000pt;}
.yaa_c00361{bottom:265.506667pt;}
.ya8_c00361{bottom:265.893333pt;}
.ya9_c00361{bottom:266.840000pt;}
.yab_c00361{bottom:267.226667pt;}
.ya5_c00361{bottom:277.506667pt;}
.ya3_c00361{bottom:277.893333pt;}
.ya6_c00361{bottom:278.466667pt;}
.ya4_c00361{bottom:278.840000pt;}
.ya7_c00361{bottom:280.173333pt;}
.ya2_c00361{bottom:284.173333pt;}
.ya0_c00361{bottom:290.840000pt;}
.ya1_c00361{bottom:292.173333pt;}
.y9e_c00361{bottom:303.226667pt;}
.y9f_c00361{bottom:304.173333pt;}
.y9a_c00361{bottom:315.226667pt;}
.y9c_c00361{bottom:316.173333pt;}
.y9b_c00361{bottom:316.560000pt;}
.y9d_c00361{bottom:317.506667pt;}
.y96_c00361{bottom:327.600000pt;}
.y99_c00361{bottom:328.173333pt;}
.y97_c00361{bottom:328.560000pt;}
.y98_c00361{bottom:329.506667pt;}
.y95_c00361{bottom:340.173333pt;}
.y94_c00361{bottom:340.560000pt;}
.y93_c00361{bottom:341.506667pt;}
.y8f_c00361{bottom:351.600000pt;}
.y90_c00361{bottom:352.560000pt;}
.y91_c00361{bottom:353.506667pt;}
.y92_c00361{bottom:353.706667pt;}
.y8c_c00361{bottom:376.933333pt;}
.y8d_c00361{bottom:378.840000pt;}
.y8e_c00361{bottom:379.040000pt;}
.y8a_c00361{bottom:389.506667pt;}
.y89_c00361{bottom:389.893333pt;}
.y88_c00361{bottom:390.840000pt;}
.y8b_c00361{bottom:391.040000pt;}
.y86_c00361{bottom:401.893333pt;}
.y85_c00361{bottom:402.840000pt;}
.y87_c00361{bottom:403.040000pt;}
.y83_c00361{bottom:413.893333pt;}
.y82_c00361{bottom:414.840000pt;}
.y84_c00361{bottom:415.040000pt;}
.y80_c00361{bottom:415.226667pt;}
.y81_c00361{bottom:416.173333pt;}
.y7e_c00361{bottom:425.893333pt;}
.y7a_c00361{bottom:426.266667pt;}
.y7d_c00361{bottom:426.840000pt;}
.y7b_c00361{bottom:427.226667pt;}
.y7c_c00361{bottom:428.173333pt;}
.y7f_c00361{bottom:428.373333pt;}
.y78_c00361{bottom:439.226667pt;}
.y77_c00361{bottom:440.173333pt;}
.y79_c00361{bottom:440.373333pt;}
.y76_c00361{bottom:455.226667pt;}
.y75_c00361{bottom:456.173333pt;}
.y73_c00361{bottom:467.226667pt;}
.y74_c00361{bottom:468.173333pt;}
.y71_c00361{bottom:468.560000pt;}
.y72_c00361{bottom:469.506667pt;}
.y6e_c00361{bottom:494.066667pt;}
.y6f_c00361{bottom:494.266667pt;}
.y70_c00361{bottom:495.026667pt;}
.y6d_c00361{bottom:495.973333pt;}
.y6b_c00361{bottom:507.400000pt;}
.y6c_c00361{bottom:508.360000pt;}
.y6a_c00361{bottom:509.306667pt;}
.y69_c00361{bottom:510.266667pt;}
.y68_c00361{bottom:524.933333pt;}
.y67_c00361{bottom:527.600000pt;}
.y62_c00361{bottom:557.106667pt;}
.y65_c00361{bottom:557.306667pt;}
.y63_c00361{bottom:558.440000pt;}
.y66_c00361{bottom:559.973333pt;}
.y64_c00361{bottom:560.360000pt;}
.y61_c00361{bottom:573.693333pt;}
.y5b_c00361{bottom:574.440000pt;}
.y5f_c00361{bottom:575.400000pt;}
.y5e_c00361{bottom:575.773333pt;}
.y5c_c00361{bottom:576.360000pt;}
.y60_c00361{bottom:576.560000pt;}
.y5d_c00361{bottom:577.693333pt;}
.y5a_c00361{bottom:592.160000pt;}
.y58_c00361{bottom:593.106667pt;}
.y59_c00361{bottom:593.893333pt;}
.y56_c00361{bottom:595.026667pt;}
.y57_c00361{bottom:595.973333pt;}
.y55_c00361{bottom:612.360000pt;}
.y54_c00361{bottom:627.773333pt;}
.y52_c00361{bottom:629.693333pt;}
.y53_c00361{bottom:630.640000pt;}
.y51_c00361{bottom:645.106667pt;}
.y4f_c00361{bottom:646.066667pt;}
.y4e_c00361{bottom:647.026667pt;}
.y50_c00361{bottom:647.226667pt;}
.y4d_c00361{bottom:662.440000pt;}
.y4b_c00361{bottom:664.360000pt;}
.y4c_c00361{bottom:664.560000pt;}
.y49_c00361{bottom:681.106667pt;}
.y4a_c00361{bottom:681.893333pt;}
.y48_c00361{bottom:682.066667pt;}
.y46_c00361{bottom:683.026667pt;}
.y47_c00361{bottom:683.973333pt;}
.y41_c00361{bottom:698.440000pt;}
.y44_c00361{bottom:699.226667pt;}
.y43_c00361{bottom:699.400000pt;}
.y45_c00361{bottom:699.973333pt;}
.y42_c00361{bottom:700.360000pt;}
.y3e_c00361{bottom:715.400000pt;}
.y3d_c00361{bottom:715.773333pt;}
.y3f_c00361{bottom:716.560000pt;}
.y40_c00361{bottom:716.733333pt;}
.y3c_c00361{bottom:717.693333pt;}
.y39_c00361{bottom:733.106667pt;}
.y3b_c00361{bottom:735.026667pt;}
.y3a_c00361{bottom:735.040000pt;}
.y38_c00361{bottom:750.640000pt;}
.y36_c00361{bottom:751.773333pt;}
.y34_c00361{bottom:752.360000pt;}
.y37_c00361{bottom:752.733333pt;}
.y35_c00361{bottom:753.693333pt;}
.y33_c00361{bottom:767.026667pt;}
.y31_c00361{bottom:769.106667pt;}
.y2e_c00361{bottom:769.693333pt;}
.y32_c00361{bottom:769.893333pt;}
.y2f_c00361{bottom:770.066667pt;}
.y2d_c00361{bottom:770.640000pt;}
.y30_c00361{bottom:771.026667pt;}
.y2c_c00361{bottom:785.493333pt;}
.y2a_c00361{bottom:786.440000pt;}
.y28_c00361{bottom:787.026667pt;}
.y2b_c00361{bottom:787.400000pt;}
.y29_c00361{bottom:788.360000pt;}
.y26_c00361{bottom:803.773333pt;}
.y25_c00361{bottom:804.560000pt;}
.y27_c00361{bottom:805.306667pt;}
.y24_c00361{bottom:805.693333pt;}
.y22_c00361{bottom:821.106667pt;}
.y21_c00361{bottom:821.893333pt;}
.y20_c00361{bottom:823.026667pt;}
.y23_c00361{bottom:823.973333pt;}
.y1c_c00361{bottom:838.440000pt;}
.y1f_c00361{bottom:839.973333pt;}
.y1e_c00361{bottom:840.360000pt;}
.y1d_c00361{bottom:840.560000pt;}
.y1b_c00361{bottom:855.773333pt;}
.y19_c00361{bottom:857.693333pt;}
.y1a_c00361{bottom:857.893333pt;}
.y18_c00361{bottom:858.640000pt;}
.y13_c00361{bottom:872.360000pt;}
.y16_c00361{bottom:874.640000pt;}
.y15_c00361{bottom:875.026667pt;}
.y14_c00361{bottom:875.226667pt;}
.y17_c00361{bottom:875.973333pt;}
.y11_c00361{bottom:890.440000pt;}
.y12_c00361{bottom:892.360000pt;}
.y10_c00361{bottom:908.733333pt;}
.yf_c00361{bottom:909.106667pt;}
.yb_c00361{bottom:909.693333pt;}
.yc_c00361{bottom:909.893333pt;}
.yd_c00361{bottom:910.640000pt;}
.ye_c00361{bottom:911.026667pt;}
.y8_c00361{bottom:926.440000pt;}
.ya_c00361{bottom:927.026667pt;}
.y6_c00361{bottom:927.226667pt;}
.y7_c00361{bottom:927.973333pt;}
.y9_c00361{bottom:928.360000pt;}
.y4_c00361{bottom:943.773333pt;}
.y5_c00361{bottom:944.560000pt;}
.y3_c00361{bottom:945.693333pt;}
.y2_c00361{bottom:977.693333pt;}
.y1_c00361{bottom:979.600000pt;}
.h9_c00361{height:3.739141pt;}
.hb_c00361{height:12.988594pt;}
.ha_c00361{height:14.890964pt;}
.h4_c00361{height:20.466875pt;}
.h1_c00361{height:22.303646pt;}
.h5_c00361{height:27.879557pt;}
.h2_c00361{height:31.618698pt;}
.h7_c00361{height:35.357839pt;}
.h6_c00361{height:36.952031pt;}
.h3_c00361{height:39.031380pt;}
.h8_c00361{height:42.770521pt;}
.h0_c00361{height:1186.666667pt;}
.w0_c00361{width:782.666667pt;}
.x0_c00361{left:0.000000pt;}
.xe8_c00361{left:130.293333pt;}
.xc7_c00361{left:132.000000pt;}
.x2_c00361{left:134.293333pt;}
.x47_c00361{left:135.626667pt;}
.x5a_c00361{left:149.706667pt;}
.x6e_c00361{left:151.626667pt;}
.x3_c00361{left:153.706667pt;}
.xd2_c00361{left:156.000000pt;}
.x1a_c00361{left:160.000000pt;}
.xde_c00361{left:160.960000pt;}
.xa0_c00361{left:162.666667pt;}
.xa2_c00361{left:164.373333pt;}
.xcd_c00361{left:167.626667pt;}
.xe_c00361{left:170.666667pt;}
.x92_c00361{left:172.373333pt;}
.x5b_c00361{left:173.706667pt;}
.x75_c00361{left:174.666667pt;}
.xaf_c00361{left:176.373333pt;}
.x4_c00361{left:177.333333pt;}
.xe6_c00361{left:180.373333pt;}
.x3e_c00361{left:182.666667pt;}
.xe4_c00361{left:184.373333pt;}
.x65_c00361{left:185.706667pt;}
.xbf_c00361{left:187.040000pt;}
.xd3_c00361{left:188.000000pt;}
.x1b_c00361{left:190.666667pt;}
.x29_c00361{left:192.373333pt;}
.xa7_c00361{left:195.040000pt;}
.xd6_c00361{left:196.000000pt;}
.x48_c00361{left:197.333333pt;}
.x6f_c00361{left:199.040000pt;}
.x33_c00361{left:201.333333pt;}
.xb0_c00361{left:202.293333pt;}
.xf_c00361{left:203.626667pt;}
.x9b_c00361{left:205.333333pt;}
.xea_c00361{left:208.373333pt;}
.x66_c00361{left:209.333333pt;}
.xc0_c00361{left:210.666667pt;}
.x76_c00361{left:215.040000pt;}
.x49_c00361{left:220.373333pt;}
.x82_c00361{left:221.333333pt;}
.x1c_c00361{left:222.293333pt;}
.x5_c00361{left:224.373333pt;}
.x79_c00361{left:226.666667pt;}
.x88_c00361{left:230.666667pt;}
.x5c_c00361{left:232.373333pt;}
.x52_c00361{left:233.333333pt;}
.x10_c00361{left:236.960000pt;}
.x1d_c00361{left:239.040000pt;}
.x3f_c00361{left:240.373333pt;}
.xc1_c00361{left:241.333333pt;}
.x83_c00361{left:242.666667pt;}
.x9c_c00361{left:244.000000pt;}
.x4a_c00361{left:244.960000pt;}
.x93_c00361{left:246.666667pt;}
.x34_c00361{left:248.000000pt;}
.x5d_c00361{left:249.706667pt;}
.x2a_c00361{left:250.666667pt;}
.xe7_c00361{left:252.000000pt;}
.xa8_c00361{left:253.333333pt;}
.xb1_c00361{left:254.666667pt;}
.x6_c00361{left:258.293333pt;}
.x89_c00361{left:263.040000pt;}
.x84_c00361{left:264.373333pt;}
.x1e_c00361{left:266.666667pt;}
.x5e_c00361{left:271.040000pt;}
.x40_c00361{left:273.333333pt;}
.x7a_c00361{left:274.293333pt;}
.x4b_c00361{left:275.626667pt;}
.x35_c00361{left:280.960000pt;}
.xe0_c00361{left:284.000000pt;}
.xc8_c00361{left:285.706667pt;}
.xce_c00361{left:288.000000pt;}
.xd4_c00361{left:289.333333pt;}
.x94_c00361{left:292.373333pt;}
.x11_c00361{left:293.706667pt;}
.xa3_c00361{left:295.040000pt;}
.x8a_c00361{left:296.000000pt;}
.x2b_c00361{left:298.666667pt;}
.x1f_c00361{left:300.000000pt;}
.x77_c00361{left:305.333333pt;}
.x53_c00361{left:309.333333pt;}
.x67_c00361{left:312.000000pt;}
.x4c_c00361{left:312.960000pt;}
.x20_c00361{left:315.040000pt;}
.x36_c00361{left:316.960000pt;}
.x41_c00361{left:319.626667pt;}
.x7_c00361{left:322.293333pt;}
.xe3_c00361{left:324.000000pt;}
.x2c_c00361{left:324.960000pt;}
.x12_c00361{left:326.293333pt;}
.xa9_c00361{left:328.000000pt;}
.x54_c00361{left:329.706667pt;}
.xd7_c00361{left:332.000000pt;}
.xdc_c00361{left:333.333333pt;}
.x37_c00361{left:336.000000pt;}
.x7b_c00361{left:337.333333pt;}
.x21_c00361{left:338.666667pt;}
.x4d_c00361{left:341.906667pt;}
.x8b_c00361{left:344.373333pt;}
.xb6_c00361{left:345.706667pt;}
.x68_c00361{left:348.573333pt;}
.x70_c00361{left:352.000000pt;}
.xaa_c00361{left:356.000000pt;}
.x1_c00361{left:358.666667pt;}
.x2d_c00361{left:360.000000pt;}
.x38_c00361{left:360.960000pt;}
.xa4_c00361{left:362.666667pt;}
.xe1_c00361{left:364.000000pt;}
.xbd_c00361{left:365.333333pt;}
.xc9_c00361{left:366.666667pt;}
.x8c_c00361{left:368.373333pt;}
.xcf_c00361{left:369.333333pt;}
.xb7_c00361{left:371.626667pt;}
.x22_c00361{left:373.706667pt;}
.x95_c00361{left:375.040000pt;}
.x7c_c00361{left:377.333333pt;}
.x5f_c00361{left:382.666667pt;}
.x69_c00361{left:383.626667pt;}
.x85_c00361{left:385.706667pt;}
.x13_c00361{left:389.333333pt;}
.x55_c00361{left:396.960000pt;}
.x8_c00361{left:398.293333pt;}
.xbe_c00361{left:405.706667pt;}
.xb2_c00361{left:406.666667pt;}
.x2e_c00361{left:407.626667pt;}
.xd0_c00361{left:409.333333pt;}
.xb8_c00361{left:411.040000pt;}
.x86_c00361{left:413.333333pt;}
.xc2_c00361{left:416.960000pt;}
.xab_c00361{left:418.666667pt;}
.x14_c00361{left:420.960000pt;}
.x23_c00361{left:422.666667pt;}
.x39_c00361{left:424.573333pt;}
.x9_c00361{left:426.666667pt;}
.x7d_c00361{left:430.293333pt;}
.xc3_c00361{left:432.000000pt;}
.xac_c00361{left:433.333333pt;}
.x42_c00361{left:436.000000pt;}
.x15_c00361{left:437.706667pt;}
.x60_c00361{left:439.626667pt;}
.xe2_c00361{left:441.333333pt;}
.x4e_c00361{left:443.040000pt;}
.x56_c00361{left:444.000000pt;}
.xd5_c00361{left:445.333333pt;}
.xb3_c00361{left:446.666667pt;}
.x7e_c00361{left:448.373333pt;}
.xd8_c00361{left:449.333333pt;}
.xdd_c00361{left:450.666667pt;}
.x6a_c00361{left:452.000000pt;}
.x96_c00361{left:455.626667pt;}
.xb9_c00361{left:458.293333pt;}
.x8d_c00361{left:460.000000pt;}
.x16_c00361{left:460.960000pt;}
.x71_c00361{left:464.000000pt;}
.x3a_c00361{left:465.333333pt;}
.x4f_c00361{left:469.333333pt;}
.x7f_c00361{left:472.000000pt;}
.x78_c00361{left:473.333333pt;}
.x43_c00361{left:476.373333pt;}
.xba_c00361{left:477.333333pt;}
.xad_c00361{left:479.626667pt;}
.x2f_c00361{left:481.706667pt;}
.x8e_c00361{left:483.040000pt;}
.x87_c00361{left:484.000000pt;}
.xd1_c00361{left:485.333333pt;}
.x24_c00361{left:486.666667pt;}
.x6b_c00361{left:488.373333pt;}
.xd9_c00361{left:489.333333pt;}
.x61_c00361{left:496.373333pt;}
.x97_c00361{left:498.666667pt;}
.x44_c00361{left:500.000000pt;}
.x50_c00361{left:502.293333pt;}
.xc5_c00361{left:505.333333pt;}
.x3b_c00361{left:506.666667pt;}
.xa1_c00361{left:508.373333pt;}
.x98_c00361{left:515.626667pt;}
.x25_c00361{left:516.960000pt;}
.xdf_c00361{left:518.666667pt;}
.xa5_c00361{left:520.373333pt;}
.x72_c00361{left:521.333333pt;}
.x17_c00361{left:523.240000pt;}
.x9d_c00361{left:524.960000pt;}
.x62_c00361{left:529.706667pt;}
.x26_c00361{left:532.960000pt;}
.x6c_c00361{left:534.666667pt;}
.x80_c00361{left:539.626667pt;}
.xc6_c00361{left:540.960000pt;}
.x3c_c00361{left:544.000000pt;}
.xb4_c00361{left:545.333333pt;}
.xbb_c00361{left:546.293333pt;}
.xa_c00361{left:550.293333pt;}
.x63_c00361{left:554.293333pt;}
.x81_c00361{left:555.626667pt;}
.x30_c00361{left:556.960000pt;}
.xe5_c00361{left:559.040000pt;}
.x45_c00361{left:560.573333pt;}
.xe9_c00361{left:562.666667pt;}
.x57_c00361{left:563.626667pt;}
.xc4_c00361{left:564.960000pt;}
.x18_c00361{left:566.666667pt;}
.xb_c00361{left:571.040000pt;}
.x73_c00361{left:573.333333pt;}
.x99_c00361{left:574.666667pt;}
.x8f_c00361{left:576.000000pt;}
.x58_c00361{left:581.706667pt;}
.x64_c00361{left:582.666667pt;}
.xb5_c00361{left:588.373333pt;}
.x6d_c00361{left:589.333333pt;}
.xc_c00361{left:592.000000pt;}
.xca_c00361{left:593.333333pt;}
.xae_c00361{left:594.666667pt;}
.x27_c00361{left:596.000000pt;}
.x9e_c00361{left:597.333333pt;}
.x46_c00361{left:598.293333pt;}
.x51_c00361{left:600.000000pt;}
.xda_c00361{left:601.333333pt;}
.x9a_c00361{left:602.293333pt;}
.x59_c00361{left:606.666667pt;}
.x90_c00361{left:608.000000pt;}
.x31_c00361{left:610.293333pt;}
.x9f_c00361{left:612.373333pt;}
.xd_c00361{left:613.333333pt;}
.x74_c00361{left:615.040000pt;}
.x3d_c00361{left:618.666667pt;}
.x19_c00361{left:623.040000pt;}
.xa6_c00361{left:624.960000pt;}
.x32_c00361{left:629.706667pt;}
.xcb_c00361{left:633.333333pt;}
.xbc_c00361{left:634.666667pt;}
.x91_c00361{left:636.000000pt;}
.x28_c00361{left:638.666667pt;}
.xcc_c00361{left:641.333333pt;}
.xdb_c00361{left:642.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_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_71591640715eebf4606fe5ed.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:1.688965;font-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_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);}
.m7c_c00362{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m47_c00362{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.ma7_c00362{transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);}
.ma4_c00362{transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);}
.ma3_c00362{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m6e_c00362{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m31_c00362{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mac_c00362{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mab_c00362{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.ma_c00362{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.maf_c00362{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m9a_c00362{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.ma8_c00362{transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);}
.m91_c00362{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m20_c00362{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m7b_c00362{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.m2d_c00362{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.mae_c00362{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m4c_c00362{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m36_c00362{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m3f_c00362{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m4b_c00362{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m2e_c00362{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m9b_c00362{transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);}
.m8e_c00362{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m8f_c00362{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_c00362{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m44_c00362{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m22_c00362{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mb_c00362{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m26_c00362{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m98_c00362{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m77_c00362{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m37_c00362{transform:matrix(0.414110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414110,0.000000,0.000000,0.250000,0,0);}
.m3c_c00362{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mad_c00362{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m84_c00362{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.ma0_c00362{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m6b_c00362{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m7a_c00362{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m59_c00362{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m64_c00362{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m92_c00362{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m16_c00362{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m85_c00362{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m6c_c00362{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m81_c00362{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m93_c00362{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m95_c00362{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m75_c00362{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m99_c00362{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.me_c00362{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m18_c00362{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m7d_c00362{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m2f_c00362{transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);}
.m10_c00362{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.m9f_c00362{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m24_c00362{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m8_c00362{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m54_c00362{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m9c_c00362{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m73_c00362{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m6d_c00362{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.m82_c00362{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m52_c00362{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m21_c00362{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m6a_c00362{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.mc_c00362{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m29_c00362{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m74_c00362{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m5f_c00362{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m46_c00362{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m55_c00362{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.m8b_c00362{transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);}
.m4a_c00362{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.m53_c00362{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m7_c00362{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m5a_c00362{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m96_c00362{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m7f_c00362{transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);}
.ma1_c00362{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m32_c00362{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m1_c00362{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m34_c00362{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m12_c00362{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m86_c00362{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m13_c00362{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_c00362{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m94_c00362{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m5d_c00362{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m50_c00362{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.ma9_c00362{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m5e_c00362{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m38_c00362{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m1d_c00362{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m3e_c00362{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m3b_c00362{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m3d_c00362{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m56_c00362{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m5b_c00362{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m66_c00362{transform:matrix(0.528293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528293,0.000000,0.000000,0.250000,0,0);}
.m1e_c00362{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mf_c00362{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m87_c00362{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m14_c00362{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m6f_c00362{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m83_c00362{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m62_c00362{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m5c_c00362{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m1b_c00362{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m28_c00362{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m27_c00362{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m61_c00362{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m43_c00362{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m15_c00362{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m3_c00362{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m1c_c00362{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.ma2_c00362{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.ma5_c00362{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m67_c00362{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m78_c00362{transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);}
.m42_c00362{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m76_c00362{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m8c_c00362{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m58_c00362{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m23_c00362{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m17_c00362{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m41_c00362{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m60_c00362{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m1a_c00362{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m30_c00362{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m49_c00362{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m2_c00362{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m19_c00362{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m7e_c00362{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m80_c00362{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m97_c00362{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.ma6_c00362{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m4d_c00362{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.m1f_c00362{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m48_c00362{transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);}
.m9e_c00362{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m90_c00362{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m2a_c00362{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m2c_c00362{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);}
.m51_c00362{transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);}
.m69_c00362{transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);}
.m71_c00362{transform:matrix(0.608921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608921,0.000000,0.000000,0.250000,0,0);}
.m45_c00362{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m0_c00362{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m4_c00362{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m39_c00362{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m65_c00362{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.m5_c00362{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m4f_c00362{transform:matrix(0.630705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630705,0.000000,0.000000,0.250000,0,0);}
.m63_c00362{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m8a_c00362{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m40_c00362{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.md_c00362{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m9d_c00362{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.m70_c00362{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m33_c00362{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m89_c00362{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m25_c00362{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m72_c00362{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.maa_c00362{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m9_c00362{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m35_c00362{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m88_c00362{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m3a_c00362{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m4e_c00362{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m8d_c00362{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m79_c00362{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m11_c00362{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.m2b_c00362{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,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;}
.fs6_c00362{font-size:3.420000px;}
.fs5_c00362{font-size:18.720000px;}
.fs0_c00362{font-size:20.400000px;}
.fs2_c00362{font-size:25.500000px;}
.fs1_c00362{font-size:28.920000px;}
.fs4_c00362{font-size:32.340000px;}
.fs3_c00362{font-size:35.700000px;}
.fs7_c00362{font-size:39.120000px;}
.y0_c00362{bottom:0.000000px;}
.y82_c00362{bottom:548.745000px;}
.y83_c00362{bottom:549.630000px;}
.y84_c00362{bottom:550.905000px;}
.y80_c00362{bottom:566.745000px;}
.y7b_c00362{bottom:567.180000px;}
.y7f_c00362{bottom:568.680000px;}
.y7c_c00362{bottom:569.130000px;}
.y81_c00362{bottom:569.970000px;}
.y7d_c00362{bottom:570.405000px;}
.y7e_c00362{bottom:571.905000px;}
.y77_c00362{bottom:587.745000px;}
.y7a_c00362{bottom:588.180000px;}
.y78_c00362{bottom:589.245000px;}
.y76_c00362{bottom:589.905000px;}
.y79_c00362{bottom:591.405000px;}
.y70_c00362{bottom:607.245000px;}
.y74_c00362{bottom:608.745000px;}
.y71_c00362{bottom:609.405000px;}
.y73_c00362{bottom:609.630000px;}
.y75_c00362{bottom:610.470000px;}
.y72_c00362{bottom:610.905000px;}
.y6c_c00362{bottom:628.245000px;}
.y6f_c00362{bottom:629.130000px;}
.y6d_c00362{bottom:629.970000px;}
.y6e_c00362{bottom:630.405000px;}
.y6a_c00362{bottom:647.745000px;}
.y68_c00362{bottom:648.630000px;}
.y6b_c00362{bottom:649.470000px;}
.y69_c00362{bottom:649.905000px;}
.y67_c00362{bottom:665.745000px;}
.y65_c00362{bottom:667.245000px;}
.y66_c00362{bottom:668.130000px;}
.y64_c00362{bottom:668.970000px;}
.y63_c00362{bottom:669.405000px;}
.y62_c00362{bottom:686.745000px;}
.y60_c00362{bottom:688.905000px;}
.y61_c00362{bottom:689.130000px;}
.y5e_c00362{bottom:706.245000px;}
.y5d_c00362{bottom:708.405000px;}
.y5f_c00362{bottom:709.470000px;}
.y58_c00362{bottom:724.905000px;}
.y5a_c00362{bottom:725.745000px;}
.y5b_c00362{bottom:726.825000px;}
.y59_c00362{bottom:727.905000px;}
.y5c_c00362{bottom:729.405000px;}
.y55_c00362{bottom:745.245000px;}
.y57_c00362{bottom:746.745000px;}
.y53_c00362{bottom:747.405000px;}
.y54_c00362{bottom:747.630000px;}
.y56_c00362{bottom:748.905000px;}
.y4f_c00362{bottom:766.245000px;}
.y51_c00362{bottom:767.130000px;}
.y52_c00362{bottom:767.325000px;}
.y50_c00362{bottom:767.970000px;}
.y4e_c00362{bottom:768.405000px;}
.y4b_c00362{bottom:785.745000px;}
.y4c_c00362{bottom:786.825000px;}
.y4a_c00362{bottom:787.905000px;}
.y4d_c00362{bottom:788.130000px;}
.y47_c00362{bottom:805.245000px;}
.y46_c00362{bottom:806.130000px;}
.y49_c00362{bottom:806.325000px;}
.y45_c00362{bottom:807.405000px;}
.y48_c00362{bottom:808.470000px;}
.y42_c00362{bottom:824.745000px;}
.y44_c00362{bottom:825.825000px;}
.y40_c00362{bottom:826.470000px;}
.y3f_c00362{bottom:826.905000px;}
.y43_c00362{bottom:827.130000px;}
.y41_c00362{bottom:827.970000px;}
.y3c_c00362{bottom:845.325000px;}
.y3a_c00362{bottom:846.405000px;}
.y3e_c00362{bottom:846.630000px;}
.y3b_c00362{bottom:847.470000px;}
.y3d_c00362{bottom:847.905000px;}
.y39_c00362{bottom:862.905000px;}
.y36_c00362{bottom:863.745000px;}
.y35_c00362{bottom:865.245000px;}
.y37_c00362{bottom:866.130000px;}
.y38_c00362{bottom:866.325000px;}
.y34_c00362{bottom:867.405000px;}
.y30_c00362{bottom:883.245000px;}
.y32_c00362{bottom:884.745000px;}
.y2d_c00362{bottom:885.405000px;}
.y2e_c00362{bottom:885.630000px;}
.y33_c00362{bottom:885.825000px;}
.y2f_c00362{bottom:886.905000px;}
.y31_c00362{bottom:887.970000px;}
.y2a_c00362{bottom:903.825000px;}
.y2b_c00362{bottom:904.245000px;}
.y2c_c00362{bottom:905.325000px;}
.y29_c00362{bottom:905.970000px;}
.y28_c00362{bottom:906.405000px;}
.y27_c00362{bottom:923.745000px;}
.y25_c00362{bottom:924.630000px;}
.y26_c00362{bottom:925.905000px;}
.y21_c00362{bottom:941.745000px;}
.y24_c00362{bottom:943.245000px;}
.y23_c00362{bottom:943.680000px;}
.y1f_c00362{bottom:944.325000px;}
.y22_c00362{bottom:944.970000px;}
.y1e_c00362{bottom:945.405000px;}
.y20_c00362{bottom:945.630000px;}
.y1b_c00362{bottom:962.745000px;}
.y1c_c00362{bottom:964.470000px;}
.y1d_c00362{bottom:964.905000px;}
.y19_c00362{bottom:965.970000px;}
.y1a_c00362{bottom:966.420000px;}
.y17_c00362{bottom:982.245000px;}
.y18_c00362{bottom:982.905000px;}
.y15_c00362{bottom:983.325000px;}
.y14_c00362{bottom:984.405000px;}
.y16_c00362{bottom:984.630000px;}
.y13_c00362{bottom:985.470000px;}
.y11_c00362{bottom:1001.745000px;}
.y12_c00362{bottom:1002.825000px;}
.yf_c00362{bottom:1003.905000px;}
.y10_c00362{bottom:1004.970000px;}
.ye_c00362{bottom:1023.405000px;}
.yd_c00362{bottom:1040.745000px;}
.y9_c00362{bottom:1042.245000px;}
.y8_c00362{bottom:1042.905000px;}
.yb_c00362{bottom:1043.130000px;}
.ya_c00362{bottom:1043.970000px;}
.yc_c00362{bottom:1044.405000px;}
.y5_c00362{bottom:1060.470000px;}
.y7_c00362{bottom:1061.325000px;}
.y6_c00362{bottom:1061.745000px;}
.y3_c00362{bottom:1063.905000px;}
.y4_c00362{bottom:1064.970000px;}
.y2_c00362{bottom:1099.905000px;}
.y1_c00362{bottom:1102.050000px;}
.h7_c00362{height:4.206533px;}
.h6_c00362{height:23.025234px;}
.h1_c00362{height:25.091602px;}
.h3_c00362{height:31.364502px;}
.h2_c00362{height:35.571035px;}
.h5_c00362{height:39.777568px;}
.h4_c00362{height:43.910303px;}
.h8_c00362{height:48.116836px;}
.h0_c00362{height:1335.000000px;}
.w0_c00362{width:880.500000px;}
.x0_c00362{left:0.000000px;}
.x3_c00362{left:153.420000px;}
.x12_c00362{left:154.920000px;}
.x21_c00362{left:168.000000px;}
.x30_c00362{left:169.500000px;}
.x1f_c00362{left:172.920000px;}
.x3b_c00362{left:174.000000px;}
.x5d_c00362{left:175.500000px;}
.x9b_c00362{left:176.580000px;}
.xa4_c00362{left:181.080000px;}
.xad_c00362{left:186.000000px;}
.xca_c00362{left:189.000000px;}
.x43_c00362{left:193.500000px;}
.xb9_c00362{left:195.000000px;}
.xb5_c00362{left:196.920000px;}
.x20_c00362{left:199.920000px;}
.x6f_c00362{left:201.000000px;}
.x79_c00362{left:202.500000px;}
.x4d_c00362{left:206.580000px;}
.x4_c00362{left:210.420000px;}
.x83_c00362{left:211.500000px;}
.x13_c00362{left:213.000000px;}
.xba_c00362{left:214.920000px;}
.xa5_c00362{left:217.920000px;}
.x5e_c00362{left:220.275000px;}
.x7a_c00362{left:222.000000px;}
.x4e_c00362{left:226.500000px;}
.xae_c00362{left:228.420000px;}
.x68_c00362{left:229.500000px;}
.x94_c00362{left:232.080000px;}
.xc2_c00362{left:235.080000px;}
.x31_c00362{left:238.500000px;}
.x8d_c00362{left:243.000000px;}
.xcb_c00362{left:244.500000px;}
.x5_c00362{left:247.500000px;}
.x3c_c00362{left:248.580000px;}
.x95_c00362{left:250.500000px;}
.x2a_c00362{left:252.420000px;}
.xc3_c00362{left:253.500000px;}
.x69_c00362{left:256.080000px;}
.x32_c00362{left:258.000000px;}
.x22_c00362{left:262.080000px;}
.xaf_c00362{left:264.000000px;}
.xcc_c00362{left:265.500000px;}
.xab_c00362{left:267.000000px;}
.x9c_c00362{left:268.500000px;}
.x8e_c00362{left:273.000000px;}
.x84_c00362{left:274.080000px;}
.x6_c00362{left:276.000000px;}
.xd2_c00362{left:277.080000px;}
.x44_c00362{left:280.500000px;}
.xa6_c00362{left:282.000000px;}
.x5f_c00362{left:288.420000px;}
.xc4_c00362{left:289.500000px;}
.x33_c00362{left:290.580000px;}
.x23_c00362{left:292.500000px;}
.xac_c00362{left:295.080000px;}
.xcd_c00362{left:299.580000px;}
.x14_c00362{left:301.500000px;}
.x4f_c00362{left:306.000000px;}
.x3d_c00362{left:309.000000px;}
.x70_c00362{left:310.920000px;}
.xb0_c00362{left:315.000000px;}
.x60_c00362{left:316.500000px;}
.x2b_c00362{left:318.000000px;}
.x50_c00362{left:321.000000px;}
.x7_c00362{left:322.500000px;}
.x15_c00362{left:327.000000px;}
.x24_c00362{left:330.000000px;}
.x9d_c00362{left:333.000000px;}
.xc7_c00362{left:334.500000px;}
.x45_c00362{left:336.000000px;}
.x71_c00362{left:338.580000px;}
.x57_c00362{left:342.000000px;}
.x2c_c00362{left:345.420000px;}
.x85_c00362{left:349.275000px;}
.xbb_c00362{left:352.920000px;}
.x3e_c00362{left:356.580000px;}
.x51_c00362{left:360.420000px;}
.x34_c00362{left:361.500000px;}
.xd3_c00362{left:362.580000px;}
.x46_c00362{left:366.000000px;}
.x96_c00362{left:368.580000px;}
.x58_c00362{left:370.080000px;}
.x6a_c00362{left:371.580000px;}
.x7b_c00362{left:373.920000px;}
.x61_c00362{left:375.000000px;}
.xb1_c00362{left:376.500000px;}
.x16_c00362{left:379.080000px;}
.xbc_c00362{left:381.000000px;}
.xa7_c00362{left:384.420000px;}
.x47_c00362{left:385.920000px;}
.x2d_c00362{left:387.000000px;}
.x86_c00362{left:390.000000px;}
.x72_c00362{left:393.000000px;}
.x8_c00362{left:394.500000px;}
.xb6_c00362{left:396.645000px;}
.x1_c00362{left:402.000000px;}
.x8f_c00362{left:403.500000px;}
.x2e_c00362{left:405.000000px;}
.x59_c00362{left:406.500000px;}
.x9_c00362{left:411.420000px;}
.x3f_c00362{left:414.000000px;}
.x7c_c00362{left:415.080000px;}
.x35_c00362{left:418.500000px;}
.x7d_c00362{left:420.000000px;}
.x87_c00362{left:421.500000px;}
.x90_c00362{left:423.420000px;}
.xc8_c00362{left:426.000000px;}
.x62_c00362{left:427.080000px;}
.x17_c00362{left:429.420000px;}
.x25_c00362{left:433.080000px;}
.x36_c00362{left:438.420000px;}
.x73_c00362{left:439.500000px;}
.x52_c00362{left:442.500000px;}
.xb2_c00362{left:447.000000px;}
.x2f_c00362{left:448.080000px;}
.x26_c00362{left:451.500000px;}
.x18_c00362{left:454.920000px;}
.x74_c00362{left:458.580000px;}
.x63_c00362{left:460.920000px;}
.x9e_c00362{left:463.500000px;}
.x37_c00362{left:465.000000px;}
.xbd_c00362{left:472.080000px;}
.xce_c00362{left:474.000000px;}
.x9f_c00362{left:477.000000px;}
.x27_c00362{left:478.500000px;}
.x7e_c00362{left:480.420000px;}
.xa_c00362{left:486.000000px;}
.x88_c00362{left:489.000000px;}
.x5a_c00362{left:491.580000px;}
.x64_c00362{left:493.500000px;}
.xbe_c00362{left:495.000000px;}
.x53_c00362{left:499.080000px;}
.xb3_c00362{left:502.500000px;}
.xb_c00362{left:505.500000px;}
.x97_c00362{left:510.000000px;}
.x19_c00362{left:511.500000px;}
.xa0_c00362{left:513.000000px;}
.x54_c00362{left:514.080000px;}
.x75_c00362{left:516.000000px;}
.x89_c00362{left:517.080000px;}
.x7f_c00362{left:518.580000px;}
.x6b_c00362{left:522.000000px;}
.x1a_c00362{left:525.420000px;}
.xa1_c00362{left:529.920000px;}
.x98_c00362{left:531.000000px;}
.x76_c00362{left:532.080000px;}
.x65_c00362{left:535.500000px;}
.x8a_c00362{left:537.420000px;}
.x91_c00362{left:540.000000px;}
.xb7_c00362{left:541.080000px;}
.x40_c00362{left:543.420000px;}
.x80_c00362{left:547.080000px;}
.x6c_c00362{left:550.080000px;}
.xc_c00362{left:551.580000px;}
.xcf_c00362{left:553.500000px;}
.x5b_c00362{left:555.000000px;}
.xa2_c00362{left:556.500000px;}
.x66_c00362{left:557.580000px;}
.xbf_c00362{left:560.580000px;}
.x55_c00362{left:565.275000px;}
.x81_c00362{left:568.920000px;}
.x38_c00362{left:571.500000px;}
.x48_c00362{left:574.080000px;}
.x1b_c00362{left:577.500000px;}
.xc5_c00362{left:582.000000px;}
.xd_c00362{left:583.500000px;}
.x77_c00362{left:585.000000px;}
.x99_c00362{left:586.500000px;}
.x28_c00362{left:589.500000px;}
.xc0_c00362{left:591.000000px;}
.x67_c00362{left:594.000000px;}
.x1c_c00362{left:598.920000px;}
.x41_c00362{left:601.500000px;}
.x56_c00362{left:606.000000px;}
.x5c_c00362{left:608.580000px;}
.xc9_c00362{left:611.580000px;}
.xe_c00362{left:613.080000px;}
.x92_c00362{left:615.000000px;}
.xa8_c00362{left:621.000000px;}
.x1d_c00362{left:623.580000px;}
.x49_c00362{left:625.920000px;}
.x39_c00362{left:631.080000px;}
.xf_c00362{left:633.000000px;}
.x78_c00362{left:634.500000px;}
.x6d_c00362{left:640.500000px;}
.xa3_c00362{left:643.920000px;}
.x8b_c00362{left:645.000000px;}
.x4a_c00362{left:646.920000px;}
.x42_c00362{left:650.580000px;}
.xa9_c00362{left:652.500000px;}
.xb4_c00362{left:657.420000px;}
.x10_c00362{left:661.920000px;}
.x29_c00362{left:664.500000px;}
.x93_c00362{left:667.920000px;}
.x82_c00362{left:674.580000px;}
.xb8_c00362{left:676.920000px;}
.xc1_c00362{left:679.920000px;}
.x4b_c00362{left:681.000000px;}
.x1e_c00362{left:682.500000px;}
.x3a_c00362{left:684.000000px;}
.x8c_c00362{left:688.500000px;}
.x6e_c00362{left:693.000000px;}
.x4c_c00362{left:694.500000px;}
.xd0_c00362{left:700.080000px;}
.x2_c00362{left:704.580000px;}
.xc6_c00362{left:711.000000px;}
.xaa_c00362{left:716.580000px;}
.x11_c00362{left:720.000000px;}
.xd1_c00362{left:723.000000px;}
.x9a_c00362{left:727.500000px;}
@media print{
.v0_c00362{vertical-align:0.000000pt;}
.ls0_c00362{letter-spacing:0.000000pt;}
.ws0_c00362{word-spacing:0.000000pt;}
.fs6_c00362{font-size:3.040000pt;}
.fs5_c00362{font-size:16.640000pt;}
.fs0_c00362{font-size:18.133333pt;}
.fs2_c00362{font-size:22.666667pt;}
.fs1_c00362{font-size:25.706667pt;}
.fs4_c00362{font-size:28.746667pt;}
.fs3_c00362{font-size:31.733333pt;}
.fs7_c00362{font-size:34.773333pt;}
.y0_c00362{bottom:0.000000pt;}
.y82_c00362{bottom:487.773333pt;}
.y83_c00362{bottom:488.560000pt;}
.y84_c00362{bottom:489.693333pt;}
.y80_c00362{bottom:503.773333pt;}
.y7b_c00362{bottom:504.160000pt;}
.y7f_c00362{bottom:505.493333pt;}
.y7c_c00362{bottom:505.893333pt;}
.y81_c00362{bottom:506.640000pt;}
.y7d_c00362{bottom:507.026667pt;}
.y7e_c00362{bottom:508.360000pt;}
.y77_c00362{bottom:522.440000pt;}
.y7a_c00362{bottom:522.826667pt;}
.y78_c00362{bottom:523.773333pt;}
.y76_c00362{bottom:524.360000pt;}
.y79_c00362{bottom:525.693333pt;}
.y70_c00362{bottom:539.773333pt;}
.y74_c00362{bottom:541.106667pt;}
.y71_c00362{bottom:541.693333pt;}
.y73_c00362{bottom:541.893333pt;}
.y75_c00362{bottom:542.640000pt;}
.y72_c00362{bottom:543.026667pt;}
.y6c_c00362{bottom:558.440000pt;}
.y6f_c00362{bottom:559.226667pt;}
.y6d_c00362{bottom:559.973333pt;}
.y6e_c00362{bottom:560.360000pt;}
.y6a_c00362{bottom:575.773333pt;}
.y68_c00362{bottom:576.560000pt;}
.y6b_c00362{bottom:577.306667pt;}
.y69_c00362{bottom:577.693333pt;}
.y67_c00362{bottom:591.773333pt;}
.y65_c00362{bottom:593.106667pt;}
.y66_c00362{bottom:593.893333pt;}
.y64_c00362{bottom:594.640000pt;}
.y63_c00362{bottom:595.026667pt;}
.y62_c00362{bottom:610.440000pt;}
.y60_c00362{bottom:612.360000pt;}
.y61_c00362{bottom:612.560000pt;}
.y5e_c00362{bottom:627.773333pt;}
.y5d_c00362{bottom:629.693333pt;}
.y5f_c00362{bottom:630.640000pt;}
.y58_c00362{bottom:644.360000pt;}
.y5a_c00362{bottom:645.106667pt;}
.y5b_c00362{bottom:646.066667pt;}
.y59_c00362{bottom:647.026667pt;}
.y5c_c00362{bottom:648.360000pt;}
.y55_c00362{bottom:662.440000pt;}
.y57_c00362{bottom:663.773333pt;}
.y53_c00362{bottom:664.360000pt;}
.y54_c00362{bottom:664.560000pt;}
.y56_c00362{bottom:665.693333pt;}
.y4f_c00362{bottom:681.106667pt;}
.y51_c00362{bottom:681.893333pt;}
.y52_c00362{bottom:682.066667pt;}
.y50_c00362{bottom:682.640000pt;}
.y4e_c00362{bottom:683.026667pt;}
.y4b_c00362{bottom:698.440000pt;}
.y4c_c00362{bottom:699.400000pt;}
.y4a_c00362{bottom:700.360000pt;}
.y4d_c00362{bottom:700.560000pt;}
.y47_c00362{bottom:715.773333pt;}
.y46_c00362{bottom:716.560000pt;}
.y49_c00362{bottom:716.733333pt;}
.y45_c00362{bottom:717.693333pt;}
.y48_c00362{bottom:718.640000pt;}
.y42_c00362{bottom:733.106667pt;}
.y44_c00362{bottom:734.066667pt;}
.y40_c00362{bottom:734.640000pt;}
.y3f_c00362{bottom:735.026667pt;}
.y43_c00362{bottom:735.226667pt;}
.y41_c00362{bottom:735.973333pt;}
.y3c_c00362{bottom:751.400000pt;}
.y3a_c00362{bottom:752.360000pt;}
.y3e_c00362{bottom:752.560000pt;}
.y3b_c00362{bottom:753.306667pt;}
.y3d_c00362{bottom:753.693333pt;}
.y39_c00362{bottom:767.026667pt;}
.y36_c00362{bottom:767.773333pt;}
.y35_c00362{bottom:769.106667pt;}
.y37_c00362{bottom:769.893333pt;}
.y38_c00362{bottom:770.066667pt;}
.y34_c00362{bottom:771.026667pt;}
.y30_c00362{bottom:785.106667pt;}
.y32_c00362{bottom:786.440000pt;}
.y2d_c00362{bottom:787.026667pt;}
.y2e_c00362{bottom:787.226667pt;}
.y33_c00362{bottom:787.400000pt;}
.y2f_c00362{bottom:788.360000pt;}
.y31_c00362{bottom:789.306667pt;}
.y2a_c00362{bottom:803.400000pt;}
.y2b_c00362{bottom:803.773333pt;}
.y2c_c00362{bottom:804.733333pt;}
.y29_c00362{bottom:805.306667pt;}
.y28_c00362{bottom:805.693333pt;}
.y27_c00362{bottom:821.106667pt;}
.y25_c00362{bottom:821.893333pt;}
.y26_c00362{bottom:823.026667pt;}
.y21_c00362{bottom:837.106667pt;}
.y24_c00362{bottom:838.440000pt;}
.y23_c00362{bottom:838.826667pt;}
.y1f_c00362{bottom:839.400000pt;}
.y22_c00362{bottom:839.973333pt;}
.y1e_c00362{bottom:840.360000pt;}
.y20_c00362{bottom:840.560000pt;}
.y1b_c00362{bottom:855.773333pt;}
.y1c_c00362{bottom:857.306667pt;}
.y1d_c00362{bottom:857.693333pt;}
.y19_c00362{bottom:858.640000pt;}
.y1a_c00362{bottom:859.040000pt;}
.y17_c00362{bottom:873.106667pt;}
.y18_c00362{bottom:873.693333pt;}
.y15_c00362{bottom:874.066667pt;}
.y14_c00362{bottom:875.026667pt;}
.y16_c00362{bottom:875.226667pt;}
.y13_c00362{bottom:875.973333pt;}
.y11_c00362{bottom:890.440000pt;}
.y12_c00362{bottom:891.400000pt;}
.yf_c00362{bottom:892.360000pt;}
.y10_c00362{bottom:893.306667pt;}
.ye_c00362{bottom:909.693333pt;}
.yd_c00362{bottom:925.106667pt;}
.y9_c00362{bottom:926.440000pt;}
.y8_c00362{bottom:927.026667pt;}
.yb_c00362{bottom:927.226667pt;}
.ya_c00362{bottom:927.973333pt;}
.yc_c00362{bottom:928.360000pt;}
.y5_c00362{bottom:942.640000pt;}
.y7_c00362{bottom:943.400000pt;}
.y6_c00362{bottom:943.773333pt;}
.y3_c00362{bottom:945.693333pt;}
.y4_c00362{bottom:946.640000pt;}
.y2_c00362{bottom:977.693333pt;}
.y1_c00362{bottom:979.600000pt;}
.h7_c00362{height:3.739141pt;}
.h6_c00362{height:20.466875pt;}
.h1_c00362{height:22.303646pt;}
.h3_c00362{height:27.879557pt;}
.h2_c00362{height:31.618698pt;}
.h5_c00362{height:35.357839pt;}
.h4_c00362{height:39.031380pt;}
.h8_c00362{height:42.770521pt;}
.h0_c00362{height:1186.666667pt;}
.w0_c00362{width:782.666667pt;}
.x0_c00362{left:0.000000pt;}
.x3_c00362{left:136.373333pt;}
.x12_c00362{left:137.706667pt;}
.x21_c00362{left:149.333333pt;}
.x30_c00362{left:150.666667pt;}
.x1f_c00362{left:153.706667pt;}
.x3b_c00362{left:154.666667pt;}
.x5d_c00362{left:156.000000pt;}
.x9b_c00362{left:156.960000pt;}
.xa4_c00362{left:160.960000pt;}
.xad_c00362{left:165.333333pt;}
.xca_c00362{left:168.000000pt;}
.x43_c00362{left:172.000000pt;}
.xb9_c00362{left:173.333333pt;}
.xb5_c00362{left:175.040000pt;}
.x20_c00362{left:177.706667pt;}
.x6f_c00362{left:178.666667pt;}
.x79_c00362{left:180.000000pt;}
.x4d_c00362{left:183.626667pt;}
.x4_c00362{left:187.040000pt;}
.x83_c00362{left:188.000000pt;}
.x13_c00362{left:189.333333pt;}
.xba_c00362{left:191.040000pt;}
.xa5_c00362{left:193.706667pt;}
.x5e_c00362{left:195.800000pt;}
.x7a_c00362{left:197.333333pt;}
.x4e_c00362{left:201.333333pt;}
.xae_c00362{left:203.040000pt;}
.x68_c00362{left:204.000000pt;}
.x94_c00362{left:206.293333pt;}
.xc2_c00362{left:208.960000pt;}
.x31_c00362{left:212.000000pt;}
.x8d_c00362{left:216.000000pt;}
.xcb_c00362{left:217.333333pt;}
.x5_c00362{left:220.000000pt;}
.x3c_c00362{left:220.960000pt;}
.x95_c00362{left:222.666667pt;}
.x2a_c00362{left:224.373333pt;}
.xc3_c00362{left:225.333333pt;}
.x69_c00362{left:227.626667pt;}
.x32_c00362{left:229.333333pt;}
.x22_c00362{left:232.960000pt;}
.xaf_c00362{left:234.666667pt;}
.xcc_c00362{left:236.000000pt;}
.xab_c00362{left:237.333333pt;}
.x9c_c00362{left:238.666667pt;}
.x8e_c00362{left:242.666667pt;}
.x84_c00362{left:243.626667pt;}
.x6_c00362{left:245.333333pt;}
.xd2_c00362{left:246.293333pt;}
.x44_c00362{left:249.333333pt;}
.xa6_c00362{left:250.666667pt;}
.x5f_c00362{left:256.373333pt;}
.xc4_c00362{left:257.333333pt;}
.x33_c00362{left:258.293333pt;}
.x23_c00362{left:260.000000pt;}
.xac_c00362{left:262.293333pt;}
.xcd_c00362{left:266.293333pt;}
.x14_c00362{left:268.000000pt;}
.x4f_c00362{left:272.000000pt;}
.x3d_c00362{left:274.666667pt;}
.x70_c00362{left:276.373333pt;}
.xb0_c00362{left:280.000000pt;}
.x60_c00362{left:281.333333pt;}
.x2b_c00362{left:282.666667pt;}
.x50_c00362{left:285.333333pt;}
.x7_c00362{left:286.666667pt;}
.x15_c00362{left:290.666667pt;}
.x24_c00362{left:293.333333pt;}
.x9d_c00362{left:296.000000pt;}
.xc7_c00362{left:297.333333pt;}
.x45_c00362{left:298.666667pt;}
.x71_c00362{left:300.960000pt;}
.x57_c00362{left:304.000000pt;}
.x2c_c00362{left:307.040000pt;}
.x85_c00362{left:310.466667pt;}
.xbb_c00362{left:313.706667pt;}
.x3e_c00362{left:316.960000pt;}
.x51_c00362{left:320.373333pt;}
.x34_c00362{left:321.333333pt;}
.xd3_c00362{left:322.293333pt;}
.x46_c00362{left:325.333333pt;}
.x96_c00362{left:327.626667pt;}
.x58_c00362{left:328.960000pt;}
.x6a_c00362{left:330.293333pt;}
.x7b_c00362{left:332.373333pt;}
.x61_c00362{left:333.333333pt;}
.xb1_c00362{left:334.666667pt;}
.x16_c00362{left:336.960000pt;}
.xbc_c00362{left:338.666667pt;}
.xa7_c00362{left:341.706667pt;}
.x47_c00362{left:343.040000pt;}
.x2d_c00362{left:344.000000pt;}
.x86_c00362{left:346.666667pt;}
.x72_c00362{left:349.333333pt;}
.x8_c00362{left:350.666667pt;}
.xb6_c00362{left:352.573333pt;}
.x1_c00362{left:357.333333pt;}
.x8f_c00362{left:358.666667pt;}
.x2e_c00362{left:360.000000pt;}
.x59_c00362{left:361.333333pt;}
.x9_c00362{left:365.706667pt;}
.x3f_c00362{left:368.000000pt;}
.x7c_c00362{left:368.960000pt;}
.x35_c00362{left:372.000000pt;}
.x7d_c00362{left:373.333333pt;}
.x87_c00362{left:374.666667pt;}
.x90_c00362{left:376.373333pt;}
.xc8_c00362{left:378.666667pt;}
.x62_c00362{left:379.626667pt;}
.x17_c00362{left:381.706667pt;}
.x25_c00362{left:384.960000pt;}
.x36_c00362{left:389.706667pt;}
.x73_c00362{left:390.666667pt;}
.x52_c00362{left:393.333333pt;}
.xb2_c00362{left:397.333333pt;}
.x2f_c00362{left:398.293333pt;}
.x26_c00362{left:401.333333pt;}
.x18_c00362{left:404.373333pt;}
.x74_c00362{left:407.626667pt;}
.x63_c00362{left:409.706667pt;}
.x9e_c00362{left:412.000000pt;}
.x37_c00362{left:413.333333pt;}
.xbd_c00362{left:419.626667pt;}
.xce_c00362{left:421.333333pt;}
.x9f_c00362{left:424.000000pt;}
.x27_c00362{left:425.333333pt;}
.x7e_c00362{left:427.040000pt;}
.xa_c00362{left:432.000000pt;}
.x88_c00362{left:434.666667pt;}
.x5a_c00362{left:436.960000pt;}
.x64_c00362{left:438.666667pt;}
.xbe_c00362{left:440.000000pt;}
.x53_c00362{left:443.626667pt;}
.xb3_c00362{left:446.666667pt;}
.xb_c00362{left:449.333333pt;}
.x97_c00362{left:453.333333pt;}
.x19_c00362{left:454.666667pt;}
.xa0_c00362{left:456.000000pt;}
.x54_c00362{left:456.960000pt;}
.x75_c00362{left:458.666667pt;}
.x89_c00362{left:459.626667pt;}
.x7f_c00362{left:460.960000pt;}
.x6b_c00362{left:464.000000pt;}
.x1a_c00362{left:467.040000pt;}
.xa1_c00362{left:471.040000pt;}
.x98_c00362{left:472.000000pt;}
.x76_c00362{left:472.960000pt;}
.x65_c00362{left:476.000000pt;}
.x8a_c00362{left:477.706667pt;}
.x91_c00362{left:480.000000pt;}
.xb7_c00362{left:480.960000pt;}
.x40_c00362{left:483.040000pt;}
.x80_c00362{left:486.293333pt;}
.x6c_c00362{left:488.960000pt;}
.xc_c00362{left:490.293333pt;}
.xcf_c00362{left:492.000000pt;}
.x5b_c00362{left:493.333333pt;}
.xa2_c00362{left:494.666667pt;}
.x66_c00362{left:495.626667pt;}
.xbf_c00362{left:498.293333pt;}
.x55_c00362{left:502.466667pt;}
.x81_c00362{left:505.706667pt;}
.x38_c00362{left:508.000000pt;}
.x48_c00362{left:510.293333pt;}
.x1b_c00362{left:513.333333pt;}
.xc5_c00362{left:517.333333pt;}
.xd_c00362{left:518.666667pt;}
.x77_c00362{left:520.000000pt;}
.x99_c00362{left:521.333333pt;}
.x28_c00362{left:524.000000pt;}
.xc0_c00362{left:525.333333pt;}
.x67_c00362{left:528.000000pt;}
.x1c_c00362{left:532.373333pt;}
.x41_c00362{left:534.666667pt;}
.x56_c00362{left:538.666667pt;}
.x5c_c00362{left:540.960000pt;}
.xc9_c00362{left:543.626667pt;}
.xe_c00362{left:544.960000pt;}
.x92_c00362{left:546.666667pt;}
.xa8_c00362{left:552.000000pt;}
.x1d_c00362{left:554.293333pt;}
.x49_c00362{left:556.373333pt;}
.x39_c00362{left:560.960000pt;}
.xf_c00362{left:562.666667pt;}
.x78_c00362{left:564.000000pt;}
.x6d_c00362{left:569.333333pt;}
.xa3_c00362{left:572.373333pt;}
.x8b_c00362{left:573.333333pt;}
.x4a_c00362{left:575.040000pt;}
.x42_c00362{left:578.293333pt;}
.xa9_c00362{left:580.000000pt;}
.xb4_c00362{left:584.373333pt;}
.x10_c00362{left:588.373333pt;}
.x29_c00362{left:590.666667pt;}
.x93_c00362{left:593.706667pt;}
.x82_c00362{left:599.626667pt;}
.xb8_c00362{left:601.706667pt;}
.xc1_c00362{left:604.373333pt;}
.x4b_c00362{left:605.333333pt;}
.x1e_c00362{left:606.666667pt;}
.x3a_c00362{left:608.000000pt;}
.x8c_c00362{left:612.000000pt;}
.x6e_c00362{left:616.000000pt;}
.x4c_c00362{left:617.333333pt;}
.xd0_c00362{left:622.293333pt;}
.x2_c00362{left:626.293333pt;}
.xc6_c00362{left:632.000000pt;}
.xaa_c00362{left:636.960000pt;}
.x11_c00362{left:640.000000pt;}
.xd1_c00362{left:642.666667pt;}
.x9a_c00362{left:646.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_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_ec4ac115bb485bea1058031a.woff2')format("woff");}.ff1_c00363{font-family:ff1_c00363;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m56_c00363{transform:matrix(0.327922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327922,0.000000,0.000000,0.250000,0,0);}
.m74_c00363{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m33_c00363{transform:matrix(0.348739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348739,0.000000,0.000000,0.250000,0,0);}
.m60_c00363{transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);}
.m9f_c00363{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m5f_c00363{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m2f_c00363{transform:matrix(0.360084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360084,0.000000,0.000000,0.250000,0,0);}
.m83_c00363{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m1d_c00363{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m48_c00363{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m7d_c00363{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m3e_c00363{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.maa_c00363{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m7b_c00363{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.mc6_c00363{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m52_c00363{transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);}
.m6b_c00363{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.mac_c00363{transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);}
.m79_c00363{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m7c_c00363{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mc5_c00363{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m12_c00363{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m71_c00363{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m40_c00363{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m88_c00363{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mc2_c00363{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m55_c00363{transform:matrix(0.406120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406120,0.000000,0.000000,0.250000,0,0);}
.mc7_c00363{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m51_c00363{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m1b_c00363{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m34_c00363{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.md_c00363{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m6d_c00363{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.ma6_c00363{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m4b_c00363{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.mcc_c00363{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m4d_c00363{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.mc4_c00363{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mc8_c00363{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m6f_c00363{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mb9_c00363{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m7f_c00363{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m72_c00363{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.m54_c00363{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m58_c00363{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m70_c00363{transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);}
.m89_c00363{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m5d_c00363{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m99_c00363{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.mb3_c00363{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.mb_c00363{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m63_c00363{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m67_c00363{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m21_c00363{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.ma7_c00363{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m3c_c00363{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m6a_c00363{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m47_c00363{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.m6e_c00363{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.m18_c00363{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.m77_c00363{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m17_c00363{transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);}
.ma9_c00363{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m1e_c00363{transform:matrix(0.459184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459184,0.000000,0.000000,0.250000,0,0);}
.m65_c00363{transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);}
.ma_c00363{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m73_c00363{transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);}
.m8a_c00363{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m66_c00363{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m8f_c00363{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.m75_c00363{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m78_c00363{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m92_c00363{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mb2_c00363{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m86_c00363{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m4c_c00363{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m57_c00363{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m96_c00363{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.mca_c00363{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mbe_c00363{transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);}
.m87_c00363{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m90_c00363{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m4e_c00363{transform:matrix(0.497059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497059,0.000000,0.000000,0.250000,0,0);}
.m4_c00363{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);}
.ma2_c00363{transform:matrix(0.503711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503711,0.000000,0.000000,0.250000,0,0);}
.m35_c00363{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m38_c00363{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.ma4_c00363{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mbd_c00363{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m9b_c00363{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mce_c00363{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m42_c00363{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m6_c00363{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mc0_c00363{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m7_c00363{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m19_c00363{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mb4_c00363{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m2b_c00363{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.ma1_c00363{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mc9_c00363{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m29_c00363{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m82_c00363{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m1a_c00363{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m8e_c00363{transform:matrix(0.526438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526438,0.000000,0.000000,0.250000,0,0);}
.m9d_c00363{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mb8_c00363{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.maf_c00363{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mbb_c00363{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m5e_c00363{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.mb5_c00363{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m2d_c00363{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m64_c00363{transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);}
.m50_c00363{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m5_c00363{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mb6_c00363{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m32_c00363{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m3b_c00363{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m28_c00363{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mb0_c00363{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m37_c00363{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mb1_c00363{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m26_c00363{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m24_c00363{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m5c_c00363{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mb7_c00363{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);}
.m27_c00363{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mcd_c00363{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m6c_c00363{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m2c_c00363{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m2a_c00363{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m1c_c00363{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m30_c00363{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m7e_c00363{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m53_c00363{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m61_c00363{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m5b_c00363{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m84_c00363{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m94_c00363{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m93_c00363{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m97_c00363{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m22_c00363{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m3a_c00363{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m31_c00363{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m8c_c00363{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m3d_c00363{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.mc3_c00363{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m15_c00363{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mae_c00363{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mab_c00363{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.m95_c00363{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.mba_c00363{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m69_c00363{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.ma8_c00363{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m3_c00363{transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);}
.m2_c00363{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m4a_c00363{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.ma5_c00363{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m9a_c00363{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m25_c00363{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m68_c00363{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m9_c00363{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m2e_c00363{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.mad_c00363{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m3f_c00363{transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);}
.m91_c00363{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m14_c00363{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m44_c00363{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m81_c00363{transform:matrix(0.597510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597510,0.000000,0.000000,0.250000,0,0);}
.mc_c00363{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m76_c00363{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_c00363{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m43_c00363{transform:matrix(0.605809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605809,0.000000,0.000000,0.250000,0,0);}
.mbf_c00363{transform:matrix(0.606846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606846,0.000000,0.000000,0.250000,0,0);}
.m23_c00363{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m98_c00363{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m7a_c00363{transform:matrix(0.610588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610588,0.000000,0.000000,0.250000,0,0);}
.mf_c00363{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m5a_c00363{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.m20_c00363{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m39_c00363{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.me_c00363{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m10_c00363{transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);}
.m0_c00363{transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);}
.m13_c00363{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.mc1_c00363{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m4f_c00363{transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);}
.mcb_c00363{transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);}
.m16_c00363{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m46_c00363{transform:matrix(0.678824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.678824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.678824,0.000000,0.000000,0.250000,0,0);}
.m45_c00363{transform:matrix(0.692353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692353,0.000000,0.000000,0.250000,0,0);}
.m49_c00363{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m85_c00363{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m9c_c00363{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m8d_c00363{transform:matrix(0.705929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705929,0.000000,0.000000,0.250000,0,0);}
.m41_c00363{transform:matrix(0.715545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715545,0.000000,0.000000,0.250000,0,0);}
.m36_c00363{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.m8_c00363{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.ma0_c00363{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m1f_c00363{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.ma3_c00363{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m8b_c00363{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m80_c00363{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m9e_c00363{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m1_c00363{transform:matrix(0.812241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812241,0.000000,0.000000,0.250000,0,0);}
.mbc_c00363{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.m62_c00363{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m59_c00363{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00363{vertical-align:0.000000px;}
.v1_c00363{vertical-align:6.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;}
}
.ws2_c00363{word-spacing:-14.892000px;}
.ws1_c00363{word-spacing:-4.168560px;}
.ws0_c00363{word-spacing:-3.584672px;}
.ws3_c00363{word-spacing:0.000000px;}
._0_c00363{width:4.720063px;}
.fc0_c00363{color:transparent;}
.fs6_c00363{font-size:3.420000px;}
.fs1_c00363{font-size:18.720000px;}
.fs5_c00363{font-size:20.400000px;}
.fs3_c00363{font-size:25.500000px;}
.fs0_c00363{font-size:28.920000px;}
.fs4_c00363{font-size:32.340000px;}
.fs2_c00363{font-size:35.700000px;}
.fs7_c00363{font-size:39.120000px;}
.y0_c00363{bottom:0.000000px;}
.y9d_c00363{bottom:230.745000px;}
.y9c_c00363{bottom:232.470000px;}
.y9b_c00363{bottom:232.905000px;}
.y99_c00363{bottom:251.745000px;}
.y96_c00363{bottom:252.405000px;}
.y9a_c00363{bottom:253.470000px;}
.y97_c00363{bottom:253.905000px;}
.y98_c00363{bottom:253.920000px;}
.y95_c00363{bottom:271.245000px;}
.y94_c00363{bottom:273.405000px;}
.y93_c00363{bottom:290.745000px;}
.y90_c00363{bottom:291.405000px;}
.y92_c00363{bottom:291.825000px;}
.y8f_c00363{bottom:292.470000px;}
.y91_c00363{bottom:292.905000px;}
.y8c_c00363{bottom:310.245000px;}
.y8e_c00363{bottom:311.325000px;}
.y8d_c00363{bottom:311.970000px;}
.y8a_c00363{bottom:312.405000px;}
.y8b_c00363{bottom:313.470000px;}
.y88_c00363{bottom:329.745000px;}
.y87_c00363{bottom:331.905000px;}
.y89_c00363{bottom:332.970000px;}
.y85_c00363{bottom:350.745000px;}
.y83_c00363{bottom:350.970000px;}
.y82_c00363{bottom:351.405000px;}
.y84_c00363{bottom:351.825000px;}
.y86_c00363{bottom:352.905000px;}
.y7d_c00363{bottom:368.745000px;}
.y80_c00363{bottom:370.245000px;}
.y7e_c00363{bottom:370.905000px;}
.y81_c00363{bottom:371.970000px;}
.y7f_c00363{bottom:372.405000px;}
.y7a_c00363{bottom:389.745000px;}
.y7c_c00363{bottom:390.825000px;}
.y7b_c00363{bottom:391.470000px;}
.y78_c00363{bottom:391.905000px;}
.y79_c00363{bottom:391.920000px;}
.y74_c00363{bottom:408.825000px;}
.y77_c00363{bottom:409.245000px;}
.y76_c00363{bottom:410.130000px;}
.y75_c00363{bottom:411.405000px;}
.y73_c00363{bottom:429.630000px;}
.y72_c00363{bottom:429.825000px;}
.y70_c00363{bottom:430.905000px;}
.y71_c00363{bottom:431.970000px;}
.y6e_c00363{bottom:447.825000px;}
.y6f_c00363{bottom:448.245000px;}
.y6c_c00363{bottom:450.405000px;}
.y6d_c00363{bottom:450.630000px;}
.y68_c00363{bottom:469.245000px;}
.y6b_c00363{bottom:469.905000px;}
.y6a_c00363{bottom:470.130000px;}
.y67_c00363{bottom:470.970000px;}
.y69_c00363{bottom:471.405000px;}
.y64_c00363{bottom:488.745000px;}
.y63_c00363{bottom:489.405000px;}
.y66_c00363{bottom:489.825000px;}
.y65_c00363{bottom:490.470000px;}
.y62_c00363{bottom:490.905000px;}
.y5f_c00363{bottom:506.745000px;}
.y60_c00363{bottom:507.825000px;}
.y5d_c00363{bottom:508.905000px;}
.y5e_c00363{bottom:509.130000px;}
.y61_c00363{bottom:509.970000px;}
.y59_c00363{bottom:525.405000px;}
.y5a_c00363{bottom:526.905000px;}
.y5b_c00363{bottom:527.325000px;}
.y56_c00363{bottom:527.745000px;}
.y58_c00363{bottom:528.630000px;}
.y5c_c00363{bottom:528.825000px;}
.y57_c00363{bottom:529.905000px;}
.y53_c00363{bottom:546.405000px;}
.y55_c00363{bottom:546.825000px;}
.y52_c00363{bottom:547.245000px;}
.y51_c00363{bottom:549.405000px;}
.y54_c00363{bottom:549.630000px;}
.y50_c00363{bottom:565.905000px;}
.y4e_c00363{bottom:566.745000px;}
.y4f_c00363{bottom:567.825000px;}
.y4d_c00363{bottom:568.905000px;}
.y4c_c00363{bottom:569.970000px;}
.y4b_c00363{bottom:586.245000px;}
.y4a_c00363{bottom:588.405000px;}
.y49_c00363{bottom:606.825000px;}
.y47_c00363{bottom:607.245000px;}
.y44_c00363{bottom:607.905000px;}
.y45_c00363{bottom:608.130000px;}
.y48_c00363{bottom:609.405000px;}
.y46_c00363{bottom:609.420000px;}
.y42_c00363{bottom:625.905000px;}
.y43_c00363{bottom:626.745000px;}
.y40_c00363{bottom:627.405000px;}
.y41_c00363{bottom:627.825000px;}
.y3e_c00363{bottom:644.325000px;}
.y3b_c00363{bottom:646.245000px;}
.y3d_c00363{bottom:647.325000px;}
.y3f_c00363{bottom:648.405000px;}
.y3c_c00363{bottom:648.420000px;}
.y38_c00363{bottom:665.970000px;}
.y39_c00363{bottom:666.405000px;}
.y3a_c00363{bottom:667.905000px;}
.y33_c00363{bottom:683.745000px;}
.y37_c00363{bottom:684.180000px;}
.y34_c00363{bottom:685.245000px;}
.y36_c00363{bottom:687.405000px;}
.y35_c00363{bottom:687.420000px;}
.y32_c00363{bottom:710.970000px;}
.y31_c00363{bottom:711.825000px;}
.y30_c00363{bottom:712.905000px;}
.y2e_c00363{bottom:713.970000px;}
.y2f_c00363{bottom:715.050000px;}
.y2c_c00363{bottom:731.325000px;}
.y2b_c00363{bottom:731.550000px;}
.y2d_c00363{bottom:732.405000px;}
.y2a_c00363{bottom:734.550000px;}
.y29_c00363{bottom:754.245000px;}
.y28_c00363{bottom:755.325000px;}
.y27_c00363{bottom:755.970000px;}
.y26_c00363{bottom:756.405000px;}
.y25_c00363{bottom:784.905000px;}
.y23_c00363{bottom:823.245000px;}
.y21_c00363{bottom:823.905000px;}
.y24_c00363{bottom:824.130000px;}
.y22_c00363{bottom:824.970000px;}
.y20_c00363{bottom:842.745000px;}
.y1e_c00363{bottom:844.905000px;}
.y1f_c00363{bottom:845.970000px;}
.y1c_c00363{bottom:862.245000px;}
.y1d_c00363{bottom:863.130000px;}
.y1b_c00363{bottom:863.970000px;}
.y1a_c00363{bottom:864.405000px;}
.y18_c00363{bottom:879.405000px;}
.y19_c00363{bottom:881.745000px;}
.y17_c00363{bottom:883.905000px;}
.y15_c00363{bottom:902.745000px;}
.y11_c00363{bottom:903.405000px;}
.y13_c00363{bottom:903.630000px;}
.y12_c00363{bottom:903.825000px;}
.y16_c00363{bottom:904.470000px;}
.y14_c00363{bottom:904.905000px;}
.yc_c00363{bottom:921.825000px;}
.yf_c00363{bottom:922.245000px;}
.yd_c00363{bottom:923.970000px;}
.ye_c00363{bottom:924.405000px;}
.y10_c00363{bottom:925.470000px;}
.y6_c00363{bottom:940.245000px;}
.y8_c00363{bottom:941.745000px;}
.yb_c00363{bottom:941.970000px;}
.y7_c00363{bottom:943.470000px;}
.ya_c00363{bottom:943.905000px;}
.y9_c00363{bottom:944.970000px;}
.y5_c00363{bottom:961.245000px;}
.y2_c00363{bottom:961.905000px;}
.y4_c00363{bottom:962.130000px;}
.y3_c00363{bottom:963.405000px;}
.y1_c00363{bottom:1002.405000px;}
.h8_c00363{height:4.206533px;}
.h2_c00363{height:23.025234px;}
.h7_c00363{height:25.091602px;}
.h4_c00363{height:31.364502px;}
.h1_c00363{height:35.571035px;}
.h5_c00363{height:39.777568px;}
.h6_c00363{height:41.571035px;}
.h3_c00363{height:43.910303px;}
.h9_c00363{height:48.116836px;}
.h0_c00363{height:1335.000000px;}
.w0_c00363{width:880.500000px;}
.x0_c00363{left:0.000000px;}
.x10_c00363{left:151.080000px;}
.x6a_c00363{left:155.580000px;}
.x85_c00363{left:162.000000px;}
.x3_c00363{left:166.500000px;}
.x5e_c00363{left:168.420000px;}
.x64_c00363{left:172.500000px;}
.x26_c00363{left:178.920000px;}
.x32_c00363{left:184.500000px;}
.x86_c00363{left:187.500000px;}
.x96_c00363{left:190.500000px;}
.x8d_c00363{left:195.000000px;}
.x4_c00363{left:198.420000px;}
.xc3_c00363{left:200.580000px;}
.xc8_c00363{left:204.000000px;}
.x46_c00363{left:208.080000px;}
.x1b_c00363{left:211.500000px;}
.xbb_c00363{left:214.500000px;}
.xcc_c00363{left:217.080000px;}
.xaf_c00363{left:219.000000px;}
.x65_c00363{left:222.000000px;}
.xc9_c00363{left:223.920000px;}
.x33_c00363{left:229.080000px;}
.xa9_c00363{left:232.080000px;}
.x59_c00363{left:234.000000px;}
.xb0_c00363{left:235.080000px;}
.x47_c00363{left:238.500000px;}
.x4f_c00363{left:246.000000px;}
.xa2_c00363{left:247.500000px;}
.x1c_c00363{left:249.000000px;}
.x34_c00363{left:250.920000px;}
.x3c_c00363{left:252.000000px;}
.x7b_c00363{left:255.000000px;}
.x76_c00363{left:256.080000px;}
.x66_c00363{left:258.000000px;}
.x11_c00363{left:259.080000px;}
.x71_c00363{left:261.645000px;}
.x52_c00363{left:265.500000px;}
.xb1_c00363{left:267.420000px;}
.x6b_c00363{left:271.500000px;}
.x87_c00363{left:273.000000px;}
.xb6_c00363{left:274.080000px;}
.x27_c00363{left:276.000000px;}
.x35_c00363{left:279.000000px;}
.x8e_c00363{left:280.500000px;}
.x5_c00363{left:281.580000px;}
.x5f_c00363{left:288.000000px;}
.x12_c00363{left:291.000000px;}
.xcd_c00363{left:295.500000px;}
.x7c_c00363{left:297.000000px;}
.x6_c00363{left:300.420000px;}
.x97_c00363{left:301.500000px;}
.x1d_c00363{left:302.580000px;}
.x6c_c00363{left:304.500000px;}
.x28_c00363{left:306.000000px;}
.x50_c00363{left:308.580000px;}
.xaa_c00363{left:310.500000px;}
.xbc_c00363{left:312.000000px;}
.xb3_c00363{left:315.000000px;}
.x72_c00363{left:316.080000px;}
.x3d_c00363{left:317.580000px;}
.x13_c00363{left:319.500000px;}
.x6d_c00363{left:325.080000px;}
.x7_c00363{left:326.145000px;}
.x7d_c00363{left:328.080000px;}
.x70_c00363{left:331.080000px;}
.xb2_c00363{left:332.580000px;}
.x1e_c00363{left:334.920000px;}
.xa3_c00363{left:339.420000px;}
.x8f_c00363{left:342.000000px;}
.x98_c00363{left:343.920000px;}
.x48_c00363{left:346.500000px;}
.xb7_c00363{left:348.000000px;}
.x36_c00363{left:352.500000px;}
.x29_c00363{left:354.000000px;}
.x5a_c00363{left:355.920000px;}
.xbd_c00363{left:357.000000px;}
.x53_c00363{left:360.000000px;}
.x1f_c00363{left:363.000000px;}
.x3e_c00363{left:366.000000px;}
.x99_c00363{left:367.920000px;}
.x49_c00363{left:370.500000px;}
.x2a_c00363{left:372.420000px;}
.x1_c00363{left:374.580000px;}
.x8_c00363{left:379.080000px;}
.x51_c00363{left:387.000000px;}
.xb8_c00363{left:388.920000px;}
.x5b_c00363{left:390.000000px;}
.x56_c00363{left:392.580000px;}
.x9a_c00363{left:394.500000px;}
.x7e_c00363{left:396.000000px;}
.x14_c00363{left:399.000000px;}
.x20_c00363{left:400.500000px;}
.xce_c00363{left:401.580000px;}
.x37_c00363{left:406.080000px;}
.x60_c00363{left:408.000000px;}
.xb9_c00363{left:414.000000px;}
.x7f_c00363{left:415.500000px;}
.x88_c00363{left:416.580000px;}
.xd3_c00363{left:421.500000px;}
.x4a_c00363{left:423.000000px;}
.xab_c00363{left:427.500000px;}
.x2_c00363{left:430.080000px;}
.x3f_c00363{left:431.580000px;}
.x89_c00363{left:433.500000px;}
.x54_c00363{left:435.000000px;}
.xc4_c00363{left:439.500000px;}
.xac_c00363{left:442.500000px;}
.x80_c00363{left:444.420000px;}
.x9_c00363{left:445.920000px;}
.xd0_c00363{left:448.500000px;}
.x90_c00363{left:450.000000px;}
.x15_c00363{left:451.080000px;}
.x73_c00363{left:459.000000px;}
.x9b_c00363{left:462.000000px;}
.xd4_c00363{left:463.920000px;}
.x21_c00363{left:467.580000px;}
.x67_c00363{left:468.855000px;}
.x57_c00363{left:471.420000px;}
.xca_c00363{left:472.500000px;}
.xa4_c00363{left:475.080000px;}
.xbe_c00363{left:478.500000px;}
.x81_c00363{left:479.580000px;}
.x77_c00363{left:481.500000px;}
.x40_c00363{left:483.000000px;}
.x8a_c00363{left:487.920000px;}
.x2b_c00363{left:489.000000px;}
.x58_c00363{left:490.080000px;}
.xa_c00363{left:493.080000px;}
.x9c_c00363{left:495.000000px;}
.x16_c00363{left:499.500000px;}
.x91_c00363{left:501.000000px;}
.xcf_c00363{left:502.500000px;}
.x5c_c00363{left:504.000000px;}
.x38_c00363{left:505.500000px;}
.xd1_c00363{left:508.080000px;}
.x55_c00363{left:509.580000px;}
.x8b_c00363{left:513.000000px;}
.xc5_c00363{left:517.500000px;}
.x4b_c00363{left:519.000000px;}
.x9d_c00363{left:522.000000px;}
.x78_c00363{left:526.500000px;}
.xb_c00363{left:529.500000px;}
.x5d_c00363{left:531.420000px;}
.xd5_c00363{left:534.000000px;}
.x2c_c00363{left:536.580000px;}
.x17_c00363{left:538.500000px;}
.xbf_c00363{left:544.920000px;}
.x41_c00363{left:547.920000px;}
.xa5_c00363{left:550.500000px;}
.x4c_c00363{left:555.000000px;}
.x9e_c00363{left:559.500000px;}
.x92_c00363{left:560.580000px;}
.xc_c00363{left:566.580000px;}
.x2d_c00363{left:568.500000px;}
.x22_c00363{left:570.000000px;}
.x39_c00363{left:573.000000px;}
.x18_c00363{left:576.000000px;}
.x42_c00363{left:577.500000px;}
.x6e_c00363{left:579.000000px;}
.xc0_c00363{left:580.920000px;}
.x74_c00363{left:582.000000px;}
.xd_c00363{left:583.920000px;}
.x4d_c00363{left:585.000000px;}
.xcb_c00363{left:586.500000px;}
.xb4_c00363{left:589.275000px;}
.x82_c00363{left:591.420000px;}
.x23_c00363{left:592.920000px;}
.x61_c00363{left:595.500000px;}
.x2e_c00363{left:598.500000px;}
.x8c_c00363{left:606.420000px;}
.xad_c00363{left:607.920000px;}
.xe_c00363{left:609.420000px;}
.xd2_c00363{left:616.500000px;}
.x2f_c00363{left:618.420000px;}
.x3a_c00363{left:621.000000px;}
.x19_c00363{left:624.000000px;}
.x68_c00363{left:625.275000px;}
.x93_c00363{left:628.500000px;}
.x43_c00363{left:631.500000px;}
.x83_c00363{left:633.855000px;}
.xae_c00363{left:634.920000px;}
.xc6_c00363{left:637.500000px;}
.x9f_c00363{left:639.000000px;}
.xa6_c00363{left:640.080000px;}
.x1a_c00363{left:643.500000px;}
.x30_c00363{left:645.000000px;}
.x79_c00363{left:649.920000px;}
.x62_c00363{left:653.580000px;}
.x4e_c00363{left:658.500000px;}
.xa7_c00363{left:660.420000px;}
.x24_c00363{left:663.000000px;}
.x84_c00363{left:664.500000px;}
.xa0_c00363{left:666.420000px;}
.xc1_c00363{left:670.920000px;}
.xf_c00363{left:672.000000px;}
.xba_c00363{left:673.080000px;}
.x44_c00363{left:674.580000px;}
.x6f_c00363{left:678.000000px;}
.x7a_c00363{left:679.500000px;}
.x31_c00363{left:681.000000px;}
.x3b_c00363{left:685.080000px;}
.xa8_c00363{left:687.000000px;}
.xc7_c00363{left:690.000000px;}
.x94_c00363{left:691.500000px;}
.xa1_c00363{left:693.000000px;}
.xb5_c00363{left:694.500000px;}
.xc2_c00363{left:696.000000px;}
.x69_c00363{left:700.500000px;}
.x63_c00363{left:703.275000px;}
.x45_c00363{left:706.920000px;}
.x95_c00363{left:708.420000px;}
.x75_c00363{left:709.500000px;}
.x25_c00363{left:715.080000px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.v1_c00363{vertical-align:5.333333pt;}
.ls0_c00363{letter-spacing:0.000000pt;}
.ws2_c00363{word-spacing:-13.237333pt;}
.ws1_c00363{word-spacing:-3.705387pt;}
.ws0_c00363{word-spacing:-3.186375pt;}
.ws3_c00363{word-spacing:0.000000pt;}
._0_c00363{width:4.195611pt;}
.fs6_c00363{font-size:3.040000pt;}
.fs1_c00363{font-size:16.640000pt;}
.fs5_c00363{font-size:18.133333pt;}
.fs3_c00363{font-size:22.666667pt;}
.fs0_c00363{font-size:25.706667pt;}
.fs4_c00363{font-size:28.746667pt;}
.fs2_c00363{font-size:31.733333pt;}
.fs7_c00363{font-size:34.773333pt;}
.y0_c00363{bottom:0.000000pt;}
.y9d_c00363{bottom:205.106667pt;}
.y9c_c00363{bottom:206.640000pt;}
.y9b_c00363{bottom:207.026667pt;}
.y99_c00363{bottom:223.773333pt;}
.y96_c00363{bottom:224.360000pt;}
.y9a_c00363{bottom:225.306667pt;}
.y97_c00363{bottom:225.693333pt;}
.y98_c00363{bottom:225.706667pt;}
.y95_c00363{bottom:241.106667pt;}
.y94_c00363{bottom:243.026667pt;}
.y93_c00363{bottom:258.440000pt;}
.y90_c00363{bottom:259.026667pt;}
.y92_c00363{bottom:259.400000pt;}
.y8f_c00363{bottom:259.973333pt;}
.y91_c00363{bottom:260.360000pt;}
.y8c_c00363{bottom:275.773333pt;}
.y8e_c00363{bottom:276.733333pt;}
.y8d_c00363{bottom:277.306667pt;}
.y8a_c00363{bottom:277.693333pt;}
.y8b_c00363{bottom:278.640000pt;}
.y88_c00363{bottom:293.106667pt;}
.y87_c00363{bottom:295.026667pt;}
.y89_c00363{bottom:295.973333pt;}
.y85_c00363{bottom:311.773333pt;}
.y83_c00363{bottom:311.973333pt;}
.y82_c00363{bottom:312.360000pt;}
.y84_c00363{bottom:312.733333pt;}
.y86_c00363{bottom:313.693333pt;}
.y7d_c00363{bottom:327.773333pt;}
.y80_c00363{bottom:329.106667pt;}
.y7e_c00363{bottom:329.693333pt;}
.y81_c00363{bottom:330.640000pt;}
.y7f_c00363{bottom:331.026667pt;}
.y7a_c00363{bottom:346.440000pt;}
.y7c_c00363{bottom:347.400000pt;}
.y7b_c00363{bottom:347.973333pt;}
.y78_c00363{bottom:348.360000pt;}
.y79_c00363{bottom:348.373333pt;}
.y74_c00363{bottom:363.400000pt;}
.y77_c00363{bottom:363.773333pt;}
.y76_c00363{bottom:364.560000pt;}
.y75_c00363{bottom:365.693333pt;}
.y73_c00363{bottom:381.893333pt;}
.y72_c00363{bottom:382.066667pt;}
.y70_c00363{bottom:383.026667pt;}
.y71_c00363{bottom:383.973333pt;}
.y6e_c00363{bottom:398.066667pt;}
.y6f_c00363{bottom:398.440000pt;}
.y6c_c00363{bottom:400.360000pt;}
.y6d_c00363{bottom:400.560000pt;}
.y68_c00363{bottom:417.106667pt;}
.y6b_c00363{bottom:417.693333pt;}
.y6a_c00363{bottom:417.893333pt;}
.y67_c00363{bottom:418.640000pt;}
.y69_c00363{bottom:419.026667pt;}
.y64_c00363{bottom:434.440000pt;}
.y63_c00363{bottom:435.026667pt;}
.y66_c00363{bottom:435.400000pt;}
.y65_c00363{bottom:435.973333pt;}
.y62_c00363{bottom:436.360000pt;}
.y5f_c00363{bottom:450.440000pt;}
.y60_c00363{bottom:451.400000pt;}
.y5d_c00363{bottom:452.360000pt;}
.y5e_c00363{bottom:452.560000pt;}
.y61_c00363{bottom:453.306667pt;}
.y59_c00363{bottom:467.026667pt;}
.y5a_c00363{bottom:468.360000pt;}
.y5b_c00363{bottom:468.733333pt;}
.y56_c00363{bottom:469.106667pt;}
.y58_c00363{bottom:469.893333pt;}
.y5c_c00363{bottom:470.066667pt;}
.y57_c00363{bottom:471.026667pt;}
.y53_c00363{bottom:485.693333pt;}
.y55_c00363{bottom:486.066667pt;}
.y52_c00363{bottom:486.440000pt;}
.y51_c00363{bottom:488.360000pt;}
.y54_c00363{bottom:488.560000pt;}
.y50_c00363{bottom:503.026667pt;}
.y4e_c00363{bottom:503.773333pt;}
.y4f_c00363{bottom:504.733333pt;}
.y4d_c00363{bottom:505.693333pt;}
.y4c_c00363{bottom:506.640000pt;}
.y4b_c00363{bottom:521.106667pt;}
.y4a_c00363{bottom:523.026667pt;}
.y49_c00363{bottom:539.400000pt;}
.y47_c00363{bottom:539.773333pt;}
.y44_c00363{bottom:540.360000pt;}
.y45_c00363{bottom:540.560000pt;}
.y48_c00363{bottom:541.693333pt;}
.y46_c00363{bottom:541.706667pt;}
.y42_c00363{bottom:556.360000pt;}
.y43_c00363{bottom:557.106667pt;}
.y40_c00363{bottom:557.693333pt;}
.y41_c00363{bottom:558.066667pt;}
.y3e_c00363{bottom:572.733333pt;}
.y3b_c00363{bottom:574.440000pt;}
.y3d_c00363{bottom:575.400000pt;}
.y3f_c00363{bottom:576.360000pt;}
.y3c_c00363{bottom:576.373333pt;}
.y38_c00363{bottom:591.973333pt;}
.y39_c00363{bottom:592.360000pt;}
.y3a_c00363{bottom:593.693333pt;}
.y33_c00363{bottom:607.773333pt;}
.y37_c00363{bottom:608.160000pt;}
.y34_c00363{bottom:609.106667pt;}
.y36_c00363{bottom:611.026667pt;}
.y35_c00363{bottom:611.040000pt;}
.y32_c00363{bottom:631.973333pt;}
.y31_c00363{bottom:632.733333pt;}
.y30_c00363{bottom:633.693333pt;}
.y2e_c00363{bottom:634.640000pt;}
.y2f_c00363{bottom:635.600000pt;}
.y2c_c00363{bottom:650.066667pt;}
.y2b_c00363{bottom:650.266667pt;}
.y2d_c00363{bottom:651.026667pt;}
.y2a_c00363{bottom:652.933333pt;}
.y29_c00363{bottom:670.440000pt;}
.y28_c00363{bottom:671.400000pt;}
.y27_c00363{bottom:671.973333pt;}
.y26_c00363{bottom:672.360000pt;}
.y25_c00363{bottom:697.693333pt;}
.y23_c00363{bottom:731.773333pt;}
.y21_c00363{bottom:732.360000pt;}
.y24_c00363{bottom:732.560000pt;}
.y22_c00363{bottom:733.306667pt;}
.y20_c00363{bottom:749.106667pt;}
.y1e_c00363{bottom:751.026667pt;}
.y1f_c00363{bottom:751.973333pt;}
.y1c_c00363{bottom:766.440000pt;}
.y1d_c00363{bottom:767.226667pt;}
.y1b_c00363{bottom:767.973333pt;}
.y1a_c00363{bottom:768.360000pt;}
.y18_c00363{bottom:781.693333pt;}
.y19_c00363{bottom:783.773333pt;}
.y17_c00363{bottom:785.693333pt;}
.y15_c00363{bottom:802.440000pt;}
.y11_c00363{bottom:803.026667pt;}
.y13_c00363{bottom:803.226667pt;}
.y12_c00363{bottom:803.400000pt;}
.y16_c00363{bottom:803.973333pt;}
.y14_c00363{bottom:804.360000pt;}
.yc_c00363{bottom:819.400000pt;}
.yf_c00363{bottom:819.773333pt;}
.yd_c00363{bottom:821.306667pt;}
.ye_c00363{bottom:821.693333pt;}
.y10_c00363{bottom:822.640000pt;}
.y6_c00363{bottom:835.773333pt;}
.y8_c00363{bottom:837.106667pt;}
.yb_c00363{bottom:837.306667pt;}
.y7_c00363{bottom:838.640000pt;}
.ya_c00363{bottom:839.026667pt;}
.y9_c00363{bottom:839.973333pt;}
.y5_c00363{bottom:854.440000pt;}
.y2_c00363{bottom:855.026667pt;}
.y4_c00363{bottom:855.226667pt;}
.y3_c00363{bottom:856.360000pt;}
.y1_c00363{bottom:891.026667pt;}
.h8_c00363{height:3.739141pt;}
.h2_c00363{height:20.466875pt;}
.h7_c00363{height:22.303646pt;}
.h4_c00363{height:27.879557pt;}
.h1_c00363{height:31.618698pt;}
.h5_c00363{height:35.357839pt;}
.h6_c00363{height:36.952031pt;}
.h3_c00363{height:39.031380pt;}
.h9_c00363{height:42.770521pt;}
.h0_c00363{height:1186.666667pt;}
.w0_c00363{width:782.666667pt;}
.x0_c00363{left:0.000000pt;}
.x10_c00363{left:134.293333pt;}
.x6a_c00363{left:138.293333pt;}
.x85_c00363{left:144.000000pt;}
.x3_c00363{left:148.000000pt;}
.x5e_c00363{left:149.706667pt;}
.x64_c00363{left:153.333333pt;}
.x26_c00363{left:159.040000pt;}
.x32_c00363{left:164.000000pt;}
.x86_c00363{left:166.666667pt;}
.x96_c00363{left:169.333333pt;}
.x8d_c00363{left:173.333333pt;}
.x4_c00363{left:176.373333pt;}
.xc3_c00363{left:178.293333pt;}
.xc8_c00363{left:181.333333pt;}
.x46_c00363{left:184.960000pt;}
.x1b_c00363{left:188.000000pt;}
.xbb_c00363{left:190.666667pt;}
.xcc_c00363{left:192.960000pt;}
.xaf_c00363{left:194.666667pt;}
.x65_c00363{left:197.333333pt;}
.xc9_c00363{left:199.040000pt;}
.x33_c00363{left:203.626667pt;}
.xa9_c00363{left:206.293333pt;}
.x59_c00363{left:208.000000pt;}
.xb0_c00363{left:208.960000pt;}
.x47_c00363{left:212.000000pt;}
.x4f_c00363{left:218.666667pt;}
.xa2_c00363{left:220.000000pt;}
.x1c_c00363{left:221.333333pt;}
.x34_c00363{left:223.040000pt;}
.x3c_c00363{left:224.000000pt;}
.x7b_c00363{left:226.666667pt;}
.x76_c00363{left:227.626667pt;}
.x66_c00363{left:229.333333pt;}
.x11_c00363{left:230.293333pt;}
.x71_c00363{left:232.573333pt;}
.x52_c00363{left:236.000000pt;}
.xb1_c00363{left:237.706667pt;}
.x6b_c00363{left:241.333333pt;}
.x87_c00363{left:242.666667pt;}
.xb6_c00363{left:243.626667pt;}
.x27_c00363{left:245.333333pt;}
.x35_c00363{left:248.000000pt;}
.x8e_c00363{left:249.333333pt;}
.x5_c00363{left:250.293333pt;}
.x5f_c00363{left:256.000000pt;}
.x12_c00363{left:258.666667pt;}
.xcd_c00363{left:262.666667pt;}
.x7c_c00363{left:264.000000pt;}
.x6_c00363{left:267.040000pt;}
.x97_c00363{left:268.000000pt;}
.x1d_c00363{left:268.960000pt;}
.x6c_c00363{left:270.666667pt;}
.x28_c00363{left:272.000000pt;}
.x50_c00363{left:274.293333pt;}
.xaa_c00363{left:276.000000pt;}
.xbc_c00363{left:277.333333pt;}
.xb3_c00363{left:280.000000pt;}
.x72_c00363{left:280.960000pt;}
.x3d_c00363{left:282.293333pt;}
.x13_c00363{left:284.000000pt;}
.x6d_c00363{left:288.960000pt;}
.x7_c00363{left:289.906667pt;}
.x7d_c00363{left:291.626667pt;}
.x70_c00363{left:294.293333pt;}
.xb2_c00363{left:295.626667pt;}
.x1e_c00363{left:297.706667pt;}
.xa3_c00363{left:301.706667pt;}
.x8f_c00363{left:304.000000pt;}
.x98_c00363{left:305.706667pt;}
.x48_c00363{left:308.000000pt;}
.xb7_c00363{left:309.333333pt;}
.x36_c00363{left:313.333333pt;}
.x29_c00363{left:314.666667pt;}
.x5a_c00363{left:316.373333pt;}
.xbd_c00363{left:317.333333pt;}
.x53_c00363{left:320.000000pt;}
.x1f_c00363{left:322.666667pt;}
.x3e_c00363{left:325.333333pt;}
.x99_c00363{left:327.040000pt;}
.x49_c00363{left:329.333333pt;}
.x2a_c00363{left:331.040000pt;}
.x1_c00363{left:332.960000pt;}
.x8_c00363{left:336.960000pt;}
.x51_c00363{left:344.000000pt;}
.xb8_c00363{left:345.706667pt;}
.x5b_c00363{left:346.666667pt;}
.x56_c00363{left:348.960000pt;}
.x9a_c00363{left:350.666667pt;}
.x7e_c00363{left:352.000000pt;}
.x14_c00363{left:354.666667pt;}
.x20_c00363{left:356.000000pt;}
.xce_c00363{left:356.960000pt;}
.x37_c00363{left:360.960000pt;}
.x60_c00363{left:362.666667pt;}
.xb9_c00363{left:368.000000pt;}
.x7f_c00363{left:369.333333pt;}
.x88_c00363{left:370.293333pt;}
.xd3_c00363{left:374.666667pt;}
.x4a_c00363{left:376.000000pt;}
.xab_c00363{left:380.000000pt;}
.x2_c00363{left:382.293333pt;}
.x3f_c00363{left:383.626667pt;}
.x89_c00363{left:385.333333pt;}
.x54_c00363{left:386.666667pt;}
.xc4_c00363{left:390.666667pt;}
.xac_c00363{left:393.333333pt;}
.x80_c00363{left:395.040000pt;}
.x9_c00363{left:396.373333pt;}
.xd0_c00363{left:398.666667pt;}
.x90_c00363{left:400.000000pt;}
.x15_c00363{left:400.960000pt;}
.x73_c00363{left:408.000000pt;}
.x9b_c00363{left:410.666667pt;}
.xd4_c00363{left:412.373333pt;}
.x21_c00363{left:415.626667pt;}
.x67_c00363{left:416.760000pt;}
.x57_c00363{left:419.040000pt;}
.xca_c00363{left:420.000000pt;}
.xa4_c00363{left:422.293333pt;}
.xbe_c00363{left:425.333333pt;}
.x81_c00363{left:426.293333pt;}
.x77_c00363{left:428.000000pt;}
.x40_c00363{left:429.333333pt;}
.x8a_c00363{left:433.706667pt;}
.x2b_c00363{left:434.666667pt;}
.x58_c00363{left:435.626667pt;}
.xa_c00363{left:438.293333pt;}
.x9c_c00363{left:440.000000pt;}
.x16_c00363{left:444.000000pt;}
.x91_c00363{left:445.333333pt;}
.xcf_c00363{left:446.666667pt;}
.x5c_c00363{left:448.000000pt;}
.x38_c00363{left:449.333333pt;}
.xd1_c00363{left:451.626667pt;}
.x55_c00363{left:452.960000pt;}
.x8b_c00363{left:456.000000pt;}
.xc5_c00363{left:460.000000pt;}
.x4b_c00363{left:461.333333pt;}
.x9d_c00363{left:464.000000pt;}
.x78_c00363{left:468.000000pt;}
.xb_c00363{left:470.666667pt;}
.x5d_c00363{left:472.373333pt;}
.xd5_c00363{left:474.666667pt;}
.x2c_c00363{left:476.960000pt;}
.x17_c00363{left:478.666667pt;}
.xbf_c00363{left:484.373333pt;}
.x41_c00363{left:487.040000pt;}
.xa5_c00363{left:489.333333pt;}
.x4c_c00363{left:493.333333pt;}
.x9e_c00363{left:497.333333pt;}
.x92_c00363{left:498.293333pt;}
.xc_c00363{left:503.626667pt;}
.x2d_c00363{left:505.333333pt;}
.x22_c00363{left:506.666667pt;}
.x39_c00363{left:509.333333pt;}
.x18_c00363{left:512.000000pt;}
.x42_c00363{left:513.333333pt;}
.x6e_c00363{left:514.666667pt;}
.xc0_c00363{left:516.373333pt;}
.x74_c00363{left:517.333333pt;}
.xd_c00363{left:519.040000pt;}
.x4d_c00363{left:520.000000pt;}
.xcb_c00363{left:521.333333pt;}
.xb4_c00363{left:523.800000pt;}
.x82_c00363{left:525.706667pt;}
.x23_c00363{left:527.040000pt;}
.x61_c00363{left:529.333333pt;}
.x2e_c00363{left:532.000000pt;}
.x8c_c00363{left:539.040000pt;}
.xad_c00363{left:540.373333pt;}
.xe_c00363{left:541.706667pt;}
.xd2_c00363{left:548.000000pt;}
.x2f_c00363{left:549.706667pt;}
.x3a_c00363{left:552.000000pt;}
.x19_c00363{left:554.666667pt;}
.x68_c00363{left:555.800000pt;}
.x93_c00363{left:558.666667pt;}
.x43_c00363{left:561.333333pt;}
.x83_c00363{left:563.426667pt;}
.xae_c00363{left:564.373333pt;}
.xc6_c00363{left:566.666667pt;}
.x9f_c00363{left:568.000000pt;}
.xa6_c00363{left:568.960000pt;}
.x1a_c00363{left:572.000000pt;}
.x30_c00363{left:573.333333pt;}
.x79_c00363{left:577.706667pt;}
.x62_c00363{left:580.960000pt;}
.x4e_c00363{left:585.333333pt;}
.xa7_c00363{left:587.040000pt;}
.x24_c00363{left:589.333333pt;}
.x84_c00363{left:590.666667pt;}
.xa0_c00363{left:592.373333pt;}
.xc1_c00363{left:596.373333pt;}
.xf_c00363{left:597.333333pt;}
.xba_c00363{left:598.293333pt;}
.x44_c00363{left:599.626667pt;}
.x6f_c00363{left:602.666667pt;}
.x7a_c00363{left:604.000000pt;}
.x31_c00363{left:605.333333pt;}
.x3b_c00363{left:608.960000pt;}
.xa8_c00363{left:610.666667pt;}
.xc7_c00363{left:613.333333pt;}
.x94_c00363{left:614.666667pt;}
.xa1_c00363{left:616.000000pt;}
.xb5_c00363{left:617.333333pt;}
.xc2_c00363{left:618.666667pt;}
.x69_c00363{left:622.666667pt;}
.x63_c00363{left:625.133333pt;}
.x45_c00363{left:628.373333pt;}
.x95_c00363{left:629.706667pt;}
.x75_c00363{left:630.666667pt;}
.x25_c00363{left:635.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_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_65b0a08debaa905924db259e.woff2')format("woff");}.ff1_c00364{font-family:ff1_c00364;line-height:1.688965;font-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_c00364{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.m94_c00364{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m77_c00364{transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);}
.mf_c00364{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_c00364{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.md3_c00364{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m30_c00364{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m64_c00364{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m2a_c00364{transform:matrix(0.366181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366181,0.000000,0.000000,0.250000,0,0);}
.m38_c00364{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m15_c00364{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m97_c00364{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m5c_c00364{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m96_c00364{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m76_c00364{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m69_c00364{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m49_c00364{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m79_c00364{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m6b_c00364{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mc7_c00364{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.me_c00364{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mb2_c00364{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mb0_c00364{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.mdb_c00364{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m1d_c00364{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m9d_c00364{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.md_c00364{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.me9_c00364{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.ma6_c00364{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m12_c00364{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.md8_c00364{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.me1_c00364{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m40_c00364{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mb1_c00364{transform:matrix(0.409509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409509,0.000000,0.000000,0.250000,0,0);}
.m57_c00364{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mcb_c00364{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m7d_c00364{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.me3_c00364{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mce_c00364{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m66_c00364{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m58_c00364{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mda_c00364{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.md7_c00364{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.maf_c00364{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m4b_c00364{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m61_c00364{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m6f_c00364{transform:matrix(0.421150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421150,0.000000,0.000000,0.250000,0,0);}
.m93_c00364{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m16_c00364{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.me5_c00364{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m1a_c00364{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m46_c00364{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m89_c00364{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.mc1_c00364{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.mde_c00364{transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);}
.mbc_c00364{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mb7_c00364{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m8f_c00364{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m72_c00364{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m2f_c00364{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.me7_c00364{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m48_c00364{transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);}
.m9b_c00364{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m1f_c00364{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mc_c00364{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.mdf_c00364{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m6c_c00364{transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);}
.mca_c00364{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mc0_c00364{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m3d_c00364{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m13_c00364{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m52_c00364{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m84_c00364{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m7e_c00364{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.mb3_c00364{transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);}
.mbe_c00364{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.mc9_c00364{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m42_c00364{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.mc5_c00364{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m8e_c00364{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mb8_c00364{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m19_c00364{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m80_c00364{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.me4_c00364{transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);}
.md5_c00364{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m51_c00364{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.me2_c00364{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.m68_c00364{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.mc3_c00364{transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);}
.m5e_c00364{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m44_c00364{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m2d_c00364{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mc6_c00364{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m22_c00364{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m95_c00364{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m87_c00364{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.md1_c00364{transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);}
.m5f_c00364{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.ma1_c00364{transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);}
.m8a_c00364{transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);}
.m21_c00364{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m9e_c00364{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m90_c00364{transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);}
.m0_c00364{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m2e_c00364{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.ma5_c00364{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mbd_c00364{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m85_c00364{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.mcc_c00364{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.md9_c00364{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.mb_c00364{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);}
.m45_c00364{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m7_c00364{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m8c_c00364{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.ma2_c00364{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.mb5_c00364{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.mcf_c00364{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m92_c00364{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m20_c00364{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m62_c00364{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m56_c00364{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mbf_c00364{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m8_c00364{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m4e_c00364{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m25_c00364{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mab_c00364{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mb4_c00364{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.md4_c00364{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m6_c00364{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m71_c00364{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m78_c00364{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m24_c00364{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m75_c00364{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m86_c00364{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mc4_c00364{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m7f_c00364{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m8d_c00364{transform:matrix(0.529685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529685,0.000000,0.000000,0.250000,0,0);}
.m9f_c00364{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m91_c00364{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m5_c00364{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m43_c00364{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m54_c00364{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.ma0_c00364{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m6e_c00364{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m3a_c00364{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m59_c00364{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.ma8_c00364{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m3_c00364{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m70_c00364{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m27_c00364{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m4a_c00364{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mc8_c00364{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m26_c00364{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m7a_c00364{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m55_c00364{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m9c_c00364{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.maa_c00364{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m1c_c00364{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m3c_c00364{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m31_c00364{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mac_c00364{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m5a_c00364{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m83_c00364{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mcd_c00364{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m17_c00364{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m2c_c00364{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m47_c00364{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m65_c00364{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);}
.ma3_c00364{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.ma_c00364{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m1e_c00364{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m9a_c00364{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m4f_c00364{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m36_c00364{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m4_c00364{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mb6_c00364{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m28_c00364{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mae_c00364{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m63_c00364{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.me6_c00364{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.mbb_c00364{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m29_c00364{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.ma4_c00364{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.mea_c00364{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m9_c00364{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m4c_c00364{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m39_c00364{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m50_c00364{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m7c_c00364{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m5d_c00364{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m73_c00364{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m10_c00364{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.mdd_c00364{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m67_c00364{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.m53_c00364{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m74_c00364{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m8b_c00364{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m60_c00364{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.ma7_c00364{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mb9_c00364{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m5b_c00364{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.m6a_c00364{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m23_c00364{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.me8_c00364{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.m82_c00364{transform:matrix(0.611765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611765,0.000000,0.000000,0.250000,0,0);}
.m18_c00364{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m37_c00364{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m3b_c00364{transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);}
.m2b_c00364{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mc2_c00364{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.md2_c00364{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_c00364{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m11_c00364{transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);}
.m3f_c00364{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mdc_c00364{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m1_c00364{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m41_c00364{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.mba_c00364{transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);}
.m14_c00364{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m35_c00364{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m6d_c00364{transform:matrix(0.695882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695882,0.000000,0.000000,0.250000,0,0);}
.m88_c00364{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m3e_c00364{transform:matrix(0.723529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.723529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.723529,0.000000,0.000000,0.250000,0,0);}
.m99_c00364{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m7b_c00364{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m34_c00364{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m1b_c00364{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m98_c00364{transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);}
.md6_c00364{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.me0_c00364{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m4d_c00364{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m2_c00364{transform:matrix(0.780837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780837,0.000000,0.000000,0.250000,0,0);}
.meb_c00364{transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);}
.m81_c00364{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.ma9_c00364{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.md0_c00364{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,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;}
}
.ws1_c00364{word-spacing:-4.763089px;}
.ws0_c00364{word-spacing:-0.706019px;}
.ws2_c00364{word-spacing:0.000000px;}
.fc0_c00364{color:transparent;}
.fs2_c00364{font-size:13.620000px;}
.fs6_c00364{font-size:18.720000px;}
.fs1_c00364{font-size:20.400000px;}
.fs5_c00364{font-size:25.500000px;}
.fs0_c00364{font-size:28.920000px;}
.fs3_c00364{font-size:32.340000px;}
.fs4_c00364{font-size:35.700000px;}
.fs7_c00364{font-size:39.120000px;}
.y0_c00364{bottom:0.000000px;}
.y3_c00364{bottom:228.195000px;}
.yc9_c00364{bottom:251.745000px;}
.ycb_c00364{bottom:253.245000px;}
.yca_c00364{bottom:254.130000px;}
.yc8_c00364{bottom:255.405000px;}
.yc7_c00364{bottom:272.745000px;}
.yc6_c00364{bottom:274.905000px;}
.yc1_c00364{bottom:292.245000px;}
.yc5_c00364{bottom:292.470000px;}
.yc0_c00364{bottom:293.325000px;}
.yc2_c00364{bottom:293.745000px;}
.ybf_c00364{bottom:294.405000px;}
.yc3_c00364{bottom:295.905000px;}
.yc4_c00364{bottom:296.970000px;}
.yb8_c00364{bottom:311.745000px;}
.yb9_c00364{bottom:312.825000px;}
.ybd_c00364{bottom:313.245000px;}
.ybb_c00364{bottom:313.905000px;}
.yba_c00364{bottom:314.130000px;}
.ybe_c00364{bottom:314.970000px;}
.ybc_c00364{bottom:315.405000px;}
.yb6_c00364{bottom:330.405000px;}
.yb4_c00364{bottom:332.745000px;}
.yb3_c00364{bottom:333.405000px;}
.yb5_c00364{bottom:334.905000px;}
.yb7_c00364{bottom:335.970000px;}
.yb2_c00364{bottom:352.245000px;}
.yb1_c00364{bottom:354.405000px;}
.yab_c00364{bottom:370.245000px;}
.yad_c00364{bottom:371.745000px;}
.yac_c00364{bottom:372.630000px;}
.yae_c00364{bottom:372.825000px;}
.yaf_c00364{bottom:373.470000px;}
.yb0_c00364{bottom:373.905000px;}
.ya5_c00364{bottom:390.405000px;}
.ya4_c00364{bottom:391.245000px;}
.ya6_c00364{bottom:391.470000px;}
.ya8_c00364{bottom:392.325000px;}
.ya3_c00364{bottom:392.550000px;}
.ya7_c00364{bottom:393.405000px;}
.ya9_c00364{bottom:393.630000px;}
.yaa_c00364{bottom:394.470000px;}
.y9f_c00364{bottom:409.905000px;}
.ya0_c00364{bottom:410.745000px;}
.ya2_c00364{bottom:411.825000px;}
.y9e_c00364{bottom:412.905000px;}
.ya1_c00364{bottom:413.130000px;}
.y9c_c00364{bottom:430.245000px;}
.y9d_c00364{bottom:432.405000px;}
.y99_c00364{bottom:449.745000px;}
.y98_c00364{bottom:449.970000px;}
.y97_c00364{bottom:450.405000px;}
.y95_c00364{bottom:451.245000px;}
.y9b_c00364{bottom:451.470000px;}
.y94_c00364{bottom:451.905000px;}
.y9a_c00364{bottom:452.130000px;}
.y96_c00364{bottom:452.325000px;}
.y91_c00364{bottom:470.325000px;}
.y93_c00364{bottom:470.745000px;}
.y90_c00364{bottom:471.405000px;}
.y92_c00364{bottom:472.905000px;}
.y8c_c00364{bottom:490.245000px;}
.y8f_c00364{bottom:491.130000px;}
.y8d_c00364{bottom:491.325000px;}
.y8b_c00364{bottom:492.405000px;}
.y8e_c00364{bottom:493.470000px;}
.y89_c00364{bottom:509.745000px;}
.y8a_c00364{bottom:511.905000px;}
.y86_c00364{bottom:529.245000px;}
.y87_c00364{bottom:530.325000px;}
.y85_c00364{bottom:531.405000px;}
.y88_c00364{bottom:532.470000px;}
.y83_c00364{bottom:548.325000px;}
.y80_c00364{bottom:549.180000px;}
.y81_c00364{bottom:550.245000px;}
.y84_c00364{bottom:551.130000px;}
.y82_c00364{bottom:552.405000px;}
.y7f_c00364{bottom:568.245000px;}
.y7e_c00364{bottom:570.405000px;}
.y79_c00364{bottom:586.905000px;}
.y7c_c00364{bottom:589.245000px;}
.y78_c00364{bottom:589.905000px;}
.y7d_c00364{bottom:590.130000px;}
.y7b_c00364{bottom:590.970000px;}
.y7a_c00364{bottom:591.405000px;}
.y77_c00364{bottom:606.405000px;}
.y74_c00364{bottom:608.745000px;}
.y72_c00364{bottom:609.405000px;}
.y75_c00364{bottom:609.630000px;}
.y76_c00364{bottom:610.470000px;}
.y73_c00364{bottom:610.905000px;}
.y6e_c00364{bottom:625.905000px;}
.y71_c00364{bottom:628.245000px;}
.y6f_c00364{bottom:628.905000px;}
.y70_c00364{bottom:630.405000px;}
.y6b_c00364{bottom:647.745000px;}
.y6c_c00364{bottom:648.630000px;}
.y6d_c00364{bottom:648.825000px;}
.y6a_c00364{bottom:649.905000px;}
.y65_c00364{bottom:665.745000px;}
.y69_c00364{bottom:667.245000px;}
.y67_c00364{bottom:668.130000px;}
.y66_c00364{bottom:669.405000px;}
.y68_c00364{bottom:670.470000px;}
.y64_c00364{bottom:686.745000px;}
.y63_c00364{bottom:688.905000px;}
.y5f_c00364{bottom:705.405000px;}
.y61_c00364{bottom:706.245000px;}
.y60_c00364{bottom:707.325000px;}
.y5e_c00364{bottom:708.405000px;}
.y62_c00364{bottom:709.470000px;}
.y5b_c00364{bottom:725.745000px;}
.y58_c00364{bottom:726.825000px;}
.y5d_c00364{bottom:727.245000px;}
.y59_c00364{bottom:727.905000px;}
.y5a_c00364{bottom:728.130000px;}
.y5c_c00364{bottom:729.405000px;}
.y53_c00364{bottom:745.245000px;}
.y55_c00364{bottom:746.325000px;}
.y52_c00364{bottom:747.405000px;}
.y56_c00364{bottom:747.630000px;}
.y54_c00364{bottom:748.470000px;}
.y57_c00364{bottom:748.905000px;}
.y4f_c00364{bottom:764.745000px;}
.y4e_c00364{bottom:766.245000px;}
.y4d_c00364{bottom:766.905000px;}
.y51_c00364{bottom:767.130000px;}
.y50_c00364{bottom:768.405000px;}
.y4c_c00364{bottom:784.905000px;}
.y4a_c00364{bottom:785.745000px;}
.y4b_c00364{bottom:787.905000px;}
.y49_c00364{bottom:806.325000px;}
.y48_c00364{bottom:807.405000px;}
.y47_c00364{bottom:808.470000px;}
.y45_c00364{bottom:823.905000px;}
.y43_c00364{bottom:824.745000px;}
.y44_c00364{bottom:824.970000px;}
.y46_c00364{bottom:826.470000px;}
.y42_c00364{bottom:826.905000px;}
.y3e_c00364{bottom:844.245000px;}
.y3f_c00364{bottom:845.970000px;}
.y41_c00364{bottom:846.405000px;}
.y40_c00364{bottom:847.470000px;}
.y3a_c00364{bottom:863.325000px;}
.y38_c00364{bottom:863.745000px;}
.y3d_c00364{bottom:865.245000px;}
.y39_c00364{bottom:865.905000px;}
.y3b_c00364{bottom:866.130000px;}
.y3c_c00364{bottom:866.970000px;}
.y34_c00364{bottom:883.245000px;}
.y32_c00364{bottom:884.130000px;}
.y37_c00364{bottom:884.325000px;}
.y35_c00364{bottom:884.745000px;}
.y33_c00364{bottom:885.405000px;}
.y31_c00364{bottom:886.470000px;}
.y36_c00364{bottom:886.905000px;}
.y2d_c00364{bottom:903.825000px;}
.y2e_c00364{bottom:904.245000px;}
.y2f_c00364{bottom:905.970000px;}
.y30_c00364{bottom:906.405000px;}
.y2c_c00364{bottom:925.905000px;}
.y27_c00364{bottom:941.970000px;}
.y28_c00364{bottom:943.245000px;}
.y29_c00364{bottom:944.325000px;}
.y26_c00364{bottom:945.405000px;}
.y2a_c00364{bottom:945.630000px;}
.y2b_c00364{bottom:946.470000px;}
.y22_c00364{bottom:961.470000px;}
.y23_c00364{bottom:962.745000px;}
.y25_c00364{bottom:963.825000px;}
.y21_c00364{bottom:964.905000px;}
.y24_c00364{bottom:965.970000px;}
.y1a_c00364{bottom:979.905000px;}
.y1d_c00364{bottom:981.180000px;}
.y1c_c00364{bottom:982.245000px;}
.y1f_c00364{bottom:983.970000px;}
.y1b_c00364{bottom:984.405000px;}
.y1e_c00364{bottom:984.630000px;}
.y20_c00364{bottom:985.470000px;}
.y17_c00364{bottom:1000.905000px;}
.y16_c00364{bottom:1001.745000px;}
.y18_c00364{bottom:1002.180000px;}
.y15_c00364{bottom:1003.905000px;}
.y19_c00364{bottom:1005.405000px;}
.y11_c00364{bottom:1021.245000px;}
.y10_c00364{bottom:1023.405000px;}
.y13_c00364{bottom:1023.825000px;}
.y14_c00364{bottom:1024.470000px;}
.y12_c00364{bottom:1024.905000px;}
.ya_c00364{bottom:1040.745000px;}
.ye_c00364{bottom:1041.825000px;}
.yc_c00364{bottom:1042.245000px;}
.yb_c00364{bottom:1043.130000px;}
.yf_c00364{bottom:1043.325000px;}
.y9_c00364{bottom:1043.970000px;}
.yd_c00364{bottom:1044.405000px;}
.y8_c00364{bottom:1060.470000px;}
.y7_c00364{bottom:1061.745000px;}
.y4_c00364{bottom:1062.405000px;}
.y6_c00364{bottom:1062.825000px;}
.y5_c00364{bottom:1063.905000px;}
.y1_c00364{bottom:1099.905000px;}
.y2_c00364{bottom:1102.050000px;}
.h3_c00364{height:16.752334px;}
.h7_c00364{height:23.025234px;}
.h2_c00364{height:25.091602px;}
.h6_c00364{height:31.364502px;}
.h1_c00364{height:35.571035px;}
.h4_c00364{height:39.777568px;}
.h5_c00364{height:43.910303px;}
.h8_c00364{height:48.116836px;}
.h0_c00364{height:1335.000000px;}
.w0_c00364{width:880.500000px;}
.x0_c00364{left:0.000000px;}
.x49_c00364{left:151.500000px;}
.x4_c00364{left:153.000000px;}
.xac_c00364{left:154.275000px;}
.x7c_c00364{left:167.580000px;}
.x5c_c00364{left:169.500000px;}
.xfa_c00364{left:172.080000px;}
.x67_c00364{left:175.920000px;}
.xe3_c00364{left:178.080000px;}
.xd6_c00364{left:180.000000px;}
.xa2_c00364{left:183.000000px;}
.x85_c00364{left:184.080000px;}
.x4a_c00364{left:186.420000px;}
.xad_c00364{left:187.500000px;}
.x20_c00364{left:189.000000px;}
.x10e_c00364{left:190.500000px;}
.x37_c00364{left:192.420000px;}
.x5a_c00364{left:195.420000px;}
.xdf_c00364{left:196.500000px;}
.xb5_c00364{left:198.000000px;}
.x9b_c00364{left:199.500000px;}
.xea_c00364{left:200.580000px;}
.x78_c00364{left:202.080000px;}
.xf5_c00364{left:203.580000px;}
.xfb_c00364{left:208.275000px;}
.x13_c00364{left:211.500000px;}
.xbe_c00364{left:213.000000px;}
.x5_c00364{left:214.080000px;}
.x86_c00364{left:216.000000px;}
.x6f_c00364{left:217.920000px;}
.x38_c00364{left:219.000000px;}
.x106_c00364{left:220.080000px;}
.x41_c00364{left:221.580000px;}
.x2c_c00364{left:223.080000px;}
.x4b_c00364{left:225.000000px;}
.xa8_c00364{left:226.080000px;}
.x21_c00364{left:228.000000px;}
.xd7_c00364{left:229.080000px;}
.xcd_c00364{left:230.580000px;}
.x5b_c00364{left:231.645000px;}
.x94_c00364{left:234.000000px;}
.xe0_c00364{left:235.500000px;}
.xc8_c00364{left:236.580000px;}
.x5d_c00364{left:238.080000px;}
.xc2_c00364{left:241.080000px;}
.x70_c00364{left:243.000000px;}
.xb6_c00364{left:244.500000px;}
.x6_c00364{left:246.420000px;}
.xd8_c00364{left:247.920000px;}
.x8d_c00364{left:250.275000px;}
.x101_c00364{left:251.580000px;}
.xe4_c00364{left:254.580000px;}
.x10d_c00364{left:255.855000px;}
.xcc_c00364{left:258.000000px;}
.x68_c00364{left:259.500000px;}
.x4c_c00364{left:263.580000px;}
.xeb_c00364{left:264.645000px;}
.xae_c00364{left:265.920000px;}
.x10a_c00364{left:268.920000px;}
.x79_c00364{left:270.420000px;}
.x2d_c00364{left:271.920000px;}
.x95_c00364{left:273.000000px;}
.x7_c00364{left:274.080000px;}
.x39_c00364{left:276.000000px;}
.xce_c00364{left:277.500000px;}
.xfc_c00364{left:280.500000px;}
.x5e_c00364{left:284.580000px;}
.xc3_c00364{left:286.080000px;}
.x9c_c00364{left:291.000000px;}
.xb7_c00364{left:292.500000px;}
.x96_c00364{left:294.420000px;}
.x14_c00364{left:295.500000px;}
.xf6_c00364{left:296.580000px;}
.x2e_c00364{left:298.080000px;}
.xc9_c00364{left:301.920000px;}
.xe5_c00364{left:303.000000px;}
.xbf_c00364{left:304.500000px;}
.x7a_c00364{left:307.920000px;}
.x22_c00364{left:310.500000px;}
.x102_c00364{left:313.920000px;}
.x87_c00364{left:315.000000px;}
.x42_c00364{left:316.080000px;}
.x4d_c00364{left:318.000000px;}
.xec_c00364{left:320.580000px;}
.x71_c00364{left:322.500000px;}
.x97_c00364{left:324.420000px;}
.xfd_c00364{left:325.920000px;}
.x5f_c00364{left:327.000000px;}
.xcf_c00364{left:330.000000px;}
.x8_c00364{left:333.645000px;}
.x7b_c00364{left:334.920000px;}
.x9d_c00364{left:337.500000px;}
.x23_c00364{left:339.420000px;}
.x4e_c00364{left:340.920000px;}
.x10f_c00364{left:342.000000px;}
.x2f_c00364{left:348.420000px;}
.xa3_c00364{left:349.920000px;}
.x15_c00364{left:351.000000px;}
.xe6_c00364{left:352.080000px;}
.xd9_c00364{left:353.580000px;}
.x8e_c00364{left:355.080000px;}
.x89_c00364{left:357.000000px;}
.x7d_c00364{left:359.580000px;}
.x69_c00364{left:361.500000px;}
.x103_c00364{left:363.000000px;}
.xd0_c00364{left:364.500000px;}
.x4f_c00364{left:366.645000px;}
.xe1_c00364{left:368.580000px;}
.x16_c00364{left:370.500000px;}
.xaf_c00364{left:373.080000px;}
.x8f_c00364{left:375.000000px;}
.xb8_c00364{left:378.420000px;}
.x3a_c00364{left:379.500000px;}
.xa4_c00364{left:383.580000px;}
.x7e_c00364{left:387.420000px;}
.x9_c00364{left:389.580000px;}
.x43_c00364{left:391.500000px;}
.xb0_c00364{left:393.000000px;}
.x6a_c00364{left:394.500000px;}
.x8a_c00364{left:396.000000px;}
.x17_c00364{left:397.500000px;}
.x24_c00364{left:398.580000px;}
.xda_c00364{left:400.500000px;}
.x90_c00364{left:402.000000px;}
.x72_c00364{left:403.080000px;}
.xe7_c00364{left:404.580000px;}
.xfe_c00364{left:407.580000px;}
.x30_c00364{left:409.500000px;}
.x50_c00364{left:411.000000px;}
.x88_c00364{left:412.080000px;}
.x2_c00364{left:414.000000px;}
.x7f_c00364{left:417.000000px;}
.x110_c00364{left:418.080000px;}
.xa_c00364{left:421.080000px;}
.xd1_c00364{left:423.000000px;}
.xc4_c00364{left:426.420000px;}
.x25_c00364{left:429.000000px;}
.x44_c00364{left:431.580000px;}
.x80_c00364{left:436.500000px;}
.xb9_c00364{left:439.500000px;}
.x10b_c00364{left:441.000000px;}
.xb_c00364{left:442.920000px;}
.x26_c00364{left:445.500000px;}
.x51_c00364{left:447.420000px;}
.xed_c00364{left:451.080000px;}
.x18_c00364{left:453.000000px;}
.x73_c00364{left:454.920000px;}
.xc0_c00364{left:456.000000px;}
.x31_c00364{left:457.500000px;}
.x3b_c00364{left:458.580000px;}
.x81_c00364{left:460.080000px;}
.x9e_c00364{left:464.145000px;}
.x60_c00364{left:466.920000px;}
.xba_c00364{left:468.000000px;}
.xc_c00364{left:469.920000px;}
.x104_c00364{left:471.000000px;}
.x6b_c00364{left:472.920000px;}
.xc5_c00364{left:474.000000px;}
.x3c_c00364{left:477.420000px;}
.xdb_c00364{left:478.500000px;}
.xf2_c00364{left:480.645000px;}
.x27_c00364{left:482.580000px;}
.x45_c00364{left:484.500000px;}
.x52_c00364{left:486.000000px;}
.x74_c00364{left:489.000000px;}
.x91_c00364{left:490.500000px;}
.xc1_c00364{left:492.420000px;}
.x46_c00364{left:499.080000px;}
.xd_c00364{left:503.580000px;}
.xb1_c00364{left:507.000000px;}
.xdc_c00364{left:508.920000px;}
.x9f_c00364{left:510.000000px;}
.xf7_c00364{left:511.500000px;}
.x61_c00364{left:512.580000px;}
.xd2_c00364{left:514.500000px;}
.xff_c00364{left:516.000000px;}
.x75_c00364{left:519.420000px;}
.x53_c00364{left:522.000000px;}
.xe_c00364{left:523.500000px;}
.x82_c00364{left:525.000000px;}
.xf3_c00364{left:526.080000px;}
.x32_c00364{left:527.580000px;}
.xa9_c00364{left:529.080000px;}
.x107_c00364{left:531.000000px;}
.x19_c00364{left:532.500000px;}
.xb2_c00364{left:535.500000px;}
.x3d_c00364{left:537.000000px;}
.xbb_c00364{left:538.080000px;}
.xc6_c00364{left:541.080000px;}
.x92_c00364{left:543.000000px;}
.x62_c00364{left:544.080000px;}
.xee_c00364{left:545.775000px;}
.x33_c00364{left:547.500000px;}
.x28_c00364{left:548.580000px;}
.xd3_c00364{left:550.080000px;}
.x54_c00364{left:552.000000px;}
.x83_c00364{left:555.000000px;}
.x3e_c00364{left:556.500000px;}
.xf4_c00364{left:558.000000px;}
.xf8_c00364{left:559.500000px;}
.x100_c00364{left:561.420000px;}
.xaa_c00364{left:562.500000px;}
.x55_c00364{left:564.000000px;}
.x1a_c00364{left:567.420000px;}
.xa0_c00364{left:568.500000px;}
.xf_c00364{left:569.580000px;}
.x98_c00364{left:571.920000px;}
.xdd_c00364{left:573.420000px;}
.x34_c00364{left:574.920000px;}
.x108_c00364{left:577.500000px;}
.x29_c00364{left:579.000000px;}
.x6c_c00364{left:585.000000px;}
.xef_c00364{left:586.920000px;}
.xab_c00364{left:588.000000px;}
.x63_c00364{left:591.420000px;}
.xd4_c00364{left:595.500000px;}
.x76_c00364{left:598.080000px;}
.x47_c00364{left:600.420000px;}
.xa5_c00364{left:601.500000px;}
.x56_c00364{left:602.580000px;}
.xca_c00364{left:604.500000px;}
.xbc_c00364{left:607.080000px;}
.x1b_c00364{left:609.000000px;}
.x35_c00364{left:612.420000px;}
.x99_c00364{left:613.500000px;}
.x6d_c00364{left:614.580000px;}
.xb3_c00364{left:616.500000px;}
.x3f_c00364{left:618.000000px;}
.x64_c00364{left:619.500000px;}
.xa1_c00364{left:621.420000px;}
.xd5_c00364{left:622.500000px;}
.x10_c00364{left:623.580000px;}
.xf0_c00364{left:625.500000px;}
.x84_c00364{left:628.500000px;}
.x57_c00364{left:632.580000px;}
.x8b_c00364{left:635.580000px;}
.xbd_c00364{left:637.920000px;}
.x93_c00364{left:639.000000px;}
.x2a_c00364{left:640.500000px;}
.x77_c00364{left:643.500000px;}
.x40_c00364{left:645.000000px;}
.xa6_c00364{left:646.500000px;}
.xf9_c00364{left:649.500000px;}
.xe2_c00364{left:651.000000px;}
.xcb_c00364{left:652.500000px;}
.x1c_c00364{left:655.500000px;}
.x65_c00364{left:658.080000px;}
.xe8_c00364{left:661.500000px;}
.xf1_c00364{left:663.000000px;}
.x9a_c00364{left:664.500000px;}
.x58_c00364{left:666.000000px;}
.x48_c00364{left:667.920000px;}
.x8c_c00364{left:669.000000px;}
.x11_c00364{left:670.500000px;}
.x36_c00364{left:671.580000px;}
.x109_c00364{left:673.080000px;}
.x1d_c00364{left:675.000000px;}
.xb4_c00364{left:680.580000px;}
.x6e_c00364{left:686.580000px;}
.xa7_c00364{left:688.500000px;}
.xde_c00364{left:691.920000px;}
.x12_c00364{left:697.080000px;}
.xc7_c00364{left:699.000000px;}
.x2b_c00364{left:700.500000px;}
.x1e_c00364{left:702.000000px;}
.x59_c00364{left:705.000000px;}
.x1_c00364{left:706.080000px;}
.x105_c00364{left:708.420000px;}
.xe9_c00364{left:712.500000px;}
.x66_c00364{left:715.500000px;}
.x10c_c00364{left:717.000000px;}
.x3_c00364{left:720.000000px;}
.x1f_c00364{left:721.500000px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.ls0_c00364{letter-spacing:0.000000pt;}
.ws1_c00364{word-spacing:-4.233857pt;}
.ws0_c00364{word-spacing:-0.627573pt;}
.ws2_c00364{word-spacing:0.000000pt;}
.fs2_c00364{font-size:12.106667pt;}
.fs6_c00364{font-size:16.640000pt;}
.fs1_c00364{font-size:18.133333pt;}
.fs5_c00364{font-size:22.666667pt;}
.fs0_c00364{font-size:25.706667pt;}
.fs3_c00364{font-size:28.746667pt;}
.fs4_c00364{font-size:31.733333pt;}
.fs7_c00364{font-size:34.773333pt;}
.y0_c00364{bottom:0.000000pt;}
.y3_c00364{bottom:202.840000pt;}
.yc9_c00364{bottom:223.773333pt;}
.ycb_c00364{bottom:225.106667pt;}
.yca_c00364{bottom:225.893333pt;}
.yc8_c00364{bottom:227.026667pt;}
.yc7_c00364{bottom:242.440000pt;}
.yc6_c00364{bottom:244.360000pt;}
.yc1_c00364{bottom:259.773333pt;}
.yc5_c00364{bottom:259.973333pt;}
.yc0_c00364{bottom:260.733333pt;}
.yc2_c00364{bottom:261.106667pt;}
.ybf_c00364{bottom:261.693333pt;}
.yc3_c00364{bottom:263.026667pt;}
.yc4_c00364{bottom:263.973333pt;}
.yb8_c00364{bottom:277.106667pt;}
.yb9_c00364{bottom:278.066667pt;}
.ybd_c00364{bottom:278.440000pt;}
.ybb_c00364{bottom:279.026667pt;}
.yba_c00364{bottom:279.226667pt;}
.ybe_c00364{bottom:279.973333pt;}
.ybc_c00364{bottom:280.360000pt;}
.yb6_c00364{bottom:293.693333pt;}
.yb4_c00364{bottom:295.773333pt;}
.yb3_c00364{bottom:296.360000pt;}
.yb5_c00364{bottom:297.693333pt;}
.yb7_c00364{bottom:298.640000pt;}
.yb2_c00364{bottom:313.106667pt;}
.yb1_c00364{bottom:315.026667pt;}
.yab_c00364{bottom:329.106667pt;}
.yad_c00364{bottom:330.440000pt;}
.yac_c00364{bottom:331.226667pt;}
.yae_c00364{bottom:331.400000pt;}
.yaf_c00364{bottom:331.973333pt;}
.yb0_c00364{bottom:332.360000pt;}
.ya5_c00364{bottom:347.026667pt;}
.ya4_c00364{bottom:347.773333pt;}
.ya6_c00364{bottom:347.973333pt;}
.ya8_c00364{bottom:348.733333pt;}
.ya3_c00364{bottom:348.933333pt;}
.ya7_c00364{bottom:349.693333pt;}
.ya9_c00364{bottom:349.893333pt;}
.yaa_c00364{bottom:350.640000pt;}
.y9f_c00364{bottom:364.360000pt;}
.ya0_c00364{bottom:365.106667pt;}
.ya2_c00364{bottom:366.066667pt;}
.y9e_c00364{bottom:367.026667pt;}
.ya1_c00364{bottom:367.226667pt;}
.y9c_c00364{bottom:382.440000pt;}
.y9d_c00364{bottom:384.360000pt;}
.y99_c00364{bottom:399.773333pt;}
.y98_c00364{bottom:399.973333pt;}
.y97_c00364{bottom:400.360000pt;}
.y95_c00364{bottom:401.106667pt;}
.y9b_c00364{bottom:401.306667pt;}
.y94_c00364{bottom:401.693333pt;}
.y9a_c00364{bottom:401.893333pt;}
.y96_c00364{bottom:402.066667pt;}
.y91_c00364{bottom:418.066667pt;}
.y93_c00364{bottom:418.440000pt;}
.y90_c00364{bottom:419.026667pt;}
.y92_c00364{bottom:420.360000pt;}
.y8c_c00364{bottom:435.773333pt;}
.y8f_c00364{bottom:436.560000pt;}
.y8d_c00364{bottom:436.733333pt;}
.y8b_c00364{bottom:437.693333pt;}
.y8e_c00364{bottom:438.640000pt;}
.y89_c00364{bottom:453.106667pt;}
.y8a_c00364{bottom:455.026667pt;}
.y86_c00364{bottom:470.440000pt;}
.y87_c00364{bottom:471.400000pt;}
.y85_c00364{bottom:472.360000pt;}
.y88_c00364{bottom:473.306667pt;}
.y83_c00364{bottom:487.400000pt;}
.y80_c00364{bottom:488.160000pt;}
.y81_c00364{bottom:489.106667pt;}
.y84_c00364{bottom:489.893333pt;}
.y82_c00364{bottom:491.026667pt;}
.y7f_c00364{bottom:505.106667pt;}
.y7e_c00364{bottom:507.026667pt;}
.y79_c00364{bottom:521.693333pt;}
.y7c_c00364{bottom:523.773333pt;}
.y78_c00364{bottom:524.360000pt;}
.y7d_c00364{bottom:524.560000pt;}
.y7b_c00364{bottom:525.306667pt;}
.y7a_c00364{bottom:525.693333pt;}
.y77_c00364{bottom:539.026667pt;}
.y74_c00364{bottom:541.106667pt;}
.y72_c00364{bottom:541.693333pt;}
.y75_c00364{bottom:541.893333pt;}
.y76_c00364{bottom:542.640000pt;}
.y73_c00364{bottom:543.026667pt;}
.y6e_c00364{bottom:556.360000pt;}
.y71_c00364{bottom:558.440000pt;}
.y6f_c00364{bottom:559.026667pt;}
.y70_c00364{bottom:560.360000pt;}
.y6b_c00364{bottom:575.773333pt;}
.y6c_c00364{bottom:576.560000pt;}
.y6d_c00364{bottom:576.733333pt;}
.y6a_c00364{bottom:577.693333pt;}
.y65_c00364{bottom:591.773333pt;}
.y69_c00364{bottom:593.106667pt;}
.y67_c00364{bottom:593.893333pt;}
.y66_c00364{bottom:595.026667pt;}
.y68_c00364{bottom:595.973333pt;}
.y64_c00364{bottom:610.440000pt;}
.y63_c00364{bottom:612.360000pt;}
.y5f_c00364{bottom:627.026667pt;}
.y61_c00364{bottom:627.773333pt;}
.y60_c00364{bottom:628.733333pt;}
.y5e_c00364{bottom:629.693333pt;}
.y62_c00364{bottom:630.640000pt;}
.y5b_c00364{bottom:645.106667pt;}
.y58_c00364{bottom:646.066667pt;}
.y5d_c00364{bottom:646.440000pt;}
.y59_c00364{bottom:647.026667pt;}
.y5a_c00364{bottom:647.226667pt;}
.y5c_c00364{bottom:648.360000pt;}
.y53_c00364{bottom:662.440000pt;}
.y55_c00364{bottom:663.400000pt;}
.y52_c00364{bottom:664.360000pt;}
.y56_c00364{bottom:664.560000pt;}
.y54_c00364{bottom:665.306667pt;}
.y57_c00364{bottom:665.693333pt;}
.y4f_c00364{bottom:679.773333pt;}
.y4e_c00364{bottom:681.106667pt;}
.y4d_c00364{bottom:681.693333pt;}
.y51_c00364{bottom:681.893333pt;}
.y50_c00364{bottom:683.026667pt;}
.y4c_c00364{bottom:697.693333pt;}
.y4a_c00364{bottom:698.440000pt;}
.y4b_c00364{bottom:700.360000pt;}
.y49_c00364{bottom:716.733333pt;}
.y48_c00364{bottom:717.693333pt;}
.y47_c00364{bottom:718.640000pt;}
.y45_c00364{bottom:732.360000pt;}
.y43_c00364{bottom:733.106667pt;}
.y44_c00364{bottom:733.306667pt;}
.y46_c00364{bottom:734.640000pt;}
.y42_c00364{bottom:735.026667pt;}
.y3e_c00364{bottom:750.440000pt;}
.y3f_c00364{bottom:751.973333pt;}
.y41_c00364{bottom:752.360000pt;}
.y40_c00364{bottom:753.306667pt;}
.y3a_c00364{bottom:767.400000pt;}
.y38_c00364{bottom:767.773333pt;}
.y3d_c00364{bottom:769.106667pt;}
.y39_c00364{bottom:769.693333pt;}
.y3b_c00364{bottom:769.893333pt;}
.y3c_c00364{bottom:770.640000pt;}
.y34_c00364{bottom:785.106667pt;}
.y32_c00364{bottom:785.893333pt;}
.y37_c00364{bottom:786.066667pt;}
.y35_c00364{bottom:786.440000pt;}
.y33_c00364{bottom:787.026667pt;}
.y31_c00364{bottom:787.973333pt;}
.y36_c00364{bottom:788.360000pt;}
.y2d_c00364{bottom:803.400000pt;}
.y2e_c00364{bottom:803.773333pt;}
.y2f_c00364{bottom:805.306667pt;}
.y30_c00364{bottom:805.693333pt;}
.y2c_c00364{bottom:823.026667pt;}
.y27_c00364{bottom:837.306667pt;}
.y28_c00364{bottom:838.440000pt;}
.y29_c00364{bottom:839.400000pt;}
.y26_c00364{bottom:840.360000pt;}
.y2a_c00364{bottom:840.560000pt;}
.y2b_c00364{bottom:841.306667pt;}
.y22_c00364{bottom:854.640000pt;}
.y23_c00364{bottom:855.773333pt;}
.y25_c00364{bottom:856.733333pt;}
.y21_c00364{bottom:857.693333pt;}
.y24_c00364{bottom:858.640000pt;}
.y1a_c00364{bottom:871.026667pt;}
.y1d_c00364{bottom:872.160000pt;}
.y1c_c00364{bottom:873.106667pt;}
.y1f_c00364{bottom:874.640000pt;}
.y1b_c00364{bottom:875.026667pt;}
.y1e_c00364{bottom:875.226667pt;}
.y20_c00364{bottom:875.973333pt;}
.y17_c00364{bottom:889.693333pt;}
.y16_c00364{bottom:890.440000pt;}
.y18_c00364{bottom:890.826667pt;}
.y15_c00364{bottom:892.360000pt;}
.y19_c00364{bottom:893.693333pt;}
.y11_c00364{bottom:907.773333pt;}
.y10_c00364{bottom:909.693333pt;}
.y13_c00364{bottom:910.066667pt;}
.y14_c00364{bottom:910.640000pt;}
.y12_c00364{bottom:911.026667pt;}
.ya_c00364{bottom:925.106667pt;}
.ye_c00364{bottom:926.066667pt;}
.yc_c00364{bottom:926.440000pt;}
.yb_c00364{bottom:927.226667pt;}
.yf_c00364{bottom:927.400000pt;}
.y9_c00364{bottom:927.973333pt;}
.yd_c00364{bottom:928.360000pt;}
.y8_c00364{bottom:942.640000pt;}
.y7_c00364{bottom:943.773333pt;}
.y4_c00364{bottom:944.360000pt;}
.y6_c00364{bottom:944.733333pt;}
.y5_c00364{bottom:945.693333pt;}
.y1_c00364{bottom:977.693333pt;}
.y2_c00364{bottom:979.600000pt;}
.h3_c00364{height:14.890964pt;}
.h7_c00364{height:20.466875pt;}
.h2_c00364{height:22.303646pt;}
.h6_c00364{height:27.879557pt;}
.h1_c00364{height:31.618698pt;}
.h4_c00364{height:35.357839pt;}
.h5_c00364{height:39.031380pt;}
.h8_c00364{height:42.770521pt;}
.h0_c00364{height:1186.666667pt;}
.w0_c00364{width:782.666667pt;}
.x0_c00364{left:0.000000pt;}
.x49_c00364{left:134.666667pt;}
.x4_c00364{left:136.000000pt;}
.xac_c00364{left:137.133333pt;}
.x7c_c00364{left:148.960000pt;}
.x5c_c00364{left:150.666667pt;}
.xfa_c00364{left:152.960000pt;}
.x67_c00364{left:156.373333pt;}
.xe3_c00364{left:158.293333pt;}
.xd6_c00364{left:160.000000pt;}
.xa2_c00364{left:162.666667pt;}
.x85_c00364{left:163.626667pt;}
.x4a_c00364{left:165.706667pt;}
.xad_c00364{left:166.666667pt;}
.x20_c00364{left:168.000000pt;}
.x10e_c00364{left:169.333333pt;}
.x37_c00364{left:171.040000pt;}
.x5a_c00364{left:173.706667pt;}
.xdf_c00364{left:174.666667pt;}
.xb5_c00364{left:176.000000pt;}
.x9b_c00364{left:177.333333pt;}
.xea_c00364{left:178.293333pt;}
.x78_c00364{left:179.626667pt;}
.xf5_c00364{left:180.960000pt;}
.xfb_c00364{left:185.133333pt;}
.x13_c00364{left:188.000000pt;}
.xbe_c00364{left:189.333333pt;}
.x5_c00364{left:190.293333pt;}
.x86_c00364{left:192.000000pt;}
.x6f_c00364{left:193.706667pt;}
.x38_c00364{left:194.666667pt;}
.x106_c00364{left:195.626667pt;}
.x41_c00364{left:196.960000pt;}
.x2c_c00364{left:198.293333pt;}
.x4b_c00364{left:200.000000pt;}
.xa8_c00364{left:200.960000pt;}
.x21_c00364{left:202.666667pt;}
.xd7_c00364{left:203.626667pt;}
.xcd_c00364{left:204.960000pt;}
.x5b_c00364{left:205.906667pt;}
.x94_c00364{left:208.000000pt;}
.xe0_c00364{left:209.333333pt;}
.xc8_c00364{left:210.293333pt;}
.x5d_c00364{left:211.626667pt;}
.xc2_c00364{left:214.293333pt;}
.x70_c00364{left:216.000000pt;}
.xb6_c00364{left:217.333333pt;}
.x6_c00364{left:219.040000pt;}
.xd8_c00364{left:220.373333pt;}
.x8d_c00364{left:222.466667pt;}
.x101_c00364{left:223.626667pt;}
.xe4_c00364{left:226.293333pt;}
.x10d_c00364{left:227.426667pt;}
.xcc_c00364{left:229.333333pt;}
.x68_c00364{left:230.666667pt;}
.x4c_c00364{left:234.293333pt;}
.xeb_c00364{left:235.240000pt;}
.xae_c00364{left:236.373333pt;}
.x10a_c00364{left:239.040000pt;}
.x79_c00364{left:240.373333pt;}
.x2d_c00364{left:241.706667pt;}
.x95_c00364{left:242.666667pt;}
.x7_c00364{left:243.626667pt;}
.x39_c00364{left:245.333333pt;}
.xce_c00364{left:246.666667pt;}
.xfc_c00364{left:249.333333pt;}
.x5e_c00364{left:252.960000pt;}
.xc3_c00364{left:254.293333pt;}
.x9c_c00364{left:258.666667pt;}
.xb7_c00364{left:260.000000pt;}
.x96_c00364{left:261.706667pt;}
.x14_c00364{left:262.666667pt;}
.xf6_c00364{left:263.626667pt;}
.x2e_c00364{left:264.960000pt;}
.xc9_c00364{left:268.373333pt;}
.xe5_c00364{left:269.333333pt;}
.xbf_c00364{left:270.666667pt;}
.x7a_c00364{left:273.706667pt;}
.x22_c00364{left:276.000000pt;}
.x102_c00364{left:279.040000pt;}
.x87_c00364{left:280.000000pt;}
.x42_c00364{left:280.960000pt;}
.x4d_c00364{left:282.666667pt;}
.xec_c00364{left:284.960000pt;}
.x71_c00364{left:286.666667pt;}
.x97_c00364{left:288.373333pt;}
.xfd_c00364{left:289.706667pt;}
.x5f_c00364{left:290.666667pt;}
.xcf_c00364{left:293.333333pt;}
.x8_c00364{left:296.573333pt;}
.x7b_c00364{left:297.706667pt;}
.x9d_c00364{left:300.000000pt;}
.x23_c00364{left:301.706667pt;}
.x4e_c00364{left:303.040000pt;}
.x10f_c00364{left:304.000000pt;}
.x2f_c00364{left:309.706667pt;}
.xa3_c00364{left:311.040000pt;}
.x15_c00364{left:312.000000pt;}
.xe6_c00364{left:312.960000pt;}
.xd9_c00364{left:314.293333pt;}
.x8e_c00364{left:315.626667pt;}
.x89_c00364{left:317.333333pt;}
.x7d_c00364{left:319.626667pt;}
.x69_c00364{left:321.333333pt;}
.x103_c00364{left:322.666667pt;}
.xd0_c00364{left:324.000000pt;}
.x4f_c00364{left:325.906667pt;}
.xe1_c00364{left:327.626667pt;}
.x16_c00364{left:329.333333pt;}
.xaf_c00364{left:331.626667pt;}
.x8f_c00364{left:333.333333pt;}
.xb8_c00364{left:336.373333pt;}
.x3a_c00364{left:337.333333pt;}
.xa4_c00364{left:340.960000pt;}
.x7e_c00364{left:344.373333pt;}
.x9_c00364{left:346.293333pt;}
.x43_c00364{left:348.000000pt;}
.xb0_c00364{left:349.333333pt;}
.x6a_c00364{left:350.666667pt;}
.x8a_c00364{left:352.000000pt;}
.x17_c00364{left:353.333333pt;}
.x24_c00364{left:354.293333pt;}
.xda_c00364{left:356.000000pt;}
.x90_c00364{left:357.333333pt;}
.x72_c00364{left:358.293333pt;}
.xe7_c00364{left:359.626667pt;}
.xfe_c00364{left:362.293333pt;}
.x30_c00364{left:364.000000pt;}
.x50_c00364{left:365.333333pt;}
.x88_c00364{left:366.293333pt;}
.x2_c00364{left:368.000000pt;}
.x7f_c00364{left:370.666667pt;}
.x110_c00364{left:371.626667pt;}
.xa_c00364{left:374.293333pt;}
.xd1_c00364{left:376.000000pt;}
.xc4_c00364{left:379.040000pt;}
.x25_c00364{left:381.333333pt;}
.x44_c00364{left:383.626667pt;}
.x80_c00364{left:388.000000pt;}
.xb9_c00364{left:390.666667pt;}
.x10b_c00364{left:392.000000pt;}
.xb_c00364{left:393.706667pt;}
.x26_c00364{left:396.000000pt;}
.x51_c00364{left:397.706667pt;}
.xed_c00364{left:400.960000pt;}
.x18_c00364{left:402.666667pt;}
.x73_c00364{left:404.373333pt;}
.xc0_c00364{left:405.333333pt;}
.x31_c00364{left:406.666667pt;}
.x3b_c00364{left:407.626667pt;}
.x81_c00364{left:408.960000pt;}
.x9e_c00364{left:412.573333pt;}
.x60_c00364{left:415.040000pt;}
.xba_c00364{left:416.000000pt;}
.xc_c00364{left:417.706667pt;}
.x104_c00364{left:418.666667pt;}
.x6b_c00364{left:420.373333pt;}
.xc5_c00364{left:421.333333pt;}
.x3c_c00364{left:424.373333pt;}
.xdb_c00364{left:425.333333pt;}
.xf2_c00364{left:427.240000pt;}
.x27_c00364{left:428.960000pt;}
.x45_c00364{left:430.666667pt;}
.x52_c00364{left:432.000000pt;}
.x74_c00364{left:434.666667pt;}
.x91_c00364{left:436.000000pt;}
.xc1_c00364{left:437.706667pt;}
.x46_c00364{left:443.626667pt;}
.xd_c00364{left:447.626667pt;}
.xb1_c00364{left:450.666667pt;}
.xdc_c00364{left:452.373333pt;}
.x9f_c00364{left:453.333333pt;}
.xf7_c00364{left:454.666667pt;}
.x61_c00364{left:455.626667pt;}
.xd2_c00364{left:457.333333pt;}
.xff_c00364{left:458.666667pt;}
.x75_c00364{left:461.706667pt;}
.x53_c00364{left:464.000000pt;}
.xe_c00364{left:465.333333pt;}
.x82_c00364{left:466.666667pt;}
.xf3_c00364{left:467.626667pt;}
.x32_c00364{left:468.960000pt;}
.xa9_c00364{left:470.293333pt;}
.x107_c00364{left:472.000000pt;}
.x19_c00364{left:473.333333pt;}
.xb2_c00364{left:476.000000pt;}
.x3d_c00364{left:477.333333pt;}
.xbb_c00364{left:478.293333pt;}
.xc6_c00364{left:480.960000pt;}
.x92_c00364{left:482.666667pt;}
.x62_c00364{left:483.626667pt;}
.xee_c00364{left:485.133333pt;}
.x33_c00364{left:486.666667pt;}
.x28_c00364{left:487.626667pt;}
.xd3_c00364{left:488.960000pt;}
.x54_c00364{left:490.666667pt;}
.x83_c00364{left:493.333333pt;}
.x3e_c00364{left:494.666667pt;}
.xf4_c00364{left:496.000000pt;}
.xf8_c00364{left:497.333333pt;}
.x100_c00364{left:499.040000pt;}
.xaa_c00364{left:500.000000pt;}
.x55_c00364{left:501.333333pt;}
.x1a_c00364{left:504.373333pt;}
.xa0_c00364{left:505.333333pt;}
.xf_c00364{left:506.293333pt;}
.x98_c00364{left:508.373333pt;}
.xdd_c00364{left:509.706667pt;}
.x34_c00364{left:511.040000pt;}
.x108_c00364{left:513.333333pt;}
.x29_c00364{left:514.666667pt;}
.x6c_c00364{left:520.000000pt;}
.xef_c00364{left:521.706667pt;}
.xab_c00364{left:522.666667pt;}
.x63_c00364{left:525.706667pt;}
.xd4_c00364{left:529.333333pt;}
.x76_c00364{left:531.626667pt;}
.x47_c00364{left:533.706667pt;}
.xa5_c00364{left:534.666667pt;}
.x56_c00364{left:535.626667pt;}
.xca_c00364{left:537.333333pt;}
.xbc_c00364{left:539.626667pt;}
.x1b_c00364{left:541.333333pt;}
.x35_c00364{left:544.373333pt;}
.x99_c00364{left:545.333333pt;}
.x6d_c00364{left:546.293333pt;}
.xb3_c00364{left:548.000000pt;}
.x3f_c00364{left:549.333333pt;}
.x64_c00364{left:550.666667pt;}
.xa1_c00364{left:552.373333pt;}
.xd5_c00364{left:553.333333pt;}
.x10_c00364{left:554.293333pt;}
.xf0_c00364{left:556.000000pt;}
.x84_c00364{left:558.666667pt;}
.x57_c00364{left:562.293333pt;}
.x8b_c00364{left:564.960000pt;}
.xbd_c00364{left:567.040000pt;}
.x93_c00364{left:568.000000pt;}
.x2a_c00364{left:569.333333pt;}
.x77_c00364{left:572.000000pt;}
.x40_c00364{left:573.333333pt;}
.xa6_c00364{left:574.666667pt;}
.xf9_c00364{left:577.333333pt;}
.xe2_c00364{left:578.666667pt;}
.xcb_c00364{left:580.000000pt;}
.x1c_c00364{left:582.666667pt;}
.x65_c00364{left:584.960000pt;}
.xe8_c00364{left:588.000000pt;}
.xf1_c00364{left:589.333333pt;}
.x9a_c00364{left:590.666667pt;}
.x58_c00364{left:592.000000pt;}
.x48_c00364{left:593.706667pt;}
.x8c_c00364{left:594.666667pt;}
.x11_c00364{left:596.000000pt;}
.x36_c00364{left:596.960000pt;}
.x109_c00364{left:598.293333pt;}
.x1d_c00364{left:600.000000pt;}
.xb4_c00364{left:604.960000pt;}
.x6e_c00364{left:610.293333pt;}
.xa7_c00364{left:612.000000pt;}
.xde_c00364{left:615.040000pt;}
.x12_c00364{left:619.626667pt;}
.xc7_c00364{left:621.333333pt;}
.x2b_c00364{left:622.666667pt;}
.x1e_c00364{left:624.000000pt;}
.x59_c00364{left:626.666667pt;}
.x1_c00364{left:627.626667pt;}
.x105_c00364{left:629.706667pt;}
.xe9_c00364{left:633.333333pt;}
.x66_c00364{left:636.000000pt;}
.x10c_c00364{left:637.333333pt;}
.x3_c00364{left:640.000000pt;}
.x1f_c00364{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_642787a3b3d78b533f1b0a11.woff2')format("woff");}.ff1_c00365{font-family:ff1_c00365;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf4_c00365{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.mfc_c00365{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.mc1_c00365{transform:matrix(0.344118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344118,0.000000,0.000000,0.250000,0,0);}
.me2_c00365{transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);}
.mf2_c00365{transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);}
.m1c_c00365{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m97_c00365{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.mb9_c00365{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m22_c00365{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m26_c00365{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mfa_c00365{transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);}
.m77_c00365{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m99_c00365{transform:matrix(0.385436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385436,0.000000,0.000000,0.250000,0,0);}
.m65_c00365{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m85_c00365{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m6c_c00365{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.mdf_c00365{transform:matrix(0.387270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387270,0.000000,0.000000,0.250000,0,0);}
.ma5_c00365{transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);}
.mb2_c00365{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.mfb_c00365{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.ma0_c00365{transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);}
.mdd_c00365{transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);}
.m116_c00365{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.mfe_c00365{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.md2_c00365{transform:matrix(0.398423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398423,0.000000,0.000000,0.250000,0,0);}
.m42_c00365{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);}
.me5_c00365{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m0_c00365{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.ma2_c00365{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.m34_c00365{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m10b_c00365{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m3a_c00365{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m11b_c00365{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.mea_c00365{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m1f_c00365{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m4a_c00365{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m2f_c00365{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m115_c00365{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.ma_c00365{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m31_c00365{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.m5f_c00365{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m17_c00365{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m6d_c00365{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m4d_c00365{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m79_c00365{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m60_c00365{transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);}
.m5b_c00365{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m47_c00365{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.me0_c00365{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m7b_c00365{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mba_c00365{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.mc2_c00365{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.mf0_c00365{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m40_c00365{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m56_c00365{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m98_c00365{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.mdc_c00365{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m41_c00365{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m104_c00365{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.me1_c00365{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m11d_c00365{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m7a_c00365{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m27_c00365{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m66_c00365{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m36_c00365{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m78_c00365{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m57_c00365{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.md5_c00365{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m95_c00365{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m73_c00365{transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);}
.mee_c00365{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m51_c00365{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m59_c00365{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mb1_c00365{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.mb7_c00365{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m90_c00365{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m49_c00365{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m111_c00365{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.mb3_c00365{transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);}
.m120_c00365{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.med_c00365{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m45_c00365{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m108_c00365{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.m113_c00365{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m106_c00365{transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);}
.m83_c00365{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mda_c00365{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m69_c00365{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.mc5_c00365{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m16_c00365{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m50_c00365{transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);}
.m1d_c00365{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m20_c00365{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mb4_c00365{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m8a_c00365{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.mb0_c00365{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.mf9_c00365{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m94_c00365{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.mce_c00365{transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);}
.m9_c00365{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.mcd_c00365{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.mbb_c00365{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m3f_c00365{transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);}
.m39_c00365{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.ma3_c00365{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m5d_c00365{transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);}
.m44_c00365{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m5c_c00365{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.mb6_c00365{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m8e_c00365{transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);}
.mc4_c00365{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m4_c00365{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mbf_c00365{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m72_c00365{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.m3e_c00365{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m100_c00365{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m68_c00365{transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);}
.me_c00365{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m114_c00365{transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);}
.m48_c00365{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m3c_c00365{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.md0_c00365{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);}
.m7e_c00365{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m8c_c00365{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mf7_c00365{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m46_c00365{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.maf_c00365{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m19_c00365{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);}
.m2e_c00365{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m6f_c00365{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.mf5_c00365{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.md7_c00365{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m84_c00365{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.mff_c00365{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m1b_c00365{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m7_c00365{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mb5_c00365{transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);}
.m75_c00365{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m112_c00365{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m1e_c00365{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.md8_c00365{transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);}
.m11c_c00365{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m7d_c00365{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m110_c00365{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m21_c00365{transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);}
.m37_c00365{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mac_c00365{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m43_c00365{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m9c_c00365{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m52_c00365{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m11_c00365{transform:matrix(0.522436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522436,0.000000,0.000000,0.250000,0,0);}
.m1a_c00365{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m2c_c00365{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mbe_c00365{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.m101_c00365{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mca_c00365{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);}
.m118_c00365{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m117_c00365{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m2_c00365{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m24_c00365{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m61_c00365{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m7c_c00365{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mf_c00365{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m58_c00365{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m5e_c00365{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m38_c00365{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mcf_c00365{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m6a_c00365{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m87_c00365{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m4e_c00365{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mf8_c00365{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.ma9_c00365{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m9d_c00365{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.me3_c00365{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m10_c00365{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m63_c00365{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mef_c00365{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m18_c00365{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.m4c_c00365{transform:matrix(0.546474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546474,0.000000,0.000000,0.250000,0,0);}
.m62_c00365{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m2d_c00365{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m67_c00365{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mfd_c00365{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m3d_c00365{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m12_c00365{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);}
.m11f_c00365{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mc6_c00365{transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);}
.m3b_c00365{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.ma8_c00365{transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);}
.md_c00365{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m64_c00365{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.mc9_c00365{transform:matrix(0.555294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555294,0.000000,0.000000,0.250000,0,0);}
.m8_c00365{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mc_c00365{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m9e_c00365{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.mcc_c00365{transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);}
.m93_c00365{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m5_c00365{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m10f_c00365{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m8f_c00365{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m74_c00365{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.mec_c00365{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m119_c00365{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m105_c00365{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m10c_c00365{transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);}
.md6_c00365{transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);}
.m30_c00365{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.maa_c00365{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.me9_c00365{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.mad_c00365{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.mbc_c00365{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.me7_c00365{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m70_c00365{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m9b_c00365{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m102_c00365{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mf3_c00365{transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);}
.m11a_c00365{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m6e_c00365{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m80_c00365{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m103_c00365{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.m10a_c00365{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.md1_c00365{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m33_c00365{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mb8_c00365{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m25_c00365{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mc8_c00365{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.ma4_c00365{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m4f_c00365{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mbd_c00365{transform:matrix(0.591912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591912,0.000000,0.000000,0.250000,0,0);}
.md3_c00365{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m32_c00365{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m35_c00365{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.m2b_c00365{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m23_c00365{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m10d_c00365{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);}
.meb_c00365{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m55_c00365{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.me8_c00365{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m11e_c00365{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m2a_c00365{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.me4_c00365{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m10e_c00365{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.mb_c00365{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m6_c00365{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m92_c00365{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m91_c00365{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_c00365{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.md9_c00365{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.mc3_c00365{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.mc0_c00365{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m1_c00365{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.mf1_c00365{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m8b_c00365{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.mcb_c00365{transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);}
.mdb_c00365{transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);}
.m8d_c00365{transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);}
.ma6_c00365{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m54_c00365{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m88_c00365{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.ma1_c00365{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m9f_c00365{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mae_c00365{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m9a_c00365{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.m3_c00365{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m53_c00365{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.me6_c00365{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.ma7_c00365{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);}
.md4_c00365{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m4b_c00365{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m89_c00365{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m71_c00365{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m82_c00365{transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);}
.m29_c00365{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m107_c00365{transform:matrix(0.736765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736765,0.000000,0.000000,0.250000,0,0);}
.m28_c00365{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m5a_c00365{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mf6_c00365{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m14_c00365{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m7f_c00365{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.m15_c00365{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m6b_c00365{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m81_c00365{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m109_c00365{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.m96_c00365{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m76_c00365{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m86_c00365{transform:matrix(0.899840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.899840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.899840,0.000000,0.000000,0.250000,0,0);}
.mc7_c00365{transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);}
.mab_c00365{transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);}
.mde_c00365{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v2_c00365{vertical-align:-12.000000px;}
.v0_c00365{vertical-align:0.000000px;}
.v1_c00365{vertical-align:12.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:-7.489173px;}
.ws2_c00365{word-spacing:-6.207147px;}
.ws1_c00365{word-spacing:-2.923710px;}
.ws3_c00365{word-spacing:0.000000px;}
.fc0_c00365{color:transparent;}
.fs8_c00365{font-size:3.420000px;}
.fs6_c00365{font-size:13.620000px;}
.fs5_c00365{font-size:18.720000px;}
.fs1_c00365{font-size:20.400000px;}
.fs4_c00365{font-size:25.500000px;}
.fs2_c00365{font-size:28.920000px;}
.fs0_c00365{font-size:32.340000px;}
.fs3_c00365{font-size:35.700000px;}
.fs7_c00365{font-size:39.120000px;}
.y0_c00365{bottom:0.000000px;}
.ydf_c00365{bottom:251.745000px;}
.ye1_c00365{bottom:252.825000px;}
.yde_c00365{bottom:253.905000px;}
.ye0_c00365{bottom:254.130000px;}
.ydd_c00365{bottom:254.970000px;}
.ydb_c00365{bottom:271.245000px;}
.yda_c00365{bottom:272.130000px;}
.yd9_c00365{bottom:273.405000px;}
.ydc_c00365{bottom:274.470000px;}
.yd8_c00365{bottom:290.745000px;}
.yd6_c00365{bottom:290.970000px;}
.yd5_c00365{bottom:291.630000px;}
.yd4_c00365{bottom:292.905000px;}
.yd7_c00365{bottom:293.130000px;}
.ycf_c00365{bottom:309.405000px;}
.yd0_c00365{bottom:310.245000px;}
.yd3_c00365{bottom:311.745000px;}
.yd2_c00365{bottom:312.825000px;}
.yd1_c00365{bottom:313.905000px;}
.yc8_c00365{bottom:328.470000px;}
.ycc_c00365{bottom:330.825000px;}
.yc9_c00365{bottom:331.245000px;}
.yce_c00365{bottom:332.130000px;}
.ycb_c00365{bottom:332.325000px;}
.yca_c00365{bottom:333.405000px;}
.ycd_c00365{bottom:334.470000px;}
.yc4_c00365{bottom:350.550000px;}
.yc6_c00365{bottom:350.745000px;}
.yc1_c00365{bottom:351.405000px;}
.yc2_c00365{bottom:351.630000px;}
.yc3_c00365{bottom:351.825000px;}
.yc5_c00365{bottom:352.905000px;}
.yc7_c00365{bottom:353.970000px;}
.ybe_c00365{bottom:367.905000px;}
.ybd_c00365{bottom:370.245000px;}
.ybf_c00365{bottom:371.325000px;}
.ybc_c00365{bottom:372.405000px;}
.yc0_c00365{bottom:373.470000px;}
.yba_c00365{bottom:388.905000px;}
.yb9_c00365{bottom:389.325000px;}
.yb5_c00365{bottom:389.745000px;}
.yb8_c00365{bottom:390.630000px;}
.ybb_c00365{bottom:390.825000px;}
.yb6_c00365{bottom:391.470000px;}
.yb7_c00365{bottom:391.905000px;}
.yb0_c00365{bottom:409.245000px;}
.yaf_c00365{bottom:410.130000px;}
.yb2_c00365{bottom:410.745000px;}
.yb3_c00365{bottom:410.970000px;}
.yae_c00365{bottom:411.405000px;}
.yb4_c00365{bottom:412.470000px;}
.yb1_c00365{bottom:412.905000px;}
.yac_c00365{bottom:428.745000px;}
.yaa_c00365{bottom:429.825000px;}
.yad_c00365{bottom:430.470000px;}
.ya9_c00365{bottom:430.905000px;}
.yab_c00365{bottom:431.130000px;}
.ya4_c00365{bottom:448.245000px;}
.ya6_c00365{bottom:449.745000px;}
.ya5_c00365{bottom:450.405000px;}
.ya8_c00365{bottom:451.470000px;}
.ya7_c00365{bottom:451.905000px;}
.y9e_c00365{bottom:468.180000px;}
.ya3_c00365{bottom:469.245000px;}
.ya1_c00365{bottom:470.130000px;}
.ya2_c00365{bottom:470.970000px;}
.ya0_c00365{bottom:471.405000px;}
.y9f_c00365{bottom:471.420000px;}
.y9d_c00365{bottom:500.325000px;}
.y98_c00365{bottom:500.550000px;}
.y9c_c00365{bottom:501.405000px;}
.y99_c00365{bottom:501.630000px;}
.y9a_c00365{bottom:502.695000px;}
.y9b_c00365{bottom:503.550000px;}
.y93_c00365{bottom:514.470000px;}
.y97_c00365{bottom:515.970000px;}
.y94_c00365{bottom:516.405000px;}
.y96_c00365{bottom:516.630000px;}
.y95_c00365{bottom:517.470000px;}
.y92_c00365{bottom:530.325000px;}
.y91_c00365{bottom:530.550000px;}
.y90_c00365{bottom:530.970000px;}
.y88_c00365{bottom:544.050000px;}
.y8e_c00365{bottom:544.470000px;}
.y8a_c00365{bottom:545.325000px;}
.y8d_c00365{bottom:546.405000px;}
.y8c_c00365{bottom:546.630000px;}
.y89_c00365{bottom:547.050000px;}
.y8b_c00365{bottom:547.470000px;}
.y8f_c00365{bottom:547.695000px;}
.y87_c00365{bottom:559.905000px;}
.y86_c00365{bottom:560.130000px;}
.y85_c00365{bottom:560.970000px;}
.y83_c00365{bottom:561.195000px;}
.y84_c00365{bottom:562.050000px;}
.y81_c00365{bottom:572.970000px;}
.y80_c00365{bottom:573.825000px;}
.y82_c00365{bottom:574.050000px;}
.y7d_c00365{bottom:574.905000px;}
.y7e_c00365{bottom:575.970000px;}
.y7f_c00365{bottom:577.050000px;}
.y77_c00365{bottom:587.970000px;}
.y7b_c00365{bottom:588.825000px;}
.y79_c00365{bottom:589.905000px;}
.y7a_c00365{bottom:590.130000px;}
.y78_c00365{bottom:590.970000px;}
.y7c_c00365{bottom:592.050000px;}
.y76_c00365{bottom:603.825000px;}
.y75_c00365{bottom:618.825000px;}
.y72_c00365{bottom:619.050000px;}
.y74_c00365{bottom:619.905000px;}
.y70_c00365{bottom:620.130000px;}
.y71_c00365{bottom:620.970000px;}
.y73_c00365{bottom:621.195000px;}
.y6c_c00365{bottom:633.825000px;}
.y6d_c00365{bottom:634.905000px;}
.y6e_c00365{bottom:635.130000px;}
.y6a_c00365{bottom:635.970000px;}
.y6f_c00365{bottom:636.195000px;}
.y6b_c00365{bottom:637.050000px;}
.y69_c00365{bottom:648.405000px;}
.y62_c00365{bottom:648.630000px;}
.y67_c00365{bottom:648.825000px;}
.y63_c00365{bottom:649.470000px;}
.y66_c00365{bottom:649.905000px;}
.y65_c00365{bottom:650.130000px;}
.y68_c00365{bottom:650.550000px;}
.y64_c00365{bottom:650.970000px;}
.y5d_c00365{bottom:662.325000px;}
.y60_c00365{bottom:663.405000px;}
.y5e_c00365{bottom:664.470000px;}
.y61_c00365{bottom:664.695000px;}
.y5f_c00365{bottom:665.550000px;}
.y5c_c00365{bottom:678.405000px;}
.y59_c00365{bottom:678.630000px;}
.y5a_c00365{bottom:679.470000px;}
.y5b_c00365{bottom:680.550000px;}
.y57_c00365{bottom:704.745000px;}
.y58_c00365{bottom:705.630000px;}
.y56_c00365{bottom:706.905000px;}
.y55_c00365{bottom:725.970000px;}
.y54_c00365{bottom:742.905000px;}
.y51_c00365{bottom:743.745000px;}
.y50_c00365{bottom:745.905000px;}
.y52_c00365{bottom:746.130000px;}
.y53_c00365{bottom:746.970000px;}
.y4b_c00365{bottom:763.245000px;}
.y4c_c00365{bottom:764.745000px;}
.y4e_c00365{bottom:765.405000px;}
.y4f_c00365{bottom:766.470000px;}
.y4d_c00365{bottom:766.905000px;}
.y45_c00365{bottom:783.825000px;}
.y47_c00365{bottom:784.245000px;}
.y46_c00365{bottom:784.905000px;}
.y49_c00365{bottom:785.130000px;}
.y4a_c00365{bottom:785.970000px;}
.y48_c00365{bottom:786.405000px;}
.y44_c00365{bottom:803.325000px;}
.y43_c00365{bottom:803.745000px;}
.y3f_c00365{bottom:804.405000px;}
.y41_c00365{bottom:804.630000px;}
.y42_c00365{bottom:805.470000px;}
.y40_c00365{bottom:805.905000px;}
.y3e_c00365{bottom:823.245000px;}
.y3b_c00365{bottom:824.130000px;}
.y3a_c00365{bottom:824.325000px;}
.y3c_c00365{bottom:824.970000px;}
.y39_c00365{bottom:825.405000px;}
.y3d_c00365{bottom:825.630000px;}
.y38_c00365{bottom:840.405000px;}
.y34_c00365{bottom:842.745000px;}
.y37_c00365{bottom:844.470000px;}
.y35_c00365{bottom:844.905000px;}
.y36_c00365{bottom:845.970000px;}
.y30_c00365{bottom:862.245000px;}
.y33_c00365{bottom:863.325000px;}
.y31_c00365{bottom:864.405000px;}
.y32_c00365{bottom:864.630000px;}
.y2b_c00365{bottom:881.745000px;}
.y2f_c00365{bottom:881.970000px;}
.y2d_c00365{bottom:883.470000px;}
.y2e_c00365{bottom:883.905000px;}
.y2c_c00365{bottom:884.130000px;}
.y2a_c00365{bottom:900.825000px;}
.y27_c00365{bottom:901.245000px;}
.y28_c00365{bottom:903.405000px;}
.y29_c00365{bottom:904.905000px;}
.y23_c00365{bottom:922.245000px;}
.y22_c00365{bottom:922.905000px;}
.y26_c00365{bottom:923.130000px;}
.y25_c00365{bottom:923.325000px;}
.y24_c00365{bottom:924.405000px;}
.y20_c00365{bottom:941.745000px;}
.y1f_c00365{bottom:942.825000px;}
.y21_c00365{bottom:943.905000px;}
.y1d_c00365{bottom:959.970000px;}
.y1a_c00365{bottom:960.825000px;}
.y1b_c00365{bottom:961.245000px;}
.y1e_c00365{bottom:961.905000px;}
.y1c_c00365{bottom:963.405000px;}
.y16_c00365{bottom:979.470000px;}
.y18_c00365{bottom:980.745000px;}
.y17_c00365{bottom:982.905000px;}
.y19_c00365{bottom:983.970000px;}
.y12_c00365{bottom:1000.245000px;}
.y13_c00365{bottom:1001.130000px;}
.y14_c00365{bottom:1001.970000px;}
.y15_c00365{bottom:1002.405000px;}
.yf_c00365{bottom:1018.470000px;}
.y10_c00365{bottom:1018.905000px;}
.ye_c00365{bottom:1019.745000px;}
.yc_c00365{bottom:1020.405000px;}
.yd_c00365{bottom:1021.905000px;}
.y11_c00365{bottom:1022.970000px;}
.yb_c00365{bottom:1039.245000px;}
.y7_c00365{bottom:1040.970000px;}
.ya_c00365{bottom:1041.405000px;}
.y9_c00365{bottom:1041.630000px;}
.y8_c00365{bottom:1042.470000px;}
.y4_c00365{bottom:1058.745000px;}
.y6_c00365{bottom:1059.630000px;}
.y3_c00365{bottom:1060.905000px;}
.y5_c00365{bottom:1061.970000px;}
.y1_c00365{bottom:1098.825000px;}
.y2_c00365{bottom:1099.050000px;}
.ha_c00365{height:4.206533px;}
.h8_c00365{height:16.752334px;}
.h6_c00365{height:23.025234px;}
.h2_c00365{height:25.091602px;}
.h5_c00365{height:31.364502px;}
.h3_c00365{height:35.571035px;}
.h1_c00365{height:39.777568px;}
.h7_c00365{height:43.364502px;}
.h4_c00365{height:43.910303px;}
.h9_c00365{height:48.116836px;}
.h0_c00365{height:1335.000000px;}
.w0_c00365{width:880.500000px;}
.x0_c00365{left:0.000000px;}
.x1_c00365{left:151.500000px;}
.x3_c00365{left:153.000000px;}
.x8a_c00365{left:154.500000px;}
.xb6_c00365{left:166.500000px;}
.xac_c00365{left:167.580000px;}
.x2a_c00365{left:169.500000px;}
.x79_c00365{left:171.420000px;}
.xee_c00365{left:172.500000px;}
.xa5_c00365{left:180.000000px;}
.xd2_c00365{left:181.500000px;}
.xdd_c00365{left:183.000000px;}
.x4f_c00365{left:184.920000px;}
.x84_c00365{left:189.420000px;}
.x1f_c00365{left:190.920000px;}
.xba_c00365{left:192.420000px;}
.x93_c00365{left:193.500000px;}
.x14_c00365{left:198.000000px;}
.x4_c00365{left:199.500000px;}
.xeb_c00365{left:202.500000px;}
.x71_c00365{left:204.000000px;}
.x60_c00365{left:205.920000px;}
.x9b_c00365{left:208.080000px;}
.x3f_c00365{left:210.000000px;}
.x7a_c00365{left:211.500000px;}
.x85_c00365{left:214.080000px;}
.x5_c00365{left:216.000000px;}
.x4a_c00365{left:217.500000px;}
.xa6_c00365{left:218.580000px;}
.xd3_c00365{left:220.080000px;}
.xde_c00365{left:222.420000px;}
.x50_c00365{left:223.500000px;}
.x9c_c00365{left:228.420000px;}
.x6_c00365{left:232.920000px;}
.x20_c00365{left:235.500000px;}
.xb3_c00365{left:237.000000px;}
.x105_c00365{left:238.920000px;}
.xcc_c00365{left:240.000000px;}
.x94_c00365{left:241.080000px;}
.xad_c00365{left:244.500000px;}
.x104_c00365{left:246.000000px;}
.x34_c00365{left:247.500000px;}
.xd8_c00365{left:249.000000px;}
.x21_c00365{left:252.420000px;}
.x61_c00365{left:253.500000px;}
.xd4_c00365{left:255.000000px;}
.x15_c00365{left:256.500000px;}
.xf4_c00365{left:259.500000px;}
.x59_c00365{left:261.000000px;}
.x35_c00365{left:262.500000px;}
.x2b_c00365{left:265.500000px;}
.xf2_c00365{left:266.580000px;}
.x7b_c00365{left:268.500000px;}
.xe7_c00365{left:271.500000px;}
.x62_c00365{left:272.580000px;}
.x51_c00365{left:275.580000px;}
.x7_c00365{left:277.500000px;}
.xbb_c00365{left:279.000000px;}
.x36_c00365{left:280.920000px;}
.x8b_c00365{left:282.000000px;}
.xfb_c00365{left:283.080000px;}
.x40_c00365{left:285.000000px;}
.xae_c00365{left:286.500000px;}
.x106_c00365{left:287.580000px;}
.x2c_c00365{left:289.920000px;}
.x86_c00365{left:291.420000px;}
.xc7_c00365{left:292.500000px;}
.x22_c00365{left:294.000000px;}
.x63_c00365{left:295.500000px;}
.x8_c00365{left:297.000000px;}
.x9d_c00365{left:301.500000px;}
.x41_c00365{left:306.420000px;}
.x16_c00365{left:307.500000px;}
.xe0_c00365{left:309.000000px;}
.xb7_c00365{left:310.500000px;}
.xd5_c00365{left:312.000000px;}
.xb4_c00365{left:315.855000px;}
.x23_c00365{left:319.500000px;}
.x52_c00365{left:320.580000px;}
.x72_c00365{left:322.500000px;}
.x37_c00365{left:325.500000px;}
.x64_c00365{left:327.420000px;}
.x7c_c00365{left:328.500000px;}
.xc5_c00365{left:329.580000px;}
.xcd_c00365{left:333.000000px;}
.x42_c00365{left:336.000000px;}
.xa7_c00365{left:337.920000px;}
.xdf_c00365{left:339.000000px;}
.xbc_c00365{left:340.080000px;}
.x9_c00365{left:341.580000px;}
.xf6_c00365{left:343.500000px;}
.x38_c00365{left:345.000000px;}
.x100_c00365{left:346.500000px;}
.x8c_c00365{left:348.000000px;}
.x6c_c00365{left:350.580000px;}
.xfc_c00365{left:354.000000px;}
.x5a_c00365{left:356.580000px;}
.x2d_c00365{left:358.920000px;}
.xec_c00365{left:360.000000px;}
.x87_c00365{left:361.500000px;}
.xa8_c00365{left:366.000000px;}
.x6d_c00365{left:367.920000px;}
.xa_c00365{left:372.000000px;}
.xc8_c00365{left:373.500000px;}
.x17_c00365{left:374.580000px;}
.x88_c00365{left:376.500000px;}
.xf5_c00365{left:378.000000px;}
.x101_c00365{left:379.080000px;}
.xe8_c00365{left:381.000000px;}
.x53_c00365{left:382.500000px;}
.xd6_c00365{left:384.000000px;}
.xb5_c00365{left:385.500000px;}
.x8d_c00365{left:388.920000px;}
.x7d_c00365{left:390.000000px;}
.x24_c00365{left:392.580000px;}
.x2e_c00365{left:394.920000px;}
.x65_c00365{left:396.000000px;}
.xfd_c00365{left:399.000000px;}
.x43_c00365{left:400.500000px;}
.xef_c00365{left:402.000000px;}
.xf3_c00365{left:405.420000px;}
.x5b_c00365{left:406.500000px;}
.x7e_c00365{left:408.420000px;}
.x95_c00365{left:409.500000px;}
.xaf_c00365{left:411.000000px;}
.x73_c00365{left:412.500000px;}
.x2_c00365{left:414.000000px;}
.x102_c00365{left:415.080000px;}
.xe4_c00365{left:416.580000px;}
.xb_c00365{left:418.920000px;}
.x2f_c00365{left:421.500000px;}
.x4b_c00365{left:429.000000px;}
.xd9_c00365{left:432.000000px;}
.x54_c00365{left:434.580000px;}
.x25_c00365{left:439.500000px;}
.xa9_c00365{left:440.580000px;}
.x5c_c00365{left:442.500000px;}
.x39_c00365{left:445.080000px;}
.x9e_c00365{left:447.000000px;}
.xe5_c00365{left:448.920000px;}
.xe1_c00365{left:450.000000px;}
.x44_c00365{left:451.080000px;}
.xc9_c00365{left:453.000000px;}
.xbd_c00365{left:454.500000px;}
.xfe_c00365{left:457.080000px;}
.xaa_c00365{left:459.420000px;}
.x89_c00365{left:460.500000px;}
.x66_c00365{left:463.500000px;}
.x18_c00365{left:466.080000px;}
.x8e_c00365{left:468.000000px;}
.xc_c00365{left:469.500000px;}
.x96_c00365{left:472.500000px;}
.x26_c00365{left:473.580000px;}
.x9f_c00365{left:475.500000px;}
.xe6_c00365{left:477.000000px;}
.xff_c00365{left:478.500000px;}
.x67_c00365{left:480.000000px;}
.x19_c00365{left:486.420000px;}
.xab_c00365{left:489.000000px;}
.x55_c00365{left:493.080000px;}
.x7f_c00365{left:496.920000px;}
.xd_c00365{left:498.420000px;}
.xbe_c00365{left:499.920000px;}
.xce_c00365{left:501.420000px;}
.xda_c00365{left:502.500000px;}
.x3a_c00365{left:507.420000px;}
.x107_c00365{left:508.500000px;}
.xf0_c00365{left:510.000000px;}
.x5d_c00365{left:511.080000px;}
.x1a_c00365{left:513.000000px;}
.xed_c00365{left:516.000000px;}
.xb8_c00365{left:517.500000px;}
.xa0_c00365{left:518.580000px;}
.x80_c00365{left:522.000000px;}
.xf7_c00365{left:525.000000px;}
.x68_c00365{left:526.080000px;}
.xc6_c00365{left:528.000000px;}
.xb0_c00365{left:529.500000px;}
.x45_c00365{left:531.000000px;}
.xbf_c00365{left:532.920000px;}
.x6e_c00365{left:534.420000px;}
.x3b_c00365{left:535.500000px;}
.x27_c00365{left:536.580000px;}
.x74_c00365{left:538.500000px;}
.x103_c00365{left:540.000000px;}
.x56_c00365{left:541.920000px;}
.x30_c00365{left:547.920000px;}
.xe9_c00365{left:549.420000px;}
.xc0_c00365{left:550.500000px;}
.xe_c00365{left:552.420000px;}
.x46_c00365{left:553.920000px;}
.x81_c00365{left:555.000000px;}
.xa1_c00365{left:556.920000px;}
.xcf_c00365{left:558.420000px;}
.x8f_c00365{left:561.000000px;}
.xb9_c00365{left:562.080000px;}
.x69_c00365{left:565.080000px;}
.x5e_c00365{left:567.420000px;}
.x82_c00365{left:568.500000px;}
.xe2_c00365{left:569.580000px;}
.x97_c00365{left:573.420000px;}
.xc1_c00365{left:574.500000px;}
.x31_c00365{left:576.000000px;}
.x1b_c00365{left:579.000000px;}
.x28_c00365{left:580.080000px;}
.x75_c00365{left:582.000000px;}
.x47_c00365{left:583.500000px;}
.x4c_c00365{left:586.080000px;}
.xd0_c00365{left:587.580000px;}
.xf_c00365{left:589.080000px;}
.x29_c00365{left:593.580000px;}
.x90_c00365{left:595.500000px;}
.x57_c00365{left:598.500000px;}
.x98_c00365{left:600.000000px;}
.x76_c00365{left:601.080000px;}
.xa2_c00365{left:603.000000px;}
.x3c_c00365{left:605.580000px;}
.xf8_c00365{left:607.500000px;}
.x10_c00365{left:608.580000px;}
.xd1_c00365{left:612.855000px;}
.x4d_c00365{left:616.080000px;}
.xea_c00365{left:617.580000px;}
.xdb_c00365{left:620.580000px;}
.xb1_c00365{left:623.580000px;}
.x1c_c00365{left:625.920000px;}
.x32_c00365{left:628.080000px;}
.xf9_c00365{left:630.420000px;}
.x6a_c00365{left:631.920000px;}
.xca_c00365{left:634.500000px;}
.x11_c00365{left:636.420000px;}
.x3d_c00365{left:637.500000px;}
.xd7_c00365{left:640.920000px;}
.x6f_c00365{left:642.000000px;}
.x77_c00365{left:646.500000px;}
.x99_c00365{left:648.000000px;}
.xc2_c00365{left:649.080000px;}
.xa3_c00365{left:652.080000px;}
.x1d_c00365{left:654.000000px;}
.x91_c00365{left:655.920000px;}
.xfa_c00365{left:658.500000px;}
.x83_c00365{left:661.500000px;}
.x5f_c00365{left:663.645000px;}
.x3e_c00365{left:665.580000px;}
.x6b_c00365{left:669.000000px;}
.x78_c00365{left:671.580000px;}
.x108_c00365{left:673.080000px;}
.x12_c00365{left:675.420000px;}
.x58_c00365{left:679.500000px;}
.xc3_c00365{left:683.580000px;}
.x4e_c00365{left:684.645000px;}
.x48_c00365{left:686.580000px;}
.x70_c00365{left:690.000000px;}
.xa4_c00365{left:691.500000px;}
.x9a_c00365{left:693.000000px;}
.xb2_c00365{left:694.500000px;}
.x33_c00365{left:695.580000px;}
.xdc_c00365{left:697.920000px;}
.xcb_c00365{left:702.000000px;}
.x13_c00365{left:703.920000px;}
.xe3_c00365{left:705.000000px;}
.x1e_c00365{left:706.500000px;}
.x49_c00365{left:708.420000px;}
.x92_c00365{left:709.920000px;}
.xf1_c00365{left:712.080000px;}
.xc4_c00365{left:715.500000px;}
@media print{
.v2_c00365{vertical-align:-10.666667pt;}
.v0_c00365{vertical-align:0.000000pt;}
.v1_c00365{vertical-align:10.666667pt;}
.ls0_c00365{letter-spacing:0.000000pt;}
.ws0_c00365{word-spacing:-6.657043pt;}
.ws2_c00365{word-spacing:-5.517464pt;}
.ws1_c00365{word-spacing:-2.598853pt;}
.ws3_c00365{word-spacing:0.000000pt;}
.fs8_c00365{font-size:3.040000pt;}
.fs6_c00365{font-size:12.106667pt;}
.fs5_c00365{font-size:16.640000pt;}
.fs1_c00365{font-size:18.133333pt;}
.fs4_c00365{font-size:22.666667pt;}
.fs2_c00365{font-size:25.706667pt;}
.fs0_c00365{font-size:28.746667pt;}
.fs3_c00365{font-size:31.733333pt;}
.fs7_c00365{font-size:34.773333pt;}
.y0_c00365{bottom:0.000000pt;}
.ydf_c00365{bottom:223.773333pt;}
.ye1_c00365{bottom:224.733333pt;}
.yde_c00365{bottom:225.693333pt;}
.ye0_c00365{bottom:225.893333pt;}
.ydd_c00365{bottom:226.640000pt;}
.ydb_c00365{bottom:241.106667pt;}
.yda_c00365{bottom:241.893333pt;}
.yd9_c00365{bottom:243.026667pt;}
.ydc_c00365{bottom:243.973333pt;}
.yd8_c00365{bottom:258.440000pt;}
.yd6_c00365{bottom:258.640000pt;}
.yd5_c00365{bottom:259.226667pt;}
.yd4_c00365{bottom:260.360000pt;}
.yd7_c00365{bottom:260.560000pt;}
.ycf_c00365{bottom:275.026667pt;}
.yd0_c00365{bottom:275.773333pt;}
.yd3_c00365{bottom:277.106667pt;}
.yd2_c00365{bottom:278.066667pt;}
.yd1_c00365{bottom:279.026667pt;}
.yc8_c00365{bottom:291.973333pt;}
.ycc_c00365{bottom:294.066667pt;}
.yc9_c00365{bottom:294.440000pt;}
.yce_c00365{bottom:295.226667pt;}
.ycb_c00365{bottom:295.400000pt;}
.yca_c00365{bottom:296.360000pt;}
.ycd_c00365{bottom:297.306667pt;}
.yc4_c00365{bottom:311.600000pt;}
.yc6_c00365{bottom:311.773333pt;}
.yc1_c00365{bottom:312.360000pt;}
.yc2_c00365{bottom:312.560000pt;}
.yc3_c00365{bottom:312.733333pt;}
.yc5_c00365{bottom:313.693333pt;}
.yc7_c00365{bottom:314.640000pt;}
.ybe_c00365{bottom:327.026667pt;}
.ybd_c00365{bottom:329.106667pt;}
.ybf_c00365{bottom:330.066667pt;}
.ybc_c00365{bottom:331.026667pt;}
.yc0_c00365{bottom:331.973333pt;}
.yba_c00365{bottom:345.693333pt;}
.yb9_c00365{bottom:346.066667pt;}
.yb5_c00365{bottom:346.440000pt;}
.yb8_c00365{bottom:347.226667pt;}
.ybb_c00365{bottom:347.400000pt;}
.yb6_c00365{bottom:347.973333pt;}
.yb7_c00365{bottom:348.360000pt;}
.yb0_c00365{bottom:363.773333pt;}
.yaf_c00365{bottom:364.560000pt;}
.yb2_c00365{bottom:365.106667pt;}
.yb3_c00365{bottom:365.306667pt;}
.yae_c00365{bottom:365.693333pt;}
.yb4_c00365{bottom:366.640000pt;}
.yb1_c00365{bottom:367.026667pt;}
.yac_c00365{bottom:381.106667pt;}
.yaa_c00365{bottom:382.066667pt;}
.yad_c00365{bottom:382.640000pt;}
.ya9_c00365{bottom:383.026667pt;}
.yab_c00365{bottom:383.226667pt;}
.ya4_c00365{bottom:398.440000pt;}
.ya6_c00365{bottom:399.773333pt;}
.ya5_c00365{bottom:400.360000pt;}
.ya8_c00365{bottom:401.306667pt;}
.ya7_c00365{bottom:401.693333pt;}
.y9e_c00365{bottom:416.160000pt;}
.ya3_c00365{bottom:417.106667pt;}
.ya1_c00365{bottom:417.893333pt;}
.ya2_c00365{bottom:418.640000pt;}
.ya0_c00365{bottom:419.026667pt;}
.y9f_c00365{bottom:419.040000pt;}
.y9d_c00365{bottom:444.733333pt;}
.y98_c00365{bottom:444.933333pt;}
.y9c_c00365{bottom:445.693333pt;}
.y99_c00365{bottom:445.893333pt;}
.y9a_c00365{bottom:446.840000pt;}
.y9b_c00365{bottom:447.600000pt;}
.y93_c00365{bottom:457.306667pt;}
.y97_c00365{bottom:458.640000pt;}
.y94_c00365{bottom:459.026667pt;}
.y96_c00365{bottom:459.226667pt;}
.y95_c00365{bottom:459.973333pt;}
.y92_c00365{bottom:471.400000pt;}
.y91_c00365{bottom:471.600000pt;}
.y90_c00365{bottom:471.973333pt;}
.y88_c00365{bottom:483.600000pt;}
.y8e_c00365{bottom:483.973333pt;}
.y8a_c00365{bottom:484.733333pt;}
.y8d_c00365{bottom:485.693333pt;}
.y8c_c00365{bottom:485.893333pt;}
.y89_c00365{bottom:486.266667pt;}
.y8b_c00365{bottom:486.640000pt;}
.y8f_c00365{bottom:486.840000pt;}
.y87_c00365{bottom:497.693333pt;}
.y86_c00365{bottom:497.893333pt;}
.y85_c00365{bottom:498.640000pt;}
.y83_c00365{bottom:498.840000pt;}
.y84_c00365{bottom:499.600000pt;}
.y81_c00365{bottom:509.306667pt;}
.y80_c00365{bottom:510.066667pt;}
.y82_c00365{bottom:510.266667pt;}
.y7d_c00365{bottom:511.026667pt;}
.y7e_c00365{bottom:511.973333pt;}
.y7f_c00365{bottom:512.933333pt;}
.y77_c00365{bottom:522.640000pt;}
.y7b_c00365{bottom:523.400000pt;}
.y79_c00365{bottom:524.360000pt;}
.y7a_c00365{bottom:524.560000pt;}
.y78_c00365{bottom:525.306667pt;}
.y7c_c00365{bottom:526.266667pt;}
.y76_c00365{bottom:536.733333pt;}
.y75_c00365{bottom:550.066667pt;}
.y72_c00365{bottom:550.266667pt;}
.y74_c00365{bottom:551.026667pt;}
.y70_c00365{bottom:551.226667pt;}
.y71_c00365{bottom:551.973333pt;}
.y73_c00365{bottom:552.173333pt;}
.y6c_c00365{bottom:563.400000pt;}
.y6d_c00365{bottom:564.360000pt;}
.y6e_c00365{bottom:564.560000pt;}
.y6a_c00365{bottom:565.306667pt;}
.y6f_c00365{bottom:565.506667pt;}
.y6b_c00365{bottom:566.266667pt;}
.y69_c00365{bottom:576.360000pt;}
.y62_c00365{bottom:576.560000pt;}
.y67_c00365{bottom:576.733333pt;}
.y63_c00365{bottom:577.306667pt;}
.y66_c00365{bottom:577.693333pt;}
.y65_c00365{bottom:577.893333pt;}
.y68_c00365{bottom:578.266667pt;}
.y64_c00365{bottom:578.640000pt;}
.y5d_c00365{bottom:588.733333pt;}
.y60_c00365{bottom:589.693333pt;}
.y5e_c00365{bottom:590.640000pt;}
.y61_c00365{bottom:590.840000pt;}
.y5f_c00365{bottom:591.600000pt;}
.y5c_c00365{bottom:603.026667pt;}
.y59_c00365{bottom:603.226667pt;}
.y5a_c00365{bottom:603.973333pt;}
.y5b_c00365{bottom:604.933333pt;}
.y57_c00365{bottom:626.440000pt;}
.y58_c00365{bottom:627.226667pt;}
.y56_c00365{bottom:628.360000pt;}
.y55_c00365{bottom:645.306667pt;}
.y54_c00365{bottom:660.360000pt;}
.y51_c00365{bottom:661.106667pt;}
.y50_c00365{bottom:663.026667pt;}
.y52_c00365{bottom:663.226667pt;}
.y53_c00365{bottom:663.973333pt;}
.y4b_c00365{bottom:678.440000pt;}
.y4c_c00365{bottom:679.773333pt;}
.y4e_c00365{bottom:680.360000pt;}
.y4f_c00365{bottom:681.306667pt;}
.y4d_c00365{bottom:681.693333pt;}
.y45_c00365{bottom:696.733333pt;}
.y47_c00365{bottom:697.106667pt;}
.y46_c00365{bottom:697.693333pt;}
.y49_c00365{bottom:697.893333pt;}
.y4a_c00365{bottom:698.640000pt;}
.y48_c00365{bottom:699.026667pt;}
.y44_c00365{bottom:714.066667pt;}
.y43_c00365{bottom:714.440000pt;}
.y3f_c00365{bottom:715.026667pt;}
.y41_c00365{bottom:715.226667pt;}
.y42_c00365{bottom:715.973333pt;}
.y40_c00365{bottom:716.360000pt;}
.y3e_c00365{bottom:731.773333pt;}
.y3b_c00365{bottom:732.560000pt;}
.y3a_c00365{bottom:732.733333pt;}
.y3c_c00365{bottom:733.306667pt;}
.y39_c00365{bottom:733.693333pt;}
.y3d_c00365{bottom:733.893333pt;}
.y38_c00365{bottom:747.026667pt;}
.y34_c00365{bottom:749.106667pt;}
.y37_c00365{bottom:750.640000pt;}
.y35_c00365{bottom:751.026667pt;}
.y36_c00365{bottom:751.973333pt;}
.y30_c00365{bottom:766.440000pt;}
.y33_c00365{bottom:767.400000pt;}
.y31_c00365{bottom:768.360000pt;}
.y32_c00365{bottom:768.560000pt;}
.y2b_c00365{bottom:783.773333pt;}
.y2f_c00365{bottom:783.973333pt;}
.y2d_c00365{bottom:785.306667pt;}
.y2e_c00365{bottom:785.693333pt;}
.y2c_c00365{bottom:785.893333pt;}
.y2a_c00365{bottom:800.733333pt;}
.y27_c00365{bottom:801.106667pt;}
.y28_c00365{bottom:803.026667pt;}
.y29_c00365{bottom:804.360000pt;}
.y23_c00365{bottom:819.773333pt;}
.y22_c00365{bottom:820.360000pt;}
.y26_c00365{bottom:820.560000pt;}
.y25_c00365{bottom:820.733333pt;}
.y24_c00365{bottom:821.693333pt;}
.y20_c00365{bottom:837.106667pt;}
.y1f_c00365{bottom:838.066667pt;}
.y21_c00365{bottom:839.026667pt;}
.y1d_c00365{bottom:853.306667pt;}
.y1a_c00365{bottom:854.066667pt;}
.y1b_c00365{bottom:854.440000pt;}
.y1e_c00365{bottom:855.026667pt;}
.y1c_c00365{bottom:856.360000pt;}
.y16_c00365{bottom:870.640000pt;}
.y18_c00365{bottom:871.773333pt;}
.y17_c00365{bottom:873.693333pt;}
.y19_c00365{bottom:874.640000pt;}
.y12_c00365{bottom:889.106667pt;}
.y13_c00365{bottom:889.893333pt;}
.y14_c00365{bottom:890.640000pt;}
.y15_c00365{bottom:891.026667pt;}
.yf_c00365{bottom:905.306667pt;}
.y10_c00365{bottom:905.693333pt;}
.ye_c00365{bottom:906.440000pt;}
.yc_c00365{bottom:907.026667pt;}
.yd_c00365{bottom:908.360000pt;}
.y11_c00365{bottom:909.306667pt;}
.yb_c00365{bottom:923.773333pt;}
.y7_c00365{bottom:925.306667pt;}
.ya_c00365{bottom:925.693333pt;}
.y9_c00365{bottom:925.893333pt;}
.y8_c00365{bottom:926.640000pt;}
.y4_c00365{bottom:941.106667pt;}
.y6_c00365{bottom:941.893333pt;}
.y3_c00365{bottom:943.026667pt;}
.y5_c00365{bottom:943.973333pt;}
.y1_c00365{bottom:976.733333pt;}
.y2_c00365{bottom:976.933333pt;}
.ha_c00365{height:3.739141pt;}
.h8_c00365{height:14.890964pt;}
.h6_c00365{height:20.466875pt;}
.h2_c00365{height:22.303646pt;}
.h5_c00365{height:27.879557pt;}
.h3_c00365{height:31.618698pt;}
.h1_c00365{height:35.357839pt;}
.h7_c00365{height:38.546224pt;}
.h4_c00365{height:39.031380pt;}
.h9_c00365{height:42.770521pt;}
.h0_c00365{height:1186.666667pt;}
.w0_c00365{width:782.666667pt;}
.x0_c00365{left:0.000000pt;}
.x1_c00365{left:134.666667pt;}
.x3_c00365{left:136.000000pt;}
.x8a_c00365{left:137.333333pt;}
.xb6_c00365{left:148.000000pt;}
.xac_c00365{left:148.960000pt;}
.x2a_c00365{left:150.666667pt;}
.x79_c00365{left:152.373333pt;}
.xee_c00365{left:153.333333pt;}
.xa5_c00365{left:160.000000pt;}
.xd2_c00365{left:161.333333pt;}
.xdd_c00365{left:162.666667pt;}
.x4f_c00365{left:164.373333pt;}
.x84_c00365{left:168.373333pt;}
.x1f_c00365{left:169.706667pt;}
.xba_c00365{left:171.040000pt;}
.x93_c00365{left:172.000000pt;}
.x14_c00365{left:176.000000pt;}
.x4_c00365{left:177.333333pt;}
.xeb_c00365{left:180.000000pt;}
.x71_c00365{left:181.333333pt;}
.x60_c00365{left:183.040000pt;}
.x9b_c00365{left:184.960000pt;}
.x3f_c00365{left:186.666667pt;}
.x7a_c00365{left:188.000000pt;}
.x85_c00365{left:190.293333pt;}
.x5_c00365{left:192.000000pt;}
.x4a_c00365{left:193.333333pt;}
.xa6_c00365{left:194.293333pt;}
.xd3_c00365{left:195.626667pt;}
.xde_c00365{left:197.706667pt;}
.x50_c00365{left:198.666667pt;}
.x9c_c00365{left:203.040000pt;}
.x6_c00365{left:207.040000pt;}
.x20_c00365{left:209.333333pt;}
.xb3_c00365{left:210.666667pt;}
.x105_c00365{left:212.373333pt;}
.xcc_c00365{left:213.333333pt;}
.x94_c00365{left:214.293333pt;}
.xad_c00365{left:217.333333pt;}
.x104_c00365{left:218.666667pt;}
.x34_c00365{left:220.000000pt;}
.xd8_c00365{left:221.333333pt;}
.x21_c00365{left:224.373333pt;}
.x61_c00365{left:225.333333pt;}
.xd4_c00365{left:226.666667pt;}
.x15_c00365{left:228.000000pt;}
.xf4_c00365{left:230.666667pt;}
.x59_c00365{left:232.000000pt;}
.x35_c00365{left:233.333333pt;}
.x2b_c00365{left:236.000000pt;}
.xf2_c00365{left:236.960000pt;}
.x7b_c00365{left:238.666667pt;}
.xe7_c00365{left:241.333333pt;}
.x62_c00365{left:242.293333pt;}
.x51_c00365{left:244.960000pt;}
.x7_c00365{left:246.666667pt;}
.xbb_c00365{left:248.000000pt;}
.x36_c00365{left:249.706667pt;}
.x8b_c00365{left:250.666667pt;}
.xfb_c00365{left:251.626667pt;}
.x40_c00365{left:253.333333pt;}
.xae_c00365{left:254.666667pt;}
.x106_c00365{left:255.626667pt;}
.x2c_c00365{left:257.706667pt;}
.x86_c00365{left:259.040000pt;}
.xc7_c00365{left:260.000000pt;}
.x22_c00365{left:261.333333pt;}
.x63_c00365{left:262.666667pt;}
.x8_c00365{left:264.000000pt;}
.x9d_c00365{left:268.000000pt;}
.x41_c00365{left:272.373333pt;}
.x16_c00365{left:273.333333pt;}
.xe0_c00365{left:274.666667pt;}
.xb7_c00365{left:276.000000pt;}
.xd5_c00365{left:277.333333pt;}
.xb4_c00365{left:280.760000pt;}
.x23_c00365{left:284.000000pt;}
.x52_c00365{left:284.960000pt;}
.x72_c00365{left:286.666667pt;}
.x37_c00365{left:289.333333pt;}
.x64_c00365{left:291.040000pt;}
.x7c_c00365{left:292.000000pt;}
.xc5_c00365{left:292.960000pt;}
.xcd_c00365{left:296.000000pt;}
.x42_c00365{left:298.666667pt;}
.xa7_c00365{left:300.373333pt;}
.xdf_c00365{left:301.333333pt;}
.xbc_c00365{left:302.293333pt;}
.x9_c00365{left:303.626667pt;}
.xf6_c00365{left:305.333333pt;}
.x38_c00365{left:306.666667pt;}
.x100_c00365{left:308.000000pt;}
.x8c_c00365{left:309.333333pt;}
.x6c_c00365{left:311.626667pt;}
.xfc_c00365{left:314.666667pt;}
.x5a_c00365{left:316.960000pt;}
.x2d_c00365{left:319.040000pt;}
.xec_c00365{left:320.000000pt;}
.x87_c00365{left:321.333333pt;}
.xa8_c00365{left:325.333333pt;}
.x6d_c00365{left:327.040000pt;}
.xa_c00365{left:330.666667pt;}
.xc8_c00365{left:332.000000pt;}
.x17_c00365{left:332.960000pt;}
.x88_c00365{left:334.666667pt;}
.xf5_c00365{left:336.000000pt;}
.x101_c00365{left:336.960000pt;}
.xe8_c00365{left:338.666667pt;}
.x53_c00365{left:340.000000pt;}
.xd6_c00365{left:341.333333pt;}
.xb5_c00365{left:342.666667pt;}
.x8d_c00365{left:345.706667pt;}
.x7d_c00365{left:346.666667pt;}
.x24_c00365{left:348.960000pt;}
.x2e_c00365{left:351.040000pt;}
.x65_c00365{left:352.000000pt;}
.xfd_c00365{left:354.666667pt;}
.x43_c00365{left:356.000000pt;}
.xef_c00365{left:357.333333pt;}
.xf3_c00365{left:360.373333pt;}
.x5b_c00365{left:361.333333pt;}
.x7e_c00365{left:363.040000pt;}
.x95_c00365{left:364.000000pt;}
.xaf_c00365{left:365.333333pt;}
.x73_c00365{left:366.666667pt;}
.x2_c00365{left:368.000000pt;}
.x102_c00365{left:368.960000pt;}
.xe4_c00365{left:370.293333pt;}
.xb_c00365{left:372.373333pt;}
.x2f_c00365{left:374.666667pt;}
.x4b_c00365{left:381.333333pt;}
.xd9_c00365{left:384.000000pt;}
.x54_c00365{left:386.293333pt;}
.x25_c00365{left:390.666667pt;}
.xa9_c00365{left:391.626667pt;}
.x5c_c00365{left:393.333333pt;}
.x39_c00365{left:395.626667pt;}
.x9e_c00365{left:397.333333pt;}
.xe5_c00365{left:399.040000pt;}
.xe1_c00365{left:400.000000pt;}
.x44_c00365{left:400.960000pt;}
.xc9_c00365{left:402.666667pt;}
.xbd_c00365{left:404.000000pt;}
.xfe_c00365{left:406.293333pt;}
.xaa_c00365{left:408.373333pt;}
.x89_c00365{left:409.333333pt;}
.x66_c00365{left:412.000000pt;}
.x18_c00365{left:414.293333pt;}
.x8e_c00365{left:416.000000pt;}
.xc_c00365{left:417.333333pt;}
.x96_c00365{left:420.000000pt;}
.x26_c00365{left:420.960000pt;}
.x9f_c00365{left:422.666667pt;}
.xe6_c00365{left:424.000000pt;}
.xff_c00365{left:425.333333pt;}
.x67_c00365{left:426.666667pt;}
.x19_c00365{left:432.373333pt;}
.xab_c00365{left:434.666667pt;}
.x55_c00365{left:438.293333pt;}
.x7f_c00365{left:441.706667pt;}
.xd_c00365{left:443.040000pt;}
.xbe_c00365{left:444.373333pt;}
.xce_c00365{left:445.706667pt;}
.xda_c00365{left:446.666667pt;}
.x3a_c00365{left:451.040000pt;}
.x107_c00365{left:452.000000pt;}
.xf0_c00365{left:453.333333pt;}
.x5d_c00365{left:454.293333pt;}
.x1a_c00365{left:456.000000pt;}
.xed_c00365{left:458.666667pt;}
.xb8_c00365{left:460.000000pt;}
.xa0_c00365{left:460.960000pt;}
.x80_c00365{left:464.000000pt;}
.xf7_c00365{left:466.666667pt;}
.x68_c00365{left:467.626667pt;}
.xc6_c00365{left:469.333333pt;}
.xb0_c00365{left:470.666667pt;}
.x45_c00365{left:472.000000pt;}
.xbf_c00365{left:473.706667pt;}
.x6e_c00365{left:475.040000pt;}
.x3b_c00365{left:476.000000pt;}
.x27_c00365{left:476.960000pt;}
.x74_c00365{left:478.666667pt;}
.x103_c00365{left:480.000000pt;}
.x56_c00365{left:481.706667pt;}
.x30_c00365{left:487.040000pt;}
.xe9_c00365{left:488.373333pt;}
.xc0_c00365{left:489.333333pt;}
.xe_c00365{left:491.040000pt;}
.x46_c00365{left:492.373333pt;}
.x81_c00365{left:493.333333pt;}
.xa1_c00365{left:495.040000pt;}
.xcf_c00365{left:496.373333pt;}
.x8f_c00365{left:498.666667pt;}
.xb9_c00365{left:499.626667pt;}
.x69_c00365{left:502.293333pt;}
.x5e_c00365{left:504.373333pt;}
.x82_c00365{left:505.333333pt;}
.xe2_c00365{left:506.293333pt;}
.x97_c00365{left:509.706667pt;}
.xc1_c00365{left:510.666667pt;}
.x31_c00365{left:512.000000pt;}
.x1b_c00365{left:514.666667pt;}
.x28_c00365{left:515.626667pt;}
.x75_c00365{left:517.333333pt;}
.x47_c00365{left:518.666667pt;}
.x4c_c00365{left:520.960000pt;}
.xd0_c00365{left:522.293333pt;}
.xf_c00365{left:523.626667pt;}
.x29_c00365{left:527.626667pt;}
.x90_c00365{left:529.333333pt;}
.x57_c00365{left:532.000000pt;}
.x98_c00365{left:533.333333pt;}
.x76_c00365{left:534.293333pt;}
.xa2_c00365{left:536.000000pt;}
.x3c_c00365{left:538.293333pt;}
.xf8_c00365{left:540.000000pt;}
.x10_c00365{left:540.960000pt;}
.xd1_c00365{left:544.760000pt;}
.x4d_c00365{left:547.626667pt;}
.xea_c00365{left:548.960000pt;}
.xdb_c00365{left:551.626667pt;}
.xb1_c00365{left:554.293333pt;}
.x1c_c00365{left:556.373333pt;}
.x32_c00365{left:558.293333pt;}
.xf9_c00365{left:560.373333pt;}
.x6a_c00365{left:561.706667pt;}
.xca_c00365{left:564.000000pt;}
.x11_c00365{left:565.706667pt;}
.x3d_c00365{left:566.666667pt;}
.xd7_c00365{left:569.706667pt;}
.x6f_c00365{left:570.666667pt;}
.x77_c00365{left:574.666667pt;}
.x99_c00365{left:576.000000pt;}
.xc2_c00365{left:576.960000pt;}
.xa3_c00365{left:579.626667pt;}
.x1d_c00365{left:581.333333pt;}
.x91_c00365{left:583.040000pt;}
.xfa_c00365{left:585.333333pt;}
.x83_c00365{left:588.000000pt;}
.x5f_c00365{left:589.906667pt;}
.x3e_c00365{left:591.626667pt;}
.x6b_c00365{left:594.666667pt;}
.x78_c00365{left:596.960000pt;}
.x108_c00365{left:598.293333pt;}
.x12_c00365{left:600.373333pt;}
.x58_c00365{left:604.000000pt;}
.xc3_c00365{left:607.626667pt;}
.x4e_c00365{left:608.573333pt;}
.x48_c00365{left:610.293333pt;}
.x70_c00365{left:613.333333pt;}
.xa4_c00365{left:614.666667pt;}
.x9a_c00365{left:616.000000pt;}
.xb2_c00365{left:617.333333pt;}
.x33_c00365{left:618.293333pt;}
.xdc_c00365{left:620.373333pt;}
.xcb_c00365{left:624.000000pt;}
.x13_c00365{left:625.706667pt;}
.xe3_c00365{left:626.666667pt;}
.x1e_c00365{left:628.000000pt;}
.x49_c00365{left:629.706667pt;}
.x92_c00365{left:631.040000pt;}
.xf1_c00365{left:632.960000pt;}
.xc4_c00365{left:636.000000pt;}
}





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

.ir_c00366:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00366{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00366;src:url('chunks/assets/font_40d4ef6ba19cd8b4c797d724.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md7_c00366{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.md5_c00366{transform:matrix(0.305066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305066,0.000000,0.000000,0.250000,0,0);}
.m2a_c00366{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m2b_c00366{transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);}
.m14_c00366{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m74_c00366{transform:matrix(0.367227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367227,0.000000,0.000000,0.250000,0,0);}
.m29_c00366{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m30_c00366{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mb5_c00366{transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);}
.m8_c00366{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mc7_c00366{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.med_c00366{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00366{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mf_c00366{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m45_c00366{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.mde_c00366{transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);}
.m7_c00366{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m3_c00366{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m4c_c00366{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m3d_c00366{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m97_c00366{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mc2_c00366{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m5a_c00366{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.mb9_c00366{transform:matrix(0.401840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401840,0.000000,0.000000,0.250000,0,0);}
.m61_c00366{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m21_c00366{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.md9_c00366{transform:matrix(0.405147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405147,0.000000,0.000000,0.250000,0,0);}
.m36_c00366{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.md4_c00366{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m5d_c00366{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m71_c00366{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mb0_c00366{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m6e_c00366{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m47_c00366{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m49_c00366{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m2_c00366{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m1c_c00366{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m2d_c00366{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mfc_c00366{transform:matrix(0.421324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421324,0.000000,0.000000,0.250000,0,0);}
.m41_c00366{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.md1_c00366{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m38_c00366{transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);}
.m34_c00366{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m9d_c00366{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m66_c00366{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m81_c00366{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m89_c00366{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m46_c00366{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mc_c00366{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m6b_c00366{transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);}
.ma4_c00366{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m56_c00366{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.me6_c00366{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);}
.mc4_c00366{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mb2_c00366{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m26_c00366{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m2f_c00366{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m63_c00366{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.mdc_c00366{transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);}
.m87_c00366{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mbd_c00366{transform:matrix(0.444341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444341,0.000000,0.000000,0.250000,0,0);}
.m11_c00366{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m5b_c00366{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m8b_c00366{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m94_c00366{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.m4e_c00366{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.me3_c00366{transform:matrix(0.450321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450321,0.000000,0.000000,0.250000,0,0);}
.m20_c00366{transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);}
.m43_c00366{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mdf_c00366{transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);}
.m85_c00366{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.maa_c00366{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m23_c00366{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m37_c00366{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m6d_c00366{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m62_c00366{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m98_c00366{transform:matrix(0.463445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463445,0.000000,0.000000,0.250000,0,0);}
.me2_c00366{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m6c_c00366{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m7d_c00366{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.mfd_c00366{transform:matrix(0.471154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471154,0.000000,0.000000,0.250000,0,0);}
.m52_c00366{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m75_c00366{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m18_c00366{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m64_c00366{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mf3_c00366{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m33_c00366{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m28_c00366{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m3f_c00366{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m6f_c00366{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m7b_c00366{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m78_c00366{transform:matrix(0.489796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489796,0.000000,0.000000,0.250000,0,0);}
.mf8_c00366{transform:matrix(0.490441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490441,0.000000,0.000000,0.250000,0,0);}
.m5c_c00366{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mb1_c00366{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m9_c00366{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.ma0_c00366{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m1e_c00366{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.mac_c00366{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m7e_c00366{transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);}
.mc9_c00366{transform:matrix(0.497059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497059,0.000000,0.000000,0.250000,0,0);}
.mab_c00366{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m1a_c00366{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);}
.m6a_c00366{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m4f_c00366{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.ma9_c00366{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m2e_c00366{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m8c_c00366{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m59_c00366{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m60_c00366{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m50_c00366{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m88_c00366{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.m4_c00366{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m83_c00366{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.mba_c00366{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m4b_c00366{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m1_c00366{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mbe_c00366{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m73_c00366{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.me9_c00366{transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);}
.m53_c00366{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mc8_c00366{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m19_c00366{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m51_c00366{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m9c_c00366{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m80_c00366{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m42_c00366{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m24_c00366{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m8a_c00366{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m79_c00366{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m4a_c00366{transform:matrix(0.529564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529564,0.000000,0.000000,0.250000,0,0);}
.m92_c00366{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m5f_c00366{transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);}
.ma_c00366{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mc6_c00366{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.m99_c00366{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mfb_c00366{transform:matrix(0.535242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535242,0.000000,0.000000,0.250000,0,0);}
.me_c00366{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mb_c00366{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m5_c00366{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m39_c00366{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m1b_c00366{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m54_c00366{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mcd_c00366{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m35_c00366{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m57_c00366{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.ma6_c00366{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m82_c00366{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.ma8_c00366{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m15_c00366{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.m6_c00366{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m13_c00366{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m31_c00366{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m69_c00366{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m68_c00366{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m67_c00366{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mb3_c00366{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.mda_c00366{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m27_c00366{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mcf_c00366{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m95_c00366{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.me0_c00366{transform:matrix(0.553686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553686,0.000000,0.000000,0.250000,0,0);}
.m3a_c00366{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m7c_c00366{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.ma1_c00366{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.mf6_c00366{transform:matrix(0.555288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555288,0.000000,0.000000,0.250000,0,0);}
.m1d_c00366{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m17_c00366{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mf9_c00366{transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);}
.mbf_c00366{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m7f_c00366{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m65_c00366{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m84_c00366{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mbb_c00366{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m2c_c00366{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mec_c00366{transform:matrix(0.560897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560897,0.000000,0.000000,0.250000,0,0);}
.mee_c00366{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m4d_c00366{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m3b_c00366{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m70_c00366{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.mce_c00366{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.mf5_c00366{transform:matrix(0.570485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570485,0.000000,0.000000,0.250000,0,0);}
.md_c00366{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m55_c00366{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mb7_c00366{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m5e_c00366{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.mcc_c00366{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m9f_c00366{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mae_c00366{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.m16_c00366{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.me5_c00366{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.ma2_c00366{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m3e_c00366{transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);}
.m12_c00366{transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);}
.m32_c00366{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.maf_c00366{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m58_c00366{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m72_c00366{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.mb6_c00366{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m44_c00366{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.mc3_c00366{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m91_c00366{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mfe_c00366{transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);}
.md3_c00366{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.mb8_c00366{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m8f_c00366{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.md2_c00366{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m1f_c00366{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.md0_c00366{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m76_c00366{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.mca_c00366{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.mc5_c00366{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m93_c00366{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.mcb_c00366{transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);}
.m8e_c00366{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_c00366{transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);}
.mad_c00366{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mf0_c00366{transform:matrix(0.643172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643172,0.000000,0.000000,0.250000,0,0);}
.mf7_c00366{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.m48_c00366{transform:matrix(0.651971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651971,0.000000,0.000000,0.250000,0,0);}
.mef_c00366{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m86_c00366{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m10_c00366{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mdb_c00366{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m22_c00366{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.me7_c00366{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.md6_c00366{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m77_c00366{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.mf1_c00366{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.mb4_c00366{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.me4_c00366{transform:matrix(0.709251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709251,0.000000,0.000000,0.250000,0,0);}
.mea_c00366{transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);}
.m0_c00366{transform:matrix(0.714744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.714744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.714744,0.000000,0.000000,0.250000,0,0);}
.m96_c00366{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.ma3_c00366{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m40_c00366{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.meb_c00366{transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);}
.ma5_c00366{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.me8_c00366{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.mf4_c00366{transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);}
.mf2_c00366{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.mc0_c00366{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m90_c00366{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mdd_c00366{transform:matrix(0.770925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770925,0.000000,0.000000,0.250000,0,0);}
.m3c_c00366{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m9e_c00366{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.me1_c00366{transform:matrix(0.787445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.787445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.787445,0.000000,0.000000,0.250000,0,0);}
.mbc_c00366{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.m9b_c00366{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mc1_c00366{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.ma7_c00366{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m7a_c00366{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.mfa_c00366{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m25_c00366{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.md8_c00366{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.v1_c00366{vertical-align:-6.000000px;}
.v0_c00366{vertical-align:0.000000px;}
.v2_c00366{vertical-align:6.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;}
}
.ws1_c00366{word-spacing:-7.498084px;}
.ws0_c00366{word-spacing:-7.448345px;}
.ws2_c00366{word-spacing:-0.290457px;}
.wsf_c00366{word-spacing:0.000000px;}
.ws5_c00366{word-spacing:11.586697px;}
.ws3_c00366{word-spacing:17.872967px;}
.wsd_c00366{word-spacing:23.933331px;}
.ws8_c00366{word-spacing:33.638400px;}
.wse_c00366{word-spacing:36.269159px;}
.ws4_c00366{word-spacing:36.326509px;}
.wsc_c00366{word-spacing:38.705522px;}
.ws9_c00366{word-spacing:38.843828px;}
.wsa_c00366{word-spacing:49.006362px;}
.ws6_c00366{word-spacing:49.077217px;}
.ws7_c00366{word-spacing:62.056993px;}
.wsb_c00366{word-spacing:76.250880px;}
._0_c00366{width:28.276688px;}
._1_c00366{width:47.570880px;}
.fc0_c00366{color:transparent;}
.fs8_c00366{font-size:3.420000px;}
.fs9_c00366{font-size:11.880000px;}
.fs7_c00366{font-size:13.620000px;}
.fs0_c00366{font-size:18.720000px;}
.fs6_c00366{font-size:20.400000px;}
.fs5_c00366{font-size:25.500000px;}
.fs1_c00366{font-size:28.920000px;}
.fs4_c00366{font-size:32.340000px;}
.fs2_c00366{font-size:35.700000px;}
.fs3_c00366{font-size:39.120000px;}
.y0_c00366{bottom:0.000000px;}
.yaf_c00366{bottom:254.550000px;}
.yad_c00366{bottom:255.195000px;}
.yae_c00366{bottom:255.630000px;}
.yac_c00366{bottom:256.695000px;}
.yaa_c00366{bottom:269.130000px;}
.yab_c00366{bottom:270.195000px;}
.ya8_c00366{bottom:282.630000px;}
.ya9_c00366{bottom:283.695000px;}
.ya6_c00366{bottom:295.695000px;}
.ya5_c00366{bottom:296.130000px;}
.ya7_c00366{bottom:296.550000px;}
.ya4_c00366{bottom:297.195000px;}
.ya2_c00366{bottom:309.195000px;}
.ya1_c00366{bottom:311.130000px;}
.ya3_c00366{bottom:312.195000px;}
.y9f_c00366{bottom:324.195000px;}
.ya0_c00366{bottom:324.630000px;}
.y9e_c00366{bottom:325.695000px;}
.y9d_c00366{bottom:338.130000px;}
.y9b_c00366{bottom:338.775000px;}
.y9a_c00366{bottom:339.195000px;}
.y9c_c00366{bottom:339.630000px;}
.y99_c00366{bottom:352.695000px;}
.y98_c00366{bottom:354.195000px;}
.y97_c00366{bottom:365.130000px;}
.y95_c00366{bottom:366.195000px;}
.y94_c00366{bottom:366.630000px;}
.y96_c00366{bottom:367.695000px;}
.y92_c00366{bottom:380.130000px;}
.y93_c00366{bottom:381.195000px;}
.y91_c00366{bottom:393.630000px;}
.y90_c00366{bottom:394.695000px;}
.y8d_c00366{bottom:406.050000px;}
.y8e_c00366{bottom:407.130000px;}
.y8f_c00366{bottom:408.195000px;}
.y89_c00366{bottom:426.195000px;}
.y8b_c00366{bottom:426.630000px;}
.y8a_c00366{bottom:427.695000px;}
.y8c_c00366{bottom:427.920000px;}
.y86_c00366{bottom:438.630000px;}
.y88_c00366{bottom:440.130000px;}
.y87_c00366{bottom:441.195000px;}
.y85_c00366{bottom:470.550000px;}
.y84_c00366{bottom:484.470000px;}
.y83_c00366{bottom:485.550000px;}
.y82_c00366{bottom:497.325000px;}
.y80_c00366{bottom:499.470000px;}
.y81_c00366{bottom:500.550000px;}
.y7f_c00366{bottom:517.470000px;}
.y7e_c00366{bottom:520.050000px;}
.y7c_c00366{bottom:569.745000px;}
.y7d_c00366{bottom:570.630000px;}
.y7b_c00366{bottom:571.905000px;}
.y78_c00366{bottom:588.825000px;}
.y7a_c00366{bottom:589.905000px;}
.y76_c00366{bottom:590.130000px;}
.y77_c00366{bottom:590.325000px;}
.y79_c00366{bottom:590.970000px;}
.y75_c00366{bottom:591.405000px;}
.y72_c00366{bottom:607.470000px;}
.y73_c00366{bottom:607.680000px;}
.y74_c00366{bottom:608.745000px;}
.y71_c00366{bottom:610.905000px;}
.y70_c00366{bottom:625.905000px;}
.y6f_c00366{bottom:628.245000px;}
.y6d_c00366{bottom:629.130000px;}
.y6c_c00366{bottom:630.405000px;}
.y6e_c00366{bottom:631.470000px;}
.y6b_c00366{bottom:647.325000px;}
.y68_c00366{bottom:647.745000px;}
.y6a_c00366{bottom:648.825000px;}
.y67_c00366{bottom:649.905000px;}
.y69_c00366{bottom:650.130000px;}
.y65_c00366{bottom:667.245000px;}
.y62_c00366{bottom:668.130000px;}
.y66_c00366{bottom:668.970000px;}
.y63_c00366{bottom:669.405000px;}
.y64_c00366{bottom:669.630000px;}
.y60_c00366{bottom:685.905000px;}
.y5d_c00366{bottom:686.970000px;}
.y5e_c00366{bottom:688.245000px;}
.y5b_c00366{bottom:688.905000px;}
.y5c_c00366{bottom:689.130000px;}
.y61_c00366{bottom:689.970000px;}
.y5f_c00366{bottom:690.405000px;}
.y59_c00366{bottom:707.745000px;}
.y58_c00366{bottom:708.630000px;}
.y5a_c00366{bottom:709.470000px;}
.y57_c00366{bottom:709.905000px;}
.y55_c00366{bottom:725.745000px;}
.y53_c00366{bottom:725.970000px;}
.y56_c00366{bottom:727.245000px;}
.y51_c00366{bottom:728.130000px;}
.y54_c00366{bottom:728.325000px;}
.y50_c00366{bottom:728.970000px;}
.y52_c00366{bottom:729.405000px;}
.y4f_c00366{bottom:745.905000px;}
.y4c_c00366{bottom:746.745000px;}
.y4d_c00366{bottom:748.470000px;}
.y4e_c00366{bottom:748.905000px;}
.y49_c00366{bottom:766.245000px;}
.y4a_c00366{bottom:767.325000px;}
.y4b_c00366{bottom:767.970000px;}
.y48_c00366{bottom:768.405000px;}
.y47_c00366{bottom:787.905000px;}
.y43_c00366{bottom:806.325000px;}
.y44_c00366{bottom:807.405000px;}
.y45_c00366{bottom:807.630000px;}
.y46_c00366{bottom:808.470000px;}
.y40_c00366{bottom:824.745000px;}
.y42_c00366{bottom:826.050000px;}
.y3f_c00366{bottom:826.905000px;}
.y41_c00366{bottom:827.970000px;}
.y3d_c00366{bottom:843.405000px;}
.y3a_c00366{bottom:844.470000px;}
.y3e_c00366{bottom:845.745000px;}
.y3c_c00366{bottom:846.825000px;}
.y3b_c00366{bottom:847.905000px;}
.y34_c00366{bottom:862.905000px;}
.y36_c00366{bottom:863.745000px;}
.y39_c00366{bottom:865.245000px;}
.y35_c00366{bottom:865.905000px;}
.y38_c00366{bottom:866.325000px;}
.y37_c00366{bottom:867.405000px;}
.y32_c00366{bottom:882.405000px;}
.y2e_c00366{bottom:883.245000px;}
.y30_c00366{bottom:884.745000px;}
.y33_c00366{bottom:885.630000px;}
.y2f_c00366{bottom:885.825000px;}
.y2d_c00366{bottom:886.905000px;}
.y31_c00366{bottom:887.130000px;}
.y2c_c00366{bottom:904.245000px;}
.y2b_c00366{bottom:906.405000px;}
.y29_c00366{bottom:923.745000px;}
.y2a_c00366{bottom:924.825000px;}
.y28_c00366{bottom:925.905000px;}
.y27_c00366{bottom:943.245000px;}
.y26_c00366{bottom:944.745000px;}
.y24_c00366{bottom:945.405000px;}
.y25_c00366{bottom:946.470000px;}
.y1f_c00366{bottom:962.745000px;}
.y21_c00366{bottom:962.970000px;}
.y20_c00366{bottom:963.825000px;}
.y23_c00366{bottom:964.245000px;}
.y1e_c00366{bottom:964.905000px;}
.y22_c00366{bottom:965.130000px;}
.y1d_c00366{bottom:981.405000px;}
.y19_c00366{bottom:982.245000px;}
.y1a_c00366{bottom:983.745000px;}
.y1b_c00366{bottom:984.405000px;}
.y1c_c00366{bottom:985.905000px;}
.y18_c00366{bottom:1002.405000px;}
.y15_c00366{bottom:1003.245000px;}
.y13_c00366{bottom:1003.905000px;}
.y17_c00366{bottom:1004.130000px;}
.y14_c00366{bottom:1004.970000px;}
.y16_c00366{bottom:1005.405000px;}
.yd_c00366{bottom:1021.245000px;}
.y12_c00366{bottom:1022.325000px;}
.y10_c00366{bottom:1022.745000px;}
.yc_c00366{bottom:1023.405000px;}
.yf_c00366{bottom:1023.825000px;}
.y11_c00366{bottom:1024.470000px;}
.ye_c00366{bottom:1024.905000px;}
.y7_c00366{bottom:1040.745000px;}
.ya_c00366{bottom:1041.180000px;}
.yb_c00366{bottom:1042.245000px;}
.y6_c00366{bottom:1042.905000px;}
.y8_c00366{bottom:1043.130000px;}
.y9_c00366{bottom:1044.405000px;}
.y5_c00366{bottom:1060.905000px;}
.y3_c00366{bottom:1061.745000px;}
.y4_c00366{bottom:1063.905000px;}
.y2_c00366{bottom:1099.905000px;}
.y1_c00366{bottom:1103.130000px;}
.h9_c00366{height:4.206533px;}
.ha_c00366{height:14.612168px;}
.h8_c00366{height:16.752334px;}
.h1_c00366{height:23.025234px;}
.h7_c00366{height:25.091602px;}
.hb_c00366{height:29.025234px;}
.h6_c00366{height:31.364502px;}
.h2_c00366{height:35.571035px;}
.h5_c00366{height:39.777568px;}
.h3_c00366{height:43.910303px;}
.h4_c00366{height:48.116836px;}
.h0_c00366{height:1335.000000px;}
.w0_c00366{width:880.500000px;}
.x0_c00366{left:0.000000px;}
.x9c_c00366{left:151.080000px;}
.x2f_c00366{left:152.145000px;}
.x3_c00366{left:153.420000px;}
.x8a_c00366{left:168.000000px;}
.x19_c00366{left:169.500000px;}
.xe_c00366{left:172.080000px;}
.x86_c00366{left:175.080000px;}
.x4d_c00366{left:183.000000px;}
.x9d_c00366{left:184.500000px;}
.x68_c00366{left:186.420000px;}
.x76_c00366{left:189.420000px;}
.x57_c00366{left:191.145000px;}
.x3a_c00366{left:193.500000px;}
.x4_c00366{left:198.000000px;}
.x24_c00366{left:201.000000px;}
.x62_c00366{left:202.500000px;}
.x45_c00366{left:208.500000px;}
.x9e_c00366{left:210.000000px;}
.xbb_c00366{left:211.500000px;}
.x4e_c00366{left:212.580000px;}
.x87_c00366{left:214.500000px;}
.x30_c00366{left:215.580000px;}
.x96_c00366{left:217.500000px;}
.x25_c00366{left:219.000000px;}
.x1a_c00366{left:223.920000px;}
.xc1_c00366{left:225.420000px;}
.x92_c00366{left:227.580000px;}
.xaa_c00366{left:229.500000px;}
.xcf_c00366{left:235.080000px;}
.x26_c00366{left:237.420000px;}
.x58_c00366{left:238.500000px;}
.x88_c00366{left:240.420000px;}
.xa2_c00366{left:241.920000px;}
.xf_c00366{left:243.000000px;}
.x97_c00366{left:247.500000px;}
.x63_c00366{left:253.920000px;}
.x1b_c00366{left:255.000000px;}
.x46_c00366{left:258.420000px;}
.x7d_c00366{left:259.500000px;}
.xab_c00366{left:261.000000px;}
.x31_c00366{left:262.500000px;}
.x8b_c00366{left:264.420000px;}
.x3b_c00366{left:265.500000px;}
.xd5_c00366{left:267.000000px;}
.x5_c00366{left:271.500000px;}
.x1c_c00366{left:274.920000px;}
.xc7_c00366{left:276.420000px;}
.xb2_c00366{left:277.500000px;}
.x4f_c00366{left:280.500000px;}
.x69_c00366{left:281.580000px;}
.x59_c00366{left:283.080000px;}
.x47_c00366{left:286.080000px;}
.x32_c00366{left:288.000000px;}
.x9f_c00366{left:289.500000px;}
.xc2_c00366{left:292.920000px;}
.xe7_c00366{left:296.580000px;}
.xe9_c00366{left:298.500000px;}
.x50_c00366{left:300.000000px;}
.xde_c00366{left:301.080000px;}
.xc8_c00366{left:303.000000px;}
.x27_c00366{left:304.500000px;}
.x77_c00366{left:305.580000px;}
.x89_c00366{left:307.080000px;}
.xa3_c00366{left:309.420000px;}
.xac_c00366{left:310.500000px;}
.xed_c00366{left:312.000000px;}
.x64_c00366{left:313.920000px;}
.x10_c00366{left:318.000000px;}
.x5a_c00366{left:319.080000px;}
.x3c_c00366{left:320.580000px;}
.xdd_c00366{left:323.580000px;}
.xe8_c00366{left:325.500000px;}
.xc3_c00366{left:326.580000px;}
.x1d_c00366{left:328.080000px;}
.xea_c00366{left:329.580000px;}
.x98_c00366{left:331.080000px;}
.x7e_c00366{left:332.145000px;}
.xe3_c00366{left:334.080000px;}
.xad_c00366{left:335.580000px;}
.x11_c00366{left:339.420000px;}
.x70_c00366{left:342.000000px;}
.x5b_c00366{left:343.500000px;}
.x6_c00366{left:346.500000px;}
.x51_c00366{left:347.580000px;}
.xbc_c00366{left:351.000000px;}
.xc9_c00366{left:352.500000px;}
.x48_c00366{left:357.000000px;}
.x12_c00366{left:360.000000px;}
.x99_c00366{left:361.500000px;}
.xb3_c00366{left:363.000000px;}
.xa4_c00366{left:364.500000px;}
.x33_c00366{left:367.920000px;}
.x3d_c00366{left:370.500000px;}
.x78_c00366{left:371.580000px;}
.x8c_c00366{left:375.420000px;}
.xd9_c00366{left:376.500000px;}
.x28_c00366{left:380.580000px;}
.x5c_c00366{left:382.500000px;}
.xb4_c00366{left:384.420000px;}
.x7f_c00366{left:388.500000px;}
.xc4_c00366{left:390.000000px;}
.xbd_c00366{left:391.920000px;}
.xae_c00366{left:396.420000px;}
.x6a_c00366{left:400.920000px;}
.x34_c00366{left:402.000000px;}
.xd6_c00366{left:404.580000px;}
.x79_c00366{left:406.080000px;}
.xd0_c00366{left:408.000000px;}
.x3e_c00366{left:409.500000px;}
.xd4_c00366{left:411.000000px;}
.x13_c00366{left:413.580000px;}
.x1_c00366{left:415.080000px;}
.x29_c00366{left:421.080000px;}
.xb5_c00366{left:424.500000px;}
.xd7_c00366{left:426.000000px;}
.x7_c00366{left:427.500000px;}
.xa5_c00366{left:429.420000px;}
.x5d_c00366{left:433.080000px;}
.xbe_c00366{left:434.580000px;}
.x8d_c00366{left:436.080000px;}
.xeb_c00366{left:438.420000px;}
.x71_c00366{left:439.500000px;}
.x35_c00366{left:441.000000px;}
.x3f_c00366{left:442.080000px;}
.x1e_c00366{left:444.000000px;}
.xca_c00366{left:445.500000px;}
.xe4_c00366{left:447.000000px;}
.x52_c00366{left:450.645000px;}
.x6b_c00366{left:456.000000px;}
.x80_c00366{left:459.000000px;}
.x65_c00366{left:460.500000px;}
.x36_c00366{left:461.580000px;}
.x1f_c00366{left:463.500000px;}
.xb6_c00366{left:465.420000px;}
.xa6_c00366{left:466.500000px;}
.xda_c00366{left:471.000000px;}
.x72_c00366{left:472.500000px;}
.xcb_c00366{left:474.000000px;}
.x8e_c00366{left:476.580000px;}
.xe1_c00366{left:478.500000px;}
.x14_c00366{left:479.580000px;}
.x2a_c00366{left:481.500000px;}
.x49_c00366{left:483.000000px;}
.x8_c00366{left:484.080000px;}
.xdb_c00366{left:486.000000px;}
.x6c_c00366{left:487.080000px;}
.x81_c00366{left:489.000000px;}
.x40_c00366{left:492.000000px;}
.x66_c00366{left:495.000000px;}
.x5e_c00366{left:498.000000px;}
.xa7_c00366{left:500.580000px;}
.xc5_c00366{left:504.000000px;}
.x53_c00366{left:507.420000px;}
.xb7_c00366{left:508.500000px;}
.x73_c00366{left:513.420000px;}
.xdf_c00366{left:514.920000px;}
.x7a_c00366{left:516.000000px;}
.xe2_c00366{left:517.500000px;}
.xaf_c00366{left:519.420000px;}
.xdc_c00366{left:522.000000px;}
.xbf_c00366{left:523.500000px;}
.xec_c00366{left:525.000000px;}
.xe5_c00366{left:528.000000px;}
.x15_c00366{left:529.275000px;}
.x9a_c00366{left:532.500000px;}
.x9_c00366{left:533.775000px;}
.x82_c00366{left:535.500000px;}
.x5f_c00366{left:536.580000px;}
.xa0_c00366{left:544.500000px;}
.x7b_c00366{left:545.580000px;}
.x8f_c00366{left:547.920000px;}
.x41_c00366{left:549.000000px;}
.xd8_c00366{left:552.000000px;}
.xcc_c00366{left:553.080000px;}
.x4a_c00366{left:555.420000px;}
.x2b_c00366{left:556.920000px;}
.x6d_c00366{left:558.000000px;}
.xee_c00366{left:559.500000px;}
.x16_c00366{left:561.000000px;}
.xd1_c00366{left:562.500000px;}
.xe0_c00366{left:564.420000px;}
.xa_c00366{left:565.920000px;}
.x74_c00366{left:567.420000px;}
.x20_c00366{left:568.500000px;}
.x7c_c00366{left:572.580000px;}
.x42_c00366{left:574.500000px;}
.xa8_c00366{left:576.000000px;}
.x37_c00366{left:579.000000px;}
.xb8_c00366{left:580.920000px;}
.x4b_c00366{left:582.420000px;}
.xcd_c00366{left:583.500000px;}
.x6e_c00366{left:589.500000px;}
.x93_c00366{left:591.000000px;}
.x54_c00366{left:595.500000px;}
.x43_c00366{left:598.500000px;}
.x83_c00366{left:601.500000px;}
.xb_c00366{left:603.420000px;}
.xa9_c00366{left:604.500000px;}
.x2c_c00366{left:607.500000px;}
.xe6_c00366{left:609.000000px;}
.xb0_c00366{left:610.500000px;}
.x94_c00366{left:612.420000px;}
.xd2_c00366{left:615.420000px;}
.x6f_c00366{left:620.580000px;}
.x84_c00366{left:622.500000px;}
.x90_c00366{left:624.000000px;}
.x55_c00366{left:628.500000px;}
.xc_c00366{left:629.580000px;}
.xb9_c00366{left:631.920000px;}
.xb1_c00366{left:636.420000px;}
.x17_c00366{left:639.000000px;}
.x21_c00366{left:640.080000px;}
.xa1_c00366{left:643.500000px;}
.x9b_c00366{left:645.000000px;}
.x38_c00366{left:648.420000px;}
.x4c_c00366{left:651.420000px;}
.x91_c00366{left:652.500000px;}
.x60_c00366{left:653.580000px;}
.xc6_c00366{left:657.000000px;}
.xce_c00366{left:658.920000px;}
.x22_c00366{left:660.420000px;}
.x95_c00366{left:661.500000px;}
.xc0_c00366{left:666.000000px;}
.xba_c00366{left:670.500000px;}
.xd3_c00366{left:675.420000px;}
.x85_c00366{left:676.500000px;}
.x2d_c00366{left:678.420000px;}
.x56_c00366{left:679.920000px;}
.x18_c00366{left:683.580000px;}
.xd_c00366{left:687.420000px;}
.x23_c00366{left:688.920000px;}
.x39_c00366{left:692.355000px;}
.x2e_c00366{left:700.920000px;}
.x61_c00366{left:703.500000px;}
.x2_c00366{left:706.080000px;}
.x44_c00366{left:708.420000px;}
.x75_c00366{left:712.080000px;}
.x67_c00366{left:715.920000px;}
@media print{
.v1_c00366{vertical-align:-5.333333pt;}
.v0_c00366{vertical-align:0.000000pt;}
.v2_c00366{vertical-align:5.333333pt;}
.ls0_c00366{letter-spacing:0.000000pt;}
.ws1_c00366{word-spacing:-6.664963pt;}
.ws0_c00366{word-spacing:-6.620751pt;}
.ws2_c00366{word-spacing:-0.258184pt;}
.wsf_c00366{word-spacing:0.000000pt;}
.ws5_c00366{word-spacing:10.299286pt;}
.ws3_c00366{word-spacing:15.887082pt;}
.wsd_c00366{word-spacing:21.274072pt;}
.ws8_c00366{word-spacing:29.900800pt;}
.wse_c00366{word-spacing:32.239252pt;}
.ws4_c00366{word-spacing:32.290231pt;}
.wsc_c00366{word-spacing:34.404908pt;}
.ws9_c00366{word-spacing:34.527847pt;}
.wsa_c00366{word-spacing:43.561211pt;}
.ws6_c00366{word-spacing:43.624193pt;}
.ws7_c00366{word-spacing:55.161772pt;}
.wsb_c00366{word-spacing:67.778560pt;}
._0_c00366{width:25.134834pt;}
._1_c00366{width:42.285227pt;}
.fs8_c00366{font-size:3.040000pt;}
.fs9_c00366{font-size:10.560000pt;}
.fs7_c00366{font-size:12.106667pt;}
.fs0_c00366{font-size:16.640000pt;}
.fs6_c00366{font-size:18.133333pt;}
.fs5_c00366{font-size:22.666667pt;}
.fs1_c00366{font-size:25.706667pt;}
.fs4_c00366{font-size:28.746667pt;}
.fs2_c00366{font-size:31.733333pt;}
.fs3_c00366{font-size:34.773333pt;}
.y0_c00366{bottom:0.000000pt;}
.yaf_c00366{bottom:226.266667pt;}
.yad_c00366{bottom:226.840000pt;}
.yae_c00366{bottom:227.226667pt;}
.yac_c00366{bottom:228.173333pt;}
.yaa_c00366{bottom:239.226667pt;}
.yab_c00366{bottom:240.173333pt;}
.ya8_c00366{bottom:251.226667pt;}
.ya9_c00366{bottom:252.173333pt;}
.ya6_c00366{bottom:262.840000pt;}
.ya5_c00366{bottom:263.226667pt;}
.ya7_c00366{bottom:263.600000pt;}
.ya4_c00366{bottom:264.173333pt;}
.ya2_c00366{bottom:274.840000pt;}
.ya1_c00366{bottom:276.560000pt;}
.ya3_c00366{bottom:277.506667pt;}
.y9f_c00366{bottom:288.173333pt;}
.ya0_c00366{bottom:288.560000pt;}
.y9e_c00366{bottom:289.506667pt;}
.y9d_c00366{bottom:300.560000pt;}
.y9b_c00366{bottom:301.133333pt;}
.y9a_c00366{bottom:301.506667pt;}
.y9c_c00366{bottom:301.893333pt;}
.y99_c00366{bottom:313.506667pt;}
.y98_c00366{bottom:314.840000pt;}
.y97_c00366{bottom:324.560000pt;}
.y95_c00366{bottom:325.506667pt;}
.y94_c00366{bottom:325.893333pt;}
.y96_c00366{bottom:326.840000pt;}
.y92_c00366{bottom:337.893333pt;}
.y93_c00366{bottom:338.840000pt;}
.y91_c00366{bottom:349.893333pt;}
.y90_c00366{bottom:350.840000pt;}
.y8d_c00366{bottom:360.933333pt;}
.y8e_c00366{bottom:361.893333pt;}
.y8f_c00366{bottom:362.840000pt;}
.y89_c00366{bottom:378.840000pt;}
.y8b_c00366{bottom:379.226667pt;}
.y8a_c00366{bottom:380.173333pt;}
.y8c_c00366{bottom:380.373333pt;}
.y86_c00366{bottom:389.893333pt;}
.y88_c00366{bottom:391.226667pt;}
.y87_c00366{bottom:392.173333pt;}
.y85_c00366{bottom:418.266667pt;}
.y84_c00366{bottom:430.640000pt;}
.y83_c00366{bottom:431.600000pt;}
.y82_c00366{bottom:442.066667pt;}
.y80_c00366{bottom:443.973333pt;}
.y81_c00366{bottom:444.933333pt;}
.y7f_c00366{bottom:459.973333pt;}
.y7e_c00366{bottom:462.266667pt;}
.y7c_c00366{bottom:506.440000pt;}
.y7d_c00366{bottom:507.226667pt;}
.y7b_c00366{bottom:508.360000pt;}
.y78_c00366{bottom:523.400000pt;}
.y7a_c00366{bottom:524.360000pt;}
.y76_c00366{bottom:524.560000pt;}
.y77_c00366{bottom:524.733333pt;}
.y79_c00366{bottom:525.306667pt;}
.y75_c00366{bottom:525.693333pt;}
.y72_c00366{bottom:539.973333pt;}
.y73_c00366{bottom:540.160000pt;}
.y74_c00366{bottom:541.106667pt;}
.y71_c00366{bottom:543.026667pt;}
.y70_c00366{bottom:556.360000pt;}
.y6f_c00366{bottom:558.440000pt;}
.y6d_c00366{bottom:559.226667pt;}
.y6c_c00366{bottom:560.360000pt;}
.y6e_c00366{bottom:561.306667pt;}
.y6b_c00366{bottom:575.400000pt;}
.y68_c00366{bottom:575.773333pt;}
.y6a_c00366{bottom:576.733333pt;}
.y67_c00366{bottom:577.693333pt;}
.y69_c00366{bottom:577.893333pt;}
.y65_c00366{bottom:593.106667pt;}
.y62_c00366{bottom:593.893333pt;}
.y66_c00366{bottom:594.640000pt;}
.y63_c00366{bottom:595.026667pt;}
.y64_c00366{bottom:595.226667pt;}
.y60_c00366{bottom:609.693333pt;}
.y5d_c00366{bottom:610.640000pt;}
.y5e_c00366{bottom:611.773333pt;}
.y5b_c00366{bottom:612.360000pt;}
.y5c_c00366{bottom:612.560000pt;}
.y61_c00366{bottom:613.306667pt;}
.y5f_c00366{bottom:613.693333pt;}
.y59_c00366{bottom:629.106667pt;}
.y58_c00366{bottom:629.893333pt;}
.y5a_c00366{bottom:630.640000pt;}
.y57_c00366{bottom:631.026667pt;}
.y55_c00366{bottom:645.106667pt;}
.y53_c00366{bottom:645.306667pt;}
.y56_c00366{bottom:646.440000pt;}
.y51_c00366{bottom:647.226667pt;}
.y54_c00366{bottom:647.400000pt;}
.y50_c00366{bottom:647.973333pt;}
.y52_c00366{bottom:648.360000pt;}
.y4f_c00366{bottom:663.026667pt;}
.y4c_c00366{bottom:663.773333pt;}
.y4d_c00366{bottom:665.306667pt;}
.y4e_c00366{bottom:665.693333pt;}
.y49_c00366{bottom:681.106667pt;}
.y4a_c00366{bottom:682.066667pt;}
.y4b_c00366{bottom:682.640000pt;}
.y48_c00366{bottom:683.026667pt;}
.y47_c00366{bottom:700.360000pt;}
.y43_c00366{bottom:716.733333pt;}
.y44_c00366{bottom:717.693333pt;}
.y45_c00366{bottom:717.893333pt;}
.y46_c00366{bottom:718.640000pt;}
.y40_c00366{bottom:733.106667pt;}
.y42_c00366{bottom:734.266667pt;}
.y3f_c00366{bottom:735.026667pt;}
.y41_c00366{bottom:735.973333pt;}
.y3d_c00366{bottom:749.693333pt;}
.y3a_c00366{bottom:750.640000pt;}
.y3e_c00366{bottom:751.773333pt;}
.y3c_c00366{bottom:752.733333pt;}
.y3b_c00366{bottom:753.693333pt;}
.y34_c00366{bottom:767.026667pt;}
.y36_c00366{bottom:767.773333pt;}
.y39_c00366{bottom:769.106667pt;}
.y35_c00366{bottom:769.693333pt;}
.y38_c00366{bottom:770.066667pt;}
.y37_c00366{bottom:771.026667pt;}
.y32_c00366{bottom:784.360000pt;}
.y2e_c00366{bottom:785.106667pt;}
.y30_c00366{bottom:786.440000pt;}
.y33_c00366{bottom:787.226667pt;}
.y2f_c00366{bottom:787.400000pt;}
.y2d_c00366{bottom:788.360000pt;}
.y31_c00366{bottom:788.560000pt;}
.y2c_c00366{bottom:803.773333pt;}
.y2b_c00366{bottom:805.693333pt;}
.y29_c00366{bottom:821.106667pt;}
.y2a_c00366{bottom:822.066667pt;}
.y28_c00366{bottom:823.026667pt;}
.y27_c00366{bottom:838.440000pt;}
.y26_c00366{bottom:839.773333pt;}
.y24_c00366{bottom:840.360000pt;}
.y25_c00366{bottom:841.306667pt;}
.y1f_c00366{bottom:855.773333pt;}
.y21_c00366{bottom:855.973333pt;}
.y20_c00366{bottom:856.733333pt;}
.y23_c00366{bottom:857.106667pt;}
.y1e_c00366{bottom:857.693333pt;}
.y22_c00366{bottom:857.893333pt;}
.y1d_c00366{bottom:872.360000pt;}
.y19_c00366{bottom:873.106667pt;}
.y1a_c00366{bottom:874.440000pt;}
.y1b_c00366{bottom:875.026667pt;}
.y1c_c00366{bottom:876.360000pt;}
.y18_c00366{bottom:891.026667pt;}
.y15_c00366{bottom:891.773333pt;}
.y13_c00366{bottom:892.360000pt;}
.y17_c00366{bottom:892.560000pt;}
.y14_c00366{bottom:893.306667pt;}
.y16_c00366{bottom:893.693333pt;}
.yd_c00366{bottom:907.773333pt;}
.y12_c00366{bottom:908.733333pt;}
.y10_c00366{bottom:909.106667pt;}
.yc_c00366{bottom:909.693333pt;}
.yf_c00366{bottom:910.066667pt;}
.y11_c00366{bottom:910.640000pt;}
.ye_c00366{bottom:911.026667pt;}
.y7_c00366{bottom:925.106667pt;}
.ya_c00366{bottom:925.493333pt;}
.yb_c00366{bottom:926.440000pt;}
.y6_c00366{bottom:927.026667pt;}
.y8_c00366{bottom:927.226667pt;}
.y9_c00366{bottom:928.360000pt;}
.y5_c00366{bottom:943.026667pt;}
.y3_c00366{bottom:943.773333pt;}
.y4_c00366{bottom:945.693333pt;}
.y2_c00366{bottom:977.693333pt;}
.y1_c00366{bottom:980.560000pt;}
.h9_c00366{height:3.739141pt;}
.ha_c00366{height:12.988594pt;}
.h8_c00366{height:14.890964pt;}
.h1_c00366{height:20.466875pt;}
.h7_c00366{height:22.303646pt;}
.hb_c00366{height:25.800208pt;}
.h6_c00366{height:27.879557pt;}
.h2_c00366{height:31.618698pt;}
.h5_c00366{height:35.357839pt;}
.h3_c00366{height:39.031380pt;}
.h4_c00366{height:42.770521pt;}
.h0_c00366{height:1186.666667pt;}
.w0_c00366{width:782.666667pt;}
.x0_c00366{left:0.000000pt;}
.x9c_c00366{left:134.293333pt;}
.x2f_c00366{left:135.240000pt;}
.x3_c00366{left:136.373333pt;}
.x8a_c00366{left:149.333333pt;}
.x19_c00366{left:150.666667pt;}
.xe_c00366{left:152.960000pt;}
.x86_c00366{left:155.626667pt;}
.x4d_c00366{left:162.666667pt;}
.x9d_c00366{left:164.000000pt;}
.x68_c00366{left:165.706667pt;}
.x76_c00366{left:168.373333pt;}
.x57_c00366{left:169.906667pt;}
.x3a_c00366{left:172.000000pt;}
.x4_c00366{left:176.000000pt;}
.x24_c00366{left:178.666667pt;}
.x62_c00366{left:180.000000pt;}
.x45_c00366{left:185.333333pt;}
.x9e_c00366{left:186.666667pt;}
.xbb_c00366{left:188.000000pt;}
.x4e_c00366{left:188.960000pt;}
.x87_c00366{left:190.666667pt;}
.x30_c00366{left:191.626667pt;}
.x96_c00366{left:193.333333pt;}
.x25_c00366{left:194.666667pt;}
.x1a_c00366{left:199.040000pt;}
.xc1_c00366{left:200.373333pt;}
.x92_c00366{left:202.293333pt;}
.xaa_c00366{left:204.000000pt;}
.xcf_c00366{left:208.960000pt;}
.x26_c00366{left:211.040000pt;}
.x58_c00366{left:212.000000pt;}
.x88_c00366{left:213.706667pt;}
.xa2_c00366{left:215.040000pt;}
.xf_c00366{left:216.000000pt;}
.x97_c00366{left:220.000000pt;}
.x63_c00366{left:225.706667pt;}
.x1b_c00366{left:226.666667pt;}
.x46_c00366{left:229.706667pt;}
.x7d_c00366{left:230.666667pt;}
.xab_c00366{left:232.000000pt;}
.x31_c00366{left:233.333333pt;}
.x8b_c00366{left:235.040000pt;}
.x3b_c00366{left:236.000000pt;}
.xd5_c00366{left:237.333333pt;}
.x5_c00366{left:241.333333pt;}
.x1c_c00366{left:244.373333pt;}
.xc7_c00366{left:245.706667pt;}
.xb2_c00366{left:246.666667pt;}
.x4f_c00366{left:249.333333pt;}
.x69_c00366{left:250.293333pt;}
.x59_c00366{left:251.626667pt;}
.x47_c00366{left:254.293333pt;}
.x32_c00366{left:256.000000pt;}
.x9f_c00366{left:257.333333pt;}
.xc2_c00366{left:260.373333pt;}
.xe7_c00366{left:263.626667pt;}
.xe9_c00366{left:265.333333pt;}
.x50_c00366{left:266.666667pt;}
.xde_c00366{left:267.626667pt;}
.xc8_c00366{left:269.333333pt;}
.x27_c00366{left:270.666667pt;}
.x77_c00366{left:271.626667pt;}
.x89_c00366{left:272.960000pt;}
.xa3_c00366{left:275.040000pt;}
.xac_c00366{left:276.000000pt;}
.xed_c00366{left:277.333333pt;}
.x64_c00366{left:279.040000pt;}
.x10_c00366{left:282.666667pt;}
.x5a_c00366{left:283.626667pt;}
.x3c_c00366{left:284.960000pt;}
.xdd_c00366{left:287.626667pt;}
.xe8_c00366{left:289.333333pt;}
.xc3_c00366{left:290.293333pt;}
.x1d_c00366{left:291.626667pt;}
.xea_c00366{left:292.960000pt;}
.x98_c00366{left:294.293333pt;}
.x7e_c00366{left:295.240000pt;}
.xe3_c00366{left:296.960000pt;}
.xad_c00366{left:298.293333pt;}
.x11_c00366{left:301.706667pt;}
.x70_c00366{left:304.000000pt;}
.x5b_c00366{left:305.333333pt;}
.x6_c00366{left:308.000000pt;}
.x51_c00366{left:308.960000pt;}
.xbc_c00366{left:312.000000pt;}
.xc9_c00366{left:313.333333pt;}
.x48_c00366{left:317.333333pt;}
.x12_c00366{left:320.000000pt;}
.x99_c00366{left:321.333333pt;}
.xb3_c00366{left:322.666667pt;}
.xa4_c00366{left:324.000000pt;}
.x33_c00366{left:327.040000pt;}
.x3d_c00366{left:329.333333pt;}
.x78_c00366{left:330.293333pt;}
.x8c_c00366{left:333.706667pt;}
.xd9_c00366{left:334.666667pt;}
.x28_c00366{left:338.293333pt;}
.x5c_c00366{left:340.000000pt;}
.xb4_c00366{left:341.706667pt;}
.x7f_c00366{left:345.333333pt;}
.xc4_c00366{left:346.666667pt;}
.xbd_c00366{left:348.373333pt;}
.xae_c00366{left:352.373333pt;}
.x6a_c00366{left:356.373333pt;}
.x34_c00366{left:357.333333pt;}
.xd6_c00366{left:359.626667pt;}
.x79_c00366{left:360.960000pt;}
.xd0_c00366{left:362.666667pt;}
.x3e_c00366{left:364.000000pt;}
.xd4_c00366{left:365.333333pt;}
.x13_c00366{left:367.626667pt;}
.x1_c00366{left:368.960000pt;}
.x29_c00366{left:374.293333pt;}
.xb5_c00366{left:377.333333pt;}
.xd7_c00366{left:378.666667pt;}
.x7_c00366{left:380.000000pt;}
.xa5_c00366{left:381.706667pt;}
.x5d_c00366{left:384.960000pt;}
.xbe_c00366{left:386.293333pt;}
.x8d_c00366{left:387.626667pt;}
.xeb_c00366{left:389.706667pt;}
.x71_c00366{left:390.666667pt;}
.x35_c00366{left:392.000000pt;}
.x3f_c00366{left:392.960000pt;}
.x1e_c00366{left:394.666667pt;}
.xca_c00366{left:396.000000pt;}
.xe4_c00366{left:397.333333pt;}
.x52_c00366{left:400.573333pt;}
.x6b_c00366{left:405.333333pt;}
.x80_c00366{left:408.000000pt;}
.x65_c00366{left:409.333333pt;}
.x36_c00366{left:410.293333pt;}
.x1f_c00366{left:412.000000pt;}
.xb6_c00366{left:413.706667pt;}
.xa6_c00366{left:414.666667pt;}
.xda_c00366{left:418.666667pt;}
.x72_c00366{left:420.000000pt;}
.xcb_c00366{left:421.333333pt;}
.x8e_c00366{left:423.626667pt;}
.xe1_c00366{left:425.333333pt;}
.x14_c00366{left:426.293333pt;}
.x2a_c00366{left:428.000000pt;}
.x49_c00366{left:429.333333pt;}
.x8_c00366{left:430.293333pt;}
.xdb_c00366{left:432.000000pt;}
.x6c_c00366{left:432.960000pt;}
.x81_c00366{left:434.666667pt;}
.x40_c00366{left:437.333333pt;}
.x66_c00366{left:440.000000pt;}
.x5e_c00366{left:442.666667pt;}
.xa7_c00366{left:444.960000pt;}
.xc5_c00366{left:448.000000pt;}
.x53_c00366{left:451.040000pt;}
.xb7_c00366{left:452.000000pt;}
.x73_c00366{left:456.373333pt;}
.xdf_c00366{left:457.706667pt;}
.x7a_c00366{left:458.666667pt;}
.xe2_c00366{left:460.000000pt;}
.xaf_c00366{left:461.706667pt;}
.xdc_c00366{left:464.000000pt;}
.xbf_c00366{left:465.333333pt;}
.xec_c00366{left:466.666667pt;}
.xe5_c00366{left:469.333333pt;}
.x15_c00366{left:470.466667pt;}
.x9a_c00366{left:473.333333pt;}
.x9_c00366{left:474.466667pt;}
.x82_c00366{left:476.000000pt;}
.x5f_c00366{left:476.960000pt;}
.xa0_c00366{left:484.000000pt;}
.x7b_c00366{left:484.960000pt;}
.x8f_c00366{left:487.040000pt;}
.x41_c00366{left:488.000000pt;}
.xd8_c00366{left:490.666667pt;}
.xcc_c00366{left:491.626667pt;}
.x4a_c00366{left:493.706667pt;}
.x2b_c00366{left:495.040000pt;}
.x6d_c00366{left:496.000000pt;}
.xee_c00366{left:497.333333pt;}
.x16_c00366{left:498.666667pt;}
.xd1_c00366{left:500.000000pt;}
.xe0_c00366{left:501.706667pt;}
.xa_c00366{left:503.040000pt;}
.x74_c00366{left:504.373333pt;}
.x20_c00366{left:505.333333pt;}
.x7c_c00366{left:508.960000pt;}
.x42_c00366{left:510.666667pt;}
.xa8_c00366{left:512.000000pt;}
.x37_c00366{left:514.666667pt;}
.xb8_c00366{left:516.373333pt;}
.x4b_c00366{left:517.706667pt;}
.xcd_c00366{left:518.666667pt;}
.x6e_c00366{left:524.000000pt;}
.x93_c00366{left:525.333333pt;}
.x54_c00366{left:529.333333pt;}
.x43_c00366{left:532.000000pt;}
.x83_c00366{left:534.666667pt;}
.xb_c00366{left:536.373333pt;}
.xa9_c00366{left:537.333333pt;}
.x2c_c00366{left:540.000000pt;}
.xe6_c00366{left:541.333333pt;}
.xb0_c00366{left:542.666667pt;}
.x94_c00366{left:544.373333pt;}
.xd2_c00366{left:547.040000pt;}
.x6f_c00366{left:551.626667pt;}
.x84_c00366{left:553.333333pt;}
.x90_c00366{left:554.666667pt;}
.x55_c00366{left:558.666667pt;}
.xc_c00366{left:559.626667pt;}
.xb9_c00366{left:561.706667pt;}
.xb1_c00366{left:565.706667pt;}
.x17_c00366{left:568.000000pt;}
.x21_c00366{left:568.960000pt;}
.xa1_c00366{left:572.000000pt;}
.x9b_c00366{left:573.333333pt;}
.x38_c00366{left:576.373333pt;}
.x4c_c00366{left:579.040000pt;}
.x91_c00366{left:580.000000pt;}
.x60_c00366{left:580.960000pt;}
.xc6_c00366{left:584.000000pt;}
.xce_c00366{left:585.706667pt;}
.x22_c00366{left:587.040000pt;}
.x95_c00366{left:588.000000pt;}
.xc0_c00366{left:592.000000pt;}
.xba_c00366{left:596.000000pt;}
.xd3_c00366{left:600.373333pt;}
.x85_c00366{left:601.333333pt;}
.x2d_c00366{left:603.040000pt;}
.x56_c00366{left:604.373333pt;}
.x18_c00366{left:607.626667pt;}
.xd_c00366{left:611.040000pt;}
.x23_c00366{left:612.373333pt;}
.x39_c00366{left:615.426667pt;}
.x2e_c00366{left:623.040000pt;}
.x61_c00366{left:625.333333pt;}
.x2_c00366{left:627.626667pt;}
.x44_c00366{left:629.706667pt;}
.x75_c00366{left:632.960000pt;}
.x67_c00366{left:636.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_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_de11531ca13e24fe77c045a0.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8a_c00367{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.mc6_c00367{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m0_c00367{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.mab_c00367{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m23_c00367{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m12_c00367{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m81_c00367{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mb6_c00367{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00367{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mc8_c00367{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m2a_c00367{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.mc_c00367{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m1e_c00367{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.maa_c00367{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.mb_c00367{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.ma3_c00367{transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);}
.m53_c00367{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.mad_c00367{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m94_c00367{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m93_c00367{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.md6_c00367{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m7e_c00367{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m99_c00367{transform:matrix(0.397959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397959,0.000000,0.000000,0.250000,0,0);}
.m4e_c00367{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.m87_c00367{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m75_c00367{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.ma8_c00367{transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);}
.m6e_c00367{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m7b_c00367{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m66_c00367{transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);}
.mbd_c00367{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mf8_c00367{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m1b_c00367{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m3a_c00367{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mea_c00367{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.m77_c00367{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m1c_c00367{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.meb_c00367{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m29_c00367{transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);}
.m79_c00367{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mfa_c00367{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m8e_c00367{transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);}
.mcd_c00367{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m27_c00367{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m30_c00367{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m45_c00367{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m4f_c00367{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.mf6_c00367{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m64_c00367{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.md_c00367{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.md4_c00367{transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);}
.m25_c00367{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mdf_c00367{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.mc2_c00367{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m14_c00367{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m4b_c00367{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m6f_c00367{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mb9_c00367{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m58_c00367{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.ma5_c00367{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m70_c00367{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.mc7_c00367{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m2b_c00367{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mb2_c00367{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mbf_c00367{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m7f_c00367{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m78_c00367{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m80_c00367{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m8c_c00367{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m6d_c00367{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.mc9_c00367{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.mf_c00367{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m74_c00367{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.md3_c00367{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.mc3_c00367{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mbb_c00367{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m9d_c00367{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m97_c00367{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.mb1_c00367{transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);}
.mcc_c00367{transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);}
.m33_c00367{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m7d_c00367{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m51_c00367{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.mbe_c00367{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.mbc_c00367{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.me7_c00367{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m28_c00367{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m6c_c00367{transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);}
.m57_c00367{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m9e_c00367{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.me5_c00367{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.m88_c00367{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.ma9_c00367{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m3f_c00367{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mb4_c00367{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m65_c00367{transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);}
.mb3_c00367{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m72_c00367{transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);}
.m2e_c00367{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mf9_c00367{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m42_c00367{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.mee_c00367{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.ma2_c00367{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m6a_c00367{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.md1_c00367{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m18_c00367{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m1d_c00367{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);}
.me6_c00367{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m32_c00367{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.md0_c00367{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.med_c00367{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m8f_c00367{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mde_c00367{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m9a_c00367{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.mdc_c00367{transform:matrix(0.510504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510504,0.000000,0.000000,0.250000,0,0);}
.m67_c00367{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m86_c00367{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.ma0_c00367{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m9f_c00367{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m69_c00367{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m60_c00367{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mdd_c00367{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.mcf_c00367{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m2c_c00367{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m2f_c00367{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m40_c00367{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m61_c00367{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m49_c00367{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m8d_c00367{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.me_c00367{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m92_c00367{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mae_c00367{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m68_c00367{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m8b_c00367{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m20_c00367{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m41_c00367{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m5_c00367{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mdb_c00367{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.ma4_c00367{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m44_c00367{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mec_c00367{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m4_c00367{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mf3_c00367{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mf1_c00367{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m59_c00367{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m8_c00367{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m38_c00367{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m5a_c00367{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mf4_c00367{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.ma6_c00367{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m4c_c00367{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m63_c00367{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m9c_c00367{transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);}
.ma7_c00367{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m55_c00367{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m98_c00367{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.mba_c00367{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.me4_c00367{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.ma_c00367{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m19_c00367{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m34_c00367{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m54_c00367{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m4d_c00367{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m1f_c00367{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m52_c00367{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m48_c00367{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.me0_c00367{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m47_c00367{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m46_c00367{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mc0_c00367{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m5e_c00367{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m84_c00367{transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);}
.mb0_c00367{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m5d_c00367{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m4a_c00367{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m22_c00367{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mc5_c00367{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m76_c00367{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mef_c00367{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m9b_c00367{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mb5_c00367{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m24_c00367{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);}
.m3c_c00367{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.md9_c00367{transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);}
.m3e_c00367{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mf2_c00367{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.maf_c00367{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m96_c00367{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m5b_c00367{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m10_c00367{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mca_c00367{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.me2_c00367{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m91_c00367{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mf5_c00367{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m89_c00367{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m95_c00367{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m26_c00367{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.me1_c00367{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.m1a_c00367{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.md5_c00367{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m3_c00367{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mce_c00367{transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);}
.m82_c00367{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.md2_c00367{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);}
.me3_c00367{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m7c_c00367{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.ma1_c00367{transform:matrix(0.591805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591805,0.000000,0.000000,0.250000,0,0);}
.m2_c00367{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.me8_c00367{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m31_c00367{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.m50_c00367{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m85_c00367{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.m16_c00367{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.m36_c00367{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m43_c00367{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m11_c00367{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m3b_c00367{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m3d_c00367{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);}
.m15_c00367{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.md7_c00367{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m37_c00367{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m9_c00367{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.mc1_c00367{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m1_c00367{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m56_c00367{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m6_c00367{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m71_c00367{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mb8_c00367{transform:matrix(0.678824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.678824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.678824,0.000000,0.000000,0.250000,0,0);}
.me9_c00367{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m7a_c00367{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m83_c00367{transform:matrix(0.697647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697647,0.000000,0.000000,0.250000,0,0);}
.mc4_c00367{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mf7_c00367{transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);}
.mcb_c00367{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m13_c00367{transform:matrix(0.723529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.723529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.723529,0.000000,0.000000,0.250000,0,0);}
.m73_c00367{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.mf0_c00367{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mb7_c00367{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m7_c00367{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m6b_c00367{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.m39_c00367{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m35_c00367{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m5f_c00367{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.md8_c00367{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.mac_c00367{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m90_c00367{transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);}
.m2d_c00367{transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);}
.m5c_c00367{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mda_c00367{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m21_c00367{transform:matrix(1.165865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.165865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.165865,0.000000,0.000000,0.250000,0,0);}
.m62_c00367{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws1_c00367{word-spacing:-8.301417px;}
.ws0_c00367{word-spacing:-1.980083px;}
.ws2_c00367{word-spacing:0.000000px;}
.fc0_c00367{color:transparent;}
.fs6_c00367{font-size:3.420000px;}
.fs4_c00367{font-size:18.720000px;}
.fs1_c00367{font-size:20.400000px;}
.fs3_c00367{font-size:25.500000px;}
.fs2_c00367{font-size:28.920000px;}
.fs5_c00367{font-size:32.340000px;}
.fs0_c00367{font-size:35.700000px;}
.fs7_c00367{font-size:39.120000px;}
.y0_c00367{bottom:0.000000px;}
.yc5_c00367{bottom:250.245000px;}
.yc4_c00367{bottom:252.405000px;}
.yc6_c00367{bottom:253.470000px;}
.yc3_c00367{bottom:269.745000px;}
.ybf_c00367{bottom:270.825000px;}
.yc2_c00367{bottom:271.245000px;}
.ybe_c00367{bottom:271.905000px;}
.yc0_c00367{bottom:272.130000px;}
.yc1_c00367{bottom:272.970000px;}
.yba_c00367{bottom:288.405000px;}
.ybc_c00367{bottom:291.630000px;}
.ybd_c00367{bottom:292.470000px;}
.ybb_c00367{bottom:292.905000px;}
.yb9_c00367{bottom:308.745000px;}
.yb7_c00367{bottom:310.245000px;}
.yb8_c00367{bottom:311.130000px;}
.yb6_c00367{bottom:312.405000px;}
.yb5_c00367{bottom:329.745000px;}
.yaf_c00367{bottom:330.405000px;}
.yb4_c00367{bottom:330.630000px;}
.yb2_c00367{bottom:330.825000px;}
.yb1_c00367{bottom:331.470000px;}
.yb0_c00367{bottom:331.905000px;}
.yb3_c00367{bottom:332.970000px;}
.yad_c00367{bottom:348.825000px;}
.yae_c00367{bottom:349.245000px;}
.yaa_c00367{bottom:349.905000px;}
.yac_c00367{bottom:350.970000px;}
.yab_c00367{bottom:351.405000px;}
.ya8_c00367{bottom:368.745000px;}
.ya7_c00367{bottom:370.245000px;}
.ya9_c00367{bottom:370.470000px;}
.ya6_c00367{bottom:370.905000px;}
.ya4_c00367{bottom:387.405000px;}
.ya1_c00367{bottom:388.245000px;}
.ya3_c00367{bottom:389.745000px;}
.y9f_c00367{bottom:390.405000px;}
.ya5_c00367{bottom:390.630000px;}
.ya2_c00367{bottom:391.470000px;}
.ya0_c00367{bottom:391.905000px;}
.y9c_c00367{bottom:407.970000px;}
.y9e_c00367{bottom:410.970000px;}
.y9b_c00367{bottom:411.405000px;}
.y9d_c00367{bottom:412.470000px;}
.y99_c00367{bottom:428.745000px;}
.y98_c00367{bottom:429.630000px;}
.y9a_c00367{bottom:430.470000px;}
.y97_c00367{bottom:430.905000px;}
.y95_c00367{bottom:446.970000px;}
.y96_c00367{bottom:447.825000px;}
.y91_c00367{bottom:449.970000px;}
.y92_c00367{bottom:450.405000px;}
.y93_c00367{bottom:450.630000px;}
.y94_c00367{bottom:451.470000px;}
.y8e_c00367{bottom:467.745000px;}
.y8f_c00367{bottom:469.905000px;}
.y90_c00367{bottom:470.130000px;}
.y8d_c00367{bottom:487.245000px;}
.y8b_c00367{bottom:489.405000px;}
.y8a_c00367{bottom:489.825000px;}
.y8c_c00367{bottom:490.470000px;}
.y89_c00367{bottom:490.905000px;}
.y85_c00367{bottom:506.745000px;}
.y86_c00367{bottom:507.825000px;}
.y88_c00367{bottom:508.905000px;}
.y83_c00367{bottom:509.325000px;}
.y87_c00367{bottom:509.970000px;}
.y84_c00367{bottom:510.405000px;}
.y7e_c00367{bottom:525.405000px;}
.y82_c00367{bottom:526.245000px;}
.y7f_c00367{bottom:527.745000px;}
.y80_c00367{bottom:528.630000px;}
.y81_c00367{bottom:529.470000px;}
.y7d_c00367{bottom:529.905000px;}
.y7c_c00367{bottom:530.970000px;}
.y7a_c00367{bottom:544.905000px;}
.y7b_c00367{bottom:546.180000px;}
.y79_c00367{bottom:547.245000px;}
.y78_c00367{bottom:549.405000px;}
.y75_c00367{bottom:564.405000px;}
.y76_c00367{bottom:565.245000px;}
.y77_c00367{bottom:565.680000px;}
.y74_c00367{bottom:566.745000px;}
.y72_c00367{bottom:567.630000px;}
.y73_c00367{bottom:568.905000px;}
.y6f_c00367{bottom:585.180000px;}
.y71_c00367{bottom:585.405000px;}
.y6e_c00367{bottom:586.245000px;}
.y70_c00367{bottom:587.325000px;}
.y6d_c00367{bottom:588.405000px;}
.y6c_c00367{bottom:605.745000px;}
.y6a_c00367{bottom:607.905000px;}
.y6b_c00367{bottom:608.130000px;}
.y69_c00367{bottom:624.825000px;}
.y68_c00367{bottom:626.325000px;}
.y67_c00367{bottom:627.405000px;}
.y65_c00367{bottom:646.245000px;}
.y66_c00367{bottom:646.905000px;}
.y64_c00367{bottom:648.405000px;}
.y60_c00367{bottom:664.245000px;}
.y62_c00367{bottom:665.745000px;}
.y5f_c00367{bottom:666.405000px;}
.y63_c00367{bottom:666.630000px;}
.y5e_c00367{bottom:667.470000px;}
.y61_c00367{bottom:667.905000px;}
.y5d_c00367{bottom:685.245000px;}
.y5c_c00367{bottom:686.970000px;}
.y5a_c00367{bottom:687.405000px;}
.y5b_c00367{bottom:688.470000px;}
.y57_c00367{bottom:702.405000px;}
.y55_c00367{bottom:704.325000px;}
.y56_c00367{bottom:704.745000px;}
.y54_c00367{bottom:705.405000px;}
.y58_c00367{bottom:706.470000px;}
.y59_c00367{bottom:706.905000px;}
.y53_c00367{bottom:724.245000px;}
.y52_c00367{bottom:726.405000px;}
.y4f_c00367{bottom:742.905000px;}
.y51_c00367{bottom:743.745000px;}
.y4d_c00367{bottom:744.630000px;}
.y50_c00367{bottom:745.905000px;}
.y4e_c00367{bottom:746.130000px;}
.y49_c00367{bottom:763.245000px;}
.y4c_c00367{bottom:764.325000px;}
.y4b_c00367{bottom:765.405000px;}
.y4a_c00367{bottom:766.470000px;}
.y45_c00367{bottom:781.905000px;}
.y48_c00367{bottom:782.745000px;}
.y47_c00367{bottom:784.470000px;}
.y43_c00367{bottom:784.905000px;}
.y44_c00367{bottom:785.130000px;}
.y46_c00367{bottom:785.970000px;}
.y42_c00367{bottom:801.825000px;}
.y40_c00367{bottom:802.245000px;}
.y41_c00367{bottom:803.325000px;}
.y3d_c00367{bottom:804.405000px;}
.y3f_c00367{bottom:804.630000px;}
.y3e_c00367{bottom:805.920000px;}
.y3b_c00367{bottom:823.245000px;}
.y3c_c00367{bottom:825.405000px;}
.y3a_c00367{bottom:843.630000px;}
.y39_c00367{bottom:844.905000px;}
.y37_c00367{bottom:861.825000px;}
.y38_c00367{bottom:862.245000px;}
.y36_c00367{bottom:863.970000px;}
.y35_c00367{bottom:864.405000px;}
.y34_c00367{bottom:881.745000px;}
.y33_c00367{bottom:882.825000px;}
.y32_c00367{bottom:883.905000px;}
.y2f_c00367{bottom:900.405000px;}
.y2e_c00367{bottom:901.245000px;}
.y30_c00367{bottom:902.130000px;}
.y31_c00367{bottom:902.325000px;}
.y2d_c00367{bottom:903.405000px;}
.y2c_c00367{bottom:922.245000px;}
.y29_c00367{bottom:922.470000px;}
.y2a_c00367{bottom:922.905000px;}
.y2b_c00367{bottom:924.405000px;}
.y28_c00367{bottom:940.905000px;}
.y26_c00367{bottom:941.745000px;}
.y25_c00367{bottom:942.630000px;}
.y27_c00367{bottom:943.905000px;}
.y1e_c00367{bottom:958.905000px;}
.y24_c00367{bottom:959.745000px;}
.y1f_c00367{bottom:959.970000px;}
.y1d_c00367{bottom:960.825000px;}
.y20_c00367{bottom:961.905000px;}
.y21_c00367{bottom:962.130000px;}
.y22_c00367{bottom:962.970000px;}
.y23_c00367{bottom:963.405000px;}
.y1b_c00367{bottom:978.405000px;}
.y18_c00367{bottom:978.630000px;}
.y15_c00367{bottom:979.245000px;}
.y1c_c00367{bottom:979.905000px;}
.y17_c00367{bottom:980.325000px;}
.y19_c00367{bottom:980.745000px;}
.y16_c00367{bottom:981.405000px;}
.y1a_c00367{bottom:982.905000px;}
.y13_c00367{bottom:997.905000px;}
.y14_c00367{bottom:998.325000px;}
.y12_c00367{bottom:998.970000px;}
.yf_c00367{bottom:1000.245000px;}
.ye_c00367{bottom:1000.905000px;}
.y10_c00367{bottom:1001.130000px;}
.y11_c00367{bottom:1002.405000px;}
.yd_c00367{bottom:1019.745000px;}
.ya_c00367{bottom:1020.405000px;}
.yc_c00367{bottom:1021.470000px;}
.yb_c00367{bottom:1021.905000px;}
.y9_c00367{bottom:1039.245000px;}
.y8_c00367{bottom:1042.470000px;}
.y7_c00367{bottom:1057.905000px;}
.y6_c00367{bottom:1058.745000px;}
.y5_c00367{bottom:1059.630000px;}
.y3_c00367{bottom:1060.905000px;}
.y4_c00367{bottom:1061.970000px;}
.y1_c00367{bottom:1097.745000px;}
.y2_c00367{bottom:1099.050000px;}
.h7_c00367{height:4.206533px;}
.h5_c00367{height:23.025234px;}
.h2_c00367{height:25.091602px;}
.h4_c00367{height:31.364502px;}
.h3_c00367{height:35.571035px;}
.h6_c00367{height:39.777568px;}
.h1_c00367{height:43.910303px;}
.h8_c00367{height:48.116836px;}
.h0_c00367{height:1335.000000px;}
.w0_c00367{width:880.500000px;}
.x0_c00367{left:0.000000px;}
.x1_c00367{left:151.500000px;}
.x7e_c00367{left:152.580000px;}
.x2d_c00367{left:154.275000px;}
.x17_c00367{left:167.580000px;}
.x68_c00367{left:169.920000px;}
.x7f_c00367{left:172.920000px;}
.xa9_c00367{left:174.000000px;}
.xfe_c00367{left:175.080000px;}
.x4a_c00367{left:177.420000px;}
.xb8_c00367{left:179.580000px;}
.xc5_c00367{left:181.920000px;}
.x3_c00367{left:184.080000px;}
.xed_c00367{left:186.420000px;}
.x2e_c00367{left:187.920000px;}
.x9a_c00367{left:189.000000px;}
.x57_c00367{left:190.080000px;}
.x13_c00367{left:192.000000px;}
.x3d_c00367{left:193.080000px;}
.x8f_c00367{left:197.580000px;}
.x22_c00367{left:199.080000px;}
.x80_c00367{left:200.580000px;}
.x4_c00367{left:202.920000px;}
.x69_c00367{left:205.080000px;}
.xca_c00367{left:207.000000px;}
.x18_c00367{left:208.080000px;}
.xc0_c00367{left:213.420000px;}
.xf8_c00367{left:215.580000px;}
.x4b_c00367{left:217.500000px;}
.x3e_c00367{left:219.000000px;}
.xc6_c00367{left:220.500000px;}
.xaa_c00367{left:222.000000px;}
.xb2_c00367{left:223.500000px;}
.x6a_c00367{left:225.420000px;}
.x74_c00367{left:228.000000px;}
.x5_c00367{left:231.000000px;}
.x81_c00367{left:232.080000px;}
.x4c_c00367{left:235.500000px;}
.x23_c00367{left:236.775000px;}
.x88_c00367{left:238.500000px;}
.x3f_c00367{left:239.580000px;}
.x5f_c00367{left:241.500000px;}
.xd9_c00367{left:242.580000px;}
.x104_c00367{left:244.920000px;}
.xe6_c00367{left:246.420000px;}
.xee_c00367{left:249.420000px;}
.x82_c00367{left:252.420000px;}
.xff_c00367{left:253.500000px;}
.x14_c00367{left:254.580000px;}
.x2f_c00367{left:256.500000px;}
.x58_c00367{left:258.420000px;}
.x89_c00367{left:259.500000px;}
.x9b_c00367{left:264.000000px;}
.x75_c00367{left:265.500000px;}
.xf2_c00367{left:267.420000px;}
.x6_c00367{left:268.500000px;}
.x19_c00367{left:270.000000px;}
.x40_c00367{left:271.080000px;}
.xdf_c00367{left:273.420000px;}
.x90_c00367{left:274.500000px;}
.xbd_c00367{left:276.000000px;}
.x4d_c00367{left:278.580000px;}
.xa3_c00367{left:280.500000px;}
.x10e_c00367{left:283.080000px;}
.x15_c00367{left:284.580000px;}
.x10b_c00367{left:286.500000px;}
.x7_c00367{left:288.000000px;}
.x41_c00367{left:291.420000px;}
.x24_c00367{left:292.500000px;}
.x76_c00367{left:294.420000px;}
.x91_c00367{left:295.500000px;}
.xf7_c00367{left:298.080000px;}
.xda_c00367{left:300.000000px;}
.x8_c00367{left:301.500000px;}
.x4e_c00367{left:303.000000px;}
.xe7_c00367{left:304.080000px;}
.xb3_c00367{left:307.500000px;}
.xc1_c00367{left:310.500000px;}
.xcb_c00367{left:312.420000px;}
.xe0_c00367{left:313.920000px;}
.x30_c00367{left:315.000000px;}
.x108_c00367{left:316.500000px;}
.xf5_c00367{left:318.000000px;}
.x42_c00367{left:320.580000px;}
.x4f_c00367{left:322.920000px;}
.xb9_c00367{left:324.000000px;}
.xe8_c00367{left:325.080000px;}
.x6b_c00367{left:328.920000px;}
.xbe_c00367{left:330.000000px;}
.xd0_c00367{left:331.080000px;}
.xef_c00367{left:333.000000px;}
.x25_c00367{left:334.080000px;}
.x16_c00367{left:335.580000px;}
.x100_c00367{left:337.500000px;}
.xab_c00367{left:339.420000px;}
.xcc_c00367{left:342.420000px;}
.xa4_c00367{left:345.000000px;}
.x9_c00367{left:346.920000px;}
.x10c_c00367{left:348.000000px;}
.x31_c00367{left:349.080000px;}
.x50_c00367{left:352.920000px;}
.x9c_c00367{left:354.000000px;}
.xf9_c00367{left:355.500000px;}
.xdb_c00367{left:358.920000px;}
.x43_c00367{left:363.000000px;}
.x26_c00367{left:364.500000px;}
.x60_c00367{left:365.580000px;}
.x83_c00367{left:368.580000px;}
.x1a_c00367{left:371.580000px;}
.xa_c00367{left:372.645000px;}
.x10d_c00367{left:375.420000px;}
.xfa_c00367{left:376.500000px;}
.x59_c00367{left:377.580000px;}
.xe9_c00367{left:379.500000px;}
.x32_c00367{left:381.000000px;}
.x101_c00367{left:382.920000px;}
.x6c_c00367{left:385.920000px;}
.x51_c00367{left:391.920000px;}
.xcd_c00367{left:393.000000px;}
.x1b_c00367{left:394.500000px;}
.x109_c00367{left:396.420000px;}
.x44_c00367{left:400.500000px;}
.xa5_c00367{left:402.000000px;}
.x61_c00367{left:403.500000px;}
.xe1_c00367{left:405.000000px;}
.x92_c00367{left:408.000000px;}
.x33_c00367{left:409.080000px;}
.x2_c00367{left:412.500000px;}
.x27_c00367{left:415.080000px;}
.x52_c00367{left:417.420000px;}
.xea_c00367{left:420.420000px;}
.x62_c00367{left:421.920000px;}
.x93_c00367{left:424.500000px;}
.xb_c00367{left:427.080000px;}
.x84_c00367{left:429.000000px;}
.x9d_c00367{left:430.500000px;}
.x10f_c00367{left:432.000000px;}
.x5a_c00367{left:433.080000px;}
.x8a_c00367{left:435.000000px;}
.xfb_c00367{left:436.080000px;}
.xac_c00367{left:439.500000px;}
.x94_c00367{left:441.000000px;}
.xc2_c00367{left:442.080000px;}
.xe2_c00367{left:444.000000px;}
.x28_c00367{left:445.080000px;}
.xdc_c00367{left:447.000000px;}
.x6d_c00367{left:448.500000px;}
.x63_c00367{left:450.000000px;}
.xb4_c00367{left:451.500000px;}
.xf3_c00367{left:452.580000px;}
.x77_c00367{left:454.080000px;}
.xa6_c00367{left:455.580000px;}
.xad_c00367{left:458.145000px;}
.xeb_c00367{left:460.500000px;}
.x8b_c00367{left:462.000000px;}
.xf0_c00367{left:465.000000px;}
.x6e_c00367{left:468.000000px;}
.x34_c00367{left:469.080000px;}
.x95_c00367{left:471.000000px;}
.xc_c00367{left:472.500000px;}
.xa7_c00367{left:474.000000px;}
.xba_c00367{left:475.920000px;}
.xa1_c00367{left:480.420000px;}
.xd3_c00367{left:481.500000px;}
.x1c_c00367{left:482.580000px;}
.x78_c00367{left:486.000000px;}
.x35_c00367{left:487.500000px;}
.x105_c00367{left:493.500000px;}
.x64_c00367{left:494.580000px;}
.x53_c00367{left:498.420000px;}
.x1d_c00367{left:499.920000px;}
.xc3_c00367{left:501.000000px;}
.xce_c00367{left:502.500000px;}
.x45_c00367{left:503.580000px;}
.x106_c00367{left:505.500000px;}
.xb5_c00367{left:506.580000px;}
.xd1_c00367{left:508.500000px;}
.xf4_c00367{left:510.000000px;}
.x9e_c00367{left:513.000000px;}
.xe3_c00367{left:516.420000px;}
.x79_c00367{left:517.920000px;}
.x36_c00367{left:520.500000px;}
.x46_c00367{left:522.000000px;}
.x54_c00367{left:523.920000px;}
.x96_c00367{left:525.000000px;}
.x5b_c00367{left:526.080000px;}
.x8c_c00367{left:529.500000px;}
.xd_c00367{left:535.920000px;}
.xc7_c00367{left:538.500000px;}
.x1e_c00367{left:539.580000px;}
.x97_c00367{left:544.920000px;}
.x37_c00367{left:546.000000px;}
.xfc_c00367{left:547.500000px;}
.x65_c00367{left:552.000000px;}
.x47_c00367{left:553.500000px;}
.x6f_c00367{left:555.000000px;}
.x1f_c00367{left:556.920000px;}
.xe_c00367{left:560.580000px;}
.xa2_c00367{left:562.500000px;}
.xae_c00367{left:565.500000px;}
.x7a_c00367{left:566.580000px;}
.x38_c00367{left:568.080000px;}
.xec_c00367{left:570.000000px;}
.x29_c00367{left:576.420000px;}
.x85_c00367{left:577.500000px;}
.x70_c00367{left:579.420000px;}
.xd4_c00367{left:580.500000px;}
.xa8_c00367{left:582.000000px;}
.x20_c00367{left:583.500000px;}
.x7b_c00367{left:585.420000px;}
.x8d_c00367{left:586.500000px;}
.x9f_c00367{left:588.000000px;}
.x98_c00367{left:590.580000px;}
.xc8_c00367{left:592.920000px;}
.x5c_c00367{left:594.420000px;}
.xf_c00367{left:596.580000px;}
.x39_c00367{left:600.000000px;}
.xf1_c00367{left:601.500000px;}
.xd7_c00367{left:603.420000px;}
.x8e_c00367{left:604.920000px;}
.xc4_c00367{left:606.420000px;}
.x71_c00367{left:607.500000px;}
.xcf_c00367{left:608.580000px;}
.xbb_c00367{left:610.500000px;}
.x7c_c00367{left:612.420000px;}
.xd5_c00367{left:614.580000px;}
.xaf_c00367{left:618.000000px;}
.xf6_c00367{left:619.500000px;}
.x5d_c00367{left:621.420000px;}
.xfd_c00367{left:623.580000px;}
.xdd_c00367{left:625.500000px;}
.x48_c00367{left:627.000000px;}
.x3a_c00367{left:628.920000px;}
.x2a_c00367{left:630.420000px;}
.xc9_c00367{left:632.775000px;}
.x66_c00367{left:634.500000px;}
.xd2_c00367{left:637.500000px;}
.xde_c00367{left:640.920000px;}
.x55_c00367{left:643.920000px;}
.xe4_c00367{left:645.420000px;}
.xd8_c00367{left:646.500000px;}
.xbf_c00367{left:647.580000px;}
.x10_c00367{left:649.080000px;}
.x5e_c00367{left:654.000000px;}
.x21_c00367{left:657.000000px;}
.xb6_c00367{left:658.500000px;}
.xd6_c00367{left:660.420000px;}
.x2b_c00367{left:663.000000px;}
.x49_c00367{left:664.080000px;}
.x72_c00367{left:665.580000px;}
.x102_c00367{left:667.500000px;}
.x11_c00367{left:669.000000px;}
.x56_c00367{left:670.080000px;}
.x86_c00367{left:672.420000px;}
.xbc_c00367{left:673.500000px;}
.xa0_c00367{left:675.000000px;}
.x3b_c00367{left:677.580000px;}
.x107_c00367{left:681.420000px;}
.xe5_c00367{left:683.580000px;}
.x73_c00367{left:685.920000px;}
.xb7_c00367{left:687.420000px;}
.xb0_c00367{left:691.080000px;}
.x3c_c00367{left:694.920000px;}
.x67_c00367{left:696.420000px;}
.x12_c00367{left:698.775000px;}
.x7d_c00367{left:700.920000px;}
.x2c_c00367{left:703.080000px;}
.x10a_c00367{left:705.420000px;}
.xb1_c00367{left:708.420000px;}
.x103_c00367{left:709.920000px;}
.x99_c00367{left:712.500000px;}
.x87_c00367{left:720.000000px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.ls0_c00367{letter-spacing:0.000000pt;}
.ws1_c00367{word-spacing:-7.379037pt;}
.ws0_c00367{word-spacing:-1.760074pt;}
.ws2_c00367{word-spacing:0.000000pt;}
.fs6_c00367{font-size:3.040000pt;}
.fs4_c00367{font-size:16.640000pt;}
.fs1_c00367{font-size:18.133333pt;}
.fs3_c00367{font-size:22.666667pt;}
.fs2_c00367{font-size:25.706667pt;}
.fs5_c00367{font-size:28.746667pt;}
.fs0_c00367{font-size:31.733333pt;}
.fs7_c00367{font-size:34.773333pt;}
.y0_c00367{bottom:0.000000pt;}
.yc5_c00367{bottom:222.440000pt;}
.yc4_c00367{bottom:224.360000pt;}
.yc6_c00367{bottom:225.306667pt;}
.yc3_c00367{bottom:239.773333pt;}
.ybf_c00367{bottom:240.733333pt;}
.yc2_c00367{bottom:241.106667pt;}
.ybe_c00367{bottom:241.693333pt;}
.yc0_c00367{bottom:241.893333pt;}
.yc1_c00367{bottom:242.640000pt;}
.yba_c00367{bottom:256.360000pt;}
.ybc_c00367{bottom:259.226667pt;}
.ybd_c00367{bottom:259.973333pt;}
.ybb_c00367{bottom:260.360000pt;}
.yb9_c00367{bottom:274.440000pt;}
.yb7_c00367{bottom:275.773333pt;}
.yb8_c00367{bottom:276.560000pt;}
.yb6_c00367{bottom:277.693333pt;}
.yb5_c00367{bottom:293.106667pt;}
.yaf_c00367{bottom:293.693333pt;}
.yb4_c00367{bottom:293.893333pt;}
.yb2_c00367{bottom:294.066667pt;}
.yb1_c00367{bottom:294.640000pt;}
.yb0_c00367{bottom:295.026667pt;}
.yb3_c00367{bottom:295.973333pt;}
.yad_c00367{bottom:310.066667pt;}
.yae_c00367{bottom:310.440000pt;}
.yaa_c00367{bottom:311.026667pt;}
.yac_c00367{bottom:311.973333pt;}
.yab_c00367{bottom:312.360000pt;}
.ya8_c00367{bottom:327.773333pt;}
.ya7_c00367{bottom:329.106667pt;}
.ya9_c00367{bottom:329.306667pt;}
.ya6_c00367{bottom:329.693333pt;}
.ya4_c00367{bottom:344.360000pt;}
.ya1_c00367{bottom:345.106667pt;}
.ya3_c00367{bottom:346.440000pt;}
.y9f_c00367{bottom:347.026667pt;}
.ya5_c00367{bottom:347.226667pt;}
.ya2_c00367{bottom:347.973333pt;}
.ya0_c00367{bottom:348.360000pt;}
.y9c_c00367{bottom:362.640000pt;}
.y9e_c00367{bottom:365.306667pt;}
.y9b_c00367{bottom:365.693333pt;}
.y9d_c00367{bottom:366.640000pt;}
.y99_c00367{bottom:381.106667pt;}
.y98_c00367{bottom:381.893333pt;}
.y9a_c00367{bottom:382.640000pt;}
.y97_c00367{bottom:383.026667pt;}
.y95_c00367{bottom:397.306667pt;}
.y96_c00367{bottom:398.066667pt;}
.y91_c00367{bottom:399.973333pt;}
.y92_c00367{bottom:400.360000pt;}
.y93_c00367{bottom:400.560000pt;}
.y94_c00367{bottom:401.306667pt;}
.y8e_c00367{bottom:415.773333pt;}
.y8f_c00367{bottom:417.693333pt;}
.y90_c00367{bottom:417.893333pt;}
.y8d_c00367{bottom:433.106667pt;}
.y8b_c00367{bottom:435.026667pt;}
.y8a_c00367{bottom:435.400000pt;}
.y8c_c00367{bottom:435.973333pt;}
.y89_c00367{bottom:436.360000pt;}
.y85_c00367{bottom:450.440000pt;}
.y86_c00367{bottom:451.400000pt;}
.y88_c00367{bottom:452.360000pt;}
.y83_c00367{bottom:452.733333pt;}
.y87_c00367{bottom:453.306667pt;}
.y84_c00367{bottom:453.693333pt;}
.y7e_c00367{bottom:467.026667pt;}
.y82_c00367{bottom:467.773333pt;}
.y7f_c00367{bottom:469.106667pt;}
.y80_c00367{bottom:469.893333pt;}
.y81_c00367{bottom:470.640000pt;}
.y7d_c00367{bottom:471.026667pt;}
.y7c_c00367{bottom:471.973333pt;}
.y7a_c00367{bottom:484.360000pt;}
.y7b_c00367{bottom:485.493333pt;}
.y79_c00367{bottom:486.440000pt;}
.y78_c00367{bottom:488.360000pt;}
.y75_c00367{bottom:501.693333pt;}
.y76_c00367{bottom:502.440000pt;}
.y77_c00367{bottom:502.826667pt;}
.y74_c00367{bottom:503.773333pt;}
.y72_c00367{bottom:504.560000pt;}
.y73_c00367{bottom:505.693333pt;}
.y6f_c00367{bottom:520.160000pt;}
.y71_c00367{bottom:520.360000pt;}
.y6e_c00367{bottom:521.106667pt;}
.y70_c00367{bottom:522.066667pt;}
.y6d_c00367{bottom:523.026667pt;}
.y6c_c00367{bottom:538.440000pt;}
.y6a_c00367{bottom:540.360000pt;}
.y6b_c00367{bottom:540.560000pt;}
.y69_c00367{bottom:555.400000pt;}
.y68_c00367{bottom:556.733333pt;}
.y67_c00367{bottom:557.693333pt;}
.y65_c00367{bottom:574.440000pt;}
.y66_c00367{bottom:575.026667pt;}
.y64_c00367{bottom:576.360000pt;}
.y60_c00367{bottom:590.440000pt;}
.y62_c00367{bottom:591.773333pt;}
.y5f_c00367{bottom:592.360000pt;}
.y63_c00367{bottom:592.560000pt;}
.y5e_c00367{bottom:593.306667pt;}
.y61_c00367{bottom:593.693333pt;}
.y5d_c00367{bottom:609.106667pt;}
.y5c_c00367{bottom:610.640000pt;}
.y5a_c00367{bottom:611.026667pt;}
.y5b_c00367{bottom:611.973333pt;}
.y57_c00367{bottom:624.360000pt;}
.y55_c00367{bottom:626.066667pt;}
.y56_c00367{bottom:626.440000pt;}
.y54_c00367{bottom:627.026667pt;}
.y58_c00367{bottom:627.973333pt;}
.y59_c00367{bottom:628.360000pt;}
.y53_c00367{bottom:643.773333pt;}
.y52_c00367{bottom:645.693333pt;}
.y4f_c00367{bottom:660.360000pt;}
.y51_c00367{bottom:661.106667pt;}
.y4d_c00367{bottom:661.893333pt;}
.y50_c00367{bottom:663.026667pt;}
.y4e_c00367{bottom:663.226667pt;}
.y49_c00367{bottom:678.440000pt;}
.y4c_c00367{bottom:679.400000pt;}
.y4b_c00367{bottom:680.360000pt;}
.y4a_c00367{bottom:681.306667pt;}
.y45_c00367{bottom:695.026667pt;}
.y48_c00367{bottom:695.773333pt;}
.y47_c00367{bottom:697.306667pt;}
.y43_c00367{bottom:697.693333pt;}
.y44_c00367{bottom:697.893333pt;}
.y46_c00367{bottom:698.640000pt;}
.y42_c00367{bottom:712.733333pt;}
.y40_c00367{bottom:713.106667pt;}
.y41_c00367{bottom:714.066667pt;}
.y3d_c00367{bottom:715.026667pt;}
.y3f_c00367{bottom:715.226667pt;}
.y3e_c00367{bottom:716.373333pt;}
.y3b_c00367{bottom:731.773333pt;}
.y3c_c00367{bottom:733.693333pt;}
.y3a_c00367{bottom:749.893333pt;}
.y39_c00367{bottom:751.026667pt;}
.y37_c00367{bottom:766.066667pt;}
.y38_c00367{bottom:766.440000pt;}
.y36_c00367{bottom:767.973333pt;}
.y35_c00367{bottom:768.360000pt;}
.y34_c00367{bottom:783.773333pt;}
.y33_c00367{bottom:784.733333pt;}
.y32_c00367{bottom:785.693333pt;}
.y2f_c00367{bottom:800.360000pt;}
.y2e_c00367{bottom:801.106667pt;}
.y30_c00367{bottom:801.893333pt;}
.y31_c00367{bottom:802.066667pt;}
.y2d_c00367{bottom:803.026667pt;}
.y2c_c00367{bottom:819.773333pt;}
.y29_c00367{bottom:819.973333pt;}
.y2a_c00367{bottom:820.360000pt;}
.y2b_c00367{bottom:821.693333pt;}
.y28_c00367{bottom:836.360000pt;}
.y26_c00367{bottom:837.106667pt;}
.y25_c00367{bottom:837.893333pt;}
.y27_c00367{bottom:839.026667pt;}
.y1e_c00367{bottom:852.360000pt;}
.y24_c00367{bottom:853.106667pt;}
.y1f_c00367{bottom:853.306667pt;}
.y1d_c00367{bottom:854.066667pt;}
.y20_c00367{bottom:855.026667pt;}
.y21_c00367{bottom:855.226667pt;}
.y22_c00367{bottom:855.973333pt;}
.y23_c00367{bottom:856.360000pt;}
.y1b_c00367{bottom:869.693333pt;}
.y18_c00367{bottom:869.893333pt;}
.y15_c00367{bottom:870.440000pt;}
.y1c_c00367{bottom:871.026667pt;}
.y17_c00367{bottom:871.400000pt;}
.y19_c00367{bottom:871.773333pt;}
.y16_c00367{bottom:872.360000pt;}
.y1a_c00367{bottom:873.693333pt;}
.y13_c00367{bottom:887.026667pt;}
.y14_c00367{bottom:887.400000pt;}
.y12_c00367{bottom:887.973333pt;}
.yf_c00367{bottom:889.106667pt;}
.ye_c00367{bottom:889.693333pt;}
.y10_c00367{bottom:889.893333pt;}
.y11_c00367{bottom:891.026667pt;}
.yd_c00367{bottom:906.440000pt;}
.ya_c00367{bottom:907.026667pt;}
.yc_c00367{bottom:907.973333pt;}
.yb_c00367{bottom:908.360000pt;}
.y9_c00367{bottom:923.773333pt;}
.y8_c00367{bottom:926.640000pt;}
.y7_c00367{bottom:940.360000pt;}
.y6_c00367{bottom:941.106667pt;}
.y5_c00367{bottom:941.893333pt;}
.y3_c00367{bottom:943.026667pt;}
.y4_c00367{bottom:943.973333pt;}
.y1_c00367{bottom:975.773333pt;}
.y2_c00367{bottom:976.933333pt;}
.h7_c00367{height:3.739141pt;}
.h5_c00367{height:20.466875pt;}
.h2_c00367{height:22.303646pt;}
.h4_c00367{height:27.879557pt;}
.h3_c00367{height:31.618698pt;}
.h6_c00367{height:35.357839pt;}
.h1_c00367{height:39.031380pt;}
.h8_c00367{height:42.770521pt;}
.h0_c00367{height:1186.666667pt;}
.w0_c00367{width:782.666667pt;}
.x0_c00367{left:0.000000pt;}
.x1_c00367{left:134.666667pt;}
.x7e_c00367{left:135.626667pt;}
.x2d_c00367{left:137.133333pt;}
.x17_c00367{left:148.960000pt;}
.x68_c00367{left:151.040000pt;}
.x7f_c00367{left:153.706667pt;}
.xa9_c00367{left:154.666667pt;}
.xfe_c00367{left:155.626667pt;}
.x4a_c00367{left:157.706667pt;}
.xb8_c00367{left:159.626667pt;}
.xc5_c00367{left:161.706667pt;}
.x3_c00367{left:163.626667pt;}
.xed_c00367{left:165.706667pt;}
.x2e_c00367{left:167.040000pt;}
.x9a_c00367{left:168.000000pt;}
.x57_c00367{left:168.960000pt;}
.x13_c00367{left:170.666667pt;}
.x3d_c00367{left:171.626667pt;}
.x8f_c00367{left:175.626667pt;}
.x22_c00367{left:176.960000pt;}
.x80_c00367{left:178.293333pt;}
.x4_c00367{left:180.373333pt;}
.x69_c00367{left:182.293333pt;}
.xca_c00367{left:184.000000pt;}
.x18_c00367{left:184.960000pt;}
.xc0_c00367{left:189.706667pt;}
.xf8_c00367{left:191.626667pt;}
.x4b_c00367{left:193.333333pt;}
.x3e_c00367{left:194.666667pt;}
.xc6_c00367{left:196.000000pt;}
.xaa_c00367{left:197.333333pt;}
.xb2_c00367{left:198.666667pt;}
.x6a_c00367{left:200.373333pt;}
.x74_c00367{left:202.666667pt;}
.x5_c00367{left:205.333333pt;}
.x81_c00367{left:206.293333pt;}
.x4c_c00367{left:209.333333pt;}
.x23_c00367{left:210.466667pt;}
.x88_c00367{left:212.000000pt;}
.x3f_c00367{left:212.960000pt;}
.x5f_c00367{left:214.666667pt;}
.xd9_c00367{left:215.626667pt;}
.x104_c00367{left:217.706667pt;}
.xe6_c00367{left:219.040000pt;}
.xee_c00367{left:221.706667pt;}
.x82_c00367{left:224.373333pt;}
.xff_c00367{left:225.333333pt;}
.x14_c00367{left:226.293333pt;}
.x2f_c00367{left:228.000000pt;}
.x58_c00367{left:229.706667pt;}
.x89_c00367{left:230.666667pt;}
.x9b_c00367{left:234.666667pt;}
.x75_c00367{left:236.000000pt;}
.xf2_c00367{left:237.706667pt;}
.x6_c00367{left:238.666667pt;}
.x19_c00367{left:240.000000pt;}
.x40_c00367{left:240.960000pt;}
.xdf_c00367{left:243.040000pt;}
.x90_c00367{left:244.000000pt;}
.xbd_c00367{left:245.333333pt;}
.x4d_c00367{left:247.626667pt;}
.xa3_c00367{left:249.333333pt;}
.x10e_c00367{left:251.626667pt;}
.x15_c00367{left:252.960000pt;}
.x10b_c00367{left:254.666667pt;}
.x7_c00367{left:256.000000pt;}
.x41_c00367{left:259.040000pt;}
.x24_c00367{left:260.000000pt;}
.x76_c00367{left:261.706667pt;}
.x91_c00367{left:262.666667pt;}
.xf7_c00367{left:264.960000pt;}
.xda_c00367{left:266.666667pt;}
.x8_c00367{left:268.000000pt;}
.x4e_c00367{left:269.333333pt;}
.xe7_c00367{left:270.293333pt;}
.xb3_c00367{left:273.333333pt;}
.xc1_c00367{left:276.000000pt;}
.xcb_c00367{left:277.706667pt;}
.xe0_c00367{left:279.040000pt;}
.x30_c00367{left:280.000000pt;}
.x108_c00367{left:281.333333pt;}
.xf5_c00367{left:282.666667pt;}
.x42_c00367{left:284.960000pt;}
.x4f_c00367{left:287.040000pt;}
.xb9_c00367{left:288.000000pt;}
.xe8_c00367{left:288.960000pt;}
.x6b_c00367{left:292.373333pt;}
.xbe_c00367{left:293.333333pt;}
.xd0_c00367{left:294.293333pt;}
.xef_c00367{left:296.000000pt;}
.x25_c00367{left:296.960000pt;}
.x16_c00367{left:298.293333pt;}
.x100_c00367{left:300.000000pt;}
.xab_c00367{left:301.706667pt;}
.xcc_c00367{left:304.373333pt;}
.xa4_c00367{left:306.666667pt;}
.x9_c00367{left:308.373333pt;}
.x10c_c00367{left:309.333333pt;}
.x31_c00367{left:310.293333pt;}
.x50_c00367{left:313.706667pt;}
.x9c_c00367{left:314.666667pt;}
.xf9_c00367{left:316.000000pt;}
.xdb_c00367{left:319.040000pt;}
.x43_c00367{left:322.666667pt;}
.x26_c00367{left:324.000000pt;}
.x60_c00367{left:324.960000pt;}
.x83_c00367{left:327.626667pt;}
.x1a_c00367{left:330.293333pt;}
.xa_c00367{left:331.240000pt;}
.x10d_c00367{left:333.706667pt;}
.xfa_c00367{left:334.666667pt;}
.x59_c00367{left:335.626667pt;}
.xe9_c00367{left:337.333333pt;}
.x32_c00367{left:338.666667pt;}
.x101_c00367{left:340.373333pt;}
.x6c_c00367{left:343.040000pt;}
.x51_c00367{left:348.373333pt;}
.xcd_c00367{left:349.333333pt;}
.x1b_c00367{left:350.666667pt;}
.x109_c00367{left:352.373333pt;}
.x44_c00367{left:356.000000pt;}
.xa5_c00367{left:357.333333pt;}
.x61_c00367{left:358.666667pt;}
.xe1_c00367{left:360.000000pt;}
.x92_c00367{left:362.666667pt;}
.x33_c00367{left:363.626667pt;}
.x2_c00367{left:366.666667pt;}
.x27_c00367{left:368.960000pt;}
.x52_c00367{left:371.040000pt;}
.xea_c00367{left:373.706667pt;}
.x62_c00367{left:375.040000pt;}
.x93_c00367{left:377.333333pt;}
.xb_c00367{left:379.626667pt;}
.x84_c00367{left:381.333333pt;}
.x9d_c00367{left:382.666667pt;}
.x10f_c00367{left:384.000000pt;}
.x5a_c00367{left:384.960000pt;}
.x8a_c00367{left:386.666667pt;}
.xfb_c00367{left:387.626667pt;}
.xac_c00367{left:390.666667pt;}
.x94_c00367{left:392.000000pt;}
.xc2_c00367{left:392.960000pt;}
.xe2_c00367{left:394.666667pt;}
.x28_c00367{left:395.626667pt;}
.xdc_c00367{left:397.333333pt;}
.x6d_c00367{left:398.666667pt;}
.x63_c00367{left:400.000000pt;}
.xb4_c00367{left:401.333333pt;}
.xf3_c00367{left:402.293333pt;}
.x77_c00367{left:403.626667pt;}
.xa6_c00367{left:404.960000pt;}
.xad_c00367{left:407.240000pt;}
.xeb_c00367{left:409.333333pt;}
.x8b_c00367{left:410.666667pt;}
.xf0_c00367{left:413.333333pt;}
.x6e_c00367{left:416.000000pt;}
.x34_c00367{left:416.960000pt;}
.x95_c00367{left:418.666667pt;}
.xc_c00367{left:420.000000pt;}
.xa7_c00367{left:421.333333pt;}
.xba_c00367{left:423.040000pt;}
.xa1_c00367{left:427.040000pt;}
.xd3_c00367{left:428.000000pt;}
.x1c_c00367{left:428.960000pt;}
.x78_c00367{left:432.000000pt;}
.x35_c00367{left:433.333333pt;}
.x105_c00367{left:438.666667pt;}
.x64_c00367{left:439.626667pt;}
.x53_c00367{left:443.040000pt;}
.x1d_c00367{left:444.373333pt;}
.xc3_c00367{left:445.333333pt;}
.xce_c00367{left:446.666667pt;}
.x45_c00367{left:447.626667pt;}
.x106_c00367{left:449.333333pt;}
.xb5_c00367{left:450.293333pt;}
.xd1_c00367{left:452.000000pt;}
.xf4_c00367{left:453.333333pt;}
.x9e_c00367{left:456.000000pt;}
.xe3_c00367{left:459.040000pt;}
.x79_c00367{left:460.373333pt;}
.x36_c00367{left:462.666667pt;}
.x46_c00367{left:464.000000pt;}
.x54_c00367{left:465.706667pt;}
.x96_c00367{left:466.666667pt;}
.x5b_c00367{left:467.626667pt;}
.x8c_c00367{left:470.666667pt;}
.xd_c00367{left:476.373333pt;}
.xc7_c00367{left:478.666667pt;}
.x1e_c00367{left:479.626667pt;}
.x97_c00367{left:484.373333pt;}
.x37_c00367{left:485.333333pt;}
.xfc_c00367{left:486.666667pt;}
.x65_c00367{left:490.666667pt;}
.x47_c00367{left:492.000000pt;}
.x6f_c00367{left:493.333333pt;}
.x1f_c00367{left:495.040000pt;}
.xe_c00367{left:498.293333pt;}
.xa2_c00367{left:500.000000pt;}
.xae_c00367{left:502.666667pt;}
.x7a_c00367{left:503.626667pt;}
.x38_c00367{left:504.960000pt;}
.xec_c00367{left:506.666667pt;}
.x29_c00367{left:512.373333pt;}
.x85_c00367{left:513.333333pt;}
.x70_c00367{left:515.040000pt;}
.xd4_c00367{left:516.000000pt;}
.xa8_c00367{left:517.333333pt;}
.x20_c00367{left:518.666667pt;}
.x7b_c00367{left:520.373333pt;}
.x8d_c00367{left:521.333333pt;}
.x9f_c00367{left:522.666667pt;}
.x98_c00367{left:524.960000pt;}
.xc8_c00367{left:527.040000pt;}
.x5c_c00367{left:528.373333pt;}
.xf_c00367{left:530.293333pt;}
.x39_c00367{left:533.333333pt;}
.xf1_c00367{left:534.666667pt;}
.xd7_c00367{left:536.373333pt;}
.x8e_c00367{left:537.706667pt;}
.xc4_c00367{left:539.040000pt;}
.x71_c00367{left:540.000000pt;}
.xcf_c00367{left:540.960000pt;}
.xbb_c00367{left:542.666667pt;}
.x7c_c00367{left:544.373333pt;}
.xd5_c00367{left:546.293333pt;}
.xaf_c00367{left:549.333333pt;}
.xf6_c00367{left:550.666667pt;}
.x5d_c00367{left:552.373333pt;}
.xfd_c00367{left:554.293333pt;}
.xdd_c00367{left:556.000000pt;}
.x48_c00367{left:557.333333pt;}
.x3a_c00367{left:559.040000pt;}
.x2a_c00367{left:560.373333pt;}
.xc9_c00367{left:562.466667pt;}
.x66_c00367{left:564.000000pt;}
.xd2_c00367{left:566.666667pt;}
.xde_c00367{left:569.706667pt;}
.x55_c00367{left:572.373333pt;}
.xe4_c00367{left:573.706667pt;}
.xd8_c00367{left:574.666667pt;}
.xbf_c00367{left:575.626667pt;}
.x10_c00367{left:576.960000pt;}
.x5e_c00367{left:581.333333pt;}
.x21_c00367{left:584.000000pt;}
.xb6_c00367{left:585.333333pt;}
.xd6_c00367{left:587.040000pt;}
.x2b_c00367{left:589.333333pt;}
.x49_c00367{left:590.293333pt;}
.x72_c00367{left:591.626667pt;}
.x102_c00367{left:593.333333pt;}
.x11_c00367{left:594.666667pt;}
.x56_c00367{left:595.626667pt;}
.x86_c00367{left:597.706667pt;}
.xbc_c00367{left:598.666667pt;}
.xa0_c00367{left:600.000000pt;}
.x3b_c00367{left:602.293333pt;}
.x107_c00367{left:605.706667pt;}
.xe5_c00367{left:607.626667pt;}
.x73_c00367{left:609.706667pt;}
.xb7_c00367{left:611.040000pt;}
.xb0_c00367{left:614.293333pt;}
.x3c_c00367{left:617.706667pt;}
.x67_c00367{left:619.040000pt;}
.x12_c00367{left:621.133333pt;}
.x7d_c00367{left:623.040000pt;}
.x2c_c00367{left:624.960000pt;}
.x10a_c00367{left:627.040000pt;}
.xb1_c00367{left:629.706667pt;}
.x103_c00367{left:631.040000pt;}
.x99_c00367{left:633.333333pt;}
.x87_c00367{left:640.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_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_31b9661a98c718c6deead766.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb9_c00368{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m61_c00368{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m71_c00368{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.ma9_c00368{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m5e_c00368{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m87_c00368{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m58_c00368{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m1d_c00368{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m54_c00368{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m2a_c00368{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m6e_c00368{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m6b_c00368{transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);}
.m51_c00368{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m2b_c00368{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m57_c00368{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m28_c00368{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_c00368{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m62_c00368{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m88_c00368{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.mc_c00368{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m48_c00368{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m2e_c00368{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m78_c00368{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m7e_c00368{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.ma3_c00368{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m86_c00368{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m2c_c00368{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m79_c00368{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m99_c00368{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m23_c00368{transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);}
.m83_c00368{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m4b_c00368{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m8d_c00368{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m2f_c00368{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m64_c00368{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m76_c00368{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m80_c00368{transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);}
.m8c_c00368{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m47_c00368{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m6f_c00368{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m75_c00368{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m24_c00368{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m37_c00368{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.ma5_c00368{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.mb3_c00368{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m5b_c00368{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m4_c00368{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mb4_c00368{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m49_c00368{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m6a_c00368{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m84_c00368{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m7d_c00368{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m89_c00368{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.m13_c00368{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m45_c00368{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.mac_c00368{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m8e_c00368{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m85_c00368{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m77_c00368{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m90_c00368{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.ma2_c00368{transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);}
.m9e_c00368{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.m92_c00368{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m1e_c00368{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.ma7_c00368{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m69_c00368{transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);}
.m31_c00368{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mad_c00368{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mb5_c00368{transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);}
.mb7_c00368{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m34_c00368{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m4a_c00368{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m3f_c00368{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mb8_c00368{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m7_c00368{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.ma4_c00368{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m1f_c00368{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);}
.m15_c00368{transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);}
.m19_c00368{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m20_c00368{transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);}
.mb2_c00368{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m66_c00368{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.maa_c00368{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m3a_c00368{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m41_c00368{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m27_c00368{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m5a_c00368{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m3e_c00368{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m7c_c00368{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.me_c00368{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m1_c00368{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m1c_c00368{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m95_c00368{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m63_c00368{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.ma0_c00368{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m3b_c00368{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mb1_c00368{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m97_c00368{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m11_c00368{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m3_c00368{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mb0_c00368{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m9_c00368{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m2_c00368{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m5f_c00368{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m72_c00368{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m8a_c00368{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m96_c00368{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m26_c00368{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m60_c00368{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m6c_c00368{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.ma6_c00368{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m14_c00368{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m73_c00368{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m9a_c00368{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m2d_c00368{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m7f_c00368{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m70_c00368{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m4f_c00368{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m44_c00368{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m42_c00368{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mf_c00368{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m6d_c00368{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.ma8_c00368{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m1b_c00368{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m1a_c00368{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.ma1_c00368{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m52_c00368{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m5c_c00368{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m93_c00368{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.mb_c00368{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m91_c00368{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m25_c00368{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m67_c00368{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m94_c00368{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m55_c00368{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m8_c00368{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m9f_c00368{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.maf_c00368{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m7a_c00368{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m3d_c00368{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m40_c00368{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m68_c00368{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);}
.m4e_c00368{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mae_c00368{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.m39_c00368{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m16_c00368{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m12_c00368{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m22_c00368{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m59_c00368{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m33_c00368{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);}
.m17_c00368{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m43_c00368{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m8f_c00368{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m32_c00368{transform:matrix(0.610588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610588,0.000000,0.000000,0.250000,0,0);}
.m50_c00368{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.md_c00368{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m29_c00368{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m53_c00368{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m9b_c00368{transform:matrix(0.616701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616701,0.000000,0.000000,0.250000,0,0);}
.m7b_c00368{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m6_c00368{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m38_c00368{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.m81_c00368{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_c00368{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m4d_c00368{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m36_c00368{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m18_c00368{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m74_c00368{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m0_c00368{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m5d_c00368{transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);}
.m30_c00368{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.mab_c00368{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m5_c00368{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m65_c00368{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m46_c00368{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m9d_c00368{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m9c_c00368{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m8b_c00368{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m98_c00368{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m21_c00368{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m4c_c00368{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m35_c00368{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mb6_c00368{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m3c_c00368{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m10_c00368{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m82_c00368{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.v1_c00368{vertical-align:-18.000000px;}
.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:-2.653966px;}
.ws1_c00368{word-spacing:0.000000px;}
.fc0_c00368{color:transparent;}
.fs4_c00368{font-size:18.720000px;}
.fs0_c00368{font-size:20.400000px;}
.fs3_c00368{font-size:25.500000px;}
.fs1_c00368{font-size:28.920000px;}
.fs5_c00368{font-size:32.340000px;}
.fs2_c00368{font-size:35.700000px;}
.fs6_c00368{font-size:39.120000px;}
.y0_c00368{bottom:0.000000px;}
.y86_c00368{bottom:509.745000px;}
.y85_c00368{bottom:510.825000px;}
.y84_c00368{bottom:511.905000px;}
.y87_c00368{bottom:512.130000px;}
.y88_c00368{bottom:512.970000px;}
.y82_c00368{bottom:529.245000px;}
.y83_c00368{bottom:529.905000px;}
.y81_c00368{bottom:530.130000px;}
.y80_c00368{bottom:531.405000px;}
.y7d_c00368{bottom:547.470000px;}
.y7f_c00368{bottom:548.745000px;}
.y7e_c00368{bottom:550.470000px;}
.y7c_c00368{bottom:550.905000px;}
.y7a_c00368{bottom:568.245000px;}
.y7b_c00368{bottom:569.130000px;}
.y79_c00368{bottom:569.325000px;}
.y78_c00368{bottom:570.405000px;}
.y77_c00368{bottom:587.325000px;}
.y75_c00368{bottom:587.745000px;}
.y76_c00368{bottom:588.825000px;}
.y72_c00368{bottom:607.245000px;}
.y6e_c00368{bottom:607.470000px;}
.y70_c00368{bottom:608.745000px;}
.y74_c00368{bottom:609.405000px;}
.y6f_c00368{bottom:609.630000px;}
.y73_c00368{bottom:610.470000px;}
.y71_c00368{bottom:610.905000px;}
.y6a_c00368{bottom:628.245000px;}
.y6d_c00368{bottom:628.905000px;}
.y6b_c00368{bottom:629.130000px;}
.y6c_c00368{bottom:629.970000px;}
.y69_c00368{bottom:630.405000px;}
.y66_c00368{bottom:647.745000px;}
.y65_c00368{bottom:648.630000px;}
.y67_c00368{bottom:649.470000px;}
.y68_c00368{bottom:649.905000px;}
.y61_c00368{bottom:668.130000px;}
.y63_c00368{bottom:668.325000px;}
.y64_c00368{bottom:668.970000px;}
.y60_c00368{bottom:669.405000px;}
.y62_c00368{bottom:670.470000px;}
.y5b_c00368{bottom:686.745000px;}
.y5f_c00368{bottom:687.825000px;}
.y5e_c00368{bottom:688.470000px;}
.y5c_c00368{bottom:688.905000px;}
.y5d_c00368{bottom:689.970000px;}
.y58_c00368{bottom:706.245000px;}
.y57_c00368{bottom:708.405000px;}
.y5a_c00368{bottom:708.630000px;}
.y59_c00368{bottom:709.470000px;}
.y56_c00368{bottom:724.905000px;}
.y55_c00368{bottom:725.745000px;}
.y53_c00368{bottom:727.905000px;}
.y54_c00368{bottom:728.130000px;}
.y52_c00368{bottom:746.745000px;}
.y50_c00368{bottom:763.905000px;}
.y4d_c00368{bottom:766.245000px;}
.y4c_c00368{bottom:767.130000px;}
.y51_c00368{bottom:767.325000px;}
.y4f_c00368{bottom:767.970000px;}
.y4b_c00368{bottom:768.405000px;}
.y4e_c00368{bottom:769.470000px;}
.y47_c00368{bottom:785.325000px;}
.y49_c00368{bottom:785.745000px;}
.y4a_c00368{bottom:786.825000px;}
.y46_c00368{bottom:787.470000px;}
.y48_c00368{bottom:787.905000px;}
.y43_c00368{bottom:805.245000px;}
.y45_c00368{bottom:806.130000px;}
.y44_c00368{bottom:806.970000px;}
.y42_c00368{bottom:807.405000px;}
.y41_c00368{bottom:823.680000px;}
.y40_c00368{bottom:824.745000px;}
.y3f_c00368{bottom:826.470000px;}
.y3e_c00368{bottom:826.905000px;}
.y3a_c00368{bottom:844.245000px;}
.y3d_c00368{bottom:845.130000px;}
.y3c_c00368{bottom:845.970000px;}
.y3b_c00368{bottom:846.405000px;}
.y39_c00368{bottom:863.745000px;}
.y36_c00368{bottom:865.245000px;}
.y35_c00368{bottom:865.905000px;}
.y38_c00368{bottom:866.130000px;}
.y37_c00368{bottom:866.970000px;}
.y34_c00368{bottom:883.245000px;}
.y32_c00368{bottom:885.405000px;}
.y33_c00368{bottom:886.470000px;}
.y31_c00368{bottom:902.745000px;}
.y30_c00368{bottom:902.970000px;}
.y2f_c00368{bottom:904.050000px;}
.y2c_c00368{bottom:904.905000px;}
.y2e_c00368{bottom:905.130000px;}
.y2d_c00368{bottom:905.970000px;}
.y28_c00368{bottom:921.405000px;}
.y2b_c00368{bottom:922.245000px;}
.y2a_c00368{bottom:923.745000px;}
.y29_c00368{bottom:924.630000px;}
.y27_c00368{bottom:925.470000px;}
.y26_c00368{bottom:925.905000px;}
.y23_c00368{bottom:940.905000px;}
.y25_c00368{bottom:943.905000px;}
.y22_c00368{bottom:944.130000px;}
.y24_c00368{bottom:944.970000px;}
.y21_c00368{bottom:945.405000px;}
.y1f_c00368{bottom:960.405000px;}
.y20_c00368{bottom:961.245000px;}
.y1e_c00368{bottom:962.745000px;}
.y1a_c00368{bottom:964.470000px;}
.y1c_c00368{bottom:964.905000px;}
.y1d_c00368{bottom:965.130000px;}
.y1b_c00368{bottom:965.970000px;}
.y17_c00368{bottom:982.245000px;}
.y19_c00368{bottom:983.130000px;}
.y18_c00368{bottom:983.970000px;}
.y16_c00368{bottom:984.405000px;}
.y15_c00368{bottom:1001.745000px;}
.y14_c00368{bottom:1003.905000px;}
.y11_c00368{bottom:1021.245000px;}
.y12_c00368{bottom:1022.325000px;}
.yf_c00368{bottom:1023.405000px;}
.y13_c00368{bottom:1023.630000px;}
.ye_c00368{bottom:1024.470000px;}
.y10_c00368{bottom:1024.905000px;}
.yd_c00368{bottom:1040.745000px;}
.ya_c00368{bottom:1042.905000px;}
.yc_c00368{bottom:1043.130000px;}
.yb_c00368{bottom:1043.970000px;}
.y9_c00368{bottom:1060.245000px;}
.y7_c00368{bottom:1060.470000px;}
.y5_c00368{bottom:1061.745000px;}
.y6_c00368{bottom:1061.970000px;}
.y3_c00368{bottom:1062.405000px;}
.y8_c00368{bottom:1063.470000px;}
.y4_c00368{bottom:1063.905000px;}
.y2_c00368{bottom:1098.405000px;}
.y1_c00368{bottom:1100.550000px;}
.h5_c00368{height:23.025234px;}
.h1_c00368{height:25.091602px;}
.h4_c00368{height:31.364502px;}
.h2_c00368{height:35.571035px;}
.h6_c00368{height:39.777568px;}
.h3_c00368{height:43.910303px;}
.h7_c00368{height:48.116836px;}
.h0_c00368{height:1335.000000px;}
.w0_c00368{width:880.500000px;}
.x0_c00368{left:0.000000px;}
.x3_c00368{left:151.920000px;}
.x95_c00368{left:153.420000px;}
.xc3_c00368{left:155.775000px;}
.x2e_c00368{left:167.145000px;}
.x96_c00368{left:169.500000px;}
.x50_c00368{left:171.000000px;}
.x65_c00368{left:178.500000px;}
.x1c_c00368{left:180.000000px;}
.x4_c00368{left:181.080000px;}
.xa8_c00368{left:183.000000px;}
.xb3_c00368{left:184.500000px;}
.x7c_c00368{left:186.000000px;}
.x46_c00368{left:189.420000px;}
.xb7_c00368{left:193.275000px;}
.x66_c00368{left:196.920000px;}
.x3b_c00368{left:199.500000px;}
.xd3_c00368{left:201.000000px;}
.x51_c00368{left:204.420000px;}
.x70_c00368{left:205.500000px;}
.xba_c00368{left:208.920000px;}
.x2b_c00368{left:211.920000px;}
.xa9_c00368{left:214.080000px;}
.x47_c00368{left:216.420000px;}
.x87_c00368{left:220.500000px;}
.x11_c00368{left:223.500000px;}
.x1d_c00368{left:225.000000px;}
.x7d_c00368{left:227.580000px;}
.x2f_c00368{left:231.420000px;}
.x3c_c00368{left:232.500000px;}
.xc5_c00368{left:233.580000px;}
.x9f_c00368{left:236.580000px;}
.x71_c00368{left:238.500000px;}
.x88_c00368{left:239.580000px;}
.x5_c00368{left:241.920000px;}
.x8d_c00368{left:243.000000px;}
.xc4_c00368{left:244.500000px;}
.x7e_c00368{left:246.420000px;}
.xbb_c00368{left:247.920000px;}
.x3d_c00368{left:253.500000px;}
.x5a_c00368{left:259.080000px;}
.xd4_c00368{left:260.775000px;}
.x75_c00368{left:262.500000px;}
.x30_c00368{left:265.080000px;}
.xa6_c00368{left:267.000000px;}
.x12_c00368{left:268.920000px;}
.x48_c00368{left:271.920000px;}
.x7f_c00368{left:274.500000px;}
.x69_c00368{left:277.080000px;}
.x1e_c00368{left:278.580000px;}
.xaa_c00368{left:280.500000px;}
.x2c_c00368{left:285.420000px;}
.xb4_c00368{left:286.500000px;}
.x97_c00368{left:289.500000px;}
.xbc_c00368{left:291.000000px;}
.x6a_c00368{left:295.920000px;}
.x49_c00368{left:297.000000px;}
.xd5_c00368{left:300.000000px;}
.xcb_c00368{left:303.000000px;}
.x6_c00368{left:304.080000px;}
.x5b_c00368{left:305.355000px;}
.xb5_c00368{left:306.420000px;}
.x31_c00368{left:307.500000px;}
.x52_c00368{left:309.000000px;}
.x1f_c00368{left:310.920000px;}
.xab_c00368{left:318.420000px;}
.xd0_c00368{left:319.500000px;}
.x67_c00368{left:320.580000px;}
.x2d_c00368{left:322.920000px;}
.x7_c00368{left:325.920000px;}
.x32_c00368{left:328.500000px;}
.x89_c00368{left:329.580000px;}
.x5c_c00368{left:331.920000px;}
.xb6_c00368{left:333.000000px;}
.x13_c00368{left:337.500000px;}
.x3e_c00368{left:340.500000px;}
.x33_c00368{left:343.500000px;}
.xac_c00368{left:345.420000px;}
.x20_c00368{left:348.000000px;}
.x8e_c00368{left:349.080000px;}
.xc6_c00368{left:350.580000px;}
.xb8_c00368{left:352.500000px;}
.x14_c00368{left:353.580000px;}
.x98_c00368{left:358.500000px;}
.x5d_c00368{left:363.420000px;}
.x8f_c00368{left:367.500000px;}
.xd1_c00368{left:369.000000px;}
.x3f_c00368{left:373.500000px;}
.x8_c00368{left:375.000000px;}
.x53_c00368{left:378.420000px;}
.xcc_c00368{left:381.000000px;}
.x80_c00368{left:382.080000px;}
.x6b_c00368{left:384.000000px;}
.x4a_c00368{left:387.420000px;}
.xbd_c00368{left:388.500000px;}
.x34_c00368{left:390.000000px;}
.x90_c00368{left:394.500000px;}
.xa7_c00368{left:395.580000px;}
.x5e_c00368{left:397.500000px;}
.x6c_c00368{left:400.920000px;}
.x99_c00368{left:402.000000px;}
.x68_c00368{left:404.775000px;}
.x1_c00368{left:411.000000px;}
.x15_c00368{left:414.000000px;}
.x35_c00368{left:421.080000px;}
.x9_c00368{left:424.080000px;}
.x54_c00368{left:426.000000px;}
.x4b_c00368{left:427.920000px;}
.xd6_c00368{left:429.000000px;}
.xc7_c00368{left:430.080000px;}
.x21_c00368{left:432.000000px;}
.xd2_c00368{left:434.580000px;}
.x16_c00368{left:439.500000px;}
.xad_c00368{left:441.000000px;}
.x76_c00368{left:443.580000px;}
.xa_c00368{left:445.920000px;}
.x72_c00368{left:447.000000px;}
.xcd_c00368{left:448.500000px;}
.x40_c00368{left:449.580000px;}
.x9a_c00368{left:450.855000px;}
.xa0_c00368{left:451.920000px;}
.x22_c00368{left:453.420000px;}
.x91_c00368{left:456.000000px;}
.x5f_c00368{left:459.000000px;}
.x81_c00368{left:462.000000px;}
.x8a_c00368{left:463.920000px;}
.x73_c00368{left:466.500000px;}
.xbe_c00368{left:472.080000px;}
.xb_c00368{left:474.000000px;}
.xae_c00368{left:475.500000px;}
.x92_c00368{left:481.920000px;}
.x6d_c00368{left:486.000000px;}
.x41_c00368{left:487.920000px;}
.x8b_c00368{left:490.920000px;}
.xa1_c00368{left:498.000000px;}
.xce_c00368{left:501.000000px;}
.x60_c00368{left:502.500000px;}
.x23_c00368{left:504.000000px;}
.x17_c00368{left:507.420000px;}
.x4c_c00368{left:508.500000px;}
.x77_c00368{left:513.420000px;}
.xbf_c00368{left:514.500000px;}
.x6e_c00368{left:516.420000px;}
.xa2_c00368{left:517.920000px;}
.x55_c00368{left:519.000000px;}
.xaf_c00368{left:528.420000px;}
.x82_c00368{left:531.000000px;}
.x9b_c00368{left:536.775000px;}
.x56_c00368{left:538.500000px;}
.xc0_c00368{left:539.580000px;}
.x36_c00368{left:541.080000px;}
.xa3_c00368{left:543.000000px;}
.x24_c00368{left:544.080000px;}
.x4d_c00368{left:545.580000px;}
.xb0_c00368{left:556.080000px;}
.x18_c00368{left:558.000000px;}
.xc_c00368{left:560.580000px;}
.x25_c00368{left:564.420000px;}
.x78_c00368{left:568.080000px;}
.x42_c00368{left:571.500000px;}
.x61_c00368{left:574.920000px;}
.x9c_c00368{left:576.000000px;}
.x83_c00368{left:577.080000px;}
.x19_c00368{left:579.420000px;}
.x37_c00368{left:582.000000px;}
.x4e_c00368{left:583.080000px;}
.x57_c00368{left:585.000000px;}
.x79_c00368{left:588.000000px;}
.xc1_c00368{left:589.500000px;}
.xc8_c00368{left:591.000000px;}
.x26_c00368{left:592.080000px;}
.xd_c00368{left:593.580000px;}
.x38_c00368{left:595.920000px;}
.x43_c00368{left:600.420000px;}
.x8c_c00368{left:604.500000px;}
.xc2_c00368{left:606.000000px;}
.x62_c00368{left:609.000000px;}
.x74_c00368{left:610.500000px;}
.xb1_c00368{left:618.000000px;}
.x9d_c00368{left:621.420000px;}
.xb9_c00368{left:622.500000px;}
.xc9_c00368{left:624.420000px;}
.xcf_c00368{left:627.000000px;}
.x84_c00368{left:631.920000px;}
.x7a_c00368{left:633.000000px;}
.x27_c00368{left:636.000000px;}
.xe_c00368{left:637.500000px;}
.xa4_c00368{left:639.420000px;}
.x44_c00368{left:643.920000px;}
.x4f_c00368{left:649.500000px;}
.x28_c00368{left:651.420000px;}
.x63_c00368{left:652.920000px;}
.x9e_c00368{left:655.500000px;}
.x1a_c00368{left:658.500000px;}
.xca_c00368{left:661.500000px;}
.xa5_c00368{left:664.080000px;}
.x39_c00368{left:666.000000px;}
.x85_c00368{left:667.920000px;}
.x6f_c00368{left:672.000000px;}
.x45_c00368{left:680.580000px;}
.x29_c00368{left:685.080000px;}
.xf_c00368{left:686.580000px;}
.x1b_c00368{left:688.080000px;}
.x64_c00368{left:689.580000px;}
.x58_c00368{left:691.080000px;}
.x93_c00368{left:694.500000px;}
.xb2_c00368{left:696.000000px;}
.x2_c00368{left:703.080000px;}
.x2a_c00368{left:704.580000px;}
.x10_c00368{left:706.500000px;}
.x7b_c00368{left:708.420000px;}
.x59_c00368{left:710.580000px;}
.x94_c00368{left:713.580000px;}
.x3a_c00368{left:715.080000px;}
.x86_c00368{left:721.500000px;}
@media print{
.v1_c00368{vertical-align:-16.000000pt;}
.v0_c00368{vertical-align:0.000000pt;}
.ls0_c00368{letter-spacing:0.000000pt;}
.ws0_c00368{word-spacing:-2.359081pt;}
.ws1_c00368{word-spacing:0.000000pt;}
.fs4_c00368{font-size:16.640000pt;}
.fs0_c00368{font-size:18.133333pt;}
.fs3_c00368{font-size:22.666667pt;}
.fs1_c00368{font-size:25.706667pt;}
.fs5_c00368{font-size:28.746667pt;}
.fs2_c00368{font-size:31.733333pt;}
.fs6_c00368{font-size:34.773333pt;}
.y0_c00368{bottom:0.000000pt;}
.y86_c00368{bottom:453.106667pt;}
.y85_c00368{bottom:454.066667pt;}
.y84_c00368{bottom:455.026667pt;}
.y87_c00368{bottom:455.226667pt;}
.y88_c00368{bottom:455.973333pt;}
.y82_c00368{bottom:470.440000pt;}
.y83_c00368{bottom:471.026667pt;}
.y81_c00368{bottom:471.226667pt;}
.y80_c00368{bottom:472.360000pt;}
.y7d_c00368{bottom:486.640000pt;}
.y7f_c00368{bottom:487.773333pt;}
.y7e_c00368{bottom:489.306667pt;}
.y7c_c00368{bottom:489.693333pt;}
.y7a_c00368{bottom:505.106667pt;}
.y7b_c00368{bottom:505.893333pt;}
.y79_c00368{bottom:506.066667pt;}
.y78_c00368{bottom:507.026667pt;}
.y77_c00368{bottom:522.066667pt;}
.y75_c00368{bottom:522.440000pt;}
.y76_c00368{bottom:523.400000pt;}
.y72_c00368{bottom:539.773333pt;}
.y6e_c00368{bottom:539.973333pt;}
.y70_c00368{bottom:541.106667pt;}
.y74_c00368{bottom:541.693333pt;}
.y6f_c00368{bottom:541.893333pt;}
.y73_c00368{bottom:542.640000pt;}
.y71_c00368{bottom:543.026667pt;}
.y6a_c00368{bottom:558.440000pt;}
.y6d_c00368{bottom:559.026667pt;}
.y6b_c00368{bottom:559.226667pt;}
.y6c_c00368{bottom:559.973333pt;}
.y69_c00368{bottom:560.360000pt;}
.y66_c00368{bottom:575.773333pt;}
.y65_c00368{bottom:576.560000pt;}
.y67_c00368{bottom:577.306667pt;}
.y68_c00368{bottom:577.693333pt;}
.y61_c00368{bottom:593.893333pt;}
.y63_c00368{bottom:594.066667pt;}
.y64_c00368{bottom:594.640000pt;}
.y60_c00368{bottom:595.026667pt;}
.y62_c00368{bottom:595.973333pt;}
.y5b_c00368{bottom:610.440000pt;}
.y5f_c00368{bottom:611.400000pt;}
.y5e_c00368{bottom:611.973333pt;}
.y5c_c00368{bottom:612.360000pt;}
.y5d_c00368{bottom:613.306667pt;}
.y58_c00368{bottom:627.773333pt;}
.y57_c00368{bottom:629.693333pt;}
.y5a_c00368{bottom:629.893333pt;}
.y59_c00368{bottom:630.640000pt;}
.y56_c00368{bottom:644.360000pt;}
.y55_c00368{bottom:645.106667pt;}
.y53_c00368{bottom:647.026667pt;}
.y54_c00368{bottom:647.226667pt;}
.y52_c00368{bottom:663.773333pt;}
.y50_c00368{bottom:679.026667pt;}
.y4d_c00368{bottom:681.106667pt;}
.y4c_c00368{bottom:681.893333pt;}
.y51_c00368{bottom:682.066667pt;}
.y4f_c00368{bottom:682.640000pt;}
.y4b_c00368{bottom:683.026667pt;}
.y4e_c00368{bottom:683.973333pt;}
.y47_c00368{bottom:698.066667pt;}
.y49_c00368{bottom:698.440000pt;}
.y4a_c00368{bottom:699.400000pt;}
.y46_c00368{bottom:699.973333pt;}
.y48_c00368{bottom:700.360000pt;}
.y43_c00368{bottom:715.773333pt;}
.y45_c00368{bottom:716.560000pt;}
.y44_c00368{bottom:717.306667pt;}
.y42_c00368{bottom:717.693333pt;}
.y41_c00368{bottom:732.160000pt;}
.y40_c00368{bottom:733.106667pt;}
.y3f_c00368{bottom:734.640000pt;}
.y3e_c00368{bottom:735.026667pt;}
.y3a_c00368{bottom:750.440000pt;}
.y3d_c00368{bottom:751.226667pt;}
.y3c_c00368{bottom:751.973333pt;}
.y3b_c00368{bottom:752.360000pt;}
.y39_c00368{bottom:767.773333pt;}
.y36_c00368{bottom:769.106667pt;}
.y35_c00368{bottom:769.693333pt;}
.y38_c00368{bottom:769.893333pt;}
.y37_c00368{bottom:770.640000pt;}
.y34_c00368{bottom:785.106667pt;}
.y32_c00368{bottom:787.026667pt;}
.y33_c00368{bottom:787.973333pt;}
.y31_c00368{bottom:802.440000pt;}
.y30_c00368{bottom:802.640000pt;}
.y2f_c00368{bottom:803.600000pt;}
.y2c_c00368{bottom:804.360000pt;}
.y2e_c00368{bottom:804.560000pt;}
.y2d_c00368{bottom:805.306667pt;}
.y28_c00368{bottom:819.026667pt;}
.y2b_c00368{bottom:819.773333pt;}
.y2a_c00368{bottom:821.106667pt;}
.y29_c00368{bottom:821.893333pt;}
.y27_c00368{bottom:822.640000pt;}
.y26_c00368{bottom:823.026667pt;}
.y23_c00368{bottom:836.360000pt;}
.y25_c00368{bottom:839.026667pt;}
.y22_c00368{bottom:839.226667pt;}
.y24_c00368{bottom:839.973333pt;}
.y21_c00368{bottom:840.360000pt;}
.y1f_c00368{bottom:853.693333pt;}
.y20_c00368{bottom:854.440000pt;}
.y1e_c00368{bottom:855.773333pt;}
.y1a_c00368{bottom:857.306667pt;}
.y1c_c00368{bottom:857.693333pt;}
.y1d_c00368{bottom:857.893333pt;}
.y1b_c00368{bottom:858.640000pt;}
.y17_c00368{bottom:873.106667pt;}
.y19_c00368{bottom:873.893333pt;}
.y18_c00368{bottom:874.640000pt;}
.y16_c00368{bottom:875.026667pt;}
.y15_c00368{bottom:890.440000pt;}
.y14_c00368{bottom:892.360000pt;}
.y11_c00368{bottom:907.773333pt;}
.y12_c00368{bottom:908.733333pt;}
.yf_c00368{bottom:909.693333pt;}
.y13_c00368{bottom:909.893333pt;}
.ye_c00368{bottom:910.640000pt;}
.y10_c00368{bottom:911.026667pt;}
.yd_c00368{bottom:925.106667pt;}
.ya_c00368{bottom:927.026667pt;}
.yc_c00368{bottom:927.226667pt;}
.yb_c00368{bottom:927.973333pt;}
.y9_c00368{bottom:942.440000pt;}
.y7_c00368{bottom:942.640000pt;}
.y5_c00368{bottom:943.773333pt;}
.y6_c00368{bottom:943.973333pt;}
.y3_c00368{bottom:944.360000pt;}
.y8_c00368{bottom:945.306667pt;}
.y4_c00368{bottom:945.693333pt;}
.y2_c00368{bottom:976.360000pt;}
.y1_c00368{bottom:978.266667pt;}
.h5_c00368{height:20.466875pt;}
.h1_c00368{height:22.303646pt;}
.h4_c00368{height:27.879557pt;}
.h2_c00368{height:31.618698pt;}
.h6_c00368{height:35.357839pt;}
.h3_c00368{height:39.031380pt;}
.h7_c00368{height:42.770521pt;}
.h0_c00368{height:1186.666667pt;}
.w0_c00368{width:782.666667pt;}
.x0_c00368{left:0.000000pt;}
.x3_c00368{left:135.040000pt;}
.x95_c00368{left:136.373333pt;}
.xc3_c00368{left:138.466667pt;}
.x2e_c00368{left:148.573333pt;}
.x96_c00368{left:150.666667pt;}
.x50_c00368{left:152.000000pt;}
.x65_c00368{left:158.666667pt;}
.x1c_c00368{left:160.000000pt;}
.x4_c00368{left:160.960000pt;}
.xa8_c00368{left:162.666667pt;}
.xb3_c00368{left:164.000000pt;}
.x7c_c00368{left:165.333333pt;}
.x46_c00368{left:168.373333pt;}
.xb7_c00368{left:171.800000pt;}
.x66_c00368{left:175.040000pt;}
.x3b_c00368{left:177.333333pt;}
.xd3_c00368{left:178.666667pt;}
.x51_c00368{left:181.706667pt;}
.x70_c00368{left:182.666667pt;}
.xba_c00368{left:185.706667pt;}
.x2b_c00368{left:188.373333pt;}
.xa9_c00368{left:190.293333pt;}
.x47_c00368{left:192.373333pt;}
.x87_c00368{left:196.000000pt;}
.x11_c00368{left:198.666667pt;}
.x1d_c00368{left:200.000000pt;}
.x7d_c00368{left:202.293333pt;}
.x2f_c00368{left:205.706667pt;}
.x3c_c00368{left:206.666667pt;}
.xc5_c00368{left:207.626667pt;}
.x9f_c00368{left:210.293333pt;}
.x71_c00368{left:212.000000pt;}
.x88_c00368{left:212.960000pt;}
.x5_c00368{left:215.040000pt;}
.x8d_c00368{left:216.000000pt;}
.xc4_c00368{left:217.333333pt;}
.x7e_c00368{left:219.040000pt;}
.xbb_c00368{left:220.373333pt;}
.x3d_c00368{left:225.333333pt;}
.x5a_c00368{left:230.293333pt;}
.xd4_c00368{left:231.800000pt;}
.x75_c00368{left:233.333333pt;}
.x30_c00368{left:235.626667pt;}
.xa6_c00368{left:237.333333pt;}
.x12_c00368{left:239.040000pt;}
.x48_c00368{left:241.706667pt;}
.x7f_c00368{left:244.000000pt;}
.x69_c00368{left:246.293333pt;}
.x1e_c00368{left:247.626667pt;}
.xaa_c00368{left:249.333333pt;}
.x2c_c00368{left:253.706667pt;}
.xb4_c00368{left:254.666667pt;}
.x97_c00368{left:257.333333pt;}
.xbc_c00368{left:258.666667pt;}
.x6a_c00368{left:263.040000pt;}
.x49_c00368{left:264.000000pt;}
.xd5_c00368{left:266.666667pt;}
.xcb_c00368{left:269.333333pt;}
.x6_c00368{left:270.293333pt;}
.x5b_c00368{left:271.426667pt;}
.xb5_c00368{left:272.373333pt;}
.x31_c00368{left:273.333333pt;}
.x52_c00368{left:274.666667pt;}
.x1f_c00368{left:276.373333pt;}
.xab_c00368{left:283.040000pt;}
.xd0_c00368{left:284.000000pt;}
.x67_c00368{left:284.960000pt;}
.x2d_c00368{left:287.040000pt;}
.x7_c00368{left:289.706667pt;}
.x32_c00368{left:292.000000pt;}
.x89_c00368{left:292.960000pt;}
.x5c_c00368{left:295.040000pt;}
.xb6_c00368{left:296.000000pt;}
.x13_c00368{left:300.000000pt;}
.x3e_c00368{left:302.666667pt;}
.x33_c00368{left:305.333333pt;}
.xac_c00368{left:307.040000pt;}
.x20_c00368{left:309.333333pt;}
.x8e_c00368{left:310.293333pt;}
.xc6_c00368{left:311.626667pt;}
.xb8_c00368{left:313.333333pt;}
.x14_c00368{left:314.293333pt;}
.x98_c00368{left:318.666667pt;}
.x5d_c00368{left:323.040000pt;}
.x8f_c00368{left:326.666667pt;}
.xd1_c00368{left:328.000000pt;}
.x3f_c00368{left:332.000000pt;}
.x8_c00368{left:333.333333pt;}
.x53_c00368{left:336.373333pt;}
.xcc_c00368{left:338.666667pt;}
.x80_c00368{left:339.626667pt;}
.x6b_c00368{left:341.333333pt;}
.x4a_c00368{left:344.373333pt;}
.xbd_c00368{left:345.333333pt;}
.x34_c00368{left:346.666667pt;}
.x90_c00368{left:350.666667pt;}
.xa7_c00368{left:351.626667pt;}
.x5e_c00368{left:353.333333pt;}
.x6c_c00368{left:356.373333pt;}
.x99_c00368{left:357.333333pt;}
.x68_c00368{left:359.800000pt;}
.x1_c00368{left:365.333333pt;}
.x15_c00368{left:368.000000pt;}
.x35_c00368{left:374.293333pt;}
.x9_c00368{left:376.960000pt;}
.x54_c00368{left:378.666667pt;}
.x4b_c00368{left:380.373333pt;}
.xd6_c00368{left:381.333333pt;}
.xc7_c00368{left:382.293333pt;}
.x21_c00368{left:384.000000pt;}
.xd2_c00368{left:386.293333pt;}
.x16_c00368{left:390.666667pt;}
.xad_c00368{left:392.000000pt;}
.x76_c00368{left:394.293333pt;}
.xa_c00368{left:396.373333pt;}
.x72_c00368{left:397.333333pt;}
.xcd_c00368{left:398.666667pt;}
.x40_c00368{left:399.626667pt;}
.x9a_c00368{left:400.760000pt;}
.xa0_c00368{left:401.706667pt;}
.x22_c00368{left:403.040000pt;}
.x91_c00368{left:405.333333pt;}
.x5f_c00368{left:408.000000pt;}
.x81_c00368{left:410.666667pt;}
.x8a_c00368{left:412.373333pt;}
.x73_c00368{left:414.666667pt;}
.xbe_c00368{left:419.626667pt;}
.xb_c00368{left:421.333333pt;}
.xae_c00368{left:422.666667pt;}
.x92_c00368{left:428.373333pt;}
.x6d_c00368{left:432.000000pt;}
.x41_c00368{left:433.706667pt;}
.x8b_c00368{left:436.373333pt;}
.xa1_c00368{left:442.666667pt;}
.xce_c00368{left:445.333333pt;}
.x60_c00368{left:446.666667pt;}
.x23_c00368{left:448.000000pt;}
.x17_c00368{left:451.040000pt;}
.x4c_c00368{left:452.000000pt;}
.x77_c00368{left:456.373333pt;}
.xbf_c00368{left:457.333333pt;}
.x6e_c00368{left:459.040000pt;}
.xa2_c00368{left:460.373333pt;}
.x55_c00368{left:461.333333pt;}
.xaf_c00368{left:469.706667pt;}
.x82_c00368{left:472.000000pt;}
.x9b_c00368{left:477.133333pt;}
.x56_c00368{left:478.666667pt;}
.xc0_c00368{left:479.626667pt;}
.x36_c00368{left:480.960000pt;}
.xa3_c00368{left:482.666667pt;}
.x24_c00368{left:483.626667pt;}
.x4d_c00368{left:484.960000pt;}
.xb0_c00368{left:494.293333pt;}
.x18_c00368{left:496.000000pt;}
.xc_c00368{left:498.293333pt;}
.x25_c00368{left:501.706667pt;}
.x78_c00368{left:504.960000pt;}
.x42_c00368{left:508.000000pt;}
.x61_c00368{left:511.040000pt;}
.x9c_c00368{left:512.000000pt;}
.x83_c00368{left:512.960000pt;}
.x19_c00368{left:515.040000pt;}
.x37_c00368{left:517.333333pt;}
.x4e_c00368{left:518.293333pt;}
.x57_c00368{left:520.000000pt;}
.x79_c00368{left:522.666667pt;}
.xc1_c00368{left:524.000000pt;}
.xc8_c00368{left:525.333333pt;}
.x26_c00368{left:526.293333pt;}
.xd_c00368{left:527.626667pt;}
.x38_c00368{left:529.706667pt;}
.x43_c00368{left:533.706667pt;}
.x8c_c00368{left:537.333333pt;}
.xc2_c00368{left:538.666667pt;}
.x62_c00368{left:541.333333pt;}
.x74_c00368{left:542.666667pt;}
.xb1_c00368{left:549.333333pt;}
.x9d_c00368{left:552.373333pt;}
.xb9_c00368{left:553.333333pt;}
.xc9_c00368{left:555.040000pt;}
.xcf_c00368{left:557.333333pt;}
.x84_c00368{left:561.706667pt;}
.x7a_c00368{left:562.666667pt;}
.x27_c00368{left:565.333333pt;}
.xe_c00368{left:566.666667pt;}
.xa4_c00368{left:568.373333pt;}
.x44_c00368{left:572.373333pt;}
.x4f_c00368{left:577.333333pt;}
.x28_c00368{left:579.040000pt;}
.x63_c00368{left:580.373333pt;}
.x9e_c00368{left:582.666667pt;}
.x1a_c00368{left:585.333333pt;}
.xca_c00368{left:588.000000pt;}
.xa5_c00368{left:590.293333pt;}
.x39_c00368{left:592.000000pt;}
.x85_c00368{left:593.706667pt;}
.x6f_c00368{left:597.333333pt;}
.x45_c00368{left:604.960000pt;}
.x29_c00368{left:608.960000pt;}
.xf_c00368{left:610.293333pt;}
.x1b_c00368{left:611.626667pt;}
.x64_c00368{left:612.960000pt;}
.x58_c00368{left:614.293333pt;}
.x93_c00368{left:617.333333pt;}
.xb2_c00368{left:618.666667pt;}
.x2_c00368{left:624.960000pt;}
.x2a_c00368{left:626.293333pt;}
.x10_c00368{left:628.000000pt;}
.x7b_c00368{left:629.706667pt;}
.x59_c00368{left:631.626667pt;}
.x94_c00368{left:634.293333pt;}
.x3a_c00368{left:635.626667pt;}
.x86_c00368{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fdd7fb5c633e8c54a0aefbc2.woff2')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3f_c00369{transform:matrix(0.199907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199907,0.000000,0.000000,0.250000,0,0);}
.m82_c00369{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.m60_c00369{transform:matrix(0.314417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314417,0.000000,0.000000,0.250000,0,0);}
.m95_c00369{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m4b_c00369{transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);}
.m3d_c00369{transform:matrix(0.347866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347866,0.000000,0.000000,0.250000,0,0);}
.m99_c00369{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m26_c00369{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mbd_c00369{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m30_c00369{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m59_c00369{transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);}
.m9a_c00369{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m3c_c00369{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m81_c00369{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.mad_c00369{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m76_c00369{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.m66_c00369{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m97_c00369{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m56_c00369{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m96_c00369{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m85_c00369{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m4a_c00369{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m53_c00369{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.md4_c00369{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m3a_c00369{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.mb3_c00369{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.mce_c00369{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m5d_c00369{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m15_c00369{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m2f_c00369{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.md5_c00369{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m7f_c00369{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m4e_c00369{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m37_c00369{transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);}
.mc3_c00369{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m29_c00369{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m7_c00369{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m50_c00369{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.ma_c00369{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.ma7_c00369{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mcd_c00369{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.mc2_c00369{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.md6_c00369{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m20_c00369{transform:matrix(0.413382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413382,0.000000,0.000000,0.250000,0,0);}
.md8_c00369{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mb1_c00369{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.maf_c00369{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.md3_c00369{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.md0_c00369{transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);}
.m41_c00369{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m84_c00369{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m6d_c00369{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m73_c00369{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m48_c00369{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m86_c00369{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mc1_c00369{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m27_c00369{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.md1_c00369{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.mc7_c00369{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m5b_c00369{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mc6_c00369{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m39_c00369{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.mcb_c00369{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m83_c00369{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m6a_c00369{transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);}
.m1e_c00369{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m42_c00369{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mbb_c00369{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m52_c00369{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m33_c00369{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m19_c00369{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m9b_c00369{transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);}
.m63_c00369{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mc8_c00369{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m98_c00369{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m24_c00369{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m78_c00369{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mc5_c00369{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m5f_c00369{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.mba_c00369{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m88_c00369{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m36_c00369{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.m1d_c00369{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.ma8_c00369{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m7c_c00369{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.md9_c00369{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m80_c00369{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m12_c00369{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m5c_c00369{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.m38_c00369{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m34_c00369{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.mdd_c00369{transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);}
.m3b_c00369{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.mca_c00369{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.md2_c00369{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.ma4_c00369{transform:matrix(0.477273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477273,0.000000,0.000000,0.250000,0,0);}
.m55_c00369{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.mb_c00369{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m28_c00369{transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);}
.m8f_c00369{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m35_c00369{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m40_c00369{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m2d_c00369{transform:matrix(0.489916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489916,0.000000,0.000000,0.250000,0,0);}
.m31_c00369{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);}
.m67_c00369{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m5e_c00369{transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);}
.m79_c00369{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m64_c00369{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mb4_c00369{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m5_c00369{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);}
.mac_c00369{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mb0_c00369{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.md7_c00369{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mb9_c00369{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.ma2_c00369{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.mc0_c00369{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m2b_c00369{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.ma5_c00369{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mcc_c00369{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.ma3_c00369{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m1b_c00369{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m61_c00369{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m54_c00369{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m6c_c00369{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m70_c00369{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m7d_c00369{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mb7_c00369{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m49_c00369{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m1f_c00369{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m4f_c00369{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m6_c00369{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m77_c00369{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mb2_c00369{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m1c_c00369{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m11_c00369{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m23_c00369{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m2_c00369{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m69_c00369{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m9_c00369{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m13_c00369{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m18_c00369{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.mda_c00369{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m87_c00369{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m47_c00369{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m14_c00369{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m68_c00369{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m6b_c00369{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m1a_c00369{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m57_c00369{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m75_c00369{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m5a_c00369{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m93_c00369{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mb8_c00369{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m6e_c00369{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mcf_c00369{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mbc_c00369{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m71_c00369{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m4d_c00369{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m9f_c00369{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mab_c00369{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m17_c00369{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.me_c00369{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mbe_c00369{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mb6_c00369{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.ma6_c00369{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m90_c00369{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m8a_c00369{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mae_c00369{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m4c_c00369{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.m9c_c00369{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m46_c00369{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.mc4_c00369{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m8d_c00369{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m62_c00369{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m4_c00369{transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);}
.m10_c00369{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m32_c00369{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.mdb_c00369{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.ma1_c00369{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mc_c00369{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m91_c00369{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.ma9_c00369{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m72_c00369{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m7b_c00369{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mf_c00369{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m9d_c00369{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m74_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);}
.m3_c00369{transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);}
.m8e_c00369{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.mdc_c00369{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m44_c00369{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.m45_c00369{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m2c_c00369{transform:matrix(0.621888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621888,0.000000,0.000000,0.250000,0,0);}
.mc9_c00369{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_c00369{transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);}
.m0_c00369{transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);}
.m8c_c00369{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m16_c00369{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m6f_c00369{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.md_c00369{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.ma0_c00369{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m3e_c00369{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m7e_c00369{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m2a_c00369{transform:matrix(0.715545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715545,0.000000,0.000000,0.250000,0,0);}
.m7a_c00369{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m65_c00369{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.maa_c00369{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m2e_c00369{transform:matrix(0.728824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728824,0.000000,0.000000,0.250000,0,0);}
.m22_c00369{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m25_c00369{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m92_c00369{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.mdf_c00369{transform:matrix(0.741186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741186,0.000000,0.000000,0.250000,0,0);}
.m89_c00369{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m58_c00369{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m94_c00369{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.mde_c00369{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mbf_c00369{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m9e_c00369{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m8_c00369{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mb5_c00369{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m8b_c00369{transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);}
.m1_c00369{transform:matrix(0.832988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832988,0.000000,0.000000,0.250000,0,0);}
.m51_c00369{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m43_c00369{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00369{vertical-align:0.000000px;}
.ls0_c00369{letter-spacing:0.000000px;}
.sc__c00369{text-shadow:none;}
.sc0_c00369{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00369{-webkit-text-stroke:0px transparent;}
.sc0_c00369{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00369{word-spacing:-4.373143px;}
.ws0_c00369{word-spacing:-2.923485px;}
.ws2_c00369{word-spacing:0.000000px;}
.fc0_c00369{color:transparent;}
.fs7_c00369{font-size:3.420000px;}
.fs6_c00369{font-size:13.620000px;}
.fs3_c00369{font-size:18.720000px;}
.fs5_c00369{font-size:20.400000px;}
.fs1_c00369{font-size:25.500000px;}
.fs0_c00369{font-size:28.920000px;}
.fs4_c00369{font-size:32.340000px;}
.fs2_c00369{font-size:35.700000px;}
.fs8_c00369{font-size:39.120000px;}
.y0_c00369{bottom:0.000000px;}
.y93_c00369{bottom:230.130000px;}
.y92_c00369{bottom:231.405000px;}
.y8f_c00369{bottom:248.745000px;}
.y91_c00369{bottom:249.825000px;}
.y8e_c00369{bottom:250.905000px;}
.y90_c00369{bottom:251.970000px;}
.y8d_c00369{bottom:267.405000px;}
.y8a_c00369{bottom:268.245000px;}
.y8c_c00369{bottom:269.130000px;}
.y8b_c00369{bottom:270.405000px;}
.y89_c00369{bottom:285.405000px;}
.y85_c00369{bottom:287.745000px;}
.y86_c00369{bottom:288.630000px;}
.y88_c00369{bottom:288.825000px;}
.y87_c00369{bottom:289.905000px;}
.y84_c00369{bottom:306.405000px;}
.y81_c00369{bottom:307.245000px;}
.y82_c00369{bottom:308.745000px;}
.y80_c00369{bottom:309.405000px;}
.y83_c00369{bottom:309.630000px;}
.y7b_c00369{bottom:326.745000px;}
.y7c_c00369{bottom:328.245000px;}
.y7e_c00369{bottom:328.905000px;}
.y7f_c00369{bottom:329.130000px;}
.y7d_c00369{bottom:330.405000px;}
.y77_c00369{bottom:347.745000px;}
.y79_c00369{bottom:348.630000px;}
.y7a_c00369{bottom:348.825000px;}
.y78_c00369{bottom:349.905000px;}
.y75_c00369{bottom:364.905000px;}
.y76_c00369{bottom:367.245000px;}
.y74_c00369{bottom:369.405000px;}
.y73_c00369{bottom:385.680000px;}
.y71_c00369{bottom:386.745000px;}
.y6f_c00369{bottom:387.630000px;}
.y72_c00369{bottom:387.825000px;}
.y70_c00369{bottom:388.905000px;}
.y6e_c00369{bottom:405.825000px;}
.y6d_c00369{bottom:406.245000px;}
.y6c_c00369{bottom:408.405000px;}
.y6a_c00369{bottom:424.680000px;}
.y6b_c00369{bottom:425.745000px;}
.y68_c00369{bottom:427.245000px;}
.y67_c00369{bottom:427.905000px;}
.y69_c00369{bottom:428.130000px;}
.y66_c00369{bottom:429.405000px;}
.y65_c00369{bottom:446.325000px;}
.y64_c00369{bottom:447.405000px;}
.y63_c00369{bottom:447.630000px;}
.y62_c00369{bottom:448.905000px;}
.y61_c00369{bottom:466.050000px;}
.y5e_c00369{bottom:466.245000px;}
.y60_c00369{bottom:466.905000px;}
.y5f_c00369{bottom:467.130000px;}
.y5d_c00369{bottom:468.405000px;}
.y5c_c00369{bottom:484.680000px;}
.y5b_c00369{bottom:485.745000px;}
.y5a_c00369{bottom:486.630000px;}
.y59_c00369{bottom:487.905000px;}
.y56_c00369{bottom:503.970000px;}
.y58_c00369{bottom:505.905000px;}
.y57_c00369{bottom:506.130000px;}
.y55_c00369{bottom:507.405000px;}
.y52_c00369{bottom:524.745000px;}
.y50_c00369{bottom:526.905000px;}
.y51_c00369{bottom:526.920000px;}
.y53_c00369{bottom:527.130000px;}
.y54_c00369{bottom:527.970000px;}
.y4e_c00369{bottom:544.245000px;}
.y4f_c00369{bottom:545.325000px;}
.y4d_c00369{bottom:561.825000px;}
.y4b_c00369{bottom:563.745000px;}
.y4c_c00369{bottom:564.180000px;}
.y4a_c00369{bottom:564.825000px;}
.y49_c00369{bottom:565.905000px;}
.y47_c00369{bottom:583.245000px;}
.y45_c00369{bottom:584.325000px;}
.y42_c00369{bottom:584.745000px;}
.y43_c00369{bottom:585.405000px;}
.y46_c00369{bottom:585.630000px;}
.y48_c00369{bottom:586.470000px;}
.y44_c00369{bottom:586.905000px;}
.y41_c00369{bottom:604.245000px;}
.y3f_c00369{bottom:604.905000px;}
.y3e_c00369{bottom:605.130000px;}
.y40_c00369{bottom:605.970000px;}
.y3d_c00369{bottom:606.405000px;}
.y3b_c00369{bottom:621.405000px;}
.y3c_c00369{bottom:623.745000px;}
.y3a_c00369{bottom:624.825000px;}
.y39_c00369{bottom:625.470000px;}
.y38_c00369{bottom:625.905000px;}
.y36_c00369{bottom:643.245000px;}
.y37_c00369{bottom:644.130000px;}
.y34_c00369{bottom:645.405000px;}
.y35_c00369{bottom:645.420000px;}
.y32_c00369{bottom:661.680000px;}
.y30_c00369{bottom:662.745000px;}
.y31_c00369{bottom:663.825000px;}
.y33_c00369{bottom:664.905000px;}
.y2e_c00369{bottom:682.245000px;}
.y2d_c00369{bottom:682.680000px;}
.y2b_c00369{bottom:683.130000px;}
.y2f_c00369{bottom:683.325000px;}
.y2a_c00369{bottom:684.405000px;}
.y2c_c00369{bottom:684.420000px;}
.y29_c00369{bottom:700.905000px;}
.y26_c00369{bottom:701.745000px;}
.y28_c00369{bottom:702.825000px;}
.y27_c00369{bottom:703.920000px;}
.y24_c00369{bottom:722.745000px;}
.y25_c00369{bottom:723.405000px;}
.y23_c00369{bottom:724.905000px;}
.y21_c00369{bottom:741.180000px;}
.y1e_c00369{bottom:742.245000px;}
.y22_c00369{bottom:743.970000px;}
.y20_c00369{bottom:744.405000px;}
.y1f_c00369{bottom:744.420000px;}
.y1d_c00369{bottom:767.970000px;}
.y19_c00369{bottom:768.825000px;}
.y1b_c00369{bottom:769.905000px;}
.y1a_c00369{bottom:770.970000px;}
.y1c_c00369{bottom:771.195000px;}
.y17_c00369{bottom:787.470000px;}
.y16_c00369{bottom:788.550000px;}
.y18_c00369{bottom:789.405000px;}
.y15_c00369{bottom:790.470000px;}
.y13_c00369{bottom:809.745000px;}
.y14_c00369{bottom:812.970000px;}
.y12_c00369{bottom:852.405000px;}
.y10_c00369{bottom:899.745000px;}
.y11_c00369{bottom:900.630000px;}
.ye_c00369{bottom:901.470000px;}
.yf_c00369{bottom:901.905000px;}
.yd_c00369{bottom:918.825000px;}
.yc_c00369{bottom:919.245000px;}
.ya_c00369{bottom:919.905000px;}
.yb_c00369{bottom:921.405000px;}
.y9_c00369{bottom:938.745000px;}
.y8_c00369{bottom:939.825000px;}
.y6_c00369{bottom:940.470000px;}
.y7_c00369{bottom:940.905000px;}
.y4_c00369{bottom:958.245000px;}
.y5_c00369{bottom:959.130000px;}
.y3_c00369{bottom:959.970000px;}
.y2_c00369{bottom:960.405000px;}
.y1_c00369{bottom:999.405000px;}
.h8_c00369{height:4.206533px;}
.h7_c00369{height:16.752334px;}
.h4_c00369{height:23.025234px;}
.h6_c00369{height:25.091602px;}
.h2_c00369{height:31.364502px;}
.h1_c00369{height:35.571035px;}
.h5_c00369{height:39.777568px;}
.h3_c00369{height:43.910303px;}
.h9_c00369{height:48.116836px;}
.h0_c00369{height:1335.000000px;}
.w0_c00369{width:880.500000px;}
.x0_c00369{left:0.000000px;}
.xaf_c00369{left:151.500000px;}
.x5e_c00369{left:153.000000px;}
.xe_c00369{left:154.500000px;}
.x48_c00369{left:156.000000px;}
.x37_c00369{left:168.000000px;}
.x50_c00369{left:169.500000px;}
.x3_c00369{left:171.000000px;}
.xb0_c00369{left:172.920000px;}
.xf_c00369{left:174.420000px;}
.x5f_c00369{left:178.920000px;}
.x86_c00369{left:180.000000px;}
.x24_c00369{left:184.500000px;}
.x1a_c00369{left:186.000000px;}
.xd4_c00369{left:190.500000px;}
.xbc_c00369{left:198.000000px;}
.x10_c00369{left:201.000000px;}
.x4_c00369{left:203.580000px;}
.x25_c00369{left:205.080000px;}
.x8f_c00369{left:213.420000px;}
.x40_c00369{left:214.920000px;}
.x7d_c00369{left:217.500000px;}
.xa8_c00369{left:226.500000px;}
.x60_c00369{left:227.580000px;}
.x6d_c00369{left:229.500000px;}
.xcc_c00369{left:230.580000px;}
.x74_c00369{left:235.500000px;}
.xe0_c00369{left:241.500000px;}
.xa9_c00369{left:244.500000px;}
.x61_c00369{left:246.420000px;}
.x6e_c00369{left:247.920000px;}
.x87_c00369{left:250.500000px;}
.x51_c00369{left:252.000000px;}
.x5_c00369{left:253.920000px;}
.xc6_c00369{left:255.000000px;}
.x75_c00369{left:258.420000px;}
.x38_c00369{left:259.500000px;}
.x4c_c00369{left:262.500000px;}
.x11_c00369{left:264.000000px;}
.xb5_c00369{left:265.920000px;}
.x49_c00369{left:268.080000px;}
.x2e_c00369{left:270.420000px;}
.x6f_c00369{left:271.500000px;}
.x62_c00369{left:273.000000px;}
.x26_c00369{left:274.500000px;}
.x97_c00369{left:276.000000px;}
.xbd_c00369{left:280.080000px;}
.x1b_c00369{left:283.500000px;}
.xd9_c00369{left:285.000000px;}
.x7e_c00369{left:288.000000px;}
.x70_c00369{left:289.500000px;}
.xb6_c00369{left:291.000000px;}
.x4a_c00369{left:292.080000px;}
.x90_c00369{left:294.000000px;}
.x12_c00369{left:295.080000px;}
.x52_c00369{left:303.000000px;}
.xc2_c00369{left:307.080000px;}
.xaa_c00369{left:309.000000px;}
.x27_c00369{left:310.500000px;}
.x13_c00369{left:313.080000px;}
.xcd_c00369{left:314.580000px;}
.x39_c00369{left:316.080000px;}
.x98_c00369{left:317.580000px;}
.xe1_c00369{left:321.420000px;}
.x76_c00369{left:322.500000px;}
.x53_c00369{left:323.580000px;}
.x1c_c00369{left:325.500000px;}
.xab_c00369{left:327.420000px;}
.x9f_c00369{left:328.500000px;}
.xd3_c00369{left:331.920000px;}
.x7f_c00369{left:333.000000px;}
.xd5_c00369{left:334.920000px;}
.xc7_c00369{left:336.000000px;}
.x1_c00369{left:337.080000px;}
.x6_c00369{left:338.580000px;}
.x31_c00369{left:342.000000px;}
.x63_c00369{left:343.080000px;}
.x80_c00369{left:346.500000px;}
.x4d_c00369{left:347.775000px;}
.x54_c00369{left:350.580000px;}
.x4b_c00369{left:354.000000px;}
.xac_c00369{left:357.000000px;}
.x7_c00369{left:358.920000px;}
.x64_c00369{left:361.080000px;}
.xd6_c00369{left:363.000000px;}
.x2c_c00369{left:365.145000px;}
.xa0_c00369{left:367.920000px;}
.x32_c00369{left:369.420000px;}
.xb7_c00369{left:370.500000px;}
.xb1_c00369{left:372.000000px;}
.x99_c00369{left:379.500000px;}
.x3a_c00369{left:381.420000px;}
.xce_c00369{left:382.920000px;}
.xbe_c00369{left:384.000000px;}
.xdb_c00369{left:385.500000px;}
.x8_c00369{left:386.580000px;}
.x41_c00369{left:388.080000px;}
.x1d_c00369{left:391.080000px;}
.x2_c00369{left:392.145000px;}
.x88_c00369{left:393.420000px;}
.x28_c00369{left:394.920000px;}
.x55_c00369{left:396.000000px;}
.x91_c00369{left:403.500000px;}
.x65_c00369{left:406.500000px;}
.xd7_c00369{left:407.580000px;}
.x33_c00369{left:411.000000px;}
.xcf_c00369{left:412.920000px;}
.x3b_c00369{left:417.000000px;}
.x77_c00369{left:420.420000px;}
.x1e_c00369{left:421.500000px;}
.x4e_c00369{left:423.000000px;}
.x14_c00369{left:424.080000px;}
.x2d_c00369{left:426.000000px;}
.xa1_c00369{left:430.500000px;}
.x71_c00369{left:433.080000px;}
.x89_c00369{left:435.000000px;}
.xc3_c00369{left:438.645000px;}
.xbf_c00369{left:442.080000px;}
.x81_c00369{left:443.580000px;}
.xb8_c00369{left:446.580000px;}
.x9a_c00369{left:448.275000px;}
.x78_c00369{left:450.420000px;}
.x29_c00369{left:453.420000px;}
.xd0_c00369{left:459.420000px;}
.x8a_c00369{left:462.000000px;}
.x42_c00369{left:464.145000px;}
.x56_c00369{left:465.420000px;}
.x34_c00369{left:467.580000px;}
.x66_c00369{left:469.080000px;}
.xc8_c00369{left:470.580000px;}
.x1f_c00369{left:474.420000px;}
.xa2_c00369{left:475.500000px;}
.x15_c00369{left:478.920000px;}
.x59_c00369{left:485.580000px;}
.x35_c00369{left:488.580000px;}
.x79_c00369{left:490.920000px;}
.xad_c00369{left:493.920000px;}
.x9_c00369{left:496.500000px;}
.x92_c00369{left:498.000000px;}
.x82_c00369{left:499.500000px;}
.x67_c00369{left:500.580000px;}
.x2f_c00369{left:502.080000px;}
.xdc_c00369{left:504.420000px;}
.xda_c00369{left:507.000000px;}
.x36_c00369{left:508.500000px;}
.x57_c00369{left:511.500000px;}
.x20_c00369{left:513.420000px;}
.x2a_c00369{left:515.580000px;}
.xa_c00369{left:518.580000px;}
.x68_c00369{left:520.920000px;}
.xc0_c00369{left:527.580000px;}
.xd1_c00369{left:529.500000px;}
.x3c_c00369{left:532.080000px;}
.xb9_c00369{left:535.080000px;}
.x21_c00369{left:539.580000px;}
.x43_c00369{left:543.000000px;}
.x93_c00369{left:544.500000px;}
.x16_c00369{left:546.000000px;}
.x69_c00369{left:547.920000px;}
.xc4_c00369{left:549.420000px;}
.xa3_c00369{left:550.920000px;}
.xba_c00369{left:553.500000px;}
.x4f_c00369{left:558.000000px;}
.x72_c00369{left:559.500000px;}
.x3d_c00369{left:561.855000px;}
.x5a_c00369{left:563.775000px;}
.x44_c00369{left:570.000000px;}
.x8b_c00369{left:571.500000px;}
.xdd_c00369{left:572.580000px;}
.x83_c00369{left:574.080000px;}
.xc9_c00369{left:575.580000px;}
.x7a_c00369{left:579.000000px;}
.x9b_c00369{left:581.580000px;}
.x30_c00369{left:583.275000px;}
.x3e_c00369{left:585.000000px;}
.xa4_c00369{left:586.500000px;}
.xb_c00369{left:587.580000px;}
.xb2_c00369{left:589.080000px;}
.x17_c00369{left:592.080000px;}
.x2b_c00369{left:597.000000px;}
.x6a_c00369{left:598.500000px;}
.x3f_c00369{left:599.580000px;}
.x5b_c00369{left:601.500000px;}
.x84_c00369{left:603.000000px;}
.xa5_c00369{left:606.420000px;}
.x58_c00369{left:615.000000px;}
.x7b_c00369{left:616.920000px;}
.xae_c00369{left:618.000000px;}
.x6b_c00369{left:621.000000px;}
.x8c_c00369{left:622.500000px;}
.x9c_c00369{left:628.500000px;}
.xa6_c00369{left:631.500000px;}
.x94_c00369{left:633.000000px;}
.x45_c00369{left:634.080000px;}
.xb3_c00369{left:636.000000px;}
.x73_c00369{left:637.500000px;}
.x8d_c00369{left:640.920000px;}
.xde_c00369{left:643.500000px;}
.x7c_c00369{left:645.000000px;}
.x18_c00369{left:646.920000px;}
.x5c_c00369{left:649.500000px;}
.x9d_c00369{left:655.500000px;}
.xca_c00369{left:656.775000px;}
.x22_c00369{left:658.080000px;}
.xc5_c00369{left:661.500000px;}
.x6c_c00369{left:664.500000px;}
.x8e_c00369{left:665.580000px;}
.xc_c00369{left:667.500000px;}
.x95_c00369{left:669.000000px;}
.xbb_c00369{left:670.500000px;}
.xb4_c00369{left:672.000000px;}
.x19_c00369{left:673.500000px;}
.xc1_c00369{left:674.580000px;}
.x46_c00369{left:682.275000px;}
.xd_c00369{left:684.000000px;}
.x23_c00369{left:688.080000px;}
.xa7_c00369{left:690.420000px;}
.x9e_c00369{left:691.500000px;}
.x5d_c00369{left:693.420000px;}
.x85_c00369{left:695.355000px;}
.xcb_c00369{left:697.500000px;}
.xd2_c00369{left:709.920000px;}
.xdf_c00369{left:713.580000px;}
.x96_c00369{left:717.000000px;}
.x47_c00369{left:718.500000px;}
.xd8_c00369{left:723.000000px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.ls0_c00369{letter-spacing:0.000000pt;}
.ws1_c00369{word-spacing:-3.887238pt;}
.ws0_c00369{word-spacing:-2.598654pt;}
.ws2_c00369{word-spacing:0.000000pt;}
.fs7_c00369{font-size:3.040000pt;}
.fs6_c00369{font-size:12.106667pt;}
.fs3_c00369{font-size:16.640000pt;}
.fs5_c00369{font-size:18.133333pt;}
.fs1_c00369{font-size:22.666667pt;}
.fs0_c00369{font-size:25.706667pt;}
.fs4_c00369{font-size:28.746667pt;}
.fs2_c00369{font-size:31.733333pt;}
.fs8_c00369{font-size:34.773333pt;}
.y0_c00369{bottom:0.000000pt;}
.y93_c00369{bottom:204.560000pt;}
.y92_c00369{bottom:205.693333pt;}
.y8f_c00369{bottom:221.106667pt;}
.y91_c00369{bottom:222.066667pt;}
.y8e_c00369{bottom:223.026667pt;}
.y90_c00369{bottom:223.973333pt;}
.y8d_c00369{bottom:237.693333pt;}
.y8a_c00369{bottom:238.440000pt;}
.y8c_c00369{bottom:239.226667pt;}
.y8b_c00369{bottom:240.360000pt;}
.y89_c00369{bottom:253.693333pt;}
.y85_c00369{bottom:255.773333pt;}
.y86_c00369{bottom:256.560000pt;}
.y88_c00369{bottom:256.733333pt;}
.y87_c00369{bottom:257.693333pt;}
.y84_c00369{bottom:272.360000pt;}
.y81_c00369{bottom:273.106667pt;}
.y82_c00369{bottom:274.440000pt;}
.y80_c00369{bottom:275.026667pt;}
.y83_c00369{bottom:275.226667pt;}
.y7b_c00369{bottom:290.440000pt;}
.y7c_c00369{bottom:291.773333pt;}
.y7e_c00369{bottom:292.360000pt;}
.y7f_c00369{bottom:292.560000pt;}
.y7d_c00369{bottom:293.693333pt;}
.y77_c00369{bottom:309.106667pt;}
.y79_c00369{bottom:309.893333pt;}
.y7a_c00369{bottom:310.066667pt;}
.y78_c00369{bottom:311.026667pt;}
.y75_c00369{bottom:324.360000pt;}
.y76_c00369{bottom:326.440000pt;}
.y74_c00369{bottom:328.360000pt;}
.y73_c00369{bottom:342.826667pt;}
.y71_c00369{bottom:343.773333pt;}
.y6f_c00369{bottom:344.560000pt;}
.y72_c00369{bottom:344.733333pt;}
.y70_c00369{bottom:345.693333pt;}
.y6e_c00369{bottom:360.733333pt;}
.y6d_c00369{bottom:361.106667pt;}
.y6c_c00369{bottom:363.026667pt;}
.y6a_c00369{bottom:377.493333pt;}
.y6b_c00369{bottom:378.440000pt;}
.y68_c00369{bottom:379.773333pt;}
.y67_c00369{bottom:380.360000pt;}
.y69_c00369{bottom:380.560000pt;}
.y66_c00369{bottom:381.693333pt;}
.y65_c00369{bottom:396.733333pt;}
.y64_c00369{bottom:397.693333pt;}
.y63_c00369{bottom:397.893333pt;}
.y62_c00369{bottom:399.026667pt;}
.y61_c00369{bottom:414.266667pt;}
.y5e_c00369{bottom:414.440000pt;}
.y60_c00369{bottom:415.026667pt;}
.y5f_c00369{bottom:415.226667pt;}
.y5d_c00369{bottom:416.360000pt;}
.y5c_c00369{bottom:430.826667pt;}
.y5b_c00369{bottom:431.773333pt;}
.y5a_c00369{bottom:432.560000pt;}
.y59_c00369{bottom:433.693333pt;}
.y56_c00369{bottom:447.973333pt;}
.y58_c00369{bottom:449.693333pt;}
.y57_c00369{bottom:449.893333pt;}
.y55_c00369{bottom:451.026667pt;}
.y52_c00369{bottom:466.440000pt;}
.y50_c00369{bottom:468.360000pt;}
.y51_c00369{bottom:468.373333pt;}
.y53_c00369{bottom:468.560000pt;}
.y54_c00369{bottom:469.306667pt;}
.y4e_c00369{bottom:483.773333pt;}
.y4f_c00369{bottom:484.733333pt;}
.y4d_c00369{bottom:499.400000pt;}
.y4b_c00369{bottom:501.106667pt;}
.y4c_c00369{bottom:501.493333pt;}
.y4a_c00369{bottom:502.066667pt;}
.y49_c00369{bottom:503.026667pt;}
.y47_c00369{bottom:518.440000pt;}
.y45_c00369{bottom:519.400000pt;}
.y42_c00369{bottom:519.773333pt;}
.y43_c00369{bottom:520.360000pt;}
.y46_c00369{bottom:520.560000pt;}
.y48_c00369{bottom:521.306667pt;}
.y44_c00369{bottom:521.693333pt;}
.y41_c00369{bottom:537.106667pt;}
.y3f_c00369{bottom:537.693333pt;}
.y3e_c00369{bottom:537.893333pt;}
.y40_c00369{bottom:538.640000pt;}
.y3d_c00369{bottom:539.026667pt;}
.y3b_c00369{bottom:552.360000pt;}
.y3c_c00369{bottom:554.440000pt;}
.y3a_c00369{bottom:555.400000pt;}
.y39_c00369{bottom:555.973333pt;}
.y38_c00369{bottom:556.360000pt;}
.y36_c00369{bottom:571.773333pt;}
.y37_c00369{bottom:572.560000pt;}
.y34_c00369{bottom:573.693333pt;}
.y35_c00369{bottom:573.706667pt;}
.y32_c00369{bottom:588.160000pt;}
.y30_c00369{bottom:589.106667pt;}
.y31_c00369{bottom:590.066667pt;}
.y33_c00369{bottom:591.026667pt;}
.y2e_c00369{bottom:606.440000pt;}
.y2d_c00369{bottom:606.826667pt;}
.y2b_c00369{bottom:607.226667pt;}
.y2f_c00369{bottom:607.400000pt;}
.y2a_c00369{bottom:608.360000pt;}
.y2c_c00369{bottom:608.373333pt;}
.y29_c00369{bottom:623.026667pt;}
.y26_c00369{bottom:623.773333pt;}
.y28_c00369{bottom:624.733333pt;}
.y27_c00369{bottom:625.706667pt;}
.y24_c00369{bottom:642.440000pt;}
.y25_c00369{bottom:643.026667pt;}
.y23_c00369{bottom:644.360000pt;}
.y21_c00369{bottom:658.826667pt;}
.y1e_c00369{bottom:659.773333pt;}
.y22_c00369{bottom:661.306667pt;}
.y20_c00369{bottom:661.693333pt;}
.y1f_c00369{bottom:661.706667pt;}
.y1d_c00369{bottom:682.640000pt;}
.y19_c00369{bottom:683.400000pt;}
.y1b_c00369{bottom:684.360000pt;}
.y1a_c00369{bottom:685.306667pt;}
.y1c_c00369{bottom:685.506667pt;}
.y17_c00369{bottom:699.973333pt;}
.y16_c00369{bottom:700.933333pt;}
.y18_c00369{bottom:701.693333pt;}
.y15_c00369{bottom:702.640000pt;}
.y13_c00369{bottom:719.773333pt;}
.y14_c00369{bottom:722.640000pt;}
.y12_c00369{bottom:757.693333pt;}
.y10_c00369{bottom:799.773333pt;}
.y11_c00369{bottom:800.560000pt;}
.ye_c00369{bottom:801.306667pt;}
.yf_c00369{bottom:801.693333pt;}
.yd_c00369{bottom:816.733333pt;}
.yc_c00369{bottom:817.106667pt;}
.ya_c00369{bottom:817.693333pt;}
.yb_c00369{bottom:819.026667pt;}
.y9_c00369{bottom:834.440000pt;}
.y8_c00369{bottom:835.400000pt;}
.y6_c00369{bottom:835.973333pt;}
.y7_c00369{bottom:836.360000pt;}
.y4_c00369{bottom:851.773333pt;}
.y5_c00369{bottom:852.560000pt;}
.y3_c00369{bottom:853.306667pt;}
.y2_c00369{bottom:853.693333pt;}
.y1_c00369{bottom:888.360000pt;}
.h8_c00369{height:3.739141pt;}
.h7_c00369{height:14.890964pt;}
.h4_c00369{height:20.466875pt;}
.h6_c00369{height:22.303646pt;}
.h2_c00369{height:27.879557pt;}
.h1_c00369{height:31.618698pt;}
.h5_c00369{height:35.357839pt;}
.h3_c00369{height:39.031380pt;}
.h9_c00369{height:42.770521pt;}
.h0_c00369{height:1186.666667pt;}
.w0_c00369{width:782.666667pt;}
.x0_c00369{left:0.000000pt;}
.xaf_c00369{left:134.666667pt;}
.x5e_c00369{left:136.000000pt;}
.xe_c00369{left:137.333333pt;}
.x48_c00369{left:138.666667pt;}
.x37_c00369{left:149.333333pt;}
.x50_c00369{left:150.666667pt;}
.x3_c00369{left:152.000000pt;}
.xb0_c00369{left:153.706667pt;}
.xf_c00369{left:155.040000pt;}
.x5f_c00369{left:159.040000pt;}
.x86_c00369{left:160.000000pt;}
.x24_c00369{left:164.000000pt;}
.x1a_c00369{left:165.333333pt;}
.xd4_c00369{left:169.333333pt;}
.xbc_c00369{left:176.000000pt;}
.x10_c00369{left:178.666667pt;}
.x4_c00369{left:180.960000pt;}
.x25_c00369{left:182.293333pt;}
.x8f_c00369{left:189.706667pt;}
.x40_c00369{left:191.040000pt;}
.x7d_c00369{left:193.333333pt;}
.xa8_c00369{left:201.333333pt;}
.x60_c00369{left:202.293333pt;}
.x6d_c00369{left:204.000000pt;}
.xcc_c00369{left:204.960000pt;}
.x74_c00369{left:209.333333pt;}
.xe0_c00369{left:214.666667pt;}
.xa9_c00369{left:217.333333pt;}
.x61_c00369{left:219.040000pt;}
.x6e_c00369{left:220.373333pt;}
.x87_c00369{left:222.666667pt;}
.x51_c00369{left:224.000000pt;}
.x5_c00369{left:225.706667pt;}
.xc6_c00369{left:226.666667pt;}
.x75_c00369{left:229.706667pt;}
.x38_c00369{left:230.666667pt;}
.x4c_c00369{left:233.333333pt;}
.x11_c00369{left:234.666667pt;}
.xb5_c00369{left:236.373333pt;}
.x49_c00369{left:238.293333pt;}
.x2e_c00369{left:240.373333pt;}
.x6f_c00369{left:241.333333pt;}
.x62_c00369{left:242.666667pt;}
.x26_c00369{left:244.000000pt;}
.x97_c00369{left:245.333333pt;}
.xbd_c00369{left:248.960000pt;}
.x1b_c00369{left:252.000000pt;}
.xd9_c00369{left:253.333333pt;}
.x7e_c00369{left:256.000000pt;}
.x70_c00369{left:257.333333pt;}
.xb6_c00369{left:258.666667pt;}
.x4a_c00369{left:259.626667pt;}
.x90_c00369{left:261.333333pt;}
.x12_c00369{left:262.293333pt;}
.x52_c00369{left:269.333333pt;}
.xc2_c00369{left:272.960000pt;}
.xaa_c00369{left:274.666667pt;}
.x27_c00369{left:276.000000pt;}
.x13_c00369{left:278.293333pt;}
.xcd_c00369{left:279.626667pt;}
.x39_c00369{left:280.960000pt;}
.x98_c00369{left:282.293333pt;}
.xe1_c00369{left:285.706667pt;}
.x76_c00369{left:286.666667pt;}
.x53_c00369{left:287.626667pt;}
.x1c_c00369{left:289.333333pt;}
.xab_c00369{left:291.040000pt;}
.x9f_c00369{left:292.000000pt;}
.xd3_c00369{left:295.040000pt;}
.x7f_c00369{left:296.000000pt;}
.xd5_c00369{left:297.706667pt;}
.xc7_c00369{left:298.666667pt;}
.x1_c00369{left:299.626667pt;}
.x6_c00369{left:300.960000pt;}
.x31_c00369{left:304.000000pt;}
.x63_c00369{left:304.960000pt;}
.x80_c00369{left:308.000000pt;}
.x4d_c00369{left:309.133333pt;}
.x54_c00369{left:311.626667pt;}
.x4b_c00369{left:314.666667pt;}
.xac_c00369{left:317.333333pt;}
.x7_c00369{left:319.040000pt;}
.x64_c00369{left:320.960000pt;}
.xd6_c00369{left:322.666667pt;}
.x2c_c00369{left:324.573333pt;}
.xa0_c00369{left:327.040000pt;}
.x32_c00369{left:328.373333pt;}
.xb7_c00369{left:329.333333pt;}
.xb1_c00369{left:330.666667pt;}
.x99_c00369{left:337.333333pt;}
.x3a_c00369{left:339.040000pt;}
.xce_c00369{left:340.373333pt;}
.xbe_c00369{left:341.333333pt;}
.xdb_c00369{left:342.666667pt;}
.x8_c00369{left:343.626667pt;}
.x41_c00369{left:344.960000pt;}
.x1d_c00369{left:347.626667pt;}
.x2_c00369{left:348.573333pt;}
.x88_c00369{left:349.706667pt;}
.x28_c00369{left:351.040000pt;}
.x55_c00369{left:352.000000pt;}
.x91_c00369{left:358.666667pt;}
.x65_c00369{left:361.333333pt;}
.xd7_c00369{left:362.293333pt;}
.x33_c00369{left:365.333333pt;}
.xcf_c00369{left:367.040000pt;}
.x3b_c00369{left:370.666667pt;}
.x77_c00369{left:373.706667pt;}
.x1e_c00369{left:374.666667pt;}
.x4e_c00369{left:376.000000pt;}
.x14_c00369{left:376.960000pt;}
.x2d_c00369{left:378.666667pt;}
.xa1_c00369{left:382.666667pt;}
.x71_c00369{left:384.960000pt;}
.x89_c00369{left:386.666667pt;}
.xc3_c00369{left:389.906667pt;}
.xbf_c00369{left:392.960000pt;}
.x81_c00369{left:394.293333pt;}
.xb8_c00369{left:396.960000pt;}
.x9a_c00369{left:398.466667pt;}
.x78_c00369{left:400.373333pt;}
.x29_c00369{left:403.040000pt;}
.xd0_c00369{left:408.373333pt;}
.x8a_c00369{left:410.666667pt;}
.x42_c00369{left:412.573333pt;}
.x56_c00369{left:413.706667pt;}
.x34_c00369{left:415.626667pt;}
.x66_c00369{left:416.960000pt;}
.xc8_c00369{left:418.293333pt;}
.x1f_c00369{left:421.706667pt;}
.xa2_c00369{left:422.666667pt;}
.x15_c00369{left:425.706667pt;}
.x59_c00369{left:431.626667pt;}
.x35_c00369{left:434.293333pt;}
.x79_c00369{left:436.373333pt;}
.xad_c00369{left:439.040000pt;}
.x9_c00369{left:441.333333pt;}
.x92_c00369{left:442.666667pt;}
.x82_c00369{left:444.000000pt;}
.x67_c00369{left:444.960000pt;}
.x2f_c00369{left:446.293333pt;}
.xdc_c00369{left:448.373333pt;}
.xda_c00369{left:450.666667pt;}
.x36_c00369{left:452.000000pt;}
.x57_c00369{left:454.666667pt;}
.x20_c00369{left:456.373333pt;}
.x2a_c00369{left:458.293333pt;}
.xa_c00369{left:460.960000pt;}
.x68_c00369{left:463.040000pt;}
.xc0_c00369{left:468.960000pt;}
.xd1_c00369{left:470.666667pt;}
.x3c_c00369{left:472.960000pt;}
.xb9_c00369{left:475.626667pt;}
.x21_c00369{left:479.626667pt;}
.x43_c00369{left:482.666667pt;}
.x93_c00369{left:484.000000pt;}
.x16_c00369{left:485.333333pt;}
.x69_c00369{left:487.040000pt;}
.xc4_c00369{left:488.373333pt;}
.xa3_c00369{left:489.706667pt;}
.xba_c00369{left:492.000000pt;}
.x4f_c00369{left:496.000000pt;}
.x72_c00369{left:497.333333pt;}
.x3d_c00369{left:499.426667pt;}
.x5a_c00369{left:501.133333pt;}
.x44_c00369{left:506.666667pt;}
.x8b_c00369{left:508.000000pt;}
.xdd_c00369{left:508.960000pt;}
.x83_c00369{left:510.293333pt;}
.xc9_c00369{left:511.626667pt;}
.x7a_c00369{left:514.666667pt;}
.x9b_c00369{left:516.960000pt;}
.x30_c00369{left:518.466667pt;}
.x3e_c00369{left:520.000000pt;}
.xa4_c00369{left:521.333333pt;}
.xb_c00369{left:522.293333pt;}
.xb2_c00369{left:523.626667pt;}
.x17_c00369{left:526.293333pt;}
.x2b_c00369{left:530.666667pt;}
.x6a_c00369{left:532.000000pt;}
.x3f_c00369{left:532.960000pt;}
.x5b_c00369{left:534.666667pt;}
.x84_c00369{left:536.000000pt;}
.xa5_c00369{left:539.040000pt;}
.x58_c00369{left:546.666667pt;}
.x7b_c00369{left:548.373333pt;}
.xae_c00369{left:549.333333pt;}
.x6b_c00369{left:552.000000pt;}
.x8c_c00369{left:553.333333pt;}
.x9c_c00369{left:558.666667pt;}
.xa6_c00369{left:561.333333pt;}
.x94_c00369{left:562.666667pt;}
.x45_c00369{left:563.626667pt;}
.xb3_c00369{left:565.333333pt;}
.x73_c00369{left:566.666667pt;}
.x8d_c00369{left:569.706667pt;}
.xde_c00369{left:572.000000pt;}
.x7c_c00369{left:573.333333pt;}
.x18_c00369{left:575.040000pt;}
.x5c_c00369{left:577.333333pt;}
.x9d_c00369{left:582.666667pt;}
.xca_c00369{left:583.800000pt;}
.x22_c00369{left:584.960000pt;}
.xc5_c00369{left:588.000000pt;}
.x6c_c00369{left:590.666667pt;}
.x8e_c00369{left:591.626667pt;}
.xc_c00369{left:593.333333pt;}
.x95_c00369{left:594.666667pt;}
.xbb_c00369{left:596.000000pt;}
.xb4_c00369{left:597.333333pt;}
.x19_c00369{left:598.666667pt;}
.xc1_c00369{left:599.626667pt;}
.x46_c00369{left:606.466667pt;}
.xd_c00369{left:608.000000pt;}
.x23_c00369{left:611.626667pt;}
.xa7_c00369{left:613.706667pt;}
.x9e_c00369{left:614.666667pt;}
.x5d_c00369{left:616.373333pt;}
.x85_c00369{left:618.093333pt;}
.xcb_c00369{left:620.000000pt;}
.xd2_c00369{left:631.040000pt;}
.xdf_c00369{left:634.293333pt;}
.x96_c00369{left:637.333333pt;}
.x47_c00369{left:638.666667pt;}
.xd8_c00369{left:642.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_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_da83b5f1fe2d9bc3aaf1e857.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m46_c00370{transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);}
.mca_c00370{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m65_c00370{transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);}
.mfa_c00370{transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);}
.me1_c00370{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m107_c00370{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m13_c00370{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.mab_c00370{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m14_c00370{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m68_c00370{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m72_c00370{transform:matrix(0.377087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377087,0.000000,0.000000,0.250000,0,0);}
.m105_c00370{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m101_c00370{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m104_c00370{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m77_c00370{transform:matrix(0.385900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385900,0.000000,0.000000,0.250000,0,0);}
.mdd_c00370{transform:matrix(0.389187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389187,0.000000,0.000000,0.250000,0,0);}
.maa_c00370{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mee_c00370{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m4d_c00370{transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);}
.m9d_c00370{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m64_c00370{transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);}
.md1_c00370{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m4a_c00370{transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);}
.m10f_c00370{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.mb5_c00370{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.mbb_c00370{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m108_c00370{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.mf4_c00370{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m111_c00370{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.me5_c00370{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mf6_c00370{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.mb6_c00370{transform:matrix(0.407209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407209,0.000000,0.000000,0.250000,0,0);}
.m56_c00370{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.mbe_c00370{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.me6_c00370{transform:matrix(0.409126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409126,0.000000,0.000000,0.250000,0,0);}
.m41_c00370{transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);}
.mbf_c00370{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.ma_c00370{transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);}
.mff_c00370{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.me8_c00370{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m10d_c00370{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m87_c00370{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m1e_c00370{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.m71_c00370{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m90_c00370{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m3c_c00370{transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);}
.mec_c00370{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m76_c00370{transform:matrix(0.418831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418831,0.000000,0.000000,0.250000,0,0);}
.m9e_c00370{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mf1_c00370{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m103_c00370{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.me0_c00370{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m45_c00370{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m2f_c00370{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.mdc_c00370{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mde_c00370{transform:matrix(0.424080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424080,0.000000,0.000000,0.250000,0,0);}
.mb7_c00370{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.mb_c00370{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m3_c00370{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m78_c00370{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m89_c00370{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m9b_c00370{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.mce_c00370{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.mda_c00370{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m24_c00370{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m10b_c00370{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m6f_c00370{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m42_c00370{transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);}
.md3_c00370{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m1f_c00370{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.mfe_c00370{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m50_c00370{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mea_c00370{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m25_c00370{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m35_c00370{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.md7_c00370{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.mf9_c00370{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m20_c00370{transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);}
.mb8_c00370{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m106_c00370{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m115_c00370{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.m99_c00370{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.mdf_c00370{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m94_c00370{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.mcb_c00370{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m69_c00370{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m7d_c00370{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.meb_c00370{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.md4_c00370{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.mf0_c00370{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m60_c00370{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m44_c00370{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.md9_c00370{transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);}
.me9_c00370{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m66_c00370{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m83_c00370{transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);}
.m2c_c00370{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m80_c00370{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m61_c00370{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.mba_c00370{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m8a_c00370{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.mcf_c00370{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m51_c00370{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m62_c00370{transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);}
.m73_c00370{transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);}
.m4e_c00370{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m5a_c00370{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m38_c00370{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m74_c00370{transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);}
.m36_c00370{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m102_c00370{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.m30_c00370{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m32_c00370{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m54_c00370{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m6a_c00370{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mc5_c00370{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.mf2_c00370{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m19_c00370{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m39_c00370{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.me_c00370{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m1_c00370{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m10_c00370{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.md8_c00370{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m16_c00370{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m59_c00370{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);}
.m6d_c00370{transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);}
.mf7_c00370{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m10e_c00370{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.mac_c00370{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m43_c00370{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.md2_c00370{transform:matrix(0.507780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507780,0.000000,0.000000,0.250000,0,0);}
.m109_c00370{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m3e_c00370{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m92_c00370{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mcc_c00370{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.mc0_c00370{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.mc3_c00370{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mef_c00370{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.ma6_c00370{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m5c_c00370{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.m28_c00370{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m85_c00370{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.mb3_c00370{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m27_c00370{transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);}
.m100_c00370{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m8_c00370{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m95_c00370{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m113_c00370{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.me4_c00370{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m5e_c00370{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.mbc_c00370{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m21_c00370{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);}
.m18_c00370{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m84_c00370{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mb9_c00370{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m110_c00370{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mae_c00370{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.md5_c00370{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m82_c00370{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m6e_c00370{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.m7b_c00370{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m7c_c00370{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m6c_c00370{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m8e_c00370{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mc8_c00370{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mf_c00370{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m7f_c00370{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m5f_c00370{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.med_c00370{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.ma3_c00370{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.maf_c00370{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m58_c00370{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_c00370{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m12_c00370{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m70_c00370{transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);}
.mb2_c00370{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m55_c00370{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.ma7_c00370{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m6_c00370{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m22_c00370{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m98_c00370{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.ma9_c00370{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m112_c00370{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m8f_c00370{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.ma2_c00370{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.me2_c00370{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mdb_c00370{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m4c_c00370{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.mf8_c00370{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m88_c00370{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m9f_c00370{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mfd_c00370{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.mb0_c00370{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m2e_c00370{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.ma0_c00370{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mad_c00370{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.md_c00370{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mbd_c00370{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m4f_c00370{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.mb4_c00370{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m91_c00370{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m93_c00370{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mc9_c00370{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m8d_c00370{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.me7_c00370{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m53_c00370{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.m9_c00370{transform:matrix(0.573284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573284,0.000000,0.000000,0.250000,0,0);}
.mc7_c00370{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mc1_c00370{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m5b_c00370{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m10c_c00370{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.md6_c00370{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m47_c00370{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m116_c00370{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.m114_c00370{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m10a_c00370{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m15_c00370{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m40_c00370{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m33_c00370{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m3b_c00370{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);}
.m97_c00370{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m81_c00370{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m9c_c00370{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m5d_c00370{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.m29_c00370{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.mfc_c00370{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m6b_c00370{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m96_c00370{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m7a_c00370{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);}
.ma5_c00370{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m37_c00370{transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);}
.m63_c00370{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m4b_c00370{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mf3_c00370{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.m49_c00370{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.mfb_c00370{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m0_c00370{transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);}
.md0_c00370{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m31_c00370{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.m5_c00370{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m1b_c00370{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_c00370{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m1c_c00370{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m75_c00370{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m3f_c00370{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m26_c00370{transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);}
.m34_c00370{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m1d_c00370{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m3d_c00370{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m2b_c00370{transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);}
.m3a_c00370{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m48_c00370{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m52_c00370{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.m57_c00370{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m1a_c00370{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m23_c00370{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m2d_c00370{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mf5_c00370{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m7_c00370{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.mc_c00370{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);}
.m67_c00370{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m9a_c00370{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m2a_c00370{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m17_c00370{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.ma8_c00370{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m7e_c00370{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.me3_c00370{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mcd_c00370{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.ma4_c00370{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m117_c00370{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.mc2_c00370{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mc6_c00370{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m8c_c00370{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.m86_c00370{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.mb1_c00370{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m8b_c00370{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.m4_c00370{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m2_c00370{transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);}
.m11_c00370{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m79_c00370{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.v0_c00370{vertical-align:0.000000px;}
.v1_c00370{vertical-align:6.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:-6.011847px;}
.ws2_c00370{word-spacing:-5.804487px;}
.ws1_c00370{word-spacing:-4.373143px;}
.ws3_c00370{word-spacing:0.000000px;}
.fc0_c00370{color:transparent;}
.fs7_c00370{font-size:3.420000px;}
.fs2_c00370{font-size:13.620000px;}
.fs5_c00370{font-size:18.720000px;}
.fs0_c00370{font-size:20.400000px;}
.fs4_c00370{font-size:25.500000px;}
.fs1_c00370{font-size:28.920000px;}
.fs3_c00370{font-size:32.340000px;}
.fs6_c00370{font-size:35.700000px;}
.fs8_c00370{font-size:39.120000px;}
.y0_c00370{bottom:0.000000px;}
.yee_c00370{bottom:254.130000px;}
.yed_c00370{bottom:255.405000px;}
.yeb_c00370{bottom:271.245000px;}
.yea_c00370{bottom:272.745000px;}
.ye9_c00370{bottom:273.630000px;}
.ye8_c00370{bottom:273.825000px;}
.yec_c00370{bottom:274.470000px;}
.ye7_c00370{bottom:274.905000px;}
.ye6_c00370{bottom:292.245000px;}
.ye4_c00370{bottom:293.745000px;}
.ye5_c00370{bottom:294.405000px;}
.ye1_c00370{bottom:311.745000px;}
.ye2_c00370{bottom:313.905000px;}
.ye3_c00370{bottom:314.970000px;}
.yde_c00370{bottom:330.405000px;}
.ye0_c00370{bottom:332.325000px;}
.ydc_c00370{bottom:332.745000px;}
.ydd_c00370{bottom:333.405000px;}
.ydf_c00370{bottom:333.630000px;}
.ydb_c00370{bottom:334.905000px;}
.yd7_c00370{bottom:352.245000px;}
.yd9_c00370{bottom:352.470000px;}
.yd8_c00370{bottom:352.905000px;}
.yda_c00370{bottom:353.970000px;}
.yd6_c00370{bottom:354.405000px;}
.yd5_c00370{bottom:370.245000px;}
.yd4_c00370{bottom:371.325000px;}
.ycf_c00370{bottom:371.745000px;}
.yd2_c00370{bottom:372.405000px;}
.yd3_c00370{bottom:372.630000px;}
.yd0_c00370{bottom:373.470000px;}
.yd1_c00370{bottom:373.905000px;}
.ycb_c00370{bottom:389.745000px;}
.yc9_c00370{bottom:390.405000px;}
.yce_c00370{bottom:391.245000px;}
.ycc_c00370{bottom:392.130000px;}
.yca_c00370{bottom:392.325000px;}
.yc8_c00370{bottom:393.405000px;}
.ycd_c00370{bottom:394.470000px;}
.yc5_c00370{bottom:410.745000px;}
.yc6_c00370{bottom:411.630000px;}
.yc7_c00370{bottom:411.825000px;}
.yc3_c00370{bottom:412.905000px;}
.yc4_c00370{bottom:413.130000px;}
.yc2_c00370{bottom:427.905000px;}
.yc0_c00370{bottom:430.245000px;}
.yc1_c00370{bottom:431.325000px;}
.ybf_c00370{bottom:432.405000px;}
.ybd_c00370{bottom:449.745000px;}
.ybe_c00370{bottom:450.825000px;}
.ybc_c00370{bottom:451.905000px;}
.yb7_c00370{bottom:468.405000px;}
.yba_c00370{bottom:469.245000px;}
.ybb_c00370{bottom:469.680000px;}
.yb6_c00370{bottom:470.745000px;}
.yb8_c00370{bottom:471.405000px;}
.yb9_c00370{bottom:471.630000px;}
.yb4_c00370{bottom:488.745000px;}
.yb3_c00370{bottom:489.180000px;}
.yb1_c00370{bottom:490.245000px;}
.yb5_c00370{bottom:490.905000px;}
.yb2_c00370{bottom:492.405000px;}
.yb0_c00370{bottom:508.905000px;}
.yaf_c00370{bottom:509.745000px;}
.yae_c00370{bottom:511.905000px;}
.ya9_c00370{bottom:528.180000px;}
.yaa_c00370{bottom:529.245000px;}
.yac_c00370{bottom:530.130000px;}
.yad_c00370{bottom:530.325000px;}
.yab_c00370{bottom:531.405000px;}
.ya7_c00370{bottom:549.630000px;}
.ya5_c00370{bottom:549.825000px;}
.ya8_c00370{bottom:550.470000px;}
.ya6_c00370{bottom:550.905000px;}
.ya3_c00370{bottom:567.405000px;}
.ya1_c00370{bottom:568.245000px;}
.ya2_c00370{bottom:570.405000px;}
.ya4_c00370{bottom:570.630000px;}
.ya0_c00370{bottom:571.905000px;}
.y9d_c00370{bottom:587.745000px;}
.y9b_c00370{bottom:588.180000px;}
.y9e_c00370{bottom:588.825000px;}
.y9a_c00370{bottom:589.245000px;}
.y9f_c00370{bottom:589.905000px;}
.y99_c00370{bottom:590.130000px;}
.y9c_c00370{bottom:591.405000px;}
.y98_c00370{bottom:608.325000px;}
.y97_c00370{bottom:609.405000px;}
.y96_c00370{bottom:609.630000px;}
.y95_c00370{bottom:610.905000px;}
.y91_c00370{bottom:627.405000px;}
.y94_c00370{bottom:628.245000px;}
.y93_c00370{bottom:629.130000px;}
.y92_c00370{bottom:629.970000px;}
.y90_c00370{bottom:630.405000px;}
.y8e_c00370{bottom:645.405000px;}
.y8c_c00370{bottom:646.470000px;}
.y8d_c00370{bottom:647.745000px;}
.y8f_c00370{bottom:648.630000px;}
.y8b_c00370{bottom:649.050000px;}
.y8a_c00370{bottom:649.905000px;}
.y87_c00370{bottom:666.405000px;}
.y88_c00370{bottom:667.245000px;}
.y86_c00370{bottom:669.405000px;}
.y89_c00370{bottom:669.630000px;}
.y84_c00370{bottom:686.745000px;}
.y82_c00370{bottom:688.245000px;}
.y83_c00370{bottom:688.905000px;}
.y85_c00370{bottom:689.970000px;}
.y81_c00370{bottom:690.405000px;}
.y7f_c00370{bottom:706.245000px;}
.y80_c00370{bottom:707.325000px;}
.y7b_c00370{bottom:707.745000px;}
.y7d_c00370{bottom:708.405000px;}
.y7e_c00370{bottom:708.630000px;}
.y7c_c00370{bottom:709.905000px;}
.y7a_c00370{bottom:726.825000px;}
.y74_c00370{bottom:727.245000px;}
.y77_c00370{bottom:727.905000px;}
.y79_c00370{bottom:728.130000px;}
.y76_c00370{bottom:728.970000px;}
.y78_c00370{bottom:729.405000px;}
.y75_c00370{bottom:729.420000px;}
.y70_c00370{bottom:752.550000px;}
.y72_c00370{bottom:753.405000px;}
.y71_c00370{bottom:753.825000px;}
.y73_c00370{bottom:754.470000px;}
.y6d_c00370{bottom:754.905000px;}
.y6f_c00370{bottom:755.550000px;}
.y6e_c00370{bottom:755.970000px;}
.y6c_c00370{bottom:767.550000px;}
.y6b_c00370{bottom:768.825000px;}
.y69_c00370{bottom:769.905000px;}
.y68_c00370{bottom:770.130000px;}
.y6a_c00370{bottom:770.970000px;}
.y67_c00370{bottom:783.405000px;}
.y66_c00370{bottom:784.905000px;}
.y64_c00370{bottom:797.325000px;}
.y5f_c00370{bottom:797.970000px;}
.y61_c00370{bottom:798.405000px;}
.y60_c00370{bottom:798.825000px;}
.y63_c00370{bottom:799.470000px;}
.y65_c00370{bottom:799.695000px;}
.y5e_c00370{bottom:799.905000px;}
.y5c_c00370{bottom:800.130000px;}
.y62_c00370{bottom:800.550000px;}
.y5d_c00370{bottom:800.970000px;}
.y5b_c00370{bottom:812.325000px;}
.y5a_c00370{bottom:814.470000px;}
.y59_c00370{bottom:814.695000px;}
.y58_c00370{bottom:826.470000px;}
.y54_c00370{bottom:827.550000px;}
.y57_c00370{bottom:828.405000px;}
.y56_c00370{bottom:828.630000px;}
.y55_c00370{bottom:829.470000px;}
.y53_c00370{bottom:841.905000px;}
.y4e_c00370{bottom:842.325000px;}
.y52_c00370{bottom:843.405000px;}
.y4f_c00370{bottom:844.470000px;}
.y50_c00370{bottom:844.695000px;}
.y51_c00370{bottom:845.550000px;}
.y4b_c00370{bottom:857.325000px;}
.y4c_c00370{bottom:858.405000px;}
.y4a_c00370{bottom:858.630000px;}
.y4d_c00370{bottom:859.050000px;}
.y49_c00370{bottom:859.470000px;}
.y48_c00370{bottom:860.550000px;}
.y44_c00370{bottom:872.325000px;}
.y45_c00370{bottom:873.405000px;}
.y46_c00370{bottom:873.630000px;}
.y47_c00370{bottom:875.550000px;}
.y3f_c00370{bottom:886.470000px;}
.y42_c00370{bottom:886.905000px;}
.y41_c00370{bottom:887.130000px;}
.y40_c00370{bottom:887.970000px;}
.y43_c00370{bottom:889.050000px;}
.y3e_c00370{bottom:901.905000px;}
.y3b_c00370{bottom:902.970000px;}
.y3c_c00370{bottom:903.195000px;}
.y3d_c00370{bottom:904.050000px;}
.y39_c00370{bottom:915.825000px;}
.y3a_c00370{bottom:916.905000px;}
.y38_c00370{bottom:917.130000px;}
.y37_c00370{bottom:917.970000px;}
.y36_c00370{bottom:919.050000px;}
.y35_c00370{bottom:930.825000px;}
.y32_c00370{bottom:931.905000px;}
.y33_c00370{bottom:932.130000px;}
.y34_c00370{bottom:932.970000px;}
.y2f_c00370{bottom:945.825000px;}
.y2b_c00370{bottom:946.050000px;}
.y2c_c00370{bottom:946.905000px;}
.y2d_c00370{bottom:947.130000px;}
.y31_c00370{bottom:947.550000px;}
.y2e_c00370{bottom:947.970000px;}
.y30_c00370{bottom:949.050000px;}
.y2a_c00370{bottom:960.825000px;}
.y28_c00370{bottom:961.905000px;}
.y26_c00370{bottom:962.550000px;}
.y27_c00370{bottom:962.970000px;}
.y29_c00370{bottom:963.195000px;}
.y22_c00370{bottom:974.550000px;}
.y23_c00370{bottom:975.405000px;}
.y24_c00370{bottom:977.130000px;}
.y25_c00370{bottom:977.550000px;}
.y21_c00370{bottom:989.325000px;}
.y1e_c00370{bottom:990.405000px;}
.y20_c00370{bottom:991.470000px;}
.y1f_c00370{bottom:991.695000px;}
.y1d_c00370{bottom:992.550000px;}
.y1c_c00370{bottom:1003.905000px;}
.y19_c00370{bottom:1004.325000px;}
.y16_c00370{bottom:1004.550000px;}
.y18_c00370{bottom:1005.630000px;}
.y1b_c00370{bottom:1006.470000px;}
.y1a_c00370{bottom:1007.550000px;}
.y17_c00370{bottom:1007.970000px;}
.y14_c00370{bottom:1019.325000px;}
.y15_c00370{bottom:1020.405000px;}
.y13_c00370{bottom:1021.470000px;}
.y12_c00370{bottom:1021.695000px;}
.yf_c00370{bottom:1035.405000px;}
.ye_c00370{bottom:1035.630000px;}
.y10_c00370{bottom:1036.470000px;}
.y11_c00370{bottom:1037.550000px;}
.yd_c00370{bottom:1049.325000px;}
.yb_c00370{bottom:1050.405000px;}
.ya_c00370{bottom:1051.470000px;}
.yc_c00370{bottom:1051.695000px;}
.y8_c00370{bottom:1062.825000px;}
.y9_c00370{bottom:1063.905000px;}
.y4_c00370{bottom:1064.325000px;}
.y6_c00370{bottom:1064.970000px;}
.y5_c00370{bottom:1066.050000px;}
.y7_c00370{bottom:1066.470000px;}
.y3_c00370{bottom:1066.695000px;}
.y2_c00370{bottom:1099.905000px;}
.y1_c00370{bottom:1100.550000px;}
.h8_c00370{height:4.206533px;}
.h3_c00370{height:16.752334px;}
.h6_c00370{height:23.025234px;}
.h1_c00370{height:25.091602px;}
.h5_c00370{height:31.364502px;}
.h2_c00370{height:35.571035px;}
.h4_c00370{height:39.777568px;}
.ha_c00370{height:41.571035px;}
.h7_c00370{height:43.910303px;}
.h9_c00370{height:48.116836px;}
.h0_c00370{height:1335.000000px;}
.w0_c00370{width:880.500000px;}
.x0_c00370{left:0.000000px;}
.x13_c00370{left:151.500000px;}
.x85_c00370{left:153.000000px;}
.x105_c00370{left:154.080000px;}
.x25_c00370{left:163.500000px;}
.x19_c00370{left:165.000000px;}
.x3_c00370{left:166.080000px;}
.x8c_c00370{left:167.580000px;}
.xd5_c00370{left:172.920000px;}
.xbd_c00370{left:174.000000px;}
.x80_c00370{left:180.420000px;}
.xf1_c00370{left:181.500000px;}
.x4_c00370{left:183.000000px;}
.x9c_c00370{left:184.920000px;}
.x111_c00370{left:186.420000px;}
.x74_c00370{left:190.080000px;}
.x100_c00370{left:193.500000px;}
.x26_c00370{left:196.080000px;}
.x3f_c00370{left:199.500000px;}
.x94_c00370{left:202.500000px;}
.xc8_c00370{left:204.000000px;}
.x14_c00370{left:206.580000px;}
.x4f_c00370{left:208.920000px;}
.x31_c00370{left:211.080000px;}
.x5b_c00370{left:213.000000px;}
.x86_c00370{left:214.080000px;}
.xf2_c00370{left:215.580000px;}
.x9d_c00370{left:217.500000px;}
.x50_c00370{left:219.000000px;}
.x10e_c00370{left:220.500000px;}
.x27_c00370{left:223.080000px;}
.x73_c00370{left:224.355000px;}
.x106_c00370{left:226.500000px;}
.x65_c00370{left:228.000000px;}
.x28_c00370{left:229.500000px;}
.x5_c00370{left:231.000000px;}
.xd2_c00370{left:232.500000px;}
.x75_c00370{left:234.000000px;}
.xc9_c00370{left:236.580000px;}
.xb2_c00370{left:238.080000px;}
.x87_c00370{left:240.000000px;}
.xb8_c00370{left:241.080000px;}
.xe1_c00370{left:243.420000px;}
.x95_c00370{left:244.500000px;}
.x9e_c00370{left:246.420000px;}
.x112_c00370{left:247.920000px;}
.x6_c00370{left:249.000000px;}
.x44_c00370{left:250.500000px;}
.x1a_c00370{left:252.000000px;}
.x51_c00370{left:253.500000px;}
.x40_c00370{left:254.580000px;}
.x81_c00370{left:256.500000px;}
.x101_c00370{left:258.000000px;}
.x32_c00370{left:261.000000px;}
.x15_c00370{left:262.080000px;}
.x29_c00370{left:264.000000px;}
.x6f_c00370{left:265.500000px;}
.x76_c00370{left:267.000000px;}
.x5c_c00370{left:270.000000px;}
.x33_c00370{left:271.500000px;}
.x7_c00370{left:273.000000px;}
.x16_c00370{left:274.500000px;}
.x8d_c00370{left:276.000000px;}
.x1b_c00370{left:277.080000px;}
.xea_c00370{left:278.580000px;}
.x52_c00370{left:281.355000px;}
.xc3_c00370{left:283.500000px;}
.x36_c00370{left:285.000000px;}
.x63_c00370{left:286.920000px;}
.xaa_c00370{left:289.920000px;}
.x10f_c00370{left:292.500000px;}
.xb3_c00370{left:294.420000px;}
.x45_c00370{left:297.420000px;}
.xca_c00370{left:298.500000px;}
.x109_c00370{left:300.000000px;}
.xe6_c00370{left:303.000000px;}
.x8e_c00370{left:305.580000px;}
.x34_c00370{left:307.080000px;}
.x17_c00370{left:308.580000px;}
.x41_c00370{left:310.080000px;}
.xb9_c00370{left:312.000000px;}
.x37_c00370{left:313.500000px;}
.x5d_c00370{left:315.000000px;}
.xd9_c00370{left:316.500000px;}
.xab_c00370{left:318.420000px;}
.xeb_c00370{left:319.500000px;}
.xe2_c00370{left:320.775000px;}
.x42_c00370{left:322.500000px;}
.x5e_c00370{left:325.500000px;}
.x9f_c00370{left:328.920000px;}
.x2a_c00370{left:331.500000px;}
.xba_c00370{left:333.420000px;}
.x8_c00370{left:334.500000px;}
.x35_c00370{left:336.420000px;}
.x18_c00370{left:337.500000px;}
.x1c_c00370{left:339.000000px;}
.xf3_c00370{left:340.500000px;}
.x46_c00370{left:343.080000px;}
.x66_c00370{left:345.000000px;}
.xd6_c00370{left:346.500000px;}
.x5f_c00370{left:348.000000px;}
.x96_c00370{left:349.920000px;}
.xcb_c00370{left:351.000000px;}
.x8f_c00370{left:352.500000px;}
.x43_c00370{left:356.580000px;}
.x6e_c00370{left:358.920000px;}
.x64_c00370{left:360.420000px;}
.x53_c00370{left:361.920000px;}
.xec_c00370{left:364.080000px;}
.xbe_c00370{left:370.080000px;}
.x102_c00370{left:373.920000px;}
.x9_c00370{left:375.000000px;}
.x70_c00370{left:376.500000px;}
.x97_c00370{left:378.000000px;}
.x1_c00370{left:382.500000px;}
.x38_c00370{left:384.420000px;}
.x47_c00370{left:385.920000px;}
.x2b_c00370{left:387.420000px;}
.xbf_c00370{left:388.500000px;}
.x82_c00370{left:390.000000px;}
.xda_c00370{left:391.500000px;}
.x77_c00370{left:392.580000px;}
.xc4_c00370{left:395.580000px;}
.x107_c00370{left:399.420000px;}
.x103_c00370{left:400.500000px;}
.x67_c00370{left:402.000000px;}
.x39_c00370{left:403.500000px;}
.x48_c00370{left:404.580000px;}
.xf4_c00370{left:406.920000px;}
.xac_c00370{left:408.420000px;}
.xf7_c00370{left:409.920000px;}
.x78_c00370{left:411.000000px;}
.xa_c00370{left:412.080000px;}
.x60_c00370{left:413.145000px;}
.xdb_c00370{left:414.420000px;}
.xd7_c00370{left:415.920000px;}
.xb4_c00370{left:418.080000px;}
.xa0_c00370{left:420.420000px;}
.x1d_c00370{left:421.920000px;}
.x54_c00370{left:423.420000px;}
.xc0_c00370{left:425.580000px;}
.x108_c00370{left:427.920000px;}
.xb_c00370{left:429.000000px;}
.x3a_c00370{left:430.500000px;}
.x114_c00370{left:433.920000px;}
.xa4_c00370{left:436.500000px;}
.x10a_c00370{left:438.000000px;}
.x1e_c00370{left:439.500000px;}
.x83_c00370{left:441.000000px;}
.xdc_c00370{left:442.920000px;}
.x2c_c00370{left:444.000000px;}
.xc5_c00370{left:446.580000px;}
.x55_c00370{left:449.580000px;}
.x79_c00370{left:451.500000px;}
.xc_c00370{left:452.580000px;}
.xad_c00370{left:454.500000px;}
.x98_c00370{left:456.420000px;}
.x49_c00370{left:459.000000px;}
.x10b_c00370{left:462.000000px;}
.xb5_c00370{left:463.500000px;}
.x1f_c00370{left:465.000000px;}
.xa1_c00370{left:466.500000px;}
.xcc_c00370{left:467.580000px;}
.xae_c00370{left:469.080000px;}
.xf8_c00370{left:472.080000px;}
.x88_c00370{left:476.355000px;}
.xa5_c00370{left:478.920000px;}
.x90_c00370{left:480.000000px;}
.x68_c00370{left:481.080000px;}
.x56_c00370{left:482.580000px;}
.xcd_c00370{left:486.000000px;}
.xc1_c00370{left:489.000000px;}
.xd3_c00370{left:490.500000px;}
.x4a_c00370{left:491.580000px;}
.x91_c00370{left:493.080000px;}
.xed_c00370{left:496.080000px;}
.x57_c00370{left:498.000000px;}
.xe7_c00370{left:499.500000px;}
.x3b_c00370{left:501.420000px;}
.xd_c00370{left:505.080000px;}
.x104_c00370{left:507.000000px;}
.x20_c00370{left:510.420000px;}
.x4b_c00370{left:511.500000px;}
.x89_c00370{left:513.420000px;}
.xd4_c00370{left:514.500000px;}
.xee_c00370{left:516.420000px;}
.xce_c00370{left:517.500000px;}
.x69_c00370{left:522.420000px;}
.xc6_c00370{left:523.920000px;}
.xdd_c00370{left:525.000000px;}
.xa6_c00370{left:526.500000px;}
.xe_c00370{left:527.580000px;}
.x3c_c00370{left:531.000000px;}
.x2d_c00370{left:532.080000px;}
.x7a_c00370{left:533.145000px;}
.xaf_c00370{left:534.420000px;}
.xcf_c00370{left:535.500000px;}
.xd8_c00370{left:537.420000px;}
.x10c_c00370{left:538.500000px;}
.xe3_c00370{left:540.000000px;}
.x6a_c00370{left:541.500000px;}
.x71_c00370{left:544.500000px;}
.xfc_c00370{left:547.500000px;}
.xde_c00370{left:549.420000px;}
.x99_c00370{left:550.500000px;}
.x21_c00370{left:553.080000px;}
.x58_c00370{left:558.000000px;}
.xe8_c00370{left:562.500000px;}
.x8a_c00370{left:564.000000px;}
.xf9_c00370{left:565.500000px;}
.x2e_c00370{left:567.420000px;}
.x4c_c00370{left:571.920000px;}
.xc2_c00370{left:574.080000px;}
.xdf_c00370{left:575.580000px;}
.x7b_c00370{left:577.920000px;}
.xef_c00370{left:582.420000px;}
.xf_c00370{left:584.580000px;}
.x2f_c00370{left:588.000000px;}
.xd0_c00370{left:589.080000px;}
.x61_c00370{left:592.920000px;}
.x7c_c00370{left:595.080000px;}
.x9a_c00370{left:598.500000px;}
.x59_c00370{left:600.000000px;}
.xa7_c00370{left:601.500000px;}
.x84_c00370{left:602.580000px;}
.xbb_c00370{left:604.500000px;}
.xfd_c00370{left:609.000000px;}
.xf0_c00370{left:610.500000px;}
.x4d_c00370{left:611.580000px;}
.xb0_c00370{left:613.920000px;}
.xfa_c00370{left:615.000000px;}
.x22_c00370{left:616.500000px;}
.xf5_c00370{left:621.000000px;}
.x10d_c00370{left:624.000000px;}
.x10_c00370{left:627.420000px;}
.xa2_c00370{left:628.920000px;}
.x6b_c00370{left:630.000000px;}
.xe4_c00370{left:633.000000px;}
.xa8_c00370{left:634.920000px;}
.x7d_c00370{left:637.500000px;}
.xe0_c00370{left:639.645000px;}
.x3d_c00370{left:640.920000px;}
.x11_c00370{left:643.080000px;}
.xd1_c00370{left:645.000000px;}
.x30_c00370{left:646.500000px;}
.xb6_c00370{left:649.080000px;}
.x5a_c00370{left:651.645000px;}
.xe9_c00370{left:652.920000px;}
.x8b_c00370{left:654.000000px;}
.x6c_c00370{left:657.000000px;}
.x92_c00370{left:658.500000px;}
.x23_c00370{left:660.420000px;}
.x4e_c00370{left:663.000000px;}
.x110_c00370{left:666.420000px;}
.xb7_c00370{left:669.000000px;}
.x113_c00370{left:670.500000px;}
.xf6_c00370{left:673.500000px;}
.x72_c00370{left:677.580000px;}
.xb1_c00370{left:679.920000px;}
.x12_c00370{left:682.080000px;}
.x3e_c00370{left:683.580000px;}
.xbc_c00370{left:685.080000px;}
.x7e_c00370{left:687.000000px;}
.xfe_c00370{left:688.500000px;}
.x6d_c00370{left:689.580000px;}
.xa3_c00370{left:691.500000px;}
.x93_c00370{left:693.000000px;}
.x62_c00370{left:694.080000px;}
.xc7_c00370{left:697.500000px;}
.x7f_c00370{left:699.000000px;}
.x24_c00370{left:700.080000px;}
.x9b_c00370{left:702.000000px;}
.x2_c00370{left:703.080000px;}
.x115_c00370{left:705.420000px;}
.xa9_c00370{left:706.920000px;}
.xff_c00370{left:708.000000px;}
.xe5_c00370{left:716.580000px;}
.xfb_c00370{left:720.000000px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.v1_c00370{vertical-align:5.333333pt;}
.ls0_c00370{letter-spacing:0.000000pt;}
.ws0_c00370{word-spacing:-5.343864pt;}
.ws2_c00370{word-spacing:-5.159544pt;}
.ws1_c00370{word-spacing:-3.887238pt;}
.ws3_c00370{word-spacing:0.000000pt;}
.fs7_c00370{font-size:3.040000pt;}
.fs2_c00370{font-size:12.106667pt;}
.fs5_c00370{font-size:16.640000pt;}
.fs0_c00370{font-size:18.133333pt;}
.fs4_c00370{font-size:22.666667pt;}
.fs1_c00370{font-size:25.706667pt;}
.fs3_c00370{font-size:28.746667pt;}
.fs6_c00370{font-size:31.733333pt;}
.fs8_c00370{font-size:34.773333pt;}
.y0_c00370{bottom:0.000000pt;}
.yee_c00370{bottom:225.893333pt;}
.yed_c00370{bottom:227.026667pt;}
.yeb_c00370{bottom:241.106667pt;}
.yea_c00370{bottom:242.440000pt;}
.ye9_c00370{bottom:243.226667pt;}
.ye8_c00370{bottom:243.400000pt;}
.yec_c00370{bottom:243.973333pt;}
.ye7_c00370{bottom:244.360000pt;}
.ye6_c00370{bottom:259.773333pt;}
.ye4_c00370{bottom:261.106667pt;}
.ye5_c00370{bottom:261.693333pt;}
.ye1_c00370{bottom:277.106667pt;}
.ye2_c00370{bottom:279.026667pt;}
.ye3_c00370{bottom:279.973333pt;}
.yde_c00370{bottom:293.693333pt;}
.ye0_c00370{bottom:295.400000pt;}
.ydc_c00370{bottom:295.773333pt;}
.ydd_c00370{bottom:296.360000pt;}
.ydf_c00370{bottom:296.560000pt;}
.ydb_c00370{bottom:297.693333pt;}
.yd7_c00370{bottom:313.106667pt;}
.yd9_c00370{bottom:313.306667pt;}
.yd8_c00370{bottom:313.693333pt;}
.yda_c00370{bottom:314.640000pt;}
.yd6_c00370{bottom:315.026667pt;}
.yd5_c00370{bottom:329.106667pt;}
.yd4_c00370{bottom:330.066667pt;}
.ycf_c00370{bottom:330.440000pt;}
.yd2_c00370{bottom:331.026667pt;}
.yd3_c00370{bottom:331.226667pt;}
.yd0_c00370{bottom:331.973333pt;}
.yd1_c00370{bottom:332.360000pt;}
.ycb_c00370{bottom:346.440000pt;}
.yc9_c00370{bottom:347.026667pt;}
.yce_c00370{bottom:347.773333pt;}
.ycc_c00370{bottom:348.560000pt;}
.yca_c00370{bottom:348.733333pt;}
.yc8_c00370{bottom:349.693333pt;}
.ycd_c00370{bottom:350.640000pt;}
.yc5_c00370{bottom:365.106667pt;}
.yc6_c00370{bottom:365.893333pt;}
.yc7_c00370{bottom:366.066667pt;}
.yc3_c00370{bottom:367.026667pt;}
.yc4_c00370{bottom:367.226667pt;}
.yc2_c00370{bottom:380.360000pt;}
.yc0_c00370{bottom:382.440000pt;}
.yc1_c00370{bottom:383.400000pt;}
.ybf_c00370{bottom:384.360000pt;}
.ybd_c00370{bottom:399.773333pt;}
.ybe_c00370{bottom:400.733333pt;}
.ybc_c00370{bottom:401.693333pt;}
.yb7_c00370{bottom:416.360000pt;}
.yba_c00370{bottom:417.106667pt;}
.ybb_c00370{bottom:417.493333pt;}
.yb6_c00370{bottom:418.440000pt;}
.yb8_c00370{bottom:419.026667pt;}
.yb9_c00370{bottom:419.226667pt;}
.yb4_c00370{bottom:434.440000pt;}
.yb3_c00370{bottom:434.826667pt;}
.yb1_c00370{bottom:435.773333pt;}
.yb5_c00370{bottom:436.360000pt;}
.yb2_c00370{bottom:437.693333pt;}
.yb0_c00370{bottom:452.360000pt;}
.yaf_c00370{bottom:453.106667pt;}
.yae_c00370{bottom:455.026667pt;}
.ya9_c00370{bottom:469.493333pt;}
.yaa_c00370{bottom:470.440000pt;}
.yac_c00370{bottom:471.226667pt;}
.yad_c00370{bottom:471.400000pt;}
.yab_c00370{bottom:472.360000pt;}
.ya7_c00370{bottom:488.560000pt;}
.ya5_c00370{bottom:488.733333pt;}
.ya8_c00370{bottom:489.306667pt;}
.ya6_c00370{bottom:489.693333pt;}
.ya3_c00370{bottom:504.360000pt;}
.ya1_c00370{bottom:505.106667pt;}
.ya2_c00370{bottom:507.026667pt;}
.ya4_c00370{bottom:507.226667pt;}
.ya0_c00370{bottom:508.360000pt;}
.y9d_c00370{bottom:522.440000pt;}
.y9b_c00370{bottom:522.826667pt;}
.y9e_c00370{bottom:523.400000pt;}
.y9a_c00370{bottom:523.773333pt;}
.y9f_c00370{bottom:524.360000pt;}
.y99_c00370{bottom:524.560000pt;}
.y9c_c00370{bottom:525.693333pt;}
.y98_c00370{bottom:540.733333pt;}
.y97_c00370{bottom:541.693333pt;}
.y96_c00370{bottom:541.893333pt;}
.y95_c00370{bottom:543.026667pt;}
.y91_c00370{bottom:557.693333pt;}
.y94_c00370{bottom:558.440000pt;}
.y93_c00370{bottom:559.226667pt;}
.y92_c00370{bottom:559.973333pt;}
.y90_c00370{bottom:560.360000pt;}
.y8e_c00370{bottom:573.693333pt;}
.y8c_c00370{bottom:574.640000pt;}
.y8d_c00370{bottom:575.773333pt;}
.y8f_c00370{bottom:576.560000pt;}
.y8b_c00370{bottom:576.933333pt;}
.y8a_c00370{bottom:577.693333pt;}
.y87_c00370{bottom:592.360000pt;}
.y88_c00370{bottom:593.106667pt;}
.y86_c00370{bottom:595.026667pt;}
.y89_c00370{bottom:595.226667pt;}
.y84_c00370{bottom:610.440000pt;}
.y82_c00370{bottom:611.773333pt;}
.y83_c00370{bottom:612.360000pt;}
.y85_c00370{bottom:613.306667pt;}
.y81_c00370{bottom:613.693333pt;}
.y7f_c00370{bottom:627.773333pt;}
.y80_c00370{bottom:628.733333pt;}
.y7b_c00370{bottom:629.106667pt;}
.y7d_c00370{bottom:629.693333pt;}
.y7e_c00370{bottom:629.893333pt;}
.y7c_c00370{bottom:631.026667pt;}
.y7a_c00370{bottom:646.066667pt;}
.y74_c00370{bottom:646.440000pt;}
.y77_c00370{bottom:647.026667pt;}
.y79_c00370{bottom:647.226667pt;}
.y76_c00370{bottom:647.973333pt;}
.y78_c00370{bottom:648.360000pt;}
.y75_c00370{bottom:648.373333pt;}
.y70_c00370{bottom:668.933333pt;}
.y72_c00370{bottom:669.693333pt;}
.y71_c00370{bottom:670.066667pt;}
.y73_c00370{bottom:670.640000pt;}
.y6d_c00370{bottom:671.026667pt;}
.y6f_c00370{bottom:671.600000pt;}
.y6e_c00370{bottom:671.973333pt;}
.y6c_c00370{bottom:682.266667pt;}
.y6b_c00370{bottom:683.400000pt;}
.y69_c00370{bottom:684.360000pt;}
.y68_c00370{bottom:684.560000pt;}
.y6a_c00370{bottom:685.306667pt;}
.y67_c00370{bottom:696.360000pt;}
.y66_c00370{bottom:697.693333pt;}
.y64_c00370{bottom:708.733333pt;}
.y5f_c00370{bottom:709.306667pt;}
.y61_c00370{bottom:709.693333pt;}
.y60_c00370{bottom:710.066667pt;}
.y63_c00370{bottom:710.640000pt;}
.y65_c00370{bottom:710.840000pt;}
.y5e_c00370{bottom:711.026667pt;}
.y5c_c00370{bottom:711.226667pt;}
.y62_c00370{bottom:711.600000pt;}
.y5d_c00370{bottom:711.973333pt;}
.y5b_c00370{bottom:722.066667pt;}
.y5a_c00370{bottom:723.973333pt;}
.y59_c00370{bottom:724.173333pt;}
.y58_c00370{bottom:734.640000pt;}
.y54_c00370{bottom:735.600000pt;}
.y57_c00370{bottom:736.360000pt;}
.y56_c00370{bottom:736.560000pt;}
.y55_c00370{bottom:737.306667pt;}
.y53_c00370{bottom:748.360000pt;}
.y4e_c00370{bottom:748.733333pt;}
.y52_c00370{bottom:749.693333pt;}
.y4f_c00370{bottom:750.640000pt;}
.y50_c00370{bottom:750.840000pt;}
.y51_c00370{bottom:751.600000pt;}
.y4b_c00370{bottom:762.066667pt;}
.y4c_c00370{bottom:763.026667pt;}
.y4a_c00370{bottom:763.226667pt;}
.y4d_c00370{bottom:763.600000pt;}
.y49_c00370{bottom:763.973333pt;}
.y48_c00370{bottom:764.933333pt;}
.y44_c00370{bottom:775.400000pt;}
.y45_c00370{bottom:776.360000pt;}
.y46_c00370{bottom:776.560000pt;}
.y47_c00370{bottom:778.266667pt;}
.y3f_c00370{bottom:787.973333pt;}
.y42_c00370{bottom:788.360000pt;}
.y41_c00370{bottom:788.560000pt;}
.y40_c00370{bottom:789.306667pt;}
.y43_c00370{bottom:790.266667pt;}
.y3e_c00370{bottom:801.693333pt;}
.y3b_c00370{bottom:802.640000pt;}
.y3c_c00370{bottom:802.840000pt;}
.y3d_c00370{bottom:803.600000pt;}
.y39_c00370{bottom:814.066667pt;}
.y3a_c00370{bottom:815.026667pt;}
.y38_c00370{bottom:815.226667pt;}
.y37_c00370{bottom:815.973333pt;}
.y36_c00370{bottom:816.933333pt;}
.y35_c00370{bottom:827.400000pt;}
.y32_c00370{bottom:828.360000pt;}
.y33_c00370{bottom:828.560000pt;}
.y34_c00370{bottom:829.306667pt;}
.y2f_c00370{bottom:840.733333pt;}
.y2b_c00370{bottom:840.933333pt;}
.y2c_c00370{bottom:841.693333pt;}
.y2d_c00370{bottom:841.893333pt;}
.y31_c00370{bottom:842.266667pt;}
.y2e_c00370{bottom:842.640000pt;}
.y30_c00370{bottom:843.600000pt;}
.y2a_c00370{bottom:854.066667pt;}
.y28_c00370{bottom:855.026667pt;}
.y26_c00370{bottom:855.600000pt;}
.y27_c00370{bottom:855.973333pt;}
.y29_c00370{bottom:856.173333pt;}
.y22_c00370{bottom:866.266667pt;}
.y23_c00370{bottom:867.026667pt;}
.y24_c00370{bottom:868.560000pt;}
.y25_c00370{bottom:868.933333pt;}
.y21_c00370{bottom:879.400000pt;}
.y1e_c00370{bottom:880.360000pt;}
.y20_c00370{bottom:881.306667pt;}
.y1f_c00370{bottom:881.506667pt;}
.y1d_c00370{bottom:882.266667pt;}
.y1c_c00370{bottom:892.360000pt;}
.y19_c00370{bottom:892.733333pt;}
.y16_c00370{bottom:892.933333pt;}
.y18_c00370{bottom:893.893333pt;}
.y1b_c00370{bottom:894.640000pt;}
.y1a_c00370{bottom:895.600000pt;}
.y17_c00370{bottom:895.973333pt;}
.y14_c00370{bottom:906.066667pt;}
.y15_c00370{bottom:907.026667pt;}
.y13_c00370{bottom:907.973333pt;}
.y12_c00370{bottom:908.173333pt;}
.yf_c00370{bottom:920.360000pt;}
.ye_c00370{bottom:920.560000pt;}
.y10_c00370{bottom:921.306667pt;}
.y11_c00370{bottom:922.266667pt;}
.yd_c00370{bottom:932.733333pt;}
.yb_c00370{bottom:933.693333pt;}
.ya_c00370{bottom:934.640000pt;}
.yc_c00370{bottom:934.840000pt;}
.y8_c00370{bottom:944.733333pt;}
.y9_c00370{bottom:945.693333pt;}
.y4_c00370{bottom:946.066667pt;}
.y6_c00370{bottom:946.640000pt;}
.y5_c00370{bottom:947.600000pt;}
.y7_c00370{bottom:947.973333pt;}
.y3_c00370{bottom:948.173333pt;}
.y2_c00370{bottom:977.693333pt;}
.y1_c00370{bottom:978.266667pt;}
.h8_c00370{height:3.739141pt;}
.h3_c00370{height:14.890964pt;}
.h6_c00370{height:20.466875pt;}
.h1_c00370{height:22.303646pt;}
.h5_c00370{height:27.879557pt;}
.h2_c00370{height:31.618698pt;}
.h4_c00370{height:35.357839pt;}
.ha_c00370{height:36.952031pt;}
.h7_c00370{height:39.031380pt;}
.h9_c00370{height:42.770521pt;}
.h0_c00370{height:1186.666667pt;}
.w0_c00370{width:782.666667pt;}
.x0_c00370{left:0.000000pt;}
.x13_c00370{left:134.666667pt;}
.x85_c00370{left:136.000000pt;}
.x105_c00370{left:136.960000pt;}
.x25_c00370{left:145.333333pt;}
.x19_c00370{left:146.666667pt;}
.x3_c00370{left:147.626667pt;}
.x8c_c00370{left:148.960000pt;}
.xd5_c00370{left:153.706667pt;}
.xbd_c00370{left:154.666667pt;}
.x80_c00370{left:160.373333pt;}
.xf1_c00370{left:161.333333pt;}
.x4_c00370{left:162.666667pt;}
.x9c_c00370{left:164.373333pt;}
.x111_c00370{left:165.706667pt;}
.x74_c00370{left:168.960000pt;}
.x100_c00370{left:172.000000pt;}
.x26_c00370{left:174.293333pt;}
.x3f_c00370{left:177.333333pt;}
.x94_c00370{left:180.000000pt;}
.xc8_c00370{left:181.333333pt;}
.x14_c00370{left:183.626667pt;}
.x4f_c00370{left:185.706667pt;}
.x31_c00370{left:187.626667pt;}
.x5b_c00370{left:189.333333pt;}
.x86_c00370{left:190.293333pt;}
.xf2_c00370{left:191.626667pt;}
.x9d_c00370{left:193.333333pt;}
.x50_c00370{left:194.666667pt;}
.x10e_c00370{left:196.000000pt;}
.x27_c00370{left:198.293333pt;}
.x73_c00370{left:199.426667pt;}
.x106_c00370{left:201.333333pt;}
.x65_c00370{left:202.666667pt;}
.x28_c00370{left:204.000000pt;}
.x5_c00370{left:205.333333pt;}
.xd2_c00370{left:206.666667pt;}
.x75_c00370{left:208.000000pt;}
.xc9_c00370{left:210.293333pt;}
.xb2_c00370{left:211.626667pt;}
.x87_c00370{left:213.333333pt;}
.xb8_c00370{left:214.293333pt;}
.xe1_c00370{left:216.373333pt;}
.x95_c00370{left:217.333333pt;}
.x9e_c00370{left:219.040000pt;}
.x112_c00370{left:220.373333pt;}
.x6_c00370{left:221.333333pt;}
.x44_c00370{left:222.666667pt;}
.x1a_c00370{left:224.000000pt;}
.x51_c00370{left:225.333333pt;}
.x40_c00370{left:226.293333pt;}
.x81_c00370{left:228.000000pt;}
.x101_c00370{left:229.333333pt;}
.x32_c00370{left:232.000000pt;}
.x15_c00370{left:232.960000pt;}
.x29_c00370{left:234.666667pt;}
.x6f_c00370{left:236.000000pt;}
.x76_c00370{left:237.333333pt;}
.x5c_c00370{left:240.000000pt;}
.x33_c00370{left:241.333333pt;}
.x7_c00370{left:242.666667pt;}
.x16_c00370{left:244.000000pt;}
.x8d_c00370{left:245.333333pt;}
.x1b_c00370{left:246.293333pt;}
.xea_c00370{left:247.626667pt;}
.x52_c00370{left:250.093333pt;}
.xc3_c00370{left:252.000000pt;}
.x36_c00370{left:253.333333pt;}
.x63_c00370{left:255.040000pt;}
.xaa_c00370{left:257.706667pt;}
.x10f_c00370{left:260.000000pt;}
.xb3_c00370{left:261.706667pt;}
.x45_c00370{left:264.373333pt;}
.xca_c00370{left:265.333333pt;}
.x109_c00370{left:266.666667pt;}
.xe6_c00370{left:269.333333pt;}
.x8e_c00370{left:271.626667pt;}
.x34_c00370{left:272.960000pt;}
.x17_c00370{left:274.293333pt;}
.x41_c00370{left:275.626667pt;}
.xb9_c00370{left:277.333333pt;}
.x37_c00370{left:278.666667pt;}
.x5d_c00370{left:280.000000pt;}
.xd9_c00370{left:281.333333pt;}
.xab_c00370{left:283.040000pt;}
.xeb_c00370{left:284.000000pt;}
.xe2_c00370{left:285.133333pt;}
.x42_c00370{left:286.666667pt;}
.x5e_c00370{left:289.333333pt;}
.x9f_c00370{left:292.373333pt;}
.x2a_c00370{left:294.666667pt;}
.xba_c00370{left:296.373333pt;}
.x8_c00370{left:297.333333pt;}
.x35_c00370{left:299.040000pt;}
.x18_c00370{left:300.000000pt;}
.x1c_c00370{left:301.333333pt;}
.xf3_c00370{left:302.666667pt;}
.x46_c00370{left:304.960000pt;}
.x66_c00370{left:306.666667pt;}
.xd6_c00370{left:308.000000pt;}
.x5f_c00370{left:309.333333pt;}
.x96_c00370{left:311.040000pt;}
.xcb_c00370{left:312.000000pt;}
.x8f_c00370{left:313.333333pt;}
.x43_c00370{left:316.960000pt;}
.x6e_c00370{left:319.040000pt;}
.x64_c00370{left:320.373333pt;}
.x53_c00370{left:321.706667pt;}
.xec_c00370{left:323.626667pt;}
.xbe_c00370{left:328.960000pt;}
.x102_c00370{left:332.373333pt;}
.x9_c00370{left:333.333333pt;}
.x70_c00370{left:334.666667pt;}
.x97_c00370{left:336.000000pt;}
.x1_c00370{left:340.000000pt;}
.x38_c00370{left:341.706667pt;}
.x47_c00370{left:343.040000pt;}
.x2b_c00370{left:344.373333pt;}
.xbf_c00370{left:345.333333pt;}
.x82_c00370{left:346.666667pt;}
.xda_c00370{left:348.000000pt;}
.x77_c00370{left:348.960000pt;}
.xc4_c00370{left:351.626667pt;}
.x107_c00370{left:355.040000pt;}
.x103_c00370{left:356.000000pt;}
.x67_c00370{left:357.333333pt;}
.x39_c00370{left:358.666667pt;}
.x48_c00370{left:359.626667pt;}
.xf4_c00370{left:361.706667pt;}
.xac_c00370{left:363.040000pt;}
.xf7_c00370{left:364.373333pt;}
.x78_c00370{left:365.333333pt;}
.xa_c00370{left:366.293333pt;}
.x60_c00370{left:367.240000pt;}
.xdb_c00370{left:368.373333pt;}
.xd7_c00370{left:369.706667pt;}
.xb4_c00370{left:371.626667pt;}
.xa0_c00370{left:373.706667pt;}
.x1d_c00370{left:375.040000pt;}
.x54_c00370{left:376.373333pt;}
.xc0_c00370{left:378.293333pt;}
.x108_c00370{left:380.373333pt;}
.xb_c00370{left:381.333333pt;}
.x3a_c00370{left:382.666667pt;}
.x114_c00370{left:385.706667pt;}
.xa4_c00370{left:388.000000pt;}
.x10a_c00370{left:389.333333pt;}
.x1e_c00370{left:390.666667pt;}
.x83_c00370{left:392.000000pt;}
.xdc_c00370{left:393.706667pt;}
.x2c_c00370{left:394.666667pt;}
.xc5_c00370{left:396.960000pt;}
.x55_c00370{left:399.626667pt;}
.x79_c00370{left:401.333333pt;}
.xc_c00370{left:402.293333pt;}
.xad_c00370{left:404.000000pt;}
.x98_c00370{left:405.706667pt;}
.x49_c00370{left:408.000000pt;}
.x10b_c00370{left:410.666667pt;}
.xb5_c00370{left:412.000000pt;}
.x1f_c00370{left:413.333333pt;}
.xa1_c00370{left:414.666667pt;}
.xcc_c00370{left:415.626667pt;}
.xae_c00370{left:416.960000pt;}
.xf8_c00370{left:419.626667pt;}
.x88_c00370{left:423.426667pt;}
.xa5_c00370{left:425.706667pt;}
.x90_c00370{left:426.666667pt;}
.x68_c00370{left:427.626667pt;}
.x56_c00370{left:428.960000pt;}
.xcd_c00370{left:432.000000pt;}
.xc1_c00370{left:434.666667pt;}
.xd3_c00370{left:436.000000pt;}
.x4a_c00370{left:436.960000pt;}
.x91_c00370{left:438.293333pt;}
.xed_c00370{left:440.960000pt;}
.x57_c00370{left:442.666667pt;}
.xe7_c00370{left:444.000000pt;}
.x3b_c00370{left:445.706667pt;}
.xd_c00370{left:448.960000pt;}
.x104_c00370{left:450.666667pt;}
.x20_c00370{left:453.706667pt;}
.x4b_c00370{left:454.666667pt;}
.x89_c00370{left:456.373333pt;}
.xd4_c00370{left:457.333333pt;}
.xee_c00370{left:459.040000pt;}
.xce_c00370{left:460.000000pt;}
.x69_c00370{left:464.373333pt;}
.xc6_c00370{left:465.706667pt;}
.xdd_c00370{left:466.666667pt;}
.xa6_c00370{left:468.000000pt;}
.xe_c00370{left:468.960000pt;}
.x3c_c00370{left:472.000000pt;}
.x2d_c00370{left:472.960000pt;}
.x7a_c00370{left:473.906667pt;}
.xaf_c00370{left:475.040000pt;}
.xcf_c00370{left:476.000000pt;}
.xd8_c00370{left:477.706667pt;}
.x10c_c00370{left:478.666667pt;}
.xe3_c00370{left:480.000000pt;}
.x6a_c00370{left:481.333333pt;}
.x71_c00370{left:484.000000pt;}
.xfc_c00370{left:486.666667pt;}
.xde_c00370{left:488.373333pt;}
.x99_c00370{left:489.333333pt;}
.x21_c00370{left:491.626667pt;}
.x58_c00370{left:496.000000pt;}
.xe8_c00370{left:500.000000pt;}
.x8a_c00370{left:501.333333pt;}
.xf9_c00370{left:502.666667pt;}
.x2e_c00370{left:504.373333pt;}
.x4c_c00370{left:508.373333pt;}
.xc2_c00370{left:510.293333pt;}
.xdf_c00370{left:511.626667pt;}
.x7b_c00370{left:513.706667pt;}
.xef_c00370{left:517.706667pt;}
.xf_c00370{left:519.626667pt;}
.x2f_c00370{left:522.666667pt;}
.xd0_c00370{left:523.626667pt;}
.x61_c00370{left:527.040000pt;}
.x7c_c00370{left:528.960000pt;}
.x9a_c00370{left:532.000000pt;}
.x59_c00370{left:533.333333pt;}
.xa7_c00370{left:534.666667pt;}
.x84_c00370{left:535.626667pt;}
.xbb_c00370{left:537.333333pt;}
.xfd_c00370{left:541.333333pt;}
.xf0_c00370{left:542.666667pt;}
.x4d_c00370{left:543.626667pt;}
.xb0_c00370{left:545.706667pt;}
.xfa_c00370{left:546.666667pt;}
.x22_c00370{left:548.000000pt;}
.xf5_c00370{left:552.000000pt;}
.x10d_c00370{left:554.666667pt;}
.x10_c00370{left:557.706667pt;}
.xa2_c00370{left:559.040000pt;}
.x6b_c00370{left:560.000000pt;}
.xe4_c00370{left:562.666667pt;}
.xa8_c00370{left:564.373333pt;}
.x7d_c00370{left:566.666667pt;}
.xe0_c00370{left:568.573333pt;}
.x3d_c00370{left:569.706667pt;}
.x11_c00370{left:571.626667pt;}
.xd1_c00370{left:573.333333pt;}
.x30_c00370{left:574.666667pt;}
.xb6_c00370{left:576.960000pt;}
.x5a_c00370{left:579.240000pt;}
.xe9_c00370{left:580.373333pt;}
.x8b_c00370{left:581.333333pt;}
.x6c_c00370{left:584.000000pt;}
.x92_c00370{left:585.333333pt;}
.x23_c00370{left:587.040000pt;}
.x4e_c00370{left:589.333333pt;}
.x110_c00370{left:592.373333pt;}
.xb7_c00370{left:594.666667pt;}
.x113_c00370{left:596.000000pt;}
.xf6_c00370{left:598.666667pt;}
.x72_c00370{left:602.293333pt;}
.xb1_c00370{left:604.373333pt;}
.x12_c00370{left:606.293333pt;}
.x3e_c00370{left:607.626667pt;}
.xbc_c00370{left:608.960000pt;}
.x7e_c00370{left:610.666667pt;}
.xfe_c00370{left:612.000000pt;}
.x6d_c00370{left:612.960000pt;}
.xa3_c00370{left:614.666667pt;}
.x93_c00370{left:616.000000pt;}
.x62_c00370{left:616.960000pt;}
.xc7_c00370{left:620.000000pt;}
.x7f_c00370{left:621.333333pt;}
.x24_c00370{left:622.293333pt;}
.x9b_c00370{left:624.000000pt;}
.x2_c00370{left:624.960000pt;}
.x115_c00370{left:627.040000pt;}
.xa9_c00370{left:628.373333pt;}
.xff_c00370{left:629.333333pt;}
.xe5_c00370{left:636.960000pt;}
.xfb_c00370{left:640.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_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_b653896c77ee12d1f709ba7e.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md9_c00371{transform:matrix(0.090909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090909,0.000000,0.000000,0.250000,0,0);}
.m19_c00371{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00371{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m75_c00371{transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);}
.mdb_c00371{transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);}
.ma1_c00371{transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);}
.m87_c00371{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.ma6_c00371{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m44_c00371{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m93_c00371{transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);}
.mc_c00371{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.mbd_c00371{transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);}
.m65_c00371{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m67_c00371{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.ma8_c00371{transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);}
.m23_c00371{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m6b_c00371{transform:matrix(0.399540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399540,0.000000,0.000000,0.250000,0,0);}
.m38_c00371{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m9d_c00371{transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);}
.m24_c00371{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m61_c00371{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m21_c00371{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m7f_c00371{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.maf_c00371{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m43_c00371{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m72_c00371{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mda_c00371{transform:matrix(0.409559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409559,0.000000,0.000000,0.250000,0,0);}
.m55_c00371{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m8f_c00371{transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);}
.m7_c00371{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.ma7_c00371{transform:matrix(0.418831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418831,0.000000,0.000000,0.250000,0,0);}
.m39_c00371{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m57_c00371{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mb_c00371{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m62_c00371{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m98_c00371{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m9a_c00371{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.ma0_c00371{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m4b_c00371{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mad_c00371{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.mc2_c00371{transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);}
.m7d_c00371{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m7b_c00371{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m60_c00371{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m3b_c00371{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m30_c00371{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m5f_c00371{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m52_c00371{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.mc0_c00371{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m16_c00371{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.mcc_c00371{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);}
.m47_c00371{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.md6_c00371{transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);}
.m70_c00371{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m3_c00371{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m7a_c00371{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m8c_c00371{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.mf_c00371{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.mba_c00371{transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);}
.m9f_c00371{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m5c_c00371{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m3a_c00371{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m8b_c00371{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m94_c00371{transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);}
.m58_c00371{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m2c_c00371{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m7e_c00371{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.md8_c00371{transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);}
.m29_c00371{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mb4_c00371{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.md7_c00371{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.m37_c00371{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m64_c00371{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.mc9_c00371{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m86_c00371{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.m7c_c00371{transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);}
.mbb_c00371{transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);}
.m6d_c00371{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.m8d_c00371{transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);}
.m88_c00371{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m92_c00371{transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);}
.m90_c00371{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m9e_c00371{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m2d_c00371{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m68_c00371{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.md3_c00371{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m71_c00371{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.md0_c00371{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m1_c00371{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m1e_c00371{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m78_c00371{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m34_c00371{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m97_c00371{transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);}
.m17_c00371{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m28_c00371{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_c00371{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m5d_c00371{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m77_c00371{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m4_c00371{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m49_c00371{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m99_c00371{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m2_c00371{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m31_c00371{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.mac_c00371{transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);}
.m2b_c00371{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m4e_c00371{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m27_c00371{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.me_c00371{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m22_c00371{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m66_c00371{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mbe_c00371{transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);}
.m89_c00371{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.ma_c00371{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m18_c00371{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m8e_c00371{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m6a_c00371{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m5a_c00371{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m41_c00371{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m5e_c00371{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m46_c00371{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m26_c00371{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m6c_c00371{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m35_c00371{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m79_c00371{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m20_c00371{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m4d_c00371{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m74_c00371{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.maa_c00371{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m56_c00371{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m11_c00371{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m25_c00371{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m83_c00371{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m3f_c00371{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m63_c00371{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m1d_c00371{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m76_c00371{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mb7_c00371{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m3e_c00371{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m6_c00371{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m4a_c00371{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mbc_c00371{transform:matrix(0.554487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554487,0.000000,0.000000,0.250000,0,0);}
.ma3_c00371{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m42_c00371{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m8_c00371{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m69_c00371{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m4c_c00371{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m59_c00371{transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);}
.m2e_c00371{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mc1_c00371{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m9c_c00371{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m13_c00371{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m85_c00371{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.mc6_c00371{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m12_c00371{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.mca_c00371{transform:matrix(0.568109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568109,0.000000,0.000000,0.250000,0,0);}
.mc4_c00371{transform:matrix(0.570485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570485,0.000000,0.000000,0.250000,0,0);}
.m32_c00371{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mb1_c00371{transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);}
.m9b_c00371{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m3c_c00371{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mb8_c00371{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.m73_c00371{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m1a_c00371{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m80_c00371{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m33_c00371{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m51_c00371{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m54_c00371{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.m1b_c00371{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_c00371{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.ma2_c00371{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m0_c00371{transform:matrix(0.608088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608088,0.000000,0.000000,0.250000,0,0);}
.mb0_c00371{transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);}
.m5b_c00371{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mb2_c00371{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m3d_c00371{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m53_c00371{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.mae_c00371{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m82_c00371{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mab_c00371{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.ma4_c00371{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mc5_c00371{transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);}
.m45_c00371{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_c00371{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m48_c00371{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.mcb_c00371{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.md_c00371{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mb9_c00371{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.ma9_c00371{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m84_c00371{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mbf_c00371{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.md1_c00371{transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);}
.md4_c00371{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.mb3_c00371{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m14_c00371{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.mc7_c00371{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.md5_c00371{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m81_c00371{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m95_c00371{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.ma5_c00371{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);}
.mcd_c00371{transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);}
.m1f_c00371{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mcf_c00371{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.m2f_c00371{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m1c_c00371{transform:matrix(0.723529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.723529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.723529,0.000000,0.000000,0.250000,0,0);}
.md2_c00371{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m4f_c00371{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m9_c00371{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mb6_c00371{transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);}
.mc3_c00371{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.mc8_c00371{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m2a_c00371{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m36_c00371{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m6e_c00371{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m91_c00371{transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);}
.m6f_c00371{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m96_c00371{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m5_c00371{transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);}
.mce_c00371{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mb5_c00371{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m8a_c00371{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.v2_c00371{vertical-align:-12.000000px;}
.v0_c00371{vertical-align:0.000000px;}
.v1_c00371{vertical-align:6.000000px;}
.ls2_c00371{letter-spacing:0.000000px;}
.ls1_c00371{letter-spacing:15.303448px;}
.ls0_c00371{letter-spacing:87.773498px;}
.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;}
}
.ws5_c00371{word-spacing:-17.300728px;}
.ws12_c00371{word-spacing:-7.954080px;}
.ws0_c00371{word-spacing:-6.184625px;}
.ws1_c00371{word-spacing:-0.061500px;}
.ws14_c00371{word-spacing:0.000000px;}
.ws11_c00371{word-spacing:11.661937px;}
.ws13_c00371{word-spacing:13.306168px;}
.ws10_c00371{word-spacing:24.192343px;}
.wsc_c00371{word-spacing:25.629635px;}
.ws2_c00371{word-spacing:27.671529px;}
.ws6_c00371{word-spacing:30.111231px;}
.wsb_c00371{word-spacing:30.193299px;}
.ws7_c00371{word-spacing:36.864950px;}
.wse_c00371{word-spacing:37.760043px;}
.ws9_c00371{word-spacing:46.567836px;}
.ws3_c00371{word-spacing:47.359908px;}
.wsa_c00371{word-spacing:49.142505px;}
.ws4_c00371{word-spacing:49.953969px;}
.wsd_c00371{word-spacing:57.018127px;}
.ws8_c00371{word-spacing:62.593463px;}
.wsf_c00371{word-spacing:105.966720px;}
._0_c00371{margin-left:-15.303448px;}
._5_c00371{margin-left:-1.024643px;}
._3_c00371{width:15.303448px;}
._7_c00371{width:30.101525px;}
._6_c00371{width:35.586656px;}
._2_c00371{width:40.302442px;}
._1_c00371{width:44.819030px;}
._4_c00371{width:47.070270px;}
.fc0_c00371{color:transparent;}
.fs7_c00371{font-size:3.420000px;}
.fs9_c00371{font-size:11.880000px;}
.fs8_c00371{font-size:13.620000px;}
.fs3_c00371{font-size:18.720000px;}
.fs0_c00371{font-size:20.400000px;}
.fs4_c00371{font-size:25.500000px;}
.fs1_c00371{font-size:28.920000px;}
.fs5_c00371{font-size:32.340000px;}
.fs2_c00371{font-size:35.700000px;}
.fs6_c00371{font-size:39.120000px;}
.y0_c00371{bottom:0.000000px;}
.y6c_c00371{bottom:253.905000px;}
.y6a_c00371{bottom:255.180000px;}
.y6d_c00371{bottom:256.245000px;}
.y69_c00371{bottom:256.905000px;}
.y6b_c00371{bottom:257.325000px;}
.y6f_c00371{bottom:257.970000px;}
.y6e_c00371{bottom:258.405000px;}
.y68_c00371{bottom:274.245000px;}
.y67_c00371{bottom:274.905000px;}
.y64_c00371{bottom:275.745000px;}
.y63_c00371{bottom:276.405000px;}
.y65_c00371{bottom:277.470000px;}
.y66_c00371{bottom:277.905000px;}
.y62_c00371{bottom:292.905000px;}
.y5f_c00371{bottom:294.180000px;}
.y60_c00371{bottom:295.245000px;}
.y61_c00371{bottom:296.130000px;}
.y5e_c00371{bottom:297.405000px;}
.y59_c00371{bottom:312.825000px;}
.y5b_c00371{bottom:313.905000px;}
.y5d_c00371{bottom:314.745000px;}
.y58_c00371{bottom:316.905000px;}
.y5a_c00371{bottom:317.130000px;}
.y5c_c00371{bottom:317.970000px;}
.y57_c00371{bottom:333.405000px;}
.y55_c00371{bottom:334.245000px;}
.y53_c00371{bottom:336.405000px;}
.y54_c00371{bottom:336.420000px;}
.y56_c00371{bottom:336.630000px;}
.yf4_c00371{bottom:364.050000px;}
.yf6_c00371{bottom:365.550000px;}
.yf2_c00371{bottom:368.130000px;}
.yf3_c00371{bottom:369.195000px;}
.yf5_c00371{bottom:369.420000px;}
.yf8_c00371{bottom:370.695000px;}
.yf7_c00371{bottom:370.920000px;}
.yfa_c00371{bottom:372.195000px;}
.yf9_c00371{bottom:372.420000px;}
.yed_c00371{bottom:379.050000px;}
.yeb_c00371{bottom:381.630000px;}
.yec_c00371{bottom:382.695000px;}
.yee_c00371{bottom:382.920000px;}
.yef_c00371{bottom:384.195000px;}
.yf1_c00371{bottom:384.630000px;}
.yf0_c00371{bottom:385.695000px;}
.ye5_c00371{bottom:392.550000px;}
.ye7_c00371{bottom:394.695000px;}
.ye3_c00371{bottom:395.130000px;}
.ye4_c00371{bottom:396.195000px;}
.ye8_c00371{bottom:397.695000px;}
.ye6_c00371{bottom:397.920000px;}
.yea_c00371{bottom:398.130000px;}
.ye9_c00371{bottom:399.195000px;}
.ydd_c00371{bottom:408.630000px;}
.yde_c00371{bottom:409.695000px;}
.ye0_c00371{bottom:410.130000px;}
.ydf_c00371{bottom:411.195000px;}
.ye2_c00371{bottom:414.195000px;}
.ye1_c00371{bottom:414.420000px;}
.yd4_c00371{bottom:421.695000px;}
.yd2_c00371{bottom:422.130000px;}
.yd7_c00371{bottom:422.775000px;}
.yd3_c00371{bottom:423.195000px;}
.yd5_c00371{bottom:423.825000px;}
.yd6_c00371{bottom:424.920000px;}
.yda_c00371{bottom:426.195000px;}
.yd9_c00371{bottom:426.420000px;}
.ydc_c00371{bottom:426.630000px;}
.ydb_c00371{bottom:427.695000px;}
.yd8_c00371{bottom:429.195000px;}
.yca_c00371{bottom:435.195000px;}
.yc8_c00371{bottom:435.630000px;}
.yc9_c00371{bottom:436.695000px;}
.ycc_c00371{bottom:437.775000px;}
.ycd_c00371{bottom:438.195000px;}
.ycb_c00371{bottom:438.420000px;}
.yce_c00371{bottom:438.630000px;}
.ycf_c00371{bottom:439.695000px;}
.yd1_c00371{bottom:440.130000px;}
.yd0_c00371{bottom:441.195000px;}
.yc7_c00371{bottom:442.695000px;}
.yc3_c00371{bottom:450.195000px;}
.ybf_c00371{bottom:450.630000px;}
.yc1_c00371{bottom:451.275000px;}
.yc0_c00371{bottom:451.695000px;}
.yc2_c00371{bottom:451.920000px;}
.yc5_c00371{bottom:452.130000px;}
.yc4_c00371{bottom:453.195000px;}
.yc6_c00371{bottom:454.695000px;}
.ybe_c00371{bottom:456.195000px;}
.yb9_c00371{bottom:463.695000px;}
.yb7_c00371{bottom:464.130000px;}
.yb8_c00371{bottom:465.195000px;}
.yba_c00371{bottom:465.630000px;}
.ybb_c00371{bottom:466.695000px;}
.ybc_c00371{bottom:467.130000px;}
.ybd_c00371{bottom:468.195000px;}
.yb3_c00371{bottom:478.275000px;}
.yb1_c00371{bottom:478.695000px;}
.yb4_c00371{bottom:479.130000px;}
.yb2_c00371{bottom:480.195000px;}
.yb5_c00371{bottom:481.695000px;}
.yb6_c00371{bottom:483.420000px;}
.yac_c00371{bottom:492.195000px;}
.yad_c00371{bottom:492.630000px;}
.yae_c00371{bottom:493.695000px;}
.yaf_c00371{bottom:495.195000px;}
.yb0_c00371{bottom:495.630000px;}
.ya7_c00371{bottom:506.130000px;}
.ya8_c00371{bottom:507.195000px;}
.ya9_c00371{bottom:508.695000px;}
.yab_c00371{bottom:509.130000px;}
.yaa_c00371{bottom:510.195000px;}
.ya3_c00371{bottom:520.695000px;}
.ya4_c00371{bottom:522.195000px;}
.ya5_c00371{bottom:523.695000px;}
.ya6_c00371{bottom:525.195000px;}
.y9e_c00371{bottom:533.130000px;}
.y9f_c00371{bottom:534.630000px;}
.ya0_c00371{bottom:535.695000px;}
.ya1_c00371{bottom:537.195000px;}
.ya2_c00371{bottom:537.630000px;}
.y98_c00371{bottom:548.130000px;}
.y99_c00371{bottom:549.195000px;}
.y9a_c00371{bottom:549.630000px;}
.y9b_c00371{bottom:550.695000px;}
.y9d_c00371{bottom:551.130000px;}
.y9c_c00371{bottom:552.195000px;}
.y93_c00371{bottom:560.550000px;}
.y94_c00371{bottom:562.695000px;}
.y95_c00371{bottom:563.130000px;}
.y96_c00371{bottom:564.195000px;}
.y97_c00371{bottom:565.695000px;}
.y8e_c00371{bottom:575.130000px;}
.y8f_c00371{bottom:576.195000px;}
.y91_c00371{bottom:577.695000px;}
.y90_c00371{bottom:578.130000px;}
.y92_c00371{bottom:579.195000px;}
.y89_c00371{bottom:588.630000px;}
.y8a_c00371{bottom:591.195000px;}
.y8c_c00371{bottom:591.630000px;}
.y8d_c00371{bottom:592.695000px;}
.y8b_c00371{bottom:592.920000px;}
.y83_c00371{bottom:601.695000px;}
.y84_c00371{bottom:602.130000px;}
.y85_c00371{bottom:604.695000px;}
.y86_c00371{bottom:605.130000px;}
.y88_c00371{bottom:606.195000px;}
.y87_c00371{bottom:607.920000px;}
.y7d_c00371{bottom:621.195000px;}
.y7f_c00371{bottom:623.130000px;}
.y7e_c00371{bottom:624.195000px;}
.y80_c00371{bottom:625.695000px;}
.y81_c00371{bottom:625.920000px;}
.y82_c00371{bottom:627.420000px;}
.y77_c00371{bottom:633.630000px;}
.y79_c00371{bottom:635.130000px;}
.y78_c00371{bottom:636.195000px;}
.y7a_c00371{bottom:637.695000px;}
.y7b_c00371{bottom:638.130000px;}
.y7c_c00371{bottom:639.195000px;}
.y75_c00371{bottom:667.470000px;}
.y76_c00371{bottom:668.550000px;}
.y74_c00371{bottom:680.325000px;}
.y72_c00371{bottom:682.470000px;}
.y73_c00371{bottom:683.550000px;}
.y71_c00371{bottom:700.050000px;}
.y70_c00371{bottom:703.050000px;}
.y51_c00371{bottom:727.245000px;}
.y52_c00371{bottom:729.405000px;}
.y4c_c00371{bottom:745.245000px;}
.y4f_c00371{bottom:746.745000px;}
.y50_c00371{bottom:748.470000px;}
.y4d_c00371{bottom:748.905000px;}
.y4e_c00371{bottom:749.130000px;}
.y4b_c00371{bottom:749.970000px;}
.y49_c00371{bottom:765.405000px;}
.y4a_c00371{bottom:765.825000px;}
.y48_c00371{bottom:766.245000px;}
.y47_c00371{bottom:768.405000px;}
.y46_c00371{bottom:785.745000px;}
.y45_c00371{bottom:787.905000px;}
.y44_c00371{bottom:788.130000px;}
.y3f_c00371{bottom:805.245000px;}
.y40_c00371{bottom:805.905000px;}
.y43_c00371{bottom:806.745000px;}
.y3e_c00371{bottom:807.405000px;}
.y41_c00371{bottom:807.630000px;}
.y42_c00371{bottom:808.470000px;}
.y39_c00371{bottom:825.180000px;}
.y3b_c00371{bottom:825.825000px;}
.y3a_c00371{bottom:826.905000px;}
.y3d_c00371{bottom:827.130000px;}
.y3c_c00371{bottom:827.970000px;}
.y38_c00371{bottom:828.405000px;}
.y35_c00371{bottom:845.745000px;}
.y36_c00371{bottom:847.470000px;}
.y37_c00371{bottom:847.905000px;}
.y34_c00371{bottom:865.245000px;}
.y33_c00371{bottom:866.970000px;}
.y32_c00371{bottom:867.405000px;}
.y30_c00371{bottom:884.745000px;}
.y31_c00371{bottom:885.630000px;}
.y2f_c00371{bottom:886.905000px;}
.y2b_c00371{bottom:904.245000px;}
.y2e_c00371{bottom:905.130000px;}
.y2c_c00371{bottom:905.325000px;}
.y29_c00371{bottom:905.970000px;}
.y2a_c00371{bottom:906.405000px;}
.y2d_c00371{bottom:907.470000px;}
.y25_c00371{bottom:923.745000px;}
.y24_c00371{bottom:924.630000px;}
.y26_c00371{bottom:925.905000px;}
.y27_c00371{bottom:926.130000px;}
.y28_c00371{bottom:926.970000px;}
.y21_c00371{bottom:943.245000px;}
.y20_c00371{bottom:945.405000px;}
.y22_c00371{bottom:946.470000px;}
.y23_c00371{bottom:946.905000px;}
.y1f_c00371{bottom:961.905000px;}
.y1b_c00371{bottom:962.745000px;}
.y1c_c00371{bottom:964.905000px;}
.y1e_c00371{bottom:965.130000px;}
.y1d_c00371{bottom:965.970000px;}
.y16_c00371{bottom:982.245000px;}
.y1a_c00371{bottom:983.745000px;}
.y18_c00371{bottom:984.405000px;}
.y17_c00371{bottom:984.630000px;}
.y19_c00371{bottom:984.825000px;}
.y11_c00371{bottom:1001.745000px;}
.y14_c00371{bottom:1002.825000px;}
.y12_c00371{bottom:1003.905000px;}
.y13_c00371{bottom:1004.130000px;}
.y15_c00371{bottom:1005.405000px;}
.ye_c00371{bottom:1020.405000px;}
.yb_c00371{bottom:1021.245000px;}
.yd_c00371{bottom:1022.325000px;}
.y10_c00371{bottom:1022.745000px;}
.yc_c00371{bottom:1023.405000px;}
.yf_c00371{bottom:1023.630000px;}
.ya_c00371{bottom:1024.470000px;}
.y9_c00371{bottom:1024.905000px;}
.y6_c00371{bottom:1042.905000px;}
.y7_c00371{bottom:1043.130000px;}
.y8_c00371{bottom:1044.405000px;}
.y4_c00371{bottom:1061.745000px;}
.y5_c00371{bottom:1062.630000px;}
.y3_c00371{bottom:1063.905000px;}
.y2_c00371{bottom:1099.905000px;}
.y1_c00371{bottom:1102.050000px;}
.h8_c00371{height:4.206533px;}
.hd_c00371{height:14.612168px;}
.ha_c00371{height:16.752334px;}
.hc_c00371{height:22.752334px;}
.h4_c00371{height:23.025234px;}
.h1_c00371{height:25.091602px;}
.hb_c00371{height:29.025234px;}
.h5_c00371{height:31.364502px;}
.h2_c00371{height:35.571035px;}
.h9_c00371{height:37.364502px;}
.h6_c00371{height:39.777568px;}
.h3_c00371{height:43.910303px;}
.h7_c00371{height:48.116836px;}
.h0_c00371{height:1335.000000px;}
.w0_c00371{width:880.500000px;}
.x0_c00371{left:0.000000px;}
.xb8_c00371{left:149.580000px;}
.x8c_c00371{left:151.500000px;}
.x25_c00371{left:153.000000px;}
.x2_c00371{left:154.080000px;}
.xb0_c00371{left:165.645000px;}
.xd6_c00371{left:168.000000px;}
.x12_c00371{left:169.080000px;}
.xd0_c00371{left:171.000000px;}
.xf_c00371{left:177.000000px;}
.x56_c00371{left:180.420000px;}
.xa0_c00371{left:181.920000px;}
.x8d_c00371{left:183.000000px;}
.x69_c00371{left:184.920000px;}
.xd7_c00371{left:190.080000px;}
.x92_c00371{left:193.920000px;}
.xbf_c00371{left:196.080000px;}
.x3_c00371{left:200.355000px;}
.x72_c00371{left:202.080000px;}
.xe1_c00371{left:203.580000px;}
.xdd_c00371{left:208.080000px;}
.x62_c00371{left:210.000000px;}
.x4c_c00371{left:211.080000px;}
.x6a_c00371{left:213.420000px;}
.xf4_c00371{left:214.500000px;}
.xeb_c00371{left:217.500000px;}
.x13_c00371{left:219.420000px;}
.x34_c00371{left:220.920000px;}
.xb9_c00371{left:222.000000px;}
.xe9_c00371{left:223.920000px;}
.x26_c00371{left:225.420000px;}
.x57_c00371{left:226.920000px;}
.x10_c00371{left:228.420000px;}
.x93_c00371{left:230.580000px;}
.x4_c00371{left:236.580000px;}
.x41_c00371{left:238.500000px;}
.xf0_c00371{left:241.500000px;}
.x8e_c00371{left:243.420000px;}
.xa1_c00371{left:244.500000px;}
.x35_c00371{left:245.580000px;}
.x11_c00371{left:249.000000px;}
.xf1_c00371{left:255.000000px;}
.x9a_c00371{left:256.080000px;}
.x73_c00371{left:258.420000px;}
.xc0_c00371{left:259.920000px;}
.x27_c00371{left:262.920000px;}
.x58_c00371{left:264.420000px;}
.xba_c00371{left:266.580000px;}
.x42_c00371{left:268.920000px;}
.x5_c00371{left:271.500000px;}
.x4d_c00371{left:274.920000px;}
.xf3_c00371{left:277.080000px;}
.xad_c00371{left:278.580000px;}
.x14_c00371{left:283.500000px;}
.x7c_c00371{left:285.420000px;}
.x74_c00371{left:288.000000px;}
.x28_c00371{left:289.500000px;}
.x59_c00371{left:291.000000px;}
.xb1_c00371{left:292.920000px;}
.x15_c00371{left:294.000000px;}
.xcf_c00371{left:299.580000px;}
.x43_c00371{left:303.000000px;}
.x36_c00371{left:305.580000px;}
.x16_c00371{left:307.080000px;}
.x4e_c00371{left:309.000000px;}
.x63_c00371{left:310.500000px;}
.x6_c00371{left:312.000000px;}
.x17_c00371{left:321.000000px;}
.xd1_c00371{left:322.500000px;}
.x37_c00371{left:324.420000px;}
.x7d_c00371{left:326.580000px;}
.x75_c00371{left:328.500000px;}
.xc8_c00371{left:331.500000px;}
.x18_c00371{left:334.500000px;}
.x94_c00371{left:337.080000px;}
.x7_c00371{left:338.355000px;}
.xd8_c00371{left:339.420000px;}
.xa2_c00371{left:340.920000px;}
.x29_c00371{left:342.000000px;}
.xde_c00371{left:343.500000px;}
.xe2_c00371{left:345.000000px;}
.x44_c00371{left:346.500000px;}
.x19_c00371{left:348.000000px;}
.x38_c00371{left:349.920000px;}
.xfb_c00371{left:351.000000px;}
.x7e_c00371{left:352.920000px;}
.xd2_c00371{left:354.000000px;}
.x85_c00371{left:357.420000px;}
.xb2_c00371{left:358.500000px;}
.x64_c00371{left:361.500000px;}
.x1a_c00371{left:363.000000px;}
.xc1_c00371{left:364.500000px;}
.x8f_c00371{left:367.080000px;}
.xa3_c00371{left:369.000000px;}
.x9b_c00371{left:370.920000px;}
.xae_c00371{left:372.420000px;}
.x1b_c00371{left:379.500000px;}
.x7f_c00371{left:381.000000px;}
.xed_c00371{left:382.500000px;}
.x86_c00371{left:383.580000px;}
.x4f_c00371{left:385.080000px;}
.x1_c00371{left:387.000000px;}
.x39_c00371{left:388.500000px;}
.xec_c00371{left:390.420000px;}
.xf8_c00371{left:391.500000px;}
.x1c_c00371{left:393.000000px;}
.xea_c00371{left:394.500000px;}
.x6b_c00371{left:396.000000px;}
.x2a_c00371{left:397.500000px;}
.xaf_c00371{left:399.000000px;}
.xd5_c00371{left:402.000000px;}
.xbb_c00371{left:403.500000px;}
.xc2_c00371{left:404.580000px;}
.x45_c00371{left:408.000000px;}
.x50_c00371{left:412.500000px;}
.x95_c00371{left:414.420000px;}
.xa4_c00371{left:418.500000px;}
.x2b_c00371{left:420.000000px;}
.x5a_c00371{left:421.920000px;}
.x1d_c00371{left:423.000000px;}
.x8_c00371{left:426.420000px;}
.xb3_c00371{left:427.500000px;}
.xe3_c00371{left:430.920000px;}
.x2c_c00371{left:433.500000px;}
.xe0_c00371{left:435.000000px;}
.x6c_c00371{left:439.500000px;}
.x96_c00371{left:440.580000px;}
.xd3_c00371{left:442.920000px;}
.x51_c00371{left:445.500000px;}
.xa5_c00371{left:447.420000px;}
.x3a_c00371{left:448.500000px;}
.x5b_c00371{left:450.420000px;}
.x80_c00371{left:453.420000px;}
.x46_c00371{left:456.000000px;}
.x1e_c00371{left:460.500000px;}
.x65_c00371{left:462.000000px;}
.xc9_c00371{left:463.500000px;}
.x76_c00371{left:466.080000px;}
.x52_c00371{left:468.420000px;}
.x6d_c00371{left:469.920000px;}
.xd9_c00371{left:471.000000px;}
.xc3_c00371{left:472.920000px;}
.x2d_c00371{left:474.855000px;}
.xee_c00371{left:475.920000px;}
.x9_c00371{left:477.420000px;}
.x3b_c00371{left:478.500000px;}
.x81_c00371{left:481.080000px;}
.xb4_c00371{left:483.000000px;}
.x77_c00371{left:487.920000px;}
.x47_c00371{left:489.420000px;}
.x5c_c00371{left:490.500000px;}
.x90_c00371{left:493.500000px;}
.xca_c00371{left:494.580000px;}
.x87_c00371{left:496.920000px;}
.xa_c00371{left:498.000000px;}
.x1f_c00371{left:504.000000px;}
.xb5_c00371{left:505.920000px;}
.x6e_c00371{left:507.420000px;}
.x97_c00371{left:510.000000px;}
.xa6_c00371{left:511.080000px;}
.x78_c00371{left:516.000000px;}
.xc4_c00371{left:519.000000px;}
.xe7_c00371{left:520.920000px;}
.xf5_c00371{left:522.000000px;}
.xdb_c00371{left:523.500000px;}
.xe8_c00371{left:525.000000px;}
.xfa_c00371{left:526.500000px;}
.x66_c00371{left:528.420000px;}
.x48_c00371{left:529.920000px;}
.x82_c00371{left:532.500000px;}
.x3c_c00371{left:534.000000px;}
.xbc_c00371{left:537.000000px;}
.xc5_c00371{left:538.080000px;}
.x6f_c00371{left:541.080000px;}
.x53_c00371{left:542.355000px;}
.x2e_c00371{left:544.500000px;}
.x5d_c00371{left:547.500000px;}
.xcb_c00371{left:549.000000px;}
.xb6_c00371{left:550.080000px;}
.xb_c00371{left:552.000000px;}
.xa7_c00371{left:555.000000px;}
.x79_c00371{left:556.500000px;}
.x20_c00371{left:558.000000px;}
.x3d_c00371{left:559.500000px;}
.x70_c00371{left:561.420000px;}
.xf9_c00371{left:562.500000px;}
.x98_c00371{left:564.000000px;}
.xe4_c00371{left:565.500000px;}
.xef_c00371{left:567.000000px;}
.xdc_c00371{left:570.000000px;}
.xfc_c00371{left:571.500000px;}
.x5e_c00371{left:573.000000px;}
.x54_c00371{left:574.920000px;}
.xa8_c00371{left:577.080000px;}
.x21_c00371{left:582.420000px;}
.xb7_c00371{left:585.000000px;}
.x2f_c00371{left:589.500000px;}
.xcc_c00371{left:590.580000px;}
.x67_c00371{left:592.080000px;}
.x83_c00371{left:595.920000px;}
.x49_c00371{left:598.080000px;}
.x88_c00371{left:603.000000px;}
.x3e_c00371{left:604.500000px;}
.x30_c00371{left:605.580000px;}
.xf2_c00371{left:607.500000px;}
.xbd_c00371{left:609.000000px;}
.xe5_c00371{left:610.500000px;}
.x9c_c00371{left:611.580000px;}
.xc_c00371{left:613.920000px;}
.x99_c00371{left:615.420000px;}
.x22_c00371{left:616.920000px;}
.x31_c00371{left:623.580000px;}
.xc6_c00371{left:627.000000px;}
.xa9_c00371{left:628.500000px;}
.x9d_c00371{left:631.920000px;}
.x55_c00371{left:636.000000px;}
.x7a_c00371{left:641.580000px;}
.x3f_c00371{left:645.000000px;}
.xf7_c00371{left:648.000000px;}
.x89_c00371{left:649.500000px;}
.xda_c00371{left:651.000000px;}
.xaa_c00371{left:652.500000px;}
.x23_c00371{left:653.580000px;}
.xdf_c00371{left:655.500000px;}
.x91_c00371{left:657.000000px;}
.x9e_c00371{left:658.500000px;}
.x5f_c00371{left:659.580000px;}
.x4a_c00371{left:661.500000px;}
.xcd_c00371{left:663.420000px;}
.xbe_c00371{left:664.500000px;}
.x32_c00371{left:669.420000px;}
.x84_c00371{left:670.920000px;}
.x7b_c00371{left:675.000000px;}
.x8a_c00371{left:676.500000px;}
.x40_c00371{left:679.500000px;}
.x68_c00371{left:681.000000px;}
.xd4_c00371{left:682.500000px;}
.xd_c00371{left:684.420000px;}
.x24_c00371{left:685.920000px;}
.xab_c00371{left:688.080000px;}
.x60_c00371{left:690.000000px;}
.x4b_c00371{left:691.500000px;}
.xf6_c00371{left:694.920000px;}
.x33_c00371{left:696.420000px;}
.x71_c00371{left:697.920000px;}
.xe6_c00371{left:700.920000px;}
.xe_c00371{left:702.000000px;}
.xce_c00371{left:703.500000px;}
.x9f_c00371{left:704.580000px;}
.xc7_c00371{left:706.920000px;}
.xac_c00371{left:708.420000px;}
.x8b_c00371{left:715.500000px;}
.x61_c00371{left:717.000000px;}
@media print{
.v2_c00371{vertical-align:-10.666667pt;}
.v0_c00371{vertical-align:0.000000pt;}
.v1_c00371{vertical-align:5.333333pt;}
.ls2_c00371{letter-spacing:0.000000pt;}
.ls1_c00371{letter-spacing:13.603065pt;}
.ls0_c00371{letter-spacing:78.020887pt;}
.ws5_c00371{word-spacing:-15.378425pt;}
.ws12_c00371{word-spacing:-7.070293pt;}
.ws0_c00371{word-spacing:-5.497444pt;}
.ws1_c00371{word-spacing:-0.054667pt;}
.ws14_c00371{word-spacing:0.000000pt;}
.ws11_c00371{word-spacing:10.366166pt;}
.ws13_c00371{word-spacing:11.827705pt;}
.ws10_c00371{word-spacing:21.504305pt;}
.wsc_c00371{word-spacing:22.781898pt;}
.ws2_c00371{word-spacing:24.596914pt;}
.ws6_c00371{word-spacing:26.765539pt;}
.wsb_c00371{word-spacing:26.838488pt;}
.ws7_c00371{word-spacing:32.768845pt;}
.wse_c00371{word-spacing:33.564483pt;}
.ws9_c00371{word-spacing:41.393632pt;}
.ws3_c00371{word-spacing:42.097696pt;}
.wsa_c00371{word-spacing:43.682226pt;}
.ws4_c00371{word-spacing:44.403528pt;}
.wsd_c00371{word-spacing:50.682780pt;}
.ws8_c00371{word-spacing:55.638633pt;}
.wsf_c00371{word-spacing:94.192640pt;}
._0_c00371{margin-left:-13.603065pt;}
._5_c00371{margin-left:-0.910794pt;}
._3_c00371{width:13.603065pt;}
._7_c00371{width:26.756911pt;}
._6_c00371{width:31.632584pt;}
._2_c00371{width:35.824393pt;}
._1_c00371{width:39.839138pt;}
._4_c00371{width:41.840240pt;}
.fs7_c00371{font-size:3.040000pt;}
.fs9_c00371{font-size:10.560000pt;}
.fs8_c00371{font-size:12.106667pt;}
.fs3_c00371{font-size:16.640000pt;}
.fs0_c00371{font-size:18.133333pt;}
.fs4_c00371{font-size:22.666667pt;}
.fs1_c00371{font-size:25.706667pt;}
.fs5_c00371{font-size:28.746667pt;}
.fs2_c00371{font-size:31.733333pt;}
.fs6_c00371{font-size:34.773333pt;}
.y0_c00371{bottom:0.000000pt;}
.y6c_c00371{bottom:225.693333pt;}
.y6a_c00371{bottom:226.826667pt;}
.y6d_c00371{bottom:227.773333pt;}
.y69_c00371{bottom:228.360000pt;}
.y6b_c00371{bottom:228.733333pt;}
.y6f_c00371{bottom:229.306667pt;}
.y6e_c00371{bottom:229.693333pt;}
.y68_c00371{bottom:243.773333pt;}
.y67_c00371{bottom:244.360000pt;}
.y64_c00371{bottom:245.106667pt;}
.y63_c00371{bottom:245.693333pt;}
.y65_c00371{bottom:246.640000pt;}
.y66_c00371{bottom:247.026667pt;}
.y62_c00371{bottom:260.360000pt;}
.y5f_c00371{bottom:261.493333pt;}
.y60_c00371{bottom:262.440000pt;}
.y61_c00371{bottom:263.226667pt;}
.y5e_c00371{bottom:264.360000pt;}
.y59_c00371{bottom:278.066667pt;}
.y5b_c00371{bottom:279.026667pt;}
.y5d_c00371{bottom:279.773333pt;}
.y58_c00371{bottom:281.693333pt;}
.y5a_c00371{bottom:281.893333pt;}
.y5c_c00371{bottom:282.640000pt;}
.y57_c00371{bottom:296.360000pt;}
.y55_c00371{bottom:297.106667pt;}
.y53_c00371{bottom:299.026667pt;}
.y54_c00371{bottom:299.040000pt;}
.y56_c00371{bottom:299.226667pt;}
.yf4_c00371{bottom:323.600000pt;}
.yf6_c00371{bottom:324.933333pt;}
.yf2_c00371{bottom:327.226667pt;}
.yf3_c00371{bottom:328.173333pt;}
.yf5_c00371{bottom:328.373333pt;}
.yf8_c00371{bottom:329.506667pt;}
.yf7_c00371{bottom:329.706667pt;}
.yfa_c00371{bottom:330.840000pt;}
.yf9_c00371{bottom:331.040000pt;}
.yed_c00371{bottom:336.933333pt;}
.yeb_c00371{bottom:339.226667pt;}
.yec_c00371{bottom:340.173333pt;}
.yee_c00371{bottom:340.373333pt;}
.yef_c00371{bottom:341.506667pt;}
.yf1_c00371{bottom:341.893333pt;}
.yf0_c00371{bottom:342.840000pt;}
.ye5_c00371{bottom:348.933333pt;}
.ye7_c00371{bottom:350.840000pt;}
.ye3_c00371{bottom:351.226667pt;}
.ye4_c00371{bottom:352.173333pt;}
.ye8_c00371{bottom:353.506667pt;}
.ye6_c00371{bottom:353.706667pt;}
.yea_c00371{bottom:353.893333pt;}
.ye9_c00371{bottom:354.840000pt;}
.ydd_c00371{bottom:363.226667pt;}
.yde_c00371{bottom:364.173333pt;}
.ye0_c00371{bottom:364.560000pt;}
.ydf_c00371{bottom:365.506667pt;}
.ye2_c00371{bottom:368.173333pt;}
.ye1_c00371{bottom:368.373333pt;}
.yd4_c00371{bottom:374.840000pt;}
.yd2_c00371{bottom:375.226667pt;}
.yd7_c00371{bottom:375.800000pt;}
.yd3_c00371{bottom:376.173333pt;}
.yd5_c00371{bottom:376.733333pt;}
.yd6_c00371{bottom:377.706667pt;}
.yda_c00371{bottom:378.840000pt;}
.yd9_c00371{bottom:379.040000pt;}
.ydc_c00371{bottom:379.226667pt;}
.ydb_c00371{bottom:380.173333pt;}
.yd8_c00371{bottom:381.506667pt;}
.yca_c00371{bottom:386.840000pt;}
.yc8_c00371{bottom:387.226667pt;}
.yc9_c00371{bottom:388.173333pt;}
.ycc_c00371{bottom:389.133333pt;}
.ycd_c00371{bottom:389.506667pt;}
.ycb_c00371{bottom:389.706667pt;}
.yce_c00371{bottom:389.893333pt;}
.ycf_c00371{bottom:390.840000pt;}
.yd1_c00371{bottom:391.226667pt;}
.yd0_c00371{bottom:392.173333pt;}
.yc7_c00371{bottom:393.506667pt;}
.yc3_c00371{bottom:400.173333pt;}
.ybf_c00371{bottom:400.560000pt;}
.yc1_c00371{bottom:401.133333pt;}
.yc0_c00371{bottom:401.506667pt;}
.yc2_c00371{bottom:401.706667pt;}
.yc5_c00371{bottom:401.893333pt;}
.yc4_c00371{bottom:402.840000pt;}
.yc6_c00371{bottom:404.173333pt;}
.ybe_c00371{bottom:405.506667pt;}
.yb9_c00371{bottom:412.173333pt;}
.yb7_c00371{bottom:412.560000pt;}
.yb8_c00371{bottom:413.506667pt;}
.yba_c00371{bottom:413.893333pt;}
.ybb_c00371{bottom:414.840000pt;}
.ybc_c00371{bottom:415.226667pt;}
.ybd_c00371{bottom:416.173333pt;}
.yb3_c00371{bottom:425.133333pt;}
.yb1_c00371{bottom:425.506667pt;}
.yb4_c00371{bottom:425.893333pt;}
.yb2_c00371{bottom:426.840000pt;}
.yb5_c00371{bottom:428.173333pt;}
.yb6_c00371{bottom:429.706667pt;}
.yac_c00371{bottom:437.506667pt;}
.yad_c00371{bottom:437.893333pt;}
.yae_c00371{bottom:438.840000pt;}
.yaf_c00371{bottom:440.173333pt;}
.yb0_c00371{bottom:440.560000pt;}
.ya7_c00371{bottom:449.893333pt;}
.ya8_c00371{bottom:450.840000pt;}
.ya9_c00371{bottom:452.173333pt;}
.yab_c00371{bottom:452.560000pt;}
.yaa_c00371{bottom:453.506667pt;}
.ya3_c00371{bottom:462.840000pt;}
.ya4_c00371{bottom:464.173333pt;}
.ya5_c00371{bottom:465.506667pt;}
.ya6_c00371{bottom:466.840000pt;}
.y9e_c00371{bottom:473.893333pt;}
.y9f_c00371{bottom:475.226667pt;}
.ya0_c00371{bottom:476.173333pt;}
.ya1_c00371{bottom:477.506667pt;}
.ya2_c00371{bottom:477.893333pt;}
.y98_c00371{bottom:487.226667pt;}
.y99_c00371{bottom:488.173333pt;}
.y9a_c00371{bottom:488.560000pt;}
.y9b_c00371{bottom:489.506667pt;}
.y9d_c00371{bottom:489.893333pt;}
.y9c_c00371{bottom:490.840000pt;}
.y93_c00371{bottom:498.266667pt;}
.y94_c00371{bottom:500.173333pt;}
.y95_c00371{bottom:500.560000pt;}
.y96_c00371{bottom:501.506667pt;}
.y97_c00371{bottom:502.840000pt;}
.y8e_c00371{bottom:511.226667pt;}
.y8f_c00371{bottom:512.173333pt;}
.y91_c00371{bottom:513.506667pt;}
.y90_c00371{bottom:513.893333pt;}
.y92_c00371{bottom:514.840000pt;}
.y89_c00371{bottom:523.226667pt;}
.y8a_c00371{bottom:525.506667pt;}
.y8c_c00371{bottom:525.893333pt;}
.y8d_c00371{bottom:526.840000pt;}
.y8b_c00371{bottom:527.040000pt;}
.y83_c00371{bottom:534.840000pt;}
.y84_c00371{bottom:535.226667pt;}
.y85_c00371{bottom:537.506667pt;}
.y86_c00371{bottom:537.893333pt;}
.y88_c00371{bottom:538.840000pt;}
.y87_c00371{bottom:540.373333pt;}
.y7d_c00371{bottom:552.173333pt;}
.y7f_c00371{bottom:553.893333pt;}
.y7e_c00371{bottom:554.840000pt;}
.y80_c00371{bottom:556.173333pt;}
.y81_c00371{bottom:556.373333pt;}
.y82_c00371{bottom:557.706667pt;}
.y77_c00371{bottom:563.226667pt;}
.y79_c00371{bottom:564.560000pt;}
.y78_c00371{bottom:565.506667pt;}
.y7a_c00371{bottom:566.840000pt;}
.y7b_c00371{bottom:567.226667pt;}
.y7c_c00371{bottom:568.173333pt;}
.y75_c00371{bottom:593.306667pt;}
.y76_c00371{bottom:594.266667pt;}
.y74_c00371{bottom:604.733333pt;}
.y72_c00371{bottom:606.640000pt;}
.y73_c00371{bottom:607.600000pt;}
.y71_c00371{bottom:622.266667pt;}
.y70_c00371{bottom:624.933333pt;}
.y51_c00371{bottom:646.440000pt;}
.y52_c00371{bottom:648.360000pt;}
.y4c_c00371{bottom:662.440000pt;}
.y4f_c00371{bottom:663.773333pt;}
.y50_c00371{bottom:665.306667pt;}
.y4d_c00371{bottom:665.693333pt;}
.y4e_c00371{bottom:665.893333pt;}
.y4b_c00371{bottom:666.640000pt;}
.y49_c00371{bottom:680.360000pt;}
.y4a_c00371{bottom:680.733333pt;}
.y48_c00371{bottom:681.106667pt;}
.y47_c00371{bottom:683.026667pt;}
.y46_c00371{bottom:698.440000pt;}
.y45_c00371{bottom:700.360000pt;}
.y44_c00371{bottom:700.560000pt;}
.y3f_c00371{bottom:715.773333pt;}
.y40_c00371{bottom:716.360000pt;}
.y43_c00371{bottom:717.106667pt;}
.y3e_c00371{bottom:717.693333pt;}
.y41_c00371{bottom:717.893333pt;}
.y42_c00371{bottom:718.640000pt;}
.y39_c00371{bottom:733.493333pt;}
.y3b_c00371{bottom:734.066667pt;}
.y3a_c00371{bottom:735.026667pt;}
.y3d_c00371{bottom:735.226667pt;}
.y3c_c00371{bottom:735.973333pt;}
.y38_c00371{bottom:736.360000pt;}
.y35_c00371{bottom:751.773333pt;}
.y36_c00371{bottom:753.306667pt;}
.y37_c00371{bottom:753.693333pt;}
.y34_c00371{bottom:769.106667pt;}
.y33_c00371{bottom:770.640000pt;}
.y32_c00371{bottom:771.026667pt;}
.y30_c00371{bottom:786.440000pt;}
.y31_c00371{bottom:787.226667pt;}
.y2f_c00371{bottom:788.360000pt;}
.y2b_c00371{bottom:803.773333pt;}
.y2e_c00371{bottom:804.560000pt;}
.y2c_c00371{bottom:804.733333pt;}
.y29_c00371{bottom:805.306667pt;}
.y2a_c00371{bottom:805.693333pt;}
.y2d_c00371{bottom:806.640000pt;}
.y25_c00371{bottom:821.106667pt;}
.y24_c00371{bottom:821.893333pt;}
.y26_c00371{bottom:823.026667pt;}
.y27_c00371{bottom:823.226667pt;}
.y28_c00371{bottom:823.973333pt;}
.y21_c00371{bottom:838.440000pt;}
.y20_c00371{bottom:840.360000pt;}
.y22_c00371{bottom:841.306667pt;}
.y23_c00371{bottom:841.693333pt;}
.y1f_c00371{bottom:855.026667pt;}
.y1b_c00371{bottom:855.773333pt;}
.y1c_c00371{bottom:857.693333pt;}
.y1e_c00371{bottom:857.893333pt;}
.y1d_c00371{bottom:858.640000pt;}
.y16_c00371{bottom:873.106667pt;}
.y1a_c00371{bottom:874.440000pt;}
.y18_c00371{bottom:875.026667pt;}
.y17_c00371{bottom:875.226667pt;}
.y19_c00371{bottom:875.400000pt;}
.y11_c00371{bottom:890.440000pt;}
.y14_c00371{bottom:891.400000pt;}
.y12_c00371{bottom:892.360000pt;}
.y13_c00371{bottom:892.560000pt;}
.y15_c00371{bottom:893.693333pt;}
.ye_c00371{bottom:907.026667pt;}
.yb_c00371{bottom:907.773333pt;}
.yd_c00371{bottom:908.733333pt;}
.y10_c00371{bottom:909.106667pt;}
.yc_c00371{bottom:909.693333pt;}
.yf_c00371{bottom:909.893333pt;}
.ya_c00371{bottom:910.640000pt;}
.y9_c00371{bottom:911.026667pt;}
.y6_c00371{bottom:927.026667pt;}
.y7_c00371{bottom:927.226667pt;}
.y8_c00371{bottom:928.360000pt;}
.y4_c00371{bottom:943.773333pt;}
.y5_c00371{bottom:944.560000pt;}
.y3_c00371{bottom:945.693333pt;}
.y2_c00371{bottom:977.693333pt;}
.y1_c00371{bottom:979.600000pt;}
.h8_c00371{height:3.739141pt;}
.hd_c00371{height:12.988594pt;}
.ha_c00371{height:14.890964pt;}
.hc_c00371{height:20.224297pt;}
.h4_c00371{height:20.466875pt;}
.h1_c00371{height:22.303646pt;}
.hb_c00371{height:25.800208pt;}
.h5_c00371{height:27.879557pt;}
.h2_c00371{height:31.618698pt;}
.h9_c00371{height:33.212891pt;}
.h6_c00371{height:35.357839pt;}
.h3_c00371{height:39.031380pt;}
.h7_c00371{height:42.770521pt;}
.h0_c00371{height:1186.666667pt;}
.w0_c00371{width:782.666667pt;}
.x0_c00371{left:0.000000pt;}
.xb8_c00371{left:132.960000pt;}
.x8c_c00371{left:134.666667pt;}
.x25_c00371{left:136.000000pt;}
.x2_c00371{left:136.960000pt;}
.xb0_c00371{left:147.240000pt;}
.xd6_c00371{left:149.333333pt;}
.x12_c00371{left:150.293333pt;}
.xd0_c00371{left:152.000000pt;}
.xf_c00371{left:157.333333pt;}
.x56_c00371{left:160.373333pt;}
.xa0_c00371{left:161.706667pt;}
.x8d_c00371{left:162.666667pt;}
.x69_c00371{left:164.373333pt;}
.xd7_c00371{left:168.960000pt;}
.x92_c00371{left:172.373333pt;}
.xbf_c00371{left:174.293333pt;}
.x3_c00371{left:178.093333pt;}
.x72_c00371{left:179.626667pt;}
.xe1_c00371{left:180.960000pt;}
.xdd_c00371{left:184.960000pt;}
.x62_c00371{left:186.666667pt;}
.x4c_c00371{left:187.626667pt;}
.x6a_c00371{left:189.706667pt;}
.xf4_c00371{left:190.666667pt;}
.xeb_c00371{left:193.333333pt;}
.x13_c00371{left:195.040000pt;}
.x34_c00371{left:196.373333pt;}
.xb9_c00371{left:197.333333pt;}
.xe9_c00371{left:199.040000pt;}
.x26_c00371{left:200.373333pt;}
.x57_c00371{left:201.706667pt;}
.x10_c00371{left:203.040000pt;}
.x93_c00371{left:204.960000pt;}
.x4_c00371{left:210.293333pt;}
.x41_c00371{left:212.000000pt;}
.xf0_c00371{left:214.666667pt;}
.x8e_c00371{left:216.373333pt;}
.xa1_c00371{left:217.333333pt;}
.x35_c00371{left:218.293333pt;}
.x11_c00371{left:221.333333pt;}
.xf1_c00371{left:226.666667pt;}
.x9a_c00371{left:227.626667pt;}
.x73_c00371{left:229.706667pt;}
.xc0_c00371{left:231.040000pt;}
.x27_c00371{left:233.706667pt;}
.x58_c00371{left:235.040000pt;}
.xba_c00371{left:236.960000pt;}
.x42_c00371{left:239.040000pt;}
.x5_c00371{left:241.333333pt;}
.x4d_c00371{left:244.373333pt;}
.xf3_c00371{left:246.293333pt;}
.xad_c00371{left:247.626667pt;}
.x14_c00371{left:252.000000pt;}
.x7c_c00371{left:253.706667pt;}
.x74_c00371{left:256.000000pt;}
.x28_c00371{left:257.333333pt;}
.x59_c00371{left:258.666667pt;}
.xb1_c00371{left:260.373333pt;}
.x15_c00371{left:261.333333pt;}
.xcf_c00371{left:266.293333pt;}
.x43_c00371{left:269.333333pt;}
.x36_c00371{left:271.626667pt;}
.x16_c00371{left:272.960000pt;}
.x4e_c00371{left:274.666667pt;}
.x63_c00371{left:276.000000pt;}
.x6_c00371{left:277.333333pt;}
.x17_c00371{left:285.333333pt;}
.xd1_c00371{left:286.666667pt;}
.x37_c00371{left:288.373333pt;}
.x7d_c00371{left:290.293333pt;}
.x75_c00371{left:292.000000pt;}
.xc8_c00371{left:294.666667pt;}
.x18_c00371{left:297.333333pt;}
.x94_c00371{left:299.626667pt;}
.x7_c00371{left:300.760000pt;}
.xd8_c00371{left:301.706667pt;}
.xa2_c00371{left:303.040000pt;}
.x29_c00371{left:304.000000pt;}
.xde_c00371{left:305.333333pt;}
.xe2_c00371{left:306.666667pt;}
.x44_c00371{left:308.000000pt;}
.x19_c00371{left:309.333333pt;}
.x38_c00371{left:311.040000pt;}
.xfb_c00371{left:312.000000pt;}
.x7e_c00371{left:313.706667pt;}
.xd2_c00371{left:314.666667pt;}
.x85_c00371{left:317.706667pt;}
.xb2_c00371{left:318.666667pt;}
.x64_c00371{left:321.333333pt;}
.x1a_c00371{left:322.666667pt;}
.xc1_c00371{left:324.000000pt;}
.x8f_c00371{left:326.293333pt;}
.xa3_c00371{left:328.000000pt;}
.x9b_c00371{left:329.706667pt;}
.xae_c00371{left:331.040000pt;}
.x1b_c00371{left:337.333333pt;}
.x7f_c00371{left:338.666667pt;}
.xed_c00371{left:340.000000pt;}
.x86_c00371{left:340.960000pt;}
.x4f_c00371{left:342.293333pt;}
.x1_c00371{left:344.000000pt;}
.x39_c00371{left:345.333333pt;}
.xec_c00371{left:347.040000pt;}
.xf8_c00371{left:348.000000pt;}
.x1c_c00371{left:349.333333pt;}
.xea_c00371{left:350.666667pt;}
.x6b_c00371{left:352.000000pt;}
.x2a_c00371{left:353.333333pt;}
.xaf_c00371{left:354.666667pt;}
.xd5_c00371{left:357.333333pt;}
.xbb_c00371{left:358.666667pt;}
.xc2_c00371{left:359.626667pt;}
.x45_c00371{left:362.666667pt;}
.x50_c00371{left:366.666667pt;}
.x95_c00371{left:368.373333pt;}
.xa4_c00371{left:372.000000pt;}
.x2b_c00371{left:373.333333pt;}
.x5a_c00371{left:375.040000pt;}
.x1d_c00371{left:376.000000pt;}
.x8_c00371{left:379.040000pt;}
.xb3_c00371{left:380.000000pt;}
.xe3_c00371{left:383.040000pt;}
.x2c_c00371{left:385.333333pt;}
.xe0_c00371{left:386.666667pt;}
.x6c_c00371{left:390.666667pt;}
.x96_c00371{left:391.626667pt;}
.xd3_c00371{left:393.706667pt;}
.x51_c00371{left:396.000000pt;}
.xa5_c00371{left:397.706667pt;}
.x3a_c00371{left:398.666667pt;}
.x5b_c00371{left:400.373333pt;}
.x80_c00371{left:403.040000pt;}
.x46_c00371{left:405.333333pt;}
.x1e_c00371{left:409.333333pt;}
.x65_c00371{left:410.666667pt;}
.xc9_c00371{left:412.000000pt;}
.x76_c00371{left:414.293333pt;}
.x52_c00371{left:416.373333pt;}
.x6d_c00371{left:417.706667pt;}
.xd9_c00371{left:418.666667pt;}
.xc3_c00371{left:420.373333pt;}
.x2d_c00371{left:422.093333pt;}
.xee_c00371{left:423.040000pt;}
.x9_c00371{left:424.373333pt;}
.x3b_c00371{left:425.333333pt;}
.x81_c00371{left:427.626667pt;}
.xb4_c00371{left:429.333333pt;}
.x77_c00371{left:433.706667pt;}
.x47_c00371{left:435.040000pt;}
.x5c_c00371{left:436.000000pt;}
.x90_c00371{left:438.666667pt;}
.xca_c00371{left:439.626667pt;}
.x87_c00371{left:441.706667pt;}
.xa_c00371{left:442.666667pt;}
.x1f_c00371{left:448.000000pt;}
.xb5_c00371{left:449.706667pt;}
.x6e_c00371{left:451.040000pt;}
.x97_c00371{left:453.333333pt;}
.xa6_c00371{left:454.293333pt;}
.x78_c00371{left:458.666667pt;}
.xc4_c00371{left:461.333333pt;}
.xe7_c00371{left:463.040000pt;}
.xf5_c00371{left:464.000000pt;}
.xdb_c00371{left:465.333333pt;}
.xe8_c00371{left:466.666667pt;}
.xfa_c00371{left:468.000000pt;}
.x66_c00371{left:469.706667pt;}
.x48_c00371{left:471.040000pt;}
.x82_c00371{left:473.333333pt;}
.x3c_c00371{left:474.666667pt;}
.xbc_c00371{left:477.333333pt;}
.xc5_c00371{left:478.293333pt;}
.x6f_c00371{left:480.960000pt;}
.x53_c00371{left:482.093333pt;}
.x2e_c00371{left:484.000000pt;}
.x5d_c00371{left:486.666667pt;}
.xcb_c00371{left:488.000000pt;}
.xb6_c00371{left:488.960000pt;}
.xb_c00371{left:490.666667pt;}
.xa7_c00371{left:493.333333pt;}
.x79_c00371{left:494.666667pt;}
.x20_c00371{left:496.000000pt;}
.x3d_c00371{left:497.333333pt;}
.x70_c00371{left:499.040000pt;}
.xf9_c00371{left:500.000000pt;}
.x98_c00371{left:501.333333pt;}
.xe4_c00371{left:502.666667pt;}
.xef_c00371{left:504.000000pt;}
.xdc_c00371{left:506.666667pt;}
.xfc_c00371{left:508.000000pt;}
.x5e_c00371{left:509.333333pt;}
.x54_c00371{left:511.040000pt;}
.xa8_c00371{left:512.960000pt;}
.x21_c00371{left:517.706667pt;}
.xb7_c00371{left:520.000000pt;}
.x2f_c00371{left:524.000000pt;}
.xcc_c00371{left:524.960000pt;}
.x67_c00371{left:526.293333pt;}
.x83_c00371{left:529.706667pt;}
.x49_c00371{left:531.626667pt;}
.x88_c00371{left:536.000000pt;}
.x3e_c00371{left:537.333333pt;}
.x30_c00371{left:538.293333pt;}
.xf2_c00371{left:540.000000pt;}
.xbd_c00371{left:541.333333pt;}
.xe5_c00371{left:542.666667pt;}
.x9c_c00371{left:543.626667pt;}
.xc_c00371{left:545.706667pt;}
.x99_c00371{left:547.040000pt;}
.x22_c00371{left:548.373333pt;}
.x31_c00371{left:554.293333pt;}
.xc6_c00371{left:557.333333pt;}
.xa9_c00371{left:558.666667pt;}
.x9d_c00371{left:561.706667pt;}
.x55_c00371{left:565.333333pt;}
.x7a_c00371{left:570.293333pt;}
.x3f_c00371{left:573.333333pt;}
.xf7_c00371{left:576.000000pt;}
.x89_c00371{left:577.333333pt;}
.xda_c00371{left:578.666667pt;}
.xaa_c00371{left:580.000000pt;}
.x23_c00371{left:580.960000pt;}
.xdf_c00371{left:582.666667pt;}
.x91_c00371{left:584.000000pt;}
.x9e_c00371{left:585.333333pt;}
.x5f_c00371{left:586.293333pt;}
.x4a_c00371{left:588.000000pt;}
.xcd_c00371{left:589.706667pt;}
.xbe_c00371{left:590.666667pt;}
.x32_c00371{left:595.040000pt;}
.x84_c00371{left:596.373333pt;}
.x7b_c00371{left:600.000000pt;}
.x8a_c00371{left:601.333333pt;}
.x40_c00371{left:604.000000pt;}
.x68_c00371{left:605.333333pt;}
.xd4_c00371{left:606.666667pt;}
.xd_c00371{left:608.373333pt;}
.x24_c00371{left:609.706667pt;}
.xab_c00371{left:611.626667pt;}
.x60_c00371{left:613.333333pt;}
.x4b_c00371{left:614.666667pt;}
.xf6_c00371{left:617.706667pt;}
.x33_c00371{left:619.040000pt;}
.x71_c00371{left:620.373333pt;}
.xe6_c00371{left:623.040000pt;}
.xe_c00371{left:624.000000pt;}
.xce_c00371{left:625.333333pt;}
.x9f_c00371{left:626.293333pt;}
.xc7_c00371{left:628.373333pt;}
.xac_c00371{left:629.706667pt;}
.x8b_c00371{left:636.000000pt;}
.x61_c00371{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_797e2fdc9c778028c4ebf727.woff2')format("woff");}.ff1_c00372{font-family:ff1_c00372;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m93_c00372{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m54_c00372{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m6b_c00372{transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);}
.md1_c00372{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m30_c00372{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m21_c00372{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m28_c00372{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m7b_c00372{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m89_c00372{transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);}
.mce_c00372{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m73_c00372{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m4f_c00372{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mde_c00372{transform:matrix(0.389187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389187,0.000000,0.000000,0.250000,0,0);}
.m20_c00372{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m97_c00372{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.md9_c00372{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.mdb_c00372{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m4d_c00372{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.mc2_c00372{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.me6_c00372{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.md4_c00372{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m1c_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);}
.mdd_c00372{transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);}
.m98_c00372{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.mda_c00372{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mcb_c00372{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m92_c00372{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m87_c00372{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m3a_c00372{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m6f_c00372{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m5d_c00372{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mbe_c00372{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m25_c00372{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m51_c00372{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m52_c00372{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m2f_c00372{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m84_c00372{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m33_c00372{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.ma4_c00372{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m88_c00372{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m26_c00372{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.me0_c00372{transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);}
.mf_c00372{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m67_c00372{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m7a_c00372{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.mc8_c00372{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.md0_c00372{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mbc_c00372{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m36_c00372{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m41_c00372{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m4_c00372{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.mbf_c00372{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m38_c00372{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m95_c00372{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m6d_c00372{transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);}
.m27_c00372{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m6_c00372{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m56_c00372{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.md7_c00372{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.m40_c00372{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m9a_c00372{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mbd_c00372{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mb5_c00372{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m55_c00372{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m5a_c00372{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m80_c00372{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m44_c00372{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.m7e_c00372{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.mdc_c00372{transform:matrix(0.441390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441390,0.000000,0.000000,0.250000,0,0);}
.m2a_c00372{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m8a_c00372{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m72_c00372{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.me1_c00372{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m4e_c00372{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mcd_c00372{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.mbb_c00372{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.mc5_c00372{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m70_c00372{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m77_c00372{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m2c_c00372{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m66_c00372{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m5f_c00372{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m9d_c00372{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m76_c00372{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m1a_c00372{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mba_c00372{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m4b_c00372{transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);}
.m57_c00372{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m1e_c00372{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.mb6_c00372{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m19_c00372{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.ma9_c00372{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m8f_c00372{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.me4_c00372{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m5c_c00372{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.mcf_c00372{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.md3_c00372{transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);}
.m7_c00372{transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);}
.m10_c00372{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.mcc_c00372{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m78_c00372{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m5_c00372{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m39_c00372{transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);}
.m65_c00372{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.mc4_c00372{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.maa_c00372{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m86_c00372{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m69_c00372{transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);}
.m79_c00372{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mae_c00372{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.me2_c00372{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m4a_c00372{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m8b_c00372{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m83_c00372{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m5b_c00372{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m1_c00372{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mc7_c00372{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m9b_c00372{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mb2_c00372{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.ma8_c00372{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m1d_c00372{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_c00372{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.mad_c00372{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m81_c00372{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m71_c00372{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.ma1_c00372{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m46_c00372{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mb3_c00372{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mb1_c00372{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mac_c00372{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.me_c00372{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m82_c00372{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.mab_c00372{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m31_c00372{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.md8_c00372{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.md2_c00372{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.ma6_c00372{transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);}
.m35_c00372{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m99_c00372{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m3e_c00372{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m60_c00372{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mc0_c00372{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m9f_c00372{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m6a_c00372{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m2_c00372{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m3d_c00372{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m11_c00372{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m15_c00372{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mb0_c00372{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.me5_c00372{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.me7_c00372{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m23_c00372{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m3c_c00372{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.maf_c00372{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m12_c00372{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m64_c00372{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m50_c00372{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mc3_c00372{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m1f_c00372{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m16_c00372{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m8d_c00372{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m8c_c00372{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mb_c00372{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m7f_c00372{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m9e_c00372{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m6e_c00372{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m49_c00372{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m37_c00372{transform:matrix(0.552905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552905,0.000000,0.000000,0.250000,0,0);}
.m2e_c00372{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m6c_c00372{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m58_c00372{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m7d_c00372{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m91_c00372{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.md5_c00372{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m62_c00372{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m3_c00372{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m9c_c00372{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m24_c00372{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m63_c00372{transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);}
.ma_c00372{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m3b_c00372{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.mc6_c00372{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m18_c00372{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m1b_c00372{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.ma5_c00372{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m4c_c00372{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mc_c00372{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.mb9_c00372{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.me3_c00372{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m22_c00372{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m8e_c00372{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.m7c_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);}
.m94_c00372{transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);}
.m0_c00372{transform:matrix(0.608088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608088,0.000000,0.000000,0.250000,0,0);}
.mca_c00372{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m9_c00372{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m53_c00372{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m96_c00372{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.mb7_c00372{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m17_c00372{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m29_c00372{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m59_c00372{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.md_c00372{transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);}
.m3f_c00372{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);}
.m45_c00372{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.ma2_c00372{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m32_c00372{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.md6_c00372{transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);}
.m8_c00372{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m13_c00372{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m43_c00372{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mc1_c00372{transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);}
.ma7_c00372{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.ma3_c00372{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m5e_c00372{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mdf_c00372{transform:matrix(0.706618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.706618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.706618,0.000000,0.000000,0.250000,0,0);}
.m74_c00372{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m68_c00372{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m2d_c00372{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mc9_c00372{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.ma0_c00372{transform:matrix(0.741186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741186,0.000000,0.000000,0.250000,0,0);}
.m14_c00372{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m90_c00372{transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);}
.m2b_c00372{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mb8_c00372{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m34_c00372{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m61_c00372{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m42_c00372{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m47_c00372{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m48_c00372{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m85_c00372{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m75_c00372{transform:matrix(0.917059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.917059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.917059,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;}
.fs5_c00372{font-size:18.720000px;}
.fs0_c00372{font-size:20.400000px;}
.fs4_c00372{font-size:25.500000px;}
.fs1_c00372{font-size:28.920000px;}
.fs3_c00372{font-size:32.340000px;}
.fs2_c00372{font-size:35.700000px;}
.fs6_c00372{font-size:39.120000px;}
.y0_c00372{bottom:0.000000px;}
.yc9_c00372{bottom:253.245000px;}
.yc8_c00372{bottom:255.405000px;}
.yc7_c00372{bottom:271.245000px;}
.yc6_c00372{bottom:272.325000px;}
.yc4_c00372{bottom:272.745000px;}
.yc5_c00372{bottom:274.470000px;}
.yc3_c00372{bottom:274.905000px;}
.ybf_c00372{bottom:291.405000px;}
.ybb_c00372{bottom:291.825000px;}
.yc2_c00372{bottom:292.245000px;}
.ybd_c00372{bottom:292.680000px;}
.yc1_c00372{bottom:293.325000px;}
.ybe_c00372{bottom:293.550000px;}
.ybc_c00372{bottom:293.745000px;}
.yc0_c00372{bottom:294.405000px;}
.yb9_c00372{bottom:311.745000px;}
.yb6_c00372{bottom:313.905000px;}
.yb8_c00372{bottom:314.130000px;}
.yb7_c00372{bottom:314.970000px;}
.yba_c00372{bottom:315.405000px;}
.yb5_c00372{bottom:332.745000px;}
.yb2_c00372{bottom:333.405000px;}
.yb4_c00372{bottom:333.825000px;}
.yb3_c00372{bottom:334.905000px;}
.yaf_c00372{bottom:349.905000px;}
.yb0_c00372{bottom:350.745000px;}
.yae_c00372{bottom:352.245000px;}
.yb1_c00372{bottom:353.970000px;}
.yad_c00372{bottom:354.405000px;}
.ya8_c00372{bottom:371.745000px;}
.yab_c00372{bottom:372.630000px;}
.yac_c00372{bottom:373.470000px;}
.yaa_c00372{bottom:373.905000px;}
.ya9_c00372{bottom:374.130000px;}
.ya3_c00372{bottom:391.245000px;}
.ya7_c00372{bottom:392.745000px;}
.ya4_c00372{bottom:393.405000px;}
.ya6_c00372{bottom:393.630000px;}
.ya5_c00372{bottom:394.905000px;}
.y9f_c00372{bottom:409.905000px;}
.ya2_c00372{bottom:410.745000px;}
.ya1_c00372{bottom:412.905000px;}
.ya0_c00372{bottom:413.130000px;}
.y9e_c00372{bottom:429.405000px;}
.y9c_c00372{bottom:430.245000px;}
.y9d_c00372{bottom:432.405000px;}
.y99_c00372{bottom:432.630000px;}
.y9b_c00372{bottom:432.825000px;}
.y98_c00372{bottom:433.470000px;}
.y9a_c00372{bottom:433.905000px;}
.y97_c00372{bottom:449.970000px;}
.y95_c00372{bottom:451.245000px;}
.y96_c00372{bottom:452.970000px;}
.y94_c00372{bottom:453.405000px;}
.y93_c00372{bottom:469.245000px;}
.y8e_c00372{bottom:470.745000px;}
.y91_c00372{bottom:471.630000px;}
.y92_c00372{bottom:471.825000px;}
.y90_c00372{bottom:472.905000px;}
.y8f_c00372{bottom:473.130000px;}
.y8a_c00372{bottom:490.245000px;}
.y8d_c00372{bottom:491.130000px;}
.y8b_c00372{bottom:492.405000px;}
.y8c_c00372{bottom:492.630000px;}
.y89_c00372{bottom:509.745000px;}
.y87_c00372{bottom:511.905000px;}
.y88_c00372{bottom:512.130000px;}
.y85_c00372{bottom:529.245000px;}
.y82_c00372{bottom:530.325000px;}
.y84_c00372{bottom:530.745000px;}
.y81_c00372{bottom:531.405000px;}
.y86_c00372{bottom:531.630000px;}
.y83_c00372{bottom:532.905000px;}
.y7f_c00372{bottom:548.970000px;}
.y80_c00372{bottom:549.825000px;}
.y7b_c00372{bottom:550.245000px;}
.y7e_c00372{bottom:551.130000px;}
.y7c_c00372{bottom:551.325000px;}
.y7d_c00372{bottom:552.405000px;}
.y76_c00372{bottom:569.745000px;}
.y78_c00372{bottom:570.630000px;}
.y79_c00372{bottom:570.825000px;}
.y77_c00372{bottom:571.905000px;}
.y7a_c00372{bottom:572.970000px;}
.y75_c00372{bottom:589.245000px;}
.y74_c00372{bottom:590.130000px;}
.y73_c00372{bottom:591.405000px;}
.y70_c00372{bottom:608.745000px;}
.y72_c00372{bottom:609.825000px;}
.y6f_c00372{bottom:610.905000px;}
.y6e_c00372{bottom:611.130000px;}
.y71_c00372{bottom:611.970000px;}
.y6c_c00372{bottom:627.405000px;}
.y6d_c00372{bottom:629.970000px;}
.y68_c00372{bottom:630.405000px;}
.y6b_c00372{bottom:630.630000px;}
.y69_c00372{bottom:630.825000px;}
.y6a_c00372{bottom:631.905000px;}
.y64_c00372{bottom:649.245000px;}
.y66_c00372{bottom:649.905000px;}
.y67_c00372{bottom:650.130000px;}
.y65_c00372{bottom:651.405000px;}
.y63_c00372{bottom:668.745000px;}
.y62_c00372{bottom:669.630000px;}
.y60_c00372{bottom:670.470000px;}
.y61_c00372{bottom:670.905000px;}
.y5f_c00372{bottom:688.245000px;}
.y5e_c00372{bottom:689.130000px;}
.y5d_c00372{bottom:690.405000px;}
.y5c_c00372{bottom:707.325000px;}
.y58_c00372{bottom:707.745000px;}
.y5a_c00372{bottom:708.825000px;}
.y5b_c00372{bottom:709.470000px;}
.y59_c00372{bottom:709.905000px;}
.y56_c00372{bottom:727.245000px;}
.y57_c00372{bottom:728.130000px;}
.y55_c00372{bottom:729.405000px;}
.y54_c00372{bottom:730.470000px;}
.y53_c00372{bottom:746.745000px;}
.y52_c00372{bottom:748.905000px;}
.y51_c00372{bottom:765.405000px;}
.y4c_c00372{bottom:766.245000px;}
.y50_c00372{bottom:767.325000px;}
.y4f_c00372{bottom:768.405000px;}
.y4d_c00372{bottom:768.630000px;}
.y4e_c00372{bottom:769.470000px;}
.y4a_c00372{bottom:785.745000px;}
.y49_c00372{bottom:787.905000px;}
.y4b_c00372{bottom:788.130000px;}
.y47_c00372{bottom:805.245000px;}
.y48_c00372{bottom:806.745000px;}
.y46_c00372{bottom:807.405000px;}
.y44_c00372{bottom:824.970000px;}
.y43_c00372{bottom:825.180000px;}
.y40_c00372{bottom:825.825000px;}
.y41_c00372{bottom:826.245000px;}
.y45_c00372{bottom:827.130000px;}
.y3f_c00372{bottom:827.970000px;}
.y42_c00372{bottom:828.405000px;}
.y3c_c00372{bottom:845.745000px;}
.y3e_c00372{bottom:846.825000px;}
.y3d_c00372{bottom:847.470000px;}
.y3a_c00372{bottom:847.905000px;}
.y3b_c00372{bottom:848.970000px;}
.y37_c00372{bottom:865.245000px;}
.y39_c00372{bottom:866.130000px;}
.y38_c00372{bottom:866.970000px;}
.y36_c00372{bottom:867.405000px;}
.y32_c00372{bottom:884.745000px;}
.y34_c00372{bottom:885.825000px;}
.y35_c00372{bottom:886.470000px;}
.y33_c00372{bottom:886.905000px;}
.y2f_c00372{bottom:903.405000px;}
.y2c_c00372{bottom:904.245000px;}
.y31_c00372{bottom:905.745000px;}
.y2d_c00372{bottom:906.405000px;}
.y2e_c00372{bottom:906.630000px;}
.y30_c00372{bottom:907.470000px;}
.y24_c00372{bottom:923.745000px;}
.y2a_c00372{bottom:923.970000px;}
.y29_c00372{bottom:924.825000px;}
.y25_c00372{bottom:925.245000px;}
.y26_c00372{bottom:925.905000px;}
.y27_c00372{bottom:926.130000px;}
.y28_c00372{bottom:926.970000px;}
.y2b_c00372{bottom:927.405000px;}
.y20_c00372{bottom:943.245000px;}
.y23_c00372{bottom:944.745000px;}
.y22_c00372{bottom:945.405000px;}
.y21_c00372{bottom:946.905000px;}
.y1f_c00372{bottom:964.245000px;}
.y1c_c00372{bottom:964.905000px;}
.y1e_c00372{bottom:965.970000px;}
.y1d_c00372{bottom:966.405000px;}
.y1b_c00372{bottom:983.550000px;}
.y17_c00372{bottom:983.745000px;}
.y18_c00372{bottom:984.630000px;}
.y16_c00372{bottom:984.825000px;}
.y1a_c00372{bottom:985.050000px;}
.y19_c00372{bottom:985.905000px;}
.y13_c00372{bottom:1003.245000px;}
.y15_c00372{bottom:1004.130000px;}
.y14_c00372{bottom:1005.405000px;}
.y10_c00372{bottom:1022.745000px;}
.y12_c00372{bottom:1023.825000px;}
.y11_c00372{bottom:1024.905000px;}
.yf_c00372{bottom:1041.825000px;}
.y9_c00372{bottom:1042.245000px;}
.ya_c00372{bottom:1043.325000px;}
.ye_c00372{bottom:1043.970000px;}
.yb_c00372{bottom:1044.405000px;}
.yc_c00372{bottom:1044.630000px;}
.yd_c00372{bottom:1045.470000px;}
.y8_c00372{bottom:1060.905000px;}
.y5_c00372{bottom:1061.325000px;}
.y4_c00372{bottom:1061.745000px;}
.y7_c00372{bottom:1063.470000px;}
.y3_c00372{bottom:1063.905000px;}
.y6_c00372{bottom:1064.970000px;}
.y2_c00372{bottom:1099.905000px;}
.y1_c00372{bottom:1102.050000px;}
.h6_c00372{height:23.025234px;}
.h1_c00372{height:25.091602px;}
.h5_c00372{height:31.364502px;}
.h2_c00372{height:35.571035px;}
.h4_c00372{height:39.777568px;}
.h3_c00372{height:43.910303px;}
.h7_c00372{height:48.116836px;}
.h0_c00372{height:1335.000000px;}
.w0_c00372{width:880.500000px;}
.x0_c00372{left:0.000000px;}
.x3_c00372{left:151.920000px;}
.x7f_c00372{left:153.420000px;}
.x99_c00372{left:154.500000px;}
.x10e_c00372{left:156.000000px;}
.x40_c00372{left:168.420000px;}
.x90_c00372{left:169.500000px;}
.x78_c00372{left:171.000000px;}
.x9a_c00372{left:172.500000px;}
.xa6_c00372{left:174.420000px;}
.x54_c00372{left:175.500000px;}
.x4_c00372{left:178.080000px;}
.xbc_c00372{left:180.000000px;}
.xc2_c00372{left:181.080000px;}
.xfc_c00372{left:183.000000px;}
.xdb_c00372{left:184.500000px;}
.x3d_c00372{left:185.580000px;}
.x80_c00372{left:189.000000px;}
.x55_c00372{left:190.500000px;}
.xf4_c00372{left:194.580000px;}
.x4a_c00372{left:198.000000px;}
.x79_c00372{left:199.500000px;}
.x70_c00372{left:201.420000px;}
.xb6_c00372{left:202.500000px;}
.x2b_c00372{left:203.580000px;}
.x61_c00372{left:209.580000px;}
.xa0_c00372{left:211.080000px;}
.xac_c00372{left:212.580000px;}
.x13_c00372{left:216.000000px;}
.x5_c00372{left:219.420000px;}
.x89_c00372{left:220.500000px;}
.x69_c00372{left:222.420000px;}
.x32_c00372{left:223.920000px;}
.x103_c00372{left:225.420000px;}
.x2c_c00372{left:226.500000px;}
.xad_c00372{left:229.500000px;}
.x8a_c00372{left:231.000000px;}
.xf2_c00372{left:234.000000px;}
.xc3_c00372{left:235.500000px;}
.xcc_c00372{left:237.420000px;}
.x118_c00372{left:239.580000px;}
.xdc_c00372{left:241.500000px;}
.x9b_c00372{left:243.000000px;}
.xb7_c00372{left:246.420000px;}
.xe3_c00372{left:247.500000px;}
.x83_c00372{left:248.580000px;}
.xbd_c00372{left:250.500000px;}
.x21_c00372{left:252.420000px;}
.x14_c00372{left:253.920000px;}
.x56_c00372{left:255.000000px;}
.x10f_c00372{left:256.500000px;}
.x3e_c00372{left:258.000000px;}
.xf5_c00372{left:259.500000px;}
.x4b_c00372{left:262.500000px;}
.x7a_c00372{left:263.580000px;}
.x6_c00372{left:268.500000px;}
.xbe_c00372{left:270.420000px;}
.x33_c00372{left:271.500000px;}
.xae_c00372{left:274.920000px;}
.x111_c00372{left:276.000000px;}
.x22_c00372{left:279.000000px;}
.xc4_c00372{left:280.500000px;}
.x15_c00372{left:281.580000px;}
.x7_c00372{left:283.920000px;}
.x71_c00372{left:286.080000px;}
.x41_c00372{left:288.000000px;}
.x57_c00372{left:289.500000px;}
.x6a_c00372{left:291.000000px;}
.x91_c00372{left:292.080000px;}
.xec_c00372{left:294.000000px;}
.x81_c00372{left:295.080000px;}
.xa7_c00372{left:297.420000px;}
.x34_c00372{left:300.000000px;}
.x58_c00372{left:301.500000px;}
.x42_c00372{left:304.920000px;}
.x72_c00372{left:306.420000px;}
.x3f_c00372{left:307.500000px;}
.x4c_c00372{left:309.420000px;}
.x2d_c00372{left:311.580000px;}
.xd3_c00372{left:313.500000px;}
.xaf_c00372{left:316.500000px;}
.xc5_c00372{left:318.000000px;}
.x9c_c00372{left:319.500000px;}
.xe4_c00372{left:320.580000px;}
.x92_c00372{left:322.500000px;}
.x8_c00372{left:324.000000px;}
.xd7_c00372{left:327.420000px;}
.xb0_c00372{left:328.500000px;}
.x7b_c00372{left:331.500000px;}
.x43_c00372{left:333.420000px;}
.xa8_c00372{left:337.920000px;}
.xe5_c00372{left:340.500000px;}
.x93_c00372{left:342.420000px;}
.x8b_c00372{left:344.145000px;}
.x59_c00372{left:345.420000px;}
.x35_c00372{left:347.580000px;}
.x23_c00372{left:349.080000px;}
.x101_c00372{left:351.000000px;}
.x16_c00372{left:352.500000px;}
.x113_c00372{left:355.500000px;}
.xd4_c00372{left:356.580000px;}
.x62_c00372{left:360.420000px;}
.x104_c00372{left:361.920000px;}
.xfd_c00372{left:363.000000px;}
.x82_c00372{left:364.920000px;}
.x84_c00372{left:366.420000px;}
.x9_c00372{left:368.580000px;}
.x4d_c00372{left:371.580000px;}
.xed_c00372{left:373.500000px;}
.x9d_c00372{left:376.080000px;}
.xb1_c00372{left:378.420000px;}
.xc6_c00372{left:379.500000px;}
.x1_c00372{left:381.000000px;}
.xcd_c00372{left:382.500000px;}
.x44_c00372{left:384.000000px;}
.xbf_c00372{left:385.500000px;}
.x119_c00372{left:387.420000px;}
.xd8_c00372{left:388.920000px;}
.x4e_c00372{left:390.000000px;}
.x5a_c00372{left:391.080000px;}
.xdd_c00372{left:393.000000px;}
.xf6_c00372{left:396.000000px;}
.xa_c00372{left:397.920000px;}
.xa1_c00372{left:399.000000px;}
.x36_c00372{left:400.275000px;}
.xe6_c00372{left:402.000000px;}
.xce_c00372{left:403.500000px;}
.x2e_c00372{left:405.000000px;}
.x6b_c00372{left:408.000000px;}
.x85_c00372{left:409.500000px;}
.xee_c00372{left:412.500000px;}
.x105_c00372{left:414.420000px;}
.xe7_c00372{left:415.920000px;}
.xf7_c00372{left:417.000000px;}
.x45_c00372{left:418.500000px;}
.x24_c00372{left:422.580000px;}
.xb_c00372{left:424.500000px;}
.xfe_c00372{left:426.000000px;}
.x5b_c00372{left:427.500000px;}
.x102_c00372{left:429.000000px;}
.x94_c00372{left:430.500000px;}
.xc7_c00372{left:433.500000px;}
.xb2_c00372{left:436.920000px;}
.xa9_c00372{left:438.420000px;}
.x37_c00372{left:439.920000px;}
.x2f_c00372{left:442.500000px;}
.xef_c00372{left:444.000000px;}
.x17_c00372{left:445.500000px;}
.x73_c00372{left:447.420000px;}
.xcf_c00372{left:448.500000px;}
.x4f_c00372{left:450.000000px;}
.x38_c00372{left:451.080000px;}
.xde_c00372{left:454.920000px;}
.xe8_c00372{left:456.000000px;}
.xc0_c00372{left:457.500000px;}
.xb3_c00372{left:459.420000px;}
.xc_c00372{left:463.080000px;}
.x18_c00372{left:465.000000px;}
.x25_c00372{left:468.000000px;}
.x115_c00372{left:469.500000px;}
.x95_c00372{left:471.000000px;}
.xe9_c00372{left:472.500000px;}
.x63_c00372{left:474.420000px;}
.x114_c00372{left:477.420000px;}
.x19_c00372{left:478.500000px;}
.xd0_c00372{left:480.000000px;}
.xd_c00372{left:481.920000px;}
.x46_c00372{left:484.080000px;}
.x96_c00372{left:489.420000px;}
.x6c_c00372{left:490.920000px;}
.x116_c00372{left:492.420000px;}
.x106_c00372{left:493.500000px;}
.x26_c00372{left:495.000000px;}
.x30_c00372{left:496.500000px;}
.xff_c00372{left:499.500000px;}
.x64_c00372{left:500.580000px;}
.x47_c00372{left:502.080000px;}
.x108_c00372{left:504.420000px;}
.x5c_c00372{left:507.000000px;}
.xe_c00372{left:508.920000px;}
.xf8_c00372{left:510.420000px;}
.x1a_c00372{left:513.420000px;}
.x97_c00372{left:516.000000px;}
.xdf_c00372{left:517.500000px;}
.xc1_c00372{left:519.000000px;}
.xa2_c00372{left:521.580000px;}
.x39_c00372{left:525.420000px;}
.x109_c00372{left:526.920000px;}
.xaa_c00372{left:528.000000px;}
.x8c_c00372{left:529.920000px;}
.x86_c00372{left:531.420000px;}
.xe0_c00372{left:532.500000px;}
.xb4_c00372{left:534.420000px;}
.x1b_c00372{left:535.500000px;}
.x3a_c00372{left:537.855000px;}
.xf9_c00372{left:538.920000px;}
.xd5_c00372{left:541.500000px;}
.x10c_c00372{left:542.580000px;}
.x74_c00372{left:544.500000px;}
.x48_c00372{left:547.500000px;}
.x8d_c00372{left:549.000000px;}
.x7c_c00372{left:550.500000px;}
.x65_c00372{left:551.580000px;}
.x5d_c00372{left:554.580000px;}
.xf_c00372{left:556.500000px;}
.xd9_c00372{left:559.500000px;}
.xa3_c00372{left:562.500000px;}
.x1c_c00372{left:563.580000px;}
.x27_c00372{left:565.920000px;}
.xb8_c00372{left:567.000000px;}
.xc8_c00372{left:568.500000px;}
.x50_c00372{left:570.000000px;}
.x5e_c00372{left:571.080000px;}
.x10_c00372{left:573.000000px;}
.x9e_c00372{left:576.420000px;}
.xab_c00372{left:579.000000px;}
.xea_c00372{left:580.080000px;}
.x6d_c00372{left:583.500000px;}
.xb9_c00372{left:585.420000px;}
.x51_c00372{left:588.000000px;}
.x1d_c00372{left:591.420000px;}
.x98_c00372{left:594.000000px;}
.xa4_c00372{left:595.500000px;}
.x66_c00372{left:598.500000px;}
.xe1_c00372{left:599.580000px;}
.x28_c00372{left:601.500000px;}
.x75_c00372{left:602.580000px;}
.x8e_c00372{left:605.775000px;}
.x31_c00372{left:610.080000px;}
.xba_c00372{left:612.000000px;}
.x11_c00372{left:614.580000px;}
.xfa_c00372{left:616.500000px;}
.x3b_c00372{left:618.420000px;}
.x29_c00372{left:619.920000px;}
.x76_c00372{left:621.420000px;}
.x6e_c00372{left:622.500000px;}
.x87_c00372{left:624.645000px;}
.xeb_c00372{left:628.080000px;}
.xc9_c00372{left:629.580000px;}
.x1e_c00372{left:631.920000px;}
.xe2_c00372{left:633.000000px;}
.x110_c00372{left:634.500000px;}
.x49_c00372{left:635.580000px;}
.x7d_c00372{left:637.080000px;}
.xf3_c00372{left:639.000000px;}
.xa5_c00372{left:641.580000px;}
.x5f_c00372{left:643.920000px;}
.xf0_c00372{left:645.000000px;}
.x2a_c00372{left:646.500000px;}
.x52_c00372{left:648.420000px;}
.x77_c00372{left:649.500000px;}
.x8f_c00372{left:651.000000px;}
.xd1_c00372{left:652.500000px;}
.x107_c00372{left:653.580000px;}
.x7e_c00372{left:655.920000px;}
.xb5_c00372{left:657.420000px;}
.xca_c00372{left:660.420000px;}
.x6f_c00372{left:662.580000px;}
.x67_c00372{left:664.920000px;}
.x12_c00372{left:666.000000px;}
.xd2_c00372{left:667.920000px;}
.x117_c00372{left:669.420000px;}
.x1f_c00372{left:674.580000px;}
.xda_c00372{left:676.920000px;}
.xd6_c00372{left:678.000000px;}
.x112_c00372{left:680.580000px;}
.x10d_c00372{left:682.500000px;}
.x60_c00372{left:683.580000px;}
.x10a_c00372{left:685.080000px;}
.x88_c00372{left:686.580000px;}
.x9f_c00372{left:688.500000px;}
.x11a_c00372{left:693.000000px;}
.x53_c00372{left:694.500000px;}
.x3c_c00372{left:696.000000px;}
.xfb_c00372{left:697.500000px;}
.xcb_c00372{left:699.420000px;}
.x100_c00372{left:700.500000px;}
.x10b_c00372{left:702.000000px;}
.x2_c00372{left:703.080000px;}
.x20_c00372{left:706.920000px;}
.x11b_c00372{left:711.420000px;}
.x68_c00372{left:715.500000px;}
.xbb_c00372{left:717.000000px;}
.xf1_c00372{left:721.500000px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.ls0_c00372{letter-spacing:0.000000pt;}
.ws0_c00372{word-spacing:0.000000pt;}
.fs5_c00372{font-size:16.640000pt;}
.fs0_c00372{font-size:18.133333pt;}
.fs4_c00372{font-size:22.666667pt;}
.fs1_c00372{font-size:25.706667pt;}
.fs3_c00372{font-size:28.746667pt;}
.fs2_c00372{font-size:31.733333pt;}
.fs6_c00372{font-size:34.773333pt;}
.y0_c00372{bottom:0.000000pt;}
.yc9_c00372{bottom:225.106667pt;}
.yc8_c00372{bottom:227.026667pt;}
.yc7_c00372{bottom:241.106667pt;}
.yc6_c00372{bottom:242.066667pt;}
.yc4_c00372{bottom:242.440000pt;}
.yc5_c00372{bottom:243.973333pt;}
.yc3_c00372{bottom:244.360000pt;}
.ybf_c00372{bottom:259.026667pt;}
.ybb_c00372{bottom:259.400000pt;}
.yc2_c00372{bottom:259.773333pt;}
.ybd_c00372{bottom:260.160000pt;}
.yc1_c00372{bottom:260.733333pt;}
.ybe_c00372{bottom:260.933333pt;}
.ybc_c00372{bottom:261.106667pt;}
.yc0_c00372{bottom:261.693333pt;}
.yb9_c00372{bottom:277.106667pt;}
.yb6_c00372{bottom:279.026667pt;}
.yb8_c00372{bottom:279.226667pt;}
.yb7_c00372{bottom:279.973333pt;}
.yba_c00372{bottom:280.360000pt;}
.yb5_c00372{bottom:295.773333pt;}
.yb2_c00372{bottom:296.360000pt;}
.yb4_c00372{bottom:296.733333pt;}
.yb3_c00372{bottom:297.693333pt;}
.yaf_c00372{bottom:311.026667pt;}
.yb0_c00372{bottom:311.773333pt;}
.yae_c00372{bottom:313.106667pt;}
.yb1_c00372{bottom:314.640000pt;}
.yad_c00372{bottom:315.026667pt;}
.ya8_c00372{bottom:330.440000pt;}
.yab_c00372{bottom:331.226667pt;}
.yac_c00372{bottom:331.973333pt;}
.yaa_c00372{bottom:332.360000pt;}
.ya9_c00372{bottom:332.560000pt;}
.ya3_c00372{bottom:347.773333pt;}
.ya7_c00372{bottom:349.106667pt;}
.ya4_c00372{bottom:349.693333pt;}
.ya6_c00372{bottom:349.893333pt;}
.ya5_c00372{bottom:351.026667pt;}
.y9f_c00372{bottom:364.360000pt;}
.ya2_c00372{bottom:365.106667pt;}
.ya1_c00372{bottom:367.026667pt;}
.ya0_c00372{bottom:367.226667pt;}
.y9e_c00372{bottom:381.693333pt;}
.y9c_c00372{bottom:382.440000pt;}
.y9d_c00372{bottom:384.360000pt;}
.y99_c00372{bottom:384.560000pt;}
.y9b_c00372{bottom:384.733333pt;}
.y98_c00372{bottom:385.306667pt;}
.y9a_c00372{bottom:385.693333pt;}
.y97_c00372{bottom:399.973333pt;}
.y95_c00372{bottom:401.106667pt;}
.y96_c00372{bottom:402.640000pt;}
.y94_c00372{bottom:403.026667pt;}
.y93_c00372{bottom:417.106667pt;}
.y8e_c00372{bottom:418.440000pt;}
.y91_c00372{bottom:419.226667pt;}
.y92_c00372{bottom:419.400000pt;}
.y90_c00372{bottom:420.360000pt;}
.y8f_c00372{bottom:420.560000pt;}
.y8a_c00372{bottom:435.773333pt;}
.y8d_c00372{bottom:436.560000pt;}
.y8b_c00372{bottom:437.693333pt;}
.y8c_c00372{bottom:437.893333pt;}
.y89_c00372{bottom:453.106667pt;}
.y87_c00372{bottom:455.026667pt;}
.y88_c00372{bottom:455.226667pt;}
.y85_c00372{bottom:470.440000pt;}
.y82_c00372{bottom:471.400000pt;}
.y84_c00372{bottom:471.773333pt;}
.y81_c00372{bottom:472.360000pt;}
.y86_c00372{bottom:472.560000pt;}
.y83_c00372{bottom:473.693333pt;}
.y7f_c00372{bottom:487.973333pt;}
.y80_c00372{bottom:488.733333pt;}
.y7b_c00372{bottom:489.106667pt;}
.y7e_c00372{bottom:489.893333pt;}
.y7c_c00372{bottom:490.066667pt;}
.y7d_c00372{bottom:491.026667pt;}
.y76_c00372{bottom:506.440000pt;}
.y78_c00372{bottom:507.226667pt;}
.y79_c00372{bottom:507.400000pt;}
.y77_c00372{bottom:508.360000pt;}
.y7a_c00372{bottom:509.306667pt;}
.y75_c00372{bottom:523.773333pt;}
.y74_c00372{bottom:524.560000pt;}
.y73_c00372{bottom:525.693333pt;}
.y70_c00372{bottom:541.106667pt;}
.y72_c00372{bottom:542.066667pt;}
.y6f_c00372{bottom:543.026667pt;}
.y6e_c00372{bottom:543.226667pt;}
.y71_c00372{bottom:543.973333pt;}
.y6c_c00372{bottom:557.693333pt;}
.y6d_c00372{bottom:559.973333pt;}
.y68_c00372{bottom:560.360000pt;}
.y6b_c00372{bottom:560.560000pt;}
.y69_c00372{bottom:560.733333pt;}
.y6a_c00372{bottom:561.693333pt;}
.y64_c00372{bottom:577.106667pt;}
.y66_c00372{bottom:577.693333pt;}
.y67_c00372{bottom:577.893333pt;}
.y65_c00372{bottom:579.026667pt;}
.y63_c00372{bottom:594.440000pt;}
.y62_c00372{bottom:595.226667pt;}
.y60_c00372{bottom:595.973333pt;}
.y61_c00372{bottom:596.360000pt;}
.y5f_c00372{bottom:611.773333pt;}
.y5e_c00372{bottom:612.560000pt;}
.y5d_c00372{bottom:613.693333pt;}
.y5c_c00372{bottom:628.733333pt;}
.y58_c00372{bottom:629.106667pt;}
.y5a_c00372{bottom:630.066667pt;}
.y5b_c00372{bottom:630.640000pt;}
.y59_c00372{bottom:631.026667pt;}
.y56_c00372{bottom:646.440000pt;}
.y57_c00372{bottom:647.226667pt;}
.y55_c00372{bottom:648.360000pt;}
.y54_c00372{bottom:649.306667pt;}
.y53_c00372{bottom:663.773333pt;}
.y52_c00372{bottom:665.693333pt;}
.y51_c00372{bottom:680.360000pt;}
.y4c_c00372{bottom:681.106667pt;}
.y50_c00372{bottom:682.066667pt;}
.y4f_c00372{bottom:683.026667pt;}
.y4d_c00372{bottom:683.226667pt;}
.y4e_c00372{bottom:683.973333pt;}
.y4a_c00372{bottom:698.440000pt;}
.y49_c00372{bottom:700.360000pt;}
.y4b_c00372{bottom:700.560000pt;}
.y47_c00372{bottom:715.773333pt;}
.y48_c00372{bottom:717.106667pt;}
.y46_c00372{bottom:717.693333pt;}
.y44_c00372{bottom:733.306667pt;}
.y43_c00372{bottom:733.493333pt;}
.y40_c00372{bottom:734.066667pt;}
.y41_c00372{bottom:734.440000pt;}
.y45_c00372{bottom:735.226667pt;}
.y3f_c00372{bottom:735.973333pt;}
.y42_c00372{bottom:736.360000pt;}
.y3c_c00372{bottom:751.773333pt;}
.y3e_c00372{bottom:752.733333pt;}
.y3d_c00372{bottom:753.306667pt;}
.y3a_c00372{bottom:753.693333pt;}
.y3b_c00372{bottom:754.640000pt;}
.y37_c00372{bottom:769.106667pt;}
.y39_c00372{bottom:769.893333pt;}
.y38_c00372{bottom:770.640000pt;}
.y36_c00372{bottom:771.026667pt;}
.y32_c00372{bottom:786.440000pt;}
.y34_c00372{bottom:787.400000pt;}
.y35_c00372{bottom:787.973333pt;}
.y33_c00372{bottom:788.360000pt;}
.y2f_c00372{bottom:803.026667pt;}
.y2c_c00372{bottom:803.773333pt;}
.y31_c00372{bottom:805.106667pt;}
.y2d_c00372{bottom:805.693333pt;}
.y2e_c00372{bottom:805.893333pt;}
.y30_c00372{bottom:806.640000pt;}
.y24_c00372{bottom:821.106667pt;}
.y2a_c00372{bottom:821.306667pt;}
.y29_c00372{bottom:822.066667pt;}
.y25_c00372{bottom:822.440000pt;}
.y26_c00372{bottom:823.026667pt;}
.y27_c00372{bottom:823.226667pt;}
.y28_c00372{bottom:823.973333pt;}
.y2b_c00372{bottom:824.360000pt;}
.y20_c00372{bottom:838.440000pt;}
.y23_c00372{bottom:839.773333pt;}
.y22_c00372{bottom:840.360000pt;}
.y21_c00372{bottom:841.693333pt;}
.y1f_c00372{bottom:857.106667pt;}
.y1c_c00372{bottom:857.693333pt;}
.y1e_c00372{bottom:858.640000pt;}
.y1d_c00372{bottom:859.026667pt;}
.y1b_c00372{bottom:874.266667pt;}
.y17_c00372{bottom:874.440000pt;}
.y18_c00372{bottom:875.226667pt;}
.y16_c00372{bottom:875.400000pt;}
.y1a_c00372{bottom:875.600000pt;}
.y19_c00372{bottom:876.360000pt;}
.y13_c00372{bottom:891.773333pt;}
.y15_c00372{bottom:892.560000pt;}
.y14_c00372{bottom:893.693333pt;}
.y10_c00372{bottom:909.106667pt;}
.y12_c00372{bottom:910.066667pt;}
.y11_c00372{bottom:911.026667pt;}
.yf_c00372{bottom:926.066667pt;}
.y9_c00372{bottom:926.440000pt;}
.ya_c00372{bottom:927.400000pt;}
.ye_c00372{bottom:927.973333pt;}
.yb_c00372{bottom:928.360000pt;}
.yc_c00372{bottom:928.560000pt;}
.yd_c00372{bottom:929.306667pt;}
.y8_c00372{bottom:943.026667pt;}
.y5_c00372{bottom:943.400000pt;}
.y4_c00372{bottom:943.773333pt;}
.y7_c00372{bottom:945.306667pt;}
.y3_c00372{bottom:945.693333pt;}
.y6_c00372{bottom:946.640000pt;}
.y2_c00372{bottom:977.693333pt;}
.y1_c00372{bottom:979.600000pt;}
.h6_c00372{height:20.466875pt;}
.h1_c00372{height:22.303646pt;}
.h5_c00372{height:27.879557pt;}
.h2_c00372{height:31.618698pt;}
.h4_c00372{height:35.357839pt;}
.h3_c00372{height:39.031380pt;}
.h7_c00372{height:42.770521pt;}
.h0_c00372{height:1186.666667pt;}
.w0_c00372{width:782.666667pt;}
.x0_c00372{left:0.000000pt;}
.x3_c00372{left:135.040000pt;}
.x7f_c00372{left:136.373333pt;}
.x99_c00372{left:137.333333pt;}
.x10e_c00372{left:138.666667pt;}
.x40_c00372{left:149.706667pt;}
.x90_c00372{left:150.666667pt;}
.x78_c00372{left:152.000000pt;}
.x9a_c00372{left:153.333333pt;}
.xa6_c00372{left:155.040000pt;}
.x54_c00372{left:156.000000pt;}
.x4_c00372{left:158.293333pt;}
.xbc_c00372{left:160.000000pt;}
.xc2_c00372{left:160.960000pt;}
.xfc_c00372{left:162.666667pt;}
.xdb_c00372{left:164.000000pt;}
.x3d_c00372{left:164.960000pt;}
.x80_c00372{left:168.000000pt;}
.x55_c00372{left:169.333333pt;}
.xf4_c00372{left:172.960000pt;}
.x4a_c00372{left:176.000000pt;}
.x79_c00372{left:177.333333pt;}
.x70_c00372{left:179.040000pt;}
.xb6_c00372{left:180.000000pt;}
.x2b_c00372{left:180.960000pt;}
.x61_c00372{left:186.293333pt;}
.xa0_c00372{left:187.626667pt;}
.xac_c00372{left:188.960000pt;}
.x13_c00372{left:192.000000pt;}
.x5_c00372{left:195.040000pt;}
.x89_c00372{left:196.000000pt;}
.x69_c00372{left:197.706667pt;}
.x32_c00372{left:199.040000pt;}
.x103_c00372{left:200.373333pt;}
.x2c_c00372{left:201.333333pt;}
.xad_c00372{left:204.000000pt;}
.x8a_c00372{left:205.333333pt;}
.xf2_c00372{left:208.000000pt;}
.xc3_c00372{left:209.333333pt;}
.xcc_c00372{left:211.040000pt;}
.x118_c00372{left:212.960000pt;}
.xdc_c00372{left:214.666667pt;}
.x9b_c00372{left:216.000000pt;}
.xb7_c00372{left:219.040000pt;}
.xe3_c00372{left:220.000000pt;}
.x83_c00372{left:220.960000pt;}
.xbd_c00372{left:222.666667pt;}
.x21_c00372{left:224.373333pt;}
.x14_c00372{left:225.706667pt;}
.x56_c00372{left:226.666667pt;}
.x10f_c00372{left:228.000000pt;}
.x3e_c00372{left:229.333333pt;}
.xf5_c00372{left:230.666667pt;}
.x4b_c00372{left:233.333333pt;}
.x7a_c00372{left:234.293333pt;}
.x6_c00372{left:238.666667pt;}
.xbe_c00372{left:240.373333pt;}
.x33_c00372{left:241.333333pt;}
.xae_c00372{left:244.373333pt;}
.x111_c00372{left:245.333333pt;}
.x22_c00372{left:248.000000pt;}
.xc4_c00372{left:249.333333pt;}
.x15_c00372{left:250.293333pt;}
.x7_c00372{left:252.373333pt;}
.x71_c00372{left:254.293333pt;}
.x41_c00372{left:256.000000pt;}
.x57_c00372{left:257.333333pt;}
.x6a_c00372{left:258.666667pt;}
.x91_c00372{left:259.626667pt;}
.xec_c00372{left:261.333333pt;}
.x81_c00372{left:262.293333pt;}
.xa7_c00372{left:264.373333pt;}
.x34_c00372{left:266.666667pt;}
.x58_c00372{left:268.000000pt;}
.x42_c00372{left:271.040000pt;}
.x72_c00372{left:272.373333pt;}
.x3f_c00372{left:273.333333pt;}
.x4c_c00372{left:275.040000pt;}
.x2d_c00372{left:276.960000pt;}
.xd3_c00372{left:278.666667pt;}
.xaf_c00372{left:281.333333pt;}
.xc5_c00372{left:282.666667pt;}
.x9c_c00372{left:284.000000pt;}
.xe4_c00372{left:284.960000pt;}
.x92_c00372{left:286.666667pt;}
.x8_c00372{left:288.000000pt;}
.xd7_c00372{left:291.040000pt;}
.xb0_c00372{left:292.000000pt;}
.x7b_c00372{left:294.666667pt;}
.x43_c00372{left:296.373333pt;}
.xa8_c00372{left:300.373333pt;}
.xe5_c00372{left:302.666667pt;}
.x93_c00372{left:304.373333pt;}
.x8b_c00372{left:305.906667pt;}
.x59_c00372{left:307.040000pt;}
.x35_c00372{left:308.960000pt;}
.x23_c00372{left:310.293333pt;}
.x101_c00372{left:312.000000pt;}
.x16_c00372{left:313.333333pt;}
.x113_c00372{left:316.000000pt;}
.xd4_c00372{left:316.960000pt;}
.x62_c00372{left:320.373333pt;}
.x104_c00372{left:321.706667pt;}
.xfd_c00372{left:322.666667pt;}
.x82_c00372{left:324.373333pt;}
.x84_c00372{left:325.706667pt;}
.x9_c00372{left:327.626667pt;}
.x4d_c00372{left:330.293333pt;}
.xed_c00372{left:332.000000pt;}
.x9d_c00372{left:334.293333pt;}
.xb1_c00372{left:336.373333pt;}
.xc6_c00372{left:337.333333pt;}
.x1_c00372{left:338.666667pt;}
.xcd_c00372{left:340.000000pt;}
.x44_c00372{left:341.333333pt;}
.xbf_c00372{left:342.666667pt;}
.x119_c00372{left:344.373333pt;}
.xd8_c00372{left:345.706667pt;}
.x4e_c00372{left:346.666667pt;}
.x5a_c00372{left:347.626667pt;}
.xdd_c00372{left:349.333333pt;}
.xf6_c00372{left:352.000000pt;}
.xa_c00372{left:353.706667pt;}
.xa1_c00372{left:354.666667pt;}
.x36_c00372{left:355.800000pt;}
.xe6_c00372{left:357.333333pt;}
.xce_c00372{left:358.666667pt;}
.x2e_c00372{left:360.000000pt;}
.x6b_c00372{left:362.666667pt;}
.x85_c00372{left:364.000000pt;}
.xee_c00372{left:366.666667pt;}
.x105_c00372{left:368.373333pt;}
.xe7_c00372{left:369.706667pt;}
.xf7_c00372{left:370.666667pt;}
.x45_c00372{left:372.000000pt;}
.x24_c00372{left:375.626667pt;}
.xb_c00372{left:377.333333pt;}
.xfe_c00372{left:378.666667pt;}
.x5b_c00372{left:380.000000pt;}
.x102_c00372{left:381.333333pt;}
.x94_c00372{left:382.666667pt;}
.xc7_c00372{left:385.333333pt;}
.xb2_c00372{left:388.373333pt;}
.xa9_c00372{left:389.706667pt;}
.x37_c00372{left:391.040000pt;}
.x2f_c00372{left:393.333333pt;}
.xef_c00372{left:394.666667pt;}
.x17_c00372{left:396.000000pt;}
.x73_c00372{left:397.706667pt;}
.xcf_c00372{left:398.666667pt;}
.x4f_c00372{left:400.000000pt;}
.x38_c00372{left:400.960000pt;}
.xde_c00372{left:404.373333pt;}
.xe8_c00372{left:405.333333pt;}
.xc0_c00372{left:406.666667pt;}
.xb3_c00372{left:408.373333pt;}
.xc_c00372{left:411.626667pt;}
.x18_c00372{left:413.333333pt;}
.x25_c00372{left:416.000000pt;}
.x115_c00372{left:417.333333pt;}
.x95_c00372{left:418.666667pt;}
.xe9_c00372{left:420.000000pt;}
.x63_c00372{left:421.706667pt;}
.x114_c00372{left:424.373333pt;}
.x19_c00372{left:425.333333pt;}
.xd0_c00372{left:426.666667pt;}
.xd_c00372{left:428.373333pt;}
.x46_c00372{left:430.293333pt;}
.x96_c00372{left:435.040000pt;}
.x6c_c00372{left:436.373333pt;}
.x116_c00372{left:437.706667pt;}
.x106_c00372{left:438.666667pt;}
.x26_c00372{left:440.000000pt;}
.x30_c00372{left:441.333333pt;}
.xff_c00372{left:444.000000pt;}
.x64_c00372{left:444.960000pt;}
.x47_c00372{left:446.293333pt;}
.x108_c00372{left:448.373333pt;}
.x5c_c00372{left:450.666667pt;}
.xe_c00372{left:452.373333pt;}
.xf8_c00372{left:453.706667pt;}
.x1a_c00372{left:456.373333pt;}
.x97_c00372{left:458.666667pt;}
.xdf_c00372{left:460.000000pt;}
.xc1_c00372{left:461.333333pt;}
.xa2_c00372{left:463.626667pt;}
.x39_c00372{left:467.040000pt;}
.x109_c00372{left:468.373333pt;}
.xaa_c00372{left:469.333333pt;}
.x8c_c00372{left:471.040000pt;}
.x86_c00372{left:472.373333pt;}
.xe0_c00372{left:473.333333pt;}
.xb4_c00372{left:475.040000pt;}
.x1b_c00372{left:476.000000pt;}
.x3a_c00372{left:478.093333pt;}
.xf9_c00372{left:479.040000pt;}
.xd5_c00372{left:481.333333pt;}
.x10c_c00372{left:482.293333pt;}
.x74_c00372{left:484.000000pt;}
.x48_c00372{left:486.666667pt;}
.x8d_c00372{left:488.000000pt;}
.x7c_c00372{left:489.333333pt;}
.x65_c00372{left:490.293333pt;}
.x5d_c00372{left:492.960000pt;}
.xf_c00372{left:494.666667pt;}
.xd9_c00372{left:497.333333pt;}
.xa3_c00372{left:500.000000pt;}
.x1c_c00372{left:500.960000pt;}
.x27_c00372{left:503.040000pt;}
.xb8_c00372{left:504.000000pt;}
.xc8_c00372{left:505.333333pt;}
.x50_c00372{left:506.666667pt;}
.x5e_c00372{left:507.626667pt;}
.x10_c00372{left:509.333333pt;}
.x9e_c00372{left:512.373333pt;}
.xab_c00372{left:514.666667pt;}
.xea_c00372{left:515.626667pt;}
.x6d_c00372{left:518.666667pt;}
.xb9_c00372{left:520.373333pt;}
.x51_c00372{left:522.666667pt;}
.x1d_c00372{left:525.706667pt;}
.x98_c00372{left:528.000000pt;}
.xa4_c00372{left:529.333333pt;}
.x66_c00372{left:532.000000pt;}
.xe1_c00372{left:532.960000pt;}
.x28_c00372{left:534.666667pt;}
.x75_c00372{left:535.626667pt;}
.x8e_c00372{left:538.466667pt;}
.x31_c00372{left:542.293333pt;}
.xba_c00372{left:544.000000pt;}
.x11_c00372{left:546.293333pt;}
.xfa_c00372{left:548.000000pt;}
.x3b_c00372{left:549.706667pt;}
.x29_c00372{left:551.040000pt;}
.x76_c00372{left:552.373333pt;}
.x6e_c00372{left:553.333333pt;}
.x87_c00372{left:555.240000pt;}
.xeb_c00372{left:558.293333pt;}
.xc9_c00372{left:559.626667pt;}
.x1e_c00372{left:561.706667pt;}
.xe2_c00372{left:562.666667pt;}
.x110_c00372{left:564.000000pt;}
.x49_c00372{left:564.960000pt;}
.x7d_c00372{left:566.293333pt;}
.xf3_c00372{left:568.000000pt;}
.xa5_c00372{left:570.293333pt;}
.x5f_c00372{left:572.373333pt;}
.xf0_c00372{left:573.333333pt;}
.x2a_c00372{left:574.666667pt;}
.x52_c00372{left:576.373333pt;}
.x77_c00372{left:577.333333pt;}
.x8f_c00372{left:578.666667pt;}
.xd1_c00372{left:580.000000pt;}
.x107_c00372{left:580.960000pt;}
.x7e_c00372{left:583.040000pt;}
.xb5_c00372{left:584.373333pt;}
.xca_c00372{left:587.040000pt;}
.x6f_c00372{left:588.960000pt;}
.x67_c00372{left:591.040000pt;}
.x12_c00372{left:592.000000pt;}
.xd2_c00372{left:593.706667pt;}
.x117_c00372{left:595.040000pt;}
.x1f_c00372{left:599.626667pt;}
.xda_c00372{left:601.706667pt;}
.xd6_c00372{left:602.666667pt;}
.x112_c00372{left:604.960000pt;}
.x10d_c00372{left:606.666667pt;}
.x60_c00372{left:607.626667pt;}
.x10a_c00372{left:608.960000pt;}
.x88_c00372{left:610.293333pt;}
.x9f_c00372{left:612.000000pt;}
.x11a_c00372{left:616.000000pt;}
.x53_c00372{left:617.333333pt;}
.x3c_c00372{left:618.666667pt;}
.xfb_c00372{left:620.000000pt;}
.xcb_c00372{left:621.706667pt;}
.x100_c00372{left:622.666667pt;}
.x10b_c00372{left:624.000000pt;}
.x2_c00372{left:624.960000pt;}
.x20_c00372{left:628.373333pt;}
.x11b_c00372{left:632.373333pt;}
.x68_c00372{left:636.000000pt;}
.xbb_c00372{left:637.333333pt;}
.xf1_c00372{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f5fc2e67949459699d1f3244.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m80_c00373{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m3b_c00373{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m46_c00373{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m11_c00373{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m45_c00373{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m15_c00373{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m13_c00373{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m39_c00373{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m23_c00373{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m1b_c00373{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m32_c00373{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m7d_c00373{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m6c_c00373{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m57_c00373{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m3_c00373{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m4d_c00373{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m6b_c00373{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m4_c00373{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m2b_c00373{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m49_c00373{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.me_c00373{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.m7c_c00373{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m79_c00373{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m36_c00373{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m6d_c00373{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m12_c00373{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m37_c00373{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m2d_c00373{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m1e_c00373{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m66_c00373{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m61_c00373{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m73_c00373{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m1d_c00373{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m41_c00373{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.m7e_c00373{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m34_c00373{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m5e_c00373{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m50_c00373{transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);}
.m4b_c00373{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.m4e_c00373{transform:matrix(0.462430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462430,0.000000,0.000000,0.250000,0,0);}
.mf_c00373{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m58_c00373{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m69_c00373{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m5f_c00373{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m1f_c00373{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m3e_c00373{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m78_c00373{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m20_c00373{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m62_c00373{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m2e_c00373{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m76_c00373{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m28_c00373{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m1_c00373{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m52_c00373{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.md_c00373{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m54_c00373{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m48_c00373{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m4c_c00373{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);}
.m3d_c00373{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m6a_c00373{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m5d_c00373{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m40_c00373{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m2_c00373{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m38_c00373{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m4a_c00373{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m6f_c00373{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m9_c00373{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m7f_c00373{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m5c_c00373{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m2a_c00373{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m8_c00373{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m6_c00373{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m18_c00373{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m47_c00373{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m27_c00373{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m44_c00373{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m4f_c00373{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m5b_c00373{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m5a_c00373{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m60_c00373{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m14_c00373{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m24_c00373{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mb_c00373{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m70_c00373{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m56_c00373{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m22_c00373{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m2f_c00373{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.ma_c00373{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m42_c00373{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m55_c00373{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m64_c00373{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m68_c00373{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m6e_c00373{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m43_c00373{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m65_c00373{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mc_c00373{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m10_c00373{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m53_c00373{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m77_c00373{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m51_c00373{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m19_c00373{transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);}
.m7_c00373{transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);}
.m33_c00373{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m3a_c00373{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m67_c00373{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m29_c00373{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m35_c00373{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m0_c00373{transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);}
.m25_c00373{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m26_c00373{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m72_c00373{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_c00373{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m30_c00373{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m16_c00373{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m71_c00373{transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);}
.m75_c00373{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m5_c00373{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m31_c00373{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m3c_c00373{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m17_c00373{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m3f_c00373{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m7a_c00373{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m2c_c00373{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m1a_c00373{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m7b_c00373{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m59_c00373{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m1c_c00373{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m63_c00373{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m74_c00373{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,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:-4.249718px;}
.ws1_c00373{word-spacing:0.000000px;}
.fc0_c00373{color:transparent;}
.fs5_c00373{font-size:18.720000px;}
.fs0_c00373{font-size:20.400000px;}
.fs3_c00373{font-size:25.500000px;}
.fs1_c00373{font-size:28.920000px;}
.fs4_c00373{font-size:32.340000px;}
.fs2_c00373{font-size:35.700000px;}
.y0_c00373{bottom:0.000000px;}
.y47_c00373{bottom:746.745000px;}
.y46_c00373{bottom:748.905000px;}
.y45_c00373{bottom:766.245000px;}
.y43_c00373{bottom:768.405000px;}
.y44_c00373{bottom:768.630000px;}
.y42_c00373{bottom:769.470000px;}
.y40_c00373{bottom:785.745000px;}
.y41_c00373{bottom:787.905000px;}
.y3e_c00373{bottom:805.245000px;}
.y3c_c00373{bottom:807.405000px;}
.y3f_c00373{bottom:807.630000px;}
.y3d_c00373{bottom:808.470000px;}
.y3b_c00373{bottom:826.470000px;}
.y39_c00373{bottom:844.245000px;}
.y35_c00373{bottom:845.745000px;}
.y36_c00373{bottom:846.405000px;}
.y37_c00373{bottom:846.630000px;}
.y38_c00373{bottom:847.470000px;}
.y3a_c00373{bottom:847.905000px;}
.y34_c00373{bottom:863.745000px;}
.y31_c00373{bottom:864.825000px;}
.y33_c00373{bottom:865.245000px;}
.y30_c00373{bottom:865.905000px;}
.y2f_c00373{bottom:866.970000px;}
.y32_c00373{bottom:867.405000px;}
.y2b_c00373{bottom:882.405000px;}
.y2c_c00373{bottom:884.745000px;}
.y2d_c00373{bottom:885.630000px;}
.y2e_c00373{bottom:886.470000px;}
.y2a_c00373{bottom:886.905000px;}
.y26_c00373{bottom:904.245000px;}
.y28_c00373{bottom:905.130000px;}
.y29_c00373{bottom:905.325000px;}
.y27_c00373{bottom:906.405000px;}
.y22_c00373{bottom:923.745000px;}
.y23_c00373{bottom:924.825000px;}
.y25_c00373{bottom:925.470000px;}
.y24_c00373{bottom:925.905000px;}
.y1f_c00373{bottom:943.245000px;}
.y21_c00373{bottom:944.130000px;}
.y20_c00373{bottom:944.325000px;}
.y1e_c00373{bottom:945.405000px;}
.y1c_c00373{bottom:961.905000px;}
.y19_c00373{bottom:962.745000px;}
.y1d_c00373{bottom:963.825000px;}
.y1b_c00373{bottom:964.470000px;}
.y18_c00373{bottom:964.905000px;}
.y1a_c00373{bottom:965.130000px;}
.y17_c00373{bottom:982.245000px;}
.y15_c00373{bottom:984.405000px;}
.y16_c00373{bottom:984.630000px;}
.y14_c00373{bottom:985.470000px;}
.y10_c00373{bottom:1001.745000px;}
.y11_c00373{bottom:1003.905000px;}
.y13_c00373{bottom:1004.130000px;}
.y12_c00373{bottom:1004.970000px;}
.yf_c00373{bottom:1021.245000px;}
.yc_c00373{bottom:1023.405000px;}
.ye_c00373{bottom:1023.630000px;}
.yd_c00373{bottom:1024.470000px;}
.ya_c00373{bottom:1040.745000px;}
.y8_c00373{bottom:1041.825000px;}
.y9_c00373{bottom:1042.245000px;}
.y7_c00373{bottom:1042.905000px;}
.yb_c00373{bottom:1043.970000px;}
.y6_c00373{bottom:1059.405000px;}
.y4_c00373{bottom:1061.745000px;}
.y5_c00373{bottom:1063.470000px;}
.y3_c00373{bottom:1063.905000px;}
.y2_c00373{bottom:1099.905000px;}
.y1_c00373{bottom:1102.050000px;}
.h6_c00373{height:23.025234px;}
.h1_c00373{height:25.091602px;}
.h4_c00373{height:31.364502px;}
.h2_c00373{height:35.571035px;}
.h5_c00373{height:39.777568px;}
.h3_c00373{height:43.910303px;}
.h0_c00373{height:1335.000000px;}
.w0_c00373{width:880.500000px;}
.x0_c00373{left:0.000000px;}
.x33_c00373{left:151.500000px;}
.x2_c00373{left:152.580000px;}
.x7f_c00373{left:168.000000px;}
.x34_c00373{left:171.420000px;}
.x62_c00373{left:177.000000px;}
.x8f_c00373{left:179.580000px;}
.x40_c00373{left:189.420000px;}
.x80_c00373{left:190.920000px;}
.xf_c00373{left:195.000000px;}
.x35_c00373{left:196.500000px;}
.x3_c00373{left:198.000000px;}
.x63_c00373{left:199.920000px;}
.x1b_c00373{left:201.420000px;}
.x76_c00373{left:207.000000px;}
.x28_c00373{left:213.420000px;}
.x5c_c00373{left:216.420000px;}
.x41_c00373{left:217.500000px;}
.x4b_c00373{left:220.080000px;}
.x6d_c00373{left:222.420000px;}
.x1c_c00373{left:229.080000px;}
.x64_c00373{left:234.420000px;}
.x4c_c00373{left:237.000000px;}
.x10_c00373{left:246.420000px;}
.x36_c00373{left:248.580000px;}
.x4_c00373{left:250.500000px;}
.x29_c00373{left:252.000000px;}
.x8b_c00373{left:255.000000px;}
.x8a_c00373{left:259.920000px;}
.x42_c00373{left:270.420000px;}
.x2a_c00373{left:271.920000px;}
.x77_c00373{left:274.500000px;}
.x37_c00373{left:277.500000px;}
.x5d_c00373{left:283.500000px;}
.x81_c00373{left:288.000000px;}
.x90_c00373{left:294.420000px;}
.x78_c00373{left:295.500000px;}
.x11_c00373{left:296.580000px;}
.x43_c00373{left:309.000000px;}
.x38_c00373{left:313.500000px;}
.x1d_c00373{left:315.000000px;}
.x82_c00373{left:318.000000px;}
.x6e_c00373{left:322.920000px;}
.x65_c00373{left:324.000000px;}
.x5_c00373{left:325.500000px;}
.x53_c00373{left:328.500000px;}
.x44_c00373{left:329.580000px;}
.x12_c00373{left:336.000000px;}
.x39_c00373{left:337.500000px;}
.x1e_c00373{left:343.920000px;}
.x2b_c00373{left:345.000000px;}
.x6_c00373{left:346.920000px;}
.x5e_c00373{left:348.000000px;}
.x83_c00373{left:354.000000px;}
.x66_c00373{left:358.500000px;}
.x79_c00373{left:362.580000px;}
.x6f_c00373{left:367.920000px;}
.x4d_c00373{left:370.500000px;}
.x45_c00373{left:372.420000px;}
.x7_c00373{left:373.920000px;}
.x2c_c00373{left:378.420000px;}
.x1_c00373{left:384.000000px;}
.x84_c00373{left:389.580000px;}
.x3a_c00373{left:391.080000px;}
.x13_c00373{left:393.420000px;}
.x54_c00373{left:396.000000px;}
.x67_c00373{left:403.080000px;}
.x46_c00373{left:408.420000px;}
.x1f_c00373{left:411.000000px;}
.x7a_c00373{left:412.920000px;}
.x55_c00373{left:414.420000px;}
.x8c_c00373{left:417.000000px;}
.x2d_c00373{left:420.420000px;}
.x85_c00373{left:421.920000px;}
.x68_c00373{left:424.500000px;}
.x3b_c00373{left:432.000000px;}
.x20_c00373{left:433.920000px;}
.x47_c00373{left:435.420000px;}
.x8_c00373{left:440.580000px;}
.x69_c00373{left:445.500000px;}
.x56_c00373{left:449.580000px;}
.x14_c00373{left:453.420000px;}
.x7b_c00373{left:454.500000px;}
.x21_c00373{left:462.420000px;}
.x5f_c00373{left:466.500000px;}
.x70_c00373{left:467.580000px;}
.x57_c00373{left:475.920000px;}
.x2e_c00373{left:479.580000px;}
.x15_c00373{left:483.420000px;}
.x8d_c00373{left:487.920000px;}
.x71_c00373{left:489.420000px;}
.x9_c00373{left:492.420000px;}
.x48_c00373{left:496.500000px;}
.x86_c00373{left:502.500000px;}
.x22_c00373{left:507.855000px;}
.x72_c00373{left:517.080000px;}
.x49_c00373{left:518.580000px;}
.xa_c00373{left:520.500000px;}
.x3c_c00373{left:524.580000px;}
.x58_c00373{left:526.500000px;}
.x87_c00373{left:529.500000px;}
.x2f_c00373{left:538.500000px;}
.x23_c00373{left:541.500000px;}
.x4e_c00373{left:546.420000px;}
.x16_c00373{left:549.420000px;}
.x6a_c00373{left:552.420000px;}
.x7c_c00373{left:556.080000px;}
.x59_c00373{left:557.580000px;}
.x30_c00373{left:561.420000px;}
.x4f_c00373{left:573.420000px;}
.xb_c00373{left:574.920000px;}
.x7d_c00373{left:577.920000px;}
.x24_c00373{left:588.420000px;}
.x17_c00373{left:592.500000px;}
.xc_c00373{left:602.580000px;}
.x3d_c00373{left:604.080000px;}
.x73_c00373{left:607.080000px;}
.x25_c00373{left:616.500000px;}
.x3e_c00373{left:623.580000px;}
.x5a_c00373{left:625.500000px;}
.x74_c00373{left:628.920000px;}
.x60_c00373{left:636.645000px;}
.x31_c00373{left:637.920000px;}
.x18_c00373{left:643.920000px;}
.x50_c00373{left:648.420000px;}
.xd_c00373{left:655.080000px;}
.x75_c00373{left:657.420000px;}
.x7e_c00373{left:658.500000px;}
.x4a_c00373{left:664.500000px;}
.x26_c00373{left:665.580000px;}
.x6b_c00373{left:668.580000px;}
.x19_c00373{left:672.000000px;}
.x32_c00373{left:676.920000px;}
.x3f_c00373{left:681.420000px;}
.x61_c00373{left:685.500000px;}
.x88_c00373{left:686.580000px;}
.x6c_c00373{left:690.000000px;}
.x51_c00373{left:691.500000px;}
.x8e_c00373{left:692.775000px;}
.x27_c00373{left:699.420000px;}
.xe_c00373{left:701.580000px;}
.x89_c00373{left:706.920000px;}
.x52_c00373{left:708.000000px;}
.x5b_c00373{left:712.500000px;}
.x1a_c00373{left:715.500000px;}
@media print{
.v0_c00373{vertical-align:0.000000pt;}
.ls0_c00373{letter-spacing:0.000000pt;}
.ws0_c00373{word-spacing:-3.777527pt;}
.ws1_c00373{word-spacing:0.000000pt;}
.fs5_c00373{font-size:16.640000pt;}
.fs0_c00373{font-size:18.133333pt;}
.fs3_c00373{font-size:22.666667pt;}
.fs1_c00373{font-size:25.706667pt;}
.fs4_c00373{font-size:28.746667pt;}
.fs2_c00373{font-size:31.733333pt;}
.y0_c00373{bottom:0.000000pt;}
.y47_c00373{bottom:663.773333pt;}
.y46_c00373{bottom:665.693333pt;}
.y45_c00373{bottom:681.106667pt;}
.y43_c00373{bottom:683.026667pt;}
.y44_c00373{bottom:683.226667pt;}
.y42_c00373{bottom:683.973333pt;}
.y40_c00373{bottom:698.440000pt;}
.y41_c00373{bottom:700.360000pt;}
.y3e_c00373{bottom:715.773333pt;}
.y3c_c00373{bottom:717.693333pt;}
.y3f_c00373{bottom:717.893333pt;}
.y3d_c00373{bottom:718.640000pt;}
.y3b_c00373{bottom:734.640000pt;}
.y39_c00373{bottom:750.440000pt;}
.y35_c00373{bottom:751.773333pt;}
.y36_c00373{bottom:752.360000pt;}
.y37_c00373{bottom:752.560000pt;}
.y38_c00373{bottom:753.306667pt;}
.y3a_c00373{bottom:753.693333pt;}
.y34_c00373{bottom:767.773333pt;}
.y31_c00373{bottom:768.733333pt;}
.y33_c00373{bottom:769.106667pt;}
.y30_c00373{bottom:769.693333pt;}
.y2f_c00373{bottom:770.640000pt;}
.y32_c00373{bottom:771.026667pt;}
.y2b_c00373{bottom:784.360000pt;}
.y2c_c00373{bottom:786.440000pt;}
.y2d_c00373{bottom:787.226667pt;}
.y2e_c00373{bottom:787.973333pt;}
.y2a_c00373{bottom:788.360000pt;}
.y26_c00373{bottom:803.773333pt;}
.y28_c00373{bottom:804.560000pt;}
.y29_c00373{bottom:804.733333pt;}
.y27_c00373{bottom:805.693333pt;}
.y22_c00373{bottom:821.106667pt;}
.y23_c00373{bottom:822.066667pt;}
.y25_c00373{bottom:822.640000pt;}
.y24_c00373{bottom:823.026667pt;}
.y1f_c00373{bottom:838.440000pt;}
.y21_c00373{bottom:839.226667pt;}
.y20_c00373{bottom:839.400000pt;}
.y1e_c00373{bottom:840.360000pt;}
.y1c_c00373{bottom:855.026667pt;}
.y19_c00373{bottom:855.773333pt;}
.y1d_c00373{bottom:856.733333pt;}
.y1b_c00373{bottom:857.306667pt;}
.y18_c00373{bottom:857.693333pt;}
.y1a_c00373{bottom:857.893333pt;}
.y17_c00373{bottom:873.106667pt;}
.y15_c00373{bottom:875.026667pt;}
.y16_c00373{bottom:875.226667pt;}
.y14_c00373{bottom:875.973333pt;}
.y10_c00373{bottom:890.440000pt;}
.y11_c00373{bottom:892.360000pt;}
.y13_c00373{bottom:892.560000pt;}
.y12_c00373{bottom:893.306667pt;}
.yf_c00373{bottom:907.773333pt;}
.yc_c00373{bottom:909.693333pt;}
.ye_c00373{bottom:909.893333pt;}
.yd_c00373{bottom:910.640000pt;}
.ya_c00373{bottom:925.106667pt;}
.y8_c00373{bottom:926.066667pt;}
.y9_c00373{bottom:926.440000pt;}
.y7_c00373{bottom:927.026667pt;}
.yb_c00373{bottom:927.973333pt;}
.y6_c00373{bottom:941.693333pt;}
.y4_c00373{bottom:943.773333pt;}
.y5_c00373{bottom:945.306667pt;}
.y3_c00373{bottom:945.693333pt;}
.y2_c00373{bottom:977.693333pt;}
.y1_c00373{bottom:979.600000pt;}
.h6_c00373{height:20.466875pt;}
.h1_c00373{height:22.303646pt;}
.h4_c00373{height:27.879557pt;}
.h2_c00373{height:31.618698pt;}
.h5_c00373{height:35.357839pt;}
.h3_c00373{height:39.031380pt;}
.h0_c00373{height:1186.666667pt;}
.w0_c00373{width:782.666667pt;}
.x0_c00373{left:0.000000pt;}
.x33_c00373{left:134.666667pt;}
.x2_c00373{left:135.626667pt;}
.x7f_c00373{left:149.333333pt;}
.x34_c00373{left:152.373333pt;}
.x62_c00373{left:157.333333pt;}
.x8f_c00373{left:159.626667pt;}
.x40_c00373{left:168.373333pt;}
.x80_c00373{left:169.706667pt;}
.xf_c00373{left:173.333333pt;}
.x35_c00373{left:174.666667pt;}
.x3_c00373{left:176.000000pt;}
.x63_c00373{left:177.706667pt;}
.x1b_c00373{left:179.040000pt;}
.x76_c00373{left:184.000000pt;}
.x28_c00373{left:189.706667pt;}
.x5c_c00373{left:192.373333pt;}
.x41_c00373{left:193.333333pt;}
.x4b_c00373{left:195.626667pt;}
.x6d_c00373{left:197.706667pt;}
.x1c_c00373{left:203.626667pt;}
.x64_c00373{left:208.373333pt;}
.x4c_c00373{left:210.666667pt;}
.x10_c00373{left:219.040000pt;}
.x36_c00373{left:220.960000pt;}
.x4_c00373{left:222.666667pt;}
.x29_c00373{left:224.000000pt;}
.x8b_c00373{left:226.666667pt;}
.x8a_c00373{left:231.040000pt;}
.x42_c00373{left:240.373333pt;}
.x2a_c00373{left:241.706667pt;}
.x77_c00373{left:244.000000pt;}
.x37_c00373{left:246.666667pt;}
.x5d_c00373{left:252.000000pt;}
.x81_c00373{left:256.000000pt;}
.x90_c00373{left:261.706667pt;}
.x78_c00373{left:262.666667pt;}
.x11_c00373{left:263.626667pt;}
.x43_c00373{left:274.666667pt;}
.x38_c00373{left:278.666667pt;}
.x1d_c00373{left:280.000000pt;}
.x82_c00373{left:282.666667pt;}
.x6e_c00373{left:287.040000pt;}
.x65_c00373{left:288.000000pt;}
.x5_c00373{left:289.333333pt;}
.x53_c00373{left:292.000000pt;}
.x44_c00373{left:292.960000pt;}
.x12_c00373{left:298.666667pt;}
.x39_c00373{left:300.000000pt;}
.x1e_c00373{left:305.706667pt;}
.x2b_c00373{left:306.666667pt;}
.x6_c00373{left:308.373333pt;}
.x5e_c00373{left:309.333333pt;}
.x83_c00373{left:314.666667pt;}
.x66_c00373{left:318.666667pt;}
.x79_c00373{left:322.293333pt;}
.x6f_c00373{left:327.040000pt;}
.x4d_c00373{left:329.333333pt;}
.x45_c00373{left:331.040000pt;}
.x7_c00373{left:332.373333pt;}
.x2c_c00373{left:336.373333pt;}
.x1_c00373{left:341.333333pt;}
.x84_c00373{left:346.293333pt;}
.x3a_c00373{left:347.626667pt;}
.x13_c00373{left:349.706667pt;}
.x54_c00373{left:352.000000pt;}
.x67_c00373{left:358.293333pt;}
.x46_c00373{left:363.040000pt;}
.x1f_c00373{left:365.333333pt;}
.x7a_c00373{left:367.040000pt;}
.x55_c00373{left:368.373333pt;}
.x8c_c00373{left:370.666667pt;}
.x2d_c00373{left:373.706667pt;}
.x85_c00373{left:375.040000pt;}
.x68_c00373{left:377.333333pt;}
.x3b_c00373{left:384.000000pt;}
.x20_c00373{left:385.706667pt;}
.x47_c00373{left:387.040000pt;}
.x8_c00373{left:391.626667pt;}
.x69_c00373{left:396.000000pt;}
.x56_c00373{left:399.626667pt;}
.x14_c00373{left:403.040000pt;}
.x7b_c00373{left:404.000000pt;}
.x21_c00373{left:411.040000pt;}
.x5f_c00373{left:414.666667pt;}
.x70_c00373{left:415.626667pt;}
.x57_c00373{left:423.040000pt;}
.x2e_c00373{left:426.293333pt;}
.x15_c00373{left:429.706667pt;}
.x8d_c00373{left:433.706667pt;}
.x71_c00373{left:435.040000pt;}
.x9_c00373{left:437.706667pt;}
.x48_c00373{left:441.333333pt;}
.x86_c00373{left:446.666667pt;}
.x22_c00373{left:451.426667pt;}
.x72_c00373{left:459.626667pt;}
.x49_c00373{left:460.960000pt;}
.xa_c00373{left:462.666667pt;}
.x3c_c00373{left:466.293333pt;}
.x58_c00373{left:468.000000pt;}
.x87_c00373{left:470.666667pt;}
.x2f_c00373{left:478.666667pt;}
.x23_c00373{left:481.333333pt;}
.x4e_c00373{left:485.706667pt;}
.x16_c00373{left:488.373333pt;}
.x6a_c00373{left:491.040000pt;}
.x7c_c00373{left:494.293333pt;}
.x59_c00373{left:495.626667pt;}
.x30_c00373{left:499.040000pt;}
.x4f_c00373{left:509.706667pt;}
.xb_c00373{left:511.040000pt;}
.x7d_c00373{left:513.706667pt;}
.x24_c00373{left:523.040000pt;}
.x17_c00373{left:526.666667pt;}
.xc_c00373{left:535.626667pt;}
.x3d_c00373{left:536.960000pt;}
.x73_c00373{left:539.626667pt;}
.x25_c00373{left:548.000000pt;}
.x3e_c00373{left:554.293333pt;}
.x5a_c00373{left:556.000000pt;}
.x74_c00373{left:559.040000pt;}
.x60_c00373{left:565.906667pt;}
.x31_c00373{left:567.040000pt;}
.x18_c00373{left:572.373333pt;}
.x50_c00373{left:576.373333pt;}
.xd_c00373{left:582.293333pt;}
.x75_c00373{left:584.373333pt;}
.x7e_c00373{left:585.333333pt;}
.x4a_c00373{left:590.666667pt;}
.x26_c00373{left:591.626667pt;}
.x6b_c00373{left:594.293333pt;}
.x19_c00373{left:597.333333pt;}
.x32_c00373{left:601.706667pt;}
.x3f_c00373{left:605.706667pt;}
.x61_c00373{left:609.333333pt;}
.x88_c00373{left:610.293333pt;}
.x6c_c00373{left:613.333333pt;}
.x51_c00373{left:614.666667pt;}
.x8e_c00373{left:615.800000pt;}
.x27_c00373{left:621.706667pt;}
.xe_c00373{left:623.626667pt;}
.x89_c00373{left:628.373333pt;}
.x52_c00373{left:629.333333pt;}
.x5b_c00373{left:633.333333pt;}
.x1a_c00373{left:636.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_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_a34f5db6b5735edaa1318a42.woff2')format("woff");}.ff1_c00374{font-family:ff1_c00374;line-height:1.688965;font-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_c00374{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m77_c00374{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.m54_c00374{transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);}
.m18_c00374{transform:matrix(0.348926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348926,0.000000,0.000000,0.250000,0,0);}
.m41_c00374{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m29_c00374{transform:matrix(0.360084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360084,0.000000,0.000000,0.250000,0,0);}
.m22_c00374{transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);}
.m2f_c00374{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.md7_c00374{transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);}
.md6_c00374{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m15_c00374{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m78_c00374{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mb7_c00374{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m1e_c00374{transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);}
.mca_c00374{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m5f_c00374{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m26_c00374{transform:matrix(0.384202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384202,0.000000,0.000000,0.250000,0,0);}
.m27_c00374{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.ma8_c00374{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.mcd_c00374{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m53_c00374{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m17_c00374{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mc1_c00374{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m90_c00374{transform:matrix(0.391104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391104,0.000000,0.000000,0.250000,0,0);}
.m61_c00374{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.mba_c00374{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m9a_c00374{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m72_c00374{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.mcc_c00374{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m1a_c00374{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.mbe_c00374{transform:matrix(0.400690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400690,0.000000,0.000000,0.250000,0,0);}
.m19_c00374{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m28_c00374{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m88_c00374{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.mbc_c00374{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m39_c00374{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mbd_c00374{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m94_c00374{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m11_c00374{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.mb6_c00374{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m33_c00374{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m6_c00374{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m8d_c00374{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.m4b_c00374{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m20_c00374{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m58_c00374{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.md8_c00374{transform:matrix(0.414110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414110,0.000000,0.000000,0.250000,0,0);}
.mc9_c00374{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m4c_c00374{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m37_c00374{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m70_c00374{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m35_c00374{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m67_c00374{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m92_c00374{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m79_c00374{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mc8_c00374{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m6b_c00374{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m48_c00374{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mb9_c00374{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m9b_c00374{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m30_c00374{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.ma2_c00374{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m52_c00374{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.mbf_c00374{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m44_c00374{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m98_c00374{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mb4_c00374{transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);}
.mf_c00374{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m23_c00374{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m8c_c00374{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m93_c00374{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m46_c00374{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mad_c00374{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m89_c00374{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m59_c00374{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.ma5_c00374{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m25_c00374{transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);}
.maf_c00374{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mcb_c00374{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.ma0_c00374{transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);}
.m34_c00374{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.ma9_c00374{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m8a_c00374{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.ma4_c00374{transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);}
.m3_c00374{transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);}
.ma3_c00374{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m12_c00374{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mb0_c00374{transform:matrix(0.457563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457563,0.000000,0.000000,0.250000,0,0);}
.m84_c00374{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.ma6_c00374{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.md0_c00374{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m6e_c00374{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m9f_c00374{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.m3e_c00374{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.mc7_c00374{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m1f_c00374{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m47_c00374{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m62_c00374{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m76_c00374{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m7a_c00374{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m71_c00374{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.ma7_c00374{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m96_c00374{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m63_c00374{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m60_c00374{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m32_c00374{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m49_c00374{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m69_c00374{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m8e_c00374{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m42_c00374{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);}
.m64_c00374{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.mb8_c00374{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m4a_c00374{transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);}
.m36_c00374{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.md4_c00374{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m1d_c00374{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mae_c00374{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m5a_c00374{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.mc0_c00374{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.maa_c00374{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m43_c00374{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m2d_c00374{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m7_c00374{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m5c_c00374{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mc4_c00374{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m14_c00374{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m8f_c00374{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m66_c00374{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.md1_c00374{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m75_c00374{transform:matrix(0.521800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521800,0.000000,0.000000,0.250000,0,0);}
.m57_c00374{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m86_c00374{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m87_c00374{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mb5_c00374{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m6f_c00374{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m24_c00374{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m5d_c00374{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mc_c00374{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m50_c00374{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.me_c00374{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m21_c00374{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mc2_c00374{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.md_c00374{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m2c_c00374{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.mc6_c00374{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m56_c00374{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mb2_c00374{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mbb_c00374{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m8b_c00374{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m3d_c00374{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m45_c00374{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m38_c00374{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m97_c00374{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mab_c00374{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m5_c00374{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.m74_c00374{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mb1_c00374{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m2e_c00374{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m9_c00374{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m3c_c00374{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m80_c00374{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m85_c00374{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m55_c00374{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m7c_c00374{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m1c_c00374{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.ma_c00374{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m4e_c00374{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m83_c00374{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m6a_c00374{transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);}
.m5e_c00374{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m81_c00374{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m9c_c00374{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.mcf_c00374{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m2_c00374{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m3b_c00374{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m82_c00374{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.md5_c00374{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m2a_c00374{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m4d_c00374{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m68_c00374{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.ma1_c00374{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m13_c00374{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m95_c00374{transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);}
.m91_c00374{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m3a_c00374{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m9d_c00374{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m9e_c00374{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m73_c00374{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.m3f_c00374{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mc5_c00374{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);}
.m16_c00374{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m7e_c00374{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.m7b_c00374{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m40_c00374{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m31_c00374{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mce_c00374{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m4f_c00374{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mb_c00374{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);}
.mb3_c00374{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m0_c00374{transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);}
.m2b_c00374{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m5b_c00374{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m6c_c00374{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mc3_c00374{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m51_c00374{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m7f_c00374{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m65_c00374{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m8_c00374{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m10_c00374{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m99_c00374{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m7d_c00374{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.md2_c00374{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m4_c00374{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.md3_c00374{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m6d_c00374{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m1_c00374{transform:matrix(0.912863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.912863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.912863,0.000000,0.000000,0.250000,0,0);}
.mac_c00374{transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.954327,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:-9.216610px;}
.ws1_c00374{word-spacing:-3.046789px;}
.ws2_c00374{word-spacing:-3.029280px;}
.ws3_c00374{word-spacing:0.000000px;}
.fc0_c00374{color:transparent;}
.fs2_c00374{font-size:18.720000px;}
.fs6_c00374{font-size:20.400000px;}
.fs3_c00374{font-size:25.500000px;}
.fs0_c00374{font-size:28.920000px;}
.fs5_c00374{font-size:32.340000px;}
.fs1_c00374{font-size:35.700000px;}
.fs4_c00374{font-size:39.120000px;}
.y0_c00374{bottom:0.000000px;}
.yaa_c00374{bottom:229.905000px;}
.ya9_c00374{bottom:231.180000px;}
.yab_c00374{bottom:231.405000px;}
.ya8_c00374{bottom:232.245000px;}
.ya7_c00374{bottom:235.905000px;}
.ya4_c00374{bottom:253.245000px;}
.ya5_c00374{bottom:253.905000px;}
.ya3_c00374{bottom:254.130000px;}
.ya1_c00374{bottom:254.550000px;}
.ya6_c00374{bottom:254.970000px;}
.ya2_c00374{bottom:255.405000px;}
.ya0_c00374{bottom:270.405000px;}
.y9f_c00374{bottom:271.245000px;}
.y9d_c00374{bottom:272.325000px;}
.y9c_c00374{bottom:272.745000px;}
.y9b_c00374{bottom:273.630000px;}
.y9e_c00374{bottom:274.905000px;}
.y96_c00374{bottom:289.905000px;}
.y97_c00374{bottom:291.825000px;}
.y98_c00374{bottom:292.245000px;}
.y99_c00374{bottom:292.905000px;}
.y9a_c00374{bottom:293.130000px;}
.y95_c00374{bottom:294.405000px;}
.y91_c00374{bottom:311.745000px;}
.y92_c00374{bottom:311.970000px;}
.y93_c00374{bottom:312.630000px;}
.y90_c00374{bottom:313.905000px;}
.y94_c00374{bottom:314.970000px;}
.y8e_c00374{bottom:330.180000px;}
.y8d_c00374{bottom:331.245000px;}
.y8c_c00374{bottom:333.405000px;}
.y8f_c00374{bottom:333.630000px;}
.y8a_c00374{bottom:350.745000px;}
.y88_c00374{bottom:352.245000px;}
.y89_c00374{bottom:352.905000px;}
.y8b_c00374{bottom:353.970000px;}
.y87_c00374{bottom:354.405000px;}
.y85_c00374{bottom:369.405000px;}
.y84_c00374{bottom:370.245000px;}
.y82_c00374{bottom:371.325000px;}
.y80_c00374{bottom:371.745000px;}
.y83_c00374{bottom:372.405000px;}
.y7f_c00374{bottom:372.630000px;}
.y86_c00374{bottom:373.470000px;}
.y81_c00374{bottom:373.905000px;}
.y7b_c00374{bottom:395.745000px;}
.y7e_c00374{bottom:396.630000px;}
.y7c_c00374{bottom:397.470000px;}
.y7d_c00374{bottom:397.905000px;}
.y7a_c00374{bottom:430.245000px;}
.y79_c00374{bottom:432.405000px;}
.y78_c00374{bottom:449.745000px;}
.y76_c00374{bottom:451.470000px;}
.y77_c00374{bottom:451.905000px;}
.y74_c00374{bottom:469.245000px;}
.y75_c00374{bottom:470.325000px;}
.y73_c00374{bottom:471.405000px;}
.y6e_c00374{bottom:488.745000px;}
.y72_c00374{bottom:490.470000px;}
.y6f_c00374{bottom:490.905000px;}
.y71_c00374{bottom:491.130000px;}
.y70_c00374{bottom:491.970000px;}
.y69_c00374{bottom:509.745000px;}
.y6c_c00374{bottom:510.405000px;}
.y6b_c00374{bottom:510.630000px;}
.y6d_c00374{bottom:511.470000px;}
.y6a_c00374{bottom:511.905000px;}
.y65_c00374{bottom:527.745000px;}
.y66_c00374{bottom:529.245000px;}
.y67_c00374{bottom:530.130000px;}
.y68_c00374{bottom:530.325000px;}
.y64_c00374{bottom:530.970000px;}
.y63_c00374{bottom:531.405000px;}
.y60_c00374{bottom:548.745000px;}
.y61_c00374{bottom:549.405000px;}
.y62_c00374{bottom:549.630000px;}
.y5f_c00374{bottom:550.905000px;}
.y5d_c00374{bottom:567.180000px;}
.y5e_c00374{bottom:568.245000px;}
.y5b_c00374{bottom:569.325000px;}
.y5c_c00374{bottom:570.405000px;}
.y58_c00374{bottom:585.405000px;}
.y55_c00374{bottom:587.745000px;}
.y57_c00374{bottom:588.630000px;}
.y59_c00374{bottom:588.825000px;}
.y54_c00374{bottom:589.905000px;}
.y56_c00374{bottom:590.130000px;}
.y5a_c00374{bottom:591.405000px;}
.y53_c00374{bottom:607.245000px;}
.y51_c00374{bottom:608.325000px;}
.y52_c00374{bottom:609.405000px;}
.y50_c00374{bottom:610.905000px;}
.y4d_c00374{bottom:628.245000px;}
.y4f_c00374{bottom:628.905000px;}
.y4e_c00374{bottom:629.130000px;}
.y4c_c00374{bottom:630.405000px;}
.y4b_c00374{bottom:647.745000px;}
.y4a_c00374{bottom:649.905000px;}
.y43_c00374{bottom:664.905000px;}
.y47_c00374{bottom:665.745000px;}
.y45_c00374{bottom:667.245000px;}
.y46_c00374{bottom:667.905000px;}
.y49_c00374{bottom:668.130000px;}
.y42_c00374{bottom:668.325000px;}
.y48_c00374{bottom:668.970000px;}
.y44_c00374{bottom:669.405000px;}
.y3f_c00374{bottom:686.745000px;}
.y40_c00374{bottom:687.630000px;}
.y3e_c00374{bottom:688.905000px;}
.y41_c00374{bottom:689.970000px;}
.y3c_c00374{bottom:706.245000px;}
.y3d_c00374{bottom:707.325000px;}
.y3b_c00374{bottom:708.405000px;}
.y3a_c00374{bottom:708.630000px;}
.y38_c00374{bottom:725.745000px;}
.y37_c00374{bottom:725.970000px;}
.y35_c00374{bottom:726.825000px;}
.y34_c00374{bottom:727.905000px;}
.y39_c00374{bottom:728.130000px;}
.y36_c00374{bottom:728.970000px;}
.y32_c00374{bottom:744.405000px;}
.y31_c00374{bottom:745.245000px;}
.y30_c00374{bottom:747.405000px;}
.y33_c00374{bottom:747.630000px;}
.y2f_c00374{bottom:763.905000px;}
.y2c_c00374{bottom:764.745000px;}
.y2e_c00374{bottom:765.825000px;}
.y2b_c00374{bottom:766.905000px;}
.y2d_c00374{bottom:767.130000px;}
.y2a_c00374{bottom:784.680000px;}
.y29_c00374{bottom:785.745000px;}
.y28_c00374{bottom:787.470000px;}
.y27_c00374{bottom:787.905000px;}
.y22_c00374{bottom:805.245000px;}
.y24_c00374{bottom:806.130000px;}
.y26_c00374{bottom:806.325000px;}
.y25_c00374{bottom:807.405000px;}
.y23_c00374{bottom:808.470000px;}
.y21_c00374{bottom:822.405000px;}
.y20_c00374{bottom:824.745000px;}
.y1f_c00374{bottom:826.905000px;}
.y1c_c00374{bottom:842.745000px;}
.y1d_c00374{bottom:844.245000px;}
.y1e_c00374{bottom:845.745000px;}
.y1b_c00374{bottom:846.405000px;}
.y19_c00374{bottom:863.745000px;}
.y1a_c00374{bottom:864.630000px;}
.y18_c00374{bottom:865.905000px;}
.y16_c00374{bottom:884.970000px;}
.y17_c00374{bottom:885.405000px;}
.y10_c00374{bottom:902.745000px;}
.y13_c00374{bottom:903.180000px;}
.y12_c00374{bottom:904.245000px;}
.y11_c00374{bottom:904.905000px;}
.y15_c00374{bottom:905.130000px;}
.y14_c00374{bottom:906.405000px;}
.ye_c00374{bottom:922.245000px;}
.yc_c00374{bottom:923.745000px;}
.yd_c00374{bottom:924.405000px;}
.yf_c00374{bottom:925.905000px;}
.y7_c00374{bottom:941.745000px;}
.yb_c00374{bottom:942.180000px;}
.y9_c00374{bottom:943.245000px;}
.y6_c00374{bottom:943.905000px;}
.y8_c00374{bottom:944.130000px;}
.ya_c00374{bottom:944.970000px;}
.y5_c00374{bottom:945.405000px;}
.y3_c00374{bottom:962.745000px;}
.y4_c00374{bottom:963.630000px;}
.y2_c00374{bottom:964.905000px;}
.y1_c00374{bottom:1003.905000px;}
.h3_c00374{height:23.025234px;}
.h7_c00374{height:25.091602px;}
.h4_c00374{height:31.364502px;}
.h1_c00374{height:35.571035px;}
.h6_c00374{height:39.777568px;}
.h2_c00374{height:43.910303px;}
.h5_c00374{height:48.116836px;}
.h0_c00374{height:1335.000000px;}
.w0_c00374{width:880.500000px;}
.x0_c00374{left:0.000000px;}
.x1c_c00374{left:151.080000px;}
.xe_c00374{left:153.420000px;}
.xee_c00374{left:154.920000px;}
.xe0_c00374{left:161.580000px;}
.x3_c00374{left:168.000000px;}
.xa3_c00374{left:169.920000px;}
.xc7_c00374{left:171.000000px;}
.x3a_c00374{left:172.500000px;}
.x30_c00374{left:179.580000px;}
.x55_c00374{left:181.080000px;}
.xad_c00374{left:183.000000px;}
.xcf_c00374{left:184.080000px;}
.xe1_c00374{left:185.580000px;}
.x8a_c00374{left:188.580000px;}
.x94_c00374{left:192.420000px;}
.xf_c00374{left:194.580000px;}
.x68_c00374{left:196.500000px;}
.x4_c00374{left:199.500000px;}
.x28_c00374{left:201.420000px;}
.x72_c00374{left:202.500000px;}
.xec_c00374{left:204.000000px;}
.x9c_c00374{left:205.920000px;}
.x4b_c00374{left:209.580000px;}
.x10_c00374{left:212.580000px;}
.xb2_c00374{left:214.500000px;}
.x1d_c00374{left:220.080000px;}
.x8b_c00374{left:221.145000px;}
.xdb_c00374{left:222.420000px;}
.x43_c00374{left:225.420000px;}
.x56_c00374{left:226.500000px;}
.x7a_c00374{left:229.920000px;}
.x84_c00374{left:231.000000px;}
.x95_c00374{left:232.500000px;}
.xd0_c00374{left:234.000000px;}
.xb3_c00374{left:235.920000px;}
.xc8_c00374{left:237.000000px;}
.x4c_c00374{left:238.500000px;}
.x69_c00374{left:247.080000px;}
.xe6_c00374{left:250.920000px;}
.x4d_c00374{left:252.420000px;}
.x1e_c00374{left:253.920000px;}
.x5f_c00374{left:255.000000px;}
.xa4_c00374{left:256.500000px;}
.xd6_c00374{left:258.000000px;}
.xbb_c00374{left:259.500000px;}
.x44_c00374{left:262.920000px;}
.x57_c00374{left:264.000000px;}
.x3b_c00374{left:265.080000px;}
.x9d_c00374{left:267.420000px;}
.x7b_c00374{left:270.000000px;}
.x97_c00374{left:271.080000px;}
.x32_c00374{left:273.000000px;}
.xef_c00374{left:274.920000px;}
.xc4_c00374{left:277.920000px;}
.xe7_c00374{left:279.000000px;}
.xcc_c00374{left:280.920000px;}
.x11_c00374{left:282.420000px;}
.x58_c00374{left:285.420000px;}
.x8c_c00374{left:287.580000px;}
.xd7_c00374{left:289.500000px;}
.x5_c00374{left:292.500000px;}
.x31_c00374{left:295.500000px;}
.x29_c00374{left:297.000000px;}
.x60_c00374{left:301.500000px;}
.x96_c00374{left:302.580000px;}
.x98_c00374{left:304.920000px;}
.xa5_c00374{left:306.000000px;}
.x1f_c00374{left:309.420000px;}
.x9e_c00374{left:310.500000px;}
.x6_c00374{left:311.580000px;}
.x59_c00374{left:315.000000px;}
.x12_c00374{left:316.500000px;}
.x6a_c00374{left:318.420000px;}
.x20_c00374{left:320.580000px;}
.xa6_c00374{left:322.500000px;}
.x33_c00374{left:323.580000px;}
.xed_c00374{left:325.500000px;}
.xae_c00374{left:327.000000px;}
.xdc_c00374{left:328.500000px;}
.x73_c00374{left:330.420000px;}
.x85_c00374{left:331.500000px;}
.xc1_c00374{left:333.000000px;}
.x45_c00374{left:334.500000px;}
.xb4_c00374{left:338.580000px;}
.x13_c00374{left:340.080000px;}
.xd8_c00374{left:342.000000px;}
.x1_c00374{left:343.080000px;}
.x61_c00374{left:346.500000px;}
.xe2_c00374{left:349.080000px;}
.xd1_c00374{left:350.580000px;}
.x21_c00374{left:354.420000px;}
.x74_c00374{left:357.420000px;}
.xc5_c00374{left:358.920000px;}
.xa9_c00374{left:360.000000px;}
.x8d_c00374{left:361.080000px;}
.xbc_c00374{left:363.000000px;}
.xdd_c00374{left:364.920000px;}
.x6b_c00374{left:366.420000px;}
.xd2_c00374{left:369.000000px;}
.x99_c00374{left:370.500000px;}
.x7c_c00374{left:373.500000px;}
.x4e_c00374{left:375.000000px;}
.xe8_c00374{left:379.500000px;}
.xf0_c00374{left:381.000000px;}
.x75_c00374{left:382.500000px;}
.x7_c00374{left:388.080000px;}
.xd3_c00374{left:390.000000px;}
.x7d_c00374{left:391.080000px;}
.x6c_c00374{left:393.000000px;}
.x5a_c00374{left:394.500000px;}
.x22_c00374{left:396.420000px;}
.x2_c00374{left:399.000000px;}
.xbd_c00374{left:400.500000px;}
.x4f_c00374{left:403.080000px;}
.xaf_c00374{left:405.000000px;}
.x46_c00374{left:409.080000px;}
.x5b_c00374{left:411.000000px;}
.xbe_c00374{left:415.920000px;}
.x9f_c00374{left:418.080000px;}
.x62_c00374{left:420.000000px;}
.x14_c00374{left:423.000000px;}
.x6d_c00374{left:424.920000px;}
.x3c_c00374{left:426.000000px;}
.xaa_c00374{left:430.920000px;}
.x34_c00374{left:432.000000px;}
.x23_c00374{left:433.080000px;}
.xb5_c00374{left:436.500000px;}
.x2a_c00374{left:439.500000px;}
.x15_c00374{left:445.080000px;}
.x86_c00374{left:450.000000px;}
.xe9_c00374{left:451.500000px;}
.x6e_c00374{left:453.420000px;}
.xc9_c00374{left:457.500000px;}
.x50_c00374{left:459.000000px;}
.x16_c00374{left:462.000000px;}
.x8_c00374{left:463.500000px;}
.xb6_c00374{left:465.000000px;}
.x7e_c00374{left:466.500000px;}
.x63_c00374{left:467.580000px;}
.x3d_c00374{left:469.920000px;}
.xd4_c00374{left:471.000000px;}
.xa7_c00374{left:474.000000px;}
.x2b_c00374{left:475.920000px;}
.xc2_c00374{left:477.420000px;}
.xe3_c00374{left:481.275000px;}
.x87_c00374{left:484.500000px;}
.x9a_c00374{left:486.000000px;}
.xde_c00374{left:487.080000px;}
.xcd_c00374{left:488.580000px;}
.x24_c00374{left:490.080000px;}
.xd9_c00374{left:492.000000px;}
.x8e_c00374{left:495.000000px;}
.x17_c00374{left:499.920000px;}
.x9_c00374{left:501.000000px;}
.xb7_c00374{left:504.000000px;}
.x5c_c00374{left:505.920000px;}
.x88_c00374{left:509.580000px;}
.xa_c00374{left:514.500000px;}
.x2c_c00374{left:515.580000px;}
.x35_c00374{left:517.080000px;}
.x76_c00374{left:519.000000px;}
.xe4_c00374{left:520.500000px;}
.xa0_c00374{left:523.500000px;}
.x3e_c00374{left:525.000000px;}
.x18_c00374{left:528.000000px;}
.x51_c00374{left:531.420000px;}
.xf3_c00374{left:532.920000px;}
.x8f_c00374{left:534.000000px;}
.x7f_c00374{left:535.080000px;}
.x47_c00374{left:537.420000px;}
.x5d_c00374{left:540.000000px;}
.xf1_c00374{left:544.500000px;}
.x2d_c00374{left:546.000000px;}
.x6f_c00374{left:549.420000px;}
.xab_c00374{left:552.000000px;}
.xce_c00374{left:554.580000px;}
.xda_c00374{left:558.420000px;}
.xb0_c00374{left:559.920000px;}
.x3f_c00374{left:564.000000px;}
.x25_c00374{left:565.080000px;}
.x52_c00374{left:570.000000px;}
.x80_c00374{left:573.000000px;}
.xea_c00374{left:574.920000px;}
.x48_c00374{left:577.080000px;}
.xb8_c00374{left:579.000000px;}
.x19_c00374{left:583.500000px;}
.x90_c00374{left:585.420000px;}
.x36_c00374{left:586.500000px;}
.xca_c00374{left:589.500000px;}
.x81_c00374{left:591.420000px;}
.x77_c00374{left:592.500000px;}
.x2e_c00374{left:593.580000px;}
.xb_c00374{left:595.920000px;}
.x26_c00374{left:598.080000px;}
.xb1_c00374{left:600.420000px;}
.x64_c00374{left:601.500000px;}
.x40_c00374{left:606.000000px;}
.x91_c00374{left:607.500000px;}
.x2f_c00374{left:611.580000px;}
.x1a_c00374{left:613.500000px;}
.x82_c00374{left:616.500000px;}
.xb9_c00374{left:619.920000px;}
.xf2_c00374{left:621.420000px;}
.xcb_c00374{left:622.500000px;}
.xa1_c00374{left:625.920000px;}
.x65_c00374{left:627.000000px;}
.xeb_c00374{left:628.080000px;}
.x92_c00374{left:634.500000px;}
.x53_c00374{left:637.500000px;}
.x70_c00374{left:639.000000px;}
.xbf_c00374{left:640.500000px;}
.x41_c00374{left:641.580000px;}
.x66_c00374{left:644.580000px;}
.x37_c00374{left:646.080000px;}
.xe5_c00374{left:648.000000px;}
.x49_c00374{left:649.500000px;}
.xa2_c00374{left:651.000000px;}
.x54_c00374{left:652.920000px;}
.x9b_c00374{left:655.920000px;}
.xba_c00374{left:658.500000px;}
.xc6_c00374{left:661.920000px;}
.xac_c00374{left:665.580000px;}
.x78_c00374{left:669.420000px;}
.x27_c00374{left:672.000000px;}
.xa8_c00374{left:673.080000px;}
.x67_c00374{left:675.420000px;}
.x89_c00374{left:677.580000px;}
.x1b_c00374{left:680.580000px;}
.x38_c00374{left:682.500000px;}
.xc_c00374{left:687.000000px;}
.xd5_c00374{left:688.920000px;}
.x39_c00374{left:693.000000px;}
.x93_c00374{left:696.000000px;}
.x42_c00374{left:697.080000px;}
.x5e_c00374{left:700.500000px;}
.xc3_c00374{left:704.580000px;}
.xd_c00374{left:706.920000px;}
.x79_c00374{left:709.500000px;}
.xc0_c00374{left:711.420000px;}
.x71_c00374{left:714.420000px;}
.x83_c00374{left:717.000000px;}
.x4a_c00374{left:718.500000px;}
.xdf_c00374{left:723.000000px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.ls0_c00374{letter-spacing:0.000000pt;}
.ws0_c00374{word-spacing:-8.192542pt;}
.ws1_c00374{word-spacing:-2.708257pt;}
.ws2_c00374{word-spacing:-2.692693pt;}
.ws3_c00374{word-spacing:0.000000pt;}
.fs2_c00374{font-size:16.640000pt;}
.fs6_c00374{font-size:18.133333pt;}
.fs3_c00374{font-size:22.666667pt;}
.fs0_c00374{font-size:25.706667pt;}
.fs5_c00374{font-size:28.746667pt;}
.fs1_c00374{font-size:31.733333pt;}
.fs4_c00374{font-size:34.773333pt;}
.y0_c00374{bottom:0.000000pt;}
.yaa_c00374{bottom:204.360000pt;}
.ya9_c00374{bottom:205.493333pt;}
.yab_c00374{bottom:205.693333pt;}
.ya8_c00374{bottom:206.440000pt;}
.ya7_c00374{bottom:209.693333pt;}
.ya4_c00374{bottom:225.106667pt;}
.ya5_c00374{bottom:225.693333pt;}
.ya3_c00374{bottom:225.893333pt;}
.ya1_c00374{bottom:226.266667pt;}
.ya6_c00374{bottom:226.640000pt;}
.ya2_c00374{bottom:227.026667pt;}
.ya0_c00374{bottom:240.360000pt;}
.y9f_c00374{bottom:241.106667pt;}
.y9d_c00374{bottom:242.066667pt;}
.y9c_c00374{bottom:242.440000pt;}
.y9b_c00374{bottom:243.226667pt;}
.y9e_c00374{bottom:244.360000pt;}
.y96_c00374{bottom:257.693333pt;}
.y97_c00374{bottom:259.400000pt;}
.y98_c00374{bottom:259.773333pt;}
.y99_c00374{bottom:260.360000pt;}
.y9a_c00374{bottom:260.560000pt;}
.y95_c00374{bottom:261.693333pt;}
.y91_c00374{bottom:277.106667pt;}
.y92_c00374{bottom:277.306667pt;}
.y93_c00374{bottom:277.893333pt;}
.y90_c00374{bottom:279.026667pt;}
.y94_c00374{bottom:279.973333pt;}
.y8e_c00374{bottom:293.493333pt;}
.y8d_c00374{bottom:294.440000pt;}
.y8c_c00374{bottom:296.360000pt;}
.y8f_c00374{bottom:296.560000pt;}
.y8a_c00374{bottom:311.773333pt;}
.y88_c00374{bottom:313.106667pt;}
.y89_c00374{bottom:313.693333pt;}
.y8b_c00374{bottom:314.640000pt;}
.y87_c00374{bottom:315.026667pt;}
.y85_c00374{bottom:328.360000pt;}
.y84_c00374{bottom:329.106667pt;}
.y82_c00374{bottom:330.066667pt;}
.y80_c00374{bottom:330.440000pt;}
.y83_c00374{bottom:331.026667pt;}
.y7f_c00374{bottom:331.226667pt;}
.y86_c00374{bottom:331.973333pt;}
.y81_c00374{bottom:332.360000pt;}
.y7b_c00374{bottom:351.773333pt;}
.y7e_c00374{bottom:352.560000pt;}
.y7c_c00374{bottom:353.306667pt;}
.y7d_c00374{bottom:353.693333pt;}
.y7a_c00374{bottom:382.440000pt;}
.y79_c00374{bottom:384.360000pt;}
.y78_c00374{bottom:399.773333pt;}
.y76_c00374{bottom:401.306667pt;}
.y77_c00374{bottom:401.693333pt;}
.y74_c00374{bottom:417.106667pt;}
.y75_c00374{bottom:418.066667pt;}
.y73_c00374{bottom:419.026667pt;}
.y6e_c00374{bottom:434.440000pt;}
.y72_c00374{bottom:435.973333pt;}
.y6f_c00374{bottom:436.360000pt;}
.y71_c00374{bottom:436.560000pt;}
.y70_c00374{bottom:437.306667pt;}
.y69_c00374{bottom:453.106667pt;}
.y6c_c00374{bottom:453.693333pt;}
.y6b_c00374{bottom:453.893333pt;}
.y6d_c00374{bottom:454.640000pt;}
.y6a_c00374{bottom:455.026667pt;}
.y65_c00374{bottom:469.106667pt;}
.y66_c00374{bottom:470.440000pt;}
.y67_c00374{bottom:471.226667pt;}
.y68_c00374{bottom:471.400000pt;}
.y64_c00374{bottom:471.973333pt;}
.y63_c00374{bottom:472.360000pt;}
.y60_c00374{bottom:487.773333pt;}
.y61_c00374{bottom:488.360000pt;}
.y62_c00374{bottom:488.560000pt;}
.y5f_c00374{bottom:489.693333pt;}
.y5d_c00374{bottom:504.160000pt;}
.y5e_c00374{bottom:505.106667pt;}
.y5b_c00374{bottom:506.066667pt;}
.y5c_c00374{bottom:507.026667pt;}
.y58_c00374{bottom:520.360000pt;}
.y55_c00374{bottom:522.440000pt;}
.y57_c00374{bottom:523.226667pt;}
.y59_c00374{bottom:523.400000pt;}
.y54_c00374{bottom:524.360000pt;}
.y56_c00374{bottom:524.560000pt;}
.y5a_c00374{bottom:525.693333pt;}
.y53_c00374{bottom:539.773333pt;}
.y51_c00374{bottom:540.733333pt;}
.y52_c00374{bottom:541.693333pt;}
.y50_c00374{bottom:543.026667pt;}
.y4d_c00374{bottom:558.440000pt;}
.y4f_c00374{bottom:559.026667pt;}
.y4e_c00374{bottom:559.226667pt;}
.y4c_c00374{bottom:560.360000pt;}
.y4b_c00374{bottom:575.773333pt;}
.y4a_c00374{bottom:577.693333pt;}
.y43_c00374{bottom:591.026667pt;}
.y47_c00374{bottom:591.773333pt;}
.y45_c00374{bottom:593.106667pt;}
.y46_c00374{bottom:593.693333pt;}
.y49_c00374{bottom:593.893333pt;}
.y42_c00374{bottom:594.066667pt;}
.y48_c00374{bottom:594.640000pt;}
.y44_c00374{bottom:595.026667pt;}
.y3f_c00374{bottom:610.440000pt;}
.y40_c00374{bottom:611.226667pt;}
.y3e_c00374{bottom:612.360000pt;}
.y41_c00374{bottom:613.306667pt;}
.y3c_c00374{bottom:627.773333pt;}
.y3d_c00374{bottom:628.733333pt;}
.y3b_c00374{bottom:629.693333pt;}
.y3a_c00374{bottom:629.893333pt;}
.y38_c00374{bottom:645.106667pt;}
.y37_c00374{bottom:645.306667pt;}
.y35_c00374{bottom:646.066667pt;}
.y34_c00374{bottom:647.026667pt;}
.y39_c00374{bottom:647.226667pt;}
.y36_c00374{bottom:647.973333pt;}
.y32_c00374{bottom:661.693333pt;}
.y31_c00374{bottom:662.440000pt;}
.y30_c00374{bottom:664.360000pt;}
.y33_c00374{bottom:664.560000pt;}
.y2f_c00374{bottom:679.026667pt;}
.y2c_c00374{bottom:679.773333pt;}
.y2e_c00374{bottom:680.733333pt;}
.y2b_c00374{bottom:681.693333pt;}
.y2d_c00374{bottom:681.893333pt;}
.y2a_c00374{bottom:697.493333pt;}
.y29_c00374{bottom:698.440000pt;}
.y28_c00374{bottom:699.973333pt;}
.y27_c00374{bottom:700.360000pt;}
.y22_c00374{bottom:715.773333pt;}
.y24_c00374{bottom:716.560000pt;}
.y26_c00374{bottom:716.733333pt;}
.y25_c00374{bottom:717.693333pt;}
.y23_c00374{bottom:718.640000pt;}
.y21_c00374{bottom:731.026667pt;}
.y20_c00374{bottom:733.106667pt;}
.y1f_c00374{bottom:735.026667pt;}
.y1c_c00374{bottom:749.106667pt;}
.y1d_c00374{bottom:750.440000pt;}
.y1e_c00374{bottom:751.773333pt;}
.y1b_c00374{bottom:752.360000pt;}
.y19_c00374{bottom:767.773333pt;}
.y1a_c00374{bottom:768.560000pt;}
.y18_c00374{bottom:769.693333pt;}
.y16_c00374{bottom:786.640000pt;}
.y17_c00374{bottom:787.026667pt;}
.y10_c00374{bottom:802.440000pt;}
.y13_c00374{bottom:802.826667pt;}
.y12_c00374{bottom:803.773333pt;}
.y11_c00374{bottom:804.360000pt;}
.y15_c00374{bottom:804.560000pt;}
.y14_c00374{bottom:805.693333pt;}
.ye_c00374{bottom:819.773333pt;}
.yc_c00374{bottom:821.106667pt;}
.yd_c00374{bottom:821.693333pt;}
.yf_c00374{bottom:823.026667pt;}
.y7_c00374{bottom:837.106667pt;}
.yb_c00374{bottom:837.493333pt;}
.y9_c00374{bottom:838.440000pt;}
.y6_c00374{bottom:839.026667pt;}
.y8_c00374{bottom:839.226667pt;}
.ya_c00374{bottom:839.973333pt;}
.y5_c00374{bottom:840.360000pt;}
.y3_c00374{bottom:855.773333pt;}
.y4_c00374{bottom:856.560000pt;}
.y2_c00374{bottom:857.693333pt;}
.y1_c00374{bottom:892.360000pt;}
.h3_c00374{height:20.466875pt;}
.h7_c00374{height:22.303646pt;}
.h4_c00374{height:27.879557pt;}
.h1_c00374{height:31.618698pt;}
.h6_c00374{height:35.357839pt;}
.h2_c00374{height:39.031380pt;}
.h5_c00374{height:42.770521pt;}
.h0_c00374{height:1186.666667pt;}
.w0_c00374{width:782.666667pt;}
.x0_c00374{left:0.000000pt;}
.x1c_c00374{left:134.293333pt;}
.xe_c00374{left:136.373333pt;}
.xee_c00374{left:137.706667pt;}
.xe0_c00374{left:143.626667pt;}
.x3_c00374{left:149.333333pt;}
.xa3_c00374{left:151.040000pt;}
.xc7_c00374{left:152.000000pt;}
.x3a_c00374{left:153.333333pt;}
.x30_c00374{left:159.626667pt;}
.x55_c00374{left:160.960000pt;}
.xad_c00374{left:162.666667pt;}
.xcf_c00374{left:163.626667pt;}
.xe1_c00374{left:164.960000pt;}
.x8a_c00374{left:167.626667pt;}
.x94_c00374{left:171.040000pt;}
.xf_c00374{left:172.960000pt;}
.x68_c00374{left:174.666667pt;}
.x4_c00374{left:177.333333pt;}
.x28_c00374{left:179.040000pt;}
.x72_c00374{left:180.000000pt;}
.xec_c00374{left:181.333333pt;}
.x9c_c00374{left:183.040000pt;}
.x4b_c00374{left:186.293333pt;}
.x10_c00374{left:188.960000pt;}
.xb2_c00374{left:190.666667pt;}
.x1d_c00374{left:195.626667pt;}
.x8b_c00374{left:196.573333pt;}
.xdb_c00374{left:197.706667pt;}
.x43_c00374{left:200.373333pt;}
.x56_c00374{left:201.333333pt;}
.x7a_c00374{left:204.373333pt;}
.x84_c00374{left:205.333333pt;}
.x95_c00374{left:206.666667pt;}
.xd0_c00374{left:208.000000pt;}
.xb3_c00374{left:209.706667pt;}
.xc8_c00374{left:210.666667pt;}
.x4c_c00374{left:212.000000pt;}
.x69_c00374{left:219.626667pt;}
.xe6_c00374{left:223.040000pt;}
.x4d_c00374{left:224.373333pt;}
.x1e_c00374{left:225.706667pt;}
.x5f_c00374{left:226.666667pt;}
.xa4_c00374{left:228.000000pt;}
.xd6_c00374{left:229.333333pt;}
.xbb_c00374{left:230.666667pt;}
.x44_c00374{left:233.706667pt;}
.x57_c00374{left:234.666667pt;}
.x3b_c00374{left:235.626667pt;}
.x9d_c00374{left:237.706667pt;}
.x7b_c00374{left:240.000000pt;}
.x97_c00374{left:240.960000pt;}
.x32_c00374{left:242.666667pt;}
.xef_c00374{left:244.373333pt;}
.xc4_c00374{left:247.040000pt;}
.xe7_c00374{left:248.000000pt;}
.xcc_c00374{left:249.706667pt;}
.x11_c00374{left:251.040000pt;}
.x58_c00374{left:253.706667pt;}
.x8c_c00374{left:255.626667pt;}
.xd7_c00374{left:257.333333pt;}
.x5_c00374{left:260.000000pt;}
.x31_c00374{left:262.666667pt;}
.x29_c00374{left:264.000000pt;}
.x60_c00374{left:268.000000pt;}
.x96_c00374{left:268.960000pt;}
.x98_c00374{left:271.040000pt;}
.xa5_c00374{left:272.000000pt;}
.x1f_c00374{left:275.040000pt;}
.x9e_c00374{left:276.000000pt;}
.x6_c00374{left:276.960000pt;}
.x59_c00374{left:280.000000pt;}
.x12_c00374{left:281.333333pt;}
.x6a_c00374{left:283.040000pt;}
.x20_c00374{left:284.960000pt;}
.xa6_c00374{left:286.666667pt;}
.x33_c00374{left:287.626667pt;}
.xed_c00374{left:289.333333pt;}
.xae_c00374{left:290.666667pt;}
.xdc_c00374{left:292.000000pt;}
.x73_c00374{left:293.706667pt;}
.x85_c00374{left:294.666667pt;}
.xc1_c00374{left:296.000000pt;}
.x45_c00374{left:297.333333pt;}
.xb4_c00374{left:300.960000pt;}
.x13_c00374{left:302.293333pt;}
.xd8_c00374{left:304.000000pt;}
.x1_c00374{left:304.960000pt;}
.x61_c00374{left:308.000000pt;}
.xe2_c00374{left:310.293333pt;}
.xd1_c00374{left:311.626667pt;}
.x21_c00374{left:315.040000pt;}
.x74_c00374{left:317.706667pt;}
.xc5_c00374{left:319.040000pt;}
.xa9_c00374{left:320.000000pt;}
.x8d_c00374{left:320.960000pt;}
.xbc_c00374{left:322.666667pt;}
.xdd_c00374{left:324.373333pt;}
.x6b_c00374{left:325.706667pt;}
.xd2_c00374{left:328.000000pt;}
.x99_c00374{left:329.333333pt;}
.x7c_c00374{left:332.000000pt;}
.x4e_c00374{left:333.333333pt;}
.xe8_c00374{left:337.333333pt;}
.xf0_c00374{left:338.666667pt;}
.x75_c00374{left:340.000000pt;}
.x7_c00374{left:344.960000pt;}
.xd3_c00374{left:346.666667pt;}
.x7d_c00374{left:347.626667pt;}
.x6c_c00374{left:349.333333pt;}
.x5a_c00374{left:350.666667pt;}
.x22_c00374{left:352.373333pt;}
.x2_c00374{left:354.666667pt;}
.xbd_c00374{left:356.000000pt;}
.x4f_c00374{left:358.293333pt;}
.xaf_c00374{left:360.000000pt;}
.x46_c00374{left:363.626667pt;}
.x5b_c00374{left:365.333333pt;}
.xbe_c00374{left:369.706667pt;}
.x9f_c00374{left:371.626667pt;}
.x62_c00374{left:373.333333pt;}
.x14_c00374{left:376.000000pt;}
.x6d_c00374{left:377.706667pt;}
.x3c_c00374{left:378.666667pt;}
.xaa_c00374{left:383.040000pt;}
.x34_c00374{left:384.000000pt;}
.x23_c00374{left:384.960000pt;}
.xb5_c00374{left:388.000000pt;}
.x2a_c00374{left:390.666667pt;}
.x15_c00374{left:395.626667pt;}
.x86_c00374{left:400.000000pt;}
.xe9_c00374{left:401.333333pt;}
.x6e_c00374{left:403.040000pt;}
.xc9_c00374{left:406.666667pt;}
.x50_c00374{left:408.000000pt;}
.x16_c00374{left:410.666667pt;}
.x8_c00374{left:412.000000pt;}
.xb6_c00374{left:413.333333pt;}
.x7e_c00374{left:414.666667pt;}
.x63_c00374{left:415.626667pt;}
.x3d_c00374{left:417.706667pt;}
.xd4_c00374{left:418.666667pt;}
.xa7_c00374{left:421.333333pt;}
.x2b_c00374{left:423.040000pt;}
.xc2_c00374{left:424.373333pt;}
.xe3_c00374{left:427.800000pt;}
.x87_c00374{left:430.666667pt;}
.x9a_c00374{left:432.000000pt;}
.xde_c00374{left:432.960000pt;}
.xcd_c00374{left:434.293333pt;}
.x24_c00374{left:435.626667pt;}
.xd9_c00374{left:437.333333pt;}
.x8e_c00374{left:440.000000pt;}
.x17_c00374{left:444.373333pt;}
.x9_c00374{left:445.333333pt;}
.xb7_c00374{left:448.000000pt;}
.x5c_c00374{left:449.706667pt;}
.x88_c00374{left:452.960000pt;}
.xa_c00374{left:457.333333pt;}
.x2c_c00374{left:458.293333pt;}
.x35_c00374{left:459.626667pt;}
.x76_c00374{left:461.333333pt;}
.xe4_c00374{left:462.666667pt;}
.xa0_c00374{left:465.333333pt;}
.x3e_c00374{left:466.666667pt;}
.x18_c00374{left:469.333333pt;}
.x51_c00374{left:472.373333pt;}
.xf3_c00374{left:473.706667pt;}
.x8f_c00374{left:474.666667pt;}
.x7f_c00374{left:475.626667pt;}
.x47_c00374{left:477.706667pt;}
.x5d_c00374{left:480.000000pt;}
.xf1_c00374{left:484.000000pt;}
.x2d_c00374{left:485.333333pt;}
.x6f_c00374{left:488.373333pt;}
.xab_c00374{left:490.666667pt;}
.xce_c00374{left:492.960000pt;}
.xda_c00374{left:496.373333pt;}
.xb0_c00374{left:497.706667pt;}
.x3f_c00374{left:501.333333pt;}
.x25_c00374{left:502.293333pt;}
.x52_c00374{left:506.666667pt;}
.x80_c00374{left:509.333333pt;}
.xea_c00374{left:511.040000pt;}
.x48_c00374{left:512.960000pt;}
.xb8_c00374{left:514.666667pt;}
.x19_c00374{left:518.666667pt;}
.x90_c00374{left:520.373333pt;}
.x36_c00374{left:521.333333pt;}
.xca_c00374{left:524.000000pt;}
.x81_c00374{left:525.706667pt;}
.x77_c00374{left:526.666667pt;}
.x2e_c00374{left:527.626667pt;}
.xb_c00374{left:529.706667pt;}
.x26_c00374{left:531.626667pt;}
.xb1_c00374{left:533.706667pt;}
.x64_c00374{left:534.666667pt;}
.x40_c00374{left:538.666667pt;}
.x91_c00374{left:540.000000pt;}
.x2f_c00374{left:543.626667pt;}
.x1a_c00374{left:545.333333pt;}
.x82_c00374{left:548.000000pt;}
.xb9_c00374{left:551.040000pt;}
.xf2_c00374{left:552.373333pt;}
.xcb_c00374{left:553.333333pt;}
.xa1_c00374{left:556.373333pt;}
.x65_c00374{left:557.333333pt;}
.xeb_c00374{left:558.293333pt;}
.x92_c00374{left:564.000000pt;}
.x53_c00374{left:566.666667pt;}
.x70_c00374{left:568.000000pt;}
.xbf_c00374{left:569.333333pt;}
.x41_c00374{left:570.293333pt;}
.x66_c00374{left:572.960000pt;}
.x37_c00374{left:574.293333pt;}
.xe5_c00374{left:576.000000pt;}
.x49_c00374{left:577.333333pt;}
.xa2_c00374{left:578.666667pt;}
.x54_c00374{left:580.373333pt;}
.x9b_c00374{left:583.040000pt;}
.xba_c00374{left:585.333333pt;}
.xc6_c00374{left:588.373333pt;}
.xac_c00374{left:591.626667pt;}
.x78_c00374{left:595.040000pt;}
.x27_c00374{left:597.333333pt;}
.xa8_c00374{left:598.293333pt;}
.x67_c00374{left:600.373333pt;}
.x89_c00374{left:602.293333pt;}
.x1b_c00374{left:604.960000pt;}
.x38_c00374{left:606.666667pt;}
.xc_c00374{left:610.666667pt;}
.xd5_c00374{left:612.373333pt;}
.x39_c00374{left:616.000000pt;}
.x93_c00374{left:618.666667pt;}
.x42_c00374{left:619.626667pt;}
.x5e_c00374{left:622.666667pt;}
.xc3_c00374{left:626.293333pt;}
.xd_c00374{left:628.373333pt;}
.x79_c00374{left:630.666667pt;}
.xc0_c00374{left:632.373333pt;}
.x71_c00374{left:635.040000pt;}
.x83_c00374{left:637.333333pt;}
.x4a_c00374{left:638.666667pt;}
.xdf_c00374{left:642.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_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_f52e33fa76f75a6988d8f532.woff2')format("woff");}.ff1_c00375{font-family:ff1_c00375;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma6_c00375{transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);}
.m90_c00375{transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);}
.m7a_c00375{transform:matrix(0.357362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357362,0.000000,0.000000,0.250000,0,0);}
.m6a_c00375{transform:matrix(0.363497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363497,0.000000,0.000000,0.250000,0,0);}
.m3a_c00375{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m96_c00375{transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);}
.m0_c00375{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.mb8_c00375{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m6f_c00375{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mcb_c00375{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m6d_c00375{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.ma0_c00375{transform:matrix(0.376917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376917,0.000000,0.000000,0.250000,0,0);}
.mca_c00375{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.ma4_c00375{transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);}
.ma5_c00375{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m69_c00375{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m10_c00375{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m57_c00375{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m1d_c00375{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m4e_c00375{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m8e_c00375{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m45_c00375{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.mcf_c00375{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m14_c00375{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m79_c00375{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m19_c00375{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mc0_c00375{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.md0_c00375{transform:matrix(0.397239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397239,0.000000,0.000000,0.250000,0,0);}
.m46_c00375{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.mb6_c00375{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mb2_c00375{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.ma7_c00375{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m2c_c00375{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m41_c00375{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.ma1_c00375{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m13_c00375{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m83_c00375{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m15_c00375{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m9f_c00375{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.mb3_c00375{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mce_c00375{transform:matrix(0.410276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410276,0.000000,0.000000,0.250000,0,0);}
.maf_c00375{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m68_c00375{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m6e_c00375{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.mb0_c00375{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m98_c00375{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m9b_c00375{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m1a_c00375{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mba_c00375{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.mf_c00375{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m8a_c00375{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m77_c00375{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m4c_c00375{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m86_c00375{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m87_c00375{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.mc4_c00375{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.mb7_c00375{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m40_c00375{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m26_c00375{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m8_c00375{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.mae_c00375{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.md4_c00375{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m47_c00375{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mb9_c00375{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.maa_c00375{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m2f_c00375{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m4d_c00375{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.md1_c00375{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mc6_c00375{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m75_c00375{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.m8d_c00375{transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);}
.m82_c00375{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m97_c00375{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.mab_c00375{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.md3_c00375{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m52_c00375{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m63_c00375{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mbc_c00375{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.m92_c00375{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.mc2_c00375{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m85_c00375{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m61_c00375{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mc3_c00375{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m88_c00375{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m7b_c00375{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m5_c00375{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m7d_c00375{transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);}
.m1f_c00375{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m9c_c00375{transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);}
.m2a_c00375{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m9d_c00375{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m2b_c00375{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m16_c00375{transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);}
.mc5_c00375{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.m70_c00375{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m24_c00375{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.mb_c00375{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m50_c00375{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.m4b_c00375{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m8c_c00375{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m32_c00375{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m27_c00375{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m3d_c00375{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.mc7_c00375{transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);}
.m11_c00375{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m56_c00375{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m78_c00375{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m66_c00375{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.ma8_c00375{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m4a_c00375{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m28_c00375{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m2_c00375{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_c00375{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m5c_c00375{transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);}
.m5d_c00375{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m4f_c00375{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m5e_c00375{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m74_c00375{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m48_c00375{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m43_c00375{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mc1_c00375{transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);}
.m23_c00375{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m37_c00375{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m65_c00375{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.ma_c00375{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.md6_c00375{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m5a_c00375{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m73_c00375{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m17_c00375{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m58_c00375{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mbb_c00375{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m36_c00375{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m18_c00375{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.ma9_c00375{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m12_c00375{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m7_c00375{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m42_c00375{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m7e_c00375{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m21_c00375{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m6b_c00375{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m4_c00375{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m9e_c00375{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m22_c00375{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m81_c00375{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m9_c00375{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m53_c00375{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mbd_c00375{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m99_c00375{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m84_c00375{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mbf_c00375{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m3_c00375{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m67_c00375{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m29_c00375{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mb5_c00375{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m1e_c00375{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.mbe_c00375{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m30_c00375{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m9a_c00375{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mac_c00375{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m3f_c00375{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m93_c00375{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m2e_c00375{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m3e_c00375{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mcc_c00375{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m62_c00375{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.md_c00375{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m60_c00375{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m25_c00375{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mc8_c00375{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.ma2_c00375{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m39_c00375{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m80_c00375{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m6_c00375{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m59_c00375{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m3b_c00375{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);}
.m8b_c00375{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m38_c00375{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mc9_c00375{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m5f_c00375{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m2d_c00375{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.m95_c00375{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m76_c00375{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m55_c00375{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);}
.md5_c00375{transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);}
.m1c_c00375{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m3c_c00375{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m34_c00375{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m7c_c00375{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m49_c00375{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m91_c00375{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m89_c00375{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.mcd_c00375{transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);}
.mb4_c00375{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m1_c00375{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.mad_c00375{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m51_c00375{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.md2_c00375{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.m94_c00375{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m54_c00375{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m6c_c00375{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.mc_c00375{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m1b_c00375{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m64_c00375{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m8f_c00375{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m33_c00375{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m35_c00375{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m44_c00375{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m5b_c00375{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m20_c00375{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.me_c00375{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m7f_c00375{transform:matrix(0.808088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.808088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.808088,0.000000,0.000000,0.250000,0,0);}
.m71_c00375{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.ma3_c00375{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m72_c00375{transform:matrix(7.210526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.210526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.210526,0.000000,0.000000,0.250000,0,0);}
.mb1_c00375{transform:matrix(7.274336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.274336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.274336,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;}
}
.ws2_c00375{word-spacing:-6.400641px;}
.ws0_c00375{word-spacing:-3.584672px;}
.ws3_c00375{word-spacing:0.000000px;}
.ws1_c00375{word-spacing:65.202698px;}
.fc0_c00375{color:transparent;}
.fs7_c00375{font-size:3.420000px;}
.fs8_c00375{font-size:6.780000px;}
.fs4_c00375{font-size:18.720000px;}
.fs1_c00375{font-size:20.400000px;}
.fs5_c00375{font-size:25.500000px;}
.fs2_c00375{font-size:28.920000px;}
.fs3_c00375{font-size:32.340000px;}
.fs0_c00375{font-size:35.700000px;}
.fs6_c00375{font-size:39.120000px;}
.y0_c00375{bottom:0.000000px;}
.yd2_c00375{bottom:249.405000px;}
.ycc_c00375{bottom:250.245000px;}
.yce_c00375{bottom:251.550000px;}
.ycf_c00375{bottom:251.745000px;}
.ycd_c00375{bottom:252.405000px;}
.yd1_c00375{bottom:253.470000px;}
.yd0_c00375{bottom:253.905000px;}
.yc8_c00375{bottom:269.745000px;}
.yca_c00375{bottom:270.180000px;}
.ycb_c00375{bottom:271.245000px;}
.yc9_c00375{bottom:272.970000px;}
.yc7_c00375{bottom:273.405000px;}
.yc6_c00375{bottom:290.325000px;}
.yc2_c00375{bottom:290.745000px;}
.yc4_c00375{bottom:290.970000px;}
.yc3_c00375{bottom:291.630000px;}
.yc5_c00375{bottom:292.050000px;}
.yc1_c00375{bottom:292.905000px;}
.ybf_c00375{bottom:309.825000px;}
.ybe_c00375{bottom:310.245000px;}
.yc0_c00375{bottom:311.970000px;}
.ybd_c00375{bottom:312.405000px;}
.ybb_c00375{bottom:329.745000px;}
.yba_c00375{bottom:330.630000px;}
.ybc_c00375{bottom:330.825000px;}
.yb9_c00375{bottom:331.905000px;}
.yb4_c00375{bottom:348.405000px;}
.yb2_c00375{bottom:349.245000px;}
.yb6_c00375{bottom:350.745000px;}
.yb3_c00375{bottom:351.405000px;}
.yb8_c00375{bottom:351.630000px;}
.yb7_c00375{bottom:352.470000px;}
.yb5_c00375{bottom:352.905000px;}
.yb1_c00375{bottom:367.905000px;}
.yb0_c00375{bottom:370.245000px;}
.yad_c00375{bottom:370.470000px;}
.yae_c00375{bottom:371.970000px;}
.yaf_c00375{bottom:372.405000px;}
.ya9_c00375{bottom:387.855000px;}
.yaa_c00375{bottom:388.245000px;}
.yab_c00375{bottom:388.470000px;}
.yac_c00375{bottom:388.905000px;}
.ya6_c00375{bottom:389.745000px;}
.ya8_c00375{bottom:390.630000px;}
.ya7_c00375{bottom:391.470000px;}
.ya5_c00375{bottom:391.905000px;}
.ya2_c00375{bottom:406.905000px;}
.ya4_c00375{bottom:409.245000px;}
.ya3_c00375{bottom:411.405000px;}
.ya1_c00375{bottom:427.905000px;}
.ya0_c00375{bottom:428.745000px;}
.y9f_c00375{bottom:430.905000px;}
.y9d_c00375{bottom:448.245000px;}
.y9b_c00375{bottom:449.325000px;}
.y9e_c00375{bottom:449.970000px;}
.y9c_c00375{bottom:450.405000px;}
.y9a_c00375{bottom:451.470000px;}
.y98_c00375{bottom:467.745000px;}
.y97_c00375{bottom:469.245000px;}
.y99_c00375{bottom:469.905000px;}
.y95_c00375{bottom:470.130000px;}
.y96_c00375{bottom:470.970000px;}
.y94_c00375{bottom:471.405000px;}
.y8e_c00375{bottom:486.405000px;}
.y93_c00375{bottom:487.245000px;}
.y91_c00375{bottom:487.680000px;}
.y8c_c00375{bottom:488.550000px;}
.y92_c00375{bottom:488.745000px;}
.y90_c00375{bottom:489.630000px;}
.y8f_c00375{bottom:490.470000px;}
.y8d_c00375{bottom:490.905000px;}
.y88_c00375{bottom:506.970000px;}
.y89_c00375{bottom:507.180000px;}
.y8a_c00375{bottom:508.245000px;}
.y8b_c00375{bottom:508.905000px;}
.y87_c00375{bottom:510.405000px;}
.y86_c00375{bottom:526.470000px;}
.y85_c00375{bottom:526.905000px;}
.y83_c00375{bottom:527.745000px;}
.y84_c00375{bottom:528.630000px;}
.y82_c00375{bottom:529.905000px;}
.y81_c00375{bottom:546.405000px;}
.y7f_c00375{bottom:547.245000px;}
.y80_c00375{bottom:549.405000px;}
.y7d_c00375{bottom:565.905000px;}
.y7c_c00375{bottom:566.745000px;}
.y7e_c00375{bottom:567.825000px;}
.y79_c00375{bottom:568.050000px;}
.y7a_c00375{bottom:568.905000px;}
.y7b_c00375{bottom:569.130000px;}
.y78_c00375{bottom:585.405000px;}
.y74_c00375{bottom:586.245000px;}
.y75_c00375{bottom:586.470000px;}
.y73_c00375{bottom:587.325000px;}
.y77_c00375{bottom:588.405000px;}
.y76_c00375{bottom:588.630000px;}
.y72_c00375{bottom:604.905000px;}
.y6f_c00375{bottom:605.970000px;}
.y70_c00375{bottom:606.825000px;}
.y6d_c00375{bottom:607.245000px;}
.y6e_c00375{bottom:608.325000px;}
.y71_c00375{bottom:608.970000px;}
.y6c_c00375{bottom:609.405000px;}
.y6a_c00375{bottom:626.745000px;}
.y6b_c00375{bottom:627.630000px;}
.y68_c00375{bottom:643.905000px;}
.y69_c00375{bottom:646.245000px;}
.y66_c00375{bottom:647.550000px;}
.y67_c00375{bottom:648.405000px;}
.y60_c00375{bottom:674.745000px;}
.y62_c00375{bottom:676.245000px;}
.y64_c00375{bottom:676.905000px;}
.y65_c00375{bottom:677.130000px;}
.y61_c00375{bottom:677.970000px;}
.y63_c00375{bottom:678.405000px;}
.y5f_c00375{bottom:721.905000px;}
.y5e_c00375{bottom:723.180000px;}
.y5b_c00375{bottom:724.245000px;}
.y5c_c00375{bottom:725.130000px;}
.y5d_c00375{bottom:726.405000px;}
.y58_c00375{bottom:743.745000px;}
.y59_c00375{bottom:744.825000px;}
.y56_c00375{bottom:745.905000px;}
.y5a_c00375{bottom:746.130000px;}
.y57_c00375{bottom:746.970000px;}
.y54_c00375{bottom:762.405000px;}
.y55_c00375{bottom:763.245000px;}
.y53_c00375{bottom:763.920000px;}
.y50_c00375{bottom:764.325000px;}
.y51_c00375{bottom:765.405000px;}
.y52_c00375{bottom:765.630000px;}
.y4d_c00375{bottom:782.745000px;}
.y4a_c00375{bottom:783.405000px;}
.y4c_c00375{bottom:783.825000px;}
.y4f_c00375{bottom:784.245000px;}
.y4b_c00375{bottom:784.905000px;}
.y4e_c00375{bottom:785.130000px;}
.y49_c00375{bottom:801.405000px;}
.y48_c00375{bottom:803.745000px;}
.y47_c00375{bottom:805.905000px;}
.y44_c00375{bottom:822.180000px;}
.y43_c00375{bottom:823.245000px;}
.y45_c00375{bottom:823.470000px;}
.y42_c00375{bottom:824.130000px;}
.y41_c00375{bottom:825.405000px;}
.y46_c00375{bottom:825.630000px;}
.y40_c00375{bottom:842.325000px;}
.y3e_c00375{bottom:843.630000px;}
.y3f_c00375{bottom:844.470000px;}
.y3d_c00375{bottom:844.905000px;}
.y3b_c00375{bottom:861.825000px;}
.y3a_c00375{bottom:862.245000px;}
.y3c_c00375{bottom:864.405000px;}
.y39_c00375{bottom:864.630000px;}
.y35_c00375{bottom:881.745000px;}
.y38_c00375{bottom:882.630000px;}
.y36_c00375{bottom:883.905000px;}
.y37_c00375{bottom:884.130000px;}
.y32_c00375{bottom:900.405000px;}
.y33_c00375{bottom:901.905000px;}
.y2f_c00375{bottom:902.325000px;}
.y30_c00375{bottom:902.745000px;}
.y2e_c00375{bottom:903.405000px;}
.y34_c00375{bottom:903.630000px;}
.y31_c00375{bottom:904.470000px;}
.y2d_c00375{bottom:904.905000px;}
.y2b_c00375{bottom:919.905000px;}
.y2c_c00375{bottom:920.745000px;}
.y29_c00375{bottom:922.245000px;}
.y27_c00375{bottom:923.130000px;}
.y2a_c00375{bottom:923.325000px;}
.y28_c00375{bottom:924.405000px;}
.y25_c00375{bottom:940.905000px;}
.y21_c00375{bottom:941.325000px;}
.y23_c00375{bottom:941.745000px;}
.y26_c00375{bottom:942.405000px;}
.y24_c00375{bottom:942.630000px;}
.y22_c00375{bottom:943.905000px;}
.y20_c00375{bottom:960.825000px;}
.y1e_c00375{bottom:961.245000px;}
.y1f_c00375{bottom:962.130000px;}
.y1c_c00375{bottom:963.405000px;}
.y1d_c00375{bottom:964.470000px;}
.y1b_c00375{bottom:979.470000px;}
.y19_c00375{bottom:980.745000px;}
.y1a_c00375{bottom:981.630000px;}
.y18_c00375{bottom:982.905000px;}
.y14_c00375{bottom:999.825000px;}
.y16_c00375{bottom:1000.245000px;}
.y17_c00375{bottom:1001.130000px;}
.y15_c00375{bottom:1002.405000px;}
.y11_c00375{bottom:1018.470000px;}
.y12_c00375{bottom:1018.905000px;}
.ye_c00375{bottom:1019.745000px;}
.yc_c00375{bottom:1019.970000px;}
.y13_c00375{bottom:1020.630000px;}
.y10_c00375{bottom:1021.470000px;}
.yd_c00375{bottom:1021.905000px;}
.yf_c00375{bottom:1022.970000px;}
.yb_c00375{bottom:1037.970000px;}
.y9_c00375{bottom:1038.405000px;}
.y8_c00375{bottom:1039.245000px;}
.ya_c00375{bottom:1041.405000px;}
.y4_c00375{bottom:1058.325000px;}
.y7_c00375{bottom:1058.745000px;}
.y6_c00375{bottom:1059.630000px;}
.y5_c00375{bottom:1059.825000px;}
.y3_c00375{bottom:1060.905000px;}
.y1_c00375{bottom:1097.745000px;}
.y2_c00375{bottom:1099.050000px;}
.h8_c00375{height:4.206533px;}
.h9_c00375{height:8.339268px;}
.h5_c00375{height:23.025234px;}
.h2_c00375{height:25.091602px;}
.h6_c00375{height:31.364502px;}
.h3_c00375{height:35.571035px;}
.h4_c00375{height:39.777568px;}
.h1_c00375{height:43.910303px;}
.h7_c00375{height:48.116836px;}
.h0_c00375{height:1335.000000px;}
.w0_c00375{width:880.500000px;}
.x0_c00375{left:0.000000px;}
.xe0_c00375{left:151.500000px;}
.x84_c00375{left:153.000000px;}
.x1_c00375{left:154.500000px;}
.xaf_c00375{left:160.080000px;}
.x54_c00375{left:161.580000px;}
.x3_c00375{left:163.080000px;}
.xd2_c00375{left:183.000000px;}
.x8e_c00375{left:184.500000px;}
.x19_c00375{left:185.580000px;}
.x4_c00375{left:187.500000px;}
.xc2_c00375{left:202.920000px;}
.xcd_c00375{left:205.500000px;}
.xee_c00375{left:208.500000px;}
.xd8_c00375{left:210.000000px;}
.x5_c00375{left:211.500000px;}
.x12_c00375{left:214.080000px;}
.x39_c00375{left:215.580000px;}
.x85_c00375{left:217.920000px;}
.xde_c00375{left:222.000000px;}
.x1a_c00375{left:223.920000px;}
.x26_c00375{left:226.080000px;}
.xdd_c00375{left:228.420000px;}
.x79_c00375{left:229.500000px;}
.xb0_c00375{left:231.000000px;}
.xda_c00375{left:234.000000px;}
.x13_c00375{left:235.500000px;}
.xad_c00375{left:238.080000px;}
.x6f_c00375{left:240.000000px;}
.x27_c00375{left:244.920000px;}
.x3a_c00375{left:246.000000px;}
.xe6_c00375{left:247.920000px;}
.x95_c00375{left:250.500000px;}
.x9e_c00375{left:253.500000px;}
.x6_c00375{left:255.000000px;}
.x44_c00375{left:256.500000px;}
.xa2_c00375{left:258.000000px;}
.x4f_c00375{left:262.500000px;}
.x86_c00375{left:264.000000px;}
.x8f_c00375{left:265.500000px;}
.x1b_c00375{left:267.420000px;}
.xea_c00375{left:268.500000px;}
.x82_c00375{left:269.580000px;}
.x28_c00375{left:271.500000px;}
.x9f_c00375{left:273.000000px;}
.xdf_c00375{left:274.500000px;}
.xc8_c00375{left:276.420000px;}
.x14_c00375{left:277.920000px;}
.x70_c00375{left:279.000000px;}
.x3b_c00375{left:280.920000px;}
.x32_c00375{left:282.000000px;}
.xb1_c00375{left:286.500000px;}
.xce_c00375{left:287.580000px;}
.xdb_c00375{left:289.080000px;}
.x69_c00375{left:295.080000px;}
.x71_c00375{left:297.000000px;}
.x96_c00375{left:298.080000px;}
.xa7_c00375{left:301.920000px;}
.xc3_c00375{left:303.000000px;}
.x87_c00375{left:304.080000px;}
.xb7_c00375{left:306.420000px;}
.x29_c00375{left:307.500000px;}
.xb6_c00375{left:308.580000px;}
.x45_c00375{left:310.500000px;}
.x7_c00375{left:313.080000px;}
.x1c_c00375{left:315.000000px;}
.x90_c00375{left:316.080000px;}
.x83_c00375{left:317.580000px;}
.xe1_c00375{left:319.500000px;}
.xcf_c00375{left:321.000000px;}
.x2a_c00375{left:322.080000px;}
.xc4_c00375{left:325.500000px;}
.x72_c00375{left:327.420000px;}
.x61_c00375{left:328.500000px;}
.xd3_c00375{left:330.420000px;}
.x55_c00375{left:331.500000px;}
.xf0_c00375{left:333.000000px;}
.x1d_c00375{left:334.500000px;}
.x6a_c00375{left:337.500000px;}
.xc5_c00375{left:339.420000px;}
.x7a_c00375{left:340.500000px;}
.x8_c00375{left:342.420000px;}
.x3c_c00375{left:345.000000px;}
.x62_c00375{left:348.420000px;}
.xae_c00375{left:349.500000px;}
.x56_c00375{left:351.420000px;}
.xbd_c00375{left:352.500000px;}
.x91_c00375{left:358.500000px;}
.xf5_c00375{left:363.000000px;}
.x1e_c00375{left:364.500000px;}
.x9_c00375{left:369.420000px;}
.x57_c00375{left:372.000000px;}
.xa8_c00375{left:377.355000px;}
.xe2_c00375{left:378.420000px;}
.x63_c00375{left:379.920000px;}
.x73_c00375{left:382.920000px;}
.x6b_c00375{left:385.500000px;}
.xb2_c00375{left:387.000000px;}
.x7b_c00375{left:390.000000px;}
.xd4_c00375{left:391.500000px;}
.x2_c00375{left:393.000000px;}
.x3d_c00375{left:395.580000px;}
.xa3_c00375{left:397.080000px;}
.xbe_c00375{left:399.000000px;}
.x2b_c00375{left:401.580000px;}
.x6c_c00375{left:405.000000px;}
.xe7_c00375{left:406.500000px;}
.x92_c00375{left:409.500000px;}
.x46_c00375{left:411.420000px;}
.xa9_c00375{left:414.000000px;}
.xa4_c00375{left:415.080000px;}
.x88_c00375{left:416.580000px;}
.x74_c00375{left:420.000000px;}
.x6d_c00375{left:421.920000px;}
.xa_c00375{left:424.500000px;}
.x3e_c00375{left:426.420000px;}
.x97_c00375{left:430.500000px;}
.x64_c00375{left:434.580000px;}
.x75_c00375{left:436.500000px;}
.x47_c00375{left:438.000000px;}
.x1f_c00375{left:439.920000px;}
.xe3_c00375{left:441.420000px;}
.x58_c00375{left:445.500000px;}
.x98_c00375{left:447.420000px;}
.x2c_c00375{left:450.000000px;}
.x3f_c00375{left:451.500000px;}
.xf1_c00375{left:453.420000px;}
.xeb_c00375{left:454.920000px;}
.xa0_c00375{left:457.500000px;}
.xb_c00375{left:458.580000px;}
.xb3_c00375{left:460.500000px;}
.xd5_c00375{left:461.580000px;}
.x20_c00375{left:467.580000px;}
.x50_c00375{left:469.080000px;}
.x33_c00375{left:471.000000px;}
.x7c_c00375{left:472.920000px;}
.x93_c00375{left:474.000000px;}
.x99_c00375{left:478.920000px;}
.x48_c00375{left:481.500000px;}
.x65_c00375{left:483.000000px;}
.x34_c00375{left:484.080000px;}
.xc6_c00375{left:485.580000px;}
.xf6_c00375{left:487.080000px;}
.xc_c00375{left:489.000000px;}
.x59_c00375{left:490.920000px;}
.x76_c00375{left:492.000000px;}
.xb8_c00375{left:493.920000px;}
.x89_c00375{left:496.500000px;}
.x21_c00375{left:499.920000px;}
.xc9_c00375{left:501.420000px;}
.xe8_c00375{left:504.420000px;}
.x49_c00375{left:506.580000px;}
.x6e_c00375{left:511.500000px;}
.x77_c00375{left:513.420000px;}
.xd6_c00375{left:514.500000px;}
.xaa_c00375{left:516.420000px;}
.x5a_c00375{left:517.500000px;}
.xa1_c00375{left:519.420000px;}
.xb9_c00375{left:520.500000px;}
.xec_c00375{left:525.000000px;}
.x40_c00375{left:526.500000px;}
.x22_c00375{left:528.000000px;}
.xa5_c00375{left:529.500000px;}
.x35_c00375{left:530.580000px;}
.x9a_c00375{left:532.500000px;}
.x7d_c00375{left:533.580000px;}
.x2d_c00375{left:535.500000px;}
.x94_c00375{left:536.580000px;}
.xd_c00375{left:538.500000px;}
.x78_c00375{left:540.420000px;}
.xca_c00375{left:541.500000px;}
.x51_c00375{left:543.420000px;}
.xdc_c00375{left:546.000000px;}
.xf7_c00375{left:547.500000px;}
.x8a_c00375{left:551.580000px;}
.x5b_c00375{left:553.500000px;}
.xab_c00375{left:557.580000px;}
.xb4_c00375{left:559.920000px;}
.xf2_c00375{left:561.855000px;}
.xe_c00375{left:564.000000px;}
.xba_c00375{left:565.500000px;}
.x36_c00375{left:567.000000px;}
.x66_c00375{left:568.920000px;}
.xe4_c00375{left:570.000000px;}
.xd0_c00375{left:572.580000px;}
.x15_c00375{left:574.080000px;}
.x4a_c00375{left:575.580000px;}
.xd9_c00375{left:579.000000px;}
.xef_c00375{left:580.920000px;}
.x2e_c00375{left:585.420000px;}
.x5c_c00375{left:586.920000px;}
.x9b_c00375{left:588.420000px;}
.xa6_c00375{left:589.500000px;}
.xcb_c00375{left:592.500000px;}
.x41_c00375{left:593.580000px;}
.xc7_c00375{left:595.500000px;}
.x23_c00375{left:597.000000px;}
.x8b_c00375{left:601.500000px;}
.xbf_c00375{left:603.420000px;}
.x7e_c00375{left:604.920000px;}
.xf_c00375{left:607.500000px;}
.x4b_c00375{left:608.580000px;}
.x42_c00375{left:610.500000px;}
.x2f_c00375{left:612.000000px;}
.x9c_c00375{left:615.420000px;}
.xf4_c00375{left:616.500000px;}
.xe9_c00375{left:619.920000px;}
.x67_c00375{left:622.500000px;}
.x52_c00375{left:624.000000px;}
.x10_c00375{left:625.920000px;}
.x4c_c00375{left:629.580000px;}
.xc0_c00375{left:631.500000px;}
.x5d_c00375{left:633.000000px;}
.xb5_c00375{left:635.580000px;}
.xd1_c00375{left:637.500000px;}
.x16_c00375{left:639.000000px;}
.x7f_c00375{left:640.500000px;}
.x24_c00375{left:643.080000px;}
.xed_c00375{left:645.000000px;}
.x37_c00375{left:646.080000px;}
.x30_c00375{left:649.500000px;}
.xac_c00375{left:652.920000px;}
.x8c_c00375{left:654.420000px;}
.xf3_c00375{left:657.000000px;}
.x4d_c00375{left:661.275000px;}
.x25_c00375{left:663.420000px;}
.x80_c00375{left:667.080000px;}
.x9d_c00375{left:669.000000px;}
.xcc_c00375{left:670.920000px;}
.x68_c00375{left:676.500000px;}
.xf8_c00375{left:678.000000px;}
.xbb_c00375{left:679.920000px;}
.x8d_c00375{left:681.420000px;}
.xc1_c00375{left:682.500000px;}
.xd7_c00375{left:683.580000px;}
.x5e_c00375{left:687.000000px;}
.x53_c00375{left:688.080000px;}
.x17_c00375{left:690.000000px;}
.x31_c00375{left:691.920000px;}
.x11_c00375{left:693.000000px;}
.x43_c00375{left:694.080000px;}
.x4e_c00375{left:700.920000px;}
.x5f_c00375{left:703.080000px;}
.x18_c00375{left:706.080000px;}
.xbc_c00375{left:708.000000px;}
.x38_c00375{left:709.920000px;}
.x81_c00375{left:717.000000px;}
.xe5_c00375{left:720.000000px;}
.x60_c00375{left:723.000000px;}
@media print{
.v0_c00375{vertical-align:0.000000pt;}
.ls0_c00375{letter-spacing:0.000000pt;}
.ws2_c00375{word-spacing:-5.689459pt;}
.ws0_c00375{word-spacing:-3.186375pt;}
.ws3_c00375{word-spacing:0.000000pt;}
.ws1_c00375{word-spacing:57.957954pt;}
.fs7_c00375{font-size:3.040000pt;}
.fs8_c00375{font-size:6.026667pt;}
.fs4_c00375{font-size:16.640000pt;}
.fs1_c00375{font-size:18.133333pt;}
.fs5_c00375{font-size:22.666667pt;}
.fs2_c00375{font-size:25.706667pt;}
.fs3_c00375{font-size:28.746667pt;}
.fs0_c00375{font-size:31.733333pt;}
.fs6_c00375{font-size:34.773333pt;}
.y0_c00375{bottom:0.000000pt;}
.yd2_c00375{bottom:221.693333pt;}
.ycc_c00375{bottom:222.440000pt;}
.yce_c00375{bottom:223.600000pt;}
.ycf_c00375{bottom:223.773333pt;}
.ycd_c00375{bottom:224.360000pt;}
.yd1_c00375{bottom:225.306667pt;}
.yd0_c00375{bottom:225.693333pt;}
.yc8_c00375{bottom:239.773333pt;}
.yca_c00375{bottom:240.160000pt;}
.ycb_c00375{bottom:241.106667pt;}
.yc9_c00375{bottom:242.640000pt;}
.yc7_c00375{bottom:243.026667pt;}
.yc6_c00375{bottom:258.066667pt;}
.yc2_c00375{bottom:258.440000pt;}
.yc4_c00375{bottom:258.640000pt;}
.yc3_c00375{bottom:259.226667pt;}
.yc5_c00375{bottom:259.600000pt;}
.yc1_c00375{bottom:260.360000pt;}
.ybf_c00375{bottom:275.400000pt;}
.ybe_c00375{bottom:275.773333pt;}
.yc0_c00375{bottom:277.306667pt;}
.ybd_c00375{bottom:277.693333pt;}
.ybb_c00375{bottom:293.106667pt;}
.yba_c00375{bottom:293.893333pt;}
.ybc_c00375{bottom:294.066667pt;}
.yb9_c00375{bottom:295.026667pt;}
.yb4_c00375{bottom:309.693333pt;}
.yb2_c00375{bottom:310.440000pt;}
.yb6_c00375{bottom:311.773333pt;}
.yb3_c00375{bottom:312.360000pt;}
.yb8_c00375{bottom:312.560000pt;}
.yb7_c00375{bottom:313.306667pt;}
.yb5_c00375{bottom:313.693333pt;}
.yb1_c00375{bottom:327.026667pt;}
.yb0_c00375{bottom:329.106667pt;}
.yad_c00375{bottom:329.306667pt;}
.yae_c00375{bottom:330.640000pt;}
.yaf_c00375{bottom:331.026667pt;}
.ya9_c00375{bottom:344.760000pt;}
.yaa_c00375{bottom:345.106667pt;}
.yab_c00375{bottom:345.306667pt;}
.yac_c00375{bottom:345.693333pt;}
.ya6_c00375{bottom:346.440000pt;}
.ya8_c00375{bottom:347.226667pt;}
.ya7_c00375{bottom:347.973333pt;}
.ya5_c00375{bottom:348.360000pt;}
.ya2_c00375{bottom:361.693333pt;}
.ya4_c00375{bottom:363.773333pt;}
.ya3_c00375{bottom:365.693333pt;}
.ya1_c00375{bottom:380.360000pt;}
.ya0_c00375{bottom:381.106667pt;}
.y9f_c00375{bottom:383.026667pt;}
.y9d_c00375{bottom:398.440000pt;}
.y9b_c00375{bottom:399.400000pt;}
.y9e_c00375{bottom:399.973333pt;}
.y9c_c00375{bottom:400.360000pt;}
.y9a_c00375{bottom:401.306667pt;}
.y98_c00375{bottom:415.773333pt;}
.y97_c00375{bottom:417.106667pt;}
.y99_c00375{bottom:417.693333pt;}
.y95_c00375{bottom:417.893333pt;}
.y96_c00375{bottom:418.640000pt;}
.y94_c00375{bottom:419.026667pt;}
.y8e_c00375{bottom:432.360000pt;}
.y93_c00375{bottom:433.106667pt;}
.y91_c00375{bottom:433.493333pt;}
.y8c_c00375{bottom:434.266667pt;}
.y92_c00375{bottom:434.440000pt;}
.y90_c00375{bottom:435.226667pt;}
.y8f_c00375{bottom:435.973333pt;}
.y8d_c00375{bottom:436.360000pt;}
.y88_c00375{bottom:450.640000pt;}
.y89_c00375{bottom:450.826667pt;}
.y8a_c00375{bottom:451.773333pt;}
.y8b_c00375{bottom:452.360000pt;}
.y87_c00375{bottom:453.693333pt;}
.y86_c00375{bottom:467.973333pt;}
.y85_c00375{bottom:468.360000pt;}
.y83_c00375{bottom:469.106667pt;}
.y84_c00375{bottom:469.893333pt;}
.y82_c00375{bottom:471.026667pt;}
.y81_c00375{bottom:485.693333pt;}
.y7f_c00375{bottom:486.440000pt;}
.y80_c00375{bottom:488.360000pt;}
.y7d_c00375{bottom:503.026667pt;}
.y7c_c00375{bottom:503.773333pt;}
.y7e_c00375{bottom:504.733333pt;}
.y79_c00375{bottom:504.933333pt;}
.y7a_c00375{bottom:505.693333pt;}
.y7b_c00375{bottom:505.893333pt;}
.y78_c00375{bottom:520.360000pt;}
.y74_c00375{bottom:521.106667pt;}
.y75_c00375{bottom:521.306667pt;}
.y73_c00375{bottom:522.066667pt;}
.y77_c00375{bottom:523.026667pt;}
.y76_c00375{bottom:523.226667pt;}
.y72_c00375{bottom:537.693333pt;}
.y6f_c00375{bottom:538.640000pt;}
.y70_c00375{bottom:539.400000pt;}
.y6d_c00375{bottom:539.773333pt;}
.y6e_c00375{bottom:540.733333pt;}
.y71_c00375{bottom:541.306667pt;}
.y6c_c00375{bottom:541.693333pt;}
.y6a_c00375{bottom:557.106667pt;}
.y6b_c00375{bottom:557.893333pt;}
.y68_c00375{bottom:572.360000pt;}
.y69_c00375{bottom:574.440000pt;}
.y66_c00375{bottom:575.600000pt;}
.y67_c00375{bottom:576.360000pt;}
.y60_c00375{bottom:599.773333pt;}
.y62_c00375{bottom:601.106667pt;}
.y64_c00375{bottom:601.693333pt;}
.y65_c00375{bottom:601.893333pt;}
.y61_c00375{bottom:602.640000pt;}
.y63_c00375{bottom:603.026667pt;}
.y5f_c00375{bottom:641.693333pt;}
.y5e_c00375{bottom:642.826667pt;}
.y5b_c00375{bottom:643.773333pt;}
.y5c_c00375{bottom:644.560000pt;}
.y5d_c00375{bottom:645.693333pt;}
.y58_c00375{bottom:661.106667pt;}
.y59_c00375{bottom:662.066667pt;}
.y56_c00375{bottom:663.026667pt;}
.y5a_c00375{bottom:663.226667pt;}
.y57_c00375{bottom:663.973333pt;}
.y54_c00375{bottom:677.693333pt;}
.y55_c00375{bottom:678.440000pt;}
.y53_c00375{bottom:679.040000pt;}
.y50_c00375{bottom:679.400000pt;}
.y51_c00375{bottom:680.360000pt;}
.y52_c00375{bottom:680.560000pt;}
.y4d_c00375{bottom:695.773333pt;}
.y4a_c00375{bottom:696.360000pt;}
.y4c_c00375{bottom:696.733333pt;}
.y4f_c00375{bottom:697.106667pt;}
.y4b_c00375{bottom:697.693333pt;}
.y4e_c00375{bottom:697.893333pt;}
.y49_c00375{bottom:712.360000pt;}
.y48_c00375{bottom:714.440000pt;}
.y47_c00375{bottom:716.360000pt;}
.y44_c00375{bottom:730.826667pt;}
.y43_c00375{bottom:731.773333pt;}
.y45_c00375{bottom:731.973333pt;}
.y42_c00375{bottom:732.560000pt;}
.y41_c00375{bottom:733.693333pt;}
.y46_c00375{bottom:733.893333pt;}
.y40_c00375{bottom:748.733333pt;}
.y3e_c00375{bottom:749.893333pt;}
.y3f_c00375{bottom:750.640000pt;}
.y3d_c00375{bottom:751.026667pt;}
.y3b_c00375{bottom:766.066667pt;}
.y3a_c00375{bottom:766.440000pt;}
.y3c_c00375{bottom:768.360000pt;}
.y39_c00375{bottom:768.560000pt;}
.y35_c00375{bottom:783.773333pt;}
.y38_c00375{bottom:784.560000pt;}
.y36_c00375{bottom:785.693333pt;}
.y37_c00375{bottom:785.893333pt;}
.y32_c00375{bottom:800.360000pt;}
.y33_c00375{bottom:801.693333pt;}
.y2f_c00375{bottom:802.066667pt;}
.y30_c00375{bottom:802.440000pt;}
.y2e_c00375{bottom:803.026667pt;}
.y34_c00375{bottom:803.226667pt;}
.y31_c00375{bottom:803.973333pt;}
.y2d_c00375{bottom:804.360000pt;}
.y2b_c00375{bottom:817.693333pt;}
.y2c_c00375{bottom:818.440000pt;}
.y29_c00375{bottom:819.773333pt;}
.y27_c00375{bottom:820.560000pt;}
.y2a_c00375{bottom:820.733333pt;}
.y28_c00375{bottom:821.693333pt;}
.y25_c00375{bottom:836.360000pt;}
.y21_c00375{bottom:836.733333pt;}
.y23_c00375{bottom:837.106667pt;}
.y26_c00375{bottom:837.693333pt;}
.y24_c00375{bottom:837.893333pt;}
.y22_c00375{bottom:839.026667pt;}
.y20_c00375{bottom:854.066667pt;}
.y1e_c00375{bottom:854.440000pt;}
.y1f_c00375{bottom:855.226667pt;}
.y1c_c00375{bottom:856.360000pt;}
.y1d_c00375{bottom:857.306667pt;}
.y1b_c00375{bottom:870.640000pt;}
.y19_c00375{bottom:871.773333pt;}
.y1a_c00375{bottom:872.560000pt;}
.y18_c00375{bottom:873.693333pt;}
.y14_c00375{bottom:888.733333pt;}
.y16_c00375{bottom:889.106667pt;}
.y17_c00375{bottom:889.893333pt;}
.y15_c00375{bottom:891.026667pt;}
.y11_c00375{bottom:905.306667pt;}
.y12_c00375{bottom:905.693333pt;}
.ye_c00375{bottom:906.440000pt;}
.yc_c00375{bottom:906.640000pt;}
.y13_c00375{bottom:907.226667pt;}
.y10_c00375{bottom:907.973333pt;}
.yd_c00375{bottom:908.360000pt;}
.yf_c00375{bottom:909.306667pt;}
.yb_c00375{bottom:922.640000pt;}
.y9_c00375{bottom:923.026667pt;}
.y8_c00375{bottom:923.773333pt;}
.ya_c00375{bottom:925.693333pt;}
.y4_c00375{bottom:940.733333pt;}
.y7_c00375{bottom:941.106667pt;}
.y6_c00375{bottom:941.893333pt;}
.y5_c00375{bottom:942.066667pt;}
.y3_c00375{bottom:943.026667pt;}
.y1_c00375{bottom:975.773333pt;}
.y2_c00375{bottom:976.933333pt;}
.h8_c00375{height:3.739141pt;}
.h9_c00375{height:7.412682pt;}
.h5_c00375{height:20.466875pt;}
.h2_c00375{height:22.303646pt;}
.h6_c00375{height:27.879557pt;}
.h3_c00375{height:31.618698pt;}
.h4_c00375{height:35.357839pt;}
.h1_c00375{height:39.031380pt;}
.h7_c00375{height:42.770521pt;}
.h0_c00375{height:1186.666667pt;}
.w0_c00375{width:782.666667pt;}
.x0_c00375{left:0.000000pt;}
.xe0_c00375{left:134.666667pt;}
.x84_c00375{left:136.000000pt;}
.x1_c00375{left:137.333333pt;}
.xaf_c00375{left:142.293333pt;}
.x54_c00375{left:143.626667pt;}
.x3_c00375{left:144.960000pt;}
.xd2_c00375{left:162.666667pt;}
.x8e_c00375{left:164.000000pt;}
.x19_c00375{left:164.960000pt;}
.x4_c00375{left:166.666667pt;}
.xc2_c00375{left:180.373333pt;}
.xcd_c00375{left:182.666667pt;}
.xee_c00375{left:185.333333pt;}
.xd8_c00375{left:186.666667pt;}
.x5_c00375{left:188.000000pt;}
.x12_c00375{left:190.293333pt;}
.x39_c00375{left:191.626667pt;}
.x85_c00375{left:193.706667pt;}
.xde_c00375{left:197.333333pt;}
.x1a_c00375{left:199.040000pt;}
.x26_c00375{left:200.960000pt;}
.xdd_c00375{left:203.040000pt;}
.x79_c00375{left:204.000000pt;}
.xb0_c00375{left:205.333333pt;}
.xda_c00375{left:208.000000pt;}
.x13_c00375{left:209.333333pt;}
.xad_c00375{left:211.626667pt;}
.x6f_c00375{left:213.333333pt;}
.x27_c00375{left:217.706667pt;}
.x3a_c00375{left:218.666667pt;}
.xe6_c00375{left:220.373333pt;}
.x95_c00375{left:222.666667pt;}
.x9e_c00375{left:225.333333pt;}
.x6_c00375{left:226.666667pt;}
.x44_c00375{left:228.000000pt;}
.xa2_c00375{left:229.333333pt;}
.x4f_c00375{left:233.333333pt;}
.x86_c00375{left:234.666667pt;}
.x8f_c00375{left:236.000000pt;}
.x1b_c00375{left:237.706667pt;}
.xea_c00375{left:238.666667pt;}
.x82_c00375{left:239.626667pt;}
.x28_c00375{left:241.333333pt;}
.x9f_c00375{left:242.666667pt;}
.xdf_c00375{left:244.000000pt;}
.xc8_c00375{left:245.706667pt;}
.x14_c00375{left:247.040000pt;}
.x70_c00375{left:248.000000pt;}
.x3b_c00375{left:249.706667pt;}
.x32_c00375{left:250.666667pt;}
.xb1_c00375{left:254.666667pt;}
.xce_c00375{left:255.626667pt;}
.xdb_c00375{left:256.960000pt;}
.x69_c00375{left:262.293333pt;}
.x71_c00375{left:264.000000pt;}
.x96_c00375{left:264.960000pt;}
.xa7_c00375{left:268.373333pt;}
.xc3_c00375{left:269.333333pt;}
.x87_c00375{left:270.293333pt;}
.xb7_c00375{left:272.373333pt;}
.x29_c00375{left:273.333333pt;}
.xb6_c00375{left:274.293333pt;}
.x45_c00375{left:276.000000pt;}
.x7_c00375{left:278.293333pt;}
.x1c_c00375{left:280.000000pt;}
.x90_c00375{left:280.960000pt;}
.x83_c00375{left:282.293333pt;}
.xe1_c00375{left:284.000000pt;}
.xcf_c00375{left:285.333333pt;}
.x2a_c00375{left:286.293333pt;}
.xc4_c00375{left:289.333333pt;}
.x72_c00375{left:291.040000pt;}
.x61_c00375{left:292.000000pt;}
.xd3_c00375{left:293.706667pt;}
.x55_c00375{left:294.666667pt;}
.xf0_c00375{left:296.000000pt;}
.x1d_c00375{left:297.333333pt;}
.x6a_c00375{left:300.000000pt;}
.xc5_c00375{left:301.706667pt;}
.x7a_c00375{left:302.666667pt;}
.x8_c00375{left:304.373333pt;}
.x3c_c00375{left:306.666667pt;}
.x62_c00375{left:309.706667pt;}
.xae_c00375{left:310.666667pt;}
.x56_c00375{left:312.373333pt;}
.xbd_c00375{left:313.333333pt;}
.x91_c00375{left:318.666667pt;}
.xf5_c00375{left:322.666667pt;}
.x1e_c00375{left:324.000000pt;}
.x9_c00375{left:328.373333pt;}
.x57_c00375{left:330.666667pt;}
.xa8_c00375{left:335.426667pt;}
.xe2_c00375{left:336.373333pt;}
.x63_c00375{left:337.706667pt;}
.x73_c00375{left:340.373333pt;}
.x6b_c00375{left:342.666667pt;}
.xb2_c00375{left:344.000000pt;}
.x7b_c00375{left:346.666667pt;}
.xd4_c00375{left:348.000000pt;}
.x2_c00375{left:349.333333pt;}
.x3d_c00375{left:351.626667pt;}
.xa3_c00375{left:352.960000pt;}
.xbe_c00375{left:354.666667pt;}
.x2b_c00375{left:356.960000pt;}
.x6c_c00375{left:360.000000pt;}
.xe7_c00375{left:361.333333pt;}
.x92_c00375{left:364.000000pt;}
.x46_c00375{left:365.706667pt;}
.xa9_c00375{left:368.000000pt;}
.xa4_c00375{left:368.960000pt;}
.x88_c00375{left:370.293333pt;}
.x74_c00375{left:373.333333pt;}
.x6d_c00375{left:375.040000pt;}
.xa_c00375{left:377.333333pt;}
.x3e_c00375{left:379.040000pt;}
.x97_c00375{left:382.666667pt;}
.x64_c00375{left:386.293333pt;}
.x75_c00375{left:388.000000pt;}
.x47_c00375{left:389.333333pt;}
.x1f_c00375{left:391.040000pt;}
.xe3_c00375{left:392.373333pt;}
.x58_c00375{left:396.000000pt;}
.x98_c00375{left:397.706667pt;}
.x2c_c00375{left:400.000000pt;}
.x3f_c00375{left:401.333333pt;}
.xf1_c00375{left:403.040000pt;}
.xeb_c00375{left:404.373333pt;}
.xa0_c00375{left:406.666667pt;}
.xb_c00375{left:407.626667pt;}
.xb3_c00375{left:409.333333pt;}
.xd5_c00375{left:410.293333pt;}
.x20_c00375{left:415.626667pt;}
.x50_c00375{left:416.960000pt;}
.x33_c00375{left:418.666667pt;}
.x7c_c00375{left:420.373333pt;}
.x93_c00375{left:421.333333pt;}
.x99_c00375{left:425.706667pt;}
.x48_c00375{left:428.000000pt;}
.x65_c00375{left:429.333333pt;}
.x34_c00375{left:430.293333pt;}
.xc6_c00375{left:431.626667pt;}
.xf6_c00375{left:432.960000pt;}
.xc_c00375{left:434.666667pt;}
.x59_c00375{left:436.373333pt;}
.x76_c00375{left:437.333333pt;}
.xb8_c00375{left:439.040000pt;}
.x89_c00375{left:441.333333pt;}
.x21_c00375{left:444.373333pt;}
.xc9_c00375{left:445.706667pt;}
.xe8_c00375{left:448.373333pt;}
.x49_c00375{left:450.293333pt;}
.x6e_c00375{left:454.666667pt;}
.x77_c00375{left:456.373333pt;}
.xd6_c00375{left:457.333333pt;}
.xaa_c00375{left:459.040000pt;}
.x5a_c00375{left:460.000000pt;}
.xa1_c00375{left:461.706667pt;}
.xb9_c00375{left:462.666667pt;}
.xec_c00375{left:466.666667pt;}
.x40_c00375{left:468.000000pt;}
.x22_c00375{left:469.333333pt;}
.xa5_c00375{left:470.666667pt;}
.x35_c00375{left:471.626667pt;}
.x9a_c00375{left:473.333333pt;}
.x7d_c00375{left:474.293333pt;}
.x2d_c00375{left:476.000000pt;}
.x94_c00375{left:476.960000pt;}
.xd_c00375{left:478.666667pt;}
.x78_c00375{left:480.373333pt;}
.xca_c00375{left:481.333333pt;}
.x51_c00375{left:483.040000pt;}
.xdc_c00375{left:485.333333pt;}
.xf7_c00375{left:486.666667pt;}
.x8a_c00375{left:490.293333pt;}
.x5b_c00375{left:492.000000pt;}
.xab_c00375{left:495.626667pt;}
.xb4_c00375{left:497.706667pt;}
.xf2_c00375{left:499.426667pt;}
.xe_c00375{left:501.333333pt;}
.xba_c00375{left:502.666667pt;}
.x36_c00375{left:504.000000pt;}
.x66_c00375{left:505.706667pt;}
.xe4_c00375{left:506.666667pt;}
.xd0_c00375{left:508.960000pt;}
.x15_c00375{left:510.293333pt;}
.x4a_c00375{left:511.626667pt;}
.xd9_c00375{left:514.666667pt;}
.xef_c00375{left:516.373333pt;}
.x2e_c00375{left:520.373333pt;}
.x5c_c00375{left:521.706667pt;}
.x9b_c00375{left:523.040000pt;}
.xa6_c00375{left:524.000000pt;}
.xcb_c00375{left:526.666667pt;}
.x41_c00375{left:527.626667pt;}
.xc7_c00375{left:529.333333pt;}
.x23_c00375{left:530.666667pt;}
.x8b_c00375{left:534.666667pt;}
.xbf_c00375{left:536.373333pt;}
.x7e_c00375{left:537.706667pt;}
.xf_c00375{left:540.000000pt;}
.x4b_c00375{left:540.960000pt;}
.x42_c00375{left:542.666667pt;}
.x2f_c00375{left:544.000000pt;}
.x9c_c00375{left:547.040000pt;}
.xf4_c00375{left:548.000000pt;}
.xe9_c00375{left:551.040000pt;}
.x67_c00375{left:553.333333pt;}
.x52_c00375{left:554.666667pt;}
.x10_c00375{left:556.373333pt;}
.x4c_c00375{left:559.626667pt;}
.xc0_c00375{left:561.333333pt;}
.x5d_c00375{left:562.666667pt;}
.xb5_c00375{left:564.960000pt;}
.xd1_c00375{left:566.666667pt;}
.x16_c00375{left:568.000000pt;}
.x7f_c00375{left:569.333333pt;}
.x24_c00375{left:571.626667pt;}
.xed_c00375{left:573.333333pt;}
.x37_c00375{left:574.293333pt;}
.x30_c00375{left:577.333333pt;}
.xac_c00375{left:580.373333pt;}
.x8c_c00375{left:581.706667pt;}
.xf3_c00375{left:584.000000pt;}
.x4d_c00375{left:587.800000pt;}
.x25_c00375{left:589.706667pt;}
.x80_c00375{left:592.960000pt;}
.x9d_c00375{left:594.666667pt;}
.xcc_c00375{left:596.373333pt;}
.x68_c00375{left:601.333333pt;}
.xf8_c00375{left:602.666667pt;}
.xbb_c00375{left:604.373333pt;}
.x8d_c00375{left:605.706667pt;}
.xc1_c00375{left:606.666667pt;}
.xd7_c00375{left:607.626667pt;}
.x5e_c00375{left:610.666667pt;}
.x53_c00375{left:611.626667pt;}
.x17_c00375{left:613.333333pt;}
.x31_c00375{left:615.040000pt;}
.x11_c00375{left:616.000000pt;}
.x43_c00375{left:616.960000pt;}
.x4e_c00375{left:623.040000pt;}
.x5f_c00375{left:624.960000pt;}
.x18_c00375{left:627.626667pt;}
.xbc_c00375{left:629.333333pt;}
.x38_c00375{left:631.040000pt;}
.x81_c00375{left:637.333333pt;}
.xe5_c00375{left:640.000000pt;}
.x60_c00375{left:642.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_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_149207afb6511ca0f626f51c.woff2')format("woff");}.ff1_c00376{font-family:ff1_c00376;line-height:1.688965;font-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_c00376{transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);}
.m99_c00376{transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);}
.ma2_c00376{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m42_c00376{transform:matrix(0.365966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365966,0.000000,0.000000,0.250000,0,0);}
.m5c_c00376{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.md3_c00376{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mcd_c00376{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m95_c00376{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m50_c00376{transform:matrix(0.376917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376917,0.000000,0.000000,0.250000,0,0);}
.m44_c00376{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m54_c00376{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m6d_c00376{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m71_c00376{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m6c_c00376{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m98_c00376{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mab_c00376{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m70_c00376{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m29_c00376{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m6f_c00376{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.mcc_c00376{transform:matrix(0.396472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396472,0.000000,0.000000,0.250000,0,0);}
.m8f_c00376{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.ma4_c00376{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.mb7_c00376{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m46_c00376{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m9f_c00376{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m1a_c00376{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.ma7_c00376{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m66_c00376{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.mc6_c00376{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m53_c00376{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.mb_c00376{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mb3_c00376{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m60_c00376{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m18_c00376{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.mae_c00376{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mc7_c00376{transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);}
.m63_c00376{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m1e_c00376{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m91_c00376{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m51_c00376{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m2c_c00376{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m26_c00376{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m33_c00376{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mbf_c00376{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m11_c00376{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m6e_c00376{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m3a_c00376{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mc5_c00376{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m5a_c00376{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mc9_c00376{transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);}
.m3_c00376{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m28_c00376{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m92_c00376{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m22_c00376{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.mb1_c00376{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m1c_c00376{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m75_c00376{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.mce_c00376{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m64_c00376{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m86_c00376{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m40_c00376{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m47_c00376{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m83_c00376{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m3f_c00376{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m5b_c00376{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.mac_c00376{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.md0_c00376{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m65_c00376{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.m69_c00376{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.m8d_c00376{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m9b_c00376{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m27_c00376{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.ma0_c00376{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.ma1_c00376{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m7c_c00376{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m3c_c00376{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.ma3_c00376{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.ma9_c00376{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m80_c00376{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.ma_c00376{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m2_c00376{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);}
.m56_c00376{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.mb9_c00376{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m84_c00376{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m5d_c00376{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m88_c00376{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m93_c00376{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.mb4_c00376{transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);}
.mb0_c00376{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.md_c00376{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m2d_c00376{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.m8b_c00376{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m58_c00376{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m59_c00376{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m10_c00376{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.ma8_c00376{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.m6_c00376{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m9_c00376{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m23_c00376{transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);}
.m2e_c00376{transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);}
.m43_c00376{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.md1_c00376{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m1_c00376{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m87_c00376{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m94_c00376{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m4e_c00376{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m89_c00376{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.mbc_c00376{transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);}
.m14_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);}
.m20_c00376{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.m34_c00376{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.mc1_c00376{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mcf_c00376{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m68_c00376{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m39_c00376{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.mb5_c00376{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m72_c00376{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.mc0_c00376{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m37_c00376{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m16_c00376{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m9e_c00376{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m31_c00376{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m52_c00376{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m32_c00376{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m1d_c00376{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m7a_c00376{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m5e_c00376{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m4c_c00376{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m77_c00376{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m7d_c00376{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m8a_c00376{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m36_c00376{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mcb_c00376{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m7_c00376{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mc_c00376{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.maa_c00376{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m8c_c00376{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m13_c00376{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m4_c00376{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m1f_c00376{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m7b_c00376{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m4a_c00376{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m24_c00376{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.maf_c00376{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.mc8_c00376{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m30_c00376{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m96_c00376{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m25_c00376{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m57_c00376{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m19_c00376{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m4b_c00376{transform:matrix(0.551176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551176,0.000000,0.000000,0.250000,0,0);}
.m45_c00376{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m79_c00376{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m6b_c00376{transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);}
.m2b_c00376{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mba_c00376{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m8_c00376{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m97_c00376{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m41_c00376{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m2f_c00376{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mc4_c00376{transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);}
.mb2_c00376{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m5f_c00376{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.me_c00376{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.ma6_c00376{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.mf_c00376{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m7e_c00376{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m5_c00376{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.mbe_c00376{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m1b_c00376{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mbd_c00376{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.m3e_c00376{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m76_c00376{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m67_c00376{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m12_c00376{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);}
.m73_c00376{transform:matrix(0.603216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603216,0.000000,0.000000,0.250000,0,0);}
.m35_c00376{transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);}
.md2_c00376{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m9d_c00376{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m15_c00376{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m3b_c00376{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m3d_c00376{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.m4d_c00376{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.md4_c00376{transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);}
.m9c_c00376{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_c00376{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m0_c00376{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m55_c00376{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m62_c00376{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m49_c00376{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m21_c00376{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m90_c00376{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m48_c00376{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m8e_c00376{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m9a_c00376{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mad_c00376{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m74_c00376{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.ma5_c00376{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m7f_c00376{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m61_c00376{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.mb6_c00376{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mbb_c00376{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mb8_c00376{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m78_c00376{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mc2_c00376{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m17_c00376{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m81_c00376{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m85_c00376{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m38_c00376{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mca_c00376{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m4f_c00376{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m82_c00376{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.mc3_c00376{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00376{vertical-align:0.000000px;}
.v1_c00376{vertical-align:18.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;}
}
.ws2_c00376{word-spacing:-16.889280px;}
.ws1_c00376{word-spacing:-8.678629px;}
.ws0_c00376{word-spacing:-8.128800px;}
.ws4_c00376{word-spacing:-8.008080px;}
.ws3_c00376{word-spacing:-4.343067px;}
.ws5_c00376{word-spacing:0.000000px;}
._0_c00376{width:5.472015px;}
.fc0_c00376{color:transparent;}
.fs7_c00376{font-size:3.420000px;}
.fs4_c00376{font-size:18.720000px;}
.fs0_c00376{font-size:20.400000px;}
.fs3_c00376{font-size:25.500000px;}
.fs1_c00376{font-size:28.920000px;}
.fs5_c00376{font-size:32.340000px;}
.fs2_c00376{font-size:35.700000px;}
.fs6_c00376{font-size:39.120000px;}
.y0_c00376{bottom:0.000000px;}
.yd0_c00376{bottom:252.405000px;}
.yd1_c00376{bottom:253.245000px;}
.yd2_c00376{bottom:254.130000px;}
.ycf_c00376{bottom:254.970000px;}
.yce_c00376{bottom:255.405000px;}
.ycc_c00376{bottom:270.405000px;}
.ycb_c00376{bottom:273.180000px;}
.yc9_c00376{bottom:273.630000px;}
.ycd_c00376{bottom:274.245000px;}
.yc8_c00376{bottom:274.905000px;}
.yca_c00376{bottom:276.405000px;}
.yc2_c00376{bottom:291.405000px;}
.yc4_c00376{bottom:292.245000px;}
.yc6_c00376{bottom:293.745000px;}
.yc7_c00376{bottom:294.405000px;}
.yc1_c00376{bottom:294.630000px;}
.yc5_c00376{bottom:294.825000px;}
.yc3_c00376{bottom:295.905000px;}
.ybc_c00376{bottom:310.905000px;}
.ybd_c00376{bottom:313.245000px;}
.yc0_c00376{bottom:313.905000px;}
.ybe_c00376{bottom:314.130000px;}
.ybf_c00376{bottom:314.325000px;}
.ybb_c00376{bottom:315.405000px;}
.yb9_c00376{bottom:332.745000px;}
.yb7_c00376{bottom:333.630000px;}
.yba_c00376{bottom:334.470000px;}
.yb6_c00376{bottom:334.905000px;}
.yb8_c00376{bottom:334.920000px;}
.yb4_c00376{bottom:352.245000px;}
.yb5_c00376{bottom:354.405000px;}
.yb1_c00376{bottom:369.405000px;}
.yae_c00376{bottom:371.745000px;}
.yb3_c00376{bottom:372.405000px;}
.yaf_c00376{bottom:373.470000px;}
.yb0_c00376{bottom:373.905000px;}
.yb2_c00376{bottom:374.130000px;}
.yad_c00376{bottom:391.245000px;}
.yac_c00376{bottom:391.470000px;}
.yaa_c00376{bottom:392.325000px;}
.ya8_c00376{bottom:393.405000px;}
.ya9_c00376{bottom:393.630000px;}
.yab_c00376{bottom:394.470000px;}
.ya7_c00376{bottom:409.905000px;}
.ya6_c00376{bottom:410.745000px;}
.ya3_c00376{bottom:412.245000px;}
.ya2_c00376{bottom:412.905000px;}
.ya1_c00376{bottom:413.130000px;}
.ya5_c00376{bottom:413.970000px;}
.ya4_c00376{bottom:414.405000px;}
.y9d_c00376{bottom:429.405000px;}
.y9f_c00376{bottom:430.245000px;}
.ya0_c00376{bottom:431.325000px;}
.y9c_c00376{bottom:432.405000px;}
.y9b_c00376{bottom:432.630000px;}
.y9e_c00376{bottom:433.905000px;}
.y9a_c00376{bottom:449.745000px;}
.y98_c00376{bottom:450.825000px;}
.y96_c00376{bottom:451.245000px;}
.y99_c00376{bottom:451.905000px;}
.y95_c00376{bottom:452.130000px;}
.y97_c00376{bottom:453.405000px;}
.y93_c00376{bottom:468.405000px;}
.y92_c00376{bottom:470.745000px;}
.y94_c00376{bottom:471.405000px;}
.y90_c00376{bottom:471.630000px;}
.y91_c00376{bottom:472.905000px;}
.y8e_c00376{bottom:490.245000px;}
.y8d_c00376{bottom:490.470000px;}
.y8f_c00376{bottom:491.325000px;}
.y8c_c00376{bottom:492.405000px;}
.y87_c00376{bottom:508.905000px;}
.y88_c00376{bottom:509.745000px;}
.y8a_c00376{bottom:510.825000px;}
.y89_c00376{bottom:511.905000px;}
.y8b_c00376{bottom:512.130000px;}
.y84_c00376{bottom:529.245000px;}
.y86_c00376{bottom:530.970000px;}
.y83_c00376{bottom:531.405000px;}
.y85_c00376{bottom:531.630000px;}
.y7e_c00376{bottom:548.745000px;}
.y82_c00376{bottom:549.825000px;}
.y80_c00376{bottom:550.245000px;}
.y7f_c00376{bottom:550.905000px;}
.y81_c00376{bottom:551.130000px;}
.y7c_c00376{bottom:569.745000px;}
.y7d_c00376{bottom:570.630000px;}
.y7b_c00376{bottom:570.825000px;}
.y7a_c00376{bottom:571.905000px;}
.y75_c00376{bottom:589.245000px;}
.y79_c00376{bottom:589.905000px;}
.y76_c00376{bottom:590.130000px;}
.y78_c00376{bottom:591.405000px;}
.y77_c00376{bottom:591.420000px;}
.y74_c00376{bottom:608.745000px;}
.y73_c00376{bottom:609.630000px;}
.y72_c00376{bottom:610.905000px;}
.y6f_c00376{bottom:627.405000px;}
.y71_c00376{bottom:627.825000px;}
.y6d_c00376{bottom:628.245000px;}
.y6c_c00376{bottom:629.970000px;}
.y6b_c00376{bottom:630.405000px;}
.y6e_c00376{bottom:630.630000px;}
.y70_c00376{bottom:631.470000px;}
.y6a_c00376{bottom:654.405000px;}
.y68_c00376{bottom:686.745000px;}
.y69_c00376{bottom:686.970000px;}
.y67_c00376{bottom:688.905000px;}
.y64_c00376{bottom:705.405000px;}
.y65_c00376{bottom:706.905000px;}
.y63_c00376{bottom:708.405000px;}
.y66_c00376{bottom:708.630000px;}
.y62_c00376{bottom:709.470000px;}
.y61_c00376{bottom:709.905000px;}
.y5e_c00376{bottom:725.325000px;}
.y60_c00376{bottom:725.745000px;}
.y5f_c00376{bottom:725.970000px;}
.y5c_c00376{bottom:726.405000px;}
.y5a_c00376{bottom:727.245000px;}
.y5d_c00376{bottom:728.970000px;}
.y5b_c00376{bottom:729.405000px;}
.y59_c00376{bottom:745.905000px;}
.y58_c00376{bottom:746.745000px;}
.y56_c00376{bottom:747.405000px;}
.y57_c00376{bottom:748.905000px;}
.y55_c00376{bottom:763.905000px;}
.y51_c00376{bottom:765.405000px;}
.y50_c00376{bottom:766.245000px;}
.y54_c00376{bottom:767.325000px;}
.y53_c00376{bottom:768.405000px;}
.y52_c00376{bottom:769.470000px;}
.y4c_c00376{bottom:783.405000px;}
.y4d_c00376{bottom:784.905000px;}
.y4a_c00376{bottom:785.325000px;}
.y4f_c00376{bottom:786.630000px;}
.y4e_c00376{bottom:787.470000px;}
.y4b_c00376{bottom:787.905000px;}
.y48_c00376{bottom:804.405000px;}
.y45_c00376{bottom:805.245000px;}
.y46_c00376{bottom:807.405000px;}
.y49_c00376{bottom:807.630000px;}
.y47_c00376{bottom:808.470000px;}
.y42_c00376{bottom:823.905000px;}
.y44_c00376{bottom:824.745000px;}
.y43_c00376{bottom:826.905000px;}
.y40_c00376{bottom:842.970000px;}
.y41_c00376{bottom:844.245000px;}
.y3a_c00376{bottom:844.905000px;}
.y3e_c00376{bottom:845.745000px;}
.y3b_c00376{bottom:845.970000px;}
.y3d_c00376{bottom:846.630000px;}
.y3f_c00376{bottom:846.825000px;}
.y3c_c00376{bottom:847.905000px;}
.y35_c00376{bottom:862.905000px;}
.y36_c00376{bottom:863.970000px;}
.y38_c00376{bottom:864.825000px;}
.y39_c00376{bottom:865.905000px;}
.y37_c00376{bottom:867.405000px;}
.y31_c00376{bottom:883.680000px;}
.y32_c00376{bottom:884.745000px;}
.y30_c00376{bottom:885.630000px;}
.y34_c00376{bottom:886.470000px;}
.y33_c00376{bottom:886.905000px;}
.y2f_c00376{bottom:902.970000px;}
.y2e_c00376{bottom:904.245000px;}
.y2d_c00376{bottom:905.130000px;}
.y2c_c00376{bottom:906.405000px;}
.y2b_c00376{bottom:907.470000px;}
.y2a_c00376{bottom:922.470000px;}
.y27_c00376{bottom:923.745000px;}
.y28_c00376{bottom:925.470000px;}
.y26_c00376{bottom:925.905000px;}
.y29_c00376{bottom:926.970000px;}
.y25_c00376{bottom:942.405000px;}
.y22_c00376{bottom:942.825000px;}
.y20_c00376{bottom:943.245000px;}
.y24_c00376{bottom:944.745000px;}
.y21_c00376{bottom:945.405000px;}
.y23_c00376{bottom:946.470000px;}
.y1d_c00376{bottom:962.745000px;}
.y1b_c00376{bottom:964.905000px;}
.y1c_c00376{bottom:965.130000px;}
.y1f_c00376{bottom:965.970000px;}
.y1e_c00376{bottom:966.405000px;}
.y19_c00376{bottom:983.325000px;}
.y18_c00376{bottom:983.745000px;}
.y16_c00376{bottom:984.405000px;}
.y1a_c00376{bottom:985.470000px;}
.y17_c00376{bottom:985.905000px;}
.y14_c00376{bottom:1001.745000px;}
.y12_c00376{bottom:1002.825000px;}
.y13_c00376{bottom:1003.905000px;}
.y15_c00376{bottom:1004.970000px;}
.y10_c00376{bottom:1020.405000px;}
.yf_c00376{bottom:1021.245000px;}
.y11_c00376{bottom:1022.325000px;}
.ye_c00376{bottom:1023.405000px;}
.yd_c00376{bottom:1024.470000px;}
.y6_c00376{bottom:1039.905000px;}
.yc_c00376{bottom:1040.745000px;}
.y7_c00376{bottom:1042.245000px;}
.yb_c00376{bottom:1042.905000px;}
.ya_c00376{bottom:1043.130000px;}
.y8_c00376{bottom:1043.970000px;}
.y9_c00376{bottom:1044.405000px;}
.y3_c00376{bottom:1061.745000px;}
.y5_c00376{bottom:1062.405000px;}
.y4_c00376{bottom:1063.905000px;}
.y2_c00376{bottom:1099.905000px;}
.y1_c00376{bottom:1102.050000px;}
.h9_c00376{height:4.206533px;}
.h5_c00376{height:23.025234px;}
.h1_c00376{height:25.091602px;}
.h4_c00376{height:31.364502px;}
.h2_c00376{height:35.571035px;}
.h6_c00376{height:39.777568px;}
.h3_c00376{height:43.910303px;}
.h7_c00376{height:48.116836px;}
.h8_c00376{height:53.571035px;}
.h0_c00376{height:1335.000000px;}
.w0_c00376{width:880.500000px;}
.x0_c00376{left:0.000000px;}
.x73_c00376{left:151.500000px;}
.xa3_c00376{left:153.000000px;}
.x1c_c00376{left:160.080000px;}
.xaa_c00376{left:167.580000px;}
.x9e_c00376{left:169.500000px;}
.xf3_c00376{left:171.000000px;}
.xd5_c00376{left:172.500000px;}
.xb8_c00376{left:177.645000px;}
.xe0_c00376{left:178.920000px;}
.xf6_c00376{left:181.500000px;}
.xf4_c00376{left:183.000000px;}
.x3_c00376{left:184.920000px;}
.x6c_c00376{left:186.420000px;}
.xec_c00376{left:187.920000px;}
.xb1_c00376{left:192.000000px;}
.xd2_c00376{left:193.080000px;}
.x9f_c00376{left:202.500000px;}
.xc3_c00376{left:204.420000px;}
.x4b_c00376{left:208.500000px;}
.xfb_c00376{left:211.080000px;}
.x2f_c00376{left:213.420000px;}
.x1d_c00376{left:216.000000px;}
.x65_c00376{left:217.500000px;}
.x6d_c00376{left:219.000000px;}
.xa0_c00376{left:220.080000px;}
.xab_c00376{left:222.000000px;}
.xe7_c00376{left:225.000000px;}
.xe2_c00376{left:230.580000px;}
.xf7_c00376{left:232.500000px;}
.x4_c00376{left:234.000000px;}
.xd7_c00376{left:235.500000px;}
.xb9_c00376{left:236.580000px;}
.x6e_c00376{left:238.920000px;}
.x39_c00376{left:241.500000px;}
.x41_c00376{left:242.580000px;}
.x96_c00376{left:244.080000px;}
.xe3_c00376{left:250.500000px;}
.x11_c00376{left:252.000000px;}
.x66_c00376{left:253.920000px;}
.x25_c00376{left:256.500000px;}
.x5d_c00376{left:259.500000px;}
.x8e_c00376{left:262.920000px;}
.x7c_c00376{left:264.420000px;}
.xc7_c00376{left:265.500000px;}
.xa4_c00376{left:267.000000px;}
.x54_c00376{left:268.080000px;}
.x6f_c00376{left:270.000000px;}
.xfc_c00376{left:273.420000px;}
.x74_c00376{left:276.420000px;}
.x26_c00376{left:277.500000px;}
.x30_c00376{left:280.920000px;}
.xf8_c00376{left:284.580000px;}
.x55_c00376{left:288.420000px;}
.xbf_c00376{left:289.920000px;}
.x97_c00376{left:291.000000px;}
.x5_c00376{left:297.000000px;}
.xa5_c00376{left:298.920000px;}
.x42_c00376{left:300.000000px;}
.x1e_c00376{left:306.420000px;}
.x4c_c00376{left:307.500000px;}
.xa1_c00376{left:309.420000px;}
.x3a_c00376{left:310.500000px;}
.x7d_c00376{left:312.000000px;}
.xc8_c00376{left:313.500000px;}
.x56_c00376{left:316.500000px;}
.x27_c00376{left:318.000000px;}
.x31_c00376{left:319.920000px;}
.xd8_c00376{left:321.000000px;}
.xc0_c00376{left:322.500000px;}
.xba_c00376{left:324.000000px;}
.x75_c00376{left:325.080000px;}
.x8b_c00376{left:326.580000px;}
.x6_c00376{left:328.080000px;}
.x8f_c00376{left:329.580000px;}
.x43_c00376{left:332.580000px;}
.x7e_c00376{left:334.080000px;}
.xa6_c00376{left:336.000000px;}
.xd6_c00376{left:337.500000px;}
.x67_c00376{left:341.580000px;}
.x90_c00376{left:343.500000px;}
.x76_c00376{left:345.420000px;}
.xa7_c00376{left:349.920000px;}
.x12_c00376{left:351.000000px;}
.xc4_c00376{left:352.275000px;}
.x57_c00376{left:354.000000px;}
.xc9_c00376{left:355.920000px;}
.xac_c00376{left:357.420000px;}
.x1f_c00376{left:358.500000px;}
.xd9_c00376{left:361.500000px;}
.x5e_c00376{left:363.420000px;}
.x4d_c00376{left:364.500000px;}
.xd3_c00376{left:366.000000px;}
.x32_c00376{left:367.920000px;}
.x7_c00376{left:370.500000px;}
.x77_c00376{left:372.000000px;}
.x8c_c00376{left:373.500000px;}
.x20_c00376{left:375.420000px;}
.x44_c00376{left:376.500000px;}
.x13_c00376{left:379.080000px;}
.x58_c00376{left:380.580000px;}
.xf9_c00376{left:382.500000px;}
.xca_c00376{left:383.580000px;}
.x4e_c00376{left:385.080000px;}
.x8_c00376{left:387.000000px;}
.x1_c00376{left:390.000000px;}
.xb2_c00376{left:391.500000px;}
.xc5_c00376{left:392.580000px;}
.x3b_c00376{left:394.500000px;}
.xed_c00376{left:396.000000px;}
.xa8_c00376{left:397.080000px;}
.xcf_c00376{left:398.580000px;}
.x5f_c00376{left:402.000000px;}
.xbb_c00376{left:403.080000px;}
.x28_c00376{left:404.580000px;}
.x7f_c00376{left:406.500000px;}
.xe1_c00376{left:408.000000px;}
.x33_c00376{left:411.000000px;}
.xa2_c00376{left:412.080000px;}
.x9d_c00376{left:413.580000px;}
.xa9_c00376{left:415.500000px;}
.xe4_c00376{left:417.000000px;}
.x78_c00376{left:418.920000px;}
.x91_c00376{left:420.420000px;}
.x45_c00376{left:424.080000px;}
.x9_c00376{left:428.580000px;}
.x14_c00376{left:430.080000px;}
.x4f_c00376{left:432.420000px;}
.xad_c00376{left:433.500000px;}
.xda_c00376{left:436.500000px;}
.xee_c00376{left:437.580000px;}
.xc1_c00376{left:440.580000px;}
.x34_c00376{left:442.500000px;}
.xb3_c00376{left:444.000000px;}
.xcb_c00376{left:445.920000px;}
.x15_c00376{left:447.000000px;}
.xf5_c00376{left:448.500000px;}
.x29_c00376{left:450.000000px;}
.x85_c00376{left:451.500000px;}
.x59_c00376{left:453.000000px;}
.x9c_c00376{left:454.500000px;}
.x46_c00376{left:455.580000px;}
.xe8_c00376{left:457.080000px;}
.x3c_c00376{left:459.000000px;}
.xa_c00376{left:460.500000px;}
.x68_c00376{left:461.580000px;}
.xfd_c00376{left:463.080000px;}
.x21_c00376{left:466.500000px;}
.x70_c00376{left:467.580000px;}
.xb4_c00376{left:471.420000px;}
.x16_c00376{left:472.500000px;}
.xdb_c00376{left:474.000000px;}
.x47_c00376{left:475.080000px;}
.x98_c00376{left:477.420000px;}
.x3d_c00376{left:478.500000px;}
.x69_c00376{left:481.920000px;}
.x80_c00376{left:483.000000px;}
.x5a_c00376{left:485.580000px;}
.xdc_c00376{left:486.855000px;}
.xd0_c00376{left:489.000000px;}
.x79_c00376{left:491.580000px;}
.x8d_c00376{left:493.080000px;}
.xbc_c00376{left:495.420000px;}
.xb5_c00376{left:499.500000px;}
.xe9_c00376{left:501.420000px;}
.xef_c00376{left:502.500000px;}
.x81_c00376{left:507.000000px;}
.x17_c00376{left:508.500000px;}
.x35_c00376{left:510.000000px;}
.x50_c00376{left:514.080000px;}
.xb_c00376{left:516.420000px;}
.xfe_c00376{left:517.500000px;}
.xf0_c00376{left:523.500000px;}
.x2a_c00376{left:524.580000px;}
.xcc_c00376{left:526.500000px;}
.x60_c00376{left:528.420000px;}
.xff_c00376{left:529.920000px;}
.xdd_c00376{left:531.000000px;}
.x18_c00376{left:532.500000px;}
.x51_c00376{left:534.000000px;}
.x3e_c00376{left:535.920000px;}
.x7a_c00376{left:538.500000px;}
.x71_c00376{left:541.920000px;}
.x22_c00376{left:543.000000px;}
.x36_c00376{left:545.580000px;}
.x92_c00376{left:547.500000px;}
.x99_c00376{left:549.000000px;}
.x2b_c00376{left:555.420000px;}
.xae_c00376{left:558.000000px;}
.x6a_c00376{left:561.000000px;}
.x52_c00376{left:562.080000px;}
.xbd_c00376{left:565.920000px;}
.xc_c00376{left:567.000000px;}
.xcd_c00376{left:568.500000px;}
.x9a_c00376{left:570.420000px;}
.x23_c00376{left:571.500000px;}
.x48_c00376{left:572.580000px;}
.x82_c00376{left:574.080000px;}
.xf1_c00376{left:578.355000px;}
.x19_c00376{left:580.500000px;}
.x86_c00376{left:583.920000px;}
.x93_c00376{left:585.420000px;}
.xc2_c00376{left:586.500000px;}
.x2c_c00376{left:589.500000px;}
.x61_c00376{left:590.580000px;}
.xea_c00376{left:592.500000px;}
.x37_c00376{left:595.500000px;}
.xde_c00376{left:597.000000px;}
.x9b_c00376{left:601.500000px;}
.x8a_c00376{left:609.000000px;}
.x49_c00376{left:610.500000px;}
.x7b_c00376{left:611.580000px;}
.x94_c00376{left:613.920000px;}
.x5b_c00376{left:615.420000px;}
.xf2_c00376{left:616.500000px;}
.xd1_c00376{left:619.080000px;}
.x87_c00376{left:621.420000px;}
.xd_c00376{left:622.920000px;}
.x2d_c00376{left:624.000000px;}
.x4a_c00376{left:625.500000px;}
.x83_c00376{left:630.000000px;}
.x3f_c00376{left:631.920000px;}
.x53_c00376{left:634.500000px;}
.xb6_c00376{left:636.000000px;}
.xdf_c00376{left:637.500000px;}
.xc6_c00376{left:639.000000px;}
.xe5_c00376{left:640.500000px;}
.x5c_c00376{left:642.000000px;}
.x38_c00376{left:644.580000px;}
.x62_c00376{left:646.920000px;}
.xd4_c00376{left:649.500000px;}
.xe_c00376{left:650.580000px;}
.x88_c00376{left:652.500000px;}
.xe6_c00376{left:654.000000px;}
.xb7_c00376{left:655.500000px;}
.x40_c00376{left:657.000000px;}
.xaf_c00376{left:658.500000px;}
.x84_c00376{left:663.000000px;}
.x1a_c00376{left:664.500000px;}
.xce_c00376{left:668.580000px;}
.x2e_c00376{left:671.580000px;}
.x95_c00376{left:674.580000px;}
.xfa_c00376{left:678.420000px;}
.xeb_c00376{left:681.420000px;}
.xb0_c00376{left:682.500000px;}
.x63_c00376{left:684.000000px;}
.xf_c00376{left:686.580000px;}
.x72_c00376{left:688.080000px;}
.xbe_c00376{left:694.500000px;}
.x6b_c00376{left:697.920000px;}
.x89_c00376{left:703.500000px;}
.x2_c00376{left:704.580000px;}
.x10_c00376{left:706.920000px;}
.x24_c00376{left:708.420000px;}
.x64_c00376{left:715.500000px;}
.x100_c00376{left:720.000000px;}
.x1b_c00376{left:721.500000px;}
@media print{
.v0_c00376{vertical-align:0.000000pt;}
.v1_c00376{vertical-align:16.000000pt;}
.ls0_c00376{letter-spacing:0.000000pt;}
.ws2_c00376{word-spacing:-15.012693pt;}
.ws1_c00376{word-spacing:-7.714337pt;}
.ws0_c00376{word-spacing:-7.225600pt;}
.ws4_c00376{word-spacing:-7.118293pt;}
.ws3_c00376{word-spacing:-3.860504pt;}
.ws5_c00376{word-spacing:0.000000pt;}
._0_c00376{width:4.864013pt;}
.fs7_c00376{font-size:3.040000pt;}
.fs4_c00376{font-size:16.640000pt;}
.fs0_c00376{font-size:18.133333pt;}
.fs3_c00376{font-size:22.666667pt;}
.fs1_c00376{font-size:25.706667pt;}
.fs5_c00376{font-size:28.746667pt;}
.fs2_c00376{font-size:31.733333pt;}
.fs6_c00376{font-size:34.773333pt;}
.y0_c00376{bottom:0.000000pt;}
.yd0_c00376{bottom:224.360000pt;}
.yd1_c00376{bottom:225.106667pt;}
.yd2_c00376{bottom:225.893333pt;}
.ycf_c00376{bottom:226.640000pt;}
.yce_c00376{bottom:227.026667pt;}
.ycc_c00376{bottom:240.360000pt;}
.ycb_c00376{bottom:242.826667pt;}
.yc9_c00376{bottom:243.226667pt;}
.ycd_c00376{bottom:243.773333pt;}
.yc8_c00376{bottom:244.360000pt;}
.yca_c00376{bottom:245.693333pt;}
.yc2_c00376{bottom:259.026667pt;}
.yc4_c00376{bottom:259.773333pt;}
.yc6_c00376{bottom:261.106667pt;}
.yc7_c00376{bottom:261.693333pt;}
.yc1_c00376{bottom:261.893333pt;}
.yc5_c00376{bottom:262.066667pt;}
.yc3_c00376{bottom:263.026667pt;}
.ybc_c00376{bottom:276.360000pt;}
.ybd_c00376{bottom:278.440000pt;}
.yc0_c00376{bottom:279.026667pt;}
.ybe_c00376{bottom:279.226667pt;}
.ybf_c00376{bottom:279.400000pt;}
.ybb_c00376{bottom:280.360000pt;}
.yb9_c00376{bottom:295.773333pt;}
.yb7_c00376{bottom:296.560000pt;}
.yba_c00376{bottom:297.306667pt;}
.yb6_c00376{bottom:297.693333pt;}
.yb8_c00376{bottom:297.706667pt;}
.yb4_c00376{bottom:313.106667pt;}
.yb5_c00376{bottom:315.026667pt;}
.yb1_c00376{bottom:328.360000pt;}
.yae_c00376{bottom:330.440000pt;}
.yb3_c00376{bottom:331.026667pt;}
.yaf_c00376{bottom:331.973333pt;}
.yb0_c00376{bottom:332.360000pt;}
.yb2_c00376{bottom:332.560000pt;}
.yad_c00376{bottom:347.773333pt;}
.yac_c00376{bottom:347.973333pt;}
.yaa_c00376{bottom:348.733333pt;}
.ya8_c00376{bottom:349.693333pt;}
.ya9_c00376{bottom:349.893333pt;}
.yab_c00376{bottom:350.640000pt;}
.ya7_c00376{bottom:364.360000pt;}
.ya6_c00376{bottom:365.106667pt;}
.ya3_c00376{bottom:366.440000pt;}
.ya2_c00376{bottom:367.026667pt;}
.ya1_c00376{bottom:367.226667pt;}
.ya5_c00376{bottom:367.973333pt;}
.ya4_c00376{bottom:368.360000pt;}
.y9d_c00376{bottom:381.693333pt;}
.y9f_c00376{bottom:382.440000pt;}
.ya0_c00376{bottom:383.400000pt;}
.y9c_c00376{bottom:384.360000pt;}
.y9b_c00376{bottom:384.560000pt;}
.y9e_c00376{bottom:385.693333pt;}
.y9a_c00376{bottom:399.773333pt;}
.y98_c00376{bottom:400.733333pt;}
.y96_c00376{bottom:401.106667pt;}
.y99_c00376{bottom:401.693333pt;}
.y95_c00376{bottom:401.893333pt;}
.y97_c00376{bottom:403.026667pt;}
.y93_c00376{bottom:416.360000pt;}
.y92_c00376{bottom:418.440000pt;}
.y94_c00376{bottom:419.026667pt;}
.y90_c00376{bottom:419.226667pt;}
.y91_c00376{bottom:420.360000pt;}
.y8e_c00376{bottom:435.773333pt;}
.y8d_c00376{bottom:435.973333pt;}
.y8f_c00376{bottom:436.733333pt;}
.y8c_c00376{bottom:437.693333pt;}
.y87_c00376{bottom:452.360000pt;}
.y88_c00376{bottom:453.106667pt;}
.y8a_c00376{bottom:454.066667pt;}
.y89_c00376{bottom:455.026667pt;}
.y8b_c00376{bottom:455.226667pt;}
.y84_c00376{bottom:470.440000pt;}
.y86_c00376{bottom:471.973333pt;}
.y83_c00376{bottom:472.360000pt;}
.y85_c00376{bottom:472.560000pt;}
.y7e_c00376{bottom:487.773333pt;}
.y82_c00376{bottom:488.733333pt;}
.y80_c00376{bottom:489.106667pt;}
.y7f_c00376{bottom:489.693333pt;}
.y81_c00376{bottom:489.893333pt;}
.y7c_c00376{bottom:506.440000pt;}
.y7d_c00376{bottom:507.226667pt;}
.y7b_c00376{bottom:507.400000pt;}
.y7a_c00376{bottom:508.360000pt;}
.y75_c00376{bottom:523.773333pt;}
.y79_c00376{bottom:524.360000pt;}
.y76_c00376{bottom:524.560000pt;}
.y78_c00376{bottom:525.693333pt;}
.y77_c00376{bottom:525.706667pt;}
.y74_c00376{bottom:541.106667pt;}
.y73_c00376{bottom:541.893333pt;}
.y72_c00376{bottom:543.026667pt;}
.y6f_c00376{bottom:557.693333pt;}
.y71_c00376{bottom:558.066667pt;}
.y6d_c00376{bottom:558.440000pt;}
.y6c_c00376{bottom:559.973333pt;}
.y6b_c00376{bottom:560.360000pt;}
.y6e_c00376{bottom:560.560000pt;}
.y70_c00376{bottom:561.306667pt;}
.y6a_c00376{bottom:581.693333pt;}
.y68_c00376{bottom:610.440000pt;}
.y69_c00376{bottom:610.640000pt;}
.y67_c00376{bottom:612.360000pt;}
.y64_c00376{bottom:627.026667pt;}
.y65_c00376{bottom:628.360000pt;}
.y63_c00376{bottom:629.693333pt;}
.y66_c00376{bottom:629.893333pt;}
.y62_c00376{bottom:630.640000pt;}
.y61_c00376{bottom:631.026667pt;}
.y5e_c00376{bottom:644.733333pt;}
.y60_c00376{bottom:645.106667pt;}
.y5f_c00376{bottom:645.306667pt;}
.y5c_c00376{bottom:645.693333pt;}
.y5a_c00376{bottom:646.440000pt;}
.y5d_c00376{bottom:647.973333pt;}
.y5b_c00376{bottom:648.360000pt;}
.y59_c00376{bottom:663.026667pt;}
.y58_c00376{bottom:663.773333pt;}
.y56_c00376{bottom:664.360000pt;}
.y57_c00376{bottom:665.693333pt;}
.y55_c00376{bottom:679.026667pt;}
.y51_c00376{bottom:680.360000pt;}
.y50_c00376{bottom:681.106667pt;}
.y54_c00376{bottom:682.066667pt;}
.y53_c00376{bottom:683.026667pt;}
.y52_c00376{bottom:683.973333pt;}
.y4c_c00376{bottom:696.360000pt;}
.y4d_c00376{bottom:697.693333pt;}
.y4a_c00376{bottom:698.066667pt;}
.y4f_c00376{bottom:699.226667pt;}
.y4e_c00376{bottom:699.973333pt;}
.y4b_c00376{bottom:700.360000pt;}
.y48_c00376{bottom:715.026667pt;}
.y45_c00376{bottom:715.773333pt;}
.y46_c00376{bottom:717.693333pt;}
.y49_c00376{bottom:717.893333pt;}
.y47_c00376{bottom:718.640000pt;}
.y42_c00376{bottom:732.360000pt;}
.y44_c00376{bottom:733.106667pt;}
.y43_c00376{bottom:735.026667pt;}
.y40_c00376{bottom:749.306667pt;}
.y41_c00376{bottom:750.440000pt;}
.y3a_c00376{bottom:751.026667pt;}
.y3e_c00376{bottom:751.773333pt;}
.y3b_c00376{bottom:751.973333pt;}
.y3d_c00376{bottom:752.560000pt;}
.y3f_c00376{bottom:752.733333pt;}
.y3c_c00376{bottom:753.693333pt;}
.y35_c00376{bottom:767.026667pt;}
.y36_c00376{bottom:767.973333pt;}
.y38_c00376{bottom:768.733333pt;}
.y39_c00376{bottom:769.693333pt;}
.y37_c00376{bottom:771.026667pt;}
.y31_c00376{bottom:785.493333pt;}
.y32_c00376{bottom:786.440000pt;}
.y30_c00376{bottom:787.226667pt;}
.y34_c00376{bottom:787.973333pt;}
.y33_c00376{bottom:788.360000pt;}
.y2f_c00376{bottom:802.640000pt;}
.y2e_c00376{bottom:803.773333pt;}
.y2d_c00376{bottom:804.560000pt;}
.y2c_c00376{bottom:805.693333pt;}
.y2b_c00376{bottom:806.640000pt;}
.y2a_c00376{bottom:819.973333pt;}
.y27_c00376{bottom:821.106667pt;}
.y28_c00376{bottom:822.640000pt;}
.y26_c00376{bottom:823.026667pt;}
.y29_c00376{bottom:823.973333pt;}
.y25_c00376{bottom:837.693333pt;}
.y22_c00376{bottom:838.066667pt;}
.y20_c00376{bottom:838.440000pt;}
.y24_c00376{bottom:839.773333pt;}
.y21_c00376{bottom:840.360000pt;}
.y23_c00376{bottom:841.306667pt;}
.y1d_c00376{bottom:855.773333pt;}
.y1b_c00376{bottom:857.693333pt;}
.y1c_c00376{bottom:857.893333pt;}
.y1f_c00376{bottom:858.640000pt;}
.y1e_c00376{bottom:859.026667pt;}
.y19_c00376{bottom:874.066667pt;}
.y18_c00376{bottom:874.440000pt;}
.y16_c00376{bottom:875.026667pt;}
.y1a_c00376{bottom:875.973333pt;}
.y17_c00376{bottom:876.360000pt;}
.y14_c00376{bottom:890.440000pt;}
.y12_c00376{bottom:891.400000pt;}
.y13_c00376{bottom:892.360000pt;}
.y15_c00376{bottom:893.306667pt;}
.y10_c00376{bottom:907.026667pt;}
.yf_c00376{bottom:907.773333pt;}
.y11_c00376{bottom:908.733333pt;}
.ye_c00376{bottom:909.693333pt;}
.yd_c00376{bottom:910.640000pt;}
.y6_c00376{bottom:924.360000pt;}
.yc_c00376{bottom:925.106667pt;}
.y7_c00376{bottom:926.440000pt;}
.yb_c00376{bottom:927.026667pt;}
.ya_c00376{bottom:927.226667pt;}
.y8_c00376{bottom:927.973333pt;}
.y9_c00376{bottom:928.360000pt;}
.y3_c00376{bottom:943.773333pt;}
.y5_c00376{bottom:944.360000pt;}
.y4_c00376{bottom:945.693333pt;}
.y2_c00376{bottom:977.693333pt;}
.y1_c00376{bottom:979.600000pt;}
.h9_c00376{height:3.739141pt;}
.h5_c00376{height:20.466875pt;}
.h1_c00376{height:22.303646pt;}
.h4_c00376{height:27.879557pt;}
.h2_c00376{height:31.618698pt;}
.h6_c00376{height:35.357839pt;}
.h3_c00376{height:39.031380pt;}
.h7_c00376{height:42.770521pt;}
.h8_c00376{height:47.618698pt;}
.h0_c00376{height:1186.666667pt;}
.w0_c00376{width:782.666667pt;}
.x0_c00376{left:0.000000pt;}
.x73_c00376{left:134.666667pt;}
.xa3_c00376{left:136.000000pt;}
.x1c_c00376{left:142.293333pt;}
.xaa_c00376{left:148.960000pt;}
.x9e_c00376{left:150.666667pt;}
.xf3_c00376{left:152.000000pt;}
.xd5_c00376{left:153.333333pt;}
.xb8_c00376{left:157.906667pt;}
.xe0_c00376{left:159.040000pt;}
.xf6_c00376{left:161.333333pt;}
.xf4_c00376{left:162.666667pt;}
.x3_c00376{left:164.373333pt;}
.x6c_c00376{left:165.706667pt;}
.xec_c00376{left:167.040000pt;}
.xb1_c00376{left:170.666667pt;}
.xd2_c00376{left:171.626667pt;}
.x9f_c00376{left:180.000000pt;}
.xc3_c00376{left:181.706667pt;}
.x4b_c00376{left:185.333333pt;}
.xfb_c00376{left:187.626667pt;}
.x2f_c00376{left:189.706667pt;}
.x1d_c00376{left:192.000000pt;}
.x65_c00376{left:193.333333pt;}
.x6d_c00376{left:194.666667pt;}
.xa0_c00376{left:195.626667pt;}
.xab_c00376{left:197.333333pt;}
.xe7_c00376{left:200.000000pt;}
.xe2_c00376{left:204.960000pt;}
.xf7_c00376{left:206.666667pt;}
.x4_c00376{left:208.000000pt;}
.xd7_c00376{left:209.333333pt;}
.xb9_c00376{left:210.293333pt;}
.x6e_c00376{left:212.373333pt;}
.x39_c00376{left:214.666667pt;}
.x41_c00376{left:215.626667pt;}
.x96_c00376{left:216.960000pt;}
.xe3_c00376{left:222.666667pt;}
.x11_c00376{left:224.000000pt;}
.x66_c00376{left:225.706667pt;}
.x25_c00376{left:228.000000pt;}
.x5d_c00376{left:230.666667pt;}
.x8e_c00376{left:233.706667pt;}
.x7c_c00376{left:235.040000pt;}
.xc7_c00376{left:236.000000pt;}
.xa4_c00376{left:237.333333pt;}
.x54_c00376{left:238.293333pt;}
.x6f_c00376{left:240.000000pt;}
.xfc_c00376{left:243.040000pt;}
.x74_c00376{left:245.706667pt;}
.x26_c00376{left:246.666667pt;}
.x30_c00376{left:249.706667pt;}
.xf8_c00376{left:252.960000pt;}
.x55_c00376{left:256.373333pt;}
.xbf_c00376{left:257.706667pt;}
.x97_c00376{left:258.666667pt;}
.x5_c00376{left:264.000000pt;}
.xa5_c00376{left:265.706667pt;}
.x42_c00376{left:266.666667pt;}
.x1e_c00376{left:272.373333pt;}
.x4c_c00376{left:273.333333pt;}
.xa1_c00376{left:275.040000pt;}
.x3a_c00376{left:276.000000pt;}
.x7d_c00376{left:277.333333pt;}
.xc8_c00376{left:278.666667pt;}
.x56_c00376{left:281.333333pt;}
.x27_c00376{left:282.666667pt;}
.x31_c00376{left:284.373333pt;}
.xd8_c00376{left:285.333333pt;}
.xc0_c00376{left:286.666667pt;}
.xba_c00376{left:288.000000pt;}
.x75_c00376{left:288.960000pt;}
.x8b_c00376{left:290.293333pt;}
.x6_c00376{left:291.626667pt;}
.x8f_c00376{left:292.960000pt;}
.x43_c00376{left:295.626667pt;}
.x7e_c00376{left:296.960000pt;}
.xa6_c00376{left:298.666667pt;}
.xd6_c00376{left:300.000000pt;}
.x67_c00376{left:303.626667pt;}
.x90_c00376{left:305.333333pt;}
.x76_c00376{left:307.040000pt;}
.xa7_c00376{left:311.040000pt;}
.x12_c00376{left:312.000000pt;}
.xc4_c00376{left:313.133333pt;}
.x57_c00376{left:314.666667pt;}
.xc9_c00376{left:316.373333pt;}
.xac_c00376{left:317.706667pt;}
.x1f_c00376{left:318.666667pt;}
.xd9_c00376{left:321.333333pt;}
.x5e_c00376{left:323.040000pt;}
.x4d_c00376{left:324.000000pt;}
.xd3_c00376{left:325.333333pt;}
.x32_c00376{left:327.040000pt;}
.x7_c00376{left:329.333333pt;}
.x77_c00376{left:330.666667pt;}
.x8c_c00376{left:332.000000pt;}
.x20_c00376{left:333.706667pt;}
.x44_c00376{left:334.666667pt;}
.x13_c00376{left:336.960000pt;}
.x58_c00376{left:338.293333pt;}
.xf9_c00376{left:340.000000pt;}
.xca_c00376{left:340.960000pt;}
.x4e_c00376{left:342.293333pt;}
.x8_c00376{left:344.000000pt;}
.x1_c00376{left:346.666667pt;}
.xb2_c00376{left:348.000000pt;}
.xc5_c00376{left:348.960000pt;}
.x3b_c00376{left:350.666667pt;}
.xed_c00376{left:352.000000pt;}
.xa8_c00376{left:352.960000pt;}
.xcf_c00376{left:354.293333pt;}
.x5f_c00376{left:357.333333pt;}
.xbb_c00376{left:358.293333pt;}
.x28_c00376{left:359.626667pt;}
.x7f_c00376{left:361.333333pt;}
.xe1_c00376{left:362.666667pt;}
.x33_c00376{left:365.333333pt;}
.xa2_c00376{left:366.293333pt;}
.x9d_c00376{left:367.626667pt;}
.xa9_c00376{left:369.333333pt;}
.xe4_c00376{left:370.666667pt;}
.x78_c00376{left:372.373333pt;}
.x91_c00376{left:373.706667pt;}
.x45_c00376{left:376.960000pt;}
.x9_c00376{left:380.960000pt;}
.x14_c00376{left:382.293333pt;}
.x4f_c00376{left:384.373333pt;}
.xad_c00376{left:385.333333pt;}
.xda_c00376{left:388.000000pt;}
.xee_c00376{left:388.960000pt;}
.xc1_c00376{left:391.626667pt;}
.x34_c00376{left:393.333333pt;}
.xb3_c00376{left:394.666667pt;}
.xcb_c00376{left:396.373333pt;}
.x15_c00376{left:397.333333pt;}
.xf5_c00376{left:398.666667pt;}
.x29_c00376{left:400.000000pt;}
.x85_c00376{left:401.333333pt;}
.x59_c00376{left:402.666667pt;}
.x9c_c00376{left:404.000000pt;}
.x46_c00376{left:404.960000pt;}
.xe8_c00376{left:406.293333pt;}
.x3c_c00376{left:408.000000pt;}
.xa_c00376{left:409.333333pt;}
.x68_c00376{left:410.293333pt;}
.xfd_c00376{left:411.626667pt;}
.x21_c00376{left:414.666667pt;}
.x70_c00376{left:415.626667pt;}
.xb4_c00376{left:419.040000pt;}
.x16_c00376{left:420.000000pt;}
.xdb_c00376{left:421.333333pt;}
.x47_c00376{left:422.293333pt;}
.x98_c00376{left:424.373333pt;}
.x3d_c00376{left:425.333333pt;}
.x69_c00376{left:428.373333pt;}
.x80_c00376{left:429.333333pt;}
.x5a_c00376{left:431.626667pt;}
.xdc_c00376{left:432.760000pt;}
.xd0_c00376{left:434.666667pt;}
.x79_c00376{left:436.960000pt;}
.x8d_c00376{left:438.293333pt;}
.xbc_c00376{left:440.373333pt;}
.xb5_c00376{left:444.000000pt;}
.xe9_c00376{left:445.706667pt;}
.xef_c00376{left:446.666667pt;}
.x81_c00376{left:450.666667pt;}
.x17_c00376{left:452.000000pt;}
.x35_c00376{left:453.333333pt;}
.x50_c00376{left:456.960000pt;}
.xb_c00376{left:459.040000pt;}
.xfe_c00376{left:460.000000pt;}
.xf0_c00376{left:465.333333pt;}
.x2a_c00376{left:466.293333pt;}
.xcc_c00376{left:468.000000pt;}
.x60_c00376{left:469.706667pt;}
.xff_c00376{left:471.040000pt;}
.xdd_c00376{left:472.000000pt;}
.x18_c00376{left:473.333333pt;}
.x51_c00376{left:474.666667pt;}
.x3e_c00376{left:476.373333pt;}
.x7a_c00376{left:478.666667pt;}
.x71_c00376{left:481.706667pt;}
.x22_c00376{left:482.666667pt;}
.x36_c00376{left:484.960000pt;}
.x92_c00376{left:486.666667pt;}
.x99_c00376{left:488.000000pt;}
.x2b_c00376{left:493.706667pt;}
.xae_c00376{left:496.000000pt;}
.x6a_c00376{left:498.666667pt;}
.x52_c00376{left:499.626667pt;}
.xbd_c00376{left:503.040000pt;}
.xc_c00376{left:504.000000pt;}
.xcd_c00376{left:505.333333pt;}
.x9a_c00376{left:507.040000pt;}
.x23_c00376{left:508.000000pt;}
.x48_c00376{left:508.960000pt;}
.x82_c00376{left:510.293333pt;}
.xf1_c00376{left:514.093333pt;}
.x19_c00376{left:516.000000pt;}
.x86_c00376{left:519.040000pt;}
.x93_c00376{left:520.373333pt;}
.xc2_c00376{left:521.333333pt;}
.x2c_c00376{left:524.000000pt;}
.x61_c00376{left:524.960000pt;}
.xea_c00376{left:526.666667pt;}
.x37_c00376{left:529.333333pt;}
.xde_c00376{left:530.666667pt;}
.x9b_c00376{left:534.666667pt;}
.x8a_c00376{left:541.333333pt;}
.x49_c00376{left:542.666667pt;}
.x7b_c00376{left:543.626667pt;}
.x94_c00376{left:545.706667pt;}
.x5b_c00376{left:547.040000pt;}
.xf2_c00376{left:548.000000pt;}
.xd1_c00376{left:550.293333pt;}
.x87_c00376{left:552.373333pt;}
.xd_c00376{left:553.706667pt;}
.x2d_c00376{left:554.666667pt;}
.x4a_c00376{left:556.000000pt;}
.x83_c00376{left:560.000000pt;}
.x3f_c00376{left:561.706667pt;}
.x53_c00376{left:564.000000pt;}
.xb6_c00376{left:565.333333pt;}
.xdf_c00376{left:566.666667pt;}
.xc6_c00376{left:568.000000pt;}
.xe5_c00376{left:569.333333pt;}
.x5c_c00376{left:570.666667pt;}
.x38_c00376{left:572.960000pt;}
.x62_c00376{left:575.040000pt;}
.xd4_c00376{left:577.333333pt;}
.xe_c00376{left:578.293333pt;}
.x88_c00376{left:580.000000pt;}
.xe6_c00376{left:581.333333pt;}
.xb7_c00376{left:582.666667pt;}
.x40_c00376{left:584.000000pt;}
.xaf_c00376{left:585.333333pt;}
.x84_c00376{left:589.333333pt;}
.x1a_c00376{left:590.666667pt;}
.xce_c00376{left:594.293333pt;}
.x2e_c00376{left:596.960000pt;}
.x95_c00376{left:599.626667pt;}
.xfa_c00376{left:603.040000pt;}
.xeb_c00376{left:605.706667pt;}
.xb0_c00376{left:606.666667pt;}
.x63_c00376{left:608.000000pt;}
.xf_c00376{left:610.293333pt;}
.x72_c00376{left:611.626667pt;}
.xbe_c00376{left:617.333333pt;}
.x6b_c00376{left:620.373333pt;}
.x89_c00376{left:625.333333pt;}
.x2_c00376{left:626.293333pt;}
.x10_c00376{left:628.373333pt;}
.x24_c00376{left:629.706667pt;}
.x64_c00376{left:636.000000pt;}
.x100_c00376{left:640.000000pt;}
.x1b_c00376{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5f0948f061d8524796ce107a.woff2')format("woff");}.ff1_c00377{font-family:ff1_c00377;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7b_c00377{transform:matrix(0.322689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322689,0.000000,0.000000,0.250000,0,0);}
.m66_c00377{transform:matrix(0.336273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336273,0.000000,0.000000,0.250000,0,0);}
.m7a_c00377{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.me3_c00377{transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);}
.m6e_c00377{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.maa_c00377{transform:matrix(0.344709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344709,0.000000,0.000000,0.250000,0,0);}
.mc7_c00377{transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);}
.m6f_c00377{transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);}
.m6d_c00377{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m8b_c00377{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.md0_c00377{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mb7_c00377{transform:matrix(0.364264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364264,0.000000,0.000000,0.250000,0,0);}
.m0_c00377{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m8_c00377{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m4e_c00377{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m8d_c00377{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mda_c00377{transform:matrix(0.371166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371166,0.000000,0.000000,0.250000,0,0);}
.mdd_c00377{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.me9_c00377{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.m74_c00377{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.md5_c00377{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.m89_c00377{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m55_c00377{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mb8_c00377{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m8f_c00377{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.me4_c00377{transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);}
.mc8_c00377{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m54_c00377{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m94_c00377{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m2a_c00377{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.mb6_c00377{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m87_c00377{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.ma0_c00377{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m13_c00377{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m93_c00377{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m3f_c00377{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m6b_c00377{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_c00377{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m88_c00377{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.me7_c00377{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m4f_c00377{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m5b_c00377{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.mbb_c00377{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m9d_c00377{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m17_c00377{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m4c_c00377{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.ma9_c00377{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m10_c00377{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m68_c00377{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m72_c00377{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m9c_c00377{transform:matrix(0.410660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410660,0.000000,0.000000,0.250000,0,0);}
.m86_c00377{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mbc_c00377{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m51_c00377{transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);}
.m38_c00377{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m45_c00377{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m83_c00377{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m11_c00377{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m6a_c00377{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mbd_c00377{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mca_c00377{transform:matrix(0.420245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420245,0.000000,0.000000,0.250000,0,0);}
.m92_c00377{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m7c_c00377{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m1a_c00377{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m43_c00377{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m1f_c00377{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.me2_c00377{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m19_c00377{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m84_c00377{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.me6_c00377{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m1d_c00377{transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);}
.m1e_c00377{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m30_c00377{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m27_c00377{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.mc5_c00377{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m28_c00377{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m91_c00377{transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);}
.m9f_c00377{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.mcd_c00377{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m9_c00377{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.m2_c00377{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m3_c00377{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m5e_c00377{transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);}
.m96_c00377{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m52_c00377{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.ma4_c00377{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m76_c00377{transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);}
.m56_c00377{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m3e_c00377{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.m4d_c00377{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.mc_c00377{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.me8_c00377{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.mb2_c00377{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.mea_c00377{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m42_c00377{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.mcc_c00377{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m3a_c00377{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m62_c00377{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.m69_c00377{transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);}
.m8a_c00377{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m6c_c00377{transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);}
.m60_c00377{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.mb4_c00377{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.meb_c00377{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m98_c00377{transform:matrix(0.473109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473109,0.000000,0.000000,0.250000,0,0);}
.mcf_c00377{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mc0_c00377{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.ma8_c00377{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m70_c00377{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m4b_c00377{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m18_c00377{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m49_c00377{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m33_c00377{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m73_c00377{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m97_c00377{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m4a_c00377{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m50_c00377{transform:matrix(0.493506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493506,0.000000,0.000000,0.250000,0,0);}
.m16_c00377{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m1b_c00377{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);}
.mdb_c00377{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m24_c00377{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m7f_c00377{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m5d_c00377{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m5_c00377{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mc6_c00377{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.md4_c00377{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.mc9_c00377{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m3d_c00377{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m90_c00377{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.mc3_c00377{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m9a_c00377{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m53_c00377{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.mbe_c00377{transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);}
.m7e_c00377{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m75_c00377{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m48_c00377{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mad_c00377{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m80_c00377{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.md8_c00377{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m2d_c00377{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mcb_c00377{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mc2_c00377{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m85_c00377{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m59_c00377{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mc4_c00377{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m6_c00377{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mb9_c00377{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m79_c00377{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.mae_c00377{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mc1_c00377{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.ma_c00377{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m26_c00377{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m41_c00377{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m32_c00377{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m3b_c00377{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.md2_c00377{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.md1_c00377{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m23_c00377{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.m82_c00377{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.mac_c00377{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.md7_c00377{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m2f_c00377{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.md3_c00377{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m8c_c00377{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.maf_c00377{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mba_c00377{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m36_c00377{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m58_c00377{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.ma5_c00377{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m21_c00377{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m35_c00377{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.me_c00377{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m3c_c00377{transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);}
.mab_c00377{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m5a_c00377{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m7d_c00377{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.md6_c00377{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.me5_c00377{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m1c_c00377{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m2e_c00377{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m22_c00377{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mb0_c00377{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m65_c00377{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m78_c00377{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.md9_c00377{transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);}
.m37_c00377{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mb3_c00377{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m9b_c00377{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m67_c00377{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mb_c00377{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.m77_c00377{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m2b_c00377{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.ma1_c00377{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.ma7_c00377{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.ma2_c00377{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.me0_c00377{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m8e_c00377{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m15_c00377{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mb5_c00377{transform:matrix(0.586618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586618,0.000000,0.000000,0.250000,0,0);}
.m5c_c00377{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m64_c00377{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mdf_c00377{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m12_c00377{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m14_c00377{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m40_c00377{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mce_c00377{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m7_c00377{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m81_c00377{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m20_c00377{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m57_c00377{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m63_c00377{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);}
.m5f_c00377{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m1_c00377{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.me1_c00377{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m95_c00377{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m2c_c00377{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m4_c00377{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m34_c00377{transform:matrix(0.668269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.668269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.668269,0.000000,0.000000,0.250000,0,0);}
.ma3_c00377{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m44_c00377{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mb1_c00377{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m31_c00377{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m25_c00377{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mde_c00377{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.md_c00377{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mf_c00377{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m71_c00377{transform:matrix(0.759615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.759615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.759615,0.000000,0.000000,0.250000,0,0);}
.m29_c00377{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m61_c00377{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m9e_c00377{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m46_c00377{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.mdc_c00377{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m99_c00377{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.ma6_c00377{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.m39_c00377{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.mbf_c00377{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00377{vertical-align:0.000000px;}
.v1_c00377{vertical-align:12.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:-16.889280px;}
.ws1_c00377{word-spacing:-7.448345px;}
.ws2_c00377{word-spacing:-6.616522px;}
.ws3_c00377{word-spacing:0.000000px;}
._0_c00377{width:7.292040px;}
.fc0_c00377{color:transparent;}
.fs7_c00377{font-size:3.420000px;}
.fs5_c00377{font-size:18.720000px;}
.fs1_c00377{font-size:20.400000px;}
.fs2_c00377{font-size:25.500000px;}
.fs3_c00377{font-size:28.920000px;}
.fs4_c00377{font-size:32.340000px;}
.fs0_c00377{font-size:35.700000px;}
.fs6_c00377{font-size:39.120000px;}
.y0_c00377{bottom:0.000000px;}
.ye4_c00377{bottom:247.905000px;}
.ye0_c00377{bottom:250.245000px;}
.ye1_c00377{bottom:251.130000px;}
.ye3_c00377{bottom:251.325000px;}
.ye2_c00377{bottom:252.405000px;}
.ydf_c00377{bottom:268.680000px;}
.ydd_c00377{bottom:269.745000px;}
.yde_c00377{bottom:271.905000px;}
.yd8_c00377{bottom:289.245000px;}
.yd9_c00377{bottom:290.970000px;}
.yda_c00377{bottom:291.405000px;}
.ydc_c00377{bottom:291.630000px;}
.ydb_c00377{bottom:292.905000px;}
.yd4_c00377{bottom:308.745000px;}
.yd7_c00377{bottom:309.180000px;}
.yd5_c00377{bottom:310.245000px;}
.yd6_c00377{bottom:312.405000px;}
.ycd_c00377{bottom:328.245000px;}
.yd1_c00377{bottom:328.470000px;}
.yd3_c00377{bottom:329.745000px;}
.ycf_c00377{bottom:330.405000px;}
.yce_c00377{bottom:330.630000px;}
.yd2_c00377{bottom:331.470000px;}
.yd0_c00377{bottom:331.905000px;}
.yc7_c00377{bottom:346.905000px;}
.yc9_c00377{bottom:348.180000px;}
.yca_c00377{bottom:349.245000px;}
.yc6_c00377{bottom:349.905000px;}
.ycc_c00377{bottom:350.130000px;}
.ycb_c00377{bottom:350.970000px;}
.yc8_c00377{bottom:351.405000px;}
.yc3_c00377{bottom:368.745000px;}
.yc4_c00377{bottom:370.470000px;}
.yc2_c00377{bottom:370.905000px;}
.yc5_c00377{bottom:371.130000px;}
.ybe_c00377{bottom:387.405000px;}
.yc0_c00377{bottom:388.245000px;}
.ybd_c00377{bottom:389.325000px;}
.ybf_c00377{bottom:390.405000px;}
.yc1_c00377{bottom:390.630000px;}
.yb9_c00377{bottom:406.680000px;}
.ybc_c00377{bottom:407.745000px;}
.yba_c00377{bottom:408.825000px;}
.ybb_c00377{bottom:409.470000px;}
.yb8_c00377{bottom:409.905000px;}
.yb7_c00377{bottom:426.405000px;}
.yb5_c00377{bottom:427.245000px;}
.yb4_c00377{bottom:429.405000px;}
.yb6_c00377{bottom:429.630000px;}
.yb2_c00377{bottom:446.745000px;}
.yb1_c00377{bottom:447.180000px;}
.yaf_c00377{bottom:448.245000px;}
.yb0_c00377{bottom:448.905000px;}
.yb3_c00377{bottom:449.130000px;}
.yab_c00377{bottom:467.745000px;}
.yac_c00377{bottom:468.630000px;}
.yae_c00377{bottom:469.905000px;}
.yad_c00377{bottom:469.920000px;}
.yaa_c00377{bottom:485.325000px;}
.ya9_c00377{bottom:488.325000px;}
.ya8_c00377{bottom:505.905000px;}
.ya6_c00377{bottom:506.745000px;}
.ya3_c00377{bottom:507.630000px;}
.ya2_c00377{bottom:507.825000px;}
.ya7_c00377{bottom:508.470000px;}
.ya4_c00377{bottom:508.905000px;}
.ya5_c00377{bottom:509.130000px;}
.ya0_c00377{bottom:525.825000px;}
.y9c_c00377{bottom:526.245000px;}
.ya1_c00377{bottom:527.325000px;}
.y9e_c00377{bottom:527.745000px;}
.y9d_c00377{bottom:528.405000px;}
.y9f_c00377{bottom:528.630000px;}
.y98_c00377{bottom:545.745000px;}
.y9a_c00377{bottom:546.180000px;}
.y96_c00377{bottom:547.245000px;}
.y99_c00377{bottom:547.905000px;}
.y9b_c00377{bottom:548.130000px;}
.y97_c00377{bottom:548.325000px;}
.y95_c00377{bottom:549.405000px;}
.y92_c00377{bottom:565.470000px;}
.y93_c00377{bottom:566.325000px;}
.y8f_c00377{bottom:567.405000px;}
.y91_c00377{bottom:567.630000px;}
.y90_c00377{bottom:568.470000px;}
.y94_c00377{bottom:568.905000px;}
.y89_c00377{bottom:583.905000px;}
.y87_c00377{bottom:584.745000px;}
.y8d_c00377{bottom:585.825000px;}
.y8a_c00377{bottom:586.245000px;}
.y8e_c00377{bottom:586.905000px;}
.y8c_c00377{bottom:587.130000px;}
.y8b_c00377{bottom:587.970000px;}
.y88_c00377{bottom:588.405000px;}
.y81_c00377{bottom:603.405000px;}
.y86_c00377{bottom:604.680000px;}
.y85_c00377{bottom:605.325000px;}
.y83_c00377{bottom:605.745000px;}
.y84_c00377{bottom:606.630000px;}
.y82_c00377{bottom:607.905000px;}
.y7c_c00377{bottom:622.905000px;}
.y79_c00377{bottom:623.745000px;}
.y7a_c00377{bottom:624.825000px;}
.y7d_c00377{bottom:625.245000px;}
.y80_c00377{bottom:625.905000px;}
.y7e_c00377{bottom:626.130000px;}
.y7f_c00377{bottom:626.970000px;}
.y7b_c00377{bottom:627.405000px;}
.y78_c00377{bottom:644.325000px;}
.y74_c00377{bottom:644.745000px;}
.y76_c00377{bottom:645.630000px;}
.y77_c00377{bottom:646.470000px;}
.y75_c00377{bottom:646.905000px;}
.y73_c00377{bottom:663.180000px;}
.y71_c00377{bottom:664.245000px;}
.y6f_c00377{bottom:665.130000px;}
.y70_c00377{bottom:666.405000px;}
.y72_c00377{bottom:666.630000px;}
.y6e_c00377{bottom:682.905000px;}
.y6b_c00377{bottom:683.745000px;}
.y6c_c00377{bottom:685.905000px;}
.y6d_c00377{bottom:686.970000px;}
.y69_c00377{bottom:702.405000px;}
.y6a_c00377{bottom:702.825000px;}
.y68_c00377{bottom:703.245000px;}
.y67_c00377{bottom:704.970000px;}
.y66_c00377{bottom:705.405000px;}
.y63_c00377{bottom:721.905000px;}
.y64_c00377{bottom:722.745000px;}
.y65_c00377{bottom:723.825000px;}
.y61_c00377{bottom:724.905000px;}
.y62_c00377{bottom:725.970000px;}
.y5f_c00377{bottom:742.245000px;}
.y60_c00377{bottom:743.745000px;}
.y5e_c00377{bottom:744.405000px;}
.y5d_c00377{bottom:760.905000px;}
.y57_c00377{bottom:761.745000px;}
.y5a_c00377{bottom:763.245000px;}
.y5c_c00377{bottom:763.905000px;}
.y59_c00377{bottom:764.325000px;}
.y5b_c00377{bottom:764.970000px;}
.y58_c00377{bottom:765.405000px;}
.y53_c00377{bottom:782.745000px;}
.y56_c00377{bottom:783.630000px;}
.y55_c00377{bottom:784.470000px;}
.y52_c00377{bottom:784.905000px;}
.y54_c00377{bottom:785.970000px;}
.y51_c00377{bottom:799.905000px;}
.y4e_c00377{bottom:800.745000px;}
.y4f_c00377{bottom:802.245000px;}
.y4d_c00377{bottom:802.905000px;}
.y50_c00377{bottom:804.405000px;}
.y4a_c00377{bottom:820.680000px;}
.y47_c00377{bottom:821.745000px;}
.y4c_c00377{bottom:822.630000px;}
.y48_c00377{bottom:822.825000px;}
.y4b_c00377{bottom:823.905000px;}
.y49_c00377{bottom:824.130000px;}
.y45_c00377{bottom:841.245000px;}
.y46_c00377{bottom:842.325000px;}
.y43_c00377{bottom:843.405000px;}
.y44_c00377{bottom:844.470000px;}
.y42_c00377{bottom:859.680000px;}
.y40_c00377{bottom:859.905000px;}
.y3e_c00377{bottom:860.325000px;}
.y3d_c00377{bottom:860.745000px;}
.y41_c00377{bottom:861.630000px;}
.y3f_c00377{bottom:862.470000px;}
.y3c_c00377{bottom:862.905000px;}
.y3a_c00377{bottom:879.405000px;}
.y3b_c00377{bottom:880.245000px;}
.y37_c00377{bottom:881.325000px;}
.y38_c00377{bottom:882.405000px;}
.y39_c00377{bottom:883.905000px;}
.y36_c00377{bottom:899.325000px;}
.y33_c00377{bottom:899.745000px;}
.y35_c00377{bottom:900.825000px;}
.y32_c00377{bottom:901.905000px;}
.y34_c00377{bottom:902.130000px;}
.y2c_c00377{bottom:919.245000px;}
.y31_c00377{bottom:920.325000px;}
.y2f_c00377{bottom:920.745000px;}
.y2d_c00377{bottom:921.405000px;}
.y30_c00377{bottom:921.630000px;}
.y2e_c00377{bottom:922.905000px;}
.y28_c00377{bottom:940.245000px;}
.y2b_c00377{bottom:941.130000px;}
.y2a_c00377{bottom:941.325000px;}
.y29_c00377{bottom:941.970000px;}
.y27_c00377{bottom:942.405000px;}
.y21_c00377{bottom:958.470000px;}
.y24_c00377{bottom:959.325000px;}
.y22_c00377{bottom:959.745000px;}
.y26_c00377{bottom:960.630000px;}
.y25_c00377{bottom:961.470000px;}
.y20_c00377{bottom:961.905000px;}
.y23_c00377{bottom:962.970000px;}
.y1b_c00377{bottom:979.245000px;}
.y1d_c00377{bottom:980.130000px;}
.y1f_c00377{bottom:980.970000px;}
.y1e_c00377{bottom:981.405000px;}
.y1c_c00377{bottom:982.470000px;}
.y17_c00377{bottom:997.905000px;}
.y19_c00377{bottom:998.745000px;}
.y1a_c00377{bottom:999.630000px;}
.y18_c00377{bottom:999.825000px;}
.y15_c00377{bottom:1000.470000px;}
.y14_c00377{bottom:1000.905000px;}
.y16_c00377{bottom:1001.130000px;}
.y13_c00377{bottom:1001.970000px;}
.y11_c00377{bottom:1017.405000px;}
.ye_c00377{bottom:1018.245000px;}
.y12_c00377{bottom:1019.325000px;}
.yf_c00377{bottom:1020.405000px;}
.y10_c00377{bottom:1020.630000px;}
.yc_c00377{bottom:1037.745000px;}
.y8_c00377{bottom:1038.630000px;}
.yb_c00377{bottom:1039.470000px;}
.y9_c00377{bottom:1039.905000px;}
.ya_c00377{bottom:1040.130000px;}
.yd_c00377{bottom:1040.970000px;}
.y7_c00377{bottom:1055.970000px;}
.y6_c00377{bottom:1056.825000px;}
.y3_c00377{bottom:1057.245000px;}
.y4_c00377{bottom:1058.970000px;}
.y5_c00377{bottom:1059.405000px;}
.y2_c00377{bottom:1097.550000px;}
.y1_c00377{bottom:1097.745000px;}
.h9_c00377{height:4.206533px;}
.h6_c00377{height:23.025234px;}
.h2_c00377{height:25.091602px;}
.h3_c00377{height:31.364502px;}
.h4_c00377{height:35.571035px;}
.h5_c00377{height:39.777568px;}
.h1_c00377{height:43.910303px;}
.h7_c00377{height:47.571035px;}
.h8_c00377{height:48.116836px;}
.h0_c00377{height:1335.000000px;}
.w0_c00377{width:880.500000px;}
.x0_c00377{left:0.000000px;}
.xe7_c00377{left:150.000000px;}
.xa1_c00377{left:151.080000px;}
.x3_c00377{left:153.000000px;}
.x1_c00377{left:154.500000px;}
.xe3_c00377{left:166.500000px;}
.x10_c00377{left:168.420000px;}
.x87_c00377{left:169.920000px;}
.x7b_c00377{left:172.500000px;}
.xea_c00377{left:175.920000px;}
.xf5_c00377{left:177.420000px;}
.x29_c00377{left:181.920000px;}
.x5d_c00377{left:186.420000px;}
.x8f_c00377{left:191.580000px;}
.x70_c00377{left:193.920000px;}
.xf0_c00377{left:195.420000px;}
.x7f_c00377{left:198.420000px;}
.x4_c00377{left:203.355000px;}
.x4c_c00377{left:205.500000px;}
.x1c_c00377{left:206.580000px;}
.x54_c00377{left:208.920000px;}
.xbc_c00377{left:210.000000px;}
.x9c_c00377{left:211.920000px;}
.xdc_c00377{left:213.420000px;}
.x41_c00377{left:214.920000px;}
.xa2_c00377{left:216.000000px;}
.xa9_c00377{left:217.080000px;}
.x2a_c00377{left:218.580000px;}
.x67_c00377{left:222.000000px;}
.xb3_c00377{left:223.920000px;}
.x11_c00377{left:226.500000px;}
.xe4_c00377{left:228.000000px;}
.xc7_c00377{left:231.420000px;}
.x88_c00377{left:234.000000px;}
.xf1_c00377{left:237.000000px;}
.x2b_c00377{left:238.500000px;}
.x35_c00377{left:240.000000px;}
.xed_c00377{left:241.080000px;}
.xff_c00377{left:246.000000px;}
.xaa_c00377{left:247.500000px;}
.x71_c00377{left:253.080000px;}
.xf7_c00377{left:256.920000px;}
.x107_c00377{left:258.000000px;}
.x36_c00377{left:259.920000px;}
.xb4_c00377{left:261.420000px;}
.x68_c00377{left:262.500000px;}
.x5_c00377{left:264.000000px;}
.x55_c00377{left:267.420000px;}
.x1d_c00377{left:269.580000px;}
.x5e_c00377{left:271.500000px;}
.xc8_c00377{left:274.500000px;}
.xd1_c00377{left:276.000000px;}
.xf6_c00377{left:277.920000px;}
.x2c_c00377{left:279.000000px;}
.x12_c00377{left:280.500000px;}
.x6_c00377{left:282.000000px;}
.x69_c00377{left:283.920000px;}
.x37_c00377{left:285.000000px;}
.x89_c00377{left:286.080000px;}
.xb5_c00377{left:288.000000px;}
.xab_c00377{left:291.000000px;}
.xc0_c00377{left:294.000000px;}
.x102_c00377{left:295.500000px;}
.x72_c00377{left:297.000000px;}
.x13_c00377{left:300.420000px;}
.xe5_c00377{left:301.500000px;}
.x1e_c00377{left:303.000000px;}
.x80_c00377{left:304.275000px;}
.x38_c00377{left:306.420000px;}
.xd5_c00377{left:309.420000px;}
.x42_c00377{left:311.580000px;}
.x103_c00377{left:313.920000px;}
.x1f_c00377{left:315.420000px;}
.xc9_c00377{left:316.500000px;}
.xdd_c00377{left:317.580000px;}
.x56_c00377{left:319.500000px;}
.xf2_c00377{left:322.500000px;}
.x90_c00377{left:325.275000px;}
.xa3_c00377{left:327.000000px;}
.x14_c00377{left:328.920000px;}
.x43_c00377{left:330.000000px;}
.xb6_c00377{left:331.080000px;}
.xd2_c00377{left:332.580000px;}
.x8a_c00377{left:334.920000px;}
.xd6_c00377{left:336.000000px;}
.xac_c00377{left:337.080000px;}
.x7c_c00377{left:338.580000px;}
.x7_c00377{left:340.920000px;}
.x104_c00377{left:342.000000px;}
.x39_c00377{left:343.920000px;}
.x97_c00377{left:345.420000px;}
.x4d_c00377{left:348.000000px;}
.x9d_c00377{left:352.500000px;}
.x100_c00377{left:357.000000px;}
.x7d_c00377{left:358.500000px;}
.x57_c00377{left:359.580000px;}
.xb7_c00377{left:361.920000px;}
.xca_c00377{left:363.000000px;}
.x91_c00377{left:364.500000px;}
.x8_c00377{left:366.000000px;}
.x4e_c00377{left:367.920000px;}
.x9e_c00377{left:372.000000px;}
.xf8_c00377{left:373.500000px;}
.x2d_c00377{left:375.000000px;}
.xbd_c00377{left:378.000000px;}
.x5f_c00377{left:379.920000px;}
.x20_c00377{left:382.500000px;}
.xcb_c00377{left:384.000000px;}
.xde_c00377{left:385.500000px;}
.x9b_c00377{left:389.580000px;}
.x15_c00377{left:391.080000px;}
.x2_c00377{left:393.000000px;}
.x9_c00377{left:396.000000px;}
.x81_c00377{left:397.500000px;}
.x92_c00377{left:399.000000px;}
.x4f_c00377{left:401.580000px;}
.x60_c00377{left:404.580000px;}
.xb8_c00377{left:406.500000px;}
.xfd_c00377{left:409.080000px;}
.x6a_c00377{left:411.420000px;}
.xb0_c00377{left:414.420000px;}
.x73_c00377{left:416.580000px;}
.xa4_c00377{left:418.500000px;}
.x50_c00377{left:420.000000px;}
.x3a_c00377{left:421.920000px;}
.x21_c00377{left:424.080000px;}
.x44_c00377{left:426.420000px;}
.xcc_c00377{left:427.500000px;}
.x9f_c00377{left:428.775000px;}
.xd7_c00377{left:430.080000px;}
.x7e_c00377{left:435.420000px;}
.x61_c00377{left:436.500000px;}
.xbe_c00377{left:438.000000px;}
.x6b_c00377{left:439.500000px;}
.x8b_c00377{left:441.000000px;}
.x22_c00377{left:442.920000px;}
.xa_c00377{left:445.500000px;}
.xdf_c00377{left:447.420000px;}
.x105_c00377{left:448.920000px;}
.x98_c00377{left:450.000000px;}
.x74_c00377{left:451.500000px;}
.xf9_c00377{left:454.080000px;}
.xc2_c00377{left:456.000000px;}
.xe8_c00377{left:457.500000px;}
.x2e_c00377{left:459.420000px;}
.x8c_c00377{left:461.580000px;}
.xb_c00377{left:463.080000px;}
.x75_c00377{left:468.000000px;}
.x23_c00377{left:469.080000px;}
.xfe_c00377{left:470.580000px;}
.x58_c00377{left:472.080000px;}
.x82_c00377{left:475.920000px;}
.xf3_c00377{left:478.500000px;}
.x101_c00377{left:482.580000px;}
.x62_c00377{left:485.580000px;}
.xee_c00377{left:487.080000px;}
.xe0_c00377{left:489.000000px;}
.x16_c00377{left:490.920000px;}
.x59_c00377{left:492.000000px;}
.x6c_c00377{left:493.500000px;}
.xd8_c00377{left:495.000000px;}
.x2f_c00377{left:496.920000px;}
.xcd_c00377{left:499.500000px;}
.xb9_c00377{left:501.000000px;}
.xfa_c00377{left:502.500000px;}
.x45_c00377{left:503.580000px;}
.xb1_c00377{left:508.080000px;}
.x24_c00377{left:510.420000px;}
.x3b_c00377{left:511.500000px;}
.xd9_c00377{left:514.920000px;}
.x93_c00377{left:517.080000px;}
.x76_c00377{left:518.580000px;}
.x8d_c00377{left:523.275000px;}
.x5a_c00377{left:526.920000px;}
.xc_c00377{left:529.500000px;}
.xc3_c00377{left:531.000000px;}
.x30_c00377{left:533.580000px;}
.xf4_c00377{left:535.500000px;}
.xe1_c00377{left:537.420000px;}
.x3c_c00377{left:538.500000px;}
.x94_c00377{left:540.420000px;}
.x6d_c00377{left:541.500000px;}
.x17_c00377{left:544.920000px;}
.x46_c00377{left:550.500000px;}
.x83_c00377{left:552.000000px;}
.xba_c00377{left:553.500000px;}
.x106_c00377{left:555.000000px;}
.xa0_c00377{left:556.080000px;}
.xa5_c00377{left:558.420000px;}
.xd_c00377{left:559.920000px;}
.xef_c00377{left:561.000000px;}
.xe6_c00377{left:562.920000px;}
.x84_c00377{left:564.000000px;}
.x6e_c00377{left:565.500000px;}
.xce_c00377{left:566.580000px;}
.xc4_c00377{left:568.500000px;}
.x47_c00377{left:570.000000px;}
.x63_c00377{left:573.000000px;}
.x95_c00377{left:574.500000px;}
.x25_c00377{left:576.420000px;}
.xad_c00377{left:579.000000px;}
.x5b_c00377{left:580.920000px;}
.xe2_c00377{left:582.000000px;}
.x8e_c00377{left:586.080000px;}
.xa6_c00377{left:588.420000px;}
.x108_c00377{left:590.580000px;}
.x64_c00377{left:591.645000px;}
.xda_c00377{left:593.580000px;}
.x18_c00377{left:598.500000px;}
.xd3_c00377{left:600.000000px;}
.x77_c00377{left:601.500000px;}
.x85_c00377{left:603.000000px;}
.x26_c00377{left:604.500000px;}
.xeb_c00377{left:605.580000px;}
.x3d_c00377{left:607.500000px;}
.xe_c00377{left:613.920000px;}
.x31_c00377{left:616.080000px;}
.x6f_c00377{left:618.420000px;}
.xc5_c00377{left:620.580000px;}
.x48_c00377{left:627.420000px;}
.x99_c00377{left:628.500000px;}
.x5c_c00377{left:629.580000px;}
.x3e_c00377{left:631.500000px;}
.xbb_c00377{left:633.000000px;}
.xec_c00377{left:636.000000px;}
.x78_c00377{left:637.500000px;}
.xcf_c00377{left:638.580000px;}
.xae_c00377{left:640.080000px;}
.xc6_c00377{left:641.580000px;}
.x19_c00377{left:646.080000px;}
.x32_c00377{left:648.420000px;}
.x65_c00377{left:650.580000px;}
.x3f_c00377{left:652.920000px;}
.xfb_c00377{left:654.420000px;}
.xb2_c00377{left:655.920000px;}
.x27_c00377{left:657.855000px;}
.x51_c00377{left:660.000000px;}
.xdb_c00377{left:661.500000px;}
.xa7_c00377{left:663.000000px;}
.x1a_c00377{left:664.920000px;}
.xf_c00377{left:666.000000px;}
.xd4_c00377{left:667.500000px;}
.x49_c00377{left:669.000000px;}
.x86_c00377{left:675.000000px;}
.xaf_c00377{left:678.000000px;}
.xc1_c00377{left:679.500000px;}
.x40_c00377{left:681.000000px;}
.x109_c00377{left:682.500000px;}
.x33_c00377{left:684.000000px;}
.x4a_c00377{left:688.500000px;}
.x52_c00377{left:689.580000px;}
.x79_c00377{left:691.080000px;}
.x96_c00377{left:694.500000px;}
.xe9_c00377{left:695.775000px;}
.x66_c00377{left:697.500000px;}
.xfc_c00377{left:699.000000px;}
.x4b_c00377{left:702.420000px;}
.x1b_c00377{left:706.500000px;}
.x9a_c00377{left:708.420000px;}
.x53_c00377{left:709.920000px;}
.x34_c00377{left:711.000000px;}
.x7a_c00377{left:712.080000px;}
.x28_c00377{left:714.000000px;}
.xa8_c00377{left:716.580000px;}
.xd0_c00377{left:719.580000px;}
.xbf_c00377{left:723.000000px;}
@media print{
.v0_c00377{vertical-align:0.000000pt;}
.v1_c00377{vertical-align:10.666667pt;}
.ls0_c00377{letter-spacing:0.000000pt;}
.ws0_c00377{word-spacing:-15.012693pt;}
.ws1_c00377{word-spacing:-6.620751pt;}
.ws2_c00377{word-spacing:-5.881353pt;}
.ws3_c00377{word-spacing:0.000000pt;}
._0_c00377{width:6.481813pt;}
.fs7_c00377{font-size:3.040000pt;}
.fs5_c00377{font-size:16.640000pt;}
.fs1_c00377{font-size:18.133333pt;}
.fs2_c00377{font-size:22.666667pt;}
.fs3_c00377{font-size:25.706667pt;}
.fs4_c00377{font-size:28.746667pt;}
.fs0_c00377{font-size:31.733333pt;}
.fs6_c00377{font-size:34.773333pt;}
.y0_c00377{bottom:0.000000pt;}
.ye4_c00377{bottom:220.360000pt;}
.ye0_c00377{bottom:222.440000pt;}
.ye1_c00377{bottom:223.226667pt;}
.ye3_c00377{bottom:223.400000pt;}
.ye2_c00377{bottom:224.360000pt;}
.ydf_c00377{bottom:238.826667pt;}
.ydd_c00377{bottom:239.773333pt;}
.yde_c00377{bottom:241.693333pt;}
.yd8_c00377{bottom:257.106667pt;}
.yd9_c00377{bottom:258.640000pt;}
.yda_c00377{bottom:259.026667pt;}
.ydc_c00377{bottom:259.226667pt;}
.ydb_c00377{bottom:260.360000pt;}
.yd4_c00377{bottom:274.440000pt;}
.yd7_c00377{bottom:274.826667pt;}
.yd5_c00377{bottom:275.773333pt;}
.yd6_c00377{bottom:277.693333pt;}
.ycd_c00377{bottom:291.773333pt;}
.yd1_c00377{bottom:291.973333pt;}
.yd3_c00377{bottom:293.106667pt;}
.ycf_c00377{bottom:293.693333pt;}
.yce_c00377{bottom:293.893333pt;}
.yd2_c00377{bottom:294.640000pt;}
.yd0_c00377{bottom:295.026667pt;}
.yc7_c00377{bottom:308.360000pt;}
.yc9_c00377{bottom:309.493333pt;}
.yca_c00377{bottom:310.440000pt;}
.yc6_c00377{bottom:311.026667pt;}
.ycc_c00377{bottom:311.226667pt;}
.ycb_c00377{bottom:311.973333pt;}
.yc8_c00377{bottom:312.360000pt;}
.yc3_c00377{bottom:327.773333pt;}
.yc4_c00377{bottom:329.306667pt;}
.yc2_c00377{bottom:329.693333pt;}
.yc5_c00377{bottom:329.893333pt;}
.ybe_c00377{bottom:344.360000pt;}
.yc0_c00377{bottom:345.106667pt;}
.ybd_c00377{bottom:346.066667pt;}
.ybf_c00377{bottom:347.026667pt;}
.yc1_c00377{bottom:347.226667pt;}
.yb9_c00377{bottom:361.493333pt;}
.ybc_c00377{bottom:362.440000pt;}
.yba_c00377{bottom:363.400000pt;}
.ybb_c00377{bottom:363.973333pt;}
.yb8_c00377{bottom:364.360000pt;}
.yb7_c00377{bottom:379.026667pt;}
.yb5_c00377{bottom:379.773333pt;}
.yb4_c00377{bottom:381.693333pt;}
.yb6_c00377{bottom:381.893333pt;}
.yb2_c00377{bottom:397.106667pt;}
.yb1_c00377{bottom:397.493333pt;}
.yaf_c00377{bottom:398.440000pt;}
.yb0_c00377{bottom:399.026667pt;}
.yb3_c00377{bottom:399.226667pt;}
.yab_c00377{bottom:415.773333pt;}
.yac_c00377{bottom:416.560000pt;}
.yae_c00377{bottom:417.693333pt;}
.yad_c00377{bottom:417.706667pt;}
.yaa_c00377{bottom:431.400000pt;}
.ya9_c00377{bottom:434.066667pt;}
.ya8_c00377{bottom:449.693333pt;}
.ya6_c00377{bottom:450.440000pt;}
.ya3_c00377{bottom:451.226667pt;}
.ya2_c00377{bottom:451.400000pt;}
.ya7_c00377{bottom:451.973333pt;}
.ya4_c00377{bottom:452.360000pt;}
.ya5_c00377{bottom:452.560000pt;}
.ya0_c00377{bottom:467.400000pt;}
.y9c_c00377{bottom:467.773333pt;}
.ya1_c00377{bottom:468.733333pt;}
.y9e_c00377{bottom:469.106667pt;}
.y9d_c00377{bottom:469.693333pt;}
.y9f_c00377{bottom:469.893333pt;}
.y98_c00377{bottom:485.106667pt;}
.y9a_c00377{bottom:485.493333pt;}
.y96_c00377{bottom:486.440000pt;}
.y99_c00377{bottom:487.026667pt;}
.y9b_c00377{bottom:487.226667pt;}
.y97_c00377{bottom:487.400000pt;}
.y95_c00377{bottom:488.360000pt;}
.y92_c00377{bottom:502.640000pt;}
.y93_c00377{bottom:503.400000pt;}
.y8f_c00377{bottom:504.360000pt;}
.y91_c00377{bottom:504.560000pt;}
.y90_c00377{bottom:505.306667pt;}
.y94_c00377{bottom:505.693333pt;}
.y89_c00377{bottom:519.026667pt;}
.y87_c00377{bottom:519.773333pt;}
.y8d_c00377{bottom:520.733333pt;}
.y8a_c00377{bottom:521.106667pt;}
.y8e_c00377{bottom:521.693333pt;}
.y8c_c00377{bottom:521.893333pt;}
.y8b_c00377{bottom:522.640000pt;}
.y88_c00377{bottom:523.026667pt;}
.y81_c00377{bottom:536.360000pt;}
.y86_c00377{bottom:537.493333pt;}
.y85_c00377{bottom:538.066667pt;}
.y83_c00377{bottom:538.440000pt;}
.y84_c00377{bottom:539.226667pt;}
.y82_c00377{bottom:540.360000pt;}
.y7c_c00377{bottom:553.693333pt;}
.y79_c00377{bottom:554.440000pt;}
.y7a_c00377{bottom:555.400000pt;}
.y7d_c00377{bottom:555.773333pt;}
.y80_c00377{bottom:556.360000pt;}
.y7e_c00377{bottom:556.560000pt;}
.y7f_c00377{bottom:557.306667pt;}
.y7b_c00377{bottom:557.693333pt;}
.y78_c00377{bottom:572.733333pt;}
.y74_c00377{bottom:573.106667pt;}
.y76_c00377{bottom:573.893333pt;}
.y77_c00377{bottom:574.640000pt;}
.y75_c00377{bottom:575.026667pt;}
.y73_c00377{bottom:589.493333pt;}
.y71_c00377{bottom:590.440000pt;}
.y6f_c00377{bottom:591.226667pt;}
.y70_c00377{bottom:592.360000pt;}
.y72_c00377{bottom:592.560000pt;}
.y6e_c00377{bottom:607.026667pt;}
.y6b_c00377{bottom:607.773333pt;}
.y6c_c00377{bottom:609.693333pt;}
.y6d_c00377{bottom:610.640000pt;}
.y69_c00377{bottom:624.360000pt;}
.y6a_c00377{bottom:624.733333pt;}
.y68_c00377{bottom:625.106667pt;}
.y67_c00377{bottom:626.640000pt;}
.y66_c00377{bottom:627.026667pt;}
.y63_c00377{bottom:641.693333pt;}
.y64_c00377{bottom:642.440000pt;}
.y65_c00377{bottom:643.400000pt;}
.y61_c00377{bottom:644.360000pt;}
.y62_c00377{bottom:645.306667pt;}
.y5f_c00377{bottom:659.773333pt;}
.y60_c00377{bottom:661.106667pt;}
.y5e_c00377{bottom:661.693333pt;}
.y5d_c00377{bottom:676.360000pt;}
.y57_c00377{bottom:677.106667pt;}
.y5a_c00377{bottom:678.440000pt;}
.y5c_c00377{bottom:679.026667pt;}
.y59_c00377{bottom:679.400000pt;}
.y5b_c00377{bottom:679.973333pt;}
.y58_c00377{bottom:680.360000pt;}
.y53_c00377{bottom:695.773333pt;}
.y56_c00377{bottom:696.560000pt;}
.y55_c00377{bottom:697.306667pt;}
.y52_c00377{bottom:697.693333pt;}
.y54_c00377{bottom:698.640000pt;}
.y51_c00377{bottom:711.026667pt;}
.y4e_c00377{bottom:711.773333pt;}
.y4f_c00377{bottom:713.106667pt;}
.y4d_c00377{bottom:713.693333pt;}
.y50_c00377{bottom:715.026667pt;}
.y4a_c00377{bottom:729.493333pt;}
.y47_c00377{bottom:730.440000pt;}
.y4c_c00377{bottom:731.226667pt;}
.y48_c00377{bottom:731.400000pt;}
.y4b_c00377{bottom:732.360000pt;}
.y49_c00377{bottom:732.560000pt;}
.y45_c00377{bottom:747.773333pt;}
.y46_c00377{bottom:748.733333pt;}
.y43_c00377{bottom:749.693333pt;}
.y44_c00377{bottom:750.640000pt;}
.y42_c00377{bottom:764.160000pt;}
.y40_c00377{bottom:764.360000pt;}
.y3e_c00377{bottom:764.733333pt;}
.y3d_c00377{bottom:765.106667pt;}
.y41_c00377{bottom:765.893333pt;}
.y3f_c00377{bottom:766.640000pt;}
.y3c_c00377{bottom:767.026667pt;}
.y3a_c00377{bottom:781.693333pt;}
.y3b_c00377{bottom:782.440000pt;}
.y37_c00377{bottom:783.400000pt;}
.y38_c00377{bottom:784.360000pt;}
.y39_c00377{bottom:785.693333pt;}
.y36_c00377{bottom:799.400000pt;}
.y33_c00377{bottom:799.773333pt;}
.y35_c00377{bottom:800.733333pt;}
.y32_c00377{bottom:801.693333pt;}
.y34_c00377{bottom:801.893333pt;}
.y2c_c00377{bottom:817.106667pt;}
.y31_c00377{bottom:818.066667pt;}
.y2f_c00377{bottom:818.440000pt;}
.y2d_c00377{bottom:819.026667pt;}
.y30_c00377{bottom:819.226667pt;}
.y2e_c00377{bottom:820.360000pt;}
.y28_c00377{bottom:835.773333pt;}
.y2b_c00377{bottom:836.560000pt;}
.y2a_c00377{bottom:836.733333pt;}
.y29_c00377{bottom:837.306667pt;}
.y27_c00377{bottom:837.693333pt;}
.y21_c00377{bottom:851.973333pt;}
.y24_c00377{bottom:852.733333pt;}
.y22_c00377{bottom:853.106667pt;}
.y26_c00377{bottom:853.893333pt;}
.y25_c00377{bottom:854.640000pt;}
.y20_c00377{bottom:855.026667pt;}
.y23_c00377{bottom:855.973333pt;}
.y1b_c00377{bottom:870.440000pt;}
.y1d_c00377{bottom:871.226667pt;}
.y1f_c00377{bottom:871.973333pt;}
.y1e_c00377{bottom:872.360000pt;}
.y1c_c00377{bottom:873.306667pt;}
.y17_c00377{bottom:887.026667pt;}
.y19_c00377{bottom:887.773333pt;}
.y1a_c00377{bottom:888.560000pt;}
.y18_c00377{bottom:888.733333pt;}
.y15_c00377{bottom:889.306667pt;}
.y14_c00377{bottom:889.693333pt;}
.y16_c00377{bottom:889.893333pt;}
.y13_c00377{bottom:890.640000pt;}
.y11_c00377{bottom:904.360000pt;}
.ye_c00377{bottom:905.106667pt;}
.y12_c00377{bottom:906.066667pt;}
.yf_c00377{bottom:907.026667pt;}
.y10_c00377{bottom:907.226667pt;}
.yc_c00377{bottom:922.440000pt;}
.y8_c00377{bottom:923.226667pt;}
.yb_c00377{bottom:923.973333pt;}
.y9_c00377{bottom:924.360000pt;}
.ya_c00377{bottom:924.560000pt;}
.yd_c00377{bottom:925.306667pt;}
.y7_c00377{bottom:938.640000pt;}
.y6_c00377{bottom:939.400000pt;}
.y3_c00377{bottom:939.773333pt;}
.y4_c00377{bottom:941.306667pt;}
.y5_c00377{bottom:941.693333pt;}
.y2_c00377{bottom:975.600000pt;}
.y1_c00377{bottom:975.773333pt;}
.h9_c00377{height:3.739141pt;}
.h6_c00377{height:20.466875pt;}
.h2_c00377{height:22.303646pt;}
.h3_c00377{height:27.879557pt;}
.h4_c00377{height:31.618698pt;}
.h5_c00377{height:35.357839pt;}
.h1_c00377{height:39.031380pt;}
.h7_c00377{height:42.285365pt;}
.h8_c00377{height:42.770521pt;}
.h0_c00377{height:1186.666667pt;}
.w0_c00377{width:782.666667pt;}
.x0_c00377{left:0.000000pt;}
.xe7_c00377{left:133.333333pt;}
.xa1_c00377{left:134.293333pt;}
.x3_c00377{left:136.000000pt;}
.x1_c00377{left:137.333333pt;}
.xe3_c00377{left:148.000000pt;}
.x10_c00377{left:149.706667pt;}
.x87_c00377{left:151.040000pt;}
.x7b_c00377{left:153.333333pt;}
.xea_c00377{left:156.373333pt;}
.xf5_c00377{left:157.706667pt;}
.x29_c00377{left:161.706667pt;}
.x5d_c00377{left:165.706667pt;}
.x8f_c00377{left:170.293333pt;}
.x70_c00377{left:172.373333pt;}
.xf0_c00377{left:173.706667pt;}
.x7f_c00377{left:176.373333pt;}
.x4_c00377{left:180.760000pt;}
.x4c_c00377{left:182.666667pt;}
.x1c_c00377{left:183.626667pt;}
.x54_c00377{left:185.706667pt;}
.xbc_c00377{left:186.666667pt;}
.x9c_c00377{left:188.373333pt;}
.xdc_c00377{left:189.706667pt;}
.x41_c00377{left:191.040000pt;}
.xa2_c00377{left:192.000000pt;}
.xa9_c00377{left:192.960000pt;}
.x2a_c00377{left:194.293333pt;}
.x67_c00377{left:197.333333pt;}
.xb3_c00377{left:199.040000pt;}
.x11_c00377{left:201.333333pt;}
.xe4_c00377{left:202.666667pt;}
.xc7_c00377{left:205.706667pt;}
.x88_c00377{left:208.000000pt;}
.xf1_c00377{left:210.666667pt;}
.x2b_c00377{left:212.000000pt;}
.x35_c00377{left:213.333333pt;}
.xed_c00377{left:214.293333pt;}
.xff_c00377{left:218.666667pt;}
.xaa_c00377{left:220.000000pt;}
.x71_c00377{left:224.960000pt;}
.xf7_c00377{left:228.373333pt;}
.x107_c00377{left:229.333333pt;}
.x36_c00377{left:231.040000pt;}
.xb4_c00377{left:232.373333pt;}
.x68_c00377{left:233.333333pt;}
.x5_c00377{left:234.666667pt;}
.x55_c00377{left:237.706667pt;}
.x1d_c00377{left:239.626667pt;}
.x5e_c00377{left:241.333333pt;}
.xc8_c00377{left:244.000000pt;}
.xd1_c00377{left:245.333333pt;}
.xf6_c00377{left:247.040000pt;}
.x2c_c00377{left:248.000000pt;}
.x12_c00377{left:249.333333pt;}
.x6_c00377{left:250.666667pt;}
.x69_c00377{left:252.373333pt;}
.x37_c00377{left:253.333333pt;}
.x89_c00377{left:254.293333pt;}
.xb5_c00377{left:256.000000pt;}
.xab_c00377{left:258.666667pt;}
.xc0_c00377{left:261.333333pt;}
.x102_c00377{left:262.666667pt;}
.x72_c00377{left:264.000000pt;}
.x13_c00377{left:267.040000pt;}
.xe5_c00377{left:268.000000pt;}
.x1e_c00377{left:269.333333pt;}
.x80_c00377{left:270.466667pt;}
.x38_c00377{left:272.373333pt;}
.xd5_c00377{left:275.040000pt;}
.x42_c00377{left:276.960000pt;}
.x103_c00377{left:279.040000pt;}
.x1f_c00377{left:280.373333pt;}
.xc9_c00377{left:281.333333pt;}
.xdd_c00377{left:282.293333pt;}
.x56_c00377{left:284.000000pt;}
.xf2_c00377{left:286.666667pt;}
.x90_c00377{left:289.133333pt;}
.xa3_c00377{left:290.666667pt;}
.x14_c00377{left:292.373333pt;}
.x43_c00377{left:293.333333pt;}
.xb6_c00377{left:294.293333pt;}
.xd2_c00377{left:295.626667pt;}
.x8a_c00377{left:297.706667pt;}
.xd6_c00377{left:298.666667pt;}
.xac_c00377{left:299.626667pt;}
.x7c_c00377{left:300.960000pt;}
.x7_c00377{left:303.040000pt;}
.x104_c00377{left:304.000000pt;}
.x39_c00377{left:305.706667pt;}
.x97_c00377{left:307.040000pt;}
.x4d_c00377{left:309.333333pt;}
.x9d_c00377{left:313.333333pt;}
.x100_c00377{left:317.333333pt;}
.x7d_c00377{left:318.666667pt;}
.x57_c00377{left:319.626667pt;}
.xb7_c00377{left:321.706667pt;}
.xca_c00377{left:322.666667pt;}
.x91_c00377{left:324.000000pt;}
.x8_c00377{left:325.333333pt;}
.x4e_c00377{left:327.040000pt;}
.x9e_c00377{left:330.666667pt;}
.xf8_c00377{left:332.000000pt;}
.x2d_c00377{left:333.333333pt;}
.xbd_c00377{left:336.000000pt;}
.x5f_c00377{left:337.706667pt;}
.x20_c00377{left:340.000000pt;}
.xcb_c00377{left:341.333333pt;}
.xde_c00377{left:342.666667pt;}
.x9b_c00377{left:346.293333pt;}
.x15_c00377{left:347.626667pt;}
.x2_c00377{left:349.333333pt;}
.x9_c00377{left:352.000000pt;}
.x81_c00377{left:353.333333pt;}
.x92_c00377{left:354.666667pt;}
.x4f_c00377{left:356.960000pt;}
.x60_c00377{left:359.626667pt;}
.xb8_c00377{left:361.333333pt;}
.xfd_c00377{left:363.626667pt;}
.x6a_c00377{left:365.706667pt;}
.xb0_c00377{left:368.373333pt;}
.x73_c00377{left:370.293333pt;}
.xa4_c00377{left:372.000000pt;}
.x50_c00377{left:373.333333pt;}
.x3a_c00377{left:375.040000pt;}
.x21_c00377{left:376.960000pt;}
.x44_c00377{left:379.040000pt;}
.xcc_c00377{left:380.000000pt;}
.x9f_c00377{left:381.133333pt;}
.xd7_c00377{left:382.293333pt;}
.x7e_c00377{left:387.040000pt;}
.x61_c00377{left:388.000000pt;}
.xbe_c00377{left:389.333333pt;}
.x6b_c00377{left:390.666667pt;}
.x8b_c00377{left:392.000000pt;}
.x22_c00377{left:393.706667pt;}
.xa_c00377{left:396.000000pt;}
.xdf_c00377{left:397.706667pt;}
.x105_c00377{left:399.040000pt;}
.x98_c00377{left:400.000000pt;}
.x74_c00377{left:401.333333pt;}
.xf9_c00377{left:403.626667pt;}
.xc2_c00377{left:405.333333pt;}
.xe8_c00377{left:406.666667pt;}
.x2e_c00377{left:408.373333pt;}
.x8c_c00377{left:410.293333pt;}
.xb_c00377{left:411.626667pt;}
.x75_c00377{left:416.000000pt;}
.x23_c00377{left:416.960000pt;}
.xfe_c00377{left:418.293333pt;}
.x58_c00377{left:419.626667pt;}
.x82_c00377{left:423.040000pt;}
.xf3_c00377{left:425.333333pt;}
.x101_c00377{left:428.960000pt;}
.x62_c00377{left:431.626667pt;}
.xee_c00377{left:432.960000pt;}
.xe0_c00377{left:434.666667pt;}
.x16_c00377{left:436.373333pt;}
.x59_c00377{left:437.333333pt;}
.x6c_c00377{left:438.666667pt;}
.xd8_c00377{left:440.000000pt;}
.x2f_c00377{left:441.706667pt;}
.xcd_c00377{left:444.000000pt;}
.xb9_c00377{left:445.333333pt;}
.xfa_c00377{left:446.666667pt;}
.x45_c00377{left:447.626667pt;}
.xb1_c00377{left:451.626667pt;}
.x24_c00377{left:453.706667pt;}
.x3b_c00377{left:454.666667pt;}
.xd9_c00377{left:457.706667pt;}
.x93_c00377{left:459.626667pt;}
.x76_c00377{left:460.960000pt;}
.x8d_c00377{left:465.133333pt;}
.x5a_c00377{left:468.373333pt;}
.xc_c00377{left:470.666667pt;}
.xc3_c00377{left:472.000000pt;}
.x30_c00377{left:474.293333pt;}
.xf4_c00377{left:476.000000pt;}
.xe1_c00377{left:477.706667pt;}
.x3c_c00377{left:478.666667pt;}
.x94_c00377{left:480.373333pt;}
.x6d_c00377{left:481.333333pt;}
.x17_c00377{left:484.373333pt;}
.x46_c00377{left:489.333333pt;}
.x83_c00377{left:490.666667pt;}
.xba_c00377{left:492.000000pt;}
.x106_c00377{left:493.333333pt;}
.xa0_c00377{left:494.293333pt;}
.xa5_c00377{left:496.373333pt;}
.xd_c00377{left:497.706667pt;}
.xef_c00377{left:498.666667pt;}
.xe6_c00377{left:500.373333pt;}
.x84_c00377{left:501.333333pt;}
.x6e_c00377{left:502.666667pt;}
.xce_c00377{left:503.626667pt;}
.xc4_c00377{left:505.333333pt;}
.x47_c00377{left:506.666667pt;}
.x63_c00377{left:509.333333pt;}
.x95_c00377{left:510.666667pt;}
.x25_c00377{left:512.373333pt;}
.xad_c00377{left:514.666667pt;}
.x5b_c00377{left:516.373333pt;}
.xe2_c00377{left:517.333333pt;}
.x8e_c00377{left:520.960000pt;}
.xa6_c00377{left:523.040000pt;}
.x108_c00377{left:524.960000pt;}
.x64_c00377{left:525.906667pt;}
.xda_c00377{left:527.626667pt;}
.x18_c00377{left:532.000000pt;}
.xd3_c00377{left:533.333333pt;}
.x77_c00377{left:534.666667pt;}
.x85_c00377{left:536.000000pt;}
.x26_c00377{left:537.333333pt;}
.xeb_c00377{left:538.293333pt;}
.x3d_c00377{left:540.000000pt;}
.xe_c00377{left:545.706667pt;}
.x31_c00377{left:547.626667pt;}
.x6f_c00377{left:549.706667pt;}
.xc5_c00377{left:551.626667pt;}
.x48_c00377{left:557.706667pt;}
.x99_c00377{left:558.666667pt;}
.x5c_c00377{left:559.626667pt;}
.x3e_c00377{left:561.333333pt;}
.xbb_c00377{left:562.666667pt;}
.xec_c00377{left:565.333333pt;}
.x78_c00377{left:566.666667pt;}
.xcf_c00377{left:567.626667pt;}
.xae_c00377{left:568.960000pt;}
.xc6_c00377{left:570.293333pt;}
.x19_c00377{left:574.293333pt;}
.x32_c00377{left:576.373333pt;}
.x65_c00377{left:578.293333pt;}
.x3f_c00377{left:580.373333pt;}
.xfb_c00377{left:581.706667pt;}
.xb2_c00377{left:583.040000pt;}
.x27_c00377{left:584.760000pt;}
.x51_c00377{left:586.666667pt;}
.xdb_c00377{left:588.000000pt;}
.xa7_c00377{left:589.333333pt;}
.x1a_c00377{left:591.040000pt;}
.xf_c00377{left:592.000000pt;}
.xd4_c00377{left:593.333333pt;}
.x49_c00377{left:594.666667pt;}
.x86_c00377{left:600.000000pt;}
.xaf_c00377{left:602.666667pt;}
.xc1_c00377{left:604.000000pt;}
.x40_c00377{left:605.333333pt;}
.x109_c00377{left:606.666667pt;}
.x33_c00377{left:608.000000pt;}
.x4a_c00377{left:612.000000pt;}
.x52_c00377{left:612.960000pt;}
.x79_c00377{left:614.293333pt;}
.x96_c00377{left:617.333333pt;}
.xe9_c00377{left:618.466667pt;}
.x66_c00377{left:620.000000pt;}
.xfc_c00377{left:621.333333pt;}
.x4b_c00377{left:624.373333pt;}
.x1b_c00377{left:628.000000pt;}
.x9a_c00377{left:629.706667pt;}
.x53_c00377{left:631.040000pt;}
.x34_c00377{left:632.000000pt;}
.x7a_c00377{left:632.960000pt;}
.x28_c00377{left:634.666667pt;}
.xa8_c00377{left:636.960000pt;}
.xd0_c00377{left:639.626667pt;}
.xbf_c00377{left:642.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_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_68873995b62099b07bfad3be.woff2')format("woff");}.ff1_c00378{font-family:ff1_c00378;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf0_c00378{transform:matrix(0.166494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166494,0.000000,0.000000,0.250000,0,0);}
.md7_c00378{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m2c_c00378{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m66_c00378{transform:matrix(0.344709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344709,0.000000,0.000000,0.250000,0,0);}
.m8f_c00378{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m40_c00378{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);}
.m93_c00378{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.me2_c00378{transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);}
.mae_c00378{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m4d_c00378{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mc2_c00378{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.mce_c00378{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m36_c00378{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.mc3_c00378{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m4a_c00378{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m8b_c00378{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m72_c00378{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m2b_c00378{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m3d_c00378{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.mff_c00378{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m3e_c00378{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m1b_c00378{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m111_c00378{transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);}
.mb5_c00378{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m85_c00378{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m76_c00378{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m33_c00378{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.meb_c00378{transform:matrix(0.395228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395228,0.000000,0.000000,0.250000,0,0);}
.md5_c00378{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m3f_c00378{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m81_c00378{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m3a_c00378{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);}
.m104_c00378{transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);}
.m48_c00378{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m26_c00378{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m8a_c00378{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mb_c00378{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m5c_c00378{transform:matrix(0.403989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403989,0.000000,0.000000,0.250000,0,0);}
.m30_c00378{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m90_c00378{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m24_c00378{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m108_c00378{transform:matrix(0.408627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408627,0.000000,0.000000,0.250000,0,0);}
.m98_c00378{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m54_c00378{transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);}
.m8d_c00378{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m80_c00378{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m105_c00378{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.m7f_c00378{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.ma1_c00378{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.md4_c00378{transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);}
.m9d_c00378{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m39_c00378{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m1d_c00378{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m38_c00378{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.ma4_c00378{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m10b_c00378{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.med_c00378{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m9c_c00378{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.mc1_c00378{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.m60_c00378{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m1a_c00378{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m7c_c00378{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mef_c00378{transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);}
.m5_c00378{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.md8_c00378{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.mcb_c00378{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m8e_c00378{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mf1_c00378{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.m83_c00378{transform:matrix(0.426380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426380,0.000000,0.000000,0.250000,0,0);}
.m28_c00378{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m3c_c00378{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.m9f_c00378{transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);}
.m9e_c00378{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.ma3_c00378{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.mdb_c00378{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.mb4_c00378{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m73_c00378{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m49_c00378{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m61_c00378{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m7e_c00378{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.me_c00378{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mcd_c00378{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mec_c00378{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.mcf_c00378{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m78_c00378{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m75_c00378{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mfd_c00378{transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);}
.m6a_c00378{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m5e_c00378{transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);}
.m55_c00378{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.maf_c00378{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mcc_c00378{transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);}
.m74_c00378{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.ma7_c00378{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m112_c00378{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m109_c00378{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m53_c00378{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.mc6_c00378{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.mad_c00378{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m87_c00378{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m51_c00378{transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);}
.me0_c00378{transform:matrix(0.454706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454706,0.000000,0.000000,0.250000,0,0);}
.m17_c00378{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mfc_c00378{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.md_c00378{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m10c_c00378{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.m4b_c00378{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.m20_c00378{transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);}
.m4c_c00378{transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);}
.m99_c00378{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m10a_c00378{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.mb0_c00378{transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);}
.mf9_c00378{transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);}
.mf5_c00378{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m86_c00378{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.me3_c00378{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.m56_c00378{transform:matrix(0.471176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471176,0.000000,0.000000,0.250000,0,0);}
.mba_c00378{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m5f_c00378{transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);}
.m69_c00378{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m84_c00378{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.mf3_c00378{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.mc8_c00378{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m27_c00378{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.ma0_c00378{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m50_c00378{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m35_c00378{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.me1_c00378{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m5a_c00378{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m11_c00378{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m88_c00378{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mbc_c00378{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m1_c00378{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mbe_c00378{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m1f_c00378{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m59_c00378{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m71_c00378{transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);}
.m9_c00378{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m67_c00378{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m22_c00378{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);}
.m97_c00378{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.md9_c00378{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m43_c00378{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mda_c00378{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m6b_c00378{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m10d_c00378{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.m12_c00378{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m3b_c00378{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m89_c00378{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m19_c00378{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m16_c00378{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.md6_c00378{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);}
.mf_c00378{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.me9_c00378{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m45_c00378{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mb8_c00378{transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);}
.m82_c00378{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m77_c00378{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m57_c00378{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.mdc_c00378{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);}
.m100_c00378{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.mfe_c00378{transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);}
.m9a_c00378{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m44_c00378{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m6f_c00378{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m4_c00378{transform:matrix(0.532468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532468,0.000000,0.000000,0.250000,0,0);}
.m6_c00378{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m13_c00378{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m7b_c00378{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mc5_c00378{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m41_c00378{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m94_c00378{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mbd_c00378{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.ma2_c00378{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.mb3_c00378{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m29_c00378{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m7d_c00378{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m95_c00378{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mf6_c00378{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m42_c00378{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mfa_c00378{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m8c_c00378{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m1e_c00378{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mb1_c00378{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.me6_c00378{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m15_c00378{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mc0_c00378{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m47_c00378{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m64_c00378{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m103_c00378{transform:matrix(0.548824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548824,0.000000,0.000000,0.250000,0,0);}
.mc7_c00378{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.mab_c00378{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mc9_c00378{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);}
.m37_c00378{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m6e_c00378{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.md1_c00378{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m18_c00378{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m2_c00378{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m21_c00378{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mdd_c00378{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m107_c00378{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m34_c00378{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m46_c00378{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m25_c00378{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.ma5_c00378{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m102_c00378{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.mf4_c00378{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.m113_c00378{transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);}
.m91_c00378{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m2e_c00378{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m2f_c00378{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m2d_c00378{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.md2_c00378{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m6d_c00378{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.maa_c00378{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m63_c00378{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m96_c00378{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.mac_c00378{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.mfb_c00378{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);}
.m9b_c00378{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mc4_c00378{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.mde_c00378{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mb6_c00378{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m65_c00378{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m58_c00378{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.ma_c00378{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.me7_c00378{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m14_c00378{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m101_c00378{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);}
.m10_c00378{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mc_c00378{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mca_c00378{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m4e_c00378{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);}
.m70_c00378{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mdf_c00378{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.m0_c00378{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.md0_c00378{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m2a_c00378{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.mf2_c00378{transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);}
.m31_c00378{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m4f_c00378{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);}
.me8_c00378{transform:matrix(0.651471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651471,0.000000,0.000000,0.250000,0,0);}
.mea_c00378{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.mb9_c00378{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.ma8_c00378{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m52_c00378{transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);}
.m68_c00378{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.me5_c00378{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m79_c00378{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mf8_c00378{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.me4_c00378{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m5d_c00378{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mb2_c00378{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m7a_c00378{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m10e_c00378{transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);}
.ma6_c00378{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mbb_c00378{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);}
.m7_c00378{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mf7_c00378{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m6c_c00378{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m1c_c00378{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m23_c00378{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m32_c00378{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.md3_c00378{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.ma9_c00378{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m8_c00378{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m3_c00378{transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);}
.m10f_c00378{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m106_c00378{transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);}
.m110_c00378{transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);}
.mee_c00378{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m5b_c00378{transform:matrix(1.044053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.044053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.044053,0.000000,0.000000,0.250000,0,0);}
.mb7_c00378{transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);}
.mbf_c00378{transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);}
.m92_c00378{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m62_c00378{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00378{vertical-align:0.000000px;}
.ls0_c00378{letter-spacing:0.000000px;}
.sc__c00378{text-shadow:none;}
.sc0_c00378{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00378{-webkit-text-stroke:0px transparent;}
.sc0_c00378{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00378{word-spacing:-6.425697px;}
.ws1_c00378{word-spacing:-2.923710px;}
.ws2_c00378{word-spacing:0.000000px;}
._0_c00378{width:7.053206px;}
.fc0_c00378{color:transparent;}
.fs7_c00378{font-size:3.420000px;}
.fs6_c00378{font-size:13.620000px;}
.fs2_c00378{font-size:18.720000px;}
.fs0_c00378{font-size:20.400000px;}
.fs5_c00378{font-size:25.500000px;}
.fs1_c00378{font-size:28.920000px;}
.fs3_c00378{font-size:32.340000px;}
.fs4_c00378{font-size:35.700000px;}
.fs8_c00378{font-size:39.120000px;}
.y0_c00378{bottom:0.000000px;}
.yd6_c00378{bottom:249.825000px;}
.yd2_c00378{bottom:250.050000px;}
.yd3_c00378{bottom:250.905000px;}
.yd7_c00378{bottom:251.970000px;}
.yd5_c00378{bottom:252.195000px;}
.yd4_c00378{bottom:253.050000px;}
.yd0_c00378{bottom:264.825000px;}
.yce_c00378{bottom:265.050000px;}
.yd1_c00378{bottom:265.905000px;}
.ycf_c00378{bottom:266.970000px;}
.ycb_c00378{bottom:278.970000px;}
.yc9_c00378{bottom:279.825000px;}
.yca_c00378{bottom:280.905000px;}
.ycc_c00378{bottom:281.325000px;}
.yc8_c00378{bottom:281.970000px;}
.ycd_c00378{bottom:283.050000px;}
.yc3_c00378{bottom:294.825000px;}
.yc4_c00378{bottom:295.905000px;}
.yc5_c00378{bottom:296.130000px;}
.yc6_c00378{bottom:296.970000px;}
.yc7_c00378{bottom:297.195000px;}
.ybd_c00378{bottom:308.970000px;}
.ybf_c00378{bottom:309.825000px;}
.yc2_c00378{bottom:310.905000px;}
.yc1_c00378{bottom:311.130000px;}
.ybe_c00378{bottom:311.970000px;}
.yc0_c00378{bottom:313.050000px;}
.ybc_c00378{bottom:325.905000px;}
.yba_c00378{bottom:326.130000px;}
.yb9_c00378{bottom:326.970000px;}
.ybb_c00378{bottom:328.050000px;}
.yb7_c00378{bottom:339.405000px;}
.yb8_c00378{bottom:340.470000px;}
.yb6_c00378{bottom:341.130000px;}
.yb2_c00378{bottom:341.550000px;}
.yb5_c00378{bottom:341.970000px;}
.yb4_c00378{bottom:342.195000px;}
.yb3_c00378{bottom:343.050000px;}
.yb0_c00378{bottom:354.825000px;}
.yb1_c00378{bottom:355.905000px;}
.yaf_c00378{bottom:356.970000px;}
.ya9_c00378{bottom:368.325000px;}
.yab_c00378{bottom:369.405000px;}
.yad_c00378{bottom:369.630000px;}
.ya8_c00378{bottom:370.050000px;}
.yac_c00378{bottom:370.470000px;}
.yae_c00378{bottom:370.695000px;}
.yaa_c00378{bottom:371.550000px;}
.ya6_c00378{bottom:383.970000px;}
.ya5_c00378{bottom:384.405000px;}
.ya7_c00378{bottom:385.695000px;}
.ya4_c00378{bottom:386.550000px;}
.y9e_c00378{bottom:398.550000px;}
.y9f_c00378{bottom:399.405000px;}
.ya0_c00378{bottom:399.630000px;}
.ya2_c00378{bottom:400.470000px;}
.ya1_c00378{bottom:401.550000px;}
.ya3_c00378{bottom:401.970000px;}
.y9b_c00378{bottom:413.325000px;}
.y98_c00378{bottom:413.550000px;}
.y9a_c00378{bottom:414.405000px;}
.y9c_c00378{bottom:414.630000px;}
.y99_c00378{bottom:415.470000px;}
.y9d_c00378{bottom:416.550000px;}
.y96_c00378{bottom:429.405000px;}
.y95_c00378{bottom:430.245000px;}
.y97_c00378{bottom:430.470000px;}
.y92_c00378{bottom:441.825000px;}
.y93_c00378{bottom:442.050000px;}
.y8b_c00378{bottom:442.470000px;}
.y91_c00378{bottom:442.905000px;}
.y8d_c00378{bottom:443.325000px;}
.y94_c00378{bottom:443.970000px;}
.y8e_c00378{bottom:444.405000px;}
.y90_c00378{bottom:444.630000px;}
.y8c_c00378{bottom:445.470000px;}
.y8f_c00378{bottom:446.550000px;}
.y89_c00378{bottom:457.905000px;}
.y86_c00378{bottom:458.325000px;}
.y8a_c00378{bottom:458.970000px;}
.y85_c00378{bottom:459.405000px;}
.y83_c00378{bottom:459.630000px;}
.y88_c00378{bottom:460.050000px;}
.y84_c00378{bottom:460.470000px;}
.y87_c00378{bottom:461.550000px;}
.y82_c00378{bottom:473.325000px;}
.y80_c00378{bottom:485.970000px;}
.y81_c00378{bottom:486.825000px;}
.y7d_c00378{bottom:487.905000px;}
.y7f_c00378{bottom:488.130000px;}
.y7b_c00378{bottom:488.970000px;}
.y7e_c00378{bottom:489.405000px;}
.y7a_c00378{bottom:489.630000px;}
.y7c_c00378{bottom:490.050000px;}
.y79_c00378{bottom:515.550000px;}
.y76_c00378{bottom:515.745000px;}
.y78_c00378{bottom:517.470000px;}
.y77_c00378{bottom:517.905000px;}
.y74_c00378{bottom:533.325000px;}
.y70_c00378{bottom:535.245000px;}
.y73_c00378{bottom:535.470000px;}
.y75_c00378{bottom:535.905000px;}
.y72_c00378{bottom:536.130000px;}
.y71_c00378{bottom:537.405000px;}
.y6f_c00378{bottom:554.325000px;}
.y6d_c00378{bottom:554.745000px;}
.y6e_c00378{bottom:555.405000px;}
.y6c_c00378{bottom:555.630000px;}
.y6a_c00378{bottom:555.825000px;}
.y6b_c00378{bottom:556.470000px;}
.y69_c00378{bottom:556.905000px;}
.y67_c00378{bottom:574.245000px;}
.y68_c00378{bottom:574.905000px;}
.y65_c00378{bottom:576.405000px;}
.y66_c00378{bottom:576.420000px;}
.y62_c00378{bottom:593.745000px;}
.y63_c00378{bottom:594.825000px;}
.y64_c00378{bottom:595.905000px;}
.y60_c00378{bottom:613.245000px;}
.y61_c00378{bottom:614.325000px;}
.y5f_c00378{bottom:614.970000px;}
.y5e_c00378{bottom:615.405000px;}
.y5c_c00378{bottom:632.745000px;}
.y5d_c00378{bottom:634.470000px;}
.y5a_c00378{bottom:634.905000px;}
.y5b_c00378{bottom:636.420000px;}
.y59_c00378{bottom:653.745000px;}
.y58_c00378{bottom:671.745000px;}
.y57_c00378{bottom:673.245000px;}
.y55_c00378{bottom:674.130000px;}
.y54_c00378{bottom:675.405000px;}
.y56_c00378{bottom:675.420000px;}
.y53_c00378{bottom:691.245000px;}
.y51_c00378{bottom:692.745000px;}
.y52_c00378{bottom:694.905000px;}
.y4e_c00378{bottom:711.405000px;}
.y4d_c00378{bottom:712.245000px;}
.y50_c00378{bottom:712.905000px;}
.y4c_c00378{bottom:713.325000px;}
.y4f_c00378{bottom:714.405000px;}
.y4b_c00378{bottom:730.680000px;}
.y47_c00378{bottom:731.745000px;}
.y49_c00378{bottom:732.825000px;}
.y4a_c00378{bottom:733.905000px;}
.y48_c00378{bottom:733.920000px;}
.y46_c00378{bottom:751.245000px;}
.y45_c00378{bottom:753.405000px;}
.y41_c00378{bottom:770.745000px;}
.y43_c00378{bottom:771.825000px;}
.y42_c00378{bottom:772.905000px;}
.y44_c00378{bottom:773.970000px;}
.y40_c00378{bottom:788.745000px;}
.y3d_c00378{bottom:789.405000px;}
.y3f_c00378{bottom:790.245000px;}
.y3e_c00378{bottom:791.325000px;}
.y3b_c00378{bottom:791.745000px;}
.y38_c00378{bottom:792.405000px;}
.y39_c00378{bottom:792.630000px;}
.y3c_c00378{bottom:793.470000px;}
.y3a_c00378{bottom:793.905000px;}
.y37_c00378{bottom:809.745000px;}
.y34_c00378{bottom:810.180000px;}
.y31_c00378{bottom:811.245000px;}
.y36_c00378{bottom:812.130000px;}
.y35_c00378{bottom:812.325000px;}
.y33_c00378{bottom:813.405000px;}
.y32_c00378{bottom:813.420000px;}
.y2d_c00378{bottom:836.970000px;}
.y30_c00378{bottom:837.825000px;}
.y2e_c00378{bottom:838.905000px;}
.y2c_c00378{bottom:839.970000px;}
.y2f_c00378{bottom:840.195000px;}
.y28_c00378{bottom:860.970000px;}
.y2b_c00378{bottom:861.825000px;}
.y2a_c00378{bottom:862.050000px;}
.y29_c00378{bottom:862.905000px;}
.y27_c00378{bottom:865.050000px;}
.y26_c00378{bottom:884.745000px;}
.y24_c00378{bottom:923.745000px;}
.y25_c00378{bottom:924.630000px;}
.y23_c00378{bottom:925.905000px;}
.y1e_c00378{bottom:942.405000px;}
.y20_c00378{bottom:943.245000px;}
.y22_c00378{bottom:943.905000px;}
.y1f_c00378{bottom:944.325000px;}
.y21_c00378{bottom:945.405000px;}
.y1d_c00378{bottom:961.905000px;}
.y1a_c00378{bottom:962.745000px;}
.y19_c00378{bottom:964.470000px;}
.y1c_c00378{bottom:964.905000px;}
.y1b_c00378{bottom:965.130000px;}
.y16_c00378{bottom:982.245000px;}
.y18_c00378{bottom:983.970000px;}
.y15_c00378{bottom:984.405000px;}
.y17_c00378{bottom:985.470000px;}
.y12_c00378{bottom:1001.745000px;}
.y14_c00378{bottom:1003.470000px;}
.y11_c00378{bottom:1003.905000px;}
.y13_c00378{bottom:1004.130000px;}
.ye_c00378{bottom:1021.245000px;}
.y10_c00378{bottom:1022.745000px;}
.yd_c00378{bottom:1023.405000px;}
.yf_c00378{bottom:1023.630000px;}
.y9_c00378{bottom:1040.745000px;}
.y7_c00378{bottom:1041.825000px;}
.y8_c00378{bottom:1042.905000px;}
.yc_c00378{bottom:1043.130000px;}
.yb_c00378{bottom:1043.970000px;}
.ya_c00378{bottom:1044.405000px;}
.y6_c00378{bottom:1060.245000px;}
.y5_c00378{bottom:1061.325000px;}
.y3_c00378{bottom:1062.405000px;}
.y4_c00378{bottom:1062.630000px;}
.y2_c00378{bottom:1098.405000px;}
.y1_c00378{bottom:1100.550000px;}
.h8_c00378{height:4.206533px;}
.h7_c00378{height:16.752334px;}
.h3_c00378{height:23.025234px;}
.h1_c00378{height:25.091602px;}
.h6_c00378{height:31.364502px;}
.h2_c00378{height:35.571035px;}
.h4_c00378{height:39.777568px;}
.h5_c00378{height:43.910303px;}
.h9_c00378{height:48.116836px;}
.h0_c00378{height:1335.000000px;}
.w0_c00378{width:880.500000px;}
.x0_c00378{left:0.000000px;}
.x3_c00378{left:151.080000px;}
.xc5_c00378{left:162.000000px;}
.xea_c00378{left:163.500000px;}
.x66_c00378{left:165.000000px;}
.x6c_c00378{left:166.920000px;}
.x87_c00378{left:168.000000px;}
.xbe_c00378{left:178.500000px;}
.x55_c00378{left:181.500000px;}
.xba_c00378{left:183.000000px;}
.x4_c00378{left:185.580000px;}
.x28_c00378{left:188.580000px;}
.x67_c00378{left:192.000000px;}
.x74_c00378{left:195.000000px;}
.x37_c00378{left:196.500000px;}
.xab_c00378{left:198.000000px;}
.xc6_c00378{left:200.580000px;}
.xeb_c00378{left:202.080000px;}
.x9f_c00378{left:207.000000px;}
.x6d_c00378{left:208.920000px;}
.x38_c00378{left:213.420000px;}
.x93_c00378{left:215.580000px;}
.x5_c00378{left:217.920000px;}
.xdd_c00378{left:219.000000px;}
.xac_c00378{left:220.500000px;}
.x84_c00378{left:222.000000px;}
.x56_c00378{left:224.580000px;}
.xa3_c00378{left:226.500000px;}
.x1c_c00378{left:228.000000px;}
.x11_c00378{left:229.920000px;}
.x7e_c00378{left:231.420000px;}
.x68_c00378{left:233.580000px;}
.x29_c00378{left:238.080000px;}
.xb2_c00378{left:240.420000px;}
.xde_c00378{left:241.920000px;}
.xda_c00378{left:243.000000px;}
.x85_c00378{left:244.500000px;}
.x75_c00378{left:246.000000px;}
.x8e_c00378{left:248.775000px;}
.x61_c00378{left:250.500000px;}
.x1d_c00378{left:252.000000px;}
.xbf_c00378{left:254.145000px;}
.x57_c00378{left:255.420000px;}
.x12_c00378{left:256.500000px;}
.x88_c00378{left:258.000000px;}
.x6_c00378{left:259.500000px;}
.x2a_c00378{left:262.500000px;}
.xcc_c00378{left:263.580000px;}
.xb7_c00378{left:265.500000px;}
.x6e_c00378{left:267.000000px;}
.x39_c00378{left:268.500000px;}
.xa7_c00378{left:271.080000px;}
.x62_c00378{left:272.580000px;}
.xe2_c00378{left:274.500000px;}
.xad_c00378{left:275.580000px;}
.xbb_c00378{left:277.500000px;}
.x89_c00378{left:279.000000px;}
.x4e_c00378{left:280.275000px;}
.x58_c00378{left:283.500000px;}
.x2b_c00378{left:285.420000px;}
.x3a_c00378{left:288.000000px;}
.x63_c00378{left:291.000000px;}
.x44_c00378{left:292.500000px;}
.xb3_c00378{left:294.000000px;}
.xc0_c00378{left:296.580000px;}
.x1e_c00378{left:298.920000px;}
.x94_c00378{left:300.000000px;}
.xb8_c00378{left:304.080000px;}
.x69_c00378{left:305.580000px;}
.xe6_c00378{left:307.500000px;}
.xae_c00378{left:309.000000px;}
.x76_c00378{left:310.080000px;}
.xed_c00378{left:312.000000px;}
.x2c_c00378{left:313.500000px;}
.x7f_c00378{left:315.000000px;}
.x3b_c00378{left:316.500000px;}
.x45_c00378{left:319.500000px;}
.x95_c00378{left:322.080000px;}
.xec_c00378{left:326.355000px;}
.x1f_c00378{left:327.420000px;}
.x7_c00378{left:328.920000px;}
.x80_c00378{left:331.500000px;}
.xa4_c00378{left:333.420000px;}
.x13_c00378{left:334.500000px;}
.xcb_c00378{left:336.000000px;}
.x8f_c00378{left:337.920000px;}
.xd0_c00378{left:342.000000px;}
.xcd_c00378{left:343.080000px;}
.xa8_c00378{left:345.000000px;}
.xe3_c00378{left:346.920000px;}
.xe7_c00378{left:348.420000px;}
.x3c_c00378{left:349.500000px;}
.x96_c00378{left:351.000000px;}
.x8a_c00378{left:352.275000px;}
.xdf_c00378{left:358.500000px;}
.x9a_c00378{left:360.000000px;}
.x6a_c00378{left:363.000000px;}
.xa9_c00378{left:364.500000px;}
.x2d_c00378{left:367.080000px;}
.xc7_c00378{left:368.580000px;}
.x8_c00378{left:370.500000px;}
.xdb_c00378{left:373.500000px;}
.x4f_c00378{left:375.420000px;}
.x59_c00378{left:376.500000px;}
.x46_c00378{left:379.500000px;}
.x86_c00378{left:381.000000px;}
.x77_c00378{left:382.080000px;}
.x14_c00378{left:385.500000px;}
.x2e_c00378{left:387.420000px;}
.x1_c00378{left:388.500000px;}
.x20_c00378{left:393.000000px;}
.x9_c00378{left:399.000000px;}
.x50_c00378{left:402.000000px;}
.xc1_c00378{left:404.580000px;}
.x5e_c00378{left:408.000000px;}
.x15_c00378{left:413.580000px;}
.x2f_c00378{left:415.080000px;}
.xe8_c00378{left:416.580000px;}
.x5a_c00378{left:418.500000px;}
.x21_c00378{left:419.580000px;}
.x47_c00378{left:421.080000px;}
.x6f_c00378{left:422.580000px;}
.xa_c00378{left:424.920000px;}
.x78_c00378{left:427.500000px;}
.xe4_c00378{left:432.000000px;}
.xd5_c00378{left:433.920000px;}
.x16_c00378{left:436.080000px;}
.xaf_c00378{left:439.080000px;}
.xc2_c00378{left:440.580000px;}
.xe5_c00378{left:442.500000px;}
.x3d_c00378{left:444.420000px;}
.x90_c00378{left:445.920000px;}
.xa5_c00378{left:449.580000px;}
.x22_c00378{left:451.920000px;}
.x30_c00378{left:454.920000px;}
.xd6_c00378{left:456.000000px;}
.xe9_c00378{left:457.500000px;}
.x51_c00378{left:459.000000px;}
.x70_c00378{left:461.580000px;}
.x5f_c00378{left:463.080000px;}
.x5b_c00378{left:464.580000px;}
.x79_c00378{left:468.000000px;}
.xb9_c00378{left:469.500000px;}
.x3e_c00378{left:471.000000px;}
.xce_c00378{left:475.500000px;}
.x23_c00378{left:478.500000px;}
.x31_c00378{left:481.500000px;}
.xb_c00378{left:483.000000px;}
.x9b_c00378{left:486.420000px;}
.xa0_c00378{left:487.500000px;}
.xc3_c00378{left:490.920000px;}
.x6b_c00378{left:493.500000px;}
.x48_c00378{left:496.500000px;}
.xb4_c00378{left:498.000000px;}
.x52_c00378{left:499.920000px;}
.x64_c00378{left:504.420000px;}
.x17_c00378{left:507.000000px;}
.x3f_c00378{left:508.920000px;}
.xd1_c00378{left:510.000000px;}
.xb0_c00378{left:511.500000px;}
.x81_c00378{left:513.000000px;}
.x60_c00378{left:514.275000px;}
.x8b_c00378{left:516.420000px;}
.x9c_c00378{left:521.580000px;}
.xee_c00378{left:523.500000px;}
.xa6_c00378{left:526.080000px;}
.x49_c00378{left:528.420000px;}
.x5c_c00378{left:529.500000px;}
.x7a_c00378{left:532.500000px;}
.x82_c00378{left:534.000000px;}
.xa1_c00378{left:535.500000px;}
.x91_c00378{left:536.580000px;}
.xc_c00378{left:540.420000px;}
.xc8_c00378{left:541.500000px;}
.xbc_c00378{left:543.000000px;}
.x97_c00378{left:544.500000px;}
.x24_c00378{left:547.920000px;}
.xcf_c00378{left:549.420000px;}
.x32_c00378{left:550.500000px;}
.x18_c00378{left:553.500000px;}
.xc9_c00378{left:554.580000px;}
.x40_c00378{left:558.420000px;}
.x4a_c00378{left:563.580000px;}
.x71_c00378{left:568.500000px;}
.xa2_c00378{left:572.580000px;}
.xd7_c00378{left:574.500000px;}
.x25_c00378{left:575.580000px;}
.xd_c00378{left:577.920000px;}
.xe0_c00378{left:579.000000px;}
.x19_c00378{left:580.500000px;}
.xca_c00378{left:583.080000px;}
.x8c_c00378{left:584.580000px;}
.x41_c00378{left:586.500000px;}
.x33_c00378{left:589.500000px;}
.x65_c00378{left:593.580000px;}
.x83_c00378{left:597.000000px;}
.x26_c00378{left:598.920000px;}
.x34_c00378{left:604.920000px;}
.xe_c00378{left:609.000000px;}
.xdc_c00378{left:611.580000px;}
.x1a_c00378{left:613.920000px;}
.x4b_c00378{left:615.420000px;}
.xb5_c00378{left:618.000000px;}
.x7b_c00378{left:620.580000px;}
.x5d_c00378{left:625.275000px;}
.xd2_c00378{left:634.080000px;}
.x9d_c00378{left:637.080000px;}
.x7c_c00378{left:639.000000px;}
.xf_c00378{left:640.920000px;}
.x35_c00378{left:643.500000px;}
.xb1_c00378{left:645.000000px;}
.x72_c00378{left:646.500000px;}
.x42_c00378{left:654.000000px;}
.x98_c00378{left:655.080000px;}
.x4c_c00378{left:658.920000px;}
.xd3_c00378{left:661.080000px;}
.x73_c00378{left:663.000000px;}
.x8d_c00378{left:665.580000px;}
.xe1_c00378{left:667.500000px;}
.x53_c00378{left:669.000000px;}
.xd8_c00378{left:670.080000px;}
.x1b_c00378{left:671.580000px;}
.x9e_c00378{left:679.080000px;}
.xc4_c00378{left:684.000000px;}
.x36_c00378{left:685.920000px;}
.xb6_c00378{left:688.500000px;}
.x43_c00378{left:691.920000px;}
.x27_c00378{left:694.920000px;}
.x7d_c00378{left:697.920000px;}
.x4d_c00378{left:699.420000px;}
.x2_c00378{left:703.080000px;}
.xbd_c00378{left:706.920000px;}
.x99_c00378{left:709.080000px;}
.x92_c00378{left:712.500000px;}
.x10_c00378{left:714.000000px;}
.x54_c00378{left:715.080000px;}
.xaa_c00378{left:717.000000px;}
.xd4_c00378{left:721.500000px;}
.xd9_c00378{left:723.000000px;}
@media print{
.v0_c00378{vertical-align:0.000000pt;}
.ls0_c00378{letter-spacing:0.000000pt;}
.ws0_c00378{word-spacing:-5.711730pt;}
.ws1_c00378{word-spacing:-2.598853pt;}
.ws2_c00378{word-spacing:0.000000pt;}
._0_c00378{width:6.269516pt;}
.fs7_c00378{font-size:3.040000pt;}
.fs6_c00378{font-size:12.106667pt;}
.fs2_c00378{font-size:16.640000pt;}
.fs0_c00378{font-size:18.133333pt;}
.fs5_c00378{font-size:22.666667pt;}
.fs1_c00378{font-size:25.706667pt;}
.fs3_c00378{font-size:28.746667pt;}
.fs4_c00378{font-size:31.733333pt;}
.fs8_c00378{font-size:34.773333pt;}
.y0_c00378{bottom:0.000000pt;}
.yd6_c00378{bottom:222.066667pt;}
.yd2_c00378{bottom:222.266667pt;}
.yd3_c00378{bottom:223.026667pt;}
.yd7_c00378{bottom:223.973333pt;}
.yd5_c00378{bottom:224.173333pt;}
.yd4_c00378{bottom:224.933333pt;}
.yd0_c00378{bottom:235.400000pt;}
.yce_c00378{bottom:235.600000pt;}
.yd1_c00378{bottom:236.360000pt;}
.ycf_c00378{bottom:237.306667pt;}
.ycb_c00378{bottom:247.973333pt;}
.yc9_c00378{bottom:248.733333pt;}
.yca_c00378{bottom:249.693333pt;}
.ycc_c00378{bottom:250.066667pt;}
.yc8_c00378{bottom:250.640000pt;}
.ycd_c00378{bottom:251.600000pt;}
.yc3_c00378{bottom:262.066667pt;}
.yc4_c00378{bottom:263.026667pt;}
.yc5_c00378{bottom:263.226667pt;}
.yc6_c00378{bottom:263.973333pt;}
.yc7_c00378{bottom:264.173333pt;}
.ybd_c00378{bottom:274.640000pt;}
.ybf_c00378{bottom:275.400000pt;}
.yc2_c00378{bottom:276.360000pt;}
.yc1_c00378{bottom:276.560000pt;}
.ybe_c00378{bottom:277.306667pt;}
.yc0_c00378{bottom:278.266667pt;}
.ybc_c00378{bottom:289.693333pt;}
.yba_c00378{bottom:289.893333pt;}
.yb9_c00378{bottom:290.640000pt;}
.ybb_c00378{bottom:291.600000pt;}
.yb7_c00378{bottom:301.693333pt;}
.yb8_c00378{bottom:302.640000pt;}
.yb6_c00378{bottom:303.226667pt;}
.yb2_c00378{bottom:303.600000pt;}
.yb5_c00378{bottom:303.973333pt;}
.yb4_c00378{bottom:304.173333pt;}
.yb3_c00378{bottom:304.933333pt;}
.yb0_c00378{bottom:315.400000pt;}
.yb1_c00378{bottom:316.360000pt;}
.yaf_c00378{bottom:317.306667pt;}
.ya9_c00378{bottom:327.400000pt;}
.yab_c00378{bottom:328.360000pt;}
.yad_c00378{bottom:328.560000pt;}
.ya8_c00378{bottom:328.933333pt;}
.yac_c00378{bottom:329.306667pt;}
.yae_c00378{bottom:329.506667pt;}
.yaa_c00378{bottom:330.266667pt;}
.ya6_c00378{bottom:341.306667pt;}
.ya5_c00378{bottom:341.693333pt;}
.ya7_c00378{bottom:342.840000pt;}
.ya4_c00378{bottom:343.600000pt;}
.y9e_c00378{bottom:354.266667pt;}
.y9f_c00378{bottom:355.026667pt;}
.ya0_c00378{bottom:355.226667pt;}
.ya2_c00378{bottom:355.973333pt;}
.ya1_c00378{bottom:356.933333pt;}
.ya3_c00378{bottom:357.306667pt;}
.y9b_c00378{bottom:367.400000pt;}
.y98_c00378{bottom:367.600000pt;}
.y9a_c00378{bottom:368.360000pt;}
.y9c_c00378{bottom:368.560000pt;}
.y99_c00378{bottom:369.306667pt;}
.y9d_c00378{bottom:370.266667pt;}
.y96_c00378{bottom:381.693333pt;}
.y95_c00378{bottom:382.440000pt;}
.y97_c00378{bottom:382.640000pt;}
.y92_c00378{bottom:392.733333pt;}
.y93_c00378{bottom:392.933333pt;}
.y8b_c00378{bottom:393.306667pt;}
.y91_c00378{bottom:393.693333pt;}
.y8d_c00378{bottom:394.066667pt;}
.y94_c00378{bottom:394.640000pt;}
.y8e_c00378{bottom:395.026667pt;}
.y90_c00378{bottom:395.226667pt;}
.y8c_c00378{bottom:395.973333pt;}
.y8f_c00378{bottom:396.933333pt;}
.y89_c00378{bottom:407.026667pt;}
.y86_c00378{bottom:407.400000pt;}
.y8a_c00378{bottom:407.973333pt;}
.y85_c00378{bottom:408.360000pt;}
.y83_c00378{bottom:408.560000pt;}
.y88_c00378{bottom:408.933333pt;}
.y84_c00378{bottom:409.306667pt;}
.y87_c00378{bottom:410.266667pt;}
.y82_c00378{bottom:420.733333pt;}
.y80_c00378{bottom:431.973333pt;}
.y81_c00378{bottom:432.733333pt;}
.y7d_c00378{bottom:433.693333pt;}
.y7f_c00378{bottom:433.893333pt;}
.y7b_c00378{bottom:434.640000pt;}
.y7e_c00378{bottom:435.026667pt;}
.y7a_c00378{bottom:435.226667pt;}
.y7c_c00378{bottom:435.600000pt;}
.y79_c00378{bottom:458.266667pt;}
.y76_c00378{bottom:458.440000pt;}
.y78_c00378{bottom:459.973333pt;}
.y77_c00378{bottom:460.360000pt;}
.y74_c00378{bottom:474.066667pt;}
.y70_c00378{bottom:475.773333pt;}
.y73_c00378{bottom:475.973333pt;}
.y75_c00378{bottom:476.360000pt;}
.y72_c00378{bottom:476.560000pt;}
.y71_c00378{bottom:477.693333pt;}
.y6f_c00378{bottom:492.733333pt;}
.y6d_c00378{bottom:493.106667pt;}
.y6e_c00378{bottom:493.693333pt;}
.y6c_c00378{bottom:493.893333pt;}
.y6a_c00378{bottom:494.066667pt;}
.y6b_c00378{bottom:494.640000pt;}
.y69_c00378{bottom:495.026667pt;}
.y67_c00378{bottom:510.440000pt;}
.y68_c00378{bottom:511.026667pt;}
.y65_c00378{bottom:512.360000pt;}
.y66_c00378{bottom:512.373333pt;}
.y62_c00378{bottom:527.773333pt;}
.y63_c00378{bottom:528.733333pt;}
.y64_c00378{bottom:529.693333pt;}
.y60_c00378{bottom:545.106667pt;}
.y61_c00378{bottom:546.066667pt;}
.y5f_c00378{bottom:546.640000pt;}
.y5e_c00378{bottom:547.026667pt;}
.y5c_c00378{bottom:562.440000pt;}
.y5d_c00378{bottom:563.973333pt;}
.y5a_c00378{bottom:564.360000pt;}
.y5b_c00378{bottom:565.706667pt;}
.y59_c00378{bottom:581.106667pt;}
.y58_c00378{bottom:597.106667pt;}
.y57_c00378{bottom:598.440000pt;}
.y55_c00378{bottom:599.226667pt;}
.y54_c00378{bottom:600.360000pt;}
.y56_c00378{bottom:600.373333pt;}
.y53_c00378{bottom:614.440000pt;}
.y51_c00378{bottom:615.773333pt;}
.y52_c00378{bottom:617.693333pt;}
.y4e_c00378{bottom:632.360000pt;}
.y4d_c00378{bottom:633.106667pt;}
.y50_c00378{bottom:633.693333pt;}
.y4c_c00378{bottom:634.066667pt;}
.y4f_c00378{bottom:635.026667pt;}
.y4b_c00378{bottom:649.493333pt;}
.y47_c00378{bottom:650.440000pt;}
.y49_c00378{bottom:651.400000pt;}
.y4a_c00378{bottom:652.360000pt;}
.y48_c00378{bottom:652.373333pt;}
.y46_c00378{bottom:667.773333pt;}
.y45_c00378{bottom:669.693333pt;}
.y41_c00378{bottom:685.106667pt;}
.y43_c00378{bottom:686.066667pt;}
.y42_c00378{bottom:687.026667pt;}
.y44_c00378{bottom:687.973333pt;}
.y40_c00378{bottom:701.106667pt;}
.y3d_c00378{bottom:701.693333pt;}
.y3f_c00378{bottom:702.440000pt;}
.y3e_c00378{bottom:703.400000pt;}
.y3b_c00378{bottom:703.773333pt;}
.y38_c00378{bottom:704.360000pt;}
.y39_c00378{bottom:704.560000pt;}
.y3c_c00378{bottom:705.306667pt;}
.y3a_c00378{bottom:705.693333pt;}
.y37_c00378{bottom:719.773333pt;}
.y34_c00378{bottom:720.160000pt;}
.y31_c00378{bottom:721.106667pt;}
.y36_c00378{bottom:721.893333pt;}
.y35_c00378{bottom:722.066667pt;}
.y33_c00378{bottom:723.026667pt;}
.y32_c00378{bottom:723.040000pt;}
.y2d_c00378{bottom:743.973333pt;}
.y30_c00378{bottom:744.733333pt;}
.y2e_c00378{bottom:745.693333pt;}
.y2c_c00378{bottom:746.640000pt;}
.y2f_c00378{bottom:746.840000pt;}
.y28_c00378{bottom:765.306667pt;}
.y2b_c00378{bottom:766.066667pt;}
.y2a_c00378{bottom:766.266667pt;}
.y29_c00378{bottom:767.026667pt;}
.y27_c00378{bottom:768.933333pt;}
.y26_c00378{bottom:786.440000pt;}
.y24_c00378{bottom:821.106667pt;}
.y25_c00378{bottom:821.893333pt;}
.y23_c00378{bottom:823.026667pt;}
.y1e_c00378{bottom:837.693333pt;}
.y20_c00378{bottom:838.440000pt;}
.y22_c00378{bottom:839.026667pt;}
.y1f_c00378{bottom:839.400000pt;}
.y21_c00378{bottom:840.360000pt;}
.y1d_c00378{bottom:855.026667pt;}
.y1a_c00378{bottom:855.773333pt;}
.y19_c00378{bottom:857.306667pt;}
.y1c_c00378{bottom:857.693333pt;}
.y1b_c00378{bottom:857.893333pt;}
.y16_c00378{bottom:873.106667pt;}
.y18_c00378{bottom:874.640000pt;}
.y15_c00378{bottom:875.026667pt;}
.y17_c00378{bottom:875.973333pt;}
.y12_c00378{bottom:890.440000pt;}
.y14_c00378{bottom:891.973333pt;}
.y11_c00378{bottom:892.360000pt;}
.y13_c00378{bottom:892.560000pt;}
.ye_c00378{bottom:907.773333pt;}
.y10_c00378{bottom:909.106667pt;}
.yd_c00378{bottom:909.693333pt;}
.yf_c00378{bottom:909.893333pt;}
.y9_c00378{bottom:925.106667pt;}
.y7_c00378{bottom:926.066667pt;}
.y8_c00378{bottom:927.026667pt;}
.yc_c00378{bottom:927.226667pt;}
.yb_c00378{bottom:927.973333pt;}
.ya_c00378{bottom:928.360000pt;}
.y6_c00378{bottom:942.440000pt;}
.y5_c00378{bottom:943.400000pt;}
.y3_c00378{bottom:944.360000pt;}
.y4_c00378{bottom:944.560000pt;}
.y2_c00378{bottom:976.360000pt;}
.y1_c00378{bottom:978.266667pt;}
.h8_c00378{height:3.739141pt;}
.h7_c00378{height:14.890964pt;}
.h3_c00378{height:20.466875pt;}
.h1_c00378{height:22.303646pt;}
.h6_c00378{height:27.879557pt;}
.h2_c00378{height:31.618698pt;}
.h4_c00378{height:35.357839pt;}
.h5_c00378{height:39.031380pt;}
.h9_c00378{height:42.770521pt;}
.h0_c00378{height:1186.666667pt;}
.w0_c00378{width:782.666667pt;}
.x0_c00378{left:0.000000pt;}
.x3_c00378{left:134.293333pt;}
.xc5_c00378{left:144.000000pt;}
.xea_c00378{left:145.333333pt;}
.x66_c00378{left:146.666667pt;}
.x6c_c00378{left:148.373333pt;}
.x87_c00378{left:149.333333pt;}
.xbe_c00378{left:158.666667pt;}
.x55_c00378{left:161.333333pt;}
.xba_c00378{left:162.666667pt;}
.x4_c00378{left:164.960000pt;}
.x28_c00378{left:167.626667pt;}
.x67_c00378{left:170.666667pt;}
.x74_c00378{left:173.333333pt;}
.x37_c00378{left:174.666667pt;}
.xab_c00378{left:176.000000pt;}
.xc6_c00378{left:178.293333pt;}
.xeb_c00378{left:179.626667pt;}
.x9f_c00378{left:184.000000pt;}
.x6d_c00378{left:185.706667pt;}
.x38_c00378{left:189.706667pt;}
.x93_c00378{left:191.626667pt;}
.x5_c00378{left:193.706667pt;}
.xdd_c00378{left:194.666667pt;}
.xac_c00378{left:196.000000pt;}
.x84_c00378{left:197.333333pt;}
.x56_c00378{left:199.626667pt;}
.xa3_c00378{left:201.333333pt;}
.x1c_c00378{left:202.666667pt;}
.x11_c00378{left:204.373333pt;}
.x7e_c00378{left:205.706667pt;}
.x68_c00378{left:207.626667pt;}
.x29_c00378{left:211.626667pt;}
.xb2_c00378{left:213.706667pt;}
.xde_c00378{left:215.040000pt;}
.xda_c00378{left:216.000000pt;}
.x85_c00378{left:217.333333pt;}
.x75_c00378{left:218.666667pt;}
.x8e_c00378{left:221.133333pt;}
.x61_c00378{left:222.666667pt;}
.x1d_c00378{left:224.000000pt;}
.xbf_c00378{left:225.906667pt;}
.x57_c00378{left:227.040000pt;}
.x12_c00378{left:228.000000pt;}
.x88_c00378{left:229.333333pt;}
.x6_c00378{left:230.666667pt;}
.x2a_c00378{left:233.333333pt;}
.xcc_c00378{left:234.293333pt;}
.xb7_c00378{left:236.000000pt;}
.x6e_c00378{left:237.333333pt;}
.x39_c00378{left:238.666667pt;}
.xa7_c00378{left:240.960000pt;}
.x62_c00378{left:242.293333pt;}
.xe2_c00378{left:244.000000pt;}
.xad_c00378{left:244.960000pt;}
.xbb_c00378{left:246.666667pt;}
.x89_c00378{left:248.000000pt;}
.x4e_c00378{left:249.133333pt;}
.x58_c00378{left:252.000000pt;}
.x2b_c00378{left:253.706667pt;}
.x3a_c00378{left:256.000000pt;}
.x63_c00378{left:258.666667pt;}
.x44_c00378{left:260.000000pt;}
.xb3_c00378{left:261.333333pt;}
.xc0_c00378{left:263.626667pt;}
.x1e_c00378{left:265.706667pt;}
.x94_c00378{left:266.666667pt;}
.xb8_c00378{left:270.293333pt;}
.x69_c00378{left:271.626667pt;}
.xe6_c00378{left:273.333333pt;}
.xae_c00378{left:274.666667pt;}
.x76_c00378{left:275.626667pt;}
.xed_c00378{left:277.333333pt;}
.x2c_c00378{left:278.666667pt;}
.x7f_c00378{left:280.000000pt;}
.x3b_c00378{left:281.333333pt;}
.x45_c00378{left:284.000000pt;}
.x95_c00378{left:286.293333pt;}
.xec_c00378{left:290.093333pt;}
.x1f_c00378{left:291.040000pt;}
.x7_c00378{left:292.373333pt;}
.x80_c00378{left:294.666667pt;}
.xa4_c00378{left:296.373333pt;}
.x13_c00378{left:297.333333pt;}
.xcb_c00378{left:298.666667pt;}
.x8f_c00378{left:300.373333pt;}
.xd0_c00378{left:304.000000pt;}
.xcd_c00378{left:304.960000pt;}
.xa8_c00378{left:306.666667pt;}
.xe3_c00378{left:308.373333pt;}
.xe7_c00378{left:309.706667pt;}
.x3c_c00378{left:310.666667pt;}
.x96_c00378{left:312.000000pt;}
.x8a_c00378{left:313.133333pt;}
.xdf_c00378{left:318.666667pt;}
.x9a_c00378{left:320.000000pt;}
.x6a_c00378{left:322.666667pt;}
.xa9_c00378{left:324.000000pt;}
.x2d_c00378{left:326.293333pt;}
.xc7_c00378{left:327.626667pt;}
.x8_c00378{left:329.333333pt;}
.xdb_c00378{left:332.000000pt;}
.x4f_c00378{left:333.706667pt;}
.x59_c00378{left:334.666667pt;}
.x46_c00378{left:337.333333pt;}
.x86_c00378{left:338.666667pt;}
.x77_c00378{left:339.626667pt;}
.x14_c00378{left:342.666667pt;}
.x2e_c00378{left:344.373333pt;}
.x1_c00378{left:345.333333pt;}
.x20_c00378{left:349.333333pt;}
.x9_c00378{left:354.666667pt;}
.x50_c00378{left:357.333333pt;}
.xc1_c00378{left:359.626667pt;}
.x5e_c00378{left:362.666667pt;}
.x15_c00378{left:367.626667pt;}
.x2f_c00378{left:368.960000pt;}
.xe8_c00378{left:370.293333pt;}
.x5a_c00378{left:372.000000pt;}
.x21_c00378{left:372.960000pt;}
.x47_c00378{left:374.293333pt;}
.x6f_c00378{left:375.626667pt;}
.xa_c00378{left:377.706667pt;}
.x78_c00378{left:380.000000pt;}
.xe4_c00378{left:384.000000pt;}
.xd5_c00378{left:385.706667pt;}
.x16_c00378{left:387.626667pt;}
.xaf_c00378{left:390.293333pt;}
.xc2_c00378{left:391.626667pt;}
.xe5_c00378{left:393.333333pt;}
.x3d_c00378{left:395.040000pt;}
.x90_c00378{left:396.373333pt;}
.xa5_c00378{left:399.626667pt;}
.x22_c00378{left:401.706667pt;}
.x30_c00378{left:404.373333pt;}
.xd6_c00378{left:405.333333pt;}
.xe9_c00378{left:406.666667pt;}
.x51_c00378{left:408.000000pt;}
.x70_c00378{left:410.293333pt;}
.x5f_c00378{left:411.626667pt;}
.x5b_c00378{left:412.960000pt;}
.x79_c00378{left:416.000000pt;}
.xb9_c00378{left:417.333333pt;}
.x3e_c00378{left:418.666667pt;}
.xce_c00378{left:422.666667pt;}
.x23_c00378{left:425.333333pt;}
.x31_c00378{left:428.000000pt;}
.xb_c00378{left:429.333333pt;}
.x9b_c00378{left:432.373333pt;}
.xa0_c00378{left:433.333333pt;}
.xc3_c00378{left:436.373333pt;}
.x6b_c00378{left:438.666667pt;}
.x48_c00378{left:441.333333pt;}
.xb4_c00378{left:442.666667pt;}
.x52_c00378{left:444.373333pt;}
.x64_c00378{left:448.373333pt;}
.x17_c00378{left:450.666667pt;}
.x3f_c00378{left:452.373333pt;}
.xd1_c00378{left:453.333333pt;}
.xb0_c00378{left:454.666667pt;}
.x81_c00378{left:456.000000pt;}
.x60_c00378{left:457.133333pt;}
.x8b_c00378{left:459.040000pt;}
.x9c_c00378{left:463.626667pt;}
.xee_c00378{left:465.333333pt;}
.xa6_c00378{left:467.626667pt;}
.x49_c00378{left:469.706667pt;}
.x5c_c00378{left:470.666667pt;}
.x7a_c00378{left:473.333333pt;}
.x82_c00378{left:474.666667pt;}
.xa1_c00378{left:476.000000pt;}
.x91_c00378{left:476.960000pt;}
.xc_c00378{left:480.373333pt;}
.xc8_c00378{left:481.333333pt;}
.xbc_c00378{left:482.666667pt;}
.x97_c00378{left:484.000000pt;}
.x24_c00378{left:487.040000pt;}
.xcf_c00378{left:488.373333pt;}
.x32_c00378{left:489.333333pt;}
.x18_c00378{left:492.000000pt;}
.xc9_c00378{left:492.960000pt;}
.x40_c00378{left:496.373333pt;}
.x4a_c00378{left:500.960000pt;}
.x71_c00378{left:505.333333pt;}
.xa2_c00378{left:508.960000pt;}
.xd7_c00378{left:510.666667pt;}
.x25_c00378{left:511.626667pt;}
.xd_c00378{left:513.706667pt;}
.xe0_c00378{left:514.666667pt;}
.x19_c00378{left:516.000000pt;}
.xca_c00378{left:518.293333pt;}
.x8c_c00378{left:519.626667pt;}
.x41_c00378{left:521.333333pt;}
.x33_c00378{left:524.000000pt;}
.x65_c00378{left:527.626667pt;}
.x83_c00378{left:530.666667pt;}
.x26_c00378{left:532.373333pt;}
.x34_c00378{left:537.706667pt;}
.xe_c00378{left:541.333333pt;}
.xdc_c00378{left:543.626667pt;}
.x1a_c00378{left:545.706667pt;}
.x4b_c00378{left:547.040000pt;}
.xb5_c00378{left:549.333333pt;}
.x7b_c00378{left:551.626667pt;}
.x5d_c00378{left:555.800000pt;}
.xd2_c00378{left:563.626667pt;}
.x9d_c00378{left:566.293333pt;}
.x7c_c00378{left:568.000000pt;}
.xf_c00378{left:569.706667pt;}
.x35_c00378{left:572.000000pt;}
.xb1_c00378{left:573.333333pt;}
.x72_c00378{left:574.666667pt;}
.x42_c00378{left:581.333333pt;}
.x98_c00378{left:582.293333pt;}
.x4c_c00378{left:585.706667pt;}
.xd3_c00378{left:587.626667pt;}
.x73_c00378{left:589.333333pt;}
.x8d_c00378{left:591.626667pt;}
.xe1_c00378{left:593.333333pt;}
.x53_c00378{left:594.666667pt;}
.xd8_c00378{left:595.626667pt;}
.x1b_c00378{left:596.960000pt;}
.x9e_c00378{left:603.626667pt;}
.xc4_c00378{left:608.000000pt;}
.x36_c00378{left:609.706667pt;}
.xb6_c00378{left:612.000000pt;}
.x43_c00378{left:615.040000pt;}
.x27_c00378{left:617.706667pt;}
.x7d_c00378{left:620.373333pt;}
.x4d_c00378{left:621.706667pt;}
.x2_c00378{left:624.960000pt;}
.xbd_c00378{left:628.373333pt;}
.x99_c00378{left:630.293333pt;}
.x92_c00378{left:633.333333pt;}
.x10_c00378{left:634.666667pt;}
.x54_c00378{left:635.626667pt;}
.xaa_c00378{left:637.333333pt;}
.xd4_c00378{left:641.333333pt;}
.xd9_c00378{left:642.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_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_a1e58ff3bee585456ed5a28c.woff2')format("woff");}.ff1_c00379{font-family:ff1_c00379;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m88_c00379{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m68_c00379{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m57_c00379{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m58_c00379{transform:matrix(0.343277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343277,0.000000,0.000000,0.250000,0,0);}
.m8a_c00379{transform:matrix(0.346218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346218,0.000000,0.000000,0.250000,0,0);}
.ma0_c00379{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.m44_c00379{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mcd_c00379{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m13_c00379{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m5b_c00379{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.ma5_c00379{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.ma7_c00379{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m9c_c00379{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.mc4_c00379{transform:matrix(0.382285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382285,0.000000,0.000000,0.250000,0,0);}
.m8f_c00379{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m56_c00379{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.m90_c00379{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.mb1_c00379{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m6e_c00379{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.me_c00379{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m92_c00379{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m15_c00379{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.mb7_c00379{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m99_c00379{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m14_c00379{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.ma3_c00379{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_c00379{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m20_c00379{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m7a_c00379{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.mc9_c00379{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m63_c00379{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.mca_c00379{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.ma1_c00379{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m75_c00379{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.md7_c00379{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m37_c00379{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m8c_c00379{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.me2_c00379{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mdd_c00379{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m9f_c00379{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m82_c00379{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m6b_c00379{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.mc7_c00379{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.maf_c00379{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m47_c00379{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m28_c00379{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.md1_c00379{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.mc8_c00379{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m10_c00379{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.mc_c00379{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m2_c00379{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.md2_c00379{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m4c_c00379{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m2b_c00379{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mc1_c00379{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.md8_c00379{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.mab_c00379{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m9_c00379{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m7f_c00379{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m80_c00379{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m5d_c00379{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m72_c00379{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.me3_c00379{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m62_c00379{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m93_c00379{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.ma9_c00379{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.me5_c00379{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m5c_c00379{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.mb2_c00379{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m9b_c00379{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.me6_c00379{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m89_c00379{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.mc3_c00379{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m4d_c00379{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m9a_c00379{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.mc0_c00379{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m16_c00379{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m97_c00379{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m8e_c00379{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m6_c00379{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.ma6_c00379{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.m1b_c00379{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.mc6_c00379{transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);}
.m1c_c00379{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.m81_c00379{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mdb_c00379{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.me0_c00379{transform:matrix(0.454622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454622,0.000000,0.000000,0.250000,0,0);}
.m7e_c00379{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.mae_c00379{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m77_c00379{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m5f_c00379{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.maa_c00379{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.mbb_c00379{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.m2e_c00379{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m2f_c00379{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.mb3_c00379{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m27_c00379{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m54_c00379{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mad_c00379{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.m8b_c00379{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m1e_c00379{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m17_c00379{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.ma4_c00379{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.me7_c00379{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.mf_c00379{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m71_c00379{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m42_c00379{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mb0_c00379{transform:matrix(0.489332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489332,0.000000,0.000000,0.250000,0,0);}
.m0_c00379{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mbf_c00379{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m24_c00379{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);}
.mea_c00379{transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);}
.mcf_c00379{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.ma2_c00379{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mba_c00379{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m29_c00379{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mb6_c00379{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.me9_c00379{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m4a_c00379{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m41_c00379{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m61_c00379{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m30_c00379{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.ma8_c00379{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.md4_c00379{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m96_c00379{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m7b_c00379{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.m8_c00379{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.md0_c00379{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m65_c00379{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m66_c00379{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m59_c00379{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m32_c00379{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m26_c00379{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m8d_c00379{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m67_c00379{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mb4_c00379{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mb_c00379{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mb8_c00379{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m6f_c00379{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m39_c00379{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m95_c00379{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m4_c00379{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mdf_c00379{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m19_c00379{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m52_c00379{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m35_c00379{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m3d_c00379{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m5e_c00379{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m9e_c00379{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m11_c00379{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m74_c00379{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.md5_c00379{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m7_c00379{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m64_c00379{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m55_c00379{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m6a_c00379{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m83_c00379{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mc2_c00379{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m87_c00379{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mbd_c00379{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.md9_c00379{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.ma_c00379{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mac_c00379{transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);}
.m73_c00379{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mdc_c00379{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m1d_c00379{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m25_c00379{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m53_c00379{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mb9_c00379{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m18_c00379{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mbc_c00379{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m23_c00379{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);}
.m6c_c00379{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m4f_c00379{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m84_c00379{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m2c_c00379{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m86_c00379{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m48_c00379{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.m7c_c00379{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m85_c00379{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m70_c00379{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m1a_c00379{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m3b_c00379{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m76_c00379{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mda_c00379{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m38_c00379{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m49_c00379{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m69_c00379{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m94_c00379{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.mbe_c00379{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m33_c00379{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m5a_c00379{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mc5_c00379{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m21_c00379{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mce_c00379{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m2a_c00379{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m4e_c00379{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m98_c00379{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m7d_c00379{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m1f_c00379{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);}
.m9d_c00379{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m5_c00379{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m46_c00379{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m22_c00379{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mb5_c00379{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m43_c00379{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m91_c00379{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m50_c00379{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);}
.mde_c00379{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);}
.me8_c00379{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.md6_c00379{transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);}
.m12_c00379{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mcb_c00379{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.me1_c00379{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m1_c00379{transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);}
.m3f_c00379{transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);}
.md3_c00379{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m3e_c00379{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m79_c00379{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.me4_c00379{transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);}
.m6d_c00379{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m31_c00379{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m4b_c00379{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m60_c00379{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mcc_c00379{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.md_c00379{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m45_c00379{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m40_c00379{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m51_c00379{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m34_c00379{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m3c_c00379{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.m2d_c00379{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m3a_c00379{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m78_c00379{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m3_c00379{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-3.584672px;}
.ws1_c00379{word-spacing:0.000000px;}
.fc0_c00379{color:transparent;}
.fs3_c00379{font-size:3.420000px;}
.fs5_c00379{font-size:18.720000px;}
.fs1_c00379{font-size:20.400000px;}
.fs4_c00379{font-size:25.500000px;}
.fs0_c00379{font-size:28.920000px;}
.fs6_c00379{font-size:32.340000px;}
.fs2_c00379{font-size:35.700000px;}
.fs7_c00379{font-size:39.120000px;}
.y0_c00379{bottom:0.000000px;}
.yc7_c00379{bottom:253.245000px;}
.yc8_c00379{bottom:254.970000px;}
.yc6_c00379{bottom:255.405000px;}
.yc4_c00379{bottom:272.745000px;}
.yc2_c00379{bottom:273.405000px;}
.yc3_c00379{bottom:274.905000px;}
.yc5_c00379{bottom:275.970000px;}
.ybe_c00379{bottom:292.245000px;}
.ybd_c00379{bottom:293.130000px;}
.yc0_c00379{bottom:293.745000px;}
.ybc_c00379{bottom:294.405000px;}
.yc1_c00379{bottom:295.470000px;}
.ybf_c00379{bottom:295.905000px;}
.yb9_c00379{bottom:311.745000px;}
.ybb_c00379{bottom:313.245000px;}
.yb8_c00379{bottom:313.905000px;}
.yba_c00379{bottom:314.970000px;}
.yb6_c00379{bottom:331.470000px;}
.yb7_c00379{bottom:332.745000px;}
.yb3_c00379{bottom:333.405000px;}
.yb5_c00379{bottom:334.470000px;}
.yb4_c00379{bottom:334.905000px;}
.yb2_c00379{bottom:351.825000px;}
.yaf_c00379{bottom:352.245000px;}
.yb1_c00379{bottom:353.970000px;}
.yae_c00379{bottom:354.405000px;}
.yb0_c00379{bottom:355.470000px;}
.yad_c00379{bottom:369.405000px;}
.yaa_c00379{bottom:372.825000px;}
.ya9_c00379{bottom:373.905000px;}
.yac_c00379{bottom:374.970000px;}
.yab_c00379{bottom:375.405000px;}
.ya6_c00379{bottom:391.245000px;}
.ya8_c00379{bottom:392.130000px;}
.ya5_c00379{bottom:393.405000px;}
.ya7_c00379{bottom:393.630000px;}
.ya4_c00379{bottom:394.470000px;}
.ya0_c00379{bottom:410.745000px;}
.ya1_c00379{bottom:412.905000px;}
.ya3_c00379{bottom:413.970000px;}
.ya2_c00379{bottom:414.405000px;}
.y9b_c00379{bottom:429.405000px;}
.y9e_c00379{bottom:430.245000px;}
.y9d_c00379{bottom:431.745000px;}
.y9a_c00379{bottom:432.405000px;}
.y9f_c00379{bottom:432.630000px;}
.y9c_c00379{bottom:433.905000px;}
.y99_c00379{bottom:449.745000px;}
.y96_c00379{bottom:451.245000px;}
.y94_c00379{bottom:451.905000px;}
.y97_c00379{bottom:452.130000px;}
.y95_c00379{bottom:452.970000px;}
.y98_c00379{bottom:453.405000px;}
.y90_c00379{bottom:469.680000px;}
.y92_c00379{bottom:470.745000px;}
.y91_c00379{bottom:472.905000px;}
.y93_c00379{bottom:473.970000px;}
.y8f_c00379{bottom:487.905000px;}
.y8c_c00379{bottom:490.245000px;}
.y8e_c00379{bottom:491.325000px;}
.y8d_c00379{bottom:492.405000px;}
.y8b_c00379{bottom:508.905000px;}
.y8a_c00379{bottom:509.745000px;}
.y88_c00379{bottom:511.905000px;}
.y89_c00379{bottom:512.130000px;}
.y87_c00379{bottom:528.405000px;}
.y86_c00379{bottom:529.245000px;}
.y83_c00379{bottom:530.325000px;}
.y84_c00379{bottom:531.405000px;}
.y85_c00379{bottom:532.470000px;}
.y80_c00379{bottom:547.905000px;}
.y7f_c00379{bottom:550.245000px;}
.y81_c00379{bottom:550.905000px;}
.y82_c00379{bottom:551.970000px;}
.y7e_c00379{bottom:552.405000px;}
.y7d_c00379{bottom:567.405000px;}
.y78_c00379{bottom:569.745000px;}
.y79_c00379{bottom:570.630000px;}
.y7b_c00379{bottom:570.825000px;}
.y7a_c00379{bottom:571.905000px;}
.y7c_c00379{bottom:572.970000px;}
.y75_c00379{bottom:587.745000px;}
.y76_c00379{bottom:588.825000px;}
.y77_c00379{bottom:589.905000px;}
.y73_c00379{bottom:590.130000px;}
.y74_c00379{bottom:590.325000px;}
.y72_c00379{bottom:591.405000px;}
.y70_c00379{bottom:606.405000px;}
.y6e_c00379{bottom:608.745000px;}
.y6f_c00379{bottom:609.630000px;}
.y71_c00379{bottom:610.470000px;}
.y6d_c00379{bottom:610.905000px;}
.y6a_c00379{bottom:628.245000px;}
.y6c_c00379{bottom:629.130000px;}
.y6b_c00379{bottom:629.325000px;}
.y69_c00379{bottom:630.405000px;}
.y66_c00379{bottom:647.325000px;}
.y67_c00379{bottom:647.745000px;}
.y68_c00379{bottom:648.630000px;}
.y65_c00379{bottom:649.905000px;}
.y64_c00379{bottom:650.970000px;}
.y63_c00379{bottom:664.905000px;}
.y61_c00379{bottom:667.245000px;}
.y62_c00379{bottom:668.130000px;}
.y5f_c00379{bottom:669.405000px;}
.y60_c00379{bottom:670.470000px;}
.y5c_c00379{bottom:686.745000px;}
.y5d_c00379{bottom:688.905000px;}
.y5e_c00379{bottom:690.405000px;}
.y59_c00379{bottom:705.405000px;}
.y57_c00379{bottom:707.745000px;}
.y5b_c00379{bottom:708.405000px;}
.y5a_c00379{bottom:708.630000px;}
.y58_c00379{bottom:709.905000px;}
.y55_c00379{bottom:725.325000px;}
.y53_c00379{bottom:725.745000px;}
.y56_c00379{bottom:725.970000px;}
.y54_c00379{bottom:726.825000px;}
.y52_c00379{bottom:727.245000px;}
.y51_c00379{bottom:729.405000px;}
.y50_c00379{bottom:748.905000px;}
.y4f_c00379{bottom:763.905000px;}
.y4e_c00379{bottom:766.245000px;}
.y4d_c00379{bottom:767.325000px;}
.y4c_c00379{bottom:768.405000px;}
.y4b_c00379{bottom:785.745000px;}
.y4a_c00379{bottom:786.825000px;}
.y49_c00379{bottom:787.470000px;}
.y47_c00379{bottom:787.905000px;}
.y48_c00379{bottom:788.970000px;}
.y46_c00379{bottom:804.825000px;}
.y44_c00379{bottom:805.245000px;}
.y43_c00379{bottom:807.405000px;}
.y45_c00379{bottom:808.470000px;}
.y41_c00379{bottom:824.745000px;}
.y3f_c00379{bottom:826.470000px;}
.y3e_c00379{bottom:826.905000px;}
.y40_c00379{bottom:827.130000px;}
.y42_c00379{bottom:827.970000px;}
.y3c_c00379{bottom:843.405000px;}
.y3d_c00379{bottom:845.745000px;}
.y38_c00379{bottom:846.405000px;}
.y3a_c00379{bottom:846.630000px;}
.y3b_c00379{bottom:847.470000px;}
.y39_c00379{bottom:847.905000px;}
.y37_c00379{bottom:863.745000px;}
.y36_c00379{bottom:865.245000px;}
.y34_c00379{bottom:865.905000px;}
.y33_c00379{bottom:866.130000px;}
.y35_c00379{bottom:867.405000px;}
.y2e_c00379{bottom:882.825000px;}
.y31_c00379{bottom:883.905000px;}
.y2d_c00379{bottom:884.745000px;}
.y2f_c00379{bottom:885.630000px;}
.y32_c00379{bottom:885.825000px;}
.y30_c00379{bottom:886.905000px;}
.y2c_c00379{bottom:904.245000px;}
.y2a_c00379{bottom:906.405000px;}
.y2b_c00379{bottom:907.470000px;}
.y27_c00379{bottom:922.470000px;}
.y24_c00379{bottom:923.745000px;}
.y29_c00379{bottom:924.630000px;}
.y28_c00379{bottom:925.050000px;}
.y25_c00379{bottom:925.905000px;}
.y26_c00379{bottom:926.970000px;}
.y21_c00379{bottom:941.970000px;}
.y22_c00379{bottom:943.245000px;}
.y1e_c00379{bottom:944.130000px;}
.y20_c00379{bottom:944.970000px;}
.y1f_c00379{bottom:945.405000px;}
.y23_c00379{bottom:946.470000px;}
.y1b_c00379{bottom:962.745000px;}
.y1d_c00379{bottom:962.970000px;}
.y19_c00379{bottom:964.905000px;}
.y1a_c00379{bottom:965.130000px;}
.y1c_c00379{bottom:965.970000px;}
.y16_c00379{bottom:982.245000px;}
.y15_c00379{bottom:984.405000px;}
.y18_c00379{bottom:984.630000px;}
.y17_c00379{bottom:985.470000px;}
.y13_c00379{bottom:1001.745000px;}
.y12_c00379{bottom:1002.825000px;}
.y11_c00379{bottom:1003.905000px;}
.y14_c00379{bottom:1004.130000px;}
.y10_c00379{bottom:1021.245000px;}
.ye_c00379{bottom:1022.325000px;}
.yd_c00379{bottom:1023.405000px;}
.yf_c00379{bottom:1024.470000px;}
.yc_c00379{bottom:1040.745000px;}
.y9_c00379{bottom:1042.245000px;}
.y8_c00379{bottom:1042.905000px;}
.yb_c00379{bottom:1043.970000px;}
.ya_c00379{bottom:1044.405000px;}
.y3_c00379{bottom:1061.745000px;}
.y7_c00379{bottom:1062.630000px;}
.y6_c00379{bottom:1063.470000px;}
.y5_c00379{bottom:1063.905000px;}
.y4_c00379{bottom:1063.920000px;}
.y1_c00379{bottom:1099.905000px;}
.y2_c00379{bottom:1102.050000px;}
.h4_c00379{height:4.206533px;}
.h6_c00379{height:23.025234px;}
.h2_c00379{height:25.091602px;}
.h5_c00379{height:31.364502px;}
.h1_c00379{height:35.571035px;}
.h7_c00379{height:39.777568px;}
.h3_c00379{height:43.910303px;}
.h8_c00379{height:48.116836px;}
.h0_c00379{height:1335.000000px;}
.w0_c00379{width:880.500000px;}
.x0_c00379{left:0.000000px;}
.x92_c00379{left:151.500000px;}
.x1_c00379{left:152.580000px;}
.xac_c00379{left:167.580000px;}
.x3_c00379{left:169.080000px;}
.x1c_c00379{left:171.420000px;}
.x69_c00379{left:172.920000px;}
.x7a_c00379{left:174.420000px;}
.x10_c00379{left:175.920000px;}
.x8b_c00379{left:182.580000px;}
.xbe_c00379{left:189.000000px;}
.xb6_c00379{left:190.500000px;}
.x9b_c00379{left:192.000000px;}
.xe4_c00379{left:193.500000px;}
.x5c_c00379{left:196.500000px;}
.x1d_c00379{left:198.420000px;}
.xe9_c00379{left:199.920000px;}
.x7b_c00379{left:201.000000px;}
.x35_c00379{left:205.500000px;}
.xd1_c00379{left:208.500000px;}
.x2c_c00379{left:211.080000px;}
.xcd_c00379{left:213.420000px;}
.x5d_c00379{left:214.920000px;}
.x84_c00379{left:216.420000px;}
.x4e_c00379{left:217.920000px;}
.xd6_c00379{left:219.420000px;}
.x41_c00379{left:220.500000px;}
.xad_c00379{left:222.420000px;}
.xdf_c00379{left:223.920000px;}
.x9c_c00379{left:226.920000px;}
.xbf_c00379{left:228.420000px;}
.x36_c00379{left:229.920000px;}
.xf8_c00379{left:232.500000px;}
.x6a_c00379{left:234.000000px;}
.x7c_c00379{left:236.580000px;}
.xa4_c00379{left:238.500000px;}
.x42_c00379{left:240.420000px;}
.x5e_c00379{left:243.000000px;}
.x4f_c00379{left:244.500000px;}
.xb7_c00379{left:246.000000px;}
.xef_c00379{left:248.580000px;}
.xe0_c00379{left:250.500000px;}
.x8c_c00379{left:252.000000px;}
.xe5_c00379{left:253.500000px;}
.x1e_c00379{left:255.420000px;}
.x4_c00379{left:256.500000px;}
.x101_c00379{left:259.500000px;}
.x105_c00379{left:260.580000px;}
.x6b_c00379{left:262.920000px;}
.x7d_c00379{left:266.580000px;}
.xc8_c00379{left:268.920000px;}
.x11_c00379{left:271.920000px;}
.x72_c00379{left:273.420000px;}
.x2d_c00379{left:274.500000px;}
.xfe_c00379{left:276.000000px;}
.x5_c00379{left:277.500000px;}
.xf0_c00379{left:279.000000px;}
.xe1_c00379{left:280.500000px;}
.x1f_c00379{left:282.000000px;}
.x9d_c00379{left:283.500000px;}
.xc0_c00379{left:285.420000px;}
.xae_c00379{left:289.500000px;}
.x37_c00379{left:291.420000px;}
.xd2_c00379{left:295.920000px;}
.x107_c00379{left:297.420000px;}
.x50_c00379{left:300.420000px;}
.xa5_c00379{left:301.920000px;}
.x7e_c00379{left:304.080000px;}
.x6_c00379{left:306.000000px;}
.xc6_c00379{left:307.080000px;}
.x12_c00379{left:310.920000px;}
.xaf_c00379{left:314.580000px;}
.x93_c00379{left:316.500000px;}
.x20_c00379{left:319.080000px;}
.xf1_c00379{left:321.855000px;}
.x38_c00379{left:325.500000px;}
.x51_c00379{left:326.580000px;}
.x85_c00379{left:328.920000px;}
.xb0_c00379{left:330.000000px;}
.x2e_c00379{left:331.920000px;}
.x6c_c00379{left:333.000000px;}
.x8d_c00379{left:336.000000px;}
.x13_c00379{left:337.500000px;}
.x73_c00379{left:338.580000px;}
.xb8_c00379{left:341.580000px;}
.x7_c00379{left:343.500000px;}
.x5f_c00379{left:344.580000px;}
.x43_c00379{left:346.080000px;}
.x21_c00379{left:349.920000px;}
.x7f_c00379{left:352.080000px;}
.x94_c00379{left:354.420000px;}
.x106_c00379{left:358.500000px;}
.xb1_c00379{left:360.000000px;}
.xa6_c00379{left:363.420000px;}
.x39_c00379{left:365.580000px;}
.xea_c00379{left:367.500000px;}
.x74_c00379{left:369.420000px;}
.xb9_c00379{left:371.580000px;}
.x14_c00379{left:373.500000px;}
.xb2_c00379{left:375.000000px;}
.x22_c00379{left:376.500000px;}
.xc1_c00379{left:379.080000px;}
.x95_c00379{left:381.420000px;}
.x60_c00379{left:382.500000px;}
.xdb_c00379{left:383.580000px;}
.x3a_c00379{left:385.920000px;}
.x2f_c00379{left:387.000000px;}
.x44_c00379{left:390.000000px;}
.x2_c00379{left:391.500000px;}
.xb3_c00379{left:393.000000px;}
.x86_c00379{left:396.000000px;}
.x52_c00379{left:398.580000px;}
.x8_c00379{left:401.580000px;}
.xd3_c00379{left:403.500000px;}
.x96_c00379{left:407.580000px;}
.x80_c00379{left:409.920000px;}
.xe2_c00379{left:411.000000px;}
.xed_c00379{left:412.500000px;}
.x3b_c00379{left:414.000000px;}
.x8e_c00379{left:418.920000px;}
.x45_c00379{left:421.920000px;}
.x75_c00379{left:426.420000px;}
.x15_c00379{left:427.920000px;}
.x61_c00379{left:429.000000px;}
.x23_c00379{left:430.500000px;}
.x102_c00379{left:435.000000px;}
.xc9_c00379{left:436.080000px;}
.xf6_c00379{left:437.580000px;}
.x9e_c00379{left:441.000000px;}
.x30_c00379{left:445.500000px;}
.x3c_c00379{left:446.580000px;}
.xba_c00379{left:448.500000px;}
.x6d_c00379{left:451.275000px;}
.xd7_c00379{left:453.000000px;}
.x81_c00379{left:454.920000px;}
.x46_c00379{left:456.000000px;}
.x87_c00379{left:457.080000px;}
.x9f_c00379{left:459.420000px;}
.x9_c00379{left:460.500000px;}
.x24_c00379{left:462.420000px;}
.x53_c00379{left:465.000000px;}
.xa7_c00379{left:468.000000px;}
.x76_c00379{left:471.000000px;}
.xd8_c00379{left:472.920000px;}
.xff_c00379{left:475.500000px;}
.xdc_c00379{left:476.580000px;}
.x3d_c00379{left:478.920000px;}
.xbb_c00379{left:481.080000px;}
.xc7_c00379{left:482.580000px;}
.x31_c00379{left:484.920000px;}
.x88_c00379{left:486.420000px;}
.x54_c00379{left:487.500000px;}
.x108_c00379{left:489.420000px;}
.x16_c00379{left:490.920000px;}
.x47_c00379{left:494.580000px;}
.x62_c00379{left:496.500000px;}
.x6e_c00379{left:498.000000px;}
.xb4_c00379{left:499.920000px;}
.xd9_c00379{left:501.420000px;}
.x97_c00379{left:502.500000px;}
.xc4_c00379{left:504.000000px;}
.x55_c00379{left:505.920000px;}
.xce_c00379{left:508.080000px;}
.xc2_c00379{left:510.420000px;}
.xf2_c00379{left:511.500000px;}
.x48_c00379{left:514.920000px;}
.x25_c00379{left:516.000000px;}
.xe3_c00379{left:519.000000px;}
.xa0_c00379{left:522.000000px;}
.xf9_c00379{left:523.500000px;}
.x8f_c00379{left:524.580000px;}
.xa_c00379{left:528.000000px;}
.xcf_c00379{left:529.500000px;}
.x56_c00379{left:532.500000px;}
.xd4_c00379{left:534.420000px;}
.x17_c00379{left:535.500000px;}
.x10a_c00379{left:537.420000px;}
.xa8_c00379{left:538.500000px;}
.x82_c00379{left:540.000000px;}
.x49_c00379{left:541.500000px;}
.x77_c00379{left:544.080000px;}
.x98_c00379{left:547.500000px;}
.xb_c00379{left:549.000000px;}
.x63_c00379{left:551.580000px;}
.x109_c00379{left:553.500000px;}
.x32_c00379{left:555.000000px;}
.xd5_c00379{left:558.000000px;}
.x103_c00379{left:559.500000px;}
.xee_c00379{left:562.500000px;}
.x26_c00379{left:563.580000px;}
.x3e_c00379{left:567.000000px;}
.x57_c00379{left:568.500000px;}
.x64_c00379{left:570.420000px;}
.xca_c00379{left:571.500000px;}
.xa1_c00379{left:573.000000px;}
.xd0_c00379{left:574.920000px;}
.xc5_c00379{left:577.500000px;}
.x99_c00379{left:580.920000px;}
.x27_c00379{left:582.000000px;}
.xb5_c00379{left:583.500000px;}
.x89_c00379{left:584.580000px;}
.x18_c00379{left:586.500000px;}
.x4a_c00379{left:588.000000px;}
.xfa_c00379{left:592.500000px;}
.xc_c00379{left:594.420000px;}
.x78_c00379{left:595.500000px;}
.xf7_c00379{left:597.000000px;}
.x65_c00379{left:598.500000px;}
.xe6_c00379{left:600.420000px;}
.x33_c00379{left:601.500000px;}
.x83_c00379{left:603.000000px;}
.x19_c00379{left:604.920000px;}
.x90_c00379{left:606.000000px;}
.x28_c00379{left:607.080000px;}
.xda_c00379{left:609.000000px;}
.x6f_c00379{left:610.920000px;}
.x10b_c00379{left:615.000000px;}
.x100_c00379{left:616.920000px;}
.xdd_c00379{left:618.000000px;}
.xa2_c00379{left:619.500000px;}
.xd_c00379{left:620.580000px;}
.x34_c00379{left:622.920000px;}
.x58_c00379{left:624.420000px;}
.xfb_c00379{left:625.920000px;}
.xeb_c00379{left:628.920000px;}
.xa9_c00379{left:630.000000px;}
.x1a_c00379{left:631.500000px;}
.xe7_c00379{left:632.580000px;}
.x4b_c00379{left:634.080000px;}
.x3f_c00379{left:637.500000px;}
.x29_c00379{left:638.580000px;}
.xcb_c00379{left:641.580000px;}
.x66_c00379{left:644.580000px;}
.xf3_c00379{left:646.500000px;}
.xaa_c00379{left:648.000000px;}
.xbc_c00379{left:649.080000px;}
.x9a_c00379{left:651.000000px;}
.xe8_c00379{left:652.920000px;}
.x70_c00379{left:655.500000px;}
.x2a_c00379{left:657.420000px;}
.xcc_c00379{left:660.000000px;}
.x8a_c00379{left:661.500000px;}
.xe_c00379{left:663.420000px;}
.x59_c00379{left:664.500000px;}
.xa3_c00379{left:666.000000px;}
.x4c_c00379{left:669.420000px;}
.xbd_c00379{left:670.500000px;}
.x71_c00379{left:672.000000px;}
.xfd_c00379{left:673.920000px;}
.x91_c00379{left:675.000000px;}
.xde_c00379{left:676.080000px;}
.x5a_c00379{left:681.000000px;}
.x2b_c00379{left:683.580000px;}
.x104_c00379{left:687.000000px;}
.x1b_c00379{left:688.500000px;}
.x67_c00379{left:690.420000px;}
.xf_c00379{left:691.500000px;}
.x5b_c00379{left:693.000000px;}
.xec_c00379{left:694.920000px;}
.x79_c00379{left:696.000000px;}
.x40_c00379{left:697.920000px;}
.xf4_c00379{left:700.500000px;}
.xc3_c00379{left:703.500000px;}
.xab_c00379{left:704.580000px;}
.x4d_c00379{left:708.000000px;}
.x68_c00379{left:709.920000px;}
.xfc_c00379{left:717.000000px;}
.xf5_c00379{left:723.000000px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.ls0_c00379{letter-spacing:0.000000pt;}
.ws0_c00379{word-spacing:-3.186375pt;}
.ws1_c00379{word-spacing:0.000000pt;}
.fs3_c00379{font-size:3.040000pt;}
.fs5_c00379{font-size:16.640000pt;}
.fs1_c00379{font-size:18.133333pt;}
.fs4_c00379{font-size:22.666667pt;}
.fs0_c00379{font-size:25.706667pt;}
.fs6_c00379{font-size:28.746667pt;}
.fs2_c00379{font-size:31.733333pt;}
.fs7_c00379{font-size:34.773333pt;}
.y0_c00379{bottom:0.000000pt;}
.yc7_c00379{bottom:225.106667pt;}
.yc8_c00379{bottom:226.640000pt;}
.yc6_c00379{bottom:227.026667pt;}
.yc4_c00379{bottom:242.440000pt;}
.yc2_c00379{bottom:243.026667pt;}
.yc3_c00379{bottom:244.360000pt;}
.yc5_c00379{bottom:245.306667pt;}
.ybe_c00379{bottom:259.773333pt;}
.ybd_c00379{bottom:260.560000pt;}
.yc0_c00379{bottom:261.106667pt;}
.ybc_c00379{bottom:261.693333pt;}
.yc1_c00379{bottom:262.640000pt;}
.ybf_c00379{bottom:263.026667pt;}
.yb9_c00379{bottom:277.106667pt;}
.ybb_c00379{bottom:278.440000pt;}
.yb8_c00379{bottom:279.026667pt;}
.yba_c00379{bottom:279.973333pt;}
.yb6_c00379{bottom:294.640000pt;}
.yb7_c00379{bottom:295.773333pt;}
.yb3_c00379{bottom:296.360000pt;}
.yb5_c00379{bottom:297.306667pt;}
.yb4_c00379{bottom:297.693333pt;}
.yb2_c00379{bottom:312.733333pt;}
.yaf_c00379{bottom:313.106667pt;}
.yb1_c00379{bottom:314.640000pt;}
.yae_c00379{bottom:315.026667pt;}
.yb0_c00379{bottom:315.973333pt;}
.yad_c00379{bottom:328.360000pt;}
.yaa_c00379{bottom:331.400000pt;}
.ya9_c00379{bottom:332.360000pt;}
.yac_c00379{bottom:333.306667pt;}
.yab_c00379{bottom:333.693333pt;}
.ya6_c00379{bottom:347.773333pt;}
.ya8_c00379{bottom:348.560000pt;}
.ya5_c00379{bottom:349.693333pt;}
.ya7_c00379{bottom:349.893333pt;}
.ya4_c00379{bottom:350.640000pt;}
.ya0_c00379{bottom:365.106667pt;}
.ya1_c00379{bottom:367.026667pt;}
.ya3_c00379{bottom:367.973333pt;}
.ya2_c00379{bottom:368.360000pt;}
.y9b_c00379{bottom:381.693333pt;}
.y9e_c00379{bottom:382.440000pt;}
.y9d_c00379{bottom:383.773333pt;}
.y9a_c00379{bottom:384.360000pt;}
.y9f_c00379{bottom:384.560000pt;}
.y9c_c00379{bottom:385.693333pt;}
.y99_c00379{bottom:399.773333pt;}
.y96_c00379{bottom:401.106667pt;}
.y94_c00379{bottom:401.693333pt;}
.y97_c00379{bottom:401.893333pt;}
.y95_c00379{bottom:402.640000pt;}
.y98_c00379{bottom:403.026667pt;}
.y90_c00379{bottom:417.493333pt;}
.y92_c00379{bottom:418.440000pt;}
.y91_c00379{bottom:420.360000pt;}
.y93_c00379{bottom:421.306667pt;}
.y8f_c00379{bottom:433.693333pt;}
.y8c_c00379{bottom:435.773333pt;}
.y8e_c00379{bottom:436.733333pt;}
.y8d_c00379{bottom:437.693333pt;}
.y8b_c00379{bottom:452.360000pt;}
.y8a_c00379{bottom:453.106667pt;}
.y88_c00379{bottom:455.026667pt;}
.y89_c00379{bottom:455.226667pt;}
.y87_c00379{bottom:469.693333pt;}
.y86_c00379{bottom:470.440000pt;}
.y83_c00379{bottom:471.400000pt;}
.y84_c00379{bottom:472.360000pt;}
.y85_c00379{bottom:473.306667pt;}
.y80_c00379{bottom:487.026667pt;}
.y7f_c00379{bottom:489.106667pt;}
.y81_c00379{bottom:489.693333pt;}
.y82_c00379{bottom:490.640000pt;}
.y7e_c00379{bottom:491.026667pt;}
.y7d_c00379{bottom:504.360000pt;}
.y78_c00379{bottom:506.440000pt;}
.y79_c00379{bottom:507.226667pt;}
.y7b_c00379{bottom:507.400000pt;}
.y7a_c00379{bottom:508.360000pt;}
.y7c_c00379{bottom:509.306667pt;}
.y75_c00379{bottom:522.440000pt;}
.y76_c00379{bottom:523.400000pt;}
.y77_c00379{bottom:524.360000pt;}
.y73_c00379{bottom:524.560000pt;}
.y74_c00379{bottom:524.733333pt;}
.y72_c00379{bottom:525.693333pt;}
.y70_c00379{bottom:539.026667pt;}
.y6e_c00379{bottom:541.106667pt;}
.y6f_c00379{bottom:541.893333pt;}
.y71_c00379{bottom:542.640000pt;}
.y6d_c00379{bottom:543.026667pt;}
.y6a_c00379{bottom:558.440000pt;}
.y6c_c00379{bottom:559.226667pt;}
.y6b_c00379{bottom:559.400000pt;}
.y69_c00379{bottom:560.360000pt;}
.y66_c00379{bottom:575.400000pt;}
.y67_c00379{bottom:575.773333pt;}
.y68_c00379{bottom:576.560000pt;}
.y65_c00379{bottom:577.693333pt;}
.y64_c00379{bottom:578.640000pt;}
.y63_c00379{bottom:591.026667pt;}
.y61_c00379{bottom:593.106667pt;}
.y62_c00379{bottom:593.893333pt;}
.y5f_c00379{bottom:595.026667pt;}
.y60_c00379{bottom:595.973333pt;}
.y5c_c00379{bottom:610.440000pt;}
.y5d_c00379{bottom:612.360000pt;}
.y5e_c00379{bottom:613.693333pt;}
.y59_c00379{bottom:627.026667pt;}
.y57_c00379{bottom:629.106667pt;}
.y5b_c00379{bottom:629.693333pt;}
.y5a_c00379{bottom:629.893333pt;}
.y58_c00379{bottom:631.026667pt;}
.y55_c00379{bottom:644.733333pt;}
.y53_c00379{bottom:645.106667pt;}
.y56_c00379{bottom:645.306667pt;}
.y54_c00379{bottom:646.066667pt;}
.y52_c00379{bottom:646.440000pt;}
.y51_c00379{bottom:648.360000pt;}
.y50_c00379{bottom:665.693333pt;}
.y4f_c00379{bottom:679.026667pt;}
.y4e_c00379{bottom:681.106667pt;}
.y4d_c00379{bottom:682.066667pt;}
.y4c_c00379{bottom:683.026667pt;}
.y4b_c00379{bottom:698.440000pt;}
.y4a_c00379{bottom:699.400000pt;}
.y49_c00379{bottom:699.973333pt;}
.y47_c00379{bottom:700.360000pt;}
.y48_c00379{bottom:701.306667pt;}
.y46_c00379{bottom:715.400000pt;}
.y44_c00379{bottom:715.773333pt;}
.y43_c00379{bottom:717.693333pt;}
.y45_c00379{bottom:718.640000pt;}
.y41_c00379{bottom:733.106667pt;}
.y3f_c00379{bottom:734.640000pt;}
.y3e_c00379{bottom:735.026667pt;}
.y40_c00379{bottom:735.226667pt;}
.y42_c00379{bottom:735.973333pt;}
.y3c_c00379{bottom:749.693333pt;}
.y3d_c00379{bottom:751.773333pt;}
.y38_c00379{bottom:752.360000pt;}
.y3a_c00379{bottom:752.560000pt;}
.y3b_c00379{bottom:753.306667pt;}
.y39_c00379{bottom:753.693333pt;}
.y37_c00379{bottom:767.773333pt;}
.y36_c00379{bottom:769.106667pt;}
.y34_c00379{bottom:769.693333pt;}
.y33_c00379{bottom:769.893333pt;}
.y35_c00379{bottom:771.026667pt;}
.y2e_c00379{bottom:784.733333pt;}
.y31_c00379{bottom:785.693333pt;}
.y2d_c00379{bottom:786.440000pt;}
.y2f_c00379{bottom:787.226667pt;}
.y32_c00379{bottom:787.400000pt;}
.y30_c00379{bottom:788.360000pt;}
.y2c_c00379{bottom:803.773333pt;}
.y2a_c00379{bottom:805.693333pt;}
.y2b_c00379{bottom:806.640000pt;}
.y27_c00379{bottom:819.973333pt;}
.y24_c00379{bottom:821.106667pt;}
.y29_c00379{bottom:821.893333pt;}
.y28_c00379{bottom:822.266667pt;}
.y25_c00379{bottom:823.026667pt;}
.y26_c00379{bottom:823.973333pt;}
.y21_c00379{bottom:837.306667pt;}
.y22_c00379{bottom:838.440000pt;}
.y1e_c00379{bottom:839.226667pt;}
.y20_c00379{bottom:839.973333pt;}
.y1f_c00379{bottom:840.360000pt;}
.y23_c00379{bottom:841.306667pt;}
.y1b_c00379{bottom:855.773333pt;}
.y1d_c00379{bottom:855.973333pt;}
.y19_c00379{bottom:857.693333pt;}
.y1a_c00379{bottom:857.893333pt;}
.y1c_c00379{bottom:858.640000pt;}
.y16_c00379{bottom:873.106667pt;}
.y15_c00379{bottom:875.026667pt;}
.y18_c00379{bottom:875.226667pt;}
.y17_c00379{bottom:875.973333pt;}
.y13_c00379{bottom:890.440000pt;}
.y12_c00379{bottom:891.400000pt;}
.y11_c00379{bottom:892.360000pt;}
.y14_c00379{bottom:892.560000pt;}
.y10_c00379{bottom:907.773333pt;}
.ye_c00379{bottom:908.733333pt;}
.yd_c00379{bottom:909.693333pt;}
.yf_c00379{bottom:910.640000pt;}
.yc_c00379{bottom:925.106667pt;}
.y9_c00379{bottom:926.440000pt;}
.y8_c00379{bottom:927.026667pt;}
.yb_c00379{bottom:927.973333pt;}
.ya_c00379{bottom:928.360000pt;}
.y3_c00379{bottom:943.773333pt;}
.y7_c00379{bottom:944.560000pt;}
.y6_c00379{bottom:945.306667pt;}
.y5_c00379{bottom:945.693333pt;}
.y4_c00379{bottom:945.706667pt;}
.y1_c00379{bottom:977.693333pt;}
.y2_c00379{bottom:979.600000pt;}
.h4_c00379{height:3.739141pt;}
.h6_c00379{height:20.466875pt;}
.h2_c00379{height:22.303646pt;}
.h5_c00379{height:27.879557pt;}
.h1_c00379{height:31.618698pt;}
.h7_c00379{height:35.357839pt;}
.h3_c00379{height:39.031380pt;}
.h8_c00379{height:42.770521pt;}
.h0_c00379{height:1186.666667pt;}
.w0_c00379{width:782.666667pt;}
.x0_c00379{left:0.000000pt;}
.x92_c00379{left:134.666667pt;}
.x1_c00379{left:135.626667pt;}
.xac_c00379{left:148.960000pt;}
.x3_c00379{left:150.293333pt;}
.x1c_c00379{left:152.373333pt;}
.x69_c00379{left:153.706667pt;}
.x7a_c00379{left:155.040000pt;}
.x10_c00379{left:156.373333pt;}
.x8b_c00379{left:162.293333pt;}
.xbe_c00379{left:168.000000pt;}
.xb6_c00379{left:169.333333pt;}
.x9b_c00379{left:170.666667pt;}
.xe4_c00379{left:172.000000pt;}
.x5c_c00379{left:174.666667pt;}
.x1d_c00379{left:176.373333pt;}
.xe9_c00379{left:177.706667pt;}
.x7b_c00379{left:178.666667pt;}
.x35_c00379{left:182.666667pt;}
.xd1_c00379{left:185.333333pt;}
.x2c_c00379{left:187.626667pt;}
.xcd_c00379{left:189.706667pt;}
.x5d_c00379{left:191.040000pt;}
.x84_c00379{left:192.373333pt;}
.x4e_c00379{left:193.706667pt;}
.xd6_c00379{left:195.040000pt;}
.x41_c00379{left:196.000000pt;}
.xad_c00379{left:197.706667pt;}
.xdf_c00379{left:199.040000pt;}
.x9c_c00379{left:201.706667pt;}
.xbf_c00379{left:203.040000pt;}
.x36_c00379{left:204.373333pt;}
.xf8_c00379{left:206.666667pt;}
.x6a_c00379{left:208.000000pt;}
.x7c_c00379{left:210.293333pt;}
.xa4_c00379{left:212.000000pt;}
.x42_c00379{left:213.706667pt;}
.x5e_c00379{left:216.000000pt;}
.x4f_c00379{left:217.333333pt;}
.xb7_c00379{left:218.666667pt;}
.xef_c00379{left:220.960000pt;}
.xe0_c00379{left:222.666667pt;}
.x8c_c00379{left:224.000000pt;}
.xe5_c00379{left:225.333333pt;}
.x1e_c00379{left:227.040000pt;}
.x4_c00379{left:228.000000pt;}
.x101_c00379{left:230.666667pt;}
.x105_c00379{left:231.626667pt;}
.x6b_c00379{left:233.706667pt;}
.x7d_c00379{left:236.960000pt;}
.xc8_c00379{left:239.040000pt;}
.x11_c00379{left:241.706667pt;}
.x72_c00379{left:243.040000pt;}
.x2d_c00379{left:244.000000pt;}
.xfe_c00379{left:245.333333pt;}
.x5_c00379{left:246.666667pt;}
.xf0_c00379{left:248.000000pt;}
.xe1_c00379{left:249.333333pt;}
.x1f_c00379{left:250.666667pt;}
.x9d_c00379{left:252.000000pt;}
.xc0_c00379{left:253.706667pt;}
.xae_c00379{left:257.333333pt;}
.x37_c00379{left:259.040000pt;}
.xd2_c00379{left:263.040000pt;}
.x107_c00379{left:264.373333pt;}
.x50_c00379{left:267.040000pt;}
.xa5_c00379{left:268.373333pt;}
.x7e_c00379{left:270.293333pt;}
.x6_c00379{left:272.000000pt;}
.xc6_c00379{left:272.960000pt;}
.x12_c00379{left:276.373333pt;}
.xaf_c00379{left:279.626667pt;}
.x93_c00379{left:281.333333pt;}
.x20_c00379{left:283.626667pt;}
.xf1_c00379{left:286.093333pt;}
.x38_c00379{left:289.333333pt;}
.x51_c00379{left:290.293333pt;}
.x85_c00379{left:292.373333pt;}
.xb0_c00379{left:293.333333pt;}
.x2e_c00379{left:295.040000pt;}
.x6c_c00379{left:296.000000pt;}
.x8d_c00379{left:298.666667pt;}
.x13_c00379{left:300.000000pt;}
.x73_c00379{left:300.960000pt;}
.xb8_c00379{left:303.626667pt;}
.x7_c00379{left:305.333333pt;}
.x5f_c00379{left:306.293333pt;}
.x43_c00379{left:307.626667pt;}
.x21_c00379{left:311.040000pt;}
.x7f_c00379{left:312.960000pt;}
.x94_c00379{left:315.040000pt;}
.x106_c00379{left:318.666667pt;}
.xb1_c00379{left:320.000000pt;}
.xa6_c00379{left:323.040000pt;}
.x39_c00379{left:324.960000pt;}
.xea_c00379{left:326.666667pt;}
.x74_c00379{left:328.373333pt;}
.xb9_c00379{left:330.293333pt;}
.x14_c00379{left:332.000000pt;}
.xb2_c00379{left:333.333333pt;}
.x22_c00379{left:334.666667pt;}
.xc1_c00379{left:336.960000pt;}
.x95_c00379{left:339.040000pt;}
.x60_c00379{left:340.000000pt;}
.xdb_c00379{left:340.960000pt;}
.x3a_c00379{left:343.040000pt;}
.x2f_c00379{left:344.000000pt;}
.x44_c00379{left:346.666667pt;}
.x2_c00379{left:348.000000pt;}
.xb3_c00379{left:349.333333pt;}
.x86_c00379{left:352.000000pt;}
.x52_c00379{left:354.293333pt;}
.x8_c00379{left:356.960000pt;}
.xd3_c00379{left:358.666667pt;}
.x96_c00379{left:362.293333pt;}
.x80_c00379{left:364.373333pt;}
.xe2_c00379{left:365.333333pt;}
.xed_c00379{left:366.666667pt;}
.x3b_c00379{left:368.000000pt;}
.x8e_c00379{left:372.373333pt;}
.x45_c00379{left:375.040000pt;}
.x75_c00379{left:379.040000pt;}
.x15_c00379{left:380.373333pt;}
.x61_c00379{left:381.333333pt;}
.x23_c00379{left:382.666667pt;}
.x102_c00379{left:386.666667pt;}
.xc9_c00379{left:387.626667pt;}
.xf6_c00379{left:388.960000pt;}
.x9e_c00379{left:392.000000pt;}
.x30_c00379{left:396.000000pt;}
.x3c_c00379{left:396.960000pt;}
.xba_c00379{left:398.666667pt;}
.x6d_c00379{left:401.133333pt;}
.xd7_c00379{left:402.666667pt;}
.x81_c00379{left:404.373333pt;}
.x46_c00379{left:405.333333pt;}
.x87_c00379{left:406.293333pt;}
.x9f_c00379{left:408.373333pt;}
.x9_c00379{left:409.333333pt;}
.x24_c00379{left:411.040000pt;}
.x53_c00379{left:413.333333pt;}
.xa7_c00379{left:416.000000pt;}
.x76_c00379{left:418.666667pt;}
.xd8_c00379{left:420.373333pt;}
.xff_c00379{left:422.666667pt;}
.xdc_c00379{left:423.626667pt;}
.x3d_c00379{left:425.706667pt;}
.xbb_c00379{left:427.626667pt;}
.xc7_c00379{left:428.960000pt;}
.x31_c00379{left:431.040000pt;}
.x88_c00379{left:432.373333pt;}
.x54_c00379{left:433.333333pt;}
.x108_c00379{left:435.040000pt;}
.x16_c00379{left:436.373333pt;}
.x47_c00379{left:439.626667pt;}
.x62_c00379{left:441.333333pt;}
.x6e_c00379{left:442.666667pt;}
.xb4_c00379{left:444.373333pt;}
.xd9_c00379{left:445.706667pt;}
.x97_c00379{left:446.666667pt;}
.xc4_c00379{left:448.000000pt;}
.x55_c00379{left:449.706667pt;}
.xce_c00379{left:451.626667pt;}
.xc2_c00379{left:453.706667pt;}
.xf2_c00379{left:454.666667pt;}
.x48_c00379{left:457.706667pt;}
.x25_c00379{left:458.666667pt;}
.xe3_c00379{left:461.333333pt;}
.xa0_c00379{left:464.000000pt;}
.xf9_c00379{left:465.333333pt;}
.x8f_c00379{left:466.293333pt;}
.xa_c00379{left:469.333333pt;}
.xcf_c00379{left:470.666667pt;}
.x56_c00379{left:473.333333pt;}
.xd4_c00379{left:475.040000pt;}
.x17_c00379{left:476.000000pt;}
.x10a_c00379{left:477.706667pt;}
.xa8_c00379{left:478.666667pt;}
.x82_c00379{left:480.000000pt;}
.x49_c00379{left:481.333333pt;}
.x77_c00379{left:483.626667pt;}
.x98_c00379{left:486.666667pt;}
.xb_c00379{left:488.000000pt;}
.x63_c00379{left:490.293333pt;}
.x109_c00379{left:492.000000pt;}
.x32_c00379{left:493.333333pt;}
.xd5_c00379{left:496.000000pt;}
.x103_c00379{left:497.333333pt;}
.xee_c00379{left:500.000000pt;}
.x26_c00379{left:500.960000pt;}
.x3e_c00379{left:504.000000pt;}
.x57_c00379{left:505.333333pt;}
.x64_c00379{left:507.040000pt;}
.xca_c00379{left:508.000000pt;}
.xa1_c00379{left:509.333333pt;}
.xd0_c00379{left:511.040000pt;}
.xc5_c00379{left:513.333333pt;}
.x99_c00379{left:516.373333pt;}
.x27_c00379{left:517.333333pt;}
.xb5_c00379{left:518.666667pt;}
.x89_c00379{left:519.626667pt;}
.x18_c00379{left:521.333333pt;}
.x4a_c00379{left:522.666667pt;}
.xfa_c00379{left:526.666667pt;}
.xc_c00379{left:528.373333pt;}
.x78_c00379{left:529.333333pt;}
.xf7_c00379{left:530.666667pt;}
.x65_c00379{left:532.000000pt;}
.xe6_c00379{left:533.706667pt;}
.x33_c00379{left:534.666667pt;}
.x83_c00379{left:536.000000pt;}
.x19_c00379{left:537.706667pt;}
.x90_c00379{left:538.666667pt;}
.x28_c00379{left:539.626667pt;}
.xda_c00379{left:541.333333pt;}
.x6f_c00379{left:543.040000pt;}
.x10b_c00379{left:546.666667pt;}
.x100_c00379{left:548.373333pt;}
.xdd_c00379{left:549.333333pt;}
.xa2_c00379{left:550.666667pt;}
.xd_c00379{left:551.626667pt;}
.x34_c00379{left:553.706667pt;}
.x58_c00379{left:555.040000pt;}
.xfb_c00379{left:556.373333pt;}
.xeb_c00379{left:559.040000pt;}
.xa9_c00379{left:560.000000pt;}
.x1a_c00379{left:561.333333pt;}
.xe7_c00379{left:562.293333pt;}
.x4b_c00379{left:563.626667pt;}
.x3f_c00379{left:566.666667pt;}
.x29_c00379{left:567.626667pt;}
.xcb_c00379{left:570.293333pt;}
.x66_c00379{left:572.960000pt;}
.xf3_c00379{left:574.666667pt;}
.xaa_c00379{left:576.000000pt;}
.xbc_c00379{left:576.960000pt;}
.x9a_c00379{left:578.666667pt;}
.xe8_c00379{left:580.373333pt;}
.x70_c00379{left:582.666667pt;}
.x2a_c00379{left:584.373333pt;}
.xcc_c00379{left:586.666667pt;}
.x8a_c00379{left:588.000000pt;}
.xe_c00379{left:589.706667pt;}
.x59_c00379{left:590.666667pt;}
.xa3_c00379{left:592.000000pt;}
.x4c_c00379{left:595.040000pt;}
.xbd_c00379{left:596.000000pt;}
.x71_c00379{left:597.333333pt;}
.xfd_c00379{left:599.040000pt;}
.x91_c00379{left:600.000000pt;}
.xde_c00379{left:600.960000pt;}
.x5a_c00379{left:605.333333pt;}
.x2b_c00379{left:607.626667pt;}
.x104_c00379{left:610.666667pt;}
.x1b_c00379{left:612.000000pt;}
.x67_c00379{left:613.706667pt;}
.xf_c00379{left:614.666667pt;}
.x5b_c00379{left:616.000000pt;}
.xec_c00379{left:617.706667pt;}
.x79_c00379{left:618.666667pt;}
.x40_c00379{left:620.373333pt;}
.xf4_c00379{left:622.666667pt;}
.xc3_c00379{left:625.333333pt;}
.xab_c00379{left:626.293333pt;}
.x4d_c00379{left:629.333333pt;}
.x68_c00379{left:631.040000pt;}
.xfc_c00379{left:637.333333pt;}
.xf5_c00379{left:642.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_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_80e0704a579e63fbdeb8804b.woff2')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc1_c00380{transform:matrix(0.090909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090909,0.000000,0.000000,0.250000,0,0);}
.mbe_c00380{transform:matrix(0.110996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110996,0.000000,0.000000,0.250000,0,0);}
.mbf_c00380{transform:matrix(0.194706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194706,0.000000,0.000000,0.250000,0,0);}
.mbd_c00380{transform:matrix(0.195539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195539,0.000000,0.000000,0.250000,0,0);}
.mc5_c00380{transform:matrix(0.305066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305066,0.000000,0.000000,0.250000,0,0);}
.mc6_c00380{transform:matrix(0.336029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336029,0.000000,0.000000,0.250000,0,0);}
.m53_c00380{transform:matrix(0.341258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341258,0.000000,0.000000,0.250000,0,0);}
.m72_c00380{transform:matrix(0.342857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342857,0.000000,0.000000,0.250000,0,0);}
.mc4_c00380{transform:matrix(0.368590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368590,0.000000,0.000000,0.250000,0,0);}
.m6f_c00380{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m74_c00380{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m7e_c00380{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.mbc_c00380{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00380{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m20_c00380{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m21_c00380{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m26_c00380{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m42_c00380{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m2d_c00380{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m9a_c00380{transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);}
.m51_c00380{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.mce_c00380{transform:matrix(0.388971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388971,0.000000,0.000000,0.250000,0,0);}
.m7f_c00380{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m6e_c00380{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m3a_c00380{transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);}
.ma_c00380{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m1c_c00380{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m63_c00380{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m5f_c00380{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m57_c00380{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m80_c00380{transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);}
.m37_c00380{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m6a_c00380{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.mcb_c00380{transform:matrix(0.403846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403846,0.000000,0.000000,0.250000,0,0);}
.m7_c00380{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m93_c00380{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m4f_c00380{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m15_c00380{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m71_c00380{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m19_c00380{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m16_c00380{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m32_c00380{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m10_c00380{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mcf_c00380{transform:matrix(0.421324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421324,0.000000,0.000000,0.250000,0,0);}
.m2_c00380{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m90_c00380{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.ma6_c00380{transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);}
.m64_c00380{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m77_c00380{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m38_c00380{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m22_c00380{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.ma9_c00380{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.mb4_c00380{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);}
.m87_c00380{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mc3_c00380{transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);}
.m89_c00380{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.m62_c00380{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.mb9_c00380{transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);}
.m49_c00380{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m81_c00380{transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);}
.m9c_c00380{transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);}
.m7a_c00380{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m2e_c00380{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m76_c00380{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m31_c00380{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.ma5_c00380{transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);}
.m67_c00380{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m95_c00380{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mc2_c00380{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.m56_c00380{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.m45_c00380{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m8a_c00380{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.maa_c00380{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m11_c00380{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.m9e_c00380{transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);}
.m55_c00380{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m3c_c00380{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.m6_c00380{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m47_c00380{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m60_c00380{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mc_c00380{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m25_c00380{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.ma2_c00380{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m65_c00380{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m6c_c00380{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.mab_c00380{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m1_c00380{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m3d_c00380{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m52_c00380{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mb3_c00380{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.m68_c00380{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m2a_c00380{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_c00380{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m5e_c00380{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m7d_c00380{transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);}
.m86_c00380{transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);}
.m30_c00380{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m2c_c00380{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m35_c00380{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m28_c00380{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m59_c00380{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m18_c00380{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.ma0_c00380{transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);}
.m41_c00380{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.md0_c00380{transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);}
.m39_c00380{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.me_c00380{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m6b_c00380{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m5b_c00380{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m40_c00380{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m8d_c00380{transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);}
.m3e_c00380{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m3_c00380{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m5_c00380{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m3f_c00380{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m8e_c00380{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m48_c00380{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m6d_c00380{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.md_c00380{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m66_c00380{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m1a_c00380{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m44_c00380{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m1f_c00380{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mc9_c00380{transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);}
.m1d_c00380{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mb1_c00380{transform:matrix(0.544872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544872,0.000000,0.000000,0.250000,0,0);}
.m4b_c00380{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m8c_c00380{transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);}
.m24_c00380{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m1e_c00380{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m46_c00380{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m99_c00380{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m4a_c00380{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m7b_c00380{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m17_c00380{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m5a_c00380{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m70_c00380{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mb_c00380{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m50_c00380{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mb5_c00380{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.mb8_c00380{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m14_c00380{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m4_c00380{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m33_c00380{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m8b_c00380{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m13_c00380{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m9b_c00380{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.m4c_c00380{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.mcc_c00380{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m73_c00380{transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);}
.m4d_c00380{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m79_c00380{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.mc7_c00380{transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);}
.m69_c00380{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m92_c00380{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m43_c00380{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m91_c00380{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.mf_c00380{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m85_c00380{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m83_c00380{transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);}
.m7c_c00380{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mbb_c00380{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m8_c00380{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_c00380{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m8f_c00380{transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);}
.ma8_c00380{transform:matrix(0.638767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638767,0.000000,0.000000,0.250000,0,0);}
.m0_c00380{transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);}
.m34_c00380{transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);}
.mb6_c00380{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m94_c00380{transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);}
.m3b_c00380{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m9d_c00380{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m36_c00380{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.ma1_c00380{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.mb0_c00380{transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);}
.m88_c00380{transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);}
.mba_c00380{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.m96_c00380{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m2f_c00380{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.mae_c00380{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.m82_c00380{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m84_c00380{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);}
.mb2_c00380{transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);}
.m4e_c00380{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m98_c00380{transform:matrix(0.720264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720264,0.000000,0.000000,0.250000,0,0);}
.ma4_c00380{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m23_c00380{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.maf_c00380{transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728535,0.000000,0.000000,0.250000,0,0);}
.m5d_c00380{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.mac_c00380{transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);}
.m78_c00380{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mc0_c00380{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.ma7_c00380{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.mad_c00380{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m9_c00380{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m75_c00380{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mcd_c00380{transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);}
.m9f_c00380{transform:matrix(0.770925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770925,0.000000,0.000000,0.250000,0,0);}
.mc8_c00380{transform:matrix(0.777941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777941,0.000000,0.000000,0.250000,0,0);}
.m61_c00380{transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);}
.m58_c00380{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m29_c00380{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m27_c00380{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m2b_c00380{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.mb7_c00380{transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);}
.ma3_c00380{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mca_c00380{transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);}
.m97_c00380{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m5c_c00380{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.v2_c00380{vertical-align:-6.000000px;}
.v0_c00380{vertical-align:0.000000px;}
.v1_c00380{vertical-align:6.000000px;}
.ls3_c00380{letter-spacing:0.000000px;}
.ls0_c00380{letter-spacing:57.908049px;}
.ls2_c00380{letter-spacing:64.456126px;}
.ls1_c00380{letter-spacing:97.591680px;}
.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;}
}
.ws14_c00380{word-spacing:-108.524160px;}
.ws2_c00380{word-spacing:-65.862129px;}
.ws1d_c00380{word-spacing:-2.687146px;}
.ws1f_c00380{word-spacing:0.000000px;}
.ws10_c00380{word-spacing:19.620812px;}
.ws6_c00380{word-spacing:24.192343px;}
.ws8_c00380{word-spacing:25.629635px;}
.ws0_c00380{word-spacing:27.671529px;}
.ws9_c00380{word-spacing:30.193299px;}
.ws11_c00380{word-spacing:31.530433px;}
.wsf_c00380{word-spacing:31.638459px;}
.ws12_c00380{word-spacing:33.638400px;}
.ws3_c00380{word-spacing:36.864950px;}
.ws5_c00380{word-spacing:38.843828px;}
.ws16_c00380{word-spacing:40.568783px;}
.ws7_c00380{word-spacing:41.452695px;}
.wsa_c00380{word-spacing:42.638400px;}
.ws1_c00380{word-spacing:42.652325px;}
.ws15_c00380{word-spacing:43.031713px;}
.ws1c_c00380{word-spacing:43.618669px;}
.ws4_c00380{word-spacing:43.993166px;}
.wsd_c00380{word-spacing:45.572749px;}
.ws1b_c00380{word-spacing:45.869909px;}
.wse_c00380{word-spacing:49.006362px;}
.ws17_c00380{word-spacing:50.150900px;}
.wsb_c00380{word-spacing:51.638400px;}
.ws19_c00380{word-spacing:52.439976px;}
.ws1a_c00380{word-spacing:54.291843px;}
.wsc_c00380{word-spacing:57.018127px;}
.ws13_c00380{word-spacing:58.393307px;}
.ws18_c00380{word-spacing:65.029892px;}
.ws1e_c00380{word-spacing:81.393737px;}
._c_c00380{margin-left:-97.591680px;}
._2_c00380{margin-left:-57.908049px;}
._b_c00380{width:4.189091px;}
._6_c00380{width:25.524057px;}
._8_c00380{width:27.574892px;}
._a_c00380{width:33.583715px;}
._7_c00380{width:35.586656px;}
._1_c00380{width:38.075249px;}
._9_c00380{width:39.592539px;}
._4_c00380{width:42.567790px;}
._3_c00380{width:47.070270px;}
._d_c00380{width:50.985793px;}
._5_c00380{width:53.823989px;}
._0_c00380{width:62.999972px;}
._e_c00380{width:64.820592px;}
.fc0_c00380{color:transparent;}
.fs7_c00380{font-size:3.420000px;}
.fs9_c00380{font-size:11.880000px;}
.fs8_c00380{font-size:13.620000px;}
.fs3_c00380{font-size:18.720000px;}
.fs0_c00380{font-size:20.400000px;}
.fs4_c00380{font-size:25.500000px;}
.fs1_c00380{font-size:28.920000px;}
.fs5_c00380{font-size:32.340000px;}
.fs2_c00380{font-size:35.700000px;}
.fs6_c00380{font-size:39.120000px;}
.y0_c00380{bottom:0.000000px;}
.yc0_c00380{bottom:228.630000px;}
.ybe_c00380{bottom:252.630000px;}
.ybd_c00380{bottom:253.695000px;}
.ybf_c00380{bottom:254.130000px;}
.ybc_c00380{bottom:256.050000px;}
.ybb_c00380{bottom:266.130000px;}
.yba_c00380{bottom:267.195000px;}
.yb8_c00380{bottom:267.630000px;}
.yb9_c00380{bottom:268.695000px;}
.yb7_c00380{bottom:269.550000px;}
.yb6_c00380{bottom:279.630000px;}
.yb5_c00380{bottom:280.695000px;}
.yb3_c00380{bottom:281.130000px;}
.yb4_c00380{bottom:282.195000px;}
.yb0_c00380{bottom:295.050000px;}
.yb1_c00380{bottom:295.695000px;}
.yb2_c00380{bottom:295.920000px;}
.yaf_c00380{bottom:297.630000px;}
.yab_c00380{bottom:308.130000px;}
.yaa_c00380{bottom:308.550000px;}
.yac_c00380{bottom:309.195000px;}
.yae_c00380{bottom:309.420000px;}
.ya9_c00380{bottom:310.275000px;}
.yad_c00380{bottom:310.920000px;}
.ya8_c00380{bottom:321.630000px;}
.ya7_c00380{bottom:322.695000px;}
.ya6_c00380{bottom:325.050000px;}
.ya5_c00380{bottom:342.630000px;}
.ya4_c00380{bottom:343.695000px;}
.ya3_c00380{bottom:344.130000px;}
.ya2_c00380{bottom:354.630000px;}
.ya0_c00380{bottom:355.695000px;}
.ya1_c00380{bottom:356.130000px;}
.y9f_c00380{bottom:358.275000px;}
.y5a_c00380{bottom:376.470000px;}
.y5b_c00380{bottom:377.550000px;}
.y58_c00380{bottom:389.325000px;}
.y59_c00380{bottom:390.405000px;}
.y57_c00380{bottom:391.470000px;}
.y56_c00380{bottom:392.550000px;}
.y55_c00380{bottom:413.970000px;}
.y54_c00380{bottom:418.050000px;}
.y4b_c00380{bottom:446.745000px;}
.y4c_c00380{bottom:447.630000px;}
.y4d_c00380{bottom:447.825000px;}
.y4a_c00380{bottom:448.905000px;}
.y49_c00380{bottom:466.245000px;}
.y48_c00380{bottom:468.405000px;}
.y47_c00380{bottom:484.470000px;}
.y44_c00380{bottom:485.745000px;}
.y45_c00380{bottom:486.630000px;}
.y43_c00380{bottom:487.470000px;}
.y42_c00380{bottom:487.905000px;}
.y46_c00380{bottom:488.970000px;}
.y3e_c00380{bottom:504.405000px;}
.y41_c00380{bottom:505.245000px;}
.y40_c00380{bottom:506.745000px;}
.y3f_c00380{bottom:507.405000px;}
.y3d_c00380{bottom:507.630000px;}
.y3b_c00380{bottom:523.905000px;}
.y39_c00380{bottom:524.325000px;}
.y3c_c00380{bottom:526.245000px;}
.y35_c00380{bottom:526.905000px;}
.y3a_c00380{bottom:527.130000px;}
.y37_c00380{bottom:527.970000px;}
.y38_c00380{bottom:528.405000px;}
.y36_c00380{bottom:528.420000px;}
.y30_c00380{bottom:545.745000px;}
.y34_c00380{bottom:546.405000px;}
.y31_c00380{bottom:546.630000px;}
.y32_c00380{bottom:547.905000px;}
.y33_c00380{bottom:548.970000px;}
.y2e_c00380{bottom:564.180000px;}
.y2d_c00380{bottom:565.245000px;}
.y2f_c00380{bottom:566.325000px;}
.y2c_c00380{bottom:567.405000px;}
.y2b_c00380{bottom:582.825000px;}
.y2a_c00380{bottom:584.745000px;}
.y29_c00380{bottom:585.630000px;}
.y28_c00380{bottom:586.470000px;}
.y27_c00380{bottom:586.905000px;}
.y26_c00380{bottom:604.245000px;}
.y25_c00380{bottom:605.325000px;}
.y22_c00380{bottom:605.970000px;}
.y24_c00380{bottom:606.405000px;}
.y23_c00380{bottom:607.470000px;}
.y1f_c00380{bottom:622.905000px;}
.y21_c00380{bottom:623.745000px;}
.y1e_c00380{bottom:624.825000px;}
.y1d_c00380{bottom:625.905000px;}
.y20_c00380{bottom:626.130000px;}
.y19_c00380{bottom:642.405000px;}
.y1c_c00380{bottom:644.745000px;}
.y1b_c00380{bottom:645.630000px;}
.y1a_c00380{bottom:646.470000px;}
.y18_c00380{bottom:646.905000px;}
.y16_c00380{bottom:663.825000px;}
.y13_c00380{bottom:664.245000px;}
.y14_c00380{bottom:665.325000px;}
.y17_c00380{bottom:665.550000px;}
.y12_c00380{bottom:666.405000px;}
.y15_c00380{bottom:667.470000px;}
.y10_c00380{bottom:682.905000px;}
.ye_c00380{bottom:683.745000px;}
.yf_c00380{bottom:684.630000px;}
.yd_c00380{bottom:685.905000px;}
.y11_c00380{bottom:686.130000px;}
.yb_c00380{bottom:703.245000px;}
.ya_c00380{bottom:705.405000px;}
.yc_c00380{bottom:705.630000px;}
.y8_c00380{bottom:722.745000px;}
.y7_c00380{bottom:724.905000px;}
.y9_c00380{bottom:725.970000px;}
.y5_c00380{bottom:741.405000px;}
.y3_c00380{bottom:743.745000px;}
.y6_c00380{bottom:744.630000px;}
.y4_c00380{bottom:745.905000px;}
.y99_c00380{bottom:772.695000px;}
.y97_c00380{bottom:773.130000px;}
.y9a_c00380{bottom:773.325000px;}
.y9c_c00380{bottom:773.775000px;}
.y98_c00380{bottom:774.195000px;}
.y9b_c00380{bottom:774.420000px;}
.y9e_c00380{bottom:774.630000px;}
.y9d_c00380{bottom:778.695000px;}
.y93_c00380{bottom:786.630000px;}
.y94_c00380{bottom:787.695000px;}
.y96_c00380{bottom:788.130000px;}
.y95_c00380{bottom:789.195000px;}
.y8d_c00380{bottom:799.695000px;}
.y8b_c00380{bottom:800.130000px;}
.y8c_c00380{bottom:801.195000px;}
.y8e_c00380{bottom:801.405000px;}
.y91_c00380{bottom:801.630000px;}
.y90_c00380{bottom:802.470000px;}
.y92_c00380{bottom:802.695000px;}
.y8f_c00380{bottom:802.920000px;}
.y8a_c00380{bottom:814.695000px;}
.y86_c00380{bottom:815.130000px;}
.y87_c00380{bottom:816.195000px;}
.y88_c00380{bottom:816.405000px;}
.y89_c00380{bottom:816.420000px;}
.y84_c00380{bottom:828.630000px;}
.y85_c00380{bottom:829.695000px;}
.y82_c00380{bottom:842.130000px;}
.y81_c00380{bottom:843.195000px;}
.y83_c00380{bottom:843.630000px;}
.y7f_c00380{bottom:855.630000px;}
.y7d_c00380{bottom:856.695000px;}
.y7e_c00380{bottom:857.130000px;}
.y80_c00380{bottom:858.195000px;}
.y7c_c00380{bottom:870.630000px;}
.y79_c00380{bottom:879.195000px;}
.y7b_c00380{bottom:879.630000px;}
.y7a_c00380{bottom:880.695000px;}
.y77_c00380{bottom:892.275000px;}
.y78_c00380{bottom:894.195000px;}
.y75_c00380{bottom:902.130000px;}
.y74_c00380{bottom:903.195000px;}
.y76_c00380{bottom:903.630000px;}
.y70_c00380{bottom:914.550000px;}
.y71_c00380{bottom:916.695000px;}
.y72_c00380{bottom:917.130000px;}
.y73_c00380{bottom:918.195000px;}
.y6f_c00380{bottom:930.195000px;}
.y6d_c00380{bottom:930.630000px;}
.y6e_c00380{bottom:931.695000px;}
.y6c_c00380{bottom:943.695000px;}
.y6b_c00380{bottom:944.130000px;}
.y6a_c00380{bottom:945.195000px;}
.y66_c00380{bottom:957.630000px;}
.y67_c00380{bottom:958.695000px;}
.y68_c00380{bottom:958.920000px;}
.y69_c00380{bottom:960.420000px;}
.y64_c00380{bottom:971.130000px;}
.y63_c00380{bottom:972.195000px;}
.y65_c00380{bottom:973.695000px;}
.y60_c00380{bottom:990.630000px;}
.y5f_c00380{bottom:991.695000px;}
.y62_c00380{bottom:991.920000px;}
.y61_c00380{bottom:992.130000px;}
.y5e_c00380{bottom:1003.695000px;}
.y5c_c00380{bottom:1004.130000px;}
.y5d_c00380{bottom:1005.195000px;}
.y53_c00380{bottom:1027.470000px;}
.y52_c00380{bottom:1040.325000px;}
.y50_c00380{bottom:1040.970000px;}
.y51_c00380{bottom:1042.050000px;}
.y4f_c00380{bottom:1063.905000px;}
.y4e_c00380{bottom:1066.050000px;}
.y2_c00380{bottom:1099.905000px;}
.y1_c00380{bottom:1102.050000px;}
.h8_c00380{height:4.206533px;}
.hb_c00380{height:14.612168px;}
.h9_c00380{height:16.752334px;}
.ha_c00380{height:22.752334px;}
.h4_c00380{height:23.025234px;}
.h1_c00380{height:25.091602px;}
.h5_c00380{height:31.364502px;}
.h2_c00380{height:35.571035px;}
.h6_c00380{height:39.777568px;}
.h3_c00380{height:43.910303px;}
.h7_c00380{height:48.116836px;}
.h0_c00380{height:1335.000000px;}
.w0_c00380{width:880.500000px;}
.x0_c00380{left:0.000000px;}
.xda_c00380{left:109.500000px;}
.xd6_c00380{left:110.580000px;}
.xd2_c00380{left:115.500000px;}
.xd3_c00380{left:118.500000px;}
.xdd_c00380{left:120.000000px;}
.xd4_c00380{left:131.580000px;}
.xc7_c00380{left:133.500000px;}
.xab_c00380{left:135.000000px;}
.xde_c00380{left:136.500000px;}
.xdb_c00380{left:149.580000px;}
.x3_c00380{left:153.000000px;}
.x37_c00380{left:154.500000px;}
.xac_c00380{left:157.080000px;}
.xe5_c00380{left:159.000000px;}
.xce_c00380{left:160.500000px;}
.xb2_c00380{left:161.580000px;}
.xbb_c00380{left:166.500000px;}
.x4e_c00380{left:169.080000px;}
.xb8_c00380{left:170.580000px;}
.x44_c00380{left:172.920000px;}
.x5a_c00380{left:174.000000px;}
.x38_c00380{left:175.080000px;}
.xbc_c00380{left:178.080000px;}
.x8d_c00380{left:180.000000px;}
.x1b_c00380{left:183.420000px;}
.x26_c00380{left:184.920000px;}
.x9f_c00380{left:189.000000px;}
.x62_c00380{left:190.920000px;}
.x4f_c00380{left:193.500000px;}
.xe6_c00380{left:194.580000px;}
.x39_c00380{left:198.000000px;}
.x45_c00380{left:201.000000px;}
.x75_c00380{left:202.920000px;}
.x9b_c00380{left:205.500000px;}
.xd1_c00380{left:207.000000px;}
.x50_c00380{left:211.080000px;}
.x84_c00380{left:214.500000px;}
.x63_c00380{left:217.080000px;}
.x8e_c00380{left:218.580000px;}
.x1c_c00380{left:223.500000px;}
.x6b_c00380{left:226.080000px;}
.x27_c00380{left:234.000000px;}
.xf_c00380{left:235.920000px;}
.x8f_c00380{left:237.420000px;}
.x7e_c00380{left:238.500000px;}
.x9c_c00380{left:243.000000px;}
.x6c_c00380{left:244.920000px;}
.x46_c00380{left:246.000000px;}
.x4_c00380{left:254.580000px;}
.x28_c00380{left:256.920000px;}
.x76_c00380{left:258.000000px;}
.x7f_c00380{left:259.500000px;}
.x85_c00380{left:261.420000px;}
.xdc_c00380{left:262.500000px;}
.x90_c00380{left:263.580000px;}
.xd7_c00380{left:267.000000px;}
.xdf_c00380{left:268.500000px;}
.x95_c00380{left:271.500000px;}
.x1d_c00380{left:273.000000px;}
.xbd_c00380{left:274.920000px;}
.x3a_c00380{left:277.920000px;}
.xa0_c00380{left:279.420000px;}
.x64_c00380{left:280.500000px;}
.x5b_c00380{left:281.580000px;}
.x29_c00380{left:283.500000px;}
.x77_c00380{left:285.000000px;}
.xc8_c00380{left:286.500000px;}
.x86_c00380{left:289.500000px;}
.x9d_c00380{left:292.500000px;}
.xa1_c00380{left:293.580000px;}
.x96_c00380{left:298.500000px;}
.x10_c00380{left:307.500000px;}
.x5_c00380{left:308.580000px;}
.x51_c00380{left:313.920000px;}
.x78_c00380{left:316.500000px;}
.xe3_c00380{left:318.000000px;}
.x47_c00380{left:319.920000px;}
.x91_c00380{left:324.000000px;}
.x11_c00380{left:325.920000px;}
.xae_c00380{left:327.000000px;}
.x2a_c00380{left:328.080000px;}
.x6_c00380{left:330.420000px;}
.xc9_c00380{left:333.000000px;}
.x79_c00380{left:336.420000px;}
.x92_c00380{left:337.920000px;}
.x3b_c00380{left:345.000000px;}
.x52_c00380{left:349.500000px;}
.x12_c00380{left:352.920000px;}
.x1e_c00380{left:354.000000px;}
.x3c_c00380{left:357.000000px;}
.x7_c00380{left:359.580000px;}
.x7a_c00380{left:363.000000px;}
.x48_c00380{left:366.420000px;}
.x2b_c00380{left:367.500000px;}
.x97_c00380{left:369.420000px;}
.xa6_c00380{left:370.500000px;}
.xb3_c00380{left:372.000000px;}
.x1f_c00380{left:373.500000px;}
.x53_c00380{left:377.145000px;}
.x65_c00380{left:383.580000px;}
.x20_c00380{left:385.920000px;}
.x6d_c00380{left:387.420000px;}
.x1_c00380{left:391.500000px;}
.x54_c00380{left:397.080000px;}
.x2c_c00380{left:399.000000px;}
.x13_c00380{left:401.580000px;}
.x49_c00380{left:403.080000px;}
.xad_c00380{left:409.920000px;}
.xe9_c00380{left:412.500000px;}
.x6e_c00380{left:414.000000px;}
.x2d_c00380{left:417.000000px;}
.x14_c00380{left:420.420000px;}
.x98_c00380{left:421.920000px;}
.x9e_c00380{left:424.500000px;}
.x3d_c00380{left:429.420000px;}
.x8_c00380{left:432.000000px;}
.x21_c00380{left:433.500000px;}
.x4a_c00380{left:438.000000px;}
.x7b_c00380{left:439.080000px;}
.xa8_c00380{left:441.000000px;}
.x5c_c00380{left:445.080000px;}
.x15_c00380{left:446.580000px;}
.x2e_c00380{left:448.500000px;}
.x99_c00380{left:450.000000px;}
.xcf_c00380{left:453.000000px;}
.x3e_c00380{left:456.420000px;}
.x7c_c00380{left:457.920000px;}
.xc3_c00380{left:459.000000px;}
.x55_c00380{left:462.000000px;}
.x6f_c00380{left:463.920000px;}
.xa9_c00380{left:465.000000px;}
.x87_c00380{left:466.500000px;}
.xea_c00380{left:468.000000px;}
.x80_c00380{left:471.000000px;}
.x66_c00380{left:474.000000px;}
.x2f_c00380{left:481.080000px;}
.x7d_c00380{left:484.080000px;}
.x16_c00380{left:485.580000px;}
.x4b_c00380{left:490.500000px;}
.xbf_c00380{left:499.500000px;}
.x22_c00380{left:501.420000px;}
.x70_c00380{left:503.580000px;}
.xaf_c00380{left:507.000000px;}
.xb9_c00380{left:508.500000px;}
.xaa_c00380{left:510.000000px;}
.x30_c00380{left:511.500000px;}
.xca_c00380{left:513.000000px;}
.x17_c00380{left:516.000000px;}
.x9_c00380{left:517.500000px;}
.x4c_c00380{left:523.080000px;}
.x56_c00380{left:526.080000px;}
.x88_c00380{left:531.000000px;}
.x31_c00380{left:534.420000px;}
.x9a_c00380{left:535.920000px;}
.x23_c00380{left:537.000000px;}
.x5d_c00380{left:538.080000px;}
.xa_c00380{left:540.420000px;}
.x71_c00380{left:541.500000px;}
.x18_c00380{left:544.920000px;}
.xcd_c00380{left:549.000000px;}
.xb0_c00380{left:552.000000px;}
.xb5_c00380{left:553.500000px;}
.x89_c00380{left:555.000000px;}
.xa2_c00380{left:556.500000px;}
.x5e_c00380{left:558.420000px;}
.x32_c00380{left:561.000000px;}
.x81_c00380{left:564.420000px;}
.xd8_c00380{left:565.920000px;}
.xeb_c00380{left:567.000000px;}
.x3f_c00380{left:571.500000px;}
.x4d_c00380{left:574.500000px;}
.x93_c00380{left:575.580000px;}
.x67_c00380{left:577.500000px;}
.xb_c00380{left:583.500000px;}
.x5f_c00380{left:586.500000px;}
.x72_c00380{left:588.420000px;}
.xa3_c00380{left:589.500000px;}
.x40_c00380{left:592.920000px;}
.xc4_c00380{left:594.000000px;}
.xb6_c00380{left:597.000000px;}
.xba_c00380{left:598.500000px;}
.x8a_c00380{left:601.500000px;}
.xcb_c00380{left:603.000000px;}
.x68_c00380{left:604.920000px;}
.x33_c00380{left:607.500000px;}
.xe7_c00380{left:612.000000px;}
.x41_c00380{left:615.000000px;}
.xe0_c00380{left:616.500000px;}
.x19_c00380{left:617.580000px;}
.x8b_c00380{left:625.500000px;}
.xc0_c00380{left:630.420000px;}
.x73_c00380{left:633.000000px;}
.xc1_c00380{left:634.920000px;}
.x34_c00380{left:636.000000px;}
.xb7_c00380{left:637.500000px;}
.xa7_c00380{left:640.500000px;}
.x57_c00380{left:646.080000px;}
.xa4_c00380{left:651.000000px;}
.x24_c00380{left:655.080000px;}
.x60_c00380{left:656.580000px;}
.x42_c00380{left:658.920000px;}
.xc_c00380{left:660.420000px;}
.x1a_c00380{left:663.000000px;}
.x58_c00380{left:664.920000px;}
.x69_c00380{left:666.000000px;}
.x35_c00380{left:667.080000px;}
.x82_c00380{left:678.000000px;}
.x8c_c00380{left:679.080000px;}
.x74_c00380{left:681.000000px;}
.xc5_c00380{left:684.000000px;}
.x25_c00380{left:685.500000px;}
.x43_c00380{left:687.420000px;}
.xa5_c00380{left:690.000000px;}
.x59_c00380{left:691.080000px;}
.xcc_c00380{left:693.000000px;}
.x83_c00380{left:694.500000px;}
.x36_c00380{left:699.000000px;}
.xd_c00380{left:703.500000px;}
.x61_c00380{left:704.580000px;}
.x2_c00380{left:706.080000px;}
.x6a_c00380{left:711.000000px;}
.x94_c00380{left:712.500000px;}
.xd9_c00380{left:714.000000px;}
.xe1_c00380{left:715.500000px;}
.xec_c00380{left:721.500000px;}
.xe_c00380{left:723.000000px;}
.xc2_c00380{left:724.920000px;}
.xd0_c00380{left:726.420000px;}
.xc6_c00380{left:729.000000px;}
.xb1_c00380{left:732.000000px;}
.xb4_c00380{left:733.500000px;}
.xbe_c00380{left:735.420000px;}
.xd5_c00380{left:756.000000px;}
.xe8_c00380{left:760.920000px;}
.xe2_c00380{left:763.500000px;}
.xe4_c00380{left:765.000000px;}
@media print{
.v2_c00380{vertical-align:-5.333333pt;}
.v0_c00380{vertical-align:0.000000pt;}
.v1_c00380{vertical-align:5.333333pt;}
.ls3_c00380{letter-spacing:0.000000pt;}
.ls0_c00380{letter-spacing:51.473822pt;}
.ls2_c00380{letter-spacing:57.294334pt;}
.ls1_c00380{letter-spacing:86.748160pt;}
.ws14_c00380{word-spacing:-96.465920pt;}
.ws2_c00380{word-spacing:-58.544115pt;}
.ws1d_c00380{word-spacing:-2.388574pt;}
.ws1f_c00380{word-spacing:0.000000pt;}
.ws10_c00380{word-spacing:17.440722pt;}
.ws6_c00380{word-spacing:21.504305pt;}
.ws8_c00380{word-spacing:22.781898pt;}
.ws0_c00380{word-spacing:24.596914pt;}
.ws9_c00380{word-spacing:26.838488pt;}
.ws11_c00380{word-spacing:28.027052pt;}
.wsf_c00380{word-spacing:28.123075pt;}
.ws12_c00380{word-spacing:29.900800pt;}
.ws3_c00380{word-spacing:32.768845pt;}
.ws5_c00380{word-spacing:34.527847pt;}
.ws16_c00380{word-spacing:36.061141pt;}
.ws7_c00380{word-spacing:36.846840pt;}
.wsa_c00380{word-spacing:37.900800pt;}
.ws1_c00380{word-spacing:37.913178pt;}
.ws15_c00380{word-spacing:38.250411pt;}
.ws1c_c00380{word-spacing:38.772150pt;}
.ws4_c00380{word-spacing:39.105037pt;}
.wsd_c00380{word-spacing:40.509110pt;}
.ws1b_c00380{word-spacing:40.773252pt;}
.wse_c00380{word-spacing:43.561211pt;}
.ws17_c00380{word-spacing:44.578578pt;}
.wsb_c00380{word-spacing:45.900800pt;}
.ws19_c00380{word-spacing:46.613312pt;}
.ws1a_c00380{word-spacing:48.259416pt;}
.wsc_c00380{word-spacing:50.682780pt;}
.ws13_c00380{word-spacing:51.905162pt;}
.ws18_c00380{word-spacing:57.804348pt;}
.ws1e_c00380{word-spacing:72.349989pt;}
._c_c00380{margin-left:-86.748160pt;}
._2_c00380{margin-left:-51.473822pt;}
._b_c00380{width:3.723636pt;}
._6_c00380{width:22.688050pt;}
._8_c00380{width:24.511015pt;}
._a_c00380{width:29.852191pt;}
._7_c00380{width:31.632584pt;}
._1_c00380{width:33.844666pt;}
._9_c00380{width:35.193368pt;}
._4_c00380{width:37.838036pt;}
._3_c00380{width:41.840240pt;}
._d_c00380{width:45.320705pt;}
._5_c00380{width:47.843546pt;}
._0_c00380{width:55.999975pt;}
._e_c00380{width:57.618304pt;}
.fs7_c00380{font-size:3.040000pt;}
.fs9_c00380{font-size:10.560000pt;}
.fs8_c00380{font-size:12.106667pt;}
.fs3_c00380{font-size:16.640000pt;}
.fs0_c00380{font-size:18.133333pt;}
.fs4_c00380{font-size:22.666667pt;}
.fs1_c00380{font-size:25.706667pt;}
.fs5_c00380{font-size:28.746667pt;}
.fs2_c00380{font-size:31.733333pt;}
.fs6_c00380{font-size:34.773333pt;}
.y0_c00380{bottom:0.000000pt;}
.yc0_c00380{bottom:203.226667pt;}
.ybe_c00380{bottom:224.560000pt;}
.ybd_c00380{bottom:225.506667pt;}
.ybf_c00380{bottom:225.893333pt;}
.ybc_c00380{bottom:227.600000pt;}
.ybb_c00380{bottom:236.560000pt;}
.yba_c00380{bottom:237.506667pt;}
.yb8_c00380{bottom:237.893333pt;}
.yb9_c00380{bottom:238.840000pt;}
.yb7_c00380{bottom:239.600000pt;}
.yb6_c00380{bottom:248.560000pt;}
.yb5_c00380{bottom:249.506667pt;}
.yb3_c00380{bottom:249.893333pt;}
.yb4_c00380{bottom:250.840000pt;}
.yb0_c00380{bottom:262.266667pt;}
.yb1_c00380{bottom:262.840000pt;}
.yb2_c00380{bottom:263.040000pt;}
.yaf_c00380{bottom:264.560000pt;}
.yab_c00380{bottom:273.893333pt;}
.yaa_c00380{bottom:274.266667pt;}
.yac_c00380{bottom:274.840000pt;}
.yae_c00380{bottom:275.040000pt;}
.ya9_c00380{bottom:275.800000pt;}
.yad_c00380{bottom:276.373333pt;}
.ya8_c00380{bottom:285.893333pt;}
.ya7_c00380{bottom:286.840000pt;}
.ya6_c00380{bottom:288.933333pt;}
.ya5_c00380{bottom:304.560000pt;}
.ya4_c00380{bottom:305.506667pt;}
.ya3_c00380{bottom:305.893333pt;}
.ya2_c00380{bottom:315.226667pt;}
.ya0_c00380{bottom:316.173333pt;}
.ya1_c00380{bottom:316.560000pt;}
.y9f_c00380{bottom:318.466667pt;}
.y5a_c00380{bottom:334.640000pt;}
.y5b_c00380{bottom:335.600000pt;}
.y58_c00380{bottom:346.066667pt;}
.y59_c00380{bottom:347.026667pt;}
.y57_c00380{bottom:347.973333pt;}
.y56_c00380{bottom:348.933333pt;}
.y55_c00380{bottom:367.973333pt;}
.y54_c00380{bottom:371.600000pt;}
.y4b_c00380{bottom:397.106667pt;}
.y4c_c00380{bottom:397.893333pt;}
.y4d_c00380{bottom:398.066667pt;}
.y4a_c00380{bottom:399.026667pt;}
.y49_c00380{bottom:414.440000pt;}
.y48_c00380{bottom:416.360000pt;}
.y47_c00380{bottom:430.640000pt;}
.y44_c00380{bottom:431.773333pt;}
.y45_c00380{bottom:432.560000pt;}
.y43_c00380{bottom:433.306667pt;}
.y42_c00380{bottom:433.693333pt;}
.y46_c00380{bottom:434.640000pt;}
.y3e_c00380{bottom:448.360000pt;}
.y41_c00380{bottom:449.106667pt;}
.y40_c00380{bottom:450.440000pt;}
.y3f_c00380{bottom:451.026667pt;}
.y3d_c00380{bottom:451.226667pt;}
.y3b_c00380{bottom:465.693333pt;}
.y39_c00380{bottom:466.066667pt;}
.y3c_c00380{bottom:467.773333pt;}
.y35_c00380{bottom:468.360000pt;}
.y3a_c00380{bottom:468.560000pt;}
.y37_c00380{bottom:469.306667pt;}
.y38_c00380{bottom:469.693333pt;}
.y36_c00380{bottom:469.706667pt;}
.y30_c00380{bottom:485.106667pt;}
.y34_c00380{bottom:485.693333pt;}
.y31_c00380{bottom:485.893333pt;}
.y32_c00380{bottom:487.026667pt;}
.y33_c00380{bottom:487.973333pt;}
.y2e_c00380{bottom:501.493333pt;}
.y2d_c00380{bottom:502.440000pt;}
.y2f_c00380{bottom:503.400000pt;}
.y2c_c00380{bottom:504.360000pt;}
.y2b_c00380{bottom:518.066667pt;}
.y2a_c00380{bottom:519.773333pt;}
.y29_c00380{bottom:520.560000pt;}
.y28_c00380{bottom:521.306667pt;}
.y27_c00380{bottom:521.693333pt;}
.y26_c00380{bottom:537.106667pt;}
.y25_c00380{bottom:538.066667pt;}
.y22_c00380{bottom:538.640000pt;}
.y24_c00380{bottom:539.026667pt;}
.y23_c00380{bottom:539.973333pt;}
.y1f_c00380{bottom:553.693333pt;}
.y21_c00380{bottom:554.440000pt;}
.y1e_c00380{bottom:555.400000pt;}
.y1d_c00380{bottom:556.360000pt;}
.y20_c00380{bottom:556.560000pt;}
.y19_c00380{bottom:571.026667pt;}
.y1c_c00380{bottom:573.106667pt;}
.y1b_c00380{bottom:573.893333pt;}
.y1a_c00380{bottom:574.640000pt;}
.y18_c00380{bottom:575.026667pt;}
.y16_c00380{bottom:590.066667pt;}
.y13_c00380{bottom:590.440000pt;}
.y14_c00380{bottom:591.400000pt;}
.y17_c00380{bottom:591.600000pt;}
.y12_c00380{bottom:592.360000pt;}
.y15_c00380{bottom:593.306667pt;}
.y10_c00380{bottom:607.026667pt;}
.ye_c00380{bottom:607.773333pt;}
.yf_c00380{bottom:608.560000pt;}
.yd_c00380{bottom:609.693333pt;}
.y11_c00380{bottom:609.893333pt;}
.yb_c00380{bottom:625.106667pt;}
.ya_c00380{bottom:627.026667pt;}
.yc_c00380{bottom:627.226667pt;}
.y8_c00380{bottom:642.440000pt;}
.y7_c00380{bottom:644.360000pt;}
.y9_c00380{bottom:645.306667pt;}
.y5_c00380{bottom:659.026667pt;}
.y3_c00380{bottom:661.106667pt;}
.y6_c00380{bottom:661.893333pt;}
.y4_c00380{bottom:663.026667pt;}
.y99_c00380{bottom:686.840000pt;}
.y97_c00380{bottom:687.226667pt;}
.y9a_c00380{bottom:687.400000pt;}
.y9c_c00380{bottom:687.800000pt;}
.y98_c00380{bottom:688.173333pt;}
.y9b_c00380{bottom:688.373333pt;}
.y9e_c00380{bottom:688.560000pt;}
.y9d_c00380{bottom:692.173333pt;}
.y93_c00380{bottom:699.226667pt;}
.y94_c00380{bottom:700.173333pt;}
.y96_c00380{bottom:700.560000pt;}
.y95_c00380{bottom:701.506667pt;}
.y8d_c00380{bottom:710.840000pt;}
.y8b_c00380{bottom:711.226667pt;}
.y8c_c00380{bottom:712.173333pt;}
.y8e_c00380{bottom:712.360000pt;}
.y91_c00380{bottom:712.560000pt;}
.y90_c00380{bottom:713.306667pt;}
.y92_c00380{bottom:713.506667pt;}
.y8f_c00380{bottom:713.706667pt;}
.y8a_c00380{bottom:724.173333pt;}
.y86_c00380{bottom:724.560000pt;}
.y87_c00380{bottom:725.506667pt;}
.y88_c00380{bottom:725.693333pt;}
.y89_c00380{bottom:725.706667pt;}
.y84_c00380{bottom:736.560000pt;}
.y85_c00380{bottom:737.506667pt;}
.y82_c00380{bottom:748.560000pt;}
.y81_c00380{bottom:749.506667pt;}
.y83_c00380{bottom:749.893333pt;}
.y7f_c00380{bottom:760.560000pt;}
.y7d_c00380{bottom:761.506667pt;}
.y7e_c00380{bottom:761.893333pt;}
.y80_c00380{bottom:762.840000pt;}
.y7c_c00380{bottom:773.893333pt;}
.y79_c00380{bottom:781.506667pt;}
.y7b_c00380{bottom:781.893333pt;}
.y7a_c00380{bottom:782.840000pt;}
.y77_c00380{bottom:793.133333pt;}
.y78_c00380{bottom:794.840000pt;}
.y75_c00380{bottom:801.893333pt;}
.y74_c00380{bottom:802.840000pt;}
.y76_c00380{bottom:803.226667pt;}
.y70_c00380{bottom:812.933333pt;}
.y71_c00380{bottom:814.840000pt;}
.y72_c00380{bottom:815.226667pt;}
.y73_c00380{bottom:816.173333pt;}
.y6f_c00380{bottom:826.840000pt;}
.y6d_c00380{bottom:827.226667pt;}
.y6e_c00380{bottom:828.173333pt;}
.y6c_c00380{bottom:838.840000pt;}
.y6b_c00380{bottom:839.226667pt;}
.y6a_c00380{bottom:840.173333pt;}
.y66_c00380{bottom:851.226667pt;}
.y67_c00380{bottom:852.173333pt;}
.y68_c00380{bottom:852.373333pt;}
.y69_c00380{bottom:853.706667pt;}
.y64_c00380{bottom:863.226667pt;}
.y63_c00380{bottom:864.173333pt;}
.y65_c00380{bottom:865.506667pt;}
.y60_c00380{bottom:880.560000pt;}
.y5f_c00380{bottom:881.506667pt;}
.y62_c00380{bottom:881.706667pt;}
.y61_c00380{bottom:881.893333pt;}
.y5e_c00380{bottom:892.173333pt;}
.y5c_c00380{bottom:892.560000pt;}
.y5d_c00380{bottom:893.506667pt;}
.y53_c00380{bottom:913.306667pt;}
.y52_c00380{bottom:924.733333pt;}
.y50_c00380{bottom:925.306667pt;}
.y51_c00380{bottom:926.266667pt;}
.y4f_c00380{bottom:945.693333pt;}
.y4e_c00380{bottom:947.600000pt;}
.y2_c00380{bottom:977.693333pt;}
.y1_c00380{bottom:979.600000pt;}
.h8_c00380{height:3.739141pt;}
.hb_c00380{height:12.988594pt;}
.h9_c00380{height:14.890964pt;}
.ha_c00380{height:20.224297pt;}
.h4_c00380{height:20.466875pt;}
.h1_c00380{height:22.303646pt;}
.h5_c00380{height:27.879557pt;}
.h2_c00380{height:31.618698pt;}
.h6_c00380{height:35.357839pt;}
.h3_c00380{height:39.031380pt;}
.h7_c00380{height:42.770521pt;}
.h0_c00380{height:1186.666667pt;}
.w0_c00380{width:782.666667pt;}
.x0_c00380{left:0.000000pt;}
.xda_c00380{left:97.333333pt;}
.xd6_c00380{left:98.293333pt;}
.xd2_c00380{left:102.666667pt;}
.xd3_c00380{left:105.333333pt;}
.xdd_c00380{left:106.666667pt;}
.xd4_c00380{left:116.960000pt;}
.xc7_c00380{left:118.666667pt;}
.xab_c00380{left:120.000000pt;}
.xde_c00380{left:121.333333pt;}
.xdb_c00380{left:132.960000pt;}
.x3_c00380{left:136.000000pt;}
.x37_c00380{left:137.333333pt;}
.xac_c00380{left:139.626667pt;}
.xe5_c00380{left:141.333333pt;}
.xce_c00380{left:142.666667pt;}
.xb2_c00380{left:143.626667pt;}
.xbb_c00380{left:148.000000pt;}
.x4e_c00380{left:150.293333pt;}
.xb8_c00380{left:151.626667pt;}
.x44_c00380{left:153.706667pt;}
.x5a_c00380{left:154.666667pt;}
.x38_c00380{left:155.626667pt;}
.xbc_c00380{left:158.293333pt;}
.x8d_c00380{left:160.000000pt;}
.x1b_c00380{left:163.040000pt;}
.x26_c00380{left:164.373333pt;}
.x9f_c00380{left:168.000000pt;}
.x62_c00380{left:169.706667pt;}
.x4f_c00380{left:172.000000pt;}
.xe6_c00380{left:172.960000pt;}
.x39_c00380{left:176.000000pt;}
.x45_c00380{left:178.666667pt;}
.x75_c00380{left:180.373333pt;}
.x9b_c00380{left:182.666667pt;}
.xd1_c00380{left:184.000000pt;}
.x50_c00380{left:187.626667pt;}
.x84_c00380{left:190.666667pt;}
.x63_c00380{left:192.960000pt;}
.x8e_c00380{left:194.293333pt;}
.x1c_c00380{left:198.666667pt;}
.x6b_c00380{left:200.960000pt;}
.x27_c00380{left:208.000000pt;}
.xf_c00380{left:209.706667pt;}
.x8f_c00380{left:211.040000pt;}
.x7e_c00380{left:212.000000pt;}
.x9c_c00380{left:216.000000pt;}
.x6c_c00380{left:217.706667pt;}
.x46_c00380{left:218.666667pt;}
.x4_c00380{left:226.293333pt;}
.x28_c00380{left:228.373333pt;}
.x76_c00380{left:229.333333pt;}
.x7f_c00380{left:230.666667pt;}
.x85_c00380{left:232.373333pt;}
.xdc_c00380{left:233.333333pt;}
.x90_c00380{left:234.293333pt;}
.xd7_c00380{left:237.333333pt;}
.xdf_c00380{left:238.666667pt;}
.x95_c00380{left:241.333333pt;}
.x1d_c00380{left:242.666667pt;}
.xbd_c00380{left:244.373333pt;}
.x3a_c00380{left:247.040000pt;}
.xa0_c00380{left:248.373333pt;}
.x64_c00380{left:249.333333pt;}
.x5b_c00380{left:250.293333pt;}
.x29_c00380{left:252.000000pt;}
.x77_c00380{left:253.333333pt;}
.xc8_c00380{left:254.666667pt;}
.x86_c00380{left:257.333333pt;}
.x9d_c00380{left:260.000000pt;}
.xa1_c00380{left:260.960000pt;}
.x96_c00380{left:265.333333pt;}
.x10_c00380{left:273.333333pt;}
.x5_c00380{left:274.293333pt;}
.x51_c00380{left:279.040000pt;}
.x78_c00380{left:281.333333pt;}
.xe3_c00380{left:282.666667pt;}
.x47_c00380{left:284.373333pt;}
.x91_c00380{left:288.000000pt;}
.x11_c00380{left:289.706667pt;}
.xae_c00380{left:290.666667pt;}
.x2a_c00380{left:291.626667pt;}
.x6_c00380{left:293.706667pt;}
.xc9_c00380{left:296.000000pt;}
.x79_c00380{left:299.040000pt;}
.x92_c00380{left:300.373333pt;}
.x3b_c00380{left:306.666667pt;}
.x52_c00380{left:310.666667pt;}
.x12_c00380{left:313.706667pt;}
.x1e_c00380{left:314.666667pt;}
.x3c_c00380{left:317.333333pt;}
.x7_c00380{left:319.626667pt;}
.x7a_c00380{left:322.666667pt;}
.x48_c00380{left:325.706667pt;}
.x2b_c00380{left:326.666667pt;}
.x97_c00380{left:328.373333pt;}
.xa6_c00380{left:329.333333pt;}
.xb3_c00380{left:330.666667pt;}
.x1f_c00380{left:332.000000pt;}
.x53_c00380{left:335.240000pt;}
.x65_c00380{left:340.960000pt;}
.x20_c00380{left:343.040000pt;}
.x6d_c00380{left:344.373333pt;}
.x1_c00380{left:348.000000pt;}
.x54_c00380{left:352.960000pt;}
.x2c_c00380{left:354.666667pt;}
.x13_c00380{left:356.960000pt;}
.x49_c00380{left:358.293333pt;}
.xad_c00380{left:364.373333pt;}
.xe9_c00380{left:366.666667pt;}
.x6e_c00380{left:368.000000pt;}
.x2d_c00380{left:370.666667pt;}
.x14_c00380{left:373.706667pt;}
.x98_c00380{left:375.040000pt;}
.x9e_c00380{left:377.333333pt;}
.x3d_c00380{left:381.706667pt;}
.x8_c00380{left:384.000000pt;}
.x21_c00380{left:385.333333pt;}
.x4a_c00380{left:389.333333pt;}
.x7b_c00380{left:390.293333pt;}
.xa8_c00380{left:392.000000pt;}
.x5c_c00380{left:395.626667pt;}
.x15_c00380{left:396.960000pt;}
.x2e_c00380{left:398.666667pt;}
.x99_c00380{left:400.000000pt;}
.xcf_c00380{left:402.666667pt;}
.x3e_c00380{left:405.706667pt;}
.x7c_c00380{left:407.040000pt;}
.xc3_c00380{left:408.000000pt;}
.x55_c00380{left:410.666667pt;}
.x6f_c00380{left:412.373333pt;}
.xa9_c00380{left:413.333333pt;}
.x87_c00380{left:414.666667pt;}
.xea_c00380{left:416.000000pt;}
.x80_c00380{left:418.666667pt;}
.x66_c00380{left:421.333333pt;}
.x2f_c00380{left:427.626667pt;}
.x7d_c00380{left:430.293333pt;}
.x16_c00380{left:431.626667pt;}
.x4b_c00380{left:436.000000pt;}
.xbf_c00380{left:444.000000pt;}
.x22_c00380{left:445.706667pt;}
.x70_c00380{left:447.626667pt;}
.xaf_c00380{left:450.666667pt;}
.xb9_c00380{left:452.000000pt;}
.xaa_c00380{left:453.333333pt;}
.x30_c00380{left:454.666667pt;}
.xca_c00380{left:456.000000pt;}
.x17_c00380{left:458.666667pt;}
.x9_c00380{left:460.000000pt;}
.x4c_c00380{left:464.960000pt;}
.x56_c00380{left:467.626667pt;}
.x88_c00380{left:472.000000pt;}
.x31_c00380{left:475.040000pt;}
.x9a_c00380{left:476.373333pt;}
.x23_c00380{left:477.333333pt;}
.x5d_c00380{left:478.293333pt;}
.xa_c00380{left:480.373333pt;}
.x71_c00380{left:481.333333pt;}
.x18_c00380{left:484.373333pt;}
.xcd_c00380{left:488.000000pt;}
.xb0_c00380{left:490.666667pt;}
.xb5_c00380{left:492.000000pt;}
.x89_c00380{left:493.333333pt;}
.xa2_c00380{left:494.666667pt;}
.x5e_c00380{left:496.373333pt;}
.x32_c00380{left:498.666667pt;}
.x81_c00380{left:501.706667pt;}
.xd8_c00380{left:503.040000pt;}
.xeb_c00380{left:504.000000pt;}
.x3f_c00380{left:508.000000pt;}
.x4d_c00380{left:510.666667pt;}
.x93_c00380{left:511.626667pt;}
.x67_c00380{left:513.333333pt;}
.xb_c00380{left:518.666667pt;}
.x5f_c00380{left:521.333333pt;}
.x72_c00380{left:523.040000pt;}
.xa3_c00380{left:524.000000pt;}
.x40_c00380{left:527.040000pt;}
.xc4_c00380{left:528.000000pt;}
.xb6_c00380{left:530.666667pt;}
.xba_c00380{left:532.000000pt;}
.x8a_c00380{left:534.666667pt;}
.xcb_c00380{left:536.000000pt;}
.x68_c00380{left:537.706667pt;}
.x33_c00380{left:540.000000pt;}
.xe7_c00380{left:544.000000pt;}
.x41_c00380{left:546.666667pt;}
.xe0_c00380{left:548.000000pt;}
.x19_c00380{left:548.960000pt;}
.x8b_c00380{left:556.000000pt;}
.xc0_c00380{left:560.373333pt;}
.x73_c00380{left:562.666667pt;}
.xc1_c00380{left:564.373333pt;}
.x34_c00380{left:565.333333pt;}
.xb7_c00380{left:566.666667pt;}
.xa7_c00380{left:569.333333pt;}
.x57_c00380{left:574.293333pt;}
.xa4_c00380{left:578.666667pt;}
.x24_c00380{left:582.293333pt;}
.x60_c00380{left:583.626667pt;}
.x42_c00380{left:585.706667pt;}
.xc_c00380{left:587.040000pt;}
.x1a_c00380{left:589.333333pt;}
.x58_c00380{left:591.040000pt;}
.x69_c00380{left:592.000000pt;}
.x35_c00380{left:592.960000pt;}
.x82_c00380{left:602.666667pt;}
.x8c_c00380{left:603.626667pt;}
.x74_c00380{left:605.333333pt;}
.xc5_c00380{left:608.000000pt;}
.x25_c00380{left:609.333333pt;}
.x43_c00380{left:611.040000pt;}
.xa5_c00380{left:613.333333pt;}
.x59_c00380{left:614.293333pt;}
.xcc_c00380{left:616.000000pt;}
.x83_c00380{left:617.333333pt;}
.x36_c00380{left:621.333333pt;}
.xd_c00380{left:625.333333pt;}
.x61_c00380{left:626.293333pt;}
.x2_c00380{left:627.626667pt;}
.x6a_c00380{left:632.000000pt;}
.x94_c00380{left:633.333333pt;}
.xd9_c00380{left:634.666667pt;}
.xe1_c00380{left:636.000000pt;}
.xec_c00380{left:641.333333pt;}
.xe_c00380{left:642.666667pt;}
.xc2_c00380{left:644.373333pt;}
.xd0_c00380{left:645.706667pt;}
.xc6_c00380{left:648.000000pt;}
.xb1_c00380{left:650.666667pt;}
.xb4_c00380{left:652.000000pt;}
.xbe_c00380{left:653.706667pt;}
.xd5_c00380{left:672.000000pt;}
.xe8_c00380{left:676.373333pt;}
.xe2_c00380{left:678.666667pt;}
.xe4_c00380{left:680.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_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_75cdd7a72428d1fe8cc6f4d7.woff2')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:1.688965;font-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_c00381{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.mc9_c00381{transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);}
.m35_c00381{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.mb2_c00381{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);}
.m3c_c00381{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m3_c00381{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m89_c00381{transform:matrix(0.368908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368908,0.000000,0.000000,0.250000,0,0);}
.mb0_c00381{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.meb_c00381{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m30_c00381{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m95_c00381{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.mf3_c00381{transform:matrix(0.383052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383052,0.000000,0.000000,0.250000,0,0);}
.mee_c00381{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.m9f_c00381{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.mf2_c00381{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m34_c00381{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m62_c00381{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m8b_c00381{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.mf4_c00381{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m99_c00381{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m5_c00381{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m49_c00381{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m33_c00381{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m87_c00381{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.mdf_c00381{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m67_c00381{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.mf0_c00381{transform:matrix(0.398006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398006,0.000000,0.000000,0.250000,0,0);}
.m64_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);}
.m85_c00381{transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);}
.mdd_c00381{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m1b_c00381{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mc4_c00381{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.mc8_c00381{transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);}
.m3a_c00381{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.me1_c00381{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mf1_c00381{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m39_c00381{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m70_c00381{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.ma7_c00381{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m9e_c00381{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m4c_c00381{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.me0_c00381{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m88_c00381{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m1c_c00381{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m93_c00381{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.md7_c00381{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.mb8_c00381{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m2_c00381{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m2d_c00381{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.mf6_c00381{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m14_c00381{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m4d_c00381{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m82_c00381{transform:matrix(0.417059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417059,0.000000,0.000000,0.250000,0,0);}
.md8_c00381{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m37_c00381{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m15_c00381{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m86_c00381{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mb7_c00381{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m8e_c00381{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m5e_c00381{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m4f_c00381{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.maa_c00381{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m6a_c00381{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mcb_c00381{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m9c_c00381{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mc5_c00381{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m29_c00381{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.ma5_c00381{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m28_c00381{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m3f_c00381{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m48_c00381{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.m5b_c00381{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.ma3_c00381{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mac_c00381{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m6b_c00381{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m11_c00381{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.mcd_c00381{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m97_c00381{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m69_c00381{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mdc_c00381{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.maf_c00381{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.ma8_c00381{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mbb_c00381{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m12_c00381{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.me8_c00381{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.m58_c00381{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.mea_c00381{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m3e_c00381{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m4b_c00381{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m63_c00381{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.mce_c00381{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.mbf_c00381{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mc_c00381{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mcf_c00381{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m2f_c00381{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m5c_c00381{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m73_c00381{transform:matrix(0.461765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461765,0.000000,0.000000,0.250000,0,0);}
.m71_c00381{transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);}
.m9d_c00381{transform:matrix(0.463866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463866,0.000000,0.000000,0.250000,0,0);}
.m2c_c00381{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m26_c00381{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.md1_c00381{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.md9_c00381{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.m19_c00381{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.ma2_c00381{transform:matrix(0.472689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472689,0.000000,0.000000,0.250000,0,0);}
.m9b_c00381{transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);}
.mad_c00381{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m84_c00381{transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);}
.mde_c00381{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m1f_c00381{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mef_c00381{transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);}
.m31_c00381{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m44_c00381{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m5f_c00381{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m4_c00381{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m68_c00381{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mc6_c00381{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m9a_c00381{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.md0_c00381{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m0_c00381{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m16_c00381{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m90_c00381{transform:matrix(0.493506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493506,0.000000,0.000000,0.250000,0,0);}
.m80_c00381{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m6_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);}
.m79_c00381{transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);}
.mca_c00381{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m7b_c00381{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m52_c00381{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m42_c00381{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.ma6_c00381{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m2a_c00381{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m96_c00381{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mbe_c00381{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m8c_c00381{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mb6_c00381{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.ma_c00381{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m83_c00381{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mda_c00381{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m60_c00381{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.m72_c00381{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m9_c00381{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m74_c00381{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.me4_c00381{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.me6_c00381{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m59_c00381{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m32_c00381{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m56_c00381{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m17_c00381{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.md_c00381{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.me2_c00381{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m78_c00381{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m51_c00381{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m6c_c00381{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mdb_c00381{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mcc_c00381{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.me_c00381{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m43_c00381{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mae_c00381{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mc7_c00381{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.me9_c00381{transform:matrix(0.541280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541280,0.000000,0.000000,0.250000,0,0);}
.m41_c00381{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m1a_c00381{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m54_c00381{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m7d_c00381{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.me7_c00381{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m27_c00381{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.ma0_c00381{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m5a_c00381{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.md6_c00381{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);}
.me5_c00381{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m5d_c00381{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m6f_c00381{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m57_c00381{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m21_c00381{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m7_c00381{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m92_c00381{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mc0_c00381{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mb5_c00381{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mc2_c00381{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m61_c00381{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mc1_c00381{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m24_c00381{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m91_c00381{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m8a_c00381{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mec_c00381{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.mba_c00381{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.m2e_c00381{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m25_c00381{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m47_c00381{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.mab_c00381{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mb9_c00381{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m46_c00381{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.md2_c00381{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m4e_c00381{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m66_c00381{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m8d_c00381{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m98_c00381{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.mf5_c00381{transform:matrix(0.588824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588824,0.000000,0.000000,0.250000,0,0);}
.mb_c00381{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m6e_c00381{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m6d_c00381{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m3b_c00381{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m20_c00381{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.mbd_c00381{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.m13_c00381{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m55_c00381{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);}
.m77_c00381{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.ma9_c00381{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m10_c00381{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m8f_c00381{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m1e_c00381{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m3d_c00381{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.md3_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);}
.m7a_c00381{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mbc_c00381{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m1_c00381{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m7c_c00381{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m45_c00381{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.ma1_c00381{transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);}
.m94_c00381{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.md4_c00381{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m65_c00381{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.mb1_c00381{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m18_c00381{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.me3_c00381{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mb4_c00381{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m7e_c00381{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m7f_c00381{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.mf_c00381{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m76_c00381{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.m40_c00381{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m50_c00381{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m23_c00381{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m75_c00381{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m53_c00381{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.ma4_c00381{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m38_c00381{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m1d_c00381{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.m81_c00381{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mc3_c00381{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m8_c00381{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m22_c00381{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.md5_c00381{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m4a_c00381{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m36_c00381{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mb3_c00381{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.med_c00381{transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.004425,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:-5.126959px;}
.ws1_c00381{word-spacing:0.000000px;}
.fc0_c00381{color:transparent;}
.fs7_c00381{font-size:6.780000px;}
.fs3_c00381{font-size:18.720000px;}
.fs1_c00381{font-size:20.400000px;}
.fs4_c00381{font-size:25.500000px;}
.fs0_c00381{font-size:28.920000px;}
.fs5_c00381{font-size:32.340000px;}
.fs2_c00381{font-size:35.700000px;}
.fs6_c00381{font-size:39.120000px;}
.y0_c00381{bottom:0.000000px;}
.ye1_c00381{bottom:250.680000px;}
.ye0_c00381{bottom:251.745000px;}
.ye5_c00381{bottom:251.970000px;}
.ye8_c00381{bottom:252.825000px;}
.ye4_c00381{bottom:253.245000px;}
.ye2_c00381{bottom:253.905000px;}
.ye7_c00381{bottom:254.130000px;}
.ye3_c00381{bottom:254.325000px;}
.ye6_c00381{bottom:255.405000px;}
.ydc_c00381{bottom:270.855000px;}
.ydf_c00381{bottom:271.680000px;}
.ydb_c00381{bottom:272.745000px;}
.yda_c00381{bottom:273.405000px;}
.ydd_c00381{bottom:273.825000px;}
.yde_c00381{bottom:274.905000px;}
.yd7_c00381{bottom:292.245000px;}
.yd9_c00381{bottom:293.325000px;}
.yd5_c00381{bottom:294.405000px;}
.yd8_c00381{bottom:294.630000px;}
.yd6_c00381{bottom:294.825000px;}
.yd0_c00381{bottom:311.745000px;}
.yd1_c00381{bottom:313.470000px;}
.yd2_c00381{bottom:313.905000px;}
.yd3_c00381{bottom:314.970000px;}
.yd4_c00381{bottom:315.405000px;}
.yca_c00381{bottom:331.245000px;}
.ycb_c00381{bottom:332.745000px;}
.yc9_c00381{bottom:333.405000px;}
.yce_c00381{bottom:333.630000px;}
.ycd_c00381{bottom:333.825000px;}
.ycf_c00381{bottom:334.470000px;}
.ycc_c00381{bottom:334.905000px;}
.yc8_c00381{bottom:349.905000px;}
.yc6_c00381{bottom:350.745000px;}
.yc5_c00381{bottom:352.245000px;}
.yc3_c00381{bottom:352.905000px;}
.yc7_c00381{bottom:353.130000px;}
.yc4_c00381{bottom:354.405000px;}
.yc2_c00381{bottom:369.405000px;}
.ybd_c00381{bottom:370.245000px;}
.yc1_c00381{bottom:371.745000px;}
.ybe_c00381{bottom:372.630000px;}
.ybf_c00381{bottom:373.470000px;}
.yc0_c00381{bottom:373.905000px;}
.yb8_c00381{bottom:391.245000px;}
.ybb_c00381{bottom:392.550000px;}
.yb9_c00381{bottom:393.405000px;}
.ybc_c00381{bottom:393.630000px;}
.yba_c00381{bottom:394.470000px;}
.yb7_c00381{bottom:410.745000px;}
.yb4_c00381{bottom:410.970000px;}
.yb3_c00381{bottom:412.905000px;}
.yb5_c00381{bottom:413.130000px;}
.yb6_c00381{bottom:413.970000px;}
.yb0_c00381{bottom:430.245000px;}
.yb2_c00381{bottom:431.325000px;}
.yb1_c00381{bottom:431.970000px;}
.yac_c00381{bottom:432.405000px;}
.yab_c00381{bottom:432.630000px;}
.yad_c00381{bottom:432.825000px;}
.yaf_c00381{bottom:433.470000px;}
.yae_c00381{bottom:433.905000px;}
.ya4_c00381{bottom:448.680000px;}
.ya9_c00381{bottom:449.745000px;}
.yaa_c00381{bottom:449.970000px;}
.ya7_c00381{bottom:451.245000px;}
.ya5_c00381{bottom:451.905000px;}
.ya8_c00381{bottom:452.130000px;}
.ya6_c00381{bottom:453.405000px;}
.ya3_c00381{bottom:468.405000px;}
.ya2_c00381{bottom:469.680000px;}
.ya0_c00381{bottom:470.745000px;}
.y9f_c00381{bottom:472.905000px;}
.ya1_c00381{bottom:473.970000px;}
.y9e_c00381{bottom:488.970000px;}
.y9c_c00381{bottom:489.405000px;}
.y9b_c00381{bottom:490.245000px;}
.y98_c00381{bottom:490.470000px;}
.y9a_c00381{bottom:491.130000px;}
.y99_c00381{bottom:491.325000px;}
.y9d_c00381{bottom:491.970000px;}
.y97_c00381{bottom:492.405000px;}
.y92_c00381{bottom:508.905000px;}
.y96_c00381{bottom:509.745000px;}
.y91_c00381{bottom:509.970000px;}
.y8f_c00381{bottom:511.050000px;}
.y94_c00381{bottom:511.470000px;}
.y93_c00381{bottom:511.905000px;}
.y90_c00381{bottom:512.130000px;}
.y95_c00381{bottom:512.970000px;}
.y8d_c00381{bottom:527.970000px;}
.y8e_c00381{bottom:528.405000px;}
.y8b_c00381{bottom:529.245000px;}
.y8c_c00381{bottom:530.970000px;}
.y8a_c00381{bottom:531.405000px;}
.y88_c00381{bottom:548.745000px;}
.y89_c00381{bottom:549.630000px;}
.y83_c00381{bottom:550.245000px;}
.y87_c00381{bottom:550.905000px;}
.y85_c00381{bottom:551.130000px;}
.y86_c00381{bottom:551.970000px;}
.y84_c00381{bottom:552.405000px;}
.y80_c00381{bottom:569.745000px;}
.y82_c00381{bottom:570.405000px;}
.y81_c00381{bottom:571.905000px;}
.y7d_c00381{bottom:589.245000px;}
.y7c_c00381{bottom:590.130000px;}
.y7e_c00381{bottom:590.325000px;}
.y7f_c00381{bottom:590.970000px;}
.y7a_c00381{bottom:591.405000px;}
.y7b_c00381{bottom:592.470000px;}
.y77_c00381{bottom:606.405000px;}
.y79_c00381{bottom:608.745000px;}
.y78_c00381{bottom:610.905000px;}
.y73_c00381{bottom:628.050000px;}
.y72_c00381{bottom:628.245000px;}
.y76_c00381{bottom:629.130000px;}
.y74_c00381{bottom:629.970000px;}
.y75_c00381{bottom:630.405000px;}
.y71_c00381{bottom:647.745000px;}
.y70_c00381{bottom:649.905000px;}
.y6e_c00381{bottom:667.245000px;}
.y6b_c00381{bottom:669.405000px;}
.y6d_c00381{bottom:669.630000px;}
.y6c_c00381{bottom:670.470000px;}
.y6f_c00381{bottom:670.905000px;}
.y69_c00381{bottom:685.905000px;}
.y61_c00381{bottom:686.745000px;}
.y63_c00381{bottom:686.970000px;}
.y64_c00381{bottom:687.825000px;}
.y67_c00381{bottom:688.245000px;}
.y6a_c00381{bottom:688.470000px;}
.y62_c00381{bottom:688.905000px;}
.y65_c00381{bottom:689.130000px;}
.y68_c00381{bottom:689.970000px;}
.y66_c00381{bottom:690.405000px;}
.y5f_c00381{bottom:705.405000px;}
.y5e_c00381{bottom:706.245000px;}
.y5c_c00381{bottom:708.405000px;}
.y5d_c00381{bottom:708.630000px;}
.y60_c00381{bottom:709.470000px;}
.y5b_c00381{bottom:725.745000px;}
.y58_c00381{bottom:727.245000px;}
.y57_c00381{bottom:727.905000px;}
.y5a_c00381{bottom:728.130000px;}
.y59_c00381{bottom:729.405000px;}
.y56_c00381{bottom:744.405000px;}
.y54_c00381{bottom:746.745000px;}
.y53_c00381{bottom:748.470000px;}
.y52_c00381{bottom:748.905000px;}
.y55_c00381{bottom:749.130000px;}
.y50_c00381{bottom:766.245000px;}
.y51_c00381{bottom:767.130000px;}
.y4d_c00381{bottom:767.970000px;}
.y4e_c00381{bottom:768.405000px;}
.y4f_c00381{bottom:768.630000px;}
.y4c_c00381{bottom:769.470000px;}
.y49_c00381{bottom:785.745000px;}
.y4a_c00381{bottom:786.630000px;}
.y4b_c00381{bottom:787.470000px;}
.y47_c00381{bottom:787.905000px;}
.y48_c00381{bottom:788.970000px;}
.y44_c00381{bottom:805.245000px;}
.y45_c00381{bottom:806.325000px;}
.y43_c00381{bottom:807.405000px;}
.y46_c00381{bottom:807.630000px;}
.y42_c00381{bottom:823.905000px;}
.y3e_c00381{bottom:824.745000px;}
.y40_c00381{bottom:826.245000px;}
.y3f_c00381{bottom:826.905000px;}
.y41_c00381{bottom:828.405000px;}
.y3d_c00381{bottom:845.745000px;}
.y3c_c00381{bottom:847.470000px;}
.y3b_c00381{bottom:847.905000px;}
.y3a_c00381{bottom:863.745000px;}
.y38_c00381{bottom:865.245000px;}
.y35_c00381{bottom:866.130000px;}
.y37_c00381{bottom:866.325000px;}
.y39_c00381{bottom:866.970000px;}
.y36_c00381{bottom:867.405000px;}
.y31_c00381{bottom:882.405000px;}
.y2e_c00381{bottom:884.745000px;}
.y30_c00381{bottom:885.630000px;}
.y32_c00381{bottom:886.470000px;}
.y2f_c00381{bottom:886.905000px;}
.y33_c00381{bottom:887.130000px;}
.y34_c00381{bottom:887.970000px;}
.y2b_c00381{bottom:904.245000px;}
.y2d_c00381{bottom:905.970000px;}
.y2a_c00381{bottom:906.405000px;}
.y2c_c00381{bottom:906.630000px;}
.y27_c00381{bottom:923.745000px;}
.y28_c00381{bottom:924.825000px;}
.y24_c00381{bottom:925.470000px;}
.y25_c00381{bottom:925.905000px;}
.y29_c00381{bottom:926.130000px;}
.y26_c00381{bottom:926.970000px;}
.y22_c00381{bottom:942.825000px;}
.y20_c00381{bottom:943.245000px;}
.y23_c00381{bottom:944.130000px;}
.y1f_c00381{bottom:945.405000px;}
.y21_c00381{bottom:945.630000px;}
.y1d_c00381{bottom:963.405000px;}
.y1c_c00381{bottom:963.825000px;}
.y1e_c00381{bottom:964.245000px;}
.y1a_c00381{bottom:982.680000px;}
.y17_c00381{bottom:983.745000px;}
.y1b_c00381{bottom:984.825000px;}
.y19_c00381{bottom:985.470000px;}
.y18_c00381{bottom:985.905000px;}
.y16_c00381{bottom:1003.905000px;}
.y12_c00381{bottom:1004.130000px;}
.y13_c00381{bottom:1004.325000px;}
.y15_c00381{bottom:1004.970000px;}
.y11_c00381{bottom:1005.405000px;}
.y14_c00381{bottom:1006.470000px;}
.ye_c00381{bottom:1022.325000px;}
.yf_c00381{bottom:1022.745000px;}
.yd_c00381{bottom:1024.470000px;}
.yc_c00381{bottom:1024.905000px;}
.y10_c00381{bottom:1025.970000px;}
.yb_c00381{bottom:1042.245000px;}
.ya_c00381{bottom:1043.325000px;}
.y8_c00381{bottom:1043.970000px;}
.y9_c00381{bottom:1044.405000px;}
.y4_c00381{bottom:1060.905000px;}
.y3_c00381{bottom:1061.745000px;}
.y5_c00381{bottom:1063.905000px;}
.y6_c00381{bottom:1064.130000px;}
.y7_c00381{bottom:1064.970000px;}
.y1_c00381{bottom:1099.905000px;}
.y2_c00381{bottom:1102.050000px;}
.h8_c00381{height:8.339268px;}
.h4_c00381{height:23.025234px;}
.h2_c00381{height:25.091602px;}
.h5_c00381{height:31.364502px;}
.h1_c00381{height:35.571035px;}
.h6_c00381{height:39.777568px;}
.h3_c00381{height:43.910303px;}
.h7_c00381{height:48.116836px;}
.h0_c00381{height:1335.000000px;}
.w0_c00381{width:880.500000px;}
.x0_c00381{left:0.000000px;}
.x10b_c00381{left:151.500000px;}
.x1_c00381{left:152.580000px;}
.x3_c00381{left:154.080000px;}
.x107_c00381{left:168.000000px;}
.x47_c00381{left:169.080000px;}
.x95_c00381{left:172.920000px;}
.x6b_c00381{left:181.080000px;}
.xd6_c00381{left:183.000000px;}
.x7f_c00381{left:184.920000px;}
.x9a_c00381{left:186.000000px;}
.xff_c00381{left:190.920000px;}
.x39_c00381{left:192.420000px;}
.x12_c00381{left:194.580000px;}
.xc9_c00381{left:196.080000px;}
.xa8_c00381{left:198.000000px;}
.xae_c00381{left:199.500000px;}
.xc4_c00381{left:200.580000px;}
.x2c_c00381{left:202.500000px;}
.x80_c00381{left:205.500000px;}
.x60_c00381{left:208.500000px;}
.x4_c00381{left:209.775000px;}
.x53_c00381{left:211.080000px;}
.x48_c00381{left:213.420000px;}
.x6c_c00381{left:214.500000px;}
.xaf_c00381{left:216.420000px;}
.x13_c00381{left:217.920000px;}
.x45_c00381{left:219.420000px;}
.xfa_c00381{left:220.920000px;}
.xe6_c00381{left:222.000000px;}
.x105_c00381{left:223.500000px;}
.x9f_c00381{left:225.000000px;}
.xec_c00381{left:228.000000px;}
.x54_c00381{left:229.500000px;}
.x90_c00381{left:231.420000px;}
.x3a_c00381{left:234.420000px;}
.x1f_c00381{left:235.500000px;}
.xc5_c00381{left:237.420000px;}
.x49_c00381{left:241.500000px;}
.x61_c00381{left:243.000000px;}
.xed_c00381{left:247.500000px;}
.x77_c00381{left:249.000000px;}
.x89_c00381{left:250.920000px;}
.x5_c00381{left:252.420000px;}
.xb2_c00381{left:253.500000px;}
.x96_c00381{left:255.000000px;}
.x55_c00381{left:256.500000px;}
.x46_c00381{left:259.500000px;}
.x3b_c00381{left:261.000000px;}
.x2d_c00381{left:262.500000px;}
.x6d_c00381{left:264.000000px;}
.x14_c00381{left:265.920000px;}
.x110_c00381{left:267.000000px;}
.x78_c00381{left:268.920000px;}
.xf8_c00381{left:271.080000px;}
.x6_c00381{left:274.500000px;}
.x91_c00381{left:276.000000px;}
.xc6_c00381{left:277.080000px;}
.x8a_c00381{left:279.420000px;}
.x2e_c00381{left:280.500000px;}
.xd7_c00381{left:282.000000px;}
.xe7_c00381{left:283.080000px;}
.x6e_c00381{left:284.580000px;}
.xcf_c00381{left:286.500000px;}
.x10c_c00381{left:288.000000px;}
.x100_c00381{left:289.920000px;}
.xe0_c00381{left:292.500000px;}
.x20_c00381{left:294.420000px;}
.x79_c00381{left:297.000000px;}
.xd1_c00381{left:298.500000px;}
.x3c_c00381{left:299.580000px;}
.xdc_c00381{left:301.500000px;}
.x97_c00381{left:303.420000px;}
.x4a_c00381{left:304.500000px;}
.x56_c00381{left:307.500000px;}
.xee_c00381{left:309.000000px;}
.x2f_c00381{left:312.000000px;}
.xe1_c00381{left:313.920000px;}
.x106_c00381{left:318.000000px;}
.x21_c00381{left:319.500000px;}
.x92_c00381{left:322.920000px;}
.xf3_c00381{left:324.000000px;}
.x57_c00381{left:325.500000px;}
.xa9_c00381{left:327.000000px;}
.x4b_c00381{left:330.000000px;}
.x3d_c00381{left:331.080000px;}
.x15_c00381{left:334.920000px;}
.x10d_c00381{left:336.000000px;}
.x62_c00381{left:338.580000px;}
.xe2_c00381{left:340.080000px;}
.xb7_c00381{left:343.500000px;}
.x111_c00381{left:345.420000px;}
.xef_c00381{left:348.000000px;}
.x7_c00381{left:349.080000px;}
.x7a_c00381{left:351.000000px;}
.x81_c00381{left:352.920000px;}
.xa0_c00381{left:354.420000px;}
.x6f_c00381{left:357.000000px;}
.x101_c00381{left:358.080000px;}
.x22_c00381{left:360.420000px;}
.xf0_c00381{left:366.000000px;}
.xb8_c00381{left:367.080000px;}
.x8_c00381{left:369.420000px;}
.x16_c00381{left:370.920000px;}
.x3e_c00381{left:374.580000px;}
.x70_c00381{left:376.920000px;}
.x82_c00381{left:378.000000px;}
.xbe_c00381{left:379.920000px;}
.x98_c00381{left:381.420000px;}
.xd8_c00381{left:382.920000px;}
.x108_c00381{left:388.920000px;}
.xca_c00381{left:390.000000px;}
.x2_c00381{left:391.500000px;}
.x9b_c00381{left:393.420000px;}
.x3f_c00381{left:394.920000px;}
.x23_c00381{left:396.000000px;}
.x63_c00381{left:397.500000px;}
.x17_c00381{left:399.000000px;}
.x9_c00381{left:400.500000px;}
.xfb_c00381{left:402.420000px;}
.xe3_c00381{left:404.145000px;}
.x30_c00381{left:408.420000px;}
.x64_c00381{left:412.500000px;}
.xb3_c00381{left:414.000000px;}
.x71_c00381{left:417.000000px;}
.xb9_c00381{left:418.920000px;}
.xe8_c00381{left:420.000000px;}
.x40_c00381{left:421.920000px;}
.x83_c00381{left:424.920000px;}
.xaa_c00381{left:426.000000px;}
.x9c_c00381{left:427.500000px;}
.xf9_c00381{left:428.580000px;}
.xfc_c00381{left:430.920000px;}
.xb4_c00381{left:433.500000px;}
.x31_c00381{left:435.420000px;}
.xf1_c00381{left:436.920000px;}
.x24_c00381{left:438.000000px;}
.xbf_c00381{left:439.500000px;}
.x18_c00381{left:441.420000px;}
.x8b_c00381{left:445.920000px;}
.xba_c00381{left:447.420000px;}
.x93_c00381{left:448.920000px;}
.x109_c00381{left:451.080000px;}
.xa_c00381{left:453.000000px;}
.xf7_c00381{left:456.420000px;}
.xcb_c00381{left:457.500000px;}
.xd9_c00381{left:458.580000px;}
.x58_c00381{left:460.500000px;}
.x72_c00381{left:461.580000px;}
.xe9_c00381{left:466.920000px;}
.x4c_c00381{left:468.000000px;}
.x65_c00381{left:471.000000px;}
.xb5_c00381{left:472.500000px;}
.x8c_c00381{left:474.420000px;}
.xc0_c00381{left:475.920000px;}
.x32_c00381{left:478.080000px;}
.x73_c00381{left:481.500000px;}
.x10e_c00381{left:483.420000px;}
.xda_c00381{left:484.500000px;}
.x19_c00381{left:485.580000px;}
.x84_c00381{left:487.080000px;}
.xb_c00381{left:490.500000px;}
.x41_c00381{left:492.000000px;}
.x4d_c00381{left:493.920000px;}
.x25_c00381{left:496.500000px;}
.x59_c00381{left:498.000000px;}
.xa1_c00381{left:499.500000px;}
.x66_c00381{left:501.000000px;}
.xf2_c00381{left:502.500000px;}
.x9d_c00381{left:504.000000px;}
.xa4_c00381{left:505.080000px;}
.x74_c00381{left:507.000000px;}
.x26_c00381{left:510.000000px;}
.xea_c00381{left:514.080000px;}
.x102_c00381{left:516.000000px;}
.x1a_c00381{left:519.420000px;}
.xd2_c00381{left:520.500000px;}
.x4e_c00381{left:521.580000px;}
.x33_c00381{left:523.500000px;}
.xc_c00381{left:526.080000px;}
.x75_c00381{left:528.000000px;}
.xb6_c00381{left:529.080000px;}
.xa2_c00381{left:531.000000px;}
.x5a_c00381{left:532.500000px;}
.x7b_c00381{left:535.920000px;}
.x27_c00381{left:537.420000px;}
.xb0_c00381{left:538.500000px;}
.x8d_c00381{left:543.000000px;}
.xdd_c00381{left:544.920000px;}
.x1b_c00381{left:547.500000px;}
.x85_c00381{left:548.580000px;}
.x5b_c00381{left:550.500000px;}
.xcc_c00381{left:552.645000px;}
.xf4_c00381{left:553.920000px;}
.xc1_c00381{left:555.420000px;}
.xd_c00381{left:557.580000px;}
.xeb_c00381{left:559.500000px;}
.xbb_c00381{left:561.000000px;}
.x5c_c00381{left:562.920000px;}
.xab_c00381{left:564.420000px;}
.x86_c00381{left:565.920000px;}
.xfd_c00381{left:567.000000px;}
.x4f_c00381{left:568.500000px;}
.x99_c00381{left:570.000000px;}
.x103_c00381{left:571.920000px;}
.xc7_c00381{left:577.080000px;}
.x34_c00381{left:579.000000px;}
.x28_c00381{left:580.500000px;}
.x7c_c00381{left:582.000000px;}
.x67_c00381{left:583.500000px;}
.xa5_c00381{left:585.000000px;}
.x42_c00381{left:588.000000px;}
.xd3_c00381{left:591.000000px;}
.x5d_c00381{left:592.920000px;}
.x29_c00381{left:595.500000px;}
.xde_c00381{left:600.000000px;}
.xe_c00381{left:601.500000px;}
.x68_c00381{left:603.420000px;}
.x35_c00381{left:606.000000px;}
.xd4_c00381{left:607.080000px;}
.xf5_c00381{left:609.420000px;}
.xc2_c00381{left:612.000000px;}
.x8e_c00381{left:613.920000px;}
.xcd_c00381{left:616.080000px;}
.xac_c00381{left:618.000000px;}
.xa3_c00381{left:621.000000px;}
.x2a_c00381{left:622.500000px;}
.xf_c00381{left:625.920000px;}
.x50_c00381{left:627.000000px;}
.x69_c00381{left:629.580000px;}
.xa6_c00381{left:633.000000px;}
.x87_c00381{left:634.500000px;}
.x1c_c00381{left:636.420000px;}
.xe4_c00381{left:637.920000px;}
.xbc_c00381{left:640.080000px;}
.x51_c00381{left:642.420000px;}
.x36_c00381{left:644.580000px;}
.xb1_c00381{left:646.500000px;}
.x43_c00381{left:649.080000px;}
.x88_c00381{left:651.000000px;}
.x104_c00381{left:654.420000px;}
.x10_c00381{left:655.500000px;}
.xc8_c00381{left:656.580000px;}
.xe5_c00381{left:658.500000px;}
.xdb_c00381{left:659.580000px;}
.xfe_c00381{left:661.500000px;}
.x37_c00381{left:663.420000px;}
.x7d_c00381{left:666.420000px;}
.xc3_c00381{left:670.500000px;}
.x5e_c00381{left:672.000000px;}
.x1d_c00381{left:673.500000px;}
.x76_c00381{left:677.580000px;}
.x94_c00381{left:679.080000px;}
.x52_c00381{left:681.420000px;}
.x9e_c00381{left:682.500000px;}
.x10f_c00381{left:684.000000px;}
.xf6_c00381{left:685.080000px;}
.x2b_c00381{left:687.000000px;}
.xd0_c00381{left:688.500000px;}
.xad_c00381{left:689.580000px;}
.x38_c00381{left:691.080000px;}
.x112_c00381{left:694.920000px;}
.xd5_c00381{left:696.420000px;}
.x10a_c00381{left:697.500000px;}
.x8f_c00381{left:700.500000px;}
.x6a_c00381{left:702.000000px;}
.xbd_c00381{left:705.000000px;}
.xa7_c00381{left:706.080000px;}
.x7e_c00381{left:708.420000px;}
.x5f_c00381{left:709.920000px;}
.x1e_c00381{left:713.580000px;}
.xdf_c00381{left:715.500000px;}
.x11_c00381{left:717.000000px;}
.x44_c00381{left:718.080000px;}
.xce_c00381{left:720.000000px;}
@media print{
.v0_c00381{vertical-align:0.000000pt;}
.ls0_c00381{letter-spacing:0.000000pt;}
.ws0_c00381{word-spacing:-4.557297pt;}
.ws1_c00381{word-spacing:0.000000pt;}
.fs7_c00381{font-size:6.026667pt;}
.fs3_c00381{font-size:16.640000pt;}
.fs1_c00381{font-size:18.133333pt;}
.fs4_c00381{font-size:22.666667pt;}
.fs0_c00381{font-size:25.706667pt;}
.fs5_c00381{font-size:28.746667pt;}
.fs2_c00381{font-size:31.733333pt;}
.fs6_c00381{font-size:34.773333pt;}
.y0_c00381{bottom:0.000000pt;}
.ye1_c00381{bottom:222.826667pt;}
.ye0_c00381{bottom:223.773333pt;}
.ye5_c00381{bottom:223.973333pt;}
.ye8_c00381{bottom:224.733333pt;}
.ye4_c00381{bottom:225.106667pt;}
.ye2_c00381{bottom:225.693333pt;}
.ye7_c00381{bottom:225.893333pt;}
.ye3_c00381{bottom:226.066667pt;}
.ye6_c00381{bottom:227.026667pt;}
.ydc_c00381{bottom:240.760000pt;}
.ydf_c00381{bottom:241.493333pt;}
.ydb_c00381{bottom:242.440000pt;}
.yda_c00381{bottom:243.026667pt;}
.ydd_c00381{bottom:243.400000pt;}
.yde_c00381{bottom:244.360000pt;}
.yd7_c00381{bottom:259.773333pt;}
.yd9_c00381{bottom:260.733333pt;}
.yd5_c00381{bottom:261.693333pt;}
.yd8_c00381{bottom:261.893333pt;}
.yd6_c00381{bottom:262.066667pt;}
.yd0_c00381{bottom:277.106667pt;}
.yd1_c00381{bottom:278.640000pt;}
.yd2_c00381{bottom:279.026667pt;}
.yd3_c00381{bottom:279.973333pt;}
.yd4_c00381{bottom:280.360000pt;}
.yca_c00381{bottom:294.440000pt;}
.ycb_c00381{bottom:295.773333pt;}
.yc9_c00381{bottom:296.360000pt;}
.yce_c00381{bottom:296.560000pt;}
.ycd_c00381{bottom:296.733333pt;}
.ycf_c00381{bottom:297.306667pt;}
.ycc_c00381{bottom:297.693333pt;}
.yc8_c00381{bottom:311.026667pt;}
.yc6_c00381{bottom:311.773333pt;}
.yc5_c00381{bottom:313.106667pt;}
.yc3_c00381{bottom:313.693333pt;}
.yc7_c00381{bottom:313.893333pt;}
.yc4_c00381{bottom:315.026667pt;}
.yc2_c00381{bottom:328.360000pt;}
.ybd_c00381{bottom:329.106667pt;}
.yc1_c00381{bottom:330.440000pt;}
.ybe_c00381{bottom:331.226667pt;}
.ybf_c00381{bottom:331.973333pt;}
.yc0_c00381{bottom:332.360000pt;}
.yb8_c00381{bottom:347.773333pt;}
.ybb_c00381{bottom:348.933333pt;}
.yb9_c00381{bottom:349.693333pt;}
.ybc_c00381{bottom:349.893333pt;}
.yba_c00381{bottom:350.640000pt;}
.yb7_c00381{bottom:365.106667pt;}
.yb4_c00381{bottom:365.306667pt;}
.yb3_c00381{bottom:367.026667pt;}
.yb5_c00381{bottom:367.226667pt;}
.yb6_c00381{bottom:367.973333pt;}
.yb0_c00381{bottom:382.440000pt;}
.yb2_c00381{bottom:383.400000pt;}
.yb1_c00381{bottom:383.973333pt;}
.yac_c00381{bottom:384.360000pt;}
.yab_c00381{bottom:384.560000pt;}
.yad_c00381{bottom:384.733333pt;}
.yaf_c00381{bottom:385.306667pt;}
.yae_c00381{bottom:385.693333pt;}
.ya4_c00381{bottom:398.826667pt;}
.ya9_c00381{bottom:399.773333pt;}
.yaa_c00381{bottom:399.973333pt;}
.ya7_c00381{bottom:401.106667pt;}
.ya5_c00381{bottom:401.693333pt;}
.ya8_c00381{bottom:401.893333pt;}
.ya6_c00381{bottom:403.026667pt;}
.ya3_c00381{bottom:416.360000pt;}
.ya2_c00381{bottom:417.493333pt;}
.ya0_c00381{bottom:418.440000pt;}
.y9f_c00381{bottom:420.360000pt;}
.ya1_c00381{bottom:421.306667pt;}
.y9e_c00381{bottom:434.640000pt;}
.y9c_c00381{bottom:435.026667pt;}
.y9b_c00381{bottom:435.773333pt;}
.y98_c00381{bottom:435.973333pt;}
.y9a_c00381{bottom:436.560000pt;}
.y99_c00381{bottom:436.733333pt;}
.y9d_c00381{bottom:437.306667pt;}
.y97_c00381{bottom:437.693333pt;}
.y92_c00381{bottom:452.360000pt;}
.y96_c00381{bottom:453.106667pt;}
.y91_c00381{bottom:453.306667pt;}
.y8f_c00381{bottom:454.266667pt;}
.y94_c00381{bottom:454.640000pt;}
.y93_c00381{bottom:455.026667pt;}
.y90_c00381{bottom:455.226667pt;}
.y95_c00381{bottom:455.973333pt;}
.y8d_c00381{bottom:469.306667pt;}
.y8e_c00381{bottom:469.693333pt;}
.y8b_c00381{bottom:470.440000pt;}
.y8c_c00381{bottom:471.973333pt;}
.y8a_c00381{bottom:472.360000pt;}
.y88_c00381{bottom:487.773333pt;}
.y89_c00381{bottom:488.560000pt;}
.y83_c00381{bottom:489.106667pt;}
.y87_c00381{bottom:489.693333pt;}
.y85_c00381{bottom:489.893333pt;}
.y86_c00381{bottom:490.640000pt;}
.y84_c00381{bottom:491.026667pt;}
.y80_c00381{bottom:506.440000pt;}
.y82_c00381{bottom:507.026667pt;}
.y81_c00381{bottom:508.360000pt;}
.y7d_c00381{bottom:523.773333pt;}
.y7c_c00381{bottom:524.560000pt;}
.y7e_c00381{bottom:524.733333pt;}
.y7f_c00381{bottom:525.306667pt;}
.y7a_c00381{bottom:525.693333pt;}
.y7b_c00381{bottom:526.640000pt;}
.y77_c00381{bottom:539.026667pt;}
.y79_c00381{bottom:541.106667pt;}
.y78_c00381{bottom:543.026667pt;}
.y73_c00381{bottom:558.266667pt;}
.y72_c00381{bottom:558.440000pt;}
.y76_c00381{bottom:559.226667pt;}
.y74_c00381{bottom:559.973333pt;}
.y75_c00381{bottom:560.360000pt;}
.y71_c00381{bottom:575.773333pt;}
.y70_c00381{bottom:577.693333pt;}
.y6e_c00381{bottom:593.106667pt;}
.y6b_c00381{bottom:595.026667pt;}
.y6d_c00381{bottom:595.226667pt;}
.y6c_c00381{bottom:595.973333pt;}
.y6f_c00381{bottom:596.360000pt;}
.y69_c00381{bottom:609.693333pt;}
.y61_c00381{bottom:610.440000pt;}
.y63_c00381{bottom:610.640000pt;}
.y64_c00381{bottom:611.400000pt;}
.y67_c00381{bottom:611.773333pt;}
.y6a_c00381{bottom:611.973333pt;}
.y62_c00381{bottom:612.360000pt;}
.y65_c00381{bottom:612.560000pt;}
.y68_c00381{bottom:613.306667pt;}
.y66_c00381{bottom:613.693333pt;}
.y5f_c00381{bottom:627.026667pt;}
.y5e_c00381{bottom:627.773333pt;}
.y5c_c00381{bottom:629.693333pt;}
.y5d_c00381{bottom:629.893333pt;}
.y60_c00381{bottom:630.640000pt;}
.y5b_c00381{bottom:645.106667pt;}
.y58_c00381{bottom:646.440000pt;}
.y57_c00381{bottom:647.026667pt;}
.y5a_c00381{bottom:647.226667pt;}
.y59_c00381{bottom:648.360000pt;}
.y56_c00381{bottom:661.693333pt;}
.y54_c00381{bottom:663.773333pt;}
.y53_c00381{bottom:665.306667pt;}
.y52_c00381{bottom:665.693333pt;}
.y55_c00381{bottom:665.893333pt;}
.y50_c00381{bottom:681.106667pt;}
.y51_c00381{bottom:681.893333pt;}
.y4d_c00381{bottom:682.640000pt;}
.y4e_c00381{bottom:683.026667pt;}
.y4f_c00381{bottom:683.226667pt;}
.y4c_c00381{bottom:683.973333pt;}
.y49_c00381{bottom:698.440000pt;}
.y4a_c00381{bottom:699.226667pt;}
.y4b_c00381{bottom:699.973333pt;}
.y47_c00381{bottom:700.360000pt;}
.y48_c00381{bottom:701.306667pt;}
.y44_c00381{bottom:715.773333pt;}
.y45_c00381{bottom:716.733333pt;}
.y43_c00381{bottom:717.693333pt;}
.y46_c00381{bottom:717.893333pt;}
.y42_c00381{bottom:732.360000pt;}
.y3e_c00381{bottom:733.106667pt;}
.y40_c00381{bottom:734.440000pt;}
.y3f_c00381{bottom:735.026667pt;}
.y41_c00381{bottom:736.360000pt;}
.y3d_c00381{bottom:751.773333pt;}
.y3c_c00381{bottom:753.306667pt;}
.y3b_c00381{bottom:753.693333pt;}
.y3a_c00381{bottom:767.773333pt;}
.y38_c00381{bottom:769.106667pt;}
.y35_c00381{bottom:769.893333pt;}
.y37_c00381{bottom:770.066667pt;}
.y39_c00381{bottom:770.640000pt;}
.y36_c00381{bottom:771.026667pt;}
.y31_c00381{bottom:784.360000pt;}
.y2e_c00381{bottom:786.440000pt;}
.y30_c00381{bottom:787.226667pt;}
.y32_c00381{bottom:787.973333pt;}
.y2f_c00381{bottom:788.360000pt;}
.y33_c00381{bottom:788.560000pt;}
.y34_c00381{bottom:789.306667pt;}
.y2b_c00381{bottom:803.773333pt;}
.y2d_c00381{bottom:805.306667pt;}
.y2a_c00381{bottom:805.693333pt;}
.y2c_c00381{bottom:805.893333pt;}
.y27_c00381{bottom:821.106667pt;}
.y28_c00381{bottom:822.066667pt;}
.y24_c00381{bottom:822.640000pt;}
.y25_c00381{bottom:823.026667pt;}
.y29_c00381{bottom:823.226667pt;}
.y26_c00381{bottom:823.973333pt;}
.y22_c00381{bottom:838.066667pt;}
.y20_c00381{bottom:838.440000pt;}
.y23_c00381{bottom:839.226667pt;}
.y1f_c00381{bottom:840.360000pt;}
.y21_c00381{bottom:840.560000pt;}
.y1d_c00381{bottom:856.360000pt;}
.y1c_c00381{bottom:856.733333pt;}
.y1e_c00381{bottom:857.106667pt;}
.y1a_c00381{bottom:873.493333pt;}
.y17_c00381{bottom:874.440000pt;}
.y1b_c00381{bottom:875.400000pt;}
.y19_c00381{bottom:875.973333pt;}
.y18_c00381{bottom:876.360000pt;}
.y16_c00381{bottom:892.360000pt;}
.y12_c00381{bottom:892.560000pt;}
.y13_c00381{bottom:892.733333pt;}
.y15_c00381{bottom:893.306667pt;}
.y11_c00381{bottom:893.693333pt;}
.y14_c00381{bottom:894.640000pt;}
.ye_c00381{bottom:908.733333pt;}
.yf_c00381{bottom:909.106667pt;}
.yd_c00381{bottom:910.640000pt;}
.yc_c00381{bottom:911.026667pt;}
.y10_c00381{bottom:911.973333pt;}
.yb_c00381{bottom:926.440000pt;}
.ya_c00381{bottom:927.400000pt;}
.y8_c00381{bottom:927.973333pt;}
.y9_c00381{bottom:928.360000pt;}
.y4_c00381{bottom:943.026667pt;}
.y3_c00381{bottom:943.773333pt;}
.y5_c00381{bottom:945.693333pt;}
.y6_c00381{bottom:945.893333pt;}
.y7_c00381{bottom:946.640000pt;}
.y1_c00381{bottom:977.693333pt;}
.y2_c00381{bottom:979.600000pt;}
.h8_c00381{height:7.412682pt;}
.h4_c00381{height:20.466875pt;}
.h2_c00381{height:22.303646pt;}
.h5_c00381{height:27.879557pt;}
.h1_c00381{height:31.618698pt;}
.h6_c00381{height:35.357839pt;}
.h3_c00381{height:39.031380pt;}
.h7_c00381{height:42.770521pt;}
.h0_c00381{height:1186.666667pt;}
.w0_c00381{width:782.666667pt;}
.x0_c00381{left:0.000000pt;}
.x10b_c00381{left:134.666667pt;}
.x1_c00381{left:135.626667pt;}
.x3_c00381{left:136.960000pt;}
.x107_c00381{left:149.333333pt;}
.x47_c00381{left:150.293333pt;}
.x95_c00381{left:153.706667pt;}
.x6b_c00381{left:160.960000pt;}
.xd6_c00381{left:162.666667pt;}
.x7f_c00381{left:164.373333pt;}
.x9a_c00381{left:165.333333pt;}
.xff_c00381{left:169.706667pt;}
.x39_c00381{left:171.040000pt;}
.x12_c00381{left:172.960000pt;}
.xc9_c00381{left:174.293333pt;}
.xa8_c00381{left:176.000000pt;}
.xae_c00381{left:177.333333pt;}
.xc4_c00381{left:178.293333pt;}
.x2c_c00381{left:180.000000pt;}
.x80_c00381{left:182.666667pt;}
.x60_c00381{left:185.333333pt;}
.x4_c00381{left:186.466667pt;}
.x53_c00381{left:187.626667pt;}
.x48_c00381{left:189.706667pt;}
.x6c_c00381{left:190.666667pt;}
.xaf_c00381{left:192.373333pt;}
.x13_c00381{left:193.706667pt;}
.x45_c00381{left:195.040000pt;}
.xfa_c00381{left:196.373333pt;}
.xe6_c00381{left:197.333333pt;}
.x105_c00381{left:198.666667pt;}
.x9f_c00381{left:200.000000pt;}
.xec_c00381{left:202.666667pt;}
.x54_c00381{left:204.000000pt;}
.x90_c00381{left:205.706667pt;}
.x3a_c00381{left:208.373333pt;}
.x1f_c00381{left:209.333333pt;}
.xc5_c00381{left:211.040000pt;}
.x49_c00381{left:214.666667pt;}
.x61_c00381{left:216.000000pt;}
.xed_c00381{left:220.000000pt;}
.x77_c00381{left:221.333333pt;}
.x89_c00381{left:223.040000pt;}
.x5_c00381{left:224.373333pt;}
.xb2_c00381{left:225.333333pt;}
.x96_c00381{left:226.666667pt;}
.x55_c00381{left:228.000000pt;}
.x46_c00381{left:230.666667pt;}
.x3b_c00381{left:232.000000pt;}
.x2d_c00381{left:233.333333pt;}
.x6d_c00381{left:234.666667pt;}
.x14_c00381{left:236.373333pt;}
.x110_c00381{left:237.333333pt;}
.x78_c00381{left:239.040000pt;}
.xf8_c00381{left:240.960000pt;}
.x6_c00381{left:244.000000pt;}
.x91_c00381{left:245.333333pt;}
.xc6_c00381{left:246.293333pt;}
.x8a_c00381{left:248.373333pt;}
.x2e_c00381{left:249.333333pt;}
.xd7_c00381{left:250.666667pt;}
.xe7_c00381{left:251.626667pt;}
.x6e_c00381{left:252.960000pt;}
.xcf_c00381{left:254.666667pt;}
.x10c_c00381{left:256.000000pt;}
.x100_c00381{left:257.706667pt;}
.xe0_c00381{left:260.000000pt;}
.x20_c00381{left:261.706667pt;}
.x79_c00381{left:264.000000pt;}
.xd1_c00381{left:265.333333pt;}
.x3c_c00381{left:266.293333pt;}
.xdc_c00381{left:268.000000pt;}
.x97_c00381{left:269.706667pt;}
.x4a_c00381{left:270.666667pt;}
.x56_c00381{left:273.333333pt;}
.xee_c00381{left:274.666667pt;}
.x2f_c00381{left:277.333333pt;}
.xe1_c00381{left:279.040000pt;}
.x106_c00381{left:282.666667pt;}
.x21_c00381{left:284.000000pt;}
.x92_c00381{left:287.040000pt;}
.xf3_c00381{left:288.000000pt;}
.x57_c00381{left:289.333333pt;}
.xa9_c00381{left:290.666667pt;}
.x4b_c00381{left:293.333333pt;}
.x3d_c00381{left:294.293333pt;}
.x15_c00381{left:297.706667pt;}
.x10d_c00381{left:298.666667pt;}
.x62_c00381{left:300.960000pt;}
.xe2_c00381{left:302.293333pt;}
.xb7_c00381{left:305.333333pt;}
.x111_c00381{left:307.040000pt;}
.xef_c00381{left:309.333333pt;}
.x7_c00381{left:310.293333pt;}
.x7a_c00381{left:312.000000pt;}
.x81_c00381{left:313.706667pt;}
.xa0_c00381{left:315.040000pt;}
.x6f_c00381{left:317.333333pt;}
.x101_c00381{left:318.293333pt;}
.x22_c00381{left:320.373333pt;}
.xf0_c00381{left:325.333333pt;}
.xb8_c00381{left:326.293333pt;}
.x8_c00381{left:328.373333pt;}
.x16_c00381{left:329.706667pt;}
.x3e_c00381{left:332.960000pt;}
.x70_c00381{left:335.040000pt;}
.x82_c00381{left:336.000000pt;}
.xbe_c00381{left:337.706667pt;}
.x98_c00381{left:339.040000pt;}
.xd8_c00381{left:340.373333pt;}
.x108_c00381{left:345.706667pt;}
.xca_c00381{left:346.666667pt;}
.x2_c00381{left:348.000000pt;}
.x9b_c00381{left:349.706667pt;}
.x3f_c00381{left:351.040000pt;}
.x23_c00381{left:352.000000pt;}
.x63_c00381{left:353.333333pt;}
.x17_c00381{left:354.666667pt;}
.x9_c00381{left:356.000000pt;}
.xfb_c00381{left:357.706667pt;}
.xe3_c00381{left:359.240000pt;}
.x30_c00381{left:363.040000pt;}
.x64_c00381{left:366.666667pt;}
.xb3_c00381{left:368.000000pt;}
.x71_c00381{left:370.666667pt;}
.xb9_c00381{left:372.373333pt;}
.xe8_c00381{left:373.333333pt;}
.x40_c00381{left:375.040000pt;}
.x83_c00381{left:377.706667pt;}
.xaa_c00381{left:378.666667pt;}
.x9c_c00381{left:380.000000pt;}
.xf9_c00381{left:380.960000pt;}
.xfc_c00381{left:383.040000pt;}
.xb4_c00381{left:385.333333pt;}
.x31_c00381{left:387.040000pt;}
.xf1_c00381{left:388.373333pt;}
.x24_c00381{left:389.333333pt;}
.xbf_c00381{left:390.666667pt;}
.x18_c00381{left:392.373333pt;}
.x8b_c00381{left:396.373333pt;}
.xba_c00381{left:397.706667pt;}
.x93_c00381{left:399.040000pt;}
.x109_c00381{left:400.960000pt;}
.xa_c00381{left:402.666667pt;}
.xf7_c00381{left:405.706667pt;}
.xcb_c00381{left:406.666667pt;}
.xd9_c00381{left:407.626667pt;}
.x58_c00381{left:409.333333pt;}
.x72_c00381{left:410.293333pt;}
.xe9_c00381{left:415.040000pt;}
.x4c_c00381{left:416.000000pt;}
.x65_c00381{left:418.666667pt;}
.xb5_c00381{left:420.000000pt;}
.x8c_c00381{left:421.706667pt;}
.xc0_c00381{left:423.040000pt;}
.x32_c00381{left:424.960000pt;}
.x73_c00381{left:428.000000pt;}
.x10e_c00381{left:429.706667pt;}
.xda_c00381{left:430.666667pt;}
.x19_c00381{left:431.626667pt;}
.x84_c00381{left:432.960000pt;}
.xb_c00381{left:436.000000pt;}
.x41_c00381{left:437.333333pt;}
.x4d_c00381{left:439.040000pt;}
.x25_c00381{left:441.333333pt;}
.x59_c00381{left:442.666667pt;}
.xa1_c00381{left:444.000000pt;}
.x66_c00381{left:445.333333pt;}
.xf2_c00381{left:446.666667pt;}
.x9d_c00381{left:448.000000pt;}
.xa4_c00381{left:448.960000pt;}
.x74_c00381{left:450.666667pt;}
.x26_c00381{left:453.333333pt;}
.xea_c00381{left:456.960000pt;}
.x102_c00381{left:458.666667pt;}
.x1a_c00381{left:461.706667pt;}
.xd2_c00381{left:462.666667pt;}
.x4e_c00381{left:463.626667pt;}
.x33_c00381{left:465.333333pt;}
.xc_c00381{left:467.626667pt;}
.x75_c00381{left:469.333333pt;}
.xb6_c00381{left:470.293333pt;}
.xa2_c00381{left:472.000000pt;}
.x5a_c00381{left:473.333333pt;}
.x7b_c00381{left:476.373333pt;}
.x27_c00381{left:477.706667pt;}
.xb0_c00381{left:478.666667pt;}
.x8d_c00381{left:482.666667pt;}
.xdd_c00381{left:484.373333pt;}
.x1b_c00381{left:486.666667pt;}
.x85_c00381{left:487.626667pt;}
.x5b_c00381{left:489.333333pt;}
.xcc_c00381{left:491.240000pt;}
.xf4_c00381{left:492.373333pt;}
.xc1_c00381{left:493.706667pt;}
.xd_c00381{left:495.626667pt;}
.xeb_c00381{left:497.333333pt;}
.xbb_c00381{left:498.666667pt;}
.x5c_c00381{left:500.373333pt;}
.xab_c00381{left:501.706667pt;}
.x86_c00381{left:503.040000pt;}
.xfd_c00381{left:504.000000pt;}
.x4f_c00381{left:505.333333pt;}
.x99_c00381{left:506.666667pt;}
.x103_c00381{left:508.373333pt;}
.xc7_c00381{left:512.960000pt;}
.x34_c00381{left:514.666667pt;}
.x28_c00381{left:516.000000pt;}
.x7c_c00381{left:517.333333pt;}
.x67_c00381{left:518.666667pt;}
.xa5_c00381{left:520.000000pt;}
.x42_c00381{left:522.666667pt;}
.xd3_c00381{left:525.333333pt;}
.x5d_c00381{left:527.040000pt;}
.x29_c00381{left:529.333333pt;}
.xde_c00381{left:533.333333pt;}
.xe_c00381{left:534.666667pt;}
.x68_c00381{left:536.373333pt;}
.x35_c00381{left:538.666667pt;}
.xd4_c00381{left:539.626667pt;}
.xf5_c00381{left:541.706667pt;}
.xc2_c00381{left:544.000000pt;}
.x8e_c00381{left:545.706667pt;}
.xcd_c00381{left:547.626667pt;}
.xac_c00381{left:549.333333pt;}
.xa3_c00381{left:552.000000pt;}
.x2a_c00381{left:553.333333pt;}
.xf_c00381{left:556.373333pt;}
.x50_c00381{left:557.333333pt;}
.x69_c00381{left:559.626667pt;}
.xa6_c00381{left:562.666667pt;}
.x87_c00381{left:564.000000pt;}
.x1c_c00381{left:565.706667pt;}
.xe4_c00381{left:567.040000pt;}
.xbc_c00381{left:568.960000pt;}
.x51_c00381{left:571.040000pt;}
.x36_c00381{left:572.960000pt;}
.xb1_c00381{left:574.666667pt;}
.x43_c00381{left:576.960000pt;}
.x88_c00381{left:578.666667pt;}
.x104_c00381{left:581.706667pt;}
.x10_c00381{left:582.666667pt;}
.xc8_c00381{left:583.626667pt;}
.xe5_c00381{left:585.333333pt;}
.xdb_c00381{left:586.293333pt;}
.xfe_c00381{left:588.000000pt;}
.x37_c00381{left:589.706667pt;}
.x7d_c00381{left:592.373333pt;}
.xc3_c00381{left:596.000000pt;}
.x5e_c00381{left:597.333333pt;}
.x1d_c00381{left:598.666667pt;}
.x76_c00381{left:602.293333pt;}
.x94_c00381{left:603.626667pt;}
.x52_c00381{left:605.706667pt;}
.x9e_c00381{left:606.666667pt;}
.x10f_c00381{left:608.000000pt;}
.xf6_c00381{left:608.960000pt;}
.x2b_c00381{left:610.666667pt;}
.xd0_c00381{left:612.000000pt;}
.xad_c00381{left:612.960000pt;}
.x38_c00381{left:614.293333pt;}
.x112_c00381{left:617.706667pt;}
.xd5_c00381{left:619.040000pt;}
.x10a_c00381{left:620.000000pt;}
.x8f_c00381{left:622.666667pt;}
.x6a_c00381{left:624.000000pt;}
.xbd_c00381{left:626.666667pt;}
.xa7_c00381{left:627.626667pt;}
.x7e_c00381{left:629.706667pt;}
.x5f_c00381{left:631.040000pt;}
.x1e_c00381{left:634.293333pt;}
.xdf_c00381{left:636.000000pt;}
.x11_c00381{left:637.333333pt;}
.x44_c00381{left:638.293333pt;}
.xce_c00381{left:640.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_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_aaff1c2db4e30276993250c4.woff2')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:1.688965;font-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_c00382{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.mac_c00382{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.mae_c00382{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m29_c00382{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m69_c00382{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m47_c00382{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m25_c00382{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mfd_c00382{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.ma7_c00382{transform:matrix(0.371166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371166,0.000000,0.000000,0.250000,0,0);}
.m40_c00382{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m8f_c00382{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m4a_c00382{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.m48_c00382{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m62_c00382{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.me_c00382{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mb_c00382{transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);}
.md5_c00382{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m15_c00382{transform:matrix(0.389187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389187,0.000000,0.000000,0.250000,0,0);}
.m11_c00382{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.ma2_c00382{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.ma0_c00382{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m2d_c00382{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m99_c00382{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mc9_c00382{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m71_c00382{transform:matrix(0.394712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394712,0.000000,0.000000,0.250000,0,0);}
.m107_c00382{transform:matrix(0.395228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395228,0.000000,0.000000,0.250000,0,0);}
.mdb_c00382{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m82_c00382{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m5f_c00382{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.mc5_c00382{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m2e_c00382{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m9e_c00382{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_c00382{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m24_c00382{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m5_c00382{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.ma1_c00382{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.ma5_c00382{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m100_c00382{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.med_c00382{transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);}
.mb1_c00382{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m17_c00382{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mdc_c00382{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m54_c00382{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m95_c00382{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m2f_c00382{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.me5_c00382{transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);}
.ma4_c00382{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m9f_c00382{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m1b_c00382{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m19_c00382{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m6c_c00382{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m55_c00382{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.mfa_c00382{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.m6f_c00382{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.md1_c00382{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m39_c00382{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m63_c00382{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mb4_c00382{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.mf2_c00382{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m79_c00382{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.me4_c00382{transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);}
.m10a_c00382{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.m8d_c00382{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mf3_c00382{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.me9_c00382{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m10c_c00382{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.m8b_c00382{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mda_c00382{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.mc0_c00382{transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);}
.mbf_c00382{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.md0_c00382{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mbc_c00382{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.me0_c00382{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mab_c00382{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m68_c00382{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m30_c00382{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m61_c00382{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.ma9_c00382{transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);}
.m7a_c00382{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m98_c00382{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m43_c00382{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m10b_c00382{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m108_c00382{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.mc4_c00382{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m9a_c00382{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.mca_c00382{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m90_c00382{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m1c_c00382{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m5d_c00382{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.mbd_c00382{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.md4_c00382{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.mde_c00382{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m101_c00382{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.m87_c00382{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m64_c00382{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.md3_c00382{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m6e_c00382{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.m65_c00382{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.maa_c00382{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m9d_c00382{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m83_c00382{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m94_c00382{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m66_c00382{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mf0_c00382{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m50_c00382{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.mf5_c00382{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m5e_c00382{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.mb8_c00382{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m111_c00382{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m91_c00382{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m9c_c00382{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m4d_c00382{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.m70_c00382{transform:matrix(0.471176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471176,0.000000,0.000000,0.250000,0,0);}
.m103_c00382{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m1a_c00382{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.m7f_c00382{transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);}
.m3_c00382{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m51_c00382{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.m9b_c00382{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m10f_c00382{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.me7_c00382{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m26_c00382{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mc1_c00382{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.me6_c00382{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m1e_c00382{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m9_c00382{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m14_c00382{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.md8_c00382{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m1_c00382{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m67_c00382{transform:matrix(0.491176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491176,0.000000,0.000000,0.250000,0,0);}
.m22_c00382{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mbe_c00382{transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);}
.m3c_c00382{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mf6_c00382{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m38_c00382{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);}
.m77_c00382{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.mb3_c00382{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m46_c00382{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m114_c00382{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m8e_c00382{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m44_c00382{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m60_c00382{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m4b_c00382{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m7_c00382{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m5c_c00382{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.mc_c00382{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m113_c00382{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.mc6_c00382{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.mb0_c00382{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mc8_c00382{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.maf_c00382{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mfe_c00382{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);}
.m2c_c00382{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mb9_c00382{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.ma6_c00382{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.me8_c00382{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m41_c00382{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m10e_c00382{transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);}
.mb2_c00382{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.mc7_c00382{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m18_c00382{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m84_c00382{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m33_c00382{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m45_c00382{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m93_c00382{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m112_c00382{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m4_c00382{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m85_c00382{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mb5_c00382{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mee_c00382{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m35_c00382{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m8a_c00382{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m8c_c00382{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m34_c00382{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m13_c00382{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.ma8_c00382{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m96_c00382{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m16_c00382{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m10_c00382{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mea_c00382{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m23_c00382{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m58_c00382{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mc2_c00382{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m31_c00382{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m105_c00382{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);}
.m97_c00382{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.mcf_c00382{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m59_c00382{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m88_c00382{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m21_c00382{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m20_c00382{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.md_c00382{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m73_c00382{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m7d_c00382{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m2_c00382{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mc3_c00382{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m80_c00382{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m6d_c00382{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.me1_c00382{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m89_c00382{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m12_c00382{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m42_c00382{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.ma_c00382{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m106_c00382{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mcb_c00382{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mdd_c00382{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mad_c00382{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m28_c00382{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m6b_c00382{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m74_c00382{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.m57_c00382{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m92_c00382{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.mb7_c00382{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.mbb_c00382{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.mb6_c00382{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mef_c00382{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);}
.me2_c00382{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m52_c00382{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m78_c00382{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m110_c00382{transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);}
.m5a_c00382{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m7c_c00382{transform:matrix(0.595954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595954,0.000000,0.000000,0.250000,0,0);}
.md2_c00382{transform:matrix(0.597510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597510,0.000000,0.000000,0.250000,0,0);}
.m36_c00382{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m32_c00382{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m104_c00382{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m3b_c00382{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.md6_c00382{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m37_c00382{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m53_c00382{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.mcc_c00382{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m1f_c00382{transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);}
.m7e_c00382{transform:matrix(0.616183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616183,0.000000,0.000000,0.250000,0,0);}
.mf8_c00382{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m2b_c00382{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.m4f_c00382{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);}
.mfc_c00382{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mf1_c00382{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m56_c00382{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);}
.m81_c00382{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m75_c00382{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m0_c00382{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.me3_c00382{transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);}
.mf4_c00382{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m10d_c00382{transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);}
.mec_c00382{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m3e_c00382{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m86_c00382{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mff_c00382{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m8_c00382{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m109_c00382{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m76_c00382{transform:matrix(0.671324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.671324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.671324,0.000000,0.000000,0.250000,0,0);}
.mf9_c00382{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.m102_c00382{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m72_c00382{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);}
.mba_c00382{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m6a_c00382{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.mce_c00382{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.meb_c00382{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);}
.m3d_c00382{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mcd_c00382{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.md9_c00382{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m49_c00382{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m2a_c00382{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m27_c00382{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mf_c00382{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m3f_c00382{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m6_c00382{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.md7_c00382{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m3a_c00382{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m4e_c00382{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m4c_c00382{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mdf_c00382{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.mf7_c00382{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.mfb_c00382{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.ma3_c00382{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m7b_c00382{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00382{vertical-align:0.000000px;}
.v1_c00382{vertical-align:12.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:-16.889280px;}
.ws2_c00382{word-spacing:-2.915870px;}
.ws1_c00382{word-spacing:-2.091069px;}
.ws3_c00382{word-spacing:0.000000px;}
._0_c00382{width:4.129933px;}
.fc0_c00382{color:transparent;}
.fs7_c00382{font-size:3.420000px;}
.fs8_c00382{font-size:13.620000px;}
.fs3_c00382{font-size:18.720000px;}
.fs0_c00382{font-size:20.400000px;}
.fs4_c00382{font-size:25.500000px;}
.fs1_c00382{font-size:28.920000px;}
.fs6_c00382{font-size:32.340000px;}
.fs2_c00382{font-size:35.700000px;}
.fs5_c00382{font-size:39.120000px;}
.y0_c00382{bottom:0.000000px;}
.yb7_c00382{bottom:255.405000px;}
.yb6_c00382{bottom:255.825000px;}
.yb5_c00382{bottom:257.970000px;}
.yad_c00382{bottom:268.470000px;}
.yb1_c00382{bottom:270.405000px;}
.yb4_c00382{bottom:270.630000px;}
.yae_c00382{bottom:270.825000px;}
.yb2_c00382{bottom:271.905000px;}
.yb3_c00382{bottom:272.130000px;}
.yaf_c00382{bottom:272.550000px;}
.yb0_c00382{bottom:272.970000px;}
.yac_c00382{bottom:285.405000px;}
.yaa_c00382{bottom:287.130000px;}
.yab_c00382{bottom:287.550000px;}
.ya6_c00382{bottom:300.825000px;}
.ya3_c00382{bottom:301.050000px;}
.ya9_c00382{bottom:301.905000px;}
.ya7_c00382{bottom:302.130000px;}
.ya4_c00382{bottom:302.550000px;}
.ya5_c00382{bottom:302.970000px;}
.ya8_c00382{bottom:304.050000px;}
.ya2_c00382{bottom:314.325000px;}
.y9e_c00382{bottom:315.405000px;}
.y9f_c00382{bottom:316.695000px;}
.y9d_c00382{bottom:317.130000px;}
.ya0_c00382{bottom:317.550000px;}
.ya1_c00382{bottom:318.195000px;}
.y9c_c00382{bottom:330.405000px;}
.y9a_c00382{bottom:330.630000px;}
.y99_c00382{bottom:331.470000px;}
.y9b_c00382{bottom:332.550000px;}
.y96_c00382{bottom:344.325000px;}
.y94_c00382{bottom:345.630000px;}
.y98_c00382{bottom:346.050000px;}
.y97_c00382{bottom:346.470000px;}
.y95_c00382{bottom:347.550000px;}
.y91_c00382{bottom:377.745000px;}
.y90_c00382{bottom:378.405000px;}
.y93_c00382{bottom:378.630000px;}
.y8f_c00382{bottom:379.470000px;}
.y92_c00382{bottom:379.905000px;}
.y8b_c00382{bottom:395.745000px;}
.y8d_c00382{bottom:396.825000px;}
.y8e_c00382{bottom:397.245000px;}
.y8c_c00382{bottom:397.905000px;}
.y85_c00382{bottom:414.405000px;}
.y8a_c00382{bottom:415.245000px;}
.y83_c00382{bottom:416.745000px;}
.y88_c00382{bottom:417.405000px;}
.y87_c00382{bottom:417.630000px;}
.y89_c00382{bottom:418.470000px;}
.y84_c00382{bottom:418.905000px;}
.y86_c00382{bottom:419.970000px;}
.y81_c00382{bottom:436.245000px;}
.y82_c00382{bottom:438.405000px;}
.y80_c00382{bottom:455.745000px;}
.y7e_c00382{bottom:456.630000px;}
.y7f_c00382{bottom:457.470000px;}
.y7d_c00382{bottom:457.905000px;}
.y7c_c00382{bottom:475.245000px;}
.y7a_c00382{bottom:477.405000px;}
.y7b_c00382{bottom:478.920000px;}
.y79_c00382{bottom:494.745000px;}
.y78_c00382{bottom:496.905000px;}
.y76_c00382{bottom:514.245000px;}
.y77_c00382{bottom:515.745000px;}
.y75_c00382{bottom:516.405000px;}
.y74_c00382{bottom:517.470000px;}
.y72_c00382{bottom:536.325000px;}
.y73_c00382{bottom:537.405000px;}
.y71_c00382{bottom:554.745000px;}
.y70_c00382{bottom:555.825000px;}
.y6f_c00382{bottom:556.470000px;}
.y6e_c00382{bottom:556.905000px;}
.y6d_c00382{bottom:573.825000px;}
.y6c_c00382{bottom:574.245000px;}
.y6b_c00382{bottom:576.405000px;}
.y69_c00382{bottom:593.745000px;}
.y6a_c00382{bottom:594.630000px;}
.y67_c00382{bottom:595.905000px;}
.y68_c00382{bottom:595.920000px;}
.y65_c00382{bottom:613.245000px;}
.y64_c00382{bottom:614.325000px;}
.y66_c00382{bottom:615.405000px;}
.y60_c00382{bottom:632.745000px;}
.y62_c00382{bottom:633.180000px;}
.y63_c00382{bottom:633.825000px;}
.y61_c00382{bottom:634.245000px;}
.y5d_c00382{bottom:634.905000px;}
.y5e_c00382{bottom:635.130000px;}
.y5f_c00382{bottom:636.420000px;}
.y59_c00382{bottom:651.405000px;}
.y5b_c00382{bottom:652.245000px;}
.y5a_c00382{bottom:653.745000px;}
.y5c_c00382{bottom:655.905000px;}
.y58_c00382{bottom:672.405000px;}
.y55_c00382{bottom:673.245000px;}
.y57_c00382{bottom:674.325000px;}
.y56_c00382{bottom:675.420000px;}
.y53_c00382{bottom:692.745000px;}
.y54_c00382{bottom:694.470000px;}
.y52_c00382{bottom:694.905000px;}
.y4f_c00382{bottom:712.245000px;}
.y51_c00382{bottom:713.325000px;}
.y50_c00382{bottom:713.970000px;}
.y4e_c00382{bottom:714.405000px;}
.y49_c00382{bottom:730.905000px;}
.y4a_c00382{bottom:731.745000px;}
.y4b_c00382{bottom:731.970000px;}
.y4c_c00382{bottom:733.905000px;}
.y4d_c00382{bottom:734.130000px;}
.y48_c00382{bottom:734.970000px;}
.y42_c00382{bottom:751.245000px;}
.y47_c00382{bottom:752.325000px;}
.y45_c00382{bottom:752.745000px;}
.y44_c00382{bottom:753.405000px;}
.y46_c00382{bottom:753.630000px;}
.y43_c00382{bottom:754.920000px;}
.y3e_c00382{bottom:774.825000px;}
.y40_c00382{bottom:775.050000px;}
.y41_c00382{bottom:775.905000px;}
.y3d_c00382{bottom:776.970000px;}
.y3f_c00382{bottom:778.050000px;}
.y3a_c00382{bottom:794.325000px;}
.y39_c00382{bottom:794.550000px;}
.y3b_c00382{bottom:795.405000px;}
.y3c_c00382{bottom:796.470000px;}
.y38_c00382{bottom:797.550000px;}
.y37_c00382{bottom:820.245000px;}
.y36_c00382{bottom:865.245000px;}
.y35_c00382{bottom:866.325000px;}
.y34_c00382{bottom:867.405000px;}
.y33_c00382{bottom:882.405000px;}
.y32_c00382{bottom:884.745000px;}
.y31_c00382{bottom:886.905000px;}
.y2e_c00382{bottom:903.825000px;}
.y30_c00382{bottom:904.245000px;}
.y2c_c00382{bottom:905.325000px;}
.y2d_c00382{bottom:906.405000px;}
.y2f_c00382{bottom:907.470000px;}
.y2a_c00382{bottom:922.905000px;}
.y27_c00382{bottom:923.745000px;}
.y28_c00382{bottom:924.630000px;}
.y29_c00382{bottom:925.905000px;}
.y2b_c00382{bottom:926.970000px;}
.y25_c00382{bottom:940.905000px;}
.y24_c00382{bottom:943.245000px;}
.y26_c00382{bottom:944.130000px;}
.y23_c00382{bottom:945.405000px;}
.y21_c00382{bottom:961.905000px;}
.y1e_c00382{bottom:962.745000px;}
.y20_c00382{bottom:964.470000px;}
.y1d_c00382{bottom:964.905000px;}
.y1f_c00382{bottom:965.130000px;}
.y22_c00382{bottom:965.970000px;}
.y1a_c00382{bottom:981.405000px;}
.y18_c00382{bottom:982.245000px;}
.y1b_c00382{bottom:983.745000px;}
.y19_c00382{bottom:984.405000px;}
.y1c_c00382{bottom:985.470000px;}
.y12_c00382{bottom:1001.745000px;}
.y15_c00382{bottom:1003.245000px;}
.y13_c00382{bottom:1003.905000px;}
.y14_c00382{bottom:1004.130000px;}
.y16_c00382{bottom:1004.970000px;}
.y17_c00382{bottom:1005.405000px;}
.yd_c00382{bottom:1021.245000px;}
.yf_c00382{bottom:1022.745000px;}
.y10_c00382{bottom:1023.405000px;}
.ye_c00382{bottom:1024.470000px;}
.y11_c00382{bottom:1024.905000px;}
.ya_c00382{bottom:1041.180000px;}
.y9_c00382{bottom:1042.245000px;}
.yb_c00382{bottom:1043.130000px;}
.yc_c00382{bottom:1043.325000px;}
.y8_c00382{bottom:1044.405000px;}
.y7_c00382{bottom:1060.905000px;}
.y4_c00382{bottom:1061.745000px;}
.y5_c00382{bottom:1062.630000px;}
.y6_c00382{bottom:1063.470000px;}
.y3_c00382{bottom:1063.905000px;}
.y2_c00382{bottom:1099.905000px;}
.y1_c00382{bottom:1102.050000px;}
.h9_c00382{height:4.206533px;}
.ha_c00382{height:16.752334px;}
.h4_c00382{height:23.025234px;}
.h1_c00382{height:25.091602px;}
.h5_c00382{height:31.364502px;}
.h2_c00382{height:35.571035px;}
.h8_c00382{height:39.777568px;}
.h3_c00382{height:43.910303px;}
.h6_c00382{height:47.571035px;}
.h7_c00382{height:48.116836px;}
.h0_c00382{height:1335.000000px;}
.w0_c00382{width:880.500000px;}
.x0_c00382{left:0.000000px;}
.x38_c00382{left:151.500000px;}
.x3_c00382{left:152.580000px;}
.x29_c00382{left:154.275000px;}
.xb1_c00382{left:155.355000px;}
.xf8_c00382{left:165.000000px;}
.x80_c00382{left:168.000000px;}
.x6a_c00382{left:169.500000px;}
.x72_c00382{left:174.000000px;}
.xe2_c00382{left:181.500000px;}
.x4_c00382{left:183.420000px;}
.xce_c00382{left:184.920000px;}
.x8a_c00382{left:186.420000px;}
.xb2_c00382{left:188.580000px;}
.x59_c00382{left:190.500000px;}
.x42_c00382{left:191.580000px;}
.x81_c00382{left:193.920000px;}
.x65_c00382{left:196.500000px;}
.x2a_c00382{left:199.500000px;}
.x39_c00382{left:202.920000px;}
.x12_c00382{left:205.500000px;}
.x43_c00382{left:208.920000px;}
.xa5_c00382{left:211.080000px;}
.xb3_c00382{left:212.145000px;}
.x2b_c00382{left:214.500000px;}
.xf5_c00382{left:215.580000px;}
.x6b_c00382{left:217.500000px;}
.xc0_c00382{left:219.000000px;}
.xed_c00382{left:220.500000px;}
.x1f_c00382{left:225.000000px;}
.x66_c00382{left:226.500000px;}
.x3a_c00382{left:228.420000px;}
.x5_c00382{left:229.500000px;}
.xda_c00382{left:231.420000px;}
.x93_c00382{left:232.500000px;}
.x44_c00382{left:236.580000px;}
.xde_c00382{left:238.500000px;}
.xc1_c00382{left:240.000000px;}
.x2c_c00382{left:241.080000px;}
.x82_c00382{left:244.500000px;}
.x20_c00382{left:246.645000px;}
.xab_c00382{left:249.000000px;}
.xf0_c00382{left:250.500000px;}
.xd5_c00382{left:253.080000px;}
.xd2_c00382{left:255.000000px;}
.xb9_c00382{left:256.500000px;}
.x13_c00382{left:258.000000px;}
.x9d_c00382{left:259.500000px;}
.x6_c00382{left:260.580000px;}
.xa6_c00382{left:262.080000px;}
.xe4_c00382{left:263.580000px;}
.xee_c00382{left:265.500000px;}
.x86_c00382{left:267.000000px;}
.x73_c00382{left:268.080000px;}
.xd6_c00382{left:271.080000px;}
.xf1_c00382{left:274.080000px;}
.x3b_c00382{left:275.580000px;}
.x45_c00382{left:280.500000px;}
.xb4_c00382{left:282.000000px;}
.x2d_c00382{left:284.580000px;}
.x5a_c00382{left:286.500000px;}
.x83_c00382{left:287.580000px;}
.x99_c00382{left:291.000000px;}
.xef_c00382{left:293.580000px;}
.x67_c00382{left:296.580000px;}
.x14_c00382{left:300.000000px;}
.xfc_c00382{left:302.580000px;}
.x5b_c00382{left:304.920000px;}
.x8b_c00382{left:306.000000px;}
.x51_c00382{left:308.580000px;}
.x7_c00382{left:310.500000px;}
.x6c_c00382{left:313.080000px;}
.xf9_c00382{left:315.000000px;}
.x5c_c00382{left:316.500000px;}
.x9a_c00382{left:318.000000px;}
.x94_c00382{left:319.080000px;}
.xac_c00382{left:320.580000px;}
.xe5_c00382{left:322.500000px;}
.x3c_c00382{left:325.920000px;}
.x68_c00382{left:328.500000px;}
.xcf_c00382{left:329.580000px;}
.xdb_c00382{left:331.080000px;}
.x74_c00382{left:332.580000px;}
.x7b_c00382{left:334.920000px;}
.x8_c00382{left:337.500000px;}
.x15_c00382{left:338.580000px;}
.xe1_c00382{left:340.275000px;}
.xba_c00382{left:342.000000px;}
.x2e_c00382{left:343.080000px;}
.x9e_c00382{left:344.775000px;}
.xad_c00382{left:347.580000px;}
.x8c_c00382{left:349.500000px;}
.xc9_c00382{left:351.000000px;}
.x7c_c00382{left:353.580000px;}
.x46_c00382{left:355.500000px;}
.x21_c00382{left:357.000000px;}
.x2f_c00382{left:360.420000px;}
.xd7_c00382{left:363.000000px;}
.xe6_c00382{left:364.080000px;}
.x52_c00382{left:367.500000px;}
.x9_c00382{left:369.000000px;}
.x5d_c00382{left:370.500000px;}
.x6d_c00382{left:373.080000px;}
.x3d_c00382{left:376.080000px;}
.x79_c00382{left:381.420000px;}
.x47_c00382{left:382.500000px;}
.x22_c00382{left:385.080000px;}
.xa_c00382{left:386.580000px;}
.xf2_c00382{left:388.920000px;}
.x1_c00382{left:391.500000px;}
.x53_c00382{left:393.420000px;}
.xa7_c00382{left:394.500000px;}
.x16_c00382{left:398.580000px;}
.xe7_c00382{left:400.080000px;}
.x48_c00382{left:402.000000px;}
.x75_c00382{left:404.580000px;}
.x95_c00382{left:406.500000px;}
.xb_c00382{left:408.000000px;}
.xbb_c00382{left:409.500000px;}
.x7d_c00382{left:410.580000px;}
.x9b_c00382{left:411.645000px;}
.x6e_c00382{left:414.000000px;}
.x23_c00382{left:417.000000px;}
.x9f_c00382{left:418.500000px;}
.x87_c00382{left:421.080000px;}
.xd0_c00382{left:422.580000px;}
.xc2_c00382{left:424.920000px;}
.x8d_c00382{left:426.000000px;}
.xca_c00382{left:427.500000px;}
.x69_c00382{left:430.080000px;}
.x49_c00382{left:432.420000px;}
.x5e_c00382{left:435.000000px;}
.x84_c00382{left:436.080000px;}
.xb5_c00382{left:438.420000px;}
.x54_c00382{left:439.920000px;}
.x30_c00382{left:442.500000px;}
.x17_c00382{left:444.420000px;}
.x8e_c00382{left:445.920000px;}
.xc7_c00382{left:448.920000px;}
.x24_c00382{left:450.000000px;}
.xd1_c00382{left:452.580000px;}
.xc_c00382{left:454.500000px;}
.x5f_c00382{left:455.580000px;}
.xf3_c00382{left:458.580000px;}
.xdf_c00382{left:461.145000px;}
.x31_c00382{left:462.420000px;}
.xbc_c00382{left:465.000000px;}
.x9c_c00382{left:466.500000px;}
.x60_c00382{left:469.080000px;}
.x8f_c00382{left:471.420000px;}
.xd8_c00382{left:475.500000px;}
.x4a_c00382{left:478.080000px;}
.x18_c00382{left:481.500000px;}
.x7e_c00382{left:487.920000px;}
.x7a_c00382{left:490.080000px;}
.xcb_c00382{left:493.500000px;}
.xc3_c00382{left:495.000000px;}
.x61_c00382{left:499.920000px;}
.xa8_c00382{left:501.420000px;}
.x85_c00382{left:502.920000px;}
.x76_c00382{left:505.080000px;}
.x25_c00382{left:506.580000px;}
.x4b_c00382{left:508.920000px;}
.xbd_c00382{left:512.580000px;}
.xa0_c00382{left:514.275000px;}
.xe3_c00382{left:516.000000px;}
.x6f_c00382{left:517.500000px;}
.x62_c00382{left:519.000000px;}
.xd_c00382{left:520.080000px;}
.x19_c00382{left:522.000000px;}
.x32_c00382{left:523.500000px;}
.x90_c00382{left:528.000000px;}
.xe8_c00382{left:529.500000px;}
.x26_c00382{left:530.580000px;}
.x7f_c00382{left:532.080000px;}
.xae_c00382{left:535.080000px;}
.x77_c00382{left:537.420000px;}
.x70_c00382{left:540.000000px;}
.x33_c00382{left:541.920000px;}
.xc4_c00382{left:543.000000px;}
.xbe_c00382{left:546.000000px;}
.x1a_c00382{left:547.920000px;}
.x55_c00382{left:549.420000px;}
.xe_c00382{left:550.500000px;}
.x91_c00382{left:552.000000px;}
.xa1_c00382{left:553.920000px;}
.xcc_c00382{left:557.580000px;}
.x63_c00382{left:559.920000px;}
.xc5_c00382{left:561.000000px;}
.xaf_c00382{left:562.500000px;}
.x34_c00382{left:566.145000px;}
.xb6_c00382{left:569.775000px;}
.xf6_c00382{left:572.145000px;}
.xe9_c00382{left:573.420000px;}
.x1b_c00382{left:575.355000px;}
.xdc_c00382{left:579.000000px;}
.x4c_c00382{left:582.000000px;}
.x96_c00382{left:583.920000px;}
.x56_c00382{left:588.000000px;}
.xea_c00382{left:589.920000px;}
.xc6_c00382{left:592.080000px;}
.x27_c00382{left:595.500000px;}
.x3e_c00382{left:596.580000px;}
.xa2_c00382{left:598.920000px;}
.x88_c00382{left:600.000000px;}
.xf4_c00382{left:601.920000px;}
.xd3_c00382{left:604.920000px;}
.x4d_c00382{left:607.500000px;}
.xcd_c00382{left:609.420000px;}
.xf7_c00382{left:611.580000px;}
.x71_c00382{left:613.080000px;}
.xbf_c00382{left:616.920000px;}
.xe0_c00382{left:618.420000px;}
.xd9_c00382{left:621.000000px;}
.x35_c00382{left:623.580000px;}
.xa9_c00382{left:625.080000px;}
.x1c_c00382{left:626.580000px;}
.x3f_c00382{left:628.500000px;}
.x36_c00382{left:630.420000px;}
.xeb_c00382{left:631.500000px;}
.xf_c00382{left:633.420000px;}
.x4e_c00382{left:634.500000px;}
.x97_c00382{left:639.000000px;}
.xa3_c00382{left:640.920000px;}
.x92_c00382{left:642.000000px;}
.x78_c00382{left:643.080000px;}
.xaa_c00382{left:646.500000px;}
.xdd_c00382{left:650.580000px;}
.x57_c00382{left:652.920000px;}
.x64_c00382{left:655.500000px;}
.x1d_c00382{left:657.420000px;}
.xc8_c00382{left:658.500000px;}
.x28_c00382{left:659.580000px;}
.xb7_c00382{left:666.420000px;}
.x10_c00382{left:668.580000px;}
.xfa_c00382{left:673.080000px;}
.x40_c00382{left:675.420000px;}
.x58_c00382{left:679.920000px;}
.xec_c00382{left:681.000000px;}
.x1e_c00382{left:685.080000px;}
.xd4_c00382{left:687.000000px;}
.x37_c00382{left:690.420000px;}
.x89_c00382{left:696.000000px;}
.xb0_c00382{left:697.500000px;}
.x11_c00382{left:699.000000px;}
.xa4_c00382{left:702.420000px;}
.x4f_c00382{left:703.500000px;}
.x2_c00382{left:704.580000px;}
.xb8_c00382{left:708.420000px;}
.x41_c00382{left:709.920000px;}
.x98_c00382{left:712.500000px;}
.x50_c00382{left:723.000000px;}
.xfb_c00382{left:726.420000px;}
@media print{
.v0_c00382{vertical-align:0.000000pt;}
.v1_c00382{vertical-align:10.666667pt;}
.ls0_c00382{letter-spacing:0.000000pt;}
.ws0_c00382{word-spacing:-15.012693pt;}
.ws2_c00382{word-spacing:-2.591884pt;}
.ws1_c00382{word-spacing:-1.858728pt;}
.ws3_c00382{word-spacing:0.000000pt;}
._0_c00382{width:3.671051pt;}
.fs7_c00382{font-size:3.040000pt;}
.fs8_c00382{font-size:12.106667pt;}
.fs3_c00382{font-size:16.640000pt;}
.fs0_c00382{font-size:18.133333pt;}
.fs4_c00382{font-size:22.666667pt;}
.fs1_c00382{font-size:25.706667pt;}
.fs6_c00382{font-size:28.746667pt;}
.fs2_c00382{font-size:31.733333pt;}
.fs5_c00382{font-size:34.773333pt;}
.y0_c00382{bottom:0.000000pt;}
.yb7_c00382{bottom:227.026667pt;}
.yb6_c00382{bottom:227.400000pt;}
.yb5_c00382{bottom:229.306667pt;}
.yad_c00382{bottom:238.640000pt;}
.yb1_c00382{bottom:240.360000pt;}
.yb4_c00382{bottom:240.560000pt;}
.yae_c00382{bottom:240.733333pt;}
.yb2_c00382{bottom:241.693333pt;}
.yb3_c00382{bottom:241.893333pt;}
.yaf_c00382{bottom:242.266667pt;}
.yb0_c00382{bottom:242.640000pt;}
.yac_c00382{bottom:253.693333pt;}
.yaa_c00382{bottom:255.226667pt;}
.yab_c00382{bottom:255.600000pt;}
.ya6_c00382{bottom:267.400000pt;}
.ya3_c00382{bottom:267.600000pt;}
.ya9_c00382{bottom:268.360000pt;}
.ya7_c00382{bottom:268.560000pt;}
.ya4_c00382{bottom:268.933333pt;}
.ya5_c00382{bottom:269.306667pt;}
.ya8_c00382{bottom:270.266667pt;}
.ya2_c00382{bottom:279.400000pt;}
.y9e_c00382{bottom:280.360000pt;}
.y9f_c00382{bottom:281.506667pt;}
.y9d_c00382{bottom:281.893333pt;}
.ya0_c00382{bottom:282.266667pt;}
.ya1_c00382{bottom:282.840000pt;}
.y9c_c00382{bottom:293.693333pt;}
.y9a_c00382{bottom:293.893333pt;}
.y99_c00382{bottom:294.640000pt;}
.y9b_c00382{bottom:295.600000pt;}
.y96_c00382{bottom:306.066667pt;}
.y94_c00382{bottom:307.226667pt;}
.y98_c00382{bottom:307.600000pt;}
.y97_c00382{bottom:307.973333pt;}
.y95_c00382{bottom:308.933333pt;}
.y91_c00382{bottom:335.773333pt;}
.y90_c00382{bottom:336.360000pt;}
.y93_c00382{bottom:336.560000pt;}
.y8f_c00382{bottom:337.306667pt;}
.y92_c00382{bottom:337.693333pt;}
.y8b_c00382{bottom:351.773333pt;}
.y8d_c00382{bottom:352.733333pt;}
.y8e_c00382{bottom:353.106667pt;}
.y8c_c00382{bottom:353.693333pt;}
.y85_c00382{bottom:368.360000pt;}
.y8a_c00382{bottom:369.106667pt;}
.y83_c00382{bottom:370.440000pt;}
.y88_c00382{bottom:371.026667pt;}
.y87_c00382{bottom:371.226667pt;}
.y89_c00382{bottom:371.973333pt;}
.y84_c00382{bottom:372.360000pt;}
.y86_c00382{bottom:373.306667pt;}
.y81_c00382{bottom:387.773333pt;}
.y82_c00382{bottom:389.693333pt;}
.y80_c00382{bottom:405.106667pt;}
.y7e_c00382{bottom:405.893333pt;}
.y7f_c00382{bottom:406.640000pt;}
.y7d_c00382{bottom:407.026667pt;}
.y7c_c00382{bottom:422.440000pt;}
.y7a_c00382{bottom:424.360000pt;}
.y7b_c00382{bottom:425.706667pt;}
.y79_c00382{bottom:439.773333pt;}
.y78_c00382{bottom:441.693333pt;}
.y76_c00382{bottom:457.106667pt;}
.y77_c00382{bottom:458.440000pt;}
.y75_c00382{bottom:459.026667pt;}
.y74_c00382{bottom:459.973333pt;}
.y72_c00382{bottom:476.733333pt;}
.y73_c00382{bottom:477.693333pt;}
.y71_c00382{bottom:493.106667pt;}
.y70_c00382{bottom:494.066667pt;}
.y6f_c00382{bottom:494.640000pt;}
.y6e_c00382{bottom:495.026667pt;}
.y6d_c00382{bottom:510.066667pt;}
.y6c_c00382{bottom:510.440000pt;}
.y6b_c00382{bottom:512.360000pt;}
.y69_c00382{bottom:527.773333pt;}
.y6a_c00382{bottom:528.560000pt;}
.y67_c00382{bottom:529.693333pt;}
.y68_c00382{bottom:529.706667pt;}
.y65_c00382{bottom:545.106667pt;}
.y64_c00382{bottom:546.066667pt;}
.y66_c00382{bottom:547.026667pt;}
.y60_c00382{bottom:562.440000pt;}
.y62_c00382{bottom:562.826667pt;}
.y63_c00382{bottom:563.400000pt;}
.y61_c00382{bottom:563.773333pt;}
.y5d_c00382{bottom:564.360000pt;}
.y5e_c00382{bottom:564.560000pt;}
.y5f_c00382{bottom:565.706667pt;}
.y59_c00382{bottom:579.026667pt;}
.y5b_c00382{bottom:579.773333pt;}
.y5a_c00382{bottom:581.106667pt;}
.y5c_c00382{bottom:583.026667pt;}
.y58_c00382{bottom:597.693333pt;}
.y55_c00382{bottom:598.440000pt;}
.y57_c00382{bottom:599.400000pt;}
.y56_c00382{bottom:600.373333pt;}
.y53_c00382{bottom:615.773333pt;}
.y54_c00382{bottom:617.306667pt;}
.y52_c00382{bottom:617.693333pt;}
.y4f_c00382{bottom:633.106667pt;}
.y51_c00382{bottom:634.066667pt;}
.y50_c00382{bottom:634.640000pt;}
.y4e_c00382{bottom:635.026667pt;}
.y49_c00382{bottom:649.693333pt;}
.y4a_c00382{bottom:650.440000pt;}
.y4b_c00382{bottom:650.640000pt;}
.y4c_c00382{bottom:652.360000pt;}
.y4d_c00382{bottom:652.560000pt;}
.y48_c00382{bottom:653.306667pt;}
.y42_c00382{bottom:667.773333pt;}
.y47_c00382{bottom:668.733333pt;}
.y45_c00382{bottom:669.106667pt;}
.y44_c00382{bottom:669.693333pt;}
.y46_c00382{bottom:669.893333pt;}
.y43_c00382{bottom:671.040000pt;}
.y3e_c00382{bottom:688.733333pt;}
.y40_c00382{bottom:688.933333pt;}
.y41_c00382{bottom:689.693333pt;}
.y3d_c00382{bottom:690.640000pt;}
.y3f_c00382{bottom:691.600000pt;}
.y3a_c00382{bottom:706.066667pt;}
.y39_c00382{bottom:706.266667pt;}
.y3b_c00382{bottom:707.026667pt;}
.y3c_c00382{bottom:707.973333pt;}
.y38_c00382{bottom:708.933333pt;}
.y37_c00382{bottom:729.106667pt;}
.y36_c00382{bottom:769.106667pt;}
.y35_c00382{bottom:770.066667pt;}
.y34_c00382{bottom:771.026667pt;}
.y33_c00382{bottom:784.360000pt;}
.y32_c00382{bottom:786.440000pt;}
.y31_c00382{bottom:788.360000pt;}
.y2e_c00382{bottom:803.400000pt;}
.y30_c00382{bottom:803.773333pt;}
.y2c_c00382{bottom:804.733333pt;}
.y2d_c00382{bottom:805.693333pt;}
.y2f_c00382{bottom:806.640000pt;}
.y2a_c00382{bottom:820.360000pt;}
.y27_c00382{bottom:821.106667pt;}
.y28_c00382{bottom:821.893333pt;}
.y29_c00382{bottom:823.026667pt;}
.y2b_c00382{bottom:823.973333pt;}
.y25_c00382{bottom:836.360000pt;}
.y24_c00382{bottom:838.440000pt;}
.y26_c00382{bottom:839.226667pt;}
.y23_c00382{bottom:840.360000pt;}
.y21_c00382{bottom:855.026667pt;}
.y1e_c00382{bottom:855.773333pt;}
.y20_c00382{bottom:857.306667pt;}
.y1d_c00382{bottom:857.693333pt;}
.y1f_c00382{bottom:857.893333pt;}
.y22_c00382{bottom:858.640000pt;}
.y1a_c00382{bottom:872.360000pt;}
.y18_c00382{bottom:873.106667pt;}
.y1b_c00382{bottom:874.440000pt;}
.y19_c00382{bottom:875.026667pt;}
.y1c_c00382{bottom:875.973333pt;}
.y12_c00382{bottom:890.440000pt;}
.y15_c00382{bottom:891.773333pt;}
.y13_c00382{bottom:892.360000pt;}
.y14_c00382{bottom:892.560000pt;}
.y16_c00382{bottom:893.306667pt;}
.y17_c00382{bottom:893.693333pt;}
.yd_c00382{bottom:907.773333pt;}
.yf_c00382{bottom:909.106667pt;}
.y10_c00382{bottom:909.693333pt;}
.ye_c00382{bottom:910.640000pt;}
.y11_c00382{bottom:911.026667pt;}
.ya_c00382{bottom:925.493333pt;}
.y9_c00382{bottom:926.440000pt;}
.yb_c00382{bottom:927.226667pt;}
.yc_c00382{bottom:927.400000pt;}
.y8_c00382{bottom:928.360000pt;}
.y7_c00382{bottom:943.026667pt;}
.y4_c00382{bottom:943.773333pt;}
.y5_c00382{bottom:944.560000pt;}
.y6_c00382{bottom:945.306667pt;}
.y3_c00382{bottom:945.693333pt;}
.y2_c00382{bottom:977.693333pt;}
.y1_c00382{bottom:979.600000pt;}
.h9_c00382{height:3.739141pt;}
.ha_c00382{height:14.890964pt;}
.h4_c00382{height:20.466875pt;}
.h1_c00382{height:22.303646pt;}
.h5_c00382{height:27.879557pt;}
.h2_c00382{height:31.618698pt;}
.h8_c00382{height:35.357839pt;}
.h3_c00382{height:39.031380pt;}
.h6_c00382{height:42.285365pt;}
.h7_c00382{height:42.770521pt;}
.h0_c00382{height:1186.666667pt;}
.w0_c00382{width:782.666667pt;}
.x0_c00382{left:0.000000pt;}
.x38_c00382{left:134.666667pt;}
.x3_c00382{left:135.626667pt;}
.x29_c00382{left:137.133333pt;}
.xb1_c00382{left:138.093333pt;}
.xf8_c00382{left:146.666667pt;}
.x80_c00382{left:149.333333pt;}
.x6a_c00382{left:150.666667pt;}
.x72_c00382{left:154.666667pt;}
.xe2_c00382{left:161.333333pt;}
.x4_c00382{left:163.040000pt;}
.xce_c00382{left:164.373333pt;}
.x8a_c00382{left:165.706667pt;}
.xb2_c00382{left:167.626667pt;}
.x59_c00382{left:169.333333pt;}
.x42_c00382{left:170.293333pt;}
.x81_c00382{left:172.373333pt;}
.x65_c00382{left:174.666667pt;}
.x2a_c00382{left:177.333333pt;}
.x39_c00382{left:180.373333pt;}
.x12_c00382{left:182.666667pt;}
.x43_c00382{left:185.706667pt;}
.xa5_c00382{left:187.626667pt;}
.xb3_c00382{left:188.573333pt;}
.x2b_c00382{left:190.666667pt;}
.xf5_c00382{left:191.626667pt;}
.x6b_c00382{left:193.333333pt;}
.xc0_c00382{left:194.666667pt;}
.xed_c00382{left:196.000000pt;}
.x1f_c00382{left:200.000000pt;}
.x66_c00382{left:201.333333pt;}
.x3a_c00382{left:203.040000pt;}
.x5_c00382{left:204.000000pt;}
.xda_c00382{left:205.706667pt;}
.x93_c00382{left:206.666667pt;}
.x44_c00382{left:210.293333pt;}
.xde_c00382{left:212.000000pt;}
.xc1_c00382{left:213.333333pt;}
.x2c_c00382{left:214.293333pt;}
.x82_c00382{left:217.333333pt;}
.x20_c00382{left:219.240000pt;}
.xab_c00382{left:221.333333pt;}
.xf0_c00382{left:222.666667pt;}
.xd5_c00382{left:224.960000pt;}
.xd2_c00382{left:226.666667pt;}
.xb9_c00382{left:228.000000pt;}
.x13_c00382{left:229.333333pt;}
.x9d_c00382{left:230.666667pt;}
.x6_c00382{left:231.626667pt;}
.xa6_c00382{left:232.960000pt;}
.xe4_c00382{left:234.293333pt;}
.xee_c00382{left:236.000000pt;}
.x86_c00382{left:237.333333pt;}
.x73_c00382{left:238.293333pt;}
.xd6_c00382{left:240.960000pt;}
.xf1_c00382{left:243.626667pt;}
.x3b_c00382{left:244.960000pt;}
.x45_c00382{left:249.333333pt;}
.xb4_c00382{left:250.666667pt;}
.x2d_c00382{left:252.960000pt;}
.x5a_c00382{left:254.666667pt;}
.x83_c00382{left:255.626667pt;}
.x99_c00382{left:258.666667pt;}
.xef_c00382{left:260.960000pt;}
.x67_c00382{left:263.626667pt;}
.x14_c00382{left:266.666667pt;}
.xfc_c00382{left:268.960000pt;}
.x5b_c00382{left:271.040000pt;}
.x8b_c00382{left:272.000000pt;}
.x51_c00382{left:274.293333pt;}
.x7_c00382{left:276.000000pt;}
.x6c_c00382{left:278.293333pt;}
.xf9_c00382{left:280.000000pt;}
.x5c_c00382{left:281.333333pt;}
.x9a_c00382{left:282.666667pt;}
.x94_c00382{left:283.626667pt;}
.xac_c00382{left:284.960000pt;}
.xe5_c00382{left:286.666667pt;}
.x3c_c00382{left:289.706667pt;}
.x68_c00382{left:292.000000pt;}
.xcf_c00382{left:292.960000pt;}
.xdb_c00382{left:294.293333pt;}
.x74_c00382{left:295.626667pt;}
.x7b_c00382{left:297.706667pt;}
.x8_c00382{left:300.000000pt;}
.x15_c00382{left:300.960000pt;}
.xe1_c00382{left:302.466667pt;}
.xba_c00382{left:304.000000pt;}
.x2e_c00382{left:304.960000pt;}
.x9e_c00382{left:306.466667pt;}
.xad_c00382{left:308.960000pt;}
.x8c_c00382{left:310.666667pt;}
.xc9_c00382{left:312.000000pt;}
.x7c_c00382{left:314.293333pt;}
.x46_c00382{left:316.000000pt;}
.x21_c00382{left:317.333333pt;}
.x2f_c00382{left:320.373333pt;}
.xd7_c00382{left:322.666667pt;}
.xe6_c00382{left:323.626667pt;}
.x52_c00382{left:326.666667pt;}
.x9_c00382{left:328.000000pt;}
.x5d_c00382{left:329.333333pt;}
.x6d_c00382{left:331.626667pt;}
.x3d_c00382{left:334.293333pt;}
.x79_c00382{left:339.040000pt;}
.x47_c00382{left:340.000000pt;}
.x22_c00382{left:342.293333pt;}
.xa_c00382{left:343.626667pt;}
.xf2_c00382{left:345.706667pt;}
.x1_c00382{left:348.000000pt;}
.x53_c00382{left:349.706667pt;}
.xa7_c00382{left:350.666667pt;}
.x16_c00382{left:354.293333pt;}
.xe7_c00382{left:355.626667pt;}
.x48_c00382{left:357.333333pt;}
.x75_c00382{left:359.626667pt;}
.x95_c00382{left:361.333333pt;}
.xb_c00382{left:362.666667pt;}
.xbb_c00382{left:364.000000pt;}
.x7d_c00382{left:364.960000pt;}
.x9b_c00382{left:365.906667pt;}
.x6e_c00382{left:368.000000pt;}
.x23_c00382{left:370.666667pt;}
.x9f_c00382{left:372.000000pt;}
.x87_c00382{left:374.293333pt;}
.xd0_c00382{left:375.626667pt;}
.xc2_c00382{left:377.706667pt;}
.x8d_c00382{left:378.666667pt;}
.xca_c00382{left:380.000000pt;}
.x69_c00382{left:382.293333pt;}
.x49_c00382{left:384.373333pt;}
.x5e_c00382{left:386.666667pt;}
.x84_c00382{left:387.626667pt;}
.xb5_c00382{left:389.706667pt;}
.x54_c00382{left:391.040000pt;}
.x30_c00382{left:393.333333pt;}
.x17_c00382{left:395.040000pt;}
.x8e_c00382{left:396.373333pt;}
.xc7_c00382{left:399.040000pt;}
.x24_c00382{left:400.000000pt;}
.xd1_c00382{left:402.293333pt;}
.xc_c00382{left:404.000000pt;}
.x5f_c00382{left:404.960000pt;}
.xf3_c00382{left:407.626667pt;}
.xdf_c00382{left:409.906667pt;}
.x31_c00382{left:411.040000pt;}
.xbc_c00382{left:413.333333pt;}
.x9c_c00382{left:414.666667pt;}
.x60_c00382{left:416.960000pt;}
.x8f_c00382{left:419.040000pt;}
.xd8_c00382{left:422.666667pt;}
.x4a_c00382{left:424.960000pt;}
.x18_c00382{left:428.000000pt;}
.x7e_c00382{left:433.706667pt;}
.x7a_c00382{left:435.626667pt;}
.xcb_c00382{left:438.666667pt;}
.xc3_c00382{left:440.000000pt;}
.x61_c00382{left:444.373333pt;}
.xa8_c00382{left:445.706667pt;}
.x85_c00382{left:447.040000pt;}
.x76_c00382{left:448.960000pt;}
.x25_c00382{left:450.293333pt;}
.x4b_c00382{left:452.373333pt;}
.xbd_c00382{left:455.626667pt;}
.xa0_c00382{left:457.133333pt;}
.xe3_c00382{left:458.666667pt;}
.x6f_c00382{left:460.000000pt;}
.x62_c00382{left:461.333333pt;}
.xd_c00382{left:462.293333pt;}
.x19_c00382{left:464.000000pt;}
.x32_c00382{left:465.333333pt;}
.x90_c00382{left:469.333333pt;}
.xe8_c00382{left:470.666667pt;}
.x26_c00382{left:471.626667pt;}
.x7f_c00382{left:472.960000pt;}
.xae_c00382{left:475.626667pt;}
.x77_c00382{left:477.706667pt;}
.x70_c00382{left:480.000000pt;}
.x33_c00382{left:481.706667pt;}
.xc4_c00382{left:482.666667pt;}
.xbe_c00382{left:485.333333pt;}
.x1a_c00382{left:487.040000pt;}
.x55_c00382{left:488.373333pt;}
.xe_c00382{left:489.333333pt;}
.x91_c00382{left:490.666667pt;}
.xa1_c00382{left:492.373333pt;}
.xcc_c00382{left:495.626667pt;}
.x63_c00382{left:497.706667pt;}
.xc5_c00382{left:498.666667pt;}
.xaf_c00382{left:500.000000pt;}
.x34_c00382{left:503.240000pt;}
.xb6_c00382{left:506.466667pt;}
.xf6_c00382{left:508.573333pt;}
.xe9_c00382{left:509.706667pt;}
.x1b_c00382{left:511.426667pt;}
.xdc_c00382{left:514.666667pt;}
.x4c_c00382{left:517.333333pt;}
.x96_c00382{left:519.040000pt;}
.x56_c00382{left:522.666667pt;}
.xea_c00382{left:524.373333pt;}
.xc6_c00382{left:526.293333pt;}
.x27_c00382{left:529.333333pt;}
.x3e_c00382{left:530.293333pt;}
.xa2_c00382{left:532.373333pt;}
.x88_c00382{left:533.333333pt;}
.xf4_c00382{left:535.040000pt;}
.xd3_c00382{left:537.706667pt;}
.x4d_c00382{left:540.000000pt;}
.xcd_c00382{left:541.706667pt;}
.xf7_c00382{left:543.626667pt;}
.x71_c00382{left:544.960000pt;}
.xbf_c00382{left:548.373333pt;}
.xe0_c00382{left:549.706667pt;}
.xd9_c00382{left:552.000000pt;}
.x35_c00382{left:554.293333pt;}
.xa9_c00382{left:555.626667pt;}
.x1c_c00382{left:556.960000pt;}
.x3f_c00382{left:558.666667pt;}
.x36_c00382{left:560.373333pt;}
.xeb_c00382{left:561.333333pt;}
.xf_c00382{left:563.040000pt;}
.x4e_c00382{left:564.000000pt;}
.x97_c00382{left:568.000000pt;}
.xa3_c00382{left:569.706667pt;}
.x92_c00382{left:570.666667pt;}
.x78_c00382{left:571.626667pt;}
.xaa_c00382{left:574.666667pt;}
.xdd_c00382{left:578.293333pt;}
.x57_c00382{left:580.373333pt;}
.x64_c00382{left:582.666667pt;}
.x1d_c00382{left:584.373333pt;}
.xc8_c00382{left:585.333333pt;}
.x28_c00382{left:586.293333pt;}
.xb7_c00382{left:592.373333pt;}
.x10_c00382{left:594.293333pt;}
.xfa_c00382{left:598.293333pt;}
.x40_c00382{left:600.373333pt;}
.x58_c00382{left:604.373333pt;}
.xec_c00382{left:605.333333pt;}
.x1e_c00382{left:608.960000pt;}
.xd4_c00382{left:610.666667pt;}
.x37_c00382{left:613.706667pt;}
.x89_c00382{left:618.666667pt;}
.xb0_c00382{left:620.000000pt;}
.x11_c00382{left:621.333333pt;}
.xa4_c00382{left:624.373333pt;}
.x4f_c00382{left:625.333333pt;}
.x2_c00382{left:626.293333pt;}
.xb8_c00382{left:629.706667pt;}
.x41_c00382{left:631.040000pt;}
.x98_c00382{left:633.333333pt;}
.x50_c00382{left:642.666667pt;}
.xfb_c00382{left:645.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_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_61ba04a07e42505dd3d6406b.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me6_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);}
.me2_c00383{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m11f_c00383{transform:matrix(0.324003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324003,0.000000,0.000000,0.250000,0,0);}
.md4_c00383{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.me8_c00383{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m11d_c00383{transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);}
.m70_c00383{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m16_c00383{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m61_c00383{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m51_c00383{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.mce_c00383{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.md5_c00383{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m114_c00383{transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);}
.m4d_c00383{transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);}
.m67_c00383{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m6d_c00383{transform:matrix(0.389954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389954,0.000000,0.000000,0.250000,0,0);}
.m7f_c00383{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.mde_c00383{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.mee_c00383{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.mea_c00383{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.mf6_c00383{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.mf_c00383{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m10a_c00383{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m11b_c00383{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);}
.m7b_c00383{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.mb6_c00383{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m57_c00383{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.m108_c00383{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m62_c00383{transform:matrix(0.401765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401765,0.000000,0.000000,0.250000,0,0);}
.ma3_c00383{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m90_c00383{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m9c_c00383{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m4e_c00383{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.m7c_c00383{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m105_c00383{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.md3_c00383{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m10b_c00383{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m28_c00383{transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);}
.m6e_c00383{transform:matrix(0.410270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410270,0.000000,0.000000,0.250000,0,0);}
.m112_c00383{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m63_c00383{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.mac_c00383{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m88_c00383{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.mbc_c00383{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m96_c00383{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.ma1_c00383{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m74_c00383{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.mf4_c00383{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.ma5_c00383{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m64_c00383{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m104_c00383{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mec_c00383{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m5f_c00383{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m9d_c00383{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m4b_c00383{transform:matrix(0.420643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420643,0.000000,0.000000,0.250000,0,0);}
.m11e_c00383{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m44_c00383{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m34_c00383{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m78_c00383{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m29_c00383{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.m68_c00383{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m6_c00383{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m35_c00383{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.maa_c00383{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m10d_c00383{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mb3_c00383{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m110_c00383{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.m87_c00383{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m2f_c00383{transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);}
.ma7_c00383{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mbf_c00383{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m22_c00383{transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);}
.m102_c00383{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mc1_c00383{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m58_c00383{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.me3_c00383{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m2a_c00383{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mdc_c00383{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.mbb_c00383{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m10c_c00383{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m45_c00383{transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);}
.ma0_c00383{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m17_c00383{transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);}
.m75_c00383{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.md6_c00383{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mf1_c00383{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.mf9_c00383{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.mcc_c00383{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.m116_c00383{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m7a_c00383{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m8b_c00383{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mc5_c00383{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m10e_c00383{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.md7_c00383{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m4c_c00383{transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);}
.m100_c00383{transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);}
.mb2_c00383{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m9b_c00383{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m50_c00383{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mff_c00383{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m4a_c00383{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m81_c00383{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.ma9_c00383{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m5e_c00383{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m8e_c00383{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.mc4_c00383{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.m11_c00383{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m46_c00383{transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);}
.m55_c00383{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m43_c00383{transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);}
.mc9_c00383{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m49_c00383{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m21_c00383{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m3e_c00383{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m106_c00383{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.me5_c00383{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m109_c00383{transform:matrix(0.477273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477273,0.000000,0.000000,0.250000,0,0);}
.me9_c00383{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m4f_c00383{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m1b_c00383{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m56_c00383{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.ma8_c00383{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m11c_c00383{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m3d_c00383{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mcb_c00383{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m66_c00383{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m0_c00383{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m13_c00383{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m98_c00383{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.me4_c00383{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m3f_c00383{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);}
.mf7_c00383{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mda_c00383{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m8a_c00383{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.ma6_c00383{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m23_c00383{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m11a_c00383{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m83_c00383{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.mc_c00383{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.mdd_c00383{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m40_c00383{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.m97_c00383{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mcd_c00383{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.mca_c00383{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m8d_c00383{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mfa_c00383{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.me_c00383{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m85_c00383{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.maf_c00383{transform:matrix(0.521800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521800,0.000000,0.000000,0.250000,0,0);}
.m53_c00383{transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);}
.m2_c00383{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);}
.m59_c00383{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m119_c00383{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m94_c00383{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m8c_c00383{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.med_c00383{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m7_c00383{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.mfe_c00383{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m27_c00383{transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);}
.mf5_c00383{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m91_c00383{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m69_c00383{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m5c_c00383{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.m117_c00383{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m6a_c00383{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mb_c00383{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m93_c00383{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mba_c00383{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.md1_c00383{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.ma4_c00383{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m26_c00383{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m80_c00383{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mef_c00383{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m2d_c00383{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m99_c00383{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.mad_c00383{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m31_c00383{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m6c_c00383{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.ma_c00383{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.md9_c00383{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mc7_c00383{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m25_c00383{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m111_c00383{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m9a_c00383{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.me1_c00383{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m115_c00383{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m10f_c00383{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m41_c00383{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.mb9_c00383{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m2b_c00383{transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);}
.mf8_c00383{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m84_c00383{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m48_c00383{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m89_c00383{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mf2_c00383{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.me7_c00383{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m76_c00383{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m9e_c00383{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.mb1_c00383{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m10_c00383{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m5b_c00383{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.me0_c00383{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m7d_c00383{transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);}
.mdf_c00383{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.md0_c00383{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m1a_c00383{transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);}
.m95_c00383{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m30_c00383{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m86_c00383{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m3_c00383{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m77_c00383{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m24_c00383{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_c00383{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m8_c00383{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m1f_c00383{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.mfd_c00383{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.mf3_c00383{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.mab_c00383{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mb8_c00383{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m3c_c00383{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.meb_c00383{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m2c_c00383{transform:matrix(0.598529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598529,0.000000,0.000000,0.250000,0,0);}
.m9f_c00383{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.ma2_c00383{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);}
.mbe_c00383{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m12_c00383{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m54_c00383{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m47_c00383{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mdb_c00383{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mc0_c00383{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m6f_c00383{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m118_c00383{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m79_c00383{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m33_c00383{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m18_c00383{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);}
.mc2_c00383{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);}
.m38_c00383{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.mfc_c00383{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mb7_c00383{transform:matrix(0.636411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636411,0.000000,0.000000,0.250000,0,0);}
.md8_c00383{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m60_c00383{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m20_c00383{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m1_c00383{transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);}
.m101_c00383{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m32_c00383{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.md_c00383{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);}
.m1c_c00383{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m5d_c00383{transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);}
.m1e_c00383{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m42_c00383{transform:matrix(0.657051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657051,0.000000,0.000000,0.250000,0,0);}
.m5_c00383{transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);}
.m113_c00383{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m36_c00383{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m72_c00383{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m3b_c00383{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.m15_c00383{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m39_c00383{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.m9_c00383{transform:matrix(0.680147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680147,0.000000,0.000000,0.250000,0,0);}
.m5a_c00383{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m2e_c00383{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m4_c00383{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);}
.m8f_c00383{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m103_c00383{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mc3_c00383{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.mc6_c00383{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m107_c00383{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m19_c00383{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m71_c00383{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m73_c00383{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.md2_c00383{transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);}
.m7e_c00383{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mbd_c00383{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mae_c00383{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m92_c00383{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mb4_c00383{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.mb5_c00383{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m6b_c00383{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.mb0_c00383{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m82_c00383{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.mc8_c00383{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.mcf_c00383{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mfb_c00383{transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);}
.mf0_c00383{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.m52_c00383{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m37_c00383{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m3a_c00383{transform:matrix(1.066079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.066079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.066079,0.000000,0.000000,0.250000,0,0);}
.m14_c00383{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m65_c00383{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws1_c00383{word-spacing:-7.189112px;}
.ws2_c00383{word-spacing:0.000000px;}
.ws0_c00383{word-spacing:3.195600px;}
.fc0_c00383{color:transparent;}
.fs7_c00383{font-size:3.420000px;}
.fs4_c00383{font-size:13.620000px;}
.fs5_c00383{font-size:18.720000px;}
.fs1_c00383{font-size:20.400000px;}
.fs2_c00383{font-size:25.500000px;}
.fs0_c00383{font-size:28.920000px;}
.fs3_c00383{font-size:32.340000px;}
.fs6_c00383{font-size:35.700000px;}
.fs8_c00383{font-size:39.120000px;}
.y0_c00383{bottom:0.000000px;}
.yfa_c00383{bottom:253.245000px;}
.yfe_c00383{bottom:253.680000px;}
.yfd_c00383{bottom:254.745000px;}
.yf9_c00383{bottom:255.405000px;}
.yfb_c00383{bottom:255.630000px;}
.yfc_c00383{bottom:256.905000px;}
.yf7_c00383{bottom:273.825000px;}
.yf8_c00383{bottom:274.245000px;}
.yf5_c00383{bottom:274.905000px;}
.yf6_c00383{bottom:276.405000px;}
.yf0_c00383{bottom:292.245000px;}
.yef_c00383{bottom:293.130000px;}
.yf3_c00383{bottom:293.745000px;}
.yf1_c00383{bottom:294.630000px;}
.yf2_c00383{bottom:295.470000px;}
.yf4_c00383{bottom:295.905000px;}
.yec_c00383{bottom:313.245000px;}
.yea_c00383{bottom:313.905000px;}
.ye9_c00383{bottom:314.130000px;}
.yed_c00383{bottom:314.325000px;}
.yeb_c00383{bottom:314.970000px;}
.yee_c00383{bottom:315.405000px;}
.ye5_c00383{bottom:330.405000px;}
.ye8_c00383{bottom:331.680000px;}
.ye6_c00383{bottom:332.745000px;}
.ye7_c00383{bottom:333.630000px;}
.ye3_c00383{bottom:333.825000px;}
.ye4_c00383{bottom:334.905000px;}
.yde_c00383{bottom:352.245000px;}
.ye2_c00383{bottom:353.325000px;}
.ye0_c00383{bottom:353.745000px;}
.ydf_c00383{bottom:354.405000px;}
.ye1_c00383{bottom:355.905000px;}
.yd7_c00383{bottom:371.325000px;}
.ydd_c00383{bottom:371.745000px;}
.ydb_c00383{bottom:372.825000px;}
.yda_c00383{bottom:373.245000px;}
.yd6_c00383{bottom:373.905000px;}
.ydc_c00383{bottom:374.970000px;}
.yd8_c00383{bottom:375.405000px;}
.yd9_c00383{bottom:376.470000px;}
.yd5_c00383{bottom:391.245000px;}
.yd1_c00383{bottom:392.325000px;}
.yd2_c00383{bottom:393.405000px;}
.yd4_c00383{bottom:394.470000px;}
.yd3_c00383{bottom:394.905000px;}
.yd0_c00383{bottom:409.905000px;}
.yce_c00383{bottom:412.245000px;}
.ycb_c00383{bottom:412.905000px;}
.ycf_c00383{bottom:413.130000px;}
.ycd_c00383{bottom:413.970000px;}
.ycc_c00383{bottom:414.405000px;}
.yc9_c00383{bottom:431.745000px;}
.yc8_c00383{bottom:432.630000px;}
.yca_c00383{bottom:432.825000px;}
.yc7_c00383{bottom:433.905000px;}
.yc6_c00383{bottom:450.825000px;}
.yc4_c00383{bottom:452.130000px;}
.yc3_c00383{bottom:453.405000px;}
.yc5_c00383{bottom:454.470000px;}
.ybf_c00383{bottom:470.745000px;}
.yc1_c00383{bottom:472.245000px;}
.yc0_c00383{bottom:472.905000px;}
.yc2_c00383{bottom:474.405000px;}
.ybe_c00383{bottom:490.245000px;}
.ybc_c00383{bottom:491.745000px;}
.yba_c00383{bottom:492.405000px;}
.ybb_c00383{bottom:492.630000px;}
.ybd_c00383{bottom:493.905000px;}
.yb5_c00383{bottom:509.745000px;}
.yb8_c00383{bottom:511.245000px;}
.yb9_c00383{bottom:511.905000px;}
.yb6_c00383{bottom:513.405000px;}
.yb7_c00383{bottom:514.470000px;}
.yaf_c00383{bottom:529.245000px;}
.yb0_c00383{bottom:530.325000px;}
.yb2_c00383{bottom:530.745000px;}
.yb4_c00383{bottom:531.405000px;}
.yb3_c00383{bottom:531.630000px;}
.yb1_c00383{bottom:532.470000px;}
.yae_c00383{bottom:532.905000px;}
.yac_c00383{bottom:548.745000px;}
.yad_c00383{bottom:550.245000px;}
.yab_c00383{bottom:552.405000px;}
.ya9_c00383{bottom:567.405000px;}
.yaa_c00383{bottom:569.325000px;}
.ya7_c00383{bottom:569.745000px;}
.ya8_c00383{bottom:570.630000px;}
.ya3_c00383{bottom:570.825000px;}
.ya5_c00383{bottom:571.470000px;}
.ya6_c00383{bottom:571.905000px;}
.ya4_c00383{bottom:572.970000px;}
.ya1_c00383{bottom:587.970000px;}
.ya2_c00383{bottom:588.825000px;}
.ya0_c00383{bottom:589.245000px;}
.y9d_c00383{bottom:590.130000px;}
.y9f_c00383{bottom:591.405000px;}
.y9e_c00383{bottom:592.470000px;}
.y98_c00383{bottom:608.325000px;}
.y9b_c00383{bottom:608.745000px;}
.y99_c00383{bottom:609.630000px;}
.y9a_c00383{bottom:610.905000px;}
.y9c_c00383{bottom:611.130000px;}
.y96_c00383{bottom:627.405000px;}
.y91_c00383{bottom:628.245000px;}
.y97_c00383{bottom:629.325000px;}
.y95_c00383{bottom:630.405000px;}
.y94_c00383{bottom:630.630000px;}
.y92_c00383{bottom:630.825000px;}
.y93_c00383{bottom:631.905000px;}
.y8b_c00383{bottom:649.245000px;}
.y90_c00383{bottom:649.905000px;}
.y8f_c00383{bottom:650.130000px;}
.y8d_c00383{bottom:650.325000px;}
.y8e_c00383{bottom:650.970000px;}
.y8c_c00383{bottom:651.405000px;}
.y8a_c00383{bottom:668.745000px;}
.y87_c00383{bottom:669.405000px;}
.y89_c00383{bottom:669.630000px;}
.y88_c00383{bottom:670.905000px;}
.y86_c00383{bottom:686.970000px;}
.y85_c00383{bottom:688.245000px;}
.y82_c00383{bottom:689.130000px;}
.y84_c00383{bottom:689.325000px;}
.y83_c00383{bottom:690.405000px;}
.y81_c00383{bottom:707.550000px;}
.y7f_c00383{bottom:707.745000px;}
.y80_c00383{bottom:708.630000px;}
.y7e_c00383{bottom:708.825000px;}
.y7d_c00383{bottom:709.905000px;}
.y7c_c00383{bottom:726.825000px;}
.y79_c00383{bottom:727.245000px;}
.y7a_c00383{bottom:728.130000px;}
.y78_c00383{bottom:728.970000px;}
.y77_c00383{bottom:729.405000px;}
.y7b_c00383{bottom:730.470000px;}
.y76_c00383{bottom:745.470000px;}
.y74_c00383{bottom:746.745000px;}
.y75_c00383{bottom:747.630000px;}
.y73_c00383{bottom:748.905000px;}
.y71_c00383{bottom:766.245000px;}
.y6f_c00383{bottom:767.325000px;}
.y6e_c00383{bottom:768.405000px;}
.y72_c00383{bottom:768.630000px;}
.y70_c00383{bottom:769.905000px;}
.y6a_c00383{bottom:787.245000px;}
.y6c_c00383{bottom:787.905000px;}
.y6b_c00383{bottom:788.130000px;}
.y6d_c00383{bottom:788.970000px;}
.y69_c00383{bottom:789.405000px;}
.y63_c00383{bottom:805.245000px;}
.y65_c00383{bottom:805.470000px;}
.y67_c00383{bottom:806.745000px;}
.y68_c00383{bottom:807.405000px;}
.y66_c00383{bottom:807.630000px;}
.y64_c00383{bottom:808.470000px;}
.y61_c00383{bottom:824.745000px;}
.y62_c00383{bottom:825.825000px;}
.y5d_c00383{bottom:826.245000px;}
.y60_c00383{bottom:826.905000px;}
.y5e_c00383{bottom:827.130000px;}
.y5c_c00383{bottom:827.970000px;}
.y5f_c00383{bottom:828.405000px;}
.y5b_c00383{bottom:843.405000px;}
.y5a_c00383{bottom:844.680000px;}
.y56_c00383{bottom:845.745000px;}
.y59_c00383{bottom:846.630000px;}
.y58_c00383{bottom:847.905000px;}
.y57_c00383{bottom:847.920000px;}
.y54_c00383{bottom:871.470000px;}
.y50_c00383{bottom:872.325000px;}
.y51_c00383{bottom:873.405000px;}
.y53_c00383{bottom:874.470000px;}
.y52_c00383{bottom:874.695000px;}
.y55_c00383{bottom:875.550000px;}
.y4f_c00383{bottom:886.905000px;}
.y4e_c00383{bottom:887.970000px;}
.y4b_c00383{bottom:888.405000px;}
.y49_c00383{bottom:888.630000px;}
.y4a_c00383{bottom:889.050000px;}
.y4d_c00383{bottom:889.470000px;}
.y4c_c00383{bottom:890.550000px;}
.y48_c00383{bottom:901.905000px;}
.y47_c00383{bottom:902.325000px;}
.y44_c00383{bottom:902.970000px;}
.y45_c00383{bottom:903.195000px;}
.y46_c00383{bottom:904.050000px;}
.y43_c00383{bottom:915.825000px;}
.y41_c00383{bottom:916.905000px;}
.y42_c00383{bottom:917.970000px;}
.y3d_c00383{bottom:918.195000px;}
.y3f_c00383{bottom:918.405000px;}
.y40_c00383{bottom:919.050000px;}
.y3e_c00383{bottom:919.470000px;}
.y3c_c00383{bottom:930.825000px;}
.y39_c00383{bottom:931.905000px;}
.y37_c00383{bottom:932.325000px;}
.y38_c00383{bottom:932.970000px;}
.y3a_c00383{bottom:933.630000px;}
.y3b_c00383{bottom:934.050000px;}
.y36_c00383{bottom:945.825000px;}
.y33_c00383{bottom:946.905000px;}
.y32_c00383{bottom:947.130000px;}
.y35_c00383{bottom:947.970000px;}
.y34_c00383{bottom:949.050000px;}
.y2e_c00383{bottom:961.050000px;}
.y31_c00383{bottom:961.905000px;}
.y2f_c00383{bottom:962.130000px;}
.y2d_c00383{bottom:962.970000px;}
.y30_c00383{bottom:964.050000px;}
.y2c_c00383{bottom:975.405000px;}
.y28_c00383{bottom:976.050000px;}
.y2b_c00383{bottom:976.905000px;}
.y2a_c00383{bottom:978.195000px;}
.y29_c00383{bottom:979.050000px;}
.y27_c00383{bottom:989.325000px;}
.y26_c00383{bottom:990.405000px;}
.y22_c00383{bottom:991.050000px;}
.y24_c00383{bottom:991.470000px;}
.y20_c00383{bottom:991.905000px;}
.y1f_c00383{bottom:992.550000px;}
.y23_c00383{bottom:992.970000px;}
.y25_c00383{bottom:993.195000px;}
.y21_c00383{bottom:994.050000px;}
.y1d_c00383{bottom:1004.325000px;}
.y17_c00383{bottom:1004.970000px;}
.y1e_c00383{bottom:1005.405000px;}
.y19_c00383{bottom:1006.050000px;}
.y1a_c00383{bottom:1006.905000px;}
.y1c_c00383{bottom:1007.550000px;}
.y18_c00383{bottom:1007.970000px;}
.y1b_c00383{bottom:1008.195000px;}
.y14_c00383{bottom:1018.470000px;}
.y15_c00383{bottom:1019.325000px;}
.y16_c00383{bottom:1020.405000px;}
.y12_c00383{bottom:1021.470000px;}
.y13_c00383{bottom:1022.550000px;}
.y11_c00383{bottom:1035.405000px;}
.y10_c00383{bottom:1035.630000px;}
.yf_c00383{bottom:1036.470000px;}
.ye_c00383{bottom:1037.550000px;}
.yd_c00383{bottom:1049.325000px;}
.ya_c00383{bottom:1050.405000px;}
.y9_c00383{bottom:1051.470000px;}
.yc_c00383{bottom:1051.695000px;}
.yb_c00383{bottom:1052.550000px;}
.y8_c00383{bottom:1064.325000px;}
.y3_c00383{bottom:1064.550000px;}
.y6_c00383{bottom:1065.405000px;}
.y7_c00383{bottom:1066.050000px;}
.y4_c00383{bottom:1066.470000px;}
.y5_c00383{bottom:1067.550000px;}
.y1_c00383{bottom:1099.905000px;}
.y2_c00383{bottom:1102.050000px;}
.h8_c00383{height:4.206533px;}
.h5_c00383{height:16.752334px;}
.h6_c00383{height:23.025234px;}
.h2_c00383{height:25.091602px;}
.h3_c00383{height:31.364502px;}
.h1_c00383{height:35.571035px;}
.h4_c00383{height:39.777568px;}
.h7_c00383{height:43.910303px;}
.h9_c00383{height:48.116836px;}
.h0_c00383{height:1335.000000px;}
.w0_c00383{width:880.500000px;}
.x0_c00383{left:0.000000px;}
.x1_c00383{left:151.080000px;}
.x11_c00383{left:152.580000px;}
.x90_c00383{left:154.080000px;}
.x3_c00383{left:166.920000px;}
.x4c_c00383{left:168.420000px;}
.xad_c00383{left:169.500000px;}
.x110_c00383{left:171.420000px;}
.x9e_c00383{left:172.920000px;}
.x7e_c00383{left:180.000000px;}
.x95_c00383{left:181.500000px;}
.xfa_c00383{left:183.000000px;}
.x4_c00383{left:184.500000px;}
.xf5_c00383{left:187.500000px;}
.x4d_c00383{left:192.000000px;}
.x12_c00383{left:193.080000px;}
.x10a_c00383{left:198.000000px;}
.xc0_c00383{left:200.580000px;}
.x9f_c00383{left:202.500000px;}
.xfb_c00383{left:205.080000px;}
.x25_c00383{left:208.500000px;}
.x62_c00383{left:210.000000px;}
.x91_c00383{left:211.920000px;}
.x10b_c00383{left:214.500000px;}
.xd3_c00383{left:216.000000px;}
.x87_c00383{left:217.500000px;}
.xc1_c00383{left:219.420000px;}
.x46_c00383{left:220.500000px;}
.x6b_c00383{left:221.580000px;}
.x96_c00383{left:223.500000px;}
.x113_c00383{left:225.000000px;}
.xf6_c00383{left:226.500000px;}
.x5_c00383{left:228.420000px;}
.x18_c00383{left:229.500000px;}
.x57_c00383{left:230.580000px;}
.x7f_c00383{left:232.920000px;}
.xd4_c00383{left:235.920000px;}
.xa0_c00383{left:237.000000px;}
.xa5_c00383{left:240.420000px;}
.x13_c00383{left:241.500000px;}
.x31_c00383{left:243.420000px;}
.x6_c00383{left:244.500000px;}
.xc2_c00383{left:246.000000px;}
.x19_c00383{left:247.500000px;}
.x64_c00383{left:249.000000px;}
.xe3_c00383{left:250.920000px;}
.x114_c00383{left:252.000000px;}
.x63_c00383{left:254.580000px;}
.x75_c00383{left:256.500000px;}
.xc7_c00383{left:258.000000px;}
.x47_c00383{left:259.080000px;}
.x2b_c00383{left:261.420000px;}
.xd5_c00383{left:262.500000px;}
.x105_c00383{left:263.580000px;}
.xee_c00383{left:265.920000px;}
.x3e_c00383{left:267.000000px;}
.x26_c00383{left:269.580000px;}
.xa6_c00383{left:271.920000px;}
.x76_c00383{left:276.000000px;}
.xcc_c00383{left:277.080000px;}
.x4e_c00383{left:279.420000px;}
.xa1_c00383{left:280.500000px;}
.x32_c00383{left:282.420000px;}
.x5c_c00383{left:284.580000px;}
.x48_c00383{left:286.920000px;}
.xc3_c00383{left:288.000000px;}
.x88_c00383{left:289.500000px;}
.x6c_c00383{left:291.000000px;}
.xef_c00383{left:292.500000px;}
.x117_c00383{left:293.580000px;}
.x2c_c00383{left:295.500000px;}
.x14_c00383{left:296.580000px;}
.x77_c00383{left:298.500000px;}
.x33_c00383{left:299.580000px;}
.xdb_c00383{left:303.000000px;}
.xae_c00383{left:304.500000px;}
.x4f_c00383{left:307.080000px;}
.xcd_c00383{left:309.000000px;}
.x7_c00383{left:310.080000px;}
.x89_c00383{left:314.580000px;}
.xde_c00383{left:316.080000px;}
.x80_c00383{left:319.080000px;}
.x49_c00383{left:321.000000px;}
.x1a_c00383{left:322.920000px;}
.x34_c00383{left:324.000000px;}
.x6d_c00383{left:325.080000px;}
.x97_c00383{left:326.580000px;}
.x5d_c00383{left:328.500000px;}
.xc4_c00383{left:330.000000px;}
.xce_c00383{left:331.920000px;}
.x27_c00383{left:333.000000px;}
.x10c_c00383{left:334.920000px;}
.x65_c00383{left:336.420000px;}
.x115_c00383{left:337.920000px;}
.x81_c00383{left:340.920000px;}
.xf0_c00383{left:342.000000px;}
.x50_c00383{left:343.080000px;}
.xa2_c00383{left:346.080000px;}
.x58_c00383{left:349.080000px;}
.xa7_c00383{left:350.580000px;}
.x8_c00383{left:352.080000px;}
.x15_c00383{left:353.580000px;}
.x5e_c00383{left:355.500000px;}
.x98_c00383{left:356.580000px;}
.x2d_c00383{left:358.080000px;}
.xcf_c00383{left:360.420000px;}
.x51_c00383{left:361.500000px;}
.x35_c00383{left:363.420000px;}
.x16_c00383{left:364.500000px;}
.x100_c00383{left:366.000000px;}
.x1b_c00383{left:367.920000px;}
.x28_c00383{left:369.420000px;}
.xe4_c00383{left:370.500000px;}
.x118_c00383{left:372.000000px;}
.x3f_c00383{left:374.580000px;}
.xdf_c00383{left:376.500000px;}
.x36_c00383{left:378.000000px;}
.xb5_c00383{left:379.500000px;}
.xd6_c00383{left:380.580000px;}
.xa3_c00383{left:382.080000px;}
.xe9_c00383{left:384.420000px;}
.x10d_c00383{left:385.920000px;}
.x66_c00383{left:390.420000px;}
.x2_c00383{left:391.500000px;}
.xe0_c00383{left:393.000000px;}
.xdc_c00383{left:394.080000px;}
.x8a_c00383{left:396.000000px;}
.x119_c00383{left:397.500000px;}
.x9_c00383{left:398.580000px;}
.xf1_c00383{left:400.500000px;}
.x29_c00383{left:401.580000px;}
.x59_c00383{left:405.420000px;}
.x1c_c00383{left:406.920000px;}
.x8b_c00383{left:408.000000px;}
.x40_c00383{left:409.500000px;}
.xd7_c00383{left:410.580000px;}
.xea_c00383{left:412.500000px;}
.xa_c00383{left:414.000000px;}
.x2e_c00383{left:415.500000px;}
.x78_c00383{left:417.420000px;}
.xe5_c00383{left:418.500000px;}
.x5f_c00383{left:419.580000px;}
.x4a_c00383{left:421.500000px;}
.x1d_c00383{left:424.080000px;}
.x17_c00383{left:425.580000px;}
.x99_c00383{left:427.500000px;}
.x6e_c00383{left:428.580000px;}
.x2a_c00383{left:430.080000px;}
.x82_c00383{left:436.920000px;}
.x8c_c00383{left:439.500000px;}
.xe1_c00383{left:441.000000px;}
.xe6_c00383{left:442.920000px;}
.xb6_c00383{left:444.000000px;}
.x116_c00383{left:445.500000px;}
.x1e_c00383{left:447.420000px;}
.x5a_c00383{left:449.580000px;}
.xd9_c00383{left:451.500000px;}
.x4b_c00383{left:452.580000px;}
.xf7_c00383{left:454.500000px;}
.x92_c00383{left:455.580000px;}
.x37_c00383{left:457.500000px;}
.xdd_c00383{left:459.000000px;}
.x2f_c00383{left:460.080000px;}
.xb7_c00383{left:462.000000px;}
.x101_c00383{left:464.580000px;}
.x52_c00383{left:467.580000px;}
.x8d_c00383{left:469.080000px;}
.x41_c00383{left:471.000000px;}
.x1f_c00383{left:472.500000px;}
.x83_c00383{left:475.920000px;}
.x5b_c00383{left:477.000000px;}
.xaf_c00383{left:480.000000px;}
.xa8_c00383{left:481.500000px;}
.xd8_c00383{left:483.000000px;}
.xb_c00383{left:484.500000px;}
.x67_c00383{left:486.000000px;}
.x30_c00383{left:488.580000px;}
.x38_c00383{left:490.500000px;}
.x79_c00383{left:493.500000px;}
.x6f_c00383{left:499.500000px;}
.xb8_c00383{left:501.420000px;}
.x84_c00383{left:502.500000px;}
.x20_c00383{left:504.420000px;}
.xec_c00383{left:508.500000px;}
.x42_c00383{left:511.920000px;}
.x70_c00383{left:513.000000px;}
.xd0_c00383{left:516.000000px;}
.xfc_c00383{left:517.080000px;}
.xb0_c00383{left:519.000000px;}
.x21_c00383{left:520.500000px;}
.xc5_c00383{left:522.000000px;}
.x53_c00383{left:523.500000px;}
.x9a_c00383{left:525.000000px;}
.xc_c00383{left:526.080000px;}
.xa9_c00383{left:529.080000px;}
.x43_c00383{left:530.580000px;}
.xbd_c00383{left:534.000000px;}
.x7a_c00383{left:535.500000px;}
.xc8_c00383{left:537.000000px;}
.x68_c00383{left:538.500000px;}
.xf8_c00383{left:541.500000px;}
.x106_c00383{left:544.920000px;}
.xb1_c00383{left:546.000000px;}
.x39_c00383{left:547.500000px;}
.x9b_c00383{left:549.420000px;}
.x102_c00383{left:555.000000px;}
.x3a_c00383{left:556.500000px;}
.xe7_c00383{left:558.420000px;}
.xc9_c00383{left:559.920000px;}
.xd1_c00383{left:561.000000px;}
.x10e_c00383{left:562.500000px;}
.x71_c00383{left:563.580000px;}
.xb9_c00383{left:568.080000px;}
.xd_c00383{left:570.420000px;}
.x107_c00383{left:571.500000px;}
.x8e_c00383{left:573.000000px;}
.x11a_c00383{left:574.500000px;}
.x9c_c00383{left:575.580000px;}
.x22_c00383{left:577.080000px;}
.xed_c00383{left:579.420000px;}
.x69_c00383{left:580.500000px;}
.xe2_c00383{left:583.500000px;}
.xa4_c00383{left:586.920000px;}
.xca_c00383{left:588.420000px;}
.xf2_c00383{left:589.500000px;}
.x3b_c00383{left:591.000000px;}
.x54_c00383{left:593.580000px;}
.x60_c00383{left:595.500000px;}
.xe_c00383{left:597.000000px;}
.x72_c00383{left:598.080000px;}
.xf9_c00383{left:601.080000px;}
.x7b_c00383{left:604.080000px;}
.x108_c00383{left:608.580000px;}
.xba_c00383{left:610.500000px;}
.x44_c00383{left:613.080000px;}
.x85_c00383{left:615.000000px;}
.x23_c00383{left:617.580000px;}
.x3c_c00383{left:619.920000px;}
.xb2_c00383{left:624.000000px;}
.x93_c00383{left:625.500000px;}
.xbb_c00383{left:627.000000px;}
.x109_c00383{left:628.920000px;}
.xd2_c00383{left:633.000000px;}
.xf_c00383{left:634.080000px;}
.x10f_c00383{left:638.580000px;}
.x103_c00383{left:640.920000px;}
.x86_c00383{left:642.000000px;}
.x55_c00383{left:643.500000px;}
.xbe_c00383{left:645.000000px;}
.xe8_c00383{left:647.580000px;}
.x11b_c00383{left:649.500000px;}
.x10_c00383{left:651.000000px;}
.xaa_c00383{left:652.080000px;}
.x61_c00383{left:654.000000px;}
.x45_c00383{left:655.080000px;}
.x73_c00383{left:656.580000px;}
.xfd_c00383{left:658.080000px;}
.x3d_c00383{left:661.500000px;}
.x9d_c00383{left:664.500000px;}
.x24_c00383{left:666.000000px;}
.x6a_c00383{left:668.580000px;}
.xab_c00383{left:670.920000px;}
.x7c_c00383{left:672.420000px;}
.x111_c00383{left:675.000000px;}
.xfe_c00383{left:676.920000px;}
.xf3_c00383{left:679.500000px;}
.xb3_c00383{left:681.000000px;}
.xeb_c00383{left:683.580000px;}
.x74_c00383{left:687.000000px;}
.xcb_c00383{left:688.080000px;}
.xbc_c00383{left:690.000000px;}
.x112_c00383{left:691.080000px;}
.xb4_c00383{left:692.580000px;}
.x94_c00383{left:694.500000px;}
.xac_c00383{left:696.000000px;}
.x7d_c00383{left:697.080000px;}
.xda_c00383{left:700.920000px;}
.xff_c00383{left:703.080000px;}
.x8f_c00383{left:705.000000px;}
.xbf_c00383{left:708.420000px;}
.xc6_c00383{left:709.500000px;}
.x56_c00383{left:715.080000px;}
.xf4_c00383{left:717.000000px;}
.x104_c00383{left:720.000000px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.ls0_c00383{letter-spacing:0.000000pt;}
.ws1_c00383{word-spacing:-6.390322pt;}
.ws2_c00383{word-spacing:0.000000pt;}
.ws0_c00383{word-spacing:2.840533pt;}
.fs7_c00383{font-size:3.040000pt;}
.fs4_c00383{font-size:12.106667pt;}
.fs5_c00383{font-size:16.640000pt;}
.fs1_c00383{font-size:18.133333pt;}
.fs2_c00383{font-size:22.666667pt;}
.fs0_c00383{font-size:25.706667pt;}
.fs3_c00383{font-size:28.746667pt;}
.fs6_c00383{font-size:31.733333pt;}
.fs8_c00383{font-size:34.773333pt;}
.y0_c00383{bottom:0.000000pt;}
.yfa_c00383{bottom:225.106667pt;}
.yfe_c00383{bottom:225.493333pt;}
.yfd_c00383{bottom:226.440000pt;}
.yf9_c00383{bottom:227.026667pt;}
.yfb_c00383{bottom:227.226667pt;}
.yfc_c00383{bottom:228.360000pt;}
.yf7_c00383{bottom:243.400000pt;}
.yf8_c00383{bottom:243.773333pt;}
.yf5_c00383{bottom:244.360000pt;}
.yf6_c00383{bottom:245.693333pt;}
.yf0_c00383{bottom:259.773333pt;}
.yef_c00383{bottom:260.560000pt;}
.yf3_c00383{bottom:261.106667pt;}
.yf1_c00383{bottom:261.893333pt;}
.yf2_c00383{bottom:262.640000pt;}
.yf4_c00383{bottom:263.026667pt;}
.yec_c00383{bottom:278.440000pt;}
.yea_c00383{bottom:279.026667pt;}
.ye9_c00383{bottom:279.226667pt;}
.yed_c00383{bottom:279.400000pt;}
.yeb_c00383{bottom:279.973333pt;}
.yee_c00383{bottom:280.360000pt;}
.ye5_c00383{bottom:293.693333pt;}
.ye8_c00383{bottom:294.826667pt;}
.ye6_c00383{bottom:295.773333pt;}
.ye7_c00383{bottom:296.560000pt;}
.ye3_c00383{bottom:296.733333pt;}
.ye4_c00383{bottom:297.693333pt;}
.yde_c00383{bottom:313.106667pt;}
.ye2_c00383{bottom:314.066667pt;}
.ye0_c00383{bottom:314.440000pt;}
.ydf_c00383{bottom:315.026667pt;}
.ye1_c00383{bottom:316.360000pt;}
.yd7_c00383{bottom:330.066667pt;}
.ydd_c00383{bottom:330.440000pt;}
.ydb_c00383{bottom:331.400000pt;}
.yda_c00383{bottom:331.773333pt;}
.yd6_c00383{bottom:332.360000pt;}
.ydc_c00383{bottom:333.306667pt;}
.yd8_c00383{bottom:333.693333pt;}
.yd9_c00383{bottom:334.640000pt;}
.yd5_c00383{bottom:347.773333pt;}
.yd1_c00383{bottom:348.733333pt;}
.yd2_c00383{bottom:349.693333pt;}
.yd4_c00383{bottom:350.640000pt;}
.yd3_c00383{bottom:351.026667pt;}
.yd0_c00383{bottom:364.360000pt;}
.yce_c00383{bottom:366.440000pt;}
.ycb_c00383{bottom:367.026667pt;}
.ycf_c00383{bottom:367.226667pt;}
.ycd_c00383{bottom:367.973333pt;}
.ycc_c00383{bottom:368.360000pt;}
.yc9_c00383{bottom:383.773333pt;}
.yc8_c00383{bottom:384.560000pt;}
.yca_c00383{bottom:384.733333pt;}
.yc7_c00383{bottom:385.693333pt;}
.yc6_c00383{bottom:400.733333pt;}
.yc4_c00383{bottom:401.893333pt;}
.yc3_c00383{bottom:403.026667pt;}
.yc5_c00383{bottom:403.973333pt;}
.ybf_c00383{bottom:418.440000pt;}
.yc1_c00383{bottom:419.773333pt;}
.yc0_c00383{bottom:420.360000pt;}
.yc2_c00383{bottom:421.693333pt;}
.ybe_c00383{bottom:435.773333pt;}
.ybc_c00383{bottom:437.106667pt;}
.yba_c00383{bottom:437.693333pt;}
.ybb_c00383{bottom:437.893333pt;}
.ybd_c00383{bottom:439.026667pt;}
.yb5_c00383{bottom:453.106667pt;}
.yb8_c00383{bottom:454.440000pt;}
.yb9_c00383{bottom:455.026667pt;}
.yb6_c00383{bottom:456.360000pt;}
.yb7_c00383{bottom:457.306667pt;}
.yaf_c00383{bottom:470.440000pt;}
.yb0_c00383{bottom:471.400000pt;}
.yb2_c00383{bottom:471.773333pt;}
.yb4_c00383{bottom:472.360000pt;}
.yb3_c00383{bottom:472.560000pt;}
.yb1_c00383{bottom:473.306667pt;}
.yae_c00383{bottom:473.693333pt;}
.yac_c00383{bottom:487.773333pt;}
.yad_c00383{bottom:489.106667pt;}
.yab_c00383{bottom:491.026667pt;}
.ya9_c00383{bottom:504.360000pt;}
.yaa_c00383{bottom:506.066667pt;}
.ya7_c00383{bottom:506.440000pt;}
.ya8_c00383{bottom:507.226667pt;}
.ya3_c00383{bottom:507.400000pt;}
.ya5_c00383{bottom:507.973333pt;}
.ya6_c00383{bottom:508.360000pt;}
.ya4_c00383{bottom:509.306667pt;}
.ya1_c00383{bottom:522.640000pt;}
.ya2_c00383{bottom:523.400000pt;}
.ya0_c00383{bottom:523.773333pt;}
.y9d_c00383{bottom:524.560000pt;}
.y9f_c00383{bottom:525.693333pt;}
.y9e_c00383{bottom:526.640000pt;}
.y98_c00383{bottom:540.733333pt;}
.y9b_c00383{bottom:541.106667pt;}
.y99_c00383{bottom:541.893333pt;}
.y9a_c00383{bottom:543.026667pt;}
.y9c_c00383{bottom:543.226667pt;}
.y96_c00383{bottom:557.693333pt;}
.y91_c00383{bottom:558.440000pt;}
.y97_c00383{bottom:559.400000pt;}
.y95_c00383{bottom:560.360000pt;}
.y94_c00383{bottom:560.560000pt;}
.y92_c00383{bottom:560.733333pt;}
.y93_c00383{bottom:561.693333pt;}
.y8b_c00383{bottom:577.106667pt;}
.y90_c00383{bottom:577.693333pt;}
.y8f_c00383{bottom:577.893333pt;}
.y8d_c00383{bottom:578.066667pt;}
.y8e_c00383{bottom:578.640000pt;}
.y8c_c00383{bottom:579.026667pt;}
.y8a_c00383{bottom:594.440000pt;}
.y87_c00383{bottom:595.026667pt;}
.y89_c00383{bottom:595.226667pt;}
.y88_c00383{bottom:596.360000pt;}
.y86_c00383{bottom:610.640000pt;}
.y85_c00383{bottom:611.773333pt;}
.y82_c00383{bottom:612.560000pt;}
.y84_c00383{bottom:612.733333pt;}
.y83_c00383{bottom:613.693333pt;}
.y81_c00383{bottom:628.933333pt;}
.y7f_c00383{bottom:629.106667pt;}
.y80_c00383{bottom:629.893333pt;}
.y7e_c00383{bottom:630.066667pt;}
.y7d_c00383{bottom:631.026667pt;}
.y7c_c00383{bottom:646.066667pt;}
.y79_c00383{bottom:646.440000pt;}
.y7a_c00383{bottom:647.226667pt;}
.y78_c00383{bottom:647.973333pt;}
.y77_c00383{bottom:648.360000pt;}
.y7b_c00383{bottom:649.306667pt;}
.y76_c00383{bottom:662.640000pt;}
.y74_c00383{bottom:663.773333pt;}
.y75_c00383{bottom:664.560000pt;}
.y73_c00383{bottom:665.693333pt;}
.y71_c00383{bottom:681.106667pt;}
.y6f_c00383{bottom:682.066667pt;}
.y6e_c00383{bottom:683.026667pt;}
.y72_c00383{bottom:683.226667pt;}
.y70_c00383{bottom:684.360000pt;}
.y6a_c00383{bottom:699.773333pt;}
.y6c_c00383{bottom:700.360000pt;}
.y6b_c00383{bottom:700.560000pt;}
.y6d_c00383{bottom:701.306667pt;}
.y69_c00383{bottom:701.693333pt;}
.y63_c00383{bottom:715.773333pt;}
.y65_c00383{bottom:715.973333pt;}
.y67_c00383{bottom:717.106667pt;}
.y68_c00383{bottom:717.693333pt;}
.y66_c00383{bottom:717.893333pt;}
.y64_c00383{bottom:718.640000pt;}
.y61_c00383{bottom:733.106667pt;}
.y62_c00383{bottom:734.066667pt;}
.y5d_c00383{bottom:734.440000pt;}
.y60_c00383{bottom:735.026667pt;}
.y5e_c00383{bottom:735.226667pt;}
.y5c_c00383{bottom:735.973333pt;}
.y5f_c00383{bottom:736.360000pt;}
.y5b_c00383{bottom:749.693333pt;}
.y5a_c00383{bottom:750.826667pt;}
.y56_c00383{bottom:751.773333pt;}
.y59_c00383{bottom:752.560000pt;}
.y58_c00383{bottom:753.693333pt;}
.y57_c00383{bottom:753.706667pt;}
.y54_c00383{bottom:774.640000pt;}
.y50_c00383{bottom:775.400000pt;}
.y51_c00383{bottom:776.360000pt;}
.y53_c00383{bottom:777.306667pt;}
.y52_c00383{bottom:777.506667pt;}
.y55_c00383{bottom:778.266667pt;}
.y4f_c00383{bottom:788.360000pt;}
.y4e_c00383{bottom:789.306667pt;}
.y4b_c00383{bottom:789.693333pt;}
.y49_c00383{bottom:789.893333pt;}
.y4a_c00383{bottom:790.266667pt;}
.y4d_c00383{bottom:790.640000pt;}
.y4c_c00383{bottom:791.600000pt;}
.y48_c00383{bottom:801.693333pt;}
.y47_c00383{bottom:802.066667pt;}
.y44_c00383{bottom:802.640000pt;}
.y45_c00383{bottom:802.840000pt;}
.y46_c00383{bottom:803.600000pt;}
.y43_c00383{bottom:814.066667pt;}
.y41_c00383{bottom:815.026667pt;}
.y42_c00383{bottom:815.973333pt;}
.y3d_c00383{bottom:816.173333pt;}
.y3f_c00383{bottom:816.360000pt;}
.y40_c00383{bottom:816.933333pt;}
.y3e_c00383{bottom:817.306667pt;}
.y3c_c00383{bottom:827.400000pt;}
.y39_c00383{bottom:828.360000pt;}
.y37_c00383{bottom:828.733333pt;}
.y38_c00383{bottom:829.306667pt;}
.y3a_c00383{bottom:829.893333pt;}
.y3b_c00383{bottom:830.266667pt;}
.y36_c00383{bottom:840.733333pt;}
.y33_c00383{bottom:841.693333pt;}
.y32_c00383{bottom:841.893333pt;}
.y35_c00383{bottom:842.640000pt;}
.y34_c00383{bottom:843.600000pt;}
.y2e_c00383{bottom:854.266667pt;}
.y31_c00383{bottom:855.026667pt;}
.y2f_c00383{bottom:855.226667pt;}
.y2d_c00383{bottom:855.973333pt;}
.y30_c00383{bottom:856.933333pt;}
.y2c_c00383{bottom:867.026667pt;}
.y28_c00383{bottom:867.600000pt;}
.y2b_c00383{bottom:868.360000pt;}
.y2a_c00383{bottom:869.506667pt;}
.y29_c00383{bottom:870.266667pt;}
.y27_c00383{bottom:879.400000pt;}
.y26_c00383{bottom:880.360000pt;}
.y22_c00383{bottom:880.933333pt;}
.y24_c00383{bottom:881.306667pt;}
.y20_c00383{bottom:881.693333pt;}
.y1f_c00383{bottom:882.266667pt;}
.y23_c00383{bottom:882.640000pt;}
.y25_c00383{bottom:882.840000pt;}
.y21_c00383{bottom:883.600000pt;}
.y1d_c00383{bottom:892.733333pt;}
.y17_c00383{bottom:893.306667pt;}
.y1e_c00383{bottom:893.693333pt;}
.y19_c00383{bottom:894.266667pt;}
.y1a_c00383{bottom:895.026667pt;}
.y1c_c00383{bottom:895.600000pt;}
.y18_c00383{bottom:895.973333pt;}
.y1b_c00383{bottom:896.173333pt;}
.y14_c00383{bottom:905.306667pt;}
.y15_c00383{bottom:906.066667pt;}
.y16_c00383{bottom:907.026667pt;}
.y12_c00383{bottom:907.973333pt;}
.y13_c00383{bottom:908.933333pt;}
.y11_c00383{bottom:920.360000pt;}
.y10_c00383{bottom:920.560000pt;}
.yf_c00383{bottom:921.306667pt;}
.ye_c00383{bottom:922.266667pt;}
.yd_c00383{bottom:932.733333pt;}
.ya_c00383{bottom:933.693333pt;}
.y9_c00383{bottom:934.640000pt;}
.yc_c00383{bottom:934.840000pt;}
.yb_c00383{bottom:935.600000pt;}
.y8_c00383{bottom:946.066667pt;}
.y3_c00383{bottom:946.266667pt;}
.y6_c00383{bottom:947.026667pt;}
.y7_c00383{bottom:947.600000pt;}
.y4_c00383{bottom:947.973333pt;}
.y5_c00383{bottom:948.933333pt;}
.y1_c00383{bottom:977.693333pt;}
.y2_c00383{bottom:979.600000pt;}
.h8_c00383{height:3.739141pt;}
.h5_c00383{height:14.890964pt;}
.h6_c00383{height:20.466875pt;}
.h2_c00383{height:22.303646pt;}
.h3_c00383{height:27.879557pt;}
.h1_c00383{height:31.618698pt;}
.h4_c00383{height:35.357839pt;}
.h7_c00383{height:39.031380pt;}
.h9_c00383{height:42.770521pt;}
.h0_c00383{height:1186.666667pt;}
.w0_c00383{width:782.666667pt;}
.x0_c00383{left:0.000000pt;}
.x1_c00383{left:134.293333pt;}
.x11_c00383{left:135.626667pt;}
.x90_c00383{left:136.960000pt;}
.x3_c00383{left:148.373333pt;}
.x4c_c00383{left:149.706667pt;}
.xad_c00383{left:150.666667pt;}
.x110_c00383{left:152.373333pt;}
.x9e_c00383{left:153.706667pt;}
.x7e_c00383{left:160.000000pt;}
.x95_c00383{left:161.333333pt;}
.xfa_c00383{left:162.666667pt;}
.x4_c00383{left:164.000000pt;}
.xf5_c00383{left:166.666667pt;}
.x4d_c00383{left:170.666667pt;}
.x12_c00383{left:171.626667pt;}
.x10a_c00383{left:176.000000pt;}
.xc0_c00383{left:178.293333pt;}
.x9f_c00383{left:180.000000pt;}
.xfb_c00383{left:182.293333pt;}
.x25_c00383{left:185.333333pt;}
.x62_c00383{left:186.666667pt;}
.x91_c00383{left:188.373333pt;}
.x10b_c00383{left:190.666667pt;}
.xd3_c00383{left:192.000000pt;}
.x87_c00383{left:193.333333pt;}
.xc1_c00383{left:195.040000pt;}
.x46_c00383{left:196.000000pt;}
.x6b_c00383{left:196.960000pt;}
.x96_c00383{left:198.666667pt;}
.x113_c00383{left:200.000000pt;}
.xf6_c00383{left:201.333333pt;}
.x5_c00383{left:203.040000pt;}
.x18_c00383{left:204.000000pt;}
.x57_c00383{left:204.960000pt;}
.x7f_c00383{left:207.040000pt;}
.xd4_c00383{left:209.706667pt;}
.xa0_c00383{left:210.666667pt;}
.xa5_c00383{left:213.706667pt;}
.x13_c00383{left:214.666667pt;}
.x31_c00383{left:216.373333pt;}
.x6_c00383{left:217.333333pt;}
.xc2_c00383{left:218.666667pt;}
.x19_c00383{left:220.000000pt;}
.x64_c00383{left:221.333333pt;}
.xe3_c00383{left:223.040000pt;}
.x114_c00383{left:224.000000pt;}
.x63_c00383{left:226.293333pt;}
.x75_c00383{left:228.000000pt;}
.xc7_c00383{left:229.333333pt;}
.x47_c00383{left:230.293333pt;}
.x2b_c00383{left:232.373333pt;}
.xd5_c00383{left:233.333333pt;}
.x105_c00383{left:234.293333pt;}
.xee_c00383{left:236.373333pt;}
.x3e_c00383{left:237.333333pt;}
.x26_c00383{left:239.626667pt;}
.xa6_c00383{left:241.706667pt;}
.x76_c00383{left:245.333333pt;}
.xcc_c00383{left:246.293333pt;}
.x4e_c00383{left:248.373333pt;}
.xa1_c00383{left:249.333333pt;}
.x32_c00383{left:251.040000pt;}
.x5c_c00383{left:252.960000pt;}
.x48_c00383{left:255.040000pt;}
.xc3_c00383{left:256.000000pt;}
.x88_c00383{left:257.333333pt;}
.x6c_c00383{left:258.666667pt;}
.xef_c00383{left:260.000000pt;}
.x117_c00383{left:260.960000pt;}
.x2c_c00383{left:262.666667pt;}
.x14_c00383{left:263.626667pt;}
.x77_c00383{left:265.333333pt;}
.x33_c00383{left:266.293333pt;}
.xdb_c00383{left:269.333333pt;}
.xae_c00383{left:270.666667pt;}
.x4f_c00383{left:272.960000pt;}
.xcd_c00383{left:274.666667pt;}
.x7_c00383{left:275.626667pt;}
.x89_c00383{left:279.626667pt;}
.xde_c00383{left:280.960000pt;}
.x80_c00383{left:283.626667pt;}
.x49_c00383{left:285.333333pt;}
.x1a_c00383{left:287.040000pt;}
.x34_c00383{left:288.000000pt;}
.x6d_c00383{left:288.960000pt;}
.x97_c00383{left:290.293333pt;}
.x5d_c00383{left:292.000000pt;}
.xc4_c00383{left:293.333333pt;}
.xce_c00383{left:295.040000pt;}
.x27_c00383{left:296.000000pt;}
.x10c_c00383{left:297.706667pt;}
.x65_c00383{left:299.040000pt;}
.x115_c00383{left:300.373333pt;}
.x81_c00383{left:303.040000pt;}
.xf0_c00383{left:304.000000pt;}
.x50_c00383{left:304.960000pt;}
.xa2_c00383{left:307.626667pt;}
.x58_c00383{left:310.293333pt;}
.xa7_c00383{left:311.626667pt;}
.x8_c00383{left:312.960000pt;}
.x15_c00383{left:314.293333pt;}
.x5e_c00383{left:316.000000pt;}
.x98_c00383{left:316.960000pt;}
.x2d_c00383{left:318.293333pt;}
.xcf_c00383{left:320.373333pt;}
.x51_c00383{left:321.333333pt;}
.x35_c00383{left:323.040000pt;}
.x16_c00383{left:324.000000pt;}
.x100_c00383{left:325.333333pt;}
.x1b_c00383{left:327.040000pt;}
.x28_c00383{left:328.373333pt;}
.xe4_c00383{left:329.333333pt;}
.x118_c00383{left:330.666667pt;}
.x3f_c00383{left:332.960000pt;}
.xdf_c00383{left:334.666667pt;}
.x36_c00383{left:336.000000pt;}
.xb5_c00383{left:337.333333pt;}
.xd6_c00383{left:338.293333pt;}
.xa3_c00383{left:339.626667pt;}
.xe9_c00383{left:341.706667pt;}
.x10d_c00383{left:343.040000pt;}
.x66_c00383{left:347.040000pt;}
.x2_c00383{left:348.000000pt;}
.xe0_c00383{left:349.333333pt;}
.xdc_c00383{left:350.293333pt;}
.x8a_c00383{left:352.000000pt;}
.x119_c00383{left:353.333333pt;}
.x9_c00383{left:354.293333pt;}
.xf1_c00383{left:356.000000pt;}
.x29_c00383{left:356.960000pt;}
.x59_c00383{left:360.373333pt;}
.x1c_c00383{left:361.706667pt;}
.x8b_c00383{left:362.666667pt;}
.x40_c00383{left:364.000000pt;}
.xd7_c00383{left:364.960000pt;}
.xea_c00383{left:366.666667pt;}
.xa_c00383{left:368.000000pt;}
.x2e_c00383{left:369.333333pt;}
.x78_c00383{left:371.040000pt;}
.xe5_c00383{left:372.000000pt;}
.x5f_c00383{left:372.960000pt;}
.x4a_c00383{left:374.666667pt;}
.x1d_c00383{left:376.960000pt;}
.x17_c00383{left:378.293333pt;}
.x99_c00383{left:380.000000pt;}
.x6e_c00383{left:380.960000pt;}
.x2a_c00383{left:382.293333pt;}
.x82_c00383{left:388.373333pt;}
.x8c_c00383{left:390.666667pt;}
.xe1_c00383{left:392.000000pt;}
.xe6_c00383{left:393.706667pt;}
.xb6_c00383{left:394.666667pt;}
.x116_c00383{left:396.000000pt;}
.x1e_c00383{left:397.706667pt;}
.x5a_c00383{left:399.626667pt;}
.xd9_c00383{left:401.333333pt;}
.x4b_c00383{left:402.293333pt;}
.xf7_c00383{left:404.000000pt;}
.x92_c00383{left:404.960000pt;}
.x37_c00383{left:406.666667pt;}
.xdd_c00383{left:408.000000pt;}
.x2f_c00383{left:408.960000pt;}
.xb7_c00383{left:410.666667pt;}
.x101_c00383{left:412.960000pt;}
.x52_c00383{left:415.626667pt;}
.x8d_c00383{left:416.960000pt;}
.x41_c00383{left:418.666667pt;}
.x1f_c00383{left:420.000000pt;}
.x83_c00383{left:423.040000pt;}
.x5b_c00383{left:424.000000pt;}
.xaf_c00383{left:426.666667pt;}
.xa8_c00383{left:428.000000pt;}
.xd8_c00383{left:429.333333pt;}
.xb_c00383{left:430.666667pt;}
.x67_c00383{left:432.000000pt;}
.x30_c00383{left:434.293333pt;}
.x38_c00383{left:436.000000pt;}
.x79_c00383{left:438.666667pt;}
.x6f_c00383{left:444.000000pt;}
.xb8_c00383{left:445.706667pt;}
.x84_c00383{left:446.666667pt;}
.x20_c00383{left:448.373333pt;}
.xec_c00383{left:452.000000pt;}
.x42_c00383{left:455.040000pt;}
.x70_c00383{left:456.000000pt;}
.xd0_c00383{left:458.666667pt;}
.xfc_c00383{left:459.626667pt;}
.xb0_c00383{left:461.333333pt;}
.x21_c00383{left:462.666667pt;}
.xc5_c00383{left:464.000000pt;}
.x53_c00383{left:465.333333pt;}
.x9a_c00383{left:466.666667pt;}
.xc_c00383{left:467.626667pt;}
.xa9_c00383{left:470.293333pt;}
.x43_c00383{left:471.626667pt;}
.xbd_c00383{left:474.666667pt;}
.x7a_c00383{left:476.000000pt;}
.xc8_c00383{left:477.333333pt;}
.x68_c00383{left:478.666667pt;}
.xf8_c00383{left:481.333333pt;}
.x106_c00383{left:484.373333pt;}
.xb1_c00383{left:485.333333pt;}
.x39_c00383{left:486.666667pt;}
.x9b_c00383{left:488.373333pt;}
.x102_c00383{left:493.333333pt;}
.x3a_c00383{left:494.666667pt;}
.xe7_c00383{left:496.373333pt;}
.xc9_c00383{left:497.706667pt;}
.xd1_c00383{left:498.666667pt;}
.x10e_c00383{left:500.000000pt;}
.x71_c00383{left:500.960000pt;}
.xb9_c00383{left:504.960000pt;}
.xd_c00383{left:507.040000pt;}
.x107_c00383{left:508.000000pt;}
.x8e_c00383{left:509.333333pt;}
.x11a_c00383{left:510.666667pt;}
.x9c_c00383{left:511.626667pt;}
.x22_c00383{left:512.960000pt;}
.xed_c00383{left:515.040000pt;}
.x69_c00383{left:516.000000pt;}
.xe2_c00383{left:518.666667pt;}
.xa4_c00383{left:521.706667pt;}
.xca_c00383{left:523.040000pt;}
.xf2_c00383{left:524.000000pt;}
.x3b_c00383{left:525.333333pt;}
.x54_c00383{left:527.626667pt;}
.x60_c00383{left:529.333333pt;}
.xe_c00383{left:530.666667pt;}
.x72_c00383{left:531.626667pt;}
.xf9_c00383{left:534.293333pt;}
.x7b_c00383{left:536.960000pt;}
.x108_c00383{left:540.960000pt;}
.xba_c00383{left:542.666667pt;}
.x44_c00383{left:544.960000pt;}
.x85_c00383{left:546.666667pt;}
.x23_c00383{left:548.960000pt;}
.x3c_c00383{left:551.040000pt;}
.xb2_c00383{left:554.666667pt;}
.x93_c00383{left:556.000000pt;}
.xbb_c00383{left:557.333333pt;}
.x109_c00383{left:559.040000pt;}
.xd2_c00383{left:562.666667pt;}
.xf_c00383{left:563.626667pt;}
.x10f_c00383{left:567.626667pt;}
.x103_c00383{left:569.706667pt;}
.x86_c00383{left:570.666667pt;}
.x55_c00383{left:572.000000pt;}
.xbe_c00383{left:573.333333pt;}
.xe8_c00383{left:575.626667pt;}
.x11b_c00383{left:577.333333pt;}
.x10_c00383{left:578.666667pt;}
.xaa_c00383{left:579.626667pt;}
.x61_c00383{left:581.333333pt;}
.x45_c00383{left:582.293333pt;}
.x73_c00383{left:583.626667pt;}
.xfd_c00383{left:584.960000pt;}
.x3d_c00383{left:588.000000pt;}
.x9d_c00383{left:590.666667pt;}
.x24_c00383{left:592.000000pt;}
.x6a_c00383{left:594.293333pt;}
.xab_c00383{left:596.373333pt;}
.x7c_c00383{left:597.706667pt;}
.x111_c00383{left:600.000000pt;}
.xfe_c00383{left:601.706667pt;}
.xf3_c00383{left:604.000000pt;}
.xb3_c00383{left:605.333333pt;}
.xeb_c00383{left:607.626667pt;}
.x74_c00383{left:610.666667pt;}
.xcb_c00383{left:611.626667pt;}
.xbc_c00383{left:613.333333pt;}
.x112_c00383{left:614.293333pt;}
.xb4_c00383{left:615.626667pt;}
.x94_c00383{left:617.333333pt;}
.xac_c00383{left:618.666667pt;}
.x7d_c00383{left:619.626667pt;}
.xda_c00383{left:623.040000pt;}
.xff_c00383{left:624.960000pt;}
.x8f_c00383{left:626.666667pt;}
.xbf_c00383{left:629.706667pt;}
.xc6_c00383{left:630.666667pt;}
.x56_c00383{left:635.626667pt;}
.xf4_c00383{left:637.333333pt;}
.x104_c00383{left:640.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_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_e0f045e6c86599e29a2b1537.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mef_c00384{transform:matrix(0.204357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204357,0.000000,0.000000,0.250000,0,0);}
.mee_c00384{transform:matrix(0.281120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281120,0.000000,0.000000,0.250000,0,0);}
.m10_c00384{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);}
.m7a_c00384{transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);}
.m3b_c00384{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.m7b_c00384{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m90_c00384{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m7_c00384{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m54_c00384{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m6d_c00384{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m72_c00384{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mf0_c00384{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m28_c00384{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m80_c00384{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.m99_c00384{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m27_c00384{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m1f_c00384{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.mb7_c00384{transform:matrix(0.385736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385736,0.000000,0.000000,0.250000,0,0);}
.m26_c00384{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m66_c00384{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.mf4_c00384{transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);}
.m6c_c00384{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mb0_c00384{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.ma9_c00384{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.ma0_c00384{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m81_c00384{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m4b_c00384{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m5b_c00384{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m8b_c00384{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m57_c00384{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m9a_c00384{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m22_c00384{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.mb4_c00384{transform:matrix(0.403374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403374,0.000000,0.000000,0.250000,0,0);}
.m87_c00384{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mb2_c00384{transform:matrix(0.404908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404908,0.000000,0.000000,0.250000,0,0);}
.mb6_c00384{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.m37_c00384{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m60_c00384{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m70_c00384{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.mc0_c00384{transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);}
.ma3_c00384{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m1c_c00384{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mf5_c00384{transform:matrix(0.409559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409559,0.000000,0.000000,0.250000,0,0);}
.m19_c00384{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m6f_c00384{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m79_c00384{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m3a_c00384{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m31_c00384{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m7e_c00384{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m1a_c00384{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m15_c00384{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mc1_c00384{transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);}
.m96_c00384{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m92_c00384{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mc8_c00384{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m39_c00384{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m76_c00384{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m48_c00384{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m2a_c00384{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m71_c00384{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m73_c00384{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m23_c00384{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m83_c00384{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m35_c00384{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m69_c00384{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.mbe_c00384{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.mad_c00384{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m3c_c00384{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.mcc_c00384{transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);}
.m2b_c00384{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m67_c00384{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.mb3_c00384{transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);}
.md3_c00384{transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);}
.mb9_c00384{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.maa_c00384{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m89_c00384{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.ma1_c00384{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.m8e_c00384{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.m75_c00384{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.mbf_c00384{transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);}
.m45_c00384{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.md8_c00384{transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);}
.m5f_c00384{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m40_c00384{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mce_c00384{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m9e_c00384{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.mec_c00384{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m32_c00384{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.md5_c00384{transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);}
.ma4_c00384{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m9b_c00384{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m98_c00384{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.m5e_c00384{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m43_c00384{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m61_c00384{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.meb_c00384{transform:matrix(0.482372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482372,0.000000,0.000000,0.250000,0,0);}
.mda_c00384{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m50_c00384{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m1_c00384{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m4d_c00384{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m52_c00384{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mf3_c00384{transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);}
.m34_c00384{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m6a_c00384{transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);}
.m16_c00384{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_c00384{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m94_c00384{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m2c_c00384{transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);}
.m2e_c00384{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m5a_c00384{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m91_c00384{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mc7_c00384{transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);}
.m5c_c00384{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m82_c00384{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m1d_c00384{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m3d_c00384{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.me_c00384{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m95_c00384{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.md6_c00384{transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);}
.m58_c00384{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mbc_c00384{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m13_c00384{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m36_c00384{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m55_c00384{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m7d_c00384{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m49_c00384{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m4e_c00384{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m51_c00384{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m93_c00384{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.ma2_c00384{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m8c_c00384{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m3_c00384{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m68_c00384{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m62_c00384{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.ma_c00384{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m33_c00384{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m6b_c00384{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m2_c00384{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m6_c00384{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m5d_c00384{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m53_c00384{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m3f_c00384{transform:matrix(0.539889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539889,0.000000,0.000000,0.250000,0,0);}
.m8f_c00384{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m29_c00384{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m1e_c00384{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mae_c00384{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m25_c00384{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m12_c00384{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.maf_c00384{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.me3_c00384{transform:matrix(0.547276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547276,0.000000,0.000000,0.250000,0,0);}
.m63_c00384{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mea_c00384{transform:matrix(0.548878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548878,0.000000,0.000000,0.250000,0,0);}
.mb1_c00384{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.md1_c00384{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m86_c00384{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mc6_c00384{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m78_c00384{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mba_c00384{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m1b_c00384{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m6e_c00384{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m30_c00384{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m38_c00384{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);}
.mf_c00384{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.me7_c00384{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m84_c00384{transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);}
.m88_c00384{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m18_c00384{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mc4_c00384{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m24_c00384{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m46_c00384{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m42_c00384{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.ma6_c00384{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m3e_c00384{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.md2_c00384{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.mac_c00384{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m65_c00384{transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);}
.m4_c00384{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m44_c00384{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mc_c00384{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m8a_c00384{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.me9_c00384{transform:matrix(0.602564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602564,0.000000,0.000000,0.250000,0,0);}
.mb8_c00384{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m4c_c00384{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m9c_c00384{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m7f_c00384{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.mcb_c00384{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m14_c00384{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mc9_c00384{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m9_c00384{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mbd_c00384{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.mbb_c00384{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m17_c00384{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.med_c00384{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m59_c00384{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);}
.mc3_c00384{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m0_c00384{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m2f_c00384{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.mb5_c00384{transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);}
.ma5_c00384{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m56_c00384{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.me8_c00384{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m47_c00384{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.mca_c00384{transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);}
.m97_c00384{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.md_c00384{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.md4_c00384{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.mc2_c00384{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m20_c00384{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mc5_c00384{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.md9_c00384{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.m64_c00384{transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);}
.me1_c00384{transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);}
.me0_c00384{transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683081,0.000000,0.000000,0.250000,0,0);}
.mcd_c00384{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mde_c00384{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.mdf_c00384{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.ma8_c00384{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.me2_c00384{transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);}
.me6_c00384{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.mb_c00384{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mab_c00384{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.mdc_c00384{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.ma7_c00384{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m5_c00384{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m85_c00384{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m11_c00384{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m77_c00384{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m9f_c00384{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.mdd_c00384{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.mdb_c00384{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m8d_c00384{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.me4_c00384{transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);}
.m74_c00384{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.me5_c00384{transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);}
.m8_c00384{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m2d_c00384{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m7c_c00384{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.md7_c00384{transform:matrix(0.770925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770925,0.000000,0.000000,0.250000,0,0);}
.md0_c00384{transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);}
.m4f_c00384{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m41_c00384{transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);}
.m21_c00384{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mf2_c00384{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mf1_c00384{transform:matrix(0.920354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.920354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.920354,0.000000,0.000000,0.250000,0,0);}
.mcf_c00384{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m4a_c00384{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00384{vertical-align:0.000000px;}
.v1_c00384{vertical-align:6.000000px;}
.ls1_c00384{letter-spacing:0.000000px;}
.ls0_c00384{letter-spacing:57.908049px;}
.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;}
}
.ws5_c00384{word-spacing:-65.862129px;}
.ws0_c00384{word-spacing:-4.175494px;}
.ws14_c00384{word-spacing:0.000000px;}
.ws2_c00384{word-spacing:1.062776px;}
.ws1_c00384{word-spacing:6.671057px;}
.ws7_c00384{word-spacing:12.682851px;}
.wsc_c00384{word-spacing:21.984887px;}
.wsb_c00384{word-spacing:24.192343px;}
.ws3_c00384{word-spacing:25.221888px;}
.wse_c00384{word-spacing:25.629635px;}
.ws12_c00384{word-spacing:26.399798px;}
.ws11_c00384{word-spacing:28.038235px;}
.ws4_c00384{word-spacing:30.121169px;}
.wsd_c00384{word-spacing:30.193299px;}
.wsa_c00384{word-spacing:34.613710px;}
.ws8_c00384{word-spacing:36.864950px;}
.ws10_c00384{word-spacing:45.572749px;}
.ws9_c00384{word-spacing:46.567836px;}
.ws13_c00384{word-spacing:49.633219px;}
.ws6_c00384{word-spacing:49.953969px;}
.wsf_c00384{word-spacing:57.018127px;}
._1_c00384{margin-left:-57.908049px;}
._2_c00384{width:15.851525px;}
._3_c00384{width:34.353878px;}
._0_c00384{width:35.625609px;}
._4_c00384{width:40.302442px;}
._5_c00384{width:63.798859px;}
.fc0_c00384{color:transparent;}
.fs6_c00384{font-size:3.420000px;}
.fsa_c00384{font-size:6.780000px;}
.fs9_c00384{font-size:11.880000px;}
.fs8_c00384{font-size:13.620000px;}
.fs4_c00384{font-size:18.720000px;}
.fs0_c00384{font-size:20.400000px;}
.fs2_c00384{font-size:25.500000px;}
.fs1_c00384{font-size:28.920000px;}
.fs5_c00384{font-size:32.340000px;}
.fs3_c00384{font-size:35.700000px;}
.fs7_c00384{font-size:39.120000px;}
.y0_c00384{bottom:0.000000px;}
.y83_c00384{bottom:253.680000px;}
.y84_c00384{bottom:254.325000px;}
.y85_c00384{bottom:254.550000px;}
.y86_c00384{bottom:255.825000px;}
.y82_c00384{bottom:256.905000px;}
.y81_c00384{bottom:274.245000px;}
.y80_c00384{bottom:276.405000px;}
.y7b_c00384{bottom:293.745000px;}
.y7f_c00384{bottom:294.825000px;}
.y7d_c00384{bottom:295.905000px;}
.y7c_c00384{bottom:296.130000px;}
.y7e_c00384{bottom:296.970000px;}
.y78_c00384{bottom:312.825000px;}
.y77_c00384{bottom:313.245000px;}
.y79_c00384{bottom:315.405000px;}
.y76_c00384{bottom:315.630000px;}
.y7a_c00384{bottom:316.470000px;}
.y75_c00384{bottom:331.905000px;}
.y72_c00384{bottom:333.825000px;}
.y6f_c00384{bottom:334.245000px;}
.y70_c00384{bottom:334.905000px;}
.y73_c00384{bottom:335.130000px;}
.y74_c00384{bottom:335.970000px;}
.y71_c00384{bottom:336.405000px;}
.y6c_c00384{bottom:353.745000px;}
.y6d_c00384{bottom:354.630000px;}
.y6e_c00384{bottom:354.825000px;}
.y6b_c00384{bottom:355.905000px;}
.y6a_c00384{bottom:370.905000px;}
.y69_c00384{bottom:373.245000px;}
.y67_c00384{bottom:374.130000px;}
.y65_c00384{bottom:374.325000px;}
.y68_c00384{bottom:374.970000px;}
.y64_c00384{bottom:375.405000px;}
.y66_c00384{bottom:376.470000px;}
.y60_c00384{bottom:390.405000px;}
.y63_c00384{bottom:392.745000px;}
.y61_c00384{bottom:393.630000px;}
.y62_c00384{bottom:394.470000px;}
.y5f_c00384{bottom:394.905000px;}
.y5d_c00384{bottom:409.905000px;}
.y5e_c00384{bottom:412.245000px;}
.y5c_c00384{bottom:414.405000px;}
.y5a_c00384{bottom:431.745000px;}
.y5b_c00384{bottom:432.630000px;}
.y59_c00384{bottom:433.905000px;}
.y54_c00384{bottom:450.405000px;}
.y53_c00384{bottom:451.245000px;}
.y52_c00384{bottom:452.745000px;}
.y58_c00384{bottom:453.405000px;}
.y57_c00384{bottom:453.630000px;}
.y55_c00384{bottom:454.470000px;}
.y56_c00384{bottom:454.905000px;}
.y50_c00384{bottom:470.970000px;}
.y51_c00384{bottom:472.245000px;}
.y4f_c00384{bottom:473.130000px;}
.y4e_c00384{bottom:474.405000px;}
.y4b_c00384{bottom:491.745000px;}
.y4c_c00384{bottom:492.630000px;}
.y4d_c00384{bottom:493.905000px;}
.y47_c00384{bottom:511.245000px;}
.y48_c00384{bottom:512.130000px;}
.y4a_c00384{bottom:512.325000px;}
.y46_c00384{bottom:513.405000px;}
.y49_c00384{bottom:514.470000px;}
.y43_c00384{bottom:530.745000px;}
.y45_c00384{bottom:531.630000px;}
.y44_c00384{bottom:532.905000px;}
.y40_c00384{bottom:549.405000px;}
.y42_c00384{bottom:550.245000px;}
.y41_c00384{bottom:551.550000px;}
.y3e_c00384{bottom:552.405000px;}
.y3f_c00384{bottom:552.630000px;}
.y3b_c00384{bottom:568.905000px;}
.y39_c00384{bottom:569.325000px;}
.y3d_c00384{bottom:569.745000px;}
.y3c_c00384{bottom:570.825000px;}
.y37_c00384{bottom:571.905000px;}
.y3a_c00384{bottom:572.130000px;}
.y38_c00384{bottom:573.420000px;}
.y32_c00384{bottom:588.405000px;}
.y34_c00384{bottom:589.245000px;}
.y33_c00384{bottom:591.405000px;}
.y31_c00384{bottom:591.630000px;}
.y36_c00384{bottom:592.470000px;}
.y35_c00384{bottom:592.905000px;}
.y2a_c00384{bottom:607.905000px;}
.y2b_c00384{bottom:608.745000px;}
.y29_c00384{bottom:608.970000px;}
.y2c_c00384{bottom:610.470000px;}
.y2e_c00384{bottom:610.905000px;}
.y2f_c00384{bottom:611.970000px;}
.y30_c00384{bottom:612.405000px;}
.y2d_c00384{bottom:612.420000px;}
.y27_c00384{bottom:627.630000px;}
.y26_c00384{bottom:628.905000px;}
.y24_c00384{bottom:629.745000px;}
.y28_c00384{bottom:629.970000px;}
.y25_c00384{bottom:630.825000px;}
.y23_c00384{bottom:631.905000px;}
.y20_c00384{bottom:649.245000px;}
.y22_c00384{bottom:649.470000px;}
.y1e_c00384{bottom:650.325000px;}
.y21_c00384{bottom:651.405000px;}
.y1f_c00384{bottom:651.630000px;}
.y18_c00384{bottom:668.745000px;}
.y19_c00384{bottom:669.825000px;}
.y1d_c00384{bottom:670.245000px;}
.y1b_c00384{bottom:670.905000px;}
.y1a_c00384{bottom:671.130000px;}
.y1c_c00384{bottom:671.970000px;}
.y16_c00384{bottom:688.245000px;}
.y15_c00384{bottom:689.745000px;}
.y13_c00384{bottom:690.405000px;}
.y14_c00384{bottom:691.470000px;}
.y17_c00384{bottom:691.905000px;}
.y11_c00384{bottom:706.905000px;}
.yf_c00384{bottom:709.245000px;}
.y12_c00384{bottom:710.130000px;}
.y10_c00384{bottom:710.970000px;}
.ye_c00384{bottom:711.405000px;}
.yb_c00384{bottom:727.470000px;}
.y9_c00384{bottom:728.745000px;}
.ya_c00384{bottom:730.470000px;}
.yc_c00384{bottom:730.905000px;}
.yd_c00384{bottom:731.970000px;}
.y8_c00384{bottom:746.970000px;}
.y6_c00384{bottom:748.245000px;}
.y7_c00384{bottom:749.130000px;}
.y4_c00384{bottom:749.970000px;}
.y3_c00384{bottom:750.405000px;}
.y5_c00384{bottom:751.470000px;}
.yd1_c00384{bottom:773.550000px;}
.ycf_c00384{bottom:776.130000px;}
.yd0_c00384{bottom:777.195000px;}
.yd2_c00384{bottom:777.420000px;}
.yd3_c00384{bottom:777.630000px;}
.ycb_c00384{bottom:789.630000px;}
.ycc_c00384{bottom:790.695000px;}
.ycd_c00384{bottom:791.130000px;}
.yce_c00384{bottom:792.195000px;}
.yc5_c00384{bottom:803.130000px;}
.yc6_c00384{bottom:804.195000px;}
.yc7_c00384{bottom:804.405000px;}
.yc9_c00384{bottom:804.855000px;}
.yca_c00384{bottom:805.695000px;}
.yc8_c00384{bottom:805.920000px;}
.ybf_c00384{bottom:816.630000px;}
.yc0_c00384{bottom:817.695000px;}
.yc1_c00384{bottom:817.905000px;}
.yc4_c00384{bottom:819.195000px;}
.yc3_c00384{bottom:819.405000px;}
.yc2_c00384{bottom:819.420000px;}
.yba_c00384{bottom:830.130000px;}
.ybc_c00384{bottom:831.195000px;}
.ybb_c00384{bottom:831.630000px;}
.ybd_c00384{bottom:832.695000px;}
.ybe_c00384{bottom:834.195000px;}
.yb7_c00384{bottom:845.130000px;}
.yb8_c00384{bottom:846.195000px;}
.yb9_c00384{bottom:847.695000px;}
.yb5_c00384{bottom:859.695000px;}
.yb6_c00384{bottom:861.195000px;}
.yb4_c00384{bottom:871.695000px;}
.yb3_c00384{bottom:873.195000px;}
.yad_c00384{bottom:882.195000px;}
.yae_c00384{bottom:882.630000px;}
.yaf_c00384{bottom:883.275000px;}
.yb0_c00384{bottom:883.695000px;}
.yb1_c00384{bottom:884.130000px;}
.yb2_c00384{bottom:885.195000px;}
.yab_c00384{bottom:895.275000px;}
.yac_c00384{bottom:897.195000px;}
.ya8_c00384{bottom:906.195000px;}
.yaa_c00384{bottom:906.630000px;}
.ya9_c00384{bottom:907.695000px;}
.ya5_c00384{bottom:918.630000px;}
.ya6_c00384{bottom:919.695000px;}
.ya7_c00384{bottom:921.195000px;}
.ya3_c00384{bottom:932.130000px;}
.ya4_c00384{bottom:933.195000px;}
.ya2_c00384{bottom:947.130000px;}
.ya1_c00384{bottom:948.195000px;}
.y9e_c00384{bottom:960.630000px;}
.y9f_c00384{bottom:961.695000px;}
.ya0_c00384{bottom:963.195000px;}
.y9b_c00384{bottom:974.130000px;}
.y9a_c00384{bottom:975.195000px;}
.y9c_c00384{bottom:975.630000px;}
.y9d_c00384{bottom:976.695000px;}
.y95_c00384{bottom:993.195000px;}
.y96_c00384{bottom:994.695000px;}
.y97_c00384{bottom:995.130000px;}
.y98_c00384{bottom:996.195000px;}
.y99_c00384{bottom:996.420000px;}
.y91_c00384{bottom:1004.130000px;}
.y92_c00384{bottom:1006.695000px;}
.y94_c00384{bottom:1007.130000px;}
.y93_c00384{bottom:1008.195000px;}
.y90_c00384{bottom:1030.470000px;}
.y8c_c00384{bottom:1042.905000px;}
.y8e_c00384{bottom:1043.325000px;}
.y89_c00384{bottom:1043.970000px;}
.y8d_c00384{bottom:1044.405000px;}
.y8a_c00384{bottom:1045.050000px;}
.y8b_c00384{bottom:1045.470000px;}
.y8f_c00384{bottom:1046.550000px;}
.y88_c00384{bottom:1065.405000px;}
.y87_c00384{bottom:1067.550000px;}
.y2_c00384{bottom:1099.905000px;}
.y1_c00384{bottom:1102.050000px;}
.h8_c00384{height:4.206533px;}
.hd_c00384{height:8.339268px;}
.hc_c00384{height:14.612168px;}
.ha_c00384{height:16.752334px;}
.hb_c00384{height:22.752334px;}
.h5_c00384{height:23.025234px;}
.h1_c00384{height:25.091602px;}
.h3_c00384{height:31.364502px;}
.h2_c00384{height:35.571035px;}
.h6_c00384{height:39.777568px;}
.h4_c00384{height:43.910303px;}
.h9_c00384{height:48.116836px;}
.h7_c00384{height:49.910303px;}
.h0_c00384{height:1335.000000px;}
.w0_c00384{width:880.500000px;}
.x0_c00384{left:0.000000px;}
.x13_c00384{left:151.500000px;}
.x77_c00384{left:153.420000px;}
.xd5_c00384{left:154.920000px;}
.xdc_c00384{left:159.000000px;}
.x3_c00384{left:166.500000px;}
.x6e_c00384{left:169.500000px;}
.xb5_c00384{left:170.580000px;}
.x80_c00384{left:172.500000px;}
.x5b_c00384{left:173.580000px;}
.xe1_c00384{left:175.080000px;}
.x14_c00384{left:177.000000px;}
.xe5_c00384{left:179.580000px;}
.xf3_c00384{left:181.920000px;}
.x91_c00384{left:184.500000px;}
.xe8_c00384{left:186.000000px;}
.xec_c00384{left:189.000000px;}
.x45_c00384{left:190.080000px;}
.xab_c00384{left:192.000000px;}
.x5c_c00384{left:195.000000px;}
.x15_c00384{left:196.080000px;}
.x4_c00384{left:198.000000px;}
.x22_c00384{left:199.920000px;}
.x3f_c00384{left:201.000000px;}
.x2a_c00384{left:202.080000px;}
.x92_c00384{left:204.000000px;}
.xac_c00384{left:211.920000px;}
.xf1_c00384{left:213.420000px;}
.x6f_c00384{left:214.500000px;}
.x16_c00384{left:216.000000px;}
.x9f_c00384{left:218.580000px;}
.x34_c00384{left:220.080000px;}
.x46_c00384{left:222.000000px;}
.xd6_c00384{left:223.920000px;}
.x40_c00384{left:227.775000px;}
.x87_c00384{left:229.500000px;}
.x96_c00384{left:230.580000px;}
.x5_c00384{left:235.500000px;}
.x23_c00384{left:237.000000px;}
.xce_c00384{left:238.920000px;}
.x5d_c00384{left:243.420000px;}
.xa5_c00384{left:246.000000px;}
.x93_c00384{left:247.500000px;}
.x53_c00384{left:254.580000px;}
.x65_c00384{left:258.000000px;}
.x17_c00384{left:259.500000px;}
.xbc_c00384{left:262.080000px;}
.xad_c00384{left:263.580000px;}
.xc2_c00384{left:265.500000px;}
.x2b_c00384{left:267.000000px;}
.x35_c00384{left:268.500000px;}
.x24_c00384{left:270.000000px;}
.x41_c00384{left:274.920000px;}
.x66_c00384{left:277.920000px;}
.x5e_c00384{left:280.080000px;}
.xae_c00384{left:283.920000px;}
.x18_c00384{left:285.420000px;}
.x25_c00384{left:287.580000px;}
.xe2_c00384{left:292.500000px;}
.x36_c00384{left:294.000000px;}
.xed_c00384{left:297.000000px;}
.xea_c00384{left:298.500000px;}
.x47_c00384{left:301.500000px;}
.x97_c00384{left:303.420000px;}
.x67_c00384{left:304.500000px;}
.xaf_c00384{left:306.000000px;}
.xc3_c00384{left:307.920000px;}
.x5f_c00384{left:310.080000px;}
.x94_c00384{left:312.000000px;}
.xcf_c00384{left:316.500000px;}
.xa0_c00384{left:319.920000px;}
.x26_c00384{left:321.000000px;}
.x42_c00384{left:324.420000px;}
.xdd_c00384{left:325.500000px;}
.x70_c00384{left:327.420000px;}
.x60_c00384{left:331.500000px;}
.x19_c00384{left:332.580000px;}
.x88_c00384{left:334.275000px;}
.x48_c00384{left:336.000000px;}
.x54_c00384{left:337.500000px;}
.x6_c00384{left:339.000000px;}
.x98_c00384{left:340.500000px;}
.x37_c00384{left:342.420000px;}
.xf2_c00384{left:343.500000px;}
.x81_c00384{left:346.500000px;}
.x68_c00384{left:347.580000px;}
.x1a_c00384{left:349.920000px;}
.xc4_c00384{left:351.000000px;}
.x27_c00384{left:353.580000px;}
.x7_c00384{left:357.000000px;}
.x43_c00384{left:360.000000px;}
.x99_c00384{left:367.920000px;}
.x49_c00384{left:370.500000px;}
.x2c_c00384{left:371.580000px;}
.x89_c00384{left:373.080000px;}
.x95_c00384{left:375.000000px;}
.x1b_c00384{left:376.500000px;}
.xcb_c00384{left:378.000000px;}
.x82_c00384{left:381.000000px;}
.xa6_c00384{left:384.000000px;}
.x8a_c00384{left:385.500000px;}
.x1_c00384{left:387.000000px;}
.xe0_c00384{left:388.080000px;}
.x38_c00384{left:390.000000px;}
.xc8_c00384{left:391.500000px;}
.x2d_c00384{left:393.420000px;}
.x55_c00384{left:394.500000px;}
.xee_c00384{left:397.500000px;}
.x78_c00384{left:398.580000px;}
.x8_c00384{left:400.500000px;}
.x4a_c00384{left:405.000000px;}
.x28_c00384{left:406.500000px;}
.xb6_c00384{left:408.000000px;}
.x61_c00384{left:409.275000px;}
.xa7_c00384{left:411.000000px;}
.xd0_c00384{left:412.080000px;}
.x71_c00384{left:414.000000px;}
.xbd_c00384{left:415.500000px;}
.x1c_c00384{left:420.420000px;}
.x9_c00384{left:421.500000px;}
.xb7_c00384{left:426.000000px;}
.x39_c00384{left:427.080000px;}
.x83_c00384{left:429.000000px;}
.xd7_c00384{left:430.920000px;}
.x9a_c00384{left:433.500000px;}
.xf4_c00384{left:435.420000px;}
.x2e_c00384{left:436.500000px;}
.x29_c00384{left:438.000000px;}
.xa1_c00384{left:443.580000px;}
.x62_c00384{left:445.080000px;}
.x79_c00384{left:447.000000px;}
.xa_c00384{left:448.920000px;}
.xb0_c00384{left:450.420000px;}
.xc9_c00384{left:451.920000px;}
.xd8_c00384{left:457.500000px;}
.x8b_c00384{left:458.580000px;}
.x69_c00384{left:460.500000px;}
.xde_c00384{left:462.000000px;}
.x4b_c00384{left:465.000000px;}
.xd1_c00384{left:472.080000px;}
.x7a_c00384{left:474.420000px;}
.x72_c00384{left:476.580000px;}
.x6a_c00384{left:478.500000px;}
.x63_c00384{left:480.000000px;}
.xe3_c00384{left:481.500000px;}
.xa8_c00384{left:483.420000px;}
.x3a_c00384{left:486.000000px;}
.xb8_c00384{left:487.500000px;}
.xd9_c00384{left:489.420000px;}
.xb1_c00384{left:490.500000px;}
.xb_c00384{left:492.000000px;}
.x1d_c00384{left:493.080000px;}
.xbe_c00384{left:495.000000px;}
.x4c_c00384{left:500.580000px;}
.x84_c00384{left:502.500000px;}
.xcc_c00384{left:504.420000px;}
.x8c_c00384{left:507.000000px;}
.xc_c00384{left:510.420000px;}
.x2f_c00384{left:512.580000px;}
.xd2_c00384{left:516.000000px;}
.x7b_c00384{left:519.420000px;}
.x9b_c00384{left:520.500000px;}
.x56_c00384{left:521.580000px;}
.xf5_c00384{left:523.500000px;}
.x4d_c00384{left:526.500000px;}
.xe6_c00384{left:528.000000px;}
.xb2_c00384{left:529.500000px;}
.x6b_c00384{left:531.000000px;}
.x3b_c00384{left:532.080000px;}
.x1e_c00384{left:535.500000px;}
.xd_c00384{left:537.420000px;}
.x9c_c00384{left:541.920000px;}
.x30_c00384{left:543.000000px;}
.x73_c00384{left:544.920000px;}
.x57_c00384{left:549.000000px;}
.x7c_c00384{left:552.000000px;}
.x4e_c00384{left:554.580000px;}
.x8d_c00384{left:556.500000px;}
.x85_c00384{left:558.000000px;}
.xd3_c00384{left:562.920000px;}
.x64_c00384{left:564.000000px;}
.xbf_c00384{left:565.500000px;}
.x9d_c00384{left:567.645000px;}
.x3c_c00384{left:569.580000px;}
.x7d_c00384{left:571.920000px;}
.xe7_c00384{left:573.000000px;}
.xb9_c00384{left:574.500000px;}
.xe_c00384{left:577.500000px;}
.xc5_c00384{left:579.420000px;}
.x58_c00384{left:580.500000px;}
.x4f_c00384{left:582.000000px;}
.xc0_c00384{left:585.420000px;}
.xcd_c00384{left:586.920000px;}
.x6c_c00384{left:588.420000px;}
.x8e_c00384{left:592.500000px;}
.x31_c00384{left:594.000000px;}
.xb3_c00384{left:595.080000px;}
.xa2_c00384{left:596.580000px;}
.x7e_c00384{left:598.500000px;}
.xda_c00384{left:602.580000px;}
.xc6_c00384{left:606.000000px;}
.x1f_c00384{left:607.080000px;}
.xf_c00384{left:610.500000px;}
.x59_c00384{left:612.420000px;}
.x74_c00384{left:613.500000px;}
.x6d_c00384{left:615.000000px;}
.xe4_c00384{left:616.500000px;}
.x50_c00384{left:619.500000px;}
.x3d_c00384{left:620.580000px;}
.xdb_c00384{left:623.355000px;}
.x8f_c00384{left:627.420000px;}
.x10_c00384{left:630.420000px;}
.x32_c00384{left:634.920000px;}
.xd4_c00384{left:636.000000px;}
.x20_c00384{left:637.920000px;}
.x44_c00384{left:640.080000px;}
.xca_c00384{left:642.000000px;}
.xa9_c00384{left:644.580000px;}
.x75_c00384{left:647.580000px;}
.x90_c00384{left:649.920000px;}
.x9e_c00384{left:655.920000px;}
.x51_c00384{left:657.000000px;}
.xeb_c00384{left:658.500000px;}
.x86_c00384{left:660.000000px;}
.xb4_c00384{left:661.500000px;}
.x3e_c00384{left:663.000000px;}
.xba_c00384{left:664.500000px;}
.xef_c00384{left:667.500000px;}
.x5a_c00384{left:669.000000px;}
.x11_c00384{left:670.500000px;}
.xa3_c00384{left:673.500000px;}
.x33_c00384{left:674.580000px;}
.x21_c00384{left:676.500000px;}
.xc7_c00384{left:681.000000px;}
.x7f_c00384{left:685.920000px;}
.xa4_c00384{left:687.420000px;}
.x12_c00384{left:688.500000px;}
.x52_c00384{left:693.420000px;}
.xbb_c00384{left:696.000000px;}
.xdf_c00384{left:697.500000px;}
.xf6_c00384{left:700.500000px;}
.x2_c00384{left:701.580000px;}
.xe9_c00384{left:703.500000px;}
.xaa_c00384{left:704.580000px;}
.x76_c00384{left:708.000000px;}
.xf0_c00384{left:712.500000px;}
.xc1_c00384{left:720.000000px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.v1_c00384{vertical-align:5.333333pt;}
.ls1_c00384{letter-spacing:0.000000pt;}
.ls0_c00384{letter-spacing:51.473822pt;}
.ws5_c00384{word-spacing:-58.544115pt;}
.ws0_c00384{word-spacing:-3.711550pt;}
.ws14_c00384{word-spacing:0.000000pt;}
.ws2_c00384{word-spacing:0.944690pt;}
.ws1_c00384{word-spacing:5.929829pt;}
.ws7_c00384{word-spacing:11.273645pt;}
.wsc_c00384{word-spacing:19.542122pt;}
.wsb_c00384{word-spacing:21.504305pt;}
.ws3_c00384{word-spacing:22.419456pt;}
.wse_c00384{word-spacing:22.781898pt;}
.ws12_c00384{word-spacing:23.466487pt;}
.ws11_c00384{word-spacing:24.922876pt;}
.ws4_c00384{word-spacing:26.774372pt;}
.wsd_c00384{word-spacing:26.838488pt;}
.wsa_c00384{word-spacing:30.767743pt;}
.ws8_c00384{word-spacing:32.768845pt;}
.ws10_c00384{word-spacing:40.509110pt;}
.ws9_c00384{word-spacing:41.393632pt;}
.ws13_c00384{word-spacing:44.118417pt;}
.ws6_c00384{word-spacing:44.403528pt;}
.wsf_c00384{word-spacing:50.682780pt;}
._1_c00384{margin-left:-51.473822pt;}
._2_c00384{width:14.090244pt;}
._3_c00384{width:30.536781pt;}
._0_c00384{width:31.667208pt;}
._4_c00384{width:35.824393pt;}
._5_c00384{width:56.710097pt;}
.fs6_c00384{font-size:3.040000pt;}
.fsa_c00384{font-size:6.026667pt;}
.fs9_c00384{font-size:10.560000pt;}
.fs8_c00384{font-size:12.106667pt;}
.fs4_c00384{font-size:16.640000pt;}
.fs0_c00384{font-size:18.133333pt;}
.fs2_c00384{font-size:22.666667pt;}
.fs1_c00384{font-size:25.706667pt;}
.fs5_c00384{font-size:28.746667pt;}
.fs3_c00384{font-size:31.733333pt;}
.fs7_c00384{font-size:34.773333pt;}
.y0_c00384{bottom:0.000000pt;}
.y83_c00384{bottom:225.493333pt;}
.y84_c00384{bottom:226.066667pt;}
.y85_c00384{bottom:226.266667pt;}
.y86_c00384{bottom:227.400000pt;}
.y82_c00384{bottom:228.360000pt;}
.y81_c00384{bottom:243.773333pt;}
.y80_c00384{bottom:245.693333pt;}
.y7b_c00384{bottom:261.106667pt;}
.y7f_c00384{bottom:262.066667pt;}
.y7d_c00384{bottom:263.026667pt;}
.y7c_c00384{bottom:263.226667pt;}
.y7e_c00384{bottom:263.973333pt;}
.y78_c00384{bottom:278.066667pt;}
.y77_c00384{bottom:278.440000pt;}
.y79_c00384{bottom:280.360000pt;}
.y76_c00384{bottom:280.560000pt;}
.y7a_c00384{bottom:281.306667pt;}
.y75_c00384{bottom:295.026667pt;}
.y72_c00384{bottom:296.733333pt;}
.y6f_c00384{bottom:297.106667pt;}
.y70_c00384{bottom:297.693333pt;}
.y73_c00384{bottom:297.893333pt;}
.y74_c00384{bottom:298.640000pt;}
.y71_c00384{bottom:299.026667pt;}
.y6c_c00384{bottom:314.440000pt;}
.y6d_c00384{bottom:315.226667pt;}
.y6e_c00384{bottom:315.400000pt;}
.y6b_c00384{bottom:316.360000pt;}
.y6a_c00384{bottom:329.693333pt;}
.y69_c00384{bottom:331.773333pt;}
.y67_c00384{bottom:332.560000pt;}
.y65_c00384{bottom:332.733333pt;}
.y68_c00384{bottom:333.306667pt;}
.y64_c00384{bottom:333.693333pt;}
.y66_c00384{bottom:334.640000pt;}
.y60_c00384{bottom:347.026667pt;}
.y63_c00384{bottom:349.106667pt;}
.y61_c00384{bottom:349.893333pt;}
.y62_c00384{bottom:350.640000pt;}
.y5f_c00384{bottom:351.026667pt;}
.y5d_c00384{bottom:364.360000pt;}
.y5e_c00384{bottom:366.440000pt;}
.y5c_c00384{bottom:368.360000pt;}
.y5a_c00384{bottom:383.773333pt;}
.y5b_c00384{bottom:384.560000pt;}
.y59_c00384{bottom:385.693333pt;}
.y54_c00384{bottom:400.360000pt;}
.y53_c00384{bottom:401.106667pt;}
.y52_c00384{bottom:402.440000pt;}
.y58_c00384{bottom:403.026667pt;}
.y57_c00384{bottom:403.226667pt;}
.y55_c00384{bottom:403.973333pt;}
.y56_c00384{bottom:404.360000pt;}
.y50_c00384{bottom:418.640000pt;}
.y51_c00384{bottom:419.773333pt;}
.y4f_c00384{bottom:420.560000pt;}
.y4e_c00384{bottom:421.693333pt;}
.y4b_c00384{bottom:437.106667pt;}
.y4c_c00384{bottom:437.893333pt;}
.y4d_c00384{bottom:439.026667pt;}
.y47_c00384{bottom:454.440000pt;}
.y48_c00384{bottom:455.226667pt;}
.y4a_c00384{bottom:455.400000pt;}
.y46_c00384{bottom:456.360000pt;}
.y49_c00384{bottom:457.306667pt;}
.y43_c00384{bottom:471.773333pt;}
.y45_c00384{bottom:472.560000pt;}
.y44_c00384{bottom:473.693333pt;}
.y40_c00384{bottom:488.360000pt;}
.y42_c00384{bottom:489.106667pt;}
.y41_c00384{bottom:490.266667pt;}
.y3e_c00384{bottom:491.026667pt;}
.y3f_c00384{bottom:491.226667pt;}
.y3b_c00384{bottom:505.693333pt;}
.y39_c00384{bottom:506.066667pt;}
.y3d_c00384{bottom:506.440000pt;}
.y3c_c00384{bottom:507.400000pt;}
.y37_c00384{bottom:508.360000pt;}
.y3a_c00384{bottom:508.560000pt;}
.y38_c00384{bottom:509.706667pt;}
.y32_c00384{bottom:523.026667pt;}
.y34_c00384{bottom:523.773333pt;}
.y33_c00384{bottom:525.693333pt;}
.y31_c00384{bottom:525.893333pt;}
.y36_c00384{bottom:526.640000pt;}
.y35_c00384{bottom:527.026667pt;}
.y2a_c00384{bottom:540.360000pt;}
.y2b_c00384{bottom:541.106667pt;}
.y29_c00384{bottom:541.306667pt;}
.y2c_c00384{bottom:542.640000pt;}
.y2e_c00384{bottom:543.026667pt;}
.y2f_c00384{bottom:543.973333pt;}
.y30_c00384{bottom:544.360000pt;}
.y2d_c00384{bottom:544.373333pt;}
.y27_c00384{bottom:557.893333pt;}
.y26_c00384{bottom:559.026667pt;}
.y24_c00384{bottom:559.773333pt;}
.y28_c00384{bottom:559.973333pt;}
.y25_c00384{bottom:560.733333pt;}
.y23_c00384{bottom:561.693333pt;}
.y20_c00384{bottom:577.106667pt;}
.y22_c00384{bottom:577.306667pt;}
.y1e_c00384{bottom:578.066667pt;}
.y21_c00384{bottom:579.026667pt;}
.y1f_c00384{bottom:579.226667pt;}
.y18_c00384{bottom:594.440000pt;}
.y19_c00384{bottom:595.400000pt;}
.y1d_c00384{bottom:595.773333pt;}
.y1b_c00384{bottom:596.360000pt;}
.y1a_c00384{bottom:596.560000pt;}
.y1c_c00384{bottom:597.306667pt;}
.y16_c00384{bottom:611.773333pt;}
.y15_c00384{bottom:613.106667pt;}
.y13_c00384{bottom:613.693333pt;}
.y14_c00384{bottom:614.640000pt;}
.y17_c00384{bottom:615.026667pt;}
.y11_c00384{bottom:628.360000pt;}
.yf_c00384{bottom:630.440000pt;}
.y12_c00384{bottom:631.226667pt;}
.y10_c00384{bottom:631.973333pt;}
.ye_c00384{bottom:632.360000pt;}
.yb_c00384{bottom:646.640000pt;}
.y9_c00384{bottom:647.773333pt;}
.ya_c00384{bottom:649.306667pt;}
.yc_c00384{bottom:649.693333pt;}
.yd_c00384{bottom:650.640000pt;}
.y8_c00384{bottom:663.973333pt;}
.y6_c00384{bottom:665.106667pt;}
.y7_c00384{bottom:665.893333pt;}
.y4_c00384{bottom:666.640000pt;}
.y3_c00384{bottom:667.026667pt;}
.y5_c00384{bottom:667.973333pt;}
.yd1_c00384{bottom:687.600000pt;}
.ycf_c00384{bottom:689.893333pt;}
.yd0_c00384{bottom:690.840000pt;}
.yd2_c00384{bottom:691.040000pt;}
.yd3_c00384{bottom:691.226667pt;}
.ycb_c00384{bottom:701.893333pt;}
.ycc_c00384{bottom:702.840000pt;}
.ycd_c00384{bottom:703.226667pt;}
.yce_c00384{bottom:704.173333pt;}
.yc5_c00384{bottom:713.893333pt;}
.yc6_c00384{bottom:714.840000pt;}
.yc7_c00384{bottom:715.026667pt;}
.yc9_c00384{bottom:715.426667pt;}
.yca_c00384{bottom:716.173333pt;}
.yc8_c00384{bottom:716.373333pt;}
.ybf_c00384{bottom:725.893333pt;}
.yc0_c00384{bottom:726.840000pt;}
.yc1_c00384{bottom:727.026667pt;}
.yc4_c00384{bottom:728.173333pt;}
.yc3_c00384{bottom:728.360000pt;}
.yc2_c00384{bottom:728.373333pt;}
.yba_c00384{bottom:737.893333pt;}
.ybc_c00384{bottom:738.840000pt;}
.ybb_c00384{bottom:739.226667pt;}
.ybd_c00384{bottom:740.173333pt;}
.ybe_c00384{bottom:741.506667pt;}
.yb7_c00384{bottom:751.226667pt;}
.yb8_c00384{bottom:752.173333pt;}
.yb9_c00384{bottom:753.506667pt;}
.yb5_c00384{bottom:764.173333pt;}
.yb6_c00384{bottom:765.506667pt;}
.yb4_c00384{bottom:774.840000pt;}
.yb3_c00384{bottom:776.173333pt;}
.yad_c00384{bottom:784.173333pt;}
.yae_c00384{bottom:784.560000pt;}
.yaf_c00384{bottom:785.133333pt;}
.yb0_c00384{bottom:785.506667pt;}
.yb1_c00384{bottom:785.893333pt;}
.yb2_c00384{bottom:786.840000pt;}
.yab_c00384{bottom:795.800000pt;}
.yac_c00384{bottom:797.506667pt;}
.ya8_c00384{bottom:805.506667pt;}
.yaa_c00384{bottom:805.893333pt;}
.ya9_c00384{bottom:806.840000pt;}
.ya5_c00384{bottom:816.560000pt;}
.ya6_c00384{bottom:817.506667pt;}
.ya7_c00384{bottom:818.840000pt;}
.ya3_c00384{bottom:828.560000pt;}
.ya4_c00384{bottom:829.506667pt;}
.ya2_c00384{bottom:841.893333pt;}
.ya1_c00384{bottom:842.840000pt;}
.y9e_c00384{bottom:853.893333pt;}
.y9f_c00384{bottom:854.840000pt;}
.ya0_c00384{bottom:856.173333pt;}
.y9b_c00384{bottom:865.893333pt;}
.y9a_c00384{bottom:866.840000pt;}
.y9c_c00384{bottom:867.226667pt;}
.y9d_c00384{bottom:868.173333pt;}
.y95_c00384{bottom:882.840000pt;}
.y96_c00384{bottom:884.173333pt;}
.y97_c00384{bottom:884.560000pt;}
.y98_c00384{bottom:885.506667pt;}
.y99_c00384{bottom:885.706667pt;}
.y91_c00384{bottom:892.560000pt;}
.y92_c00384{bottom:894.840000pt;}
.y94_c00384{bottom:895.226667pt;}
.y93_c00384{bottom:896.173333pt;}
.y90_c00384{bottom:915.973333pt;}
.y8c_c00384{bottom:927.026667pt;}
.y8e_c00384{bottom:927.400000pt;}
.y89_c00384{bottom:927.973333pt;}
.y8d_c00384{bottom:928.360000pt;}
.y8a_c00384{bottom:928.933333pt;}
.y8b_c00384{bottom:929.306667pt;}
.y8f_c00384{bottom:930.266667pt;}
.y88_c00384{bottom:947.026667pt;}
.y87_c00384{bottom:948.933333pt;}
.y2_c00384{bottom:977.693333pt;}
.y1_c00384{bottom:979.600000pt;}
.h8_c00384{height:3.739141pt;}
.hd_c00384{height:7.412682pt;}
.hc_c00384{height:12.988594pt;}
.ha_c00384{height:14.890964pt;}
.hb_c00384{height:20.224297pt;}
.h5_c00384{height:20.466875pt;}
.h1_c00384{height:22.303646pt;}
.h3_c00384{height:27.879557pt;}
.h2_c00384{height:31.618698pt;}
.h6_c00384{height:35.357839pt;}
.h4_c00384{height:39.031380pt;}
.h9_c00384{height:42.770521pt;}
.h7_c00384{height:44.364714pt;}
.h0_c00384{height:1186.666667pt;}
.w0_c00384{width:782.666667pt;}
.x0_c00384{left:0.000000pt;}
.x13_c00384{left:134.666667pt;}
.x77_c00384{left:136.373333pt;}
.xd5_c00384{left:137.706667pt;}
.xdc_c00384{left:141.333333pt;}
.x3_c00384{left:148.000000pt;}
.x6e_c00384{left:150.666667pt;}
.xb5_c00384{left:151.626667pt;}
.x80_c00384{left:153.333333pt;}
.x5b_c00384{left:154.293333pt;}
.xe1_c00384{left:155.626667pt;}
.x14_c00384{left:157.333333pt;}
.xe5_c00384{left:159.626667pt;}
.xf3_c00384{left:161.706667pt;}
.x91_c00384{left:164.000000pt;}
.xe8_c00384{left:165.333333pt;}
.xec_c00384{left:168.000000pt;}
.x45_c00384{left:168.960000pt;}
.xab_c00384{left:170.666667pt;}
.x5c_c00384{left:173.333333pt;}
.x15_c00384{left:174.293333pt;}
.x4_c00384{left:176.000000pt;}
.x22_c00384{left:177.706667pt;}
.x3f_c00384{left:178.666667pt;}
.x2a_c00384{left:179.626667pt;}
.x92_c00384{left:181.333333pt;}
.xac_c00384{left:188.373333pt;}
.xf1_c00384{left:189.706667pt;}
.x6f_c00384{left:190.666667pt;}
.x16_c00384{left:192.000000pt;}
.x9f_c00384{left:194.293333pt;}
.x34_c00384{left:195.626667pt;}
.x46_c00384{left:197.333333pt;}
.xd6_c00384{left:199.040000pt;}
.x40_c00384{left:202.466667pt;}
.x87_c00384{left:204.000000pt;}
.x96_c00384{left:204.960000pt;}
.x5_c00384{left:209.333333pt;}
.x23_c00384{left:210.666667pt;}
.xce_c00384{left:212.373333pt;}
.x5d_c00384{left:216.373333pt;}
.xa5_c00384{left:218.666667pt;}
.x93_c00384{left:220.000000pt;}
.x53_c00384{left:226.293333pt;}
.x65_c00384{left:229.333333pt;}
.x17_c00384{left:230.666667pt;}
.xbc_c00384{left:232.960000pt;}
.xad_c00384{left:234.293333pt;}
.xc2_c00384{left:236.000000pt;}
.x2b_c00384{left:237.333333pt;}
.x35_c00384{left:238.666667pt;}
.x24_c00384{left:240.000000pt;}
.x41_c00384{left:244.373333pt;}
.x66_c00384{left:247.040000pt;}
.x5e_c00384{left:248.960000pt;}
.xae_c00384{left:252.373333pt;}
.x18_c00384{left:253.706667pt;}
.x25_c00384{left:255.626667pt;}
.xe2_c00384{left:260.000000pt;}
.x36_c00384{left:261.333333pt;}
.xed_c00384{left:264.000000pt;}
.xea_c00384{left:265.333333pt;}
.x47_c00384{left:268.000000pt;}
.x97_c00384{left:269.706667pt;}
.x67_c00384{left:270.666667pt;}
.xaf_c00384{left:272.000000pt;}
.xc3_c00384{left:273.706667pt;}
.x5f_c00384{left:275.626667pt;}
.x94_c00384{left:277.333333pt;}
.xcf_c00384{left:281.333333pt;}
.xa0_c00384{left:284.373333pt;}
.x26_c00384{left:285.333333pt;}
.x42_c00384{left:288.373333pt;}
.xdd_c00384{left:289.333333pt;}
.x70_c00384{left:291.040000pt;}
.x60_c00384{left:294.666667pt;}
.x19_c00384{left:295.626667pt;}
.x88_c00384{left:297.133333pt;}
.x48_c00384{left:298.666667pt;}
.x54_c00384{left:300.000000pt;}
.x6_c00384{left:301.333333pt;}
.x98_c00384{left:302.666667pt;}
.x37_c00384{left:304.373333pt;}
.xf2_c00384{left:305.333333pt;}
.x81_c00384{left:308.000000pt;}
.x68_c00384{left:308.960000pt;}
.x1a_c00384{left:311.040000pt;}
.xc4_c00384{left:312.000000pt;}
.x27_c00384{left:314.293333pt;}
.x7_c00384{left:317.333333pt;}
.x43_c00384{left:320.000000pt;}
.x99_c00384{left:327.040000pt;}
.x49_c00384{left:329.333333pt;}
.x2c_c00384{left:330.293333pt;}
.x89_c00384{left:331.626667pt;}
.x95_c00384{left:333.333333pt;}
.x1b_c00384{left:334.666667pt;}
.xcb_c00384{left:336.000000pt;}
.x82_c00384{left:338.666667pt;}
.xa6_c00384{left:341.333333pt;}
.x8a_c00384{left:342.666667pt;}
.x1_c00384{left:344.000000pt;}
.xe0_c00384{left:344.960000pt;}
.x38_c00384{left:346.666667pt;}
.xc8_c00384{left:348.000000pt;}
.x2d_c00384{left:349.706667pt;}
.x55_c00384{left:350.666667pt;}
.xee_c00384{left:353.333333pt;}
.x78_c00384{left:354.293333pt;}
.x8_c00384{left:356.000000pt;}
.x4a_c00384{left:360.000000pt;}
.x28_c00384{left:361.333333pt;}
.xb6_c00384{left:362.666667pt;}
.x61_c00384{left:363.800000pt;}
.xa7_c00384{left:365.333333pt;}
.xd0_c00384{left:366.293333pt;}
.x71_c00384{left:368.000000pt;}
.xbd_c00384{left:369.333333pt;}
.x1c_c00384{left:373.706667pt;}
.x9_c00384{left:374.666667pt;}
.xb7_c00384{left:378.666667pt;}
.x39_c00384{left:379.626667pt;}
.x83_c00384{left:381.333333pt;}
.xd7_c00384{left:383.040000pt;}
.x9a_c00384{left:385.333333pt;}
.xf4_c00384{left:387.040000pt;}
.x2e_c00384{left:388.000000pt;}
.x29_c00384{left:389.333333pt;}
.xa1_c00384{left:394.293333pt;}
.x62_c00384{left:395.626667pt;}
.x79_c00384{left:397.333333pt;}
.xa_c00384{left:399.040000pt;}
.xb0_c00384{left:400.373333pt;}
.xc9_c00384{left:401.706667pt;}
.xd8_c00384{left:406.666667pt;}
.x8b_c00384{left:407.626667pt;}
.x69_c00384{left:409.333333pt;}
.xde_c00384{left:410.666667pt;}
.x4b_c00384{left:413.333333pt;}
.xd1_c00384{left:419.626667pt;}
.x7a_c00384{left:421.706667pt;}
.x72_c00384{left:423.626667pt;}
.x6a_c00384{left:425.333333pt;}
.x63_c00384{left:426.666667pt;}
.xe3_c00384{left:428.000000pt;}
.xa8_c00384{left:429.706667pt;}
.x3a_c00384{left:432.000000pt;}
.xb8_c00384{left:433.333333pt;}
.xd9_c00384{left:435.040000pt;}
.xb1_c00384{left:436.000000pt;}
.xb_c00384{left:437.333333pt;}
.x1d_c00384{left:438.293333pt;}
.xbe_c00384{left:440.000000pt;}
.x4c_c00384{left:444.960000pt;}
.x84_c00384{left:446.666667pt;}
.xcc_c00384{left:448.373333pt;}
.x8c_c00384{left:450.666667pt;}
.xc_c00384{left:453.706667pt;}
.x2f_c00384{left:455.626667pt;}
.xd2_c00384{left:458.666667pt;}
.x7b_c00384{left:461.706667pt;}
.x9b_c00384{left:462.666667pt;}
.x56_c00384{left:463.626667pt;}
.xf5_c00384{left:465.333333pt;}
.x4d_c00384{left:468.000000pt;}
.xe6_c00384{left:469.333333pt;}
.xb2_c00384{left:470.666667pt;}
.x6b_c00384{left:472.000000pt;}
.x3b_c00384{left:472.960000pt;}
.x1e_c00384{left:476.000000pt;}
.xd_c00384{left:477.706667pt;}
.x9c_c00384{left:481.706667pt;}
.x30_c00384{left:482.666667pt;}
.x73_c00384{left:484.373333pt;}
.x57_c00384{left:488.000000pt;}
.x7c_c00384{left:490.666667pt;}
.x4e_c00384{left:492.960000pt;}
.x8d_c00384{left:494.666667pt;}
.x85_c00384{left:496.000000pt;}
.xd3_c00384{left:500.373333pt;}
.x64_c00384{left:501.333333pt;}
.xbf_c00384{left:502.666667pt;}
.x9d_c00384{left:504.573333pt;}
.x3c_c00384{left:506.293333pt;}
.x7d_c00384{left:508.373333pt;}
.xe7_c00384{left:509.333333pt;}
.xb9_c00384{left:510.666667pt;}
.xe_c00384{left:513.333333pt;}
.xc5_c00384{left:515.040000pt;}
.x58_c00384{left:516.000000pt;}
.x4f_c00384{left:517.333333pt;}
.xc0_c00384{left:520.373333pt;}
.xcd_c00384{left:521.706667pt;}
.x6c_c00384{left:523.040000pt;}
.x8e_c00384{left:526.666667pt;}
.x31_c00384{left:528.000000pt;}
.xb3_c00384{left:528.960000pt;}
.xa2_c00384{left:530.293333pt;}
.x7e_c00384{left:532.000000pt;}
.xda_c00384{left:535.626667pt;}
.xc6_c00384{left:538.666667pt;}
.x1f_c00384{left:539.626667pt;}
.xf_c00384{left:542.666667pt;}
.x59_c00384{left:544.373333pt;}
.x74_c00384{left:545.333333pt;}
.x6d_c00384{left:546.666667pt;}
.xe4_c00384{left:548.000000pt;}
.x50_c00384{left:550.666667pt;}
.x3d_c00384{left:551.626667pt;}
.xdb_c00384{left:554.093333pt;}
.x8f_c00384{left:557.706667pt;}
.x10_c00384{left:560.373333pt;}
.x32_c00384{left:564.373333pt;}
.xd4_c00384{left:565.333333pt;}
.x20_c00384{left:567.040000pt;}
.x44_c00384{left:568.960000pt;}
.xca_c00384{left:570.666667pt;}
.xa9_c00384{left:572.960000pt;}
.x75_c00384{left:575.626667pt;}
.x90_c00384{left:577.706667pt;}
.x9e_c00384{left:583.040000pt;}
.x51_c00384{left:584.000000pt;}
.xeb_c00384{left:585.333333pt;}
.x86_c00384{left:586.666667pt;}
.xb4_c00384{left:588.000000pt;}
.x3e_c00384{left:589.333333pt;}
.xba_c00384{left:590.666667pt;}
.xef_c00384{left:593.333333pt;}
.x5a_c00384{left:594.666667pt;}
.x11_c00384{left:596.000000pt;}
.xa3_c00384{left:598.666667pt;}
.x33_c00384{left:599.626667pt;}
.x21_c00384{left:601.333333pt;}
.xc7_c00384{left:605.333333pt;}
.x7f_c00384{left:609.706667pt;}
.xa4_c00384{left:611.040000pt;}
.x12_c00384{left:612.000000pt;}
.x52_c00384{left:616.373333pt;}
.xbb_c00384{left:618.666667pt;}
.xdf_c00384{left:620.000000pt;}
.xf6_c00384{left:622.666667pt;}
.x2_c00384{left:623.626667pt;}
.xe9_c00384{left:625.333333pt;}
.xaa_c00384{left:626.293333pt;}
.x76_c00384{left:629.333333pt;}
.xf0_c00384{left:633.333333pt;}
.xc1_c00384{left:640.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_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_60a3d974b5ef7e2b997bc583.woff2')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:1.688965;font-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_c00385{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00385{transform:matrix(0.269328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269328,0.000000,0.000000,0.250000,0,0);}
.md8_c00385{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m47_c00385{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.mc1_c00385{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.mbd_c00385{transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);}
.m4d_c00385{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m0_c00385{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m2d_c00385{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mac_c00385{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.me9_c00385{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mec_c00385{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.mb9_c00385{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m9e_c00385{transform:matrix(0.376160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376160,0.000000,0.000000,0.250000,0,0);}
.m4b_c00385{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.md6_c00385{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.ma5_c00385{transform:matrix(0.382780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382780,0.000000,0.000000,0.250000,0,0);}
.mef_c00385{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m9c_c00385{transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);}
.m63_c00385{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.mb6_c00385{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.m25_c00385{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m46_c00385{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m53_c00385{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m7e_c00385{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.mb4_c00385{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m5c_c00385{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m52_c00385{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m58_c00385{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.mea_c00385{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m7c_c00385{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);}
.m95_c00385{transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);}
.m38_c00385{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m39_c00385{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mf3_c00385{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m51_c00385{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mf0_c00385{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m98_c00385{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.m64_c00385{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m2c_c00385{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m77_c00385{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m6f_c00385{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m78_c00385{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m89_c00385{transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);}
.mda_c00385{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m73_c00385{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m92_c00385{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m3f_c00385{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.mfa_c00385{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m11_c00385{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m36_c00385{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.ma8_c00385{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.mb2_c00385{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mce_c00385{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.me7_c00385{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m79_c00385{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m2_c00385{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m10_c00385{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mc5_c00385{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mc6_c00385{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m22_c00385{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mb1_c00385{transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);}
.me5_c00385{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.mb3_c00385{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.md2_c00385{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.mad_c00385{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.ma1_c00385{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.mc2_c00385{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.mc_c00385{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m86_c00385{transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);}
.m5e_c00385{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m1b_c00385{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m3d_c00385{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m96_c00385{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m54_c00385{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.m4a_c00385{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.mbe_c00385{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.mbb_c00385{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.me3_c00385{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m5b_c00385{transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);}
.m45_c00385{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m87_c00385{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m8e_c00385{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m29_c00385{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.mdf_c00385{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m62_c00385{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m8a_c00385{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m9a_c00385{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.mab_c00385{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.md1_c00385{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m88_c00385{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.mbf_c00385{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.md0_c00385{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.mee_c00385{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.mbc_c00385{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.mf8_c00385{transform:matrix(0.469748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469748,0.000000,0.000000,0.250000,0,0);}
.m76_c00385{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m94_c00385{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.mfb_c00385{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.ma3_c00385{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.mb5_c00385{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.ma0_c00385{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m2a_c00385{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m30_c00385{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mc4_c00385{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m2b_c00385{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m93_c00385{transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);}
.mc0_c00385{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m69_c00385{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m23_c00385{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m8c_c00385{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m90_c00385{transform:matrix(0.492857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492857,0.000000,0.000000,0.250000,0,0);}
.m67_c00385{transform:matrix(0.493506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493506,0.000000,0.000000,0.250000,0,0);}
.m56_c00385{transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);}
.md7_c00385{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m55_c00385{transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);}
.ma_c00385{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);}
.me6_c00385{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m8_c00385{transform:matrix(0.502783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502783,0.000000,0.000000,0.250000,0,0);}
.mae_c00385{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m21_c00385{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m40_c00385{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m44_c00385{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mc9_c00385{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m9f_c00385{transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);}
.md3_c00385{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m8f_c00385{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m8b_c00385{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mcb_c00385{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.mf_c00385{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m6d_c00385{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.med_c00385{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m26_c00385{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m84_c00385{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.ma2_c00385{transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);}
.mdb_c00385{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m7a_c00385{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.maf_c00385{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m4c_c00385{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mcf_c00385{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m6c_c00385{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.md5_c00385{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m7_c00385{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m80_c00385{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m83_c00385{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m27_c00385{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m14_c00385{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.me1_c00385{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mcc_c00385{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.md4_c00385{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m4f_c00385{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m59_c00385{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.maa_c00385{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m28_c00385{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mc8_c00385{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m42_c00385{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.mb7_c00385{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m12_c00385{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m74_c00385{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mdc_c00385{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m61_c00385{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m4e_c00385{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m9_c00385{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m1c_c00385{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mb0_c00385{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.mf9_c00385{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m2f_c00385{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m75_c00385{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mf1_c00385{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m4_c00385{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m3a_c00385{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m33_c00385{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m1a_c00385{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mb_c00385{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m1e_c00385{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.me0_c00385{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m5_c00385{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m32_c00385{transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);}
.m13_c00385{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m5a_c00385{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.me8_c00385{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m17_c00385{transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);}
.ma9_c00385{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m72_c00385{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.mc3_c00385{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m3b_c00385{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m97_c00385{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m19_c00385{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m43_c00385{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.mf5_c00385{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.mba_c00385{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.md9_c00385{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m57_c00385{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m34_c00385{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m65_c00385{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mf6_c00385{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mde_c00385{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mca_c00385{transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);}
.m9d_c00385{transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);}
.m48_c00385{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m15_c00385{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mf2_c00385{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.mcd_c00385{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m50_c00385{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m99_c00385{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m2e_c00385{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m7f_c00385{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m6b_c00385{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m66_c00385{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m82_c00385{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.me_c00385{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.meb_c00385{transform:matrix(0.612552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612552,0.000000,0.000000,0.250000,0,0);}
.m35_c00385{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m68_c00385{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.ma7_c00385{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.m3c_c00385{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m8d_c00385{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m7b_c00385{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.mfc_c00385{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m81_c00385{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_c00385{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m1_c00385{transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);}
.mf4_c00385{transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);}
.m60_c00385{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m49_c00385{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m3_c00385{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m91_c00385{transform:matrix(0.678824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.678824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.678824,0.000000,0.000000,0.250000,0,0);}
.mdd_c00385{transform:matrix(0.692647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692647,0.000000,0.000000,0.250000,0,0);}
.ma4_c00385{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.m3e_c00385{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mf7_c00385{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m71_c00385{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m20_c00385{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.m18_c00385{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m5d_c00385{transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);}
.m5f_c00385{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mc7_c00385{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m41_c00385{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m16_c00385{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m6e_c00385{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.me4_c00385{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.md_c00385{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mb8_c00385{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m1d_c00385{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m70_c00385{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m1f_c00385{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m6a_c00385{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m31_c00385{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m85_c00385{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m24_c00385{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.me2_c00385{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.m9b_c00385{transform:matrix(0.957048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.957048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.957048,0.000000,0.000000,0.250000,0,0);}
.ma6_c00385{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00385{vertical-align:0.000000px;}
.ls0_c00385{letter-spacing:0.000000px;}
.sc__c00385{text-shadow:none;}
.sc0_c00385{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00385{-webkit-text-stroke:0px transparent;}
.sc0_c00385{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00385{word-spacing:-6.184625px;}
.ws1_c00385{word-spacing:0.000000px;}
.fc0_c00385{color:transparent;}
.fs7_c00385{font-size:3.420000px;}
.fs9_c00385{font-size:11.880000px;}
.fs6_c00385{font-size:13.620000px;}
.fs5_c00385{font-size:18.720000px;}
.fs1_c00385{font-size:20.400000px;}
.fs2_c00385{font-size:25.500000px;}
.fs3_c00385{font-size:28.920000px;}
.fs4_c00385{font-size:32.340000px;}
.fs0_c00385{font-size:35.700000px;}
.fs8_c00385{font-size:39.120000px;}
.y0_c00385{bottom:0.000000px;}
.yb0_c00385{bottom:250.245000px;}
.yb1_c00385{bottom:252.405000px;}
.yae_c00385{bottom:252.630000px;}
.yaf_c00385{bottom:253.470000px;}
.yb2_c00385{bottom:253.905000px;}
.yad_c00385{bottom:269.970000px;}
.ya7_c00385{bottom:271.245000px;}
.ya8_c00385{bottom:271.905000px;}
.yaa_c00385{bottom:272.130000px;}
.yac_c00385{bottom:272.970000px;}
.ya9_c00385{bottom:273.405000px;}
.yab_c00385{bottom:274.470000px;}
.ya5_c00385{bottom:290.745000px;}
.ya6_c00385{bottom:292.905000px;}
.ya3_c00385{bottom:308.775000px;}
.ya0_c00385{bottom:310.245000px;}
.ya1_c00385{bottom:311.130000px;}
.y9d_c00385{bottom:311.325000px;}
.ya4_c00385{bottom:311.970000px;}
.y9c_c00385{bottom:312.405000px;}
.y9f_c00385{bottom:312.630000px;}
.ya2_c00385{bottom:313.470000px;}
.y9e_c00385{bottom:313.905000px;}
.y99_c00385{bottom:329.745000px;}
.y9a_c00385{bottom:331.050000px;}
.y98_c00385{bottom:331.245000px;}
.y96_c00385{bottom:331.905000px;}
.y97_c00385{bottom:331.920000px;}
.y9b_c00385{bottom:332.970000px;}
.y94_c00385{bottom:350.745000px;}
.y93_c00385{bottom:351.405000px;}
.y95_c00385{bottom:352.905000px;}
.y92_c00385{bottom:370.245000px;}
.y90_c00385{bottom:370.905000px;}
.y91_c00385{bottom:372.405000px;}
.y8b_c00385{bottom:389.325000px;}
.y8e_c00385{bottom:389.745000px;}
.y8c_c00385{bottom:390.825000px;}
.y8f_c00385{bottom:391.470000px;}
.y8d_c00385{bottom:391.905000px;}
.y8a_c00385{bottom:409.245000px;}
.y89_c00385{bottom:411.405000px;}
.y88_c00385{bottom:428.745000px;}
.y86_c00385{bottom:430.905000px;}
.y87_c00385{bottom:431.970000px;}
.y84_c00385{bottom:448.245000px;}
.y82_c00385{bottom:449.745000px;}
.y83_c00385{bottom:450.405000px;}
.y85_c00385{bottom:450.630000px;}
.y80_c00385{bottom:451.905000px;}
.y81_c00385{bottom:451.920000px;}
.y7f_c00385{bottom:467.745000px;}
.y7e_c00385{bottom:468.825000px;}
.y7c_c00385{bottom:487.680000px;}
.y7b_c00385{bottom:488.325000px;}
.y7a_c00385{bottom:488.745000px;}
.y7d_c00385{bottom:489.405000px;}
.y78_c00385{bottom:489.630000px;}
.y77_c00385{bottom:490.905000px;}
.y79_c00385{bottom:490.920000px;}
.y74_c00385{bottom:505.905000px;}
.y76_c00385{bottom:507.405000px;}
.y73_c00385{bottom:508.245000px;}
.y75_c00385{bottom:509.325000px;}
.y71_c00385{bottom:527.745000px;}
.y72_c00385{bottom:529.920000px;}
.y6e_c00385{bottom:547.245000px;}
.y6f_c00385{bottom:548.970000px;}
.y70_c00385{bottom:549.405000px;}
.y6b_c00385{bottom:566.745000px;}
.y6d_c00385{bottom:568.905000px;}
.y6c_c00385{bottom:568.920000px;}
.y6a_c00385{bottom:588.405000px;}
.y66_c00385{bottom:588.825000px;}
.y68_c00385{bottom:589.905000px;}
.y69_c00385{bottom:590.130000px;}
.y67_c00385{bottom:590.970000px;}
.y65_c00385{bottom:592.050000px;}
.y62_c00385{bottom:609.825000px;}
.y61_c00385{bottom:610.905000px;}
.y63_c00385{bottom:611.550000px;}
.y60_c00385{bottom:611.970000px;}
.y64_c00385{bottom:612.195000px;}
.y5e_c00385{bottom:634.245000px;}
.y5d_c00385{bottom:636.405000px;}
.y5f_c00385{bottom:637.470000px;}
.y5c_c00385{bottom:663.405000px;}
.y5a_c00385{bottom:704.325000px;}
.y5b_c00385{bottom:704.745000px;}
.y57_c00385{bottom:705.825000px;}
.y58_c00385{bottom:706.905000px;}
.y59_c00385{bottom:707.970000px;}
.y53_c00385{bottom:722.970000px;}
.y56_c00385{bottom:723.825000px;}
.y54_c00385{bottom:724.245000px;}
.y55_c00385{bottom:725.130000px;}
.y52_c00385{bottom:726.405000px;}
.y51_c00385{bottom:745.905000px;}
.y50_c00385{bottom:762.405000px;}
.y4e_c00385{bottom:763.245000px;}
.y4f_c00385{bottom:764.745000px;}
.y4c_c00385{bottom:765.405000px;}
.y4d_c00385{bottom:766.470000px;}
.y48_c00385{bottom:781.905000px;}
.y4a_c00385{bottom:782.745000px;}
.y49_c00385{bottom:783.825000px;}
.y47_c00385{bottom:784.905000px;}
.y4b_c00385{bottom:785.130000px;}
.y42_c00385{bottom:802.245000px;}
.y46_c00385{bottom:803.745000px;}
.y43_c00385{bottom:804.405000px;}
.y44_c00385{bottom:804.630000px;}
.y45_c00385{bottom:805.470000px;}
.y41_c00385{bottom:820.905000px;}
.y3f_c00385{bottom:824.130000px;}
.y40_c00385{bottom:824.970000px;}
.y3e_c00385{bottom:825.405000px;}
.y3d_c00385{bottom:842.325000px;}
.y3a_c00385{bottom:842.745000px;}
.y3c_c00385{bottom:843.630000px;}
.y3b_c00385{bottom:844.470000px;}
.y39_c00385{bottom:844.905000px;}
.y35_c00385{bottom:862.245000px;}
.y36_c00385{bottom:863.130000px;}
.y37_c00385{bottom:863.970000px;}
.y38_c00385{bottom:864.405000px;}
.y34_c00385{bottom:865.470000px;}
.y32_c00385{bottom:881.325000px;}
.y31_c00385{bottom:881.745000px;}
.y33_c00385{bottom:882.630000px;}
.y30_c00385{bottom:883.905000px;}
.y2b_c00385{bottom:901.245000px;}
.y2c_c00385{bottom:902.745000px;}
.y2e_c00385{bottom:903.405000px;}
.y2f_c00385{bottom:904.470000px;}
.y2d_c00385{bottom:904.905000px;}
.y27_c00385{bottom:922.245000px;}
.y29_c00385{bottom:923.130000px;}
.y2a_c00385{bottom:923.970000px;}
.y28_c00385{bottom:924.405000px;}
.y22_c00385{bottom:940.245000px;}
.y25_c00385{bottom:941.745000px;}
.y21_c00385{bottom:942.405000px;}
.y26_c00385{bottom:942.630000px;}
.y23_c00385{bottom:943.470000px;}
.y24_c00385{bottom:943.905000px;}
.y20_c00385{bottom:961.245000px;}
.y1c_c00385{bottom:961.905000px;}
.y1d_c00385{bottom:962.130000px;}
.y1f_c00385{bottom:962.970000px;}
.y1e_c00385{bottom:963.405000px;}
.y1b_c00385{bottom:979.905000px;}
.y19_c00385{bottom:980.745000px;}
.y1a_c00385{bottom:981.825000px;}
.y18_c00385{bottom:982.905000px;}
.y15_c00385{bottom:999.405000px;}
.y16_c00385{bottom:1001.130000px;}
.y17_c00385{bottom:1002.405000px;}
.y12_c00385{bottom:1019.745000px;}
.y13_c00385{bottom:1020.630000px;}
.y11_c00385{bottom:1021.905000px;}
.y14_c00385{bottom:1022.970000px;}
.yf_c00385{bottom:1037.970000px;}
.yb_c00385{bottom:1039.245000px;}
.yc_c00385{bottom:1039.470000px;}
.ye_c00385{bottom:1040.130000px;}
.yd_c00385{bottom:1040.970000px;}
.ya_c00385{bottom:1041.405000px;}
.y10_c00385{bottom:1041.630000px;}
.y9_c00385{bottom:1042.470000px;}
.y3_c00385{bottom:1058.745000px;}
.y8_c00385{bottom:1059.630000px;}
.y7_c00385{bottom:1059.825000px;}
.y4_c00385{bottom:1060.470000px;}
.y5_c00385{bottom:1060.905000px;}
.y6_c00385{bottom:1061.970000px;}
.y1_c00385{bottom:1097.745000px;}
.y2_c00385{bottom:1099.050000px;}
.h8_c00385{height:4.206533px;}
.ha_c00385{height:14.612168px;}
.h7_c00385{height:16.752334px;}
.h6_c00385{height:23.025234px;}
.h2_c00385{height:25.091602px;}
.h3_c00385{height:31.364502px;}
.h4_c00385{height:35.571035px;}
.h5_c00385{height:39.777568px;}
.h1_c00385{height:43.910303px;}
.h9_c00385{height:48.116836px;}
.h0_c00385{height:1335.000000px;}
.w0_c00385{width:880.500000px;}
.x0_c00385{left:0.000000px;}
.xc7_c00385{left:149.580000px;}
.xb0_c00385{left:151.500000px;}
.x33_c00385{left:153.000000px;}
.x1_c00385{left:154.500000px;}
.xa7_c00385{left:165.000000px;}
.x28_c00385{left:166.500000px;}
.x34_c00385{left:168.000000px;}
.x3_c00385{left:169.500000px;}
.xd8_c00385{left:171.000000px;}
.xb1_c00385{left:178.500000px;}
.x35_c00385{left:180.000000px;}
.x69_c00385{left:183.420000px;}
.x29_c00385{left:187.080000px;}
.x8c_c00385{left:189.000000px;}
.xc1_c00385{left:190.500000px;}
.x10_c00385{left:192.420000px;}
.xb7_c00385{left:195.000000px;}
.xe8_c00385{left:196.500000px;}
.x2a_c00385{left:199.080000px;}
.x75_c00385{left:201.000000px;}
.x4c_c00385{left:202.500000px;}
.x61_c00385{left:205.920000px;}
.x8d_c00385{left:207.000000px;}
.x99_c00385{left:209.355000px;}
.xa2_c00385{left:211.500000px;}
.x58_c00385{left:214.080000px;}
.x36_c00385{left:217.500000px;}
.x1d_c00385{left:218.580000px;}
.xb8_c00385{left:222.000000px;}
.x40_c00385{left:225.000000px;}
.x85_c00385{left:226.920000px;}
.xe3_c00385{left:229.080000px;}
.x62_c00385{left:232.920000px;}
.xe9_c00385{left:237.420000px;}
.x11_c00385{left:238.920000px;}
.xcc_c00385{left:240.000000px;}
.x76_c00385{left:241.080000px;}
.x4_c00385{left:246.000000px;}
.x7b_c00385{left:247.080000px;}
.x4d_c00385{left:249.420000px;}
.x9f_c00385{left:251.580000px;}
.x71_c00385{left:258.000000px;}
.x77_c00385{left:259.920000px;}
.x2b_c00385{left:261.645000px;}
.x41_c00385{left:265.500000px;}
.x5_c00385{left:267.420000px;}
.xc8_c00385{left:268.500000px;}
.xb2_c00385{left:270.000000px;}
.xa8_c00385{left:271.500000px;}
.x4e_c00385{left:274.920000px;}
.x9a_c00385{left:277.080000px;}
.x59_c00385{left:279.420000px;}
.xbe_c00385{left:280.500000px;}
.xea_c00385{left:283.920000px;}
.x42_c00385{left:285.000000px;}
.xad_c00385{left:286.500000px;}
.x37_c00385{left:287.580000px;}
.x8e_c00385{left:289.500000px;}
.x63_c00385{left:294.420000px;}
.x12_c00385{left:296.580000px;}
.xdf_c00385{left:298.500000px;}
.xba_c00385{left:300.000000px;}
.x4f_c00385{left:301.500000px;}
.x6_c00385{left:304.920000px;}
.x7c_c00385{left:307.080000px;}
.x8f_c00385{left:310.920000px;}
.x6a_c00385{left:312.000000px;}
.x9b_c00385{left:313.500000px;}
.xc2_c00385{left:314.580000px;}
.x2c_c00385{left:316.080000px;}
.xb9_c00385{left:317.775000px;}
.xeb_c00385{left:319.500000px;}
.xb3_c00385{left:321.645000px;}
.xcf_c00385{left:327.420000px;}
.x64_c00385{left:328.500000px;}
.xa9_c00385{left:329.580000px;}
.x94_c00385{left:331.500000px;}
.xd9_c00385{left:333.000000px;}
.x43_c00385{left:336.000000px;}
.x38_c00385{left:339.420000px;}
.x1e_c00385{left:340.500000px;}
.xd2_c00385{left:342.000000px;}
.xa0_c00385{left:343.920000px;}
.xa3_c00385{left:346.500000px;}
.x7d_c00385{left:348.420000px;}
.x9c_c00385{left:349.500000px;}
.x7_c00385{left:351.000000px;}
.xae_c00385{left:352.500000px;}
.x13_c00385{left:354.420000px;}
.x50_c00385{left:357.420000px;}
.xe0_c00385{left:358.500000px;}
.xc5_c00385{left:360.000000px;}
.xd3_c00385{left:363.000000px;}
.x86_c00385{left:364.920000px;}
.x9e_c00385{left:366.645000px;}
.x8_c00385{left:370.920000px;}
.x1f_c00385{left:373.500000px;}
.x39_c00385{left:375.000000px;}
.xb4_c00385{left:376.500000px;}
.x44_c00385{left:378.000000px;}
.xd0_c00385{left:379.500000px;}
.xc9_c00385{left:382.500000px;}
.x7e_c00385{left:384.000000px;}
.x51_c00385{left:385.080000px;}
.x90_c00385{left:386.580000px;}
.xec_c00385{left:388.920000px;}
.x2_c00385{left:393.000000px;}
.x72_c00385{left:396.000000px;}
.xbd_c00385{left:397.500000px;}
.x9_c00385{left:399.000000px;}
.x3a_c00385{left:400.080000px;}
.x9d_c00385{left:402.000000px;}
.x7f_c00385{left:403.500000px;}
.x65_c00385{left:405.000000px;}
.x14_c00385{left:408.000000px;}
.xda_c00385{left:411.000000px;}
.x45_c00385{left:413.145000px;}
.x78_c00385{left:415.500000px;}
.x6b_c00385{left:417.000000px;}
.xcd_c00385{left:421.500000px;}
.xed_c00385{left:423.000000px;}
.xd1_c00385{left:424.080000px;}
.x15_c00385{left:427.920000px;}
.x52_c00385{left:430.500000px;}
.xaa_c00385{left:432.000000px;}
.xaf_c00385{left:433.080000px;}
.xb5_c00385{left:435.000000px;}
.x5a_c00385{left:436.920000px;}
.x20_c00385{left:439.500000px;}
.x2d_c00385{left:442.920000px;}
.x3b_c00385{left:445.080000px;}
.xca_c00385{left:446.580000px;}
.xe4_c00385{left:448.500000px;}
.x3c_c00385{left:449.580000px;}
.xbf_c00385{left:451.920000px;}
.x66_c00385{left:457.920000px;}
.x16_c00385{left:462.000000px;}
.x2e_c00385{left:463.500000px;}
.x21_c00385{left:465.000000px;}
.x53_c00385{left:466.500000px;}
.xe1_c00385{left:467.775000px;}
.xd4_c00385{left:469.275000px;}
.x73_c00385{left:472.920000px;}
.xa_c00385{left:474.420000px;}
.x46_c00385{left:476.580000px;}
.xcb_c00385{left:481.500000px;}
.xbb_c00385{left:482.580000px;}
.x80_c00385{left:490.920000px;}
.xab_c00385{left:493.080000px;}
.x79_c00385{left:495.420000px;}
.x17_c00385{left:498.000000px;}
.x22_c00385{left:499.920000px;}
.x6c_c00385{left:501.000000px;}
.xb_c00385{left:502.500000px;}
.xa4_c00385{left:508.920000px;}
.x5b_c00385{left:511.500000px;}
.x3d_c00385{left:513.000000px;}
.x6d_c00385{left:516.000000px;}
.xe5_c00385{left:519.000000px;}
.x18_c00385{left:520.080000px;}
.x87_c00385{left:522.000000px;}
.x47_c00385{left:523.500000px;}
.x23_c00385{left:526.500000px;}
.x5c_c00385{left:529.080000px;}
.x95_c00385{left:532.500000px;}
.xc0_c00385{left:538.080000px;}
.x2f_c00385{left:542.775000px;}
.x91_c00385{left:544.920000px;}
.xdb_c00385{left:546.000000px;}
.x6e_c00385{left:547.500000px;}
.x48_c00385{left:550.500000px;}
.x74_c00385{left:553.080000px;}
.x88_c00385{left:555.000000px;}
.xc6_c00385{left:557.580000px;}
.xc_c00385{left:562.080000px;}
.x24_c00385{left:567.420000px;}
.xa5_c00385{left:571.500000px;}
.xd5_c00385{left:573.420000px;}
.x89_c00385{left:576.000000px;}
.x96_c00385{left:577.080000px;}
.x19_c00385{left:578.580000px;}
.xd_c00385{left:580.500000px;}
.x30_c00385{left:582.000000px;}
.xac_c00385{left:583.920000px;}
.x5d_c00385{left:588.420000px;}
.x8a_c00385{left:590.580000px;}
.x54_c00385{left:592.500000px;}
.x92_c00385{left:593.580000px;}
.xa1_c00385{left:595.275000px;}
.x81_c00385{left:597.000000px;}
.x1a_c00385{left:598.920000px;}
.xd6_c00385{left:601.920000px;}
.xe6_c00385{left:606.000000px;}
.x82_c00385{left:610.500000px;}
.x93_c00385{left:613.500000px;}
.xbc_c00385{left:616.500000px;}
.xc3_c00385{left:618.420000px;}
.x6f_c00385{left:621.420000px;}
.x25_c00385{left:622.500000px;}
.x1b_c00385{left:624.000000px;}
.x49_c00385{left:627.000000px;}
.x3e_c00385{left:630.000000px;}
.xdc_c00385{left:631.080000px;}
.xee_c00385{left:634.080000px;}
.xa6_c00385{left:637.920000px;}
.xb6_c00385{left:640.080000px;}
.x55_c00385{left:642.000000px;}
.xdd_c00385{left:643.080000px;}
.x97_c00385{left:645.000000px;}
.x5e_c00385{left:646.500000px;}
.x3f_c00385{left:648.420000px;}
.x1c_c00385{left:651.000000px;}
.x56_c00385{left:655.500000px;}
.xe2_c00385{left:656.580000px;}
.x31_c00385{left:658.920000px;}
.x5f_c00385{left:661.500000px;}
.xe_c00385{left:663.420000px;}
.x83_c00385{left:665.580000px;}
.xef_c00385{left:667.500000px;}
.x26_c00385{left:673.080000px;}
.x67_c00385{left:675.000000px;}
.x60_c00385{left:676.500000px;}
.x4a_c00385{left:678.000000px;}
.xc4_c00385{left:679.080000px;}
.x8b_c00385{left:681.000000px;}
.x32_c00385{left:684.645000px;}
.x70_c00385{left:686.580000px;}
.x68_c00385{left:688.500000px;}
.x27_c00385{left:691.080000px;}
.x57_c00385{left:699.000000px;}
.xd7_c00385{left:700.920000px;}
.xce_c00385{left:703.080000px;}
.xde_c00385{left:706.500000px;}
.x7a_c00385{left:713.580000px;}
.x98_c00385{left:715.500000px;}
.x4b_c00385{left:717.000000px;}
.xe7_c00385{left:718.500000px;}
.x84_c00385{left:720.000000px;}
.xf_c00385{left:723.000000px;}
@media print{
.v0_c00385{vertical-align:0.000000pt;}
.ls0_c00385{letter-spacing:0.000000pt;}
.ws0_c00385{word-spacing:-5.497444pt;}
.ws1_c00385{word-spacing:0.000000pt;}
.fs7_c00385{font-size:3.040000pt;}
.fs9_c00385{font-size:10.560000pt;}
.fs6_c00385{font-size:12.106667pt;}
.fs5_c00385{font-size:16.640000pt;}
.fs1_c00385{font-size:18.133333pt;}
.fs2_c00385{font-size:22.666667pt;}
.fs3_c00385{font-size:25.706667pt;}
.fs4_c00385{font-size:28.746667pt;}
.fs0_c00385{font-size:31.733333pt;}
.fs8_c00385{font-size:34.773333pt;}
.y0_c00385{bottom:0.000000pt;}
.yb0_c00385{bottom:222.440000pt;}
.yb1_c00385{bottom:224.360000pt;}
.yae_c00385{bottom:224.560000pt;}
.yaf_c00385{bottom:225.306667pt;}
.yb2_c00385{bottom:225.693333pt;}
.yad_c00385{bottom:239.973333pt;}
.ya7_c00385{bottom:241.106667pt;}
.ya8_c00385{bottom:241.693333pt;}
.yaa_c00385{bottom:241.893333pt;}
.yac_c00385{bottom:242.640000pt;}
.ya9_c00385{bottom:243.026667pt;}
.yab_c00385{bottom:243.973333pt;}
.ya5_c00385{bottom:258.440000pt;}
.ya6_c00385{bottom:260.360000pt;}
.ya3_c00385{bottom:274.466667pt;}
.ya0_c00385{bottom:275.773333pt;}
.ya1_c00385{bottom:276.560000pt;}
.y9d_c00385{bottom:276.733333pt;}
.ya4_c00385{bottom:277.306667pt;}
.y9c_c00385{bottom:277.693333pt;}
.y9f_c00385{bottom:277.893333pt;}
.ya2_c00385{bottom:278.640000pt;}
.y9e_c00385{bottom:279.026667pt;}
.y99_c00385{bottom:293.106667pt;}
.y9a_c00385{bottom:294.266667pt;}
.y98_c00385{bottom:294.440000pt;}
.y96_c00385{bottom:295.026667pt;}
.y97_c00385{bottom:295.040000pt;}
.y9b_c00385{bottom:295.973333pt;}
.y94_c00385{bottom:311.773333pt;}
.y93_c00385{bottom:312.360000pt;}
.y95_c00385{bottom:313.693333pt;}
.y92_c00385{bottom:329.106667pt;}
.y90_c00385{bottom:329.693333pt;}
.y91_c00385{bottom:331.026667pt;}
.y8b_c00385{bottom:346.066667pt;}
.y8e_c00385{bottom:346.440000pt;}
.y8c_c00385{bottom:347.400000pt;}
.y8f_c00385{bottom:347.973333pt;}
.y8d_c00385{bottom:348.360000pt;}
.y8a_c00385{bottom:363.773333pt;}
.y89_c00385{bottom:365.693333pt;}
.y88_c00385{bottom:381.106667pt;}
.y86_c00385{bottom:383.026667pt;}
.y87_c00385{bottom:383.973333pt;}
.y84_c00385{bottom:398.440000pt;}
.y82_c00385{bottom:399.773333pt;}
.y83_c00385{bottom:400.360000pt;}
.y85_c00385{bottom:400.560000pt;}
.y80_c00385{bottom:401.693333pt;}
.y81_c00385{bottom:401.706667pt;}
.y7f_c00385{bottom:415.773333pt;}
.y7e_c00385{bottom:416.733333pt;}
.y7c_c00385{bottom:433.493333pt;}
.y7b_c00385{bottom:434.066667pt;}
.y7a_c00385{bottom:434.440000pt;}
.y7d_c00385{bottom:435.026667pt;}
.y78_c00385{bottom:435.226667pt;}
.y77_c00385{bottom:436.360000pt;}
.y79_c00385{bottom:436.373333pt;}
.y74_c00385{bottom:449.693333pt;}
.y76_c00385{bottom:451.026667pt;}
.y73_c00385{bottom:451.773333pt;}
.y75_c00385{bottom:452.733333pt;}
.y71_c00385{bottom:469.106667pt;}
.y72_c00385{bottom:471.040000pt;}
.y6e_c00385{bottom:486.440000pt;}
.y6f_c00385{bottom:487.973333pt;}
.y70_c00385{bottom:488.360000pt;}
.y6b_c00385{bottom:503.773333pt;}
.y6d_c00385{bottom:505.693333pt;}
.y6c_c00385{bottom:505.706667pt;}
.y6a_c00385{bottom:523.026667pt;}
.y66_c00385{bottom:523.400000pt;}
.y68_c00385{bottom:524.360000pt;}
.y69_c00385{bottom:524.560000pt;}
.y67_c00385{bottom:525.306667pt;}
.y65_c00385{bottom:526.266667pt;}
.y62_c00385{bottom:542.066667pt;}
.y61_c00385{bottom:543.026667pt;}
.y63_c00385{bottom:543.600000pt;}
.y60_c00385{bottom:543.973333pt;}
.y64_c00385{bottom:544.173333pt;}
.y5e_c00385{bottom:563.773333pt;}
.y5d_c00385{bottom:565.693333pt;}
.y5f_c00385{bottom:566.640000pt;}
.y5c_c00385{bottom:589.693333pt;}
.y5a_c00385{bottom:626.066667pt;}
.y5b_c00385{bottom:626.440000pt;}
.y57_c00385{bottom:627.400000pt;}
.y58_c00385{bottom:628.360000pt;}
.y59_c00385{bottom:629.306667pt;}
.y53_c00385{bottom:642.640000pt;}
.y56_c00385{bottom:643.400000pt;}
.y54_c00385{bottom:643.773333pt;}
.y55_c00385{bottom:644.560000pt;}
.y52_c00385{bottom:645.693333pt;}
.y51_c00385{bottom:663.026667pt;}
.y50_c00385{bottom:677.693333pt;}
.y4e_c00385{bottom:678.440000pt;}
.y4f_c00385{bottom:679.773333pt;}
.y4c_c00385{bottom:680.360000pt;}
.y4d_c00385{bottom:681.306667pt;}
.y48_c00385{bottom:695.026667pt;}
.y4a_c00385{bottom:695.773333pt;}
.y49_c00385{bottom:696.733333pt;}
.y47_c00385{bottom:697.693333pt;}
.y4b_c00385{bottom:697.893333pt;}
.y42_c00385{bottom:713.106667pt;}
.y46_c00385{bottom:714.440000pt;}
.y43_c00385{bottom:715.026667pt;}
.y44_c00385{bottom:715.226667pt;}
.y45_c00385{bottom:715.973333pt;}
.y41_c00385{bottom:729.693333pt;}
.y3f_c00385{bottom:732.560000pt;}
.y40_c00385{bottom:733.306667pt;}
.y3e_c00385{bottom:733.693333pt;}
.y3d_c00385{bottom:748.733333pt;}
.y3a_c00385{bottom:749.106667pt;}
.y3c_c00385{bottom:749.893333pt;}
.y3b_c00385{bottom:750.640000pt;}
.y39_c00385{bottom:751.026667pt;}
.y35_c00385{bottom:766.440000pt;}
.y36_c00385{bottom:767.226667pt;}
.y37_c00385{bottom:767.973333pt;}
.y38_c00385{bottom:768.360000pt;}
.y34_c00385{bottom:769.306667pt;}
.y32_c00385{bottom:783.400000pt;}
.y31_c00385{bottom:783.773333pt;}
.y33_c00385{bottom:784.560000pt;}
.y30_c00385{bottom:785.693333pt;}
.y2b_c00385{bottom:801.106667pt;}
.y2c_c00385{bottom:802.440000pt;}
.y2e_c00385{bottom:803.026667pt;}
.y2f_c00385{bottom:803.973333pt;}
.y2d_c00385{bottom:804.360000pt;}
.y27_c00385{bottom:819.773333pt;}
.y29_c00385{bottom:820.560000pt;}
.y2a_c00385{bottom:821.306667pt;}
.y28_c00385{bottom:821.693333pt;}
.y22_c00385{bottom:835.773333pt;}
.y25_c00385{bottom:837.106667pt;}
.y21_c00385{bottom:837.693333pt;}
.y26_c00385{bottom:837.893333pt;}
.y23_c00385{bottom:838.640000pt;}
.y24_c00385{bottom:839.026667pt;}
.y20_c00385{bottom:854.440000pt;}
.y1c_c00385{bottom:855.026667pt;}
.y1d_c00385{bottom:855.226667pt;}
.y1f_c00385{bottom:855.973333pt;}
.y1e_c00385{bottom:856.360000pt;}
.y1b_c00385{bottom:871.026667pt;}
.y19_c00385{bottom:871.773333pt;}
.y1a_c00385{bottom:872.733333pt;}
.y18_c00385{bottom:873.693333pt;}
.y15_c00385{bottom:888.360000pt;}
.y16_c00385{bottom:889.893333pt;}
.y17_c00385{bottom:891.026667pt;}
.y12_c00385{bottom:906.440000pt;}
.y13_c00385{bottom:907.226667pt;}
.y11_c00385{bottom:908.360000pt;}
.y14_c00385{bottom:909.306667pt;}
.yf_c00385{bottom:922.640000pt;}
.yb_c00385{bottom:923.773333pt;}
.yc_c00385{bottom:923.973333pt;}
.ye_c00385{bottom:924.560000pt;}
.yd_c00385{bottom:925.306667pt;}
.ya_c00385{bottom:925.693333pt;}
.y10_c00385{bottom:925.893333pt;}
.y9_c00385{bottom:926.640000pt;}
.y3_c00385{bottom:941.106667pt;}
.y8_c00385{bottom:941.893333pt;}
.y7_c00385{bottom:942.066667pt;}
.y4_c00385{bottom:942.640000pt;}
.y5_c00385{bottom:943.026667pt;}
.y6_c00385{bottom:943.973333pt;}
.y1_c00385{bottom:975.773333pt;}
.y2_c00385{bottom:976.933333pt;}
.h8_c00385{height:3.739141pt;}
.ha_c00385{height:12.988594pt;}
.h7_c00385{height:14.890964pt;}
.h6_c00385{height:20.466875pt;}
.h2_c00385{height:22.303646pt;}
.h3_c00385{height:27.879557pt;}
.h4_c00385{height:31.618698pt;}
.h5_c00385{height:35.357839pt;}
.h1_c00385{height:39.031380pt;}
.h9_c00385{height:42.770521pt;}
.h0_c00385{height:1186.666667pt;}
.w0_c00385{width:782.666667pt;}
.x0_c00385{left:0.000000pt;}
.xc7_c00385{left:132.960000pt;}
.xb0_c00385{left:134.666667pt;}
.x33_c00385{left:136.000000pt;}
.x1_c00385{left:137.333333pt;}
.xa7_c00385{left:146.666667pt;}
.x28_c00385{left:148.000000pt;}
.x34_c00385{left:149.333333pt;}
.x3_c00385{left:150.666667pt;}
.xd8_c00385{left:152.000000pt;}
.xb1_c00385{left:158.666667pt;}
.x35_c00385{left:160.000000pt;}
.x69_c00385{left:163.040000pt;}
.x29_c00385{left:166.293333pt;}
.x8c_c00385{left:168.000000pt;}
.xc1_c00385{left:169.333333pt;}
.x10_c00385{left:171.040000pt;}
.xb7_c00385{left:173.333333pt;}
.xe8_c00385{left:174.666667pt;}
.x2a_c00385{left:176.960000pt;}
.x75_c00385{left:178.666667pt;}
.x4c_c00385{left:180.000000pt;}
.x61_c00385{left:183.040000pt;}
.x8d_c00385{left:184.000000pt;}
.x99_c00385{left:186.093333pt;}
.xa2_c00385{left:188.000000pt;}
.x58_c00385{left:190.293333pt;}
.x36_c00385{left:193.333333pt;}
.x1d_c00385{left:194.293333pt;}
.xb8_c00385{left:197.333333pt;}
.x40_c00385{left:200.000000pt;}
.x85_c00385{left:201.706667pt;}
.xe3_c00385{left:203.626667pt;}
.x62_c00385{left:207.040000pt;}
.xe9_c00385{left:211.040000pt;}
.x11_c00385{left:212.373333pt;}
.xcc_c00385{left:213.333333pt;}
.x76_c00385{left:214.293333pt;}
.x4_c00385{left:218.666667pt;}
.x7b_c00385{left:219.626667pt;}
.x4d_c00385{left:221.706667pt;}
.x9f_c00385{left:223.626667pt;}
.x71_c00385{left:229.333333pt;}
.x77_c00385{left:231.040000pt;}
.x2b_c00385{left:232.573333pt;}
.x41_c00385{left:236.000000pt;}
.x5_c00385{left:237.706667pt;}
.xc8_c00385{left:238.666667pt;}
.xb2_c00385{left:240.000000pt;}
.xa8_c00385{left:241.333333pt;}
.x4e_c00385{left:244.373333pt;}
.x9a_c00385{left:246.293333pt;}
.x59_c00385{left:248.373333pt;}
.xbe_c00385{left:249.333333pt;}
.xea_c00385{left:252.373333pt;}
.x42_c00385{left:253.333333pt;}
.xad_c00385{left:254.666667pt;}
.x37_c00385{left:255.626667pt;}
.x8e_c00385{left:257.333333pt;}
.x63_c00385{left:261.706667pt;}
.x12_c00385{left:263.626667pt;}
.xdf_c00385{left:265.333333pt;}
.xba_c00385{left:266.666667pt;}
.x4f_c00385{left:268.000000pt;}
.x6_c00385{left:271.040000pt;}
.x7c_c00385{left:272.960000pt;}
.x8f_c00385{left:276.373333pt;}
.x6a_c00385{left:277.333333pt;}
.x9b_c00385{left:278.666667pt;}
.xc2_c00385{left:279.626667pt;}
.x2c_c00385{left:280.960000pt;}
.xb9_c00385{left:282.466667pt;}
.xeb_c00385{left:284.000000pt;}
.xb3_c00385{left:285.906667pt;}
.xcf_c00385{left:291.040000pt;}
.x64_c00385{left:292.000000pt;}
.xa9_c00385{left:292.960000pt;}
.x94_c00385{left:294.666667pt;}
.xd9_c00385{left:296.000000pt;}
.x43_c00385{left:298.666667pt;}
.x38_c00385{left:301.706667pt;}
.x1e_c00385{left:302.666667pt;}
.xd2_c00385{left:304.000000pt;}
.xa0_c00385{left:305.706667pt;}
.xa3_c00385{left:308.000000pt;}
.x7d_c00385{left:309.706667pt;}
.x9c_c00385{left:310.666667pt;}
.x7_c00385{left:312.000000pt;}
.xae_c00385{left:313.333333pt;}
.x13_c00385{left:315.040000pt;}
.x50_c00385{left:317.706667pt;}
.xe0_c00385{left:318.666667pt;}
.xc5_c00385{left:320.000000pt;}
.xd3_c00385{left:322.666667pt;}
.x86_c00385{left:324.373333pt;}
.x9e_c00385{left:325.906667pt;}
.x8_c00385{left:329.706667pt;}
.x1f_c00385{left:332.000000pt;}
.x39_c00385{left:333.333333pt;}
.xb4_c00385{left:334.666667pt;}
.x44_c00385{left:336.000000pt;}
.xd0_c00385{left:337.333333pt;}
.xc9_c00385{left:340.000000pt;}
.x7e_c00385{left:341.333333pt;}
.x51_c00385{left:342.293333pt;}
.x90_c00385{left:343.626667pt;}
.xec_c00385{left:345.706667pt;}
.x2_c00385{left:349.333333pt;}
.x72_c00385{left:352.000000pt;}
.xbd_c00385{left:353.333333pt;}
.x9_c00385{left:354.666667pt;}
.x3a_c00385{left:355.626667pt;}
.x9d_c00385{left:357.333333pt;}
.x7f_c00385{left:358.666667pt;}
.x65_c00385{left:360.000000pt;}
.x14_c00385{left:362.666667pt;}
.xda_c00385{left:365.333333pt;}
.x45_c00385{left:367.240000pt;}
.x78_c00385{left:369.333333pt;}
.x6b_c00385{left:370.666667pt;}
.xcd_c00385{left:374.666667pt;}
.xed_c00385{left:376.000000pt;}
.xd1_c00385{left:376.960000pt;}
.x15_c00385{left:380.373333pt;}
.x52_c00385{left:382.666667pt;}
.xaa_c00385{left:384.000000pt;}
.xaf_c00385{left:384.960000pt;}
.xb5_c00385{left:386.666667pt;}
.x5a_c00385{left:388.373333pt;}
.x20_c00385{left:390.666667pt;}
.x2d_c00385{left:393.706667pt;}
.x3b_c00385{left:395.626667pt;}
.xca_c00385{left:396.960000pt;}
.xe4_c00385{left:398.666667pt;}
.x3c_c00385{left:399.626667pt;}
.xbf_c00385{left:401.706667pt;}
.x66_c00385{left:407.040000pt;}
.x16_c00385{left:410.666667pt;}
.x2e_c00385{left:412.000000pt;}
.x21_c00385{left:413.333333pt;}
.x53_c00385{left:414.666667pt;}
.xe1_c00385{left:415.800000pt;}
.xd4_c00385{left:417.133333pt;}
.x73_c00385{left:420.373333pt;}
.xa_c00385{left:421.706667pt;}
.x46_c00385{left:423.626667pt;}
.xcb_c00385{left:428.000000pt;}
.xbb_c00385{left:428.960000pt;}
.x80_c00385{left:436.373333pt;}
.xab_c00385{left:438.293333pt;}
.x79_c00385{left:440.373333pt;}
.x17_c00385{left:442.666667pt;}
.x22_c00385{left:444.373333pt;}
.x6c_c00385{left:445.333333pt;}
.xb_c00385{left:446.666667pt;}
.xa4_c00385{left:452.373333pt;}
.x5b_c00385{left:454.666667pt;}
.x3d_c00385{left:456.000000pt;}
.x6d_c00385{left:458.666667pt;}
.xe5_c00385{left:461.333333pt;}
.x18_c00385{left:462.293333pt;}
.x87_c00385{left:464.000000pt;}
.x47_c00385{left:465.333333pt;}
.x23_c00385{left:468.000000pt;}
.x5c_c00385{left:470.293333pt;}
.x95_c00385{left:473.333333pt;}
.xc0_c00385{left:478.293333pt;}
.x2f_c00385{left:482.466667pt;}
.x91_c00385{left:484.373333pt;}
.xdb_c00385{left:485.333333pt;}
.x6e_c00385{left:486.666667pt;}
.x48_c00385{left:489.333333pt;}
.x74_c00385{left:491.626667pt;}
.x88_c00385{left:493.333333pt;}
.xc6_c00385{left:495.626667pt;}
.xc_c00385{left:499.626667pt;}
.x24_c00385{left:504.373333pt;}
.xa5_c00385{left:508.000000pt;}
.xd5_c00385{left:509.706667pt;}
.x89_c00385{left:512.000000pt;}
.x96_c00385{left:512.960000pt;}
.x19_c00385{left:514.293333pt;}
.xd_c00385{left:516.000000pt;}
.x30_c00385{left:517.333333pt;}
.xac_c00385{left:519.040000pt;}
.x5d_c00385{left:523.040000pt;}
.x8a_c00385{left:524.960000pt;}
.x54_c00385{left:526.666667pt;}
.x92_c00385{left:527.626667pt;}
.xa1_c00385{left:529.133333pt;}
.x81_c00385{left:530.666667pt;}
.x1a_c00385{left:532.373333pt;}
.xd6_c00385{left:535.040000pt;}
.xe6_c00385{left:538.666667pt;}
.x82_c00385{left:542.666667pt;}
.x93_c00385{left:545.333333pt;}
.xbc_c00385{left:548.000000pt;}
.xc3_c00385{left:549.706667pt;}
.x6f_c00385{left:552.373333pt;}
.x25_c00385{left:553.333333pt;}
.x1b_c00385{left:554.666667pt;}
.x49_c00385{left:557.333333pt;}
.x3e_c00385{left:560.000000pt;}
.xdc_c00385{left:560.960000pt;}
.xee_c00385{left:563.626667pt;}
.xa6_c00385{left:567.040000pt;}
.xb6_c00385{left:568.960000pt;}
.x55_c00385{left:570.666667pt;}
.xdd_c00385{left:571.626667pt;}
.x97_c00385{left:573.333333pt;}
.x5e_c00385{left:574.666667pt;}
.x3f_c00385{left:576.373333pt;}
.x1c_c00385{left:578.666667pt;}
.x56_c00385{left:582.666667pt;}
.xe2_c00385{left:583.626667pt;}
.x31_c00385{left:585.706667pt;}
.x5f_c00385{left:588.000000pt;}
.xe_c00385{left:589.706667pt;}
.x83_c00385{left:591.626667pt;}
.xef_c00385{left:593.333333pt;}
.x26_c00385{left:598.293333pt;}
.x67_c00385{left:600.000000pt;}
.x60_c00385{left:601.333333pt;}
.x4a_c00385{left:602.666667pt;}
.xc4_c00385{left:603.626667pt;}
.x8b_c00385{left:605.333333pt;}
.x32_c00385{left:608.573333pt;}
.x70_c00385{left:610.293333pt;}
.x68_c00385{left:612.000000pt;}
.x27_c00385{left:614.293333pt;}
.x57_c00385{left:621.333333pt;}
.xd7_c00385{left:623.040000pt;}
.xce_c00385{left:624.960000pt;}
.xde_c00385{left:628.000000pt;}
.x7a_c00385{left:634.293333pt;}
.x98_c00385{left:636.000000pt;}
.x4b_c00385{left:637.333333pt;}
.xe7_c00385{left:638.666667pt;}
.x84_c00385{left:640.000000pt;}
.xf_c00385{left:642.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_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_c74a5752182b8a926916dd30.woff2')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mfc_c00386{transform:matrix(0.328571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328571,0.000000,0.000000,0.250000,0,0);}
.mea_c00386{transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);}
.m12_c00386{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.maa_c00386{transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);}
.m47_c00386{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m81_c00386{transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);}
.m18_c00386{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mb6_c00386{transform:matrix(0.370130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370130,0.000000,0.000000,0.250000,0,0);}
.m67_c00386{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m93_c00386{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.ma9_c00386{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.meb_c00386{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.m24_c00386{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mcc_c00386{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m16_c00386{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mf5_c00386{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.me8_c00386{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m15_c00386{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m53_c00386{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m50_c00386{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m66_c00386{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m28_c00386{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.md3_c00386{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m3f_c00386{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m35_c00386{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m58_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);}
.m83_c00386{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.md_c00386{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m11d_c00386{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m2a_c00386{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m46_c00386{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m106_c00386{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m41_c00386{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m10b_c00386{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.me1_c00386{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m113_c00386{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m72_c00386{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.md0_c00386{transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);}
.m70_c00386{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m63_c00386{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m17_c00386{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m56_c00386{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.ma6_c00386{transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);}
.me_c00386{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mc3_c00386{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m1c_c00386{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mc8_c00386{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m48_c00386{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m55_c00386{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m54_c00386{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m79_c00386{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mdb_c00386{transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);}
.ma4_c00386{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m94_c00386{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.mdf_c00386{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m7d_c00386{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m103_c00386{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m4f_c00386{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m114_c00386{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.mbd_c00386{transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);}
.med_c00386{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.mee_c00386{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m9a_c00386{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m6e_c00386{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.md2_c00386{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m74_c00386{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m7c_c00386{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mf6_c00386{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.md7_c00386{transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);}
.m57_c00386{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m5e_c00386{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m105_c00386{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.mec_c00386{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m78_c00386{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mb2_c00386{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m3d_c00386{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.mc4_c00386{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.mc2_c00386{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m4d_c00386{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.mef_c00386{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m117_c00386{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m10a_c00386{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m11_c00386{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m120_c00386{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m10d_c00386{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.mcd_c00386{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.mf2_c00386{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m7a_c00386{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m110_c00386{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m9_c00386{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.mda_c00386{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.m104_c00386{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m38_c00386{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m0_c00386{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m7f_c00386{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.md6_c00386{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.m7_c00386{transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);}
.mf1_c00386{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m6f_c00386{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m6c_c00386{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mff_c00386{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mc7_c00386{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m8d_c00386{transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);}
.md4_c00386{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m101_c00386{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.mfb_c00386{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m7b_c00386{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m90_c00386{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m11b_c00386{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.m10e_c00386{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.ma2_c00386{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m30_c00386{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.ma8_c00386{transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);}
.m10c_c00386{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.mbb_c00386{transform:matrix(0.471176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471176,0.000000,0.000000,0.250000,0,0);}
.m9b_c00386{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m1d_c00386{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.mae_c00386{transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);}
.m34_c00386{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m99_c00386{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m8e_c00386{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m13_c00386{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m118_c00386{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m112_c00386{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m26_c00386{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mc5_c00386{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mb5_c00386{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m100_c00386{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mfe_c00386{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mc6_c00386{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mdc_c00386{transform:matrix(0.491765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491765,0.000000,0.000000,0.250000,0,0);}
.m98_c00386{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m119_c00386{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.mf0_c00386{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m22_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);}
.m2_c00386{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m44_c00386{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.mbc_c00386{transform:matrix(0.506471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506471,0.000000,0.000000,0.250000,0,0);}
.mfa_c00386{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.mb7_c00386{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m69_c00386{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m107_c00386{transform:matrix(0.507780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507780,0.000000,0.000000,0.250000,0,0);}
.me5_c00386{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.me4_c00386{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mc9_c00386{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.me2_c00386{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m80_c00386{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m49_c00386{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.me7_c00386{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m20_c00386{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m9e_c00386{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m96_c00386{transform:matrix(0.517647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517647,0.000000,0.000000,0.250000,0,0);}
.m31_c00386{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mb9_c00386{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.me6_c00386{transform:matrix(0.519481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519481,0.000000,0.000000,0.250000,0,0);}
.mdd_c00386{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);}
.m27_c00386{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m3c_c00386{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mfd_c00386{transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);}
.m4a_c00386{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mab_c00386{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);}
.mb3_c00386{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m3_c00386{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m37_c00386{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m86_c00386{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mc0_c00386{transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);}
.mf9_c00386{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m23_c00386{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m11a_c00386{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m10_c00386{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.ma_c00386{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m14_c00386{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m6b_c00386{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m88_c00386{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m2c_c00386{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m2f_c00386{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m2d_c00386{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m8c_c00386{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m52_c00386{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mce_c00386{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m42_c00386{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.me9_c00386{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m92_c00386{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m111_c00386{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m76_c00386{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m6a_c00386{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m45_c00386{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m115_c00386{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m60_c00386{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.ma5_c00386{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m116_c00386{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m11c_c00386{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.mbe_c00386{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m5b_c00386{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m5_c00386{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mc1_c00386{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m1b_c00386{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m11f_c00386{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m108_c00386{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m71_c00386{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m121_c00386{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m40_c00386{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m87_c00386{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.ma7_c00386{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m8_c00386{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.me3_c00386{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mb1_c00386{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m122_c00386{transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);}
.m6_c00386{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.ma1_c00386{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.mf7_c00386{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m7e_c00386{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);}
.mf_c00386{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m82_c00386{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.md9_c00386{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.mf4_c00386{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.md8_c00386{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00386{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m75_c00386{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m5a_c00386{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m19_c00386{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m62_c00386{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mb_c00386{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m5f_c00386{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m65_c00386{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.mb8_c00386{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);}
.m84_c00386{transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);}
.mb4_c00386{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m5c_c00386{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mba_c00386{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.mac_c00386{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m51_c00386{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m4b_c00386{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m36_c00386{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m9f_c00386{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m10f_c00386{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m8a_c00386{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.m3e_c00386{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m4_c00386{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);}
.m3b_c00386{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.m68_c00386{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m109_c00386{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m39_c00386{transform:matrix(0.611765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611765,0.000000,0.000000,0.250000,0,0);}
.mbf_c00386{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);}
.m33_c00386{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mb0_c00386{transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);}
.m59_c00386{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m2b_c00386{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.mca_c00386{transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);}
.m64_c00386{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.ma0_c00386{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.mad_c00386{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);}
.m2e_c00386{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.md5_c00386{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m1_c00386{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m9d_c00386{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m9c_c00386{transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);}
.maf_c00386{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);}
.m8f_c00386{transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);}
.m1e_c00386{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m21_c00386{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.md1_c00386{transform:matrix(0.673529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673529,0.000000,0.000000,0.250000,0,0);}
.m43_c00386{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m97_c00386{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.ma3_c00386{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m95_c00386{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.mcf_c00386{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m85_c00386{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mcb_c00386{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m4e_c00386{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m5d_c00386{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m77_c00386{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m1a_c00386{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m29_c00386{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m32_c00386{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mc_c00386{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m1f_c00386{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.m6d_c00386{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.mf8_c00386{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m102_c00386{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m25_c00386{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m61_c00386{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m11e_c00386{transform:matrix(0.796474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.796474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.796474,0.000000,0.000000,0.250000,0,0);}
.m4c_c00386{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mf3_c00386{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m3a_c00386{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m8b_c00386{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.mde_c00386{transform:matrix(1.040749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.040749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.040749,0.000000,0.000000,0.250000,0,0);}
.m89_c00386{transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);}
.m91_c00386{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.me0_c00386{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00386{vertical-align:-6.000000px;}
.v0_c00386{vertical-align:0.000000px;}
.ls0_c00386{letter-spacing:0.000000px;}
.sc__c00386{text-shadow:none;}
.sc0_c00386{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00386{-webkit-text-stroke:0px transparent;}
.sc0_c00386{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00386{word-spacing:-16.889280px;}
.ws2_c00386{word-spacing:-8.144007px;}
.ws1_c00386{word-spacing:-6.400641px;}
.ws3_c00386{word-spacing:0.000000px;}
._0_c00386{width:4.114184px;}
.fc0_c00386{color:transparent;}
.fs7_c00386{font-size:3.420000px;}
.fs6_c00386{font-size:13.620000px;}
.fs5_c00386{font-size:18.720000px;}
.fs1_c00386{font-size:20.400000px;}
.fs2_c00386{font-size:25.500000px;}
.fs0_c00386{font-size:28.920000px;}
.fs4_c00386{font-size:32.340000px;}
.fs3_c00386{font-size:35.700000px;}
.fs8_c00386{font-size:39.120000px;}
.y0_c00386{bottom:0.000000px;}
.ye4_c00386{bottom:250.905000px;}
.ye6_c00386{bottom:253.245000px;}
.ye3_c00386{bottom:253.905000px;}
.ye5_c00386{bottom:254.970000px;}
.ye7_c00386{bottom:255.405000px;}
.ye0_c00386{bottom:271.245000px;}
.ye2_c00386{bottom:272.745000px;}
.ydf_c00386{bottom:273.405000px;}
.ye1_c00386{bottom:273.630000px;}
.ydd_c00386{bottom:273.825000px;}
.yde_c00386{bottom:274.905000px;}
.ydb_c00386{bottom:289.905000px;}
.ydc_c00386{bottom:292.245000px;}
.yda_c00386{bottom:293.130000px;}
.yd9_c00386{bottom:294.405000px;}
.yd6_c00386{bottom:310.905000px;}
.yd4_c00386{bottom:311.745000px;}
.yd7_c00386{bottom:313.470000px;}
.yd3_c00386{bottom:313.905000px;}
.yd5_c00386{bottom:314.130000px;}
.yd8_c00386{bottom:315.405000px;}
.yd2_c00386{bottom:330.825000px;}
.yd0_c00386{bottom:331.245000px;}
.ycf_c00386{bottom:333.405000px;}
.yce_c00386{bottom:334.470000px;}
.yd1_c00386{bottom:334.905000px;}
.yc8_c00386{bottom:349.905000px;}
.yc9_c00386{bottom:351.825000px;}
.ycc_c00386{bottom:352.245000px;}
.ycb_c00386{bottom:352.905000px;}
.ycd_c00386{bottom:353.970000px;}
.yca_c00386{bottom:354.405000px;}
.yc5_c00386{bottom:369.405000px;}
.yc6_c00386{bottom:370.245000px;}
.yc4_c00386{bottom:372.405000px;}
.yc7_c00386{bottom:372.630000px;}
.yc2_c00386{bottom:373.470000px;}
.yc3_c00386{bottom:373.905000px;}
.yc1_c00386{bottom:388.905000px;}
.yc0_c00386{bottom:389.745000px;}
.ybf_c00386{bottom:391.245000px;}
.ybe_c00386{bottom:392.130000px;}
.ybd_c00386{bottom:393.405000px;}
.yba_c00386{bottom:408.405000px;}
.ybc_c00386{bottom:411.630000px;}
.ybb_c00386{bottom:411.825000px;}
.yb8_c00386{bottom:412.905000px;}
.yb9_c00386{bottom:413.970000px;}
.yb6_c00386{bottom:429.825000px;}
.yb3_c00386{bottom:430.245000px;}
.yb7_c00386{bottom:431.130000px;}
.yb5_c00386{bottom:432.405000px;}
.yb4_c00386{bottom:432.630000px;}
.yb2_c00386{bottom:448.470000px;}
.yb0_c00386{bottom:449.745000px;}
.yaf_c00386{bottom:451.905000px;}
.yb1_c00386{bottom:452.130000px;}
.yac_c00386{bottom:469.245000px;}
.yae_c00386{bottom:470.130000px;}
.yad_c00386{bottom:470.745000px;}
.yab_c00386{bottom:471.405000px;}
.ya9_c00386{bottom:471.630000px;}
.yaa_c00386{bottom:472.905000px;}
.ya8_c00386{bottom:488.745000px;}
.ya7_c00386{bottom:489.825000px;}
.ya6_c00386{bottom:490.245000px;}
.ya3_c00386{bottom:490.905000px;}
.ya5_c00386{bottom:491.325000px;}
.ya4_c00386{bottom:492.405000px;}
.ya1_c00386{bottom:507.405000px;}
.ya2_c00386{bottom:508.680000px;}
.ya0_c00386{bottom:508.905000px;}
.y9d_c00386{bottom:509.745000px;}
.y9f_c00386{bottom:510.630000px;}
.y9e_c00386{bottom:510.825000px;}
.y9c_c00386{bottom:511.905000px;}
.y98_c00386{bottom:529.245000px;}
.y9b_c00386{bottom:530.130000px;}
.y9a_c00386{bottom:531.405000px;}
.y99_c00386{bottom:531.420000px;}
.y94_c00386{bottom:556.905000px;}
.y95_c00386{bottom:557.130000px;}
.y96_c00386{bottom:557.970000px;}
.y97_c00386{bottom:558.195000px;}
.y93_c00386{bottom:570.405000px;}
.y92_c00386{bottom:570.825000px;}
.y8e_c00386{bottom:571.905000px;}
.y8d_c00386{bottom:572.130000px;}
.y91_c00386{bottom:572.970000px;}
.y90_c00386{bottom:573.195000px;}
.y8f_c00386{bottom:574.050000px;}
.y8a_c00386{bottom:584.970000px;}
.y8c_c00386{bottom:585.405000px;}
.y89_c00386{bottom:585.825000px;}
.y85_c00386{bottom:586.050000px;}
.y8b_c00386{bottom:586.470000px;}
.y86_c00386{bottom:586.905000px;}
.y88_c00386{bottom:587.130000px;}
.y87_c00386{bottom:587.970000px;}
.y81_c00386{bottom:600.825000px;}
.y82_c00386{bottom:601.905000px;}
.y83_c00386{bottom:602.130000px;}
.y84_c00386{bottom:602.970000px;}
.y7e_c00386{bottom:615.825000px;}
.y7b_c00386{bottom:616.050000px;}
.y80_c00386{bottom:616.470000px;}
.y7d_c00386{bottom:617.130000px;}
.y7f_c00386{bottom:617.550000px;}
.y7c_c00386{bottom:617.970000px;}
.y78_c00386{bottom:630.825000px;}
.y79_c00386{bottom:631.905000px;}
.y76_c00386{bottom:632.970000px;}
.y77_c00386{bottom:633.195000px;}
.y7a_c00386{bottom:634.050000px;}
.y75_c00386{bottom:644.325000px;}
.y6f_c00386{bottom:644.550000px;}
.y73_c00386{bottom:644.970000px;}
.y72_c00386{bottom:645.405000px;}
.y74_c00386{bottom:645.630000px;}
.y70_c00386{bottom:646.470000px;}
.y71_c00386{bottom:647.550000px;}
.y6e_c00386{bottom:659.325000px;}
.y6b_c00386{bottom:673.470000px;}
.y6c_c00386{bottom:674.325000px;}
.y6a_c00386{bottom:675.405000px;}
.y65_c00386{bottom:675.630000px;}
.y69_c00386{bottom:675.825000px;}
.y6d_c00386{bottom:676.470000px;}
.y67_c00386{bottom:676.905000px;}
.y66_c00386{bottom:677.550000px;}
.y64_c00386{bottom:677.970000px;}
.y68_c00386{bottom:678.195000px;}
.y62_c00386{bottom:689.325000px;}
.y61_c00386{bottom:690.405000px;}
.y5f_c00386{bottom:690.630000px;}
.y60_c00386{bottom:691.470000px;}
.y63_c00386{bottom:692.550000px;}
.y5e_c00386{bottom:703.470000px;}
.y5d_c00386{bottom:704.325000px;}
.y5c_c00386{bottom:706.470000px;}
.y5b_c00386{bottom:706.695000px;}
.y59_c00386{bottom:720.405000px;}
.y58_c00386{bottom:721.470000px;}
.y57_c00386{bottom:721.695000px;}
.y5a_c00386{bottom:722.550000px;}
.y56_c00386{bottom:746.745000px;}
.y55_c00386{bottom:748.905000px;}
.y52_c00386{bottom:765.405000px;}
.y50_c00386{bottom:766.245000px;}
.y54_c00386{bottom:767.970000px;}
.y51_c00386{bottom:768.405000px;}
.y53_c00386{bottom:768.630000px;}
.y4f_c00386{bottom:784.905000px;}
.y4c_c00386{bottom:785.745000px;}
.y4e_c00386{bottom:785.970000px;}
.y4b_c00386{bottom:786.825000px;}
.y4a_c00386{bottom:787.905000px;}
.y4d_c00386{bottom:788.130000px;}
.y47_c00386{bottom:805.245000px;}
.y48_c00386{bottom:806.325000px;}
.y45_c00386{bottom:807.405000px;}
.y46_c00386{bottom:807.630000px;}
.y49_c00386{bottom:808.470000px;}
.y41_c00386{bottom:824.745000px;}
.y40_c00386{bottom:826.245000px;}
.y42_c00386{bottom:826.905000px;}
.y43_c00386{bottom:827.970000px;}
.y44_c00386{bottom:828.405000px;}
.y3e_c00386{bottom:845.745000px;}
.y3f_c00386{bottom:846.630000px;}
.y3d_c00386{bottom:847.470000px;}
.y3c_c00386{bottom:847.905000px;}
.y3b_c00386{bottom:865.245000px;}
.y3a_c00386{bottom:866.970000px;}
.y39_c00386{bottom:867.405000px;}
.y37_c00386{bottom:884.745000px;}
.y38_c00386{bottom:885.630000px;}
.y36_c00386{bottom:886.905000px;}
.y34_c00386{bottom:903.405000px;}
.y31_c00386{bottom:904.245000px;}
.y35_c00386{bottom:905.130000px;}
.y32_c00386{bottom:905.970000px;}
.y33_c00386{bottom:906.405000px;}
.y30_c00386{bottom:923.745000px;}
.y2f_c00386{bottom:924.825000px;}
.y2d_c00386{bottom:925.905000px;}
.y2e_c00386{bottom:926.130000px;}
.y2a_c00386{bottom:943.245000px;}
.y2b_c00386{bottom:944.970000px;}
.y29_c00386{bottom:945.405000px;}
.y2c_c00386{bottom:945.630000px;}
.y26_c00386{bottom:961.905000px;}
.y27_c00386{bottom:962.745000px;}
.y25_c00386{bottom:962.970000px;}
.y22_c00386{bottom:963.825000px;}
.y28_c00386{bottom:964.470000px;}
.y21_c00386{bottom:964.905000px;}
.y24_c00386{bottom:965.130000px;}
.y23_c00386{bottom:965.970000px;}
.y1f_c00386{bottom:981.405000px;}
.y20_c00386{bottom:982.245000px;}
.y1e_c00386{bottom:983.325000px;}
.y1d_c00386{bottom:984.630000px;}
.y1b_c00386{bottom:985.470000px;}
.y1c_c00386{bottom:985.905000px;}
.y1a_c00386{bottom:1000.905000px;}
.y18_c00386{bottom:1001.745000px;}
.y16_c00386{bottom:1003.245000px;}
.y14_c00386{bottom:1003.905000px;}
.y17_c00386{bottom:1004.130000px;}
.y19_c00386{bottom:1004.970000px;}
.y15_c00386{bottom:1005.405000px;}
.yd_c00386{bottom:1021.245000px;}
.y13_c00386{bottom:1023.405000px;}
.y12_c00386{bottom:1023.630000px;}
.y11_c00386{bottom:1023.825000px;}
.yf_c00386{bottom:1024.470000px;}
.ye_c00386{bottom:1024.905000px;}
.y10_c00386{bottom:1025.970000px;}
.yb_c00386{bottom:1041.825000px;}
.y9_c00386{bottom:1042.245000px;}
.yc_c00386{bottom:1042.905000px;}
.ya_c00386{bottom:1044.405000px;}
.y7_c00386{bottom:1060.470000px;}
.y5_c00386{bottom:1061.745000px;}
.y8_c00386{bottom:1062.630000px;}
.y6_c00386{bottom:1062.825000px;}
.y3_c00386{bottom:1063.905000px;}
.y4_c00386{bottom:1064.970000px;}
.y1_c00386{bottom:1099.905000px;}
.y2_c00386{bottom:1102.050000px;}
.h8_c00386{height:4.206533px;}
.h7_c00386{height:16.752334px;}
.h6_c00386{height:23.025234px;}
.h2_c00386{height:25.091602px;}
.h3_c00386{height:31.364502px;}
.h1_c00386{height:35.571035px;}
.h5_c00386{height:39.777568px;}
.h4_c00386{height:43.910303px;}
.h9_c00386{height:48.116836px;}
.h0_c00386{height:1335.000000px;}
.w0_c00386{width:880.500000px;}
.x0_c00386{left:0.000000px;}
.x3_c00386{left:151.500000px;}
.x19_c00386{left:153.000000px;}
.xa7_c00386{left:154.080000px;}
.xb3_c00386{left:155.355000px;}
.xa8_c00386{left:165.000000px;}
.xa9_c00386{left:166.500000px;}
.xa2_c00386{left:167.580000px;}
.x81_c00386{left:168.855000px;}
.x74_c00386{left:170.580000px;}
.xe2_c00386{left:172.500000px;}
.xd2_c00386{left:176.580000px;}
.x9c_c00386{left:181.500000px;}
.x3f_c00386{left:183.000000px;}
.x90_c00386{left:184.500000px;}
.x53_c00386{left:186.420000px;}
.xc9_c00386{left:188.145000px;}
.x103_c00386{left:191.355000px;}
.xea_c00386{left:192.420000px;}
.x6e_c00386{left:193.500000px;}
.x34_c00386{left:196.500000px;}
.x96_c00386{left:199.080000px;}
.xe6_c00386{left:201.420000px;}
.x4_c00386{left:202.500000px;}
.x2a_c00386{left:203.580000px;}
.x1a_c00386{left:205.080000px;}
.xd3_c00386{left:207.420000px;}
.xf3_c00386{left:208.500000px;}
.xc1_c00386{left:209.580000px;}
.x62_c00386{left:211.500000px;}
.x10c_c00386{left:213.000000px;}
.x49_c00386{left:214.080000px;}
.x112_c00386{left:216.000000px;}
.x79_c00386{left:217.500000px;}
.x9d_c00386{left:220.080000px;}
.x2b_c00386{left:221.580000px;}
.xb4_c00386{left:223.920000px;}
.x1b_c00386{left:225.420000px;}
.xd4_c00386{left:226.500000px;}
.xf4_c00386{left:228.420000px;}
.x82_c00386{left:229.500000px;}
.x104_c00386{left:232.080000px;}
.xf_c00386{left:233.580000px;}
.x11a_c00386{left:235.500000px;}
.x40_c00386{left:237.000000px;}
.xb5_c00386{left:238.080000px;}
.x91_c00386{left:240.000000px;}
.x54_c00386{left:243.420000px;}
.x75_c00386{left:244.500000px;}
.xe7_c00386{left:246.000000px;}
.xd9_c00386{left:247.920000px;}
.xc2_c00386{left:249.000000px;}
.x41_c00386{left:250.500000px;}
.x83_c00386{left:252.420000px;}
.x10_c00386{left:255.420000px;}
.xdd_c00386{left:256.500000px;}
.x6f_c00386{left:258.420000px;}
.x1c_c00386{left:259.500000px;}
.x10d_c00386{left:262.920000px;}
.x4a_c00386{left:264.000000px;}
.xeb_c00386{left:265.080000px;}
.xfb_c00386{left:268.500000px;}
.x7a_c00386{left:269.580000px;}
.x5_c00386{left:271.500000px;}
.x55_c00386{left:274.500000px;}
.xda_c00386{left:277.500000px;}
.xbc_c00386{left:279.000000px;}
.x1d_c00386{left:280.500000px;}
.x87_c00386{left:282.000000px;}
.x11_c00386{left:283.500000px;}
.xd5_c00386{left:285.000000px;}
.xec_c00386{left:286.920000px;}
.x7b_c00386{left:288.420000px;}
.xbd_c00386{left:289.500000px;}
.x9e_c00386{left:291.000000px;}
.x4b_c00386{left:293.580000px;}
.x63_c00386{left:295.920000px;}
.xb6_c00386{left:297.000000px;}
.x6_c00386{left:303.420000px;}
.x35_c00386{left:304.500000px;}
.xcd_c00386{left:307.500000px;}
.xde_c00386{left:310.920000px;}
.x2c_c00386{left:313.500000px;}
.xed_c00386{left:315.420000px;}
.xae_c00386{left:317.580000px;}
.xe3_c00386{left:319.080000px;}
.x107_c00386{left:321.420000px;}
.x7c_c00386{left:322.500000px;}
.x113_c00386{left:324.420000px;}
.xf6_c00386{left:325.500000px;}
.x70_c00386{left:327.000000px;}
.x76_c00386{left:328.080000px;}
.x117_c00386{left:330.000000px;}
.x42_c00386{left:331.500000px;}
.x64_c00386{left:333.420000px;}
.x36_c00386{left:334.920000px;}
.x7_c00386{left:337.080000px;}
.x4c_c00386{left:340.920000px;}
.x12_c00386{left:342.000000px;}
.xc3_c00386{left:343.500000px;}
.x56_c00386{left:344.580000px;}
.x10e_c00386{left:348.000000px;}
.xdb_c00386{left:349.500000px;}
.x118_c00386{left:352.500000px;}
.x9f_c00386{left:354.420000px;}
.x1e_c00386{left:355.920000px;}
.xee_c00386{left:357.420000px;}
.x7d_c00386{left:358.920000px;}
.xca_c00386{left:360.420000px;}
.xbe_c00386{left:363.420000px;}
.x37_c00386{left:364.500000px;}
.x65_c00386{left:365.580000px;}
.x2d_c00386{left:367.920000px;}
.x92_c00386{left:369.000000px;}
.x97_c00386{left:370.920000px;}
.x57_c00386{left:373.500000px;}
.x38_c00386{left:376.920000px;}
.x71_c00386{left:379.500000px;}
.x114_c00386{left:381.000000px;}
.xe4_c00386{left:382.500000px;}
.x1f_c00386{left:384.420000px;}
.x77_c00386{left:385.500000px;}
.x8_c00386{left:387.000000px;}
.x2e_c00386{left:388.500000px;}
.x2_c00386{left:390.000000px;}
.xa0_c00386{left:391.920000px;}
.x13_c00386{left:394.500000px;}
.xef_c00386{left:396.000000px;}
.xe8_c00386{left:397.920000px;}
.x58_c00386{left:399.420000px;}
.xfc_c00386{left:400.920000px;}
.x43_c00386{left:403.500000px;}
.x66_c00386{left:405.000000px;}
.x39_c00386{left:408.420000px;}
.xa3_c00386{left:409.500000px;}
.x88_c00386{left:411.000000px;}
.x14_c00386{left:413.145000px;}
.x93_c00386{left:415.500000px;}
.x20_c00386{left:416.580000px;}
.x11b_c00386{left:418.080000px;}
.xa1_c00386{left:420.420000px;}
.x44_c00386{left:423.000000px;}
.x67_c00386{left:424.920000px;}
.x98_c00386{left:427.920000px;}
.x105_c00386{left:430.500000px;}
.xcb_c00386{left:432.420000px;}
.xbf_c00386{left:433.920000px;}
.xdc_c00386{left:435.000000px;}
.x21_c00386{left:436.500000px;}
.xe9_c00386{left:438.000000px;}
.x9_c00386{left:442.080000px;}
.xce_c00386{left:444.000000px;}
.xc4_c00386{left:446.580000px;}
.x45_c00386{left:448.920000px;}
.xaa_c00386{left:450.645000px;}
.x59_c00386{left:453.000000px;}
.x99_c00386{left:454.500000px;}
.x68_c00386{left:456.420000px;}
.xdf_c00386{left:457.500000px;}
.x7e_c00386{left:459.000000px;}
.xc0_c00386{left:460.500000px;}
.xc5_c00386{left:463.500000px;}
.xd6_c00386{left:465.000000px;}
.x3a_c00386{left:468.000000px;}
.xa4_c00386{left:469.500000px;}
.x5a_c00386{left:471.420000px;}
.xf5_c00386{left:472.920000px;}
.xcc_c00386{left:474.000000px;}
.x72_c00386{left:475.500000px;}
.x2f_c00386{left:477.000000px;}
.x4d_c00386{left:478.920000px;}
.x15_c00386{left:481.080000px;}
.x22_c00386{left:483.000000px;}
.x89_c00386{left:486.420000px;}
.xa_c00386{left:487.500000px;}
.xaf_c00386{left:492.000000px;}
.xab_c00386{left:493.920000px;}
.x5b_c00386{left:495.000000px;}
.xb7_c00386{left:500.580000px;}
.xff_c00386{left:502.500000px;}
.x69_c00386{left:503.580000px;}
.x4e_c00386{left:505.920000px;}
.xf0_c00386{left:507.000000px;}
.x10f_c00386{left:508.920000px;}
.x9a_c00386{left:511.500000px;}
.x5c_c00386{left:513.000000px;}
.x46_c00386{left:516.000000px;}
.x3b_c00386{left:517.920000px;}
.x115_c00386{left:519.000000px;}
.x106_c00386{left:520.080000px;}
.x6a_c00386{left:522.420000px;}
.x8a_c00386{left:523.920000px;}
.x5d_c00386{left:525.000000px;}
.x78_c00386{left:526.500000px;}
.x16_c00386{left:528.000000px;}
.x9b_c00386{left:529.920000px;}
.xb0_c00386{left:531.420000px;}
.x108_c00386{left:534.000000px;}
.x23_c00386{left:535.500000px;}
.xe0_c00386{left:538.920000px;}
.x100_c00386{left:544.920000px;}
.x7f_c00386{left:547.500000px;}
.x6b_c00386{left:549.420000px;}
.x8b_c00386{left:550.500000px;}
.x24_c00386{left:553.080000px;}
.xb8_c00386{left:555.000000px;}
.x4f_c00386{left:556.500000px;}
.xe5_c00386{left:559.920000px;}
.xb_c00386{left:561.000000px;}
.xb1_c00386{left:564.000000px;}
.x80_c00386{left:565.080000px;}
.x84_c00386{left:567.420000px;}
.xcf_c00386{left:571.080000px;}
.x30_c00386{left:573.000000px;}
.x94_c00386{left:575.580000px;}
.xb9_c00386{left:577.920000px;}
.xc6_c00386{left:579.000000px;}
.xfd_c00386{left:580.500000px;}
.xa5_c00386{left:582.000000px;}
.x11c_c00386{left:583.080000px;}
.x110_c00386{left:586.500000px;}
.x47_c00386{left:588.420000px;}
.x3c_c00386{left:589.920000px;}
.x109_c00386{left:592.920000px;}
.xc_c00386{left:594.420000px;}
.x17_c00386{left:595.920000px;}
.xb2_c00386{left:597.420000px;}
.x116_c00386{left:598.500000px;}
.x31_c00386{left:600.420000px;}
.x8c_c00386{left:601.500000px;}
.xf8_c00386{left:603.000000px;}
.xc7_c00386{left:604.500000px;}
.xe1_c00386{left:606.420000px;}
.xd0_c00386{left:607.920000px;}
.x5e_c00386{left:609.000000px;}
.x50_c00386{left:612.420000px;}
.x101_c00386{left:613.500000px;}
.x95_c00386{left:615.420000px;}
.x3d_c00386{left:616.920000px;}
.xd7_c00386{left:618.000000px;}
.xf1_c00386{left:621.000000px;}
.x85_c00386{left:622.920000px;}
.xf9_c00386{left:625.920000px;}
.x25_c00386{left:628.500000px;}
.xd_c00386{left:631.500000px;}
.xac_c00386{left:632.580000px;}
.x6c_c00386{left:634.080000px;}
.xba_c00386{left:637.080000px;}
.x8d_c00386{left:642.000000px;}
.xe_c00386{left:643.080000px;}
.x48_c00386{left:645.000000px;}
.x73_c00386{left:646.500000px;}
.x26_c00386{left:648.000000px;}
.xfe_c00386{left:650.580000px;}
.xd1_c00386{left:652.920000px;}
.x51_c00386{left:654.000000px;}
.x5f_c00386{left:655.500000px;}
.x32_c00386{left:660.420000px;}
.x8e_c00386{left:661.920000px;}
.x111_c00386{left:663.000000px;}
.x27_c00386{left:664.500000px;}
.x3e_c00386{left:666.000000px;}
.xa6_c00386{left:668.580000px;}
.x60_c00386{left:670.500000px;}
.x10a_c00386{left:673.500000px;}
.xbb_c00386{left:676.500000px;}
.x6d_c00386{left:677.580000px;}
.xad_c00386{left:679.500000px;}
.x28_c00386{left:681.000000px;}
.x8f_c00386{left:686.580000px;}
.x10b_c00386{left:690.420000px;}
.x52_c00386{left:691.500000px;}
.xc8_c00386{left:693.000000px;}
.x18_c00386{left:694.920000px;}
.xf2_c00386{left:697.500000px;}
.x33_c00386{left:700.500000px;}
.x61_c00386{left:703.080000px;}
.x1_c00386{left:704.580000px;}
.xf7_c00386{left:706.920000px;}
.x86_c00386{left:708.420000px;}
.xfa_c00386{left:709.920000px;}
.x11d_c00386{left:711.420000px;}
.xd8_c00386{left:713.580000px;}
.x29_c00386{left:715.500000px;}
.x119_c00386{left:718.080000px;}
.x102_c00386{left:724.500000px;}
@media print{
.v1_c00386{vertical-align:-5.333333pt;}
.v0_c00386{vertical-align:0.000000pt;}
.ls0_c00386{letter-spacing:0.000000pt;}
.ws0_c00386{word-spacing:-15.012693pt;}
.ws2_c00386{word-spacing:-7.239117pt;}
.ws1_c00386{word-spacing:-5.689459pt;}
.ws3_c00386{word-spacing:0.000000pt;}
._0_c00386{width:3.657053pt;}
.fs7_c00386{font-size:3.040000pt;}
.fs6_c00386{font-size:12.106667pt;}
.fs5_c00386{font-size:16.640000pt;}
.fs1_c00386{font-size:18.133333pt;}
.fs2_c00386{font-size:22.666667pt;}
.fs0_c00386{font-size:25.706667pt;}
.fs4_c00386{font-size:28.746667pt;}
.fs3_c00386{font-size:31.733333pt;}
.fs8_c00386{font-size:34.773333pt;}
.y0_c00386{bottom:0.000000pt;}
.ye4_c00386{bottom:223.026667pt;}
.ye6_c00386{bottom:225.106667pt;}
.ye3_c00386{bottom:225.693333pt;}
.ye5_c00386{bottom:226.640000pt;}
.ye7_c00386{bottom:227.026667pt;}
.ye0_c00386{bottom:241.106667pt;}
.ye2_c00386{bottom:242.440000pt;}
.ydf_c00386{bottom:243.026667pt;}
.ye1_c00386{bottom:243.226667pt;}
.ydd_c00386{bottom:243.400000pt;}
.yde_c00386{bottom:244.360000pt;}
.ydb_c00386{bottom:257.693333pt;}
.ydc_c00386{bottom:259.773333pt;}
.yda_c00386{bottom:260.560000pt;}
.yd9_c00386{bottom:261.693333pt;}
.yd6_c00386{bottom:276.360000pt;}
.yd4_c00386{bottom:277.106667pt;}
.yd7_c00386{bottom:278.640000pt;}
.yd3_c00386{bottom:279.026667pt;}
.yd5_c00386{bottom:279.226667pt;}
.yd8_c00386{bottom:280.360000pt;}
.yd2_c00386{bottom:294.066667pt;}
.yd0_c00386{bottom:294.440000pt;}
.ycf_c00386{bottom:296.360000pt;}
.yce_c00386{bottom:297.306667pt;}
.yd1_c00386{bottom:297.693333pt;}
.yc8_c00386{bottom:311.026667pt;}
.yc9_c00386{bottom:312.733333pt;}
.ycc_c00386{bottom:313.106667pt;}
.ycb_c00386{bottom:313.693333pt;}
.ycd_c00386{bottom:314.640000pt;}
.yca_c00386{bottom:315.026667pt;}
.yc5_c00386{bottom:328.360000pt;}
.yc6_c00386{bottom:329.106667pt;}
.yc4_c00386{bottom:331.026667pt;}
.yc7_c00386{bottom:331.226667pt;}
.yc2_c00386{bottom:331.973333pt;}
.yc3_c00386{bottom:332.360000pt;}
.yc1_c00386{bottom:345.693333pt;}
.yc0_c00386{bottom:346.440000pt;}
.ybf_c00386{bottom:347.773333pt;}
.ybe_c00386{bottom:348.560000pt;}
.ybd_c00386{bottom:349.693333pt;}
.yba_c00386{bottom:363.026667pt;}
.ybc_c00386{bottom:365.893333pt;}
.ybb_c00386{bottom:366.066667pt;}
.yb8_c00386{bottom:367.026667pt;}
.yb9_c00386{bottom:367.973333pt;}
.yb6_c00386{bottom:382.066667pt;}
.yb3_c00386{bottom:382.440000pt;}
.yb7_c00386{bottom:383.226667pt;}
.yb5_c00386{bottom:384.360000pt;}
.yb4_c00386{bottom:384.560000pt;}
.yb2_c00386{bottom:398.640000pt;}
.yb0_c00386{bottom:399.773333pt;}
.yaf_c00386{bottom:401.693333pt;}
.yb1_c00386{bottom:401.893333pt;}
.yac_c00386{bottom:417.106667pt;}
.yae_c00386{bottom:417.893333pt;}
.yad_c00386{bottom:418.440000pt;}
.yab_c00386{bottom:419.026667pt;}
.ya9_c00386{bottom:419.226667pt;}
.yaa_c00386{bottom:420.360000pt;}
.ya8_c00386{bottom:434.440000pt;}
.ya7_c00386{bottom:435.400000pt;}
.ya6_c00386{bottom:435.773333pt;}
.ya3_c00386{bottom:436.360000pt;}
.ya5_c00386{bottom:436.733333pt;}
.ya4_c00386{bottom:437.693333pt;}
.ya1_c00386{bottom:451.026667pt;}
.ya2_c00386{bottom:452.160000pt;}
.ya0_c00386{bottom:452.360000pt;}
.y9d_c00386{bottom:453.106667pt;}
.y9f_c00386{bottom:453.893333pt;}
.y9e_c00386{bottom:454.066667pt;}
.y9c_c00386{bottom:455.026667pt;}
.y98_c00386{bottom:470.440000pt;}
.y9b_c00386{bottom:471.226667pt;}
.y9a_c00386{bottom:472.360000pt;}
.y99_c00386{bottom:472.373333pt;}
.y94_c00386{bottom:495.026667pt;}
.y95_c00386{bottom:495.226667pt;}
.y96_c00386{bottom:495.973333pt;}
.y97_c00386{bottom:496.173333pt;}
.y93_c00386{bottom:507.026667pt;}
.y92_c00386{bottom:507.400000pt;}
.y8e_c00386{bottom:508.360000pt;}
.y8d_c00386{bottom:508.560000pt;}
.y91_c00386{bottom:509.306667pt;}
.y90_c00386{bottom:509.506667pt;}
.y8f_c00386{bottom:510.266667pt;}
.y8a_c00386{bottom:519.973333pt;}
.y8c_c00386{bottom:520.360000pt;}
.y89_c00386{bottom:520.733333pt;}
.y85_c00386{bottom:520.933333pt;}
.y8b_c00386{bottom:521.306667pt;}
.y86_c00386{bottom:521.693333pt;}
.y88_c00386{bottom:521.893333pt;}
.y87_c00386{bottom:522.640000pt;}
.y81_c00386{bottom:534.066667pt;}
.y82_c00386{bottom:535.026667pt;}
.y83_c00386{bottom:535.226667pt;}
.y84_c00386{bottom:535.973333pt;}
.y7e_c00386{bottom:547.400000pt;}
.y7b_c00386{bottom:547.600000pt;}
.y80_c00386{bottom:547.973333pt;}
.y7d_c00386{bottom:548.560000pt;}
.y7f_c00386{bottom:548.933333pt;}
.y7c_c00386{bottom:549.306667pt;}
.y78_c00386{bottom:560.733333pt;}
.y79_c00386{bottom:561.693333pt;}
.y76_c00386{bottom:562.640000pt;}
.y77_c00386{bottom:562.840000pt;}
.y7a_c00386{bottom:563.600000pt;}
.y75_c00386{bottom:572.733333pt;}
.y6f_c00386{bottom:572.933333pt;}
.y73_c00386{bottom:573.306667pt;}
.y72_c00386{bottom:573.693333pt;}
.y74_c00386{bottom:573.893333pt;}
.y70_c00386{bottom:574.640000pt;}
.y71_c00386{bottom:575.600000pt;}
.y6e_c00386{bottom:586.066667pt;}
.y6b_c00386{bottom:598.640000pt;}
.y6c_c00386{bottom:599.400000pt;}
.y6a_c00386{bottom:600.360000pt;}
.y65_c00386{bottom:600.560000pt;}
.y69_c00386{bottom:600.733333pt;}
.y6d_c00386{bottom:601.306667pt;}
.y67_c00386{bottom:601.693333pt;}
.y66_c00386{bottom:602.266667pt;}
.y64_c00386{bottom:602.640000pt;}
.y68_c00386{bottom:602.840000pt;}
.y62_c00386{bottom:612.733333pt;}
.y61_c00386{bottom:613.693333pt;}
.y5f_c00386{bottom:613.893333pt;}
.y60_c00386{bottom:614.640000pt;}
.y63_c00386{bottom:615.600000pt;}
.y5e_c00386{bottom:625.306667pt;}
.y5d_c00386{bottom:626.066667pt;}
.y5c_c00386{bottom:627.973333pt;}
.y5b_c00386{bottom:628.173333pt;}
.y59_c00386{bottom:640.360000pt;}
.y58_c00386{bottom:641.306667pt;}
.y57_c00386{bottom:641.506667pt;}
.y5a_c00386{bottom:642.266667pt;}
.y56_c00386{bottom:663.773333pt;}
.y55_c00386{bottom:665.693333pt;}
.y52_c00386{bottom:680.360000pt;}
.y50_c00386{bottom:681.106667pt;}
.y54_c00386{bottom:682.640000pt;}
.y51_c00386{bottom:683.026667pt;}
.y53_c00386{bottom:683.226667pt;}
.y4f_c00386{bottom:697.693333pt;}
.y4c_c00386{bottom:698.440000pt;}
.y4e_c00386{bottom:698.640000pt;}
.y4b_c00386{bottom:699.400000pt;}
.y4a_c00386{bottom:700.360000pt;}
.y4d_c00386{bottom:700.560000pt;}
.y47_c00386{bottom:715.773333pt;}
.y48_c00386{bottom:716.733333pt;}
.y45_c00386{bottom:717.693333pt;}
.y46_c00386{bottom:717.893333pt;}
.y49_c00386{bottom:718.640000pt;}
.y41_c00386{bottom:733.106667pt;}
.y40_c00386{bottom:734.440000pt;}
.y42_c00386{bottom:735.026667pt;}
.y43_c00386{bottom:735.973333pt;}
.y44_c00386{bottom:736.360000pt;}
.y3e_c00386{bottom:751.773333pt;}
.y3f_c00386{bottom:752.560000pt;}
.y3d_c00386{bottom:753.306667pt;}
.y3c_c00386{bottom:753.693333pt;}
.y3b_c00386{bottom:769.106667pt;}
.y3a_c00386{bottom:770.640000pt;}
.y39_c00386{bottom:771.026667pt;}
.y37_c00386{bottom:786.440000pt;}
.y38_c00386{bottom:787.226667pt;}
.y36_c00386{bottom:788.360000pt;}
.y34_c00386{bottom:803.026667pt;}
.y31_c00386{bottom:803.773333pt;}
.y35_c00386{bottom:804.560000pt;}
.y32_c00386{bottom:805.306667pt;}
.y33_c00386{bottom:805.693333pt;}
.y30_c00386{bottom:821.106667pt;}
.y2f_c00386{bottom:822.066667pt;}
.y2d_c00386{bottom:823.026667pt;}
.y2e_c00386{bottom:823.226667pt;}
.y2a_c00386{bottom:838.440000pt;}
.y2b_c00386{bottom:839.973333pt;}
.y29_c00386{bottom:840.360000pt;}
.y2c_c00386{bottom:840.560000pt;}
.y26_c00386{bottom:855.026667pt;}
.y27_c00386{bottom:855.773333pt;}
.y25_c00386{bottom:855.973333pt;}
.y22_c00386{bottom:856.733333pt;}
.y28_c00386{bottom:857.306667pt;}
.y21_c00386{bottom:857.693333pt;}
.y24_c00386{bottom:857.893333pt;}
.y23_c00386{bottom:858.640000pt;}
.y1f_c00386{bottom:872.360000pt;}
.y20_c00386{bottom:873.106667pt;}
.y1e_c00386{bottom:874.066667pt;}
.y1d_c00386{bottom:875.226667pt;}
.y1b_c00386{bottom:875.973333pt;}
.y1c_c00386{bottom:876.360000pt;}
.y1a_c00386{bottom:889.693333pt;}
.y18_c00386{bottom:890.440000pt;}
.y16_c00386{bottom:891.773333pt;}
.y14_c00386{bottom:892.360000pt;}
.y17_c00386{bottom:892.560000pt;}
.y19_c00386{bottom:893.306667pt;}
.y15_c00386{bottom:893.693333pt;}
.yd_c00386{bottom:907.773333pt;}
.y13_c00386{bottom:909.693333pt;}
.y12_c00386{bottom:909.893333pt;}
.y11_c00386{bottom:910.066667pt;}
.yf_c00386{bottom:910.640000pt;}
.ye_c00386{bottom:911.026667pt;}
.y10_c00386{bottom:911.973333pt;}
.yb_c00386{bottom:926.066667pt;}
.y9_c00386{bottom:926.440000pt;}
.yc_c00386{bottom:927.026667pt;}
.ya_c00386{bottom:928.360000pt;}
.y7_c00386{bottom:942.640000pt;}
.y5_c00386{bottom:943.773333pt;}
.y8_c00386{bottom:944.560000pt;}
.y6_c00386{bottom:944.733333pt;}
.y3_c00386{bottom:945.693333pt;}
.y4_c00386{bottom:946.640000pt;}
.y1_c00386{bottom:977.693333pt;}
.y2_c00386{bottom:979.600000pt;}
.h8_c00386{height:3.739141pt;}
.h7_c00386{height:14.890964pt;}
.h6_c00386{height:20.466875pt;}
.h2_c00386{height:22.303646pt;}
.h3_c00386{height:27.879557pt;}
.h1_c00386{height:31.618698pt;}
.h5_c00386{height:35.357839pt;}
.h4_c00386{height:39.031380pt;}
.h9_c00386{height:42.770521pt;}
.h0_c00386{height:1186.666667pt;}
.w0_c00386{width:782.666667pt;}
.x0_c00386{left:0.000000pt;}
.x3_c00386{left:134.666667pt;}
.x19_c00386{left:136.000000pt;}
.xa7_c00386{left:136.960000pt;}
.xb3_c00386{left:138.093333pt;}
.xa8_c00386{left:146.666667pt;}
.xa9_c00386{left:148.000000pt;}
.xa2_c00386{left:148.960000pt;}
.x81_c00386{left:150.093333pt;}
.x74_c00386{left:151.626667pt;}
.xe2_c00386{left:153.333333pt;}
.xd2_c00386{left:156.960000pt;}
.x9c_c00386{left:161.333333pt;}
.x3f_c00386{left:162.666667pt;}
.x90_c00386{left:164.000000pt;}
.x53_c00386{left:165.706667pt;}
.xc9_c00386{left:167.240000pt;}
.x103_c00386{left:170.093333pt;}
.xea_c00386{left:171.040000pt;}
.x6e_c00386{left:172.000000pt;}
.x34_c00386{left:174.666667pt;}
.x96_c00386{left:176.960000pt;}
.xe6_c00386{left:179.040000pt;}
.x4_c00386{left:180.000000pt;}
.x2a_c00386{left:180.960000pt;}
.x1a_c00386{left:182.293333pt;}
.xd3_c00386{left:184.373333pt;}
.xf3_c00386{left:185.333333pt;}
.xc1_c00386{left:186.293333pt;}
.x62_c00386{left:188.000000pt;}
.x10c_c00386{left:189.333333pt;}
.x49_c00386{left:190.293333pt;}
.x112_c00386{left:192.000000pt;}
.x79_c00386{left:193.333333pt;}
.x9d_c00386{left:195.626667pt;}
.x2b_c00386{left:196.960000pt;}
.xb4_c00386{left:199.040000pt;}
.x1b_c00386{left:200.373333pt;}
.xd4_c00386{left:201.333333pt;}
.xf4_c00386{left:203.040000pt;}
.x82_c00386{left:204.000000pt;}
.x104_c00386{left:206.293333pt;}
.xf_c00386{left:207.626667pt;}
.x11a_c00386{left:209.333333pt;}
.x40_c00386{left:210.666667pt;}
.xb5_c00386{left:211.626667pt;}
.x91_c00386{left:213.333333pt;}
.x54_c00386{left:216.373333pt;}
.x75_c00386{left:217.333333pt;}
.xe7_c00386{left:218.666667pt;}
.xd9_c00386{left:220.373333pt;}
.xc2_c00386{left:221.333333pt;}
.x41_c00386{left:222.666667pt;}
.x83_c00386{left:224.373333pt;}
.x10_c00386{left:227.040000pt;}
.xdd_c00386{left:228.000000pt;}
.x6f_c00386{left:229.706667pt;}
.x1c_c00386{left:230.666667pt;}
.x10d_c00386{left:233.706667pt;}
.x4a_c00386{left:234.666667pt;}
.xeb_c00386{left:235.626667pt;}
.xfb_c00386{left:238.666667pt;}
.x7a_c00386{left:239.626667pt;}
.x5_c00386{left:241.333333pt;}
.x55_c00386{left:244.000000pt;}
.xda_c00386{left:246.666667pt;}
.xbc_c00386{left:248.000000pt;}
.x1d_c00386{left:249.333333pt;}
.x87_c00386{left:250.666667pt;}
.x11_c00386{left:252.000000pt;}
.xd5_c00386{left:253.333333pt;}
.xec_c00386{left:255.040000pt;}
.x7b_c00386{left:256.373333pt;}
.xbd_c00386{left:257.333333pt;}
.x9e_c00386{left:258.666667pt;}
.x4b_c00386{left:260.960000pt;}
.x63_c00386{left:263.040000pt;}
.xb6_c00386{left:264.000000pt;}
.x6_c00386{left:269.706667pt;}
.x35_c00386{left:270.666667pt;}
.xcd_c00386{left:273.333333pt;}
.xde_c00386{left:276.373333pt;}
.x2c_c00386{left:278.666667pt;}
.xed_c00386{left:280.373333pt;}
.xae_c00386{left:282.293333pt;}
.xe3_c00386{left:283.626667pt;}
.x107_c00386{left:285.706667pt;}
.x7c_c00386{left:286.666667pt;}
.x113_c00386{left:288.373333pt;}
.xf6_c00386{left:289.333333pt;}
.x70_c00386{left:290.666667pt;}
.x76_c00386{left:291.626667pt;}
.x117_c00386{left:293.333333pt;}
.x42_c00386{left:294.666667pt;}
.x64_c00386{left:296.373333pt;}
.x36_c00386{left:297.706667pt;}
.x7_c00386{left:299.626667pt;}
.x4c_c00386{left:303.040000pt;}
.x12_c00386{left:304.000000pt;}
.xc3_c00386{left:305.333333pt;}
.x56_c00386{left:306.293333pt;}
.x10e_c00386{left:309.333333pt;}
.xdb_c00386{left:310.666667pt;}
.x118_c00386{left:313.333333pt;}
.x9f_c00386{left:315.040000pt;}
.x1e_c00386{left:316.373333pt;}
.xee_c00386{left:317.706667pt;}
.x7d_c00386{left:319.040000pt;}
.xca_c00386{left:320.373333pt;}
.xbe_c00386{left:323.040000pt;}
.x37_c00386{left:324.000000pt;}
.x65_c00386{left:324.960000pt;}
.x2d_c00386{left:327.040000pt;}
.x92_c00386{left:328.000000pt;}
.x97_c00386{left:329.706667pt;}
.x57_c00386{left:332.000000pt;}
.x38_c00386{left:335.040000pt;}
.x71_c00386{left:337.333333pt;}
.x114_c00386{left:338.666667pt;}
.xe4_c00386{left:340.000000pt;}
.x1f_c00386{left:341.706667pt;}
.x77_c00386{left:342.666667pt;}
.x8_c00386{left:344.000000pt;}
.x2e_c00386{left:345.333333pt;}
.x2_c00386{left:346.666667pt;}
.xa0_c00386{left:348.373333pt;}
.x13_c00386{left:350.666667pt;}
.xef_c00386{left:352.000000pt;}
.xe8_c00386{left:353.706667pt;}
.x58_c00386{left:355.040000pt;}
.xfc_c00386{left:356.373333pt;}
.x43_c00386{left:358.666667pt;}
.x66_c00386{left:360.000000pt;}
.x39_c00386{left:363.040000pt;}
.xa3_c00386{left:364.000000pt;}
.x88_c00386{left:365.333333pt;}
.x14_c00386{left:367.240000pt;}
.x93_c00386{left:369.333333pt;}
.x20_c00386{left:370.293333pt;}
.x11b_c00386{left:371.626667pt;}
.xa1_c00386{left:373.706667pt;}
.x44_c00386{left:376.000000pt;}
.x67_c00386{left:377.706667pt;}
.x98_c00386{left:380.373333pt;}
.x105_c00386{left:382.666667pt;}
.xcb_c00386{left:384.373333pt;}
.xbf_c00386{left:385.706667pt;}
.xdc_c00386{left:386.666667pt;}
.x21_c00386{left:388.000000pt;}
.xe9_c00386{left:389.333333pt;}
.x9_c00386{left:392.960000pt;}
.xce_c00386{left:394.666667pt;}
.xc4_c00386{left:396.960000pt;}
.x45_c00386{left:399.040000pt;}
.xaa_c00386{left:400.573333pt;}
.x59_c00386{left:402.666667pt;}
.x99_c00386{left:404.000000pt;}
.x68_c00386{left:405.706667pt;}
.xdf_c00386{left:406.666667pt;}
.x7e_c00386{left:408.000000pt;}
.xc0_c00386{left:409.333333pt;}
.xc5_c00386{left:412.000000pt;}
.xd6_c00386{left:413.333333pt;}
.x3a_c00386{left:416.000000pt;}
.xa4_c00386{left:417.333333pt;}
.x5a_c00386{left:419.040000pt;}
.xf5_c00386{left:420.373333pt;}
.xcc_c00386{left:421.333333pt;}
.x72_c00386{left:422.666667pt;}
.x2f_c00386{left:424.000000pt;}
.x4d_c00386{left:425.706667pt;}
.x15_c00386{left:427.626667pt;}
.x22_c00386{left:429.333333pt;}
.x89_c00386{left:432.373333pt;}
.xa_c00386{left:433.333333pt;}
.xaf_c00386{left:437.333333pt;}
.xab_c00386{left:439.040000pt;}
.x5b_c00386{left:440.000000pt;}
.xb7_c00386{left:444.960000pt;}
.xff_c00386{left:446.666667pt;}
.x69_c00386{left:447.626667pt;}
.x4e_c00386{left:449.706667pt;}
.xf0_c00386{left:450.666667pt;}
.x10f_c00386{left:452.373333pt;}
.x9a_c00386{left:454.666667pt;}
.x5c_c00386{left:456.000000pt;}
.x46_c00386{left:458.666667pt;}
.x3b_c00386{left:460.373333pt;}
.x115_c00386{left:461.333333pt;}
.x106_c00386{left:462.293333pt;}
.x6a_c00386{left:464.373333pt;}
.x8a_c00386{left:465.706667pt;}
.x5d_c00386{left:466.666667pt;}
.x78_c00386{left:468.000000pt;}
.x16_c00386{left:469.333333pt;}
.x9b_c00386{left:471.040000pt;}
.xb0_c00386{left:472.373333pt;}
.x108_c00386{left:474.666667pt;}
.x23_c00386{left:476.000000pt;}
.xe0_c00386{left:479.040000pt;}
.x100_c00386{left:484.373333pt;}
.x7f_c00386{left:486.666667pt;}
.x6b_c00386{left:488.373333pt;}
.x8b_c00386{left:489.333333pt;}
.x24_c00386{left:491.626667pt;}
.xb8_c00386{left:493.333333pt;}
.x4f_c00386{left:494.666667pt;}
.xe5_c00386{left:497.706667pt;}
.xb_c00386{left:498.666667pt;}
.xb1_c00386{left:501.333333pt;}
.x80_c00386{left:502.293333pt;}
.x84_c00386{left:504.373333pt;}
.xcf_c00386{left:507.626667pt;}
.x30_c00386{left:509.333333pt;}
.x94_c00386{left:511.626667pt;}
.xb9_c00386{left:513.706667pt;}
.xc6_c00386{left:514.666667pt;}
.xfd_c00386{left:516.000000pt;}
.xa5_c00386{left:517.333333pt;}
.x11c_c00386{left:518.293333pt;}
.x110_c00386{left:521.333333pt;}
.x47_c00386{left:523.040000pt;}
.x3c_c00386{left:524.373333pt;}
.x109_c00386{left:527.040000pt;}
.xc_c00386{left:528.373333pt;}
.x17_c00386{left:529.706667pt;}
.xb2_c00386{left:531.040000pt;}
.x116_c00386{left:532.000000pt;}
.x31_c00386{left:533.706667pt;}
.x8c_c00386{left:534.666667pt;}
.xf8_c00386{left:536.000000pt;}
.xc7_c00386{left:537.333333pt;}
.xe1_c00386{left:539.040000pt;}
.xd0_c00386{left:540.373333pt;}
.x5e_c00386{left:541.333333pt;}
.x50_c00386{left:544.373333pt;}
.x101_c00386{left:545.333333pt;}
.x95_c00386{left:547.040000pt;}
.x3d_c00386{left:548.373333pt;}
.xd7_c00386{left:549.333333pt;}
.xf1_c00386{left:552.000000pt;}
.x85_c00386{left:553.706667pt;}
.xf9_c00386{left:556.373333pt;}
.x25_c00386{left:558.666667pt;}
.xd_c00386{left:561.333333pt;}
.xac_c00386{left:562.293333pt;}
.x6c_c00386{left:563.626667pt;}
.xba_c00386{left:566.293333pt;}
.x8d_c00386{left:570.666667pt;}
.xe_c00386{left:571.626667pt;}
.x48_c00386{left:573.333333pt;}
.x73_c00386{left:574.666667pt;}
.x26_c00386{left:576.000000pt;}
.xfe_c00386{left:578.293333pt;}
.xd1_c00386{left:580.373333pt;}
.x51_c00386{left:581.333333pt;}
.x5f_c00386{left:582.666667pt;}
.x32_c00386{left:587.040000pt;}
.x8e_c00386{left:588.373333pt;}
.x111_c00386{left:589.333333pt;}
.x27_c00386{left:590.666667pt;}
.x3e_c00386{left:592.000000pt;}
.xa6_c00386{left:594.293333pt;}
.x60_c00386{left:596.000000pt;}
.x10a_c00386{left:598.666667pt;}
.xbb_c00386{left:601.333333pt;}
.x6d_c00386{left:602.293333pt;}
.xad_c00386{left:604.000000pt;}
.x28_c00386{left:605.333333pt;}
.x8f_c00386{left:610.293333pt;}
.x10b_c00386{left:613.706667pt;}
.x52_c00386{left:614.666667pt;}
.xc8_c00386{left:616.000000pt;}
.x18_c00386{left:617.706667pt;}
.xf2_c00386{left:620.000000pt;}
.x33_c00386{left:622.666667pt;}
.x61_c00386{left:624.960000pt;}
.x1_c00386{left:626.293333pt;}
.xf7_c00386{left:628.373333pt;}
.x86_c00386{left:629.706667pt;}
.xfa_c00386{left:631.040000pt;}
.x11d_c00386{left:632.373333pt;}
.xd8_c00386{left:634.293333pt;}
.x29_c00386{left:636.000000pt;}
.x119_c00386{left:638.293333pt;}
.x102_c00386{left:644.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_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_641a5ab4c6922d5692a1f57d.woff2')format("woff");}.ff1_c00387{font-family:ff1_c00387;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9f_c00387{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00387{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m94_c00387{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.md6_c00387{transform:matrix(0.346218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346218,0.000000,0.000000,0.250000,0,0);}
.mb0_c00387{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m9c_c00387{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mc9_c00387{transform:matrix(0.363497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363497,0.000000,0.000000,0.250000,0,0);}
.m85_c00387{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m96_c00387{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mde_c00387{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.m93_c00387{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.m79_c00387{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mca_c00387{transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);}
.me9_c00387{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m61_c00387{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mb4_c00387{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m54_c00387{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.mba_c00387{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m72_c00387{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mb5_c00387{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.mdf_c00387{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);}
.md9_c00387{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m0_c00387{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.m52_c00387{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m98_c00387{transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);}
.m9a_c00387{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m31_c00387{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m8a_c00387{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m4b_c00387{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mbd_c00387{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.me2_c00387{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m6_c00387{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mbf_c00387{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m3e_c00387{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m88_c00387{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m71_c00387{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m95_c00387{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mc6_c00387{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.mc0_c00387{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m46_c00387{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m38_c00387{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.meb_c00387{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.mc_c00387{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mee_c00387{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m4e_c00387{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m36_c00387{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m82_c00387{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mab_c00387{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m99_c00387{transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);}
.ma9_c00387{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mcd_c00387{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.mce_c00387{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m13_c00387{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m6f_c00387{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.me1_c00387{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m5a_c00387{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.mdc_c00387{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m91_c00387{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m81_c00387{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.maa_c00387{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.mdb_c00387{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m64_c00387{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.ma0_c00387{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.mc2_c00387{transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);}
.ma1_c00387{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);}
.ma6_c00387{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m86_c00387{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m41_c00387{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mf_c00387{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m8b_c00387{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m69_c00387{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m40_c00387{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mad_c00387{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.m1b_c00387{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m8e_c00387{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m3f_c00387{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m43_c00387{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.maf_c00387{transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);}
.m2b_c00387{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.mcc_c00387{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.mea_c00387{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m68_c00387{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m6c_c00387{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mb7_c00387{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m3c_c00387{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mcb_c00387{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.mdd_c00387{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m4d_c00387{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.me5_c00387{transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);}
.mda_c00387{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.m10_c00387{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.mb3_c00387{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m55_c00387{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.me8_c00387{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.ma5_c00387{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.m4a_c00387{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m51_c00387{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m2a_c00387{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mb2_c00387{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m3a_c00387{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.m5b_c00387{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m6e_c00387{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m7c_c00387{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m25_c00387{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.ma8_c00387{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m5e_c00387{transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);}
.m2f_c00387{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m5f_c00387{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m44_c00387{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);}
.med_c00387{transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);}
.m23_c00387{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m9_c00387{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m5c_c00387{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m2d_c00387{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m1f_c00387{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m20_c00387{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.mc4_c00387{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m62_c00387{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m90_c00387{transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);}
.m11_c00387{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mc8_c00387{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mc7_c00387{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m7f_c00387{transform:matrix(0.513451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513451,0.000000,0.000000,0.250000,0,0);}
.md4_c00387{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.mc5_c00387{transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);}
.m80_c00387{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m78_c00387{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.ma_c00387{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mc1_c00387{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mbc_c00387{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m75_c00387{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m76_c00387{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m58_c00387{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m73_c00387{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m1c_c00387{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m4_c00387{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m19_c00387{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m77_c00387{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m65_c00387{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m12_c00387{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m39_c00387{transform:matrix(0.532468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532468,0.000000,0.000000,0.250000,0,0);}
.m3_c00387{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m7b_c00387{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.md8_c00387{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.mbb_c00387{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.md3_c00387{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m48_c00387{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m66_c00387{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m18_c00387{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m27_c00387{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m16_c00387{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.md5_c00387{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m6a_c00387{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m83_c00387{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m50_c00387{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m53_c00387{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.md_c00387{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mac_c00387{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m49_c00387{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m45_c00387{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m4f_c00387{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mb8_c00387{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m74_c00387{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m7_c00387{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m1a_c00387{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m42_c00387{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m8c_c00387{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mec_c00387{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.md2_c00387{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m35_c00387{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m87_c00387{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m3d_c00387{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m34_c00387{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mcf_c00387{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.m9d_c00387{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m4c_c00387{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.me0_c00387{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m57_c00387{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m6d_c00387{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m9b_c00387{transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);}
.m21_c00387{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.me_c00387{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m7a_c00387{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m59_c00387{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m6b_c00387{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m8d_c00387{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m8f_c00387{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.me3_c00387{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.me7_c00387{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m7e_c00387{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m2c_c00387{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m7d_c00387{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m56_c00387{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mc3_c00387{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m1e_c00387{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);}
.m97_c00387{transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);}
.m29_c00387{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m84_c00387{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m60_c00387{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.md0_c00387{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m2e_c00387{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.m92_c00387{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m17_c00387{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m3b_c00387{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m67_c00387{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m70_c00387{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m2_c00387{transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);}
.mb1_c00387{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);}
.ma3_c00387{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m37_c00387{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.me4_c00387{transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);}
.m15_c00387{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m22_c00387{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.md1_c00387{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m28_c00387{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m30_c00387{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m32_c00387{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m1_c00387{transform:matrix(0.693109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693109,0.000000,0.000000,0.250000,0,0);}
.m89_c00387{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mb9_c00387{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m9e_c00387{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m1d_c00387{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m14_c00387{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m26_c00387{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m24_c00387{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.md7_c00387{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m8_c00387{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mbe_c00387{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.mae_c00387{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m47_c00387{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.me6_c00387{transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);}
.m33_c00387{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m5_c00387{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mb_c00387{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m5d_c00387{transform:matrix(0.796474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.796474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.796474,0.000000,0.000000,0.250000,0,0);}
.mb6_c00387{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.ma7_c00387{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m63_c00387{transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);}
.ma2_c00387{transform:matrix(1.399038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.399038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.399038,0.000000,0.000000,0.250000,0,0);}
.v1_c00387{vertical-align:-6.000000px;}
.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:-7.028500px;}
.ws2_c00387{word-spacing:-6.184625px;}
.ws3_c00387{word-spacing:-4.373143px;}
.ws4_c00387{word-spacing:-1.565065px;}
.ws5_c00387{word-spacing:0.000000px;}
.ws1_c00387{word-spacing:2.671440px;}
.fc0_c00387{color:transparent;}
.fs1_c00387{font-size:18.720000px;}
.fs5_c00387{font-size:20.400000px;}
.fs2_c00387{font-size:25.500000px;}
.fs3_c00387{font-size:28.920000px;}
.fs0_c00387{font-size:32.340000px;}
.fs4_c00387{font-size:35.700000px;}
.fs6_c00387{font-size:39.120000px;}
.y0_c00387{bottom:0.000000px;}
.yce_c00387{bottom:250.245000px;}
.yd0_c00387{bottom:251.745000px;}
.ycd_c00387{bottom:252.405000px;}
.ycf_c00387{bottom:253.905000px;}
.yc9_c00387{bottom:268.905000px;}
.yc7_c00387{bottom:270.405000px;}
.yc5_c00387{bottom:270.630000px;}
.yca_c00387{bottom:271.245000px;}
.yc6_c00387{bottom:271.905000px;}
.ycb_c00387{bottom:272.130000px;}
.ycc_c00387{bottom:272.325000px;}
.yc4_c00387{bottom:272.970000px;}
.yc8_c00387{bottom:273.405000px;}
.yc2_c00387{bottom:290.745000px;}
.yc0_c00387{bottom:290.970000px;}
.ybf_c00387{bottom:291.405000px;}
.yc1_c00387{bottom:292.905000px;}
.yc3_c00387{bottom:293.970000px;}
.ybd_c00387{bottom:308.745000px;}
.yba_c00387{bottom:310.905000px;}
.ybe_c00387{bottom:311.130000px;}
.ybb_c00387{bottom:311.970000px;}
.ybc_c00387{bottom:312.405000px;}
.yb6_c00387{bottom:329.745000px;}
.yb5_c00387{bottom:330.405000px;}
.yb8_c00387{bottom:330.630000px;}
.yb7_c00387{bottom:331.905000px;}
.yb9_c00387{bottom:332.130000px;}
.yb2_c00387{bottom:348.405000px;}
.yb0_c00387{bottom:348.825000px;}
.yb3_c00387{bottom:349.245000px;}
.yb4_c00387{bottom:350.325000px;}
.yb1_c00387{bottom:351.405000px;}
.yad_c00387{bottom:368.745000px;}
.yac_c00387{bottom:370.245000px;}
.yab_c00387{bottom:370.470000px;}
.yaa_c00387{bottom:370.905000px;}
.yaf_c00387{bottom:371.130000px;}
.yae_c00387{bottom:371.970000px;}
.ya7_c00387{bottom:388.245000px;}
.ya6_c00387{bottom:389.745000px;}
.ya3_c00387{bottom:390.405000px;}
.ya4_c00387{bottom:390.630000px;}
.ya5_c00387{bottom:390.825000px;}
.ya9_c00387{bottom:391.470000px;}
.ya8_c00387{bottom:391.905000px;}
.y9f_c00387{bottom:408.180000px;}
.y9e_c00387{bottom:409.905000px;}
.ya2_c00387{bottom:410.130000px;}
.ya1_c00387{bottom:410.325000px;}
.y9d_c00387{bottom:410.970000px;}
.ya0_c00387{bottom:411.405000px;}
.y9b_c00387{bottom:428.745000px;}
.y9c_c00387{bottom:430.905000px;}
.y9a_c00387{bottom:446.970000px;}
.y99_c00387{bottom:448.245000px;}
.y98_c00387{bottom:449.130000px;}
.y97_c00387{bottom:450.405000px;}
.y96_c00387{bottom:467.745000px;}
.y94_c00387{bottom:469.905000px;}
.y95_c00387{bottom:470.970000px;}
.y93_c00387{bottom:486.405000px;}
.y90_c00387{bottom:487.245000px;}
.y91_c00387{bottom:489.405000px;}
.y92_c00387{bottom:489.630000px;}
.y8c_c00387{bottom:506.745000px;}
.y8b_c00387{bottom:507.825000px;}
.y8e_c00387{bottom:508.905000px;}
.y8d_c00387{bottom:509.130000px;}
.y8f_c00387{bottom:509.970000px;}
.y87_c00387{bottom:527.745000px;}
.y86_c00387{bottom:528.405000px;}
.y85_c00387{bottom:528.630000px;}
.y89_c00387{bottom:528.825000px;}
.y8a_c00387{bottom:529.470000px;}
.y88_c00387{bottom:529.905000px;}
.y82_c00387{bottom:547.245000px;}
.y83_c00387{bottom:548.130000px;}
.y84_c00387{bottom:548.325000px;}
.y81_c00387{bottom:549.405000px;}
.y7f_c00387{bottom:564.405000px;}
.y7d_c00387{bottom:566.745000px;}
.y7c_c00387{bottom:567.825000px;}
.y7e_c00387{bottom:568.905000px;}
.y80_c00387{bottom:569.970000px;}
.y79_c00387{bottom:583.905000px;}
.y77_c00387{bottom:584.130000px;}
.y75_c00387{bottom:584.745000px;}
.y7a_c00387{bottom:586.245000px;}
.y7b_c00387{bottom:587.130000px;}
.y74_c00387{bottom:588.405000px;}
.y78_c00387{bottom:589.470000px;}
.y76_c00387{bottom:592.050000px;}
.y73_c00387{bottom:605.745000px;}
.y72_c00387{bottom:607.905000px;}
.y71_c00387{bottom:624.825000px;}
.y6d_c00387{bottom:626.130000px;}
.y70_c00387{bottom:626.745000px;}
.y6f_c00387{bottom:626.970000px;}
.y6e_c00387{bottom:627.405000px;}
.y6c_c00387{bottom:646.245000px;}
.y6b_c00387{bottom:648.405000px;}
.y6a_c00387{bottom:665.745000px;}
.y67_c00387{bottom:666.405000px;}
.y68_c00387{bottom:666.630000px;}
.y69_c00387{bottom:667.905000px;}
.y62_c00387{bottom:684.825000px;}
.y63_c00387{bottom:685.245000px;}
.y61_c00387{bottom:685.905000px;}
.y66_c00387{bottom:686.130000px;}
.y65_c00387{bottom:686.325000px;}
.y64_c00387{bottom:687.405000px;}
.y5f_c00387{bottom:703.245000px;}
.y5e_c00387{bottom:704.745000px;}
.y60_c00387{bottom:705.630000px;}
.y5d_c00387{bottom:706.905000px;}
.y5b_c00387{bottom:724.245000px;}
.y5a_c00387{bottom:726.405000px;}
.y5c_c00387{bottom:726.630000px;}
.y57_c00387{bottom:743.745000px;}
.y59_c00387{bottom:743.970000px;}
.y56_c00387{bottom:745.905000px;}
.y58_c00387{bottom:746.130000px;}
.y53_c00387{bottom:763.245000px;}
.y55_c00387{bottom:764.325000px;}
.y52_c00387{bottom:765.405000px;}
.y54_c00387{bottom:765.630000px;}
.y51_c00387{bottom:781.905000px;}
.y4f_c00387{bottom:782.745000px;}
.y4e_c00387{bottom:784.905000px;}
.y50_c00387{bottom:786.405000px;}
.y4a_c00387{bottom:802.245000px;}
.y4d_c00387{bottom:802.470000px;}
.y49_c00387{bottom:803.325000px;}
.y48_c00387{bottom:804.405000px;}
.y4b_c00387{bottom:804.630000px;}
.y4c_c00387{bottom:805.905000px;}
.y46_c00387{bottom:823.245000px;}
.y44_c00387{bottom:824.970000px;}
.y45_c00387{bottom:825.405000px;}
.y47_c00387{bottom:826.470000px;}
.y40_c00387{bottom:842.745000px;}
.y42_c00387{bottom:843.825000px;}
.y41_c00387{bottom:844.905000px;}
.y43_c00387{bottom:845.970000px;}
.y3b_c00387{bottom:862.245000px;}
.y3c_c00387{bottom:863.130000px;}
.y3d_c00387{bottom:863.325000px;}
.y3e_c00387{bottom:863.970000px;}
.y3a_c00387{bottom:864.405000px;}
.y3f_c00387{bottom:864.630000px;}
.y39_c00387{bottom:881.325000px;}
.y38_c00387{bottom:881.745000px;}
.y35_c00387{bottom:883.905000px;}
.y37_c00387{bottom:884.130000px;}
.y36_c00387{bottom:884.970000px;}
.y34_c00387{bottom:901.245000px;}
.y33_c00387{bottom:902.325000px;}
.y32_c00387{bottom:903.405000px;}
.y2f_c00387{bottom:919.905000px;}
.y2e_c00387{bottom:920.745000px;}
.y31_c00387{bottom:922.245000px;}
.y2d_c00387{bottom:922.905000px;}
.y2c_c00387{bottom:923.130000px;}
.y30_c00387{bottom:924.405000px;}
.y29_c00387{bottom:939.405000px;}
.y26_c00387{bottom:940.245000px;}
.y2a_c00387{bottom:941.745000px;}
.y28_c00387{bottom:942.405000px;}
.y2b_c00387{bottom:942.630000px;}
.y27_c00387{bottom:943.905000px;}
.y20_c00387{bottom:960.825000px;}
.y25_c00387{bottom:961.245000px;}
.y1f_c00387{bottom:961.905000px;}
.y23_c00387{bottom:962.130000px;}
.y24_c00387{bottom:962.325000px;}
.y21_c00387{bottom:962.970000px;}
.y22_c00387{bottom:963.405000px;}
.y1e_c00387{bottom:979.470000px;}
.y1b_c00387{bottom:980.745000px;}
.y19_c00387{bottom:981.405000px;}
.y1c_c00387{bottom:981.630000px;}
.y1a_c00387{bottom:982.470000px;}
.y1d_c00387{bottom:982.905000px;}
.y15_c00387{bottom:1001.130000px;}
.y18_c00387{bottom:1001.325000px;}
.y16_c00387{bottom:1001.970000px;}
.y14_c00387{bottom:1002.405000px;}
.y17_c00387{bottom:1003.470000px;}
.y12_c00387{bottom:1019.325000px;}
.ye_c00387{bottom:1020.405000px;}
.yf_c00387{bottom:1020.630000px;}
.y10_c00387{bottom:1021.470000px;}
.y11_c00387{bottom:1021.905000px;}
.y13_c00387{bottom:1022.970000px;}
.yb_c00387{bottom:1038.825000px;}
.y8_c00387{bottom:1039.245000px;}
.y9_c00387{bottom:1040.325000px;}
.ya_c00387{bottom:1041.405000px;}
.yc_c00387{bottom:1041.630000px;}
.yd_c00387{bottom:1042.470000px;}
.y6_c00387{bottom:1058.745000px;}
.y5_c00387{bottom:1059.630000px;}
.y3_c00387{bottom:1060.470000px;}
.y4_c00387{bottom:1060.905000px;}
.y7_c00387{bottom:1061.130000px;}
.y1_c00387{bottom:1098.825000px;}
.y2_c00387{bottom:1100.130000px;}
.h2_c00387{height:23.025234px;}
.h6_c00387{height:25.091602px;}
.h3_c00387{height:31.364502px;}
.h4_c00387{height:35.571035px;}
.h1_c00387{height:39.777568px;}
.h5_c00387{height:43.910303px;}
.h7_c00387{height:48.116836px;}
.h0_c00387{height:1335.000000px;}
.w0_c00387{width:880.500000px;}
.x0_c00387{left:0.000000px;}
.xeb_c00387{left:151.500000px;}
.x3_c00387{left:153.420000px;}
.x1_c00387{left:154.500000px;}
.xe5_c00387{left:164.580000px;}
.x113_c00387{left:168.000000px;}
.xaa_c00387{left:169.500000px;}
.xd1_c00387{left:174.420000px;}
.xa3_c00387{left:180.420000px;}
.xb3_c00387{left:181.500000px;}
.x5b_c00387{left:183.000000px;}
.x4f_c00387{left:185.580000px;}
.xc8_c00387{left:190.500000px;}
.xf3_c00387{left:192.000000px;}
.x39_c00387{left:195.000000px;}
.x75_c00387{left:199.500000px;}
.x1e_c00387{left:201.420000px;}
.xc9_c00387{left:202.500000px;}
.x6c_c00387{left:203.580000px;}
.x4_c00387{left:205.920000px;}
.xf4_c00387{left:207.420000px;}
.xe6_c00387{left:210.000000px;}
.xa4_c00387{left:211.080000px;}
.xec_c00387{left:213.420000px;}
.x8f_c00387{left:214.500000px;}
.xfb_c00387{left:216.420000px;}
.x3a_c00387{left:217.920000px;}
.xb4_c00387{left:219.420000px;}
.x2d_c00387{left:220.920000px;}
.xe1_c00387{left:225.420000px;}
.x11_c00387{left:227.355000px;}
.x5c_c00387{left:229.920000px;}
.x5_c00387{left:234.000000px;}
.x47_c00387{left:235.500000px;}
.x50_c00387{left:238.920000px;}
.xab_c00387{left:240.420000px;}
.xa5_c00387{left:241.500000px;}
.x100_c00387{left:243.000000px;}
.x3b_c00387{left:244.080000px;}
.xca_c00387{left:246.420000px;}
.xed_c00387{left:247.500000px;}
.x118_c00387{left:249.420000px;}
.x7e_c00387{left:251.580000px;}
.x65_c00387{left:253.500000px;}
.xb5_c00387{left:255.000000px;}
.xbb_c00387{left:256.080000px;}
.xce_c00387{left:257.580000px;}
.x90_c00387{left:259.500000px;}
.x2e_c00387{left:262.080000px;}
.x1f_c00387{left:264.000000px;}
.x51_c00387{left:265.080000px;}
.x12_c00387{left:266.580000px;}
.x6d_c00387{left:269.580000px;}
.xee_c00387{left:271.080000px;}
.x6_c00387{left:276.000000px;}
.x3c_c00387{left:277.080000px;}
.xac_c00387{left:279.420000px;}
.x2f_c00387{left:280.920000px;}
.xcb_c00387{left:282.000000px;}
.xd5_c00387{left:285.000000px;}
.xf5_c00387{left:286.920000px;}
.x6e_c00387{left:288.420000px;}
.x66_c00387{left:291.000000px;}
.x20_c00387{left:295.080000px;}
.x112_c00387{left:297.420000px;}
.x7f_c00387{left:303.420000px;}
.xbc_c00387{left:304.500000px;}
.x7_c00387{left:306.420000px;}
.x67_c00387{left:307.920000px;}
.x30_c00387{left:309.420000px;}
.x91_c00387{left:310.920000px;}
.x5d_c00387{left:312.000000px;}
.x76_c00387{left:313.920000px;}
.x13_c00387{left:316.080000px;}
.xf6_c00387{left:321.000000px;}
.x3d_c00387{left:322.920000px;}
.x87_c00387{left:324.000000px;}
.x106_c00387{left:325.500000px;}
.x48_c00387{left:327.000000px;}
.x10d_c00387{left:328.500000px;}
.xe2_c00387{left:330.000000px;}
.xad_c00387{left:331.920000px;}
.xd2_c00387{left:333.000000px;}
.xa6_c00387{left:334.500000px;}
.x21_c00387{left:336.000000px;}
.x92_c00387{left:337.500000px;}
.xfc_c00387{left:338.580000px;}
.x52_c00387{left:340.080000px;}
.x77_c00387{left:342.420000px;}
.xd6_c00387{left:345.000000px;}
.x9a_c00387{left:346.080000px;}
.x80_c00387{left:348.000000px;}
.xbd_c00387{left:349.500000px;}
.xe7_c00387{left:351.000000px;}
.x93_c00387{left:352.500000px;}
.x10f_c00387{left:354.420000px;}
.x8_c00387{left:355.920000px;}
.x14_c00387{left:357.000000px;}
.x88_c00387{left:358.080000px;}
.x3e_c00387{left:360.000000px;}
.x31_c00387{left:361.500000px;}
.xb6_c00387{left:363.000000px;}
.x9b_c00387{left:364.920000px;}
.x101_c00387{left:366.000000px;}
.x49_c00387{left:367.500000px;}
.x6f_c00387{left:369.000000px;}
.x22_c00387{left:370.080000px;}
.xd7_c00387{left:375.000000px;}
.xa7_c00387{left:376.500000px;}
.xf7_c00387{left:378.000000px;}
.x10b_c00387{left:379.920000px;}
.x10e_c00387{left:382.080000px;}
.x4a_c00387{left:384.000000px;}
.x53_c00387{left:387.000000px;}
.x23_c00387{left:388.920000px;}
.xae_c00387{left:390.420000px;}
.x3f_c00387{left:391.920000px;}
.x2_c00387{left:393.000000px;}
.x9_c00387{left:394.500000px;}
.x15_c00387{left:396.000000px;}
.x4b_c00387{left:397.500000px;}
.xfd_c00387{left:399.000000px;}
.x94_c00387{left:401.580000px;}
.x109_c00387{left:403.080000px;}
.x70_c00387{left:405.000000px;}
.xc1_c00387{left:406.500000px;}
.xd8_c00387{left:408.000000px;}
.xcc_c00387{left:409.500000px;}
.x78_c00387{left:411.420000px;}
.xd3_c00387{left:413.580000px;}
.x24_c00387{left:415.080000px;}
.x5e_c00387{left:417.420000px;}
.xa_c00387{left:418.920000px;}
.xaf_c00387{left:420.000000px;}
.x16_c00387{left:421.500000px;}
.xc2_c00387{left:423.000000px;}
.x32_c00387{left:424.080000px;}
.x40_c00387{left:430.500000px;}
.x54_c00387{left:432.000000px;}
.xa8_c00387{left:433.500000px;}
.xcf_c00387{left:434.580000px;}
.xbe_c00387{left:436.500000px;}
.xb7_c00387{left:438.420000px;}
.x79_c00387{left:439.920000px;}
.xd9_c00387{left:441.000000px;}
.x33_c00387{left:442.920000px;}
.xb0_c00387{left:444.000000px;}
.x41_c00387{left:445.500000px;}
.xb_c00387{left:447.000000px;}
.x95_c00387{left:448.500000px;}
.x119_c00387{left:450.420000px;}
.x81_c00387{left:453.000000px;}
.x25_c00387{left:456.000000px;}
.x42_c00387{left:457.500000px;}
.x115_c00387{left:458.580000px;}
.x102_c00387{left:460.920000px;}
.xf8_c00387{left:462.000000px;}
.x17_c00387{left:465.000000px;}
.xcd_c00387{left:466.920000px;}
.xef_c00387{left:469.500000px;}
.x34_c00387{left:470.580000px;}
.x68_c00387{left:472.500000px;}
.x11a_c00387{left:475.080000px;}
.xfe_c00387{left:477.000000px;}
.x116_c00387{left:478.920000px;}
.x9c_c00387{left:480.420000px;}
.x18_c00387{left:481.500000px;}
.x107_c00387{left:484.500000px;}
.x55_c00387{left:485.580000px;}
.xc3_c00387{left:487.500000px;}
.x103_c00387{left:488.580000px;}
.x82_c00387{left:490.920000px;}
.x4c_c00387{left:492.000000px;}
.x96_c00387{left:493.500000px;}
.x89_c00387{left:498.000000px;}
.x43_c00387{left:499.080000px;}
.x71_c00387{left:500.580000px;}
.xc_c00387{left:502.080000px;}
.xe8_c00387{left:504.000000px;}
.x56_c00387{left:505.920000px;}
.x9d_c00387{left:507.000000px;}
.x19_c00387{left:508.500000px;}
.xc4_c00387{left:510.000000px;}
.x35_c00387{left:511.500000px;}
.xbf_c00387{left:515.580000px;}
.xda_c00387{left:517.500000px;}
.x83_c00387{left:519.420000px;}
.xf0_c00387{left:520.500000px;}
.xde_c00387{left:522.000000px;}
.x5f_c00387{left:525.000000px;}
.x26_c00387{left:526.500000px;}
.xe9_c00387{left:529.500000px;}
.x57_c00387{left:532.500000px;}
.xd_c00387{left:535.500000px;}
.x44_c00387{left:537.000000px;}
.x7a_c00387{left:538.500000px;}
.x9e_c00387{left:541.080000px;}
.x60_c00387{left:543.000000px;}
.x84_c00387{left:544.080000px;}
.x4d_c00387{left:547.920000px;}
.xc5_c00387{left:549.000000px;}
.x97_c00387{left:550.080000px;}
.x8a_c00387{left:551.580000px;}
.x27_c00387{left:553.500000px;}
.x72_c00387{left:555.420000px;}
.x108_c00387{left:556.500000px;}
.x61_c00387{left:557.580000px;}
.x1a_c00387{left:562.500000px;}
.x36_c00387{left:564.000000px;}
.xf9_c00387{left:567.000000px;}
.x10c_c00387{left:568.500000px;}
.xdb_c00387{left:570.000000px;}
.x7b_c00387{left:571.500000px;}
.xb8_c00387{left:573.420000px;}
.xff_c00387{left:574.920000px;}
.xe_c00387{left:576.420000px;}
.x110_c00387{left:577.500000px;}
.xdf_c00387{left:579.000000px;}
.x37_c00387{left:580.500000px;}
.xfa_c00387{left:582.000000px;}
.x9f_c00387{left:583.500000px;}
.x28_c00387{left:585.000000px;}
.x11b_c00387{left:587.580000px;}
.xe3_c00387{left:589.500000px;}
.x1b_c00387{left:590.580000px;}
.x85_c00387{left:592.500000px;}
.x58_c00387{left:595.500000px;}
.x111_c00387{left:597.000000px;}
.x8b_c00387{left:598.500000px;}
.xb9_c00387{left:600.420000px;}
.xd4_c00387{left:601.500000px;}
.x4e_c00387{left:603.000000px;}
.xa9_c00387{left:606.000000px;}
.x45_c00387{left:608.580000px;}
.x7c_c00387{left:611.580000px;}
.x29_c00387{left:613.500000px;}
.xc6_c00387{left:615.420000px;}
.xa0_c00387{left:616.500000px;}
.x104_c00387{left:617.580000px;}
.x62_c00387{left:620.580000px;}
.xdc_c00387{left:626.580000px;}
.x73_c00387{left:631.080000px;}
.xf1_c00387{left:634.920000px;}
.x59_c00387{left:636.000000px;}
.x8c_c00387{left:637.500000px;}
.x98_c00387{left:638.580000px;}
.xba_c00387{left:640.500000px;}
.x69_c00387{left:641.580000px;}
.x46_c00387{left:643.920000px;}
.x114_c00387{left:645.000000px;}
.xf_c00387{left:646.080000px;}
.xb1_c00387{left:648.000000px;}
.xc7_c00387{left:649.080000px;}
.x1c_c00387{left:650.580000px;}
.x2a_c00387{left:652.080000px;}
.x8d_c00387{left:654.000000px;}
.xea_c00387{left:655.500000px;}
.xa1_c00387{left:658.500000px;}
.x63_c00387{left:660.000000px;}
.xd0_c00387{left:661.920000px;}
.x11c_c00387{left:664.500000px;}
.x7d_c00387{left:669.000000px;}
.x2b_c00387{left:670.500000px;}
.x105_c00387{left:674.580000px;}
.x86_c00387{left:676.500000px;}
.xc0_c00387{left:679.500000px;}
.x1d_c00387{left:681.000000px;}
.x38_c00387{left:682.500000px;}
.xb2_c00387{left:684.420000px;}
.x10a_c00387{left:685.920000px;}
.xe0_c00387{left:687.000000px;}
.x8e_c00387{left:688.080000px;}
.x5a_c00387{left:689.580000px;}
.x6a_c00387{left:691.080000px;}
.x64_c00387{left:693.000000px;}
.x2c_c00387{left:697.920000px;}
.x99_c00387{left:699.420000px;}
.xe4_c00387{left:700.500000px;}
.x10_c00387{left:702.000000px;}
.xf2_c00387{left:703.920000px;}
.x117_c00387{left:708.420000px;}
.x6b_c00387{left:709.920000px;}
.xdd_c00387{left:714.000000px;}
.x74_c00387{left:715.500000px;}
.xa2_c00387{left:716.580000px;}
@media print{
.v1_c00387{vertical-align:-5.333333pt;}
.v0_c00387{vertical-align:0.000000pt;}
.ls0_c00387{letter-spacing:0.000000pt;}
.ws0_c00387{word-spacing:-6.247556pt;}
.ws2_c00387{word-spacing:-5.497444pt;}
.ws3_c00387{word-spacing:-3.887238pt;}
.ws4_c00387{word-spacing:-1.391169pt;}
.ws5_c00387{word-spacing:0.000000pt;}
.ws1_c00387{word-spacing:2.374613pt;}
.fs1_c00387{font-size:16.640000pt;}
.fs5_c00387{font-size:18.133333pt;}
.fs2_c00387{font-size:22.666667pt;}
.fs3_c00387{font-size:25.706667pt;}
.fs0_c00387{font-size:28.746667pt;}
.fs4_c00387{font-size:31.733333pt;}
.fs6_c00387{font-size:34.773333pt;}
.y0_c00387{bottom:0.000000pt;}
.yce_c00387{bottom:222.440000pt;}
.yd0_c00387{bottom:223.773333pt;}
.ycd_c00387{bottom:224.360000pt;}
.ycf_c00387{bottom:225.693333pt;}
.yc9_c00387{bottom:239.026667pt;}
.yc7_c00387{bottom:240.360000pt;}
.yc5_c00387{bottom:240.560000pt;}
.yca_c00387{bottom:241.106667pt;}
.yc6_c00387{bottom:241.693333pt;}
.ycb_c00387{bottom:241.893333pt;}
.ycc_c00387{bottom:242.066667pt;}
.yc4_c00387{bottom:242.640000pt;}
.yc8_c00387{bottom:243.026667pt;}
.yc2_c00387{bottom:258.440000pt;}
.yc0_c00387{bottom:258.640000pt;}
.ybf_c00387{bottom:259.026667pt;}
.yc1_c00387{bottom:260.360000pt;}
.yc3_c00387{bottom:261.306667pt;}
.ybd_c00387{bottom:274.440000pt;}
.yba_c00387{bottom:276.360000pt;}
.ybe_c00387{bottom:276.560000pt;}
.ybb_c00387{bottom:277.306667pt;}
.ybc_c00387{bottom:277.693333pt;}
.yb6_c00387{bottom:293.106667pt;}
.yb5_c00387{bottom:293.693333pt;}
.yb8_c00387{bottom:293.893333pt;}
.yb7_c00387{bottom:295.026667pt;}
.yb9_c00387{bottom:295.226667pt;}
.yb2_c00387{bottom:309.693333pt;}
.yb0_c00387{bottom:310.066667pt;}
.yb3_c00387{bottom:310.440000pt;}
.yb4_c00387{bottom:311.400000pt;}
.yb1_c00387{bottom:312.360000pt;}
.yad_c00387{bottom:327.773333pt;}
.yac_c00387{bottom:329.106667pt;}
.yab_c00387{bottom:329.306667pt;}
.yaa_c00387{bottom:329.693333pt;}
.yaf_c00387{bottom:329.893333pt;}
.yae_c00387{bottom:330.640000pt;}
.ya7_c00387{bottom:345.106667pt;}
.ya6_c00387{bottom:346.440000pt;}
.ya3_c00387{bottom:347.026667pt;}
.ya4_c00387{bottom:347.226667pt;}
.ya5_c00387{bottom:347.400000pt;}
.ya9_c00387{bottom:347.973333pt;}
.ya8_c00387{bottom:348.360000pt;}
.y9f_c00387{bottom:362.826667pt;}
.y9e_c00387{bottom:364.360000pt;}
.ya2_c00387{bottom:364.560000pt;}
.ya1_c00387{bottom:364.733333pt;}
.y9d_c00387{bottom:365.306667pt;}
.ya0_c00387{bottom:365.693333pt;}
.y9b_c00387{bottom:381.106667pt;}
.y9c_c00387{bottom:383.026667pt;}
.y9a_c00387{bottom:397.306667pt;}
.y99_c00387{bottom:398.440000pt;}
.y98_c00387{bottom:399.226667pt;}
.y97_c00387{bottom:400.360000pt;}
.y96_c00387{bottom:415.773333pt;}
.y94_c00387{bottom:417.693333pt;}
.y95_c00387{bottom:418.640000pt;}
.y93_c00387{bottom:432.360000pt;}
.y90_c00387{bottom:433.106667pt;}
.y91_c00387{bottom:435.026667pt;}
.y92_c00387{bottom:435.226667pt;}
.y8c_c00387{bottom:450.440000pt;}
.y8b_c00387{bottom:451.400000pt;}
.y8e_c00387{bottom:452.360000pt;}
.y8d_c00387{bottom:452.560000pt;}
.y8f_c00387{bottom:453.306667pt;}
.y87_c00387{bottom:469.106667pt;}
.y86_c00387{bottom:469.693333pt;}
.y85_c00387{bottom:469.893333pt;}
.y89_c00387{bottom:470.066667pt;}
.y8a_c00387{bottom:470.640000pt;}
.y88_c00387{bottom:471.026667pt;}
.y82_c00387{bottom:486.440000pt;}
.y83_c00387{bottom:487.226667pt;}
.y84_c00387{bottom:487.400000pt;}
.y81_c00387{bottom:488.360000pt;}
.y7f_c00387{bottom:501.693333pt;}
.y7d_c00387{bottom:503.773333pt;}
.y7c_c00387{bottom:504.733333pt;}
.y7e_c00387{bottom:505.693333pt;}
.y80_c00387{bottom:506.640000pt;}
.y79_c00387{bottom:519.026667pt;}
.y77_c00387{bottom:519.226667pt;}
.y75_c00387{bottom:519.773333pt;}
.y7a_c00387{bottom:521.106667pt;}
.y7b_c00387{bottom:521.893333pt;}
.y74_c00387{bottom:523.026667pt;}
.y78_c00387{bottom:523.973333pt;}
.y76_c00387{bottom:526.266667pt;}
.y73_c00387{bottom:538.440000pt;}
.y72_c00387{bottom:540.360000pt;}
.y71_c00387{bottom:555.400000pt;}
.y6d_c00387{bottom:556.560000pt;}
.y70_c00387{bottom:557.106667pt;}
.y6f_c00387{bottom:557.306667pt;}
.y6e_c00387{bottom:557.693333pt;}
.y6c_c00387{bottom:574.440000pt;}
.y6b_c00387{bottom:576.360000pt;}
.y6a_c00387{bottom:591.773333pt;}
.y67_c00387{bottom:592.360000pt;}
.y68_c00387{bottom:592.560000pt;}
.y69_c00387{bottom:593.693333pt;}
.y62_c00387{bottom:608.733333pt;}
.y63_c00387{bottom:609.106667pt;}
.y61_c00387{bottom:609.693333pt;}
.y66_c00387{bottom:609.893333pt;}
.y65_c00387{bottom:610.066667pt;}
.y64_c00387{bottom:611.026667pt;}
.y5f_c00387{bottom:625.106667pt;}
.y5e_c00387{bottom:626.440000pt;}
.y60_c00387{bottom:627.226667pt;}
.y5d_c00387{bottom:628.360000pt;}
.y5b_c00387{bottom:643.773333pt;}
.y5a_c00387{bottom:645.693333pt;}
.y5c_c00387{bottom:645.893333pt;}
.y57_c00387{bottom:661.106667pt;}
.y59_c00387{bottom:661.306667pt;}
.y56_c00387{bottom:663.026667pt;}
.y58_c00387{bottom:663.226667pt;}
.y53_c00387{bottom:678.440000pt;}
.y55_c00387{bottom:679.400000pt;}
.y52_c00387{bottom:680.360000pt;}
.y54_c00387{bottom:680.560000pt;}
.y51_c00387{bottom:695.026667pt;}
.y4f_c00387{bottom:695.773333pt;}
.y4e_c00387{bottom:697.693333pt;}
.y50_c00387{bottom:699.026667pt;}
.y4a_c00387{bottom:713.106667pt;}
.y4d_c00387{bottom:713.306667pt;}
.y49_c00387{bottom:714.066667pt;}
.y48_c00387{bottom:715.026667pt;}
.y4b_c00387{bottom:715.226667pt;}
.y4c_c00387{bottom:716.360000pt;}
.y46_c00387{bottom:731.773333pt;}
.y44_c00387{bottom:733.306667pt;}
.y45_c00387{bottom:733.693333pt;}
.y47_c00387{bottom:734.640000pt;}
.y40_c00387{bottom:749.106667pt;}
.y42_c00387{bottom:750.066667pt;}
.y41_c00387{bottom:751.026667pt;}
.y43_c00387{bottom:751.973333pt;}
.y3b_c00387{bottom:766.440000pt;}
.y3c_c00387{bottom:767.226667pt;}
.y3d_c00387{bottom:767.400000pt;}
.y3e_c00387{bottom:767.973333pt;}
.y3a_c00387{bottom:768.360000pt;}
.y3f_c00387{bottom:768.560000pt;}
.y39_c00387{bottom:783.400000pt;}
.y38_c00387{bottom:783.773333pt;}
.y35_c00387{bottom:785.693333pt;}
.y37_c00387{bottom:785.893333pt;}
.y36_c00387{bottom:786.640000pt;}
.y34_c00387{bottom:801.106667pt;}
.y33_c00387{bottom:802.066667pt;}
.y32_c00387{bottom:803.026667pt;}
.y2f_c00387{bottom:817.693333pt;}
.y2e_c00387{bottom:818.440000pt;}
.y31_c00387{bottom:819.773333pt;}
.y2d_c00387{bottom:820.360000pt;}
.y2c_c00387{bottom:820.560000pt;}
.y30_c00387{bottom:821.693333pt;}
.y29_c00387{bottom:835.026667pt;}
.y26_c00387{bottom:835.773333pt;}
.y2a_c00387{bottom:837.106667pt;}
.y28_c00387{bottom:837.693333pt;}
.y2b_c00387{bottom:837.893333pt;}
.y27_c00387{bottom:839.026667pt;}
.y20_c00387{bottom:854.066667pt;}
.y25_c00387{bottom:854.440000pt;}
.y1f_c00387{bottom:855.026667pt;}
.y23_c00387{bottom:855.226667pt;}
.y24_c00387{bottom:855.400000pt;}
.y21_c00387{bottom:855.973333pt;}
.y22_c00387{bottom:856.360000pt;}
.y1e_c00387{bottom:870.640000pt;}
.y1b_c00387{bottom:871.773333pt;}
.y19_c00387{bottom:872.360000pt;}
.y1c_c00387{bottom:872.560000pt;}
.y1a_c00387{bottom:873.306667pt;}
.y1d_c00387{bottom:873.693333pt;}
.y15_c00387{bottom:889.893333pt;}
.y18_c00387{bottom:890.066667pt;}
.y16_c00387{bottom:890.640000pt;}
.y14_c00387{bottom:891.026667pt;}
.y17_c00387{bottom:891.973333pt;}
.y12_c00387{bottom:906.066667pt;}
.ye_c00387{bottom:907.026667pt;}
.yf_c00387{bottom:907.226667pt;}
.y10_c00387{bottom:907.973333pt;}
.y11_c00387{bottom:908.360000pt;}
.y13_c00387{bottom:909.306667pt;}
.yb_c00387{bottom:923.400000pt;}
.y8_c00387{bottom:923.773333pt;}
.y9_c00387{bottom:924.733333pt;}
.ya_c00387{bottom:925.693333pt;}
.yc_c00387{bottom:925.893333pt;}
.yd_c00387{bottom:926.640000pt;}
.y6_c00387{bottom:941.106667pt;}
.y5_c00387{bottom:941.893333pt;}
.y3_c00387{bottom:942.640000pt;}
.y4_c00387{bottom:943.026667pt;}
.y7_c00387{bottom:943.226667pt;}
.y1_c00387{bottom:976.733333pt;}
.y2_c00387{bottom:977.893333pt;}
.h2_c00387{height:20.466875pt;}
.h6_c00387{height:22.303646pt;}
.h3_c00387{height:27.879557pt;}
.h4_c00387{height:31.618698pt;}
.h1_c00387{height:35.357839pt;}
.h5_c00387{height:39.031380pt;}
.h7_c00387{height:42.770521pt;}
.h0_c00387{height:1186.666667pt;}
.w0_c00387{width:782.666667pt;}
.x0_c00387{left:0.000000pt;}
.xeb_c00387{left:134.666667pt;}
.x3_c00387{left:136.373333pt;}
.x1_c00387{left:137.333333pt;}
.xe5_c00387{left:146.293333pt;}
.x113_c00387{left:149.333333pt;}
.xaa_c00387{left:150.666667pt;}
.xd1_c00387{left:155.040000pt;}
.xa3_c00387{left:160.373333pt;}
.xb3_c00387{left:161.333333pt;}
.x5b_c00387{left:162.666667pt;}
.x4f_c00387{left:164.960000pt;}
.xc8_c00387{left:169.333333pt;}
.xf3_c00387{left:170.666667pt;}
.x39_c00387{left:173.333333pt;}
.x75_c00387{left:177.333333pt;}
.x1e_c00387{left:179.040000pt;}
.xc9_c00387{left:180.000000pt;}
.x6c_c00387{left:180.960000pt;}
.x4_c00387{left:183.040000pt;}
.xf4_c00387{left:184.373333pt;}
.xe6_c00387{left:186.666667pt;}
.xa4_c00387{left:187.626667pt;}
.xec_c00387{left:189.706667pt;}
.x8f_c00387{left:190.666667pt;}
.xfb_c00387{left:192.373333pt;}
.x3a_c00387{left:193.706667pt;}
.xb4_c00387{left:195.040000pt;}
.x2d_c00387{left:196.373333pt;}
.xe1_c00387{left:200.373333pt;}
.x11_c00387{left:202.093333pt;}
.x5c_c00387{left:204.373333pt;}
.x5_c00387{left:208.000000pt;}
.x47_c00387{left:209.333333pt;}
.x50_c00387{left:212.373333pt;}
.xab_c00387{left:213.706667pt;}
.xa5_c00387{left:214.666667pt;}
.x100_c00387{left:216.000000pt;}
.x3b_c00387{left:216.960000pt;}
.xca_c00387{left:219.040000pt;}
.xed_c00387{left:220.000000pt;}
.x118_c00387{left:221.706667pt;}
.x7e_c00387{left:223.626667pt;}
.x65_c00387{left:225.333333pt;}
.xb5_c00387{left:226.666667pt;}
.xbb_c00387{left:227.626667pt;}
.xce_c00387{left:228.960000pt;}
.x90_c00387{left:230.666667pt;}
.x2e_c00387{left:232.960000pt;}
.x1f_c00387{left:234.666667pt;}
.x51_c00387{left:235.626667pt;}
.x12_c00387{left:236.960000pt;}
.x6d_c00387{left:239.626667pt;}
.xee_c00387{left:240.960000pt;}
.x6_c00387{left:245.333333pt;}
.x3c_c00387{left:246.293333pt;}
.xac_c00387{left:248.373333pt;}
.x2f_c00387{left:249.706667pt;}
.xcb_c00387{left:250.666667pt;}
.xd5_c00387{left:253.333333pt;}
.xf5_c00387{left:255.040000pt;}
.x6e_c00387{left:256.373333pt;}
.x66_c00387{left:258.666667pt;}
.x20_c00387{left:262.293333pt;}
.x112_c00387{left:264.373333pt;}
.x7f_c00387{left:269.706667pt;}
.xbc_c00387{left:270.666667pt;}
.x7_c00387{left:272.373333pt;}
.x67_c00387{left:273.706667pt;}
.x30_c00387{left:275.040000pt;}
.x91_c00387{left:276.373333pt;}
.x5d_c00387{left:277.333333pt;}
.x76_c00387{left:279.040000pt;}
.x13_c00387{left:280.960000pt;}
.xf6_c00387{left:285.333333pt;}
.x3d_c00387{left:287.040000pt;}
.x87_c00387{left:288.000000pt;}
.x106_c00387{left:289.333333pt;}
.x48_c00387{left:290.666667pt;}
.x10d_c00387{left:292.000000pt;}
.xe2_c00387{left:293.333333pt;}
.xad_c00387{left:295.040000pt;}
.xd2_c00387{left:296.000000pt;}
.xa6_c00387{left:297.333333pt;}
.x21_c00387{left:298.666667pt;}
.x92_c00387{left:300.000000pt;}
.xfc_c00387{left:300.960000pt;}
.x52_c00387{left:302.293333pt;}
.x77_c00387{left:304.373333pt;}
.xd6_c00387{left:306.666667pt;}
.x9a_c00387{left:307.626667pt;}
.x80_c00387{left:309.333333pt;}
.xbd_c00387{left:310.666667pt;}
.xe7_c00387{left:312.000000pt;}
.x93_c00387{left:313.333333pt;}
.x10f_c00387{left:315.040000pt;}
.x8_c00387{left:316.373333pt;}
.x14_c00387{left:317.333333pt;}
.x88_c00387{left:318.293333pt;}
.x3e_c00387{left:320.000000pt;}
.x31_c00387{left:321.333333pt;}
.xb6_c00387{left:322.666667pt;}
.x9b_c00387{left:324.373333pt;}
.x101_c00387{left:325.333333pt;}
.x49_c00387{left:326.666667pt;}
.x6f_c00387{left:328.000000pt;}
.x22_c00387{left:328.960000pt;}
.xd7_c00387{left:333.333333pt;}
.xa7_c00387{left:334.666667pt;}
.xf7_c00387{left:336.000000pt;}
.x10b_c00387{left:337.706667pt;}
.x10e_c00387{left:339.626667pt;}
.x4a_c00387{left:341.333333pt;}
.x53_c00387{left:344.000000pt;}
.x23_c00387{left:345.706667pt;}
.xae_c00387{left:347.040000pt;}
.x3f_c00387{left:348.373333pt;}
.x2_c00387{left:349.333333pt;}
.x9_c00387{left:350.666667pt;}
.x15_c00387{left:352.000000pt;}
.x4b_c00387{left:353.333333pt;}
.xfd_c00387{left:354.666667pt;}
.x94_c00387{left:356.960000pt;}
.x109_c00387{left:358.293333pt;}
.x70_c00387{left:360.000000pt;}
.xc1_c00387{left:361.333333pt;}
.xd8_c00387{left:362.666667pt;}
.xcc_c00387{left:364.000000pt;}
.x78_c00387{left:365.706667pt;}
.xd3_c00387{left:367.626667pt;}
.x24_c00387{left:368.960000pt;}
.x5e_c00387{left:371.040000pt;}
.xa_c00387{left:372.373333pt;}
.xaf_c00387{left:373.333333pt;}
.x16_c00387{left:374.666667pt;}
.xc2_c00387{left:376.000000pt;}
.x32_c00387{left:376.960000pt;}
.x40_c00387{left:382.666667pt;}
.x54_c00387{left:384.000000pt;}
.xa8_c00387{left:385.333333pt;}
.xcf_c00387{left:386.293333pt;}
.xbe_c00387{left:388.000000pt;}
.xb7_c00387{left:389.706667pt;}
.x79_c00387{left:391.040000pt;}
.xd9_c00387{left:392.000000pt;}
.x33_c00387{left:393.706667pt;}
.xb0_c00387{left:394.666667pt;}
.x41_c00387{left:396.000000pt;}
.xb_c00387{left:397.333333pt;}
.x95_c00387{left:398.666667pt;}
.x119_c00387{left:400.373333pt;}
.x81_c00387{left:402.666667pt;}
.x25_c00387{left:405.333333pt;}
.x42_c00387{left:406.666667pt;}
.x115_c00387{left:407.626667pt;}
.x102_c00387{left:409.706667pt;}
.xf8_c00387{left:410.666667pt;}
.x17_c00387{left:413.333333pt;}
.xcd_c00387{left:415.040000pt;}
.xef_c00387{left:417.333333pt;}
.x34_c00387{left:418.293333pt;}
.x68_c00387{left:420.000000pt;}
.x11a_c00387{left:422.293333pt;}
.xfe_c00387{left:424.000000pt;}
.x116_c00387{left:425.706667pt;}
.x9c_c00387{left:427.040000pt;}
.x18_c00387{left:428.000000pt;}
.x107_c00387{left:430.666667pt;}
.x55_c00387{left:431.626667pt;}
.xc3_c00387{left:433.333333pt;}
.x103_c00387{left:434.293333pt;}
.x82_c00387{left:436.373333pt;}
.x4c_c00387{left:437.333333pt;}
.x96_c00387{left:438.666667pt;}
.x89_c00387{left:442.666667pt;}
.x43_c00387{left:443.626667pt;}
.x71_c00387{left:444.960000pt;}
.xc_c00387{left:446.293333pt;}
.xe8_c00387{left:448.000000pt;}
.x56_c00387{left:449.706667pt;}
.x9d_c00387{left:450.666667pt;}
.x19_c00387{left:452.000000pt;}
.xc4_c00387{left:453.333333pt;}
.x35_c00387{left:454.666667pt;}
.xbf_c00387{left:458.293333pt;}
.xda_c00387{left:460.000000pt;}
.x83_c00387{left:461.706667pt;}
.xf0_c00387{left:462.666667pt;}
.xde_c00387{left:464.000000pt;}
.x5f_c00387{left:466.666667pt;}
.x26_c00387{left:468.000000pt;}
.xe9_c00387{left:470.666667pt;}
.x57_c00387{left:473.333333pt;}
.xd_c00387{left:476.000000pt;}
.x44_c00387{left:477.333333pt;}
.x7a_c00387{left:478.666667pt;}
.x9e_c00387{left:480.960000pt;}
.x60_c00387{left:482.666667pt;}
.x84_c00387{left:483.626667pt;}
.x4d_c00387{left:487.040000pt;}
.xc5_c00387{left:488.000000pt;}
.x97_c00387{left:488.960000pt;}
.x8a_c00387{left:490.293333pt;}
.x27_c00387{left:492.000000pt;}
.x72_c00387{left:493.706667pt;}
.x108_c00387{left:494.666667pt;}
.x61_c00387{left:495.626667pt;}
.x1a_c00387{left:500.000000pt;}
.x36_c00387{left:501.333333pt;}
.xf9_c00387{left:504.000000pt;}
.x10c_c00387{left:505.333333pt;}
.xdb_c00387{left:506.666667pt;}
.x7b_c00387{left:508.000000pt;}
.xb8_c00387{left:509.706667pt;}
.xff_c00387{left:511.040000pt;}
.xe_c00387{left:512.373333pt;}
.x110_c00387{left:513.333333pt;}
.xdf_c00387{left:514.666667pt;}
.x37_c00387{left:516.000000pt;}
.xfa_c00387{left:517.333333pt;}
.x9f_c00387{left:518.666667pt;}
.x28_c00387{left:520.000000pt;}
.x11b_c00387{left:522.293333pt;}
.xe3_c00387{left:524.000000pt;}
.x1b_c00387{left:524.960000pt;}
.x85_c00387{left:526.666667pt;}
.x58_c00387{left:529.333333pt;}
.x111_c00387{left:530.666667pt;}
.x8b_c00387{left:532.000000pt;}
.xb9_c00387{left:533.706667pt;}
.xd4_c00387{left:534.666667pt;}
.x4e_c00387{left:536.000000pt;}
.xa9_c00387{left:538.666667pt;}
.x45_c00387{left:540.960000pt;}
.x7c_c00387{left:543.626667pt;}
.x29_c00387{left:545.333333pt;}
.xc6_c00387{left:547.040000pt;}
.xa0_c00387{left:548.000000pt;}
.x104_c00387{left:548.960000pt;}
.x62_c00387{left:551.626667pt;}
.xdc_c00387{left:556.960000pt;}
.x73_c00387{left:560.960000pt;}
.xf1_c00387{left:564.373333pt;}
.x59_c00387{left:565.333333pt;}
.x8c_c00387{left:566.666667pt;}
.x98_c00387{left:567.626667pt;}
.xba_c00387{left:569.333333pt;}
.x69_c00387{left:570.293333pt;}
.x46_c00387{left:572.373333pt;}
.x114_c00387{left:573.333333pt;}
.xf_c00387{left:574.293333pt;}
.xb1_c00387{left:576.000000pt;}
.xc7_c00387{left:576.960000pt;}
.x1c_c00387{left:578.293333pt;}
.x2a_c00387{left:579.626667pt;}
.x8d_c00387{left:581.333333pt;}
.xea_c00387{left:582.666667pt;}
.xa1_c00387{left:585.333333pt;}
.x63_c00387{left:586.666667pt;}
.xd0_c00387{left:588.373333pt;}
.x11c_c00387{left:590.666667pt;}
.x7d_c00387{left:594.666667pt;}
.x2b_c00387{left:596.000000pt;}
.x105_c00387{left:599.626667pt;}
.x86_c00387{left:601.333333pt;}
.xc0_c00387{left:604.000000pt;}
.x1d_c00387{left:605.333333pt;}
.x38_c00387{left:606.666667pt;}
.xb2_c00387{left:608.373333pt;}
.x10a_c00387{left:609.706667pt;}
.xe0_c00387{left:610.666667pt;}
.x8e_c00387{left:611.626667pt;}
.x5a_c00387{left:612.960000pt;}
.x6a_c00387{left:614.293333pt;}
.x64_c00387{left:616.000000pt;}
.x2c_c00387{left:620.373333pt;}
.x99_c00387{left:621.706667pt;}
.xe4_c00387{left:622.666667pt;}
.x10_c00387{left:624.000000pt;}
.xf2_c00387{left:625.706667pt;}
.x117_c00387{left:629.706667pt;}
.x6b_c00387{left:631.040000pt;}
.xdd_c00387{left:634.666667pt;}
.x74_c00387{left:636.000000pt;}
.xa2_c00387{left:636.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_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_1c78fc37078309a922a97d47.woff2')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mca_c00388{transform:matrix(0.276471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276471,0.000000,0.000000,0.250000,0,0);}
.m3a_c00388{transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);}
.mce_c00388{transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);}
.m28_c00388{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m12_c00388{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m79_c00388{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m1a_c00388{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mbc_c00388{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00388{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m8c_c00388{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m94_c00388{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m71_c00388{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m4d_c00388{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m63_c00388{transform:matrix(0.393788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393788,0.000000,0.000000,0.250000,0,0);}
.m36_c00388{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m5b_c00388{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m8e_c00388{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m27_c00388{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m0_c00388{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.m89_c00388{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.ma2_c00388{transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);}
.mab_c00388{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m31_c00388{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m6a_c00388{transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);}
.m4c_c00388{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m26_c00388{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m7f_c00388{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m2c_c00388{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.ma0_c00388{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m15_c00388{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m4f_c00388{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m3b_c00388{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m77_c00388{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m68_c00388{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m83_c00388{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m41_c00388{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.ma8_c00388{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.mc1_c00388{transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);}
.m57_c00388{transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);}
.m70_c00388{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m4e_c00388{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m30_c00388{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m38_c00388{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m29_c00388{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m56_c00388{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m6c_c00388{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.m1c_c00388{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m65_c00388{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m46_c00388{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m6d_c00388{transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);}
.m5e_c00388{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m9e_c00388{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m4a_c00388{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m50_c00388{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mc8_c00388{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m5a_c00388{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m34_c00388{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m7d_c00388{transform:matrix(0.443465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443465,0.000000,0.000000,0.250000,0,0);}
.mb2_c00388{transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);}
.m96_c00388{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m23_c00388{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m11_c00388{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m42_c00388{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m45_c00388{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.me_c00388{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m72_c00388{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m91_c00388{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m3c_c00388{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.mb5_c00388{transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);}
.mad_c00388{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m39_c00388{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.ma_c00388{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.m1e_c00388{transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);}
.mc5_c00388{transform:matrix(0.461538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461538,0.000000,0.000000,0.250000,0,0);}
.mbd_c00388{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.md0_c00388{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.m53_c00388{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m62_c00388{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m32_c00388{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m9f_c00388{transform:matrix(0.476471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476471,0.000000,0.000000,0.250000,0,0);}
.m51_c00388{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.mb3_c00388{transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);}
.m2b_c00388{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m90_c00388{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m7c_c00388{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m5f_c00388{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m75_c00388{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mb9_c00388{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m14_c00388{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m92_c00388{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m8f_c00388{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m66_c00388{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mc4_c00388{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.m2e_c00388{transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);}
.m4_c00388{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);}
.ma1_c00388{transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);}
.m48_c00388{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m40_c00388{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m20_c00388{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.ma7_c00388{transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);}
.m52_c00388{transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);}
.mc_c00388{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m9d_c00388{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.m6_c00388{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m81_c00388{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m1d_c00388{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m33_c00388{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m2a_c00388{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m76_c00388{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m85_c00388{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m19_c00388{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m49_c00388{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m7b_c00388{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m9_c00388{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.ma4_c00388{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m7_c00388{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m6f_c00388{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m64_c00388{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m5_c00388{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mcf_c00388{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m21_c00388{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.md_c00388{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m78_c00388{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m2_c00388{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m8_c00388{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m67_c00388{transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);}
.m74_c00388{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m2d_c00388{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m1f_c00388{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m6b_c00388{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m5c_c00388{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m16_c00388{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m3e_c00388{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m5d_c00388{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.maf_c00388{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m35_c00388{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.md2_c00388{transform:matrix(0.551762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551762,0.000000,0.000000,0.250000,0,0);}
.ma6_c00388{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m8d_c00388{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m37_c00388{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m61_c00388{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m47_c00388{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m24_c00388{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m8a_c00388{transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);}
.m60_c00388{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.md9_c00388{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m93_c00388{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mbf_c00388{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m87_c00388{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.mf_c00388{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m99_c00388{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.ma5_c00388{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m4b_c00388{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m58_c00388{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m59_c00388{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m10_c00388{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m73_c00388{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m80_c00388{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.mb0_c00388{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.m3_c00388{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m69_c00388{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m8b_c00388{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m95_c00388{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.m17_c00388{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m25_c00388{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m3d_c00388{transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);}
.m98_c00388{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m18_c00388{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.maa_c00388{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m2f_c00388{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.ma9_c00388{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m1b_c00388{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m43_c00388{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.m9b_c00388{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mbe_c00388{transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);}
.m9c_c00388{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_c00388{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.mcd_c00388{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.m86_c00388{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.md5_c00388{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m9a_c00388{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.md8_c00388{transform:matrix(0.659692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659692,0.000000,0.000000,0.250000,0,0);}
.m84_c00388{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.md7_c00388{transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);}
.m7e_c00388{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m6e_c00388{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mb1_c00388{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m44_c00388{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mb7_c00388{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.mcc_c00388{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.mac_c00388{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.md6_c00388{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.mc0_c00388{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.mc6_c00388{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.ma3_c00388{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.mc3_c00388{transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);}
.m54_c00388{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mcb_c00388{transform:matrix(0.718062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.718062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.718062,0.000000,0.000000,0.250000,0,0);}
.mbb_c00388{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m7a_c00388{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.mae_c00388{transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);}
.m13_c00388{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mb8_c00388{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.mc2_c00388{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.mc7_c00388{transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);}
.mba_c00388{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.mb_c00388{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m22_c00388{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mb4_c00388{transform:matrix(0.770925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770925,0.000000,0.000000,0.250000,0,0);}
.m55_c00388{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m88_c00388{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.md1_c00388{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m3f_c00388{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m97_c00388{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mc9_c00388{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.md4_c00388{transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);}
.md3_c00388{transform:matrix(1.380531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.380531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.380531,0.000000,0.000000,0.250000,0,0);}
.mb6_c00388{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.v0_c00388{vertical-align:0.000000px;}
.v1_c00388{vertical-align:6.000000px;}
.ls1_c00388{letter-spacing:0.000000px;}
.ls0_c00388{letter-spacing:87.773498px;}
.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;}
}
.ws3_c00388{word-spacing:-98.705978px;}
.ws0_c00388{word-spacing:-6.184625px;}
.wsb_c00388{word-spacing:0.000000px;}
.ws9_c00388{word-spacing:13.306168px;}
.ws6_c00388{word-spacing:25.629635px;}
.ws2_c00388{word-spacing:27.671529px;}
.ws7_c00388{word-spacing:30.193299px;}
.ws5_c00388{word-spacing:36.864950px;}
.ws8_c00388{word-spacing:38.813552px;}
.ws4_c00388{word-spacing:46.567836px;}
.ws1_c00388{word-spacing:47.359908px;}
.wsa_c00388{word-spacing:57.018127px;}
._1_c00388{margin-left:-87.773498px;}
._2_c00388{width:35.586656px;}
._0_c00388{width:38.075249px;}
.fc0_c00388{color:transparent;}
.fs8_c00388{font-size:3.420000px;}
.fs9_c00388{font-size:6.780000px;}
.fsa_c00388{font-size:11.880000px;}
.fs7_c00388{font-size:13.620000px;}
.fs3_c00388{font-size:18.720000px;}
.fs1_c00388{font-size:20.400000px;}
.fs4_c00388{font-size:25.500000px;}
.fs2_c00388{font-size:28.920000px;}
.fs0_c00388{font-size:32.340000px;}
.fs5_c00388{font-size:35.700000px;}
.fs6_c00388{font-size:39.120000px;}
.y0_c00388{bottom:0.000000px;}
.y7b_c00388{bottom:250.905000px;}
.y79_c00388{bottom:252.405000px;}
.y77_c00388{bottom:253.905000px;}
.y7c_c00388{bottom:254.130000px;}
.y7a_c00388{bottom:254.970000px;}
.y78_c00388{bottom:255.405000px;}
.y76_c00388{bottom:271.905000px;}
.y71_c00388{bottom:272.745000px;}
.y74_c00388{bottom:273.405000px;}
.y75_c00388{bottom:273.630000px;}
.y73_c00388{bottom:274.470000px;}
.y72_c00388{bottom:274.905000px;}
.y6f_c00388{bottom:289.905000px;}
.y70_c00388{bottom:293.325000px;}
.y6e_c00388{bottom:294.405000px;}
.y6b_c00388{bottom:310.905000px;}
.y69_c00388{bottom:311.745000px;}
.y6d_c00388{bottom:313.470000px;}
.y6a_c00388{bottom:313.905000px;}
.y6c_c00388{bottom:314.130000px;}
.y65_c00388{bottom:330.825000px;}
.y63_c00388{bottom:331.245000px;}
.y67_c00388{bottom:332.745000px;}
.y62_c00388{bottom:333.405000px;}
.y66_c00388{bottom:333.630000px;}
.y64_c00388{bottom:334.470000px;}
.y68_c00388{bottom:334.905000px;}
.y60_c00388{bottom:350.325000px;}
.y5e_c00388{bottom:350.745000px;}
.y61_c00388{bottom:350.970000px;}
.y5c_c00388{bottom:352.905000px;}
.y5f_c00388{bottom:353.970000px;}
.y5d_c00388{bottom:354.405000px;}
.y5b_c00388{bottom:370.245000px;}
.y58_c00388{bottom:372.405000px;}
.y5a_c00388{bottom:373.470000px;}
.y59_c00388{bottom:373.905000px;}
.y56_c00388{bottom:391.245000px;}
.y57_c00388{bottom:392.325000px;}
.y54_c00388{bottom:392.970000px;}
.y53_c00388{bottom:393.405000px;}
.y55_c00388{bottom:394.470000px;}
.y52_c00388{bottom:410.745000px;}
.y50_c00388{bottom:411.630000px;}
.y51_c00388{bottom:412.470000px;}
.y4f_c00388{bottom:412.905000px;}
.y4e_c00388{bottom:428.325000px;}
.y4c_c00388{bottom:431.325000px;}
.y4b_c00388{bottom:432.405000px;}
.y4d_c00388{bottom:432.630000px;}
.y4a_c00388{bottom:447.405000px;}
.y49_c00388{bottom:450.825000px;}
.y48_c00388{bottom:451.470000px;}
.y47_c00388{bottom:451.905000px;}
.y45_c00388{bottom:469.245000px;}
.y46_c00388{bottom:469.470000px;}
.y44_c00388{bottom:471.405000px;}
.y41_c00388{bottom:487.905000px;}
.y42_c00388{bottom:489.180000px;}
.y43_c00388{bottom:490.905000px;}
.y3f_c00388{bottom:491.970000px;}
.y40_c00388{bottom:492.405000px;}
.y3c_c00388{bottom:508.470000px;}
.y3d_c00388{bottom:509.745000px;}
.y3e_c00388{bottom:510.405000px;}
.y3b_c00388{bottom:511.905000px;}
.y38_c00388{bottom:528.825000px;}
.y39_c00388{bottom:529.245000px;}
.y3a_c00388{bottom:530.130000px;}
.y37_c00388{bottom:531.405000px;}
.y32_c00388{bottom:548.745000px;}
.y34_c00388{bottom:549.630000px;}
.y35_c00388{bottom:549.825000px;}
.y36_c00388{bottom:550.470000px;}
.y33_c00388{bottom:550.905000px;}
.y2d_c00388{bottom:567.825000px;}
.y30_c00388{bottom:568.245000px;}
.y31_c00388{bottom:569.970000px;}
.y2e_c00388{bottom:570.405000px;}
.y2f_c00388{bottom:571.470000px;}
.y2a_c00388{bottom:587.325000px;}
.y28_c00388{bottom:587.745000px;}
.y2b_c00388{bottom:588.405000px;}
.y26_c00388{bottom:589.470000px;}
.y27_c00388{bottom:589.905000px;}
.y2c_c00388{bottom:590.970000px;}
.y29_c00388{bottom:591.405000px;}
.y25_c00388{bottom:607.245000px;}
.y22_c00388{bottom:609.405000px;}
.y24_c00388{bottom:609.630000px;}
.y23_c00388{bottom:610.470000px;}
.y1d_c00388{bottom:625.905000px;}
.y21_c00388{bottom:626.745000px;}
.y20_c00388{bottom:627.180000px;}
.y1c_c00388{bottom:628.245000px;}
.y1f_c00388{bottom:629.325000px;}
.y1e_c00388{bottom:630.405000px;}
.y1a_c00388{bottom:647.745000px;}
.y18_c00388{bottom:648.825000px;}
.y19_c00388{bottom:649.470000px;}
.y1b_c00388{bottom:649.905000px;}
.y17_c00388{bottom:664.905000px;}
.y16_c00388{bottom:666.405000px;}
.y15_c00388{bottom:667.245000px;}
.y12_c00388{bottom:669.405000px;}
.y14_c00388{bottom:669.630000px;}
.y13_c00388{bottom:670.470000px;}
.ye_c00388{bottom:686.745000px;}
.y11_c00388{bottom:687.825000px;}
.yf_c00388{bottom:688.905000px;}
.y10_c00388{bottom:689.130000px;}
.yb_c00388{bottom:706.245000px;}
.ya_c00388{bottom:707.325000px;}
.y9_c00388{bottom:708.405000px;}
.yc_c00388{bottom:708.630000px;}
.yd_c00388{bottom:709.470000px;}
.y7_c00388{bottom:727.905000px;}
.y8_c00388{bottom:728.970000px;}
.y3_c00388{bottom:747.405000px;}
.y5_c00388{bottom:747.630000px;}
.y4_c00388{bottom:747.825000px;}
.y6_c00388{bottom:748.905000px;}
.yc0_c00388{bottom:780.195000px;}
.yc1_c00388{bottom:781.920000px;}
.ybe_c00388{bottom:792.630000px;}
.yba_c00388{bottom:793.695000px;}
.yb9_c00388{bottom:794.130000px;}
.ybf_c00388{bottom:794.775000px;}
.ybb_c00388{bottom:795.195000px;}
.ybc_c00388{bottom:795.420000px;}
.ybd_c00388{bottom:795.855000px;}
.yb6_c00388{bottom:805.050000px;}
.yb8_c00388{bottom:807.630000px;}
.yb5_c00388{bottom:808.695000px;}
.yb7_c00388{bottom:810.420000px;}
.yb1_c00388{bottom:821.130000px;}
.yb2_c00388{bottom:822.195000px;}
.yb4_c00388{bottom:823.695000px;}
.yb3_c00388{bottom:823.920000px;}
.yad_c00388{bottom:834.630000px;}
.yae_c00388{bottom:835.695000px;}
.yb0_c00388{bottom:837.195000px;}
.yaf_c00388{bottom:837.420000px;}
.yaa_c00388{bottom:849.195000px;}
.yac_c00388{bottom:850.695000px;}
.yab_c00388{bottom:851.970000px;}
.ya8_c00388{bottom:861.195000px;}
.ya6_c00388{bottom:861.630000px;}
.ya7_c00388{bottom:862.695000px;}
.ya9_c00388{bottom:864.195000px;}
.ya4_c00388{bottom:876.630000px;}
.ya5_c00388{bottom:877.695000px;}
.ya2_c00388{bottom:890.130000px;}
.ya1_c00388{bottom:891.195000px;}
.ya3_c00388{bottom:891.630000px;}
.y9e_c00388{bottom:904.050000px;}
.ya0_c00388{bottom:905.130000px;}
.y9f_c00388{bottom:906.195000px;}
.y9c_c00388{bottom:918.630000px;}
.y9d_c00388{bottom:919.695000px;}
.y97_c00388{bottom:932.130000px;}
.y98_c00388{bottom:933.195000px;}
.y9a_c00388{bottom:933.630000px;}
.y9b_c00388{bottom:934.695000px;}
.y99_c00388{bottom:934.920000px;}
.y93_c00388{bottom:945.630000px;}
.y92_c00388{bottom:946.695000px;}
.y94_c00388{bottom:947.130000px;}
.y96_c00388{bottom:948.195000px;}
.y95_c00388{bottom:948.420000px;}
.y8f_c00388{bottom:959.130000px;}
.y90_c00388{bottom:960.195000px;}
.y91_c00388{bottom:961.695000px;}
.y8c_c00388{bottom:972.630000px;}
.y8b_c00388{bottom:973.695000px;}
.y8e_c00388{bottom:974.130000px;}
.y8d_c00388{bottom:975.195000px;}
.y88_c00388{bottom:993.195000px;}
.y89_c00388{bottom:993.630000px;}
.y8a_c00388{bottom:994.695000px;}
.y86_c00388{bottom:1005.630000px;}
.y87_c00388{bottom:1006.695000px;}
.y84_c00388{bottom:1022.325000px;}
.y83_c00388{bottom:1024.470000px;}
.y85_c00388{bottom:1025.550000px;}
.y82_c00388{bottom:1037.325000px;}
.y81_c00388{bottom:1038.405000px;}
.y80_c00388{bottom:1039.470000px;}
.y7f_c00388{bottom:1040.550000px;}
.y7e_c00388{bottom:1063.050000px;}
.y7d_c00388{bottom:1066.050000px;}
.y1_c00388{bottom:1098.825000px;}
.y2_c00388{bottom:1100.550000px;}
.ha_c00388{height:4.206533px;}
.hb_c00388{height:8.339268px;}
.hc_c00388{height:14.612168px;}
.h8_c00388{height:16.752334px;}
.h9_c00388{height:22.752334px;}
.h4_c00388{height:23.025234px;}
.h2_c00388{height:25.091602px;}
.h5_c00388{height:31.364502px;}
.h3_c00388{height:35.571035px;}
.h1_c00388{height:39.777568px;}
.h6_c00388{height:43.910303px;}
.h7_c00388{height:48.116836px;}
.h0_c00388{height:1335.000000px;}
.w0_c00388{width:880.500000px;}
.x0_c00388{left:0.000000px;}
.x3_c00388{left:151.500000px;}
.x94_c00388{left:152.580000px;}
.x14_c00388{left:166.500000px;}
.x51_c00388{left:168.420000px;}
.x12_c00388{left:169.920000px;}
.x82_c00388{left:172.080000px;}
.x4b_c00388{left:178.500000px;}
.x4_c00388{left:181.500000px;}
.x95_c00388{left:186.420000px;}
.x5c_c00388{left:188.580000px;}
.x52_c00388{left:193.500000px;}
.xb0_c00388{left:195.420000px;}
.x13_c00388{left:198.420000px;}
.x15_c00388{left:199.500000px;}
.x90_c00388{left:201.000000px;}
.x23_c00388{left:202.500000px;}
.x64_c00388{left:207.000000px;}
.xba_c00388{left:208.500000px;}
.x5d_c00388{left:210.420000px;}
.xb6_c00388{left:213.420000px;}
.xcb_c00388{left:216.000000px;}
.x76_c00388{left:219.420000px;}
.x24_c00388{left:222.420000px;}
.x8c_c00388{left:225.000000px;}
.x5_c00388{left:226.080000px;}
.xa1_c00388{left:229.920000px;}
.x30_c00388{left:232.920000px;}
.x9c_c00388{left:235.500000px;}
.x16_c00388{left:236.580000px;}
.x6e_c00388{left:238.500000px;}
.x41_c00388{left:240.420000px;}
.x91_c00388{left:241.500000px;}
.x6_c00388{left:243.420000px;}
.xbb_c00388{left:246.420000px;}
.x83_c00388{left:247.500000px;}
.x25_c00388{left:250.920000px;}
.x17_c00388{left:253.920000px;}
.x3b_c00388{left:255.000000px;}
.x31_c00388{left:259.080000px;}
.x7_c00388{left:268.500000px;}
.x53_c00388{left:271.500000px;}
.xe8_c00388{left:273.000000px;}
.x77_c00388{left:277.500000px;}
.x6f_c00388{left:278.580000px;}
.x18_c00388{left:280.500000px;}
.xcf_c00388{left:282.000000px;}
.xda_c00388{left:286.080000px;}
.x4c_c00388{left:289.920000px;}
.x42_c00388{left:291.000000px;}
.xe3_c00388{left:295.080000px;}
.xa2_c00388{left:298.500000px;}
.x65_c00388{left:300.420000px;}
.x70_c00388{left:301.500000px;}
.xc2_c00388{left:303.420000px;}
.xdf_c00388{left:304.920000px;}
.x8_c00388{left:306.000000px;}
.x43_c00388{left:307.500000px;}
.xe5_c00388{left:309.000000px;}
.x32_c00388{left:312.000000px;}
.x4d_c00388{left:316.920000px;}
.x26_c00388{left:318.000000px;}
.x71_c00388{left:319.080000px;}
.x84_c00388{left:321.420000px;}
.x96_c00388{left:322.500000px;}
.xbc_c00388{left:327.000000px;}
.x54_c00388{left:329.580000px;}
.xa3_c00388{left:331.500000px;}
.xb1_c00388{left:333.000000px;}
.x19_c00388{left:334.500000px;}
.x33_c00388{left:337.500000px;}
.x44_c00388{left:340.920000px;}
.x9_c00388{left:342.420000px;}
.xc8_c00388{left:346.500000px;}
.x78_c00388{left:347.580000px;}
.x85_c00388{left:349.080000px;}
.xcc_c00388{left:351.000000px;}
.xb7_c00388{left:352.500000px;}
.x5e_c00388{left:355.920000px;}
.x92_c00388{left:361.500000px;}
.xb2_c00388{left:364.500000px;}
.x97_c00388{left:367.500000px;}
.x66_c00388{left:369.420000px;}
.x79_c00388{left:370.920000px;}
.x4e_c00388{left:373.500000px;}
.x9d_c00388{left:380.580000px;}
.xd3_c00388{left:382.500000px;}
.xa_c00388{left:383.580000px;}
.x1a_c00388{left:385.920000px;}
.x2_c00388{left:387.000000px;}
.x3c_c00388{left:390.420000px;}
.xd0_c00388{left:391.500000px;}
.x72_c00388{left:393.420000px;}
.xdb_c00388{left:394.500000px;}
.xa4_c00388{left:396.000000px;}
.x7a_c00388{left:397.080000px;}
.xde_c00388{left:399.000000px;}
.x27_c00388{left:400.080000px;}
.xa8_c00388{left:402.420000px;}
.xcd_c00388{left:403.500000px;}
.xc3_c00388{left:406.920000px;}
.x67_c00388{left:408.000000px;}
.xbd_c00388{left:409.080000px;}
.x1b_c00388{left:412.080000px;}
.x45_c00388{left:413.580000px;}
.xd4_c00388{left:415.500000px;}
.x3d_c00388{left:418.500000px;}
.x73_c00388{left:420.420000px;}
.x68_c00388{left:421.500000px;}
.x28_c00388{left:423.000000px;}
.xd6_c00388{left:430.920000px;}
.xbe_c00388{left:432.000000px;}
.x1c_c00388{left:433.920000px;}
.xe0_c00388{left:435.000000px;}
.x7b_c00388{left:436.500000px;}
.xd7_c00388{left:438.000000px;}
.x34_c00388{left:439.080000px;}
.x55_c00388{left:441.420000px;}
.x29_c00388{left:442.920000px;}
.xb_c00388{left:444.420000px;}
.x46_c00388{left:445.500000px;}
.x8d_c00388{left:448.080000px;}
.xa9_c00388{left:450.000000px;}
.x7c_c00388{left:451.500000px;}
.xce_c00388{left:453.420000px;}
.xa5_c00388{left:454.500000px;}
.x9e_c00388{left:456.000000px;}
.x35_c00388{left:462.420000px;}
.x5f_c00388{left:465.420000px;}
.x8e_c00388{left:466.920000px;}
.x56_c00388{left:468.000000px;}
.x2a_c00388{left:469.500000px;}
.xc_c00388{left:471.000000px;}
.xdd_c00388{left:475.500000px;}
.x74_c00388{left:477.000000px;}
.xd1_c00388{left:478.920000px;}
.x69_c00388{left:480.000000px;}
.xe4_c00388{left:481.500000px;}
.xd8_c00388{left:483.000000px;}
.x7d_c00388{left:484.920000px;}
.xc9_c00388{left:487.920000px;}
.x36_c00388{left:489.000000px;}
.xe9_c00388{left:490.500000px;}
.x8f_c00388{left:493.080000px;}
.xd2_c00388{left:496.500000px;}
.x47_c00388{left:503.355000px;}
.xa6_c00388{left:505.080000px;}
.xaa_c00388{left:510.000000px;}
.x2b_c00388{left:513.420000px;}
.x6a_c00388{left:515.580000px;}
.xd5_c00388{left:517.080000px;}
.x57_c00388{left:520.500000px;}
.x86_c00388{left:522.000000px;}
.xd_c00388{left:525.000000px;}
.x1d_c00388{left:526.920000px;}
.xc4_c00388{left:528.420000px;}
.xd9_c00388{left:529.500000px;}
.x3e_c00388{left:531.000000px;}
.xb3_c00388{left:532.920000px;}
.xb8_c00388{left:535.080000px;}
.x9f_c00388{left:537.000000px;}
.x2c_c00388{left:541.080000px;}
.x6b_c00388{left:547.500000px;}
.x60_c00388{left:548.580000px;}
.x3f_c00388{left:550.500000px;}
.x98_c00388{left:552.000000px;}
.xe_c00388{left:555.000000px;}
.xab_c00388{left:557.580000px;}
.xb4_c00388{left:559.500000px;}
.x58_c00388{left:561.000000px;}
.x7e_c00388{left:562.500000px;}
.x1e_c00388{left:564.420000px;}
.x87_c00388{left:565.500000px;}
.xe6_c00388{left:567.000000px;}
.xac_c00388{left:570.000000px;}
.xe2_c00388{left:571.500000px;}
.xdc_c00388{left:574.500000px;}
.x6c_c00388{left:576.000000px;}
.x37_c00388{left:577.920000px;}
.x59_c00388{left:579.000000px;}
.x61_c00388{left:580.500000px;}
.x7f_c00388{left:583.500000px;}
.x88_c00388{left:585.000000px;}
.x48_c00388{left:588.420000px;}
.xb5_c00388{left:589.500000px;}
.x2d_c00388{left:592.500000px;}
.x4f_c00388{left:595.500000px;}
.x1f_c00388{left:596.580000px;}
.xbf_c00388{left:598.920000px;}
.x75_c00388{left:602.580000px;}
.x93_c00388{left:609.000000px;}
.x62_c00388{left:612.000000px;}
.xad_c00388{left:613.080000px;}
.x20_c00388{left:615.420000px;}
.xe1_c00388{left:616.500000px;}
.x2e_c00388{left:619.500000px;}
.xe7_c00388{left:621.000000px;}
.xf_c00388{left:623.580000px;}
.xb9_c00388{left:625.080000px;}
.x80_c00388{left:627.000000px;}
.x38_c00388{left:628.500000px;}
.xae_c00388{left:631.080000px;}
.xa0_c00388{left:636.420000px;}
.xc5_c00388{left:639.000000px;}
.x21_c00388{left:640.500000px;}
.x5a_c00388{left:642.000000px;}
.x39_c00388{left:643.920000px;}
.xc0_c00388{left:645.000000px;}
.x40_c00388{left:646.920000px;}
.x89_c00388{left:649.920000px;}
.x6d_c00388{left:654.420000px;}
.x99_c00388{left:657.000000px;}
.xc6_c00388{left:660.420000px;}
.x10_c00388{left:666.420000px;}
.x5b_c00388{left:669.000000px;}
.x22_c00388{left:670.500000px;}
.x50_c00388{left:672.420000px;}
.x63_c00388{left:673.500000px;}
.x8a_c00388{left:677.580000px;}
.x81_c00388{left:679.500000px;}
.x49_c00388{left:681.000000px;}
.x9a_c00388{left:688.080000px;}
.xc1_c00388{left:689.580000px;}
.x2f_c00388{left:691.500000px;}
.x11_c00388{left:692.580000px;}
.xc7_c00388{left:694.080000px;}
.xca_c00388{left:695.580000px;}
.x3a_c00388{left:697.920000px;}
.x1_c00388{left:700.500000px;}
.xaf_c00388{left:705.420000px;}
.x9b_c00388{left:708.420000px;}
.xa7_c00388{left:709.500000px;}
.x4a_c00388{left:715.080000px;}
.x8b_c00388{left:720.000000px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.v1_c00388{vertical-align:5.333333pt;}
.ls1_c00388{letter-spacing:0.000000pt;}
.ls0_c00388{letter-spacing:78.020887pt;}
.ws3_c00388{word-spacing:-87.738647pt;}
.ws0_c00388{word-spacing:-5.497444pt;}
.wsb_c00388{word-spacing:0.000000pt;}
.ws9_c00388{word-spacing:11.827705pt;}
.ws6_c00388{word-spacing:22.781898pt;}
.ws2_c00388{word-spacing:24.596914pt;}
.ws7_c00388{word-spacing:26.838488pt;}
.ws5_c00388{word-spacing:32.768845pt;}
.ws8_c00388{word-spacing:34.500935pt;}
.ws4_c00388{word-spacing:41.393632pt;}
.ws1_c00388{word-spacing:42.097696pt;}
.wsa_c00388{word-spacing:50.682780pt;}
._1_c00388{margin-left:-78.020887pt;}
._2_c00388{width:31.632584pt;}
._0_c00388{width:33.844666pt;}
.fs8_c00388{font-size:3.040000pt;}
.fs9_c00388{font-size:6.026667pt;}
.fsa_c00388{font-size:10.560000pt;}
.fs7_c00388{font-size:12.106667pt;}
.fs3_c00388{font-size:16.640000pt;}
.fs1_c00388{font-size:18.133333pt;}
.fs4_c00388{font-size:22.666667pt;}
.fs2_c00388{font-size:25.706667pt;}
.fs0_c00388{font-size:28.746667pt;}
.fs5_c00388{font-size:31.733333pt;}
.fs6_c00388{font-size:34.773333pt;}
.y0_c00388{bottom:0.000000pt;}
.y7b_c00388{bottom:223.026667pt;}
.y79_c00388{bottom:224.360000pt;}
.y77_c00388{bottom:225.693333pt;}
.y7c_c00388{bottom:225.893333pt;}
.y7a_c00388{bottom:226.640000pt;}
.y78_c00388{bottom:227.026667pt;}
.y76_c00388{bottom:241.693333pt;}
.y71_c00388{bottom:242.440000pt;}
.y74_c00388{bottom:243.026667pt;}
.y75_c00388{bottom:243.226667pt;}
.y73_c00388{bottom:243.973333pt;}
.y72_c00388{bottom:244.360000pt;}
.y6f_c00388{bottom:257.693333pt;}
.y70_c00388{bottom:260.733333pt;}
.y6e_c00388{bottom:261.693333pt;}
.y6b_c00388{bottom:276.360000pt;}
.y69_c00388{bottom:277.106667pt;}
.y6d_c00388{bottom:278.640000pt;}
.y6a_c00388{bottom:279.026667pt;}
.y6c_c00388{bottom:279.226667pt;}
.y65_c00388{bottom:294.066667pt;}
.y63_c00388{bottom:294.440000pt;}
.y67_c00388{bottom:295.773333pt;}
.y62_c00388{bottom:296.360000pt;}
.y66_c00388{bottom:296.560000pt;}
.y64_c00388{bottom:297.306667pt;}
.y68_c00388{bottom:297.693333pt;}
.y60_c00388{bottom:311.400000pt;}
.y5e_c00388{bottom:311.773333pt;}
.y61_c00388{bottom:311.973333pt;}
.y5c_c00388{bottom:313.693333pt;}
.y5f_c00388{bottom:314.640000pt;}
.y5d_c00388{bottom:315.026667pt;}
.y5b_c00388{bottom:329.106667pt;}
.y58_c00388{bottom:331.026667pt;}
.y5a_c00388{bottom:331.973333pt;}
.y59_c00388{bottom:332.360000pt;}
.y56_c00388{bottom:347.773333pt;}
.y57_c00388{bottom:348.733333pt;}
.y54_c00388{bottom:349.306667pt;}
.y53_c00388{bottom:349.693333pt;}
.y55_c00388{bottom:350.640000pt;}
.y52_c00388{bottom:365.106667pt;}
.y50_c00388{bottom:365.893333pt;}
.y51_c00388{bottom:366.640000pt;}
.y4f_c00388{bottom:367.026667pt;}
.y4e_c00388{bottom:380.733333pt;}
.y4c_c00388{bottom:383.400000pt;}
.y4b_c00388{bottom:384.360000pt;}
.y4d_c00388{bottom:384.560000pt;}
.y4a_c00388{bottom:397.693333pt;}
.y49_c00388{bottom:400.733333pt;}
.y48_c00388{bottom:401.306667pt;}
.y47_c00388{bottom:401.693333pt;}
.y45_c00388{bottom:417.106667pt;}
.y46_c00388{bottom:417.306667pt;}
.y44_c00388{bottom:419.026667pt;}
.y41_c00388{bottom:433.693333pt;}
.y42_c00388{bottom:434.826667pt;}
.y43_c00388{bottom:436.360000pt;}
.y3f_c00388{bottom:437.306667pt;}
.y40_c00388{bottom:437.693333pt;}
.y3c_c00388{bottom:451.973333pt;}
.y3d_c00388{bottom:453.106667pt;}
.y3e_c00388{bottom:453.693333pt;}
.y3b_c00388{bottom:455.026667pt;}
.y38_c00388{bottom:470.066667pt;}
.y39_c00388{bottom:470.440000pt;}
.y3a_c00388{bottom:471.226667pt;}
.y37_c00388{bottom:472.360000pt;}
.y32_c00388{bottom:487.773333pt;}
.y34_c00388{bottom:488.560000pt;}
.y35_c00388{bottom:488.733333pt;}
.y36_c00388{bottom:489.306667pt;}
.y33_c00388{bottom:489.693333pt;}
.y2d_c00388{bottom:504.733333pt;}
.y30_c00388{bottom:505.106667pt;}
.y31_c00388{bottom:506.640000pt;}
.y2e_c00388{bottom:507.026667pt;}
.y2f_c00388{bottom:507.973333pt;}
.y2a_c00388{bottom:522.066667pt;}
.y28_c00388{bottom:522.440000pt;}
.y2b_c00388{bottom:523.026667pt;}
.y26_c00388{bottom:523.973333pt;}
.y27_c00388{bottom:524.360000pt;}
.y2c_c00388{bottom:525.306667pt;}
.y29_c00388{bottom:525.693333pt;}
.y25_c00388{bottom:539.773333pt;}
.y22_c00388{bottom:541.693333pt;}
.y24_c00388{bottom:541.893333pt;}
.y23_c00388{bottom:542.640000pt;}
.y1d_c00388{bottom:556.360000pt;}
.y21_c00388{bottom:557.106667pt;}
.y20_c00388{bottom:557.493333pt;}
.y1c_c00388{bottom:558.440000pt;}
.y1f_c00388{bottom:559.400000pt;}
.y1e_c00388{bottom:560.360000pt;}
.y1a_c00388{bottom:575.773333pt;}
.y18_c00388{bottom:576.733333pt;}
.y19_c00388{bottom:577.306667pt;}
.y1b_c00388{bottom:577.693333pt;}
.y17_c00388{bottom:591.026667pt;}
.y16_c00388{bottom:592.360000pt;}
.y15_c00388{bottom:593.106667pt;}
.y12_c00388{bottom:595.026667pt;}
.y14_c00388{bottom:595.226667pt;}
.y13_c00388{bottom:595.973333pt;}
.ye_c00388{bottom:610.440000pt;}
.y11_c00388{bottom:611.400000pt;}
.yf_c00388{bottom:612.360000pt;}
.y10_c00388{bottom:612.560000pt;}
.yb_c00388{bottom:627.773333pt;}
.ya_c00388{bottom:628.733333pt;}
.y9_c00388{bottom:629.693333pt;}
.yc_c00388{bottom:629.893333pt;}
.yd_c00388{bottom:630.640000pt;}
.y7_c00388{bottom:647.026667pt;}
.y8_c00388{bottom:647.973333pt;}
.y3_c00388{bottom:664.360000pt;}
.y5_c00388{bottom:664.560000pt;}
.y4_c00388{bottom:664.733333pt;}
.y6_c00388{bottom:665.693333pt;}
.yc0_c00388{bottom:693.506667pt;}
.yc1_c00388{bottom:695.040000pt;}
.ybe_c00388{bottom:704.560000pt;}
.yba_c00388{bottom:705.506667pt;}
.yb9_c00388{bottom:705.893333pt;}
.ybf_c00388{bottom:706.466667pt;}
.ybb_c00388{bottom:706.840000pt;}
.ybc_c00388{bottom:707.040000pt;}
.ybd_c00388{bottom:707.426667pt;}
.yb6_c00388{bottom:715.600000pt;}
.yb8_c00388{bottom:717.893333pt;}
.yb5_c00388{bottom:718.840000pt;}
.yb7_c00388{bottom:720.373333pt;}
.yb1_c00388{bottom:729.893333pt;}
.yb2_c00388{bottom:730.840000pt;}
.yb4_c00388{bottom:732.173333pt;}
.yb3_c00388{bottom:732.373333pt;}
.yad_c00388{bottom:741.893333pt;}
.yae_c00388{bottom:742.840000pt;}
.yb0_c00388{bottom:744.173333pt;}
.yaf_c00388{bottom:744.373333pt;}
.yaa_c00388{bottom:754.840000pt;}
.yac_c00388{bottom:756.173333pt;}
.yab_c00388{bottom:757.306667pt;}
.ya8_c00388{bottom:765.506667pt;}
.ya6_c00388{bottom:765.893333pt;}
.ya7_c00388{bottom:766.840000pt;}
.ya9_c00388{bottom:768.173333pt;}
.ya4_c00388{bottom:779.226667pt;}
.ya5_c00388{bottom:780.173333pt;}
.ya2_c00388{bottom:791.226667pt;}
.ya1_c00388{bottom:792.173333pt;}
.ya3_c00388{bottom:792.560000pt;}
.y9e_c00388{bottom:803.600000pt;}
.ya0_c00388{bottom:804.560000pt;}
.y9f_c00388{bottom:805.506667pt;}
.y9c_c00388{bottom:816.560000pt;}
.y9d_c00388{bottom:817.506667pt;}
.y97_c00388{bottom:828.560000pt;}
.y98_c00388{bottom:829.506667pt;}
.y9a_c00388{bottom:829.893333pt;}
.y9b_c00388{bottom:830.840000pt;}
.y99_c00388{bottom:831.040000pt;}
.y93_c00388{bottom:840.560000pt;}
.y92_c00388{bottom:841.506667pt;}
.y94_c00388{bottom:841.893333pt;}
.y96_c00388{bottom:842.840000pt;}
.y95_c00388{bottom:843.040000pt;}
.y8f_c00388{bottom:852.560000pt;}
.y90_c00388{bottom:853.506667pt;}
.y91_c00388{bottom:854.840000pt;}
.y8c_c00388{bottom:864.560000pt;}
.y8b_c00388{bottom:865.506667pt;}
.y8e_c00388{bottom:865.893333pt;}
.y8d_c00388{bottom:866.840000pt;}
.y88_c00388{bottom:882.840000pt;}
.y89_c00388{bottom:883.226667pt;}
.y8a_c00388{bottom:884.173333pt;}
.y86_c00388{bottom:893.893333pt;}
.y87_c00388{bottom:894.840000pt;}
.y84_c00388{bottom:908.733333pt;}
.y83_c00388{bottom:910.640000pt;}
.y85_c00388{bottom:911.600000pt;}
.y82_c00388{bottom:922.066667pt;}
.y81_c00388{bottom:923.026667pt;}
.y80_c00388{bottom:923.973333pt;}
.y7f_c00388{bottom:924.933333pt;}
.y7e_c00388{bottom:944.933333pt;}
.y7d_c00388{bottom:947.600000pt;}
.y1_c00388{bottom:976.733333pt;}
.y2_c00388{bottom:978.266667pt;}
.ha_c00388{height:3.739141pt;}
.hb_c00388{height:7.412682pt;}
.hc_c00388{height:12.988594pt;}
.h8_c00388{height:14.890964pt;}
.h9_c00388{height:20.224297pt;}
.h4_c00388{height:20.466875pt;}
.h2_c00388{height:22.303646pt;}
.h5_c00388{height:27.879557pt;}
.h3_c00388{height:31.618698pt;}
.h1_c00388{height:35.357839pt;}
.h6_c00388{height:39.031380pt;}
.h7_c00388{height:42.770521pt;}
.h0_c00388{height:1186.666667pt;}
.w0_c00388{width:782.666667pt;}
.x0_c00388{left:0.000000pt;}
.x3_c00388{left:134.666667pt;}
.x94_c00388{left:135.626667pt;}
.x14_c00388{left:148.000000pt;}
.x51_c00388{left:149.706667pt;}
.x12_c00388{left:151.040000pt;}
.x82_c00388{left:152.960000pt;}
.x4b_c00388{left:158.666667pt;}
.x4_c00388{left:161.333333pt;}
.x95_c00388{left:165.706667pt;}
.x5c_c00388{left:167.626667pt;}
.x52_c00388{left:172.000000pt;}
.xb0_c00388{left:173.706667pt;}
.x13_c00388{left:176.373333pt;}
.x15_c00388{left:177.333333pt;}
.x90_c00388{left:178.666667pt;}
.x23_c00388{left:180.000000pt;}
.x64_c00388{left:184.000000pt;}
.xba_c00388{left:185.333333pt;}
.x5d_c00388{left:187.040000pt;}
.xb6_c00388{left:189.706667pt;}
.xcb_c00388{left:192.000000pt;}
.x76_c00388{left:195.040000pt;}
.x24_c00388{left:197.706667pt;}
.x8c_c00388{left:200.000000pt;}
.x5_c00388{left:200.960000pt;}
.xa1_c00388{left:204.373333pt;}
.x30_c00388{left:207.040000pt;}
.x9c_c00388{left:209.333333pt;}
.x16_c00388{left:210.293333pt;}
.x6e_c00388{left:212.000000pt;}
.x41_c00388{left:213.706667pt;}
.x91_c00388{left:214.666667pt;}
.x6_c00388{left:216.373333pt;}
.xbb_c00388{left:219.040000pt;}
.x83_c00388{left:220.000000pt;}
.x25_c00388{left:223.040000pt;}
.x17_c00388{left:225.706667pt;}
.x3b_c00388{left:226.666667pt;}
.x31_c00388{left:230.293333pt;}
.x7_c00388{left:238.666667pt;}
.x53_c00388{left:241.333333pt;}
.xe8_c00388{left:242.666667pt;}
.x77_c00388{left:246.666667pt;}
.x6f_c00388{left:247.626667pt;}
.x18_c00388{left:249.333333pt;}
.xcf_c00388{left:250.666667pt;}
.xda_c00388{left:254.293333pt;}
.x4c_c00388{left:257.706667pt;}
.x42_c00388{left:258.666667pt;}
.xe3_c00388{left:262.293333pt;}
.xa2_c00388{left:265.333333pt;}
.x65_c00388{left:267.040000pt;}
.x70_c00388{left:268.000000pt;}
.xc2_c00388{left:269.706667pt;}
.xdf_c00388{left:271.040000pt;}
.x8_c00388{left:272.000000pt;}
.x43_c00388{left:273.333333pt;}
.xe5_c00388{left:274.666667pt;}
.x32_c00388{left:277.333333pt;}
.x4d_c00388{left:281.706667pt;}
.x26_c00388{left:282.666667pt;}
.x71_c00388{left:283.626667pt;}
.x84_c00388{left:285.706667pt;}
.x96_c00388{left:286.666667pt;}
.xbc_c00388{left:290.666667pt;}
.x54_c00388{left:292.960000pt;}
.xa3_c00388{left:294.666667pt;}
.xb1_c00388{left:296.000000pt;}
.x19_c00388{left:297.333333pt;}
.x33_c00388{left:300.000000pt;}
.x44_c00388{left:303.040000pt;}
.x9_c00388{left:304.373333pt;}
.xc8_c00388{left:308.000000pt;}
.x78_c00388{left:308.960000pt;}
.x85_c00388{left:310.293333pt;}
.xcc_c00388{left:312.000000pt;}
.xb7_c00388{left:313.333333pt;}
.x5e_c00388{left:316.373333pt;}
.x92_c00388{left:321.333333pt;}
.xb2_c00388{left:324.000000pt;}
.x97_c00388{left:326.666667pt;}
.x66_c00388{left:328.373333pt;}
.x79_c00388{left:329.706667pt;}
.x4e_c00388{left:332.000000pt;}
.x9d_c00388{left:338.293333pt;}
.xd3_c00388{left:340.000000pt;}
.xa_c00388{left:340.960000pt;}
.x1a_c00388{left:343.040000pt;}
.x2_c00388{left:344.000000pt;}
.x3c_c00388{left:347.040000pt;}
.xd0_c00388{left:348.000000pt;}
.x72_c00388{left:349.706667pt;}
.xdb_c00388{left:350.666667pt;}
.xa4_c00388{left:352.000000pt;}
.x7a_c00388{left:352.960000pt;}
.xde_c00388{left:354.666667pt;}
.x27_c00388{left:355.626667pt;}
.xa8_c00388{left:357.706667pt;}
.xcd_c00388{left:358.666667pt;}
.xc3_c00388{left:361.706667pt;}
.x67_c00388{left:362.666667pt;}
.xbd_c00388{left:363.626667pt;}
.x1b_c00388{left:366.293333pt;}
.x45_c00388{left:367.626667pt;}
.xd4_c00388{left:369.333333pt;}
.x3d_c00388{left:372.000000pt;}
.x73_c00388{left:373.706667pt;}
.x68_c00388{left:374.666667pt;}
.x28_c00388{left:376.000000pt;}
.xd6_c00388{left:383.040000pt;}
.xbe_c00388{left:384.000000pt;}
.x1c_c00388{left:385.706667pt;}
.xe0_c00388{left:386.666667pt;}
.x7b_c00388{left:388.000000pt;}
.xd7_c00388{left:389.333333pt;}
.x34_c00388{left:390.293333pt;}
.x55_c00388{left:392.373333pt;}
.x29_c00388{left:393.706667pt;}
.xb_c00388{left:395.040000pt;}
.x46_c00388{left:396.000000pt;}
.x8d_c00388{left:398.293333pt;}
.xa9_c00388{left:400.000000pt;}
.x7c_c00388{left:401.333333pt;}
.xce_c00388{left:403.040000pt;}
.xa5_c00388{left:404.000000pt;}
.x9e_c00388{left:405.333333pt;}
.x35_c00388{left:411.040000pt;}
.x5f_c00388{left:413.706667pt;}
.x8e_c00388{left:415.040000pt;}
.x56_c00388{left:416.000000pt;}
.x2a_c00388{left:417.333333pt;}
.xc_c00388{left:418.666667pt;}
.xdd_c00388{left:422.666667pt;}
.x74_c00388{left:424.000000pt;}
.xd1_c00388{left:425.706667pt;}
.x69_c00388{left:426.666667pt;}
.xe4_c00388{left:428.000000pt;}
.xd8_c00388{left:429.333333pt;}
.x7d_c00388{left:431.040000pt;}
.xc9_c00388{left:433.706667pt;}
.x36_c00388{left:434.666667pt;}
.xe9_c00388{left:436.000000pt;}
.x8f_c00388{left:438.293333pt;}
.xd2_c00388{left:441.333333pt;}
.x47_c00388{left:447.426667pt;}
.xa6_c00388{left:448.960000pt;}
.xaa_c00388{left:453.333333pt;}
.x2b_c00388{left:456.373333pt;}
.x6a_c00388{left:458.293333pt;}
.xd5_c00388{left:459.626667pt;}
.x57_c00388{left:462.666667pt;}
.x86_c00388{left:464.000000pt;}
.xd_c00388{left:466.666667pt;}
.x1d_c00388{left:468.373333pt;}
.xc4_c00388{left:469.706667pt;}
.xd9_c00388{left:470.666667pt;}
.x3e_c00388{left:472.000000pt;}
.xb3_c00388{left:473.706667pt;}
.xb8_c00388{left:475.626667pt;}
.x9f_c00388{left:477.333333pt;}
.x2c_c00388{left:480.960000pt;}
.x6b_c00388{left:486.666667pt;}
.x60_c00388{left:487.626667pt;}
.x3f_c00388{left:489.333333pt;}
.x98_c00388{left:490.666667pt;}
.xe_c00388{left:493.333333pt;}
.xab_c00388{left:495.626667pt;}
.xb4_c00388{left:497.333333pt;}
.x58_c00388{left:498.666667pt;}
.x7e_c00388{left:500.000000pt;}
.x1e_c00388{left:501.706667pt;}
.x87_c00388{left:502.666667pt;}
.xe6_c00388{left:504.000000pt;}
.xac_c00388{left:506.666667pt;}
.xe2_c00388{left:508.000000pt;}
.xdc_c00388{left:510.666667pt;}
.x6c_c00388{left:512.000000pt;}
.x37_c00388{left:513.706667pt;}
.x59_c00388{left:514.666667pt;}
.x61_c00388{left:516.000000pt;}
.x7f_c00388{left:518.666667pt;}
.x88_c00388{left:520.000000pt;}
.x48_c00388{left:523.040000pt;}
.xb5_c00388{left:524.000000pt;}
.x2d_c00388{left:526.666667pt;}
.x4f_c00388{left:529.333333pt;}
.x1f_c00388{left:530.293333pt;}
.xbf_c00388{left:532.373333pt;}
.x75_c00388{left:535.626667pt;}
.x93_c00388{left:541.333333pt;}
.x62_c00388{left:544.000000pt;}
.xad_c00388{left:544.960000pt;}
.x20_c00388{left:547.040000pt;}
.xe1_c00388{left:548.000000pt;}
.x2e_c00388{left:550.666667pt;}
.xe7_c00388{left:552.000000pt;}
.xf_c00388{left:554.293333pt;}
.xb9_c00388{left:555.626667pt;}
.x80_c00388{left:557.333333pt;}
.x38_c00388{left:558.666667pt;}
.xae_c00388{left:560.960000pt;}
.xa0_c00388{left:565.706667pt;}
.xc5_c00388{left:568.000000pt;}
.x21_c00388{left:569.333333pt;}
.x5a_c00388{left:570.666667pt;}
.x39_c00388{left:572.373333pt;}
.xc0_c00388{left:573.333333pt;}
.x40_c00388{left:575.040000pt;}
.x89_c00388{left:577.706667pt;}
.x6d_c00388{left:581.706667pt;}
.x99_c00388{left:584.000000pt;}
.xc6_c00388{left:587.040000pt;}
.x10_c00388{left:592.373333pt;}
.x5b_c00388{left:594.666667pt;}
.x22_c00388{left:596.000000pt;}
.x50_c00388{left:597.706667pt;}
.x63_c00388{left:598.666667pt;}
.x8a_c00388{left:602.293333pt;}
.x81_c00388{left:604.000000pt;}
.x49_c00388{left:605.333333pt;}
.x9a_c00388{left:611.626667pt;}
.xc1_c00388{left:612.960000pt;}
.x2f_c00388{left:614.666667pt;}
.x11_c00388{left:615.626667pt;}
.xc7_c00388{left:616.960000pt;}
.xca_c00388{left:618.293333pt;}
.x3a_c00388{left:620.373333pt;}
.x1_c00388{left:622.666667pt;}
.xaf_c00388{left:627.040000pt;}
.x9b_c00388{left:629.706667pt;}
.xa7_c00388{left:630.666667pt;}
.x4a_c00388{left:635.626667pt;}
.x8b_c00388{left:640.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_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_d2507ae7e9f9ee22ce123cec.woff2')format("woff");}.ff1_c00389{font-family:ff1_c00389;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m58_c00389{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.me9_c00389{transform:matrix(0.366948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366948,0.000000,0.000000,0.250000,0,0);}
.m48_c00389{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m51_c00389{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mde_c00389{transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);}
.m29_c00389{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.md9_c00389{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.mcd_c00389{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m75_c00389{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m1e_c00389{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m16_c00389{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.ma7_c00389{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m28_c00389{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mdc_c00389{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mdf_c00389{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.mce_c00389{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m50_c00389{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.mb1_c00389{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m42_c00389{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m8d_c00389{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m6b_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);}
.m7d_c00389{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.mec_c00389{transform:matrix(0.401074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401074,0.000000,0.000000,0.250000,0,0);}
.m0_c00389{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.m17_c00389{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mb3_c00389{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m67_c00389{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m5d_c00389{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m2d_c00389{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m78_c00389{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.md4_c00389{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m64_c00389{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.m87_c00389{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m98_c00389{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.maf_c00389{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m35_c00389{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m9b_c00389{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m5c_c00389{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m76_c00389{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m7e_c00389{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m22_c00389{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m61_c00389{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m70_c00389{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m7b_c00389{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m27_c00389{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mcf_c00389{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m9f_c00389{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m71_c00389{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m4d_c00389{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mad_c00389{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m2b_c00389{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m82_c00389{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m2f_c00389{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m5a_c00389{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m96_c00389{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.me_c00389{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mcc_c00389{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.mbd_c00389{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m9e_c00389{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m46_c00389{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mc_c00389{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.ma1_c00389{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m49_c00389{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m43_c00389{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.me7_c00389{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.mc7_c00389{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m1d_c00389{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m54_c00389{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.mbc_c00389{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.me5_c00389{transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);}
.m93_c00389{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m6a_c00389{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.m7c_c00389{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.ma6_c00389{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m45_c00389{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m65_c00389{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.mcb_c00389{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mda_c00389{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.md7_c00389{transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);}
.m1a_c00389{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.mca_c00389{transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455042,0.000000,0.000000,0.250000,0,0);}
.mdb_c00389{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m4b_c00389{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m86_c00389{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.m4c_c00389{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.ma8_c00389{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.ma2_c00389{transform:matrix(0.470168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470168,0.000000,0.000000,0.250000,0,0);}
.m63_c00389{transform:matrix(0.471176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471176,0.000000,0.000000,0.250000,0,0);}
.mc4_c00389{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m9a_c00389{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mb7_c00389{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m24_c00389{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m7_c00389{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.me4_c00389{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m4f_c00389{transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);}
.m33_c00389{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.meb_c00389{transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);}
.ma0_c00389{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.me8_c00389{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.me2_c00389{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m18_c00389{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m66_c00389{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m77_c00389{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m5b_c00389{transform:matrix(0.493506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493506,0.000000,0.000000,0.250000,0,0);}
.m3b_c00389{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.md3_c00389{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m13_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);}
.md8_c00389{transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);}
.m9c_c00389{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m8b_c00389{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m79_c00389{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mb9_c00389{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m88_c00389{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.me3_c00389{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.md6_c00389{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m20_c00389{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m91_c00389{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m39_c00389{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m5f_c00389{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.md5_c00389{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m84_c00389{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m3c_c00389{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m2e_c00389{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m97_c00389{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.mc5_c00389{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m95_c00389{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m19_c00389{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mc0_c00389{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m8a_c00389{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.me6_c00389{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m1f_c00389{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mbb_c00389{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mb8_c00389{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.m3a_c00389{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.mdd_c00389{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m8e_c00389{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m32_c00389{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m47_c00389{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m60_c00389{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m2a_c00389{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.mba_c00389{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m5_c00389{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m62_c00389{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m74_c00389{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.mc3_c00389{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m6_c00389{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m73_c00389{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m52_c00389{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mb0_c00389{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.md2_c00389{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.ma3_c00389{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mf_c00389{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m55_c00389{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m99_c00389{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m44_c00389{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m8f_c00389{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mae_c00389{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.md1_c00389{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m21_c00389{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mb5_c00389{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mbf_c00389{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mac_c00389{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m40_c00389{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m3f_c00389{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mb6_c00389{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m68_c00389{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m12_c00389{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m89_c00389{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m90_c00389{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m94_c00389{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m34_c00389{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mea_c00389{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m6e_c00389{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m4e_c00389{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m9_c00389{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.ma4_c00389{transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);}
.m15_c00389{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m3e_c00389{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.m4a_c00389{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.mc8_c00389{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m11_c00389{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m2_c00389{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m4_c00389{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.me1_c00389{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m6f_c00389{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mc2_c00389{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m5e_c00389{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.ma9_c00389{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m92_c00389{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.me0_c00389{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mc9_c00389{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.mc6_c00389{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m3_c00389{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.mb_c00389{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m6c_c00389{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m85_c00389{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m36_c00389{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m81_c00389{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m56_c00389{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m8c_c00389{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m14_c00389{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m25_c00389{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.md_c00389{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m7a_c00389{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m57_c00389{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.m80_c00389{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m38_c00389{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);}
.m10_c00389{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mab_c00389{transform:matrix(0.628824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628824,0.000000,0.000000,0.250000,0,0);}
.m1_c00389{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m53_c00389{transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);}
.m69_c00389{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m59_c00389{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m31_c00389{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.ma_c00389{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mb4_c00389{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m9d_c00389{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m8_c00389{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m23_c00389{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.md0_c00389{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m3d_c00389{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.maa_c00389{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m1c_c00389{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m72_c00389{transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);}
.m6d_c00389{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m2c_c00389{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m41_c00389{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.mbe_c00389{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.m83_c00389{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.ma5_c00389{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m30_c00389{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mc1_c00389{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.mb2_c00389{transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);}
.m26_c00389{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m7f_c00389{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m1b_c00389{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m37_c00389{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v2_c00389{vertical-align:-6.000000px;}
.v0_c00389{vertical-align:0.000000px;}
.v1_c00389{vertical-align:6.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:-16.889280px;}
.ws1_c00389{word-spacing:-7.025875px;}
.ws2_c00389{word-spacing:-3.557922px;}
.ws3_c00389{word-spacing:0.000000px;}
._0_c00389{width:6.361929px;}
.fc0_c00389{color:transparent;}
.fs6_c00389{font-size:3.420000px;}
.fs4_c00389{font-size:18.720000px;}
.fs1_c00389{font-size:20.400000px;}
.fs3_c00389{font-size:25.500000px;}
.fs2_c00389{font-size:28.920000px;}
.fs0_c00389{font-size:32.340000px;}
.fs5_c00389{font-size:35.700000px;}
.fs7_c00389{font-size:39.120000px;}
.y0_c00389{bottom:0.000000px;}
.yc0_c00389{bottom:247.905000px;}
.ybf_c00389{bottom:249.180000px;}
.yc1_c00389{bottom:251.970000px;}
.ybe_c00389{bottom:252.405000px;}
.ybc_c00389{bottom:269.745000px;}
.ybb_c00389{bottom:271.905000px;}
.ybd_c00389{bottom:272.970000px;}
.yb7_c00389{bottom:289.245000px;}
.yba_c00389{bottom:290.970000px;}
.yb8_c00389{bottom:291.405000px;}
.yb9_c00389{bottom:292.470000px;}
.yb5_c00389{bottom:308.745000px;}
.yb4_c00389{bottom:310.905000px;}
.yb6_c00389{bottom:311.970000px;}
.yb0_c00389{bottom:328.245000px;}
.yb3_c00389{bottom:329.745000px;}
.yb1_c00389{bottom:330.405000px;}
.yb2_c00389{bottom:331.905000px;}
.yad_c00389{bottom:349.245000px;}
.yae_c00389{bottom:350.130000px;}
.yaf_c00389{bottom:351.405000px;}
.yac_c00389{bottom:368.745000px;}
.ya7_c00389{bottom:369.405000px;}
.ya8_c00389{bottom:369.630000px;}
.yab_c00389{bottom:369.825000px;}
.ya9_c00389{bottom:370.905000px;}
.yaa_c00389{bottom:371.970000px;}
.ya4_c00389{bottom:388.245000px;}
.ya5_c00389{bottom:389.970000px;}
.ya6_c00389{bottom:390.405000px;}
.ya1_c00389{bottom:407.745000px;}
.ya3_c00389{bottom:408.825000px;}
.ya2_c00389{bottom:409.905000px;}
.y9e_c00389{bottom:427.245000px;}
.y9f_c00389{bottom:428.970000px;}
.y9c_c00389{bottom:429.405000px;}
.ya0_c00389{bottom:430.470000px;}
.y9d_c00389{bottom:430.905000px;}
.y9b_c00389{bottom:446.745000px;}
.y98_c00389{bottom:448.905000px;}
.y99_c00389{bottom:449.130000px;}
.y9a_c00389{bottom:450.405000px;}
.y92_c00389{bottom:465.405000px;}
.y95_c00389{bottom:467.745000px;}
.y96_c00389{bottom:468.630000px;}
.y94_c00389{bottom:468.825000px;}
.y97_c00389{bottom:469.470000px;}
.y93_c00389{bottom:469.905000px;}
.y90_c00389{bottom:485.970000px;}
.y91_c00389{bottom:486.825000px;}
.y8e_c00389{bottom:488.970000px;}
.y8d_c00389{bottom:489.405000px;}
.y8f_c00389{bottom:490.470000px;}
.y8b_c00389{bottom:504.405000px;}
.y8c_c00389{bottom:505.470000px;}
.y89_c00389{bottom:506.745000px;}
.y88_c00389{bottom:507.630000px;}
.y8a_c00389{bottom:508.905000px;}
.y83_c00389{bottom:526.245000px;}
.y86_c00389{bottom:526.470000px;}
.y87_c00389{bottom:527.130000px;}
.y84_c00389{bottom:528.405000px;}
.y85_c00389{bottom:528.630000px;}
.y80_c00389{bottom:545.745000px;}
.y82_c00389{bottom:546.825000px;}
.y7f_c00389{bottom:547.905000px;}
.y81_c00389{bottom:548.130000px;}
.y7e_c00389{bottom:566.130000px;}
.y7a_c00389{bottom:566.325000px;}
.y7b_c00389{bottom:567.405000px;}
.y7c_c00389{bottom:567.630000px;}
.y7d_c00389{bottom:568.470000px;}
.y74_c00389{bottom:583.905000px;}
.y76_c00389{bottom:584.745000px;}
.y79_c00389{bottom:584.970000px;}
.y77_c00389{bottom:586.470000px;}
.y75_c00389{bottom:586.905000px;}
.y78_c00389{bottom:587.130000px;}
.y71_c00389{bottom:605.745000px;}
.y6e_c00389{bottom:606.405000px;}
.y73_c00389{bottom:606.630000px;}
.y72_c00389{bottom:606.825000px;}
.y70_c00389{bottom:607.470000px;}
.y6f_c00389{bottom:607.905000px;}
.y6a_c00389{bottom:622.905000px;}
.y6d_c00389{bottom:625.245000px;}
.y6c_c00389{bottom:626.130000px;}
.y6b_c00389{bottom:627.405000px;}
.y67_c00389{bottom:643.905000px;}
.y65_c00389{bottom:644.745000px;}
.y68_c00389{bottom:645.630000px;}
.y69_c00389{bottom:646.470000px;}
.y66_c00389{bottom:646.905000px;}
.y63_c00389{bottom:663.825000px;}
.y64_c00389{bottom:664.245000px;}
.y62_c00389{bottom:665.130000px;}
.y61_c00389{bottom:666.405000px;}
.y5f_c00389{bottom:684.825000px;}
.y5e_c00389{bottom:685.905000px;}
.y60_c00389{bottom:686.130000px;}
.y5d_c00389{bottom:703.245000px;}
.y5c_c00389{bottom:705.405000px;}
.y5b_c00389{bottom:705.630000px;}
.y58_c00389{bottom:722.745000px;}
.y57_c00389{bottom:724.905000px;}
.y5a_c00389{bottom:725.130000px;}
.y59_c00389{bottom:725.970000px;}
.y53_c00389{bottom:743.745000px;}
.y56_c00389{bottom:744.630000px;}
.y55_c00389{bottom:745.470000px;}
.y54_c00389{bottom:745.905000px;}
.y4f_c00389{bottom:763.245000px;}
.y51_c00389{bottom:764.130000px;}
.y50_c00389{bottom:765.405000px;}
.y52_c00389{bottom:766.470000px;}
.y4e_c00389{bottom:782.745000px;}
.y4b_c00389{bottom:783.630000px;}
.y4d_c00389{bottom:783.825000px;}
.y4c_c00389{bottom:784.470000px;}
.y4a_c00389{bottom:784.905000px;}
.y48_c00389{bottom:800.745000px;}
.y46_c00389{bottom:801.405000px;}
.y45_c00389{bottom:802.245000px;}
.y47_c00389{bottom:803.325000px;}
.y44_c00389{bottom:804.405000px;}
.y49_c00389{bottom:804.630000px;}
.y43_c00389{bottom:820.470000px;}
.y3e_c00389{bottom:821.745000px;}
.y42_c00389{bottom:822.630000px;}
.y41_c00389{bottom:822.825000px;}
.y40_c00389{bottom:823.905000px;}
.y3f_c00389{bottom:824.970000px;}
.y3b_c00389{bottom:841.245000px;}
.y3c_c00389{bottom:842.325000px;}
.y3d_c00389{bottom:843.405000px;}
.y3a_c00389{bottom:844.470000px;}
.y34_c00389{bottom:860.325000px;}
.y35_c00389{bottom:862.245000px;}
.y39_c00389{bottom:862.470000px;}
.y38_c00389{bottom:862.905000px;}
.y37_c00389{bottom:863.970000px;}
.y36_c00389{bottom:864.405000px;}
.y31_c00389{bottom:880.245000px;}
.y30_c00389{bottom:881.745000px;}
.y2f_c00389{bottom:882.405000px;}
.y32_c00389{bottom:882.825000px;}
.y33_c00389{bottom:883.905000px;}
.y2e_c00389{bottom:898.905000px;}
.y2b_c00389{bottom:901.245000px;}
.y2c_c00389{bottom:902.970000px;}
.y2d_c00389{bottom:903.405000px;}
.y29_c00389{bottom:918.405000px;}
.y2a_c00389{bottom:920.745000px;}
.y28_c00389{bottom:921.630000px;}
.y27_c00389{bottom:922.905000px;}
.y26_c00389{bottom:923.970000px;}
.y24_c00389{bottom:939.405000px;}
.y23_c00389{bottom:942.405000px;}
.y22_c00389{bottom:942.420000px;}
.y25_c00389{bottom:942.630000px;}
.y21_c00389{bottom:943.470000px;}
.y20_c00389{bottom:958.905000px;}
.y1e_c00389{bottom:959.745000px;}
.y1f_c00389{bottom:961.905000px;}
.y1d_c00389{bottom:962.130000px;}
.y19_c00389{bottom:979.245000px;}
.y1a_c00389{bottom:981.405000px;}
.y1b_c00389{bottom:981.630000px;}
.y1c_c00389{bottom:982.470000px;}
.y16_c00389{bottom:998.970000px;}
.y18_c00389{bottom:999.405000px;}
.y14_c00389{bottom:1000.905000px;}
.y15_c00389{bottom:1001.130000px;}
.y17_c00389{bottom:1001.970000px;}
.y11_c00389{bottom:1017.405000px;}
.y13_c00389{bottom:1018.245000px;}
.y12_c00389{bottom:1020.405000px;}
.y10_c00389{bottom:1021.470000px;}
.yd_c00389{bottom:1036.905000px;}
.ya_c00389{bottom:1037.970000px;}
.ye_c00389{bottom:1038.405000px;}
.y9_c00389{bottom:1039.245000px;}
.yf_c00389{bottom:1040.130000px;}
.yc_c00389{bottom:1040.970000px;}
.yb_c00389{bottom:1041.405000px;}
.y8_c00389{bottom:1042.470000px;}
.y7_c00389{bottom:1056.825000px;}
.y6_c00389{bottom:1057.470000px;}
.y5_c00389{bottom:1059.630000px;}
.y4_c00389{bottom:1060.470000px;}
.y3_c00389{bottom:1060.905000px;}
.y1_c00389{bottom:1098.825000px;}
.y2_c00389{bottom:1099.050000px;}
.h8_c00389{height:4.206533px;}
.h5_c00389{height:23.025234px;}
.h2_c00389{height:25.091602px;}
.h4_c00389{height:31.364502px;}
.h3_c00389{height:35.571035px;}
.h1_c00389{height:39.777568px;}
.h7_c00389{height:41.571035px;}
.h6_c00389{height:43.910303px;}
.h9_c00389{height:48.116836px;}
.h0_c00389{height:1335.000000px;}
.w0_c00389{width:880.500000px;}
.x0_c00389{left:0.000000px;}
.xf8_c00389{left:150.420000px;}
.xbf_c00389{left:151.500000px;}
.x6e_c00389{left:153.000000px;}
.x1_c00389{left:154.500000px;}
.xe7_c00389{left:166.500000px;}
.xd6_c00389{left:168.000000px;}
.x2b_c00389{left:169.500000px;}
.x3_c00389{left:170.580000px;}
.x1d_c00389{left:175.920000px;}
.xe_c00389{left:180.420000px;}
.x25_c00389{left:181.500000px;}
.xa9_c00389{left:183.000000px;}
.xb0_c00389{left:184.500000px;}
.x82_c00389{left:189.000000px;}
.xcb_c00389{left:190.500000px;}
.x4b_c00389{left:195.000000px;}
.x1e_c00389{left:196.080000px;}
.xd2_c00389{left:197.580000px;}
.x7a_c00389{left:199.080000px;}
.xb8_c00389{left:205.080000px;}
.x9a_c00389{left:206.580000px;}
.x83_c00389{left:210.420000px;}
.xb1_c00389{left:211.500000px;}
.x108_c00389{left:212.580000px;}
.x26_c00389{left:214.500000px;}
.x38_c00389{left:216.000000px;}
.x62_c00389{left:217.500000px;}
.xf9_c00389{left:218.580000px;}
.xc0_c00389{left:220.500000px;}
.x8d_c00389{left:222.000000px;}
.x104_c00389{left:225.420000px;}
.xf_c00389{left:227.580000px;}
.x27_c00389{left:229.500000px;}
.xff_c00389{left:231.420000px;}
.x5a_c00389{left:232.500000px;}
.x39_c00389{left:234.000000px;}
.x95_c00389{left:235.500000px;}
.x4_c00389{left:237.000000px;}
.x9b_c00389{left:238.500000px;}
.x3e_c00389{left:240.000000px;}
.xaa_c00389{left:243.420000px;}
.x10_c00389{left:244.500000px;}
.x2c_c00389{left:245.580000px;}
.x5b_c00389{left:247.500000px;}
.xd3_c00389{left:248.580000px;}
.xc1_c00389{left:251.580000px;}
.x28_c00389{left:253.500000px;}
.xcc_c00389{left:255.420000px;}
.x100_c00389{left:257.580000px;}
.x4c_c00389{left:259.500000px;}
.x3f_c00389{left:261.000000px;}
.x71_c00389{left:264.000000px;}
.xdb_c00389{left:265.500000px;}
.xb2_c00389{left:267.000000px;}
.x11_c00389{left:269.580000px;}
.xa2_c00389{left:271.920000px;}
.x29_c00389{left:273.420000px;}
.x84_c00389{left:274.920000px;}
.x3a_c00389{left:277.080000px;}
.x7b_c00389{left:278.580000px;}
.x63_c00389{left:280.080000px;}
.x40_c00389{left:282.420000px;}
.xcd_c00389{left:283.500000px;}
.x9c_c00389{left:285.000000px;}
.xf3_c00389{left:287.145000px;}
.x8e_c00389{left:289.080000px;}
.xab_c00389{left:291.420000px;}
.xd4_c00389{left:292.500000px;}
.xea_c00389{left:293.580000px;}
.x2d_c00389{left:295.275000px;}
.xe2_c00389{left:297.000000px;}
.x2a_c00389{left:300.000000px;}
.x6f_c00389{left:303.420000px;}
.x12_c00389{left:304.500000px;}
.xb3_c00389{left:306.420000px;}
.xb9_c00389{left:307.500000px;}
.x41_c00389{left:309.000000px;}
.x1f_c00389{left:310.080000px;}
.xd5_c00389{left:311.580000px;}
.xe8_c00389{left:313.920000px;}
.xd7_c00389{left:315.000000px;}
.xa3_c00389{left:316.500000px;}
.xfc_c00389{left:319.500000px;}
.xc2_c00389{left:324.420000px;}
.x2e_c00389{left:326.580000px;}
.x20_c00389{left:328.500000px;}
.x9d_c00389{left:330.000000px;}
.xf1_c00389{left:331.275000px;}
.x8f_c00389{left:334.920000px;}
.x85_c00389{left:337.080000px;}
.x3b_c00389{left:338.580000px;}
.x5_c00389{left:341.580000px;}
.xf4_c00389{left:343.500000px;}
.xce_c00389{left:345.000000px;}
.x53_c00389{left:346.920000px;}
.xdc_c00389{left:348.000000px;}
.x13_c00389{left:349.500000px;}
.x42_c00389{left:352.080000px;}
.x64_c00389{left:354.000000px;}
.xac_c00389{left:357.000000px;}
.x3c_c00389{left:359.580000px;}
.x6_c00389{left:361.920000px;}
.xee_c00389{left:363.420000px;}
.xdf_c00389{left:364.500000px;}
.xc8_c00389{left:366.855000px;}
.x7c_c00389{left:370.080000px;}
.x54_c00389{left:373.080000px;}
.x4d_c00389{left:375.420000px;}
.x90_c00389{left:378.000000px;}
.x86_c00389{left:379.080000px;}
.xfd_c00389{left:381.000000px;}
.x70_c00389{left:382.080000px;}
.xe6_c00389{left:384.000000px;}
.x96_c00389{left:385.500000px;}
.xe9_c00389{left:388.500000px;}
.x7_c00389{left:389.580000px;}
.x21_c00389{left:391.080000px;}
.x2_c00389{left:393.000000px;}
.xe0_c00389{left:394.080000px;}
.x65_c00389{left:397.920000px;}
.x2f_c00389{left:399.420000px;}
.xc3_c00389{left:400.920000px;}
.xef_c00389{left:402.420000px;}
.xba_c00389{left:405.420000px;}
.x4e_c00389{left:406.500000px;}
.x109_c00389{left:408.000000px;}
.x3d_c00389{left:410.580000px;}
.x72_c00389{left:412.500000px;}
.x14_c00389{left:413.580000px;}
.x101_c00389{left:415.500000px;}
.x9e_c00389{left:416.580000px;}
.xd8_c00389{left:418.500000px;}
.xb4_c00389{left:421.500000px;}
.x30_c00389{left:424.500000px;}
.x10a_c00389{left:426.000000px;}
.x43_c00389{left:427.080000px;}
.x15_c00389{left:429.000000px;}
.x105_c00389{left:430.920000px;}
.x66_c00389{left:432.000000px;}
.x55_c00389{left:434.145000px;}
.xcf_c00389{left:436.920000px;}
.x91_c00389{left:438.000000px;}
.x97_c00389{left:440.580000px;}
.xc4_c00389{left:442.500000px;}
.xa4_c00389{left:444.420000px;}
.x44_c00389{left:447.420000px;}
.xeb_c00389{left:450.000000px;}
.xe3_c00389{left:451.500000px;}
.x87_c00389{left:453.000000px;}
.x16_c00389{left:458.580000px;}
.x8_c00389{left:461.580000px;}
.xad_c00389{left:463.500000px;}
.x4f_c00389{left:465.000000px;}
.x7d_c00389{left:468.420000px;}
.x5c_c00389{left:470.580000px;}
.xd0_c00389{left:472.500000px;}
.x73_c00389{left:474.420000px;}
.x31_c00389{left:476.580000px;}
.x98_c00389{left:478.500000px;}
.xf0_c00389{left:480.000000px;}
.x102_c00389{left:484.500000px;}
.xfa_c00389{left:486.000000px;}
.x45_c00389{left:487.500000px;}
.x56_c00389{left:490.080000px;}
.xbb_c00389{left:493.500000px;}
.x32_c00389{left:495.000000px;}
.x7e_c00389{left:496.920000px;}
.x17_c00389{left:498.000000px;}
.x5d_c00389{left:500.580000px;}
.xfe_c00389{left:504.000000px;}
.x46_c00389{left:505.500000px;}
.x33_c00389{left:507.420000px;}
.xe4_c00389{left:508.500000px;}
.xb5_c00389{left:510.420000px;}
.x74_c00389{left:513.000000px;}
.x67_c00389{left:514.080000px;}
.xae_c00389{left:515.580000px;}
.x10b_c00389{left:517.500000px;}
.x92_c00389{left:523.080000px;}
.xd9_c00389{left:525.000000px;}
.x57_c00389{left:526.500000px;}
.x50_c00389{left:532.080000px;}
.xf5_c00389{left:534.000000px;}
.x10d_c00389{left:535.500000px;}
.x9_c00389{left:537.000000px;}
.xb6_c00389{left:538.920000px;}
.xa5_c00389{left:540.420000px;}
.x75_c00389{left:541.500000px;}
.x99_c00389{left:543.420000px;}
.x34_c00389{left:546.000000px;}
.xfb_c00389{left:547.080000px;}
.x88_c00389{left:548.580000px;}
.xec_c00389{left:550.500000px;}
.x7f_c00389{left:553.080000px;}
.x51_c00389{left:555.000000px;}
.xbc_c00389{left:558.000000px;}
.x47_c00389{left:559.500000px;}
.x10c_c00389{left:560.580000px;}
.x68_c00389{left:562.920000px;}
.xa_c00389{left:564.000000px;}
.xa6_c00389{left:566.580000px;}
.x5e_c00389{left:568.080000px;}
.xf2_c00389{left:570.000000px;}
.x9f_c00389{left:573.000000px;}
.x22_c00389{left:574.080000px;}
.x18_c00389{left:576.000000px;}
.xbd_c00389{left:577.500000px;}
.x48_c00389{left:579.420000px;}
.xda_c00389{left:580.920000px;}
.xaf_c00389{left:582.420000px;}
.x35_c00389{left:583.500000px;}
.xf6_c00389{left:586.500000px;}
.x89_c00389{left:589.500000px;}
.xbe_c00389{left:591.420000px;}
.x69_c00389{left:595.500000px;}
.x93_c00389{left:601.500000px;}
.x80_c00389{left:603.000000px;}
.xe5_c00389{left:604.500000px;}
.xa0_c00389{left:605.580000px;}
.xb7_c00389{left:607.080000px;}
.x5f_c00389{left:609.000000px;}
.x8a_c00389{left:612.000000px;}
.x58_c00389{left:615.420000px;}
.x19_c00389{left:616.920000px;}
.x49_c00389{left:618.000000px;}
.xdd_c00389{left:619.500000px;}
.x10e_c00389{left:621.420000px;}
.x6a_c00389{left:625.920000px;}
.x76_c00389{left:627.000000px;}
.xc9_c00389{left:628.080000px;}
.xf7_c00389{left:631.080000px;}
.xb_c00389{left:634.500000px;}
.x36_c00389{left:636.420000px;}
.xc5_c00389{left:640.500000px;}
.x1a_c00389{left:643.080000px;}
.x4a_c00389{left:645.000000px;}
.x106_c00389{left:646.080000px;}
.xa7_c00389{left:648.000000px;}
.xd1_c00389{left:652.080000px;}
.x52_c00389{left:653.580000px;}
.xc_c00389{left:655.500000px;}
.xa1_c00389{left:658.080000px;}
.x6b_c00389{left:659.580000px;}
.x77_c00389{left:661.500000px;}
.xe1_c00389{left:662.580000px;}
.x37_c00389{left:664.500000px;}
.x103_c00389{left:668.580000px;}
.x23_c00389{left:670.920000px;}
.xc6_c00389{left:672.420000px;}
.x1b_c00389{left:673.920000px;}
.x6c_c00389{left:678.420000px;}
.x107_c00389{left:679.920000px;}
.x94_c00389{left:681.000000px;}
.x8b_c00389{left:683.580000px;}
.xd_c00389{left:685.500000px;}
.x78_c00389{left:690.000000px;}
.x60_c00389{left:691.080000px;}
.xa8_c00389{left:694.500000px;}
.x59_c00389{left:695.775000px;}
.x1c_c00389{left:700.500000px;}
.x79_c00389{left:703.080000px;}
.xca_c00389{left:705.000000px;}
.x6d_c00389{left:706.500000px;}
.xde_c00389{left:708.420000px;}
.x61_c00389{left:709.920000px;}
.xc7_c00389{left:712.500000px;}
.xed_c00389{left:713.580000px;}
.x81_c00389{left:717.000000px;}
.x24_c00389{left:718.080000px;}
.x8c_c00389{left:723.000000px;}
@media print{
.v2_c00389{vertical-align:-5.333333pt;}
.v0_c00389{vertical-align:0.000000pt;}
.v1_c00389{vertical-align:5.333333pt;}
.ls0_c00389{letter-spacing:0.000000pt;}
.ws0_c00389{word-spacing:-15.012693pt;}
.ws1_c00389{word-spacing:-6.245223pt;}
.ws2_c00389{word-spacing:-3.162597pt;}
.ws3_c00389{word-spacing:0.000000pt;}
._0_c00389{width:5.655048pt;}
.fs6_c00389{font-size:3.040000pt;}
.fs4_c00389{font-size:16.640000pt;}
.fs1_c00389{font-size:18.133333pt;}
.fs3_c00389{font-size:22.666667pt;}
.fs2_c00389{font-size:25.706667pt;}
.fs0_c00389{font-size:28.746667pt;}
.fs5_c00389{font-size:31.733333pt;}
.fs7_c00389{font-size:34.773333pt;}
.y0_c00389{bottom:0.000000pt;}
.yc0_c00389{bottom:220.360000pt;}
.ybf_c00389{bottom:221.493333pt;}
.yc1_c00389{bottom:223.973333pt;}
.ybe_c00389{bottom:224.360000pt;}
.ybc_c00389{bottom:239.773333pt;}
.ybb_c00389{bottom:241.693333pt;}
.ybd_c00389{bottom:242.640000pt;}
.yb7_c00389{bottom:257.106667pt;}
.yba_c00389{bottom:258.640000pt;}
.yb8_c00389{bottom:259.026667pt;}
.yb9_c00389{bottom:259.973333pt;}
.yb5_c00389{bottom:274.440000pt;}
.yb4_c00389{bottom:276.360000pt;}
.yb6_c00389{bottom:277.306667pt;}
.yb0_c00389{bottom:291.773333pt;}
.yb3_c00389{bottom:293.106667pt;}
.yb1_c00389{bottom:293.693333pt;}
.yb2_c00389{bottom:295.026667pt;}
.yad_c00389{bottom:310.440000pt;}
.yae_c00389{bottom:311.226667pt;}
.yaf_c00389{bottom:312.360000pt;}
.yac_c00389{bottom:327.773333pt;}
.ya7_c00389{bottom:328.360000pt;}
.ya8_c00389{bottom:328.560000pt;}
.yab_c00389{bottom:328.733333pt;}
.ya9_c00389{bottom:329.693333pt;}
.yaa_c00389{bottom:330.640000pt;}
.ya4_c00389{bottom:345.106667pt;}
.ya5_c00389{bottom:346.640000pt;}
.ya6_c00389{bottom:347.026667pt;}
.ya1_c00389{bottom:362.440000pt;}
.ya3_c00389{bottom:363.400000pt;}
.ya2_c00389{bottom:364.360000pt;}
.y9e_c00389{bottom:379.773333pt;}
.y9f_c00389{bottom:381.306667pt;}
.y9c_c00389{bottom:381.693333pt;}
.ya0_c00389{bottom:382.640000pt;}
.y9d_c00389{bottom:383.026667pt;}
.y9b_c00389{bottom:397.106667pt;}
.y98_c00389{bottom:399.026667pt;}
.y99_c00389{bottom:399.226667pt;}
.y9a_c00389{bottom:400.360000pt;}
.y92_c00389{bottom:413.693333pt;}
.y95_c00389{bottom:415.773333pt;}
.y96_c00389{bottom:416.560000pt;}
.y94_c00389{bottom:416.733333pt;}
.y97_c00389{bottom:417.306667pt;}
.y93_c00389{bottom:417.693333pt;}
.y90_c00389{bottom:431.973333pt;}
.y91_c00389{bottom:432.733333pt;}
.y8e_c00389{bottom:434.640000pt;}
.y8d_c00389{bottom:435.026667pt;}
.y8f_c00389{bottom:435.973333pt;}
.y8b_c00389{bottom:448.360000pt;}
.y8c_c00389{bottom:449.306667pt;}
.y89_c00389{bottom:450.440000pt;}
.y88_c00389{bottom:451.226667pt;}
.y8a_c00389{bottom:452.360000pt;}
.y83_c00389{bottom:467.773333pt;}
.y86_c00389{bottom:467.973333pt;}
.y87_c00389{bottom:468.560000pt;}
.y84_c00389{bottom:469.693333pt;}
.y85_c00389{bottom:469.893333pt;}
.y80_c00389{bottom:485.106667pt;}
.y82_c00389{bottom:486.066667pt;}
.y7f_c00389{bottom:487.026667pt;}
.y81_c00389{bottom:487.226667pt;}
.y7e_c00389{bottom:503.226667pt;}
.y7a_c00389{bottom:503.400000pt;}
.y7b_c00389{bottom:504.360000pt;}
.y7c_c00389{bottom:504.560000pt;}
.y7d_c00389{bottom:505.306667pt;}
.y74_c00389{bottom:519.026667pt;}
.y76_c00389{bottom:519.773333pt;}
.y79_c00389{bottom:519.973333pt;}
.y77_c00389{bottom:521.306667pt;}
.y75_c00389{bottom:521.693333pt;}
.y78_c00389{bottom:521.893333pt;}
.y71_c00389{bottom:538.440000pt;}
.y6e_c00389{bottom:539.026667pt;}
.y73_c00389{bottom:539.226667pt;}
.y72_c00389{bottom:539.400000pt;}
.y70_c00389{bottom:539.973333pt;}
.y6f_c00389{bottom:540.360000pt;}
.y6a_c00389{bottom:553.693333pt;}
.y6d_c00389{bottom:555.773333pt;}
.y6c_c00389{bottom:556.560000pt;}
.y6b_c00389{bottom:557.693333pt;}
.y67_c00389{bottom:572.360000pt;}
.y65_c00389{bottom:573.106667pt;}
.y68_c00389{bottom:573.893333pt;}
.y69_c00389{bottom:574.640000pt;}
.y66_c00389{bottom:575.026667pt;}
.y63_c00389{bottom:590.066667pt;}
.y64_c00389{bottom:590.440000pt;}
.y62_c00389{bottom:591.226667pt;}
.y61_c00389{bottom:592.360000pt;}
.y5f_c00389{bottom:608.733333pt;}
.y5e_c00389{bottom:609.693333pt;}
.y60_c00389{bottom:609.893333pt;}
.y5d_c00389{bottom:625.106667pt;}
.y5c_c00389{bottom:627.026667pt;}
.y5b_c00389{bottom:627.226667pt;}
.y58_c00389{bottom:642.440000pt;}
.y57_c00389{bottom:644.360000pt;}
.y5a_c00389{bottom:644.560000pt;}
.y59_c00389{bottom:645.306667pt;}
.y53_c00389{bottom:661.106667pt;}
.y56_c00389{bottom:661.893333pt;}
.y55_c00389{bottom:662.640000pt;}
.y54_c00389{bottom:663.026667pt;}
.y4f_c00389{bottom:678.440000pt;}
.y51_c00389{bottom:679.226667pt;}
.y50_c00389{bottom:680.360000pt;}
.y52_c00389{bottom:681.306667pt;}
.y4e_c00389{bottom:695.773333pt;}
.y4b_c00389{bottom:696.560000pt;}
.y4d_c00389{bottom:696.733333pt;}
.y4c_c00389{bottom:697.306667pt;}
.y4a_c00389{bottom:697.693333pt;}
.y48_c00389{bottom:711.773333pt;}
.y46_c00389{bottom:712.360000pt;}
.y45_c00389{bottom:713.106667pt;}
.y47_c00389{bottom:714.066667pt;}
.y44_c00389{bottom:715.026667pt;}
.y49_c00389{bottom:715.226667pt;}
.y43_c00389{bottom:729.306667pt;}
.y3e_c00389{bottom:730.440000pt;}
.y42_c00389{bottom:731.226667pt;}
.y41_c00389{bottom:731.400000pt;}
.y40_c00389{bottom:732.360000pt;}
.y3f_c00389{bottom:733.306667pt;}
.y3b_c00389{bottom:747.773333pt;}
.y3c_c00389{bottom:748.733333pt;}
.y3d_c00389{bottom:749.693333pt;}
.y3a_c00389{bottom:750.640000pt;}
.y34_c00389{bottom:764.733333pt;}
.y35_c00389{bottom:766.440000pt;}
.y39_c00389{bottom:766.640000pt;}
.y38_c00389{bottom:767.026667pt;}
.y37_c00389{bottom:767.973333pt;}
.y36_c00389{bottom:768.360000pt;}
.y31_c00389{bottom:782.440000pt;}
.y30_c00389{bottom:783.773333pt;}
.y2f_c00389{bottom:784.360000pt;}
.y32_c00389{bottom:784.733333pt;}
.y33_c00389{bottom:785.693333pt;}
.y2e_c00389{bottom:799.026667pt;}
.y2b_c00389{bottom:801.106667pt;}
.y2c_c00389{bottom:802.640000pt;}
.y2d_c00389{bottom:803.026667pt;}
.y29_c00389{bottom:816.360000pt;}
.y2a_c00389{bottom:818.440000pt;}
.y28_c00389{bottom:819.226667pt;}
.y27_c00389{bottom:820.360000pt;}
.y26_c00389{bottom:821.306667pt;}
.y24_c00389{bottom:835.026667pt;}
.y23_c00389{bottom:837.693333pt;}
.y22_c00389{bottom:837.706667pt;}
.y25_c00389{bottom:837.893333pt;}
.y21_c00389{bottom:838.640000pt;}
.y20_c00389{bottom:852.360000pt;}
.y1e_c00389{bottom:853.106667pt;}
.y1f_c00389{bottom:855.026667pt;}
.y1d_c00389{bottom:855.226667pt;}
.y19_c00389{bottom:870.440000pt;}
.y1a_c00389{bottom:872.360000pt;}
.y1b_c00389{bottom:872.560000pt;}
.y1c_c00389{bottom:873.306667pt;}
.y16_c00389{bottom:887.973333pt;}
.y18_c00389{bottom:888.360000pt;}
.y14_c00389{bottom:889.693333pt;}
.y15_c00389{bottom:889.893333pt;}
.y17_c00389{bottom:890.640000pt;}
.y11_c00389{bottom:904.360000pt;}
.y13_c00389{bottom:905.106667pt;}
.y12_c00389{bottom:907.026667pt;}
.y10_c00389{bottom:907.973333pt;}
.yd_c00389{bottom:921.693333pt;}
.ya_c00389{bottom:922.640000pt;}
.ye_c00389{bottom:923.026667pt;}
.y9_c00389{bottom:923.773333pt;}
.yf_c00389{bottom:924.560000pt;}
.yc_c00389{bottom:925.306667pt;}
.yb_c00389{bottom:925.693333pt;}
.y8_c00389{bottom:926.640000pt;}
.y7_c00389{bottom:939.400000pt;}
.y6_c00389{bottom:939.973333pt;}
.y5_c00389{bottom:941.893333pt;}
.y4_c00389{bottom:942.640000pt;}
.y3_c00389{bottom:943.026667pt;}
.y1_c00389{bottom:976.733333pt;}
.y2_c00389{bottom:976.933333pt;}
.h8_c00389{height:3.739141pt;}
.h5_c00389{height:20.466875pt;}
.h2_c00389{height:22.303646pt;}
.h4_c00389{height:27.879557pt;}
.h3_c00389{height:31.618698pt;}
.h1_c00389{height:35.357839pt;}
.h7_c00389{height:36.952031pt;}
.h6_c00389{height:39.031380pt;}
.h9_c00389{height:42.770521pt;}
.h0_c00389{height:1186.666667pt;}
.w0_c00389{width:782.666667pt;}
.x0_c00389{left:0.000000pt;}
.xf8_c00389{left:133.706667pt;}
.xbf_c00389{left:134.666667pt;}
.x6e_c00389{left:136.000000pt;}
.x1_c00389{left:137.333333pt;}
.xe7_c00389{left:148.000000pt;}
.xd6_c00389{left:149.333333pt;}
.x2b_c00389{left:150.666667pt;}
.x3_c00389{left:151.626667pt;}
.x1d_c00389{left:156.373333pt;}
.xe_c00389{left:160.373333pt;}
.x25_c00389{left:161.333333pt;}
.xa9_c00389{left:162.666667pt;}
.xb0_c00389{left:164.000000pt;}
.x82_c00389{left:168.000000pt;}
.xcb_c00389{left:169.333333pt;}
.x4b_c00389{left:173.333333pt;}
.x1e_c00389{left:174.293333pt;}
.xd2_c00389{left:175.626667pt;}
.x7a_c00389{left:176.960000pt;}
.xb8_c00389{left:182.293333pt;}
.x9a_c00389{left:183.626667pt;}
.x83_c00389{left:187.040000pt;}
.xb1_c00389{left:188.000000pt;}
.x108_c00389{left:188.960000pt;}
.x26_c00389{left:190.666667pt;}
.x38_c00389{left:192.000000pt;}
.x62_c00389{left:193.333333pt;}
.xf9_c00389{left:194.293333pt;}
.xc0_c00389{left:196.000000pt;}
.x8d_c00389{left:197.333333pt;}
.x104_c00389{left:200.373333pt;}
.xf_c00389{left:202.293333pt;}
.x27_c00389{left:204.000000pt;}
.xff_c00389{left:205.706667pt;}
.x5a_c00389{left:206.666667pt;}
.x39_c00389{left:208.000000pt;}
.x95_c00389{left:209.333333pt;}
.x4_c00389{left:210.666667pt;}
.x9b_c00389{left:212.000000pt;}
.x3e_c00389{left:213.333333pt;}
.xaa_c00389{left:216.373333pt;}
.x10_c00389{left:217.333333pt;}
.x2c_c00389{left:218.293333pt;}
.x5b_c00389{left:220.000000pt;}
.xd3_c00389{left:220.960000pt;}
.xc1_c00389{left:223.626667pt;}
.x28_c00389{left:225.333333pt;}
.xcc_c00389{left:227.040000pt;}
.x100_c00389{left:228.960000pt;}
.x4c_c00389{left:230.666667pt;}
.x3f_c00389{left:232.000000pt;}
.x71_c00389{left:234.666667pt;}
.xdb_c00389{left:236.000000pt;}
.xb2_c00389{left:237.333333pt;}
.x11_c00389{left:239.626667pt;}
.xa2_c00389{left:241.706667pt;}
.x29_c00389{left:243.040000pt;}
.x84_c00389{left:244.373333pt;}
.x3a_c00389{left:246.293333pt;}
.x7b_c00389{left:247.626667pt;}
.x63_c00389{left:248.960000pt;}
.x40_c00389{left:251.040000pt;}
.xcd_c00389{left:252.000000pt;}
.x9c_c00389{left:253.333333pt;}
.xf3_c00389{left:255.240000pt;}
.x8e_c00389{left:256.960000pt;}
.xab_c00389{left:259.040000pt;}
.xd4_c00389{left:260.000000pt;}
.xea_c00389{left:260.960000pt;}
.x2d_c00389{left:262.466667pt;}
.xe2_c00389{left:264.000000pt;}
.x2a_c00389{left:266.666667pt;}
.x6f_c00389{left:269.706667pt;}
.x12_c00389{left:270.666667pt;}
.xb3_c00389{left:272.373333pt;}
.xb9_c00389{left:273.333333pt;}
.x41_c00389{left:274.666667pt;}
.x1f_c00389{left:275.626667pt;}
.xd5_c00389{left:276.960000pt;}
.xe8_c00389{left:279.040000pt;}
.xd7_c00389{left:280.000000pt;}
.xa3_c00389{left:281.333333pt;}
.xfc_c00389{left:284.000000pt;}
.xc2_c00389{left:288.373333pt;}
.x2e_c00389{left:290.293333pt;}
.x20_c00389{left:292.000000pt;}
.x9d_c00389{left:293.333333pt;}
.xf1_c00389{left:294.466667pt;}
.x8f_c00389{left:297.706667pt;}
.x85_c00389{left:299.626667pt;}
.x3b_c00389{left:300.960000pt;}
.x5_c00389{left:303.626667pt;}
.xf4_c00389{left:305.333333pt;}
.xce_c00389{left:306.666667pt;}
.x53_c00389{left:308.373333pt;}
.xdc_c00389{left:309.333333pt;}
.x13_c00389{left:310.666667pt;}
.x42_c00389{left:312.960000pt;}
.x64_c00389{left:314.666667pt;}
.xac_c00389{left:317.333333pt;}
.x3c_c00389{left:319.626667pt;}
.x6_c00389{left:321.706667pt;}
.xee_c00389{left:323.040000pt;}
.xdf_c00389{left:324.000000pt;}
.xc8_c00389{left:326.093333pt;}
.x7c_c00389{left:328.960000pt;}
.x54_c00389{left:331.626667pt;}
.x4d_c00389{left:333.706667pt;}
.x90_c00389{left:336.000000pt;}
.x86_c00389{left:336.960000pt;}
.xfd_c00389{left:338.666667pt;}
.x70_c00389{left:339.626667pt;}
.xe6_c00389{left:341.333333pt;}
.x96_c00389{left:342.666667pt;}
.xe9_c00389{left:345.333333pt;}
.x7_c00389{left:346.293333pt;}
.x21_c00389{left:347.626667pt;}
.x2_c00389{left:349.333333pt;}
.xe0_c00389{left:350.293333pt;}
.x65_c00389{left:353.706667pt;}
.x2f_c00389{left:355.040000pt;}
.xc3_c00389{left:356.373333pt;}
.xef_c00389{left:357.706667pt;}
.xba_c00389{left:360.373333pt;}
.x4e_c00389{left:361.333333pt;}
.x109_c00389{left:362.666667pt;}
.x3d_c00389{left:364.960000pt;}
.x72_c00389{left:366.666667pt;}
.x14_c00389{left:367.626667pt;}
.x101_c00389{left:369.333333pt;}
.x9e_c00389{left:370.293333pt;}
.xd8_c00389{left:372.000000pt;}
.xb4_c00389{left:374.666667pt;}
.x30_c00389{left:377.333333pt;}
.x10a_c00389{left:378.666667pt;}
.x43_c00389{left:379.626667pt;}
.x15_c00389{left:381.333333pt;}
.x105_c00389{left:383.040000pt;}
.x66_c00389{left:384.000000pt;}
.x55_c00389{left:385.906667pt;}
.xcf_c00389{left:388.373333pt;}
.x91_c00389{left:389.333333pt;}
.x97_c00389{left:391.626667pt;}
.xc4_c00389{left:393.333333pt;}
.xa4_c00389{left:395.040000pt;}
.x44_c00389{left:397.706667pt;}
.xeb_c00389{left:400.000000pt;}
.xe3_c00389{left:401.333333pt;}
.x87_c00389{left:402.666667pt;}
.x16_c00389{left:407.626667pt;}
.x8_c00389{left:410.293333pt;}
.xad_c00389{left:412.000000pt;}
.x4f_c00389{left:413.333333pt;}
.x7d_c00389{left:416.373333pt;}
.x5c_c00389{left:418.293333pt;}
.xd0_c00389{left:420.000000pt;}
.x73_c00389{left:421.706667pt;}
.x31_c00389{left:423.626667pt;}
.x98_c00389{left:425.333333pt;}
.xf0_c00389{left:426.666667pt;}
.x102_c00389{left:430.666667pt;}
.xfa_c00389{left:432.000000pt;}
.x45_c00389{left:433.333333pt;}
.x56_c00389{left:435.626667pt;}
.xbb_c00389{left:438.666667pt;}
.x32_c00389{left:440.000000pt;}
.x7e_c00389{left:441.706667pt;}
.x17_c00389{left:442.666667pt;}
.x5d_c00389{left:444.960000pt;}
.xfe_c00389{left:448.000000pt;}
.x46_c00389{left:449.333333pt;}
.x33_c00389{left:451.040000pt;}
.xe4_c00389{left:452.000000pt;}
.xb5_c00389{left:453.706667pt;}
.x74_c00389{left:456.000000pt;}
.x67_c00389{left:456.960000pt;}
.xae_c00389{left:458.293333pt;}
.x10b_c00389{left:460.000000pt;}
.x92_c00389{left:464.960000pt;}
.xd9_c00389{left:466.666667pt;}
.x57_c00389{left:468.000000pt;}
.x50_c00389{left:472.960000pt;}
.xf5_c00389{left:474.666667pt;}
.x10d_c00389{left:476.000000pt;}
.x9_c00389{left:477.333333pt;}
.xb6_c00389{left:479.040000pt;}
.xa5_c00389{left:480.373333pt;}
.x75_c00389{left:481.333333pt;}
.x99_c00389{left:483.040000pt;}
.x34_c00389{left:485.333333pt;}
.xfb_c00389{left:486.293333pt;}
.x88_c00389{left:487.626667pt;}
.xec_c00389{left:489.333333pt;}
.x7f_c00389{left:491.626667pt;}
.x51_c00389{left:493.333333pt;}
.xbc_c00389{left:496.000000pt;}
.x47_c00389{left:497.333333pt;}
.x10c_c00389{left:498.293333pt;}
.x68_c00389{left:500.373333pt;}
.xa_c00389{left:501.333333pt;}
.xa6_c00389{left:503.626667pt;}
.x5e_c00389{left:504.960000pt;}
.xf2_c00389{left:506.666667pt;}
.x9f_c00389{left:509.333333pt;}
.x22_c00389{left:510.293333pt;}
.x18_c00389{left:512.000000pt;}
.xbd_c00389{left:513.333333pt;}
.x48_c00389{left:515.040000pt;}
.xda_c00389{left:516.373333pt;}
.xaf_c00389{left:517.706667pt;}
.x35_c00389{left:518.666667pt;}
.xf6_c00389{left:521.333333pt;}
.x89_c00389{left:524.000000pt;}
.xbe_c00389{left:525.706667pt;}
.x69_c00389{left:529.333333pt;}
.x93_c00389{left:534.666667pt;}
.x80_c00389{left:536.000000pt;}
.xe5_c00389{left:537.333333pt;}
.xa0_c00389{left:538.293333pt;}
.xb7_c00389{left:539.626667pt;}
.x5f_c00389{left:541.333333pt;}
.x8a_c00389{left:544.000000pt;}
.x58_c00389{left:547.040000pt;}
.x19_c00389{left:548.373333pt;}
.x49_c00389{left:549.333333pt;}
.xdd_c00389{left:550.666667pt;}
.x10e_c00389{left:552.373333pt;}
.x6a_c00389{left:556.373333pt;}
.x76_c00389{left:557.333333pt;}
.xc9_c00389{left:558.293333pt;}
.xf7_c00389{left:560.960000pt;}
.xb_c00389{left:564.000000pt;}
.x36_c00389{left:565.706667pt;}
.xc5_c00389{left:569.333333pt;}
.x1a_c00389{left:571.626667pt;}
.x4a_c00389{left:573.333333pt;}
.x106_c00389{left:574.293333pt;}
.xa7_c00389{left:576.000000pt;}
.xd1_c00389{left:579.626667pt;}
.x52_c00389{left:580.960000pt;}
.xc_c00389{left:582.666667pt;}
.xa1_c00389{left:584.960000pt;}
.x6b_c00389{left:586.293333pt;}
.x77_c00389{left:588.000000pt;}
.xe1_c00389{left:588.960000pt;}
.x37_c00389{left:590.666667pt;}
.x103_c00389{left:594.293333pt;}
.x23_c00389{left:596.373333pt;}
.xc6_c00389{left:597.706667pt;}
.x1b_c00389{left:599.040000pt;}
.x6c_c00389{left:603.040000pt;}
.x107_c00389{left:604.373333pt;}
.x94_c00389{left:605.333333pt;}
.x8b_c00389{left:607.626667pt;}
.xd_c00389{left:609.333333pt;}
.x78_c00389{left:613.333333pt;}
.x60_c00389{left:614.293333pt;}
.xa8_c00389{left:617.333333pt;}
.x59_c00389{left:618.466667pt;}
.x1c_c00389{left:622.666667pt;}
.x79_c00389{left:624.960000pt;}
.xca_c00389{left:626.666667pt;}
.x6d_c00389{left:628.000000pt;}
.xde_c00389{left:629.706667pt;}
.x61_c00389{left:631.040000pt;}
.xc7_c00389{left:633.333333pt;}
.xed_c00389{left:634.293333pt;}
.x81_c00389{left:637.333333pt;}
.x24_c00389{left:638.293333pt;}
.x8c_c00389{left:642.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_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_ef256b483a053c8c660e88b5.woff2')format("woff");}.ff1_c00390{font-family:ff1_c00390;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc3_c00390{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00390{transform:matrix(0.331288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331288,0.000000,0.000000,0.250000,0,0);}
.m0_c00390{transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);}
.m73_c00390{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m40_c00390{transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);}
.mc2_c00390{transform:matrix(0.355828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355828,0.000000,0.000000,0.250000,0,0);}
.m9e_c00390{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m27_c00390{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m36_c00390{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.me8_c00390{transform:matrix(0.365126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365126,0.000000,0.000000,0.250000,0,0);}
.m5c_c00390{transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);}
.mde_c00390{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.mb_c00390{transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);}
.m7c_c00390{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mf3_c00390{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m5f_c00390{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.md4_c00390{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.m2b_c00390{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m95_c00390{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.mf2_c00390{transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);}
.ma2_c00390{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m70_c00390{transform:matrix(0.378631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378631,0.000000,0.000000,0.250000,0,0);}
.m7b_c00390{transform:matrix(0.381902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381902,0.000000,0.000000,0.250000,0,0);}
.mb6_c00390{transform:matrix(0.383436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383436,0.000000,0.000000,0.250000,0,0);}
.mdf_c00390{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m49_c00390{transform:matrix(0.386364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386364,0.000000,0.000000,0.250000,0,0);}
.m5e_c00390{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m28_c00390{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m99_c00390{transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);}
.mcd_c00390{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.mfe_c00390{transform:matrix(0.393672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393672,0.000000,0.000000,0.250000,0,0);}
.m66_c00390{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m4e_c00390{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.me3_c00390{transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);}
.m6d_c00390{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m3a_c00390{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.mb8_c00390{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_c00390{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.mcb_c00390{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m7_c00390{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m1b_c00390{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m43_c00390{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.m94_c00390{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.mff_c00390{transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);}
.m63_c00390{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m2c_c00390{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m53_c00390{transform:matrix(0.412193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412193,0.000000,0.000000,0.250000,0,0);}
.mb2_c00390{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m26_c00390{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m3f_c00390{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m8_c00390{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m2d_c00390{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.ma3_c00390{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m6b_c00390{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.mbf_c00390{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m52_c00390{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m4_c00390{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m5b_c00390{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.me_c00390{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m69_c00390{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.mc_c00390{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.me1_c00390{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m80_c00390{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.mfc_c00390{transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);}
.mea_c00390{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m8c_c00390{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m60_c00390{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m93_c00390{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m84_c00390{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mdb_c00390{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.mcf_c00390{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m45_c00390{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m90_c00390{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.mf4_c00390{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m3b_c00390{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.m8d_c00390{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m3_c00390{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m35_c00390{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m65_c00390{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m44_c00390{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m1f_c00390{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m8f_c00390{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mbd_c00390{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mc7_c00390{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m74_c00390{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m8b_c00390{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.ma0_c00390{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m50_c00390{transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);}
.m68_c00390{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mf6_c00390{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m2a_c00390{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m75_c00390{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.mef_c00390{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.md2_c00390{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.m6f_c00390{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00390{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.m31_c00390{transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);}
.m21_c00390{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.ma6_c00390{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.ma9_c00390{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.mb0_c00390{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mf8_c00390{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m4f_c00390{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m8a_c00390{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m8e_c00390{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.mc1_c00390{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m4a_c00390{transform:matrix(0.483529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483529,0.000000,0.000000,0.250000,0,0);}
.m33_c00390{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m6c_c00390{transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);}
.mb1_c00390{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m71_c00390{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.me0_c00390{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m7d_c00390{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m9_c00390{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m4d_c00390{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.mb9_c00390{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.md6_c00390{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m91_c00390{transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);}
.m5_c00390{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m1e_c00390{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_c00390{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m83_c00390{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m7f_c00390{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.mac_c00390{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.ma4_c00390{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m7a_c00390{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m4b_c00390{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);}
.mc4_c00390{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m9a_c00390{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m32_c00390{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m30_c00390{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m67_c00390{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m47_c00390{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.m62_c00390{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m72_c00390{transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);}
.m2e_c00390{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mb4_c00390{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m1d_c00390{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mfa_c00390{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m7e_c00390{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m18_c00390{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m3c_c00390{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m34_c00390{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m88_c00390{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.me7_c00390{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mf9_c00390{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m97_c00390{transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);}
.ma7_c00390{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m82_c00390{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m9c_c00390{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m11_c00390{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m29_c00390{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.ma1_c00390{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m87_c00390{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m9f_c00390{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mfd_c00390{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m78_c00390{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mc6_c00390{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m85_c00390{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.med_c00390{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m9b_c00390{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.me9_c00390{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m56_c00390{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m5a_c00390{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m57_c00390{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m2_c00390{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m76_c00390{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m61_c00390{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m81_c00390{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mc5_c00390{transform:matrix(0.546474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546474,0.000000,0.000000,0.250000,0,0);}
.m37_c00390{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m6e_c00390{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m39_c00390{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m9d_c00390{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m59_c00390{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m96_c00390{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mc0_c00390{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.mbe_c00390{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m6_c00390{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.me4_c00390{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m92_c00390{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mf7_c00390{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.md7_c00390{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.mc9_c00390{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m15_c00390{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.mb5_c00390{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m25_c00390{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m77_c00390{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m17_c00390{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mb3_c00390{transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);}
.m5d_c00390{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m22_c00390{transform:matrix(0.574265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574265,0.000000,0.000000,0.250000,0,0);}
.mba_c00390{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m1a_c00390{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.md1_c00390{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.md3_c00390{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.mdd_c00390{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m16_c00390{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.mf0_c00390{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);}
.md9_c00390{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m42_c00390{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m58_c00390{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m48_c00390{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m2f_c00390{transform:matrix(0.587647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587647,0.000000,0.000000,0.250000,0,0);}
.m1c_c00390{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m86_c00390{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m3d_c00390{transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);}
.m3e_c00390{transform:matrix(0.599066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599066,0.000000,0.000000,0.250000,0,0);}
.ma8_c00390{transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);}
.maa_c00390{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.maf_c00390{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m55_c00390{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.m38_c00390{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m14_c00390{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m19_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);}
.md8_c00390{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m1_c00390{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.mf5_c00390{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.mbc_c00390{transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);}
.mc8_c00390{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m41_c00390{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);}
.me6_c00390{transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);}
.mee_c00390{transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);}
.meb_c00390{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mf_c00390{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m10_c00390{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.mfb_c00390{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.md_c00390{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m51_c00390{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.m89_c00390{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mda_c00390{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.me5_c00390{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.md0_c00390{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mca_c00390{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m98_c00390{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.ma5_c00390{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.mdc_c00390{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mae_c00390{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mcc_c00390{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m20_c00390{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m6a_c00390{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.me2_c00390{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.md5_c00390{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mab_c00390{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.mbb_c00390{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m13_c00390{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.mce_c00390{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.mb7_c00390{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mad_c00390{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.ma_c00390{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m23_c00390{transform:matrix(0.822115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.822115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.822115,0.000000,0.000000,0.250000,0,0);}
.m46_c00390{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mec_c00390{transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);}
.mf1_c00390{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m64_c00390{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m54_c00390{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws1_c00390{word-spacing:-9.216610px;}
.ws0_c00390{word-spacing:-4.157970px;}
.ws2_c00390{word-spacing:0.000000px;}
.fc0_c00390{color:transparent;}
.fs8_c00390{font-size:3.420000px;}
.fs6_c00390{font-size:13.620000px;}
.fs3_c00390{font-size:18.720000px;}
.fs1_c00390{font-size:20.400000px;}
.fs4_c00390{font-size:25.500000px;}
.fs2_c00390{font-size:28.920000px;}
.fs5_c00390{font-size:32.340000px;}
.fs0_c00390{font-size:35.700000px;}
.fs7_c00390{font-size:39.120000px;}
.y0_c00390{bottom:0.000000px;}
.yb8_c00390{bottom:246.825000px;}
.yb6_c00390{bottom:247.905000px;}
.yb4_c00390{bottom:248.325000px;}
.yb5_c00390{bottom:248.970000px;}
.yb7_c00390{bottom:249.195000px;}
.yb3_c00390{bottom:249.405000px;}
.yb1_c00390{bottom:249.630000px;}
.yb2_c00390{bottom:250.470000px;}
.yb0_c00390{bottom:262.905000px;}
.yaf_c00390{bottom:265.050000px;}
.yad_c00390{bottom:276.825000px;}
.yae_c00390{bottom:277.905000px;}
.yab_c00390{bottom:278.970000px;}
.yac_c00390{bottom:279.195000px;}
.ya9_c00390{bottom:279.405000px;}
.ya7_c00390{bottom:279.630000px;}
.yaa_c00390{bottom:280.050000px;}
.ya8_c00390{bottom:280.470000px;}
.ya6_c00390{bottom:311.130000px;}
.ya5_c00390{bottom:312.405000px;}
.ya4_c00390{bottom:329.745000px;}
.ya3_c00390{bottom:331.470000px;}
.ya2_c00390{bottom:331.905000px;}
.y9e_c00390{bottom:349.245000px;}
.y9f_c00390{bottom:350.130000px;}
.ya0_c00390{bottom:350.970000px;}
.y9d_c00390{bottom:351.405000px;}
.y9c_c00390{bottom:351.630000px;}
.ya1_c00390{bottom:352.470000px;}
.y9b_c00390{bottom:367.905000px;}
.y97_c00390{bottom:368.745000px;}
.y99_c00390{bottom:370.905000px;}
.y9a_c00390{bottom:371.130000px;}
.y98_c00390{bottom:371.970000px;}
.y96_c00390{bottom:388.245000px;}
.y94_c00390{bottom:389.745000px;}
.y93_c00390{bottom:390.405000px;}
.y95_c00390{bottom:391.470000px;}
.y92_c00390{bottom:406.905000px;}
.y8f_c00390{bottom:407.745000px;}
.y90_c00390{bottom:409.905000px;}
.y91_c00390{bottom:410.130000px;}
.y8e_c00390{bottom:427.245000px;}
.y8a_c00390{bottom:428.745000px;}
.y8d_c00390{bottom:429.405000px;}
.y8c_c00390{bottom:429.825000px;}
.y8b_c00390{bottom:430.905000px;}
.y87_c00390{bottom:448.245000px;}
.y89_c00390{bottom:448.905000px;}
.y88_c00390{bottom:449.130000px;}
.y86_c00390{bottom:450.405000px;}
.y83_c00390{bottom:467.745000px;}
.y85_c00390{bottom:469.470000px;}
.y84_c00390{bottom:469.905000px;}
.y82_c00390{bottom:470.130000px;}
.y81_c00390{bottom:484.905000px;}
.y80_c00390{bottom:485.970000px;}
.y7f_c00390{bottom:486.825000px;}
.y7d_c00390{bottom:487.245000px;}
.y7c_c00390{bottom:488.325000px;}
.y7b_c00390{bottom:489.405000px;}
.y7e_c00390{bottom:490.470000px;}
.y78_c00390{bottom:505.470000px;}
.y77_c00390{bottom:505.680000px;}
.y75_c00390{bottom:506.745000px;}
.y7a_c00390{bottom:507.630000px;}
.y79_c00390{bottom:508.470000px;}
.y76_c00390{bottom:508.905000px;}
.y72_c00390{bottom:527.325000px;}
.y74_c00390{bottom:527.550000px;}
.y6f_c00390{bottom:527.745000px;}
.y73_c00390{bottom:528.405000px;}
.y71_c00390{bottom:528.630000px;}
.y70_c00390{bottom:529.905000px;}
.y6e_c00390{bottom:546.180000px;}
.y6b_c00390{bottom:547.245000px;}
.y6c_c00390{bottom:548.130000px;}
.y6d_c00390{bottom:548.970000px;}
.y6a_c00390{bottom:549.405000px;}
.y66_c00390{bottom:565.470000px;}
.y69_c00390{bottom:566.325000px;}
.y68_c00390{bottom:567.630000px;}
.y65_c00390{bottom:567.825000px;}
.y67_c00390{bottom:568.470000px;}
.y64_c00390{bottom:568.905000px;}
.y63_c00390{bottom:585.825000px;}
.y61_c00390{bottom:586.245000px;}
.y62_c00390{bottom:587.970000px;}
.y60_c00390{bottom:588.405000px;}
.y5f_c00390{bottom:605.745000px;}
.y5d_c00390{bottom:607.905000px;}
.y5e_c00390{bottom:607.920000px;}
.y5c_c00390{bottom:625.245000px;}
.y59_c00390{bottom:626.325000px;}
.y5b_c00390{bottom:627.405000px;}
.y5a_c00390{bottom:627.630000px;}
.y57_c00390{bottom:644.745000px;}
.y55_c00390{bottom:646.245000px;}
.y56_c00390{bottom:646.905000px;}
.y58_c00390{bottom:647.130000px;}
.y54_c00390{bottom:648.405000px;}
.y53_c00390{bottom:665.325000px;}
.y52_c00390{bottom:666.405000px;}
.y50_c00390{bottom:683.745000px;}
.y51_c00390{bottom:684.825000px;}
.y4e_c00390{bottom:685.245000px;}
.y4f_c00390{bottom:685.905000px;}
.y4d_c00390{bottom:702.405000px;}
.y4a_c00390{bottom:703.245000px;}
.y49_c00390{bottom:703.680000px;}
.y4b_c00390{bottom:705.405000px;}
.y4c_c00390{bottom:705.630000px;}
.y47_c00390{bottom:706.905000px;}
.y48_c00390{bottom:706.920000px;}
.y45_c00390{bottom:724.245000px;}
.y46_c00390{bottom:724.905000px;}
.y44_c00390{bottom:725.325000px;}
.y42_c00390{bottom:743.745000px;}
.y43_c00390{bottom:744.825000px;}
.y3f_c00390{bottom:745.905000px;}
.y41_c00390{bottom:745.920000px;}
.y40_c00390{bottom:746.130000px;}
.y3e_c00390{bottom:761.325000px;}
.y3d_c00390{bottom:762.405000px;}
.y3a_c00390{bottom:763.245000px;}
.y3c_c00390{bottom:764.325000px;}
.y3b_c00390{bottom:766.920000px;}
.y37_c00390{bottom:782.745000px;}
.y39_c00390{bottom:784.905000px;}
.y38_c00390{bottom:785.970000px;}
.y31_c00390{bottom:802.245000px;}
.y32_c00390{bottom:802.680000px;}
.y34_c00390{bottom:804.405000px;}
.y36_c00390{bottom:805.470000px;}
.y35_c00390{bottom:805.905000px;}
.y33_c00390{bottom:805.920000px;}
.y30_c00390{bottom:827.970000px;}
.y2e_c00390{bottom:828.825000px;}
.y2d_c00390{bottom:829.470000px;}
.y2c_c00390{bottom:829.905000px;}
.y2f_c00390{bottom:830.130000px;}
.y2a_c00390{bottom:830.970000px;}
.y2b_c00390{bottom:832.470000px;}
.y25_c00390{bottom:849.825000px;}
.y26_c00390{bottom:850.905000px;}
.y24_c00390{bottom:851.130000px;}
.y29_c00390{bottom:851.550000px;}
.y28_c00390{bottom:851.970000px;}
.y27_c00390{bottom:852.195000px;}
.y23_c00390{bottom:853.050000px;}
.y22_c00390{bottom:875.745000px;}
.y21_c00390{bottom:877.905000px;}
.y20_c00390{bottom:922.905000px;}
.y1c_c00390{bottom:939.825000px;}
.y1d_c00390{bottom:940.245000px;}
.y1e_c00390{bottom:941.130000px;}
.y1f_c00390{bottom:941.325000px;}
.y1b_c00390{bottom:942.405000px;}
.y17_c00390{bottom:959.745000px;}
.y1a_c00390{bottom:960.825000px;}
.y18_c00390{bottom:961.905000px;}
.y19_c00390{bottom:962.970000px;}
.y15_c00390{bottom:979.245000px;}
.y16_c00390{bottom:980.325000px;}
.y14_c00390{bottom:981.405000px;}
.y12_c00390{bottom:981.630000px;}
.y13_c00390{bottom:982.905000px;}
.ye_c00390{bottom:998.745000px;}
.yf_c00390{bottom:999.825000px;}
.y11_c00390{bottom:1000.050000px;}
.yd_c00390{bottom:1000.905000px;}
.y10_c00390{bottom:1001.130000px;}
.yb_c00390{bottom:1020.405000px;}
.yc_c00390{bottom:1021.905000px;}
.y6_c00390{bottom:1039.245000px;}
.y9_c00390{bottom:1040.130000px;}
.y8_c00390{bottom:1040.970000px;}
.ya_c00390{bottom:1041.405000px;}
.y7_c00390{bottom:1042.470000px;}
.y4_c00390{bottom:1058.745000px;}
.y5_c00390{bottom:1059.630000px;}
.y3_c00390{bottom:1060.905000px;}
.y1_c00390{bottom:1097.745000px;}
.y2_c00390{bottom:1099.050000px;}
.h9_c00390{height:4.206533px;}
.h7_c00390{height:16.752334px;}
.h4_c00390{height:23.025234px;}
.h2_c00390{height:25.091602px;}
.h5_c00390{height:31.364502px;}
.h3_c00390{height:35.571035px;}
.h6_c00390{height:39.777568px;}
.h1_c00390{height:43.910303px;}
.h8_c00390{height:48.116836px;}
.h0_c00390{height:1335.000000px;}
.w0_c00390{width:880.500000px;}
.x0_c00390{left:0.000000px;}
.x3_c00390{left:151.080000px;}
.xa4_c00390{left:153.000000px;}
.x65_c00390{left:154.080000px;}
.x55_c00390{left:166.500000px;}
.x1c_c00390{left:168.000000px;}
.x9c_c00390{left:169.500000px;}
.x1b_c00390{left:170.580000px;}
.xdd_c00390{left:174.000000px;}
.xad_c00390{left:178.920000px;}
.xe4_c00390{left:180.000000px;}
.x84_c00390{left:182.580000px;}
.xeb_c00390{left:184.500000px;}
.x3b_c00390{left:187.920000px;}
.x1d_c00390{left:189.420000px;}
.x9d_c00390{left:194.145000px;}
.xcf_c00390{left:195.420000px;}
.xc6_c00390{left:199.080000px;}
.x90_c00390{left:204.000000px;}
.x29_c00390{left:205.080000px;}
.x66_c00390{left:208.500000px;}
.xe5_c00390{left:210.000000px;}
.x3c_c00390{left:211.920000px;}
.x1e_c00390{left:214.500000px;}
.x4_c00390{left:215.580000px;}
.xb9_c00390{left:217.500000px;}
.x32_c00390{left:219.000000px;}
.x56_c00390{left:221.580000px;}
.xd0_c00390{left:223.500000px;}
.xe9_c00390{left:228.000000px;}
.xde_c00390{left:229.500000px;}
.x85_c00390{left:234.420000px;}
.x5_c00390{left:237.420000px;}
.xf_c00390{left:238.500000px;}
.x4a_c00390{left:241.500000px;}
.x67_c00390{left:243.000000px;}
.x46_c00390{left:245.580000px;}
.x95_c00390{left:249.000000px;}
.x10_c00390{left:250.500000px;}
.x91_c00390{left:253.500000px;}
.xa5_c00390{left:255.000000px;}
.x47_c00390{left:256.500000px;}
.x69_c00390{left:259.500000px;}
.x78_c00390{left:261.000000px;}
.x4b_c00390{left:262.920000px;}
.xd1_c00390{left:265.080000px;}
.x2a_c00390{left:266.580000px;}
.x5c_c00390{left:271.500000px;}
.xc7_c00390{left:277.080000px;}
.xb3_c00390{left:279.000000px;}
.x6a_c00390{left:280.500000px;}
.x1f_c00390{left:283.920000px;}
.xd2_c00390{left:285.420000px;}
.x4c_c00390{left:287.580000px;}
.x57_c00390{left:292.080000px;}
.x3d_c00390{left:294.000000px;}
.x8a_c00390{left:295.080000px;}
.x11_c00390{left:297.000000px;}
.xf2_c00390{left:299.580000px;}
.x76_c00390{left:301.080000px;}
.x6d_c00390{left:303.000000px;}
.xd7_c00390{left:304.500000px;}
.x33_c00390{left:307.275000px;}
.x9e_c00390{left:309.000000px;}
.x79_c00390{left:312.000000px;}
.x12_c00390{left:316.500000px;}
.xb4_c00390{left:318.420000px;}
.x6_c00390{left:319.500000px;}
.x80_c00390{left:321.000000px;}
.xe6_c00390{left:322.080000px;}
.x6e_c00390{left:323.580000px;}
.x77_c00390{left:325.080000px;}
.x8b_c00390{left:328.080000px;}
.x48_c00390{left:329.580000px;}
.xc0_c00390{left:336.000000px;}
.x20_c00390{left:337.500000px;}
.x96_c00390{left:340.500000px;}
.x13_c00390{left:342.420000px;}
.x68_c00390{left:345.645000px;}
.x34_c00390{left:347.580000px;}
.x3e_c00390{left:350.580000px;}
.xc8_c00390{left:352.920000px;}
.xae_c00390{left:354.000000px;}
.x58_c00390{left:357.420000px;}
.x97_c00390{left:360.000000px;}
.x7a_c00390{left:361.500000px;}
.xa6_c00390{left:363.420000px;}
.x5d_c00390{left:364.500000px;}
.x4d_c00390{left:367.920000px;}
.x14_c00390{left:370.500000px;}
.xba_c00390{left:372.420000px;}
.x21_c00390{left:373.920000px;}
.x9f_c00390{left:375.420000px;}
.x92_c00390{left:379.500000px;}
.x7_c00390{left:380.580000px;}
.x2b_c00390{left:385.275000px;}
.xca_c00390{left:387.420000px;}
.x5e_c00390{left:388.500000px;}
.x2_c00390{left:390.000000px;}
.x3f_c00390{left:391.500000px;}
.xdf_c00390{left:393.000000px;}
.x6f_c00390{left:395.145000px;}
.xea_c00390{left:399.000000px;}
.x22_c00390{left:400.500000px;}
.xa7_c00390{left:405.420000px;}
.x8c_c00390{left:406.500000px;}
.x4e_c00390{left:408.420000px;}
.x40_c00390{left:409.500000px;}
.xd3_c00390{left:412.500000px;}
.x8_c00390{left:413.580000px;}
.xc1_c00390{left:415.500000px;}
.xe7_c00390{left:420.420000px;}
.xc2_c00390{left:421.920000px;}
.x7b_c00390{left:424.080000px;}
.x2c_c00390{left:427.080000px;}
.xd4_c00390{left:430.920000px;}
.x70_c00390{left:432.000000px;}
.x35_c00390{left:433.500000px;}
.x9_c00390{left:435.420000px;}
.xd8_c00390{left:438.000000px;}
.x8d_c00390{left:439.500000px;}
.x93_c00390{left:440.580000px;}
.x59_c00390{left:447.000000px;}
.x4f_c00390{left:448.500000px;}
.x15_c00390{left:450.000000px;}
.x86_c00390{left:451.920000px;}
.xaf_c00390{left:453.000000px;}
.xbb_c00390{left:456.000000px;}
.xd5_c00390{left:459.000000px;}
.xc3_c00390{left:463.500000px;}
.xa8_c00390{left:465.000000px;}
.xe0_c00390{left:466.500000px;}
.x50_c00390{left:469.500000px;}
.x23_c00390{left:470.580000px;}
.x94_c00390{left:472.500000px;}
.x5f_c00390{left:473.580000px;}
.xf3_c00390{left:477.420000px;}
.x98_c00390{left:480.000000px;}
.x2d_c00390{left:481.500000px;}
.xd9_c00390{left:483.000000px;}
.x81_c00390{left:486.000000px;}
.xe8_c00390{left:487.500000px;}
.x24_c00390{left:489.000000px;}
.x6b_c00390{left:490.920000px;}
.x16_c00390{left:492.000000px;}
.x51_c00390{left:494.580000px;}
.x7c_c00390{left:497.580000px;}
.x71_c00390{left:499.080000px;}
.x41_c00390{left:501.000000px;}
.xec_c00390{left:502.500000px;}
.x36_c00390{left:504.000000px;}
.x49_c00390{left:508.080000px;}
.x8e_c00390{left:511.500000px;}
.xa0_c00390{left:513.000000px;}
.xe1_c00390{left:514.920000px;}
.xa_c00390{left:516.420000px;}
.xbc_c00390{left:518.580000px;}
.x37_c00390{left:526.500000px;}
.x72_c00390{left:528.000000px;}
.xbd_c00390{left:529.920000px;}
.x6c_c00390{left:532.500000px;}
.x52_c00390{left:535.500000px;}
.x42_c00390{left:537.420000px;}
.x5a_c00390{left:541.920000px;}
.xa9_c00390{left:544.500000px;}
.x99_c00390{left:546.420000px;}
.x60_c00390{left:548.145000px;}
.xe2_c00390{left:550.500000px;}
.x17_c00390{left:552.000000px;}
.xc4_c00390{left:553.080000px;}
.xcb_c00390{left:555.000000px;}
.x5b_c00390{left:556.500000px;}
.xbe_c00390{left:557.580000px;}
.xed_c00390{left:559.080000px;}
.x2e_c00390{left:560.145000px;}
.x25_c00390{left:562.920000px;}
.x43_c00390{left:564.420000px;}
.x87_c00390{left:566.580000px;}
.x53_c00390{left:568.920000px;}
.xee_c00390{left:571.500000px;}
.x73_c00390{left:573.000000px;}
.x7d_c00390{left:574.275000px;}
.x9a_c00390{left:576.000000px;}
.x18_c00390{left:577.920000px;}
.x2f_c00390{left:580.500000px;}
.x38_c00390{left:581.775000px;}
.xb5_c00390{left:583.920000px;}
.xa1_c00390{left:585.420000px;}
.xb_c00390{left:587.580000px;}
.x26_c00390{left:589.500000px;}
.xc5_c00390{left:590.580000px;}
.x8f_c00390{left:594.000000px;}
.x54_c00390{left:595.500000px;}
.xb0_c00390{left:600.000000px;}
.xcc_c00390{left:601.500000px;}
.xf4_c00390{left:603.420000px;}
.x19_c00390{left:604.500000px;}
.xda_c00390{left:608.580000px;}
.xb6_c00390{left:610.500000px;}
.x7e_c00390{left:613.500000px;}
.xd6_c00390{left:616.500000px;}
.x44_c00390{left:618.000000px;}
.xa2_c00390{left:621.000000px;}
.x39_c00390{left:622.500000px;}
.x82_c00390{left:624.420000px;}
.xaa_c00390{left:625.920000px;}
.x61_c00390{left:628.500000px;}
.xef_c00390{left:632.580000px;}
.x88_c00390{left:634.080000px;}
.x27_c00390{left:635.580000px;}
.x74_c00390{left:637.500000px;}
.xe3_c00390{left:639.000000px;}
.x30_c00390{left:640.275000px;}
.xb7_c00390{left:642.420000px;}
.xf5_c00390{left:645.000000px;}
.xc_c00390{left:649.500000px;}
.x7f_c00390{left:652.500000px;}
.x62_c00390{left:656.355000px;}
.xcd_c00390{left:658.500000px;}
.xf0_c00390{left:661.080000px;}
.x3a_c00390{left:662.580000px;}
.x9b_c00390{left:664.080000px;}
.x45_c00390{left:666.000000px;}
.xb1_c00390{left:668.580000px;}
.xa3_c00390{left:672.000000px;}
.x63_c00390{left:673.500000px;}
.xbf_c00390{left:675.000000px;}
.x89_c00390{left:676.500000px;}
.xdb_c00390{left:678.000000px;}
.xab_c00390{left:681.000000px;}
.xc9_c00390{left:682.500000px;}
.x31_c00390{left:683.580000px;}
.x28_c00390{left:685.500000px;}
.xd_c00390{left:687.000000px;}
.x83_c00390{left:688.500000px;}
.xce_c00390{left:691.920000px;}
.x64_c00390{left:693.000000px;}
.xdc_c00390{left:694.920000px;}
.x1a_c00390{left:696.000000px;}
.x75_c00390{left:698.580000px;}
.x1_c00390{left:705.000000px;}
.xf1_c00390{left:706.500000px;}
.xb8_c00390{left:708.420000px;}
.xe_c00390{left:709.500000px;}
.xac_c00390{left:712.080000px;}
.xb2_c00390{left:717.000000px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.ls0_c00390{letter-spacing:0.000000pt;}
.ws1_c00390{word-spacing:-8.192542pt;}
.ws0_c00390{word-spacing:-3.695973pt;}
.ws2_c00390{word-spacing:0.000000pt;}
.fs8_c00390{font-size:3.040000pt;}
.fs6_c00390{font-size:12.106667pt;}
.fs3_c00390{font-size:16.640000pt;}
.fs1_c00390{font-size:18.133333pt;}
.fs4_c00390{font-size:22.666667pt;}
.fs2_c00390{font-size:25.706667pt;}
.fs5_c00390{font-size:28.746667pt;}
.fs0_c00390{font-size:31.733333pt;}
.fs7_c00390{font-size:34.773333pt;}
.y0_c00390{bottom:0.000000pt;}
.yb8_c00390{bottom:219.400000pt;}
.yb6_c00390{bottom:220.360000pt;}
.yb4_c00390{bottom:220.733333pt;}
.yb5_c00390{bottom:221.306667pt;}
.yb7_c00390{bottom:221.506667pt;}
.yb3_c00390{bottom:221.693333pt;}
.yb1_c00390{bottom:221.893333pt;}
.yb2_c00390{bottom:222.640000pt;}
.yb0_c00390{bottom:233.693333pt;}
.yaf_c00390{bottom:235.600000pt;}
.yad_c00390{bottom:246.066667pt;}
.yae_c00390{bottom:247.026667pt;}
.yab_c00390{bottom:247.973333pt;}
.yac_c00390{bottom:248.173333pt;}
.ya9_c00390{bottom:248.360000pt;}
.ya7_c00390{bottom:248.560000pt;}
.yaa_c00390{bottom:248.933333pt;}
.ya8_c00390{bottom:249.306667pt;}
.ya6_c00390{bottom:276.560000pt;}
.ya5_c00390{bottom:277.693333pt;}
.ya4_c00390{bottom:293.106667pt;}
.ya3_c00390{bottom:294.640000pt;}
.ya2_c00390{bottom:295.026667pt;}
.y9e_c00390{bottom:310.440000pt;}
.y9f_c00390{bottom:311.226667pt;}
.ya0_c00390{bottom:311.973333pt;}
.y9d_c00390{bottom:312.360000pt;}
.y9c_c00390{bottom:312.560000pt;}
.ya1_c00390{bottom:313.306667pt;}
.y9b_c00390{bottom:327.026667pt;}
.y97_c00390{bottom:327.773333pt;}
.y99_c00390{bottom:329.693333pt;}
.y9a_c00390{bottom:329.893333pt;}
.y98_c00390{bottom:330.640000pt;}
.y96_c00390{bottom:345.106667pt;}
.y94_c00390{bottom:346.440000pt;}
.y93_c00390{bottom:347.026667pt;}
.y95_c00390{bottom:347.973333pt;}
.y92_c00390{bottom:361.693333pt;}
.y8f_c00390{bottom:362.440000pt;}
.y90_c00390{bottom:364.360000pt;}
.y91_c00390{bottom:364.560000pt;}
.y8e_c00390{bottom:379.773333pt;}
.y8a_c00390{bottom:381.106667pt;}
.y8d_c00390{bottom:381.693333pt;}
.y8c_c00390{bottom:382.066667pt;}
.y8b_c00390{bottom:383.026667pt;}
.y87_c00390{bottom:398.440000pt;}
.y89_c00390{bottom:399.026667pt;}
.y88_c00390{bottom:399.226667pt;}
.y86_c00390{bottom:400.360000pt;}
.y83_c00390{bottom:415.773333pt;}
.y85_c00390{bottom:417.306667pt;}
.y84_c00390{bottom:417.693333pt;}
.y82_c00390{bottom:417.893333pt;}
.y81_c00390{bottom:431.026667pt;}
.y80_c00390{bottom:431.973333pt;}
.y7f_c00390{bottom:432.733333pt;}
.y7d_c00390{bottom:433.106667pt;}
.y7c_c00390{bottom:434.066667pt;}
.y7b_c00390{bottom:435.026667pt;}
.y7e_c00390{bottom:435.973333pt;}
.y78_c00390{bottom:449.306667pt;}
.y77_c00390{bottom:449.493333pt;}
.y75_c00390{bottom:450.440000pt;}
.y7a_c00390{bottom:451.226667pt;}
.y79_c00390{bottom:451.973333pt;}
.y76_c00390{bottom:452.360000pt;}
.y72_c00390{bottom:468.733333pt;}
.y74_c00390{bottom:468.933333pt;}
.y6f_c00390{bottom:469.106667pt;}
.y73_c00390{bottom:469.693333pt;}
.y71_c00390{bottom:469.893333pt;}
.y70_c00390{bottom:471.026667pt;}
.y6e_c00390{bottom:485.493333pt;}
.y6b_c00390{bottom:486.440000pt;}
.y6c_c00390{bottom:487.226667pt;}
.y6d_c00390{bottom:487.973333pt;}
.y6a_c00390{bottom:488.360000pt;}
.y66_c00390{bottom:502.640000pt;}
.y69_c00390{bottom:503.400000pt;}
.y68_c00390{bottom:504.560000pt;}
.y65_c00390{bottom:504.733333pt;}
.y67_c00390{bottom:505.306667pt;}
.y64_c00390{bottom:505.693333pt;}
.y63_c00390{bottom:520.733333pt;}
.y61_c00390{bottom:521.106667pt;}
.y62_c00390{bottom:522.640000pt;}
.y60_c00390{bottom:523.026667pt;}
.y5f_c00390{bottom:538.440000pt;}
.y5d_c00390{bottom:540.360000pt;}
.y5e_c00390{bottom:540.373333pt;}
.y5c_c00390{bottom:555.773333pt;}
.y59_c00390{bottom:556.733333pt;}
.y5b_c00390{bottom:557.693333pt;}
.y5a_c00390{bottom:557.893333pt;}
.y57_c00390{bottom:573.106667pt;}
.y55_c00390{bottom:574.440000pt;}
.y56_c00390{bottom:575.026667pt;}
.y58_c00390{bottom:575.226667pt;}
.y54_c00390{bottom:576.360000pt;}
.y53_c00390{bottom:591.400000pt;}
.y52_c00390{bottom:592.360000pt;}
.y50_c00390{bottom:607.773333pt;}
.y51_c00390{bottom:608.733333pt;}
.y4e_c00390{bottom:609.106667pt;}
.y4f_c00390{bottom:609.693333pt;}
.y4d_c00390{bottom:624.360000pt;}
.y4a_c00390{bottom:625.106667pt;}
.y49_c00390{bottom:625.493333pt;}
.y4b_c00390{bottom:627.026667pt;}
.y4c_c00390{bottom:627.226667pt;}
.y47_c00390{bottom:628.360000pt;}
.y48_c00390{bottom:628.373333pt;}
.y45_c00390{bottom:643.773333pt;}
.y46_c00390{bottom:644.360000pt;}
.y44_c00390{bottom:644.733333pt;}
.y42_c00390{bottom:661.106667pt;}
.y43_c00390{bottom:662.066667pt;}
.y3f_c00390{bottom:663.026667pt;}
.y41_c00390{bottom:663.040000pt;}
.y40_c00390{bottom:663.226667pt;}
.y3e_c00390{bottom:676.733333pt;}
.y3d_c00390{bottom:677.693333pt;}
.y3a_c00390{bottom:678.440000pt;}
.y3c_c00390{bottom:679.400000pt;}
.y3b_c00390{bottom:681.706667pt;}
.y37_c00390{bottom:695.773333pt;}
.y39_c00390{bottom:697.693333pt;}
.y38_c00390{bottom:698.640000pt;}
.y31_c00390{bottom:713.106667pt;}
.y32_c00390{bottom:713.493333pt;}
.y34_c00390{bottom:715.026667pt;}
.y36_c00390{bottom:715.973333pt;}
.y35_c00390{bottom:716.360000pt;}
.y33_c00390{bottom:716.373333pt;}
.y30_c00390{bottom:735.973333pt;}
.y2e_c00390{bottom:736.733333pt;}
.y2d_c00390{bottom:737.306667pt;}
.y2c_c00390{bottom:737.693333pt;}
.y2f_c00390{bottom:737.893333pt;}
.y2a_c00390{bottom:738.640000pt;}
.y2b_c00390{bottom:739.973333pt;}
.y25_c00390{bottom:755.400000pt;}
.y26_c00390{bottom:756.360000pt;}
.y24_c00390{bottom:756.560000pt;}
.y29_c00390{bottom:756.933333pt;}
.y28_c00390{bottom:757.306667pt;}
.y27_c00390{bottom:757.506667pt;}
.y23_c00390{bottom:758.266667pt;}
.y22_c00390{bottom:778.440000pt;}
.y21_c00390{bottom:780.360000pt;}
.y20_c00390{bottom:820.360000pt;}
.y1c_c00390{bottom:835.400000pt;}
.y1d_c00390{bottom:835.773333pt;}
.y1e_c00390{bottom:836.560000pt;}
.y1f_c00390{bottom:836.733333pt;}
.y1b_c00390{bottom:837.693333pt;}
.y17_c00390{bottom:853.106667pt;}
.y1a_c00390{bottom:854.066667pt;}
.y18_c00390{bottom:855.026667pt;}
.y19_c00390{bottom:855.973333pt;}
.y15_c00390{bottom:870.440000pt;}
.y16_c00390{bottom:871.400000pt;}
.y14_c00390{bottom:872.360000pt;}
.y12_c00390{bottom:872.560000pt;}
.y13_c00390{bottom:873.693333pt;}
.ye_c00390{bottom:887.773333pt;}
.yf_c00390{bottom:888.733333pt;}
.y11_c00390{bottom:888.933333pt;}
.yd_c00390{bottom:889.693333pt;}
.y10_c00390{bottom:889.893333pt;}
.yb_c00390{bottom:907.026667pt;}
.yc_c00390{bottom:908.360000pt;}
.y6_c00390{bottom:923.773333pt;}
.y9_c00390{bottom:924.560000pt;}
.y8_c00390{bottom:925.306667pt;}
.ya_c00390{bottom:925.693333pt;}
.y7_c00390{bottom:926.640000pt;}
.y4_c00390{bottom:941.106667pt;}
.y5_c00390{bottom:941.893333pt;}
.y3_c00390{bottom:943.026667pt;}
.y1_c00390{bottom:975.773333pt;}
.y2_c00390{bottom:976.933333pt;}
.h9_c00390{height:3.739141pt;}
.h7_c00390{height:14.890964pt;}
.h4_c00390{height:20.466875pt;}
.h2_c00390{height:22.303646pt;}
.h5_c00390{height:27.879557pt;}
.h3_c00390{height:31.618698pt;}
.h6_c00390{height:35.357839pt;}
.h1_c00390{height:39.031380pt;}
.h8_c00390{height:42.770521pt;}
.h0_c00390{height:1186.666667pt;}
.w0_c00390{width:782.666667pt;}
.x0_c00390{left:0.000000pt;}
.x3_c00390{left:134.293333pt;}
.xa4_c00390{left:136.000000pt;}
.x65_c00390{left:136.960000pt;}
.x55_c00390{left:148.000000pt;}
.x1c_c00390{left:149.333333pt;}
.x9c_c00390{left:150.666667pt;}
.x1b_c00390{left:151.626667pt;}
.xdd_c00390{left:154.666667pt;}
.xad_c00390{left:159.040000pt;}
.xe4_c00390{left:160.000000pt;}
.x84_c00390{left:162.293333pt;}
.xeb_c00390{left:164.000000pt;}
.x3b_c00390{left:167.040000pt;}
.x1d_c00390{left:168.373333pt;}
.x9d_c00390{left:172.573333pt;}
.xcf_c00390{left:173.706667pt;}
.xc6_c00390{left:176.960000pt;}
.x90_c00390{left:181.333333pt;}
.x29_c00390{left:182.293333pt;}
.x66_c00390{left:185.333333pt;}
.xe5_c00390{left:186.666667pt;}
.x3c_c00390{left:188.373333pt;}
.x1e_c00390{left:190.666667pt;}
.x4_c00390{left:191.626667pt;}
.xb9_c00390{left:193.333333pt;}
.x32_c00390{left:194.666667pt;}
.x56_c00390{left:196.960000pt;}
.xd0_c00390{left:198.666667pt;}
.xe9_c00390{left:202.666667pt;}
.xde_c00390{left:204.000000pt;}
.x85_c00390{left:208.373333pt;}
.x5_c00390{left:211.040000pt;}
.xf_c00390{left:212.000000pt;}
.x4a_c00390{left:214.666667pt;}
.x67_c00390{left:216.000000pt;}
.x46_c00390{left:218.293333pt;}
.x95_c00390{left:221.333333pt;}
.x10_c00390{left:222.666667pt;}
.x91_c00390{left:225.333333pt;}
.xa5_c00390{left:226.666667pt;}
.x47_c00390{left:228.000000pt;}
.x69_c00390{left:230.666667pt;}
.x78_c00390{left:232.000000pt;}
.x4b_c00390{left:233.706667pt;}
.xd1_c00390{left:235.626667pt;}
.x2a_c00390{left:236.960000pt;}
.x5c_c00390{left:241.333333pt;}
.xc7_c00390{left:246.293333pt;}
.xb3_c00390{left:248.000000pt;}
.x6a_c00390{left:249.333333pt;}
.x1f_c00390{left:252.373333pt;}
.xd2_c00390{left:253.706667pt;}
.x4c_c00390{left:255.626667pt;}
.x57_c00390{left:259.626667pt;}
.x3d_c00390{left:261.333333pt;}
.x8a_c00390{left:262.293333pt;}
.x11_c00390{left:264.000000pt;}
.xf2_c00390{left:266.293333pt;}
.x76_c00390{left:267.626667pt;}
.x6d_c00390{left:269.333333pt;}
.xd7_c00390{left:270.666667pt;}
.x33_c00390{left:273.133333pt;}
.x9e_c00390{left:274.666667pt;}
.x79_c00390{left:277.333333pt;}
.x12_c00390{left:281.333333pt;}
.xb4_c00390{left:283.040000pt;}
.x6_c00390{left:284.000000pt;}
.x80_c00390{left:285.333333pt;}
.xe6_c00390{left:286.293333pt;}
.x6e_c00390{left:287.626667pt;}
.x77_c00390{left:288.960000pt;}
.x8b_c00390{left:291.626667pt;}
.x48_c00390{left:292.960000pt;}
.xc0_c00390{left:298.666667pt;}
.x20_c00390{left:300.000000pt;}
.x96_c00390{left:302.666667pt;}
.x13_c00390{left:304.373333pt;}
.x68_c00390{left:307.240000pt;}
.x34_c00390{left:308.960000pt;}
.x3e_c00390{left:311.626667pt;}
.xc8_c00390{left:313.706667pt;}
.xae_c00390{left:314.666667pt;}
.x58_c00390{left:317.706667pt;}
.x97_c00390{left:320.000000pt;}
.x7a_c00390{left:321.333333pt;}
.xa6_c00390{left:323.040000pt;}
.x5d_c00390{left:324.000000pt;}
.x4d_c00390{left:327.040000pt;}
.x14_c00390{left:329.333333pt;}
.xba_c00390{left:331.040000pt;}
.x21_c00390{left:332.373333pt;}
.x9f_c00390{left:333.706667pt;}
.x92_c00390{left:337.333333pt;}
.x7_c00390{left:338.293333pt;}
.x2b_c00390{left:342.466667pt;}
.xca_c00390{left:344.373333pt;}
.x5e_c00390{left:345.333333pt;}
.x2_c00390{left:346.666667pt;}
.x3f_c00390{left:348.000000pt;}
.xdf_c00390{left:349.333333pt;}
.x6f_c00390{left:351.240000pt;}
.xea_c00390{left:354.666667pt;}
.x22_c00390{left:356.000000pt;}
.xa7_c00390{left:360.373333pt;}
.x8c_c00390{left:361.333333pt;}
.x4e_c00390{left:363.040000pt;}
.x40_c00390{left:364.000000pt;}
.xd3_c00390{left:366.666667pt;}
.x8_c00390{left:367.626667pt;}
.xc1_c00390{left:369.333333pt;}
.xe7_c00390{left:373.706667pt;}
.xc2_c00390{left:375.040000pt;}
.x7b_c00390{left:376.960000pt;}
.x2c_c00390{left:379.626667pt;}
.xd4_c00390{left:383.040000pt;}
.x70_c00390{left:384.000000pt;}
.x35_c00390{left:385.333333pt;}
.x9_c00390{left:387.040000pt;}
.xd8_c00390{left:389.333333pt;}
.x8d_c00390{left:390.666667pt;}
.x93_c00390{left:391.626667pt;}
.x59_c00390{left:397.333333pt;}
.x4f_c00390{left:398.666667pt;}
.x15_c00390{left:400.000000pt;}
.x86_c00390{left:401.706667pt;}
.xaf_c00390{left:402.666667pt;}
.xbb_c00390{left:405.333333pt;}
.xd5_c00390{left:408.000000pt;}
.xc3_c00390{left:412.000000pt;}
.xa8_c00390{left:413.333333pt;}
.xe0_c00390{left:414.666667pt;}
.x50_c00390{left:417.333333pt;}
.x23_c00390{left:418.293333pt;}
.x94_c00390{left:420.000000pt;}
.x5f_c00390{left:420.960000pt;}
.xf3_c00390{left:424.373333pt;}
.x98_c00390{left:426.666667pt;}
.x2d_c00390{left:428.000000pt;}
.xd9_c00390{left:429.333333pt;}
.x81_c00390{left:432.000000pt;}
.xe8_c00390{left:433.333333pt;}
.x24_c00390{left:434.666667pt;}
.x6b_c00390{left:436.373333pt;}
.x16_c00390{left:437.333333pt;}
.x51_c00390{left:439.626667pt;}
.x7c_c00390{left:442.293333pt;}
.x71_c00390{left:443.626667pt;}
.x41_c00390{left:445.333333pt;}
.xec_c00390{left:446.666667pt;}
.x36_c00390{left:448.000000pt;}
.x49_c00390{left:451.626667pt;}
.x8e_c00390{left:454.666667pt;}
.xa0_c00390{left:456.000000pt;}
.xe1_c00390{left:457.706667pt;}
.xa_c00390{left:459.040000pt;}
.xbc_c00390{left:460.960000pt;}
.x37_c00390{left:468.000000pt;}
.x72_c00390{left:469.333333pt;}
.xbd_c00390{left:471.040000pt;}
.x6c_c00390{left:473.333333pt;}
.x52_c00390{left:476.000000pt;}
.x42_c00390{left:477.706667pt;}
.x5a_c00390{left:481.706667pt;}
.xa9_c00390{left:484.000000pt;}
.x99_c00390{left:485.706667pt;}
.x60_c00390{left:487.240000pt;}
.xe2_c00390{left:489.333333pt;}
.x17_c00390{left:490.666667pt;}
.xc4_c00390{left:491.626667pt;}
.xcb_c00390{left:493.333333pt;}
.x5b_c00390{left:494.666667pt;}
.xbe_c00390{left:495.626667pt;}
.xed_c00390{left:496.960000pt;}
.x2e_c00390{left:497.906667pt;}
.x25_c00390{left:500.373333pt;}
.x43_c00390{left:501.706667pt;}
.x87_c00390{left:503.626667pt;}
.x53_c00390{left:505.706667pt;}
.xee_c00390{left:508.000000pt;}
.x73_c00390{left:509.333333pt;}
.x7d_c00390{left:510.466667pt;}
.x9a_c00390{left:512.000000pt;}
.x18_c00390{left:513.706667pt;}
.x2f_c00390{left:516.000000pt;}
.x38_c00390{left:517.133333pt;}
.xb5_c00390{left:519.040000pt;}
.xa1_c00390{left:520.373333pt;}
.xb_c00390{left:522.293333pt;}
.x26_c00390{left:524.000000pt;}
.xc5_c00390{left:524.960000pt;}
.x8f_c00390{left:528.000000pt;}
.x54_c00390{left:529.333333pt;}
.xb0_c00390{left:533.333333pt;}
.xcc_c00390{left:534.666667pt;}
.xf4_c00390{left:536.373333pt;}
.x19_c00390{left:537.333333pt;}
.xda_c00390{left:540.960000pt;}
.xb6_c00390{left:542.666667pt;}
.x7e_c00390{left:545.333333pt;}
.xd6_c00390{left:548.000000pt;}
.x44_c00390{left:549.333333pt;}
.xa2_c00390{left:552.000000pt;}
.x39_c00390{left:553.333333pt;}
.x82_c00390{left:555.040000pt;}
.xaa_c00390{left:556.373333pt;}
.x61_c00390{left:558.666667pt;}
.xef_c00390{left:562.293333pt;}
.x88_c00390{left:563.626667pt;}
.x27_c00390{left:564.960000pt;}
.x74_c00390{left:566.666667pt;}
.xe3_c00390{left:568.000000pt;}
.x30_c00390{left:569.133333pt;}
.xb7_c00390{left:571.040000pt;}
.xf5_c00390{left:573.333333pt;}
.xc_c00390{left:577.333333pt;}
.x7f_c00390{left:580.000000pt;}
.x62_c00390{left:583.426667pt;}
.xcd_c00390{left:585.333333pt;}
.xf0_c00390{left:587.626667pt;}
.x3a_c00390{left:588.960000pt;}
.x9b_c00390{left:590.293333pt;}
.x45_c00390{left:592.000000pt;}
.xb1_c00390{left:594.293333pt;}
.xa3_c00390{left:597.333333pt;}
.x63_c00390{left:598.666667pt;}
.xbf_c00390{left:600.000000pt;}
.x89_c00390{left:601.333333pt;}
.xdb_c00390{left:602.666667pt;}
.xab_c00390{left:605.333333pt;}
.xc9_c00390{left:606.666667pt;}
.x31_c00390{left:607.626667pt;}
.x28_c00390{left:609.333333pt;}
.xd_c00390{left:610.666667pt;}
.x83_c00390{left:612.000000pt;}
.xce_c00390{left:615.040000pt;}
.x64_c00390{left:616.000000pt;}
.xdc_c00390{left:617.706667pt;}
.x1a_c00390{left:618.666667pt;}
.x75_c00390{left:620.960000pt;}
.x1_c00390{left:626.666667pt;}
.xf1_c00390{left:628.000000pt;}
.xb8_c00390{left:629.706667pt;}
.xe_c00390{left:630.666667pt;}
.xac_c00390{left:632.960000pt;}
.xb2_c00390{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1d40b4c11ea3a29e7aeee856.woff2')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md5_c00391{transform:matrix(0.338957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338957,0.000000,0.000000,0.250000,0,0);}
.mb7_c00391{transform:matrix(0.340756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340756,0.000000,0.000000,0.250000,0,0);}
.md4_c00391{transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);}
.m4f_c00391{transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);}
.m8a_c00391{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.m0_c00391{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.md3_c00391{transform:matrix(0.370015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370015,0.000000,0.000000,0.250000,0,0);}
.mb9_c00391{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m14_c00391{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m3f_c00391{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m7e_c00391{transform:matrix(0.372449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372449,0.000000,0.000000,0.250000,0,0);}
.mbb_c00391{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.mba_c00391{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m98_c00391{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m7b_c00391{transform:matrix(0.378942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378942,0.000000,0.000000,0.250000,0,0);}
.mb3_c00391{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m6e_c00391{transform:matrix(0.382189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382189,0.000000,0.000000,0.250000,0,0);}
.m9c_c00391{transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);}
.m7a_c00391{transform:matrix(0.385436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385436,0.000000,0.000000,0.250000,0,0);}
.maf_c00391{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.m6d_c00391{transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);}
.m3e_c00391{transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);}
.m33_c00391{transform:matrix(0.394710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394710,0.000000,0.000000,0.250000,0,0);}
.mb_c00391{transform:matrix(0.395228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395228,0.000000,0.000000,0.250000,0,0);}
.m34_c00391{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.mc5_c00391{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m8f_c00391{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.m3_c00391{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.m7f_c00391{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.mca_c00391{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m7c_c00391{transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);}
.m94_c00391{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.m44_c00391{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.md0_c00391{transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);}
.md7_c00391{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m38_c00391{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m61_c00391{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m49_c00391{transform:matrix(0.415584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415584,0.000000,0.000000,0.250000,0,0);}
.m86_c00391{transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);}
.mac_c00391{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.ma6_c00391{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.ma0_c00391{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m5c_c00391{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m9f_c00391{transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);}
.m10_c00391{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m11_c00391{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.ma2_c00391{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m57_c00391{transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);}
.mce_c00391{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m3a_c00391{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.md9_c00391{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m9e_c00391{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.mad_c00391{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.mcf_c00391{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m3c_c00391{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m21_c00391{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m89_c00391{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.mc_c00391{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.m20_c00391{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.ma1_c00391{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.m46_c00391{transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);}
.m59_c00391{transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);}
.ma5_c00391{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m36_c00391{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m4_c00391{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.m9d_c00391{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.mc6_c00391{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m99_c00391{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.mcc_c00391{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.mb1_c00391{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m93_c00391{transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);}
.m72_c00391{transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);}
.m26_c00391{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.mc2_c00391{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m43_c00391{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m79_c00391{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);}
.m15_c00391{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m95_c00391{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m1f_c00391{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m3d_c00391{transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);}
.mc4_c00391{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m5e_c00391{transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);}
.m27_c00391{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m6b_c00391{transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);}
.m63_c00391{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.m56_c00391{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m74_c00391{transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);}
.m60_c00391{transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);}
.m23_c00391{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m4b_c00391{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m18_c00391{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m80_c00391{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m81_c00391{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m42_c00391{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m84_c00391{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m73_c00391{transform:matrix(0.486029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486029,0.000000,0.000000,0.250000,0,0);}
.m9a_c00391{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m75_c00391{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m5a_c00391{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.mf_c00391{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_c00391{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m6f_c00391{transform:matrix(0.492220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492220,0.000000,0.000000,0.250000,0,0);}
.m17_c00391{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m32_c00391{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);}
.mc1_c00391{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m28_c00391{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.mb8_c00391{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m40_c00391{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.mb6_c00391{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.ma7_c00391{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.md2_c00391{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m9b_c00391{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.m48_c00391{transform:matrix(0.514378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514378,0.000000,0.000000,0.250000,0,0);}
.m58_c00391{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.mc0_c00391{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m2a_c00391{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.m87_c00391{transform:matrix(0.517647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517647,0.000000,0.000000,0.250000,0,0);}
.m82_c00391{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m51_c00391{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m7d_c00391{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.mcb_c00391{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m16_c00391{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);}
.m71_c00391{transform:matrix(0.525882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525882,0.000000,0.000000,0.250000,0,0);}
.mdc_c00391{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.mc3_c00391{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m8c_c00391{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.mab_c00391{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.ma9_c00391{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m13_c00391{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.ma4_c00391{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m1b_c00391{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.mbe_c00391{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mc8_c00391{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m37_c00391{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.md6_c00391{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m62_c00391{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m7_c00391{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m69_c00391{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m90_c00391{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m50_c00391{transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);}
.mc7_c00391{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m41_c00391{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m6c_c00391{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.mb4_c00391{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mc9_c00391{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m9_c00391{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m5d_c00391{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m4d_c00391{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.m8b_c00391{transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);}
.mbd_c00391{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m4a_c00391{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mbf_c00391{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m76_c00391{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m85_c00391{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m92_c00391{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m55_c00391{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.mcd_c00391{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m54_c00391{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m5f_c00391{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.m5b_c00391{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);}
.m45_c00391{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m25_c00391{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m3b_c00391{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.maa_c00391{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m1c_c00391{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m70_c00391{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mb5_c00391{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m30_c00391{transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);}
.md8_c00391{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m8e_c00391{transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);}
.m67_c00391{transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);}
.me_c00391{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m6a_c00391{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m2_c00391{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);}
.mbc_c00391{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);}
.m47_c00391{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m1_c00391{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m1a_c00391{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m24_c00391{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m19_c00391{transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);}
.m78_c00391{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m22_c00391{transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);}
.m4c_c00391{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m77_c00391{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);}
.m35_c00391{transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);}
.ma_c00391{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m53_c00391{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m66_c00391{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m68_c00391{transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);}
.m1e_c00391{transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);}
.m52_c00391{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m6_c00391{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m2f_c00391{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.m4e_c00391{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m2b_c00391{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.m2c_c00391{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m1d_c00391{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m88_c00391{transform:matrix(0.683088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683088,0.000000,0.000000,0.250000,0,0);}
.m12_c00391{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m64_c00391{transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);}
.mda_c00391{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m83_c00391{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m65_c00391{transform:matrix(0.697794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697794,0.000000,0.000000,0.250000,0,0);}
.m8d_c00391{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m96_c00391{transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);}
.m2d_c00391{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);}
.mae_c00391{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.m8_c00391{transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);}
.m91_c00391{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.ma8_c00391{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mb0_c00391{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m2e_c00391{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);}
.mb2_c00391{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mdb_c00391{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.md1_c00391{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m31_c00391{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m97_c00391{transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);}
.m5_c00391{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m39_c00391{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.md_c00391{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.ma3_c00391{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws2_c00391{word-spacing:-16.889280px;}
.ws1_c00391{word-spacing:-4.791339px;}
.ws3_c00391{word-spacing:-3.015319px;}
.ws4_c00391{word-spacing:0.000000px;}
.ws0_c00391{word-spacing:3.195600px;}
._0_c00391{width:7.053206px;}
._1_c00391{width:17.284338px;}
.fc0_c00391{color:transparent;}
.fs7_c00391{font-size:3.420000px;}
.fs3_c00391{font-size:13.620000px;}
.fs6_c00391{font-size:18.720000px;}
.fs1_c00391{font-size:20.400000px;}
.fs4_c00391{font-size:25.500000px;}
.fs5_c00391{font-size:28.920000px;}
.fs2_c00391{font-size:32.340000px;}
.fs0_c00391{font-size:35.700000px;}
.fs8_c00391{font-size:39.120000px;}
.y0_c00391{bottom:0.000000px;}
.yea_c00391{bottom:247.680000px;}
.yed_c00391{bottom:248.745000px;}
.yee_c00391{bottom:249.825000px;}
.yec_c00391{bottom:250.050000px;}
.yeb_c00391{bottom:250.905000px;}
.yef_c00391{bottom:251.130000px;}
.ye9_c00391{bottom:267.405000px;}
.ye7_c00391{bottom:268.245000px;}
.ye6_c00391{bottom:269.325000px;}
.ye5_c00391{bottom:270.405000px;}
.ye8_c00391{bottom:270.630000px;}
.ye3_c00391{bottom:287.745000px;}
.ye2_c00391{bottom:288.825000px;}
.ye4_c00391{bottom:289.905000px;}
.ye1_c00391{bottom:308.745000px;}
.ydf_c00391{bottom:309.405000px;}
.ye0_c00391{bottom:310.905000px;}
.yde_c00391{bottom:328.245000px;}
.ydd_c00391{bottom:330.405000px;}
.yd8_c00391{bottom:347.745000px;}
.yd9_c00391{bottom:348.825000px;}
.ydb_c00391{bottom:349.245000px;}
.yd7_c00391{bottom:349.905000px;}
.yda_c00391{bottom:350.130000px;}
.ydc_c00391{bottom:350.970000px;}
.yd2_c00391{bottom:367.245000px;}
.yd5_c00391{bottom:368.325000px;}
.yd4_c00391{bottom:369.405000px;}
.yd3_c00391{bottom:369.420000px;}
.yd6_c00391{bottom:369.630000px;}
.yd1_c00391{bottom:393.825000px;}
.ycd_c00391{bottom:407.970000px;}
.ycc_c00391{bottom:408.825000px;}
.yca_c00391{bottom:409.905000px;}
.yd0_c00391{bottom:410.130000px;}
.ycf_c00391{bottom:410.325000px;}
.ycb_c00391{bottom:410.970000px;}
.yce_c00391{bottom:412.470000px;}
.yc3_c00391{bottom:424.905000px;}
.yc7_c00391{bottom:425.325000px;}
.yc2_c00391{bottom:425.970000px;}
.yc5_c00391{bottom:426.195000px;}
.yc8_c00391{bottom:426.405000px;}
.yc4_c00391{bottom:427.050000px;}
.yc9_c00391{bottom:427.470000px;}
.yc6_c00391{bottom:427.695000px;}
.yc1_c00391{bottom:439.905000px;}
.yc0_c00391{bottom:453.825000px;}
.yba_c00391{bottom:454.050000px;}
.ybf_c00391{bottom:454.905000px;}
.ybc_c00391{bottom:455.130000px;}
.ybd_c00391{bottom:455.970000px;}
.ybe_c00391{bottom:456.195000px;}
.ybb_c00391{bottom:457.050000px;}
.yb8_c00391{bottom:467.970000px;}
.yb5_c00391{bottom:468.825000px;}
.yb6_c00391{bottom:469.905000px;}
.yb4_c00391{bottom:470.970000px;}
.yb7_c00391{bottom:471.195000px;}
.yb9_c00391{bottom:472.050000px;}
.yae_c00391{bottom:482.970000px;}
.yb3_c00391{bottom:483.825000px;}
.yb0_c00391{bottom:484.905000px;}
.yb1_c00391{bottom:485.550000px;}
.yaf_c00391{bottom:485.970000px;}
.yb2_c00391{bottom:487.050000px;}
.yad_c00391{bottom:498.405000px;}
.yaa_c00391{bottom:498.825000px;}
.yac_c00391{bottom:500.130000px;}
.yab_c00391{bottom:500.970000px;}
.ya5_c00391{bottom:513.825000px;}
.ya4_c00391{bottom:514.050000px;}
.ya9_c00391{bottom:514.905000px;}
.ya6_c00391{bottom:515.970000px;}
.ya7_c00391{bottom:516.195000px;}
.ya8_c00391{bottom:517.050000px;}
.y9f_c00391{bottom:528.405000px;}
.ya0_c00391{bottom:528.825000px;}
.ya3_c00391{bottom:529.905000px;}
.ya1_c00391{bottom:531.195000px;}
.ya2_c00391{bottom:532.050000px;}
.y9c_c00391{bottom:543.405000px;}
.y9b_c00391{bottom:543.630000px;}
.y9e_c00391{bottom:544.470000px;}
.y9d_c00391{bottom:545.550000px;}
.y99_c00391{bottom:557.325000px;}
.y9a_c00391{bottom:557.970000px;}
.y98_c00391{bottom:572.325000px;}
.y94_c00391{bottom:573.405000px;}
.y93_c00391{bottom:573.630000px;}
.y96_c00391{bottom:574.050000px;}
.y97_c00391{bottom:574.470000px;}
.y95_c00391{bottom:574.695000px;}
.y92_c00391{bottom:587.325000px;}
.y91_c00391{bottom:590.550000px;}
.y8e_c00391{bottom:602.325000px;}
.y90_c00391{bottom:603.405000px;}
.y8c_c00391{bottom:603.630000px;}
.y8d_c00391{bottom:604.470000px;}
.y8f_c00391{bottom:605.550000px;}
.y8a_c00391{bottom:616.905000px;}
.y8b_c00391{bottom:617.325000px;}
.y84_c00391{bottom:631.050000px;}
.y85_c00391{bottom:631.905000px;}
.y86_c00391{bottom:632.970000px;}
.y87_c00391{bottom:633.195000px;}
.y89_c00391{bottom:633.630000px;}
.y88_c00391{bottom:634.050000px;}
.y82_c00391{bottom:646.905000px;}
.y83_c00391{bottom:647.970000px;}
.y80_c00391{bottom:648.195000px;}
.y81_c00391{bottom:649.050000px;}
.y7e_c00391{bottom:661.905000px;}
.y7f_c00391{bottom:662.970000px;}
.y7d_c00391{bottom:664.050000px;}
.y7c_c00391{bottom:676.905000px;}
.y76_c00391{bottom:689.970000px;}
.y7a_c00391{bottom:690.825000px;}
.y77_c00391{bottom:691.905000px;}
.y78_c00391{bottom:692.550000px;}
.y79_c00391{bottom:692.970000px;}
.y7b_c00391{bottom:693.195000px;}
.y75_c00391{bottom:705.405000px;}
.y74_c00391{bottom:705.825000px;}
.y73_c00391{bottom:721.470000px;}
.y72_c00391{bottom:722.130000px;}
.y71_c00391{bottom:722.550000px;}
.y70_c00391{bottom:735.405000px;}
.y6f_c00391{bottom:737.550000px;}
.y69_c00391{bottom:748.470000px;}
.y6a_c00391{bottom:749.325000px;}
.y6e_c00391{bottom:750.405000px;}
.y6c_c00391{bottom:751.470000px;}
.y6b_c00391{bottom:751.695000px;}
.y6d_c00391{bottom:752.550000px;}
.y68_c00391{bottom:764.325000px;}
.y67_c00391{bottom:765.405000px;}
.y61_c00391{bottom:779.550000px;}
.y65_c00391{bottom:779.970000px;}
.y62_c00391{bottom:780.405000px;}
.y64_c00391{bottom:780.630000px;}
.y63_c00391{bottom:781.470000px;}
.y66_c00391{bottom:782.550000px;}
.y60_c00391{bottom:793.905000px;}
.y5f_c00391{bottom:794.325000px;}
.y5a_c00391{bottom:794.550000px;}
.y5d_c00391{bottom:795.405000px;}
.y5b_c00391{bottom:796.470000px;}
.y5e_c00391{bottom:796.695000px;}
.y5c_c00391{bottom:797.550000px;}
.y56_c00391{bottom:809.325000px;}
.y58_c00391{bottom:810.405000px;}
.y57_c00391{bottom:811.470000px;}
.y59_c00391{bottom:812.550000px;}
.y53_c00391{bottom:823.470000px;}
.y55_c00391{bottom:825.405000px;}
.y51_c00391{bottom:825.630000px;}
.y54_c00391{bottom:826.050000px;}
.y52_c00391{bottom:826.470000px;}
.y4e_c00391{bottom:837.825000px;}
.y4d_c00391{bottom:838.050000px;}
.y4f_c00391{bottom:840.195000px;}
.y50_c00391{bottom:841.050000px;}
.y4a_c00391{bottom:852.825000px;}
.y49_c00391{bottom:853.905000px;}
.y4c_c00391{bottom:854.130000px;}
.y4b_c00391{bottom:854.970000px;}
.y48_c00391{bottom:855.195000px;}
.y47_c00391{bottom:867.825000px;}
.y46_c00391{bottom:868.905000px;}
.y44_c00391{bottom:869.130000px;}
.y45_c00391{bottom:871.050000px;}
.y42_c00391{bottom:882.825000px;}
.y3e_c00391{bottom:883.050000px;}
.y40_c00391{bottom:883.905000px;}
.y43_c00391{bottom:884.130000px;}
.y3f_c00391{bottom:884.970000px;}
.y41_c00391{bottom:885.195000px;}
.y3b_c00391{bottom:897.825000px;}
.y3c_c00391{bottom:898.905000px;}
.y3a_c00391{bottom:899.970000px;}
.y39_c00391{bottom:900.195000px;}
.y3d_c00391{bottom:901.050000px;}
.y38_c00391{bottom:911.325000px;}
.y37_c00391{bottom:912.405000px;}
.y34_c00391{bottom:912.825000px;}
.y36_c00391{bottom:913.050000px;}
.y35_c00391{bottom:913.905000px;}
.y31_c00391{bottom:914.550000px;}
.y32_c00391{bottom:914.970000px;}
.y33_c00391{bottom:916.050000px;}
.y30_c00391{bottom:927.405000px;}
.y2e_c00391{bottom:941.325000px;}
.y29_c00391{bottom:941.970000px;}
.y2c_c00391{bottom:942.405000px;}
.y2b_c00391{bottom:942.630000px;}
.y2a_c00391{bottom:943.470000px;}
.y2d_c00391{bottom:943.695000px;}
.y2f_c00391{bottom:944.550000px;}
.y28_c00391{bottom:956.325000px;}
.y27_c00391{bottom:957.405000px;}
.y23_c00391{bottom:972.405000px;}
.y24_c00391{bottom:972.630000px;}
.y26_c00391{bottom:973.470000px;}
.y25_c00391{bottom:973.695000px;}
.y22_c00391{bottom:974.550000px;}
.y21_c00391{bottom:986.325000px;}
.y20_c00391{bottom:999.825000px;}
.y18_c00391{bottom:1000.470000px;}
.y1b_c00391{bottom:1000.905000px;}
.y1f_c00391{bottom:1001.970000px;}
.y1e_c00391{bottom:1002.195000px;}
.y1d_c00391{bottom:1002.405000px;}
.y1a_c00391{bottom:1002.630000px;}
.y19_c00391{bottom:1003.050000px;}
.y1c_c00391{bottom:1003.470000px;}
.y17_c00391{bottom:1014.825000px;}
.y14_c00391{bottom:1015.905000px;}
.y16_c00391{bottom:1016.970000px;}
.y15_c00391{bottom:1017.195000px;}
.y13_c00391{bottom:1018.050000px;}
.ye_c00391{bottom:1030.050000px;}
.y10_c00391{bottom:1030.905000px;}
.y12_c00391{bottom:1031.130000px;}
.y11_c00391{bottom:1031.970000px;}
.yf_c00391{bottom:1033.050000px;}
.yd_c00391{bottom:1044.825000px;}
.yc_c00391{bottom:1045.905000px;}
.yb_c00391{bottom:1046.970000px;}
.y9_c00391{bottom:1047.195000px;}
.ya_c00391{bottom:1048.050000px;}
.y4_c00391{bottom:1059.825000px;}
.y3_c00391{bottom:1060.050000px;}
.y8_c00391{bottom:1060.905000px;}
.y7_c00391{bottom:1061.970000px;}
.y5_c00391{bottom:1062.195000px;}
.y6_c00391{bottom:1063.050000px;}
.y2_c00391{bottom:1097.550000px;}
.y1_c00391{bottom:1097.745000px;}
.h8_c00391{height:4.206533px;}
.h4_c00391{height:16.752334px;}
.h7_c00391{height:23.025234px;}
.h2_c00391{height:25.091602px;}
.h5_c00391{height:31.364502px;}
.h6_c00391{height:35.571035px;}
.h3_c00391{height:39.777568px;}
.h1_c00391{height:43.910303px;}
.h9_c00391{height:48.116836px;}
.h0_c00391{height:1335.000000px;}
.w0_c00391{width:880.500000px;}
.x0_c00391{left:0.000000px;}
.xb7_c00391{left:151.500000px;}
.x32_c00391{left:153.000000px;}
.x1_c00391{left:154.500000px;}
.xab_c00391{left:163.500000px;}
.x52_c00391{left:165.000000px;}
.x10_c00391{left:166.500000px;}
.x19_c00391{left:168.420000px;}
.x3_c00391{left:169.920000px;}
.xf5_c00391{left:177.000000px;}
.xa0_c00391{left:179.580000px;}
.xb8_c00391{left:181.920000px;}
.x99_c00391{left:183.420000px;}
.x1a_c00391{left:186.000000px;}
.x4_c00391{left:187.080000px;}
.xa2_c00391{left:189.645000px;}
.x62_c00391{left:192.000000px;}
.xeb_c00391{left:193.080000px;}
.xb1_c00391{left:195.000000px;}
.x74_c00391{left:196.500000px;}
.xac_c00391{left:198.000000px;}
.x11_c00391{left:201.000000px;}
.xf1_c00391{left:204.000000px;}
.x7f_c00391{left:205.500000px;}
.xb9_c00391{left:208.500000px;}
.x9a_c00391{left:210.000000px;}
.x53_c00391{left:211.080000px;}
.x23_c00391{left:214.080000px;}
.xd2_c00391{left:217.080000px;}
.xe3_c00391{left:218.580000px;}
.xf6_c00391{left:220.500000px;}
.x1b_c00391{left:221.580000px;}
.xa1_c00391{left:223.500000px;}
.x3f_c00391{left:225.000000px;}
.x4a_c00391{left:226.500000px;}
.x12_c00391{left:229.920000px;}
.xc9_c00391{left:231.000000px;}
.xcc_c00391{left:234.000000px;}
.x88_c00391{left:235.500000px;}
.xb2_c00391{left:237.000000px;}
.x54_c00391{left:238.080000px;}
.x75_c00391{left:240.000000px;}
.x91_c00391{left:242.355000px;}
.xe7_c00391{left:244.500000px;}
.xba_c00391{left:245.580000px;}
.x63_c00391{left:247.080000px;}
.xc3_c00391{left:249.000000px;}
.x76_c00391{left:250.500000px;}
.x80_c00391{left:251.580000px;}
.xe4_c00391{left:255.000000px;}
.x92_c00391{left:256.500000px;}
.x28_c00391{left:259.500000px;}
.x33_c00391{left:261.000000px;}
.x5_c00391{left:262.500000px;}
.x24_c00391{left:264.000000px;}
.xd7_c00391{left:265.500000px;}
.x4b_c00391{left:267.000000px;}
.x58_c00391{left:268.500000px;}
.x13_c00391{left:271.500000px;}
.x3e_c00391{left:273.000000px;}
.x25_c00391{left:274.500000px;}
.x93_c00391{left:277.500000px;}
.x59_c00391{left:279.000000px;}
.x55_c00391{left:282.000000px;}
.x77_c00391{left:284.580000px;}
.x1c_c00391{left:287.580000px;}
.xa3_c00391{left:289.080000px;}
.xad_c00391{left:290.580000px;}
.xc4_c00391{left:294.000000px;}
.x40_c00391{left:295.080000px;}
.xf7_c00391{left:297.420000px;}
.x6d_c00391{left:298.920000px;}
.x34_c00391{left:300.000000px;}
.x89_c00391{left:303.000000px;}
.xe8_c00391{left:306.000000px;}
.xa7_c00391{left:308.580000px;}
.x56_c00391{left:310.080000px;}
.xbb_c00391{left:311.580000px;}
.x6_c00391{left:313.080000px;}
.x14_c00391{left:315.000000px;}
.xec_c00391{left:316.920000px;}
.x64_c00391{left:318.000000px;}
.x4c_c00391{left:319.500000px;}
.x26_c00391{left:320.580000px;}
.x78_c00391{left:322.080000px;}
.x5a_c00391{left:323.580000px;}
.x15_c00391{left:325.500000px;}
.xa8_c00391{left:327.000000px;}
.x29_c00391{left:330.000000px;}
.x35_c00391{left:331.500000px;}
.x57_c00391{left:337.500000px;}
.xc5_c00391{left:339.000000px;}
.xc0_c00391{left:340.500000px;}
.x1d_c00391{left:341.580000px;}
.xa4_c00391{left:345.000000px;}
.x7_c00391{left:346.500000px;}
.x27_c00391{left:347.580000px;}
.x41_c00391{left:349.500000px;}
.x5b_c00391{left:352.920000px;}
.xb3_c00391{left:354.000000px;}
.x65_c00391{left:355.920000px;}
.x8a_c00391{left:358.920000px;}
.x42_c00391{left:360.000000px;}
.x2a_c00391{left:362.580000px;}
.x82_c00391{left:364.080000px;}
.xdf_c00391{left:366.000000px;}
.x8b_c00391{left:367.500000px;}
.xd8_c00391{left:369.000000px;}
.x16_c00391{left:370.080000px;}
.xca_c00391{left:373.920000px;}
.xcd_c00391{left:376.080000px;}
.x2b_c00391{left:377.580000px;}
.x81_c00391{left:379.500000px;}
.x8_c00391{left:381.000000px;}
.x66_c00391{left:382.080000px;}
.xae_c00391{left:384.420000px;}
.x94_c00391{left:387.000000px;}
.x6e_c00391{left:391.500000px;}
.x2_c00391{left:393.000000px;}
.x5c_c00391{left:394.500000px;}
.x43_c00391{left:395.580000px;}
.x17_c00391{left:399.420000px;}
.x36_c00391{left:400.920000px;}
.x9b_c00391{left:402.420000px;}
.xc1_c00391{left:404.145000px;}
.x1e_c00391{left:408.000000px;}
.x4d_c00391{left:409.500000px;}
.xed_c00391{left:412.920000px;}
.xcb_c00391{left:417.000000px;}
.x37_c00391{left:418.500000px;}
.x79_c00391{left:419.580000px;}
.xf8_c00391{left:423.420000px;}
.xd9_c00391{left:424.500000px;}
.x9_c00391{left:426.000000px;}
.x8c_c00391{left:427.080000px;}
.xaf_c00391{left:429.000000px;}
.xc6_c00391{left:430.500000px;}
.xe0_c00391{left:433.080000px;}
.x44_c00391{left:434.580000px;}
.xe9_c00391{left:436.500000px;}
.x5d_c00391{left:438.420000px;}
.xee_c00391{left:439.920000px;}
.x18_c00391{left:442.500000px;}
.x95_c00391{left:444.000000px;}
.x5e_c00391{left:448.920000px;}
.xdb_c00391{left:450.000000px;}
.x4e_c00391{left:451.080000px;}
.xa_c00391{left:453.000000px;}
.xce_c00391{left:454.500000px;}
.x38_c00391{left:456.645000px;}
.x45_c00391{left:459.420000px;}
.xd3_c00391{left:462.420000px;}
.x67_c00391{left:465.000000px;}
.x83_c00391{left:468.000000px;}
.x8d_c00391{left:469.500000px;}
.xe5_c00391{left:472.080000px;}
.xbc_c00391{left:475.920000px;}
.x84_c00391{left:478.500000px;}
.x9c_c00391{left:480.000000px;}
.xf2_c00391{left:481.500000px;}
.x4f_c00391{left:485.580000px;}
.xef_c00391{left:487.500000px;}
.xe1_c00391{left:489.000000px;}
.xcf_c00391{left:493.920000px;}
.xbd_c00391{left:495.000000px;}
.x2c_c00391{left:496.500000px;}
.x68_c00391{left:499.080000px;}
.x39_c00391{left:501.000000px;}
.x5f_c00391{left:502.080000px;}
.x1f_c00391{left:507.000000px;}
.x6f_c00391{left:509.580000px;}
.xa5_c00391{left:510.855000px;}
.xd4_c00391{left:514.500000px;}
.xfa_c00391{left:516.000000px;}
.xb_c00391{left:518.580000px;}
.xc7_c00391{left:520.920000px;}
.xdc_c00391{left:522.000000px;}
.x85_c00391{left:523.080000px;}
.x69_c00391{left:527.580000px;}
.x60_c00391{left:529.080000px;}
.xdd_c00391{left:532.500000px;}
.xc2_c00391{left:536.580000px;}
.xbe_c00391{left:538.500000px;}
.xf0_c00391{left:541.500000px;}
.x7a_c00391{left:542.580000px;}
.xe6_c00391{left:546.420000px;}
.x46_c00391{left:550.500000px;}
.xf3_c00391{left:552.000000px;}
.x70_c00391{left:553.080000px;}
.xb4_c00391{left:554.580000px;}
.xe2_c00391{left:556.500000px;}
.x3a_c00391{left:558.000000px;}
.xc_c00391{left:559.500000px;}
.x47_c00391{left:561.000000px;}
.x2d_c00391{left:565.080000px;}
.xb0_c00391{left:567.000000px;}
.x6a_c00391{left:570.000000px;}
.x61_c00391{left:573.000000px;}
.xd0_c00391{left:579.000000px;}
.x7b_c00391{left:583.920000px;}
.x9d_c00391{left:585.420000px;}
.xc8_c00391{left:590.580000px;}
.x86_c00391{left:594.000000px;}
.x20_c00391{left:595.500000px;}
.x6b_c00391{left:600.420000px;}
.x9e_c00391{left:601.500000px;}
.xfb_c00391{left:603.000000px;}
.xd_c00391{left:604.920000px;}
.x8e_c00391{left:606.000000px;}
.x48_c00391{left:607.080000px;}
.xd1_c00391{left:610.500000px;}
.x7c_c00391{left:612.000000px;}
.xb5_c00391{left:613.920000px;}
.xa9_c00391{left:616.500000px;}
.x96_c00391{left:618.000000px;}
.x71_c00391{left:621.000000px;}
.x2e_c00391{left:622.500000px;}
.xb6_c00391{left:625.500000px;}
.x6c_c00391{left:627.000000px;}
.x3b_c00391{left:628.080000px;}
.xd5_c00391{left:630.000000px;}
.xfc_c00391{left:631.500000px;}
.x2f_c00391{left:634.500000px;}
.xde_c00391{left:637.500000px;}
.x8f_c00391{left:643.500000px;}
.xe_c00391{left:646.080000px;}
.x87_c00391{left:649.500000px;}
.x21_c00391{left:652.500000px;}
.xf9_c00391{left:655.920000px;}
.x90_c00391{left:658.500000px;}
.x50_c00391{left:660.420000px;}
.xda_c00391{left:661.500000px;}
.x7d_c00391{left:663.000000px;}
.x97_c00391{left:664.080000px;}
.x30_c00391{left:667.080000px;}
.x72_c00391{left:668.580000px;}
.xa6_c00391{left:672.000000px;}
.xf4_c00391{left:675.420000px;}
.xf_c00391{left:677.580000px;}
.xaa_c00391{left:679.080000px;}
.x9f_c00391{left:681.420000px;}
.x3c_c00391{left:684.000000px;}
.xd6_c00391{left:685.500000px;}
.x51_c00391{left:688.500000px;}
.xbf_c00391{left:690.000000px;}
.x98_c00391{left:691.080000px;}
.x31_c00391{left:693.420000px;}
.xea_c00391{left:695.355000px;}
.x3d_c00391{left:697.500000px;}
.x22_c00391{left:705.000000px;}
.x49_c00391{left:708.420000px;}
.x73_c00391{left:712.500000px;}
.x7e_c00391{left:724.920000px;}
@media print{
.v0_c00391{vertical-align:0.000000pt;}
.ls0_c00391{letter-spacing:0.000000pt;}
.ws2_c00391{word-spacing:-15.012693pt;}
.ws1_c00391{word-spacing:-4.258968pt;}
.ws3_c00391{word-spacing:-2.680284pt;}
.ws4_c00391{word-spacing:0.000000pt;}
.ws0_c00391{word-spacing:2.840533pt;}
._0_c00391{width:6.269516pt;}
._1_c00391{width:15.363856pt;}
.fs7_c00391{font-size:3.040000pt;}
.fs3_c00391{font-size:12.106667pt;}
.fs6_c00391{font-size:16.640000pt;}
.fs1_c00391{font-size:18.133333pt;}
.fs4_c00391{font-size:22.666667pt;}
.fs5_c00391{font-size:25.706667pt;}
.fs2_c00391{font-size:28.746667pt;}
.fs0_c00391{font-size:31.733333pt;}
.fs8_c00391{font-size:34.773333pt;}
.y0_c00391{bottom:0.000000pt;}
.yea_c00391{bottom:220.160000pt;}
.yed_c00391{bottom:221.106667pt;}
.yee_c00391{bottom:222.066667pt;}
.yec_c00391{bottom:222.266667pt;}
.yeb_c00391{bottom:223.026667pt;}
.yef_c00391{bottom:223.226667pt;}
.ye9_c00391{bottom:237.693333pt;}
.ye7_c00391{bottom:238.440000pt;}
.ye6_c00391{bottom:239.400000pt;}
.ye5_c00391{bottom:240.360000pt;}
.ye8_c00391{bottom:240.560000pt;}
.ye3_c00391{bottom:255.773333pt;}
.ye2_c00391{bottom:256.733333pt;}
.ye4_c00391{bottom:257.693333pt;}
.ye1_c00391{bottom:274.440000pt;}
.ydf_c00391{bottom:275.026667pt;}
.ye0_c00391{bottom:276.360000pt;}
.yde_c00391{bottom:291.773333pt;}
.ydd_c00391{bottom:293.693333pt;}
.yd8_c00391{bottom:309.106667pt;}
.yd9_c00391{bottom:310.066667pt;}
.ydb_c00391{bottom:310.440000pt;}
.yd7_c00391{bottom:311.026667pt;}
.yda_c00391{bottom:311.226667pt;}
.ydc_c00391{bottom:311.973333pt;}
.yd2_c00391{bottom:326.440000pt;}
.yd5_c00391{bottom:327.400000pt;}
.yd4_c00391{bottom:328.360000pt;}
.yd3_c00391{bottom:328.373333pt;}
.yd6_c00391{bottom:328.560000pt;}
.yd1_c00391{bottom:350.066667pt;}
.ycd_c00391{bottom:362.640000pt;}
.ycc_c00391{bottom:363.400000pt;}
.yca_c00391{bottom:364.360000pt;}
.yd0_c00391{bottom:364.560000pt;}
.ycf_c00391{bottom:364.733333pt;}
.ycb_c00391{bottom:365.306667pt;}
.yce_c00391{bottom:366.640000pt;}
.yc3_c00391{bottom:377.693333pt;}
.yc7_c00391{bottom:378.066667pt;}
.yc2_c00391{bottom:378.640000pt;}
.yc5_c00391{bottom:378.840000pt;}
.yc8_c00391{bottom:379.026667pt;}
.yc4_c00391{bottom:379.600000pt;}
.yc9_c00391{bottom:379.973333pt;}
.yc6_c00391{bottom:380.173333pt;}
.yc1_c00391{bottom:391.026667pt;}
.yc0_c00391{bottom:403.400000pt;}
.yba_c00391{bottom:403.600000pt;}
.ybf_c00391{bottom:404.360000pt;}
.ybc_c00391{bottom:404.560000pt;}
.ybd_c00391{bottom:405.306667pt;}
.ybe_c00391{bottom:405.506667pt;}
.ybb_c00391{bottom:406.266667pt;}
.yb8_c00391{bottom:415.973333pt;}
.yb5_c00391{bottom:416.733333pt;}
.yb6_c00391{bottom:417.693333pt;}
.yb4_c00391{bottom:418.640000pt;}
.yb7_c00391{bottom:418.840000pt;}
.yb9_c00391{bottom:419.600000pt;}
.yae_c00391{bottom:429.306667pt;}
.yb3_c00391{bottom:430.066667pt;}
.yb0_c00391{bottom:431.026667pt;}
.yb1_c00391{bottom:431.600000pt;}
.yaf_c00391{bottom:431.973333pt;}
.yb2_c00391{bottom:432.933333pt;}
.yad_c00391{bottom:443.026667pt;}
.yaa_c00391{bottom:443.400000pt;}
.yac_c00391{bottom:444.560000pt;}
.yab_c00391{bottom:445.306667pt;}
.ya5_c00391{bottom:456.733333pt;}
.ya4_c00391{bottom:456.933333pt;}
.ya9_c00391{bottom:457.693333pt;}
.ya6_c00391{bottom:458.640000pt;}
.ya7_c00391{bottom:458.840000pt;}
.ya8_c00391{bottom:459.600000pt;}
.y9f_c00391{bottom:469.693333pt;}
.ya0_c00391{bottom:470.066667pt;}
.ya3_c00391{bottom:471.026667pt;}
.ya1_c00391{bottom:472.173333pt;}
.ya2_c00391{bottom:472.933333pt;}
.y9c_c00391{bottom:483.026667pt;}
.y9b_c00391{bottom:483.226667pt;}
.y9e_c00391{bottom:483.973333pt;}
.y9d_c00391{bottom:484.933333pt;}
.y99_c00391{bottom:495.400000pt;}
.y9a_c00391{bottom:495.973333pt;}
.y98_c00391{bottom:508.733333pt;}
.y94_c00391{bottom:509.693333pt;}
.y93_c00391{bottom:509.893333pt;}
.y96_c00391{bottom:510.266667pt;}
.y97_c00391{bottom:510.640000pt;}
.y95_c00391{bottom:510.840000pt;}
.y92_c00391{bottom:522.066667pt;}
.y91_c00391{bottom:524.933333pt;}
.y8e_c00391{bottom:535.400000pt;}
.y90_c00391{bottom:536.360000pt;}
.y8c_c00391{bottom:536.560000pt;}
.y8d_c00391{bottom:537.306667pt;}
.y8f_c00391{bottom:538.266667pt;}
.y8a_c00391{bottom:548.360000pt;}
.y8b_c00391{bottom:548.733333pt;}
.y84_c00391{bottom:560.933333pt;}
.y85_c00391{bottom:561.693333pt;}
.y86_c00391{bottom:562.640000pt;}
.y87_c00391{bottom:562.840000pt;}
.y89_c00391{bottom:563.226667pt;}
.y88_c00391{bottom:563.600000pt;}
.y82_c00391{bottom:575.026667pt;}
.y83_c00391{bottom:575.973333pt;}
.y80_c00391{bottom:576.173333pt;}
.y81_c00391{bottom:576.933333pt;}
.y7e_c00391{bottom:588.360000pt;}
.y7f_c00391{bottom:589.306667pt;}
.y7d_c00391{bottom:590.266667pt;}
.y7c_c00391{bottom:601.693333pt;}
.y76_c00391{bottom:613.306667pt;}
.y7a_c00391{bottom:614.066667pt;}
.y77_c00391{bottom:615.026667pt;}
.y78_c00391{bottom:615.600000pt;}
.y79_c00391{bottom:615.973333pt;}
.y7b_c00391{bottom:616.173333pt;}
.y75_c00391{bottom:627.026667pt;}
.y74_c00391{bottom:627.400000pt;}
.y73_c00391{bottom:641.306667pt;}
.y72_c00391{bottom:641.893333pt;}
.y71_c00391{bottom:642.266667pt;}
.y70_c00391{bottom:653.693333pt;}
.y6f_c00391{bottom:655.600000pt;}
.y69_c00391{bottom:665.306667pt;}
.y6a_c00391{bottom:666.066667pt;}
.y6e_c00391{bottom:667.026667pt;}
.y6c_c00391{bottom:667.973333pt;}
.y6b_c00391{bottom:668.173333pt;}
.y6d_c00391{bottom:668.933333pt;}
.y68_c00391{bottom:679.400000pt;}
.y67_c00391{bottom:680.360000pt;}
.y61_c00391{bottom:692.933333pt;}
.y65_c00391{bottom:693.306667pt;}
.y62_c00391{bottom:693.693333pt;}
.y64_c00391{bottom:693.893333pt;}
.y63_c00391{bottom:694.640000pt;}
.y66_c00391{bottom:695.600000pt;}
.y60_c00391{bottom:705.693333pt;}
.y5f_c00391{bottom:706.066667pt;}
.y5a_c00391{bottom:706.266667pt;}
.y5d_c00391{bottom:707.026667pt;}
.y5b_c00391{bottom:707.973333pt;}
.y5e_c00391{bottom:708.173333pt;}
.y5c_c00391{bottom:708.933333pt;}
.y56_c00391{bottom:719.400000pt;}
.y58_c00391{bottom:720.360000pt;}
.y57_c00391{bottom:721.306667pt;}
.y59_c00391{bottom:722.266667pt;}
.y53_c00391{bottom:731.973333pt;}
.y55_c00391{bottom:733.693333pt;}
.y51_c00391{bottom:733.893333pt;}
.y54_c00391{bottom:734.266667pt;}
.y52_c00391{bottom:734.640000pt;}
.y4e_c00391{bottom:744.733333pt;}
.y4d_c00391{bottom:744.933333pt;}
.y4f_c00391{bottom:746.840000pt;}
.y50_c00391{bottom:747.600000pt;}
.y4a_c00391{bottom:758.066667pt;}
.y49_c00391{bottom:759.026667pt;}
.y4c_c00391{bottom:759.226667pt;}
.y4b_c00391{bottom:759.973333pt;}
.y48_c00391{bottom:760.173333pt;}
.y47_c00391{bottom:771.400000pt;}
.y46_c00391{bottom:772.360000pt;}
.y44_c00391{bottom:772.560000pt;}
.y45_c00391{bottom:774.266667pt;}
.y42_c00391{bottom:784.733333pt;}
.y3e_c00391{bottom:784.933333pt;}
.y40_c00391{bottom:785.693333pt;}
.y43_c00391{bottom:785.893333pt;}
.y3f_c00391{bottom:786.640000pt;}
.y41_c00391{bottom:786.840000pt;}
.y3b_c00391{bottom:798.066667pt;}
.y3c_c00391{bottom:799.026667pt;}
.y3a_c00391{bottom:799.973333pt;}
.y39_c00391{bottom:800.173333pt;}
.y3d_c00391{bottom:800.933333pt;}
.y38_c00391{bottom:810.066667pt;}
.y37_c00391{bottom:811.026667pt;}
.y34_c00391{bottom:811.400000pt;}
.y36_c00391{bottom:811.600000pt;}
.y35_c00391{bottom:812.360000pt;}
.y31_c00391{bottom:812.933333pt;}
.y32_c00391{bottom:813.306667pt;}
.y33_c00391{bottom:814.266667pt;}
.y30_c00391{bottom:824.360000pt;}
.y2e_c00391{bottom:836.733333pt;}
.y29_c00391{bottom:837.306667pt;}
.y2c_c00391{bottom:837.693333pt;}
.y2b_c00391{bottom:837.893333pt;}
.y2a_c00391{bottom:838.640000pt;}
.y2d_c00391{bottom:838.840000pt;}
.y2f_c00391{bottom:839.600000pt;}
.y28_c00391{bottom:850.066667pt;}
.y27_c00391{bottom:851.026667pt;}
.y23_c00391{bottom:864.360000pt;}
.y24_c00391{bottom:864.560000pt;}
.y26_c00391{bottom:865.306667pt;}
.y25_c00391{bottom:865.506667pt;}
.y22_c00391{bottom:866.266667pt;}
.y21_c00391{bottom:876.733333pt;}
.y20_c00391{bottom:888.733333pt;}
.y18_c00391{bottom:889.306667pt;}
.y1b_c00391{bottom:889.693333pt;}
.y1f_c00391{bottom:890.640000pt;}
.y1e_c00391{bottom:890.840000pt;}
.y1d_c00391{bottom:891.026667pt;}
.y1a_c00391{bottom:891.226667pt;}
.y19_c00391{bottom:891.600000pt;}
.y1c_c00391{bottom:891.973333pt;}
.y17_c00391{bottom:902.066667pt;}
.y14_c00391{bottom:903.026667pt;}
.y16_c00391{bottom:903.973333pt;}
.y15_c00391{bottom:904.173333pt;}
.y13_c00391{bottom:904.933333pt;}
.ye_c00391{bottom:915.600000pt;}
.y10_c00391{bottom:916.360000pt;}
.y12_c00391{bottom:916.560000pt;}
.y11_c00391{bottom:917.306667pt;}
.yf_c00391{bottom:918.266667pt;}
.yd_c00391{bottom:928.733333pt;}
.yc_c00391{bottom:929.693333pt;}
.yb_c00391{bottom:930.640000pt;}
.y9_c00391{bottom:930.840000pt;}
.ya_c00391{bottom:931.600000pt;}
.y4_c00391{bottom:942.066667pt;}
.y3_c00391{bottom:942.266667pt;}
.y8_c00391{bottom:943.026667pt;}
.y7_c00391{bottom:943.973333pt;}
.y5_c00391{bottom:944.173333pt;}
.y6_c00391{bottom:944.933333pt;}
.y2_c00391{bottom:975.600000pt;}
.y1_c00391{bottom:975.773333pt;}
.h8_c00391{height:3.739141pt;}
.h4_c00391{height:14.890964pt;}
.h7_c00391{height:20.466875pt;}
.h2_c00391{height:22.303646pt;}
.h5_c00391{height:27.879557pt;}
.h6_c00391{height:31.618698pt;}
.h3_c00391{height:35.357839pt;}
.h1_c00391{height:39.031380pt;}
.h9_c00391{height:42.770521pt;}
.h0_c00391{height:1186.666667pt;}
.w0_c00391{width:782.666667pt;}
.x0_c00391{left:0.000000pt;}
.xb7_c00391{left:134.666667pt;}
.x32_c00391{left:136.000000pt;}
.x1_c00391{left:137.333333pt;}
.xab_c00391{left:145.333333pt;}
.x52_c00391{left:146.666667pt;}
.x10_c00391{left:148.000000pt;}
.x19_c00391{left:149.706667pt;}
.x3_c00391{left:151.040000pt;}
.xf5_c00391{left:157.333333pt;}
.xa0_c00391{left:159.626667pt;}
.xb8_c00391{left:161.706667pt;}
.x99_c00391{left:163.040000pt;}
.x1a_c00391{left:165.333333pt;}
.x4_c00391{left:166.293333pt;}
.xa2_c00391{left:168.573333pt;}
.x62_c00391{left:170.666667pt;}
.xeb_c00391{left:171.626667pt;}
.xb1_c00391{left:173.333333pt;}
.x74_c00391{left:174.666667pt;}
.xac_c00391{left:176.000000pt;}
.x11_c00391{left:178.666667pt;}
.xf1_c00391{left:181.333333pt;}
.x7f_c00391{left:182.666667pt;}
.xb9_c00391{left:185.333333pt;}
.x9a_c00391{left:186.666667pt;}
.x53_c00391{left:187.626667pt;}
.x23_c00391{left:190.293333pt;}
.xd2_c00391{left:192.960000pt;}
.xe3_c00391{left:194.293333pt;}
.xf6_c00391{left:196.000000pt;}
.x1b_c00391{left:196.960000pt;}
.xa1_c00391{left:198.666667pt;}
.x3f_c00391{left:200.000000pt;}
.x4a_c00391{left:201.333333pt;}
.x12_c00391{left:204.373333pt;}
.xc9_c00391{left:205.333333pt;}
.xcc_c00391{left:208.000000pt;}
.x88_c00391{left:209.333333pt;}
.xb2_c00391{left:210.666667pt;}
.x54_c00391{left:211.626667pt;}
.x75_c00391{left:213.333333pt;}
.x91_c00391{left:215.426667pt;}
.xe7_c00391{left:217.333333pt;}
.xba_c00391{left:218.293333pt;}
.x63_c00391{left:219.626667pt;}
.xc3_c00391{left:221.333333pt;}
.x76_c00391{left:222.666667pt;}
.x80_c00391{left:223.626667pt;}
.xe4_c00391{left:226.666667pt;}
.x92_c00391{left:228.000000pt;}
.x28_c00391{left:230.666667pt;}
.x33_c00391{left:232.000000pt;}
.x5_c00391{left:233.333333pt;}
.x24_c00391{left:234.666667pt;}
.xd7_c00391{left:236.000000pt;}
.x4b_c00391{left:237.333333pt;}
.x58_c00391{left:238.666667pt;}
.x13_c00391{left:241.333333pt;}
.x3e_c00391{left:242.666667pt;}
.x25_c00391{left:244.000000pt;}
.x93_c00391{left:246.666667pt;}
.x59_c00391{left:248.000000pt;}
.x55_c00391{left:250.666667pt;}
.x77_c00391{left:252.960000pt;}
.x1c_c00391{left:255.626667pt;}
.xa3_c00391{left:256.960000pt;}
.xad_c00391{left:258.293333pt;}
.xc4_c00391{left:261.333333pt;}
.x40_c00391{left:262.293333pt;}
.xf7_c00391{left:264.373333pt;}
.x6d_c00391{left:265.706667pt;}
.x34_c00391{left:266.666667pt;}
.x89_c00391{left:269.333333pt;}
.xe8_c00391{left:272.000000pt;}
.xa7_c00391{left:274.293333pt;}
.x56_c00391{left:275.626667pt;}
.xbb_c00391{left:276.960000pt;}
.x6_c00391{left:278.293333pt;}
.x14_c00391{left:280.000000pt;}
.xec_c00391{left:281.706667pt;}
.x64_c00391{left:282.666667pt;}
.x4c_c00391{left:284.000000pt;}
.x26_c00391{left:284.960000pt;}
.x78_c00391{left:286.293333pt;}
.x5a_c00391{left:287.626667pt;}
.x15_c00391{left:289.333333pt;}
.xa8_c00391{left:290.666667pt;}
.x29_c00391{left:293.333333pt;}
.x35_c00391{left:294.666667pt;}
.x57_c00391{left:300.000000pt;}
.xc5_c00391{left:301.333333pt;}
.xc0_c00391{left:302.666667pt;}
.x1d_c00391{left:303.626667pt;}
.xa4_c00391{left:306.666667pt;}
.x7_c00391{left:308.000000pt;}
.x27_c00391{left:308.960000pt;}
.x41_c00391{left:310.666667pt;}
.x5b_c00391{left:313.706667pt;}
.xb3_c00391{left:314.666667pt;}
.x65_c00391{left:316.373333pt;}
.x8a_c00391{left:319.040000pt;}
.x42_c00391{left:320.000000pt;}
.x2a_c00391{left:322.293333pt;}
.x82_c00391{left:323.626667pt;}
.xdf_c00391{left:325.333333pt;}
.x8b_c00391{left:326.666667pt;}
.xd8_c00391{left:328.000000pt;}
.x16_c00391{left:328.960000pt;}
.xca_c00391{left:332.373333pt;}
.xcd_c00391{left:334.293333pt;}
.x2b_c00391{left:335.626667pt;}
.x81_c00391{left:337.333333pt;}
.x8_c00391{left:338.666667pt;}
.x66_c00391{left:339.626667pt;}
.xae_c00391{left:341.706667pt;}
.x94_c00391{left:344.000000pt;}
.x6e_c00391{left:348.000000pt;}
.x2_c00391{left:349.333333pt;}
.x5c_c00391{left:350.666667pt;}
.x43_c00391{left:351.626667pt;}
.x17_c00391{left:355.040000pt;}
.x36_c00391{left:356.373333pt;}
.x9b_c00391{left:357.706667pt;}
.xc1_c00391{left:359.240000pt;}
.x1e_c00391{left:362.666667pt;}
.x4d_c00391{left:364.000000pt;}
.xed_c00391{left:367.040000pt;}
.xcb_c00391{left:370.666667pt;}
.x37_c00391{left:372.000000pt;}
.x79_c00391{left:372.960000pt;}
.xf8_c00391{left:376.373333pt;}
.xd9_c00391{left:377.333333pt;}
.x9_c00391{left:378.666667pt;}
.x8c_c00391{left:379.626667pt;}
.xaf_c00391{left:381.333333pt;}
.xc6_c00391{left:382.666667pt;}
.xe0_c00391{left:384.960000pt;}
.x44_c00391{left:386.293333pt;}
.xe9_c00391{left:388.000000pt;}
.x5d_c00391{left:389.706667pt;}
.xee_c00391{left:391.040000pt;}
.x18_c00391{left:393.333333pt;}
.x95_c00391{left:394.666667pt;}
.x5e_c00391{left:399.040000pt;}
.xdb_c00391{left:400.000000pt;}
.x4e_c00391{left:400.960000pt;}
.xa_c00391{left:402.666667pt;}
.xce_c00391{left:404.000000pt;}
.x38_c00391{left:405.906667pt;}
.x45_c00391{left:408.373333pt;}
.xd3_c00391{left:411.040000pt;}
.x67_c00391{left:413.333333pt;}
.x83_c00391{left:416.000000pt;}
.x8d_c00391{left:417.333333pt;}
.xe5_c00391{left:419.626667pt;}
.xbc_c00391{left:423.040000pt;}
.x84_c00391{left:425.333333pt;}
.x9c_c00391{left:426.666667pt;}
.xf2_c00391{left:428.000000pt;}
.x4f_c00391{left:431.626667pt;}
.xef_c00391{left:433.333333pt;}
.xe1_c00391{left:434.666667pt;}
.xcf_c00391{left:439.040000pt;}
.xbd_c00391{left:440.000000pt;}
.x2c_c00391{left:441.333333pt;}
.x68_c00391{left:443.626667pt;}
.x39_c00391{left:445.333333pt;}
.x5f_c00391{left:446.293333pt;}
.x1f_c00391{left:450.666667pt;}
.x6f_c00391{left:452.960000pt;}
.xa5_c00391{left:454.093333pt;}
.xd4_c00391{left:457.333333pt;}
.xfa_c00391{left:458.666667pt;}
.xb_c00391{left:460.960000pt;}
.xc7_c00391{left:463.040000pt;}
.xdc_c00391{left:464.000000pt;}
.x85_c00391{left:464.960000pt;}
.x69_c00391{left:468.960000pt;}
.x60_c00391{left:470.293333pt;}
.xdd_c00391{left:473.333333pt;}
.xc2_c00391{left:476.960000pt;}
.xbe_c00391{left:478.666667pt;}
.xf0_c00391{left:481.333333pt;}
.x7a_c00391{left:482.293333pt;}
.xe6_c00391{left:485.706667pt;}
.x46_c00391{left:489.333333pt;}
.xf3_c00391{left:490.666667pt;}
.x70_c00391{left:491.626667pt;}
.xb4_c00391{left:492.960000pt;}
.xe2_c00391{left:494.666667pt;}
.x3a_c00391{left:496.000000pt;}
.xc_c00391{left:497.333333pt;}
.x47_c00391{left:498.666667pt;}
.x2d_c00391{left:502.293333pt;}
.xb0_c00391{left:504.000000pt;}
.x6a_c00391{left:506.666667pt;}
.x61_c00391{left:509.333333pt;}
.xd0_c00391{left:514.666667pt;}
.x7b_c00391{left:519.040000pt;}
.x9d_c00391{left:520.373333pt;}
.xc8_c00391{left:524.960000pt;}
.x86_c00391{left:528.000000pt;}
.x20_c00391{left:529.333333pt;}
.x6b_c00391{left:533.706667pt;}
.x9e_c00391{left:534.666667pt;}
.xfb_c00391{left:536.000000pt;}
.xd_c00391{left:537.706667pt;}
.x8e_c00391{left:538.666667pt;}
.x48_c00391{left:539.626667pt;}
.xd1_c00391{left:542.666667pt;}
.x7c_c00391{left:544.000000pt;}
.xb5_c00391{left:545.706667pt;}
.xa9_c00391{left:548.000000pt;}
.x96_c00391{left:549.333333pt;}
.x71_c00391{left:552.000000pt;}
.x2e_c00391{left:553.333333pt;}
.xb6_c00391{left:556.000000pt;}
.x6c_c00391{left:557.333333pt;}
.x3b_c00391{left:558.293333pt;}
.xd5_c00391{left:560.000000pt;}
.xfc_c00391{left:561.333333pt;}
.x2f_c00391{left:564.000000pt;}
.xde_c00391{left:566.666667pt;}
.x8f_c00391{left:572.000000pt;}
.xe_c00391{left:574.293333pt;}
.x87_c00391{left:577.333333pt;}
.x21_c00391{left:580.000000pt;}
.xf9_c00391{left:583.040000pt;}
.x90_c00391{left:585.333333pt;}
.x50_c00391{left:587.040000pt;}
.xda_c00391{left:588.000000pt;}
.x7d_c00391{left:589.333333pt;}
.x97_c00391{left:590.293333pt;}
.x30_c00391{left:592.960000pt;}
.x72_c00391{left:594.293333pt;}
.xa6_c00391{left:597.333333pt;}
.xf4_c00391{left:600.373333pt;}
.xf_c00391{left:602.293333pt;}
.xaa_c00391{left:603.626667pt;}
.x9f_c00391{left:605.706667pt;}
.x3c_c00391{left:608.000000pt;}
.xd6_c00391{left:609.333333pt;}
.x51_c00391{left:612.000000pt;}
.xbf_c00391{left:613.333333pt;}
.x98_c00391{left:614.293333pt;}
.x31_c00391{left:616.373333pt;}
.xea_c00391{left:618.093333pt;}
.x3d_c00391{left:620.000000pt;}
.x22_c00391{left:626.666667pt;}
.x49_c00391{left:629.706667pt;}
.x73_c00391{left:633.333333pt;}
.x7e_c00391{left:644.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_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_4df5f4b29a570b8340ee2299.woff2')format("woff");}.ff1_c00392{font-family:ff1_c00392;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00392{transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);}
.m9b_c00392{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m50_c00392{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.maa_c00392{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m83_c00392{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.mb3_c00392{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m58_c00392{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m54_c00392{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.maf_c00392{transform:matrix(0.394555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394555,0.000000,0.000000,0.250000,0,0);}
.ma1_c00392{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m8b_c00392{transform:matrix(0.399923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399923,0.000000,0.000000,0.250000,0,0);}
.m40_c00392{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m3_c00392{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m30_c00392{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m8a_c00392{transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);}
.m37_c00392{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m51_c00392{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m4a_c00392{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m20_c00392{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mb8_c00392{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m38_c00392{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m1c_c00392{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m85_c00392{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m44_c00392{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.ma2_c00392{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m94_c00392{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m53_c00392{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m9c_c00392{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m96_c00392{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.ma6_c00392{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.ma9_c00392{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m17_c00392{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m6a_c00392{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mb9_c00392{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m91_c00392{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m7e_c00392{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.mb_c00392{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m92_c00392{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m25_c00392{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m8d_c00392{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m33_c00392{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.mae_c00392{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m6c_c00392{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m5e_c00392{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m99_c00392{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m5f_c00392{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m57_c00392{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m86_c00392{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m2b_c00392{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m80_c00392{transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);}
.m56_c00392{transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);}
.m7b_c00392{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m81_c00392{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m7a_c00392{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m7c_c00392{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.md_c00392{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m84_c00392{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.mab_c00392{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m9a_c00392{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m70_c00392{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m79_c00392{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.mb5_c00392{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.ma4_c00392{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m75_c00392{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m18_c00392{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m2e_c00392{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m9d_c00392{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m28_c00392{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m76_c00392{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.ma0_c00392{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m71_c00392{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mb2_c00392{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m7d_c00392{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mf_c00392{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.ma8_c00392{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m78_c00392{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m88_c00392{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m6f_c00392{transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);}
.m87_c00392{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m2f_c00392{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);}
.m3c_c00392{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m5c_c00392{transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);}
.m4c_c00392{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m12_c00392{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m5a_c00392{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m7_c00392{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m8e_c00392{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m9e_c00392{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.mac_c00392{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m35_c00392{transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);}
.m3d_c00392{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m46_c00392{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m15_c00392{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m90_c00392{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m64_c00392{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m74_c00392{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m4e_c00392{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.m34_c00392{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m97_c00392{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m3f_c00392{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m22_c00392{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m66_c00392{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m65_c00392{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m16_c00392{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m60_c00392{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m9_c00392{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m5d_c00392{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m10_c00392{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m4_c00392{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m5_c00392{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m73_c00392{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.ma3_c00392{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m19_c00392{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m42_c00392{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m59_c00392{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m31_c00392{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m39_c00392{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m9f_c00392{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m72_c00392{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m14_c00392{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m6e_c00392{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m1d_c00392{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mb7_c00392{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m36_c00392{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m43_c00392{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m3e_c00392{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m2d_c00392{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.me_c00392{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mb0_c00392{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m11_c00392{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m4b_c00392{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m26_c00392{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m45_c00392{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m6_c00392{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m2a_c00392{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m89_c00392{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m63_c00392{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m62_c00392{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.mc_c00392{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m61_c00392{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m4f_c00392{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.ma7_c00392{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m2_c00392{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m3b_c00392{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m95_c00392{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m48_c00392{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m13_c00392{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m3a_c00392{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.m68_c00392{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m1e_c00392{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m77_c00392{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.ma_c00392{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mb4_c00392{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.mb1_c00392{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m4d_c00392{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.m7f_c00392{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m5b_c00392{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m6d_c00392{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m67_c00392{transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);}
.m82_c00392{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);}
.m24_c00392{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.m1_c00392{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m27_c00392{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m21_c00392{transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);}
.m47_c00392{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m2c_c00392{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m1a_c00392{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m49_c00392{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mb6_c00392{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m1b_c00392{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m1f_c00392{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m98_c00392{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.m8c_c00392{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m52_c00392{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m23_c00392{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m29_c00392{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m8_c00392{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m32_c00392{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m55_c00392{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m41_c00392{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m69_c00392{transform:matrix(0.793269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.793269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.793269,0.000000,0.000000,0.250000,0,0);}
.m6b_c00392{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m93_c00392{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m8f_c00392{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.mad_c00392{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.ma5_c00392{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,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;}
.fs3_c00392{font-size:18.720000px;}
.fs1_c00392{font-size:20.400000px;}
.fs5_c00392{font-size:25.500000px;}
.fs2_c00392{font-size:28.920000px;}
.fs4_c00392{font-size:32.340000px;}
.fs0_c00392{font-size:35.700000px;}
.fs6_c00392{font-size:39.120000px;}
.y0_c00392{bottom:0.000000px;}
.yca_c00392{bottom:250.905000px;}
.yc7_c00392{bottom:268.245000px;}
.yc8_c00392{bottom:269.745000px;}
.yc5_c00392{bottom:270.405000px;}
.yc6_c00392{bottom:270.630000px;}
.yc9_c00392{bottom:271.905000px;}
.yc0_c00392{bottom:287.745000px;}
.yc1_c00392{bottom:288.825000px;}
.yc4_c00392{bottom:289.050000px;}
.yc3_c00392{bottom:289.245000px;}
.ybe_c00392{bottom:289.905000px;}
.ybf_c00392{bottom:290.130000px;}
.yc2_c00392{bottom:291.405000px;}
.yba_c00392{bottom:307.680000px;}
.ybd_c00392{bottom:309.630000px;}
.ybb_c00392{bottom:310.470000px;}
.ybc_c00392{bottom:310.905000px;}
.yb7_c00392{bottom:327.405000px;}
.yb8_c00392{bottom:327.825000px;}
.yb9_c00392{bottom:328.245000px;}
.yb5_c00392{bottom:329.325000px;}
.yb4_c00392{bottom:330.405000px;}
.yb6_c00392{bottom:330.630000px;}
.yb2_c00392{bottom:346.905000px;}
.yb1_c00392{bottom:347.745000px;}
.yb3_c00392{bottom:348.825000px;}
.yaf_c00392{bottom:349.470000px;}
.yae_c00392{bottom:349.905000px;}
.yb0_c00392{bottom:350.970000px;}
.yab_c00392{bottom:367.245000px;}
.yac_c00392{bottom:368.130000px;}
.yad_c00392{bottom:369.405000px;}
.ya9_c00392{bottom:386.745000px;}
.ya8_c00392{bottom:388.905000px;}
.yaa_c00392{bottom:389.130000px;}
.ya3_c00392{bottom:406.245000px;}
.ya7_c00392{bottom:407.130000px;}
.ya6_c00392{bottom:407.325000px;}
.ya5_c00392{bottom:407.745000px;}
.ya2_c00392{bottom:407.970000px;}
.ya1_c00392{bottom:408.405000px;}
.ya0_c00392{bottom:408.630000px;}
.ya4_c00392{bottom:409.905000px;}
.y9f_c00392{bottom:427.245000px;}
.y9d_c00392{bottom:427.905000px;}
.y9c_c00392{bottom:428.130000px;}
.y9e_c00392{bottom:429.405000px;}
.y9b_c00392{bottom:445.245000px;}
.y97_c00392{bottom:446.325000px;}
.y99_c00392{bottom:446.745000px;}
.y98_c00392{bottom:447.630000px;}
.y9a_c00392{bottom:448.470000px;}
.y96_c00392{bottom:448.905000px;}
.y95_c00392{bottom:464.745000px;}
.y93_c00392{bottom:466.245000px;}
.y94_c00392{bottom:467.130000px;}
.y92_c00392{bottom:468.405000px;}
.y90_c00392{bottom:485.325000px;}
.y8e_c00392{bottom:485.745000px;}
.y91_c00392{bottom:486.405000px;}
.y8f_c00392{bottom:486.630000px;}
.y8d_c00392{bottom:487.905000px;}
.y8c_c00392{bottom:506.970000px;}
.y8b_c00392{bottom:507.405000px;}
.y89_c00392{bottom:524.745000px;}
.y87_c00392{bottom:526.245000px;}
.y8a_c00392{bottom:526.470000px;}
.y86_c00392{bottom:526.905000px;}
.y85_c00392{bottom:527.130000px;}
.y88_c00392{bottom:528.405000px;}
.y84_c00392{bottom:544.245000px;}
.y82_c00392{bottom:545.745000px;}
.y80_c00392{bottom:546.405000px;}
.y83_c00392{bottom:546.630000px;}
.y81_c00392{bottom:547.905000px;}
.y7e_c00392{bottom:562.905000px;}
.y7c_c00392{bottom:563.745000px;}
.y7b_c00392{bottom:565.905000px;}
.y7f_c00392{bottom:566.130000px;}
.y7d_c00392{bottom:567.405000px;}
.y78_c00392{bottom:583.680000px;}
.y7a_c00392{bottom:584.745000px;}
.y79_c00392{bottom:585.630000px;}
.y77_c00392{bottom:586.905000px;}
.y76_c00392{bottom:604.245000px;}
.y75_c00392{bottom:606.405000px;}
.y74_c00392{bottom:606.630000px;}
.y70_c00392{bottom:624.825000px;}
.y6f_c00392{bottom:625.905000px;}
.y72_c00392{bottom:626.130000px;}
.y71_c00392{bottom:626.970000px;}
.y73_c00392{bottom:627.405000px;}
.y6c_c00392{bottom:643.245000px;}
.y6e_c00392{bottom:644.325000px;}
.y6b_c00392{bottom:645.405000px;}
.y6d_c00392{bottom:645.630000px;}
.y68_c00392{bottom:662.970000px;}
.y67_c00392{bottom:663.825000px;}
.y6a_c00392{bottom:664.245000px;}
.y66_c00392{bottom:664.905000px;}
.y69_c00392{bottom:665.325000px;}
.y65_c00392{bottom:666.405000px;}
.y64_c00392{bottom:683.745000px;}
.y60_c00392{bottom:684.630000px;}
.y62_c00392{bottom:685.470000px;}
.y5f_c00392{bottom:685.905000px;}
.y61_c00392{bottom:686.130000px;}
.y63_c00392{bottom:686.970000px;}
.y5b_c00392{bottom:703.245000px;}
.y5c_c00392{bottom:704.130000px;}
.y5e_c00392{bottom:704.325000px;}
.y5d_c00392{bottom:704.970000px;}
.y5a_c00392{bottom:705.405000px;}
.y58_c00392{bottom:724.905000px;}
.y59_c00392{bottom:725.970000px;}
.y52_c00392{bottom:742.245000px;}
.y54_c00392{bottom:743.745000px;}
.y53_c00392{bottom:744.405000px;}
.y57_c00392{bottom:744.630000px;}
.y56_c00392{bottom:744.825000px;}
.y55_c00392{bottom:745.905000px;}
.y4c_c00392{bottom:761.745000px;}
.y51_c00392{bottom:763.245000px;}
.y4d_c00392{bottom:763.905000px;}
.y4e_c00392{bottom:764.130000px;}
.y50_c00392{bottom:764.970000px;}
.y4f_c00392{bottom:765.405000px;}
.y4a_c00392{bottom:780.405000px;}
.y48_c00392{bottom:782.745000px;}
.y49_c00392{bottom:783.630000px;}
.y46_c00392{bottom:783.825000px;}
.y4b_c00392{bottom:784.470000px;}
.y47_c00392{bottom:784.905000px;}
.y44_c00392{bottom:800.970000px;}
.y45_c00392{bottom:802.245000px;}
.y43_c00392{bottom:803.130000px;}
.y42_c00392{bottom:804.405000px;}
.y40_c00392{bottom:821.745000px;}
.y41_c00392{bottom:822.630000px;}
.y3f_c00392{bottom:823.905000px;}
.y3e_c00392{bottom:842.745000px;}
.y3c_c00392{bottom:843.405000px;}
.y3d_c00392{bottom:844.470000px;}
.y39_c00392{bottom:859.905000px;}
.y37_c00392{bottom:860.745000px;}
.y3b_c00392{bottom:861.825000px;}
.y38_c00392{bottom:862.905000px;}
.y3a_c00392{bottom:863.970000px;}
.y33_c00392{bottom:880.245000px;}
.y36_c00392{bottom:881.745000px;}
.y32_c00392{bottom:882.405000px;}
.y34_c00392{bottom:882.630000px;}
.y31_c00392{bottom:883.470000px;}
.y35_c00392{bottom:883.905000px;}
.y30_c00392{bottom:901.245000px;}
.y2d_c00392{bottom:901.905000px;}
.y2f_c00392{bottom:902.970000px;}
.y2e_c00392{bottom:903.405000px;}
.y2c_c00392{bottom:920.745000px;}
.y28_c00392{bottom:921.405000px;}
.y29_c00392{bottom:921.630000px;}
.y2b_c00392{bottom:921.825000px;}
.y2a_c00392{bottom:922.905000px;}
.y24_c00392{bottom:937.905000px;}
.y25_c00392{bottom:940.245000px;}
.y26_c00392{bottom:941.130000px;}
.y27_c00392{bottom:942.405000px;}
.y1f_c00392{bottom:959.745000px;}
.y22_c00392{bottom:961.470000px;}
.y20_c00392{bottom:961.905000px;}
.y21_c00392{bottom:962.130000px;}
.y23_c00392{bottom:962.970000px;}
.y1b_c00392{bottom:978.825000px;}
.y1e_c00392{bottom:979.245000px;}
.y1d_c00392{bottom:980.325000px;}
.y19_c00392{bottom:981.405000px;}
.y1a_c00392{bottom:981.630000px;}
.y1c_c00392{bottom:982.470000px;}
.y18_c00392{bottom:998.745000px;}
.y16_c00392{bottom:999.825000px;}
.y14_c00392{bottom:1000.905000px;}
.y15_c00392{bottom:1001.130000px;}
.y17_c00392{bottom:1001.970000px;}
.y10_c00392{bottom:1018.245000px;}
.y12_c00392{bottom:1019.325000px;}
.y13_c00392{bottom:1019.970000px;}
.ye_c00392{bottom:1020.405000px;}
.yf_c00392{bottom:1020.630000px;}
.y11_c00392{bottom:1021.470000px;}
.ya_c00392{bottom:1036.905000px;}
.y9_c00392{bottom:1037.325000px;}
.yd_c00392{bottom:1037.745000px;}
.yb_c00392{bottom:1039.245000px;}
.y7_c00392{bottom:1039.905000px;}
.yc_c00392{bottom:1040.130000px;}
.y8_c00392{bottom:1041.405000px;}
.y4_c00392{bottom:1058.745000px;}
.y6_c00392{bottom:1059.405000px;}
.y5_c00392{bottom:1059.630000px;}
.y3_c00392{bottom:1060.905000px;}
.y1_c00392{bottom:1097.745000px;}
.y2_c00392{bottom:1099.050000px;}
.h4_c00392{height:23.025234px;}
.h2_c00392{height:25.091602px;}
.h6_c00392{height:31.364502px;}
.h3_c00392{height:35.571035px;}
.h5_c00392{height:39.777568px;}
.h1_c00392{height:43.910303px;}
.h7_c00392{height:48.116836px;}
.h0_c00392{height:1335.000000px;}
.w0_c00392{width:880.500000px;}
.x0_c00392{left:0.000000px;}
.x49_c00392{left:150.420000px;}
.x3_c00392{left:151.500000px;}
.x70_c00392{left:168.420000px;}
.xe2_c00392{left:172.920000px;}
.x4_c00392{left:177.420000px;}
.x8e_c00392{left:178.500000px;}
.x85_c00392{left:180.000000px;}
.x3c_c00392{left:181.500000px;}
.xa6_c00392{left:183.000000px;}
.x110_c00392{left:184.080000px;}
.x114_c00392{left:185.355000px;}
.xba_c00392{left:186.420000px;}
.xcd_c00392{left:187.920000px;}
.xd7_c00392{left:190.500000px;}
.x11_c00392{left:192.000000px;}
.x71_c00392{left:193.920000px;}
.xae_c00392{left:195.000000px;}
.x1e_c00392{left:197.580000px;}
.x52_c00392{left:199.500000px;}
.xe3_c00392{left:201.000000px;}
.x2c_c00392{left:205.920000px;}
.xc1_c00392{left:207.000000px;}
.x11a_c00392{left:208.500000px;}
.x7b_c00392{left:210.000000px;}
.x98_c00392{left:211.080000px;}
.xaf_c00392{left:213.420000px;}
.x105_c00392{left:214.500000px;}
.x8f_c00392{left:217.500000px;}
.x3d_c00392{left:218.580000px;}
.x9d_c00392{left:222.420000px;}
.x5f_c00392{left:223.500000px;}
.x12_c00392{left:224.580000px;}
.x10b_c00392{left:226.500000px;}
.x4a_c00392{left:229.920000px;}
.x115_c00392{left:231.000000px;}
.x90_c00392{left:232.500000px;}
.xe4_c00392{left:234.000000px;}
.x3e_c00392{left:237.420000px;}
.xb0_c00392{left:238.920000px;}
.xa7_c00392{left:240.420000px;}
.x53_c00392{left:241.500000px;}
.xbb_c00392{left:243.000000px;}
.xd8_c00392{left:245.580000px;}
.x2d_c00392{left:249.000000px;}
.xce_c00392{left:250.500000px;}
.x1f_c00392{left:252.000000px;}
.xc7_c00392{left:256.500000px;}
.x3f_c00392{left:262.500000px;}
.x99_c00392{left:264.420000px;}
.x2e_c00392{left:265.500000px;}
.x7c_c00392{left:268.500000px;}
.x68_c00392{left:271.920000px;}
.x86_c00392{left:277.080000px;}
.x5_c00392{left:279.000000px;}
.x2f_c00392{left:280.500000px;}
.xf5_c00392{left:282.420000px;}
.xb1_c00392{left:283.500000px;}
.x13_c00392{left:285.000000px;}
.x9e_c00392{left:286.500000px;}
.x20_c00392{left:288.420000px;}
.x9a_c00392{left:289.500000px;}
.x10c_c00392{left:291.420000px;}
.x108_c00392{left:292.920000px;}
.xd9_c00392{left:295.080000px;}
.x91_c00392{left:297.000000px;}
.x69_c00392{left:298.080000px;}
.x40_c00392{left:300.000000px;}
.xb6_c00392{left:301.080000px;}
.x72_c00392{left:303.000000px;}
.x9f_c00392{left:304.920000px;}
.xfd_c00392{left:307.500000px;}
.xf6_c00392{left:309.420000px;}
.xd2_c00392{left:312.000000px;}
.x102_c00392{left:315.000000px;}
.x73_c00392{left:316.500000px;}
.xde_c00392{left:318.000000px;}
.x14_c00392{left:319.080000px;}
.x10d_c00392{left:321.420000px;}
.xec_c00392{left:322.500000px;}
.x30_c00392{left:324.000000px;}
.x21_c00392{left:325.920000px;}
.xa8_c00392{left:328.500000px;}
.x92_c00392{left:330.000000px;}
.x60_c00392{left:331.500000px;}
.x6a_c00392{left:332.580000px;}
.xfe_c00392{left:334.920000px;}
.x6_c00392{left:337.920000px;}
.x54_c00392{left:339.000000px;}
.x116_c00392{left:340.500000px;}
.xc8_c00392{left:342.000000px;}
.xcf_c00392{left:343.920000px;}
.xa9_c00392{left:348.000000px;}
.xb2_c00392{left:349.500000px;}
.x6b_c00392{left:351.420000px;}
.x74_c00392{left:352.500000px;}
.x4b_c00392{left:354.420000px;}
.x106_c00392{left:358.920000px;}
.xbc_c00392{left:361.500000px;}
.x93_c00392{left:362.580000px;}
.x41_c00392{left:364.500000px;}
.x75_c00392{left:366.000000px;}
.x7d_c00392{left:367.920000px;}
.x31_c00392{left:369.000000px;}
.x55_c00392{left:370.500000px;}
.x7_c00392{left:373.080000px;}
.x15_c00392{left:375.000000px;}
.xaa_c00392{left:376.920000px;}
.x22_c00392{left:378.000000px;}
.xdf_c00392{left:379.920000px;}
.x61_c00392{left:382.500000px;}
.xc9_c00392{left:384.000000px;}
.xd3_c00392{left:385.500000px;}
.x2_c00392{left:388.500000px;}
.x10e_c00392{left:390.420000px;}
.x87_c00392{left:391.920000px;}
.xe5_c00392{left:393.420000px;}
.xfa_c00392{left:394.500000px;}
.x4c_c00392{left:396.000000px;}
.xe9_c00392{left:397.920000px;}
.xc2_c00392{left:399.000000px;}
.x7e_c00392{left:401.580000px;}
.xf2_c00392{left:403.500000px;}
.x32_c00392{left:404.580000px;}
.xed_c00392{left:407.580000px;}
.x109_c00392{left:409.500000px;}
.x42_c00392{left:412.920000px;}
.x8_c00392{left:415.080000px;}
.x6c_c00392{left:417.420000px;}
.x7f_c00392{left:418.500000px;}
.x16_c00392{left:419.580000px;}
.x23_c00392{left:421.500000px;}
.xab_c00392{left:423.000000px;}
.x76_c00392{left:424.500000px;}
.x33_c00392{left:426.420000px;}
.xfb_c00392{left:429.000000px;}
.xe6_c00392{left:430.080000px;}
.x62_c00392{left:433.920000px;}
.xca_c00392{left:435.420000px;}
.x43_c00392{left:436.920000px;}
.xf7_c00392{left:438.420000px;}
.x56_c00392{left:439.920000px;}
.xa0_c00392{left:441.420000px;}
.x80_c00392{left:445.500000px;}
.x6d_c00392{left:447.420000px;}
.x17_c00392{left:450.000000px;}
.xda_c00392{left:451.500000px;}
.x34_c00392{left:454.080000px;}
.xee_c00392{left:456.000000px;}
.x94_c00392{left:457.920000px;}
.x24_c00392{left:459.000000px;}
.x11b_c00392{left:460.500000px;}
.x88_c00392{left:461.580000px;}
.xcb_c00392{left:463.920000px;}
.x57_c00392{left:465.420000px;}
.xb7_c00392{left:466.500000px;}
.x4d_c00392{left:468.000000px;}
.x9_c00392{left:474.000000px;}
.xa1_c00392{left:475.500000px;}
.x44_c00392{left:476.580000px;}
.x25_c00392{left:480.420000px;}
.x63_c00392{left:481.500000px;}
.xff_c00392{left:484.500000px;}
.x117_c00392{left:486.420000px;}
.x95_c00392{left:487.500000px;}
.x35_c00392{left:491.580000px;}
.x18_c00392{left:493.920000px;}
.xdb_c00392{left:495.000000px;}
.x81_c00392{left:496.500000px;}
.x77_c00392{left:499.920000px;}
.xcc_c00392{left:502.500000px;}
.xef_c00392{left:503.580000px;}
.x26_c00392{left:505.500000px;}
.xc3_c00392{left:507.000000px;}
.x89_c00392{left:508.500000px;}
.xa_c00392{left:510.420000px;}
.xd4_c00392{left:511.500000px;}
.x36_c00392{left:512.580000px;}
.x100_c00392{left:515.580000px;}
.x107_c00392{left:517.500000px;}
.x58_c00392{left:519.000000px;}
.x45_c00392{left:520.500000px;}
.x19_c00392{left:522.000000px;}
.xac_c00392{left:523.500000px;}
.x78_c00392{left:525.420000px;}
.xa2_c00392{left:526.500000px;}
.xd0_c00392{left:528.000000px;}
.x96_c00392{left:529.080000px;}
.x111_c00392{left:530.580000px;}
.xbd_c00392{left:533.580000px;}
.xb8_c00392{left:535.080000px;}
.x1a_c00392{left:538.500000px;}
.xb_c00392{left:540.420000px;}
.x82_c00392{left:541.500000px;}
.x64_c00392{left:542.580000px;}
.x8a_c00392{left:544.920000px;}
.x27_c00392{left:546.000000px;}
.xf8_c00392{left:547.500000px;}
.xf0_c00392{left:549.420000px;}
.xdc_c00392{left:550.500000px;}
.x118_c00392{left:552.000000px;}
.xf3_c00392{left:555.000000px;}
.x37_c00392{left:558.000000px;}
.x103_c00392{left:559.080000px;}
.xc4_c00392{left:560.580000px;}
.x46_c00392{left:562.500000px;}
.x11c_c00392{left:564.000000px;}
.x4e_c00392{left:567.000000px;}
.xc_c00392{left:568.920000px;}
.x11e_c00392{left:570.000000px;}
.x59_c00392{left:571.080000px;}
.xd5_c00392{left:573.000000px;}
.x65_c00392{left:574.500000px;}
.x79_c00392{left:576.000000px;}
.x8b_c00392{left:577.920000px;}
.xb3_c00392{left:579.000000px;}
.xe7_c00392{left:580.080000px;}
.xbe_c00392{left:582.000000px;}
.xfc_c00392{left:585.420000px;}
.x1b_c00392{left:586.500000px;}
.xe0_c00392{left:588.420000px;}
.x5a_c00392{left:589.920000px;}
.x83_c00392{left:591.000000px;}
.x38_c00392{left:592.080000px;}
.xad_c00392{left:595.500000px;}
.xa3_c00392{left:597.000000px;}
.x10f_c00392{left:598.920000px;}
.xbf_c00392{left:600.000000px;}
.x104_c00392{left:601.500000px;}
.x28_c00392{left:603.000000px;}
.x4f_c00392{left:604.500000px;}
.x119_c00392{left:606.000000px;}
.x47_c00392{left:607.500000px;}
.x66_c00392{left:610.920000px;}
.x39_c00392{left:612.420000px;}
.x11d_c00392{left:613.500000px;}
.xf9_c00392{left:615.000000px;}
.x5b_c00392{left:616.500000px;}
.xd_c00392{left:617.580000px;}
.x50_c00392{left:619.920000px;}
.x6e_c00392{left:621.000000px;}
.x7a_c00392{left:622.500000px;}
.x112_c00392{left:624.420000px;}
.xe8_c00392{left:628.500000px;}
.xea_c00392{left:631.500000px;}
.x48_c00392{left:633.000000px;}
.xd1_c00392{left:634.500000px;}
.x101_c00392{left:636.420000px;}
.xe_c00392{left:637.920000px;}
.xdd_c00392{left:640.500000px;}
.x3a_c00392{left:642.000000px;}
.x29_c00392{left:643.500000px;}
.x84_c00392{left:646.920000px;}
.xa4_c00392{left:649.080000px;}
.x1c_c00392{left:651.000000px;}
.x10a_c00392{left:652.500000px;}
.x5c_c00392{left:654.000000px;}
.x11f_c00392{left:655.920000px;}
.xf4_c00392{left:657.000000px;}
.xc5_c00392{left:658.500000px;}
.x8c_c00392{left:660.000000px;}
.x113_c00392{left:661.080000px;}
.x9b_c00392{left:663.000000px;}
.x2a_c00392{left:664.920000px;}
.xb4_c00392{left:666.420000px;}
.xf_c00392{left:667.920000px;}
.x3b_c00392{left:669.000000px;}
.x5d_c00392{left:670.080000px;}
.x97_c00392{left:672.000000px;}
.x6f_c00392{left:673.500000px;}
.x9c_c00392{left:675.420000px;}
.x1d_c00392{left:678.420000px;}
.xc0_c00392{left:684.000000px;}
.xe1_c00392{left:687.000000px;}
.x5e_c00392{left:688.080000px;}
.xeb_c00392{left:690.000000px;}
.x2b_c00392{left:691.080000px;}
.xa5_c00392{left:694.920000px;}
.x67_c00392{left:696.000000px;}
.x10_c00392{left:700.080000px;}
.xb9_c00392{left:702.000000px;}
.x1_c00392{left:703.500000px;}
.x51_c00392{left:705.420000px;}
.xd6_c00392{left:706.500000px;}
.xf1_c00392{left:709.500000px;}
.x8d_c00392{left:715.080000px;}
.xc6_c00392{left:717.000000px;}
.xb5_c00392{left:720.000000px;}
@media print{
.v0_c00392{vertical-align:0.000000pt;}
.ls0_c00392{letter-spacing:0.000000pt;}
.ws0_c00392{word-spacing:0.000000pt;}
.fs3_c00392{font-size:16.640000pt;}
.fs1_c00392{font-size:18.133333pt;}
.fs5_c00392{font-size:22.666667pt;}
.fs2_c00392{font-size:25.706667pt;}
.fs4_c00392{font-size:28.746667pt;}
.fs0_c00392{font-size:31.733333pt;}
.fs6_c00392{font-size:34.773333pt;}
.y0_c00392{bottom:0.000000pt;}
.yca_c00392{bottom:223.026667pt;}
.yc7_c00392{bottom:238.440000pt;}
.yc8_c00392{bottom:239.773333pt;}
.yc5_c00392{bottom:240.360000pt;}
.yc6_c00392{bottom:240.560000pt;}
.yc9_c00392{bottom:241.693333pt;}
.yc0_c00392{bottom:255.773333pt;}
.yc1_c00392{bottom:256.733333pt;}
.yc4_c00392{bottom:256.933333pt;}
.yc3_c00392{bottom:257.106667pt;}
.ybe_c00392{bottom:257.693333pt;}
.ybf_c00392{bottom:257.893333pt;}
.yc2_c00392{bottom:259.026667pt;}
.yba_c00392{bottom:273.493333pt;}
.ybd_c00392{bottom:275.226667pt;}
.ybb_c00392{bottom:275.973333pt;}
.ybc_c00392{bottom:276.360000pt;}
.yb7_c00392{bottom:291.026667pt;}
.yb8_c00392{bottom:291.400000pt;}
.yb9_c00392{bottom:291.773333pt;}
.yb5_c00392{bottom:292.733333pt;}
.yb4_c00392{bottom:293.693333pt;}
.yb6_c00392{bottom:293.893333pt;}
.yb2_c00392{bottom:308.360000pt;}
.yb1_c00392{bottom:309.106667pt;}
.yb3_c00392{bottom:310.066667pt;}
.yaf_c00392{bottom:310.640000pt;}
.yae_c00392{bottom:311.026667pt;}
.yb0_c00392{bottom:311.973333pt;}
.yab_c00392{bottom:326.440000pt;}
.yac_c00392{bottom:327.226667pt;}
.yad_c00392{bottom:328.360000pt;}
.ya9_c00392{bottom:343.773333pt;}
.ya8_c00392{bottom:345.693333pt;}
.yaa_c00392{bottom:345.893333pt;}
.ya3_c00392{bottom:361.106667pt;}
.ya7_c00392{bottom:361.893333pt;}
.ya6_c00392{bottom:362.066667pt;}
.ya5_c00392{bottom:362.440000pt;}
.ya2_c00392{bottom:362.640000pt;}
.ya1_c00392{bottom:363.026667pt;}
.ya0_c00392{bottom:363.226667pt;}
.ya4_c00392{bottom:364.360000pt;}
.y9f_c00392{bottom:379.773333pt;}
.y9d_c00392{bottom:380.360000pt;}
.y9c_c00392{bottom:380.560000pt;}
.y9e_c00392{bottom:381.693333pt;}
.y9b_c00392{bottom:395.773333pt;}
.y97_c00392{bottom:396.733333pt;}
.y99_c00392{bottom:397.106667pt;}
.y98_c00392{bottom:397.893333pt;}
.y9a_c00392{bottom:398.640000pt;}
.y96_c00392{bottom:399.026667pt;}
.y95_c00392{bottom:413.106667pt;}
.y93_c00392{bottom:414.440000pt;}
.y94_c00392{bottom:415.226667pt;}
.y92_c00392{bottom:416.360000pt;}
.y90_c00392{bottom:431.400000pt;}
.y8e_c00392{bottom:431.773333pt;}
.y91_c00392{bottom:432.360000pt;}
.y8f_c00392{bottom:432.560000pt;}
.y8d_c00392{bottom:433.693333pt;}
.y8c_c00392{bottom:450.640000pt;}
.y8b_c00392{bottom:451.026667pt;}
.y89_c00392{bottom:466.440000pt;}
.y87_c00392{bottom:467.773333pt;}
.y8a_c00392{bottom:467.973333pt;}
.y86_c00392{bottom:468.360000pt;}
.y85_c00392{bottom:468.560000pt;}
.y88_c00392{bottom:469.693333pt;}
.y84_c00392{bottom:483.773333pt;}
.y82_c00392{bottom:485.106667pt;}
.y80_c00392{bottom:485.693333pt;}
.y83_c00392{bottom:485.893333pt;}
.y81_c00392{bottom:487.026667pt;}
.y7e_c00392{bottom:500.360000pt;}
.y7c_c00392{bottom:501.106667pt;}
.y7b_c00392{bottom:503.026667pt;}
.y7f_c00392{bottom:503.226667pt;}
.y7d_c00392{bottom:504.360000pt;}
.y78_c00392{bottom:518.826667pt;}
.y7a_c00392{bottom:519.773333pt;}
.y79_c00392{bottom:520.560000pt;}
.y77_c00392{bottom:521.693333pt;}
.y76_c00392{bottom:537.106667pt;}
.y75_c00392{bottom:539.026667pt;}
.y74_c00392{bottom:539.226667pt;}
.y70_c00392{bottom:555.400000pt;}
.y6f_c00392{bottom:556.360000pt;}
.y72_c00392{bottom:556.560000pt;}
.y71_c00392{bottom:557.306667pt;}
.y73_c00392{bottom:557.693333pt;}
.y6c_c00392{bottom:571.773333pt;}
.y6e_c00392{bottom:572.733333pt;}
.y6b_c00392{bottom:573.693333pt;}
.y6d_c00392{bottom:573.893333pt;}
.y68_c00392{bottom:589.306667pt;}
.y67_c00392{bottom:590.066667pt;}
.y6a_c00392{bottom:590.440000pt;}
.y66_c00392{bottom:591.026667pt;}
.y69_c00392{bottom:591.400000pt;}
.y65_c00392{bottom:592.360000pt;}
.y64_c00392{bottom:607.773333pt;}
.y60_c00392{bottom:608.560000pt;}
.y62_c00392{bottom:609.306667pt;}
.y5f_c00392{bottom:609.693333pt;}
.y61_c00392{bottom:609.893333pt;}
.y63_c00392{bottom:610.640000pt;}
.y5b_c00392{bottom:625.106667pt;}
.y5c_c00392{bottom:625.893333pt;}
.y5e_c00392{bottom:626.066667pt;}
.y5d_c00392{bottom:626.640000pt;}
.y5a_c00392{bottom:627.026667pt;}
.y58_c00392{bottom:644.360000pt;}
.y59_c00392{bottom:645.306667pt;}
.y52_c00392{bottom:659.773333pt;}
.y54_c00392{bottom:661.106667pt;}
.y53_c00392{bottom:661.693333pt;}
.y57_c00392{bottom:661.893333pt;}
.y56_c00392{bottom:662.066667pt;}
.y55_c00392{bottom:663.026667pt;}
.y4c_c00392{bottom:677.106667pt;}
.y51_c00392{bottom:678.440000pt;}
.y4d_c00392{bottom:679.026667pt;}
.y4e_c00392{bottom:679.226667pt;}
.y50_c00392{bottom:679.973333pt;}
.y4f_c00392{bottom:680.360000pt;}
.y4a_c00392{bottom:693.693333pt;}
.y48_c00392{bottom:695.773333pt;}
.y49_c00392{bottom:696.560000pt;}
.y46_c00392{bottom:696.733333pt;}
.y4b_c00392{bottom:697.306667pt;}
.y47_c00392{bottom:697.693333pt;}
.y44_c00392{bottom:711.973333pt;}
.y45_c00392{bottom:713.106667pt;}
.y43_c00392{bottom:713.893333pt;}
.y42_c00392{bottom:715.026667pt;}
.y40_c00392{bottom:730.440000pt;}
.y41_c00392{bottom:731.226667pt;}
.y3f_c00392{bottom:732.360000pt;}
.y3e_c00392{bottom:749.106667pt;}
.y3c_c00392{bottom:749.693333pt;}
.y3d_c00392{bottom:750.640000pt;}
.y39_c00392{bottom:764.360000pt;}
.y37_c00392{bottom:765.106667pt;}
.y3b_c00392{bottom:766.066667pt;}
.y38_c00392{bottom:767.026667pt;}
.y3a_c00392{bottom:767.973333pt;}
.y33_c00392{bottom:782.440000pt;}
.y36_c00392{bottom:783.773333pt;}
.y32_c00392{bottom:784.360000pt;}
.y34_c00392{bottom:784.560000pt;}
.y31_c00392{bottom:785.306667pt;}
.y35_c00392{bottom:785.693333pt;}
.y30_c00392{bottom:801.106667pt;}
.y2d_c00392{bottom:801.693333pt;}
.y2f_c00392{bottom:802.640000pt;}
.y2e_c00392{bottom:803.026667pt;}
.y2c_c00392{bottom:818.440000pt;}
.y28_c00392{bottom:819.026667pt;}
.y29_c00392{bottom:819.226667pt;}
.y2b_c00392{bottom:819.400000pt;}
.y2a_c00392{bottom:820.360000pt;}
.y24_c00392{bottom:833.693333pt;}
.y25_c00392{bottom:835.773333pt;}
.y26_c00392{bottom:836.560000pt;}
.y27_c00392{bottom:837.693333pt;}
.y1f_c00392{bottom:853.106667pt;}
.y22_c00392{bottom:854.640000pt;}
.y20_c00392{bottom:855.026667pt;}
.y21_c00392{bottom:855.226667pt;}
.y23_c00392{bottom:855.973333pt;}
.y1b_c00392{bottom:870.066667pt;}
.y1e_c00392{bottom:870.440000pt;}
.y1d_c00392{bottom:871.400000pt;}
.y19_c00392{bottom:872.360000pt;}
.y1a_c00392{bottom:872.560000pt;}
.y1c_c00392{bottom:873.306667pt;}
.y18_c00392{bottom:887.773333pt;}
.y16_c00392{bottom:888.733333pt;}
.y14_c00392{bottom:889.693333pt;}
.y15_c00392{bottom:889.893333pt;}
.y17_c00392{bottom:890.640000pt;}
.y10_c00392{bottom:905.106667pt;}
.y12_c00392{bottom:906.066667pt;}
.y13_c00392{bottom:906.640000pt;}
.ye_c00392{bottom:907.026667pt;}
.yf_c00392{bottom:907.226667pt;}
.y11_c00392{bottom:907.973333pt;}
.ya_c00392{bottom:921.693333pt;}
.y9_c00392{bottom:922.066667pt;}
.yd_c00392{bottom:922.440000pt;}
.yb_c00392{bottom:923.773333pt;}
.y7_c00392{bottom:924.360000pt;}
.yc_c00392{bottom:924.560000pt;}
.y8_c00392{bottom:925.693333pt;}
.y4_c00392{bottom:941.106667pt;}
.y6_c00392{bottom:941.693333pt;}
.y5_c00392{bottom:941.893333pt;}
.y3_c00392{bottom:943.026667pt;}
.y1_c00392{bottom:975.773333pt;}
.y2_c00392{bottom:976.933333pt;}
.h4_c00392{height:20.466875pt;}
.h2_c00392{height:22.303646pt;}
.h6_c00392{height:27.879557pt;}
.h3_c00392{height:31.618698pt;}
.h5_c00392{height:35.357839pt;}
.h1_c00392{height:39.031380pt;}
.h7_c00392{height:42.770521pt;}
.h0_c00392{height:1186.666667pt;}
.w0_c00392{width:782.666667pt;}
.x0_c00392{left:0.000000pt;}
.x49_c00392{left:133.706667pt;}
.x3_c00392{left:134.666667pt;}
.x70_c00392{left:149.706667pt;}
.xe2_c00392{left:153.706667pt;}
.x4_c00392{left:157.706667pt;}
.x8e_c00392{left:158.666667pt;}
.x85_c00392{left:160.000000pt;}
.x3c_c00392{left:161.333333pt;}
.xa6_c00392{left:162.666667pt;}
.x110_c00392{left:163.626667pt;}
.x114_c00392{left:164.760000pt;}
.xba_c00392{left:165.706667pt;}
.xcd_c00392{left:167.040000pt;}
.xd7_c00392{left:169.333333pt;}
.x11_c00392{left:170.666667pt;}
.x71_c00392{left:172.373333pt;}
.xae_c00392{left:173.333333pt;}
.x1e_c00392{left:175.626667pt;}
.x52_c00392{left:177.333333pt;}
.xe3_c00392{left:178.666667pt;}
.x2c_c00392{left:183.040000pt;}
.xc1_c00392{left:184.000000pt;}
.x11a_c00392{left:185.333333pt;}
.x7b_c00392{left:186.666667pt;}
.x98_c00392{left:187.626667pt;}
.xaf_c00392{left:189.706667pt;}
.x105_c00392{left:190.666667pt;}
.x8f_c00392{left:193.333333pt;}
.x3d_c00392{left:194.293333pt;}
.x9d_c00392{left:197.706667pt;}
.x5f_c00392{left:198.666667pt;}
.x12_c00392{left:199.626667pt;}
.x10b_c00392{left:201.333333pt;}
.x4a_c00392{left:204.373333pt;}
.x115_c00392{left:205.333333pt;}
.x90_c00392{left:206.666667pt;}
.xe4_c00392{left:208.000000pt;}
.x3e_c00392{left:211.040000pt;}
.xb0_c00392{left:212.373333pt;}
.xa7_c00392{left:213.706667pt;}
.x53_c00392{left:214.666667pt;}
.xbb_c00392{left:216.000000pt;}
.xd8_c00392{left:218.293333pt;}
.x2d_c00392{left:221.333333pt;}
.xce_c00392{left:222.666667pt;}
.x1f_c00392{left:224.000000pt;}
.xc7_c00392{left:228.000000pt;}
.x3f_c00392{left:233.333333pt;}
.x99_c00392{left:235.040000pt;}
.x2e_c00392{left:236.000000pt;}
.x7c_c00392{left:238.666667pt;}
.x68_c00392{left:241.706667pt;}
.x86_c00392{left:246.293333pt;}
.x5_c00392{left:248.000000pt;}
.x2f_c00392{left:249.333333pt;}
.xf5_c00392{left:251.040000pt;}
.xb1_c00392{left:252.000000pt;}
.x13_c00392{left:253.333333pt;}
.x9e_c00392{left:254.666667pt;}
.x20_c00392{left:256.373333pt;}
.x9a_c00392{left:257.333333pt;}
.x10c_c00392{left:259.040000pt;}
.x108_c00392{left:260.373333pt;}
.xd9_c00392{left:262.293333pt;}
.x91_c00392{left:264.000000pt;}
.x69_c00392{left:264.960000pt;}
.x40_c00392{left:266.666667pt;}
.xb6_c00392{left:267.626667pt;}
.x72_c00392{left:269.333333pt;}
.x9f_c00392{left:271.040000pt;}
.xfd_c00392{left:273.333333pt;}
.xf6_c00392{left:275.040000pt;}
.xd2_c00392{left:277.333333pt;}
.x102_c00392{left:280.000000pt;}
.x73_c00392{left:281.333333pt;}
.xde_c00392{left:282.666667pt;}
.x14_c00392{left:283.626667pt;}
.x10d_c00392{left:285.706667pt;}
.xec_c00392{left:286.666667pt;}
.x30_c00392{left:288.000000pt;}
.x21_c00392{left:289.706667pt;}
.xa8_c00392{left:292.000000pt;}
.x92_c00392{left:293.333333pt;}
.x60_c00392{left:294.666667pt;}
.x6a_c00392{left:295.626667pt;}
.xfe_c00392{left:297.706667pt;}
.x6_c00392{left:300.373333pt;}
.x54_c00392{left:301.333333pt;}
.x116_c00392{left:302.666667pt;}
.xc8_c00392{left:304.000000pt;}
.xcf_c00392{left:305.706667pt;}
.xa9_c00392{left:309.333333pt;}
.xb2_c00392{left:310.666667pt;}
.x6b_c00392{left:312.373333pt;}
.x74_c00392{left:313.333333pt;}
.x4b_c00392{left:315.040000pt;}
.x106_c00392{left:319.040000pt;}
.xbc_c00392{left:321.333333pt;}
.x93_c00392{left:322.293333pt;}
.x41_c00392{left:324.000000pt;}
.x75_c00392{left:325.333333pt;}
.x7d_c00392{left:327.040000pt;}
.x31_c00392{left:328.000000pt;}
.x55_c00392{left:329.333333pt;}
.x7_c00392{left:331.626667pt;}
.x15_c00392{left:333.333333pt;}
.xaa_c00392{left:335.040000pt;}
.x22_c00392{left:336.000000pt;}
.xdf_c00392{left:337.706667pt;}
.x61_c00392{left:340.000000pt;}
.xc9_c00392{left:341.333333pt;}
.xd3_c00392{left:342.666667pt;}
.x2_c00392{left:345.333333pt;}
.x10e_c00392{left:347.040000pt;}
.x87_c00392{left:348.373333pt;}
.xe5_c00392{left:349.706667pt;}
.xfa_c00392{left:350.666667pt;}
.x4c_c00392{left:352.000000pt;}
.xe9_c00392{left:353.706667pt;}
.xc2_c00392{left:354.666667pt;}
.x7e_c00392{left:356.960000pt;}
.xf2_c00392{left:358.666667pt;}
.x32_c00392{left:359.626667pt;}
.xed_c00392{left:362.293333pt;}
.x109_c00392{left:364.000000pt;}
.x42_c00392{left:367.040000pt;}
.x8_c00392{left:368.960000pt;}
.x6c_c00392{left:371.040000pt;}
.x7f_c00392{left:372.000000pt;}
.x16_c00392{left:372.960000pt;}
.x23_c00392{left:374.666667pt;}
.xab_c00392{left:376.000000pt;}
.x76_c00392{left:377.333333pt;}
.x33_c00392{left:379.040000pt;}
.xfb_c00392{left:381.333333pt;}
.xe6_c00392{left:382.293333pt;}
.x62_c00392{left:385.706667pt;}
.xca_c00392{left:387.040000pt;}
.x43_c00392{left:388.373333pt;}
.xf7_c00392{left:389.706667pt;}
.x56_c00392{left:391.040000pt;}
.xa0_c00392{left:392.373333pt;}
.x80_c00392{left:396.000000pt;}
.x6d_c00392{left:397.706667pt;}
.x17_c00392{left:400.000000pt;}
.xda_c00392{left:401.333333pt;}
.x34_c00392{left:403.626667pt;}
.xee_c00392{left:405.333333pt;}
.x94_c00392{left:407.040000pt;}
.x24_c00392{left:408.000000pt;}
.x11b_c00392{left:409.333333pt;}
.x88_c00392{left:410.293333pt;}
.xcb_c00392{left:412.373333pt;}
.x57_c00392{left:413.706667pt;}
.xb7_c00392{left:414.666667pt;}
.x4d_c00392{left:416.000000pt;}
.x9_c00392{left:421.333333pt;}
.xa1_c00392{left:422.666667pt;}
.x44_c00392{left:423.626667pt;}
.x25_c00392{left:427.040000pt;}
.x63_c00392{left:428.000000pt;}
.xff_c00392{left:430.666667pt;}
.x117_c00392{left:432.373333pt;}
.x95_c00392{left:433.333333pt;}
.x35_c00392{left:436.960000pt;}
.x18_c00392{left:439.040000pt;}
.xdb_c00392{left:440.000000pt;}
.x81_c00392{left:441.333333pt;}
.x77_c00392{left:444.373333pt;}
.xcc_c00392{left:446.666667pt;}
.xef_c00392{left:447.626667pt;}
.x26_c00392{left:449.333333pt;}
.xc3_c00392{left:450.666667pt;}
.x89_c00392{left:452.000000pt;}
.xa_c00392{left:453.706667pt;}
.xd4_c00392{left:454.666667pt;}
.x36_c00392{left:455.626667pt;}
.x100_c00392{left:458.293333pt;}
.x107_c00392{left:460.000000pt;}
.x58_c00392{left:461.333333pt;}
.x45_c00392{left:462.666667pt;}
.x19_c00392{left:464.000000pt;}
.xac_c00392{left:465.333333pt;}
.x78_c00392{left:467.040000pt;}
.xa2_c00392{left:468.000000pt;}
.xd0_c00392{left:469.333333pt;}
.x96_c00392{left:470.293333pt;}
.x111_c00392{left:471.626667pt;}
.xbd_c00392{left:474.293333pt;}
.xb8_c00392{left:475.626667pt;}
.x1a_c00392{left:478.666667pt;}
.xb_c00392{left:480.373333pt;}
.x82_c00392{left:481.333333pt;}
.x64_c00392{left:482.293333pt;}
.x8a_c00392{left:484.373333pt;}
.x27_c00392{left:485.333333pt;}
.xf8_c00392{left:486.666667pt;}
.xf0_c00392{left:488.373333pt;}
.xdc_c00392{left:489.333333pt;}
.x118_c00392{left:490.666667pt;}
.xf3_c00392{left:493.333333pt;}
.x37_c00392{left:496.000000pt;}
.x103_c00392{left:496.960000pt;}
.xc4_c00392{left:498.293333pt;}
.x46_c00392{left:500.000000pt;}
.x11c_c00392{left:501.333333pt;}
.x4e_c00392{left:504.000000pt;}
.xc_c00392{left:505.706667pt;}
.x11e_c00392{left:506.666667pt;}
.x59_c00392{left:507.626667pt;}
.xd5_c00392{left:509.333333pt;}
.x65_c00392{left:510.666667pt;}
.x79_c00392{left:512.000000pt;}
.x8b_c00392{left:513.706667pt;}
.xb3_c00392{left:514.666667pt;}
.xe7_c00392{left:515.626667pt;}
.xbe_c00392{left:517.333333pt;}
.xfc_c00392{left:520.373333pt;}
.x1b_c00392{left:521.333333pt;}
.xe0_c00392{left:523.040000pt;}
.x5a_c00392{left:524.373333pt;}
.x83_c00392{left:525.333333pt;}
.x38_c00392{left:526.293333pt;}
.xad_c00392{left:529.333333pt;}
.xa3_c00392{left:530.666667pt;}
.x10f_c00392{left:532.373333pt;}
.xbf_c00392{left:533.333333pt;}
.x104_c00392{left:534.666667pt;}
.x28_c00392{left:536.000000pt;}
.x4f_c00392{left:537.333333pt;}
.x119_c00392{left:538.666667pt;}
.x47_c00392{left:540.000000pt;}
.x66_c00392{left:543.040000pt;}
.x39_c00392{left:544.373333pt;}
.x11d_c00392{left:545.333333pt;}
.xf9_c00392{left:546.666667pt;}
.x5b_c00392{left:548.000000pt;}
.xd_c00392{left:548.960000pt;}
.x50_c00392{left:551.040000pt;}
.x6e_c00392{left:552.000000pt;}
.x7a_c00392{left:553.333333pt;}
.x112_c00392{left:555.040000pt;}
.xe8_c00392{left:558.666667pt;}
.xea_c00392{left:561.333333pt;}
.x48_c00392{left:562.666667pt;}
.xd1_c00392{left:564.000000pt;}
.x101_c00392{left:565.706667pt;}
.xe_c00392{left:567.040000pt;}
.xdd_c00392{left:569.333333pt;}
.x3a_c00392{left:570.666667pt;}
.x29_c00392{left:572.000000pt;}
.x84_c00392{left:575.040000pt;}
.xa4_c00392{left:576.960000pt;}
.x1c_c00392{left:578.666667pt;}
.x10a_c00392{left:580.000000pt;}
.x5c_c00392{left:581.333333pt;}
.x11f_c00392{left:583.040000pt;}
.xf4_c00392{left:584.000000pt;}
.xc5_c00392{left:585.333333pt;}
.x8c_c00392{left:586.666667pt;}
.x113_c00392{left:587.626667pt;}
.x9b_c00392{left:589.333333pt;}
.x2a_c00392{left:591.040000pt;}
.xb4_c00392{left:592.373333pt;}
.xf_c00392{left:593.706667pt;}
.x3b_c00392{left:594.666667pt;}
.x5d_c00392{left:595.626667pt;}
.x97_c00392{left:597.333333pt;}
.x6f_c00392{left:598.666667pt;}
.x9c_c00392{left:600.373333pt;}
.x1d_c00392{left:603.040000pt;}
.xc0_c00392{left:608.000000pt;}
.xe1_c00392{left:610.666667pt;}
.x5e_c00392{left:611.626667pt;}
.xeb_c00392{left:613.333333pt;}
.x2b_c00392{left:614.293333pt;}
.xa5_c00392{left:617.706667pt;}
.x67_c00392{left:618.666667pt;}
.x10_c00392{left:622.293333pt;}
.xb9_c00392{left:624.000000pt;}
.x1_c00392{left:625.333333pt;}
.x51_c00392{left:627.040000pt;}
.xd6_c00392{left:628.000000pt;}
.xf1_c00392{left:630.666667pt;}
.x8d_c00392{left:635.626667pt;}
.xc6_c00392{left:637.333333pt;}
.xb5_c00392{left:640.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_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_85ee627a8b148de2d6e32778.woff2')format("woff");}.ff1_c00393{font-family:ff1_c00393;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m66_c00393{transform:matrix(0.264378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264378,0.000000,0.000000,0.250000,0,0);}
.m69_c00393{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m80_c00393{transform:matrix(0.297546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297546,0.000000,0.000000,0.250000,0,0);}
.ma0_c00393{transform:matrix(0.324003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324003,0.000000,0.000000,0.250000,0,0);}
.mde_c00393{transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);}
.m74_c00393{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m94_c00393{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m4e_c00393{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m38_c00393{transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);}
.m0_c00393{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.ma_c00393{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m75_c00393{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m48_c00393{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00393{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m8e_c00393{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.ma5_c00393{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m8d_c00393{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m60_c00393{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.mb_c00393{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.ma8_c00393{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m86_c00393{transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);}
.m2e_c00393{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.me_c00393{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m47_c00393{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);}
.m3b_c00393{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mb4_c00393{transform:matrix(0.406772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406772,0.000000,0.000000,0.250000,0,0);}
.m84_c00393{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.mbe_c00393{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m97_c00393{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m7_c00393{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m32_c00393{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m6_c00393{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m22_c00393{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m65_c00393{transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);}
.m59_c00393{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m7c_c00393{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.mab_c00393{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m9d_c00393{transform:matrix(0.419606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419606,0.000000,0.000000,0.250000,0,0);}
.m2b_c00393{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m6d_c00393{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m4d_c00393{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m27_c00393{transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);}
.m28_c00393{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mba_c00393{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m61_c00393{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m9a_c00393{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m93_c00393{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.me4_c00393{transform:matrix(0.428676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428676,0.000000,0.000000,0.250000,0,0);}
.m81_c00393{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m51_c00393{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m83_c00393{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m23_c00393{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m30_c00393{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m49_c00393{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mb1_c00393{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m44_c00393{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m67_c00393{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.maa_c00393{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m77_c00393{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m31_c00393{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.ma2_c00393{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m52_c00393{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m1b_c00393{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m15_c00393{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m87_c00393{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m88_c00393{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.m2d_c00393{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m9e_c00393{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mca_c00393{transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);}
.m98_c00393{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m3c_c00393{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.mc1_c00393{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mda_c00393{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.md7_c00393{transform:matrix(0.461538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461538,0.000000,0.000000,0.250000,0,0);}
.md0_c00393{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m4a_c00393{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.md3_c00393{transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);}
.me1_c00393{transform:matrix(0.471154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471154,0.000000,0.000000,0.250000,0,0);}
.m9f_c00393{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m20_c00393{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mc6_c00393{transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);}
.m1d_c00393{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m72_c00393{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m4b_c00393{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.m76_c00393{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m3f_c00393{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.mcb_c00393{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m45_c00393{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m78_c00393{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m12_c00393{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m3e_c00393{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mac_c00393{transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);}
.m39_c00393{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m7f_c00393{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.md6_c00393{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.m82_c00393{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m19_c00393{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m1e_c00393{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_c00393{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m92_c00393{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m42_c00393{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m3a_c00393{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m9b_c00393{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m7d_c00393{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m5_c00393{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m8_c00393{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m73_c00393{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m11_c00393{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m2c_c00393{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mb3_c00393{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m95_c00393{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mc7_c00393{transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);}
.m7e_c00393{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.m63_c00393{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m1c_c00393{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m89_c00393{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m99_c00393{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m55_c00393{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m4_c00393{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m9c_c00393{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mb9_c00393{transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);}
.m34_c00393{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m16_c00393{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.md_c00393{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m96_c00393{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m5b_c00393{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m4c_c00393{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m2_c00393{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m25_c00393{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m43_c00393{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m6c_c00393{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mb6_c00393{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.ma4_c00393{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m41_c00393{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m7a_c00393{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m6a_c00393{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m56_c00393{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mc3_c00393{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m5f_c00393{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mb8_c00393{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m35_c00393{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.mae_c00393{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m9_c00393{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m3d_c00393{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m90_c00393{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m18_c00393{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m26_c00393{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m62_c00393{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.md2_c00393{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m64_c00393{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m68_c00393{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m2f_c00393{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m1f_c00393{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mad_c00393{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.mbf_c00393{transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);}
.m8b_c00393{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m13_c00393{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m8a_c00393{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m17_c00393{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.ma9_c00393{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.mc4_c00393{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.m91_c00393{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m6e_c00393{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m70_c00393{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m5a_c00393{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mb0_c00393{transform:matrix(0.594853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594853,0.000000,0.000000,0.250000,0,0);}
.m5d_c00393{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.ma3_c00393{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m79_c00393{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);}
.m6f_c00393{transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);}
.m3_c00393{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m1a_c00393{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mbc_c00393{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.mf_c00393{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m85_c00393{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.mbb_c00393{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m33_c00393{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mb7_c00393{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.maf_c00393{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m71_c00393{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.md1_c00393{transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);}
.mdb_c00393{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.ma1_c00393{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_c00393{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m54_c00393{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m8c_c00393{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.mdd_c00393{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.me3_c00393{transform:matrix(0.659692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659692,0.000000,0.000000,0.250000,0,0);}
.mbd_c00393{transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);}
.m46_c00393{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m57_c00393{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mc5_c00393{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m21_c00393{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mc9_c00393{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.ma6_c00393{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m2a_c00393{transform:matrix(0.680588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680588,0.000000,0.000000,0.250000,0,0);}
.mcd_c00393{transform:matrix(0.680617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680617,0.000000,0.000000,0.250000,0,0);}
.mdc_c00393{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.mc0_c00393{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m58_c00393{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mce_c00393{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.m50_c00393{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.md8_c00393{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m53_c00393{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.mb5_c00393{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.mdf_c00393{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.mb2_c00393{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);}
.md5_c00393{transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);}
.m14_c00393{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m6b_c00393{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mc_c00393{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m8f_c00393{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.mc2_c00393{transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);}
.md4_c00393{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.md9_c00393{transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);}
.mcf_c00393{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m10_c00393{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m29_c00393{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m7b_c00393{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m37_c00393{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m24_c00393{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m40_c00393{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m5c_c00393{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.me0_c00393{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.mc8_c00393{transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);}
.ma7_c00393{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mcc_c00393{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m4f_c00393{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.me2_c00393{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.v2_c00393{vertical-align:-12.000000px;}
.v1_c00393{vertical-align:-6.000000px;}
.v0_c00393{vertical-align:0.000000px;}
.ls2_c00393{letter-spacing:0.000000px;}
.ls1_c00393{letter-spacing:15.303448px;}
.ls0_c00393{letter-spacing:57.908049px;}
.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;}
}
.ws3_c00393{word-spacing:-65.862129px;}
.ws11_c00393{word-spacing:-17.300728px;}
.ws0_c00393{word-spacing:-4.637331px;}
.ws1_c00393{word-spacing:-3.823959px;}
.ws12_c00393{word-spacing:0.000000px;}
.ws10_c00393{word-spacing:13.230928px;}
.wsb_c00393{word-spacing:25.629635px;}
.wsc_c00393{word-spacing:27.632576px;}
.ws2_c00393{word-spacing:27.671529px;}
.wse_c00393{word-spacing:29.395112px;}
.ws8_c00393{word-spacing:30.193299px;}
.ws6_c00393{word-spacing:36.864950px;}
.wsf_c00393{word-spacing:37.460577px;}
.ws9_c00393{word-spacing:42.638400px;}
.wsd_c00393{word-spacing:43.993166px;}
.wsa_c00393{word-spacing:45.638400px;}
.ws5_c00393{word-spacing:46.567836px;}
.ws7_c00393{word-spacing:49.142505px;}
.ws4_c00393{word-spacing:49.953969px;}
._5_c00393{margin-left:-15.303448px;}
._1_c00393{width:2.182692px;}
._0_c00393{width:38.075249px;}
._2_c00393{width:40.302442px;}
._4_c00393{width:54.521916px;}
._3_c00393{width:57.096585px;}
.fc0_c00393{color:transparent;}
.fs9_c00393{font-size:3.420000px;}
.fs8_c00393{font-size:11.880000px;}
.fs7_c00393{font-size:13.620000px;}
.fs5_c00393{font-size:18.720000px;}
.fs1_c00393{font-size:20.400000px;}
.fs3_c00393{font-size:25.500000px;}
.fs2_c00393{font-size:28.920000px;}
.fs4_c00393{font-size:32.340000px;}
.fs0_c00393{font-size:35.700000px;}
.fs6_c00393{font-size:39.120000px;}
.y0_c00393{bottom:0.000000px;}
.ye4_c00393{bottom:248.130000px;}
.ye3_c00393{bottom:249.195000px;}
.ye0_c00393{bottom:250.050000px;}
.ye2_c00393{bottom:250.920000px;}
.ydf_c00393{bottom:252.195000px;}
.ye1_c00393{bottom:252.420000px;}
.yde_c00393{bottom:262.695000px;}
.ydd_c00393{bottom:264.420000px;}
.yda_c00393{bottom:264.630000px;}
.ydb_c00393{bottom:265.695000px;}
.ydc_c00393{bottom:265.920000px;}
.yd9_c00393{bottom:274.695000px;}
.yd6_c00393{bottom:275.550000px;}
.yd8_c00393{bottom:276.195000px;}
.yd7_c00393{bottom:277.695000px;}
.yd5_c00393{bottom:279.195000px;}
.yd4_c00393{bottom:289.695000px;}
.yd3_c00393{bottom:291.195000px;}
.yd1_c00393{bottom:291.630000px;}
.yd2_c00393{bottom:292.695000px;}
.yd0_c00393{bottom:304.695000px;}
.ycf_c00393{bottom:306.195000px;}
.ycd_c00393{bottom:306.630000px;}
.yce_c00393{bottom:307.695000px;}
.ycc_c00393{bottom:319.695000px;}
.ycb_c00393{bottom:320.775000px;}
.yca_c00393{bottom:321.195000px;}
.yc9_c00393{bottom:331.695000px;}
.yc8_c00393{bottom:332.130000px;}
.yc7_c00393{bottom:333.195000px;}
.yc5_c00393{bottom:333.630000px;}
.yc6_c00393{bottom:334.695000px;}
.yc4_c00393{bottom:345.195000px;}
.yc3_c00393{bottom:346.695000px;}
.yc1_c00393{bottom:347.130000px;}
.yc2_c00393{bottom:348.195000px;}
.yc0_c00393{bottom:348.630000px;}
.ybf_c00393{bottom:358.695000px;}
.ybe_c00393{bottom:360.195000px;}
.ybd_c00393{bottom:361.695000px;}
.ybc_c00393{bottom:362.130000px;}
.ybb_c00393{bottom:363.195000px;}
.yba_c00393{bottom:372.630000px;}
.yb9_c00393{bottom:373.695000px;}
.yb8_c00393{bottom:375.195000px;}
.yb6_c00393{bottom:375.630000px;}
.yb7_c00393{bottom:376.695000px;}
.yb4_c00393{bottom:386.130000px;}
.yb5_c00393{bottom:387.195000px;}
.yb3_c00393{bottom:387.630000px;}
.yb2_c00393{bottom:388.695000px;}
.yb1_c00393{bottom:390.195000px;}
.yb0_c00393{bottom:390.630000px;}
.yaf_c00393{bottom:399.630000px;}
.yae_c00393{bottom:401.130000px;}
.yad_c00393{bottom:402.195000px;}
.yac_c00393{bottom:403.695000px;}
.yaa_c00393{bottom:404.130000px;}
.yab_c00393{bottom:405.195000px;}
.ya9_c00393{bottom:416.130000px;}
.ya8_c00393{bottom:417.195000px;}
.ya7_c00393{bottom:417.630000px;}
.ya6_c00393{bottom:418.695000px;}
.ya5_c00393{bottom:427.695000px;}
.ya4_c00393{bottom:429.195000px;}
.ya3_c00393{bottom:430.695000px;}
.ya1_c00393{bottom:431.130000px;}
.ya2_c00393{bottom:432.195000px;}
.ya0_c00393{bottom:432.630000px;}
.y9f_c00393{bottom:442.695000px;}
.y9e_c00393{bottom:444.195000px;}
.y9c_c00393{bottom:445.695000px;}
.y9d_c00393{bottom:446.130000px;}
.y9a_c00393{bottom:461.130000px;}
.y9b_c00393{bottom:462.195000px;}
.y99_c00393{bottom:465.195000px;}
.y98_c00393{bottom:473.130000px;}
.y97_c00393{bottom:474.195000px;}
.y96_c00393{bottom:475.695000px;}
.y95_c00393{bottom:476.130000px;}
.y94_c00393{bottom:477.195000px;}
.y92_c00393{bottom:477.630000px;}
.y93_c00393{bottom:478.695000px;}
.y90_c00393{bottom:503.970000px;}
.y91_c00393{bottom:505.050000px;}
.y8f_c00393{bottom:516.825000px;}
.y8e_c00393{bottom:517.905000px;}
.y8c_c00393{bottom:518.550000px;}
.y8b_c00393{bottom:518.970000px;}
.y8d_c00393{bottom:520.050000px;}
.y8a_c00393{bottom:545.550000px;}
.y89_c00393{bottom:545.970000px;}
.y86_c00393{bottom:584.745000px;}
.y88_c00393{bottom:585.630000px;}
.y87_c00393{bottom:586.470000px;}
.y84_c00393{bottom:586.905000px;}
.y85_c00393{bottom:587.130000px;}
.y81_c00393{bottom:602.970000px;}
.y7f_c00393{bottom:604.245000px;}
.y83_c00393{bottom:605.130000px;}
.y82_c00393{bottom:605.970000px;}
.y7e_c00393{bottom:606.405000px;}
.y80_c00393{bottom:606.630000px;}
.y7d_c00393{bottom:607.470000px;}
.y7c_c00393{bottom:622.470000px;}
.y7b_c00393{bottom:622.680000px;}
.y7a_c00393{bottom:623.745000px;}
.y78_c00393{bottom:625.905000px;}
.y79_c00393{bottom:626.130000px;}
.y77_c00393{bottom:643.245000px;}
.y75_c00393{bottom:645.405000px;}
.y76_c00393{bottom:645.630000px;}
.y74_c00393{bottom:662.745000px;}
.y72_c00393{bottom:663.825000px;}
.y71_c00393{bottom:664.245000px;}
.y73_c00393{bottom:664.905000px;}
.y70_c00393{bottom:665.130000px;}
.y6f_c00393{bottom:666.405000px;}
.y6e_c00393{bottom:682.245000px;}
.y6c_c00393{bottom:683.745000px;}
.y6d_c00393{bottom:684.630000px;}
.y6b_c00393{bottom:685.470000px;}
.y69_c00393{bottom:685.905000px;}
.y6a_c00393{bottom:686.970000px;}
.y65_c00393{bottom:703.245000px;}
.y68_c00393{bottom:704.130000px;}
.y67_c00393{bottom:704.970000px;}
.y64_c00393{bottom:705.405000px;}
.y66_c00393{bottom:706.470000px;}
.y62_c00393{bottom:722.325000px;}
.y60_c00393{bottom:722.745000px;}
.y5f_c00393{bottom:723.630000px;}
.y5e_c00393{bottom:723.825000px;}
.y61_c00393{bottom:724.905000px;}
.y63_c00393{bottom:725.970000px;}
.y5d_c00393{bottom:740.745000px;}
.y58_c00393{bottom:741.405000px;}
.y5c_c00393{bottom:742.245000px;}
.y57_c00393{bottom:743.130000px;}
.y5b_c00393{bottom:743.325000px;}
.y59_c00393{bottom:744.405000px;}
.y5a_c00393{bottom:744.630000px;}
.y55_c00393{bottom:760.680000px;}
.y56_c00393{bottom:761.745000px;}
.y54_c00393{bottom:763.905000px;}
.y53_c00393{bottom:764.970000px;}
.y52_c00393{bottom:765.405000px;}
.y4d_c00393{bottom:780.405000px;}
.y50_c00393{bottom:781.245000px;}
.y4e_c00393{bottom:782.325000px;}
.y49_c00393{bottom:782.745000px;}
.y4f_c00393{bottom:783.405000px;}
.y4a_c00393{bottom:783.630000px;}
.y51_c00393{bottom:784.470000px;}
.y4b_c00393{bottom:784.905000px;}
.y4c_c00393{bottom:785.970000px;}
.y47_c00393{bottom:800.745000px;}
.y48_c00393{bottom:800.970000px;}
.y45_c00393{bottom:801.825000px;}
.y46_c00393{bottom:802.905000px;}
.y44_c00393{bottom:803.970000px;}
.y41_c00393{bottom:820.245000px;}
.y3f_c00393{bottom:820.680000px;}
.y40_c00393{bottom:821.325000px;}
.y42_c00393{bottom:822.405000px;}
.y43_c00393{bottom:822.630000px;}
.y3e_c00393{bottom:823.905000px;}
.y3d_c00393{bottom:841.245000px;}
.y3c_c00393{bottom:843.405000px;}
.y39_c00393{bottom:860.745000px;}
.y3b_c00393{bottom:861.630000px;}
.y38_c00393{bottom:862.905000px;}
.y3a_c00393{bottom:863.130000px;}
.y35_c00393{bottom:880.245000px;}
.y36_c00393{bottom:881.325000px;}
.y37_c00393{bottom:882.405000px;}
.y34_c00393{bottom:882.630000px;}
.y33_c00393{bottom:883.470000px;}
.y31_c00393{bottom:899.325000px;}
.y2f_c00393{bottom:899.745000px;}
.y30_c00393{bottom:901.905000px;}
.y32_c00393{bottom:902.970000px;}
.y2e_c00393{bottom:918.180000px;}
.y2a_c00393{bottom:918.405000px;}
.y2b_c00393{bottom:919.245000px;}
.y2c_c00393{bottom:920.970000px;}
.y29_c00393{bottom:921.405000px;}
.y2d_c00393{bottom:921.630000px;}
.y25_c00393{bottom:939.405000px;}
.y27_c00393{bottom:939.825000px;}
.y28_c00393{bottom:941.130000px;}
.y26_c00393{bottom:942.405000px;}
.y23_c00393{bottom:959.325000px;}
.y22_c00393{bottom:959.745000px;}
.y21_c00393{bottom:960.630000px;}
.y24_c00393{bottom:960.825000px;}
.y20_c00393{bottom:961.905000px;}
.y1f_c00393{bottom:979.245000px;}
.y1e_c00393{bottom:980.130000px;}
.y1d_c00393{bottom:980.325000px;}
.y1c_c00393{bottom:981.405000px;}
.y15_c00393{bottom:998.325000px;}
.y16_c00393{bottom:998.745000px;}
.y1b_c00393{bottom:999.405000px;}
.y17_c00393{bottom:999.630000px;}
.y1a_c00393{bottom:999.825000px;}
.y19_c00393{bottom:1000.905000px;}
.y18_c00393{bottom:1001.970000px;}
.y11_c00393{bottom:1015.905000px;}
.yf_c00393{bottom:1018.245000px;}
.y14_c00393{bottom:1018.905000px;}
.y13_c00393{bottom:1019.130000px;}
.y12_c00393{bottom:1019.970000px;}
.y10_c00393{bottom:1020.405000px;}
.yc_c00393{bottom:1037.325000px;}
.yd_c00393{bottom:1037.745000px;}
.ya_c00393{bottom:1038.630000px;}
.ye_c00393{bottom:1039.470000px;}
.yb_c00393{bottom:1039.905000px;}
.y9_c00393{bottom:1040.970000px;}
.y7_c00393{bottom:1056.405000px;}
.y6_c00393{bottom:1056.825000px;}
.y5_c00393{bottom:1057.245000px;}
.y8_c00393{bottom:1058.130000px;}
.y4_c00393{bottom:1058.970000px;}
.y3_c00393{bottom:1059.405000px;}
.y2_c00393{bottom:1097.550000px;}
.y1_c00393{bottom:1097.745000px;}
.ha_c00393{height:4.206533px;}
.h9_c00393{height:14.612168px;}
.h8_c00393{height:16.752334px;}
.h6_c00393{height:23.025234px;}
.h2_c00393{height:25.091602px;}
.h4_c00393{height:31.364502px;}
.h3_c00393{height:35.571035px;}
.h5_c00393{height:39.777568px;}
.h1_c00393{height:43.910303px;}
.h7_c00393{height:48.116836px;}
.h0_c00393{height:1335.000000px;}
.w0_c00393{width:880.500000px;}
.x0_c00393{left:0.000000px;}
.xe9_c00393{left:128.580000px;}
.xdd_c00393{left:130.080000px;}
.xd4_c00393{left:132.000000px;}
.xb7_c00393{left:150.000000px;}
.x29_c00393{left:151.500000px;}
.x1_c00393{left:153.000000px;}
.xd5_c00393{left:154.080000px;}
.xeb_c00393{left:157.500000px;}
.xe3_c00393{left:162.000000px;}
.xde_c00393{left:163.500000px;}
.x74_c00393{left:166.080000px;}
.x3_c00393{left:168.000000px;}
.x5d_c00393{left:169.920000px;}
.xc6_c00393{left:172.500000px;}
.xe4_c00393{left:175.080000px;}
.x95_c00393{left:176.580000px;}
.x10_c00393{left:180.420000px;}
.xb1_c00393{left:181.920000px;}
.xbd_c00393{left:183.000000px;}
.x87_c00393{left:186.000000px;}
.x6e_c00393{left:188.580000px;}
.xdb_c00393{left:190.080000px;}
.xec_c00393{left:193.500000px;}
.x4a_c00393{left:196.920000px;}
.x2a_c00393{left:198.000000px;}
.x4_c00393{left:201.000000px;}
.xe7_c00393{left:202.500000px;}
.xe5_c00393{left:204.000000px;}
.x40_c00393{left:206.580000px;}
.x36_c00393{left:208.500000px;}
.x1d_c00393{left:211.920000px;}
.x6f_c00393{left:213.000000px;}
.x5e_c00393{left:214.920000px;}
.xb2_c00393{left:216.420000px;}
.xb8_c00393{left:219.000000px;}
.x75_c00393{left:220.500000px;}
.x11_c00393{left:222.000000px;}
.x41_c00393{left:226.500000px;}
.x4b_c00393{left:228.000000px;}
.x54_c00393{left:229.500000px;}
.x9e_c00393{left:232.500000px;}
.x5_c00393{left:233.580000px;}
.xb9_c00393{left:237.000000px;}
.x70_c00393{left:240.420000px;}
.x88_c00393{left:246.000000px;}
.x55_c00393{left:247.500000px;}
.x66_c00393{left:248.580000px;}
.x42_c00393{left:253.275000px;}
.xbe_c00393{left:256.500000px;}
.x96_c00393{left:258.000000px;}
.xab_c00393{left:259.920000px;}
.x4c_c00393{left:261.000000px;}
.x90_c00393{left:265.080000px;}
.x12_c00393{left:268.500000px;}
.x2b_c00393{left:271.500000px;}
.xd6_c00393{left:273.000000px;}
.x4f_c00393{left:275.580000px;}
.x4d_c00393{left:277.500000px;}
.x71_c00393{left:280.500000px;}
.x91_c00393{left:282.000000px;}
.x1e_c00393{left:283.500000px;}
.xa4_c00393{left:286.500000px;}
.x76_c00393{left:288.000000px;}
.x80_c00393{left:291.000000px;}
.x56_c00393{left:295.080000px;}
.x37_c00393{left:296.580000px;}
.x1f_c00393{left:298.920000px;}
.x9f_c00393{left:300.000000px;}
.xcd_c00393{left:301.920000px;}
.x72_c00393{left:303.420000px;}
.xc7_c00393{left:304.920000px;}
.x6_c00393{left:306.420000px;}
.x77_c00393{left:313.080000px;}
.x4e_c00393{left:316.080000px;}
.xa0_c00393{left:318.000000px;}
.x81_c00393{left:319.080000px;}
.xe0_c00393{left:321.000000px;}
.x97_c00393{left:322.500000px;}
.x20_c00393{left:325.080000px;}
.x57_c00393{left:327.000000px;}
.x5f_c00393{left:328.500000px;}
.x13_c00393{left:331.080000px;}
.xc8_c00393{left:333.000000px;}
.x2c_c00393{left:334.500000px;}
.xb3_c00393{left:337.500000px;}
.xd0_c00393{left:339.000000px;}
.x43_c00393{left:345.420000px;}
.x78_c00393{left:347.145000px;}
.x50_c00393{left:349.920000px;}
.x67_c00393{left:351.000000px;}
.x89_c00393{left:354.000000px;}
.x7_c00393{left:356.355000px;}
.x14_c00393{left:360.000000px;}
.x60_c00393{left:361.500000px;}
.x2d_c00393{left:363.420000px;}
.xe8_c00393{left:366.000000px;}
.xb4_c00393{left:367.500000px;}
.x38_c00393{left:369.420000px;}
.x68_c00393{left:370.500000px;}
.xa5_c00393{left:372.420000px;}
.x44_c00393{left:373.500000px;}
.x79_c00393{left:376.500000px;}
.x82_c00393{left:379.500000px;}
.xac_c00393{left:381.000000px;}
.x8a_c00393{left:385.500000px;}
.x15_c00393{left:387.000000px;}
.x21_c00393{left:389.580000px;}
.x2_c00393{left:391.500000px;}
.x7a_c00393{left:393.000000px;}
.xa6_c00393{left:399.000000px;}
.xd1_c00393{left:400.500000px;}
.x98_c00393{left:402.000000px;}
.x69_c00393{left:403.920000px;}
.x22_c00393{left:408.000000px;}
.xc9_c00393{left:409.080000px;}
.x2e_c00393{left:410.580000px;}
.x73_c00393{left:412.080000px;}
.xce_c00393{left:415.920000px;}
.xd2_c00393{left:417.000000px;}
.x39_c00393{left:418.080000px;}
.xea_c00393{left:420.000000px;}
.x83_c00393{left:421.500000px;}
.x8_c00393{left:424.080000px;}
.x2f_c00393{left:430.920000px;}
.xad_c00393{left:432.000000px;}
.x23_c00393{left:433.500000px;}
.xba_c00393{left:436.080000px;}
.x7b_c00393{left:439.920000px;}
.x16_c00393{left:445.920000px;}
.x58_c00393{left:448.920000px;}
.x24_c00393{left:451.500000px;}
.x99_c00393{left:452.580000px;}
.xcc_c00393{left:454.500000px;}
.xca_c00393{left:456.000000px;}
.x30_c00393{left:457.080000px;}
.x9_c00393{left:460.080000px;}
.xa1_c00393{left:461.580000px;}
.x45_c00393{left:465.000000px;}
.x84_c00393{left:467.580000px;}
.x59_c00393{left:476.580000px;}
.x46_c00393{left:480.420000px;}
.xcb_c00393{left:482.580000px;}
.xd3_c00393{left:486.000000px;}
.x7c_c00393{left:487.920000px;}
.x9a_c00393{left:490.500000px;}
.x25_c00393{left:492.420000px;}
.x17_c00393{left:495.420000px;}
.x92_c00393{left:496.500000px;}
.x6a_c00393{left:498.000000px;}
.x31_c00393{left:499.500000px;}
.xa2_c00393{left:501.000000px;}
.x3a_c00393{left:502.920000px;}
.xa_c00393{left:505.080000px;}
.xda_c00393{left:507.000000px;}
.x51_c00393{left:510.420000px;}
.x8b_c00393{left:514.500000px;}
.x9b_c00393{left:517.500000px;}
.xae_c00393{left:518.580000px;}
.xa7_c00393{left:520.080000px;}
.xbb_c00393{left:525.000000px;}
.x61_c00393{left:528.000000px;}
.xbf_c00393{left:529.080000px;}
.x18_c00393{left:532.920000px;}
.x6b_c00393{left:534.420000px;}
.x47_c00393{left:537.420000px;}
.xb_c00393{left:539.775000px;}
.x3b_c00393{left:541.500000px;}
.x93_c00393{left:544.080000px;}
.x52_c00393{left:546.000000px;}
.xe1_c00393{left:547.500000px;}
.xc0_c00393{left:550.500000px;}
.xe6_c00393{left:553.500000px;}
.xc2_c00393{left:558.000000px;}
.x19_c00393{left:560.580000px;}
.x3c_c00393{left:562.920000px;}
.xa3_c00393{left:567.420000px;}
.xa8_c00393{left:568.500000px;}
.x8c_c00393{left:570.000000px;}
.x62_c00393{left:574.080000px;}
.x32_c00393{left:576.000000px;}
.x9c_c00393{left:577.500000px;}
.x26_c00393{left:578.580000px;}
.xb5_c00393{left:580.920000px;}
.xbc_c00393{left:586.500000px;}
.xc_c00393{left:589.500000px;}
.x3d_c00393{left:592.080000px;}
.x9d_c00393{left:597.420000px;}
.xdc_c00393{left:598.500000px;}
.x1a_c00393{left:603.420000px;}
.xc3_c00393{left:610.500000px;}
.xa9_c00393{left:613.500000px;}
.xaf_c00393{left:615.000000px;}
.x27_c00393{left:616.080000px;}
.x63_c00393{left:619.920000px;}
.x94_c00393{left:621.855000px;}
.x85_c00393{left:624.000000px;}
.x8d_c00393{left:625.920000px;}
.x7d_c00393{left:628.500000px;}
.x53_c00393{left:630.000000px;}
.x5a_c00393{left:632.580000px;}
.xd_c00393{left:634.500000px;}
.xe2_c00393{left:637.500000px;}
.xaa_c00393{left:639.000000px;}
.x6c_c00393{left:640.500000px;}
.xd8_c00393{left:642.000000px;}
.x3e_c00393{left:645.000000px;}
.x33_c00393{left:646.920000px;}
.xb6_c00393{left:649.500000px;}
.x5b_c00393{left:651.420000px;}
.xe_c00393{left:657.420000px;}
.xc4_c00393{left:661.500000px;}
.x1b_c00393{left:663.000000px;}
.x64_c00393{left:664.500000px;}
.x7e_c00393{left:666.420000px;}
.xc1_c00393{left:667.500000px;}
.x5c_c00393{left:678.000000px;}
.x3f_c00393{left:679.920000px;}
.xed_c00393{left:681.000000px;}
.x6d_c00393{left:682.500000px;}
.x8e_c00393{left:684.000000px;}
.xf_c00393{left:685.500000px;}
.x48_c00393{left:687.000000px;}
.x34_c00393{left:688.080000px;}
.x28_c00393{left:691.500000px;}
.x7f_c00393{left:692.580000px;}
.xc5_c00393{left:694.920000px;}
.x1c_c00393{left:696.000000px;}
.xcf_c00393{left:700.500000px;}
.x35_c00393{left:706.920000px;}
.x49_c00393{left:708.000000px;}
.xb0_c00393{left:711.000000px;}
.x8f_c00393{left:712.080000px;}
.x86_c00393{left:715.080000px;}
.x65_c00393{left:718.500000px;}
.xd7_c00393{left:724.500000px;}
.xdf_c00393{left:729.000000px;}
.xd9_c00393{left:732.000000px;}
@media print{
.v2_c00393{vertical-align:-10.666667pt;}
.v1_c00393{vertical-align:-5.333333pt;}
.v0_c00393{vertical-align:0.000000pt;}
.ls2_c00393{letter-spacing:0.000000pt;}
.ls1_c00393{letter-spacing:13.603065pt;}
.ls0_c00393{letter-spacing:51.473822pt;}
.ws3_c00393{word-spacing:-58.544115pt;}
.ws11_c00393{word-spacing:-15.378425pt;}
.ws0_c00393{word-spacing:-4.122072pt;}
.ws1_c00393{word-spacing:-3.399075pt;}
.ws12_c00393{word-spacing:0.000000pt;}
.ws10_c00393{word-spacing:11.760825pt;}
.wsb_c00393{word-spacing:22.781898pt;}
.wsc_c00393{word-spacing:24.562290pt;}
.ws2_c00393{word-spacing:24.596914pt;}
.wse_c00393{word-spacing:26.128988pt;}
.ws8_c00393{word-spacing:26.838488pt;}
.ws6_c00393{word-spacing:32.768845pt;}
.wsf_c00393{word-spacing:33.298290pt;}
.ws9_c00393{word-spacing:37.900800pt;}
.wsd_c00393{word-spacing:39.105037pt;}
.wsa_c00393{word-spacing:40.567467pt;}
.ws5_c00393{word-spacing:41.393632pt;}
.ws7_c00393{word-spacing:43.682226pt;}
.ws4_c00393{word-spacing:44.403528pt;}
._5_c00393{margin-left:-13.603065pt;}
._1_c00393{width:1.940171pt;}
._0_c00393{width:33.844666pt;}
._2_c00393{width:35.824393pt;}
._4_c00393{width:48.463925pt;}
._3_c00393{width:50.752520pt;}
.fs9_c00393{font-size:3.040000pt;}
.fs8_c00393{font-size:10.560000pt;}
.fs7_c00393{font-size:12.106667pt;}
.fs5_c00393{font-size:16.640000pt;}
.fs1_c00393{font-size:18.133333pt;}
.fs3_c00393{font-size:22.666667pt;}
.fs2_c00393{font-size:25.706667pt;}
.fs4_c00393{font-size:28.746667pt;}
.fs0_c00393{font-size:31.733333pt;}
.fs6_c00393{font-size:34.773333pt;}
.y0_c00393{bottom:0.000000pt;}
.ye4_c00393{bottom:220.560000pt;}
.ye3_c00393{bottom:221.506667pt;}
.ye0_c00393{bottom:222.266667pt;}
.ye2_c00393{bottom:223.040000pt;}
.ydf_c00393{bottom:224.173333pt;}
.ye1_c00393{bottom:224.373333pt;}
.yde_c00393{bottom:233.506667pt;}
.ydd_c00393{bottom:235.040000pt;}
.yda_c00393{bottom:235.226667pt;}
.ydb_c00393{bottom:236.173333pt;}
.ydc_c00393{bottom:236.373333pt;}
.yd9_c00393{bottom:244.173333pt;}
.yd6_c00393{bottom:244.933333pt;}
.yd8_c00393{bottom:245.506667pt;}
.yd7_c00393{bottom:246.840000pt;}
.yd5_c00393{bottom:248.173333pt;}
.yd4_c00393{bottom:257.506667pt;}
.yd3_c00393{bottom:258.840000pt;}
.yd1_c00393{bottom:259.226667pt;}
.yd2_c00393{bottom:260.173333pt;}
.yd0_c00393{bottom:270.840000pt;}
.ycf_c00393{bottom:272.173333pt;}
.ycd_c00393{bottom:272.560000pt;}
.yce_c00393{bottom:273.506667pt;}
.ycc_c00393{bottom:284.173333pt;}
.ycb_c00393{bottom:285.133333pt;}
.yca_c00393{bottom:285.506667pt;}
.yc9_c00393{bottom:294.840000pt;}
.yc8_c00393{bottom:295.226667pt;}
.yc7_c00393{bottom:296.173333pt;}
.yc5_c00393{bottom:296.560000pt;}
.yc6_c00393{bottom:297.506667pt;}
.yc4_c00393{bottom:306.840000pt;}
.yc3_c00393{bottom:308.173333pt;}
.yc1_c00393{bottom:308.560000pt;}
.yc2_c00393{bottom:309.506667pt;}
.yc0_c00393{bottom:309.893333pt;}
.ybf_c00393{bottom:318.840000pt;}
.ybe_c00393{bottom:320.173333pt;}
.ybd_c00393{bottom:321.506667pt;}
.ybc_c00393{bottom:321.893333pt;}
.ybb_c00393{bottom:322.840000pt;}
.yba_c00393{bottom:331.226667pt;}
.yb9_c00393{bottom:332.173333pt;}
.yb8_c00393{bottom:333.506667pt;}
.yb6_c00393{bottom:333.893333pt;}
.yb7_c00393{bottom:334.840000pt;}
.yb4_c00393{bottom:343.226667pt;}
.yb5_c00393{bottom:344.173333pt;}
.yb3_c00393{bottom:344.560000pt;}
.yb2_c00393{bottom:345.506667pt;}
.yb1_c00393{bottom:346.840000pt;}
.yb0_c00393{bottom:347.226667pt;}
.yaf_c00393{bottom:355.226667pt;}
.yae_c00393{bottom:356.560000pt;}
.yad_c00393{bottom:357.506667pt;}
.yac_c00393{bottom:358.840000pt;}
.yaa_c00393{bottom:359.226667pt;}
.yab_c00393{bottom:360.173333pt;}
.ya9_c00393{bottom:369.893333pt;}
.ya8_c00393{bottom:370.840000pt;}
.ya7_c00393{bottom:371.226667pt;}
.ya6_c00393{bottom:372.173333pt;}
.ya5_c00393{bottom:380.173333pt;}
.ya4_c00393{bottom:381.506667pt;}
.ya3_c00393{bottom:382.840000pt;}
.ya1_c00393{bottom:383.226667pt;}
.ya2_c00393{bottom:384.173333pt;}
.ya0_c00393{bottom:384.560000pt;}
.y9f_c00393{bottom:393.506667pt;}
.y9e_c00393{bottom:394.840000pt;}
.y9c_c00393{bottom:396.173333pt;}
.y9d_c00393{bottom:396.560000pt;}
.y9a_c00393{bottom:409.893333pt;}
.y9b_c00393{bottom:410.840000pt;}
.y99_c00393{bottom:413.506667pt;}
.y98_c00393{bottom:420.560000pt;}
.y97_c00393{bottom:421.506667pt;}
.y96_c00393{bottom:422.840000pt;}
.y95_c00393{bottom:423.226667pt;}
.y94_c00393{bottom:424.173333pt;}
.y92_c00393{bottom:424.560000pt;}
.y93_c00393{bottom:425.506667pt;}
.y90_c00393{bottom:447.973333pt;}
.y91_c00393{bottom:448.933333pt;}
.y8f_c00393{bottom:459.400000pt;}
.y8e_c00393{bottom:460.360000pt;}
.y8c_c00393{bottom:460.933333pt;}
.y8b_c00393{bottom:461.306667pt;}
.y8d_c00393{bottom:462.266667pt;}
.y8a_c00393{bottom:484.933333pt;}
.y89_c00393{bottom:485.306667pt;}
.y86_c00393{bottom:519.773333pt;}
.y88_c00393{bottom:520.560000pt;}
.y87_c00393{bottom:521.306667pt;}
.y84_c00393{bottom:521.693333pt;}
.y85_c00393{bottom:521.893333pt;}
.y81_c00393{bottom:535.973333pt;}
.y7f_c00393{bottom:537.106667pt;}
.y83_c00393{bottom:537.893333pt;}
.y82_c00393{bottom:538.640000pt;}
.y7e_c00393{bottom:539.026667pt;}
.y80_c00393{bottom:539.226667pt;}
.y7d_c00393{bottom:539.973333pt;}
.y7c_c00393{bottom:553.306667pt;}
.y7b_c00393{bottom:553.493333pt;}
.y7a_c00393{bottom:554.440000pt;}
.y78_c00393{bottom:556.360000pt;}
.y79_c00393{bottom:556.560000pt;}
.y77_c00393{bottom:571.773333pt;}
.y75_c00393{bottom:573.693333pt;}
.y76_c00393{bottom:573.893333pt;}
.y74_c00393{bottom:589.106667pt;}
.y72_c00393{bottom:590.066667pt;}
.y71_c00393{bottom:590.440000pt;}
.y73_c00393{bottom:591.026667pt;}
.y70_c00393{bottom:591.226667pt;}
.y6f_c00393{bottom:592.360000pt;}
.y6e_c00393{bottom:606.440000pt;}
.y6c_c00393{bottom:607.773333pt;}
.y6d_c00393{bottom:608.560000pt;}
.y6b_c00393{bottom:609.306667pt;}
.y69_c00393{bottom:609.693333pt;}
.y6a_c00393{bottom:610.640000pt;}
.y65_c00393{bottom:625.106667pt;}
.y68_c00393{bottom:625.893333pt;}
.y67_c00393{bottom:626.640000pt;}
.y64_c00393{bottom:627.026667pt;}
.y66_c00393{bottom:627.973333pt;}
.y62_c00393{bottom:642.066667pt;}
.y60_c00393{bottom:642.440000pt;}
.y5f_c00393{bottom:643.226667pt;}
.y5e_c00393{bottom:643.400000pt;}
.y61_c00393{bottom:644.360000pt;}
.y63_c00393{bottom:645.306667pt;}
.y5d_c00393{bottom:658.440000pt;}
.y58_c00393{bottom:659.026667pt;}
.y5c_c00393{bottom:659.773333pt;}
.y57_c00393{bottom:660.560000pt;}
.y5b_c00393{bottom:660.733333pt;}
.y59_c00393{bottom:661.693333pt;}
.y5a_c00393{bottom:661.893333pt;}
.y55_c00393{bottom:676.160000pt;}
.y56_c00393{bottom:677.106667pt;}
.y54_c00393{bottom:679.026667pt;}
.y53_c00393{bottom:679.973333pt;}
.y52_c00393{bottom:680.360000pt;}
.y4d_c00393{bottom:693.693333pt;}
.y50_c00393{bottom:694.440000pt;}
.y4e_c00393{bottom:695.400000pt;}
.y49_c00393{bottom:695.773333pt;}
.y4f_c00393{bottom:696.360000pt;}
.y4a_c00393{bottom:696.560000pt;}
.y51_c00393{bottom:697.306667pt;}
.y4b_c00393{bottom:697.693333pt;}
.y4c_c00393{bottom:698.640000pt;}
.y47_c00393{bottom:711.773333pt;}
.y48_c00393{bottom:711.973333pt;}
.y45_c00393{bottom:712.733333pt;}
.y46_c00393{bottom:713.693333pt;}
.y44_c00393{bottom:714.640000pt;}
.y41_c00393{bottom:729.106667pt;}
.y3f_c00393{bottom:729.493333pt;}
.y40_c00393{bottom:730.066667pt;}
.y42_c00393{bottom:731.026667pt;}
.y43_c00393{bottom:731.226667pt;}
.y3e_c00393{bottom:732.360000pt;}
.y3d_c00393{bottom:747.773333pt;}
.y3c_c00393{bottom:749.693333pt;}
.y39_c00393{bottom:765.106667pt;}
.y3b_c00393{bottom:765.893333pt;}
.y38_c00393{bottom:767.026667pt;}
.y3a_c00393{bottom:767.226667pt;}
.y35_c00393{bottom:782.440000pt;}
.y36_c00393{bottom:783.400000pt;}
.y37_c00393{bottom:784.360000pt;}
.y34_c00393{bottom:784.560000pt;}
.y33_c00393{bottom:785.306667pt;}
.y31_c00393{bottom:799.400000pt;}
.y2f_c00393{bottom:799.773333pt;}
.y30_c00393{bottom:801.693333pt;}
.y32_c00393{bottom:802.640000pt;}
.y2e_c00393{bottom:816.160000pt;}
.y2a_c00393{bottom:816.360000pt;}
.y2b_c00393{bottom:817.106667pt;}
.y2c_c00393{bottom:818.640000pt;}
.y29_c00393{bottom:819.026667pt;}
.y2d_c00393{bottom:819.226667pt;}
.y25_c00393{bottom:835.026667pt;}
.y27_c00393{bottom:835.400000pt;}
.y28_c00393{bottom:836.560000pt;}
.y26_c00393{bottom:837.693333pt;}
.y23_c00393{bottom:852.733333pt;}
.y22_c00393{bottom:853.106667pt;}
.y21_c00393{bottom:853.893333pt;}
.y24_c00393{bottom:854.066667pt;}
.y20_c00393{bottom:855.026667pt;}
.y1f_c00393{bottom:870.440000pt;}
.y1e_c00393{bottom:871.226667pt;}
.y1d_c00393{bottom:871.400000pt;}
.y1c_c00393{bottom:872.360000pt;}
.y15_c00393{bottom:887.400000pt;}
.y16_c00393{bottom:887.773333pt;}
.y1b_c00393{bottom:888.360000pt;}
.y17_c00393{bottom:888.560000pt;}
.y1a_c00393{bottom:888.733333pt;}
.y19_c00393{bottom:889.693333pt;}
.y18_c00393{bottom:890.640000pt;}
.y11_c00393{bottom:903.026667pt;}
.yf_c00393{bottom:905.106667pt;}
.y14_c00393{bottom:905.693333pt;}
.y13_c00393{bottom:905.893333pt;}
.y12_c00393{bottom:906.640000pt;}
.y10_c00393{bottom:907.026667pt;}
.yc_c00393{bottom:922.066667pt;}
.yd_c00393{bottom:922.440000pt;}
.ya_c00393{bottom:923.226667pt;}
.ye_c00393{bottom:923.973333pt;}
.yb_c00393{bottom:924.360000pt;}
.y9_c00393{bottom:925.306667pt;}
.y7_c00393{bottom:939.026667pt;}
.y6_c00393{bottom:939.400000pt;}
.y5_c00393{bottom:939.773333pt;}
.y8_c00393{bottom:940.560000pt;}
.y4_c00393{bottom:941.306667pt;}
.y3_c00393{bottom:941.693333pt;}
.y2_c00393{bottom:975.600000pt;}
.y1_c00393{bottom:975.773333pt;}
.ha_c00393{height:3.739141pt;}
.h9_c00393{height:12.988594pt;}
.h8_c00393{height:14.890964pt;}
.h6_c00393{height:20.466875pt;}
.h2_c00393{height:22.303646pt;}
.h4_c00393{height:27.879557pt;}
.h3_c00393{height:31.618698pt;}
.h5_c00393{height:35.357839pt;}
.h1_c00393{height:39.031380pt;}
.h7_c00393{height:42.770521pt;}
.h0_c00393{height:1186.666667pt;}
.w0_c00393{width:782.666667pt;}
.x0_c00393{left:0.000000pt;}
.xe9_c00393{left:114.293333pt;}
.xdd_c00393{left:115.626667pt;}
.xd4_c00393{left:117.333333pt;}
.xb7_c00393{left:133.333333pt;}
.x29_c00393{left:134.666667pt;}
.x1_c00393{left:136.000000pt;}
.xd5_c00393{left:136.960000pt;}
.xeb_c00393{left:140.000000pt;}
.xe3_c00393{left:144.000000pt;}
.xde_c00393{left:145.333333pt;}
.x74_c00393{left:147.626667pt;}
.x3_c00393{left:149.333333pt;}
.x5d_c00393{left:151.040000pt;}
.xc6_c00393{left:153.333333pt;}
.xe4_c00393{left:155.626667pt;}
.x95_c00393{left:156.960000pt;}
.x10_c00393{left:160.373333pt;}
.xb1_c00393{left:161.706667pt;}
.xbd_c00393{left:162.666667pt;}
.x87_c00393{left:165.333333pt;}
.x6e_c00393{left:167.626667pt;}
.xdb_c00393{left:168.960000pt;}
.xec_c00393{left:172.000000pt;}
.x4a_c00393{left:175.040000pt;}
.x2a_c00393{left:176.000000pt;}
.x4_c00393{left:178.666667pt;}
.xe7_c00393{left:180.000000pt;}
.xe5_c00393{left:181.333333pt;}
.x40_c00393{left:183.626667pt;}
.x36_c00393{left:185.333333pt;}
.x1d_c00393{left:188.373333pt;}
.x6f_c00393{left:189.333333pt;}
.x5e_c00393{left:191.040000pt;}
.xb2_c00393{left:192.373333pt;}
.xb8_c00393{left:194.666667pt;}
.x75_c00393{left:196.000000pt;}
.x11_c00393{left:197.333333pt;}
.x41_c00393{left:201.333333pt;}
.x4b_c00393{left:202.666667pt;}
.x54_c00393{left:204.000000pt;}
.x9e_c00393{left:206.666667pt;}
.x5_c00393{left:207.626667pt;}
.xb9_c00393{left:210.666667pt;}
.x70_c00393{left:213.706667pt;}
.x88_c00393{left:218.666667pt;}
.x55_c00393{left:220.000000pt;}
.x66_c00393{left:220.960000pt;}
.x42_c00393{left:225.133333pt;}
.xbe_c00393{left:228.000000pt;}
.x96_c00393{left:229.333333pt;}
.xab_c00393{left:231.040000pt;}
.x4c_c00393{left:232.000000pt;}
.x90_c00393{left:235.626667pt;}
.x12_c00393{left:238.666667pt;}
.x2b_c00393{left:241.333333pt;}
.xd6_c00393{left:242.666667pt;}
.x4f_c00393{left:244.960000pt;}
.x4d_c00393{left:246.666667pt;}
.x71_c00393{left:249.333333pt;}
.x91_c00393{left:250.666667pt;}
.x1e_c00393{left:252.000000pt;}
.xa4_c00393{left:254.666667pt;}
.x76_c00393{left:256.000000pt;}
.x80_c00393{left:258.666667pt;}
.x56_c00393{left:262.293333pt;}
.x37_c00393{left:263.626667pt;}
.x1f_c00393{left:265.706667pt;}
.x9f_c00393{left:266.666667pt;}
.xcd_c00393{left:268.373333pt;}
.x72_c00393{left:269.706667pt;}
.xc7_c00393{left:271.040000pt;}
.x6_c00393{left:272.373333pt;}
.x77_c00393{left:278.293333pt;}
.x4e_c00393{left:280.960000pt;}
.xa0_c00393{left:282.666667pt;}
.x81_c00393{left:283.626667pt;}
.xe0_c00393{left:285.333333pt;}
.x97_c00393{left:286.666667pt;}
.x20_c00393{left:288.960000pt;}
.x57_c00393{left:290.666667pt;}
.x5f_c00393{left:292.000000pt;}
.x13_c00393{left:294.293333pt;}
.xc8_c00393{left:296.000000pt;}
.x2c_c00393{left:297.333333pt;}
.xb3_c00393{left:300.000000pt;}
.xd0_c00393{left:301.333333pt;}
.x43_c00393{left:307.040000pt;}
.x78_c00393{left:308.573333pt;}
.x50_c00393{left:311.040000pt;}
.x67_c00393{left:312.000000pt;}
.x89_c00393{left:314.666667pt;}
.x7_c00393{left:316.760000pt;}
.x14_c00393{left:320.000000pt;}
.x60_c00393{left:321.333333pt;}
.x2d_c00393{left:323.040000pt;}
.xe8_c00393{left:325.333333pt;}
.xb4_c00393{left:326.666667pt;}
.x38_c00393{left:328.373333pt;}
.x68_c00393{left:329.333333pt;}
.xa5_c00393{left:331.040000pt;}
.x44_c00393{left:332.000000pt;}
.x79_c00393{left:334.666667pt;}
.x82_c00393{left:337.333333pt;}
.xac_c00393{left:338.666667pt;}
.x8a_c00393{left:342.666667pt;}
.x15_c00393{left:344.000000pt;}
.x21_c00393{left:346.293333pt;}
.x2_c00393{left:348.000000pt;}
.x7a_c00393{left:349.333333pt;}
.xa6_c00393{left:354.666667pt;}
.xd1_c00393{left:356.000000pt;}
.x98_c00393{left:357.333333pt;}
.x69_c00393{left:359.040000pt;}
.x22_c00393{left:362.666667pt;}
.xc9_c00393{left:363.626667pt;}
.x2e_c00393{left:364.960000pt;}
.x73_c00393{left:366.293333pt;}
.xce_c00393{left:369.706667pt;}
.xd2_c00393{left:370.666667pt;}
.x39_c00393{left:371.626667pt;}
.xea_c00393{left:373.333333pt;}
.x83_c00393{left:374.666667pt;}
.x8_c00393{left:376.960000pt;}
.x2f_c00393{left:383.040000pt;}
.xad_c00393{left:384.000000pt;}
.x23_c00393{left:385.333333pt;}
.xba_c00393{left:387.626667pt;}
.x7b_c00393{left:391.040000pt;}
.x16_c00393{left:396.373333pt;}
.x58_c00393{left:399.040000pt;}
.x24_c00393{left:401.333333pt;}
.x99_c00393{left:402.293333pt;}
.xcc_c00393{left:404.000000pt;}
.xca_c00393{left:405.333333pt;}
.x30_c00393{left:406.293333pt;}
.x9_c00393{left:408.960000pt;}
.xa1_c00393{left:410.293333pt;}
.x45_c00393{left:413.333333pt;}
.x84_c00393{left:415.626667pt;}
.x59_c00393{left:423.626667pt;}
.x46_c00393{left:427.040000pt;}
.xcb_c00393{left:428.960000pt;}
.xd3_c00393{left:432.000000pt;}
.x7c_c00393{left:433.706667pt;}
.x9a_c00393{left:436.000000pt;}
.x25_c00393{left:437.706667pt;}
.x17_c00393{left:440.373333pt;}
.x92_c00393{left:441.333333pt;}
.x6a_c00393{left:442.666667pt;}
.x31_c00393{left:444.000000pt;}
.xa2_c00393{left:445.333333pt;}
.x3a_c00393{left:447.040000pt;}
.xa_c00393{left:448.960000pt;}
.xda_c00393{left:450.666667pt;}
.x51_c00393{left:453.706667pt;}
.x8b_c00393{left:457.333333pt;}
.x9b_c00393{left:460.000000pt;}
.xae_c00393{left:460.960000pt;}
.xa7_c00393{left:462.293333pt;}
.xbb_c00393{left:466.666667pt;}
.x61_c00393{left:469.333333pt;}
.xbf_c00393{left:470.293333pt;}
.x18_c00393{left:473.706667pt;}
.x6b_c00393{left:475.040000pt;}
.x47_c00393{left:477.706667pt;}
.xb_c00393{left:479.800000pt;}
.x3b_c00393{left:481.333333pt;}
.x93_c00393{left:483.626667pt;}
.x52_c00393{left:485.333333pt;}
.xe1_c00393{left:486.666667pt;}
.xc0_c00393{left:489.333333pt;}
.xe6_c00393{left:492.000000pt;}
.xc2_c00393{left:496.000000pt;}
.x19_c00393{left:498.293333pt;}
.x3c_c00393{left:500.373333pt;}
.xa3_c00393{left:504.373333pt;}
.xa8_c00393{left:505.333333pt;}
.x8c_c00393{left:506.666667pt;}
.x62_c00393{left:510.293333pt;}
.x32_c00393{left:512.000000pt;}
.x9c_c00393{left:513.333333pt;}
.x26_c00393{left:514.293333pt;}
.xb5_c00393{left:516.373333pt;}
.xbc_c00393{left:521.333333pt;}
.xc_c00393{left:524.000000pt;}
.x3d_c00393{left:526.293333pt;}
.x9d_c00393{left:531.040000pt;}
.xdc_c00393{left:532.000000pt;}
.x1a_c00393{left:536.373333pt;}
.xc3_c00393{left:542.666667pt;}
.xa9_c00393{left:545.333333pt;}
.xaf_c00393{left:546.666667pt;}
.x27_c00393{left:547.626667pt;}
.x63_c00393{left:551.040000pt;}
.x94_c00393{left:552.760000pt;}
.x85_c00393{left:554.666667pt;}
.x8d_c00393{left:556.373333pt;}
.x7d_c00393{left:558.666667pt;}
.x53_c00393{left:560.000000pt;}
.x5a_c00393{left:562.293333pt;}
.xd_c00393{left:564.000000pt;}
.xe2_c00393{left:566.666667pt;}
.xaa_c00393{left:568.000000pt;}
.x6c_c00393{left:569.333333pt;}
.xd8_c00393{left:570.666667pt;}
.x3e_c00393{left:573.333333pt;}
.x33_c00393{left:575.040000pt;}
.xb6_c00393{left:577.333333pt;}
.x5b_c00393{left:579.040000pt;}
.xe_c00393{left:584.373333pt;}
.xc4_c00393{left:588.000000pt;}
.x1b_c00393{left:589.333333pt;}
.x64_c00393{left:590.666667pt;}
.x7e_c00393{left:592.373333pt;}
.xc1_c00393{left:593.333333pt;}
.x5c_c00393{left:602.666667pt;}
.x3f_c00393{left:604.373333pt;}
.xed_c00393{left:605.333333pt;}
.x6d_c00393{left:606.666667pt;}
.x8e_c00393{left:608.000000pt;}
.xf_c00393{left:609.333333pt;}
.x48_c00393{left:610.666667pt;}
.x34_c00393{left:611.626667pt;}
.x28_c00393{left:614.666667pt;}
.x7f_c00393{left:615.626667pt;}
.xc5_c00393{left:617.706667pt;}
.x1c_c00393{left:618.666667pt;}
.xcf_c00393{left:622.666667pt;}
.x35_c00393{left:628.373333pt;}
.x49_c00393{left:629.333333pt;}
.xb0_c00393{left:632.000000pt;}
.x8f_c00393{left:632.960000pt;}
.x86_c00393{left:635.626667pt;}
.x65_c00393{left:638.666667pt;}
.xd7_c00393{left:644.000000pt;}
.xdf_c00393{left:648.000000pt;}
.xd9_c00393{left:650.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_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_3443618e5871424866ccd739.woff2')format("woff");}.ff1_c00394{font-family:ff1_c00394;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m42_c00394{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.ma9_c00394{transform:matrix(0.325153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325153,0.000000,0.000000,0.250000,0,0);}
.m54_c00394{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m65_c00394{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m14_c00394{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.m91_c00394{transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);}
.m44_c00394{transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);}
.mc3_c00394{transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);}
.m5a_c00394{transform:matrix(0.360813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360813,0.000000,0.000000,0.250000,0,0);}
.m59_c00394{transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);}
.mec_c00394{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m0_c00394{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m36_c00394{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mb_c00394{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.mab_c00394{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.ma1_c00394{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m26_c00394{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.me7_c00394{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.ma_c00394{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m71_c00394{transform:matrix(0.379985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379985,0.000000,0.000000,0.250000,0,0);}
.m27_c00394{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.maa_c00394{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m33_c00394{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m99_c00394{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m41_c00394{transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);}
.mc8_c00394{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m32_c00394{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m9_c00394{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m66_c00394{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m45_c00394{transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);}
.m53_c00394{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.me_c00394{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.mea_c00394{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m8a_c00394{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.mde_c00394{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);}
.mb9_c00394{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.me9_c00394{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mcf_c00394{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.ma4_c00394{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m95_c00394{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m74_c00394{transform:matrix(0.411810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411810,0.000000,0.000000,0.250000,0,0);}
.m96_c00394{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m4c_c00394{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.me3_c00394{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m18_c00394{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m29_c00394{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mb5_c00394{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m9f_c00394{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m69_c00394{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m61_c00394{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mb1_c00394{transform:matrix(0.419606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419606,0.000000,0.000000,0.250000,0,0);}
.m47_c00394{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m9c_c00394{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m55_c00394{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.mbd_c00394{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mb7_c00394{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m80_c00394{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m6e_c00394{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.ma6_c00394{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.mdf_c00394{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m97_c00394{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m2e_c00394{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.md5_c00394{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.ma0_c00394{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.ma2_c00394{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m4_c00394{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m5c_c00394{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m15_c00394{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mc9_c00394{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.mba_c00394{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m64_c00394{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m23_c00394{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.me6_c00394{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.mbf_c00394{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m92_c00394{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.mcb_c00394{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m78_c00394{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m89_c00394{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.me2_c00394{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m8b_c00394{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m9d_c00394{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m1f_c00394{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.meb_c00394{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.mb0_c00394{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.md8_c00394{transform:matrix(0.466807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466807,0.000000,0.000000,0.250000,0,0);}
.m22_c00394{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m52_c00394{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.me5_c00394{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m81_c00394{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m88_c00394{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mcc_c00394{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m17_c00394{transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);}
.m3_c00394{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m1d_c00394{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.mb2_c00394{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m46_c00394{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m3f_c00394{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m77_c00394{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mbb_c00394{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mc4_c00394{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m50_c00394{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.me8_c00394{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m79_c00394{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m1e_c00394{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m20_c00394{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_c00394{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.mc2_c00394{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.mb8_c00394{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mb6_c00394{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m3b_c00394{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m2c_c00394{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m43_c00394{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m5_c00394{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mbc_c00394{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m38_c00394{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m8_c00394{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.md0_c00394{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m4a_c00394{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m83_c00394{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m30_c00394{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m6a_c00394{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m6b_c00394{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m8e_c00394{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mdb_c00394{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.m62_c00394{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m73_c00394{transform:matrix(0.521800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521800,0.000000,0.000000,0.250000,0,0);}
.m2a_c00394{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m2_c00394{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m60_c00394{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mb4_c00394{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m98_c00394{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m57_c00394{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mad_c00394{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m37_c00394{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mcd_c00394{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.me4_c00394{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m63_c00394{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mc_c00394{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m9a_c00394{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m24_c00394{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m2b_c00394{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m90_c00394{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m86_c00394{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m9b_c00394{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m13_c00394{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m25_c00394{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m85_c00394{transform:matrix(0.539889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539889,0.000000,0.000000,0.250000,0,0);}
.mca_c00394{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m3a_c00394{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m5d_c00394{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m2f_c00394{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mda_c00394{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m6f_c00394{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m48_c00394{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m35_c00394{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.me0_c00394{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mf_c00394{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m5b_c00394{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m31_c00394{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mdd_c00394{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.ma8_c00394{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m16_c00394{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mac_c00394{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m3c_c00394{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m56_c00394{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m7f_c00394{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);}
.m6d_c00394{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m7c_c00394{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m7e_c00394{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m94_c00394{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m4e_c00394{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m49_c00394{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m9e_c00394{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m11_c00394{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m87_c00394{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m39_c00394{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.md_c00394{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m19_c00394{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m3d_c00394{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m12_c00394{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m4f_c00394{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mbe_c00394{transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);}
.m82_c00394{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.md1_c00394{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m84_c00394{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mb3_c00394{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.ma5_c00394{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m67_c00394{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m7a_c00394{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);}
.mdc_c00394{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m58_c00394{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.m3e_c00394{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m40_c00394{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m10_c00394{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mce_c00394{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m51_c00394{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m6_c00394{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);}
.m4d_c00394{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m7b_c00394{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);}
.m8c_c00394{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.mc5_c00394{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m4b_c00394{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m5f_c00394{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m1_c00394{transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);}
.m68_c00394{transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);}
.m7d_c00394{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);}
.m34_c00394{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m75_c00394{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m1b_c00394{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.md3_c00394{transform:matrix(0.678676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.678676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.678676,0.000000,0.000000,0.250000,0,0);}
.mae_c00394{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.mc7_c00394{transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);}
.mc0_c00394{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mc6_c00394{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m93_c00394{transform:matrix(0.706618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.706618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.706618,0.000000,0.000000,0.250000,0,0);}
.md9_c00394{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.md2_c00394{transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);}
.m2d_c00394{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mc1_c00394{transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);}
.m21_c00394{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.md6_c00394{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.m1c_c00394{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.md7_c00394{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m72_c00394{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m7_c00394{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.ma3_c00394{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.maf_c00394{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.ma7_c00394{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.md4_c00394{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.me1_c00394{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m5e_c00394{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m6c_c00394{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m70_c00394{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m76_c00394{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m28_c00394{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m8d_c00394{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m8f_c00394{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,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;}
}
.ws2_c00394{word-spacing:-6.400641px;}
.ws1_c00394{word-spacing:-4.637331px;}
.ws0_c00394{word-spacing:-3.029280px;}
.ws3_c00394{word-spacing:0.000000px;}
.fc0_c00394{color:transparent;}
.fs7_c00394{font-size:3.420000px;}
.fs3_c00394{font-size:18.720000px;}
.fs1_c00394{font-size:20.400000px;}
.fs5_c00394{font-size:25.500000px;}
.fs2_c00394{font-size:28.920000px;}
.fs4_c00394{font-size:32.340000px;}
.fs0_c00394{font-size:35.700000px;}
.fs6_c00394{font-size:39.120000px;}
.y0_c00394{bottom:0.000000px;}
.yd4_c00394{bottom:268.245000px;}
.yd3_c00394{bottom:269.325000px;}
.yd0_c00394{bottom:269.745000px;}
.ycf_c00394{bottom:270.405000px;}
.yd2_c00394{bottom:271.470000px;}
.yd1_c00394{bottom:271.905000px;}
.ycc_c00394{bottom:287.745000px;}
.ycb_c00394{bottom:289.245000px;}
.yce_c00394{bottom:289.905000px;}
.ycd_c00394{bottom:290.130000px;}
.yca_c00394{bottom:290.325000px;}
.yc9_c00394{bottom:291.405000px;}
.yc7_c00394{bottom:308.745000px;}
.yc8_c00394{bottom:309.630000px;}
.yc6_c00394{bottom:310.905000px;}
.yc4_c00394{bottom:328.470000px;}
.yc5_c00394{bottom:330.405000px;}
.ybf_c00394{bottom:347.745000px;}
.yc3_c00394{bottom:348.825000px;}
.yc1_c00394{bottom:349.245000px;}
.yc0_c00394{bottom:349.905000px;}
.yc2_c00394{bottom:350.130000px;}
.ybb_c00394{bottom:366.405000px;}
.ybd_c00394{bottom:367.245000px;}
.ybe_c00394{bottom:367.470000px;}
.ybc_c00394{bottom:368.745000px;}
.yb9_c00394{bottom:369.405000px;}
.yba_c00394{bottom:369.630000px;}
.yb8_c00394{bottom:370.470000px;}
.yb7_c00394{bottom:384.405000px;}
.yb6_c00394{bottom:386.745000px;}
.yb1_c00394{bottom:388.245000px;}
.yb5_c00394{bottom:388.905000px;}
.yb3_c00394{bottom:389.130000px;}
.yb4_c00394{bottom:389.970000px;}
.yb2_c00394{bottom:390.405000px;}
.yae_c00394{bottom:407.550000px;}
.yab_c00394{bottom:407.745000px;}
.yaf_c00394{bottom:408.405000px;}
.yb0_c00394{bottom:408.630000px;}
.yad_c00394{bottom:409.050000px;}
.yac_c00394{bottom:409.905000px;}
.ya7_c00394{bottom:427.245000px;}
.ya8_c00394{bottom:428.325000px;}
.ya6_c00394{bottom:429.405000px;}
.ya9_c00394{bottom:429.630000px;}
.yaa_c00394{bottom:430.470000px;}
.ya5_c00394{bottom:446.745000px;}
.ya4_c00394{bottom:448.905000px;}
.y9e_c00394{bottom:465.405000px;}
.ya1_c00394{bottom:466.245000px;}
.ya3_c00394{bottom:467.130000px;}
.y9f_c00394{bottom:467.745000px;}
.y9d_c00394{bottom:467.970000px;}
.ya0_c00394{bottom:468.405000px;}
.ya2_c00394{bottom:469.470000px;}
.y98_c00394{bottom:485.745000px;}
.y99_c00394{bottom:485.970000px;}
.y9b_c00394{bottom:486.630000px;}
.y9c_c00394{bottom:487.470000px;}
.y95_c00394{bottom:487.905000px;}
.y97_c00394{bottom:488.130000px;}
.y9a_c00394{bottom:488.970000px;}
.y96_c00394{bottom:489.405000px;}
.y94_c00394{bottom:505.245000px;}
.y92_c00394{bottom:506.745000px;}
.y93_c00394{bottom:507.405000px;}
.y91_c00394{bottom:508.905000px;}
.y8f_c00394{bottom:527.130000px;}
.y8e_c00394{bottom:528.405000px;}
.y90_c00394{bottom:529.470000px;}
.y87_c00394{bottom:545.550000px;}
.y86_c00394{bottom:545.745000px;}
.y8d_c00394{bottom:546.405000px;}
.y88_c00394{bottom:546.630000px;}
.y8c_c00394{bottom:546.825000px;}
.y8a_c00394{bottom:547.470000px;}
.y89_c00394{bottom:547.905000px;}
.y8b_c00394{bottom:548.970000px;}
.y84_c00394{bottom:564.405000px;}
.y80_c00394{bottom:565.245000px;}
.y83_c00394{bottom:565.680000px;}
.y85_c00394{bottom:565.905000px;}
.y81_c00394{bottom:566.130000px;}
.y82_c00394{bottom:567.405000px;}
.y7f_c00394{bottom:584.745000px;}
.y7b_c00394{bottom:586.245000px;}
.y7c_c00394{bottom:586.905000px;}
.y7d_c00394{bottom:587.130000px;}
.y7e_c00394{bottom:588.405000px;}
.y79_c00394{bottom:603.405000px;}
.y77_c00394{bottom:605.745000px;}
.y7a_c00394{bottom:607.470000px;}
.y78_c00394{bottom:607.905000px;}
.y74_c00394{bottom:625.245000px;}
.y76_c00394{bottom:625.905000px;}
.y75_c00394{bottom:627.405000px;}
.y73_c00394{bottom:643.245000px;}
.y70_c00394{bottom:643.905000px;}
.y71_c00394{bottom:644.550000px;}
.y72_c00394{bottom:644.745000px;}
.y6e_c00394{bottom:645.630000px;}
.y6f_c00394{bottom:646.905000px;}
.y6a_c00394{bottom:663.180000px;}
.y6c_c00394{bottom:663.405000px;}
.y69_c00394{bottom:663.825000px;}
.y6b_c00394{bottom:665.130000px;}
.y6d_c00394{bottom:665.325000px;}
.y67_c00394{bottom:666.405000px;}
.y68_c00394{bottom:666.420000px;}
.y63_c00394{bottom:682.905000px;}
.y64_c00394{bottom:683.745000px;}
.y60_c00394{bottom:683.970000px;}
.y61_c00394{bottom:684.825000px;}
.y65_c00394{bottom:685.050000px;}
.y62_c00394{bottom:685.905000px;}
.y66_c00394{bottom:686.130000px;}
.y5f_c00394{bottom:702.405000px;}
.y5c_c00394{bottom:703.245000px;}
.y5d_c00394{bottom:703.470000px;}
.y5b_c00394{bottom:705.405000px;}
.y5a_c00394{bottom:705.630000px;}
.y5e_c00394{bottom:706.470000px;}
.y59_c00394{bottom:722.745000px;}
.y57_c00394{bottom:724.905000px;}
.y58_c00394{bottom:725.130000px;}
.y56_c00394{bottom:725.970000px;}
.y54_c00394{bottom:744.405000px;}
.y55_c00394{bottom:745.905000px;}
.y50_c00394{bottom:762.180000px;}
.y53_c00394{bottom:763.245000px;}
.y4e_c00394{bottom:764.130000px;}
.y51_c00394{bottom:764.325000px;}
.y52_c00394{bottom:764.970000px;}
.y4f_c00394{bottom:765.405000px;}
.y4b_c00394{bottom:782.745000px;}
.y4d_c00394{bottom:783.825000px;}
.y4a_c00394{bottom:784.905000px;}
.y4c_c00394{bottom:785.130000px;}
.y49_c00394{bottom:802.245000px;}
.y47_c00394{bottom:804.405000px;}
.y48_c00394{bottom:805.470000px;}
.y45_c00394{bottom:821.745000px;}
.y46_c00394{bottom:822.405000px;}
.y42_c00394{bottom:822.630000px;}
.y44_c00394{bottom:823.470000px;}
.y43_c00394{bottom:823.905000px;}
.y41_c00394{bottom:824.970000px;}
.y3c_c00394{bottom:839.325000px;}
.y3f_c00394{bottom:840.405000px;}
.y3b_c00394{bottom:841.245000px;}
.y40_c00394{bottom:842.130000px;}
.y3d_c00394{bottom:842.970000px;}
.y3a_c00394{bottom:843.405000px;}
.y3e_c00394{bottom:843.630000px;}
.y36_c00394{bottom:860.325000px;}
.y37_c00394{bottom:861.180000px;}
.y39_c00394{bottom:862.905000px;}
.y38_c00394{bottom:864.405000px;}
.y35_c00394{bottom:880.245000px;}
.y31_c00394{bottom:880.470000px;}
.y33_c00394{bottom:880.905000px;}
.y30_c00394{bottom:882.405000px;}
.y34_c00394{bottom:882.630000px;}
.y2e_c00394{bottom:883.470000px;}
.y2f_c00394{bottom:883.905000px;}
.y32_c00394{bottom:884.970000px;}
.y2a_c00394{bottom:898.905000px;}
.y28_c00394{bottom:899.745000px;}
.y2d_c00394{bottom:901.245000px;}
.y27_c00394{bottom:901.905000px;}
.y2c_c00394{bottom:902.130000px;}
.y2b_c00394{bottom:902.970000px;}
.y29_c00394{bottom:903.405000px;}
.y24_c00394{bottom:918.405000px;}
.y21_c00394{bottom:919.680000px;}
.y25_c00394{bottom:919.905000px;}
.y26_c00394{bottom:921.405000px;}
.y23_c00394{bottom:921.825000px;}
.y22_c00394{bottom:922.905000px;}
.y1e_c00394{bottom:937.905000px;}
.y20_c00394{bottom:940.245000px;}
.y1f_c00394{bottom:941.970000px;}
.y1d_c00394{bottom:942.405000px;}
.y1a_c00394{bottom:959.745000px;}
.y19_c00394{bottom:961.905000px;}
.y1b_c00394{bottom:962.970000px;}
.y1c_c00394{bottom:963.405000px;}
.y17_c00394{bottom:979.245000px;}
.y15_c00394{bottom:981.405000px;}
.y16_c00394{bottom:981.630000px;}
.y18_c00394{bottom:982.470000px;}
.y12_c00394{bottom:998.745000px;}
.y14_c00394{bottom:1000.245000px;}
.y11_c00394{bottom:1000.905000px;}
.y13_c00394{bottom:1001.130000px;}
.ye_c00394{bottom:1018.245000px;}
.yd_c00394{bottom:1019.325000px;}
.yc_c00394{bottom:1020.405000px;}
.yf_c00394{bottom:1020.630000px;}
.y10_c00394{bottom:1021.905000px;}
.y7_c00394{bottom:1036.905000px;}
.y8_c00394{bottom:1039.245000px;}
.ya_c00394{bottom:1040.130000px;}
.y9_c00394{bottom:1040.325000px;}
.yb_c00394{bottom:1040.970000px;}
.y6_c00394{bottom:1041.405000px;}
.y4_c00394{bottom:1058.745000px;}
.y5_c00394{bottom:1059.630000px;}
.y3_c00394{bottom:1060.905000px;}
.y1_c00394{bottom:1097.745000px;}
.y2_c00394{bottom:1099.050000px;}
.h8_c00394{height:4.206533px;}
.h4_c00394{height:23.025234px;}
.h2_c00394{height:25.091602px;}
.h6_c00394{height:31.364502px;}
.h3_c00394{height:35.571035px;}
.h5_c00394{height:39.777568px;}
.h1_c00394{height:43.910303px;}
.h7_c00394{height:48.116836px;}
.h0_c00394{height:1335.000000px;}
.w0_c00394{width:880.500000px;}
.x0_c00394{left:0.000000px;}
.x104_c00394{left:150.645000px;}
.x3_c00394{left:151.920000px;}
.x2e_c00394{left:166.500000px;}
.xef_c00394{left:168.000000px;}
.xba_c00394{left:169.500000px;}
.x12_c00394{left:171.420000px;}
.x43_c00394{left:172.500000px;}
.xfb_c00394{left:174.420000px;}
.x38_c00394{left:175.920000px;}
.x2b_c00394{left:181.500000px;}
.x65_c00394{left:183.000000px;}
.x9f_c00394{left:190.080000px;}
.x44_c00394{left:195.420000px;}
.x89_c00394{left:197.580000px;}
.xf0_c00394{left:199.080000px;}
.x2f_c00394{left:201.000000px;}
.xd5_c00394{left:202.500000px;}
.x102_c00394{left:203.580000px;}
.xf2_c00394{left:205.920000px;}
.x13_c00394{left:207.000000px;}
.x4f_c00394{left:208.080000px;}
.x5b_c00394{left:210.420000px;}
.xab_c00394{left:213.000000px;}
.x2c_c00394{left:214.500000px;}
.x8a_c00394{left:216.000000px;}
.x103_c00394{left:217.500000px;}
.x91_c00394{left:219.000000px;}
.xdb_c00394{left:220.500000px;}
.x80_c00394{left:222.000000px;}
.x4_c00394{left:223.500000px;}
.x6f_c00394{left:225.000000px;}
.x1f_c00394{left:226.500000px;}
.x78_c00394{left:228.420000px;}
.xd1_c00394{left:231.000000px;}
.xd6_c00394{left:232.500000px;}
.xf3_c00394{left:234.000000px;}
.xff_c00394{left:235.080000px;}
.xa0_c00394{left:237.000000px;}
.x50_c00394{left:238.500000px;}
.x5_c00394{left:240.420000px;}
.x2d_c00394{left:244.920000px;}
.xc0_c00394{left:246.000000px;}
.x107_c00394{left:249.000000px;}
.xac_c00394{left:250.920000px;}
.xdf_c00394{left:252.420000px;}
.xdc_c00394{left:254.145000px;}
.x5c_c00394{left:256.080000px;}
.xa4_c00394{left:258.000000px;}
.x39_c00394{left:261.420000px;}
.x98_c00394{left:262.920000px;}
.x30_c00394{left:264.420000px;}
.xc4_c00394{left:265.920000px;}
.x70_c00394{left:267.000000px;}
.x66_c00394{left:271.080000px;}
.xf9_c00394{left:273.000000px;}
.x5d_c00394{left:274.920000px;}
.x14_c00394{left:277.500000px;}
.x20_c00394{left:279.420000px;}
.x6_c00394{left:280.500000px;}
.xca_c00394{left:282.000000px;}
.xe5_c00394{left:283.500000px;}
.xa1_c00394{left:285.420000px;}
.x71_c00394{left:286.920000px;}
.x51_c00394{left:289.080000px;}
.x31_c00394{left:290.580000px;}
.xe0_c00394{left:294.420000px;}
.x81_c00394{left:297.420000px;}
.x45_c00394{left:300.000000px;}
.x5e_c00394{left:301.500000px;}
.xcb_c00394{left:303.420000px;}
.x21_c00394{left:305.580000px;}
.xc5_c00394{left:309.000000px;}
.x52_c00394{left:310.080000px;}
.x72_c00394{left:313.920000px;}
.xd7_c00394{left:315.000000px;}
.xf4_c00394{left:316.500000px;}
.xf1_c00394{left:317.580000px;}
.x15_c00394{left:319.080000px;}
.x82_c00394{left:323.580000px;}
.xa2_c00394{left:325.080000px;}
.x7_c00394{left:327.000000px;}
.x67_c00394{left:331.080000px;}
.xb1_c00394{left:332.355000px;}
.xc6_c00394{left:333.420000px;}
.x99_c00394{left:334.920000px;}
.xe1_c00394{left:337.500000px;}
.x53_c00394{left:340.500000px;}
.x108_c00394{left:342.420000px;}
.xe6_c00394{left:343.920000px;}
.x16_c00394{left:345.000000px;}
.x22_c00394{left:346.500000px;}
.x8_c00394{left:348.000000px;}
.xbb_c00394{left:349.500000px;}
.x68_c00394{left:351.000000px;}
.xe2_c00394{left:355.500000px;}
.x79_c00394{left:357.000000px;}
.xa5_c00394{left:359.580000px;}
.x32_c00394{left:361.500000px;}
.x9_c00394{left:363.000000px;}
.x9a_c00394{left:364.080000px;}
.xb2_c00394{left:366.000000px;}
.xe7_c00394{left:370.920000px;}
.x54_c00394{left:372.000000px;}
.xe3_c00394{left:373.500000px;}
.x3a_c00394{left:375.000000px;}
.x100_c00394{left:376.500000px;}
.x69_c00394{left:378.000000px;}
.xad_c00394{left:380.580000px;}
.x17_c00394{left:382.080000px;}
.xa3_c00394{left:385.920000px;}
.x9b_c00394{left:387.000000px;}
.x2_c00394{left:388.500000px;}
.x46_c00394{left:390.420000px;}
.x3b_c00394{left:393.420000px;}
.x109_c00394{left:394.500000px;}
.x55_c00394{left:397.080000px;}
.xa6_c00394{left:398.580000px;}
.xa_c00394{left:400.500000px;}
.xb3_c00394{left:402.000000px;}
.xbc_c00394{left:403.500000px;}
.x23_c00394{left:406.920000px;}
.x7a_c00394{left:408.000000px;}
.xcc_c00394{left:409.500000px;}
.x8b_c00394{left:411.000000px;}
.x18_c00394{left:414.000000px;}
.x47_c00394{left:417.000000px;}
.xd8_c00394{left:418.500000px;}
.x3c_c00394{left:420.000000px;}
.xe8_c00394{left:421.080000px;}
.x33_c00394{left:425.580000px;}
.xf5_c00394{left:427.500000px;}
.x56_c00394{left:430.500000px;}
.xdd_c00394{left:433.500000px;}
.x24_c00394{left:435.420000px;}
.x7b_c00394{left:439.500000px;}
.xd9_c00394{left:442.500000px;}
.xc7_c00394{left:445.080000px;}
.xcd_c00394{left:446.580000px;}
.x3d_c00394{left:450.000000px;}
.xe9_c00394{left:451.500000px;}
.x48_c00394{left:453.000000px;}
.xec_c00394{left:454.500000px;}
.x9c_c00394{left:457.920000px;}
.x92_c00394{left:459.420000px;}
.x5f_c00394{left:460.500000px;}
.x73_c00394{left:461.580000px;}
.xc8_c00394{left:465.420000px;}
.x83_c00394{left:466.920000px;}
.xce_c00394{left:468.000000px;}
.xb_c00394{left:469.080000px;}
.x57_c00394{left:471.000000px;}
.xed_c00394{left:472.500000px;}
.xb4_c00394{left:474.420000px;}
.x25_c00394{left:475.500000px;}
.xd2_c00394{left:478.500000px;}
.x74_c00394{left:480.000000px;}
.x8c_c00394{left:481.500000px;}
.x19_c00394{left:486.000000px;}
.xbd_c00394{left:487.500000px;}
.xa7_c00394{left:489.420000px;}
.x84_c00394{left:490.920000px;}
.xe4_c00394{left:492.000000px;}
.x9d_c00394{left:493.500000px;}
.x93_c00394{left:496.500000px;}
.x60_c00394{left:497.580000px;}
.xc_c00394{left:499.500000px;}
.x7c_c00394{left:501.420000px;}
.x75_c00394{left:505.920000px;}
.xea_c00394{left:507.000000px;}
.xf6_c00394{left:508.920000px;}
.xfc_c00394{left:510.000000px;}
.xb5_c00394{left:514.080000px;}
.x85_c00394{left:518.580000px;}
.x6a_c00394{left:522.000000px;}
.xa8_c00394{left:525.000000px;}
.x34_c00394{left:526.500000px;}
.x3e_c00394{left:528.000000px;}
.x61_c00394{left:529.500000px;}
.x26_c00394{left:531.420000px;}
.x58_c00394{left:532.500000px;}
.xf7_c00394{left:537.000000px;}
.xc1_c00394{left:538.080000px;}
.x101_c00394{left:540.000000px;}
.xb8_c00394{left:541.920000px;}
.x8d_c00394{left:544.500000px;}
.x1a_c00394{left:547.500000px;}
.xd_c00394{left:549.420000px;}
.xee_c00394{left:552.000000px;}
.x105_c00394{left:553.920000px;}
.x49_c00394{left:556.080000px;}
.x59_c00394{left:557.580000px;}
.x94_c00394{left:559.500000px;}
.x6b_c00394{left:561.420000px;}
.x1b_c00394{left:562.920000px;}
.xeb_c00394{left:565.080000px;}
.xbe_c00394{left:566.580000px;}
.xd3_c00394{left:568.920000px;}
.xb9_c00394{left:570.000000px;}
.xcf_c00394{left:573.000000px;}
.x4a_c00394{left:574.920000px;}
.xe_c00394{left:576.000000px;}
.x7d_c00394{left:577.920000px;}
.x3f_c00394{left:579.420000px;}
.x62_c00394{left:580.500000px;}
.xae_c00394{left:582.000000px;}
.x8e_c00394{left:583.920000px;}
.xbf_c00394{left:585.000000px;}
.x95_c00394{left:589.920000px;}
.x76_c00394{left:591.000000px;}
.x6c_c00394{left:594.000000px;}
.x27_c00394{left:598.500000px;}
.x1c_c00394{left:600.000000px;}
.x4b_c00394{left:601.500000px;}
.x9e_c00394{left:603.420000px;}
.xf_c00394{left:604.500000px;}
.x40_c00394{left:606.000000px;}
.xfa_c00394{left:607.920000px;}
.xfd_c00394{left:610.500000px;}
.x63_c00394{left:611.580000px;}
.xb6_c00394{left:613.080000px;}
.x28_c00394{left:615.000000px;}
.xc2_c00394{left:616.500000px;}
.xaf_c00394{left:619.080000px;}
.xde_c00394{left:627.000000px;}
.x96_c00394{left:629.580000px;}
.x4c_c00394{left:631.500000px;}
.xc9_c00394{left:632.580000px;}
.x86_c00394{left:635.580000px;}
.xfe_c00394{left:636.645000px;}
.xa9_c00394{left:638.775000px;}
.xb7_c00394{left:639.855000px;}
.x41_c00394{left:643.500000px;}
.xd4_c00394{left:644.580000px;}
.x10_c00394{left:646.500000px;}
.xb0_c00394{left:649.500000px;}
.xc3_c00394{left:651.000000px;}
.x35_c00394{left:652.500000px;}
.x87_c00394{left:655.920000px;}
.x8f_c00394{left:658.500000px;}
.x42_c00394{left:660.000000px;}
.x11_c00394{left:662.580000px;}
.x7e_c00394{left:666.420000px;}
.x29_c00394{left:669.000000px;}
.x97_c00394{left:670.920000px;}
.x36_c00394{left:672.420000px;}
.x106_c00394{left:676.080000px;}
.xda_c00394{left:679.080000px;}
.x6d_c00394{left:680.580000px;}
.x88_c00394{left:682.500000px;}
.x4d_c00394{left:684.420000px;}
.x2a_c00394{left:688.500000px;}
.x1d_c00394{left:690.000000px;}
.x90_c00394{left:693.000000px;}
.xf8_c00394{left:694.500000px;}
.x64_c00394{left:696.000000px;}
.x7f_c00394{left:697.500000px;}
.xd0_c00394{left:699.420000px;}
.x77_c00394{left:700.920000px;}
.x1_c00394{left:703.500000px;}
.x4e_c00394{left:705.000000px;}
.x5a_c00394{left:706.920000px;}
.x1e_c00394{left:711.000000px;}
.x37_c00394{left:713.580000px;}
.xaa_c00394{left:715.080000px;}
.x6e_c00394{left:724.500000px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.ls0_c00394{letter-spacing:0.000000pt;}
.ws2_c00394{word-spacing:-5.689459pt;}
.ws1_c00394{word-spacing:-4.122072pt;}
.ws0_c00394{word-spacing:-2.692693pt;}
.ws3_c00394{word-spacing:0.000000pt;}
.fs7_c00394{font-size:3.040000pt;}
.fs3_c00394{font-size:16.640000pt;}
.fs1_c00394{font-size:18.133333pt;}
.fs5_c00394{font-size:22.666667pt;}
.fs2_c00394{font-size:25.706667pt;}
.fs4_c00394{font-size:28.746667pt;}
.fs0_c00394{font-size:31.733333pt;}
.fs6_c00394{font-size:34.773333pt;}
.y0_c00394{bottom:0.000000pt;}
.yd4_c00394{bottom:238.440000pt;}
.yd3_c00394{bottom:239.400000pt;}
.yd0_c00394{bottom:239.773333pt;}
.ycf_c00394{bottom:240.360000pt;}
.yd2_c00394{bottom:241.306667pt;}
.yd1_c00394{bottom:241.693333pt;}
.ycc_c00394{bottom:255.773333pt;}
.ycb_c00394{bottom:257.106667pt;}
.yce_c00394{bottom:257.693333pt;}
.ycd_c00394{bottom:257.893333pt;}
.yca_c00394{bottom:258.066667pt;}
.yc9_c00394{bottom:259.026667pt;}
.yc7_c00394{bottom:274.440000pt;}
.yc8_c00394{bottom:275.226667pt;}
.yc6_c00394{bottom:276.360000pt;}
.yc4_c00394{bottom:291.973333pt;}
.yc5_c00394{bottom:293.693333pt;}
.ybf_c00394{bottom:309.106667pt;}
.yc3_c00394{bottom:310.066667pt;}
.yc1_c00394{bottom:310.440000pt;}
.yc0_c00394{bottom:311.026667pt;}
.yc2_c00394{bottom:311.226667pt;}
.ybb_c00394{bottom:325.693333pt;}
.ybd_c00394{bottom:326.440000pt;}
.ybe_c00394{bottom:326.640000pt;}
.ybc_c00394{bottom:327.773333pt;}
.yb9_c00394{bottom:328.360000pt;}
.yba_c00394{bottom:328.560000pt;}
.yb8_c00394{bottom:329.306667pt;}
.yb7_c00394{bottom:341.693333pt;}
.yb6_c00394{bottom:343.773333pt;}
.yb1_c00394{bottom:345.106667pt;}
.yb5_c00394{bottom:345.693333pt;}
.yb3_c00394{bottom:345.893333pt;}
.yb4_c00394{bottom:346.640000pt;}
.yb2_c00394{bottom:347.026667pt;}
.yae_c00394{bottom:362.266667pt;}
.yab_c00394{bottom:362.440000pt;}
.yaf_c00394{bottom:363.026667pt;}
.yb0_c00394{bottom:363.226667pt;}
.yad_c00394{bottom:363.600000pt;}
.yac_c00394{bottom:364.360000pt;}
.ya7_c00394{bottom:379.773333pt;}
.ya8_c00394{bottom:380.733333pt;}
.ya6_c00394{bottom:381.693333pt;}
.ya9_c00394{bottom:381.893333pt;}
.yaa_c00394{bottom:382.640000pt;}
.ya5_c00394{bottom:397.106667pt;}
.ya4_c00394{bottom:399.026667pt;}
.y9e_c00394{bottom:413.693333pt;}
.ya1_c00394{bottom:414.440000pt;}
.ya3_c00394{bottom:415.226667pt;}
.y9f_c00394{bottom:415.773333pt;}
.y9d_c00394{bottom:415.973333pt;}
.ya0_c00394{bottom:416.360000pt;}
.ya2_c00394{bottom:417.306667pt;}
.y98_c00394{bottom:431.773333pt;}
.y99_c00394{bottom:431.973333pt;}
.y9b_c00394{bottom:432.560000pt;}
.y9c_c00394{bottom:433.306667pt;}
.y95_c00394{bottom:433.693333pt;}
.y97_c00394{bottom:433.893333pt;}
.y9a_c00394{bottom:434.640000pt;}
.y96_c00394{bottom:435.026667pt;}
.y94_c00394{bottom:449.106667pt;}
.y92_c00394{bottom:450.440000pt;}
.y93_c00394{bottom:451.026667pt;}
.y91_c00394{bottom:452.360000pt;}
.y8f_c00394{bottom:468.560000pt;}
.y8e_c00394{bottom:469.693333pt;}
.y90_c00394{bottom:470.640000pt;}
.y87_c00394{bottom:484.933333pt;}
.y86_c00394{bottom:485.106667pt;}
.y8d_c00394{bottom:485.693333pt;}
.y88_c00394{bottom:485.893333pt;}
.y8c_c00394{bottom:486.066667pt;}
.y8a_c00394{bottom:486.640000pt;}
.y89_c00394{bottom:487.026667pt;}
.y8b_c00394{bottom:487.973333pt;}
.y84_c00394{bottom:501.693333pt;}
.y80_c00394{bottom:502.440000pt;}
.y83_c00394{bottom:502.826667pt;}
.y85_c00394{bottom:503.026667pt;}
.y81_c00394{bottom:503.226667pt;}
.y82_c00394{bottom:504.360000pt;}
.y7f_c00394{bottom:519.773333pt;}
.y7b_c00394{bottom:521.106667pt;}
.y7c_c00394{bottom:521.693333pt;}
.y7d_c00394{bottom:521.893333pt;}
.y7e_c00394{bottom:523.026667pt;}
.y79_c00394{bottom:536.360000pt;}
.y77_c00394{bottom:538.440000pt;}
.y7a_c00394{bottom:539.973333pt;}
.y78_c00394{bottom:540.360000pt;}
.y74_c00394{bottom:555.773333pt;}
.y76_c00394{bottom:556.360000pt;}
.y75_c00394{bottom:557.693333pt;}
.y73_c00394{bottom:571.773333pt;}
.y70_c00394{bottom:572.360000pt;}
.y71_c00394{bottom:572.933333pt;}
.y72_c00394{bottom:573.106667pt;}
.y6e_c00394{bottom:573.893333pt;}
.y6f_c00394{bottom:575.026667pt;}
.y6a_c00394{bottom:589.493333pt;}
.y6c_c00394{bottom:589.693333pt;}
.y69_c00394{bottom:590.066667pt;}
.y6b_c00394{bottom:591.226667pt;}
.y6d_c00394{bottom:591.400000pt;}
.y67_c00394{bottom:592.360000pt;}
.y68_c00394{bottom:592.373333pt;}
.y63_c00394{bottom:607.026667pt;}
.y64_c00394{bottom:607.773333pt;}
.y60_c00394{bottom:607.973333pt;}
.y61_c00394{bottom:608.733333pt;}
.y65_c00394{bottom:608.933333pt;}
.y62_c00394{bottom:609.693333pt;}
.y66_c00394{bottom:609.893333pt;}
.y5f_c00394{bottom:624.360000pt;}
.y5c_c00394{bottom:625.106667pt;}
.y5d_c00394{bottom:625.306667pt;}
.y5b_c00394{bottom:627.026667pt;}
.y5a_c00394{bottom:627.226667pt;}
.y5e_c00394{bottom:627.973333pt;}
.y59_c00394{bottom:642.440000pt;}
.y57_c00394{bottom:644.360000pt;}
.y58_c00394{bottom:644.560000pt;}
.y56_c00394{bottom:645.306667pt;}
.y54_c00394{bottom:661.693333pt;}
.y55_c00394{bottom:663.026667pt;}
.y50_c00394{bottom:677.493333pt;}
.y53_c00394{bottom:678.440000pt;}
.y4e_c00394{bottom:679.226667pt;}
.y51_c00394{bottom:679.400000pt;}
.y52_c00394{bottom:679.973333pt;}
.y4f_c00394{bottom:680.360000pt;}
.y4b_c00394{bottom:695.773333pt;}
.y4d_c00394{bottom:696.733333pt;}
.y4a_c00394{bottom:697.693333pt;}
.y4c_c00394{bottom:697.893333pt;}
.y49_c00394{bottom:713.106667pt;}
.y47_c00394{bottom:715.026667pt;}
.y48_c00394{bottom:715.973333pt;}
.y45_c00394{bottom:730.440000pt;}
.y46_c00394{bottom:731.026667pt;}
.y42_c00394{bottom:731.226667pt;}
.y44_c00394{bottom:731.973333pt;}
.y43_c00394{bottom:732.360000pt;}
.y41_c00394{bottom:733.306667pt;}
.y3c_c00394{bottom:746.066667pt;}
.y3f_c00394{bottom:747.026667pt;}
.y3b_c00394{bottom:747.773333pt;}
.y40_c00394{bottom:748.560000pt;}
.y3d_c00394{bottom:749.306667pt;}
.y3a_c00394{bottom:749.693333pt;}
.y3e_c00394{bottom:749.893333pt;}
.y36_c00394{bottom:764.733333pt;}
.y37_c00394{bottom:765.493333pt;}
.y39_c00394{bottom:767.026667pt;}
.y38_c00394{bottom:768.360000pt;}
.y35_c00394{bottom:782.440000pt;}
.y31_c00394{bottom:782.640000pt;}
.y33_c00394{bottom:783.026667pt;}
.y30_c00394{bottom:784.360000pt;}
.y34_c00394{bottom:784.560000pt;}
.y2e_c00394{bottom:785.306667pt;}
.y2f_c00394{bottom:785.693333pt;}
.y32_c00394{bottom:786.640000pt;}
.y2a_c00394{bottom:799.026667pt;}
.y28_c00394{bottom:799.773333pt;}
.y2d_c00394{bottom:801.106667pt;}
.y27_c00394{bottom:801.693333pt;}
.y2c_c00394{bottom:801.893333pt;}
.y2b_c00394{bottom:802.640000pt;}
.y29_c00394{bottom:803.026667pt;}
.y24_c00394{bottom:816.360000pt;}
.y21_c00394{bottom:817.493333pt;}
.y25_c00394{bottom:817.693333pt;}
.y26_c00394{bottom:819.026667pt;}
.y23_c00394{bottom:819.400000pt;}
.y22_c00394{bottom:820.360000pt;}
.y1e_c00394{bottom:833.693333pt;}
.y20_c00394{bottom:835.773333pt;}
.y1f_c00394{bottom:837.306667pt;}
.y1d_c00394{bottom:837.693333pt;}
.y1a_c00394{bottom:853.106667pt;}
.y19_c00394{bottom:855.026667pt;}
.y1b_c00394{bottom:855.973333pt;}
.y1c_c00394{bottom:856.360000pt;}
.y17_c00394{bottom:870.440000pt;}
.y15_c00394{bottom:872.360000pt;}
.y16_c00394{bottom:872.560000pt;}
.y18_c00394{bottom:873.306667pt;}
.y12_c00394{bottom:887.773333pt;}
.y14_c00394{bottom:889.106667pt;}
.y11_c00394{bottom:889.693333pt;}
.y13_c00394{bottom:889.893333pt;}
.ye_c00394{bottom:905.106667pt;}
.yd_c00394{bottom:906.066667pt;}
.yc_c00394{bottom:907.026667pt;}
.yf_c00394{bottom:907.226667pt;}
.y10_c00394{bottom:908.360000pt;}
.y7_c00394{bottom:921.693333pt;}
.y8_c00394{bottom:923.773333pt;}
.ya_c00394{bottom:924.560000pt;}
.y9_c00394{bottom:924.733333pt;}
.yb_c00394{bottom:925.306667pt;}
.y6_c00394{bottom:925.693333pt;}
.y4_c00394{bottom:941.106667pt;}
.y5_c00394{bottom:941.893333pt;}
.y3_c00394{bottom:943.026667pt;}
.y1_c00394{bottom:975.773333pt;}
.y2_c00394{bottom:976.933333pt;}
.h8_c00394{height:3.739141pt;}
.h4_c00394{height:20.466875pt;}
.h2_c00394{height:22.303646pt;}
.h6_c00394{height:27.879557pt;}
.h3_c00394{height:31.618698pt;}
.h5_c00394{height:35.357839pt;}
.h1_c00394{height:39.031380pt;}
.h7_c00394{height:42.770521pt;}
.h0_c00394{height:1186.666667pt;}
.w0_c00394{width:782.666667pt;}
.x0_c00394{left:0.000000pt;}
.x104_c00394{left:133.906667pt;}
.x3_c00394{left:135.040000pt;}
.x2e_c00394{left:148.000000pt;}
.xef_c00394{left:149.333333pt;}
.xba_c00394{left:150.666667pt;}
.x12_c00394{left:152.373333pt;}
.x43_c00394{left:153.333333pt;}
.xfb_c00394{left:155.040000pt;}
.x38_c00394{left:156.373333pt;}
.x2b_c00394{left:161.333333pt;}
.x65_c00394{left:162.666667pt;}
.x9f_c00394{left:168.960000pt;}
.x44_c00394{left:173.706667pt;}
.x89_c00394{left:175.626667pt;}
.xf0_c00394{left:176.960000pt;}
.x2f_c00394{left:178.666667pt;}
.xd5_c00394{left:180.000000pt;}
.x102_c00394{left:180.960000pt;}
.xf2_c00394{left:183.040000pt;}
.x13_c00394{left:184.000000pt;}
.x4f_c00394{left:184.960000pt;}
.x5b_c00394{left:187.040000pt;}
.xab_c00394{left:189.333333pt;}
.x2c_c00394{left:190.666667pt;}
.x8a_c00394{left:192.000000pt;}
.x103_c00394{left:193.333333pt;}
.x91_c00394{left:194.666667pt;}
.xdb_c00394{left:196.000000pt;}
.x80_c00394{left:197.333333pt;}
.x4_c00394{left:198.666667pt;}
.x6f_c00394{left:200.000000pt;}
.x1f_c00394{left:201.333333pt;}
.x78_c00394{left:203.040000pt;}
.xd1_c00394{left:205.333333pt;}
.xd6_c00394{left:206.666667pt;}
.xf3_c00394{left:208.000000pt;}
.xff_c00394{left:208.960000pt;}
.xa0_c00394{left:210.666667pt;}
.x50_c00394{left:212.000000pt;}
.x5_c00394{left:213.706667pt;}
.x2d_c00394{left:217.706667pt;}
.xc0_c00394{left:218.666667pt;}
.x107_c00394{left:221.333333pt;}
.xac_c00394{left:223.040000pt;}
.xdf_c00394{left:224.373333pt;}
.xdc_c00394{left:225.906667pt;}
.x5c_c00394{left:227.626667pt;}
.xa4_c00394{left:229.333333pt;}
.x39_c00394{left:232.373333pt;}
.x98_c00394{left:233.706667pt;}
.x30_c00394{left:235.040000pt;}
.xc4_c00394{left:236.373333pt;}
.x70_c00394{left:237.333333pt;}
.x66_c00394{left:240.960000pt;}
.xf9_c00394{left:242.666667pt;}
.x5d_c00394{left:244.373333pt;}
.x14_c00394{left:246.666667pt;}
.x20_c00394{left:248.373333pt;}
.x6_c00394{left:249.333333pt;}
.xca_c00394{left:250.666667pt;}
.xe5_c00394{left:252.000000pt;}
.xa1_c00394{left:253.706667pt;}
.x71_c00394{left:255.040000pt;}
.x51_c00394{left:256.960000pt;}
.x31_c00394{left:258.293333pt;}
.xe0_c00394{left:261.706667pt;}
.x81_c00394{left:264.373333pt;}
.x45_c00394{left:266.666667pt;}
.x5e_c00394{left:268.000000pt;}
.xcb_c00394{left:269.706667pt;}
.x21_c00394{left:271.626667pt;}
.xc5_c00394{left:274.666667pt;}
.x52_c00394{left:275.626667pt;}
.x72_c00394{left:279.040000pt;}
.xd7_c00394{left:280.000000pt;}
.xf4_c00394{left:281.333333pt;}
.xf1_c00394{left:282.293333pt;}
.x15_c00394{left:283.626667pt;}
.x82_c00394{left:287.626667pt;}
.xa2_c00394{left:288.960000pt;}
.x7_c00394{left:290.666667pt;}
.x67_c00394{left:294.293333pt;}
.xb1_c00394{left:295.426667pt;}
.xc6_c00394{left:296.373333pt;}
.x99_c00394{left:297.706667pt;}
.xe1_c00394{left:300.000000pt;}
.x53_c00394{left:302.666667pt;}
.x108_c00394{left:304.373333pt;}
.xe6_c00394{left:305.706667pt;}
.x16_c00394{left:306.666667pt;}
.x22_c00394{left:308.000000pt;}
.x8_c00394{left:309.333333pt;}
.xbb_c00394{left:310.666667pt;}
.x68_c00394{left:312.000000pt;}
.xe2_c00394{left:316.000000pt;}
.x79_c00394{left:317.333333pt;}
.xa5_c00394{left:319.626667pt;}
.x32_c00394{left:321.333333pt;}
.x9_c00394{left:322.666667pt;}
.x9a_c00394{left:323.626667pt;}
.xb2_c00394{left:325.333333pt;}
.xe7_c00394{left:329.706667pt;}
.x54_c00394{left:330.666667pt;}
.xe3_c00394{left:332.000000pt;}
.x3a_c00394{left:333.333333pt;}
.x100_c00394{left:334.666667pt;}
.x69_c00394{left:336.000000pt;}
.xad_c00394{left:338.293333pt;}
.x17_c00394{left:339.626667pt;}
.xa3_c00394{left:343.040000pt;}
.x9b_c00394{left:344.000000pt;}
.x2_c00394{left:345.333333pt;}
.x46_c00394{left:347.040000pt;}
.x3b_c00394{left:349.706667pt;}
.x109_c00394{left:350.666667pt;}
.x55_c00394{left:352.960000pt;}
.xa6_c00394{left:354.293333pt;}
.xa_c00394{left:356.000000pt;}
.xb3_c00394{left:357.333333pt;}
.xbc_c00394{left:358.666667pt;}
.x23_c00394{left:361.706667pt;}
.x7a_c00394{left:362.666667pt;}
.xcc_c00394{left:364.000000pt;}
.x8b_c00394{left:365.333333pt;}
.x18_c00394{left:368.000000pt;}
.x47_c00394{left:370.666667pt;}
.xd8_c00394{left:372.000000pt;}
.x3c_c00394{left:373.333333pt;}
.xe8_c00394{left:374.293333pt;}
.x33_c00394{left:378.293333pt;}
.xf5_c00394{left:380.000000pt;}
.x56_c00394{left:382.666667pt;}
.xdd_c00394{left:385.333333pt;}
.x24_c00394{left:387.040000pt;}
.x7b_c00394{left:390.666667pt;}
.xd9_c00394{left:393.333333pt;}
.xc7_c00394{left:395.626667pt;}
.xcd_c00394{left:396.960000pt;}
.x3d_c00394{left:400.000000pt;}
.xe9_c00394{left:401.333333pt;}
.x48_c00394{left:402.666667pt;}
.xec_c00394{left:404.000000pt;}
.x9c_c00394{left:407.040000pt;}
.x92_c00394{left:408.373333pt;}
.x5f_c00394{left:409.333333pt;}
.x73_c00394{left:410.293333pt;}
.xc8_c00394{left:413.706667pt;}
.x83_c00394{left:415.040000pt;}
.xce_c00394{left:416.000000pt;}
.xb_c00394{left:416.960000pt;}
.x57_c00394{left:418.666667pt;}
.xed_c00394{left:420.000000pt;}
.xb4_c00394{left:421.706667pt;}
.x25_c00394{left:422.666667pt;}
.xd2_c00394{left:425.333333pt;}
.x74_c00394{left:426.666667pt;}
.x8c_c00394{left:428.000000pt;}
.x19_c00394{left:432.000000pt;}
.xbd_c00394{left:433.333333pt;}
.xa7_c00394{left:435.040000pt;}
.x84_c00394{left:436.373333pt;}
.xe4_c00394{left:437.333333pt;}
.x9d_c00394{left:438.666667pt;}
.x93_c00394{left:441.333333pt;}
.x60_c00394{left:442.293333pt;}
.xc_c00394{left:444.000000pt;}
.x7c_c00394{left:445.706667pt;}
.x75_c00394{left:449.706667pt;}
.xea_c00394{left:450.666667pt;}
.xf6_c00394{left:452.373333pt;}
.xfc_c00394{left:453.333333pt;}
.xb5_c00394{left:456.960000pt;}
.x85_c00394{left:460.960000pt;}
.x6a_c00394{left:464.000000pt;}
.xa8_c00394{left:466.666667pt;}
.x34_c00394{left:468.000000pt;}
.x3e_c00394{left:469.333333pt;}
.x61_c00394{left:470.666667pt;}
.x26_c00394{left:472.373333pt;}
.x58_c00394{left:473.333333pt;}
.xf7_c00394{left:477.333333pt;}
.xc1_c00394{left:478.293333pt;}
.x101_c00394{left:480.000000pt;}
.xb8_c00394{left:481.706667pt;}
.x8d_c00394{left:484.000000pt;}
.x1a_c00394{left:486.666667pt;}
.xd_c00394{left:488.373333pt;}
.xee_c00394{left:490.666667pt;}
.x105_c00394{left:492.373333pt;}
.x49_c00394{left:494.293333pt;}
.x59_c00394{left:495.626667pt;}
.x94_c00394{left:497.333333pt;}
.x6b_c00394{left:499.040000pt;}
.x1b_c00394{left:500.373333pt;}
.xeb_c00394{left:502.293333pt;}
.xbe_c00394{left:503.626667pt;}
.xd3_c00394{left:505.706667pt;}
.xb9_c00394{left:506.666667pt;}
.xcf_c00394{left:509.333333pt;}
.x4a_c00394{left:511.040000pt;}
.xe_c00394{left:512.000000pt;}
.x7d_c00394{left:513.706667pt;}
.x3f_c00394{left:515.040000pt;}
.x62_c00394{left:516.000000pt;}
.xae_c00394{left:517.333333pt;}
.x8e_c00394{left:519.040000pt;}
.xbf_c00394{left:520.000000pt;}
.x95_c00394{left:524.373333pt;}
.x76_c00394{left:525.333333pt;}
.x6c_c00394{left:528.000000pt;}
.x27_c00394{left:532.000000pt;}
.x1c_c00394{left:533.333333pt;}
.x4b_c00394{left:534.666667pt;}
.x9e_c00394{left:536.373333pt;}
.xf_c00394{left:537.333333pt;}
.x40_c00394{left:538.666667pt;}
.xfa_c00394{left:540.373333pt;}
.xfd_c00394{left:542.666667pt;}
.x63_c00394{left:543.626667pt;}
.xb6_c00394{left:544.960000pt;}
.x28_c00394{left:546.666667pt;}
.xc2_c00394{left:548.000000pt;}
.xaf_c00394{left:550.293333pt;}
.xde_c00394{left:557.333333pt;}
.x96_c00394{left:559.626667pt;}
.x4c_c00394{left:561.333333pt;}
.xc9_c00394{left:562.293333pt;}
.x86_c00394{left:564.960000pt;}
.xfe_c00394{left:565.906667pt;}
.xa9_c00394{left:567.800000pt;}
.xb7_c00394{left:568.760000pt;}
.x41_c00394{left:572.000000pt;}
.xd4_c00394{left:572.960000pt;}
.x10_c00394{left:574.666667pt;}
.xb0_c00394{left:577.333333pt;}
.xc3_c00394{left:578.666667pt;}
.x35_c00394{left:580.000000pt;}
.x87_c00394{left:583.040000pt;}
.x8f_c00394{left:585.333333pt;}
.x42_c00394{left:586.666667pt;}
.x11_c00394{left:588.960000pt;}
.x7e_c00394{left:592.373333pt;}
.x29_c00394{left:594.666667pt;}
.x97_c00394{left:596.373333pt;}
.x36_c00394{left:597.706667pt;}
.x106_c00394{left:600.960000pt;}
.xda_c00394{left:603.626667pt;}
.x6d_c00394{left:604.960000pt;}
.x88_c00394{left:606.666667pt;}
.x4d_c00394{left:608.373333pt;}
.x2a_c00394{left:612.000000pt;}
.x1d_c00394{left:613.333333pt;}
.x90_c00394{left:616.000000pt;}
.xf8_c00394{left:617.333333pt;}
.x64_c00394{left:618.666667pt;}
.x7f_c00394{left:620.000000pt;}
.xd0_c00394{left:621.706667pt;}
.x77_c00394{left:623.040000pt;}
.x1_c00394{left:625.333333pt;}
.x4e_c00394{left:626.666667pt;}
.x5a_c00394{left:628.373333pt;}
.x1e_c00394{left:632.000000pt;}
.x37_c00394{left:634.293333pt;}
.xaa_c00394{left:635.626667pt;}
.x6e_c00394{left:644.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_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_b4787171f2db484ce27c4ad5.woff2')format("woff");}.ff1_c00395{font-family:ff1_c00395;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mbd_c00395{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.m61_c00395{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.mf6_c00395{transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);}
.mbc_c00395{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m68_c00395{transform:matrix(0.362185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362185,0.000000,0.000000,0.250000,0,0);}
.m8b_c00395{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m0_c00395{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m7_c00395{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m9f_c00395{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mf5_c00395{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m93_c00395{transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);}
.m5_c00395{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m11_c00395{transform:matrix(0.377087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377087,0.000000,0.000000,0.250000,0,0);}
.mf0_c00395{transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);}
.m5f_c00395{transform:matrix(0.378631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378631,0.000000,0.000000,0.250000,0,0);}
.m23_c00395{transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);}
.mc8_c00395{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m80_c00395{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.me3_c00395{transform:matrix(0.381725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381725,0.000000,0.000000,0.250000,0,0);}
.m10e_c00395{transform:matrix(0.383581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383581,0.000000,0.000000,0.250000,0,0);}
.m114_c00395{transform:matrix(0.385900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385900,0.000000,0.000000,0.250000,0,0);}
.m4e_c00395{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m9e_c00395{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m4f_c00395{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m67_c00395{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m8c_c00395{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m3b_c00395{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.md9_c00395{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.mbb_c00395{transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);}
.m5c_c00395{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.mf_c00395{transform:matrix(0.397959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397959,0.000000,0.000000,0.250000,0,0);}
.m99_c00395{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m7e_c00395{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m6_c00395{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m9a_c00395{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m88_c00395{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m5d_c00395{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m27_c00395{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m110_c00395{transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);}
.m50_c00395{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m7f_c00395{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.mfd_c00395{transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);}
.m58_c00395{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m55_c00395{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m9c_c00395{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m43_c00395{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.mac_c00395{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m24_c00395{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m1f_c00395{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m95_c00395{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.mb7_c00395{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.meb_c00395{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m1a_c00395{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.md8_c00395{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m78_c00395{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m102_c00395{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.m37_c00395{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.me4_c00395{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m115_c00395{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.md6_c00395{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m8f_c00395{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m2f_c00395{transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);}
.m30_c00395{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m70_c00395{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m86_c00395{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m76_c00395{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m4a_c00395{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m14_c00395{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m46_c00395{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.me7_c00395{transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);}
.m1b_c00395{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m52_c00395{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m3c_c00395{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mc5_c00395{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m21_c00395{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m71_c00395{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.mc7_c00395{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.mb3_c00395{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m31_c00395{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.md5_c00395{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m69_c00395{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.ma3_c00395{transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);}
.m19_c00395{transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);}
.m47_c00395{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.mb_c00395{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.mcd_c00395{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m4c_c00395{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m94_c00395{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m6d_c00395{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m103_c00395{transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);}
.m62_c00395{transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);}
.m6f_c00395{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m35_c00395{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mab_c00395{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m13_c00395{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.mea_c00395{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mc3_c00395{transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);}
.m3_c00395{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.m73_c00395{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.ma_c00395{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m54_c00395{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m72_c00395{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.m17_c00395{transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);}
.mda_c00395{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.mfe_c00395{transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);}
.m5a_c00395{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m26_c00395{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mc_c00395{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.mdb_c00395{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m101_c00395{transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);}
.m16_c00395{transform:matrix(0.475882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475882,0.000000,0.000000,0.250000,0,0);}
.me9_c00395{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.mf9_c00395{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m98_c00395{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m2a_c00395{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m53_c00395{transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);}
.mbf_c00395{transform:matrix(0.482773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482773,0.000000,0.000000,0.250000,0,0);}
.m44_c00395{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m5b_c00395{transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);}
.m20_c00395{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m8_c00395{transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);}
.mf7_c00395{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.m7a_c00395{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mf2_c00395{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m41_c00395{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m4d_c00395{transform:matrix(0.497479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497479,0.000000,0.000000,0.250000,0,0);}
.m74_c00395{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m9_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);}
.mb1_c00395{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.mf1_c00395{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.ma9_c00395{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m3e_c00395{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.med_c00395{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m83_c00395{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m60_c00395{transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);}
.m7b_c00395{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m22_c00395{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m4_c00395{transform:matrix(0.519017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519017,0.000000,0.000000,0.250000,0,0);}
.m2e_c00395{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.ma4_c00395{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m82_c00395{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.me2_c00395{transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);}
.m3a_c00395{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m66_c00395{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m4b_c00395{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.me0_c00395{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.m39_c00395{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m109_c00395{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);}
.m8d_c00395{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.ma1_c00395{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.md_c00395{transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);}
.mad_c00395{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m10d_c00395{transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);}
.mb9_c00395{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mce_c00395{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m84_c00395{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m6c_c00395{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m38_c00395{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m9d_c00395{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m63_c00395{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m10a_c00395{transform:matrix(0.534706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534706,0.000000,0.000000,0.250000,0,0);}
.m6e_c00395{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m49_c00395{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m2c_c00395{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m8a_c00395{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.me6_c00395{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m2b_c00395{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m85_c00395{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m112_c00395{transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);}
.m56_c00395{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mcc_c00395{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m107_c00395{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m45_c00395{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.mc9_c00395{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.md3_c00395{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m57_c00395{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m7c_c00395{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m10c_c00395{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.mbe_c00395{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.mc1_c00395{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.mb0_c00395{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.me5_c00395{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m34_c00395{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mef_c00395{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);}
.ma0_c00395{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m81_c00395{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m10f_c00395{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m29_c00395{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m25_c00395{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m97_c00395{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m10b_c00395{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m33_c00395{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m77_c00395{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m96_c00395{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m75_c00395{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mba_c00395{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mde_c00395{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.mf4_c00395{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m1d_c00395{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mfa_c00395{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m59_c00395{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.md0_c00395{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.m10_c00395{transform:matrix(0.564706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564706,0.000000,0.000000,0.250000,0,0);}
.m7d_c00395{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mcb_c00395{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m64_c00395{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m28_c00395{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m15_c00395{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m5e_c00395{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m2d_c00395{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.mc0_c00395{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.ma7_c00395{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m91_c00395{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mca_c00395{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m79_c00395{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mdf_c00395{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m106_c00395{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.ma6_c00395{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m89_c00395{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m2_c00395{transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);}
.maf_c00395{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m42_c00395{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m65_c00395{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);}
.m3d_c00395{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m104_c00395{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m40_c00395{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m87_c00395{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m6b_c00395{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mb4_c00395{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.md1_c00395{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m108_c00395{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m18_c00395{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_c00395{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.md4_c00395{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.ma8_c00395{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mec_c00395{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.mae_c00395{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.mfc_c00395{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m32_c00395{transform:matrix(0.644710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644710,0.000000,0.000000,0.250000,0,0);}
.me8_c00395{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.me_c00395{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);}
.mff_c00395{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.mfb_c00395{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m105_c00395{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m100_c00395{transform:matrix(0.658824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.658824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.658824,0.000000,0.000000,0.250000,0,0);}
.m113_c00395{transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);}
.m8e_c00395{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.ma2_c00395{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mcf_c00395{transform:matrix(0.666494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666494,0.000000,0.000000,0.250000,0,0);}
.m3f_c00395{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.md7_c00395{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.mf8_c00395{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.me1_c00395{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mdc_c00395{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.mb8_c00395{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mb5_c00395{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.mdd_c00395{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m12_c00395{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);}
.maa_c00395{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m6a_c00395{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.mc6_c00395{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.mc2_c00395{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.ma5_c00395{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m48_c00395{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m1e_c00395{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.mc4_c00395{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.md2_c00395{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mb2_c00395{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m9b_c00395{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m92_c00395{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m90_c00395{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m36_c00395{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.mb6_c00395{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mee_c00395{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m111_c00395{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.mf3_c00395{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m1c_c00395{transform:matrix(2.899123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.899123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.899123,0.000000,0.000000,0.250000,0,0);}
.m51_c00395{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00395{vertical-align:0.000000px;}
.ls0_c00395{letter-spacing:0.000000px;}
.sc__c00395{text-shadow:none;}
.sc0_c00395{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00395{-webkit-text-stroke:0px transparent;}
.sc0_c00395{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00395{word-spacing:-16.889280px;}
.ws0_c00395{word-spacing:-3.584672px;}
.ws1_c00395{word-spacing:-0.087600px;}
.ws3_c00395{word-spacing:0.000000px;}
._0_c00395{width:5.942948px;}
.fc0_c00395{color:transparent;}
.fs5_c00395{font-size:3.420000px;}
.fs8_c00395{font-size:13.620000px;}
.fs6_c00395{font-size:18.720000px;}
.fs1_c00395{font-size:20.400000px;}
.fs4_c00395{font-size:25.500000px;}
.fs2_c00395{font-size:28.920000px;}
.fs3_c00395{font-size:32.340000px;}
.fs0_c00395{font-size:35.700000px;}
.fs7_c00395{font-size:39.120000px;}
.y0_c00395{bottom:0.000000px;}
.yc7_c00395{bottom:246.825000px;}
.yc8_c00395{bottom:247.905000px;}
.yc9_c00395{bottom:248.130000px;}
.yca_c00395{bottom:248.970000px;}
.yc4_c00395{bottom:261.825000px;}
.ybf_c00395{bottom:262.050000px;}
.yc5_c00395{bottom:263.325000px;}
.yc1_c00395{bottom:263.550000px;}
.yc0_c00395{bottom:263.970000px;}
.yc6_c00395{bottom:264.195000px;}
.yc2_c00395{bottom:265.050000px;}
.yc3_c00395{bottom:265.470000px;}
.yb8_c00395{bottom:275.550000px;}
.ybe_c00395{bottom:276.825000px;}
.yb9_c00395{bottom:277.905000px;}
.yba_c00395{bottom:278.550000px;}
.ybc_c00395{bottom:278.970000px;}
.ybd_c00395{bottom:279.630000px;}
.ybb_c00395{bottom:280.050000px;}
.yb6_c00395{bottom:292.905000px;}
.yb7_c00395{bottom:295.050000px;}
.yb5_c00395{bottom:306.825000px;}
.yaf_c00395{bottom:307.050000px;}
.yb0_c00395{bottom:307.905000px;}
.yb1_c00395{bottom:308.130000px;}
.yb3_c00395{bottom:308.550000px;}
.yb4_c00395{bottom:308.970000px;}
.yb2_c00395{bottom:310.050000px;}
.yab_c00395{bottom:320.325000px;}
.yae_c00395{bottom:321.825000px;}
.ya9_c00395{bottom:322.695000px;}
.yac_c00395{bottom:322.905000px;}
.yaa_c00395{bottom:323.970000px;}
.yad_c00395{bottom:324.195000px;}
.ya6_c00395{bottom:334.470000px;}
.ya5_c00395{bottom:336.405000px;}
.ya8_c00395{bottom:337.470000px;}
.ya7_c00395{bottom:338.550000px;}
.ya3_c00395{bottom:350.970000px;}
.y9d_c00395{bottom:351.630000px;}
.ya1_c00395{bottom:351.825000px;}
.y9e_c00395{bottom:352.470000px;}
.ya2_c00395{bottom:352.905000px;}
.y9f_c00395{bottom:353.130000px;}
.ya0_c00395{bottom:353.970000px;}
.ya4_c00395{bottom:355.050000px;}
.y9c_c00395{bottom:380.745000px;}
.y99_c00395{bottom:381.405000px;}
.y9a_c00395{bottom:381.630000px;}
.y98_c00395{bottom:382.470000px;}
.y9b_c00395{bottom:382.905000px;}
.y93_c00395{bottom:397.905000px;}
.y97_c00395{bottom:399.825000px;}
.y96_c00395{bottom:400.245000px;}
.y94_c00395{bottom:400.905000px;}
.y95_c00395{bottom:401.130000px;}
.y8c_c00395{bottom:419.550000px;}
.y91_c00395{bottom:419.745000px;}
.y8d_c00395{bottom:420.630000px;}
.y92_c00395{bottom:421.050000px;}
.y8f_c00395{bottom:421.470000px;}
.y8e_c00395{bottom:421.905000px;}
.y90_c00395{bottom:422.970000px;}
.y8a_c00395{bottom:439.245000px;}
.y8b_c00395{bottom:441.405000px;}
.y89_c00395{bottom:457.905000px;}
.y87_c00395{bottom:458.745000px;}
.y88_c00395{bottom:459.825000px;}
.y85_c00395{bottom:460.905000px;}
.y86_c00395{bottom:461.130000px;}
.y82_c00395{bottom:478.245000px;}
.y84_c00395{bottom:480.405000px;}
.y81_c00395{bottom:480.630000px;}
.y83_c00395{bottom:481.470000px;}
.y7a_c00395{bottom:496.680000px;}
.y7f_c00395{bottom:496.905000px;}
.y7b_c00395{bottom:497.745000px;}
.y7d_c00395{bottom:499.245000px;}
.y80_c00395{bottom:500.130000px;}
.y7e_c00395{bottom:500.970000px;}
.y7c_c00395{bottom:501.405000px;}
.y76_c00395{bottom:519.405000px;}
.y79_c00395{bottom:519.825000px;}
.y78_c00395{bottom:520.470000px;}
.y77_c00395{bottom:520.905000px;}
.y73_c00395{bottom:538.245000px;}
.y74_c00395{bottom:539.130000px;}
.y75_c00395{bottom:539.970000px;}
.y72_c00395{bottom:540.405000px;}
.y70_c00395{bottom:557.745000px;}
.y6f_c00395{bottom:558.630000px;}
.y71_c00395{bottom:559.470000px;}
.y6e_c00395{bottom:577.245000px;}
.y6c_c00395{bottom:579.405000px;}
.y6d_c00395{bottom:580.470000px;}
.y6b_c00395{bottom:596.745000px;}
.y66_c00395{bottom:598.905000px;}
.y69_c00395{bottom:599.130000px;}
.y6a_c00395{bottom:599.325000px;}
.y67_c00395{bottom:599.970000px;}
.y68_c00395{bottom:600.405000px;}
.y61_c00395{bottom:616.245000px;}
.y64_c00395{bottom:617.745000px;}
.y63_c00395{bottom:618.630000px;}
.y62_c00395{bottom:619.905000px;}
.y65_c00395{bottom:620.970000px;}
.y5d_c00395{bottom:635.745000px;}
.y5f_c00395{bottom:637.245000px;}
.y5e_c00395{bottom:638.130000px;}
.y5c_c00395{bottom:638.970000px;}
.y60_c00395{bottom:639.405000px;}
.y5b_c00395{bottom:656.325000px;}
.y5a_c00395{bottom:656.745000px;}
.y59_c00395{bottom:657.825000px;}
.y58_c00395{bottom:658.905000px;}
.y57_c00395{bottom:675.405000px;}
.y51_c00395{bottom:676.245000px;}
.y53_c00395{bottom:676.470000px;}
.y55_c00395{bottom:677.130000px;}
.y52_c00395{bottom:677.325000px;}
.y54_c00395{bottom:677.970000px;}
.y50_c00395{bottom:678.405000px;}
.y56_c00395{bottom:678.630000px;}
.y4e_c00395{bottom:694.905000px;}
.y4d_c00395{bottom:695.745000px;}
.y4b_c00395{bottom:697.905000px;}
.y4f_c00395{bottom:698.970000px;}
.y4c_c00395{bottom:699.420000px;}
.y47_c00395{bottom:715.245000px;}
.y48_c00395{bottom:717.405000px;}
.y4a_c00395{bottom:717.825000px;}
.y49_c00395{bottom:718.905000px;}
.y46_c00395{bottom:734.745000px;}
.y44_c00395{bottom:736.245000px;}
.y43_c00395{bottom:736.905000px;}
.y45_c00395{bottom:738.405000px;}
.y40_c00395{bottom:755.325000px;}
.y42_c00395{bottom:755.745000px;}
.y41_c00395{bottom:757.905000px;}
.y3d_c00395{bottom:773.745000px;}
.y3f_c00395{bottom:776.325000px;}
.y3e_c00395{bottom:777.405000px;}
.y3a_c00395{bottom:794.745000px;}
.y3b_c00395{bottom:795.825000px;}
.y37_c00395{bottom:796.905000px;}
.y38_c00395{bottom:796.920000px;}
.y3c_c00395{bottom:797.130000px;}
.y39_c00395{bottom:797.970000px;}
.y35_c00395{bottom:814.245000px;}
.y34_c00395{bottom:815.325000px;}
.y36_c00395{bottom:816.405000px;}
.y32_c00395{bottom:833.745000px;}
.y33_c00395{bottom:834.825000px;}
.y2f_c00395{bottom:835.905000px;}
.y30_c00395{bottom:836.130000px;}
.y31_c00395{bottom:837.420000px;}
.y2e_c00395{bottom:853.245000px;}
.y2c_c00395{bottom:872.325000px;}
.y29_c00395{bottom:874.245000px;}
.y2b_c00395{bottom:875.325000px;}
.y2d_c00395{bottom:876.405000px;}
.y2a_c00395{bottom:876.420000px;}
.y28_c00395{bottom:893.745000px;}
.y27_c00395{bottom:912.405000px;}
.y22_c00395{bottom:913.245000px;}
.y23_c00395{bottom:914.130000px;}
.y26_c00395{bottom:914.325000px;}
.y25_c00395{bottom:914.970000px;}
.y24_c00395{bottom:915.405000px;}
.y21_c00395{bottom:931.245000px;}
.y1d_c00395{bottom:931.470000px;}
.y1c_c00395{bottom:932.745000px;}
.y20_c00395{bottom:934.470000px;}
.y1f_c00395{bottom:934.905000px;}
.y1e_c00395{bottom:935.970000px;}
.y19_c00395{bottom:952.245000px;}
.y1b_c00395{bottom:953.130000px;}
.y1a_c00395{bottom:954.405000px;}
.y16_c00395{bottom:971.745000px;}
.y17_c00395{bottom:973.905000px;}
.y18_c00395{bottom:974.970000px;}
.y15_c00395{bottom:990.405000px;}
.y10_c00395{bottom:991.245000px;}
.y14_c00395{bottom:992.745000px;}
.y12_c00395{bottom:993.405000px;}
.y13_c00395{bottom:993.630000px;}
.y11_c00395{bottom:994.920000px;}
.yc_c00395{bottom:1014.825000px;}
.yf_c00395{bottom:1015.050000px;}
.yd_c00395{bottom:1015.905000px;}
.ye_c00395{bottom:1016.970000px;}
.yb_c00395{bottom:1018.050000px;}
.ya_c00395{bottom:1034.325000px;}
.y7_c00395{bottom:1034.550000px;}
.y8_c00395{bottom:1035.405000px;}
.y6_c00395{bottom:1036.470000px;}
.y9_c00395{bottom:1037.550000px;}
.y4_c00395{bottom:1058.745000px;}
.y5_c00395{bottom:1059.825000px;}
.y3_c00395{bottom:1060.905000px;}
.y1_c00395{bottom:1097.745000px;}
.y2_c00395{bottom:1099.050000px;}
.h6_c00395{height:4.206533px;}
.h9_c00395{height:16.752334px;}
.h7_c00395{height:23.025234px;}
.h2_c00395{height:25.091602px;}
.h5_c00395{height:31.364502px;}
.h3_c00395{height:35.571035px;}
.h4_c00395{height:39.777568px;}
.h1_c00395{height:43.910303px;}
.h8_c00395{height:48.116836px;}
.h0_c00395{height:1335.000000px;}
.w0_c00395{width:880.500000px;}
.x0_c00395{left:0.000000px;}
.x3d_c00395{left:151.920000px;}
.x1_c00395{left:153.000000px;}
.x25_c00395{left:154.080000px;}
.x12_c00395{left:166.500000px;}
.x1b_c00395{left:168.420000px;}
.xe1_c00395{left:169.500000px;}
.x9b_c00395{left:174.000000px;}
.x26_c00395{left:176.580000px;}
.xb8_c00395{left:178.080000px;}
.xab_c00395{left:180.000000px;}
.xe7_c00395{left:181.080000px;}
.x96_c00395{left:182.580000px;}
.xe2_c00395{left:184.080000px;}
.xf1_c00395{left:185.355000px;}
.xda_c00395{left:187.500000px;}
.xe0_c00395{left:190.920000px;}
.x5b_c00395{left:193.080000px;}
.xc5_c00395{left:195.000000px;}
.xbd_c00395{left:201.000000px;}
.x6f_c00395{left:204.000000px;}
.x66_c00395{left:207.000000px;}
.xcf_c00395{left:210.000000px;}
.x13_c00395{left:211.920000px;}
.x49_c00395{left:213.000000px;}
.x5c_c00395{left:217.080000px;}
.x8c_c00395{left:223.920000px;}
.xe8_c00395{left:225.000000px;}
.xbe_c00395{left:226.500000px;}
.xeb_c00395{left:228.000000px;}
.x27_c00395{left:229.080000px;}
.x9c_c00395{left:231.000000px;}
.x7f_c00395{left:232.500000px;}
.x9f_c00395{left:234.000000px;}
.x3e_c00395{left:236.580000px;}
.xb3_c00395{left:240.000000px;}
.x67_c00395{left:241.080000px;}
.x3_c00395{left:244.500000px;}
.x3f_c00395{left:246.000000px;}
.xc6_c00395{left:247.500000px;}
.x54_c00395{left:249.000000px;}
.xf8_c00395{left:250.920000px;}
.xdb_c00395{left:252.420000px;}
.x85_c00395{left:253.500000px;}
.xe9_c00395{left:254.580000px;}
.x4f_c00395{left:258.000000px;}
.xd0_c00395{left:259.920000px;}
.x5e_c00395{left:261.000000px;}
.xe3_c00395{left:262.500000px;}
.xd3_c00395{left:265.920000px;}
.xac_c00395{left:267.000000px;}
.x9_c00395{left:268.500000px;}
.x31_c00395{left:270.000000px;}
.x40_c00395{left:271.500000px;}
.x1c_c00395{left:273.000000px;}
.x86_c00395{left:274.080000px;}
.x28_c00395{left:277.080000px;}
.x50_c00395{left:279.000000px;}
.x5f_c00395{left:280.500000px;}
.xea_c00395{left:282.000000px;}
.x14_c00395{left:287.580000px;}
.xa_c00395{left:290.355000px;}
.x1d_c00395{left:292.500000px;}
.xc7_c00395{left:294.000000px;}
.xf9_c00395{left:295.080000px;}
.x5d_c00395{left:296.580000px;}
.x29_c00395{left:298.500000px;}
.x32_c00395{left:300.000000px;}
.xa0_c00395{left:301.920000px;}
.xbf_c00395{left:303.000000px;}
.xf2_c00395{left:304.500000px;}
.x15_c00395{left:305.580000px;}
.x68_c00395{left:307.500000px;}
.x78_c00395{left:312.420000px;}
.x60_c00395{left:313.500000px;}
.xb_c00395{left:315.000000px;}
.x4a_c00395{left:316.500000px;}
.x4_c00395{left:318.420000px;}
.xd4_c00395{left:319.500000px;}
.x55_c00395{left:320.580000px;}
.xdc_c00395{left:322.500000px;}
.xf5_c00395{left:324.000000px;}
.xa1_c00395{left:328.500000px;}
.xad_c00395{left:331.920000px;}
.x1e_c00395{left:333.000000px;}
.x41_c00395{left:337.500000px;}
.x4b_c00395{left:339.000000px;}
.xe4_c00395{left:340.080000px;}
.x97_c00395{left:343.500000px;}
.xec_c00395{left:345.000000px;}
.x2a_c00395{left:346.500000px;}
.x56_c00395{left:347.580000px;}
.xf0_c00395{left:351.420000px;}
.xb9_c00395{left:354.000000px;}
.x16_c00395{left:355.920000px;}
.xc_c00395{left:357.000000px;}
.xa5_c00395{left:360.420000px;}
.x33_c00395{left:363.000000px;}
.x2b_c00395{left:364.500000px;}
.xfa_c00395{left:366.000000px;}
.x87_c00395{left:369.000000px;}
.x8d_c00395{left:370.275000px;}
.xc8_c00395{left:371.580000px;}
.x9d_c00395{left:372.645000px;}
.x69_c00395{left:376.500000px;}
.xd5_c00395{left:379.500000px;}
.x34_c00395{left:382.500000px;}
.xa2_c00395{left:384.420000px;}
.x79_c00395{left:387.000000px;}
.x1f_c00395{left:388.500000px;}
.x2_c00395{left:391.500000px;}
.xb4_c00395{left:393.000000px;}
.xd_c00395{left:394.500000px;}
.x98_c00395{left:395.580000px;}
.x57_c00395{left:399.000000px;}
.x42_c00395{left:402.000000px;}
.xc9_c00395{left:403.080000px;}
.xed_c00395{left:405.420000px;}
.xc0_c00395{left:409.500000px;}
.x8e_c00395{left:411.420000px;}
.x70_c00395{left:413.580000px;}
.x2c_c00395{left:415.500000px;}
.x5_c00395{left:420.420000px;}
.xa6_c00395{left:421.920000px;}
.xee_c00395{left:424.080000px;}
.x4c_c00395{left:425.145000px;}
.x61_c00395{left:427.920000px;}
.x80_c00395{left:429.000000px;}
.xf6_c00395{left:430.080000px;}
.xe_c00395{left:433.920000px;}
.x8f_c00395{left:435.420000px;}
.xa3_c00395{left:439.500000px;}
.x7a_c00395{left:442.080000px;}
.x71_c00395{left:443.580000px;}
.x20_c00395{left:445.920000px;}
.x43_c00395{left:447.420000px;}
.xca_c00395{left:448.500000px;}
.x2d_c00395{left:450.420000px;}
.x6a_c00395{left:451.500000px;}
.x51_c00395{left:453.420000px;}
.xf3_c00395{left:456.000000px;}
.xae_c00395{left:457.500000px;}
.x90_c00395{left:460.920000px;}
.x35_c00395{left:462.000000px;}
.x58_c00395{left:463.500000px;}
.xd1_c00395{left:465.645000px;}
.x21_c00395{left:469.920000px;}
.x88_c00395{left:471.420000px;}
.x17_c00395{left:472.500000px;}
.xaf_c00395{left:473.580000px;}
.xd6_c00395{left:477.000000px;}
.x99_c00395{left:478.500000px;}
.xc1_c00395{left:479.580000px;}
.x44_c00395{left:481.080000px;}
.xf_c00395{left:483.000000px;}
.x91_c00395{left:487.500000px;}
.x36_c00395{left:489.000000px;}
.xdd_c00395{left:493.920000px;}
.xcb_c00395{left:498.645000px;}
.x59_c00395{left:501.000000px;}
.x81_c00395{left:507.420000px;}
.x89_c00395{left:510.000000px;}
.x2e_c00395{left:512.580000px;}
.xa4_c00395{left:514.080000px;}
.x92_c00395{left:516.420000px;}
.x7b_c00395{left:517.500000px;}
.x6_c00395{left:520.080000px;}
.x72_c00395{left:522.000000px;}
.xc2_c00395{left:523.500000px;}
.xe5_c00395{left:526.500000px;}
.x18_c00395{left:528.000000px;}
.x10_c00395{left:529.500000px;}
.x6b_c00395{left:531.420000px;}
.x82_c00395{left:532.500000px;}
.x37_c00395{left:534.000000px;}
.xba_c00395{left:535.500000px;}
.x73_c00395{left:537.000000px;}
.x62_c00395{left:538.080000px;}
.x4d_c00395{left:541.500000px;}
.x7_c00395{left:544.500000px;}
.xa7_c00395{left:547.500000px;}
.x7c_c00395{left:550.500000px;}
.x8a_c00395{left:551.580000px;}
.x22_c00395{left:553.920000px;}
.xb5_c00395{left:556.920000px;}
.x38_c00395{left:558.645000px;}
.x6c_c00395{left:559.920000px;}
.xef_c00395{left:561.000000px;}
.xcc_c00395{left:562.080000px;}
.xa8_c00395{left:564.000000px;}
.x74_c00395{left:565.080000px;}
.x11_c00395{left:567.000000px;}
.x45_c00395{left:568.080000px;}
.xd7_c00395{left:569.580000px;}
.xb0_c00395{left:571.500000px;}
.xf4_c00395{left:573.420000px;}
.xe6_c00395{left:576.000000px;}
.x39_c00395{left:578.580000px;}
.xbb_c00395{left:582.000000px;}
.x23_c00395{left:586.920000px;}
.x83_c00395{left:590.580000px;}
.xb6_c00395{left:592.920000px;}
.x19_c00395{left:595.500000px;}
.x75_c00395{left:596.580000px;}
.x46_c00395{left:600.000000px;}
.x8_c00395{left:602.775000px;}
.xc3_c00395{left:604.500000px;}
.x9a_c00395{left:606.000000px;}
.xcd_c00395{left:609.000000px;}
.x2f_c00395{left:610.920000px;}
.x1a_c00395{left:612.000000px;}
.x52_c00395{left:617.580000px;}
.xa9_c00395{left:619.500000px;}
.x84_c00395{left:621.000000px;}
.x6d_c00395{left:623.580000px;}
.x7d_c00395{left:625.080000px;}
.xd8_c00395{left:628.080000px;}
.x3a_c00395{left:631.920000px;}
.x76_c00395{left:634.080000px;}
.x93_c00395{left:636.420000px;}
.xb1_c00395{left:637.500000px;}
.xf7_c00395{left:639.000000px;}
.x63_c00395{left:640.500000px;}
.xbc_c00395{left:643.500000px;}
.x24_c00395{left:648.000000px;}
.x7e_c00395{left:649.920000px;}
.x9e_c00395{left:652.920000px;}
.x5a_c00395{left:656.580000px;}
.x3b_c00395{left:658.500000px;}
.x47_c00395{left:667.500000px;}
.x8b_c00395{left:669.000000px;}
.x53_c00395{left:672.000000px;}
.x94_c00395{left:673.500000px;}
.xd9_c00395{left:675.000000px;}
.xd2_c00395{left:676.080000px;}
.xde_c00395{left:678.000000px;}
.xb7_c00395{left:679.500000px;}
.xb2_c00395{left:684.000000px;}
.x3c_c00395{left:685.080000px;}
.x64_c00395{left:688.500000px;}
.xaa_c00395{left:689.580000px;}
.x6e_c00395{left:692.580000px;}
.x30_c00395{left:694.500000px;}
.xc4_c00395{left:695.580000px;}
.x77_c00395{left:697.920000px;}
.x48_c00395{left:699.420000px;}
.x4e_c00395{left:701.580000px;}
.x95_c00395{left:703.500000px;}
.xdf_c00395{left:704.580000px;}
.x65_c00395{left:708.420000px;}
.xce_c00395{left:714.000000px;}
@media print{
.v0_c00395{vertical-align:0.000000pt;}
.ls0_c00395{letter-spacing:0.000000pt;}
.ws2_c00395{word-spacing:-15.012693pt;}
.ws0_c00395{word-spacing:-3.186375pt;}
.ws1_c00395{word-spacing:-0.077867pt;}
.ws3_c00395{word-spacing:0.000000pt;}
._0_c00395{width:5.282620pt;}
.fs5_c00395{font-size:3.040000pt;}
.fs8_c00395{font-size:12.106667pt;}
.fs6_c00395{font-size:16.640000pt;}
.fs1_c00395{font-size:18.133333pt;}
.fs4_c00395{font-size:22.666667pt;}
.fs2_c00395{font-size:25.706667pt;}
.fs3_c00395{font-size:28.746667pt;}
.fs0_c00395{font-size:31.733333pt;}
.fs7_c00395{font-size:34.773333pt;}
.y0_c00395{bottom:0.000000pt;}
.yc7_c00395{bottom:219.400000pt;}
.yc8_c00395{bottom:220.360000pt;}
.yc9_c00395{bottom:220.560000pt;}
.yca_c00395{bottom:221.306667pt;}
.yc4_c00395{bottom:232.733333pt;}
.ybf_c00395{bottom:232.933333pt;}
.yc5_c00395{bottom:234.066667pt;}
.yc1_c00395{bottom:234.266667pt;}
.yc0_c00395{bottom:234.640000pt;}
.yc6_c00395{bottom:234.840000pt;}
.yc2_c00395{bottom:235.600000pt;}
.yc3_c00395{bottom:235.973333pt;}
.yb8_c00395{bottom:244.933333pt;}
.ybe_c00395{bottom:246.066667pt;}
.yb9_c00395{bottom:247.026667pt;}
.yba_c00395{bottom:247.600000pt;}
.ybc_c00395{bottom:247.973333pt;}
.ybd_c00395{bottom:248.560000pt;}
.ybb_c00395{bottom:248.933333pt;}
.yb6_c00395{bottom:260.360000pt;}
.yb7_c00395{bottom:262.266667pt;}
.yb5_c00395{bottom:272.733333pt;}
.yaf_c00395{bottom:272.933333pt;}
.yb0_c00395{bottom:273.693333pt;}
.yb1_c00395{bottom:273.893333pt;}
.yb3_c00395{bottom:274.266667pt;}
.yb4_c00395{bottom:274.640000pt;}
.yb2_c00395{bottom:275.600000pt;}
.yab_c00395{bottom:284.733333pt;}
.yae_c00395{bottom:286.066667pt;}
.ya9_c00395{bottom:286.840000pt;}
.yac_c00395{bottom:287.026667pt;}
.yaa_c00395{bottom:287.973333pt;}
.yad_c00395{bottom:288.173333pt;}
.ya6_c00395{bottom:297.306667pt;}
.ya5_c00395{bottom:299.026667pt;}
.ya8_c00395{bottom:299.973333pt;}
.ya7_c00395{bottom:300.933333pt;}
.ya3_c00395{bottom:311.973333pt;}
.y9d_c00395{bottom:312.560000pt;}
.ya1_c00395{bottom:312.733333pt;}
.y9e_c00395{bottom:313.306667pt;}
.ya2_c00395{bottom:313.693333pt;}
.y9f_c00395{bottom:313.893333pt;}
.ya0_c00395{bottom:314.640000pt;}
.ya4_c00395{bottom:315.600000pt;}
.y9c_c00395{bottom:338.440000pt;}
.y99_c00395{bottom:339.026667pt;}
.y9a_c00395{bottom:339.226667pt;}
.y98_c00395{bottom:339.973333pt;}
.y9b_c00395{bottom:340.360000pt;}
.y93_c00395{bottom:353.693333pt;}
.y97_c00395{bottom:355.400000pt;}
.y96_c00395{bottom:355.773333pt;}
.y94_c00395{bottom:356.360000pt;}
.y95_c00395{bottom:356.560000pt;}
.y8c_c00395{bottom:372.933333pt;}
.y91_c00395{bottom:373.106667pt;}
.y8d_c00395{bottom:373.893333pt;}
.y92_c00395{bottom:374.266667pt;}
.y8f_c00395{bottom:374.640000pt;}
.y8e_c00395{bottom:375.026667pt;}
.y90_c00395{bottom:375.973333pt;}
.y8a_c00395{bottom:390.440000pt;}
.y8b_c00395{bottom:392.360000pt;}
.y89_c00395{bottom:407.026667pt;}
.y87_c00395{bottom:407.773333pt;}
.y88_c00395{bottom:408.733333pt;}
.y85_c00395{bottom:409.693333pt;}
.y86_c00395{bottom:409.893333pt;}
.y82_c00395{bottom:425.106667pt;}
.y84_c00395{bottom:427.026667pt;}
.y81_c00395{bottom:427.226667pt;}
.y83_c00395{bottom:427.973333pt;}
.y7a_c00395{bottom:441.493333pt;}
.y7f_c00395{bottom:441.693333pt;}
.y7b_c00395{bottom:442.440000pt;}
.y7d_c00395{bottom:443.773333pt;}
.y80_c00395{bottom:444.560000pt;}
.y7e_c00395{bottom:445.306667pt;}
.y7c_c00395{bottom:445.693333pt;}
.y76_c00395{bottom:461.693333pt;}
.y79_c00395{bottom:462.066667pt;}
.y78_c00395{bottom:462.640000pt;}
.y77_c00395{bottom:463.026667pt;}
.y73_c00395{bottom:478.440000pt;}
.y74_c00395{bottom:479.226667pt;}
.y75_c00395{bottom:479.973333pt;}
.y72_c00395{bottom:480.360000pt;}
.y70_c00395{bottom:495.773333pt;}
.y6f_c00395{bottom:496.560000pt;}
.y71_c00395{bottom:497.306667pt;}
.y6e_c00395{bottom:513.106667pt;}
.y6c_c00395{bottom:515.026667pt;}
.y6d_c00395{bottom:515.973333pt;}
.y6b_c00395{bottom:530.440000pt;}
.y66_c00395{bottom:532.360000pt;}
.y69_c00395{bottom:532.560000pt;}
.y6a_c00395{bottom:532.733333pt;}
.y67_c00395{bottom:533.306667pt;}
.y68_c00395{bottom:533.693333pt;}
.y61_c00395{bottom:547.773333pt;}
.y64_c00395{bottom:549.106667pt;}
.y63_c00395{bottom:549.893333pt;}
.y62_c00395{bottom:551.026667pt;}
.y65_c00395{bottom:551.973333pt;}
.y5d_c00395{bottom:565.106667pt;}
.y5f_c00395{bottom:566.440000pt;}
.y5e_c00395{bottom:567.226667pt;}
.y5c_c00395{bottom:567.973333pt;}
.y60_c00395{bottom:568.360000pt;}
.y5b_c00395{bottom:583.400000pt;}
.y5a_c00395{bottom:583.773333pt;}
.y59_c00395{bottom:584.733333pt;}
.y58_c00395{bottom:585.693333pt;}
.y57_c00395{bottom:600.360000pt;}
.y51_c00395{bottom:601.106667pt;}
.y53_c00395{bottom:601.306667pt;}
.y55_c00395{bottom:601.893333pt;}
.y52_c00395{bottom:602.066667pt;}
.y54_c00395{bottom:602.640000pt;}
.y50_c00395{bottom:603.026667pt;}
.y56_c00395{bottom:603.226667pt;}
.y4e_c00395{bottom:617.693333pt;}
.y4d_c00395{bottom:618.440000pt;}
.y4b_c00395{bottom:620.360000pt;}
.y4f_c00395{bottom:621.306667pt;}
.y4c_c00395{bottom:621.706667pt;}
.y47_c00395{bottom:635.773333pt;}
.y48_c00395{bottom:637.693333pt;}
.y4a_c00395{bottom:638.066667pt;}
.y49_c00395{bottom:639.026667pt;}
.y46_c00395{bottom:653.106667pt;}
.y44_c00395{bottom:654.440000pt;}
.y43_c00395{bottom:655.026667pt;}
.y45_c00395{bottom:656.360000pt;}
.y40_c00395{bottom:671.400000pt;}
.y42_c00395{bottom:671.773333pt;}
.y41_c00395{bottom:673.693333pt;}
.y3d_c00395{bottom:687.773333pt;}
.y3f_c00395{bottom:690.066667pt;}
.y3e_c00395{bottom:691.026667pt;}
.y3a_c00395{bottom:706.440000pt;}
.y3b_c00395{bottom:707.400000pt;}
.y37_c00395{bottom:708.360000pt;}
.y38_c00395{bottom:708.373333pt;}
.y3c_c00395{bottom:708.560000pt;}
.y39_c00395{bottom:709.306667pt;}
.y35_c00395{bottom:723.773333pt;}
.y34_c00395{bottom:724.733333pt;}
.y36_c00395{bottom:725.693333pt;}
.y32_c00395{bottom:741.106667pt;}
.y33_c00395{bottom:742.066667pt;}
.y2f_c00395{bottom:743.026667pt;}
.y30_c00395{bottom:743.226667pt;}
.y31_c00395{bottom:744.373333pt;}
.y2e_c00395{bottom:758.440000pt;}
.y2c_c00395{bottom:775.400000pt;}
.y29_c00395{bottom:777.106667pt;}
.y2b_c00395{bottom:778.066667pt;}
.y2d_c00395{bottom:779.026667pt;}
.y2a_c00395{bottom:779.040000pt;}
.y28_c00395{bottom:794.440000pt;}
.y27_c00395{bottom:811.026667pt;}
.y22_c00395{bottom:811.773333pt;}
.y23_c00395{bottom:812.560000pt;}
.y26_c00395{bottom:812.733333pt;}
.y25_c00395{bottom:813.306667pt;}
.y24_c00395{bottom:813.693333pt;}
.y21_c00395{bottom:827.773333pt;}
.y1d_c00395{bottom:827.973333pt;}
.y1c_c00395{bottom:829.106667pt;}
.y20_c00395{bottom:830.640000pt;}
.y1f_c00395{bottom:831.026667pt;}
.y1e_c00395{bottom:831.973333pt;}
.y19_c00395{bottom:846.440000pt;}
.y1b_c00395{bottom:847.226667pt;}
.y1a_c00395{bottom:848.360000pt;}
.y16_c00395{bottom:863.773333pt;}
.y17_c00395{bottom:865.693333pt;}
.y18_c00395{bottom:866.640000pt;}
.y15_c00395{bottom:880.360000pt;}
.y10_c00395{bottom:881.106667pt;}
.y14_c00395{bottom:882.440000pt;}
.y12_c00395{bottom:883.026667pt;}
.y13_c00395{bottom:883.226667pt;}
.y11_c00395{bottom:884.373333pt;}
.yc_c00395{bottom:902.066667pt;}
.yf_c00395{bottom:902.266667pt;}
.yd_c00395{bottom:903.026667pt;}
.ye_c00395{bottom:903.973333pt;}
.yb_c00395{bottom:904.933333pt;}
.ya_c00395{bottom:919.400000pt;}
.y7_c00395{bottom:919.600000pt;}
.y8_c00395{bottom:920.360000pt;}
.y6_c00395{bottom:921.306667pt;}
.y9_c00395{bottom:922.266667pt;}
.y4_c00395{bottom:941.106667pt;}
.y5_c00395{bottom:942.066667pt;}
.y3_c00395{bottom:943.026667pt;}
.y1_c00395{bottom:975.773333pt;}
.y2_c00395{bottom:976.933333pt;}
.h6_c00395{height:3.739141pt;}
.h9_c00395{height:14.890964pt;}
.h7_c00395{height:20.466875pt;}
.h2_c00395{height:22.303646pt;}
.h5_c00395{height:27.879557pt;}
.h3_c00395{height:31.618698pt;}
.h4_c00395{height:35.357839pt;}
.h1_c00395{height:39.031380pt;}
.h8_c00395{height:42.770521pt;}
.h0_c00395{height:1186.666667pt;}
.w0_c00395{width:782.666667pt;}
.x0_c00395{left:0.000000pt;}
.x3d_c00395{left:135.040000pt;}
.x1_c00395{left:136.000000pt;}
.x25_c00395{left:136.960000pt;}
.x12_c00395{left:148.000000pt;}
.x1b_c00395{left:149.706667pt;}
.xe1_c00395{left:150.666667pt;}
.x9b_c00395{left:154.666667pt;}
.x26_c00395{left:156.960000pt;}
.xb8_c00395{left:158.293333pt;}
.xab_c00395{left:160.000000pt;}
.xe7_c00395{left:160.960000pt;}
.x96_c00395{left:162.293333pt;}
.xe2_c00395{left:163.626667pt;}
.xf1_c00395{left:164.760000pt;}
.xda_c00395{left:166.666667pt;}
.xe0_c00395{left:169.706667pt;}
.x5b_c00395{left:171.626667pt;}
.xc5_c00395{left:173.333333pt;}
.xbd_c00395{left:178.666667pt;}
.x6f_c00395{left:181.333333pt;}
.x66_c00395{left:184.000000pt;}
.xcf_c00395{left:186.666667pt;}
.x13_c00395{left:188.373333pt;}
.x49_c00395{left:189.333333pt;}
.x5c_c00395{left:192.960000pt;}
.x8c_c00395{left:199.040000pt;}
.xe8_c00395{left:200.000000pt;}
.xbe_c00395{left:201.333333pt;}
.xeb_c00395{left:202.666667pt;}
.x27_c00395{left:203.626667pt;}
.x9c_c00395{left:205.333333pt;}
.x7f_c00395{left:206.666667pt;}
.x9f_c00395{left:208.000000pt;}
.x3e_c00395{left:210.293333pt;}
.xb3_c00395{left:213.333333pt;}
.x67_c00395{left:214.293333pt;}
.x3_c00395{left:217.333333pt;}
.x3f_c00395{left:218.666667pt;}
.xc6_c00395{left:220.000000pt;}
.x54_c00395{left:221.333333pt;}
.xf8_c00395{left:223.040000pt;}
.xdb_c00395{left:224.373333pt;}
.x85_c00395{left:225.333333pt;}
.xe9_c00395{left:226.293333pt;}
.x4f_c00395{left:229.333333pt;}
.xd0_c00395{left:231.040000pt;}
.x5e_c00395{left:232.000000pt;}
.xe3_c00395{left:233.333333pt;}
.xd3_c00395{left:236.373333pt;}
.xac_c00395{left:237.333333pt;}
.x9_c00395{left:238.666667pt;}
.x31_c00395{left:240.000000pt;}
.x40_c00395{left:241.333333pt;}
.x1c_c00395{left:242.666667pt;}
.x86_c00395{left:243.626667pt;}
.x28_c00395{left:246.293333pt;}
.x50_c00395{left:248.000000pt;}
.x5f_c00395{left:249.333333pt;}
.xea_c00395{left:250.666667pt;}
.x14_c00395{left:255.626667pt;}
.xa_c00395{left:258.093333pt;}
.x1d_c00395{left:260.000000pt;}
.xc7_c00395{left:261.333333pt;}
.xf9_c00395{left:262.293333pt;}
.x5d_c00395{left:263.626667pt;}
.x29_c00395{left:265.333333pt;}
.x32_c00395{left:266.666667pt;}
.xa0_c00395{left:268.373333pt;}
.xbf_c00395{left:269.333333pt;}
.xf2_c00395{left:270.666667pt;}
.x15_c00395{left:271.626667pt;}
.x68_c00395{left:273.333333pt;}
.x78_c00395{left:277.706667pt;}
.x60_c00395{left:278.666667pt;}
.xb_c00395{left:280.000000pt;}
.x4a_c00395{left:281.333333pt;}
.x4_c00395{left:283.040000pt;}
.xd4_c00395{left:284.000000pt;}
.x55_c00395{left:284.960000pt;}
.xdc_c00395{left:286.666667pt;}
.xf5_c00395{left:288.000000pt;}
.xa1_c00395{left:292.000000pt;}
.xad_c00395{left:295.040000pt;}
.x1e_c00395{left:296.000000pt;}
.x41_c00395{left:300.000000pt;}
.x4b_c00395{left:301.333333pt;}
.xe4_c00395{left:302.293333pt;}
.x97_c00395{left:305.333333pt;}
.xec_c00395{left:306.666667pt;}
.x2a_c00395{left:308.000000pt;}
.x56_c00395{left:308.960000pt;}
.xf0_c00395{left:312.373333pt;}
.xb9_c00395{left:314.666667pt;}
.x16_c00395{left:316.373333pt;}
.xc_c00395{left:317.333333pt;}
.xa5_c00395{left:320.373333pt;}
.x33_c00395{left:322.666667pt;}
.x2b_c00395{left:324.000000pt;}
.xfa_c00395{left:325.333333pt;}
.x87_c00395{left:328.000000pt;}
.x8d_c00395{left:329.133333pt;}
.xc8_c00395{left:330.293333pt;}
.x9d_c00395{left:331.240000pt;}
.x69_c00395{left:334.666667pt;}
.xd5_c00395{left:337.333333pt;}
.x34_c00395{left:340.000000pt;}
.xa2_c00395{left:341.706667pt;}
.x79_c00395{left:344.000000pt;}
.x1f_c00395{left:345.333333pt;}
.x2_c00395{left:348.000000pt;}
.xb4_c00395{left:349.333333pt;}
.xd_c00395{left:350.666667pt;}
.x98_c00395{left:351.626667pt;}
.x57_c00395{left:354.666667pt;}
.x42_c00395{left:357.333333pt;}
.xc9_c00395{left:358.293333pt;}
.xed_c00395{left:360.373333pt;}
.xc0_c00395{left:364.000000pt;}
.x8e_c00395{left:365.706667pt;}
.x70_c00395{left:367.626667pt;}
.x2c_c00395{left:369.333333pt;}
.x5_c00395{left:373.706667pt;}
.xa6_c00395{left:375.040000pt;}
.xee_c00395{left:376.960000pt;}
.x4c_c00395{left:377.906667pt;}
.x61_c00395{left:380.373333pt;}
.x80_c00395{left:381.333333pt;}
.xf6_c00395{left:382.293333pt;}
.xe_c00395{left:385.706667pt;}
.x8f_c00395{left:387.040000pt;}
.xa3_c00395{left:390.666667pt;}
.x7a_c00395{left:392.960000pt;}
.x71_c00395{left:394.293333pt;}
.x20_c00395{left:396.373333pt;}
.x43_c00395{left:397.706667pt;}
.xca_c00395{left:398.666667pt;}
.x2d_c00395{left:400.373333pt;}
.x6a_c00395{left:401.333333pt;}
.x51_c00395{left:403.040000pt;}
.xf3_c00395{left:405.333333pt;}
.xae_c00395{left:406.666667pt;}
.x90_c00395{left:409.706667pt;}
.x35_c00395{left:410.666667pt;}
.x58_c00395{left:412.000000pt;}
.xd1_c00395{left:413.906667pt;}
.x21_c00395{left:417.706667pt;}
.x88_c00395{left:419.040000pt;}
.x17_c00395{left:420.000000pt;}
.xaf_c00395{left:420.960000pt;}
.xd6_c00395{left:424.000000pt;}
.x99_c00395{left:425.333333pt;}
.xc1_c00395{left:426.293333pt;}
.x44_c00395{left:427.626667pt;}
.xf_c00395{left:429.333333pt;}
.x91_c00395{left:433.333333pt;}
.x36_c00395{left:434.666667pt;}
.xdd_c00395{left:439.040000pt;}
.xcb_c00395{left:443.240000pt;}
.x59_c00395{left:445.333333pt;}
.x81_c00395{left:451.040000pt;}
.x89_c00395{left:453.333333pt;}
.x2e_c00395{left:455.626667pt;}
.xa4_c00395{left:456.960000pt;}
.x92_c00395{left:459.040000pt;}
.x7b_c00395{left:460.000000pt;}
.x6_c00395{left:462.293333pt;}
.x72_c00395{left:464.000000pt;}
.xc2_c00395{left:465.333333pt;}
.xe5_c00395{left:468.000000pt;}
.x18_c00395{left:469.333333pt;}
.x10_c00395{left:470.666667pt;}
.x6b_c00395{left:472.373333pt;}
.x82_c00395{left:473.333333pt;}
.x37_c00395{left:474.666667pt;}
.xba_c00395{left:476.000000pt;}
.x73_c00395{left:477.333333pt;}
.x62_c00395{left:478.293333pt;}
.x4d_c00395{left:481.333333pt;}
.x7_c00395{left:484.000000pt;}
.xa7_c00395{left:486.666667pt;}
.x7c_c00395{left:489.333333pt;}
.x8a_c00395{left:490.293333pt;}
.x22_c00395{left:492.373333pt;}
.xb5_c00395{left:495.040000pt;}
.x38_c00395{left:496.573333pt;}
.x6c_c00395{left:497.706667pt;}
.xef_c00395{left:498.666667pt;}
.xcc_c00395{left:499.626667pt;}
.xa8_c00395{left:501.333333pt;}
.x74_c00395{left:502.293333pt;}
.x11_c00395{left:504.000000pt;}
.x45_c00395{left:504.960000pt;}
.xd7_c00395{left:506.293333pt;}
.xb0_c00395{left:508.000000pt;}
.xf4_c00395{left:509.706667pt;}
.xe6_c00395{left:512.000000pt;}
.x39_c00395{left:514.293333pt;}
.xbb_c00395{left:517.333333pt;}
.x23_c00395{left:521.706667pt;}
.x83_c00395{left:524.960000pt;}
.xb6_c00395{left:527.040000pt;}
.x19_c00395{left:529.333333pt;}
.x75_c00395{left:530.293333pt;}
.x46_c00395{left:533.333333pt;}
.x8_c00395{left:535.800000pt;}
.xc3_c00395{left:537.333333pt;}
.x9a_c00395{left:538.666667pt;}
.xcd_c00395{left:541.333333pt;}
.x2f_c00395{left:543.040000pt;}
.x1a_c00395{left:544.000000pt;}
.x52_c00395{left:548.960000pt;}
.xa9_c00395{left:550.666667pt;}
.x84_c00395{left:552.000000pt;}
.x6d_c00395{left:554.293333pt;}
.x7d_c00395{left:555.626667pt;}
.xd8_c00395{left:558.293333pt;}
.x3a_c00395{left:561.706667pt;}
.x76_c00395{left:563.626667pt;}
.x93_c00395{left:565.706667pt;}
.xb1_c00395{left:566.666667pt;}
.xf7_c00395{left:568.000000pt;}
.x63_c00395{left:569.333333pt;}
.xbc_c00395{left:572.000000pt;}
.x24_c00395{left:576.000000pt;}
.x7e_c00395{left:577.706667pt;}
.x9e_c00395{left:580.373333pt;}
.x5a_c00395{left:583.626667pt;}
.x3b_c00395{left:585.333333pt;}
.x47_c00395{left:593.333333pt;}
.x8b_c00395{left:594.666667pt;}
.x53_c00395{left:597.333333pt;}
.x94_c00395{left:598.666667pt;}
.xd9_c00395{left:600.000000pt;}
.xd2_c00395{left:600.960000pt;}
.xde_c00395{left:602.666667pt;}
.xb7_c00395{left:604.000000pt;}
.xb2_c00395{left:608.000000pt;}
.x3c_c00395{left:608.960000pt;}
.x64_c00395{left:612.000000pt;}
.xaa_c00395{left:612.960000pt;}
.x6e_c00395{left:615.626667pt;}
.x30_c00395{left:617.333333pt;}
.xc4_c00395{left:618.293333pt;}
.x77_c00395{left:620.373333pt;}
.x48_c00395{left:621.706667pt;}
.x4e_c00395{left:623.626667pt;}
.x95_c00395{left:625.333333pt;}
.xdf_c00395{left:626.293333pt;}
.x65_c00395{left:629.706667pt;}
.xce_c00395{left:634.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_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_53e7d5f0d38d2c461c5682e8.woff2')format("woff");}.ff1_c00396{font-family:ff1_c00396;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc7_c00396{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00396{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.ma9_c00396{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m0_c00396{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.me6_c00396{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m12_c00396{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m2b_c00396{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m3c_c00396{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.mb7_c00396{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m1c_c00396{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m24_c00396{transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);}
.m3b_c00396{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.me0_c00396{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.mf8_c00396{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.me9_c00396{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.mdc_c00396{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.me5_c00396{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mfd_c00396{transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);}
.mb9_c00396{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.ma4_c00396{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m5c_c00396{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m44_c00396{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m7d_c00396{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.ma7_c00396{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.ma5_c00396{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mef_c00396{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m99_c00396{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m84_c00396{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m4a_c00396{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mca_c00396{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.mf4_c00396{transform:matrix(0.409509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409509,0.000000,0.000000,0.250000,0,0);}
.mbb_c00396{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.maa_c00396{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mc_c00396{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.mb3_c00396{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m85_c00396{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.mb4_c00396{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m40_c00396{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.me_c00396{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m3e_c00396{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mdb_c00396{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m2c_c00396{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m30_c00396{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mdd_c00396{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.md5_c00396{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m69_c00396{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mc2_c00396{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.mcd_c00396{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m22_c00396{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m76_c00396{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mb1_c00396{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mc0_c00396{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m65_c00396{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m13_c00396{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m43_c00396{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m77_c00396{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.m11_c00396{transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);}
.mf5_c00396{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m7f_c00396{transform:matrix(0.428423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428423,0.000000,0.000000,0.250000,0,0);}
.mbd_c00396{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.mde_c00396{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m97_c00396{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m2f_c00396{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m53_c00396{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m5d_c00396{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m80_c00396{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m9b_c00396{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m66_c00396{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.mfb_c00396{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m17_c00396{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m71_c00396{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.ma_c00396{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m111_c00396{transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);}
.me4_c00396{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m8f_c00396{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.mce_c00396{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.md9_c00396{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m4b_c00396{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m7a_c00396{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m98_c00396{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m103_c00396{transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);}
.m93_c00396{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.mdf_c00396{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m18_c00396{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m57_c00396{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m4f_c00396{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m3d_c00396{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m16_c00396{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m36_c00396{transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);}
.m23_c00396{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m6b_c00396{transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);}
.m68_c00396{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.md3_c00396{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.m10e_c00396{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.ma2_c00396{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.m70_c00396{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m8a_c00396{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m37_c00396{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.mbc_c00396{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.mf0_c00396{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.m9_c00396{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.md7_c00396{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.md_c00396{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mc8_c00396{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m102_c00396{transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);}
.m72_c00396{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.mf_c00396{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.mb0_c00396{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.mea_c00396{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m90_c00396{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m4_c00396{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m92_c00396{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m25_c00396{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m6a_c00396{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.me8_c00396{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mad_c00396{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mae_c00396{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m8c_c00396{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mff_c00396{transform:matrix(0.491176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491176,0.000000,0.000000,0.250000,0,0);}
.m9e_c00396{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.m62_c00396{transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);}
.m81_c00396{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mf3_c00396{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m1d_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);}
.mf7_c00396{transform:matrix(0.503711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503711,0.000000,0.000000,0.250000,0,0);}
.m88_c00396{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m8d_c00396{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m61_c00396{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m5a_c00396{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mf1_c00396{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m31_c00396{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.md4_c00396{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m3a_c00396{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mb5_c00396{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.mc3_c00396{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m42_c00396{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m63_c00396{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m101_c00396{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.mf2_c00396{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.md0_c00396{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m2_c00396{transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);}
.m4e_c00396{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.mec_c00396{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m45_c00396{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m114_c00396{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.m58_c00396{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m6e_c00396{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.ma0_c00396{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m86_c00396{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m46_c00396{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m110_c00396{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m33_c00396{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m34_c00396{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.me3_c00396{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m21_c00396{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m2e_c00396{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m74_c00396{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m4c_c00396{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m47_c00396{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m55_c00396{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m8_c00396{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m94_c00396{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m83_c00396{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mfc_c00396{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m8b_c00396{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m8e_c00396{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m64_c00396{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m41_c00396{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mc4_c00396{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m9d_c00396{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m4d_c00396{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m6_c00396{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m49_c00396{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m48_c00396{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m5f_c00396{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.meb_c00396{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.md2_c00396{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m7b_c00396{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m67_c00396{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m35_c00396{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m113_c00396{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.ma1_c00396{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m108_c00396{transform:matrix(0.564706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564706,0.000000,0.000000,0.250000,0,0);}
.mc5_c00396{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m96_c00396{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.ma3_c00396{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.me2_c00396{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m38_c00396{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m28_c00396{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.ma8_c00396{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mab_c00396{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m6f_c00396{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.mba_c00396{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m105_c00396{transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);}
.m3f_c00396{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.md6_c00396{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.ma6_c00396{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.mfa_c00396{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m107_c00396{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.mf6_c00396{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m10f_c00396{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m7_c00396{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m15_c00396{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m1e_c00396{transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);}
.mda_c00396{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m60_c00396{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m75_c00396{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m6c_c00396{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mf9_c00396{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.mac_c00396{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m6d_c00396{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.m9f_c00396{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);}
.m52_c00396{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.med_c00396{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m51_c00396{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.maf_c00396{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.mb2_c00396{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.m82_c00396{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.md1_c00396{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m10d_c00396{transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);}
.m3_c00396{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);}
.mc1_c00396{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);}
.m95_c00396{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m109_c00396{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m9a_c00396{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m73_c00396{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m14_c00396{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m29_c00396{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);}
.m56_c00396{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m112_c00396{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.mee_c00396{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m5_c00396{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m1_c00396{transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);}
.m87_c00396{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m26_c00396{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m10a_c00396{transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);}
.me7_c00396{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m27_c00396{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m9c_c00396{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m91_c00396{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m54_c00396{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m100_c00396{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.mcc_c00396{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m20_c00396{transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);}
.m1f_c00396{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mb_c00396{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m5b_c00396{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m19_c00396{transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);}
.mfe_c00396{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mc6_c00396{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m106_c00396{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);}
.m10c_c00396{transform:matrix(0.707353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707353,0.000000,0.000000,0.250000,0,0);}
.m1b_c00396{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m59_c00396{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m104_c00396{transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);}
.mb8_c00396{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mb6_c00396{transform:matrix(0.722794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722794,0.000000,0.000000,0.250000,0,0);}
.m89_c00396{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m7c_c00396{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m32_c00396{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.md8_c00396{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.mcf_c00396{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mbf_c00396{transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);}
.m39_c00396{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m5e_c00396{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mcb_c00396{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m78_c00396{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.me1_c00396{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m79_c00396{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mbe_c00396{transform:matrix(0.801282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.801282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.801282,0.000000,0.000000,0.250000,0,0);}
.m50_c00396{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m7e_c00396{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m2a_c00396{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m10b_c00396{transform:matrix(0.875735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875735,0.000000,0.000000,0.250000,0,0);}
.m1a_c00396{transform:matrix(1.123348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.123348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.123348,0.000000,0.000000,0.250000,0,0);}
.m10_c00396{transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);}
.m2d_c00396{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
.fs7_c00396{font-size:3.420000px;}
.fs6_c00396{font-size:13.620000px;}
.fs2_c00396{font-size:18.720000px;}
.fs1_c00396{font-size:20.400000px;}
.fs4_c00396{font-size:25.500000px;}
.fs3_c00396{font-size:28.920000px;}
.fs5_c00396{font-size:32.340000px;}
.fs0_c00396{font-size:35.700000px;}
.fs8_c00396{font-size:39.120000px;}
.y0_c00396{bottom:0.000000px;}
.y3_c00396{bottom:222.630000px;}
.yca_c00396{bottom:247.050000px;}
.yc9_c00396{bottom:248.970000px;}
.yc5_c00396{bottom:262.905000px;}
.yc6_c00396{bottom:263.130000px;}
.yc7_c00396{bottom:263.970000px;}
.yc8_c00396{bottom:264.195000px;}
.yc4_c00396{bottom:265.050000px;}
.ybc_c00396{bottom:276.825000px;}
.yc3_c00396{bottom:277.050000px;}
.ybe_c00396{bottom:277.905000px;}
.ybd_c00396{bottom:278.130000px;}
.ybb_c00396{bottom:278.970000px;}
.yc2_c00396{bottom:279.195000px;}
.ybf_c00396{bottom:280.050000px;}
.yc0_c00396{bottom:280.470000px;}
.yc1_c00396{bottom:281.550000px;}
.yba_c00396{bottom:282.195000px;}
.yb7_c00396{bottom:333.405000px;}
.yb9_c00396{bottom:334.245000px;}
.yb8_c00396{bottom:335.325000px;}
.yb6_c00396{bottom:336.405000px;}
.yb5_c00396{bottom:353.745000px;}
.yb3_c00396{bottom:354.180000px;}
.yb2_c00396{bottom:354.825000px;}
.yb0_c00396{bottom:355.905000px;}
.yb4_c00396{bottom:356.970000px;}
.yb1_c00396{bottom:357.405000px;}
.yaf_c00396{bottom:373.245000px;}
.yac_c00396{bottom:375.405000px;}
.yad_c00396{bottom:376.470000px;}
.yae_c00396{bottom:376.905000px;}
.ya7_c00396{bottom:392.745000px;}
.yab_c00396{bottom:394.245000px;}
.ya8_c00396{bottom:394.905000px;}
.ya9_c00396{bottom:395.970000px;}
.yaa_c00396{bottom:396.405000px;}
.ya5_c00396{bottom:413.745000px;}
.ya6_c00396{bottom:414.630000px;}
.ya4_c00396{bottom:415.470000px;}
.ya3_c00396{bottom:415.905000px;}
.y9f_c00396{bottom:432.405000px;}
.y9d_c00396{bottom:432.825000px;}
.ya1_c00396{bottom:433.245000px;}
.ya2_c00396{bottom:434.130000px;}
.ya0_c00396{bottom:434.970000px;}
.y9e_c00396{bottom:435.405000px;}
.y9b_c00396{bottom:452.745000px;}
.y9a_c00396{bottom:453.630000px;}
.y9c_c00396{bottom:454.905000px;}
.y97_c00396{bottom:472.245000px;}
.y99_c00396{bottom:473.970000px;}
.y96_c00396{bottom:474.405000px;}
.y98_c00396{bottom:475.470000px;}
.y91_c00396{bottom:491.745000px;}
.y94_c00396{bottom:491.970000px;}
.y95_c00396{bottom:493.245000px;}
.y8f_c00396{bottom:493.905000px;}
.y92_c00396{bottom:494.130000px;}
.y93_c00396{bottom:494.970000px;}
.y90_c00396{bottom:495.405000px;}
.y8b_c00396{bottom:511.245000px;}
.y8d_c00396{bottom:512.745000px;}
.y8e_c00396{bottom:513.405000px;}
.y8c_c00396{bottom:513.630000px;}
.y8a_c00396{bottom:514.905000px;}
.y86_c00396{bottom:532.245000px;}
.y89_c00396{bottom:533.325000px;}
.y88_c00396{bottom:533.970000px;}
.y87_c00396{bottom:534.405000px;}
.y85_c00396{bottom:551.745000px;}
.y84_c00396{bottom:552.630000px;}
.y83_c00396{bottom:553.905000px;}
.y80_c00396{bottom:568.905000px;}
.y81_c00396{bottom:570.825000px;}
.y7f_c00396{bottom:571.245000px;}
.y82_c00396{bottom:572.130000px;}
.y7c_c00396{bottom:572.970000px;}
.y7e_c00396{bottom:573.405000px;}
.y7d_c00396{bottom:574.470000px;}
.y7b_c00396{bottom:590.745000px;}
.y7a_c00396{bottom:591.630000px;}
.y79_c00396{bottom:592.905000px;}
.y77_c00396{bottom:610.245000px;}
.y78_c00396{bottom:611.550000px;}
.y76_c00396{bottom:612.405000px;}
.y75_c00396{bottom:612.630000px;}
.y73_c00396{bottom:629.745000px;}
.y6e_c00396{bottom:630.825000px;}
.y71_c00396{bottom:631.245000px;}
.y72_c00396{bottom:631.905000px;}
.y70_c00396{bottom:632.130000px;}
.y74_c00396{bottom:632.970000px;}
.y6f_c00396{bottom:633.405000px;}
.y6c_c00396{bottom:650.745000px;}
.y6a_c00396{bottom:651.405000px;}
.y6d_c00396{bottom:652.470000px;}
.y6b_c00396{bottom:652.905000px;}
.y69_c00396{bottom:670.245000px;}
.y68_c00396{bottom:672.405000px;}
.y66_c00396{bottom:689.745000px;}
.y67_c00396{bottom:691.470000px;}
.y65_c00396{bottom:691.905000px;}
.y64_c00396{bottom:709.245000px;}
.y63_c00396{bottom:711.405000px;}
.y62_c00396{bottom:712.470000px;}
.y5e_c00396{bottom:728.745000px;}
.y61_c00396{bottom:729.825000px;}
.y60_c00396{bottom:730.905000px;}
.y5f_c00396{bottom:731.970000px;}
.y5b_c00396{bottom:748.245000px;}
.y5a_c00396{bottom:750.405000px;}
.y5d_c00396{bottom:750.630000px;}
.y5c_c00396{bottom:751.470000px;}
.y57_c00396{bottom:766.905000px;}
.y56_c00396{bottom:769.245000px;}
.y59_c00396{bottom:770.130000px;}
.y58_c00396{bottom:770.325000px;}
.y55_c00396{bottom:771.405000px;}
.y50_c00396{bottom:788.745000px;}
.y51_c00396{bottom:789.630000px;}
.y54_c00396{bottom:789.825000px;}
.y53_c00396{bottom:790.470000px;}
.y52_c00396{bottom:790.905000px;}
.y4d_c00396{bottom:808.245000px;}
.y4b_c00396{bottom:809.325000px;}
.y4f_c00396{bottom:809.970000px;}
.y4c_c00396{bottom:810.405000px;}
.y4e_c00396{bottom:811.470000px;}
.y4a_c00396{bottom:826.245000px;}
.y48_c00396{bottom:827.745000px;}
.y46_c00396{bottom:828.630000px;}
.y45_c00396{bottom:828.825000px;}
.y47_c00396{bottom:829.470000px;}
.y44_c00396{bottom:829.905000px;}
.y49_c00396{bottom:830.130000px;}
.y42_c00396{bottom:845.970000px;}
.y40_c00396{bottom:846.405000px;}
.y3f_c00396{bottom:847.245000px;}
.y43_c00396{bottom:848.130000px;}
.y41_c00396{bottom:848.325000px;}
.y3d_c00396{bottom:849.405000px;}
.y3e_c00396{bottom:849.630000px;}
.y3c_c00396{bottom:850.470000px;}
.y3a_c00396{bottom:866.325000px;}
.y37_c00396{bottom:866.745000px;}
.y3b_c00396{bottom:868.470000px;}
.y38_c00396{bottom:868.905000px;}
.y39_c00396{bottom:870.405000px;}
.y35_c00396{bottom:886.245000px;}
.y33_c00396{bottom:887.325000px;}
.y36_c00396{bottom:887.745000px;}
.y32_c00396{bottom:888.405000px;}
.y34_c00396{bottom:889.905000px;}
.y2d_c00396{bottom:905.745000px;}
.y30_c00396{bottom:907.245000px;}
.y31_c00396{bottom:907.905000px;}
.y2f_c00396{bottom:908.130000px;}
.y2e_c00396{bottom:908.970000px;}
.y2c_c00396{bottom:909.405000px;}
.y27_c00396{bottom:926.745000px;}
.y2a_c00396{bottom:927.405000px;}
.y28_c00396{bottom:927.630000px;}
.y2b_c00396{bottom:928.470000px;}
.y26_c00396{bottom:928.905000px;}
.y29_c00396{bottom:929.970000px;}
.y23_c00396{bottom:946.245000px;}
.y25_c00396{bottom:946.905000px;}
.y24_c00396{bottom:948.405000px;}
.y21_c00396{bottom:965.745000px;}
.y20_c00396{bottom:966.630000px;}
.y1e_c00396{bottom:966.825000px;}
.y1f_c00396{bottom:967.905000px;}
.y22_c00396{bottom:971.130000px;}
.y19_c00396{bottom:985.245000px;}
.y1d_c00396{bottom:986.325000px;}
.y1b_c00396{bottom:987.405000px;}
.y1c_c00396{bottom:987.630000px;}
.y1a_c00396{bottom:988.920000px;}
.y16_c00396{bottom:1016.325000px;}
.y15_c00396{bottom:1017.405000px;}
.y17_c00396{bottom:1018.050000px;}
.y18_c00396{bottom:1018.695000px;}
.y14_c00396{bottom:1019.550000px;}
.yd_c00396{bottom:1030.470000px;}
.y12_c00396{bottom:1031.325000px;}
.ye_c00396{bottom:1032.405000px;}
.y11_c00396{bottom:1032.630000px;}
.y13_c00396{bottom:1033.470000px;}
.y10_c00396{bottom:1033.695000px;}
.yf_c00396{bottom:1034.550000px;}
.yb_c00396{bottom:1046.325000px;}
.y9_c00396{bottom:1047.405000px;}
.ya_c00396{bottom:1047.630000px;}
.yc_c00396{bottom:1049.550000px;}
.y7_c00396{bottom:1061.325000px;}
.y5_c00396{bottom:1062.405000px;}
.y4_c00396{bottom:1063.050000px;}
.y6_c00396{bottom:1063.470000px;}
.y8_c00396{bottom:1064.550000px;}
.y1_c00396{bottom:1097.745000px;}
.y2_c00396{bottom:1099.050000px;}
.h8_c00396{height:4.206533px;}
.h7_c00396{height:16.752334px;}
.h3_c00396{height:23.025234px;}
.h2_c00396{height:25.091602px;}
.h5_c00396{height:31.364502px;}
.h4_c00396{height:35.571035px;}
.h6_c00396{height:39.777568px;}
.h1_c00396{height:43.910303px;}
.h9_c00396{height:48.116836px;}
.h0_c00396{height:1335.000000px;}
.w0_c00396{width:880.500000px;}
.x0_c00396{left:0.000000px;}
.x11_c00396{left:151.080000px;}
.x77_c00396{left:153.000000px;}
.x4_c00396{left:166.500000px;}
.x2f_c00396{left:167.580000px;}
.xc7_c00396{left:171.420000px;}
.x68_c00396{left:174.420000px;}
.x78_c00396{left:177.000000px;}
.x25_c00396{left:178.500000px;}
.x5e_c00396{left:180.420000px;}
.x5_c00396{left:183.000000px;}
.x18_c00396{left:184.080000px;}
.x3b_c00396{left:186.420000px;}
.xde_c00396{left:187.500000px;}
.x11a_c00396{left:190.920000px;}
.xda_c00396{left:192.420000px;}
.x9c_c00396{left:193.500000px;}
.x4a_c00396{left:195.000000px;}
.x93_c00396{left:196.920000px;}
.x52_c00396{left:199.080000px;}
.x5f_c00396{left:203.580000px;}
.x12_c00396{left:208.080000px;}
.xc0_c00396{left:212.580000px;}
.x26_c00396{left:214.500000px;}
.x13_c00396{left:217.920000px;}
.xf8_c00396{left:219.000000px;}
.x3c_c00396{left:220.080000px;}
.x60_c00396{left:222.000000px;}
.xed_c00396{left:223.920000px;}
.x103_c00396{left:226.500000px;}
.xb2_c00396{left:232.920000px;}
.x79_c00396{left:234.420000px;}
.x8a_c00396{left:235.500000px;}
.x3d_c00396{left:237.000000px;}
.xe8_c00396{left:238.500000px;}
.x10d_c00396{left:239.580000px;}
.xce_c00396{left:241.920000px;}
.xb9_c00396{left:244.920000px;}
.x6_c00396{left:246.000000px;}
.x9d_c00396{left:247.500000px;}
.xfb_c00396{left:249.000000px;}
.x3e_c00396{left:250.500000px;}
.x19_c00396{left:252.000000px;}
.xc8_c00396{left:253.500000px;}
.x30_c00396{left:255.000000px;}
.x53_c00396{left:256.500000px;}
.xfe_c00396{left:258.420000px;}
.x6f_c00396{left:259.920000px;}
.x7a_c00396{left:261.000000px;}
.x104_c00396{left:264.000000px;}
.x94_c00396{left:265.500000px;}
.x109_c00396{left:266.580000px;}
.x4b_c00396{left:268.920000px;}
.x14_c00396{left:271.080000px;}
.x27_c00396{left:274.500000px;}
.x31_c00396{left:276.000000px;}
.x7_c00396{left:278.580000px;}
.x61_c00396{left:282.000000px;}
.xd5_c00396{left:283.500000px;}
.x95_c00396{left:285.000000px;}
.x3f_c00396{left:286.080000px;}
.xf3_c00396{left:289.500000px;}
.x83_c00396{left:291.000000px;}
.xee_c00396{left:292.500000px;}
.xfc_c00396{left:294.000000px;}
.xff_c00396{left:295.500000px;}
.x69_c00396{left:297.420000px;}
.xba_c00396{left:298.500000px;}
.x15_c00396{left:300.420000px;}
.xc1_c00396{left:301.920000px;}
.xef_c00396{left:303.000000px;}
.x54_c00396{left:304.920000px;}
.x1a_c00396{left:306.000000px;}
.x32_c00396{left:307.920000px;}
.x84_c00396{left:309.000000px;}
.x40_c00396{left:313.500000px;}
.xf4_c00396{left:315.000000px;}
.x8_c00396{left:316.080000px;}
.x1b_c00396{left:319.500000px;}
.xd6_c00396{left:322.080000px;}
.x7b_c00396{left:324.000000px;}
.xc9_c00396{left:325.920000px;}
.x70_c00396{left:327.000000px;}
.xdb_c00396{left:328.920000px;}
.x6a_c00396{left:330.000000px;}
.xe2_c00396{left:331.500000px;}
.xe9_c00396{left:333.420000px;}
.x9_c00396{left:334.500000px;}
.x4c_c00396{left:337.920000px;}
.x85_c00396{left:339.420000px;}
.xc2_c00396{left:340.920000px;}
.x16_c00396{left:342.000000px;}
.xdf_c00396{left:348.420000px;}
.xbb_c00396{left:351.000000px;}
.x28_c00396{left:352.500000px;}
.x8b_c00396{left:353.580000px;}
.xdc_c00396{left:355.920000px;}
.x1c_c00396{left:357.000000px;}
.x71_c00396{left:358.500000px;}
.xea_c00396{left:360.000000px;}
.xa5_c00396{left:361.920000px;}
.x41_c00396{left:364.920000px;}
.xbc_c00396{left:367.500000px;}
.xd7_c00396{left:369.000000px;}
.xab_c00396{left:370.500000px;}
.x17_c00396{left:372.420000px;}
.x29_c00396{left:373.920000px;}
.x7c_c00396{left:375.420000px;}
.x55_c00396{left:378.000000px;}
.x62_c00396{left:379.500000px;}
.x100_c00396{left:381.000000px;}
.x110_c00396{left:382.500000px;}
.x107_c00396{left:384.420000px;}
.x9e_c00396{left:385.920000px;}
.xcf_c00396{left:388.500000px;}
.x2_c00396{left:390.000000px;}
.x96_c00396{left:393.000000px;}
.xeb_c00396{left:394.500000px;}
.x86_c00396{left:396.420000px;}
.xa_c00396{left:398.145000px;}
.x6b_c00396{left:399.420000px;}
.xe3_c00396{left:400.920000px;}
.x8c_c00396{left:402.000000px;}
.x1d_c00396{left:405.000000px;}
.x115_c00396{left:409.500000px;}
.x7d_c00396{left:411.000000px;}
.x56_c00396{left:412.500000px;}
.x2a_c00396{left:414.420000px;}
.x4d_c00396{left:416.580000px;}
.x9f_c00396{left:420.000000px;}
.xd0_c00396{left:422.580000px;}
.xf9_c00396{left:424.500000px;}
.x97_c00396{left:425.580000px;}
.xac_c00396{left:427.080000px;}
.xa6_c00396{left:428.580000px;}
.x2b_c00396{left:435.000000px;}
.xec_c00396{left:436.080000px;}
.x8d_c00396{left:438.420000px;}
.x57_c00396{left:439.920000px;}
.xe0_c00396{left:441.420000px;}
.xb_c00396{left:442.920000px;}
.x42_c00396{left:444.000000px;}
.xb3_c00396{left:445.920000px;}
.x116_c00396{left:447.000000px;}
.x4e_c00396{left:448.500000px;}
.xc3_c00396{left:451.920000px;}
.x33_c00396{left:453.000000px;}
.x7e_c00396{left:454.920000px;}
.x1e_c00396{left:456.000000px;}
.x43_c00396{left:458.580000px;}
.xf5_c00396{left:459.855000px;}
.x63_c00396{left:460.920000px;}
.xa7_c00396{left:462.000000px;}
.x6c_c00396{left:463.500000px;}
.x8e_c00396{left:465.420000px;}
.xe1_c00396{left:466.500000px;}
.x34_c00396{left:467.580000px;}
.xf0_c00396{left:470.775000px;}
.xd1_c00396{left:472.080000px;}
.xc_c00396{left:474.000000px;}
.xa0_c00396{left:475.500000px;}
.x44_c00396{left:478.500000px;}
.x2c_c00396{left:484.500000px;}
.xca_c00396{left:486.420000px;}
.x72_c00396{left:487.500000px;}
.x87_c00396{left:489.420000px;}
.x45_c00396{left:490.920000px;}
.xf6_c00396{left:493.500000px;}
.x111_c00396{left:496.500000px;}
.x2d_c00396{left:499.500000px;}
.xb4_c00396{left:500.580000px;}
.xd2_c00396{left:504.420000px;}
.xad_c00396{left:505.500000px;}
.x117_c00396{left:506.580000px;}
.x64_c00396{left:508.080000px;}
.x35_c00396{left:510.000000px;}
.x2e_c00396{left:511.500000px;}
.xd_c00396{left:512.580000px;}
.x58_c00396{left:515.580000px;}
.xdd_c00396{left:517.500000px;}
.x4f_c00396{left:519.420000px;}
.xa1_c00396{left:520.500000px;}
.x46_c00396{left:522.420000px;}
.x112_c00396{left:523.500000px;}
.x10e_c00396{left:525.000000px;}
.xd8_c00396{left:526.500000px;}
.x1f_c00396{left:529.500000px;}
.x36_c00396{left:531.420000px;}
.xe_c00396{left:532.500000px;}
.x59_c00396{left:535.500000px;}
.x88_c00396{left:537.000000px;}
.x65_c00396{left:538.500000px;}
.x98_c00396{left:540.420000px;}
.xae_c00396{left:541.920000px;}
.x20_c00396{left:543.420000px;}
.xa8_c00396{left:544.500000px;}
.x73_c00396{left:547.080000px;}
.xb5_c00396{left:548.580000px;}
.x8f_c00396{left:550.920000px;}
.xcb_c00396{left:552.000000px;}
.xa2_c00396{left:553.500000px;}
.x7f_c00396{left:555.420000px;}
.x37_c00396{left:558.000000px;}
.x5a_c00396{left:562.080000px;}
.x10f_c00396{left:564.000000px;}
.xbd_c00396{left:565.920000px;}
.x99_c00396{left:567.000000px;}
.xaf_c00396{left:568.500000px;}
.x50_c00396{left:570.420000px;}
.x105_c00396{left:571.920000px;}
.x6d_c00396{left:573.420000px;}
.x47_c00396{left:575.580000px;}
.x118_c00396{left:577.920000px;}
.xa9_c00396{left:579.000000px;}
.xe4_c00396{left:580.920000px;}
.x21_c00396{left:582.000000px;}
.x90_c00396{left:583.920000px;}
.x10a_c00396{left:585.000000px;}
.xc4_c00396{left:586.920000px;}
.xfd_c00396{left:588.000000px;}
.xcc_c00396{left:589.920000px;}
.x38_c00396{left:592.080000px;}
.xb6_c00396{left:595.500000px;}
.x113_c00396{left:596.580000px;}
.xa3_c00396{left:598.920000px;}
.x9a_c00396{left:600.000000px;}
.x74_c00396{left:606.420000px;}
.x106_c00396{left:607.500000px;}
.xd9_c00396{left:608.580000px;}
.xf_c00396{left:613.080000px;}
.xc5_c00396{left:615.420000px;}
.x66_c00396{left:616.920000px;}
.xf7_c00396{left:618.000000px;}
.xbe_c00396{left:619.500000px;}
.x91_c00396{left:621.420000px;}
.xb0_c00396{left:622.920000px;}
.x48_c00396{left:624.000000px;}
.x101_c00396{left:625.500000px;}
.x75_c00396{left:628.920000px;}
.x22_c00396{left:630.000000px;}
.xb7_c00396{left:632.580000px;}
.x80_c00396{left:635.580000px;}
.xa4_c00396{left:637.920000px;}
.x114_c00396{left:639.000000px;}
.xd3_c00396{left:640.080000px;}
.x108_c00396{left:642.000000px;}
.x102_c00396{left:643.500000px;}
.xe5_c00396{left:646.080000px;}
.x89_c00396{left:648.000000px;}
.x92_c00396{left:649.080000px;}
.x5b_c00396{left:651.420000px;}
.x10_c00396{left:654.000000px;}
.x10b_c00396{left:655.500000px;}
.x39_c00396{left:656.580000px;}
.xcd_c00396{left:658.920000px;}
.x23_c00396{left:660.420000px;}
.xf1_c00396{left:661.500000px;}
.x76_c00396{left:662.580000px;}
.x6e_c00396{left:664.080000px;}
.xaa_c00396{left:666.000000px;}
.x49_c00396{left:670.920000px;}
.x81_c00396{left:673.500000px;}
.xe6_c00396{left:675.000000px;}
.xb1_c00396{left:676.500000px;}
.x5c_c00396{left:678.000000px;}
.x67_c00396{left:679.500000px;}
.x10c_c00396{left:682.080000px;}
.x119_c00396{left:687.420000px;}
.xfa_c00396{left:690.000000px;}
.xb8_c00396{left:691.500000px;}
.xf2_c00396{left:693.000000px;}
.xbf_c00396{left:694.080000px;}
.x3a_c00396{left:697.500000px;}
.x51_c00396{left:699.000000px;}
.xc6_c00396{left:700.920000px;}
.xd4_c00396{left:703.920000px;}
.x24_c00396{left:705.000000px;}
.x1_c00396{left:706.500000px;}
.x9b_c00396{left:708.420000px;}
.x82_c00396{left:712.500000px;}
.x5d_c00396{left:715.500000px;}
.x3_c00396{left:718.500000px;}
.xe7_c00396{left:721.500000px;}
@media print{
.v0_c00396{vertical-align:0.000000pt;}
.ls0_c00396{letter-spacing:0.000000pt;}
.ws0_c00396{word-spacing:0.000000pt;}
.fs7_c00396{font-size:3.040000pt;}
.fs6_c00396{font-size:12.106667pt;}
.fs2_c00396{font-size:16.640000pt;}
.fs1_c00396{font-size:18.133333pt;}
.fs4_c00396{font-size:22.666667pt;}
.fs3_c00396{font-size:25.706667pt;}
.fs5_c00396{font-size:28.746667pt;}
.fs0_c00396{font-size:31.733333pt;}
.fs8_c00396{font-size:34.773333pt;}
.y0_c00396{bottom:0.000000pt;}
.y3_c00396{bottom:197.893333pt;}
.yca_c00396{bottom:219.600000pt;}
.yc9_c00396{bottom:221.306667pt;}
.yc5_c00396{bottom:233.693333pt;}
.yc6_c00396{bottom:233.893333pt;}
.yc7_c00396{bottom:234.640000pt;}
.yc8_c00396{bottom:234.840000pt;}
.yc4_c00396{bottom:235.600000pt;}
.ybc_c00396{bottom:246.066667pt;}
.yc3_c00396{bottom:246.266667pt;}
.ybe_c00396{bottom:247.026667pt;}
.ybd_c00396{bottom:247.226667pt;}
.ybb_c00396{bottom:247.973333pt;}
.yc2_c00396{bottom:248.173333pt;}
.ybf_c00396{bottom:248.933333pt;}
.yc0_c00396{bottom:249.306667pt;}
.yc1_c00396{bottom:250.266667pt;}
.yba_c00396{bottom:250.840000pt;}
.yb7_c00396{bottom:296.360000pt;}
.yb9_c00396{bottom:297.106667pt;}
.yb8_c00396{bottom:298.066667pt;}
.yb6_c00396{bottom:299.026667pt;}
.yb5_c00396{bottom:314.440000pt;}
.yb3_c00396{bottom:314.826667pt;}
.yb2_c00396{bottom:315.400000pt;}
.yb0_c00396{bottom:316.360000pt;}
.yb4_c00396{bottom:317.306667pt;}
.yb1_c00396{bottom:317.693333pt;}
.yaf_c00396{bottom:331.773333pt;}
.yac_c00396{bottom:333.693333pt;}
.yad_c00396{bottom:334.640000pt;}
.yae_c00396{bottom:335.026667pt;}
.ya7_c00396{bottom:349.106667pt;}
.yab_c00396{bottom:350.440000pt;}
.ya8_c00396{bottom:351.026667pt;}
.ya9_c00396{bottom:351.973333pt;}
.yaa_c00396{bottom:352.360000pt;}
.ya5_c00396{bottom:367.773333pt;}
.ya6_c00396{bottom:368.560000pt;}
.ya4_c00396{bottom:369.306667pt;}
.ya3_c00396{bottom:369.693333pt;}
.y9f_c00396{bottom:384.360000pt;}
.y9d_c00396{bottom:384.733333pt;}
.ya1_c00396{bottom:385.106667pt;}
.ya2_c00396{bottom:385.893333pt;}
.ya0_c00396{bottom:386.640000pt;}
.y9e_c00396{bottom:387.026667pt;}
.y9b_c00396{bottom:402.440000pt;}
.y9a_c00396{bottom:403.226667pt;}
.y9c_c00396{bottom:404.360000pt;}
.y97_c00396{bottom:419.773333pt;}
.y99_c00396{bottom:421.306667pt;}
.y96_c00396{bottom:421.693333pt;}
.y98_c00396{bottom:422.640000pt;}
.y91_c00396{bottom:437.106667pt;}
.y94_c00396{bottom:437.306667pt;}
.y95_c00396{bottom:438.440000pt;}
.y8f_c00396{bottom:439.026667pt;}
.y92_c00396{bottom:439.226667pt;}
.y93_c00396{bottom:439.973333pt;}
.y90_c00396{bottom:440.360000pt;}
.y8b_c00396{bottom:454.440000pt;}
.y8d_c00396{bottom:455.773333pt;}
.y8e_c00396{bottom:456.360000pt;}
.y8c_c00396{bottom:456.560000pt;}
.y8a_c00396{bottom:457.693333pt;}
.y86_c00396{bottom:473.106667pt;}
.y89_c00396{bottom:474.066667pt;}
.y88_c00396{bottom:474.640000pt;}
.y87_c00396{bottom:475.026667pt;}
.y85_c00396{bottom:490.440000pt;}
.y84_c00396{bottom:491.226667pt;}
.y83_c00396{bottom:492.360000pt;}
.y80_c00396{bottom:505.693333pt;}
.y81_c00396{bottom:507.400000pt;}
.y7f_c00396{bottom:507.773333pt;}
.y82_c00396{bottom:508.560000pt;}
.y7c_c00396{bottom:509.306667pt;}
.y7e_c00396{bottom:509.693333pt;}
.y7d_c00396{bottom:510.640000pt;}
.y7b_c00396{bottom:525.106667pt;}
.y7a_c00396{bottom:525.893333pt;}
.y79_c00396{bottom:527.026667pt;}
.y77_c00396{bottom:542.440000pt;}
.y78_c00396{bottom:543.600000pt;}
.y76_c00396{bottom:544.360000pt;}
.y75_c00396{bottom:544.560000pt;}
.y73_c00396{bottom:559.773333pt;}
.y6e_c00396{bottom:560.733333pt;}
.y71_c00396{bottom:561.106667pt;}
.y72_c00396{bottom:561.693333pt;}
.y70_c00396{bottom:561.893333pt;}
.y74_c00396{bottom:562.640000pt;}
.y6f_c00396{bottom:563.026667pt;}
.y6c_c00396{bottom:578.440000pt;}
.y6a_c00396{bottom:579.026667pt;}
.y6d_c00396{bottom:579.973333pt;}
.y6b_c00396{bottom:580.360000pt;}
.y69_c00396{bottom:595.773333pt;}
.y68_c00396{bottom:597.693333pt;}
.y66_c00396{bottom:613.106667pt;}
.y67_c00396{bottom:614.640000pt;}
.y65_c00396{bottom:615.026667pt;}
.y64_c00396{bottom:630.440000pt;}
.y63_c00396{bottom:632.360000pt;}
.y62_c00396{bottom:633.306667pt;}
.y5e_c00396{bottom:647.773333pt;}
.y61_c00396{bottom:648.733333pt;}
.y60_c00396{bottom:649.693333pt;}
.y5f_c00396{bottom:650.640000pt;}
.y5b_c00396{bottom:665.106667pt;}
.y5a_c00396{bottom:667.026667pt;}
.y5d_c00396{bottom:667.226667pt;}
.y5c_c00396{bottom:667.973333pt;}
.y57_c00396{bottom:681.693333pt;}
.y56_c00396{bottom:683.773333pt;}
.y59_c00396{bottom:684.560000pt;}
.y58_c00396{bottom:684.733333pt;}
.y55_c00396{bottom:685.693333pt;}
.y50_c00396{bottom:701.106667pt;}
.y51_c00396{bottom:701.893333pt;}
.y54_c00396{bottom:702.066667pt;}
.y53_c00396{bottom:702.640000pt;}
.y52_c00396{bottom:703.026667pt;}
.y4d_c00396{bottom:718.440000pt;}
.y4b_c00396{bottom:719.400000pt;}
.y4f_c00396{bottom:719.973333pt;}
.y4c_c00396{bottom:720.360000pt;}
.y4e_c00396{bottom:721.306667pt;}
.y4a_c00396{bottom:734.440000pt;}
.y48_c00396{bottom:735.773333pt;}
.y46_c00396{bottom:736.560000pt;}
.y45_c00396{bottom:736.733333pt;}
.y47_c00396{bottom:737.306667pt;}
.y44_c00396{bottom:737.693333pt;}
.y49_c00396{bottom:737.893333pt;}
.y42_c00396{bottom:751.973333pt;}
.y40_c00396{bottom:752.360000pt;}
.y3f_c00396{bottom:753.106667pt;}
.y43_c00396{bottom:753.893333pt;}
.y41_c00396{bottom:754.066667pt;}
.y3d_c00396{bottom:755.026667pt;}
.y3e_c00396{bottom:755.226667pt;}
.y3c_c00396{bottom:755.973333pt;}
.y3a_c00396{bottom:770.066667pt;}
.y37_c00396{bottom:770.440000pt;}
.y3b_c00396{bottom:771.973333pt;}
.y38_c00396{bottom:772.360000pt;}
.y39_c00396{bottom:773.693333pt;}
.y35_c00396{bottom:787.773333pt;}
.y33_c00396{bottom:788.733333pt;}
.y36_c00396{bottom:789.106667pt;}
.y32_c00396{bottom:789.693333pt;}
.y34_c00396{bottom:791.026667pt;}
.y2d_c00396{bottom:805.106667pt;}
.y30_c00396{bottom:806.440000pt;}
.y31_c00396{bottom:807.026667pt;}
.y2f_c00396{bottom:807.226667pt;}
.y2e_c00396{bottom:807.973333pt;}
.y2c_c00396{bottom:808.360000pt;}
.y27_c00396{bottom:823.773333pt;}
.y2a_c00396{bottom:824.360000pt;}
.y28_c00396{bottom:824.560000pt;}
.y2b_c00396{bottom:825.306667pt;}
.y26_c00396{bottom:825.693333pt;}
.y29_c00396{bottom:826.640000pt;}
.y23_c00396{bottom:841.106667pt;}
.y25_c00396{bottom:841.693333pt;}
.y24_c00396{bottom:843.026667pt;}
.y21_c00396{bottom:858.440000pt;}
.y20_c00396{bottom:859.226667pt;}
.y1e_c00396{bottom:859.400000pt;}
.y1f_c00396{bottom:860.360000pt;}
.y22_c00396{bottom:863.226667pt;}
.y19_c00396{bottom:875.773333pt;}
.y1d_c00396{bottom:876.733333pt;}
.y1b_c00396{bottom:877.693333pt;}
.y1c_c00396{bottom:877.893333pt;}
.y1a_c00396{bottom:879.040000pt;}
.y16_c00396{bottom:903.400000pt;}
.y15_c00396{bottom:904.360000pt;}
.y17_c00396{bottom:904.933333pt;}
.y18_c00396{bottom:905.506667pt;}
.y14_c00396{bottom:906.266667pt;}
.yd_c00396{bottom:915.973333pt;}
.y12_c00396{bottom:916.733333pt;}
.ye_c00396{bottom:917.693333pt;}
.y11_c00396{bottom:917.893333pt;}
.y13_c00396{bottom:918.640000pt;}
.y10_c00396{bottom:918.840000pt;}
.yf_c00396{bottom:919.600000pt;}
.yb_c00396{bottom:930.066667pt;}
.y9_c00396{bottom:931.026667pt;}
.ya_c00396{bottom:931.226667pt;}
.yc_c00396{bottom:932.933333pt;}
.y7_c00396{bottom:943.400000pt;}
.y5_c00396{bottom:944.360000pt;}
.y4_c00396{bottom:944.933333pt;}
.y6_c00396{bottom:945.306667pt;}
.y8_c00396{bottom:946.266667pt;}
.y1_c00396{bottom:975.773333pt;}
.y2_c00396{bottom:976.933333pt;}
.h8_c00396{height:3.739141pt;}
.h7_c00396{height:14.890964pt;}
.h3_c00396{height:20.466875pt;}
.h2_c00396{height:22.303646pt;}
.h5_c00396{height:27.879557pt;}
.h4_c00396{height:31.618698pt;}
.h6_c00396{height:35.357839pt;}
.h1_c00396{height:39.031380pt;}
.h9_c00396{height:42.770521pt;}
.h0_c00396{height:1186.666667pt;}
.w0_c00396{width:782.666667pt;}
.x0_c00396{left:0.000000pt;}
.x11_c00396{left:134.293333pt;}
.x77_c00396{left:136.000000pt;}
.x4_c00396{left:148.000000pt;}
.x2f_c00396{left:148.960000pt;}
.xc7_c00396{left:152.373333pt;}
.x68_c00396{left:155.040000pt;}
.x78_c00396{left:157.333333pt;}
.x25_c00396{left:158.666667pt;}
.x5e_c00396{left:160.373333pt;}
.x5_c00396{left:162.666667pt;}
.x18_c00396{left:163.626667pt;}
.x3b_c00396{left:165.706667pt;}
.xde_c00396{left:166.666667pt;}
.x11a_c00396{left:169.706667pt;}
.xda_c00396{left:171.040000pt;}
.x9c_c00396{left:172.000000pt;}
.x4a_c00396{left:173.333333pt;}
.x93_c00396{left:175.040000pt;}
.x52_c00396{left:176.960000pt;}
.x5f_c00396{left:180.960000pt;}
.x12_c00396{left:184.960000pt;}
.xc0_c00396{left:188.960000pt;}
.x26_c00396{left:190.666667pt;}
.x13_c00396{left:193.706667pt;}
.xf8_c00396{left:194.666667pt;}
.x3c_c00396{left:195.626667pt;}
.x60_c00396{left:197.333333pt;}
.xed_c00396{left:199.040000pt;}
.x103_c00396{left:201.333333pt;}
.xb2_c00396{left:207.040000pt;}
.x79_c00396{left:208.373333pt;}
.x8a_c00396{left:209.333333pt;}
.x3d_c00396{left:210.666667pt;}
.xe8_c00396{left:212.000000pt;}
.x10d_c00396{left:212.960000pt;}
.xce_c00396{left:215.040000pt;}
.xb9_c00396{left:217.706667pt;}
.x6_c00396{left:218.666667pt;}
.x9d_c00396{left:220.000000pt;}
.xfb_c00396{left:221.333333pt;}
.x3e_c00396{left:222.666667pt;}
.x19_c00396{left:224.000000pt;}
.xc8_c00396{left:225.333333pt;}
.x30_c00396{left:226.666667pt;}
.x53_c00396{left:228.000000pt;}
.xfe_c00396{left:229.706667pt;}
.x6f_c00396{left:231.040000pt;}
.x7a_c00396{left:232.000000pt;}
.x104_c00396{left:234.666667pt;}
.x94_c00396{left:236.000000pt;}
.x109_c00396{left:236.960000pt;}
.x4b_c00396{left:239.040000pt;}
.x14_c00396{left:240.960000pt;}
.x27_c00396{left:244.000000pt;}
.x31_c00396{left:245.333333pt;}
.x7_c00396{left:247.626667pt;}
.x61_c00396{left:250.666667pt;}
.xd5_c00396{left:252.000000pt;}
.x95_c00396{left:253.333333pt;}
.x3f_c00396{left:254.293333pt;}
.xf3_c00396{left:257.333333pt;}
.x83_c00396{left:258.666667pt;}
.xee_c00396{left:260.000000pt;}
.xfc_c00396{left:261.333333pt;}
.xff_c00396{left:262.666667pt;}
.x69_c00396{left:264.373333pt;}
.xba_c00396{left:265.333333pt;}
.x15_c00396{left:267.040000pt;}
.xc1_c00396{left:268.373333pt;}
.xef_c00396{left:269.333333pt;}
.x54_c00396{left:271.040000pt;}
.x1a_c00396{left:272.000000pt;}
.x32_c00396{left:273.706667pt;}
.x84_c00396{left:274.666667pt;}
.x40_c00396{left:278.666667pt;}
.xf4_c00396{left:280.000000pt;}
.x8_c00396{left:280.960000pt;}
.x1b_c00396{left:284.000000pt;}
.xd6_c00396{left:286.293333pt;}
.x7b_c00396{left:288.000000pt;}
.xc9_c00396{left:289.706667pt;}
.x70_c00396{left:290.666667pt;}
.xdb_c00396{left:292.373333pt;}
.x6a_c00396{left:293.333333pt;}
.xe2_c00396{left:294.666667pt;}
.xe9_c00396{left:296.373333pt;}
.x9_c00396{left:297.333333pt;}
.x4c_c00396{left:300.373333pt;}
.x85_c00396{left:301.706667pt;}
.xc2_c00396{left:303.040000pt;}
.x16_c00396{left:304.000000pt;}
.xdf_c00396{left:309.706667pt;}
.xbb_c00396{left:312.000000pt;}
.x28_c00396{left:313.333333pt;}
.x8b_c00396{left:314.293333pt;}
.xdc_c00396{left:316.373333pt;}
.x1c_c00396{left:317.333333pt;}
.x71_c00396{left:318.666667pt;}
.xea_c00396{left:320.000000pt;}
.xa5_c00396{left:321.706667pt;}
.x41_c00396{left:324.373333pt;}
.xbc_c00396{left:326.666667pt;}
.xd7_c00396{left:328.000000pt;}
.xab_c00396{left:329.333333pt;}
.x17_c00396{left:331.040000pt;}
.x29_c00396{left:332.373333pt;}
.x7c_c00396{left:333.706667pt;}
.x55_c00396{left:336.000000pt;}
.x62_c00396{left:337.333333pt;}
.x100_c00396{left:338.666667pt;}
.x110_c00396{left:340.000000pt;}
.x107_c00396{left:341.706667pt;}
.x9e_c00396{left:343.040000pt;}
.xcf_c00396{left:345.333333pt;}
.x2_c00396{left:346.666667pt;}
.x96_c00396{left:349.333333pt;}
.xeb_c00396{left:350.666667pt;}
.x86_c00396{left:352.373333pt;}
.xa_c00396{left:353.906667pt;}
.x6b_c00396{left:355.040000pt;}
.xe3_c00396{left:356.373333pt;}
.x8c_c00396{left:357.333333pt;}
.x1d_c00396{left:360.000000pt;}
.x115_c00396{left:364.000000pt;}
.x7d_c00396{left:365.333333pt;}
.x56_c00396{left:366.666667pt;}
.x2a_c00396{left:368.373333pt;}
.x4d_c00396{left:370.293333pt;}
.x9f_c00396{left:373.333333pt;}
.xd0_c00396{left:375.626667pt;}
.xf9_c00396{left:377.333333pt;}
.x97_c00396{left:378.293333pt;}
.xac_c00396{left:379.626667pt;}
.xa6_c00396{left:380.960000pt;}
.x2b_c00396{left:386.666667pt;}
.xec_c00396{left:387.626667pt;}
.x8d_c00396{left:389.706667pt;}
.x57_c00396{left:391.040000pt;}
.xe0_c00396{left:392.373333pt;}
.xb_c00396{left:393.706667pt;}
.x42_c00396{left:394.666667pt;}
.xb3_c00396{left:396.373333pt;}
.x116_c00396{left:397.333333pt;}
.x4e_c00396{left:398.666667pt;}
.xc3_c00396{left:401.706667pt;}
.x33_c00396{left:402.666667pt;}
.x7e_c00396{left:404.373333pt;}
.x1e_c00396{left:405.333333pt;}
.x43_c00396{left:407.626667pt;}
.xf5_c00396{left:408.760000pt;}
.x63_c00396{left:409.706667pt;}
.xa7_c00396{left:410.666667pt;}
.x6c_c00396{left:412.000000pt;}
.x8e_c00396{left:413.706667pt;}
.xe1_c00396{left:414.666667pt;}
.x34_c00396{left:415.626667pt;}
.xf0_c00396{left:418.466667pt;}
.xd1_c00396{left:419.626667pt;}
.xc_c00396{left:421.333333pt;}
.xa0_c00396{left:422.666667pt;}
.x44_c00396{left:425.333333pt;}
.x2c_c00396{left:430.666667pt;}
.xca_c00396{left:432.373333pt;}
.x72_c00396{left:433.333333pt;}
.x87_c00396{left:435.040000pt;}
.x45_c00396{left:436.373333pt;}
.xf6_c00396{left:438.666667pt;}
.x111_c00396{left:441.333333pt;}
.x2d_c00396{left:444.000000pt;}
.xb4_c00396{left:444.960000pt;}
.xd2_c00396{left:448.373333pt;}
.xad_c00396{left:449.333333pt;}
.x117_c00396{left:450.293333pt;}
.x64_c00396{left:451.626667pt;}
.x35_c00396{left:453.333333pt;}
.x2e_c00396{left:454.666667pt;}
.xd_c00396{left:455.626667pt;}
.x58_c00396{left:458.293333pt;}
.xdd_c00396{left:460.000000pt;}
.x4f_c00396{left:461.706667pt;}
.xa1_c00396{left:462.666667pt;}
.x46_c00396{left:464.373333pt;}
.x112_c00396{left:465.333333pt;}
.x10e_c00396{left:466.666667pt;}
.xd8_c00396{left:468.000000pt;}
.x1f_c00396{left:470.666667pt;}
.x36_c00396{left:472.373333pt;}
.xe_c00396{left:473.333333pt;}
.x59_c00396{left:476.000000pt;}
.x88_c00396{left:477.333333pt;}
.x65_c00396{left:478.666667pt;}
.x98_c00396{left:480.373333pt;}
.xae_c00396{left:481.706667pt;}
.x20_c00396{left:483.040000pt;}
.xa8_c00396{left:484.000000pt;}
.x73_c00396{left:486.293333pt;}
.xb5_c00396{left:487.626667pt;}
.x8f_c00396{left:489.706667pt;}
.xcb_c00396{left:490.666667pt;}
.xa2_c00396{left:492.000000pt;}
.x7f_c00396{left:493.706667pt;}
.x37_c00396{left:496.000000pt;}
.x5a_c00396{left:499.626667pt;}
.x10f_c00396{left:501.333333pt;}
.xbd_c00396{left:503.040000pt;}
.x99_c00396{left:504.000000pt;}
.xaf_c00396{left:505.333333pt;}
.x50_c00396{left:507.040000pt;}
.x105_c00396{left:508.373333pt;}
.x6d_c00396{left:509.706667pt;}
.x47_c00396{left:511.626667pt;}
.x118_c00396{left:513.706667pt;}
.xa9_c00396{left:514.666667pt;}
.xe4_c00396{left:516.373333pt;}
.x21_c00396{left:517.333333pt;}
.x90_c00396{left:519.040000pt;}
.x10a_c00396{left:520.000000pt;}
.xc4_c00396{left:521.706667pt;}
.xfd_c00396{left:522.666667pt;}
.xcc_c00396{left:524.373333pt;}
.x38_c00396{left:526.293333pt;}
.xb6_c00396{left:529.333333pt;}
.x113_c00396{left:530.293333pt;}
.xa3_c00396{left:532.373333pt;}
.x9a_c00396{left:533.333333pt;}
.x74_c00396{left:539.040000pt;}
.x106_c00396{left:540.000000pt;}
.xd9_c00396{left:540.960000pt;}
.xf_c00396{left:544.960000pt;}
.xc5_c00396{left:547.040000pt;}
.x66_c00396{left:548.373333pt;}
.xf7_c00396{left:549.333333pt;}
.xbe_c00396{left:550.666667pt;}
.x91_c00396{left:552.373333pt;}
.xb0_c00396{left:553.706667pt;}
.x48_c00396{left:554.666667pt;}
.x101_c00396{left:556.000000pt;}
.x75_c00396{left:559.040000pt;}
.x22_c00396{left:560.000000pt;}
.xb7_c00396{left:562.293333pt;}
.x80_c00396{left:564.960000pt;}
.xa4_c00396{left:567.040000pt;}
.x114_c00396{left:568.000000pt;}
.xd3_c00396{left:568.960000pt;}
.x108_c00396{left:570.666667pt;}
.x102_c00396{left:572.000000pt;}
.xe5_c00396{left:574.293333pt;}
.x89_c00396{left:576.000000pt;}
.x92_c00396{left:576.960000pt;}
.x5b_c00396{left:579.040000pt;}
.x10_c00396{left:581.333333pt;}
.x10b_c00396{left:582.666667pt;}
.x39_c00396{left:583.626667pt;}
.xcd_c00396{left:585.706667pt;}
.x23_c00396{left:587.040000pt;}
.xf1_c00396{left:588.000000pt;}
.x76_c00396{left:588.960000pt;}
.x6e_c00396{left:590.293333pt;}
.xaa_c00396{left:592.000000pt;}
.x49_c00396{left:596.373333pt;}
.x81_c00396{left:598.666667pt;}
.xe6_c00396{left:600.000000pt;}
.xb1_c00396{left:601.333333pt;}
.x5c_c00396{left:602.666667pt;}
.x67_c00396{left:604.000000pt;}
.x10c_c00396{left:606.293333pt;}
.x119_c00396{left:611.040000pt;}
.xfa_c00396{left:613.333333pt;}
.xb8_c00396{left:614.666667pt;}
.xf2_c00396{left:616.000000pt;}
.xbf_c00396{left:616.960000pt;}
.x3a_c00396{left:620.000000pt;}
.x51_c00396{left:621.333333pt;}
.xc6_c00396{left:623.040000pt;}
.xd4_c00396{left:625.706667pt;}
.x24_c00396{left:626.666667pt;}
.x1_c00396{left:628.000000pt;}
.x9b_c00396{left:629.706667pt;}
.x82_c00396{left:633.333333pt;}
.x5d_c00396{left:636.000000pt;}
.x3_c00396{left:638.666667pt;}
.xe7_c00396{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8e3adf7dd7105029d12bae48.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:1.688965;font-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_c00397{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m25_c00397{transform:matrix(0.357884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357884,0.000000,0.000000,0.250000,0,0);}
.m1e_c00397{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m7f_c00397{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m87_c00397{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m0_c00397{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.me_c00397{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m29_c00397{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m90_c00397{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m83_c00397{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m23_c00397{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m94_c00397{transform:matrix(0.379406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379406,0.000000,0.000000,0.250000,0,0);}
.m22_c00397{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m32_c00397{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m53_c00397{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m70_c00397{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m33_c00397{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m80_c00397{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m96_c00397{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m40_c00397{transform:matrix(0.399896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399896,0.000000,0.000000,0.250000,0,0);}
.m50_c00397{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m38_c00397{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m68_c00397{transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);}
.m1d_c00397{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m1a_c00397{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m5f_c00397{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m39_c00397{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m95_c00397{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.m71_c00397{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m69_c00397{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m27_c00397{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m9b_c00397{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m30_c00397{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m67_c00397{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m1b_c00397{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m84_c00397{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m5b_c00397{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.mc6_c00397{transform:matrix(0.428676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428676,0.000000,0.000000,0.250000,0,0);}
.m92_c00397{transform:matrix(0.434706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434706,0.000000,0.000000,0.250000,0,0);}
.m4e_c00397{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m5d_c00397{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mb9_c00397{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);}
.m4b_c00397{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.md_c00397{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m2d_c00397{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m41_c00397{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m74_c00397{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m62_c00397{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.ma4_c00397{transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);}
.m1f_c00397{transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);}
.m5c_c00397{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m9f_c00397{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mba_c00397{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.m82_c00397{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.maf_c00397{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.ma5_c00397{transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);}
.mc3_c00397{transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);}
.m49_c00397{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m21_c00397{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mc_c00397{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m8a_c00397{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m63_c00397{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.mf_c00397{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m58_c00397{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.maa_c00397{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m72_c00397{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m4c_c00397{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m6_c00397{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m77_c00397{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m85_c00397{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mc5_c00397{transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);}
.m8_c00397{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mb5_c00397{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.m6b_c00397{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m28_c00397{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m16_c00397{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_c00397{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m2_c00397{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m4d_c00397{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m43_c00397{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m7c_c00397{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m2c_c00397{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m64_c00397{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.ma_c00397{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m3a_c00397{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mb8_c00397{transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);}
.m36_c00397{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.ma6_c00397{transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);}
.m15_c00397{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m5a_c00397{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m17_c00397{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m8e_c00397{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m2b_c00397{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m86_c00397{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m99_c00397{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m7_c00397{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m34_c00397{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m3e_c00397{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m55_c00397{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m6d_c00397{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m66_c00397{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m10_c00397{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m5_c00397{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m8f_c00397{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.m88_c00397{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m31_c00397{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m6e_c00397{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m37_c00397{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m76_c00397{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m6a_c00397{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m7b_c00397{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m60_c00397{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m2e_c00397{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m19_c00397{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m7e_c00397{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m59_c00397{transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);}
.m44_c00397{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m24_c00397{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m65_c00397{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m54_c00397{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.ma2_c00397{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m79_c00397{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m4a_c00397{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m26_c00397{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m3c_c00397{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m3d_c00397{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m6f_c00397{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mb2_c00397{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m45_c00397{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m18_c00397{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m57_c00397{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m9d_c00397{transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);}
.m7d_c00397{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m56_c00397{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m2a_c00397{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m11_c00397{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m7a_c00397{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m6c_c00397{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m75_c00397{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m47_c00397{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);}
.m61_c00397{transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);}
.m8b_c00397{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m9e_c00397{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m42_c00397{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m9c_c00397{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m4f_c00397{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m81_c00397{transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);}
.m14_c00397{transform:matrix(0.616183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616183,0.000000,0.000000,0.250000,0,0);}
.mb0_c00397{transform:matrix(0.616740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616740,0.000000,0.000000,0.250000,0,0);}
.m91_c00397{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m8d_c00397{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m12_c00397{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.mbb_c00397{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m4_c00397{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);}
.m93_c00397{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m48_c00397{transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);}
.m98_c00397{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m1_c00397{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m9a_c00397{transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);}
.mb_c00397{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mbd_c00397{transform:matrix(0.638767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638767,0.000000,0.000000,0.250000,0,0);}
.mb6_c00397{transform:matrix(0.643172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643172,0.000000,0.000000,0.250000,0,0);}
.mbe_c00397{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.ma8_c00397{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m8c_c00397{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m9_c00397{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m97_c00397{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m1c_c00397{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.ma3_c00397{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.mbc_c00397{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.ma0_c00397{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mc0_c00397{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.mae_c00397{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.m73_c00397{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.mb7_c00397{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.mc2_c00397{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m52_c00397{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.mb4_c00397{transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);}
.m35_c00397{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mac_c00397{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m3f_c00397{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.ma1_c00397{transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);}
.m5e_c00397{transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);}
.ma9_c00397{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.mb3_c00397{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.mbf_c00397{transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);}
.mad_c00397{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m3b_c00397{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.ma7_c00397{transform:matrix(0.770925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770925,0.000000,0.000000,0.250000,0,0);}
.m78_c00397{transform:matrix(0.774840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.774840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.774840,0.000000,0.000000,0.250000,0,0);}
.m13_c00397{transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);}
.m89_c00397{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.mc1_c00397{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m46_c00397{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mb1_c00397{transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);}
.mab_c00397{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m51_c00397{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.mc4_c00397{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m3_c00397{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.v1_c00397{vertical-align:-6.000000px;}
.v0_c00397{vertical-align:0.000000px;}
.ls1_c00397{letter-spacing:0.000000px;}
.ls0_c00397{letter-spacing:15.303448px;}
.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;}
}
.wsd_c00397{word-spacing:-17.300728px;}
.ws1_c00397{word-spacing:-7.582341px;}
.ws2_c00397{word-spacing:-4.249718px;}
.ws0_c00397{word-spacing:-1.692321px;}
.wse_c00397{word-spacing:0.000000px;}
.wsc_c00397{word-spacing:13.306168px;}
.ws5_c00397{word-spacing:24.192343px;}
.ws7_c00397{word-spacing:25.629635px;}
.ws3_c00397{word-spacing:27.671529px;}
.wsa_c00397{word-spacing:28.607254px;}
.wsb_c00397{word-spacing:29.395112px;}
.ws8_c00397{word-spacing:30.193299px;}
.ws9_c00397{word-spacing:32.348362px;}
.ws6_c00397{word-spacing:41.452695px;}
.ws4_c00397{word-spacing:49.953969px;}
._3_c00397{margin-left:-15.303448px;}
._1_c00397{width:29.938967px;}
._2_c00397{width:34.353878px;}
._0_c00397{width:38.075249px;}
.fc0_c00397{color:transparent;}
.fs3_c00397{font-size:3.420000px;}
.fs8_c00397{font-size:11.880000px;}
.fs7_c00397{font-size:13.620000px;}
.fs4_c00397{font-size:18.720000px;}
.fs1_c00397{font-size:20.400000px;}
.fs5_c00397{font-size:25.500000px;}
.fs2_c00397{font-size:28.920000px;}
.fs6_c00397{font-size:32.340000px;}
.fs0_c00397{font-size:35.700000px;}
.y0_c00397{bottom:0.000000px;}
.y62_c00397{bottom:310.245000px;}
.y63_c00397{bottom:312.405000px;}
.y5c_c00397{bottom:329.745000px;}
.y61_c00397{bottom:330.825000px;}
.y5d_c00397{bottom:331.245000px;}
.y5b_c00397{bottom:331.905000px;}
.y60_c00397{bottom:332.130000px;}
.y5e_c00397{bottom:333.405000px;}
.y5f_c00397{bottom:334.470000px;}
.y56_c00397{bottom:349.245000px;}
.y57_c00397{bottom:350.745000px;}
.y5a_c00397{bottom:351.825000px;}
.y59_c00397{bottom:352.470000px;}
.y58_c00397{bottom:352.905000px;}
.y55_c00397{bottom:367.905000px;}
.y52_c00397{bottom:370.905000px;}
.y54_c00397{bottom:371.130000px;}
.y53_c00397{bottom:372.405000px;}
.y51_c00397{bottom:391.905000px;}
.y4d_c00397{bottom:409.245000px;}
.y50_c00397{bottom:410.130000px;}
.y4c_c00397{bottom:411.405000px;}
.y4e_c00397{bottom:411.630000px;}
.y4f_c00397{bottom:412.470000px;}
.y45_c00397{bottom:428.745000px;}
.y44_c00397{bottom:429.630000px;}
.y49_c00397{bottom:429.825000px;}
.y4a_c00397{bottom:430.245000px;}
.y47_c00397{bottom:430.470000px;}
.y46_c00397{bottom:430.905000px;}
.y4b_c00397{bottom:431.970000px;}
.y48_c00397{bottom:432.405000px;}
.y43_c00397{bottom:449.745000px;}
.y41_c00397{bottom:450.405000px;}
.y42_c00397{bottom:451.905000px;}
.y3c_c00397{bottom:469.245000px;}
.y3e_c00397{bottom:470.130000px;}
.y3d_c00397{bottom:470.325000px;}
.y3f_c00397{bottom:470.970000px;}
.y3b_c00397{bottom:471.405000px;}
.y40_c00397{bottom:472.470000px;}
.y38_c00397{bottom:488.745000px;}
.y39_c00397{bottom:489.825000px;}
.y36_c00397{bottom:490.905000px;}
.y3a_c00397{bottom:491.130000px;}
.y37_c00397{bottom:491.970000px;}
.y35_c00397{bottom:508.245000px;}
.y34_c00397{bottom:509.130000px;}
.y33_c00397{bottom:526.905000px;}
.y32_c00397{bottom:527.745000px;}
.y31_c00397{bottom:527.970000px;}
.y2f_c00397{bottom:529.905000px;}
.y30_c00397{bottom:530.970000px;}
.y29_c00397{bottom:547.245000px;}
.y2a_c00397{bottom:548.325000px;}
.y2b_c00397{bottom:548.745000px;}
.y28_c00397{bottom:549.405000px;}
.y2c_c00397{bottom:549.630000px;}
.y2e_c00397{bottom:550.470000px;}
.y2d_c00397{bottom:550.905000px;}
.y27_c00397{bottom:566.745000px;}
.y23_c00397{bottom:567.825000px;}
.y25_c00397{bottom:568.905000px;}
.y26_c00397{bottom:569.130000px;}
.y24_c00397{bottom:569.970000px;}
.y20_c00397{bottom:586.245000px;}
.y1f_c00397{bottom:588.405000px;}
.y21_c00397{bottom:588.630000px;}
.y22_c00397{bottom:589.470000px;}
.y1c_c00397{bottom:607.905000px;}
.y1e_c00397{bottom:608.130000px;}
.y1d_c00397{bottom:609.405000px;}
.y1a_c00397{bottom:624.405000px;}
.y19_c00397{bottom:626.745000px;}
.y1b_c00397{bottom:628.905000px;}
.y17_c00397{bottom:643.905000px;}
.y15_c00397{bottom:646.245000px;}
.y14_c00397{bottom:647.970000px;}
.y16_c00397{bottom:648.405000px;}
.y18_c00397{bottom:649.470000px;}
.y13_c00397{bottom:663.405000px;}
.y12_c00397{bottom:665.745000px;}
.y10_c00397{bottom:667.470000px;}
.y11_c00397{bottom:667.905000px;}
.yf_c00397{bottom:685.245000px;}
.yc_c00397{bottom:703.470000px;}
.yb_c00397{bottom:705.630000px;}
.ya_c00397{bottom:706.905000px;}
.ye_c00397{bottom:707.130000px;}
.yd_c00397{bottom:707.970000px;}
.y5_c00397{bottom:723.405000px;}
.y8_c00397{bottom:723.825000px;}
.y9_c00397{bottom:724.245000px;}
.y6_c00397{bottom:725.130000px;}
.y3_c00397{bottom:726.405000px;}
.y4_c00397{bottom:726.420000px;}
.y7_c00397{bottom:727.470000px;}
.yad_c00397{bottom:756.630000px;}
.yab_c00397{bottom:757.050000px;}
.yac_c00397{bottom:757.695000px;}
.yae_c00397{bottom:757.920000px;}
.yaa_c00397{bottom:759.195000px;}
.ya9_c00397{bottom:759.630000px;}
.ya8_c00397{bottom:771.420000px;}
.ya5_c00397{bottom:771.630000px;}
.ya6_c00397{bottom:772.695000px;}
.ya7_c00397{bottom:772.920000px;}
.ya3_c00397{bottom:782.775000px;}
.ya4_c00397{bottom:784.695000px;}
.ya2_c00397{bottom:785.775000px;}
.ya1_c00397{bottom:786.195000px;}
.ya0_c00397{bottom:798.195000px;}
.y9f_c00397{bottom:799.695000px;}
.y9e_c00397{bottom:800.130000px;}
.y9d_c00397{bottom:811.695000px;}
.y9c_c00397{bottom:813.195000px;}
.y9a_c00397{bottom:813.630000px;}
.y9b_c00397{bottom:814.695000px;}
.y99_c00397{bottom:826.695000px;}
.y97_c00397{bottom:827.775000px;}
.y96_c00397{bottom:828.195000px;}
.y98_c00397{bottom:832.695000px;}
.y95_c00397{bottom:839.130000px;}
.y94_c00397{bottom:840.195000px;}
.y92_c00397{bottom:840.630000px;}
.y93_c00397{bottom:841.695000px;}
.y91_c00397{bottom:853.695000px;}
.y90_c00397{bottom:855.195000px;}
.y8f_c00397{bottom:856.695000px;}
.y8e_c00397{bottom:867.195000px;}
.y8d_c00397{bottom:868.695000px;}
.y8c_c00397{bottom:869.130000px;}
.y8b_c00397{bottom:870.195000px;}
.y8a_c00397{bottom:882.195000px;}
.y88_c00397{bottom:882.630000px;}
.y89_c00397{bottom:883.695000px;}
.y87_c00397{bottom:894.630000px;}
.y86_c00397{bottom:895.695000px;}
.y85_c00397{bottom:896.130000px;}
.y84_c00397{bottom:897.195000px;}
.y83_c00397{bottom:909.195000px;}
.y82_c00397{bottom:909.630000px;}
.y81_c00397{bottom:910.695000px;}
.y80_c00397{bottom:911.130000px;}
.y7f_c00397{bottom:922.695000px;}
.y7e_c00397{bottom:924.195000px;}
.y7d_c00397{bottom:924.630000px;}
.y7c_c00397{bottom:925.695000px;}
.y7b_c00397{bottom:937.695000px;}
.y7a_c00397{bottom:938.130000px;}
.y79_c00397{bottom:950.130000px;}
.y78_c00397{bottom:951.195000px;}
.y77_c00397{bottom:951.630000px;}
.y76_c00397{bottom:952.695000px;}
.y75_c00397{bottom:969.195000px;}
.y74_c00397{bottom:969.630000px;}
.y73_c00397{bottom:970.695000px;}
.y72_c00397{bottom:982.695000px;}
.y71_c00397{bottom:984.195000px;}
.y6f_c00397{bottom:984.630000px;}
.y70_c00397{bottom:985.695000px;}
.y6e_c00397{bottom:1009.050000px;}
.y6b_c00397{bottom:1020.825000px;}
.y6c_c00397{bottom:1021.905000px;}
.y6d_c00397{bottom:1022.970000px;}
.y6a_c00397{bottom:1024.050000px;}
.y67_c00397{bottom:1035.825000px;}
.y69_c00397{bottom:1036.470000px;}
.y66_c00397{bottom:1037.970000px;}
.y65_c00397{bottom:1039.050000px;}
.y68_c00397{bottom:1039.470000px;}
.y64_c00397{bottom:1063.050000px;}
.y1_c00397{bottom:1097.745000px;}
.y2_c00397{bottom:1099.050000px;}
.h4_c00397{height:4.206533px;}
.h9_c00397{height:14.612168px;}
.h8_c00397{height:16.752334px;}
.h5_c00397{height:23.025234px;}
.h2_c00397{height:25.091602px;}
.h6_c00397{height:31.364502px;}
.h3_c00397{height:35.571035px;}
.h7_c00397{height:39.777568px;}
.h1_c00397{height:43.910303px;}
.h0_c00397{height:1335.000000px;}
.w0_c00397{width:880.500000px;}
.x0_c00397{left:0.000000px;}
.x1_c00397{left:151.500000px;}
.x11_c00397{left:153.000000px;}
.x3_c00397{left:168.645000px;}
.x12_c00397{left:171.000000px;}
.x83_c00397{left:172.920000px;}
.x8c_c00397{left:180.000000px;}
.x34_c00397{left:184.080000px;}
.x1e_c00397{left:190.920000px;}
.x99_c00397{left:192.420000px;}
.xa6_c00397{left:193.500000px;}
.x56_c00397{left:196.500000px;}
.x4a_c00397{left:198.000000px;}
.x40_c00397{left:201.000000px;}
.x6d_c00397{left:202.080000px;}
.x2b_c00397{left:204.420000px;}
.x79_c00397{left:207.000000px;}
.x57_c00397{left:210.000000px;}
.x75_c00397{left:211.500000px;}
.x61_c00397{left:212.580000px;}
.x13_c00397{left:216.000000px;}
.x4b_c00397{left:217.500000px;}
.x1d_c00397{left:220.920000px;}
.x96_c00397{left:222.000000px;}
.x84_c00397{left:227.580000px;}
.x8d_c00397{left:231.000000px;}
.x4_c00397{left:238.500000px;}
.x35_c00397{left:240.420000px;}
.x41_c00397{left:242.580000px;}
.x62_c00397{left:244.920000px;}
.x4c_c00397{left:246.420000px;}
.x9d_c00397{left:250.500000px;}
.x1f_c00397{left:252.000000px;}
.x3d_c00397{left:253.080000px;}
.x97_c00397{left:258.000000px;}
.x5_c00397{left:259.500000px;}
.x58_c00397{left:261.855000px;}
.x42_c00397{left:262.920000px;}
.xc5_c00397{left:264.000000px;}
.xb2_c00397{left:265.500000px;}
.x36_c00397{left:268.500000px;}
.x63_c00397{left:271.500000px;}
.x20_c00397{left:273.420000px;}
.x85_c00397{left:277.500000px;}
.x7a_c00397{left:279.420000px;}
.x6_c00397{left:280.920000px;}
.x14_c00397{left:282.000000px;}
.x2c_c00397{left:288.000000px;}
.x9a_c00397{left:295.500000px;}
.x86_c00397{left:297.420000px;}
.xc2_c00397{left:300.000000px;}
.xa8_c00397{left:301.500000px;}
.x21_c00397{left:303.000000px;}
.x4d_c00397{left:304.920000px;}
.x8e_c00397{left:307.500000px;}
.x7_c00397{left:309.000000px;}
.xba_c00397{left:310.080000px;}
.x7b_c00397{left:313.920000px;}
.x64_c00397{left:316.080000px;}
.x59_c00397{left:319.500000px;}
.x98_c00397{left:322.080000px;}
.xb9_c00397{left:325.080000px;}
.x6e_c00397{left:326.580000px;}
.x15_c00397{left:330.420000px;}
.x65_c00397{left:334.920000px;}
.x4e_c00397{left:336.420000px;}
.xbf_c00397{left:337.500000px;}
.x7c_c00397{left:342.000000px;}
.x43_c00397{left:343.500000px;}
.x8f_c00397{left:349.500000px;}
.x2d_c00397{left:350.580000px;}
.x8_c00397{left:352.080000px;}
.x5a_c00397{left:354.000000px;}
.x22_c00397{left:355.080000px;}
.x16_c00397{left:360.000000px;}
.x66_c00397{left:361.920000px;}
.x6f_c00397{left:367.500000px;}
.x9e_c00397{left:371.580000px;}
.x4f_c00397{left:375.000000px;}
.x23_c00397{left:376.920000px;}
.x2e_c00397{left:383.580000px;}
.x37_c00397{left:385.500000px;}
.x7d_c00397{left:389.580000px;}
.x2_c00397{left:391.500000px;}
.x50_c00397{left:392.580000px;}
.x44_c00397{left:396.420000px;}
.x3e_c00397{left:402.000000px;}
.x2f_c00397{left:403.500000px;}
.x24_c00397{left:405.000000px;}
.xa9_c00397{left:406.500000px;}
.x7e_c00397{left:408.420000px;}
.x38_c00397{left:409.500000px;}
.x5b_c00397{left:411.000000px;}
.xa7_c00397{left:412.500000px;}
.xb1_c00397{left:414.000000px;}
.xb3_c00397{left:415.500000px;}
.x17_c00397{left:417.000000px;}
.xbb_c00397{left:418.500000px;}
.x67_c00397{left:421.080000px;}
.xb5_c00397{left:423.000000px;}
.x9b_c00397{left:424.080000px;}
.x3f_c00397{left:427.500000px;}
.x9_c00397{left:429.420000px;}
.xaa_c00397{left:432.000000px;}
.x51_c00397{left:433.500000px;}
.x7f_c00397{left:436.080000px;}
.xad_c00397{left:438.000000px;}
.x30_c00397{left:440.580000px;}
.x5c_c00397{left:445.500000px;}
.x76_c00397{left:447.420000px;}
.x45_c00397{left:450.000000px;}
.x68_c00397{left:451.500000px;}
.x90_c00397{left:453.000000px;}
.x39_c00397{left:456.000000px;}
.xb4_c00397{left:459.000000px;}
.x70_c00397{left:460.500000px;}
.x87_c00397{left:462.420000px;}
.xbc_c00397{left:463.500000px;}
.xb6_c00397{left:468.000000px;}
.xa_c00397{left:469.500000px;}
.x18_c00397{left:470.580000px;}
.x31_c00397{left:472.500000px;}
.x71_c00397{left:484.080000px;}
.xb_c00397{left:487.500000px;}
.xab_c00397{left:494.580000px;}
.x69_c00397{left:496.500000px;}
.x91_c00397{left:499.500000px;}
.x25_c00397{left:500.580000px;}
.x5d_c00397{left:504.420000px;}
.x52_c00397{left:505.500000px;}
.x88_c00397{left:508.920000px;}
.xac_c00397{left:510.000000px;}
.xc3_c00397{left:513.000000px;}
.x92_c00397{left:516.000000px;}
.x77_c00397{left:517.500000px;}
.x3a_c00397{left:519.420000px;}
.x32_c00397{left:520.500000px;}
.xa3_c00397{left:522.000000px;}
.x53_c00397{left:526.920000px;}
.x9f_c00397{left:528.000000px;}
.x19_c00397{left:530.580000px;}
.x26_c00397{left:532.080000px;}
.xae_c00397{left:534.000000px;}
.xc_c00397{left:541.500000px;}
.xc1_c00397{left:547.500000px;}
.x72_c00397{left:548.775000px;}
.xaf_c00397{left:550.500000px;}
.x1a_c00397{left:551.580000px;}
.xbd_c00397{left:553.500000px;}
.xc0_c00397{left:555.000000px;}
.x46_c00397{left:556.920000px;}
.xb7_c00397{left:558.000000px;}
.xd_c00397{left:561.420000px;}
.xa4_c00397{left:565.080000px;}
.xb0_c00397{left:574.080000px;}
.x27_c00397{left:577.500000px;}
.x6a_c00397{left:579.000000px;}
.xa0_c00397{left:583.275000px;}
.x33_c00397{left:584.580000px;}
.x54_c00397{left:586.500000px;}
.x89_c00397{left:588.000000px;}
.x73_c00397{left:591.000000px;}
.x47_c00397{left:593.580000px;}
.x80_c00397{left:595.920000px;}
.xbe_c00397{left:598.500000px;}
.x6b_c00397{left:600.420000px;}
.xe_c00397{left:601.920000px;}
.xb8_c00397{left:603.000000px;}
.x3b_c00397{left:606.420000px;}
.xc4_c00397{left:607.500000px;}
.x5e_c00397{left:609.000000px;}
.x28_c00397{left:612.000000px;}
.x8a_c00397{left:614.580000px;}
.x93_c00397{left:618.000000px;}
.x55_c00397{left:619.500000px;}
.xa1_c00397{left:622.500000px;}
.x1b_c00397{left:625.080000px;}
.x5f_c00397{left:627.000000px;}
.xf_c00397{left:628.500000px;}
.x81_c00397{left:633.000000px;}
.x78_c00397{left:645.000000px;}
.x1c_c00397{left:646.080000px;}
.x94_c00397{left:649.920000px;}
.x48_c00397{left:651.000000px;}
.x29_c00397{left:652.500000px;}
.xa2_c00397{left:660.000000px;}
.x6c_c00397{left:661.920000px;}
.x82_c00397{left:667.920000px;}
.xa5_c00397{left:670.500000px;}
.x49_c00397{left:672.420000px;}
.x60_c00397{left:673.920000px;}
.x10_c00397{left:684.000000px;}
.x9c_c00397{left:686.580000px;}
.x3c_c00397{left:688.920000px;}
.x2a_c00397{left:700.080000px;}
.x8b_c00397{left:702.420000px;}
.x74_c00397{left:708.420000px;}
.x95_c00397{left:723.000000px;}
@media print{
.v1_c00397{vertical-align:-5.333333pt;}
.v0_c00397{vertical-align:0.000000pt;}
.ls1_c00397{letter-spacing:0.000000pt;}
.ls0_c00397{letter-spacing:13.603065pt;}
.wsd_c00397{word-spacing:-15.378425pt;}
.ws1_c00397{word-spacing:-6.739859pt;}
.ws2_c00397{word-spacing:-3.777527pt;}
.ws0_c00397{word-spacing:-1.504285pt;}
.wse_c00397{word-spacing:0.000000pt;}
.wsc_c00397{word-spacing:11.827705pt;}
.ws5_c00397{word-spacing:21.504305pt;}
.ws7_c00397{word-spacing:22.781898pt;}
.ws3_c00397{word-spacing:24.596914pt;}
.wsa_c00397{word-spacing:25.428670pt;}
.wsb_c00397{word-spacing:26.128988pt;}
.ws8_c00397{word-spacing:26.838488pt;}
.ws9_c00397{word-spacing:28.754100pt;}
.ws6_c00397{word-spacing:36.846840pt;}
.ws4_c00397{word-spacing:44.403528pt;}
._3_c00397{margin-left:-13.603065pt;}
._1_c00397{width:26.612416pt;}
._2_c00397{width:30.536781pt;}
._0_c00397{width:33.844666pt;}
.fs3_c00397{font-size:3.040000pt;}
.fs8_c00397{font-size:10.560000pt;}
.fs7_c00397{font-size:12.106667pt;}
.fs4_c00397{font-size:16.640000pt;}
.fs1_c00397{font-size:18.133333pt;}
.fs5_c00397{font-size:22.666667pt;}
.fs2_c00397{font-size:25.706667pt;}
.fs6_c00397{font-size:28.746667pt;}
.fs0_c00397{font-size:31.733333pt;}
.y0_c00397{bottom:0.000000pt;}
.y62_c00397{bottom:275.773333pt;}
.y63_c00397{bottom:277.693333pt;}
.y5c_c00397{bottom:293.106667pt;}
.y61_c00397{bottom:294.066667pt;}
.y5d_c00397{bottom:294.440000pt;}
.y5b_c00397{bottom:295.026667pt;}
.y60_c00397{bottom:295.226667pt;}
.y5e_c00397{bottom:296.360000pt;}
.y5f_c00397{bottom:297.306667pt;}
.y56_c00397{bottom:310.440000pt;}
.y57_c00397{bottom:311.773333pt;}
.y5a_c00397{bottom:312.733333pt;}
.y59_c00397{bottom:313.306667pt;}
.y58_c00397{bottom:313.693333pt;}
.y55_c00397{bottom:327.026667pt;}
.y52_c00397{bottom:329.693333pt;}
.y54_c00397{bottom:329.893333pt;}
.y53_c00397{bottom:331.026667pt;}
.y51_c00397{bottom:348.360000pt;}
.y4d_c00397{bottom:363.773333pt;}
.y50_c00397{bottom:364.560000pt;}
.y4c_c00397{bottom:365.693333pt;}
.y4e_c00397{bottom:365.893333pt;}
.y4f_c00397{bottom:366.640000pt;}
.y45_c00397{bottom:381.106667pt;}
.y44_c00397{bottom:381.893333pt;}
.y49_c00397{bottom:382.066667pt;}
.y4a_c00397{bottom:382.440000pt;}
.y47_c00397{bottom:382.640000pt;}
.y46_c00397{bottom:383.026667pt;}
.y4b_c00397{bottom:383.973333pt;}
.y48_c00397{bottom:384.360000pt;}
.y43_c00397{bottom:399.773333pt;}
.y41_c00397{bottom:400.360000pt;}
.y42_c00397{bottom:401.693333pt;}
.y3c_c00397{bottom:417.106667pt;}
.y3e_c00397{bottom:417.893333pt;}
.y3d_c00397{bottom:418.066667pt;}
.y3f_c00397{bottom:418.640000pt;}
.y3b_c00397{bottom:419.026667pt;}
.y40_c00397{bottom:419.973333pt;}
.y38_c00397{bottom:434.440000pt;}
.y39_c00397{bottom:435.400000pt;}
.y36_c00397{bottom:436.360000pt;}
.y3a_c00397{bottom:436.560000pt;}
.y37_c00397{bottom:437.306667pt;}
.y35_c00397{bottom:451.773333pt;}
.y34_c00397{bottom:452.560000pt;}
.y33_c00397{bottom:468.360000pt;}
.y32_c00397{bottom:469.106667pt;}
.y31_c00397{bottom:469.306667pt;}
.y2f_c00397{bottom:471.026667pt;}
.y30_c00397{bottom:471.973333pt;}
.y29_c00397{bottom:486.440000pt;}
.y2a_c00397{bottom:487.400000pt;}
.y2b_c00397{bottom:487.773333pt;}
.y28_c00397{bottom:488.360000pt;}
.y2c_c00397{bottom:488.560000pt;}
.y2e_c00397{bottom:489.306667pt;}
.y2d_c00397{bottom:489.693333pt;}
.y27_c00397{bottom:503.773333pt;}
.y23_c00397{bottom:504.733333pt;}
.y25_c00397{bottom:505.693333pt;}
.y26_c00397{bottom:505.893333pt;}
.y24_c00397{bottom:506.640000pt;}
.y20_c00397{bottom:521.106667pt;}
.y1f_c00397{bottom:523.026667pt;}
.y21_c00397{bottom:523.226667pt;}
.y22_c00397{bottom:523.973333pt;}
.y1c_c00397{bottom:540.360000pt;}
.y1e_c00397{bottom:540.560000pt;}
.y1d_c00397{bottom:541.693333pt;}
.y1a_c00397{bottom:555.026667pt;}
.y19_c00397{bottom:557.106667pt;}
.y1b_c00397{bottom:559.026667pt;}
.y17_c00397{bottom:572.360000pt;}
.y15_c00397{bottom:574.440000pt;}
.y14_c00397{bottom:575.973333pt;}
.y16_c00397{bottom:576.360000pt;}
.y18_c00397{bottom:577.306667pt;}
.y13_c00397{bottom:589.693333pt;}
.y12_c00397{bottom:591.773333pt;}
.y10_c00397{bottom:593.306667pt;}
.y11_c00397{bottom:593.693333pt;}
.yf_c00397{bottom:609.106667pt;}
.yc_c00397{bottom:625.306667pt;}
.yb_c00397{bottom:627.226667pt;}
.ya_c00397{bottom:628.360000pt;}
.ye_c00397{bottom:628.560000pt;}
.yd_c00397{bottom:629.306667pt;}
.y5_c00397{bottom:643.026667pt;}
.y8_c00397{bottom:643.400000pt;}
.y9_c00397{bottom:643.773333pt;}
.y6_c00397{bottom:644.560000pt;}
.y3_c00397{bottom:645.693333pt;}
.y4_c00397{bottom:645.706667pt;}
.y7_c00397{bottom:646.640000pt;}
.yad_c00397{bottom:672.560000pt;}
.yab_c00397{bottom:672.933333pt;}
.yac_c00397{bottom:673.506667pt;}
.yae_c00397{bottom:673.706667pt;}
.yaa_c00397{bottom:674.840000pt;}
.ya9_c00397{bottom:675.226667pt;}
.ya8_c00397{bottom:685.706667pt;}
.ya5_c00397{bottom:685.893333pt;}
.ya6_c00397{bottom:686.840000pt;}
.ya7_c00397{bottom:687.040000pt;}
.ya3_c00397{bottom:695.800000pt;}
.ya4_c00397{bottom:697.506667pt;}
.ya2_c00397{bottom:698.466667pt;}
.ya1_c00397{bottom:698.840000pt;}
.ya0_c00397{bottom:709.506667pt;}
.y9f_c00397{bottom:710.840000pt;}
.y9e_c00397{bottom:711.226667pt;}
.y9d_c00397{bottom:721.506667pt;}
.y9c_c00397{bottom:722.840000pt;}
.y9a_c00397{bottom:723.226667pt;}
.y9b_c00397{bottom:724.173333pt;}
.y99_c00397{bottom:734.840000pt;}
.y97_c00397{bottom:735.800000pt;}
.y96_c00397{bottom:736.173333pt;}
.y98_c00397{bottom:740.173333pt;}
.y95_c00397{bottom:745.893333pt;}
.y94_c00397{bottom:746.840000pt;}
.y92_c00397{bottom:747.226667pt;}
.y93_c00397{bottom:748.173333pt;}
.y91_c00397{bottom:758.840000pt;}
.y90_c00397{bottom:760.173333pt;}
.y8f_c00397{bottom:761.506667pt;}
.y8e_c00397{bottom:770.840000pt;}
.y8d_c00397{bottom:772.173333pt;}
.y8c_c00397{bottom:772.560000pt;}
.y8b_c00397{bottom:773.506667pt;}
.y8a_c00397{bottom:784.173333pt;}
.y88_c00397{bottom:784.560000pt;}
.y89_c00397{bottom:785.506667pt;}
.y87_c00397{bottom:795.226667pt;}
.y86_c00397{bottom:796.173333pt;}
.y85_c00397{bottom:796.560000pt;}
.y84_c00397{bottom:797.506667pt;}
.y83_c00397{bottom:808.173333pt;}
.y82_c00397{bottom:808.560000pt;}
.y81_c00397{bottom:809.506667pt;}
.y80_c00397{bottom:809.893333pt;}
.y7f_c00397{bottom:820.173333pt;}
.y7e_c00397{bottom:821.506667pt;}
.y7d_c00397{bottom:821.893333pt;}
.y7c_c00397{bottom:822.840000pt;}
.y7b_c00397{bottom:833.506667pt;}
.y7a_c00397{bottom:833.893333pt;}
.y79_c00397{bottom:844.560000pt;}
.y78_c00397{bottom:845.506667pt;}
.y77_c00397{bottom:845.893333pt;}
.y76_c00397{bottom:846.840000pt;}
.y75_c00397{bottom:861.506667pt;}
.y74_c00397{bottom:861.893333pt;}
.y73_c00397{bottom:862.840000pt;}
.y72_c00397{bottom:873.506667pt;}
.y71_c00397{bottom:874.840000pt;}
.y6f_c00397{bottom:875.226667pt;}
.y70_c00397{bottom:876.173333pt;}
.y6e_c00397{bottom:896.933333pt;}
.y6b_c00397{bottom:907.400000pt;}
.y6c_c00397{bottom:908.360000pt;}
.y6d_c00397{bottom:909.306667pt;}
.y6a_c00397{bottom:910.266667pt;}
.y67_c00397{bottom:920.733333pt;}
.y69_c00397{bottom:921.306667pt;}
.y66_c00397{bottom:922.640000pt;}
.y65_c00397{bottom:923.600000pt;}
.y68_c00397{bottom:923.973333pt;}
.y64_c00397{bottom:944.933333pt;}
.y1_c00397{bottom:975.773333pt;}
.y2_c00397{bottom:976.933333pt;}
.h4_c00397{height:3.739141pt;}
.h9_c00397{height:12.988594pt;}
.h8_c00397{height:14.890964pt;}
.h5_c00397{height:20.466875pt;}
.h2_c00397{height:22.303646pt;}
.h6_c00397{height:27.879557pt;}
.h3_c00397{height:31.618698pt;}
.h7_c00397{height:35.357839pt;}
.h1_c00397{height:39.031380pt;}
.h0_c00397{height:1186.666667pt;}
.w0_c00397{width:782.666667pt;}
.x0_c00397{left:0.000000pt;}
.x1_c00397{left:134.666667pt;}
.x11_c00397{left:136.000000pt;}
.x3_c00397{left:149.906667pt;}
.x12_c00397{left:152.000000pt;}
.x83_c00397{left:153.706667pt;}
.x8c_c00397{left:160.000000pt;}
.x34_c00397{left:163.626667pt;}
.x1e_c00397{left:169.706667pt;}
.x99_c00397{left:171.040000pt;}
.xa6_c00397{left:172.000000pt;}
.x56_c00397{left:174.666667pt;}
.x4a_c00397{left:176.000000pt;}
.x40_c00397{left:178.666667pt;}
.x6d_c00397{left:179.626667pt;}
.x2b_c00397{left:181.706667pt;}
.x79_c00397{left:184.000000pt;}
.x57_c00397{left:186.666667pt;}
.x75_c00397{left:188.000000pt;}
.x61_c00397{left:188.960000pt;}
.x13_c00397{left:192.000000pt;}
.x4b_c00397{left:193.333333pt;}
.x1d_c00397{left:196.373333pt;}
.x96_c00397{left:197.333333pt;}
.x84_c00397{left:202.293333pt;}
.x8d_c00397{left:205.333333pt;}
.x4_c00397{left:212.000000pt;}
.x35_c00397{left:213.706667pt;}
.x41_c00397{left:215.626667pt;}
.x62_c00397{left:217.706667pt;}
.x4c_c00397{left:219.040000pt;}
.x9d_c00397{left:222.666667pt;}
.x1f_c00397{left:224.000000pt;}
.x3d_c00397{left:224.960000pt;}
.x97_c00397{left:229.333333pt;}
.x5_c00397{left:230.666667pt;}
.x58_c00397{left:232.760000pt;}
.x42_c00397{left:233.706667pt;}
.xc5_c00397{left:234.666667pt;}
.xb2_c00397{left:236.000000pt;}
.x36_c00397{left:238.666667pt;}
.x63_c00397{left:241.333333pt;}
.x20_c00397{left:243.040000pt;}
.x85_c00397{left:246.666667pt;}
.x7a_c00397{left:248.373333pt;}
.x6_c00397{left:249.706667pt;}
.x14_c00397{left:250.666667pt;}
.x2c_c00397{left:256.000000pt;}
.x9a_c00397{left:262.666667pt;}
.x86_c00397{left:264.373333pt;}
.xc2_c00397{left:266.666667pt;}
.xa8_c00397{left:268.000000pt;}
.x21_c00397{left:269.333333pt;}
.x4d_c00397{left:271.040000pt;}
.x8e_c00397{left:273.333333pt;}
.x7_c00397{left:274.666667pt;}
.xba_c00397{left:275.626667pt;}
.x7b_c00397{left:279.040000pt;}
.x64_c00397{left:280.960000pt;}
.x59_c00397{left:284.000000pt;}
.x98_c00397{left:286.293333pt;}
.xb9_c00397{left:288.960000pt;}
.x6e_c00397{left:290.293333pt;}
.x15_c00397{left:293.706667pt;}
.x65_c00397{left:297.706667pt;}
.x4e_c00397{left:299.040000pt;}
.xbf_c00397{left:300.000000pt;}
.x7c_c00397{left:304.000000pt;}
.x43_c00397{left:305.333333pt;}
.x8f_c00397{left:310.666667pt;}
.x2d_c00397{left:311.626667pt;}
.x8_c00397{left:312.960000pt;}
.x5a_c00397{left:314.666667pt;}
.x22_c00397{left:315.626667pt;}
.x16_c00397{left:320.000000pt;}
.x66_c00397{left:321.706667pt;}
.x6f_c00397{left:326.666667pt;}
.x9e_c00397{left:330.293333pt;}
.x4f_c00397{left:333.333333pt;}
.x23_c00397{left:335.040000pt;}
.x2e_c00397{left:340.960000pt;}
.x37_c00397{left:342.666667pt;}
.x7d_c00397{left:346.293333pt;}
.x2_c00397{left:348.000000pt;}
.x50_c00397{left:348.960000pt;}
.x44_c00397{left:352.373333pt;}
.x3e_c00397{left:357.333333pt;}
.x2f_c00397{left:358.666667pt;}
.x24_c00397{left:360.000000pt;}
.xa9_c00397{left:361.333333pt;}
.x7e_c00397{left:363.040000pt;}
.x38_c00397{left:364.000000pt;}
.x5b_c00397{left:365.333333pt;}
.xa7_c00397{left:366.666667pt;}
.xb1_c00397{left:368.000000pt;}
.xb3_c00397{left:369.333333pt;}
.x17_c00397{left:370.666667pt;}
.xbb_c00397{left:372.000000pt;}
.x67_c00397{left:374.293333pt;}
.xb5_c00397{left:376.000000pt;}
.x9b_c00397{left:376.960000pt;}
.x3f_c00397{left:380.000000pt;}
.x9_c00397{left:381.706667pt;}
.xaa_c00397{left:384.000000pt;}
.x51_c00397{left:385.333333pt;}
.x7f_c00397{left:387.626667pt;}
.xad_c00397{left:389.333333pt;}
.x30_c00397{left:391.626667pt;}
.x5c_c00397{left:396.000000pt;}
.x76_c00397{left:397.706667pt;}
.x45_c00397{left:400.000000pt;}
.x68_c00397{left:401.333333pt;}
.x90_c00397{left:402.666667pt;}
.x39_c00397{left:405.333333pt;}
.xb4_c00397{left:408.000000pt;}
.x70_c00397{left:409.333333pt;}
.x87_c00397{left:411.040000pt;}
.xbc_c00397{left:412.000000pt;}
.xb6_c00397{left:416.000000pt;}
.xa_c00397{left:417.333333pt;}
.x18_c00397{left:418.293333pt;}
.x31_c00397{left:420.000000pt;}
.x71_c00397{left:430.293333pt;}
.xb_c00397{left:433.333333pt;}
.xab_c00397{left:439.626667pt;}
.x69_c00397{left:441.333333pt;}
.x91_c00397{left:444.000000pt;}
.x25_c00397{left:444.960000pt;}
.x5d_c00397{left:448.373333pt;}
.x52_c00397{left:449.333333pt;}
.x88_c00397{left:452.373333pt;}
.xac_c00397{left:453.333333pt;}
.xc3_c00397{left:456.000000pt;}
.x92_c00397{left:458.666667pt;}
.x77_c00397{left:460.000000pt;}
.x3a_c00397{left:461.706667pt;}
.x32_c00397{left:462.666667pt;}
.xa3_c00397{left:464.000000pt;}
.x53_c00397{left:468.373333pt;}
.x9f_c00397{left:469.333333pt;}
.x19_c00397{left:471.626667pt;}
.x26_c00397{left:472.960000pt;}
.xae_c00397{left:474.666667pt;}
.xc_c00397{left:481.333333pt;}
.xc1_c00397{left:486.666667pt;}
.x72_c00397{left:487.800000pt;}
.xaf_c00397{left:489.333333pt;}
.x1a_c00397{left:490.293333pt;}
.xbd_c00397{left:492.000000pt;}
.xc0_c00397{left:493.333333pt;}
.x46_c00397{left:495.040000pt;}
.xb7_c00397{left:496.000000pt;}
.xd_c00397{left:499.040000pt;}
.xa4_c00397{left:502.293333pt;}
.xb0_c00397{left:510.293333pt;}
.x27_c00397{left:513.333333pt;}
.x6a_c00397{left:514.666667pt;}
.xa0_c00397{left:518.466667pt;}
.x33_c00397{left:519.626667pt;}
.x54_c00397{left:521.333333pt;}
.x89_c00397{left:522.666667pt;}
.x73_c00397{left:525.333333pt;}
.x47_c00397{left:527.626667pt;}
.x80_c00397{left:529.706667pt;}
.xbe_c00397{left:532.000000pt;}
.x6b_c00397{left:533.706667pt;}
.xe_c00397{left:535.040000pt;}
.xb8_c00397{left:536.000000pt;}
.x3b_c00397{left:539.040000pt;}
.xc4_c00397{left:540.000000pt;}
.x5e_c00397{left:541.333333pt;}
.x28_c00397{left:544.000000pt;}
.x8a_c00397{left:546.293333pt;}
.x93_c00397{left:549.333333pt;}
.x55_c00397{left:550.666667pt;}
.xa1_c00397{left:553.333333pt;}
.x1b_c00397{left:555.626667pt;}
.x5f_c00397{left:557.333333pt;}
.xf_c00397{left:558.666667pt;}
.x81_c00397{left:562.666667pt;}
.x78_c00397{left:573.333333pt;}
.x1c_c00397{left:574.293333pt;}
.x94_c00397{left:577.706667pt;}
.x48_c00397{left:578.666667pt;}
.x29_c00397{left:580.000000pt;}
.xa2_c00397{left:586.666667pt;}
.x6c_c00397{left:588.373333pt;}
.x82_c00397{left:593.706667pt;}
.xa5_c00397{left:596.000000pt;}
.x49_c00397{left:597.706667pt;}
.x60_c00397{left:599.040000pt;}
.x10_c00397{left:608.000000pt;}
.x9c_c00397{left:610.293333pt;}
.x3c_c00397{left:612.373333pt;}
.x2a_c00397{left:622.293333pt;}
.x8b_c00397{left:624.373333pt;}
.x74_c00397{left:629.706667pt;}
.x95_c00397{left:642.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_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_e630e5da8e8c43772cb38d0a.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9a_c00398{transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);}
.mde_c00398{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m2e_c00398{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m46_c00398{transform:matrix(0.336656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336656,0.000000,0.000000,0.250000,0,0);}
.ma6_c00398{transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);}
.m43_c00398{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m96_c00398{transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);}
.m84_c00398{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.me4_c00398{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mb2_c00398{transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);}
.mb9_c00398{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m99_c00398{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.mdc_c00398{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m55_c00398{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.maa_c00398{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m36_c00398{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m2b_c00398{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mb8_c00398{transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);}
.m6a_c00398{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m54_c00398{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.ma5_c00398{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m34_c00398{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m97_c00398{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.m107_c00398{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.mec_c00398{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m6c_c00398{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.mae_c00398{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m3b_c00398{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m83_c00398{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.ma8_c00398{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.mf5_c00398{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m10a_c00398{transform:matrix(0.403989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403989,0.000000,0.000000,0.250000,0,0);}
.m30_c00398{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m20_c00398{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m59_c00398{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m56_c00398{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mc4_c00398{transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);}
.mfc_c00398{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.mc3_c00398{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.mbb_c00398{transform:matrix(0.412863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412863,0.000000,0.000000,0.250000,0,0);}
.mba_c00398{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m35_c00398{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m87_c00398{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m8_c00398{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.me6_c00398{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m92_c00398{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m4a_c00398{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mf0_c00398{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m48_c00398{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m4c_c00398{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.med_c00398{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m104_c00398{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.m3e_c00398{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m23_c00398{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m9c_c00398{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mc1_c00398{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.mbf_c00398{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m3f_c00398{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mb3_c00398{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.mcb_c00398{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m19_c00398{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m2f_c00398{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.mb6_c00398{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.me3_c00398{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m37_c00398{transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);}
.m45_c00398{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m109_c00398{transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);}
.m67_c00398{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.m17_c00398{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.me8_c00398{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.md7_c00398{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m9d_c00398{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.ma9_c00398{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m93_c00398{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m44_c00398{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m8d_c00398{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m71_c00398{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m64_c00398{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.mf2_c00398{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.mf6_c00398{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m2a_c00398{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m38_c00398{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.me1_c00398{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m88_c00398{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m26_c00398{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m108_c00398{transform:matrix(0.446471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446471,0.000000,0.000000,0.250000,0,0);}
.m94_c00398{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m29_c00398{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mb5_c00398{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m3a_c00398{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m8c_c00398{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.ma3_c00398{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mc7_c00398{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.m8b_c00398{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.mc8_c00398{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.me7_c00398{transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);}
.m75_c00398{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m3d_c00398{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m76_c00398{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m82_c00398{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.m98_c00398{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.md2_c00398{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.m8f_c00398{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m74_c00398{transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);}
.me9_c00398{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.mac_c00398{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m8e_c00398{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.ma7_c00398{transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);}
.m24_c00398{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mc0_c00398{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m103_c00398{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.mcd_c00398{transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);}
.m5f_c00398{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m3_c00398{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m2_c00398{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m63_c00398{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m40_c00398{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m25_c00398{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m21_c00398{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m60_c00398{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m4b_c00398{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.md4_c00398{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m90_c00398{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.mf3_c00398{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m22_c00398{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);}
.mad_c00398{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m39_c00398{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.md5_c00398{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.mb_c00398{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m27_c00398{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m49_c00398{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m7a_c00398{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.md3_c00398{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m9_c00398{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mc9_c00398{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m80_c00398{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m5_c00398{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mab_c00398{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.mb4_c00398{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m77_c00398{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mc_c00398{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m5a_c00398{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.mea_c00398{transform:matrix(0.519481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519481,0.000000,0.000000,0.250000,0,0);}
.m95_c00398{transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);}
.m14_c00398{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.meb_c00398{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m61_c00398{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m101_c00398{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);}
.mbd_c00398{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m7e_c00398{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.md0_c00398{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.md1_c00398{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m32_c00398{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m28_c00398{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mfd_c00398{transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);}
.ma_c00398{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m33_c00398{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m57_c00398{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mdd_c00398{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m1b_c00398{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m79_c00398{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mc5_c00398{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m7b_c00398{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m51_c00398{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.ma2_c00398{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.ma0_c00398{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mbe_c00398{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m1e_c00398{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.maf_c00398{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m7c_c00398{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m2d_c00398{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.ma4_c00398{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m47_c00398{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m6e_c00398{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m15_c00398{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m86_c00398{transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);}
.m4e_c00398{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m11_c00398{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m2c_c00398{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m4f_c00398{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mdb_c00398{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.md_c00398{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m18_c00398{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m69_c00398{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m1f_c00398{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mf_c00398{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m6f_c00398{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mff_c00398{transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);}
.m66_c00398{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m102_c00398{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.ma1_c00398{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.mc2_c00398{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m53_c00398{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mb7_c00398{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.mcf_c00398{transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);}
.m1c_c00398{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m6b_c00398{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m91_c00398{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.mce_c00398{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m62_c00398{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.mca_c00398{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mdf_c00398{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m52_c00398{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m68_c00398{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.m7d_c00398{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m31_c00398{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m89_c00398{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m58_c00398{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mfe_c00398{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.mbc_c00398{transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);}
.md8_c00398{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.m41_c00398{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mc6_c00398{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m6d_c00398{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.mf9_c00398{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m5b_c00398{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mef_c00398{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m81_c00398{transform:matrix(0.602697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602697,0.000000,0.000000,0.250000,0,0);}
.m5d_c00398{transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);}
.m3c_c00398{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m1d_c00398{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m73_c00398{transform:matrix(0.608921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608921,0.000000,0.000000,0.250000,0,0);}
.m5e_c00398{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m100_c00398{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);}
.m4d_c00398{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m9f_c00398{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.m7_c00398{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mda_c00398{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.m106_c00398{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m70_c00398{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.m85_c00398{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);}
.mee_c00398{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m0_c00398{transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);}
.m10_c00398{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mfa_c00398{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m8a_c00398{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.m42_c00398{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.mb0_c00398{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);}
.m12_c00398{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m1a_c00398{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.md6_c00398{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m5c_c00398{transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);}
.me0_c00398{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m9b_c00398{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.mf4_c00398{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mf7_c00398{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mfb_c00398{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);}
.m72_c00398{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mcc_c00398{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m7f_c00398{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m4_c00398{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.me2_c00398{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m13_c00398{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m105_c00398{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);}
.m50_c00398{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.me5_c00398{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m65_c00398{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.me_c00398{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.md9_c00398{transform:matrix(0.781765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.781765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.781765,0.000000,0.000000,0.250000,0,0);}
.m16_c00398{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.mf1_c00398{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m1_c00398{transform:matrix(0.814834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.814834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.814834,0.000000,0.000000,0.250000,0,0);}
.m78_c00398{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.m6_c00398{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.mf8_c00398{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.mb1_c00398{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m9e_c00398{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00398{vertical-align:0.000000px;}
.v1_c00398{vertical-align:18.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:-8.190063px;}
.ws1_c00398{word-spacing:0.000000px;}
.fc0_c00398{color:transparent;}
.fs8_c00398{font-size:3.420000px;}
.fs7_c00398{font-size:13.620000px;}
.fs1_c00398{font-size:18.720000px;}
.fs6_c00398{font-size:20.400000px;}
.fs2_c00398{font-size:25.500000px;}
.fs0_c00398{font-size:28.920000px;}
.fs4_c00398{font-size:32.340000px;}
.fs3_c00398{font-size:35.700000px;}
.fs5_c00398{font-size:39.120000px;}
.y0_c00398{bottom:0.000000px;}
.ybe_c00398{bottom:229.470000px;}
.ybd_c00398{bottom:230.325000px;}
.yc0_c00398{bottom:232.470000px;}
.ybf_c00398{bottom:233.550000px;}
.yb7_c00398{bottom:245.325000px;}
.yb9_c00398{bottom:245.550000px;}
.ybc_c00398{bottom:245.970000px;}
.yba_c00398{bottom:246.405000px;}
.ybb_c00398{bottom:247.050000px;}
.yb6_c00398{bottom:247.470000px;}
.yb5_c00398{bottom:247.695000px;}
.yb4_c00398{bottom:248.550000px;}
.yb8_c00398{bottom:248.970000px;}
.yb3_c00398{bottom:250.695000px;}
.yad_c00398{bottom:272.745000px;}
.yb2_c00398{bottom:273.630000px;}
.yb0_c00398{bottom:273.825000px;}
.yae_c00398{bottom:274.470000px;}
.yaf_c00398{bottom:274.905000px;}
.yb1_c00398{bottom:275.970000px;}
.ya9_c00398{bottom:290.970000px;}
.yab_c00398{bottom:291.405000px;}
.ya7_c00398{bottom:292.245000px;}
.yac_c00398{bottom:293.130000px;}
.ya8_c00398{bottom:293.550000px;}
.yaa_c00398{bottom:293.970000px;}
.ya6_c00398{bottom:294.405000px;}
.ya5_c00398{bottom:311.745000px;}
.ya4_c00398{bottom:312.825000px;}
.ya3_c00398{bottom:313.905000px;}
.y9e_c00398{bottom:331.245000px;}
.ya1_c00398{bottom:331.470000px;}
.ya2_c00398{bottom:332.325000px;}
.y9f_c00398{bottom:333.405000px;}
.ya0_c00398{bottom:333.630000px;}
.y9c_c00398{bottom:350.745000px;}
.y98_c00398{bottom:352.905000px;}
.y9d_c00398{bottom:353.130000px;}
.y9a_c00398{bottom:353.970000px;}
.y9b_c00398{bottom:354.405000px;}
.y99_c00398{bottom:354.420000px;}
.y97_c00398{bottom:371.745000px;}
.y96_c00398{bottom:373.905000px;}
.y94_c00398{bottom:389.745000px;}
.y90_c00398{bottom:390.405000px;}
.y8f_c00398{bottom:391.245000px;}
.y95_c00398{bottom:392.130000px;}
.y91_c00398{bottom:392.970000px;}
.y92_c00398{bottom:393.405000px;}
.y93_c00398{bottom:394.470000px;}
.y8b_c00398{bottom:408.405000px;}
.y89_c00398{bottom:410.745000px;}
.y8d_c00398{bottom:411.405000px;}
.y8c_c00398{bottom:411.630000px;}
.y8a_c00398{bottom:411.825000px;}
.y8e_c00398{bottom:412.470000px;}
.y88_c00398{bottom:412.905000px;}
.y84_c00398{bottom:430.245000px;}
.y86_c00398{bottom:431.325000px;}
.y87_c00398{bottom:432.405000px;}
.y85_c00398{bottom:432.630000px;}
.y81_c00398{bottom:450.825000px;}
.y80_c00398{bottom:451.905000px;}
.y82_c00398{bottom:452.325000px;}
.y83_c00398{bottom:452.970000px;}
.y7f_c00398{bottom:469.245000px;}
.y7d_c00398{bottom:470.745000px;}
.y7b_c00398{bottom:471.825000px;}
.y7e_c00398{bottom:472.470000px;}
.y7c_c00398{bottom:472.905000px;}
.y78_c00398{bottom:488.745000px;}
.y7a_c00398{bottom:489.825000px;}
.y77_c00398{bottom:490.245000px;}
.y76_c00398{bottom:490.905000px;}
.y79_c00398{bottom:492.405000px;}
.y74_c00398{bottom:508.680000px;}
.y72_c00398{bottom:509.745000px;}
.y75_c00398{bottom:510.405000px;}
.y73_c00398{bottom:511.470000px;}
.y70_c00398{bottom:511.905000px;}
.y71_c00398{bottom:511.920000px;}
.y6e_c00398{bottom:528.180000px;}
.y6f_c00398{bottom:529.245000px;}
.y6c_c00398{bottom:530.550000px;}
.y6b_c00398{bottom:531.405000px;}
.y6d_c00398{bottom:531.420000px;}
.y6a_c00398{bottom:547.905000px;}
.y66_c00398{bottom:548.745000px;}
.y69_c00398{bottom:549.405000px;}
.y68_c00398{bottom:549.825000px;}
.y67_c00398{bottom:552.420000px;}
.y62_c00398{bottom:568.245000px;}
.y64_c00398{bottom:569.325000px;}
.y63_c00398{bottom:569.970000px;}
.y65_c00398{bottom:570.405000px;}
.y5d_c00398{bottom:587.745000px;}
.y5e_c00398{bottom:589.245000px;}
.y61_c00398{bottom:589.905000px;}
.y60_c00398{bottom:591.405000px;}
.y5f_c00398{bottom:591.420000px;}
.y5a_c00398{bottom:609.825000px;}
.y57_c00398{bottom:610.905000px;}
.y5b_c00398{bottom:611.325000px;}
.y59_c00398{bottom:612.405000px;}
.y5c_c00398{bottom:612.630000px;}
.y58_c00398{bottom:613.470000px;}
.y51_c00398{bottom:627.825000px;}
.y50_c00398{bottom:628.050000px;}
.y55_c00398{bottom:628.470000px;}
.y52_c00398{bottom:628.905000px;}
.y54_c00398{bottom:629.130000px;}
.y53_c00398{bottom:629.550000px;}
.y4f_c00398{bottom:631.050000px;}
.y56_c00398{bottom:633.195000px;}
.y4d_c00398{bottom:652.245000px;}
.y4e_c00398{bottom:654.405000px;}
.y4c_c00398{bottom:684.405000px;}
.y4a_c00398{bottom:709.905000px;}
.y4b_c00398{bottom:713.130000px;}
.y49_c00398{bottom:713.970000px;}
.y47_c00398{bottom:714.405000px;}
.y48_c00398{bottom:715.470000px;}
.y44_c00398{bottom:729.405000px;}
.y46_c00398{bottom:732.630000px;}
.y45_c00398{bottom:733.470000px;}
.y43_c00398{bottom:733.905000px;}
.y40_c00398{bottom:748.905000px;}
.y42_c00398{bottom:751.245000px;}
.y41_c00398{bottom:752.130000px;}
.y3f_c00398{bottom:752.325000px;}
.y3e_c00398{bottom:752.970000px;}
.y3d_c00398{bottom:753.405000px;}
.y3b_c00398{bottom:770.745000px;}
.y38_c00398{bottom:771.630000px;}
.y3a_c00398{bottom:771.825000px;}
.y3c_c00398{bottom:772.470000px;}
.y39_c00398{bottom:772.905000px;}
.y35_c00398{bottom:790.245000px;}
.y37_c00398{bottom:790.470000px;}
.y34_c00398{bottom:791.970000px;}
.y33_c00398{bottom:792.405000px;}
.y36_c00398{bottom:793.470000px;}
.y2d_c00398{bottom:808.905000px;}
.y2e_c00398{bottom:809.745000px;}
.y32_c00398{bottom:811.050000px;}
.y2c_c00398{bottom:811.905000px;}
.y30_c00398{bottom:812.130000px;}
.y31_c00398{bottom:812.970000px;}
.y2f_c00398{bottom:813.405000px;}
.y29_c00398{bottom:830.745000px;}
.y2a_c00398{bottom:831.630000px;}
.y2b_c00398{bottom:832.470000px;}
.y28_c00398{bottom:832.905000px;}
.y25_c00398{bottom:848.745000px;}
.y22_c00398{bottom:850.245000px;}
.y24_c00398{bottom:850.905000px;}
.y27_c00398{bottom:851.130000px;}
.y26_c00398{bottom:851.970000px;}
.y23_c00398{bottom:852.405000px;}
.y1c_c00398{bottom:867.405000px;}
.y20_c00398{bottom:868.680000px;}
.y1d_c00398{bottom:869.745000px;}
.y21_c00398{bottom:870.405000px;}
.y1f_c00398{bottom:871.470000px;}
.y1e_c00398{bottom:871.905000px;}
.y18_c00398{bottom:889.245000px;}
.y1b_c00398{bottom:890.325000px;}
.y19_c00398{bottom:891.405000px;}
.y1a_c00398{bottom:892.470000px;}
.y14_c00398{bottom:908.745000px;}
.y17_c00398{bottom:909.405000px;}
.y16_c00398{bottom:910.470000px;}
.y15_c00398{bottom:910.905000px;}
.y13_c00398{bottom:928.245000px;}
.y12_c00398{bottom:929.130000px;}
.y11_c00398{bottom:930.405000px;}
.yf_c00398{bottom:946.905000px;}
.yc_c00398{bottom:947.745000px;}
.y10_c00398{bottom:949.245000px;}
.ye_c00398{bottom:949.905000px;}
.yd_c00398{bottom:950.970000px;}
.yb_c00398{bottom:968.745000px;}
.y7_c00398{bottom:969.405000px;}
.y9_c00398{bottom:969.630000px;}
.y8_c00398{bottom:970.470000px;}
.ya_c00398{bottom:970.905000px;}
.y4_c00398{bottom:985.905000px;}
.y6_c00398{bottom:986.745000px;}
.y5_c00398{bottom:986.970000px;}
.y2_c00398{bottom:988.905000px;}
.y3_c00398{bottom:989.130000px;}
.y1_c00398{bottom:1018.905000px;}
.ha_c00398{height:4.206533px;}
.h9_c00398{height:16.752334px;}
.h2_c00398{height:23.025234px;}
.h7_c00398{height:25.091602px;}
.h3_c00398{height:31.364502px;}
.h1_c00398{height:35.571035px;}
.h5_c00398{height:39.777568px;}
.h4_c00398{height:43.910303px;}
.h6_c00398{height:48.116836px;}
.h8_c00398{height:53.571035px;}
.h0_c00398{height:1335.000000px;}
.w0_c00398{width:880.500000px;}
.x0_c00398{left:0.000000px;}
.x2b_c00398{left:151.500000px;}
.x11_c00398{left:153.000000px;}
.xa6_c00398{left:164.580000px;}
.xa9_c00398{left:166.920000px;}
.x3_c00398{left:168.000000px;}
.x2c_c00398{left:169.500000px;}
.x9c_c00398{left:174.855000px;}
.xfb_c00398{left:177.000000px;}
.x7b_c00398{left:178.080000px;}
.x69_c00398{left:180.420000px;}
.x2d_c00398{left:181.500000px;}
.xc6_c00398{left:185.580000px;}
.x8f_c00398{left:189.420000px;}
.x94_c00398{left:190.500000px;}
.x83_c00398{left:192.000000px;}
.x4_c00398{left:193.920000px;}
.xfc_c00398{left:195.000000px;}
.x4c_c00398{left:196.500000px;}
.x9d_c00398{left:197.580000px;}
.x1c_c00398{left:199.500000px;}
.xbd_c00398{left:200.580000px;}
.xae_c00398{left:202.275000px;}
.x62_c00398{left:203.580000px;}
.xa7_c00398{left:205.080000px;}
.x95_c00398{left:208.500000px;}
.x3a_c00398{left:210.000000px;}
.xaa_c00398{left:213.420000px;}
.x7c_c00398{left:214.920000px;}
.x12_c00398{left:217.500000px;}
.x63_c00398{left:220.080000px;}
.xdb_c00398{left:223.080000px;}
.x84_c00398{left:228.000000px;}
.xf0_c00398{left:229.920000px;}
.x6a_c00398{left:232.080000px;}
.x2e_c00398{left:234.000000px;}
.x13_c00398{left:235.920000px;}
.xc3_c00398{left:237.420000px;}
.x1d_c00398{left:244.920000px;}
.xc7_c00398{left:246.000000px;}
.x85_c00398{left:247.920000px;}
.xcd_c00398{left:249.000000px;}
.x74_c00398{left:250.080000px;}
.x58_c00398{left:252.420000px;}
.xaf_c00398{left:253.500000px;}
.xdc_c00398{left:255.420000px;}
.xb0_c00398{left:258.000000px;}
.x42_c00398{left:259.920000px;}
.x5_c00398{left:264.000000px;}
.x2f_c00398{left:265.080000px;}
.xec_c00398{left:271.080000px;}
.x75_c00398{left:273.000000px;}
.x4d_c00398{left:274.500000px;}
.x1e_c00398{left:276.420000px;}
.xe4_c00398{left:277.500000px;}
.x96_c00398{left:279.000000px;}
.x6b_c00398{left:280.080000px;}
.x9e_c00398{left:281.355000px;}
.x3b_c00398{left:282.420000px;}
.xe7_c00398{left:283.500000px;}
.x30_c00398{left:285.000000px;}
.x6_c00398{left:287.580000px;}
.x43_c00398{left:289.500000px;}
.x59_c00398{left:291.000000px;}
.x9a_c00398{left:294.000000px;}
.xb6_c00398{left:298.500000px;}
.xce_c00398{left:301.500000px;}
.x7d_c00398{left:304.080000px;}
.x97_c00398{left:307.500000px;}
.x1f_c00398{left:309.000000px;}
.x4e_c00398{left:310.920000px;}
.xf1_c00398{left:313.500000px;}
.x64_c00398{left:314.580000px;}
.xb7_c00398{left:320.580000px;}
.x90_c00398{left:322.080000px;}
.x5a_c00398{left:324.000000px;}
.x20_c00398{left:325.500000px;}
.x7_c00398{left:327.000000px;}
.xf2_c00398{left:328.500000px;}
.x14_c00398{left:331.500000px;}
.x7e_c00398{left:334.920000px;}
.x76_c00398{left:336.420000px;}
.x98_c00398{left:337.500000px;}
.x4f_c00398{left:339.000000px;}
.xb1_c00398{left:340.275000px;}
.x31_c00398{left:341.580000px;}
.x8_c00398{left:345.000000px;}
.x86_c00398{left:346.920000px;}
.x5b_c00398{left:348.000000px;}
.x9f_c00398{left:349.500000px;}
.x1_c00398{left:350.580000px;}
.xdd_c00398{left:353.580000px;}
.x21_c00398{left:355.920000px;}
.x6c_c00398{left:358.500000px;}
.x32_c00398{left:360.000000px;}
.x15_c00398{left:364.500000px;}
.x9_c00398{left:366.000000px;}
.xab_c00398{left:367.500000px;}
.xd1_c00398{left:370.080000px;}
.xf5_c00398{left:371.580000px;}
.x50_c00398{left:373.500000px;}
.x87_c00398{left:375.000000px;}
.x5c_c00398{left:376.500000px;}
.x65_c00398{left:378.420000px;}
.xbe_c00398{left:379.920000px;}
.xb9_c00398{left:381.000000px;}
.xde_c00398{left:384.000000px;}
.xe8_c00398{left:388.500000px;}
.xac_c00398{left:391.500000px;}
.x44_c00398{left:393.000000px;}
.xed_c00398{left:394.500000px;}
.x7f_c00398{left:396.000000px;}
.xf3_c00398{left:399.000000px;}
.x33_c00398{left:400.500000px;}
.x2_c00398{left:401.580000px;}
.x22_c00398{left:403.080000px;}
.x6d_c00398{left:404.580000px;}
.xa_c00398{left:408.000000px;}
.x45_c00398{left:409.080000px;}
.xee_c00398{left:411.855000px;}
.x3c_c00398{left:413.580000px;}
.x77_c00398{left:416.580000px;}
.x99_c00398{left:418.080000px;}
.xcf_c00398{left:421.920000px;}
.x51_c00398{left:424.080000px;}
.xdf_c00398{left:425.580000px;}
.x80_c00398{left:427.500000px;}
.x88_c00398{left:428.580000px;}
.x16_c00398{left:430.500000px;}
.x34_c00398{left:431.580000px;}
.x78_c00398{left:438.000000px;}
.xd6_c00398{left:439.500000px;}
.x52_c00398{left:442.920000px;}
.xe9_c00398{left:444.000000px;}
.xb2_c00398{left:445.500000px;}
.x66_c00398{left:447.420000px;}
.x89_c00398{left:448.500000px;}
.x5d_c00398{left:451.500000px;}
.x23_c00398{left:454.920000px;}
.xd7_c00398{left:457.500000px;}
.x81_c00398{left:459.000000px;}
.x91_c00398{left:460.920000px;}
.x6e_c00398{left:462.420000px;}
.x5e_c00398{left:464.580000px;}
.xa0_c00398{left:468.855000px;}
.x9b_c00398{left:472.080000px;}
.xba_c00398{left:473.580000px;}
.x17_c00398{left:475.920000px;}
.xfd_c00398{left:478.920000px;}
.xc8_c00398{left:480.000000px;}
.x24_c00398{left:481.920000px;}
.xd8_c00398{left:487.080000px;}
.x92_c00398{left:489.000000px;}
.xa8_c00398{left:490.080000px;}
.xa1_c00398{left:492.420000px;}
.x46_c00398{left:495.000000px;}
.x35_c00398{left:496.500000px;}
.xe0_c00398{left:499.500000px;}
.xb8_c00398{left:500.580000px;}
.x18_c00398{left:502.500000px;}
.x6f_c00398{left:504.000000px;}
.x3d_c00398{left:505.080000px;}
.xb_c00398{left:508.920000px;}
.xc9_c00398{left:510.000000px;}
.x79_c00398{left:511.500000px;}
.xd0_c00398{left:513.000000px;}
.x47_c00398{left:514.500000px;}
.x25_c00398{left:519.000000px;}
.x8a_c00398{left:522.420000px;}
.x70_c00398{left:523.920000px;}
.xf6_c00398{left:525.000000px;}
.xea_c00398{left:526.500000px;}
.x82_c00398{left:529.080000px;}
.xc4_c00398{left:531.000000px;}
.x5f_c00398{left:532.500000px;}
.xa2_c00398{left:534.000000px;}
.x36_c00398{left:535.500000px;}
.xc_c00398{left:537.000000px;}
.xe1_c00398{left:538.500000px;}
.x53_c00398{left:540.000000px;}
.xbf_c00398{left:541.500000px;}
.x19_c00398{left:545.580000px;}
.x93_c00398{left:548.580000px;}
.x71_c00398{left:552.000000px;}
.x3e_c00398{left:554.580000px;}
.xbb_c00398{left:558.420000px;}
.x54_c00398{left:559.500000px;}
.x48_c00398{left:561.420000px;}
.xeb_c00398{left:565.500000px;}
.x37_c00398{left:567.000000px;}
.xf7_c00398{left:568.080000px;}
.xa3_c00398{left:570.420000px;}
.x8b_c00398{left:571.500000px;}
.x60_c00398{left:573.000000px;}
.x26_c00398{left:574.080000px;}
.xca_c00398{left:576.420000px;}
.xe5_c00398{left:577.500000px;}
.xb3_c00398{left:578.580000px;}
.xd_c00398{left:580.080000px;}
.xbc_c00398{left:583.500000px;}
.x3f_c00398{left:586.080000px;}
.xd9_c00398{left:588.000000px;}
.x61_c00398{left:589.080000px;}
.xf8_c00398{left:590.355000px;}
.x27_c00398{left:591.420000px;}
.xc0_c00398{left:593.145000px;}
.xd2_c00398{left:595.500000px;}
.x8c_c00398{left:598.500000px;}
.x55_c00398{left:605.580000px;}
.xa4_c00398{left:607.920000px;}
.xe_c00398{left:613.920000px;}
.xcb_c00398{left:615.420000px;}
.xf4_c00398{left:616.500000px;}
.x28_c00398{left:618.000000px;}
.xc1_c00398{left:624.000000px;}
.x49_c00398{left:628.920000px;}
.x72_c00398{left:630.420000px;}
.xe2_c00398{left:633.420000px;}
.x56_c00398{left:635.580000px;}
.xb4_c00398{left:639.420000px;}
.xe6_c00398{left:641.580000px;}
.xf_c00398{left:643.500000px;}
.x8d_c00398{left:645.420000px;}
.xd3_c00398{left:646.920000px;}
.x38_c00398{left:649.080000px;}
.x57_c00398{left:655.080000px;}
.x1a_c00398{left:657.000000px;}
.x40_c00398{left:659.580000px;}
.xf9_c00398{left:661.080000px;}
.x29_c00398{left:662.355000px;}
.x73_c00398{left:664.920000px;}
.xda_c00398{left:666.000000px;}
.x67_c00398{left:667.500000px;}
.xad_c00398{left:673.500000px;}
.xd4_c00398{left:675.000000px;}
.x7a_c00398{left:679.500000px;}
.x8e_c00398{left:681.420000px;}
.xef_c00398{left:682.500000px;}
.x4a_c00398{left:684.000000px;}
.xb5_c00398{left:685.080000px;}
.xe3_c00398{left:686.580000px;}
.xc5_c00398{left:688.500000px;}
.x39_c00398{left:691.080000px;}
.x1b_c00398{left:693.000000px;}
.x2a_c00398{left:694.920000px;}
.x10_c00398{left:699.000000px;}
.xfa_c00398{left:700.500000px;}
.xc2_c00398{left:703.500000px;}
.x41_c00398{left:704.580000px;}
.xcc_c00398{left:706.080000px;}
.x4b_c00398{left:708.420000px;}
.xd5_c00398{left:715.500000px;}
.x68_c00398{left:716.580000px;}
.xa5_c00398{left:724.500000px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.v1_c00398{vertical-align:16.000000pt;}
.ls0_c00398{letter-spacing:0.000000pt;}
.ws0_c00398{word-spacing:-7.280056pt;}
.ws1_c00398{word-spacing:0.000000pt;}
.fs8_c00398{font-size:3.040000pt;}
.fs7_c00398{font-size:12.106667pt;}
.fs1_c00398{font-size:16.640000pt;}
.fs6_c00398{font-size:18.133333pt;}
.fs2_c00398{font-size:22.666667pt;}
.fs0_c00398{font-size:25.706667pt;}
.fs4_c00398{font-size:28.746667pt;}
.fs3_c00398{font-size:31.733333pt;}
.fs5_c00398{font-size:34.773333pt;}
.y0_c00398{bottom:0.000000pt;}
.ybe_c00398{bottom:203.973333pt;}
.ybd_c00398{bottom:204.733333pt;}
.yc0_c00398{bottom:206.640000pt;}
.ybf_c00398{bottom:207.600000pt;}
.yb7_c00398{bottom:218.066667pt;}
.yb9_c00398{bottom:218.266667pt;}
.ybc_c00398{bottom:218.640000pt;}
.yba_c00398{bottom:219.026667pt;}
.ybb_c00398{bottom:219.600000pt;}
.yb6_c00398{bottom:219.973333pt;}
.yb5_c00398{bottom:220.173333pt;}
.yb4_c00398{bottom:220.933333pt;}
.yb8_c00398{bottom:221.306667pt;}
.yb3_c00398{bottom:222.840000pt;}
.yad_c00398{bottom:242.440000pt;}
.yb2_c00398{bottom:243.226667pt;}
.yb0_c00398{bottom:243.400000pt;}
.yae_c00398{bottom:243.973333pt;}
.yaf_c00398{bottom:244.360000pt;}
.yb1_c00398{bottom:245.306667pt;}
.ya9_c00398{bottom:258.640000pt;}
.yab_c00398{bottom:259.026667pt;}
.ya7_c00398{bottom:259.773333pt;}
.yac_c00398{bottom:260.560000pt;}
.ya8_c00398{bottom:260.933333pt;}
.yaa_c00398{bottom:261.306667pt;}
.ya6_c00398{bottom:261.693333pt;}
.ya5_c00398{bottom:277.106667pt;}
.ya4_c00398{bottom:278.066667pt;}
.ya3_c00398{bottom:279.026667pt;}
.y9e_c00398{bottom:294.440000pt;}
.ya1_c00398{bottom:294.640000pt;}
.ya2_c00398{bottom:295.400000pt;}
.y9f_c00398{bottom:296.360000pt;}
.ya0_c00398{bottom:296.560000pt;}
.y9c_c00398{bottom:311.773333pt;}
.y98_c00398{bottom:313.693333pt;}
.y9d_c00398{bottom:313.893333pt;}
.y9a_c00398{bottom:314.640000pt;}
.y9b_c00398{bottom:315.026667pt;}
.y99_c00398{bottom:315.040000pt;}
.y97_c00398{bottom:330.440000pt;}
.y96_c00398{bottom:332.360000pt;}
.y94_c00398{bottom:346.440000pt;}
.y90_c00398{bottom:347.026667pt;}
.y8f_c00398{bottom:347.773333pt;}
.y95_c00398{bottom:348.560000pt;}
.y91_c00398{bottom:349.306667pt;}
.y92_c00398{bottom:349.693333pt;}
.y93_c00398{bottom:350.640000pt;}
.y8b_c00398{bottom:363.026667pt;}
.y89_c00398{bottom:365.106667pt;}
.y8d_c00398{bottom:365.693333pt;}
.y8c_c00398{bottom:365.893333pt;}
.y8a_c00398{bottom:366.066667pt;}
.y8e_c00398{bottom:366.640000pt;}
.y88_c00398{bottom:367.026667pt;}
.y84_c00398{bottom:382.440000pt;}
.y86_c00398{bottom:383.400000pt;}
.y87_c00398{bottom:384.360000pt;}
.y85_c00398{bottom:384.560000pt;}
.y81_c00398{bottom:400.733333pt;}
.y80_c00398{bottom:401.693333pt;}
.y82_c00398{bottom:402.066667pt;}
.y83_c00398{bottom:402.640000pt;}
.y7f_c00398{bottom:417.106667pt;}
.y7d_c00398{bottom:418.440000pt;}
.y7b_c00398{bottom:419.400000pt;}
.y7e_c00398{bottom:419.973333pt;}
.y7c_c00398{bottom:420.360000pt;}
.y78_c00398{bottom:434.440000pt;}
.y7a_c00398{bottom:435.400000pt;}
.y77_c00398{bottom:435.773333pt;}
.y76_c00398{bottom:436.360000pt;}
.y79_c00398{bottom:437.693333pt;}
.y74_c00398{bottom:452.160000pt;}
.y72_c00398{bottom:453.106667pt;}
.y75_c00398{bottom:453.693333pt;}
.y73_c00398{bottom:454.640000pt;}
.y70_c00398{bottom:455.026667pt;}
.y71_c00398{bottom:455.040000pt;}
.y6e_c00398{bottom:469.493333pt;}
.y6f_c00398{bottom:470.440000pt;}
.y6c_c00398{bottom:471.600000pt;}
.y6b_c00398{bottom:472.360000pt;}
.y6d_c00398{bottom:472.373333pt;}
.y6a_c00398{bottom:487.026667pt;}
.y66_c00398{bottom:487.773333pt;}
.y69_c00398{bottom:488.360000pt;}
.y68_c00398{bottom:488.733333pt;}
.y67_c00398{bottom:491.040000pt;}
.y62_c00398{bottom:505.106667pt;}
.y64_c00398{bottom:506.066667pt;}
.y63_c00398{bottom:506.640000pt;}
.y65_c00398{bottom:507.026667pt;}
.y5d_c00398{bottom:522.440000pt;}
.y5e_c00398{bottom:523.773333pt;}
.y61_c00398{bottom:524.360000pt;}
.y60_c00398{bottom:525.693333pt;}
.y5f_c00398{bottom:525.706667pt;}
.y5a_c00398{bottom:542.066667pt;}
.y57_c00398{bottom:543.026667pt;}
.y5b_c00398{bottom:543.400000pt;}
.y59_c00398{bottom:544.360000pt;}
.y5c_c00398{bottom:544.560000pt;}
.y58_c00398{bottom:545.306667pt;}
.y51_c00398{bottom:558.066667pt;}
.y50_c00398{bottom:558.266667pt;}
.y55_c00398{bottom:558.640000pt;}
.y52_c00398{bottom:559.026667pt;}
.y54_c00398{bottom:559.226667pt;}
.y53_c00398{bottom:559.600000pt;}
.y4f_c00398{bottom:560.933333pt;}
.y56_c00398{bottom:562.840000pt;}
.y4d_c00398{bottom:579.773333pt;}
.y4e_c00398{bottom:581.693333pt;}
.y4c_c00398{bottom:608.360000pt;}
.y4a_c00398{bottom:631.026667pt;}
.y4b_c00398{bottom:633.893333pt;}
.y49_c00398{bottom:634.640000pt;}
.y47_c00398{bottom:635.026667pt;}
.y48_c00398{bottom:635.973333pt;}
.y44_c00398{bottom:648.360000pt;}
.y46_c00398{bottom:651.226667pt;}
.y45_c00398{bottom:651.973333pt;}
.y43_c00398{bottom:652.360000pt;}
.y40_c00398{bottom:665.693333pt;}
.y42_c00398{bottom:667.773333pt;}
.y41_c00398{bottom:668.560000pt;}
.y3f_c00398{bottom:668.733333pt;}
.y3e_c00398{bottom:669.306667pt;}
.y3d_c00398{bottom:669.693333pt;}
.y3b_c00398{bottom:685.106667pt;}
.y38_c00398{bottom:685.893333pt;}
.y3a_c00398{bottom:686.066667pt;}
.y3c_c00398{bottom:686.640000pt;}
.y39_c00398{bottom:687.026667pt;}
.y35_c00398{bottom:702.440000pt;}
.y37_c00398{bottom:702.640000pt;}
.y34_c00398{bottom:703.973333pt;}
.y33_c00398{bottom:704.360000pt;}
.y36_c00398{bottom:705.306667pt;}
.y2d_c00398{bottom:719.026667pt;}
.y2e_c00398{bottom:719.773333pt;}
.y32_c00398{bottom:720.933333pt;}
.y2c_c00398{bottom:721.693333pt;}
.y30_c00398{bottom:721.893333pt;}
.y31_c00398{bottom:722.640000pt;}
.y2f_c00398{bottom:723.026667pt;}
.y29_c00398{bottom:738.440000pt;}
.y2a_c00398{bottom:739.226667pt;}
.y2b_c00398{bottom:739.973333pt;}
.y28_c00398{bottom:740.360000pt;}
.y25_c00398{bottom:754.440000pt;}
.y22_c00398{bottom:755.773333pt;}
.y24_c00398{bottom:756.360000pt;}
.y27_c00398{bottom:756.560000pt;}
.y26_c00398{bottom:757.306667pt;}
.y23_c00398{bottom:757.693333pt;}
.y1c_c00398{bottom:771.026667pt;}
.y20_c00398{bottom:772.160000pt;}
.y1d_c00398{bottom:773.106667pt;}
.y21_c00398{bottom:773.693333pt;}
.y1f_c00398{bottom:774.640000pt;}
.y1e_c00398{bottom:775.026667pt;}
.y18_c00398{bottom:790.440000pt;}
.y1b_c00398{bottom:791.400000pt;}
.y19_c00398{bottom:792.360000pt;}
.y1a_c00398{bottom:793.306667pt;}
.y14_c00398{bottom:807.773333pt;}
.y17_c00398{bottom:808.360000pt;}
.y16_c00398{bottom:809.306667pt;}
.y15_c00398{bottom:809.693333pt;}
.y13_c00398{bottom:825.106667pt;}
.y12_c00398{bottom:825.893333pt;}
.y11_c00398{bottom:827.026667pt;}
.yf_c00398{bottom:841.693333pt;}
.yc_c00398{bottom:842.440000pt;}
.y10_c00398{bottom:843.773333pt;}
.ye_c00398{bottom:844.360000pt;}
.yd_c00398{bottom:845.306667pt;}
.yb_c00398{bottom:861.106667pt;}
.y7_c00398{bottom:861.693333pt;}
.y9_c00398{bottom:861.893333pt;}
.y8_c00398{bottom:862.640000pt;}
.ya_c00398{bottom:863.026667pt;}
.y4_c00398{bottom:876.360000pt;}
.y6_c00398{bottom:877.106667pt;}
.y5_c00398{bottom:877.306667pt;}
.y2_c00398{bottom:879.026667pt;}
.y3_c00398{bottom:879.226667pt;}
.y1_c00398{bottom:905.693333pt;}
.ha_c00398{height:3.739141pt;}
.h9_c00398{height:14.890964pt;}
.h2_c00398{height:20.466875pt;}
.h7_c00398{height:22.303646pt;}
.h3_c00398{height:27.879557pt;}
.h1_c00398{height:31.618698pt;}
.h5_c00398{height:35.357839pt;}
.h4_c00398{height:39.031380pt;}
.h6_c00398{height:42.770521pt;}
.h8_c00398{height:47.618698pt;}
.h0_c00398{height:1186.666667pt;}
.w0_c00398{width:782.666667pt;}
.x0_c00398{left:0.000000pt;}
.x2b_c00398{left:134.666667pt;}
.x11_c00398{left:136.000000pt;}
.xa6_c00398{left:146.293333pt;}
.xa9_c00398{left:148.373333pt;}
.x3_c00398{left:149.333333pt;}
.x2c_c00398{left:150.666667pt;}
.x9c_c00398{left:155.426667pt;}
.xfb_c00398{left:157.333333pt;}
.x7b_c00398{left:158.293333pt;}
.x69_c00398{left:160.373333pt;}
.x2d_c00398{left:161.333333pt;}
.xc6_c00398{left:164.960000pt;}
.x8f_c00398{left:168.373333pt;}
.x94_c00398{left:169.333333pt;}
.x83_c00398{left:170.666667pt;}
.x4_c00398{left:172.373333pt;}
.xfc_c00398{left:173.333333pt;}
.x4c_c00398{left:174.666667pt;}
.x9d_c00398{left:175.626667pt;}
.x1c_c00398{left:177.333333pt;}
.xbd_c00398{left:178.293333pt;}
.xae_c00398{left:179.800000pt;}
.x62_c00398{left:180.960000pt;}
.xa7_c00398{left:182.293333pt;}
.x95_c00398{left:185.333333pt;}
.x3a_c00398{left:186.666667pt;}
.xaa_c00398{left:189.706667pt;}
.x7c_c00398{left:191.040000pt;}
.x12_c00398{left:193.333333pt;}
.x63_c00398{left:195.626667pt;}
.xdb_c00398{left:198.293333pt;}
.x84_c00398{left:202.666667pt;}
.xf0_c00398{left:204.373333pt;}
.x6a_c00398{left:206.293333pt;}
.x2e_c00398{left:208.000000pt;}
.x13_c00398{left:209.706667pt;}
.xc3_c00398{left:211.040000pt;}
.x1d_c00398{left:217.706667pt;}
.xc7_c00398{left:218.666667pt;}
.x85_c00398{left:220.373333pt;}
.xcd_c00398{left:221.333333pt;}
.x74_c00398{left:222.293333pt;}
.x58_c00398{left:224.373333pt;}
.xaf_c00398{left:225.333333pt;}
.xdc_c00398{left:227.040000pt;}
.xb0_c00398{left:229.333333pt;}
.x42_c00398{left:231.040000pt;}
.x5_c00398{left:234.666667pt;}
.x2f_c00398{left:235.626667pt;}
.xec_c00398{left:240.960000pt;}
.x75_c00398{left:242.666667pt;}
.x4d_c00398{left:244.000000pt;}
.x1e_c00398{left:245.706667pt;}
.xe4_c00398{left:246.666667pt;}
.x96_c00398{left:248.000000pt;}
.x6b_c00398{left:248.960000pt;}
.x9e_c00398{left:250.093333pt;}
.x3b_c00398{left:251.040000pt;}
.xe7_c00398{left:252.000000pt;}
.x30_c00398{left:253.333333pt;}
.x6_c00398{left:255.626667pt;}
.x43_c00398{left:257.333333pt;}
.x59_c00398{left:258.666667pt;}
.x9a_c00398{left:261.333333pt;}
.xb6_c00398{left:265.333333pt;}
.xce_c00398{left:268.000000pt;}
.x7d_c00398{left:270.293333pt;}
.x97_c00398{left:273.333333pt;}
.x1f_c00398{left:274.666667pt;}
.x4e_c00398{left:276.373333pt;}
.xf1_c00398{left:278.666667pt;}
.x64_c00398{left:279.626667pt;}
.xb7_c00398{left:284.960000pt;}
.x90_c00398{left:286.293333pt;}
.x5a_c00398{left:288.000000pt;}
.x20_c00398{left:289.333333pt;}
.x7_c00398{left:290.666667pt;}
.xf2_c00398{left:292.000000pt;}
.x14_c00398{left:294.666667pt;}
.x7e_c00398{left:297.706667pt;}
.x76_c00398{left:299.040000pt;}
.x98_c00398{left:300.000000pt;}
.x4f_c00398{left:301.333333pt;}
.xb1_c00398{left:302.466667pt;}
.x31_c00398{left:303.626667pt;}
.x8_c00398{left:306.666667pt;}
.x86_c00398{left:308.373333pt;}
.x5b_c00398{left:309.333333pt;}
.x9f_c00398{left:310.666667pt;}
.x1_c00398{left:311.626667pt;}
.xdd_c00398{left:314.293333pt;}
.x21_c00398{left:316.373333pt;}
.x6c_c00398{left:318.666667pt;}
.x32_c00398{left:320.000000pt;}
.x15_c00398{left:324.000000pt;}
.x9_c00398{left:325.333333pt;}
.xab_c00398{left:326.666667pt;}
.xd1_c00398{left:328.960000pt;}
.xf5_c00398{left:330.293333pt;}
.x50_c00398{left:332.000000pt;}
.x87_c00398{left:333.333333pt;}
.x5c_c00398{left:334.666667pt;}
.x65_c00398{left:336.373333pt;}
.xbe_c00398{left:337.706667pt;}
.xb9_c00398{left:338.666667pt;}
.xde_c00398{left:341.333333pt;}
.xe8_c00398{left:345.333333pt;}
.xac_c00398{left:348.000000pt;}
.x44_c00398{left:349.333333pt;}
.xed_c00398{left:350.666667pt;}
.x7f_c00398{left:352.000000pt;}
.xf3_c00398{left:354.666667pt;}
.x33_c00398{left:356.000000pt;}
.x2_c00398{left:356.960000pt;}
.x22_c00398{left:358.293333pt;}
.x6d_c00398{left:359.626667pt;}
.xa_c00398{left:362.666667pt;}
.x45_c00398{left:363.626667pt;}
.xee_c00398{left:366.093333pt;}
.x3c_c00398{left:367.626667pt;}
.x77_c00398{left:370.293333pt;}
.x99_c00398{left:371.626667pt;}
.xcf_c00398{left:375.040000pt;}
.x51_c00398{left:376.960000pt;}
.xdf_c00398{left:378.293333pt;}
.x80_c00398{left:380.000000pt;}
.x88_c00398{left:380.960000pt;}
.x16_c00398{left:382.666667pt;}
.x34_c00398{left:383.626667pt;}
.x78_c00398{left:389.333333pt;}
.xd6_c00398{left:390.666667pt;}
.x52_c00398{left:393.706667pt;}
.xe9_c00398{left:394.666667pt;}
.xb2_c00398{left:396.000000pt;}
.x66_c00398{left:397.706667pt;}
.x89_c00398{left:398.666667pt;}
.x5d_c00398{left:401.333333pt;}
.x23_c00398{left:404.373333pt;}
.xd7_c00398{left:406.666667pt;}
.x81_c00398{left:408.000000pt;}
.x91_c00398{left:409.706667pt;}
.x6e_c00398{left:411.040000pt;}
.x5e_c00398{left:412.960000pt;}
.xa0_c00398{left:416.760000pt;}
.x9b_c00398{left:419.626667pt;}
.xba_c00398{left:420.960000pt;}
.x17_c00398{left:423.040000pt;}
.xfd_c00398{left:425.706667pt;}
.xc8_c00398{left:426.666667pt;}
.x24_c00398{left:428.373333pt;}
.xd8_c00398{left:432.960000pt;}
.x92_c00398{left:434.666667pt;}
.xa8_c00398{left:435.626667pt;}
.xa1_c00398{left:437.706667pt;}
.x46_c00398{left:440.000000pt;}
.x35_c00398{left:441.333333pt;}
.xe0_c00398{left:444.000000pt;}
.xb8_c00398{left:444.960000pt;}
.x18_c00398{left:446.666667pt;}
.x6f_c00398{left:448.000000pt;}
.x3d_c00398{left:448.960000pt;}
.xb_c00398{left:452.373333pt;}
.xc9_c00398{left:453.333333pt;}
.x79_c00398{left:454.666667pt;}
.xd0_c00398{left:456.000000pt;}
.x47_c00398{left:457.333333pt;}
.x25_c00398{left:461.333333pt;}
.x8a_c00398{left:464.373333pt;}
.x70_c00398{left:465.706667pt;}
.xf6_c00398{left:466.666667pt;}
.xea_c00398{left:468.000000pt;}
.x82_c00398{left:470.293333pt;}
.xc4_c00398{left:472.000000pt;}
.x5f_c00398{left:473.333333pt;}
.xa2_c00398{left:474.666667pt;}
.x36_c00398{left:476.000000pt;}
.xc_c00398{left:477.333333pt;}
.xe1_c00398{left:478.666667pt;}
.x53_c00398{left:480.000000pt;}
.xbf_c00398{left:481.333333pt;}
.x19_c00398{left:484.960000pt;}
.x93_c00398{left:487.626667pt;}
.x71_c00398{left:490.666667pt;}
.x3e_c00398{left:492.960000pt;}
.xbb_c00398{left:496.373333pt;}
.x54_c00398{left:497.333333pt;}
.x48_c00398{left:499.040000pt;}
.xeb_c00398{left:502.666667pt;}
.x37_c00398{left:504.000000pt;}
.xf7_c00398{left:504.960000pt;}
.xa3_c00398{left:507.040000pt;}
.x8b_c00398{left:508.000000pt;}
.x60_c00398{left:509.333333pt;}
.x26_c00398{left:510.293333pt;}
.xca_c00398{left:512.373333pt;}
.xe5_c00398{left:513.333333pt;}
.xb3_c00398{left:514.293333pt;}
.xd_c00398{left:515.626667pt;}
.xbc_c00398{left:518.666667pt;}
.x3f_c00398{left:520.960000pt;}
.xd9_c00398{left:522.666667pt;}
.x61_c00398{left:523.626667pt;}
.xf8_c00398{left:524.760000pt;}
.x27_c00398{left:525.706667pt;}
.xc0_c00398{left:527.240000pt;}
.xd2_c00398{left:529.333333pt;}
.x8c_c00398{left:532.000000pt;}
.x55_c00398{left:538.293333pt;}
.xa4_c00398{left:540.373333pt;}
.xe_c00398{left:545.706667pt;}
.xcb_c00398{left:547.040000pt;}
.xf4_c00398{left:548.000000pt;}
.x28_c00398{left:549.333333pt;}
.xc1_c00398{left:554.666667pt;}
.x49_c00398{left:559.040000pt;}
.x72_c00398{left:560.373333pt;}
.xe2_c00398{left:563.040000pt;}
.x56_c00398{left:564.960000pt;}
.xb4_c00398{left:568.373333pt;}
.xe6_c00398{left:570.293333pt;}
.xf_c00398{left:572.000000pt;}
.x8d_c00398{left:573.706667pt;}
.xd3_c00398{left:575.040000pt;}
.x38_c00398{left:576.960000pt;}
.x57_c00398{left:582.293333pt;}
.x1a_c00398{left:584.000000pt;}
.x40_c00398{left:586.293333pt;}
.xf9_c00398{left:587.626667pt;}
.x29_c00398{left:588.760000pt;}
.x73_c00398{left:591.040000pt;}
.xda_c00398{left:592.000000pt;}
.x67_c00398{left:593.333333pt;}
.xad_c00398{left:598.666667pt;}
.xd4_c00398{left:600.000000pt;}
.x7a_c00398{left:604.000000pt;}
.x8e_c00398{left:605.706667pt;}
.xef_c00398{left:606.666667pt;}
.x4a_c00398{left:608.000000pt;}
.xb5_c00398{left:608.960000pt;}
.xe3_c00398{left:610.293333pt;}
.xc5_c00398{left:612.000000pt;}
.x39_c00398{left:614.293333pt;}
.x1b_c00398{left:616.000000pt;}
.x2a_c00398{left:617.706667pt;}
.x10_c00398{left:621.333333pt;}
.xfa_c00398{left:622.666667pt;}
.xc2_c00398{left:625.333333pt;}
.x41_c00398{left:626.293333pt;}
.xcc_c00398{left:627.626667pt;}
.x4b_c00398{left:629.706667pt;}
.xd5_c00398{left:636.000000pt;}
.x68_c00398{left:636.960000pt;}
.xa5_c00398{left:644.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_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_0f752b14c2bfa50026adcc8c.woff2')format("woff");}.ff1_c00399{font-family:ff1_c00399;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mae_c00399{transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);}
.ma6_c00399{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);}
.mc6_c00399{transform:matrix(0.328151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328151,0.000000,0.000000,0.250000,0,0);}
.ma9_c00399{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.md9_c00399{transform:matrix(0.348926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348926,0.000000,0.000000,0.250000,0,0);}
.mb8_c00399{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_c00399{transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);}
.m4b_c00399{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m4_c00399{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.ma1_c00399{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m5d_c00399{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.mc8_c00399{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m70_c00399{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.ma4_c00399{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m5c_c00399{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mf4_c00399{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m86_c00399{transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);}
.ma0_c00399{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m21_c00399{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.mbe_c00399{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m3c_c00399{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m7f_c00399{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m40_c00399{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m75_c00399{transform:matrix(0.390041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390041,0.000000,0.000000,0.250000,0,0);}
.m67_c00399{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m73_c00399{transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);}
.md3_c00399{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m18_c00399{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m55_c00399{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m34_c00399{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m2e_c00399{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.mbf_c00399{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.mdf_c00399{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.mcb_c00399{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mb4_c00399{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);}
.m7a_c00399{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mef_c00399{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m2b_c00399{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mf2_c00399{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m88_c00399{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m15_c00399{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mcc_c00399{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m9b_c00399{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.mca_c00399{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.me7_c00399{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m65_c00399{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m3b_c00399{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.mf5_c00399{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m9f_c00399{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.me_c00399{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m6d_c00399{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m87_c00399{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m83_c00399{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.me4_c00399{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.md8_c00399{transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);}
.mb2_c00399{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m84_c00399{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m53_c00399{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m96_c00399{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.mc0_c00399{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m7d_c00399{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m68_c00399{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m1f_c00399{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m38_c00399{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m72_c00399{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m2d_c00399{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.maf_c00399{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m6f_c00399{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m26_c00399{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.mdd_c00399{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.m13_c00399{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.mab_c00399{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m2c_c00399{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m3f_c00399{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mdc_c00399{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m29_c00399{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m8a_c00399{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mc5_c00399{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.me3_c00399{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m8d_c00399{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.md6_c00399{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m44_c00399{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m8b_c00399{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m61_c00399{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m81_c00399{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.mce_c00399{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m20_c00399{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m99_c00399{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.md_c00399{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.m16_c00399{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.m3e_c00399{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.ma7_c00399{transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);}
.md2_c00399{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m78_c00399{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.md5_c00399{transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);}
.me5_c00399{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m35_c00399{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m6a_c00399{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.mf1_c00399{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m90_c00399{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.md0_c00399{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mba_c00399{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.mda_c00399{transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);}
.m10_c00399{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.mb3_c00399{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.m77_c00399{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m71_c00399{transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);}
.m45_c00399{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m94_c00399{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.me0_c00399{transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);}
.mf_c00399{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.maa_c00399{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.m57_c00399{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m48_c00399{transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);}
.m25_c00399{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.meb_c00399{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m95_c00399{transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);}
.m50_c00399{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m27_c00399{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m32_c00399{transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);}
.m1_c00399{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mcf_c00399{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mdb_c00399{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.m39_c00399{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m56_c00399{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m30_c00399{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_c00399{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.mb9_c00399{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m6e_c00399{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mbc_c00399{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m9a_c00399{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m63_c00399{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m89_c00399{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m8c_c00399{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mb1_c00399{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m1b_c00399{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m66_c00399{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m3a_c00399{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m3_c00399{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mad_c00399{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m17_c00399{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.ma2_c00399{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m11_c00399{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m9e_c00399{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.me6_c00399{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m1d_c00399{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.ma_c00399{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mc7_c00399{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m52_c00399{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.mee_c00399{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m6_c00399{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m41_c00399{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m12_c00399{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m33_c00399{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m1e_c00399{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m5a_c00399{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m64_c00399{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m6c_c00399{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.ma8_c00399{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m4f_c00399{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mbb_c00399{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m9_c00399{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m79_c00399{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m60_c00399{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m3d_c00399{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mc1_c00399{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m31_c00399{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m76_c00399{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m49_c00399{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m69_c00399{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mc_c00399{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.mb6_c00399{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m4d_c00399{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m8f_c00399{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mb0_c00399{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m5f_c00399{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mb5_c00399{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m1a_c00399{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.md7_c00399{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m47_c00399{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mcd_c00399{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m36_c00399{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m43_c00399{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m9c_c00399{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mf6_c00399{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);}
.m7e_c00399{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mac_c00399{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m85_c00399{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m1c_c00399{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.mc3_c00399{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m42_c00399{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.me9_c00399{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.mc2_c00399{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m54_c00399{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.me8_c00399{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m8_c00399{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mb7_c00399{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.mf0_c00399{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.me1_c00399{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m62_c00399{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mde_c00399{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.md4_c00399{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.mc9_c00399{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m5b_c00399{transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);}
.m9d_c00399{transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);}
.m19_c00399{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m74_c00399{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m14_c00399{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m4a_c00399{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m24_c00399{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m8e_c00399{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_c00399{transform:matrix(0.605147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605147,0.000000,0.000000,0.250000,0,0);}
.me2_c00399{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m98_c00399{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m2a_c00399{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m59_c00399{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m93_c00399{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.m2_c00399{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_c00399{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mc4_c00399{transform:matrix(0.638804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638804,0.000000,0.000000,0.250000,0,0);}
.mec_c00399{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m92_c00399{transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);}
.m46_c00399{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m2f_c00399{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m22_c00399{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m28_c00399{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m4c_c00399{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m6b_c00399{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m5e_c00399{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m7b_c00399{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m37_c00399{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m51_c00399{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m5_c00399{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m91_c00399{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.m4e_c00399{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.mb_c00399{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.ma5_c00399{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m82_c00399{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.md1_c00399{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mea_c00399{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.mf3_c00399{transform:matrix(0.798077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.798077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.798077,0.000000,0.000000,0.250000,0,0);}
.m7_c00399{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mbd_c00399{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.med_c00399{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m58_c00399{transform:matrix(0.837340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837340,0.000000,0.000000,0.250000,0,0);}
.m80_c00399{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m97_c00399{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,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;}
}
.ws2_c00399{word-spacing:-16.889280px;}
.ws3_c00399{word-spacing:-7.657674px;}
.ws1_c00399{word-spacing:-3.534228px;}
.ws0_c00399{word-spacing:-0.169581px;}
.ws4_c00399{word-spacing:0.000000px;}
._0_c00399{width:6.522671px;}
.fc0_c00399{color:transparent;}
.fs6_c00399{font-size:3.420000px;}
.fs3_c00399{font-size:18.720000px;}
.fs0_c00399{font-size:20.400000px;}
.fs5_c00399{font-size:25.500000px;}
.fs1_c00399{font-size:28.920000px;}
.fs4_c00399{font-size:32.340000px;}
.fs2_c00399{font-size:35.700000px;}
.fs7_c00399{font-size:39.120000px;}
.y0_c00399{bottom:0.000000px;}
.yd0_c00399{bottom:253.905000px;}
.ycf_c00399{bottom:254.970000px;}
.yc9_c00399{bottom:271.245000px;}
.ycb_c00399{bottom:272.745000px;}
.yca_c00399{bottom:273.405000px;}
.ycc_c00399{bottom:273.630000px;}
.yce_c00399{bottom:274.470000px;}
.ycd_c00399{bottom:274.905000px;}
.yc7_c00399{bottom:290.745000px;}
.yc6_c00399{bottom:292.905000px;}
.yc8_c00399{bottom:294.405000px;}
.yc4_c00399{bottom:310.905000px;}
.yc2_c00399{bottom:311.745000px;}
.yc3_c00399{bottom:313.905000px;}
.yc5_c00399{bottom:314.130000px;}
.ybe_c00399{bottom:330.405000px;}
.ybc_c00399{bottom:331.245000px;}
.yc0_c00399{bottom:332.745000px;}
.ybd_c00399{bottom:333.405000px;}
.ybf_c00399{bottom:333.630000px;}
.yc1_c00399{bottom:334.470000px;}
.yb7_c00399{bottom:349.905000px;}
.yb6_c00399{bottom:350.745000px;}
.yb8_c00399{bottom:350.970000px;}
.yba_c00399{bottom:352.245000px;}
.yb5_c00399{bottom:352.905000px;}
.yb9_c00399{bottom:353.970000px;}
.ybb_c00399{bottom:354.405000px;}
.yb2_c00399{bottom:370.245000px;}
.yb1_c00399{bottom:371.130000px;}
.yb4_c00399{bottom:371.325000px;}
.yb0_c00399{bottom:372.405000px;}
.yb3_c00399{bottom:373.470000px;}
.yab_c00399{bottom:391.245000px;}
.ya9_c00399{bottom:391.905000px;}
.yae_c00399{bottom:392.130000px;}
.yaa_c00399{bottom:392.325000px;}
.yad_c00399{bottom:392.970000px;}
.yac_c00399{bottom:393.405000px;}
.yaf_c00399{bottom:393.630000px;}
.ya7_c00399{bottom:409.905000px;}
.ya5_c00399{bottom:410.745000px;}
.ya6_c00399{bottom:412.905000px;}
.ya8_c00399{bottom:413.970000px;}
.ya3_c00399{bottom:429.825000px;}
.ya2_c00399{bottom:430.245000px;}
.ya1_c00399{bottom:431.130000px;}
.ya0_c00399{bottom:431.325000px;}
.y9e_c00399{bottom:432.405000px;}
.y9f_c00399{bottom:432.630000px;}
.ya4_c00399{bottom:433.470000px;}
.y98_c00399{bottom:448.680000px;}
.y9d_c00399{bottom:448.905000px;}
.y9c_c00399{bottom:450.825000px;}
.y99_c00399{bottom:451.905000px;}
.y9b_c00399{bottom:452.130000px;}
.y9a_c00399{bottom:453.405000px;}
.y97_c00399{bottom:469.245000px;}
.y94_c00399{bottom:470.745000px;}
.y93_c00399{bottom:471.405000px;}
.y96_c00399{bottom:471.630000px;}
.y95_c00399{bottom:472.905000px;}
.y92_c00399{bottom:487.905000px;}
.y8e_c00399{bottom:490.245000px;}
.y8f_c00399{bottom:491.130000px;}
.y91_c00399{bottom:491.325000px;}
.y90_c00399{bottom:492.405000px;}
.y8c_c00399{bottom:507.405000px;}
.y8b_c00399{bottom:508.245000px;}
.y88_c00399{bottom:508.680000px;}
.y89_c00399{bottom:509.745000px;}
.y8d_c00399{bottom:510.630000px;}
.y87_c00399{bottom:511.905000px;}
.y8a_c00399{bottom:512.970000px;}
.y84_c00399{bottom:529.245000px;}
.y86_c00399{bottom:530.970000px;}
.y85_c00399{bottom:531.405000px;}
.y7f_c00399{bottom:548.745000px;}
.y83_c00399{bottom:548.970000px;}
.y80_c00399{bottom:550.905000px;}
.y81_c00399{bottom:551.130000px;}
.y82_c00399{bottom:551.970000px;}
.y7c_c00399{bottom:568.245000px;}
.y7d_c00399{bottom:570.405000px;}
.y7e_c00399{bottom:571.905000px;}
.y78_c00399{bottom:589.245000px;}
.y7b_c00399{bottom:589.470000px;}
.y76_c00399{bottom:589.905000px;}
.y77_c00399{bottom:590.130000px;}
.y79_c00399{bottom:590.325000px;}
.y7a_c00399{bottom:591.405000px;}
.y75_c00399{bottom:607.680000px;}
.y72_c00399{bottom:608.745000px;}
.y74_c00399{bottom:609.825000px;}
.y73_c00399{bottom:610.905000px;}
.y6f_c00399{bottom:626.970000px;}
.y6d_c00399{bottom:627.180000px;}
.y6c_c00399{bottom:628.245000px;}
.y6e_c00399{bottom:629.130000px;}
.y71_c00399{bottom:629.325000px;}
.y6b_c00399{bottom:630.405000px;}
.y70_c00399{bottom:631.470000px;}
.y6a_c00399{bottom:647.745000px;}
.y69_c00399{bottom:648.630000px;}
.y68_c00399{bottom:649.905000px;}
.y64_c00399{bottom:667.245000px;}
.y67_c00399{bottom:668.970000px;}
.y66_c00399{bottom:669.405000px;}
.y65_c00399{bottom:669.420000px;}
.y63_c00399{bottom:687.825000px;}
.y61_c00399{bottom:688.905000px;}
.y62_c00399{bottom:689.970000px;}
.y5d_c00399{bottom:706.245000px;}
.y60_c00399{bottom:707.325000px;}
.y5e_c00399{bottom:708.405000px;}
.y5f_c00399{bottom:708.630000px;}
.y5c_c00399{bottom:709.470000px;}
.y58_c00399{bottom:724.905000px;}
.y59_c00399{bottom:725.745000px;}
.y5a_c00399{bottom:726.825000px;}
.y56_c00399{bottom:727.905000px;}
.y5b_c00399{bottom:728.130000px;}
.y57_c00399{bottom:728.970000px;}
.y55_c00399{bottom:745.245000px;}
.y54_c00399{bottom:747.405000px;}
.y51_c00399{bottom:766.245000px;}
.y52_c00399{bottom:767.130000px;}
.y53_c00399{bottom:768.405000px;}
.y50_c00399{bottom:784.470000px;}
.y4f_c00399{bottom:784.905000px;}
.y4b_c00399{bottom:785.325000px;}
.y4c_c00399{bottom:785.745000px;}
.y4d_c00399{bottom:786.630000px;}
.y4a_c00399{bottom:786.825000px;}
.y4e_c00399{bottom:787.470000px;}
.y49_c00399{bottom:787.905000px;}
.y47_c00399{bottom:804.405000px;}
.y46_c00399{bottom:805.245000px;}
.y45_c00399{bottom:807.405000px;}
.y48_c00399{bottom:807.630000px;}
.y44_c00399{bottom:823.905000px;}
.y41_c00399{bottom:824.745000px;}
.y43_c00399{bottom:825.825000px;}
.y40_c00399{bottom:826.905000px;}
.y42_c00399{bottom:827.130000px;}
.y3c_c00399{bottom:842.970000px;}
.y3e_c00399{bottom:844.245000px;}
.y3b_c00399{bottom:846.405000px;}
.y3d_c00399{bottom:846.630000px;}
.y3f_c00399{bottom:847.470000px;}
.y3a_c00399{bottom:863.745000px;}
.y36_c00399{bottom:864.630000px;}
.y39_c00399{bottom:865.245000px;}
.y37_c00399{bottom:865.905000px;}
.y38_c00399{bottom:866.970000px;}
.y33_c00399{bottom:884.745000px;}
.y35_c00399{bottom:885.405000px;}
.y31_c00399{bottom:885.630000px;}
.y34_c00399{bottom:886.470000px;}
.y32_c00399{bottom:886.905000px;}
.y2f_c00399{bottom:904.245000px;}
.y2c_c00399{bottom:904.905000px;}
.y2d_c00399{bottom:905.130000px;}
.y30_c00399{bottom:905.970000px;}
.y2e_c00399{bottom:906.405000px;}
.y26_c00399{bottom:923.325000px;}
.y28_c00399{bottom:923.745000px;}
.y2a_c00399{bottom:924.825000px;}
.y29_c00399{bottom:925.470000px;}
.y27_c00399{bottom:925.905000px;}
.y2b_c00399{bottom:926.970000px;}
.y25_c00399{bottom:940.905000px;}
.y23_c00399{bottom:942.405000px;}
.y22_c00399{bottom:943.245000px;}
.y24_c00399{bottom:944.970000px;}
.y21_c00399{bottom:945.405000px;}
.y20_c00399{bottom:962.745000px;}
.y1c_c00399{bottom:963.825000px;}
.y1d_c00399{bottom:964.905000px;}
.y1e_c00399{bottom:965.130000px;}
.y1f_c00399{bottom:965.970000px;}
.y18_c00399{bottom:982.245000px;}
.y17_c00399{bottom:983.130000px;}
.y19_c00399{bottom:983.970000px;}
.y1b_c00399{bottom:984.405000px;}
.y1a_c00399{bottom:984.630000px;}
.y15_c00399{bottom:1000.905000px;}
.y12_c00399{bottom:1001.745000px;}
.y11_c00399{bottom:1002.825000px;}
.y16_c00399{bottom:1003.905000px;}
.y13_c00399{bottom:1004.130000px;}
.y14_c00399{bottom:1004.970000px;}
.yf_c00399{bottom:1020.405000px;}
.yb_c00399{bottom:1021.245000px;}
.y10_c00399{bottom:1022.325000px;}
.ye_c00399{bottom:1022.970000px;}
.yc_c00399{bottom:1023.405000px;}
.yd_c00399{bottom:1023.630000px;}
.y7_c00399{bottom:1040.745000px;}
.y8_c00399{bottom:1041.825000px;}
.y9_c00399{bottom:1042.905000px;}
.ya_c00399{bottom:1043.970000px;}
.y4_c00399{bottom:1061.745000px;}
.y3_c00399{bottom:1062.405000px;}
.y5_c00399{bottom:1062.630000px;}
.y6_c00399{bottom:1063.905000px;}
.y2_c00399{bottom:1098.405000px;}
.y1_c00399{bottom:1100.550000px;}
.h7_c00399{height:4.206533px;}
.h4_c00399{height:23.025234px;}
.h1_c00399{height:25.091602px;}
.h6_c00399{height:31.364502px;}
.h2_c00399{height:35.571035px;}
.h5_c00399{height:39.777568px;}
.h3_c00399{height:43.910303px;}
.h8_c00399{height:48.116836px;}
.h0_c00399{height:1335.000000px;}
.w0_c00399{width:880.500000px;}
.x0_c00399{left:0.000000px;}
.xf8_c00399{left:151.500000px;}
.x2_c00399{left:152.580000px;}
.xca_c00399{left:154.080000px;}
.xf1_c00399{left:168.000000px;}
.x3_c00399{left:169.500000px;}
.x10b_c00399{left:177.420000px;}
.xb2_c00399{left:181.080000px;}
.xfe_c00399{left:183.000000px;}
.x76_c00399{left:184.500000px;}
.x2d_c00399{left:186.000000px;}
.xf9_c00399{left:189.420000px;}
.x40_c00399{left:192.000000px;}
.x4_c00399{left:193.080000px;}
.x8a_c00399{left:195.000000px;}
.x99_c00399{left:198.000000px;}
.x10e_c00399{left:201.420000px;}
.xde_c00399{left:202.920000px;}
.x6c_c00399{left:205.920000px;}
.xe_c00399{left:211.080000px;}
.xbe_c00399{left:213.420000px;}
.x55_c00399{left:214.500000px;}
.xff_c00399{left:216.000000px;}
.xd3_c00399{left:220.500000px;}
.x23_c00399{left:222.420000px;}
.xb3_c00399{left:223.500000px;}
.x9c_c00399{left:225.000000px;}
.xec_c00399{left:226.080000px;}
.x102_c00399{left:229.080000px;}
.x95_c00399{left:231.420000px;}
.x6d_c00399{left:232.500000px;}
.x39_c00399{left:234.000000px;}
.xa1_c00399{left:235.500000px;}
.xcb_c00399{left:237.000000px;}
.xe4_c00399{left:238.500000px;}
.x56_c00399{left:240.000000px;}
.xc4_c00399{left:241.500000px;}
.x9d_c00399{left:244.920000px;}
.x77_c00399{left:246.420000px;}
.x41_c00399{left:249.420000px;}
.x109_c00399{left:250.500000px;}
.x8b_c00399{left:252.420000px;}
.x2e_c00399{left:253.500000px;}
.x4d_c00399{left:255.000000px;}
.xad_c00399{left:256.500000px;}
.x62_c00399{left:258.420000px;}
.xbf_c00399{left:259.500000px;}
.x24_c00399{left:260.580000px;}
.x18_c00399{left:262.920000px;}
.xd4_c00399{left:264.000000px;}
.x3a_c00399{left:265.920000px;}
.xb9_c00399{left:268.080000px;}
.x57_c00399{left:270.420000px;}
.x9e_c00399{left:271.500000px;}
.x5_c00399{left:272.775000px;}
.x96_c00399{left:274.920000px;}
.xfa_c00399{left:276.420000px;}
.x86_c00399{left:277.500000px;}
.x8c_c00399{left:280.920000px;}
.xd5_c00399{left:282.000000px;}
.x2f_c00399{left:283.500000px;}
.x42_c00399{left:286.080000px;}
.xf_c00399{left:287.580000px;}
.xa9_c00399{left:289.500000px;}
.xd8_c00399{left:291.000000px;}
.x9a_c00399{left:292.920000px;}
.x19_c00399{left:294.000000px;}
.x3b_c00399{left:295.500000px;}
.x30_c00399{left:296.580000px;}
.xb4_c00399{left:300.000000px;}
.x58_c00399{left:301.920000px;}
.xe9_c00399{left:304.500000px;}
.x4e_c00399{left:308.580000px;}
.x6_c00399{left:310.500000px;}
.x25_c00399{left:312.000000px;}
.x43_c00399{left:316.080000px;}
.x78_c00399{left:319.920000px;}
.x3c_c00399{left:321.000000px;}
.x6e_c00399{left:322.920000px;}
.x7_c00399{left:327.000000px;}
.xaa_c00399{left:328.080000px;}
.xed_c00399{left:329.580000px;}
.xf2_c00399{left:331.920000px;}
.x63_c00399{left:333.000000px;}
.x26_c00399{left:334.080000px;}
.x10_c00399{left:335.580000px;}
.x103_c00399{left:337.080000px;}
.x44_c00399{left:338.580000px;}
.xba_c00399{left:340.275000px;}
.x8d_c00399{left:342.420000px;}
.xc5_c00399{left:343.500000px;}
.xab_c00399{left:345.420000px;}
.x79_c00399{left:347.580000px;}
.x6f_c00399{left:349.080000px;}
.xd9_c00399{left:351.000000px;}
.x80_c00399{left:352.500000px;}
.x100_c00399{left:353.580000px;}
.xa2_c00399{left:357.420000px;}
.x104_c00399{left:358.500000px;}
.x45_c00399{left:360.000000px;}
.xee_c00399{left:361.500000px;}
.x59_c00399{left:363.000000px;}
.x1a_c00399{left:364.500000px;}
.x64_c00399{left:366.000000px;}
.x10a_c00399{left:367.920000px;}
.x7a_c00399{left:369.420000px;}
.xac_c00399{left:370.500000px;}
.xf3_c00399{left:373.500000px;}
.x11_c00399{left:376.080000px;}
.xda_c00399{left:379.500000px;}
.x31_c00399{left:380.580000px;}
.xd6_c00399{left:382.500000px;}
.x9f_c00399{left:385.500000px;}
.x65_c00399{left:386.580000px;}
.xa3_c00399{left:390.000000px;}
.x3d_c00399{left:391.080000px;}
.xcc_c00399{left:392.580000px;}
.x1_c00399{left:396.000000px;}
.x1b_c00399{left:397.080000px;}
.x97_c00399{left:399.000000px;}
.x70_c00399{left:402.000000px;}
.xa4_c00399{left:405.000000px;}
.xae_c00399{left:406.500000px;}
.x8e_c00399{left:408.000000px;}
.x66_c00399{left:409.080000px;}
.xbb_c00399{left:410.580000px;}
.xcd_c00399{left:412.920000px;}
.x5a_c00399{left:414.000000px;}
.x8_c00399{left:418.500000px;}
.x7b_c00399{left:420.000000px;}
.xc6_c00399{left:421.080000px;}
.x46_c00399{left:426.000000px;}
.x12_c00399{left:428.580000px;}
.x87_c00399{left:430.920000px;}
.x4f_c00399{left:432.000000px;}
.x27_c00399{left:433.920000px;}
.xf4_c00399{left:436.500000px;}
.x3e_c00399{left:438.000000px;}
.xce_c00399{left:439.500000px;}
.x1c_c00399{left:440.580000px;}
.xc7_c00399{left:444.420000px;}
.xef_c00399{left:445.500000px;}
.xdb_c00399{left:447.420000px;}
.x13_c00399{left:448.920000px;}
.x8f_c00399{left:453.420000px;}
.xf5_c00399{left:454.500000px;}
.x32_c00399{left:456.000000px;}
.x67_c00399{left:457.920000px;}
.xc0_c00399{left:462.000000px;}
.x5b_c00399{left:463.500000px;}
.x71_c00399{left:464.580000px;}
.x28_c00399{left:466.080000px;}
.xbc_c00399{left:467.580000px;}
.x47_c00399{left:469.920000px;}
.x88_c00399{left:471.000000px;}
.x1d_c00399{left:474.420000px;}
.x14_c00399{left:477.000000px;}
.xe5_c00399{left:478.920000px;}
.xcf_c00399{left:480.000000px;}
.xdc_c00399{left:481.500000px;}
.xaf_c00399{left:482.580000px;}
.x107_c00399{left:484.500000px;}
.xea_c00399{left:486.000000px;}
.x7c_c00399{left:487.080000px;}
.x33_c00399{left:491.580000px;}
.xf6_c00399{left:493.500000px;}
.x5c_c00399{left:494.580000px;}
.xd0_c00399{left:496.500000px;}
.x50_c00399{left:497.580000px;}
.x9_c00399{left:499.080000px;}
.x1e_c00399{left:502.500000px;}
.x3f_c00399{left:504.000000px;}
.x105_c00399{left:505.080000px;}
.xdf_c00399{left:507.000000px;}
.x68_c00399{left:513.000000px;}
.x7d_c00399{left:516.420000px;}
.xa5_c00399{left:517.500000px;}
.x29_c00399{left:520.080000px;}
.x81_c00399{left:522.000000px;}
.x90_c00399{left:526.500000px;}
.x48_c00399{left:528.420000px;}
.xb0_c00399{left:529.920000px;}
.x69_c00399{left:531.000000px;}
.xb5_c00399{left:532.080000px;}
.xa0_c00399{left:536.580000px;}
.xf7_c00399{left:540.000000px;}
.xbd_c00399{left:541.920000px;}
.x5d_c00399{left:544.500000px;}
.x15_c00399{left:547.080000px;}
.x72_c00399{left:550.080000px;}
.xe0_c00399{left:552.000000px;}
.xa_c00399{left:553.500000px;}
.xd1_c00399{left:555.000000px;}
.x49_c00399{left:556.080000px;}
.x7e_c00399{left:557.580000px;}
.xc1_c00399{left:559.080000px;}
.x1f_c00399{left:564.420000px;}
.x10c_c00399{left:567.000000px;}
.xd7_c00399{left:568.920000px;}
.x34_c00399{left:571.080000px;}
.x89_c00399{left:573.000000px;}
.x82_c00399{left:574.500000px;}
.x7f_c00399{left:576.000000px;}
.x106_c00399{left:577.920000px;}
.x101_c00399{left:579.000000px;}
.x73_c00399{left:580.500000px;}
.xeb_c00399{left:582.000000px;}
.x6a_c00399{left:584.580000px;}
.x98_c00399{left:586.500000px;}
.xb_c00399{left:588.000000px;}
.xfb_c00399{left:589.500000px;}
.xa6_c00399{left:591.420000px;}
.x91_c00399{left:592.920000px;}
.x16_c00399{left:595.500000px;}
.xc2_c00399{left:596.580000px;}
.x74_c00399{left:598.080000px;}
.x51_c00399{left:600.000000px;}
.x2a_c00399{left:601.920000px;}
.x83_c00399{left:603.420000px;}
.x6b_c00399{left:604.920000px;}
.x5e_c00399{left:606.000000px;}
.xe1_c00399{left:607.500000px;}
.xb6_c00399{left:613.920000px;}
.xdd_c00399{left:615.420000px;}
.x108_c00399{left:616.500000px;}
.xc3_c00399{left:618.420000px;}
.x20_c00399{left:620.580000px;}
.x5f_c00399{left:624.420000px;}
.xc_c00399{left:625.500000px;}
.xb1_c00399{left:627.000000px;}
.x4a_c00399{left:630.000000px;}
.xe2_c00399{left:633.000000px;}
.xc8_c00399{left:634.500000px;}
.x75_c00399{left:635.580000px;}
.xa7_c00399{left:637.500000px;}
.x84_c00399{left:640.500000px;}
.x92_c00399{left:641.580000px;}
.x35_c00399{left:645.000000px;}
.x52_c00399{left:646.080000px;}
.xe6_c00399{left:648.420000px;}
.x60_c00399{left:651.000000px;}
.x9b_c00399{left:654.000000px;}
.x17_c00399{left:655.500000px;}
.x2b_c00399{left:656.580000px;}
.xfc_c00399{left:661.920000px;}
.xd_c00399{left:664.080000px;}
.x36_c00399{left:665.580000px;}
.x21_c00399{left:667.500000px;}
.xa8_c00399{left:669.420000px;}
.xc9_c00399{left:670.920000px;}
.x10d_c00399{left:672.000000px;}
.xb7_c00399{left:674.580000px;}
.xe8_c00399{left:676.080000px;}
.x53_c00399{left:678.420000px;}
.xe7_c00399{left:681.000000px;}
.x61_c00399{left:683.580000px;}
.xf0_c00399{left:685.500000px;}
.x93_c00399{left:688.080000px;}
.x4b_c00399{left:689.580000px;}
.xd2_c00399{left:691.080000px;}
.x37_c00399{left:695.145000px;}
.x94_c00399{left:700.500000px;}
.xb8_c00399{left:703.275000px;}
.x85_c00399{left:704.580000px;}
.x54_c00399{left:708.000000px;}
.x4c_c00399{left:709.500000px;}
.x38_c00399{left:714.000000px;}
.x22_c00399{left:715.500000px;}
.xe3_c00399{left:717.000000px;}
.xfd_c00399{left:718.500000px;}
.x2c_c00399{left:720.000000px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.ls0_c00399{letter-spacing:0.000000pt;}
.ws2_c00399{word-spacing:-15.012693pt;}
.ws3_c00399{word-spacing:-6.806821pt;}
.ws1_c00399{word-spacing:-3.141536pt;}
.ws0_c00399{word-spacing:-0.150739pt;}
.ws4_c00399{word-spacing:0.000000pt;}
._0_c00399{width:5.797930pt;}
.fs6_c00399{font-size:3.040000pt;}
.fs3_c00399{font-size:16.640000pt;}
.fs0_c00399{font-size:18.133333pt;}
.fs5_c00399{font-size:22.666667pt;}
.fs1_c00399{font-size:25.706667pt;}
.fs4_c00399{font-size:28.746667pt;}
.fs2_c00399{font-size:31.733333pt;}
.fs7_c00399{font-size:34.773333pt;}
.y0_c00399{bottom:0.000000pt;}
.yd0_c00399{bottom:225.693333pt;}
.ycf_c00399{bottom:226.640000pt;}
.yc9_c00399{bottom:241.106667pt;}
.ycb_c00399{bottom:242.440000pt;}
.yca_c00399{bottom:243.026667pt;}
.ycc_c00399{bottom:243.226667pt;}
.yce_c00399{bottom:243.973333pt;}
.ycd_c00399{bottom:244.360000pt;}
.yc7_c00399{bottom:258.440000pt;}
.yc6_c00399{bottom:260.360000pt;}
.yc8_c00399{bottom:261.693333pt;}
.yc4_c00399{bottom:276.360000pt;}
.yc2_c00399{bottom:277.106667pt;}
.yc3_c00399{bottom:279.026667pt;}
.yc5_c00399{bottom:279.226667pt;}
.ybe_c00399{bottom:293.693333pt;}
.ybc_c00399{bottom:294.440000pt;}
.yc0_c00399{bottom:295.773333pt;}
.ybd_c00399{bottom:296.360000pt;}
.ybf_c00399{bottom:296.560000pt;}
.yc1_c00399{bottom:297.306667pt;}
.yb7_c00399{bottom:311.026667pt;}
.yb6_c00399{bottom:311.773333pt;}
.yb8_c00399{bottom:311.973333pt;}
.yba_c00399{bottom:313.106667pt;}
.yb5_c00399{bottom:313.693333pt;}
.yb9_c00399{bottom:314.640000pt;}
.ybb_c00399{bottom:315.026667pt;}
.yb2_c00399{bottom:329.106667pt;}
.yb1_c00399{bottom:329.893333pt;}
.yb4_c00399{bottom:330.066667pt;}
.yb0_c00399{bottom:331.026667pt;}
.yb3_c00399{bottom:331.973333pt;}
.yab_c00399{bottom:347.773333pt;}
.ya9_c00399{bottom:348.360000pt;}
.yae_c00399{bottom:348.560000pt;}
.yaa_c00399{bottom:348.733333pt;}
.yad_c00399{bottom:349.306667pt;}
.yac_c00399{bottom:349.693333pt;}
.yaf_c00399{bottom:349.893333pt;}
.ya7_c00399{bottom:364.360000pt;}
.ya5_c00399{bottom:365.106667pt;}
.ya6_c00399{bottom:367.026667pt;}
.ya8_c00399{bottom:367.973333pt;}
.ya3_c00399{bottom:382.066667pt;}
.ya2_c00399{bottom:382.440000pt;}
.ya1_c00399{bottom:383.226667pt;}
.ya0_c00399{bottom:383.400000pt;}
.y9e_c00399{bottom:384.360000pt;}
.y9f_c00399{bottom:384.560000pt;}
.ya4_c00399{bottom:385.306667pt;}
.y98_c00399{bottom:398.826667pt;}
.y9d_c00399{bottom:399.026667pt;}
.y9c_c00399{bottom:400.733333pt;}
.y99_c00399{bottom:401.693333pt;}
.y9b_c00399{bottom:401.893333pt;}
.y9a_c00399{bottom:403.026667pt;}
.y97_c00399{bottom:417.106667pt;}
.y94_c00399{bottom:418.440000pt;}
.y93_c00399{bottom:419.026667pt;}
.y96_c00399{bottom:419.226667pt;}
.y95_c00399{bottom:420.360000pt;}
.y92_c00399{bottom:433.693333pt;}
.y8e_c00399{bottom:435.773333pt;}
.y8f_c00399{bottom:436.560000pt;}
.y91_c00399{bottom:436.733333pt;}
.y90_c00399{bottom:437.693333pt;}
.y8c_c00399{bottom:451.026667pt;}
.y8b_c00399{bottom:451.773333pt;}
.y88_c00399{bottom:452.160000pt;}
.y89_c00399{bottom:453.106667pt;}
.y8d_c00399{bottom:453.893333pt;}
.y87_c00399{bottom:455.026667pt;}
.y8a_c00399{bottom:455.973333pt;}
.y84_c00399{bottom:470.440000pt;}
.y86_c00399{bottom:471.973333pt;}
.y85_c00399{bottom:472.360000pt;}
.y7f_c00399{bottom:487.773333pt;}
.y83_c00399{bottom:487.973333pt;}
.y80_c00399{bottom:489.693333pt;}
.y81_c00399{bottom:489.893333pt;}
.y82_c00399{bottom:490.640000pt;}
.y7c_c00399{bottom:505.106667pt;}
.y7d_c00399{bottom:507.026667pt;}
.y7e_c00399{bottom:508.360000pt;}
.y78_c00399{bottom:523.773333pt;}
.y7b_c00399{bottom:523.973333pt;}
.y76_c00399{bottom:524.360000pt;}
.y77_c00399{bottom:524.560000pt;}
.y79_c00399{bottom:524.733333pt;}
.y7a_c00399{bottom:525.693333pt;}
.y75_c00399{bottom:540.160000pt;}
.y72_c00399{bottom:541.106667pt;}
.y74_c00399{bottom:542.066667pt;}
.y73_c00399{bottom:543.026667pt;}
.y6f_c00399{bottom:557.306667pt;}
.y6d_c00399{bottom:557.493333pt;}
.y6c_c00399{bottom:558.440000pt;}
.y6e_c00399{bottom:559.226667pt;}
.y71_c00399{bottom:559.400000pt;}
.y6b_c00399{bottom:560.360000pt;}
.y70_c00399{bottom:561.306667pt;}
.y6a_c00399{bottom:575.773333pt;}
.y69_c00399{bottom:576.560000pt;}
.y68_c00399{bottom:577.693333pt;}
.y64_c00399{bottom:593.106667pt;}
.y67_c00399{bottom:594.640000pt;}
.y66_c00399{bottom:595.026667pt;}
.y65_c00399{bottom:595.040000pt;}
.y63_c00399{bottom:611.400000pt;}
.y61_c00399{bottom:612.360000pt;}
.y62_c00399{bottom:613.306667pt;}
.y5d_c00399{bottom:627.773333pt;}
.y60_c00399{bottom:628.733333pt;}
.y5e_c00399{bottom:629.693333pt;}
.y5f_c00399{bottom:629.893333pt;}
.y5c_c00399{bottom:630.640000pt;}
.y58_c00399{bottom:644.360000pt;}
.y59_c00399{bottom:645.106667pt;}
.y5a_c00399{bottom:646.066667pt;}
.y56_c00399{bottom:647.026667pt;}
.y5b_c00399{bottom:647.226667pt;}
.y57_c00399{bottom:647.973333pt;}
.y55_c00399{bottom:662.440000pt;}
.y54_c00399{bottom:664.360000pt;}
.y51_c00399{bottom:681.106667pt;}
.y52_c00399{bottom:681.893333pt;}
.y53_c00399{bottom:683.026667pt;}
.y50_c00399{bottom:697.306667pt;}
.y4f_c00399{bottom:697.693333pt;}
.y4b_c00399{bottom:698.066667pt;}
.y4c_c00399{bottom:698.440000pt;}
.y4d_c00399{bottom:699.226667pt;}
.y4a_c00399{bottom:699.400000pt;}
.y4e_c00399{bottom:699.973333pt;}
.y49_c00399{bottom:700.360000pt;}
.y47_c00399{bottom:715.026667pt;}
.y46_c00399{bottom:715.773333pt;}
.y45_c00399{bottom:717.693333pt;}
.y48_c00399{bottom:717.893333pt;}
.y44_c00399{bottom:732.360000pt;}
.y41_c00399{bottom:733.106667pt;}
.y43_c00399{bottom:734.066667pt;}
.y40_c00399{bottom:735.026667pt;}
.y42_c00399{bottom:735.226667pt;}
.y3c_c00399{bottom:749.306667pt;}
.y3e_c00399{bottom:750.440000pt;}
.y3b_c00399{bottom:752.360000pt;}
.y3d_c00399{bottom:752.560000pt;}
.y3f_c00399{bottom:753.306667pt;}
.y3a_c00399{bottom:767.773333pt;}
.y36_c00399{bottom:768.560000pt;}
.y39_c00399{bottom:769.106667pt;}
.y37_c00399{bottom:769.693333pt;}
.y38_c00399{bottom:770.640000pt;}
.y33_c00399{bottom:786.440000pt;}
.y35_c00399{bottom:787.026667pt;}
.y31_c00399{bottom:787.226667pt;}
.y34_c00399{bottom:787.973333pt;}
.y32_c00399{bottom:788.360000pt;}
.y2f_c00399{bottom:803.773333pt;}
.y2c_c00399{bottom:804.360000pt;}
.y2d_c00399{bottom:804.560000pt;}
.y30_c00399{bottom:805.306667pt;}
.y2e_c00399{bottom:805.693333pt;}
.y26_c00399{bottom:820.733333pt;}
.y28_c00399{bottom:821.106667pt;}
.y2a_c00399{bottom:822.066667pt;}
.y29_c00399{bottom:822.640000pt;}
.y27_c00399{bottom:823.026667pt;}
.y2b_c00399{bottom:823.973333pt;}
.y25_c00399{bottom:836.360000pt;}
.y23_c00399{bottom:837.693333pt;}
.y22_c00399{bottom:838.440000pt;}
.y24_c00399{bottom:839.973333pt;}
.y21_c00399{bottom:840.360000pt;}
.y20_c00399{bottom:855.773333pt;}
.y1c_c00399{bottom:856.733333pt;}
.y1d_c00399{bottom:857.693333pt;}
.y1e_c00399{bottom:857.893333pt;}
.y1f_c00399{bottom:858.640000pt;}
.y18_c00399{bottom:873.106667pt;}
.y17_c00399{bottom:873.893333pt;}
.y19_c00399{bottom:874.640000pt;}
.y1b_c00399{bottom:875.026667pt;}
.y1a_c00399{bottom:875.226667pt;}
.y15_c00399{bottom:889.693333pt;}
.y12_c00399{bottom:890.440000pt;}
.y11_c00399{bottom:891.400000pt;}
.y16_c00399{bottom:892.360000pt;}
.y13_c00399{bottom:892.560000pt;}
.y14_c00399{bottom:893.306667pt;}
.yf_c00399{bottom:907.026667pt;}
.yb_c00399{bottom:907.773333pt;}
.y10_c00399{bottom:908.733333pt;}
.ye_c00399{bottom:909.306667pt;}
.yc_c00399{bottom:909.693333pt;}
.yd_c00399{bottom:909.893333pt;}
.y7_c00399{bottom:925.106667pt;}
.y8_c00399{bottom:926.066667pt;}
.y9_c00399{bottom:927.026667pt;}
.ya_c00399{bottom:927.973333pt;}
.y4_c00399{bottom:943.773333pt;}
.y3_c00399{bottom:944.360000pt;}
.y5_c00399{bottom:944.560000pt;}
.y6_c00399{bottom:945.693333pt;}
.y2_c00399{bottom:976.360000pt;}
.y1_c00399{bottom:978.266667pt;}
.h7_c00399{height:3.739141pt;}
.h4_c00399{height:20.466875pt;}
.h1_c00399{height:22.303646pt;}
.h6_c00399{height:27.879557pt;}
.h2_c00399{height:31.618698pt;}
.h5_c00399{height:35.357839pt;}
.h3_c00399{height:39.031380pt;}
.h8_c00399{height:42.770521pt;}
.h0_c00399{height:1186.666667pt;}
.w0_c00399{width:782.666667pt;}
.x0_c00399{left:0.000000pt;}
.xf8_c00399{left:134.666667pt;}
.x2_c00399{left:135.626667pt;}
.xca_c00399{left:136.960000pt;}
.xf1_c00399{left:149.333333pt;}
.x3_c00399{left:150.666667pt;}
.x10b_c00399{left:157.706667pt;}
.xb2_c00399{left:160.960000pt;}
.xfe_c00399{left:162.666667pt;}
.x76_c00399{left:164.000000pt;}
.x2d_c00399{left:165.333333pt;}
.xf9_c00399{left:168.373333pt;}
.x40_c00399{left:170.666667pt;}
.x4_c00399{left:171.626667pt;}
.x8a_c00399{left:173.333333pt;}
.x99_c00399{left:176.000000pt;}
.x10e_c00399{left:179.040000pt;}
.xde_c00399{left:180.373333pt;}
.x6c_c00399{left:183.040000pt;}
.xe_c00399{left:187.626667pt;}
.xbe_c00399{left:189.706667pt;}
.x55_c00399{left:190.666667pt;}
.xff_c00399{left:192.000000pt;}
.xd3_c00399{left:196.000000pt;}
.x23_c00399{left:197.706667pt;}
.xb3_c00399{left:198.666667pt;}
.x9c_c00399{left:200.000000pt;}
.xec_c00399{left:200.960000pt;}
.x102_c00399{left:203.626667pt;}
.x95_c00399{left:205.706667pt;}
.x6d_c00399{left:206.666667pt;}
.x39_c00399{left:208.000000pt;}
.xa1_c00399{left:209.333333pt;}
.xcb_c00399{left:210.666667pt;}
.xe4_c00399{left:212.000000pt;}
.x56_c00399{left:213.333333pt;}
.xc4_c00399{left:214.666667pt;}
.x9d_c00399{left:217.706667pt;}
.x77_c00399{left:219.040000pt;}
.x41_c00399{left:221.706667pt;}
.x109_c00399{left:222.666667pt;}
.x8b_c00399{left:224.373333pt;}
.x2e_c00399{left:225.333333pt;}
.x4d_c00399{left:226.666667pt;}
.xad_c00399{left:228.000000pt;}
.x62_c00399{left:229.706667pt;}
.xbf_c00399{left:230.666667pt;}
.x24_c00399{left:231.626667pt;}
.x18_c00399{left:233.706667pt;}
.xd4_c00399{left:234.666667pt;}
.x3a_c00399{left:236.373333pt;}
.xb9_c00399{left:238.293333pt;}
.x57_c00399{left:240.373333pt;}
.x9e_c00399{left:241.333333pt;}
.x5_c00399{left:242.466667pt;}
.x96_c00399{left:244.373333pt;}
.xfa_c00399{left:245.706667pt;}
.x86_c00399{left:246.666667pt;}
.x8c_c00399{left:249.706667pt;}
.xd5_c00399{left:250.666667pt;}
.x2f_c00399{left:252.000000pt;}
.x42_c00399{left:254.293333pt;}
.xf_c00399{left:255.626667pt;}
.xa9_c00399{left:257.333333pt;}
.xd8_c00399{left:258.666667pt;}
.x9a_c00399{left:260.373333pt;}
.x19_c00399{left:261.333333pt;}
.x3b_c00399{left:262.666667pt;}
.x30_c00399{left:263.626667pt;}
.xb4_c00399{left:266.666667pt;}
.x58_c00399{left:268.373333pt;}
.xe9_c00399{left:270.666667pt;}
.x4e_c00399{left:274.293333pt;}
.x6_c00399{left:276.000000pt;}
.x25_c00399{left:277.333333pt;}
.x43_c00399{left:280.960000pt;}
.x78_c00399{left:284.373333pt;}
.x3c_c00399{left:285.333333pt;}
.x6e_c00399{left:287.040000pt;}
.x7_c00399{left:290.666667pt;}
.xaa_c00399{left:291.626667pt;}
.xed_c00399{left:292.960000pt;}
.xf2_c00399{left:295.040000pt;}
.x63_c00399{left:296.000000pt;}
.x26_c00399{left:296.960000pt;}
.x10_c00399{left:298.293333pt;}
.x103_c00399{left:299.626667pt;}
.x44_c00399{left:300.960000pt;}
.xba_c00399{left:302.466667pt;}
.x8d_c00399{left:304.373333pt;}
.xc5_c00399{left:305.333333pt;}
.xab_c00399{left:307.040000pt;}
.x79_c00399{left:308.960000pt;}
.x6f_c00399{left:310.293333pt;}
.xd9_c00399{left:312.000000pt;}
.x80_c00399{left:313.333333pt;}
.x100_c00399{left:314.293333pt;}
.xa2_c00399{left:317.706667pt;}
.x104_c00399{left:318.666667pt;}
.x45_c00399{left:320.000000pt;}
.xee_c00399{left:321.333333pt;}
.x59_c00399{left:322.666667pt;}
.x1a_c00399{left:324.000000pt;}
.x64_c00399{left:325.333333pt;}
.x10a_c00399{left:327.040000pt;}
.x7a_c00399{left:328.373333pt;}
.xac_c00399{left:329.333333pt;}
.xf3_c00399{left:332.000000pt;}
.x11_c00399{left:334.293333pt;}
.xda_c00399{left:337.333333pt;}
.x31_c00399{left:338.293333pt;}
.xd6_c00399{left:340.000000pt;}
.x9f_c00399{left:342.666667pt;}
.x65_c00399{left:343.626667pt;}
.xa3_c00399{left:346.666667pt;}
.x3d_c00399{left:347.626667pt;}
.xcc_c00399{left:348.960000pt;}
.x1_c00399{left:352.000000pt;}
.x1b_c00399{left:352.960000pt;}
.x97_c00399{left:354.666667pt;}
.x70_c00399{left:357.333333pt;}
.xa4_c00399{left:360.000000pt;}
.xae_c00399{left:361.333333pt;}
.x8e_c00399{left:362.666667pt;}
.x66_c00399{left:363.626667pt;}
.xbb_c00399{left:364.960000pt;}
.xcd_c00399{left:367.040000pt;}
.x5a_c00399{left:368.000000pt;}
.x8_c00399{left:372.000000pt;}
.x7b_c00399{left:373.333333pt;}
.xc6_c00399{left:374.293333pt;}
.x46_c00399{left:378.666667pt;}
.x12_c00399{left:380.960000pt;}
.x87_c00399{left:383.040000pt;}
.x4f_c00399{left:384.000000pt;}
.x27_c00399{left:385.706667pt;}
.xf4_c00399{left:388.000000pt;}
.x3e_c00399{left:389.333333pt;}
.xce_c00399{left:390.666667pt;}
.x1c_c00399{left:391.626667pt;}
.xc7_c00399{left:395.040000pt;}
.xef_c00399{left:396.000000pt;}
.xdb_c00399{left:397.706667pt;}
.x13_c00399{left:399.040000pt;}
.x8f_c00399{left:403.040000pt;}
.xf5_c00399{left:404.000000pt;}
.x32_c00399{left:405.333333pt;}
.x67_c00399{left:407.040000pt;}
.xc0_c00399{left:410.666667pt;}
.x5b_c00399{left:412.000000pt;}
.x71_c00399{left:412.960000pt;}
.x28_c00399{left:414.293333pt;}
.xbc_c00399{left:415.626667pt;}
.x47_c00399{left:417.706667pt;}
.x88_c00399{left:418.666667pt;}
.x1d_c00399{left:421.706667pt;}
.x14_c00399{left:424.000000pt;}
.xe5_c00399{left:425.706667pt;}
.xcf_c00399{left:426.666667pt;}
.xdc_c00399{left:428.000000pt;}
.xaf_c00399{left:428.960000pt;}
.x107_c00399{left:430.666667pt;}
.xea_c00399{left:432.000000pt;}
.x7c_c00399{left:432.960000pt;}
.x33_c00399{left:436.960000pt;}
.xf6_c00399{left:438.666667pt;}
.x5c_c00399{left:439.626667pt;}
.xd0_c00399{left:441.333333pt;}
.x50_c00399{left:442.293333pt;}
.x9_c00399{left:443.626667pt;}
.x1e_c00399{left:446.666667pt;}
.x3f_c00399{left:448.000000pt;}
.x105_c00399{left:448.960000pt;}
.xdf_c00399{left:450.666667pt;}
.x68_c00399{left:456.000000pt;}
.x7d_c00399{left:459.040000pt;}
.xa5_c00399{left:460.000000pt;}
.x29_c00399{left:462.293333pt;}
.x81_c00399{left:464.000000pt;}
.x90_c00399{left:468.000000pt;}
.x48_c00399{left:469.706667pt;}
.xb0_c00399{left:471.040000pt;}
.x69_c00399{left:472.000000pt;}
.xb5_c00399{left:472.960000pt;}
.xa0_c00399{left:476.960000pt;}
.xf7_c00399{left:480.000000pt;}
.xbd_c00399{left:481.706667pt;}
.x5d_c00399{left:484.000000pt;}
.x15_c00399{left:486.293333pt;}
.x72_c00399{left:488.960000pt;}
.xe0_c00399{left:490.666667pt;}
.xa_c00399{left:492.000000pt;}
.xd1_c00399{left:493.333333pt;}
.x49_c00399{left:494.293333pt;}
.x7e_c00399{left:495.626667pt;}
.xc1_c00399{left:496.960000pt;}
.x1f_c00399{left:501.706667pt;}
.x10c_c00399{left:504.000000pt;}
.xd7_c00399{left:505.706667pt;}
.x34_c00399{left:507.626667pt;}
.x89_c00399{left:509.333333pt;}
.x82_c00399{left:510.666667pt;}
.x7f_c00399{left:512.000000pt;}
.x106_c00399{left:513.706667pt;}
.x101_c00399{left:514.666667pt;}
.x73_c00399{left:516.000000pt;}
.xeb_c00399{left:517.333333pt;}
.x6a_c00399{left:519.626667pt;}
.x98_c00399{left:521.333333pt;}
.xb_c00399{left:522.666667pt;}
.xfb_c00399{left:524.000000pt;}
.xa6_c00399{left:525.706667pt;}
.x91_c00399{left:527.040000pt;}
.x16_c00399{left:529.333333pt;}
.xc2_c00399{left:530.293333pt;}
.x74_c00399{left:531.626667pt;}
.x51_c00399{left:533.333333pt;}
.x2a_c00399{left:535.040000pt;}
.x83_c00399{left:536.373333pt;}
.x6b_c00399{left:537.706667pt;}
.x5e_c00399{left:538.666667pt;}
.xe1_c00399{left:540.000000pt;}
.xb6_c00399{left:545.706667pt;}
.xdd_c00399{left:547.040000pt;}
.x108_c00399{left:548.000000pt;}
.xc3_c00399{left:549.706667pt;}
.x20_c00399{left:551.626667pt;}
.x5f_c00399{left:555.040000pt;}
.xc_c00399{left:556.000000pt;}
.xb1_c00399{left:557.333333pt;}
.x4a_c00399{left:560.000000pt;}
.xe2_c00399{left:562.666667pt;}
.xc8_c00399{left:564.000000pt;}
.x75_c00399{left:564.960000pt;}
.xa7_c00399{left:566.666667pt;}
.x84_c00399{left:569.333333pt;}
.x92_c00399{left:570.293333pt;}
.x35_c00399{left:573.333333pt;}
.x52_c00399{left:574.293333pt;}
.xe6_c00399{left:576.373333pt;}
.x60_c00399{left:578.666667pt;}
.x9b_c00399{left:581.333333pt;}
.x17_c00399{left:582.666667pt;}
.x2b_c00399{left:583.626667pt;}
.xfc_c00399{left:588.373333pt;}
.xd_c00399{left:590.293333pt;}
.x36_c00399{left:591.626667pt;}
.x21_c00399{left:593.333333pt;}
.xa8_c00399{left:595.040000pt;}
.xc9_c00399{left:596.373333pt;}
.x10d_c00399{left:597.333333pt;}
.xb7_c00399{left:599.626667pt;}
.xe8_c00399{left:600.960000pt;}
.x53_c00399{left:603.040000pt;}
.xe7_c00399{left:605.333333pt;}
.x61_c00399{left:607.626667pt;}
.xf0_c00399{left:609.333333pt;}
.x93_c00399{left:611.626667pt;}
.x4b_c00399{left:612.960000pt;}
.xd2_c00399{left:614.293333pt;}
.x37_c00399{left:617.906667pt;}
.x94_c00399{left:622.666667pt;}
.xb8_c00399{left:625.133333pt;}
.x85_c00399{left:626.293333pt;}
.x54_c00399{left:629.333333pt;}
.x4c_c00399{left:630.666667pt;}
.x38_c00399{left:634.666667pt;}
.x22_c00399{left:636.000000pt;}
.xe3_c00399{left:637.333333pt;}
.xfd_c00399{left:638.666667pt;}
.x2c_c00399{left:640.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_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_3779d5b5edbef58e0518c117.woff2')format("woff");}.ff1_c00400{font-family:ff1_c00400;line-height:1.688965;font-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_c00400{transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);}
.m4a_c00400{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m24_c00400{transform:matrix(0.343175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343175,0.000000,0.000000,0.250000,0,0);}
.m29_c00400{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m21_c00400{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m32_c00400{transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);}
.m68_c00400{transform:matrix(0.384202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384202,0.000000,0.000000,0.250000,0,0);}
.m26_c00400{transform:matrix(0.385736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385736,0.000000,0.000000,0.250000,0,0);}
.m54_c00400{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m56_c00400{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m4f_c00400{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m6_c00400{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m60_c00400{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m84_c00400{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m48_c00400{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m14_c00400{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);}
.m82_c00400{transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);}
.m51_c00400{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m1d_c00400{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m5b_c00400{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m20_c00400{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m58_c00400{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m66_c00400{transform:matrix(0.410660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410660,0.000000,0.000000,0.250000,0,0);}
.m5c_c00400{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m30_c00400{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m73_c00400{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.m4e_c00400{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m50_c00400{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m10_c00400{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m19_c00400{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m13_c00400{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mc_c00400{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m5d_c00400{transform:matrix(0.436733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436733,0.000000,0.000000,0.250000,0,0);}
.m5f_c00400{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m6d_c00400{transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);}
.m49_c00400{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m3_c00400{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m76_c00400{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m15_c00400{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m16_c00400{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m1b_c00400{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m31_c00400{transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);}
.m80_c00400{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m7d_c00400{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m7_c00400{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m59_c00400{transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);}
.m6a_c00400{transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);}
.m34_c00400{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m37_c00400{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m81_c00400{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m55_c00400{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m1_c00400{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m3b_c00400{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m52_c00400{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m83_c00400{transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);}
.m28_c00400{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_c00400{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m3d_c00400{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m61_c00400{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m11_c00400{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m2a_c00400{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m6f_c00400{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m4b_c00400{transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);}
.m12_c00400{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m2e_c00400{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m7f_c00400{transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);}
.m35_c00400{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m5a_c00400{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m69_c00400{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m3e_c00400{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m23_c00400{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m2b_c00400{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m47_c00400{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m17_c00400{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m40_c00400{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m25_c00400{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m5_c00400{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m2_c00400{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m67_c00400{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m7a_c00400{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m64_c00400{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m53_c00400{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m36_c00400{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m71_c00400{transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);}
.m3a_c00400{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m62_c00400{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m72_c00400{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m4_c00400{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m8_c00400{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m33_c00400{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m3f_c00400{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m42_c00400{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m46_c00400{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m9_c00400{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m3c_c00400{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m4c_c00400{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m18_c00400{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m74_c00400{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.md_c00400{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m22_c00400{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m1c_c00400{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m43_c00400{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.mb_c00400{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m79_c00400{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m1f_c00400{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m6b_c00400{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.m5e_c00400{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.m57_c00400{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m0_c00400{transform:matrix(0.605147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605147,0.000000,0.000000,0.250000,0,0);}
.m4d_c00400{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.m2c_c00400{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m1a_c00400{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m41_c00400{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m70_c00400{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);}
.me_c00400{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m7e_c00400{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m78_c00400{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m77_c00400{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);}
.m7b_c00400{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);}
.m38_c00400{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m6c_c00400{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m1e_c00400{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m6e_c00400{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.m39_c00400{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m75_c00400{transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);}
.m7c_c00400{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_c00400{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m63_c00400{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.ma_c00400{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m65_c00400{transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);}
.m2d_c00400{transform:matrix(0.772059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772059,0.000000,0.000000,0.250000,0,0);}
.mf_c00400{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m2f_c00400{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
.fs7_c00400{font-size:3.420000px;}
.fs3_c00400{font-size:18.720000px;}
.fs0_c00400{font-size:20.400000px;}
.fs4_c00400{font-size:25.500000px;}
.fs1_c00400{font-size:28.920000px;}
.fs5_c00400{font-size:32.340000px;}
.fs2_c00400{font-size:35.700000px;}
.fs6_c00400{font-size:39.120000px;}
.y0_c00400{bottom:0.000000px;}
.y4a_c00400{bottom:238.905000px;}
.y49_c00400{bottom:240.180000px;}
.y47_c00400{bottom:241.905000px;}
.y48_c00400{bottom:242.970000px;}
.y4b_c00400{bottom:243.405000px;}
.y41_c00400{bottom:258.405000px;}
.y44_c00400{bottom:259.245000px;}
.y46_c00400{bottom:259.680000px;}
.y42_c00400{bottom:261.405000px;}
.y45_c00400{bottom:261.630000px;}
.y43_c00400{bottom:262.905000px;}
.y3e_c00400{bottom:280.245000px;}
.y40_c00400{bottom:281.970000px;}
.y3f_c00400{bottom:282.405000px;}
.y3d_c00400{bottom:298.680000px;}
.y3c_c00400{bottom:298.905000px;}
.y3a_c00400{bottom:299.745000px;}
.y3b_c00400{bottom:300.825000px;}
.y39_c00400{bottom:301.470000px;}
.y38_c00400{bottom:301.905000px;}
.y35_c00400{bottom:319.245000px;}
.y37_c00400{bottom:320.325000px;}
.y34_c00400{bottom:321.405000px;}
.y36_c00400{bottom:322.470000px;}
.y2f_c00400{bottom:338.745000px;}
.y33_c00400{bottom:339.405000px;}
.y30_c00400{bottom:339.825000px;}
.y32_c00400{bottom:340.470000px;}
.y2e_c00400{bottom:340.905000px;}
.y31_c00400{bottom:341.970000px;}
.y2c_c00400{bottom:358.245000px;}
.y2a_c00400{bottom:358.680000px;}
.y2d_c00400{bottom:359.325000px;}
.y26_c00400{bottom:359.745000px;}
.y2b_c00400{bottom:360.405000px;}
.y29_c00400{bottom:360.630000px;}
.y28_c00400{bottom:361.470000px;}
.y27_c00400{bottom:361.905000px;}
.y25_c00400{bottom:379.905000px;}
.y24_c00400{bottom:380.970000px;}
.y23_c00400{bottom:381.405000px;}
.y1f_c00400{bottom:398.745000px;}
.y22_c00400{bottom:399.405000px;}
.y21_c00400{bottom:399.630000px;}
.y20_c00400{bottom:400.470000px;}
.y1e_c00400{bottom:400.905000px;}
.y1d_c00400{bottom:417.180000px;}
.y1c_c00400{bottom:418.245000px;}
.y1a_c00400{bottom:420.405000px;}
.y1b_c00400{bottom:420.420000px;}
.y18_c00400{bottom:436.905000px;}
.y15_c00400{bottom:437.745000px;}
.y19_c00400{bottom:439.050000px;}
.y16_c00400{bottom:439.905000px;}
.y17_c00400{bottom:440.970000px;}
.y14_c00400{bottom:457.245000px;}
.y12_c00400{bottom:457.680000px;}
.y13_c00400{bottom:459.405000px;}
.yf_c00400{bottom:476.745000px;}
.y10_c00400{bottom:478.470000px;}
.ye_c00400{bottom:478.905000px;}
.y11_c00400{bottom:479.970000px;}
.yb_c00400{bottom:496.245000px;}
.yd_c00400{bottom:497.325000px;}
.y8_c00400{bottom:497.745000px;}
.ya_c00400{bottom:498.405000px;}
.yc_c00400{bottom:499.470000px;}
.y9_c00400{bottom:499.905000px;}
.y5_c00400{bottom:514.905000px;}
.y7_c00400{bottom:517.050000px;}
.y4_c00400{bottom:517.245000px;}
.y6_c00400{bottom:518.130000px;}
.y3_c00400{bottom:519.405000px;}
.y56_c00400{bottom:539.550000px;}
.y50_c00400{bottom:539.970000px;}
.y57_c00400{bottom:540.405000px;}
.y51_c00400{bottom:540.825000px;}
.y4f_c00400{bottom:541.050000px;}
.y54_c00400{bottom:541.470000px;}
.y55_c00400{bottom:541.905000px;}
.y53_c00400{bottom:542.550000px;}
.y52_c00400{bottom:542.970000px;}
.y59_c00400{bottom:554.970000px;}
.y4c_c00400{bottom:555.405000px;}
.y5a_c00400{bottom:555.825000px;}
.y4e_c00400{bottom:556.470000px;}
.y58_c00400{bottom:556.905000px;}
.y4d_c00400{bottom:557.550000px;}
.y2_c00400{bottom:1099.905000px;}
.y1_c00400{bottom:1102.050000px;}
.h8_c00400{height:4.206533px;}
.h4_c00400{height:23.025234px;}
.h1_c00400{height:25.091602px;}
.h5_c00400{height:31.364502px;}
.h2_c00400{height:35.571035px;}
.h6_c00400{height:39.777568px;}
.h3_c00400{height:43.910303px;}
.h7_c00400{height:48.116836px;}
.h0_c00400{height:1335.000000px;}
.w0_c00400{width:880.500000px;}
.x0_c00400{left:0.000000px;}
.x21_c00400{left:149.580000px;}
.x11_c00400{left:151.080000px;}
.x7a_c00400{left:152.580000px;}
.x3_c00400{left:166.500000px;}
.x42_c00400{left:178.920000px;}
.x22_c00400{left:181.500000px;}
.x64_c00400{left:184.080000px;}
.x12_c00400{left:190.500000px;}
.x80_c00400{left:195.000000px;}
.x4_c00400{left:198.000000px;}
.x36_c00400{left:201.420000px;}
.x5a_c00400{left:202.500000px;}
.x8a_c00400{left:204.000000px;}
.x65_c00400{left:206.580000px;}
.x50_c00400{left:209.580000px;}
.x43_c00400{left:211.080000px;}
.x5b_c00400{left:220.080000px;}
.x74_c00400{left:222.645000px;}
.x13_c00400{left:227.580000px;}
.x2c_c00400{left:229.080000px;}
.x97_c00400{left:231.000000px;}
.x5_c00400{left:232.080000px;}
.x81_c00400{left:235.500000px;}
.x3c_c00400{left:237.000000px;}
.x37_c00400{left:244.080000px;}
.x98_c00400{left:246.000000px;}
.x51_c00400{left:249.000000px;}
.x2d_c00400{left:250.920000px;}
.x23_c00400{left:255.000000px;}
.x3d_c00400{left:256.500000px;}
.x14_c00400{left:258.000000px;}
.x44_c00400{left:262.500000px;}
.x5c_c00400{left:265.500000px;}
.x7b_c00400{left:271.080000px;}
.x66_c00400{left:273.645000px;}
.x24_c00400{left:277.920000px;}
.x2e_c00400{left:280.080000px;}
.x8b_c00400{left:292.500000px;}
.x99_c00400{left:294.420000px;}
.x15_c00400{left:297.000000px;}
.x82_c00400{left:298.080000px;}
.x6_c00400{left:299.580000px;}
.x67_c00400{left:304.920000px;}
.x25_c00400{left:306.000000px;}
.x75_c00400{left:307.500000px;}
.x6f_c00400{left:310.080000px;}
.x45_c00400{left:313.500000px;}
.x83_c00400{left:318.420000px;}
.x5d_c00400{left:319.500000px;}
.x2f_c00400{left:328.500000px;}
.x16_c00400{left:330.420000px;}
.x46_c00400{left:334.080000px;}
.x5e_c00400{left:338.580000px;}
.x84_c00400{left:346.080000px;}
.x38_c00400{left:347.580000px;}
.x7c_c00400{left:349.920000px;}
.x52_c00400{left:352.920000px;}
.x47_c00400{left:355.500000px;}
.x17_c00400{left:367.500000px;}
.x7_c00400{left:369.000000px;}
.x68_c00400{left:370.500000px;}
.x70_c00400{left:372.000000px;}
.x39_c00400{left:374.580000px;}
.x53_c00400{left:380.580000px;}
.x9a_c00400{left:384.420000px;}
.x3e_c00400{left:387.000000px;}
.x7d_c00400{left:390.000000px;}
.x1_c00400{left:393.000000px;}
.x18_c00400{left:399.000000px;}
.x30_c00400{left:403.500000px;}
.x3a_c00400{left:404.580000px;}
.x5f_c00400{left:408.000000px;}
.x26_c00400{left:411.420000px;}
.x69_c00400{left:412.500000px;}
.x91_c00400{left:414.000000px;}
.x48_c00400{left:418.920000px;}
.x54_c00400{left:424.500000px;}
.x19_c00400{left:428.580000px;}
.x3b_c00400{left:432.000000px;}
.x60_c00400{left:433.080000px;}
.x8c_c00400{left:434.580000px;}
.x8_c00400{left:436.500000px;}
.x1a_c00400{left:447.420000px;}
.x9_c00400{left:451.920000px;}
.x27_c00400{left:456.000000px;}
.x49_c00400{left:457.080000px;}
.x8d_c00400{left:463.500000px;}
.x85_c00400{left:469.080000px;}
.x1b_c00400{left:473.580000px;}
.x92_c00400{left:475.500000px;}
.x7e_c00400{left:476.580000px;}
.x28_c00400{left:481.500000px;}
.x76_c00400{left:483.000000px;}
.x8e_c00400{left:484.080000px;}
.x55_c00400{left:485.580000px;}
.x6a_c00400{left:487.500000px;}
.xa_c00400{left:499.080000px;}
.x86_c00400{left:501.420000px;}
.x77_c00400{left:504.000000px;}
.x9b_c00400{left:505.500000px;}
.x6b_c00400{left:508.500000px;}
.x1c_c00400{left:514.080000px;}
.x9c_c00400{left:520.500000px;}
.x8f_c00400{left:523.500000px;}
.x3f_c00400{left:526.080000px;}
.xb_c00400{left:529.500000px;}
.x4a_c00400{left:532.500000px;}
.x56_c00400{left:535.500000px;}
.x87_c00400{left:538.500000px;}
.x93_c00400{left:539.580000px;}
.x61_c00400{left:549.420000px;}
.x71_c00400{left:550.500000px;}
.x40_c00400{left:552.000000px;}
.x9d_c00400{left:553.500000px;}
.x4b_c00400{left:555.420000px;}
.xc_c00400{left:556.500000px;}
.x88_c00400{left:561.000000px;}
.x31_c00400{left:564.420000px;}
.x57_c00400{left:568.080000px;}
.xd_c00400{left:570.420000px;}
.x29_c00400{left:572.580000px;}
.x62_c00400{left:575.145000px;}
.x4c_c00400{left:580.500000px;}
.x90_c00400{left:581.580000px;}
.x78_c00400{left:583.080000px;}
.x1d_c00400{left:585.420000px;}
.x32_c00400{left:592.920000px;}
.x94_c00400{left:595.920000px;}
.x9e_c00400{left:597.000000px;}
.x6c_c00400{left:598.080000px;}
.x4d_c00400{left:600.000000px;}
.x63_c00400{left:604.080000px;}
.xe_c00400{left:607.920000px;}
.x4e_c00400{left:611.580000px;}
.x58_c00400{left:621.000000px;}
.x2a_c00400{left:622.920000px;}
.x33_c00400{left:633.420000px;}
.x1e_c00400{left:634.500000px;}
.x72_c00400{left:640.500000px;}
.x6d_c00400{left:644.580000px;}
.x2b_c00400{left:648.420000px;}
.x1f_c00400{left:651.000000px;}
.xf_c00400{left:655.080000px;}
.x9f_c00400{left:661.500000px;}
.x73_c00400{left:663.000000px;}
.x79_c00400{left:666.420000px;}
.x7f_c00400{left:670.920000px;}
.x10_c00400{left:675.855000px;}
.x20_c00400{left:677.580000px;}
.x95_c00400{left:679.920000px;}
.x4f_c00400{left:682.500000px;}
.x34_c00400{left:685.080000px;}
.x59_c00400{left:686.580000px;}
.x89_c00400{left:691.500000px;}
.x96_c00400{left:696.000000px;}
.x2_c00400{left:701.580000px;}
.x35_c00400{left:706.920000px;}
.x6e_c00400{left:708.000000px;}
.x41_c00400{left:718.500000px;}
@media print{
.v0_c00400{vertical-align:0.000000pt;}
.ls0_c00400{letter-spacing:0.000000pt;}
.ws0_c00400{word-spacing:0.000000pt;}
.fs7_c00400{font-size:3.040000pt;}
.fs3_c00400{font-size:16.640000pt;}
.fs0_c00400{font-size:18.133333pt;}
.fs4_c00400{font-size:22.666667pt;}
.fs1_c00400{font-size:25.706667pt;}
.fs5_c00400{font-size:28.746667pt;}
.fs2_c00400{font-size:31.733333pt;}
.fs6_c00400{font-size:34.773333pt;}
.y0_c00400{bottom:0.000000pt;}
.y4a_c00400{bottom:212.360000pt;}
.y49_c00400{bottom:213.493333pt;}
.y47_c00400{bottom:215.026667pt;}
.y48_c00400{bottom:215.973333pt;}
.y4b_c00400{bottom:216.360000pt;}
.y41_c00400{bottom:229.693333pt;}
.y44_c00400{bottom:230.440000pt;}
.y46_c00400{bottom:230.826667pt;}
.y42_c00400{bottom:232.360000pt;}
.y45_c00400{bottom:232.560000pt;}
.y43_c00400{bottom:233.693333pt;}
.y3e_c00400{bottom:249.106667pt;}
.y40_c00400{bottom:250.640000pt;}
.y3f_c00400{bottom:251.026667pt;}
.y3d_c00400{bottom:265.493333pt;}
.y3c_c00400{bottom:265.693333pt;}
.y3a_c00400{bottom:266.440000pt;}
.y3b_c00400{bottom:267.400000pt;}
.y39_c00400{bottom:267.973333pt;}
.y38_c00400{bottom:268.360000pt;}
.y35_c00400{bottom:283.773333pt;}
.y37_c00400{bottom:284.733333pt;}
.y34_c00400{bottom:285.693333pt;}
.y36_c00400{bottom:286.640000pt;}
.y2f_c00400{bottom:301.106667pt;}
.y33_c00400{bottom:301.693333pt;}
.y30_c00400{bottom:302.066667pt;}
.y32_c00400{bottom:302.640000pt;}
.y2e_c00400{bottom:303.026667pt;}
.y31_c00400{bottom:303.973333pt;}
.y2c_c00400{bottom:318.440000pt;}
.y2a_c00400{bottom:318.826667pt;}
.y2d_c00400{bottom:319.400000pt;}
.y26_c00400{bottom:319.773333pt;}
.y2b_c00400{bottom:320.360000pt;}
.y29_c00400{bottom:320.560000pt;}
.y28_c00400{bottom:321.306667pt;}
.y27_c00400{bottom:321.693333pt;}
.y25_c00400{bottom:337.693333pt;}
.y24_c00400{bottom:338.640000pt;}
.y23_c00400{bottom:339.026667pt;}
.y1f_c00400{bottom:354.440000pt;}
.y22_c00400{bottom:355.026667pt;}
.y21_c00400{bottom:355.226667pt;}
.y20_c00400{bottom:355.973333pt;}
.y1e_c00400{bottom:356.360000pt;}
.y1d_c00400{bottom:370.826667pt;}
.y1c_c00400{bottom:371.773333pt;}
.y1a_c00400{bottom:373.693333pt;}
.y1b_c00400{bottom:373.706667pt;}
.y18_c00400{bottom:388.360000pt;}
.y15_c00400{bottom:389.106667pt;}
.y19_c00400{bottom:390.266667pt;}
.y16_c00400{bottom:391.026667pt;}
.y17_c00400{bottom:391.973333pt;}
.y14_c00400{bottom:406.440000pt;}
.y12_c00400{bottom:406.826667pt;}
.y13_c00400{bottom:408.360000pt;}
.yf_c00400{bottom:423.773333pt;}
.y10_c00400{bottom:425.306667pt;}
.ye_c00400{bottom:425.693333pt;}
.y11_c00400{bottom:426.640000pt;}
.yb_c00400{bottom:441.106667pt;}
.yd_c00400{bottom:442.066667pt;}
.y8_c00400{bottom:442.440000pt;}
.ya_c00400{bottom:443.026667pt;}
.yc_c00400{bottom:443.973333pt;}
.y9_c00400{bottom:444.360000pt;}
.y5_c00400{bottom:457.693333pt;}
.y7_c00400{bottom:459.600000pt;}
.y4_c00400{bottom:459.773333pt;}
.y6_c00400{bottom:460.560000pt;}
.y3_c00400{bottom:461.693333pt;}
.y56_c00400{bottom:479.600000pt;}
.y50_c00400{bottom:479.973333pt;}
.y57_c00400{bottom:480.360000pt;}
.y51_c00400{bottom:480.733333pt;}
.y4f_c00400{bottom:480.933333pt;}
.y54_c00400{bottom:481.306667pt;}
.y55_c00400{bottom:481.693333pt;}
.y53_c00400{bottom:482.266667pt;}
.y52_c00400{bottom:482.640000pt;}
.y59_c00400{bottom:493.306667pt;}
.y4c_c00400{bottom:493.693333pt;}
.y5a_c00400{bottom:494.066667pt;}
.y4e_c00400{bottom:494.640000pt;}
.y58_c00400{bottom:495.026667pt;}
.y4d_c00400{bottom:495.600000pt;}
.y2_c00400{bottom:977.693333pt;}
.y1_c00400{bottom:979.600000pt;}
.h8_c00400{height:3.739141pt;}
.h4_c00400{height:20.466875pt;}
.h1_c00400{height:22.303646pt;}
.h5_c00400{height:27.879557pt;}
.h2_c00400{height:31.618698pt;}
.h6_c00400{height:35.357839pt;}
.h3_c00400{height:39.031380pt;}
.h7_c00400{height:42.770521pt;}
.h0_c00400{height:1186.666667pt;}
.w0_c00400{width:782.666667pt;}
.x0_c00400{left:0.000000pt;}
.x21_c00400{left:132.960000pt;}
.x11_c00400{left:134.293333pt;}
.x7a_c00400{left:135.626667pt;}
.x3_c00400{left:148.000000pt;}
.x42_c00400{left:159.040000pt;}
.x22_c00400{left:161.333333pt;}
.x64_c00400{left:163.626667pt;}
.x12_c00400{left:169.333333pt;}
.x80_c00400{left:173.333333pt;}
.x4_c00400{left:176.000000pt;}
.x36_c00400{left:179.040000pt;}
.x5a_c00400{left:180.000000pt;}
.x8a_c00400{left:181.333333pt;}
.x65_c00400{left:183.626667pt;}
.x50_c00400{left:186.293333pt;}
.x43_c00400{left:187.626667pt;}
.x5b_c00400{left:195.626667pt;}
.x74_c00400{left:197.906667pt;}
.x13_c00400{left:202.293333pt;}
.x2c_c00400{left:203.626667pt;}
.x97_c00400{left:205.333333pt;}
.x5_c00400{left:206.293333pt;}
.x81_c00400{left:209.333333pt;}
.x3c_c00400{left:210.666667pt;}
.x37_c00400{left:216.960000pt;}
.x98_c00400{left:218.666667pt;}
.x51_c00400{left:221.333333pt;}
.x2d_c00400{left:223.040000pt;}
.x23_c00400{left:226.666667pt;}
.x3d_c00400{left:228.000000pt;}
.x14_c00400{left:229.333333pt;}
.x44_c00400{left:233.333333pt;}
.x5c_c00400{left:236.000000pt;}
.x7b_c00400{left:240.960000pt;}
.x66_c00400{left:243.240000pt;}
.x24_c00400{left:247.040000pt;}
.x2e_c00400{left:248.960000pt;}
.x8b_c00400{left:260.000000pt;}
.x99_c00400{left:261.706667pt;}
.x15_c00400{left:264.000000pt;}
.x82_c00400{left:264.960000pt;}
.x6_c00400{left:266.293333pt;}
.x67_c00400{left:271.040000pt;}
.x25_c00400{left:272.000000pt;}
.x75_c00400{left:273.333333pt;}
.x6f_c00400{left:275.626667pt;}
.x45_c00400{left:278.666667pt;}
.x83_c00400{left:283.040000pt;}
.x5d_c00400{left:284.000000pt;}
.x2f_c00400{left:292.000000pt;}
.x16_c00400{left:293.706667pt;}
.x46_c00400{left:296.960000pt;}
.x5e_c00400{left:300.960000pt;}
.x84_c00400{left:307.626667pt;}
.x38_c00400{left:308.960000pt;}
.x7c_c00400{left:311.040000pt;}
.x52_c00400{left:313.706667pt;}
.x47_c00400{left:316.000000pt;}
.x17_c00400{left:326.666667pt;}
.x7_c00400{left:328.000000pt;}
.x68_c00400{left:329.333333pt;}
.x70_c00400{left:330.666667pt;}
.x39_c00400{left:332.960000pt;}
.x53_c00400{left:338.293333pt;}
.x9a_c00400{left:341.706667pt;}
.x3e_c00400{left:344.000000pt;}
.x7d_c00400{left:346.666667pt;}
.x1_c00400{left:349.333333pt;}
.x18_c00400{left:354.666667pt;}
.x30_c00400{left:358.666667pt;}
.x3a_c00400{left:359.626667pt;}
.x5f_c00400{left:362.666667pt;}
.x26_c00400{left:365.706667pt;}
.x69_c00400{left:366.666667pt;}
.x91_c00400{left:368.000000pt;}
.x48_c00400{left:372.373333pt;}
.x54_c00400{left:377.333333pt;}
.x19_c00400{left:380.960000pt;}
.x3b_c00400{left:384.000000pt;}
.x60_c00400{left:384.960000pt;}
.x8c_c00400{left:386.293333pt;}
.x8_c00400{left:388.000000pt;}
.x1a_c00400{left:397.706667pt;}
.x9_c00400{left:401.706667pt;}
.x27_c00400{left:405.333333pt;}
.x49_c00400{left:406.293333pt;}
.x8d_c00400{left:412.000000pt;}
.x85_c00400{left:416.960000pt;}
.x1b_c00400{left:420.960000pt;}
.x92_c00400{left:422.666667pt;}
.x7e_c00400{left:423.626667pt;}
.x28_c00400{left:428.000000pt;}
.x76_c00400{left:429.333333pt;}
.x8e_c00400{left:430.293333pt;}
.x55_c00400{left:431.626667pt;}
.x6a_c00400{left:433.333333pt;}
.xa_c00400{left:443.626667pt;}
.x86_c00400{left:445.706667pt;}
.x77_c00400{left:448.000000pt;}
.x9b_c00400{left:449.333333pt;}
.x6b_c00400{left:452.000000pt;}
.x1c_c00400{left:456.960000pt;}
.x9c_c00400{left:462.666667pt;}
.x8f_c00400{left:465.333333pt;}
.x3f_c00400{left:467.626667pt;}
.xb_c00400{left:470.666667pt;}
.x4a_c00400{left:473.333333pt;}
.x56_c00400{left:476.000000pt;}
.x87_c00400{left:478.666667pt;}
.x93_c00400{left:479.626667pt;}
.x61_c00400{left:488.373333pt;}
.x71_c00400{left:489.333333pt;}
.x40_c00400{left:490.666667pt;}
.x9d_c00400{left:492.000000pt;}
.x4b_c00400{left:493.706667pt;}
.xc_c00400{left:494.666667pt;}
.x88_c00400{left:498.666667pt;}
.x31_c00400{left:501.706667pt;}
.x57_c00400{left:504.960000pt;}
.xd_c00400{left:507.040000pt;}
.x29_c00400{left:508.960000pt;}
.x62_c00400{left:511.240000pt;}
.x4c_c00400{left:516.000000pt;}
.x90_c00400{left:516.960000pt;}
.x78_c00400{left:518.293333pt;}
.x1d_c00400{left:520.373333pt;}
.x32_c00400{left:527.040000pt;}
.x94_c00400{left:529.706667pt;}
.x9e_c00400{left:530.666667pt;}
.x6c_c00400{left:531.626667pt;}
.x4d_c00400{left:533.333333pt;}
.x63_c00400{left:536.960000pt;}
.xe_c00400{left:540.373333pt;}
.x4e_c00400{left:543.626667pt;}
.x58_c00400{left:552.000000pt;}
.x2a_c00400{left:553.706667pt;}
.x33_c00400{left:563.040000pt;}
.x1e_c00400{left:564.000000pt;}
.x72_c00400{left:569.333333pt;}
.x6d_c00400{left:572.960000pt;}
.x2b_c00400{left:576.373333pt;}
.x1f_c00400{left:578.666667pt;}
.xf_c00400{left:582.293333pt;}
.x9f_c00400{left:588.000000pt;}
.x73_c00400{left:589.333333pt;}
.x79_c00400{left:592.373333pt;}
.x7f_c00400{left:596.373333pt;}
.x10_c00400{left:600.760000pt;}
.x20_c00400{left:602.293333pt;}
.x95_c00400{left:604.373333pt;}
.x4f_c00400{left:606.666667pt;}
.x34_c00400{left:608.960000pt;}
.x59_c00400{left:610.293333pt;}
.x89_c00400{left:614.666667pt;}
.x96_c00400{left:618.666667pt;}
.x2_c00400{left:623.626667pt;}
.x35_c00400{left:628.373333pt;}
.x6e_c00400{left:629.333333pt;}
.x41_c00400{left:638.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_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_5aba9945836b7fc25921f8b3.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:1.688965;font-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_c00401{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.mbf_c00401{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);}
.m80_c00401{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.mc9_c00401{transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);}
.m11_c00401{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mcb_c00401{transform:matrix(0.363866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363866,0.000000,0.000000,0.250000,0,0);}
.mb4_c00401{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m72_c00401{transform:matrix(0.368865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368865,0.000000,0.000000,0.250000,0,0);}
.mbb_c00401{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m59_c00401{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.mb2_c00401{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m84_c00401{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.maf_c00401{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.mba_c00401{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m54_c00401{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m1e_c00401{transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);}
.m5d_c00401{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m29_c00401{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m1f_c00401{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.mbe_c00401{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m64_c00401{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m1a_c00401{transform:matrix(0.398006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398006,0.000000,0.000000,0.250000,0,0);}
.m26_c00401{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m3d_c00401{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m15_c00401{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);}
.m62_c00401{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m4b_c00401{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m4f_c00401{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m4e_c00401{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m47_c00401{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m6a_c00401{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m2d_c00401{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m71_c00401{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.mae_c00401{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.ma3_c00401{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m21_c00401{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m4a_c00401{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.mc3_c00401{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m81_c00401{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.mb_c00401{transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);}
.m91_c00401{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m60_c00401{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m7b_c00401{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m96_c00401{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m2f_c00401{transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);}
.m4c_c00401{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m5c_c00401{transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);}
.m46_c00401{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m2a_c00401{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.mc8_c00401{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m14_c00401{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m66_c00401{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.mcc_c00401{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m61_c00401{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m27_c00401{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m76_c00401{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.ma2_c00401{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m74_c00401{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m89_c00401{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mc0_c00401{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m56_c00401{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mc7_c00401{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m6c_c00401{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.mbd_c00401{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m42_c00401{transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);}
.m36_c00401{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m90_c00401{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.ma6_c00401{transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);}
.m82_c00401{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m3b_c00401{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.mca_c00401{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.mc_c00401{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.m53_c00401{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.m87_c00401{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.m83_c00401{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m8a_c00401{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m41_c00401{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.ma1_c00401{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m3a_c00401{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.m18_c00401{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m93_c00401{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.mc4_c00401{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m23_c00401{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m6f_c00401{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.m70_c00401{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.mc2_c00401{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m34_c00401{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m4d_c00401{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.ma9_c00401{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m58_c00401{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.m31_c00401{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m6e_c00401{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m63_c00401{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m3e_c00401{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m69_c00401{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.mb3_c00401{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mab_c00401{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m10_c00401{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m9a_c00401{transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);}
.m2e_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);}
.m88_c00401{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m55_c00401{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m2c_c00401{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m86_c00401{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m8f_c00401{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m48_c00401{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m3c_c00401{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mad_c00401{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m9_c00401{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m75_c00401{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.ma0_c00401{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m5b_c00401{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m98_c00401{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mb9_c00401{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m3_c00401{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m20_c00401{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mf_c00401{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m7e_c00401{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m57_c00401{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m22_c00401{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m38_c00401{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m1b_c00401{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m7c_c00401{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m8b_c00401{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m9e_c00401{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m7d_c00401{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m49_c00401{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m1c_c00401{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m6d_c00401{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m5_c00401{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m2_c00401{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m25_c00401{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mc1_c00401{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m8_c00401{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m12_c00401{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m9c_c00401{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m8d_c00401{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.ma7_c00401{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m6b_c00401{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m6_c00401{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m39_c00401{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m85_c00401{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m68_c00401{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m9f_c00401{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.md_c00401{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m28_c00401{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m1d_c00401{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.mb6_c00401{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m32_c00401{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m73_c00401{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m5a_c00401{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.ma_c00401{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m5e_c00401{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m9d_c00401{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m7f_c00401{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m7a_c00401{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m4_c00401{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m8c_c00401{transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);}
.m92_c00401{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m40_c00401{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m44_c00401{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m51_c00401{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m45_c00401{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.mcd_c00401{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m94_c00401{transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);}
.maa_c00401{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m97_c00401{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m77_c00401{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m95_c00401{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.ma8_c00401{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mc6_c00401{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m99_c00401{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.mb1_c00401{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.m35_c00401{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mc5_c00401{transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);}
.mb8_c00401{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m8e_c00401{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m30_c00401{transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);}
.m13_c00401{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m37_c00401{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m78_c00401{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m67_c00401{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_c00401{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m0_c00401{transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);}
.m50_c00401{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mb5_c00401{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.m43_c00401{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m33_c00401{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.me_c00401{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m5f_c00401{transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);}
.m9b_c00401{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mbc_c00401{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m79_c00401{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m24_c00401{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.mac_c00401{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m2b_c00401{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.ma4_c00401{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.m19_c00401{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m7_c00401{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m16_c00401{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.ma5_c00401{transform:matrix(0.772436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772436,0.000000,0.000000,0.250000,0,0);}
.mb7_c00401{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m17_c00401{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m1_c00401{transform:matrix(0.829357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.829357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.829357,0.000000,0.000000,0.250000,0,0);}
.m65_c00401{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mb0_c00401{transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);}
.v0_c00401{vertical-align:0.000000px;}
.v1_c00401{vertical-align:6.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;}
}
.ws1_c00401{word-spacing:-4.018440px;}
.ws2_c00401{word-spacing:0.000000px;}
.ws0_c00401{word-spacing:4.831440px;}
.fc0_c00401{color:transparent;}
.fs1_c00401{font-size:18.720000px;}
.fs6_c00401{font-size:20.400000px;}
.fs3_c00401{font-size:25.500000px;}
.fs0_c00401{font-size:28.920000px;}
.fs5_c00401{font-size:32.340000px;}
.fs2_c00401{font-size:35.700000px;}
.fs4_c00401{font-size:39.120000px;}
.y0_c00401{bottom:0.000000px;}
.yc5_c00401{bottom:229.905000px;}
.yc1_c00401{bottom:230.745000px;}
.yc3_c00401{bottom:231.405000px;}
.yc2_c00401{bottom:232.905000px;}
.yc4_c00401{bottom:234.405000px;}
.yc0_c00401{bottom:250.470000px;}
.ybf_c00401{bottom:251.745000px;}
.ybd_c00401{bottom:252.405000px;}
.ybe_c00401{bottom:253.905000px;}
.ybb_c00401{bottom:268.905000px;}
.yba_c00401{bottom:270.180000px;}
.ybc_c00401{bottom:270.405000px;}
.yb9_c00401{bottom:271.245000px;}
.yb8_c00401{bottom:272.130000px;}
.yb7_c00401{bottom:273.405000px;}
.yb4_c00401{bottom:290.745000px;}
.yb5_c00401{bottom:290.970000px;}
.yb3_c00401{bottom:291.825000px;}
.yb1_c00401{bottom:292.905000px;}
.yb2_c00401{bottom:293.130000px;}
.yb6_c00401{bottom:293.970000px;}
.yb0_c00401{bottom:310.245000px;}
.yaf_c00401{bottom:310.470000px;}
.yae_c00401{bottom:311.745000px;}
.yab_c00401{bottom:312.405000px;}
.yaa_c00401{bottom:312.630000px;}
.yac_c00401{bottom:312.825000px;}
.yad_c00401{bottom:313.905000px;}
.ya9_c00401{bottom:330.405000px;}
.ya8_c00401{bottom:331.245000px;}
.ya3_c00401{bottom:331.905000px;}
.ya5_c00401{bottom:332.130000px;}
.ya7_c00401{bottom:332.970000px;}
.ya4_c00401{bottom:333.405000px;}
.ya6_c00401{bottom:334.470000px;}
.ya1_c00401{bottom:349.470000px;}
.ya2_c00401{bottom:350.550000px;}
.ya0_c00401{bottom:350.745000px;}
.y9d_c00401{bottom:351.630000px;}
.y9f_c00401{bottom:352.470000px;}
.y9e_c00401{bottom:352.905000px;}
.y9c_c00401{bottom:379.245000px;}
.y98_c00401{bottom:381.405000px;}
.y99_c00401{bottom:381.630000px;}
.y9a_c00401{bottom:382.470000px;}
.y9b_c00401{bottom:382.905000px;}
.y97_c00401{bottom:399.825000px;}
.y95_c00401{bottom:400.905000px;}
.y96_c00401{bottom:402.405000px;}
.y93_c00401{bottom:418.905000px;}
.y92_c00401{bottom:419.745000px;}
.y94_c00401{bottom:420.630000px;}
.y91_c00401{bottom:421.905000px;}
.y8e_c00401{bottom:449.745000px;}
.y8f_c00401{bottom:451.470000px;}
.y90_c00401{bottom:451.905000px;}
.y8d_c00401{bottom:488.745000px;}
.y8c_c00401{bottom:490.905000px;}
.y89_c00401{bottom:508.245000px;}
.y8b_c00401{bottom:509.130000px;}
.y8a_c00401{bottom:509.970000px;}
.y88_c00401{bottom:510.405000px;}
.y84_c00401{bottom:527.745000px;}
.y85_c00401{bottom:528.825000px;}
.y82_c00401{bottom:529.905000px;}
.y83_c00401{bottom:530.130000px;}
.y86_c00401{bottom:530.970000px;}
.y87_c00401{bottom:531.405000px;}
.y81_c00401{bottom:547.245000px;}
.y80_c00401{bottom:547.470000px;}
.y7d_c00401{bottom:548.745000px;}
.y7c_c00401{bottom:549.405000px;}
.y7f_c00401{bottom:549.825000px;}
.y7b_c00401{bottom:550.470000px;}
.y7e_c00401{bottom:550.905000px;}
.y7a_c00401{bottom:566.745000px;}
.y79_c00401{bottom:568.245000px;}
.y75_c00401{bottom:568.905000px;}
.y78_c00401{bottom:569.130000px;}
.y76_c00401{bottom:569.970000px;}
.y77_c00401{bottom:570.405000px;}
.y74_c00401{bottom:587.745000px;}
.y71_c00401{bottom:588.405000px;}
.y73_c00401{bottom:588.630000px;}
.y72_c00401{bottom:589.905000px;}
.y70_c00401{bottom:605.745000px;}
.y6f_c00401{bottom:606.405000px;}
.y6c_c00401{bottom:607.245000px;}
.y6e_c00401{bottom:608.325000px;}
.y6b_c00401{bottom:609.405000px;}
.y6d_c00401{bottom:609.630000px;}
.y66_c00401{bottom:626.745000px;}
.y6a_c00401{bottom:627.825000px;}
.y67_c00401{bottom:628.245000px;}
.y64_c00401{bottom:628.905000px;}
.y65_c00401{bottom:629.130000px;}
.y68_c00401{bottom:629.970000px;}
.y69_c00401{bottom:630.405000px;}
.y63_c00401{bottom:647.745000px;}
.y60_c00401{bottom:647.970000px;}
.y5f_c00401{bottom:648.405000px;}
.y61_c00401{bottom:649.470000px;}
.y62_c00401{bottom:649.905000px;}
.y5b_c00401{bottom:665.745000px;}
.y5c_c00401{bottom:666.405000px;}
.y5e_c00401{bottom:667.245000px;}
.y5a_c00401{bottom:667.905000px;}
.y5d_c00401{bottom:668.970000px;}
.y55_c00401{bottom:685.680000px;}
.y56_c00401{bottom:686.745000px;}
.y59_c00401{bottom:686.970000px;}
.y58_c00401{bottom:687.630000px;}
.y57_c00401{bottom:688.905000px;}
.y54_c00401{bottom:706.245000px;}
.y51_c00401{bottom:706.905000px;}
.y52_c00401{bottom:707.325000px;}
.y53_c00401{bottom:708.405000px;}
.y4b_c00401{bottom:723.825000px;}
.y50_c00401{bottom:724.905000px;}
.y48_c00401{bottom:725.745000px;}
.y4f_c00401{bottom:725.970000px;}
.y4c_c00401{bottom:726.630000px;}
.y4d_c00401{bottom:727.050000px;}
.y4a_c00401{bottom:727.470000px;}
.y49_c00401{bottom:727.905000px;}
.y4e_c00401{bottom:728.970000px;}
.y47_c00401{bottom:745.245000px;}
.y44_c00401{bottom:746.325000px;}
.y45_c00401{bottom:746.745000px;}
.y43_c00401{bottom:747.405000px;}
.y46_c00401{bottom:748.470000px;}
.y42_c00401{bottom:764.745000px;}
.y40_c00401{bottom:766.245000px;}
.y3d_c00401{bottom:766.905000px;}
.y3f_c00401{bottom:767.130000px;}
.y41_c00401{bottom:767.325000px;}
.y3e_c00401{bottom:768.405000px;}
.y3c_c00401{bottom:784.245000px;}
.y39_c00401{bottom:802.905000px;}
.y36_c00401{bottom:803.745000px;}
.y37_c00401{bottom:805.245000px;}
.y35_c00401{bottom:805.905000px;}
.y38_c00401{bottom:806.130000px;}
.y3b_c00401{bottom:806.970000px;}
.y3a_c00401{bottom:807.405000px;}
.y33_c00401{bottom:822.405000px;}
.y2f_c00401{bottom:824.325000px;}
.y32_c00401{bottom:824.745000px;}
.y31_c00401{bottom:824.970000px;}
.y34_c00401{bottom:825.405000px;}
.y2e_c00401{bottom:825.825000px;}
.y2c_c00401{bottom:826.470000px;}
.y2d_c00401{bottom:826.905000px;}
.y30_c00401{bottom:827.970000px;}
.y2b_c00401{bottom:843.825000px;}
.y27_c00401{bottom:844.245000px;}
.y2a_c00401{bottom:845.325000px;}
.y28_c00401{bottom:846.405000px;}
.y29_c00401{bottom:847.905000px;}
.y26_c00401{bottom:863.745000px;}
.y23_c00401{bottom:864.405000px;}
.y25_c00401{bottom:864.630000px;}
.y24_c00401{bottom:865.905000px;}
.y1e_c00401{bottom:882.405000px;}
.y1c_c00401{bottom:882.825000px;}
.y1b_c00401{bottom:883.245000px;}
.y22_c00401{bottom:884.130000px;}
.y21_c00401{bottom:884.325000px;}
.y1f_c00401{bottom:884.745000px;}
.y1a_c00401{bottom:885.405000px;}
.y1d_c00401{bottom:885.630000px;}
.y20_c00401{bottom:886.905000px;}
.y13_c00401{bottom:902.745000px;}
.y19_c00401{bottom:904.245000px;}
.y15_c00401{bottom:904.905000px;}
.y18_c00401{bottom:905.130000px;}
.y17_c00401{bottom:905.325000px;}
.y14_c00401{bottom:905.970000px;}
.y16_c00401{bottom:906.405000px;}
.yf_c00401{bottom:921.180000px;}
.y12_c00401{bottom:922.245000px;}
.y11_c00401{bottom:923.745000px;}
.ye_c00401{bottom:924.405000px;}
.y10_c00401{bottom:925.905000px;}
.ya_c00401{bottom:943.245000px;}
.y9_c00401{bottom:943.905000px;}
.yd_c00401{bottom:944.130000px;}
.yb_c00401{bottom:945.405000px;}
.yc_c00401{bottom:946.470000px;}
.y7_c00401{bottom:960.405000px;}
.y5_c00401{bottom:961.905000px;}
.y6_c00401{bottom:962.745000px;}
.y2_c00401{bottom:963.405000px;}
.y4_c00401{bottom:963.630000px;}
.y8_c00401{bottom:964.470000px;}
.y3_c00401{bottom:964.905000px;}
.y1_c00401{bottom:999.405000px;}
.h2_c00401{height:23.025234px;}
.h7_c00401{height:25.091602px;}
.h4_c00401{height:31.364502px;}
.h1_c00401{height:35.571035px;}
.h6_c00401{height:39.777568px;}
.h8_c00401{height:41.571035px;}
.h3_c00401{height:43.910303px;}
.h5_c00401{height:48.116836px;}
.h0_c00401{height:1335.000000px;}
.w0_c00401{width:880.500000px;}
.x0_c00401{left:0.000000px;}
.x9b_c00401{left:151.500000px;}
.x10_c00401{left:153.000000px;}
.x5c_c00401{left:154.920000px;}
.xdd_c00401{left:159.000000px;}
.xcd_c00401{left:160.080000px;}
.xd4_c00401{left:166.080000px;}
.xc2_c00401{left:168.000000px;}
.x3_c00401{left:169.500000px;}
.x1d_c00401{left:172.500000px;}
.xb7_c00401{left:173.580000px;}
.xac_c00401{left:178.920000px;}
.x66_c00401{left:180.000000px;}
.xa1_c00401{left:181.500000px;}
.x8a_c00401{left:183.420000px;}
.x90_c00401{left:189.000000px;}
.xde_c00401{left:190.500000px;}
.xce_c00401{left:192.000000px;}
.x3b_c00401{left:195.000000px;}
.x56_c00401{left:198.855000px;}
.x4_c00401{left:201.000000px;}
.x2e_c00401{left:202.920000px;}
.xc5_c00401{left:205.920000px;}
.x91_c00401{left:207.000000px;}
.xad_c00401{left:208.920000px;}
.x8b_c00401{left:210.000000px;}
.xa2_c00401{left:212.580000px;}
.x5d_c00401{left:214.500000px;}
.x6b_c00401{left:216.000000px;}
.xc9_c00401{left:219.000000px;}
.x9c_c00401{left:220.500000px;}
.x4a_c00401{left:221.580000px;}
.x76_c00401{left:223.500000px;}
.x11_c00401{left:226.080000px;}
.xb1_c00401{left:228.420000px;}
.xb8_c00401{left:229.500000px;}
.xe6_c00401{left:231.000000px;}
.xa3_c00401{left:232.920000px;}
.xd5_c00401{left:234.420000px;}
.x6c_c00401{left:235.500000px;}
.x92_c00401{left:238.500000px;}
.x4b_c00401{left:241.920000px;}
.xc6_c00401{left:243.000000px;}
.xe2_c00401{left:244.500000px;}
.xe8_c00401{left:246.000000px;}
.x26_c00401{left:247.920000px;}
.x1e_c00401{left:249.420000px;}
.xbc_c00401{left:250.920000px;}
.x5_c00401{left:254.580000px;}
.x3c_c00401{left:256.920000px;}
.x2f_c00401{left:260.580000px;}
.x8c_c00401{left:262.080000px;}
.x5e_c00401{left:263.580000px;}
.x12_c00401{left:267.000000px;}
.x4c_c00401{left:268.500000px;}
.x77_c00401{left:270.000000px;}
.x6_c00401{left:272.580000px;}
.x1f_c00401{left:276.000000px;}
.x27_c00401{left:277.080000px;}
.x94_c00401{left:278.580000px;}
.xa9_c00401{left:280.080000px;}
.xe9_c00401{left:282.420000px;}
.xbd_c00401{left:285.000000px;}
.x6d_c00401{left:286.080000px;}
.xdf_c00401{left:289.920000px;}
.x30_c00401{left:291.000000px;}
.x3d_c00401{left:294.000000px;}
.xcf_c00401{left:295.920000px;}
.x95_c00401{left:297.420000px;}
.xa4_c00401{left:298.920000px;}
.xbe_c00401{left:300.000000px;}
.x9d_c00401{left:302.580000px;}
.xb9_c00401{left:304.920000px;}
.x4d_c00401{left:306.000000px;}
.x8d_c00401{left:307.080000px;}
.xd6_c00401{left:309.420000px;}
.x57_c00401{left:315.000000px;}
.x6e_c00401{left:316.920000px;}
.x13_c00401{left:319.500000px;}
.xb2_c00401{left:324.000000px;}
.xe0_c00401{left:325.920000px;}
.x8e_c00401{left:328.500000px;}
.x78_c00401{left:329.580000px;}
.xa5_c00401{left:331.500000px;}
.xc0_c00401{left:333.645000px;}
.x5f_c00401{left:336.000000px;}
.xc3_c00401{left:337.920000px;}
.x31_c00401{left:339.000000px;}
.x7_c00401{left:342.420000px;}
.x43_c00401{left:345.000000px;}
.xd7_c00401{left:346.500000px;}
.x8f_c00401{left:347.580000px;}
.x14_c00401{left:349.500000px;}
.xaa_c00401{left:351.000000px;}
.x28_c00401{left:352.080000px;}
.x6f_c00401{left:354.000000px;}
.x67_c00401{left:355.500000px;}
.x32_c00401{left:357.420000px;}
.x79_c00401{left:360.420000px;}
.x81_c00401{left:361.500000px;}
.x9e_c00401{left:364.500000px;}
.xd0_c00401{left:365.580000px;}
.x20_c00401{left:367.080000px;}
.xd8_c00401{left:369.000000px;}
.x1_c00401{left:370.080000px;}
.x15_c00401{left:376.500000px;}
.xbf_c00401{left:378.420000px;}
.x8_c00401{left:379.500000px;}
.x3e_c00401{left:382.500000px;}
.x29_c00401{left:384.420000px;}
.x96_c00401{left:385.500000px;}
.x7a_c00401{left:387.420000px;}
.x9_c00401{left:390.420000px;}
.x68_c00401{left:391.500000px;}
.x60_c00401{left:393.000000px;}
.x33_c00401{left:396.420000px;}
.x21_c00401{left:397.920000px;}
.x3f_c00401{left:399.420000px;}
.x44_c00401{left:402.000000px;}
.x70_c00401{left:404.580000px;}
.x4e_c00401{left:407.580000px;}
.x2a_c00401{left:414.420000px;}
.x61_c00401{left:418.920000px;}
.x2_c00401{left:422.145000px;}
.x22_c00401{left:424.080000px;}
.xa_c00401{left:426.420000px;}
.xb3_c00401{left:427.500000px;}
.xe1_c00401{left:429.000000px;}
.x4f_c00401{left:430.080000px;}
.xe3_c00401{left:432.000000px;}
.x16_c00401{left:433.080000px;}
.x82_c00401{left:435.420000px;}
.x7b_c00401{left:436.920000px;}
.x34_c00401{left:438.000000px;}
.xd9_c00401{left:439.080000px;}
.x45_c00401{left:441.000000px;}
.x58_c00401{left:443.580000px;}
.x62_c00401{left:446.580000px;}
.x71_c00401{left:450.420000px;}
.x97_c00401{left:456.000000px;}
.x69_c00401{left:460.920000px;}
.xd1_c00401{left:462.420000px;}
.x17_c00401{left:463.500000px;}
.xda_c00401{left:466.920000px;}
.x72_c00401{left:469.500000px;}
.x50_c00401{left:472.500000px;}
.xae_c00401{left:474.420000px;}
.x98_c00401{left:475.920000px;}
.xb_c00401{left:478.080000px;}
.x2b_c00401{left:480.420000px;}
.x83_c00401{left:484.080000px;}
.xc1_c00401{left:485.145000px;}
.x9f_c00401{left:487.500000px;}
.x18_c00401{left:489.000000px;}
.xc4_c00401{left:490.500000px;}
.x51_c00401{left:492.420000px;}
.xca_c00401{left:496.080000px;}
.xd2_c00401{left:497.775000px;}
.x46_c00401{left:499.920000px;}
.x84_c00401{left:504.000000px;}
.x35_c00401{left:507.000000px;}
.xc_c00401{left:508.500000px;}
.xc7_c00401{left:510.000000px;}
.xab_c00401{left:512.580000px;}
.x40_c00401{left:514.080000px;}
.xb4_c00401{left:519.420000px;}
.x93_c00401{left:522.420000px;}
.x23_c00401{left:524.580000px;}
.x7c_c00401{left:529.080000px;}
.x41_c00401{left:531.000000px;}
.xe4_c00401{left:534.000000px;}
.x63_c00401{left:535.080000px;}
.x36_c00401{left:537.000000px;}
.x85_c00401{left:542.580000px;}
.x52_c00401{left:544.920000px;}
.x7d_c00401{left:546.420000px;}
.x59_c00401{left:552.420000px;}
.xaf_c00401{left:556.500000px;}
.x73_c00401{left:559.500000px;}
.xba_c00401{left:563.580000px;}
.xa6_c00401{left:567.420000px;}
.x19_c00401{left:568.500000px;}
.x64_c00401{left:569.580000px;}
.x7e_c00401{left:573.420000px;}
.x86_c00401{left:574.500000px;}
.x47_c00401{left:576.000000px;}
.x37_c00401{left:580.080000px;}
.x42_c00401{left:582.420000px;}
.x53_c00401{left:583.500000px;}
.xe5_c00401{left:585.000000px;}
.xb0_c00401{left:586.080000px;}
.xcb_c00401{left:589.500000px;}
.x74_c00401{left:591.420000px;}
.x1a_c00401{left:592.500000px;}
.x48_c00401{left:594.000000px;}
.xe7_c00401{left:595.920000px;}
.xd_c00401{left:601.920000px;}
.x99_c00401{left:604.080000px;}
.xdb_c00401{left:609.000000px;}
.x1b_c00401{left:613.920000px;}
.x87_c00401{left:615.000000px;}
.x7f_c00401{left:619.500000px;}
.x5a_c00401{left:622.500000px;}
.x24_c00401{left:624.000000px;}
.x2c_c00401{left:628.500000px;}
.xc8_c00401{left:630.000000px;}
.x88_c00401{left:631.080000px;}
.x80_c00401{left:634.920000px;}
.xa7_c00401{left:636.420000px;}
.x38_c00401{left:640.080000px;}
.xdc_c00401{left:641.775000px;}
.xa0_c00401{left:648.000000px;}
.x2d_c00401{left:649.500000px;}
.x6a_c00401{left:653.580000px;}
.xcc_c00401{left:657.000000px;}
.x54_c00401{left:660.000000px;}
.x5b_c00401{left:661.920000px;}
.xea_c00401{left:666.000000px;}
.x9a_c00401{left:669.420000px;}
.xb5_c00401{left:670.500000px;}
.xe_c00401{left:673.920000px;}
.x49_c00401{left:675.000000px;}
.x89_c00401{left:678.420000px;}
.xb6_c00401{left:685.500000px;}
.x1c_c00401{left:688.920000px;}
.x39_c00401{left:690.000000px;}
.x75_c00401{left:691.080000px;}
.x25_c00401{left:694.920000px;}
.xeb_c00401{left:703.080000px;}
.x65_c00401{left:704.580000px;}
.x55_c00401{left:706.080000px;}
.xa8_c00401{left:708.420000px;}
.x3a_c00401{left:709.920000px;}
.xbb_c00401{left:714.000000px;}
.xf_c00401{left:716.580000px;}
.xd3_c00401{left:721.920000px;}
@media print{
.v0_c00401{vertical-align:0.000000pt;}
.v1_c00401{vertical-align:5.333333pt;}
.ls0_c00401{letter-spacing:0.000000pt;}
.ws1_c00401{word-spacing:-3.571947pt;}
.ws2_c00401{word-spacing:0.000000pt;}
.ws0_c00401{word-spacing:4.294613pt;}
.fs1_c00401{font-size:16.640000pt;}
.fs6_c00401{font-size:18.133333pt;}
.fs3_c00401{font-size:22.666667pt;}
.fs0_c00401{font-size:25.706667pt;}
.fs5_c00401{font-size:28.746667pt;}
.fs2_c00401{font-size:31.733333pt;}
.fs4_c00401{font-size:34.773333pt;}
.y0_c00401{bottom:0.000000pt;}
.yc5_c00401{bottom:204.360000pt;}
.yc1_c00401{bottom:205.106667pt;}
.yc3_c00401{bottom:205.693333pt;}
.yc2_c00401{bottom:207.026667pt;}
.yc4_c00401{bottom:208.360000pt;}
.yc0_c00401{bottom:222.640000pt;}
.ybf_c00401{bottom:223.773333pt;}
.ybd_c00401{bottom:224.360000pt;}
.ybe_c00401{bottom:225.693333pt;}
.ybb_c00401{bottom:239.026667pt;}
.yba_c00401{bottom:240.160000pt;}
.ybc_c00401{bottom:240.360000pt;}
.yb9_c00401{bottom:241.106667pt;}
.yb8_c00401{bottom:241.893333pt;}
.yb7_c00401{bottom:243.026667pt;}
.yb4_c00401{bottom:258.440000pt;}
.yb5_c00401{bottom:258.640000pt;}
.yb3_c00401{bottom:259.400000pt;}
.yb1_c00401{bottom:260.360000pt;}
.yb2_c00401{bottom:260.560000pt;}
.yb6_c00401{bottom:261.306667pt;}
.yb0_c00401{bottom:275.773333pt;}
.yaf_c00401{bottom:275.973333pt;}
.yae_c00401{bottom:277.106667pt;}
.yab_c00401{bottom:277.693333pt;}
.yaa_c00401{bottom:277.893333pt;}
.yac_c00401{bottom:278.066667pt;}
.yad_c00401{bottom:279.026667pt;}
.ya9_c00401{bottom:293.693333pt;}
.ya8_c00401{bottom:294.440000pt;}
.ya3_c00401{bottom:295.026667pt;}
.ya5_c00401{bottom:295.226667pt;}
.ya7_c00401{bottom:295.973333pt;}
.ya4_c00401{bottom:296.360000pt;}
.ya6_c00401{bottom:297.306667pt;}
.ya1_c00401{bottom:310.640000pt;}
.ya2_c00401{bottom:311.600000pt;}
.ya0_c00401{bottom:311.773333pt;}
.y9d_c00401{bottom:312.560000pt;}
.y9f_c00401{bottom:313.306667pt;}
.y9e_c00401{bottom:313.693333pt;}
.y9c_c00401{bottom:337.106667pt;}
.y98_c00401{bottom:339.026667pt;}
.y99_c00401{bottom:339.226667pt;}
.y9a_c00401{bottom:339.973333pt;}
.y9b_c00401{bottom:340.360000pt;}
.y97_c00401{bottom:355.400000pt;}
.y95_c00401{bottom:356.360000pt;}
.y96_c00401{bottom:357.693333pt;}
.y93_c00401{bottom:372.360000pt;}
.y92_c00401{bottom:373.106667pt;}
.y94_c00401{bottom:373.893333pt;}
.y91_c00401{bottom:375.026667pt;}
.y8e_c00401{bottom:399.773333pt;}
.y8f_c00401{bottom:401.306667pt;}
.y90_c00401{bottom:401.693333pt;}
.y8d_c00401{bottom:434.440000pt;}
.y8c_c00401{bottom:436.360000pt;}
.y89_c00401{bottom:451.773333pt;}
.y8b_c00401{bottom:452.560000pt;}
.y8a_c00401{bottom:453.306667pt;}
.y88_c00401{bottom:453.693333pt;}
.y84_c00401{bottom:469.106667pt;}
.y85_c00401{bottom:470.066667pt;}
.y82_c00401{bottom:471.026667pt;}
.y83_c00401{bottom:471.226667pt;}
.y86_c00401{bottom:471.973333pt;}
.y87_c00401{bottom:472.360000pt;}
.y81_c00401{bottom:486.440000pt;}
.y80_c00401{bottom:486.640000pt;}
.y7d_c00401{bottom:487.773333pt;}
.y7c_c00401{bottom:488.360000pt;}
.y7f_c00401{bottom:488.733333pt;}
.y7b_c00401{bottom:489.306667pt;}
.y7e_c00401{bottom:489.693333pt;}
.y7a_c00401{bottom:503.773333pt;}
.y79_c00401{bottom:505.106667pt;}
.y75_c00401{bottom:505.693333pt;}
.y78_c00401{bottom:505.893333pt;}
.y76_c00401{bottom:506.640000pt;}
.y77_c00401{bottom:507.026667pt;}
.y74_c00401{bottom:522.440000pt;}
.y71_c00401{bottom:523.026667pt;}
.y73_c00401{bottom:523.226667pt;}
.y72_c00401{bottom:524.360000pt;}
.y70_c00401{bottom:538.440000pt;}
.y6f_c00401{bottom:539.026667pt;}
.y6c_c00401{bottom:539.773333pt;}
.y6e_c00401{bottom:540.733333pt;}
.y6b_c00401{bottom:541.693333pt;}
.y6d_c00401{bottom:541.893333pt;}
.y66_c00401{bottom:557.106667pt;}
.y6a_c00401{bottom:558.066667pt;}
.y67_c00401{bottom:558.440000pt;}
.y64_c00401{bottom:559.026667pt;}
.y65_c00401{bottom:559.226667pt;}
.y68_c00401{bottom:559.973333pt;}
.y69_c00401{bottom:560.360000pt;}
.y63_c00401{bottom:575.773333pt;}
.y60_c00401{bottom:575.973333pt;}
.y5f_c00401{bottom:576.360000pt;}
.y61_c00401{bottom:577.306667pt;}
.y62_c00401{bottom:577.693333pt;}
.y5b_c00401{bottom:591.773333pt;}
.y5c_c00401{bottom:592.360000pt;}
.y5e_c00401{bottom:593.106667pt;}
.y5a_c00401{bottom:593.693333pt;}
.y5d_c00401{bottom:594.640000pt;}
.y55_c00401{bottom:609.493333pt;}
.y56_c00401{bottom:610.440000pt;}
.y59_c00401{bottom:610.640000pt;}
.y58_c00401{bottom:611.226667pt;}
.y57_c00401{bottom:612.360000pt;}
.y54_c00401{bottom:627.773333pt;}
.y51_c00401{bottom:628.360000pt;}
.y52_c00401{bottom:628.733333pt;}
.y53_c00401{bottom:629.693333pt;}
.y4b_c00401{bottom:643.400000pt;}
.y50_c00401{bottom:644.360000pt;}
.y48_c00401{bottom:645.106667pt;}
.y4f_c00401{bottom:645.306667pt;}
.y4c_c00401{bottom:645.893333pt;}
.y4d_c00401{bottom:646.266667pt;}
.y4a_c00401{bottom:646.640000pt;}
.y49_c00401{bottom:647.026667pt;}
.y4e_c00401{bottom:647.973333pt;}
.y47_c00401{bottom:662.440000pt;}
.y44_c00401{bottom:663.400000pt;}
.y45_c00401{bottom:663.773333pt;}
.y43_c00401{bottom:664.360000pt;}
.y46_c00401{bottom:665.306667pt;}
.y42_c00401{bottom:679.773333pt;}
.y40_c00401{bottom:681.106667pt;}
.y3d_c00401{bottom:681.693333pt;}
.y3f_c00401{bottom:681.893333pt;}
.y41_c00401{bottom:682.066667pt;}
.y3e_c00401{bottom:683.026667pt;}
.y3c_c00401{bottom:697.106667pt;}
.y39_c00401{bottom:713.693333pt;}
.y36_c00401{bottom:714.440000pt;}
.y37_c00401{bottom:715.773333pt;}
.y35_c00401{bottom:716.360000pt;}
.y38_c00401{bottom:716.560000pt;}
.y3b_c00401{bottom:717.306667pt;}
.y3a_c00401{bottom:717.693333pt;}
.y33_c00401{bottom:731.026667pt;}
.y2f_c00401{bottom:732.733333pt;}
.y32_c00401{bottom:733.106667pt;}
.y31_c00401{bottom:733.306667pt;}
.y34_c00401{bottom:733.693333pt;}
.y2e_c00401{bottom:734.066667pt;}
.y2c_c00401{bottom:734.640000pt;}
.y2d_c00401{bottom:735.026667pt;}
.y30_c00401{bottom:735.973333pt;}
.y2b_c00401{bottom:750.066667pt;}
.y27_c00401{bottom:750.440000pt;}
.y2a_c00401{bottom:751.400000pt;}
.y28_c00401{bottom:752.360000pt;}
.y29_c00401{bottom:753.693333pt;}
.y26_c00401{bottom:767.773333pt;}
.y23_c00401{bottom:768.360000pt;}
.y25_c00401{bottom:768.560000pt;}
.y24_c00401{bottom:769.693333pt;}
.y1e_c00401{bottom:784.360000pt;}
.y1c_c00401{bottom:784.733333pt;}
.y1b_c00401{bottom:785.106667pt;}
.y22_c00401{bottom:785.893333pt;}
.y21_c00401{bottom:786.066667pt;}
.y1f_c00401{bottom:786.440000pt;}
.y1a_c00401{bottom:787.026667pt;}
.y1d_c00401{bottom:787.226667pt;}
.y20_c00401{bottom:788.360000pt;}
.y13_c00401{bottom:802.440000pt;}
.y19_c00401{bottom:803.773333pt;}
.y15_c00401{bottom:804.360000pt;}
.y18_c00401{bottom:804.560000pt;}
.y17_c00401{bottom:804.733333pt;}
.y14_c00401{bottom:805.306667pt;}
.y16_c00401{bottom:805.693333pt;}
.yf_c00401{bottom:818.826667pt;}
.y12_c00401{bottom:819.773333pt;}
.y11_c00401{bottom:821.106667pt;}
.ye_c00401{bottom:821.693333pt;}
.y10_c00401{bottom:823.026667pt;}
.ya_c00401{bottom:838.440000pt;}
.y9_c00401{bottom:839.026667pt;}
.yd_c00401{bottom:839.226667pt;}
.yb_c00401{bottom:840.360000pt;}
.yc_c00401{bottom:841.306667pt;}
.y7_c00401{bottom:853.693333pt;}
.y5_c00401{bottom:855.026667pt;}
.y6_c00401{bottom:855.773333pt;}
.y2_c00401{bottom:856.360000pt;}
.y4_c00401{bottom:856.560000pt;}
.y8_c00401{bottom:857.306667pt;}
.y3_c00401{bottom:857.693333pt;}
.y1_c00401{bottom:888.360000pt;}
.h2_c00401{height:20.466875pt;}
.h7_c00401{height:22.303646pt;}
.h4_c00401{height:27.879557pt;}
.h1_c00401{height:31.618698pt;}
.h6_c00401{height:35.357839pt;}
.h8_c00401{height:36.952031pt;}
.h3_c00401{height:39.031380pt;}
.h5_c00401{height:42.770521pt;}
.h0_c00401{height:1186.666667pt;}
.w0_c00401{width:782.666667pt;}
.x0_c00401{left:0.000000pt;}
.x9b_c00401{left:134.666667pt;}
.x10_c00401{left:136.000000pt;}
.x5c_c00401{left:137.706667pt;}
.xdd_c00401{left:141.333333pt;}
.xcd_c00401{left:142.293333pt;}
.xd4_c00401{left:147.626667pt;}
.xc2_c00401{left:149.333333pt;}
.x3_c00401{left:150.666667pt;}
.x1d_c00401{left:153.333333pt;}
.xb7_c00401{left:154.293333pt;}
.xac_c00401{left:159.040000pt;}
.x66_c00401{left:160.000000pt;}
.xa1_c00401{left:161.333333pt;}
.x8a_c00401{left:163.040000pt;}
.x90_c00401{left:168.000000pt;}
.xde_c00401{left:169.333333pt;}
.xce_c00401{left:170.666667pt;}
.x3b_c00401{left:173.333333pt;}
.x56_c00401{left:176.760000pt;}
.x4_c00401{left:178.666667pt;}
.x2e_c00401{left:180.373333pt;}
.xc5_c00401{left:183.040000pt;}
.x91_c00401{left:184.000000pt;}
.xad_c00401{left:185.706667pt;}
.x8b_c00401{left:186.666667pt;}
.xa2_c00401{left:188.960000pt;}
.x5d_c00401{left:190.666667pt;}
.x6b_c00401{left:192.000000pt;}
.xc9_c00401{left:194.666667pt;}
.x9c_c00401{left:196.000000pt;}
.x4a_c00401{left:196.960000pt;}
.x76_c00401{left:198.666667pt;}
.x11_c00401{left:200.960000pt;}
.xb1_c00401{left:203.040000pt;}
.xb8_c00401{left:204.000000pt;}
.xe6_c00401{left:205.333333pt;}
.xa3_c00401{left:207.040000pt;}
.xd5_c00401{left:208.373333pt;}
.x6c_c00401{left:209.333333pt;}
.x92_c00401{left:212.000000pt;}
.x4b_c00401{left:215.040000pt;}
.xc6_c00401{left:216.000000pt;}
.xe2_c00401{left:217.333333pt;}
.xe8_c00401{left:218.666667pt;}
.x26_c00401{left:220.373333pt;}
.x1e_c00401{left:221.706667pt;}
.xbc_c00401{left:223.040000pt;}
.x5_c00401{left:226.293333pt;}
.x3c_c00401{left:228.373333pt;}
.x2f_c00401{left:231.626667pt;}
.x8c_c00401{left:232.960000pt;}
.x5e_c00401{left:234.293333pt;}
.x12_c00401{left:237.333333pt;}
.x4c_c00401{left:238.666667pt;}
.x77_c00401{left:240.000000pt;}
.x6_c00401{left:242.293333pt;}
.x1f_c00401{left:245.333333pt;}
.x27_c00401{left:246.293333pt;}
.x94_c00401{left:247.626667pt;}
.xa9_c00401{left:248.960000pt;}
.xe9_c00401{left:251.040000pt;}
.xbd_c00401{left:253.333333pt;}
.x6d_c00401{left:254.293333pt;}
.xdf_c00401{left:257.706667pt;}
.x30_c00401{left:258.666667pt;}
.x3d_c00401{left:261.333333pt;}
.xcf_c00401{left:263.040000pt;}
.x95_c00401{left:264.373333pt;}
.xa4_c00401{left:265.706667pt;}
.xbe_c00401{left:266.666667pt;}
.x9d_c00401{left:268.960000pt;}
.xb9_c00401{left:271.040000pt;}
.x4d_c00401{left:272.000000pt;}
.x8d_c00401{left:272.960000pt;}
.xd6_c00401{left:275.040000pt;}
.x57_c00401{left:280.000000pt;}
.x6e_c00401{left:281.706667pt;}
.x13_c00401{left:284.000000pt;}
.xb2_c00401{left:288.000000pt;}
.xe0_c00401{left:289.706667pt;}
.x8e_c00401{left:292.000000pt;}
.x78_c00401{left:292.960000pt;}
.xa5_c00401{left:294.666667pt;}
.xc0_c00401{left:296.573333pt;}
.x5f_c00401{left:298.666667pt;}
.xc3_c00401{left:300.373333pt;}
.x31_c00401{left:301.333333pt;}
.x7_c00401{left:304.373333pt;}
.x43_c00401{left:306.666667pt;}
.xd7_c00401{left:308.000000pt;}
.x8f_c00401{left:308.960000pt;}
.x14_c00401{left:310.666667pt;}
.xaa_c00401{left:312.000000pt;}
.x28_c00401{left:312.960000pt;}
.x6f_c00401{left:314.666667pt;}
.x67_c00401{left:316.000000pt;}
.x32_c00401{left:317.706667pt;}
.x79_c00401{left:320.373333pt;}
.x81_c00401{left:321.333333pt;}
.x9e_c00401{left:324.000000pt;}
.xd0_c00401{left:324.960000pt;}
.x20_c00401{left:326.293333pt;}
.xd8_c00401{left:328.000000pt;}
.x1_c00401{left:328.960000pt;}
.x15_c00401{left:334.666667pt;}
.xbf_c00401{left:336.373333pt;}
.x8_c00401{left:337.333333pt;}
.x3e_c00401{left:340.000000pt;}
.x29_c00401{left:341.706667pt;}
.x96_c00401{left:342.666667pt;}
.x7a_c00401{left:344.373333pt;}
.x9_c00401{left:347.040000pt;}
.x68_c00401{left:348.000000pt;}
.x60_c00401{left:349.333333pt;}
.x33_c00401{left:352.373333pt;}
.x21_c00401{left:353.706667pt;}
.x3f_c00401{left:355.040000pt;}
.x44_c00401{left:357.333333pt;}
.x70_c00401{left:359.626667pt;}
.x4e_c00401{left:362.293333pt;}
.x2a_c00401{left:368.373333pt;}
.x61_c00401{left:372.373333pt;}
.x2_c00401{left:375.240000pt;}
.x22_c00401{left:376.960000pt;}
.xa_c00401{left:379.040000pt;}
.xb3_c00401{left:380.000000pt;}
.xe1_c00401{left:381.333333pt;}
.x4f_c00401{left:382.293333pt;}
.xe3_c00401{left:384.000000pt;}
.x16_c00401{left:384.960000pt;}
.x82_c00401{left:387.040000pt;}
.x7b_c00401{left:388.373333pt;}
.x34_c00401{left:389.333333pt;}
.xd9_c00401{left:390.293333pt;}
.x45_c00401{left:392.000000pt;}
.x58_c00401{left:394.293333pt;}
.x62_c00401{left:396.960000pt;}
.x71_c00401{left:400.373333pt;}
.x97_c00401{left:405.333333pt;}
.x69_c00401{left:409.706667pt;}
.xd1_c00401{left:411.040000pt;}
.x17_c00401{left:412.000000pt;}
.xda_c00401{left:415.040000pt;}
.x72_c00401{left:417.333333pt;}
.x50_c00401{left:420.000000pt;}
.xae_c00401{left:421.706667pt;}
.x98_c00401{left:423.040000pt;}
.xb_c00401{left:424.960000pt;}
.x2b_c00401{left:427.040000pt;}
.x83_c00401{left:430.293333pt;}
.xc1_c00401{left:431.240000pt;}
.x9f_c00401{left:433.333333pt;}
.x18_c00401{left:434.666667pt;}
.xc4_c00401{left:436.000000pt;}
.x51_c00401{left:437.706667pt;}
.xca_c00401{left:440.960000pt;}
.xd2_c00401{left:442.466667pt;}
.x46_c00401{left:444.373333pt;}
.x84_c00401{left:448.000000pt;}
.x35_c00401{left:450.666667pt;}
.xc_c00401{left:452.000000pt;}
.xc7_c00401{left:453.333333pt;}
.xab_c00401{left:455.626667pt;}
.x40_c00401{left:456.960000pt;}
.xb4_c00401{left:461.706667pt;}
.x93_c00401{left:464.373333pt;}
.x23_c00401{left:466.293333pt;}
.x7c_c00401{left:470.293333pt;}
.x41_c00401{left:472.000000pt;}
.xe4_c00401{left:474.666667pt;}
.x63_c00401{left:475.626667pt;}
.x36_c00401{left:477.333333pt;}
.x85_c00401{left:482.293333pt;}
.x52_c00401{left:484.373333pt;}
.x7d_c00401{left:485.706667pt;}
.x59_c00401{left:491.040000pt;}
.xaf_c00401{left:494.666667pt;}
.x73_c00401{left:497.333333pt;}
.xba_c00401{left:500.960000pt;}
.xa6_c00401{left:504.373333pt;}
.x19_c00401{left:505.333333pt;}
.x64_c00401{left:506.293333pt;}
.x7e_c00401{left:509.706667pt;}
.x86_c00401{left:510.666667pt;}
.x47_c00401{left:512.000000pt;}
.x37_c00401{left:515.626667pt;}
.x42_c00401{left:517.706667pt;}
.x53_c00401{left:518.666667pt;}
.xe5_c00401{left:520.000000pt;}
.xb0_c00401{left:520.960000pt;}
.xcb_c00401{left:524.000000pt;}
.x74_c00401{left:525.706667pt;}
.x1a_c00401{left:526.666667pt;}
.x48_c00401{left:528.000000pt;}
.xe7_c00401{left:529.706667pt;}
.xd_c00401{left:535.040000pt;}
.x99_c00401{left:536.960000pt;}
.xdb_c00401{left:541.333333pt;}
.x1b_c00401{left:545.706667pt;}
.x87_c00401{left:546.666667pt;}
.x7f_c00401{left:550.666667pt;}
.x5a_c00401{left:553.333333pt;}
.x24_c00401{left:554.666667pt;}
.x2c_c00401{left:558.666667pt;}
.xc8_c00401{left:560.000000pt;}
.x88_c00401{left:560.960000pt;}
.x80_c00401{left:564.373333pt;}
.xa7_c00401{left:565.706667pt;}
.x38_c00401{left:568.960000pt;}
.xdc_c00401{left:570.466667pt;}
.xa0_c00401{left:576.000000pt;}
.x2d_c00401{left:577.333333pt;}
.x6a_c00401{left:580.960000pt;}
.xcc_c00401{left:584.000000pt;}
.x54_c00401{left:586.666667pt;}
.x5b_c00401{left:588.373333pt;}
.xea_c00401{left:592.000000pt;}
.x9a_c00401{left:595.040000pt;}
.xb5_c00401{left:596.000000pt;}
.xe_c00401{left:599.040000pt;}
.x49_c00401{left:600.000000pt;}
.x89_c00401{left:603.040000pt;}
.xb6_c00401{left:609.333333pt;}
.x1c_c00401{left:612.373333pt;}
.x39_c00401{left:613.333333pt;}
.x75_c00401{left:614.293333pt;}
.x25_c00401{left:617.706667pt;}
.xeb_c00401{left:624.960000pt;}
.x65_c00401{left:626.293333pt;}
.x55_c00401{left:627.626667pt;}
.xa8_c00401{left:629.706667pt;}
.x3a_c00401{left:631.040000pt;}
.xbb_c00401{left:634.666667pt;}
.xf_c00401{left:636.960000pt;}
.xd3_c00401{left:641.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_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_58c933600b920ca9e07d516c.woff2')format("woff");}.ff1_c00402{font-family:ff1_c00402;line-height:1.688965;font-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_c00402{transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);}
.m20_c00402{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.m79_c00402{transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);}
.m4e_c00402{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m93_c00402{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m55_c00402{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m98_c00402{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m3f_c00402{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m1c_c00402{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m70_c00402{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m1a_c00402{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m56_c00402{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m6d_c00402{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m31_c00402{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.mbe_c00402{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m1b_c00402{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.mc6_c00402{transform:matrix(0.394555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394555,0.000000,0.000000,0.250000,0,0);}
.m23_c00402{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m1f_c00402{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m69_c00402{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.mb3_c00402{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m86_c00402{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m9d_c00402{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.m75_c00402{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m84_c00402{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m91_c00402{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_c00402{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m41_c00402{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m59_c00402{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mb2_c00402{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m9_c00402{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m22_c00402{transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);}
.m9f_c00402{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m4a_c00402{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m78_c00402{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m45_c00402{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m4b_c00402{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m7a_c00402{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mb_c00402{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m99_c00402{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m5c_c00402{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.m5a_c00402{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m32_c00402{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.mb1_c00402{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m29_c00402{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m7e_c00402{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m4_c00402{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m5b_c00402{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.ma5_c00402{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mbf_c00402{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.mbb_c00402{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m81_c00402{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m96_c00402{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m4c_c00402{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m6a_c00402{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m0_c00402{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m52_c00402{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m82_c00402{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m5f_c00402{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.ma_c00402{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m95_c00402{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m7d_c00402{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m10_c00402{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m74_c00402{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m7c_c00402{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m39_c00402{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m38_c00402{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m64_c00402{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m7f_c00402{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.m3d_c00402{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m50_c00402{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m14_c00402{transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);}
.m16_c00402{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.ma1_c00402{transform:matrix(0.444805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444805,0.000000,0.000000,0.250000,0,0);}
.ma9_c00402{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.m60_c00402{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.m51_c00402{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.mb9_c00402{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m3a_c00402{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m90_c00402{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m62_c00402{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m37_c00402{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m9b_c00402{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mbd_c00402{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.ma8_c00402{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m43_c00402{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.m24_c00402{transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);}
.m87_c00402{transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);}
.mc0_c00402{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m2e_c00402{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m7_c00402{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.mc5_c00402{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m4d_c00402{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m13_c00402{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m18_c00402{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m49_c00402{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m47_c00402{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.mb7_c00402{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m1d_c00402{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mad_c00402{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m9e_c00402{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m3c_c00402{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m2_c00402{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_c00402{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.maf_c00402{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m6b_c00402{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m7b_c00402{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m8b_c00402{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mf_c00402{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m21_c00402{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m4f_c00402{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m25_c00402{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m68_c00402{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m6_c00402{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mc4_c00402{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m30_c00402{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m5_c00402{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.ma2_c00402{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.mae_c00402{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.mac_c00402{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m2d_c00402{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m2f_c00402{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m83_c00402{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m27_c00402{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m6f_c00402{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m2a_c00402{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m44_c00402{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m33_c00402{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mc1_c00402{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m77_c00402{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.ma0_c00402{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m3e_c00402{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m6c_c00402{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m8c_c00402{transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);}
.m1e_c00402{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m6e_c00402{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m80_c00402{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m8e_c00402{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mbc_c00402{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.ma6_c00402{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m3b_c00402{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m9a_c00402{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m42_c00402{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m2c_c00402{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.ma4_c00402{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m67_c00402{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);}
.m15_c00402{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m97_c00402{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m36_c00402{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m73_c00402{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mc3_c00402{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.m48_c00402{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m53_c00402{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m8f_c00402{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m12_c00402{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m9c_c00402{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.ma7_c00402{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m54_c00402{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m85_c00402{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m61_c00402{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m11_c00402{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.me_c00402{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m3_c00402{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m8d_c00402{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.mb5_c00402{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);}
.m71_c00402{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m63_c00402{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m57_c00402{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m92_c00402{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);}
.mc_c00402{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m35_c00402{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m66_c00402{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m88_c00402{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m1_c00402{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m5e_c00402{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.md_c00402{transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);}
.m94_c00402{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m17_c00402{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mb6_c00402{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.mb4_c00402{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.mab_c00402{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.mba_c00402{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mb0_c00402{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.maa_c00402{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m65_c00402{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m5d_c00402{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mc2_c00402{transform:matrix(0.728676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728676,0.000000,0.000000,0.250000,0,0);}
.m28_c00402{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m8_c00402{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m46_c00402{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m72_c00402{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mb8_c00402{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m26_c00402{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m34_c00402{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m2b_c00402{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m19_c00402{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.ma3_c00402{transform:matrix(0.883088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.883088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.883088,0.000000,0.000000,0.250000,0,0);}
.m8a_c00402{transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);}
.m58_c00402{transform:matrix(7.274336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.274336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.274336,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;}
}
.ws1_c00402{word-spacing:0.000000px;}
.ws0_c00402{word-spacing:7.831440px;}
.fc0_c00402{color:transparent;}
.fs7_c00402{font-size:3.420000px;}
.fs6_c00402{font-size:6.780000px;}
.fs4_c00402{font-size:18.720000px;}
.fs1_c00402{font-size:20.400000px;}
.fs5_c00402{font-size:25.500000px;}
.fs2_c00402{font-size:28.920000px;}
.fs0_c00402{font-size:32.340000px;}
.fs3_c00402{font-size:35.700000px;}
.fs8_c00402{font-size:39.120000px;}
.y0_c00402{bottom:0.000000px;}
.yde_c00402{bottom:250.905000px;}
.ydd_c00402{bottom:251.745000px;}
.ye3_c00402{bottom:252.180000px;}
.ydf_c00402{bottom:253.050000px;}
.ye1_c00402{bottom:253.245000px;}
.ydc_c00402{bottom:253.905000px;}
.ye2_c00402{bottom:254.325000px;}
.ye0_c00402{bottom:255.405000px;}
.yd7_c00402{bottom:271.905000px;}
.yd8_c00402{bottom:272.745000px;}
.ydb_c00402{bottom:273.405000px;}
.yda_c00402{bottom:273.630000px;}
.yd9_c00402{bottom:274.905000px;}
.yd6_c00402{bottom:291.405000px;}
.yd3_c00402{bottom:292.245000px;}
.yd5_c00402{bottom:292.905000px;}
.yd4_c00402{bottom:293.130000px;}
.yd2_c00402{bottom:294.405000px;}
.yce_c00402{bottom:311.745000px;}
.ycb_c00402{bottom:311.970000px;}
.yd0_c00402{bottom:312.420000px;}
.ycf_c00402{bottom:312.630000px;}
.ycd_c00402{bottom:312.825000px;}
.yd1_c00402{bottom:313.245000px;}
.ycc_c00402{bottom:313.905000px;}
.yc9_c00402{bottom:330.855000px;}
.yc6_c00402{bottom:331.245000px;}
.yca_c00402{bottom:332.970000px;}
.yc7_c00402{bottom:333.405000px;}
.yc8_c00402{bottom:333.630000px;}
.yc3_c00402{bottom:352.470000px;}
.yc1_c00402{bottom:352.905000px;}
.yc5_c00402{bottom:353.130000px;}
.yc4_c00402{bottom:353.970000px;}
.yc2_c00402{bottom:354.405000px;}
.ybf_c00402{bottom:369.405000px;}
.ybe_c00402{bottom:369.855000px;}
.ybd_c00402{bottom:370.245000px;}
.yc0_c00402{bottom:370.905000px;}
.ybc_c00402{bottom:371.745000px;}
.yb9_c00402{bottom:372.405000px;}
.ybb_c00402{bottom:372.630000px;}
.yba_c00402{bottom:373.470000px;}
.yb4_c00402{bottom:390.405000px;}
.yb7_c00402{bottom:390.825000px;}
.yb8_c00402{bottom:391.905000px;}
.yb6_c00402{bottom:392.130000px;}
.yb5_c00402{bottom:392.970000px;}
.yb3_c00402{bottom:393.405000px;}
.yb1_c00402{bottom:393.630000px;}
.yb2_c00402{bottom:394.470000px;}
.yb0_c00402{bottom:409.905000px;}
.yad_c00402{bottom:410.745000px;}
.yaf_c00402{bottom:411.630000px;}
.yae_c00402{bottom:411.825000px;}
.yac_c00402{bottom:412.470000px;}
.yab_c00402{bottom:412.905000px;}
.ya9_c00402{bottom:430.245000px;}
.ya7_c00402{bottom:431.550000px;}
.ya8_c00402{bottom:432.405000px;}
.yaa_c00402{bottom:432.630000px;}
.ya6_c00402{bottom:448.470000px;}
.ya4_c00402{bottom:449.745000px;}
.ya5_c00402{bottom:450.825000px;}
.ya3_c00402{bottom:469.245000px;}
.ya2_c00402{bottom:470.325000px;}
.ya1_c00402{bottom:470.745000px;}
.ya0_c00402{bottom:472.905000px;}
.y9f_c00402{bottom:487.905000px;}
.y9d_c00402{bottom:488.745000px;}
.y9e_c00402{bottom:490.245000px;}
.y9c_c00402{bottom:490.905000px;}
.y97_c00402{bottom:508.245000px;}
.y96_c00402{bottom:509.745000px;}
.y9b_c00402{bottom:510.420000px;}
.y99_c00402{bottom:510.630000px;}
.y95_c00402{bottom:511.050000px;}
.y9a_c00402{bottom:511.470000px;}
.y98_c00402{bottom:511.905000px;}
.y93_c00402{bottom:529.245000px;}
.y92_c00402{bottom:530.970000px;}
.y91_c00402{bottom:531.405000px;}
.y94_c00402{bottom:531.630000px;}
.y8c_c00402{bottom:547.905000px;}
.y8f_c00402{bottom:548.745000px;}
.y90_c00402{bottom:550.050000px;}
.y8e_c00402{bottom:550.470000px;}
.y8d_c00402{bottom:550.905000px;}
.y86_c00402{bottom:567.405000px;}
.y83_c00402{bottom:568.245000px;}
.y88_c00402{bottom:568.920000px;}
.y8a_c00402{bottom:569.325000px;}
.y8b_c00402{bottom:569.745000px;}
.y89_c00402{bottom:569.970000px;}
.y84_c00402{bottom:570.405000px;}
.y87_c00402{bottom:570.630000px;}
.y85_c00402{bottom:571.470000px;}
.y82_c00402{bottom:587.325000px;}
.y81_c00402{bottom:587.745000px;}
.y80_c00402{bottom:589.245000px;}
.y7f_c00402{bottom:589.470000px;}
.y7e_c00402{bottom:589.905000px;}
.y7d_c00402{bottom:606.405000px;}
.y7b_c00402{bottom:607.245000px;}
.y77_c00402{bottom:607.905000px;}
.y7c_c00402{bottom:608.745000px;}
.y7a_c00402{bottom:609.405000px;}
.y79_c00402{bottom:609.630000px;}
.y78_c00402{bottom:610.470000px;}
.y76_c00402{bottom:610.905000px;}
.y73_c00402{bottom:625.905000px;}
.y74_c00402{bottom:627.825000px;}
.y71_c00402{bottom:628.245000px;}
.y72_c00402{bottom:629.130000px;}
.y70_c00402{bottom:630.405000px;}
.y75_c00402{bottom:631.905000px;}
.y6e_c00402{bottom:647.745000px;}
.y6f_c00402{bottom:648.405000px;}
.y6d_c00402{bottom:649.470000px;}
.y6c_c00402{bottom:649.905000px;}
.y68_c00402{bottom:666.405000px;}
.y6a_c00402{bottom:667.245000px;}
.y6b_c00402{bottom:668.745000px;}
.y69_c00402{bottom:670.905000px;}
.y67_c00402{bottom:687.405000px;}
.y66_c00402{bottom:687.825000px;}
.y64_c00402{bottom:689.130000px;}
.y63_c00402{bottom:689.970000px;}
.y65_c00402{bottom:690.405000px;}
.y61_c00402{bottom:705.405000px;}
.y60_c00402{bottom:706.245000px;}
.y62_c00402{bottom:706.905000px;}
.y5d_c00402{bottom:725.745000px;}
.y5f_c00402{bottom:727.245000px;}
.y5e_c00402{bottom:728.130000px;}
.y5c_c00402{bottom:729.405000px;}
.y59_c00402{bottom:745.245000px;}
.y5a_c00402{bottom:746.745000px;}
.y5b_c00402{bottom:746.970000px;}
.y58_c00402{bottom:748.905000px;}
.y54_c00402{bottom:766.245000px;}
.y53_c00402{bottom:766.470000px;}
.y55_c00402{bottom:767.325000px;}
.y56_c00402{bottom:767.970000px;}
.y52_c00402{bottom:768.405000px;}
.y51_c00402{bottom:768.630000px;}
.y57_c00402{bottom:769.470000px;}
.y4e_c00402{bottom:785.745000px;}
.y50_c00402{bottom:785.970000px;}
.y4f_c00402{bottom:786.825000px;}
.y4d_c00402{bottom:805.245000px;}
.y4c_c00402{bottom:805.470000px;}
.y4a_c00402{bottom:807.405000px;}
.y4b_c00402{bottom:807.630000px;}
.y46_c00402{bottom:823.905000px;}
.y48_c00402{bottom:824.355000px;}
.y49_c00402{bottom:824.745000px;}
.y43_c00402{bottom:825.405000px;}
.y44_c00402{bottom:826.905000px;}
.y45_c00402{bottom:827.130000px;}
.y47_c00402{bottom:827.970000px;}
.y40_c00402{bottom:843.405000px;}
.y42_c00402{bottom:844.905000px;}
.y41_c00402{bottom:845.745000px;}
.y3e_c00402{bottom:863.745000px;}
.y3d_c00402{bottom:864.825000px;}
.y3f_c00402{bottom:865.245000px;}
.y39_c00402{bottom:865.905000px;}
.y3c_c00402{bottom:866.130000px;}
.y3b_c00402{bottom:866.970000px;}
.y3a_c00402{bottom:867.405000px;}
.y38_c00402{bottom:883.470000px;}
.y36_c00402{bottom:884.745000px;}
.y37_c00402{bottom:885.825000px;}
.y33_c00402{bottom:901.905000px;}
.y35_c00402{bottom:904.245000px;}
.y32_c00402{bottom:905.130000px;}
.y34_c00402{bottom:905.325000px;}
.y31_c00402{bottom:906.405000px;}
.y2e_c00402{bottom:923.745000px;}
.y30_c00402{bottom:924.825000px;}
.y2f_c00402{bottom:925.905000px;}
.y26_c00402{bottom:942.405000px;}
.y2a_c00402{bottom:943.245000px;}
.y2b_c00402{bottom:943.905000px;}
.y28_c00402{bottom:944.325000px;}
.y29_c00402{bottom:944.745000px;}
.y27_c00402{bottom:945.405000px;}
.y2d_c00402{bottom:945.630000px;}
.y2c_c00402{bottom:946.470000px;}
.y23_c00402{bottom:961.905000px;}
.y25_c00402{bottom:962.970000px;}
.y24_c00402{bottom:965.130000px;}
.y21_c00402{bottom:982.245000px;}
.y1f_c00402{bottom:984.405000px;}
.y20_c00402{bottom:984.630000px;}
.y22_c00402{bottom:985.470000px;}
.y1c_c00402{bottom:1000.905000px;}
.y1b_c00402{bottom:1001.745000px;}
.y1e_c00402{bottom:1002.825000px;}
.y1d_c00402{bottom:1003.245000px;}
.y17_c00402{bottom:1003.905000px;}
.y19_c00402{bottom:1004.130000px;}
.y1a_c00402{bottom:1004.970000px;}
.y18_c00402{bottom:1005.405000px;}
.y11_c00402{bottom:1020.405000px;}
.y15_c00402{bottom:1021.245000px;}
.y16_c00402{bottom:1021.470000px;}
.y14_c00402{bottom:1022.325000px;}
.y12_c00402{bottom:1022.745000px;}
.y13_c00402{bottom:1023.405000px;}
.yb_c00402{bottom:1040.745000px;}
.ye_c00402{bottom:1041.405000px;}
.y10_c00402{bottom:1042.245000px;}
.y9_c00402{bottom:1042.905000px;}
.yf_c00402{bottom:1043.130000px;}
.yd_c00402{bottom:1043.325000px;}
.yc_c00402{bottom:1043.970000px;}
.ya_c00402{bottom:1044.405000px;}
.y3_c00402{bottom:1060.905000px;}
.y6_c00402{bottom:1061.325000px;}
.y5_c00402{bottom:1061.745000px;}
.y7_c00402{bottom:1062.630000px;}
.y4_c00402{bottom:1063.905000px;}
.y8_c00402{bottom:1064.970000px;}
.y1_c00402{bottom:1098.825000px;}
.y2_c00402{bottom:1102.050000px;}
.h8_c00402{height:4.206533px;}
.h7_c00402{height:8.339268px;}
.h5_c00402{height:23.025234px;}
.h2_c00402{height:25.091602px;}
.h6_c00402{height:31.364502px;}
.h3_c00402{height:35.571035px;}
.h1_c00402{height:39.777568px;}
.h4_c00402{height:43.910303px;}
.h9_c00402{height:48.116836px;}
.h0_c00402{height:1335.000000px;}
.w0_c00402{width:880.500000px;}
.x0_c00402{left:0.000000px;}
.xa8_c00402{left:155.355000px;}
.xbc_c00402{left:156.420000px;}
.x3d_c00402{left:160.500000px;}
.x3_c00402{left:161.580000px;}
.x24_c00402{left:169.080000px;}
.xb3_c00402{left:170.580000px;}
.x1f_c00402{left:192.000000px;}
.x4_c00402{left:193.500000px;}
.xa2_c00402{left:195.000000px;}
.xce_c00402{left:196.080000px;}
.x3b_c00402{left:213.000000px;}
.x82_c00402{left:218.580000px;}
.x47_c00402{left:221.775000px;}
.x25_c00402{left:223.500000px;}
.x3e_c00402{left:225.000000px;}
.x5_c00402{left:226.920000px;}
.x89_c00402{left:231.000000px;}
.x9e_c00402{left:232.920000px;}
.x64_c00402{left:234.000000px;}
.x4f_c00402{left:235.500000px;}
.x20_c00402{left:237.420000px;}
.xa9_c00402{left:240.000000px;}
.xb4_c00402{left:241.500000px;}
.x96_c00402{left:244.080000px;}
.xde_c00402{left:247.080000px;}
.xc3_c00402{left:248.580000px;}
.xda_c00402{left:250.920000px;}
.x7d_c00402{left:252.000000px;}
.x85_c00402{left:253.500000px;}
.x68_c00402{left:255.420000px;}
.x30_c00402{left:256.500000px;}
.x72_c00402{left:258.420000px;}
.x50_c00402{left:259.920000px;}
.x48_c00402{left:262.080000px;}
.x21_c00402{left:264.000000px;}
.x62_c00402{left:265.275000px;}
.xb8_c00402{left:267.000000px;}
.x8e_c00402{left:268.080000px;}
.xcf_c00402{left:271.500000px;}
.x10_c00402{left:274.080000px;}
.x84_c00402{left:276.420000px;}
.x26_c00402{left:277.500000px;}
.x69_c00402{left:278.580000px;}
.x3f_c00402{left:282.000000px;}
.x6_c00402{left:284.580000px;}
.x58_c00402{left:286.500000px;}
.x8f_c00402{left:289.500000px;}
.x51_c00402{left:291.000000px;}
.x7e_c00402{left:292.500000px;}
.x27_c00402{left:295.500000px;}
.x97_c00402{left:296.580000px;}
.x86_c00402{left:299.580000px;}
.xa3_c00402{left:303.420000px;}
.xdc_c00402{left:304.920000px;}
.x59_c00402{left:309.000000px;}
.xc4_c00402{left:310.920000px;}
.x49_c00402{left:313.500000px;}
.x83_c00402{left:316.500000px;}
.x6a_c00402{left:319.080000px;}
.x5a_c00402{left:322.500000px;}
.xd0_c00402{left:327.000000px;}
.x11_c00402{left:328.080000px;}
.x7f_c00402{left:331.500000px;}
.xa4_c00402{left:333.000000px;}
.x7_c00402{left:334.080000px;}
.xc5_c00402{left:336.000000px;}
.x31_c00402{left:337.080000px;}
.xd4_c00402{left:340.080000px;}
.x8a_c00402{left:341.580000px;}
.x12_c00402{left:345.000000px;}
.x98_c00402{left:348.420000px;}
.x80_c00402{left:351.420000px;}
.x8_c00402{left:354.420000px;}
.x91_c00402{left:357.000000px;}
.x87_c00402{left:358.920000px;}
.x6b_c00402{left:360.000000px;}
.xc7_c00402{left:363.420000px;}
.xba_c00402{left:364.500000px;}
.xa5_c00402{left:365.580000px;}
.x52_c00402{left:367.080000px;}
.x9f_c00402{left:368.580000px;}
.x4a_c00402{left:370.500000px;}
.xbd_c00402{left:371.580000px;}
.x28_c00402{left:373.500000px;}
.x5b_c00402{left:376.500000px;}
.x65_c00402{left:377.580000px;}
.x40_c00402{left:379.920000px;}
.x13_c00402{left:381.000000px;}
.x32_c00402{left:382.080000px;}
.x73_c00402{left:385.500000px;}
.x29_c00402{left:387.000000px;}
.xc8_c00402{left:391.500000px;}
.xd5_c00402{left:393.420000px;}
.xa6_c00402{left:394.920000px;}
.x9_c00402{left:399.000000px;}
.xb9_c00402{left:402.000000px;}
.x2_c00402{left:406.500000px;}
.xaa_c00402{left:408.000000px;}
.x88_c00402{left:411.000000px;}
.xdd_c00402{left:412.080000px;}
.xbb_c00402{left:414.000000px;}
.x33_c00402{left:415.500000px;}
.x14_c00402{left:417.000000px;}
.xbe_c00402{left:418.080000px;}
.x41_c00402{left:419.580000px;}
.x99_c00402{left:421.500000px;}
.x81_c00402{left:423.420000px;}
.xdf_c00402{left:426.000000px;}
.x5c_c00402{left:429.000000px;}
.xa0_c00402{left:430.920000px;}
.x53_c00402{left:432.000000px;}
.x6c_c00402{left:433.080000px;}
.xdb_c00402{left:435.000000px;}
.x74_c00402{left:438.000000px;}
.x2a_c00402{left:439.500000px;}
.xa_c00402{left:441.000000px;}
.x9a_c00402{left:442.500000px;}
.xc9_c00402{left:447.000000px;}
.x34_c00402{left:450.420000px;}
.x15_c00402{left:451.500000px;}
.xab_c00402{left:453.000000px;}
.xbf_c00402{left:454.920000px;}
.xb5_c00402{left:462.000000px;}
.xa1_c00402{left:465.000000px;}
.x75_c00402{left:466.920000px;}
.xd6_c00402{left:468.420000px;}
.xac_c00402{left:471.420000px;}
.x6d_c00402{left:473.580000px;}
.xb_c00402{left:475.500000px;}
.x9b_c00402{left:480.000000px;}
.x2b_c00402{left:481.500000px;}
.x4b_c00402{left:483.420000px;}
.xc6_c00402{left:485.580000px;}
.x66_c00402{left:487.080000px;}
.x16_c00402{left:490.080000px;}
.x9c_c00402{left:496.500000px;}
.x5d_c00402{left:499.500000px;}
.x2c_c00402{left:501.000000px;}
.x42_c00402{left:502.920000px;}
.x6e_c00402{left:504.000000px;}
.x35_c00402{left:506.580000px;}
.xd1_c00402{left:511.080000px;}
.x92_c00402{left:513.000000px;}
.xad_c00402{left:514.500000px;}
.x8b_c00402{left:520.500000px;}
.x76_c00402{left:528.000000px;}
.x93_c00402{left:529.500000px;}
.xca_c00402{left:531.000000px;}
.x7b_c00402{left:532.080000px;}
.x6f_c00402{left:534.420000px;}
.x17_c00402{left:535.500000px;}
.x4c_c00402{left:541.500000px;}
.x2d_c00402{left:543.420000px;}
.xd7_c00402{left:546.000000px;}
.x77_c00402{left:547.500000px;}
.x54_c00402{left:549.000000px;}
.x70_c00402{left:550.080000px;}
.xc_c00402{left:552.420000px;}
.xd2_c00402{left:553.920000px;}
.x18_c00402{left:555.000000px;}
.x5e_c00402{left:558.000000px;}
.xcb_c00402{left:559.500000px;}
.x36_c00402{left:562.080000px;}
.x57_c00402{left:563.580000px;}
.x67_c00402{left:567.420000px;}
.x90_c00402{left:568.500000px;}
.x19_c00402{left:574.080000px;}
.x22_c00402{left:579.000000px;}
.x37_c00402{left:583.500000px;}
.xe0_c00402{left:585.000000px;}
.x94_c00402{left:588.420000px;}
.xd3_c00402{left:589.920000px;}
.xae_c00402{left:591.000000px;}
.x1a_c00402{left:594.000000px;}
.x43_c00402{left:598.080000px;}
.x55_c00402{left:606.000000px;}
.xd_c00402{left:607.920000px;}
.xb2_c00402{left:609.000000px;}
.x7c_c00402{left:610.920000px;}
.x5f_c00402{left:612.420000px;}
.xb6_c00402{left:613.500000px;}
.xc0_c00402{left:618.000000px;}
.x38_c00402{left:622.920000px;}
.x9d_c00402{left:624.000000px;}
.x1b_c00402{left:625.080000px;}
.x2e_c00402{left:627.000000px;}
.xd8_c00402{left:630.420000px;}
.x71_c00402{left:631.500000px;}
.x78_c00402{left:633.000000px;}
.xaf_c00402{left:637.080000px;}
.x44_c00402{left:643.080000px;}
.x60_c00402{left:648.000000px;}
.x1c_c00402{left:653.355000px;}
.x39_c00402{left:655.500000px;}
.xc1_c00402{left:657.000000px;}
.x79_c00402{left:658.080000px;}
.xcc_c00402{left:660.000000px;}
.x45_c00402{left:664.500000px;}
.xe_c00402{left:665.580000px;}
.x4d_c00402{left:672.420000px;}
.x8c_c00402{left:680.580000px;}
.x2f_c00402{left:682.500000px;}
.x1d_c00402{left:684.000000px;}
.xc2_c00402{left:685.500000px;}
.x23_c00402{left:688.500000px;}
.x7a_c00402{left:689.580000px;}
.xb7_c00402{left:691.080000px;}
.x95_c00402{left:693.000000px;}
.xf_c00402{left:696.000000px;}
.x3a_c00402{left:697.500000px;}
.x8d_c00402{left:699.000000px;}
.x4e_c00402{left:700.920000px;}
.x46_c00402{left:703.500000px;}
.x1_c00402{left:705.000000px;}
.x1e_c00402{left:706.920000px;}
.x61_c00402{left:708.420000px;}
.xd9_c00402{left:709.500000px;}
.xb0_c00402{left:711.000000px;}
.x56_c00402{left:715.500000px;}
.xa7_c00402{left:717.420000px;}
.xcd_c00402{left:719.580000px;}
.x3c_c00402{left:721.500000px;}
.x63_c00402{left:722.580000px;}
.xb1_c00402{left:726.000000px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.ls0_c00402{letter-spacing:0.000000pt;}
.ws1_c00402{word-spacing:0.000000pt;}
.ws0_c00402{word-spacing:6.961280pt;}
.fs7_c00402{font-size:3.040000pt;}
.fs6_c00402{font-size:6.026667pt;}
.fs4_c00402{font-size:16.640000pt;}
.fs1_c00402{font-size:18.133333pt;}
.fs5_c00402{font-size:22.666667pt;}
.fs2_c00402{font-size:25.706667pt;}
.fs0_c00402{font-size:28.746667pt;}
.fs3_c00402{font-size:31.733333pt;}
.fs8_c00402{font-size:34.773333pt;}
.y0_c00402{bottom:0.000000pt;}
.yde_c00402{bottom:223.026667pt;}
.ydd_c00402{bottom:223.773333pt;}
.ye3_c00402{bottom:224.160000pt;}
.ydf_c00402{bottom:224.933333pt;}
.ye1_c00402{bottom:225.106667pt;}
.ydc_c00402{bottom:225.693333pt;}
.ye2_c00402{bottom:226.066667pt;}
.ye0_c00402{bottom:227.026667pt;}
.yd7_c00402{bottom:241.693333pt;}
.yd8_c00402{bottom:242.440000pt;}
.ydb_c00402{bottom:243.026667pt;}
.yda_c00402{bottom:243.226667pt;}
.yd9_c00402{bottom:244.360000pt;}
.yd6_c00402{bottom:259.026667pt;}
.yd3_c00402{bottom:259.773333pt;}
.yd5_c00402{bottom:260.360000pt;}
.yd4_c00402{bottom:260.560000pt;}
.yd2_c00402{bottom:261.693333pt;}
.yce_c00402{bottom:277.106667pt;}
.ycb_c00402{bottom:277.306667pt;}
.yd0_c00402{bottom:277.706667pt;}
.ycf_c00402{bottom:277.893333pt;}
.ycd_c00402{bottom:278.066667pt;}
.yd1_c00402{bottom:278.440000pt;}
.ycc_c00402{bottom:279.026667pt;}
.yc9_c00402{bottom:294.093333pt;}
.yc6_c00402{bottom:294.440000pt;}
.yca_c00402{bottom:295.973333pt;}
.yc7_c00402{bottom:296.360000pt;}
.yc8_c00402{bottom:296.560000pt;}
.yc3_c00402{bottom:313.306667pt;}
.yc1_c00402{bottom:313.693333pt;}
.yc5_c00402{bottom:313.893333pt;}
.yc4_c00402{bottom:314.640000pt;}
.yc2_c00402{bottom:315.026667pt;}
.ybf_c00402{bottom:328.360000pt;}
.ybe_c00402{bottom:328.760000pt;}
.ybd_c00402{bottom:329.106667pt;}
.yc0_c00402{bottom:329.693333pt;}
.ybc_c00402{bottom:330.440000pt;}
.yb9_c00402{bottom:331.026667pt;}
.ybb_c00402{bottom:331.226667pt;}
.yba_c00402{bottom:331.973333pt;}
.yb4_c00402{bottom:347.026667pt;}
.yb7_c00402{bottom:347.400000pt;}
.yb8_c00402{bottom:348.360000pt;}
.yb6_c00402{bottom:348.560000pt;}
.yb5_c00402{bottom:349.306667pt;}
.yb3_c00402{bottom:349.693333pt;}
.yb1_c00402{bottom:349.893333pt;}
.yb2_c00402{bottom:350.640000pt;}
.yb0_c00402{bottom:364.360000pt;}
.yad_c00402{bottom:365.106667pt;}
.yaf_c00402{bottom:365.893333pt;}
.yae_c00402{bottom:366.066667pt;}
.yac_c00402{bottom:366.640000pt;}
.yab_c00402{bottom:367.026667pt;}
.ya9_c00402{bottom:382.440000pt;}
.ya7_c00402{bottom:383.600000pt;}
.ya8_c00402{bottom:384.360000pt;}
.yaa_c00402{bottom:384.560000pt;}
.ya6_c00402{bottom:398.640000pt;}
.ya4_c00402{bottom:399.773333pt;}
.ya5_c00402{bottom:400.733333pt;}
.ya3_c00402{bottom:417.106667pt;}
.ya2_c00402{bottom:418.066667pt;}
.ya1_c00402{bottom:418.440000pt;}
.ya0_c00402{bottom:420.360000pt;}
.y9f_c00402{bottom:433.693333pt;}
.y9d_c00402{bottom:434.440000pt;}
.y9e_c00402{bottom:435.773333pt;}
.y9c_c00402{bottom:436.360000pt;}
.y97_c00402{bottom:451.773333pt;}
.y96_c00402{bottom:453.106667pt;}
.y9b_c00402{bottom:453.706667pt;}
.y99_c00402{bottom:453.893333pt;}
.y95_c00402{bottom:454.266667pt;}
.y9a_c00402{bottom:454.640000pt;}
.y98_c00402{bottom:455.026667pt;}
.y93_c00402{bottom:470.440000pt;}
.y92_c00402{bottom:471.973333pt;}
.y91_c00402{bottom:472.360000pt;}
.y94_c00402{bottom:472.560000pt;}
.y8c_c00402{bottom:487.026667pt;}
.y8f_c00402{bottom:487.773333pt;}
.y90_c00402{bottom:488.933333pt;}
.y8e_c00402{bottom:489.306667pt;}
.y8d_c00402{bottom:489.693333pt;}
.y86_c00402{bottom:504.360000pt;}
.y83_c00402{bottom:505.106667pt;}
.y88_c00402{bottom:505.706667pt;}
.y8a_c00402{bottom:506.066667pt;}
.y8b_c00402{bottom:506.440000pt;}
.y89_c00402{bottom:506.640000pt;}
.y84_c00402{bottom:507.026667pt;}
.y87_c00402{bottom:507.226667pt;}
.y85_c00402{bottom:507.973333pt;}
.y82_c00402{bottom:522.066667pt;}
.y81_c00402{bottom:522.440000pt;}
.y80_c00402{bottom:523.773333pt;}
.y7f_c00402{bottom:523.973333pt;}
.y7e_c00402{bottom:524.360000pt;}
.y7d_c00402{bottom:539.026667pt;}
.y7b_c00402{bottom:539.773333pt;}
.y77_c00402{bottom:540.360000pt;}
.y7c_c00402{bottom:541.106667pt;}
.y7a_c00402{bottom:541.693333pt;}
.y79_c00402{bottom:541.893333pt;}
.y78_c00402{bottom:542.640000pt;}
.y76_c00402{bottom:543.026667pt;}
.y73_c00402{bottom:556.360000pt;}
.y74_c00402{bottom:558.066667pt;}
.y71_c00402{bottom:558.440000pt;}
.y72_c00402{bottom:559.226667pt;}
.y70_c00402{bottom:560.360000pt;}
.y75_c00402{bottom:561.693333pt;}
.y6e_c00402{bottom:575.773333pt;}
.y6f_c00402{bottom:576.360000pt;}
.y6d_c00402{bottom:577.306667pt;}
.y6c_c00402{bottom:577.693333pt;}
.y68_c00402{bottom:592.360000pt;}
.y6a_c00402{bottom:593.106667pt;}
.y6b_c00402{bottom:594.440000pt;}
.y69_c00402{bottom:596.360000pt;}
.y67_c00402{bottom:611.026667pt;}
.y66_c00402{bottom:611.400000pt;}
.y64_c00402{bottom:612.560000pt;}
.y63_c00402{bottom:613.306667pt;}
.y65_c00402{bottom:613.693333pt;}
.y61_c00402{bottom:627.026667pt;}
.y60_c00402{bottom:627.773333pt;}
.y62_c00402{bottom:628.360000pt;}
.y5d_c00402{bottom:645.106667pt;}
.y5f_c00402{bottom:646.440000pt;}
.y5e_c00402{bottom:647.226667pt;}
.y5c_c00402{bottom:648.360000pt;}
.y59_c00402{bottom:662.440000pt;}
.y5a_c00402{bottom:663.773333pt;}
.y5b_c00402{bottom:663.973333pt;}
.y58_c00402{bottom:665.693333pt;}
.y54_c00402{bottom:681.106667pt;}
.y53_c00402{bottom:681.306667pt;}
.y55_c00402{bottom:682.066667pt;}
.y56_c00402{bottom:682.640000pt;}
.y52_c00402{bottom:683.026667pt;}
.y51_c00402{bottom:683.226667pt;}
.y57_c00402{bottom:683.973333pt;}
.y4e_c00402{bottom:698.440000pt;}
.y50_c00402{bottom:698.640000pt;}
.y4f_c00402{bottom:699.400000pt;}
.y4d_c00402{bottom:715.773333pt;}
.y4c_c00402{bottom:715.973333pt;}
.y4a_c00402{bottom:717.693333pt;}
.y4b_c00402{bottom:717.893333pt;}
.y46_c00402{bottom:732.360000pt;}
.y48_c00402{bottom:732.760000pt;}
.y49_c00402{bottom:733.106667pt;}
.y43_c00402{bottom:733.693333pt;}
.y44_c00402{bottom:735.026667pt;}
.y45_c00402{bottom:735.226667pt;}
.y47_c00402{bottom:735.973333pt;}
.y40_c00402{bottom:749.693333pt;}
.y42_c00402{bottom:751.026667pt;}
.y41_c00402{bottom:751.773333pt;}
.y3e_c00402{bottom:767.773333pt;}
.y3d_c00402{bottom:768.733333pt;}
.y3f_c00402{bottom:769.106667pt;}
.y39_c00402{bottom:769.693333pt;}
.y3c_c00402{bottom:769.893333pt;}
.y3b_c00402{bottom:770.640000pt;}
.y3a_c00402{bottom:771.026667pt;}
.y38_c00402{bottom:785.306667pt;}
.y36_c00402{bottom:786.440000pt;}
.y37_c00402{bottom:787.400000pt;}
.y33_c00402{bottom:801.693333pt;}
.y35_c00402{bottom:803.773333pt;}
.y32_c00402{bottom:804.560000pt;}
.y34_c00402{bottom:804.733333pt;}
.y31_c00402{bottom:805.693333pt;}
.y2e_c00402{bottom:821.106667pt;}
.y30_c00402{bottom:822.066667pt;}
.y2f_c00402{bottom:823.026667pt;}
.y26_c00402{bottom:837.693333pt;}
.y2a_c00402{bottom:838.440000pt;}
.y2b_c00402{bottom:839.026667pt;}
.y28_c00402{bottom:839.400000pt;}
.y29_c00402{bottom:839.773333pt;}
.y27_c00402{bottom:840.360000pt;}
.y2d_c00402{bottom:840.560000pt;}
.y2c_c00402{bottom:841.306667pt;}
.y23_c00402{bottom:855.026667pt;}
.y25_c00402{bottom:855.973333pt;}
.y24_c00402{bottom:857.893333pt;}
.y21_c00402{bottom:873.106667pt;}
.y1f_c00402{bottom:875.026667pt;}
.y20_c00402{bottom:875.226667pt;}
.y22_c00402{bottom:875.973333pt;}
.y1c_c00402{bottom:889.693333pt;}
.y1b_c00402{bottom:890.440000pt;}
.y1e_c00402{bottom:891.400000pt;}
.y1d_c00402{bottom:891.773333pt;}
.y17_c00402{bottom:892.360000pt;}
.y19_c00402{bottom:892.560000pt;}
.y1a_c00402{bottom:893.306667pt;}
.y18_c00402{bottom:893.693333pt;}
.y11_c00402{bottom:907.026667pt;}
.y15_c00402{bottom:907.773333pt;}
.y16_c00402{bottom:907.973333pt;}
.y14_c00402{bottom:908.733333pt;}
.y12_c00402{bottom:909.106667pt;}
.y13_c00402{bottom:909.693333pt;}
.yb_c00402{bottom:925.106667pt;}
.ye_c00402{bottom:925.693333pt;}
.y10_c00402{bottom:926.440000pt;}
.y9_c00402{bottom:927.026667pt;}
.yf_c00402{bottom:927.226667pt;}
.yd_c00402{bottom:927.400000pt;}
.yc_c00402{bottom:927.973333pt;}
.ya_c00402{bottom:928.360000pt;}
.y3_c00402{bottom:943.026667pt;}
.y6_c00402{bottom:943.400000pt;}
.y5_c00402{bottom:943.773333pt;}
.y7_c00402{bottom:944.560000pt;}
.y4_c00402{bottom:945.693333pt;}
.y8_c00402{bottom:946.640000pt;}
.y1_c00402{bottom:976.733333pt;}
.y2_c00402{bottom:979.600000pt;}
.h8_c00402{height:3.739141pt;}
.h7_c00402{height:7.412682pt;}
.h5_c00402{height:20.466875pt;}
.h2_c00402{height:22.303646pt;}
.h6_c00402{height:27.879557pt;}
.h3_c00402{height:31.618698pt;}
.h1_c00402{height:35.357839pt;}
.h4_c00402{height:39.031380pt;}
.h9_c00402{height:42.770521pt;}
.h0_c00402{height:1186.666667pt;}
.w0_c00402{width:782.666667pt;}
.x0_c00402{left:0.000000pt;}
.xa8_c00402{left:138.093333pt;}
.xbc_c00402{left:139.040000pt;}
.x3d_c00402{left:142.666667pt;}
.x3_c00402{left:143.626667pt;}
.x24_c00402{left:150.293333pt;}
.xb3_c00402{left:151.626667pt;}
.x1f_c00402{left:170.666667pt;}
.x4_c00402{left:172.000000pt;}
.xa2_c00402{left:173.333333pt;}
.xce_c00402{left:174.293333pt;}
.x3b_c00402{left:189.333333pt;}
.x82_c00402{left:194.293333pt;}
.x47_c00402{left:197.133333pt;}
.x25_c00402{left:198.666667pt;}
.x3e_c00402{left:200.000000pt;}
.x5_c00402{left:201.706667pt;}
.x89_c00402{left:205.333333pt;}
.x9e_c00402{left:207.040000pt;}
.x64_c00402{left:208.000000pt;}
.x4f_c00402{left:209.333333pt;}
.x20_c00402{left:211.040000pt;}
.xa9_c00402{left:213.333333pt;}
.xb4_c00402{left:214.666667pt;}
.x96_c00402{left:216.960000pt;}
.xde_c00402{left:219.626667pt;}
.xc3_c00402{left:220.960000pt;}
.xda_c00402{left:223.040000pt;}
.x7d_c00402{left:224.000000pt;}
.x85_c00402{left:225.333333pt;}
.x68_c00402{left:227.040000pt;}
.x30_c00402{left:228.000000pt;}
.x72_c00402{left:229.706667pt;}
.x50_c00402{left:231.040000pt;}
.x48_c00402{left:232.960000pt;}
.x21_c00402{left:234.666667pt;}
.x62_c00402{left:235.800000pt;}
.xb8_c00402{left:237.333333pt;}
.x8e_c00402{left:238.293333pt;}
.xcf_c00402{left:241.333333pt;}
.x10_c00402{left:243.626667pt;}
.x84_c00402{left:245.706667pt;}
.x26_c00402{left:246.666667pt;}
.x69_c00402{left:247.626667pt;}
.x3f_c00402{left:250.666667pt;}
.x6_c00402{left:252.960000pt;}
.x58_c00402{left:254.666667pt;}
.x8f_c00402{left:257.333333pt;}
.x51_c00402{left:258.666667pt;}
.x7e_c00402{left:260.000000pt;}
.x27_c00402{left:262.666667pt;}
.x97_c00402{left:263.626667pt;}
.x86_c00402{left:266.293333pt;}
.xa3_c00402{left:269.706667pt;}
.xdc_c00402{left:271.040000pt;}
.x59_c00402{left:274.666667pt;}
.xc4_c00402{left:276.373333pt;}
.x49_c00402{left:278.666667pt;}
.x83_c00402{left:281.333333pt;}
.x6a_c00402{left:283.626667pt;}
.x5a_c00402{left:286.666667pt;}
.xd0_c00402{left:290.666667pt;}
.x11_c00402{left:291.626667pt;}
.x7f_c00402{left:294.666667pt;}
.xa4_c00402{left:296.000000pt;}
.x7_c00402{left:296.960000pt;}
.xc5_c00402{left:298.666667pt;}
.x31_c00402{left:299.626667pt;}
.xd4_c00402{left:302.293333pt;}
.x8a_c00402{left:303.626667pt;}
.x12_c00402{left:306.666667pt;}
.x98_c00402{left:309.706667pt;}
.x80_c00402{left:312.373333pt;}
.x8_c00402{left:315.040000pt;}
.x91_c00402{left:317.333333pt;}
.x87_c00402{left:319.040000pt;}
.x6b_c00402{left:320.000000pt;}
.xc7_c00402{left:323.040000pt;}
.xba_c00402{left:324.000000pt;}
.xa5_c00402{left:324.960000pt;}
.x52_c00402{left:326.293333pt;}
.x9f_c00402{left:327.626667pt;}
.x4a_c00402{left:329.333333pt;}
.xbd_c00402{left:330.293333pt;}
.x28_c00402{left:332.000000pt;}
.x5b_c00402{left:334.666667pt;}
.x65_c00402{left:335.626667pt;}
.x40_c00402{left:337.706667pt;}
.x13_c00402{left:338.666667pt;}
.x32_c00402{left:339.626667pt;}
.x73_c00402{left:342.666667pt;}
.x29_c00402{left:344.000000pt;}
.xc8_c00402{left:348.000000pt;}
.xd5_c00402{left:349.706667pt;}
.xa6_c00402{left:351.040000pt;}
.x9_c00402{left:354.666667pt;}
.xb9_c00402{left:357.333333pt;}
.x2_c00402{left:361.333333pt;}
.xaa_c00402{left:362.666667pt;}
.x88_c00402{left:365.333333pt;}
.xdd_c00402{left:366.293333pt;}
.xbb_c00402{left:368.000000pt;}
.x33_c00402{left:369.333333pt;}
.x14_c00402{left:370.666667pt;}
.xbe_c00402{left:371.626667pt;}
.x41_c00402{left:372.960000pt;}
.x99_c00402{left:374.666667pt;}
.x81_c00402{left:376.373333pt;}
.xdf_c00402{left:378.666667pt;}
.x5c_c00402{left:381.333333pt;}
.xa0_c00402{left:383.040000pt;}
.x53_c00402{left:384.000000pt;}
.x6c_c00402{left:384.960000pt;}
.xdb_c00402{left:386.666667pt;}
.x74_c00402{left:389.333333pt;}
.x2a_c00402{left:390.666667pt;}
.xa_c00402{left:392.000000pt;}
.x9a_c00402{left:393.333333pt;}
.xc9_c00402{left:397.333333pt;}
.x34_c00402{left:400.373333pt;}
.x15_c00402{left:401.333333pt;}
.xab_c00402{left:402.666667pt;}
.xbf_c00402{left:404.373333pt;}
.xb5_c00402{left:410.666667pt;}
.xa1_c00402{left:413.333333pt;}
.x75_c00402{left:415.040000pt;}
.xd6_c00402{left:416.373333pt;}
.xac_c00402{left:419.040000pt;}
.x6d_c00402{left:420.960000pt;}
.xb_c00402{left:422.666667pt;}
.x9b_c00402{left:426.666667pt;}
.x2b_c00402{left:428.000000pt;}
.x4b_c00402{left:429.706667pt;}
.xc6_c00402{left:431.626667pt;}
.x66_c00402{left:432.960000pt;}
.x16_c00402{left:435.626667pt;}
.x9c_c00402{left:441.333333pt;}
.x5d_c00402{left:444.000000pt;}
.x2c_c00402{left:445.333333pt;}
.x42_c00402{left:447.040000pt;}
.x6e_c00402{left:448.000000pt;}
.x35_c00402{left:450.293333pt;}
.xd1_c00402{left:454.293333pt;}
.x92_c00402{left:456.000000pt;}
.xad_c00402{left:457.333333pt;}
.x8b_c00402{left:462.666667pt;}
.x76_c00402{left:469.333333pt;}
.x93_c00402{left:470.666667pt;}
.xca_c00402{left:472.000000pt;}
.x7b_c00402{left:472.960000pt;}
.x6f_c00402{left:475.040000pt;}
.x17_c00402{left:476.000000pt;}
.x4c_c00402{left:481.333333pt;}
.x2d_c00402{left:483.040000pt;}
.xd7_c00402{left:485.333333pt;}
.x77_c00402{left:486.666667pt;}
.x54_c00402{left:488.000000pt;}
.x70_c00402{left:488.960000pt;}
.xc_c00402{left:491.040000pt;}
.xd2_c00402{left:492.373333pt;}
.x18_c00402{left:493.333333pt;}
.x5e_c00402{left:496.000000pt;}
.xcb_c00402{left:497.333333pt;}
.x36_c00402{left:499.626667pt;}
.x57_c00402{left:500.960000pt;}
.x67_c00402{left:504.373333pt;}
.x90_c00402{left:505.333333pt;}
.x19_c00402{left:510.293333pt;}
.x22_c00402{left:514.666667pt;}
.x37_c00402{left:518.666667pt;}
.xe0_c00402{left:520.000000pt;}
.x94_c00402{left:523.040000pt;}
.xd3_c00402{left:524.373333pt;}
.xae_c00402{left:525.333333pt;}
.x1a_c00402{left:528.000000pt;}
.x43_c00402{left:531.626667pt;}
.x55_c00402{left:538.666667pt;}
.xd_c00402{left:540.373333pt;}
.xb2_c00402{left:541.333333pt;}
.x7c_c00402{left:543.040000pt;}
.x5f_c00402{left:544.373333pt;}
.xb6_c00402{left:545.333333pt;}
.xc0_c00402{left:549.333333pt;}
.x38_c00402{left:553.706667pt;}
.x9d_c00402{left:554.666667pt;}
.x1b_c00402{left:555.626667pt;}
.x2e_c00402{left:557.333333pt;}
.xd8_c00402{left:560.373333pt;}
.x71_c00402{left:561.333333pt;}
.x78_c00402{left:562.666667pt;}
.xaf_c00402{left:566.293333pt;}
.x44_c00402{left:571.626667pt;}
.x60_c00402{left:576.000000pt;}
.x1c_c00402{left:580.760000pt;}
.x39_c00402{left:582.666667pt;}
.xc1_c00402{left:584.000000pt;}
.x79_c00402{left:584.960000pt;}
.xcc_c00402{left:586.666667pt;}
.x45_c00402{left:590.666667pt;}
.xe_c00402{left:591.626667pt;}
.x4d_c00402{left:597.706667pt;}
.x8c_c00402{left:604.960000pt;}
.x2f_c00402{left:606.666667pt;}
.x1d_c00402{left:608.000000pt;}
.xc2_c00402{left:609.333333pt;}
.x23_c00402{left:612.000000pt;}
.x7a_c00402{left:612.960000pt;}
.xb7_c00402{left:614.293333pt;}
.x95_c00402{left:616.000000pt;}
.xf_c00402{left:618.666667pt;}
.x3a_c00402{left:620.000000pt;}
.x8d_c00402{left:621.333333pt;}
.x4e_c00402{left:623.040000pt;}
.x46_c00402{left:625.333333pt;}
.x1_c00402{left:626.666667pt;}
.x1e_c00402{left:628.373333pt;}
.x61_c00402{left:629.706667pt;}
.xd9_c00402{left:630.666667pt;}
.xb0_c00402{left:632.000000pt;}
.x56_c00402{left:636.000000pt;}
.xa7_c00402{left:637.706667pt;}
.xcd_c00402{left:639.626667pt;}
.x3c_c00402{left:641.333333pt;}
.x63_c00402{left:642.293333pt;}
.xb1_c00402{left:645.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d8552590bb90f50b19e75f88.woff2')format("woff");}.ff1_c00403{font-family:ff1_c00403;line-height:1.688965;font-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_c00403{transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);}
.m91_c00403{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.m7d_c00403{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m57_c00403{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_c00403{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.m63_c00403{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m67_c00403{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m8c_c00403{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mbd_c00403{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.m93_c00403{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m8e_c00403{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m5b_c00403{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m5c_c00403{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m4e_c00403{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m1c_c00403{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mb_c00403{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.m78_c00403{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m3b_c00403{transform:matrix(0.388420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388420,0.000000,0.000000,0.250000,0,0);}
.m8d_c00403{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m6b_c00403{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m5f_c00403{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m6d_c00403{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m9c_c00403{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m61_c00403{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m1a_c00403{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m62_c00403{transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);}
.mb7_c00403{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m60_c00403{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.mad_c00403{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m47_c00403{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m69_c00403{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m13_c00403{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.mf_c00403{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m8a_c00403{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m2a_c00403{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.ma3_c00403{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.m73_c00403{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m44_c00403{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m46_c00403{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mb0_c00403{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.ma8_c00403{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.mb6_c00403{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m38_c00403{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m19_c00403{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mb3_c00403{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.mb9_c00403{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m35_c00403{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.ma0_c00403{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m8b_c00403{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m3f_c00403{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m48_c00403{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m25_c00403{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m20_c00403{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.ma9_c00403{transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);}
.m9a_c00403{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.mae_c00403{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m9e_c00403{transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);}
.m4f_c00403{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m14_c00403{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m7a_c00403{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.ma5_c00403{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m97_c00403{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m9b_c00403{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m90_c00403{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m6a_c00403{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m31_c00403{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m8f_c00403{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.ma2_c00403{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.mbb_c00403{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.ma1_c00403{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.maa_c00403{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m87_c00403{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m94_c00403{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m59_c00403{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mbe_c00403{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m79_c00403{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m7_c00403{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m24_c00403{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m1b_c00403{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m2e_c00403{transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);}
.m18_c00403{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m66_c00403{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m9f_c00403{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m52_c00403{transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);}
.m1d_c00403{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m3c_c00403{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m45_c00403{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.mbc_c00403{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.mac_c00403{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m4c_c00403{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m1f_c00403{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m27_c00403{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m53_c00403{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.ma_c00403{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.m2d_c00403{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mb5_c00403{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m2b_c00403{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_c00403{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m9d_c00403{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.mba_c00403{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m77_c00403{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m51_c00403{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m42_c00403{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m68_c00403{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m36_c00403{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.mbf_c00403{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m9_c00403{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m28_c00403{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m7f_c00403{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m56_c00403{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m6e_c00403{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m2_c00403{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m98_c00403{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m81_c00403{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m83_c00403{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m65_c00403{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m5_c00403{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m4a_c00403{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m34_c00403{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mb8_c00403{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m88_c00403{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m6_c00403{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m43_c00403{transform:matrix(0.541280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541280,0.000000,0.000000,0.250000,0,0);}
.maf_c00403{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m4_c00403{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m99_c00403{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m74_c00403{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.md_c00403{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m5e_c00403{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m3e_c00403{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m1_c00403{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m3_c00403{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m30_c00403{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m8_c00403{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m7b_c00403{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m40_c00403{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m33_c00403{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m4b_c00403{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m2f_c00403{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m22_c00403{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m1e_c00403{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.mc_c00403{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m76_c00403{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m49_c00403{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m2c_c00403{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mb2_c00403{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m92_c00403{transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);}
.m12_c00403{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m96_c00403{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m80_c00403{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);}
.m6f_c00403{transform:matrix(0.582353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582353,0.000000,0.000000,0.250000,0,0);}
.m32_c00403{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m41_c00403{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mab_c00403{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m75_c00403{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.ma4_c00403{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m16_c00403{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m50_c00403{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m21_c00403{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m26_c00403{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m7c_c00403{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m54_c00403{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.ma6_c00403{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);}
.mb1_c00403{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.ma7_c00403{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m10_c00403{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m37_c00403{transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);}
.m70_c00403{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m15_c00403{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m86_c00403{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m58_c00403{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m72_c00403{transform:matrix(0.675294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675294,0.000000,0.000000,0.250000,0,0);}
.m17_c00403{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.m0_c00403{transform:matrix(0.679487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679487,0.000000,0.000000,0.250000,0,0);}
.m5d_c00403{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m7e_c00403{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m3d_c00403{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m84_c00403{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m29_c00403{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m85_c00403{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m64_c00403{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m11_c00403{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m95_c00403{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m39_c00403{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m55_c00403{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m3a_c00403{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m23_c00403{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m89_c00403{transform:matrix(0.801282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.801282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.801282,0.000000,0.000000,0.250000,0,0);}
.mc0_c00403{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m82_c00403{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.m4d_c00403{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m5a_c00403{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m6c_c00403{transform:matrix(7.210526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.210526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.210526,0.000000,0.000000,0.250000,0,0);}
.v0_c00403{vertical-align:0.000000px;}
.v1_c00403{vertical-align:12.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;}
}
.ws2_c00403{word-spacing:0.000000px;}
.ws0_c00403{word-spacing:0.484656px;}
.ws1_c00403{word-spacing:56.209594px;}
.fc0_c00403{color:transparent;}
.fs6_c00403{font-size:3.420000px;}
.fs0_c00403{font-size:18.720000px;}
.fs7_c00403{font-size:20.400000px;}
.fs1_c00403{font-size:25.500000px;}
.fs2_c00403{font-size:28.920000px;}
.fs4_c00403{font-size:32.340000px;}
.fs3_c00403{font-size:35.700000px;}
.fs5_c00403{font-size:39.120000px;}
.y0_c00403{bottom:0.000000px;}
.yd5_c00403{bottom:251.745000px;}
.yd6_c00403{bottom:253.245000px;}
.yd4_c00403{bottom:253.905000px;}
.yd8_c00403{bottom:254.130000px;}
.yd7_c00403{bottom:255.405000px;}
.yd0_c00403{bottom:270.405000px;}
.yce_c00403{bottom:271.905000px;}
.yd2_c00403{bottom:272.745000px;}
.yd1_c00403{bottom:273.825000px;}
.yd3_c00403{bottom:274.470000px;}
.ycf_c00403{bottom:274.905000px;}
.ycd_c00403{bottom:291.405000px;}
.yca_c00403{bottom:292.245000px;}
.ycb_c00403{bottom:293.130000px;}
.ycc_c00403{bottom:294.405000px;}
.yc7_c00403{bottom:311.745000px;}
.yc9_c00403{bottom:312.825000px;}
.yc6_c00403{bottom:313.905000px;}
.yc8_c00403{bottom:314.970000px;}
.yc5_c00403{bottom:330.405000px;}
.yc1_c00403{bottom:331.245000px;}
.yc4_c00403{bottom:331.470000px;}
.yc3_c00403{bottom:332.745000px;}
.yc2_c00403{bottom:334.905000px;}
.yb9_c00403{bottom:349.905000px;}
.ybd_c00403{bottom:350.745000px;}
.yc0_c00403{bottom:351.180000px;}
.ybb_c00403{bottom:351.825000px;}
.ybe_c00403{bottom:352.245000px;}
.yba_c00403{bottom:352.905000px;}
.ybf_c00403{bottom:353.970000px;}
.ybc_c00403{bottom:354.405000px;}
.yb8_c00403{bottom:369.405000px;}
.yb3_c00403{bottom:370.245000px;}
.yb7_c00403{bottom:370.905000px;}
.yb6_c00403{bottom:371.550000px;}
.yb2_c00403{bottom:372.405000px;}
.yb5_c00403{bottom:372.630000px;}
.yb4_c00403{bottom:373.905000px;}
.yb0_c00403{bottom:389.970000px;}
.yb1_c00403{bottom:390.405000px;}
.yaf_c00403{bottom:392.325000px;}
.yae_c00403{bottom:393.405000px;}
.ya7_c00403{bottom:409.905000px;}
.ya8_c00403{bottom:410.745000px;}
.yac_c00403{bottom:410.970000px;}
.yab_c00403{bottom:412.050000px;}
.ya9_c00403{bottom:412.905000px;}
.yad_c00403{bottom:413.130000px;}
.yaa_c00403{bottom:413.970000px;}
.ya6_c00403{bottom:429.405000px;}
.ya0_c00403{bottom:430.245000px;}
.ya5_c00403{bottom:431.325000px;}
.ya2_c00403{bottom:431.745000px;}
.ya1_c00403{bottom:432.405000px;}
.ya4_c00403{bottom:433.470000px;}
.ya3_c00403{bottom:433.905000px;}
.y9c_c00403{bottom:449.745000px;}
.y9f_c00403{bottom:450.825000px;}
.y9b_c00403{bottom:451.905000px;}
.y9e_c00403{bottom:452.130000px;}
.y9d_c00403{bottom:453.405000px;}
.y9a_c00403{bottom:468.405000px;}
.y98_c00403{bottom:469.245000px;}
.y96_c00403{bottom:470.745000px;}
.y99_c00403{bottom:471.825000px;}
.y97_c00403{bottom:472.905000px;}
.y95_c00403{bottom:488.970000px;}
.y93_c00403{bottom:489.825000px;}
.y92_c00403{bottom:490.245000px;}
.y94_c00403{bottom:492.405000px;}
.y91_c00403{bottom:492.630000px;}
.y8f_c00403{bottom:508.905000px;}
.y90_c00403{bottom:510.630000px;}
.y8e_c00403{bottom:511.905000px;}
.y8d_c00403{bottom:512.970000px;}
.y89_c00403{bottom:529.245000px;}
.y8a_c00403{bottom:529.470000px;}
.y8b_c00403{bottom:530.130000px;}
.y8c_c00403{bottom:530.550000px;}
.y88_c00403{bottom:531.405000px;}
.y87_c00403{bottom:531.630000px;}
.y86_c00403{bottom:547.905000px;}
.y84_c00403{bottom:548.745000px;}
.y85_c00403{bottom:548.970000px;}
.y83_c00403{bottom:551.970000px;}
.y82_c00403{bottom:569.745000px;}
.y7e_c00403{bottom:570.405000px;}
.y81_c00403{bottom:570.825000px;}
.y80_c00403{bottom:571.470000px;}
.y7f_c00403{bottom:571.905000px;}
.y7a_c00403{bottom:587.745000px;}
.y7d_c00403{bottom:587.970000px;}
.y7b_c00403{bottom:589.245000px;}
.y7c_c00403{bottom:590.325000px;}
.y79_c00403{bottom:607.905000px;}
.y75_c00403{bottom:608.550000px;}
.y77_c00403{bottom:608.745000px;}
.y78_c00403{bottom:609.630000px;}
.y76_c00403{bottom:610.905000px;}
.y73_c00403{bottom:629.130000px;}
.y74_c00403{bottom:630.630000px;}
.y71_c00403{bottom:647.745000px;}
.y70_c00403{bottom:649.470000px;}
.y6f_c00403{bottom:649.905000px;}
.y72_c00403{bottom:650.130000px;}
.y6a_c00403{bottom:666.405000px;}
.y6e_c00403{bottom:667.470000px;}
.y6b_c00403{bottom:668.970000px;}
.y6c_c00403{bottom:669.405000px;}
.y6d_c00403{bottom:669.630000px;}
.y63_c00403{bottom:685.905000px;}
.y65_c00403{bottom:688.245000px;}
.y64_c00403{bottom:688.905000px;}
.y69_c00403{bottom:689.130000px;}
.y66_c00403{bottom:689.325000px;}
.y68_c00403{bottom:689.970000px;}
.y67_c00403{bottom:690.405000px;}
.y60_c00403{bottom:705.405000px;}
.y62_c00403{bottom:707.550000px;}
.y5f_c00403{bottom:708.405000px;}
.y61_c00403{bottom:708.630000px;}
.y5e_c00403{bottom:724.905000px;}
.y5c_c00403{bottom:725.970000px;}
.y5b_c00403{bottom:727.245000px;}
.y5d_c00403{bottom:728.130000px;}
.y5a_c00403{bottom:728.970000px;}
.y59_c00403{bottom:729.405000px;}
.y58_c00403{bottom:746.745000px;}
.y57_c00403{bottom:748.470000px;}
.y56_c00403{bottom:748.905000px;}
.y55_c00403{bottom:764.970000px;}
.y51_c00403{bottom:765.405000px;}
.y53_c00403{bottom:766.245000px;}
.y54_c00403{bottom:766.920000px;}
.y52_c00403{bottom:768.405000px;}
.y50_c00403{bottom:783.405000px;}
.y4a_c00403{bottom:784.905000px;}
.y4c_c00403{bottom:785.745000px;}
.y4b_c00403{bottom:786.630000px;}
.y4f_c00403{bottom:786.825000px;}
.y4e_c00403{bottom:787.905000px;}
.y4d_c00403{bottom:788.130000px;}
.y48_c00403{bottom:804.405000px;}
.y45_c00403{bottom:805.245000px;}
.y46_c00403{bottom:805.470000px;}
.y44_c00403{bottom:807.405000px;}
.y47_c00403{bottom:807.630000px;}
.y49_c00403{bottom:808.470000px;}
.y43_c00403{bottom:823.905000px;}
.y42_c00403{bottom:824.745000px;}
.y41_c00403{bottom:843.405000px;}
.y3e_c00403{bottom:844.905000px;}
.y40_c00403{bottom:845.745000px;}
.y3f_c00403{bottom:846.630000px;}
.y3a_c00403{bottom:863.970000px;}
.y3d_c00403{bottom:864.405000px;}
.y39_c00403{bottom:865.245000px;}
.y3b_c00403{bottom:866.130000px;}
.y3c_c00403{bottom:866.970000px;}
.y38_c00403{bottom:867.405000px;}
.y31_c00403{bottom:882.405000px;}
.y36_c00403{bottom:883.470000px;}
.y37_c00403{bottom:883.905000px;}
.y33_c00403{bottom:884.745000px;}
.y30_c00403{bottom:885.405000px;}
.y32_c00403{bottom:885.630000px;}
.y35_c00403{bottom:886.470000px;}
.y34_c00403{bottom:886.905000px;}
.y2d_c00403{bottom:904.245000px;}
.y2e_c00403{bottom:905.130000px;}
.y2c_c00403{bottom:905.325000px;}
.y2f_c00403{bottom:906.405000px;}
.y2a_c00403{bottom:923.745000px;}
.y2b_c00403{bottom:925.905000px;}
.y28_c00403{bottom:942.405000px;}
.y29_c00403{bottom:942.825000px;}
.y27_c00403{bottom:943.245000px;}
.y26_c00403{bottom:943.680000px;}
.y25_c00403{bottom:944.130000px;}
.y24_c00403{bottom:944.325000px;}
.y23_c00403{bottom:945.405000px;}
.y1f_c00403{bottom:961.905000px;}
.y21_c00403{bottom:962.745000px;}
.y22_c00403{bottom:964.470000px;}
.y1e_c00403{bottom:964.905000px;}
.y20_c00403{bottom:965.130000px;}
.y1d_c00403{bottom:965.970000px;}
.y1b_c00403{bottom:982.245000px;}
.y1a_c00403{bottom:984.405000px;}
.y1c_c00403{bottom:984.630000px;}
.y15_c00403{bottom:1001.745000px;}
.y18_c00403{bottom:1003.245000px;}
.y14_c00403{bottom:1003.905000px;}
.y19_c00403{bottom:1004.130000px;}
.y17_c00403{bottom:1004.970000px;}
.y16_c00403{bottom:1005.405000px;}
.y11_c00403{bottom:1020.405000px;}
.ye_c00403{bottom:1021.245000px;}
.yf_c00403{bottom:1021.470000px;}
.yc_c00403{bottom:1021.905000px;}
.y12_c00403{bottom:1022.745000px;}
.yd_c00403{bottom:1023.405000px;}
.y10_c00403{bottom:1023.630000px;}
.y13_c00403{bottom:1024.470000px;}
.y6_c00403{bottom:1040.745000px;}
.ya_c00403{bottom:1042.245000px;}
.y9_c00403{bottom:1042.905000px;}
.y8_c00403{bottom:1043.130000px;}
.yb_c00403{bottom:1043.325000px;}
.y7_c00403{bottom:1043.970000px;}
.y5_c00403{bottom:1061.745000px;}
.y3_c00403{bottom:1063.470000px;}
.y4_c00403{bottom:1063.905000px;}
.y2_c00403{bottom:1100.970000px;}
.y1_c00403{bottom:1103.130000px;}
.h8_c00403{height:4.206533px;}
.h1_c00403{height:23.025234px;}
.h9_c00403{height:25.091602px;}
.h2_c00403{height:31.364502px;}
.h3_c00403{height:35.571035px;}
.h5_c00403{height:39.777568px;}
.h4_c00403{height:43.910303px;}
.h7_c00403{height:47.571035px;}
.h6_c00403{height:48.116836px;}
.h0_c00403{height:1335.000000px;}
.w0_c00403{width:880.500000px;}
.x0_c00403{left:0.000000px;}
.xb8_c00403{left:151.080000px;}
.x2_c00403{left:153.000000px;}
.x1e_c00403{left:154.920000px;}
.xc6_c00403{left:166.080000px;}
.xa3_c00403{left:167.580000px;}
.x3f_c00403{left:169.080000px;}
.xc0_c00403{left:190.500000px;}
.x29_c00403{left:191.580000px;}
.x3_c00403{left:193.500000px;}
.x70_c00403{left:213.000000px;}
.x4_c00403{left:220.080000px;}
.x35_c00403{left:222.000000px;}
.xc7_c00403{left:225.000000px;}
.x88_c00403{left:229.920000px;}
.x94_c00403{left:231.000000px;}
.x58_c00403{left:232.920000px;}
.x84_c00403{left:234.420000px;}
.xcd_c00403{left:238.500000px;}
.x5_c00403{left:243.420000px;}
.x63_c00403{left:244.500000px;}
.x7c_c00403{left:245.580000px;}
.x67_c00403{left:247.080000px;}
.xad_c00403{left:249.420000px;}
.x40_c00403{left:250.500000px;}
.x1f_c00403{left:252.000000px;}
.xce_c00403{left:256.500000px;}
.x11_c00403{left:259.500000px;}
.xb9_c00403{left:261.000000px;}
.x4f_c00403{left:262.080000px;}
.x36_c00403{left:265.920000px;}
.x7d_c00403{left:267.420000px;}
.xc8_c00403{left:268.500000px;}
.xd5_c00403{left:270.420000px;}
.x12_c00403{left:271.920000px;}
.xae_c00403{left:276.000000px;}
.x6_c00403{left:280.920000px;}
.x37_c00403{left:283.920000px;}
.x89_c00403{left:285.420000px;}
.x59_c00403{left:286.500000px;}
.xa4_c00403{left:288.420000px;}
.xc9_c00403{left:289.920000px;}
.x71_c00403{left:291.000000px;}
.x7e_c00403{left:294.000000px;}
.x2a_c00403{left:296.580000px;}
.x13_c00403{left:303.000000px;}
.x41_c00403{left:304.500000px;}
.x20_c00403{left:305.580000px;}
.x7_c00403{left:308.580000px;}
.x68_c00403{left:310.080000px;}
.x4a_c00403{left:312.000000px;}
.x50_c00403{left:313.920000px;}
.x38_c00403{left:316.920000px;}
.x86_c00403{left:319.920000px;}
.x95_c00403{left:321.420000px;}
.xa9_c00403{left:322.500000px;}
.x21_c00403{left:324.000000px;}
.xba_c00403{left:325.920000px;}
.x2b_c00403{left:327.420000px;}
.x9b_c00403{left:330.000000px;}
.xaf_c00403{left:334.080000px;}
.x7f_c00403{left:336.420000px;}
.x8a_c00403{left:337.500000px;}
.x4b_c00403{left:339.000000px;}
.x82_c00403{left:340.080000px;}
.x39_c00403{left:342.420000px;}
.x14_c00403{left:345.000000px;}
.x5a_c00403{left:348.000000px;}
.x85_c00403{left:351.000000px;}
.x72_c00403{left:354.420000px;}
.x87_c00403{left:357.000000px;}
.x69_c00403{left:360.000000px;}
.x42_c00403{left:361.920000px;}
.xa8_c00403{left:363.000000px;}
.x22_c00403{left:364.080000px;}
.xb5_c00403{left:369.000000px;}
.x51_c00403{left:370.500000px;}
.x2c_c00403{left:373.500000px;}
.x8_c00403{left:376.500000px;}
.x73_c00403{left:379.500000px;}
.x4c_c00403{left:381.000000px;}
.xaa_c00403{left:382.080000px;}
.x9c_c00403{left:385.080000px;}
.x15_c00403{left:390.420000px;}
.xd0_c00403{left:391.500000px;}
.x43_c00403{left:396.000000px;}
.x3a_c00403{left:399.000000px;}
.xb0_c00403{left:400.920000px;}
.x23_c00403{left:402.000000px;}
.x83_c00403{left:405.000000px;}
.x16_c00403{left:406.920000px;}
.x1_c00403{left:409.500000px;}
.x52_c00403{left:411.000000px;}
.x9_c00403{left:413.580000px;}
.x9d_c00403{left:415.500000px;}
.x44_c00403{left:417.420000px;}
.xa5_c00403{left:418.920000px;}
.x5b_c00403{left:420.420000px;}
.x74_c00403{left:423.420000px;}
.x75_c00403{left:427.080000px;}
.x2d_c00403{left:430.500000px;}
.xc3_c00403{left:432.000000px;}
.xca_c00403{left:433.500000px;}
.xbb_c00403{left:438.000000px;}
.x17_c00403{left:439.920000px;}
.xb6_c00403{left:441.000000px;}
.xa_c00403{left:445.920000px;}
.x3b_c00403{left:447.000000px;}
.x53_c00403{left:448.080000px;}
.xbd_c00403{left:449.580000px;}
.x45_c00403{left:453.420000px;}
.x5c_c00403{left:454.920000px;}
.xb1_c00403{left:457.080000px;}
.x96_c00403{left:460.500000px;}
.x18_c00403{left:465.000000px;}
.x8b_c00403{left:466.500000px;}
.x9e_c00403{left:467.580000px;}
.x6a_c00403{left:471.000000px;}
.xa0_c00403{left:475.080000px;}
.xd1_c00403{left:476.580000px;}
.x2e_c00403{left:478.080000px;}
.x4d_c00403{left:480.420000px;}
.x97_c00403{left:481.920000px;}
.x5d_c00403{left:483.420000px;}
.x8c_c00403{left:484.500000px;}
.x91_c00403{left:486.000000px;}
.xc1_c00403{left:487.500000px;}
.x19_c00403{left:489.420000px;}
.xb_c00403{left:490.500000px;}
.x64_c00403{left:492.000000px;}
.x3c_c00403{left:493.920000px;}
.x2f_c00403{left:496.500000px;}
.xd2_c00403{left:502.920000px;}
.x24_c00403{left:504.000000px;}
.xbe_c00403{left:505.920000px;}
.x5e_c00403{left:510.420000px;}
.x8d_c00403{left:511.920000px;}
.xb2_c00403{left:513.000000px;}
.x6b_c00403{left:514.500000px;}
.x76_c00403{left:516.000000px;}
.xab_c00403{left:519.000000px;}
.x9f_c00403{left:520.920000px;}
.x1a_c00403{left:522.000000px;}
.x30_c00403{left:523.920000px;}
.x3d_c00403{left:528.000000px;}
.xc4_c00403{left:533.580000px;}
.x8e_c00403{left:536.580000px;}
.xbf_c00403{left:541.080000px;}
.x5f_c00403{left:544.500000px;}
.xa1_c00403{left:546.000000px;}
.x54_c00403{left:547.080000px;}
.xc_c00403{left:549.000000px;}
.x6c_c00403{left:550.080000px;}
.x77_c00403{left:553.080000px;}
.xb3_c00403{left:555.420000px;}
.x92_c00403{left:560.580000px;}
.xa6_c00403{left:562.500000px;}
.x1b_c00403{left:563.580000px;}
.x55_c00403{left:567.420000px;}
.x31_c00403{left:568.500000px;}
.xd3_c00403{left:571.920000px;}
.xac_c00403{left:580.920000px;}
.xbc_c00403{left:582.000000px;}
.x8f_c00403{left:586.080000px;}
.xc2_c00403{left:589.080000px;}
.xb4_c00403{left:591.000000px;}
.x46_c00403{left:592.500000px;}
.xd_c00403{left:598.080000px;}
.x98_c00403{left:601.080000px;}
.x6d_c00403{left:604.080000px;}
.x78_c00403{left:607.080000px;}
.xc5_c00403{left:609.000000px;}
.xa7_c00403{left:610.920000px;}
.xe_c00403{left:616.920000px;}
.xa2_c00403{left:619.920000px;}
.x25_c00403{left:621.000000px;}
.x99_c00403{left:622.500000px;}
.x6e_c00403{left:624.000000px;}
.x65_c00403{left:626.580000px;}
.x1c_c00403{left:630.000000px;}
.xcb_c00403{left:632.580000px;}
.xb7_c00403{left:637.080000px;}
.x93_c00403{left:639.000000px;}
.x90_c00403{left:640.080000px;}
.xf_c00403{left:643.920000px;}
.x56_c00403{left:645.000000px;}
.x26_c00403{left:646.080000px;}
.x60_c00403{left:647.580000px;}
.x47_c00403{left:649.500000px;}
.x9a_c00403{left:657.000000px;}
.x6f_c00403{left:660.420000px;}
.x79_c00403{left:663.420000px;}
.x61_c00403{left:666.000000px;}
.xd4_c00403{left:667.920000px;}
.x4e_c00403{left:669.000000px;}
.x27_c00403{left:670.920000px;}
.x32_c00403{left:672.000000px;}
.x48_c00403{left:673.080000px;}
.xcc_c00403{left:679.500000px;}
.x10_c00403{left:684.000000px;}
.x80_c00403{left:688.080000px;}
.x33_c00403{left:690.000000px;}
.x1d_c00403{left:691.080000px;}
.x7a_c00403{left:696.000000px;}
.x49_c00403{left:699.420000px;}
.x57_c00403{left:700.500000px;}
.x34_c00403{left:702.420000px;}
.x62_c00403{left:703.920000px;}
.x81_c00403{left:706.500000px;}
.x66_c00403{left:708.000000px;}
.x28_c00403{left:709.500000px;}
.xcf_c00403{left:713.580000px;}
.x3e_c00403{left:715.920000px;}
.x7b_c00403{left:717.000000px;}
@media print{
.v0_c00403{vertical-align:0.000000pt;}
.v1_c00403{vertical-align:10.666667pt;}
.ls0_c00403{letter-spacing:0.000000pt;}
.ws2_c00403{word-spacing:0.000000pt;}
.ws0_c00403{word-spacing:0.430806pt;}
.ws1_c00403{word-spacing:49.964084pt;}
.fs6_c00403{font-size:3.040000pt;}
.fs0_c00403{font-size:16.640000pt;}
.fs7_c00403{font-size:18.133333pt;}
.fs1_c00403{font-size:22.666667pt;}
.fs2_c00403{font-size:25.706667pt;}
.fs4_c00403{font-size:28.746667pt;}
.fs3_c00403{font-size:31.733333pt;}
.fs5_c00403{font-size:34.773333pt;}
.y0_c00403{bottom:0.000000pt;}
.yd5_c00403{bottom:223.773333pt;}
.yd6_c00403{bottom:225.106667pt;}
.yd4_c00403{bottom:225.693333pt;}
.yd8_c00403{bottom:225.893333pt;}
.yd7_c00403{bottom:227.026667pt;}
.yd0_c00403{bottom:240.360000pt;}
.yce_c00403{bottom:241.693333pt;}
.yd2_c00403{bottom:242.440000pt;}
.yd1_c00403{bottom:243.400000pt;}
.yd3_c00403{bottom:243.973333pt;}
.ycf_c00403{bottom:244.360000pt;}
.ycd_c00403{bottom:259.026667pt;}
.yca_c00403{bottom:259.773333pt;}
.ycb_c00403{bottom:260.560000pt;}
.ycc_c00403{bottom:261.693333pt;}
.yc7_c00403{bottom:277.106667pt;}
.yc9_c00403{bottom:278.066667pt;}
.yc6_c00403{bottom:279.026667pt;}
.yc8_c00403{bottom:279.973333pt;}
.yc5_c00403{bottom:293.693333pt;}
.yc1_c00403{bottom:294.440000pt;}
.yc4_c00403{bottom:294.640000pt;}
.yc3_c00403{bottom:295.773333pt;}
.yc2_c00403{bottom:297.693333pt;}
.yb9_c00403{bottom:311.026667pt;}
.ybd_c00403{bottom:311.773333pt;}
.yc0_c00403{bottom:312.160000pt;}
.ybb_c00403{bottom:312.733333pt;}
.ybe_c00403{bottom:313.106667pt;}
.yba_c00403{bottom:313.693333pt;}
.ybf_c00403{bottom:314.640000pt;}
.ybc_c00403{bottom:315.026667pt;}
.yb8_c00403{bottom:328.360000pt;}
.yb3_c00403{bottom:329.106667pt;}
.yb7_c00403{bottom:329.693333pt;}
.yb6_c00403{bottom:330.266667pt;}
.yb2_c00403{bottom:331.026667pt;}
.yb5_c00403{bottom:331.226667pt;}
.yb4_c00403{bottom:332.360000pt;}
.yb0_c00403{bottom:346.640000pt;}
.yb1_c00403{bottom:347.026667pt;}
.yaf_c00403{bottom:348.733333pt;}
.yae_c00403{bottom:349.693333pt;}
.ya7_c00403{bottom:364.360000pt;}
.ya8_c00403{bottom:365.106667pt;}
.yac_c00403{bottom:365.306667pt;}
.yab_c00403{bottom:366.266667pt;}
.ya9_c00403{bottom:367.026667pt;}
.yad_c00403{bottom:367.226667pt;}
.yaa_c00403{bottom:367.973333pt;}
.ya6_c00403{bottom:381.693333pt;}
.ya0_c00403{bottom:382.440000pt;}
.ya5_c00403{bottom:383.400000pt;}
.ya2_c00403{bottom:383.773333pt;}
.ya1_c00403{bottom:384.360000pt;}
.ya4_c00403{bottom:385.306667pt;}
.ya3_c00403{bottom:385.693333pt;}
.y9c_c00403{bottom:399.773333pt;}
.y9f_c00403{bottom:400.733333pt;}
.y9b_c00403{bottom:401.693333pt;}
.y9e_c00403{bottom:401.893333pt;}
.y9d_c00403{bottom:403.026667pt;}
.y9a_c00403{bottom:416.360000pt;}
.y98_c00403{bottom:417.106667pt;}
.y96_c00403{bottom:418.440000pt;}
.y99_c00403{bottom:419.400000pt;}
.y97_c00403{bottom:420.360000pt;}
.y95_c00403{bottom:434.640000pt;}
.y93_c00403{bottom:435.400000pt;}
.y92_c00403{bottom:435.773333pt;}
.y94_c00403{bottom:437.693333pt;}
.y91_c00403{bottom:437.893333pt;}
.y8f_c00403{bottom:452.360000pt;}
.y90_c00403{bottom:453.893333pt;}
.y8e_c00403{bottom:455.026667pt;}
.y8d_c00403{bottom:455.973333pt;}
.y89_c00403{bottom:470.440000pt;}
.y8a_c00403{bottom:470.640000pt;}
.y8b_c00403{bottom:471.226667pt;}
.y8c_c00403{bottom:471.600000pt;}
.y88_c00403{bottom:472.360000pt;}
.y87_c00403{bottom:472.560000pt;}
.y86_c00403{bottom:487.026667pt;}
.y84_c00403{bottom:487.773333pt;}
.y85_c00403{bottom:487.973333pt;}
.y83_c00403{bottom:490.640000pt;}
.y82_c00403{bottom:506.440000pt;}
.y7e_c00403{bottom:507.026667pt;}
.y81_c00403{bottom:507.400000pt;}
.y80_c00403{bottom:507.973333pt;}
.y7f_c00403{bottom:508.360000pt;}
.y7a_c00403{bottom:522.440000pt;}
.y7d_c00403{bottom:522.640000pt;}
.y7b_c00403{bottom:523.773333pt;}
.y7c_c00403{bottom:524.733333pt;}
.y79_c00403{bottom:540.360000pt;}
.y75_c00403{bottom:540.933333pt;}
.y77_c00403{bottom:541.106667pt;}
.y78_c00403{bottom:541.893333pt;}
.y76_c00403{bottom:543.026667pt;}
.y73_c00403{bottom:559.226667pt;}
.y74_c00403{bottom:560.560000pt;}
.y71_c00403{bottom:575.773333pt;}
.y70_c00403{bottom:577.306667pt;}
.y6f_c00403{bottom:577.693333pt;}
.y72_c00403{bottom:577.893333pt;}
.y6a_c00403{bottom:592.360000pt;}
.y6e_c00403{bottom:593.306667pt;}
.y6b_c00403{bottom:594.640000pt;}
.y6c_c00403{bottom:595.026667pt;}
.y6d_c00403{bottom:595.226667pt;}
.y63_c00403{bottom:609.693333pt;}
.y65_c00403{bottom:611.773333pt;}
.y64_c00403{bottom:612.360000pt;}
.y69_c00403{bottom:612.560000pt;}
.y66_c00403{bottom:612.733333pt;}
.y68_c00403{bottom:613.306667pt;}
.y67_c00403{bottom:613.693333pt;}
.y60_c00403{bottom:627.026667pt;}
.y62_c00403{bottom:628.933333pt;}
.y5f_c00403{bottom:629.693333pt;}
.y61_c00403{bottom:629.893333pt;}
.y5e_c00403{bottom:644.360000pt;}
.y5c_c00403{bottom:645.306667pt;}
.y5b_c00403{bottom:646.440000pt;}
.y5d_c00403{bottom:647.226667pt;}
.y5a_c00403{bottom:647.973333pt;}
.y59_c00403{bottom:648.360000pt;}
.y58_c00403{bottom:663.773333pt;}
.y57_c00403{bottom:665.306667pt;}
.y56_c00403{bottom:665.693333pt;}
.y55_c00403{bottom:679.973333pt;}
.y51_c00403{bottom:680.360000pt;}
.y53_c00403{bottom:681.106667pt;}
.y54_c00403{bottom:681.706667pt;}
.y52_c00403{bottom:683.026667pt;}
.y50_c00403{bottom:696.360000pt;}
.y4a_c00403{bottom:697.693333pt;}
.y4c_c00403{bottom:698.440000pt;}
.y4b_c00403{bottom:699.226667pt;}
.y4f_c00403{bottom:699.400000pt;}
.y4e_c00403{bottom:700.360000pt;}
.y4d_c00403{bottom:700.560000pt;}
.y48_c00403{bottom:715.026667pt;}
.y45_c00403{bottom:715.773333pt;}
.y46_c00403{bottom:715.973333pt;}
.y44_c00403{bottom:717.693333pt;}
.y47_c00403{bottom:717.893333pt;}
.y49_c00403{bottom:718.640000pt;}
.y43_c00403{bottom:732.360000pt;}
.y42_c00403{bottom:733.106667pt;}
.y41_c00403{bottom:749.693333pt;}
.y3e_c00403{bottom:751.026667pt;}
.y40_c00403{bottom:751.773333pt;}
.y3f_c00403{bottom:752.560000pt;}
.y3a_c00403{bottom:767.973333pt;}
.y3d_c00403{bottom:768.360000pt;}
.y39_c00403{bottom:769.106667pt;}
.y3b_c00403{bottom:769.893333pt;}
.y3c_c00403{bottom:770.640000pt;}
.y38_c00403{bottom:771.026667pt;}
.y31_c00403{bottom:784.360000pt;}
.y36_c00403{bottom:785.306667pt;}
.y37_c00403{bottom:785.693333pt;}
.y33_c00403{bottom:786.440000pt;}
.y30_c00403{bottom:787.026667pt;}
.y32_c00403{bottom:787.226667pt;}
.y35_c00403{bottom:787.973333pt;}
.y34_c00403{bottom:788.360000pt;}
.y2d_c00403{bottom:803.773333pt;}
.y2e_c00403{bottom:804.560000pt;}
.y2c_c00403{bottom:804.733333pt;}
.y2f_c00403{bottom:805.693333pt;}
.y2a_c00403{bottom:821.106667pt;}
.y2b_c00403{bottom:823.026667pt;}
.y28_c00403{bottom:837.693333pt;}
.y29_c00403{bottom:838.066667pt;}
.y27_c00403{bottom:838.440000pt;}
.y26_c00403{bottom:838.826667pt;}
.y25_c00403{bottom:839.226667pt;}
.y24_c00403{bottom:839.400000pt;}
.y23_c00403{bottom:840.360000pt;}
.y1f_c00403{bottom:855.026667pt;}
.y21_c00403{bottom:855.773333pt;}
.y22_c00403{bottom:857.306667pt;}
.y1e_c00403{bottom:857.693333pt;}
.y20_c00403{bottom:857.893333pt;}
.y1d_c00403{bottom:858.640000pt;}
.y1b_c00403{bottom:873.106667pt;}
.y1a_c00403{bottom:875.026667pt;}
.y1c_c00403{bottom:875.226667pt;}
.y15_c00403{bottom:890.440000pt;}
.y18_c00403{bottom:891.773333pt;}
.y14_c00403{bottom:892.360000pt;}
.y19_c00403{bottom:892.560000pt;}
.y17_c00403{bottom:893.306667pt;}
.y16_c00403{bottom:893.693333pt;}
.y11_c00403{bottom:907.026667pt;}
.ye_c00403{bottom:907.773333pt;}
.yf_c00403{bottom:907.973333pt;}
.yc_c00403{bottom:908.360000pt;}
.y12_c00403{bottom:909.106667pt;}
.yd_c00403{bottom:909.693333pt;}
.y10_c00403{bottom:909.893333pt;}
.y13_c00403{bottom:910.640000pt;}
.y6_c00403{bottom:925.106667pt;}
.ya_c00403{bottom:926.440000pt;}
.y9_c00403{bottom:927.026667pt;}
.y8_c00403{bottom:927.226667pt;}
.yb_c00403{bottom:927.400000pt;}
.y7_c00403{bottom:927.973333pt;}
.y5_c00403{bottom:943.773333pt;}
.y3_c00403{bottom:945.306667pt;}
.y4_c00403{bottom:945.693333pt;}
.y2_c00403{bottom:978.640000pt;}
.y1_c00403{bottom:980.560000pt;}
.h8_c00403{height:3.739141pt;}
.h1_c00403{height:20.466875pt;}
.h9_c00403{height:22.303646pt;}
.h2_c00403{height:27.879557pt;}
.h3_c00403{height:31.618698pt;}
.h5_c00403{height:35.357839pt;}
.h4_c00403{height:39.031380pt;}
.h7_c00403{height:42.285365pt;}
.h6_c00403{height:42.770521pt;}
.h0_c00403{height:1186.666667pt;}
.w0_c00403{width:782.666667pt;}
.x0_c00403{left:0.000000pt;}
.xb8_c00403{left:134.293333pt;}
.x2_c00403{left:136.000000pt;}
.x1e_c00403{left:137.706667pt;}
.xc6_c00403{left:147.626667pt;}
.xa3_c00403{left:148.960000pt;}
.x3f_c00403{left:150.293333pt;}
.xc0_c00403{left:169.333333pt;}
.x29_c00403{left:170.293333pt;}
.x3_c00403{left:172.000000pt;}
.x70_c00403{left:189.333333pt;}
.x4_c00403{left:195.626667pt;}
.x35_c00403{left:197.333333pt;}
.xc7_c00403{left:200.000000pt;}
.x88_c00403{left:204.373333pt;}
.x94_c00403{left:205.333333pt;}
.x58_c00403{left:207.040000pt;}
.x84_c00403{left:208.373333pt;}
.xcd_c00403{left:212.000000pt;}
.x5_c00403{left:216.373333pt;}
.x63_c00403{left:217.333333pt;}
.x7c_c00403{left:218.293333pt;}
.x67_c00403{left:219.626667pt;}
.xad_c00403{left:221.706667pt;}
.x40_c00403{left:222.666667pt;}
.x1f_c00403{left:224.000000pt;}
.xce_c00403{left:228.000000pt;}
.x11_c00403{left:230.666667pt;}
.xb9_c00403{left:232.000000pt;}
.x4f_c00403{left:232.960000pt;}
.x36_c00403{left:236.373333pt;}
.x7d_c00403{left:237.706667pt;}
.xc8_c00403{left:238.666667pt;}
.xd5_c00403{left:240.373333pt;}
.x12_c00403{left:241.706667pt;}
.xae_c00403{left:245.333333pt;}
.x6_c00403{left:249.706667pt;}
.x37_c00403{left:252.373333pt;}
.x89_c00403{left:253.706667pt;}
.x59_c00403{left:254.666667pt;}
.xa4_c00403{left:256.373333pt;}
.xc9_c00403{left:257.706667pt;}
.x71_c00403{left:258.666667pt;}
.x7e_c00403{left:261.333333pt;}
.x2a_c00403{left:263.626667pt;}
.x13_c00403{left:269.333333pt;}
.x41_c00403{left:270.666667pt;}
.x20_c00403{left:271.626667pt;}
.x7_c00403{left:274.293333pt;}
.x68_c00403{left:275.626667pt;}
.x4a_c00403{left:277.333333pt;}
.x50_c00403{left:279.040000pt;}
.x38_c00403{left:281.706667pt;}
.x86_c00403{left:284.373333pt;}
.x95_c00403{left:285.706667pt;}
.xa9_c00403{left:286.666667pt;}
.x21_c00403{left:288.000000pt;}
.xba_c00403{left:289.706667pt;}
.x2b_c00403{left:291.040000pt;}
.x9b_c00403{left:293.333333pt;}
.xaf_c00403{left:296.960000pt;}
.x7f_c00403{left:299.040000pt;}
.x8a_c00403{left:300.000000pt;}
.x4b_c00403{left:301.333333pt;}
.x82_c00403{left:302.293333pt;}
.x39_c00403{left:304.373333pt;}
.x14_c00403{left:306.666667pt;}
.x5a_c00403{left:309.333333pt;}
.x85_c00403{left:312.000000pt;}
.x72_c00403{left:315.040000pt;}
.x87_c00403{left:317.333333pt;}
.x69_c00403{left:320.000000pt;}
.x42_c00403{left:321.706667pt;}
.xa8_c00403{left:322.666667pt;}
.x22_c00403{left:323.626667pt;}
.xb5_c00403{left:328.000000pt;}
.x51_c00403{left:329.333333pt;}
.x2c_c00403{left:332.000000pt;}
.x8_c00403{left:334.666667pt;}
.x73_c00403{left:337.333333pt;}
.x4c_c00403{left:338.666667pt;}
.xaa_c00403{left:339.626667pt;}
.x9c_c00403{left:342.293333pt;}
.x15_c00403{left:347.040000pt;}
.xd0_c00403{left:348.000000pt;}
.x43_c00403{left:352.000000pt;}
.x3a_c00403{left:354.666667pt;}
.xb0_c00403{left:356.373333pt;}
.x23_c00403{left:357.333333pt;}
.x83_c00403{left:360.000000pt;}
.x16_c00403{left:361.706667pt;}
.x1_c00403{left:364.000000pt;}
.x52_c00403{left:365.333333pt;}
.x9_c00403{left:367.626667pt;}
.x9d_c00403{left:369.333333pt;}
.x44_c00403{left:371.040000pt;}
.xa5_c00403{left:372.373333pt;}
.x5b_c00403{left:373.706667pt;}
.x74_c00403{left:376.373333pt;}
.x75_c00403{left:379.626667pt;}
.x2d_c00403{left:382.666667pt;}
.xc3_c00403{left:384.000000pt;}
.xca_c00403{left:385.333333pt;}
.xbb_c00403{left:389.333333pt;}
.x17_c00403{left:391.040000pt;}
.xb6_c00403{left:392.000000pt;}
.xa_c00403{left:396.373333pt;}
.x3b_c00403{left:397.333333pt;}
.x53_c00403{left:398.293333pt;}
.xbd_c00403{left:399.626667pt;}
.x45_c00403{left:403.040000pt;}
.x5c_c00403{left:404.373333pt;}
.xb1_c00403{left:406.293333pt;}
.x96_c00403{left:409.333333pt;}
.x18_c00403{left:413.333333pt;}
.x8b_c00403{left:414.666667pt;}
.x9e_c00403{left:415.626667pt;}
.x6a_c00403{left:418.666667pt;}
.xa0_c00403{left:422.293333pt;}
.xd1_c00403{left:423.626667pt;}
.x2e_c00403{left:424.960000pt;}
.x4d_c00403{left:427.040000pt;}
.x97_c00403{left:428.373333pt;}
.x5d_c00403{left:429.706667pt;}
.x8c_c00403{left:430.666667pt;}
.x91_c00403{left:432.000000pt;}
.xc1_c00403{left:433.333333pt;}
.x19_c00403{left:435.040000pt;}
.xb_c00403{left:436.000000pt;}
.x64_c00403{left:437.333333pt;}
.x3c_c00403{left:439.040000pt;}
.x2f_c00403{left:441.333333pt;}
.xd2_c00403{left:447.040000pt;}
.x24_c00403{left:448.000000pt;}
.xbe_c00403{left:449.706667pt;}
.x5e_c00403{left:453.706667pt;}
.x8d_c00403{left:455.040000pt;}
.xb2_c00403{left:456.000000pt;}
.x6b_c00403{left:457.333333pt;}
.x76_c00403{left:458.666667pt;}
.xab_c00403{left:461.333333pt;}
.x9f_c00403{left:463.040000pt;}
.x1a_c00403{left:464.000000pt;}
.x30_c00403{left:465.706667pt;}
.x3d_c00403{left:469.333333pt;}
.xc4_c00403{left:474.293333pt;}
.x8e_c00403{left:476.960000pt;}
.xbf_c00403{left:480.960000pt;}
.x5f_c00403{left:484.000000pt;}
.xa1_c00403{left:485.333333pt;}
.x54_c00403{left:486.293333pt;}
.xc_c00403{left:488.000000pt;}
.x6c_c00403{left:488.960000pt;}
.x77_c00403{left:491.626667pt;}
.xb3_c00403{left:493.706667pt;}
.x92_c00403{left:498.293333pt;}
.xa6_c00403{left:500.000000pt;}
.x1b_c00403{left:500.960000pt;}
.x55_c00403{left:504.373333pt;}
.x31_c00403{left:505.333333pt;}
.xd3_c00403{left:508.373333pt;}
.xac_c00403{left:516.373333pt;}
.xbc_c00403{left:517.333333pt;}
.x8f_c00403{left:520.960000pt;}
.xc2_c00403{left:523.626667pt;}
.xb4_c00403{left:525.333333pt;}
.x46_c00403{left:526.666667pt;}
.xd_c00403{left:531.626667pt;}
.x98_c00403{left:534.293333pt;}
.x6d_c00403{left:536.960000pt;}
.x78_c00403{left:539.626667pt;}
.xc5_c00403{left:541.333333pt;}
.xa7_c00403{left:543.040000pt;}
.xe_c00403{left:548.373333pt;}
.xa2_c00403{left:551.040000pt;}
.x25_c00403{left:552.000000pt;}
.x99_c00403{left:553.333333pt;}
.x6e_c00403{left:554.666667pt;}
.x65_c00403{left:556.960000pt;}
.x1c_c00403{left:560.000000pt;}
.xcb_c00403{left:562.293333pt;}
.xb7_c00403{left:566.293333pt;}
.x93_c00403{left:568.000000pt;}
.x90_c00403{left:568.960000pt;}
.xf_c00403{left:572.373333pt;}
.x56_c00403{left:573.333333pt;}
.x26_c00403{left:574.293333pt;}
.x60_c00403{left:575.626667pt;}
.x47_c00403{left:577.333333pt;}
.x9a_c00403{left:584.000000pt;}
.x6f_c00403{left:587.040000pt;}
.x79_c00403{left:589.706667pt;}
.x61_c00403{left:592.000000pt;}
.xd4_c00403{left:593.706667pt;}
.x4e_c00403{left:594.666667pt;}
.x27_c00403{left:596.373333pt;}
.x32_c00403{left:597.333333pt;}
.x48_c00403{left:598.293333pt;}
.xcc_c00403{left:604.000000pt;}
.x10_c00403{left:608.000000pt;}
.x80_c00403{left:611.626667pt;}
.x33_c00403{left:613.333333pt;}
.x1d_c00403{left:614.293333pt;}
.x7a_c00403{left:618.666667pt;}
.x49_c00403{left:621.706667pt;}
.x57_c00403{left:622.666667pt;}
.x34_c00403{left:624.373333pt;}
.x62_c00403{left:625.706667pt;}
.x81_c00403{left:628.000000pt;}
.x66_c00403{left:629.333333pt;}
.x28_c00403{left:630.666667pt;}
.xcf_c00403{left:634.293333pt;}
.x3e_c00403{left:636.373333pt;}
.x7b_c00403{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_edee411590839ead0af9b708.woff2')format("woff");}.ff1_c00404{font-family:ff1_c00404;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m97_c00404{transform:matrix(0.302941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302941,0.000000,0.000000,0.250000,0,0);}
.m5a_c00404{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.m73_c00404{transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);}
.m1b_c00404{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m37_c00404{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m4f_c00404{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m5c_c00404{transform:matrix(0.368908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368908,0.000000,0.000000,0.250000,0,0);}
.mac_c00404{transform:matrix(0.371429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371429,0.000000,0.000000,0.250000,0,0);}
.m55_c00404{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m59_c00404{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.mad_c00404{transform:matrix(0.384586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384586,0.000000,0.000000,0.250000,0,0);}
.m67_c00404{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m72_c00404{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.ma2_c00404{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m4b_c00404{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m23_c00404{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m35_c00404{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m6c_c00404{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m80_c00404{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_c00404{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m7f_c00404{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.md_c00404{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m31_c00404{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m78_c00404{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m4a_c00404{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m58_c00404{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m4d_c00404{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m75_c00404{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mb0_c00404{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m66_c00404{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m44_c00404{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.m27_c00404{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m2c_c00404{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.ma8_c00404{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m41_c00404{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m93_c00404{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m91_c00404{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m4e_c00404{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.maa_c00404{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.ma1_c00404{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m7_c00404{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m3d_c00404{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m4c_c00404{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m25_c00404{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.m11_c00404{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m43_c00404{transform:matrix(0.429499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429499,0.000000,0.000000,0.250000,0,0);}
.m14_c00404{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m65_c00404{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m9c_c00404{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mf_c00404{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.mae_c00404{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.ma0_c00404{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m15_c00404{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m54_c00404{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m7a_c00404{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m33_c00404{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m9b_c00404{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.mab_c00404{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.m6e_c00404{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.m98_c00404{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.ma9_c00404{transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);}
.m36_c00404{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.m30_c00404{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m5d_c00404{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m0_c00404{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m9f_c00404{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m8b_c00404{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m2d_c00404{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.m69_c00404{transform:matrix(0.469748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469748,0.000000,0.000000,0.250000,0,0);}
.m2f_c00404{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m6b_c00404{transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);}
.m39_c00404{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m38_c00404{transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);}
.m5b_c00404{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.m74_c00404{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m10_c00404{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m18_c00404{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m9_c00404{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m7c_c00404{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m24_c00404{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m3c_c00404{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m2_c00404{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);}
.m77_c00404{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m4_c00404{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m64_c00404{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m7b_c00404{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m28_c00404{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m60_c00404{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m49_c00404{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m52_c00404{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m12_c00404{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m13_c00404{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m63_c00404{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m6a_c00404{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m2e_c00404{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.maf_c00404{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m8e_c00404{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m90_c00404{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m3a_c00404{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mb_c00404{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m62_c00404{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m79_c00404{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m8_c00404{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m5e_c00404{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m2a_c00404{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m8d_c00404{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m8a_c00404{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m57_c00404{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m94_c00404{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m26_c00404{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m71_c00404{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m16_c00404{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m48_c00404{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m9d_c00404{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m89_c00404{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m5f_c00404{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.ma3_c00404{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m96_c00404{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m42_c00404{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m68_c00404{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m56_c00404{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m9a_c00404{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m20_c00404{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m70_c00404{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m1a_c00404{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m95_c00404{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m84_c00404{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m82_c00404{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.ma4_c00404{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m3_c00404{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.m8f_c00404{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m76_c00404{transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);}
.ma_c00404{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m3f_c00404{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m1d_c00404{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m92_c00404{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m83_c00404{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.ma6_c00404{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m7d_c00404{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m3b_c00404{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m81_c00404{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.m51_c00404{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m45_c00404{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m19_c00404{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m29_c00404{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m87_c00404{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m6_c00404{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m5_c00404{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m7e_c00404{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.ma7_c00404{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m86_c00404{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.m3e_c00404{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);}
.m1c_c00404{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m47_c00404{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m32_c00404{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m1_c00404{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m88_c00404{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m40_c00404{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m22_c00404{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m17_c00404{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m21_c00404{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m1e_c00404{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m6d_c00404{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m9e_c00404{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m6f_c00404{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m46_c00404{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m8c_c00404{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.ma5_c00404{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m53_c00404{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m85_c00404{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m50_c00404{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.me_c00404{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m61_c00404{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m1f_c00404{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m2b_c00404{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m99_c00404{transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.954327,0.000000,0.000000,0.250000,0,0);}
.m34_c00404{transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.995614,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;}
}
.ws1_c00404{word-spacing:-6.184625px;}
.ws2_c00404{word-spacing:0.000000px;}
.ws0_c00404{word-spacing:12.118039px;}
._0_c00404{width:15.621927px;}
.fc0_c00404{color:transparent;}
.fs6_c00404{font-size:3.420000px;}
.fs4_c00404{font-size:18.720000px;}
.fs1_c00404{font-size:20.400000px;}
.fs2_c00404{font-size:25.500000px;}
.fs0_c00404{font-size:28.920000px;}
.fs5_c00404{font-size:32.340000px;}
.fs3_c00404{font-size:35.700000px;}
.fs7_c00404{font-size:39.120000px;}
.y0_c00404{bottom:0.000000px;}
.yc6_c00404{bottom:252.405000px;}
.yc7_c00404{bottom:253.245000px;}
.yc5_c00404{bottom:255.405000px;}
.yc2_c00404{bottom:271.680000px;}
.yc1_c00404{bottom:272.745000px;}
.yc4_c00404{bottom:272.970000px;}
.yc3_c00404{bottom:274.905000px;}
.ybc_c00404{bottom:291.405000px;}
.ybf_c00404{bottom:292.245000px;}
.ybe_c00404{bottom:293.325000px;}
.yba_c00404{bottom:293.550000px;}
.ybd_c00404{bottom:293.745000px;}
.ybb_c00404{bottom:294.405000px;}
.yc0_c00404{bottom:294.825000px;}
.yb3_c00404{bottom:311.745000px;}
.yb5_c00404{bottom:312.405000px;}
.yb7_c00404{bottom:313.245000px;}
.yb4_c00404{bottom:313.905000px;}
.yb8_c00404{bottom:314.130000px;}
.yb6_c00404{bottom:314.970000px;}
.yb9_c00404{bottom:315.630000px;}
.yb0_c00404{bottom:330.405000px;}
.yb1_c00404{bottom:331.245000px;}
.yae_c00404{bottom:331.470000px;}
.yb2_c00404{bottom:333.405000px;}
.yaf_c00404{bottom:333.630000px;}
.yad_c00404{bottom:334.905000px;}
.yac_c00404{bottom:349.905000px;}
.yaa_c00404{bottom:350.745000px;}
.yab_c00404{bottom:352.245000px;}
.ya9_c00404{bottom:352.905000px;}
.ya6_c00404{bottom:370.470000px;}
.ya3_c00404{bottom:370.905000px;}
.ya5_c00404{bottom:371.745000px;}
.ya4_c00404{bottom:372.630000px;}
.ya7_c00404{bottom:372.825000px;}
.ya8_c00404{bottom:373.905000px;}
.ya0_c00404{bottom:388.905000px;}
.y9e_c00404{bottom:390.405000px;}
.y9f_c00404{bottom:391.245000px;}
.ya1_c00404{bottom:392.130000px;}
.y9d_c00404{bottom:393.405000px;}
.y9c_c00404{bottom:393.630000px;}
.ya2_c00404{bottom:394.470000px;}
.y9b_c00404{bottom:419.745000px;}
.y9a_c00404{bottom:421.905000px;}
.y97_c00404{bottom:439.245000px;}
.y99_c00404{bottom:440.325000px;}
.y94_c00404{bottom:440.745000px;}
.y98_c00404{bottom:441.405000px;}
.y96_c00404{bottom:441.630000px;}
.y95_c00404{bottom:442.905000px;}
.y93_c00404{bottom:457.905000px;}
.y91_c00404{bottom:460.245000px;}
.y92_c00404{bottom:461.130000px;}
.y8f_c00404{bottom:461.970000px;}
.y90_c00404{bottom:462.405000px;}
.y8e_c00404{bottom:479.745000px;}
.y8a_c00404{bottom:480.630000px;}
.y8c_c00404{bottom:481.470000px;}
.y8b_c00404{bottom:481.905000px;}
.y8d_c00404{bottom:482.970000px;}
.y89_c00404{bottom:499.245000px;}
.y86_c00404{bottom:500.970000px;}
.y88_c00404{bottom:501.405000px;}
.y87_c00404{bottom:501.630000px;}
.y83_c00404{bottom:518.745000px;}
.y85_c00404{bottom:519.630000px;}
.y82_c00404{bottom:520.905000px;}
.y84_c00404{bottom:521.130000px;}
.y80_c00404{bottom:538.245000px;}
.y7e_c00404{bottom:540.405000px;}
.y7f_c00404{bottom:540.630000px;}
.y81_c00404{bottom:541.470000px;}
.y7d_c00404{bottom:556.905000px;}
.y7c_c00404{bottom:557.745000px;}
.y77_c00404{bottom:558.180000px;}
.y78_c00404{bottom:559.245000px;}
.y7a_c00404{bottom:560.130000px;}
.y7b_c00404{bottom:560.970000px;}
.y79_c00404{bottom:561.405000px;}
.y75_c00404{bottom:578.745000px;}
.y76_c00404{bottom:579.630000px;}
.y74_c00404{bottom:580.905000px;}
.y6f_c00404{bottom:607.245000px;}
.y72_c00404{bottom:609.405000px;}
.y73_c00404{bottom:609.630000px;}
.y70_c00404{bottom:610.470000px;}
.y71_c00404{bottom:610.905000px;}
.y6d_c00404{bottom:645.405000px;}
.y6e_c00404{bottom:646.905000px;}
.y6b_c00404{bottom:647.745000px;}
.y6c_c00404{bottom:649.905000px;}
.y6a_c00404{bottom:667.245000px;}
.y69_c00404{bottom:668.130000px;}
.y68_c00404{bottom:669.405000px;}
.y63_c00404{bottom:685.905000px;}
.y62_c00404{bottom:686.745000px;}
.y65_c00404{bottom:686.970000px;}
.y67_c00404{bottom:688.050000px;}
.y61_c00404{bottom:688.905000px;}
.y66_c00404{bottom:689.130000px;}
.y64_c00404{bottom:689.970000px;}
.y60_c00404{bottom:705.405000px;}
.y5d_c00404{bottom:706.245000px;}
.y5f_c00404{bottom:707.325000px;}
.y5e_c00404{bottom:708.405000px;}
.y5c_c00404{bottom:725.745000px;}
.y5b_c00404{bottom:727.905000px;}
.y5a_c00404{bottom:728.130000px;}
.y51_c00404{bottom:744.405000px;}
.y52_c00404{bottom:745.245000px;}
.y57_c00404{bottom:745.470000px;}
.y56_c00404{bottom:745.905000px;}
.y59_c00404{bottom:746.970000px;}
.y53_c00404{bottom:747.405000px;}
.y58_c00404{bottom:747.630000px;}
.y54_c00404{bottom:748.050000px;}
.y55_c00404{bottom:748.470000px;}
.y4f_c00404{bottom:765.405000px;}
.y50_c00404{bottom:767.130000px;}
.y4e_c00404{bottom:767.970000px;}
.y4c_c00404{bottom:784.470000px;}
.y4a_c00404{bottom:784.905000px;}
.y49_c00404{bottom:785.745000px;}
.y4b_c00404{bottom:787.470000px;}
.y48_c00404{bottom:787.905000px;}
.y4d_c00404{bottom:788.970000px;}
.y47_c00404{bottom:804.405000px;}
.y45_c00404{bottom:805.245000px;}
.y46_c00404{bottom:806.325000px;}
.y41_c00404{bottom:823.905000px;}
.y40_c00404{bottom:824.745000px;}
.y43_c00404{bottom:824.970000px;}
.y42_c00404{bottom:826.470000px;}
.y3f_c00404{bottom:826.905000px;}
.y44_c00404{bottom:827.130000px;}
.y3c_c00404{bottom:843.405000px;}
.y39_c00404{bottom:844.245000px;}
.y3d_c00404{bottom:844.470000px;}
.y3a_c00404{bottom:845.550000px;}
.y38_c00404{bottom:846.405000px;}
.y3e_c00404{bottom:846.630000px;}
.y3b_c00404{bottom:847.470000px;}
.y36_c00404{bottom:865.245000px;}
.y37_c00404{bottom:867.405000px;}
.y32_c00404{bottom:883.245000px;}
.y31_c00404{bottom:884.325000px;}
.y35_c00404{bottom:884.745000px;}
.y30_c00404{bottom:885.405000px;}
.y33_c00404{bottom:885.630000px;}
.y34_c00404{bottom:885.825000px;}
.y2f_c00404{bottom:901.905000px;}
.y2d_c00404{bottom:904.245000px;}
.y2e_c00404{bottom:905.325000px;}
.y25_c00404{bottom:922.905000px;}
.y27_c00404{bottom:923.325000px;}
.y28_c00404{bottom:923.745000px;}
.y2c_c00404{bottom:924.420000px;}
.y2b_c00404{bottom:924.630000px;}
.y2a_c00404{bottom:925.470000px;}
.y26_c00404{bottom:925.905000px;}
.y29_c00404{bottom:926.970000px;}
.y23_c00404{bottom:941.970000px;}
.y24_c00404{bottom:942.405000px;}
.y20_c00404{bottom:943.245000px;}
.y22_c00404{bottom:944.325000px;}
.y21_c00404{bottom:945.405000px;}
.y1d_c00404{bottom:961.905000px;}
.y1b_c00404{bottom:962.745000px;}
.y1c_c00404{bottom:962.970000px;}
.y1a_c00404{bottom:964.905000px;}
.y1e_c00404{bottom:965.130000px;}
.y1f_c00404{bottom:965.970000px;}
.y19_c00404{bottom:981.405000px;}
.y16_c00404{bottom:982.245000px;}
.y18_c00404{bottom:983.325000px;}
.y17_c00404{bottom:984.405000px;}
.y14_c00404{bottom:1000.905000px;}
.y15_c00404{bottom:1002.630000px;}
.y13_c00404{bottom:1003.470000px;}
.y11_c00404{bottom:1003.905000px;}
.y12_c00404{bottom:1004.130000px;}
.yd_c00404{bottom:1020.405000px;}
.yc_c00404{bottom:1021.245000px;}
.yf_c00404{bottom:1021.470000px;}
.ye_c00404{bottom:1022.970000px;}
.yb_c00404{bottom:1023.405000px;}
.y10_c00404{bottom:1024.470000px;}
.ya_c00404{bottom:1039.905000px;}
.y9_c00404{bottom:1040.745000px;}
.y5_c00404{bottom:1058.970000px;}
.y6_c00404{bottom:1061.745000px;}
.y4_c00404{bottom:1061.970000px;}
.y3_c00404{bottom:1062.405000px;}
.y8_c00404{bottom:1062.630000px;}
.y7_c00404{bottom:1063.905000px;}
.y1_c00404{bottom:1099.905000px;}
.y2_c00404{bottom:1102.050000px;}
.h7_c00404{height:4.206533px;}
.h5_c00404{height:23.025234px;}
.h2_c00404{height:25.091602px;}
.h3_c00404{height:31.364502px;}
.h1_c00404{height:35.571035px;}
.h6_c00404{height:39.777568px;}
.h4_c00404{height:43.910303px;}
.h8_c00404{height:48.116836px;}
.h0_c00404{height:1335.000000px;}
.w0_c00404{width:880.500000px;}
.x0_c00404{left:0.000000px;}
.x13_c00404{left:151.080000px;}
.xac_c00404{left:152.580000px;}
.xd7_c00404{left:161.580000px;}
.x3_c00404{left:166.080000px;}
.x4f_c00404{left:167.580000px;}
.x6a_c00404{left:169.080000px;}
.xc7_c00404{left:178.500000px;}
.xad_c00404{left:180.420000px;}
.xba_c00404{left:186.420000px;}
.x11_c00404{left:189.000000px;}
.x4_c00404{left:190.500000px;}
.x14_c00404{left:191.580000px;}
.x74_c00404{left:193.500000px;}
.xa4_c00404{left:199.500000px;}
.xcf_c00404{left:202.500000px;}
.x61_c00404{left:208.500000px;}
.x75_c00404{left:213.420000px;}
.xd6_c00404{left:214.920000px;}
.xb4_c00404{left:217.080000px;}
.xc8_c00404{left:220.500000px;}
.x25_c00404{left:225.420000px;}
.xae_c00404{left:228.000000px;}
.x97_c00404{left:230.580000px;}
.xb5_c00404{left:234.000000px;}
.x76_c00404{left:240.000000px;}
.xc9_c00404{left:241.920000px;}
.x15_c00404{left:244.080000px;}
.x40_c00404{left:246.000000px;}
.x77_c00404{left:247.080000px;}
.xde_c00404{left:248.580000px;}
.x50_c00404{left:250.500000px;}
.x5_c00404{left:252.000000px;}
.xeb_c00404{left:253.080000px;}
.x26_c00404{left:256.920000px;}
.x5a_c00404{left:261.000000px;}
.x16_c00404{left:262.500000px;}
.x6b_c00404{left:264.000000px;}
.x78_c00404{left:265.500000px;}
.xe9_c00404{left:267.000000px;}
.xec_c00404{left:270.000000px;}
.x9e_c00404{left:271.920000px;}
.x62_c00404{left:273.000000px;}
.xa5_c00404{left:274.500000px;}
.xca_c00404{left:276.000000px;}
.xd8_c00404{left:277.500000px;}
.x82_c00404{left:279.420000px;}
.xaf_c00404{left:280.500000px;}
.xc3_c00404{left:282.000000px;}
.xbd_c00404{left:283.500000px;}
.x41_c00404{left:285.420000px;}
.xcb_c00404{left:289.500000px;}
.x27_c00404{left:292.500000px;}
.x51_c00404{left:294.420000px;}
.x5b_c00404{left:295.920000px;}
.xb6_c00404{left:298.080000px;}
.x17_c00404{left:299.580000px;}
.x6c_c00404{left:301.080000px;}
.x79_c00404{left:303.420000px;}
.x83_c00404{left:304.500000px;}
.xb0_c00404{left:309.420000px;}
.x6_c00404{left:310.500000px;}
.x63_c00404{left:312.420000px;}
.x98_c00404{left:316.920000px;}
.xbe_c00404{left:319.500000px;}
.x8d_c00404{left:325.920000px;}
.x18_c00404{left:328.500000px;}
.xa6_c00404{left:330.420000px;}
.x33_c00404{left:331.500000px;}
.x52_c00404{left:334.920000px;}
.x84_c00404{left:339.420000px;}
.xbf_c00404{left:340.920000px;}
.x7_c00404{left:343.080000px;}
.xcc_c00404{left:346.500000px;}
.x28_c00404{left:348.000000px;}
.x99_c00404{left:349.500000px;}
.x42_c00404{left:354.420000px;}
.xd0_c00404{left:355.500000px;}
.xa7_c00404{left:357.420000px;}
.xc4_c00404{left:358.920000px;}
.xe4_c00404{left:360.000000px;}
.xd9_c00404{left:362.580000px;}
.xed_c00404{left:364.080000px;}
.xdf_c00404{left:366.000000px;}
.x19_c00404{left:367.920000px;}
.x85_c00404{left:369.420000px;}
.x34_c00404{left:370.920000px;}
.xb7_c00404{left:373.500000px;}
.xd1_c00404{left:376.500000px;}
.x29_c00404{left:377.580000px;}
.xe5_c00404{left:379.500000px;}
.x8e_c00404{left:381.420000px;}
.xda_c00404{left:382.500000px;}
.x53_c00404{left:384.000000px;}
.x8_c00404{left:385.500000px;}
.xcd_c00404{left:389.580000px;}
.x7a_c00404{left:393.420000px;}
.xa2_c00404{left:395.145000px;}
.x35_c00404{left:399.000000px;}
.xe6_c00404{left:400.500000px;}
.x2_c00404{left:405.000000px;}
.x86_c00404{left:406.080000px;}
.x2a_c00404{left:408.000000px;}
.x43_c00404{left:410.580000px;}
.xb8_c00404{left:415.500000px;}
.x8f_c00404{left:416.580000px;}
.x5c_c00404{left:423.420000px;}
.x1a_c00404{left:426.420000px;}
.x6d_c00404{left:429.420000px;}
.x7b_c00404{left:430.920000px;}
.x2b_c00404{left:432.420000px;}
.x36_c00404{left:433.920000px;}
.x87_c00404{left:435.000000px;}
.x9_c00404{left:436.920000px;}
.x64_c00404{left:441.420000px;}
.xd2_c00404{left:442.920000px;}
.x5d_c00404{left:444.000000px;}
.xea_c00404{left:446.580000px;}
.xdb_c00404{left:448.920000px;}
.x7c_c00404{left:451.500000px;}
.x90_c00404{left:452.580000px;}
.xa8_c00404{left:454.500000px;}
.xe0_c00404{left:457.920000px;}
.x54_c00404{left:460.500000px;}
.x1b_c00404{left:461.580000px;}
.x44_c00404{left:463.080000px;}
.x6e_c00404{left:466.080000px;}
.xa_c00404{left:469.080000px;}
.x7d_c00404{left:472.080000px;}
.x9a_c00404{left:475.500000px;}
.x9f_c00404{left:476.580000px;}
.x45_c00404{left:478.500000px;}
.x3d_c00404{left:479.580000px;}
.x1c_c00404{left:483.000000px;}
.x6f_c00404{left:486.000000px;}
.x2c_c00404{left:487.500000px;}
.xbb_c00404{left:489.000000px;}
.x37_c00404{left:490.500000px;}
.x7e_c00404{left:492.000000px;}
.x5e_c00404{left:495.000000px;}
.xee_c00404{left:497.580000px;}
.xdc_c00404{left:499.080000px;}
.xc0_c00404{left:501.420000px;}
.x1d_c00404{left:502.920000px;}
.x65_c00404{left:504.420000px;}
.x2d_c00404{left:505.920000px;}
.xa3_c00404{left:507.000000px;}
.xb_c00404{left:508.080000px;}
.xd3_c00404{left:511.080000px;}
.x46_c00404{left:513.420000px;}
.xb1_c00404{left:514.500000px;}
.x2f_c00404{left:515.580000px;}
.x55_c00404{left:519.000000px;}
.xa9_c00404{left:521.580000px;}
.x2e_c00404{left:525.000000px;}
.x38_c00404{left:526.500000px;}
.x7f_c00404{left:528.420000px;}
.x1e_c00404{left:529.500000px;}
.x5f_c00404{left:531.420000px;}
.xc_c00404{left:532.920000px;}
.x91_c00404{left:538.080000px;}
.xb2_c00404{left:540.000000px;}
.xaa_c00404{left:541.500000px;}
.x47_c00404{left:544.080000px;}
.x68_c00404{left:550.080000px;}
.xa0_c00404{left:552.000000px;}
.x92_c00404{left:555.420000px;}
.x56_c00404{left:556.500000px;}
.x88_c00404{left:558.420000px;}
.x39_c00404{left:562.920000px;}
.xd_c00404{left:564.000000px;}
.x1f_c00404{left:565.920000px;}
.x66_c00404{left:567.000000px;}
.x70_c00404{left:568.920000px;}
.xc1_c00404{left:570.000000px;}
.x4d_c00404{left:574.500000px;}
.x9b_c00404{left:579.420000px;}
.x80_c00404{left:580.920000px;}
.x93_c00404{left:582.000000px;}
.x30_c00404{left:586.080000px;}
.x48_c00404{left:587.580000px;}
.xd4_c00404{left:591.000000px;}
.x20_c00404{left:592.920000px;}
.x57_c00404{left:595.500000px;}
.x71_c00404{left:602.580000px;}
.x60_c00404{left:604.500000px;}
.x49_c00404{left:606.000000px;}
.xe_c00404{left:607.500000px;}
.xd5_c00404{left:609.000000px;}
.x89_c00404{left:610.500000px;}
.xe2_c00404{left:612.000000px;}
.xa1_c00404{left:613.500000px;}
.x3a_c00404{left:615.000000px;}
.x9c_c00404{left:616.500000px;}
.x4e_c00404{left:618.420000px;}
.x69_c00404{left:621.855000px;}
.x4a_c00404{left:623.580000px;}
.xbc_c00404{left:627.000000px;}
.x21_c00404{left:630.000000px;}
.x67_c00404{left:631.500000px;}
.xab_c00404{left:633.000000px;}
.x31_c00404{left:634.500000px;}
.x8a_c00404{left:636.000000px;}
.x3e_c00404{left:639.420000px;}
.x4b_c00404{left:643.500000px;}
.x72_c00404{left:648.420000px;}
.x22_c00404{left:649.500000px;}
.x3b_c00404{left:651.000000px;}
.xdd_c00404{left:652.080000px;}
.xf_c00404{left:654.420000px;}
.xb9_c00404{left:658.500000px;}
.xc2_c00404{left:659.580000px;}
.x94_c00404{left:661.500000px;}
.x9d_c00404{left:663.000000px;}
.x23_c00404{left:669.420000px;}
.xc5_c00404{left:672.000000px;}
.x58_c00404{left:675.000000px;}
.x73_c00404{left:676.920000px;}
.x3c_c00404{left:678.420000px;}
.x95_c00404{left:679.920000px;}
.xe8_c00404{left:682.080000px;}
.x32_c00404{left:686.580000px;}
.x8b_c00404{left:687.645000px;}
.xe1_c00404{left:689.580000px;}
.x4c_c00404{left:691.500000px;}
.x81_c00404{left:694.500000px;}
.x24_c00404{left:697.500000px;}
.x96_c00404{left:699.000000px;}
.xe3_c00404{left:700.080000px;}
.x1_c00404{left:703.080000px;}
.x3f_c00404{left:705.000000px;}
.x8c_c00404{left:706.080000px;}
.xce_c00404{left:708.420000px;}
.x12_c00404{left:712.080000px;}
.x10_c00404{left:714.000000px;}
.x59_c00404{left:715.500000px;}
.xb3_c00404{left:716.580000px;}
.xc6_c00404{left:720.000000px;}
.xe7_c00404{left:724.500000px;}
@media print{
.v0_c00404{vertical-align:0.000000pt;}
.ls0_c00404{letter-spacing:0.000000pt;}
.ws1_c00404{word-spacing:-5.497444pt;}
.ws2_c00404{word-spacing:0.000000pt;}
.ws0_c00404{word-spacing:10.771590pt;}
._0_c00404{width:13.886158pt;}
.fs6_c00404{font-size:3.040000pt;}
.fs4_c00404{font-size:16.640000pt;}
.fs1_c00404{font-size:18.133333pt;}
.fs2_c00404{font-size:22.666667pt;}
.fs0_c00404{font-size:25.706667pt;}
.fs5_c00404{font-size:28.746667pt;}
.fs3_c00404{font-size:31.733333pt;}
.fs7_c00404{font-size:34.773333pt;}
.y0_c00404{bottom:0.000000pt;}
.yc6_c00404{bottom:224.360000pt;}
.yc7_c00404{bottom:225.106667pt;}
.yc5_c00404{bottom:227.026667pt;}
.yc2_c00404{bottom:241.493333pt;}
.yc1_c00404{bottom:242.440000pt;}
.yc4_c00404{bottom:242.640000pt;}
.yc3_c00404{bottom:244.360000pt;}
.ybc_c00404{bottom:259.026667pt;}
.ybf_c00404{bottom:259.773333pt;}
.ybe_c00404{bottom:260.733333pt;}
.yba_c00404{bottom:260.933333pt;}
.ybd_c00404{bottom:261.106667pt;}
.ybb_c00404{bottom:261.693333pt;}
.yc0_c00404{bottom:262.066667pt;}
.yb3_c00404{bottom:277.106667pt;}
.yb5_c00404{bottom:277.693333pt;}
.yb7_c00404{bottom:278.440000pt;}
.yb4_c00404{bottom:279.026667pt;}
.yb8_c00404{bottom:279.226667pt;}
.yb6_c00404{bottom:279.973333pt;}
.yb9_c00404{bottom:280.560000pt;}
.yb0_c00404{bottom:293.693333pt;}
.yb1_c00404{bottom:294.440000pt;}
.yae_c00404{bottom:294.640000pt;}
.yb2_c00404{bottom:296.360000pt;}
.yaf_c00404{bottom:296.560000pt;}
.yad_c00404{bottom:297.693333pt;}
.yac_c00404{bottom:311.026667pt;}
.yaa_c00404{bottom:311.773333pt;}
.yab_c00404{bottom:313.106667pt;}
.ya9_c00404{bottom:313.693333pt;}
.ya6_c00404{bottom:329.306667pt;}
.ya3_c00404{bottom:329.693333pt;}
.ya5_c00404{bottom:330.440000pt;}
.ya4_c00404{bottom:331.226667pt;}
.ya7_c00404{bottom:331.400000pt;}
.ya8_c00404{bottom:332.360000pt;}
.ya0_c00404{bottom:345.693333pt;}
.y9e_c00404{bottom:347.026667pt;}
.y9f_c00404{bottom:347.773333pt;}
.ya1_c00404{bottom:348.560000pt;}
.y9d_c00404{bottom:349.693333pt;}
.y9c_c00404{bottom:349.893333pt;}
.ya2_c00404{bottom:350.640000pt;}
.y9b_c00404{bottom:373.106667pt;}
.y9a_c00404{bottom:375.026667pt;}
.y97_c00404{bottom:390.440000pt;}
.y99_c00404{bottom:391.400000pt;}
.y94_c00404{bottom:391.773333pt;}
.y98_c00404{bottom:392.360000pt;}
.y96_c00404{bottom:392.560000pt;}
.y95_c00404{bottom:393.693333pt;}
.y93_c00404{bottom:407.026667pt;}
.y91_c00404{bottom:409.106667pt;}
.y92_c00404{bottom:409.893333pt;}
.y8f_c00404{bottom:410.640000pt;}
.y90_c00404{bottom:411.026667pt;}
.y8e_c00404{bottom:426.440000pt;}
.y8a_c00404{bottom:427.226667pt;}
.y8c_c00404{bottom:427.973333pt;}
.y8b_c00404{bottom:428.360000pt;}
.y8d_c00404{bottom:429.306667pt;}
.y89_c00404{bottom:443.773333pt;}
.y86_c00404{bottom:445.306667pt;}
.y88_c00404{bottom:445.693333pt;}
.y87_c00404{bottom:445.893333pt;}
.y83_c00404{bottom:461.106667pt;}
.y85_c00404{bottom:461.893333pt;}
.y82_c00404{bottom:463.026667pt;}
.y84_c00404{bottom:463.226667pt;}
.y80_c00404{bottom:478.440000pt;}
.y7e_c00404{bottom:480.360000pt;}
.y7f_c00404{bottom:480.560000pt;}
.y81_c00404{bottom:481.306667pt;}
.y7d_c00404{bottom:495.026667pt;}
.y7c_c00404{bottom:495.773333pt;}
.y77_c00404{bottom:496.160000pt;}
.y78_c00404{bottom:497.106667pt;}
.y7a_c00404{bottom:497.893333pt;}
.y7b_c00404{bottom:498.640000pt;}
.y79_c00404{bottom:499.026667pt;}
.y75_c00404{bottom:514.440000pt;}
.y76_c00404{bottom:515.226667pt;}
.y74_c00404{bottom:516.360000pt;}
.y6f_c00404{bottom:539.773333pt;}
.y72_c00404{bottom:541.693333pt;}
.y73_c00404{bottom:541.893333pt;}
.y70_c00404{bottom:542.640000pt;}
.y71_c00404{bottom:543.026667pt;}
.y6d_c00404{bottom:573.693333pt;}
.y6e_c00404{bottom:575.026667pt;}
.y6b_c00404{bottom:575.773333pt;}
.y6c_c00404{bottom:577.693333pt;}
.y6a_c00404{bottom:593.106667pt;}
.y69_c00404{bottom:593.893333pt;}
.y68_c00404{bottom:595.026667pt;}
.y63_c00404{bottom:609.693333pt;}
.y62_c00404{bottom:610.440000pt;}
.y65_c00404{bottom:610.640000pt;}
.y67_c00404{bottom:611.600000pt;}
.y61_c00404{bottom:612.360000pt;}
.y66_c00404{bottom:612.560000pt;}
.y64_c00404{bottom:613.306667pt;}
.y60_c00404{bottom:627.026667pt;}
.y5d_c00404{bottom:627.773333pt;}
.y5f_c00404{bottom:628.733333pt;}
.y5e_c00404{bottom:629.693333pt;}
.y5c_c00404{bottom:645.106667pt;}
.y5b_c00404{bottom:647.026667pt;}
.y5a_c00404{bottom:647.226667pt;}
.y51_c00404{bottom:661.693333pt;}
.y52_c00404{bottom:662.440000pt;}
.y57_c00404{bottom:662.640000pt;}
.y56_c00404{bottom:663.026667pt;}
.y59_c00404{bottom:663.973333pt;}
.y53_c00404{bottom:664.360000pt;}
.y58_c00404{bottom:664.560000pt;}
.y54_c00404{bottom:664.933333pt;}
.y55_c00404{bottom:665.306667pt;}
.y4f_c00404{bottom:680.360000pt;}
.y50_c00404{bottom:681.893333pt;}
.y4e_c00404{bottom:682.640000pt;}
.y4c_c00404{bottom:697.306667pt;}
.y4a_c00404{bottom:697.693333pt;}
.y49_c00404{bottom:698.440000pt;}
.y4b_c00404{bottom:699.973333pt;}
.y48_c00404{bottom:700.360000pt;}
.y4d_c00404{bottom:701.306667pt;}
.y47_c00404{bottom:715.026667pt;}
.y45_c00404{bottom:715.773333pt;}
.y46_c00404{bottom:716.733333pt;}
.y41_c00404{bottom:732.360000pt;}
.y40_c00404{bottom:733.106667pt;}
.y43_c00404{bottom:733.306667pt;}
.y42_c00404{bottom:734.640000pt;}
.y3f_c00404{bottom:735.026667pt;}
.y44_c00404{bottom:735.226667pt;}
.y3c_c00404{bottom:749.693333pt;}
.y39_c00404{bottom:750.440000pt;}
.y3d_c00404{bottom:750.640000pt;}
.y3a_c00404{bottom:751.600000pt;}
.y38_c00404{bottom:752.360000pt;}
.y3e_c00404{bottom:752.560000pt;}
.y3b_c00404{bottom:753.306667pt;}
.y36_c00404{bottom:769.106667pt;}
.y37_c00404{bottom:771.026667pt;}
.y32_c00404{bottom:785.106667pt;}
.y31_c00404{bottom:786.066667pt;}
.y35_c00404{bottom:786.440000pt;}
.y30_c00404{bottom:787.026667pt;}
.y33_c00404{bottom:787.226667pt;}
.y34_c00404{bottom:787.400000pt;}
.y2f_c00404{bottom:801.693333pt;}
.y2d_c00404{bottom:803.773333pt;}
.y2e_c00404{bottom:804.733333pt;}
.y25_c00404{bottom:820.360000pt;}
.y27_c00404{bottom:820.733333pt;}
.y28_c00404{bottom:821.106667pt;}
.y2c_c00404{bottom:821.706667pt;}
.y2b_c00404{bottom:821.893333pt;}
.y2a_c00404{bottom:822.640000pt;}
.y26_c00404{bottom:823.026667pt;}
.y29_c00404{bottom:823.973333pt;}
.y23_c00404{bottom:837.306667pt;}
.y24_c00404{bottom:837.693333pt;}
.y20_c00404{bottom:838.440000pt;}
.y22_c00404{bottom:839.400000pt;}
.y21_c00404{bottom:840.360000pt;}
.y1d_c00404{bottom:855.026667pt;}
.y1b_c00404{bottom:855.773333pt;}
.y1c_c00404{bottom:855.973333pt;}
.y1a_c00404{bottom:857.693333pt;}
.y1e_c00404{bottom:857.893333pt;}
.y1f_c00404{bottom:858.640000pt;}
.y19_c00404{bottom:872.360000pt;}
.y16_c00404{bottom:873.106667pt;}
.y18_c00404{bottom:874.066667pt;}
.y17_c00404{bottom:875.026667pt;}
.y14_c00404{bottom:889.693333pt;}
.y15_c00404{bottom:891.226667pt;}
.y13_c00404{bottom:891.973333pt;}
.y11_c00404{bottom:892.360000pt;}
.y12_c00404{bottom:892.560000pt;}
.yd_c00404{bottom:907.026667pt;}
.yc_c00404{bottom:907.773333pt;}
.yf_c00404{bottom:907.973333pt;}
.ye_c00404{bottom:909.306667pt;}
.yb_c00404{bottom:909.693333pt;}
.y10_c00404{bottom:910.640000pt;}
.ya_c00404{bottom:924.360000pt;}
.y9_c00404{bottom:925.106667pt;}
.y5_c00404{bottom:941.306667pt;}
.y6_c00404{bottom:943.773333pt;}
.y4_c00404{bottom:943.973333pt;}
.y3_c00404{bottom:944.360000pt;}
.y8_c00404{bottom:944.560000pt;}
.y7_c00404{bottom:945.693333pt;}
.y1_c00404{bottom:977.693333pt;}
.y2_c00404{bottom:979.600000pt;}
.h7_c00404{height:3.739141pt;}
.h5_c00404{height:20.466875pt;}
.h2_c00404{height:22.303646pt;}
.h3_c00404{height:27.879557pt;}
.h1_c00404{height:31.618698pt;}
.h6_c00404{height:35.357839pt;}
.h4_c00404{height:39.031380pt;}
.h8_c00404{height:42.770521pt;}
.h0_c00404{height:1186.666667pt;}
.w0_c00404{width:782.666667pt;}
.x0_c00404{left:0.000000pt;}
.x13_c00404{left:134.293333pt;}
.xac_c00404{left:135.626667pt;}
.xd7_c00404{left:143.626667pt;}
.x3_c00404{left:147.626667pt;}
.x4f_c00404{left:148.960000pt;}
.x6a_c00404{left:150.293333pt;}
.xc7_c00404{left:158.666667pt;}
.xad_c00404{left:160.373333pt;}
.xba_c00404{left:165.706667pt;}
.x11_c00404{left:168.000000pt;}
.x4_c00404{left:169.333333pt;}
.x14_c00404{left:170.293333pt;}
.x74_c00404{left:172.000000pt;}
.xa4_c00404{left:177.333333pt;}
.xcf_c00404{left:180.000000pt;}
.x61_c00404{left:185.333333pt;}
.x75_c00404{left:189.706667pt;}
.xd6_c00404{left:191.040000pt;}
.xb4_c00404{left:192.960000pt;}
.xc8_c00404{left:196.000000pt;}
.x25_c00404{left:200.373333pt;}
.xae_c00404{left:202.666667pt;}
.x97_c00404{left:204.960000pt;}
.xb5_c00404{left:208.000000pt;}
.x76_c00404{left:213.333333pt;}
.xc9_c00404{left:215.040000pt;}
.x15_c00404{left:216.960000pt;}
.x40_c00404{left:218.666667pt;}
.x77_c00404{left:219.626667pt;}
.xde_c00404{left:220.960000pt;}
.x50_c00404{left:222.666667pt;}
.x5_c00404{left:224.000000pt;}
.xeb_c00404{left:224.960000pt;}
.x26_c00404{left:228.373333pt;}
.x5a_c00404{left:232.000000pt;}
.x16_c00404{left:233.333333pt;}
.x6b_c00404{left:234.666667pt;}
.x78_c00404{left:236.000000pt;}
.xe9_c00404{left:237.333333pt;}
.xec_c00404{left:240.000000pt;}
.x9e_c00404{left:241.706667pt;}
.x62_c00404{left:242.666667pt;}
.xa5_c00404{left:244.000000pt;}
.xca_c00404{left:245.333333pt;}
.xd8_c00404{left:246.666667pt;}
.x82_c00404{left:248.373333pt;}
.xaf_c00404{left:249.333333pt;}
.xc3_c00404{left:250.666667pt;}
.xbd_c00404{left:252.000000pt;}
.x41_c00404{left:253.706667pt;}
.xcb_c00404{left:257.333333pt;}
.x27_c00404{left:260.000000pt;}
.x51_c00404{left:261.706667pt;}
.x5b_c00404{left:263.040000pt;}
.xb6_c00404{left:264.960000pt;}
.x17_c00404{left:266.293333pt;}
.x6c_c00404{left:267.626667pt;}
.x79_c00404{left:269.706667pt;}
.x83_c00404{left:270.666667pt;}
.xb0_c00404{left:275.040000pt;}
.x6_c00404{left:276.000000pt;}
.x63_c00404{left:277.706667pt;}
.x98_c00404{left:281.706667pt;}
.xbe_c00404{left:284.000000pt;}
.x8d_c00404{left:289.706667pt;}
.x18_c00404{left:292.000000pt;}
.xa6_c00404{left:293.706667pt;}
.x33_c00404{left:294.666667pt;}
.x52_c00404{left:297.706667pt;}
.x84_c00404{left:301.706667pt;}
.xbf_c00404{left:303.040000pt;}
.x7_c00404{left:304.960000pt;}
.xcc_c00404{left:308.000000pt;}
.x28_c00404{left:309.333333pt;}
.x99_c00404{left:310.666667pt;}
.x42_c00404{left:315.040000pt;}
.xd0_c00404{left:316.000000pt;}
.xa7_c00404{left:317.706667pt;}
.xc4_c00404{left:319.040000pt;}
.xe4_c00404{left:320.000000pt;}
.xd9_c00404{left:322.293333pt;}
.xed_c00404{left:323.626667pt;}
.xdf_c00404{left:325.333333pt;}
.x19_c00404{left:327.040000pt;}
.x85_c00404{left:328.373333pt;}
.x34_c00404{left:329.706667pt;}
.xb7_c00404{left:332.000000pt;}
.xd1_c00404{left:334.666667pt;}
.x29_c00404{left:335.626667pt;}
.xe5_c00404{left:337.333333pt;}
.x8e_c00404{left:339.040000pt;}
.xda_c00404{left:340.000000pt;}
.x53_c00404{left:341.333333pt;}
.x8_c00404{left:342.666667pt;}
.xcd_c00404{left:346.293333pt;}
.x7a_c00404{left:349.706667pt;}
.xa2_c00404{left:351.240000pt;}
.x35_c00404{left:354.666667pt;}
.xe6_c00404{left:356.000000pt;}
.x2_c00404{left:360.000000pt;}
.x86_c00404{left:360.960000pt;}
.x2a_c00404{left:362.666667pt;}
.x43_c00404{left:364.960000pt;}
.xb8_c00404{left:369.333333pt;}
.x8f_c00404{left:370.293333pt;}
.x5c_c00404{left:376.373333pt;}
.x1a_c00404{left:379.040000pt;}
.x6d_c00404{left:381.706667pt;}
.x7b_c00404{left:383.040000pt;}
.x2b_c00404{left:384.373333pt;}
.x36_c00404{left:385.706667pt;}
.x87_c00404{left:386.666667pt;}
.x9_c00404{left:388.373333pt;}
.x64_c00404{left:392.373333pt;}
.xd2_c00404{left:393.706667pt;}
.x5d_c00404{left:394.666667pt;}
.xea_c00404{left:396.960000pt;}
.xdb_c00404{left:399.040000pt;}
.x7c_c00404{left:401.333333pt;}
.x90_c00404{left:402.293333pt;}
.xa8_c00404{left:404.000000pt;}
.xe0_c00404{left:407.040000pt;}
.x54_c00404{left:409.333333pt;}
.x1b_c00404{left:410.293333pt;}
.x44_c00404{left:411.626667pt;}
.x6e_c00404{left:414.293333pt;}
.xa_c00404{left:416.960000pt;}
.x7d_c00404{left:419.626667pt;}
.x9a_c00404{left:422.666667pt;}
.x9f_c00404{left:423.626667pt;}
.x45_c00404{left:425.333333pt;}
.x3d_c00404{left:426.293333pt;}
.x1c_c00404{left:429.333333pt;}
.x6f_c00404{left:432.000000pt;}
.x2c_c00404{left:433.333333pt;}
.xbb_c00404{left:434.666667pt;}
.x37_c00404{left:436.000000pt;}
.x7e_c00404{left:437.333333pt;}
.x5e_c00404{left:440.000000pt;}
.xee_c00404{left:442.293333pt;}
.xdc_c00404{left:443.626667pt;}
.xc0_c00404{left:445.706667pt;}
.x1d_c00404{left:447.040000pt;}
.x65_c00404{left:448.373333pt;}
.x2d_c00404{left:449.706667pt;}
.xa3_c00404{left:450.666667pt;}
.xb_c00404{left:451.626667pt;}
.xd3_c00404{left:454.293333pt;}
.x46_c00404{left:456.373333pt;}
.xb1_c00404{left:457.333333pt;}
.x2f_c00404{left:458.293333pt;}
.x55_c00404{left:461.333333pt;}
.xa9_c00404{left:463.626667pt;}
.x2e_c00404{left:466.666667pt;}
.x38_c00404{left:468.000000pt;}
.x7f_c00404{left:469.706667pt;}
.x1e_c00404{left:470.666667pt;}
.x5f_c00404{left:472.373333pt;}
.xc_c00404{left:473.706667pt;}
.x91_c00404{left:478.293333pt;}
.xb2_c00404{left:480.000000pt;}
.xaa_c00404{left:481.333333pt;}
.x47_c00404{left:483.626667pt;}
.x68_c00404{left:488.960000pt;}
.xa0_c00404{left:490.666667pt;}
.x92_c00404{left:493.706667pt;}
.x56_c00404{left:494.666667pt;}
.x88_c00404{left:496.373333pt;}
.x39_c00404{left:500.373333pt;}
.xd_c00404{left:501.333333pt;}
.x1f_c00404{left:503.040000pt;}
.x66_c00404{left:504.000000pt;}
.x70_c00404{left:505.706667pt;}
.xc1_c00404{left:506.666667pt;}
.x4d_c00404{left:510.666667pt;}
.x9b_c00404{left:515.040000pt;}
.x80_c00404{left:516.373333pt;}
.x93_c00404{left:517.333333pt;}
.x30_c00404{left:520.960000pt;}
.x48_c00404{left:522.293333pt;}
.xd4_c00404{left:525.333333pt;}
.x20_c00404{left:527.040000pt;}
.x57_c00404{left:529.333333pt;}
.x71_c00404{left:535.626667pt;}
.x60_c00404{left:537.333333pt;}
.x49_c00404{left:538.666667pt;}
.xe_c00404{left:540.000000pt;}
.xd5_c00404{left:541.333333pt;}
.x89_c00404{left:542.666667pt;}
.xe2_c00404{left:544.000000pt;}
.xa1_c00404{left:545.333333pt;}
.x3a_c00404{left:546.666667pt;}
.x9c_c00404{left:548.000000pt;}
.x4e_c00404{left:549.706667pt;}
.x69_c00404{left:552.760000pt;}
.x4a_c00404{left:554.293333pt;}
.xbc_c00404{left:557.333333pt;}
.x21_c00404{left:560.000000pt;}
.x67_c00404{left:561.333333pt;}
.xab_c00404{left:562.666667pt;}
.x31_c00404{left:564.000000pt;}
.x8a_c00404{left:565.333333pt;}
.x3e_c00404{left:568.373333pt;}
.x4b_c00404{left:572.000000pt;}
.x72_c00404{left:576.373333pt;}
.x22_c00404{left:577.333333pt;}
.x3b_c00404{left:578.666667pt;}
.xdd_c00404{left:579.626667pt;}
.xf_c00404{left:581.706667pt;}
.xb9_c00404{left:585.333333pt;}
.xc2_c00404{left:586.293333pt;}
.x94_c00404{left:588.000000pt;}
.x9d_c00404{left:589.333333pt;}
.x23_c00404{left:595.040000pt;}
.xc5_c00404{left:597.333333pt;}
.x58_c00404{left:600.000000pt;}
.x73_c00404{left:601.706667pt;}
.x3c_c00404{left:603.040000pt;}
.x95_c00404{left:604.373333pt;}
.xe8_c00404{left:606.293333pt;}
.x32_c00404{left:610.293333pt;}
.x8b_c00404{left:611.240000pt;}
.xe1_c00404{left:612.960000pt;}
.x4c_c00404{left:614.666667pt;}
.x81_c00404{left:617.333333pt;}
.x24_c00404{left:620.000000pt;}
.x96_c00404{left:621.333333pt;}
.xe3_c00404{left:622.293333pt;}
.x1_c00404{left:624.960000pt;}
.x3f_c00404{left:626.666667pt;}
.x8c_c00404{left:627.626667pt;}
.xce_c00404{left:629.706667pt;}
.x12_c00404{left:632.960000pt;}
.x10_c00404{left:634.666667pt;}
.x59_c00404{left:636.000000pt;}
.xb3_c00404{left:636.960000pt;}
.xc6_c00404{left:640.000000pt;}
.xe7_c00404{left:644.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_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_e9b45a881ad09f9143211fe8.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:1.688965;font-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_c00405{transform:matrix(0.184137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184137,0.000000,0.000000,0.250000,0,0);}
.m50_c00405{transform:matrix(0.291280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291280,0.000000,0.000000,0.250000,0,0);}
.m9_c00405{transform:matrix(0.291494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291494,0.000000,0.000000,0.250000,0,0);}
.m35_c00405{transform:matrix(0.291765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291765,0.000000,0.000000,0.250000,0,0);}
.m0_c00405{transform:matrix(0.339724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339724,0.000000,0.000000,0.250000,0,0);}
.m2e_c00405{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m3e_c00405{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.m53_c00405{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m4b_c00405{transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);}
.m1f_c00405{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.m15_c00405{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.ma_c00405{transform:matrix(0.423237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423237,0.000000,0.000000,0.250000,0,0);}
.m27_c00405{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.m23_c00405{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.m2_c00405{transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);}
.m48_c00405{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m40_c00405{transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);}
.m49_c00405{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m34_c00405{transform:matrix(0.444805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444805,0.000000,0.000000,0.250000,0,0);}
.m2a_c00405{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m11_c00405{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.m46_c00405{transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);}
.m28_c00405{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.mc_c00405{transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);}
.m47_c00405{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m3c_c00405{transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);}
.m3_c00405{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m3b_c00405{transform:matrix(0.474706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474706,0.000000,0.000000,0.250000,0,0);}
.m32_c00405{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m4a_c00405{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m45_c00405{transform:matrix(0.485882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485882,0.000000,0.000000,0.250000,0,0);}
.m4_c00405{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.mb_c00405{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m36_c00405{transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);}
.m33_c00405{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m19_c00405{transform:matrix(0.491176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491176,0.000000,0.000000,0.250000,0,0);}
.m29_c00405{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m3a_c00405{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_c00405{transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);}
.m22_c00405{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m3f_c00405{transform:matrix(0.514378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514378,0.000000,0.000000,0.250000,0,0);}
.m24_c00405{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.m4c_c00405{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m43_c00405{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m6_c00405{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m13_c00405{transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);}
.m4f_c00405{transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);}
.m21_c00405{transform:matrix(0.524583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524583,0.000000,0.000000,0.250000,0,0);}
.m1e_c00405{transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);}
.m12_c00405{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m17_c00405{transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);}
.m52_c00405{transform:matrix(0.534706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534706,0.000000,0.000000,0.250000,0,0);}
.m1d_c00405{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m2f_c00405{transform:matrix(0.542941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542941,0.000000,0.000000,0.250000,0,0);}
.m1b_c00405{transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);}
.m44_c00405{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m10_c00405{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m5_c00405{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m25_c00405{transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);}
.m2c_c00405{transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);}
.m8_c00405{transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);}
.m4e_c00405{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m14_c00405{transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);}
.mf_c00405{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m7_c00405{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m26_c00405{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m42_c00405{transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);}
.m16_c00405{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);}
.m4d_c00405{transform:matrix(0.591912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591912,0.000000,0.000000,0.250000,0,0);}
.m3d_c00405{transform:matrix(0.598529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598529,0.000000,0.000000,0.250000,0,0);}
.m18_c00405{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.md_c00405{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m37_c00405{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m2d_c00405{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_c00405{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m1_c00405{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m2b_c00405{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m1c_c00405{transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);}
.m41_c00405{transform:matrix(0.652206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652206,0.000000,0.000000,0.250000,0,0);}
.m31_c00405{transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);}
.me_c00405{transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);}
.m38_c00405{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.m1a_c00405{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);}
.m51_c00405{transform:matrix(1.565657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.565657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.565657,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;}
.fs6_c00405{font-size:11.880000px;}
.fs4_c00405{font-size:18.720000px;}
.fs1_c00405{font-size:20.400000px;}
.fs3_c00405{font-size:25.500000px;}
.fs2_c00405{font-size:28.920000px;}
.fs5_c00405{font-size:32.340000px;}
.fs0_c00405{font-size:39.120000px;}
.y0_c00405{bottom:0.000000px;}
.y27_c00405{bottom:248.325000px;}
.y26_c00405{bottom:248.970000px;}
.y29_c00405{bottom:250.275000px;}
.y28_c00405{bottom:250.470000px;}
.y21_c00405{bottom:262.470000px;}
.y20_c00405{bottom:262.905000px;}
.y22_c00405{bottom:263.325000px;}
.y24_c00405{bottom:263.550000px;}
.y23_c00405{bottom:264.405000px;}
.y25_c00405{bottom:265.050000px;}
.y1c_c00405{bottom:277.050000px;}
.y1b_c00405{bottom:277.905000px;}
.y1e_c00405{bottom:278.325000px;}
.y1f_c00405{bottom:278.550000px;}
.y1d_c00405{bottom:278.970000px;}
.y1a_c00405{bottom:290.970000px;}
.y13_c00405{bottom:291.825000px;}
.y19_c00405{bottom:292.050000px;}
.y12_c00405{bottom:292.905000px;}
.y17_c00405{bottom:293.130000px;}
.y16_c00405{bottom:293.550000px;}
.y14_c00405{bottom:293.970000px;}
.y15_c00405{bottom:294.405000px;}
.y18_c00405{bottom:295.050000px;}
.y10_c00405{bottom:307.905000px;}
.yf_c00405{bottom:308.970000px;}
.y11_c00405{bottom:310.050000px;}
.ye_c00405{bottom:321.825000px;}
.yc_c00405{bottom:322.905000px;}
.yd_c00405{bottom:323.970000px;}
.y8_c00405{bottom:336.825000px;}
.y9_c00405{bottom:338.970000px;}
.yb_c00405{bottom:340.050000px;}
.ya_c00405{bottom:340.470000px;}
.y4_c00405{bottom:350.970000px;}
.y3_c00405{bottom:352.905000px;}
.y6_c00405{bottom:353.130000px;}
.y5_c00405{bottom:353.970000px;}
.y7_c00405{bottom:355.050000px;}
.y1_c00405{bottom:1096.680000px;}
.y2_c00405{bottom:1097.550000px;}
.h7_c00405{height:14.612168px;}
.h5_c00405{height:23.025234px;}
.h2_c00405{height:25.091602px;}
.h4_c00405{height:31.364502px;}
.h3_c00405{height:35.571035px;}
.h6_c00405{height:39.777568px;}
.h1_c00405{height:48.116836px;}
.h0_c00405{height:1335.000000px;}
.w0_c00405{width:880.500000px;}
.x0_c00405{left:0.000000px;}
.x4_c00405{left:150.645000px;}
.x2d_c00405{left:151.920000px;}
.x1_c00405{left:153.000000px;}
.x51_c00405{left:175.080000px;}
.x5_c00405{left:180.000000px;}
.x5b_c00405{left:184.500000px;}
.x21_c00405{left:189.000000px;}
.x13_c00405{left:192.420000px;}
.x5c_c00405{left:199.500000px;}
.x39_c00405{left:201.000000px;}
.x6_c00405{left:205.500000px;}
.x46_c00405{left:214.500000px;}
.x2e_c00405{left:217.920000px;}
.x22_c00405{left:228.420000px;}
.x47_c00405{left:229.920000px;}
.x14_c00405{left:234.420000px;}
.x52_c00405{left:237.000000px;}
.x2f_c00405{left:238.500000px;}
.x5d_c00405{left:241.080000px;}
.x7_c00405{left:242.580000px;}
.x5e_c00405{left:258.000000px;}
.x23_c00405{left:259.500000px;}
.x8_c00405{left:262.500000px;}
.x48_c00405{left:270.000000px;}
.x15_c00405{left:271.500000px;}
.x9_c00405{left:274.080000px;}
.x3a_c00405{left:288.420000px;}
.x30_c00405{left:295.500000px;}
.x24_c00405{left:298.080000px;}
.x3b_c00405{left:300.000000px;}
.x5f_c00405{left:303.420000px;}
.x16_c00405{left:318.000000px;}
.xa_c00405{left:322.500000px;}
.x3_c00405{left:326.580000px;}
.x49_c00405{left:330.000000px;}
.x25_c00405{left:337.500000px;}
.x3c_c00405{left:343.080000px;}
.x53_c00405{left:349.500000px;}
.x3d_c00405{left:360.000000px;}
.x17_c00405{left:363.000000px;}
.x31_c00405{left:366.000000px;}
.x60_c00405{left:367.080000px;}
.x61_c00405{left:372.000000px;}
.x32_c00405{left:385.500000px;}
.x26_c00405{left:388.080000px;}
.xb_c00405{left:391.500000px;}
.x4a_c00405{left:398.580000px;}
.x18_c00405{left:406.920000px;}
.x2_c00405{left:409.500000px;}
.x27_c00405{left:412.080000px;}
.x4b_c00405{left:420.000000px;}
.x3e_c00405{left:427.500000px;}
.x33_c00405{left:430.920000px;}
.xc_c00405{left:436.500000px;}
.x19_c00405{left:439.080000px;}
.x62_c00405{left:441.000000px;}
.x3f_c00405{left:447.000000px;}
.x34_c00405{left:450.000000px;}
.x1a_c00405{left:456.000000px;}
.x28_c00405{left:467.580000px;}
.x54_c00405{left:477.000000px;}
.x4c_c00405{left:480.000000px;}
.xd_c00405{left:481.920000px;}
.x1b_c00405{left:483.000000px;}
.x63_c00405{left:484.080000px;}
.x29_c00405{left:487.080000px;}
.x35_c00405{left:490.500000px;}
.x40_c00405{left:499.500000px;}
.x64_c00405{left:501.420000px;}
.x36_c00405{left:507.000000px;}
.x1c_c00405{left:511.920000px;}
.x41_c00405{left:516.000000px;}
.x55_c00405{left:526.920000px;}
.xe_c00405{left:528.000000px;}
.x56_c00405{left:543.000000px;}
.x4d_c00405{left:553.500000px;}
.x65_c00405{left:555.420000px;}
.x2a_c00405{left:556.500000px;}
.x37_c00405{left:558.000000px;}
.xf_c00405{left:559.500000px;}
.x1d_c00405{left:567.000000px;}
.x4e_c00405{left:570.000000px;}
.x42_c00405{left:576.000000px;}
.x38_c00405{left:577.500000px;}
.x2b_c00405{left:582.000000px;}
.x4f_c00405{left:598.500000px;}
.x57_c00405{left:602.580000px;}
.x10_c00405{left:609.420000px;}
.x43_c00405{left:622.500000px;}
.x58_c00405{left:633.420000px;}
.x44_c00405{left:638.580000px;}
.x66_c00405{left:644.580000px;}
.x11_c00405{left:649.500000px;}
.x59_c00405{left:651.000000px;}
.x1e_c00405{left:654.000000px;}
.x50_c00405{left:658.920000px;}
.x2c_c00405{left:667.500000px;}
.x45_c00405{left:673.080000px;}
.x5a_c00405{left:687.000000px;}
.x1f_c00405{left:690.000000px;}
.x12_c00405{left:691.920000px;}
.x20_c00405{left:718.920000px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.ls0_c00405{letter-spacing:0.000000pt;}
.ws0_c00405{word-spacing:0.000000pt;}
.fs6_c00405{font-size:10.560000pt;}
.fs4_c00405{font-size:16.640000pt;}
.fs1_c00405{font-size:18.133333pt;}
.fs3_c00405{font-size:22.666667pt;}
.fs2_c00405{font-size:25.706667pt;}
.fs5_c00405{font-size:28.746667pt;}
.fs0_c00405{font-size:34.773333pt;}
.y0_c00405{bottom:0.000000pt;}
.y27_c00405{bottom:220.733333pt;}
.y26_c00405{bottom:221.306667pt;}
.y29_c00405{bottom:222.466667pt;}
.y28_c00405{bottom:222.640000pt;}
.y21_c00405{bottom:233.306667pt;}
.y20_c00405{bottom:233.693333pt;}
.y22_c00405{bottom:234.066667pt;}
.y24_c00405{bottom:234.266667pt;}
.y23_c00405{bottom:235.026667pt;}
.y25_c00405{bottom:235.600000pt;}
.y1c_c00405{bottom:246.266667pt;}
.y1b_c00405{bottom:247.026667pt;}
.y1e_c00405{bottom:247.400000pt;}
.y1f_c00405{bottom:247.600000pt;}
.y1d_c00405{bottom:247.973333pt;}
.y1a_c00405{bottom:258.640000pt;}
.y13_c00405{bottom:259.400000pt;}
.y19_c00405{bottom:259.600000pt;}
.y12_c00405{bottom:260.360000pt;}
.y17_c00405{bottom:260.560000pt;}
.y16_c00405{bottom:260.933333pt;}
.y14_c00405{bottom:261.306667pt;}
.y15_c00405{bottom:261.693333pt;}
.y18_c00405{bottom:262.266667pt;}
.y10_c00405{bottom:273.693333pt;}
.yf_c00405{bottom:274.640000pt;}
.y11_c00405{bottom:275.600000pt;}
.ye_c00405{bottom:286.066667pt;}
.yc_c00405{bottom:287.026667pt;}
.yd_c00405{bottom:287.973333pt;}
.y8_c00405{bottom:299.400000pt;}
.y9_c00405{bottom:301.306667pt;}
.yb_c00405{bottom:302.266667pt;}
.ya_c00405{bottom:302.640000pt;}
.y4_c00405{bottom:311.973333pt;}
.y3_c00405{bottom:313.693333pt;}
.y6_c00405{bottom:313.893333pt;}
.y5_c00405{bottom:314.640000pt;}
.y7_c00405{bottom:315.600000pt;}
.y1_c00405{bottom:974.826667pt;}
.y2_c00405{bottom:975.600000pt;}
.h7_c00405{height:12.988594pt;}
.h5_c00405{height:20.466875pt;}
.h2_c00405{height:22.303646pt;}
.h4_c00405{height:27.879557pt;}
.h3_c00405{height:31.618698pt;}
.h6_c00405{height:35.357839pt;}
.h1_c00405{height:42.770521pt;}
.h0_c00405{height:1186.666667pt;}
.w0_c00405{width:782.666667pt;}
.x0_c00405{left:0.000000pt;}
.x4_c00405{left:133.906667pt;}
.x2d_c00405{left:135.040000pt;}
.x1_c00405{left:136.000000pt;}
.x51_c00405{left:155.626667pt;}
.x5_c00405{left:160.000000pt;}
.x5b_c00405{left:164.000000pt;}
.x21_c00405{left:168.000000pt;}
.x13_c00405{left:171.040000pt;}
.x5c_c00405{left:177.333333pt;}
.x39_c00405{left:178.666667pt;}
.x6_c00405{left:182.666667pt;}
.x46_c00405{left:190.666667pt;}
.x2e_c00405{left:193.706667pt;}
.x22_c00405{left:203.040000pt;}
.x47_c00405{left:204.373333pt;}
.x14_c00405{left:208.373333pt;}
.x52_c00405{left:210.666667pt;}
.x2f_c00405{left:212.000000pt;}
.x5d_c00405{left:214.293333pt;}
.x7_c00405{left:215.626667pt;}
.x5e_c00405{left:229.333333pt;}
.x23_c00405{left:230.666667pt;}
.x8_c00405{left:233.333333pt;}
.x48_c00405{left:240.000000pt;}
.x15_c00405{left:241.333333pt;}
.x9_c00405{left:243.626667pt;}
.x3a_c00405{left:256.373333pt;}
.x30_c00405{left:262.666667pt;}
.x24_c00405{left:264.960000pt;}
.x3b_c00405{left:266.666667pt;}
.x5f_c00405{left:269.706667pt;}
.x16_c00405{left:282.666667pt;}
.xa_c00405{left:286.666667pt;}
.x3_c00405{left:290.293333pt;}
.x49_c00405{left:293.333333pt;}
.x25_c00405{left:300.000000pt;}
.x3c_c00405{left:304.960000pt;}
.x53_c00405{left:310.666667pt;}
.x3d_c00405{left:320.000000pt;}
.x17_c00405{left:322.666667pt;}
.x31_c00405{left:325.333333pt;}
.x60_c00405{left:326.293333pt;}
.x61_c00405{left:330.666667pt;}
.x32_c00405{left:342.666667pt;}
.x26_c00405{left:344.960000pt;}
.xb_c00405{left:348.000000pt;}
.x4a_c00405{left:354.293333pt;}
.x18_c00405{left:361.706667pt;}
.x2_c00405{left:364.000000pt;}
.x27_c00405{left:366.293333pt;}
.x4b_c00405{left:373.333333pt;}
.x3e_c00405{left:380.000000pt;}
.x33_c00405{left:383.040000pt;}
.xc_c00405{left:388.000000pt;}
.x19_c00405{left:390.293333pt;}
.x62_c00405{left:392.000000pt;}
.x3f_c00405{left:397.333333pt;}
.x34_c00405{left:400.000000pt;}
.x1a_c00405{left:405.333333pt;}
.x28_c00405{left:415.626667pt;}
.x54_c00405{left:424.000000pt;}
.x4c_c00405{left:426.666667pt;}
.xd_c00405{left:428.373333pt;}
.x1b_c00405{left:429.333333pt;}
.x63_c00405{left:430.293333pt;}
.x29_c00405{left:432.960000pt;}
.x35_c00405{left:436.000000pt;}
.x40_c00405{left:444.000000pt;}
.x64_c00405{left:445.706667pt;}
.x36_c00405{left:450.666667pt;}
.x1c_c00405{left:455.040000pt;}
.x41_c00405{left:458.666667pt;}
.x55_c00405{left:468.373333pt;}
.xe_c00405{left:469.333333pt;}
.x56_c00405{left:482.666667pt;}
.x4d_c00405{left:492.000000pt;}
.x65_c00405{left:493.706667pt;}
.x2a_c00405{left:494.666667pt;}
.x37_c00405{left:496.000000pt;}
.xf_c00405{left:497.333333pt;}
.x1d_c00405{left:504.000000pt;}
.x4e_c00405{left:506.666667pt;}
.x42_c00405{left:512.000000pt;}
.x38_c00405{left:513.333333pt;}
.x2b_c00405{left:517.333333pt;}
.x4f_c00405{left:532.000000pt;}
.x57_c00405{left:535.626667pt;}
.x10_c00405{left:541.706667pt;}
.x43_c00405{left:553.333333pt;}
.x58_c00405{left:563.040000pt;}
.x44_c00405{left:567.626667pt;}
.x66_c00405{left:572.960000pt;}
.x11_c00405{left:577.333333pt;}
.x59_c00405{left:578.666667pt;}
.x1e_c00405{left:581.333333pt;}
.x50_c00405{left:585.706667pt;}
.x2c_c00405{left:593.333333pt;}
.x45_c00405{left:598.293333pt;}
.x5a_c00405{left:610.666667pt;}
.x1f_c00405{left:613.333333pt;}
.x12_c00405{left:615.040000pt;}
.x20_c00405{left:639.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_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_bf6d471c54f4932ea5d82c60.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:1.688965;font-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_c00406{transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);}
.m75_c00406{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);}
.m7a_c00406{transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);}
.m7d_c00406{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m7b_c00406{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m2e_c00406{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m6a_c00406{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m25_c00406{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m35_c00406{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m23_c00406{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mb_c00406{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m6e_c00406{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m51_c00406{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m44_c00406{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m8e_c00406{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m4e_c00406{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m1a_c00406{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m77_c00406{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m27_c00406{transform:matrix(0.390560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390560,0.000000,0.000000,0.250000,0,0);}
.m37_c00406{transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);}
.m50_c00406{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m38_c00406{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m26_c00406{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m4c_c00406{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m7f_c00406{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m55_c00406{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m34_c00406{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m82_c00406{transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);}
.m3f_c00406{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m91_c00406{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m81_c00406{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.m36_c00406{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m5c_c00406{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m5d_c00406{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m9_c00406{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m3b_c00406{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m19_c00406{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m43_c00406{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m6c_c00406{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m8c_c00406{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.m4f_c00406{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m60_c00406{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m46_c00406{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mc_c00406{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.me_c00406{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m87_c00406{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m5b_c00406{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m95_c00406{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m53_c00406{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m1b_c00406{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m66_c00406{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m8_c00406{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m58_c00406{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m40_c00406{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m33_c00406{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m54_c00406{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m5a_c00406{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m14_c00406{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m48_c00406{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m7e_c00406{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m52_c00406{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.ma_c00406{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.m3e_c00406{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m62_c00406{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m32_c00406{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m18_c00406{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m6b_c00406{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m64_c00406{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m3a_c00406{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m8a_c00406{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m56_c00406{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m94_c00406{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m76_c00406{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m84_c00406{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m39_c00406{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m90_c00406{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m69_c00406{transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);}
.m93_c00406{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m74_c00406{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m70_c00406{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m3d_c00406{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m29_c00406{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m42_c00406{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m41_c00406{transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);}
.m1_c00406{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m79_c00406{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m73_c00406{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.md_c00406{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);}
.m61_c00406{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m86_c00406{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m67_c00406{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m24_c00406{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m30_c00406{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m89_c00406{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m7_c00406{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m6d_c00406{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m2_c00406{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m88_c00406{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m5f_c00406{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m21_c00406{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m59_c00406{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m63_c00406{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m10_c00406{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m45_c00406{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m8d_c00406{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m2b_c00406{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m49_c00406{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m68_c00406{transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);}
.m65_c00406{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m12_c00406{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m57_c00406{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m1f_c00406{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m83_c00406{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m31_c00406{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m1c_c00406{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m3c_c00406{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m5e_c00406{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m72_c00406{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m2d_c00406{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m7c_c00406{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m6f_c00406{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m3_c00406{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m4a_c00406{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m97_c00406{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m15_c00406{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m28_c00406{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m78_c00406{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m8b_c00406{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m2a_c00406{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m11_c00406{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m13_c00406{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m71_c00406{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m96_c00406{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m6_c00406{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m1d_c00406{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);}
.m20_c00406{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m0_c00406{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m4_c00406{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m4d_c00406{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m8f_c00406{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m2c_c00406{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m85_c00406{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.m47_c00406{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m22_c00406{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m5_c00406{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m16_c00406{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m2f_c00406{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m17_c00406{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m4b_c00406{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m1e_c00406{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m80_c00406{transform:matrix(7.210526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.210526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.210526,0.000000,0.000000,0.250000,0,0);}
.m92_c00406{transform:matrix(7.274336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.274336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.274336,0.000000,0.000000,0.250000,0,0);}
.v2_c00406{vertical-align:-12.000000px;}
.v0_c00406{vertical-align:0.000000px;}
.v1_c00406{vertical-align:6.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;}
}
.ws1_c00406{word-spacing:-5.008560px;}
.ws2_c00406{word-spacing:0.000000px;}
.ws0_c00406{word-spacing:10.154410px;}
.fc0_c00406{color:transparent;}
.fs7_c00406{font-size:3.420000px;}
.fs8_c00406{font-size:6.780000px;}
.fs3_c00406{font-size:18.720000px;}
.fs0_c00406{font-size:20.400000px;}
.fs2_c00406{font-size:25.500000px;}
.fs1_c00406{font-size:28.920000px;}
.fs5_c00406{font-size:32.340000px;}
.fs4_c00406{font-size:35.700000px;}
.fs6_c00406{font-size:39.120000px;}
.y0_c00406{bottom:0.000000px;}
.ycb_c00406{bottom:252.825000px;}
.ycc_c00406{bottom:253.050000px;}
.yce_c00406{bottom:253.245000px;}
.ycd_c00406{bottom:255.405000px;}
.yc9_c00406{bottom:271.245000px;}
.yc8_c00406{bottom:271.470000px;}
.yca_c00406{bottom:273.630000px;}
.yc7_c00406{bottom:274.905000px;}
.yc6_c00406{bottom:291.405000px;}
.yc4_c00406{bottom:292.245000px;}
.yc5_c00406{bottom:293.325000px;}
.ybf_c00406{bottom:310.905000px;}
.yc3_c00406{bottom:311.355000px;}
.ybe_c00406{bottom:311.745000px;}
.yc0_c00406{bottom:313.050000px;}
.yc1_c00406{bottom:313.470000px;}
.ybd_c00406{bottom:313.905000px;}
.yc2_c00406{bottom:314.130000px;}
.ybb_c00406{bottom:330.405000px;}
.yba_c00406{bottom:331.245000px;}
.yb9_c00406{bottom:332.325000px;}
.yb7_c00406{bottom:333.405000px;}
.yb8_c00406{bottom:333.630000px;}
.ybc_c00406{bottom:334.905000px;}
.yb3_c00406{bottom:349.905000px;}
.yb5_c00406{bottom:350.745000px;}
.yb4_c00406{bottom:352.245000px;}
.yb6_c00406{bottom:352.905000px;}
.yb1_c00406{bottom:353.130000px;}
.yb2_c00406{bottom:354.405000px;}
.yad_c00406{bottom:369.405000px;}
.yac_c00406{bottom:371.745000px;}
.yb0_c00406{bottom:371.970000px;}
.yaf_c00406{bottom:372.405000px;}
.yae_c00406{bottom:372.630000px;}
.yab_c00406{bottom:373.905000px;}
.ya8_c00406{bottom:389.970000px;}
.ya9_c00406{bottom:390.405000px;}
.ya7_c00406{bottom:391.245000px;}
.yaa_c00406{bottom:392.130000px;}
.ya6_c00406{bottom:393.405000px;}
.ya5_c00406{bottom:393.630000px;}
.ya4_c00406{bottom:408.405000px;}
.ya2_c00406{bottom:409.905000px;}
.ya1_c00406{bottom:410.745000px;}
.ya3_c00406{bottom:411.825000px;}
.y9e_c00406{bottom:429.405000px;}
.y9c_c00406{bottom:430.245000px;}
.ya0_c00406{bottom:431.130000px;}
.y9f_c00406{bottom:431.970000px;}
.y9b_c00406{bottom:432.405000px;}
.y9d_c00406{bottom:433.470000px;}
.y99_c00406{bottom:448.905000px;}
.y97_c00406{bottom:449.745000px;}
.y9a_c00406{bottom:449.970000px;}
.y98_c00406{bottom:450.420000px;}
.y91_c00406{bottom:468.405000px;}
.y93_c00406{bottom:469.245000px;}
.y96_c00406{bottom:469.680000px;}
.y8e_c00406{bottom:469.905000px;}
.y95_c00406{bottom:470.130000px;}
.y90_c00406{bottom:470.745000px;}
.y94_c00406{bottom:470.970000px;}
.y92_c00406{bottom:471.405000px;}
.y8f_c00406{bottom:472.905000px;}
.y8d_c00406{bottom:487.905000px;}
.y8b_c00406{bottom:489.405000px;}
.y8c_c00406{bottom:491.130000px;}
.y8a_c00406{bottom:492.405000px;}
.y88_c00406{bottom:507.405000px;}
.y86_c00406{bottom:508.470000px;}
.y87_c00406{bottom:508.680000px;}
.y84_c00406{bottom:509.745000px;}
.y89_c00406{bottom:510.630000px;}
.y85_c00406{bottom:511.905000px;}
.y83_c00406{bottom:529.245000px;}
.y82_c00406{bottom:531.405000px;}
.y81_c00406{bottom:546.405000px;}
.y7d_c00406{bottom:548.745000px;}
.y80_c00406{bottom:549.825000px;}
.y7f_c00406{bottom:550.245000px;}
.y7e_c00406{bottom:551.130000px;}
.y79_c00406{bottom:567.405000px;}
.y7a_c00406{bottom:568.245000px;}
.y77_c00406{bottom:569.745000px;}
.y7c_c00406{bottom:570.405000px;}
.y7b_c00406{bottom:571.470000px;}
.y78_c00406{bottom:571.905000px;}
.y76_c00406{bottom:587.745000px;}
.y73_c00406{bottom:589.245000px;}
.y74_c00406{bottom:589.470000px;}
.y75_c00406{bottom:590.130000px;}
.y72_c00406{bottom:591.405000px;}
.y71_c00406{bottom:606.405000px;}
.y6f_c00406{bottom:608.745000px;}
.y70_c00406{bottom:610.905000px;}
.y6c_c00406{bottom:628.245000px;}
.y6e_c00406{bottom:629.130000px;}
.y6d_c00406{bottom:629.970000px;}
.y6b_c00406{bottom:630.405000px;}
.y69_c00406{bottom:646.905000px;}
.y6a_c00406{bottom:647.745000px;}
.y68_c00406{bottom:648.405000px;}
.y67_c00406{bottom:649.470000px;}
.y66_c00406{bottom:649.905000px;}
.y64_c00406{bottom:666.405000px;}
.y61_c00406{bottom:667.245000px;}
.y65_c00406{bottom:668.130000px;}
.y63_c00406{bottom:668.970000px;}
.y62_c00406{bottom:669.405000px;}
.y5e_c00406{bottom:685.905000px;}
.y60_c00406{bottom:686.745000px;}
.y5f_c00406{bottom:686.970000px;}
.y5d_c00406{bottom:688.245000px;}
.y5c_c00406{bottom:688.905000px;}
.y5b_c00406{bottom:690.405000px;}
.y58_c00406{bottom:706.245000px;}
.y57_c00406{bottom:707.745000px;}
.y59_c00406{bottom:708.405000px;}
.y5a_c00406{bottom:708.630000px;}
.y56_c00406{bottom:709.905000px;}
.y54_c00406{bottom:725.745000px;}
.y51_c00406{bottom:726.405000px;}
.y53_c00406{bottom:727.245000px;}
.y55_c00406{bottom:728.970000px;}
.y52_c00406{bottom:729.405000px;}
.y4d_c00406{bottom:744.405000px;}
.y4c_c00406{bottom:746.745000px;}
.y4f_c00406{bottom:747.405000px;}
.y4e_c00406{bottom:747.630000px;}
.y4b_c00406{bottom:748.905000px;}
.y50_c00406{bottom:749.130000px;}
.y48_c00406{bottom:765.405000px;}
.y47_c00406{bottom:766.245000px;}
.y4a_c00406{bottom:767.130000px;}
.y46_c00406{bottom:768.405000px;}
.y49_c00406{bottom:768.630000px;}
.y44_c00406{bottom:785.745000px;}
.y45_c00406{bottom:787.905000px;}
.y43_c00406{bottom:804.405000px;}
.y42_c00406{bottom:804.825000px;}
.y3f_c00406{bottom:805.245000px;}
.y41_c00406{bottom:806.130000px;}
.y40_c00406{bottom:806.970000px;}
.y3e_c00406{bottom:807.405000px;}
.y3d_c00406{bottom:823.905000px;}
.y3c_c00406{bottom:824.745000px;}
.y39_c00406{bottom:844.470000px;}
.y3b_c00406{bottom:845.745000px;}
.y3a_c00406{bottom:846.630000px;}
.y38_c00406{bottom:847.470000px;}
.y37_c00406{bottom:847.905000px;}
.y33_c00406{bottom:863.745000px;}
.y34_c00406{bottom:865.245000px;}
.y36_c00406{bottom:866.130000px;}
.y35_c00406{bottom:867.405000px;}
.y32_c00406{bottom:882.405000px;}
.y2c_c00406{bottom:883.905000px;}
.y2f_c00406{bottom:884.325000px;}
.y2d_c00406{bottom:884.745000px;}
.y30_c00406{bottom:885.630000px;}
.y31_c00406{bottom:885.825000px;}
.y2e_c00406{bottom:886.905000px;}
.y2a_c00406{bottom:901.905000px;}
.y2b_c00406{bottom:903.405000px;}
.y29_c00406{bottom:904.245000px;}
.y28_c00406{bottom:923.745000px;}
.y27_c00406{bottom:925.905000px;}
.y22_c00406{bottom:940.905000px;}
.y24_c00406{bottom:942.405000px;}
.y21_c00406{bottom:943.245000px;}
.y25_c00406{bottom:943.470000px;}
.y26_c00406{bottom:944.970000px;}
.y20_c00406{bottom:945.405000px;}
.y23_c00406{bottom:945.630000px;}
.y1e_c00406{bottom:961.245000px;}
.y1f_c00406{bottom:961.905000px;}
.y1d_c00406{bottom:962.745000px;}
.y1b_c00406{bottom:964.905000px;}
.y1c_c00406{bottom:965.130000px;}
.y1a_c00406{bottom:965.970000px;}
.y14_c00406{bottom:981.405000px;}
.y15_c00406{bottom:982.245000px;}
.y18_c00406{bottom:983.550000px;}
.y16_c00406{bottom:984.405000px;}
.y17_c00406{bottom:984.630000px;}
.y19_c00406{bottom:985.905000px;}
.y12_c00406{bottom:1001.745000px;}
.y13_c00406{bottom:1002.405000px;}
.y11_c00406{bottom:1003.905000px;}
.y10_c00406{bottom:1004.130000px;}
.ye_c00406{bottom:1020.405000px;}
.yf_c00406{bottom:1021.245000px;}
.yb_c00406{bottom:1023.405000px;}
.yd_c00406{bottom:1023.630000px;}
.yc_c00406{bottom:1024.470000px;}
.y8_c00406{bottom:1040.745000px;}
.y9_c00406{bottom:1041.405000px;}
.ya_c00406{bottom:1042.245000px;}
.y3_c00406{bottom:1060.470000px;}
.y7_c00406{bottom:1061.745000px;}
.y6_c00406{bottom:1062.630000px;}
.y5_c00406{bottom:1063.470000px;}
.y4_c00406{bottom:1063.905000px;}
.y2_c00406{bottom:1099.905000px;}
.y1_c00406{bottom:1102.050000px;}
.h9_c00406{height:4.206533px;}
.ha_c00406{height:8.339268px;}
.h4_c00406{height:23.025234px;}
.h1_c00406{height:25.091602px;}
.h3_c00406{height:31.364502px;}
.h2_c00406{height:35.571035px;}
.h6_c00406{height:39.777568px;}
.h5_c00406{height:43.910303px;}
.h8_c00406{height:48.116836px;}
.h7_c00406{height:49.910303px;}
.h0_c00406{height:1335.000000px;}
.w0_c00406{width:880.500000px;}
.x0_c00406{left:0.000000px;}
.xbf_c00406{left:151.920000px;}
.x3_c00406{left:156.000000px;}
.x47_c00406{left:157.080000px;}
.xb3_c00406{left:158.580000px;}
.x12_c00406{left:164.580000px;}
.x62_c00406{left:166.080000px;}
.x4_c00406{left:189.000000px;}
.x6c_c00406{left:190.500000px;}
.xe_c00406{left:214.500000px;}
.x3d_c00406{left:217.080000px;}
.x13_c00406{left:223.500000px;}
.x5_c00406{left:225.000000px;}
.x5a_c00406{left:226.080000px;}
.x1c_c00406{left:229.500000px;}
.x68_c00406{left:230.580000px;}
.xc6_c00406{left:232.080000px;}
.xcb_c00406{left:234.000000px;}
.x2b_c00406{left:235.920000px;}
.xb2_c00406{left:240.000000px;}
.xf_c00406{left:241.500000px;}
.x32_c00406{left:242.580000px;}
.x1f_c00406{left:244.080000px;}
.x1d_c00406{left:246.000000px;}
.x87_c00406{left:247.920000px;}
.x6d_c00406{left:250.920000px;}
.xc0_c00406{left:252.420000px;}
.x14_c00406{left:254.580000px;}
.x8c_c00406{left:256.080000px;}
.x6_c00406{left:259.080000px;}
.x33_c00406{left:261.000000px;}
.xae_c00406{left:262.500000px;}
.x20_c00406{left:264.000000px;}
.x10_c00406{left:265.275000px;}
.x69_c00406{left:268.500000px;}
.x48_c00406{left:271.500000px;}
.xb7_c00406{left:274.500000px;}
.x1e_c00406{left:276.000000px;}
.xa6_c00406{left:277.275000px;}
.x51_c00406{left:278.580000px;}
.x88_c00406{left:283.080000px;}
.x3e_c00406{left:285.000000px;}
.x8d_c00406{left:286.080000px;}
.x95_c00406{left:291.000000px;}
.x6a_c00406{left:292.275000px;}
.xc7_c00406{left:294.000000px;}
.x15_c00406{left:295.080000px;}
.xcc_c00406{left:297.000000px;}
.x6e_c00406{left:298.080000px;}
.x9f_c00406{left:300.000000px;}
.x7_c00406{left:301.080000px;}
.x9a_c00406{left:302.580000px;}
.x2c_c00406{left:306.000000px;}
.x52_c00406{left:307.275000px;}
.x49_c00406{left:308.580000px;}
.x21_c00406{left:310.500000px;}
.x63_c00406{left:312.420000px;}
.x6f_c00406{left:313.500000px;}
.x16_c00406{left:315.000000px;}
.xcd_c00406{left:316.500000px;}
.x82_c00406{left:317.580000px;}
.x72_c00406{left:319.500000px;}
.x7b_c00406{left:321.000000px;}
.xba_c00406{left:322.500000px;}
.x8_c00406{left:324.000000px;}
.x3f_c00406{left:328.920000px;}
.x4a_c00406{left:331.500000px;}
.x96_c00406{left:336.000000px;}
.x2d_c00406{left:338.580000px;}
.x5b_c00406{left:341.580000px;}
.x83_c00406{left:345.420000px;}
.x53_c00406{left:348.000000px;}
.x89_c00406{left:349.500000px;}
.x70_c00406{left:357.000000px;}
.xa0_c00406{left:358.500000px;}
.x17_c00406{left:361.500000px;}
.xce_c00406{left:362.580000px;}
.x73_c00406{left:364.500000px;}
.xaf_c00406{left:365.580000px;}
.x2e_c00406{left:367.275000px;}
.x9_c00406{left:372.000000px;}
.xa9_c00406{left:375.000000px;}
.x77_c00406{left:376.500000px;}
.x7c_c00406{left:377.580000px;}
.x40_c00406{left:379.500000px;}
.x9b_c00406{left:381.000000px;}
.x54_c00406{left:383.580000px;}
.xda_c00406{left:385.275000px;}
.x5c_c00406{left:386.580000px;}
.x97_c00406{left:388.080000px;}
.x34_c00406{left:389.580000px;}
.xd1_c00406{left:393.420000px;}
.xaa_c00406{left:394.500000px;}
.x22_c00406{left:395.580000px;}
.x7d_c00406{left:400.500000px;}
.x1_c00406{left:403.500000px;}
.x5d_c00406{left:405.420000px;}
.x4b_c00406{left:406.500000px;}
.x44_c00406{left:409.080000px;}
.xb8_c00406{left:412.080000px;}
.xd7_c00406{left:415.920000px;}
.x5e_c00406{left:424.500000px;}
.x98_c00406{left:426.000000px;}
.x35_c00406{left:427.500000px;}
.x9c_c00406{left:429.420000px;}
.xb0_c00406{left:432.000000px;}
.x23_c00406{left:433.500000px;}
.x7e_c00406{left:435.000000px;}
.x8e_c00406{left:436.080000px;}
.x71_c00406{left:439.500000px;}
.xc1_c00406{left:441.000000px;}
.x41_c00406{left:442.080000px;}
.xab_c00406{left:444.420000px;}
.x55_c00406{left:447.420000px;}
.x18_c00406{left:448.500000px;}
.x99_c00406{left:449.775000px;}
.xbb_c00406{left:453.420000px;}
.x78_c00406{left:456.000000px;}
.xa_c00406{left:460.500000px;}
.xd2_c00406{left:462.000000px;}
.x24_c00406{left:465.420000px;}
.x36_c00406{left:466.920000px;}
.xc2_c00406{left:468.420000px;}
.x4c_c00406{left:472.500000px;}
.x19_c00406{left:478.500000px;}
.xac_c00406{left:481.080000px;}
.x42_c00406{left:483.420000px;}
.x74_c00406{left:487.920000px;}
.xc5_c00406{left:489.420000px;}
.x9d_c00406{left:490.500000px;}
.x7f_c00406{left:494.580000px;}
.xa1_c00406{left:497.580000px;}
.x56_c00406{left:499.080000px;}
.x25_c00406{left:502.920000px;}
.x45_c00406{left:504.420000px;}
.xb4_c00406{left:507.420000px;}
.x43_c00406{left:510.000000px;}
.x8f_c00406{left:511.500000px;}
.xa2_c00406{left:516.420000px;}
.x26_c00406{left:522.000000px;}
.xc3_c00406{left:523.500000px;}
.x75_c00406{left:525.420000px;}
.xb_c00406{left:526.500000px;}
.xc8_c00406{left:529.920000px;}
.x84_c00406{left:532.920000px;}
.x5f_c00406{left:535.500000px;}
.x8a_c00406{left:536.580000px;}
.x90_c00406{left:538.080000px;}
.x1a_c00406{left:541.500000px;}
.xa3_c00406{left:543.000000px;}
.x76_c00406{left:544.500000px;}
.xad_c00406{left:546.420000px;}
.x80_c00406{left:547.500000px;}
.xa7_c00406{left:548.580000px;}
.xbc_c00406{left:550.080000px;}
.x4d_c00406{left:552.420000px;}
.x37_c00406{left:558.000000px;}
.x27_c00406{left:559.500000px;}
.x64_c00406{left:561.000000px;}
.x60_c00406{left:562.500000px;}
.x57_c00406{left:563.580000px;}
.xd5_c00406{left:565.080000px;}
.xcf_c00406{left:568.920000px;}
.xb5_c00406{left:570.000000px;}
.x2f_c00406{left:571.500000px;}
.xbd_c00406{left:576.000000px;}
.x65_c00406{left:577.500000px;}
.x38_c00406{left:580.500000px;}
.x58_c00406{left:585.000000px;}
.xa4_c00406{left:588.000000px;}
.xc9_c00406{left:589.080000px;}
.xb6_c00406{left:590.580000px;}
.x28_c00406{left:592.920000px;}
.xd3_c00406{left:594.420000px;}
.xbe_c00406{left:597.000000px;}
.x39_c00406{left:599.580000px;}
.x91_c00406{left:603.000000px;}
.x85_c00406{left:606.000000px;}
.xc_c00406{left:609.000000px;}
.x61_c00406{left:610.500000px;}
.x4e_c00406{left:615.000000px;}
.xa8_c00406{left:618.000000px;}
.x9e_c00406{left:619.500000px;}
.x30_c00406{left:621.420000px;}
.x92_c00406{left:622.920000px;}
.x1b_c00406{left:624.000000px;}
.xd4_c00406{left:625.500000px;}
.x29_c00406{left:627.000000px;}
.x79_c00406{left:628.500000px;}
.x4f_c00406{left:631.500000px;}
.x66_c00406{left:634.500000px;}
.xd0_c00406{left:639.000000px;}
.xd6_c00406{left:642.000000px;}
.x3a_c00406{left:645.000000px;}
.x93_c00406{left:646.500000px;}
.xca_c00406{left:649.920000px;}
.x86_c00406{left:654.420000px;}
.x3b_c00406{left:664.500000px;}
.x94_c00406{left:666.000000px;}
.xd8_c00406{left:670.080000px;}
.xa5_c00406{left:672.000000px;}
.x59_c00406{left:673.920000px;}
.x81_c00406{left:676.500000px;}
.x50_c00406{left:678.000000px;}
.x7a_c00406{left:680.580000px;}
.x31_c00406{left:684.645000px;}
.x8b_c00406{left:686.580000px;}
.xd_c00406{left:688.080000px;}
.x67_c00406{left:693.000000px;}
.xb1_c00406{left:694.500000px;}
.x3c_c00406{left:700.500000px;}
.x2_c00406{left:701.580000px;}
.x46_c00406{left:703.500000px;}
.xb9_c00406{left:705.000000px;}
.x2a_c00406{left:712.080000px;}
.xc4_c00406{left:714.420000px;}
.xd9_c00406{left:715.500000px;}
.x11_c00406{left:718.500000px;}
.x6b_c00406{left:719.580000px;}
@media print{
.v2_c00406{vertical-align:-10.666667pt;}
.v0_c00406{vertical-align:0.000000pt;}
.v1_c00406{vertical-align:5.333333pt;}
.ls0_c00406{letter-spacing:0.000000pt;}
.ws1_c00406{word-spacing:-4.452053pt;}
.ws2_c00406{word-spacing:0.000000pt;}
.ws0_c00406{word-spacing:9.026142pt;}
.fs7_c00406{font-size:3.040000pt;}
.fs8_c00406{font-size:6.026667pt;}
.fs3_c00406{font-size:16.640000pt;}
.fs0_c00406{font-size:18.133333pt;}
.fs2_c00406{font-size:22.666667pt;}
.fs1_c00406{font-size:25.706667pt;}
.fs5_c00406{font-size:28.746667pt;}
.fs4_c00406{font-size:31.733333pt;}
.fs6_c00406{font-size:34.773333pt;}
.y0_c00406{bottom:0.000000pt;}
.ycb_c00406{bottom:224.733333pt;}
.ycc_c00406{bottom:224.933333pt;}
.yce_c00406{bottom:225.106667pt;}
.ycd_c00406{bottom:227.026667pt;}
.yc9_c00406{bottom:241.106667pt;}
.yc8_c00406{bottom:241.306667pt;}
.yca_c00406{bottom:243.226667pt;}
.yc7_c00406{bottom:244.360000pt;}
.yc6_c00406{bottom:259.026667pt;}
.yc4_c00406{bottom:259.773333pt;}
.yc5_c00406{bottom:260.733333pt;}
.ybf_c00406{bottom:276.360000pt;}
.yc3_c00406{bottom:276.760000pt;}
.ybe_c00406{bottom:277.106667pt;}
.yc0_c00406{bottom:278.266667pt;}
.yc1_c00406{bottom:278.640000pt;}
.ybd_c00406{bottom:279.026667pt;}
.yc2_c00406{bottom:279.226667pt;}
.ybb_c00406{bottom:293.693333pt;}
.yba_c00406{bottom:294.440000pt;}
.yb9_c00406{bottom:295.400000pt;}
.yb7_c00406{bottom:296.360000pt;}
.yb8_c00406{bottom:296.560000pt;}
.ybc_c00406{bottom:297.693333pt;}
.yb3_c00406{bottom:311.026667pt;}
.yb5_c00406{bottom:311.773333pt;}
.yb4_c00406{bottom:313.106667pt;}
.yb6_c00406{bottom:313.693333pt;}
.yb1_c00406{bottom:313.893333pt;}
.yb2_c00406{bottom:315.026667pt;}
.yad_c00406{bottom:328.360000pt;}
.yac_c00406{bottom:330.440000pt;}
.yb0_c00406{bottom:330.640000pt;}
.yaf_c00406{bottom:331.026667pt;}
.yae_c00406{bottom:331.226667pt;}
.yab_c00406{bottom:332.360000pt;}
.ya8_c00406{bottom:346.640000pt;}
.ya9_c00406{bottom:347.026667pt;}
.ya7_c00406{bottom:347.773333pt;}
.yaa_c00406{bottom:348.560000pt;}
.ya6_c00406{bottom:349.693333pt;}
.ya5_c00406{bottom:349.893333pt;}
.ya4_c00406{bottom:363.026667pt;}
.ya2_c00406{bottom:364.360000pt;}
.ya1_c00406{bottom:365.106667pt;}
.ya3_c00406{bottom:366.066667pt;}
.y9e_c00406{bottom:381.693333pt;}
.y9c_c00406{bottom:382.440000pt;}
.ya0_c00406{bottom:383.226667pt;}
.y9f_c00406{bottom:383.973333pt;}
.y9b_c00406{bottom:384.360000pt;}
.y9d_c00406{bottom:385.306667pt;}
.y99_c00406{bottom:399.026667pt;}
.y97_c00406{bottom:399.773333pt;}
.y9a_c00406{bottom:399.973333pt;}
.y98_c00406{bottom:400.373333pt;}
.y91_c00406{bottom:416.360000pt;}
.y93_c00406{bottom:417.106667pt;}
.y96_c00406{bottom:417.493333pt;}
.y8e_c00406{bottom:417.693333pt;}
.y95_c00406{bottom:417.893333pt;}
.y90_c00406{bottom:418.440000pt;}
.y94_c00406{bottom:418.640000pt;}
.y92_c00406{bottom:419.026667pt;}
.y8f_c00406{bottom:420.360000pt;}
.y8d_c00406{bottom:433.693333pt;}
.y8b_c00406{bottom:435.026667pt;}
.y8c_c00406{bottom:436.560000pt;}
.y8a_c00406{bottom:437.693333pt;}
.y88_c00406{bottom:451.026667pt;}
.y86_c00406{bottom:451.973333pt;}
.y87_c00406{bottom:452.160000pt;}
.y84_c00406{bottom:453.106667pt;}
.y89_c00406{bottom:453.893333pt;}
.y85_c00406{bottom:455.026667pt;}
.y83_c00406{bottom:470.440000pt;}
.y82_c00406{bottom:472.360000pt;}
.y81_c00406{bottom:485.693333pt;}
.y7d_c00406{bottom:487.773333pt;}
.y80_c00406{bottom:488.733333pt;}
.y7f_c00406{bottom:489.106667pt;}
.y7e_c00406{bottom:489.893333pt;}
.y79_c00406{bottom:504.360000pt;}
.y7a_c00406{bottom:505.106667pt;}
.y77_c00406{bottom:506.440000pt;}
.y7c_c00406{bottom:507.026667pt;}
.y7b_c00406{bottom:507.973333pt;}
.y78_c00406{bottom:508.360000pt;}
.y76_c00406{bottom:522.440000pt;}
.y73_c00406{bottom:523.773333pt;}
.y74_c00406{bottom:523.973333pt;}
.y75_c00406{bottom:524.560000pt;}
.y72_c00406{bottom:525.693333pt;}
.y71_c00406{bottom:539.026667pt;}
.y6f_c00406{bottom:541.106667pt;}
.y70_c00406{bottom:543.026667pt;}
.y6c_c00406{bottom:558.440000pt;}
.y6e_c00406{bottom:559.226667pt;}
.y6d_c00406{bottom:559.973333pt;}
.y6b_c00406{bottom:560.360000pt;}
.y69_c00406{bottom:575.026667pt;}
.y6a_c00406{bottom:575.773333pt;}
.y68_c00406{bottom:576.360000pt;}
.y67_c00406{bottom:577.306667pt;}
.y66_c00406{bottom:577.693333pt;}
.y64_c00406{bottom:592.360000pt;}
.y61_c00406{bottom:593.106667pt;}
.y65_c00406{bottom:593.893333pt;}
.y63_c00406{bottom:594.640000pt;}
.y62_c00406{bottom:595.026667pt;}
.y5e_c00406{bottom:609.693333pt;}
.y60_c00406{bottom:610.440000pt;}
.y5f_c00406{bottom:610.640000pt;}
.y5d_c00406{bottom:611.773333pt;}
.y5c_c00406{bottom:612.360000pt;}
.y5b_c00406{bottom:613.693333pt;}
.y58_c00406{bottom:627.773333pt;}
.y57_c00406{bottom:629.106667pt;}
.y59_c00406{bottom:629.693333pt;}
.y5a_c00406{bottom:629.893333pt;}
.y56_c00406{bottom:631.026667pt;}
.y54_c00406{bottom:645.106667pt;}
.y51_c00406{bottom:645.693333pt;}
.y53_c00406{bottom:646.440000pt;}
.y55_c00406{bottom:647.973333pt;}
.y52_c00406{bottom:648.360000pt;}
.y4d_c00406{bottom:661.693333pt;}
.y4c_c00406{bottom:663.773333pt;}
.y4f_c00406{bottom:664.360000pt;}
.y4e_c00406{bottom:664.560000pt;}
.y4b_c00406{bottom:665.693333pt;}
.y50_c00406{bottom:665.893333pt;}
.y48_c00406{bottom:680.360000pt;}
.y47_c00406{bottom:681.106667pt;}
.y4a_c00406{bottom:681.893333pt;}
.y46_c00406{bottom:683.026667pt;}
.y49_c00406{bottom:683.226667pt;}
.y44_c00406{bottom:698.440000pt;}
.y45_c00406{bottom:700.360000pt;}
.y43_c00406{bottom:715.026667pt;}
.y42_c00406{bottom:715.400000pt;}
.y3f_c00406{bottom:715.773333pt;}
.y41_c00406{bottom:716.560000pt;}
.y40_c00406{bottom:717.306667pt;}
.y3e_c00406{bottom:717.693333pt;}
.y3d_c00406{bottom:732.360000pt;}
.y3c_c00406{bottom:733.106667pt;}
.y39_c00406{bottom:750.640000pt;}
.y3b_c00406{bottom:751.773333pt;}
.y3a_c00406{bottom:752.560000pt;}
.y38_c00406{bottom:753.306667pt;}
.y37_c00406{bottom:753.693333pt;}
.y33_c00406{bottom:767.773333pt;}
.y34_c00406{bottom:769.106667pt;}
.y36_c00406{bottom:769.893333pt;}
.y35_c00406{bottom:771.026667pt;}
.y32_c00406{bottom:784.360000pt;}
.y2c_c00406{bottom:785.693333pt;}
.y2f_c00406{bottom:786.066667pt;}
.y2d_c00406{bottom:786.440000pt;}
.y30_c00406{bottom:787.226667pt;}
.y31_c00406{bottom:787.400000pt;}
.y2e_c00406{bottom:788.360000pt;}
.y2a_c00406{bottom:801.693333pt;}
.y2b_c00406{bottom:803.026667pt;}
.y29_c00406{bottom:803.773333pt;}
.y28_c00406{bottom:821.106667pt;}
.y27_c00406{bottom:823.026667pt;}
.y22_c00406{bottom:836.360000pt;}
.y24_c00406{bottom:837.693333pt;}
.y21_c00406{bottom:838.440000pt;}
.y25_c00406{bottom:838.640000pt;}
.y26_c00406{bottom:839.973333pt;}
.y20_c00406{bottom:840.360000pt;}
.y23_c00406{bottom:840.560000pt;}
.y1e_c00406{bottom:854.440000pt;}
.y1f_c00406{bottom:855.026667pt;}
.y1d_c00406{bottom:855.773333pt;}
.y1b_c00406{bottom:857.693333pt;}
.y1c_c00406{bottom:857.893333pt;}
.y1a_c00406{bottom:858.640000pt;}
.y14_c00406{bottom:872.360000pt;}
.y15_c00406{bottom:873.106667pt;}
.y18_c00406{bottom:874.266667pt;}
.y16_c00406{bottom:875.026667pt;}
.y17_c00406{bottom:875.226667pt;}
.y19_c00406{bottom:876.360000pt;}
.y12_c00406{bottom:890.440000pt;}
.y13_c00406{bottom:891.026667pt;}
.y11_c00406{bottom:892.360000pt;}
.y10_c00406{bottom:892.560000pt;}
.ye_c00406{bottom:907.026667pt;}
.yf_c00406{bottom:907.773333pt;}
.yb_c00406{bottom:909.693333pt;}
.yd_c00406{bottom:909.893333pt;}
.yc_c00406{bottom:910.640000pt;}
.y8_c00406{bottom:925.106667pt;}
.y9_c00406{bottom:925.693333pt;}
.ya_c00406{bottom:926.440000pt;}
.y3_c00406{bottom:942.640000pt;}
.y7_c00406{bottom:943.773333pt;}
.y6_c00406{bottom:944.560000pt;}
.y5_c00406{bottom:945.306667pt;}
.y4_c00406{bottom:945.693333pt;}
.y2_c00406{bottom:977.693333pt;}
.y1_c00406{bottom:979.600000pt;}
.h9_c00406{height:3.739141pt;}
.ha_c00406{height:7.412682pt;}
.h4_c00406{height:20.466875pt;}
.h1_c00406{height:22.303646pt;}
.h3_c00406{height:27.879557pt;}
.h2_c00406{height:31.618698pt;}
.h6_c00406{height:35.357839pt;}
.h5_c00406{height:39.031380pt;}
.h8_c00406{height:42.770521pt;}
.h7_c00406{height:44.364714pt;}
.h0_c00406{height:1186.666667pt;}
.w0_c00406{width:782.666667pt;}
.x0_c00406{left:0.000000pt;}
.xbf_c00406{left:135.040000pt;}
.x3_c00406{left:138.666667pt;}
.x47_c00406{left:139.626667pt;}
.xb3_c00406{left:140.960000pt;}
.x12_c00406{left:146.293333pt;}
.x62_c00406{left:147.626667pt;}
.x4_c00406{left:168.000000pt;}
.x6c_c00406{left:169.333333pt;}
.xe_c00406{left:190.666667pt;}
.x3d_c00406{left:192.960000pt;}
.x13_c00406{left:198.666667pt;}
.x5_c00406{left:200.000000pt;}
.x5a_c00406{left:200.960000pt;}
.x1c_c00406{left:204.000000pt;}
.x68_c00406{left:204.960000pt;}
.xc6_c00406{left:206.293333pt;}
.xcb_c00406{left:208.000000pt;}
.x2b_c00406{left:209.706667pt;}
.xb2_c00406{left:213.333333pt;}
.xf_c00406{left:214.666667pt;}
.x32_c00406{left:215.626667pt;}
.x1f_c00406{left:216.960000pt;}
.x1d_c00406{left:218.666667pt;}
.x87_c00406{left:220.373333pt;}
.x6d_c00406{left:223.040000pt;}
.xc0_c00406{left:224.373333pt;}
.x14_c00406{left:226.293333pt;}
.x8c_c00406{left:227.626667pt;}
.x6_c00406{left:230.293333pt;}
.x33_c00406{left:232.000000pt;}
.xae_c00406{left:233.333333pt;}
.x20_c00406{left:234.666667pt;}
.x10_c00406{left:235.800000pt;}
.x69_c00406{left:238.666667pt;}
.x48_c00406{left:241.333333pt;}
.xb7_c00406{left:244.000000pt;}
.x1e_c00406{left:245.333333pt;}
.xa6_c00406{left:246.466667pt;}
.x51_c00406{left:247.626667pt;}
.x88_c00406{left:251.626667pt;}
.x3e_c00406{left:253.333333pt;}
.x8d_c00406{left:254.293333pt;}
.x95_c00406{left:258.666667pt;}
.x6a_c00406{left:259.800000pt;}
.xc7_c00406{left:261.333333pt;}
.x15_c00406{left:262.293333pt;}
.xcc_c00406{left:264.000000pt;}
.x6e_c00406{left:264.960000pt;}
.x9f_c00406{left:266.666667pt;}
.x7_c00406{left:267.626667pt;}
.x9a_c00406{left:268.960000pt;}
.x2c_c00406{left:272.000000pt;}
.x52_c00406{left:273.133333pt;}
.x49_c00406{left:274.293333pt;}
.x21_c00406{left:276.000000pt;}
.x63_c00406{left:277.706667pt;}
.x6f_c00406{left:278.666667pt;}
.x16_c00406{left:280.000000pt;}
.xcd_c00406{left:281.333333pt;}
.x82_c00406{left:282.293333pt;}
.x72_c00406{left:284.000000pt;}
.x7b_c00406{left:285.333333pt;}
.xba_c00406{left:286.666667pt;}
.x8_c00406{left:288.000000pt;}
.x3f_c00406{left:292.373333pt;}
.x4a_c00406{left:294.666667pt;}
.x96_c00406{left:298.666667pt;}
.x2d_c00406{left:300.960000pt;}
.x5b_c00406{left:303.626667pt;}
.x83_c00406{left:307.040000pt;}
.x53_c00406{left:309.333333pt;}
.x89_c00406{left:310.666667pt;}
.x70_c00406{left:317.333333pt;}
.xa0_c00406{left:318.666667pt;}
.x17_c00406{left:321.333333pt;}
.xce_c00406{left:322.293333pt;}
.x73_c00406{left:324.000000pt;}
.xaf_c00406{left:324.960000pt;}
.x2e_c00406{left:326.466667pt;}
.x9_c00406{left:330.666667pt;}
.xa9_c00406{left:333.333333pt;}
.x77_c00406{left:334.666667pt;}
.x7c_c00406{left:335.626667pt;}
.x40_c00406{left:337.333333pt;}
.x9b_c00406{left:338.666667pt;}
.x54_c00406{left:340.960000pt;}
.xda_c00406{left:342.466667pt;}
.x5c_c00406{left:343.626667pt;}
.x97_c00406{left:344.960000pt;}
.x34_c00406{left:346.293333pt;}
.xd1_c00406{left:349.706667pt;}
.xaa_c00406{left:350.666667pt;}
.x22_c00406{left:351.626667pt;}
.x7d_c00406{left:356.000000pt;}
.x1_c00406{left:358.666667pt;}
.x5d_c00406{left:360.373333pt;}
.x4b_c00406{left:361.333333pt;}
.x44_c00406{left:363.626667pt;}
.xb8_c00406{left:366.293333pt;}
.xd7_c00406{left:369.706667pt;}
.x5e_c00406{left:377.333333pt;}
.x98_c00406{left:378.666667pt;}
.x35_c00406{left:380.000000pt;}
.x9c_c00406{left:381.706667pt;}
.xb0_c00406{left:384.000000pt;}
.x23_c00406{left:385.333333pt;}
.x7e_c00406{left:386.666667pt;}
.x8e_c00406{left:387.626667pt;}
.x71_c00406{left:390.666667pt;}
.xc1_c00406{left:392.000000pt;}
.x41_c00406{left:392.960000pt;}
.xab_c00406{left:395.040000pt;}
.x55_c00406{left:397.706667pt;}
.x18_c00406{left:398.666667pt;}
.x99_c00406{left:399.800000pt;}
.xbb_c00406{left:403.040000pt;}
.x78_c00406{left:405.333333pt;}
.xa_c00406{left:409.333333pt;}
.xd2_c00406{left:410.666667pt;}
.x24_c00406{left:413.706667pt;}
.x36_c00406{left:415.040000pt;}
.xc2_c00406{left:416.373333pt;}
.x4c_c00406{left:420.000000pt;}
.x19_c00406{left:425.333333pt;}
.xac_c00406{left:427.626667pt;}
.x42_c00406{left:429.706667pt;}
.x74_c00406{left:433.706667pt;}
.xc5_c00406{left:435.040000pt;}
.x9d_c00406{left:436.000000pt;}
.x7f_c00406{left:439.626667pt;}
.xa1_c00406{left:442.293333pt;}
.x56_c00406{left:443.626667pt;}
.x25_c00406{left:447.040000pt;}
.x45_c00406{left:448.373333pt;}
.xb4_c00406{left:451.040000pt;}
.x43_c00406{left:453.333333pt;}
.x8f_c00406{left:454.666667pt;}
.xa2_c00406{left:459.040000pt;}
.x26_c00406{left:464.000000pt;}
.xc3_c00406{left:465.333333pt;}
.x75_c00406{left:467.040000pt;}
.xb_c00406{left:468.000000pt;}
.xc8_c00406{left:471.040000pt;}
.x84_c00406{left:473.706667pt;}
.x5f_c00406{left:476.000000pt;}
.x8a_c00406{left:476.960000pt;}
.x90_c00406{left:478.293333pt;}
.x1a_c00406{left:481.333333pt;}
.xa3_c00406{left:482.666667pt;}
.x76_c00406{left:484.000000pt;}
.xad_c00406{left:485.706667pt;}
.x80_c00406{left:486.666667pt;}
.xa7_c00406{left:487.626667pt;}
.xbc_c00406{left:488.960000pt;}
.x4d_c00406{left:491.040000pt;}
.x37_c00406{left:496.000000pt;}
.x27_c00406{left:497.333333pt;}
.x64_c00406{left:498.666667pt;}
.x60_c00406{left:500.000000pt;}
.x57_c00406{left:500.960000pt;}
.xd5_c00406{left:502.293333pt;}
.xcf_c00406{left:505.706667pt;}
.xb5_c00406{left:506.666667pt;}
.x2f_c00406{left:508.000000pt;}
.xbd_c00406{left:512.000000pt;}
.x65_c00406{left:513.333333pt;}
.x38_c00406{left:516.000000pt;}
.x58_c00406{left:520.000000pt;}
.xa4_c00406{left:522.666667pt;}
.xc9_c00406{left:523.626667pt;}
.xb6_c00406{left:524.960000pt;}
.x28_c00406{left:527.040000pt;}
.xd3_c00406{left:528.373333pt;}
.xbe_c00406{left:530.666667pt;}
.x39_c00406{left:532.960000pt;}
.x91_c00406{left:536.000000pt;}
.x85_c00406{left:538.666667pt;}
.xc_c00406{left:541.333333pt;}
.x61_c00406{left:542.666667pt;}
.x4e_c00406{left:546.666667pt;}
.xa8_c00406{left:549.333333pt;}
.x9e_c00406{left:550.666667pt;}
.x30_c00406{left:552.373333pt;}
.x92_c00406{left:553.706667pt;}
.x1b_c00406{left:554.666667pt;}
.xd4_c00406{left:556.000000pt;}
.x29_c00406{left:557.333333pt;}
.x79_c00406{left:558.666667pt;}
.x4f_c00406{left:561.333333pt;}
.x66_c00406{left:564.000000pt;}
.xd0_c00406{left:568.000000pt;}
.xd6_c00406{left:570.666667pt;}
.x3a_c00406{left:573.333333pt;}
.x93_c00406{left:574.666667pt;}
.xca_c00406{left:577.706667pt;}
.x86_c00406{left:581.706667pt;}
.x3b_c00406{left:590.666667pt;}
.x94_c00406{left:592.000000pt;}
.xd8_c00406{left:595.626667pt;}
.xa5_c00406{left:597.333333pt;}
.x59_c00406{left:599.040000pt;}
.x81_c00406{left:601.333333pt;}
.x50_c00406{left:602.666667pt;}
.x7a_c00406{left:604.960000pt;}
.x31_c00406{left:608.573333pt;}
.x8b_c00406{left:610.293333pt;}
.xd_c00406{left:611.626667pt;}
.x67_c00406{left:616.000000pt;}
.xb1_c00406{left:617.333333pt;}
.x3c_c00406{left:622.666667pt;}
.x2_c00406{left:623.626667pt;}
.x46_c00406{left:625.333333pt;}
.xb9_c00406{left:626.666667pt;}
.x2a_c00406{left:632.960000pt;}
.xc4_c00406{left:635.040000pt;}
.xd9_c00406{left:636.000000pt;}
.x11_c00406{left:638.666667pt;}
.x6b_c00406{left:639.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_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_ff412082cb72a7800ba2b78e.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb2_c00407{transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);}
.m4b_c00407{transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);}
.mb5_c00407{transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);}
.m42_c00407{transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);}
.m90_c00407{transform:matrix(0.357607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357607,0.000000,0.000000,0.250000,0,0);}
.m9a_c00407{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m2a_c00407{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m50_c00407{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m8a_c00407{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m7a_c00407{transform:matrix(0.371429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371429,0.000000,0.000000,0.250000,0,0);}
.ma5_c00407{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.maf_c00407{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m2e_c00407{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m70_c00407{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m58_c00407{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m2d_c00407{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m8f_c00407{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.mae_c00407{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m57_c00407{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m5a_c00407{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m33_c00407{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m7b_c00407{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.mb3_c00407{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mb4_c00407{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.me_c00407{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m8c_c00407{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m10_c00407{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m1c_c00407{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m71_c00407{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.m37_c00407{transform:matrix(0.399540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399540,0.000000,0.000000,0.250000,0,0);}
.m4f_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);}
.m61_c00407{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m0_c00407{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.m4a_c00407{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m2f_c00407{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m66_c00407{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.ma1_c00407{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m31_c00407{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m5e_c00407{transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);}
.m1b_c00407{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m4e_c00407{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m86_c00407{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m29_c00407{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m28_c00407{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m15_c00407{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.m1a_c00407{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m78_c00407{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.mad_c00407{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m17_c00407{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m80_c00407{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m7f_c00407{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m9b_c00407{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.mb7_c00407{transform:matrix(0.429499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429499,0.000000,0.000000,0.250000,0,0);}
.m48_c00407{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m4_c00407{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m81_c00407{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m12_c00407{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m3b_c00407{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m77_c00407{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m95_c00407{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m8_c00407{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.mac_c00407{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m99_c00407{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.ma4_c00407{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m74_c00407{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m85_c00407{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.m52_c00407{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m22_c00407{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m8b_c00407{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m3e_c00407{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m40_c00407{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.ma2_c00407{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m89_c00407{transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);}
.mb0_c00407{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m73_c00407{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.m72_c00407{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m59_c00407{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m8e_c00407{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.ma6_c00407{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m5c_c00407{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m91_c00407{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m64_c00407{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m8d_c00407{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.ma3_c00407{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m92_c00407{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.mc_c00407{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.ma8_c00407{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m49_c00407{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m23_c00407{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m43_c00407{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m16_c00407{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m35_c00407{transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);}
.maa_c00407{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m4d_c00407{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m68_c00407{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.mf_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);}
.m6c_c00407{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.ma9_c00407{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m46_c00407{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m97_c00407{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m14_c00407{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m1f_c00407{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m69_c00407{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.m9d_c00407{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m21_c00407{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m34_c00407{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m7_c00407{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m9f_c00407{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m62_c00407{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mab_c00407{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m96_c00407{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m82_c00407{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m93_c00407{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m6f_c00407{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m54_c00407{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m38_c00407{transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);}
.m3c_c00407{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m45_c00407{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m6b_c00407{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m7e_c00407{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m44_c00407{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m3f_c00407{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m39_c00407{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m9_c00407{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m26_c00407{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m1e_c00407{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m6_c00407{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m47_c00407{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m3_c00407{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m84_c00407{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m83_c00407{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.ma7_c00407{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m3a_c00407{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m25_c00407{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m3d_c00407{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m94_c00407{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m87_c00407{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m6a_c00407{transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);}
.m55_c00407{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m5_c00407{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m5b_c00407{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m32_c00407{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m41_c00407{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m98_c00407{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m1d_c00407{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m13_c00407{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.m9e_c00407{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m60_c00407{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m2b_c00407{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.m76_c00407{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m5f_c00407{transform:matrix(0.610588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610588,0.000000,0.000000,0.250000,0,0);}
.m20_c00407{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m18_c00407{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m1_c00407{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);}
.m51_c00407{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m75_c00407{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);}
.m36_c00407{transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);}
.m2c_c00407{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m19_c00407{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m56_c00407{transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);}
.m79_c00407{transform:matrix(0.642941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642941,0.000000,0.000000,0.250000,0,0);}
.m7d_c00407{transform:matrix(0.650420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650420,0.000000,0.000000,0.250000,0,0);}
.m27_c00407{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m30_c00407{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.mb_c00407{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.ma0_c00407{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m2_c00407{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.m6d_c00407{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.m53_c00407{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m67_c00407{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m63_c00407{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m24_c00407{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mb6_c00407{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.m6e_c00407{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m7c_c00407{transform:matrix(0.800588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800588,0.000000,0.000000,0.250000,0,0);}
.m88_c00407{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.md_c00407{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m65_c00407{transform:matrix(0.842949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.842949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.842949,0.000000,0.000000,0.250000,0,0);}
.m9c_c00407{transform:matrix(0.880609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.880609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.880609,0.000000,0.000000,0.250000,0,0);}
.m5d_c00407{transform:matrix(0.888622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.888622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.888622,0.000000,0.000000,0.250000,0,0);}
.m4c_c00407{transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);}
.m11_c00407{transform:matrix(0.999199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.999199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.999199,0.000000,0.000000,0.250000,0,0);}
.ma_c00407{transform:matrix(1.153045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.153045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.153045,0.000000,0.000000,0.250000,0,0);}
.mb1_c00407{transform:matrix(1.756637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.756637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.756637,0.000000,0.000000,0.250000,0,0);}
.v1_c00407{vertical-align:-12.000000px;}
.v2_c00407{vertical-align:-7.740000px;}
.v4_c00407{vertical-align:-6.000000px;}
.v0_c00407{vertical-align:0.000000px;}
.v5_c00407{vertical-align:12.000000px;}
.v3_c00407{vertical-align:18.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;}
}
.ws3_c00407{word-spacing:-16.889280px;}
.ws8_c00407{word-spacing:-8.678629px;}
.ws0_c00407{word-spacing:-8.008560px;}
.ws7_c00407{word-spacing:-5.939993px;}
.ws5_c00407{word-spacing:-3.201356px;}
.ws1_c00407{word-spacing:-0.328560px;}
.wsa_c00407{word-spacing:0.000000px;}
.ws4_c00407{word-spacing:2.371228px;}
.ws6_c00407{word-spacing:5.833886px;}
.ws9_c00407{word-spacing:56.209594px;}
.ws2_c00407{word-spacing:68.143477px;}
._1_c00407{width:2.733378px;}
._0_c00407{width:5.472015px;}
.fc0_c00407{color:transparent;}
.fs7_c00407{font-size:3.420000px;}
.fs8_c00407{font-size:6.780000px;}
.fs2_c00407{font-size:18.720000px;}
.fs1_c00407{font-size:20.400000px;}
.fs5_c00407{font-size:25.500000px;}
.fs3_c00407{font-size:28.920000px;}
.fs0_c00407{font-size:32.340000px;}
.fs4_c00407{font-size:35.700000px;}
.fs6_c00407{font-size:39.120000px;}
.y0_c00407{bottom:0.000000px;}
.ye7_c00407{bottom:248.970000px;}
.yeb_c00407{bottom:249.405000px;}
.yec_c00407{bottom:249.825000px;}
.ye8_c00407{bottom:250.245000px;}
.ye6_c00407{bottom:251.130000px;}
.ye9_c00407{bottom:251.745000px;}
.yea_c00407{bottom:252.825000px;}
.ye0_c00407{bottom:267.405000px;}
.ye4_c00407{bottom:268.905000px;}
.ydf_c00407{bottom:269.745000px;}
.ye1_c00407{bottom:271.245000px;}
.yde_c00407{bottom:271.905000px;}
.ye5_c00407{bottom:272.130000px;}
.ye3_c00407{bottom:272.970000px;}
.ye2_c00407{bottom:273.405000px;}
.yd6_c00407{bottom:288.405000px;}
.yd7_c00407{bottom:289.245000px;}
.ydc_c00407{bottom:289.680000px;}
.ydb_c00407{bottom:290.355000px;}
.ydd_c00407{bottom:290.745000px;}
.yd8_c00407{bottom:291.405000px;}
.yda_c00407{bottom:291.630000px;}
.yd9_c00407{bottom:292.905000px;}
.yd2_c00407{bottom:307.905000px;}
.yd0_c00407{bottom:308.745000px;}
.yd4_c00407{bottom:309.405000px;}
.ycf_c00407{bottom:310.905000px;}
.yd3_c00407{bottom:311.130000px;}
.yd5_c00407{bottom:311.550000px;}
.yd1_c00407{bottom:312.405000px;}
.ycc_c00407{bottom:327.405000px;}
.yca_c00407{bottom:328.245000px;}
.ycd_c00407{bottom:328.905000px;}
.yce_c00407{bottom:330.630000px;}
.ycb_c00407{bottom:331.470000px;}
.yc9_c00407{bottom:331.905000px;}
.yc5_c00407{bottom:347.325000px;}
.yc7_c00407{bottom:348.405000px;}
.yc4_c00407{bottom:349.245000px;}
.yc8_c00407{bottom:349.905000px;}
.yc6_c00407{bottom:350.745000px;}
.yc3_c00407{bottom:351.405000px;}
.ybe_c00407{bottom:367.905000px;}
.ybd_c00407{bottom:368.745000px;}
.yc0_c00407{bottom:370.245000px;}
.ybc_c00407{bottom:370.905000px;}
.yc2_c00407{bottom:371.130000px;}
.yc1_c00407{bottom:371.970000px;}
.ybf_c00407{bottom:372.405000px;}
.yb8_c00407{bottom:388.245000px;}
.yba_c00407{bottom:389.745000px;}
.yb6_c00407{bottom:390.405000px;}
.yb7_c00407{bottom:390.630000px;}
.yb9_c00407{bottom:391.470000px;}
.ybb_c00407{bottom:391.905000px;}
.yb5_c00407{bottom:409.245000px;}
.yb2_c00407{bottom:409.905000px;}
.yb4_c00407{bottom:410.130000px;}
.yb3_c00407{bottom:411.405000px;}
.yb0_c00407{bottom:426.405000px;}
.yb1_c00407{bottom:427.905000px;}
.yad_c00407{bottom:428.745000px;}
.yaf_c00407{bottom:429.405000px;}
.yae_c00407{bottom:430.905000px;}
.yaa_c00407{bottom:447.405000px;}
.ya9_c00407{bottom:448.245000px;}
.yab_c00407{bottom:449.970000px;}
.ya8_c00407{bottom:450.405000px;}
.yac_c00407{bottom:450.630000px;}
.ya5_c00407{bottom:467.325000px;}
.ya7_c00407{bottom:467.745000px;}
.ya6_c00407{bottom:469.905000px;}
.ya0_c00407{bottom:486.405000px;}
.ya4_c00407{bottom:487.245000px;}
.ya3_c00407{bottom:488.745000px;}
.ya1_c00407{bottom:489.405000px;}
.ya2_c00407{bottom:489.630000px;}
.y9e_c00407{bottom:505.905000px;}
.y9d_c00407{bottom:506.745000px;}
.y9c_c00407{bottom:508.905000px;}
.y9b_c00407{bottom:509.130000px;}
.y9f_c00407{bottom:510.405000px;}
.y97_c00407{bottom:527.745000px;}
.y9a_c00407{bottom:528.630000px;}
.y99_c00407{bottom:529.905000px;}
.y98_c00407{bottom:530.970000px;}
.y95_c00407{bottom:547.245000px;}
.y96_c00407{bottom:548.970000px;}
.y94_c00407{bottom:549.405000px;}
.y8f_c00407{bottom:565.905000px;}
.y91_c00407{bottom:566.745000px;}
.y92_c00407{bottom:567.630000px;}
.y93_c00407{bottom:567.825000px;}
.y90_c00407{bottom:568.470000px;}
.y8e_c00407{bottom:568.905000px;}
.y8a_c00407{bottom:586.245000px;}
.y8d_c00407{bottom:586.470000px;}
.y89_c00407{bottom:587.130000px;}
.y8b_c00407{bottom:588.405000px;}
.y8c_c00407{bottom:589.470000px;}
.y84_c00407{bottom:604.905000px;}
.y83_c00407{bottom:605.745000px;}
.y86_c00407{bottom:606.825000px;}
.y85_c00407{bottom:607.245000px;}
.y82_c00407{bottom:607.905000px;}
.y88_c00407{bottom:608.130000px;}
.y87_c00407{bottom:609.405000px;}
.y81_c00407{bottom:626.745000px;}
.y80_c00407{bottom:627.405000px;}
.y7f_c00407{bottom:628.905000px;}
.y7d_c00407{bottom:646.245000px;}
.y7e_c00407{bottom:646.470000px;}
.y7a_c00407{bottom:647.130000px;}
.y7c_c00407{bottom:647.970000px;}
.y7b_c00407{bottom:648.405000px;}
.y78_c00407{bottom:664.245000px;}
.y77_c00407{bottom:665.745000px;}
.y76_c00407{bottom:666.630000px;}
.y74_c00407{bottom:666.825000px;}
.y75_c00407{bottom:667.905000px;}
.y79_c00407{bottom:668.130000px;}
.y6e_c00407{bottom:682.905000px;}
.y70_c00407{bottom:683.970000px;}
.y72_c00407{bottom:685.245000px;}
.y73_c00407{bottom:686.130000px;}
.y6f_c00407{bottom:686.325000px;}
.y71_c00407{bottom:686.970000px;}
.y6d_c00407{bottom:687.405000px;}
.y6c_c00407{bottom:706.905000px;}
.y67_c00407{bottom:724.470000px;}
.y6b_c00407{bottom:725.745000px;}
.y68_c00407{bottom:726.405000px;}
.y69_c00407{bottom:726.630000px;}
.y6a_c00407{bottom:727.905000px;}
.y64_c00407{bottom:743.745000px;}
.y63_c00407{bottom:744.825000px;}
.y61_c00407{bottom:745.905000px;}
.y62_c00407{bottom:746.130000px;}
.y66_c00407{bottom:746.970000px;}
.y65_c00407{bottom:747.405000px;}
.y5f_c00407{bottom:763.245000px;}
.y5b_c00407{bottom:763.470000px;}
.y59_c00407{bottom:763.905000px;}
.y5c_c00407{bottom:764.745000px;}
.y5a_c00407{bottom:765.405000px;}
.y5e_c00407{bottom:765.630000px;}
.y60_c00407{bottom:766.905000px;}
.y5d_c00407{bottom:768.630000px;}
.y55_c00407{bottom:781.905000px;}
.y56_c00407{bottom:782.745000px;}
.y57_c00407{bottom:784.245000px;}
.y58_c00407{bottom:785.325000px;}
.y51_c00407{bottom:802.470000px;}
.y52_c00407{bottom:802.905000px;}
.y4f_c00407{bottom:803.745000px;}
.y54_c00407{bottom:804.630000px;}
.y53_c00407{bottom:805.470000px;}
.y50_c00407{bottom:805.905000px;}
.y4e_c00407{bottom:822.405000px;}
.y4b_c00407{bottom:822.825000px;}
.y4d_c00407{bottom:823.245000px;}
.y4a_c00407{bottom:825.405000px;}
.y4c_c00407{bottom:826.470000px;}
.y48_c00407{bottom:841.905000px;}
.y46_c00407{bottom:842.745000px;}
.y49_c00407{bottom:843.420000px;}
.y47_c00407{bottom:844.905000px;}
.y42_c00407{bottom:861.405000px;}
.y3f_c00407{bottom:862.245000px;}
.y3e_c00407{bottom:862.470000px;}
.y44_c00407{bottom:863.745000px;}
.y40_c00407{bottom:864.405000px;}
.y45_c00407{bottom:864.630000px;}
.y41_c00407{bottom:865.470000px;}
.y43_c00407{bottom:865.905000px;}
.y3d_c00407{bottom:880.905000px;}
.y39_c00407{bottom:881.325000px;}
.y3b_c00407{bottom:881.745000px;}
.y37_c00407{bottom:881.970000px;}
.y3c_c00407{bottom:883.245000px;}
.y38_c00407{bottom:883.905000px;}
.y3a_c00407{bottom:884.970000px;}
.y36_c00407{bottom:900.405000px;}
.y34_c00407{bottom:901.245000px;}
.y32_c00407{bottom:902.325000px;}
.y35_c00407{bottom:902.745000px;}
.y31_c00407{bottom:903.405000px;}
.y33_c00407{bottom:903.630000px;}
.y2f_c00407{bottom:921.180000px;}
.y30_c00407{bottom:922.245000px;}
.y2d_c00407{bottom:923.325000px;}
.y2e_c00407{bottom:923.970000px;}
.y2c_c00407{bottom:924.405000px;}
.y29_c00407{bottom:941.745000px;}
.y2b_c00407{bottom:941.970000px;}
.y28_c00407{bottom:942.630000px;}
.y2a_c00407{bottom:943.050000px;}
.y27_c00407{bottom:943.905000px;}
.y22_c00407{bottom:959.745000px;}
.y24_c00407{bottom:959.970000px;}
.y25_c00407{bottom:961.245000px;}
.y21_c00407{bottom:961.905000px;}
.y23_c00407{bottom:962.970000px;}
.y26_c00407{bottom:964.470000px;}
.y1b_c00407{bottom:978.405000px;}
.y1e_c00407{bottom:980.325000px;}
.y20_c00407{bottom:980.745000px;}
.y1c_c00407{bottom:981.405000px;}
.y1f_c00407{bottom:981.630000px;}
.y1d_c00407{bottom:982.905000px;}
.y18_c00407{bottom:997.905000px;}
.y19_c00407{bottom:998.970000px;}
.y1a_c00407{bottom:999.405000px;}
.y17_c00407{bottom:1000.245000px;}
.y11_c00407{bottom:1018.470000px;}
.y13_c00407{bottom:1018.905000px;}
.y10_c00407{bottom:1019.745000px;}
.y16_c00407{bottom:1021.245000px;}
.y14_c00407{bottom:1021.470000px;}
.yf_c00407{bottom:1021.905000px;}
.y15_c00407{bottom:1022.130000px;}
.y12_c00407{bottom:1022.970000px;}
.ye_c00407{bottom:1038.405000px;}
.y9_c00407{bottom:1039.245000px;}
.yd_c00407{bottom:1039.905000px;}
.yc_c00407{bottom:1040.970000px;}
.yb_c00407{bottom:1041.405000px;}
.ya_c00407{bottom:1041.630000px;}
.y6_c00407{bottom:1056.405000px;}
.y8_c00407{bottom:1057.905000px;}
.y5_c00407{bottom:1058.745000px;}
.y7_c00407{bottom:1060.470000px;}
.y4_c00407{bottom:1060.905000px;}
.y3_c00407{bottom:1061.130000px;}
.y1_c00407{bottom:1098.825000px;}
.y2_c00407{bottom:1099.050000px;}
.h8_c00407{height:4.206533px;}
.hb_c00407{height:8.339268px;}
.h3_c00407{height:23.025234px;}
.h2_c00407{height:25.091602px;}
.h6_c00407{height:31.364502px;}
.h4_c00407{height:35.571035px;}
.h1_c00407{height:39.777568px;}
.h5_c00407{height:43.910303px;}
.ha_c00407{height:47.571035px;}
.h7_c00407{height:48.116836px;}
.h9_c00407{height:53.571035px;}
.h0_c00407{height:1335.000000px;}
.w0_c00407{width:880.500000px;}
.x0_c00407{left:0.000000px;}
.xef_c00407{left:151.920000px;}
.xa9_c00407{left:153.420000px;}
.x1_c00407{left:154.500000px;}
.x96_c00407{left:167.580000px;}
.x3e_c00407{left:169.080000px;}
.x18_c00407{left:170.580000px;}
.xf0_c00407{left:190.080000px;}
.x97_c00407{left:191.145000px;}
.x8b_c00407{left:192.420000px;}
.x3_c00407{left:193.500000px;}
.x10_c00407{left:195.000000px;}
.xcc_c00407{left:204.000000px;}
.x7a_c00407{left:205.500000px;}
.xb3_c00407{left:214.500000px;}
.xd9_c00407{left:217.920000px;}
.x86_c00407{left:220.080000px;}
.x38_c00407{left:226.500000px;}
.x7d_c00407{left:230.580000px;}
.x24_c00407{left:232.500000px;}
.x3f_c00407{left:235.080000px;}
.x58_c00407{left:237.420000px;}
.xfa_c00407{left:238.500000px;}
.x8c_c00407{left:241.500000px;}
.x61_c00407{left:242.580000px;}
.xeb_c00407{left:244.080000px;}
.xc6_c00407{left:245.580000px;}
.xf3_c00407{left:247.080000px;}
.xe2_c00407{left:250.500000px;}
.xb9_c00407{left:253.500000px;}
.x4_c00407{left:255.420000px;}
.x19_c00407{left:256.920000px;}
.x2f_c00407{left:258.420000px;}
.x68_c00407{left:259.500000px;}
.x47_c00407{left:261.000000px;}
.xaa_c00407{left:262.500000px;}
.x98_c00407{left:264.000000px;}
.x4f_c00407{left:265.500000px;}
.xf4_c00407{left:267.000000px;}
.xb4_c00407{left:268.500000px;}
.xda_c00407{left:269.580000px;}
.xba_c00407{left:271.500000px;}
.x11_c00407{left:274.500000px;}
.x1f_c00407{left:277.920000px;}
.x87_c00407{left:279.000000px;}
.x40_c00407{left:281.580000px;}
.x62_c00407{left:283.500000px;}
.x25_c00407{left:286.500000px;}
.xc7_c00407{left:291.420000px;}
.x69_c00407{left:293.580000px;}
.xbb_c00407{left:295.500000px;}
.x8d_c00407{left:296.580000px;}
.xea_c00407{left:298.500000px;}
.x74_c00407{left:300.420000px;}
.xce_c00407{left:302.580000px;}
.x5_c00407{left:304.080000px;}
.x50_c00407{left:305.580000px;}
.x12_c00407{left:307.500000px;}
.x20_c00407{left:309.000000px;}
.x6a_c00407{left:310.500000px;}
.x39_c00407{left:312.420000px;}
.xe3_c00407{left:313.920000px;}
.x99_c00407{left:316.500000px;}
.x6_c00407{left:321.000000px;}
.x1a_c00407{left:322.500000px;}
.x51_c00407{left:327.000000px;}
.x30_c00407{left:328.500000px;}
.xd2_c00407{left:329.580000px;}
.x8e_c00407{left:331.500000px;}
.xa5_c00407{left:333.000000px;}
.xae_c00407{left:334.500000px;}
.xab_c00407{left:336.000000px;}
.x59_c00407{left:339.420000px;}
.x3a_c00407{left:345.000000px;}
.xf1_c00407{left:346.500000px;}
.xd3_c00407{left:348.000000px;}
.x26_c00407{left:349.500000px;}
.x7e_c00407{left:352.500000px;}
.xed_c00407{left:354.000000px;}
.x6b_c00407{left:356.580000px;}
.xf5_c00407{left:358.500000px;}
.x9a_c00407{left:363.420000px;}
.x7_c00407{left:366.000000px;}
.x75_c00407{left:367.500000px;}
.x41_c00407{left:368.580000px;}
.xbc_c00407{left:371.580000px;}
.xc8_c00407{left:373.500000px;}
.x31_c00407{left:375.420000px;}
.x48_c00407{left:376.920000px;}
.xa6_c00407{left:379.080000px;}
.x8f_c00407{left:382.080000px;}
.x5a_c00407{left:386.580000px;}
.xec_c00407{left:388.500000px;}
.xbd_c00407{left:390.420000px;}
.xcf_c00407{left:391.500000px;}
.xc9_c00407{left:393.000000px;}
.x88_c00407{left:394.500000px;}
.x63_c00407{left:397.500000px;}
.xe1_c00407{left:399.000000px;}
.xf6_c00407{left:402.420000px;}
.x27_c00407{left:403.500000px;}
.xa1_c00407{left:405.000000px;}
.xbe_c00407{left:408.000000px;}
.x2_c00407{left:409.500000px;}
.x49_c00407{left:412.920000px;}
.x76_c00407{left:414.000000px;}
.xb5_c00407{left:415.500000px;}
.x9b_c00407{left:418.500000px;}
.x7f_c00407{left:421.920000px;}
.xca_c00407{left:429.000000px;}
.x42_c00407{left:430.500000px;}
.xdb_c00407{left:432.420000px;}
.xaf_c00407{left:435.000000px;}
.x89_c00407{left:436.500000px;}
.x64_c00407{left:438.000000px;}
.x90_c00407{left:439.500000px;}
.xe4_c00407{left:441.000000px;}
.x6c_c00407{left:442.500000px;}
.xa7_c00407{left:444.420000px;}
.x5b_c00407{left:447.000000px;}
.x8_c00407{left:448.920000px;}
.x1b_c00407{left:450.420000px;}
.x4a_c00407{left:451.500000px;}
.x65_c00407{left:453.000000px;}
.xf2_c00407{left:454.500000px;}
.x32_c00407{left:459.420000px;}
.xf7_c00407{left:460.920000px;}
.x9c_c00407{left:462.000000px;}
.x66_c00407{left:467.580000px;}
.x4b_c00407{left:469.920000px;}
.x52_c00407{left:471.000000px;}
.x80_c00407{left:472.500000px;}
.x21_c00407{left:473.580000px;}
.xd4_c00407{left:475.500000px;}
.x81_c00407{left:477.420000px;}
.xb6_c00407{left:478.920000px;}
.xa8_c00407{left:481.920000px;}
.x91_c00407{left:483.000000px;}
.xac_c00407{left:484.500000px;}
.xbf_c00407{left:485.580000px;}
.x28_c00407{left:487.920000px;}
.x82_c00407{left:490.500000px;}
.x43_c00407{left:493.080000px;}
.xb0_c00407{left:496.500000px;}
.xee_c00407{left:498.000000px;}
.x6d_c00407{left:499.080000px;}
.xcb_c00407{left:501.000000px;}
.x4c_c00407{left:502.500000px;}
.x92_c00407{left:505.500000px;}
.x9_c00407{left:507.420000px;}
.xc0_c00407{left:510.000000px;}
.xc3_c00407{left:511.080000px;}
.x13_c00407{left:513.000000px;}
.x3b_c00407{left:514.080000px;}
.xd5_c00407{left:516.420000px;}
.x33_c00407{left:519.000000px;}
.x9d_c00407{left:520.500000px;}
.x29_c00407{left:523.920000px;}
.xf8_c00407{left:525.000000px;}
.xb7_c00407{left:526.080000px;}
.x5c_c00407{left:529.920000px;}
.x83_c00407{left:531.000000px;}
.x7b_c00407{left:532.500000px;}
.xdc_c00407{left:533.580000px;}
.x53_c00407{left:535.080000px;}
.xcd_c00407{left:538.500000px;}
.x22_c00407{left:540.000000px;}
.xd6_c00407{left:541.080000px;}
.xa_c00407{left:544.080000px;}
.xb8_c00407{left:546.000000px;}
.xa2_c00407{left:550.500000px;}
.x6e_c00407{left:552.000000px;}
.xc1_c00407{left:553.500000px;}
.x4d_c00407{left:554.580000px;}
.x77_c00407{left:556.920000px;}
.x9e_c00407{left:558.000000px;}
.x34_c00407{left:561.000000px;}
.xdd_c00407{left:562.500000px;}
.x2a_c00407{left:564.000000px;}
.xe8_c00407{left:567.000000px;}
.x44_c00407{left:570.000000px;}
.x8a_c00407{left:571.080000px;}
.x6f_c00407{left:573.000000px;}
.xb_c00407{left:576.000000px;}
.x1c_c00407{left:577.500000px;}
.xa3_c00407{left:579.420000px;}
.x14_c00407{left:581.580000px;}
.x4e_c00407{left:583.275000px;}
.xc2_c00407{left:585.420000px;}
.x5d_c00407{left:586.920000px;}
.x54_c00407{left:588.000000px;}
.x45_c00407{left:589.920000px;}
.x84_c00407{left:591.000000px;}
.xdf_c00407{left:593.145000px;}
.xc_c00407{left:595.920000px;}
.x93_c00407{left:598.275000px;}
.x70_c00407{left:603.420000px;}
.x67_c00407{left:606.000000px;}
.xde_c00407{left:609.000000px;}
.x55_c00407{left:610.500000px;}
.x23_c00407{left:612.000000px;}
.x7c_c00407{left:613.500000px;}
.x2b_c00407{left:616.500000px;}
.xd0_c00407{left:619.080000px;}
.xb1_c00407{left:621.000000px;}
.xfb_c00407{left:623.355000px;}
.x5e_c00407{left:625.275000px;}
.xd_c00407{left:627.000000px;}
.x1d_c00407{left:628.500000px;}
.xe5_c00407{left:631.080000px;}
.x15_c00407{left:632.580000px;}
.x2c_c00407{left:634.500000px;}
.xa4_c00407{left:636.000000px;}
.xe9_c00407{left:637.500000px;}
.x35_c00407{left:639.000000px;}
.x71_c00407{left:640.080000px;}
.xe0_c00407{left:642.000000px;}
.x56_c00407{left:643.920000px;}
.x46_c00407{left:646.920000px;}
.xc4_c00407{left:648.420000px;}
.xd7_c00407{left:649.500000px;}
.x78_c00407{left:650.775000px;}
.x3c_c00407{left:652.080000px;}
.x5f_c00407{left:655.500000px;}
.xe_c00407{left:658.080000px;}
.x1e_c00407{left:659.580000px;}
.xe6_c00407{left:663.000000px;}
.x85_c00407{left:664.920000px;}
.xd1_c00407{left:666.420000px;}
.x72_c00407{left:667.920000px;}
.xf9_c00407{left:670.080000px;}
.x2d_c00407{left:671.580000px;}
.xc5_c00407{left:676.080000px;}
.x3d_c00407{left:678.000000px;}
.x9f_c00407{left:679.080000px;}
.x57_c00407{left:680.580000px;}
.x36_c00407{left:682.275000px;}
.xd8_c00407{left:687.000000px;}
.xfc_c00407{left:688.080000px;}
.x16_c00407{left:689.145000px;}
.xb2_c00407{left:691.500000px;}
.x94_c00407{left:693.000000px;}
.x73_c00407{left:694.500000px;}
.xe7_c00407{left:696.000000px;}
.x2e_c00407{left:700.275000px;}
.x60_c00407{left:705.000000px;}
.xf_c00407{left:706.080000px;}
.x17_c00407{left:708.000000px;}
.xad_c00407{left:709.920000px;}
.x79_c00407{left:713.580000px;}
.x95_c00407{left:715.920000px;}
.x37_c00407{left:717.000000px;}
.xa0_c00407{left:718.080000px;}
@media print{
.v1_c00407{vertical-align:-10.666667pt;}
.v2_c00407{vertical-align:-6.880000pt;}
.v4_c00407{vertical-align:-5.333333pt;}
.v0_c00407{vertical-align:0.000000pt;}
.v5_c00407{vertical-align:10.666667pt;}
.v3_c00407{vertical-align:16.000000pt;}
.ls0_c00407{letter-spacing:0.000000pt;}
.ws3_c00407{word-spacing:-15.012693pt;}
.ws8_c00407{word-spacing:-7.714337pt;}
.ws0_c00407{word-spacing:-7.118720pt;}
.ws7_c00407{word-spacing:-5.279994pt;}
.ws5_c00407{word-spacing:-2.845650pt;}
.ws1_c00407{word-spacing:-0.292053pt;}
.wsa_c00407{word-spacing:0.000000pt;}
.ws4_c00407{word-spacing:2.107758pt;}
.ws6_c00407{word-spacing:5.185676pt;}
.ws9_c00407{word-spacing:49.964084pt;}
.ws2_c00407{word-spacing:60.571979pt;}
._1_c00407{width:2.429669pt;}
._0_c00407{width:4.864013pt;}
.fs7_c00407{font-size:3.040000pt;}
.fs8_c00407{font-size:6.026667pt;}
.fs2_c00407{font-size:16.640000pt;}
.fs1_c00407{font-size:18.133333pt;}
.fs5_c00407{font-size:22.666667pt;}
.fs3_c00407{font-size:25.706667pt;}
.fs0_c00407{font-size:28.746667pt;}
.fs4_c00407{font-size:31.733333pt;}
.fs6_c00407{font-size:34.773333pt;}
.y0_c00407{bottom:0.000000pt;}
.ye7_c00407{bottom:221.306667pt;}
.yeb_c00407{bottom:221.693333pt;}
.yec_c00407{bottom:222.066667pt;}
.ye8_c00407{bottom:222.440000pt;}
.ye6_c00407{bottom:223.226667pt;}
.ye9_c00407{bottom:223.773333pt;}
.yea_c00407{bottom:224.733333pt;}
.ye0_c00407{bottom:237.693333pt;}
.ye4_c00407{bottom:239.026667pt;}
.ydf_c00407{bottom:239.773333pt;}
.ye1_c00407{bottom:241.106667pt;}
.yde_c00407{bottom:241.693333pt;}
.ye5_c00407{bottom:241.893333pt;}
.ye3_c00407{bottom:242.640000pt;}
.ye2_c00407{bottom:243.026667pt;}
.yd6_c00407{bottom:256.360000pt;}
.yd7_c00407{bottom:257.106667pt;}
.ydc_c00407{bottom:257.493333pt;}
.ydb_c00407{bottom:258.093333pt;}
.ydd_c00407{bottom:258.440000pt;}
.yd8_c00407{bottom:259.026667pt;}
.yda_c00407{bottom:259.226667pt;}
.yd9_c00407{bottom:260.360000pt;}
.yd2_c00407{bottom:273.693333pt;}
.yd0_c00407{bottom:274.440000pt;}
.yd4_c00407{bottom:275.026667pt;}
.ycf_c00407{bottom:276.360000pt;}
.yd3_c00407{bottom:276.560000pt;}
.yd5_c00407{bottom:276.933333pt;}
.yd1_c00407{bottom:277.693333pt;}
.ycc_c00407{bottom:291.026667pt;}
.yca_c00407{bottom:291.773333pt;}
.ycd_c00407{bottom:292.360000pt;}
.yce_c00407{bottom:293.893333pt;}
.ycb_c00407{bottom:294.640000pt;}
.yc9_c00407{bottom:295.026667pt;}
.yc5_c00407{bottom:308.733333pt;}
.yc7_c00407{bottom:309.693333pt;}
.yc4_c00407{bottom:310.440000pt;}
.yc8_c00407{bottom:311.026667pt;}
.yc6_c00407{bottom:311.773333pt;}
.yc3_c00407{bottom:312.360000pt;}
.ybe_c00407{bottom:327.026667pt;}
.ybd_c00407{bottom:327.773333pt;}
.yc0_c00407{bottom:329.106667pt;}
.ybc_c00407{bottom:329.693333pt;}
.yc2_c00407{bottom:329.893333pt;}
.yc1_c00407{bottom:330.640000pt;}
.ybf_c00407{bottom:331.026667pt;}
.yb8_c00407{bottom:345.106667pt;}
.yba_c00407{bottom:346.440000pt;}
.yb6_c00407{bottom:347.026667pt;}
.yb7_c00407{bottom:347.226667pt;}
.yb9_c00407{bottom:347.973333pt;}
.ybb_c00407{bottom:348.360000pt;}
.yb5_c00407{bottom:363.773333pt;}
.yb2_c00407{bottom:364.360000pt;}
.yb4_c00407{bottom:364.560000pt;}
.yb3_c00407{bottom:365.693333pt;}
.yb0_c00407{bottom:379.026667pt;}
.yb1_c00407{bottom:380.360000pt;}
.yad_c00407{bottom:381.106667pt;}
.yaf_c00407{bottom:381.693333pt;}
.yae_c00407{bottom:383.026667pt;}
.yaa_c00407{bottom:397.693333pt;}
.ya9_c00407{bottom:398.440000pt;}
.yab_c00407{bottom:399.973333pt;}
.ya8_c00407{bottom:400.360000pt;}
.yac_c00407{bottom:400.560000pt;}
.ya5_c00407{bottom:415.400000pt;}
.ya7_c00407{bottom:415.773333pt;}
.ya6_c00407{bottom:417.693333pt;}
.ya0_c00407{bottom:432.360000pt;}
.ya4_c00407{bottom:433.106667pt;}
.ya3_c00407{bottom:434.440000pt;}
.ya1_c00407{bottom:435.026667pt;}
.ya2_c00407{bottom:435.226667pt;}
.y9e_c00407{bottom:449.693333pt;}
.y9d_c00407{bottom:450.440000pt;}
.y9c_c00407{bottom:452.360000pt;}
.y9b_c00407{bottom:452.560000pt;}
.y9f_c00407{bottom:453.693333pt;}
.y97_c00407{bottom:469.106667pt;}
.y9a_c00407{bottom:469.893333pt;}
.y99_c00407{bottom:471.026667pt;}
.y98_c00407{bottom:471.973333pt;}
.y95_c00407{bottom:486.440000pt;}
.y96_c00407{bottom:487.973333pt;}
.y94_c00407{bottom:488.360000pt;}
.y8f_c00407{bottom:503.026667pt;}
.y91_c00407{bottom:503.773333pt;}
.y92_c00407{bottom:504.560000pt;}
.y93_c00407{bottom:504.733333pt;}
.y90_c00407{bottom:505.306667pt;}
.y8e_c00407{bottom:505.693333pt;}
.y8a_c00407{bottom:521.106667pt;}
.y8d_c00407{bottom:521.306667pt;}
.y89_c00407{bottom:521.893333pt;}
.y8b_c00407{bottom:523.026667pt;}
.y8c_c00407{bottom:523.973333pt;}
.y84_c00407{bottom:537.693333pt;}
.y83_c00407{bottom:538.440000pt;}
.y86_c00407{bottom:539.400000pt;}
.y85_c00407{bottom:539.773333pt;}
.y82_c00407{bottom:540.360000pt;}
.y88_c00407{bottom:540.560000pt;}
.y87_c00407{bottom:541.693333pt;}
.y81_c00407{bottom:557.106667pt;}
.y80_c00407{bottom:557.693333pt;}
.y7f_c00407{bottom:559.026667pt;}
.y7d_c00407{bottom:574.440000pt;}
.y7e_c00407{bottom:574.640000pt;}
.y7a_c00407{bottom:575.226667pt;}
.y7c_c00407{bottom:575.973333pt;}
.y7b_c00407{bottom:576.360000pt;}
.y78_c00407{bottom:590.440000pt;}
.y77_c00407{bottom:591.773333pt;}
.y76_c00407{bottom:592.560000pt;}
.y74_c00407{bottom:592.733333pt;}
.y75_c00407{bottom:593.693333pt;}
.y79_c00407{bottom:593.893333pt;}
.y6e_c00407{bottom:607.026667pt;}
.y70_c00407{bottom:607.973333pt;}
.y72_c00407{bottom:609.106667pt;}
.y73_c00407{bottom:609.893333pt;}
.y6f_c00407{bottom:610.066667pt;}
.y71_c00407{bottom:610.640000pt;}
.y6d_c00407{bottom:611.026667pt;}
.y6c_c00407{bottom:628.360000pt;}
.y67_c00407{bottom:643.973333pt;}
.y6b_c00407{bottom:645.106667pt;}
.y68_c00407{bottom:645.693333pt;}
.y69_c00407{bottom:645.893333pt;}
.y6a_c00407{bottom:647.026667pt;}
.y64_c00407{bottom:661.106667pt;}
.y63_c00407{bottom:662.066667pt;}
.y61_c00407{bottom:663.026667pt;}
.y62_c00407{bottom:663.226667pt;}
.y66_c00407{bottom:663.973333pt;}
.y65_c00407{bottom:664.360000pt;}
.y5f_c00407{bottom:678.440000pt;}
.y5b_c00407{bottom:678.640000pt;}
.y59_c00407{bottom:679.026667pt;}
.y5c_c00407{bottom:679.773333pt;}
.y5a_c00407{bottom:680.360000pt;}
.y5e_c00407{bottom:680.560000pt;}
.y60_c00407{bottom:681.693333pt;}
.y5d_c00407{bottom:683.226667pt;}
.y55_c00407{bottom:695.026667pt;}
.y56_c00407{bottom:695.773333pt;}
.y57_c00407{bottom:697.106667pt;}
.y58_c00407{bottom:698.066667pt;}
.y51_c00407{bottom:713.306667pt;}
.y52_c00407{bottom:713.693333pt;}
.y4f_c00407{bottom:714.440000pt;}
.y54_c00407{bottom:715.226667pt;}
.y53_c00407{bottom:715.973333pt;}
.y50_c00407{bottom:716.360000pt;}
.y4e_c00407{bottom:731.026667pt;}
.y4b_c00407{bottom:731.400000pt;}
.y4d_c00407{bottom:731.773333pt;}
.y4a_c00407{bottom:733.693333pt;}
.y4c_c00407{bottom:734.640000pt;}
.y48_c00407{bottom:748.360000pt;}
.y46_c00407{bottom:749.106667pt;}
.y49_c00407{bottom:749.706667pt;}
.y47_c00407{bottom:751.026667pt;}
.y42_c00407{bottom:765.693333pt;}
.y3f_c00407{bottom:766.440000pt;}
.y3e_c00407{bottom:766.640000pt;}
.y44_c00407{bottom:767.773333pt;}
.y40_c00407{bottom:768.360000pt;}
.y45_c00407{bottom:768.560000pt;}
.y41_c00407{bottom:769.306667pt;}
.y43_c00407{bottom:769.693333pt;}
.y3d_c00407{bottom:783.026667pt;}
.y39_c00407{bottom:783.400000pt;}
.y3b_c00407{bottom:783.773333pt;}
.y37_c00407{bottom:783.973333pt;}
.y3c_c00407{bottom:785.106667pt;}
.y38_c00407{bottom:785.693333pt;}
.y3a_c00407{bottom:786.640000pt;}
.y36_c00407{bottom:800.360000pt;}
.y34_c00407{bottom:801.106667pt;}
.y32_c00407{bottom:802.066667pt;}
.y35_c00407{bottom:802.440000pt;}
.y31_c00407{bottom:803.026667pt;}
.y33_c00407{bottom:803.226667pt;}
.y2f_c00407{bottom:818.826667pt;}
.y30_c00407{bottom:819.773333pt;}
.y2d_c00407{bottom:820.733333pt;}
.y2e_c00407{bottom:821.306667pt;}
.y2c_c00407{bottom:821.693333pt;}
.y29_c00407{bottom:837.106667pt;}
.y2b_c00407{bottom:837.306667pt;}
.y28_c00407{bottom:837.893333pt;}
.y2a_c00407{bottom:838.266667pt;}
.y27_c00407{bottom:839.026667pt;}
.y22_c00407{bottom:853.106667pt;}
.y24_c00407{bottom:853.306667pt;}
.y25_c00407{bottom:854.440000pt;}
.y21_c00407{bottom:855.026667pt;}
.y23_c00407{bottom:855.973333pt;}
.y26_c00407{bottom:857.306667pt;}
.y1b_c00407{bottom:869.693333pt;}
.y1e_c00407{bottom:871.400000pt;}
.y20_c00407{bottom:871.773333pt;}
.y1c_c00407{bottom:872.360000pt;}
.y1f_c00407{bottom:872.560000pt;}
.y1d_c00407{bottom:873.693333pt;}
.y18_c00407{bottom:887.026667pt;}
.y19_c00407{bottom:887.973333pt;}
.y1a_c00407{bottom:888.360000pt;}
.y17_c00407{bottom:889.106667pt;}
.y11_c00407{bottom:905.306667pt;}
.y13_c00407{bottom:905.693333pt;}
.y10_c00407{bottom:906.440000pt;}
.y16_c00407{bottom:907.773333pt;}
.y14_c00407{bottom:907.973333pt;}
.yf_c00407{bottom:908.360000pt;}
.y15_c00407{bottom:908.560000pt;}
.y12_c00407{bottom:909.306667pt;}
.ye_c00407{bottom:923.026667pt;}
.y9_c00407{bottom:923.773333pt;}
.yd_c00407{bottom:924.360000pt;}
.yc_c00407{bottom:925.306667pt;}
.yb_c00407{bottom:925.693333pt;}
.ya_c00407{bottom:925.893333pt;}
.y6_c00407{bottom:939.026667pt;}
.y8_c00407{bottom:940.360000pt;}
.y5_c00407{bottom:941.106667pt;}
.y7_c00407{bottom:942.640000pt;}
.y4_c00407{bottom:943.026667pt;}
.y3_c00407{bottom:943.226667pt;}
.y1_c00407{bottom:976.733333pt;}
.y2_c00407{bottom:976.933333pt;}
.h8_c00407{height:3.739141pt;}
.hb_c00407{height:7.412682pt;}
.h3_c00407{height:20.466875pt;}
.h2_c00407{height:22.303646pt;}
.h6_c00407{height:27.879557pt;}
.h4_c00407{height:31.618698pt;}
.h1_c00407{height:35.357839pt;}
.h5_c00407{height:39.031380pt;}
.ha_c00407{height:42.285365pt;}
.h7_c00407{height:42.770521pt;}
.h9_c00407{height:47.618698pt;}
.h0_c00407{height:1186.666667pt;}
.w0_c00407{width:782.666667pt;}
.x0_c00407{left:0.000000pt;}
.xef_c00407{left:135.040000pt;}
.xa9_c00407{left:136.373333pt;}
.x1_c00407{left:137.333333pt;}
.x96_c00407{left:148.960000pt;}
.x3e_c00407{left:150.293333pt;}
.x18_c00407{left:151.626667pt;}
.xf0_c00407{left:168.960000pt;}
.x97_c00407{left:169.906667pt;}
.x8b_c00407{left:171.040000pt;}
.x3_c00407{left:172.000000pt;}
.x10_c00407{left:173.333333pt;}
.xcc_c00407{left:181.333333pt;}
.x7a_c00407{left:182.666667pt;}
.xb3_c00407{left:190.666667pt;}
.xd9_c00407{left:193.706667pt;}
.x86_c00407{left:195.626667pt;}
.x38_c00407{left:201.333333pt;}
.x7d_c00407{left:204.960000pt;}
.x24_c00407{left:206.666667pt;}
.x3f_c00407{left:208.960000pt;}
.x58_c00407{left:211.040000pt;}
.xfa_c00407{left:212.000000pt;}
.x8c_c00407{left:214.666667pt;}
.x61_c00407{left:215.626667pt;}
.xeb_c00407{left:216.960000pt;}
.xc6_c00407{left:218.293333pt;}
.xf3_c00407{left:219.626667pt;}
.xe2_c00407{left:222.666667pt;}
.xb9_c00407{left:225.333333pt;}
.x4_c00407{left:227.040000pt;}
.x19_c00407{left:228.373333pt;}
.x2f_c00407{left:229.706667pt;}
.x68_c00407{left:230.666667pt;}
.x47_c00407{left:232.000000pt;}
.xaa_c00407{left:233.333333pt;}
.x98_c00407{left:234.666667pt;}
.x4f_c00407{left:236.000000pt;}
.xf4_c00407{left:237.333333pt;}
.xb4_c00407{left:238.666667pt;}
.xda_c00407{left:239.626667pt;}
.xba_c00407{left:241.333333pt;}
.x11_c00407{left:244.000000pt;}
.x1f_c00407{left:247.040000pt;}
.x87_c00407{left:248.000000pt;}
.x40_c00407{left:250.293333pt;}
.x62_c00407{left:252.000000pt;}
.x25_c00407{left:254.666667pt;}
.xc7_c00407{left:259.040000pt;}
.x69_c00407{left:260.960000pt;}
.xbb_c00407{left:262.666667pt;}
.x8d_c00407{left:263.626667pt;}
.xea_c00407{left:265.333333pt;}
.x74_c00407{left:267.040000pt;}
.xce_c00407{left:268.960000pt;}
.x5_c00407{left:270.293333pt;}
.x50_c00407{left:271.626667pt;}
.x12_c00407{left:273.333333pt;}
.x20_c00407{left:274.666667pt;}
.x6a_c00407{left:276.000000pt;}
.x39_c00407{left:277.706667pt;}
.xe3_c00407{left:279.040000pt;}
.x99_c00407{left:281.333333pt;}
.x6_c00407{left:285.333333pt;}
.x1a_c00407{left:286.666667pt;}
.x51_c00407{left:290.666667pt;}
.x30_c00407{left:292.000000pt;}
.xd2_c00407{left:292.960000pt;}
.x8e_c00407{left:294.666667pt;}
.xa5_c00407{left:296.000000pt;}
.xae_c00407{left:297.333333pt;}
.xab_c00407{left:298.666667pt;}
.x59_c00407{left:301.706667pt;}
.x3a_c00407{left:306.666667pt;}
.xf1_c00407{left:308.000000pt;}
.xd3_c00407{left:309.333333pt;}
.x26_c00407{left:310.666667pt;}
.x7e_c00407{left:313.333333pt;}
.xed_c00407{left:314.666667pt;}
.x6b_c00407{left:316.960000pt;}
.xf5_c00407{left:318.666667pt;}
.x9a_c00407{left:323.040000pt;}
.x7_c00407{left:325.333333pt;}
.x75_c00407{left:326.666667pt;}
.x41_c00407{left:327.626667pt;}
.xbc_c00407{left:330.293333pt;}
.xc8_c00407{left:332.000000pt;}
.x31_c00407{left:333.706667pt;}
.x48_c00407{left:335.040000pt;}
.xa6_c00407{left:336.960000pt;}
.x8f_c00407{left:339.626667pt;}
.x5a_c00407{left:343.626667pt;}
.xec_c00407{left:345.333333pt;}
.xbd_c00407{left:347.040000pt;}
.xcf_c00407{left:348.000000pt;}
.xc9_c00407{left:349.333333pt;}
.x88_c00407{left:350.666667pt;}
.x63_c00407{left:353.333333pt;}
.xe1_c00407{left:354.666667pt;}
.xf6_c00407{left:357.706667pt;}
.x27_c00407{left:358.666667pt;}
.xa1_c00407{left:360.000000pt;}
.xbe_c00407{left:362.666667pt;}
.x2_c00407{left:364.000000pt;}
.x49_c00407{left:367.040000pt;}
.x76_c00407{left:368.000000pt;}
.xb5_c00407{left:369.333333pt;}
.x9b_c00407{left:372.000000pt;}
.x7f_c00407{left:375.040000pt;}
.xca_c00407{left:381.333333pt;}
.x42_c00407{left:382.666667pt;}
.xdb_c00407{left:384.373333pt;}
.xaf_c00407{left:386.666667pt;}
.x89_c00407{left:388.000000pt;}
.x64_c00407{left:389.333333pt;}
.x90_c00407{left:390.666667pt;}
.xe4_c00407{left:392.000000pt;}
.x6c_c00407{left:393.333333pt;}
.xa7_c00407{left:395.040000pt;}
.x5b_c00407{left:397.333333pt;}
.x8_c00407{left:399.040000pt;}
.x1b_c00407{left:400.373333pt;}
.x4a_c00407{left:401.333333pt;}
.x65_c00407{left:402.666667pt;}
.xf2_c00407{left:404.000000pt;}
.x32_c00407{left:408.373333pt;}
.xf7_c00407{left:409.706667pt;}
.x9c_c00407{left:410.666667pt;}
.x66_c00407{left:415.626667pt;}
.x4b_c00407{left:417.706667pt;}
.x52_c00407{left:418.666667pt;}
.x80_c00407{left:420.000000pt;}
.x21_c00407{left:420.960000pt;}
.xd4_c00407{left:422.666667pt;}
.x81_c00407{left:424.373333pt;}
.xb6_c00407{left:425.706667pt;}
.xa8_c00407{left:428.373333pt;}
.x91_c00407{left:429.333333pt;}
.xac_c00407{left:430.666667pt;}
.xbf_c00407{left:431.626667pt;}
.x28_c00407{left:433.706667pt;}
.x82_c00407{left:436.000000pt;}
.x43_c00407{left:438.293333pt;}
.xb0_c00407{left:441.333333pt;}
.xee_c00407{left:442.666667pt;}
.x6d_c00407{left:443.626667pt;}
.xcb_c00407{left:445.333333pt;}
.x4c_c00407{left:446.666667pt;}
.x92_c00407{left:449.333333pt;}
.x9_c00407{left:451.040000pt;}
.xc0_c00407{left:453.333333pt;}
.xc3_c00407{left:454.293333pt;}
.x13_c00407{left:456.000000pt;}
.x3b_c00407{left:456.960000pt;}
.xd5_c00407{left:459.040000pt;}
.x33_c00407{left:461.333333pt;}
.x9d_c00407{left:462.666667pt;}
.x29_c00407{left:465.706667pt;}
.xf8_c00407{left:466.666667pt;}
.xb7_c00407{left:467.626667pt;}
.x5c_c00407{left:471.040000pt;}
.x83_c00407{left:472.000000pt;}
.x7b_c00407{left:473.333333pt;}
.xdc_c00407{left:474.293333pt;}
.x53_c00407{left:475.626667pt;}
.xcd_c00407{left:478.666667pt;}
.x22_c00407{left:480.000000pt;}
.xd6_c00407{left:480.960000pt;}
.xa_c00407{left:483.626667pt;}
.xb8_c00407{left:485.333333pt;}
.xa2_c00407{left:489.333333pt;}
.x6e_c00407{left:490.666667pt;}
.xc1_c00407{left:492.000000pt;}
.x4d_c00407{left:492.960000pt;}
.x77_c00407{left:495.040000pt;}
.x9e_c00407{left:496.000000pt;}
.x34_c00407{left:498.666667pt;}
.xdd_c00407{left:500.000000pt;}
.x2a_c00407{left:501.333333pt;}
.xe8_c00407{left:504.000000pt;}
.x44_c00407{left:506.666667pt;}
.x8a_c00407{left:507.626667pt;}
.x6f_c00407{left:509.333333pt;}
.xb_c00407{left:512.000000pt;}
.x1c_c00407{left:513.333333pt;}
.xa3_c00407{left:515.040000pt;}
.x14_c00407{left:516.960000pt;}
.x4e_c00407{left:518.466667pt;}
.xc2_c00407{left:520.373333pt;}
.x5d_c00407{left:521.706667pt;}
.x54_c00407{left:522.666667pt;}
.x45_c00407{left:524.373333pt;}
.x84_c00407{left:525.333333pt;}
.xdf_c00407{left:527.240000pt;}
.xc_c00407{left:529.706667pt;}
.x93_c00407{left:531.800000pt;}
.x70_c00407{left:536.373333pt;}
.x67_c00407{left:538.666667pt;}
.xde_c00407{left:541.333333pt;}
.x55_c00407{left:542.666667pt;}
.x23_c00407{left:544.000000pt;}
.x7c_c00407{left:545.333333pt;}
.x2b_c00407{left:548.000000pt;}
.xd0_c00407{left:550.293333pt;}
.xb1_c00407{left:552.000000pt;}
.xfb_c00407{left:554.093333pt;}
.x5e_c00407{left:555.800000pt;}
.xd_c00407{left:557.333333pt;}
.x1d_c00407{left:558.666667pt;}
.xe5_c00407{left:560.960000pt;}
.x15_c00407{left:562.293333pt;}
.x2c_c00407{left:564.000000pt;}
.xa4_c00407{left:565.333333pt;}
.xe9_c00407{left:566.666667pt;}
.x35_c00407{left:568.000000pt;}
.x71_c00407{left:568.960000pt;}
.xe0_c00407{left:570.666667pt;}
.x56_c00407{left:572.373333pt;}
.x46_c00407{left:575.040000pt;}
.xc4_c00407{left:576.373333pt;}
.xd7_c00407{left:577.333333pt;}
.x78_c00407{left:578.466667pt;}
.x3c_c00407{left:579.626667pt;}
.x5f_c00407{left:582.666667pt;}
.xe_c00407{left:584.960000pt;}
.x1e_c00407{left:586.293333pt;}
.xe6_c00407{left:589.333333pt;}
.x85_c00407{left:591.040000pt;}
.xd1_c00407{left:592.373333pt;}
.x72_c00407{left:593.706667pt;}
.xf9_c00407{left:595.626667pt;}
.x2d_c00407{left:596.960000pt;}
.xc5_c00407{left:600.960000pt;}
.x3d_c00407{left:602.666667pt;}
.x9f_c00407{left:603.626667pt;}
.x57_c00407{left:604.960000pt;}
.x36_c00407{left:606.466667pt;}
.xd8_c00407{left:610.666667pt;}
.xfc_c00407{left:611.626667pt;}
.x16_c00407{left:612.573333pt;}
.xb2_c00407{left:614.666667pt;}
.x94_c00407{left:616.000000pt;}
.x73_c00407{left:617.333333pt;}
.xe7_c00407{left:618.666667pt;}
.x2e_c00407{left:622.466667pt;}
.x60_c00407{left:626.666667pt;}
.xf_c00407{left:627.626667pt;}
.x17_c00407{left:629.333333pt;}
.xad_c00407{left:631.040000pt;}
.x79_c00407{left:634.293333pt;}
.x95_c00407{left:636.373333pt;}
.x37_c00407{left:637.333333pt;}
.xa0_c00407{left:638.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_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_871a62bce6ebbf06ebae1098.woff2')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:1.688965;font-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_c00408{transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);}
.m6a_c00408{transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);}
.m81_c00408{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m9a_c00408{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m96_c00408{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m1e_c00408{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m95_c00408{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m4a_c00408{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m19_c00408{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m47_c00408{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m3e_c00408{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m2c_c00408{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m4c_c00408{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m49_c00408{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m6f_c00408{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m26_c00408{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m99_c00408{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m28_c00408{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m94_c00408{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);}
.m37_c00408{transform:matrix(0.400307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400307,0.000000,0.000000,0.250000,0,0);}
.m33_c00408{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m8_c00408{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m48_c00408{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m4b_c00408{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m21_c00408{transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);}
.m5f_c00408{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m4f_c00408{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m45_c00408{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m65_c00408{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m76_c00408{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m53_c00408{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m50_c00408{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m74_c00408{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m42_c00408{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m56_c00408{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m3b_c00408{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m6c_c00408{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m69_c00408{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m2a_c00408{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m7f_c00408{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m89_c00408{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m1b_c00408{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m57_c00408{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m31_c00408{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m5d_c00408{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.ma_c00408{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m4d_c00408{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m3_c00408{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m18_c00408{transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);}
.m29_c00408{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m85_c00408{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m44_c00408{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m58_c00408{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m2d_c00408{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m39_c00408{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m98_c00408{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.m22_c00408{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m7_c00408{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m6b_c00408{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m6e_c00408{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m6d_c00408{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.m13_c00408{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m90_c00408{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m93_c00408{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m25_c00408{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m87_c00408{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.m6_c00408{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m3a_c00408{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m9_c00408{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.m83_c00408{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.mc_c00408{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m7a_c00408{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m1f_c00408{transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);}
.m92_c00408{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m80_c00408{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m8f_c00408{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m8d_c00408{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m27_c00408{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m1_c00408{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m63_c00408{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m82_c00408{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.md_c00408{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);}
.m77_c00408{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m4e_c00408{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m2f_c00408{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m67_c00408{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m46_c00408{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m97_c00408{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m73_c00408{transform:matrix(0.513451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513451,0.000000,0.000000,0.250000,0,0);}
.m5e_c00408{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m5b_c00408{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m61_c00408{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m84_c00408{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m88_c00408{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m2b_c00408{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m86_c00408{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m59_c00408{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m68_c00408{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m34_c00408{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m70_c00408{transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);}
.m20_c00408{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m17_c00408{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m8a_c00408{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m35_c00408{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m51_c00408{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m1d_c00408{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m71_c00408{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m72_c00408{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m66_c00408{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m23_c00408{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m7d_c00408{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m52_c00408{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m5_c00408{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m16_c00408{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m36_c00408{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m5a_c00408{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m8c_c00408{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m78_c00408{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m14_c00408{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m54_c00408{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m8b_c00408{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m43_c00408{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m41_c00408{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m4_c00408{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m7c_c00408{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m38_c00408{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m8e_c00408{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m30_c00408{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);}
.m62_c00408{transform:matrix(0.582353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582353,0.000000,0.000000,0.250000,0,0);}
.m10_c00408{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m5c_c00408{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m1c_c00408{transform:matrix(0.584025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584025,0.000000,0.000000,0.250000,0,0);}
.m2e_c00408{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.m91_c00408{transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);}
.m55_c00408{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m64_c00408{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m11_c00408{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m0_c00408{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_c00408{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m79_c00408{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);}
.m75_c00408{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m3f_c00408{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m12_c00408{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m3d_c00408{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m2_c00408{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m24_c00408{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m15_c00408{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.m7b_c00408{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m3c_c00408{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m1a_c00408{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mb_c00408{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m32_c00408{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.me_c00408{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m7e_c00408{transform:matrix(0.842949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.842949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.842949,0.000000,0.000000,0.250000,0,0);}
.m60_c00408{transform:matrix(7.210526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.210526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.210526,0.000000,0.000000,0.250000,0,0);}
.v0_c00408{vertical-align:0.000000px;}
.v2_c00408{vertical-align:12.000000px;}
.v1_c00408{vertical-align:18.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:-16.889280px;}
.ws2_c00408{word-spacing:-8.678629px;}
.ws3_c00408{word-spacing:-5.939993px;}
.ws4_c00408{word-spacing:-3.201356px;}
.ws5_c00408{word-spacing:0.000000px;}
.ws1_c00408{word-spacing:68.143477px;}
._0_c00408{width:2.733378px;}
._1_c00408{width:5.472015px;}
.fc0_c00408{color:transparent;}
.fs7_c00408{font-size:3.420000px;}
.fs4_c00408{font-size:18.720000px;}
.fs0_c00408{font-size:20.400000px;}
.fs5_c00408{font-size:25.500000px;}
.fs1_c00408{font-size:28.920000px;}
.fs3_c00408{font-size:32.340000px;}
.fs2_c00408{font-size:35.700000px;}
.fs6_c00408{font-size:39.120000px;}
.y0_c00408{bottom:0.000000px;}
.yd4_c00408{bottom:250.905000px;}
.yd1_c00408{bottom:251.745000px;}
.yd6_c00408{bottom:252.420000px;}
.yd5_c00408{bottom:253.245000px;}
.yd2_c00408{bottom:253.905000px;}
.yd3_c00408{bottom:254.130000px;}
.yd7_c00408{bottom:254.325000px;}
.yce_c00408{bottom:271.905000px;}
.ycd_c00408{bottom:272.745000px;}
.yd0_c00408{bottom:273.630000px;}
.ycf_c00408{bottom:274.470000px;}
.ycc_c00408{bottom:274.905000px;}
.yc9_c00408{bottom:291.405000px;}
.yc8_c00408{bottom:292.245000px;}
.yca_c00408{bottom:293.970000px;}
.yc7_c00408{bottom:294.405000px;}
.ycb_c00408{bottom:294.630000px;}
.yc6_c00408{bottom:310.905000px;}
.yc5_c00408{bottom:311.745000px;}
.yc3_c00408{bottom:313.470000px;}
.yc4_c00408{bottom:313.905000px;}
.yc0_c00408{bottom:331.245000px;}
.ybe_c00408{bottom:332.325000px;}
.yc1_c00408{bottom:333.405000px;}
.ybf_c00408{bottom:333.630000px;}
.yc2_c00408{bottom:334.470000px;}
.ybb_c00408{bottom:352.905000px;}
.ybd_c00408{bottom:353.970000px;}
.ybc_c00408{bottom:354.405000px;}
.yba_c00408{bottom:370.245000px;}
.yb8_c00408{bottom:372.405000px;}
.yb9_c00408{bottom:373.905000px;}
.yb6_c00408{bottom:388.905000px;}
.yb5_c00408{bottom:390.405000px;}
.yb4_c00408{bottom:391.245000px;}
.yb7_c00408{bottom:393.405000px;}
.yb2_c00408{bottom:410.745000px;}
.yb3_c00408{bottom:412.470000px;}
.yb1_c00408{bottom:412.905000px;}
.yb0_c00408{bottom:430.245000px;}
.yae_c00408{bottom:432.405000px;}
.yaf_c00408{bottom:433.470000px;}
.yaa_c00408{bottom:448.905000px;}
.yad_c00408{bottom:449.745000px;}
.yab_c00408{bottom:451.905000px;}
.yac_c00408{bottom:452.970000px;}
.ya9_c00408{bottom:468.405000px;}
.ya8_c00408{bottom:469.245000px;}
.ya7_c00408{bottom:471.405000px;}
.ya5_c00408{bottom:488.745000px;}
.ya6_c00408{bottom:489.630000px;}
.ya2_c00408{bottom:490.245000px;}
.ya0_c00408{bottom:490.905000px;}
.ya4_c00408{bottom:491.130000px;}
.ya1_c00408{bottom:491.325000px;}
.ya3_c00408{bottom:491.970000px;}
.y9f_c00408{bottom:492.405000px;}
.y9c_c00408{bottom:509.745000px;}
.y9d_c00408{bottom:509.970000px;}
.y9e_c00408{bottom:510.405000px;}
.y9b_c00408{bottom:510.630000px;}
.y9a_c00408{bottom:511.905000px;}
.y99_c00408{bottom:526.905000px;}
.y98_c00408{bottom:527.970000px;}
.y95_c00408{bottom:529.245000px;}
.y97_c00408{bottom:530.325000px;}
.y96_c00408{bottom:531.405000px;}
.y91_c00408{bottom:546.405000px;}
.y94_c00408{bottom:547.905000px;}
.y90_c00408{bottom:548.745000px;}
.y93_c00408{bottom:549.630000px;}
.y92_c00408{bottom:550.470000px;}
.y8f_c00408{bottom:550.905000px;}
.y8e_c00408{bottom:565.905000px;}
.y8d_c00408{bottom:568.245000px;}
.y8c_c00408{bottom:569.130000px;}
.y8b_c00408{bottom:570.405000px;}
.y85_c00408{bottom:586.470000px;}
.y86_c00408{bottom:586.905000px;}
.y89_c00408{bottom:587.745000px;}
.y8a_c00408{bottom:588.630000px;}
.y84_c00408{bottom:589.905000px;}
.y88_c00408{bottom:590.130000px;}
.y87_c00408{bottom:590.970000px;}
.y81_c00408{bottom:607.245000px;}
.y80_c00408{bottom:608.325000px;}
.y83_c00408{bottom:609.405000px;}
.y82_c00408{bottom:610.470000px;}
.y7b_c00408{bottom:625.905000px;}
.y7e_c00408{bottom:626.745000px;}
.y7d_c00408{bottom:626.970000px;}
.y7c_c00408{bottom:628.905000px;}
.y7f_c00408{bottom:630.405000px;}
.y7a_c00408{bottom:645.405000px;}
.y79_c00408{bottom:646.680000px;}
.y78_c00408{bottom:647.745000px;}
.y76_c00408{bottom:648.405000px;}
.y77_c00408{bottom:649.905000px;}
.y75_c00408{bottom:664.905000px;}
.y74_c00408{bottom:665.970000px;}
.y71_c00408{bottom:667.245000px;}
.y73_c00408{bottom:668.325000px;}
.y72_c00408{bottom:669.405000px;}
.y6d_c00408{bottom:685.905000px;}
.y70_c00408{bottom:686.745000px;}
.y6e_c00408{bottom:688.470000px;}
.y6c_c00408{bottom:688.905000px;}
.y6f_c00408{bottom:689.130000px;}
.y69_c00408{bottom:705.180000px;}
.y6a_c00408{bottom:705.405000px;}
.y6b_c00408{bottom:706.245000px;}
.y68_c00408{bottom:708.405000px;}
.y64_c00408{bottom:724.905000px;}
.y66_c00408{bottom:725.745000px;}
.y65_c00408{bottom:727.905000px;}
.y67_c00408{bottom:728.970000px;}
.y63_c00408{bottom:744.405000px;}
.y61_c00408{bottom:745.245000px;}
.y62_c00408{bottom:747.405000px;}
.y60_c00408{bottom:748.470000px;}
.y5e_c00408{bottom:763.470000px;}
.y5f_c00408{bottom:763.905000px;}
.y5d_c00408{bottom:764.970000px;}
.y5c_c00408{bottom:765.420000px;}
.y5b_c00408{bottom:766.245000px;}
.y5a_c00408{bottom:768.405000px;}
.y54_c00408{bottom:783.405000px;}
.y57_c00408{bottom:783.825000px;}
.y59_c00408{bottom:784.680000px;}
.y55_c00408{bottom:784.905000px;}
.y52_c00408{bottom:785.745000px;}
.y58_c00408{bottom:786.630000px;}
.y56_c00408{bottom:787.470000px;}
.y53_c00408{bottom:787.905000px;}
.y4f_c00408{bottom:805.245000px;}
.y51_c00408{bottom:806.550000px;}
.y50_c00408{bottom:807.405000px;}
.y4e_c00408{bottom:823.470000px;}
.y4c_c00408{bottom:824.745000px;}
.y4b_c00408{bottom:826.050000px;}
.y4d_c00408{bottom:826.905000px;}
.y4a_c00408{bottom:841.905000px;}
.y45_c00408{bottom:843.405000px;}
.y47_c00408{bottom:844.245000px;}
.y46_c00408{bottom:845.130000px;}
.y49_c00408{bottom:845.745000px;}
.y48_c00408{bottom:846.405000px;}
.y41_c00408{bottom:862.905000px;}
.y3f_c00408{bottom:863.745000px;}
.y43_c00408{bottom:865.245000px;}
.y44_c00408{bottom:865.470000px;}
.y40_c00408{bottom:865.905000px;}
.y42_c00408{bottom:866.130000px;}
.y3d_c00408{bottom:882.405000px;}
.y39_c00408{bottom:883.245000px;}
.y3b_c00408{bottom:883.905000px;}
.y3e_c00408{bottom:884.325000px;}
.y38_c00408{bottom:885.405000px;}
.y3c_c00408{bottom:885.630000px;}
.y3a_c00408{bottom:886.470000px;}
.y35_c00408{bottom:901.905000px;}
.y33_c00408{bottom:902.745000px;}
.y32_c00408{bottom:903.825000px;}
.y34_c00408{bottom:904.905000px;}
.y37_c00408{bottom:905.130000px;}
.y36_c00408{bottom:905.970000px;}
.y31_c00408{bottom:922.245000px;}
.y2d_c00408{bottom:922.680000px;}
.y30_c00408{bottom:923.325000px;}
.y2f_c00408{bottom:923.745000px;}
.y2e_c00408{bottom:925.905000px;}
.y2b_c00408{bottom:943.245000px;}
.y2a_c00408{bottom:944.130000px;}
.y29_c00408{bottom:945.405000px;}
.y2c_c00408{bottom:945.630000px;}
.y28_c00408{bottom:946.470000px;}
.y27_c00408{bottom:960.825000px;}
.y26_c00408{bottom:961.470000px;}
.y23_c00408{bottom:961.905000px;}
.y22_c00408{bottom:962.745000px;}
.y25_c00408{bottom:962.970000px;}
.y1f_c00408{bottom:964.470000px;}
.y24_c00408{bottom:964.905000px;}
.y21_c00408{bottom:965.130000px;}
.y20_c00408{bottom:965.970000px;}
.y1c_c00408{bottom:981.405000px;}
.y1d_c00408{bottom:982.245000px;}
.y1e_c00408{bottom:984.405000px;}
.y17_c00408{bottom:1000.905000px;}
.y15_c00408{bottom:1001.745000px;}
.y1a_c00408{bottom:1002.405000px;}
.y18_c00408{bottom:1002.825000px;}
.y16_c00408{bottom:1003.905000px;}
.y1b_c00408{bottom:1004.130000px;}
.y19_c00408{bottom:1004.970000px;}
.y14_c00408{bottom:1020.405000px;}
.y13_c00408{bottom:1022.745000px;}
.y11_c00408{bottom:1023.405000px;}
.y10_c00408{bottom:1023.630000px;}
.y12_c00408{bottom:1024.905000px;}
.yb_c00408{bottom:1040.745000px;}
.yc_c00408{bottom:1040.970000px;}
.yf_c00408{bottom:1042.050000px;}
.ye_c00408{bottom:1043.130000px;}
.ya_c00408{bottom:1043.970000px;}
.yd_c00408{bottom:1044.405000px;}
.y6_c00408{bottom:1059.405000px;}
.y7_c00408{bottom:1061.325000px;}
.y3_c00408{bottom:1061.550000px;}
.y4_c00408{bottom:1061.745000px;}
.y8_c00408{bottom:1062.630000px;}
.y9_c00408{bottom:1062.825000px;}
.y5_c00408{bottom:1063.905000px;}
.y2_c00408{bottom:1099.905000px;}
.y1_c00408{bottom:1102.050000px;}
.ha_c00408{height:4.206533px;}
.h6_c00408{height:23.025234px;}
.h1_c00408{height:25.091602px;}
.h7_c00408{height:31.364502px;}
.h2_c00408{height:35.571035px;}
.h5_c00408{height:39.777568px;}
.h3_c00408{height:43.910303px;}
.h8_c00408{height:47.571035px;}
.h9_c00408{height:48.116836px;}
.h4_c00408{height:53.571035px;}
.h0_c00408{height:1335.000000px;}
.w0_c00408{width:880.500000px;}
.x0_c00408{left:0.000000px;}
.x3_c00408{left:151.920000px;}
.x42_c00408{left:166.080000px;}
.x12_c00408{left:167.580000px;}
.x1b_c00408{left:189.645000px;}
.x4_c00408{left:191.580000px;}
.xf3_c00408{left:193.920000px;}
.x39_c00408{left:208.080000px;}
.x2f_c00408{left:211.500000px;}
.xf4_c00408{left:214.500000px;}
.x6f_c00408{left:216.000000px;}
.xcd_c00408{left:217.500000px;}
.x93_c00408{left:220.500000px;}
.xcf_c00408{left:223.920000px;}
.x98_c00408{left:226.500000px;}
.xc5_c00408{left:227.580000px;}
.xad_c00408{left:229.920000px;}
.xda_c00408{left:231.420000px;}
.x3a_c00408{left:232.500000px;}
.xb8_c00408{left:235.500000px;}
.xa2_c00408{left:238.500000px;}
.x64_c00408{left:239.580000px;}
.x75_c00408{left:241.500000px;}
.x23_c00408{left:243.000000px;}
.x5_c00408{left:244.080000px;}
.x13_c00408{left:245.580000px;}
.xd3_c00408{left:247.500000px;}
.x70_c00408{left:248.580000px;}
.x99_c00408{left:250.500000px;}
.xe8_c00408{left:251.580000px;}
.xec_c00408{left:255.420000px;}
.xa8_c00408{left:256.500000px;}
.x43_c00408{left:258.000000px;}
.x1c_c00408{left:259.500000px;}
.x6_c00408{left:261.000000px;}
.x85_c00408{left:262.080000px;}
.x14_c00408{left:264.000000px;}
.x9a_c00408{left:268.500000px;}
.x4c_c00408{left:271.920000px;}
.xdf_c00408{left:276.420000px;}
.xae_c00408{left:277.500000px;}
.xd4_c00408{left:278.580000px;}
.xce_c00408{left:281.580000px;}
.xed_c00408{left:283.920000px;}
.x54_c00408{left:285.420000px;}
.xbd_c00408{left:288.420000px;}
.x30_c00408{left:291.000000px;}
.x86_c00408{left:292.080000px;}
.x9b_c00408{left:294.000000px;}
.xf5_c00408{left:295.500000px;}
.x24_c00408{left:297.420000px;}
.xd5_c00408{left:298.920000px;}
.x76_c00408{left:300.000000px;}
.x71_c00408{left:301.080000px;}
.x5a_c00408{left:303.420000px;}
.xc6_c00408{left:304.920000px;}
.xef_c00408{left:307.080000px;}
.x15_c00408{left:309.000000px;}
.x4d_c00408{left:310.500000px;}
.x8b_c00408{left:313.500000px;}
.xaf_c00408{left:315.420000px;}
.x31_c00408{left:316.500000px;}
.xf6_c00408{left:319.500000px;}
.x9c_c00408{left:323.580000px;}
.x3b_c00408{left:325.080000px;}
.x94_c00408{left:327.000000px;}
.x44_c00408{left:330.000000px;}
.x1d_c00408{left:331.500000px;}
.x25_c00408{left:333.000000px;}
.xb0_c00408{left:343.500000px;}
.x3c_c00408{left:345.000000px;}
.x7_c00408{left:346.500000px;}
.x7e_c00408{left:348.000000px;}
.x65_c00408{left:349.500000px;}
.x55_c00408{left:351.000000px;}
.xe1_c00408{left:352.920000px;}
.x16_c00408{left:354.000000px;}
.x32_c00408{left:358.500000px;}
.xc7_c00408{left:360.000000px;}
.xa9_c00408{left:361.920000px;}
.xdb_c00408{left:363.420000px;}
.x5b_c00408{left:364.500000px;}
.xbe_c00408{left:366.000000px;}
.x9d_c00408{left:368.580000px;}
.x45_c00408{left:370.500000px;}
.xc3_c00408{left:372.000000px;}
.xee_c00408{left:373.080000px;}
.xb9_c00408{left:375.000000px;}
.xd0_c00408{left:376.080000px;}
.xb2_c00408{left:378.000000px;}
.xe2_c00408{left:382.080000px;}
.x8a_c00408{left:383.580000px;}
.x8_c00408{left:386.580000px;}
.x4e_c00408{left:388.500000px;}
.x46_c00408{left:390.000000px;}
.x8c_c00408{left:391.080000px;}
.x66_c00408{left:392.580000px;}
.x17_c00408{left:394.500000px;}
.x1e_c00408{left:397.080000px;}
.xe0_c00408{left:400.275000px;}
.xc8_c00408{left:402.000000px;}
.x5c_c00408{left:403.080000px;}
.x1_c00408{left:405.000000px;}
.xe9_c00408{left:406.920000px;}
.x87_c00408{left:408.000000px;}
.xe5_c00408{left:411.000000px;}
.xd6_c00408{left:414.000000px;}
.x67_c00408{left:417.420000px;}
.x33_c00408{left:420.420000px;}
.xc4_c00408{left:421.500000px;}
.x26_c00408{left:423.000000px;}
.x18_c00408{left:424.920000px;}
.x9_c00408{left:430.500000px;}
.x5d_c00408{left:432.000000px;}
.xc2_c00408{left:433.500000px;}
.xb3_c00408{left:436.920000px;}
.x56_c00408{left:438.000000px;}
.xf9_c00408{left:439.500000px;}
.xa3_c00408{left:441.420000px;}
.x8d_c00408{left:442.500000px;}
.x68_c00408{left:443.580000px;}
.x3d_c00408{left:447.000000px;}
.x7f_c00408{left:448.920000px;}
.xd7_c00408{left:451.080000px;}
.x1f_c00408{left:453.000000px;}
.x7b_c00408{left:454.920000px;}
.xaa_c00408{left:456.000000px;}
.x19_c00408{left:460.080000px;}
.x8e_c00408{left:462.420000px;}
.xb4_c00408{left:463.500000px;}
.xa4_c00408{left:465.000000px;}
.x72_c00408{left:467.580000px;}
.x27_c00408{left:469.920000px;}
.xa_c00408{left:471.000000px;}
.x1a_c00408{left:472.500000px;}
.xba_c00408{left:474.000000px;}
.x4f_c00408{left:475.500000px;}
.x5e_c00408{left:478.500000px;}
.xdc_c00408{left:480.000000px;}
.xa0_c00408{left:481.080000px;}
.x9e_c00408{left:483.000000px;}
.x3e_c00408{left:484.500000px;}
.x7c_c00408{left:486.000000px;}
.x34_c00408{left:487.500000px;}
.xd1_c00408{left:488.580000px;}
.x69_c00408{left:490.920000px;}
.xb_c00408{left:492.420000px;}
.xa5_c00408{left:494.580000px;}
.x20_c00408{left:496.920000px;}
.xd8_c00408{left:499.500000px;}
.xbf_c00408{left:501.000000px;}
.x57_c00408{left:504.420000px;}
.x9f_c00408{left:507.000000px;}
.x47_c00408{left:509.580000px;}
.x6a_c00408{left:511.500000px;}
.x5f_c00408{left:512.580000px;}
.xe3_c00408{left:516.420000px;}
.xa6_c00408{left:519.420000px;}
.x95_c00408{left:521.580000px;}
.x58_c00408{left:523.500000px;}
.x8f_c00408{left:524.580000px;}
.xc9_c00408{left:526.920000px;}
.x28_c00408{left:528.420000px;}
.x80_c00408{left:531.000000px;}
.x21_c00408{left:532.500000px;}
.x77_c00408{left:534.000000px;}
.x7d_c00408{left:535.080000px;}
.x48_c00408{left:537.420000px;}
.x73_c00408{left:538.500000px;}
.xbb_c00408{left:540.420000px;}
.x96_c00408{left:541.500000px;}
.x90_c00408{left:543.420000px;}
.xc_c00408{left:544.500000px;}
.x88_c00408{left:547.080000px;}
.xca_c00408{left:553.500000px;}
.x81_c00408{left:555.000000px;}
.xb5_c00408{left:556.500000px;}
.x3f_c00408{left:559.080000px;}
.xa7_c00408{left:561.000000px;}
.xf0_c00408{left:562.500000px;}
.x50_c00408{left:563.580000px;}
.x29_c00408{left:565.500000px;}
.x60_c00408{left:566.580000px;}
.x91_c00408{left:570.000000px;}
.xfa_c00408{left:571.500000px;}
.x35_c00408{left:576.000000px;}
.xc0_c00408{left:579.000000px;}
.xea_c00408{left:580.500000px;}
.xd_c00408{left:582.000000px;}
.xd9_c00408{left:583.500000px;}
.xd2_c00408{left:584.580000px;}
.x82_c00408{left:587.580000px;}
.xf1_c00408{left:589.500000px;}
.x6b_c00408{left:591.420000px;}
.x2a_c00408{left:592.500000px;}
.xf7_c00408{left:594.420000px;}
.x89_c00408{left:595.500000px;}
.x59_c00408{left:597.000000px;}
.xcb_c00408{left:599.580000px;}
.xc1_c00408{left:604.500000px;}
.x78_c00408{left:607.920000px;}
.x49_c00408{left:609.420000px;}
.x51_c00408{left:610.500000px;}
.x2b_c00408{left:611.580000px;}
.x61_c00408{left:614.580000px;}
.x36_c00408{left:616.920000px;}
.x22_c00408{left:618.000000px;}
.xe_c00408{left:620.580000px;}
.x83_c00408{left:624.000000px;}
.x62_c00408{left:627.420000px;}
.xab_c00408{left:630.000000px;}
.x97_c00408{left:633.000000px;}
.xf_c00408{left:634.500000px;}
.x2c_c00408{left:636.000000px;}
.x40_c00408{left:639.000000px;}
.xa1_c00408{left:640.920000px;}
.xbc_c00408{left:642.000000px;}
.x79_c00408{left:643.080000px;}
.xeb_c00408{left:645.420000px;}
.x4a_c00408{left:646.500000px;}
.xac_c00408{left:648.000000px;}
.xe4_c00408{left:649.500000px;}
.x6c_c00408{left:651.420000px;}
.x52_c00408{left:654.000000px;}
.xf8_c00408{left:658.500000px;}
.xb6_c00408{left:661.920000px;}
.xdd_c00408{left:663.420000px;}
.xe6_c00408{left:666.000000px;}
.x2d_c00408{left:668.580000px;}
.x63_c00408{left:670.500000px;}
.x37_c00408{left:672.420000px;}
.xb1_c00408{left:673.920000px;}
.x10_c00408{left:675.000000px;}
.x7a_c00408{left:676.500000px;}
.x53_c00408{left:679.920000px;}
.xe7_c00408{left:682.500000px;}
.x41_c00408{left:686.580000px;}
.x6d_c00408{left:688.080000px;}
.x4b_c00408{left:690.000000px;}
.xde_c00408{left:691.500000px;}
.xcc_c00408{left:693.420000px;}
.x84_c00408{left:696.420000px;}
.x2_c00408{left:703.080000px;}
.x74_c00408{left:705.000000px;}
.x92_c00408{left:706.920000px;}
.x38_c00408{left:708.000000px;}
.xb7_c00408{left:709.500000px;}
.x11_c00408{left:712.920000px;}
.x6e_c00408{left:714.000000px;}
.x2e_c00408{left:715.080000px;}
.xf2_c00408{left:716.580000px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.v2_c00408{vertical-align:10.666667pt;}
.v1_c00408{vertical-align:16.000000pt;}
.ls0_c00408{letter-spacing:0.000000pt;}
.ws0_c00408{word-spacing:-15.012693pt;}
.ws2_c00408{word-spacing:-7.714337pt;}
.ws3_c00408{word-spacing:-5.279994pt;}
.ws4_c00408{word-spacing:-2.845650pt;}
.ws5_c00408{word-spacing:0.000000pt;}
.ws1_c00408{word-spacing:60.571979pt;}
._0_c00408{width:2.429669pt;}
._1_c00408{width:4.864013pt;}
.fs7_c00408{font-size:3.040000pt;}
.fs4_c00408{font-size:16.640000pt;}
.fs0_c00408{font-size:18.133333pt;}
.fs5_c00408{font-size:22.666667pt;}
.fs1_c00408{font-size:25.706667pt;}
.fs3_c00408{font-size:28.746667pt;}
.fs2_c00408{font-size:31.733333pt;}
.fs6_c00408{font-size:34.773333pt;}
.y0_c00408{bottom:0.000000pt;}
.yd4_c00408{bottom:223.026667pt;}
.yd1_c00408{bottom:223.773333pt;}
.yd6_c00408{bottom:224.373333pt;}
.yd5_c00408{bottom:225.106667pt;}
.yd2_c00408{bottom:225.693333pt;}
.yd3_c00408{bottom:225.893333pt;}
.yd7_c00408{bottom:226.066667pt;}
.yce_c00408{bottom:241.693333pt;}
.ycd_c00408{bottom:242.440000pt;}
.yd0_c00408{bottom:243.226667pt;}
.ycf_c00408{bottom:243.973333pt;}
.ycc_c00408{bottom:244.360000pt;}
.yc9_c00408{bottom:259.026667pt;}
.yc8_c00408{bottom:259.773333pt;}
.yca_c00408{bottom:261.306667pt;}
.yc7_c00408{bottom:261.693333pt;}
.ycb_c00408{bottom:261.893333pt;}
.yc6_c00408{bottom:276.360000pt;}
.yc5_c00408{bottom:277.106667pt;}
.yc3_c00408{bottom:278.640000pt;}
.yc4_c00408{bottom:279.026667pt;}
.yc0_c00408{bottom:294.440000pt;}
.ybe_c00408{bottom:295.400000pt;}
.yc1_c00408{bottom:296.360000pt;}
.ybf_c00408{bottom:296.560000pt;}
.yc2_c00408{bottom:297.306667pt;}
.ybb_c00408{bottom:313.693333pt;}
.ybd_c00408{bottom:314.640000pt;}
.ybc_c00408{bottom:315.026667pt;}
.yba_c00408{bottom:329.106667pt;}
.yb8_c00408{bottom:331.026667pt;}
.yb9_c00408{bottom:332.360000pt;}
.yb6_c00408{bottom:345.693333pt;}
.yb5_c00408{bottom:347.026667pt;}
.yb4_c00408{bottom:347.773333pt;}
.yb7_c00408{bottom:349.693333pt;}
.yb2_c00408{bottom:365.106667pt;}
.yb3_c00408{bottom:366.640000pt;}
.yb1_c00408{bottom:367.026667pt;}
.yb0_c00408{bottom:382.440000pt;}
.yae_c00408{bottom:384.360000pt;}
.yaf_c00408{bottom:385.306667pt;}
.yaa_c00408{bottom:399.026667pt;}
.yad_c00408{bottom:399.773333pt;}
.yab_c00408{bottom:401.693333pt;}
.yac_c00408{bottom:402.640000pt;}
.ya9_c00408{bottom:416.360000pt;}
.ya8_c00408{bottom:417.106667pt;}
.ya7_c00408{bottom:419.026667pt;}
.ya5_c00408{bottom:434.440000pt;}
.ya6_c00408{bottom:435.226667pt;}
.ya2_c00408{bottom:435.773333pt;}
.ya0_c00408{bottom:436.360000pt;}
.ya4_c00408{bottom:436.560000pt;}
.ya1_c00408{bottom:436.733333pt;}
.ya3_c00408{bottom:437.306667pt;}
.y9f_c00408{bottom:437.693333pt;}
.y9c_c00408{bottom:453.106667pt;}
.y9d_c00408{bottom:453.306667pt;}
.y9e_c00408{bottom:453.693333pt;}
.y9b_c00408{bottom:453.893333pt;}
.y9a_c00408{bottom:455.026667pt;}
.y99_c00408{bottom:468.360000pt;}
.y98_c00408{bottom:469.306667pt;}
.y95_c00408{bottom:470.440000pt;}
.y97_c00408{bottom:471.400000pt;}
.y96_c00408{bottom:472.360000pt;}
.y91_c00408{bottom:485.693333pt;}
.y94_c00408{bottom:487.026667pt;}
.y90_c00408{bottom:487.773333pt;}
.y93_c00408{bottom:488.560000pt;}
.y92_c00408{bottom:489.306667pt;}
.y8f_c00408{bottom:489.693333pt;}
.y8e_c00408{bottom:503.026667pt;}
.y8d_c00408{bottom:505.106667pt;}
.y8c_c00408{bottom:505.893333pt;}
.y8b_c00408{bottom:507.026667pt;}
.y85_c00408{bottom:521.306667pt;}
.y86_c00408{bottom:521.693333pt;}
.y89_c00408{bottom:522.440000pt;}
.y8a_c00408{bottom:523.226667pt;}
.y84_c00408{bottom:524.360000pt;}
.y88_c00408{bottom:524.560000pt;}
.y87_c00408{bottom:525.306667pt;}
.y81_c00408{bottom:539.773333pt;}
.y80_c00408{bottom:540.733333pt;}
.y83_c00408{bottom:541.693333pt;}
.y82_c00408{bottom:542.640000pt;}
.y7b_c00408{bottom:556.360000pt;}
.y7e_c00408{bottom:557.106667pt;}
.y7d_c00408{bottom:557.306667pt;}
.y7c_c00408{bottom:559.026667pt;}
.y7f_c00408{bottom:560.360000pt;}
.y7a_c00408{bottom:573.693333pt;}
.y79_c00408{bottom:574.826667pt;}
.y78_c00408{bottom:575.773333pt;}
.y76_c00408{bottom:576.360000pt;}
.y77_c00408{bottom:577.693333pt;}
.y75_c00408{bottom:591.026667pt;}
.y74_c00408{bottom:591.973333pt;}
.y71_c00408{bottom:593.106667pt;}
.y73_c00408{bottom:594.066667pt;}
.y72_c00408{bottom:595.026667pt;}
.y6d_c00408{bottom:609.693333pt;}
.y70_c00408{bottom:610.440000pt;}
.y6e_c00408{bottom:611.973333pt;}
.y6c_c00408{bottom:612.360000pt;}
.y6f_c00408{bottom:612.560000pt;}
.y69_c00408{bottom:626.826667pt;}
.y6a_c00408{bottom:627.026667pt;}
.y6b_c00408{bottom:627.773333pt;}
.y68_c00408{bottom:629.693333pt;}
.y64_c00408{bottom:644.360000pt;}
.y66_c00408{bottom:645.106667pt;}
.y65_c00408{bottom:647.026667pt;}
.y67_c00408{bottom:647.973333pt;}
.y63_c00408{bottom:661.693333pt;}
.y61_c00408{bottom:662.440000pt;}
.y62_c00408{bottom:664.360000pt;}
.y60_c00408{bottom:665.306667pt;}
.y5e_c00408{bottom:678.640000pt;}
.y5f_c00408{bottom:679.026667pt;}
.y5d_c00408{bottom:679.973333pt;}
.y5c_c00408{bottom:680.373333pt;}
.y5b_c00408{bottom:681.106667pt;}
.y5a_c00408{bottom:683.026667pt;}
.y54_c00408{bottom:696.360000pt;}
.y57_c00408{bottom:696.733333pt;}
.y59_c00408{bottom:697.493333pt;}
.y55_c00408{bottom:697.693333pt;}
.y52_c00408{bottom:698.440000pt;}
.y58_c00408{bottom:699.226667pt;}
.y56_c00408{bottom:699.973333pt;}
.y53_c00408{bottom:700.360000pt;}
.y4f_c00408{bottom:715.773333pt;}
.y51_c00408{bottom:716.933333pt;}
.y50_c00408{bottom:717.693333pt;}
.y4e_c00408{bottom:731.973333pt;}
.y4c_c00408{bottom:733.106667pt;}
.y4b_c00408{bottom:734.266667pt;}
.y4d_c00408{bottom:735.026667pt;}
.y4a_c00408{bottom:748.360000pt;}
.y45_c00408{bottom:749.693333pt;}
.y47_c00408{bottom:750.440000pt;}
.y46_c00408{bottom:751.226667pt;}
.y49_c00408{bottom:751.773333pt;}
.y48_c00408{bottom:752.360000pt;}
.y41_c00408{bottom:767.026667pt;}
.y3f_c00408{bottom:767.773333pt;}
.y43_c00408{bottom:769.106667pt;}
.y44_c00408{bottom:769.306667pt;}
.y40_c00408{bottom:769.693333pt;}
.y42_c00408{bottom:769.893333pt;}
.y3d_c00408{bottom:784.360000pt;}
.y39_c00408{bottom:785.106667pt;}
.y3b_c00408{bottom:785.693333pt;}
.y3e_c00408{bottom:786.066667pt;}
.y38_c00408{bottom:787.026667pt;}
.y3c_c00408{bottom:787.226667pt;}
.y3a_c00408{bottom:787.973333pt;}
.y35_c00408{bottom:801.693333pt;}
.y33_c00408{bottom:802.440000pt;}
.y32_c00408{bottom:803.400000pt;}
.y34_c00408{bottom:804.360000pt;}
.y37_c00408{bottom:804.560000pt;}
.y36_c00408{bottom:805.306667pt;}
.y31_c00408{bottom:819.773333pt;}
.y2d_c00408{bottom:820.160000pt;}
.y30_c00408{bottom:820.733333pt;}
.y2f_c00408{bottom:821.106667pt;}
.y2e_c00408{bottom:823.026667pt;}
.y2b_c00408{bottom:838.440000pt;}
.y2a_c00408{bottom:839.226667pt;}
.y29_c00408{bottom:840.360000pt;}
.y2c_c00408{bottom:840.560000pt;}
.y28_c00408{bottom:841.306667pt;}
.y27_c00408{bottom:854.066667pt;}
.y26_c00408{bottom:854.640000pt;}
.y23_c00408{bottom:855.026667pt;}
.y22_c00408{bottom:855.773333pt;}
.y25_c00408{bottom:855.973333pt;}
.y1f_c00408{bottom:857.306667pt;}
.y24_c00408{bottom:857.693333pt;}
.y21_c00408{bottom:857.893333pt;}
.y20_c00408{bottom:858.640000pt;}
.y1c_c00408{bottom:872.360000pt;}
.y1d_c00408{bottom:873.106667pt;}
.y1e_c00408{bottom:875.026667pt;}
.y17_c00408{bottom:889.693333pt;}
.y15_c00408{bottom:890.440000pt;}
.y1a_c00408{bottom:891.026667pt;}
.y18_c00408{bottom:891.400000pt;}
.y16_c00408{bottom:892.360000pt;}
.y1b_c00408{bottom:892.560000pt;}
.y19_c00408{bottom:893.306667pt;}
.y14_c00408{bottom:907.026667pt;}
.y13_c00408{bottom:909.106667pt;}
.y11_c00408{bottom:909.693333pt;}
.y10_c00408{bottom:909.893333pt;}
.y12_c00408{bottom:911.026667pt;}
.yb_c00408{bottom:925.106667pt;}
.yc_c00408{bottom:925.306667pt;}
.yf_c00408{bottom:926.266667pt;}
.ye_c00408{bottom:927.226667pt;}
.ya_c00408{bottom:927.973333pt;}
.yd_c00408{bottom:928.360000pt;}
.y6_c00408{bottom:941.693333pt;}
.y7_c00408{bottom:943.400000pt;}
.y3_c00408{bottom:943.600000pt;}
.y4_c00408{bottom:943.773333pt;}
.y8_c00408{bottom:944.560000pt;}
.y9_c00408{bottom:944.733333pt;}
.y5_c00408{bottom:945.693333pt;}
.y2_c00408{bottom:977.693333pt;}
.y1_c00408{bottom:979.600000pt;}
.ha_c00408{height:3.739141pt;}
.h6_c00408{height:20.466875pt;}
.h1_c00408{height:22.303646pt;}
.h7_c00408{height:27.879557pt;}
.h2_c00408{height:31.618698pt;}
.h5_c00408{height:35.357839pt;}
.h3_c00408{height:39.031380pt;}
.h8_c00408{height:42.285365pt;}
.h9_c00408{height:42.770521pt;}
.h4_c00408{height:47.618698pt;}
.h0_c00408{height:1186.666667pt;}
.w0_c00408{width:782.666667pt;}
.x0_c00408{left:0.000000pt;}
.x3_c00408{left:135.040000pt;}
.x42_c00408{left:147.626667pt;}
.x12_c00408{left:148.960000pt;}
.x1b_c00408{left:168.573333pt;}
.x4_c00408{left:170.293333pt;}
.xf3_c00408{left:172.373333pt;}
.x39_c00408{left:184.960000pt;}
.x2f_c00408{left:188.000000pt;}
.xf4_c00408{left:190.666667pt;}
.x6f_c00408{left:192.000000pt;}
.xcd_c00408{left:193.333333pt;}
.x93_c00408{left:196.000000pt;}
.xcf_c00408{left:199.040000pt;}
.x98_c00408{left:201.333333pt;}
.xc5_c00408{left:202.293333pt;}
.xad_c00408{left:204.373333pt;}
.xda_c00408{left:205.706667pt;}
.x3a_c00408{left:206.666667pt;}
.xb8_c00408{left:209.333333pt;}
.xa2_c00408{left:212.000000pt;}
.x64_c00408{left:212.960000pt;}
.x75_c00408{left:214.666667pt;}
.x23_c00408{left:216.000000pt;}
.x5_c00408{left:216.960000pt;}
.x13_c00408{left:218.293333pt;}
.xd3_c00408{left:220.000000pt;}
.x70_c00408{left:220.960000pt;}
.x99_c00408{left:222.666667pt;}
.xe8_c00408{left:223.626667pt;}
.xec_c00408{left:227.040000pt;}
.xa8_c00408{left:228.000000pt;}
.x43_c00408{left:229.333333pt;}
.x1c_c00408{left:230.666667pt;}
.x6_c00408{left:232.000000pt;}
.x85_c00408{left:232.960000pt;}
.x14_c00408{left:234.666667pt;}
.x9a_c00408{left:238.666667pt;}
.x4c_c00408{left:241.706667pt;}
.xdf_c00408{left:245.706667pt;}
.xae_c00408{left:246.666667pt;}
.xd4_c00408{left:247.626667pt;}
.xce_c00408{left:250.293333pt;}
.xed_c00408{left:252.373333pt;}
.x54_c00408{left:253.706667pt;}
.xbd_c00408{left:256.373333pt;}
.x30_c00408{left:258.666667pt;}
.x86_c00408{left:259.626667pt;}
.x9b_c00408{left:261.333333pt;}
.xf5_c00408{left:262.666667pt;}
.x24_c00408{left:264.373333pt;}
.xd5_c00408{left:265.706667pt;}
.x76_c00408{left:266.666667pt;}
.x71_c00408{left:267.626667pt;}
.x5a_c00408{left:269.706667pt;}
.xc6_c00408{left:271.040000pt;}
.xef_c00408{left:272.960000pt;}
.x15_c00408{left:274.666667pt;}
.x4d_c00408{left:276.000000pt;}
.x8b_c00408{left:278.666667pt;}
.xaf_c00408{left:280.373333pt;}
.x31_c00408{left:281.333333pt;}
.xf6_c00408{left:284.000000pt;}
.x9c_c00408{left:287.626667pt;}
.x3b_c00408{left:288.960000pt;}
.x94_c00408{left:290.666667pt;}
.x44_c00408{left:293.333333pt;}
.x1d_c00408{left:294.666667pt;}
.x25_c00408{left:296.000000pt;}
.xb0_c00408{left:305.333333pt;}
.x3c_c00408{left:306.666667pt;}
.x7_c00408{left:308.000000pt;}
.x7e_c00408{left:309.333333pt;}
.x65_c00408{left:310.666667pt;}
.x55_c00408{left:312.000000pt;}
.xe1_c00408{left:313.706667pt;}
.x16_c00408{left:314.666667pt;}
.x32_c00408{left:318.666667pt;}
.xc7_c00408{left:320.000000pt;}
.xa9_c00408{left:321.706667pt;}
.xdb_c00408{left:323.040000pt;}
.x5b_c00408{left:324.000000pt;}
.xbe_c00408{left:325.333333pt;}
.x9d_c00408{left:327.626667pt;}
.x45_c00408{left:329.333333pt;}
.xc3_c00408{left:330.666667pt;}
.xee_c00408{left:331.626667pt;}
.xb9_c00408{left:333.333333pt;}
.xd0_c00408{left:334.293333pt;}
.xb2_c00408{left:336.000000pt;}
.xe2_c00408{left:339.626667pt;}
.x8a_c00408{left:340.960000pt;}
.x8_c00408{left:343.626667pt;}
.x4e_c00408{left:345.333333pt;}
.x46_c00408{left:346.666667pt;}
.x8c_c00408{left:347.626667pt;}
.x66_c00408{left:348.960000pt;}
.x17_c00408{left:350.666667pt;}
.x1e_c00408{left:352.960000pt;}
.xe0_c00408{left:355.800000pt;}
.xc8_c00408{left:357.333333pt;}
.x5c_c00408{left:358.293333pt;}
.x1_c00408{left:360.000000pt;}
.xe9_c00408{left:361.706667pt;}
.x87_c00408{left:362.666667pt;}
.xe5_c00408{left:365.333333pt;}
.xd6_c00408{left:368.000000pt;}
.x67_c00408{left:371.040000pt;}
.x33_c00408{left:373.706667pt;}
.xc4_c00408{left:374.666667pt;}
.x26_c00408{left:376.000000pt;}
.x18_c00408{left:377.706667pt;}
.x9_c00408{left:382.666667pt;}
.x5d_c00408{left:384.000000pt;}
.xc2_c00408{left:385.333333pt;}
.xb3_c00408{left:388.373333pt;}
.x56_c00408{left:389.333333pt;}
.xf9_c00408{left:390.666667pt;}
.xa3_c00408{left:392.373333pt;}
.x8d_c00408{left:393.333333pt;}
.x68_c00408{left:394.293333pt;}
.x3d_c00408{left:397.333333pt;}
.x7f_c00408{left:399.040000pt;}
.xd7_c00408{left:400.960000pt;}
.x1f_c00408{left:402.666667pt;}
.x7b_c00408{left:404.373333pt;}
.xaa_c00408{left:405.333333pt;}
.x19_c00408{left:408.960000pt;}
.x8e_c00408{left:411.040000pt;}
.xb4_c00408{left:412.000000pt;}
.xa4_c00408{left:413.333333pt;}
.x72_c00408{left:415.626667pt;}
.x27_c00408{left:417.706667pt;}
.xa_c00408{left:418.666667pt;}
.x1a_c00408{left:420.000000pt;}
.xba_c00408{left:421.333333pt;}
.x4f_c00408{left:422.666667pt;}
.x5e_c00408{left:425.333333pt;}
.xdc_c00408{left:426.666667pt;}
.xa0_c00408{left:427.626667pt;}
.x9e_c00408{left:429.333333pt;}
.x3e_c00408{left:430.666667pt;}
.x7c_c00408{left:432.000000pt;}
.x34_c00408{left:433.333333pt;}
.xd1_c00408{left:434.293333pt;}
.x69_c00408{left:436.373333pt;}
.xb_c00408{left:437.706667pt;}
.xa5_c00408{left:439.626667pt;}
.x20_c00408{left:441.706667pt;}
.xd8_c00408{left:444.000000pt;}
.xbf_c00408{left:445.333333pt;}
.x57_c00408{left:448.373333pt;}
.x9f_c00408{left:450.666667pt;}
.x47_c00408{left:452.960000pt;}
.x6a_c00408{left:454.666667pt;}
.x5f_c00408{left:455.626667pt;}
.xe3_c00408{left:459.040000pt;}
.xa6_c00408{left:461.706667pt;}
.x95_c00408{left:463.626667pt;}
.x58_c00408{left:465.333333pt;}
.x8f_c00408{left:466.293333pt;}
.xc9_c00408{left:468.373333pt;}
.x28_c00408{left:469.706667pt;}
.x80_c00408{left:472.000000pt;}
.x21_c00408{left:473.333333pt;}
.x77_c00408{left:474.666667pt;}
.x7d_c00408{left:475.626667pt;}
.x48_c00408{left:477.706667pt;}
.x73_c00408{left:478.666667pt;}
.xbb_c00408{left:480.373333pt;}
.x96_c00408{left:481.333333pt;}
.x90_c00408{left:483.040000pt;}
.xc_c00408{left:484.000000pt;}
.x88_c00408{left:486.293333pt;}
.xca_c00408{left:492.000000pt;}
.x81_c00408{left:493.333333pt;}
.xb5_c00408{left:494.666667pt;}
.x3f_c00408{left:496.960000pt;}
.xa7_c00408{left:498.666667pt;}
.xf0_c00408{left:500.000000pt;}
.x50_c00408{left:500.960000pt;}
.x29_c00408{left:502.666667pt;}
.x60_c00408{left:503.626667pt;}
.x91_c00408{left:506.666667pt;}
.xfa_c00408{left:508.000000pt;}
.x35_c00408{left:512.000000pt;}
.xc0_c00408{left:514.666667pt;}
.xea_c00408{left:516.000000pt;}
.xd_c00408{left:517.333333pt;}
.xd9_c00408{left:518.666667pt;}
.xd2_c00408{left:519.626667pt;}
.x82_c00408{left:522.293333pt;}
.xf1_c00408{left:524.000000pt;}
.x6b_c00408{left:525.706667pt;}
.x2a_c00408{left:526.666667pt;}
.xf7_c00408{left:528.373333pt;}
.x89_c00408{left:529.333333pt;}
.x59_c00408{left:530.666667pt;}
.xcb_c00408{left:532.960000pt;}
.xc1_c00408{left:537.333333pt;}
.x78_c00408{left:540.373333pt;}
.x49_c00408{left:541.706667pt;}
.x51_c00408{left:542.666667pt;}
.x2b_c00408{left:543.626667pt;}
.x61_c00408{left:546.293333pt;}
.x36_c00408{left:548.373333pt;}
.x22_c00408{left:549.333333pt;}
.xe_c00408{left:551.626667pt;}
.x83_c00408{left:554.666667pt;}
.x62_c00408{left:557.706667pt;}
.xab_c00408{left:560.000000pt;}
.x97_c00408{left:562.666667pt;}
.xf_c00408{left:564.000000pt;}
.x2c_c00408{left:565.333333pt;}
.x40_c00408{left:568.000000pt;}
.xa1_c00408{left:569.706667pt;}
.xbc_c00408{left:570.666667pt;}
.x79_c00408{left:571.626667pt;}
.xeb_c00408{left:573.706667pt;}
.x4a_c00408{left:574.666667pt;}
.xac_c00408{left:576.000000pt;}
.xe4_c00408{left:577.333333pt;}
.x6c_c00408{left:579.040000pt;}
.x52_c00408{left:581.333333pt;}
.xf8_c00408{left:585.333333pt;}
.xb6_c00408{left:588.373333pt;}
.xdd_c00408{left:589.706667pt;}
.xe6_c00408{left:592.000000pt;}
.x2d_c00408{left:594.293333pt;}
.x63_c00408{left:596.000000pt;}
.x37_c00408{left:597.706667pt;}
.xb1_c00408{left:599.040000pt;}
.x10_c00408{left:600.000000pt;}
.x7a_c00408{left:601.333333pt;}
.x53_c00408{left:604.373333pt;}
.xe7_c00408{left:606.666667pt;}
.x41_c00408{left:610.293333pt;}
.x6d_c00408{left:611.626667pt;}
.x4b_c00408{left:613.333333pt;}
.xde_c00408{left:614.666667pt;}
.xcc_c00408{left:616.373333pt;}
.x84_c00408{left:619.040000pt;}
.x2_c00408{left:624.960000pt;}
.x74_c00408{left:626.666667pt;}
.x92_c00408{left:628.373333pt;}
.x38_c00408{left:629.333333pt;}
.xb7_c00408{left:630.666667pt;}
.x11_c00408{left:633.706667pt;}
.x6e_c00408{left:634.666667pt;}
.x2e_c00408{left:635.626667pt;}
.xf2_c00408{left:636.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_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_5b6ff0f38bd580db40ed77a1.woff2')format("woff");}.ff1_c00409{font-family:ff1_c00409;line-height:1.688965;font-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_c00409{transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);}
.me2_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);}
.mb9_c00409{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m38_c00409{transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);}
.m22_c00409{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);}
.md7_c00409{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m44_c00409{transform:matrix(0.359244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359244,0.000000,0.000000,0.250000,0,0);}
.ma3_c00409{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m4c_c00409{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mc6_c00409{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.mce_c00409{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m75_c00409{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m95_c00409{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.ma5_c00409{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m85_c00409{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.md3_c00409{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m15_c00409{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m27_c00409{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m5d_c00409{transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);}
.m4a_c00409{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m90_c00409{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m93_c00409{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m91_c00409{transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);}
.m8d_c00409{transform:matrix(0.391488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391488,0.000000,0.000000,0.250000,0,0);}
.m6e_c00409{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.ma1_c00409{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mad_c00409{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.md_c00409{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m20_c00409{transform:matrix(0.396472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396472,0.000000,0.000000,0.250000,0,0);}
.mf_c00409{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m72_c00409{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m23_c00409{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m51_c00409{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m0_c00409{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.m42_c00409{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.me4_c00409{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.mc5_c00409{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mb3_c00409{transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);}
.m4f_c00409{transform:matrix(0.403525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403525,0.000000,0.000000,0.250000,0,0);}
.mdd_c00409{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m3f_c00409{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m5c_c00409{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m6b_c00409{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mea_c00409{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m2c_c00409{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m83_c00409{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m54_c00409{transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);}
.m35_c00409{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.m4b_c00409{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m32_c00409{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m5b_c00409{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.m28_c00409{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m8a_c00409{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m57_c00409{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.ma7_c00409{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m59_c00409{transform:matrix(0.418831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418831,0.000000,0.000000,0.250000,0,0);}
.m78_c00409{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m64_c00409{transform:matrix(0.419087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419087,0.000000,0.000000,0.250000,0,0);}
.mb6_c00409{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m30_c00409{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m7d_c00409{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m7c_c00409{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m65_c00409{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m92_c00409{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m8e_c00409{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m97_c00409{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.mb4_c00409{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.me1_c00409{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mbb_c00409{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m34_c00409{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.md9_c00409{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m2b_c00409{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m10_c00409{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m68_c00409{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m4_c00409{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m19_c00409{transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);}
.m16_c00409{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m4d_c00409{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m66_c00409{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m6d_c00409{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m96_c00409{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m50_c00409{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m8_c00409{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m2a_c00409{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.m9a_c00409{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.md8_c00409{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m98_c00409{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m3b_c00409{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.ma2_c00409{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m70_c00409{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.mc4_c00409{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.maf_c00409{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m1e_c00409{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.mb2_c00409{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.mb_c00409{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m7_c00409{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.mba_c00409{transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);}
.m29_c00409{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.me6_c00409{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m56_c00409{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.mc8_c00409{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m1c_c00409{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m48_c00409{transform:matrix(0.472689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472689,0.000000,0.000000,0.250000,0,0);}
.md6_c00409{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.me8_c00409{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m4e_c00409{transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);}
.m43_c00409{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.m9b_c00409{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m2e_c00409{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m49_c00409{transform:matrix(0.483193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483193,0.000000,0.000000,0.250000,0,0);}
.m26_c00409{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.md1_c00409{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.me7_c00409{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m1b_c00409{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m40_c00409{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m3c_c00409{transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);}
.m33_c00409{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m2_c00409{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);}
.md4_c00409{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m99_c00409{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.mc7_c00409{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m71_c00409{transform:matrix(0.508349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508349,0.000000,0.000000,0.250000,0,0);}
.mc3_c00409{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m3d_c00409{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.ma4_c00409{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m58_c00409{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);}
.me3_c00409{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m45_c00409{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m2f_c00409{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mc9_c00409{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m87_c00409{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.ma6_c00409{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m6a_c00409{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m3e_c00409{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m5f_c00409{transform:matrix(0.518235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518235,0.000000,0.000000,0.250000,0,0);}
.md2_c00409{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m9d_c00409{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m6f_c00409{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m69_c00409{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mca_c00409{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.me9_c00409{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mb1_c00409{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m84_c00409{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m80_c00409{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m41_c00409{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mae_c00409{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m76_c00409{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m77_c00409{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m94_c00409{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.med_c00409{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m24_c00409{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m12_c00409{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.ma0_c00409{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mab_c00409{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m1a_c00409{transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);}
.m1f_c00409{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mda_c00409{transform:matrix(0.539412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539412,0.000000,0.000000,0.250000,0,0);}
.maa_c00409{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m5e_c00409{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m39_c00409{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m73_c00409{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m9_c00409{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mac_c00409{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.ma9_c00409{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.mde_c00409{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m6_c00409{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m3_c00409{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m7b_c00409{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.mdf_c00409{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m8b_c00409{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m82_c00409{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m89_c00409{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.md5_c00409{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m2d_c00409{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.ma8_c00409{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m8f_c00409{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m21_c00409{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.me_c00409{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m88_c00409{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m79_c00409{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m8c_c00409{transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);}
.m5_c00409{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mee_c00409{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m1d_c00409{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m36_c00409{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.me5_c00409{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mc0_c00409{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m46_c00409{transform:matrix(0.582469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582469,0.000000,0.000000,0.250000,0,0);}
.m14_c00409{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m52_c00409{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m11_c00409{transform:matrix(0.584025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584025,0.000000,0.000000,0.250000,0,0);}
.m18_c00409{transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);}
.mb0_c00409{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.mc1_c00409{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.me0_c00409{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m81_c00409{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.mb7_c00409{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.meb_c00409{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mcf_c00409{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m47_c00409{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.mbe_c00409{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m9e_c00409{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m37_c00409{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);}
.mdb_c00409{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);}
.m7f_c00409{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m5a_c00409{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m13_c00409{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m7a_c00409{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m53_c00409{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.mcc_c00409{transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);}
.m55_c00409{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);}
.m63_c00409{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m62_c00409{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);}
.m31_c00409{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.ma_c00409{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m60_c00409{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.mcd_c00409{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m1_c00409{transform:matrix(0.679487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679487,0.000000,0.000000,0.250000,0,0);}
.m9f_c00409{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m61_c00409{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.mbc_c00409{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mc2_c00409{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mec_c00409{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m7e_c00409{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m86_c00409{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m25_c00409{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mbf_c00409{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m74_c00409{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mb5_c00409{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mdc_c00409{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.md0_c00409{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.mb8_c00409{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mcb_c00409{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m9c_c00409{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mbd_c00409{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m3a_c00409{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mc_c00409{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m6c_c00409{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m67_c00409{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00409{vertical-align:0.000000px;}
.v1_c00409{vertical-align:12.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:-5.939993px;}
.ws1_c00409{word-spacing:0.000000px;}
.fc0_c00409{color:transparent;}
.fs7_c00409{font-size:3.420000px;}
.fs1_c00409{font-size:18.720000px;}
.fs5_c00409{font-size:20.400000px;}
.fs8_c00409{font-size:22.140000px;}
.fs4_c00409{font-size:25.500000px;}
.fs2_c00409{font-size:28.920000px;}
.fs0_c00409{font-size:32.340000px;}
.fs3_c00409{font-size:35.700000px;}
.fs6_c00409{font-size:39.120000px;}
.y0_c00409{bottom:0.000000px;}
.yd0_c00409{bottom:250.245000px;}
.yd3_c00409{bottom:251.745000px;}
.ycf_c00409{bottom:252.405000px;}
.yd1_c00409{bottom:252.630000px;}
.yd4_c00409{bottom:253.470000px;}
.yd2_c00409{bottom:253.905000px;}
.yca_c00409{bottom:269.745000px;}
.ycd_c00409{bottom:271.245000px;}
.ycb_c00409{bottom:271.905000px;}
.yce_c00409{bottom:272.325000px;}
.ycc_c00409{bottom:273.405000px;}
.yc5_c00409{bottom:289.245000px;}
.yc8_c00409{bottom:290.745000px;}
.yc7_c00409{bottom:292.905000px;}
.yc9_c00409{bottom:293.130000px;}
.yc6_c00409{bottom:295.275000px;}
.yc4_c00409{bottom:310.245000px;}
.yc1_c00409{bottom:310.905000px;}
.yc2_c00409{bottom:311.970000px;}
.yc3_c00409{bottom:312.405000px;}
.ybd_c00409{bottom:329.745000px;}
.ybe_c00409{bottom:330.630000px;}
.ybf_c00409{bottom:331.905000px;}
.yc0_c00409{bottom:332.970000px;}
.yb9_c00409{bottom:349.245000px;}
.ybc_c00409{bottom:350.745000px;}
.yb8_c00409{bottom:351.405000px;}
.ybb_c00409{bottom:352.470000px;}
.yba_c00409{bottom:352.905000px;}
.yb1_c00409{bottom:368.745000px;}
.yb7_c00409{bottom:368.970000px;}
.yb6_c00409{bottom:370.245000px;}
.yb3_c00409{bottom:370.470000px;}
.yb2_c00409{bottom:370.905000px;}
.yb5_c00409{bottom:371.130000px;}
.yb4_c00409{bottom:371.970000px;}
.yac_c00409{bottom:388.245000px;}
.ya9_c00409{bottom:389.325000px;}
.yb0_c00409{bottom:389.550000px;}
.yaf_c00409{bottom:389.745000px;}
.yaa_c00409{bottom:390.405000px;}
.yab_c00409{bottom:390.630000px;}
.yad_c00409{bottom:391.470000px;}
.yae_c00409{bottom:391.905000px;}
.ya3_c00409{bottom:407.745000px;}
.ya7_c00409{bottom:409.245000px;}
.ya4_c00409{bottom:409.905000px;}
.ya8_c00409{bottom:410.970000px;}
.ya5_c00409{bottom:411.405000px;}
.ya6_c00409{bottom:412.470000px;}
.ya0_c00409{bottom:427.245000px;}
.ya2_c00409{bottom:429.630000px;}
.y9f_c00409{bottom:430.470000px;}
.ya1_c00409{bottom:430.905000px;}
.y99_c00409{bottom:446.745000px;}
.y9e_c00409{bottom:447.405000px;}
.y98_c00409{bottom:448.245000px;}
.y9b_c00409{bottom:449.325000px;}
.y9a_c00409{bottom:450.405000px;}
.y9c_c00409{bottom:450.630000px;}
.y9d_c00409{bottom:451.470000px;}
.y95_c00409{bottom:465.825000px;}
.y93_c00409{bottom:466.905000px;}
.y94_c00409{bottom:467.745000px;}
.y92_c00409{bottom:469.905000px;}
.y96_c00409{bottom:470.130000px;}
.y97_c00409{bottom:470.970000px;}
.y91_c00409{bottom:486.405000px;}
.y8d_c00409{bottom:487.245000px;}
.y8e_c00409{bottom:488.325000px;}
.y8c_c00409{bottom:489.405000px;}
.y90_c00409{bottom:489.630000px;}
.y8f_c00409{bottom:490.470000px;}
.y8a_c00409{bottom:505.905000px;}
.y86_c00409{bottom:506.745000px;}
.y89_c00409{bottom:508.245000px;}
.y8b_c00409{bottom:508.905000px;}
.y87_c00409{bottom:509.130000px;}
.y88_c00409{bottom:510.405000px;}
.y85_c00409{bottom:527.325000px;}
.y83_c00409{bottom:527.745000px;}
.y7f_c00409{bottom:528.405000px;}
.y80_c00409{bottom:529.905000px;}
.y81_c00409{bottom:529.920000px;}
.y84_c00409{bottom:530.130000px;}
.y82_c00409{bottom:530.970000px;}
.y7d_c00409{bottom:547.905000px;}
.y7e_c00409{bottom:549.405000px;}
.y79_c00409{bottom:566.745000px;}
.y7c_c00409{bottom:567.630000px;}
.y7b_c00409{bottom:567.825000px;}
.y7a_c00409{bottom:568.905000px;}
.y75_c00409{bottom:585.180000px;}
.y76_c00409{bottom:586.245000px;}
.y78_c00409{bottom:587.325000px;}
.y77_c00409{bottom:588.405000px;}
.y72_c00409{bottom:604.905000px;}
.y73_c00409{bottom:607.245000px;}
.y70_c00409{bottom:607.470000px;}
.y71_c00409{bottom:607.905000px;}
.y74_c00409{bottom:609.405000px;}
.y6f_c00409{bottom:626.745000px;}
.y6c_c00409{bottom:627.405000px;}
.y6d_c00409{bottom:628.470000px;}
.y6e_c00409{bottom:628.905000px;}
.y68_c00409{bottom:646.245000px;}
.y65_c00409{bottom:646.905000px;}
.y6a_c00409{bottom:647.130000px;}
.y67_c00409{bottom:647.970000px;}
.y69_c00409{bottom:648.405000px;}
.y66_c00409{bottom:648.420000px;}
.y6b_c00409{bottom:649.470000px;}
.y63_c00409{bottom:665.745000px;}
.y60_c00409{bottom:666.405000px;}
.y61_c00409{bottom:666.630000px;}
.y64_c00409{bottom:667.905000px;}
.y62_c00409{bottom:667.920000px;}
.y5f_c00409{bottom:683.325000px;}
.y5a_c00409{bottom:683.745000px;}
.y5e_c00409{bottom:684.405000px;}
.y5d_c00409{bottom:685.245000px;}
.y5c_c00409{bottom:686.325000px;}
.y5b_c00409{bottom:687.420000px;}
.y56_c00409{bottom:703.245000px;}
.y57_c00409{bottom:704.745000px;}
.y59_c00409{bottom:706.905000px;}
.y58_c00409{bottom:706.920000px;}
.y55_c00409{bottom:727.905000px;}
.y54_c00409{bottom:730.050000px;}
.y4f_c00409{bottom:743.325000px;}
.y4e_c00409{bottom:743.970000px;}
.y51_c00409{bottom:744.405000px;}
.y50_c00409{bottom:745.050000px;}
.y52_c00409{bottom:745.470000px;}
.y53_c00409{bottom:746.550000px;}
.y4a_c00409{bottom:761.970000px;}
.y49_c00409{bottom:762.825000px;}
.y4c_c00409{bottom:763.050000px;}
.y4b_c00409{bottom:763.905000px;}
.y4d_c00409{bottom:766.050000px;}
.y48_c00409{bottom:787.245000px;}
.y47_c00409{bottom:789.405000px;}
.y46_c00409{bottom:822.405000px;}
.y45_c00409{bottom:860.970000px;}
.y42_c00409{bottom:861.405000px;}
.y43_c00409{bottom:862.245000px;}
.y44_c00409{bottom:864.405000px;}
.y3e_c00409{bottom:880.905000px;}
.y3d_c00409{bottom:881.745000px;}
.y41_c00409{bottom:882.630000px;}
.y40_c00409{bottom:883.470000px;}
.y3c_c00409{bottom:883.905000px;}
.y3f_c00409{bottom:884.130000px;}
.y38_c00409{bottom:900.180000px;}
.y39_c00409{bottom:901.245000px;}
.y3b_c00409{bottom:902.325000px;}
.y37_c00409{bottom:903.405000px;}
.y3a_c00409{bottom:903.630000px;}
.y31_c00409{bottom:919.905000px;}
.y30_c00409{bottom:920.745000px;}
.y33_c00409{bottom:921.405000px;}
.y36_c00409{bottom:922.050000px;}
.y35_c00409{bottom:922.245000px;}
.y2f_c00409{bottom:922.905000px;}
.y34_c00409{bottom:923.130000px;}
.y32_c00409{bottom:923.970000px;}
.y2e_c00409{bottom:939.405000px;}
.y29_c00409{bottom:940.905000px;}
.y2a_c00409{bottom:941.745000px;}
.y2b_c00409{bottom:942.630000px;}
.y2d_c00409{bottom:942.825000px;}
.y28_c00409{bottom:943.470000px;}
.y2c_c00409{bottom:943.905000px;}
.y25_c00409{bottom:958.905000px;}
.y23_c00409{bottom:959.745000px;}
.y21_c00409{bottom:960.825000px;}
.y26_c00409{bottom:961.245000px;}
.y27_c00409{bottom:962.130000px;}
.y22_c00409{bottom:962.325000px;}
.y24_c00409{bottom:963.405000px;}
.y1d_c00409{bottom:979.680000px;}
.y20_c00409{bottom:979.905000px;}
.y1e_c00409{bottom:980.745000px;}
.y1f_c00409{bottom:981.630000px;}
.y1c_c00409{bottom:982.905000px;}
.y15_c00409{bottom:997.905000px;}
.y18_c00409{bottom:999.405000px;}
.y17_c00409{bottom:1000.245000px;}
.y1b_c00409{bottom:1001.550000px;}
.y16_c00409{bottom:1002.405000px;}
.y1a_c00409{bottom:1002.630000px;}
.y19_c00409{bottom:1003.470000px;}
.yf_c00409{bottom:1018.245000px;}
.y13_c00409{bottom:1018.470000px;}
.y14_c00409{bottom:1018.905000px;}
.y11_c00409{bottom:1019.745000px;}
.y12_c00409{bottom:1020.825000px;}
.y10_c00409{bottom:1022.970000px;}
.yb_c00409{bottom:1038.405000px;}
.ya_c00409{bottom:1039.245000px;}
.ye_c00409{bottom:1040.130000px;}
.y9_c00409{bottom:1040.970000px;}
.yc_c00409{bottom:1041.405000px;}
.yd_c00409{bottom:1042.470000px;}
.y6_c00409{bottom:1057.905000px;}
.y5_c00409{bottom:1058.745000px;}
.y3_c00409{bottom:1059.405000px;}
.y8_c00409{bottom:1059.630000px;}
.y4_c00409{bottom:1060.905000px;}
.y7_c00409{bottom:1061.970000px;}
.y1_c00409{bottom:1098.825000px;}
.y2_c00409{bottom:1100.130000px;}
.h9_c00409{height:4.206533px;}
.h2_c00409{height:23.025234px;}
.h7_c00409{height:25.091602px;}
.ha_c00409{height:27.231768px;}
.h6_c00409{height:31.364502px;}
.h3_c00409{height:35.571035px;}
.h1_c00409{height:39.777568px;}
.h4_c00409{height:43.910303px;}
.h5_c00409{height:47.571035px;}
.h8_c00409{height:48.116836px;}
.h0_c00409{height:1335.000000px;}
.w0_c00409{width:880.500000px;}
.x0_c00409{left:0.000000px;}
.xda_c00409{left:150.000000px;}
.x8d_c00409{left:151.500000px;}
.x1_c00409{left:153.000000px;}
.x28_c00409{left:154.080000px;}
.x76_c00409{left:166.500000px;}
.x80_c00409{left:168.000000px;}
.x3_c00409{left:169.080000px;}
.x95_c00409{left:174.420000px;}
.xbe_c00409{left:177.000000px;}
.xb9_c00409{left:183.855000px;}
.xce_c00409{left:186.000000px;}
.x6d_c00409{left:187.920000px;}
.xea_c00409{left:190.080000px;}
.x4_c00409{left:193.500000px;}
.x1c_c00409{left:194.580000px;}
.xe1_c00409{left:197.580000px;}
.x96_c00409{left:204.000000px;}
.xa5_c00409{left:206.580000px;}
.x11_c00409{left:208.500000px;}
.xc8_c00409{left:209.580000px;}
.x8e_c00409{left:214.080000px;}
.xb5_c00409{left:216.420000px;}
.x60_c00409{left:217.500000px;}
.x9b_c00409{left:219.000000px;}
.x77_c00409{left:220.500000px;}
.xc3_c00409{left:222.420000px;}
.xdb_c00409{left:227.355000px;}
.x46_c00409{left:229.080000px;}
.xc9_c00409{left:232.920000px;}
.xeb_c00409{left:235.500000px;}
.xa6_c00409{left:238.080000px;}
.xba_c00409{left:239.580000px;}
.x1d_c00409{left:241.080000px;}
.x6e_c00409{left:244.500000px;}
.xe2_c00409{left:247.920000px;}
.x81_c00409{left:249.000000px;}
.xa7_c00409{left:252.000000px;}
.x29_c00409{left:255.420000px;}
.x5_c00409{left:256.920000px;}
.xdc_c00409{left:258.000000px;}
.x1e_c00409{left:259.080000px;}
.x87_c00409{left:261.000000px;}
.x3c_c00409{left:263.580000px;}
.xcf_c00409{left:265.500000px;}
.x56_c00409{left:266.580000px;}
.x7a_c00409{left:268.500000px;}
.x67_c00409{left:269.580000px;}
.x1f_c00409{left:271.500000px;}
.xa8_c00409{left:272.580000px;}
.x47_c00409{left:274.500000px;}
.x8f_c00409{left:277.500000px;}
.x7c_c00409{left:280.500000px;}
.x88_c00409{left:282.000000px;}
.x33_c00409{left:284.580000px;}
.xe7_c00409{left:287.580000px;}
.x12_c00409{left:289.080000px;}
.x78_c00409{left:292.920000px;}
.xd0_c00409{left:295.500000px;}
.x57_c00409{left:297.000000px;}
.x48_c00409{left:298.500000px;}
.x82_c00409{left:300.000000px;}
.xaf_c00409{left:302.580000px;}
.x2a_c00409{left:304.920000px;}
.x6_c00409{left:307.080000px;}
.x3d_c00409{left:309.000000px;}
.xca_c00409{left:310.500000px;}
.x13_c00409{left:313.500000px;}
.xad_c00409{left:320.580000px;}
.x83_c00409{left:322.080000px;}
.x9c_c00409{left:324.000000px;}
.x7_c00409{left:327.000000px;}
.x97_c00409{left:328.500000px;}
.x49_c00409{left:329.580000px;}
.x34_c00409{left:331.920000px;}
.xec_c00409{left:335.580000px;}
.x6f_c00409{left:341.580000px;}
.xa9_c00409{left:345.000000px;}
.x7d_c00409{left:346.275000px;}
.x84_c00409{left:347.580000px;}
.x68_c00409{left:349.500000px;}
.xe3_c00409{left:350.580000px;}
.x20_c00409{left:352.500000px;}
.xc4_c00409{left:355.920000px;}
.x14_c00409{left:358.500000px;}
.x58_c00409{left:360.420000px;}
.x2b_c00409{left:363.420000px;}
.x65_c00409{left:365.145000px;}
.xa1_c00409{left:366.420000px;}
.x35_c00409{left:372.000000px;}
.x4f_c00409{left:373.500000px;}
.x90_c00409{left:375.000000px;}
.x21_c00409{left:378.000000px;}
.xaa_c00409{left:379.500000px;}
.x4a_c00409{left:382.500000px;}
.xdd_c00409{left:383.580000px;}
.x7e_c00409{left:385.080000px;}
.xb0_c00409{left:387.000000px;}
.x70_c00409{left:388.500000px;}
.x3e_c00409{left:391.500000px;}
.x85_c00409{left:394.500000px;}
.x36_c00409{left:396.000000px;}
.x50_c00409{left:397.500000px;}
.x4d_c00409{left:399.000000px;}
.x2c_c00409{left:400.080000px;}
.x4b_c00409{left:406.500000px;}
.x2_c00409{left:408.000000px;}
.x9d_c00409{left:409.500000px;}
.xbf_c00409{left:411.000000px;}
.x91_c00409{left:413.580000px;}
.x69_c00409{left:415.500000px;}
.x71_c00409{left:417.000000px;}
.x8_c00409{left:420.000000px;}
.x59_c00409{left:421.920000px;}
.x66_c00409{left:424.080000px;}
.x22_c00409{left:426.000000px;}
.x7b_c00409{left:427.500000px;}
.xe4_c00409{left:429.420000px;}
.xb6_c00409{left:430.920000px;}
.x72_c00409{left:432.420000px;}
.x89_c00409{left:436.500000px;}
.xb1_c00409{left:442.500000px;}
.x15_c00409{left:445.500000px;}
.x37_c00409{left:447.000000px;}
.x23_c00409{left:448.080000px;}
.x3f_c00409{left:449.580000px;}
.xcb_c00409{left:452.145000px;}
.x9e_c00409{left:454.500000px;}
.xc0_c00409{left:456.420000px;}
.xed_c00409{left:460.500000px;}
.xc5_c00409{left:461.580000px;}
.x9_c00409{left:463.920000px;}
.x79_c00409{left:465.000000px;}
.xd1_c00409{left:466.500000px;}
.x2d_c00409{left:469.500000px;}
.x5a_c00409{left:471.000000px;}
.x98_c00409{left:474.420000px;}
.x9f_c00409{left:477.000000px;}
.xee_c00409{left:478.920000px;}
.xde_c00409{left:480.000000px;}
.x6a_c00409{left:481.080000px;}
.x40_c00409{left:483.000000px;}
.xd2_c00409{left:484.080000px;}
.x5b_c00409{left:489.420000px;}
.x7f_c00409{left:490.500000px;}
.x92_c00409{left:493.080000px;}
.x61_c00409{left:496.080000px;}
.x8a_c00409{left:499.080000px;}
.xc1_c00409{left:501.000000px;}
.x2e_c00409{left:502.080000px;}
.x51_c00409{left:505.500000px;}
.x6b_c00409{left:507.000000px;}
.xa0_c00409{left:508.500000px;}
.xc6_c00409{left:510.000000px;}
.xe5_c00409{left:516.000000px;}
.x24_c00409{left:519.000000px;}
.x86_c00409{left:520.500000px;}
.xb2_c00409{left:521.580000px;}
.xa_c00409{left:523.920000px;}
.x38_c00409{left:525.000000px;}
.x73_c00409{left:526.080000px;}
.xa2_c00409{left:528.000000px;}
.x52_c00409{left:529.920000px;}
.xe8_c00409{left:531.000000px;}
.x16_c00409{left:532.920000px;}
.x41_c00409{left:535.920000px;}
.xb3_c00409{left:543.000000px;}
.x5c_c00409{left:546.420000px;}
.x39_c00409{left:547.500000px;}
.x2f_c00409{left:548.580000px;}
.x53_c00409{left:552.000000px;}
.xd3_c00409{left:558.000000px;}
.x93_c00409{left:559.080000px;}
.xab_c00409{left:561.000000px;}
.xb_c00409{left:562.080000px;}
.x62_c00409{left:565.500000px;}
.x30_c00409{left:567.855000px;}
.xcc_c00409{left:569.580000px;}
.x74_c00409{left:571.500000px;}
.xbb_c00409{left:573.000000px;}
.x42_c00409{left:574.920000px;}
.x6c_c00409{left:578.775000px;}
.xd4_c00409{left:580.500000px;}
.xc7_c00409{left:582.000000px;}
.x5d_c00409{left:583.500000px;}
.xa3_c00409{left:584.580000px;}
.x31_c00409{left:588.000000px;}
.xc_c00409{left:589.500000px;}
.x17_c00409{left:592.500000px;}
.x8b_c00409{left:596.775000px;}
.xd8_c00409{left:598.500000px;}
.x25_c00409{left:601.920000px;}
.x43_c00409{left:607.920000px;}
.xbc_c00409{left:609.000000px;}
.xd_c00409{left:610.080000px;}
.x99_c00409{left:613.500000px;}
.xe6_c00409{left:619.500000px;}
.x63_c00409{left:621.000000px;}
.x3a_c00409{left:622.920000px;}
.xdf_c00409{left:625.920000px;}
.x54_c00409{left:627.420000px;}
.xac_c00409{left:629.580000px;}
.x18_c00409{left:631.080000px;}
.xe_c00409{left:634.500000px;}
.x4c_c00409{left:637.500000px;}
.xa4_c00409{left:640.920000px;}
.xae_c00409{left:643.500000px;}
.xb7_c00409{left:645.000000px;}
.xd9_c00409{left:649.500000px;}
.x5e_c00409{left:651.000000px;}
.xb4_c00409{left:652.080000px;}
.x75_c00409{left:653.580000px;}
.xe0_c00409{left:655.920000px;}
.x44_c00409{left:657.000000px;}
.x19_c00409{left:658.500000px;}
.xc2_c00409{left:661.080000px;}
.x3b_c00409{left:663.000000px;}
.xd5_c00409{left:664.500000px;}
.x55_c00409{left:666.420000px;}
.x4e_c00409{left:667.500000px;}
.xf_c00409{left:668.580000px;}
.xcd_c00409{left:671.580000px;}
.xbd_c00409{left:673.500000px;}
.x45_c00409{left:678.420000px;}
.x1a_c00409{left:680.580000px;}
.x5f_c00409{left:683.580000px;}
.xd6_c00409{left:685.080000px;}
.x26_c00409{left:688.080000px;}
.x64_c00409{left:689.580000px;}
.x32_c00409{left:693.000000px;}
.x9a_c00409{left:698.580000px;}
.xb8_c00409{left:700.500000px;}
.xd7_c00409{left:702.000000px;}
.x1b_c00409{left:703.500000px;}
.x94_c00409{left:704.580000px;}
.x27_c00409{left:706.080000px;}
.x8c_c00409{left:708.420000px;}
.xe9_c00409{left:709.920000px;}
.x10_c00409{left:716.580000px;}
@media print{
.v0_c00409{vertical-align:0.000000pt;}
.v1_c00409{vertical-align:10.666667pt;}
.ls0_c00409{letter-spacing:0.000000pt;}
.ws0_c00409{word-spacing:-5.279994pt;}
.ws1_c00409{word-spacing:0.000000pt;}
.fs7_c00409{font-size:3.040000pt;}
.fs1_c00409{font-size:16.640000pt;}
.fs5_c00409{font-size:18.133333pt;}
.fs8_c00409{font-size:19.680000pt;}
.fs4_c00409{font-size:22.666667pt;}
.fs2_c00409{font-size:25.706667pt;}
.fs0_c00409{font-size:28.746667pt;}
.fs3_c00409{font-size:31.733333pt;}
.fs6_c00409{font-size:34.773333pt;}
.y0_c00409{bottom:0.000000pt;}
.yd0_c00409{bottom:222.440000pt;}
.yd3_c00409{bottom:223.773333pt;}
.ycf_c00409{bottom:224.360000pt;}
.yd1_c00409{bottom:224.560000pt;}
.yd4_c00409{bottom:225.306667pt;}
.yd2_c00409{bottom:225.693333pt;}
.yca_c00409{bottom:239.773333pt;}
.ycd_c00409{bottom:241.106667pt;}
.ycb_c00409{bottom:241.693333pt;}
.yce_c00409{bottom:242.066667pt;}
.ycc_c00409{bottom:243.026667pt;}
.yc5_c00409{bottom:257.106667pt;}
.yc8_c00409{bottom:258.440000pt;}
.yc7_c00409{bottom:260.360000pt;}
.yc9_c00409{bottom:260.560000pt;}
.yc6_c00409{bottom:262.466667pt;}
.yc4_c00409{bottom:275.773333pt;}
.yc1_c00409{bottom:276.360000pt;}
.yc2_c00409{bottom:277.306667pt;}
.yc3_c00409{bottom:277.693333pt;}
.ybd_c00409{bottom:293.106667pt;}
.ybe_c00409{bottom:293.893333pt;}
.ybf_c00409{bottom:295.026667pt;}
.yc0_c00409{bottom:295.973333pt;}
.yb9_c00409{bottom:310.440000pt;}
.ybc_c00409{bottom:311.773333pt;}
.yb8_c00409{bottom:312.360000pt;}
.ybb_c00409{bottom:313.306667pt;}
.yba_c00409{bottom:313.693333pt;}
.yb1_c00409{bottom:327.773333pt;}
.yb7_c00409{bottom:327.973333pt;}
.yb6_c00409{bottom:329.106667pt;}
.yb3_c00409{bottom:329.306667pt;}
.yb2_c00409{bottom:329.693333pt;}
.yb5_c00409{bottom:329.893333pt;}
.yb4_c00409{bottom:330.640000pt;}
.yac_c00409{bottom:345.106667pt;}
.ya9_c00409{bottom:346.066667pt;}
.yb0_c00409{bottom:346.266667pt;}
.yaf_c00409{bottom:346.440000pt;}
.yaa_c00409{bottom:347.026667pt;}
.yab_c00409{bottom:347.226667pt;}
.yad_c00409{bottom:347.973333pt;}
.yae_c00409{bottom:348.360000pt;}
.ya3_c00409{bottom:362.440000pt;}
.ya7_c00409{bottom:363.773333pt;}
.ya4_c00409{bottom:364.360000pt;}
.ya8_c00409{bottom:365.306667pt;}
.ya5_c00409{bottom:365.693333pt;}
.ya6_c00409{bottom:366.640000pt;}
.ya0_c00409{bottom:379.773333pt;}
.ya2_c00409{bottom:381.893333pt;}
.y9f_c00409{bottom:382.640000pt;}
.ya1_c00409{bottom:383.026667pt;}
.y99_c00409{bottom:397.106667pt;}
.y9e_c00409{bottom:397.693333pt;}
.y98_c00409{bottom:398.440000pt;}
.y9b_c00409{bottom:399.400000pt;}
.y9a_c00409{bottom:400.360000pt;}
.y9c_c00409{bottom:400.560000pt;}
.y9d_c00409{bottom:401.306667pt;}
.y95_c00409{bottom:414.066667pt;}
.y93_c00409{bottom:415.026667pt;}
.y94_c00409{bottom:415.773333pt;}
.y92_c00409{bottom:417.693333pt;}
.y96_c00409{bottom:417.893333pt;}
.y97_c00409{bottom:418.640000pt;}
.y91_c00409{bottom:432.360000pt;}
.y8d_c00409{bottom:433.106667pt;}
.y8e_c00409{bottom:434.066667pt;}
.y8c_c00409{bottom:435.026667pt;}
.y90_c00409{bottom:435.226667pt;}
.y8f_c00409{bottom:435.973333pt;}
.y8a_c00409{bottom:449.693333pt;}
.y86_c00409{bottom:450.440000pt;}
.y89_c00409{bottom:451.773333pt;}
.y8b_c00409{bottom:452.360000pt;}
.y87_c00409{bottom:452.560000pt;}
.y88_c00409{bottom:453.693333pt;}
.y85_c00409{bottom:468.733333pt;}
.y83_c00409{bottom:469.106667pt;}
.y7f_c00409{bottom:469.693333pt;}
.y80_c00409{bottom:471.026667pt;}
.y81_c00409{bottom:471.040000pt;}
.y84_c00409{bottom:471.226667pt;}
.y82_c00409{bottom:471.973333pt;}
.y7d_c00409{bottom:487.026667pt;}
.y7e_c00409{bottom:488.360000pt;}
.y79_c00409{bottom:503.773333pt;}
.y7c_c00409{bottom:504.560000pt;}
.y7b_c00409{bottom:504.733333pt;}
.y7a_c00409{bottom:505.693333pt;}
.y75_c00409{bottom:520.160000pt;}
.y76_c00409{bottom:521.106667pt;}
.y78_c00409{bottom:522.066667pt;}
.y77_c00409{bottom:523.026667pt;}
.y72_c00409{bottom:537.693333pt;}
.y73_c00409{bottom:539.773333pt;}
.y70_c00409{bottom:539.973333pt;}
.y71_c00409{bottom:540.360000pt;}
.y74_c00409{bottom:541.693333pt;}
.y6f_c00409{bottom:557.106667pt;}
.y6c_c00409{bottom:557.693333pt;}
.y6d_c00409{bottom:558.640000pt;}
.y6e_c00409{bottom:559.026667pt;}
.y68_c00409{bottom:574.440000pt;}
.y65_c00409{bottom:575.026667pt;}
.y6a_c00409{bottom:575.226667pt;}
.y67_c00409{bottom:575.973333pt;}
.y69_c00409{bottom:576.360000pt;}
.y66_c00409{bottom:576.373333pt;}
.y6b_c00409{bottom:577.306667pt;}
.y63_c00409{bottom:591.773333pt;}
.y60_c00409{bottom:592.360000pt;}
.y61_c00409{bottom:592.560000pt;}
.y64_c00409{bottom:593.693333pt;}
.y62_c00409{bottom:593.706667pt;}
.y5f_c00409{bottom:607.400000pt;}
.y5a_c00409{bottom:607.773333pt;}
.y5e_c00409{bottom:608.360000pt;}
.y5d_c00409{bottom:609.106667pt;}
.y5c_c00409{bottom:610.066667pt;}
.y5b_c00409{bottom:611.040000pt;}
.y56_c00409{bottom:625.106667pt;}
.y57_c00409{bottom:626.440000pt;}
.y59_c00409{bottom:628.360000pt;}
.y58_c00409{bottom:628.373333pt;}
.y55_c00409{bottom:647.026667pt;}
.y54_c00409{bottom:648.933333pt;}
.y4f_c00409{bottom:660.733333pt;}
.y4e_c00409{bottom:661.306667pt;}
.y51_c00409{bottom:661.693333pt;}
.y50_c00409{bottom:662.266667pt;}
.y52_c00409{bottom:662.640000pt;}
.y53_c00409{bottom:663.600000pt;}
.y4a_c00409{bottom:677.306667pt;}
.y49_c00409{bottom:678.066667pt;}
.y4c_c00409{bottom:678.266667pt;}
.y4b_c00409{bottom:679.026667pt;}
.y4d_c00409{bottom:680.933333pt;}
.y48_c00409{bottom:699.773333pt;}
.y47_c00409{bottom:701.693333pt;}
.y46_c00409{bottom:731.026667pt;}
.y45_c00409{bottom:765.306667pt;}
.y42_c00409{bottom:765.693333pt;}
.y43_c00409{bottom:766.440000pt;}
.y44_c00409{bottom:768.360000pt;}
.y3e_c00409{bottom:783.026667pt;}
.y3d_c00409{bottom:783.773333pt;}
.y41_c00409{bottom:784.560000pt;}
.y40_c00409{bottom:785.306667pt;}
.y3c_c00409{bottom:785.693333pt;}
.y3f_c00409{bottom:785.893333pt;}
.y38_c00409{bottom:800.160000pt;}
.y39_c00409{bottom:801.106667pt;}
.y3b_c00409{bottom:802.066667pt;}
.y37_c00409{bottom:803.026667pt;}
.y3a_c00409{bottom:803.226667pt;}
.y31_c00409{bottom:817.693333pt;}
.y30_c00409{bottom:818.440000pt;}
.y33_c00409{bottom:819.026667pt;}
.y36_c00409{bottom:819.600000pt;}
.y35_c00409{bottom:819.773333pt;}
.y2f_c00409{bottom:820.360000pt;}
.y34_c00409{bottom:820.560000pt;}
.y32_c00409{bottom:821.306667pt;}
.y2e_c00409{bottom:835.026667pt;}
.y29_c00409{bottom:836.360000pt;}
.y2a_c00409{bottom:837.106667pt;}
.y2b_c00409{bottom:837.893333pt;}
.y2d_c00409{bottom:838.066667pt;}
.y28_c00409{bottom:838.640000pt;}
.y2c_c00409{bottom:839.026667pt;}
.y25_c00409{bottom:852.360000pt;}
.y23_c00409{bottom:853.106667pt;}
.y21_c00409{bottom:854.066667pt;}
.y26_c00409{bottom:854.440000pt;}
.y27_c00409{bottom:855.226667pt;}
.y22_c00409{bottom:855.400000pt;}
.y24_c00409{bottom:856.360000pt;}
.y1d_c00409{bottom:870.826667pt;}
.y20_c00409{bottom:871.026667pt;}
.y1e_c00409{bottom:871.773333pt;}
.y1f_c00409{bottom:872.560000pt;}
.y1c_c00409{bottom:873.693333pt;}
.y15_c00409{bottom:887.026667pt;}
.y18_c00409{bottom:888.360000pt;}
.y17_c00409{bottom:889.106667pt;}
.y1b_c00409{bottom:890.266667pt;}
.y16_c00409{bottom:891.026667pt;}
.y1a_c00409{bottom:891.226667pt;}
.y19_c00409{bottom:891.973333pt;}
.yf_c00409{bottom:905.106667pt;}
.y13_c00409{bottom:905.306667pt;}
.y14_c00409{bottom:905.693333pt;}
.y11_c00409{bottom:906.440000pt;}
.y12_c00409{bottom:907.400000pt;}
.y10_c00409{bottom:909.306667pt;}
.yb_c00409{bottom:923.026667pt;}
.ya_c00409{bottom:923.773333pt;}
.ye_c00409{bottom:924.560000pt;}
.y9_c00409{bottom:925.306667pt;}
.yc_c00409{bottom:925.693333pt;}
.yd_c00409{bottom:926.640000pt;}
.y6_c00409{bottom:940.360000pt;}
.y5_c00409{bottom:941.106667pt;}
.y3_c00409{bottom:941.693333pt;}
.y8_c00409{bottom:941.893333pt;}
.y4_c00409{bottom:943.026667pt;}
.y7_c00409{bottom:943.973333pt;}
.y1_c00409{bottom:976.733333pt;}
.y2_c00409{bottom:977.893333pt;}
.h9_c00409{height:3.739141pt;}
.h2_c00409{height:20.466875pt;}
.h7_c00409{height:22.303646pt;}
.ha_c00409{height:24.206016pt;}
.h6_c00409{height:27.879557pt;}
.h3_c00409{height:31.618698pt;}
.h1_c00409{height:35.357839pt;}
.h4_c00409{height:39.031380pt;}
.h5_c00409{height:42.285365pt;}
.h8_c00409{height:42.770521pt;}
.h0_c00409{height:1186.666667pt;}
.w0_c00409{width:782.666667pt;}
.x0_c00409{left:0.000000pt;}
.xda_c00409{left:133.333333pt;}
.x8d_c00409{left:134.666667pt;}
.x1_c00409{left:136.000000pt;}
.x28_c00409{left:136.960000pt;}
.x76_c00409{left:148.000000pt;}
.x80_c00409{left:149.333333pt;}
.x3_c00409{left:150.293333pt;}
.x95_c00409{left:155.040000pt;}
.xbe_c00409{left:157.333333pt;}
.xb9_c00409{left:163.426667pt;}
.xce_c00409{left:165.333333pt;}
.x6d_c00409{left:167.040000pt;}
.xea_c00409{left:168.960000pt;}
.x4_c00409{left:172.000000pt;}
.x1c_c00409{left:172.960000pt;}
.xe1_c00409{left:175.626667pt;}
.x96_c00409{left:181.333333pt;}
.xa5_c00409{left:183.626667pt;}
.x11_c00409{left:185.333333pt;}
.xc8_c00409{left:186.293333pt;}
.x8e_c00409{left:190.293333pt;}
.xb5_c00409{left:192.373333pt;}
.x60_c00409{left:193.333333pt;}
.x9b_c00409{left:194.666667pt;}
.x77_c00409{left:196.000000pt;}
.xc3_c00409{left:197.706667pt;}
.xdb_c00409{left:202.093333pt;}
.x46_c00409{left:203.626667pt;}
.xc9_c00409{left:207.040000pt;}
.xeb_c00409{left:209.333333pt;}
.xa6_c00409{left:211.626667pt;}
.xba_c00409{left:212.960000pt;}
.x1d_c00409{left:214.293333pt;}
.x6e_c00409{left:217.333333pt;}
.xe2_c00409{left:220.373333pt;}
.x81_c00409{left:221.333333pt;}
.xa7_c00409{left:224.000000pt;}
.x29_c00409{left:227.040000pt;}
.x5_c00409{left:228.373333pt;}
.xdc_c00409{left:229.333333pt;}
.x1e_c00409{left:230.293333pt;}
.x87_c00409{left:232.000000pt;}
.x3c_c00409{left:234.293333pt;}
.xcf_c00409{left:236.000000pt;}
.x56_c00409{left:236.960000pt;}
.x7a_c00409{left:238.666667pt;}
.x67_c00409{left:239.626667pt;}
.x1f_c00409{left:241.333333pt;}
.xa8_c00409{left:242.293333pt;}
.x47_c00409{left:244.000000pt;}
.x8f_c00409{left:246.666667pt;}
.x7c_c00409{left:249.333333pt;}
.x88_c00409{left:250.666667pt;}
.x33_c00409{left:252.960000pt;}
.xe7_c00409{left:255.626667pt;}
.x12_c00409{left:256.960000pt;}
.x78_c00409{left:260.373333pt;}
.xd0_c00409{left:262.666667pt;}
.x57_c00409{left:264.000000pt;}
.x48_c00409{left:265.333333pt;}
.x82_c00409{left:266.666667pt;}
.xaf_c00409{left:268.960000pt;}
.x2a_c00409{left:271.040000pt;}
.x6_c00409{left:272.960000pt;}
.x3d_c00409{left:274.666667pt;}
.xca_c00409{left:276.000000pt;}
.x13_c00409{left:278.666667pt;}
.xad_c00409{left:284.960000pt;}
.x83_c00409{left:286.293333pt;}
.x9c_c00409{left:288.000000pt;}
.x7_c00409{left:290.666667pt;}
.x97_c00409{left:292.000000pt;}
.x49_c00409{left:292.960000pt;}
.x34_c00409{left:295.040000pt;}
.xec_c00409{left:298.293333pt;}
.x6f_c00409{left:303.626667pt;}
.xa9_c00409{left:306.666667pt;}
.x7d_c00409{left:307.800000pt;}
.x84_c00409{left:308.960000pt;}
.x68_c00409{left:310.666667pt;}
.xe3_c00409{left:311.626667pt;}
.x20_c00409{left:313.333333pt;}
.xc4_c00409{left:316.373333pt;}
.x14_c00409{left:318.666667pt;}
.x58_c00409{left:320.373333pt;}
.x2b_c00409{left:323.040000pt;}
.x65_c00409{left:324.573333pt;}
.xa1_c00409{left:325.706667pt;}
.x35_c00409{left:330.666667pt;}
.x4f_c00409{left:332.000000pt;}
.x90_c00409{left:333.333333pt;}
.x21_c00409{left:336.000000pt;}
.xaa_c00409{left:337.333333pt;}
.x4a_c00409{left:340.000000pt;}
.xdd_c00409{left:340.960000pt;}
.x7e_c00409{left:342.293333pt;}
.xb0_c00409{left:344.000000pt;}
.x70_c00409{left:345.333333pt;}
.x3e_c00409{left:348.000000pt;}
.x85_c00409{left:350.666667pt;}
.x36_c00409{left:352.000000pt;}
.x50_c00409{left:353.333333pt;}
.x4d_c00409{left:354.666667pt;}
.x2c_c00409{left:355.626667pt;}
.x4b_c00409{left:361.333333pt;}
.x2_c00409{left:362.666667pt;}
.x9d_c00409{left:364.000000pt;}
.xbf_c00409{left:365.333333pt;}
.x91_c00409{left:367.626667pt;}
.x69_c00409{left:369.333333pt;}
.x71_c00409{left:370.666667pt;}
.x8_c00409{left:373.333333pt;}
.x59_c00409{left:375.040000pt;}
.x66_c00409{left:376.960000pt;}
.x22_c00409{left:378.666667pt;}
.x7b_c00409{left:380.000000pt;}
.xe4_c00409{left:381.706667pt;}
.xb6_c00409{left:383.040000pt;}
.x72_c00409{left:384.373333pt;}
.x89_c00409{left:388.000000pt;}
.xb1_c00409{left:393.333333pt;}
.x15_c00409{left:396.000000pt;}
.x37_c00409{left:397.333333pt;}
.x23_c00409{left:398.293333pt;}
.x3f_c00409{left:399.626667pt;}
.xcb_c00409{left:401.906667pt;}
.x9e_c00409{left:404.000000pt;}
.xc0_c00409{left:405.706667pt;}
.xed_c00409{left:409.333333pt;}
.xc5_c00409{left:410.293333pt;}
.x9_c00409{left:412.373333pt;}
.x79_c00409{left:413.333333pt;}
.xd1_c00409{left:414.666667pt;}
.x2d_c00409{left:417.333333pt;}
.x5a_c00409{left:418.666667pt;}
.x98_c00409{left:421.706667pt;}
.x9f_c00409{left:424.000000pt;}
.xee_c00409{left:425.706667pt;}
.xde_c00409{left:426.666667pt;}
.x6a_c00409{left:427.626667pt;}
.x40_c00409{left:429.333333pt;}
.xd2_c00409{left:430.293333pt;}
.x5b_c00409{left:435.040000pt;}
.x7f_c00409{left:436.000000pt;}
.x92_c00409{left:438.293333pt;}
.x61_c00409{left:440.960000pt;}
.x8a_c00409{left:443.626667pt;}
.xc1_c00409{left:445.333333pt;}
.x2e_c00409{left:446.293333pt;}
.x51_c00409{left:449.333333pt;}
.x6b_c00409{left:450.666667pt;}
.xa0_c00409{left:452.000000pt;}
.xc6_c00409{left:453.333333pt;}
.xe5_c00409{left:458.666667pt;}
.x24_c00409{left:461.333333pt;}
.x86_c00409{left:462.666667pt;}
.xb2_c00409{left:463.626667pt;}
.xa_c00409{left:465.706667pt;}
.x38_c00409{left:466.666667pt;}
.x73_c00409{left:467.626667pt;}
.xa2_c00409{left:469.333333pt;}
.x52_c00409{left:471.040000pt;}
.xe8_c00409{left:472.000000pt;}
.x16_c00409{left:473.706667pt;}
.x41_c00409{left:476.373333pt;}
.xb3_c00409{left:482.666667pt;}
.x5c_c00409{left:485.706667pt;}
.x39_c00409{left:486.666667pt;}
.x2f_c00409{left:487.626667pt;}
.x53_c00409{left:490.666667pt;}
.xd3_c00409{left:496.000000pt;}
.x93_c00409{left:496.960000pt;}
.xab_c00409{left:498.666667pt;}
.xb_c00409{left:499.626667pt;}
.x62_c00409{left:502.666667pt;}
.x30_c00409{left:504.760000pt;}
.xcc_c00409{left:506.293333pt;}
.x74_c00409{left:508.000000pt;}
.xbb_c00409{left:509.333333pt;}
.x42_c00409{left:511.040000pt;}
.x6c_c00409{left:514.466667pt;}
.xd4_c00409{left:516.000000pt;}
.xc7_c00409{left:517.333333pt;}
.x5d_c00409{left:518.666667pt;}
.xa3_c00409{left:519.626667pt;}
.x31_c00409{left:522.666667pt;}
.xc_c00409{left:524.000000pt;}
.x17_c00409{left:526.666667pt;}
.x8b_c00409{left:530.466667pt;}
.xd8_c00409{left:532.000000pt;}
.x25_c00409{left:535.040000pt;}
.x43_c00409{left:540.373333pt;}
.xbc_c00409{left:541.333333pt;}
.xd_c00409{left:542.293333pt;}
.x99_c00409{left:545.333333pt;}
.xe6_c00409{left:550.666667pt;}
.x63_c00409{left:552.000000pt;}
.x3a_c00409{left:553.706667pt;}
.xdf_c00409{left:556.373333pt;}
.x54_c00409{left:557.706667pt;}
.xac_c00409{left:559.626667pt;}
.x18_c00409{left:560.960000pt;}
.xe_c00409{left:564.000000pt;}
.x4c_c00409{left:566.666667pt;}
.xa4_c00409{left:569.706667pt;}
.xae_c00409{left:572.000000pt;}
.xb7_c00409{left:573.333333pt;}
.xd9_c00409{left:577.333333pt;}
.x5e_c00409{left:578.666667pt;}
.xb4_c00409{left:579.626667pt;}
.x75_c00409{left:580.960000pt;}
.xe0_c00409{left:583.040000pt;}
.x44_c00409{left:584.000000pt;}
.x19_c00409{left:585.333333pt;}
.xc2_c00409{left:587.626667pt;}
.x3b_c00409{left:589.333333pt;}
.xd5_c00409{left:590.666667pt;}
.x55_c00409{left:592.373333pt;}
.x4e_c00409{left:593.333333pt;}
.xf_c00409{left:594.293333pt;}
.xcd_c00409{left:596.960000pt;}
.xbd_c00409{left:598.666667pt;}
.x45_c00409{left:603.040000pt;}
.x1a_c00409{left:604.960000pt;}
.x5f_c00409{left:607.626667pt;}
.xd6_c00409{left:608.960000pt;}
.x26_c00409{left:611.626667pt;}
.x64_c00409{left:612.960000pt;}
.x32_c00409{left:616.000000pt;}
.x9a_c00409{left:620.960000pt;}
.xb8_c00409{left:622.666667pt;}
.xd7_c00409{left:624.000000pt;}
.x1b_c00409{left:625.333333pt;}
.x94_c00409{left:626.293333pt;}
.x27_c00409{left:627.626667pt;}
.x8c_c00409{left:629.706667pt;}
.xe9_c00409{left:631.040000pt;}
.x10_c00409{left:636.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_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_947c990a7f779eaaad03cc65.woff2')format("woff");}.ff1_c00410{font-family:ff1_c00410;line-height:1.688965;font-style: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.340336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);}
.m50_c00410{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.ma1_c00410{transform:matrix(0.380334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380334,0.000000,0.000000,0.250000,0,0);}
.m67_c00410{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.ma7_c00410{transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);}
.m26_c00410{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m7f_c00410{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m29_c00410{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m64_c00410{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m81_c00410{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m10_c00410{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m4a_c00410{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.m9d_c00410{transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);}
.m48_c00410{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m5f_c00410{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m6_c00410{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m79_c00410{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m42_c00410{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m1c_c00410{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m8e_c00410{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.m51_c00410{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m5b_c00410{transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);}
.m43_c00410{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m55_c00410{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m9_c00410{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m89_c00410{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m2f_c00410{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m41_c00410{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m99_c00410{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.m28_c00410{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m8b_c00410{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m24_c00410{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m5_c00410{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m4e_c00410{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.m62_c00410{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m5d_c00410{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m75_c00410{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m2a_c00410{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.m47_c00410{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m12_c00410{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m71_c00410{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m9a_c00410{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m3e_c00410{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m8d_c00410{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m40_c00410{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m91_c00410{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m57_c00410{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m20_c00410{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m35_c00410{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m63_c00410{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m82_c00410{transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);}
.m8_c00410{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m2c_c00410{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.mc_c00410{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.ma6_c00410{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m76_c00410{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.ma_c00410{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m5e_c00410{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m8c_c00410{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m3_c00410{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m6e_c00410{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m34_c00410{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m78_c00410{transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);}
.m8f_c00410{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m6c_c00410{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m3b_c00410{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.m1a_c00410{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m84_c00410{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m33_c00410{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_c00410{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m85_c00410{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m38_c00410{transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);}
.m9e_c00410{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);}
.m52_c00410{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m54_c00410{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m16_c00410{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m98_c00410{transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);}
.m32_c00410{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m86_c00410{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m4f_c00410{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m72_c00410{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.ma4_c00410{transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);}
.m90_c00410{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m65_c00410{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m3d_c00410{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m8a_c00410{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.ma2_c00410{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.m77_c00410{transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);}
.m83_c00410{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.me_c00410{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m68_c00410{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m4d_c00410{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m6d_c00410{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mb_c00410{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m96_c00410{transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);}
.m1f_c00410{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m7e_c00410{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m70_c00410{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m4_c00410{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m31_c00410{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m14_c00410{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m1e_c00410{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);}
.m6b_c00410{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m7a_c00410{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m69_c00410{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m2e_c00410{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m7b_c00410{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m97_c00410{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m61_c00410{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m74_c00410{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m5a_c00410{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m66_c00410{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m4b_c00410{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m3a_c00410{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m59_c00410{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m58_c00410{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m93_c00410{transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);}
.m60_c00410{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m25_c00410{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m4c_c00410{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m27_c00410{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.ma0_c00410{transform:matrix(0.565441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565441,0.000000,0.000000,0.250000,0,0);}
.m2b_c00410{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.m39_c00410{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m9c_c00410{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m44_c00410{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.md_c00410{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m56_c00410{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m94_c00410{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m92_c00410{transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);}
.m3f_c00410{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m87_c00410{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m9f_c00410{transform:matrix(0.580147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580147,0.000000,0.000000,0.250000,0,0);}
.m7c_c00410{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m95_c00410{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m88_c00410{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m9b_c00410{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m30_c00410{transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);}
.m21_c00410{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m7_c00410{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m6f_c00410{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m49_c00410{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.m15_c00410{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);}
.m3c_c00410{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m22_c00410{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m53_c00410{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m11_c00410{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m1d_c00410{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m1_c00410{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);}
.m73_c00410{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);}
.m6a_c00410{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m17_c00410{transform:matrix(0.648235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648235,0.000000,0.000000,0.250000,0,0);}
.m46_c00410{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m18_c00410{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.ma5_c00410{transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);}
.m19_c00410{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m5c_c00410{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.ma3_c00410{transform:matrix(0.692308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692308,0.000000,0.000000,0.250000,0,0);}
.m80_c00410{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m36_c00410{transform:matrix(0.695882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695882,0.000000,0.000000,0.250000,0,0);}
.m13_c00410{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m45_c00410{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m23_c00410{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m1b_c00410{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mf_c00410{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m7d_c00410{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m37_c00410{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m2d_c00410{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.v1_c00410{vertical-align:-18.000000px;}
.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:-6.207147px;}
.ws2_c00410{word-spacing:0.000000px;}
.ws1_c00410{word-spacing:2.209875px;}
.fc0_c00410{color:transparent;}
.fs4_c00410{font-size:18.720000px;}
.fs1_c00410{font-size:20.400000px;}
.fs5_c00410{font-size:25.500000px;}
.fs2_c00410{font-size:28.920000px;}
.fs3_c00410{font-size:32.340000px;}
.fs0_c00410{font-size:35.700000px;}
.fs6_c00410{font-size:39.120000px;}
.y0_c00410{bottom:0.000000px;}
.y6f_c00410{bottom:248.325000px;}
.y73_c00410{bottom:249.405000px;}
.y71_c00410{bottom:249.630000px;}
.y70_c00410{bottom:250.470000px;}
.y72_c00410{bottom:263.130000px;}
.y6a_c00410{bottom:263.325000px;}
.y6c_c00410{bottom:263.550000px;}
.y6b_c00410{bottom:264.405000px;}
.y6e_c00410{bottom:265.050000px;}
.y6d_c00410{bottom:265.470000px;}
.y65_c00410{bottom:277.470000px;}
.y64_c00410{bottom:278.325000px;}
.y66_c00410{bottom:278.550000px;}
.y68_c00410{bottom:279.630000px;}
.y67_c00410{bottom:280.470000px;}
.y69_c00410{bottom:281.550000px;}
.y61_c00410{bottom:702.405000px;}
.y60_c00410{bottom:704.325000px;}
.y63_c00410{bottom:704.745000px;}
.y5f_c00410{bottom:705.405000px;}
.y62_c00410{bottom:705.825000px;}
.y5e_c00410{bottom:706.470000px;}
.y5d_c00410{bottom:706.905000px;}
.y5a_c00410{bottom:721.905000px;}
.y5b_c00410{bottom:723.405000px;}
.y58_c00410{bottom:724.245000px;}
.y5c_c00410{bottom:725.325000px;}
.y57_c00410{bottom:726.405000px;}
.y59_c00410{bottom:727.470000px;}
.y54_c00410{bottom:743.745000px;}
.y56_c00410{bottom:744.630000px;}
.y55_c00410{bottom:745.470000px;}
.y53_c00410{bottom:745.905000px;}
.y50_c00410{bottom:760.905000px;}
.y51_c00410{bottom:763.245000px;}
.y52_c00410{bottom:764.130000px;}
.y4f_c00410{bottom:765.405000px;}
.y4e_c00410{bottom:781.905000px;}
.y4d_c00410{bottom:782.745000px;}
.y4c_c00410{bottom:784.905000px;}
.y4b_c00410{bottom:801.405000px;}
.y4a_c00410{bottom:802.245000px;}
.y48_c00410{bottom:802.470000px;}
.y47_c00410{bottom:804.405000px;}
.y49_c00410{bottom:805.470000px;}
.y40_c00410{bottom:821.745000px;}
.y46_c00410{bottom:822.405000px;}
.y44_c00410{bottom:823.245000px;}
.y41_c00410{bottom:823.905000px;}
.y43_c00410{bottom:824.130000px;}
.y45_c00410{bottom:824.970000px;}
.y42_c00410{bottom:825.405000px;}
.y3d_c00410{bottom:840.405000px;}
.y3b_c00410{bottom:841.245000px;}
.y39_c00410{bottom:841.680000px;}
.y3f_c00410{bottom:842.325000px;}
.y3e_c00410{bottom:842.745000px;}
.y38_c00410{bottom:843.405000px;}
.y3a_c00410{bottom:844.470000px;}
.y3c_c00410{bottom:844.905000px;}
.y35_c00410{bottom:859.905000px;}
.y36_c00410{bottom:862.245000px;}
.y33_c00410{bottom:862.905000px;}
.y34_c00410{bottom:863.970000px;}
.y37_c00410{bottom:864.405000px;}
.y31_c00410{bottom:881.745000px;}
.y32_c00410{bottom:882.630000px;}
.y30_c00410{bottom:882.825000px;}
.y2f_c00410{bottom:883.905000px;}
.y2d_c00410{bottom:901.245000px;}
.y2b_c00410{bottom:902.130000px;}
.y2c_c00410{bottom:902.325000px;}
.y2e_c00410{bottom:902.970000px;}
.y2a_c00410{bottom:903.405000px;}
.y27_c00410{bottom:920.745000px;}
.y28_c00410{bottom:922.245000px;}
.y26_c00410{bottom:922.905000px;}
.y29_c00410{bottom:924.405000px;}
.y22_c00410{bottom:941.130000px;}
.y23_c00410{bottom:941.745000px;}
.y25_c00410{bottom:941.970000px;}
.y20_c00410{bottom:942.405000px;}
.y24_c00410{bottom:942.825000px;}
.y21_c00410{bottom:943.905000px;}
.y1c_c00410{bottom:958.905000px;}
.y1f_c00410{bottom:960.825000px;}
.y1b_c00410{bottom:961.905000px;}
.y1e_c00410{bottom:962.130000px;}
.y1d_c00410{bottom:962.970000px;}
.y16_c00410{bottom:978.405000px;}
.y19_c00410{bottom:980.745000px;}
.y17_c00410{bottom:981.405000px;}
.y18_c00410{bottom:981.630000px;}
.y1a_c00410{bottom:982.905000px;}
.y13_c00410{bottom:997.905000px;}
.y15_c00410{bottom:999.825000px;}
.y11_c00410{bottom:1000.245000px;}
.y14_c00410{bottom:1001.130000px;}
.y12_c00410{bottom:1002.405000px;}
.yf_c00410{bottom:1017.405000px;}
.yd_c00410{bottom:1019.745000px;}
.y10_c00410{bottom:1020.630000px;}
.yc_c00410{bottom:1021.470000px;}
.yb_c00410{bottom:1021.905000px;}
.ye_c00410{bottom:1022.970000px;}
.y8_c00410{bottom:1039.245000px;}
.y6_c00410{bottom:1040.130000px;}
.ya_c00410{bottom:1040.970000px;}
.y7_c00410{bottom:1041.405000px;}
.y9_c00410{bottom:1042.470000px;}
.y4_c00410{bottom:1058.745000px;}
.y5_c00410{bottom:1059.825000px;}
.y3_c00410{bottom:1060.905000px;}
.y1_c00410{bottom:1097.745000px;}
.y2_c00410{bottom:1099.050000px;}
.h5_c00410{height:23.025234px;}
.h2_c00410{height:25.091602px;}
.h6_c00410{height:31.364502px;}
.h3_c00410{height:35.571035px;}
.h4_c00410{height:39.777568px;}
.h1_c00410{height:43.910303px;}
.h7_c00410{height:48.116836px;}
.h0_c00410{height:1335.000000px;}
.w0_c00410{width:880.500000px;}
.x0_c00410{left:0.000000px;}
.x3_c00410{left:151.500000px;}
.x71_c00410{left:153.000000px;}
.xbd_c00410{left:154.080000px;}
.x85_c00410{left:167.580000px;}
.x42_c00410{left:169.920000px;}
.x11_c00410{left:177.420000px;}
.x67_c00410{left:178.500000px;}
.x5e_c00410{left:180.420000px;}
.x4f_c00410{left:181.920000px;}
.xbe_c00410{left:183.000000px;}
.x36_c00410{left:186.420000px;}
.x99_c00410{left:189.000000px;}
.x8c_c00410{left:191.580000px;}
.x68_c00410{left:193.080000px;}
.x43_c00410{left:196.920000px;}
.x7b_c00410{left:199.920000px;}
.xab_c00410{left:202.920000px;}
.x9a_c00410{left:204.420000px;}
.x4_c00410{left:205.500000px;}
.xa6_c00410{left:206.580000px;}
.x20_c00410{left:208.080000px;}
.x12_c00410{left:211.920000px;}
.x5_c00410{left:222.420000px;}
.x86_c00410{left:223.500000px;}
.x37_c00410{left:225.000000px;}
.x50_c00410{left:226.500000px;}
.x8d_c00410{left:234.000000px;}
.x69_c00410{left:237.420000px;}
.x38_c00410{left:240.000000px;}
.x44_c00410{left:243.000000px;}
.x5f_c00410{left:246.420000px;}
.x2d_c00410{left:249.000000px;}
.x39_c00410{left:252.000000px;}
.xc6_c00410{left:256.080000px;}
.x21_c00410{left:259.500000px;}
.x72_c00410{left:260.580000px;}
.x8e_c00410{left:265.500000px;}
.x13_c00410{left:268.500000px;}
.xac_c00410{left:271.080000px;}
.x60_c00410{left:274.500000px;}
.x6a_c00410{left:276.000000px;}
.x7c_c00410{left:277.080000px;}
.x51_c00410{left:280.080000px;}
.x8f_c00410{left:283.920000px;}
.xa1_c00410{left:287.580000px;}
.x2e_c00410{left:291.420000px;}
.x6_c00410{left:294.420000px;}
.x14_c00410{left:295.920000px;}
.x52_c00410{left:297.420000px;}
.xbf_c00410{left:299.580000px;}
.x3a_c00410{left:304.920000px;}
.x22_c00410{left:310.500000px;}
.x61_c00410{left:313.500000px;}
.xc0_c00410{left:316.500000px;}
.x90_c00410{left:317.580000px;}
.x6b_c00410{left:322.500000px;}
.x53_c00410{left:324.420000px;}
.x15_c00410{left:325.500000px;}
.x2f_c00410{left:334.080000px;}
.xad_c00410{left:336.000000px;}
.x7_c00410{left:337.920000px;}
.x6c_c00410{left:339.420000px;}
.xa7_c00410{left:340.500000px;}
.xb5_c00410{left:342.420000px;}
.x45_c00410{left:343.500000px;}
.x23_c00410{left:345.420000px;}
.x73_c00410{left:346.920000px;}
.x91_c00410{left:348.000000px;}
.x16_c00410{left:349.500000px;}
.x54_c00410{left:351.000000px;}
.x87_c00410{left:353.145000px;}
.xa2_c00410{left:358.500000px;}
.xca_c00410{left:363.000000px;}
.xa8_c00410{left:364.500000px;}
.x55_c00410{left:367.080000px;}
.x24_c00410{left:370.080000px;}
.x30_c00410{left:372.000000px;}
.x46_c00410{left:375.000000px;}
.xc1_c00410{left:379.500000px;}
.x92_c00410{left:381.000000px;}
.x56_c00410{left:385.500000px;}
.x7d_c00410{left:387.000000px;}
.x25_c00410{left:391.500000px;}
.xb0_c00410{left:393.420000px;}
.x8_c00410{left:394.500000px;}
.x74_c00410{left:396.420000px;}
.x57_c00410{left:397.500000px;}
.x62_c00410{left:399.420000px;}
.x93_c00410{left:400.500000px;}
.x47_c00410{left:402.000000px;}
.xa9_c00410{left:403.080000px;}
.x2_c00410{left:406.500000px;}
.x17_c00410{left:408.000000px;}
.xb6_c00410{left:411.420000px;}
.xcb_c00410{left:412.920000px;}
.x31_c00410{left:414.000000px;}
.x6d_c00410{left:415.500000px;}
.x88_c00410{left:418.500000px;}
.xa3_c00410{left:420.420000px;}
.x26_c00410{left:421.500000px;}
.x7e_c00410{left:424.500000px;}
.x75_c00410{left:427.080000px;}
.x9_c00410{left:430.920000px;}
.xaa_c00410{left:432.000000px;}
.x94_c00410{left:436.500000px;}
.x18_c00410{left:438.000000px;}
.xb1_c00410{left:439.500000px;}
.x48_c00410{left:440.580000px;}
.xa4_c00410{left:445.500000px;}
.x3b_c00410{left:450.000000px;}
.x6e_c00410{left:451.920000px;}
.xc2_c00410{left:453.420000px;}
.x95_c00410{left:456.420000px;}
.x76_c00410{left:457.920000px;}
.xcc_c00410{left:463.920000px;}
.xa_c00410{left:466.920000px;}
.x63_c00410{left:468.000000px;}
.x58_c00410{left:469.920000px;}
.x19_c00410{left:473.580000px;}
.x6f_c00410{left:477.000000px;}
.x7f_c00410{left:479.580000px;}
.x49_c00410{left:481.080000px;}
.xc3_c00410{left:483.000000px;}
.x27_c00410{left:484.080000px;}
.xb7_c00410{left:485.580000px;}
.x77_c00410{left:489.000000px;}
.x9b_c00410{left:495.000000px;}
.xb8_c00410{left:504.420000px;}
.xb2_c00410{left:507.000000px;}
.x32_c00410{left:508.500000px;}
.x64_c00410{left:511.920000px;}
.x3c_c00410{left:513.000000px;}
.x89_c00410{left:516.000000px;}
.xa5_c00410{left:517.080000px;}
.x59_c00410{left:519.000000px;}
.xc7_c00410{left:520.080000px;}
.x28_c00410{left:522.000000px;}
.x3d_c00410{left:525.000000px;}
.xae_c00410{left:526.080000px;}
.x4a_c00410{left:529.500000px;}
.x1a_c00410{left:532.500000px;}
.xb_c00410{left:534.420000px;}
.x96_c00410{left:535.500000px;}
.x9c_c00410{left:537.420000px;}
.xd0_c00410{left:541.080000px;}
.xc8_c00410{left:544.500000px;}
.x65_c00410{left:547.500000px;}
.xb9_c00410{left:549.420000px;}
.x1b_c00410{left:550.920000px;}
.x3e_c00410{left:553.080000px;}
.x78_c00410{left:556.920000px;}
.xcd_c00410{left:558.000000px;}
.x8a_c00410{left:562.500000px;}
.x70_c00410{left:564.420000px;}
.x33_c00410{left:565.500000px;}
.x80_c00410{left:567.000000px;}
.x3f_c00410{left:571.920000px;}
.x1c_c00410{left:576.000000px;}
.x4b_c00410{left:577.080000px;}
.x9d_c00410{left:579.000000px;}
.x29_c00410{left:580.080000px;}
.xc_c00410{left:582.420000px;}
.xba_c00410{left:583.500000px;}
.x34_c00410{left:591.000000px;}
.x4c_c00410{left:595.500000px;}
.x5a_c00410{left:601.920000px;}
.x81_c00410{left:603.420000px;}
.xc4_c00410{left:606.000000px;}
.x1d_c00410{left:607.500000px;}
.xd_c00410{left:608.580000px;}
.xb3_c00410{left:613.500000px;}
.x9e_c00410{left:619.080000px;}
.xbb_c00410{left:621.000000px;}
.x4d_c00410{left:622.920000px;}
.xce_c00410{left:625.080000px;}
.x5b_c00410{left:628.500000px;}
.x8b_c00410{left:631.500000px;}
.x2a_c00410{left:634.500000px;}
.x82_c00410{left:637.500000px;}
.x79_c00410{left:643.500000px;}
.xaf_c00410{left:646.080000px;}
.xe_c00410{left:649.080000px;}
.x9f_c00410{left:651.420000px;}
.x1e_c00410{left:652.500000px;}
.xbc_c00410{left:657.000000px;}
.xc5_c00410{left:658.500000px;}
.x97_c00410{left:660.420000px;}
.x40_c00410{left:661.920000px;}
.x1f_c00410{left:663.420000px;}
.x83_c00410{left:666.420000px;}
.xf_c00410{left:669.420000px;}
.x5c_c00410{left:670.500000px;}
.x2b_c00410{left:672.000000px;}
.xc9_c00410{left:675.000000px;}
.x4e_c00410{left:676.500000px;}
.xa0_c00410{left:678.000000px;}
.x41_c00410{left:687.000000px;}
.x66_c00410{left:688.080000px;}
.x7a_c00410{left:691.500000px;}
.x10_c00410{left:694.500000px;}
.xcf_c00410{left:696.000000px;}
.x84_c00410{left:697.500000px;}
.x98_c00410{left:703.500000px;}
.x1_c00410{left:705.000000px;}
.x35_c00410{left:706.920000px;}
.x2c_c00410{left:708.000000px;}
.x5d_c00410{left:715.500000px;}
.xb4_c00410{left:716.580000px;}
@media print{
.v1_c00410{vertical-align:-16.000000pt;}
.v0_c00410{vertical-align:0.000000pt;}
.ls0_c00410{letter-spacing:0.000000pt;}
.ws0_c00410{word-spacing:-5.517464pt;}
.ws2_c00410{word-spacing:0.000000pt;}
.ws1_c00410{word-spacing:1.964334pt;}
.fs4_c00410{font-size:16.640000pt;}
.fs1_c00410{font-size:18.133333pt;}
.fs5_c00410{font-size:22.666667pt;}
.fs2_c00410{font-size:25.706667pt;}
.fs3_c00410{font-size:28.746667pt;}
.fs0_c00410{font-size:31.733333pt;}
.fs6_c00410{font-size:34.773333pt;}
.y0_c00410{bottom:0.000000pt;}
.y6f_c00410{bottom:220.733333pt;}
.y73_c00410{bottom:221.693333pt;}
.y71_c00410{bottom:221.893333pt;}
.y70_c00410{bottom:222.640000pt;}
.y72_c00410{bottom:233.893333pt;}
.y6a_c00410{bottom:234.066667pt;}
.y6c_c00410{bottom:234.266667pt;}
.y6b_c00410{bottom:235.026667pt;}
.y6e_c00410{bottom:235.600000pt;}
.y6d_c00410{bottom:235.973333pt;}
.y65_c00410{bottom:246.640000pt;}
.y64_c00410{bottom:247.400000pt;}
.y66_c00410{bottom:247.600000pt;}
.y68_c00410{bottom:248.560000pt;}
.y67_c00410{bottom:249.306667pt;}
.y69_c00410{bottom:250.266667pt;}
.y61_c00410{bottom:624.360000pt;}
.y60_c00410{bottom:626.066667pt;}
.y63_c00410{bottom:626.440000pt;}
.y5f_c00410{bottom:627.026667pt;}
.y62_c00410{bottom:627.400000pt;}
.y5e_c00410{bottom:627.973333pt;}
.y5d_c00410{bottom:628.360000pt;}
.y5a_c00410{bottom:641.693333pt;}
.y5b_c00410{bottom:643.026667pt;}
.y58_c00410{bottom:643.773333pt;}
.y5c_c00410{bottom:644.733333pt;}
.y57_c00410{bottom:645.693333pt;}
.y59_c00410{bottom:646.640000pt;}
.y54_c00410{bottom:661.106667pt;}
.y56_c00410{bottom:661.893333pt;}
.y55_c00410{bottom:662.640000pt;}
.y53_c00410{bottom:663.026667pt;}
.y50_c00410{bottom:676.360000pt;}
.y51_c00410{bottom:678.440000pt;}
.y52_c00410{bottom:679.226667pt;}
.y4f_c00410{bottom:680.360000pt;}
.y4e_c00410{bottom:695.026667pt;}
.y4d_c00410{bottom:695.773333pt;}
.y4c_c00410{bottom:697.693333pt;}
.y4b_c00410{bottom:712.360000pt;}
.y4a_c00410{bottom:713.106667pt;}
.y48_c00410{bottom:713.306667pt;}
.y47_c00410{bottom:715.026667pt;}
.y49_c00410{bottom:715.973333pt;}
.y40_c00410{bottom:730.440000pt;}
.y46_c00410{bottom:731.026667pt;}
.y44_c00410{bottom:731.773333pt;}
.y41_c00410{bottom:732.360000pt;}
.y43_c00410{bottom:732.560000pt;}
.y45_c00410{bottom:733.306667pt;}
.y42_c00410{bottom:733.693333pt;}
.y3d_c00410{bottom:747.026667pt;}
.y3b_c00410{bottom:747.773333pt;}
.y39_c00410{bottom:748.160000pt;}
.y3f_c00410{bottom:748.733333pt;}
.y3e_c00410{bottom:749.106667pt;}
.y38_c00410{bottom:749.693333pt;}
.y3a_c00410{bottom:750.640000pt;}
.y3c_c00410{bottom:751.026667pt;}
.y35_c00410{bottom:764.360000pt;}
.y36_c00410{bottom:766.440000pt;}
.y33_c00410{bottom:767.026667pt;}
.y34_c00410{bottom:767.973333pt;}
.y37_c00410{bottom:768.360000pt;}
.y31_c00410{bottom:783.773333pt;}
.y32_c00410{bottom:784.560000pt;}
.y30_c00410{bottom:784.733333pt;}
.y2f_c00410{bottom:785.693333pt;}
.y2d_c00410{bottom:801.106667pt;}
.y2b_c00410{bottom:801.893333pt;}
.y2c_c00410{bottom:802.066667pt;}
.y2e_c00410{bottom:802.640000pt;}
.y2a_c00410{bottom:803.026667pt;}
.y27_c00410{bottom:818.440000pt;}
.y28_c00410{bottom:819.773333pt;}
.y26_c00410{bottom:820.360000pt;}
.y29_c00410{bottom:821.693333pt;}
.y22_c00410{bottom:836.560000pt;}
.y23_c00410{bottom:837.106667pt;}
.y25_c00410{bottom:837.306667pt;}
.y20_c00410{bottom:837.693333pt;}
.y24_c00410{bottom:838.066667pt;}
.y21_c00410{bottom:839.026667pt;}
.y1c_c00410{bottom:852.360000pt;}
.y1f_c00410{bottom:854.066667pt;}
.y1b_c00410{bottom:855.026667pt;}
.y1e_c00410{bottom:855.226667pt;}
.y1d_c00410{bottom:855.973333pt;}
.y16_c00410{bottom:869.693333pt;}
.y19_c00410{bottom:871.773333pt;}
.y17_c00410{bottom:872.360000pt;}
.y18_c00410{bottom:872.560000pt;}
.y1a_c00410{bottom:873.693333pt;}
.y13_c00410{bottom:887.026667pt;}
.y15_c00410{bottom:888.733333pt;}
.y11_c00410{bottom:889.106667pt;}
.y14_c00410{bottom:889.893333pt;}
.y12_c00410{bottom:891.026667pt;}
.yf_c00410{bottom:904.360000pt;}
.yd_c00410{bottom:906.440000pt;}
.y10_c00410{bottom:907.226667pt;}
.yc_c00410{bottom:907.973333pt;}
.yb_c00410{bottom:908.360000pt;}
.ye_c00410{bottom:909.306667pt;}
.y8_c00410{bottom:923.773333pt;}
.y6_c00410{bottom:924.560000pt;}
.ya_c00410{bottom:925.306667pt;}
.y7_c00410{bottom:925.693333pt;}
.y9_c00410{bottom:926.640000pt;}
.y4_c00410{bottom:941.106667pt;}
.y5_c00410{bottom:942.066667pt;}
.y3_c00410{bottom:943.026667pt;}
.y1_c00410{bottom:975.773333pt;}
.y2_c00410{bottom:976.933333pt;}
.h5_c00410{height:20.466875pt;}
.h2_c00410{height:22.303646pt;}
.h6_c00410{height:27.879557pt;}
.h3_c00410{height:31.618698pt;}
.h4_c00410{height:35.357839pt;}
.h1_c00410{height:39.031380pt;}
.h7_c00410{height:42.770521pt;}
.h0_c00410{height:1186.666667pt;}
.w0_c00410{width:782.666667pt;}
.x0_c00410{left:0.000000pt;}
.x3_c00410{left:134.666667pt;}
.x71_c00410{left:136.000000pt;}
.xbd_c00410{left:136.960000pt;}
.x85_c00410{left:148.960000pt;}
.x42_c00410{left:151.040000pt;}
.x11_c00410{left:157.706667pt;}
.x67_c00410{left:158.666667pt;}
.x5e_c00410{left:160.373333pt;}
.x4f_c00410{left:161.706667pt;}
.xbe_c00410{left:162.666667pt;}
.x36_c00410{left:165.706667pt;}
.x99_c00410{left:168.000000pt;}
.x8c_c00410{left:170.293333pt;}
.x68_c00410{left:171.626667pt;}
.x43_c00410{left:175.040000pt;}
.x7b_c00410{left:177.706667pt;}
.xab_c00410{left:180.373333pt;}
.x9a_c00410{left:181.706667pt;}
.x4_c00410{left:182.666667pt;}
.xa6_c00410{left:183.626667pt;}
.x20_c00410{left:184.960000pt;}
.x12_c00410{left:188.373333pt;}
.x5_c00410{left:197.706667pt;}
.x86_c00410{left:198.666667pt;}
.x37_c00410{left:200.000000pt;}
.x50_c00410{left:201.333333pt;}
.x8d_c00410{left:208.000000pt;}
.x69_c00410{left:211.040000pt;}
.x38_c00410{left:213.333333pt;}
.x44_c00410{left:216.000000pt;}
.x5f_c00410{left:219.040000pt;}
.x2d_c00410{left:221.333333pt;}
.x39_c00410{left:224.000000pt;}
.xc6_c00410{left:227.626667pt;}
.x21_c00410{left:230.666667pt;}
.x72_c00410{left:231.626667pt;}
.x8e_c00410{left:236.000000pt;}
.x13_c00410{left:238.666667pt;}
.xac_c00410{left:240.960000pt;}
.x60_c00410{left:244.000000pt;}
.x6a_c00410{left:245.333333pt;}
.x7c_c00410{left:246.293333pt;}
.x51_c00410{left:248.960000pt;}
.x8f_c00410{left:252.373333pt;}
.xa1_c00410{left:255.626667pt;}
.x2e_c00410{left:259.040000pt;}
.x6_c00410{left:261.706667pt;}
.x14_c00410{left:263.040000pt;}
.x52_c00410{left:264.373333pt;}
.xbf_c00410{left:266.293333pt;}
.x3a_c00410{left:271.040000pt;}
.x22_c00410{left:276.000000pt;}
.x61_c00410{left:278.666667pt;}
.xc0_c00410{left:281.333333pt;}
.x90_c00410{left:282.293333pt;}
.x6b_c00410{left:286.666667pt;}
.x53_c00410{left:288.373333pt;}
.x15_c00410{left:289.333333pt;}
.x2f_c00410{left:296.960000pt;}
.xad_c00410{left:298.666667pt;}
.x7_c00410{left:300.373333pt;}
.x6c_c00410{left:301.706667pt;}
.xa7_c00410{left:302.666667pt;}
.xb5_c00410{left:304.373333pt;}
.x45_c00410{left:305.333333pt;}
.x23_c00410{left:307.040000pt;}
.x73_c00410{left:308.373333pt;}
.x91_c00410{left:309.333333pt;}
.x16_c00410{left:310.666667pt;}
.x54_c00410{left:312.000000pt;}
.x87_c00410{left:313.906667pt;}
.xa2_c00410{left:318.666667pt;}
.xca_c00410{left:322.666667pt;}
.xa8_c00410{left:324.000000pt;}
.x55_c00410{left:326.293333pt;}
.x24_c00410{left:328.960000pt;}
.x30_c00410{left:330.666667pt;}
.x46_c00410{left:333.333333pt;}
.xc1_c00410{left:337.333333pt;}
.x92_c00410{left:338.666667pt;}
.x56_c00410{left:342.666667pt;}
.x7d_c00410{left:344.000000pt;}
.x25_c00410{left:348.000000pt;}
.xb0_c00410{left:349.706667pt;}
.x8_c00410{left:350.666667pt;}
.x74_c00410{left:352.373333pt;}
.x57_c00410{left:353.333333pt;}
.x62_c00410{left:355.040000pt;}
.x93_c00410{left:356.000000pt;}
.x47_c00410{left:357.333333pt;}
.xa9_c00410{left:358.293333pt;}
.x2_c00410{left:361.333333pt;}
.x17_c00410{left:362.666667pt;}
.xb6_c00410{left:365.706667pt;}
.xcb_c00410{left:367.040000pt;}
.x31_c00410{left:368.000000pt;}
.x6d_c00410{left:369.333333pt;}
.x88_c00410{left:372.000000pt;}
.xa3_c00410{left:373.706667pt;}
.x26_c00410{left:374.666667pt;}
.x7e_c00410{left:377.333333pt;}
.x75_c00410{left:379.626667pt;}
.x9_c00410{left:383.040000pt;}
.xaa_c00410{left:384.000000pt;}
.x94_c00410{left:388.000000pt;}
.x18_c00410{left:389.333333pt;}
.xb1_c00410{left:390.666667pt;}
.x48_c00410{left:391.626667pt;}
.xa4_c00410{left:396.000000pt;}
.x3b_c00410{left:400.000000pt;}
.x6e_c00410{left:401.706667pt;}
.xc2_c00410{left:403.040000pt;}
.x95_c00410{left:405.706667pt;}
.x76_c00410{left:407.040000pt;}
.xcc_c00410{left:412.373333pt;}
.xa_c00410{left:415.040000pt;}
.x63_c00410{left:416.000000pt;}
.x58_c00410{left:417.706667pt;}
.x19_c00410{left:420.960000pt;}
.x6f_c00410{left:424.000000pt;}
.x7f_c00410{left:426.293333pt;}
.x49_c00410{left:427.626667pt;}
.xc3_c00410{left:429.333333pt;}
.x27_c00410{left:430.293333pt;}
.xb7_c00410{left:431.626667pt;}
.x77_c00410{left:434.666667pt;}
.x9b_c00410{left:440.000000pt;}
.xb8_c00410{left:448.373333pt;}
.xb2_c00410{left:450.666667pt;}
.x32_c00410{left:452.000000pt;}
.x64_c00410{left:455.040000pt;}
.x3c_c00410{left:456.000000pt;}
.x89_c00410{left:458.666667pt;}
.xa5_c00410{left:459.626667pt;}
.x59_c00410{left:461.333333pt;}
.xc7_c00410{left:462.293333pt;}
.x28_c00410{left:464.000000pt;}
.x3d_c00410{left:466.666667pt;}
.xae_c00410{left:467.626667pt;}
.x4a_c00410{left:470.666667pt;}
.x1a_c00410{left:473.333333pt;}
.xb_c00410{left:475.040000pt;}
.x96_c00410{left:476.000000pt;}
.x9c_c00410{left:477.706667pt;}
.xd0_c00410{left:480.960000pt;}
.xc8_c00410{left:484.000000pt;}
.x65_c00410{left:486.666667pt;}
.xb9_c00410{left:488.373333pt;}
.x1b_c00410{left:489.706667pt;}
.x3e_c00410{left:491.626667pt;}
.x78_c00410{left:495.040000pt;}
.xcd_c00410{left:496.000000pt;}
.x8a_c00410{left:500.000000pt;}
.x70_c00410{left:501.706667pt;}
.x33_c00410{left:502.666667pt;}
.x80_c00410{left:504.000000pt;}
.x3f_c00410{left:508.373333pt;}
.x1c_c00410{left:512.000000pt;}
.x4b_c00410{left:512.960000pt;}
.x9d_c00410{left:514.666667pt;}
.x29_c00410{left:515.626667pt;}
.xc_c00410{left:517.706667pt;}
.xba_c00410{left:518.666667pt;}
.x34_c00410{left:525.333333pt;}
.x4c_c00410{left:529.333333pt;}
.x5a_c00410{left:535.040000pt;}
.x81_c00410{left:536.373333pt;}
.xc4_c00410{left:538.666667pt;}
.x1d_c00410{left:540.000000pt;}
.xd_c00410{left:540.960000pt;}
.xb3_c00410{left:545.333333pt;}
.x9e_c00410{left:550.293333pt;}
.xbb_c00410{left:552.000000pt;}
.x4d_c00410{left:553.706667pt;}
.xce_c00410{left:555.626667pt;}
.x5b_c00410{left:558.666667pt;}
.x8b_c00410{left:561.333333pt;}
.x2a_c00410{left:564.000000pt;}
.x82_c00410{left:566.666667pt;}
.x79_c00410{left:572.000000pt;}
.xaf_c00410{left:574.293333pt;}
.xe_c00410{left:576.960000pt;}
.x9f_c00410{left:579.040000pt;}
.x1e_c00410{left:580.000000pt;}
.xbc_c00410{left:584.000000pt;}
.xc5_c00410{left:585.333333pt;}
.x97_c00410{left:587.040000pt;}
.x40_c00410{left:588.373333pt;}
.x1f_c00410{left:589.706667pt;}
.x83_c00410{left:592.373333pt;}
.xf_c00410{left:595.040000pt;}
.x5c_c00410{left:596.000000pt;}
.x2b_c00410{left:597.333333pt;}
.xc9_c00410{left:600.000000pt;}
.x4e_c00410{left:601.333333pt;}
.xa0_c00410{left:602.666667pt;}
.x41_c00410{left:610.666667pt;}
.x66_c00410{left:611.626667pt;}
.x7a_c00410{left:614.666667pt;}
.x10_c00410{left:617.333333pt;}
.xcf_c00410{left:618.666667pt;}
.x84_c00410{left:620.000000pt;}
.x98_c00410{left:625.333333pt;}
.x1_c00410{left:626.666667pt;}
.x35_c00410{left:628.373333pt;}
.x2c_c00410{left:629.333333pt;}
.x5d_c00410{left:636.000000pt;}
.xb4_c00410{left:636.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_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_b4e5d234612ec4ba64245f4c.woff2')format("woff");}.ff1_c00411{font-family:ff1_c00411;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me7_c00411{transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);}
.m69_c00411{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mc6_c00411{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m0_c00411{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m38_c00411{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m86_c00411{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m4e_c00411{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m37_c00411{transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);}
.mbd_c00411{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m74_c00411{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m17_c00411{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m87_c00411{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m9a_c00411{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m88_c00411{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.me6_c00411{transform:matrix(0.385736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385736,0.000000,0.000000,0.250000,0,0);}
.mdc_c00411{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m99_c00411{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m35_c00411{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m78_c00411{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m34_c00411{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m97_c00411{transform:matrix(0.398773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398773,0.000000,0.000000,0.250000,0,0);}
.mb1_c00411{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_c00411{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m48_c00411{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m8_c00411{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m7e_c00411{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.ma8_c00411{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.me2_c00411{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m9_c00411{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.me4_c00411{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m7f_c00411{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m4d_c00411{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.m16_c00411{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mc9_c00411{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.me3_c00411{transform:matrix(0.411810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411810,0.000000,0.000000,0.250000,0,0);}
.mba_c00411{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m44_c00411{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m83_c00411{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.mcd_c00411{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m95_c00411{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mae_c00411{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m28_c00411{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m1d_c00411{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m6f_c00411{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m92_c00411{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m6_c00411{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mf_c00411{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mb4_c00411{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m79_c00411{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m98_c00411{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mb7_c00411{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.mbb_c00411{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m4b_c00411{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mda_c00411{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.mc_c00411{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.md5_c00411{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m1b_c00411{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.mc1_c00411{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m77_c00411{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m96_c00411{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.mbf_c00411{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m21_c00411{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.mce_c00411{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.mb3_c00411{transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);}
.ma5_c00411{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m25_c00411{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mdf_c00411{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m52_c00411{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.m6e_c00411{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.md2_c00411{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.me5_c00411{transform:matrix(0.434816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434816,0.000000,0.000000,0.250000,0,0);}
.m12_c00411{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m18_c00411{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m3b_c00411{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.m5_c00411{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.ma0_c00411{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m23_c00411{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.me_c00411{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.ma4_c00411{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.maa_c00411{transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);}
.mc3_c00411{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m7d_c00411{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.m2a_c00411{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m6d_c00411{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m5a_c00411{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m13_c00411{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m27_c00411{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m7_c00411{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m73_c00411{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m93_c00411{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m3e_c00411{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m65_c00411{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.m2b_c00411{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.mcc_c00411{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.mc8_c00411{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.mdd_c00411{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m1e_c00411{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m90_c00411{transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);}
.m54_c00411{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mbe_c00411{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m51_c00411{transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);}
.m20_c00411{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m8a_c00411{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mc2_c00411{transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);}
.m55_c00411{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m75_c00411{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mcf_c00411{transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);}
.m15_c00411{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m5d_c00411{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m39_c00411{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m8b_c00411{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.mad_c00411{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m8f_c00411{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m42_c00411{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m6b_c00411{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m10_c00411{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);}
.m81_c00411{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.me1_c00411{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.mc5_c00411{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m9d_c00411{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m61_c00411{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m49_c00411{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.mcb_c00411{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m71_c00411{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m94_c00411{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m31_c00411{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mab_c00411{transform:matrix(0.513451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513451,0.000000,0.000000,0.250000,0,0);}
.m58_c00411{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.maf_c00411{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.md1_c00411{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m76_c00411{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mbc_c00411{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m29_c00411{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m2e_c00411{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m66_c00411{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m53_c00411{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mb9_c00411{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.md_c00411{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m9e_c00411{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mca_c00411{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m5b_c00411{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.ma_c00411{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m32_c00411{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m7a_c00411{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m4f_c00411{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m33_c00411{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m1c_c00411{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m11_c00411{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m24_c00411{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m7c_c00411{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.ma2_c00411{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mc0_c00411{transform:matrix(0.539412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539412,0.000000,0.000000,0.250000,0,0);}
.m8c_c00411{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m3a_c00411{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mc4_c00411{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.mb8_c00411{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m59_c00411{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m36_c00411{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m5c_c00411{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m72_c00411{transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);}
.m4_c00411{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m19_c00411{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m2c_c00411{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.md6_c00411{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m46_c00411{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m9f_c00411{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.ma7_c00411{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m70_c00411{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.md7_c00411{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m3d_c00411{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m8d_c00411{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m40_c00411{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m80_c00411{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m5f_c00411{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.ma1_c00411{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.ma9_c00411{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m63_c00411{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m57_c00411{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m4c_c00411{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m2_c00411{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m22_c00411{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m84_c00411{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m91_c00411{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mb2_c00411{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.me0_c00411{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m1f_c00411{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mdb_c00411{transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);}
.m1a_c00411{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m68_c00411{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.md3_c00411{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m3f_c00411{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m45_c00411{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);}
.mc7_c00411{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m6c_c00411{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.mb6_c00411{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mb_c00411{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m8e_c00411{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m85_c00411{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.ma3_c00411{transform:matrix(0.618776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618776,0.000000,0.000000,0.250000,0,0);}
.m5e_c00411{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m9c_c00411{transform:matrix(0.620851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620851,0.000000,0.000000,0.250000,0,0);}
.m26_c00411{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m6a_c00411{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);}
.m7b_c00411{transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);}
.mb0_c00411{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.md9_c00411{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m1_c00411{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m47_c00411{transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);}
.m64_c00411{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m3c_c00411{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m14_c00411{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.md0_c00411{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.m41_c00411{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.md8_c00411{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m9b_c00411{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m4a_c00411{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m30_c00411{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m60_c00411{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.ma6_c00411{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m82_c00411{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m62_c00411{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.md4_c00411{transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);}
.m43_c00411{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mb5_c00411{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m50_c00411{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.mac_c00411{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m56_c00411{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mde_c00411{transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);}
.m2d_c00411{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m89_c00411{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m3_c00411{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m2f_c00411{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
.fs3_c00411{font-size:3.420000px;}
.fs6_c00411{font-size:18.720000px;}
.fs1_c00411{font-size:20.400000px;}
.fs5_c00411{font-size:25.500000px;}
.fs2_c00411{font-size:28.920000px;}
.fs4_c00411{font-size:32.340000px;}
.fs0_c00411{font-size:35.700000px;}
.fs7_c00411{font-size:39.120000px;}
.y0_c00411{bottom:0.000000px;}
.yca_c00411{bottom:248.745000px;}
.ycb_c00411{bottom:249.180000px;}
.yc9_c00411{bottom:250.470000px;}
.yc8_c00411{bottom:250.905000px;}
.ycc_c00411{bottom:252.405000px;}
.yc6_c00411{bottom:269.745000px;}
.yc4_c00411{bottom:270.405000px;}
.yc5_c00411{bottom:270.630000px;}
.yc7_c00411{bottom:271.470000px;}
.ybd_c00411{bottom:287.745000px;}
.yc1_c00411{bottom:288.825000px;}
.ybf_c00411{bottom:289.245000px;}
.ybc_c00411{bottom:289.905000px;}
.yc3_c00411{bottom:290.130000px;}
.yc0_c00411{bottom:290.325000px;}
.yc2_c00411{bottom:290.970000px;}
.ybe_c00411{bottom:291.405000px;}
.yba_c00411{bottom:308.745000px;}
.yb9_c00411{bottom:309.825000px;}
.ybb_c00411{bottom:310.470000px;}
.yb8_c00411{bottom:310.905000px;}
.yb6_c00411{bottom:328.245000px;}
.yb4_c00411{bottom:330.405000px;}
.yb7_c00411{bottom:330.630000px;}
.yb5_c00411{bottom:331.470000px;}
.yb2_c00411{bottom:347.745000px;}
.yaf_c00411{bottom:349.905000px;}
.yb0_c00411{bottom:350.130000px;}
.yb3_c00411{bottom:350.970000px;}
.yb1_c00411{bottom:351.405000px;}
.yab_c00411{bottom:368.325000px;}
.yad_c00411{bottom:369.405000px;}
.yac_c00411{bottom:369.630000px;}
.yae_c00411{bottom:370.470000px;}
.ya8_c00411{bottom:385.905000px;}
.ya9_c00411{bottom:388.245000px;}
.ya5_c00411{bottom:388.905000px;}
.yaa_c00411{bottom:389.130000px;}
.ya7_c00411{bottom:389.325000px;}
.ya6_c00411{bottom:390.405000px;}
.ya3_c00411{bottom:407.745000px;}
.ya4_c00411{bottom:409.470000px;}
.ya2_c00411{bottom:409.905000px;}
.ya0_c00411{bottom:424.905000px;}
.y9f_c00411{bottom:426.405000px;}
.y9b_c00411{bottom:426.825000px;}
.y9e_c00411{bottom:427.245000px;}
.ya1_c00411{bottom:428.130000px;}
.y9c_c00411{bottom:429.405000px;}
.y9d_c00411{bottom:429.630000px;}
.y97_c00411{bottom:446.745000px;}
.y9a_c00411{bottom:448.470000px;}
.y98_c00411{bottom:448.905000px;}
.y99_c00411{bottom:449.130000px;}
.y95_c00411{bottom:465.825000px;}
.y93_c00411{bottom:466.245000px;}
.y96_c00411{bottom:467.130000px;}
.y92_c00411{bottom:467.745000px;}
.y90_c00411{bottom:468.405000px;}
.y94_c00411{bottom:469.470000px;}
.y91_c00411{bottom:469.905000px;}
.y8d_c00411{bottom:485.745000px;}
.y8c_c00411{bottom:487.245000px;}
.y8f_c00411{bottom:487.905000px;}
.y8e_c00411{bottom:488.970000px;}
.y8b_c00411{bottom:489.405000px;}
.y8a_c00411{bottom:505.245000px;}
.y87_c00411{bottom:506.745000px;}
.y88_c00411{bottom:507.630000px;}
.y85_c00411{bottom:507.825000px;}
.y89_c00411{bottom:508.470000px;}
.y86_c00411{bottom:508.905000px;}
.y84_c00411{bottom:526.245000px;}
.y82_c00411{bottom:527.130000px;}
.y81_c00411{bottom:527.970000px;}
.y80_c00411{bottom:528.405000px;}
.y83_c00411{bottom:529.470000px;}
.y7d_c00411{bottom:545.745000px;}
.y7c_c00411{bottom:546.630000px;}
.y7b_c00411{bottom:546.825000px;}
.y7e_c00411{bottom:547.905000px;}
.y7f_c00411{bottom:548.970000px;}
.y7a_c00411{bottom:565.245000px;}
.y78_c00411{bottom:566.130000px;}
.y79_c00411{bottom:567.405000px;}
.y76_c00411{bottom:584.745000px;}
.y75_c00411{bottom:586.905000px;}
.y77_c00411{bottom:587.130000px;}
.y73_c00411{bottom:604.245000px;}
.y71_c00411{bottom:606.405000px;}
.y74_c00411{bottom:606.630000px;}
.y72_c00411{bottom:607.470000px;}
.y6d_c00411{bottom:622.905000px;}
.y70_c00411{bottom:625.245000px;}
.y6c_c00411{bottom:625.905000px;}
.y6e_c00411{bottom:626.970000px;}
.y6f_c00411{bottom:627.405000px;}
.y6b_c00411{bottom:643.245000px;}
.y67_c00411{bottom:643.680000px;}
.y69_c00411{bottom:644.745000px;}
.y6a_c00411{bottom:645.630000px;}
.y68_c00411{bottom:646.905000px;}
.y64_c00411{bottom:664.245000px;}
.y66_c00411{bottom:665.970000px;}
.y65_c00411{bottom:666.405000px;}
.y63_c00411{bottom:683.745000px;}
.y61_c00411{bottom:684.825000px;}
.y60_c00411{bottom:685.470000px;}
.y62_c00411{bottom:685.905000px;}
.y5f_c00411{bottom:700.905000px;}
.y5c_c00411{bottom:703.245000px;}
.y5e_c00411{bottom:704.970000px;}
.y5b_c00411{bottom:705.405000px;}
.y5d_c00411{bottom:706.470000px;}
.y58_c00411{bottom:722.745000px;}
.y57_c00411{bottom:724.905000px;}
.y5a_c00411{bottom:725.130000px;}
.y59_c00411{bottom:725.970000px;}
.y56_c00411{bottom:742.245000px;}
.y51_c00411{bottom:743.130000px;}
.y55_c00411{bottom:743.745000px;}
.y50_c00411{bottom:744.405000px;}
.y54_c00411{bottom:744.825000px;}
.y53_c00411{bottom:745.470000px;}
.y52_c00411{bottom:745.905000px;}
.y4f_c00411{bottom:761.745000px;}
.y4b_c00411{bottom:762.825000px;}
.y4c_c00411{bottom:763.245000px;}
.y4d_c00411{bottom:763.905000px;}
.y4e_c00411{bottom:765.405000px;}
.y49_c00411{bottom:782.745000px;}
.y4a_c00411{bottom:784.470000px;}
.y48_c00411{bottom:784.905000px;}
.y47_c00411{bottom:800.745000px;}
.y45_c00411{bottom:802.245000px;}
.y43_c00411{bottom:803.130000px;}
.y44_c00411{bottom:803.970000px;}
.y42_c00411{bottom:804.405000px;}
.y46_c00411{bottom:805.470000px;}
.y3f_c00411{bottom:821.745000px;}
.y40_c00411{bottom:822.630000px;}
.y41_c00411{bottom:823.470000px;}
.y3d_c00411{bottom:823.905000px;}
.y3e_c00411{bottom:824.970000px;}
.y3b_c00411{bottom:842.325000px;}
.y3a_c00411{bottom:843.405000px;}
.y3c_c00411{bottom:843.630000px;}
.y36_c00411{bottom:860.745000px;}
.y38_c00411{bottom:862.245000px;}
.y37_c00411{bottom:862.905000px;}
.y39_c00411{bottom:863.130000px;}
.y34_c00411{bottom:880.245000px;}
.y33_c00411{bottom:882.405000px;}
.y35_c00411{bottom:882.630000px;}
.y32_c00411{bottom:883.470000px;}
.y31_c00411{bottom:899.745000px;}
.y30_c00411{bottom:901.905000px;}
.y2f_c00411{bottom:902.130000px;}
.y29_c00411{bottom:919.245000px;}
.y2d_c00411{bottom:920.550000px;}
.y2c_c00411{bottom:920.745000px;}
.y2a_c00411{bottom:921.405000px;}
.y2e_c00411{bottom:922.470000px;}
.y2b_c00411{bottom:922.905000px;}
.y26_c00411{bottom:940.245000px;}
.y28_c00411{bottom:940.905000px;}
.y27_c00411{bottom:941.970000px;}
.y24_c00411{bottom:942.405000px;}
.y25_c00411{bottom:942.420000px;}
.y1d_c00411{bottom:958.470000px;}
.y22_c00411{bottom:958.905000px;}
.y1e_c00411{bottom:959.745000px;}
.y23_c00411{bottom:960.630000px;}
.y20_c00411{bottom:960.825000px;}
.y21_c00411{bottom:961.905000px;}
.y1f_c00411{bottom:962.970000px;}
.y1c_c00411{bottom:976.905000px;}
.y1a_c00411{bottom:977.970000px;}
.y19_c00411{bottom:979.245000px;}
.y1b_c00411{bottom:980.325000px;}
.y18_c00411{bottom:981.405000px;}
.y17_c00411{bottom:997.905000px;}
.y14_c00411{bottom:998.745000px;}
.y15_c00411{bottom:999.825000px;}
.y16_c00411{bottom:1000.905000px;}
.yf_c00411{bottom:1017.405000px;}
.y13_c00411{bottom:1017.825000px;}
.y10_c00411{bottom:1018.245000px;}
.ye_c00411{bottom:1019.325000px;}
.y12_c00411{bottom:1020.405000px;}
.y11_c00411{bottom:1021.470000px;}
.yb_c00411{bottom:1036.905000px;}
.ya_c00411{bottom:1037.745000px;}
.y9_c00411{bottom:1037.970000px;}
.yc_c00411{bottom:1038.825000px;}
.yd_c00411{bottom:1039.905000px;}
.y3_c00411{bottom:1056.405000px;}
.y8_c00411{bottom:1057.245000px;}
.y6_c00411{bottom:1058.325000px;}
.y7_c00411{bottom:1058.745000px;}
.y5_c00411{bottom:1059.405000px;}
.y4_c00411{bottom:1059.420000px;}
.y2_c00411{bottom:1097.550000px;}
.y1_c00411{bottom:1097.745000px;}
.h4_c00411{height:4.206533px;}
.h7_c00411{height:23.025234px;}
.h2_c00411{height:25.091602px;}
.h6_c00411{height:31.364502px;}
.h3_c00411{height:35.571035px;}
.h5_c00411{height:39.777568px;}
.h1_c00411{height:43.910303px;}
.h8_c00411{height:48.116836px;}
.h0_c00411{height:1335.000000px;}
.w0_c00411{width:880.500000px;}
.x0_c00411{left:0.000000px;}
.xb5_c00411{left:150.000000px;}
.x1_c00411{left:151.500000px;}
.x3_c00411{left:152.580000px;}
.x19_c00411{left:153.855000px;}
.x41_c00411{left:168.645000px;}
.xa0_c00411{left:173.775000px;}
.xdf_c00411{left:175.080000px;}
.x62_c00411{left:179.580000px;}
.x37_c00411{left:183.420000px;}
.x92_c00411{left:186.000000px;}
.x104_c00411{left:187.500000px;}
.x107_c00411{left:189.000000px;}
.xf9_c00411{left:190.920000px;}
.xe6_c00411{left:192.000000px;}
.xe_c00411{left:193.500000px;}
.xc5_c00411{left:195.000000px;}
.xdd_c00411{left:196.500000px;}
.x93_c00411{left:198.000000px;}
.x58_c00411{left:199.920000px;}
.x7d_c00411{left:201.000000px;}
.x4a_c00411{left:202.080000px;}
.xeb_c00411{left:205.500000px;}
.x4_c00411{left:207.000000px;}
.xa1_c00411{left:208.080000px;}
.xd9_c00411{left:210.420000px;}
.x2e_c00411{left:211.920000px;}
.x76_c00411{left:213.420000px;}
.xbe_c00411{left:214.500000px;}
.xc1_c00411{left:215.580000px;}
.x108_c00411{left:218.580000px;}
.xc6_c00411{left:220.500000px;}
.x7e_c00411{left:222.000000px;}
.x9b_c00411{left:223.080000px;}
.x8a_c00411{left:224.775000px;}
.x1a_c00411{left:226.080000px;}
.x5_c00411{left:227.580000px;}
.x38_c00411{left:229.080000px;}
.x59_c00411{left:232.500000px;}
.x42_c00411{left:237.000000px;}
.x63_c00411{left:238.080000px;}
.x55_c00411{left:243.420000px;}
.x7f_c00411{left:244.920000px;}
.xf_c00411{left:246.420000px;}
.xf3_c00411{left:247.920000px;}
.x94_c00411{left:249.000000px;}
.xe7_c00411{left:253.500000px;}
.x105_c00411{left:256.500000px;}
.xec_c00411{left:257.580000px;}
.x1b_c00411{left:259.920000px;}
.x8b_c00411{left:262.080000px;}
.x5a_c00411{left:268.920000px;}
.x6b_c00411{left:270.000000px;}
.xe8_c00411{left:271.500000px;}
.x43_c00411{left:273.000000px;}
.xf4_c00411{left:274.500000px;}
.xed_c00411{left:276.420000px;}
.x6_c00411{left:277.920000px;}
.xe0_c00411{left:280.500000px;}
.xc7_c00411{left:281.580000px;}
.xbb_c00411{left:283.080000px;}
.xad_c00411{left:287.580000px;}
.x100_c00411{left:291.000000px;}
.x26_c00411{left:293.775000px;}
.xe1_c00411{left:294.855000px;}
.x6c_c00411{left:297.420000px;}
.x10_c00411{left:300.420000px;}
.x5b_c00411{left:301.920000px;}
.xbf_c00411{left:303.000000px;}
.xbc_c00411{left:304.920000px;}
.xef_c00411{left:306.000000px;}
.x1c_c00411{left:308.580000px;}
.xcf_c00411{left:310.080000px;}
.xd4_c00411{left:312.000000px;}
.x56_c00411{left:313.500000px;}
.x39_c00411{left:318.855000px;}
.x2f_c00411{left:321.000000px;}
.x64_c00411{left:322.500000px;}
.xa2_c00411{left:327.000000px;}
.x5c_c00411{left:328.500000px;}
.x1d_c00411{left:330.000000px;}
.x27_c00411{left:331.500000px;}
.x77_c00411{left:332.580000px;}
.x44_c00411{left:336.420000px;}
.x11_c00411{left:339.000000px;}
.x7_c00411{left:340.920000px;}
.xa3_c00411{left:343.080000px;}
.x65_c00411{left:345.000000px;}
.xae_c00411{left:347.580000px;}
.xf5_c00411{left:349.920000px;}
.xb6_c00411{left:352.275000px;}
.xe2_c00411{left:353.580000px;}
.x3a_c00411{left:355.080000px;}
.x80_c00411{left:357.000000px;}
.x8c_c00411{left:361.080000px;}
.x95_c00411{left:363.000000px;}
.x6d_c00411{left:364.500000px;}
.x45_c00411{left:365.580000px;}
.x57_c00411{left:367.500000px;}
.xd0_c00411{left:369.000000px;}
.xcd_c00411{left:372.000000px;}
.xe3_c00411{left:373.080000px;}
.x66_c00411{left:376.500000px;}
.xaf_c00411{left:378.000000px;}
.x1e_c00411{left:379.080000px;}
.x81_c00411{left:382.500000px;}
.x5d_c00411{left:384.000000px;}
.x6e_c00411{left:388.080000px;}
.x4b_c00411{left:390.420000px;}
.xd1_c00411{left:391.920000px;}
.xda_c00411{left:393.000000px;}
.x9c_c00411{left:394.920000px;}
.x109_c00411{left:396.000000px;}
.x8_c00411{left:397.500000px;}
.x78_c00411{left:399.420000px;}
.x12_c00411{left:402.420000px;}
.xe9_c00411{left:403.500000px;}
.xb0_c00411{left:404.580000px;}
.xfa_c00411{left:406.500000px;}
.x2_c00411{left:408.000000px;}
.x30_c00411{left:409.500000px;}
.xc8_c00411{left:411.000000px;}
.x28_c00411{left:414.000000px;}
.xdb_c00411{left:416.580000px;}
.x4c_c00411{left:421.080000px;}
.x67_c00411{left:426.420000px;}
.x1f_c00411{left:427.500000px;}
.x6f_c00411{left:429.000000px;}
.x87_c00411{left:430.500000px;}
.x96_c00411{left:432.000000px;}
.x103_c00411{left:433.080000px;}
.x5e_c00411{left:435.000000px;}
.x46_c00411{left:436.500000px;}
.x9_c00411{left:439.500000px;}
.x31_c00411{left:440.580000px;}
.x8d_c00411{left:442.500000px;}
.xfd_c00411{left:444.000000px;}
.xfb_c00411{left:447.000000px;}
.x97_c00411{left:450.000000px;}
.x4d_c00411{left:451.500000px;}
.x82_c00411{left:453.000000px;}
.x88_c00411{left:456.420000px;}
.x13_c00411{left:458.355000px;}
.x3b_c00411{left:460.080000px;}
.xaa_c00411{left:462.000000px;}
.x8e_c00411{left:463.080000px;}
.x5f_c00411{left:465.000000px;}
.x70_c00411{left:466.920000px;}
.xf6_c00411{left:468.000000px;}
.xc2_c00411{left:471.000000px;}
.x20_c00411{left:474.000000px;}
.x4e_c00411{left:475.920000px;}
.x3c_c00411{left:477.000000px;}
.xea_c00411{left:478.500000px;}
.xb1_c00411{left:480.000000px;}
.xd5_c00411{left:481.500000px;}
.x79_c00411{left:482.580000px;}
.xa4_c00411{left:484.500000px;}
.xf7_c00411{left:487.920000px;}
.xab_c00411{left:489.000000px;}
.xd2_c00411{left:490.500000px;}
.x83_c00411{left:492.420000px;}
.xc9_c00411{left:495.000000px;}
.x14_c00411{left:496.920000px;}
.xe4_c00411{left:498.000000px;}
.x32_c00411{left:499.920000px;}
.x4f_c00411{left:501.420000px;}
.x71_c00411{left:503.145000px;}
.x29_c00411{left:506.355000px;}
.x21_c00411{left:507.420000px;}
.xd6_c00411{left:508.500000px;}
.x98_c00411{left:510.000000px;}
.xf0_c00411{left:511.500000px;}
.x101_c00411{left:514.500000px;}
.x9d_c00411{left:516.000000px;}
.x3d_c00411{left:517.500000px;}
.x8f_c00411{left:520.275000px;}
.x84_c00411{left:522.000000px;}
.xb7_c00411{left:523.500000px;}
.xb2_c00411{left:525.000000px;}
.x47_c00411{left:528.000000px;}
.x102_c00411{left:529.500000px;}
.x50_c00411{left:532.920000px;}
.xfe_c00411{left:535.500000px;}
.xa_c00411{left:537.420000px;}
.xd7_c00411{left:538.500000px;}
.x99_c00411{left:540.000000px;}
.x68_c00411{left:541.500000px;}
.x2a_c00411{left:544.080000px;}
.x15_c00411{left:545.580000px;}
.x33_c00411{left:547.080000px;}
.x9e_c00411{left:549.420000px;}
.xa5_c00411{left:550.920000px;}
.x72_c00411{left:561.420000px;}
.x16_c00411{left:564.420000px;}
.x34_c00411{left:565.500000px;}
.x51_c00411{left:567.420000px;}
.xca_c00411{left:568.500000px;}
.x22_c00411{left:569.580000px;}
.xde_c00411{left:574.920000px;}
.xa6_c00411{left:577.500000px;}
.x48_c00411{left:579.000000px;}
.xf1_c00411{left:580.500000px;}
.xb3_c00411{left:582.420000px;}
.x9f_c00411{left:585.000000px;}
.xac_c00411{left:588.420000px;}
.x69_c00411{left:589.500000px;}
.x52_c00411{left:592.500000px;}
.xb_c00411{left:594.000000px;}
.x7a_c00411{left:595.500000px;}
.xf2_c00411{left:597.000000px;}
.xcb_c00411{left:599.580000px;}
.x3e_c00411{left:601.500000px;}
.x2b_c00411{left:602.580000px;}
.xa7_c00411{left:606.000000px;}
.x35_c00411{left:609.000000px;}
.xd3_c00411{left:610.080000px;}
.xce_c00411{left:612.000000px;}
.x90_c00411{left:613.500000px;}
.xc3_c00411{left:614.580000px;}
.x60_c00411{left:616.080000px;}
.x89_c00411{left:617.580000px;}
.x73_c00411{left:619.920000px;}
.x2c_c00411{left:621.000000px;}
.x17_c00411{left:625.920000px;}
.xb8_c00411{left:627.000000px;}
.x23_c00411{left:629.580000px;}
.xe5_c00411{left:632.580000px;}
.xbd_c00411{left:634.500000px;}
.xc_c00411{left:635.580000px;}
.x85_c00411{left:637.500000px;}
.x6a_c00411{left:639.420000px;}
.xa8_c00411{left:641.580000px;}
.xff_c00411{left:643.920000px;}
.x61_c00411{left:646.920000px;}
.xb9_c00411{left:649.500000px;}
.x24_c00411{left:651.420000px;}
.x74_c00411{left:657.000000px;}
.x91_c00411{left:658.500000px;}
.x36_c00411{left:660.000000px;}
.x86_c00411{left:661.500000px;}
.xee_c00411{left:664.920000px;}
.xc4_c00411{left:666.000000px;}
.xdc_c00411{left:667.500000px;}
.x7b_c00411{left:669.000000px;}
.xc0_c00411{left:672.420000px;}
.xa9_c00411{left:673.500000px;}
.x3f_c00411{left:675.000000px;}
.xf8_c00411{left:676.080000px;}
.xcc_c00411{left:678.000000px;}
.xb4_c00411{left:679.080000px;}
.xba_c00411{left:681.000000px;}
.xd_c00411{left:682.920000px;}
.x75_c00411{left:686.580000px;}
.x53_c00411{left:688.500000px;}
.x9a_c00411{left:691.080000px;}
.x106_c00411{left:694.920000px;}
.x2d_c00411{left:696.420000px;}
.x40_c00411{left:699.000000px;}
.x49_c00411{left:700.500000px;}
.x25_c00411{left:703.500000px;}
.x18_c00411{left:705.420000px;}
.x54_c00411{left:708.420000px;}
.x7c_c00411{left:714.000000px;}
.xfc_c00411{left:715.500000px;}
.xd8_c00411{left:716.580000px;}
@media print{
.v0_c00411{vertical-align:0.000000pt;}
.ls0_c00411{letter-spacing:0.000000pt;}
.ws0_c00411{word-spacing:0.000000pt;}
.fs3_c00411{font-size:3.040000pt;}
.fs6_c00411{font-size:16.640000pt;}
.fs1_c00411{font-size:18.133333pt;}
.fs5_c00411{font-size:22.666667pt;}
.fs2_c00411{font-size:25.706667pt;}
.fs4_c00411{font-size:28.746667pt;}
.fs0_c00411{font-size:31.733333pt;}
.fs7_c00411{font-size:34.773333pt;}
.y0_c00411{bottom:0.000000pt;}
.yca_c00411{bottom:221.106667pt;}
.ycb_c00411{bottom:221.493333pt;}
.yc9_c00411{bottom:222.640000pt;}
.yc8_c00411{bottom:223.026667pt;}
.ycc_c00411{bottom:224.360000pt;}
.yc6_c00411{bottom:239.773333pt;}
.yc4_c00411{bottom:240.360000pt;}
.yc5_c00411{bottom:240.560000pt;}
.yc7_c00411{bottom:241.306667pt;}
.ybd_c00411{bottom:255.773333pt;}
.yc1_c00411{bottom:256.733333pt;}
.ybf_c00411{bottom:257.106667pt;}
.ybc_c00411{bottom:257.693333pt;}
.yc3_c00411{bottom:257.893333pt;}
.yc0_c00411{bottom:258.066667pt;}
.yc2_c00411{bottom:258.640000pt;}
.ybe_c00411{bottom:259.026667pt;}
.yba_c00411{bottom:274.440000pt;}
.yb9_c00411{bottom:275.400000pt;}
.ybb_c00411{bottom:275.973333pt;}
.yb8_c00411{bottom:276.360000pt;}
.yb6_c00411{bottom:291.773333pt;}
.yb4_c00411{bottom:293.693333pt;}
.yb7_c00411{bottom:293.893333pt;}
.yb5_c00411{bottom:294.640000pt;}
.yb2_c00411{bottom:309.106667pt;}
.yaf_c00411{bottom:311.026667pt;}
.yb0_c00411{bottom:311.226667pt;}
.yb3_c00411{bottom:311.973333pt;}
.yb1_c00411{bottom:312.360000pt;}
.yab_c00411{bottom:327.400000pt;}
.yad_c00411{bottom:328.360000pt;}
.yac_c00411{bottom:328.560000pt;}
.yae_c00411{bottom:329.306667pt;}
.ya8_c00411{bottom:343.026667pt;}
.ya9_c00411{bottom:345.106667pt;}
.ya5_c00411{bottom:345.693333pt;}
.yaa_c00411{bottom:345.893333pt;}
.ya7_c00411{bottom:346.066667pt;}
.ya6_c00411{bottom:347.026667pt;}
.ya3_c00411{bottom:362.440000pt;}
.ya4_c00411{bottom:363.973333pt;}
.ya2_c00411{bottom:364.360000pt;}
.ya0_c00411{bottom:377.693333pt;}
.y9f_c00411{bottom:379.026667pt;}
.y9b_c00411{bottom:379.400000pt;}
.y9e_c00411{bottom:379.773333pt;}
.ya1_c00411{bottom:380.560000pt;}
.y9c_c00411{bottom:381.693333pt;}
.y9d_c00411{bottom:381.893333pt;}
.y97_c00411{bottom:397.106667pt;}
.y9a_c00411{bottom:398.640000pt;}
.y98_c00411{bottom:399.026667pt;}
.y99_c00411{bottom:399.226667pt;}
.y95_c00411{bottom:414.066667pt;}
.y93_c00411{bottom:414.440000pt;}
.y96_c00411{bottom:415.226667pt;}
.y92_c00411{bottom:415.773333pt;}
.y90_c00411{bottom:416.360000pt;}
.y94_c00411{bottom:417.306667pt;}
.y91_c00411{bottom:417.693333pt;}
.y8d_c00411{bottom:431.773333pt;}
.y8c_c00411{bottom:433.106667pt;}
.y8f_c00411{bottom:433.693333pt;}
.y8e_c00411{bottom:434.640000pt;}
.y8b_c00411{bottom:435.026667pt;}
.y8a_c00411{bottom:449.106667pt;}
.y87_c00411{bottom:450.440000pt;}
.y88_c00411{bottom:451.226667pt;}
.y85_c00411{bottom:451.400000pt;}
.y89_c00411{bottom:451.973333pt;}
.y86_c00411{bottom:452.360000pt;}
.y84_c00411{bottom:467.773333pt;}
.y82_c00411{bottom:468.560000pt;}
.y81_c00411{bottom:469.306667pt;}
.y80_c00411{bottom:469.693333pt;}
.y83_c00411{bottom:470.640000pt;}
.y7d_c00411{bottom:485.106667pt;}
.y7c_c00411{bottom:485.893333pt;}
.y7b_c00411{bottom:486.066667pt;}
.y7e_c00411{bottom:487.026667pt;}
.y7f_c00411{bottom:487.973333pt;}
.y7a_c00411{bottom:502.440000pt;}
.y78_c00411{bottom:503.226667pt;}
.y79_c00411{bottom:504.360000pt;}
.y76_c00411{bottom:519.773333pt;}
.y75_c00411{bottom:521.693333pt;}
.y77_c00411{bottom:521.893333pt;}
.y73_c00411{bottom:537.106667pt;}
.y71_c00411{bottom:539.026667pt;}
.y74_c00411{bottom:539.226667pt;}
.y72_c00411{bottom:539.973333pt;}
.y6d_c00411{bottom:553.693333pt;}
.y70_c00411{bottom:555.773333pt;}
.y6c_c00411{bottom:556.360000pt;}
.y6e_c00411{bottom:557.306667pt;}
.y6f_c00411{bottom:557.693333pt;}
.y6b_c00411{bottom:571.773333pt;}
.y67_c00411{bottom:572.160000pt;}
.y69_c00411{bottom:573.106667pt;}
.y6a_c00411{bottom:573.893333pt;}
.y68_c00411{bottom:575.026667pt;}
.y64_c00411{bottom:590.440000pt;}
.y66_c00411{bottom:591.973333pt;}
.y65_c00411{bottom:592.360000pt;}
.y63_c00411{bottom:607.773333pt;}
.y61_c00411{bottom:608.733333pt;}
.y60_c00411{bottom:609.306667pt;}
.y62_c00411{bottom:609.693333pt;}
.y5f_c00411{bottom:623.026667pt;}
.y5c_c00411{bottom:625.106667pt;}
.y5e_c00411{bottom:626.640000pt;}
.y5b_c00411{bottom:627.026667pt;}
.y5d_c00411{bottom:627.973333pt;}
.y58_c00411{bottom:642.440000pt;}
.y57_c00411{bottom:644.360000pt;}
.y5a_c00411{bottom:644.560000pt;}
.y59_c00411{bottom:645.306667pt;}
.y56_c00411{bottom:659.773333pt;}
.y51_c00411{bottom:660.560000pt;}
.y55_c00411{bottom:661.106667pt;}
.y50_c00411{bottom:661.693333pt;}
.y54_c00411{bottom:662.066667pt;}
.y53_c00411{bottom:662.640000pt;}
.y52_c00411{bottom:663.026667pt;}
.y4f_c00411{bottom:677.106667pt;}
.y4b_c00411{bottom:678.066667pt;}
.y4c_c00411{bottom:678.440000pt;}
.y4d_c00411{bottom:679.026667pt;}
.y4e_c00411{bottom:680.360000pt;}
.y49_c00411{bottom:695.773333pt;}
.y4a_c00411{bottom:697.306667pt;}
.y48_c00411{bottom:697.693333pt;}
.y47_c00411{bottom:711.773333pt;}
.y45_c00411{bottom:713.106667pt;}
.y43_c00411{bottom:713.893333pt;}
.y44_c00411{bottom:714.640000pt;}
.y42_c00411{bottom:715.026667pt;}
.y46_c00411{bottom:715.973333pt;}
.y3f_c00411{bottom:730.440000pt;}
.y40_c00411{bottom:731.226667pt;}
.y41_c00411{bottom:731.973333pt;}
.y3d_c00411{bottom:732.360000pt;}
.y3e_c00411{bottom:733.306667pt;}
.y3b_c00411{bottom:748.733333pt;}
.y3a_c00411{bottom:749.693333pt;}
.y3c_c00411{bottom:749.893333pt;}
.y36_c00411{bottom:765.106667pt;}
.y38_c00411{bottom:766.440000pt;}
.y37_c00411{bottom:767.026667pt;}
.y39_c00411{bottom:767.226667pt;}
.y34_c00411{bottom:782.440000pt;}
.y33_c00411{bottom:784.360000pt;}
.y35_c00411{bottom:784.560000pt;}
.y32_c00411{bottom:785.306667pt;}
.y31_c00411{bottom:799.773333pt;}
.y30_c00411{bottom:801.693333pt;}
.y2f_c00411{bottom:801.893333pt;}
.y29_c00411{bottom:817.106667pt;}
.y2d_c00411{bottom:818.266667pt;}
.y2c_c00411{bottom:818.440000pt;}
.y2a_c00411{bottom:819.026667pt;}
.y2e_c00411{bottom:819.973333pt;}
.y2b_c00411{bottom:820.360000pt;}
.y26_c00411{bottom:835.773333pt;}
.y28_c00411{bottom:836.360000pt;}
.y27_c00411{bottom:837.306667pt;}
.y24_c00411{bottom:837.693333pt;}
.y25_c00411{bottom:837.706667pt;}
.y1d_c00411{bottom:851.973333pt;}
.y22_c00411{bottom:852.360000pt;}
.y1e_c00411{bottom:853.106667pt;}
.y23_c00411{bottom:853.893333pt;}
.y20_c00411{bottom:854.066667pt;}
.y21_c00411{bottom:855.026667pt;}
.y1f_c00411{bottom:855.973333pt;}
.y1c_c00411{bottom:868.360000pt;}
.y1a_c00411{bottom:869.306667pt;}
.y19_c00411{bottom:870.440000pt;}
.y1b_c00411{bottom:871.400000pt;}
.y18_c00411{bottom:872.360000pt;}
.y17_c00411{bottom:887.026667pt;}
.y14_c00411{bottom:887.773333pt;}
.y15_c00411{bottom:888.733333pt;}
.y16_c00411{bottom:889.693333pt;}
.yf_c00411{bottom:904.360000pt;}
.y13_c00411{bottom:904.733333pt;}
.y10_c00411{bottom:905.106667pt;}
.ye_c00411{bottom:906.066667pt;}
.y12_c00411{bottom:907.026667pt;}
.y11_c00411{bottom:907.973333pt;}
.yb_c00411{bottom:921.693333pt;}
.ya_c00411{bottom:922.440000pt;}
.y9_c00411{bottom:922.640000pt;}
.yc_c00411{bottom:923.400000pt;}
.yd_c00411{bottom:924.360000pt;}
.y3_c00411{bottom:939.026667pt;}
.y8_c00411{bottom:939.773333pt;}
.y6_c00411{bottom:940.733333pt;}
.y7_c00411{bottom:941.106667pt;}
.y5_c00411{bottom:941.693333pt;}
.y4_c00411{bottom:941.706667pt;}
.y2_c00411{bottom:975.600000pt;}
.y1_c00411{bottom:975.773333pt;}
.h4_c00411{height:3.739141pt;}
.h7_c00411{height:20.466875pt;}
.h2_c00411{height:22.303646pt;}
.h6_c00411{height:27.879557pt;}
.h3_c00411{height:31.618698pt;}
.h5_c00411{height:35.357839pt;}
.h1_c00411{height:39.031380pt;}
.h8_c00411{height:42.770521pt;}
.h0_c00411{height:1186.666667pt;}
.w0_c00411{width:782.666667pt;}
.x0_c00411{left:0.000000pt;}
.xb5_c00411{left:133.333333pt;}
.x1_c00411{left:134.666667pt;}
.x3_c00411{left:135.626667pt;}
.x19_c00411{left:136.760000pt;}
.x41_c00411{left:149.906667pt;}
.xa0_c00411{left:154.466667pt;}
.xdf_c00411{left:155.626667pt;}
.x62_c00411{left:159.626667pt;}
.x37_c00411{left:163.040000pt;}
.x92_c00411{left:165.333333pt;}
.x104_c00411{left:166.666667pt;}
.x107_c00411{left:168.000000pt;}
.xf9_c00411{left:169.706667pt;}
.xe6_c00411{left:170.666667pt;}
.xe_c00411{left:172.000000pt;}
.xc5_c00411{left:173.333333pt;}
.xdd_c00411{left:174.666667pt;}
.x93_c00411{left:176.000000pt;}
.x58_c00411{left:177.706667pt;}
.x7d_c00411{left:178.666667pt;}
.x4a_c00411{left:179.626667pt;}
.xeb_c00411{left:182.666667pt;}
.x4_c00411{left:184.000000pt;}
.xa1_c00411{left:184.960000pt;}
.xd9_c00411{left:187.040000pt;}
.x2e_c00411{left:188.373333pt;}
.x76_c00411{left:189.706667pt;}
.xbe_c00411{left:190.666667pt;}
.xc1_c00411{left:191.626667pt;}
.x108_c00411{left:194.293333pt;}
.xc6_c00411{left:196.000000pt;}
.x7e_c00411{left:197.333333pt;}
.x9b_c00411{left:198.293333pt;}
.x8a_c00411{left:199.800000pt;}
.x1a_c00411{left:200.960000pt;}
.x5_c00411{left:202.293333pt;}
.x38_c00411{left:203.626667pt;}
.x59_c00411{left:206.666667pt;}
.x42_c00411{left:210.666667pt;}
.x63_c00411{left:211.626667pt;}
.x55_c00411{left:216.373333pt;}
.x7f_c00411{left:217.706667pt;}
.xf_c00411{left:219.040000pt;}
.xf3_c00411{left:220.373333pt;}
.x94_c00411{left:221.333333pt;}
.xe7_c00411{left:225.333333pt;}
.x105_c00411{left:228.000000pt;}
.xec_c00411{left:228.960000pt;}
.x1b_c00411{left:231.040000pt;}
.x8b_c00411{left:232.960000pt;}
.x5a_c00411{left:239.040000pt;}
.x6b_c00411{left:240.000000pt;}
.xe8_c00411{left:241.333333pt;}
.x43_c00411{left:242.666667pt;}
.xf4_c00411{left:244.000000pt;}
.xed_c00411{left:245.706667pt;}
.x6_c00411{left:247.040000pt;}
.xe0_c00411{left:249.333333pt;}
.xc7_c00411{left:250.293333pt;}
.xbb_c00411{left:251.626667pt;}
.xad_c00411{left:255.626667pt;}
.x100_c00411{left:258.666667pt;}
.x26_c00411{left:261.133333pt;}
.xe1_c00411{left:262.093333pt;}
.x6c_c00411{left:264.373333pt;}
.x10_c00411{left:267.040000pt;}
.x5b_c00411{left:268.373333pt;}
.xbf_c00411{left:269.333333pt;}
.xbc_c00411{left:271.040000pt;}
.xef_c00411{left:272.000000pt;}
.x1c_c00411{left:274.293333pt;}
.xcf_c00411{left:275.626667pt;}
.xd4_c00411{left:277.333333pt;}
.x56_c00411{left:278.666667pt;}
.x39_c00411{left:283.426667pt;}
.x2f_c00411{left:285.333333pt;}
.x64_c00411{left:286.666667pt;}
.xa2_c00411{left:290.666667pt;}
.x5c_c00411{left:292.000000pt;}
.x1d_c00411{left:293.333333pt;}
.x27_c00411{left:294.666667pt;}
.x77_c00411{left:295.626667pt;}
.x44_c00411{left:299.040000pt;}
.x11_c00411{left:301.333333pt;}
.x7_c00411{left:303.040000pt;}
.xa3_c00411{left:304.960000pt;}
.x65_c00411{left:306.666667pt;}
.xae_c00411{left:308.960000pt;}
.xf5_c00411{left:311.040000pt;}
.xb6_c00411{left:313.133333pt;}
.xe2_c00411{left:314.293333pt;}
.x3a_c00411{left:315.626667pt;}
.x80_c00411{left:317.333333pt;}
.x8c_c00411{left:320.960000pt;}
.x95_c00411{left:322.666667pt;}
.x6d_c00411{left:324.000000pt;}
.x45_c00411{left:324.960000pt;}
.x57_c00411{left:326.666667pt;}
.xd0_c00411{left:328.000000pt;}
.xcd_c00411{left:330.666667pt;}
.xe3_c00411{left:331.626667pt;}
.x66_c00411{left:334.666667pt;}
.xaf_c00411{left:336.000000pt;}
.x1e_c00411{left:336.960000pt;}
.x81_c00411{left:340.000000pt;}
.x5d_c00411{left:341.333333pt;}
.x6e_c00411{left:344.960000pt;}
.x4b_c00411{left:347.040000pt;}
.xd1_c00411{left:348.373333pt;}
.xda_c00411{left:349.333333pt;}
.x9c_c00411{left:351.040000pt;}
.x109_c00411{left:352.000000pt;}
.x8_c00411{left:353.333333pt;}
.x78_c00411{left:355.040000pt;}
.x12_c00411{left:357.706667pt;}
.xe9_c00411{left:358.666667pt;}
.xb0_c00411{left:359.626667pt;}
.xfa_c00411{left:361.333333pt;}
.x2_c00411{left:362.666667pt;}
.x30_c00411{left:364.000000pt;}
.xc8_c00411{left:365.333333pt;}
.x28_c00411{left:368.000000pt;}
.xdb_c00411{left:370.293333pt;}
.x4c_c00411{left:374.293333pt;}
.x67_c00411{left:379.040000pt;}
.x1f_c00411{left:380.000000pt;}
.x6f_c00411{left:381.333333pt;}
.x87_c00411{left:382.666667pt;}
.x96_c00411{left:384.000000pt;}
.x103_c00411{left:384.960000pt;}
.x5e_c00411{left:386.666667pt;}
.x46_c00411{left:388.000000pt;}
.x9_c00411{left:390.666667pt;}
.x31_c00411{left:391.626667pt;}
.x8d_c00411{left:393.333333pt;}
.xfd_c00411{left:394.666667pt;}
.xfb_c00411{left:397.333333pt;}
.x97_c00411{left:400.000000pt;}
.x4d_c00411{left:401.333333pt;}
.x82_c00411{left:402.666667pt;}
.x88_c00411{left:405.706667pt;}
.x13_c00411{left:407.426667pt;}
.x3b_c00411{left:408.960000pt;}
.xaa_c00411{left:410.666667pt;}
.x8e_c00411{left:411.626667pt;}
.x5f_c00411{left:413.333333pt;}
.x70_c00411{left:415.040000pt;}
.xf6_c00411{left:416.000000pt;}
.xc2_c00411{left:418.666667pt;}
.x20_c00411{left:421.333333pt;}
.x4e_c00411{left:423.040000pt;}
.x3c_c00411{left:424.000000pt;}
.xea_c00411{left:425.333333pt;}
.xb1_c00411{left:426.666667pt;}
.xd5_c00411{left:428.000000pt;}
.x79_c00411{left:428.960000pt;}
.xa4_c00411{left:430.666667pt;}
.xf7_c00411{left:433.706667pt;}
.xab_c00411{left:434.666667pt;}
.xd2_c00411{left:436.000000pt;}
.x83_c00411{left:437.706667pt;}
.xc9_c00411{left:440.000000pt;}
.x14_c00411{left:441.706667pt;}
.xe4_c00411{left:442.666667pt;}
.x32_c00411{left:444.373333pt;}
.x4f_c00411{left:445.706667pt;}
.x71_c00411{left:447.240000pt;}
.x29_c00411{left:450.093333pt;}
.x21_c00411{left:451.040000pt;}
.xd6_c00411{left:452.000000pt;}
.x98_c00411{left:453.333333pt;}
.xf0_c00411{left:454.666667pt;}
.x101_c00411{left:457.333333pt;}
.x9d_c00411{left:458.666667pt;}
.x3d_c00411{left:460.000000pt;}
.x8f_c00411{left:462.466667pt;}
.x84_c00411{left:464.000000pt;}
.xb7_c00411{left:465.333333pt;}
.xb2_c00411{left:466.666667pt;}
.x47_c00411{left:469.333333pt;}
.x102_c00411{left:470.666667pt;}
.x50_c00411{left:473.706667pt;}
.xfe_c00411{left:476.000000pt;}
.xa_c00411{left:477.706667pt;}
.xd7_c00411{left:478.666667pt;}
.x99_c00411{left:480.000000pt;}
.x68_c00411{left:481.333333pt;}
.x2a_c00411{left:483.626667pt;}
.x15_c00411{left:484.960000pt;}
.x33_c00411{left:486.293333pt;}
.x9e_c00411{left:488.373333pt;}
.xa5_c00411{left:489.706667pt;}
.x72_c00411{left:499.040000pt;}
.x16_c00411{left:501.706667pt;}
.x34_c00411{left:502.666667pt;}
.x51_c00411{left:504.373333pt;}
.xca_c00411{left:505.333333pt;}
.x22_c00411{left:506.293333pt;}
.xde_c00411{left:511.040000pt;}
.xa6_c00411{left:513.333333pt;}
.x48_c00411{left:514.666667pt;}
.xf1_c00411{left:516.000000pt;}
.xb3_c00411{left:517.706667pt;}
.x9f_c00411{left:520.000000pt;}
.xac_c00411{left:523.040000pt;}
.x69_c00411{left:524.000000pt;}
.x52_c00411{left:526.666667pt;}
.xb_c00411{left:528.000000pt;}
.x7a_c00411{left:529.333333pt;}
.xf2_c00411{left:530.666667pt;}
.xcb_c00411{left:532.960000pt;}
.x3e_c00411{left:534.666667pt;}
.x2b_c00411{left:535.626667pt;}
.xa7_c00411{left:538.666667pt;}
.x35_c00411{left:541.333333pt;}
.xd3_c00411{left:542.293333pt;}
.xce_c00411{left:544.000000pt;}
.x90_c00411{left:545.333333pt;}
.xc3_c00411{left:546.293333pt;}
.x60_c00411{left:547.626667pt;}
.x89_c00411{left:548.960000pt;}
.x73_c00411{left:551.040000pt;}
.x2c_c00411{left:552.000000pt;}
.x17_c00411{left:556.373333pt;}
.xb8_c00411{left:557.333333pt;}
.x23_c00411{left:559.626667pt;}
.xe5_c00411{left:562.293333pt;}
.xbd_c00411{left:564.000000pt;}
.xc_c00411{left:564.960000pt;}
.x85_c00411{left:566.666667pt;}
.x6a_c00411{left:568.373333pt;}
.xa8_c00411{left:570.293333pt;}
.xff_c00411{left:572.373333pt;}
.x61_c00411{left:575.040000pt;}
.xb9_c00411{left:577.333333pt;}
.x24_c00411{left:579.040000pt;}
.x74_c00411{left:584.000000pt;}
.x91_c00411{left:585.333333pt;}
.x36_c00411{left:586.666667pt;}
.x86_c00411{left:588.000000pt;}
.xee_c00411{left:591.040000pt;}
.xc4_c00411{left:592.000000pt;}
.xdc_c00411{left:593.333333pt;}
.x7b_c00411{left:594.666667pt;}
.xc0_c00411{left:597.706667pt;}
.xa9_c00411{left:598.666667pt;}
.x3f_c00411{left:600.000000pt;}
.xf8_c00411{left:600.960000pt;}
.xcc_c00411{left:602.666667pt;}
.xb4_c00411{left:603.626667pt;}
.xba_c00411{left:605.333333pt;}
.xd_c00411{left:607.040000pt;}
.x75_c00411{left:610.293333pt;}
.x53_c00411{left:612.000000pt;}
.x9a_c00411{left:614.293333pt;}
.x106_c00411{left:617.706667pt;}
.x2d_c00411{left:619.040000pt;}
.x40_c00411{left:621.333333pt;}
.x49_c00411{left:622.666667pt;}
.x25_c00411{left:625.333333pt;}
.x18_c00411{left:627.040000pt;}
.x54_c00411{left:629.706667pt;}
.x7c_c00411{left:634.666667pt;}
.xfc_c00411{left:636.000000pt;}
.xd8_c00411{left:636.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_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_9c6e4b871a703a78bd32e898.woff2')format("woff");}.ff1_c00412{font-family:ff1_c00412;line-height:1.688965;font-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_c00412{transform:matrix(0.282353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282353,0.000000,0.000000,0.250000,0,0);}
.mc0_c00412{transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);}
.m49_c00412{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.md3_c00412{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m26_c00412{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m1c_c00412{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.mb_c00412{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m0_c00412{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m5e_c00412{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.ma9_c00412{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m16_c00412{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.maa_c00412{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.mda_c00412{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m8c_c00412{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m3d_c00412{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mcd_c00412{transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);}
.m63_c00412{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m92_c00412{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m45_c00412{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m44_c00412{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m48_c00412{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m6c_c00412{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m87_c00412{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m75_c00412{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m88_c00412{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.mb8_c00412{transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);}
.mce_c00412{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m22_c00412{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m5c_c00412{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.mad_c00412{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m81_c00412{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m58_c00412{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mcb_c00412{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.me_c00412{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m76_c00412{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m20_c00412{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m38_c00412{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m14_c00412{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.md1_c00412{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mb0_c00412{transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);}
.m35_c00412{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.mca_c00412{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m1b_c00412{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.mb4_c00412{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m4e_c00412{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.mab_c00412{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.m2e_c00412{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mb5_c00412{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.me1_c00412{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m52_c00412{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m60_c00412{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m31_c00412{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m8d_c00412{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m2b_c00412{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mb2_c00412{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.m8e_c00412{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.mdc_c00412{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m1a_c00412{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.mc3_c00412{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m6e_c00412{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m15_c00412{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m32_c00412{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m5_c00412{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mc9_c00412{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.me4_c00412{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m11_c00412{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m2f_c00412{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m67_c00412{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.md6_c00412{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.md2_c00412{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.mbd_c00412{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m34_c00412{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m24_c00412{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mc7_c00412{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m70_c00412{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mac_c00412{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.mb1_c00412{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mbe_c00412{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.m8f_c00412{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m89_c00412{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.mc8_c00412{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m5a_c00412{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m3c_c00412{transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);}
.m25_c00412{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m46_c00412{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.m97_c00412{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.ma0_c00412{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m71_c00412{transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);}
.me3_c00412{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.ma2_c00412{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mb9_c00412{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.m72_c00412{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m4f_c00412{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m12_c00412{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m21_c00412{transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);}
.mcc_c00412{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m98_c00412{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00412{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m37_c00412{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.ma4_c00412{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m27_c00412{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m41_c00412{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.ma6_c00412{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m86_c00412{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m42_c00412{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m78_c00412{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m6_c00412{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m4c_c00412{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m8_c00412{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m9e_c00412{transform:matrix(0.493506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493506,0.000000,0.000000,0.250000,0,0);}
.m50_c00412{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m29_c00412{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m18_c00412{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);}
.me5_c00412{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m43_c00412{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m40_c00412{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m74_c00412{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m36_c00412{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mba_c00412{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);}
.m64_c00412{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.md7_c00412{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m79_c00412{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m5f_c00412{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m85_c00412{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m73_c00412{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m9c_c00412{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m28_c00412{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m10_c00412{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m3b_c00412{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.mf_c00412{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m2_c00412{transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);}
.m3f_c00412{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.me0_c00412{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.mdf_c00412{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m9_c00412{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mae_c00412{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);}
.m9f_c00412{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m19_c00412{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m6d_c00412{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.md8_c00412{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.ma_c00412{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m1e_c00412{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m7f_c00412{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m7a_c00412{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m4a_c00412{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m59_c00412{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m7e_c00412{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m39_c00412{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mde_c00412{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m62_c00412{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m57_c00412{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m80_c00412{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m7b_c00412{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m7d_c00412{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mcf_c00412{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m51_c00412{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m96_c00412{transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);}
.m30_c00412{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.md_c00412{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mb7_c00412{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.mb6_c00412{transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);}
.mbf_c00412{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m4d_c00412{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.md5_c00412{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m3_c00412{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m94_c00412{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m9d_c00412{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m33_c00412{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mc6_c00412{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m91_c00412{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m68_c00412{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m56_c00412{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m1f_c00412{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m8b_c00412{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m69_c00412{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.m13_c00412{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m47_c00412{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m93_c00412{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.me2_c00412{transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);}
.m4b_c00412{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mc2_c00412{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m8a_c00412{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m9a_c00412{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m84_c00412{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m99_c00412{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mbb_c00412{transform:matrix(0.580147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580147,0.000000,0.000000,0.250000,0,0);}
.m82_c00412{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mb3_c00412{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m5b_c00412{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.ma7_c00412{transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);}
.m53_c00412{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m95_c00412{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m6f_c00412{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m7c_c00412{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m6a_c00412{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.md9_c00412{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);}
.ma5_c00412{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m54_c00412{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m2a_c00412{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m2d_c00412{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mc5_c00412{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.m65_c00412{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.ma1_c00412{transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);}
.m1_c00412{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_c00412{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_c00412{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.m2c_c00412{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m66_c00412{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.ma8_c00412{transform:matrix(0.645882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645882,0.000000,0.000000,0.250000,0,0);}
.m83_c00412{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m17_c00412{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m77_c00412{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.ma3_c00412{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.mc_c00412{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.mc1_c00412{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.m6b_c00412{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mdd_c00412{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.mdb_c00412{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m4_c00412{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m1d_c00412{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m9b_c00412{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.md0_c00412{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m7_c00412{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m55_c00412{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m5d_c00412{transform:matrix(0.772436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772436,0.000000,0.000000,0.250000,0,0);}
.m23_c00412{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m90_c00412{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.maf_c00412{transform:matrix(0.916912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.916912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.916912,0.000000,0.000000,0.250000,0,0);}
.md4_c00412{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.mc4_c00412{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00412{vertical-align:0.000000px;}
.v1_c00412{vertical-align:6.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:-4.573186px;}
.ws1_c00412{word-spacing:-2.452711px;}
.ws2_c00412{word-spacing:0.000000px;}
.fc0_c00412{color:transparent;}
.fs6_c00412{font-size:3.420000px;}
.fs2_c00412{font-size:18.720000px;}
.fs1_c00412{font-size:20.400000px;}
.fs4_c00412{font-size:25.500000px;}
.fs3_c00412{font-size:28.920000px;}
.fs5_c00412{font-size:32.340000px;}
.fs0_c00412{font-size:35.700000px;}
.y0_c00412{bottom:0.000000px;}
.y3_c00412{bottom:222.630000px;}
.yb9_c00412{bottom:249.825000px;}
.yba_c00412{bottom:250.245000px;}
.ybd_c00412{bottom:250.905000px;}
.ybc_c00412{bottom:251.130000px;}
.ybe_c00412{bottom:251.970000px;}
.ybb_c00412{bottom:252.405000px;}
.yb6_c00412{bottom:269.745000px;}
.yb4_c00412{bottom:271.905000px;}
.yb5_c00412{bottom:271.920000px;}
.yb7_c00412{bottom:272.130000px;}
.yb8_c00412{bottom:273.405000px;}
.yb2_c00412{bottom:290.130000px;}
.yb3_c00412{bottom:291.405000px;}
.yb0_c00412{bottom:308.745000px;}
.yae_c00412{bottom:310.905000px;}
.yb1_c00412{bottom:311.130000px;}
.yaf_c00412{bottom:311.970000px;}
.yad_c00412{bottom:329.745000px;}
.ya8_c00412{bottom:330.405000px;}
.yac_c00412{bottom:330.825000px;}
.yab_c00412{bottom:331.470000px;}
.yaa_c00412{bottom:331.905000px;}
.ya9_c00412{bottom:331.920000px;}
.ya7_c00412{bottom:349.905000px;}
.ya3_c00412{bottom:368.745000px;}
.ya0_c00412{bottom:369.405000px;}
.ya1_c00412{bottom:369.630000px;}
.ya6_c00412{bottom:369.825000px;}
.ya4_c00412{bottom:370.905000px;}
.ya2_c00412{bottom:370.920000px;}
.ya5_c00412{bottom:371.970000px;}
.y9e_c00412{bottom:385.905000px;}
.y9d_c00412{bottom:387.825000px;}
.y9f_c00412{bottom:388.245000px;}
.y9c_c00412{bottom:405.825000px;}
.y99_c00412{bottom:407.745000px;}
.y9b_c00412{bottom:408.825000px;}
.y9a_c00412{bottom:409.920000px;}
.y96_c00412{bottom:427.245000px;}
.y98_c00412{bottom:429.405000px;}
.y97_c00412{bottom:429.420000px;}
.y93_c00412{bottom:453.825000px;}
.y92_c00412{bottom:454.905000px;}
.y94_c00412{bottom:455.130000px;}
.y91_c00412{bottom:455.550000px;}
.y90_c00412{bottom:455.970000px;}
.y95_c00412{bottom:457.050000px;}
.y8b_c00412{bottom:476.325000px;}
.y8d_c00412{bottom:476.970000px;}
.y8f_c00412{bottom:477.405000px;}
.y8e_c00412{bottom:477.825000px;}
.y8c_c00412{bottom:478.050000px;}
.y85_c00412{bottom:491.325000px;}
.y86_c00412{bottom:491.550000px;}
.y89_c00412{bottom:491.970000px;}
.y84_c00412{bottom:492.405000px;}
.y88_c00412{bottom:492.825000px;}
.y8a_c00412{bottom:494.130000px;}
.y87_c00412{bottom:496.050000px;}
.y83_c00412{bottom:518.745000px;}
.y82_c00412{bottom:519.825000px;}
.y81_c00412{bottom:520.470000px;}
.y80_c00412{bottom:520.905000px;}
.y7d_c00412{bottom:565.245000px;}
.y7e_c00412{bottom:566.130000px;}
.y7f_c00412{bottom:566.325000px;}
.y7b_c00412{bottom:566.970000px;}
.y7c_c00412{bottom:567.405000px;}
.y76_c00412{bottom:582.405000px;}
.y7a_c00412{bottom:584.745000px;}
.y79_c00412{bottom:585.825000px;}
.y78_c00412{bottom:586.470000px;}
.y77_c00412{bottom:586.905000px;}
.y73_c00412{bottom:603.405000px;}
.y71_c00412{bottom:604.245000px;}
.y6f_c00412{bottom:605.130000px;}
.y72_c00412{bottom:605.325000px;}
.y70_c00412{bottom:606.405000px;}
.y75_c00412{bottom:606.630000px;}
.y74_c00412{bottom:607.905000px;}
.y6d_c00412{bottom:625.245000px;}
.y6b_c00412{bottom:625.905000px;}
.y6c_c00412{bottom:626.325000px;}
.y6a_c00412{bottom:626.970000px;}
.y6e_c00412{bottom:627.405000px;}
.y64_c00412{bottom:643.245000px;}
.y63_c00412{bottom:644.325000px;}
.y68_c00412{bottom:644.745000px;}
.y65_c00412{bottom:645.405000px;}
.y66_c00412{bottom:645.630000px;}
.y67_c00412{bottom:646.905000px;}
.y69_c00412{bottom:647.970000px;}
.y5f_c00412{bottom:663.825000px;}
.y60_c00412{bottom:664.245000px;}
.y5e_c00412{bottom:664.905000px;}
.y62_c00412{bottom:665.325000px;}
.y61_c00412{bottom:666.405000px;}
.y5b_c00412{bottom:683.745000px;}
.y5c_c00412{bottom:683.970000px;}
.y5a_c00412{bottom:685.905000px;}
.y5d_c00412{bottom:686.130000px;}
.y59_c00412{bottom:705.405000px;}
.y54_c00412{bottom:721.905000px;}
.y57_c00412{bottom:724.245000px;}
.y53_c00412{bottom:724.905000px;}
.y55_c00412{bottom:725.130000px;}
.y58_c00412{bottom:725.970000px;}
.y56_c00412{bottom:726.405000px;}
.y4e_c00412{bottom:741.405000px;}
.y4d_c00412{bottom:742.245000px;}
.y4f_c00412{bottom:743.745000px;}
.y4c_c00412{bottom:744.405000px;}
.y50_c00412{bottom:744.630000px;}
.y51_c00412{bottom:745.470000px;}
.y52_c00412{bottom:745.905000px;}
.y48_c00412{bottom:763.245000px;}
.y47_c00412{bottom:763.905000px;}
.y4a_c00412{bottom:764.130000px;}
.y49_c00412{bottom:764.325000px;}
.y4b_c00412{bottom:765.405000px;}
.y42_c00412{bottom:780.825000px;}
.y44_c00412{bottom:781.470000px;}
.y45_c00412{bottom:782.745000px;}
.y43_c00412{bottom:784.905000px;}
.y46_c00412{bottom:785.130000px;}
.y3d_c00412{bottom:800.745000px;}
.y41_c00412{bottom:800.970000px;}
.y3f_c00412{bottom:801.405000px;}
.y3e_c00412{bottom:802.245000px;}
.y3b_c00412{bottom:803.970000px;}
.y3c_c00412{bottom:804.405000px;}
.y40_c00412{bottom:804.630000px;}
.y3a_c00412{bottom:821.325000px;}
.y37_c00412{bottom:821.745000px;}
.y39_c00412{bottom:822.630000px;}
.y36_c00412{bottom:823.905000px;}
.y38_c00412{bottom:824.970000px;}
.y35_c00412{bottom:841.245000px;}
.y2e_c00412{bottom:859.905000px;}
.y30_c00412{bottom:860.745000px;}
.y33_c00412{bottom:860.970000px;}
.y2d_c00412{bottom:861.825000px;}
.y32_c00412{bottom:862.245000px;}
.y2f_c00412{bottom:862.905000px;}
.y34_c00412{bottom:863.130000px;}
.y31_c00412{bottom:864.405000px;}
.y29_c00412{bottom:880.245000px;}
.y2c_c00412{bottom:881.745000px;}
.y2a_c00412{bottom:882.405000px;}
.y2b_c00412{bottom:883.905000px;}
.y28_c00412{bottom:899.745000px;}
.y23_c00412{bottom:919.245000px;}
.y27_c00412{bottom:920.745000px;}
.y24_c00412{bottom:921.405000px;}
.y26_c00412{bottom:921.630000px;}
.y25_c00412{bottom:922.905000px;}
.y21_c00412{bottom:939.825000px;}
.y22_c00412{bottom:940.245000px;}
.y20_c00412{bottom:942.405000px;}
.y1d_c00412{bottom:959.745000px;}
.y1f_c00412{bottom:960.825000px;}
.y1c_c00412{bottom:961.905000px;}
.y1e_c00412{bottom:962.130000px;}
.y19_c00412{bottom:979.245000px;}
.y1a_c00412{bottom:981.405000px;}
.y1b_c00412{bottom:981.630000px;}
.y16_c00412{bottom:998.325000px;}
.y13_c00412{bottom:998.745000px;}
.y18_c00412{bottom:998.970000px;}
.y14_c00412{bottom:999.630000px;}
.y15_c00412{bottom:1000.905000px;}
.y17_c00412{bottom:1001.970000px;}
.y11_c00412{bottom:1017.405000px;}
.ye_c00412{bottom:1018.245000px;}
.y12_c00412{bottom:1019.745000px;}
.yf_c00412{bottom:1020.405000px;}
.y10_c00412{bottom:1021.470000px;}
.yb_c00412{bottom:1039.245000px;}
.ya_c00412{bottom:1039.905000px;}
.yd_c00412{bottom:1040.130000px;}
.yc_c00412{bottom:1041.405000px;}
.y6_c00412{bottom:1057.245000px;}
.y8_c00412{bottom:1058.745000px;}
.y4_c00412{bottom:1059.405000px;}
.y5_c00412{bottom:1059.630000px;}
.y7_c00412{bottom:1060.905000px;}
.y9_c00412{bottom:1061.970000px;}
.y1_c00412{bottom:1097.745000px;}
.y2_c00412{bottom:1099.050000px;}
.h8_c00412{height:4.206533px;}
.h3_c00412{height:23.025234px;}
.h2_c00412{height:25.091602px;}
.h5_c00412{height:31.364502px;}
.h4_c00412{height:35.571035px;}
.h7_c00412{height:37.364502px;}
.h6_c00412{height:39.777568px;}
.h1_c00412{height:43.910303px;}
.h0_c00412{height:1335.000000px;}
.w0_c00412{width:880.500000px;}
.x0_c00412{left:0.000000px;}
.xb2_c00412{left:151.500000px;}
.x1d_c00412{left:153.000000px;}
.x4_c00412{left:154.500000px;}
.xad_c00412{left:165.420000px;}
.xcd_c00412{left:166.920000px;}
.xcf_c00412{left:168.000000px;}
.x57_c00412{left:169.500000px;}
.xb9_c00412{left:175.500000px;}
.x9e_c00412{left:180.000000px;}
.x71_c00412{left:192.000000px;}
.x46_c00412{left:197.580000px;}
.x69_c00412{left:199.920000px;}
.x5_c00412{left:202.500000px;}
.x3c_c00412{left:207.000000px;}
.x2b_c00412{left:208.500000px;}
.xe2_c00412{left:210.000000px;}
.x56_c00412{left:211.275000px;}
.xa7_c00412{left:212.580000px;}
.x1e_c00412{left:214.080000px;}
.x62_c00412{left:217.920000px;}
.xa3_c00412{left:223.500000px;}
.xe6_c00412{left:225.000000px;}
.x6_c00412{left:226.920000px;}
.x72_c00412{left:229.500000px;}
.x1f_c00412{left:234.000000px;}
.x9f_c00412{left:235.500000px;}
.x83_c00412{left:237.000000px;}
.x58_c00412{left:238.080000px;}
.xdd_c00412{left:239.580000px;}
.xb3_c00412{left:241.080000px;}
.xba_c00412{left:243.420000px;}
.x2c_c00412{left:249.000000px;}
.xd6_c00412{left:250.500000px;}
.x73_c00412{left:252.000000px;}
.x59_c00412{left:253.500000px;}
.x7b_c00412{left:255.420000px;}
.x63_c00412{left:256.920000px;}
.xd0_c00412{left:258.000000px;}
.x12_c00412{left:259.920000px;}
.x8a_c00412{left:261.420000px;}
.x3d_c00412{left:265.080000px;}
.x92_c00412{left:267.000000px;}
.xca_c00412{left:268.080000px;}
.x6a_c00412{left:271.500000px;}
.xae_c00412{left:276.420000px;}
.xbb_c00412{left:277.920000px;}
.xd1_c00412{left:279.000000px;}
.xdb_c00412{left:280.080000px;}
.x4f_c00412{left:282.000000px;}
.x98_c00412{left:283.500000px;}
.x3e_c00412{left:285.000000px;}
.xce_c00412{left:288.000000px;}
.x93_c00412{left:289.080000px;}
.x5a_c00412{left:290.580000px;}
.x64_c00412{left:292.920000px;}
.xe7_c00412{left:294.000000px;}
.x7_c00412{left:295.500000px;}
.x34_c00412{left:298.080000px;}
.x8b_c00412{left:299.775000px;}
.xd7_c00412{left:301.500000px;}
.x99_c00412{left:302.580000px;}
.xc1_c00412{left:306.000000px;}
.x20_c00412{left:307.275000px;}
.xaf_c00412{left:313.080000px;}
.x13_c00412{left:315.000000px;}
.x50_c00412{left:316.080000px;}
.xde_c00412{left:321.000000px;}
.x35_c00412{left:322.500000px;}
.x8_c00412{left:325.500000px;}
.x94_c00412{left:327.000000px;}
.x47_c00412{left:328.500000px;}
.x9a_c00412{left:329.775000px;}
.x2d_c00412{left:331.920000px;}
.xcb_c00412{left:333.420000px;}
.xa4_c00412{left:334.500000px;}
.x74_c00412{left:337.500000px;}
.xdc_c00412{left:338.580000px;}
.x5b_c00412{left:340.275000px;}
.x14_c00412{left:341.580000px;}
.xd2_c00412{left:346.275000px;}
.x21_c00412{left:348.000000px;}
.x6b_c00412{left:349.500000px;}
.xd8_c00412{left:351.000000px;}
.x3f_c00412{left:353.775000px;}
.xa8_c00412{left:355.080000px;}
.x2e_c00412{left:357.000000px;}
.xa5_c00412{left:359.580000px;}
.x9_c00412{left:361.080000px;}
.x5c_c00412{left:363.000000px;}
.x8c_c00412{left:367.920000px;}
.x22_c00412{left:370.920000px;}
.xe8_c00412{left:372.000000px;}
.x75_c00412{left:374.580000px;}
.xc7_c00412{left:377.355000px;}
.xc2_c00412{left:378.420000px;}
.x7c_c00412{left:380.580000px;}
.xbc_c00412{left:385.920000px;}
.x48_c00412{left:387.000000px;}
.xd3_c00412{left:388.500000px;}
.x40_c00412{left:391.500000px;}
.xe3_c00412{left:396.000000px;}
.x15_c00412{left:397.080000px;}
.x9b_c00412{left:399.000000px;}
.xa_c00412{left:400.500000px;}
.x23_c00412{left:402.000000px;}
.x51_c00412{left:408.000000px;}
.x2_c00412{left:409.500000px;}
.xe9_c00412{left:411.420000px;}
.x2f_c00412{left:412.500000px;}
.x84_c00412{left:415.920000px;}
.xa0_c00412{left:420.000000px;}
.x76_c00412{left:424.275000px;}
.xd4_c00412{left:426.000000px;}
.x52_c00412{left:427.920000px;}
.xa9_c00412{left:430.275000px;}
.x5d_c00412{left:433.920000px;}
.x24_c00412{left:437.580000px;}
.xc8_c00412{left:441.000000px;}
.xbd_c00412{left:442.080000px;}
.xd9_c00412{left:445.500000px;}
.x8d_c00412{left:447.000000px;}
.x95_c00412{left:448.080000px;}
.x36_c00412{left:450.000000px;}
.xb_c00412{left:453.420000px;}
.x53_c00412{left:454.920000px;}
.x6c_c00412{left:457.920000px;}
.xbe_c00412{left:459.000000px;}
.x30_c00412{left:462.000000px;}
.xdf_c00412{left:463.500000px;}
.x9c_c00412{left:465.000000px;}
.x5e_c00412{left:466.920000px;}
.x49_c00412{left:468.420000px;}
.x25_c00412{left:471.420000px;}
.x7d_c00412{left:472.920000px;}
.xb4_c00412{left:474.000000px;}
.xd5_c00412{left:475.275000px;}
.xa1_c00412{left:477.420000px;}
.xc_c00412{left:478.920000px;}
.x16_c00412{left:480.000000px;}
.x65_c00412{left:481.920000px;}
.x6d_c00412{left:483.000000px;}
.xc9_c00412{left:486.000000px;}
.xe4_c00412{left:487.500000px;}
.x85_c00412{left:489.000000px;}
.x77_c00412{left:490.920000px;}
.xbf_c00412{left:493.080000px;}
.xaa_c00412{left:495.000000px;}
.x41_c00412{left:496.920000px;}
.x4a_c00412{left:499.920000px;}
.xc3_c00412{left:501.420000px;}
.x17_c00412{left:505.500000px;}
.xd_c00412{left:507.000000px;}
.x7e_c00412{left:508.500000px;}
.xb0_c00412{left:509.580000px;}
.xcc_c00412{left:510.855000px;}
.xda_c00412{left:514.080000px;}
.x26_c00412{left:517.500000px;}
.x5f_c00412{left:521.580000px;}
.x54_c00412{left:524.580000px;}
.x7f_c00412{left:526.500000px;}
.xea_c00412{left:528.000000px;}
.xe0_c00412{left:529.500000px;}
.x78_c00412{left:533.580000px;}
.x18_c00412{left:535.500000px;}
.x6e_c00412{left:538.500000px;}
.x37_c00412{left:539.580000px;}
.x86_c00412{left:541.500000px;}
.x55_c00412{left:544.080000px;}
.x31_c00412{left:545.580000px;}
.x66_c00412{left:547.500000px;}
.xc4_c00412{left:549.000000px;}
.xb1_c00412{left:552.420000px;}
.x8e_c00412{left:553.920000px;}
.x96_c00412{left:555.000000px;}
.x19_c00412{left:556.920000px;}
.xc5_c00412{left:559.080000px;}
.xb5_c00412{left:562.500000px;}
.x87_c00412{left:564.000000px;}
.xe_c00412{left:565.500000px;}
.xc0_c00412{left:566.775000px;}
.x4b_c00412{left:571.080000px;}
.x38_c00412{left:573.420000px;}
.x9d_c00412{left:576.420000px;}
.xe5_c00412{left:577.500000px;}
.xf_c00412{left:579.000000px;}
.xeb_c00412{left:585.420000px;}
.x1a_c00412{left:586.920000px;}
.x42_c00412{left:588.420000px;}
.x6f_c00412{left:589.500000px;}
.x80_c00412{left:591.000000px;}
.x4c_c00412{left:593.580000px;}
.x27_c00412{left:598.920000px;}
.x8f_c00412{left:600.000000px;}
.x79_c00412{left:604.920000px;}
.x60_c00412{left:609.000000px;}
.x39_c00412{left:611.580000px;}
.x43_c00412{left:613.500000px;}
.x81_c00412{left:615.000000px;}
.x70_c00412{left:616.080000px;}
.x67_c00412{left:618.000000px;}
.x88_c00412{left:626.580000px;}
.x28_c00412{left:628.920000px;}
.x90_c00412{left:630.000000px;}
.xb6_c00412{left:636.000000px;}
.x10_c00412{left:639.420000px;}
.x32_c00412{left:643.080000px;}
.xab_c00412{left:645.420000px;}
.xc6_c00412{left:651.420000px;}
.x4d_c00412{left:652.500000px;}
.x44_c00412{left:653.580000px;}
.xa6_c00412{left:655.500000px;}
.x1b_c00412{left:658.080000px;}
.xb7_c00412{left:659.580000px;}
.x3a_c00412{left:663.420000px;}
.x61_c00412{left:666.420000px;}
.x11_c00412{left:669.000000px;}
.xe1_c00412{left:670.500000px;}
.x7a_c00412{left:672.420000px;}
.x82_c00412{left:675.000000px;}
.x97_c00412{left:676.500000px;}
.x89_c00412{left:678.000000px;}
.x1c_c00412{left:679.080000px;}
.x29_c00412{left:688.080000px;}
.x91_c00412{left:689.580000px;}
.x33_c00412{left:691.500000px;}
.x3b_c00412{left:694.500000px;}
.xb8_c00412{left:700.080000px;}
.xac_c00412{left:704.580000px;}
.x45_c00412{left:706.500000px;}
.x1_c00412{left:708.000000px;}
.x2a_c00412{left:709.920000px;}
.xa2_c00412{left:714.000000px;}
.x4e_c00412{left:715.080000px;}
.x68_c00412{left:717.000000px;}
.x3_c00412{left:718.500000px;}
@media print{
.v0_c00412{vertical-align:0.000000pt;}
.v1_c00412{vertical-align:5.333333pt;}
.ls0_c00412{letter-spacing:0.000000pt;}
.ws0_c00412{word-spacing:-4.065054pt;}
.ws1_c00412{word-spacing:-2.180187pt;}
.ws2_c00412{word-spacing:0.000000pt;}
.fs6_c00412{font-size:3.040000pt;}
.fs2_c00412{font-size:16.640000pt;}
.fs1_c00412{font-size:18.133333pt;}
.fs4_c00412{font-size:22.666667pt;}
.fs3_c00412{font-size:25.706667pt;}
.fs5_c00412{font-size:28.746667pt;}
.fs0_c00412{font-size:31.733333pt;}
.y0_c00412{bottom:0.000000pt;}
.y3_c00412{bottom:197.893333pt;}
.yb9_c00412{bottom:222.066667pt;}
.yba_c00412{bottom:222.440000pt;}
.ybd_c00412{bottom:223.026667pt;}
.ybc_c00412{bottom:223.226667pt;}
.ybe_c00412{bottom:223.973333pt;}
.ybb_c00412{bottom:224.360000pt;}
.yb6_c00412{bottom:239.773333pt;}
.yb4_c00412{bottom:241.693333pt;}
.yb5_c00412{bottom:241.706667pt;}
.yb7_c00412{bottom:241.893333pt;}
.yb8_c00412{bottom:243.026667pt;}
.yb2_c00412{bottom:257.893333pt;}
.yb3_c00412{bottom:259.026667pt;}
.yb0_c00412{bottom:274.440000pt;}
.yae_c00412{bottom:276.360000pt;}
.yb1_c00412{bottom:276.560000pt;}
.yaf_c00412{bottom:277.306667pt;}
.yad_c00412{bottom:293.106667pt;}
.ya8_c00412{bottom:293.693333pt;}
.yac_c00412{bottom:294.066667pt;}
.yab_c00412{bottom:294.640000pt;}
.yaa_c00412{bottom:295.026667pt;}
.ya9_c00412{bottom:295.040000pt;}
.ya7_c00412{bottom:311.026667pt;}
.ya3_c00412{bottom:327.773333pt;}
.ya0_c00412{bottom:328.360000pt;}
.ya1_c00412{bottom:328.560000pt;}
.ya6_c00412{bottom:328.733333pt;}
.ya4_c00412{bottom:329.693333pt;}
.ya2_c00412{bottom:329.706667pt;}
.ya5_c00412{bottom:330.640000pt;}
.y9e_c00412{bottom:343.026667pt;}
.y9d_c00412{bottom:344.733333pt;}
.y9f_c00412{bottom:345.106667pt;}
.y9c_c00412{bottom:360.733333pt;}
.y99_c00412{bottom:362.440000pt;}
.y9b_c00412{bottom:363.400000pt;}
.y9a_c00412{bottom:364.373333pt;}
.y96_c00412{bottom:379.773333pt;}
.y98_c00412{bottom:381.693333pt;}
.y97_c00412{bottom:381.706667pt;}
.y93_c00412{bottom:403.400000pt;}
.y92_c00412{bottom:404.360000pt;}
.y94_c00412{bottom:404.560000pt;}
.y91_c00412{bottom:404.933333pt;}
.y90_c00412{bottom:405.306667pt;}
.y95_c00412{bottom:406.266667pt;}
.y8b_c00412{bottom:423.400000pt;}
.y8d_c00412{bottom:423.973333pt;}
.y8f_c00412{bottom:424.360000pt;}
.y8e_c00412{bottom:424.733333pt;}
.y8c_c00412{bottom:424.933333pt;}
.y85_c00412{bottom:436.733333pt;}
.y86_c00412{bottom:436.933333pt;}
.y89_c00412{bottom:437.306667pt;}
.y84_c00412{bottom:437.693333pt;}
.y88_c00412{bottom:438.066667pt;}
.y8a_c00412{bottom:439.226667pt;}
.y87_c00412{bottom:440.933333pt;}
.y83_c00412{bottom:461.106667pt;}
.y82_c00412{bottom:462.066667pt;}
.y81_c00412{bottom:462.640000pt;}
.y80_c00412{bottom:463.026667pt;}
.y7d_c00412{bottom:502.440000pt;}
.y7e_c00412{bottom:503.226667pt;}
.y7f_c00412{bottom:503.400000pt;}
.y7b_c00412{bottom:503.973333pt;}
.y7c_c00412{bottom:504.360000pt;}
.y76_c00412{bottom:517.693333pt;}
.y7a_c00412{bottom:519.773333pt;}
.y79_c00412{bottom:520.733333pt;}
.y78_c00412{bottom:521.306667pt;}
.y77_c00412{bottom:521.693333pt;}
.y73_c00412{bottom:536.360000pt;}
.y71_c00412{bottom:537.106667pt;}
.y6f_c00412{bottom:537.893333pt;}
.y72_c00412{bottom:538.066667pt;}
.y70_c00412{bottom:539.026667pt;}
.y75_c00412{bottom:539.226667pt;}
.y74_c00412{bottom:540.360000pt;}
.y6d_c00412{bottom:555.773333pt;}
.y6b_c00412{bottom:556.360000pt;}
.y6c_c00412{bottom:556.733333pt;}
.y6a_c00412{bottom:557.306667pt;}
.y6e_c00412{bottom:557.693333pt;}
.y64_c00412{bottom:571.773333pt;}
.y63_c00412{bottom:572.733333pt;}
.y68_c00412{bottom:573.106667pt;}
.y65_c00412{bottom:573.693333pt;}
.y66_c00412{bottom:573.893333pt;}
.y67_c00412{bottom:575.026667pt;}
.y69_c00412{bottom:575.973333pt;}
.y5f_c00412{bottom:590.066667pt;}
.y60_c00412{bottom:590.440000pt;}
.y5e_c00412{bottom:591.026667pt;}
.y62_c00412{bottom:591.400000pt;}
.y61_c00412{bottom:592.360000pt;}
.y5b_c00412{bottom:607.773333pt;}
.y5c_c00412{bottom:607.973333pt;}
.y5a_c00412{bottom:609.693333pt;}
.y5d_c00412{bottom:609.893333pt;}
.y59_c00412{bottom:627.026667pt;}
.y54_c00412{bottom:641.693333pt;}
.y57_c00412{bottom:643.773333pt;}
.y53_c00412{bottom:644.360000pt;}
.y55_c00412{bottom:644.560000pt;}
.y58_c00412{bottom:645.306667pt;}
.y56_c00412{bottom:645.693333pt;}
.y4e_c00412{bottom:659.026667pt;}
.y4d_c00412{bottom:659.773333pt;}
.y4f_c00412{bottom:661.106667pt;}
.y4c_c00412{bottom:661.693333pt;}
.y50_c00412{bottom:661.893333pt;}
.y51_c00412{bottom:662.640000pt;}
.y52_c00412{bottom:663.026667pt;}
.y48_c00412{bottom:678.440000pt;}
.y47_c00412{bottom:679.026667pt;}
.y4a_c00412{bottom:679.226667pt;}
.y49_c00412{bottom:679.400000pt;}
.y4b_c00412{bottom:680.360000pt;}
.y42_c00412{bottom:694.066667pt;}
.y44_c00412{bottom:694.640000pt;}
.y45_c00412{bottom:695.773333pt;}
.y43_c00412{bottom:697.693333pt;}
.y46_c00412{bottom:697.893333pt;}
.y3d_c00412{bottom:711.773333pt;}
.y41_c00412{bottom:711.973333pt;}
.y3f_c00412{bottom:712.360000pt;}
.y3e_c00412{bottom:713.106667pt;}
.y3b_c00412{bottom:714.640000pt;}
.y3c_c00412{bottom:715.026667pt;}
.y40_c00412{bottom:715.226667pt;}
.y3a_c00412{bottom:730.066667pt;}
.y37_c00412{bottom:730.440000pt;}
.y39_c00412{bottom:731.226667pt;}
.y36_c00412{bottom:732.360000pt;}
.y38_c00412{bottom:733.306667pt;}
.y35_c00412{bottom:747.773333pt;}
.y2e_c00412{bottom:764.360000pt;}
.y30_c00412{bottom:765.106667pt;}
.y33_c00412{bottom:765.306667pt;}
.y2d_c00412{bottom:766.066667pt;}
.y32_c00412{bottom:766.440000pt;}
.y2f_c00412{bottom:767.026667pt;}
.y34_c00412{bottom:767.226667pt;}
.y31_c00412{bottom:768.360000pt;}
.y29_c00412{bottom:782.440000pt;}
.y2c_c00412{bottom:783.773333pt;}
.y2a_c00412{bottom:784.360000pt;}
.y2b_c00412{bottom:785.693333pt;}
.y28_c00412{bottom:799.773333pt;}
.y23_c00412{bottom:817.106667pt;}
.y27_c00412{bottom:818.440000pt;}
.y24_c00412{bottom:819.026667pt;}
.y26_c00412{bottom:819.226667pt;}
.y25_c00412{bottom:820.360000pt;}
.y21_c00412{bottom:835.400000pt;}
.y22_c00412{bottom:835.773333pt;}
.y20_c00412{bottom:837.693333pt;}
.y1d_c00412{bottom:853.106667pt;}
.y1f_c00412{bottom:854.066667pt;}
.y1c_c00412{bottom:855.026667pt;}
.y1e_c00412{bottom:855.226667pt;}
.y19_c00412{bottom:870.440000pt;}
.y1a_c00412{bottom:872.360000pt;}
.y1b_c00412{bottom:872.560000pt;}
.y16_c00412{bottom:887.400000pt;}
.y13_c00412{bottom:887.773333pt;}
.y18_c00412{bottom:887.973333pt;}
.y14_c00412{bottom:888.560000pt;}
.y15_c00412{bottom:889.693333pt;}
.y17_c00412{bottom:890.640000pt;}
.y11_c00412{bottom:904.360000pt;}
.ye_c00412{bottom:905.106667pt;}
.y12_c00412{bottom:906.440000pt;}
.yf_c00412{bottom:907.026667pt;}
.y10_c00412{bottom:907.973333pt;}
.yb_c00412{bottom:923.773333pt;}
.ya_c00412{bottom:924.360000pt;}
.yd_c00412{bottom:924.560000pt;}
.yc_c00412{bottom:925.693333pt;}
.y6_c00412{bottom:939.773333pt;}
.y8_c00412{bottom:941.106667pt;}
.y4_c00412{bottom:941.693333pt;}
.y5_c00412{bottom:941.893333pt;}
.y7_c00412{bottom:943.026667pt;}
.y9_c00412{bottom:943.973333pt;}
.y1_c00412{bottom:975.773333pt;}
.y2_c00412{bottom:976.933333pt;}
.h8_c00412{height:3.739141pt;}
.h3_c00412{height:20.466875pt;}
.h2_c00412{height:22.303646pt;}
.h5_c00412{height:27.879557pt;}
.h4_c00412{height:31.618698pt;}
.h7_c00412{height:33.212891pt;}
.h6_c00412{height:35.357839pt;}
.h1_c00412{height:39.031380pt;}
.h0_c00412{height:1186.666667pt;}
.w0_c00412{width:782.666667pt;}
.x0_c00412{left:0.000000pt;}
.xb2_c00412{left:134.666667pt;}
.x1d_c00412{left:136.000000pt;}
.x4_c00412{left:137.333333pt;}
.xad_c00412{left:147.040000pt;}
.xcd_c00412{left:148.373333pt;}
.xcf_c00412{left:149.333333pt;}
.x57_c00412{left:150.666667pt;}
.xb9_c00412{left:156.000000pt;}
.x9e_c00412{left:160.000000pt;}
.x71_c00412{left:170.666667pt;}
.x46_c00412{left:175.626667pt;}
.x69_c00412{left:177.706667pt;}
.x5_c00412{left:180.000000pt;}
.x3c_c00412{left:184.000000pt;}
.x2b_c00412{left:185.333333pt;}
.xe2_c00412{left:186.666667pt;}
.x56_c00412{left:187.800000pt;}
.xa7_c00412{left:188.960000pt;}
.x1e_c00412{left:190.293333pt;}
.x62_c00412{left:193.706667pt;}
.xa3_c00412{left:198.666667pt;}
.xe6_c00412{left:200.000000pt;}
.x6_c00412{left:201.706667pt;}
.x72_c00412{left:204.000000pt;}
.x1f_c00412{left:208.000000pt;}
.x9f_c00412{left:209.333333pt;}
.x83_c00412{left:210.666667pt;}
.x58_c00412{left:211.626667pt;}
.xdd_c00412{left:212.960000pt;}
.xb3_c00412{left:214.293333pt;}
.xba_c00412{left:216.373333pt;}
.x2c_c00412{left:221.333333pt;}
.xd6_c00412{left:222.666667pt;}
.x73_c00412{left:224.000000pt;}
.x59_c00412{left:225.333333pt;}
.x7b_c00412{left:227.040000pt;}
.x63_c00412{left:228.373333pt;}
.xd0_c00412{left:229.333333pt;}
.x12_c00412{left:231.040000pt;}
.x8a_c00412{left:232.373333pt;}
.x3d_c00412{left:235.626667pt;}
.x92_c00412{left:237.333333pt;}
.xca_c00412{left:238.293333pt;}
.x6a_c00412{left:241.333333pt;}
.xae_c00412{left:245.706667pt;}
.xbb_c00412{left:247.040000pt;}
.xd1_c00412{left:248.000000pt;}
.xdb_c00412{left:248.960000pt;}
.x4f_c00412{left:250.666667pt;}
.x98_c00412{left:252.000000pt;}
.x3e_c00412{left:253.333333pt;}
.xce_c00412{left:256.000000pt;}
.x93_c00412{left:256.960000pt;}
.x5a_c00412{left:258.293333pt;}
.x64_c00412{left:260.373333pt;}
.xe7_c00412{left:261.333333pt;}
.x7_c00412{left:262.666667pt;}
.x34_c00412{left:264.960000pt;}
.x8b_c00412{left:266.466667pt;}
.xd7_c00412{left:268.000000pt;}
.x99_c00412{left:268.960000pt;}
.xc1_c00412{left:272.000000pt;}
.x20_c00412{left:273.133333pt;}
.xaf_c00412{left:278.293333pt;}
.x13_c00412{left:280.000000pt;}
.x50_c00412{left:280.960000pt;}
.xde_c00412{left:285.333333pt;}
.x35_c00412{left:286.666667pt;}
.x8_c00412{left:289.333333pt;}
.x94_c00412{left:290.666667pt;}
.x47_c00412{left:292.000000pt;}
.x9a_c00412{left:293.133333pt;}
.x2d_c00412{left:295.040000pt;}
.xcb_c00412{left:296.373333pt;}
.xa4_c00412{left:297.333333pt;}
.x74_c00412{left:300.000000pt;}
.xdc_c00412{left:300.960000pt;}
.x5b_c00412{left:302.466667pt;}
.x14_c00412{left:303.626667pt;}
.xd2_c00412{left:307.800000pt;}
.x21_c00412{left:309.333333pt;}
.x6b_c00412{left:310.666667pt;}
.xd8_c00412{left:312.000000pt;}
.x3f_c00412{left:314.466667pt;}
.xa8_c00412{left:315.626667pt;}
.x2e_c00412{left:317.333333pt;}
.xa5_c00412{left:319.626667pt;}
.x9_c00412{left:320.960000pt;}
.x5c_c00412{left:322.666667pt;}
.x8c_c00412{left:327.040000pt;}
.x22_c00412{left:329.706667pt;}
.xe8_c00412{left:330.666667pt;}
.x75_c00412{left:332.960000pt;}
.xc7_c00412{left:335.426667pt;}
.xc2_c00412{left:336.373333pt;}
.x7c_c00412{left:338.293333pt;}
.xbc_c00412{left:343.040000pt;}
.x48_c00412{left:344.000000pt;}
.xd3_c00412{left:345.333333pt;}
.x40_c00412{left:348.000000pt;}
.xe3_c00412{left:352.000000pt;}
.x15_c00412{left:352.960000pt;}
.x9b_c00412{left:354.666667pt;}
.xa_c00412{left:356.000000pt;}
.x23_c00412{left:357.333333pt;}
.x51_c00412{left:362.666667pt;}
.x2_c00412{left:364.000000pt;}
.xe9_c00412{left:365.706667pt;}
.x2f_c00412{left:366.666667pt;}
.x84_c00412{left:369.706667pt;}
.xa0_c00412{left:373.333333pt;}
.x76_c00412{left:377.133333pt;}
.xd4_c00412{left:378.666667pt;}
.x52_c00412{left:380.373333pt;}
.xa9_c00412{left:382.466667pt;}
.x5d_c00412{left:385.706667pt;}
.x24_c00412{left:388.960000pt;}
.xc8_c00412{left:392.000000pt;}
.xbd_c00412{left:392.960000pt;}
.xd9_c00412{left:396.000000pt;}
.x8d_c00412{left:397.333333pt;}
.x95_c00412{left:398.293333pt;}
.x36_c00412{left:400.000000pt;}
.xb_c00412{left:403.040000pt;}
.x53_c00412{left:404.373333pt;}
.x6c_c00412{left:407.040000pt;}
.xbe_c00412{left:408.000000pt;}
.x30_c00412{left:410.666667pt;}
.xdf_c00412{left:412.000000pt;}
.x9c_c00412{left:413.333333pt;}
.x5e_c00412{left:415.040000pt;}
.x49_c00412{left:416.373333pt;}
.x25_c00412{left:419.040000pt;}
.x7d_c00412{left:420.373333pt;}
.xb4_c00412{left:421.333333pt;}
.xd5_c00412{left:422.466667pt;}
.xa1_c00412{left:424.373333pt;}
.xc_c00412{left:425.706667pt;}
.x16_c00412{left:426.666667pt;}
.x65_c00412{left:428.373333pt;}
.x6d_c00412{left:429.333333pt;}
.xc9_c00412{left:432.000000pt;}
.xe4_c00412{left:433.333333pt;}
.x85_c00412{left:434.666667pt;}
.x77_c00412{left:436.373333pt;}
.xbf_c00412{left:438.293333pt;}
.xaa_c00412{left:440.000000pt;}
.x41_c00412{left:441.706667pt;}
.x4a_c00412{left:444.373333pt;}
.xc3_c00412{left:445.706667pt;}
.x17_c00412{left:449.333333pt;}
.xd_c00412{left:450.666667pt;}
.x7e_c00412{left:452.000000pt;}
.xb0_c00412{left:452.960000pt;}
.xcc_c00412{left:454.093333pt;}
.xda_c00412{left:456.960000pt;}
.x26_c00412{left:460.000000pt;}
.x5f_c00412{left:463.626667pt;}
.x54_c00412{left:466.293333pt;}
.x7f_c00412{left:468.000000pt;}
.xea_c00412{left:469.333333pt;}
.xe0_c00412{left:470.666667pt;}
.x78_c00412{left:474.293333pt;}
.x18_c00412{left:476.000000pt;}
.x6e_c00412{left:478.666667pt;}
.x37_c00412{left:479.626667pt;}
.x86_c00412{left:481.333333pt;}
.x55_c00412{left:483.626667pt;}
.x31_c00412{left:484.960000pt;}
.x66_c00412{left:486.666667pt;}
.xc4_c00412{left:488.000000pt;}
.xb1_c00412{left:491.040000pt;}
.x8e_c00412{left:492.373333pt;}
.x96_c00412{left:493.333333pt;}
.x19_c00412{left:495.040000pt;}
.xc5_c00412{left:496.960000pt;}
.xb5_c00412{left:500.000000pt;}
.x87_c00412{left:501.333333pt;}
.xe_c00412{left:502.666667pt;}
.xc0_c00412{left:503.800000pt;}
.x4b_c00412{left:507.626667pt;}
.x38_c00412{left:509.706667pt;}
.x9d_c00412{left:512.373333pt;}
.xe5_c00412{left:513.333333pt;}
.xf_c00412{left:514.666667pt;}
.xeb_c00412{left:520.373333pt;}
.x1a_c00412{left:521.706667pt;}
.x42_c00412{left:523.040000pt;}
.x6f_c00412{left:524.000000pt;}
.x80_c00412{left:525.333333pt;}
.x4c_c00412{left:527.626667pt;}
.x27_c00412{left:532.373333pt;}
.x8f_c00412{left:533.333333pt;}
.x79_c00412{left:537.706667pt;}
.x60_c00412{left:541.333333pt;}
.x39_c00412{left:543.626667pt;}
.x43_c00412{left:545.333333pt;}
.x81_c00412{left:546.666667pt;}
.x70_c00412{left:547.626667pt;}
.x67_c00412{left:549.333333pt;}
.x88_c00412{left:556.960000pt;}
.x28_c00412{left:559.040000pt;}
.x90_c00412{left:560.000000pt;}
.xb6_c00412{left:565.333333pt;}
.x10_c00412{left:568.373333pt;}
.x32_c00412{left:571.626667pt;}
.xab_c00412{left:573.706667pt;}
.xc6_c00412{left:579.040000pt;}
.x4d_c00412{left:580.000000pt;}
.x44_c00412{left:580.960000pt;}
.xa6_c00412{left:582.666667pt;}
.x1b_c00412{left:584.960000pt;}
.xb7_c00412{left:586.293333pt;}
.x3a_c00412{left:589.706667pt;}
.x61_c00412{left:592.373333pt;}
.x11_c00412{left:594.666667pt;}
.xe1_c00412{left:596.000000pt;}
.x7a_c00412{left:597.706667pt;}
.x82_c00412{left:600.000000pt;}
.x97_c00412{left:601.333333pt;}
.x89_c00412{left:602.666667pt;}
.x1c_c00412{left:603.626667pt;}
.x29_c00412{left:611.626667pt;}
.x91_c00412{left:612.960000pt;}
.x33_c00412{left:614.666667pt;}
.x3b_c00412{left:617.333333pt;}
.xb8_c00412{left:622.293333pt;}
.xac_c00412{left:626.293333pt;}
.x45_c00412{left:628.000000pt;}
.x1_c00412{left:629.333333pt;}
.x2a_c00412{left:631.040000pt;}
.xa2_c00412{left:634.666667pt;}
.x4e_c00412{left:635.626667pt;}
.x68_c00412{left:637.333333pt;}
.x3_c00412{left:638.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_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_8610d7dde5a37ee722d275bc.woff2')format("woff");}.ff1_c00413{font-family:ff1_c00413;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m95_c00413{transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);}
.mae_c00413{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m59_c00413{transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);}
.m36_c00413{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.mc6_c00413{transform:matrix(0.348926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348926,0.000000,0.000000,0.250000,0,0);}
.mfc_c00413{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);}
.m0_c00413{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m5d_c00413{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m93_c00413{transform:matrix(0.370588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370588,0.000000,0.000000,0.250000,0,0);}
.m4_c00413{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.maf_c00413{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m5e_c00413{transform:matrix(0.376534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376534,0.000000,0.000000,0.250000,0,0);}
.mee_c00413{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m18_c00413{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m5b_c00413{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.mc3_c00413{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m8d_c00413{transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);}
.m3_c00413{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m24_c00413{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m8b_c00413{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m4c_c00413{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m70_c00413{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m53_c00413{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);}
.md1_c00413{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m80_c00413{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.meb_c00413{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.me4_c00413{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m100_c00413{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m6f_c00413{transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);}
.me_c00413{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m6a_c00413{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m8f_c00413{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m9e_c00413{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.mdc_c00413{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m5a_c00413{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m51_c00413{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m82_c00413{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m1c_c00413{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.md3_c00413{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m3c_c00413{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mfd_c00413{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m66_c00413{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m96_c00413{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m14_c00413{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m20_c00413{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.ma4_c00413{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m64_c00413{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m67_c00413{transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);}
.m69_c00413{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m7a_c00413{transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);}
.mc2_c00413{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.me9_c00413{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.md9_c00413{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m98_c00413{transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);}
.m3f_c00413{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m4a_c00413{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.mbe_c00413{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m86_c00413{transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);}
.m62_c00413{transform:matrix(0.430215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430215,0.000000,0.000000,0.250000,0,0);}
.me3_c00413{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mfe_c00413{transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);}
.md6_c00413{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m21_c00413{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.me1_c00413{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.m2d_c00413{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.mf8_c00413{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.md2_c00413{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m6b_c00413{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m81_c00413{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m61_c00413{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);}
.m8c_c00413{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.mcb_c00413{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m9a_c00413{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m28_c00413{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mb8_c00413{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.mf4_c00413{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.mbd_c00413{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m38_c00413{transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);}
.m15_c00413{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mc7_c00413{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m6e_c00413{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.m56_c00413{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.me8_c00413{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m54_c00413{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.mb1_c00413{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mef_c00413{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m75_c00413{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m9c_c00413{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.ma6_c00413{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m13_c00413{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m41_c00413{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m1b_c00413{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.m6d_c00413{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.mcd_c00413{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.mf1_c00413{transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);}
.m57_c00413{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.mf2_c00413{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.md4_c00413{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.m83_c00413{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m77_c00413{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.m63_c00413{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m42_c00413{transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);}
.md8_c00413{transform:matrix(0.468067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468067,0.000000,0.000000,0.250000,0,0);}
.mf5_c00413{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.me0_c00413{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.mf7_c00413{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m71_c00413{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mdb_c00413{transform:matrix(0.472269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472269,0.000000,0.000000,0.250000,0,0);}
.m74_c00413{transform:matrix(0.473098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473098,0.000000,0.000000,0.250000,0,0);}
.mb2_c00413{transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);}
.md5_c00413{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m79_c00413{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mf6_c00413{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.m78_c00413{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m46_c00413{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.me7_c00413{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m5_c00413{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.me5_c00413{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mde_c00413{transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);}
.m4b_c00413{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m87_c00413{transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);}
.m40_c00413{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m9b_c00413{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.m9d_c00413{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m99_c00413{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m2e_c00413{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mdd_c00413{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m3e_c00413{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);}
.mcf_c00413{transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);}
.m72_c00413{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.mac_c00413{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m58_c00413{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m68_c00413{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m73_c00413{transform:matrix(0.507885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507885,0.000000,0.000000,0.250000,0,0);}
.m7f_c00413{transform:matrix(0.508349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508349,0.000000,0.000000,0.250000,0,0);}
.mb5_c00413{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m89_c00413{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m7b_c00413{transform:matrix(0.510204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510204,0.000000,0.000000,0.250000,0,0);}
.m9f_c00413{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.ma2_c00413{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.mce_c00413{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m2a_c00413{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.md0_c00413{transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);}
.med_c00413{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m85_c00413{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m1f_c00413{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m3d_c00413{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m7e_c00413{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.mf9_c00413{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.m10_c00413{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mc5_c00413{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m45_c00413{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m43_c00413{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m3b_c00413{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m27_c00413{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m48_c00413{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mec_c00413{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m65_c00413{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m2f_c00413{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mcc_c00413{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m8_c00413{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mb_c00413{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m2_c00413{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m37_c00413{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m8a_c00413{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mad_c00413{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.ma_c00413{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mc9_c00413{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mfa_c00413{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.ma5_c00413{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m1e_c00413{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mbf_c00413{transform:matrix(0.539412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539412,0.000000,0.000000,0.250000,0,0);}
.m22_c00413{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m101_c00413{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m1a_c00413{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mf3_c00413{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mb6_c00413{transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);}
.m2c_c00413{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mc_c00413{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mab_c00413{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m9_c00413{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m26_c00413{transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);}
.m88_c00413{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mb7_c00413{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m2b_c00413{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m19_c00413{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m91_c00413{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m29_c00413{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m94_c00413{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m32_c00413{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m35_c00413{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m76_c00413{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m34_c00413{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m17_c00413{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m97_c00413{transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);}
.m25_c00413{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m12_c00413{transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);}
.me6_c00413{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.ma8_c00413{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.mb3_c00413{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m4d_c00413{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mb0_c00413{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m7_c00413{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.ma1_c00413{transform:matrix(0.571176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571176,0.000000,0.000000,0.250000,0,0);}
.ma0_c00413{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.mc8_c00413{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.mc1_c00413{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.mb9_c00413{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m7c_c00413{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.mea_c00413{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m3a_c00413{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.mf0_c00413{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m7d_c00413{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mfb_c00413{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.mb4_c00413{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m11_c00413{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);}
.mbb_c00413{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m5f_c00413{transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);}
.m84_c00413{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m4f_c00413{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m31_c00413{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.ma7_c00413{transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);}
.m16_c00413{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.maa_c00413{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mca_c00413{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.md7_c00413{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.m4e_c00413{transform:matrix(0.617739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617739,0.000000,0.000000,0.250000,0,0);}
.mba_c00413{transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);}
.m1_c00413{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);}
.m44_c00413{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);}
.m90_c00413{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m6c_c00413{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mc0_c00413{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.ma3_c00413{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m5c_c00413{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m92_c00413{transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);}
.mff_c00413{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m49_c00413{transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);}
.m47_c00413{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m33_c00413{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m8e_c00413{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.mdf_c00413{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mbc_c00413{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m30_c00413{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mda_c00413{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mf_c00413{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m39_c00413{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m6_c00413{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m23_c00413{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.md_c00413{transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);}
.m1d_c00413{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m55_c00413{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m50_c00413{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m52_c00413{transform:matrix(0.781765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.781765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.781765,0.000000,0.000000,0.250000,0,0);}
.ma9_c00413{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mc4_c00413{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m60_c00413{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.me2_c00413{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,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:-5.143200px;}
.ws1_c00413{word-spacing:0.000000px;}
.fc0_c00413{color:transparent;}
.fs3_c00413{font-size:18.720000px;}
.fs1_c00413{font-size:20.400000px;}
.fs4_c00413{font-size:25.500000px;}
.fs2_c00413{font-size:28.920000px;}
.fs5_c00413{font-size:32.340000px;}
.fs0_c00413{font-size:35.700000px;}
.fs6_c00413{font-size:39.120000px;}
.y0_c00413{bottom:0.000000px;}
.yec_c00413{bottom:249.405000px;}
.ye9_c00413{bottom:250.245000px;}
.ye8_c00413{bottom:251.130000px;}
.ye7_c00413{bottom:251.325000px;}
.yeb_c00413{bottom:251.970000px;}
.yea_c00413{bottom:252.405000px;}
.yed_c00413{bottom:253.470000px;}
.ye3_c00413{bottom:269.745000px;}
.ye4_c00413{bottom:270.630000px;}
.ye6_c00413{bottom:271.245000px;}
.ye2_c00413{bottom:271.905000px;}
.ye5_c00413{bottom:272.130000px;}
.ydf_c00413{bottom:289.245000px;}
.yde_c00413{bottom:291.405000px;}
.ye1_c00413{bottom:292.470000px;}
.ye0_c00413{bottom:292.905000px;}
.yd8_c00413{bottom:307.905000px;}
.yd6_c00413{bottom:308.745000px;}
.ydc_c00413{bottom:310.245000px;}
.yd9_c00413{bottom:310.905000px;}
.ydd_c00413{bottom:311.130000px;}
.yda_c00413{bottom:311.325000px;}
.yd7_c00413{bottom:311.970000px;}
.ydb_c00413{bottom:312.405000px;}
.yd0_c00413{bottom:328.245000px;}
.yce_c00413{bottom:329.325000px;}
.yd1_c00413{bottom:329.745000px;}
.ycf_c00413{bottom:330.405000px;}
.yd4_c00413{bottom:330.630000px;}
.yd5_c00413{bottom:330.825000px;}
.yd2_c00413{bottom:331.905000px;}
.yd3_c00413{bottom:332.970000px;}
.ycc_c00413{bottom:349.245000px;}
.yca_c00413{bottom:349.905000px;}
.ycb_c00413{bottom:350.130000px;}
.ycd_c00413{bottom:351.405000px;}
.yc8_c00413{bottom:367.905000px;}
.yc7_c00413{bottom:368.325000px;}
.yc5_c00413{bottom:368.745000px;}
.yc9_c00413{bottom:369.825000px;}
.yc6_c00413{bottom:370.905000px;}
.yc1_c00413{bottom:388.245000px;}
.yc4_c00413{bottom:389.745000px;}
.yc2_c00413{bottom:390.630000px;}
.yc3_c00413{bottom:391.905000px;}
.ybf_c00413{bottom:407.745000px;}
.ybd_c00413{bottom:408.825000px;}
.ybc_c00413{bottom:409.905000px;}
.ybe_c00413{bottom:410.130000px;}
.yc0_c00413{bottom:410.970000px;}
.yba_c00413{bottom:426.405000px;}
.ybb_c00413{bottom:427.245000px;}
.yb6_c00413{bottom:428.745000px;}
.yb5_c00413{bottom:429.405000px;}
.yb8_c00413{bottom:429.630000px;}
.yb9_c00413{bottom:430.470000px;}
.yb7_c00413{bottom:430.905000px;}
.yb3_c00413{bottom:447.405000px;}
.yb1_c00413{bottom:448.245000px;}
.yb2_c00413{bottom:449.325000px;}
.yb4_c00413{bottom:449.970000px;}
.yb0_c00413{bottom:450.405000px;}
.yae_c00413{bottom:467.745000px;}
.yaf_c00413{bottom:468.825000px;}
.yad_c00413{bottom:469.905000px;}
.yac_c00413{bottom:486.825000px;}
.ya9_c00413{bottom:487.245000px;}
.yaa_c00413{bottom:489.405000px;}
.yab_c00413{bottom:490.470000px;}
.ya6_c00413{bottom:506.745000px;}
.ya8_c00413{bottom:507.825000px;}
.ya5_c00413{bottom:508.905000px;}
.ya7_c00413{bottom:509.130000px;}
.ya1_c00413{bottom:526.680000px;}
.ya3_c00413{bottom:527.745000px;}
.ya0_c00413{bottom:528.405000px;}
.ya4_c00413{bottom:528.630000px;}
.ya2_c00413{bottom:529.905000px;}
.y9e_c00413{bottom:547.245000px;}
.y9f_c00413{bottom:548.130000px;}
.y9c_c00413{bottom:548.970000px;}
.y9d_c00413{bottom:549.405000px;}
.y98_c00413{bottom:566.745000px;}
.y99_c00413{bottom:567.630000px;}
.y9b_c00413{bottom:568.470000px;}
.y9a_c00413{bottom:568.905000px;}
.y96_c00413{bottom:586.245000px;}
.y97_c00413{bottom:587.130000px;}
.y95_c00413{bottom:587.970000px;}
.y94_c00413{bottom:588.405000px;}
.y93_c00413{bottom:605.745000px;}
.y91_c00413{bottom:607.905000px;}
.y92_c00413{bottom:608.970000px;}
.y8c_c00413{bottom:624.405000px;}
.y8b_c00413{bottom:625.245000px;}
.y8d_c00413{bottom:627.405000px;}
.y90_c00413{bottom:627.630000px;}
.y8e_c00413{bottom:628.470000px;}
.y8f_c00413{bottom:628.905000px;}
.y8a_c00413{bottom:646.245000px;}
.y86_c00413{bottom:646.905000px;}
.y87_c00413{bottom:647.130000px;}
.y88_c00413{bottom:647.970000px;}
.y89_c00413{bottom:648.405000px;}
.y83_c00413{bottom:663.405000px;}
.y7e_c00413{bottom:664.245000px;}
.y85_c00413{bottom:665.550000px;}
.y82_c00413{bottom:665.745000px;}
.y7f_c00413{bottom:666.405000px;}
.y84_c00413{bottom:666.630000px;}
.y80_c00413{bottom:667.470000px;}
.y81_c00413{bottom:667.905000px;}
.y79_c00413{bottom:682.905000px;}
.y77_c00413{bottom:685.905000px;}
.y78_c00413{bottom:686.130000px;}
.y7d_c00413{bottom:686.325000px;}
.y7a_c00413{bottom:686.970000px;}
.y7b_c00413{bottom:687.405000px;}
.y7c_c00413{bottom:688.470000px;}
.y70_c00413{bottom:702.405000px;}
.y76_c00413{bottom:704.325000px;}
.y72_c00413{bottom:704.745000px;}
.y74_c00413{bottom:705.630000px;}
.y73_c00413{bottom:705.825000px;}
.y75_c00413{bottom:706.470000px;}
.y71_c00413{bottom:706.905000px;}
.y6c_c00413{bottom:721.905000px;}
.y6a_c00413{bottom:722.745000px;}
.y6b_c00413{bottom:724.245000px;}
.y6f_c00413{bottom:725.325000px;}
.y6e_c00413{bottom:725.970000px;}
.y6d_c00413{bottom:726.405000px;}
.y68_c00413{bottom:742.680000px;}
.y63_c00413{bottom:743.745000px;}
.y67_c00413{bottom:743.970000px;}
.y66_c00413{bottom:745.470000px;}
.y64_c00413{bottom:745.905000px;}
.y65_c00413{bottom:746.130000px;}
.y69_c00413{bottom:746.970000px;}
.y5f_c00413{bottom:762.405000px;}
.y61_c00413{bottom:763.245000px;}
.y62_c00413{bottom:764.325000px;}
.y5e_c00413{bottom:765.405000px;}
.y60_c00413{bottom:765.630000px;}
.y5d_c00413{bottom:781.905000px;}
.y5b_c00413{bottom:782.745000px;}
.y57_c00413{bottom:782.970000px;}
.y59_c00413{bottom:784.245000px;}
.y58_c00413{bottom:784.905000px;}
.y5a_c00413{bottom:785.130000px;}
.y5c_c00413{bottom:785.970000px;}
.y54_c00413{bottom:801.405000px;}
.y52_c00413{bottom:803.325000px;}
.y55_c00413{bottom:803.745000px;}
.y50_c00413{bottom:804.405000px;}
.y51_c00413{bottom:804.630000px;}
.y56_c00413{bottom:804.825000px;}
.y4f_c00413{bottom:805.470000px;}
.y53_c00413{bottom:805.905000px;}
.y4d_c00413{bottom:822.405000px;}
.y49_c00413{bottom:822.825000px;}
.y48_c00413{bottom:823.245000px;}
.y4e_c00413{bottom:824.325000px;}
.y4a_c00413{bottom:824.970000px;}
.y4c_c00413{bottom:825.405000px;}
.y4b_c00413{bottom:825.630000px;}
.y43_c00413{bottom:842.745000px;}
.y46_c00413{bottom:843.630000px;}
.y42_c00413{bottom:843.825000px;}
.y45_c00413{bottom:844.905000px;}
.y47_c00413{bottom:845.130000px;}
.y44_c00413{bottom:845.970000px;}
.y3d_c00413{bottom:859.905000px;}
.y3f_c00413{bottom:862.245000px;}
.y41_c00413{bottom:863.325000px;}
.y3e_c00413{bottom:864.405000px;}
.y40_c00413{bottom:865.470000px;}
.y37_c00413{bottom:880.680000px;}
.y3c_c00413{bottom:881.745000px;}
.y3b_c00413{bottom:882.825000px;}
.y39_c00413{bottom:883.470000px;}
.y38_c00413{bottom:883.905000px;}
.y3a_c00413{bottom:884.130000px;}
.y32_c00413{bottom:900.405000px;}
.y34_c00413{bottom:901.680000px;}
.y30_c00413{bottom:902.325000px;}
.y35_c00413{bottom:902.745000px;}
.y31_c00413{bottom:903.405000px;}
.y36_c00413{bottom:904.470000px;}
.y33_c00413{bottom:904.905000px;}
.y2d_c00413{bottom:919.905000px;}
.y29_c00413{bottom:921.630000px;}
.y2e_c00413{bottom:922.245000px;}
.y2a_c00413{bottom:922.905000px;}
.y2c_c00413{bottom:923.130000px;}
.y2b_c00413{bottom:923.970000px;}
.y2f_c00413{bottom:925.470000px;}
.y27_c00413{bottom:939.405000px;}
.y28_c00413{bottom:941.745000px;}
.y22_c00413{bottom:942.405000px;}
.y23_c00413{bottom:942.630000px;}
.y26_c00413{bottom:942.825000px;}
.y25_c00413{bottom:943.470000px;}
.y24_c00413{bottom:943.905000px;}
.y21_c00413{bottom:958.905000px;}
.y1d_c00413{bottom:959.745000px;}
.y20_c00413{bottom:961.245000px;}
.y1c_c00413{bottom:961.905000px;}
.y1e_c00413{bottom:962.130000px;}
.y1f_c00413{bottom:963.405000px;}
.y1b_c00413{bottom:980.745000px;}
.y16_c00413{bottom:981.405000px;}
.y17_c00413{bottom:981.630000px;}
.y19_c00413{bottom:982.470000px;}
.y18_c00413{bottom:982.905000px;}
.y1a_c00413{bottom:983.970000px;}
.y11_c00413{bottom:998.745000px;}
.y15_c00413{bottom:1000.245000px;}
.y14_c00413{bottom:1001.130000px;}
.y13_c00413{bottom:1001.325000px;}
.y12_c00413{bottom:1002.405000px;}
.ye_c00413{bottom:1019.325000px;}
.yc_c00413{bottom:1019.745000px;}
.y10_c00413{bottom:1020.630000px;}
.yb_c00413{bottom:1021.905000px;}
.yd_c00413{bottom:1022.130000px;}
.yf_c00413{bottom:1023.405000px;}
.y6_c00413{bottom:1039.245000px;}
.ya_c00413{bottom:1039.470000px;}
.y9_c00413{bottom:1040.325000px;}
.y8_c00413{bottom:1041.405000px;}
.y7_c00413{bottom:1042.470000px;}
.y4_c00413{bottom:1058.745000px;}
.y3_c00413{bottom:1060.905000px;}
.y5_c00413{bottom:1061.130000px;}
.y1_c00413{bottom:1097.745000px;}
.y2_c00413{bottom:1099.050000px;}
.h4_c00413{height:23.025234px;}
.h2_c00413{height:25.091602px;}
.h5_c00413{height:31.364502px;}
.h3_c00413{height:35.571035px;}
.h6_c00413{height:39.777568px;}
.h1_c00413{height:43.910303px;}
.h7_c00413{height:48.116836px;}
.h0_c00413{height:1335.000000px;}
.w0_c00413{width:880.500000px;}
.x0_c00413{left:0.000000px;}
.x1_c00413{left:151.500000px;}
.x5c_c00413{left:153.000000px;}
.xb9_c00413{left:157.080000px;}
.x53_c00413{left:165.000000px;}
.x3_c00413{left:167.145000px;}
.xf4_c00413{left:171.420000px;}
.xba_c00413{left:172.500000px;}
.xe9_c00413{left:175.500000px;}
.xd4_c00413{left:180.000000px;}
.x117_c00413{left:181.920000px;}
.xa7_c00413{left:184.500000px;}
.xdb_c00413{left:187.500000px;}
.x54_c00413{left:189.420000px;}
.x46_c00413{left:190.500000px;}
.x94_c00413{left:192.420000px;}
.xc3_c00413{left:195.420000px;}
.x26_c00413{left:196.920000px;}
.x74_c00413{left:198.420000px;}
.x82_c00413{left:199.920000px;}
.xb1_c00413{left:202.080000px;}
.xfa_c00413{left:204.000000px;}
.x47_c00413{left:205.080000px;}
.xe3_c00413{left:208.080000px;}
.x3d_c00413{left:209.580000px;}
.x31_c00413{left:211.500000px;}
.xe7_c00413{left:214.080000px;}
.x65_c00413{left:216.420000px;}
.x11_c00413{left:217.500000px;}
.x8d_c00413{left:219.000000px;}
.x6d_c00413{left:220.080000px;}
.x9d_c00413{left:223.920000px;}
.x5d_c00413{left:226.920000px;}
.x112_c00413{left:229.920000px;}
.xfb_c00413{left:231.000000px;}
.x4_c00413{left:235.080000px;}
.x12_c00413{left:238.080000px;}
.x32_c00413{left:240.420000px;}
.x55_c00413{left:241.500000px;}
.x95_c00413{left:243.000000px;}
.x7b_c00413{left:244.500000px;}
.x8e_c00413{left:246.000000px;}
.xea_c00413{left:248.580000px;}
.xa8_c00413{left:252.000000px;}
.x66_c00413{left:254.580000px;}
.x107_c00413{left:256.080000px;}
.x3e_c00413{left:258.000000px;}
.xdc_c00413{left:259.080000px;}
.xc4_c00413{left:261.000000px;}
.x5e_c00413{left:264.420000px;}
.x96_c00413{left:265.920000px;}
.xfc_c00413{left:267.420000px;}
.x33_c00413{left:268.500000px;}
.xcf_c00413{left:269.580000px;}
.x56_c00413{left:271.080000px;}
.x11c_c00413{left:273.420000px;}
.x1b_c00413{left:274.920000px;}
.x83_c00413{left:277.500000px;}
.xc5_c00413{left:278.580000px;}
.x3f_c00413{left:280.500000px;}
.x5_c00413{left:282.000000px;}
.x9e_c00413{left:283.500000px;}
.x75_c00413{left:285.000000px;}
.x10a_c00413{left:286.920000px;}
.x118_c00413{left:288.000000px;}
.x84_c00413{left:291.000000px;}
.x48_c00413{left:292.080000px;}
.xcd_c00413{left:294.000000px;}
.x113_c00413{left:295.500000px;}
.x108_c00413{left:297.000000px;}
.x11d_c00413{left:298.500000px;}
.xef_c00413{left:303.000000px;}
.x1c_c00413{left:304.080000px;}
.x76_c00413{left:306.000000px;}
.xbb_c00413{left:307.080000px;}
.x6_c00413{left:309.000000px;}
.x97_c00413{left:310.920000px;}
.xce_c00413{left:312.420000px;}
.x27_c00413{left:313.500000px;}
.x13_c00413{left:315.000000px;}
.xd5_c00413{left:318.000000px;}
.x49_c00413{left:319.920000px;}
.xa9_c00413{left:322.920000px;}
.x100_c00413{left:324.000000px;}
.x11e_c00413{left:325.500000px;}
.x7_c00413{left:327.000000px;}
.xb2_c00413{left:328.920000px;}
.x67_c00413{left:331.500000px;}
.x98_c00413{left:333.000000px;}
.xdd_c00413{left:334.080000px;}
.xc9_c00413{left:336.645000px;}
.xde_c00413{left:338.580000px;}
.xc6_c00413{left:342.420000px;}
.xf5_c00413{left:343.500000px;}
.x7c_c00413{left:345.420000px;}
.x85_c00413{left:346.500000px;}
.x14_c00413{left:348.000000px;}
.x34_c00413{left:349.080000px;}
.x28_c00413{left:354.000000px;}
.x8_c00413{left:356.580000px;}
.x101_c00413{left:358.500000px;}
.x40_c00413{left:359.580000px;}
.x86_c00413{left:361.500000px;}
.xb3_c00413{left:364.500000px;}
.xd6_c00413{left:365.580000px;}
.x1d_c00413{left:367.500000px;}
.x35_c00413{left:370.080000px;}
.x87_c00413{left:373.500000px;}
.x9f_c00413{left:375.000000px;}
.x9_c00413{left:376.920000px;}
.x4a_c00413{left:379.920000px;}
.xb4_c00413{left:381.000000px;}
.x29_c00413{left:382.500000px;}
.xbc_c00413{left:383.580000px;}
.xd7_c00413{left:385.080000px;}
.x102_c00413{left:386.580000px;}
.xd0_c00413{left:388.500000px;}
.x77_c00413{left:391.080000px;}
.x7d_c00413{left:395.580000px;}
.xf6_c00413{left:397.500000px;}
.xe4_c00413{left:398.580000px;}
.x36_c00413{left:401.145000px;}
.xfd_c00413{left:402.420000px;}
.xa_c00413{left:403.920000px;}
.xca_c00413{left:405.000000px;}
.x2_c00413{left:406.500000px;}
.xa0_c00413{left:408.420000px;}
.x5f_c00413{left:410.580000px;}
.xdf_c00413{left:412.500000px;}
.xc7_c00413{left:414.000000px;}
.x57_c00413{left:418.080000px;}
.xaa_c00413{left:420.420000px;}
.x103_c00413{left:424.080000px;}
.x4b_c00413{left:425.580000px;}
.xa1_c00413{left:427.920000px;}
.xd8_c00413{left:429.000000px;}
.xec_c00413{left:430.500000px;}
.x2a_c00413{left:433.080000px;}
.x88_c00413{left:435.000000px;}
.x15_c00413{left:436.500000px;}
.xb_c00413{left:437.580000px;}
.x1e_c00413{left:439.500000px;}
.xeb_c00413{left:441.420000px;}
.x119_c00413{left:442.920000px;}
.x58_c00413{left:444.000000px;}
.x7e_c00413{left:447.000000px;}
.x60_c00413{left:449.580000px;}
.x4c_c00413{left:451.500000px;}
.x6e_c00413{left:453.000000px;}
.x78_c00413{left:454.500000px;}
.xd1_c00413{left:455.580000px;}
.xcb_c00413{left:458.580000px;}
.x37_c00413{left:460.080000px;}
.x16_c00413{left:461.145000px;}
.x7f_c00413{left:464.580000px;}
.x2b_c00413{left:466.500000px;}
.x1f_c00413{left:468.000000px;}
.xbd_c00413{left:471.420000px;}
.x79_c00413{left:472.920000px;}
.x114_c00413{left:474.420000px;}
.x8f_c00413{left:475.920000px;}
.xfe_c00413{left:477.420000px;}
.xe0_c00413{left:478.500000px;}
.x61_c00413{left:479.775000px;}
.x89_c00413{left:481.920000px;}
.x41_c00413{left:483.000000px;}
.xab_c00413{left:484.500000px;}
.xf7_c00413{left:486.000000px;}
.x10b_c00413{left:487.500000px;}
.x99_c00413{left:489.855000px;}
.x80_c00413{left:490.920000px;}
.x6f_c00413{left:492.000000px;}
.x68_c00413{left:493.500000px;}
.xc_c00413{left:495.000000px;}
.xed_c00413{left:498.000000px;}
.x104_c00413{left:499.500000px;}
.x8a_c00413{left:501.000000px;}
.xd9_c00413{left:502.920000px;}
.xc8_c00413{left:504.000000px;}
.x115_c00413{left:506.580000px;}
.x38_c00413{left:508.275000px;}
.x70_c00413{left:510.000000px;}
.xbe_c00413{left:511.500000px;}
.xf0_c00413{left:513.420000px;}
.x2c_c00413{left:515.580000px;}
.xff_c00413{left:517.080000px;}
.x109_c00413{left:519.000000px;}
.x81_c00413{left:521.580000px;}
.x90_c00413{left:523.080000px;}
.xa2_c00413{left:525.000000px;}
.x20_c00413{left:526.500000px;}
.x10c_c00413{left:527.580000px;}
.xd_c00413{left:529.500000px;}
.x69_c00413{left:532.500000px;}
.x39_c00413{left:534.000000px;}
.xa3_c00413{left:535.080000px;}
.xda_c00413{left:536.145000px;}
.xac_c00413{left:538.920000px;}
.xf1_c00413{left:540.420000px;}
.x42_c00413{left:541.920000px;}
.x62_c00413{left:544.500000px;}
.x21_c00413{left:547.920000px;}
.xf8_c00413{left:549.000000px;}
.x8b_c00413{left:550.500000px;}
.x17_c00413{left:552.420000px;}
.x4d_c00413{left:553.920000px;}
.x7a_c00413{left:555.000000px;}
.x10d_c00413{left:562.500000px;}
.xe8_c00413{left:564.420000px;}
.xb5_c00413{left:565.920000px;}
.xe5_c00413{left:567.000000px;}
.xbf_c00413{left:568.920000px;}
.x11f_c00413{left:570.000000px;}
.x2d_c00413{left:571.920000px;}
.xad_c00413{left:574.500000px;}
.x4e_c00413{left:576.420000px;}
.x116_c00413{left:577.500000px;}
.x22_c00413{left:580.500000px;}
.xe1_c00413{left:581.580000px;}
.x59_c00413{left:585.420000px;}
.xb6_c00413{left:586.920000px;}
.x71_c00413{left:588.000000px;}
.x6a_c00413{left:589.920000px;}
.x3a_c00413{left:591.000000px;}
.xae_c00413{left:592.500000px;}
.x43_c00413{left:594.000000px;}
.xe6_c00413{left:595.500000px;}
.x10e_c00413{left:596.580000px;}
.xa4_c00413{left:597.645000px;}
.x2e_c00413{left:599.580000px;}
.x91_c00413{left:601.500000px;}
.xb7_c00413{left:604.920000px;}
.x72_c00413{left:606.420000px;}
.xe_c00413{left:607.920000px;}
.x11a_c00413{left:613.080000px;}
.x5a_c00413{left:615.420000px;}
.x6b_c00413{left:616.500000px;}
.x4f_c00413{left:618.000000px;}
.x120_c00413{left:619.080000px;}
.x18_c00413{left:621.420000px;}
.xa5_c00413{left:622.500000px;}
.x9a_c00413{left:624.420000px;}
.x63_c00413{left:625.500000px;}
.x10f_c00413{left:630.000000px;}
.xc0_c00413{left:631.500000px;}
.x105_c00413{left:633.000000px;}
.x44_c00413{left:634.080000px;}
.xf_c00413{left:636.000000px;}
.xaf_c00413{left:637.500000px;}
.xf3_c00413{left:640.500000px;}
.x23_c00413{left:642.420000px;}
.x9b_c00413{left:645.000000px;}
.x2f_c00413{left:646.500000px;}
.x106_c00413{left:648.000000px;}
.xb8_c00413{left:649.500000px;}
.x5b_c00413{left:652.920000px;}
.x110_c00413{left:654.000000px;}
.x6c_c00413{left:655.920000px;}
.x11b_c00413{left:657.000000px;}
.x19_c00413{left:658.080000px;}
.x64_c00413{left:661.500000px;}
.x50_c00413{left:662.580000px;}
.xcc_c00413{left:664.080000px;}
.x3b_c00413{left:667.500000px;}
.x73_c00413{left:669.420000px;}
.xd2_c00413{left:672.420000px;}
.xf2_c00413{left:673.500000px;}
.x92_c00413{left:674.580000px;}
.x8c_c00413{left:676.500000px;}
.x51_c00413{left:678.000000px;}
.xc1_c00413{left:679.080000px;}
.x24_c00413{left:681.000000px;}
.x45_c00413{left:684.420000px;}
.xf9_c00413{left:690.000000px;}
.x3c_c00413{left:691.080000px;}
.x30_c00413{left:693.420000px;}
.xc2_c00413{left:696.000000px;}
.xee_c00413{left:697.080000px;}
.x1a_c00413{left:698.580000px;}
.x9c_c00413{left:700.920000px;}
.x52_c00413{left:703.500000px;}
.x93_c00413{left:705.000000px;}
.xd3_c00413{left:708.420000px;}
.xa6_c00413{left:710.580000px;}
.xb0_c00413{left:712.920000px;}
.x10_c00413{left:715.080000px;}
.xe2_c00413{left:717.000000px;}
.x25_c00413{left:721.500000px;}
.x111_c00413{left:723.000000px;}
@media print{
.v0_c00413{vertical-align:0.000000pt;}
.ls0_c00413{letter-spacing:0.000000pt;}
.ws0_c00413{word-spacing:-4.571733pt;}
.ws1_c00413{word-spacing:0.000000pt;}
.fs3_c00413{font-size:16.640000pt;}
.fs1_c00413{font-size:18.133333pt;}
.fs4_c00413{font-size:22.666667pt;}
.fs2_c00413{font-size:25.706667pt;}
.fs5_c00413{font-size:28.746667pt;}
.fs0_c00413{font-size:31.733333pt;}
.fs6_c00413{font-size:34.773333pt;}
.y0_c00413{bottom:0.000000pt;}
.yec_c00413{bottom:221.693333pt;}
.ye9_c00413{bottom:222.440000pt;}
.ye8_c00413{bottom:223.226667pt;}
.ye7_c00413{bottom:223.400000pt;}
.yeb_c00413{bottom:223.973333pt;}
.yea_c00413{bottom:224.360000pt;}
.yed_c00413{bottom:225.306667pt;}
.ye3_c00413{bottom:239.773333pt;}
.ye4_c00413{bottom:240.560000pt;}
.ye6_c00413{bottom:241.106667pt;}
.ye2_c00413{bottom:241.693333pt;}
.ye5_c00413{bottom:241.893333pt;}
.ydf_c00413{bottom:257.106667pt;}
.yde_c00413{bottom:259.026667pt;}
.ye1_c00413{bottom:259.973333pt;}
.ye0_c00413{bottom:260.360000pt;}
.yd8_c00413{bottom:273.693333pt;}
.yd6_c00413{bottom:274.440000pt;}
.ydc_c00413{bottom:275.773333pt;}
.yd9_c00413{bottom:276.360000pt;}
.ydd_c00413{bottom:276.560000pt;}
.yda_c00413{bottom:276.733333pt;}
.yd7_c00413{bottom:277.306667pt;}
.ydb_c00413{bottom:277.693333pt;}
.yd0_c00413{bottom:291.773333pt;}
.yce_c00413{bottom:292.733333pt;}
.yd1_c00413{bottom:293.106667pt;}
.ycf_c00413{bottom:293.693333pt;}
.yd4_c00413{bottom:293.893333pt;}
.yd5_c00413{bottom:294.066667pt;}
.yd2_c00413{bottom:295.026667pt;}
.yd3_c00413{bottom:295.973333pt;}
.ycc_c00413{bottom:310.440000pt;}
.yca_c00413{bottom:311.026667pt;}
.ycb_c00413{bottom:311.226667pt;}
.ycd_c00413{bottom:312.360000pt;}
.yc8_c00413{bottom:327.026667pt;}
.yc7_c00413{bottom:327.400000pt;}
.yc5_c00413{bottom:327.773333pt;}
.yc9_c00413{bottom:328.733333pt;}
.yc6_c00413{bottom:329.693333pt;}
.yc1_c00413{bottom:345.106667pt;}
.yc4_c00413{bottom:346.440000pt;}
.yc2_c00413{bottom:347.226667pt;}
.yc3_c00413{bottom:348.360000pt;}
.ybf_c00413{bottom:362.440000pt;}
.ybd_c00413{bottom:363.400000pt;}
.ybc_c00413{bottom:364.360000pt;}
.ybe_c00413{bottom:364.560000pt;}
.yc0_c00413{bottom:365.306667pt;}
.yba_c00413{bottom:379.026667pt;}
.ybb_c00413{bottom:379.773333pt;}
.yb6_c00413{bottom:381.106667pt;}
.yb5_c00413{bottom:381.693333pt;}
.yb8_c00413{bottom:381.893333pt;}
.yb9_c00413{bottom:382.640000pt;}
.yb7_c00413{bottom:383.026667pt;}
.yb3_c00413{bottom:397.693333pt;}
.yb1_c00413{bottom:398.440000pt;}
.yb2_c00413{bottom:399.400000pt;}
.yb4_c00413{bottom:399.973333pt;}
.yb0_c00413{bottom:400.360000pt;}
.yae_c00413{bottom:415.773333pt;}
.yaf_c00413{bottom:416.733333pt;}
.yad_c00413{bottom:417.693333pt;}
.yac_c00413{bottom:432.733333pt;}
.ya9_c00413{bottom:433.106667pt;}
.yaa_c00413{bottom:435.026667pt;}
.yab_c00413{bottom:435.973333pt;}
.ya6_c00413{bottom:450.440000pt;}
.ya8_c00413{bottom:451.400000pt;}
.ya5_c00413{bottom:452.360000pt;}
.ya7_c00413{bottom:452.560000pt;}
.ya1_c00413{bottom:468.160000pt;}
.ya3_c00413{bottom:469.106667pt;}
.ya0_c00413{bottom:469.693333pt;}
.ya4_c00413{bottom:469.893333pt;}
.ya2_c00413{bottom:471.026667pt;}
.y9e_c00413{bottom:486.440000pt;}
.y9f_c00413{bottom:487.226667pt;}
.y9c_c00413{bottom:487.973333pt;}
.y9d_c00413{bottom:488.360000pt;}
.y98_c00413{bottom:503.773333pt;}
.y99_c00413{bottom:504.560000pt;}
.y9b_c00413{bottom:505.306667pt;}
.y9a_c00413{bottom:505.693333pt;}
.y96_c00413{bottom:521.106667pt;}
.y97_c00413{bottom:521.893333pt;}
.y95_c00413{bottom:522.640000pt;}
.y94_c00413{bottom:523.026667pt;}
.y93_c00413{bottom:538.440000pt;}
.y91_c00413{bottom:540.360000pt;}
.y92_c00413{bottom:541.306667pt;}
.y8c_c00413{bottom:555.026667pt;}
.y8b_c00413{bottom:555.773333pt;}
.y8d_c00413{bottom:557.693333pt;}
.y90_c00413{bottom:557.893333pt;}
.y8e_c00413{bottom:558.640000pt;}
.y8f_c00413{bottom:559.026667pt;}
.y8a_c00413{bottom:574.440000pt;}
.y86_c00413{bottom:575.026667pt;}
.y87_c00413{bottom:575.226667pt;}
.y88_c00413{bottom:575.973333pt;}
.y89_c00413{bottom:576.360000pt;}
.y83_c00413{bottom:589.693333pt;}
.y7e_c00413{bottom:590.440000pt;}
.y85_c00413{bottom:591.600000pt;}
.y82_c00413{bottom:591.773333pt;}
.y7f_c00413{bottom:592.360000pt;}
.y84_c00413{bottom:592.560000pt;}
.y80_c00413{bottom:593.306667pt;}
.y81_c00413{bottom:593.693333pt;}
.y79_c00413{bottom:607.026667pt;}
.y77_c00413{bottom:609.693333pt;}
.y78_c00413{bottom:609.893333pt;}
.y7d_c00413{bottom:610.066667pt;}
.y7a_c00413{bottom:610.640000pt;}
.y7b_c00413{bottom:611.026667pt;}
.y7c_c00413{bottom:611.973333pt;}
.y70_c00413{bottom:624.360000pt;}
.y76_c00413{bottom:626.066667pt;}
.y72_c00413{bottom:626.440000pt;}
.y74_c00413{bottom:627.226667pt;}
.y73_c00413{bottom:627.400000pt;}
.y75_c00413{bottom:627.973333pt;}
.y71_c00413{bottom:628.360000pt;}
.y6c_c00413{bottom:641.693333pt;}
.y6a_c00413{bottom:642.440000pt;}
.y6b_c00413{bottom:643.773333pt;}
.y6f_c00413{bottom:644.733333pt;}
.y6e_c00413{bottom:645.306667pt;}
.y6d_c00413{bottom:645.693333pt;}
.y68_c00413{bottom:660.160000pt;}
.y63_c00413{bottom:661.106667pt;}
.y67_c00413{bottom:661.306667pt;}
.y66_c00413{bottom:662.640000pt;}
.y64_c00413{bottom:663.026667pt;}
.y65_c00413{bottom:663.226667pt;}
.y69_c00413{bottom:663.973333pt;}
.y5f_c00413{bottom:677.693333pt;}
.y61_c00413{bottom:678.440000pt;}
.y62_c00413{bottom:679.400000pt;}
.y5e_c00413{bottom:680.360000pt;}
.y60_c00413{bottom:680.560000pt;}
.y5d_c00413{bottom:695.026667pt;}
.y5b_c00413{bottom:695.773333pt;}
.y57_c00413{bottom:695.973333pt;}
.y59_c00413{bottom:697.106667pt;}
.y58_c00413{bottom:697.693333pt;}
.y5a_c00413{bottom:697.893333pt;}
.y5c_c00413{bottom:698.640000pt;}
.y54_c00413{bottom:712.360000pt;}
.y52_c00413{bottom:714.066667pt;}
.y55_c00413{bottom:714.440000pt;}
.y50_c00413{bottom:715.026667pt;}
.y51_c00413{bottom:715.226667pt;}
.y56_c00413{bottom:715.400000pt;}
.y4f_c00413{bottom:715.973333pt;}
.y53_c00413{bottom:716.360000pt;}
.y4d_c00413{bottom:731.026667pt;}
.y49_c00413{bottom:731.400000pt;}
.y48_c00413{bottom:731.773333pt;}
.y4e_c00413{bottom:732.733333pt;}
.y4a_c00413{bottom:733.306667pt;}
.y4c_c00413{bottom:733.693333pt;}
.y4b_c00413{bottom:733.893333pt;}
.y43_c00413{bottom:749.106667pt;}
.y46_c00413{bottom:749.893333pt;}
.y42_c00413{bottom:750.066667pt;}
.y45_c00413{bottom:751.026667pt;}
.y47_c00413{bottom:751.226667pt;}
.y44_c00413{bottom:751.973333pt;}
.y3d_c00413{bottom:764.360000pt;}
.y3f_c00413{bottom:766.440000pt;}
.y41_c00413{bottom:767.400000pt;}
.y3e_c00413{bottom:768.360000pt;}
.y40_c00413{bottom:769.306667pt;}
.y37_c00413{bottom:782.826667pt;}
.y3c_c00413{bottom:783.773333pt;}
.y3b_c00413{bottom:784.733333pt;}
.y39_c00413{bottom:785.306667pt;}
.y38_c00413{bottom:785.693333pt;}
.y3a_c00413{bottom:785.893333pt;}
.y32_c00413{bottom:800.360000pt;}
.y34_c00413{bottom:801.493333pt;}
.y30_c00413{bottom:802.066667pt;}
.y35_c00413{bottom:802.440000pt;}
.y31_c00413{bottom:803.026667pt;}
.y36_c00413{bottom:803.973333pt;}
.y33_c00413{bottom:804.360000pt;}
.y2d_c00413{bottom:817.693333pt;}
.y29_c00413{bottom:819.226667pt;}
.y2e_c00413{bottom:819.773333pt;}
.y2a_c00413{bottom:820.360000pt;}
.y2c_c00413{bottom:820.560000pt;}
.y2b_c00413{bottom:821.306667pt;}
.y2f_c00413{bottom:822.640000pt;}
.y27_c00413{bottom:835.026667pt;}
.y28_c00413{bottom:837.106667pt;}
.y22_c00413{bottom:837.693333pt;}
.y23_c00413{bottom:837.893333pt;}
.y26_c00413{bottom:838.066667pt;}
.y25_c00413{bottom:838.640000pt;}
.y24_c00413{bottom:839.026667pt;}
.y21_c00413{bottom:852.360000pt;}
.y1d_c00413{bottom:853.106667pt;}
.y20_c00413{bottom:854.440000pt;}
.y1c_c00413{bottom:855.026667pt;}
.y1e_c00413{bottom:855.226667pt;}
.y1f_c00413{bottom:856.360000pt;}
.y1b_c00413{bottom:871.773333pt;}
.y16_c00413{bottom:872.360000pt;}
.y17_c00413{bottom:872.560000pt;}
.y19_c00413{bottom:873.306667pt;}
.y18_c00413{bottom:873.693333pt;}
.y1a_c00413{bottom:874.640000pt;}
.y11_c00413{bottom:887.773333pt;}
.y15_c00413{bottom:889.106667pt;}
.y14_c00413{bottom:889.893333pt;}
.y13_c00413{bottom:890.066667pt;}
.y12_c00413{bottom:891.026667pt;}
.ye_c00413{bottom:906.066667pt;}
.yc_c00413{bottom:906.440000pt;}
.y10_c00413{bottom:907.226667pt;}
.yb_c00413{bottom:908.360000pt;}
.yd_c00413{bottom:908.560000pt;}
.yf_c00413{bottom:909.693333pt;}
.y6_c00413{bottom:923.773333pt;}
.ya_c00413{bottom:923.973333pt;}
.y9_c00413{bottom:924.733333pt;}
.y8_c00413{bottom:925.693333pt;}
.y7_c00413{bottom:926.640000pt;}
.y4_c00413{bottom:941.106667pt;}
.y3_c00413{bottom:943.026667pt;}
.y5_c00413{bottom:943.226667pt;}
.y1_c00413{bottom:975.773333pt;}
.y2_c00413{bottom:976.933333pt;}
.h4_c00413{height:20.466875pt;}
.h2_c00413{height:22.303646pt;}
.h5_c00413{height:27.879557pt;}
.h3_c00413{height:31.618698pt;}
.h6_c00413{height:35.357839pt;}
.h1_c00413{height:39.031380pt;}
.h7_c00413{height:42.770521pt;}
.h0_c00413{height:1186.666667pt;}
.w0_c00413{width:782.666667pt;}
.x0_c00413{left:0.000000pt;}
.x1_c00413{left:134.666667pt;}
.x5c_c00413{left:136.000000pt;}
.xb9_c00413{left:139.626667pt;}
.x53_c00413{left:146.666667pt;}
.x3_c00413{left:148.573333pt;}
.xf4_c00413{left:152.373333pt;}
.xba_c00413{left:153.333333pt;}
.xe9_c00413{left:156.000000pt;}
.xd4_c00413{left:160.000000pt;}
.x117_c00413{left:161.706667pt;}
.xa7_c00413{left:164.000000pt;}
.xdb_c00413{left:166.666667pt;}
.x54_c00413{left:168.373333pt;}
.x46_c00413{left:169.333333pt;}
.x94_c00413{left:171.040000pt;}
.xc3_c00413{left:173.706667pt;}
.x26_c00413{left:175.040000pt;}
.x74_c00413{left:176.373333pt;}
.x82_c00413{left:177.706667pt;}
.xb1_c00413{left:179.626667pt;}
.xfa_c00413{left:181.333333pt;}
.x47_c00413{left:182.293333pt;}
.xe3_c00413{left:184.960000pt;}
.x3d_c00413{left:186.293333pt;}
.x31_c00413{left:188.000000pt;}
.xe7_c00413{left:190.293333pt;}
.x65_c00413{left:192.373333pt;}
.x11_c00413{left:193.333333pt;}
.x8d_c00413{left:194.666667pt;}
.x6d_c00413{left:195.626667pt;}
.x9d_c00413{left:199.040000pt;}
.x5d_c00413{left:201.706667pt;}
.x112_c00413{left:204.373333pt;}
.xfb_c00413{left:205.333333pt;}
.x4_c00413{left:208.960000pt;}
.x12_c00413{left:211.626667pt;}
.x32_c00413{left:213.706667pt;}
.x55_c00413{left:214.666667pt;}
.x95_c00413{left:216.000000pt;}
.x7b_c00413{left:217.333333pt;}
.x8e_c00413{left:218.666667pt;}
.xea_c00413{left:220.960000pt;}
.xa8_c00413{left:224.000000pt;}
.x66_c00413{left:226.293333pt;}
.x107_c00413{left:227.626667pt;}
.x3e_c00413{left:229.333333pt;}
.xdc_c00413{left:230.293333pt;}
.xc4_c00413{left:232.000000pt;}
.x5e_c00413{left:235.040000pt;}
.x96_c00413{left:236.373333pt;}
.xfc_c00413{left:237.706667pt;}
.x33_c00413{left:238.666667pt;}
.xcf_c00413{left:239.626667pt;}
.x56_c00413{left:240.960000pt;}
.x11c_c00413{left:243.040000pt;}
.x1b_c00413{left:244.373333pt;}
.x83_c00413{left:246.666667pt;}
.xc5_c00413{left:247.626667pt;}
.x3f_c00413{left:249.333333pt;}
.x5_c00413{left:250.666667pt;}
.x9e_c00413{left:252.000000pt;}
.x75_c00413{left:253.333333pt;}
.x10a_c00413{left:255.040000pt;}
.x118_c00413{left:256.000000pt;}
.x84_c00413{left:258.666667pt;}
.x48_c00413{left:259.626667pt;}
.xcd_c00413{left:261.333333pt;}
.x113_c00413{left:262.666667pt;}
.x108_c00413{left:264.000000pt;}
.x11d_c00413{left:265.333333pt;}
.xef_c00413{left:269.333333pt;}
.x1c_c00413{left:270.293333pt;}
.x76_c00413{left:272.000000pt;}
.xbb_c00413{left:272.960000pt;}
.x6_c00413{left:274.666667pt;}
.x97_c00413{left:276.373333pt;}
.xce_c00413{left:277.706667pt;}
.x27_c00413{left:278.666667pt;}
.x13_c00413{left:280.000000pt;}
.xd5_c00413{left:282.666667pt;}
.x49_c00413{left:284.373333pt;}
.xa9_c00413{left:287.040000pt;}
.x100_c00413{left:288.000000pt;}
.x11e_c00413{left:289.333333pt;}
.x7_c00413{left:290.666667pt;}
.xb2_c00413{left:292.373333pt;}
.x67_c00413{left:294.666667pt;}
.x98_c00413{left:296.000000pt;}
.xdd_c00413{left:296.960000pt;}
.xc9_c00413{left:299.240000pt;}
.xde_c00413{left:300.960000pt;}
.xc6_c00413{left:304.373333pt;}
.xf5_c00413{left:305.333333pt;}
.x7c_c00413{left:307.040000pt;}
.x85_c00413{left:308.000000pt;}
.x14_c00413{left:309.333333pt;}
.x34_c00413{left:310.293333pt;}
.x28_c00413{left:314.666667pt;}
.x8_c00413{left:316.960000pt;}
.x101_c00413{left:318.666667pt;}
.x40_c00413{left:319.626667pt;}
.x86_c00413{left:321.333333pt;}
.xb3_c00413{left:324.000000pt;}
.xd6_c00413{left:324.960000pt;}
.x1d_c00413{left:326.666667pt;}
.x35_c00413{left:328.960000pt;}
.x87_c00413{left:332.000000pt;}
.x9f_c00413{left:333.333333pt;}
.x9_c00413{left:335.040000pt;}
.x4a_c00413{left:337.706667pt;}
.xb4_c00413{left:338.666667pt;}
.x29_c00413{left:340.000000pt;}
.xbc_c00413{left:340.960000pt;}
.xd7_c00413{left:342.293333pt;}
.x102_c00413{left:343.626667pt;}
.xd0_c00413{left:345.333333pt;}
.x77_c00413{left:347.626667pt;}
.x7d_c00413{left:351.626667pt;}
.xf6_c00413{left:353.333333pt;}
.xe4_c00413{left:354.293333pt;}
.x36_c00413{left:356.573333pt;}
.xfd_c00413{left:357.706667pt;}
.xa_c00413{left:359.040000pt;}
.xca_c00413{left:360.000000pt;}
.x2_c00413{left:361.333333pt;}
.xa0_c00413{left:363.040000pt;}
.x5f_c00413{left:364.960000pt;}
.xdf_c00413{left:366.666667pt;}
.xc7_c00413{left:368.000000pt;}
.x57_c00413{left:371.626667pt;}
.xaa_c00413{left:373.706667pt;}
.x103_c00413{left:376.960000pt;}
.x4b_c00413{left:378.293333pt;}
.xa1_c00413{left:380.373333pt;}
.xd8_c00413{left:381.333333pt;}
.xec_c00413{left:382.666667pt;}
.x2a_c00413{left:384.960000pt;}
.x88_c00413{left:386.666667pt;}
.x15_c00413{left:388.000000pt;}
.xb_c00413{left:388.960000pt;}
.x1e_c00413{left:390.666667pt;}
.xeb_c00413{left:392.373333pt;}
.x119_c00413{left:393.706667pt;}
.x58_c00413{left:394.666667pt;}
.x7e_c00413{left:397.333333pt;}
.x60_c00413{left:399.626667pt;}
.x4c_c00413{left:401.333333pt;}
.x6e_c00413{left:402.666667pt;}
.x78_c00413{left:404.000000pt;}
.xd1_c00413{left:404.960000pt;}
.xcb_c00413{left:407.626667pt;}
.x37_c00413{left:408.960000pt;}
.x16_c00413{left:409.906667pt;}
.x7f_c00413{left:412.960000pt;}
.x2b_c00413{left:414.666667pt;}
.x1f_c00413{left:416.000000pt;}
.xbd_c00413{left:419.040000pt;}
.x79_c00413{left:420.373333pt;}
.x114_c00413{left:421.706667pt;}
.x8f_c00413{left:423.040000pt;}
.xfe_c00413{left:424.373333pt;}
.xe0_c00413{left:425.333333pt;}
.x61_c00413{left:426.466667pt;}
.x89_c00413{left:428.373333pt;}
.x41_c00413{left:429.333333pt;}
.xab_c00413{left:430.666667pt;}
.xf7_c00413{left:432.000000pt;}
.x10b_c00413{left:433.333333pt;}
.x99_c00413{left:435.426667pt;}
.x80_c00413{left:436.373333pt;}
.x6f_c00413{left:437.333333pt;}
.x68_c00413{left:438.666667pt;}
.xc_c00413{left:440.000000pt;}
.xed_c00413{left:442.666667pt;}
.x104_c00413{left:444.000000pt;}
.x8a_c00413{left:445.333333pt;}
.xd9_c00413{left:447.040000pt;}
.xc8_c00413{left:448.000000pt;}
.x115_c00413{left:450.293333pt;}
.x38_c00413{left:451.800000pt;}
.x70_c00413{left:453.333333pt;}
.xbe_c00413{left:454.666667pt;}
.xf0_c00413{left:456.373333pt;}
.x2c_c00413{left:458.293333pt;}
.xff_c00413{left:459.626667pt;}
.x109_c00413{left:461.333333pt;}
.x81_c00413{left:463.626667pt;}
.x90_c00413{left:464.960000pt;}
.xa2_c00413{left:466.666667pt;}
.x20_c00413{left:468.000000pt;}
.x10c_c00413{left:468.960000pt;}
.xd_c00413{left:470.666667pt;}
.x69_c00413{left:473.333333pt;}
.x39_c00413{left:474.666667pt;}
.xa3_c00413{left:475.626667pt;}
.xda_c00413{left:476.573333pt;}
.xac_c00413{left:479.040000pt;}
.xf1_c00413{left:480.373333pt;}
.x42_c00413{left:481.706667pt;}
.x62_c00413{left:484.000000pt;}
.x21_c00413{left:487.040000pt;}
.xf8_c00413{left:488.000000pt;}
.x8b_c00413{left:489.333333pt;}
.x17_c00413{left:491.040000pt;}
.x4d_c00413{left:492.373333pt;}
.x7a_c00413{left:493.333333pt;}
.x10d_c00413{left:500.000000pt;}
.xe8_c00413{left:501.706667pt;}
.xb5_c00413{left:503.040000pt;}
.xe5_c00413{left:504.000000pt;}
.xbf_c00413{left:505.706667pt;}
.x11f_c00413{left:506.666667pt;}
.x2d_c00413{left:508.373333pt;}
.xad_c00413{left:510.666667pt;}
.x4e_c00413{left:512.373333pt;}
.x116_c00413{left:513.333333pt;}
.x22_c00413{left:516.000000pt;}
.xe1_c00413{left:516.960000pt;}
.x59_c00413{left:520.373333pt;}
.xb6_c00413{left:521.706667pt;}
.x71_c00413{left:522.666667pt;}
.x6a_c00413{left:524.373333pt;}
.x3a_c00413{left:525.333333pt;}
.xae_c00413{left:526.666667pt;}
.x43_c00413{left:528.000000pt;}
.xe6_c00413{left:529.333333pt;}
.x10e_c00413{left:530.293333pt;}
.xa4_c00413{left:531.240000pt;}
.x2e_c00413{left:532.960000pt;}
.x91_c00413{left:534.666667pt;}
.xb7_c00413{left:537.706667pt;}
.x72_c00413{left:539.040000pt;}
.xe_c00413{left:540.373333pt;}
.x11a_c00413{left:544.960000pt;}
.x5a_c00413{left:547.040000pt;}
.x6b_c00413{left:548.000000pt;}
.x4f_c00413{left:549.333333pt;}
.x120_c00413{left:550.293333pt;}
.x18_c00413{left:552.373333pt;}
.xa5_c00413{left:553.333333pt;}
.x9a_c00413{left:555.040000pt;}
.x63_c00413{left:556.000000pt;}
.x10f_c00413{left:560.000000pt;}
.xc0_c00413{left:561.333333pt;}
.x105_c00413{left:562.666667pt;}
.x44_c00413{left:563.626667pt;}
.xf_c00413{left:565.333333pt;}
.xaf_c00413{left:566.666667pt;}
.xf3_c00413{left:569.333333pt;}
.x23_c00413{left:571.040000pt;}
.x9b_c00413{left:573.333333pt;}
.x2f_c00413{left:574.666667pt;}
.x106_c00413{left:576.000000pt;}
.xb8_c00413{left:577.333333pt;}
.x5b_c00413{left:580.373333pt;}
.x110_c00413{left:581.333333pt;}
.x6c_c00413{left:583.040000pt;}
.x11b_c00413{left:584.000000pt;}
.x19_c00413{left:584.960000pt;}
.x64_c00413{left:588.000000pt;}
.x50_c00413{left:588.960000pt;}
.xcc_c00413{left:590.293333pt;}
.x3b_c00413{left:593.333333pt;}
.x73_c00413{left:595.040000pt;}
.xd2_c00413{left:597.706667pt;}
.xf2_c00413{left:598.666667pt;}
.x92_c00413{left:599.626667pt;}
.x8c_c00413{left:601.333333pt;}
.x51_c00413{left:602.666667pt;}
.xc1_c00413{left:603.626667pt;}
.x24_c00413{left:605.333333pt;}
.x45_c00413{left:608.373333pt;}
.xf9_c00413{left:613.333333pt;}
.x3c_c00413{left:614.293333pt;}
.x30_c00413{left:616.373333pt;}
.xc2_c00413{left:618.666667pt;}
.xee_c00413{left:619.626667pt;}
.x1a_c00413{left:620.960000pt;}
.x9c_c00413{left:623.040000pt;}
.x52_c00413{left:625.333333pt;}
.x93_c00413{left:626.666667pt;}
.xd3_c00413{left:629.706667pt;}
.xa6_c00413{left:631.626667pt;}
.xb0_c00413{left:633.706667pt;}
.x10_c00413{left:635.626667pt;}
.xe2_c00413{left:637.333333pt;}
.x25_c00413{left:641.333333pt;}
.x111_c00413{left:642.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_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_916524d9953ea531c6ee93fd.woff2')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.maf_c00414{transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);}
.m52_c00414{transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);}
.m96_c00414{transform:matrix(0.350104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350104,0.000000,0.000000,0.250000,0,0);}
.m11b_c00414{transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);}
.m2a_c00414{transform:matrix(0.361196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361196,0.000000,0.000000,0.250000,0,0);}
.m113_c00414{transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);}
.m0_c00414{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m26_c00414{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m5b_c00414{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mfb_c00414{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m2c_c00414{transform:matrix(0.371549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371549,0.000000,0.000000,0.250000,0,0);}
.m10e_c00414{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m5e_c00414{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00414{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m3c_c00414{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m117_c00414{transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);}
.m49_c00414{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m99_c00414{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m8f_c00414{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.ma1_c00414{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m9f_c00414{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m4c_c00414{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m3b_c00414{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.m100_c00414{transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);}
.m39_c00414{transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);}
.m51_c00414{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m5d_c00414{transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);}
.mc3_c00414{transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);}
.mbd_c00414{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.md3_c00414{transform:matrix(0.399540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399540,0.000000,0.000000,0.250000,0,0);}
.m75_c00414{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_c00414{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.mac_c00414{transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402224,0.000000,0.000000,0.250000,0,0);}
.m87_c00414{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m6f_c00414{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.ma0_c00414{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m64_c00414{transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);}
.m9a_c00414{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.mcf_c00414{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m7a_c00414{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.mba_c00414{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m15_c00414{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m38_c00414{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.mc1_c00414{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mc0_c00414{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m29_c00414{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m110_c00414{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m71_c00414{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m46_c00414{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mc8_c00414{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m45_c00414{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.ma3_c00414{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.md1_c00414{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m48_c00414{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.mb1_c00414{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mdb_c00414{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.med_c00414{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m58_c00414{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m9b_c00414{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m103_c00414{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m47_c00414{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m107_c00414{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.mca_c00414{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m65_c00414{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.md2_c00414{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.md9_c00414{transform:matrix(0.432515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432515,0.000000,0.000000,0.250000,0,0);}
.m88_c00414{transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);}
.mcc_c00414{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m9e_c00414{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m18_c00414{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m11c_c00414{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mbf_c00414{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.mee_c00414{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.mbe_c00414{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m4f_c00414{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m2_c00414{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m50_c00414{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.mc4_c00414{transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);}
.m32_c00414{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mf8_c00414{transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);}
.m119_c00414{transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);}
.ma5_c00414{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m19_c00414{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m14_c00414{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m5_c00414{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m97_c00414{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m66_c00414{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m6a_c00414{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m81_c00414{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.m59_c00414{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m4e_c00414{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.ma7_c00414{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mf9_c00414{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m98_c00414{transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);}
.m43_c00414{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.m35_c00414{transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);}
.m105_c00414{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.mc2_c00414{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.m10c_c00414{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m6c_c00414{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.mae_c00414{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.me9_c00414{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m112_c00414{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m84_c00414{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m11d_c00414{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m22_c00414{transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);}
.m4b_c00414{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.ma6_c00414{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.mad_c00414{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.me_c00414{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m7_c00414{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m115_c00414{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m53_c00414{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m70_c00414{transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);}
.m2b_c00414{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.mdf_c00414{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m67_c00414{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mc9_c00414{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.mb6_c00414{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.mbc_c00414{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m85_c00414{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m80_c00414{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m77_c00414{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.mc_c00414{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m9d_c00414{transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);}
.m1c_c00414{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m23_c00414{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_c00414{transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);}
.mbb_c00414{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mb4_c00414{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m82_c00414{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.mce_c00414{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m11a_c00414{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m74_c00414{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m3f_c00414{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mfd_c00414{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m86_c00414{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m3a_c00414{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m56_c00414{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m1e_c00414{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m62_c00414{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m102_c00414{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.m40_c00414{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m104_c00414{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m10d_c00414{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);}
.m42_c00414{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m83_c00414{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m5a_c00414{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m7b_c00414{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m106_c00414{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.m8e_c00414{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m33_c00414{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mfe_c00414{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);}
.me4_c00414{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.ma4_c00414{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m8d_c00414{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.mdc_c00414{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m60_c00414{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mab_c00414{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m1d_c00414{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m109_c00414{transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);}
.ma_c00414{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m9_c00414{transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);}
.m24_c00414{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m7f_c00414{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m17_c00414{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.me2_c00414{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.maa_c00414{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m34_c00414{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m30_c00414{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mea_c00414{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m6b_c00414{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m16_c00414{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m55_c00414{transform:matrix(0.539412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539412,0.000000,0.000000,0.250000,0,0);}
.m31_c00414{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.me3_c00414{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m5c_c00414{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m92_c00414{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m3e_c00414{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m7c_c00414{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.me6_c00414{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m28_c00414{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mdd_c00414{transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);}
.mc5_c00414{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mf4_c00414{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m54_c00414{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m8c_c00414{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m63_c00414{transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);}
.m3d_c00414{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m21_c00414{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m7d_c00414{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m90_c00414{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m6d_c00414{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.mb9_c00414{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m41_c00414{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m95_c00414{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.md8_c00414{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mf5_c00414{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m93_c00414{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m36_c00414{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.md7_c00414{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.mb5_c00414{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m20_c00414{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mcb_c00414{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mff_c00414{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m8a_c00414{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.meb_c00414{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.m44_c00414{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m27_c00414{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m4d_c00414{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m91_c00414{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m78_c00414{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m1b_c00414{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.md_c00414{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.mc6_c00414{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m6_c00414{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mde_c00414{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m68_c00414{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m118_c00414{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.m2e_c00414{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.mfc_c00414{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m79_c00414{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m76_c00414{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.me8_c00414{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mf0_c00414{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.mb7_c00414{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.mcd_c00414{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mec_c00414{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.m72_c00414{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.mb0_c00414{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m12_c00414{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);}
.me7_c00414{transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);}
.m5f_c00414{transform:matrix(0.606846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606846,0.000000,0.000000,0.250000,0,0);}
.m25_c00414{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m37_c00414{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m114_c00414{transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);}
.m4_c00414{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mf_c00414{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.mfa_c00414{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.mda_c00414{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);}
.m2f_c00414{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mf1_c00414{transform:matrix(0.627941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627941,0.000000,0.000000,0.250000,0,0);}
.mf2_c00414{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.me5_c00414{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m10f_c00414{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.mef_c00414{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m8_c00414{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m9c_c00414{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.m1_c00414{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m108_c00414{transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);}
.mf3_c00414{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m69_c00414{transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);}
.mf7_c00414{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m111_c00414{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m89_c00414{transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);}
.m10b_c00414{transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);}
.m1f_c00414{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m1a_c00414{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m10_c00414{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m10a_c00414{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m116_c00414{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.m101_c00414{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.me0_c00414{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.md5_c00414{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m6e_c00414{transform:matrix(0.697647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697647,0.000000,0.000000,0.250000,0,0);}
.mf6_c00414{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);}
.m2d_c00414{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.mb_c00414{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m4a_c00414{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m57_c00414{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m13_c00414{transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);}
.md0_c00414{transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);}
.m3_c00414{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.mb2_c00414{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m7e_c00414{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.md4_c00414{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m11_c00414{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.mc7_c00414{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mb3_c00414{transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);}
.m94_c00414{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.md6_c00414{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.ma2_c00414{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m8b_c00414{transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);}
.m61_c00414{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.ma8_c00414{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.me1_c00414{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,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:-3.037551px;}
.ws1_c00414{word-spacing:-2.923710px;}
.ws2_c00414{word-spacing:0.000000px;}
.fc0_c00414{color:transparent;}
.fs7_c00414{font-size:13.620000px;}
.fs2_c00414{font-size:18.720000px;}
.fs1_c00414{font-size:20.400000px;}
.fs5_c00414{font-size:25.500000px;}
.fs3_c00414{font-size:28.920000px;}
.fs4_c00414{font-size:32.340000px;}
.fs0_c00414{font-size:35.700000px;}
.fs6_c00414{font-size:39.120000px;}
.y0_c00414{bottom:0.000000px;}
.yde_c00414{bottom:245.970000px;}
.ye2_c00414{bottom:246.825000px;}
.ye0_c00414{bottom:247.905000px;}
.ye1_c00414{bottom:248.130000px;}
.ydf_c00414{bottom:248.970000px;}
.ye3_c00414{bottom:250.050000px;}
.ydd_c00414{bottom:262.905000px;}
.ydc_c00414{bottom:265.050000px;}
.yd8_c00414{bottom:276.825000px;}
.yda_c00414{bottom:277.905000px;}
.yd6_c00414{bottom:278.550000px;}
.yd9_c00414{bottom:278.970000px;}
.ydb_c00414{bottom:279.195000px;}
.yd7_c00414{bottom:280.050000px;}
.yd5_c00414{bottom:291.825000px;}
.yd2_c00414{bottom:292.905000px;}
.yd3_c00414{bottom:293.970000px;}
.yd4_c00414{bottom:295.050000px;}
.ycf_c00414{bottom:305.970000px;}
.yd0_c00414{bottom:306.825000px;}
.yca_c00414{bottom:307.050000px;}
.ycc_c00414{bottom:307.905000px;}
.ycb_c00414{bottom:308.550000px;}
.ycd_c00414{bottom:308.970000px;}
.yd1_c00414{bottom:309.195000px;}
.yce_c00414{bottom:310.050000px;}
.yc8_c00414{bottom:321.405000px;}
.yc5_c00414{bottom:321.630000px;}
.yc7_c00414{bottom:321.825000px;}
.yc6_c00414{bottom:322.470000px;}
.yc9_c00414{bottom:325.050000px;}
.ybc_c00414{bottom:335.550000px;}
.ybf_c00414{bottom:336.405000px;}
.ybe_c00414{bottom:336.825000px;}
.ybd_c00414{bottom:337.470000px;}
.yc2_c00414{bottom:337.905000px;}
.yc3_c00414{bottom:338.130000px;}
.yc0_c00414{bottom:338.550000px;}
.yc1_c00414{bottom:338.970000px;}
.yc4_c00414{bottom:340.050000px;}
.yb7_c00414{bottom:350.325000px;}
.yb6_c00414{bottom:351.405000px;}
.yb9_c00414{bottom:352.470000px;}
.yba_c00414{bottom:352.905000px;}
.yb8_c00414{bottom:353.130000px;}
.ybb_c00414{bottom:353.970000px;}
.yb5_c00414{bottom:365.325000px;}
.yae_c00414{bottom:365.550000px;}
.yb0_c00414{bottom:366.405000px;}
.yb2_c00414{bottom:366.825000px;}
.yaf_c00414{bottom:367.470000px;}
.yb4_c00414{bottom:367.695000px;}
.yb1_c00414{bottom:368.550000px;}
.yb3_c00414{bottom:370.050000px;}
.yad_c00414{bottom:380.325000px;}
.yac_c00414{bottom:382.470000px;}
.ya7_c00414{bottom:394.470000px;}
.yaa_c00414{bottom:395.325000px;}
.yab_c00414{bottom:395.550000px;}
.ya9_c00414{bottom:396.405000px;}
.ya5_c00414{bottom:396.630000px;}
.ya8_c00414{bottom:397.470000px;}
.ya6_c00414{bottom:398.550000px;}
.ya4_c00414{bottom:410.325000px;}
.y9f_c00414{bottom:410.970000px;}
.ya2_c00414{bottom:411.405000px;}
.ya1_c00414{bottom:412.050000px;}
.ya0_c00414{bottom:412.695000px;}
.ya3_c00414{bottom:413.550000px;}
.y9d_c00414{bottom:424.905000px;}
.y9c_c00414{bottom:425.325000px;}
.y9e_c00414{bottom:425.970000px;}
.y98_c00414{bottom:426.195000px;}
.y9b_c00414{bottom:427.050000px;}
.y99_c00414{bottom:427.470000px;}
.y9a_c00414{bottom:428.550000px;}
.y94_c00414{bottom:466.245000px;}
.y96_c00414{bottom:467.745000px;}
.y95_c00414{bottom:468.405000px;}
.y93_c00414{bottom:469.470000px;}
.y97_c00414{bottom:469.905000px;}
.y8d_c00414{bottom:485.745000px;}
.y90_c00414{bottom:487.245000px;}
.y8f_c00414{bottom:487.470000px;}
.y8e_c00414{bottom:487.905000px;}
.y91_c00414{bottom:488.130000px;}
.y8c_c00414{bottom:488.970000px;}
.y92_c00414{bottom:489.405000px;}
.y88_c00414{bottom:504.405000px;}
.y89_c00414{bottom:506.745000px;}
.y8a_c00414{bottom:507.630000px;}
.y8b_c00414{bottom:508.470000px;}
.y87_c00414{bottom:508.905000px;}
.y84_c00414{bottom:525.180000px;}
.y82_c00414{bottom:526.245000px;}
.y85_c00414{bottom:527.130000px;}
.y86_c00414{bottom:527.970000px;}
.y83_c00414{bottom:528.405000px;}
.y80_c00414{bottom:545.745000px;}
.y7f_c00414{bottom:547.905000px;}
.y81_c00414{bottom:548.130000px;}
.y7c_c00414{bottom:565.245000px;}
.y7e_c00414{bottom:566.130000px;}
.y7a_c00414{bottom:566.325000px;}
.y7d_c00414{bottom:566.970000px;}
.y7b_c00414{bottom:567.405000px;}
.y79_c00414{bottom:584.745000px;}
.y78_c00414{bottom:586.905000px;}
.y77_c00414{bottom:587.130000px;}
.y74_c00414{bottom:603.405000px;}
.y72_c00414{bottom:605.325000px;}
.y70_c00414{bottom:605.745000px;}
.y75_c00414{bottom:606.630000px;}
.y73_c00414{bottom:606.825000px;}
.y76_c00414{bottom:607.470000px;}
.y71_c00414{bottom:607.905000px;}
.y6e_c00414{bottom:625.245000px;}
.y6f_c00414{bottom:626.130000px;}
.y6d_c00414{bottom:627.405000px;}
.y69_c00414{bottom:642.405000px;}
.y6b_c00414{bottom:643.470000px;}
.y6c_c00414{bottom:644.745000px;}
.y68_c00414{bottom:645.630000px;}
.y6a_c00414{bottom:646.905000px;}
.y64_c00414{bottom:663.180000px;}
.y66_c00414{bottom:663.405000px;}
.y67_c00414{bottom:664.245000px;}
.y65_c00414{bottom:665.325000px;}
.y63_c00414{bottom:666.405000px;}
.y5f_c00414{bottom:683.325000px;}
.y61_c00414{bottom:684.825000px;}
.y60_c00414{bottom:685.905000px;}
.y62_c00414{bottom:686.130000px;}
.y5c_c00414{bottom:703.245000px;}
.y5d_c00414{bottom:705.405000px;}
.y5e_c00414{bottom:705.630000px;}
.y5b_c00414{bottom:722.325000px;}
.y59_c00414{bottom:722.745000px;}
.y56_c00414{bottom:723.825000px;}
.y5a_c00414{bottom:724.245000px;}
.y58_c00414{bottom:724.905000px;}
.y57_c00414{bottom:725.130000px;}
.y53_c00414{bottom:743.745000px;}
.y52_c00414{bottom:744.405000px;}
.y55_c00414{bottom:744.630000px;}
.y54_c00414{bottom:745.905000px;}
.y4d_c00414{bottom:763.245000px;}
.y51_c00414{bottom:764.130000px;}
.y4e_c00414{bottom:764.325000px;}
.y50_c00414{bottom:765.405000px;}
.y4f_c00414{bottom:766.470000px;}
.y4a_c00414{bottom:780.405000px;}
.y4c_c00414{bottom:783.630000px;}
.y4b_c00414{bottom:783.825000px;}
.y49_c00414{bottom:784.905000px;}
.y46_c00414{bottom:802.245000px;}
.y47_c00414{bottom:804.405000px;}
.y48_c00414{bottom:804.630000px;}
.y42_c00414{bottom:821.745000px;}
.y43_c00414{bottom:823.905000px;}
.y44_c00414{bottom:824.130000px;}
.y41_c00414{bottom:824.970000px;}
.y45_c00414{bottom:825.405000px;}
.y3d_c00414{bottom:841.245000px;}
.y3b_c00414{bottom:842.325000px;}
.y40_c00414{bottom:842.745000px;}
.y3a_c00414{bottom:843.405000px;}
.y3e_c00414{bottom:843.825000px;}
.y3c_c00414{bottom:844.470000px;}
.y3f_c00414{bottom:844.905000px;}
.y36_c00414{bottom:860.325000px;}
.y35_c00414{bottom:860.745000px;}
.y37_c00414{bottom:860.970000px;}
.y39_c00414{bottom:862.245000px;}
.y34_c00414{bottom:862.905000px;}
.y38_c00414{bottom:863.970000px;}
.y2f_c00414{bottom:879.405000px;}
.y2e_c00414{bottom:880.245000px;}
.y30_c00414{bottom:880.680000px;}
.y33_c00414{bottom:881.325000px;}
.y2d_c00414{bottom:882.405000px;}
.y32_c00414{bottom:882.630000px;}
.y31_c00414{bottom:883.905000px;}
.y2c_c00414{bottom:901.245000px;}
.y2b_c00414{bottom:902.130000px;}
.y2a_c00414{bottom:902.970000px;}
.y29_c00414{bottom:903.405000px;}
.y27_c00414{bottom:920.745000px;}
.y28_c00414{bottom:921.825000px;}
.y25_c00414{bottom:922.470000px;}
.y26_c00414{bottom:922.905000px;}
.y24_c00414{bottom:937.905000px;}
.y23_c00414{bottom:938.325000px;}
.y21_c00414{bottom:939.405000px;}
.y22_c00414{bottom:940.245000px;}
.y1f_c00414{bottom:959.745000px;}
.y20_c00414{bottom:961.905000px;}
.y1b_c00414{bottom:979.245000px;}
.y1d_c00414{bottom:980.325000px;}
.y1a_c00414{bottom:981.405000px;}
.y1c_c00414{bottom:981.630000px;}
.y1e_c00414{bottom:982.470000px;}
.y14_c00414{bottom:998.745000px;}
.y16_c00414{bottom:999.180000px;}
.y15_c00414{bottom:1000.245000px;}
.y13_c00414{bottom:1000.905000px;}
.y18_c00414{bottom:1001.130000px;}
.y19_c00414{bottom:1001.970000px;}
.y17_c00414{bottom:1002.405000px;}
.y12_c00414{bottom:1019.745000px;}
.ye_c00414{bottom:1020.405000px;}
.y11_c00414{bottom:1020.825000px;}
.yf_c00414{bottom:1021.470000px;}
.y10_c00414{bottom:1021.905000px;}
.yc_c00414{bottom:1039.245000px;}
.ya_c00414{bottom:1040.130000px;}
.y9_c00414{bottom:1040.970000px;}
.yd_c00414{bottom:1041.405000px;}
.yb_c00414{bottom:1042.470000px;}
.y3_c00414{bottom:1057.245000px;}
.y7_c00414{bottom:1058.325000px;}
.y4_c00414{bottom:1059.630000px;}
.y6_c00414{bottom:1059.825000px;}
.y5_c00414{bottom:1060.905000px;}
.y8_c00414{bottom:1061.970000px;}
.y1_c00414{bottom:1097.745000px;}
.y2_c00414{bottom:1099.050000px;}
.h8_c00414{height:16.752334px;}
.h3_c00414{height:23.025234px;}
.h2_c00414{height:25.091602px;}
.h6_c00414{height:31.364502px;}
.h4_c00414{height:35.571035px;}
.h5_c00414{height:39.777568px;}
.h1_c00414{height:43.910303px;}
.h7_c00414{height:48.116836px;}
.h0_c00414{height:1335.000000px;}
.w0_c00414{width:880.500000px;}
.x0_c00414{left:0.000000px;}
.x3_c00414{left:153.000000px;}
.x80_c00414{left:154.275000px;}
.xf5_c00414{left:165.000000px;}
.xa9_c00414{left:168.000000px;}
.x4d_c00414{left:169.500000px;}
.x1c_c00414{left:180.420000px;}
.xdf_c00414{left:181.500000px;}
.xfd_c00414{left:183.420000px;}
.xe2_c00414{left:184.500000px;}
.x76_c00414{left:186.000000px;}
.x48_c00414{left:188.580000px;}
.x4e_c00414{left:190.500000px;}
.x81_c00414{left:191.580000px;}
.x61_c00414{left:193.080000px;}
.x94_c00414{left:195.420000px;}
.xf0_c00414{left:198.000000px;}
.x4_c00414{left:199.500000px;}
.x10_c00414{left:202.500000px;}
.xb9_c00414{left:205.920000px;}
.x32_c00414{left:207.000000px;}
.xe6_c00414{left:209.580000px;}
.x68_c00414{left:211.080000px;}
.x9b_c00414{left:213.000000px;}
.xda_c00414{left:214.920000px;}
.x49_c00414{left:216.000000px;}
.xa0_c00414{left:217.920000px;}
.xc2_c00414{left:220.080000px;}
.x11_c00414{left:222.000000px;}
.x1d_c00414{left:223.080000px;}
.x29_c00414{left:225.420000px;}
.xa7_c00414{left:228.855000px;}
.x58_c00414{left:230.580000px;}
.xcb_c00414{left:232.080000px;}
.xd6_c00414{left:235.080000px;}
.xcf_c00414{left:237.000000px;}
.x9c_c00414{left:238.500000px;}
.x95_c00414{left:240.420000px;}
.x5_c00414{left:241.500000px;}
.x4f_c00414{left:242.580000px;}
.xbe_c00414{left:244.920000px;}
.xf9_c00414{left:247.500000px;}
.xf6_c00414{left:249.420000px;}
.x3e_c00414{left:250.500000px;}
.x12_c00414{left:252.000000px;}
.xf8_c00414{left:253.080000px;}
.xe7_c00414{left:255.000000px;}
.xe3_c00414{left:256.080000px;}
.x82_c00414{left:257.580000px;}
.x62_c00414{left:259.500000px;}
.x6_c00414{left:261.000000px;}
.x50_c00414{left:262.500000px;}
.x3f_c00414{left:265.500000px;}
.x33_c00414{left:268.500000px;}
.x2a_c00414{left:271.500000px;}
.x4a_c00414{left:277.500000px;}
.xc7_c00414{left:278.580000px;}
.xe8_c00414{left:280.080000px;}
.x13_c00414{left:283.500000px;}
.x70_c00414{left:284.580000px;}
.x9d_c00414{left:286.080000px;}
.xb0_c00414{left:288.000000px;}
.x59_c00414{left:289.080000px;}
.xdb_c00414{left:292.500000px;}
.x63_c00414{left:294.000000px;}
.xa1_c00414{left:296.580000px;}
.x40_c00414{left:299.580000px;}
.x34_c00414{left:303.000000px;}
.xf7_c00414{left:304.500000px;}
.xb1_c00414{left:307.920000px;}
.xd0_c00414{left:309.000000px;}
.xe4_c00414{left:310.500000px;}
.x89_c00414{left:315.420000px;}
.x4b_c00414{left:316.500000px;}
.xa8_c00414{left:318.000000px;}
.x35_c00414{left:319.920000px;}
.x96_c00414{left:321.000000px;}
.x1e_c00414{left:322.500000px;}
.xaa_c00414{left:323.580000px;}
.x77_c00414{left:325.920000px;}
.xf1_c00414{left:327.420000px;}
.xdc_c00414{left:330.000000px;}
.xbf_c00414{left:331.500000px;}
.xea_c00414{left:333.000000px;}
.xa2_c00414{left:334.500000px;}
.xb2_c00414{left:336.000000px;}
.x7_c00414{left:337.080000px;}
.x2b_c00414{left:339.420000px;}
.xe0_c00414{left:340.500000px;}
.x36_c00414{left:343.500000px;}
.x8a_c00414{left:345.420000px;}
.x4c_c00414{left:348.000000px;}
.x1f_c00414{left:352.080000px;}
.x69_c00414{left:354.420000px;}
.x5a_c00414{left:357.000000px;}
.x78_c00414{left:358.500000px;}
.x14_c00414{left:359.580000px;}
.xfe_c00414{left:361.080000px;}
.xab_c00414{left:363.000000px;}
.x90_c00414{left:364.080000px;}
.x8_c00414{left:366.000000px;}
.xd7_c00414{left:367.500000px;}
.xf2_c00414{left:369.000000px;}
.x51_c00414{left:372.000000px;}
.xeb_c00414{left:373.500000px;}
.x71_c00414{left:375.000000px;}
.x79_c00414{left:376.080000px;}
.x15_c00414{left:378.420000px;}
.xe9_c00414{left:381.000000px;}
.x9e_c00414{left:384.000000px;}
.x37_c00414{left:385.500000px;}
.x41_c00414{left:388.080000px;}
.xb3_c00414{left:389.580000px;}
.x52_c00414{left:391.920000px;}
.x20_c00414{left:393.420000px;}
.xcc_c00414{left:394.500000px;}
.xa3_c00414{left:396.000000px;}
.xc8_c00414{left:397.920000px;}
.x5b_c00414{left:399.000000px;}
.x83_c00414{left:400.500000px;}
.xed_c00414{left:402.000000px;}
.x38_c00414{left:403.500000px;}
.x72_c00414{left:406.920000px;}
.x2_c00414{left:408.000000px;}
.x9_c00414{left:409.500000px;}
.xd1_c00414{left:411.000000px;}
.xdd_c00414{left:414.420000px;}
.x7a_c00414{left:416.145000px;}
.x2c_c00414{left:417.420000px;}
.xff_c00414{left:418.920000px;}
.x53_c00414{left:420.000000px;}
.x16_c00414{left:423.000000px;}
.xc0_c00414{left:426.000000px;}
.xfa_c00414{left:427.500000px;}
.xb4_c00414{left:428.580000px;}
.xd2_c00414{left:430.080000px;}
.xe1_c00414{left:435.000000px;}
.x97_c00414{left:436.080000px;}
.x21_c00414{left:439.500000px;}
.x91_c00414{left:440.580000px;}
.x6a_c00414{left:444.000000px;}
.x42_c00414{left:445.080000px;}
.xa_c00414{left:446.580000px;}
.x8b_c00414{left:448.500000px;}
.xa4_c00414{left:450.420000px;}
.xac_c00414{left:454.080000px;}
.x84_c00414{left:456.645000px;}
.xba_c00414{left:459.000000px;}
.x22_c00414{left:460.080000px;}
.xd8_c00414{left:461.580000px;}
.x73_c00414{left:465.000000px;}
.x2d_c00414{left:466.080000px;}
.x8c_c00414{left:468.000000px;}
.xad_c00414{left:469.500000px;}
.xcd_c00414{left:471.420000px;}
.xc3_c00414{left:472.500000px;}
.x6b_c00414{left:474.420000px;}
.x43_c00414{left:475.920000px;}
.x39_c00414{left:478.500000px;}
.xde_c00414{left:483.000000px;}
.x17_c00414{left:486.000000px;}
.xec_c00414{left:487.920000px;}
.x54_c00414{left:490.920000px;}
.xe5_c00414{left:493.500000px;}
.xd3_c00414{left:495.420000px;}
.xbb_c00414{left:501.420000px;}
.x44_c00414{left:502.500000px;}
.x18_c00414{left:503.580000px;}
.x23_c00414{left:508.920000px;}
.xce_c00414{left:511.920000px;}
.x64_c00414{left:513.000000px;}
.xae_c00414{left:514.275000px;}
.x92_c00414{left:516.000000px;}
.xb5_c00414{left:517.080000px;}
.x3a_c00414{left:519.000000px;}
.x85_c00414{left:523.500000px;}
.xb_c00414{left:525.000000px;}
.x8d_c00414{left:528.000000px;}
.xbc_c00414{left:531.000000px;}
.x7b_c00414{left:533.145000px;}
.xd4_c00414{left:534.420000px;}
.xb6_c00414{left:535.920000px;}
.xc4_c00414{left:537.000000px;}
.x6c_c00414{left:539.580000px;}
.x74_c00414{left:541.500000px;}
.x65_c00414{left:542.580000px;}
.x3b_c00414{left:544.500000px;}
.x2e_c00414{left:545.775000px;}
.x86_c00414{left:552.000000px;}
.xa5_c00414{left:553.080000px;}
.xaf_c00414{left:555.000000px;}
.xc1_c00414{left:556.080000px;}
.x55_c00414{left:557.145000px;}
.x98_c00414{left:560.145000px;}
.x5c_c00414{left:562.500000px;}
.x45_c00414{left:567.000000px;}
.xc_c00414{left:573.000000px;}
.xb7_c00414{left:574.500000px;}
.x8e_c00414{left:576.420000px;}
.xf3_c00414{left:577.500000px;}
.x24_c00414{left:578.580000px;}
.xd9_c00414{left:583.500000px;}
.x6d_c00414{left:585.420000px;}
.x2f_c00414{left:586.500000px;}
.x5d_c00414{left:588.645000px;}
.x19_c00414{left:589.920000px;}
.xc9_c00414{left:591.000000px;}
.xd_c00414{left:595.500000px;}
.x7c_c00414{left:597.000000px;}
.x3c_c00414{left:598.500000px;}
.x25_c00414{left:600.420000px;}
.x100_c00414{left:601.500000px;}
.x8f_c00414{left:606.000000px;}
.x87_c00414{left:607.080000px;}
.x66_c00414{left:611.580000px;}
.x6e_c00414{left:613.500000px;}
.xfb_c00414{left:615.000000px;}
.x46_c00414{left:617.580000px;}
.x56_c00414{left:622.080000px;}
.x7d_c00414{left:624.000000px;}
.xc5_c00414{left:627.000000px;}
.x93_c00414{left:628.920000px;}
.x26_c00414{left:630.000000px;}
.xe_c00414{left:633.000000px;}
.x88_c00414{left:634.500000px;}
.x1a_c00414{left:636.420000px;}
.xa6_c00414{left:640.080000px;}
.x5e_c00414{left:651.000000px;}
.xbd_c00414{left:652.920000px;}
.xc6_c00414{left:654.000000px;}
.x30_c00414{left:657.000000px;}
.xee_c00414{left:658.500000px;}
.x75_c00414{left:659.580000px;}
.x27_c00414{left:661.500000px;}
.xb8_c00414{left:663.420000px;}
.x7e_c00414{left:666.000000px;}
.x67_c00414{left:669.000000px;}
.x57_c00414{left:670.275000px;}
.x5f_c00414{left:672.000000px;}
.x3d_c00414{left:673.500000px;}
.x99_c00414{left:675.000000px;}
.x47_c00414{left:677.145000px;}
.xca_c00414{left:681.420000px;}
.xd5_c00414{left:682.500000px;}
.xf4_c00414{left:686.580000px;}
.x7f_c00414{left:692.355000px;}
.x9f_c00414{left:693.855000px;}
.xfc_c00414{left:695.355000px;}
.x1b_c00414{left:697.500000px;}
.x60_c00414{left:700.275000px;}
.x9a_c00414{left:701.580000px;}
.x31_c00414{left:703.080000px;}
.x1_c00414{left:706.500000px;}
.xef_c00414{left:707.580000px;}
.x6f_c00414{left:712.500000px;}
.x28_c00414{left:716.580000px;}
.xf_c00414{left:720.000000px;}
@media print{
.v0_c00414{vertical-align:0.000000pt;}
.ls0_c00414{letter-spacing:0.000000pt;}
.ws0_c00414{word-spacing:-2.700045pt;}
.ws1_c00414{word-spacing:-2.598853pt;}
.ws2_c00414{word-spacing:0.000000pt;}
.fs7_c00414{font-size:12.106667pt;}
.fs2_c00414{font-size:16.640000pt;}
.fs1_c00414{font-size:18.133333pt;}
.fs5_c00414{font-size:22.666667pt;}
.fs3_c00414{font-size:25.706667pt;}
.fs4_c00414{font-size:28.746667pt;}
.fs0_c00414{font-size:31.733333pt;}
.fs6_c00414{font-size:34.773333pt;}
.y0_c00414{bottom:0.000000pt;}
.yde_c00414{bottom:218.640000pt;}
.ye2_c00414{bottom:219.400000pt;}
.ye0_c00414{bottom:220.360000pt;}
.ye1_c00414{bottom:220.560000pt;}
.ydf_c00414{bottom:221.306667pt;}
.ye3_c00414{bottom:222.266667pt;}
.ydd_c00414{bottom:233.693333pt;}
.ydc_c00414{bottom:235.600000pt;}
.yd8_c00414{bottom:246.066667pt;}
.yda_c00414{bottom:247.026667pt;}
.yd6_c00414{bottom:247.600000pt;}
.yd9_c00414{bottom:247.973333pt;}
.ydb_c00414{bottom:248.173333pt;}
.yd7_c00414{bottom:248.933333pt;}
.yd5_c00414{bottom:259.400000pt;}
.yd2_c00414{bottom:260.360000pt;}
.yd3_c00414{bottom:261.306667pt;}
.yd4_c00414{bottom:262.266667pt;}
.ycf_c00414{bottom:271.973333pt;}
.yd0_c00414{bottom:272.733333pt;}
.yca_c00414{bottom:272.933333pt;}
.ycc_c00414{bottom:273.693333pt;}
.ycb_c00414{bottom:274.266667pt;}
.ycd_c00414{bottom:274.640000pt;}
.yd1_c00414{bottom:274.840000pt;}
.yce_c00414{bottom:275.600000pt;}
.yc8_c00414{bottom:285.693333pt;}
.yc5_c00414{bottom:285.893333pt;}
.yc7_c00414{bottom:286.066667pt;}
.yc6_c00414{bottom:286.640000pt;}
.yc9_c00414{bottom:288.933333pt;}
.ybc_c00414{bottom:298.266667pt;}
.ybf_c00414{bottom:299.026667pt;}
.ybe_c00414{bottom:299.400000pt;}
.ybd_c00414{bottom:299.973333pt;}
.yc2_c00414{bottom:300.360000pt;}
.yc3_c00414{bottom:300.560000pt;}
.yc0_c00414{bottom:300.933333pt;}
.yc1_c00414{bottom:301.306667pt;}
.yc4_c00414{bottom:302.266667pt;}
.yb7_c00414{bottom:311.400000pt;}
.yb6_c00414{bottom:312.360000pt;}
.yb9_c00414{bottom:313.306667pt;}
.yba_c00414{bottom:313.693333pt;}
.yb8_c00414{bottom:313.893333pt;}
.ybb_c00414{bottom:314.640000pt;}
.yb5_c00414{bottom:324.733333pt;}
.yae_c00414{bottom:324.933333pt;}
.yb0_c00414{bottom:325.693333pt;}
.yb2_c00414{bottom:326.066667pt;}
.yaf_c00414{bottom:326.640000pt;}
.yb4_c00414{bottom:326.840000pt;}
.yb1_c00414{bottom:327.600000pt;}
.yb3_c00414{bottom:328.933333pt;}
.yad_c00414{bottom:338.066667pt;}
.yac_c00414{bottom:339.973333pt;}
.ya7_c00414{bottom:350.640000pt;}
.yaa_c00414{bottom:351.400000pt;}
.yab_c00414{bottom:351.600000pt;}
.ya9_c00414{bottom:352.360000pt;}
.ya5_c00414{bottom:352.560000pt;}
.ya8_c00414{bottom:353.306667pt;}
.ya6_c00414{bottom:354.266667pt;}
.ya4_c00414{bottom:364.733333pt;}
.y9f_c00414{bottom:365.306667pt;}
.ya2_c00414{bottom:365.693333pt;}
.ya1_c00414{bottom:366.266667pt;}
.ya0_c00414{bottom:366.840000pt;}
.ya3_c00414{bottom:367.600000pt;}
.y9d_c00414{bottom:377.693333pt;}
.y9c_c00414{bottom:378.066667pt;}
.y9e_c00414{bottom:378.640000pt;}
.y98_c00414{bottom:378.840000pt;}
.y9b_c00414{bottom:379.600000pt;}
.y99_c00414{bottom:379.973333pt;}
.y9a_c00414{bottom:380.933333pt;}
.y94_c00414{bottom:414.440000pt;}
.y96_c00414{bottom:415.773333pt;}
.y95_c00414{bottom:416.360000pt;}
.y93_c00414{bottom:417.306667pt;}
.y97_c00414{bottom:417.693333pt;}
.y8d_c00414{bottom:431.773333pt;}
.y90_c00414{bottom:433.106667pt;}
.y8f_c00414{bottom:433.306667pt;}
.y8e_c00414{bottom:433.693333pt;}
.y91_c00414{bottom:433.893333pt;}
.y8c_c00414{bottom:434.640000pt;}
.y92_c00414{bottom:435.026667pt;}
.y88_c00414{bottom:448.360000pt;}
.y89_c00414{bottom:450.440000pt;}
.y8a_c00414{bottom:451.226667pt;}
.y8b_c00414{bottom:451.973333pt;}
.y87_c00414{bottom:452.360000pt;}
.y84_c00414{bottom:466.826667pt;}
.y82_c00414{bottom:467.773333pt;}
.y85_c00414{bottom:468.560000pt;}
.y86_c00414{bottom:469.306667pt;}
.y83_c00414{bottom:469.693333pt;}
.y80_c00414{bottom:485.106667pt;}
.y7f_c00414{bottom:487.026667pt;}
.y81_c00414{bottom:487.226667pt;}
.y7c_c00414{bottom:502.440000pt;}
.y7e_c00414{bottom:503.226667pt;}
.y7a_c00414{bottom:503.400000pt;}
.y7d_c00414{bottom:503.973333pt;}
.y7b_c00414{bottom:504.360000pt;}
.y79_c00414{bottom:519.773333pt;}
.y78_c00414{bottom:521.693333pt;}
.y77_c00414{bottom:521.893333pt;}
.y74_c00414{bottom:536.360000pt;}
.y72_c00414{bottom:538.066667pt;}
.y70_c00414{bottom:538.440000pt;}
.y75_c00414{bottom:539.226667pt;}
.y73_c00414{bottom:539.400000pt;}
.y76_c00414{bottom:539.973333pt;}
.y71_c00414{bottom:540.360000pt;}
.y6e_c00414{bottom:555.773333pt;}
.y6f_c00414{bottom:556.560000pt;}
.y6d_c00414{bottom:557.693333pt;}
.y69_c00414{bottom:571.026667pt;}
.y6b_c00414{bottom:571.973333pt;}
.y6c_c00414{bottom:573.106667pt;}
.y68_c00414{bottom:573.893333pt;}
.y6a_c00414{bottom:575.026667pt;}
.y64_c00414{bottom:589.493333pt;}
.y66_c00414{bottom:589.693333pt;}
.y67_c00414{bottom:590.440000pt;}
.y65_c00414{bottom:591.400000pt;}
.y63_c00414{bottom:592.360000pt;}
.y5f_c00414{bottom:607.400000pt;}
.y61_c00414{bottom:608.733333pt;}
.y60_c00414{bottom:609.693333pt;}
.y62_c00414{bottom:609.893333pt;}
.y5c_c00414{bottom:625.106667pt;}
.y5d_c00414{bottom:627.026667pt;}
.y5e_c00414{bottom:627.226667pt;}
.y5b_c00414{bottom:642.066667pt;}
.y59_c00414{bottom:642.440000pt;}
.y56_c00414{bottom:643.400000pt;}
.y5a_c00414{bottom:643.773333pt;}
.y58_c00414{bottom:644.360000pt;}
.y57_c00414{bottom:644.560000pt;}
.y53_c00414{bottom:661.106667pt;}
.y52_c00414{bottom:661.693333pt;}
.y55_c00414{bottom:661.893333pt;}
.y54_c00414{bottom:663.026667pt;}
.y4d_c00414{bottom:678.440000pt;}
.y51_c00414{bottom:679.226667pt;}
.y4e_c00414{bottom:679.400000pt;}
.y50_c00414{bottom:680.360000pt;}
.y4f_c00414{bottom:681.306667pt;}
.y4a_c00414{bottom:693.693333pt;}
.y4c_c00414{bottom:696.560000pt;}
.y4b_c00414{bottom:696.733333pt;}
.y49_c00414{bottom:697.693333pt;}
.y46_c00414{bottom:713.106667pt;}
.y47_c00414{bottom:715.026667pt;}
.y48_c00414{bottom:715.226667pt;}
.y42_c00414{bottom:730.440000pt;}
.y43_c00414{bottom:732.360000pt;}
.y44_c00414{bottom:732.560000pt;}
.y41_c00414{bottom:733.306667pt;}
.y45_c00414{bottom:733.693333pt;}
.y3d_c00414{bottom:747.773333pt;}
.y3b_c00414{bottom:748.733333pt;}
.y40_c00414{bottom:749.106667pt;}
.y3a_c00414{bottom:749.693333pt;}
.y3e_c00414{bottom:750.066667pt;}
.y3c_c00414{bottom:750.640000pt;}
.y3f_c00414{bottom:751.026667pt;}
.y36_c00414{bottom:764.733333pt;}
.y35_c00414{bottom:765.106667pt;}
.y37_c00414{bottom:765.306667pt;}
.y39_c00414{bottom:766.440000pt;}
.y34_c00414{bottom:767.026667pt;}
.y38_c00414{bottom:767.973333pt;}
.y2f_c00414{bottom:781.693333pt;}
.y2e_c00414{bottom:782.440000pt;}
.y30_c00414{bottom:782.826667pt;}
.y33_c00414{bottom:783.400000pt;}
.y2d_c00414{bottom:784.360000pt;}
.y32_c00414{bottom:784.560000pt;}
.y31_c00414{bottom:785.693333pt;}
.y2c_c00414{bottom:801.106667pt;}
.y2b_c00414{bottom:801.893333pt;}
.y2a_c00414{bottom:802.640000pt;}
.y29_c00414{bottom:803.026667pt;}
.y27_c00414{bottom:818.440000pt;}
.y28_c00414{bottom:819.400000pt;}
.y25_c00414{bottom:819.973333pt;}
.y26_c00414{bottom:820.360000pt;}
.y24_c00414{bottom:833.693333pt;}
.y23_c00414{bottom:834.066667pt;}
.y21_c00414{bottom:835.026667pt;}
.y22_c00414{bottom:835.773333pt;}
.y1f_c00414{bottom:853.106667pt;}
.y20_c00414{bottom:855.026667pt;}
.y1b_c00414{bottom:870.440000pt;}
.y1d_c00414{bottom:871.400000pt;}
.y1a_c00414{bottom:872.360000pt;}
.y1c_c00414{bottom:872.560000pt;}
.y1e_c00414{bottom:873.306667pt;}
.y14_c00414{bottom:887.773333pt;}
.y16_c00414{bottom:888.160000pt;}
.y15_c00414{bottom:889.106667pt;}
.y13_c00414{bottom:889.693333pt;}
.y18_c00414{bottom:889.893333pt;}
.y19_c00414{bottom:890.640000pt;}
.y17_c00414{bottom:891.026667pt;}
.y12_c00414{bottom:906.440000pt;}
.ye_c00414{bottom:907.026667pt;}
.y11_c00414{bottom:907.400000pt;}
.yf_c00414{bottom:907.973333pt;}
.y10_c00414{bottom:908.360000pt;}
.yc_c00414{bottom:923.773333pt;}
.ya_c00414{bottom:924.560000pt;}
.y9_c00414{bottom:925.306667pt;}
.yd_c00414{bottom:925.693333pt;}
.yb_c00414{bottom:926.640000pt;}
.y3_c00414{bottom:939.773333pt;}
.y7_c00414{bottom:940.733333pt;}
.y4_c00414{bottom:941.893333pt;}
.y6_c00414{bottom:942.066667pt;}
.y5_c00414{bottom:943.026667pt;}
.y8_c00414{bottom:943.973333pt;}
.y1_c00414{bottom:975.773333pt;}
.y2_c00414{bottom:976.933333pt;}
.h8_c00414{height:14.890964pt;}
.h3_c00414{height:20.466875pt;}
.h2_c00414{height:22.303646pt;}
.h6_c00414{height:27.879557pt;}
.h4_c00414{height:31.618698pt;}
.h5_c00414{height:35.357839pt;}
.h1_c00414{height:39.031380pt;}
.h7_c00414{height:42.770521pt;}
.h0_c00414{height:1186.666667pt;}
.w0_c00414{width:782.666667pt;}
.x0_c00414{left:0.000000pt;}
.x3_c00414{left:136.000000pt;}
.x80_c00414{left:137.133333pt;}
.xf5_c00414{left:146.666667pt;}
.xa9_c00414{left:149.333333pt;}
.x4d_c00414{left:150.666667pt;}
.x1c_c00414{left:160.373333pt;}
.xdf_c00414{left:161.333333pt;}
.xfd_c00414{left:163.040000pt;}
.xe2_c00414{left:164.000000pt;}
.x76_c00414{left:165.333333pt;}
.x48_c00414{left:167.626667pt;}
.x4e_c00414{left:169.333333pt;}
.x81_c00414{left:170.293333pt;}
.x61_c00414{left:171.626667pt;}
.x94_c00414{left:173.706667pt;}
.xf0_c00414{left:176.000000pt;}
.x4_c00414{left:177.333333pt;}
.x10_c00414{left:180.000000pt;}
.xb9_c00414{left:183.040000pt;}
.x32_c00414{left:184.000000pt;}
.xe6_c00414{left:186.293333pt;}
.x68_c00414{left:187.626667pt;}
.x9b_c00414{left:189.333333pt;}
.xda_c00414{left:191.040000pt;}
.x49_c00414{left:192.000000pt;}
.xa0_c00414{left:193.706667pt;}
.xc2_c00414{left:195.626667pt;}
.x11_c00414{left:197.333333pt;}
.x1d_c00414{left:198.293333pt;}
.x29_c00414{left:200.373333pt;}
.xa7_c00414{left:203.426667pt;}
.x58_c00414{left:204.960000pt;}
.xcb_c00414{left:206.293333pt;}
.xd6_c00414{left:208.960000pt;}
.xcf_c00414{left:210.666667pt;}
.x9c_c00414{left:212.000000pt;}
.x95_c00414{left:213.706667pt;}
.x5_c00414{left:214.666667pt;}
.x4f_c00414{left:215.626667pt;}
.xbe_c00414{left:217.706667pt;}
.xf9_c00414{left:220.000000pt;}
.xf6_c00414{left:221.706667pt;}
.x3e_c00414{left:222.666667pt;}
.x12_c00414{left:224.000000pt;}
.xf8_c00414{left:224.960000pt;}
.xe7_c00414{left:226.666667pt;}
.xe3_c00414{left:227.626667pt;}
.x82_c00414{left:228.960000pt;}
.x62_c00414{left:230.666667pt;}
.x6_c00414{left:232.000000pt;}
.x50_c00414{left:233.333333pt;}
.x3f_c00414{left:236.000000pt;}
.x33_c00414{left:238.666667pt;}
.x2a_c00414{left:241.333333pt;}
.x4a_c00414{left:246.666667pt;}
.xc7_c00414{left:247.626667pt;}
.xe8_c00414{left:248.960000pt;}
.x13_c00414{left:252.000000pt;}
.x70_c00414{left:252.960000pt;}
.x9d_c00414{left:254.293333pt;}
.xb0_c00414{left:256.000000pt;}
.x59_c00414{left:256.960000pt;}
.xdb_c00414{left:260.000000pt;}
.x63_c00414{left:261.333333pt;}
.xa1_c00414{left:263.626667pt;}
.x40_c00414{left:266.293333pt;}
.x34_c00414{left:269.333333pt;}
.xf7_c00414{left:270.666667pt;}
.xb1_c00414{left:273.706667pt;}
.xd0_c00414{left:274.666667pt;}
.xe4_c00414{left:276.000000pt;}
.x89_c00414{left:280.373333pt;}
.x4b_c00414{left:281.333333pt;}
.xa8_c00414{left:282.666667pt;}
.x35_c00414{left:284.373333pt;}
.x96_c00414{left:285.333333pt;}
.x1e_c00414{left:286.666667pt;}
.xaa_c00414{left:287.626667pt;}
.x77_c00414{left:289.706667pt;}
.xf1_c00414{left:291.040000pt;}
.xdc_c00414{left:293.333333pt;}
.xbf_c00414{left:294.666667pt;}
.xea_c00414{left:296.000000pt;}
.xa2_c00414{left:297.333333pt;}
.xb2_c00414{left:298.666667pt;}
.x7_c00414{left:299.626667pt;}
.x2b_c00414{left:301.706667pt;}
.xe0_c00414{left:302.666667pt;}
.x36_c00414{left:305.333333pt;}
.x8a_c00414{left:307.040000pt;}
.x4c_c00414{left:309.333333pt;}
.x1f_c00414{left:312.960000pt;}
.x69_c00414{left:315.040000pt;}
.x5a_c00414{left:317.333333pt;}
.x78_c00414{left:318.666667pt;}
.x14_c00414{left:319.626667pt;}
.xfe_c00414{left:320.960000pt;}
.xab_c00414{left:322.666667pt;}
.x90_c00414{left:323.626667pt;}
.x8_c00414{left:325.333333pt;}
.xd7_c00414{left:326.666667pt;}
.xf2_c00414{left:328.000000pt;}
.x51_c00414{left:330.666667pt;}
.xeb_c00414{left:332.000000pt;}
.x71_c00414{left:333.333333pt;}
.x79_c00414{left:334.293333pt;}
.x15_c00414{left:336.373333pt;}
.xe9_c00414{left:338.666667pt;}
.x9e_c00414{left:341.333333pt;}
.x37_c00414{left:342.666667pt;}
.x41_c00414{left:344.960000pt;}
.xb3_c00414{left:346.293333pt;}
.x52_c00414{left:348.373333pt;}
.x20_c00414{left:349.706667pt;}
.xcc_c00414{left:350.666667pt;}
.xa3_c00414{left:352.000000pt;}
.xc8_c00414{left:353.706667pt;}
.x5b_c00414{left:354.666667pt;}
.x83_c00414{left:356.000000pt;}
.xed_c00414{left:357.333333pt;}
.x38_c00414{left:358.666667pt;}
.x72_c00414{left:361.706667pt;}
.x2_c00414{left:362.666667pt;}
.x9_c00414{left:364.000000pt;}
.xd1_c00414{left:365.333333pt;}
.xdd_c00414{left:368.373333pt;}
.x7a_c00414{left:369.906667pt;}
.x2c_c00414{left:371.040000pt;}
.xff_c00414{left:372.373333pt;}
.x53_c00414{left:373.333333pt;}
.x16_c00414{left:376.000000pt;}
.xc0_c00414{left:378.666667pt;}
.xfa_c00414{left:380.000000pt;}
.xb4_c00414{left:380.960000pt;}
.xd2_c00414{left:382.293333pt;}
.xe1_c00414{left:386.666667pt;}
.x97_c00414{left:387.626667pt;}
.x21_c00414{left:390.666667pt;}
.x91_c00414{left:391.626667pt;}
.x6a_c00414{left:394.666667pt;}
.x42_c00414{left:395.626667pt;}
.xa_c00414{left:396.960000pt;}
.x8b_c00414{left:398.666667pt;}
.xa4_c00414{left:400.373333pt;}
.xac_c00414{left:403.626667pt;}
.x84_c00414{left:405.906667pt;}
.xba_c00414{left:408.000000pt;}
.x22_c00414{left:408.960000pt;}
.xd8_c00414{left:410.293333pt;}
.x73_c00414{left:413.333333pt;}
.x2d_c00414{left:414.293333pt;}
.x8c_c00414{left:416.000000pt;}
.xad_c00414{left:417.333333pt;}
.xcd_c00414{left:419.040000pt;}
.xc3_c00414{left:420.000000pt;}
.x6b_c00414{left:421.706667pt;}
.x43_c00414{left:423.040000pt;}
.x39_c00414{left:425.333333pt;}
.xde_c00414{left:429.333333pt;}
.x17_c00414{left:432.000000pt;}
.xec_c00414{left:433.706667pt;}
.x54_c00414{left:436.373333pt;}
.xe5_c00414{left:438.666667pt;}
.xd3_c00414{left:440.373333pt;}
.xbb_c00414{left:445.706667pt;}
.x44_c00414{left:446.666667pt;}
.x18_c00414{left:447.626667pt;}
.x23_c00414{left:452.373333pt;}
.xce_c00414{left:455.040000pt;}
.x64_c00414{left:456.000000pt;}
.xae_c00414{left:457.133333pt;}
.x92_c00414{left:458.666667pt;}
.xb5_c00414{left:459.626667pt;}
.x3a_c00414{left:461.333333pt;}
.x85_c00414{left:465.333333pt;}
.xb_c00414{left:466.666667pt;}
.x8d_c00414{left:469.333333pt;}
.xbc_c00414{left:472.000000pt;}
.x7b_c00414{left:473.906667pt;}
.xd4_c00414{left:475.040000pt;}
.xb6_c00414{left:476.373333pt;}
.xc4_c00414{left:477.333333pt;}
.x6c_c00414{left:479.626667pt;}
.x74_c00414{left:481.333333pt;}
.x65_c00414{left:482.293333pt;}
.x3b_c00414{left:484.000000pt;}
.x2e_c00414{left:485.133333pt;}
.x86_c00414{left:490.666667pt;}
.xa5_c00414{left:491.626667pt;}
.xaf_c00414{left:493.333333pt;}
.xc1_c00414{left:494.293333pt;}
.x55_c00414{left:495.240000pt;}
.x98_c00414{left:497.906667pt;}
.x5c_c00414{left:500.000000pt;}
.x45_c00414{left:504.000000pt;}
.xc_c00414{left:509.333333pt;}
.xb7_c00414{left:510.666667pt;}
.x8e_c00414{left:512.373333pt;}
.xf3_c00414{left:513.333333pt;}
.x24_c00414{left:514.293333pt;}
.xd9_c00414{left:518.666667pt;}
.x6d_c00414{left:520.373333pt;}
.x2f_c00414{left:521.333333pt;}
.x5d_c00414{left:523.240000pt;}
.x19_c00414{left:524.373333pt;}
.xc9_c00414{left:525.333333pt;}
.xd_c00414{left:529.333333pt;}
.x7c_c00414{left:530.666667pt;}
.x3c_c00414{left:532.000000pt;}
.x25_c00414{left:533.706667pt;}
.x100_c00414{left:534.666667pt;}
.x8f_c00414{left:538.666667pt;}
.x87_c00414{left:539.626667pt;}
.x66_c00414{left:543.626667pt;}
.x6e_c00414{left:545.333333pt;}
.xfb_c00414{left:546.666667pt;}
.x46_c00414{left:548.960000pt;}
.x56_c00414{left:552.960000pt;}
.x7d_c00414{left:554.666667pt;}
.xc5_c00414{left:557.333333pt;}
.x93_c00414{left:559.040000pt;}
.x26_c00414{left:560.000000pt;}
.xe_c00414{left:562.666667pt;}
.x88_c00414{left:564.000000pt;}
.x1a_c00414{left:565.706667pt;}
.xa6_c00414{left:568.960000pt;}
.x5e_c00414{left:578.666667pt;}
.xbd_c00414{left:580.373333pt;}
.xc6_c00414{left:581.333333pt;}
.x30_c00414{left:584.000000pt;}
.xee_c00414{left:585.333333pt;}
.x75_c00414{left:586.293333pt;}
.x27_c00414{left:588.000000pt;}
.xb8_c00414{left:589.706667pt;}
.x7e_c00414{left:592.000000pt;}
.x67_c00414{left:594.666667pt;}
.x57_c00414{left:595.800000pt;}
.x5f_c00414{left:597.333333pt;}
.x3d_c00414{left:598.666667pt;}
.x99_c00414{left:600.000000pt;}
.x47_c00414{left:601.906667pt;}
.xca_c00414{left:605.706667pt;}
.xd5_c00414{left:606.666667pt;}
.xf4_c00414{left:610.293333pt;}
.x7f_c00414{left:615.426667pt;}
.x9f_c00414{left:616.760000pt;}
.xfc_c00414{left:618.093333pt;}
.x1b_c00414{left:620.000000pt;}
.x60_c00414{left:622.466667pt;}
.x9a_c00414{left:623.626667pt;}
.x31_c00414{left:624.960000pt;}
.x1_c00414{left:628.000000pt;}
.xef_c00414{left:628.960000pt;}
.x6f_c00414{left:633.333333pt;}
.x28_c00414{left:636.960000pt;}
.xf_c00414{left:640.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_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_d69e63a5be1b1f4b6ae3c5e8.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m107_c00415{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.md2_c00415{transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);}
.mff_c00415{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.mda_c00415{transform:matrix(0.345092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345092,0.000000,0.000000,0.250000,0,0);}
.mdf_c00415{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mf5_c00415{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m8d_c00415{transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);}
.me1_c00415{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m11_c00415{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m39_c00415{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.maa_c00415{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.md9_c00415{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.ma4_c00415{transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);}
.m3d_c00415{transform:matrix(0.383581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383581,0.000000,0.000000,0.250000,0,0);}
.m5f_c00415{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mc1_c00415{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.mf7_c00415{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m8e_c00415{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.maf_c00415{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mb0_c00415{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m0_c00415{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.mbc_c00415{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m30_c00415{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.mb9_c00415{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.mc5_c00415{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mee_c00415{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.mea_c00415{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m98_c00415{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m108_c00415{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m6f_c00415{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mdc_c00415{transform:matrix(0.410788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410788,0.000000,0.000000,0.250000,0,0);}
.m48_c00415{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.mcc_c00415{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.mfb_c00415{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mc4_c00415{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.me_c00415{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m83_c00415{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m104_c00415{transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);}
.m59_c00415{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mcf_c00415{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m99_c00415{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m25_c00415{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.mac_c00415{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mf2_c00415{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mb3_c00415{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m26_c00415{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m19_c00415{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m7b_c00415{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m43_c00415{transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);}
.m55_c00415{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mc0_c00415{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m90_c00415{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m72_c00415{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.md1_c00415{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m67_c00415{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m58_c00415{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m18_c00415{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.mf1_c00415{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m7d_c00415{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m82_c00415{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.mb8_c00415{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m4f_c00415{transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);}
.mc7_c00415{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.mf6_c00415{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mdd_c00415{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m10d_c00415{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m106_c00415{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m45_c00415{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m91_c00415{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.m2f_c00415{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.md7_c00415{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m12_c00415{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.md8_c00415{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.me6_c00415{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m10b_c00415{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m5d_c00415{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m7c_c00415{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m9a_c00415{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.meb_c00415{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.mb6_c00415{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.mec_c00415{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m41_c00415{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m69_c00415{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m3b_c00415{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m9c_c00415{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m74_c00415{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mcd_c00415{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m8f_c00415{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m84_c00415{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m7f_c00415{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m20_c00415{transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);}
.md0_c00415{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m36_c00415{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m44_c00415{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m15_c00415{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.mf8_c00415{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m77_c00415{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.m10c_c00415{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m2d_c00415{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.mc3_c00415{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m54_c00415{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m40_c00415{transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);}
.md3_c00415{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m22_c00415{transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);}
.md_c00415{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mde_c00415{transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);}
.m4_c00415{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m68_c00415{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m5a_c00415{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m29_c00415{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m88_c00415{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.ma2_c00415{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.mc_c00415{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m4e_c00415{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m100_c00415{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m5e_c00415{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m3e_c00415{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.mdb_c00415{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m9f_c00415{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mf_c00415{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mc8_c00415{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m93_c00415{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mbb_c00415{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m1f_c00415{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);}
.md6_c00415{transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);}
.m66_c00415{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mf0_c00415{transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);}
.m6d_c00415{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.me5_c00415{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m8c_c00415{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m76_c00415{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.me7_c00415{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m50_c00415{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m5b_c00415{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m6e_c00415{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m95_c00415{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.me3_c00415{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m3c_c00415{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.m65_c00415{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m86_c00415{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.ma7_c00415{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.ma8_c00415{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m4a_c00415{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.mb_c00415{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m80_c00415{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m61_c00415{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mf4_c00415{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m2_c00415{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);}
.m53_c00415{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.md5_c00415{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mc2_c00415{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m2b_c00415{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m42_c00415{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.mf3_c00415{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.ma0_c00415{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m64_c00415{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m7e_c00415{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m31_c00415{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m57_c00415{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mc9_c00415{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m79_c00415{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m6c_c00415{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m8b_c00415{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m32_c00415{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);}
.mca_c00415{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m8_c00415{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m7a_c00415{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m23_c00415{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m9e_c00415{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m60_c00415{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m1e_c00415{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.mab_c00415{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m35_c00415{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.me2_c00415{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.md4_c00415{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mb5_c00415{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m52_c00415{transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);}
.m51_c00415{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m9b_c00415{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.mb1_c00415{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m6_c00415{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m63_c00415{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mce_c00415{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m9_c00415{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m87_c00415{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.me4_c00415{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m49_c00415{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.mfc_c00415{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mbe_c00415{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m103_c00415{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m96_c00415{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.ma3_c00415{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m102_c00415{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m1b_c00415{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.ma9_c00415{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m4d_c00415{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m6a_c00415{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mae_c00415{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.ma6_c00415{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m24_c00415{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);}
.m105_c00415{transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);}
.m28_c00415{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m7_c00415{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m14_c00415{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m4b_c00415{transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);}
.mba_c00415{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m38_c00415{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m70_c00415{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.med_c00415{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.me9_c00415{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);}
.mb2_c00415{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m34_c00415{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m101_c00415{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m92_c00415{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m73_c00415{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.ma5_c00415{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m37_c00415{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.m21_c00415{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m71_c00415{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m3_c00415{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m109_c00415{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m17_c00415{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.m62_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);}
.m27_c00415{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m1d_c00415{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m46_c00415{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.me8_c00415{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m3a_c00415{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m13_c00415{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.mc6_c00415{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m10a_c00415{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m5_c00415{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m2a_c00415{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m8a_c00415{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m4c_c00415{transform:matrix(0.649265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649265,0.000000,0.000000,0.250000,0,0);}
.m2e_c00415{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m33_c00415{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.mad_c00415{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.mcb_c00415{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.mb4_c00415{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m1a_c00415{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m85_c00415{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m47_c00415{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.m9d_c00415{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);}
.m3f_c00415{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m16_c00415{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m6b_c00415{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.ma_c00415{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.mbf_c00415{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m2c_c00415{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);}
.m75_c00415{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mb7_c00415{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mfd_c00415{transform:matrix(0.726809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726809,0.000000,0.000000,0.250000,0,0);}
.m89_c00415{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.ma1_c00415{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m5c_c00415{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m78_c00415{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mf9_c00415{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m94_c00415{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.me0_c00415{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mbd_c00415{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m81_c00415{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.mef_c00415{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.mfa_c00415{transform:matrix(0.813301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.813301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.813301,0.000000,0.000000,0.250000,0,0);}
.m97_c00415{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.m1c_c00415{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m10_c00415{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.mfe_c00415{transform:matrix(1.753788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.753788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.753788,0.000000,0.000000,0.250000,0,0);}
.m56_c00415{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.v0_c00415{vertical-align:0.000000px;}
.ls0_c00415{letter-spacing:0.000000px;}
.sc__c00415{text-shadow:none;}
.sc0_c00415{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00415{-webkit-text-stroke:0px transparent;}
.sc0_c00415{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00415{word-spacing:-2.923710px;}
.ws1_c00415{word-spacing:0.000000px;}
.fc0_c00415{color:transparent;}
.fs7_c00415{font-size:3.420000px;}
.fs9_c00415{font-size:11.880000px;}
.fs4_c00415{font-size:13.620000px;}
.fs5_c00415{font-size:18.720000px;}
.fs1_c00415{font-size:20.400000px;}
.fs3_c00415{font-size:25.500000px;}
.fs2_c00415{font-size:28.920000px;}
.fs0_c00415{font-size:32.340000px;}
.fs6_c00415{font-size:35.700000px;}
.fs8_c00415{font-size:39.120000px;}
.y0_c00415{bottom:0.000000px;}
.yf2_c00415{bottom:250.470000px;}
.yee_c00415{bottom:251.745000px;}
.yec_c00415{bottom:252.405000px;}
.yf0_c00415{bottom:252.825000px;}
.yed_c00415{bottom:253.470000px;}
.yf1_c00415{bottom:253.905000px;}
.yef_c00415{bottom:254.970000px;}
.ye8_c00415{bottom:269.745000px;}
.yea_c00415{bottom:269.970000px;}
.ye5_c00415{bottom:270.180000px;}
.ye7_c00415{bottom:270.825000px;}
.yeb_c00415{bottom:271.245000px;}
.ye4_c00415{bottom:271.905000px;}
.ye6_c00415{bottom:273.405000px;}
.ye9_c00415{bottom:274.470000px;}
.ye1_c00415{bottom:291.405000px;}
.ye2_c00415{bottom:292.470000px;}
.ye3_c00415{bottom:292.905000px;}
.ydc_c00415{bottom:309.825000px;}
.yd9_c00415{bottom:310.245000px;}
.ydd_c00415{bottom:310.905000px;}
.yd8_c00415{bottom:311.130000px;}
.ye0_c00415{bottom:311.325000px;}
.yde_c00415{bottom:311.775000px;}
.yda_c00415{bottom:312.405000px;}
.ydb_c00415{bottom:312.630000px;}
.ydf_c00415{bottom:313.905000px;}
.yd5_c00415{bottom:329.745000px;}
.yd7_c00415{bottom:330.825000px;}
.yd4_c00415{bottom:331.905000px;}
.yd6_c00415{bottom:332.130000px;}
.yd0_c00415{bottom:349.245000px;}
.yd1_c00415{bottom:351.405000px;}
.yd2_c00415{bottom:351.630000px;}
.yd3_c00415{bottom:352.905000px;}
.ycb_c00415{bottom:368.745000px;}
.ycc_c00415{bottom:370.245000px;}
.yce_c00415{bottom:371.130000px;}
.ycf_c00415{bottom:371.325000px;}
.ycd_c00415{bottom:372.405000px;}
.yc9_c00415{bottom:389.325000px;}
.yca_c00415{bottom:389.745000px;}
.yc5_c00415{bottom:390.405000px;}
.yc7_c00415{bottom:391.470000px;}
.yc6_c00415{bottom:391.905000px;}
.yc8_c00415{bottom:392.970000px;}
.yc0_c00415{bottom:406.905000px;}
.yc3_c00415{bottom:407.970000px;}
.yc2_c00415{bottom:409.245000px;}
.ybf_c00415{bottom:409.905000px;}
.yc1_c00415{bottom:411.405000px;}
.yc4_c00415{bottom:412.470000px;}
.ybb_c00415{bottom:428.745000px;}
.ybd_c00415{bottom:429.630000px;}
.yb9_c00415{bottom:429.825000px;}
.yba_c00415{bottom:430.470000px;}
.ybc_c00415{bottom:430.905000px;}
.ybe_c00415{bottom:431.970000px;}
.yb3_c00415{bottom:448.245000px;}
.yb6_c00415{bottom:448.680000px;}
.yb5_c00415{bottom:449.745000px;}
.yb4_c00415{bottom:450.405000px;}
.yb8_c00415{bottom:450.630000px;}
.yb7_c00415{bottom:451.470000px;}
.yb0_c00415{bottom:467.745000px;}
.yb1_c00415{bottom:468.825000px;}
.yaf_c00415{bottom:469.905000px;}
.yae_c00415{bottom:470.130000px;}
.yb2_c00415{bottom:470.970000px;}
.ya7_c00415{bottom:487.245000px;}
.yad_c00415{bottom:488.325000px;}
.ya9_c00415{bottom:488.745000px;}
.yaa_c00415{bottom:489.405000px;}
.yab_c00415{bottom:489.630000px;}
.ya8_c00415{bottom:490.470000px;}
.yac_c00415{bottom:490.905000px;}
.ya2_c00415{bottom:506.745000px;}
.ya5_c00415{bottom:507.825000px;}
.ya6_c00415{bottom:508.905000px;}
.ya3_c00415{bottom:509.970000px;}
.ya4_c00415{bottom:510.405000px;}
.y9e_c00415{bottom:527.745000px;}
.ya0_c00415{bottom:528.630000px;}
.ya1_c00415{bottom:528.825000px;}
.y9f_c00415{bottom:529.905000px;}
.y9c_c00415{bottom:547.245000px;}
.y9b_c00415{bottom:548.130000px;}
.y9d_c00415{bottom:549.405000px;}
.y97_c00415{bottom:566.745000px;}
.y99_c00415{bottom:567.630000px;}
.y9a_c00415{bottom:567.825000px;}
.y98_c00415{bottom:568.905000px;}
.y93_c00415{bottom:586.245000px;}
.y94_c00415{bottom:588.405000px;}
.y96_c00415{bottom:588.630000px;}
.y95_c00415{bottom:589.470000px;}
.y92_c00415{bottom:607.245000px;}
.y8f_c00415{bottom:607.470000px;}
.y90_c00415{bottom:607.905000px;}
.y91_c00415{bottom:609.405000px;}
.y87_c00415{bottom:624.405000px;}
.y8e_c00415{bottom:626.325000px;}
.y89_c00415{bottom:626.550000px;}
.y8a_c00415{bottom:626.745000px;}
.y88_c00415{bottom:627.405000px;}
.y8b_c00415{bottom:627.630000px;}
.y8d_c00415{bottom:628.470000px;}
.y8c_c00415{bottom:628.905000px;}
.y86_c00415{bottom:645.825000px;}
.y82_c00415{bottom:646.245000px;}
.y81_c00415{bottom:646.905000px;}
.y83_c00415{bottom:647.130000px;}
.y85_c00415{bottom:647.970000px;}
.y84_c00415{bottom:648.405000px;}
.y7e_c00415{bottom:665.325000px;}
.y7c_c00415{bottom:665.745000px;}
.y7d_c00415{bottom:666.630000px;}
.y80_c00415{bottom:667.470000px;}
.y7f_c00415{bottom:667.905000px;}
.y7b_c00415{bottom:682.905000px;}
.y7a_c00415{bottom:685.245000px;}
.y77_c00415{bottom:686.130000px;}
.y75_c00415{bottom:686.325000px;}
.y78_c00415{bottom:686.970000px;}
.y76_c00415{bottom:687.405000px;}
.y79_c00415{bottom:688.470000px;}
.y73_c00415{bottom:703.245000px;}
.y70_c00415{bottom:704.745000px;}
.y71_c00415{bottom:705.630000px;}
.y72_c00415{bottom:705.825000px;}
.y6f_c00415{bottom:706.905000px;}
.y74_c00415{bottom:707.970000px;}
.y6e_c00415{bottom:724.245000px;}
.y6d_c00415{bottom:725.130000px;}
.y6b_c00415{bottom:725.325000px;}
.y6c_c00415{bottom:726.405000px;}
.y65_c00415{bottom:742.905000px;}
.y68_c00415{bottom:743.745000px;}
.y69_c00415{bottom:744.825000px;}
.y66_c00415{bottom:745.245000px;}
.y64_c00415{bottom:745.905000px;}
.y6a_c00415{bottom:746.130000px;}
.y67_c00415{bottom:746.970000px;}
.y63_c00415{bottom:762.405000px;}
.y62_c00415{bottom:763.245000px;}
.y61_c00415{bottom:764.745000px;}
.y5f_c00415{bottom:765.405000px;}
.y60_c00415{bottom:766.905000px;}
.y59_c00415{bottom:782.745000px;}
.y5c_c00415{bottom:784.245000px;}
.y5e_c00415{bottom:784.905000px;}
.y5d_c00415{bottom:785.130000px;}
.y5b_c00415{bottom:786.405000px;}
.y5a_c00415{bottom:786.420000px;}
.y57_c00415{bottom:810.405000px;}
.y58_c00415{bottom:811.470000px;}
.y53_c00415{bottom:825.825000px;}
.y51_c00415{bottom:826.050000px;}
.y55_c00415{bottom:826.470000px;}
.y54_c00415{bottom:826.905000px;}
.y4f_c00415{bottom:827.550000px;}
.y50_c00415{bottom:827.970000px;}
.y56_c00415{bottom:828.195000px;}
.y52_c00415{bottom:829.050000px;}
.y4b_c00415{bottom:840.405000px;}
.y4e_c00415{bottom:840.825000px;}
.y4c_c00415{bottom:841.470000px;}
.y4d_c00415{bottom:842.970000px;}
.y45_c00415{bottom:854.970000px;}
.y48_c00415{bottom:855.405000px;}
.y47_c00415{bottom:856.050000px;}
.y49_c00415{bottom:856.470000px;}
.y4a_c00415{bottom:857.130000px;}
.y46_c00415{bottom:857.550000px;}
.y44_c00415{bottom:870.405000px;}
.y42_c00415{bottom:871.470000px;}
.y43_c00415{bottom:872.550000px;}
.y3b_c00415{bottom:883.470000px;}
.y41_c00415{bottom:883.905000px;}
.y3f_c00415{bottom:884.325000px;}
.y3e_c00415{bottom:885.405000px;}
.y3d_c00415{bottom:886.470000px;}
.y40_c00415{bottom:886.695000px;}
.y3c_c00415{bottom:887.550000px;}
.y37_c00415{bottom:899.325000px;}
.y38_c00415{bottom:900.405000px;}
.y39_c00415{bottom:900.630000px;}
.y3a_c00415{bottom:902.550000px;}
.y35_c00415{bottom:913.470000px;}
.y31_c00415{bottom:914.325000px;}
.y30_c00415{bottom:914.550000px;}
.y34_c00415{bottom:915.405000px;}
.y33_c00415{bottom:915.630000px;}
.y32_c00415{bottom:916.470000px;}
.y36_c00415{bottom:917.550000px;}
.y2f_c00415{bottom:930.405000px;}
.y2d_c00415{bottom:931.050000px;}
.y2e_c00415{bottom:932.550000px;}
.y2c_c00415{bottom:942.825000px;}
.y29_c00415{bottom:943.470000px;}
.y2a_c00415{bottom:943.905000px;}
.y27_c00415{bottom:944.130000px;}
.y2b_c00415{bottom:945.630000px;}
.y28_c00415{bottom:946.050000px;}
.y26_c00415{bottom:958.905000px;}
.y25_c00415{bottom:961.050000px;}
.y24_c00415{bottom:972.405000px;}
.y21_c00415{bottom:973.050000px;}
.y1f_c00415{bottom:973.905000px;}
.y1d_c00415{bottom:974.130000px;}
.y22_c00415{bottom:974.550000px;}
.y1e_c00415{bottom:974.970000px;}
.y23_c00415{bottom:975.195000px;}
.y20_c00415{bottom:976.050000px;}
.y18_c00415{bottom:987.825000px;}
.y19_c00415{bottom:988.905000px;}
.y1b_c00415{bottom:989.970000px;}
.y1a_c00415{bottom:990.195000px;}
.y1c_c00415{bottom:991.050000px;}
.y17_c00415{bottom:1003.905000px;}
.y14_c00415{bottom:1004.130000px;}
.y16_c00415{bottom:1004.970000px;}
.y15_c00415{bottom:1006.050000px;}
.y13_c00415{bottom:1017.405000px;}
.y10_c00415{bottom:1018.470000px;}
.y12_c00415{bottom:1019.550000px;}
.y11_c00415{bottom:1020.195000px;}
.yb_c00415{bottom:1031.550000px;}
.yf_c00415{bottom:1032.405000px;}
.ye_c00415{bottom:1033.470000px;}
.yd_c00415{bottom:1033.695000px;}
.yc_c00415{bottom:1034.550000px;}
.ya_c00415{bottom:1046.325000px;}
.y7_c00415{bottom:1047.405000px;}
.y8_c00415{bottom:1048.695000px;}
.y9_c00415{bottom:1049.550000px;}
.y6_c00415{bottom:1061.325000px;}
.y4_c00415{bottom:1062.405000px;}
.y5_c00415{bottom:1063.470000px;}
.y3_c00415{bottom:1064.550000px;}
.y1_c00415{bottom:1098.825000px;}
.y2_c00415{bottom:1099.050000px;}
.h8_c00415{height:4.206533px;}
.ha_c00415{height:14.612168px;}
.h5_c00415{height:16.752334px;}
.h6_c00415{height:23.025234px;}
.h2_c00415{height:25.091602px;}
.h4_c00415{height:31.364502px;}
.h3_c00415{height:35.571035px;}
.h1_c00415{height:39.777568px;}
.h7_c00415{height:43.910303px;}
.h9_c00415{height:48.116836px;}
.h0_c00415{height:1335.000000px;}
.w0_c00415{width:880.500000px;}
.x0_c00415{left:0.000000px;}
.x1_c00415{left:151.500000px;}
.x10_c00415{left:152.580000px;}
.x74_c00415{left:154.920000px;}
.x3_c00415{left:166.920000px;}
.x2b_c00415{left:168.420000px;}
.x8f_c00415{left:169.500000px;}
.x80_c00415{left:180.420000px;}
.x47_c00415{left:181.920000px;}
.x68_c00415{left:183.420000px;}
.x4_c00415{left:184.500000px;}
.xaa_c00415{left:186.000000px;}
.x4f_c00415{left:187.920000px;}
.x102_c00415{left:189.420000px;}
.x2c_c00415{left:190.500000px;}
.x48_c00415{left:192.000000px;}
.xb8_c00415{left:193.500000px;}
.xc3_c00415{left:195.000000px;}
.x75_c00415{left:196.500000px;}
.x9f_c00415{left:199.080000px;}
.x98_c00415{left:202.500000px;}
.x5b_c00415{left:205.080000px;}
.x11_c00415{left:208.080000px;}
.xf1_c00415{left:211.920000px;}
.x1e_c00415{left:213.000000px;}
.x50_c00415{left:214.500000px;}
.xfe_c00415{left:216.000000px;}
.xe9_c00415{left:217.500000px;}
.x5_c00415{left:218.580000px;}
.x90_c00415{left:220.080000px;}
.xd2_c00415{left:221.580000px;}
.x81_c00415{left:223.500000px;}
.x49_c00415{left:225.000000px;}
.x76_c00415{left:226.080000px;}
.x1f_c00415{left:229.500000px;}
.xd7_c00415{left:231.000000px;}
.x62_c00415{left:232.500000px;}
.x35_c00415{left:233.580000px;}
.x3d_c00415{left:236.580000px;}
.x69_c00415{left:240.000000px;}
.xf7_c00415{left:243.420000px;}
.x51_c00415{left:244.500000px;}
.xab_c00415{left:245.580000px;}
.xf2_c00415{left:247.920000px;}
.x20_c00415{left:249.000000px;}
.x99_c00415{left:250.920000px;}
.x12_c00415{left:253.080000px;}
.x77_c00415{left:255.000000px;}
.x82_c00415{left:256.500000px;}
.xd8_c00415{left:262.080000px;}
.x10b_c00415{left:264.000000px;}
.xf9_c00415{left:267.000000px;}
.xc4_c00415{left:268.920000px;}
.xdc_c00415{left:274.920000px;}
.x63_c00415{left:277.500000px;}
.x13_c00415{left:280.080000px;}
.x29_c00415{left:282.420000px;}
.x52_c00415{left:283.500000px;}
.x2d_c00415{left:285.000000px;}
.x5c_c00415{left:286.080000px;}
.x106_c00415{left:288.420000px;}
.xb2_c00415{left:289.920000px;}
.x36_c00415{left:291.000000px;}
.x4a_c00415{left:294.420000px;}
.x91_c00415{left:295.920000px;}
.xc5_c00415{left:298.920000px;}
.x6_c00415{left:300.000000px;}
.x37_c00415{left:301.500000px;}
.xfa_c00415{left:303.420000px;}
.x9a_c00415{left:307.080000px;}
.x6a_c00415{left:309.420000px;}
.x21_c00415{left:310.500000px;}
.x53_c00415{left:313.500000px;}
.xc9_c00415{left:316.920000px;}
.x3e_c00415{left:318.420000px;}
.xf3_c00415{left:321.000000px;}
.x8a_c00415{left:322.920000px;}
.x14_c00415{left:324.000000px;}
.x6b_c00415{left:325.920000px;}
.xac_c00415{left:327.420000px;}
.x2e_c00415{left:328.500000px;}
.xa0_c00415{left:330.000000px;}
.xb9_c00415{left:331.500000px;}
.x7_c00415{left:332.580000px;}
.x3f_c00415{left:335.580000px;}
.xe1_c00415{left:337.080000px;}
.x5d_c00415{left:342.420000px;}
.xbe_c00415{left:345.000000px;}
.x38_c00415{left:346.080000px;}
.xba_c00415{left:348.000000px;}
.x6c_c00415{left:349.080000px;}
.x22_c00415{left:351.000000px;}
.x2a_c00415{left:352.920000px;}
.x15_c00415{left:354.420000px;}
.xff_c00415{left:355.500000px;}
.x78_c00415{left:356.580000px;}
.x40_c00415{left:360.420000px;}
.xa1_c00415{left:364.920000px;}
.x10a_c00415{left:366.000000px;}
.x8_c00415{left:367.080000px;}
.xea_c00415{left:369.420000px;}
.x6d_c00415{left:373.500000px;}
.x39_c00415{left:375.420000px;}
.xd3_c00415{left:376.920000px;}
.x54_c00415{left:378.000000px;}
.x16_c00415{left:379.500000px;}
.x79_c00415{left:381.000000px;}
.x9_c00415{left:384.000000px;}
.xe2_c00415{left:385.920000px;}
.x107_c00415{left:387.000000px;}
.x2f_c00415{left:388.920000px;}
.xa2_c00415{left:391.920000px;}
.x92_c00415{left:393.000000px;}
.x4b_c00415{left:394.500000px;}
.x8b_c00415{left:396.000000px;}
.x5e_c00415{left:397.500000px;}
.x23_c00415{left:398.580000px;}
.xbb_c00415{left:402.000000px;}
.x41_c00415{left:403.500000px;}
.xdd_c00415{left:405.420000px;}
.x6e_c00415{left:406.920000px;}
.x2_c00415{left:408.000000px;}
.xca_c00415{left:411.000000px;}
.xd9_c00415{left:412.080000px;}
.x7a_c00415{left:414.420000px;}
.xeb_c00415{left:415.500000px;}
.x3a_c00415{left:417.000000px;}
.x55_c00415{left:418.500000px;}
.x100_c00415{left:420.000000px;}
.x17_c00415{left:423.000000px;}
.x5f_c00415{left:426.420000px;}
.x24_c00415{left:427.500000px;}
.x7b_c00415{left:430.500000px;}
.xec_c00415{left:432.420000px;}
.x18_c00415{left:433.500000px;}
.x4c_c00415{left:434.580000px;}
.xa3_c00415{left:436.500000px;}
.xc6_c00415{left:441.000000px;}
.xb3_c00415{left:442.500000px;}
.xfb_c00415{left:444.000000px;}
.xa_c00415{left:445.500000px;}
.x3b_c00415{left:447.420000px;}
.x30_c00415{left:450.420000px;}
.xbf_c00415{left:451.500000px;}
.xad_c00415{left:452.580000px;}
.x7c_c00415{left:454.920000px;}
.x9b_c00415{left:456.000000px;}
.xed_c00415{left:457.080000px;}
.x83_c00415{left:459.000000px;}
.xcb_c00415{left:460.920000px;}
.x31_c00415{left:468.000000px;}
.x8c_c00415{left:469.920000px;}
.x108_c00415{left:471.000000px;}
.xae_c00415{left:472.500000px;}
.x3c_c00415{left:474.000000px;}
.x84_c00415{left:475.080000px;}
.x19_c00415{left:478.080000px;}
.xb_c00415{left:483.000000px;}
.x103_c00415{left:484.920000px;}
.x64_c00415{left:486.420000px;}
.xda_c00415{left:487.500000px;}
.xa4_c00415{left:490.080000px;}
.x25_c00415{left:496.080000px;}
.x60_c00415{left:498.420000px;}
.x56_c00415{left:499.500000px;}
.xe6_c00415{left:501.000000px;}
.xb4_c00415{left:504.000000px;}
.xd4_c00415{left:505.080000px;}
.x1a_c00415{left:506.580000px;}
.x9c_c00415{left:509.580000px;}
.xcc_c00415{left:513.000000px;}
.xc0_c00415{left:514.920000px;}
.x26_c00415{left:516.000000px;}
.xfc_c00415{left:519.000000px;}
.x85_c00415{left:520.500000px;}
.xc_c00415{left:521.580000px;}
.x61_c00415{left:523.500000px;}
.xde_c00415{left:526.500000px;}
.xee_c00415{left:529.500000px;}
.x93_c00415{left:531.000000px;}
.xb5_c00415{left:534.000000px;}
.x8d_c00415{left:535.500000px;}
.xd_c00415{left:536.580000px;}
.x27_c00415{left:539.580000px;}
.x1b_c00415{left:541.500000px;}
.x57_c00415{left:543.000000px;}
.x86_c00415{left:544.920000px;}
.xe3_c00415{left:546.000000px;}
.xa5_c00415{left:549.000000px;}
.x101_c00415{left:550.500000px;}
.xbc_c00415{left:551.580000px;}
.x6f_c00415{left:553.920000px;}
.x65_c00415{left:555.000000px;}
.xaf_c00415{left:556.500000px;}
.x94_c00415{left:558.420000px;}
.xcd_c00415{left:561.420000px;}
.x42_c00415{left:564.000000px;}
.x7d_c00415{left:565.920000px;}
.xe7_c00415{left:567.000000px;}
.x1c_c00415{left:571.920000px;}
.xdf_c00415{left:573.000000px;}
.x109_c00415{left:574.920000px;}
.x4d_c00415{left:576.000000px;}
.xef_c00415{left:577.500000px;}
.x8e_c00415{left:580.920000px;}
.x9d_c00415{left:582.420000px;}
.xbd_c00415{left:583.500000px;}
.xa6_c00415{left:587.580000px;}
.xce_c00415{left:589.500000px;}
.x32_c00415{left:591.000000px;}
.x58_c00415{left:592.500000px;}
.xb6_c00415{left:597.000000px;}
.x1d_c00415{left:598.500000px;}
.x95_c00415{left:600.420000px;}
.xb0_c00415{left:601.500000px;}
.x87_c00415{left:604.080000px;}
.xcf_c00415{left:606.420000px;}
.x104_c00415{left:609.000000px;}
.xe4_c00415{left:610.920000px;}
.x70_c00415{left:612.000000px;}
.x66_c00415{left:613.500000px;}
.xe_c00415{left:614.580000px;}
.x28_c00415{left:617.580000px;}
.xb7_c00415{left:619.500000px;}
.x43_c00415{left:621.000000px;}
.xf0_c00415{left:622.500000px;}
.x88_c00415{left:624.000000px;}
.xd5_c00415{left:625.920000px;}
.x67_c00415{left:627.000000px;}
.xe0_c00415{left:628.500000px;}
.x10c_c00415{left:630.000000px;}
.x44_c00415{left:631.500000px;}
.xe8_c00415{left:633.855000px;}
.x33_c00415{left:634.920000px;}
.xdb_c00415{left:636.000000px;}
.xe5_c00415{left:637.500000px;}
.xf4_c00415{left:639.000000px;}
.x105_c00415{left:644.580000px;}
.x9e_c00415{left:646.500000px;}
.x4e_c00415{left:649.920000px;}
.xc1_c00415{left:654.000000px;}
.xf_c00415{left:655.500000px;}
.xa7_c00415{left:657.000000px;}
.x96_c00415{left:660.000000px;}
.x71_c00415{left:661.920000px;}
.x59_c00415{left:663.420000px;}
.x45_c00415{left:664.500000px;}
.xc7_c00415{left:667.080000px;}
.xd6_c00415{left:669.420000px;}
.xfd_c00415{left:670.500000px;}
.x72_c00415{left:673.500000px;}
.x34_c00415{left:676.080000px;}
.xf5_c00415{left:678.000000px;}
.x5a_c00415{left:679.080000px;}
.xd0_c00415{left:684.000000px;}
.x97_c00415{left:685.080000px;}
.xc2_c00415{left:688.080000px;}
.x7e_c00415{left:690.000000px;}
.xa8_c00415{left:691.080000px;}
.x46_c00415{left:693.420000px;}
.x89_c00415{left:697.920000px;}
.xc8_c00415{left:700.500000px;}
.x7f_c00415{left:702.000000px;}
.xf6_c00415{left:703.500000px;}
.x73_c00415{left:708.000000px;}
.xa9_c00415{left:709.920000px;}
.xb1_c00415{left:712.500000px;}
.xd1_c00415{left:717.000000px;}
.xf8_c00415{left:723.000000px;}
@media print{
.v0_c00415{vertical-align:0.000000pt;}
.ls0_c00415{letter-spacing:0.000000pt;}
.ws0_c00415{word-spacing:-2.598853pt;}
.ws1_c00415{word-spacing:0.000000pt;}
.fs7_c00415{font-size:3.040000pt;}
.fs9_c00415{font-size:10.560000pt;}
.fs4_c00415{font-size:12.106667pt;}
.fs5_c00415{font-size:16.640000pt;}
.fs1_c00415{font-size:18.133333pt;}
.fs3_c00415{font-size:22.666667pt;}
.fs2_c00415{font-size:25.706667pt;}
.fs0_c00415{font-size:28.746667pt;}
.fs6_c00415{font-size:31.733333pt;}
.fs8_c00415{font-size:34.773333pt;}
.y0_c00415{bottom:0.000000pt;}
.yf2_c00415{bottom:222.640000pt;}
.yee_c00415{bottom:223.773333pt;}
.yec_c00415{bottom:224.360000pt;}
.yf0_c00415{bottom:224.733333pt;}
.yed_c00415{bottom:225.306667pt;}
.yf1_c00415{bottom:225.693333pt;}
.yef_c00415{bottom:226.640000pt;}
.ye8_c00415{bottom:239.773333pt;}
.yea_c00415{bottom:239.973333pt;}
.ye5_c00415{bottom:240.160000pt;}
.ye7_c00415{bottom:240.733333pt;}
.yeb_c00415{bottom:241.106667pt;}
.ye4_c00415{bottom:241.693333pt;}
.ye6_c00415{bottom:243.026667pt;}
.ye9_c00415{bottom:243.973333pt;}
.ye1_c00415{bottom:259.026667pt;}
.ye2_c00415{bottom:259.973333pt;}
.ye3_c00415{bottom:260.360000pt;}
.ydc_c00415{bottom:275.400000pt;}
.yd9_c00415{bottom:275.773333pt;}
.ydd_c00415{bottom:276.360000pt;}
.yd8_c00415{bottom:276.560000pt;}
.ye0_c00415{bottom:276.733333pt;}
.yde_c00415{bottom:277.133333pt;}
.yda_c00415{bottom:277.693333pt;}
.ydb_c00415{bottom:277.893333pt;}
.ydf_c00415{bottom:279.026667pt;}
.yd5_c00415{bottom:293.106667pt;}
.yd7_c00415{bottom:294.066667pt;}
.yd4_c00415{bottom:295.026667pt;}
.yd6_c00415{bottom:295.226667pt;}
.yd0_c00415{bottom:310.440000pt;}
.yd1_c00415{bottom:312.360000pt;}
.yd2_c00415{bottom:312.560000pt;}
.yd3_c00415{bottom:313.693333pt;}
.ycb_c00415{bottom:327.773333pt;}
.ycc_c00415{bottom:329.106667pt;}
.yce_c00415{bottom:329.893333pt;}
.ycf_c00415{bottom:330.066667pt;}
.ycd_c00415{bottom:331.026667pt;}
.yc9_c00415{bottom:346.066667pt;}
.yca_c00415{bottom:346.440000pt;}
.yc5_c00415{bottom:347.026667pt;}
.yc7_c00415{bottom:347.973333pt;}
.yc6_c00415{bottom:348.360000pt;}
.yc8_c00415{bottom:349.306667pt;}
.yc0_c00415{bottom:361.693333pt;}
.yc3_c00415{bottom:362.640000pt;}
.yc2_c00415{bottom:363.773333pt;}
.ybf_c00415{bottom:364.360000pt;}
.yc1_c00415{bottom:365.693333pt;}
.yc4_c00415{bottom:366.640000pt;}
.ybb_c00415{bottom:381.106667pt;}
.ybd_c00415{bottom:381.893333pt;}
.yb9_c00415{bottom:382.066667pt;}
.yba_c00415{bottom:382.640000pt;}
.ybc_c00415{bottom:383.026667pt;}
.ybe_c00415{bottom:383.973333pt;}
.yb3_c00415{bottom:398.440000pt;}
.yb6_c00415{bottom:398.826667pt;}
.yb5_c00415{bottom:399.773333pt;}
.yb4_c00415{bottom:400.360000pt;}
.yb8_c00415{bottom:400.560000pt;}
.yb7_c00415{bottom:401.306667pt;}
.yb0_c00415{bottom:415.773333pt;}
.yb1_c00415{bottom:416.733333pt;}
.yaf_c00415{bottom:417.693333pt;}
.yae_c00415{bottom:417.893333pt;}
.yb2_c00415{bottom:418.640000pt;}
.ya7_c00415{bottom:433.106667pt;}
.yad_c00415{bottom:434.066667pt;}
.ya9_c00415{bottom:434.440000pt;}
.yaa_c00415{bottom:435.026667pt;}
.yab_c00415{bottom:435.226667pt;}
.ya8_c00415{bottom:435.973333pt;}
.yac_c00415{bottom:436.360000pt;}
.ya2_c00415{bottom:450.440000pt;}
.ya5_c00415{bottom:451.400000pt;}
.ya6_c00415{bottom:452.360000pt;}
.ya3_c00415{bottom:453.306667pt;}
.ya4_c00415{bottom:453.693333pt;}
.y9e_c00415{bottom:469.106667pt;}
.ya0_c00415{bottom:469.893333pt;}
.ya1_c00415{bottom:470.066667pt;}
.y9f_c00415{bottom:471.026667pt;}
.y9c_c00415{bottom:486.440000pt;}
.y9b_c00415{bottom:487.226667pt;}
.y9d_c00415{bottom:488.360000pt;}
.y97_c00415{bottom:503.773333pt;}
.y99_c00415{bottom:504.560000pt;}
.y9a_c00415{bottom:504.733333pt;}
.y98_c00415{bottom:505.693333pt;}
.y93_c00415{bottom:521.106667pt;}
.y94_c00415{bottom:523.026667pt;}
.y96_c00415{bottom:523.226667pt;}
.y95_c00415{bottom:523.973333pt;}
.y92_c00415{bottom:539.773333pt;}
.y8f_c00415{bottom:539.973333pt;}
.y90_c00415{bottom:540.360000pt;}
.y91_c00415{bottom:541.693333pt;}
.y87_c00415{bottom:555.026667pt;}
.y8e_c00415{bottom:556.733333pt;}
.y89_c00415{bottom:556.933333pt;}
.y8a_c00415{bottom:557.106667pt;}
.y88_c00415{bottom:557.693333pt;}
.y8b_c00415{bottom:557.893333pt;}
.y8d_c00415{bottom:558.640000pt;}
.y8c_c00415{bottom:559.026667pt;}
.y86_c00415{bottom:574.066667pt;}
.y82_c00415{bottom:574.440000pt;}
.y81_c00415{bottom:575.026667pt;}
.y83_c00415{bottom:575.226667pt;}
.y85_c00415{bottom:575.973333pt;}
.y84_c00415{bottom:576.360000pt;}
.y7e_c00415{bottom:591.400000pt;}
.y7c_c00415{bottom:591.773333pt;}
.y7d_c00415{bottom:592.560000pt;}
.y80_c00415{bottom:593.306667pt;}
.y7f_c00415{bottom:593.693333pt;}
.y7b_c00415{bottom:607.026667pt;}
.y7a_c00415{bottom:609.106667pt;}
.y77_c00415{bottom:609.893333pt;}
.y75_c00415{bottom:610.066667pt;}
.y78_c00415{bottom:610.640000pt;}
.y76_c00415{bottom:611.026667pt;}
.y79_c00415{bottom:611.973333pt;}
.y73_c00415{bottom:625.106667pt;}
.y70_c00415{bottom:626.440000pt;}
.y71_c00415{bottom:627.226667pt;}
.y72_c00415{bottom:627.400000pt;}
.y6f_c00415{bottom:628.360000pt;}
.y74_c00415{bottom:629.306667pt;}
.y6e_c00415{bottom:643.773333pt;}
.y6d_c00415{bottom:644.560000pt;}
.y6b_c00415{bottom:644.733333pt;}
.y6c_c00415{bottom:645.693333pt;}
.y65_c00415{bottom:660.360000pt;}
.y68_c00415{bottom:661.106667pt;}
.y69_c00415{bottom:662.066667pt;}
.y66_c00415{bottom:662.440000pt;}
.y64_c00415{bottom:663.026667pt;}
.y6a_c00415{bottom:663.226667pt;}
.y67_c00415{bottom:663.973333pt;}
.y63_c00415{bottom:677.693333pt;}
.y62_c00415{bottom:678.440000pt;}
.y61_c00415{bottom:679.773333pt;}
.y5f_c00415{bottom:680.360000pt;}
.y60_c00415{bottom:681.693333pt;}
.y59_c00415{bottom:695.773333pt;}
.y5c_c00415{bottom:697.106667pt;}
.y5e_c00415{bottom:697.693333pt;}
.y5d_c00415{bottom:697.893333pt;}
.y5b_c00415{bottom:699.026667pt;}
.y5a_c00415{bottom:699.040000pt;}
.y57_c00415{bottom:720.360000pt;}
.y58_c00415{bottom:721.306667pt;}
.y53_c00415{bottom:734.066667pt;}
.y51_c00415{bottom:734.266667pt;}
.y55_c00415{bottom:734.640000pt;}
.y54_c00415{bottom:735.026667pt;}
.y4f_c00415{bottom:735.600000pt;}
.y50_c00415{bottom:735.973333pt;}
.y56_c00415{bottom:736.173333pt;}
.y52_c00415{bottom:736.933333pt;}
.y4b_c00415{bottom:747.026667pt;}
.y4e_c00415{bottom:747.400000pt;}
.y4c_c00415{bottom:747.973333pt;}
.y4d_c00415{bottom:749.306667pt;}
.y45_c00415{bottom:759.973333pt;}
.y48_c00415{bottom:760.360000pt;}
.y47_c00415{bottom:760.933333pt;}
.y49_c00415{bottom:761.306667pt;}
.y4a_c00415{bottom:761.893333pt;}
.y46_c00415{bottom:762.266667pt;}
.y44_c00415{bottom:773.693333pt;}
.y42_c00415{bottom:774.640000pt;}
.y43_c00415{bottom:775.600000pt;}
.y3b_c00415{bottom:785.306667pt;}
.y41_c00415{bottom:785.693333pt;}
.y3f_c00415{bottom:786.066667pt;}
.y3e_c00415{bottom:787.026667pt;}
.y3d_c00415{bottom:787.973333pt;}
.y40_c00415{bottom:788.173333pt;}
.y3c_c00415{bottom:788.933333pt;}
.y37_c00415{bottom:799.400000pt;}
.y38_c00415{bottom:800.360000pt;}
.y39_c00415{bottom:800.560000pt;}
.y3a_c00415{bottom:802.266667pt;}
.y35_c00415{bottom:811.973333pt;}
.y31_c00415{bottom:812.733333pt;}
.y30_c00415{bottom:812.933333pt;}
.y34_c00415{bottom:813.693333pt;}
.y33_c00415{bottom:813.893333pt;}
.y32_c00415{bottom:814.640000pt;}
.y36_c00415{bottom:815.600000pt;}
.y2f_c00415{bottom:827.026667pt;}
.y2d_c00415{bottom:827.600000pt;}
.y2e_c00415{bottom:828.933333pt;}
.y2c_c00415{bottom:838.066667pt;}
.y29_c00415{bottom:838.640000pt;}
.y2a_c00415{bottom:839.026667pt;}
.y27_c00415{bottom:839.226667pt;}
.y2b_c00415{bottom:840.560000pt;}
.y28_c00415{bottom:840.933333pt;}
.y26_c00415{bottom:852.360000pt;}
.y25_c00415{bottom:854.266667pt;}
.y24_c00415{bottom:864.360000pt;}
.y21_c00415{bottom:864.933333pt;}
.y1f_c00415{bottom:865.693333pt;}
.y1d_c00415{bottom:865.893333pt;}
.y22_c00415{bottom:866.266667pt;}
.y1e_c00415{bottom:866.640000pt;}
.y23_c00415{bottom:866.840000pt;}
.y20_c00415{bottom:867.600000pt;}
.y18_c00415{bottom:878.066667pt;}
.y19_c00415{bottom:879.026667pt;}
.y1b_c00415{bottom:879.973333pt;}
.y1a_c00415{bottom:880.173333pt;}
.y1c_c00415{bottom:880.933333pt;}
.y17_c00415{bottom:892.360000pt;}
.y14_c00415{bottom:892.560000pt;}
.y16_c00415{bottom:893.306667pt;}
.y15_c00415{bottom:894.266667pt;}
.y13_c00415{bottom:904.360000pt;}
.y10_c00415{bottom:905.306667pt;}
.y12_c00415{bottom:906.266667pt;}
.y11_c00415{bottom:906.840000pt;}
.yb_c00415{bottom:916.933333pt;}
.yf_c00415{bottom:917.693333pt;}
.ye_c00415{bottom:918.640000pt;}
.yd_c00415{bottom:918.840000pt;}
.yc_c00415{bottom:919.600000pt;}
.ya_c00415{bottom:930.066667pt;}
.y7_c00415{bottom:931.026667pt;}
.y8_c00415{bottom:932.173333pt;}
.y9_c00415{bottom:932.933333pt;}
.y6_c00415{bottom:943.400000pt;}
.y4_c00415{bottom:944.360000pt;}
.y5_c00415{bottom:945.306667pt;}
.y3_c00415{bottom:946.266667pt;}
.y1_c00415{bottom:976.733333pt;}
.y2_c00415{bottom:976.933333pt;}
.h8_c00415{height:3.739141pt;}
.ha_c00415{height:12.988594pt;}
.h5_c00415{height:14.890964pt;}
.h6_c00415{height:20.466875pt;}
.h2_c00415{height:22.303646pt;}
.h4_c00415{height:27.879557pt;}
.h3_c00415{height:31.618698pt;}
.h1_c00415{height:35.357839pt;}
.h7_c00415{height:39.031380pt;}
.h9_c00415{height:42.770521pt;}
.h0_c00415{height:1186.666667pt;}
.w0_c00415{width:782.666667pt;}
.x0_c00415{left:0.000000pt;}
.x1_c00415{left:134.666667pt;}
.x10_c00415{left:135.626667pt;}
.x74_c00415{left:137.706667pt;}
.x3_c00415{left:148.373333pt;}
.x2b_c00415{left:149.706667pt;}
.x8f_c00415{left:150.666667pt;}
.x80_c00415{left:160.373333pt;}
.x47_c00415{left:161.706667pt;}
.x68_c00415{left:163.040000pt;}
.x4_c00415{left:164.000000pt;}
.xaa_c00415{left:165.333333pt;}
.x4f_c00415{left:167.040000pt;}
.x102_c00415{left:168.373333pt;}
.x2c_c00415{left:169.333333pt;}
.x48_c00415{left:170.666667pt;}
.xb8_c00415{left:172.000000pt;}
.xc3_c00415{left:173.333333pt;}
.x75_c00415{left:174.666667pt;}
.x9f_c00415{left:176.960000pt;}
.x98_c00415{left:180.000000pt;}
.x5b_c00415{left:182.293333pt;}
.x11_c00415{left:184.960000pt;}
.xf1_c00415{left:188.373333pt;}
.x1e_c00415{left:189.333333pt;}
.x50_c00415{left:190.666667pt;}
.xfe_c00415{left:192.000000pt;}
.xe9_c00415{left:193.333333pt;}
.x5_c00415{left:194.293333pt;}
.x90_c00415{left:195.626667pt;}
.xd2_c00415{left:196.960000pt;}
.x81_c00415{left:198.666667pt;}
.x49_c00415{left:200.000000pt;}
.x76_c00415{left:200.960000pt;}
.x1f_c00415{left:204.000000pt;}
.xd7_c00415{left:205.333333pt;}
.x62_c00415{left:206.666667pt;}
.x35_c00415{left:207.626667pt;}
.x3d_c00415{left:210.293333pt;}
.x69_c00415{left:213.333333pt;}
.xf7_c00415{left:216.373333pt;}
.x51_c00415{left:217.333333pt;}
.xab_c00415{left:218.293333pt;}
.xf2_c00415{left:220.373333pt;}
.x20_c00415{left:221.333333pt;}
.x99_c00415{left:223.040000pt;}
.x12_c00415{left:224.960000pt;}
.x77_c00415{left:226.666667pt;}
.x82_c00415{left:228.000000pt;}
.xd8_c00415{left:232.960000pt;}
.x10b_c00415{left:234.666667pt;}
.xf9_c00415{left:237.333333pt;}
.xc4_c00415{left:239.040000pt;}
.xdc_c00415{left:244.373333pt;}
.x63_c00415{left:246.666667pt;}
.x13_c00415{left:248.960000pt;}
.x29_c00415{left:251.040000pt;}
.x52_c00415{left:252.000000pt;}
.x2d_c00415{left:253.333333pt;}
.x5c_c00415{left:254.293333pt;}
.x106_c00415{left:256.373333pt;}
.xb2_c00415{left:257.706667pt;}
.x36_c00415{left:258.666667pt;}
.x4a_c00415{left:261.706667pt;}
.x91_c00415{left:263.040000pt;}
.xc5_c00415{left:265.706667pt;}
.x6_c00415{left:266.666667pt;}
.x37_c00415{left:268.000000pt;}
.xfa_c00415{left:269.706667pt;}
.x9a_c00415{left:272.960000pt;}
.x6a_c00415{left:275.040000pt;}
.x21_c00415{left:276.000000pt;}
.x53_c00415{left:278.666667pt;}
.xc9_c00415{left:281.706667pt;}
.x3e_c00415{left:283.040000pt;}
.xf3_c00415{left:285.333333pt;}
.x8a_c00415{left:287.040000pt;}
.x14_c00415{left:288.000000pt;}
.x6b_c00415{left:289.706667pt;}
.xac_c00415{left:291.040000pt;}
.x2e_c00415{left:292.000000pt;}
.xa0_c00415{left:293.333333pt;}
.xb9_c00415{left:294.666667pt;}
.x7_c00415{left:295.626667pt;}
.x3f_c00415{left:298.293333pt;}
.xe1_c00415{left:299.626667pt;}
.x5d_c00415{left:304.373333pt;}
.xbe_c00415{left:306.666667pt;}
.x38_c00415{left:307.626667pt;}
.xba_c00415{left:309.333333pt;}
.x6c_c00415{left:310.293333pt;}
.x22_c00415{left:312.000000pt;}
.x2a_c00415{left:313.706667pt;}
.x15_c00415{left:315.040000pt;}
.xff_c00415{left:316.000000pt;}
.x78_c00415{left:316.960000pt;}
.x40_c00415{left:320.373333pt;}
.xa1_c00415{left:324.373333pt;}
.x10a_c00415{left:325.333333pt;}
.x8_c00415{left:326.293333pt;}
.xea_c00415{left:328.373333pt;}
.x6d_c00415{left:332.000000pt;}
.x39_c00415{left:333.706667pt;}
.xd3_c00415{left:335.040000pt;}
.x54_c00415{left:336.000000pt;}
.x16_c00415{left:337.333333pt;}
.x79_c00415{left:338.666667pt;}
.x9_c00415{left:341.333333pt;}
.xe2_c00415{left:343.040000pt;}
.x107_c00415{left:344.000000pt;}
.x2f_c00415{left:345.706667pt;}
.xa2_c00415{left:348.373333pt;}
.x92_c00415{left:349.333333pt;}
.x4b_c00415{left:350.666667pt;}
.x8b_c00415{left:352.000000pt;}
.x5e_c00415{left:353.333333pt;}
.x23_c00415{left:354.293333pt;}
.xbb_c00415{left:357.333333pt;}
.x41_c00415{left:358.666667pt;}
.xdd_c00415{left:360.373333pt;}
.x6e_c00415{left:361.706667pt;}
.x2_c00415{left:362.666667pt;}
.xca_c00415{left:365.333333pt;}
.xd9_c00415{left:366.293333pt;}
.x7a_c00415{left:368.373333pt;}
.xeb_c00415{left:369.333333pt;}
.x3a_c00415{left:370.666667pt;}
.x55_c00415{left:372.000000pt;}
.x100_c00415{left:373.333333pt;}
.x17_c00415{left:376.000000pt;}
.x5f_c00415{left:379.040000pt;}
.x24_c00415{left:380.000000pt;}
.x7b_c00415{left:382.666667pt;}
.xec_c00415{left:384.373333pt;}
.x18_c00415{left:385.333333pt;}
.x4c_c00415{left:386.293333pt;}
.xa3_c00415{left:388.000000pt;}
.xc6_c00415{left:392.000000pt;}
.xb3_c00415{left:393.333333pt;}
.xfb_c00415{left:394.666667pt;}
.xa_c00415{left:396.000000pt;}
.x3b_c00415{left:397.706667pt;}
.x30_c00415{left:400.373333pt;}
.xbf_c00415{left:401.333333pt;}
.xad_c00415{left:402.293333pt;}
.x7c_c00415{left:404.373333pt;}
.x9b_c00415{left:405.333333pt;}
.xed_c00415{left:406.293333pt;}
.x83_c00415{left:408.000000pt;}
.xcb_c00415{left:409.706667pt;}
.x31_c00415{left:416.000000pt;}
.x8c_c00415{left:417.706667pt;}
.x108_c00415{left:418.666667pt;}
.xae_c00415{left:420.000000pt;}
.x3c_c00415{left:421.333333pt;}
.x84_c00415{left:422.293333pt;}
.x19_c00415{left:424.960000pt;}
.xb_c00415{left:429.333333pt;}
.x103_c00415{left:431.040000pt;}
.x64_c00415{left:432.373333pt;}
.xda_c00415{left:433.333333pt;}
.xa4_c00415{left:435.626667pt;}
.x25_c00415{left:440.960000pt;}
.x60_c00415{left:443.040000pt;}
.x56_c00415{left:444.000000pt;}
.xe6_c00415{left:445.333333pt;}
.xb4_c00415{left:448.000000pt;}
.xd4_c00415{left:448.960000pt;}
.x1a_c00415{left:450.293333pt;}
.x9c_c00415{left:452.960000pt;}
.xcc_c00415{left:456.000000pt;}
.xc0_c00415{left:457.706667pt;}
.x26_c00415{left:458.666667pt;}
.xfc_c00415{left:461.333333pt;}
.x85_c00415{left:462.666667pt;}
.xc_c00415{left:463.626667pt;}
.x61_c00415{left:465.333333pt;}
.xde_c00415{left:468.000000pt;}
.xee_c00415{left:470.666667pt;}
.x93_c00415{left:472.000000pt;}
.xb5_c00415{left:474.666667pt;}
.x8d_c00415{left:476.000000pt;}
.xd_c00415{left:476.960000pt;}
.x27_c00415{left:479.626667pt;}
.x1b_c00415{left:481.333333pt;}
.x57_c00415{left:482.666667pt;}
.x86_c00415{left:484.373333pt;}
.xe3_c00415{left:485.333333pt;}
.xa5_c00415{left:488.000000pt;}
.x101_c00415{left:489.333333pt;}
.xbc_c00415{left:490.293333pt;}
.x6f_c00415{left:492.373333pt;}
.x65_c00415{left:493.333333pt;}
.xaf_c00415{left:494.666667pt;}
.x94_c00415{left:496.373333pt;}
.xcd_c00415{left:499.040000pt;}
.x42_c00415{left:501.333333pt;}
.x7d_c00415{left:503.040000pt;}
.xe7_c00415{left:504.000000pt;}
.x1c_c00415{left:508.373333pt;}
.xdf_c00415{left:509.333333pt;}
.x109_c00415{left:511.040000pt;}
.x4d_c00415{left:512.000000pt;}
.xef_c00415{left:513.333333pt;}
.x8e_c00415{left:516.373333pt;}
.x9d_c00415{left:517.706667pt;}
.xbd_c00415{left:518.666667pt;}
.xa6_c00415{left:522.293333pt;}
.xce_c00415{left:524.000000pt;}
.x32_c00415{left:525.333333pt;}
.x58_c00415{left:526.666667pt;}
.xb6_c00415{left:530.666667pt;}
.x1d_c00415{left:532.000000pt;}
.x95_c00415{left:533.706667pt;}
.xb0_c00415{left:534.666667pt;}
.x87_c00415{left:536.960000pt;}
.xcf_c00415{left:539.040000pt;}
.x104_c00415{left:541.333333pt;}
.xe4_c00415{left:543.040000pt;}
.x70_c00415{left:544.000000pt;}
.x66_c00415{left:545.333333pt;}
.xe_c00415{left:546.293333pt;}
.x28_c00415{left:548.960000pt;}
.xb7_c00415{left:550.666667pt;}
.x43_c00415{left:552.000000pt;}
.xf0_c00415{left:553.333333pt;}
.x88_c00415{left:554.666667pt;}
.xd5_c00415{left:556.373333pt;}
.x67_c00415{left:557.333333pt;}
.xe0_c00415{left:558.666667pt;}
.x10c_c00415{left:560.000000pt;}
.x44_c00415{left:561.333333pt;}
.xe8_c00415{left:563.426667pt;}
.x33_c00415{left:564.373333pt;}
.xdb_c00415{left:565.333333pt;}
.xe5_c00415{left:566.666667pt;}
.xf4_c00415{left:568.000000pt;}
.x105_c00415{left:572.960000pt;}
.x9e_c00415{left:574.666667pt;}
.x4e_c00415{left:577.706667pt;}
.xc1_c00415{left:581.333333pt;}
.xf_c00415{left:582.666667pt;}
.xa7_c00415{left:584.000000pt;}
.x96_c00415{left:586.666667pt;}
.x71_c00415{left:588.373333pt;}
.x59_c00415{left:589.706667pt;}
.x45_c00415{left:590.666667pt;}
.xc7_c00415{left:592.960000pt;}
.xd6_c00415{left:595.040000pt;}
.xfd_c00415{left:596.000000pt;}
.x72_c00415{left:598.666667pt;}
.x34_c00415{left:600.960000pt;}
.xf5_c00415{left:602.666667pt;}
.x5a_c00415{left:603.626667pt;}
.xd0_c00415{left:608.000000pt;}
.x97_c00415{left:608.960000pt;}
.xc2_c00415{left:611.626667pt;}
.x7e_c00415{left:613.333333pt;}
.xa8_c00415{left:614.293333pt;}
.x46_c00415{left:616.373333pt;}
.x89_c00415{left:620.373333pt;}
.xc8_c00415{left:622.666667pt;}
.x7f_c00415{left:624.000000pt;}
.xf6_c00415{left:625.333333pt;}
.x73_c00415{left:629.333333pt;}
.xa9_c00415{left:631.040000pt;}
.xb1_c00415{left:633.333333pt;}
.xd1_c00415{left:637.333333pt;}
.xf8_c00415{left:642.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_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_6cc0fb08f93eae8fe635c4ba.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m85_c00416{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m41_c00416{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.mbb_c00416{transform:matrix(0.361029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361029,0.000000,0.000000,0.250000,0,0);}
.m0_c00416{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m51_c00416{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m4a_c00416{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m32_c00416{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.m73_c00416{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m94_c00416{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00416{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m89_c00416{transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);}
.m49_c00416{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m39_c00416{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.m40_c00416{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m44_c00416{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m60_c00416{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.ma_c00416{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m31_c00416{transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);}
.m30_c00416{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m18_c00416{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m19_c00416{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.ma7_c00416{transform:matrix(0.419872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419872,0.000000,0.000000,0.250000,0,0);}
.m37_c00416{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m5a_c00416{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m58_c00416{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m7c_c00416{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m64_c00416{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.ma5_c00416{transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);}
.m7_c00416{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m5e_c00416{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m6_c00416{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m7d_c00416{transform:matrix(0.431891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431891,0.000000,0.000000,0.250000,0,0);}
.m35_c00416{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m96_c00416{transform:matrix(0.433088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433088,0.000000,0.000000,0.250000,0,0);}
.m88_c00416{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_c00416{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m80_c00416{transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);}
.m1b_c00416{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m38_c00416{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m8f_c00416{transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);}
.m3b_c00416{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m2d_c00416{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m56_c00416{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m24_c00416{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m15_c00416{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m83_c00416{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m9b_c00416{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m2a_c00416{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.m9d_c00416{transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);}
.mb8_c00416{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.m55_c00416{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.m91_c00416{transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);}
.m3_c00416{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m4_c00416{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.ma1_c00416{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m4c_c00416{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mae_c00416{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m62_c00416{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m1a_c00416{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mb9_c00416{transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);}
.maf_c00416{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.mf_c00416{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_c00416{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m54_c00416{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m48_c00416{transform:matrix(0.507780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507780,0.000000,0.000000,0.250000,0,0);}
.m74_c00416{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);}
.m7b_c00416{transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);}
.m25_c00416{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m69_c00416{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mb0_c00416{transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);}
.m9_c00416{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m45_c00416{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m71_c00416{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m11_c00416{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m2b_c00416{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m29_c00416{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m78_c00416{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m1e_c00416{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m28_c00416{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m1d_c00416{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mb7_c00416{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m61_c00416{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m42_c00416{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m12_c00416{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m3a_c00416{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m13_c00416{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.md_c00416{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m76_c00416{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m5b_c00416{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m14_c00416{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m2f_c00416{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m8c_c00416{transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);}
.m2e_c00416{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mb3_c00416{transform:matrix(0.544872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544872,0.000000,0.000000,0.250000,0,0);}
.m3c_c00416{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m67_c00416{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m2_c00416{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.maa_c00416{transform:matrix(0.548878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548878,0.000000,0.000000,0.250000,0,0);}
.m36_c00416{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m99_c00416{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m27_c00416{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m34_c00416{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m90_c00416{transform:matrix(0.552083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552083,0.000000,0.000000,0.250000,0,0);}
.m7a_c00416{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m5c_c00416{transform:matrix(0.552905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552905,0.000000,0.000000,0.250000,0,0);}
.m6a_c00416{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.mb_c00416{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m3d_c00416{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m1c_c00416{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m59_c00416{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m23_c00416{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m63_c00416{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m6f_c00416{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m2c_c00416{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m95_c00416{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m75_c00416{transform:matrix(0.565441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565441,0.000000,0.000000,0.250000,0,0);}
.mad_c00416{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.mac_c00416{transform:matrix(0.568109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568109,0.000000,0.000000,0.250000,0,0);}
.m6d_c00416{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);}
.mb4_c00416{transform:matrix(0.570485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570485,0.000000,0.000000,0.250000,0,0);}
.m1f_c00416{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m4e_c00416{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m66_c00416{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m77_c00416{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m26_c00416{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m87_c00416{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.m92_c00416{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m6e_c00416{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m53_c00416{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m3e_c00416{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m47_c00416{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m4b_c00416{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m8_c00416{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);}
.m97_c00416{transform:matrix(0.601322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601322,0.000000,0.000000,0.250000,0,0);}
.ma8_c00416{transform:matrix(0.602564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602564,0.000000,0.000000,0.250000,0,0);}
.m6c_c00416{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m7f_c00416{transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);}
.m8b_c00416{transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);}
.m7e_c00416{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.mc_c00416{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m82_c00416{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m52_c00416{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m79_c00416{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m70_c00416{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m10_c00416{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.ma4_c00416{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m21_c00416{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);}
.m16_c00416{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m22_c00416{transform:matrix(0.639423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639423,0.000000,0.000000,0.250000,0,0);}
.m1_c00416{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.mb2_c00416{transform:matrix(0.643172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643172,0.000000,0.000000,0.250000,0,0);}
.m68_c00416{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m86_c00416{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m93_c00416{transform:matrix(0.656250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656250,0.000000,0.000000,0.250000,0,0);}
.m72_c00416{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m81_c00416{transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);}
.m8e_c00416{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m33_c00416{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m84_c00416{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m5d_c00416{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m57_c00416{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m9c_c00416{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.m9f_c00416{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.mb6_c00416{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m6b_c00416{transform:matrix(0.723529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.723529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.723529,0.000000,0.000000,0.250000,0,0);}
.ma3_c00416{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m17_c00416{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m4d_c00416{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m98_c00416{transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);}
.ma6_c00416{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.m9e_c00416{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m5f_c00416{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m50_c00416{transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);}
.mba_c00416{transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);}
.m43_c00416{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m65_c00416{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mb1_c00416{transform:matrix(0.772727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772727,0.000000,0.000000,0.250000,0,0);}
.mb5_c00416{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.ma0_c00416{transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);}
.m4f_c00416{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m9a_c00416{transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);}
.me_c00416{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.ma2_c00416{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m8d_c00416{transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);}
.ma9_c00416{transform:matrix(1.368421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.368421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.368421,0.000000,0.000000,0.250000,0,0);}
.m8a_c00416{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.mab_c00416{transform:matrix(3.511062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.511062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.511062,0.000000,0.000000,0.250000,0,0);}
.m46_c00416{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00416{vertical-align:-6.000000px;}
.v0_c00416{vertical-align:0.000000px;}
.v2_c00416{vertical-align:6.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:-7.189112px;}
.ws19_c00416{word-spacing:0.000000px;}
.ws2_c00416{word-spacing:4.023815px;}
.ws14_c00416{word-spacing:5.600224px;}
.ws1_c00416{word-spacing:5.624766px;}
.wsf_c00416{word-spacing:7.603165px;}
.wsc_c00416{word-spacing:7.825398px;}
.ws6_c00416{word-spacing:8.373475px;}
.wsa_c00416{word-spacing:8.921552px;}
.wse_c00416{word-spacing:10.797729px;}
.ws16_c00416{word-spacing:12.510814px;}
.ws11_c00416{word-spacing:12.638400px;}
.ws12_c00416{word-spacing:12.952792px;}
.wsd_c00416{word-spacing:15.638400px;}
.ws15_c00416{word-spacing:15.985844px;}
.ws17_c00416{word-spacing:18.156640px;}
.ws10_c00416{word-spacing:18.638400px;}
.ws13_c00416{word-spacing:20.534773px;}
.ws18_c00416{word-spacing:22.162509px;}
.ws9_c00416{word-spacing:22.681993px;}
.ws4_c00416{word-spacing:23.395813px;}
.wsb_c00416{word-spacing:24.971068px;}
.ws7_c00416{word-spacing:28.802849px;}
.ws5_c00416{word-spacing:38.898230px;}
.ws3_c00416{word-spacing:47.386473px;}
.ws8_c00416{word-spacing:52.250880px;}
._1_c00416{width:10.918832px;}
._0_c00416{width:20.256331px;}
._2_c00416{width:29.570880px;}
.fc0_c00416{color:transparent;}
.fs6_c00416{font-size:3.420000px;}
.fs8_c00416{font-size:6.780000px;}
.fs9_c00416{font-size:11.880000px;}
.fs7_c00416{font-size:13.620000px;}
.fs4_c00416{font-size:18.720000px;}
.fs1_c00416{font-size:20.400000px;}
.fs3_c00416{font-size:25.500000px;}
.fs2_c00416{font-size:28.920000px;}
.fs5_c00416{font-size:32.340000px;}
.fs0_c00416{font-size:35.700000px;}
.y0_c00416{bottom:0.000000px;}
.y40_c00416{bottom:251.550000px;}
.y3e_c00416{bottom:251.745000px;}
.y3c_c00416{bottom:253.050000px;}
.y3b_c00416{bottom:253.905000px;}
.y3d_c00416{bottom:254.130000px;}
.y3f_c00416{bottom:254.970000px;}
.y38_c00416{bottom:271.245000px;}
.y37_c00416{bottom:273.405000px;}
.y39_c00416{bottom:273.630000px;}
.y3a_c00416{bottom:274.905000px;}
.y35_c00416{bottom:292.905000px;}
.y36_c00416{bottom:294.405000px;}
.y34_c00416{bottom:311.745000px;}
.y33_c00416{bottom:313.905000px;}
.y30_c00416{bottom:331.245000px;}
.y32_c00416{bottom:332.130000px;}
.y2f_c00416{bottom:333.405000px;}
.y31_c00416{bottom:334.470000px;}
.y2b_c00416{bottom:350.745000px;}
.y2d_c00416{bottom:351.825000px;}
.y2e_c00416{bottom:352.470000px;}
.y2c_c00416{bottom:352.905000px;}
.y2a_c00416{bottom:370.245000px;}
.y29_c00416{bottom:372.405000px;}
.y28_c00416{bottom:372.630000px;}
.y27_c00416{bottom:389.745000px;}
.y24_c00416{bottom:391.905000px;}
.y26_c00416{bottom:393.405000px;}
.y25_c00416{bottom:393.420000px;}
.ybc_c00416{bottom:433.050000px;}
.ybb_c00416{bottom:435.630000px;}
.yba_c00416{bottom:436.695000px;}
.ybd_c00416{bottom:437.130000px;}
.ybf_c00416{bottom:438.195000px;}
.ybe_c00416{bottom:438.630000px;}
.yc0_c00416{bottom:439.695000px;}
.yb4_c00416{bottom:449.130000px;}
.yb5_c00416{bottom:450.195000px;}
.yb6_c00416{bottom:450.630000px;}
.yb7_c00416{bottom:451.695000px;}
.yb9_c00416{bottom:452.130000px;}
.yb8_c00416{bottom:453.195000px;}
.yaf_c00416{bottom:462.195000px;}
.yae_c00416{bottom:464.130000px;}
.yb0_c00416{bottom:465.195000px;}
.yb2_c00416{bottom:465.630000px;}
.yb1_c00416{bottom:466.695000px;}
.yb3_c00416{bottom:467.130000px;}
.yad_c00416{bottom:469.695000px;}
.yaa_c00416{bottom:478.695000px;}
.yac_c00416{bottom:479.130000px;}
.yab_c00416{bottom:480.195000px;}
.ya3_c00416{bottom:491.130000px;}
.ya5_c00416{bottom:491.775000px;}
.ya4_c00416{bottom:492.195000px;}
.ya6_c00416{bottom:493.695000px;}
.ya7_c00416{bottom:493.920000px;}
.ya8_c00416{bottom:494.130000px;}
.ya9_c00416{bottom:495.195000px;}
.y9d_c00416{bottom:504.630000px;}
.y9e_c00416{bottom:505.695000px;}
.y9f_c00416{bottom:506.130000px;}
.ya0_c00416{bottom:507.195000px;}
.ya1_c00416{bottom:507.630000px;}
.ya2_c00416{bottom:508.695000px;}
.y98_c00416{bottom:519.630000px;}
.y99_c00416{bottom:520.695000px;}
.y9b_c00416{bottom:521.130000px;}
.y9c_c00416{bottom:522.195000px;}
.y9a_c00416{bottom:522.420000px;}
.y97_c00416{bottom:533.130000px;}
.y92_c00416{bottom:546.630000px;}
.y93_c00416{bottom:548.130000px;}
.y94_c00416{bottom:548.355000px;}
.y96_c00416{bottom:549.630000px;}
.y95_c00416{bottom:550.695000px;}
.y90_c00416{bottom:560.130000px;}
.y91_c00416{bottom:565.920000px;}
.y88_c00416{bottom:574.050000px;}
.y8a_c00416{bottom:575.130000px;}
.y89_c00416{bottom:576.195000px;}
.y8b_c00416{bottom:576.630000px;}
.y8c_c00416{bottom:577.695000px;}
.y8d_c00416{bottom:578.130000px;}
.y8f_c00416{bottom:579.195000px;}
.y8e_c00416{bottom:579.420000px;}
.y83_c00416{bottom:588.630000px;}
.y84_c00416{bottom:589.695000px;}
.y85_c00416{bottom:590.130000px;}
.y86_c00416{bottom:591.195000px;}
.y87_c00416{bottom:591.630000px;}
.y7e_c00416{bottom:602.130000px;}
.y7d_c00416{bottom:603.195000px;}
.y80_c00416{bottom:603.630000px;}
.y7f_c00416{bottom:604.695000px;}
.y81_c00416{bottom:605.130000px;}
.y82_c00416{bottom:606.195000px;}
.y78_c00416{bottom:615.630000px;}
.y77_c00416{bottom:616.695000px;}
.y79_c00416{bottom:617.130000px;}
.y7a_c00416{bottom:618.195000px;}
.y7b_c00416{bottom:618.630000px;}
.y7c_c00416{bottom:619.695000px;}
.y73_c00416{bottom:630.630000px;}
.y74_c00416{bottom:631.695000px;}
.y76_c00416{bottom:632.130000px;}
.y75_c00416{bottom:633.195000px;}
.y6e_c00416{bottom:643.695000px;}
.y6f_c00416{bottom:644.130000px;}
.y70_c00416{bottom:645.195000px;}
.y71_c00416{bottom:645.630000px;}
.y72_c00416{bottom:646.695000px;}
.y6a_c00416{bottom:670.695000px;}
.y69_c00416{bottom:671.550000px;}
.y6b_c00416{bottom:673.695000px;}
.y6d_c00416{bottom:675.195000px;}
.y6c_c00416{bottom:675.420000px;}
.y65_c00416{bottom:687.195000px;}
.y67_c00416{bottom:688.695000px;}
.y66_c00416{bottom:688.920000px;}
.y68_c00416{bottom:690.420000px;}
.y60_c00416{bottom:699.630000px;}
.y61_c00416{bottom:700.695000px;}
.y62_c00416{bottom:701.130000px;}
.y63_c00416{bottom:702.195000px;}
.y64_c00416{bottom:703.920000px;}
.y5c_c00416{bottom:714.630000px;}
.y5d_c00416{bottom:715.695000px;}
.y5e_c00416{bottom:716.130000px;}
.y5f_c00416{bottom:717.420000px;}
.y59_c00416{bottom:727.695000px;}
.y58_c00416{bottom:728.130000px;}
.y5a_c00416{bottom:729.195000px;}
.y5b_c00416{bottom:730.920000px;}
.y52_c00416{bottom:741.195000px;}
.y54_c00416{bottom:741.630000px;}
.y53_c00416{bottom:742.695000px;}
.y55_c00416{bottom:743.130000px;}
.y56_c00416{bottom:744.195000px;}
.y57_c00416{bottom:744.420000px;}
.y4e_c00416{bottom:769.695000px;}
.y4f_c00416{bottom:771.630000px;}
.y50_c00416{bottom:772.695000px;}
.y51_c00416{bottom:773.130000px;}
.y4a_c00416{bottom:797.130000px;}
.y4c_c00416{bottom:798.630000px;}
.y4b_c00416{bottom:799.695000px;}
.y4d_c00416{bottom:801.195000px;}
.y47_c00416{bottom:826.050000px;}
.y48_c00416{bottom:826.470000px;}
.y49_c00416{bottom:827.550000px;}
.y46_c00416{bottom:839.325000px;}
.y43_c00416{bottom:839.970000px;}
.y44_c00416{bottom:841.050000px;}
.y45_c00416{bottom:841.470000px;}
.y42_c00416{bottom:862.050000px;}
.y41_c00416{bottom:863.550000px;}
.y21_c00416{bottom:901.245000px;}
.y22_c00416{bottom:903.405000px;}
.y23_c00416{bottom:903.630000px;}
.y20_c00416{bottom:922.245000px;}
.y1f_c00416{bottom:922.905000px;}
.y1d_c00416{bottom:923.970000px;}
.y1e_c00416{bottom:924.405000px;}
.y1c_c00416{bottom:941.745000px;}
.y17_c00416{bottom:959.745000px;}
.y1a_c00416{bottom:961.245000px;}
.y19_c00416{bottom:961.905000px;}
.y18_c00416{bottom:962.970000px;}
.y1b_c00416{bottom:963.405000px;}
.y14_c00416{bottom:979.245000px;}
.y15_c00416{bottom:980.745000px;}
.y12_c00416{bottom:981.405000px;}
.y16_c00416{bottom:981.825000px;}
.y13_c00416{bottom:982.905000px;}
.y10_c00416{bottom:1000.245000px;}
.y11_c00416{bottom:1001.325000px;}
.yf_c00416{bottom:1002.405000px;}
.yc_c00416{bottom:1019.745000px;}
.ye_c00416{bottom:1020.630000px;}
.yd_c00416{bottom:1021.905000px;}
.y8_c00416{bottom:1037.970000px;}
.y9_c00416{bottom:1038.405000px;}
.y7_c00416{bottom:1040.130000px;}
.ya_c00416{bottom:1040.325000px;}
.y6_c00416{bottom:1041.405000px;}
.yb_c00416{bottom:1042.470000px;}
.y4_c00416{bottom:1058.745000px;}
.y3_c00416{bottom:1060.905000px;}
.y5_c00416{bottom:1061.970000px;}
.y1_c00416{bottom:1097.745000px;}
.y2_c00416{bottom:1099.050000px;}
.h7_c00416{height:4.206533px;}
.h9_c00416{height:8.339268px;}
.hc_c00416{height:14.612168px;}
.h8_c00416{height:16.752334px;}
.hb_c00416{height:22.752334px;}
.h5_c00416{height:23.025234px;}
.h2_c00416{height:25.091602px;}
.ha_c00416{height:29.025234px;}
.h4_c00416{height:31.364502px;}
.h3_c00416{height:35.571035px;}
.h6_c00416{height:39.777568px;}
.h1_c00416{height:43.910303px;}
.h0_c00416{height:1335.000000px;}
.w0_c00416{width:880.500000px;}
.x0_c00416{left:0.000000px;}
.x3_c00416{left:151.500000px;}
.x5e_c00416{left:156.000000px;}
.x47_c00416{left:168.000000px;}
.x54_c00416{left:171.645000px;}
.x5f_c00416{left:180.000000px;}
.x71_c00416{left:184.500000px;}
.x29_c00416{left:192.420000px;}
.x3d_c00416{left:196.080000px;}
.x4_c00416{left:198.000000px;}
.x80_c00416{left:201.000000px;}
.x1b_c00416{left:205.500000px;}
.x4f_c00416{left:208.500000px;}
.xc7_c00416{left:210.000000px;}
.xd1_c00416{left:211.080000px;}
.x3e_c00416{left:214.500000px;}
.x34_c00416{left:216.000000px;}
.x5_c00416{left:217.080000px;}
.x81_c00416{left:219.420000px;}
.x2a_c00416{left:220.500000px;}
.xf_c00416{left:221.580000px;}
.x69_c00416{left:223.500000px;}
.xa0_c00416{left:231.000000px;}
.xaa_c00416{left:232.500000px;}
.xb1_c00416{left:235.500000px;}
.x72_c00416{left:237.000000px;}
.x1c_c00416{left:238.500000px;}
.x55_c00416{left:241.500000px;}
.x3f_c00416{left:243.000000px;}
.xc0_c00416{left:246.000000px;}
.xab_c00416{left:250.080000px;}
.x6_c00416{left:252.420000px;}
.xcd_c00416{left:254.580000px;}
.x73_c00416{left:256.080000px;}
.xb5_c00416{left:258.000000px;}
.x50_c00416{left:259.920000px;}
.x48_c00416{left:262.920000px;}
.x60_c00416{left:267.000000px;}
.xc8_c00416{left:268.080000px;}
.x10_c00416{left:271.500000px;}
.xb2_c00416{left:273.000000px;}
.xba_c00416{left:280.500000px;}
.xd2_c00416{left:283.500000px;}
.x56_c00416{left:285.000000px;}
.x1d_c00416{left:287.580000px;}
.x61_c00416{left:291.420000px;}
.x35_c00416{left:292.920000px;}
.x51_c00416{left:296.580000px;}
.x6a_c00416{left:298.500000px;}
.x2b_c00416{left:306.420000px;}
.x8b_c00416{left:311.580000px;}
.x40_c00416{left:313.920000px;}
.x6b_c00416{left:315.000000px;}
.x11_c00416{left:316.500000px;}
.xc9_c00416{left:318.000000px;}
.x62_c00416{left:319.500000px;}
.x9a_c00416{left:320.580000px;}
.x82_c00416{left:322.080000px;}
.xd3_c00416{left:324.000000px;}
.x1e_c00416{left:325.500000px;}
.x96_c00416{left:330.000000px;}
.x7_c00416{left:331.920000px;}
.x83_c00416{left:340.080000px;}
.x36_c00416{left:342.420000px;}
.xc1_c00416{left:348.000000px;}
.xcc_c00416{left:349.500000px;}
.xa3_c00416{left:351.000000px;}
.xb3_c00416{left:352.500000px;}
.xcf_c00416{left:354.000000px;}
.x49_c00416{left:355.080000px;}
.xbb_c00416{left:357.000000px;}
.x84_c00416{left:360.000000px;}
.x41_c00416{left:361.080000px;}
.x6c_c00416{left:362.580000px;}
.x57_c00416{left:364.500000px;}
.x52_c00416{left:367.500000px;}
.x2c_c00416{left:378.000000px;}
.x9b_c00416{left:379.500000px;}
.x1f_c00416{left:380.580000px;}
.x8c_c00416{left:382.500000px;}
.x6d_c00416{left:384.420000px;}
.xac_c00416{left:385.920000px;}
.xd4_c00416{left:387.000000px;}
.x4a_c00416{left:390.000000px;}
.x53_c00416{left:393.420000px;}
.x63_c00416{left:398.580000px;}
.x58_c00416{left:403.080000px;}
.x2_c00416{left:405.000000px;}
.x12_c00416{left:406.500000px;}
.x8_c00416{left:409.500000px;}
.x37_c00416{left:410.580000px;}
.x94_c00416{left:412.500000px;}
.x9c_c00416{left:414.000000px;}
.xb6_c00416{left:415.500000px;}
.xad_c00416{left:417.000000px;}
.xda_c00416{left:418.500000px;}
.x64_c00416{left:420.420000px;}
.x8d_c00416{left:421.500000px;}
.x97_c00416{left:422.580000px;}
.x4b_c00416{left:430.500000px;}
.x2d_c00416{left:433.920000px;}
.x20_c00416{left:435.420000px;}
.x8e_c00416{left:436.920000px;}
.x13_c00416{left:438.420000px;}
.x85_c00416{left:439.500000px;}
.x98_c00416{left:442.500000px;}
.xc2_c00416{left:444.000000px;}
.xa4_c00416{left:445.500000px;}
.x42_c00416{left:447.420000px;}
.x65_c00416{left:448.500000px;}
.xd5_c00416{left:450.000000px;}
.xbc_c00416{left:451.500000px;}
.x38_c00416{left:453.000000px;}
.x95_c00416{left:456.000000px;}
.x7a_c00416{left:457.080000px;}
.x6e_c00416{left:462.000000px;}
.x21_c00416{left:463.500000px;}
.x74_c00416{left:465.000000px;}
.x2e_c00416{left:472.920000px;}
.xc3_c00416{left:474.000000px;}
.x9d_c00416{left:475.500000px;}
.xd9_c00416{left:477.000000px;}
.xb7_c00416{left:478.500000px;}
.xb4_c00416{left:480.420000px;}
.x6f_c00416{left:481.920000px;}
.xbd_c00416{left:483.000000px;}
.x43_c00416{left:484.500000px;}
.xc4_c00416{left:487.500000px;}
.x7b_c00416{left:488.580000px;}
.x59_c00416{left:490.500000px;}
.x9e_c00416{left:492.000000px;}
.x9_c00416{left:495.000000px;}
.x14_c00416{left:499.500000px;}
.xa1_c00416{left:501.000000px;}
.x22_c00416{left:502.080000px;}
.x8f_c00416{left:504.000000px;}
.x66_c00416{left:505.500000px;}
.xc5_c00416{left:507.000000px;}
.xd0_c00416{left:508.920000px;}
.xa5_c00416{left:510.000000px;}
.x39_c00416{left:511.500000px;}
.xd6_c00416{left:513.000000px;}
.xbe_c00416{left:514.500000px;}
.x86_c00416{left:516.420000px;}
.x44_c00416{left:518.580000px;}
.x23_c00416{left:523.920000px;}
.x90_c00416{left:525.000000px;}
.x75_c00416{left:528.420000px;}
.xa_c00416{left:529.920000px;}
.xa2_c00416{left:532.500000px;}
.x2f_c00416{left:534.000000px;}
.x4c_c00416{left:535.080000px;}
.xc6_c00416{left:537.000000px;}
.x45_c00416{left:538.080000px;}
.xa6_c00416{left:540.000000px;}
.xb8_c00416{left:541.500000px;}
.x7c_c00416{left:543.645000px;}
.xbf_c00416{left:547.500000px;}
.x24_c00416{left:552.000000px;}
.x87_c00416{left:555.420000px;}
.x4d_c00416{left:556.920000px;}
.x67_c00416{left:558.000000px;}
.x3a_c00416{left:559.920000px;}
.x9f_c00416{left:561.000000px;}
.x76_c00416{left:562.500000px;}
.x15_c00416{left:564.000000px;}
.x5a_c00416{left:566.580000px;}
.xca_c00416{left:570.000000px;}
.xce_c00416{left:571.920000px;}
.xa7_c00416{left:573.000000px;}
.xae_c00416{left:574.500000px;}
.x77_c00416{left:575.580000px;}
.x30_c00416{left:577.500000px;}
.x68_c00416{left:579.420000px;}
.x16_c00416{left:580.500000px;}
.x25_c00416{left:583.500000px;}
.x91_c00416{left:591.420000px;}
.x7d_c00416{left:595.080000px;}
.xb_c00416{left:598.500000px;}
.xcb_c00416{left:601.500000px;}
.xa8_c00416{left:603.000000px;}
.xb9_c00416{left:604.500000px;}
.xaf_c00416{left:606.420000px;}
.xd7_c00416{left:607.500000px;}
.x46_c00416{left:609.000000px;}
.x5b_c00416{left:613.500000px;}
.xc_c00416{left:616.920000px;}
.x3b_c00416{left:622.920000px;}
.x17_c00416{left:625.080000px;}
.x31_c00416{left:627.000000px;}
.x99_c00416{left:633.420000px;}
.xa9_c00416{left:634.500000px;}
.xb0_c00416{left:636.000000px;}
.xd8_c00416{left:639.000000px;}
.x88_c00416{left:640.080000px;}
.x26_c00416{left:642.000000px;}
.x92_c00416{left:646.500000px;}
.x78_c00416{left:648.000000px;}
.x5c_c00416{left:649.920000px;}
.x32_c00416{left:658.500000px;}
.x27_c00416{left:664.920000px;}
.x7e_c00416{left:666.420000px;}
.xd_c00416{left:667.920000px;}
.x3c_c00416{left:669.000000px;}
.x18_c00416{left:670.080000px;}
.x89_c00416{left:673.920000px;}
.x19_c00416{left:684.000000px;}
.x5d_c00416{left:685.500000px;}
.x33_c00416{left:687.000000px;}
.x28_c00416{left:693.000000px;}
.x7f_c00416{left:694.500000px;}
.x79_c00416{left:699.420000px;}
.x93_c00416{left:700.500000px;}
.x1_c00416{left:705.000000px;}
.xe_c00416{left:706.500000px;}
.x4e_c00416{left:708.420000px;}
.x8a_c00416{left:712.920000px;}
.x1a_c00416{left:715.500000px;}
.x70_c00416{left:719.580000px;}
@media print{
.v1_c00416{vertical-align:-5.333333pt;}
.v0_c00416{vertical-align:0.000000pt;}
.v2_c00416{vertical-align:5.333333pt;}
.ls0_c00416{letter-spacing:0.000000pt;}
.ws0_c00416{word-spacing:-6.390322pt;}
.ws19_c00416{word-spacing:0.000000pt;}
.ws2_c00416{word-spacing:3.576724pt;}
.ws14_c00416{word-spacing:4.977976pt;}
.ws1_c00416{word-spacing:4.999792pt;}
.wsf_c00416{word-spacing:6.758369pt;}
.wsc_c00416{word-spacing:6.955910pt;}
.ws6_c00416{word-spacing:7.443089pt;}
.wsa_c00416{word-spacing:7.930269pt;}
.wse_c00416{word-spacing:9.597981pt;}
.ws16_c00416{word-spacing:11.120724pt;}
.ws11_c00416{word-spacing:11.234133pt;}
.ws12_c00416{word-spacing:11.513593pt;}
.wsd_c00416{word-spacing:13.900800pt;}
.ws15_c00416{word-spacing:14.209640pt;}
.ws17_c00416{word-spacing:16.139235pt;}
.ws10_c00416{word-spacing:16.567467pt;}
.ws13_c00416{word-spacing:18.253132pt;}
.ws18_c00416{word-spacing:19.700008pt;}
.ws9_c00416{word-spacing:20.161771pt;}
.ws4_c00416{word-spacing:20.796278pt;}
.wsb_c00416{word-spacing:22.196505pt;}
.ws7_c00416{word-spacing:25.602532pt;}
.ws5_c00416{word-spacing:34.576205pt;}
.ws3_c00416{word-spacing:42.121309pt;}
.ws8_c00416{word-spacing:46.445227pt;}
._1_c00416{width:9.705629pt;}
._0_c00416{width:18.005628pt;}
._2_c00416{width:26.285227pt;}
.fs6_c00416{font-size:3.040000pt;}
.fs8_c00416{font-size:6.026667pt;}
.fs9_c00416{font-size:10.560000pt;}
.fs7_c00416{font-size:12.106667pt;}
.fs4_c00416{font-size:16.640000pt;}
.fs1_c00416{font-size:18.133333pt;}
.fs3_c00416{font-size:22.666667pt;}
.fs2_c00416{font-size:25.706667pt;}
.fs5_c00416{font-size:28.746667pt;}
.fs0_c00416{font-size:31.733333pt;}
.y0_c00416{bottom:0.000000pt;}
.y40_c00416{bottom:223.600000pt;}
.y3e_c00416{bottom:223.773333pt;}
.y3c_c00416{bottom:224.933333pt;}
.y3b_c00416{bottom:225.693333pt;}
.y3d_c00416{bottom:225.893333pt;}
.y3f_c00416{bottom:226.640000pt;}
.y38_c00416{bottom:241.106667pt;}
.y37_c00416{bottom:243.026667pt;}
.y39_c00416{bottom:243.226667pt;}
.y3a_c00416{bottom:244.360000pt;}
.y35_c00416{bottom:260.360000pt;}
.y36_c00416{bottom:261.693333pt;}
.y34_c00416{bottom:277.106667pt;}
.y33_c00416{bottom:279.026667pt;}
.y30_c00416{bottom:294.440000pt;}
.y32_c00416{bottom:295.226667pt;}
.y2f_c00416{bottom:296.360000pt;}
.y31_c00416{bottom:297.306667pt;}
.y2b_c00416{bottom:311.773333pt;}
.y2d_c00416{bottom:312.733333pt;}
.y2e_c00416{bottom:313.306667pt;}
.y2c_c00416{bottom:313.693333pt;}
.y2a_c00416{bottom:329.106667pt;}
.y29_c00416{bottom:331.026667pt;}
.y28_c00416{bottom:331.226667pt;}
.y27_c00416{bottom:346.440000pt;}
.y24_c00416{bottom:348.360000pt;}
.y26_c00416{bottom:349.693333pt;}
.y25_c00416{bottom:349.706667pt;}
.ybc_c00416{bottom:384.933333pt;}
.ybb_c00416{bottom:387.226667pt;}
.yba_c00416{bottom:388.173333pt;}
.ybd_c00416{bottom:388.560000pt;}
.ybf_c00416{bottom:389.506667pt;}
.ybe_c00416{bottom:389.893333pt;}
.yc0_c00416{bottom:390.840000pt;}
.yb4_c00416{bottom:399.226667pt;}
.yb5_c00416{bottom:400.173333pt;}
.yb6_c00416{bottom:400.560000pt;}
.yb7_c00416{bottom:401.506667pt;}
.yb9_c00416{bottom:401.893333pt;}
.yb8_c00416{bottom:402.840000pt;}
.yaf_c00416{bottom:410.840000pt;}
.yae_c00416{bottom:412.560000pt;}
.yb0_c00416{bottom:413.506667pt;}
.yb2_c00416{bottom:413.893333pt;}
.yb1_c00416{bottom:414.840000pt;}
.yb3_c00416{bottom:415.226667pt;}
.yad_c00416{bottom:417.506667pt;}
.yaa_c00416{bottom:425.506667pt;}
.yac_c00416{bottom:425.893333pt;}
.yab_c00416{bottom:426.840000pt;}
.ya3_c00416{bottom:436.560000pt;}
.ya5_c00416{bottom:437.133333pt;}
.ya4_c00416{bottom:437.506667pt;}
.ya6_c00416{bottom:438.840000pt;}
.ya7_c00416{bottom:439.040000pt;}
.ya8_c00416{bottom:439.226667pt;}
.ya9_c00416{bottom:440.173333pt;}
.y9d_c00416{bottom:448.560000pt;}
.y9e_c00416{bottom:449.506667pt;}
.y9f_c00416{bottom:449.893333pt;}
.ya0_c00416{bottom:450.840000pt;}
.ya1_c00416{bottom:451.226667pt;}
.ya2_c00416{bottom:452.173333pt;}
.y98_c00416{bottom:461.893333pt;}
.y99_c00416{bottom:462.840000pt;}
.y9b_c00416{bottom:463.226667pt;}
.y9c_c00416{bottom:464.173333pt;}
.y9a_c00416{bottom:464.373333pt;}
.y97_c00416{bottom:473.893333pt;}
.y92_c00416{bottom:485.893333pt;}
.y93_c00416{bottom:487.226667pt;}
.y94_c00416{bottom:487.426667pt;}
.y96_c00416{bottom:488.560000pt;}
.y95_c00416{bottom:489.506667pt;}
.y90_c00416{bottom:497.893333pt;}
.y91_c00416{bottom:503.040000pt;}
.y88_c00416{bottom:510.266667pt;}
.y8a_c00416{bottom:511.226667pt;}
.y89_c00416{bottom:512.173333pt;}
.y8b_c00416{bottom:512.560000pt;}
.y8c_c00416{bottom:513.506667pt;}
.y8d_c00416{bottom:513.893333pt;}
.y8f_c00416{bottom:514.840000pt;}
.y8e_c00416{bottom:515.040000pt;}
.y83_c00416{bottom:523.226667pt;}
.y84_c00416{bottom:524.173333pt;}
.y85_c00416{bottom:524.560000pt;}
.y86_c00416{bottom:525.506667pt;}
.y87_c00416{bottom:525.893333pt;}
.y7e_c00416{bottom:535.226667pt;}
.y7d_c00416{bottom:536.173333pt;}
.y80_c00416{bottom:536.560000pt;}
.y7f_c00416{bottom:537.506667pt;}
.y81_c00416{bottom:537.893333pt;}
.y82_c00416{bottom:538.840000pt;}
.y78_c00416{bottom:547.226667pt;}
.y77_c00416{bottom:548.173333pt;}
.y79_c00416{bottom:548.560000pt;}
.y7a_c00416{bottom:549.506667pt;}
.y7b_c00416{bottom:549.893333pt;}
.y7c_c00416{bottom:550.840000pt;}
.y73_c00416{bottom:560.560000pt;}
.y74_c00416{bottom:561.506667pt;}
.y76_c00416{bottom:561.893333pt;}
.y75_c00416{bottom:562.840000pt;}
.y6e_c00416{bottom:572.173333pt;}
.y6f_c00416{bottom:572.560000pt;}
.y70_c00416{bottom:573.506667pt;}
.y71_c00416{bottom:573.893333pt;}
.y72_c00416{bottom:574.840000pt;}
.y6a_c00416{bottom:596.173333pt;}
.y69_c00416{bottom:596.933333pt;}
.y6b_c00416{bottom:598.840000pt;}
.y6d_c00416{bottom:600.173333pt;}
.y6c_c00416{bottom:600.373333pt;}
.y65_c00416{bottom:610.840000pt;}
.y67_c00416{bottom:612.173333pt;}
.y66_c00416{bottom:612.373333pt;}
.y68_c00416{bottom:613.706667pt;}
.y60_c00416{bottom:621.893333pt;}
.y61_c00416{bottom:622.840000pt;}
.y62_c00416{bottom:623.226667pt;}
.y63_c00416{bottom:624.173333pt;}
.y64_c00416{bottom:625.706667pt;}
.y5c_c00416{bottom:635.226667pt;}
.y5d_c00416{bottom:636.173333pt;}
.y5e_c00416{bottom:636.560000pt;}
.y5f_c00416{bottom:637.706667pt;}
.y59_c00416{bottom:646.840000pt;}
.y58_c00416{bottom:647.226667pt;}
.y5a_c00416{bottom:648.173333pt;}
.y5b_c00416{bottom:649.706667pt;}
.y52_c00416{bottom:658.840000pt;}
.y54_c00416{bottom:659.226667pt;}
.y53_c00416{bottom:660.173333pt;}
.y55_c00416{bottom:660.560000pt;}
.y56_c00416{bottom:661.506667pt;}
.y57_c00416{bottom:661.706667pt;}
.y4e_c00416{bottom:684.173333pt;}
.y4f_c00416{bottom:685.893333pt;}
.y50_c00416{bottom:686.840000pt;}
.y51_c00416{bottom:687.226667pt;}
.y4a_c00416{bottom:708.560000pt;}
.y4c_c00416{bottom:709.893333pt;}
.y4b_c00416{bottom:710.840000pt;}
.y4d_c00416{bottom:712.173333pt;}
.y47_c00416{bottom:734.266667pt;}
.y48_c00416{bottom:734.640000pt;}
.y49_c00416{bottom:735.600000pt;}
.y46_c00416{bottom:746.066667pt;}
.y43_c00416{bottom:746.640000pt;}
.y44_c00416{bottom:747.600000pt;}
.y45_c00416{bottom:747.973333pt;}
.y42_c00416{bottom:766.266667pt;}
.y41_c00416{bottom:767.600000pt;}
.y21_c00416{bottom:801.106667pt;}
.y22_c00416{bottom:803.026667pt;}
.y23_c00416{bottom:803.226667pt;}
.y20_c00416{bottom:819.773333pt;}
.y1f_c00416{bottom:820.360000pt;}
.y1d_c00416{bottom:821.306667pt;}
.y1e_c00416{bottom:821.693333pt;}
.y1c_c00416{bottom:837.106667pt;}
.y17_c00416{bottom:853.106667pt;}
.y1a_c00416{bottom:854.440000pt;}
.y19_c00416{bottom:855.026667pt;}
.y18_c00416{bottom:855.973333pt;}
.y1b_c00416{bottom:856.360000pt;}
.y14_c00416{bottom:870.440000pt;}
.y15_c00416{bottom:871.773333pt;}
.y12_c00416{bottom:872.360000pt;}
.y16_c00416{bottom:872.733333pt;}
.y13_c00416{bottom:873.693333pt;}
.y10_c00416{bottom:889.106667pt;}
.y11_c00416{bottom:890.066667pt;}
.yf_c00416{bottom:891.026667pt;}
.yc_c00416{bottom:906.440000pt;}
.ye_c00416{bottom:907.226667pt;}
.yd_c00416{bottom:908.360000pt;}
.y8_c00416{bottom:922.640000pt;}
.y9_c00416{bottom:923.026667pt;}
.y7_c00416{bottom:924.560000pt;}
.ya_c00416{bottom:924.733333pt;}
.y6_c00416{bottom:925.693333pt;}
.yb_c00416{bottom:926.640000pt;}
.y4_c00416{bottom:941.106667pt;}
.y3_c00416{bottom:943.026667pt;}
.y5_c00416{bottom:943.973333pt;}
.y1_c00416{bottom:975.773333pt;}
.y2_c00416{bottom:976.933333pt;}
.h7_c00416{height:3.739141pt;}
.h9_c00416{height:7.412682pt;}
.hc_c00416{height:12.988594pt;}
.h8_c00416{height:14.890964pt;}
.hb_c00416{height:20.224297pt;}
.h5_c00416{height:20.466875pt;}
.h2_c00416{height:22.303646pt;}
.ha_c00416{height:25.800208pt;}
.h4_c00416{height:27.879557pt;}
.h3_c00416{height:31.618698pt;}
.h6_c00416{height:35.357839pt;}
.h1_c00416{height:39.031380pt;}
.h0_c00416{height:1186.666667pt;}
.w0_c00416{width:782.666667pt;}
.x0_c00416{left:0.000000pt;}
.x3_c00416{left:134.666667pt;}
.x5e_c00416{left:138.666667pt;}
.x47_c00416{left:149.333333pt;}
.x54_c00416{left:152.573333pt;}
.x5f_c00416{left:160.000000pt;}
.x71_c00416{left:164.000000pt;}
.x29_c00416{left:171.040000pt;}
.x3d_c00416{left:174.293333pt;}
.x4_c00416{left:176.000000pt;}
.x80_c00416{left:178.666667pt;}
.x1b_c00416{left:182.666667pt;}
.x4f_c00416{left:185.333333pt;}
.xc7_c00416{left:186.666667pt;}
.xd1_c00416{left:187.626667pt;}
.x3e_c00416{left:190.666667pt;}
.x34_c00416{left:192.000000pt;}
.x5_c00416{left:192.960000pt;}
.x81_c00416{left:195.040000pt;}
.x2a_c00416{left:196.000000pt;}
.xf_c00416{left:196.960000pt;}
.x69_c00416{left:198.666667pt;}
.xa0_c00416{left:205.333333pt;}
.xaa_c00416{left:206.666667pt;}
.xb1_c00416{left:209.333333pt;}
.x72_c00416{left:210.666667pt;}
.x1c_c00416{left:212.000000pt;}
.x55_c00416{left:214.666667pt;}
.x3f_c00416{left:216.000000pt;}
.xc0_c00416{left:218.666667pt;}
.xab_c00416{left:222.293333pt;}
.x6_c00416{left:224.373333pt;}
.xcd_c00416{left:226.293333pt;}
.x73_c00416{left:227.626667pt;}
.xb5_c00416{left:229.333333pt;}
.x50_c00416{left:231.040000pt;}
.x48_c00416{left:233.706667pt;}
.x60_c00416{left:237.333333pt;}
.xc8_c00416{left:238.293333pt;}
.x10_c00416{left:241.333333pt;}
.xb2_c00416{left:242.666667pt;}
.xba_c00416{left:249.333333pt;}
.xd2_c00416{left:252.000000pt;}
.x56_c00416{left:253.333333pt;}
.x1d_c00416{left:255.626667pt;}
.x61_c00416{left:259.040000pt;}
.x35_c00416{left:260.373333pt;}
.x51_c00416{left:263.626667pt;}
.x6a_c00416{left:265.333333pt;}
.x2b_c00416{left:272.373333pt;}
.x8b_c00416{left:276.960000pt;}
.x40_c00416{left:279.040000pt;}
.x6b_c00416{left:280.000000pt;}
.x11_c00416{left:281.333333pt;}
.xc9_c00416{left:282.666667pt;}
.x62_c00416{left:284.000000pt;}
.x9a_c00416{left:284.960000pt;}
.x82_c00416{left:286.293333pt;}
.xd3_c00416{left:288.000000pt;}
.x1e_c00416{left:289.333333pt;}
.x96_c00416{left:293.333333pt;}
.x7_c00416{left:295.040000pt;}
.x83_c00416{left:302.293333pt;}
.x36_c00416{left:304.373333pt;}
.xc1_c00416{left:309.333333pt;}
.xcc_c00416{left:310.666667pt;}
.xa3_c00416{left:312.000000pt;}
.xb3_c00416{left:313.333333pt;}
.xcf_c00416{left:314.666667pt;}
.x49_c00416{left:315.626667pt;}
.xbb_c00416{left:317.333333pt;}
.x84_c00416{left:320.000000pt;}
.x41_c00416{left:320.960000pt;}
.x6c_c00416{left:322.293333pt;}
.x57_c00416{left:324.000000pt;}
.x52_c00416{left:326.666667pt;}
.x2c_c00416{left:336.000000pt;}
.x9b_c00416{left:337.333333pt;}
.x1f_c00416{left:338.293333pt;}
.x8c_c00416{left:340.000000pt;}
.x6d_c00416{left:341.706667pt;}
.xac_c00416{left:343.040000pt;}
.xd4_c00416{left:344.000000pt;}
.x4a_c00416{left:346.666667pt;}
.x53_c00416{left:349.706667pt;}
.x63_c00416{left:354.293333pt;}
.x58_c00416{left:358.293333pt;}
.x2_c00416{left:360.000000pt;}
.x12_c00416{left:361.333333pt;}
.x8_c00416{left:364.000000pt;}
.x37_c00416{left:364.960000pt;}
.x94_c00416{left:366.666667pt;}
.x9c_c00416{left:368.000000pt;}
.xb6_c00416{left:369.333333pt;}
.xad_c00416{left:370.666667pt;}
.xda_c00416{left:372.000000pt;}
.x64_c00416{left:373.706667pt;}
.x8d_c00416{left:374.666667pt;}
.x97_c00416{left:375.626667pt;}
.x4b_c00416{left:382.666667pt;}
.x2d_c00416{left:385.706667pt;}
.x20_c00416{left:387.040000pt;}
.x8e_c00416{left:388.373333pt;}
.x13_c00416{left:389.706667pt;}
.x85_c00416{left:390.666667pt;}
.x98_c00416{left:393.333333pt;}
.xc2_c00416{left:394.666667pt;}
.xa4_c00416{left:396.000000pt;}
.x42_c00416{left:397.706667pt;}
.x65_c00416{left:398.666667pt;}
.xd5_c00416{left:400.000000pt;}
.xbc_c00416{left:401.333333pt;}
.x38_c00416{left:402.666667pt;}
.x95_c00416{left:405.333333pt;}
.x7a_c00416{left:406.293333pt;}
.x6e_c00416{left:410.666667pt;}
.x21_c00416{left:412.000000pt;}
.x74_c00416{left:413.333333pt;}
.x2e_c00416{left:420.373333pt;}
.xc3_c00416{left:421.333333pt;}
.x9d_c00416{left:422.666667pt;}
.xd9_c00416{left:424.000000pt;}
.xb7_c00416{left:425.333333pt;}
.xb4_c00416{left:427.040000pt;}
.x6f_c00416{left:428.373333pt;}
.xbd_c00416{left:429.333333pt;}
.x43_c00416{left:430.666667pt;}
.xc4_c00416{left:433.333333pt;}
.x7b_c00416{left:434.293333pt;}
.x59_c00416{left:436.000000pt;}
.x9e_c00416{left:437.333333pt;}
.x9_c00416{left:440.000000pt;}
.x14_c00416{left:444.000000pt;}
.xa1_c00416{left:445.333333pt;}
.x22_c00416{left:446.293333pt;}
.x8f_c00416{left:448.000000pt;}
.x66_c00416{left:449.333333pt;}
.xc5_c00416{left:450.666667pt;}
.xd0_c00416{left:452.373333pt;}
.xa5_c00416{left:453.333333pt;}
.x39_c00416{left:454.666667pt;}
.xd6_c00416{left:456.000000pt;}
.xbe_c00416{left:457.333333pt;}
.x86_c00416{left:459.040000pt;}
.x44_c00416{left:460.960000pt;}
.x23_c00416{left:465.706667pt;}
.x90_c00416{left:466.666667pt;}
.x75_c00416{left:469.706667pt;}
.xa_c00416{left:471.040000pt;}
.xa2_c00416{left:473.333333pt;}
.x2f_c00416{left:474.666667pt;}
.x4c_c00416{left:475.626667pt;}
.xc6_c00416{left:477.333333pt;}
.x45_c00416{left:478.293333pt;}
.xa6_c00416{left:480.000000pt;}
.xb8_c00416{left:481.333333pt;}
.x7c_c00416{left:483.240000pt;}
.xbf_c00416{left:486.666667pt;}
.x24_c00416{left:490.666667pt;}
.x87_c00416{left:493.706667pt;}
.x4d_c00416{left:495.040000pt;}
.x67_c00416{left:496.000000pt;}
.x3a_c00416{left:497.706667pt;}
.x9f_c00416{left:498.666667pt;}
.x76_c00416{left:500.000000pt;}
.x15_c00416{left:501.333333pt;}
.x5a_c00416{left:503.626667pt;}
.xca_c00416{left:506.666667pt;}
.xce_c00416{left:508.373333pt;}
.xa7_c00416{left:509.333333pt;}
.xae_c00416{left:510.666667pt;}
.x77_c00416{left:511.626667pt;}
.x30_c00416{left:513.333333pt;}
.x68_c00416{left:515.040000pt;}
.x16_c00416{left:516.000000pt;}
.x25_c00416{left:518.666667pt;}
.x91_c00416{left:525.706667pt;}
.x7d_c00416{left:528.960000pt;}
.xb_c00416{left:532.000000pt;}
.xcb_c00416{left:534.666667pt;}
.xa8_c00416{left:536.000000pt;}
.xb9_c00416{left:537.333333pt;}
.xaf_c00416{left:539.040000pt;}
.xd7_c00416{left:540.000000pt;}
.x46_c00416{left:541.333333pt;}
.x5b_c00416{left:545.333333pt;}
.xc_c00416{left:548.373333pt;}
.x3b_c00416{left:553.706667pt;}
.x17_c00416{left:555.626667pt;}
.x31_c00416{left:557.333333pt;}
.x99_c00416{left:563.040000pt;}
.xa9_c00416{left:564.000000pt;}
.xb0_c00416{left:565.333333pt;}
.xd8_c00416{left:568.000000pt;}
.x88_c00416{left:568.960000pt;}
.x26_c00416{left:570.666667pt;}
.x92_c00416{left:574.666667pt;}
.x78_c00416{left:576.000000pt;}
.x5c_c00416{left:577.706667pt;}
.x32_c00416{left:585.333333pt;}
.x27_c00416{left:591.040000pt;}
.x7e_c00416{left:592.373333pt;}
.xd_c00416{left:593.706667pt;}
.x3c_c00416{left:594.666667pt;}
.x18_c00416{left:595.626667pt;}
.x89_c00416{left:599.040000pt;}
.x19_c00416{left:608.000000pt;}
.x5d_c00416{left:609.333333pt;}
.x33_c00416{left:610.666667pt;}
.x28_c00416{left:616.000000pt;}
.x7f_c00416{left:617.333333pt;}
.x79_c00416{left:621.706667pt;}
.x93_c00416{left:622.666667pt;}
.x1_c00416{left:626.666667pt;}
.xe_c00416{left:628.000000pt;}
.x4e_c00416{left:629.706667pt;}
.x8a_c00416{left:633.706667pt;}
.x1a_c00416{left:636.000000pt;}
.x70_c00416{left:639.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_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_462289eec15495d04adcb2d5.woff2')format("woff");}.ff1_c00417{font-family:ff1_c00417;line-height:1.688965;font-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_c00417{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.mb8_c00417{transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);}
.m31_c00417{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m52_c00417{transform:matrix(0.365798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365798,0.000000,0.000000,0.250000,0,0);}
.m3b_c00417{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m5c_c00417{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m0_c00417{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m27_c00417{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m4a_c00417{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m37_c00417{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m54_c00417{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m3c_c00417{transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);}
.m9a_c00417{transform:matrix(0.380334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380334,0.000000,0.000000,0.250000,0,0);}
.m32_c00417{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m56_c00417{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m25_c00417{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m71_c00417{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m1f_c00417{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m6e_c00417{transform:matrix(0.389523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389523,0.000000,0.000000,0.250000,0,0);}
.ma0_c00417{transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);}
.maf_c00417{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mc_c00417{transform:matrix(0.395322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395322,0.000000,0.000000,0.250000,0,0);}
.m34_c00417{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.mb7_c00417{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m7a_c00417{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m82_c00417{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m2b_c00417{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m28_c00417{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m7e_c00417{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_c00417{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m3e_c00417{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m3a_c00417{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m4d_c00417{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m6f_c00417{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m8e_c00417{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.mcb_c00417{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m78_c00417{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m81_c00417{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m41_c00417{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mb3_c00417{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m96_c00417{transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);}
.m8a_c00417{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m6c_c00417{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m94_c00417{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.mc0_c00417{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m91_c00417{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.mc7_c00417{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m4e_c00417{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m99_c00417{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.me_c00417{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m59_c00417{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m77_c00417{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mc8_c00417{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.ma9_c00417{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m7d_c00417{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m60_c00417{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.me8_c00417{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.me1_c00417{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.mdc_c00417{transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);}
.m7f_c00417{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.md_c00417{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.mc5_c00417{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m36_c00417{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.mcf_c00417{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.ma1_c00417{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m55_c00417{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m8f_c00417{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m44_c00417{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mae_c00417{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m48_c00417{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.mef_c00417{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m38_c00417{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m75_c00417{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m9c_c00417{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m5b_c00417{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.md9_c00417{transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);}
.m11_c00417{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.m4f_c00417{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m46_c00417{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m51_c00417{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m92_c00417{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mf1_c00417{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mbe_c00417{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.me9_c00417{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.mbc_c00417{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m98_c00417{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.m58_c00417{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.m1c_c00417{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.md8_c00417{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.me5_c00417{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.mec_c00417{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.mab_c00417{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m43_c00417{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mf_c00417{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.me2_c00417{transform:matrix(0.482365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482365,0.000000,0.000000,0.250000,0,0);}
.mde_c00417{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m5e_c00417{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m24_c00417{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.ma6_c00417{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m6b_c00417{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mf0_c00417{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m65_c00417{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mdb_c00417{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m73_c00417{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mc6_c00417{transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);}
.m2e_c00417{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mbf_c00417{transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);}
.ma8_c00417{transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);}
.m21_c00417{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_c00417{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m20_c00417{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m74_c00417{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m2_c00417{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.meb_c00417{transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);}
.m88_c00417{transform:matrix(0.509276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509276,0.000000,0.000000,0.250000,0,0);}
.m90_c00417{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m15_c00417{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m85_c00417{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m67_c00417{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mac_c00417{transform:matrix(0.514842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514842,0.000000,0.000000,0.250000,0,0);}
.m1e_c00417{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m5a_c00417{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m6_c00417{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mdf_c00417{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.mad_c00417{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m87_c00417{transform:matrix(0.519481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519481,0.000000,0.000000,0.250000,0,0);}
.ma7_c00417{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.mb5_c00417{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.mca_c00417{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m19_c00417{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m47_c00417{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mea_c00417{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);}
.m9f_c00417{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m4c_c00417{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m2c_c00417{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m9b_c00417{transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);}
.m9_c00417{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.mc2_c00417{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m8_c00417{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mbb_c00417{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m22_c00417{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.me7_c00417{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m72_c00417{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mbd_c00417{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m68_c00417{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mda_c00417{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m4_c00417{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.md2_c00417{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m42_c00417{transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);}
.m23_c00417{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mdd_c00417{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.mc1_c00417{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.mb0_c00417{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m7_c00417{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.me6_c00417{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m80_c00417{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m35_c00417{transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);}
.m8b_c00417{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m97_c00417{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m33_c00417{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mb4_c00417{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mcc_c00417{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.md4_c00417{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m84_c00417{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);}
.m5f_c00417{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.mc3_c00417{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mb_c00417{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m3d_c00417{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m16_c00417{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m1d_c00417{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.ma3_c00417{transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);}
.m29_c00417{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.me3_c00417{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.md0_c00417{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m2a_c00417{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m13_c00417{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m2d_c00417{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.mce_c00417{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m49_c00417{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m50_c00417{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m8d_c00417{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mc9_c00417{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.mb6_c00417{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m1a_c00417{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m9d_c00417{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.md5_c00417{transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);}
.m8c_c00417{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.mcd_c00417{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.md7_c00417{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m62_c00417{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mc4_c00417{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.m5_c00417{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m9e_c00417{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m76_c00417{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.md3_c00417{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m26_c00417{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.me0_c00417{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m3_c00417{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m45_c00417{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m86_c00417{transform:matrix(0.593880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593880,0.000000,0.000000,0.250000,0,0);}
.m79_c00417{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m4b_c00417{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.ma2_c00417{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m6a_c00417{transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);}
.m89_c00417{transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);}
.m10_c00417{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.ma_c00417{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.ma4_c00417{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.me4_c00417{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m61_c00417{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_c00417{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.m53_c00417{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mf2_c00417{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m83_c00417{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m2f_c00417{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.md1_c00417{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m1_c00417{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m18_c00417{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m30_c00417{transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);}
.m70_c00417{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m12_c00417{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m6d_c00417{transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);}
.mee_c00417{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.ma5_c00417{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.m93_c00417{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m3f_c00417{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m40_c00417{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.md6_c00417{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);}
.mb9_c00417{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.mba_c00417{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m69_c00417{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m14_c00417{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mb1_c00417{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m57_c00417{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m64_c00417{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m17_c00417{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m63_c00417{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m7c_c00417{transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);}
.m7b_c00417{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.med_c00417{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m95_c00417{transform:matrix(1.436123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.436123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.436123,0.000000,0.000000,0.250000,0,0);}
.mb2_c00417{transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);}
.maa_c00417{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00417{vertical-align:-6.000000px;}
.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;}
}
.ws1_c00417{word-spacing:-7.433636px;}
.ws0_c00417{word-spacing:-3.839879px;}
.ws3_c00417{word-spacing:0.000000px;}
.ws2_c00417{word-spacing:1.185085px;}
.fc0_c00417{color:transparent;}
.fs8_c00417{font-size:3.420000px;}
.fs7_c00417{font-size:13.620000px;}
.fs6_c00417{font-size:18.720000px;}
.fs1_c00417{font-size:20.400000px;}
.fs5_c00417{font-size:25.500000px;}
.fs2_c00417{font-size:28.920000px;}
.fs0_c00417{font-size:32.340000px;}
.fs4_c00417{font-size:35.700000px;}
.fs3_c00417{font-size:39.120000px;}
.y0_c00417{bottom:0.000000px;}
.ycf_c00417{bottom:247.905000px;}
.yce_c00417{bottom:248.325000px;}
.ycb_c00417{bottom:249.405000px;}
.ycd_c00417{bottom:249.630000px;}
.yd1_c00417{bottom:250.050000px;}
.ycc_c00417{bottom:250.470000px;}
.yd0_c00417{bottom:251.550000px;}
.yc3_c00417{bottom:262.050000px;}
.yc8_c00417{bottom:263.325000px;}
.yca_c00417{bottom:263.970000px;}
.yc5_c00417{bottom:264.405000px;}
.yc9_c00417{bottom:265.050000px;}
.yc4_c00417{bottom:265.470000px;}
.yc6_c00417{bottom:265.695000px;}
.yc7_c00417{bottom:266.550000px;}
.yc2_c00417{bottom:279.405000px;}
.yc1_c00417{bottom:281.550000px;}
.ybe_c00417{bottom:291.825000px;}
.yba_c00417{bottom:292.905000px;}
.yb9_c00417{bottom:293.130000px;}
.ybd_c00417{bottom:293.325000px;}
.ybb_c00417{bottom:293.970000px;}
.ybf_c00417{bottom:294.195000px;}
.ybc_c00417{bottom:295.050000px;}
.yc0_c00417{bottom:295.470000px;}
.yb5_c00417{bottom:305.970000px;}
.yb8_c00417{bottom:306.825000px;}
.yb6_c00417{bottom:308.970000px;}
.yb7_c00417{bottom:310.050000px;}
.yb4_c00417{bottom:321.825000px;}
.yb2_c00417{bottom:322.905000px;}
.yaf_c00417{bottom:323.130000px;}
.yb0_c00417{bottom:323.970000px;}
.yb3_c00417{bottom:324.195000px;}
.yb1_c00417{bottom:325.050000px;}
.yae_c00417{bottom:346.470000px;}
.yad_c00417{bottom:346.905000px;}
.ya9_c00417{bottom:364.245000px;}
.yac_c00417{bottom:365.970000px;}
.yab_c00417{bottom:366.405000px;}
.yaa_c00417{bottom:366.630000px;}
.ya8_c00417{bottom:383.325000px;}
.ya5_c00417{bottom:385.245000px;}
.ya6_c00417{bottom:385.905000px;}
.ya7_c00417{bottom:386.970000px;}
.ya3_c00417{bottom:387.405000px;}
.ya4_c00417{bottom:387.420000px;}
.ya2_c00417{bottom:404.745000px;}
.ya0_c00417{bottom:405.405000px;}
.ya1_c00417{bottom:406.905000px;}
.y9e_c00417{bottom:422.745000px;}
.y9a_c00417{bottom:424.245000px;}
.y9f_c00417{bottom:424.905000px;}
.y9d_c00417{bottom:425.325000px;}
.y9c_c00417{bottom:425.970000px;}
.y9b_c00417{bottom:426.405000px;}
.y98_c00417{bottom:442.245000px;}
.y96_c00417{bottom:443.745000px;}
.y99_c00417{bottom:444.405000px;}
.y97_c00417{bottom:445.905000px;}
.y95_c00417{bottom:462.825000px;}
.y8e_c00417{bottom:463.245000px;}
.y8f_c00417{bottom:463.680000px;}
.y93_c00417{bottom:464.325000px;}
.y94_c00417{bottom:464.970000px;}
.y92_c00417{bottom:465.405000px;}
.y90_c00417{bottom:465.630000px;}
.y91_c00417{bottom:466.470000px;}
.y8d_c00417{bottom:481.680000px;}
.y8b_c00417{bottom:482.745000px;}
.y8c_c00417{bottom:484.470000px;}
.y89_c00417{bottom:484.905000px;}
.y8a_c00417{bottom:486.420000px;}
.y87_c00417{bottom:502.245000px;}
.y88_c00417{bottom:504.405000px;}
.y85_c00417{bottom:504.630000px;}
.y84_c00417{bottom:505.905000px;}
.y86_c00417{bottom:505.920000px;}
.y83_c00417{bottom:521.745000px;}
.y80_c00417{bottom:523.245000px;}
.y82_c00417{bottom:524.325000px;}
.y81_c00417{bottom:525.420000px;}
.y7a_c00417{bottom:541.245000px;}
.y7e_c00417{bottom:542.325000px;}
.y7b_c00417{bottom:542.745000px;}
.y7f_c00417{bottom:543.405000px;}
.y7d_c00417{bottom:543.825000px;}
.y7c_c00417{bottom:544.920000px;}
.y79_c00417{bottom:563.970000px;}
.y76_c00417{bottom:565.905000px;}
.y74_c00417{bottom:566.325000px;}
.y77_c00417{bottom:566.970000px;}
.y78_c00417{bottom:568.050000px;}
.y75_c00417{bottom:568.470000px;}
.y73_c00417{bottom:584.325000px;}
.y72_c00417{bottom:585.405000px;}
.y71_c00417{bottom:598.470000px;}
.y70_c00417{bottom:599.325000px;}
.y6f_c00417{bottom:599.550000px;}
.y6a_c00417{bottom:599.970000px;}
.y6b_c00417{bottom:600.405000px;}
.y69_c00417{bottom:600.825000px;}
.y6e_c00417{bottom:601.695000px;}
.y6c_c00417{bottom:602.550000px;}
.y6d_c00417{bottom:603.195000px;}
.y68_c00417{bottom:623.745000px;}
.y66_c00417{bottom:624.825000px;}
.y67_c00417{bottom:625.905000px;}
.y65_c00417{bottom:652.905000px;}
.y64_c00417{bottom:683.970000px;}
.y62_c00417{bottom:686.970000px;}
.y63_c00417{bottom:687.405000px;}
.y60_c00417{bottom:703.245000px;}
.y5e_c00417{bottom:704.745000px;}
.y5f_c00417{bottom:705.405000px;}
.y61_c00417{bottom:705.630000px;}
.y5d_c00417{bottom:706.905000px;}
.y5b_c00417{bottom:722.745000px;}
.y56_c00417{bottom:724.245000px;}
.y5c_c00417{bottom:724.905000px;}
.y57_c00417{bottom:725.130000px;}
.y59_c00417{bottom:725.970000px;}
.y5a_c00417{bottom:726.405000px;}
.y58_c00417{bottom:727.470000px;}
.y54_c00417{bottom:741.405000px;}
.y52_c00417{bottom:743.325000px;}
.y53_c00417{bottom:743.745000px;}
.y55_c00417{bottom:745.470000px;}
.y51_c00417{bottom:745.905000px;}
.y4e_c00417{bottom:762.405000px;}
.y4c_c00417{bottom:763.245000px;}
.y50_c00417{bottom:764.130000px;}
.y4f_c00417{bottom:765.405000px;}
.y4d_c00417{bottom:765.630000px;}
.y49_c00417{bottom:781.905000px;}
.y4b_c00417{bottom:782.745000px;}
.y47_c00417{bottom:784.905000px;}
.y4a_c00417{bottom:785.130000px;}
.y48_c00417{bottom:785.970000px;}
.y45_c00417{bottom:802.245000px;}
.y43_c00417{bottom:804.405000px;}
.y44_c00417{bottom:804.630000px;}
.y46_c00417{bottom:805.470000px;}
.y42_c00417{bottom:821.970000px;}
.y41_c00417{bottom:823.245000px;}
.y3c_c00417{bottom:840.405000px;}
.y3b_c00417{bottom:842.745000px;}
.y40_c00417{bottom:843.405000px;}
.y3f_c00417{bottom:843.825000px;}
.y3e_c00417{bottom:844.470000px;}
.y3d_c00417{bottom:844.905000px;}
.y39_c00417{bottom:860.745000px;}
.y36_c00417{bottom:861.180000px;}
.y38_c00417{bottom:862.245000px;}
.y3a_c00417{bottom:863.130000px;}
.y34_c00417{bottom:863.325000px;}
.y35_c00417{bottom:864.405000px;}
.y37_c00417{bottom:865.470000px;}
.y33_c00417{bottom:881.325000px;}
.y32_c00417{bottom:881.745000px;}
.y31_c00417{bottom:883.905000px;}
.y30_c00417{bottom:901.245000px;}
.y2f_c00417{bottom:901.470000px;}
.y2b_c00417{bottom:920.325000px;}
.y2c_c00417{bottom:920.745000px;}
.y2d_c00417{bottom:921.825000px;}
.y2e_c00417{bottom:922.470000px;}
.y29_c00417{bottom:922.905000px;}
.y2a_c00417{bottom:923.130000px;}
.y26_c00417{bottom:940.245000px;}
.y25_c00417{bottom:940.680000px;}
.y27_c00417{bottom:941.130000px;}
.y28_c00417{bottom:941.970000px;}
.y23_c00417{bottom:942.405000px;}
.y24_c00417{bottom:943.470000px;}
.y21_c00417{bottom:959.745000px;}
.y1f_c00417{bottom:961.245000px;}
.y22_c00417{bottom:961.905000px;}
.y1e_c00417{bottom:962.970000px;}
.y20_c00417{bottom:963.405000px;}
.y1d_c00417{bottom:979.245000px;}
.y1b_c00417{bottom:979.680000px;}
.y17_c00417{bottom:980.745000px;}
.y1c_c00417{bottom:981.405000px;}
.y19_c00417{bottom:981.630000px;}
.y1a_c00417{bottom:982.470000px;}
.y18_c00417{bottom:982.905000px;}
.y16_c00417{bottom:998.745000px;}
.y14_c00417{bottom:998.970000px;}
.y12_c00417{bottom:1000.245000px;}
.y15_c00417{bottom:1000.905000px;}
.y13_c00417{bottom:1001.970000px;}
.y11_c00417{bottom:1019.325000px;}
.yf_c00417{bottom:1019.745000px;}
.y10_c00417{bottom:1020.405000px;}
.yd_c00417{bottom:1020.630000px;}
.ye_c00417{bottom:1021.470000px;}
.yc_c00417{bottom:1021.905000px;}
.y8_c00417{bottom:1038.825000px;}
.yb_c00417{bottom:1039.245000px;}
.ya_c00417{bottom:1040.130000px;}
.y7_c00417{bottom:1040.970000px;}
.y9_c00417{bottom:1041.405000px;}
.y5_c00417{bottom:1057.680000px;}
.y4_c00417{bottom:1057.905000px;}
.y6_c00417{bottom:1058.745000px;}
.y3_c00417{bottom:1060.905000px;}
.y1_c00417{bottom:1098.825000px;}
.y2_c00417{bottom:1099.050000px;}
.h9_c00417{height:4.206533px;}
.h8_c00417{height:16.752334px;}
.h7_c00417{height:23.025234px;}
.h2_c00417{height:25.091602px;}
.h6_c00417{height:31.364502px;}
.h3_c00417{height:35.571035px;}
.h1_c00417{height:39.777568px;}
.h5_c00417{height:43.910303px;}
.h4_c00417{height:48.116836px;}
.h0_c00417{height:1335.000000px;}
.w0_c00417{width:880.500000px;}
.x0_c00417{left:0.000000px;}
.xe4_c00417{left:148.920000px;}
.xba_c00417{left:150.000000px;}
.x36_c00417{left:151.080000px;}
.x1_c00417{left:153.000000px;}
.xdc_c00417{left:163.500000px;}
.xac_c00417{left:165.000000px;}
.xb2_c00417{left:166.500000px;}
.x5e_c00417{left:167.580000px;}
.x48_c00417{left:172.080000px;}
.xe5_c00417{left:175.500000px;}
.x11_c00417{left:178.500000px;}
.xc5_c00417{left:180.420000px;}
.xd3_c00417{left:181.500000px;}
.x20_c00417{left:183.000000px;}
.xa1_c00417{left:189.420000px;}
.x78_c00417{left:190.920000px;}
.xda_c00417{left:193.500000px;}
.x52_c00417{left:195.000000px;}
.xeb_c00417{left:198.000000px;}
.xbb_c00417{left:199.080000px;}
.x5d_c00417{left:202.275000px;}
.x37_c00417{left:205.080000px;}
.x3_c00417{left:207.000000px;}
.x53_c00417{left:208.500000px;}
.x5f_c00417{left:209.580000px;}
.x68_c00417{left:211.080000px;}
.xcf_c00417{left:212.580000px;}
.x2b_c00417{left:214.500000px;}
.x8a_c00417{left:216.000000px;}
.x79_c00417{left:217.500000px;}
.x38_c00417{left:223.500000px;}
.x82_c00417{left:225.000000px;}
.xad_c00417{left:226.920000px;}
.x12_c00417{left:228.000000px;}
.xa3_c00417{left:231.000000px;}
.x77_c00417{left:232.500000px;}
.x2c_c00417{left:233.580000px;}
.x49_c00417{left:235.920000px;}
.x90_c00417{left:240.420000px;}
.x4_c00417{left:241.920000px;}
.x9c_c00417{left:244.500000px;}
.x13_c00417{left:245.580000px;}
.x21_c00417{left:247.500000px;}
.xcd_c00417{left:249.000000px;}
.xd4_c00417{left:250.080000px;}
.xdb_c00417{left:252.000000px;}
.x94_c00417{left:253.500000px;}
.xb3_c00417{left:258.000000px;}
.xb9_c00417{left:259.500000px;}
.xa2_c00417{left:260.580000px;}
.xd0_c00417{left:262.500000px;}
.x2d_c00417{left:265.080000px;}
.xb0_c00417{left:267.000000px;}
.x22_c00417{left:268.500000px;}
.x60_c00417{left:270.000000px;}
.xc6_c00417{left:271.080000px;}
.x95_c00417{left:274.500000px;}
.x5_c00417{left:276.420000px;}
.xc8_c00417{left:278.580000px;}
.x39_c00417{left:279.645000px;}
.x2e_c00417{left:282.420000px;}
.x54_c00417{left:284.580000px;}
.x14_c00417{left:286.500000px;}
.x96_c00417{left:288.000000px;}
.x7a_c00417{left:289.500000px;}
.x4a_c00417{left:293.580000px;}
.x41_c00417{left:296.580000px;}
.x15_c00417{left:298.920000px;}
.xb6_c00417{left:300.000000px;}
.x6f_c00417{left:302.580000px;}
.x55_c00417{left:304.920000px;}
.xd1_c00417{left:306.000000px;}
.x2f_c00417{left:309.000000px;}
.x7b_c00417{left:310.080000px;}
.x6_c00417{left:312.420000px;}
.x97_c00417{left:315.000000px;}
.x9d_c00417{left:316.500000px;}
.xb7_c00417{left:320.580000px;}
.x70_c00417{left:322.080000px;}
.xe6_c00417{left:324.000000px;}
.x23_c00417{left:327.000000px;}
.xd5_c00417{left:329.580000px;}
.x56_c00417{left:333.000000px;}
.xd2_c00417{left:334.080000px;}
.x61_c00417{left:335.580000px;}
.xdd_c00417{left:340.920000px;}
.xb4_c00417{left:343.275000px;}
.x98_c00417{left:345.000000px;}
.xb8_c00417{left:346.500000px;}
.x3a_c00417{left:348.000000px;}
.x91_c00417{left:349.500000px;}
.x7_c00417{left:351.420000px;}
.xae_c00417{left:353.580000px;}
.x16_c00417{left:357.000000px;}
.x83_c00417{left:360.000000px;}
.xa7_c00417{left:361.920000px;}
.x4b_c00417{left:364.275000px;}
.xec_c00417{left:365.580000px;}
.x42_c00417{left:367.275000px;}
.x57_c00417{left:369.420000px;}
.xc9_c00417{left:372.000000px;}
.xbc_c00417{left:375.000000px;}
.x62_c00417{left:377.580000px;}
.x71_c00417{left:379.080000px;}
.x69_c00417{left:380.580000px;}
.x8b_c00417{left:382.500000px;}
.x30_c00417{left:383.580000px;}
.xb5_c00417{left:385.500000px;}
.x8_c00417{left:387.420000px;}
.xb1_c00417{left:390.420000px;}
.xd6_c00417{left:392.145000px;}
.xed_c00417{left:393.420000px;}
.xaa_c00417{left:399.420000px;}
.x8c_c00417{left:400.500000px;}
.x24_c00417{left:402.420000px;}
.x2_c00417{left:409.500000px;}
.xc7_c00417{left:410.580000px;}
.x9_c00417{left:412.500000px;}
.x43_c00417{left:414.000000px;}
.xc0_c00417{left:415.500000px;}
.x17_c00417{left:417.000000px;}
.x6a_c00417{left:418.080000px;}
.xe7_c00417{left:421.920000px;}
.x3b_c00417{left:423.420000px;}
.x84_c00417{left:429.420000px;}
.x58_c00417{left:430.500000px;}
.x9e_c00417{left:431.580000px;}
.x18_c00417{left:433.500000px;}
.xee_c00417{left:436.500000px;}
.x44_c00417{left:437.580000px;}
.x99_c00417{left:439.500000px;}
.x25_c00417{left:441.420000px;}
.xa4_c00417{left:443.355000px;}
.xab_c00417{left:445.080000px;}
.x3c_c00417{left:447.000000px;}
.xde_c00417{left:450.420000px;}
.x7c_c00417{left:451.920000px;}
.x9f_c00417{left:454.500000px;}
.x19_c00417{left:460.920000px;}
.xca_c00417{left:463.920000px;}
.x63_c00417{left:465.420000px;}
.xef_c00417{left:466.920000px;}
.xaf_c00417{left:468.000000px;}
.x26_c00417{left:469.500000px;}
.x85_c00417{left:471.420000px;}
.xa_c00417{left:475.500000px;}
.x7d_c00417{left:477.420000px;}
.x8d_c00417{left:479.580000px;}
.x59_c00417{left:481.500000px;}
.x3d_c00417{left:488.580000px;}
.x1a_c00417{left:490.920000px;}
.xbd_c00417{left:492.420000px;}
.xb_c00417{left:493.920000px;}
.x64_c00417{left:495.000000px;}
.x8e_c00417{left:496.080000px;}
.x31_c00417{left:498.000000px;}
.x45_c00417{left:501.000000px;}
.x6b_c00417{left:504.420000px;}
.x4c_c00417{left:507.000000px;}
.x86_c00417{left:511.080000px;}
.xc1_c00417{left:516.000000px;}
.x72_c00417{left:517.275000px;}
.xc_c00417{left:519.000000px;}
.xa5_c00417{left:526.080000px;}
.xce_c00417{left:528.000000px;}
.xdf_c00417{left:529.500000px;}
.x7e_c00417{left:531.000000px;}
.x65_c00417{left:534.420000px;}
.x3e_c00417{left:535.500000px;}
.x27_c00417{left:537.000000px;}
.x6c_c00417{left:540.420000px;}
.xa6_c00417{left:541.500000px;}
.xd7_c00417{left:545.580000px;}
.xa8_c00417{left:547.920000px;}
.x4d_c00417{left:549.000000px;}
.x73_c00417{left:554.580000px;}
.x5a_c00417{left:556.920000px;}
.xe8_c00417{left:558.000000px;}
.x1b_c00417{left:561.000000px;}
.x32_c00417{left:562.080000px;}
.xd_c00417{left:565.080000px;}
.x4e_c00417{left:567.420000px;}
.x87_c00417{left:568.920000px;}
.xcb_c00417{left:570.000000px;}
.x7f_c00417{left:571.500000px;}
.x28_c00417{left:572.580000px;}
.xe0_c00417{left:574.500000px;}
.x1c_c00417{left:575.580000px;}
.x5b_c00417{left:581.580000px;}
.x74_c00417{left:586.080000px;}
.xe_c00417{left:589.500000px;}
.x1d_c00417{left:592.500000px;}
.x66_c00417{left:593.580000px;}
.x6d_c00417{left:595.500000px;}
.x3f_c00417{left:597.000000px;}
.xc4_c00417{left:598.500000px;}
.xd8_c00417{left:603.000000px;}
.x1e_c00417{left:604.500000px;}
.x33_c00417{left:607.080000px;}
.x4f_c00417{left:612.000000px;}
.x67_c00417{left:615.000000px;}
.x75_c00417{left:619.500000px;}
.xe9_c00417{left:623.145000px;}
.x9a_c00417{left:625.500000px;}
.xbe_c00417{left:629.580000px;}
.xe1_c00417{left:631.080000px;}
.xa0_c00417{left:633.000000px;}
.x88_c00417{left:636.000000px;}
.x34_c00417{left:637.920000px;}
.x40_c00417{left:640.500000px;}
.x92_c00417{left:642.420000px;}
.xcc_c00417{left:645.000000px;}
.xa9_c00417{left:646.080000px;}
.xc2_c00417{left:649.500000px;}
.xf_c00417{left:655.920000px;}
.xe2_c00417{left:659.580000px;}
.x46_c00417{left:661.275000px;}
.x29_c00417{left:663.000000px;}
.x35_c00417{left:664.500000px;}
.x76_c00417{left:665.580000px;}
.x80_c00417{left:667.500000px;}
.x93_c00417{left:669.000000px;}
.xd9_c00417{left:670.500000px;}
.xc3_c00417{left:672.000000px;}
.xea_c00417{left:673.920000px;}
.xbf_c00417{left:675.000000px;}
.x8f_c00417{left:679.080000px;}
.x1f_c00417{left:682.920000px;}
.x50_c00417{left:687.000000px;}
.x6e_c00417{left:689.355000px;}
.x89_c00417{left:693.000000px;}
.x81_c00417{left:694.080000px;}
.x5c_c00417{left:701.580000px;}
.xe3_c00417{left:703.500000px;}
.x47_c00417{left:704.580000px;}
.x9b_c00417{left:706.500000px;}
.x2a_c00417{left:715.080000px;}
.x51_c00417{left:717.000000px;}
.x10_c00417{left:720.000000px;}
@media print{
.v1_c00417{vertical-align:-5.333333pt;}
.v0_c00417{vertical-align:0.000000pt;}
.ls0_c00417{letter-spacing:0.000000pt;}
.ws1_c00417{word-spacing:-6.607677pt;}
.ws0_c00417{word-spacing:-3.413226pt;}
.ws3_c00417{word-spacing:0.000000pt;}
.ws2_c00417{word-spacing:1.053409pt;}
.fs8_c00417{font-size:3.040000pt;}
.fs7_c00417{font-size:12.106667pt;}
.fs6_c00417{font-size:16.640000pt;}
.fs1_c00417{font-size:18.133333pt;}
.fs5_c00417{font-size:22.666667pt;}
.fs2_c00417{font-size:25.706667pt;}
.fs0_c00417{font-size:28.746667pt;}
.fs4_c00417{font-size:31.733333pt;}
.fs3_c00417{font-size:34.773333pt;}
.y0_c00417{bottom:0.000000pt;}
.ycf_c00417{bottom:220.360000pt;}
.yce_c00417{bottom:220.733333pt;}
.ycb_c00417{bottom:221.693333pt;}
.ycd_c00417{bottom:221.893333pt;}
.yd1_c00417{bottom:222.266667pt;}
.ycc_c00417{bottom:222.640000pt;}
.yd0_c00417{bottom:223.600000pt;}
.yc3_c00417{bottom:232.933333pt;}
.yc8_c00417{bottom:234.066667pt;}
.yca_c00417{bottom:234.640000pt;}
.yc5_c00417{bottom:235.026667pt;}
.yc9_c00417{bottom:235.600000pt;}
.yc4_c00417{bottom:235.973333pt;}
.yc6_c00417{bottom:236.173333pt;}
.yc7_c00417{bottom:236.933333pt;}
.yc2_c00417{bottom:248.360000pt;}
.yc1_c00417{bottom:250.266667pt;}
.ybe_c00417{bottom:259.400000pt;}
.yba_c00417{bottom:260.360000pt;}
.yb9_c00417{bottom:260.560000pt;}
.ybd_c00417{bottom:260.733333pt;}
.ybb_c00417{bottom:261.306667pt;}
.ybf_c00417{bottom:261.506667pt;}
.ybc_c00417{bottom:262.266667pt;}
.yc0_c00417{bottom:262.640000pt;}
.yb5_c00417{bottom:271.973333pt;}
.yb8_c00417{bottom:272.733333pt;}
.yb6_c00417{bottom:274.640000pt;}
.yb7_c00417{bottom:275.600000pt;}
.yb4_c00417{bottom:286.066667pt;}
.yb2_c00417{bottom:287.026667pt;}
.yaf_c00417{bottom:287.226667pt;}
.yb0_c00417{bottom:287.973333pt;}
.yb3_c00417{bottom:288.173333pt;}
.yb1_c00417{bottom:288.933333pt;}
.yae_c00417{bottom:307.973333pt;}
.yad_c00417{bottom:308.360000pt;}
.ya9_c00417{bottom:323.773333pt;}
.yac_c00417{bottom:325.306667pt;}
.yab_c00417{bottom:325.693333pt;}
.yaa_c00417{bottom:325.893333pt;}
.ya8_c00417{bottom:340.733333pt;}
.ya5_c00417{bottom:342.440000pt;}
.ya6_c00417{bottom:343.026667pt;}
.ya7_c00417{bottom:343.973333pt;}
.ya3_c00417{bottom:344.360000pt;}
.ya4_c00417{bottom:344.373333pt;}
.ya2_c00417{bottom:359.773333pt;}
.ya0_c00417{bottom:360.360000pt;}
.ya1_c00417{bottom:361.693333pt;}
.y9e_c00417{bottom:375.773333pt;}
.y9a_c00417{bottom:377.106667pt;}
.y9f_c00417{bottom:377.693333pt;}
.y9d_c00417{bottom:378.066667pt;}
.y9c_c00417{bottom:378.640000pt;}
.y9b_c00417{bottom:379.026667pt;}
.y98_c00417{bottom:393.106667pt;}
.y96_c00417{bottom:394.440000pt;}
.y99_c00417{bottom:395.026667pt;}
.y97_c00417{bottom:396.360000pt;}
.y95_c00417{bottom:411.400000pt;}
.y8e_c00417{bottom:411.773333pt;}
.y8f_c00417{bottom:412.160000pt;}
.y93_c00417{bottom:412.733333pt;}
.y94_c00417{bottom:413.306667pt;}
.y92_c00417{bottom:413.693333pt;}
.y90_c00417{bottom:413.893333pt;}
.y91_c00417{bottom:414.640000pt;}
.y8d_c00417{bottom:428.160000pt;}
.y8b_c00417{bottom:429.106667pt;}
.y8c_c00417{bottom:430.640000pt;}
.y89_c00417{bottom:431.026667pt;}
.y8a_c00417{bottom:432.373333pt;}
.y87_c00417{bottom:446.440000pt;}
.y88_c00417{bottom:448.360000pt;}
.y85_c00417{bottom:448.560000pt;}
.y84_c00417{bottom:449.693333pt;}
.y86_c00417{bottom:449.706667pt;}
.y83_c00417{bottom:463.773333pt;}
.y80_c00417{bottom:465.106667pt;}
.y82_c00417{bottom:466.066667pt;}
.y81_c00417{bottom:467.040000pt;}
.y7a_c00417{bottom:481.106667pt;}
.y7e_c00417{bottom:482.066667pt;}
.y7b_c00417{bottom:482.440000pt;}
.y7f_c00417{bottom:483.026667pt;}
.y7d_c00417{bottom:483.400000pt;}
.y7c_c00417{bottom:484.373333pt;}
.y79_c00417{bottom:501.306667pt;}
.y76_c00417{bottom:503.026667pt;}
.y74_c00417{bottom:503.400000pt;}
.y77_c00417{bottom:503.973333pt;}
.y78_c00417{bottom:504.933333pt;}
.y75_c00417{bottom:505.306667pt;}
.y73_c00417{bottom:519.400000pt;}
.y72_c00417{bottom:520.360000pt;}
.y71_c00417{bottom:531.973333pt;}
.y70_c00417{bottom:532.733333pt;}
.y6f_c00417{bottom:532.933333pt;}
.y6a_c00417{bottom:533.306667pt;}
.y6b_c00417{bottom:533.693333pt;}
.y69_c00417{bottom:534.066667pt;}
.y6e_c00417{bottom:534.840000pt;}
.y6c_c00417{bottom:535.600000pt;}
.y6d_c00417{bottom:536.173333pt;}
.y68_c00417{bottom:554.440000pt;}
.y66_c00417{bottom:555.400000pt;}
.y67_c00417{bottom:556.360000pt;}
.y65_c00417{bottom:580.360000pt;}
.y64_c00417{bottom:607.973333pt;}
.y62_c00417{bottom:610.640000pt;}
.y63_c00417{bottom:611.026667pt;}
.y60_c00417{bottom:625.106667pt;}
.y5e_c00417{bottom:626.440000pt;}
.y5f_c00417{bottom:627.026667pt;}
.y61_c00417{bottom:627.226667pt;}
.y5d_c00417{bottom:628.360000pt;}
.y5b_c00417{bottom:642.440000pt;}
.y56_c00417{bottom:643.773333pt;}
.y5c_c00417{bottom:644.360000pt;}
.y57_c00417{bottom:644.560000pt;}
.y59_c00417{bottom:645.306667pt;}
.y5a_c00417{bottom:645.693333pt;}
.y58_c00417{bottom:646.640000pt;}
.y54_c00417{bottom:659.026667pt;}
.y52_c00417{bottom:660.733333pt;}
.y53_c00417{bottom:661.106667pt;}
.y55_c00417{bottom:662.640000pt;}
.y51_c00417{bottom:663.026667pt;}
.y4e_c00417{bottom:677.693333pt;}
.y4c_c00417{bottom:678.440000pt;}
.y50_c00417{bottom:679.226667pt;}
.y4f_c00417{bottom:680.360000pt;}
.y4d_c00417{bottom:680.560000pt;}
.y49_c00417{bottom:695.026667pt;}
.y4b_c00417{bottom:695.773333pt;}
.y47_c00417{bottom:697.693333pt;}
.y4a_c00417{bottom:697.893333pt;}
.y48_c00417{bottom:698.640000pt;}
.y45_c00417{bottom:713.106667pt;}
.y43_c00417{bottom:715.026667pt;}
.y44_c00417{bottom:715.226667pt;}
.y46_c00417{bottom:715.973333pt;}
.y42_c00417{bottom:730.640000pt;}
.y41_c00417{bottom:731.773333pt;}
.y3c_c00417{bottom:747.026667pt;}
.y3b_c00417{bottom:749.106667pt;}
.y40_c00417{bottom:749.693333pt;}
.y3f_c00417{bottom:750.066667pt;}
.y3e_c00417{bottom:750.640000pt;}
.y3d_c00417{bottom:751.026667pt;}
.y39_c00417{bottom:765.106667pt;}
.y36_c00417{bottom:765.493333pt;}
.y38_c00417{bottom:766.440000pt;}
.y3a_c00417{bottom:767.226667pt;}
.y34_c00417{bottom:767.400000pt;}
.y35_c00417{bottom:768.360000pt;}
.y37_c00417{bottom:769.306667pt;}
.y33_c00417{bottom:783.400000pt;}
.y32_c00417{bottom:783.773333pt;}
.y31_c00417{bottom:785.693333pt;}
.y30_c00417{bottom:801.106667pt;}
.y2f_c00417{bottom:801.306667pt;}
.y2b_c00417{bottom:818.066667pt;}
.y2c_c00417{bottom:818.440000pt;}
.y2d_c00417{bottom:819.400000pt;}
.y2e_c00417{bottom:819.973333pt;}
.y29_c00417{bottom:820.360000pt;}
.y2a_c00417{bottom:820.560000pt;}
.y26_c00417{bottom:835.773333pt;}
.y25_c00417{bottom:836.160000pt;}
.y27_c00417{bottom:836.560000pt;}
.y28_c00417{bottom:837.306667pt;}
.y23_c00417{bottom:837.693333pt;}
.y24_c00417{bottom:838.640000pt;}
.y21_c00417{bottom:853.106667pt;}
.y1f_c00417{bottom:854.440000pt;}
.y22_c00417{bottom:855.026667pt;}
.y1e_c00417{bottom:855.973333pt;}
.y20_c00417{bottom:856.360000pt;}
.y1d_c00417{bottom:870.440000pt;}
.y1b_c00417{bottom:870.826667pt;}
.y17_c00417{bottom:871.773333pt;}
.y1c_c00417{bottom:872.360000pt;}
.y19_c00417{bottom:872.560000pt;}
.y1a_c00417{bottom:873.306667pt;}
.y18_c00417{bottom:873.693333pt;}
.y16_c00417{bottom:887.773333pt;}
.y14_c00417{bottom:887.973333pt;}
.y12_c00417{bottom:889.106667pt;}
.y15_c00417{bottom:889.693333pt;}
.y13_c00417{bottom:890.640000pt;}
.y11_c00417{bottom:906.066667pt;}
.yf_c00417{bottom:906.440000pt;}
.y10_c00417{bottom:907.026667pt;}
.yd_c00417{bottom:907.226667pt;}
.ye_c00417{bottom:907.973333pt;}
.yc_c00417{bottom:908.360000pt;}
.y8_c00417{bottom:923.400000pt;}
.yb_c00417{bottom:923.773333pt;}
.ya_c00417{bottom:924.560000pt;}
.y7_c00417{bottom:925.306667pt;}
.y9_c00417{bottom:925.693333pt;}
.y5_c00417{bottom:940.160000pt;}
.y4_c00417{bottom:940.360000pt;}
.y6_c00417{bottom:941.106667pt;}
.y3_c00417{bottom:943.026667pt;}
.y1_c00417{bottom:976.733333pt;}
.y2_c00417{bottom:976.933333pt;}
.h9_c00417{height:3.739141pt;}
.h8_c00417{height:14.890964pt;}
.h7_c00417{height:20.466875pt;}
.h2_c00417{height:22.303646pt;}
.h6_c00417{height:27.879557pt;}
.h3_c00417{height:31.618698pt;}
.h1_c00417{height:35.357839pt;}
.h5_c00417{height:39.031380pt;}
.h4_c00417{height:42.770521pt;}
.h0_c00417{height:1186.666667pt;}
.w0_c00417{width:782.666667pt;}
.x0_c00417{left:0.000000pt;}
.xe4_c00417{left:132.373333pt;}
.xba_c00417{left:133.333333pt;}
.x36_c00417{left:134.293333pt;}
.x1_c00417{left:136.000000pt;}
.xdc_c00417{left:145.333333pt;}
.xac_c00417{left:146.666667pt;}
.xb2_c00417{left:148.000000pt;}
.x5e_c00417{left:148.960000pt;}
.x48_c00417{left:152.960000pt;}
.xe5_c00417{left:156.000000pt;}
.x11_c00417{left:158.666667pt;}
.xc5_c00417{left:160.373333pt;}
.xd3_c00417{left:161.333333pt;}
.x20_c00417{left:162.666667pt;}
.xa1_c00417{left:168.373333pt;}
.x78_c00417{left:169.706667pt;}
.xda_c00417{left:172.000000pt;}
.x52_c00417{left:173.333333pt;}
.xeb_c00417{left:176.000000pt;}
.xbb_c00417{left:176.960000pt;}
.x5d_c00417{left:179.800000pt;}
.x37_c00417{left:182.293333pt;}
.x3_c00417{left:184.000000pt;}
.x53_c00417{left:185.333333pt;}
.x5f_c00417{left:186.293333pt;}
.x68_c00417{left:187.626667pt;}
.xcf_c00417{left:188.960000pt;}
.x2b_c00417{left:190.666667pt;}
.x8a_c00417{left:192.000000pt;}
.x79_c00417{left:193.333333pt;}
.x38_c00417{left:198.666667pt;}
.x82_c00417{left:200.000000pt;}
.xad_c00417{left:201.706667pt;}
.x12_c00417{left:202.666667pt;}
.xa3_c00417{left:205.333333pt;}
.x77_c00417{left:206.666667pt;}
.x2c_c00417{left:207.626667pt;}
.x49_c00417{left:209.706667pt;}
.x90_c00417{left:213.706667pt;}
.x4_c00417{left:215.040000pt;}
.x9c_c00417{left:217.333333pt;}
.x13_c00417{left:218.293333pt;}
.x21_c00417{left:220.000000pt;}
.xcd_c00417{left:221.333333pt;}
.xd4_c00417{left:222.293333pt;}
.xdb_c00417{left:224.000000pt;}
.x94_c00417{left:225.333333pt;}
.xb3_c00417{left:229.333333pt;}
.xb9_c00417{left:230.666667pt;}
.xa2_c00417{left:231.626667pt;}
.xd0_c00417{left:233.333333pt;}
.x2d_c00417{left:235.626667pt;}
.xb0_c00417{left:237.333333pt;}
.x22_c00417{left:238.666667pt;}
.x60_c00417{left:240.000000pt;}
.xc6_c00417{left:240.960000pt;}
.x95_c00417{left:244.000000pt;}
.x5_c00417{left:245.706667pt;}
.xc8_c00417{left:247.626667pt;}
.x39_c00417{left:248.573333pt;}
.x2e_c00417{left:251.040000pt;}
.x54_c00417{left:252.960000pt;}
.x14_c00417{left:254.666667pt;}
.x96_c00417{left:256.000000pt;}
.x7a_c00417{left:257.333333pt;}
.x4a_c00417{left:260.960000pt;}
.x41_c00417{left:263.626667pt;}
.x15_c00417{left:265.706667pt;}
.xb6_c00417{left:266.666667pt;}
.x6f_c00417{left:268.960000pt;}
.x55_c00417{left:271.040000pt;}
.xd1_c00417{left:272.000000pt;}
.x2f_c00417{left:274.666667pt;}
.x7b_c00417{left:275.626667pt;}
.x6_c00417{left:277.706667pt;}
.x97_c00417{left:280.000000pt;}
.x9d_c00417{left:281.333333pt;}
.xb7_c00417{left:284.960000pt;}
.x70_c00417{left:286.293333pt;}
.xe6_c00417{left:288.000000pt;}
.x23_c00417{left:290.666667pt;}
.xd5_c00417{left:292.960000pt;}
.x56_c00417{left:296.000000pt;}
.xd2_c00417{left:296.960000pt;}
.x61_c00417{left:298.293333pt;}
.xdd_c00417{left:303.040000pt;}
.xb4_c00417{left:305.133333pt;}
.x98_c00417{left:306.666667pt;}
.xb8_c00417{left:308.000000pt;}
.x3a_c00417{left:309.333333pt;}
.x91_c00417{left:310.666667pt;}
.x7_c00417{left:312.373333pt;}
.xae_c00417{left:314.293333pt;}
.x16_c00417{left:317.333333pt;}
.x83_c00417{left:320.000000pt;}
.xa7_c00417{left:321.706667pt;}
.x4b_c00417{left:323.800000pt;}
.xec_c00417{left:324.960000pt;}
.x42_c00417{left:326.466667pt;}
.x57_c00417{left:328.373333pt;}
.xc9_c00417{left:330.666667pt;}
.xbc_c00417{left:333.333333pt;}
.x62_c00417{left:335.626667pt;}
.x71_c00417{left:336.960000pt;}
.x69_c00417{left:338.293333pt;}
.x8b_c00417{left:340.000000pt;}
.x30_c00417{left:340.960000pt;}
.xb5_c00417{left:342.666667pt;}
.x8_c00417{left:344.373333pt;}
.xb1_c00417{left:347.040000pt;}
.xd6_c00417{left:348.573333pt;}
.xed_c00417{left:349.706667pt;}
.xaa_c00417{left:355.040000pt;}
.x8c_c00417{left:356.000000pt;}
.x24_c00417{left:357.706667pt;}
.x2_c00417{left:364.000000pt;}
.xc7_c00417{left:364.960000pt;}
.x9_c00417{left:366.666667pt;}
.x43_c00417{left:368.000000pt;}
.xc0_c00417{left:369.333333pt;}
.x17_c00417{left:370.666667pt;}
.x6a_c00417{left:371.626667pt;}
.xe7_c00417{left:375.040000pt;}
.x3b_c00417{left:376.373333pt;}
.x84_c00417{left:381.706667pt;}
.x58_c00417{left:382.666667pt;}
.x9e_c00417{left:383.626667pt;}
.x18_c00417{left:385.333333pt;}
.xee_c00417{left:388.000000pt;}
.x44_c00417{left:388.960000pt;}
.x99_c00417{left:390.666667pt;}
.x25_c00417{left:392.373333pt;}
.xa4_c00417{left:394.093333pt;}
.xab_c00417{left:395.626667pt;}
.x3c_c00417{left:397.333333pt;}
.xde_c00417{left:400.373333pt;}
.x7c_c00417{left:401.706667pt;}
.x9f_c00417{left:404.000000pt;}
.x19_c00417{left:409.706667pt;}
.xca_c00417{left:412.373333pt;}
.x63_c00417{left:413.706667pt;}
.xef_c00417{left:415.040000pt;}
.xaf_c00417{left:416.000000pt;}
.x26_c00417{left:417.333333pt;}
.x85_c00417{left:419.040000pt;}
.xa_c00417{left:422.666667pt;}
.x7d_c00417{left:424.373333pt;}
.x8d_c00417{left:426.293333pt;}
.x59_c00417{left:428.000000pt;}
.x3d_c00417{left:434.293333pt;}
.x1a_c00417{left:436.373333pt;}
.xbd_c00417{left:437.706667pt;}
.xb_c00417{left:439.040000pt;}
.x64_c00417{left:440.000000pt;}
.x8e_c00417{left:440.960000pt;}
.x31_c00417{left:442.666667pt;}
.x45_c00417{left:445.333333pt;}
.x6b_c00417{left:448.373333pt;}
.x4c_c00417{left:450.666667pt;}
.x86_c00417{left:454.293333pt;}
.xc1_c00417{left:458.666667pt;}
.x72_c00417{left:459.800000pt;}
.xc_c00417{left:461.333333pt;}
.xa5_c00417{left:467.626667pt;}
.xce_c00417{left:469.333333pt;}
.xdf_c00417{left:470.666667pt;}
.x7e_c00417{left:472.000000pt;}
.x65_c00417{left:475.040000pt;}
.x3e_c00417{left:476.000000pt;}
.x27_c00417{left:477.333333pt;}
.x6c_c00417{left:480.373333pt;}
.xa6_c00417{left:481.333333pt;}
.xd7_c00417{left:484.960000pt;}
.xa8_c00417{left:487.040000pt;}
.x4d_c00417{left:488.000000pt;}
.x73_c00417{left:492.960000pt;}
.x5a_c00417{left:495.040000pt;}
.xe8_c00417{left:496.000000pt;}
.x1b_c00417{left:498.666667pt;}
.x32_c00417{left:499.626667pt;}
.xd_c00417{left:502.293333pt;}
.x4e_c00417{left:504.373333pt;}
.x87_c00417{left:505.706667pt;}
.xcb_c00417{left:506.666667pt;}
.x7f_c00417{left:508.000000pt;}
.x28_c00417{left:508.960000pt;}
.xe0_c00417{left:510.666667pt;}
.x1c_c00417{left:511.626667pt;}
.x5b_c00417{left:516.960000pt;}
.x74_c00417{left:520.960000pt;}
.xe_c00417{left:524.000000pt;}
.x1d_c00417{left:526.666667pt;}
.x66_c00417{left:527.626667pt;}
.x6d_c00417{left:529.333333pt;}
.x3f_c00417{left:530.666667pt;}
.xc4_c00417{left:532.000000pt;}
.xd8_c00417{left:536.000000pt;}
.x1e_c00417{left:537.333333pt;}
.x33_c00417{left:539.626667pt;}
.x4f_c00417{left:544.000000pt;}
.x67_c00417{left:546.666667pt;}
.x75_c00417{left:550.666667pt;}
.xe9_c00417{left:553.906667pt;}
.x9a_c00417{left:556.000000pt;}
.xbe_c00417{left:559.626667pt;}
.xe1_c00417{left:560.960000pt;}
.xa0_c00417{left:562.666667pt;}
.x88_c00417{left:565.333333pt;}
.x34_c00417{left:567.040000pt;}
.x40_c00417{left:569.333333pt;}
.x92_c00417{left:571.040000pt;}
.xcc_c00417{left:573.333333pt;}
.xa9_c00417{left:574.293333pt;}
.xc2_c00417{left:577.333333pt;}
.xf_c00417{left:583.040000pt;}
.xe2_c00417{left:586.293333pt;}
.x46_c00417{left:587.800000pt;}
.x29_c00417{left:589.333333pt;}
.x35_c00417{left:590.666667pt;}
.x76_c00417{left:591.626667pt;}
.x80_c00417{left:593.333333pt;}
.x93_c00417{left:594.666667pt;}
.xd9_c00417{left:596.000000pt;}
.xc3_c00417{left:597.333333pt;}
.xea_c00417{left:599.040000pt;}
.xbf_c00417{left:600.000000pt;}
.x8f_c00417{left:603.626667pt;}
.x1f_c00417{left:607.040000pt;}
.x50_c00417{left:610.666667pt;}
.x6e_c00417{left:612.760000pt;}
.x89_c00417{left:616.000000pt;}
.x81_c00417{left:616.960000pt;}
.x5c_c00417{left:623.626667pt;}
.xe3_c00417{left:625.333333pt;}
.x47_c00417{left:626.293333pt;}
.x9b_c00417{left:628.000000pt;}
.x2a_c00417{left:635.626667pt;}
.x51_c00417{left:637.333333pt;}
.x10_c00417{left:640.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_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_59503802dc898fac24ee2e8a.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me2_c00418{transform:matrix(0.204622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204622,0.000000,0.000000,0.250000,0,0);}
.mde_c00418{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.me3_c00418{transform:matrix(0.281513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281513,0.000000,0.000000,0.250000,0,0);}
.me0_c00418{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m40_c00418{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m9a_c00418{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m0_c00418{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m31_c00418{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.mb7_c00418{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m16_c00418{transform:matrix(0.382189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382189,0.000000,0.000000,0.250000,0,0);}
.m55_c00418{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m6d_c00418{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.mae_c00418{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.md0_c00418{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m14_c00418{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.mc1_c00418{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m76_c00418{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m8c_c00418{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.mb8_c00418{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m8d_c00418{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m8a_c00418{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m36_c00418{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.mbf_c00418{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m4b_c00418{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.mf1_c00418{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.ma1_c00418{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m27_c00418{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m70_c00418{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mdc_c00418{transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);}
.md7_c00418{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m73_c00418{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.mee_c00418{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m51_c00418{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.meb_c00418{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mb2_c00418{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mb_c00418{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m4_c00418{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.m23_c00418{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m93_c00418{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.ma3_c00418{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mce_c00418{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.md_c00418{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m26_c00418{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.me5_c00418{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m4d_c00418{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m5f_c00418{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.med_c00418{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m9c_c00418{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m41_c00418{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m91_c00418{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m10_c00418{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m50_c00418{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m6e_c00418{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m8b_c00418{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m78_c00418{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.m6_c00418{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.md2_c00418{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.mc5_c00418{transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);}
.md9_c00418{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mdf_c00418{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m32_c00418{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mc_c00418{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m7b_c00418{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m54_c00418{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m86_c00418{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.mc7_c00418{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m92_c00418{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.ma4_c00418{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m3_c00418{transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);}
.m9e_c00418{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.mb3_c00418{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.me9_c00418{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m99_c00418{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m72_c00418{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m44_c00418{transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);}
.m3b_c00418{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m2f_c00418{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m90_c00418{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m7_c00418{transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);}
.m83_c00418{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m96_c00418{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.mcc_c00418{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.m1a_c00418{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m28_c00418{transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);}
.mf6_c00418{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m1f_c00418{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m3f_c00418{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m9f_c00418{transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);}
.m37_c00418{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.mbc_c00418{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m2b_c00418{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m2a_c00418{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m3e_c00418{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mbb_c00418{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m7f_c00418{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m9_c00418{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.maa_c00418{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.me8_c00418{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.ma7_c00418{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m43_c00418{transform:matrix(0.495294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495294,0.000000,0.000000,0.250000,0,0);}
.ma_c00418{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_c00418{transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);}
.m5a_c00418{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.ma5_c00418{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m7d_c00418{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m6c_c00418{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m35_c00418{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m12_c00418{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.mb6_c00418{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m57_c00418{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m3a_c00418{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m52_c00418{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mca_c00418{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m6b_c00418{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m75_c00418{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m5d_c00418{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.md4_c00418{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m59_c00418{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m38_c00418{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.mbd_c00418{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m79_c00418{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m39_c00418{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m77_c00418{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.ma8_c00418{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.m97_c00418{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m8e_c00418{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m7c_c00418{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m15_c00418{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);}
.me1_c00418{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m95_c00418{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m6a_c00418{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mac_c00418{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m8_c00418{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m66_c00418{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m53_c00418{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mc3_c00418{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mc9_c00418{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m30_c00418{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m4f_c00418{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.me6_c00418{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m61_c00418{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m58_c00418{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mad_c00418{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m20_c00418{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.mb1_c00418{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m65_c00418{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m49_c00418{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m71_c00418{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m5b_c00418{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mf0_c00418{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.me4_c00418{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m94_c00418{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mba_c00418{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mf3_c00418{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m56_c00418{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mc0_c00418{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mf5_c00418{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m25_c00418{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.md5_c00418{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m9b_c00418{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m67_c00418{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m18_c00418{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.mf4_c00418{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m68_c00418{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mc4_c00418{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.ma2_c00418{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mcf_c00418{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);}
.m69_c00418{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m1b_c00418{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.ma0_c00418{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m82_c00418{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.m85_c00418{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m5_c00418{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.mdb_c00418{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.ma9_c00418{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m63_c00418{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m1c_c00418{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.mc2_c00418{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m3d_c00418{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.mc8_c00418{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m9d_c00418{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.mab_c00418{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m81_c00418{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mf2_c00418{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m11_c00418{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m21_c00418{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_c00418{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m13_c00418{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m33_c00418{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.mef_c00418{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m5e_c00418{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mbe_c00418{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.mcd_c00418{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.m60_c00418{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);}
.mcb_c00418{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m17_c00418{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.md6_c00418{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m46_c00418{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);}
.m64_c00418{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mb5_c00418{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.ma6_c00418{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m2e_c00418{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mea_c00418{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m4c_c00418{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m2_c00418{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);}
.md3_c00418{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_c00418{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mf_c00418{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m3c_c00418{transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);}
.me_c00418{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m24_c00418{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m7a_c00418{transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);}
.m1_c00418{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m98_c00418{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m2c_c00418{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m1e_c00418{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);}
.md8_c00418{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m1d_c00418{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m48_c00418{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);}
.mb4_c00418{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m5c_c00418{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m4a_c00418{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.m45_c00418{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.mc6_c00418{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.m47_c00418{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m87_c00418{transform:matrix(0.685096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685096,0.000000,0.000000,0.250000,0,0);}
.m22_c00418{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mdd_c00418{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.me7_c00418{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m29_c00418{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.md1_c00418{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.maf_c00418{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mb9_c00418{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m88_c00418{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m34_c00418{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m7e_c00418{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m62_c00418{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m89_c00418{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mb0_c00418{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m74_c00418{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mda_c00418{transform:matrix(0.806891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806891,0.000000,0.000000,0.250000,0,0);}
.m80_c00418{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m84_c00418{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m6f_c00418{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m42_c00418{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.m2d_c00418{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m4e_c00418{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00418{vertical-align:0.000000px;}
.v1_c00418{vertical-align:7.680000px;}
.v2_c00418{vertical-align:12.000000px;}
.v3_c00418{vertical-align:18.000000px;}
.ls1_c00418{letter-spacing:0.000000px;}
.ls0_c00418{letter-spacing:11.817600px;}
.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;}
}
.ws4_c00418{word-spacing:-16.889280px;}
.ws6_c00418{word-spacing:-9.532402px;}
.ws0_c00418{word-spacing:-6.425697px;}
.ws3_c00418{word-spacing:-6.184625px;}
.ws2_c00418{word-spacing:-5.147281px;}
.ws5_c00418{word-spacing:-4.906361px;}
.ws1_c00418{word-spacing:-3.199200px;}
.ws7_c00418{word-spacing:0.000000px;}
._0_c00418{width:7.053206px;}
.fc0_c00418{color:transparent;}
.fs7_c00418{font-size:3.420000px;}
.fs5_c00418{font-size:13.620000px;}
.fs6_c00418{font-size:18.720000px;}
.fs1_c00418{font-size:20.400000px;}
.fs3_c00418{font-size:25.500000px;}
.fs4_c00418{font-size:28.920000px;}
.fs2_c00418{font-size:32.340000px;}
.fs0_c00418{font-size:35.700000px;}
.fs8_c00418{font-size:39.120000px;}
.y0_c00418{bottom:0.000000px;}
.yd0_c00418{bottom:247.905000px;}
.ycf_c00418{bottom:250.905000px;}
.yce_c00418{bottom:252.405000px;}
.yca_c00418{bottom:268.245000px;}
.yc9_c00418{bottom:269.745000px;}
.ycc_c00418{bottom:270.630000px;}
.ycb_c00418{bottom:271.905000px;}
.ycd_c00418{bottom:272.970000px;}
.yc7_c00418{bottom:286.905000px;}
.yc5_c00418{bottom:289.245000px;}
.yc8_c00418{bottom:290.130000px;}
.yc6_c00418{bottom:291.405000px;}
.yc4_c00418{bottom:307.470000px;}
.yc2_c00418{bottom:307.905000px;}
.yc1_c00418{bottom:308.745000px;}
.yc3_c00418{bottom:310.905000px;}
.ybe_c00418{bottom:327.180000px;}
.yc0_c00418{bottom:328.245000px;}
.ybd_c00418{bottom:330.405000px;}
.ybf_c00418{bottom:331.470000px;}
.ybb_c00418{bottom:349.245000px;}
.yb8_c00418{bottom:349.905000px;}
.yb9_c00418{bottom:350.130000px;}
.yba_c00418{bottom:350.970000px;}
.ybc_c00418{bottom:351.405000px;}
.yb5_c00418{bottom:367.470000px;}
.yb7_c00418{bottom:368.745000px;}
.yb6_c00418{bottom:370.905000px;}
.yb4_c00418{bottom:385.905000px;}
.yb0_c00418{bottom:387.405000px;}
.yb1_c00418{bottom:388.245000px;}
.yb3_c00418{bottom:389.130000px;}
.yaf_c00418{bottom:390.405000px;}
.yb2_c00418{bottom:390.630000px;}
.yad_c00418{bottom:406.905000px;}
.yae_c00418{bottom:407.325000px;}
.yaa_c00418{bottom:407.745000px;}
.yac_c00418{bottom:408.630000px;}
.ya9_c00418{bottom:409.905000px;}
.yab_c00418{bottom:410.130000px;}
.ya6_c00418{bottom:427.245000px;}
.ya8_c00418{bottom:428.970000px;}
.ya7_c00418{bottom:429.405000px;}
.ya3_c00418{bottom:446.325000px;}
.ya5_c00418{bottom:446.745000px;}
.ya1_c00418{bottom:448.470000px;}
.ya2_c00418{bottom:448.905000px;}
.ya4_c00418{bottom:450.405000px;}
.y9e_c00418{bottom:467.325000px;}
.y9d_c00418{bottom:467.745000px;}
.ya0_c00418{bottom:468.630000px;}
.y9f_c00418{bottom:469.905000px;}
.y9c_c00418{bottom:487.050000px;}
.y99_c00418{bottom:487.245000px;}
.y9a_c00418{bottom:488.130000px;}
.y98_c00418{bottom:489.405000px;}
.y9b_c00418{bottom:489.630000px;}
.y95_c00418{bottom:504.405000px;}
.y94_c00418{bottom:506.745000px;}
.y97_c00418{bottom:507.630000px;}
.y96_c00418{bottom:507.825000px;}
.y93_c00418{bottom:508.905000px;}
.y8f_c00418{bottom:525.825000px;}
.y91_c00418{bottom:526.245000px;}
.y92_c00418{bottom:527.130000px;}
.y8e_c00418{bottom:528.405000px;}
.y90_c00418{bottom:529.470000px;}
.y8a_c00418{bottom:545.745000px;}
.y8d_c00418{bottom:546.630000px;}
.y8b_c00418{bottom:547.905000px;}
.y8c_c00418{bottom:548.130000px;}
.y87_c00418{bottom:567.405000px;}
.y89_c00418{bottom:567.630000px;}
.y88_c00418{bottom:568.905000px;}
.y86_c00418{bottom:583.905000px;}
.y83_c00418{bottom:586.905000px;}
.y85_c00418{bottom:587.130000px;}
.y84_c00418{bottom:588.405000px;}
.y7f_c00418{bottom:603.405000px;}
.y80_c00418{bottom:605.745000px;}
.y82_c00418{bottom:607.470000px;}
.y81_c00418{bottom:607.905000px;}
.y7d_c00418{bottom:622.905000px;}
.y78_c00418{bottom:624.825000px;}
.y7a_c00418{bottom:625.245000px;}
.y79_c00418{bottom:626.130000px;}
.y7c_c00418{bottom:626.970000px;}
.y7b_c00418{bottom:627.405000px;}
.y7e_c00418{bottom:628.470000px;}
.y76_c00418{bottom:643.245000px;}
.y77_c00418{bottom:644.745000px;}
.y75_c00418{bottom:646.905000px;}
.y73_c00418{bottom:665.325000px;}
.y74_c00418{bottom:665.970000px;}
.y72_c00418{bottom:666.405000px;}
.y71_c00418{bottom:666.630000px;}
.y6b_c00418{bottom:683.745000px;}
.y6f_c00418{bottom:685.245000px;}
.y6c_c00418{bottom:685.905000px;}
.y70_c00418{bottom:686.130000px;}
.y6e_c00418{bottom:686.970000px;}
.y6d_c00418{bottom:687.405000px;}
.y67_c00418{bottom:702.405000px;}
.y66_c00418{bottom:703.245000px;}
.y6a_c00418{bottom:704.745000px;}
.y65_c00418{bottom:705.405000px;}
.y69_c00418{bottom:705.630000px;}
.y68_c00418{bottom:706.905000px;}
.y64_c00418{bottom:721.905000px;}
.y60_c00418{bottom:724.905000px;}
.y61_c00418{bottom:725.130000px;}
.y63_c00418{bottom:725.970000px;}
.y62_c00418{bottom:726.405000px;}
.y5d_c00418{bottom:743.745000px;}
.y5f_c00418{bottom:744.630000px;}
.y5e_c00418{bottom:745.470000px;}
.y5c_c00418{bottom:745.905000px;}
.y5b_c00418{bottom:762.405000px;}
.y59_c00418{bottom:763.245000px;}
.y58_c00418{bottom:765.405000px;}
.y5a_c00418{bottom:765.630000px;}
.y54_c00418{bottom:781.905000px;}
.y55_c00418{bottom:782.745000px;}
.y53_c00418{bottom:784.905000px;}
.y57_c00418{bottom:785.130000px;}
.y56_c00418{bottom:785.970000px;}
.y4f_c00418{bottom:801.405000px;}
.y51_c00418{bottom:802.245000px;}
.y50_c00418{bottom:803.325000px;}
.y4e_c00418{bottom:803.970000px;}
.y4d_c00418{bottom:804.405000px;}
.y52_c00418{bottom:805.470000px;}
.y48_c00418{bottom:821.745000px;}
.y4c_c00418{bottom:823.905000px;}
.y4b_c00418{bottom:824.130000px;}
.y49_c00418{bottom:824.970000px;}
.y4a_c00418{bottom:825.405000px;}
.y47_c00418{bottom:840.405000px;}
.y44_c00418{bottom:843.405000px;}
.y46_c00418{bottom:844.470000px;}
.y45_c00418{bottom:844.905000px;}
.y40_c00418{bottom:862.245000px;}
.y43_c00418{bottom:863.130000px;}
.y42_c00418{bottom:864.405000px;}
.y41_c00418{bottom:864.420000px;}
.y3f_c00418{bottom:898.905000px;}
.y3d_c00418{bottom:900.195000px;}
.y3e_c00418{bottom:901.050000px;}
.y3c_c00418{bottom:912.825000px;}
.y36_c00418{bottom:913.050000px;}
.y37_c00418{bottom:913.905000px;}
.y3a_c00418{bottom:914.130000px;}
.y39_c00418{bottom:914.550000px;}
.y3b_c00418{bottom:914.970000px;}
.y38_c00418{bottom:916.050000px;}
.y32_c00418{bottom:926.970000px;}
.y35_c00418{bottom:927.825000px;}
.y34_c00418{bottom:929.970000px;}
.y31_c00418{bottom:930.195000px;}
.y33_c00418{bottom:931.050000px;}
.y2e_c00418{bottom:942.825000px;}
.y2d_c00418{bottom:943.905000px;}
.y2f_c00418{bottom:944.130000px;}
.y30_c00418{bottom:944.970000px;}
.y2c_c00418{bottom:946.050000px;}
.y26_c00418{bottom:956.970000px;}
.y2a_c00418{bottom:957.825000px;}
.y29_c00418{bottom:958.905000px;}
.y28_c00418{bottom:959.130000px;}
.y27_c00418{bottom:959.970000px;}
.y2b_c00418{bottom:960.195000px;}
.y21_c00418{bottom:972.405000px;}
.y24_c00418{bottom:972.825000px;}
.y25_c00418{bottom:973.905000px;}
.y20_c00418{bottom:974.550000px;}
.y23_c00418{bottom:974.970000px;}
.y22_c00418{bottom:975.195000px;}
.y1b_c00418{bottom:986.325000px;}
.y1c_c00418{bottom:987.405000px;}
.y1e_c00418{bottom:988.470000px;}
.y1d_c00418{bottom:988.905000px;}
.y1a_c00418{bottom:989.550000px;}
.y1f_c00418{bottom:990.195000px;}
.y19_c00418{bottom:1001.325000px;}
.y17_c00418{bottom:1002.405000px;}
.y15_c00418{bottom:1003.470000px;}
.y16_c00418{bottom:1003.695000px;}
.y18_c00418{bottom:1004.550000px;}
.y11_c00418{bottom:1016.325000px;}
.y10_c00418{bottom:1016.550000px;}
.y14_c00418{bottom:1017.405000px;}
.y13_c00418{bottom:1018.470000px;}
.y12_c00418{bottom:1019.550000px;}
.yf_c00418{bottom:1031.325000px;}
.ye_c00418{bottom:1034.550000px;}
.y9_c00418{bottom:1045.905000px;}
.yc_c00418{bottom:1046.550000px;}
.yb_c00418{bottom:1047.405000px;}
.ya_c00418{bottom:1048.050000px;}
.yd_c00418{bottom:1048.470000px;}
.y4_c00418{bottom:1059.825000px;}
.y3_c00418{bottom:1060.050000px;}
.y6_c00418{bottom:1061.325000px;}
.y8_c00418{bottom:1061.550000px;}
.y7_c00418{bottom:1062.405000px;}
.y5_c00418{bottom:1063.470000px;}
.y1_c00418{bottom:1097.745000px;}
.y2_c00418{bottom:1099.050000px;}
.ha_c00418{height:4.206533px;}
.h7_c00418{height:16.752334px;}
.h8_c00418{height:23.025234px;}
.h2_c00418{height:25.091602px;}
.h4_c00418{height:31.364502px;}
.h5_c00418{height:35.571035px;}
.h9_c00418{height:37.091602px;}
.h6_c00418{height:39.044502px;}
.h3_c00418{height:39.777568px;}
.h1_c00418{height:43.910303px;}
.hb_c00418{height:47.571035px;}
.hd_c00418{height:48.116836px;}
.hc_c00418{height:53.571035px;}
.h0_c00418{height:1335.000000px;}
.w0_c00418{width:880.500000px;}
.x0_c00418{left:0.000000px;}
.xc_c00418{left:151.500000px;}
.x5e_c00418{left:153.000000px;}
.xd9_c00418{left:154.500000px;}
.x103_c00418{left:155.580000px;}
.x5f_c00418{left:163.500000px;}
.x18_c00418{left:165.420000px;}
.x3_c00418{left:166.920000px;}
.x105_c00418{left:171.000000px;}
.x110_c00418{left:172.080000px;}
.x52_c00418{left:175.920000px;}
.x17_c00418{left:178.500000px;}
.xba_c00418{left:181.080000px;}
.x3d_c00418{left:182.580000px;}
.x19_c00418{left:183.855000px;}
.x4_c00418{left:184.920000px;}
.xde_c00418{left:186.000000px;}
.x85_c00418{left:189.420000px;}
.xa4_c00418{left:191.580000px;}
.x7e_c00418{left:193.500000px;}
.xf5_c00418{left:195.000000px;}
.x9d_c00418{left:196.500000px;}
.xea_c00418{left:198.000000px;}
.x6c_c00418{left:202.500000px;}
.x10d_c00418{left:203.580000px;}
.xd3_c00418{left:205.920000px;}
.x26_c00418{left:207.000000px;}
.x60_c00418{left:208.500000px;}
.xfd_c00418{left:211.080000px;}
.xac_c00418{left:214.500000px;}
.x106_c00418{left:216.000000px;}
.x27_c00418{left:217.500000px;}
.xbf_c00418{left:219.420000px;}
.x113_c00418{left:220.500000px;}
.x39_c00418{left:222.000000px;}
.xbb_c00418{left:223.500000px;}
.x2d_c00418{left:226.080000px;}
.xed_c00418{left:228.000000px;}
.xd_c00418{left:229.080000px;}
.xdf_c00418{left:230.580000px;}
.x3a_c00418{left:232.500000px;}
.x90_c00418{left:234.000000px;}
.x104_c00418{left:235.920000px;}
.x61_c00418{left:237.420000px;}
.x55_c00418{left:240.000000px;}
.x3e_c00418{left:241.500000px;}
.x7f_c00418{left:247.920000px;}
.x53_c00418{left:250.080000px;}
.x28_c00418{left:252.000000px;}
.xe5_c00418{left:253.500000px;}
.x64_c00418{left:255.000000px;}
.x86_c00418{left:256.920000px;}
.xc0_c00418{left:258.000000px;}
.xbc_c00418{left:259.080000px;}
.x3f_c00418{left:261.000000px;}
.x5_c00418{left:262.080000px;}
.xa5_c00418{left:263.580000px;}
.x49_c00418{left:267.000000px;}
.xf6_c00418{left:269.580000px;}
.x107_c00418{left:271.500000px;}
.xe_c00418{left:274.080000px;}
.x1a_c00418{left:276.420000px;}
.x54_c00418{left:277.500000px;}
.x3b_c00418{left:278.580000px;}
.x29_c00418{left:280.920000px;}
.x96_c00418{left:283.080000px;}
.x6d_c00418{left:284.580000px;}
.x2e_c00418{left:286.080000px;}
.xa6_c00418{left:288.420000px;}
.xee_c00418{left:291.000000px;}
.x9e_c00418{left:292.080000px;}
.xd4_c00418{left:296.580000px;}
.x76_c00418{left:298.500000px;}
.x114_c00418{left:299.580000px;}
.xc1_c00418{left:301.500000px;}
.xb3_c00418{left:303.000000px;}
.x1b_c00418{left:304.080000px;}
.x3c_c00418{left:305.580000px;}
.xc9_c00418{left:307.920000px;}
.x62_c00418{left:309.420000px;}
.x65_c00418{left:310.920000px;}
.xf_c00418{left:316.500000px;}
.xcd_c00418{left:318.420000px;}
.xda_c00418{left:319.920000px;}
.x4a_c00418{left:321.000000px;}
.x2a_c00418{left:322.500000px;}
.x56_c00418{left:324.420000px;}
.xef_c00418{left:325.920000px;}
.x91_c00418{left:328.500000px;}
.x2f_c00418{left:330.000000px;}
.x6e_c00418{left:333.420000px;}
.x63_c00418{left:336.000000px;}
.xe6_c00418{left:337.500000px;}
.x1c_c00418{left:338.580000px;}
.x9f_c00418{left:340.920000px;}
.x80_c00418{left:343.920000px;}
.xb4_c00418{left:345.420000px;}
.xce_c00418{left:346.500000px;}
.x92_c00418{left:348.000000px;}
.x6_c00418{left:349.500000px;}
.x2b_c00418{left:350.580000px;}
.x10_c00418{left:354.420000px;}
.x1d_c00418{left:355.500000px;}
.xf0_c00418{left:357.420000px;}
.x4b_c00418{left:360.420000px;}
.xa7_c00418{left:361.500000px;}
.xf7_c00418{left:362.580000px;}
.x10b_c00418{left:363.855000px;}
.x10e_c00418{left:365.580000px;}
.x30_c00418{left:369.420000px;}
.x40_c00418{left:372.000000px;}
.x57_c00418{left:375.000000px;}
.xad_c00418{left:376.500000px;}
.x2c_c00418{left:378.000000px;}
.x4c_c00418{left:379.080000px;}
.x11_c00418{left:381.000000px;}
.x66_c00418{left:382.920000px;}
.x31_c00418{left:387.000000px;}
.x77_c00418{left:388.080000px;}
.xcf_c00418{left:391.500000px;}
.xc2_c00418{left:393.000000px;}
.x118_c00418{left:394.920000px;}
.xa8_c00418{left:396.000000px;}
.x7_c00418{left:398.580000px;}
.x93_c00418{left:402.000000px;}
.x2_c00418{left:405.000000px;}
.x78_c00418{left:408.000000px;}
.xae_c00418{left:409.500000px;}
.x58_c00418{left:411.000000px;}
.x81_c00418{left:412.500000px;}
.x108_c00418{left:413.580000px;}
.x1e_c00418{left:414.645000px;}
.xe7_c00418{left:415.920000px;}
.x87_c00418{left:418.500000px;}
.x97_c00418{left:420.000000px;}
.x115_c00418{left:421.500000px;}
.x119_c00418{left:423.000000px;}
.xa9_c00418{left:424.080000px;}
.xd5_c00418{left:427.080000px;}
.x12_c00418{left:429.420000px;}
.xe0_c00418{left:430.500000px;}
.xc3_c00418{left:432.000000px;}
.x79_c00418{left:434.580000px;}
.x6f_c00418{left:436.920000px;}
.xfa_c00418{left:438.420000px;}
.xeb_c00418{left:439.500000px;}
.x59_c00418{left:441.000000px;}
.x32_c00418{left:442.080000px;}
.x116_c00418{left:444.420000px;}
.xe8_c00418{left:445.920000px;}
.xa0_c00418{left:447.000000px;}
.xaf_c00418{left:448.080000px;}
.x41_c00418{left:451.080000px;}
.xd0_c00418{left:453.420000px;}
.x1f_c00418{left:457.080000px;}
.xfe_c00418{left:459.000000px;}
.x4d_c00418{left:461.580000px;}
.xb5_c00418{left:463.500000px;}
.x5a_c00418{left:465.000000px;}
.x67_c00418{left:466.500000px;}
.x98_c00418{left:468.000000px;}
.xc4_c00418{left:471.000000px;}
.x7a_c00418{left:474.000000px;}
.xf1_c00418{left:475.500000px;}
.x88_c00418{left:478.080000px;}
.x94_c00418{left:479.580000px;}
.x70_c00418{left:483.420000px;}
.x8_c00418{left:485.145000px;}
.x11a_c00418{left:486.420000px;}
.x99_c00418{left:489.420000px;}
.x7b_c00418{left:490.920000px;}
.x13_c00418{left:492.000000px;}
.x33_c00418{left:493.500000px;}
.x20_c00418{left:496.920000px;}
.x95_c00418{left:498.420000px;}
.xf8_c00418{left:499.500000px;}
.x4e_c00418{left:502.500000px;}
.xa1_c00418{left:504.000000px;}
.x42_c00418{left:507.000000px;}
.xbd_c00418{left:510.420000px;}
.x89_c00418{left:511.920000px;}
.x11b_c00418{left:513.000000px;}
.x21_c00418{left:514.080000px;}
.x5b_c00418{left:515.580000px;}
.x43_c00418{left:517.500000px;}
.x109_c00418{left:520.500000px;}
.x71_c00418{left:522.000000px;}
.x14_c00418{left:525.420000px;}
.xf2_c00418{left:526.920000px;}
.x34_c00418{left:528.000000px;}
.x8a_c00418{left:529.500000px;}
.xa2_c00418{left:532.080000px;}
.x68_c00418{left:534.000000px;}
.x82_c00418{left:535.920000px;}
.xb0_c00418{left:537.000000px;}
.x22_c00418{left:538.500000px;}
.xd1_c00418{left:539.580000px;}
.xca_c00418{left:542.580000px;}
.x7c_c00418{left:546.420000px;}
.x10a_c00418{left:550.500000px;}
.x44_c00418{left:551.580000px;}
.x5c_c00418{left:553.500000px;}
.xf9_c00418{left:556.500000px;}
.xb6_c00418{left:558.000000px;}
.x69_c00418{left:559.920000px;}
.xff_c00418{left:562.500000px;}
.x9_c00418{left:565.500000px;}
.xa3_c00418{left:567.000000px;}
.x111_c00418{left:568.500000px;}
.x15_c00418{left:569.580000px;}
.xec_c00418{left:571.920000px;}
.xc5_c00418{left:574.080000px;}
.x23_c00418{left:575.580000px;}
.x45_c00418{left:578.580000px;}
.xe1_c00418{left:580.500000px;}
.x11c_c00418{left:582.420000px;}
.x35_c00418{left:584.580000px;}
.xdb_c00418{left:589.080000px;}
.xcb_c00418{left:590.580000px;}
.x24_c00418{left:591.645000px;}
.xf3_c00418{left:592.920000px;}
.x36_c00418{left:595.500000px;}
.xb7_c00418{left:597.420000px;}
.x8b_c00418{left:598.920000px;}
.xd6_c00418{left:600.000000px;}
.xe2_c00418{left:601.920000px;}
.x72_c00418{left:603.000000px;}
.x102_c00418{left:604.500000px;}
.xc6_c00418{left:606.000000px;}
.xcc_c00418{left:609.420000px;}
.x5d_c00418{left:612.420000px;}
.x6a_c00418{left:615.000000px;}
.xd7_c00418{left:618.420000px;}
.xc7_c00418{left:619.500000px;}
.x46_c00418{left:621.000000px;}
.xb1_c00418{left:622.500000px;}
.x73_c00418{left:624.000000px;}
.xa_c00418{left:626.580000px;}
.xe3_c00418{left:628.920000px;}
.x9a_c00418{left:630.000000px;}
.x37_c00418{left:631.500000px;}
.x7d_c00418{left:633.420000px;}
.x100_c00418{left:634.500000px;}
.x8c_c00418{left:637.080000px;}
.x10f_c00418{left:641.580000px;}
.x4f_c00418{left:643.920000px;}
.xd2_c00418{left:645.000000px;}
.xe9_c00418{left:646.920000px;}
.xdc_c00418{left:648.420000px;}
.x47_c00418{left:650.580000px;}
.xf4_c00418{left:652.920000px;}
.x117_c00418{left:654.000000px;}
.x8d_c00418{left:655.920000px;}
.x50_c00418{left:657.000000px;}
.x38_c00418{left:659.580000px;}
.x74_c00418{left:661.920000px;}
.xb8_c00418{left:664.500000px;}
.x83_c00418{left:665.580000px;}
.x25_c00418{left:670.500000px;}
.xaa_c00418{left:672.420000px;}
.xc8_c00418{left:675.420000px;}
.xd8_c00418{left:676.500000px;}
.x48_c00418{left:678.000000px;}
.x11d_c00418{left:679.500000px;}
.x8e_c00418{left:680.580000px;}
.xb_c00418{left:682.920000px;}
.xe4_c00418{left:684.000000px;}
.xdd_c00418{left:685.080000px;}
.xfb_c00418{left:688.080000px;}
.x6b_c00418{left:691.500000px;}
.x51_c00418{left:694.080000px;}
.xb2_c00418{left:695.580000px;}
.x16_c00418{left:697.500000px;}
.x75_c00418{left:699.000000px;}
.x1_c00418{left:703.500000px;}
.xbe_c00418{left:704.580000px;}
.x9b_c00418{left:706.500000px;}
.x10c_c00418{left:707.580000px;}
.xab_c00418{left:709.500000px;}
.x101_c00418{left:711.000000px;}
.x112_c00418{left:712.920000px;}
.x84_c00418{left:715.500000px;}
.xb9_c00418{left:716.580000px;}
.x8f_c00418{left:718.500000px;}
.xfc_c00418{left:719.580000px;}
.x9c_c00418{left:723.000000px;}
@media print{
.v0_c00418{vertical-align:0.000000pt;}
.v1_c00418{vertical-align:6.826667pt;}
.v2_c00418{vertical-align:10.666667pt;}
.v3_c00418{vertical-align:16.000000pt;}
.ls1_c00418{letter-spacing:0.000000pt;}
.ls0_c00418{letter-spacing:10.504533pt;}
.ws4_c00418{word-spacing:-15.012693pt;}
.ws6_c00418{word-spacing:-8.473246pt;}
.ws0_c00418{word-spacing:-5.711730pt;}
.ws3_c00418{word-spacing:-5.497444pt;}
.ws2_c00418{word-spacing:-4.575361pt;}
.ws5_c00418{word-spacing:-4.361210pt;}
.ws1_c00418{word-spacing:-2.843733pt;}
.ws7_c00418{word-spacing:0.000000pt;}
._0_c00418{width:6.269516pt;}
.fs7_c00418{font-size:3.040000pt;}
.fs5_c00418{font-size:12.106667pt;}
.fs6_c00418{font-size:16.640000pt;}
.fs1_c00418{font-size:18.133333pt;}
.fs3_c00418{font-size:22.666667pt;}
.fs4_c00418{font-size:25.706667pt;}
.fs2_c00418{font-size:28.746667pt;}
.fs0_c00418{font-size:31.733333pt;}
.fs8_c00418{font-size:34.773333pt;}
.y0_c00418{bottom:0.000000pt;}
.yd0_c00418{bottom:220.360000pt;}
.ycf_c00418{bottom:223.026667pt;}
.yce_c00418{bottom:224.360000pt;}
.yca_c00418{bottom:238.440000pt;}
.yc9_c00418{bottom:239.773333pt;}
.ycc_c00418{bottom:240.560000pt;}
.ycb_c00418{bottom:241.693333pt;}
.ycd_c00418{bottom:242.640000pt;}
.yc7_c00418{bottom:255.026667pt;}
.yc5_c00418{bottom:257.106667pt;}
.yc8_c00418{bottom:257.893333pt;}
.yc6_c00418{bottom:259.026667pt;}
.yc4_c00418{bottom:273.306667pt;}
.yc2_c00418{bottom:273.693333pt;}
.yc1_c00418{bottom:274.440000pt;}
.yc3_c00418{bottom:276.360000pt;}
.ybe_c00418{bottom:290.826667pt;}
.yc0_c00418{bottom:291.773333pt;}
.ybd_c00418{bottom:293.693333pt;}
.ybf_c00418{bottom:294.640000pt;}
.ybb_c00418{bottom:310.440000pt;}
.yb8_c00418{bottom:311.026667pt;}
.yb9_c00418{bottom:311.226667pt;}
.yba_c00418{bottom:311.973333pt;}
.ybc_c00418{bottom:312.360000pt;}
.yb5_c00418{bottom:326.640000pt;}
.yb7_c00418{bottom:327.773333pt;}
.yb6_c00418{bottom:329.693333pt;}
.yb4_c00418{bottom:343.026667pt;}
.yb0_c00418{bottom:344.360000pt;}
.yb1_c00418{bottom:345.106667pt;}
.yb3_c00418{bottom:345.893333pt;}
.yaf_c00418{bottom:347.026667pt;}
.yb2_c00418{bottom:347.226667pt;}
.yad_c00418{bottom:361.693333pt;}
.yae_c00418{bottom:362.066667pt;}
.yaa_c00418{bottom:362.440000pt;}
.yac_c00418{bottom:363.226667pt;}
.ya9_c00418{bottom:364.360000pt;}
.yab_c00418{bottom:364.560000pt;}
.ya6_c00418{bottom:379.773333pt;}
.ya8_c00418{bottom:381.306667pt;}
.ya7_c00418{bottom:381.693333pt;}
.ya3_c00418{bottom:396.733333pt;}
.ya5_c00418{bottom:397.106667pt;}
.ya1_c00418{bottom:398.640000pt;}
.ya2_c00418{bottom:399.026667pt;}
.ya4_c00418{bottom:400.360000pt;}
.y9e_c00418{bottom:415.400000pt;}
.y9d_c00418{bottom:415.773333pt;}
.ya0_c00418{bottom:416.560000pt;}
.y9f_c00418{bottom:417.693333pt;}
.y9c_c00418{bottom:432.933333pt;}
.y99_c00418{bottom:433.106667pt;}
.y9a_c00418{bottom:433.893333pt;}
.y98_c00418{bottom:435.026667pt;}
.y9b_c00418{bottom:435.226667pt;}
.y95_c00418{bottom:448.360000pt;}
.y94_c00418{bottom:450.440000pt;}
.y97_c00418{bottom:451.226667pt;}
.y96_c00418{bottom:451.400000pt;}
.y93_c00418{bottom:452.360000pt;}
.y8f_c00418{bottom:467.400000pt;}
.y91_c00418{bottom:467.773333pt;}
.y92_c00418{bottom:468.560000pt;}
.y8e_c00418{bottom:469.693333pt;}
.y90_c00418{bottom:470.640000pt;}
.y8a_c00418{bottom:485.106667pt;}
.y8d_c00418{bottom:485.893333pt;}
.y8b_c00418{bottom:487.026667pt;}
.y8c_c00418{bottom:487.226667pt;}
.y87_c00418{bottom:504.360000pt;}
.y89_c00418{bottom:504.560000pt;}
.y88_c00418{bottom:505.693333pt;}
.y86_c00418{bottom:519.026667pt;}
.y83_c00418{bottom:521.693333pt;}
.y85_c00418{bottom:521.893333pt;}
.y84_c00418{bottom:523.026667pt;}
.y7f_c00418{bottom:536.360000pt;}
.y80_c00418{bottom:538.440000pt;}
.y82_c00418{bottom:539.973333pt;}
.y81_c00418{bottom:540.360000pt;}
.y7d_c00418{bottom:553.693333pt;}
.y78_c00418{bottom:555.400000pt;}
.y7a_c00418{bottom:555.773333pt;}
.y79_c00418{bottom:556.560000pt;}
.y7c_c00418{bottom:557.306667pt;}
.y7b_c00418{bottom:557.693333pt;}
.y7e_c00418{bottom:558.640000pt;}
.y76_c00418{bottom:571.773333pt;}
.y77_c00418{bottom:573.106667pt;}
.y75_c00418{bottom:575.026667pt;}
.y73_c00418{bottom:591.400000pt;}
.y74_c00418{bottom:591.973333pt;}
.y72_c00418{bottom:592.360000pt;}
.y71_c00418{bottom:592.560000pt;}
.y6b_c00418{bottom:607.773333pt;}
.y6f_c00418{bottom:609.106667pt;}
.y6c_c00418{bottom:609.693333pt;}
.y70_c00418{bottom:609.893333pt;}
.y6e_c00418{bottom:610.640000pt;}
.y6d_c00418{bottom:611.026667pt;}
.y67_c00418{bottom:624.360000pt;}
.y66_c00418{bottom:625.106667pt;}
.y6a_c00418{bottom:626.440000pt;}
.y65_c00418{bottom:627.026667pt;}
.y69_c00418{bottom:627.226667pt;}
.y68_c00418{bottom:628.360000pt;}
.y64_c00418{bottom:641.693333pt;}
.y60_c00418{bottom:644.360000pt;}
.y61_c00418{bottom:644.560000pt;}
.y63_c00418{bottom:645.306667pt;}
.y62_c00418{bottom:645.693333pt;}
.y5d_c00418{bottom:661.106667pt;}
.y5f_c00418{bottom:661.893333pt;}
.y5e_c00418{bottom:662.640000pt;}
.y5c_c00418{bottom:663.026667pt;}
.y5b_c00418{bottom:677.693333pt;}
.y59_c00418{bottom:678.440000pt;}
.y58_c00418{bottom:680.360000pt;}
.y5a_c00418{bottom:680.560000pt;}
.y54_c00418{bottom:695.026667pt;}
.y55_c00418{bottom:695.773333pt;}
.y53_c00418{bottom:697.693333pt;}
.y57_c00418{bottom:697.893333pt;}
.y56_c00418{bottom:698.640000pt;}
.y4f_c00418{bottom:712.360000pt;}
.y51_c00418{bottom:713.106667pt;}
.y50_c00418{bottom:714.066667pt;}
.y4e_c00418{bottom:714.640000pt;}
.y4d_c00418{bottom:715.026667pt;}
.y52_c00418{bottom:715.973333pt;}
.y48_c00418{bottom:730.440000pt;}
.y4c_c00418{bottom:732.360000pt;}
.y4b_c00418{bottom:732.560000pt;}
.y49_c00418{bottom:733.306667pt;}
.y4a_c00418{bottom:733.693333pt;}
.y47_c00418{bottom:747.026667pt;}
.y44_c00418{bottom:749.693333pt;}
.y46_c00418{bottom:750.640000pt;}
.y45_c00418{bottom:751.026667pt;}
.y40_c00418{bottom:766.440000pt;}
.y43_c00418{bottom:767.226667pt;}
.y42_c00418{bottom:768.360000pt;}
.y41_c00418{bottom:768.373333pt;}
.y3f_c00418{bottom:799.026667pt;}
.y3d_c00418{bottom:800.173333pt;}
.y3e_c00418{bottom:800.933333pt;}
.y3c_c00418{bottom:811.400000pt;}
.y36_c00418{bottom:811.600000pt;}
.y37_c00418{bottom:812.360000pt;}
.y3a_c00418{bottom:812.560000pt;}
.y39_c00418{bottom:812.933333pt;}
.y3b_c00418{bottom:813.306667pt;}
.y38_c00418{bottom:814.266667pt;}
.y32_c00418{bottom:823.973333pt;}
.y35_c00418{bottom:824.733333pt;}
.y34_c00418{bottom:826.640000pt;}
.y31_c00418{bottom:826.840000pt;}
.y33_c00418{bottom:827.600000pt;}
.y2e_c00418{bottom:838.066667pt;}
.y2d_c00418{bottom:839.026667pt;}
.y2f_c00418{bottom:839.226667pt;}
.y30_c00418{bottom:839.973333pt;}
.y2c_c00418{bottom:840.933333pt;}
.y26_c00418{bottom:850.640000pt;}
.y2a_c00418{bottom:851.400000pt;}
.y29_c00418{bottom:852.360000pt;}
.y28_c00418{bottom:852.560000pt;}
.y27_c00418{bottom:853.306667pt;}
.y2b_c00418{bottom:853.506667pt;}
.y21_c00418{bottom:864.360000pt;}
.y24_c00418{bottom:864.733333pt;}
.y25_c00418{bottom:865.693333pt;}
.y20_c00418{bottom:866.266667pt;}
.y23_c00418{bottom:866.640000pt;}
.y22_c00418{bottom:866.840000pt;}
.y1b_c00418{bottom:876.733333pt;}
.y1c_c00418{bottom:877.693333pt;}
.y1e_c00418{bottom:878.640000pt;}
.y1d_c00418{bottom:879.026667pt;}
.y1a_c00418{bottom:879.600000pt;}
.y1f_c00418{bottom:880.173333pt;}
.y19_c00418{bottom:890.066667pt;}
.y17_c00418{bottom:891.026667pt;}
.y15_c00418{bottom:891.973333pt;}
.y16_c00418{bottom:892.173333pt;}
.y18_c00418{bottom:892.933333pt;}
.y11_c00418{bottom:903.400000pt;}
.y10_c00418{bottom:903.600000pt;}
.y14_c00418{bottom:904.360000pt;}
.y13_c00418{bottom:905.306667pt;}
.y12_c00418{bottom:906.266667pt;}
.yf_c00418{bottom:916.733333pt;}
.ye_c00418{bottom:919.600000pt;}
.y9_c00418{bottom:929.693333pt;}
.yc_c00418{bottom:930.266667pt;}
.yb_c00418{bottom:931.026667pt;}
.ya_c00418{bottom:931.600000pt;}
.yd_c00418{bottom:931.973333pt;}
.y4_c00418{bottom:942.066667pt;}
.y3_c00418{bottom:942.266667pt;}
.y6_c00418{bottom:943.400000pt;}
.y8_c00418{bottom:943.600000pt;}
.y7_c00418{bottom:944.360000pt;}
.y5_c00418{bottom:945.306667pt;}
.y1_c00418{bottom:975.773333pt;}
.y2_c00418{bottom:976.933333pt;}
.ha_c00418{height:3.739141pt;}
.h7_c00418{height:14.890964pt;}
.h8_c00418{height:20.466875pt;}
.h2_c00418{height:22.303646pt;}
.h4_c00418{height:27.879557pt;}
.h5_c00418{height:31.618698pt;}
.h9_c00418{height:32.970312pt;}
.h6_c00418{height:34.706224pt;}
.h3_c00418{height:35.357839pt;}
.h1_c00418{height:39.031380pt;}
.hb_c00418{height:42.285365pt;}
.hd_c00418{height:42.770521pt;}
.hc_c00418{height:47.618698pt;}
.h0_c00418{height:1186.666667pt;}
.w0_c00418{width:782.666667pt;}
.x0_c00418{left:0.000000pt;}
.xc_c00418{left:134.666667pt;}
.x5e_c00418{left:136.000000pt;}
.xd9_c00418{left:137.333333pt;}
.x103_c00418{left:138.293333pt;}
.x5f_c00418{left:145.333333pt;}
.x18_c00418{left:147.040000pt;}
.x3_c00418{left:148.373333pt;}
.x105_c00418{left:152.000000pt;}
.x110_c00418{left:152.960000pt;}
.x52_c00418{left:156.373333pt;}
.x17_c00418{left:158.666667pt;}
.xba_c00418{left:160.960000pt;}
.x3d_c00418{left:162.293333pt;}
.x19_c00418{left:163.426667pt;}
.x4_c00418{left:164.373333pt;}
.xde_c00418{left:165.333333pt;}
.x85_c00418{left:168.373333pt;}
.xa4_c00418{left:170.293333pt;}
.x7e_c00418{left:172.000000pt;}
.xf5_c00418{left:173.333333pt;}
.x9d_c00418{left:174.666667pt;}
.xea_c00418{left:176.000000pt;}
.x6c_c00418{left:180.000000pt;}
.x10d_c00418{left:180.960000pt;}
.xd3_c00418{left:183.040000pt;}
.x26_c00418{left:184.000000pt;}
.x60_c00418{left:185.333333pt;}
.xfd_c00418{left:187.626667pt;}
.xac_c00418{left:190.666667pt;}
.x106_c00418{left:192.000000pt;}
.x27_c00418{left:193.333333pt;}
.xbf_c00418{left:195.040000pt;}
.x113_c00418{left:196.000000pt;}
.x39_c00418{left:197.333333pt;}
.xbb_c00418{left:198.666667pt;}
.x2d_c00418{left:200.960000pt;}
.xed_c00418{left:202.666667pt;}
.xd_c00418{left:203.626667pt;}
.xdf_c00418{left:204.960000pt;}
.x3a_c00418{left:206.666667pt;}
.x90_c00418{left:208.000000pt;}
.x104_c00418{left:209.706667pt;}
.x61_c00418{left:211.040000pt;}
.x55_c00418{left:213.333333pt;}
.x3e_c00418{left:214.666667pt;}
.x7f_c00418{left:220.373333pt;}
.x53_c00418{left:222.293333pt;}
.x28_c00418{left:224.000000pt;}
.xe5_c00418{left:225.333333pt;}
.x64_c00418{left:226.666667pt;}
.x86_c00418{left:228.373333pt;}
.xc0_c00418{left:229.333333pt;}
.xbc_c00418{left:230.293333pt;}
.x3f_c00418{left:232.000000pt;}
.x5_c00418{left:232.960000pt;}
.xa5_c00418{left:234.293333pt;}
.x49_c00418{left:237.333333pt;}
.xf6_c00418{left:239.626667pt;}
.x107_c00418{left:241.333333pt;}
.xe_c00418{left:243.626667pt;}
.x1a_c00418{left:245.706667pt;}
.x54_c00418{left:246.666667pt;}
.x3b_c00418{left:247.626667pt;}
.x29_c00418{left:249.706667pt;}
.x96_c00418{left:251.626667pt;}
.x6d_c00418{left:252.960000pt;}
.x2e_c00418{left:254.293333pt;}
.xa6_c00418{left:256.373333pt;}
.xee_c00418{left:258.666667pt;}
.x9e_c00418{left:259.626667pt;}
.xd4_c00418{left:263.626667pt;}
.x76_c00418{left:265.333333pt;}
.x114_c00418{left:266.293333pt;}
.xc1_c00418{left:268.000000pt;}
.xb3_c00418{left:269.333333pt;}
.x1b_c00418{left:270.293333pt;}
.x3c_c00418{left:271.626667pt;}
.xc9_c00418{left:273.706667pt;}
.x62_c00418{left:275.040000pt;}
.x65_c00418{left:276.373333pt;}
.xf_c00418{left:281.333333pt;}
.xcd_c00418{left:283.040000pt;}
.xda_c00418{left:284.373333pt;}
.x4a_c00418{left:285.333333pt;}
.x2a_c00418{left:286.666667pt;}
.x56_c00418{left:288.373333pt;}
.xef_c00418{left:289.706667pt;}
.x91_c00418{left:292.000000pt;}
.x2f_c00418{left:293.333333pt;}
.x6e_c00418{left:296.373333pt;}
.x63_c00418{left:298.666667pt;}
.xe6_c00418{left:300.000000pt;}
.x1c_c00418{left:300.960000pt;}
.x9f_c00418{left:303.040000pt;}
.x80_c00418{left:305.706667pt;}
.xb4_c00418{left:307.040000pt;}
.xce_c00418{left:308.000000pt;}
.x92_c00418{left:309.333333pt;}
.x6_c00418{left:310.666667pt;}
.x2b_c00418{left:311.626667pt;}
.x10_c00418{left:315.040000pt;}
.x1d_c00418{left:316.000000pt;}
.xf0_c00418{left:317.706667pt;}
.x4b_c00418{left:320.373333pt;}
.xa7_c00418{left:321.333333pt;}
.xf7_c00418{left:322.293333pt;}
.x10b_c00418{left:323.426667pt;}
.x10e_c00418{left:324.960000pt;}
.x30_c00418{left:328.373333pt;}
.x40_c00418{left:330.666667pt;}
.x57_c00418{left:333.333333pt;}
.xad_c00418{left:334.666667pt;}
.x2c_c00418{left:336.000000pt;}
.x4c_c00418{left:336.960000pt;}
.x11_c00418{left:338.666667pt;}
.x66_c00418{left:340.373333pt;}
.x31_c00418{left:344.000000pt;}
.x77_c00418{left:344.960000pt;}
.xcf_c00418{left:348.000000pt;}
.xc2_c00418{left:349.333333pt;}
.x118_c00418{left:351.040000pt;}
.xa8_c00418{left:352.000000pt;}
.x7_c00418{left:354.293333pt;}
.x93_c00418{left:357.333333pt;}
.x2_c00418{left:360.000000pt;}
.x78_c00418{left:362.666667pt;}
.xae_c00418{left:364.000000pt;}
.x58_c00418{left:365.333333pt;}
.x81_c00418{left:366.666667pt;}
.x108_c00418{left:367.626667pt;}
.x1e_c00418{left:368.573333pt;}
.xe7_c00418{left:369.706667pt;}
.x87_c00418{left:372.000000pt;}
.x97_c00418{left:373.333333pt;}
.x115_c00418{left:374.666667pt;}
.x119_c00418{left:376.000000pt;}
.xa9_c00418{left:376.960000pt;}
.xd5_c00418{left:379.626667pt;}
.x12_c00418{left:381.706667pt;}
.xe0_c00418{left:382.666667pt;}
.xc3_c00418{left:384.000000pt;}
.x79_c00418{left:386.293333pt;}
.x6f_c00418{left:388.373333pt;}
.xfa_c00418{left:389.706667pt;}
.xeb_c00418{left:390.666667pt;}
.x59_c00418{left:392.000000pt;}
.x32_c00418{left:392.960000pt;}
.x116_c00418{left:395.040000pt;}
.xe8_c00418{left:396.373333pt;}
.xa0_c00418{left:397.333333pt;}
.xaf_c00418{left:398.293333pt;}
.x41_c00418{left:400.960000pt;}
.xd0_c00418{left:403.040000pt;}
.x1f_c00418{left:406.293333pt;}
.xfe_c00418{left:408.000000pt;}
.x4d_c00418{left:410.293333pt;}
.xb5_c00418{left:412.000000pt;}
.x5a_c00418{left:413.333333pt;}
.x67_c00418{left:414.666667pt;}
.x98_c00418{left:416.000000pt;}
.xc4_c00418{left:418.666667pt;}
.x7a_c00418{left:421.333333pt;}
.xf1_c00418{left:422.666667pt;}
.x88_c00418{left:424.960000pt;}
.x94_c00418{left:426.293333pt;}
.x70_c00418{left:429.706667pt;}
.x8_c00418{left:431.240000pt;}
.x11a_c00418{left:432.373333pt;}
.x99_c00418{left:435.040000pt;}
.x7b_c00418{left:436.373333pt;}
.x13_c00418{left:437.333333pt;}
.x33_c00418{left:438.666667pt;}
.x20_c00418{left:441.706667pt;}
.x95_c00418{left:443.040000pt;}
.xf8_c00418{left:444.000000pt;}
.x4e_c00418{left:446.666667pt;}
.xa1_c00418{left:448.000000pt;}
.x42_c00418{left:450.666667pt;}
.xbd_c00418{left:453.706667pt;}
.x89_c00418{left:455.040000pt;}
.x11b_c00418{left:456.000000pt;}
.x21_c00418{left:456.960000pt;}
.x5b_c00418{left:458.293333pt;}
.x43_c00418{left:460.000000pt;}
.x109_c00418{left:462.666667pt;}
.x71_c00418{left:464.000000pt;}
.x14_c00418{left:467.040000pt;}
.xf2_c00418{left:468.373333pt;}
.x34_c00418{left:469.333333pt;}
.x8a_c00418{left:470.666667pt;}
.xa2_c00418{left:472.960000pt;}
.x68_c00418{left:474.666667pt;}
.x82_c00418{left:476.373333pt;}
.xb0_c00418{left:477.333333pt;}
.x22_c00418{left:478.666667pt;}
.xd1_c00418{left:479.626667pt;}
.xca_c00418{left:482.293333pt;}
.x7c_c00418{left:485.706667pt;}
.x10a_c00418{left:489.333333pt;}
.x44_c00418{left:490.293333pt;}
.x5c_c00418{left:492.000000pt;}
.xf9_c00418{left:494.666667pt;}
.xb6_c00418{left:496.000000pt;}
.x69_c00418{left:497.706667pt;}
.xff_c00418{left:500.000000pt;}
.x9_c00418{left:502.666667pt;}
.xa3_c00418{left:504.000000pt;}
.x111_c00418{left:505.333333pt;}
.x15_c00418{left:506.293333pt;}
.xec_c00418{left:508.373333pt;}
.xc5_c00418{left:510.293333pt;}
.x23_c00418{left:511.626667pt;}
.x45_c00418{left:514.293333pt;}
.xe1_c00418{left:516.000000pt;}
.x11c_c00418{left:517.706667pt;}
.x35_c00418{left:519.626667pt;}
.xdb_c00418{left:523.626667pt;}
.xcb_c00418{left:524.960000pt;}
.x24_c00418{left:525.906667pt;}
.xf3_c00418{left:527.040000pt;}
.x36_c00418{left:529.333333pt;}
.xb7_c00418{left:531.040000pt;}
.x8b_c00418{left:532.373333pt;}
.xd6_c00418{left:533.333333pt;}
.xe2_c00418{left:535.040000pt;}
.x72_c00418{left:536.000000pt;}
.x102_c00418{left:537.333333pt;}
.xc6_c00418{left:538.666667pt;}
.xcc_c00418{left:541.706667pt;}
.x5d_c00418{left:544.373333pt;}
.x6a_c00418{left:546.666667pt;}
.xd7_c00418{left:549.706667pt;}
.xc7_c00418{left:550.666667pt;}
.x46_c00418{left:552.000000pt;}
.xb1_c00418{left:553.333333pt;}
.x73_c00418{left:554.666667pt;}
.xa_c00418{left:556.960000pt;}
.xe3_c00418{left:559.040000pt;}
.x9a_c00418{left:560.000000pt;}
.x37_c00418{left:561.333333pt;}
.x7d_c00418{left:563.040000pt;}
.x100_c00418{left:564.000000pt;}
.x8c_c00418{left:566.293333pt;}
.x10f_c00418{left:570.293333pt;}
.x4f_c00418{left:572.373333pt;}
.xd2_c00418{left:573.333333pt;}
.xe9_c00418{left:575.040000pt;}
.xdc_c00418{left:576.373333pt;}
.x47_c00418{left:578.293333pt;}
.xf4_c00418{left:580.373333pt;}
.x117_c00418{left:581.333333pt;}
.x8d_c00418{left:583.040000pt;}
.x50_c00418{left:584.000000pt;}
.x38_c00418{left:586.293333pt;}
.x74_c00418{left:588.373333pt;}
.xb8_c00418{left:590.666667pt;}
.x83_c00418{left:591.626667pt;}
.x25_c00418{left:596.000000pt;}
.xaa_c00418{left:597.706667pt;}
.xc8_c00418{left:600.373333pt;}
.xd8_c00418{left:601.333333pt;}
.x48_c00418{left:602.666667pt;}
.x11d_c00418{left:604.000000pt;}
.x8e_c00418{left:604.960000pt;}
.xb_c00418{left:607.040000pt;}
.xe4_c00418{left:608.000000pt;}
.xdd_c00418{left:608.960000pt;}
.xfb_c00418{left:611.626667pt;}
.x6b_c00418{left:614.666667pt;}
.x51_c00418{left:616.960000pt;}
.xb2_c00418{left:618.293333pt;}
.x16_c00418{left:620.000000pt;}
.x75_c00418{left:621.333333pt;}
.x1_c00418{left:625.333333pt;}
.xbe_c00418{left:626.293333pt;}
.x9b_c00418{left:628.000000pt;}
.x10c_c00418{left:628.960000pt;}
.xab_c00418{left:630.666667pt;}
.x101_c00418{left:632.000000pt;}
.x112_c00418{left:633.706667pt;}
.x84_c00418{left:636.000000pt;}
.xb9_c00418{left:636.960000pt;}
.x8f_c00418{left:638.666667pt;}
.xfc_c00418{left:639.626667pt;}
.x9c_c00418{left:642.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_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_608cc674cb9e3565a428543b.woff2')format("woff");}.ff1_c00419{font-family:ff1_c00419;line-height:1.688965;font-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_c00419{transform:matrix(0.315863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315863,0.000000,0.000000,0.250000,0,0);}
.m15_c00419{transform:matrix(0.370594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370594,0.000000,0.000000,0.250000,0,0);}
.m5_c00419{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m1b_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);}
.m2a_c00419{transform:matrix(0.380334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380334,0.000000,0.000000,0.250000,0,0);}
.m27_c00419{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m2b_c00419{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m2_c00419{transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);}
.m8_c00419{transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);}
.m29_c00419{transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);}
.m23_c00419{transform:matrix(0.404564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404564,0.000000,0.000000,0.250000,0,0);}
.md_c00419{transform:matrix(0.410788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410788,0.000000,0.000000,0.250000,0,0);}
.m28_c00419{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m2f_c00419{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.m21_c00419{transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);}
.m14_c00419{transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);}
.m31_c00419{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m12_c00419{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m19_c00419{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m24_c00419{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.m1a_c00419{transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);}
.m26_c00419{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.m17_c00419{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.m11_c00419{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m1f_c00419{transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);}
.m22_c00419{transform:matrix(0.487059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487059,0.000000,0.000000,0.250000,0,0);}
.m30_c00419{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m4_c00419{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m9_c00419{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_c00419{transform:matrix(0.503529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503529,0.000000,0.000000,0.250000,0,0);}
.m25_c00419{transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);}
.mb_c00419{transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);}
.m6_c00419{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.m13_c00419{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);}
.m1e_c00419{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m16_c00419{transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);}
.m3_c00419{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);}
.m10_c00419{transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);}
.m18_c00419{transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);}
.m0_c00419{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m34_c00419{transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);}
.m1c_c00419{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m32_c00419{transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);}
.m35_c00419{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m20_c00419{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.ma_c00419{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);}
.me_c00419{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m2c_c00419{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m2e_c00419{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m1d_c00419{transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);}
.m7_c00419{transform:matrix(0.692308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692308,0.000000,0.000000,0.250000,0,0);}
.m1_c00419{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m33_c00419{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);}
.mc_c00419{transform:matrix(1.011013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.011013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.011013,0.000000,0.000000,0.250000,0,0);}
.v0_c00419{vertical-align:0.000000px;}
.ls0_c00419{letter-spacing:0.000000px;}
.sc__c00419{text-shadow:none;}
.sc0_c00419{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00419{-webkit-text-stroke:0px transparent;}
.sc0_c00419{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00419{word-spacing:-2.058466px;}
.ws1_c00419{word-spacing:0.000000px;}
.fc0_c00419{color:transparent;}
.fs4_c00419{font-size:13.620000px;}
.fs1_c00419{font-size:18.720000px;}
.fs3_c00419{font-size:20.400000px;}
.fs0_c00419{font-size:25.500000px;}
.fs5_c00419{font-size:28.920000px;}
.fs2_c00419{font-size:32.340000px;}
.y0_c00419{bottom:0.000000px;}
.y3_c00419{bottom:252.825000px;}
.y7_c00419{bottom:254.130000px;}
.y6_c00419{bottom:254.970000px;}
.yb_c00419{bottom:266.550000px;}
.y5_c00419{bottom:267.825000px;}
.y4_c00419{bottom:269.970000px;}
.y9_c00419{bottom:270.195000px;}
.y8_c00419{bottom:271.050000px;}
.ya_c00419{bottom:282.405000px;}
.yf_c00419{bottom:282.825000px;}
.ye_c00419{bottom:283.050000px;}
.yc_c00419{bottom:283.905000px;}
.yd_c00419{bottom:284.970000px;}
.y10_c00419{bottom:297.405000px;}
.y14_c00419{bottom:297.630000px;}
.y11_c00419{bottom:298.905000px;}
.y13_c00419{bottom:299.550000px;}
.y12_c00419{bottom:299.970000px;}
.y15_c00419{bottom:312.405000px;}
.y19_c00419{bottom:312.630000px;}
.y18_c00419{bottom:312.825000px;}
.y1f_c00419{bottom:313.050000px;}
.y17_c00419{bottom:313.905000px;}
.y16_c00419{bottom:314.970000px;}
.y20_c00419{bottom:325.470000px;}
.y1e_c00419{bottom:326.325000px;}
.y1c_c00419{bottom:327.405000px;}
.y1a_c00419{bottom:327.825000px;}
.y23_c00419{bottom:328.050000px;}
.y21_c00419{bottom:328.470000px;}
.y1d_c00419{bottom:329.550000px;}
.y1b_c00419{bottom:329.970000px;}
.y22_c00419{bottom:331.050000px;}
.y1_c00419{bottom:1100.970000px;}
.y2_c00419{bottom:1103.130000px;}
.h5_c00419{height:16.752334px;}
.h2_c00419{height:23.025234px;}
.h4_c00419{height:25.091602px;}
.h1_c00419{height:31.364502px;}
.h6_c00419{height:35.571035px;}
.h3_c00419{height:39.777568px;}
.h0_c00419{height:1335.000000px;}
.w0_c00419{width:880.500000px;}
.x0_c00419{left:0.000000px;}
.xd_c00419{left:147.000000px;}
.x1_c00419{left:148.500000px;}
.x21_c00419{left:167.580000px;}
.x35_c00419{left:177.000000px;}
.xe_c00419{left:179.580000px;}
.x34_c00419{left:187.080000px;}
.x36_c00419{left:202.080000px;}
.x14_c00419{left:208.500000px;}
.x22_c00419{left:234.420000px;}
.x37_c00419{left:241.500000px;}
.xf_c00419{left:249.000000px;}
.x38_c00419{left:270.420000px;}
.x15_c00419{left:274.500000px;}
.x39_c00419{left:286.500000px;}
.x23_c00419{left:289.500000px;}
.x9_c00419{left:319.080000px;}
.x12_c00419{left:333.000000px;}
.x27_c00419{left:335.355000px;}
.x7_c00419{left:346.080000px;}
.x3a_c00419{left:351.000000px;}
.x1b_c00419{left:353.355000px;}
.x1c_c00419{left:367.500000px;}
.x28_c00419{left:370.920000px;}
.x1d_c00419{left:387.000000px;}
.x3b_c00419{left:388.500000px;}
.x8_c00419{left:390.420000px;}
.x13_c00419{left:391.920000px;}
.x2_c00419{left:405.000000px;}
.x29_c00419{left:409.080000px;}
.x2a_c00419{left:423.000000px;}
.x3c_c00419{left:424.920000px;}
.x1e_c00419{left:427.080000px;}
.x2c_c00419{left:441.000000px;}
.x1f_c00419{left:442.080000px;}
.x3_c00419{left:467.580000px;}
.xa_c00419{left:475.080000px;}
.x16_c00419{left:481.500000px;}
.x2b_c00419{left:495.420000px;}
.x2d_c00419{left:504.000000px;}
.x25_c00419{left:512.580000px;}
.x20_c00419{left:514.500000px;}
.x19_c00419{left:532.500000px;}
.x2e_c00419{left:544.920000px;}
.xb_c00419{left:547.080000px;}
.x26_c00419{left:580.080000px;}
.x10_c00419{left:585.000000px;}
.x4_c00419{left:591.000000px;}
.x1a_c00419{left:600.420000px;}
.x2f_c00419{left:603.855000px;}
.x30_c00419{left:618.000000px;}
.x31_c00419{left:637.500000px;}
.x11_c00419{left:643.500000px;}
.x5_c00419{left:652.920000px;}
.x17_c00419{left:655.500000px;}
.xc_c00419{left:660.000000px;}
.x6_c00419{left:669.000000px;}
.x24_c00419{left:673.500000px;}
.x32_c00419{left:677.580000px;}
.x33_c00419{left:691.500000px;}
.x18_c00419{left:718.920000px;}
@media print{
.v0_c00419{vertical-align:0.000000pt;}
.ls0_c00419{letter-spacing:0.000000pt;}
.ws0_c00419{word-spacing:-1.829747pt;}
.ws1_c00419{word-spacing:0.000000pt;}
.fs4_c00419{font-size:12.106667pt;}
.fs1_c00419{font-size:16.640000pt;}
.fs3_c00419{font-size:18.133333pt;}
.fs0_c00419{font-size:22.666667pt;}
.fs5_c00419{font-size:25.706667pt;}
.fs2_c00419{font-size:28.746667pt;}
.y0_c00419{bottom:0.000000pt;}
.y3_c00419{bottom:224.733333pt;}
.y7_c00419{bottom:225.893333pt;}
.y6_c00419{bottom:226.640000pt;}
.yb_c00419{bottom:236.933333pt;}
.y5_c00419{bottom:238.066667pt;}
.y4_c00419{bottom:239.973333pt;}
.y9_c00419{bottom:240.173333pt;}
.y8_c00419{bottom:240.933333pt;}
.ya_c00419{bottom:251.026667pt;}
.yf_c00419{bottom:251.400000pt;}
.ye_c00419{bottom:251.600000pt;}
.yc_c00419{bottom:252.360000pt;}
.yd_c00419{bottom:253.306667pt;}
.y10_c00419{bottom:264.360000pt;}
.y14_c00419{bottom:264.560000pt;}
.y11_c00419{bottom:265.693333pt;}
.y13_c00419{bottom:266.266667pt;}
.y12_c00419{bottom:266.640000pt;}
.y15_c00419{bottom:277.693333pt;}
.y19_c00419{bottom:277.893333pt;}
.y18_c00419{bottom:278.066667pt;}
.y1f_c00419{bottom:278.266667pt;}
.y17_c00419{bottom:279.026667pt;}
.y16_c00419{bottom:279.973333pt;}
.y20_c00419{bottom:289.306667pt;}
.y1e_c00419{bottom:290.066667pt;}
.y1c_c00419{bottom:291.026667pt;}
.y1a_c00419{bottom:291.400000pt;}
.y23_c00419{bottom:291.600000pt;}
.y21_c00419{bottom:291.973333pt;}
.y1d_c00419{bottom:292.933333pt;}
.y1b_c00419{bottom:293.306667pt;}
.y22_c00419{bottom:294.266667pt;}
.y1_c00419{bottom:978.640000pt;}
.y2_c00419{bottom:980.560000pt;}
.h5_c00419{height:14.890964pt;}
.h2_c00419{height:20.466875pt;}
.h4_c00419{height:22.303646pt;}
.h1_c00419{height:27.879557pt;}
.h6_c00419{height:31.618698pt;}
.h3_c00419{height:35.357839pt;}
.h0_c00419{height:1186.666667pt;}
.w0_c00419{width:782.666667pt;}
.x0_c00419{left:0.000000pt;}
.xd_c00419{left:130.666667pt;}
.x1_c00419{left:132.000000pt;}
.x21_c00419{left:148.960000pt;}
.x35_c00419{left:157.333333pt;}
.xe_c00419{left:159.626667pt;}
.x34_c00419{left:166.293333pt;}
.x36_c00419{left:179.626667pt;}
.x14_c00419{left:185.333333pt;}
.x22_c00419{left:208.373333pt;}
.x37_c00419{left:214.666667pt;}
.xf_c00419{left:221.333333pt;}
.x38_c00419{left:240.373333pt;}
.x15_c00419{left:244.000000pt;}
.x39_c00419{left:254.666667pt;}
.x23_c00419{left:257.333333pt;}
.x9_c00419{left:283.626667pt;}
.x12_c00419{left:296.000000pt;}
.x27_c00419{left:298.093333pt;}
.x7_c00419{left:307.626667pt;}
.x3a_c00419{left:312.000000pt;}
.x1b_c00419{left:314.093333pt;}
.x1c_c00419{left:326.666667pt;}
.x28_c00419{left:329.706667pt;}
.x1d_c00419{left:344.000000pt;}
.x3b_c00419{left:345.333333pt;}
.x8_c00419{left:347.040000pt;}
.x13_c00419{left:348.373333pt;}
.x2_c00419{left:360.000000pt;}
.x29_c00419{left:363.626667pt;}
.x2a_c00419{left:376.000000pt;}
.x3c_c00419{left:377.706667pt;}
.x1e_c00419{left:379.626667pt;}
.x2c_c00419{left:392.000000pt;}
.x1f_c00419{left:392.960000pt;}
.x3_c00419{left:415.626667pt;}
.xa_c00419{left:422.293333pt;}
.x16_c00419{left:428.000000pt;}
.x2b_c00419{left:440.373333pt;}
.x2d_c00419{left:448.000000pt;}
.x25_c00419{left:455.626667pt;}
.x20_c00419{left:457.333333pt;}
.x19_c00419{left:473.333333pt;}
.x2e_c00419{left:484.373333pt;}
.xb_c00419{left:486.293333pt;}
.x26_c00419{left:515.626667pt;}
.x10_c00419{left:520.000000pt;}
.x4_c00419{left:525.333333pt;}
.x1a_c00419{left:533.706667pt;}
.x2f_c00419{left:536.760000pt;}
.x30_c00419{left:549.333333pt;}
.x31_c00419{left:566.666667pt;}
.x11_c00419{left:572.000000pt;}
.x5_c00419{left:580.373333pt;}
.x17_c00419{left:582.666667pt;}
.xc_c00419{left:586.666667pt;}
.x6_c00419{left:594.666667pt;}
.x24_c00419{left:598.666667pt;}
.x32_c00419{left:602.293333pt;}
.x33_c00419{left:614.666667pt;}
.x18_c00419{left:639.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_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_bb01f8f86c7ff73b27a3b052.woff2')format("woff");}.ff1_c00420{font-family:ff1_c00420;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mbd_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);}
.m8f_c00420{transform:matrix(0.305066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305066,0.000000,0.000000,0.250000,0,0);}
.m4a_c00420{transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);}
.m25_c00420{transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);}
.m97_c00420{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.mc3_c00420{transform:matrix(0.346324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346324,0.000000,0.000000,0.250000,0,0);}
.m9a_c00420{transform:matrix(0.346955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346955,0.000000,0.000000,0.250000,0,0);}
.m5a_c00420{transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);}
.m4e_c00420{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m1c_c00420{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m5d_c00420{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m6a_c00420{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m4d_c00420{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m7d_c00420{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m40_c00420{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m65_c00420{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m23_c00420{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m66_c00420{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m98_c00420{transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);}
.m4c_c00420{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m87_c00420{transform:matrix(0.389868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389868,0.000000,0.000000,0.250000,0,0);}
.m4_c00420{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m27_c00420{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m5c_c00420{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m3b_c00420{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.mf_c00420{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m8c_c00420{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.mc_c00420{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m2a_c00420{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m47_c00420{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m11_c00420{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.maa_c00420{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.m62_c00420{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m85_c00420{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m2f_c00420{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m46_c00420{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m9_c00420{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m88_c00420{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m8_c00420{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m6c_c00420{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m43_c00420{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m7a_c00420{transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);}
.m51_c00420{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m7b_c00420{transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);}
.m79_c00420{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m69_c00420{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m94_c00420{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);}
.m8d_c00420{transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);}
.m42_c00420{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.m5_c00420{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m59_c00420{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m73_c00420{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m1_c00420{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m12_c00420{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m90_c00420{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mc1_c00420{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.mb7_c00420{transform:matrix(0.461538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461538,0.000000,0.000000,0.250000,0,0);}
.ma3_c00420{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m16_c00420{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.ma6_c00420{transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);}
.m71_c00420{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.mb8_c00420{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.m86_c00420{transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);}
.m15_c00420{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m81_c00420{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.m26_c00420{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m3_c00420{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mb_c00420{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.mac_c00420{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.mb2_c00420{transform:matrix(0.485577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485577,0.000000,0.000000,0.250000,0,0);}
.mb4_c00420{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.me_c00420{transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);}
.m53_c00420{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m2_c00420{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m9e_c00420{transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);}
.mc2_c00420{transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);}
.m24_c00420{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_c00420{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m3e_c00420{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m36_c00420{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.mbf_c00420{transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);}
.m2b_c00420{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m28_c00420{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m60_c00420{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.mb9_c00420{transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);}
.ma1_c00420{transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);}
.m7_c00420{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m95_c00420{transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);}
.m31_c00420{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m2c_c00420{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m67_c00420{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m52_c00420{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m1e_c00420{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m61_c00420{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m7c_c00420{transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);}
.mbc_c00420{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.md_c00420{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mb0_c00420{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m84_c00420{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.m83_c00420{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m22_c00420{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m33_c00420{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m19_c00420{transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);}
.m54_c00420{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m37_c00420{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m4f_c00420{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m63_c00420{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m45_c00420{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m1d_c00420{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m48_c00420{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m13_c00420{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m30_c00420{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m3d_c00420{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_c00420{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m5e_c00420{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m6_c00420{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m9f_c00420{transform:matrix(0.556167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556167,0.000000,0.000000,0.250000,0,0);}
.m41_c00420{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m57_c00420{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m1b_c00420{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m9d_c00420{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m74_c00420{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);}
.m56_c00420{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mb5_c00420{transform:matrix(0.571314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571314,0.000000,0.000000,0.250000,0,0);}
.m6e_c00420{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m49_c00420{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m3f_c00420{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m92_c00420{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.m1f_c00420{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.mad_c00420{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m44_c00420{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m75_c00420{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m6b_c00420{transform:matrix(0.589212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589212,0.000000,0.000000,0.250000,0,0);}
.m70_c00420{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m50_c00420{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m5f_c00420{transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);}
.m78_c00420{transform:matrix(0.594853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594853,0.000000,0.000000,0.250000,0,0);}
.m5b_c00420{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m10_c00420{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_c00420{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m6d_c00420{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m8a_c00420{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m17_c00420{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m55_c00420{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m89_c00420{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m35_c00420{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m77_c00420{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m2d_c00420{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.mae_c00420{transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);}
.mab_c00420{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m1a_c00420{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_c00420{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m64_c00420{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m9b_c00420{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m80_c00420{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.mb6_c00420{transform:matrix(0.657828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657828,0.000000,0.000000,0.250000,0,0);}
.m7f_c00420{transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);}
.m6f_c00420{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m21_c00420{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m93_c00420{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m82_c00420{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m20_c00420{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m76_c00420{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m8b_c00420{transform:matrix(0.680617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680617,0.000000,0.000000,0.250000,0,0);}
.m8e_c00420{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mbe_c00420{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.ma_c00420{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.ma5_c00420{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.m0_c00420{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.ma8_c00420{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.mbb_c00420{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m29_c00420{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m7e_c00420{transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);}
.m68_c00420{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.ma0_c00420{transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);}
.mb3_c00420{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.ma4_c00420{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.maf_c00420{transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);}
.mc0_c00420{transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);}
.m39_c00420{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m2e_c00420{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m34_c00420{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mba_c00420{transform:matrix(0.772727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772727,0.000000,0.000000,0.250000,0,0);}
.m38_c00420{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m4b_c00420{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.mb1_c00420{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m58_c00420{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.ma9_c00420{transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);}
.m3c_c00420{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m99_c00420{transform:matrix(0.807269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807269,0.000000,0.000000,0.250000,0,0);}
.m9c_c00420{transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);}
.m3a_c00420{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.ma2_c00420{transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);}
.m91_c00420{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mc4_c00420{transform:matrix(1.002525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.002525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.002525,0.000000,0.000000,0.250000,0,0);}
.m96_c00420{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m32_c00420{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.v0_c00420{vertical-align:0.000000px;}
.v1_c00420{vertical-align:6.000000px;}
.ls1_c00420{letter-spacing:0.000000px;}
.ls0_c00420{letter-spacing:46.994588px;}
.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;}
}
.ws1_c00420{word-spacing:-7.189112px;}
.ws0_c00420{word-spacing:-3.584672px;}
.ws1c_c00420{word-spacing:0.000000px;}
.wsf_c00420{word-spacing:8.921552px;}
.wsa_c00420{word-spacing:10.017706px;}
.wse_c00420{word-spacing:10.565783px;}
.ws1a_c00420{word-spacing:12.510814px;}
.ws4_c00420{word-spacing:12.973687px;}
.ws10_c00420{word-spacing:13.611988px;}
.ws15_c00420{word-spacing:15.107856px;}
.ws13_c00420{word-spacing:17.262919px;}
.ws17_c00420{word-spacing:18.138913px;}
.ws14_c00420{word-spacing:20.534773px;}
.ws16_c00420{word-spacing:22.162509px;}
.ws1b_c00420{word-spacing:23.192194px;}
.ws5_c00420{word-spacing:24.263327px;}
.ws12_c00420{word-spacing:24.638400px;}
.ws11_c00420{word-spacing:30.234255px;}
.ws18_c00420{word-spacing:30.607622px;}
.ws9_c00420{word-spacing:31.119820px;}
.ws3_c00420{word-spacing:33.420012px;}
.ws19_c00420{word-spacing:33.467416px;}
.ws6_c00420{word-spacing:34.675123px;}
.ws8_c00420{word-spacing:36.857815px;}
.ws2_c00420{word-spacing:36.994816px;}
.wsd_c00420{word-spacing:40.994598px;}
.wsb_c00420{word-spacing:50.536594px;}
.ws7_c00420{word-spacing:53.931927px;}
.wsc_c00420{word-spacing:64.250880px;}
._2_c00420{width:23.377407px;}
._6_c00420{width:27.372062px;}
._4_c00420{width:31.349893px;}
._8_c00420{width:33.094989px;}
._5_c00420{width:37.384574px;}
._7_c00420{width:41.540102px;}
._1_c00420{width:44.948896px;}
._0_c00420{width:48.523699px;}
._3_c00420{width:68.137135px;}
.fc0_c00420{color:transparent;}
.fs5_c00420{font-size:3.420000px;}
.fs8_c00420{font-size:11.880000px;}
.fs7_c00420{font-size:13.620000px;}
.fs0_c00420{font-size:18.720000px;}
.fs6_c00420{font-size:20.400000px;}
.fs3_c00420{font-size:25.500000px;}
.fs1_c00420{font-size:28.920000px;}
.fs4_c00420{font-size:32.340000px;}
.fs2_c00420{font-size:35.700000px;}
.y0_c00420{bottom:0.000000px;}
.y3d_c00420{bottom:254.745000px;}
.y42_c00420{bottom:254.970000px;}
.y41_c00420{bottom:256.050000px;}
.y3e_c00420{bottom:256.905000px;}
.y43_c00420{bottom:257.325000px;}
.y3f_c00420{bottom:257.970000px;}
.y40_c00420{bottom:258.405000px;}
.y39_c00420{bottom:274.245000px;}
.y3a_c00420{bottom:275.745000px;}
.y38_c00420{bottom:276.405000px;}
.y3c_c00420{bottom:276.630000px;}
.y37_c00420{bottom:277.470000px;}
.y3b_c00420{bottom:277.905000px;}
.y36_c00420{bottom:292.905000px;}
.y33_c00420{bottom:295.245000px;}
.y35_c00420{bottom:296.970000px;}
.y34_c00420{bottom:297.405000px;}
.y32_c00420{bottom:314.745000px;}
.y30_c00420{bottom:316.470000px;}
.y2f_c00420{bottom:316.905000px;}
.y31_c00420{bottom:317.130000px;}
.y2a_c00420{bottom:334.245000px;}
.y2d_c00420{bottom:335.325000px;}
.y2b_c00420{bottom:336.405000px;}
.y29_c00420{bottom:336.630000px;}
.y2c_c00420{bottom:337.470000px;}
.y2e_c00420{bottom:337.905000px;}
.y26_c00420{bottom:353.745000px;}
.y28_c00420{bottom:355.470000px;}
.y25_c00420{bottom:355.905000px;}
.y27_c00420{bottom:356.970000px;}
.y22_c00420{bottom:373.245000px;}
.y24_c00420{bottom:374.745000px;}
.y20_c00420{bottom:375.405000px;}
.y21_c00420{bottom:375.630000px;}
.y23_c00420{bottom:376.470000px;}
.y1e_c00420{bottom:394.245000px;}
.y1b_c00420{bottom:394.905000px;}
.y1f_c00420{bottom:395.130000px;}
.y1d_c00420{bottom:396.405000px;}
.y1c_c00420{bottom:396.420000px;}
.yac_c00420{bottom:439.695000px;}
.yaa_c00420{bottom:440.550000px;}
.yad_c00420{bottom:443.130000px;}
.yab_c00420{bottom:443.775000px;}
.yae_c00420{bottom:444.195000px;}
.yaf_c00420{bottom:444.630000px;}
.ya9_c00420{bottom:456.630000px;}
.ya8_c00420{bottom:457.695000px;}
.ya4_c00420{bottom:470.130000px;}
.ya5_c00420{bottom:471.195000px;}
.ya6_c00420{bottom:471.630000px;}
.ya7_c00420{bottom:472.695000px;}
.ya0_c00420{bottom:484.275000px;}
.ya2_c00420{bottom:485.130000px;}
.ya3_c00420{bottom:486.195000px;}
.ya1_c00420{bottom:486.420000px;}
.y9f_c00420{bottom:490.695000px;}
.y9e_c00420{bottom:498.630000px;}
.y9d_c00420{bottom:499.695000px;}
.y9c_c00420{bottom:512.130000px;}
.y9b_c00420{bottom:512.775000px;}
.y9a_c00420{bottom:513.195000px;}
.y98_c00420{bottom:526.695000px;}
.y99_c00420{bottom:527.130000px;}
.y97_c00420{bottom:540.195000px;}
.y94_c00420{bottom:540.630000px;}
.y96_c00420{bottom:541.275000px;}
.y95_c00420{bottom:541.695000px;}
.y92_c00420{bottom:554.130000px;}
.y93_c00420{bottom:555.195000px;}
.y8f_c00420{bottom:567.630000px;}
.y8e_c00420{bottom:568.275000px;}
.y90_c00420{bottom:568.695000px;}
.y91_c00420{bottom:570.195000px;}
.y8d_c00420{bottom:582.195000px;}
.y8c_c00420{bottom:582.630000px;}
.y88_c00420{bottom:594.630000px;}
.y89_c00420{bottom:595.695000px;}
.y8a_c00420{bottom:596.130000px;}
.y8b_c00420{bottom:597.195000px;}
.y86_c00420{bottom:609.630000px;}
.y87_c00420{bottom:610.695000px;}
.y84_c00420{bottom:623.130000px;}
.y85_c00420{bottom:623.775000px;}
.y82_c00420{bottom:638.130000px;}
.y83_c00420{bottom:639.195000px;}
.y81_c00420{bottom:651.630000px;}
.y80_c00420{bottom:652.695000px;}
.y7d_c00420{bottom:665.130000px;}
.y7c_c00420{bottom:666.195000px;}
.y7e_c00420{bottom:666.420000px;}
.y7f_c00420{bottom:667.920000px;}
.y7b_c00420{bottom:678.630000px;}
.y76_c00420{bottom:692.130000px;}
.y77_c00420{bottom:693.195000px;}
.y78_c00420{bottom:693.420000px;}
.y79_c00420{bottom:693.630000px;}
.y7a_c00420{bottom:694.920000px;}
.y71_c00420{bottom:705.630000px;}
.y70_c00420{bottom:706.695000px;}
.y73_c00420{bottom:707.130000px;}
.y74_c00420{bottom:708.195000px;}
.y72_c00420{bottom:708.420000px;}
.y75_c00420{bottom:709.920000px;}
.y6c_c00420{bottom:732.195000px;}
.y6b_c00420{bottom:734.130000px;}
.y6e_c00420{bottom:735.195000px;}
.y6d_c00420{bottom:735.420000px;}
.y6f_c00420{bottom:736.920000px;}
.y67_c00420{bottom:747.195000px;}
.y68_c00420{bottom:747.630000px;}
.y69_c00420{bottom:748.695000px;}
.y6a_c00420{bottom:750.420000px;}
.y63_c00420{bottom:761.130000px;}
.y62_c00420{bottom:762.195000px;}
.y64_c00420{bottom:762.630000px;}
.y66_c00420{bottom:763.695000px;}
.y65_c00420{bottom:763.920000px;}
.y5e_c00420{bottom:775.695000px;}
.y5f_c00420{bottom:775.920000px;}
.y60_c00420{bottom:776.130000px;}
.y61_c00420{bottom:777.420000px;}
.y5a_c00420{bottom:788.130000px;}
.y59_c00420{bottom:789.195000px;}
.y5d_c00420{bottom:789.630000px;}
.y5b_c00420{bottom:790.695000px;}
.y5c_c00420{bottom:790.920000px;}
.y58_c00420{bottom:801.195000px;}
.y54_c00420{bottom:806.775000px;}
.y53_c00420{bottom:816.195000px;}
.y55_c00420{bottom:817.695000px;}
.y56_c00420{bottom:818.130000px;}
.y57_c00420{bottom:819.195000px;}
.y4f_c00420{bottom:828.630000px;}
.y50_c00420{bottom:831.195000px;}
.y51_c00420{bottom:831.630000px;}
.y52_c00420{bottom:832.695000px;}
.y4d_c00420{bottom:858.195000px;}
.y4e_c00420{bottom:859.695000px;}
.y4a_c00420{bottom:880.905000px;}
.y4c_c00420{bottom:882.405000px;}
.y49_c00420{bottom:883.470000px;}
.y4b_c00420{bottom:884.550000px;}
.y48_c00420{bottom:895.905000px;}
.y47_c00420{bottom:898.050000px;}
.y46_c00420{bottom:898.470000px;}
.y45_c00420{bottom:921.405000px;}
.y44_c00420{bottom:923.550000px;}
.y1a_c00420{bottom:966.405000px;}
.y14_c00420{bottom:981.405000px;}
.y19_c00420{bottom:982.470000px;}
.y15_c00420{bottom:983.745000px;}
.y17_c00420{bottom:984.630000px;}
.y16_c00420{bottom:985.905000px;}
.y18_c00420{bottom:986.970000px;}
.y10_c00420{bottom:1003.245000px;}
.y13_c00420{bottom:1004.130000px;}
.y11_c00420{bottom:1004.970000px;}
.yf_c00420{bottom:1005.405000px;}
.y12_c00420{bottom:1006.470000px;}
.ye_c00420{bottom:1021.470000px;}
.yd_c00420{bottom:1022.745000px;}
.yc_c00420{bottom:1024.470000px;}
.yb_c00420{bottom:1024.905000px;}
.y6_c00420{bottom:1041.405000px;}
.y7_c00420{bottom:1042.245000px;}
.ya_c00420{bottom:1043.325000px;}
.y9_c00420{bottom:1044.405000px;}
.y8_c00420{bottom:1045.470000px;}
.y5_c00420{bottom:1061.745000px;}
.y3_c00420{bottom:1063.905000px;}
.y4_c00420{bottom:1065.405000px;}
.y2_c00420{bottom:1099.905000px;}
.y1_c00420{bottom:1103.130000px;}
.h6_c00420{height:4.206533px;}
.h9_c00420{height:14.612168px;}
.h8_c00420{height:16.752334px;}
.ha_c00420{height:22.752334px;}
.h1_c00420{height:23.025234px;}
.h7_c00420{height:25.091602px;}
.hb_c00420{height:29.025234px;}
.h4_c00420{height:31.364502px;}
.h2_c00420{height:35.571035px;}
.h5_c00420{height:39.777568px;}
.h3_c00420{height:43.910303px;}
.h0_c00420{height:1335.000000px;}
.w0_c00420{width:880.500000px;}
.x0_c00420{left:0.000000px;}
.x3_c00420{left:151.920000px;}
.x43_c00420{left:155.580000px;}
.x19_c00420{left:168.420000px;}
.x37_c00420{left:171.645000px;}
.x36_c00420{left:183.420000px;}
.x44_c00420{left:186.000000px;}
.x20_c00420{left:189.000000px;}
.x4_c00420{left:190.500000px;}
.x56_c00420{left:193.080000px;}
.x8c_c00420{left:196.500000px;}
.xa0_c00420{left:198.000000px;}
.x2c_c00420{left:199.500000px;}
.x84_c00420{left:201.000000px;}
.x1a_c00420{left:202.500000px;}
.x6e_c00420{left:207.420000px;}
.x5_c00420{left:208.500000px;}
.xaa_c00420{left:211.080000px;}
.x94_c00420{left:213.420000px;}
.x4e_c00420{left:217.080000px;}
.x90_c00420{left:218.580000px;}
.x96_c00420{left:220.500000px;}
.xf_c00420{left:222.000000px;}
.xab_c00420{left:224.580000px;}
.xae_c00420{left:229.500000px;}
.x1b_c00420{left:231.000000px;}
.x21_c00420{left:234.000000px;}
.x45_c00420{left:235.500000px;}
.x97_c00420{left:236.580000px;}
.xa3_c00420{left:238.080000px;}
.x57_c00420{left:240.000000px;}
.x38_c00420{left:241.500000px;}
.xaf_c00420{left:243.000000px;}
.x64_c00420{left:244.080000px;}
.x2d_c00420{left:246.420000px;}
.x22_c00420{left:256.080000px;}
.x39_c00420{left:261.000000px;}
.x6f_c00420{left:262.080000px;}
.xa4_c00420{left:270.000000px;}
.x6_c00420{left:271.920000px;}
.x1c_c00420{left:273.000000px;}
.x58_c00420{left:276.420000px;}
.x7a_c00420{left:277.500000px;}
.x65_c00420{left:284.580000px;}
.x88_c00420{left:289.920000px;}
.x3a_c00420{left:293.580000px;}
.x70_c00420{left:297.000000px;}
.x91_c00420{left:300.000000px;}
.x59_c00420{left:303.000000px;}
.x10_c00420{left:304.500000px;}
.xa5_c00420{left:306.000000px;}
.xb3_c00420{left:307.920000px;}
.x7b_c00420{left:309.000000px;}
.x98_c00420{left:310.500000px;}
.x2e_c00420{left:312.000000px;}
.x95_c00420{left:313.500000px;}
.x9f_c00420{left:315.420000px;}
.x23_c00420{left:317.580000px;}
.x1d_c00420{left:328.920000px;}
.x85_c00420{left:331.500000px;}
.x92_c00420{left:333.000000px;}
.x11_c00420{left:337.080000px;}
.x2f_c00420{left:339.420000px;}
.x8d_c00420{left:340.500000px;}
.x66_c00420{left:342.000000px;}
.xc5_c00420{left:343.500000px;}
.x9a_c00420{left:345.000000px;}
.x7_c00420{left:346.080000px;}
.xc7_c00420{left:348.000000px;}
.x24_c00420{left:349.500000px;}
.x71_c00420{left:354.000000px;}
.x1e_c00420{left:355.080000px;}
.x5a_c00420{left:357.000000px;}
.x67_c00420{left:363.000000px;}
.x3b_c00420{left:366.000000px;}
.x93_c00420{left:367.500000px;}
.x8e_c00420{left:372.000000px;}
.x7c_c00420{left:373.080000px;}
.xb5_c00420{left:375.420000px;}
.xba_c00420{left:378.000000px;}
.x8_c00420{left:379.500000px;}
.x46_c00420{left:381.420000px;}
.x6c_c00420{left:382.920000px;}
.x25_c00420{left:388.500000px;}
.x7d_c00420{left:392.580000px;}
.x5b_c00420{left:396.000000px;}
.xbe_c00420{left:398.580000px;}
.x4f_c00420{left:401.145000px;}
.x1_c00420{left:406.500000px;}
.x12_c00420{left:408.000000px;}
.xa6_c00420{left:409.500000px;}
.x30_c00420{left:410.580000px;}
.x82_c00420{left:412.500000px;}
.xb1_c00420{left:414.000000px;}
.xbb_c00420{left:415.500000px;}
.x9b_c00420{left:418.500000px;}
.x72_c00420{left:423.000000px;}
.x1f_c00420{left:424.500000px;}
.x47_c00420{left:425.580000px;}
.x5c_c00420{left:429.000000px;}
.x9_c00420{left:430.500000px;}
.x31_c00420{left:433.500000px;}
.xbf_c00420{left:434.580000px;}
.x89_c00420{left:436.080000px;}
.x3c_c00420{left:439.500000px;}
.x86_c00420{left:445.920000px;}
.xb4_c00420{left:447.000000px;}
.x73_c00420{left:448.920000px;}
.xb9_c00420{left:450.000000px;}
.xa1_c00420{left:453.000000px;}
.x83_c00420{left:455.580000px;}
.x7e_c00420{left:457.500000px;}
.x5d_c00420{left:466.500000px;}
.x68_c00420{left:469.080000px;}
.x74_c00420{left:473.355000px;}
.x13_c00420{left:475.500000px;}
.x3d_c00420{left:478.920000px;}
.x32_c00420{left:480.420000px;}
.x48_c00420{left:481.500000px;}
.xb6_c00420{left:483.000000px;}
.x6d_c00420{left:484.080000px;}
.x5e_c00420{left:486.420000px;}
.xc8_c00420{left:487.500000px;}
.x9c_c00420{left:490.500000px;}
.x26_c00420{left:491.580000px;}
.x14_c00420{left:493.500000px;}
.x50_c00420{left:495.000000px;}
.x7f_c00420{left:496.920000px;}
.x8a_c00420{left:499.500000px;}
.xc0_c00420{left:506.580000px;}
.x27_c00420{left:513.420000px;}
.x5f_c00420{left:514.500000px;}
.xa_c00420{left:516.420000px;}
.x49_c00420{left:517.920000px;}
.xac_c00420{left:519.420000px;}
.x99_c00420{left:522.000000px;}
.xbc_c00420{left:523.500000px;}
.x3e_c00420{left:525.000000px;}
.x9d_c00420{left:526.500000px;}
.x8b_c00420{left:532.500000px;}
.x28_c00420{left:533.580000px;}
.x15_c00420{left:538.080000px;}
.x75_c00420{left:539.775000px;}
.x3f_c00420{left:543.420000px;}
.xc1_c00420{left:546.000000px;}
.x33_c00420{left:550.500000px;}
.x8f_c00420{left:552.000000px;}
.xa7_c00420{left:553.500000px;}
.xb7_c00420{left:555.000000px;}
.xb2_c00420{left:558.000000px;}
.x4a_c00420{left:561.000000px;}
.x60_c00420{left:570.000000px;}
.x51_c00420{left:571.500000px;}
.xb_c00420{left:576.000000px;}
.x76_c00420{left:579.000000px;}
.x4b_c00420{left:580.500000px;}
.x16_c00420{left:583.080000px;}
.x80_c00420{left:586.500000px;}
.xa8_c00420{left:589.500000px;}
.xb8_c00420{left:591.000000px;}
.xc_c00420{left:594.000000px;}
.x40_c00420{left:595.500000px;}
.x34_c00420{left:597.000000px;}
.x77_c00420{left:600.420000px;}
.x29_c00420{left:604.500000px;}
.x4c_c00420{left:607.080000px;}
.x52_c00420{left:609.000000px;}
.x41_c00420{left:613.920000px;}
.x17_c00420{left:615.000000px;}
.x61_c00420{left:616.500000px;}
.xc2_c00420{left:618.000000px;}
.x69_c00420{left:621.420000px;}
.xa9_c00420{left:625.500000px;}
.xad_c00420{left:627.000000px;}
.x78_c00420{left:629.580000px;}
.xc4_c00420{left:631.500000px;}
.x53_c00420{left:633.000000px;}
.x9e_c00420{left:634.500000px;}
.x42_c00420{left:642.420000px;}
.x87_c00420{left:648.000000px;}
.xd_c00420{left:649.500000px;}
.xc3_c00420{left:650.580000px;}
.x6a_c00420{left:655.920000px;}
.xb0_c00420{left:663.000000px;}
.xc6_c00420{left:664.500000px;}
.x18_c00420{left:665.580000px;}
.xbd_c00420{left:667.500000px;}
.xa2_c00420{left:670.500000px;}
.x35_c00420{left:676.500000px;}
.x54_c00420{left:677.580000px;}
.x2a_c00420{left:679.080000px;}
.x6b_c00420{left:684.000000px;}
.x62_c00420{left:688.500000px;}
.x81_c00420{left:689.580000px;}
.x55_c00420{left:693.000000px;}
.x4d_c00420{left:694.080000px;}
.x2b_c00420{left:698.580000px;}
.x2_c00420{left:704.580000px;}
.xe_c00420{left:706.920000px;}
.x63_c00420{left:709.500000px;}
.x79_c00420{left:719.580000px;}
@media print{
.v0_c00420{vertical-align:0.000000pt;}
.v1_c00420{vertical-align:5.333333pt;}
.ls1_c00420{letter-spacing:0.000000pt;}
.ls0_c00420{letter-spacing:41.772967pt;}
.ws1_c00420{word-spacing:-6.390322pt;}
.ws0_c00420{word-spacing:-3.186375pt;}
.ws1c_c00420{word-spacing:0.000000pt;}
.wsf_c00420{word-spacing:7.930269pt;}
.wsa_c00420{word-spacing:8.904628pt;}
.wse_c00420{word-spacing:9.391807pt;}
.ws1a_c00420{word-spacing:11.120724pt;}
.ws4_c00420{word-spacing:11.532166pt;}
.ws10_c00420{word-spacing:12.099545pt;}
.ws15_c00420{word-spacing:13.429205pt;}
.ws13_c00420{word-spacing:15.344817pt;}
.ws17_c00420{word-spacing:16.123479pt;}
.ws14_c00420{word-spacing:18.253132pt;}
.ws16_c00420{word-spacing:19.700008pt;}
.ws1b_c00420{word-spacing:20.615283pt;}
.ws5_c00420{word-spacing:21.567401pt;}
.ws12_c00420{word-spacing:21.900800pt;}
.ws11_c00420{word-spacing:26.874893pt;}
.ws18_c00420{word-spacing:27.206775pt;}
.ws9_c00420{word-spacing:27.662063pt;}
.ws3_c00420{word-spacing:29.706678pt;}
.ws19_c00420{word-spacing:29.748814pt;}
.ws6_c00420{word-spacing:30.822332pt;}
.ws8_c00420{word-spacing:32.762503pt;}
.ws2_c00420{word-spacing:32.884281pt;}
.wsd_c00420{word-spacing:36.439642pt;}
.wsb_c00420{word-spacing:44.921417pt;}
.ws7_c00420{word-spacing:47.939491pt;}
.wsc_c00420{word-spacing:57.111893pt;}
._2_c00420{width:20.779918pt;}
._6_c00420{width:24.330722pt;}
._4_c00420{width:27.866571pt;}
._8_c00420{width:29.417768pt;}
._5_c00420{width:33.230733pt;}
._7_c00420{width:36.924535pt;}
._1_c00420{width:39.954574pt;}
._0_c00420{width:43.132177pt;}
._3_c00420{width:60.566342pt;}
.fs5_c00420{font-size:3.040000pt;}
.fs8_c00420{font-size:10.560000pt;}
.fs7_c00420{font-size:12.106667pt;}
.fs0_c00420{font-size:16.640000pt;}
.fs6_c00420{font-size:18.133333pt;}
.fs3_c00420{font-size:22.666667pt;}
.fs1_c00420{font-size:25.706667pt;}
.fs4_c00420{font-size:28.746667pt;}
.fs2_c00420{font-size:31.733333pt;}
.y0_c00420{bottom:0.000000pt;}
.y3d_c00420{bottom:226.440000pt;}
.y42_c00420{bottom:226.640000pt;}
.y41_c00420{bottom:227.600000pt;}
.y3e_c00420{bottom:228.360000pt;}
.y43_c00420{bottom:228.733333pt;}
.y3f_c00420{bottom:229.306667pt;}
.y40_c00420{bottom:229.693333pt;}
.y39_c00420{bottom:243.773333pt;}
.y3a_c00420{bottom:245.106667pt;}
.y38_c00420{bottom:245.693333pt;}
.y3c_c00420{bottom:245.893333pt;}
.y37_c00420{bottom:246.640000pt;}
.y3b_c00420{bottom:247.026667pt;}
.y36_c00420{bottom:260.360000pt;}
.y33_c00420{bottom:262.440000pt;}
.y35_c00420{bottom:263.973333pt;}
.y34_c00420{bottom:264.360000pt;}
.y32_c00420{bottom:279.773333pt;}
.y30_c00420{bottom:281.306667pt;}
.y2f_c00420{bottom:281.693333pt;}
.y31_c00420{bottom:281.893333pt;}
.y2a_c00420{bottom:297.106667pt;}
.y2d_c00420{bottom:298.066667pt;}
.y2b_c00420{bottom:299.026667pt;}
.y29_c00420{bottom:299.226667pt;}
.y2c_c00420{bottom:299.973333pt;}
.y2e_c00420{bottom:300.360000pt;}
.y26_c00420{bottom:314.440000pt;}
.y28_c00420{bottom:315.973333pt;}
.y25_c00420{bottom:316.360000pt;}
.y27_c00420{bottom:317.306667pt;}
.y22_c00420{bottom:331.773333pt;}
.y24_c00420{bottom:333.106667pt;}
.y20_c00420{bottom:333.693333pt;}
.y21_c00420{bottom:333.893333pt;}
.y23_c00420{bottom:334.640000pt;}
.y1e_c00420{bottom:350.440000pt;}
.y1b_c00420{bottom:351.026667pt;}
.y1f_c00420{bottom:351.226667pt;}
.y1d_c00420{bottom:352.360000pt;}
.y1c_c00420{bottom:352.373333pt;}
.yac_c00420{bottom:390.840000pt;}
.yaa_c00420{bottom:391.600000pt;}
.yad_c00420{bottom:393.893333pt;}
.yab_c00420{bottom:394.466667pt;}
.yae_c00420{bottom:394.840000pt;}
.yaf_c00420{bottom:395.226667pt;}
.ya9_c00420{bottom:405.893333pt;}
.ya8_c00420{bottom:406.840000pt;}
.ya4_c00420{bottom:417.893333pt;}
.ya5_c00420{bottom:418.840000pt;}
.ya6_c00420{bottom:419.226667pt;}
.ya7_c00420{bottom:420.173333pt;}
.ya0_c00420{bottom:430.466667pt;}
.ya2_c00420{bottom:431.226667pt;}
.ya3_c00420{bottom:432.173333pt;}
.ya1_c00420{bottom:432.373333pt;}
.y9f_c00420{bottom:436.173333pt;}
.y9e_c00420{bottom:443.226667pt;}
.y9d_c00420{bottom:444.173333pt;}
.y9c_c00420{bottom:455.226667pt;}
.y9b_c00420{bottom:455.800000pt;}
.y9a_c00420{bottom:456.173333pt;}
.y98_c00420{bottom:468.173333pt;}
.y99_c00420{bottom:468.560000pt;}
.y97_c00420{bottom:480.173333pt;}
.y94_c00420{bottom:480.560000pt;}
.y96_c00420{bottom:481.133333pt;}
.y95_c00420{bottom:481.506667pt;}
.y92_c00420{bottom:492.560000pt;}
.y93_c00420{bottom:493.506667pt;}
.y8f_c00420{bottom:504.560000pt;}
.y8e_c00420{bottom:505.133333pt;}
.y90_c00420{bottom:505.506667pt;}
.y91_c00420{bottom:506.840000pt;}
.y8d_c00420{bottom:517.506667pt;}
.y8c_c00420{bottom:517.893333pt;}
.y88_c00420{bottom:528.560000pt;}
.y89_c00420{bottom:529.506667pt;}
.y8a_c00420{bottom:529.893333pt;}
.y8b_c00420{bottom:530.840000pt;}
.y86_c00420{bottom:541.893333pt;}
.y87_c00420{bottom:542.840000pt;}
.y84_c00420{bottom:553.893333pt;}
.y85_c00420{bottom:554.466667pt;}
.y82_c00420{bottom:567.226667pt;}
.y83_c00420{bottom:568.173333pt;}
.y81_c00420{bottom:579.226667pt;}
.y80_c00420{bottom:580.173333pt;}
.y7d_c00420{bottom:591.226667pt;}
.y7c_c00420{bottom:592.173333pt;}
.y7e_c00420{bottom:592.373333pt;}
.y7f_c00420{bottom:593.706667pt;}
.y7b_c00420{bottom:603.226667pt;}
.y76_c00420{bottom:615.226667pt;}
.y77_c00420{bottom:616.173333pt;}
.y78_c00420{bottom:616.373333pt;}
.y79_c00420{bottom:616.560000pt;}
.y7a_c00420{bottom:617.706667pt;}
.y71_c00420{bottom:627.226667pt;}
.y70_c00420{bottom:628.173333pt;}
.y73_c00420{bottom:628.560000pt;}
.y74_c00420{bottom:629.506667pt;}
.y72_c00420{bottom:629.706667pt;}
.y75_c00420{bottom:631.040000pt;}
.y6c_c00420{bottom:650.840000pt;}
.y6b_c00420{bottom:652.560000pt;}
.y6e_c00420{bottom:653.506667pt;}
.y6d_c00420{bottom:653.706667pt;}
.y6f_c00420{bottom:655.040000pt;}
.y67_c00420{bottom:664.173333pt;}
.y68_c00420{bottom:664.560000pt;}
.y69_c00420{bottom:665.506667pt;}
.y6a_c00420{bottom:667.040000pt;}
.y63_c00420{bottom:676.560000pt;}
.y62_c00420{bottom:677.506667pt;}
.y64_c00420{bottom:677.893333pt;}
.y66_c00420{bottom:678.840000pt;}
.y65_c00420{bottom:679.040000pt;}
.y5e_c00420{bottom:689.506667pt;}
.y5f_c00420{bottom:689.706667pt;}
.y60_c00420{bottom:689.893333pt;}
.y61_c00420{bottom:691.040000pt;}
.y5a_c00420{bottom:700.560000pt;}
.y59_c00420{bottom:701.506667pt;}
.y5d_c00420{bottom:701.893333pt;}
.y5b_c00420{bottom:702.840000pt;}
.y5c_c00420{bottom:703.040000pt;}
.y58_c00420{bottom:712.173333pt;}
.y54_c00420{bottom:717.133333pt;}
.y53_c00420{bottom:725.506667pt;}
.y55_c00420{bottom:726.840000pt;}
.y56_c00420{bottom:727.226667pt;}
.y57_c00420{bottom:728.173333pt;}
.y4f_c00420{bottom:736.560000pt;}
.y50_c00420{bottom:738.840000pt;}
.y51_c00420{bottom:739.226667pt;}
.y52_c00420{bottom:740.173333pt;}
.y4d_c00420{bottom:762.840000pt;}
.y4e_c00420{bottom:764.173333pt;}
.y4a_c00420{bottom:783.026667pt;}
.y4c_c00420{bottom:784.360000pt;}
.y49_c00420{bottom:785.306667pt;}
.y4b_c00420{bottom:786.266667pt;}
.y48_c00420{bottom:796.360000pt;}
.y47_c00420{bottom:798.266667pt;}
.y46_c00420{bottom:798.640000pt;}
.y45_c00420{bottom:819.026667pt;}
.y44_c00420{bottom:820.933333pt;}
.y1a_c00420{bottom:859.026667pt;}
.y14_c00420{bottom:872.360000pt;}
.y19_c00420{bottom:873.306667pt;}
.y15_c00420{bottom:874.440000pt;}
.y17_c00420{bottom:875.226667pt;}
.y16_c00420{bottom:876.360000pt;}
.y18_c00420{bottom:877.306667pt;}
.y10_c00420{bottom:891.773333pt;}
.y13_c00420{bottom:892.560000pt;}
.y11_c00420{bottom:893.306667pt;}
.yf_c00420{bottom:893.693333pt;}
.y12_c00420{bottom:894.640000pt;}
.ye_c00420{bottom:907.973333pt;}
.yd_c00420{bottom:909.106667pt;}
.yc_c00420{bottom:910.640000pt;}
.yb_c00420{bottom:911.026667pt;}
.y6_c00420{bottom:925.693333pt;}
.y7_c00420{bottom:926.440000pt;}
.ya_c00420{bottom:927.400000pt;}
.y9_c00420{bottom:928.360000pt;}
.y8_c00420{bottom:929.306667pt;}
.y5_c00420{bottom:943.773333pt;}
.y3_c00420{bottom:945.693333pt;}
.y4_c00420{bottom:947.026667pt;}
.y2_c00420{bottom:977.693333pt;}
.y1_c00420{bottom:980.560000pt;}
.h6_c00420{height:3.739141pt;}
.h9_c00420{height:12.988594pt;}
.h8_c00420{height:14.890964pt;}
.ha_c00420{height:20.224297pt;}
.h1_c00420{height:20.466875pt;}
.h7_c00420{height:22.303646pt;}
.hb_c00420{height:25.800208pt;}
.h4_c00420{height:27.879557pt;}
.h2_c00420{height:31.618698pt;}
.h5_c00420{height:35.357839pt;}
.h3_c00420{height:39.031380pt;}
.h0_c00420{height:1186.666667pt;}
.w0_c00420{width:782.666667pt;}
.x0_c00420{left:0.000000pt;}
.x3_c00420{left:135.040000pt;}
.x43_c00420{left:138.293333pt;}
.x19_c00420{left:149.706667pt;}
.x37_c00420{left:152.573333pt;}
.x36_c00420{left:163.040000pt;}
.x44_c00420{left:165.333333pt;}
.x20_c00420{left:168.000000pt;}
.x4_c00420{left:169.333333pt;}
.x56_c00420{left:171.626667pt;}
.x8c_c00420{left:174.666667pt;}
.xa0_c00420{left:176.000000pt;}
.x2c_c00420{left:177.333333pt;}
.x84_c00420{left:178.666667pt;}
.x1a_c00420{left:180.000000pt;}
.x6e_c00420{left:184.373333pt;}
.x5_c00420{left:185.333333pt;}
.xaa_c00420{left:187.626667pt;}
.x94_c00420{left:189.706667pt;}
.x4e_c00420{left:192.960000pt;}
.x90_c00420{left:194.293333pt;}
.x96_c00420{left:196.000000pt;}
.xf_c00420{left:197.333333pt;}
.xab_c00420{left:199.626667pt;}
.xae_c00420{left:204.000000pt;}
.x1b_c00420{left:205.333333pt;}
.x21_c00420{left:208.000000pt;}
.x45_c00420{left:209.333333pt;}
.x97_c00420{left:210.293333pt;}
.xa3_c00420{left:211.626667pt;}
.x57_c00420{left:213.333333pt;}
.x38_c00420{left:214.666667pt;}
.xaf_c00420{left:216.000000pt;}
.x64_c00420{left:216.960000pt;}
.x2d_c00420{left:219.040000pt;}
.x22_c00420{left:227.626667pt;}
.x39_c00420{left:232.000000pt;}
.x6f_c00420{left:232.960000pt;}
.xa4_c00420{left:240.000000pt;}
.x6_c00420{left:241.706667pt;}
.x1c_c00420{left:242.666667pt;}
.x58_c00420{left:245.706667pt;}
.x7a_c00420{left:246.666667pt;}
.x65_c00420{left:252.960000pt;}
.x88_c00420{left:257.706667pt;}
.x3a_c00420{left:260.960000pt;}
.x70_c00420{left:264.000000pt;}
.x91_c00420{left:266.666667pt;}
.x59_c00420{left:269.333333pt;}
.x10_c00420{left:270.666667pt;}
.xa5_c00420{left:272.000000pt;}
.xb3_c00420{left:273.706667pt;}
.x7b_c00420{left:274.666667pt;}
.x98_c00420{left:276.000000pt;}
.x2e_c00420{left:277.333333pt;}
.x95_c00420{left:278.666667pt;}
.x9f_c00420{left:280.373333pt;}
.x23_c00420{left:282.293333pt;}
.x1d_c00420{left:292.373333pt;}
.x85_c00420{left:294.666667pt;}
.x92_c00420{left:296.000000pt;}
.x11_c00420{left:299.626667pt;}
.x2f_c00420{left:301.706667pt;}
.x8d_c00420{left:302.666667pt;}
.x66_c00420{left:304.000000pt;}
.xc5_c00420{left:305.333333pt;}
.x9a_c00420{left:306.666667pt;}
.x7_c00420{left:307.626667pt;}
.xc7_c00420{left:309.333333pt;}
.x24_c00420{left:310.666667pt;}
.x71_c00420{left:314.666667pt;}
.x1e_c00420{left:315.626667pt;}
.x5a_c00420{left:317.333333pt;}
.x67_c00420{left:322.666667pt;}
.x3b_c00420{left:325.333333pt;}
.x93_c00420{left:326.666667pt;}
.x8e_c00420{left:330.666667pt;}
.x7c_c00420{left:331.626667pt;}
.xb5_c00420{left:333.706667pt;}
.xba_c00420{left:336.000000pt;}
.x8_c00420{left:337.333333pt;}
.x46_c00420{left:339.040000pt;}
.x6c_c00420{left:340.373333pt;}
.x25_c00420{left:345.333333pt;}
.x7d_c00420{left:348.960000pt;}
.x5b_c00420{left:352.000000pt;}
.xbe_c00420{left:354.293333pt;}
.x4f_c00420{left:356.573333pt;}
.x1_c00420{left:361.333333pt;}
.x12_c00420{left:362.666667pt;}
.xa6_c00420{left:364.000000pt;}
.x30_c00420{left:364.960000pt;}
.x82_c00420{left:366.666667pt;}
.xb1_c00420{left:368.000000pt;}
.xbb_c00420{left:369.333333pt;}
.x9b_c00420{left:372.000000pt;}
.x72_c00420{left:376.000000pt;}
.x1f_c00420{left:377.333333pt;}
.x47_c00420{left:378.293333pt;}
.x5c_c00420{left:381.333333pt;}
.x9_c00420{left:382.666667pt;}
.x31_c00420{left:385.333333pt;}
.xbf_c00420{left:386.293333pt;}
.x89_c00420{left:387.626667pt;}
.x3c_c00420{left:390.666667pt;}
.x86_c00420{left:396.373333pt;}
.xb4_c00420{left:397.333333pt;}
.x73_c00420{left:399.040000pt;}
.xb9_c00420{left:400.000000pt;}
.xa1_c00420{left:402.666667pt;}
.x83_c00420{left:404.960000pt;}
.x7e_c00420{left:406.666667pt;}
.x5d_c00420{left:414.666667pt;}
.x68_c00420{left:416.960000pt;}
.x74_c00420{left:420.760000pt;}
.x13_c00420{left:422.666667pt;}
.x3d_c00420{left:425.706667pt;}
.x32_c00420{left:427.040000pt;}
.x48_c00420{left:428.000000pt;}
.xb6_c00420{left:429.333333pt;}
.x6d_c00420{left:430.293333pt;}
.x5e_c00420{left:432.373333pt;}
.xc8_c00420{left:433.333333pt;}
.x9c_c00420{left:436.000000pt;}
.x26_c00420{left:436.960000pt;}
.x14_c00420{left:438.666667pt;}
.x50_c00420{left:440.000000pt;}
.x7f_c00420{left:441.706667pt;}
.x8a_c00420{left:444.000000pt;}
.xc0_c00420{left:450.293333pt;}
.x27_c00420{left:456.373333pt;}
.x5f_c00420{left:457.333333pt;}
.xa_c00420{left:459.040000pt;}
.x49_c00420{left:460.373333pt;}
.xac_c00420{left:461.706667pt;}
.x99_c00420{left:464.000000pt;}
.xbc_c00420{left:465.333333pt;}
.x3e_c00420{left:466.666667pt;}
.x9d_c00420{left:468.000000pt;}
.x8b_c00420{left:473.333333pt;}
.x28_c00420{left:474.293333pt;}
.x15_c00420{left:478.293333pt;}
.x75_c00420{left:479.800000pt;}
.x3f_c00420{left:483.040000pt;}
.xc1_c00420{left:485.333333pt;}
.x33_c00420{left:489.333333pt;}
.x8f_c00420{left:490.666667pt;}
.xa7_c00420{left:492.000000pt;}
.xb7_c00420{left:493.333333pt;}
.xb2_c00420{left:496.000000pt;}
.x4a_c00420{left:498.666667pt;}
.x60_c00420{left:506.666667pt;}
.x51_c00420{left:508.000000pt;}
.xb_c00420{left:512.000000pt;}
.x76_c00420{left:514.666667pt;}
.x4b_c00420{left:516.000000pt;}
.x16_c00420{left:518.293333pt;}
.x80_c00420{left:521.333333pt;}
.xa8_c00420{left:524.000000pt;}
.xb8_c00420{left:525.333333pt;}
.xc_c00420{left:528.000000pt;}
.x40_c00420{left:529.333333pt;}
.x34_c00420{left:530.666667pt;}
.x77_c00420{left:533.706667pt;}
.x29_c00420{left:537.333333pt;}
.x4c_c00420{left:539.626667pt;}
.x52_c00420{left:541.333333pt;}
.x41_c00420{left:545.706667pt;}
.x17_c00420{left:546.666667pt;}
.x61_c00420{left:548.000000pt;}
.xc2_c00420{left:549.333333pt;}
.x69_c00420{left:552.373333pt;}
.xa9_c00420{left:556.000000pt;}
.xad_c00420{left:557.333333pt;}
.x78_c00420{left:559.626667pt;}
.xc4_c00420{left:561.333333pt;}
.x53_c00420{left:562.666667pt;}
.x9e_c00420{left:564.000000pt;}
.x42_c00420{left:571.040000pt;}
.x87_c00420{left:576.000000pt;}
.xd_c00420{left:577.333333pt;}
.xc3_c00420{left:578.293333pt;}
.x6a_c00420{left:583.040000pt;}
.xb0_c00420{left:589.333333pt;}
.xc6_c00420{left:590.666667pt;}
.x18_c00420{left:591.626667pt;}
.xbd_c00420{left:593.333333pt;}
.xa2_c00420{left:596.000000pt;}
.x35_c00420{left:601.333333pt;}
.x54_c00420{left:602.293333pt;}
.x2a_c00420{left:603.626667pt;}
.x6b_c00420{left:608.000000pt;}
.x62_c00420{left:612.000000pt;}
.x81_c00420{left:612.960000pt;}
.x55_c00420{left:616.000000pt;}
.x4d_c00420{left:616.960000pt;}
.x2b_c00420{left:620.960000pt;}
.x2_c00420{left:626.293333pt;}
.xe_c00420{left:628.373333pt;}
.x63_c00420{left:630.666667pt;}
.x79_c00420{left:639.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_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_76e0a7ec15783e075c0ae97c.woff2')format("woff");}.ff1_c00421{font-family:ff1_c00421;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md7_c00421{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.mb3_c00421{transform:matrix(0.328571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328571,0.000000,0.000000,0.250000,0,0);}
.mab_c00421{transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);}
.m81_c00421{transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);}
.m41_c00421{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.maa_c00421{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m6e_c00421{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m1f_c00421{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m2_c00421{transform:matrix(0.370015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370015,0.000000,0.000000,0.250000,0,0);}
.m95_c00421{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.me7_c00421{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m98_c00421{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m18_c00421{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m53_c00421{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.ma2_c00421{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.m8b_c00421{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m9_c00421{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m45_c00421{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m7e_c00421{transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);}
.m3f_c00421{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m4a_c00421{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m62_c00421{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m17_c00421{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mb9_c00421{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m44_c00421{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m49_c00421{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m96_c00421{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m5e_c00421{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m67_c00421{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mdf_c00421{transform:matrix(0.403525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403525,0.000000,0.000000,0.250000,0,0);}
.m36_c00421{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m21_c00421{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m52_c00421{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m87_c00421{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.me1_c00421{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.ma1_c00421{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m31_c00421{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m14_c00421{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.m9d_c00421{transform:matrix(0.410788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410788,0.000000,0.000000,0.250000,0,0);}
.mb1_c00421{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m4e_c00421{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m2f_c00421{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m6_c00421{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m78_c00421{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m30_c00421{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m4b_c00421{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m1b_c00421{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m19_c00421{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m75_c00421{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.m7_c00421{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.ma6_c00421{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mda_c00421{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m84_c00421{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m24_c00421{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mc0_c00421{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mdb_c00421{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.mf2_c00421{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m10_c00421{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m63_c00421{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m79_c00421{transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);}
.m77_c00421{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.m26_c00421{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m94_c00421{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m40_c00421{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m32_c00421{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m2d_c00421{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m83_c00421{transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);}
.m2c_c00421{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m8d_c00421{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.mef_c00421{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.mba_c00421{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.mc1_c00421{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m72_c00421{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.mc4_c00421{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m34_c00421{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m38_c00421{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m9a_c00421{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.me_c00421{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m1e_c00421{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mbc_c00421{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.m92_c00421{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mc_c00421{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m69_c00421{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.md3_c00421{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.maf_c00421{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mee_c00421{transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);}
.mb6_c00421{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mc7_c00421{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m7b_c00421{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m23_c00421{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m33_c00421{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m6f_c00421{transform:matrix(0.468908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468908,0.000000,0.000000,0.250000,0,0);}
.mcd_c00421{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.md4_c00421{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m88_c00421{transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);}
.m29_c00421{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.ma5_c00421{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.mb_c00421{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m76_c00421{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m47_c00421{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mf1_c00421{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m11_c00421{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m80_c00421{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m90_c00421{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.md6_c00421{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m73_c00421{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m54_c00421{transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);}
.m6a_c00421{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m4f_c00421{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);}
.mad_c00421{transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);}
.m8e_c00421{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m59_c00421{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m68_c00421{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.ma9_c00421{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m3d_c00421{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m65_c00421{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m12_c00421{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.mac_c00421{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m1_c00421{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m27_c00421{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m60_c00421{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m9e_c00421{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m2a_c00421{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m25_c00421{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m7a_c00421{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.m8_c00421{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m5b_c00421{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mdc_c00421{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m57_c00421{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m3e_c00421{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m64_c00421{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.ma3_c00421{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mea_c00421{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);}
.mcc_c00421{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.mc3_c00421{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mcf_c00421{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m1a_c00421{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m9f_c00421{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.mbe_c00421{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m1d_c00421{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m39_c00421{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m9b_c00421{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m37_c00421{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.meb_c00421{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m35_c00421{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m3b_c00421{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mb7_c00421{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mb4_c00421{transform:matrix(0.538961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538961,0.000000,0.000000,0.250000,0,0);}
.mec_c00421{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m97_c00421{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m4_c00421{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m93_c00421{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m13_c00421{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m20_c00421{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.ma8_c00421{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.md1_c00421{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.ma4_c00421{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.mb5_c00421{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m42_c00421{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m74_c00421{transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);}
.m86_c00421{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m7d_c00421{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_c00421{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m4d_c00421{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.me2_c00421{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m5d_c00421{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m5_c00421{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m7f_c00421{transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);}
.ma0_c00421{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m22_c00421{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.md0_c00421{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m5c_c00421{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.md_c00421{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);}
.m15_c00421{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.md2_c00421{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m3c_c00421{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m89_c00421{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m8a_c00421{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m51_c00421{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mc5_c00421{transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);}
.m8f_c00421{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m1c_c00421{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mbb_c00421{transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);}
.ma_c00421{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m7c_c00421{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.m50_c00421{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m61_c00421{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m4c_c00421{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.mc6_c00421{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.m6d_c00421{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.me8_c00421{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.mde_c00421{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m82_c00421{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mdd_c00421{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m5a_c00421{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m6b_c00421{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mbf_c00421{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m9c_c00421{transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);}
.mf0_c00421{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.m91_c00421{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m70_c00421{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.m66_c00421{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.me5_c00421{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m48_c00421{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mae_c00421{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m56_c00421{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m6c_c00421{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m2b_c00421{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mc9_c00421{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.md9_c00421{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m58_c00421{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.me6_c00421{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m0_c00421{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_c00421{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.me0_c00421{transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);}
.mc2_c00421{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.me9_c00421{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.md5_c00421{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.mca_c00421{transform:matrix(0.646635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.646635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.646635,0.000000,0.000000,0.250000,0,0);}
.md8_c00421{transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);}
.mf_c00421{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.me3_c00421{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m2e_c00421{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mc8_c00421{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.me4_c00421{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m5f_c00421{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.ma7_c00421{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m71_c00421{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.m16_c00421{transform:matrix(0.699443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699443,0.000000,0.000000,0.250000,0,0);}
.med_c00421{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mbd_c00421{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mcb_c00421{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);}
.mb2_c00421{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m3a_c00421{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m55_c00421{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m43_c00421{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m3_c00421{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.mb0_c00421{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.mb8_c00421{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m46_c00421{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.mce_c00421{transform:matrix(1.123348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.123348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.123348,0.000000,0.000000,0.250000,0,0);}
.m8c_c00421{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m85_c00421{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-6.419498px;}
.ws1_c00421{word-spacing:0.000000px;}
.fc0_c00421{color:transparent;}
.fs7_c00421{font-size:3.420000px;}
.fs8_c00421{font-size:13.620000px;}
.fs3_c00421{font-size:18.720000px;}
.fs0_c00421{font-size:20.400000px;}
.fs1_c00421{font-size:25.500000px;}
.fs4_c00421{font-size:28.920000px;}
.fs6_c00421{font-size:32.340000px;}
.fs5_c00421{font-size:35.700000px;}
.fs2_c00421{font-size:39.120000px;}
.y0_c00421{bottom:0.000000px;}
.yba_c00421{bottom:252.825000px;}
.ybd_c00421{bottom:253.470000px;}
.ybf_c00421{bottom:254.325000px;}
.yc0_c00421{bottom:254.970000px;}
.ybc_c00421{bottom:255.195000px;}
.ybb_c00421{bottom:255.405000px;}
.ybe_c00421{bottom:256.050000px;}
.yb9_c00421{bottom:269.325000px;}
.yb4_c00421{bottom:269.550000px;}
.yb7_c00421{bottom:270.405000px;}
.yb6_c00421{bottom:270.630000px;}
.yb5_c00421{bottom:271.470000px;}
.yb8_c00421{bottom:272.550000px;}
.yb1_c00421{bottom:284.325000px;}
.yb2_c00421{bottom:284.550000px;}
.yb3_c00421{bottom:285.405000px;}
.yb0_c00421{bottom:286.050000px;}
.ya8_c00421{bottom:297.825000px;}
.yae_c00421{bottom:298.050000px;}
.ya7_c00421{bottom:299.130000px;}
.yac_c00421{bottom:299.325000px;}
.yaa_c00421{bottom:299.970000px;}
.yad_c00421{bottom:300.405000px;}
.ya9_c00421{bottom:301.050000px;}
.yab_c00421{bottom:301.470000px;}
.yaf_c00421{bottom:301.695000px;}
.ya1_c00421{bottom:313.905000px;}
.ya5_c00421{bottom:314.550000px;}
.ya0_c00421{bottom:314.970000px;}
.ya3_c00421{bottom:315.405000px;}
.ya4_c00421{bottom:315.630000px;}
.ya2_c00421{bottom:316.050000px;}
.ya6_c00421{bottom:316.470000px;}
.y99_c00421{bottom:328.905000px;}
.y97_c00421{bottom:329.130000px;}
.y98_c00421{bottom:329.970000px;}
.y9f_c00421{bottom:330.195000px;}
.y9e_c00421{bottom:330.405000px;}
.y9b_c00421{bottom:330.630000px;}
.y9a_c00421{bottom:331.050000px;}
.y9d_c00421{bottom:331.470000px;}
.y9c_c00421{bottom:332.550000px;}
.y96_c00421{bottom:357.405000px;}
.y94_c00421{bottom:376.245000px;}
.y93_c00421{bottom:378.405000px;}
.y95_c00421{bottom:379.470000px;}
.y91_c00421{bottom:395.745000px;}
.y92_c00421{bottom:397.470000px;}
.y90_c00421{bottom:397.905000px;}
.y8f_c00421{bottom:414.825000px;}
.y8e_c00421{bottom:415.245000px;}
.y89_c00421{bottom:416.130000px;}
.y8a_c00421{bottom:416.325000px;}
.y8c_c00421{bottom:416.970000px;}
.y8d_c00421{bottom:417.405000px;}
.y8b_c00421{bottom:418.470000px;}
.y83_c00421{bottom:433.245000px;}
.y84_c00421{bottom:434.745000px;}
.y88_c00421{bottom:435.630000px;}
.y86_c00421{bottom:436.245000px;}
.y85_c00421{bottom:436.905000px;}
.y87_c00421{bottom:437.130000px;}
.y81_c00421{bottom:453.405000px;}
.y80_c00421{bottom:454.245000px;}
.y7f_c00421{bottom:454.680000px;}
.y7c_c00421{bottom:456.405000px;}
.y82_c00421{bottom:456.630000px;}
.y7d_c00421{bottom:457.905000px;}
.y7e_c00421{bottom:457.920000px;}
.y7a_c00421{bottom:475.905000px;}
.y7b_c00421{bottom:477.405000px;}
.y79_c00421{bottom:493.905000px;}
.y77_c00421{bottom:494.745000px;}
.y78_c00421{bottom:495.825000px;}
.y76_c00421{bottom:496.905000px;}
.y74_c00421{bottom:514.245000px;}
.y75_c00421{bottom:515.130000px;}
.y73_c00421{bottom:515.970000px;}
.y72_c00421{bottom:516.405000px;}
.y6f_c00421{bottom:533.745000px;}
.y71_c00421{bottom:535.470000px;}
.y70_c00421{bottom:535.905000px;}
.y6e_c00421{bottom:553.245000px;}
.y6c_c00421{bottom:555.405000px;}
.y6d_c00421{bottom:556.470000px;}
.y6b_c00421{bottom:572.745000px;}
.y67_c00421{bottom:572.970000px;}
.y69_c00421{bottom:573.825000px;}
.y68_c00421{bottom:574.905000px;}
.y6a_c00421{bottom:575.325000px;}
.y66_c00421{bottom:592.245000px;}
.y64_c00421{bottom:593.745000px;}
.y65_c00421{bottom:594.405000px;}
.y62_c00421{bottom:595.905000px;}
.y63_c00421{bottom:595.920000px;}
.y61_c00421{bottom:612.405000px;}
.y5e_c00421{bottom:613.245000px;}
.y60_c00421{bottom:614.325000px;}
.y5f_c00421{bottom:615.420000px;}
.y5d_c00421{bottom:631.905000px;}
.y5c_c00421{bottom:632.745000px;}
.y5b_c00421{bottom:634.905000px;}
.y57_c00421{bottom:652.245000px;}
.y59_c00421{bottom:654.405000px;}
.y58_c00421{bottom:654.420000px;}
.y5a_c00421{bottom:654.630000px;}
.y56_c00421{bottom:678.825000px;}
.y55_c00421{bottom:679.050000px;}
.y53_c00421{bottom:679.905000px;}
.y54_c00421{bottom:680.970000px;}
.y52_c00421{bottom:699.405000px;}
.y50_c00421{bottom:699.825000px;}
.y51_c00421{bottom:700.050000px;}
.y4f_c00421{bottom:701.550000px;}
.y4e_c00421{bottom:724.905000px;}
.y4a_c00421{bottom:725.745000px;}
.y4d_c00421{bottom:726.825000px;}
.y4b_c00421{bottom:727.905000px;}
.y4c_c00421{bottom:728.970000px;}
.y45_c00421{bottom:783.405000px;}
.y49_c00421{bottom:785.745000px;}
.y46_c00421{bottom:786.630000px;}
.y47_c00421{bottom:787.905000px;}
.y48_c00421{bottom:788.970000px;}
.y42_c00421{bottom:803.745000px;}
.y44_c00421{bottom:804.825000px;}
.y43_c00421{bottom:805.245000px;}
.y40_c00421{bottom:807.405000px;}
.y41_c00421{bottom:808.470000px;}
.y3f_c00421{bottom:824.745000px;}
.y3d_c00421{bottom:825.630000px;}
.y3e_c00421{bottom:826.905000px;}
.y39_c00421{bottom:844.245000px;}
.y3b_c00421{bottom:845.745000px;}
.y3a_c00421{bottom:846.405000px;}
.y3c_c00421{bottom:847.470000px;}
.y31_c00421{bottom:862.905000px;}
.y36_c00421{bottom:863.970000px;}
.y35_c00421{bottom:865.245000px;}
.y37_c00421{bottom:865.470000px;}
.y32_c00421{bottom:865.905000px;}
.y33_c00421{bottom:866.130000px;}
.y38_c00421{bottom:866.970000px;}
.y34_c00421{bottom:867.405000px;}
.y2d_c00421{bottom:883.245000px;}
.y2f_c00421{bottom:884.325000px;}
.y2c_c00421{bottom:884.745000px;}
.y2b_c00421{bottom:885.405000px;}
.y30_c00421{bottom:885.630000px;}
.y2e_c00421{bottom:886.905000px;}
.y27_c00421{bottom:904.245000px;}
.y2a_c00421{bottom:904.905000px;}
.y28_c00421{bottom:905.970000px;}
.y29_c00421{bottom:906.405000px;}
.y25_c00421{bottom:921.405000px;}
.y24_c00421{bottom:923.745000px;}
.y26_c00421{bottom:924.630000px;}
.y23_c00421{bottom:925.905000px;}
.y22_c00421{bottom:945.405000px;}
.y20_c00421{bottom:961.905000px;}
.y21_c00421{bottom:962.325000px;}
.y1d_c00421{bottom:962.745000px;}
.y1c_c00421{bottom:963.825000px;}
.y1e_c00421{bottom:964.905000px;}
.y1f_c00421{bottom:965.130000px;}
.y17_c00421{bottom:981.405000px;}
.y16_c00421{bottom:982.245000px;}
.y1a_c00421{bottom:983.745000px;}
.y18_c00421{bottom:984.405000px;}
.y1b_c00421{bottom:985.470000px;}
.y19_c00421{bottom:985.905000px;}
.y11_c00421{bottom:1002.825000px;}
.y12_c00421{bottom:1003.245000px;}
.y10_c00421{bottom:1003.905000px;}
.y14_c00421{bottom:1004.325000px;}
.y15_c00421{bottom:1004.970000px;}
.y13_c00421{bottom:1005.405000px;}
.yf_c00421{bottom:1020.405000px;}
.yd_c00421{bottom:1021.245000px;}
.ye_c00421{bottom:1022.325000px;}
.yc_c00421{bottom:1023.405000px;}
.yb_c00421{bottom:1039.905000px;}
.y9_c00421{bottom:1060.470000px;}
.y3_c00421{bottom:1060.680000px;}
.ya_c00421{bottom:1060.905000px;}
.y6_c00421{bottom:1061.745000px;}
.y8_c00421{bottom:1061.970000px;}
.y4_c00421{bottom:1062.630000px;}
.y7_c00421{bottom:1062.825000px;}
.y5_c00421{bottom:1063.905000px;}
.y2_c00421{bottom:1099.470000px;}
.y1_c00421{bottom:1102.050000px;}
.h8_c00421{height:4.206533px;}
.h9_c00421{height:16.752334px;}
.h4_c00421{height:23.025234px;}
.h1_c00421{height:25.091602px;}
.h2_c00421{height:31.364502px;}
.h5_c00421{height:35.571035px;}
.h7_c00421{height:39.777568px;}
.h6_c00421{height:43.910303px;}
.h3_c00421{height:48.116836px;}
.h0_c00421{height:1335.000000px;}
.w0_c00421{width:880.500000px;}
.x0_c00421{left:0.000000px;}
.x9e_c00421{left:151.500000px;}
.x2_c00421{left:153.000000px;}
.x1c_c00421{left:154.080000px;}
.xd9_c00421{left:165.000000px;}
.x87_c00421{left:166.080000px;}
.x73_c00421{left:168.000000px;}
.x12_c00421{left:169.500000px;}
.x1d_c00421{left:172.920000px;}
.x3d_c00421{left:181.920000px;}
.xd1_c00421{left:183.000000px;}
.xad_c00421{left:187.920000px;}
.xa7_c00421{left:189.420000px;}
.xd6_c00421{left:191.580000px;}
.x6d_c00421{left:194.580000px;}
.x1e_c00421{left:198.000000px;}
.x9f_c00421{left:200.580000px;}
.x52_c00421{left:202.080000px;}
.x74_c00421{left:204.420000px;}
.x97_c00421{left:205.500000px;}
.xbc_c00421{left:207.000000px;}
.x90_c00421{left:210.420000px;}
.x3e_c00421{left:212.580000px;}
.x30_c00421{left:213.855000px;}
.x49_c00421{left:216.000000px;}
.x7a_c00421{left:220.920000px;}
.x3_c00421{left:223.500000px;}
.x63_c00421{left:225.000000px;}
.xa8_c00421{left:227.580000px;}
.x88_c00421{left:229.500000px;}
.x3f_c00421{left:231.420000px;}
.x28_c00421{left:232.920000px;}
.xcc_c00421{left:234.000000px;}
.x53_c00421{left:236.580000px;}
.x4a_c00421{left:238.500000px;}
.x31_c00421{left:246.000000px;}
.xb7_c00421{left:250.500000px;}
.x1f_c00421{left:253.500000px;}
.x4_c00421{left:255.000000px;}
.xb2_c00421{left:256.500000px;}
.x4b_c00421{left:258.000000px;}
.x40_c00421{left:259.080000px;}
.x6e_c00421{left:261.420000px;}
.x59_c00421{left:262.500000px;}
.xda_c00421{left:264.000000px;}
.xe2_c00421{left:267.000000px;}
.x91_c00421{left:270.000000px;}
.x42_c00421{left:274.080000px;}
.x13_c00421{left:275.580000px;}
.x5a_c00421{left:277.500000px;}
.x9a_c00421{left:280.500000px;}
.x64_c00421{left:284.145000px;}
.xe9_c00421{left:286.500000px;}
.xae_c00421{left:289.080000px;}
.x32_c00421{left:290.580000px;}
.x5_c00421{left:293.580000px;}
.xbd_c00421{left:295.920000px;}
.x7b_c00421{left:297.000000px;}
.x41_c00421{left:298.080000px;}
.xcd_c00421{left:299.580000px;}
.xb6_c00421{left:301.920000px;}
.x89_c00421{left:303.000000px;}
.x20_c00421{left:306.420000px;}
.x33_c00421{left:310.080000px;}
.xa0_c00421{left:313.500000px;}
.x9b_c00421{left:315.000000px;}
.x65_c00421{left:318.420000px;}
.x4c_c00421{left:319.920000px;}
.x81_c00421{left:322.500000px;}
.x43_c00421{left:323.775000px;}
.x6_c00421{left:325.500000px;}
.xe1_c00421{left:328.500000px;}
.x98_c00421{left:330.420000px;}
.x92_c00421{left:333.645000px;}
.x5b_c00421{left:337.080000px;}
.x7e_c00421{left:339.000000px;}
.xce_c00421{left:340.080000px;}
.x21_c00421{left:342.000000px;}
.x82_c00421{left:345.855000px;}
.x66_c00421{left:348.420000px;}
.x75_c00421{left:349.920000px;}
.x6f_c00421{left:351.420000px;}
.xe3_c00421{left:353.145000px;}
.x5c_c00421{left:357.420000px;}
.x14_c00421{left:358.500000px;}
.x8a_c00421{left:360.855000px;}
.xb8_c00421{left:362.580000px;}
.x29_c00421{left:363.855000px;}
.xdb_c00421{left:367.500000px;}
.x7c_c00421{left:369.000000px;}
.x7_c00421{left:371.355000px;}
.x99_c00421{left:374.775000px;}
.x54_c00421{left:375.855000px;}
.x70_c00421{left:378.000000px;}
.x76_c00421{left:379.500000px;}
.x34_c00421{left:384.000000px;}
.x5d_c00421{left:385.500000px;}
.x67_c00421{left:387.000000px;}
.x22_c00421{left:391.080000px;}
.x83_c00421{left:393.420000px;}
.x8b_c00421{left:396.000000px;}
.xc7_c00421{left:397.080000px;}
.xea_c00421{left:400.920000px;}
.xd2_c00421{left:402.420000px;}
.x15_c00421{left:404.580000px;}
.x8_c00421{left:406.500000px;}
.xa3_c00421{left:408.000000px;}
.x1_c00421{left:409.500000px;}
.x7d_c00421{left:411.000000px;}
.xe4_c00421{left:412.500000px;}
.xbe_c00421{left:414.420000px;}
.x55_c00421{left:415.500000px;}
.x35_c00421{left:417.000000px;}
.xc2_c00421{left:418.920000px;}
.xd3_c00421{left:420.000000px;}
.x2a_c00421{left:427.920000px;}
.x44_c00421{left:429.000000px;}
.x5e_c00421{left:432.420000px;}
.x4d_c00421{left:433.500000px;}
.x16_c00421{left:434.775000px;}
.x7f_c00421{left:436.500000px;}
.x77_c00421{left:438.420000px;}
.x9_c00421{left:439.500000px;}
.x84_c00421{left:441.000000px;}
.x8c_c00421{left:442.920000px;}
.xd4_c00421{left:445.500000px;}
.x68_c00421{left:447.420000px;}
.xb3_c00421{left:448.500000px;}
.x71_c00421{left:451.500000px;}
.xa9_c00421{left:455.580000px;}
.xcf_c00421{left:459.000000px;}
.x56_c00421{left:460.080000px;}
.xd7_c00421{left:462.000000px;}
.xe5_c00421{left:463.500000px;}
.x2b_c00421{left:466.080000px;}
.xa_c00421{left:468.000000px;}
.x36_c00421{left:469.500000px;}
.xeb_c00421{left:472.080000px;}
.x93_c00421{left:475.920000px;}
.x23_c00421{left:477.000000px;}
.x5f_c00421{left:478.080000px;}
.x17_c00421{left:479.775000px;}
.x4e_c00421{left:481.920000px;}
.xa4_c00421{left:484.080000px;}
.x2c_c00421{left:487.080000px;}
.xe6_c00421{left:495.000000px;}
.x45_c00421{left:496.500000px;}
.x60_c00421{left:497.580000px;}
.xd0_c00421{left:499.080000px;}
.x85_c00421{left:500.355000px;}
.xaf_c00421{left:502.500000px;}
.xb_c00421{left:504.000000px;}
.xc3_c00421{left:507.420000px;}
.xdc_c00421{left:510.420000px;}
.x78_c00421{left:512.580000px;}
.xc8_c00421{left:514.500000px;}
.x18_c00421{left:515.580000px;}
.xb0_c00421{left:520.500000px;}
.x72_c00421{left:522.000000px;}
.x86_c00421{left:524.580000px;}
.xa1_c00421{left:526.080000px;}
.xbf_c00421{left:529.500000px;}
.x80_c00421{left:532.920000px;}
.xdd_c00421{left:534.000000px;}
.xb4_c00421{left:535.275000px;}
.x8d_c00421{left:537.000000px;}
.xc4_c00421{left:538.500000px;}
.x37_c00421{left:540.420000px;}
.xc_c00421{left:541.500000px;}
.x94_c00421{left:547.080000px;}
.x46_c00421{left:549.000000px;}
.x24_c00421{left:551.580000px;}
.x2d_c00421{left:554.580000px;}
.xc9_c00421{left:558.000000px;}
.x69_c00421{left:559.080000px;}
.xaa_c00421{left:562.500000px;}
.xc0_c00421{left:563.580000px;}
.x95_c00421{left:567.420000px;}
.xd8_c00421{left:568.500000px;}
.xd_c00421{left:569.580000px;}
.xb5_c00421{left:573.420000px;}
.xc5_c00421{left:574.500000px;}
.x8e_c00421{left:575.580000px;}
.x19_c00421{left:580.500000px;}
.x25_c00421{left:585.420000px;}
.x38_c00421{left:586.500000px;}
.xb1_c00421{left:588.000000px;}
.xe7_c00421{left:589.500000px;}
.x9c_c00421{left:592.080000px;}
.x47_c00421{left:594.420000px;}
.x4f_c00421{left:596.775000px;}
.x57_c00421{left:598.920000px;}
.x39_c00421{left:600.420000px;}
.xe_c00421{left:601.920000px;}
.x6a_c00421{left:610.500000px;}
.xd5_c00421{left:612.000000px;}
.x8f_c00421{left:613.920000px;}
.xe8_c00421{left:616.500000px;}
.xca_c00421{left:618.420000px;}
.xf_c00421{left:621.000000px;}
.x1a_c00421{left:622.500000px;}
.xb9_c00421{left:625.500000px;}
.x2e_c00421{left:630.000000px;}
.xde_c00421{left:632.580000px;}
.xa2_c00421{left:635.580000px;}
.x3a_c00421{left:637.500000px;}
.xba_c00421{left:639.420000px;}
.x50_c00421{left:640.920000px;}
.xc6_c00421{left:642.000000px;}
.x6b_c00421{left:646.500000px;}
.x96_c00421{left:647.580000px;}
.xcb_c00421{left:649.500000px;}
.x26_c00421{left:655.500000px;}
.x10_c00421{left:658.500000px;}
.xc1_c00421{left:660.000000px;}
.x61_c00421{left:661.500000px;}
.x1b_c00421{left:663.420000px;}
.x48_c00421{left:665.580000px;}
.xa5_c00421{left:669.000000px;}
.x79_c00421{left:672.420000px;}
.xab_c00421{left:676.920000px;}
.x51_c00421{left:682.080000px;}
.x3b_c00421{left:684.000000px;}
.xa6_c00421{left:685.080000px;}
.xdf_c00421{left:688.500000px;}
.xbb_c00421{left:689.580000px;}
.x2f_c00421{left:693.645000px;}
.x9d_c00421{left:697.080000px;}
.xe0_c00421{left:698.580000px;}
.xac_c00421{left:704.580000px;}
.x62_c00421{left:706.920000px;}
.x6c_c00421{left:709.920000px;}
.x58_c00421{left:711.000000px;}
.x11_c00421{left:715.500000px;}
.x3c_c00421{left:718.080000px;}
.x27_c00421{left:719.580000px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.ls0_c00421{letter-spacing:0.000000pt;}
.ws0_c00421{word-spacing:-5.706221pt;}
.ws1_c00421{word-spacing:0.000000pt;}
.fs7_c00421{font-size:3.040000pt;}
.fs8_c00421{font-size:12.106667pt;}
.fs3_c00421{font-size:16.640000pt;}
.fs0_c00421{font-size:18.133333pt;}
.fs1_c00421{font-size:22.666667pt;}
.fs4_c00421{font-size:25.706667pt;}
.fs6_c00421{font-size:28.746667pt;}
.fs5_c00421{font-size:31.733333pt;}
.fs2_c00421{font-size:34.773333pt;}
.y0_c00421{bottom:0.000000pt;}
.yba_c00421{bottom:224.733333pt;}
.ybd_c00421{bottom:225.306667pt;}
.ybf_c00421{bottom:226.066667pt;}
.yc0_c00421{bottom:226.640000pt;}
.ybc_c00421{bottom:226.840000pt;}
.ybb_c00421{bottom:227.026667pt;}
.ybe_c00421{bottom:227.600000pt;}
.yb9_c00421{bottom:239.400000pt;}
.yb4_c00421{bottom:239.600000pt;}
.yb7_c00421{bottom:240.360000pt;}
.yb6_c00421{bottom:240.560000pt;}
.yb5_c00421{bottom:241.306667pt;}
.yb8_c00421{bottom:242.266667pt;}
.yb1_c00421{bottom:252.733333pt;}
.yb2_c00421{bottom:252.933333pt;}
.yb3_c00421{bottom:253.693333pt;}
.yb0_c00421{bottom:254.266667pt;}
.ya8_c00421{bottom:264.733333pt;}
.yae_c00421{bottom:264.933333pt;}
.ya7_c00421{bottom:265.893333pt;}
.yac_c00421{bottom:266.066667pt;}
.yaa_c00421{bottom:266.640000pt;}
.yad_c00421{bottom:267.026667pt;}
.ya9_c00421{bottom:267.600000pt;}
.yab_c00421{bottom:267.973333pt;}
.yaf_c00421{bottom:268.173333pt;}
.ya1_c00421{bottom:279.026667pt;}
.ya5_c00421{bottom:279.600000pt;}
.ya0_c00421{bottom:279.973333pt;}
.ya3_c00421{bottom:280.360000pt;}
.ya4_c00421{bottom:280.560000pt;}
.ya2_c00421{bottom:280.933333pt;}
.ya6_c00421{bottom:281.306667pt;}
.y99_c00421{bottom:292.360000pt;}
.y97_c00421{bottom:292.560000pt;}
.y98_c00421{bottom:293.306667pt;}
.y9f_c00421{bottom:293.506667pt;}
.y9e_c00421{bottom:293.693333pt;}
.y9b_c00421{bottom:293.893333pt;}
.y9a_c00421{bottom:294.266667pt;}
.y9d_c00421{bottom:294.640000pt;}
.y9c_c00421{bottom:295.600000pt;}
.y96_c00421{bottom:317.693333pt;}
.y94_c00421{bottom:334.440000pt;}
.y93_c00421{bottom:336.360000pt;}
.y95_c00421{bottom:337.306667pt;}
.y91_c00421{bottom:351.773333pt;}
.y92_c00421{bottom:353.306667pt;}
.y90_c00421{bottom:353.693333pt;}
.y8f_c00421{bottom:368.733333pt;}
.y8e_c00421{bottom:369.106667pt;}
.y89_c00421{bottom:369.893333pt;}
.y8a_c00421{bottom:370.066667pt;}
.y8c_c00421{bottom:370.640000pt;}
.y8d_c00421{bottom:371.026667pt;}
.y8b_c00421{bottom:371.973333pt;}
.y83_c00421{bottom:385.106667pt;}
.y84_c00421{bottom:386.440000pt;}
.y88_c00421{bottom:387.226667pt;}
.y86_c00421{bottom:387.773333pt;}
.y85_c00421{bottom:388.360000pt;}
.y87_c00421{bottom:388.560000pt;}
.y81_c00421{bottom:403.026667pt;}
.y80_c00421{bottom:403.773333pt;}
.y7f_c00421{bottom:404.160000pt;}
.y7c_c00421{bottom:405.693333pt;}
.y82_c00421{bottom:405.893333pt;}
.y7d_c00421{bottom:407.026667pt;}
.y7e_c00421{bottom:407.040000pt;}
.y7a_c00421{bottom:423.026667pt;}
.y7b_c00421{bottom:424.360000pt;}
.y79_c00421{bottom:439.026667pt;}
.y77_c00421{bottom:439.773333pt;}
.y78_c00421{bottom:440.733333pt;}
.y76_c00421{bottom:441.693333pt;}
.y74_c00421{bottom:457.106667pt;}
.y75_c00421{bottom:457.893333pt;}
.y73_c00421{bottom:458.640000pt;}
.y72_c00421{bottom:459.026667pt;}
.y6f_c00421{bottom:474.440000pt;}
.y71_c00421{bottom:475.973333pt;}
.y70_c00421{bottom:476.360000pt;}
.y6e_c00421{bottom:491.773333pt;}
.y6c_c00421{bottom:493.693333pt;}
.y6d_c00421{bottom:494.640000pt;}
.y6b_c00421{bottom:509.106667pt;}
.y67_c00421{bottom:509.306667pt;}
.y69_c00421{bottom:510.066667pt;}
.y68_c00421{bottom:511.026667pt;}
.y6a_c00421{bottom:511.400000pt;}
.y66_c00421{bottom:526.440000pt;}
.y64_c00421{bottom:527.773333pt;}
.y65_c00421{bottom:528.360000pt;}
.y62_c00421{bottom:529.693333pt;}
.y63_c00421{bottom:529.706667pt;}
.y61_c00421{bottom:544.360000pt;}
.y5e_c00421{bottom:545.106667pt;}
.y60_c00421{bottom:546.066667pt;}
.y5f_c00421{bottom:547.040000pt;}
.y5d_c00421{bottom:561.693333pt;}
.y5c_c00421{bottom:562.440000pt;}
.y5b_c00421{bottom:564.360000pt;}
.y57_c00421{bottom:579.773333pt;}
.y59_c00421{bottom:581.693333pt;}
.y58_c00421{bottom:581.706667pt;}
.y5a_c00421{bottom:581.893333pt;}
.y56_c00421{bottom:603.400000pt;}
.y55_c00421{bottom:603.600000pt;}
.y53_c00421{bottom:604.360000pt;}
.y54_c00421{bottom:605.306667pt;}
.y52_c00421{bottom:621.693333pt;}
.y50_c00421{bottom:622.066667pt;}
.y51_c00421{bottom:622.266667pt;}
.y4f_c00421{bottom:623.600000pt;}
.y4e_c00421{bottom:644.360000pt;}
.y4a_c00421{bottom:645.106667pt;}
.y4d_c00421{bottom:646.066667pt;}
.y4b_c00421{bottom:647.026667pt;}
.y4c_c00421{bottom:647.973333pt;}
.y45_c00421{bottom:696.360000pt;}
.y49_c00421{bottom:698.440000pt;}
.y46_c00421{bottom:699.226667pt;}
.y47_c00421{bottom:700.360000pt;}
.y48_c00421{bottom:701.306667pt;}
.y42_c00421{bottom:714.440000pt;}
.y44_c00421{bottom:715.400000pt;}
.y43_c00421{bottom:715.773333pt;}
.y40_c00421{bottom:717.693333pt;}
.y41_c00421{bottom:718.640000pt;}
.y3f_c00421{bottom:733.106667pt;}
.y3d_c00421{bottom:733.893333pt;}
.y3e_c00421{bottom:735.026667pt;}
.y39_c00421{bottom:750.440000pt;}
.y3b_c00421{bottom:751.773333pt;}
.y3a_c00421{bottom:752.360000pt;}
.y3c_c00421{bottom:753.306667pt;}
.y31_c00421{bottom:767.026667pt;}
.y36_c00421{bottom:767.973333pt;}
.y35_c00421{bottom:769.106667pt;}
.y37_c00421{bottom:769.306667pt;}
.y32_c00421{bottom:769.693333pt;}
.y33_c00421{bottom:769.893333pt;}
.y38_c00421{bottom:770.640000pt;}
.y34_c00421{bottom:771.026667pt;}
.y2d_c00421{bottom:785.106667pt;}
.y2f_c00421{bottom:786.066667pt;}
.y2c_c00421{bottom:786.440000pt;}
.y2b_c00421{bottom:787.026667pt;}
.y30_c00421{bottom:787.226667pt;}
.y2e_c00421{bottom:788.360000pt;}
.y27_c00421{bottom:803.773333pt;}
.y2a_c00421{bottom:804.360000pt;}
.y28_c00421{bottom:805.306667pt;}
.y29_c00421{bottom:805.693333pt;}
.y25_c00421{bottom:819.026667pt;}
.y24_c00421{bottom:821.106667pt;}
.y26_c00421{bottom:821.893333pt;}
.y23_c00421{bottom:823.026667pt;}
.y22_c00421{bottom:840.360000pt;}
.y20_c00421{bottom:855.026667pt;}
.y21_c00421{bottom:855.400000pt;}
.y1d_c00421{bottom:855.773333pt;}
.y1c_c00421{bottom:856.733333pt;}
.y1e_c00421{bottom:857.693333pt;}
.y1f_c00421{bottom:857.893333pt;}
.y17_c00421{bottom:872.360000pt;}
.y16_c00421{bottom:873.106667pt;}
.y1a_c00421{bottom:874.440000pt;}
.y18_c00421{bottom:875.026667pt;}
.y1b_c00421{bottom:875.973333pt;}
.y19_c00421{bottom:876.360000pt;}
.y11_c00421{bottom:891.400000pt;}
.y12_c00421{bottom:891.773333pt;}
.y10_c00421{bottom:892.360000pt;}
.y14_c00421{bottom:892.733333pt;}
.y15_c00421{bottom:893.306667pt;}
.y13_c00421{bottom:893.693333pt;}
.yf_c00421{bottom:907.026667pt;}
.yd_c00421{bottom:907.773333pt;}
.ye_c00421{bottom:908.733333pt;}
.yc_c00421{bottom:909.693333pt;}
.yb_c00421{bottom:924.360000pt;}
.y9_c00421{bottom:942.640000pt;}
.y3_c00421{bottom:942.826667pt;}
.ya_c00421{bottom:943.026667pt;}
.y6_c00421{bottom:943.773333pt;}
.y8_c00421{bottom:943.973333pt;}
.y4_c00421{bottom:944.560000pt;}
.y7_c00421{bottom:944.733333pt;}
.y5_c00421{bottom:945.693333pt;}
.y2_c00421{bottom:977.306667pt;}
.y1_c00421{bottom:979.600000pt;}
.h8_c00421{height:3.739141pt;}
.h9_c00421{height:14.890964pt;}
.h4_c00421{height:20.466875pt;}
.h1_c00421{height:22.303646pt;}
.h2_c00421{height:27.879557pt;}
.h5_c00421{height:31.618698pt;}
.h7_c00421{height:35.357839pt;}
.h6_c00421{height:39.031380pt;}
.h3_c00421{height:42.770521pt;}
.h0_c00421{height:1186.666667pt;}
.w0_c00421{width:782.666667pt;}
.x0_c00421{left:0.000000pt;}
.x9e_c00421{left:134.666667pt;}
.x2_c00421{left:136.000000pt;}
.x1c_c00421{left:136.960000pt;}
.xd9_c00421{left:146.666667pt;}
.x87_c00421{left:147.626667pt;}
.x73_c00421{left:149.333333pt;}
.x12_c00421{left:150.666667pt;}
.x1d_c00421{left:153.706667pt;}
.x3d_c00421{left:161.706667pt;}
.xd1_c00421{left:162.666667pt;}
.xad_c00421{left:167.040000pt;}
.xa7_c00421{left:168.373333pt;}
.xd6_c00421{left:170.293333pt;}
.x6d_c00421{left:172.960000pt;}
.x1e_c00421{left:176.000000pt;}
.x9f_c00421{left:178.293333pt;}
.x52_c00421{left:179.626667pt;}
.x74_c00421{left:181.706667pt;}
.x97_c00421{left:182.666667pt;}
.xbc_c00421{left:184.000000pt;}
.x90_c00421{left:187.040000pt;}
.x3e_c00421{left:188.960000pt;}
.x30_c00421{left:190.093333pt;}
.x49_c00421{left:192.000000pt;}
.x7a_c00421{left:196.373333pt;}
.x3_c00421{left:198.666667pt;}
.x63_c00421{left:200.000000pt;}
.xa8_c00421{left:202.293333pt;}
.x88_c00421{left:204.000000pt;}
.x3f_c00421{left:205.706667pt;}
.x28_c00421{left:207.040000pt;}
.xcc_c00421{left:208.000000pt;}
.x53_c00421{left:210.293333pt;}
.x4a_c00421{left:212.000000pt;}
.x31_c00421{left:218.666667pt;}
.xb7_c00421{left:222.666667pt;}
.x1f_c00421{left:225.333333pt;}
.x4_c00421{left:226.666667pt;}
.xb2_c00421{left:228.000000pt;}
.x4b_c00421{left:229.333333pt;}
.x40_c00421{left:230.293333pt;}
.x6e_c00421{left:232.373333pt;}
.x59_c00421{left:233.333333pt;}
.xda_c00421{left:234.666667pt;}
.xe2_c00421{left:237.333333pt;}
.x91_c00421{left:240.000000pt;}
.x42_c00421{left:243.626667pt;}
.x13_c00421{left:244.960000pt;}
.x5a_c00421{left:246.666667pt;}
.x9a_c00421{left:249.333333pt;}
.x64_c00421{left:252.573333pt;}
.xe9_c00421{left:254.666667pt;}
.xae_c00421{left:256.960000pt;}
.x32_c00421{left:258.293333pt;}
.x5_c00421{left:260.960000pt;}
.xbd_c00421{left:263.040000pt;}
.x7b_c00421{left:264.000000pt;}
.x41_c00421{left:264.960000pt;}
.xcd_c00421{left:266.293333pt;}
.xb6_c00421{left:268.373333pt;}
.x89_c00421{left:269.333333pt;}
.x20_c00421{left:272.373333pt;}
.x33_c00421{left:275.626667pt;}
.xa0_c00421{left:278.666667pt;}
.x9b_c00421{left:280.000000pt;}
.x65_c00421{left:283.040000pt;}
.x4c_c00421{left:284.373333pt;}
.x81_c00421{left:286.666667pt;}
.x43_c00421{left:287.800000pt;}
.x6_c00421{left:289.333333pt;}
.xe1_c00421{left:292.000000pt;}
.x98_c00421{left:293.706667pt;}
.x92_c00421{left:296.573333pt;}
.x5b_c00421{left:299.626667pt;}
.x7e_c00421{left:301.333333pt;}
.xce_c00421{left:302.293333pt;}
.x21_c00421{left:304.000000pt;}
.x82_c00421{left:307.426667pt;}
.x66_c00421{left:309.706667pt;}
.x75_c00421{left:311.040000pt;}
.x6f_c00421{left:312.373333pt;}
.xe3_c00421{left:313.906667pt;}
.x5c_c00421{left:317.706667pt;}
.x14_c00421{left:318.666667pt;}
.x8a_c00421{left:320.760000pt;}
.xb8_c00421{left:322.293333pt;}
.x29_c00421{left:323.426667pt;}
.xdb_c00421{left:326.666667pt;}
.x7c_c00421{left:328.000000pt;}
.x7_c00421{left:330.093333pt;}
.x99_c00421{left:333.133333pt;}
.x54_c00421{left:334.093333pt;}
.x70_c00421{left:336.000000pt;}
.x76_c00421{left:337.333333pt;}
.x34_c00421{left:341.333333pt;}
.x5d_c00421{left:342.666667pt;}
.x67_c00421{left:344.000000pt;}
.x22_c00421{left:347.626667pt;}
.x83_c00421{left:349.706667pt;}
.x8b_c00421{left:352.000000pt;}
.xc7_c00421{left:352.960000pt;}
.xea_c00421{left:356.373333pt;}
.xd2_c00421{left:357.706667pt;}
.x15_c00421{left:359.626667pt;}
.x8_c00421{left:361.333333pt;}
.xa3_c00421{left:362.666667pt;}
.x1_c00421{left:364.000000pt;}
.x7d_c00421{left:365.333333pt;}
.xe4_c00421{left:366.666667pt;}
.xbe_c00421{left:368.373333pt;}
.x55_c00421{left:369.333333pt;}
.x35_c00421{left:370.666667pt;}
.xc2_c00421{left:372.373333pt;}
.xd3_c00421{left:373.333333pt;}
.x2a_c00421{left:380.373333pt;}
.x44_c00421{left:381.333333pt;}
.x5e_c00421{left:384.373333pt;}
.x4d_c00421{left:385.333333pt;}
.x16_c00421{left:386.466667pt;}
.x7f_c00421{left:388.000000pt;}
.x77_c00421{left:389.706667pt;}
.x9_c00421{left:390.666667pt;}
.x84_c00421{left:392.000000pt;}
.x8c_c00421{left:393.706667pt;}
.xd4_c00421{left:396.000000pt;}
.x68_c00421{left:397.706667pt;}
.xb3_c00421{left:398.666667pt;}
.x71_c00421{left:401.333333pt;}
.xa9_c00421{left:404.960000pt;}
.xcf_c00421{left:408.000000pt;}
.x56_c00421{left:408.960000pt;}
.xd7_c00421{left:410.666667pt;}
.xe5_c00421{left:412.000000pt;}
.x2b_c00421{left:414.293333pt;}
.xa_c00421{left:416.000000pt;}
.x36_c00421{left:417.333333pt;}
.xeb_c00421{left:419.626667pt;}
.x93_c00421{left:423.040000pt;}
.x23_c00421{left:424.000000pt;}
.x5f_c00421{left:424.960000pt;}
.x17_c00421{left:426.466667pt;}
.x4e_c00421{left:428.373333pt;}
.xa4_c00421{left:430.293333pt;}
.x2c_c00421{left:432.960000pt;}
.xe6_c00421{left:440.000000pt;}
.x45_c00421{left:441.333333pt;}
.x60_c00421{left:442.293333pt;}
.xd0_c00421{left:443.626667pt;}
.x85_c00421{left:444.760000pt;}
.xaf_c00421{left:446.666667pt;}
.xb_c00421{left:448.000000pt;}
.xc3_c00421{left:451.040000pt;}
.xdc_c00421{left:453.706667pt;}
.x78_c00421{left:455.626667pt;}
.xc8_c00421{left:457.333333pt;}
.x18_c00421{left:458.293333pt;}
.xb0_c00421{left:462.666667pt;}
.x72_c00421{left:464.000000pt;}
.x86_c00421{left:466.293333pt;}
.xa1_c00421{left:467.626667pt;}
.xbf_c00421{left:470.666667pt;}
.x80_c00421{left:473.706667pt;}
.xdd_c00421{left:474.666667pt;}
.xb4_c00421{left:475.800000pt;}
.x8d_c00421{left:477.333333pt;}
.xc4_c00421{left:478.666667pt;}
.x37_c00421{left:480.373333pt;}
.xc_c00421{left:481.333333pt;}
.x94_c00421{left:486.293333pt;}
.x46_c00421{left:488.000000pt;}
.x24_c00421{left:490.293333pt;}
.x2d_c00421{left:492.960000pt;}
.xc9_c00421{left:496.000000pt;}
.x69_c00421{left:496.960000pt;}
.xaa_c00421{left:500.000000pt;}
.xc0_c00421{left:500.960000pt;}
.x95_c00421{left:504.373333pt;}
.xd8_c00421{left:505.333333pt;}
.xd_c00421{left:506.293333pt;}
.xb5_c00421{left:509.706667pt;}
.xc5_c00421{left:510.666667pt;}
.x8e_c00421{left:511.626667pt;}
.x19_c00421{left:516.000000pt;}
.x25_c00421{left:520.373333pt;}
.x38_c00421{left:521.333333pt;}
.xb1_c00421{left:522.666667pt;}
.xe7_c00421{left:524.000000pt;}
.x9c_c00421{left:526.293333pt;}
.x47_c00421{left:528.373333pt;}
.x4f_c00421{left:530.466667pt;}
.x57_c00421{left:532.373333pt;}
.x39_c00421{left:533.706667pt;}
.xe_c00421{left:535.040000pt;}
.x6a_c00421{left:542.666667pt;}
.xd5_c00421{left:544.000000pt;}
.x8f_c00421{left:545.706667pt;}
.xe8_c00421{left:548.000000pt;}
.xca_c00421{left:549.706667pt;}
.xf_c00421{left:552.000000pt;}
.x1a_c00421{left:553.333333pt;}
.xb9_c00421{left:556.000000pt;}
.x2e_c00421{left:560.000000pt;}
.xde_c00421{left:562.293333pt;}
.xa2_c00421{left:564.960000pt;}
.x3a_c00421{left:566.666667pt;}
.xba_c00421{left:568.373333pt;}
.x50_c00421{left:569.706667pt;}
.xc6_c00421{left:570.666667pt;}
.x6b_c00421{left:574.666667pt;}
.x96_c00421{left:575.626667pt;}
.xcb_c00421{left:577.333333pt;}
.x26_c00421{left:582.666667pt;}
.x10_c00421{left:585.333333pt;}
.xc1_c00421{left:586.666667pt;}
.x61_c00421{left:588.000000pt;}
.x1b_c00421{left:589.706667pt;}
.x48_c00421{left:591.626667pt;}
.xa5_c00421{left:594.666667pt;}
.x79_c00421{left:597.706667pt;}
.xab_c00421{left:601.706667pt;}
.x51_c00421{left:606.293333pt;}
.x3b_c00421{left:608.000000pt;}
.xa6_c00421{left:608.960000pt;}
.xdf_c00421{left:612.000000pt;}
.xbb_c00421{left:612.960000pt;}
.x2f_c00421{left:616.573333pt;}
.x9d_c00421{left:619.626667pt;}
.xe0_c00421{left:620.960000pt;}
.xac_c00421{left:626.293333pt;}
.x62_c00421{left:628.373333pt;}
.x6c_c00421{left:631.040000pt;}
.x58_c00421{left:632.000000pt;}
.x11_c00421{left:636.000000pt;}
.x3c_c00421{left:638.293333pt;}
.x27_c00421{left:639.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_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_869ece4348047e42a2451ae2.woff2')format("woff");}.ff1_c00422{font-family:ff1_c00422;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mac_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);}
.me4_c00422{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.md1_c00422{transform:matrix(0.305498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305498,0.000000,0.000000,0.250000,0,0);}
.ma8_c00422{transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);}
.maa_c00422{transform:matrix(0.328151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328151,0.000000,0.000000,0.250000,0,0);}
.mb9_c00422{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.me3_c00422{transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);}
.md0_c00422{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m36_c00422{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.mbb_c00422{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.mb7_c00422{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m8c_c00422{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.mcf_c00422{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m59_c00422{transform:matrix(0.372316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372316,0.000000,0.000000,0.250000,0,0);}
.m6a_c00422{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m8b_c00422{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.md9_c00422{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.mc9_c00422{transform:matrix(0.381513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381513,0.000000,0.000000,0.250000,0,0);}
.me2_c00422{transform:matrix(0.382285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382285,0.000000,0.000000,0.250000,0,0);}
.m97_c00422{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.mde_c00422{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.mbe_c00422{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m1a_c00422{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.mce_c00422{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mc5_c00422{transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);}
.m8e_c00422{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m56_c00422{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m7_c00422{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.md8_c00422{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.maf_c00422{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.mb0_c00422{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.mb1_c00422{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m8f_c00422{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m11_c00422{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);}
.mc6_c00422{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m61_c00422{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m63_c00422{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m98_c00422{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m23_c00422{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m38_c00422{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m26_c00422{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m62_c00422{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m3a_c00422{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m45_c00422{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.mcb_c00422{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m89_c00422{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m92_c00422{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m16_c00422{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.md5_c00422{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mc7_c00422{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m9a_c00422{transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);}
.m48_c00422{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mc1_c00422{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mc2_c00422{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m12_c00422{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m44_c00422{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.mb5_c00422{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m66_c00422{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.ma_c00422{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m15_c00422{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.md6_c00422{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m9f_c00422{transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);}
.m3f_c00422{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mae_c00422{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m2e_c00422{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.ma0_c00422{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.ma9_c00422{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m72_c00422{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m20_c00422{transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);}
.m7d_c00422{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m52_c00422{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m87_c00422{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.mca_c00422{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m70_c00422{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m9b_c00422{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m96_c00422{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.md3_c00422{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m35_c00422{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.md4_c00422{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.mc3_c00422{transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);}
.mdb_c00422{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mcc_c00422{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mb_c00422{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.m3_c00422{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.m2a_c00422{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m39_c00422{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m86_c00422{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.m84_c00422{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m54_c00422{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m29_c00422{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m7b_c00422{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.m2b_c00422{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m5d_c00422{transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);}
.mab_c00422{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m5c_c00422{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m58_c00422{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m94_c00422{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m8_c00422{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mad_c00422{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m2f_c00422{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m22_c00422{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m80_c00422{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m6e_c00422{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m1d_c00422{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.md7_c00422{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m1_c00422{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m9e_c00422{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m82_c00422{transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);}
.m65_c00422{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m1c_c00422{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);}
.mb2_c00422{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m33_c00422{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m67_c00422{transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);}
.md2_c00422{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m79_c00422{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m34_c00422{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m69_c00422{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m75_c00422{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m85_c00422{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m1f_c00422{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m17_c00422{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m74_c00422{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m42_c00422{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m41_c00422{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m91_c00422{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m1b_c00422{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m77_c00422{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m5_c00422{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m6c_c00422{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.me0_c00422{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mb6_c00422{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mc0_c00422{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m37_c00422{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m25_c00422{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m49_c00422{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m10_c00422{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mcd_c00422{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m4a_c00422{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m51_c00422{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m4_c00422{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m4f_c00422{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m19_c00422{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m14_c00422{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mc4_c00422{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m27_c00422{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m2d_c00422{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m81_c00422{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m71_c00422{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m57_c00422{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m3d_c00422{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m64_c00422{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mb8_c00422{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mbc_c00422{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.ma3_c00422{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.m68_c00422{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m43_c00422{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m6_c00422{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.me_c00422{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.ma5_c00422{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m53_c00422{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m5a_c00422{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m78_c00422{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.mf_c00422{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m99_c00422{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m4c_c00422{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mb4_c00422{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m50_c00422{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m83_c00422{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);}
.m30_c00422{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m1e_c00422{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m5e_c00422{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m47_c00422{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.ma6_c00422{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mbf_c00422{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m9c_c00422{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.ma2_c00422{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m2_c00422{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m3b_c00422{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m5f_c00422{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m5b_c00422{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m6d_c00422{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.mba_c00422{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m95_c00422{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m88_c00422{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m93_c00422{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mbd_c00422{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.me6_c00422{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m60_c00422{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m24_c00422{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m90_c00422{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mdc_c00422{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m7f_c00422{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);}
.m7a_c00422{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m73_c00422{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m8a_c00422{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m4b_c00422{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m9_c00422{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m76_c00422{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m8d_c00422{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m7e_c00422{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.mb3_c00422{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_c00422{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m7c_c00422{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m0_c00422{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m32_c00422{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m3c_c00422{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.mc_c00422{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m4d_c00422{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.md_c00422{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.ma7_c00422{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m21_c00422{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.m6b_c00422{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m4e_c00422{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m55_c00422{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m31_c00422{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.ma4_c00422{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m46_c00422{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m28_c00422{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m2c_c00422{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mc8_c00422{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m6f_c00422{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m40_c00422{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m3e_c00422{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m9d_c00422{transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);}
.ma1_c00422{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m18_c00422{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mda_c00422{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.me5_c00422{transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);}
.mdd_c00422{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m13_c00422{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.me1_c00422{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws2_c00422{word-spacing:-16.889280px;}
.ws0_c00422{word-spacing:-3.584672px;}
.ws1_c00422{word-spacing:-2.008560px;}
.ws3_c00422{word-spacing:0.000000px;}
._0_c00422{width:7.279199px;}
.fc0_c00422{color:transparent;}
.fs6_c00422{font-size:3.420000px;}
.fs5_c00422{font-size:18.720000px;}
.fs0_c00422{font-size:20.400000px;}
.fs3_c00422{font-size:25.500000px;}
.fs1_c00422{font-size:28.920000px;}
.fs4_c00422{font-size:32.340000px;}
.fs2_c00422{font-size:35.700000px;}
.fs7_c00422{font-size:39.120000px;}
.y0_c00422{bottom:0.000000px;}
.yc1_c00422{bottom:251.745000px;}
.ybd_c00422{bottom:253.245000px;}
.yc0_c00422{bottom:253.905000px;}
.ybe_c00422{bottom:254.130000px;}
.ybf_c00422{bottom:255.405000px;}
.ybb_c00422{bottom:271.680000px;}
.ybc_c00422{bottom:272.745000px;}
.yb9_c00422{bottom:274.905000px;}
.yba_c00422{bottom:274.920000px;}
.yb8_c00422{bottom:290.970000px;}
.yb5_c00422{bottom:292.245000px;}
.yb6_c00422{bottom:293.130000px;}
.yb7_c00422{bottom:293.745000px;}
.yb3_c00422{bottom:294.405000px;}
.yb4_c00422{bottom:295.470000px;}
.yae_c00422{bottom:310.905000px;}
.yb0_c00422{bottom:311.745000px;}
.yb2_c00422{bottom:311.970000px;}
.yb1_c00422{bottom:313.905000px;}
.yaf_c00422{bottom:314.130000px;}
.ya9_c00422{bottom:332.325000px;}
.yab_c00422{bottom:332.745000px;}
.yac_c00422{bottom:333.405000px;}
.yad_c00422{bottom:333.825000px;}
.yaa_c00422{bottom:334.905000px;}
.ya7_c00422{bottom:350.745000px;}
.ya8_c00422{bottom:351.825000px;}
.ya3_c00422{bottom:352.245000px;}
.ya6_c00422{bottom:352.905000px;}
.ya5_c00422{bottom:353.130000px;}
.ya4_c00422{bottom:354.405000px;}
.ya0_c00422{bottom:370.245000px;}
.y9e_c00422{bottom:371.745000px;}
.ya2_c00422{bottom:372.405000px;}
.y9f_c00422{bottom:372.630000px;}
.ya1_c00422{bottom:373.905000px;}
.y9a_c00422{bottom:390.180000px;}
.y9d_c00422{bottom:391.245000px;}
.y9c_c00422{bottom:392.970000px;}
.y9b_c00422{bottom:393.405000px;}
.y98_c00422{bottom:410.745000px;}
.y99_c00422{bottom:411.630000px;}
.y97_c00422{bottom:411.825000px;}
.y96_c00422{bottom:412.905000px;}
.y94_c00422{bottom:430.245000px;}
.y92_c00422{bottom:432.405000px;}
.y95_c00422{bottom:432.630000px;}
.y93_c00422{bottom:433.470000px;}
.y8f_c00422{bottom:449.745000px;}
.y8e_c00422{bottom:451.905000px;}
.y91_c00422{bottom:452.130000px;}
.y90_c00422{bottom:452.970000px;}
.y8d_c00422{bottom:468.405000px;}
.y8b_c00422{bottom:470.745000px;}
.y8c_c00422{bottom:471.630000px;}
.y8a_c00422{bottom:472.470000px;}
.y89_c00422{bottom:472.905000px;}
.y88_c00422{bottom:489.825000px;}
.y86_c00422{bottom:490.245000px;}
.y87_c00422{bottom:492.405000px;}
.y83_c00422{bottom:509.745000px;}
.y84_c00422{bottom:510.825000px;}
.y85_c00422{bottom:511.470000px;}
.y82_c00422{bottom:511.905000px;}
.y81_c00422{bottom:530.130000px;}
.y80_c00422{bottom:530.325000px;}
.y7f_c00422{bottom:530.970000px;}
.y7e_c00422{bottom:531.405000px;}
.y7d_c00422{bottom:531.630000px;}
.y7a_c00422{bottom:548.745000px;}
.y78_c00422{bottom:549.630000px;}
.y7c_c00422{bottom:549.825000px;}
.y79_c00422{bottom:550.470000px;}
.y77_c00422{bottom:550.905000px;}
.y7b_c00422{bottom:551.130000px;}
.y76_c00422{bottom:570.405000px;}
.y74_c00422{bottom:586.905000px;}
.y75_c00422{bottom:588.180000px;}
.y72_c00422{bottom:589.245000px;}
.y73_c00422{bottom:590.130000px;}
.y71_c00422{bottom:591.405000px;}
.y6f_c00422{bottom:606.405000px;}
.y70_c00422{bottom:608.745000px;}
.y6d_c00422{bottom:609.630000px;}
.y6e_c00422{bottom:610.905000px;}
.y6a_c00422{bottom:625.905000px;}
.y68_c00422{bottom:626.745000px;}
.y6c_c00422{bottom:628.245000px;}
.y6b_c00422{bottom:629.130000px;}
.y69_c00422{bottom:630.405000px;}
.y66_c00422{bottom:645.405000px;}
.y67_c00422{bottom:646.245000px;}
.y64_c00422{bottom:647.745000px;}
.y65_c00422{bottom:649.470000px;}
.y63_c00422{bottom:649.905000px;}
.y60_c00422{bottom:665.745000px;}
.y62_c00422{bottom:668.130000px;}
.y61_c00422{bottom:669.405000px;}
.y5e_c00422{bottom:688.245000px;}
.y5f_c00422{bottom:688.905000px;}
.y5a_c00422{bottom:689.130000px;}
.y5b_c00422{bottom:689.325000px;}
.y5d_c00422{bottom:689.970000px;}
.y5c_c00422{bottom:690.405000px;}
.y58_c00422{bottom:706.245000px;}
.y59_c00422{bottom:708.405000px;}
.y57_c00422{bottom:724.905000px;}
.y55_c00422{bottom:725.745000px;}
.y53_c00422{bottom:727.905000px;}
.y56_c00422{bottom:728.970000px;}
.y54_c00422{bottom:729.405000px;}
.y51_c00422{bottom:744.405000px;}
.y4e_c00422{bottom:745.245000px;}
.y4f_c00422{bottom:746.745000px;}
.y52_c00422{bottom:747.630000px;}
.y50_c00422{bottom:748.905000px;}
.y4c_c00422{bottom:763.905000px;}
.y4d_c00422{bottom:765.405000px;}
.y4b_c00422{bottom:767.325000px;}
.y4a_c00422{bottom:768.405000px;}
.y47_c00422{bottom:783.405000px;}
.y49_c00422{bottom:785.745000px;}
.y48_c00422{bottom:786.630000px;}
.y46_c00422{bottom:787.905000px;}
.y43_c00422{bottom:804.825000px;}
.y44_c00422{bottom:805.245000px;}
.y45_c00422{bottom:806.130000px;}
.y42_c00422{bottom:806.325000px;}
.y41_c00422{bottom:807.405000px;}
.y3f_c00422{bottom:824.745000px;}
.y3d_c00422{bottom:824.970000px;}
.y40_c00422{bottom:825.825000px;}
.y3e_c00422{bottom:826.905000px;}
.y39_c00422{bottom:844.680000px;}
.y3c_c00422{bottom:845.745000px;}
.y38_c00422{bottom:846.630000px;}
.y3b_c00422{bottom:847.470000px;}
.y3a_c00422{bottom:847.905000px;}
.y33_c00422{bottom:862.905000px;}
.y32_c00422{bottom:863.745000px;}
.y37_c00422{bottom:864.825000px;}
.y35_c00422{bottom:865.245000px;}
.y31_c00422{bottom:865.905000px;}
.y34_c00422{bottom:866.130000px;}
.y36_c00422{bottom:867.405000px;}
.y30_c00422{bottom:883.245000px;}
.y2d_c00422{bottom:885.405000px;}
.y2e_c00422{bottom:885.630000px;}
.y2c_c00422{bottom:886.470000px;}
.y2f_c00422{bottom:886.905000px;}
.y27_c00422{bottom:902.745000px;}
.y2a_c00422{bottom:904.245000px;}
.y2b_c00422{bottom:905.130000px;}
.y29_c00422{bottom:905.325000px;}
.y28_c00422{bottom:906.405000px;}
.y26_c00422{bottom:921.405000px;}
.y23_c00422{bottom:922.470000px;}
.y25_c00422{bottom:923.745000px;}
.y24_c00422{bottom:924.630000px;}
.y22_c00422{bottom:925.050000px;}
.y21_c00422{bottom:925.905000px;}
.y1d_c00422{bottom:941.745000px;}
.y1e_c00422{bottom:943.245000px;}
.y1f_c00422{bottom:944.130000px;}
.y20_c00422{bottom:944.325000px;}
.y1b_c00422{bottom:944.970000px;}
.y1c_c00422{bottom:945.405000px;}
.y18_c00422{bottom:961.905000px;}
.y19_c00422{bottom:963.825000px;}
.y16_c00422{bottom:964.905000px;}
.y17_c00422{bottom:965.130000px;}
.y1a_c00422{bottom:965.970000px;}
.y12_c00422{bottom:981.825000px;}
.y13_c00422{bottom:982.245000px;}
.y15_c00422{bottom:983.325000px;}
.y14_c00422{bottom:984.405000px;}
.y11_c00422{bottom:984.630000px;}
.y10_c00422{bottom:1001.745000px;}
.yf_c00422{bottom:1003.905000px;}
.yb_c00422{bottom:1021.245000px;}
.yd_c00422{bottom:1023.405000px;}
.yc_c00422{bottom:1023.420000px;}
.ye_c00422{bottom:1023.630000px;}
.ya_c00422{bottom:1040.745000px;}
.y9_c00422{bottom:1042.905000px;}
.y8_c00422{bottom:1059.405000px;}
.y4_c00422{bottom:1061.745000px;}
.y7_c00422{bottom:1062.630000px;}
.y6_c00422{bottom:1062.825000px;}
.y5_c00422{bottom:1063.470000px;}
.y3_c00422{bottom:1063.905000px;}
.y2_c00422{bottom:1098.405000px;}
.y1_c00422{bottom:1100.550000px;}
.h7_c00422{height:4.206533px;}
.h6_c00422{height:23.025234px;}
.h1_c00422{height:25.091602px;}
.h4_c00422{height:31.364502px;}
.h2_c00422{height:35.571035px;}
.h5_c00422{height:39.777568px;}
.h3_c00422{height:43.910303px;}
.h8_c00422{height:48.116836px;}
.h0_c00422{height:1335.000000px;}
.w0_c00422{width:880.500000px;}
.x0_c00422{left:0.000000px;}
.x2d_c00422{left:148.920000px;}
.x13_c00422{left:150.420000px;}
.xce_c00422{left:151.500000px;}
.x104_c00422{left:152.580000px;}
.x3_c00422{left:165.000000px;}
.xc4_c00422{left:166.500000px;}
.xf5_c00422{left:168.000000px;}
.xd7_c00422{left:172.920000px;}
.x79_c00422{left:174.000000px;}
.x14_c00422{left:177.000000px;}
.xb8_c00422{left:178.920000px;}
.x96_c00422{left:183.420000px;}
.x5b_c00422{left:184.500000px;}
.x37_c00422{left:188.580000px;}
.x83_c00422{left:190.920000px;}
.x2e_c00422{left:192.000000px;}
.xa8_c00422{left:193.500000px;}
.x4_c00422{left:195.420000px;}
.xc5_c00422{left:196.920000px;}
.x4f_c00422{left:198.855000px;}
.xd8_c00422{left:201.000000px;}
.x5c_c00422{left:202.080000px;}
.xdd_c00422{left:205.500000px;}
.xf3_c00422{left:210.420000px;}
.x112_c00422{left:211.920000px;}
.xde_c00422{left:213.000000px;}
.x15_c00422{left:214.500000px;}
.xbf_c00422{left:215.580000px;}
.x50_c00422{left:217.500000px;}
.xe7_c00422{left:219.420000px;}
.x20_c00422{left:220.500000px;}
.xae_c00422{left:223.500000px;}
.x8d_c00422{left:226.920000px;}
.x6f_c00422{left:229.080000px;}
.x16_c00422{left:231.420000px;}
.x7a_c00422{left:232.500000px;}
.x63_c00422{left:234.420000px;}
.xee_c00422{left:235.920000px;}
.xfc_c00422{left:237.420000px;}
.x2f_c00422{left:238.920000px;}
.xdf_c00422{left:240.000000px;}
.xb9_c00422{left:241.920000px;}
.xd9_c00422{left:243.000000px;}
.x105_c00422{left:244.275000px;}
.x42_c00422{left:245.580000px;}
.xe3_c00422{left:247.500000px;}
.x38_c00422{left:249.000000px;}
.x116_c00422{left:250.500000px;}
.x17_c00422{left:252.000000px;}
.x5_c00422{left:254.580000px;}
.x51_c00422{left:256.920000px;}
.xc6_c00422{left:258.420000px;}
.x10c_c00422{left:259.920000px;}
.x97_c00422{left:261.000000px;}
.x70_c00422{left:263.580000px;}
.x43_c00422{left:265.920000px;}
.xfd_c00422{left:267.000000px;}
.xaf_c00422{left:268.500000px;}
.xba_c00422{left:269.580000px;}
.x6_c00422{left:271.920000px;}
.x18_c00422{left:273.000000px;}
.x84_c00422{left:274.500000px;}
.x64_c00422{left:276.000000px;}
.x7b_c00422{left:279.000000px;}
.xe8_c00422{left:283.500000px;}
.xc7_c00422{left:285.000000px;}
.x8e_c00422{left:287.580000px;}
.xef_c00422{left:290.580000px;}
.x44_c00422{left:293.580000px;}
.xe9_c00422{left:294.855000px;}
.x7_c00422{left:297.000000px;}
.x21_c00422{left:298.500000px;}
.x39_c00422{left:300.000000px;}
.xb0_c00422{left:301.500000px;}
.xbb_c00422{left:303.000000px;}
.x19_c00422{left:306.420000px;}
.xa9_c00422{left:309.420000px;}
.x106_c00422{left:312.000000px;}
.x9b_c00422{left:313.920000px;}
.xc8_c00422{left:315.420000px;}
.x71_c00422{left:318.420000px;}
.xc0_c00422{left:319.920000px;}
.xbc_c00422{left:321.420000px;}
.x85_c00422{left:322.500000px;}
.x8_c00422{left:327.000000px;}
.x3a_c00422{left:328.080000px;}
.xe0_c00422{left:330.000000px;}
.x22_c00422{left:331.500000px;}
.x119_c00422{left:332.580000px;}
.x45_c00422{left:334.500000px;}
.xea_c00422{left:338.145000px;}
.xf4_c00422{left:339.420000px;}
.x52_c00422{left:340.920000px;}
.x10d_c00422{left:343.920000px;}
.x8f_c00422{left:345.000000px;}
.x72_c00422{left:346.080000px;}
.xaa_c00422{left:348.000000px;}
.x98_c00422{left:349.500000px;}
.xa0_c00422{left:351.000000px;}
.xcf_c00422{left:352.500000px;}
.x113_c00422{left:355.500000px;}
.xb1_c00422{left:360.420000px;}
.xc9_c00422{left:361.500000px;}
.x30_c00422{left:362.580000px;}
.x86_c00422{left:364.500000px;}
.x65_c00422{left:365.580000px;}
.xd0_c00422{left:367.920000px;}
.xe4_c00422{left:369.000000px;}
.x46_c00422{left:370.080000px;}
.xf9_c00422{left:371.580000px;}
.x1a_c00422{left:373.920000px;}
.xf6_c00422{left:376.500000px;}
.x118_c00422{left:377.580000px;}
.x23_c00422{left:379.080000px;}
.x9c_c00422{left:382.500000px;}
.x66_c00422{left:383.580000px;}
.x90_c00422{left:385.500000px;}
.x5d_c00422{left:388.500000px;}
.x47_c00422{left:390.420000px;}
.xe1_c00422{left:391.500000px;}
.x109_c00422{left:393.420000px;}
.x11a_c00422{left:394.500000px;}
.x24_c00422{left:399.420000px;}
.xab_c00422{left:400.500000px;}
.x9_c00422{left:402.000000px;}
.x1_c00422{left:403.500000px;}
.xa1_c00422{left:404.580000px;}
.x117_c00422{left:406.080000px;}
.x31_c00422{left:409.080000px;}
.x7c_c00422{left:411.000000px;}
.x73_c00422{left:412.500000px;}
.x9d_c00422{left:413.580000px;}
.xf7_c00422{left:415.500000px;}
.x3b_c00422{left:417.000000px;}
.xda_c00422{left:418.080000px;}
.xdc_c00422{left:420.420000px;}
.x87_c00422{left:421.500000px;}
.xc1_c00422{left:424.500000px;}
.x25_c00422{left:426.420000px;}
.xfa_c00422{left:427.500000px;}
.x67_c00422{left:429.000000px;}
.xb2_c00422{left:430.920000px;}
.xbd_c00422{left:434.580000px;}
.x53_c00422{left:438.000000px;}
.xd1_c00422{left:439.080000px;}
.x5e_c00422{left:441.000000px;}
.x74_c00422{left:445.500000px;}
.x10e_c00422{left:447.420000px;}
.xa2_c00422{left:450.420000px;}
.x48_c00422{left:453.000000px;}
.x1b_c00422{left:454.500000px;}
.x91_c00422{left:456.000000px;}
.x54_c00422{left:459.000000px;}
.x68_c00422{left:460.080000px;}
.xc2_c00422{left:463.920000px;}
.xa_c00422{left:468.000000px;}
.xfe_c00422{left:469.500000px;}
.x1c_c00422{left:470.580000px;}
.x75_c00422{left:472.920000px;}
.x26_c00422{left:474.000000px;}
.x7d_c00422{left:475.500000px;}
.x69_c00422{left:478.920000px;}
.xf0_c00422{left:480.000000px;}
.xa3_c00422{left:481.080000px;}
.xb_c00422{left:484.500000px;}
.x49_c00422{left:486.000000px;}
.xeb_c00422{left:489.000000px;}
.x100_c00422{left:490.080000px;}
.x92_c00422{left:491.580000px;}
.x99_c00422{left:493.500000px;}
.x88_c00422{left:495.420000px;}
.x5f_c00422{left:496.920000px;}
.xb3_c00422{left:499.080000px;}
.xf1_c00422{left:501.000000px;}
.x3c_c00422{left:504.420000px;}
.x6a_c00422{left:505.500000px;}
.x7e_c00422{left:507.420000px;}
.x93_c00422{left:510.420000px;}
.xc_c00422{left:511.920000px;}
.x10f_c00422{left:513.420000px;}
.x1d_c00422{left:516.000000px;}
.x76_c00422{left:517.080000px;}
.x55_c00422{left:519.000000px;}
.xc3_c00422{left:520.920000px;}
.xac_c00422{left:522.000000px;}
.xe5_c00422{left:523.500000px;}
.x9a_c00422{left:525.420000px;}
.x4a_c00422{left:526.500000px;}
.x27_c00422{left:527.580000px;}
.xd2_c00422{left:531.000000px;}
.x89_c00422{left:532.920000px;}
.x60_c00422{left:534.420000px;}
.x9e_c00422{left:535.500000px;}
.x3d_c00422{left:537.000000px;}
.x1e_c00422{left:538.920000px;}
.x114_c00422{left:540.420000px;}
.x6b_c00422{left:544.500000px;}
.x28_c00422{left:546.420000px;}
.xb4_c00422{left:547.920000px;}
.xd_c00422{left:550.500000px;}
.x77_c00422{left:551.580000px;}
.x4b_c00422{left:553.920000px;}
.xca_c00422{left:555.420000px;}
.x101_c00422{left:556.500000px;}
.x56_c00422{left:559.500000px;}
.x7f_c00422{left:561.000000px;}
.x61_c00422{left:564.000000px;}
.xd3_c00422{left:565.500000px;}
.x32_c00422{left:567.420000px;}
.x10a_c00422{left:568.500000px;}
.xec_c00422{left:571.920000px;}
.xa4_c00422{left:573.000000px;}
.x29_c00422{left:574.080000px;}
.xdb_c00422{left:576.000000px;}
.xd4_c00422{left:577.920000px;}
.x57_c00422{left:579.000000px;}
.xcb_c00422{left:580.920000px;}
.x62_c00422{left:583.080000px;}
.x3e_c00422{left:585.000000px;}
.xfb_c00422{left:586.500000px;}
.x4c_c00422{left:587.580000px;}
.x6c_c00422{left:589.500000px;}
.x10b_c00422{left:591.000000px;}
.xe6_c00422{left:592.500000px;}
.x94_c00422{left:593.580000px;}
.x110_c00422{left:598.500000px;}
.xa5_c00422{left:600.000000px;}
.x115_c00422{left:601.500000px;}
.x3f_c00422{left:602.580000px;}
.xf2_c00422{left:604.080000px;}
.xe_c00422{left:606.000000px;}
.x1f_c00422{left:607.080000px;}
.x95_c00422{left:612.420000px;}
.x33_c00422{left:613.500000px;}
.xd5_c00422{left:614.580000px;}
.x2a_c00422{left:616.920000px;}
.x58_c00422{left:618.420000px;}
.x4d_c00422{left:621.000000px;}
.xf_c00422{left:624.000000px;}
.x9f_c00422{left:625.920000px;}
.x6d_c00422{left:627.000000px;}
.x80_c00422{left:630.420000px;}
.x107_c00422{left:634.500000px;}
.x40_c00422{left:636.420000px;}
.xbe_c00422{left:637.920000px;}
.x10_c00422{left:639.000000px;}
.x8a_c00422{left:641.580000px;}
.x102_c00422{left:643.920000px;}
.x34_c00422{left:646.500000px;}
.xcc_c00422{left:647.580000px;}
.xff_c00422{left:651.420000px;}
.x108_c00422{left:652.920000px;}
.x11_c00422{left:654.420000px;}
.x4e_c00422{left:655.500000px;}
.xa6_c00422{left:657.000000px;}
.xb5_c00422{left:658.080000px;}
.x59_c00422{left:660.420000px;}
.x8b_c00422{left:661.920000px;}
.x35_c00422{left:663.855000px;}
.x2b_c00422{left:666.000000px;}
.x81_c00422{left:667.500000px;}
.xcd_c00422{left:668.580000px;}
.x103_c00422{left:670.920000px;}
.xe2_c00422{left:673.920000px;}
.x111_c00422{left:675.000000px;}
.xb6_c00422{left:678.420000px;}
.x41_c00422{left:681.000000px;}
.x2c_c00422{left:683.580000px;}
.xad_c00422{left:685.500000px;}
.x8c_c00422{left:688.500000px;}
.x5a_c00422{left:690.420000px;}
.xa7_c00422{left:693.000000px;}
.xd6_c00422{left:694.920000px;}
.x78_c00422{left:696.420000px;}
.x12_c00422{left:700.080000px;}
.x2_c00422{left:701.580000px;}
.xf8_c00422{left:703.500000px;}
.x36_c00422{left:705.420000px;}
.xb7_c00422{left:706.920000px;}
.x82_c00422{left:710.580000px;}
.xed_c00422{left:718.500000px;}
.x6e_c00422{left:720.000000px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.ls0_c00422{letter-spacing:0.000000pt;}
.ws2_c00422{word-spacing:-15.012693pt;}
.ws0_c00422{word-spacing:-3.186375pt;}
.ws1_c00422{word-spacing:-1.785387pt;}
.ws3_c00422{word-spacing:0.000000pt;}
._0_c00422{width:6.470399pt;}
.fs6_c00422{font-size:3.040000pt;}
.fs5_c00422{font-size:16.640000pt;}
.fs0_c00422{font-size:18.133333pt;}
.fs3_c00422{font-size:22.666667pt;}
.fs1_c00422{font-size:25.706667pt;}
.fs4_c00422{font-size:28.746667pt;}
.fs2_c00422{font-size:31.733333pt;}
.fs7_c00422{font-size:34.773333pt;}
.y0_c00422{bottom:0.000000pt;}
.yc1_c00422{bottom:223.773333pt;}
.ybd_c00422{bottom:225.106667pt;}
.yc0_c00422{bottom:225.693333pt;}
.ybe_c00422{bottom:225.893333pt;}
.ybf_c00422{bottom:227.026667pt;}
.ybb_c00422{bottom:241.493333pt;}
.ybc_c00422{bottom:242.440000pt;}
.yb9_c00422{bottom:244.360000pt;}
.yba_c00422{bottom:244.373333pt;}
.yb8_c00422{bottom:258.640000pt;}
.yb5_c00422{bottom:259.773333pt;}
.yb6_c00422{bottom:260.560000pt;}
.yb7_c00422{bottom:261.106667pt;}
.yb3_c00422{bottom:261.693333pt;}
.yb4_c00422{bottom:262.640000pt;}
.yae_c00422{bottom:276.360000pt;}
.yb0_c00422{bottom:277.106667pt;}
.yb2_c00422{bottom:277.306667pt;}
.yb1_c00422{bottom:279.026667pt;}
.yaf_c00422{bottom:279.226667pt;}
.ya9_c00422{bottom:295.400000pt;}
.yab_c00422{bottom:295.773333pt;}
.yac_c00422{bottom:296.360000pt;}
.yad_c00422{bottom:296.733333pt;}
.yaa_c00422{bottom:297.693333pt;}
.ya7_c00422{bottom:311.773333pt;}
.ya8_c00422{bottom:312.733333pt;}
.ya3_c00422{bottom:313.106667pt;}
.ya6_c00422{bottom:313.693333pt;}
.ya5_c00422{bottom:313.893333pt;}
.ya4_c00422{bottom:315.026667pt;}
.ya0_c00422{bottom:329.106667pt;}
.y9e_c00422{bottom:330.440000pt;}
.ya2_c00422{bottom:331.026667pt;}
.y9f_c00422{bottom:331.226667pt;}
.ya1_c00422{bottom:332.360000pt;}
.y9a_c00422{bottom:346.826667pt;}
.y9d_c00422{bottom:347.773333pt;}
.y9c_c00422{bottom:349.306667pt;}
.y9b_c00422{bottom:349.693333pt;}
.y98_c00422{bottom:365.106667pt;}
.y99_c00422{bottom:365.893333pt;}
.y97_c00422{bottom:366.066667pt;}
.y96_c00422{bottom:367.026667pt;}
.y94_c00422{bottom:382.440000pt;}
.y92_c00422{bottom:384.360000pt;}
.y95_c00422{bottom:384.560000pt;}
.y93_c00422{bottom:385.306667pt;}
.y8f_c00422{bottom:399.773333pt;}
.y8e_c00422{bottom:401.693333pt;}
.y91_c00422{bottom:401.893333pt;}
.y90_c00422{bottom:402.640000pt;}
.y8d_c00422{bottom:416.360000pt;}
.y8b_c00422{bottom:418.440000pt;}
.y8c_c00422{bottom:419.226667pt;}
.y8a_c00422{bottom:419.973333pt;}
.y89_c00422{bottom:420.360000pt;}
.y88_c00422{bottom:435.400000pt;}
.y86_c00422{bottom:435.773333pt;}
.y87_c00422{bottom:437.693333pt;}
.y83_c00422{bottom:453.106667pt;}
.y84_c00422{bottom:454.066667pt;}
.y85_c00422{bottom:454.640000pt;}
.y82_c00422{bottom:455.026667pt;}
.y81_c00422{bottom:471.226667pt;}
.y80_c00422{bottom:471.400000pt;}
.y7f_c00422{bottom:471.973333pt;}
.y7e_c00422{bottom:472.360000pt;}
.y7d_c00422{bottom:472.560000pt;}
.y7a_c00422{bottom:487.773333pt;}
.y78_c00422{bottom:488.560000pt;}
.y7c_c00422{bottom:488.733333pt;}
.y79_c00422{bottom:489.306667pt;}
.y77_c00422{bottom:489.693333pt;}
.y7b_c00422{bottom:489.893333pt;}
.y76_c00422{bottom:507.026667pt;}
.y74_c00422{bottom:521.693333pt;}
.y75_c00422{bottom:522.826667pt;}
.y72_c00422{bottom:523.773333pt;}
.y73_c00422{bottom:524.560000pt;}
.y71_c00422{bottom:525.693333pt;}
.y6f_c00422{bottom:539.026667pt;}
.y70_c00422{bottom:541.106667pt;}
.y6d_c00422{bottom:541.893333pt;}
.y6e_c00422{bottom:543.026667pt;}
.y6a_c00422{bottom:556.360000pt;}
.y68_c00422{bottom:557.106667pt;}
.y6c_c00422{bottom:558.440000pt;}
.y6b_c00422{bottom:559.226667pt;}
.y69_c00422{bottom:560.360000pt;}
.y66_c00422{bottom:573.693333pt;}
.y67_c00422{bottom:574.440000pt;}
.y64_c00422{bottom:575.773333pt;}
.y65_c00422{bottom:577.306667pt;}
.y63_c00422{bottom:577.693333pt;}
.y60_c00422{bottom:591.773333pt;}
.y62_c00422{bottom:593.893333pt;}
.y61_c00422{bottom:595.026667pt;}
.y5e_c00422{bottom:611.773333pt;}
.y5f_c00422{bottom:612.360000pt;}
.y5a_c00422{bottom:612.560000pt;}
.y5b_c00422{bottom:612.733333pt;}
.y5d_c00422{bottom:613.306667pt;}
.y5c_c00422{bottom:613.693333pt;}
.y58_c00422{bottom:627.773333pt;}
.y59_c00422{bottom:629.693333pt;}
.y57_c00422{bottom:644.360000pt;}
.y55_c00422{bottom:645.106667pt;}
.y53_c00422{bottom:647.026667pt;}
.y56_c00422{bottom:647.973333pt;}
.y54_c00422{bottom:648.360000pt;}
.y51_c00422{bottom:661.693333pt;}
.y4e_c00422{bottom:662.440000pt;}
.y4f_c00422{bottom:663.773333pt;}
.y52_c00422{bottom:664.560000pt;}
.y50_c00422{bottom:665.693333pt;}
.y4c_c00422{bottom:679.026667pt;}
.y4d_c00422{bottom:680.360000pt;}
.y4b_c00422{bottom:682.066667pt;}
.y4a_c00422{bottom:683.026667pt;}
.y47_c00422{bottom:696.360000pt;}
.y49_c00422{bottom:698.440000pt;}
.y48_c00422{bottom:699.226667pt;}
.y46_c00422{bottom:700.360000pt;}
.y43_c00422{bottom:715.400000pt;}
.y44_c00422{bottom:715.773333pt;}
.y45_c00422{bottom:716.560000pt;}
.y42_c00422{bottom:716.733333pt;}
.y41_c00422{bottom:717.693333pt;}
.y3f_c00422{bottom:733.106667pt;}
.y3d_c00422{bottom:733.306667pt;}
.y40_c00422{bottom:734.066667pt;}
.y3e_c00422{bottom:735.026667pt;}
.y39_c00422{bottom:750.826667pt;}
.y3c_c00422{bottom:751.773333pt;}
.y38_c00422{bottom:752.560000pt;}
.y3b_c00422{bottom:753.306667pt;}
.y3a_c00422{bottom:753.693333pt;}
.y33_c00422{bottom:767.026667pt;}
.y32_c00422{bottom:767.773333pt;}
.y37_c00422{bottom:768.733333pt;}
.y35_c00422{bottom:769.106667pt;}
.y31_c00422{bottom:769.693333pt;}
.y34_c00422{bottom:769.893333pt;}
.y36_c00422{bottom:771.026667pt;}
.y30_c00422{bottom:785.106667pt;}
.y2d_c00422{bottom:787.026667pt;}
.y2e_c00422{bottom:787.226667pt;}
.y2c_c00422{bottom:787.973333pt;}
.y2f_c00422{bottom:788.360000pt;}
.y27_c00422{bottom:802.440000pt;}
.y2a_c00422{bottom:803.773333pt;}
.y2b_c00422{bottom:804.560000pt;}
.y29_c00422{bottom:804.733333pt;}
.y28_c00422{bottom:805.693333pt;}
.y26_c00422{bottom:819.026667pt;}
.y23_c00422{bottom:819.973333pt;}
.y25_c00422{bottom:821.106667pt;}
.y24_c00422{bottom:821.893333pt;}
.y22_c00422{bottom:822.266667pt;}
.y21_c00422{bottom:823.026667pt;}
.y1d_c00422{bottom:837.106667pt;}
.y1e_c00422{bottom:838.440000pt;}
.y1f_c00422{bottom:839.226667pt;}
.y20_c00422{bottom:839.400000pt;}
.y1b_c00422{bottom:839.973333pt;}
.y1c_c00422{bottom:840.360000pt;}
.y18_c00422{bottom:855.026667pt;}
.y19_c00422{bottom:856.733333pt;}
.y16_c00422{bottom:857.693333pt;}
.y17_c00422{bottom:857.893333pt;}
.y1a_c00422{bottom:858.640000pt;}
.y12_c00422{bottom:872.733333pt;}
.y13_c00422{bottom:873.106667pt;}
.y15_c00422{bottom:874.066667pt;}
.y14_c00422{bottom:875.026667pt;}
.y11_c00422{bottom:875.226667pt;}
.y10_c00422{bottom:890.440000pt;}
.yf_c00422{bottom:892.360000pt;}
.yb_c00422{bottom:907.773333pt;}
.yd_c00422{bottom:909.693333pt;}
.yc_c00422{bottom:909.706667pt;}
.ye_c00422{bottom:909.893333pt;}
.ya_c00422{bottom:925.106667pt;}
.y9_c00422{bottom:927.026667pt;}
.y8_c00422{bottom:941.693333pt;}
.y4_c00422{bottom:943.773333pt;}
.y7_c00422{bottom:944.560000pt;}
.y6_c00422{bottom:944.733333pt;}
.y5_c00422{bottom:945.306667pt;}
.y3_c00422{bottom:945.693333pt;}
.y2_c00422{bottom:976.360000pt;}
.y1_c00422{bottom:978.266667pt;}
.h7_c00422{height:3.739141pt;}
.h6_c00422{height:20.466875pt;}
.h1_c00422{height:22.303646pt;}
.h4_c00422{height:27.879557pt;}
.h2_c00422{height:31.618698pt;}
.h5_c00422{height:35.357839pt;}
.h3_c00422{height:39.031380pt;}
.h8_c00422{height:42.770521pt;}
.h0_c00422{height:1186.666667pt;}
.w0_c00422{width:782.666667pt;}
.x0_c00422{left:0.000000pt;}
.x2d_c00422{left:132.373333pt;}
.x13_c00422{left:133.706667pt;}
.xce_c00422{left:134.666667pt;}
.x104_c00422{left:135.626667pt;}
.x3_c00422{left:146.666667pt;}
.xc4_c00422{left:148.000000pt;}
.xf5_c00422{left:149.333333pt;}
.xd7_c00422{left:153.706667pt;}
.x79_c00422{left:154.666667pt;}
.x14_c00422{left:157.333333pt;}
.xb8_c00422{left:159.040000pt;}
.x96_c00422{left:163.040000pt;}
.x5b_c00422{left:164.000000pt;}
.x37_c00422{left:167.626667pt;}
.x83_c00422{left:169.706667pt;}
.x2e_c00422{left:170.666667pt;}
.xa8_c00422{left:172.000000pt;}
.x4_c00422{left:173.706667pt;}
.xc5_c00422{left:175.040000pt;}
.x4f_c00422{left:176.760000pt;}
.xd8_c00422{left:178.666667pt;}
.x5c_c00422{left:179.626667pt;}
.xdd_c00422{left:182.666667pt;}
.xf3_c00422{left:187.040000pt;}
.x112_c00422{left:188.373333pt;}
.xde_c00422{left:189.333333pt;}
.x15_c00422{left:190.666667pt;}
.xbf_c00422{left:191.626667pt;}
.x50_c00422{left:193.333333pt;}
.xe7_c00422{left:195.040000pt;}
.x20_c00422{left:196.000000pt;}
.xae_c00422{left:198.666667pt;}
.x8d_c00422{left:201.706667pt;}
.x6f_c00422{left:203.626667pt;}
.x16_c00422{left:205.706667pt;}
.x7a_c00422{left:206.666667pt;}
.x63_c00422{left:208.373333pt;}
.xee_c00422{left:209.706667pt;}
.xfc_c00422{left:211.040000pt;}
.x2f_c00422{left:212.373333pt;}
.xdf_c00422{left:213.333333pt;}
.xb9_c00422{left:215.040000pt;}
.xd9_c00422{left:216.000000pt;}
.x105_c00422{left:217.133333pt;}
.x42_c00422{left:218.293333pt;}
.xe3_c00422{left:220.000000pt;}
.x38_c00422{left:221.333333pt;}
.x116_c00422{left:222.666667pt;}
.x17_c00422{left:224.000000pt;}
.x5_c00422{left:226.293333pt;}
.x51_c00422{left:228.373333pt;}
.xc6_c00422{left:229.706667pt;}
.x10c_c00422{left:231.040000pt;}
.x97_c00422{left:232.000000pt;}
.x70_c00422{left:234.293333pt;}
.x43_c00422{left:236.373333pt;}
.xfd_c00422{left:237.333333pt;}
.xaf_c00422{left:238.666667pt;}
.xba_c00422{left:239.626667pt;}
.x6_c00422{left:241.706667pt;}
.x18_c00422{left:242.666667pt;}
.x84_c00422{left:244.000000pt;}
.x64_c00422{left:245.333333pt;}
.x7b_c00422{left:248.000000pt;}
.xe8_c00422{left:252.000000pt;}
.xc7_c00422{left:253.333333pt;}
.x8e_c00422{left:255.626667pt;}
.xef_c00422{left:258.293333pt;}
.x44_c00422{left:260.960000pt;}
.xe9_c00422{left:262.093333pt;}
.x7_c00422{left:264.000000pt;}
.x21_c00422{left:265.333333pt;}
.x39_c00422{left:266.666667pt;}
.xb0_c00422{left:268.000000pt;}
.xbb_c00422{left:269.333333pt;}
.x19_c00422{left:272.373333pt;}
.xa9_c00422{left:275.040000pt;}
.x106_c00422{left:277.333333pt;}
.x9b_c00422{left:279.040000pt;}
.xc8_c00422{left:280.373333pt;}
.x71_c00422{left:283.040000pt;}
.xc0_c00422{left:284.373333pt;}
.xbc_c00422{left:285.706667pt;}
.x85_c00422{left:286.666667pt;}
.x8_c00422{left:290.666667pt;}
.x3a_c00422{left:291.626667pt;}
.xe0_c00422{left:293.333333pt;}
.x22_c00422{left:294.666667pt;}
.x119_c00422{left:295.626667pt;}
.x45_c00422{left:297.333333pt;}
.xea_c00422{left:300.573333pt;}
.xf4_c00422{left:301.706667pt;}
.x52_c00422{left:303.040000pt;}
.x10d_c00422{left:305.706667pt;}
.x8f_c00422{left:306.666667pt;}
.x72_c00422{left:307.626667pt;}
.xaa_c00422{left:309.333333pt;}
.x98_c00422{left:310.666667pt;}
.xa0_c00422{left:312.000000pt;}
.xcf_c00422{left:313.333333pt;}
.x113_c00422{left:316.000000pt;}
.xb1_c00422{left:320.373333pt;}
.xc9_c00422{left:321.333333pt;}
.x30_c00422{left:322.293333pt;}
.x86_c00422{left:324.000000pt;}
.x65_c00422{left:324.960000pt;}
.xd0_c00422{left:327.040000pt;}
.xe4_c00422{left:328.000000pt;}
.x46_c00422{left:328.960000pt;}
.xf9_c00422{left:330.293333pt;}
.x1a_c00422{left:332.373333pt;}
.xf6_c00422{left:334.666667pt;}
.x118_c00422{left:335.626667pt;}
.x23_c00422{left:336.960000pt;}
.x9c_c00422{left:340.000000pt;}
.x66_c00422{left:340.960000pt;}
.x90_c00422{left:342.666667pt;}
.x5d_c00422{left:345.333333pt;}
.x47_c00422{left:347.040000pt;}
.xe1_c00422{left:348.000000pt;}
.x109_c00422{left:349.706667pt;}
.x11a_c00422{left:350.666667pt;}
.x24_c00422{left:355.040000pt;}
.xab_c00422{left:356.000000pt;}
.x9_c00422{left:357.333333pt;}
.x1_c00422{left:358.666667pt;}
.xa1_c00422{left:359.626667pt;}
.x117_c00422{left:360.960000pt;}
.x31_c00422{left:363.626667pt;}
.x7c_c00422{left:365.333333pt;}
.x73_c00422{left:366.666667pt;}
.x9d_c00422{left:367.626667pt;}
.xf7_c00422{left:369.333333pt;}
.x3b_c00422{left:370.666667pt;}
.xda_c00422{left:371.626667pt;}
.xdc_c00422{left:373.706667pt;}
.x87_c00422{left:374.666667pt;}
.xc1_c00422{left:377.333333pt;}
.x25_c00422{left:379.040000pt;}
.xfa_c00422{left:380.000000pt;}
.x67_c00422{left:381.333333pt;}
.xb2_c00422{left:383.040000pt;}
.xbd_c00422{left:386.293333pt;}
.x53_c00422{left:389.333333pt;}
.xd1_c00422{left:390.293333pt;}
.x5e_c00422{left:392.000000pt;}
.x74_c00422{left:396.000000pt;}
.x10e_c00422{left:397.706667pt;}
.xa2_c00422{left:400.373333pt;}
.x48_c00422{left:402.666667pt;}
.x1b_c00422{left:404.000000pt;}
.x91_c00422{left:405.333333pt;}
.x54_c00422{left:408.000000pt;}
.x68_c00422{left:408.960000pt;}
.xc2_c00422{left:412.373333pt;}
.xa_c00422{left:416.000000pt;}
.xfe_c00422{left:417.333333pt;}
.x1c_c00422{left:418.293333pt;}
.x75_c00422{left:420.373333pt;}
.x26_c00422{left:421.333333pt;}
.x7d_c00422{left:422.666667pt;}
.x69_c00422{left:425.706667pt;}
.xf0_c00422{left:426.666667pt;}
.xa3_c00422{left:427.626667pt;}
.xb_c00422{left:430.666667pt;}
.x49_c00422{left:432.000000pt;}
.xeb_c00422{left:434.666667pt;}
.x100_c00422{left:435.626667pt;}
.x92_c00422{left:436.960000pt;}
.x99_c00422{left:438.666667pt;}
.x88_c00422{left:440.373333pt;}
.x5f_c00422{left:441.706667pt;}
.xb3_c00422{left:443.626667pt;}
.xf1_c00422{left:445.333333pt;}
.x3c_c00422{left:448.373333pt;}
.x6a_c00422{left:449.333333pt;}
.x7e_c00422{left:451.040000pt;}
.x93_c00422{left:453.706667pt;}
.xc_c00422{left:455.040000pt;}
.x10f_c00422{left:456.373333pt;}
.x1d_c00422{left:458.666667pt;}
.x76_c00422{left:459.626667pt;}
.x55_c00422{left:461.333333pt;}
.xc3_c00422{left:463.040000pt;}
.xac_c00422{left:464.000000pt;}
.xe5_c00422{left:465.333333pt;}
.x9a_c00422{left:467.040000pt;}
.x4a_c00422{left:468.000000pt;}
.x27_c00422{left:468.960000pt;}
.xd2_c00422{left:472.000000pt;}
.x89_c00422{left:473.706667pt;}
.x60_c00422{left:475.040000pt;}
.x9e_c00422{left:476.000000pt;}
.x3d_c00422{left:477.333333pt;}
.x1e_c00422{left:479.040000pt;}
.x114_c00422{left:480.373333pt;}
.x6b_c00422{left:484.000000pt;}
.x28_c00422{left:485.706667pt;}
.xb4_c00422{left:487.040000pt;}
.xd_c00422{left:489.333333pt;}
.x77_c00422{left:490.293333pt;}
.x4b_c00422{left:492.373333pt;}
.xca_c00422{left:493.706667pt;}
.x101_c00422{left:494.666667pt;}
.x56_c00422{left:497.333333pt;}
.x7f_c00422{left:498.666667pt;}
.x61_c00422{left:501.333333pt;}
.xd3_c00422{left:502.666667pt;}
.x32_c00422{left:504.373333pt;}
.x10a_c00422{left:505.333333pt;}
.xec_c00422{left:508.373333pt;}
.xa4_c00422{left:509.333333pt;}
.x29_c00422{left:510.293333pt;}
.xdb_c00422{left:512.000000pt;}
.xd4_c00422{left:513.706667pt;}
.x57_c00422{left:514.666667pt;}
.xcb_c00422{left:516.373333pt;}
.x62_c00422{left:518.293333pt;}
.x3e_c00422{left:520.000000pt;}
.xfb_c00422{left:521.333333pt;}
.x4c_c00422{left:522.293333pt;}
.x6c_c00422{left:524.000000pt;}
.x10b_c00422{left:525.333333pt;}
.xe6_c00422{left:526.666667pt;}
.x94_c00422{left:527.626667pt;}
.x110_c00422{left:532.000000pt;}
.xa5_c00422{left:533.333333pt;}
.x115_c00422{left:534.666667pt;}
.x3f_c00422{left:535.626667pt;}
.xf2_c00422{left:536.960000pt;}
.xe_c00422{left:538.666667pt;}
.x1f_c00422{left:539.626667pt;}
.x95_c00422{left:544.373333pt;}
.x33_c00422{left:545.333333pt;}
.xd5_c00422{left:546.293333pt;}
.x2a_c00422{left:548.373333pt;}
.x58_c00422{left:549.706667pt;}
.x4d_c00422{left:552.000000pt;}
.xf_c00422{left:554.666667pt;}
.x9f_c00422{left:556.373333pt;}
.x6d_c00422{left:557.333333pt;}
.x80_c00422{left:560.373333pt;}
.x107_c00422{left:564.000000pt;}
.x40_c00422{left:565.706667pt;}
.xbe_c00422{left:567.040000pt;}
.x10_c00422{left:568.000000pt;}
.x8a_c00422{left:570.293333pt;}
.x102_c00422{left:572.373333pt;}
.x34_c00422{left:574.666667pt;}
.xcc_c00422{left:575.626667pt;}
.xff_c00422{left:579.040000pt;}
.x108_c00422{left:580.373333pt;}
.x11_c00422{left:581.706667pt;}
.x4e_c00422{left:582.666667pt;}
.xa6_c00422{left:584.000000pt;}
.xb5_c00422{left:584.960000pt;}
.x59_c00422{left:587.040000pt;}
.x8b_c00422{left:588.373333pt;}
.x35_c00422{left:590.093333pt;}
.x2b_c00422{left:592.000000pt;}
.x81_c00422{left:593.333333pt;}
.xcd_c00422{left:594.293333pt;}
.x103_c00422{left:596.373333pt;}
.xe2_c00422{left:599.040000pt;}
.x111_c00422{left:600.000000pt;}
.xb6_c00422{left:603.040000pt;}
.x41_c00422{left:605.333333pt;}
.x2c_c00422{left:607.626667pt;}
.xad_c00422{left:609.333333pt;}
.x8c_c00422{left:612.000000pt;}
.x5a_c00422{left:613.706667pt;}
.xa7_c00422{left:616.000000pt;}
.xd6_c00422{left:617.706667pt;}
.x78_c00422{left:619.040000pt;}
.x12_c00422{left:622.293333pt;}
.x2_c00422{left:623.626667pt;}
.xf8_c00422{left:625.333333pt;}
.x36_c00422{left:627.040000pt;}
.xb7_c00422{left:628.373333pt;}
.x82_c00422{left:631.626667pt;}
.xed_c00422{left:638.666667pt;}
.x6e_c00422{left:640.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_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_35c34028d8911067f14cc7da.woff2')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc9_c00423{transform:matrix(0.110996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110996,0.000000,0.000000,0.250000,0,0);}
.mc2_c00423{transform:matrix(0.142647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142647,0.000000,0.000000,0.250000,0,0);}
.mbd_c00423{transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);}
.mca_c00423{transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);}
.mcd_c00423{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.m57_c00423{transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);}
.mce_c00423{transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);}
.m6d_c00423{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m1e_c00423{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m25_c00423{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m15_c00423{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.ma4_c00423{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00423{transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);}
.m53_c00423{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m71_c00423{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m44_c00423{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m29_c00423{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m63_c00423{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m7e_c00423{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m41_c00423{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m6f_c00423{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m1a_c00423{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m21_c00423{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m3a_c00423{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m58_c00423{transform:matrix(0.397623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397623,0.000000,0.000000,0.250000,0,0);}
.m60_c00423{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m1d_c00423{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m92_c00423{transform:matrix(0.406388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406388,0.000000,0.000000,0.250000,0,0);}
.m7c_c00423{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m82_c00423{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m6a_c00423{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m49_c00423{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mb9_c00423{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.mc_c00423{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m93_c00423{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m4f_c00423{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m5c_c00423{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m5d_c00423{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m94_c00423{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m3_c00423{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m74_c00423{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m7d_c00423{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m40_c00423{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m76_c00423{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m8a_c00423{transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);}
.m65_c00423{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m6c_c00423{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m69_c00423{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m64_c00423{transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);}
.m89_c00423{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m43_c00423{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m91_c00423{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m9f_c00423{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);}
.m4a_c00423{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m68_c00423{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m4_c00423{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m52_c00423{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m75_c00423{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m79_c00423{transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);}
.m61_c00423{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m18_c00423{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m6b_c00423{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m9c_c00423{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mc8_c00423{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.m3c_c00423{transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);}
.md_c00423{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.ma9_c00423{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.mb7_c00423{transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);}
.mc0_c00423{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.m72_c00423{transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);}
.m8e_c00423{transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);}
.mc1_c00423{transform:matrix(0.472794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472794,0.000000,0.000000,0.250000,0,0);}
.maa_c00423{transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);}
.me_c00423{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.ma8_c00423{transform:matrix(0.482372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482372,0.000000,0.000000,0.250000,0,0);}
.m37_c00423{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.mb0_c00423{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m23_c00423{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m0_c00423{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mc6_c00423{transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);}
.m7f_c00423{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m9_c00423{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_c00423{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m35_c00423{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mc4_c00423{transform:matrix(0.507212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507212,0.000000,0.000000,0.250000,0,0);}
.m2f_c00423{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m96_c00423{transform:matrix(0.510417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510417,0.000000,0.000000,0.250000,0,0);}
.m39_c00423{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m55_c00423{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m22_c00423{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m4d_c00423{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.mbe_c00423{transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);}
.m5e_c00423{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.ma6_c00423{transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);}
.m4e_c00423{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m2e_c00423{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m5b_c00423{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m27_c00423{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m31_c00423{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m8f_c00423{transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);}
.m2_c00423{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m17_c00423{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m78_c00423{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mbc_c00423{transform:matrix(0.532051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532051,0.000000,0.000000,0.250000,0,0);}
.m8_c00423{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mb4_c00423{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m90_c00423{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.m1f_c00423{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m80_c00423{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m3f_c00423{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m2d_c00423{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m42_c00423{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m59_c00423{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m30_c00423{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m11_c00423{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m47_c00423{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m7b_c00423{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m5a_c00423{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m70_c00423{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m3b_c00423{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mae_c00423{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m2a_c00423{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m46_c00423{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m5_c00423{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m67_c00423{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m4c_c00423{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m6_c00423{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.ma0_c00423{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m34_c00423{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m77_c00423{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.m20_c00423{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m81_c00423{transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);}
.m2c_c00423{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m3e_c00423{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m73_c00423{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m99_c00423{transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);}
.m5f_c00423{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m56_c00423{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m24_c00423{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m9d_c00423{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.m7a_c00423{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m50_c00423{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m85_c00423{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m10_c00423{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m3d_c00423{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);}
.m8b_c00423{transform:matrix(0.602206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602206,0.000000,0.000000,0.250000,0,0);}
.m51_c00423{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m83_c00423{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m66_c00423{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m98_c00423{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.mb_c00423{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m95_c00423{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m2b_c00423{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m8c_c00423{transform:matrix(0.619853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619853,0.000000,0.000000,0.250000,0,0);}
.m87_c00423{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mb2_c00423{transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);}
.mcb_c00423{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.ma_c00423{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_c00423{transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);}
.m4b_c00423{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m62_c00423{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mad_c00423{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.m88_c00423{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);}
.ma2_c00423{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m16_c00423{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m9e_c00423{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m13_c00423{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m86_c00423{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.mb1_c00423{transform:matrix(0.680617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680617,0.000000,0.000000,0.250000,0,0);}
.m84_c00423{transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);}
.m9a_c00423{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m38_c00423{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.mc3_c00423{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m26_c00423{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mac_c00423{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.m1_c00423{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m8d_c00423{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.mb6_c00423{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m19_c00423{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mcc_c00423{transform:matrix(0.709251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709251,0.000000,0.000000,0.250000,0,0);}
.mba_c00423{transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);}
.m28_c00423{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mbb_c00423{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.m14_c00423{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m36_c00423{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.mf_c00423{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.ma5_c00423{transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);}
.mb8_c00423{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.mab_c00423{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m1c_c00423{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mc7_c00423{transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);}
.ma7_c00423{transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);}
.m32_c00423{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m97_c00423{transform:matrix(0.765419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765419,0.000000,0.000000,0.250000,0,0);}
.mc5_c00423{transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);}
.mbf_c00423{transform:matrix(0.772727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772727,0.000000,0.000000,0.250000,0,0);}
.m54_c00423{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mb5_c00423{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.maf_c00423{transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);}
.ma1_c00423{transform:matrix(0.807269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807269,0.000000,0.000000,0.250000,0,0);}
.m45_c00423{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m7_c00423{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mb3_c00423{transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);}
.m48_c00423{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.ma3_c00423{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m6e_c00423{transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);}
.m9b_c00423{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.v1_c00423{vertical-align:-6.000000px;}
.v0_c00423{vertical-align:0.000000px;}
.v2_c00423{vertical-align:6.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;}
}
.ws1_c00423{word-spacing:-16.889280px;}
.ws0_c00423{word-spacing:-6.184625px;}
.ws10_c00423{word-spacing:0.000000px;}
.ws2_c00423{word-spacing:2.446082px;}
.wsf_c00423{word-spacing:20.445345px;}
.wsc_c00423{word-spacing:23.728109px;}
.wsa_c00423{word-spacing:25.883172px;}
.wsb_c00423{word-spacing:34.503425px;}
.wse_c00423{word-spacing:35.023211px;}
.ws6_c00423{word-spacing:38.843828px;}
.wsd_c00423{word-spacing:43.123678px;}
.ws3_c00423{word-spacing:44.578363px;}
.ws9_c00423{word-spacing:45.278742px;}
.ws7_c00423{word-spacing:54.291843px;}
.ws8_c00423{word-spacing:56.099540px;}
.ws5_c00423{word-spacing:56.502046px;}
.ws4_c00423{word-spacing:69.168044px;}
._0_c00423{width:4.856701px;}
._5_c00423{width:44.612569px;}
._6_c00423{width:48.605390px;}
._4_c00423{width:51.077758px;}
._2_c00423{width:62.245923px;}
._1_c00423{width:69.969931px;}
._3_c00423{width:73.498341px;}
.fc0_c00423{color:transparent;}
.fs8_c00423{font-size:3.420000px;}
.fs9_c00423{font-size:11.880000px;}
.fs7_c00423{font-size:13.620000px;}
.fs1_c00423{font-size:18.720000px;}
.fs6_c00423{font-size:20.400000px;}
.fs3_c00423{font-size:25.500000px;}
.fs0_c00423{font-size:28.920000px;}
.fs4_c00423{font-size:32.340000px;}
.fs2_c00423{font-size:35.700000px;}
.fs5_c00423{font-size:39.120000px;}
.y0_c00423{bottom:0.000000px;}
.y70_c00423{bottom:274.245000px;}
.y6f_c00423{bottom:276.405000px;}
.y6c_c00423{bottom:293.745000px;}
.y6e_c00423{bottom:294.630000px;}
.y6d_c00423{bottom:295.470000px;}
.y6b_c00423{bottom:295.905000px;}
.y66_c00423{bottom:313.245000px;}
.y6a_c00423{bottom:314.325000px;}
.y67_c00423{bottom:315.405000px;}
.y69_c00423{bottom:315.630000px;}
.y68_c00423{bottom:316.470000px;}
.y60_c00423{bottom:331.905000px;}
.y62_c00423{bottom:332.325000px;}
.y64_c00423{bottom:332.745000px;}
.y65_c00423{bottom:334.245000px;}
.y61_c00423{bottom:334.470000px;}
.y5f_c00423{bottom:334.905000px;}
.y63_c00423{bottom:335.130000px;}
.y5a_c00423{bottom:351.405000px;}
.y59_c00423{bottom:352.245000px;}
.y57_c00423{bottom:352.905000px;}
.y5d_c00423{bottom:353.745000px;}
.y5e_c00423{bottom:354.405000px;}
.y58_c00423{bottom:354.630000px;}
.y5b_c00423{bottom:355.470000px;}
.y5c_c00423{bottom:355.905000px;}
.y54_c00423{bottom:373.245000px;}
.y56_c00423{bottom:374.970000px;}
.y55_c00423{bottom:375.405000px;}
.y51_c00423{bottom:391.905000px;}
.y50_c00423{bottom:392.745000px;}
.y53_c00423{bottom:393.630000px;}
.y4f_c00423{bottom:393.825000px;}
.y52_c00423{bottom:394.470000px;}
.y4e_c00423{bottom:394.905000px;}
.y48_c00423{bottom:411.405000px;}
.y49_c00423{bottom:412.245000px;}
.y4c_c00423{bottom:413.325000px;}
.y4d_c00423{bottom:413.970000px;}
.y4b_c00423{bottom:414.405000px;}
.y4a_c00423{bottom:415.470000px;}
.y44_c00423{bottom:430.905000px;}
.y43_c00423{bottom:431.745000px;}
.y45_c00423{bottom:431.970000px;}
.y47_c00423{bottom:432.630000px;}
.y46_c00423{bottom:433.470000px;}
.y42_c00423{bottom:433.905000px;}
.y3f_c00423{bottom:450.405000px;}
.y41_c00423{bottom:451.245000px;}
.y3d_c00423{bottom:452.745000px;}
.y3e_c00423{bottom:453.405000px;}
.y40_c00423{bottom:453.630000px;}
.y3c_c00423{bottom:454.905000px;}
.y3a_c00423{bottom:471.180000px;}
.y39_c00423{bottom:472.245000px;}
.y3b_c00423{bottom:472.905000px;}
.y37_c00423{bottom:474.405000px;}
.y38_c00423{bottom:475.470000px;}
.y33_c00423{bottom:490.470000px;}
.y32_c00423{bottom:490.905000px;}
.y35_c00423{bottom:491.745000px;}
.y36_c00423{bottom:492.630000px;}
.y34_c00423{bottom:493.905000px;}
.y30_c00423{bottom:508.905000px;}
.y2e_c00423{bottom:511.245000px;}
.y31_c00423{bottom:512.970000px;}
.y2d_c00423{bottom:513.405000px;}
.y2f_c00423{bottom:514.470000px;}
.y2c_c00423{bottom:529.470000px;}
.y2a_c00423{bottom:529.905000px;}
.y29_c00423{bottom:530.745000px;}
.y28_c00423{bottom:530.970000px;}
.y2b_c00423{bottom:532.470000px;}
.y26_c00423{bottom:532.905000px;}
.y27_c00423{bottom:533.130000px;}
.y23_c00423{bottom:550.245000px;}
.y25_c00423{bottom:552.405000px;}
.y24_c00423{bottom:553.470000px;}
.y22_c00423{bottom:553.905000px;}
.y21_c00423{bottom:569.745000px;}
.y20_c00423{bottom:570.825000px;}
.y1e_c00423{bottom:571.905000px;}
.y1f_c00423{bottom:572.970000px;}
.y1d_c00423{bottom:590.325000px;}
.y19_c00423{bottom:591.405000px;}
.y1c_c00423{bottom:591.630000px;}
.y1a_c00423{bottom:592.470000px;}
.y1b_c00423{bottom:592.905000px;}
.y18_c00423{bottom:608.745000px;}
.y14_c00423{bottom:610.245000px;}
.y16_c00423{bottom:610.905000px;}
.y17_c00423{bottom:611.130000px;}
.y15_c00423{bottom:612.405000px;}
.y13_c00423{bottom:627.405000px;}
.y10_c00423{bottom:629.745000px;}
.y11_c00423{bottom:630.630000px;}
.y12_c00423{bottom:631.470000px;}
.yf_c00423{bottom:631.905000px;}
.ya_c00423{bottom:648.405000px;}
.ye_c00423{bottom:648.825000px;}
.yb_c00423{bottom:649.245000px;}
.yd_c00423{bottom:650.130000px;}
.yc_c00423{bottom:650.970000px;}
.y8_c00423{bottom:651.405000px;}
.y9_c00423{bottom:651.630000px;}
.y6_c00423{bottom:667.470000px;}
.y4_c00423{bottom:668.745000px;}
.y7_c00423{bottom:669.825000px;}
.y3_c00423{bottom:670.905000px;}
.y5_c00423{bottom:671.130000px;}
.yc3_c00423{bottom:707.550000px;}
.yc5_c00423{bottom:709.695000px;}
.yc2_c00423{bottom:710.130000px;}
.yc1_c00423{bottom:711.195000px;}
.yc4_c00423{bottom:711.420000px;}
.yc0_c00423{bottom:723.195000px;}
.ybd_c00423{bottom:723.630000px;}
.ybe_c00423{bottom:724.695000px;}
.ybf_c00423{bottom:724.920000px;}
.yb7_c00423{bottom:737.130000px;}
.yb8_c00423{bottom:737.775000px;}
.yb6_c00423{bottom:738.195000px;}
.ybc_c00423{bottom:738.630000px;}
.yb9_c00423{bottom:739.905000px;}
.yba_c00423{bottom:739.920000px;}
.ybb_c00423{bottom:740.970000px;}
.yb5_c00423{bottom:750.630000px;}
.yb1_c00423{bottom:751.050000px;}
.yb0_c00423{bottom:751.695000px;}
.yb4_c00423{bottom:752.130000px;}
.yb2_c00423{bottom:752.775000px;}
.yb3_c00423{bottom:753.195000px;}
.yac_c00423{bottom:765.630000px;}
.yad_c00423{bottom:766.695000px;}
.yaf_c00423{bottom:766.920000px;}
.yae_c00423{bottom:767.775000px;}
.yab_c00423{bottom:779.130000px;}
.yaa_c00423{bottom:780.195000px;}
.ya8_c00423{bottom:792.630000px;}
.ya7_c00423{bottom:793.695000px;}
.ya6_c00423{bottom:794.130000px;}
.ya5_c00423{bottom:795.195000px;}
.ya9_c00423{bottom:795.420000px;}
.ya3_c00423{bottom:807.195000px;}
.ya4_c00423{bottom:807.420000px;}
.ya1_c00423{bottom:807.630000px;}
.ya2_c00423{bottom:808.695000px;}
.ya0_c00423{bottom:820.695000px;}
.y9f_c00423{bottom:821.130000px;}
.y9e_c00423{bottom:822.195000px;}
.y9d_c00423{bottom:836.130000px;}
.y98_c00423{bottom:848.130000px;}
.y9a_c00423{bottom:849.195000px;}
.y9c_c00423{bottom:849.420000px;}
.y9b_c00423{bottom:849.630000px;}
.y99_c00423{bottom:850.695000px;}
.y96_c00423{bottom:861.630000px;}
.y95_c00423{bottom:862.695000px;}
.y97_c00423{bottom:862.920000px;}
.y94_c00423{bottom:875.130000px;}
.y93_c00423{bottom:876.195000px;}
.y92_c00423{bottom:876.630000px;}
.y91_c00423{bottom:877.695000px;}
.y8f_c00423{bottom:890.130000px;}
.y90_c00423{bottom:891.195000px;}
.y8e_c00423{bottom:903.630000px;}
.y8d_c00423{bottom:904.695000px;}
.y8b_c00423{bottom:917.130000px;}
.y8a_c00423{bottom:918.195000px;}
.y8c_c00423{bottom:918.420000px;}
.y89_c00423{bottom:930.630000px;}
.y87_c00423{bottom:931.695000px;}
.y88_c00423{bottom:932.130000px;}
.y86_c00423{bottom:933.195000px;}
.y85_c00423{bottom:945.195000px;}
.y84_c00423{bottom:946.695000px;}
.y83_c00423{bottom:958.695000px;}
.y82_c00423{bottom:959.130000px;}
.y81_c00423{bottom:960.195000px;}
.y7c_c00423{bottom:976.695000px;}
.y80_c00423{bottom:978.195000px;}
.y7e_c00423{bottom:978.420000px;}
.y7f_c00423{bottom:978.630000px;}
.y7d_c00423{bottom:979.695000px;}
.y7a_c00423{bottom:990.630000px;}
.y7b_c00423{bottom:991.695000px;}
.y79_c00423{bottom:1005.195000px;}
.y76_c00423{bottom:1026.405000px;}
.y77_c00423{bottom:1027.050000px;}
.y78_c00423{bottom:1027.470000px;}
.y75_c00423{bottom:1028.550000px;}
.y74_c00423{bottom:1039.905000px;}
.y73_c00423{bottom:1042.050000px;}
.y72_c00423{bottom:1063.905000px;}
.y71_c00423{bottom:1066.050000px;}
.y1_c00423{bottom:1099.905000px;}
.y2_c00423{bottom:1103.130000px;}
.h9_c00423{height:4.206533px;}
.ha_c00423{height:14.612168px;}
.h8_c00423{height:16.752334px;}
.hb_c00423{height:22.752334px;}
.h2_c00423{height:23.025234px;}
.h7_c00423{height:25.091602px;}
.h4_c00423{height:31.364502px;}
.h1_c00423{height:35.571035px;}
.h5_c00423{height:39.777568px;}
.h3_c00423{height:43.910303px;}
.h6_c00423{height:48.116836px;}
.h0_c00423{height:1335.000000px;}
.w0_c00423{width:880.500000px;}
.x0_c00423{left:0.000000px;}
.x35_c00423{left:151.500000px;}
.x3_c00423{left:153.000000px;}
.x1_c00423{left:154.080000px;}
.x1d_c00423{left:168.000000px;}
.x36_c00423{left:169.920000px;}
.x6a_c00423{left:172.500000px;}
.x7a_c00423{left:177.000000px;}
.x83_c00423{left:178.080000px;}
.x71_c00423{left:189.420000px;}
.x1e_c00423{left:190.500000px;}
.xb0_c00423{left:192.000000px;}
.xf_c00423{left:193.500000px;}
.x64_c00423{left:195.000000px;}
.x37_c00423{left:196.920000px;}
.x4d_c00423{left:200.580000px;}
.xb6_c00423{left:204.000000px;}
.x94_c00423{left:205.920000px;}
.x1f_c00423{left:208.500000px;}
.x10_c00423{left:210.000000px;}
.x6b_c00423{left:211.500000px;}
.xa1_c00423{left:212.580000px;}
.xa6_c00423{left:216.000000px;}
.x4_c00423{left:217.080000px;}
.x8c_c00423{left:220.500000px;}
.x2b_c00423{left:223.500000px;}
.x4e_c00423{left:225.000000px;}
.x38_c00423{left:229.500000px;}
.x11_c00423{left:232.920000px;}
.xa7_c00423{left:235.500000px;}
.x56_c00423{left:237.000000px;}
.x65_c00423{left:238.500000px;}
.xab_c00423{left:240.420000px;}
.x72_c00423{left:241.500000px;}
.xc3_c00423{left:243.000000px;}
.xc8_c00423{left:244.500000px;}
.x20_c00423{left:247.920000px;}
.x41_c00423{left:250.500000px;}
.x9d_c00423{left:251.580000px;}
.x57_c00423{left:253.500000px;}
.x5_c00423{left:256.080000px;}
.x4f_c00423{left:258.000000px;}
.xa8_c00423{left:259.500000px;}
.x73_c00423{left:261.000000px;}
.xda_c00423{left:265.500000px;}
.x2c_c00423{left:267.420000px;}
.xa2_c00423{left:268.500000px;}
.xd1_c00423{left:271.080000px;}
.x95_c00423{left:274.920000px;}
.x39_c00423{left:276.000000px;}
.x12_c00423{left:279.420000px;}
.xd9_c00423{left:280.500000px;}
.x21_c00423{left:284.580000px;}
.x84_c00423{left:287.580000px;}
.xd4_c00423{left:289.080000px;}
.xa3_c00423{left:292.500000px;}
.x50_c00423{left:294.420000px;}
.x58_c00423{left:295.920000px;}
.x6_c00423{left:301.080000px;}
.xd0_c00423{left:302.580000px;}
.xb1_c00423{left:304.920000px;}
.x74_c00423{left:306.420000px;}
.x13_c00423{left:313.500000px;}
.x3a_c00423{left:315.000000px;}
.xcf_c00423{left:318.000000px;}
.xb7_c00423{left:319.920000px;}
.x8d_c00423{left:322.080000px;}
.x42_c00423{left:324.000000px;}
.x7b_c00423{left:325.500000px;}
.x51_c00423{left:328.080000px;}
.xbb_c00423{left:330.000000px;}
.x7_c00423{left:333.420000px;}
.x59_c00423{left:334.500000px;}
.x2d_c00423{left:335.580000px;}
.xde_c00423{left:337.500000px;}
.xa4_c00423{left:339.000000px;}
.x14_c00423{left:340.500000px;}
.x43_c00423{left:342.420000px;}
.x7c_c00423{left:343.500000px;}
.xa9_c00423{left:345.000000px;}
.xb8_c00423{left:348.420000px;}
.x6c_c00423{left:351.420000px;}
.x5a_c00423{left:354.000000px;}
.x96_c00423{left:355.920000px;}
.x22_c00423{left:357.000000px;}
.x8e_c00423{left:360.420000px;}
.xbc_c00423{left:366.000000px;}
.x44_c00423{left:368.580000px;}
.xaa_c00423{left:370.500000px;}
.xdb_c00423{left:372.000000px;}
.xd7_c00423{left:375.000000px;}
.x8_c00423{left:376.500000px;}
.xc4_c00423{left:379.080000px;}
.xd3_c00423{left:381.000000px;}
.x2e_c00423{left:382.500000px;}
.x6d_c00423{left:383.580000px;}
.xac_c00423{left:385.500000px;}
.x5b_c00423{left:387.420000px;}
.x7d_c00423{left:388.920000px;}
.x9e_c00423{left:391.920000px;}
.x9_c00423{left:399.000000px;}
.xc0_c00423{left:402.000000px;}
.x15_c00423{left:403.500000px;}
.x2_c00423{left:408.000000px;}
.x3b_c00423{left:412.920000px;}
.xb9_c00423{left:414.000000px;}
.xdc_c00423{left:415.500000px;}
.x75_c00423{left:420.420000px;}
.x9f_c00423{left:421.500000px;}
.x2f_c00423{left:424.500000px;}
.x5c_c00423{left:427.920000px;}
.xca_c00423{left:429.000000px;}
.xcd_c00423{left:430.500000px;}
.x52_c00423{left:432.000000px;}
.x45_c00423{left:439.920000px;}
.x76_c00423{left:441.000000px;}
.x23_c00423{left:442.500000px;}
.xad_c00423{left:444.420000px;}
.x8f_c00423{left:447.420000px;}
.x3c_c00423{left:450.420000px;}
.x7e_c00423{left:453.000000px;}
.x66_c00423{left:454.920000px;}
.xba_c00423{left:457.080000px;}
.xbd_c00423{left:459.420000px;}
.x16_c00423{left:460.500000px;}
.xc9_c00423{left:466.920000px;}
.x97_c00423{left:468.000000px;}
.xc5_c00423{left:469.080000px;}
.xa_c00423{left:474.420000px;}
.x24_c00423{left:475.920000px;}
.xbe_c00423{left:477.000000px;}
.xd6_c00423{left:478.500000px;}
.x17_c00423{left:480.420000px;}
.xcb_c00423{left:483.000000px;}
.x5d_c00423{left:487.500000px;}
.x98_c00423{left:488.580000px;}
.x53_c00423{left:493.920000px;}
.x30_c00423{left:495.000000px;}
.x7f_c00423{left:496.500000px;}
.x85_c00423{left:499.920000px;}
.xbf_c00423{left:501.000000px;}
.x46_c00423{left:505.500000px;}
.x18_c00423{left:507.420000px;}
.x6e_c00423{left:508.920000px;}
.x31_c00423{left:510.420000px;}
.x99_c00423{left:513.000000px;}
.x77_c00423{left:514.080000px;}
.x25_c00423{left:516.000000px;}
.xdd_c00423{left:517.500000px;}
.x5e_c00423{left:522.000000px;}
.xc6_c00423{left:524.580000px;}
.xdf_c00423{left:528.000000px;}
.x3d_c00423{left:531.000000px;}
.x78_c00423{left:532.080000px;}
.xce_c00423{left:534.000000px;}
.xc1_c00423{left:540.420000px;}
.x90_c00423{left:541.500000px;}
.x86_c00423{left:544.920000px;}
.x80_c00423{left:546.000000px;}
.x19_c00423{left:547.500000px;}
.x6f_c00423{left:549.000000px;}
.x47_c00423{left:552.000000px;}
.x79_c00423{left:553.500000px;}
.x67_c00423{left:555.420000px;}
.xb_c00423{left:556.500000px;}
.x48_c00423{left:562.500000px;}
.xc2_c00423{left:567.000000px;}
.x26_c00423{left:568.080000px;}
.x54_c00423{left:570.000000px;}
.x91_c00423{left:571.920000px;}
.xc7_c00423{left:573.000000px;}
.xd5_c00423{left:574.920000px;}
.xc_c00423{left:577.500000px;}
.xcc_c00423{left:579.000000px;}
.x87_c00423{left:582.000000px;}
.xb2_c00423{left:583.500000px;}
.x32_c00423{left:586.500000px;}
.xa5_c00423{left:588.420000px;}
.x5f_c00423{left:597.420000px;}
.xa0_c00423{left:598.920000px;}
.x1a_c00423{left:600.000000px;}
.x27_c00423{left:601.500000px;}
.x70_c00423{left:603.000000px;}
.xd_c00423{left:604.500000px;}
.x88_c00423{left:607.500000px;}
.x33_c00423{left:612.000000px;}
.x92_c00423{left:618.000000px;}
.x1b_c00423{left:619.500000px;}
.xd2_c00423{left:622.500000px;}
.x49_c00423{left:624.000000px;}
.x89_c00423{left:625.500000px;}
.x81_c00423{left:626.580000px;}
.xb3_c00423{left:628.500000px;}
.xd8_c00423{left:631.500000px;}
.x28_c00423{left:633.000000px;}
.x60_c00423{left:636.000000px;}
.xae_c00423{left:637.500000px;}
.x3e_c00423{left:640.500000px;}
.x4a_c00423{left:641.580000px;}
.x55_c00423{left:644.580000px;}
.x29_c00423{left:646.500000px;}
.x8a_c00423{left:651.000000px;}
.x68_c00423{left:652.920000px;}
.x82_c00423{left:657.420000px;}
.x61_c00423{left:658.500000px;}
.x4b_c00423{left:662.580000px;}
.xe_c00423{left:664.500000px;}
.x3f_c00423{left:666.000000px;}
.x9a_c00423{left:668.580000px;}
.xb4_c00423{left:675.000000px;}
.x40_c00423{left:678.000000px;}
.x62_c00423{left:679.080000px;}
.x4c_c00423{left:681.000000px;}
.x8b_c00423{left:683.580000px;}
.x1c_c00423{left:688.500000px;}
.x34_c00423{left:690.000000px;}
.x69_c00423{left:691.080000px;}
.x9b_c00423{left:693.000000px;}
.x63_c00423{left:700.500000px;}
.x93_c00423{left:709.920000px;}
.x9c_c00423{left:715.500000px;}
.x2a_c00423{left:716.580000px;}
.xaf_c00423{left:720.000000px;}
.xb5_c00423{left:723.000000px;}
@media print{
.v1_c00423{vertical-align:-5.333333pt;}
.v0_c00423{vertical-align:0.000000pt;}
.v2_c00423{vertical-align:5.333333pt;}
.ls0_c00423{letter-spacing:0.000000pt;}
.ws1_c00423{word-spacing:-15.012693pt;}
.ws0_c00423{word-spacing:-5.497444pt;}
.ws10_c00423{word-spacing:0.000000pt;}
.ws2_c00423{word-spacing:2.174295pt;}
.wsf_c00423{word-spacing:18.173640pt;}
.wsc_c00423{word-spacing:21.091652pt;}
.wsa_c00423{word-spacing:23.007264pt;}
.wsb_c00423{word-spacing:30.669711pt;}
.wse_c00423{word-spacing:31.131743pt;}
.ws6_c00423{word-spacing:34.527847pt;}
.wsd_c00423{word-spacing:38.332159pt;}
.ws3_c00423{word-spacing:39.625211pt;}
.ws9_c00423{word-spacing:40.247770pt;}
.ws7_c00423{word-spacing:48.259416pt;}
.ws8_c00423{word-spacing:49.866258pt;}
.ws5_c00423{word-spacing:50.224041pt;}
.ws4_c00423{word-spacing:61.482706pt;}
._0_c00423{width:4.317068pt;}
._5_c00423{width:39.655617pt;}
._6_c00423{width:43.204791pt;}
._4_c00423{width:45.402452pt;}
._2_c00423{width:55.329709pt;}
._1_c00423{width:62.195494pt;}
._3_c00423{width:65.331859pt;}
.fs8_c00423{font-size:3.040000pt;}
.fs9_c00423{font-size:10.560000pt;}
.fs7_c00423{font-size:12.106667pt;}
.fs1_c00423{font-size:16.640000pt;}
.fs6_c00423{font-size:18.133333pt;}
.fs3_c00423{font-size:22.666667pt;}
.fs0_c00423{font-size:25.706667pt;}
.fs4_c00423{font-size:28.746667pt;}
.fs2_c00423{font-size:31.733333pt;}
.fs5_c00423{font-size:34.773333pt;}
.y0_c00423{bottom:0.000000pt;}
.y70_c00423{bottom:243.773333pt;}
.y6f_c00423{bottom:245.693333pt;}
.y6c_c00423{bottom:261.106667pt;}
.y6e_c00423{bottom:261.893333pt;}
.y6d_c00423{bottom:262.640000pt;}
.y6b_c00423{bottom:263.026667pt;}
.y66_c00423{bottom:278.440000pt;}
.y6a_c00423{bottom:279.400000pt;}
.y67_c00423{bottom:280.360000pt;}
.y69_c00423{bottom:280.560000pt;}
.y68_c00423{bottom:281.306667pt;}
.y60_c00423{bottom:295.026667pt;}
.y62_c00423{bottom:295.400000pt;}
.y64_c00423{bottom:295.773333pt;}
.y65_c00423{bottom:297.106667pt;}
.y61_c00423{bottom:297.306667pt;}
.y5f_c00423{bottom:297.693333pt;}
.y63_c00423{bottom:297.893333pt;}
.y5a_c00423{bottom:312.360000pt;}
.y59_c00423{bottom:313.106667pt;}
.y57_c00423{bottom:313.693333pt;}
.y5d_c00423{bottom:314.440000pt;}
.y5e_c00423{bottom:315.026667pt;}
.y58_c00423{bottom:315.226667pt;}
.y5b_c00423{bottom:315.973333pt;}
.y5c_c00423{bottom:316.360000pt;}
.y54_c00423{bottom:331.773333pt;}
.y56_c00423{bottom:333.306667pt;}
.y55_c00423{bottom:333.693333pt;}
.y51_c00423{bottom:348.360000pt;}
.y50_c00423{bottom:349.106667pt;}
.y53_c00423{bottom:349.893333pt;}
.y4f_c00423{bottom:350.066667pt;}
.y52_c00423{bottom:350.640000pt;}
.y4e_c00423{bottom:351.026667pt;}
.y48_c00423{bottom:365.693333pt;}
.y49_c00423{bottom:366.440000pt;}
.y4c_c00423{bottom:367.400000pt;}
.y4d_c00423{bottom:367.973333pt;}
.y4b_c00423{bottom:368.360000pt;}
.y4a_c00423{bottom:369.306667pt;}
.y44_c00423{bottom:383.026667pt;}
.y43_c00423{bottom:383.773333pt;}
.y45_c00423{bottom:383.973333pt;}
.y47_c00423{bottom:384.560000pt;}
.y46_c00423{bottom:385.306667pt;}
.y42_c00423{bottom:385.693333pt;}
.y3f_c00423{bottom:400.360000pt;}
.y41_c00423{bottom:401.106667pt;}
.y3d_c00423{bottom:402.440000pt;}
.y3e_c00423{bottom:403.026667pt;}
.y40_c00423{bottom:403.226667pt;}
.y3c_c00423{bottom:404.360000pt;}
.y3a_c00423{bottom:418.826667pt;}
.y39_c00423{bottom:419.773333pt;}
.y3b_c00423{bottom:420.360000pt;}
.y37_c00423{bottom:421.693333pt;}
.y38_c00423{bottom:422.640000pt;}
.y33_c00423{bottom:435.973333pt;}
.y32_c00423{bottom:436.360000pt;}
.y35_c00423{bottom:437.106667pt;}
.y36_c00423{bottom:437.893333pt;}
.y34_c00423{bottom:439.026667pt;}
.y30_c00423{bottom:452.360000pt;}
.y2e_c00423{bottom:454.440000pt;}
.y31_c00423{bottom:455.973333pt;}
.y2d_c00423{bottom:456.360000pt;}
.y2f_c00423{bottom:457.306667pt;}
.y2c_c00423{bottom:470.640000pt;}
.y2a_c00423{bottom:471.026667pt;}
.y29_c00423{bottom:471.773333pt;}
.y28_c00423{bottom:471.973333pt;}
.y2b_c00423{bottom:473.306667pt;}
.y26_c00423{bottom:473.693333pt;}
.y27_c00423{bottom:473.893333pt;}
.y23_c00423{bottom:489.106667pt;}
.y25_c00423{bottom:491.026667pt;}
.y24_c00423{bottom:491.973333pt;}
.y22_c00423{bottom:492.360000pt;}
.y21_c00423{bottom:506.440000pt;}
.y20_c00423{bottom:507.400000pt;}
.y1e_c00423{bottom:508.360000pt;}
.y1f_c00423{bottom:509.306667pt;}
.y1d_c00423{bottom:524.733333pt;}
.y19_c00423{bottom:525.693333pt;}
.y1c_c00423{bottom:525.893333pt;}
.y1a_c00423{bottom:526.640000pt;}
.y1b_c00423{bottom:527.026667pt;}
.y18_c00423{bottom:541.106667pt;}
.y14_c00423{bottom:542.440000pt;}
.y16_c00423{bottom:543.026667pt;}
.y17_c00423{bottom:543.226667pt;}
.y15_c00423{bottom:544.360000pt;}
.y13_c00423{bottom:557.693333pt;}
.y10_c00423{bottom:559.773333pt;}
.y11_c00423{bottom:560.560000pt;}
.y12_c00423{bottom:561.306667pt;}
.yf_c00423{bottom:561.693333pt;}
.ya_c00423{bottom:576.360000pt;}
.ye_c00423{bottom:576.733333pt;}
.yb_c00423{bottom:577.106667pt;}
.yd_c00423{bottom:577.893333pt;}
.yc_c00423{bottom:578.640000pt;}
.y8_c00423{bottom:579.026667pt;}
.y9_c00423{bottom:579.226667pt;}
.y6_c00423{bottom:593.306667pt;}
.y4_c00423{bottom:594.440000pt;}
.y7_c00423{bottom:595.400000pt;}
.y3_c00423{bottom:596.360000pt;}
.y5_c00423{bottom:596.560000pt;}
.yc3_c00423{bottom:628.933333pt;}
.yc5_c00423{bottom:630.840000pt;}
.yc2_c00423{bottom:631.226667pt;}
.yc1_c00423{bottom:632.173333pt;}
.yc4_c00423{bottom:632.373333pt;}
.yc0_c00423{bottom:642.840000pt;}
.ybd_c00423{bottom:643.226667pt;}
.ybe_c00423{bottom:644.173333pt;}
.ybf_c00423{bottom:644.373333pt;}
.yb7_c00423{bottom:655.226667pt;}
.yb8_c00423{bottom:655.800000pt;}
.yb6_c00423{bottom:656.173333pt;}
.ybc_c00423{bottom:656.560000pt;}
.yb9_c00423{bottom:657.693333pt;}
.yba_c00423{bottom:657.706667pt;}
.ybb_c00423{bottom:658.640000pt;}
.yb5_c00423{bottom:667.226667pt;}
.yb1_c00423{bottom:667.600000pt;}
.yb0_c00423{bottom:668.173333pt;}
.yb4_c00423{bottom:668.560000pt;}
.yb2_c00423{bottom:669.133333pt;}
.yb3_c00423{bottom:669.506667pt;}
.yac_c00423{bottom:680.560000pt;}
.yad_c00423{bottom:681.506667pt;}
.yaf_c00423{bottom:681.706667pt;}
.yae_c00423{bottom:682.466667pt;}
.yab_c00423{bottom:692.560000pt;}
.yaa_c00423{bottom:693.506667pt;}
.ya8_c00423{bottom:704.560000pt;}
.ya7_c00423{bottom:705.506667pt;}
.ya6_c00423{bottom:705.893333pt;}
.ya5_c00423{bottom:706.840000pt;}
.ya9_c00423{bottom:707.040000pt;}
.ya3_c00423{bottom:717.506667pt;}
.ya4_c00423{bottom:717.706667pt;}
.ya1_c00423{bottom:717.893333pt;}
.ya2_c00423{bottom:718.840000pt;}
.ya0_c00423{bottom:729.506667pt;}
.y9f_c00423{bottom:729.893333pt;}
.y9e_c00423{bottom:730.840000pt;}
.y9d_c00423{bottom:743.226667pt;}
.y98_c00423{bottom:753.893333pt;}
.y9a_c00423{bottom:754.840000pt;}
.y9c_c00423{bottom:755.040000pt;}
.y9b_c00423{bottom:755.226667pt;}
.y99_c00423{bottom:756.173333pt;}
.y96_c00423{bottom:765.893333pt;}
.y95_c00423{bottom:766.840000pt;}
.y97_c00423{bottom:767.040000pt;}
.y94_c00423{bottom:777.893333pt;}
.y93_c00423{bottom:778.840000pt;}
.y92_c00423{bottom:779.226667pt;}
.y91_c00423{bottom:780.173333pt;}
.y8f_c00423{bottom:791.226667pt;}
.y90_c00423{bottom:792.173333pt;}
.y8e_c00423{bottom:803.226667pt;}
.y8d_c00423{bottom:804.173333pt;}
.y8b_c00423{bottom:815.226667pt;}
.y8a_c00423{bottom:816.173333pt;}
.y8c_c00423{bottom:816.373333pt;}
.y89_c00423{bottom:827.226667pt;}
.y87_c00423{bottom:828.173333pt;}
.y88_c00423{bottom:828.560000pt;}
.y86_c00423{bottom:829.506667pt;}
.y85_c00423{bottom:840.173333pt;}
.y84_c00423{bottom:841.506667pt;}
.y83_c00423{bottom:852.173333pt;}
.y82_c00423{bottom:852.560000pt;}
.y81_c00423{bottom:853.506667pt;}
.y7c_c00423{bottom:868.173333pt;}
.y80_c00423{bottom:869.506667pt;}
.y7e_c00423{bottom:869.706667pt;}
.y7f_c00423{bottom:869.893333pt;}
.y7d_c00423{bottom:870.840000pt;}
.y7a_c00423{bottom:880.560000pt;}
.y7b_c00423{bottom:881.506667pt;}
.y79_c00423{bottom:893.506667pt;}
.y76_c00423{bottom:912.360000pt;}
.y77_c00423{bottom:912.933333pt;}
.y78_c00423{bottom:913.306667pt;}
.y75_c00423{bottom:914.266667pt;}
.y74_c00423{bottom:924.360000pt;}
.y73_c00423{bottom:926.266667pt;}
.y72_c00423{bottom:945.693333pt;}
.y71_c00423{bottom:947.600000pt;}
.y1_c00423{bottom:977.693333pt;}
.y2_c00423{bottom:980.560000pt;}
.h9_c00423{height:3.739141pt;}
.ha_c00423{height:12.988594pt;}
.h8_c00423{height:14.890964pt;}
.hb_c00423{height:20.224297pt;}
.h2_c00423{height:20.466875pt;}
.h7_c00423{height:22.303646pt;}
.h4_c00423{height:27.879557pt;}
.h1_c00423{height:31.618698pt;}
.h5_c00423{height:35.357839pt;}
.h3_c00423{height:39.031380pt;}
.h6_c00423{height:42.770521pt;}
.h0_c00423{height:1186.666667pt;}
.w0_c00423{width:782.666667pt;}
.x0_c00423{left:0.000000pt;}
.x35_c00423{left:134.666667pt;}
.x3_c00423{left:136.000000pt;}
.x1_c00423{left:136.960000pt;}
.x1d_c00423{left:149.333333pt;}
.x36_c00423{left:151.040000pt;}
.x6a_c00423{left:153.333333pt;}
.x7a_c00423{left:157.333333pt;}
.x83_c00423{left:158.293333pt;}
.x71_c00423{left:168.373333pt;}
.x1e_c00423{left:169.333333pt;}
.xb0_c00423{left:170.666667pt;}
.xf_c00423{left:172.000000pt;}
.x64_c00423{left:173.333333pt;}
.x37_c00423{left:175.040000pt;}
.x4d_c00423{left:178.293333pt;}
.xb6_c00423{left:181.333333pt;}
.x94_c00423{left:183.040000pt;}
.x1f_c00423{left:185.333333pt;}
.x10_c00423{left:186.666667pt;}
.x6b_c00423{left:188.000000pt;}
.xa1_c00423{left:188.960000pt;}
.xa6_c00423{left:192.000000pt;}
.x4_c00423{left:192.960000pt;}
.x8c_c00423{left:196.000000pt;}
.x2b_c00423{left:198.666667pt;}
.x4e_c00423{left:200.000000pt;}
.x38_c00423{left:204.000000pt;}
.x11_c00423{left:207.040000pt;}
.xa7_c00423{left:209.333333pt;}
.x56_c00423{left:210.666667pt;}
.x65_c00423{left:212.000000pt;}
.xab_c00423{left:213.706667pt;}
.x72_c00423{left:214.666667pt;}
.xc3_c00423{left:216.000000pt;}
.xc8_c00423{left:217.333333pt;}
.x20_c00423{left:220.373333pt;}
.x41_c00423{left:222.666667pt;}
.x9d_c00423{left:223.626667pt;}
.x57_c00423{left:225.333333pt;}
.x5_c00423{left:227.626667pt;}
.x4f_c00423{left:229.333333pt;}
.xa8_c00423{left:230.666667pt;}
.x73_c00423{left:232.000000pt;}
.xda_c00423{left:236.000000pt;}
.x2c_c00423{left:237.706667pt;}
.xa2_c00423{left:238.666667pt;}
.xd1_c00423{left:240.960000pt;}
.x95_c00423{left:244.373333pt;}
.x39_c00423{left:245.333333pt;}
.x12_c00423{left:248.373333pt;}
.xd9_c00423{left:249.333333pt;}
.x21_c00423{left:252.960000pt;}
.x84_c00423{left:255.626667pt;}
.xd4_c00423{left:256.960000pt;}
.xa3_c00423{left:260.000000pt;}
.x50_c00423{left:261.706667pt;}
.x58_c00423{left:263.040000pt;}
.x6_c00423{left:267.626667pt;}
.xd0_c00423{left:268.960000pt;}
.xb1_c00423{left:271.040000pt;}
.x74_c00423{left:272.373333pt;}
.x13_c00423{left:278.666667pt;}
.x3a_c00423{left:280.000000pt;}
.xcf_c00423{left:282.666667pt;}
.xb7_c00423{left:284.373333pt;}
.x8d_c00423{left:286.293333pt;}
.x42_c00423{left:288.000000pt;}
.x7b_c00423{left:289.333333pt;}
.x51_c00423{left:291.626667pt;}
.xbb_c00423{left:293.333333pt;}
.x7_c00423{left:296.373333pt;}
.x59_c00423{left:297.333333pt;}
.x2d_c00423{left:298.293333pt;}
.xde_c00423{left:300.000000pt;}
.xa4_c00423{left:301.333333pt;}
.x14_c00423{left:302.666667pt;}
.x43_c00423{left:304.373333pt;}
.x7c_c00423{left:305.333333pt;}
.xa9_c00423{left:306.666667pt;}
.xb8_c00423{left:309.706667pt;}
.x6c_c00423{left:312.373333pt;}
.x5a_c00423{left:314.666667pt;}
.x96_c00423{left:316.373333pt;}
.x22_c00423{left:317.333333pt;}
.x8e_c00423{left:320.373333pt;}
.xbc_c00423{left:325.333333pt;}
.x44_c00423{left:327.626667pt;}
.xaa_c00423{left:329.333333pt;}
.xdb_c00423{left:330.666667pt;}
.xd7_c00423{left:333.333333pt;}
.x8_c00423{left:334.666667pt;}
.xc4_c00423{left:336.960000pt;}
.xd3_c00423{left:338.666667pt;}
.x2e_c00423{left:340.000000pt;}
.x6d_c00423{left:340.960000pt;}
.xac_c00423{left:342.666667pt;}
.x5b_c00423{left:344.373333pt;}
.x7d_c00423{left:345.706667pt;}
.x9e_c00423{left:348.373333pt;}
.x9_c00423{left:354.666667pt;}
.xc0_c00423{left:357.333333pt;}
.x15_c00423{left:358.666667pt;}
.x2_c00423{left:362.666667pt;}
.x3b_c00423{left:367.040000pt;}
.xb9_c00423{left:368.000000pt;}
.xdc_c00423{left:369.333333pt;}
.x75_c00423{left:373.706667pt;}
.x9f_c00423{left:374.666667pt;}
.x2f_c00423{left:377.333333pt;}
.x5c_c00423{left:380.373333pt;}
.xca_c00423{left:381.333333pt;}
.xcd_c00423{left:382.666667pt;}
.x52_c00423{left:384.000000pt;}
.x45_c00423{left:391.040000pt;}
.x76_c00423{left:392.000000pt;}
.x23_c00423{left:393.333333pt;}
.xad_c00423{left:395.040000pt;}
.x8f_c00423{left:397.706667pt;}
.x3c_c00423{left:400.373333pt;}
.x7e_c00423{left:402.666667pt;}
.x66_c00423{left:404.373333pt;}
.xba_c00423{left:406.293333pt;}
.xbd_c00423{left:408.373333pt;}
.x16_c00423{left:409.333333pt;}
.xc9_c00423{left:415.040000pt;}
.x97_c00423{left:416.000000pt;}
.xc5_c00423{left:416.960000pt;}
.xa_c00423{left:421.706667pt;}
.x24_c00423{left:423.040000pt;}
.xbe_c00423{left:424.000000pt;}
.xd6_c00423{left:425.333333pt;}
.x17_c00423{left:427.040000pt;}
.xcb_c00423{left:429.333333pt;}
.x5d_c00423{left:433.333333pt;}
.x98_c00423{left:434.293333pt;}
.x53_c00423{left:439.040000pt;}
.x30_c00423{left:440.000000pt;}
.x7f_c00423{left:441.333333pt;}
.x85_c00423{left:444.373333pt;}
.xbf_c00423{left:445.333333pt;}
.x46_c00423{left:449.333333pt;}
.x18_c00423{left:451.040000pt;}
.x6e_c00423{left:452.373333pt;}
.x31_c00423{left:453.706667pt;}
.x99_c00423{left:456.000000pt;}
.x77_c00423{left:456.960000pt;}
.x25_c00423{left:458.666667pt;}
.xdd_c00423{left:460.000000pt;}
.x5e_c00423{left:464.000000pt;}
.xc6_c00423{left:466.293333pt;}
.xdf_c00423{left:469.333333pt;}
.x3d_c00423{left:472.000000pt;}
.x78_c00423{left:472.960000pt;}
.xce_c00423{left:474.666667pt;}
.xc1_c00423{left:480.373333pt;}
.x90_c00423{left:481.333333pt;}
.x86_c00423{left:484.373333pt;}
.x80_c00423{left:485.333333pt;}
.x19_c00423{left:486.666667pt;}
.x6f_c00423{left:488.000000pt;}
.x47_c00423{left:490.666667pt;}
.x79_c00423{left:492.000000pt;}
.x67_c00423{left:493.706667pt;}
.xb_c00423{left:494.666667pt;}
.x48_c00423{left:500.000000pt;}
.xc2_c00423{left:504.000000pt;}
.x26_c00423{left:504.960000pt;}
.x54_c00423{left:506.666667pt;}
.x91_c00423{left:508.373333pt;}
.xc7_c00423{left:509.333333pt;}
.xd5_c00423{left:511.040000pt;}
.xc_c00423{left:513.333333pt;}
.xcc_c00423{left:514.666667pt;}
.x87_c00423{left:517.333333pt;}
.xb2_c00423{left:518.666667pt;}
.x32_c00423{left:521.333333pt;}
.xa5_c00423{left:523.040000pt;}
.x5f_c00423{left:531.040000pt;}
.xa0_c00423{left:532.373333pt;}
.x1a_c00423{left:533.333333pt;}
.x27_c00423{left:534.666667pt;}
.x70_c00423{left:536.000000pt;}
.xd_c00423{left:537.333333pt;}
.x88_c00423{left:540.000000pt;}
.x33_c00423{left:544.000000pt;}
.x92_c00423{left:549.333333pt;}
.x1b_c00423{left:550.666667pt;}
.xd2_c00423{left:553.333333pt;}
.x49_c00423{left:554.666667pt;}
.x89_c00423{left:556.000000pt;}
.x81_c00423{left:556.960000pt;}
.xb3_c00423{left:558.666667pt;}
.xd8_c00423{left:561.333333pt;}
.x28_c00423{left:562.666667pt;}
.x60_c00423{left:565.333333pt;}
.xae_c00423{left:566.666667pt;}
.x3e_c00423{left:569.333333pt;}
.x4a_c00423{left:570.293333pt;}
.x55_c00423{left:572.960000pt;}
.x29_c00423{left:574.666667pt;}
.x8a_c00423{left:578.666667pt;}
.x68_c00423{left:580.373333pt;}
.x82_c00423{left:584.373333pt;}
.x61_c00423{left:585.333333pt;}
.x4b_c00423{left:588.960000pt;}
.xe_c00423{left:590.666667pt;}
.x3f_c00423{left:592.000000pt;}
.x9a_c00423{left:594.293333pt;}
.xb4_c00423{left:600.000000pt;}
.x40_c00423{left:602.666667pt;}
.x62_c00423{left:603.626667pt;}
.x4c_c00423{left:605.333333pt;}
.x8b_c00423{left:607.626667pt;}
.x1c_c00423{left:612.000000pt;}
.x34_c00423{left:613.333333pt;}
.x69_c00423{left:614.293333pt;}
.x9b_c00423{left:616.000000pt;}
.x63_c00423{left:622.666667pt;}
.x93_c00423{left:631.040000pt;}
.x9c_c00423{left:636.000000pt;}
.x2a_c00423{left:636.960000pt;}
.xaf_c00423{left:640.000000pt;}
.xb5_c00423{left:642.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_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_c3c0e876b80b3a4be0da6a1f.woff2')format("woff");}.ff1_c00424{font-family:ff1_c00424;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5f_c00424{transform:matrix(0.315546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315546,0.000000,0.000000,0.250000,0,0);}
.m9e_c00424{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m54_c00424{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.md2_c00424{transform:matrix(0.348794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348794,0.000000,0.000000,0.250000,0,0);}
.m40_c00424{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m41_c00424{transform:matrix(0.358512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358512,0.000000,0.000000,0.250000,0,0);}
.md1_c00424{transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);}
.mbe_c00424{transform:matrix(0.360390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360390,0.000000,0.000000,0.250000,0,0);}
.m61_c00424{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m6a_c00424{transform:matrix(0.365126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365126,0.000000,0.000000,0.250000,0,0);}
.mc2_c00424{transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);}
.m109_c00424{transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);}
.m30_c00424{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m59_c00424{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m72_c00424{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m9_c00424{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.me5_c00424{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.mb8_c00424{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m6b_c00424{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m93_c00424{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.mab_c00424{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m36_c00424{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m69_c00424{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.m71_c00424{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m6e_c00424{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m3e_c00424{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m9b_c00424{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m97_c00424{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m6d_c00424{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m3d_c00424{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m68_c00424{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m128_c00424{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.maf_c00424{transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);}
.m1b_c00424{transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);}
.m2d_c00424{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m2e_c00424{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m55_c00424{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m9a_c00424{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m32_c00424{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m98_c00424{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m9c_c00424{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m9d_c00424{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.mf9_c00424{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m121_c00424{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m111_c00424{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m33_c00424{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m10d_c00424{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m8_c00424{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.mf0_c00424{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.m1c_c00424{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m2a_c00424{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m16_c00424{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m13_c00424{transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);}
.m31_c00424{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m4_c00424{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m7f_c00424{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m80_c00424{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mf8_c00424{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m25_c00424{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m107_c00424{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m101_c00424{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m102_c00424{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m122_c00424{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m47_c00424{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m10_c00424{transform:matrix(0.421150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421150,0.000000,0.000000,0.250000,0,0);}
.maa_c00424{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m22_c00424{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m127_c00424{transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);}
.m12a_c00424{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mb1_c00424{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.m52_c00424{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m17_c00424{transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);}
.m7a_c00424{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m44_c00424{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m12c_c00424{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m4f_c00424{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m100_c00424{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m96_c00424{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m92_c00424{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m83_c00424{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m37_c00424{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m23_c00424{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m2c_c00424{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m88_c00424{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.me6_c00424{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.md_c00424{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.mbc_c00424{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.mdd_c00424{transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);}
.mc3_c00424{transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);}
.m14_c00424{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.mbd_c00424{transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);}
.m53_c00424{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.mdb_c00424{transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);}
.m18_c00424{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m106_c00424{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_c00424{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.mfc_c00424{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m89_c00424{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m78_c00424{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.mb_c00424{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.md3_c00424{transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);}
.mf_c00424{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m5e_c00424{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m110_c00424{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mde_c00424{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.mcf_c00424{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.ma4_c00424{transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);}
.m12b_c00424{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.mb6_c00424{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.ma2_c00424{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.m12d_c00424{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.mce_c00424{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m114_c00424{transform:matrix(0.467069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467069,0.000000,0.000000,0.250000,0,0);}
.m2_c00424{transform:matrix(0.468908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468908,0.000000,0.000000,0.250000,0,0);}
.m48_c00424{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.mc_c00424{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.me3_c00424{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.mf7_c00424{transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);}
.mc7_c00424{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m2f_c00424{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.ma7_c00424{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.mad_c00424{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m87_c00424{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.mbb_c00424{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.mc4_c00424{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.ma_c00424{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mb4_c00424{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.mea_c00424{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mfe_c00424{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m126_c00424{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m84_c00424{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m63_c00424{transform:matrix(0.490336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490336,0.000000,0.000000,0.250000,0,0);}
.m1_c00424{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m91_c00424{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.md4_c00424{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.m7b_c00424{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m45_c00424{transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);}
.me_c00424{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);}
.m10f_c00424{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m7e_c00424{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m115_c00424{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.mba_c00424{transform:matrix(0.505882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505882,0.000000,0.000000,0.250000,0,0);}
.m11a_c00424{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.med_c00424{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m29_c00424{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m103_c00424{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m3c_c00424{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m11d_c00424{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m119_c00424{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m105_c00424{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m21_c00424{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.m26_c00424{transform:matrix(0.514842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514842,0.000000,0.000000,0.250000,0,0);}
.m85_c00424{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m10e_c00424{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mb0_c00424{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.mc9_c00424{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.me8_c00424{transform:matrix(0.517647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517647,0.000000,0.000000,0.250000,0,0);}
.m28_c00424{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m8c_c00424{transform:matrix(0.519481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519481,0.000000,0.000000,0.250000,0,0);}
.mc0_c00424{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);}
.m74_c00424{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m38_c00424{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m57_c00424{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m5d_c00424{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mb2_c00424{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);}
.mfa_c00424{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m73_c00424{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m124_c00424{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m118_c00424{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m7d_c00424{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m76_c00424{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m4a_c00424{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m4c_c00424{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mfd_c00424{transform:matrix(0.532353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532353,0.000000,0.000000,0.250000,0,0);}
.m3f_c00424{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m64_c00424{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m66_c00424{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m10b_c00424{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m51_c00424{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.me4_c00424{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m58_c00424{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.ma6_c00424{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m116_c00424{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m39_c00424{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.md0_c00424{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m81_c00424{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m11c_c00424{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mf6_c00424{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m34_c00424{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m50_c00424{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mf1_c00424{transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);}
.ma1_c00424{transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);}
.m77_c00424{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m11_c00424{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m65_c00424{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m6f_c00424{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m112_c00424{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m5b_c00424{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.md8_c00424{transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);}
.mfb_c00424{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m4b_c00424{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m1e_c00424{transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);}
.mee_c00424{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.me7_c00424{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.mc1_c00424{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.m11b_c00424{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mef_c00424{transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);}
.me1_c00424{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m123_c00424{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.me9_c00424{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m3a_c00424{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m49_c00424{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m5_c00424{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.mb5_c00424{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m20_c00424{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m6_c00424{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m120_c00424{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m27_c00424{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m1a_c00424{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.mb9_c00424{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.mdc_c00424{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);}
.m9f_c00424{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m79_c00424{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m6c_c00424{transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);}
.md9_c00424{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.meb_c00424{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.m113_c00424{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.mb7_c00424{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m129_c00424{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m60_c00424{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.mf2_c00424{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.mca_c00424{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m5c_c00424{transform:matrix(0.595294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595294,0.000000,0.000000,0.250000,0,0);}
.m7c_c00424{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.mda_c00424{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m94_c00424{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.mf4_c00424{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);}
.m46_c00424{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m11e_c00424{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m43_c00424{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mf3_c00424{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.mdf_c00424{transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);}
.m125_c00424{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.ma9_c00424{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m0_c00424{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);}
.m7_c00424{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mbf_c00424{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.md6_c00424{transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);}
.m56_c00424{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m19_c00424{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m82_c00424{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.mb3_c00424{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.mc8_c00424{transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);}
.me2_c00424{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);}
.m75_c00424{transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);}
.m15_c00424{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.ma3_c00424{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.ma0_c00424{transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);}
.mcd_c00424{transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);}
.m99_c00424{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.md5_c00424{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m3b_c00424{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.ma5_c00424{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.me0_c00424{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.mcc_c00424{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m8b_c00424{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.mc6_c00424{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mf5_c00424{transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);}
.m1f_c00424{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.m3_c00424{transform:matrix(0.685882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685882,0.000000,0.000000,0.250000,0,0);}
.ma8_c00424{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m95_c00424{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.mc5_c00424{transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);}
.m8f_c00424{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mae_c00424{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m1d_c00424{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m5a_c00424{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m4d_c00424{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.md7_c00424{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);}
.m108_c00424{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.m8d_c00424{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m8e_c00424{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.m42_c00424{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m104_c00424{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m90_c00424{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m4e_c00424{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m70_c00424{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m35_c00424{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m10c_c00424{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m62_c00424{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m117_c00424{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m67_c00424{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m11f_c00424{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m8a_c00424{transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);}
.m86_c00424{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.mac_c00424{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mff_c00424{transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);}
.mcb_c00424{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.mec_c00424{transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);}
.m10a_c00424{transform:matrix(1.165865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.165865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.165865,0.000000,0.000000,0.250000,0,0);}
.m2b_c00424{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m24_c00424{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws1_c00424{word-spacing:-5.871000px;}
.ws0_c00424{word-spacing:-3.452388px;}
.ws2_c00424{word-spacing:0.000000px;}
.fc0_c00424{color:transparent;}
.fs5_c00424{font-size:3.420000px;}
.fs8_c00424{font-size:13.620000px;}
.fs6_c00424{font-size:18.720000px;}
.fs0_c00424{font-size:20.400000px;}
.fs3_c00424{font-size:25.500000px;}
.fs1_c00424{font-size:28.920000px;}
.fs4_c00424{font-size:32.340000px;}
.fs2_c00424{font-size:35.700000px;}
.fs7_c00424{font-size:39.120000px;}
.y0_c00424{bottom:0.000000px;}
.yf2_c00424{bottom:241.680000px;}
.yf3_c00424{bottom:242.745000px;}
.yf5_c00424{bottom:243.630000px;}
.yf7_c00424{bottom:243.825000px;}
.yf4_c00424{bottom:244.905000px;}
.yf6_c00424{bottom:245.130000px;}
.yea_c00424{bottom:262.245000px;}
.yf1_c00424{bottom:263.130000px;}
.yf0_c00424{bottom:263.325000px;}
.yec_c00424{bottom:263.970000px;}
.yeb_c00424{bottom:264.405000px;}
.yee_c00424{bottom:264.630000px;}
.yed_c00424{bottom:265.470000px;}
.yef_c00424{bottom:265.905000px;}
.ye6_c00424{bottom:280.905000px;}
.ye9_c00424{bottom:281.745000px;}
.ye8_c00424{bottom:283.245000px;}
.ye4_c00424{bottom:283.905000px;}
.ye7_c00424{bottom:284.130000px;}
.ye5_c00424{bottom:284.970000px;}
.ye3_c00424{bottom:285.405000px;}
.ydf_c00424{bottom:301.470000px;}
.ye2_c00424{bottom:303.630000px;}
.ye1_c00424{bottom:303.825000px;}
.ye0_c00424{bottom:304.470000px;}
.yde_c00424{bottom:304.905000px;}
.ydc_c00424{bottom:321.405000px;}
.yda_c00424{bottom:322.245000px;}
.ydb_c00424{bottom:323.970000px;}
.yd9_c00424{bottom:324.405000px;}
.ydd_c00424{bottom:324.630000px;}
.yd7_c00424{bottom:341.745000px;}
.yd6_c00424{bottom:343.905000px;}
.yd8_c00424{bottom:344.130000px;}
.yd2_c00424{bottom:361.245000px;}
.yd5_c00424{bottom:362.130000px;}
.yd4_c00424{bottom:363.405000px;}
.yd3_c00424{bottom:363.420000px;}
.yd1_c00424{bottom:384.825000px;}
.yce_c00424{bottom:385.905000px;}
.ycd_c00424{bottom:386.130000px;}
.ycf_c00424{bottom:386.970000px;}
.yd0_c00424{bottom:387.195000px;}
.ycc_c00424{bottom:399.825000px;}
.yc9_c00424{bottom:400.905000px;}
.yca_c00424{bottom:401.130000px;}
.ycb_c00424{bottom:403.050000px;}
.yc8_c00424{bottom:414.405000px;}
.yc2_c00424{bottom:414.825000px;}
.yc4_c00424{bottom:415.050000px;}
.yc6_c00424{bottom:415.905000px;}
.yc7_c00424{bottom:416.550000px;}
.yc3_c00424{bottom:416.970000px;}
.yc1_c00424{bottom:417.195000px;}
.yc5_c00424{bottom:418.050000px;}
.yc0_c00424{bottom:429.405000px;}
.ybf_c00424{bottom:443.325000px;}
.ybc_c00424{bottom:444.405000px;}
.yb7_c00424{bottom:445.050000px;}
.ybe_c00424{bottom:445.470000px;}
.ybd_c00424{bottom:445.695000px;}
.yb9_c00424{bottom:446.130000px;}
.yb8_c00424{bottom:446.550000px;}
.ybb_c00424{bottom:446.970000px;}
.yba_c00424{bottom:448.050000px;}
.yb5_c00424{bottom:459.405000px;}
.yb6_c00424{bottom:459.825000px;}
.yb3_c00424{bottom:460.470000px;}
.yb4_c00424{bottom:460.695000px;}
.yb2_c00424{bottom:461.550000px;}
.yb0_c00424{bottom:474.405000px;}
.yaf_c00424{bottom:474.825000px;}
.yb1_c00424{bottom:475.470000px;}
.yad_c00424{bottom:475.695000px;}
.yab_c00424{bottom:476.550000px;}
.yac_c00424{bottom:476.970000px;}
.yae_c00424{bottom:477.195000px;}
.ya9_c00424{bottom:488.325000px;}
.yaa_c00424{bottom:489.405000px;}
.ya8_c00424{bottom:502.905000px;}
.ya2_c00424{bottom:503.550000px;}
.ya7_c00424{bottom:504.405000px;}
.ya4_c00424{bottom:504.630000px;}
.ya5_c00424{bottom:505.050000px;}
.ya3_c00424{bottom:505.470000px;}
.ya6_c00424{bottom:506.550000px;}
.ya1_c00424{bottom:518.325000px;}
.y9f_c00424{bottom:519.405000px;}
.y9e_c00424{bottom:520.470000px;}
.ya0_c00424{bottom:520.695000px;}
.y9d_c00424{bottom:532.470000px;}
.y99_c00424{bottom:534.405000px;}
.y98_c00424{bottom:535.050000px;}
.y9c_c00424{bottom:535.470000px;}
.y9a_c00424{bottom:535.695000px;}
.y9b_c00424{bottom:536.550000px;}
.y97_c00424{bottom:548.325000px;}
.y96_c00424{bottom:549.405000px;}
.y95_c00424{bottom:549.630000px;}
.y94_c00424{bottom:550.470000px;}
.y8e_c00424{bottom:562.050000px;}
.y8f_c00424{bottom:562.905000px;}
.y93_c00424{bottom:563.970000px;}
.y91_c00424{bottom:565.050000px;}
.y92_c00424{bottom:565.470000px;}
.y90_c00424{bottom:566.550000px;}
.y8d_c00424{bottom:577.470000px;}
.y8b_c00424{bottom:577.905000px;}
.y8c_c00424{bottom:578.325000px;}
.y88_c00424{bottom:579.405000px;}
.y89_c00424{bottom:579.630000px;}
.y87_c00424{bottom:580.050000px;}
.y8a_c00424{bottom:580.470000px;}
.y80_c00424{bottom:592.050000px;}
.y81_c00424{bottom:592.905000px;}
.y84_c00424{bottom:593.970000px;}
.y86_c00424{bottom:594.195000px;}
.y82_c00424{bottom:594.630000px;}
.y83_c00424{bottom:595.050000px;}
.y85_c00424{bottom:595.470000px;}
.y7b_c00424{bottom:605.970000px;}
.y7a_c00424{bottom:606.825000px;}
.y7c_c00424{bottom:607.050000px;}
.y7f_c00424{bottom:607.470000px;}
.y7e_c00424{bottom:607.905000px;}
.y7d_c00424{bottom:608.550000px;}
.y74_c00424{bottom:620.970000px;}
.y77_c00424{bottom:621.825000px;}
.y75_c00424{bottom:622.905000px;}
.y79_c00424{bottom:623.130000px;}
.y76_c00424{bottom:623.970000px;}
.y78_c00424{bottom:625.050000px;}
.y73_c00424{bottom:635.970000px;}
.y72_c00424{bottom:636.825000px;}
.y6e_c00424{bottom:637.050000px;}
.y70_c00424{bottom:637.905000px;}
.y71_c00424{bottom:638.970000px;}
.y6f_c00424{bottom:640.050000px;}
.y6c_c00424{bottom:651.825000px;}
.y6a_c00424{bottom:652.905000px;}
.y6d_c00424{bottom:653.970000px;}
.y69_c00424{bottom:654.195000px;}
.y6b_c00424{bottom:655.050000px;}
.y68_c00424{bottom:665.325000px;}
.y66_c00424{bottom:667.905000px;}
.y63_c00424{bottom:668.130000px;}
.y65_c00424{bottom:668.970000px;}
.y67_c00424{bottom:669.195000px;}
.y64_c00424{bottom:670.050000px;}
.y60_c00424{bottom:689.745000px;}
.y62_c00424{bottom:690.630000px;}
.y61_c00424{bottom:691.905000px;}
.y5f_c00424{bottom:708.825000px;}
.y5e_c00424{bottom:709.245000px;}
.y5c_c00424{bottom:710.970000px;}
.y5d_c00424{bottom:711.405000px;}
.y5b_c00424{bottom:727.245000px;}
.y59_c00424{bottom:728.325000px;}
.y54_c00424{bottom:728.745000px;}
.y58_c00424{bottom:729.630000px;}
.y57_c00424{bottom:729.825000px;}
.y55_c00424{bottom:730.050000px;}
.y5a_c00424{bottom:730.470000px;}
.y53_c00424{bottom:730.905000px;}
.y56_c00424{bottom:731.970000px;}
.y4f_c00424{bottom:748.245000px;}
.y52_c00424{bottom:748.905000px;}
.y50_c00424{bottom:749.130000px;}
.y51_c00424{bottom:749.325000px;}
.y4e_c00424{bottom:750.405000px;}
.y4c_c00424{bottom:765.825000px;}
.y4d_c00424{bottom:767.745000px;}
.y4a_c00424{bottom:768.630000px;}
.y4b_c00424{bottom:768.825000px;}
.y48_c00424{bottom:787.245000px;}
.y47_c00424{bottom:789.405000px;}
.y49_c00424{bottom:790.470000px;}
.y45_c00424{bottom:805.905000px;}
.y40_c00424{bottom:806.745000px;}
.y43_c00424{bottom:806.970000px;}
.y46_c00424{bottom:807.630000px;}
.y44_c00424{bottom:807.825000px;}
.y41_c00424{bottom:808.470000px;}
.y3f_c00424{bottom:808.905000px;}
.y42_c00424{bottom:809.970000px;}
.y3c_c00424{bottom:826.245000px;}
.y3d_c00424{bottom:828.405000px;}
.y3e_c00424{bottom:828.630000px;}
.y3a_c00424{bottom:845.745000px;}
.y39_c00424{bottom:847.905000px;}
.y3b_c00424{bottom:848.130000px;}
.y38_c00424{bottom:865.245000px;}
.y36_c00424{bottom:866.745000px;}
.y32_c00424{bottom:867.405000px;}
.y37_c00424{bottom:867.630000px;}
.y33_c00424{bottom:868.470000px;}
.y34_c00424{bottom:868.905000px;}
.y35_c00424{bottom:868.920000px;}
.y31_c00424{bottom:884.745000px;}
.y30_c00424{bottom:886.245000px;}
.y2c_c00424{bottom:886.905000px;}
.y2f_c00424{bottom:887.130000px;}
.y2e_c00424{bottom:887.970000px;}
.y2d_c00424{bottom:888.405000px;}
.y2b_c00424{bottom:905.325000px;}
.y29_c00424{bottom:905.745000px;}
.y27_c00424{bottom:906.630000px;}
.y28_c00424{bottom:906.825000px;}
.y26_c00424{bottom:907.905000px;}
.y2a_c00424{bottom:908.970000px;}
.y25_c00424{bottom:924.180000px;}
.y23_c00424{bottom:925.245000px;}
.y24_c00424{bottom:926.970000px;}
.y21_c00424{bottom:927.405000px;}
.y22_c00424{bottom:927.420000px;}
.y20_c00424{bottom:944.745000px;}
.y1d_c00424{bottom:946.905000px;}
.y1f_c00424{bottom:946.920000px;}
.y1e_c00424{bottom:947.130000px;}
.y1c_c00424{bottom:964.245000px;}
.y18_c00424{bottom:983.745000px;}
.y1a_c00424{bottom:984.825000px;}
.y1b_c00424{bottom:985.245000px;}
.y19_c00424{bottom:985.920000px;}
.y12_c00424{bottom:1003.245000px;}
.y13_c00424{bottom:1004.745000px;}
.y17_c00424{bottom:1005.405000px;}
.y15_c00424{bottom:1005.825000px;}
.y16_c00424{bottom:1006.905000px;}
.y14_c00424{bottom:1006.920000px;}
.y10_c00424{bottom:1026.825000px;}
.y11_c00424{bottom:1027.050000px;}
.yd_c00424{bottom:1027.905000px;}
.ye_c00424{bottom:1028.970000px;}
.yf_c00424{bottom:1030.050000px;}
.yc_c00424{bottom:1045.470000px;}
.y7_c00424{bottom:1046.325000px;}
.yb_c00424{bottom:1046.550000px;}
.y6_c00424{bottom:1047.405000px;}
.ya_c00424{bottom:1047.825000px;}
.y9_c00424{bottom:1048.050000px;}
.y8_c00424{bottom:1049.550000px;}
.y3_c00424{bottom:1070.745000px;}
.y5_c00424{bottom:1072.905000px;}
.y4_c00424{bottom:1073.970000px;}
.y2_c00424{bottom:1108.905000px;}
.y1_c00424{bottom:1111.050000px;}
.h6_c00424{height:4.206533px;}
.h9_c00424{height:16.752334px;}
.h7_c00424{height:23.025234px;}
.h1_c00424{height:25.091602px;}
.h4_c00424{height:31.364502px;}
.h2_c00424{height:35.571035px;}
.h5_c00424{height:39.777568px;}
.h3_c00424{height:43.910303px;}
.h8_c00424{height:48.116836px;}
.h0_c00424{height:1335.000000px;}
.w0_c00424{width:880.500000px;}
.x0_c00424{left:0.000000px;}
.xb_c00424{left:153.000000px;}
.x79_c00424{left:154.920000px;}
.x1b_c00424{left:166.080000px;}
.x9a_c00424{left:168.420000px;}
.x29_c00424{left:169.920000px;}
.x7a_c00424{left:180.000000px;}
.x4a_c00424{left:181.080000px;}
.x9b_c00424{left:184.500000px;}
.xad_c00424{left:185.580000px;}
.x59_c00424{left:187.080000px;}
.xdd_c00424{left:192.000000px;}
.x7c_c00424{left:195.000000px;}
.x71_c00424{left:198.000000px;}
.xd5_c00424{left:201.000000px;}
.x84_c00424{left:205.080000px;}
.xd6_c00424{left:206.580000px;}
.x2a_c00424{left:208.920000px;}
.xc4_c00424{left:210.420000px;}
.xc_c00424{left:211.500000px;}
.x43_c00424{left:214.500000px;}
.xa2_c00424{left:215.580000px;}
.x72_c00424{left:217.920000px;}
.x68_c00424{left:219.000000px;}
.x9c_c00424{left:220.500000px;}
.xf8_c00424{left:223.080000px;}
.xeb_c00424{left:227.580000px;}
.x1c_c00424{left:229.920000px;}
.x4b_c00424{left:231.000000px;}
.xd7_c00424{left:232.500000px;}
.x5a_c00424{left:234.000000px;}
.xde_c00424{left:237.420000px;}
.xd_c00424{left:240.000000px;}
.xce_c00424{left:241.500000px;}
.x69_c00424{left:243.000000px;}
.x73_c00424{left:244.500000px;}
.x4c_c00424{left:247.500000px;}
.x38_c00424{left:250.500000px;}
.x85_c00424{left:252.000000px;}
.x5b_c00424{left:255.000000px;}
.xe5_c00424{left:256.500000px;}
.x31_c00424{left:259.500000px;}
.x3_c00424{left:262.080000px;}
.xbc_c00424{left:264.000000px;}
.x2b_c00424{left:268.500000px;}
.x53_c00424{left:269.580000px;}
.x7d_c00424{left:271.500000px;}
.xae_c00424{left:272.580000px;}
.x4d_c00424{left:274.080000px;}
.xe7_c00424{left:276.000000px;}
.xc6_c00424{left:277.500000px;}
.x32_c00424{left:280.500000px;}
.x3e_c00424{left:282.000000px;}
.xef_c00424{left:283.500000px;}
.x1d_c00424{left:285.855000px;}
.xa8_c00424{left:287.580000px;}
.xe2_c00424{left:289.500000px;}
.x2c_c00424{left:291.000000px;}
.x7b_c00424{left:292.500000px;}
.xa3_c00424{left:294.000000px;}
.x6a_c00424{left:295.500000px;}
.x62_c00424{left:297.420000px;}
.xc7_c00424{left:298.920000px;}
.x1e_c00424{left:300.000000px;}
.x39_c00424{left:301.500000px;}
.xb3_c00424{left:306.000000px;}
.x5c_c00424{left:307.500000px;}
.x4e_c00424{left:309.000000px;}
.xc5_c00424{left:310.500000px;}
.xd8_c00424{left:312.000000px;}
.xe_c00424{left:313.500000px;}
.x90_c00424{left:315.420000px;}
.x1f_c00424{left:316.500000px;}
.xbd_c00424{left:321.000000px;}
.x3a_c00424{left:322.080000px;}
.xe3_c00424{left:323.580000px;}
.x6b_c00424{left:325.080000px;}
.xcf_c00424{left:327.420000px;}
.x86_c00424{left:328.500000px;}
.xd1_c00424{left:331.500000px;}
.xb9_c00424{left:333.855000px;}
.xf_c00424{left:335.355000px;}
.xb4_c00424{left:337.080000px;}
.xf9_c00424{left:338.580000px;}
.x5d_c00424{left:340.500000px;}
.x4f_c00424{left:343.080000px;}
.x4_c00424{left:345.420000px;}
.xd9_c00424{left:348.000000px;}
.x3b_c00424{left:349.080000px;}
.xe4_c00424{left:352.080000px;}
.x87_c00424{left:354.000000px;}
.x2d_c00424{left:355.920000px;}
.x10_c00424{left:358.920000px;}
.x74_c00424{left:362.580000px;}
.x3f_c00424{left:364.500000px;}
.xc8_c00424{left:366.420000px;}
.x7e_c00424{left:370.920000px;}
.x20_c00424{left:372.000000px;}
.xa9_c00424{left:373.080000px;}
.xa4_c00424{left:375.000000px;}
.xba_c00424{left:379.500000px;}
.x11_c00424{left:382.920000px;}
.xc9_c00424{left:384.000000px;}
.x33_c00424{left:385.500000px;}
.x91_c00424{left:386.580000px;}
.x97_c00424{left:388.500000px;}
.x40_c00424{left:389.580000px;}
.xbb_c00424{left:391.500000px;}
.xa1_c00424{left:393.000000px;}
.x12_c00424{left:395.580000px;}
.x54_c00424{left:397.500000px;}
.x7f_c00424{left:400.500000px;}
.x3c_c00424{left:402.645000px;}
.x50_c00424{left:405.420000px;}
.x1_c00424{left:406.500000px;}
.xbe_c00424{left:408.000000px;}
.xdf_c00424{left:409.920000px;}
.xcc_c00424{left:411.000000px;}
.x5e_c00424{left:412.500000px;}
.x88_c00424{left:417.000000px;}
.x5_c00424{left:419.355000px;}
.xec_c00424{left:424.500000px;}
.x44_c00424{left:427.500000px;}
.x98_c00424{left:428.580000px;}
.x9d_c00424{left:430.500000px;}
.x2e_c00424{left:433.920000px;}
.x89_c00424{left:435.420000px;}
.x6_c00424{left:436.500000px;}
.x3d_c00424{left:438.645000px;}
.x21_c00424{left:439.920000px;}
.xb5_c00424{left:442.500000px;}
.xcd_c00424{left:445.080000px;}
.xaf_c00424{left:448.080000px;}
.x34_c00424{left:450.000000px;}
.x80_c00424{left:454.500000px;}
.x7_c00424{left:456.000000px;}
.xed_c00424{left:457.275000px;}
.x99_c00424{left:459.000000px;}
.x92_c00424{left:460.500000px;}
.x2f_c00424{left:462.000000px;}
.x75_c00424{left:463.920000px;}
.x13_c00424{left:465.000000px;}
.xe8_c00424{left:468.000000px;}
.xda_c00424{left:469.500000px;}
.xf3_c00424{left:472.500000px;}
.x22_c00424{left:474.000000px;}
.xf0_c00424{left:475.500000px;}
.x5f_c00424{left:478.500000px;}
.x55_c00424{left:481.920000px;}
.x14_c00424{left:485.355000px;}
.xe9_c00424{left:487.080000px;}
.x45_c00424{left:488.580000px;}
.x76_c00424{left:490.080000px;}
.x6c_c00424{left:491.775000px;}
.xf1_c00424{left:494.580000px;}
.x63_c00424{left:498.000000px;}
.xa5_c00424{left:499.500000px;}
.x8_c00424{left:500.580000px;}
.x30_c00424{left:502.500000px;}
.xbf_c00424{left:504.420000px;}
.x81_c00424{left:505.920000px;}
.x23_c00424{left:508.500000px;}
.x51_c00424{left:510.000000px;}
.x15_c00424{left:511.500000px;}
.x8a_c00424{left:513.000000px;}
.x9_c00424{left:516.000000px;}
.xfa_c00424{left:517.920000px;}
.x46_c00424{left:519.000000px;}
.x60_c00424{left:520.080000px;}
.xc0_c00424{left:523.920000px;}
.xd0_c00424{left:526.080000px;}
.x6d_c00424{left:527.580000px;}
.x8b_c00424{left:529.920000px;}
.x52_c00424{left:531.855000px;}
.xb0_c00424{left:535.080000px;}
.xa6_c00424{left:536.580000px;}
.x93_c00424{left:538.080000px;}
.x9e_c00424{left:541.080000px;}
.xaa_c00424{left:542.580000px;}
.xfb_c00424{left:544.500000px;}
.x35_c00424{left:545.775000px;}
.x16_c00424{left:550.920000px;}
.xc1_c00424{left:553.080000px;}
.xd2_c00424{left:556.080000px;}
.x77_c00424{left:557.580000px;}
.x6e_c00424{left:561.420000px;}
.xf2_c00424{left:562.920000px;}
.xe6_c00424{left:565.080000px;}
.x94_c00424{left:568.080000px;}
.xca_c00424{left:569.580000px;}
.x24_c00424{left:571.500000px;}
.x41_c00424{left:573.420000px;}
.xb6_c00424{left:574.500000px;}
.x64_c00424{left:576.000000px;}
.xb1_c00424{left:578.580000px;}
.x56_c00424{left:580.920000px;}
.xfc_c00424{left:583.500000px;}
.x36_c00424{left:586.500000px;}
.x65_c00424{left:588.000000px;}
.x82_c00424{left:591.000000px;}
.xa_c00424{left:592.275000px;}
.xe0_c00424{left:594.000000px;}
.xcb_c00424{left:595.500000px;}
.x9f_c00424{left:597.000000px;}
.x17_c00424{left:598.080000px;}
.xf4_c00424{left:600.000000px;}
.x95_c00424{left:601.920000px;}
.x25_c00424{left:604.500000px;}
.x42_c00424{left:606.000000px;}
.xa0_c00424{left:607.500000px;}
.x47_c00424{left:609.000000px;}
.xa7_c00424{left:610.080000px;}
.xd3_c00424{left:611.580000px;}
.x8c_c00424{left:613.500000px;}
.x37_c00424{left:614.580000px;}
.xee_c00424{left:619.500000px;}
.xfd_c00424{left:621.420000px;}
.xb2_c00424{left:622.500000px;}
.x8d_c00424{left:627.000000px;}
.xc2_c00424{left:628.500000px;}
.xb7_c00424{left:630.000000px;}
.xf5_c00424{left:631.500000px;}
.xab_c00424{left:634.920000px;}
.x26_c00424{left:636.000000px;}
.x18_c00424{left:644.580000px;}
.x78_c00424{left:646.500000px;}
.x48_c00424{left:647.580000px;}
.xfe_c00424{left:649.920000px;}
.xd4_c00424{left:651.420000px;}
.x6f_c00424{left:652.920000px;}
.x66_c00424{left:655.080000px;}
.xf7_c00424{left:658.500000px;}
.x8e_c00424{left:660.000000px;}
.xea_c00424{left:661.500000px;}
.xdb_c00424{left:663.000000px;}
.x19_c00424{left:664.500000px;}
.x49_c00424{left:665.580000px;}
.x61_c00424{left:668.580000px;}
.xf6_c00424{left:670.500000px;}
.x27_c00424{left:675.420000px;}
.x57_c00424{left:676.500000px;}
.x8f_c00424{left:679.500000px;}
.x1a_c00424{left:680.580000px;}
.xac_c00424{left:684.000000px;}
.xc3_c00424{left:685.500000px;}
.x67_c00424{left:686.775000px;}
.x96_c00424{left:687.855000px;}
.x70_c00424{left:690.420000px;}
.x28_c00424{left:692.355000px;}
.x58_c00424{left:701.355000px;}
.x2_c00424{left:706.080000px;}
.xdc_c00424{left:707.580000px;}
.x83_c00424{left:709.920000px;}
.xb8_c00424{left:711.000000px;}
.xe1_c00424{left:718.920000px;}
@media print{
.v0_c00424{vertical-align:0.000000pt;}
.ls0_c00424{letter-spacing:0.000000pt;}
.ws1_c00424{word-spacing:-5.218667pt;}
.ws0_c00424{word-spacing:-3.068789pt;}
.ws2_c00424{word-spacing:0.000000pt;}
.fs5_c00424{font-size:3.040000pt;}
.fs8_c00424{font-size:12.106667pt;}
.fs6_c00424{font-size:16.640000pt;}
.fs0_c00424{font-size:18.133333pt;}
.fs3_c00424{font-size:22.666667pt;}
.fs1_c00424{font-size:25.706667pt;}
.fs4_c00424{font-size:28.746667pt;}
.fs2_c00424{font-size:31.733333pt;}
.fs7_c00424{font-size:34.773333pt;}
.y0_c00424{bottom:0.000000pt;}
.yf2_c00424{bottom:214.826667pt;}
.yf3_c00424{bottom:215.773333pt;}
.yf5_c00424{bottom:216.560000pt;}
.yf7_c00424{bottom:216.733333pt;}
.yf4_c00424{bottom:217.693333pt;}
.yf6_c00424{bottom:217.893333pt;}
.yea_c00424{bottom:233.106667pt;}
.yf1_c00424{bottom:233.893333pt;}
.yf0_c00424{bottom:234.066667pt;}
.yec_c00424{bottom:234.640000pt;}
.yeb_c00424{bottom:235.026667pt;}
.yee_c00424{bottom:235.226667pt;}
.yed_c00424{bottom:235.973333pt;}
.yef_c00424{bottom:236.360000pt;}
.ye6_c00424{bottom:249.693333pt;}
.ye9_c00424{bottom:250.440000pt;}
.ye8_c00424{bottom:251.773333pt;}
.ye4_c00424{bottom:252.360000pt;}
.ye7_c00424{bottom:252.560000pt;}
.ye5_c00424{bottom:253.306667pt;}
.ye3_c00424{bottom:253.693333pt;}
.ydf_c00424{bottom:267.973333pt;}
.ye2_c00424{bottom:269.893333pt;}
.ye1_c00424{bottom:270.066667pt;}
.ye0_c00424{bottom:270.640000pt;}
.yde_c00424{bottom:271.026667pt;}
.ydc_c00424{bottom:285.693333pt;}
.yda_c00424{bottom:286.440000pt;}
.ydb_c00424{bottom:287.973333pt;}
.yd9_c00424{bottom:288.360000pt;}
.ydd_c00424{bottom:288.560000pt;}
.yd7_c00424{bottom:303.773333pt;}
.yd6_c00424{bottom:305.693333pt;}
.yd8_c00424{bottom:305.893333pt;}
.yd2_c00424{bottom:321.106667pt;}
.yd5_c00424{bottom:321.893333pt;}
.yd4_c00424{bottom:323.026667pt;}
.yd3_c00424{bottom:323.040000pt;}
.yd1_c00424{bottom:342.066667pt;}
.yce_c00424{bottom:343.026667pt;}
.ycd_c00424{bottom:343.226667pt;}
.ycf_c00424{bottom:343.973333pt;}
.yd0_c00424{bottom:344.173333pt;}
.ycc_c00424{bottom:355.400000pt;}
.yc9_c00424{bottom:356.360000pt;}
.yca_c00424{bottom:356.560000pt;}
.ycb_c00424{bottom:358.266667pt;}
.yc8_c00424{bottom:368.360000pt;}
.yc2_c00424{bottom:368.733333pt;}
.yc4_c00424{bottom:368.933333pt;}
.yc6_c00424{bottom:369.693333pt;}
.yc7_c00424{bottom:370.266667pt;}
.yc3_c00424{bottom:370.640000pt;}
.yc1_c00424{bottom:370.840000pt;}
.yc5_c00424{bottom:371.600000pt;}
.yc0_c00424{bottom:381.693333pt;}
.ybf_c00424{bottom:394.066667pt;}
.ybc_c00424{bottom:395.026667pt;}
.yb7_c00424{bottom:395.600000pt;}
.ybe_c00424{bottom:395.973333pt;}
.ybd_c00424{bottom:396.173333pt;}
.yb9_c00424{bottom:396.560000pt;}
.yb8_c00424{bottom:396.933333pt;}
.ybb_c00424{bottom:397.306667pt;}
.yba_c00424{bottom:398.266667pt;}
.yb5_c00424{bottom:408.360000pt;}
.yb6_c00424{bottom:408.733333pt;}
.yb3_c00424{bottom:409.306667pt;}
.yb4_c00424{bottom:409.506667pt;}
.yb2_c00424{bottom:410.266667pt;}
.yb0_c00424{bottom:421.693333pt;}
.yaf_c00424{bottom:422.066667pt;}
.yb1_c00424{bottom:422.640000pt;}
.yad_c00424{bottom:422.840000pt;}
.yab_c00424{bottom:423.600000pt;}
.yac_c00424{bottom:423.973333pt;}
.yae_c00424{bottom:424.173333pt;}
.ya9_c00424{bottom:434.066667pt;}
.yaa_c00424{bottom:435.026667pt;}
.ya8_c00424{bottom:447.026667pt;}
.ya2_c00424{bottom:447.600000pt;}
.ya7_c00424{bottom:448.360000pt;}
.ya4_c00424{bottom:448.560000pt;}
.ya5_c00424{bottom:448.933333pt;}
.ya3_c00424{bottom:449.306667pt;}
.ya6_c00424{bottom:450.266667pt;}
.ya1_c00424{bottom:460.733333pt;}
.y9f_c00424{bottom:461.693333pt;}
.y9e_c00424{bottom:462.640000pt;}
.ya0_c00424{bottom:462.840000pt;}
.y9d_c00424{bottom:473.306667pt;}
.y99_c00424{bottom:475.026667pt;}
.y98_c00424{bottom:475.600000pt;}
.y9c_c00424{bottom:475.973333pt;}
.y9a_c00424{bottom:476.173333pt;}
.y9b_c00424{bottom:476.933333pt;}
.y97_c00424{bottom:487.400000pt;}
.y96_c00424{bottom:488.360000pt;}
.y95_c00424{bottom:488.560000pt;}
.y94_c00424{bottom:489.306667pt;}
.y8e_c00424{bottom:499.600000pt;}
.y8f_c00424{bottom:500.360000pt;}
.y93_c00424{bottom:501.306667pt;}
.y91_c00424{bottom:502.266667pt;}
.y92_c00424{bottom:502.640000pt;}
.y90_c00424{bottom:503.600000pt;}
.y8d_c00424{bottom:513.306667pt;}
.y8b_c00424{bottom:513.693333pt;}
.y8c_c00424{bottom:514.066667pt;}
.y88_c00424{bottom:515.026667pt;}
.y89_c00424{bottom:515.226667pt;}
.y87_c00424{bottom:515.600000pt;}
.y8a_c00424{bottom:515.973333pt;}
.y80_c00424{bottom:526.266667pt;}
.y81_c00424{bottom:527.026667pt;}
.y84_c00424{bottom:527.973333pt;}
.y86_c00424{bottom:528.173333pt;}
.y82_c00424{bottom:528.560000pt;}
.y83_c00424{bottom:528.933333pt;}
.y85_c00424{bottom:529.306667pt;}
.y7b_c00424{bottom:538.640000pt;}
.y7a_c00424{bottom:539.400000pt;}
.y7c_c00424{bottom:539.600000pt;}
.y7f_c00424{bottom:539.973333pt;}
.y7e_c00424{bottom:540.360000pt;}
.y7d_c00424{bottom:540.933333pt;}
.y74_c00424{bottom:551.973333pt;}
.y77_c00424{bottom:552.733333pt;}
.y75_c00424{bottom:553.693333pt;}
.y79_c00424{bottom:553.893333pt;}
.y76_c00424{bottom:554.640000pt;}
.y78_c00424{bottom:555.600000pt;}
.y73_c00424{bottom:565.306667pt;}
.y72_c00424{bottom:566.066667pt;}
.y6e_c00424{bottom:566.266667pt;}
.y70_c00424{bottom:567.026667pt;}
.y71_c00424{bottom:567.973333pt;}
.y6f_c00424{bottom:568.933333pt;}
.y6c_c00424{bottom:579.400000pt;}
.y6a_c00424{bottom:580.360000pt;}
.y6d_c00424{bottom:581.306667pt;}
.y69_c00424{bottom:581.506667pt;}
.y6b_c00424{bottom:582.266667pt;}
.y68_c00424{bottom:591.400000pt;}
.y66_c00424{bottom:593.693333pt;}
.y63_c00424{bottom:593.893333pt;}
.y65_c00424{bottom:594.640000pt;}
.y67_c00424{bottom:594.840000pt;}
.y64_c00424{bottom:595.600000pt;}
.y60_c00424{bottom:613.106667pt;}
.y62_c00424{bottom:613.893333pt;}
.y61_c00424{bottom:615.026667pt;}
.y5f_c00424{bottom:630.066667pt;}
.y5e_c00424{bottom:630.440000pt;}
.y5c_c00424{bottom:631.973333pt;}
.y5d_c00424{bottom:632.360000pt;}
.y5b_c00424{bottom:646.440000pt;}
.y59_c00424{bottom:647.400000pt;}
.y54_c00424{bottom:647.773333pt;}
.y58_c00424{bottom:648.560000pt;}
.y57_c00424{bottom:648.733333pt;}
.y55_c00424{bottom:648.933333pt;}
.y5a_c00424{bottom:649.306667pt;}
.y53_c00424{bottom:649.693333pt;}
.y56_c00424{bottom:650.640000pt;}
.y4f_c00424{bottom:665.106667pt;}
.y52_c00424{bottom:665.693333pt;}
.y50_c00424{bottom:665.893333pt;}
.y51_c00424{bottom:666.066667pt;}
.y4e_c00424{bottom:667.026667pt;}
.y4c_c00424{bottom:680.733333pt;}
.y4d_c00424{bottom:682.440000pt;}
.y4a_c00424{bottom:683.226667pt;}
.y4b_c00424{bottom:683.400000pt;}
.y48_c00424{bottom:699.773333pt;}
.y47_c00424{bottom:701.693333pt;}
.y49_c00424{bottom:702.640000pt;}
.y45_c00424{bottom:716.360000pt;}
.y40_c00424{bottom:717.106667pt;}
.y43_c00424{bottom:717.306667pt;}
.y46_c00424{bottom:717.893333pt;}
.y44_c00424{bottom:718.066667pt;}
.y41_c00424{bottom:718.640000pt;}
.y3f_c00424{bottom:719.026667pt;}
.y42_c00424{bottom:719.973333pt;}
.y3c_c00424{bottom:734.440000pt;}
.y3d_c00424{bottom:736.360000pt;}
.y3e_c00424{bottom:736.560000pt;}
.y3a_c00424{bottom:751.773333pt;}
.y39_c00424{bottom:753.693333pt;}
.y3b_c00424{bottom:753.893333pt;}
.y38_c00424{bottom:769.106667pt;}
.y36_c00424{bottom:770.440000pt;}
.y32_c00424{bottom:771.026667pt;}
.y37_c00424{bottom:771.226667pt;}
.y33_c00424{bottom:771.973333pt;}
.y34_c00424{bottom:772.360000pt;}
.y35_c00424{bottom:772.373333pt;}
.y31_c00424{bottom:786.440000pt;}
.y30_c00424{bottom:787.773333pt;}
.y2c_c00424{bottom:788.360000pt;}
.y2f_c00424{bottom:788.560000pt;}
.y2e_c00424{bottom:789.306667pt;}
.y2d_c00424{bottom:789.693333pt;}
.y2b_c00424{bottom:804.733333pt;}
.y29_c00424{bottom:805.106667pt;}
.y27_c00424{bottom:805.893333pt;}
.y28_c00424{bottom:806.066667pt;}
.y26_c00424{bottom:807.026667pt;}
.y2a_c00424{bottom:807.973333pt;}
.y25_c00424{bottom:821.493333pt;}
.y23_c00424{bottom:822.440000pt;}
.y24_c00424{bottom:823.973333pt;}
.y21_c00424{bottom:824.360000pt;}
.y22_c00424{bottom:824.373333pt;}
.y20_c00424{bottom:839.773333pt;}
.y1d_c00424{bottom:841.693333pt;}
.y1f_c00424{bottom:841.706667pt;}
.y1e_c00424{bottom:841.893333pt;}
.y1c_c00424{bottom:857.106667pt;}
.y18_c00424{bottom:874.440000pt;}
.y1a_c00424{bottom:875.400000pt;}
.y1b_c00424{bottom:875.773333pt;}
.y19_c00424{bottom:876.373333pt;}
.y12_c00424{bottom:891.773333pt;}
.y13_c00424{bottom:893.106667pt;}
.y17_c00424{bottom:893.693333pt;}
.y15_c00424{bottom:894.066667pt;}
.y16_c00424{bottom:895.026667pt;}
.y14_c00424{bottom:895.040000pt;}
.y10_c00424{bottom:912.733333pt;}
.y11_c00424{bottom:912.933333pt;}
.yd_c00424{bottom:913.693333pt;}
.ye_c00424{bottom:914.640000pt;}
.yf_c00424{bottom:915.600000pt;}
.yc_c00424{bottom:929.306667pt;}
.y7_c00424{bottom:930.066667pt;}
.yb_c00424{bottom:930.266667pt;}
.y6_c00424{bottom:931.026667pt;}
.ya_c00424{bottom:931.400000pt;}
.y9_c00424{bottom:931.600000pt;}
.y8_c00424{bottom:932.933333pt;}
.y3_c00424{bottom:951.773333pt;}
.y5_c00424{bottom:953.693333pt;}
.y4_c00424{bottom:954.640000pt;}
.y2_c00424{bottom:985.693333pt;}
.y1_c00424{bottom:987.600000pt;}
.h6_c00424{height:3.739141pt;}
.h9_c00424{height:14.890964pt;}
.h7_c00424{height:20.466875pt;}
.h1_c00424{height:22.303646pt;}
.h4_c00424{height:27.879557pt;}
.h2_c00424{height:31.618698pt;}
.h5_c00424{height:35.357839pt;}
.h3_c00424{height:39.031380pt;}
.h8_c00424{height:42.770521pt;}
.h0_c00424{height:1186.666667pt;}
.w0_c00424{width:782.666667pt;}
.x0_c00424{left:0.000000pt;}
.xb_c00424{left:136.000000pt;}
.x79_c00424{left:137.706667pt;}
.x1b_c00424{left:147.626667pt;}
.x9a_c00424{left:149.706667pt;}
.x29_c00424{left:151.040000pt;}
.x7a_c00424{left:160.000000pt;}
.x4a_c00424{left:160.960000pt;}
.x9b_c00424{left:164.000000pt;}
.xad_c00424{left:164.960000pt;}
.x59_c00424{left:166.293333pt;}
.xdd_c00424{left:170.666667pt;}
.x7c_c00424{left:173.333333pt;}
.x71_c00424{left:176.000000pt;}
.xd5_c00424{left:178.666667pt;}
.x84_c00424{left:182.293333pt;}
.xd6_c00424{left:183.626667pt;}
.x2a_c00424{left:185.706667pt;}
.xc4_c00424{left:187.040000pt;}
.xc_c00424{left:188.000000pt;}
.x43_c00424{left:190.666667pt;}
.xa2_c00424{left:191.626667pt;}
.x72_c00424{left:193.706667pt;}
.x68_c00424{left:194.666667pt;}
.x9c_c00424{left:196.000000pt;}
.xf8_c00424{left:198.293333pt;}
.xeb_c00424{left:202.293333pt;}
.x1c_c00424{left:204.373333pt;}
.x4b_c00424{left:205.333333pt;}
.xd7_c00424{left:206.666667pt;}
.x5a_c00424{left:208.000000pt;}
.xde_c00424{left:211.040000pt;}
.xd_c00424{left:213.333333pt;}
.xce_c00424{left:214.666667pt;}
.x69_c00424{left:216.000000pt;}
.x73_c00424{left:217.333333pt;}
.x4c_c00424{left:220.000000pt;}
.x38_c00424{left:222.666667pt;}
.x85_c00424{left:224.000000pt;}
.x5b_c00424{left:226.666667pt;}
.xe5_c00424{left:228.000000pt;}
.x31_c00424{left:230.666667pt;}
.x3_c00424{left:232.960000pt;}
.xbc_c00424{left:234.666667pt;}
.x2b_c00424{left:238.666667pt;}
.x53_c00424{left:239.626667pt;}
.x7d_c00424{left:241.333333pt;}
.xae_c00424{left:242.293333pt;}
.x4d_c00424{left:243.626667pt;}
.xe7_c00424{left:245.333333pt;}
.xc6_c00424{left:246.666667pt;}
.x32_c00424{left:249.333333pt;}
.x3e_c00424{left:250.666667pt;}
.xef_c00424{left:252.000000pt;}
.x1d_c00424{left:254.093333pt;}
.xa8_c00424{left:255.626667pt;}
.xe2_c00424{left:257.333333pt;}
.x2c_c00424{left:258.666667pt;}
.x7b_c00424{left:260.000000pt;}
.xa3_c00424{left:261.333333pt;}
.x6a_c00424{left:262.666667pt;}
.x62_c00424{left:264.373333pt;}
.xc7_c00424{left:265.706667pt;}
.x1e_c00424{left:266.666667pt;}
.x39_c00424{left:268.000000pt;}
.xb3_c00424{left:272.000000pt;}
.x5c_c00424{left:273.333333pt;}
.x4e_c00424{left:274.666667pt;}
.xc5_c00424{left:276.000000pt;}
.xd8_c00424{left:277.333333pt;}
.xe_c00424{left:278.666667pt;}
.x90_c00424{left:280.373333pt;}
.x1f_c00424{left:281.333333pt;}
.xbd_c00424{left:285.333333pt;}
.x3a_c00424{left:286.293333pt;}
.xe3_c00424{left:287.626667pt;}
.x6b_c00424{left:288.960000pt;}
.xcf_c00424{left:291.040000pt;}
.x86_c00424{left:292.000000pt;}
.xd1_c00424{left:294.666667pt;}
.xb9_c00424{left:296.760000pt;}
.xf_c00424{left:298.093333pt;}
.xb4_c00424{left:299.626667pt;}
.xf9_c00424{left:300.960000pt;}
.x5d_c00424{left:302.666667pt;}
.x4f_c00424{left:304.960000pt;}
.x4_c00424{left:307.040000pt;}
.xd9_c00424{left:309.333333pt;}
.x3b_c00424{left:310.293333pt;}
.xe4_c00424{left:312.960000pt;}
.x87_c00424{left:314.666667pt;}
.x2d_c00424{left:316.373333pt;}
.x10_c00424{left:319.040000pt;}
.x74_c00424{left:322.293333pt;}
.x3f_c00424{left:324.000000pt;}
.xc8_c00424{left:325.706667pt;}
.x7e_c00424{left:329.706667pt;}
.x20_c00424{left:330.666667pt;}
.xa9_c00424{left:331.626667pt;}
.xa4_c00424{left:333.333333pt;}
.xba_c00424{left:337.333333pt;}
.x11_c00424{left:340.373333pt;}
.xc9_c00424{left:341.333333pt;}
.x33_c00424{left:342.666667pt;}
.x91_c00424{left:343.626667pt;}
.x97_c00424{left:345.333333pt;}
.x40_c00424{left:346.293333pt;}
.xbb_c00424{left:348.000000pt;}
.xa1_c00424{left:349.333333pt;}
.x12_c00424{left:351.626667pt;}
.x54_c00424{left:353.333333pt;}
.x7f_c00424{left:356.000000pt;}
.x3c_c00424{left:357.906667pt;}
.x50_c00424{left:360.373333pt;}
.x1_c00424{left:361.333333pt;}
.xbe_c00424{left:362.666667pt;}
.xdf_c00424{left:364.373333pt;}
.xcc_c00424{left:365.333333pt;}
.x5e_c00424{left:366.666667pt;}
.x88_c00424{left:370.666667pt;}
.x5_c00424{left:372.760000pt;}
.xec_c00424{left:377.333333pt;}
.x44_c00424{left:380.000000pt;}
.x98_c00424{left:380.960000pt;}
.x9d_c00424{left:382.666667pt;}
.x2e_c00424{left:385.706667pt;}
.x89_c00424{left:387.040000pt;}
.x6_c00424{left:388.000000pt;}
.x3d_c00424{left:389.906667pt;}
.x21_c00424{left:391.040000pt;}
.xb5_c00424{left:393.333333pt;}
.xcd_c00424{left:395.626667pt;}
.xaf_c00424{left:398.293333pt;}
.x34_c00424{left:400.000000pt;}
.x80_c00424{left:404.000000pt;}
.x7_c00424{left:405.333333pt;}
.xed_c00424{left:406.466667pt;}
.x99_c00424{left:408.000000pt;}
.x92_c00424{left:409.333333pt;}
.x2f_c00424{left:410.666667pt;}
.x75_c00424{left:412.373333pt;}
.x13_c00424{left:413.333333pt;}
.xe8_c00424{left:416.000000pt;}
.xda_c00424{left:417.333333pt;}
.xf3_c00424{left:420.000000pt;}
.x22_c00424{left:421.333333pt;}
.xf0_c00424{left:422.666667pt;}
.x5f_c00424{left:425.333333pt;}
.x55_c00424{left:428.373333pt;}
.x14_c00424{left:431.426667pt;}
.xe9_c00424{left:432.960000pt;}
.x45_c00424{left:434.293333pt;}
.x76_c00424{left:435.626667pt;}
.x6c_c00424{left:437.133333pt;}
.xf1_c00424{left:439.626667pt;}
.x63_c00424{left:442.666667pt;}
.xa5_c00424{left:444.000000pt;}
.x8_c00424{left:444.960000pt;}
.x30_c00424{left:446.666667pt;}
.xbf_c00424{left:448.373333pt;}
.x81_c00424{left:449.706667pt;}
.x23_c00424{left:452.000000pt;}
.x51_c00424{left:453.333333pt;}
.x15_c00424{left:454.666667pt;}
.x8a_c00424{left:456.000000pt;}
.x9_c00424{left:458.666667pt;}
.xfa_c00424{left:460.373333pt;}
.x46_c00424{left:461.333333pt;}
.x60_c00424{left:462.293333pt;}
.xc0_c00424{left:465.706667pt;}
.xd0_c00424{left:467.626667pt;}
.x6d_c00424{left:468.960000pt;}
.x8b_c00424{left:471.040000pt;}
.x52_c00424{left:472.760000pt;}
.xb0_c00424{left:475.626667pt;}
.xa6_c00424{left:476.960000pt;}
.x93_c00424{left:478.293333pt;}
.x9e_c00424{left:480.960000pt;}
.xaa_c00424{left:482.293333pt;}
.xfb_c00424{left:484.000000pt;}
.x35_c00424{left:485.133333pt;}
.x16_c00424{left:489.706667pt;}
.xc1_c00424{left:491.626667pt;}
.xd2_c00424{left:494.293333pt;}
.x77_c00424{left:495.626667pt;}
.x6e_c00424{left:499.040000pt;}
.xf2_c00424{left:500.373333pt;}
.xe6_c00424{left:502.293333pt;}
.x94_c00424{left:504.960000pt;}
.xca_c00424{left:506.293333pt;}
.x24_c00424{left:508.000000pt;}
.x41_c00424{left:509.706667pt;}
.xb6_c00424{left:510.666667pt;}
.x64_c00424{left:512.000000pt;}
.xb1_c00424{left:514.293333pt;}
.x56_c00424{left:516.373333pt;}
.xfc_c00424{left:518.666667pt;}
.x36_c00424{left:521.333333pt;}
.x65_c00424{left:522.666667pt;}
.x82_c00424{left:525.333333pt;}
.xa_c00424{left:526.466667pt;}
.xe0_c00424{left:528.000000pt;}
.xcb_c00424{left:529.333333pt;}
.x9f_c00424{left:530.666667pt;}
.x17_c00424{left:531.626667pt;}
.xf4_c00424{left:533.333333pt;}
.x95_c00424{left:535.040000pt;}
.x25_c00424{left:537.333333pt;}
.x42_c00424{left:538.666667pt;}
.xa0_c00424{left:540.000000pt;}
.x47_c00424{left:541.333333pt;}
.xa7_c00424{left:542.293333pt;}
.xd3_c00424{left:543.626667pt;}
.x8c_c00424{left:545.333333pt;}
.x37_c00424{left:546.293333pt;}
.xee_c00424{left:550.666667pt;}
.xfd_c00424{left:552.373333pt;}
.xb2_c00424{left:553.333333pt;}
.x8d_c00424{left:557.333333pt;}
.xc2_c00424{left:558.666667pt;}
.xb7_c00424{left:560.000000pt;}
.xf5_c00424{left:561.333333pt;}
.xab_c00424{left:564.373333pt;}
.x26_c00424{left:565.333333pt;}
.x18_c00424{left:572.960000pt;}
.x78_c00424{left:574.666667pt;}
.x48_c00424{left:575.626667pt;}
.xfe_c00424{left:577.706667pt;}
.xd4_c00424{left:579.040000pt;}
.x6f_c00424{left:580.373333pt;}
.x66_c00424{left:582.293333pt;}
.xf7_c00424{left:585.333333pt;}
.x8e_c00424{left:586.666667pt;}
.xea_c00424{left:588.000000pt;}
.xdb_c00424{left:589.333333pt;}
.x19_c00424{left:590.666667pt;}
.x49_c00424{left:591.626667pt;}
.x61_c00424{left:594.293333pt;}
.xf6_c00424{left:596.000000pt;}
.x27_c00424{left:600.373333pt;}
.x57_c00424{left:601.333333pt;}
.x8f_c00424{left:604.000000pt;}
.x1a_c00424{left:604.960000pt;}
.xac_c00424{left:608.000000pt;}
.xc3_c00424{left:609.333333pt;}
.x67_c00424{left:610.466667pt;}
.x96_c00424{left:611.426667pt;}
.x70_c00424{left:613.706667pt;}
.x28_c00424{left:615.426667pt;}
.x58_c00424{left:623.426667pt;}
.x2_c00424{left:627.626667pt;}
.xdc_c00424{left:628.960000pt;}
.x83_c00424{left:631.040000pt;}
.xb8_c00424{left:632.000000pt;}
.xe1_c00424{left:639.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_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_a8b1e9b4ec539c577b3dbe95.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m85_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);}
.m83_c00425{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.mc6_c00425{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.mb7_c00425{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m0_c00425{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m92_c00425{transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);}
.m8a_c00425{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mcb_c00425{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m4b_c00425{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.ma4_c00425{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m64_c00425{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.m67_c00425{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m73_c00425{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.mca_c00425{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m27_c00425{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m97_c00425{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m98_c00425{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m9e_c00425{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.md2_c00425{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m2b_c00425{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m6c_c00425{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m89_c00425{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m25_c00425{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m6b_c00425{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m88_c00425{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m1f_c00425{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.mab_c00425{transform:matrix(0.410270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410270,0.000000,0.000000,0.250000,0,0);}
.mc4_c00425{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.mc5_c00425{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m6d_c00425{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.ma9_c00425{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m3a_c00425{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m51_c00425{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m76_c00425{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m33_c00425{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m20_c00425{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mc1_c00425{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m5e_c00425{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m9_c00425{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m6f_c00425{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m42_c00425{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m5a_c00425{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mba_c00425{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m57_c00425{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.mcd_c00425{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m5b_c00425{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m58_c00425{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mb3_c00425{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m70_c00425{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m8_c00425{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m4f_c00425{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m1d_c00425{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mf_c00425{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m71_c00425{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m79_c00425{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m82_c00425{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.ma0_c00425{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m1b_c00425{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.ma7_c00425{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m8b_c00425{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m9f_c00425{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.m94_c00425{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.ma3_c00425{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m19_c00425{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m56_c00425{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m86_c00425{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m12_c00425{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m65_c00425{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.me_c00425{transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);}
.m90_c00425{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m68_c00425{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mbf_c00425{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m28_c00425{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m8f_c00425{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m4e_c00425{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m24_c00425{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.mbc_c00425{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m22_c00425{transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);}
.m17_c00425{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.md1_c00425{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m72_c00425{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m5_c00425{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m53_c00425{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m4c_c00425{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m69_c00425{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.maa_c00425{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m62_c00425{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m48_c00425{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_c00425{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m2a_c00425{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m3c_c00425{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.mbd_c00425{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m7e_c00425{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m54_c00425{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m37_c00425{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mb0_c00425{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m4_c00425{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m49_c00425{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m16_c00425{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.md_c00425{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mae_c00425{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m14_c00425{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m13_c00425{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m9c_c00425{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mc8_c00425{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m36_c00425{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m6e_c00425{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m87_c00425{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mc9_c00425{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m47_c00425{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m61_c00425{transform:matrix(0.532468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532468,0.000000,0.000000,0.250000,0,0);}
.m3_c00425{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m74_c00425{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m96_c00425{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m2e_c00425{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m18_c00425{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mb1_c00425{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.ma2_c00425{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m2f_c00425{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m5f_c00425{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m3e_c00425{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m40_c00425{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m60_c00425{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mce_c00425{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.mc3_c00425{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m21_c00425{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m3f_c00425{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m11_c00425{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m78_c00425{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.m50_c00425{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m52_c00425{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m3b_c00425{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mb6_c00425{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m9a_c00425{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m15_c00425{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.mcf_c00425{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m10_c00425{transform:matrix(0.555195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555195,0.000000,0.000000,0.250000,0,0);}
.mc_c00425{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.maf_c00425{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mb4_c00425{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m3d_c00425{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.ma5_c00425{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m8d_c00425{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m38_c00425{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m35_c00425{transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);}
.m5d_c00425{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m9b_c00425{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m23_c00425{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m80_c00425{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m7f_c00425{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m84_c00425{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m30_c00425{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m7d_c00425{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.ma_c00425{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.ma8_c00425{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m4a_c00425{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m43_c00425{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m4d_c00425{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m29_c00425{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m93_c00425{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m7b_c00425{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m2d_c00425{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m1a_c00425{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.ma1_c00425{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mac_c00425{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.mcc_c00425{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.mad_c00425{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mc7_c00425{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m8e_c00425{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mb2_c00425{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.mb8_c00425{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m55_c00425{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m7a_c00425{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m32_c00425{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m45_c00425{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);}
.m5c_c00425{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m75_c00425{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m8c_c00425{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m95_c00425{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m2c_c00425{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m1e_c00425{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m59_c00425{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.md0_c00425{transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);}
.mb5_c00425{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m66_c00425{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);}
.m99_c00425{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m63_c00425{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m1_c00425{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m46_c00425{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m1c_c00425{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m2_c00425{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m26_c00425{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.ma6_c00425{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m81_c00425{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m7_c00425{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m34_c00425{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mb_c00425{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m6a_c00425{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m77_c00425{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m9d_c00425{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m39_c00425{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m41_c00425{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mbb_c00425{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mbe_c00425{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m44_c00425{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m6_c00425{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mc0_c00425{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.mc2_c00425{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m7c_c00425{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.m91_c00425{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mb9_c00425{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00425{vertical-align:0.000000px;}
.v1_c00425{vertical-align:18.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;}
}
.ws1_c00425{word-spacing:-9.216610px;}
.ws0_c00425{word-spacing:-8.678629px;}
.ws2_c00425{word-spacing:-3.029280px;}
.ws3_c00425{word-spacing:0.000000px;}
.fc0_c00425{color:transparent;}
.fs7_c00425{font-size:3.420000px;}
.fs2_c00425{font-size:18.720000px;}
.fs1_c00425{font-size:20.400000px;}
.fs5_c00425{font-size:25.500000px;}
.fs3_c00425{font-size:28.920000px;}
.fs4_c00425{font-size:32.340000px;}
.fs0_c00425{font-size:35.700000px;}
.fs6_c00425{font-size:39.120000px;}
.y0_c00425{bottom:0.000000px;}
.yca_c00425{bottom:248.745000px;}
.yc9_c00425{bottom:248.970000px;}
.ycc_c00425{bottom:250.245000px;}
.yc8_c00425{bottom:250.905000px;}
.ycd_c00425{bottom:251.130000px;}
.ycb_c00425{bottom:252.405000px;}
.yc4_c00425{bottom:267.405000px;}
.yc5_c00425{bottom:270.405000px;}
.yc7_c00425{bottom:271.470000px;}
.yc6_c00425{bottom:271.905000px;}
.ybf_c00425{bottom:287.745000px;}
.yc2_c00425{bottom:289.245000px;}
.yc1_c00425{bottom:289.905000px;}
.yc0_c00425{bottom:290.970000px;}
.yc3_c00425{bottom:291.405000px;}
.ybe_c00425{bottom:308.745000px;}
.ybc_c00425{bottom:309.630000px;}
.ybd_c00425{bottom:310.905000px;}
.yb6_c00425{bottom:327.405000px;}
.yb9_c00425{bottom:327.825000px;}
.yb7_c00425{bottom:328.245000px;}
.ybb_c00425{bottom:329.745000px;}
.yb5_c00425{bottom:330.405000px;}
.yb8_c00425{bottom:330.630000px;}
.yba_c00425{bottom:331.905000px;}
.yb4_c00425{bottom:346.905000px;}
.yb1_c00425{bottom:348.825000px;}
.yb3_c00425{bottom:349.245000px;}
.yb0_c00425{bottom:350.130000px;}
.yb2_c00425{bottom:351.405000px;}
.yac_c00425{bottom:367.245000px;}
.yaf_c00425{bottom:368.325000px;}
.yae_c00425{bottom:368.745000px;}
.ya8_c00425{bottom:369.405000px;}
.yaa_c00425{bottom:370.470000px;}
.yab_c00425{bottom:370.905000px;}
.ya9_c00425{bottom:370.920000px;}
.yad_c00425{bottom:371.130000px;}
.ya5_c00425{bottom:388.245000px;}
.ya7_c00425{bottom:389.130000px;}
.ya6_c00425{bottom:390.405000px;}
.ya2_c00425{bottom:407.745000px;}
.ya1_c00425{bottom:409.905000px;}
.ya4_c00425{bottom:410.130000px;}
.ya3_c00425{bottom:410.970000px;}
.ya0_c00425{bottom:426.405000px;}
.y9d_c00425{bottom:427.245000px;}
.y9e_c00425{bottom:428.745000px;}
.y9c_c00425{bottom:429.405000px;}
.y9f_c00425{bottom:430.470000px;}
.y99_c00425{bottom:446.745000px;}
.y9b_c00425{bottom:446.970000px;}
.y98_c00425{bottom:448.905000px;}
.y9a_c00425{bottom:449.970000px;}
.y97_c00425{bottom:466.245000px;}
.y96_c00425{bottom:467.745000px;}
.y94_c00425{bottom:468.405000px;}
.y95_c00425{bottom:469.905000px;}
.y92_c00425{bottom:487.245000px;}
.y93_c00425{bottom:488.130000px;}
.y90_c00425{bottom:488.970000px;}
.y91_c00425{bottom:489.405000px;}
.y8d_c00425{bottom:505.905000px;}
.y8b_c00425{bottom:506.745000px;}
.y8e_c00425{bottom:508.470000px;}
.y8c_c00425{bottom:508.905000px;}
.y8f_c00425{bottom:509.130000px;}
.y86_c00425{bottom:525.405000px;}
.y87_c00425{bottom:526.245000px;}
.y89_c00425{bottom:527.325000px;}
.y8a_c00425{bottom:527.550000px;}
.y88_c00425{bottom:528.405000px;}
.y82_c00425{bottom:544.905000px;}
.y7d_c00425{bottom:545.745000px;}
.y85_c00425{bottom:546.180000px;}
.y7e_c00425{bottom:546.825000px;}
.y83_c00425{bottom:547.470000px;}
.y81_c00425{bottom:547.905000px;}
.y84_c00425{bottom:548.130000px;}
.y80_c00425{bottom:548.970000px;}
.y7f_c00425{bottom:549.405000px;}
.y7a_c00425{bottom:565.245000px;}
.y7c_c00425{bottom:565.470000px;}
.y7b_c00425{bottom:566.325000px;}
.y77_c00425{bottom:567.405000px;}
.y78_c00425{bottom:567.630000px;}
.y79_c00425{bottom:568.905000px;}
.y72_c00425{bottom:583.905000px;}
.y6f_c00425{bottom:584.745000px;}
.y74_c00425{bottom:584.970000px;}
.y75_c00425{bottom:585.405000px;}
.y73_c00425{bottom:586.245000px;}
.y76_c00425{bottom:587.130000px;}
.y70_c00425{bottom:587.970000px;}
.y71_c00425{bottom:588.405000px;}
.y6c_c00425{bottom:604.470000px;}
.y6b_c00425{bottom:604.680000px;}
.y6d_c00425{bottom:605.745000px;}
.y6e_c00425{bottom:607.905000px;}
.y67_c00425{bottom:622.905000px;}
.y68_c00425{bottom:624.405000px;}
.y65_c00425{bottom:625.245000px;}
.y6a_c00425{bottom:626.130000px;}
.y69_c00425{bottom:626.970000px;}
.y64_c00425{bottom:627.405000px;}
.y66_c00425{bottom:628.470000px;}
.y60_c00425{bottom:643.245000px;}
.y61_c00425{bottom:644.745000px;}
.y63_c00425{bottom:646.470000px;}
.y62_c00425{bottom:646.905000px;}
.y5f_c00425{bottom:664.245000px;}
.y5e_c00425{bottom:666.405000px;}
.y5c_c00425{bottom:682.905000px;}
.y5b_c00425{bottom:685.905000px;}
.y5a_c00425{bottom:686.130000px;}
.y5d_c00425{bottom:686.970000px;}
.y58_c00425{bottom:703.245000px;}
.y59_c00425{bottom:703.470000px;}
.y55_c00425{bottom:705.405000px;}
.y56_c00425{bottom:705.630000px;}
.y57_c00425{bottom:706.470000px;}
.y54_c00425{bottom:722.745000px;}
.y51_c00425{bottom:741.405000px;}
.y53_c00425{bottom:742.905000px;}
.y4f_c00425{bottom:743.745000px;}
.y52_c00425{bottom:745.470000px;}
.y50_c00425{bottom:745.905000px;}
.y4e_c00425{bottom:763.245000px;}
.y4c_c00425{bottom:763.905000px;}
.y4d_c00425{bottom:765.405000px;}
.y4b_c00425{bottom:780.405000px;}
.y49_c00425{bottom:782.745000px;}
.y48_c00425{bottom:783.630000px;}
.y47_c00425{bottom:784.905000px;}
.y4a_c00425{bottom:785.970000px;}
.y46_c00425{bottom:800.745000px;}
.y44_c00425{bottom:800.970000px;}
.y45_c00425{bottom:802.245000px;}
.y43_c00425{bottom:803.970000px;}
.y42_c00425{bottom:804.405000px;}
.y41_c00425{bottom:821.325000px;}
.y3f_c00425{bottom:821.745000px;}
.y40_c00425{bottom:823.470000px;}
.y3d_c00425{bottom:823.905000px;}
.y3e_c00425{bottom:824.130000px;}
.y38_c00425{bottom:841.245000px;}
.y39_c00425{bottom:842.745000px;}
.y3a_c00425{bottom:842.970000px;}
.y37_c00425{bottom:843.405000px;}
.y3c_c00425{bottom:844.470000px;}
.y3b_c00425{bottom:844.905000px;}
.y34_c00425{bottom:859.905000px;}
.y36_c00425{bottom:861.825000px;}
.y35_c00425{bottom:862.245000px;}
.y31_c00425{bottom:862.905000px;}
.y33_c00425{bottom:863.130000px;}
.y32_c00425{bottom:864.405000px;}
.y30_c00425{bottom:879.405000px;}
.y2f_c00425{bottom:881.745000px;}
.y2c_c00425{bottom:882.405000px;}
.y2e_c00425{bottom:883.470000px;}
.y2d_c00425{bottom:883.905000px;}
.y29_c00425{bottom:900.825000px;}
.y2a_c00425{bottom:901.245000px;}
.y2b_c00425{bottom:902.130000px;}
.y28_c00425{bottom:903.405000px;}
.y25_c00425{bottom:920.745000px;}
.y22_c00425{bottom:921.405000px;}
.y24_c00425{bottom:921.630000px;}
.y27_c00425{bottom:922.470000px;}
.y23_c00425{bottom:922.905000px;}
.y26_c00425{bottom:923.970000px;}
.y21_c00425{bottom:939.825000px;}
.y20_c00425{bottom:940.245000px;}
.y1f_c00425{bottom:941.130000px;}
.y1e_c00425{bottom:942.405000px;}
.y1a_c00425{bottom:960.825000px;}
.y1c_c00425{bottom:961.905000px;}
.y1d_c00425{bottom:962.130000px;}
.y1b_c00425{bottom:962.970000px;}
.y19_c00425{bottom:979.245000px;}
.y16_c00425{bottom:980.970000px;}
.y17_c00425{bottom:981.405000px;}
.y18_c00425{bottom:982.470000px;}
.y13_c00425{bottom:998.745000px;}
.y12_c00425{bottom:999.630000px;}
.y15_c00425{bottom:999.825000px;}
.y11_c00425{bottom:1000.905000px;}
.y14_c00425{bottom:1001.970000px;}
.yc_c00425{bottom:1018.245000px;}
.yd_c00425{bottom:1019.325000px;}
.y10_c00425{bottom:1019.745000px;}
.yb_c00425{bottom:1020.405000px;}
.ye_c00425{bottom:1021.470000px;}
.yf_c00425{bottom:1021.905000px;}
.y6_c00425{bottom:1037.745000px;}
.y9_c00425{bottom:1039.245000px;}
.ya_c00425{bottom:1040.130000px;}
.y8_c00425{bottom:1040.325000px;}
.y7_c00425{bottom:1041.405000px;}
.y5_c00425{bottom:1058.745000px;}
.y3_c00425{bottom:1059.630000px;}
.y4_c00425{bottom:1060.905000px;}
.y1_c00425{bottom:1097.745000px;}
.y2_c00425{bottom:1099.050000px;}
.h9_c00425{height:4.206533px;}
.h3_c00425{height:23.025234px;}
.h2_c00425{height:25.091602px;}
.h6_c00425{height:31.364502px;}
.h4_c00425{height:35.571035px;}
.h5_c00425{height:39.777568px;}
.h1_c00425{height:43.910303px;}
.h8_c00425{height:48.116836px;}
.h7_c00425{height:53.571035px;}
.h0_c00425{height:1335.000000px;}
.w0_c00425{width:880.500000px;}
.x0_c00425{left:0.000000px;}
.x1_c00425{left:151.500000px;}
.xb6_c00425{left:152.580000px;}
.xee_c00425{left:166.500000px;}
.xb7_c00425{left:168.000000px;}
.x1c_c00425{left:171.000000px;}
.x3_c00425{left:174.420000px;}
.xdf_c00425{left:177.000000px;}
.x90_c00425{left:178.080000px;}
.x57_c00425{left:180.000000px;}
.x4c_c00425{left:183.420000px;}
.x35_c00425{left:187.500000px;}
.x86_c00425{left:189.420000px;}
.x60_c00425{left:190.500000px;}
.x99_c00425{left:192.000000px;}
.x29_c00425{left:195.000000px;}
.xea_c00425{left:198.000000px;}
.xae_c00425{left:202.080000px;}
.x4_c00425{left:204.420000px;}
.xcd_c00425{left:205.500000px;}
.xf7_c00425{left:207.000000px;}
.xa5_c00425{left:208.500000px;}
.x91_c00425{left:210.000000px;}
.x10_c00425{left:211.920000px;}
.xb8_c00425{left:213.000000px;}
.x2a_c00425{left:214.920000px;}
.x1d_c00425{left:216.420000px;}
.x9a_c00425{left:217.920000px;}
.x106_c00425{left:219.000000px;}
.x36_c00425{left:220.500000px;}
.x61_c00425{left:223.080000px;}
.xa6_c00425{left:225.000000px;}
.xeb_c00425{left:227.580000px;}
.xce_c00425{left:229.500000px;}
.x42_c00425{left:231.000000px;}
.x10a_c00425{left:232.920000px;}
.xd8_c00425{left:234.000000px;}
.xfc_c00425{left:237.000000px;}
.x11_c00425{left:238.500000px;}
.x62_c00425{left:240.420000px;}
.x7f_c00425{left:241.500000px;}
.xbd_c00425{left:243.420000px;}
.x10b_c00425{left:244.500000px;}
.x87_c00425{left:246.000000px;}
.x58_c00425{left:247.500000px;}
.x2b_c00425{left:250.920000px;}
.x5_c00425{left:253.500000px;}
.x92_c00425{left:255.420000px;}
.xfd_c00425{left:258.420000px;}
.x43_c00425{left:259.920000px;}
.xc7_c00425{left:261.420000px;}
.xe0_c00425{left:262.500000px;}
.xef_c00425{left:264.000000px;}
.x63_c00425{left:267.420000px;}
.x1e_c00425{left:268.920000px;}
.x12_c00425{left:270.420000px;}
.x9b_c00425{left:273.000000px;}
.x6f_c00425{left:274.500000px;}
.xcb_c00425{left:276.420000px;}
.xec_c00425{left:277.920000px;}
.x101_c00425{left:279.000000px;}
.xbe_c00425{left:283.500000px;}
.xf8_c00425{left:284.580000px;}
.x4d_c00425{left:286.080000px;}
.x37_c00425{left:288.420000px;}
.x110_c00425{left:289.500000px;}
.x70_c00425{left:291.000000px;}
.x9c_c00425{left:294.420000px;}
.x64_c00425{left:296.580000px;}
.x44_c00425{left:300.000000px;}
.xaf_c00425{left:301.080000px;}
.x80_c00425{left:303.420000px;}
.x13_c00425{left:306.000000px;}
.x1f_c00425{left:307.920000px;}
.x6_c00425{left:309.000000px;}
.x100_c00425{left:312.000000px;}
.xe1_c00425{left:313.500000px;}
.x38_c00425{left:316.920000px;}
.x45_c00425{left:318.420000px;}
.xa7_c00425{left:321.420000px;}
.x79_c00425{left:322.500000px;}
.x2c_c00425{left:325.500000px;}
.xf3_c00425{left:328.080000px;}
.xe5_c00425{left:330.000000px;}
.x7_c00425{left:331.500000px;}
.x9d_c00425{left:334.500000px;}
.xb9_c00425{left:336.000000px;}
.xf0_c00425{left:337.080000px;}
.x20_c00425{left:338.355000px;}
.x107_c00425{left:342.000000px;}
.x71_c00425{left:343.500000px;}
.x4e_c00425{left:345.420000px;}
.xbf_c00425{left:346.920000px;}
.xdb_c00425{left:349.920000px;}
.x88_c00425{left:351.420000px;}
.xc8_c00425{left:352.920000px;}
.x10c_c00425{left:355.275000px;}
.xa8_c00425{left:357.420000px;}
.x2d_c00425{left:358.500000px;}
.x8_c00425{left:360.000000px;}
.xb0_c00425{left:361.080000px;}
.x72_c00425{left:363.000000px;}
.x81_c00425{left:364.500000px;}
.x59_c00425{left:369.000000px;}
.x39_c00425{left:370.500000px;}
.x102_c00425{left:373.500000px;}
.xcf_c00425{left:376.920000px;}
.xc0_c00425{left:379.500000px;}
.xd9_c00425{left:380.580000px;}
.xa9_c00425{left:382.500000px;}
.xed_c00425{left:383.580000px;}
.x4f_c00425{left:387.000000px;}
.x21_c00425{left:388.080000px;}
.x5a_c00425{left:390.000000px;}
.xc9_c00425{left:391.500000px;}
.x14_c00425{left:392.580000px;}
.xb1_c00425{left:394.500000px;}
.xc1_c00425{left:397.500000px;}
.xe2_c00425{left:398.580000px;}
.x82_c00425{left:402.000000px;}
.xd3_c00425{left:403.920000px;}
.x93_c00425{left:405.420000px;}
.x2_c00425{left:406.500000px;}
.x104_c00425{left:408.000000px;}
.x73_c00425{left:409.500000px;}
.xd0_c00425{left:411.000000px;}
.xc2_c00425{left:414.000000px;}
.x65_c00425{left:417.420000px;}
.x9_c00425{left:418.920000px;}
.x22_c00425{left:420.420000px;}
.x15_c00425{left:421.920000px;}
.xfe_c00425{left:423.000000px;}
.x3a_c00425{left:424.500000px;}
.x2e_c00425{left:426.420000px;}
.xf1_c00425{left:429.420000px;}
.x46_c00425{left:430.500000px;}
.x108_c00425{left:433.500000px;}
.xba_c00425{left:434.580000px;}
.x9e_c00425{left:436.920000px;}
.x113_c00425{left:438.000000px;}
.xe6_c00425{left:439.500000px;}
.x66_c00425{left:440.580000px;}
.x3b_c00425{left:442.500000px;}
.xc3_c00425{left:447.000000px;}
.x89_c00425{left:450.000000px;}
.xd1_c00425{left:451.500000px;}
.xaa_c00425{left:453.420000px;}
.x2f_c00425{left:454.920000px;}
.x109_c00425{left:456.420000px;}
.x67_c00425{left:457.920000px;}
.x9f_c00425{left:461.580000px;}
.x16_c00425{left:463.500000px;}
.x8a_c00425{left:466.920000px;}
.x23_c00425{left:468.420000px;}
.xd4_c00425{left:469.500000px;}
.x3c_c00425{left:471.420000px;}
.xca_c00425{left:472.500000px;}
.x10d_c00425{left:474.000000px;}
.xa_c00425{left:475.500000px;}
.x50_c00425{left:477.000000px;}
.x83_c00425{left:478.080000px;}
.xe7_c00425{left:480.000000px;}
.xa0_c00425{left:481.920000px;}
.x68_c00425{left:483.420000px;}
.x94_c00425{left:484.500000px;}
.xc4_c00425{left:490.500000px;}
.x10e_c00425{left:492.000000px;}
.x5b_c00425{left:493.080000px;}
.x51_c00425{left:496.500000px;}
.xab_c00425{left:499.080000px;}
.xf4_c00425{left:500.580000px;}
.x30_c00425{left:502.500000px;}
.x47_c00425{left:504.000000px;}
.x17_c00425{left:506.580000px;}
.xa1_c00425{left:508.920000px;}
.xb_c00425{left:510.000000px;}
.x7a_c00425{left:511.920000px;}
.x74_c00425{left:513.000000px;}
.x8b_c00425{left:516.000000px;}
.x5c_c00425{left:517.500000px;}
.x95_c00425{left:519.000000px;}
.x69_c00425{left:520.500000px;}
.x24_c00425{left:522.000000px;}
.xc5_c00425{left:523.080000px;}
.x84_c00425{left:525.420000px;}
.x103_c00425{left:526.500000px;}
.xb2_c00425{left:528.000000px;}
.x52_c00425{left:529.500000px;}
.xf9_c00425{left:533.580000px;}
.xe3_c00425{left:535.500000px;}
.x18_c00425{left:538.080000px;}
.x3d_c00425{left:541.500000px;}
.x25_c00425{left:543.000000px;}
.xc_c00425{left:546.000000px;}
.x7b_c00425{left:547.500000px;}
.xdc_c00425{left:549.420000px;}
.x8c_c00425{left:550.500000px;}
.x111_c00425{left:552.000000px;}
.xac_c00425{left:553.080000px;}
.xd5_c00425{left:555.420000px;}
.x5d_c00425{left:558.000000px;}
.xf5_c00425{left:559.500000px;}
.x114_c00425{left:561.420000px;}
.xfa_c00425{left:563.580000px;}
.x96_c00425{left:565.080000px;}
.x6a_c00425{left:567.000000px;}
.x8d_c00425{left:570.000000px;}
.x48_c00425{left:571.080000px;}
.xc6_c00425{left:573.000000px;}
.xd_c00425{left:574.920000px;}
.x31_c00425{left:579.000000px;}
.x7c_c00425{left:582.420000px;}
.x6b_c00425{left:583.920000px;}
.xdd_c00425{left:585.000000px;}
.x75_c00425{left:586.920000px;}
.x112_c00425{left:588.000000px;}
.x10f_c00425{left:589.500000px;}
.x5e_c00425{left:590.580000px;}
.x8e_c00425{left:592.080000px;}
.x53_c00425{left:593.580000px;}
.x19_c00425{left:595.500000px;}
.x26_c00425{left:596.580000px;}
.xd6_c00425{left:598.920000px;}
.xe8_c00425{left:601.080000px;}
.xb3_c00425{left:604.920000px;}
.x97_c00425{left:606.420000px;}
.xa2_c00425{left:607.920000px;}
.xde_c00425{left:609.000000px;}
.x6c_c00425{left:610.500000px;}
.x49_c00425{left:611.580000px;}
.x76_c00425{left:613.500000px;}
.x3e_c00425{left:615.420000px;}
.x32_c00425{left:619.920000px;}
.xe9_c00425{left:621.420000px;}
.x105_c00425{left:622.500000px;}
.x1a_c00425{left:627.420000px;}
.x85_c00425{left:630.420000px;}
.xda_c00425{left:631.500000px;}
.x5f_c00425{left:633.000000px;}
.xe_c00425{left:634.080000px;}
.xd7_c00425{left:635.580000px;}
.xfb_c00425{left:637.500000px;}
.x115_c00425{left:640.500000px;}
.xff_c00425{left:642.000000px;}
.xa3_c00425{left:643.500000px;}
.x6d_c00425{left:646.080000px;}
.x54_c00425{left:647.580000px;}
.x7d_c00425{left:651.000000px;}
.x3f_c00425{left:652.920000px;}
.xad_c00425{left:654.000000px;}
.x27_c00425{left:655.920000px;}
.xf6_c00425{left:657.000000px;}
.x77_c00425{left:658.500000px;}
.x98_c00425{left:660.000000px;}
.xd2_c00425{left:661.080000px;}
.x6e_c00425{left:663.420000px;}
.xf_c00425{left:667.500000px;}
.x33_c00425{left:670.920000px;}
.x116_c00425{left:672.420000px;}
.x55_c00425{left:673.920000px;}
.xf2_c00425{left:675.420000px;}
.xcc_c00425{left:677.580000px;}
.xb4_c00425{left:679.500000px;}
.x1b_c00425{left:681.000000px;}
.x4a_c00425{left:682.500000px;}
.xa4_c00425{left:684.000000px;}
.xbb_c00425{left:686.580000px;}
.x40_c00425{left:688.080000px;}
.x78_c00425{left:690.000000px;}
.x7e_c00425{left:691.920000px;}
.xe4_c00425{left:693.000000px;}
.x8f_c00425{left:694.500000px;}
.x28_c00425{left:696.420000px;}
.x56_c00425{left:700.500000px;}
.xb5_c00425{left:702.420000px;}
.x4b_c00425{left:703.500000px;}
.x41_c00425{left:706.920000px;}
.x34_c00425{left:708.000000px;}
.xbc_c00425{left:717.000000px;}
@media print{
.v0_c00425{vertical-align:0.000000pt;}
.v1_c00425{vertical-align:16.000000pt;}
.ls0_c00425{letter-spacing:0.000000pt;}
.ws1_c00425{word-spacing:-8.192542pt;}
.ws0_c00425{word-spacing:-7.714337pt;}
.ws2_c00425{word-spacing:-2.692693pt;}
.ws3_c00425{word-spacing:0.000000pt;}
.fs7_c00425{font-size:3.040000pt;}
.fs2_c00425{font-size:16.640000pt;}
.fs1_c00425{font-size:18.133333pt;}
.fs5_c00425{font-size:22.666667pt;}
.fs3_c00425{font-size:25.706667pt;}
.fs4_c00425{font-size:28.746667pt;}
.fs0_c00425{font-size:31.733333pt;}
.fs6_c00425{font-size:34.773333pt;}
.y0_c00425{bottom:0.000000pt;}
.yca_c00425{bottom:221.106667pt;}
.yc9_c00425{bottom:221.306667pt;}
.ycc_c00425{bottom:222.440000pt;}
.yc8_c00425{bottom:223.026667pt;}
.ycd_c00425{bottom:223.226667pt;}
.ycb_c00425{bottom:224.360000pt;}
.yc4_c00425{bottom:237.693333pt;}
.yc5_c00425{bottom:240.360000pt;}
.yc7_c00425{bottom:241.306667pt;}
.yc6_c00425{bottom:241.693333pt;}
.ybf_c00425{bottom:255.773333pt;}
.yc2_c00425{bottom:257.106667pt;}
.yc1_c00425{bottom:257.693333pt;}
.yc0_c00425{bottom:258.640000pt;}
.yc3_c00425{bottom:259.026667pt;}
.ybe_c00425{bottom:274.440000pt;}
.ybc_c00425{bottom:275.226667pt;}
.ybd_c00425{bottom:276.360000pt;}
.yb6_c00425{bottom:291.026667pt;}
.yb9_c00425{bottom:291.400000pt;}
.yb7_c00425{bottom:291.773333pt;}
.ybb_c00425{bottom:293.106667pt;}
.yb5_c00425{bottom:293.693333pt;}
.yb8_c00425{bottom:293.893333pt;}
.yba_c00425{bottom:295.026667pt;}
.yb4_c00425{bottom:308.360000pt;}
.yb1_c00425{bottom:310.066667pt;}
.yb3_c00425{bottom:310.440000pt;}
.yb0_c00425{bottom:311.226667pt;}
.yb2_c00425{bottom:312.360000pt;}
.yac_c00425{bottom:326.440000pt;}
.yaf_c00425{bottom:327.400000pt;}
.yae_c00425{bottom:327.773333pt;}
.ya8_c00425{bottom:328.360000pt;}
.yaa_c00425{bottom:329.306667pt;}
.yab_c00425{bottom:329.693333pt;}
.ya9_c00425{bottom:329.706667pt;}
.yad_c00425{bottom:329.893333pt;}
.ya5_c00425{bottom:345.106667pt;}
.ya7_c00425{bottom:345.893333pt;}
.ya6_c00425{bottom:347.026667pt;}
.ya2_c00425{bottom:362.440000pt;}
.ya1_c00425{bottom:364.360000pt;}
.ya4_c00425{bottom:364.560000pt;}
.ya3_c00425{bottom:365.306667pt;}
.ya0_c00425{bottom:379.026667pt;}
.y9d_c00425{bottom:379.773333pt;}
.y9e_c00425{bottom:381.106667pt;}
.y9c_c00425{bottom:381.693333pt;}
.y9f_c00425{bottom:382.640000pt;}
.y99_c00425{bottom:397.106667pt;}
.y9b_c00425{bottom:397.306667pt;}
.y98_c00425{bottom:399.026667pt;}
.y9a_c00425{bottom:399.973333pt;}
.y97_c00425{bottom:414.440000pt;}
.y96_c00425{bottom:415.773333pt;}
.y94_c00425{bottom:416.360000pt;}
.y95_c00425{bottom:417.693333pt;}
.y92_c00425{bottom:433.106667pt;}
.y93_c00425{bottom:433.893333pt;}
.y90_c00425{bottom:434.640000pt;}
.y91_c00425{bottom:435.026667pt;}
.y8d_c00425{bottom:449.693333pt;}
.y8b_c00425{bottom:450.440000pt;}
.y8e_c00425{bottom:451.973333pt;}
.y8c_c00425{bottom:452.360000pt;}
.y8f_c00425{bottom:452.560000pt;}
.y86_c00425{bottom:467.026667pt;}
.y87_c00425{bottom:467.773333pt;}
.y89_c00425{bottom:468.733333pt;}
.y8a_c00425{bottom:468.933333pt;}
.y88_c00425{bottom:469.693333pt;}
.y82_c00425{bottom:484.360000pt;}
.y7d_c00425{bottom:485.106667pt;}
.y85_c00425{bottom:485.493333pt;}
.y7e_c00425{bottom:486.066667pt;}
.y83_c00425{bottom:486.640000pt;}
.y81_c00425{bottom:487.026667pt;}
.y84_c00425{bottom:487.226667pt;}
.y80_c00425{bottom:487.973333pt;}
.y7f_c00425{bottom:488.360000pt;}
.y7a_c00425{bottom:502.440000pt;}
.y7c_c00425{bottom:502.640000pt;}
.y7b_c00425{bottom:503.400000pt;}
.y77_c00425{bottom:504.360000pt;}
.y78_c00425{bottom:504.560000pt;}
.y79_c00425{bottom:505.693333pt;}
.y72_c00425{bottom:519.026667pt;}
.y6f_c00425{bottom:519.773333pt;}
.y74_c00425{bottom:519.973333pt;}
.y75_c00425{bottom:520.360000pt;}
.y73_c00425{bottom:521.106667pt;}
.y76_c00425{bottom:521.893333pt;}
.y70_c00425{bottom:522.640000pt;}
.y71_c00425{bottom:523.026667pt;}
.y6c_c00425{bottom:537.306667pt;}
.y6b_c00425{bottom:537.493333pt;}
.y6d_c00425{bottom:538.440000pt;}
.y6e_c00425{bottom:540.360000pt;}
.y67_c00425{bottom:553.693333pt;}
.y68_c00425{bottom:555.026667pt;}
.y65_c00425{bottom:555.773333pt;}
.y6a_c00425{bottom:556.560000pt;}
.y69_c00425{bottom:557.306667pt;}
.y64_c00425{bottom:557.693333pt;}
.y66_c00425{bottom:558.640000pt;}
.y60_c00425{bottom:571.773333pt;}
.y61_c00425{bottom:573.106667pt;}
.y63_c00425{bottom:574.640000pt;}
.y62_c00425{bottom:575.026667pt;}
.y5f_c00425{bottom:590.440000pt;}
.y5e_c00425{bottom:592.360000pt;}
.y5c_c00425{bottom:607.026667pt;}
.y5b_c00425{bottom:609.693333pt;}
.y5a_c00425{bottom:609.893333pt;}
.y5d_c00425{bottom:610.640000pt;}
.y58_c00425{bottom:625.106667pt;}
.y59_c00425{bottom:625.306667pt;}
.y55_c00425{bottom:627.026667pt;}
.y56_c00425{bottom:627.226667pt;}
.y57_c00425{bottom:627.973333pt;}
.y54_c00425{bottom:642.440000pt;}
.y51_c00425{bottom:659.026667pt;}
.y53_c00425{bottom:660.360000pt;}
.y4f_c00425{bottom:661.106667pt;}
.y52_c00425{bottom:662.640000pt;}
.y50_c00425{bottom:663.026667pt;}
.y4e_c00425{bottom:678.440000pt;}
.y4c_c00425{bottom:679.026667pt;}
.y4d_c00425{bottom:680.360000pt;}
.y4b_c00425{bottom:693.693333pt;}
.y49_c00425{bottom:695.773333pt;}
.y48_c00425{bottom:696.560000pt;}
.y47_c00425{bottom:697.693333pt;}
.y4a_c00425{bottom:698.640000pt;}
.y46_c00425{bottom:711.773333pt;}
.y44_c00425{bottom:711.973333pt;}
.y45_c00425{bottom:713.106667pt;}
.y43_c00425{bottom:714.640000pt;}
.y42_c00425{bottom:715.026667pt;}
.y41_c00425{bottom:730.066667pt;}
.y3f_c00425{bottom:730.440000pt;}
.y40_c00425{bottom:731.973333pt;}
.y3d_c00425{bottom:732.360000pt;}
.y3e_c00425{bottom:732.560000pt;}
.y38_c00425{bottom:747.773333pt;}
.y39_c00425{bottom:749.106667pt;}
.y3a_c00425{bottom:749.306667pt;}
.y37_c00425{bottom:749.693333pt;}
.y3c_c00425{bottom:750.640000pt;}
.y3b_c00425{bottom:751.026667pt;}
.y34_c00425{bottom:764.360000pt;}
.y36_c00425{bottom:766.066667pt;}
.y35_c00425{bottom:766.440000pt;}
.y31_c00425{bottom:767.026667pt;}
.y33_c00425{bottom:767.226667pt;}
.y32_c00425{bottom:768.360000pt;}
.y30_c00425{bottom:781.693333pt;}
.y2f_c00425{bottom:783.773333pt;}
.y2c_c00425{bottom:784.360000pt;}
.y2e_c00425{bottom:785.306667pt;}
.y2d_c00425{bottom:785.693333pt;}
.y29_c00425{bottom:800.733333pt;}
.y2a_c00425{bottom:801.106667pt;}
.y2b_c00425{bottom:801.893333pt;}
.y28_c00425{bottom:803.026667pt;}
.y25_c00425{bottom:818.440000pt;}
.y22_c00425{bottom:819.026667pt;}
.y24_c00425{bottom:819.226667pt;}
.y27_c00425{bottom:819.973333pt;}
.y23_c00425{bottom:820.360000pt;}
.y26_c00425{bottom:821.306667pt;}
.y21_c00425{bottom:835.400000pt;}
.y20_c00425{bottom:835.773333pt;}
.y1f_c00425{bottom:836.560000pt;}
.y1e_c00425{bottom:837.693333pt;}
.y1a_c00425{bottom:854.066667pt;}
.y1c_c00425{bottom:855.026667pt;}
.y1d_c00425{bottom:855.226667pt;}
.y1b_c00425{bottom:855.973333pt;}
.y19_c00425{bottom:870.440000pt;}
.y16_c00425{bottom:871.973333pt;}
.y17_c00425{bottom:872.360000pt;}
.y18_c00425{bottom:873.306667pt;}
.y13_c00425{bottom:887.773333pt;}
.y12_c00425{bottom:888.560000pt;}
.y15_c00425{bottom:888.733333pt;}
.y11_c00425{bottom:889.693333pt;}
.y14_c00425{bottom:890.640000pt;}
.yc_c00425{bottom:905.106667pt;}
.yd_c00425{bottom:906.066667pt;}
.y10_c00425{bottom:906.440000pt;}
.yb_c00425{bottom:907.026667pt;}
.ye_c00425{bottom:907.973333pt;}
.yf_c00425{bottom:908.360000pt;}
.y6_c00425{bottom:922.440000pt;}
.y9_c00425{bottom:923.773333pt;}
.ya_c00425{bottom:924.560000pt;}
.y8_c00425{bottom:924.733333pt;}
.y7_c00425{bottom:925.693333pt;}
.y5_c00425{bottom:941.106667pt;}
.y3_c00425{bottom:941.893333pt;}
.y4_c00425{bottom:943.026667pt;}
.y1_c00425{bottom:975.773333pt;}
.y2_c00425{bottom:976.933333pt;}
.h9_c00425{height:3.739141pt;}
.h3_c00425{height:20.466875pt;}
.h2_c00425{height:22.303646pt;}
.h6_c00425{height:27.879557pt;}
.h4_c00425{height:31.618698pt;}
.h5_c00425{height:35.357839pt;}
.h1_c00425{height:39.031380pt;}
.h8_c00425{height:42.770521pt;}
.h7_c00425{height:47.618698pt;}
.h0_c00425{height:1186.666667pt;}
.w0_c00425{width:782.666667pt;}
.x0_c00425{left:0.000000pt;}
.x1_c00425{left:134.666667pt;}
.xb6_c00425{left:135.626667pt;}
.xee_c00425{left:148.000000pt;}
.xb7_c00425{left:149.333333pt;}
.x1c_c00425{left:152.000000pt;}
.x3_c00425{left:155.040000pt;}
.xdf_c00425{left:157.333333pt;}
.x90_c00425{left:158.293333pt;}
.x57_c00425{left:160.000000pt;}
.x4c_c00425{left:163.040000pt;}
.x35_c00425{left:166.666667pt;}
.x86_c00425{left:168.373333pt;}
.x60_c00425{left:169.333333pt;}
.x99_c00425{left:170.666667pt;}
.x29_c00425{left:173.333333pt;}
.xea_c00425{left:176.000000pt;}
.xae_c00425{left:179.626667pt;}
.x4_c00425{left:181.706667pt;}
.xcd_c00425{left:182.666667pt;}
.xf7_c00425{left:184.000000pt;}
.xa5_c00425{left:185.333333pt;}
.x91_c00425{left:186.666667pt;}
.x10_c00425{left:188.373333pt;}
.xb8_c00425{left:189.333333pt;}
.x2a_c00425{left:191.040000pt;}
.x1d_c00425{left:192.373333pt;}
.x9a_c00425{left:193.706667pt;}
.x106_c00425{left:194.666667pt;}
.x36_c00425{left:196.000000pt;}
.x61_c00425{left:198.293333pt;}
.xa6_c00425{left:200.000000pt;}
.xeb_c00425{left:202.293333pt;}
.xce_c00425{left:204.000000pt;}
.x42_c00425{left:205.333333pt;}
.x10a_c00425{left:207.040000pt;}
.xd8_c00425{left:208.000000pt;}
.xfc_c00425{left:210.666667pt;}
.x11_c00425{left:212.000000pt;}
.x62_c00425{left:213.706667pt;}
.x7f_c00425{left:214.666667pt;}
.xbd_c00425{left:216.373333pt;}
.x10b_c00425{left:217.333333pt;}
.x87_c00425{left:218.666667pt;}
.x58_c00425{left:220.000000pt;}
.x2b_c00425{left:223.040000pt;}
.x5_c00425{left:225.333333pt;}
.x92_c00425{left:227.040000pt;}
.xfd_c00425{left:229.706667pt;}
.x43_c00425{left:231.040000pt;}
.xc7_c00425{left:232.373333pt;}
.xe0_c00425{left:233.333333pt;}
.xef_c00425{left:234.666667pt;}
.x63_c00425{left:237.706667pt;}
.x1e_c00425{left:239.040000pt;}
.x12_c00425{left:240.373333pt;}
.x9b_c00425{left:242.666667pt;}
.x6f_c00425{left:244.000000pt;}
.xcb_c00425{left:245.706667pt;}
.xec_c00425{left:247.040000pt;}
.x101_c00425{left:248.000000pt;}
.xbe_c00425{left:252.000000pt;}
.xf8_c00425{left:252.960000pt;}
.x4d_c00425{left:254.293333pt;}
.x37_c00425{left:256.373333pt;}
.x110_c00425{left:257.333333pt;}
.x70_c00425{left:258.666667pt;}
.x9c_c00425{left:261.706667pt;}
.x64_c00425{left:263.626667pt;}
.x44_c00425{left:266.666667pt;}
.xaf_c00425{left:267.626667pt;}
.x80_c00425{left:269.706667pt;}
.x13_c00425{left:272.000000pt;}
.x1f_c00425{left:273.706667pt;}
.x6_c00425{left:274.666667pt;}
.x100_c00425{left:277.333333pt;}
.xe1_c00425{left:278.666667pt;}
.x38_c00425{left:281.706667pt;}
.x45_c00425{left:283.040000pt;}
.xa7_c00425{left:285.706667pt;}
.x79_c00425{left:286.666667pt;}
.x2c_c00425{left:289.333333pt;}
.xf3_c00425{left:291.626667pt;}
.xe5_c00425{left:293.333333pt;}
.x7_c00425{left:294.666667pt;}
.x9d_c00425{left:297.333333pt;}
.xb9_c00425{left:298.666667pt;}
.xf0_c00425{left:299.626667pt;}
.x20_c00425{left:300.760000pt;}
.x107_c00425{left:304.000000pt;}
.x71_c00425{left:305.333333pt;}
.x4e_c00425{left:307.040000pt;}
.xbf_c00425{left:308.373333pt;}
.xdb_c00425{left:311.040000pt;}
.x88_c00425{left:312.373333pt;}
.xc8_c00425{left:313.706667pt;}
.x10c_c00425{left:315.800000pt;}
.xa8_c00425{left:317.706667pt;}
.x2d_c00425{left:318.666667pt;}
.x8_c00425{left:320.000000pt;}
.xb0_c00425{left:320.960000pt;}
.x72_c00425{left:322.666667pt;}
.x81_c00425{left:324.000000pt;}
.x59_c00425{left:328.000000pt;}
.x39_c00425{left:329.333333pt;}
.x102_c00425{left:332.000000pt;}
.xcf_c00425{left:335.040000pt;}
.xc0_c00425{left:337.333333pt;}
.xd9_c00425{left:338.293333pt;}
.xa9_c00425{left:340.000000pt;}
.xed_c00425{left:340.960000pt;}
.x4f_c00425{left:344.000000pt;}
.x21_c00425{left:344.960000pt;}
.x5a_c00425{left:346.666667pt;}
.xc9_c00425{left:348.000000pt;}
.x14_c00425{left:348.960000pt;}
.xb1_c00425{left:350.666667pt;}
.xc1_c00425{left:353.333333pt;}
.xe2_c00425{left:354.293333pt;}
.x82_c00425{left:357.333333pt;}
.xd3_c00425{left:359.040000pt;}
.x93_c00425{left:360.373333pt;}
.x2_c00425{left:361.333333pt;}
.x104_c00425{left:362.666667pt;}
.x73_c00425{left:364.000000pt;}
.xd0_c00425{left:365.333333pt;}
.xc2_c00425{left:368.000000pt;}
.x65_c00425{left:371.040000pt;}
.x9_c00425{left:372.373333pt;}
.x22_c00425{left:373.706667pt;}
.x15_c00425{left:375.040000pt;}
.xfe_c00425{left:376.000000pt;}
.x3a_c00425{left:377.333333pt;}
.x2e_c00425{left:379.040000pt;}
.xf1_c00425{left:381.706667pt;}
.x46_c00425{left:382.666667pt;}
.x108_c00425{left:385.333333pt;}
.xba_c00425{left:386.293333pt;}
.x9e_c00425{left:388.373333pt;}
.x113_c00425{left:389.333333pt;}
.xe6_c00425{left:390.666667pt;}
.x66_c00425{left:391.626667pt;}
.x3b_c00425{left:393.333333pt;}
.xc3_c00425{left:397.333333pt;}
.x89_c00425{left:400.000000pt;}
.xd1_c00425{left:401.333333pt;}
.xaa_c00425{left:403.040000pt;}
.x2f_c00425{left:404.373333pt;}
.x109_c00425{left:405.706667pt;}
.x67_c00425{left:407.040000pt;}
.x9f_c00425{left:410.293333pt;}
.x16_c00425{left:412.000000pt;}
.x8a_c00425{left:415.040000pt;}
.x23_c00425{left:416.373333pt;}
.xd4_c00425{left:417.333333pt;}
.x3c_c00425{left:419.040000pt;}
.xca_c00425{left:420.000000pt;}
.x10d_c00425{left:421.333333pt;}
.xa_c00425{left:422.666667pt;}
.x50_c00425{left:424.000000pt;}
.x83_c00425{left:424.960000pt;}
.xe7_c00425{left:426.666667pt;}
.xa0_c00425{left:428.373333pt;}
.x68_c00425{left:429.706667pt;}
.x94_c00425{left:430.666667pt;}
.xc4_c00425{left:436.000000pt;}
.x10e_c00425{left:437.333333pt;}
.x5b_c00425{left:438.293333pt;}
.x51_c00425{left:441.333333pt;}
.xab_c00425{left:443.626667pt;}
.xf4_c00425{left:444.960000pt;}
.x30_c00425{left:446.666667pt;}
.x47_c00425{left:448.000000pt;}
.x17_c00425{left:450.293333pt;}
.xa1_c00425{left:452.373333pt;}
.xb_c00425{left:453.333333pt;}
.x7a_c00425{left:455.040000pt;}
.x74_c00425{left:456.000000pt;}
.x8b_c00425{left:458.666667pt;}
.x5c_c00425{left:460.000000pt;}
.x95_c00425{left:461.333333pt;}
.x69_c00425{left:462.666667pt;}
.x24_c00425{left:464.000000pt;}
.xc5_c00425{left:464.960000pt;}
.x84_c00425{left:467.040000pt;}
.x103_c00425{left:468.000000pt;}
.xb2_c00425{left:469.333333pt;}
.x52_c00425{left:470.666667pt;}
.xf9_c00425{left:474.293333pt;}
.xe3_c00425{left:476.000000pt;}
.x18_c00425{left:478.293333pt;}
.x3d_c00425{left:481.333333pt;}
.x25_c00425{left:482.666667pt;}
.xc_c00425{left:485.333333pt;}
.x7b_c00425{left:486.666667pt;}
.xdc_c00425{left:488.373333pt;}
.x8c_c00425{left:489.333333pt;}
.x111_c00425{left:490.666667pt;}
.xac_c00425{left:491.626667pt;}
.xd5_c00425{left:493.706667pt;}
.x5d_c00425{left:496.000000pt;}
.xf5_c00425{left:497.333333pt;}
.x114_c00425{left:499.040000pt;}
.xfa_c00425{left:500.960000pt;}
.x96_c00425{left:502.293333pt;}
.x6a_c00425{left:504.000000pt;}
.x8d_c00425{left:506.666667pt;}
.x48_c00425{left:507.626667pt;}
.xc6_c00425{left:509.333333pt;}
.xd_c00425{left:511.040000pt;}
.x31_c00425{left:514.666667pt;}
.x7c_c00425{left:517.706667pt;}
.x6b_c00425{left:519.040000pt;}
.xdd_c00425{left:520.000000pt;}
.x75_c00425{left:521.706667pt;}
.x112_c00425{left:522.666667pt;}
.x10f_c00425{left:524.000000pt;}
.x5e_c00425{left:524.960000pt;}
.x8e_c00425{left:526.293333pt;}
.x53_c00425{left:527.626667pt;}
.x19_c00425{left:529.333333pt;}
.x26_c00425{left:530.293333pt;}
.xd6_c00425{left:532.373333pt;}
.xe8_c00425{left:534.293333pt;}
.xb3_c00425{left:537.706667pt;}
.x97_c00425{left:539.040000pt;}
.xa2_c00425{left:540.373333pt;}
.xde_c00425{left:541.333333pt;}
.x6c_c00425{left:542.666667pt;}
.x49_c00425{left:543.626667pt;}
.x76_c00425{left:545.333333pt;}
.x3e_c00425{left:547.040000pt;}
.x32_c00425{left:551.040000pt;}
.xe9_c00425{left:552.373333pt;}
.x105_c00425{left:553.333333pt;}
.x1a_c00425{left:557.706667pt;}
.x85_c00425{left:560.373333pt;}
.xda_c00425{left:561.333333pt;}
.x5f_c00425{left:562.666667pt;}
.xe_c00425{left:563.626667pt;}
.xd7_c00425{left:564.960000pt;}
.xfb_c00425{left:566.666667pt;}
.x115_c00425{left:569.333333pt;}
.xff_c00425{left:570.666667pt;}
.xa3_c00425{left:572.000000pt;}
.x6d_c00425{left:574.293333pt;}
.x54_c00425{left:575.626667pt;}
.x7d_c00425{left:578.666667pt;}
.x3f_c00425{left:580.373333pt;}
.xad_c00425{left:581.333333pt;}
.x27_c00425{left:583.040000pt;}
.xf6_c00425{left:584.000000pt;}
.x77_c00425{left:585.333333pt;}
.x98_c00425{left:586.666667pt;}
.xd2_c00425{left:587.626667pt;}
.x6e_c00425{left:589.706667pt;}
.xf_c00425{left:593.333333pt;}
.x33_c00425{left:596.373333pt;}
.x116_c00425{left:597.706667pt;}
.x55_c00425{left:599.040000pt;}
.xf2_c00425{left:600.373333pt;}
.xcc_c00425{left:602.293333pt;}
.xb4_c00425{left:604.000000pt;}
.x1b_c00425{left:605.333333pt;}
.x4a_c00425{left:606.666667pt;}
.xa4_c00425{left:608.000000pt;}
.xbb_c00425{left:610.293333pt;}
.x40_c00425{left:611.626667pt;}
.x78_c00425{left:613.333333pt;}
.x7e_c00425{left:615.040000pt;}
.xe4_c00425{left:616.000000pt;}
.x8f_c00425{left:617.333333pt;}
.x28_c00425{left:619.040000pt;}
.x56_c00425{left:622.666667pt;}
.xb5_c00425{left:624.373333pt;}
.x4b_c00425{left:625.333333pt;}
.x41_c00425{left:628.373333pt;}
.x34_c00425{left:629.333333pt;}
.xbc_c00425{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8c7b1a839ce4571eef65cce3.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:1.688965;font-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_c00426{transform:matrix(0.002693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.002693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.002693,0.000000,0.000000,0.250000,0,0);}
.md_c00426{transform:matrix(0.003276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.003276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.003276,0.000000,0.000000,0.250000,0,0);}
.mf_c00426{transform:matrix(0.006014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.006014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.006014,0.000000,0.000000,0.250000,0,0);}
.m7_c00426{transform:matrix(0.006560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.006560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.006560,0.000000,0.000000,0.250000,0,0);}
.m42_c00426{transform:matrix(0.008933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008933,0.000000,0.000000,0.250000,0,0);}
.m37_c00426{transform:matrix(0.009611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009611,0.000000,0.000000,0.250000,0,0);}
.m41_c00426{transform:matrix(0.009760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009760,0.000000,0.000000,0.250000,0,0);}
.m33_c00426{transform:matrix(0.013908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013908,0.000000,0.000000,0.250000,0,0);}
.m13_c00426{transform:matrix(0.015520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015520,0.000000,0.000000,0.250000,0,0);}
.m47_c00426{transform:matrix(0.015943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015943,0.000000,0.000000,0.250000,0,0);}
.m4e_c00426{transform:matrix(0.016237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016237,0.000000,0.000000,0.250000,0,0);}
.m43_c00426{transform:matrix(0.016447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016447,0.000000,0.000000,0.250000,0,0);}
.m17_c00426{transform:matrix(0.016933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016933,0.000000,0.000000,0.250000,0,0);}
.ma_c00426{transform:matrix(0.017022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017022,0.000000,0.000000,0.250000,0,0);}
.m5a_c00426{transform:matrix(0.017114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017114,0.000000,0.000000,0.250000,0,0);}
.m4c_c00426{transform:matrix(0.018444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018444,0.000000,0.000000,0.250000,0,0);}
.m56_c00426{transform:matrix(0.018487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018487,0.000000,0.000000,0.250000,0,0);}
.m46_c00426{transform:matrix(0.018589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018589,0.000000,0.000000,0.250000,0,0);}
.mc_c00426{transform:matrix(0.018753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018753,0.000000,0.000000,0.250000,0,0);}
.m4_c00426{transform:matrix(0.018932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018932,0.000000,0.000000,0.250000,0,0);}
.mb_c00426{transform:matrix(0.018933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018933,0.000000,0.000000,0.250000,0,0);}
.m11_c00426{transform:matrix(0.019578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019578,0.000000,0.000000,0.250000,0,0);}
.m58_c00426{transform:matrix(0.021304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021304,0.000000,0.000000,0.250000,0,0);}
.m45_c00426{transform:matrix(0.021472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021472,0.000000,0.000000,0.250000,0,0);}
.m44_c00426{transform:matrix(0.022239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022239,0.000000,0.000000,0.250000,0,0);}
.m52_c00426{transform:matrix(0.022814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022814,0.000000,0.000000,0.250000,0,0);}
.m5c_c00426{transform:matrix(0.023270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023270,0.000000,0.000000,0.250000,0,0);}
.m53_c00426{transform:matrix(0.024659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024659,0.000000,0.000000,0.250000,0,0);}
.m3b_c00426{transform:matrix(0.026263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026263,0.000000,0.000000,0.250000,0,0);}
.m55_c00426{transform:matrix(0.029333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029333,0.000000,0.000000,0.250000,0,0);}
.m2_c00426{transform:matrix(0.029773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029773,0.000000,0.000000,0.250000,0,0);}
.m31_c00426{transform:matrix(0.030473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030473,0.000000,0.000000,0.250000,0,0);}
.m16_c00426{transform:matrix(0.031506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031506,0.000000,0.000000,0.250000,0,0);}
.m54_c00426{transform:matrix(0.031676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031676,0.000000,0.000000,0.250000,0,0);}
.m32_c00426{transform:matrix(0.031854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031854,0.000000,0.000000,0.250000,0,0);}
.m3f_c00426{transform:matrix(0.032033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032033,0.000000,0.000000,0.250000,0,0);}
.m9_c00426{transform:matrix(0.034291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034291,0.000000,0.000000,0.250000,0,0);}
.m19_c00426{transform:matrix(0.037258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037258,0.000000,0.000000,0.250000,0,0);}
.m3d_c00426{transform:matrix(0.038765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038765,0.000000,0.000000,0.250000,0,0);}
.m4a_c00426{transform:matrix(0.039021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039021,0.000000,0.000000,0.250000,0,0);}
.m1b_c00426{transform:matrix(0.041240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041240,0.000000,0.000000,0.250000,0,0);}
.m34_c00426{transform:matrix(0.043640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043640,0.000000,0.000000,0.250000,0,0);}
.m1c_c00426{transform:matrix(0.043796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043796,0.000000,0.000000,0.250000,0,0);}
.m39_c00426{transform:matrix(0.044937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044937,0.000000,0.000000,0.250000,0,0);}
.m35_c00426{transform:matrix(0.055461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055461,0.000000,0.000000,0.250000,0,0);}
.m21_c00426{transform:matrix(0.058181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058181,0.000000,0.000000,0.250000,0,0);}
.m6_c00426{transform:matrix(0.065697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065697,0.000000,0.000000,0.250000,0,0);}
.m12_c00426{transform:matrix(0.066358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066358,0.000000,0.000000,0.250000,0,0);}
.m2a_c00426{transform:matrix(0.067348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067348,0.000000,0.000000,0.250000,0,0);}
.m2c_c00426{transform:matrix(0.071227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071227,0.000000,0.000000,0.250000,0,0);}
.m18_c00426{transform:matrix(0.071319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071319,0.000000,0.000000,0.250000,0,0);}
.m36_c00426{transform:matrix(0.077837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077837,0.000000,0.000000,0.250000,0,0);}
.m4d_c00426{transform:matrix(0.079337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079337,0.000000,0.000000,0.250000,0,0);}
.m23_c00426{transform:matrix(0.081805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081805,0.000000,0.000000,0.250000,0,0);}
.m38_c00426{transform:matrix(0.083193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083193,0.000000,0.000000,0.250000,0,0);}
.m2b_c00426{transform:matrix(0.083216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083216,0.000000,0.000000,0.250000,0,0);}
.m28_c00426{transform:matrix(0.085331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085331,0.000000,0.000000,0.250000,0,0);}
.m2d_c00426{transform:matrix(0.091678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091678,0.000000,0.000000,0.250000,0,0);}
.m30_c00426{transform:matrix(0.100077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100077,0.000000,0.000000,0.250000,0,0);}
.m1d_c00426{transform:matrix(0.102968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102968,0.000000,0.000000,0.250000,0,0);}
.m22_c00426{transform:matrix(0.105751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105751,0.000000,0.000000,0.250000,0,0);}
.m3a_c00426{transform:matrix(0.107143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107143,0.000000,0.000000,0.250000,0,0);}
.m5_c00426{transform:matrix(0.109489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109489,0.000000,0.000000,0.250000,0,0);}
.m2e_c00426{transform:matrix(0.116419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116419,0.000000,0.000000,0.250000,0,0);}
.m40_c00426{transform:matrix(0.129406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129406,0.000000,0.000000,0.250000,0,0);}
.m29_c00426{transform:matrix(0.129668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129668,0.000000,0.000000,0.250000,0,0);}
.m15_c00426{transform:matrix(0.149859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149859,0.000000,0.000000,0.250000,0,0);}
.m48_c00426{transform:matrix(0.151971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151971,0.000000,0.000000,0.250000,0,0);}
.m3c_c00426{transform:matrix(0.166512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166512,0.000000,0.000000,0.250000,0,0);}
.m49_c00426{transform:matrix(0.195539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195539,0.000000,0.000000,0.250000,0,0);}
.m10_c00426{transform:matrix(0.219118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219118,0.000000,0.000000,0.250000,0,0);}
.m24_c00426{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00426{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m3_c00426{transform:matrix(0.317718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317718,0.000000,0.000000,0.250000,0,0);}
.m51_c00426{transform:matrix(0.318382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318382,0.000000,0.000000,0.250000,0,0);}
.m26_c00426{transform:matrix(0.321324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321324,0.000000,0.000000,0.250000,0,0);}
.m4b_c00426{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_c00426{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00426{transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);}
.m57_c00426{transform:matrix(0.392070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392070,0.000000,0.000000,0.250000,0,0);}
.m14_c00426{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m5b_c00426{transform:matrix(0.408654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408654,0.000000,0.000000,0.250000,0,0);}
.m2f_c00426{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m1e_c00426{transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);}
.m59_c00426{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.m0_c00426{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m27_c00426{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m1_c00426{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_c00426{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m1f_c00426{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.m20_c00426{transform:matrix(1.127525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.127525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.127525,0.000000,0.000000,0.250000,0,0);}
.m1a_c00426{transform:matrix(1.377525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.377525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.377525,0.000000,0.000000,0.250000,0,0);}
.m4f_c00426{transform:matrix(3.482456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.482456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.482456,0.000000,0.000000,0.250000,0,0);}
.v0_c00426{vertical-align:0.000000px;}
.ls0_c00426{letter-spacing:0.000000px;}
.sc__c00426{text-shadow:none;}
.sc0_c00426{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00426{-webkit-text-stroke:0px transparent;}
.sc0_c00426{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00426{word-spacing:0.000000px;}
.fc0_c00426{color:transparent;}
.fs1c_c00426{font-size:3.420000px;}
.fs11_c00426{font-size:11.880000px;}
.fs13_c00426{font-size:13.620000px;}
.fs12_c00426{font-size:18.720000px;}
.fs1_c00426{font-size:20.400000px;}
.fs0_c00426{font-size:28.920000px;}
.fs3_c00426{font-size:32.340000px;}
.fs18_c00426{font-size:35.700000px;}
.fsf_c00426{font-size:39.120000px;}
.fse_c00426{font-size:42.540000px;}
.fs5_c00426{font-size:49.320000px;}
.fs10_c00426{font-size:52.740000px;}
.fs16_c00426{font-size:64.620000px;}
.fs6_c00426{font-size:68.040000px;}
.fs14_c00426{font-size:74.820000px;}
.fs1a_c00426{font-size:78.240000px;}
.fs1e_c00426{font-size:85.020000px;}
.fs15_c00426{font-size:88.440000px;}
.fs8_c00426{font-size:91.860000px;}
.fs2_c00426{font-size:95.220000px;}
.fs19_c00426{font-size:100.320000px;}
.fs1b_c00426{font-size:107.160000px;}
.fsb_c00426{font-size:120.780000px;}
.fs4_c00426{font-size:127.560000px;}
.fs17_c00426{font-size:132.660000px;}
.fsd_c00426{font-size:134.340000px;}
.fsa_c00426{font-size:139.440000px;}
.fs9_c00426{font-size:146.280000px;}
.fs7_c00426{font-size:205.800000px;}
.fs1f_c00426{font-size:221.100000px;}
.fs1d_c00426{font-size:241.500000px;}
.fsc_c00426{font-size:668.400000px;}
.y0_c00426{bottom:0.000000px;}
.y97_c00426{bottom:288.180000px;}
.y27_c00426{bottom:288.825000px;}
.y18_c00426{bottom:289.680000px;}
.y6f_c00426{bottom:290.955000px;}
.y93_c00426{bottom:291.150000px;}
.y5_c00426{bottom:291.960000px;}
.y56_c00426{bottom:292.005000px;}
.y77_c00426{bottom:292.230000px;}
.y8c_c00426{bottom:292.425000px;}
.y72_c00426{bottom:293.505000px;}
.y5b_c00426{bottom:293.700000px;}
.y88_c00426{bottom:294.975000px;}
.y65_c00426{bottom:298.800000px;}
.y85_c00426{bottom:299.460000px;}
.yb3_c00426{bottom:309.015000px;}
.yac_c00426{bottom:311.145000px;}
.y34_c00426{bottom:312.825000px;}
.y19_c00426{bottom:313.455000px;}
.y45_c00426{bottom:313.680000px;}
.y78_c00426{bottom:318.630000px;}
.y94_c00426{bottom:319.050000px;}
.y70_c00426{bottom:319.230000px;}
.y98_c00426{bottom:319.830000px;}
.yb0_c00426{bottom:320.130000px;}
.y8d_c00426{bottom:323.130000px;}
.y73_c00426{bottom:328.230000px;}
.y57_c00426{bottom:328.455000px;}
.y35_c00426{bottom:331.680000px;}
.yaa_c00426{bottom:332.730000px;}
.y1a_c00426{bottom:332.775000px;}
.y5c_c00426{bottom:334.230000px;}
.y79_c00426{bottom:337.230000px;}
.y89_c00426{bottom:338.925000px;}
.y95_c00426{bottom:340.005000px;}
.yb1_c00426{bottom:341.280000px;}
.y6_c00426{bottom:346.035000px;}
.y8e_c00426{bottom:347.055000px;}
.y66_c00426{bottom:352.230000px;}
.yab_c00426{bottom:358.695000px;}
.y86_c00426{bottom:358.800000px;}
.y99_c00426{bottom:360.420000px;}
.yb2_c00426{bottom:360.630000px;}
.ya8_c00426{bottom:364.920000px;}
.y5d_c00426{bottom:365.955000px;}
.y9a_c00426{bottom:368.775000px;}
.y7_c00426{bottom:378.150000px;}
.y9b_c00426{bottom:379.050000px;}
.yad_c00426{bottom:382.275000px;}
.ya9_c00426{bottom:386.775000px;}
.y1b_c00426{bottom:424.455000px;}
.y46_c00426{bottom:425.130000px;}
.y36_c00426{bottom:425.550000px;}
.y4e_c00426{bottom:426.630000px;}
.y9c_c00426{bottom:427.425000px;}
.y5e_c00426{bottom:427.680000px;}
.y28_c00426{bottom:428.775000px;}
.y74_c00426{bottom:429.180000px;}
.yb4_c00426{bottom:430.905000px;}
.y7a_c00426{bottom:431.325000px;}
.y8_c00426{bottom:431.805000px;}
.y9d_c00426{bottom:478.425000px;}
.y47_c00426{bottom:478.680000px;}
.y42_c00426{bottom:478.905000px;}
.y1c_c00426{bottom:479.955000px;}
.y5f_c00426{bottom:480.180000px;}
.y96_c00426{bottom:480.825000px;}
.y37_c00426{bottom:482.130000px;}
.y7b_c00426{bottom:482.325000px;}
.y29_c00426{bottom:484.275000px;}
.y9_c00426{bottom:505.905000px;}
.ya_c00426{bottom:532.635000px;}
.y1d_c00426{bottom:535.455000px;}
.y38_c00426{bottom:536.550000px;}
.y4f_c00426{bottom:537.630000px;}
.y9e_c00426{bottom:538.005000px;}
.y48_c00426{bottom:538.680000px;}
.y2a_c00426{bottom:539.775000px;}
.y67_c00426{bottom:540.180000px;}
.y90_c00426{bottom:541.905000px;}
.y7c_c00426{bottom:542.325000px;}
.yb_c00426{bottom:586.590000px;}
.y1e_c00426{bottom:590.955000px;}
.y39_c00426{bottom:592.050000px;}
.y50_c00426{bottom:593.130000px;}
.y9f_c00426{bottom:593.925000px;}
.y49_c00426{bottom:594.180000px;}
.y8a_c00426{bottom:595.245000px;}
.y2b_c00426{bottom:595.275000px;}
.yb5_c00426{bottom:597.405000px;}
.y7d_c00426{bottom:597.825000px;}
.y16_c00426{bottom:633.555000px;}
.yc_c00426{bottom:642.405000px;}
.y1f_c00426{bottom:646.455000px;}
.y3a_c00426{bottom:647.550000px;}
.y51_c00426{bottom:648.195000px;}
.y60_c00426{bottom:649.680000px;}
.ya0_c00426{bottom:650.505000px;}
.y2c_c00426{bottom:650.775000px;}
.y68_c00426{bottom:651.180000px;}
.y3_c00426{bottom:653.055000px;}
.y7e_c00426{bottom:653.325000px;}
.yd_c00426{bottom:674.655000px;}
.y17_c00426{bottom:683.460000px;}
.y4_c00426{bottom:690.825000px;}
.y20_c00426{bottom:703.035000px;}
.y43_c00426{bottom:703.050000px;}
.y3b_c00426{bottom:704.130000px;}
.ya1_c00426{bottom:704.505000px;}
.y4a_c00426{bottom:705.180000px;}
.y2d_c00426{bottom:706.275000px;}
.y69_c00426{bottom:706.680000px;}
.y7f_c00426{bottom:708.825000px;}
.ye_c00426{bottom:737.025000px;}
.y21_c00426{bottom:757.455000px;}
.y3c_c00426{bottom:758.550000px;}
.ya2_c00426{bottom:758.925000px;}
.y52_c00426{bottom:759.630000px;}
.y2e_c00426{bottom:760.275000px;}
.y61_c00426{bottom:760.680000px;}
.y58_c00426{bottom:761.775000px;}
.y6a_c00426{bottom:762.180000px;}
.y80_c00426{bottom:764.325000px;}
.y44_c00426{bottom:811.905000px;}
.y3d_c00426{bottom:812.550000px;}
.y22_c00426{bottom:812.955000px;}
.ya3_c00426{bottom:815.505000px;}
.y2f_c00426{bottom:815.775000px;}
.y4b_c00426{bottom:816.180000px;}
.y71_c00426{bottom:817.245000px;}
.y59_c00426{bottom:817.275000px;}
.y53_c00426{bottom:817.680000px;}
.yb6_c00426{bottom:819.405000px;}
.y81_c00426{bottom:819.825000px;}
.y10_c00426{bottom:856.050000px;}
.yf_c00426{bottom:858.030000px;}
.y23_c00426{bottom:868.455000px;}
.y54_c00426{bottom:869.130000px;}
.y3e_c00426{bottom:869.550000px;}
.y62_c00426{bottom:870.180000px;}
.ya4_c00426{bottom:871.005000px;}
.y30_c00426{bottom:871.275000px;}
.y6b_c00426{bottom:871.680000px;}
.y5a_c00426{bottom:872.775000px;}
.y75_c00426{bottom:873.180000px;}
.y87_c00426{bottom:873.825000px;}
.yae_c00426{bottom:874.905000px;}
.y82_c00426{bottom:875.325000px;}
.y11_c00426{bottom:883.155000px;}
.ya5_c00426{bottom:923.925000px;}
.y4c_c00426{bottom:925.680000px;}
.y55_c00426{bottom:927.180000px;}
.y24_c00426{bottom:928.035000px;}
.y3f_c00426{bottom:928.050000px;}
.y6c_c00426{bottom:928.245000px;}
.y83_c00426{bottom:929.325000px;}
.y91_c00426{bottom:930.405000px;}
.y31_c00426{bottom:931.275000px;}
.y12_c00426{bottom:939.150000px;}
.ya6_c00426{bottom:979.425000px;}
.y63_c00426{bottom:981.180000px;}
.y13_c00426{bottom:981.300000px;}
.y6d_c00426{bottom:982.680000px;}
.y4d_c00426{bottom:983.130000px;}
.y25_c00426{bottom:983.535000px;}
.y40_c00426{bottom:983.550000px;}
.y8f_c00426{bottom:983.745000px;}
.y8b_c00426{bottom:984.180000px;}
.yaf_c00426{bottom:984.825000px;}
.y92_c00426{bottom:985.905000px;}
.y84_c00426{bottom:986.325000px;}
.y32_c00426{bottom:986.775000px;}
.y14_c00426{bottom:1030.905000px;}
.ya7_c00426{bottom:1034.925000px;}
.y64_c00426{bottom:1036.680000px;}
.y6e_c00426{bottom:1038.180000px;}
.y26_c00426{bottom:1039.035000px;}
.yb7_c00426{bottom:1039.905000px;}
.y76_c00426{bottom:1040.325000px;}
.y33_c00426{bottom:1040.775000px;}
.y41_c00426{bottom:1042.275000px;}
.y15_c00426{bottom:1050.180000px;}
.y1_c00426{bottom:1099.905000px;}
.y2_c00426{bottom:1102.050000px;}
.h1d_c00426{height:4.206533px;}
.h12_c00426{height:14.612168px;}
.h14_c00426{height:16.752334px;}
.h13_c00426{height:23.025234px;}
.h2_c00426{height:25.091602px;}
.h1_c00426{height:35.571035px;}
.h4_c00426{height:39.777568px;}
.h19_c00426{height:43.910303px;}
.h10_c00426{height:48.116836px;}
.hf_c00426{height:52.323369px;}
.h6_c00426{height:60.662637px;}
.h11_c00426{height:64.869170px;}
.h17_c00426{height:79.481338px;}
.h7_c00426{height:83.687871px;}
.h15_c00426{height:92.027139px;}
.h1b_c00426{height:96.233672px;}
.h1f_c00426{height:104.572939px;}
.h16_c00426{height:108.779473px;}
.h9_c00426{height:112.986006px;}
.h3_c00426{height:117.118740px;}
.h1a_c00426{height:123.391641px;}
.h1c_c00426{height:131.804707px;}
.hc_c00426{height:148.557041px;}
.h5_c00426{height:156.896309px;}
.h18_c00426{height:163.169209px;}
.he_c00426{height:165.235576px;}
.hb_c00426{height:171.508477px;}
.ha_c00426{height:179.921543px;}
.h8_c00426{height:253.129980px;}
.h20_c00426{height:271.948682px;}
.h1e_c00426{height:297.040283px;}
.hd_c00426{height:822.118945px;}
.h0_c00426{height:1335.000000px;}
.w0_c00426{width:880.500000px;}
.x0_c00426{left:0.000000px;}
.x3_c00426{left:262.500000px;}
.x7_c00426{left:285.645000px;}
.x4_c00426{left:286.725000px;}
.x5_c00426{left:288.420000px;}
.x8_c00426{left:295.080000px;}
.x6_c00426{left:296.280000px;}
.x9_c00426{left:300.225000px;}
.xc_c00426{left:330.000000px;}
.xb_c00426{left:331.500000px;}
.xa_c00426{left:332.580000px;}
.xf_c00426{left:342.000000px;}
.xe_c00426{left:343.500000px;}
.xd_c00426{left:345.000000px;}
.x13_c00426{left:357.420000px;}
.x14_c00426{left:358.500000px;}
.x12_c00426{left:360.420000px;}
.x11_c00426{left:361.500000px;}
.x10_c00426{left:363.000000px;}
.x16_c00426{left:370.920000px;}
.x15_c00426{left:376.080000px;}
.x19_c00426{left:384.000000px;}
.x1a_c00426{left:387.000000px;}
.x18_c00426{left:388.500000px;}
.x17_c00426{left:390.000000px;}
.x1f_c00426{left:398.775000px;}
.x1e_c00426{left:400.920000px;}
.x1c_c00426{left:402.000000px;}
.x1b_c00426{left:403.080000px;}
.x1d_c00426{left:405.000000px;}
.x2_c00426{left:409.500000px;}
.x22_c00426{left:415.920000px;}
.x20_c00426{left:417.000000px;}
.x21_c00426{left:418.920000px;}
.x26_c00426{left:424.500000px;}
.x25_c00426{left:427.500000px;}
.x24_c00426{left:429.000000px;}
.x23_c00426{left:430.920000px;}
.x2a_c00426{left:439.275000px;}
.x29_c00426{left:440.775000px;}
.x28_c00426{left:442.500000px;}
.x27_c00426{left:443.580000px;}
.x2d_c00426{left:452.775000px;}
.x2c_c00426{left:455.775000px;}
.x2b_c00426{left:457.500000px;}
.x32_c00426{left:465.000000px;}
.x31_c00426{left:466.275000px;}
.x30_c00426{left:468.855000px;}
.x2e_c00426{left:470.145000px;}
.x2f_c00426{left:472.275000px;}
.x34_c00426{left:478.500000px;}
.x33_c00426{left:483.645000px;}
.x37_c00426{left:492.000000px;}
.x36_c00426{left:496.500000px;}
.x35_c00426{left:497.580000px;}
.x3a_c00426{left:506.775000px;}
.x38_c00426{left:511.500000px;}
.x39_c00426{left:512.775000px;}
.x3e_c00426{left:520.275000px;}
.x3d_c00426{left:521.775000px;}
.x3b_c00426{left:524.145000px;}
.x3c_c00426{left:526.275000px;}
.x40_c00426{left:532.080000px;}
.x3f_c00426{left:537.645000px;}
.x44_c00426{left:546.000000px;}
.x43_c00426{left:550.500000px;}
.x41_c00426{left:552.000000px;}
.x42_c00426{left:553.920000px;}
.x47_c00426{left:565.500000px;}
.x45_c00426{left:566.580000px;}
.x46_c00426{left:568.920000px;}
.x49_c00426{left:574.500000px;}
.x48_c00426{left:576.000000px;}
.x4d_c00426{left:577.500000px;}
.x4c_c00426{left:579.000000px;}
.x4a_c00426{left:580.500000px;}
.x4b_c00426{left:582.000000px;}
.x4f_c00426{left:591.855000px;}
.x4e_c00426{left:593.145000px;}
.x53_c00426{left:604.500000px;}
.x52_c00426{left:606.000000px;}
.x50_c00426{left:607.500000px;}
.x51_c00426{left:609.000000px;}
.x1_c00426{left:707.580000px;}
@media print{
.v0_c00426{vertical-align:0.000000pt;}
.ls0_c00426{letter-spacing:0.000000pt;}
.ws0_c00426{word-spacing:0.000000pt;}
.fs1c_c00426{font-size:3.040000pt;}
.fs11_c00426{font-size:10.560000pt;}
.fs13_c00426{font-size:12.106667pt;}
.fs12_c00426{font-size:16.640000pt;}
.fs1_c00426{font-size:18.133333pt;}
.fs0_c00426{font-size:25.706667pt;}
.fs3_c00426{font-size:28.746667pt;}
.fs18_c00426{font-size:31.733333pt;}
.fsf_c00426{font-size:34.773333pt;}
.fse_c00426{font-size:37.813333pt;}
.fs5_c00426{font-size:43.840000pt;}
.fs10_c00426{font-size:46.880000pt;}
.fs16_c00426{font-size:57.440000pt;}
.fs6_c00426{font-size:60.480000pt;}
.fs14_c00426{font-size:66.506667pt;}
.fs1a_c00426{font-size:69.546667pt;}
.fs1e_c00426{font-size:75.573333pt;}
.fs15_c00426{font-size:78.613333pt;}
.fs8_c00426{font-size:81.653333pt;}
.fs2_c00426{font-size:84.640000pt;}
.fs19_c00426{font-size:89.173333pt;}
.fs1b_c00426{font-size:95.253333pt;}
.fsb_c00426{font-size:107.360000pt;}
.fs4_c00426{font-size:113.386667pt;}
.fs17_c00426{font-size:117.920000pt;}
.fsd_c00426{font-size:119.413333pt;}
.fsa_c00426{font-size:123.946667pt;}
.fs9_c00426{font-size:130.026667pt;}
.fs7_c00426{font-size:182.933333pt;}
.fs1f_c00426{font-size:196.533333pt;}
.fs1d_c00426{font-size:214.666667pt;}
.fsc_c00426{font-size:594.133333pt;}
.y0_c00426{bottom:0.000000pt;}
.y97_c00426{bottom:256.160000pt;}
.y27_c00426{bottom:256.733333pt;}
.y18_c00426{bottom:257.493333pt;}
.y6f_c00426{bottom:258.626667pt;}
.y93_c00426{bottom:258.800000pt;}
.y5_c00426{bottom:259.520000pt;}
.y56_c00426{bottom:259.560000pt;}
.y77_c00426{bottom:259.760000pt;}
.y8c_c00426{bottom:259.933333pt;}
.y72_c00426{bottom:260.893333pt;}
.y5b_c00426{bottom:261.066667pt;}
.y88_c00426{bottom:262.200000pt;}
.y65_c00426{bottom:265.600000pt;}
.y85_c00426{bottom:266.186667pt;}
.yb3_c00426{bottom:274.680000pt;}
.yac_c00426{bottom:276.573333pt;}
.y34_c00426{bottom:278.066667pt;}
.y19_c00426{bottom:278.626667pt;}
.y45_c00426{bottom:278.826667pt;}
.y78_c00426{bottom:283.226667pt;}
.y94_c00426{bottom:283.600000pt;}
.y70_c00426{bottom:283.760000pt;}
.y98_c00426{bottom:284.293333pt;}
.yb0_c00426{bottom:284.560000pt;}
.y8d_c00426{bottom:287.226667pt;}
.y73_c00426{bottom:291.760000pt;}
.y57_c00426{bottom:291.960000pt;}
.y35_c00426{bottom:294.826667pt;}
.yaa_c00426{bottom:295.760000pt;}
.y1a_c00426{bottom:295.800000pt;}
.y5c_c00426{bottom:297.093333pt;}
.y79_c00426{bottom:299.760000pt;}
.y89_c00426{bottom:301.266667pt;}
.y95_c00426{bottom:302.226667pt;}
.yb1_c00426{bottom:303.360000pt;}
.y6_c00426{bottom:307.586667pt;}
.y8e_c00426{bottom:308.493333pt;}
.y66_c00426{bottom:313.093333pt;}
.yab_c00426{bottom:318.840000pt;}
.y86_c00426{bottom:318.933333pt;}
.y99_c00426{bottom:320.373333pt;}
.yb2_c00426{bottom:320.560000pt;}
.ya8_c00426{bottom:324.373333pt;}
.y5d_c00426{bottom:325.293333pt;}
.y9a_c00426{bottom:327.800000pt;}
.y7_c00426{bottom:336.133333pt;}
.y9b_c00426{bottom:336.933333pt;}
.yad_c00426{bottom:339.800000pt;}
.ya9_c00426{bottom:343.800000pt;}
.y1b_c00426{bottom:377.293333pt;}
.y46_c00426{bottom:377.893333pt;}
.y36_c00426{bottom:378.266667pt;}
.y4e_c00426{bottom:379.226667pt;}
.y9c_c00426{bottom:379.933333pt;}
.y5e_c00426{bottom:380.160000pt;}
.y28_c00426{bottom:381.133333pt;}
.y74_c00426{bottom:381.493333pt;}
.yb4_c00426{bottom:383.026667pt;}
.y7a_c00426{bottom:383.400000pt;}
.y8_c00426{bottom:383.826667pt;}
.y9d_c00426{bottom:425.266667pt;}
.y47_c00426{bottom:425.493333pt;}
.y42_c00426{bottom:425.693333pt;}
.y1c_c00426{bottom:426.626667pt;}
.y5f_c00426{bottom:426.826667pt;}
.y96_c00426{bottom:427.400000pt;}
.y37_c00426{bottom:428.560000pt;}
.y7b_c00426{bottom:428.733333pt;}
.y29_c00426{bottom:430.466667pt;}
.y9_c00426{bottom:449.693333pt;}
.ya_c00426{bottom:473.453333pt;}
.y1d_c00426{bottom:475.960000pt;}
.y38_c00426{bottom:476.933333pt;}
.y4f_c00426{bottom:477.893333pt;}
.y9e_c00426{bottom:478.226667pt;}
.y48_c00426{bottom:478.826667pt;}
.y2a_c00426{bottom:479.800000pt;}
.y67_c00426{bottom:480.160000pt;}
.y90_c00426{bottom:481.693333pt;}
.y7c_c00426{bottom:482.066667pt;}
.yb_c00426{bottom:521.413333pt;}
.y1e_c00426{bottom:525.293333pt;}
.y39_c00426{bottom:526.266667pt;}
.y50_c00426{bottom:527.226667pt;}
.y9f_c00426{bottom:527.933333pt;}
.y49_c00426{bottom:528.160000pt;}
.y8a_c00426{bottom:529.106667pt;}
.y2b_c00426{bottom:529.133333pt;}
.yb5_c00426{bottom:531.026667pt;}
.y7d_c00426{bottom:531.400000pt;}
.y16_c00426{bottom:563.160000pt;}
.yc_c00426{bottom:571.026667pt;}
.y1f_c00426{bottom:574.626667pt;}
.y3a_c00426{bottom:575.600000pt;}
.y51_c00426{bottom:576.173333pt;}
.y60_c00426{bottom:577.493333pt;}
.ya0_c00426{bottom:578.226667pt;}
.y2c_c00426{bottom:578.466667pt;}
.y68_c00426{bottom:578.826667pt;}
.y3_c00426{bottom:580.493333pt;}
.y7e_c00426{bottom:580.733333pt;}
.yd_c00426{bottom:599.693333pt;}
.y17_c00426{bottom:607.520000pt;}
.y4_c00426{bottom:614.066667pt;}
.y20_c00426{bottom:624.920000pt;}
.y43_c00426{bottom:624.933333pt;}
.y3b_c00426{bottom:625.893333pt;}
.ya1_c00426{bottom:626.226667pt;}
.y4a_c00426{bottom:626.826667pt;}
.y2d_c00426{bottom:627.800000pt;}
.y69_c00426{bottom:628.160000pt;}
.y7f_c00426{bottom:630.066667pt;}
.ye_c00426{bottom:655.133333pt;}
.y21_c00426{bottom:673.293333pt;}
.y3c_c00426{bottom:674.266667pt;}
.ya2_c00426{bottom:674.600000pt;}
.y52_c00426{bottom:675.226667pt;}
.y2e_c00426{bottom:675.800000pt;}
.y61_c00426{bottom:676.160000pt;}
.y58_c00426{bottom:677.133333pt;}
.y6a_c00426{bottom:677.493333pt;}
.y80_c00426{bottom:679.400000pt;}
.y44_c00426{bottom:721.693333pt;}
.y3d_c00426{bottom:722.266667pt;}
.y22_c00426{bottom:722.626667pt;}
.ya3_c00426{bottom:724.893333pt;}
.y2f_c00426{bottom:725.133333pt;}
.y4b_c00426{bottom:725.493333pt;}
.y71_c00426{bottom:726.440000pt;}
.y59_c00426{bottom:726.466667pt;}
.y53_c00426{bottom:726.826667pt;}
.yb6_c00426{bottom:728.360000pt;}
.y81_c00426{bottom:728.733333pt;}
.y10_c00426{bottom:760.933333pt;}
.yf_c00426{bottom:762.693333pt;}
.y23_c00426{bottom:771.960000pt;}
.y54_c00426{bottom:772.560000pt;}
.y3e_c00426{bottom:772.933333pt;}
.y62_c00426{bottom:773.493333pt;}
.ya4_c00426{bottom:774.226667pt;}
.y30_c00426{bottom:774.466667pt;}
.y6b_c00426{bottom:774.826667pt;}
.y5a_c00426{bottom:775.800000pt;}
.y75_c00426{bottom:776.160000pt;}
.y87_c00426{bottom:776.733333pt;}
.yae_c00426{bottom:777.693333pt;}
.y82_c00426{bottom:778.066667pt;}
.y11_c00426{bottom:785.026667pt;}
.ya5_c00426{bottom:821.266667pt;}
.y4c_c00426{bottom:822.826667pt;}
.y55_c00426{bottom:824.160000pt;}
.y24_c00426{bottom:824.920000pt;}
.y3f_c00426{bottom:824.933333pt;}
.y6c_c00426{bottom:825.106667pt;}
.y83_c00426{bottom:826.066667pt;}
.y91_c00426{bottom:827.026667pt;}
.y31_c00426{bottom:827.800000pt;}
.y12_c00426{bottom:834.800000pt;}
.ya6_c00426{bottom:870.600000pt;}
.y63_c00426{bottom:872.160000pt;}
.y13_c00426{bottom:872.266667pt;}
.y6d_c00426{bottom:873.493333pt;}
.y4d_c00426{bottom:873.893333pt;}
.y25_c00426{bottom:874.253333pt;}
.y40_c00426{bottom:874.266667pt;}
.y8f_c00426{bottom:874.440000pt;}
.y8b_c00426{bottom:874.826667pt;}
.yaf_c00426{bottom:875.400000pt;}
.y92_c00426{bottom:876.360000pt;}
.y84_c00426{bottom:876.733333pt;}
.y32_c00426{bottom:877.133333pt;}
.y14_c00426{bottom:916.360000pt;}
.ya7_c00426{bottom:919.933333pt;}
.y64_c00426{bottom:921.493333pt;}
.y6e_c00426{bottom:922.826667pt;}
.y26_c00426{bottom:923.586667pt;}
.yb7_c00426{bottom:924.360000pt;}
.y76_c00426{bottom:924.733333pt;}
.y33_c00426{bottom:925.133333pt;}
.y41_c00426{bottom:926.466667pt;}
.y15_c00426{bottom:933.493333pt;}
.y1_c00426{bottom:977.693333pt;}
.y2_c00426{bottom:979.600000pt;}
.h1d_c00426{height:3.739141pt;}
.h12_c00426{height:12.988594pt;}
.h14_c00426{height:14.890964pt;}
.h13_c00426{height:20.466875pt;}
.h2_c00426{height:22.303646pt;}
.h1_c00426{height:31.618698pt;}
.h4_c00426{height:35.357839pt;}
.h19_c00426{height:39.031380pt;}
.h10_c00426{height:42.770521pt;}
.hf_c00426{height:46.509661pt;}
.h6_c00426{height:53.922344pt;}
.h11_c00426{height:57.661484pt;}
.h17_c00426{height:70.650078pt;}
.h7_c00426{height:74.389219pt;}
.h15_c00426{height:81.801901pt;}
.h1b_c00426{height:85.541042pt;}
.h1f_c00426{height:92.953724pt;}
.h16_c00426{height:96.692865pt;}
.h9_c00426{height:100.432005pt;}
.h3_c00426{height:104.105547pt;}
.h1a_c00426{height:109.681458pt;}
.h1c_c00426{height:117.159740pt;}
.hc_c00426{height:132.050703pt;}
.h5_c00426{height:139.463385pt;}
.h18_c00426{height:145.039297pt;}
.he_c00426{height:146.876068pt;}
.hb_c00426{height:152.451979pt;}
.ha_c00426{height:159.930260pt;}
.h8_c00426{height:225.004427pt;}
.h20_c00426{height:241.732161pt;}
.h1e_c00426{height:264.035807pt;}
.hd_c00426{height:730.772396pt;}
.h0_c00426{height:1186.666667pt;}
.w0_c00426{width:782.666667pt;}
.x0_c00426{left:0.000000pt;}
.x3_c00426{left:233.333333pt;}
.x7_c00426{left:253.906667pt;}
.x4_c00426{left:254.866667pt;}
.x5_c00426{left:256.373333pt;}
.x8_c00426{left:262.293333pt;}
.x6_c00426{left:263.360000pt;}
.x9_c00426{left:266.866667pt;}
.xc_c00426{left:293.333333pt;}
.xb_c00426{left:294.666667pt;}
.xa_c00426{left:295.626667pt;}
.xf_c00426{left:304.000000pt;}
.xe_c00426{left:305.333333pt;}
.xd_c00426{left:306.666667pt;}
.x13_c00426{left:317.706667pt;}
.x14_c00426{left:318.666667pt;}
.x12_c00426{left:320.373333pt;}
.x11_c00426{left:321.333333pt;}
.x10_c00426{left:322.666667pt;}
.x16_c00426{left:329.706667pt;}
.x15_c00426{left:334.293333pt;}
.x19_c00426{left:341.333333pt;}
.x1a_c00426{left:344.000000pt;}
.x18_c00426{left:345.333333pt;}
.x17_c00426{left:346.666667pt;}
.x1f_c00426{left:354.466667pt;}
.x1e_c00426{left:356.373333pt;}
.x1c_c00426{left:357.333333pt;}
.x1b_c00426{left:358.293333pt;}
.x1d_c00426{left:360.000000pt;}
.x2_c00426{left:364.000000pt;}
.x22_c00426{left:369.706667pt;}
.x20_c00426{left:370.666667pt;}
.x21_c00426{left:372.373333pt;}
.x26_c00426{left:377.333333pt;}
.x25_c00426{left:380.000000pt;}
.x24_c00426{left:381.333333pt;}
.x23_c00426{left:383.040000pt;}
.x2a_c00426{left:390.466667pt;}
.x29_c00426{left:391.800000pt;}
.x28_c00426{left:393.333333pt;}
.x27_c00426{left:394.293333pt;}
.x2d_c00426{left:402.466667pt;}
.x2c_c00426{left:405.133333pt;}
.x2b_c00426{left:406.666667pt;}
.x32_c00426{left:413.333333pt;}
.x31_c00426{left:414.466667pt;}
.x30_c00426{left:416.760000pt;}
.x2e_c00426{left:417.906667pt;}
.x2f_c00426{left:419.800000pt;}
.x34_c00426{left:425.333333pt;}
.x33_c00426{left:429.906667pt;}
.x37_c00426{left:437.333333pt;}
.x36_c00426{left:441.333333pt;}
.x35_c00426{left:442.293333pt;}
.x3a_c00426{left:450.466667pt;}
.x38_c00426{left:454.666667pt;}
.x39_c00426{left:455.800000pt;}
.x3e_c00426{left:462.466667pt;}
.x3d_c00426{left:463.800000pt;}
.x3b_c00426{left:465.906667pt;}
.x3c_c00426{left:467.800000pt;}
.x40_c00426{left:472.960000pt;}
.x3f_c00426{left:477.906667pt;}
.x44_c00426{left:485.333333pt;}
.x43_c00426{left:489.333333pt;}
.x41_c00426{left:490.666667pt;}
.x42_c00426{left:492.373333pt;}
.x47_c00426{left:502.666667pt;}
.x45_c00426{left:503.626667pt;}
.x46_c00426{left:505.706667pt;}
.x49_c00426{left:510.666667pt;}
.x48_c00426{left:512.000000pt;}
.x4d_c00426{left:513.333333pt;}
.x4c_c00426{left:514.666667pt;}
.x4a_c00426{left:516.000000pt;}
.x4b_c00426{left:517.333333pt;}
.x4f_c00426{left:526.093333pt;}
.x4e_c00426{left:527.240000pt;}
.x53_c00426{left:537.333333pt;}
.x52_c00426{left:538.666667pt;}
.x50_c00426{left:540.000000pt;}
.x51_c00426{left:541.333333pt;}
.x1_c00426{left:628.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_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_78dce38907d48c6298cc03db.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3e_c00427{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.mc5_c00427{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.mcd_c00427{transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);}
.med_c00427{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_c00427{transform:matrix(0.355828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355828,0.000000,0.000000,0.250000,0,0);}
.mc_c00427{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.me6_c00427{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.me0_c00427{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m2e_c00427{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m0_c00427{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m42_c00427{transform:matrix(0.368275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368275,0.000000,0.000000,0.250000,0,0);}
.mbd_c00427{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mc3_c00427{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m3f_c00427{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m100_c00427{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m82_c00427{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mc7_c00427{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m7c_c00427{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.md4_c00427{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.m2f_c00427{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.ma3_c00427{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m40_c00427{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m32_c00427{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.mb3_c00427{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m79_c00427{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m4d_c00427{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.md6_c00427{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.md7_c00427{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.mcf_c00427{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.md2_c00427{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m2d_c00427{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.mce_c00427{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);}
.m84_c00427{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m74_c00427{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mc1_c00427{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m5d_c00427{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.mdf_c00427{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.ma1_c00427{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mc4_c00427{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.mb4_c00427{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m85_c00427{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m9_c00427{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m12_c00427{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mb6_c00427{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m55_c00427{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.mdc_c00427{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.ma8_c00427{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m20_c00427{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m43_c00427{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.mb5_c00427{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mad_c00427{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m66_c00427{transform:matrix(0.414877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414877,0.000000,0.000000,0.250000,0,0);}
.m1b_c00427{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m70_c00427{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m67_c00427{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.meb_c00427{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m63_c00427{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.me3_c00427{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mdb_c00427{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m8d_c00427{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.mb0_c00427{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m17_c00427{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m36_c00427{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.m52_c00427{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m3a_c00427{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m57_c00427{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m7f_c00427{transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);}
.m38_c00427{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m4b_c00427{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m49_c00427{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.mf5_c00427{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.me2_c00427{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m53_c00427{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m1f_c00427{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.mb8_c00427{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mcc_c00427{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m91_c00427{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m87_c00427{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m8c_c00427{transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);}
.m27_c00427{transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);}
.m5b_c00427{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m62_c00427{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m102_c00427{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m6_c00427{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mc2_c00427{transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);}
.m98_c00427{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m9d_c00427{transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);}
.mf1_c00427{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m73_c00427{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m9f_c00427{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.m93_c00427{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.m86_c00427{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m56_c00427{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m5a_c00427{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mfe_c00427{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m60_c00427{transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);}
.m77_c00427{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.me4_c00427{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m22_c00427{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.ma2_c00427{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.mf6_c00427{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m51_c00427{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m1d_c00427{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m64_c00427{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m6d_c00427{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m88_c00427{transform:matrix(0.473098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473098,0.000000,0.000000,0.250000,0,0);}
.mfd_c00427{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m6b_c00427{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m103_c00427{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m61_c00427{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mb2_c00427{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.md3_c00427{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m1a_c00427{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m30_c00427{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m13_c00427{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m101_c00427{transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);}
.m94_c00427{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m78_c00427{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m81_c00427{transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);}
.mbf_c00427{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.me1_c00427{transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);}
.m41_c00427{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mcb_c00427{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m7a_c00427{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m11_c00427{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_c00427{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.ma7_c00427{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m45_c00427{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.mb9_c00427{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m18_c00427{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mf0_c00427{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.md5_c00427{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m3d_c00427{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mf8_c00427{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.md8_c00427{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m33_c00427{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m6c_c00427{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.mc9_c00427{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.ma0_c00427{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m7e_c00427{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m96_c00427{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mc6_c00427{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m7_c00427{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m3c_c00427{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.md9_c00427{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m2c_c00427{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.mae_c00427{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m4f_c00427{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mbc_c00427{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m7d_c00427{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.md0_c00427{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mb7_c00427{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m29_c00427{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.me7_c00427{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m4e_c00427{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m71_c00427{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.mc8_c00427{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.ma6_c00427{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m5_c00427{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.me9_c00427{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.mf4_c00427{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m46_c00427{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m6a_c00427{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m26_c00427{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m8b_c00427{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m5e_c00427{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m25_c00427{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.md_c00427{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m75_c00427{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m4a_c00427{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m34_c00427{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.ma9_c00427{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mdd_c00427{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m14_c00427{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m9e_c00427{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m2_c00427{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.mbe_c00427{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mec_c00427{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m31_c00427{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mf2_c00427{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m21_c00427{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m80_c00427{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.maa_c00427{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m35_c00427{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mda_c00427{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m50_c00427{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m99_c00427{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m39_c00427{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m69_c00427{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mf_c00427{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.maf_c00427{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m48_c00427{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m54_c00427{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m44_c00427{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m9c_c00427{transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);}
.m8_c00427{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m68_c00427{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m92_c00427{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.mf3_c00427{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mde_c00427{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.mea_c00427{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.md1_c00427{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m16_c00427{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.mfa_c00427{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mf7_c00427{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m47_c00427{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m6e_c00427{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m23_c00427{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mef_c00427{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.mba_c00427{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);}
.me8_c00427{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m3b_c00427{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m76_c00427{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m37_c00427{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);}
.m8e_c00427{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m8a_c00427{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mb_c00427{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m10_c00427{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m59_c00427{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.mca_c00427{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.mf9_c00427{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);}
.me5_c00427{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m72_c00427{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m65_c00427{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m97_c00427{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m9b_c00427{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m1_c00427{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.ma5_c00427{transform:matrix(0.648824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648824,0.000000,0.000000,0.250000,0,0);}
.m7b_c00427{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);}
.m28_c00427{transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);}
.m5f_c00427{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.mac_c00427{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m9a_c00427{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mfc_c00427{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m4_c00427{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m90_c00427{transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);}
.m4c_c00427{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.me_c00427{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mc0_c00427{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m2b_c00427{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.m8f_c00427{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m24_c00427{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m5c_c00427{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m1e_c00427{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mff_c00427{transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);}
.m2a_c00427{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m3_c00427{transform:matrix(0.744391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.744391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.744391,0.000000,0.000000,0.250000,0,0);}
.m6f_c00427{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mee_c00427{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);}
.m58_c00427{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.ma4_c00427{transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);}
.ma_c00427{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m89_c00427{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m15_c00427{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mb1_c00427{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.mbb_c00427{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m1c_c00427{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.mab_c00427{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mfb_c00427{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m19_c00427{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,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;}
}
.ws2_c00427{word-spacing:-16.889280px;}
.ws0_c00427{word-spacing:-9.216610px;}
.ws3_c00427{word-spacing:0.000000px;}
.ws1_c00427{word-spacing:5.029079px;}
._0_c00427{width:6.522671px;}
.fc0_c00427{color:transparent;}
.fs3_c00427{font-size:18.720000px;}
.fs1_c00427{font-size:20.400000px;}
.fs2_c00427{font-size:25.500000px;}
.fs4_c00427{font-size:28.920000px;}
.fs5_c00427{font-size:32.340000px;}
.fs0_c00427{font-size:35.700000px;}
.fs6_c00427{font-size:39.120000px;}
.y0_c00427{bottom:0.000000px;}
.ye1_c00427{bottom:247.905000px;}
.ye3_c00427{bottom:248.745000px;}
.ye2_c00427{bottom:250.905000px;}
.ydb_c00427{bottom:267.405000px;}
.ydc_c00427{bottom:268.245000px;}
.yda_c00427{bottom:269.325000px;}
.yde_c00427{bottom:269.745000px;}
.ydf_c00427{bottom:270.405000px;}
.ydd_c00427{bottom:270.630000px;}
.ye0_c00427{bottom:271.905000px;}
.yd9_c00427{bottom:289.050000px;}
.yd8_c00427{bottom:289.245000px;}
.yd5_c00427{bottom:289.905000px;}
.yd6_c00427{bottom:290.130000px;}
.yd7_c00427{bottom:291.405000px;}
.yd3_c00427{bottom:310.905000px;}
.yd4_c00427{bottom:311.970000px;}
.ycf_c00427{bottom:327.825000px;}
.yd0_c00427{bottom:328.245000px;}
.yd2_c00427{bottom:330.405000px;}
.yd1_c00427{bottom:330.630000px;}
.yc8_c00427{bottom:347.745000px;}
.yce_c00427{bottom:347.970000px;}
.ycd_c00427{bottom:348.405000px;}
.ycb_c00427{bottom:349.050000px;}
.yca_c00427{bottom:349.245000px;}
.yc7_c00427{bottom:349.905000px;}
.yc9_c00427{bottom:350.130000px;}
.ycc_c00427{bottom:351.405000px;}
.yc2_c00427{bottom:367.680000px;}
.yc3_c00427{bottom:368.745000px;}
.yc6_c00427{bottom:369.630000px;}
.yc5_c00427{bottom:370.470000px;}
.yc4_c00427{bottom:370.905000px;}
.yc1_c00427{bottom:388.245000px;}
.ybf_c00427{bottom:390.405000px;}
.yc0_c00427{bottom:391.470000px;}
.ybd_c00427{bottom:407.745000px;}
.ybe_c00427{bottom:408.825000px;}
.ybc_c00427{bottom:409.905000px;}
.ybb_c00427{bottom:426.405000px;}
.yb9_c00427{bottom:427.245000px;}
.yb8_c00427{bottom:428.130000px;}
.yba_c00427{bottom:429.405000px;}
.yb6_c00427{bottom:446.745000px;}
.yb5_c00427{bottom:448.245000px;}
.yb4_c00427{bottom:448.905000px;}
.yb3_c00427{bottom:449.130000px;}
.yb7_c00427{bottom:449.970000px;}
.yb1_c00427{bottom:465.405000px;}
.yad_c00427{bottom:467.745000px;}
.yb0_c00427{bottom:468.630000px;}
.yaf_c00427{bottom:468.825000px;}
.yb2_c00427{bottom:469.470000px;}
.yae_c00427{bottom:469.905000px;}
.yaa_c00427{bottom:484.905000px;}
.ya9_c00427{bottom:486.405000px;}
.yab_c00427{bottom:486.825000px;}
.ya7_c00427{bottom:487.245000px;}
.ya8_c00427{bottom:488.325000px;}
.yac_c00427{bottom:489.405000px;}
.ya6_c00427{bottom:506.745000px;}
.ya5_c00427{bottom:507.630000px;}
.ya2_c00427{bottom:508.470000px;}
.ya3_c00427{bottom:508.905000px;}
.ya4_c00427{bottom:509.970000px;}
.y9f_c00427{bottom:525.180000px;}
.y9e_c00427{bottom:526.245000px;}
.ya1_c00427{bottom:527.130000px;}
.y9d_c00427{bottom:527.325000px;}
.ya0_c00427{bottom:528.405000px;}
.y9b_c00427{bottom:544.905000px;}
.y9a_c00427{bottom:545.745000px;}
.y9c_c00427{bottom:547.470000px;}
.y97_c00427{bottom:547.905000px;}
.y99_c00427{bottom:548.130000px;}
.y98_c00427{bottom:548.970000px;}
.y93_c00427{bottom:565.245000px;}
.y95_c00427{bottom:565.470000px;}
.y96_c00427{bottom:566.970000px;}
.y94_c00427{bottom:567.405000px;}
.y92_c00427{bottom:568.470000px;}
.y91_c00427{bottom:584.745000px;}
.y8f_c00427{bottom:603.405000px;}
.y8a_c00427{bottom:605.130000px;}
.y8d_c00427{bottom:605.745000px;}
.y8c_c00427{bottom:606.405000px;}
.y90_c00427{bottom:606.630000px;}
.y8b_c00427{bottom:607.470000px;}
.y8e_c00427{bottom:607.905000px;}
.y89_c00427{bottom:623.745000px;}
.y87_c00427{bottom:625.905000px;}
.y86_c00427{bottom:626.130000px;}
.y88_c00427{bottom:626.970000px;}
.y82_c00427{bottom:642.405000px;}
.y83_c00427{bottom:644.745000px;}
.y80_c00427{bottom:645.405000px;}
.y85_c00427{bottom:645.630000px;}
.y84_c00427{bottom:646.470000px;}
.y81_c00427{bottom:646.905000px;}
.y7e_c00427{bottom:664.245000px;}
.y7f_c00427{bottom:664.905000px;}
.y7b_c00427{bottom:665.970000px;}
.y7c_c00427{bottom:666.405000px;}
.y7d_c00427{bottom:667.470000px;}
.y79_c00427{bottom:682.470000px;}
.y78_c00427{bottom:682.905000px;}
.y75_c00427{bottom:683.745000px;}
.y7a_c00427{bottom:684.630000px;}
.y77_c00427{bottom:685.470000px;}
.y73_c00427{bottom:685.905000px;}
.y76_c00427{bottom:686.130000px;}
.y74_c00427{bottom:686.970000px;}
.y72_c00427{bottom:702.405000px;}
.y6e_c00427{bottom:703.245000px;}
.y71_c00427{bottom:703.470000px;}
.y6f_c00427{bottom:704.970000px;}
.y6c_c00427{bottom:705.405000px;}
.y70_c00427{bottom:705.630000px;}
.y6d_c00427{bottom:706.470000px;}
.y67_c00427{bottom:722.745000px;}
.y6b_c00427{bottom:723.825000px;}
.y66_c00427{bottom:724.470000px;}
.y6a_c00427{bottom:724.905000px;}
.y69_c00427{bottom:725.130000px;}
.y68_c00427{bottom:725.970000px;}
.y63_c00427{bottom:742.245000px;}
.y64_c00427{bottom:743.325000px;}
.y60_c00427{bottom:744.405000px;}
.y65_c00427{bottom:744.630000px;}
.y62_c00427{bottom:745.470000px;}
.y61_c00427{bottom:745.905000px;}
.y5f_c00427{bottom:761.745000px;}
.y5e_c00427{bottom:762.180000px;}
.y5d_c00427{bottom:763.245000px;}
.y5b_c00427{bottom:763.905000px;}
.y5c_c00427{bottom:765.405000px;}
.y5a_c00427{bottom:780.405000px;}
.y58_c00427{bottom:782.745000px;}
.y59_c00427{bottom:783.825000px;}
.y57_c00427{bottom:784.050000px;}
.y56_c00427{bottom:784.905000px;}
.y51_c00427{bottom:802.245000px;}
.y55_c00427{bottom:803.325000px;}
.y54_c00427{bottom:803.970000px;}
.y52_c00427{bottom:804.405000px;}
.y53_c00427{bottom:805.470000px;}
.y4e_c00427{bottom:822.405000px;}
.y50_c00427{bottom:823.905000px;}
.y4f_c00427{bottom:824.970000px;}
.y4d_c00427{bottom:839.745000px;}
.y49_c00427{bottom:841.905000px;}
.y4c_c00427{bottom:842.130000px;}
.y4b_c00427{bottom:842.325000px;}
.y4a_c00427{bottom:843.405000px;}
.y40_c00427{bottom:860.745000px;}
.y41_c00427{bottom:860.970000px;}
.y47_c00427{bottom:861.180000px;}
.y42_c00427{bottom:862.245000px;}
.y48_c00427{bottom:862.470000px;}
.y3f_c00427{bottom:862.905000px;}
.y44_c00427{bottom:863.130000px;}
.y45_c00427{bottom:863.325000px;}
.y46_c00427{bottom:863.970000px;}
.y43_c00427{bottom:864.405000px;}
.y39_c00427{bottom:880.245000px;}
.y38_c00427{bottom:881.325000px;}
.y3d_c00427{bottom:881.745000px;}
.y3e_c00427{bottom:882.405000px;}
.y3b_c00427{bottom:882.630000px;}
.y3a_c00427{bottom:883.470000px;}
.y3c_c00427{bottom:883.905000px;}
.y32_c00427{bottom:898.905000px;}
.y36_c00427{bottom:899.745000px;}
.y35_c00427{bottom:901.245000px;}
.y37_c00427{bottom:901.905000px;}
.y34_c00427{bottom:902.325000px;}
.y31_c00427{bottom:902.970000px;}
.y33_c00427{bottom:903.405000px;}
.y30_c00427{bottom:918.405000px;}
.y2e_c00427{bottom:920.745000px;}
.y2f_c00427{bottom:921.630000px;}
.y2d_c00427{bottom:922.905000px;}
.y2c_c00427{bottom:940.245000px;}
.y28_c00427{bottom:940.905000px;}
.y2a_c00427{bottom:941.970000px;}
.y29_c00427{bottom:942.405000px;}
.y2b_c00427{bottom:943.470000px;}
.y27_c00427{bottom:957.405000px;}
.y24_c00427{bottom:959.745000px;}
.y25_c00427{bottom:959.970000px;}
.y26_c00427{bottom:960.825000px;}
.y22_c00427{bottom:961.905000px;}
.y23_c00427{bottom:962.130000px;}
.y1e_c00427{bottom:979.245000px;}
.y20_c00427{bottom:980.325000px;}
.y1f_c00427{bottom:981.405000px;}
.y21_c00427{bottom:982.470000px;}
.y17_c00427{bottom:998.325000px;}
.y1c_c00427{bottom:998.745000px;}
.y18_c00427{bottom:1000.050000px;}
.y1d_c00427{bottom:1000.245000px;}
.y19_c00427{bottom:1000.905000px;}
.y1a_c00427{bottom:1001.130000px;}
.y1b_c00427{bottom:1002.405000px;}
.y16_c00427{bottom:1018.245000px;}
.y13_c00427{bottom:1019.325000px;}
.y12_c00427{bottom:1020.405000px;}
.y14_c00427{bottom:1020.630000px;}
.y15_c00427{bottom:1021.470000px;}
.y11_c00427{bottom:1037.745000px;}
.ye_c00427{bottom:1038.405000px;}
.yc_c00427{bottom:1039.245000px;}
.y9_c00427{bottom:1039.470000px;}
.ya_c00427{bottom:1039.905000px;}
.y10_c00427{bottom:1040.130000px;}
.yd_c00427{bottom:1040.970000px;}
.yb_c00427{bottom:1041.405000px;}
.yf_c00427{bottom:1042.470000px;}
.y3_c00427{bottom:1055.970000px;}
.y7_c00427{bottom:1058.745000px;}
.y8_c00427{bottom:1059.405000px;}
.y4_c00427{bottom:1059.630000px;}
.y5_c00427{bottom:1060.470000px;}
.y6_c00427{bottom:1060.905000px;}
.y1_c00427{bottom:1097.745000px;}
.y2_c00427{bottom:1099.050000px;}
.h4_c00427{height:23.025234px;}
.h2_c00427{height:25.091602px;}
.h3_c00427{height:31.364502px;}
.h5_c00427{height:35.571035px;}
.h6_c00427{height:39.777568px;}
.h1_c00427{height:43.910303px;}
.h7_c00427{height:48.116836px;}
.h0_c00427{height:1335.000000px;}
.w0_c00427{width:880.500000px;}
.x0_c00427{left:0.000000px;}
.xb5_c00427{left:151.500000px;}
.x1_c00427{left:153.000000px;}
.xe9_c00427{left:154.275000px;}
.x4a_c00427{left:166.500000px;}
.xbd_c00427{left:168.000000px;}
.x54_c00427{left:169.500000px;}
.xd3_c00427{left:171.000000px;}
.x1f_c00427{left:172.920000px;}
.xe8_c00427{left:175.500000px;}
.xfe_c00427{left:177.000000px;}
.x6e_c00427{left:178.080000px;}
.x9c_c00427{left:180.420000px;}
.x4b_c00427{left:181.920000px;}
.x90_c00427{left:189.000000px;}
.xad_c00427{left:192.000000px;}
.x3_c00427{left:193.920000px;}
.xb6_c00427{left:195.000000px;}
.x79_c00427{left:196.080000px;}
.xc2_c00427{left:199.080000px;}
.x20_c00427{left:200.580000px;}
.xbe_c00427{left:202.920000px;}
.x2d_c00427{left:207.420000px;}
.x6f_c00427{left:210.000000px;}
.x10_c00427{left:211.920000px;}
.xae_c00427{left:213.000000px;}
.xb7_c00427{left:214.080000px;}
.xf7_c00427{left:215.355000px;}
.x7a_c00427{left:217.920000px;}
.xcc_c00427{left:219.000000px;}
.xc3_c00427{left:220.920000px;}
.x89_c00427{left:223.500000px;}
.x102_c00427{left:225.000000px;}
.x65_c00427{left:226.500000px;}
.x5b_c00427{left:229.080000px;}
.xf8_c00427{left:231.000000px;}
.x42_c00427{left:232.500000px;}
.x91_c00427{left:235.500000px;}
.xe2_c00427{left:236.775000px;}
.x11_c00427{left:238.500000px;}
.xf1_c00427{left:240.420000px;}
.x10c_c00427{left:243.000000px;}
.x2e_c00427{left:246.000000px;}
.x7b_c00427{left:248.580000px;}
.x5c_c00427{left:250.920000px;}
.x92_c00427{left:252.000000px;}
.x3a_c00427{left:253.920000px;}
.x82_c00427{left:255.000000px;}
.x4c_c00427{left:256.920000px;}
.x9d_c00427{left:258.000000px;}
.x109_c00427{left:259.500000px;}
.x8a_c00427{left:264.000000px;}
.x10e_c00427{left:265.080000px;}
.xcd_c00427{left:267.000000px;}
.x4_c00427{left:268.500000px;}
.x105_c00427{left:270.000000px;}
.x21_c00427{left:271.500000px;}
.x55_c00427{left:274.080000px;}
.x9e_c00427{left:276.000000px;}
.xa3_c00427{left:277.500000px;}
.x43_c00427{left:278.580000px;}
.x5d_c00427{left:281.580000px;}
.xb8_c00427{left:286.920000px;}
.xff_c00427{left:288.000000px;}
.x5_c00427{left:289.920000px;}
.x2f_c00427{left:291.000000px;}
.x103_c00427{left:292.920000px;}
.x22_c00427{left:294.000000px;}
.xf9_c00427{left:296.580000px;}
.xe3_c00427{left:299.580000px;}
.x4d_c00427{left:303.000000px;}
.x9f_c00427{left:304.500000px;}
.xdc_c00427{left:306.420000px;}
.x30_c00427{left:307.920000px;}
.xed_c00427{left:309.000000px;}
.x10a_c00427{left:310.500000px;}
.xbf_c00427{left:311.580000px;}
.xfa_c00427{left:313.500000px;}
.x12_c00427{left:314.580000px;}
.x6_c00427{left:318.420000px;}
.x70_c00427{left:319.500000px;}
.x23_c00427{left:321.855000px;}
.x5e_c00427{left:324.000000px;}
.x44_c00427{left:327.000000px;}
.x93_c00427{left:328.500000px;}
.xc4_c00427{left:330.000000px;}
.x83_c00427{left:331.500000px;}
.xa4_c00427{left:333.000000px;}
.x13_c00427{left:334.080000px;}
.x31_c00427{left:336.420000px;}
.xd8_c00427{left:338.580000px;}
.x94_c00427{left:345.420000px;}
.xea_c00427{left:346.920000px;}
.x7_c00427{left:348.000000px;}
.x66_c00427{left:349.500000px;}
.xb9_c00427{left:351.000000px;}
.x71_c00427{left:354.000000px;}
.x14_c00427{left:355.500000px;}
.xd4_c00427{left:357.000000px;}
.x3b_c00427{left:358.500000px;}
.xa0_c00427{left:359.580000px;}
.xce_c00427{left:361.500000px;}
.x45_c00427{left:362.580000px;}
.x4e_c00427{left:364.920000px;}
.x24_c00427{left:366.000000px;}
.x100_c00427{left:370.920000px;}
.x67_c00427{left:372.000000px;}
.x72_c00427{left:373.500000px;}
.x15_c00427{left:374.580000px;}
.x32_c00427{left:378.000000px;}
.x106_c00427{left:379.920000px;}
.x84_c00427{left:381.000000px;}
.x8b_c00427{left:382.080000px;}
.x25_c00427{left:385.920000px;}
.xd9_c00427{left:387.000000px;}
.xa5_c00427{left:388.500000px;}
.x95_c00427{left:390.420000px;}
.x3c_c00427{left:391.500000px;}
.x16_c00427{left:394.920000px;}
.x46_c00427{left:396.000000px;}
.x68_c00427{left:399.420000px;}
.xd5_c00427{left:401.580000px;}
.x73_c00427{left:403.500000px;}
.x5f_c00427{left:404.580000px;}
.xa6_c00427{left:406.920000px;}
.x2_c00427{left:408.000000px;}
.xc5_c00427{left:412.500000px;}
.x8_c00427{left:415.080000px;}
.x17_c00427{left:419.580000px;}
.x56_c00427{left:422.775000px;}
.xc6_c00427{left:424.920000px;}
.x4f_c00427{left:427.500000px;}
.xfb_c00427{left:429.000000px;}
.x9_c00427{left:435.420000px;}
.x60_c00427{left:439.920000px;}
.x50_c00427{left:442.500000px;}
.x3d_c00427{left:444.000000px;}
.xa7_c00427{left:445.920000px;}
.xaf_c00427{left:447.000000px;}
.x8c_c00427{left:448.500000px;}
.x85_c00427{left:450.420000px;}
.x7c_c00427{left:452.580000px;}
.xd6_c00427{left:454.920000px;}
.x3e_c00427{left:460.920000px;}
.xf2_c00427{left:462.000000px;}
.xa_c00427{left:463.500000px;}
.x18_c00427{left:465.420000px;}
.x26_c00427{left:466.920000px;}
.x33_c00427{left:468.420000px;}
.xba_c00427{left:469.500000px;}
.x74_c00427{left:471.420000px;}
.x7d_c00427{left:473.580000px;}
.x69_c00427{left:475.500000px;}
.xcf_c00427{left:476.580000px;}
.xdd_c00427{left:478.080000px;}
.x104_c00427{left:480.000000px;}
.xa8_c00427{left:484.920000px;}
.x86_c00427{left:487.500000px;}
.xf5_c00427{left:490.080000px;}
.x96_c00427{left:492.000000px;}
.x6a_c00427{left:493.500000px;}
.x101_c00427{left:495.000000px;}
.xde_c00427{left:496.500000px;}
.x47_c00427{left:497.580000px;}
.xfc_c00427{left:499.920000px;}
.x57_c00427{left:501.000000px;}
.x51_c00427{left:504.000000px;}
.x75_c00427{left:505.500000px;}
.xc7_c00427{left:506.580000px;}
.xb0_c00427{left:508.500000px;}
.x97_c00427{left:510.000000px;}
.x61_c00427{left:511.500000px;}
.x27_c00427{left:513.000000px;}
.x3f_c00427{left:516.420000px;}
.x19_c00427{left:517.500000px;}
.x6b_c00427{left:519.000000px;}
.x10f_c00427{left:521.580000px;}
.xd0_c00427{left:523.500000px;}
.xc8_c00427{left:525.000000px;}
.x34_c00427{left:526.080000px;}
.xb1_c00427{left:529.500000px;}
.xda_c00427{left:532.920000px;}
.xa1_c00427{left:534.000000px;}
.xf6_c00427{left:535.500000px;}
.xe4_c00427{left:538.500000px;}
.x98_c00427{left:540.000000px;}
.xd1_c00427{left:541.080000px;}
.xc0_c00427{left:543.000000px;}
.x87_c00427{left:544.080000px;}
.x10d_c00427{left:545.580000px;}
.x58_c00427{left:547.080000px;}
.xb2_c00427{left:549.000000px;}
.x76_c00427{left:553.500000px;}
.xb_c00427{left:555.000000px;}
.xee_c00427{left:556.500000px;}
.xa9_c00427{left:557.580000px;}
.x1a_c00427{left:559.500000px;}
.x40_c00427{left:561.420000px;}
.x52_c00427{left:562.500000px;}
.x35_c00427{left:564.000000px;}
.xe5_c00427{left:565.080000px;}
.x7e_c00427{left:567.000000px;}
.x6c_c00427{left:568.080000px;}
.xef_c00427{left:570.000000px;}
.x48_c00427{left:573.000000px;}
.x1b_c00427{left:577.500000px;}
.xdb_c00427{left:578.580000px;}
.x53_c00427{left:580.500000px;}
.x36_c00427{left:583.275000px;}
.x7f_c00427{left:586.500000px;}
.xc_c00427{left:589.500000px;}
.x28_c00427{left:590.580000px;}
.x62_c00427{left:592.500000px;}
.x1c_c00427{left:594.420000px;}
.x99_c00427{left:595.500000px;}
.x110_c00427{left:597.000000px;}
.xc9_c00427{left:598.920000px;}
.xd2_c00427{left:601.920000px;}
.xaa_c00427{left:603.000000px;}
.xdf_c00427{left:604.500000px;}
.xfd_c00427{left:607.500000px;}
.x29_c00427{left:609.420000px;}
.xd_c00427{left:618.000000px;}
.x88_c00427{left:619.920000px;}
.x59_c00427{left:621.420000px;}
.x41_c00427{left:624.000000px;}
.xa2_c00427{left:625.500000px;}
.x37_c00427{left:629.580000px;}
.x77_c00427{left:631.080000px;}
.x1d_c00427{left:633.420000px;}
.xe6_c00427{left:634.500000px;}
.xca_c00427{left:636.420000px;}
.xbb_c00427{left:637.500000px;}
.x6d_c00427{left:639.000000px;}
.xb3_c00427{left:640.920000px;}
.xe0_c00427{left:642.000000px;}
.xeb_c00427{left:643.500000px;}
.x10b_c00427{left:645.420000px;}
.x107_c00427{left:646.500000px;}
.x49_c00427{left:649.080000px;}
.x8d_c00427{left:650.580000px;}
.x9a_c00427{left:652.500000px;}
.x2a_c00427{left:658.500000px;}
.xc1_c00427{left:659.580000px;}
.x38_c00427{left:661.920000px;}
.xcb_c00427{left:663.000000px;}
.x80_c00427{left:664.500000px;}
.xd7_c00427{left:665.580000px;}
.xe7_c00427{left:667.500000px;}
.xab_c00427{left:670.500000px;}
.xe_c00427{left:671.580000px;}
.xf3_c00427{left:673.920000px;}
.x63_c00427{left:675.420000px;}
.xe1_c00427{left:676.920000px;}
.x2b_c00427{left:678.420000px;}
.xbc_c00427{left:679.500000px;}
.x8e_c00427{left:680.580000px;}
.x81_c00427{left:682.920000px;}
.x5a_c00427{left:685.080000px;}
.xac_c00427{left:687.420000px;}
.x39_c00427{left:688.500000px;}
.x1e_c00427{left:696.420000px;}
.x8f_c00427{left:697.500000px;}
.x9b_c00427{left:699.420000px;}
.xb4_c00427{left:700.500000px;}
.x78_c00427{left:703.080000px;}
.x2c_c00427{left:705.000000px;}
.x108_c00427{left:708.420000px;}
.xec_c00427{left:712.500000px;}
.xf4_c00427{left:715.500000px;}
.x64_c00427{left:718.500000px;}
.xf_c00427{left:720.000000px;}
.xf0_c00427{left:723.000000px;}
@media print{
.v0_c00427{vertical-align:0.000000pt;}
.ls0_c00427{letter-spacing:0.000000pt;}
.ws2_c00427{word-spacing:-15.012693pt;}
.ws0_c00427{word-spacing:-8.192542pt;}
.ws3_c00427{word-spacing:0.000000pt;}
.ws1_c00427{word-spacing:4.470292pt;}
._0_c00427{width:5.797930pt;}
.fs3_c00427{font-size:16.640000pt;}
.fs1_c00427{font-size:18.133333pt;}
.fs2_c00427{font-size:22.666667pt;}
.fs4_c00427{font-size:25.706667pt;}
.fs5_c00427{font-size:28.746667pt;}
.fs0_c00427{font-size:31.733333pt;}
.fs6_c00427{font-size:34.773333pt;}
.y0_c00427{bottom:0.000000pt;}
.ye1_c00427{bottom:220.360000pt;}
.ye3_c00427{bottom:221.106667pt;}
.ye2_c00427{bottom:223.026667pt;}
.ydb_c00427{bottom:237.693333pt;}
.ydc_c00427{bottom:238.440000pt;}
.yda_c00427{bottom:239.400000pt;}
.yde_c00427{bottom:239.773333pt;}
.ydf_c00427{bottom:240.360000pt;}
.ydd_c00427{bottom:240.560000pt;}
.ye0_c00427{bottom:241.693333pt;}
.yd9_c00427{bottom:256.933333pt;}
.yd8_c00427{bottom:257.106667pt;}
.yd5_c00427{bottom:257.693333pt;}
.yd6_c00427{bottom:257.893333pt;}
.yd7_c00427{bottom:259.026667pt;}
.yd3_c00427{bottom:276.360000pt;}
.yd4_c00427{bottom:277.306667pt;}
.ycf_c00427{bottom:291.400000pt;}
.yd0_c00427{bottom:291.773333pt;}
.yd2_c00427{bottom:293.693333pt;}
.yd1_c00427{bottom:293.893333pt;}
.yc8_c00427{bottom:309.106667pt;}
.yce_c00427{bottom:309.306667pt;}
.ycd_c00427{bottom:309.693333pt;}
.ycb_c00427{bottom:310.266667pt;}
.yca_c00427{bottom:310.440000pt;}
.yc7_c00427{bottom:311.026667pt;}
.yc9_c00427{bottom:311.226667pt;}
.ycc_c00427{bottom:312.360000pt;}
.yc2_c00427{bottom:326.826667pt;}
.yc3_c00427{bottom:327.773333pt;}
.yc6_c00427{bottom:328.560000pt;}
.yc5_c00427{bottom:329.306667pt;}
.yc4_c00427{bottom:329.693333pt;}
.yc1_c00427{bottom:345.106667pt;}
.ybf_c00427{bottom:347.026667pt;}
.yc0_c00427{bottom:347.973333pt;}
.ybd_c00427{bottom:362.440000pt;}
.ybe_c00427{bottom:363.400000pt;}
.ybc_c00427{bottom:364.360000pt;}
.ybb_c00427{bottom:379.026667pt;}
.yb9_c00427{bottom:379.773333pt;}
.yb8_c00427{bottom:380.560000pt;}
.yba_c00427{bottom:381.693333pt;}
.yb6_c00427{bottom:397.106667pt;}
.yb5_c00427{bottom:398.440000pt;}
.yb4_c00427{bottom:399.026667pt;}
.yb3_c00427{bottom:399.226667pt;}
.yb7_c00427{bottom:399.973333pt;}
.yb1_c00427{bottom:413.693333pt;}
.yad_c00427{bottom:415.773333pt;}
.yb0_c00427{bottom:416.560000pt;}
.yaf_c00427{bottom:416.733333pt;}
.yb2_c00427{bottom:417.306667pt;}
.yae_c00427{bottom:417.693333pt;}
.yaa_c00427{bottom:431.026667pt;}
.ya9_c00427{bottom:432.360000pt;}
.yab_c00427{bottom:432.733333pt;}
.ya7_c00427{bottom:433.106667pt;}
.ya8_c00427{bottom:434.066667pt;}
.yac_c00427{bottom:435.026667pt;}
.ya6_c00427{bottom:450.440000pt;}
.ya5_c00427{bottom:451.226667pt;}
.ya2_c00427{bottom:451.973333pt;}
.ya3_c00427{bottom:452.360000pt;}
.ya4_c00427{bottom:453.306667pt;}
.y9f_c00427{bottom:466.826667pt;}
.y9e_c00427{bottom:467.773333pt;}
.ya1_c00427{bottom:468.560000pt;}
.y9d_c00427{bottom:468.733333pt;}
.ya0_c00427{bottom:469.693333pt;}
.y9b_c00427{bottom:484.360000pt;}
.y9a_c00427{bottom:485.106667pt;}
.y9c_c00427{bottom:486.640000pt;}
.y97_c00427{bottom:487.026667pt;}
.y99_c00427{bottom:487.226667pt;}
.y98_c00427{bottom:487.973333pt;}
.y93_c00427{bottom:502.440000pt;}
.y95_c00427{bottom:502.640000pt;}
.y96_c00427{bottom:503.973333pt;}
.y94_c00427{bottom:504.360000pt;}
.y92_c00427{bottom:505.306667pt;}
.y91_c00427{bottom:519.773333pt;}
.y8f_c00427{bottom:536.360000pt;}
.y8a_c00427{bottom:537.893333pt;}
.y8d_c00427{bottom:538.440000pt;}
.y8c_c00427{bottom:539.026667pt;}
.y90_c00427{bottom:539.226667pt;}
.y8b_c00427{bottom:539.973333pt;}
.y8e_c00427{bottom:540.360000pt;}
.y89_c00427{bottom:554.440000pt;}
.y87_c00427{bottom:556.360000pt;}
.y86_c00427{bottom:556.560000pt;}
.y88_c00427{bottom:557.306667pt;}
.y82_c00427{bottom:571.026667pt;}
.y83_c00427{bottom:573.106667pt;}
.y80_c00427{bottom:573.693333pt;}
.y85_c00427{bottom:573.893333pt;}
.y84_c00427{bottom:574.640000pt;}
.y81_c00427{bottom:575.026667pt;}
.y7e_c00427{bottom:590.440000pt;}
.y7f_c00427{bottom:591.026667pt;}
.y7b_c00427{bottom:591.973333pt;}
.y7c_c00427{bottom:592.360000pt;}
.y7d_c00427{bottom:593.306667pt;}
.y79_c00427{bottom:606.640000pt;}
.y78_c00427{bottom:607.026667pt;}
.y75_c00427{bottom:607.773333pt;}
.y7a_c00427{bottom:608.560000pt;}
.y77_c00427{bottom:609.306667pt;}
.y73_c00427{bottom:609.693333pt;}
.y76_c00427{bottom:609.893333pt;}
.y74_c00427{bottom:610.640000pt;}
.y72_c00427{bottom:624.360000pt;}
.y6e_c00427{bottom:625.106667pt;}
.y71_c00427{bottom:625.306667pt;}
.y6f_c00427{bottom:626.640000pt;}
.y6c_c00427{bottom:627.026667pt;}
.y70_c00427{bottom:627.226667pt;}
.y6d_c00427{bottom:627.973333pt;}
.y67_c00427{bottom:642.440000pt;}
.y6b_c00427{bottom:643.400000pt;}
.y66_c00427{bottom:643.973333pt;}
.y6a_c00427{bottom:644.360000pt;}
.y69_c00427{bottom:644.560000pt;}
.y68_c00427{bottom:645.306667pt;}
.y63_c00427{bottom:659.773333pt;}
.y64_c00427{bottom:660.733333pt;}
.y60_c00427{bottom:661.693333pt;}
.y65_c00427{bottom:661.893333pt;}
.y62_c00427{bottom:662.640000pt;}
.y61_c00427{bottom:663.026667pt;}
.y5f_c00427{bottom:677.106667pt;}
.y5e_c00427{bottom:677.493333pt;}
.y5d_c00427{bottom:678.440000pt;}
.y5b_c00427{bottom:679.026667pt;}
.y5c_c00427{bottom:680.360000pt;}
.y5a_c00427{bottom:693.693333pt;}
.y58_c00427{bottom:695.773333pt;}
.y59_c00427{bottom:696.733333pt;}
.y57_c00427{bottom:696.933333pt;}
.y56_c00427{bottom:697.693333pt;}
.y51_c00427{bottom:713.106667pt;}
.y55_c00427{bottom:714.066667pt;}
.y54_c00427{bottom:714.640000pt;}
.y52_c00427{bottom:715.026667pt;}
.y53_c00427{bottom:715.973333pt;}
.y4e_c00427{bottom:731.026667pt;}
.y50_c00427{bottom:732.360000pt;}
.y4f_c00427{bottom:733.306667pt;}
.y4d_c00427{bottom:746.440000pt;}
.y49_c00427{bottom:748.360000pt;}
.y4c_c00427{bottom:748.560000pt;}
.y4b_c00427{bottom:748.733333pt;}
.y4a_c00427{bottom:749.693333pt;}
.y40_c00427{bottom:765.106667pt;}
.y41_c00427{bottom:765.306667pt;}
.y47_c00427{bottom:765.493333pt;}
.y42_c00427{bottom:766.440000pt;}
.y48_c00427{bottom:766.640000pt;}
.y3f_c00427{bottom:767.026667pt;}
.y44_c00427{bottom:767.226667pt;}
.y45_c00427{bottom:767.400000pt;}
.y46_c00427{bottom:767.973333pt;}
.y43_c00427{bottom:768.360000pt;}
.y39_c00427{bottom:782.440000pt;}
.y38_c00427{bottom:783.400000pt;}
.y3d_c00427{bottom:783.773333pt;}
.y3e_c00427{bottom:784.360000pt;}
.y3b_c00427{bottom:784.560000pt;}
.y3a_c00427{bottom:785.306667pt;}
.y3c_c00427{bottom:785.693333pt;}
.y32_c00427{bottom:799.026667pt;}
.y36_c00427{bottom:799.773333pt;}
.y35_c00427{bottom:801.106667pt;}
.y37_c00427{bottom:801.693333pt;}
.y34_c00427{bottom:802.066667pt;}
.y31_c00427{bottom:802.640000pt;}
.y33_c00427{bottom:803.026667pt;}
.y30_c00427{bottom:816.360000pt;}
.y2e_c00427{bottom:818.440000pt;}
.y2f_c00427{bottom:819.226667pt;}
.y2d_c00427{bottom:820.360000pt;}
.y2c_c00427{bottom:835.773333pt;}
.y28_c00427{bottom:836.360000pt;}
.y2a_c00427{bottom:837.306667pt;}
.y29_c00427{bottom:837.693333pt;}
.y2b_c00427{bottom:838.640000pt;}
.y27_c00427{bottom:851.026667pt;}
.y24_c00427{bottom:853.106667pt;}
.y25_c00427{bottom:853.306667pt;}
.y26_c00427{bottom:854.066667pt;}
.y22_c00427{bottom:855.026667pt;}
.y23_c00427{bottom:855.226667pt;}
.y1e_c00427{bottom:870.440000pt;}
.y20_c00427{bottom:871.400000pt;}
.y1f_c00427{bottom:872.360000pt;}
.y21_c00427{bottom:873.306667pt;}
.y17_c00427{bottom:887.400000pt;}
.y1c_c00427{bottom:887.773333pt;}
.y18_c00427{bottom:888.933333pt;}
.y1d_c00427{bottom:889.106667pt;}
.y19_c00427{bottom:889.693333pt;}
.y1a_c00427{bottom:889.893333pt;}
.y1b_c00427{bottom:891.026667pt;}
.y16_c00427{bottom:905.106667pt;}
.y13_c00427{bottom:906.066667pt;}
.y12_c00427{bottom:907.026667pt;}
.y14_c00427{bottom:907.226667pt;}
.y15_c00427{bottom:907.973333pt;}
.y11_c00427{bottom:922.440000pt;}
.ye_c00427{bottom:923.026667pt;}
.yc_c00427{bottom:923.773333pt;}
.y9_c00427{bottom:923.973333pt;}
.ya_c00427{bottom:924.360000pt;}
.y10_c00427{bottom:924.560000pt;}
.yd_c00427{bottom:925.306667pt;}
.yb_c00427{bottom:925.693333pt;}
.yf_c00427{bottom:926.640000pt;}
.y3_c00427{bottom:938.640000pt;}
.y7_c00427{bottom:941.106667pt;}
.y8_c00427{bottom:941.693333pt;}
.y4_c00427{bottom:941.893333pt;}
.y5_c00427{bottom:942.640000pt;}
.y6_c00427{bottom:943.026667pt;}
.y1_c00427{bottom:975.773333pt;}
.y2_c00427{bottom:976.933333pt;}
.h4_c00427{height:20.466875pt;}
.h2_c00427{height:22.303646pt;}
.h3_c00427{height:27.879557pt;}
.h5_c00427{height:31.618698pt;}
.h6_c00427{height:35.357839pt;}
.h1_c00427{height:39.031380pt;}
.h7_c00427{height:42.770521pt;}
.h0_c00427{height:1186.666667pt;}
.w0_c00427{width:782.666667pt;}
.x0_c00427{left:0.000000pt;}
.xb5_c00427{left:134.666667pt;}
.x1_c00427{left:136.000000pt;}
.xe9_c00427{left:137.133333pt;}
.x4a_c00427{left:148.000000pt;}
.xbd_c00427{left:149.333333pt;}
.x54_c00427{left:150.666667pt;}
.xd3_c00427{left:152.000000pt;}
.x1f_c00427{left:153.706667pt;}
.xe8_c00427{left:156.000000pt;}
.xfe_c00427{left:157.333333pt;}
.x6e_c00427{left:158.293333pt;}
.x9c_c00427{left:160.373333pt;}
.x4b_c00427{left:161.706667pt;}
.x90_c00427{left:168.000000pt;}
.xad_c00427{left:170.666667pt;}
.x3_c00427{left:172.373333pt;}
.xb6_c00427{left:173.333333pt;}
.x79_c00427{left:174.293333pt;}
.xc2_c00427{left:176.960000pt;}
.x20_c00427{left:178.293333pt;}
.xbe_c00427{left:180.373333pt;}
.x2d_c00427{left:184.373333pt;}
.x6f_c00427{left:186.666667pt;}
.x10_c00427{left:188.373333pt;}
.xae_c00427{left:189.333333pt;}
.xb7_c00427{left:190.293333pt;}
.xf7_c00427{left:191.426667pt;}
.x7a_c00427{left:193.706667pt;}
.xcc_c00427{left:194.666667pt;}
.xc3_c00427{left:196.373333pt;}
.x89_c00427{left:198.666667pt;}
.x102_c00427{left:200.000000pt;}
.x65_c00427{left:201.333333pt;}
.x5b_c00427{left:203.626667pt;}
.xf8_c00427{left:205.333333pt;}
.x42_c00427{left:206.666667pt;}
.x91_c00427{left:209.333333pt;}
.xe2_c00427{left:210.466667pt;}
.x11_c00427{left:212.000000pt;}
.xf1_c00427{left:213.706667pt;}
.x10c_c00427{left:216.000000pt;}
.x2e_c00427{left:218.666667pt;}
.x7b_c00427{left:220.960000pt;}
.x5c_c00427{left:223.040000pt;}
.x92_c00427{left:224.000000pt;}
.x3a_c00427{left:225.706667pt;}
.x82_c00427{left:226.666667pt;}
.x4c_c00427{left:228.373333pt;}
.x9d_c00427{left:229.333333pt;}
.x109_c00427{left:230.666667pt;}
.x8a_c00427{left:234.666667pt;}
.x10e_c00427{left:235.626667pt;}
.xcd_c00427{left:237.333333pt;}
.x4_c00427{left:238.666667pt;}
.x105_c00427{left:240.000000pt;}
.x21_c00427{left:241.333333pt;}
.x55_c00427{left:243.626667pt;}
.x9e_c00427{left:245.333333pt;}
.xa3_c00427{left:246.666667pt;}
.x43_c00427{left:247.626667pt;}
.x5d_c00427{left:250.293333pt;}
.xb8_c00427{left:255.040000pt;}
.xff_c00427{left:256.000000pt;}
.x5_c00427{left:257.706667pt;}
.x2f_c00427{left:258.666667pt;}
.x103_c00427{left:260.373333pt;}
.x22_c00427{left:261.333333pt;}
.xf9_c00427{left:263.626667pt;}
.xe3_c00427{left:266.293333pt;}
.x4d_c00427{left:269.333333pt;}
.x9f_c00427{left:270.666667pt;}
.xdc_c00427{left:272.373333pt;}
.x30_c00427{left:273.706667pt;}
.xed_c00427{left:274.666667pt;}
.x10a_c00427{left:276.000000pt;}
.xbf_c00427{left:276.960000pt;}
.xfa_c00427{left:278.666667pt;}
.x12_c00427{left:279.626667pt;}
.x6_c00427{left:283.040000pt;}
.x70_c00427{left:284.000000pt;}
.x23_c00427{left:286.093333pt;}
.x5e_c00427{left:288.000000pt;}
.x44_c00427{left:290.666667pt;}
.x93_c00427{left:292.000000pt;}
.xc4_c00427{left:293.333333pt;}
.x83_c00427{left:294.666667pt;}
.xa4_c00427{left:296.000000pt;}
.x13_c00427{left:296.960000pt;}
.x31_c00427{left:299.040000pt;}
.xd8_c00427{left:300.960000pt;}
.x94_c00427{left:307.040000pt;}
.xea_c00427{left:308.373333pt;}
.x7_c00427{left:309.333333pt;}
.x66_c00427{left:310.666667pt;}
.xb9_c00427{left:312.000000pt;}
.x71_c00427{left:314.666667pt;}
.x14_c00427{left:316.000000pt;}
.xd4_c00427{left:317.333333pt;}
.x3b_c00427{left:318.666667pt;}
.xa0_c00427{left:319.626667pt;}
.xce_c00427{left:321.333333pt;}
.x45_c00427{left:322.293333pt;}
.x4e_c00427{left:324.373333pt;}
.x24_c00427{left:325.333333pt;}
.x100_c00427{left:329.706667pt;}
.x67_c00427{left:330.666667pt;}
.x72_c00427{left:332.000000pt;}
.x15_c00427{left:332.960000pt;}
.x32_c00427{left:336.000000pt;}
.x106_c00427{left:337.706667pt;}
.x84_c00427{left:338.666667pt;}
.x8b_c00427{left:339.626667pt;}
.x25_c00427{left:343.040000pt;}
.xd9_c00427{left:344.000000pt;}
.xa5_c00427{left:345.333333pt;}
.x95_c00427{left:347.040000pt;}
.x3c_c00427{left:348.000000pt;}
.x16_c00427{left:351.040000pt;}
.x46_c00427{left:352.000000pt;}
.x68_c00427{left:355.040000pt;}
.xd5_c00427{left:356.960000pt;}
.x73_c00427{left:358.666667pt;}
.x5f_c00427{left:359.626667pt;}
.xa6_c00427{left:361.706667pt;}
.x2_c00427{left:362.666667pt;}
.xc5_c00427{left:366.666667pt;}
.x8_c00427{left:368.960000pt;}
.x17_c00427{left:372.960000pt;}
.x56_c00427{left:375.800000pt;}
.xc6_c00427{left:377.706667pt;}
.x4f_c00427{left:380.000000pt;}
.xfb_c00427{left:381.333333pt;}
.x9_c00427{left:387.040000pt;}
.x60_c00427{left:391.040000pt;}
.x50_c00427{left:393.333333pt;}
.x3d_c00427{left:394.666667pt;}
.xa7_c00427{left:396.373333pt;}
.xaf_c00427{left:397.333333pt;}
.x8c_c00427{left:398.666667pt;}
.x85_c00427{left:400.373333pt;}
.x7c_c00427{left:402.293333pt;}
.xd6_c00427{left:404.373333pt;}
.x3e_c00427{left:409.706667pt;}
.xf2_c00427{left:410.666667pt;}
.xa_c00427{left:412.000000pt;}
.x18_c00427{left:413.706667pt;}
.x26_c00427{left:415.040000pt;}
.x33_c00427{left:416.373333pt;}
.xba_c00427{left:417.333333pt;}
.x74_c00427{left:419.040000pt;}
.x7d_c00427{left:420.960000pt;}
.x69_c00427{left:422.666667pt;}
.xcf_c00427{left:423.626667pt;}
.xdd_c00427{left:424.960000pt;}
.x104_c00427{left:426.666667pt;}
.xa8_c00427{left:431.040000pt;}
.x86_c00427{left:433.333333pt;}
.xf5_c00427{left:435.626667pt;}
.x96_c00427{left:437.333333pt;}
.x6a_c00427{left:438.666667pt;}
.x101_c00427{left:440.000000pt;}
.xde_c00427{left:441.333333pt;}
.x47_c00427{left:442.293333pt;}
.xfc_c00427{left:444.373333pt;}
.x57_c00427{left:445.333333pt;}
.x51_c00427{left:448.000000pt;}
.x75_c00427{left:449.333333pt;}
.xc7_c00427{left:450.293333pt;}
.xb0_c00427{left:452.000000pt;}
.x97_c00427{left:453.333333pt;}
.x61_c00427{left:454.666667pt;}
.x27_c00427{left:456.000000pt;}
.x3f_c00427{left:459.040000pt;}
.x19_c00427{left:460.000000pt;}
.x6b_c00427{left:461.333333pt;}
.x10f_c00427{left:463.626667pt;}
.xd0_c00427{left:465.333333pt;}
.xc8_c00427{left:466.666667pt;}
.x34_c00427{left:467.626667pt;}
.xb1_c00427{left:470.666667pt;}
.xda_c00427{left:473.706667pt;}
.xa1_c00427{left:474.666667pt;}
.xf6_c00427{left:476.000000pt;}
.xe4_c00427{left:478.666667pt;}
.x98_c00427{left:480.000000pt;}
.xd1_c00427{left:480.960000pt;}
.xc0_c00427{left:482.666667pt;}
.x87_c00427{left:483.626667pt;}
.x10d_c00427{left:484.960000pt;}
.x58_c00427{left:486.293333pt;}
.xb2_c00427{left:488.000000pt;}
.x76_c00427{left:492.000000pt;}
.xb_c00427{left:493.333333pt;}
.xee_c00427{left:494.666667pt;}
.xa9_c00427{left:495.626667pt;}
.x1a_c00427{left:497.333333pt;}
.x40_c00427{left:499.040000pt;}
.x52_c00427{left:500.000000pt;}
.x35_c00427{left:501.333333pt;}
.xe5_c00427{left:502.293333pt;}
.x7e_c00427{left:504.000000pt;}
.x6c_c00427{left:504.960000pt;}
.xef_c00427{left:506.666667pt;}
.x48_c00427{left:509.333333pt;}
.x1b_c00427{left:513.333333pt;}
.xdb_c00427{left:514.293333pt;}
.x53_c00427{left:516.000000pt;}
.x36_c00427{left:518.466667pt;}
.x7f_c00427{left:521.333333pt;}
.xc_c00427{left:524.000000pt;}
.x28_c00427{left:524.960000pt;}
.x62_c00427{left:526.666667pt;}
.x1c_c00427{left:528.373333pt;}
.x99_c00427{left:529.333333pt;}
.x110_c00427{left:530.666667pt;}
.xc9_c00427{left:532.373333pt;}
.xd2_c00427{left:535.040000pt;}
.xaa_c00427{left:536.000000pt;}
.xdf_c00427{left:537.333333pt;}
.xfd_c00427{left:540.000000pt;}
.x29_c00427{left:541.706667pt;}
.xd_c00427{left:549.333333pt;}
.x88_c00427{left:551.040000pt;}
.x59_c00427{left:552.373333pt;}
.x41_c00427{left:554.666667pt;}
.xa2_c00427{left:556.000000pt;}
.x37_c00427{left:559.626667pt;}
.x77_c00427{left:560.960000pt;}
.x1d_c00427{left:563.040000pt;}
.xe6_c00427{left:564.000000pt;}
.xca_c00427{left:565.706667pt;}
.xbb_c00427{left:566.666667pt;}
.x6d_c00427{left:568.000000pt;}
.xb3_c00427{left:569.706667pt;}
.xe0_c00427{left:570.666667pt;}
.xeb_c00427{left:572.000000pt;}
.x10b_c00427{left:573.706667pt;}
.x107_c00427{left:574.666667pt;}
.x49_c00427{left:576.960000pt;}
.x8d_c00427{left:578.293333pt;}
.x9a_c00427{left:580.000000pt;}
.x2a_c00427{left:585.333333pt;}
.xc1_c00427{left:586.293333pt;}
.x38_c00427{left:588.373333pt;}
.xcb_c00427{left:589.333333pt;}
.x80_c00427{left:590.666667pt;}
.xd7_c00427{left:591.626667pt;}
.xe7_c00427{left:593.333333pt;}
.xab_c00427{left:596.000000pt;}
.xe_c00427{left:596.960000pt;}
.xf3_c00427{left:599.040000pt;}
.x63_c00427{left:600.373333pt;}
.xe1_c00427{left:601.706667pt;}
.x2b_c00427{left:603.040000pt;}
.xbc_c00427{left:604.000000pt;}
.x8e_c00427{left:604.960000pt;}
.x81_c00427{left:607.040000pt;}
.x5a_c00427{left:608.960000pt;}
.xac_c00427{left:611.040000pt;}
.x39_c00427{left:612.000000pt;}
.x1e_c00427{left:619.040000pt;}
.x8f_c00427{left:620.000000pt;}
.x9b_c00427{left:621.706667pt;}
.xb4_c00427{left:622.666667pt;}
.x78_c00427{left:624.960000pt;}
.x2c_c00427{left:626.666667pt;}
.x108_c00427{left:629.706667pt;}
.xec_c00427{left:633.333333pt;}
.xf4_c00427{left:636.000000pt;}
.x64_c00427{left:638.666667pt;}
.xf_c00427{left:640.000000pt;}
.xf0_c00427{left:642.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_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_55c973225917f4a532598627.woff2')format("woff");}.ff1_c00428{font-family:ff1_c00428;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m49_c00428{transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);}
.mcb_c00428{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.mc3_c00428{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m83_c00428{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_c00428{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m43_c00428{transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);}
.m32_c00428{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m6_c00428{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m111_c00428{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.md3_c00428{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m50_c00428{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mc5_c00428{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00428{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m84_c00428{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.mbf_c00428{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.meb_c00428{transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);}
.md8_c00428{transform:matrix(0.380334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380334,0.000000,0.000000,0.250000,0,0);}
.m57_c00428{transform:matrix(0.384874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384874,0.000000,0.000000,0.250000,0,0);}
.m10d_c00428{transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);}
.mbc_c00428{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m93_c00428{transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);}
.m5f_c00428{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.mbe_c00428{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m5_c00428{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.md6_c00428{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m55_c00428{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m68_c00428{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.ma5_c00428{transform:matrix(0.398006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398006,0.000000,0.000000,0.250000,0,0);}
.m5e_c00428{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m3d_c00428{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);}
.mfa_c00428{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.m8c_c00428{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m114_c00428{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.ma0_c00428{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m105_c00428{transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);}
.m9_c00428{transform:matrix(0.403525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403525,0.000000,0.000000,0.250000,0,0);}
.m94_c00428{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mc2_c00428{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m3f_c00428{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m2d_c00428{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.mae_c00428{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m37_c00428{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m16_c00428{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m4f_c00428{transform:matrix(0.409509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409509,0.000000,0.000000,0.250000,0,0);}
.m95_c00428{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m99_c00428{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m11_c00428{transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);}
.m2e_c00428{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m89_c00428{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m10e_c00428{transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);}
.m64_c00428{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.mb3_c00428{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mfd_c00428{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m9e_c00428{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m29_c00428{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.md9_c00428{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m45_c00428{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m10c_c00428{transform:matrix(0.416976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416976,0.000000,0.000000,0.250000,0,0);}
.m102_c00428{transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);}
.mb9_c00428{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.me4_c00428{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m3a_c00428{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m96_c00428{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m10a_c00428{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.m27_c00428{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mff_c00428{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.mf8_c00428{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m9c_c00428{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.m2b_c00428{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m46_c00428{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m100_c00428{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m106_c00428{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.mc9_c00428{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mb2_c00428{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m42_c00428{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m7_c00428{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m22_c00428{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m39_c00428{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m17_c00428{transform:matrix(0.436722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436722,0.000000,0.000000,0.250000,0,0);}
.m13_c00428{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m10b_c00428{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m6a_c00428{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.mb7_c00428{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m19_c00428{transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);}
.m5c_c00428{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m14_c00428{transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);}
.m21_c00428{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m24_c00428{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m85_c00428{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.me0_c00428{transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);}
.m40_c00428{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.mcd_c00428{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m5a_c00428{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.mfb_c00428{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.m2f_c00428{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.mc_c00428{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mbb_c00428{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m109_c00428{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m97_c00428{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.me7_c00428{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m25_c00428{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.m6c_c00428{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.m1a_c00428{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.mf7_c00428{transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);}
.m3_c00428{transform:matrix(0.468908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468908,0.000000,0.000000,0.250000,0,0);}
.mb5_c00428{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m77_c00428{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.mcf_c00428{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m30_c00428{transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474026,0.000000,0.000000,0.250000,0,0);}
.mf_c00428{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m110_c00428{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.mf5_c00428{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m3b_c00428{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.mf3_c00428{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m8_c00428{transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);}
.me_c00428{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.ma2_c00428{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m66_c00428{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.me5_c00428{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.mf0_c00428{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m65_c00428{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.ma_c00428{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m91_c00428{transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);}
.md1_c00428{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m1_c00428{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m1e_c00428{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m56_c00428{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.me9_c00428{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m69_c00428{transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);}
.m31_c00428{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.mb_c00428{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);}
.m3c_c00428{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.ma4_c00428{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m6e_c00428{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.mac_c00428{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m107_c00428{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.md4_c00428{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m20_c00428{transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);}
.m75_c00428{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.md5_c00428{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.mb4_c00428{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m18_c00428{transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);}
.mdb_c00428{transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);}
.m26_c00428{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m5d_c00428{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.me1_c00428{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);}
.m2_c00428{transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);}
.mdf_c00428{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m4d_c00428{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m9f_c00428{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mbd_c00428{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mf9_c00428{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.m9d_c00428{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.me8_c00428{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);}
.mb8_c00428{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m79_c00428{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mda_c00428{transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);}
.m72_c00428{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mc1_c00428{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m52_c00428{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mc0_c00428{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mca_c00428{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.mc4_c00428{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mba_c00428{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.me3_c00428{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m76_c00428{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m73_c00428{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.md2_c00428{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m90_c00428{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m92_c00428{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m59_c00428{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.mf4_c00428{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.mc7_c00428{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m67_c00428{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m47_c00428{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m6f_c00428{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mf1_c00428{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.mcc_c00428{transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);}
.m7b_c00428{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.m12_c00428{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m4c_c00428{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mce_c00428{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m28_c00428{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.ma3_c00428{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m8a_c00428{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mdc_c00428{transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);}
.m36_c00428{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mea_c00428{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.mb1_c00428{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m6b_c00428{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m7c_c00428{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.ma8_c00428{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mc8_c00428{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m63_c00428{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m51_c00428{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m74_c00428{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m80_c00428{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m8f_c00428{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.m4e_c00428{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m53_c00428{transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);}
.m54_c00428{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m41_c00428{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m8d_c00428{transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);}
.m103_c00428{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m86_c00428{transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);}
.m78_c00428{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m8b_c00428{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m113_c00428{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_c00428{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m3e_c00428{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m1d_c00428{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m6d_c00428{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m88_c00428{transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588693,0.000000,0.000000,0.250000,0,0);}
.m33_c00428{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.mfc_c00428{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m7e_c00428{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m8e_c00428{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m34_c00428{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.ma9_c00428{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);}
.m98_c00428{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m9a_c00428{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.maf_c00428{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.md0_c00428{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m71_c00428{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);}
.m60_c00428{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mf2_c00428{transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);}
.m4_c00428{transform:matrix(0.614627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614627,0.000000,0.000000,0.250000,0,0);}
.m7a_c00428{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.maa_c00428{transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);}
.m61_c00428{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.mee_c00428{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m1c_c00428{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m62_c00428{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m108_c00428{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m0_c00428{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);}
.m7d_c00428{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mfe_c00428{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m9b_c00428{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.m1b_c00428{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.mad_c00428{transform:matrix(0.634706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634706,0.000000,0.000000,0.250000,0,0);}
.m2c_c00428{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.me6_c00428{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.ma7_c00428{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m104_c00428{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.ma6_c00428{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.md_c00428{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.m112_c00428{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m82_c00428{transform:matrix(0.646471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.646471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.646471,0.000000,0.000000,0.250000,0,0);}
.med_c00428{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);}
.m10f_c00428{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.mde_c00428{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m7f_c00428{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m58_c00428{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m2a_c00428{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m101_c00428{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.mec_c00428{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.mef_c00428{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m35_c00428{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m1f_c00428{transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);}
.me2_c00428{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mc6_c00428{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mdd_c00428{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_c00428{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m5b_c00428{transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);}
.m81_c00428{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m48_c00428{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m87_c00428{transform:matrix(0.762821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.762821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.762821,0.000000,0.000000,0.250000,0,0);}
.mab_c00428{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m15_c00428{transform:matrix(0.781618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.781618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.781618,0.000000,0.000000,0.250000,0,0);}
.mb6_c00428{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m70_c00428{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.md7_c00428{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mf6_c00428{transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);}
.m10_c00428{transform:matrix(1.436123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.436123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.436123,0.000000,0.000000,0.250000,0,0);}
.m4a_c00428{transform:matrix(3.978070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.978070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.978070,0.000000,0.000000,0.250000,0,0);}
.m23_c00428{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m38_c00428{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-6.878933px;}
.ws3_c00428{word-spacing:-5.871000px;}
.ws1_c00428{word-spacing:-5.518200px;}
.ws4_c00428{word-spacing:0.000000px;}
.ws2_c00428{word-spacing:5.595600px;}
.fc0_c00428{color:transparent;}
.fs7_c00428{font-size:3.420000px;}
.fs6_c00428{font-size:13.620000px;}
.fs2_c00428{font-size:18.720000px;}
.fs0_c00428{font-size:20.400000px;}
.fs5_c00428{font-size:25.500000px;}
.fs1_c00428{font-size:28.920000px;}
.fs4_c00428{font-size:32.340000px;}
.fs3_c00428{font-size:35.700000px;}
.fs8_c00428{font-size:39.120000px;}
.y0_c00428{bottom:0.000000px;}
.y3_c00428{bottom:228.630000px;}
.ydb_c00428{bottom:249.825000px;}
.ydc_c00428{bottom:250.905000px;}
.ydd_c00428{bottom:253.050000px;}
.yd5_c00428{bottom:264.825000px;}
.yd8_c00428{bottom:265.905000px;}
.yda_c00428{bottom:266.130000px;}
.yd7_c00428{bottom:266.325000px;}
.yd6_c00428{bottom:266.970000px;}
.yd9_c00428{bottom:267.630000px;}
.yd4_c00428{bottom:268.050000px;}
.yd3_c00428{bottom:279.825000px;}
.yd1_c00428{bottom:280.905000px;}
.yd0_c00428{bottom:281.325000px;}
.ycc_c00428{bottom:281.970000px;}
.yce_c00428{bottom:282.195000px;}
.ycd_c00428{bottom:282.405000px;}
.ycf_c00428{bottom:283.470000px;}
.yd2_c00428{bottom:284.550000px;}
.yc6_c00428{bottom:293.970000px;}
.yc7_c00428{bottom:294.825000px;}
.ycb_c00428{bottom:295.905000px;}
.yc8_c00428{bottom:296.970000px;}
.yca_c00428{bottom:297.630000px;}
.yc9_c00428{bottom:298.050000px;}
.yc3_c00428{bottom:310.905000px;}
.yc5_c00428{bottom:311.130000px;}
.yc4_c00428{bottom:311.970000px;}
.yc2_c00428{bottom:313.050000px;}
.yc1_c00428{bottom:325.470000px;}
.yc0_c00428{bottom:325.905000px;}
.ybe_c00428{bottom:327.195000px;}
.ybf_c00428{bottom:328.050000px;}
.yb9_c00428{bottom:339.825000px;}
.yb7_c00428{bottom:340.050000px;}
.ybd_c00428{bottom:340.905000px;}
.ybb_c00428{bottom:341.130000px;}
.ybc_c00428{bottom:341.550000px;}
.yba_c00428{bottom:341.970000px;}
.yb8_c00428{bottom:343.050000px;}
.yb6_c00428{bottom:355.905000px;}
.yb5_c00428{bottom:368.325000px;}
.yb3_c00428{bottom:369.405000px;}
.yb1_c00428{bottom:369.825000px;}
.yae_c00428{bottom:370.050000px;}
.yaf_c00428{bottom:370.470000px;}
.yb2_c00428{bottom:370.905000px;}
.yb4_c00428{bottom:371.130000px;}
.yb0_c00428{bottom:371.550000px;}
.yad_c00428{bottom:383.325000px;}
.yac_c00428{bottom:383.970000px;}
.yaa_c00428{bottom:385.695000px;}
.ya9_c00428{bottom:385.905000px;}
.ya8_c00428{bottom:386.550000px;}
.yab_c00428{bottom:386.970000px;}
.ya7_c00428{bottom:398.325000px;}
.ya3_c00428{bottom:398.550000px;}
.ya4_c00428{bottom:399.405000px;}
.ya6_c00428{bottom:400.470000px;}
.ya5_c00428{bottom:401.550000px;}
.y9f_c00428{bottom:414.405000px;}
.ya1_c00428{bottom:415.470000px;}
.ya0_c00428{bottom:415.695000px;}
.ya2_c00428{bottom:416.550000px;}
.y9d_c00428{bottom:427.905000px;}
.y99_c00428{bottom:428.325000px;}
.y9e_c00428{bottom:428.970000px;}
.y9c_c00428{bottom:430.050000px;}
.y9a_c00428{bottom:430.470000px;}
.y98_c00428{bottom:430.695000px;}
.y9b_c00428{bottom:431.550000px;}
.y97_c00428{bottom:442.470000px;}
.y96_c00428{bottom:443.325000px;}
.y94_c00428{bottom:444.630000px;}
.y95_c00428{bottom:445.470000px;}
.y92_c00428{bottom:457.905000px;}
.y93_c00428{bottom:458.970000px;}
.y90_c00428{bottom:459.405000px;}
.y8e_c00428{bottom:459.630000px;}
.y91_c00428{bottom:460.050000px;}
.y8f_c00428{bottom:460.470000px;}
.y8c_c00428{bottom:500.745000px;}
.y8d_c00428{bottom:501.630000px;}
.y8b_c00428{bottom:502.905000px;}
.y89_c00428{bottom:519.180000px;}
.y87_c00428{bottom:520.245000px;}
.y8a_c00428{bottom:520.905000px;}
.y88_c00428{bottom:522.405000px;}
.y86_c00428{bottom:537.405000px;}
.y85_c00428{bottom:538.245000px;}
.y81_c00428{bottom:539.745000px;}
.y84_c00428{bottom:540.405000px;}
.y82_c00428{bottom:540.630000px;}
.y83_c00428{bottom:541.905000px;}
.y80_c00428{bottom:542.970000px;}
.y7f_c00428{bottom:558.825000px;}
.y7e_c00428{bottom:561.405000px;}
.y78_c00428{bottom:578.745000px;}
.y7d_c00428{bottom:579.630000px;}
.y7c_c00428{bottom:579.825000px;}
.y79_c00428{bottom:580.905000px;}
.y7b_c00428{bottom:581.130000px;}
.y7a_c00428{bottom:581.970000px;}
.y77_c00428{bottom:600.405000px;}
.y75_c00428{bottom:600.630000px;}
.y76_c00428{bottom:601.470000px;}
.y74_c00428{bottom:616.680000px;}
.y73_c00428{bottom:617.745000px;}
.y70_c00428{bottom:619.905000px;}
.y71_c00428{bottom:621.405000px;}
.y72_c00428{bottom:621.420000px;}
.y6b_c00428{bottom:636.405000px;}
.y6e_c00428{bottom:638.745000px;}
.y6f_c00428{bottom:638.970000px;}
.y6c_c00428{bottom:639.630000px;}
.y69_c00428{bottom:639.825000px;}
.y6d_c00428{bottom:640.470000px;}
.y6a_c00428{bottom:640.905000px;}
.y65_c00428{bottom:656.970000px;}
.y68_c00428{bottom:657.825000px;}
.y66_c00428{bottom:658.245000px;}
.y64_c00428{bottom:659.325000px;}
.y67_c00428{bottom:659.970000px;}
.y62_c00428{bottom:660.405000px;}
.y63_c00428{bottom:661.470000px;}
.y61_c00428{bottom:677.745000px;}
.y5f_c00428{bottom:678.825000px;}
.y60_c00428{bottom:679.905000px;}
.y5c_c00428{bottom:697.245000px;}
.y5e_c00428{bottom:698.970000px;}
.y5d_c00428{bottom:699.405000px;}
.y59_c00428{bottom:716.745000px;}
.y58_c00428{bottom:718.905000px;}
.y5b_c00428{bottom:719.130000px;}
.y5a_c00428{bottom:719.970000px;}
.y54_c00428{bottom:735.405000px;}
.y55_c00428{bottom:736.245000px;}
.y56_c00428{bottom:738.405000px;}
.y57_c00428{bottom:738.630000px;}
.y52_c00428{bottom:739.470000px;}
.y53_c00428{bottom:739.905000px;}
.y4e_c00428{bottom:755.325000px;}
.y50_c00428{bottom:757.905000px;}
.y51_c00428{bottom:758.970000px;}
.y4f_c00428{bottom:759.405000px;}
.y48_c00428{bottom:774.405000px;}
.y4d_c00428{bottom:775.470000px;}
.y4a_c00428{bottom:776.550000px;}
.y4c_c00428{bottom:777.405000px;}
.y49_c00428{bottom:777.630000px;}
.y46_c00428{bottom:777.825000px;}
.y4b_c00428{bottom:778.470000px;}
.y47_c00428{bottom:778.905000px;}
.y42_c00428{bottom:796.245000px;}
.y45_c00428{bottom:796.905000px;}
.y44_c00428{bottom:797.325000px;}
.y41_c00428{bottom:798.405000px;}
.y43_c00428{bottom:799.470000px;}
.y40_c00428{bottom:814.470000px;}
.y3c_c00428{bottom:815.745000px;}
.y3e_c00428{bottom:816.825000px;}
.y3d_c00428{bottom:817.905000px;}
.y3f_c00428{bottom:818.970000px;}
.y37_c00428{bottom:835.245000px;}
.y3b_c00428{bottom:835.905000px;}
.y39_c00428{bottom:836.130000px;}
.y3a_c00428{bottom:836.325000px;}
.y38_c00428{bottom:837.405000px;}
.y35_c00428{bottom:853.680000px;}
.y36_c00428{bottom:854.745000px;}
.y33_c00428{bottom:856.905000px;}
.y34_c00428{bottom:858.420000px;}
.y30_c00428{bottom:874.245000px;}
.y2e_c00428{bottom:876.405000px;}
.y2f_c00428{bottom:876.630000px;}
.y32_c00428{bottom:877.470000px;}
.y31_c00428{bottom:877.920000px;}
.y29_c00428{bottom:892.905000px;}
.y28_c00428{bottom:893.745000px;}
.y2a_c00428{bottom:895.245000px;}
.y2d_c00428{bottom:895.905000px;}
.y2c_c00428{bottom:896.130000px;}
.y2b_c00428{bottom:897.405000px;}
.y26_c00428{bottom:913.245000px;}
.y25_c00428{bottom:913.905000px;}
.y22_c00428{bottom:914.745000px;}
.y27_c00428{bottom:915.630000px;}
.y24_c00428{bottom:915.825000px;}
.y23_c00428{bottom:916.920000px;}
.y1e_c00428{bottom:934.245000px;}
.y20_c00428{bottom:935.130000px;}
.y1d_c00428{bottom:935.325000px;}
.y1f_c00428{bottom:935.970000px;}
.y21_c00428{bottom:936.405000px;}
.y19_c00428{bottom:953.745000px;}
.y1b_c00428{bottom:954.825000px;}
.y18_c00428{bottom:955.470000px;}
.y1c_c00428{bottom:955.905000px;}
.y1a_c00428{bottom:956.970000px;}
.y14_c00428{bottom:973.245000px;}
.y16_c00428{bottom:974.325000px;}
.y17_c00428{bottom:975.405000px;}
.y15_c00428{bottom:975.420000px;}
.y13_c00428{bottom:998.970000px;}
.y10_c00428{bottom:1000.905000px;}
.y11_c00428{bottom:1001.970000px;}
.y12_c00428{bottom:1003.050000px;}
.yf_c00428{bottom:1019.325000px;}
.yd_c00428{bottom:1020.405000px;}
.ye_c00428{bottom:1022.550000px;}
.y7_c00428{bottom:1033.470000px;}
.yc_c00428{bottom:1033.905000px;}
.y6_c00428{bottom:1034.325000px;}
.ya_c00428{bottom:1034.550000px;}
.y8_c00428{bottom:1035.405000px;}
.yb_c00428{bottom:1036.695000px;}
.y9_c00428{bottom:1037.550000px;}
.y4_c00428{bottom:1061.745000px;}
.y5_c00428{bottom:1063.905000px;}
.y2_c00428{bottom:1099.905000px;}
.y1_c00428{bottom:1102.050000px;}
.h8_c00428{height:4.206533px;}
.h7_c00428{height:16.752334px;}
.h3_c00428{height:23.025234px;}
.h1_c00428{height:25.091602px;}
.h6_c00428{height:31.364502px;}
.h2_c00428{height:35.571035px;}
.h5_c00428{height:39.777568px;}
.h4_c00428{height:43.910303px;}
.h9_c00428{height:48.116836px;}
.h0_c00428{height:1335.000000px;}
.w0_c00428{width:880.500000px;}
.x0_c00428{left:0.000000px;}
.xd2_c00428{left:146.580000px;}
.x8f_c00428{left:148.080000px;}
.x2b_c00428{left:150.000000px;}
.x8_c00428{left:151.920000px;}
.xe5_c00428{left:159.000000px;}
.xc6_c00428{left:160.500000px;}
.xc8_c00428{left:162.000000px;}
.xb2_c00428{left:163.500000px;}
.x1a_c00428{left:165.000000px;}
.x24_c00428{left:166.920000px;}
.xa2_c00428{left:168.000000px;}
.x2c_c00428{left:169.500000px;}
.xf0_c00428{left:175.920000px;}
.xc2_c00428{left:178.500000px;}
.xc9_c00428{left:180.000000px;}
.x62_c00428{left:181.080000px;}
.xb8_c00428{left:193.275000px;}
.x90_c00428{left:196.080000px;}
.x96_c00428{left:199.080000px;}
.x3d_c00428{left:201.000000px;}
.xd3_c00428{left:204.000000px;}
.x9_c00428{left:208.500000px;}
.x77_c00428{left:209.580000px;}
.xc7_c00428{left:211.080000px;}
.x89_c00428{left:214.500000px;}
.x32_c00428{left:216.000000px;}
.xda_c00428{left:217.080000px;}
.x7c_c00428{left:219.000000px;}
.x53_c00428{left:221.580000px;}
.x3e_c00428{left:223.080000px;}
.x68_c00428{left:226.080000px;}
.xb9_c00428{left:229.500000px;}
.xe6_c00428{left:232.080000px;}
.xa_c00428{left:233.580000px;}
.x8a_c00428{left:236.580000px;}
.x1b_c00428{left:239.580000px;}
.x33_c00428{left:244.500000px;}
.x44_c00428{left:247.500000px;}
.xf1_c00428{left:249.420000px;}
.xed_c00428{left:250.500000px;}
.xa9_c00428{left:253.500000px;}
.x63_c00428{left:254.580000px;}
.x35_c00428{left:256.500000px;}
.x4b_c00428{left:259.500000px;}
.xba_c00428{left:262.920000px;}
.x2d_c00428{left:265.500000px;}
.x5b_c00428{left:267.000000px;}
.x25_c00428{left:268.500000px;}
.x82_c00428{left:270.000000px;}
.xaa_c00428{left:271.500000px;}
.x54_c00428{left:272.580000px;}
.x97_c00428{left:274.500000px;}
.xe7_c00428{left:276.000000px;}
.x36_c00428{left:277.500000px;}
.x4c_c00428{left:279.000000px;}
.x1c_c00428{left:282.000000px;}
.xdb_c00428{left:283.500000px;}
.xab_c00428{left:288.000000px;}
.x26_c00428{left:289.500000px;}
.x4_c00428{left:290.580000px;}
.xdf_c00428{left:291.645000px;}
.xc3_c00428{left:293.580000px;}
.x2e_c00428{left:295.500000px;}
.x45_c00428{left:298.500000px;}
.x46_c00428{left:300.000000px;}
.x3f_c00428{left:301.920000px;}
.x69_c00428{left:303.000000px;}
.xb_c00428{left:305.580000px;}
.xbb_c00428{left:307.920000px;}
.xee_c00428{left:309.000000px;}
.xca_c00428{left:310.080000px;}
.xea_c00428{left:313.500000px;}
.x83_c00428{left:316.500000px;}
.x8b_c00428{left:318.000000px;}
.x47_c00428{left:319.080000px;}
.x72_c00428{left:322.500000px;}
.x64_c00428{left:324.000000px;}
.xc_c00428{left:327.855000px;}
.xb3_c00428{left:329.580000px;}
.x1d_c00428{left:331.500000px;}
.x55_c00428{left:333.420000px;}
.x91_c00428{left:334.500000px;}
.xa3_c00428{left:337.080000px;}
.x9c_c00428{left:339.000000px;}
.x34_c00428{left:340.920000px;}
.x5c_c00428{left:342.000000px;}
.x40_c00428{left:343.500000px;}
.x37_c00428{left:344.775000px;}
.x48_c00428{left:346.500000px;}
.xd_c00428{left:349.920000px;}
.x6a_c00428{left:351.420000px;}
.x98_c00428{left:352.920000px;}
.xb1_c00428{left:355.920000px;}
.xa4_c00428{left:357.000000px;}
.x9d_c00428{left:360.000000px;}
.xd4_c00428{left:361.920000px;}
.x92_c00428{left:363.000000px;}
.xcb_c00428{left:364.500000px;}
.x1e_c00428{left:366.000000px;}
.x7d_c00428{left:367.080000px;}
.x4d_c00428{left:373.080000px;}
.x5_c00428{left:374.580000px;}
.x56_c00428{left:376.500000px;}
.xdc_c00428{left:379.920000px;}
.x2f_c00428{left:381.000000px;}
.xe_c00428{left:385.500000px;}
.xbc_c00428{left:387.000000px;}
.xd5_c00428{left:388.500000px;}
.x6b_c00428{left:390.000000px;}
.x5d_c00428{left:391.080000px;}
.x9e_c00428{left:393.000000px;}
.x27_c00428{left:395.580000px;}
.xb4_c00428{left:397.920000px;}
.xd6_c00428{left:400.500000px;}
.x1f_c00428{left:402.000000px;}
.xbd_c00428{left:404.580000px;}
.x1_c00428{left:406.500000px;}
.x41_c00428{left:407.580000px;}
.x49_c00428{left:410.145000px;}
.x99_c00428{left:412.500000px;}
.xc1_c00428{left:414.000000px;}
.x7e_c00428{left:416.580000px;}
.xac_c00428{left:418.920000px;}
.xf_c00428{left:420.420000px;}
.x38_c00428{left:421.500000px;}
.xe4_c00428{left:422.580000px;}
.x6c_c00428{left:426.000000px;}
.x9a_c00428{left:429.000000px;}
.xa5_c00428{left:430.500000px;}
.xbe_c00428{left:433.500000px;}
.x20_c00428{left:436.500000px;}
.x18_c00428{left:439.500000px;}
.xcc_c00428{left:441.000000px;}
.xdd_c00428{left:444.420000px;}
.x4a_c00428{left:447.000000px;}
.x84_c00428{left:448.500000px;}
.x42_c00428{left:449.580000px;}
.x6d_c00428{left:453.000000px;}
.x19_c00428{left:455.580000px;}
.x10_c00428{left:457.080000px;}
.x4e_c00428{left:459.000000px;}
.xa6_c00428{left:461.580000px;}
.x21_c00428{left:466.080000px;}
.xde_c00428{left:471.000000px;}
.x7f_c00428{left:475.920000px;}
.x11_c00428{left:478.080000px;}
.x43_c00428{left:480.420000px;}
.xd7_c00428{left:481.920000px;}
.xad_c00428{left:484.500000px;}
.x5e_c00428{left:486.420000px;}
.x85_c00428{left:487.500000px;}
.x9b_c00428{left:489.420000px;}
.x6e_c00428{left:490.500000px;}
.x6_c00428{left:493.080000px;}
.x73_c00428{left:496.500000px;}
.x78_c00428{left:498.000000px;}
.x8c_c00428{left:499.920000px;}
.x9f_c00428{left:501.000000px;}
.x12_c00428{left:502.920000px;}
.xe8_c00428{left:504.000000px;}
.xc4_c00428{left:505.080000px;}
.x4f_c00428{left:507.420000px;}
.x6f_c00428{left:511.080000px;}
.xb5_c00428{left:513.000000px;}
.x80_c00428{left:516.000000px;}
.x39_c00428{left:517.275000px;}
.x79_c00428{left:519.420000px;}
.x22_c00428{left:522.000000px;}
.x86_c00428{left:523.920000px;}
.x13_c00428{left:525.420000px;}
.xd8_c00428{left:526.500000px;}
.x57_c00428{left:528.420000px;}
.xcd_c00428{left:531.420000px;}
.x28_c00428{left:534.000000px;}
.x14_c00428{left:536.580000px;}
.xe9_c00428{left:538.500000px;}
.xb6_c00428{left:541.500000px;}
.xa7_c00428{left:544.500000px;}
.xe0_c00428{left:547.500000px;}
.x5f_c00428{left:549.000000px;}
.x7_c00428{left:553.275000px;}
.x70_c00428{left:556.080000px;}
.x23_c00428{left:557.580000px;}
.x29_c00428{left:559.500000px;}
.xae_c00428{left:564.000000px;}
.xeb_c00428{left:565.080000px;}
.x8d_c00428{left:569.580000px;}
.x58_c00428{left:571.080000px;}
.x30_c00428{left:573.000000px;}
.x74_c00428{left:574.080000px;}
.x60_c00428{left:576.000000px;}
.x65_c00428{left:577.080000px;}
.xe1_c00428{left:579.420000px;}
.xce_c00428{left:583.920000px;}
.xef_c00428{left:588.420000px;}
.x59_c00428{left:590.580000px;}
.xd9_c00428{left:592.500000px;}
.x66_c00428{left:597.000000px;}
.x71_c00428{left:598.500000px;}
.xbf_c00428{left:604.080000px;}
.x75_c00428{left:609.000000px;}
.xcf_c00428{left:610.080000px;}
.x87_c00428{left:614.580000px;}
.x93_c00428{left:616.500000px;}
.x15_c00428{left:617.580000px;}
.x3a_c00428{left:620.580000px;}
.x81_c00428{left:622.920000px;}
.xd0_c00428{left:625.500000px;}
.x50_c00428{left:626.580000px;}
.x8e_c00428{left:629.580000px;}
.xaf_c00428{left:631.500000px;}
.x76_c00428{left:633.000000px;}
.x94_c00428{left:634.500000px;}
.xa0_c00428{left:637.500000px;}
.x16_c00428{left:639.855000px;}
.x7a_c00428{left:646.080000px;}
.xec_c00428{left:648.645000px;}
.x51_c00428{left:649.920000px;}
.x2a_c00428{left:652.080000px;}
.x5a_c00428{left:658.500000px;}
.x88_c00428{left:659.580000px;}
.x17_c00428{left:663.000000px;}
.x31_c00428{left:664.080000px;}
.xe2_c00428{left:666.000000px;}
.x7b_c00428{left:667.500000px;}
.xc5_c00428{left:674.580000px;}
.x95_c00428{left:676.920000px;}
.xb0_c00428{left:678.000000px;}
.xd1_c00428{left:679.500000px;}
.x52_c00428{left:681.000000px;}
.xa8_c00428{left:682.500000px;}
.x3b_c00428{left:685.920000px;}
.x61_c00428{left:687.000000px;}
.xa1_c00428{left:691.500000px;}
.xc0_c00428{left:693.000000px;}
.xb7_c00428{left:695.580000px;}
.x67_c00428{left:700.080000px;}
.xe3_c00428{left:703.080000px;}
.x2_c00428{left:704.580000px;}
.x3_c00428{left:714.000000px;}
.x3c_c00428{left:720.420000px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.ls0_c00428{letter-spacing:0.000000pt;}
.ws0_c00428{word-spacing:-6.114607pt;}
.ws3_c00428{word-spacing:-5.218667pt;}
.ws1_c00428{word-spacing:-4.905067pt;}
.ws4_c00428{word-spacing:0.000000pt;}
.ws2_c00428{word-spacing:4.973867pt;}
.fs7_c00428{font-size:3.040000pt;}
.fs6_c00428{font-size:12.106667pt;}
.fs2_c00428{font-size:16.640000pt;}
.fs0_c00428{font-size:18.133333pt;}
.fs5_c00428{font-size:22.666667pt;}
.fs1_c00428{font-size:25.706667pt;}
.fs4_c00428{font-size:28.746667pt;}
.fs3_c00428{font-size:31.733333pt;}
.fs8_c00428{font-size:34.773333pt;}
.y0_c00428{bottom:0.000000pt;}
.y3_c00428{bottom:203.226667pt;}
.ydb_c00428{bottom:222.066667pt;}
.ydc_c00428{bottom:223.026667pt;}
.ydd_c00428{bottom:224.933333pt;}
.yd5_c00428{bottom:235.400000pt;}
.yd8_c00428{bottom:236.360000pt;}
.yda_c00428{bottom:236.560000pt;}
.yd7_c00428{bottom:236.733333pt;}
.yd6_c00428{bottom:237.306667pt;}
.yd9_c00428{bottom:237.893333pt;}
.yd4_c00428{bottom:238.266667pt;}
.yd3_c00428{bottom:248.733333pt;}
.yd1_c00428{bottom:249.693333pt;}
.yd0_c00428{bottom:250.066667pt;}
.ycc_c00428{bottom:250.640000pt;}
.yce_c00428{bottom:250.840000pt;}
.ycd_c00428{bottom:251.026667pt;}
.ycf_c00428{bottom:251.973333pt;}
.yd2_c00428{bottom:252.933333pt;}
.yc6_c00428{bottom:261.306667pt;}
.yc7_c00428{bottom:262.066667pt;}
.ycb_c00428{bottom:263.026667pt;}
.yc8_c00428{bottom:263.973333pt;}
.yca_c00428{bottom:264.560000pt;}
.yc9_c00428{bottom:264.933333pt;}
.yc3_c00428{bottom:276.360000pt;}
.yc5_c00428{bottom:276.560000pt;}
.yc4_c00428{bottom:277.306667pt;}
.yc2_c00428{bottom:278.266667pt;}
.yc1_c00428{bottom:289.306667pt;}
.yc0_c00428{bottom:289.693333pt;}
.ybe_c00428{bottom:290.840000pt;}
.ybf_c00428{bottom:291.600000pt;}
.yb9_c00428{bottom:302.066667pt;}
.yb7_c00428{bottom:302.266667pt;}
.ybd_c00428{bottom:303.026667pt;}
.ybb_c00428{bottom:303.226667pt;}
.ybc_c00428{bottom:303.600000pt;}
.yba_c00428{bottom:303.973333pt;}
.yb8_c00428{bottom:304.933333pt;}
.yb6_c00428{bottom:316.360000pt;}
.yb5_c00428{bottom:327.400000pt;}
.yb3_c00428{bottom:328.360000pt;}
.yb1_c00428{bottom:328.733333pt;}
.yae_c00428{bottom:328.933333pt;}
.yaf_c00428{bottom:329.306667pt;}
.yb2_c00428{bottom:329.693333pt;}
.yb4_c00428{bottom:329.893333pt;}
.yb0_c00428{bottom:330.266667pt;}
.yad_c00428{bottom:340.733333pt;}
.yac_c00428{bottom:341.306667pt;}
.yaa_c00428{bottom:342.840000pt;}
.ya9_c00428{bottom:343.026667pt;}
.ya8_c00428{bottom:343.600000pt;}
.yab_c00428{bottom:343.973333pt;}
.ya7_c00428{bottom:354.066667pt;}
.ya3_c00428{bottom:354.266667pt;}
.ya4_c00428{bottom:355.026667pt;}
.ya6_c00428{bottom:355.973333pt;}
.ya5_c00428{bottom:356.933333pt;}
.y9f_c00428{bottom:368.360000pt;}
.ya1_c00428{bottom:369.306667pt;}
.ya0_c00428{bottom:369.506667pt;}
.ya2_c00428{bottom:370.266667pt;}
.y9d_c00428{bottom:380.360000pt;}
.y99_c00428{bottom:380.733333pt;}
.y9e_c00428{bottom:381.306667pt;}
.y9c_c00428{bottom:382.266667pt;}
.y9a_c00428{bottom:382.640000pt;}
.y98_c00428{bottom:382.840000pt;}
.y9b_c00428{bottom:383.600000pt;}
.y97_c00428{bottom:393.306667pt;}
.y96_c00428{bottom:394.066667pt;}
.y94_c00428{bottom:395.226667pt;}
.y95_c00428{bottom:395.973333pt;}
.y92_c00428{bottom:407.026667pt;}
.y93_c00428{bottom:407.973333pt;}
.y90_c00428{bottom:408.360000pt;}
.y8e_c00428{bottom:408.560000pt;}
.y91_c00428{bottom:408.933333pt;}
.y8f_c00428{bottom:409.306667pt;}
.y8c_c00428{bottom:445.106667pt;}
.y8d_c00428{bottom:445.893333pt;}
.y8b_c00428{bottom:447.026667pt;}
.y89_c00428{bottom:461.493333pt;}
.y87_c00428{bottom:462.440000pt;}
.y8a_c00428{bottom:463.026667pt;}
.y88_c00428{bottom:464.360000pt;}
.y86_c00428{bottom:477.693333pt;}
.y85_c00428{bottom:478.440000pt;}
.y81_c00428{bottom:479.773333pt;}
.y84_c00428{bottom:480.360000pt;}
.y82_c00428{bottom:480.560000pt;}
.y83_c00428{bottom:481.693333pt;}
.y80_c00428{bottom:482.640000pt;}
.y7f_c00428{bottom:496.733333pt;}
.y7e_c00428{bottom:499.026667pt;}
.y78_c00428{bottom:514.440000pt;}
.y7d_c00428{bottom:515.226667pt;}
.y7c_c00428{bottom:515.400000pt;}
.y79_c00428{bottom:516.360000pt;}
.y7b_c00428{bottom:516.560000pt;}
.y7a_c00428{bottom:517.306667pt;}
.y77_c00428{bottom:533.693333pt;}
.y75_c00428{bottom:533.893333pt;}
.y76_c00428{bottom:534.640000pt;}
.y74_c00428{bottom:548.160000pt;}
.y73_c00428{bottom:549.106667pt;}
.y70_c00428{bottom:551.026667pt;}
.y71_c00428{bottom:552.360000pt;}
.y72_c00428{bottom:552.373333pt;}
.y6b_c00428{bottom:565.693333pt;}
.y6e_c00428{bottom:567.773333pt;}
.y6f_c00428{bottom:567.973333pt;}
.y6c_c00428{bottom:568.560000pt;}
.y69_c00428{bottom:568.733333pt;}
.y6d_c00428{bottom:569.306667pt;}
.y6a_c00428{bottom:569.693333pt;}
.y65_c00428{bottom:583.973333pt;}
.y68_c00428{bottom:584.733333pt;}
.y66_c00428{bottom:585.106667pt;}
.y64_c00428{bottom:586.066667pt;}
.y67_c00428{bottom:586.640000pt;}
.y62_c00428{bottom:587.026667pt;}
.y63_c00428{bottom:587.973333pt;}
.y61_c00428{bottom:602.440000pt;}
.y5f_c00428{bottom:603.400000pt;}
.y60_c00428{bottom:604.360000pt;}
.y5c_c00428{bottom:619.773333pt;}
.y5e_c00428{bottom:621.306667pt;}
.y5d_c00428{bottom:621.693333pt;}
.y59_c00428{bottom:637.106667pt;}
.y58_c00428{bottom:639.026667pt;}
.y5b_c00428{bottom:639.226667pt;}
.y5a_c00428{bottom:639.973333pt;}
.y54_c00428{bottom:653.693333pt;}
.y55_c00428{bottom:654.440000pt;}
.y56_c00428{bottom:656.360000pt;}
.y57_c00428{bottom:656.560000pt;}
.y52_c00428{bottom:657.306667pt;}
.y53_c00428{bottom:657.693333pt;}
.y4e_c00428{bottom:671.400000pt;}
.y50_c00428{bottom:673.693333pt;}
.y51_c00428{bottom:674.640000pt;}
.y4f_c00428{bottom:675.026667pt;}
.y48_c00428{bottom:688.360000pt;}
.y4d_c00428{bottom:689.306667pt;}
.y4a_c00428{bottom:690.266667pt;}
.y4c_c00428{bottom:691.026667pt;}
.y49_c00428{bottom:691.226667pt;}
.y46_c00428{bottom:691.400000pt;}
.y4b_c00428{bottom:691.973333pt;}
.y47_c00428{bottom:692.360000pt;}
.y42_c00428{bottom:707.773333pt;}
.y45_c00428{bottom:708.360000pt;}
.y44_c00428{bottom:708.733333pt;}
.y41_c00428{bottom:709.693333pt;}
.y43_c00428{bottom:710.640000pt;}
.y40_c00428{bottom:723.973333pt;}
.y3c_c00428{bottom:725.106667pt;}
.y3e_c00428{bottom:726.066667pt;}
.y3d_c00428{bottom:727.026667pt;}
.y3f_c00428{bottom:727.973333pt;}
.y37_c00428{bottom:742.440000pt;}
.y3b_c00428{bottom:743.026667pt;}
.y39_c00428{bottom:743.226667pt;}
.y3a_c00428{bottom:743.400000pt;}
.y38_c00428{bottom:744.360000pt;}
.y35_c00428{bottom:758.826667pt;}
.y36_c00428{bottom:759.773333pt;}
.y33_c00428{bottom:761.693333pt;}
.y34_c00428{bottom:763.040000pt;}
.y30_c00428{bottom:777.106667pt;}
.y2e_c00428{bottom:779.026667pt;}
.y2f_c00428{bottom:779.226667pt;}
.y32_c00428{bottom:779.973333pt;}
.y31_c00428{bottom:780.373333pt;}
.y29_c00428{bottom:793.693333pt;}
.y28_c00428{bottom:794.440000pt;}
.y2a_c00428{bottom:795.773333pt;}
.y2d_c00428{bottom:796.360000pt;}
.y2c_c00428{bottom:796.560000pt;}
.y2b_c00428{bottom:797.693333pt;}
.y26_c00428{bottom:811.773333pt;}
.y25_c00428{bottom:812.360000pt;}
.y22_c00428{bottom:813.106667pt;}
.y27_c00428{bottom:813.893333pt;}
.y24_c00428{bottom:814.066667pt;}
.y23_c00428{bottom:815.040000pt;}
.y1e_c00428{bottom:830.440000pt;}
.y20_c00428{bottom:831.226667pt;}
.y1d_c00428{bottom:831.400000pt;}
.y1f_c00428{bottom:831.973333pt;}
.y21_c00428{bottom:832.360000pt;}
.y19_c00428{bottom:847.773333pt;}
.y1b_c00428{bottom:848.733333pt;}
.y18_c00428{bottom:849.306667pt;}
.y1c_c00428{bottom:849.693333pt;}
.y1a_c00428{bottom:850.640000pt;}
.y14_c00428{bottom:865.106667pt;}
.y16_c00428{bottom:866.066667pt;}
.y17_c00428{bottom:867.026667pt;}
.y15_c00428{bottom:867.040000pt;}
.y13_c00428{bottom:887.973333pt;}
.y10_c00428{bottom:889.693333pt;}
.y11_c00428{bottom:890.640000pt;}
.y12_c00428{bottom:891.600000pt;}
.yf_c00428{bottom:906.066667pt;}
.yd_c00428{bottom:907.026667pt;}
.ye_c00428{bottom:908.933333pt;}
.y7_c00428{bottom:918.640000pt;}
.yc_c00428{bottom:919.026667pt;}
.y6_c00428{bottom:919.400000pt;}
.ya_c00428{bottom:919.600000pt;}
.y8_c00428{bottom:920.360000pt;}
.yb_c00428{bottom:921.506667pt;}
.y9_c00428{bottom:922.266667pt;}
.y4_c00428{bottom:943.773333pt;}
.y5_c00428{bottom:945.693333pt;}
.y2_c00428{bottom:977.693333pt;}
.y1_c00428{bottom:979.600000pt;}
.h8_c00428{height:3.739141pt;}
.h7_c00428{height:14.890964pt;}
.h3_c00428{height:20.466875pt;}
.h1_c00428{height:22.303646pt;}
.h6_c00428{height:27.879557pt;}
.h2_c00428{height:31.618698pt;}
.h5_c00428{height:35.357839pt;}
.h4_c00428{height:39.031380pt;}
.h9_c00428{height:42.770521pt;}
.h0_c00428{height:1186.666667pt;}
.w0_c00428{width:782.666667pt;}
.x0_c00428{left:0.000000pt;}
.xd2_c00428{left:130.293333pt;}
.x8f_c00428{left:131.626667pt;}
.x2b_c00428{left:133.333333pt;}
.x8_c00428{left:135.040000pt;}
.xe5_c00428{left:141.333333pt;}
.xc6_c00428{left:142.666667pt;}
.xc8_c00428{left:144.000000pt;}
.xb2_c00428{left:145.333333pt;}
.x1a_c00428{left:146.666667pt;}
.x24_c00428{left:148.373333pt;}
.xa2_c00428{left:149.333333pt;}
.x2c_c00428{left:150.666667pt;}
.xf0_c00428{left:156.373333pt;}
.xc2_c00428{left:158.666667pt;}
.xc9_c00428{left:160.000000pt;}
.x62_c00428{left:160.960000pt;}
.xb8_c00428{left:171.800000pt;}
.x90_c00428{left:174.293333pt;}
.x96_c00428{left:176.960000pt;}
.x3d_c00428{left:178.666667pt;}
.xd3_c00428{left:181.333333pt;}
.x9_c00428{left:185.333333pt;}
.x77_c00428{left:186.293333pt;}
.xc7_c00428{left:187.626667pt;}
.x89_c00428{left:190.666667pt;}
.x32_c00428{left:192.000000pt;}
.xda_c00428{left:192.960000pt;}
.x7c_c00428{left:194.666667pt;}
.x53_c00428{left:196.960000pt;}
.x3e_c00428{left:198.293333pt;}
.x68_c00428{left:200.960000pt;}
.xb9_c00428{left:204.000000pt;}
.xe6_c00428{left:206.293333pt;}
.xa_c00428{left:207.626667pt;}
.x8a_c00428{left:210.293333pt;}
.x1b_c00428{left:212.960000pt;}
.x33_c00428{left:217.333333pt;}
.x44_c00428{left:220.000000pt;}
.xf1_c00428{left:221.706667pt;}
.xed_c00428{left:222.666667pt;}
.xa9_c00428{left:225.333333pt;}
.x63_c00428{left:226.293333pt;}
.x35_c00428{left:228.000000pt;}
.x4b_c00428{left:230.666667pt;}
.xba_c00428{left:233.706667pt;}
.x2d_c00428{left:236.000000pt;}
.x5b_c00428{left:237.333333pt;}
.x25_c00428{left:238.666667pt;}
.x82_c00428{left:240.000000pt;}
.xaa_c00428{left:241.333333pt;}
.x54_c00428{left:242.293333pt;}
.x97_c00428{left:244.000000pt;}
.xe7_c00428{left:245.333333pt;}
.x36_c00428{left:246.666667pt;}
.x4c_c00428{left:248.000000pt;}
.x1c_c00428{left:250.666667pt;}
.xdb_c00428{left:252.000000pt;}
.xab_c00428{left:256.000000pt;}
.x26_c00428{left:257.333333pt;}
.x4_c00428{left:258.293333pt;}
.xdf_c00428{left:259.240000pt;}
.xc3_c00428{left:260.960000pt;}
.x2e_c00428{left:262.666667pt;}
.x45_c00428{left:265.333333pt;}
.x46_c00428{left:266.666667pt;}
.x3f_c00428{left:268.373333pt;}
.x69_c00428{left:269.333333pt;}
.xb_c00428{left:271.626667pt;}
.xbb_c00428{left:273.706667pt;}
.xee_c00428{left:274.666667pt;}
.xca_c00428{left:275.626667pt;}
.xea_c00428{left:278.666667pt;}
.x83_c00428{left:281.333333pt;}
.x8b_c00428{left:282.666667pt;}
.x47_c00428{left:283.626667pt;}
.x72_c00428{left:286.666667pt;}
.x64_c00428{left:288.000000pt;}
.xc_c00428{left:291.426667pt;}
.xb3_c00428{left:292.960000pt;}
.x1d_c00428{left:294.666667pt;}
.x55_c00428{left:296.373333pt;}
.x91_c00428{left:297.333333pt;}
.xa3_c00428{left:299.626667pt;}
.x9c_c00428{left:301.333333pt;}
.x34_c00428{left:303.040000pt;}
.x5c_c00428{left:304.000000pt;}
.x40_c00428{left:305.333333pt;}
.x37_c00428{left:306.466667pt;}
.x48_c00428{left:308.000000pt;}
.xd_c00428{left:311.040000pt;}
.x6a_c00428{left:312.373333pt;}
.x98_c00428{left:313.706667pt;}
.xb1_c00428{left:316.373333pt;}
.xa4_c00428{left:317.333333pt;}
.x9d_c00428{left:320.000000pt;}
.xd4_c00428{left:321.706667pt;}
.x92_c00428{left:322.666667pt;}
.xcb_c00428{left:324.000000pt;}
.x1e_c00428{left:325.333333pt;}
.x7d_c00428{left:326.293333pt;}
.x4d_c00428{left:331.626667pt;}
.x5_c00428{left:332.960000pt;}
.x56_c00428{left:334.666667pt;}
.xdc_c00428{left:337.706667pt;}
.x2f_c00428{left:338.666667pt;}
.xe_c00428{left:342.666667pt;}
.xbc_c00428{left:344.000000pt;}
.xd5_c00428{left:345.333333pt;}
.x6b_c00428{left:346.666667pt;}
.x5d_c00428{left:347.626667pt;}
.x9e_c00428{left:349.333333pt;}
.x27_c00428{left:351.626667pt;}
.xb4_c00428{left:353.706667pt;}
.xd6_c00428{left:356.000000pt;}
.x1f_c00428{left:357.333333pt;}
.xbd_c00428{left:359.626667pt;}
.x1_c00428{left:361.333333pt;}
.x41_c00428{left:362.293333pt;}
.x49_c00428{left:364.573333pt;}
.x99_c00428{left:366.666667pt;}
.xc1_c00428{left:368.000000pt;}
.x7e_c00428{left:370.293333pt;}
.xac_c00428{left:372.373333pt;}
.xf_c00428{left:373.706667pt;}
.x38_c00428{left:374.666667pt;}
.xe4_c00428{left:375.626667pt;}
.x6c_c00428{left:378.666667pt;}
.x9a_c00428{left:381.333333pt;}
.xa5_c00428{left:382.666667pt;}
.xbe_c00428{left:385.333333pt;}
.x20_c00428{left:388.000000pt;}
.x18_c00428{left:390.666667pt;}
.xcc_c00428{left:392.000000pt;}
.xdd_c00428{left:395.040000pt;}
.x4a_c00428{left:397.333333pt;}
.x84_c00428{left:398.666667pt;}
.x42_c00428{left:399.626667pt;}
.x6d_c00428{left:402.666667pt;}
.x19_c00428{left:404.960000pt;}
.x10_c00428{left:406.293333pt;}
.x4e_c00428{left:408.000000pt;}
.xa6_c00428{left:410.293333pt;}
.x21_c00428{left:414.293333pt;}
.xde_c00428{left:418.666667pt;}
.x7f_c00428{left:423.040000pt;}
.x11_c00428{left:424.960000pt;}
.x43_c00428{left:427.040000pt;}
.xd7_c00428{left:428.373333pt;}
.xad_c00428{left:430.666667pt;}
.x5e_c00428{left:432.373333pt;}
.x85_c00428{left:433.333333pt;}
.x9b_c00428{left:435.040000pt;}
.x6e_c00428{left:436.000000pt;}
.x6_c00428{left:438.293333pt;}
.x73_c00428{left:441.333333pt;}
.x78_c00428{left:442.666667pt;}
.x8c_c00428{left:444.373333pt;}
.x9f_c00428{left:445.333333pt;}
.x12_c00428{left:447.040000pt;}
.xe8_c00428{left:448.000000pt;}
.xc4_c00428{left:448.960000pt;}
.x4f_c00428{left:451.040000pt;}
.x6f_c00428{left:454.293333pt;}
.xb5_c00428{left:456.000000pt;}
.x80_c00428{left:458.666667pt;}
.x39_c00428{left:459.800000pt;}
.x79_c00428{left:461.706667pt;}
.x22_c00428{left:464.000000pt;}
.x86_c00428{left:465.706667pt;}
.x13_c00428{left:467.040000pt;}
.xd8_c00428{left:468.000000pt;}
.x57_c00428{left:469.706667pt;}
.xcd_c00428{left:472.373333pt;}
.x28_c00428{left:474.666667pt;}
.x14_c00428{left:476.960000pt;}
.xe9_c00428{left:478.666667pt;}
.xb6_c00428{left:481.333333pt;}
.xa7_c00428{left:484.000000pt;}
.xe0_c00428{left:486.666667pt;}
.x5f_c00428{left:488.000000pt;}
.x7_c00428{left:491.800000pt;}
.x70_c00428{left:494.293333pt;}
.x23_c00428{left:495.626667pt;}
.x29_c00428{left:497.333333pt;}
.xae_c00428{left:501.333333pt;}
.xeb_c00428{left:502.293333pt;}
.x8d_c00428{left:506.293333pt;}
.x58_c00428{left:507.626667pt;}
.x30_c00428{left:509.333333pt;}
.x74_c00428{left:510.293333pt;}
.x60_c00428{left:512.000000pt;}
.x65_c00428{left:512.960000pt;}
.xe1_c00428{left:515.040000pt;}
.xce_c00428{left:519.040000pt;}
.xef_c00428{left:523.040000pt;}
.x59_c00428{left:524.960000pt;}
.xd9_c00428{left:526.666667pt;}
.x66_c00428{left:530.666667pt;}
.x71_c00428{left:532.000000pt;}
.xbf_c00428{left:536.960000pt;}
.x75_c00428{left:541.333333pt;}
.xcf_c00428{left:542.293333pt;}
.x87_c00428{left:546.293333pt;}
.x93_c00428{left:548.000000pt;}
.x15_c00428{left:548.960000pt;}
.x3a_c00428{left:551.626667pt;}
.x81_c00428{left:553.706667pt;}
.xd0_c00428{left:556.000000pt;}
.x50_c00428{left:556.960000pt;}
.x8e_c00428{left:559.626667pt;}
.xaf_c00428{left:561.333333pt;}
.x76_c00428{left:562.666667pt;}
.x94_c00428{left:564.000000pt;}
.xa0_c00428{left:566.666667pt;}
.x16_c00428{left:568.760000pt;}
.x7a_c00428{left:574.293333pt;}
.xec_c00428{left:576.573333pt;}
.x51_c00428{left:577.706667pt;}
.x2a_c00428{left:579.626667pt;}
.x5a_c00428{left:585.333333pt;}
.x88_c00428{left:586.293333pt;}
.x17_c00428{left:589.333333pt;}
.x31_c00428{left:590.293333pt;}
.xe2_c00428{left:592.000000pt;}
.x7b_c00428{left:593.333333pt;}
.xc5_c00428{left:599.626667pt;}
.x95_c00428{left:601.706667pt;}
.xb0_c00428{left:602.666667pt;}
.xd1_c00428{left:604.000000pt;}
.x52_c00428{left:605.333333pt;}
.xa8_c00428{left:606.666667pt;}
.x3b_c00428{left:609.706667pt;}
.x61_c00428{left:610.666667pt;}
.xa1_c00428{left:614.666667pt;}
.xc0_c00428{left:616.000000pt;}
.xb7_c00428{left:618.293333pt;}
.x67_c00428{left:622.293333pt;}
.xe3_c00428{left:624.960000pt;}
.x2_c00428{left:626.293333pt;}
.x3_c00428{left:634.666667pt;}
.x3c_c00428{left:640.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_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_b41a9292d456d34749bf0ed7.woff2')format("woff");}.ff1_c00429{font-family:ff1_c00429;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me5_c00429{transform:matrix(0.264378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264378,0.000000,0.000000,0.250000,0,0);}
.m6c_c00429{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m66_c00429{transform:matrix(0.353361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353361,0.000000,0.000000,0.250000,0,0);}
.mf5_c00429{transform:matrix(0.354202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354202,0.000000,0.000000,0.250000,0,0);}
.m30_c00429{transform:matrix(0.363173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363173,0.000000,0.000000,0.250000,0,0);}
.m53_c00429{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mc_c00429{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m2f_c00429{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m7d_c00429{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m6e_c00429{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.mb8_c00429{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m3c_c00429{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mce_c00429{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m36_c00429{transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);}
.m62_c00429{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.mea_c00429{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m32_c00429{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m56_c00429{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m8e_c00429{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.m86_c00429{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.mfe_c00429{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mf7_c00429{transform:matrix(0.401457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401457,0.000000,0.000000,0.250000,0,0);}
.m3_c00429{transform:matrix(0.403525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403525,0.000000,0.000000,0.250000,0,0);}
.m9c_c00429{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m3f_c00429{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.md6_c00429{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m5a_c00429{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m47_c00429{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.me8_c00429{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m7_c00429{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.md4_c00429{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m7b_c00429{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mc6_c00429{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m8c_c00429{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m1b_c00429{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.mbb_c00429{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m85_c00429{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.mfd_c00429{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m57_c00429{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m73_c00429{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.meb_c00429{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m5d_c00429{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.mf6_c00429{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m34_c00429{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m27_c00429{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m44_c00429{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m5c_c00429{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m28_c00429{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m37_c00429{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m6f_c00429{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m6a_c00429{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.mbd_c00429{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m89_c00429{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.md9_c00429{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m72_c00429{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mca_c00429{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m5e_c00429{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m67_c00429{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.mcb_c00429{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m82_c00429{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m55_c00429{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.me4_c00429{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.mf3_c00429{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.m45_c00429{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.mf9_c00429{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m80_c00429{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.ma8_c00429{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m58_c00429{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.mff_c00429{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.m51_c00429{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m6b_c00429{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m2e_c00429{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m7a_c00429{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);}
.mcf_c00429{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mae_c00429{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.ma3_c00429{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m68_c00429{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.mf4_c00429{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m84_c00429{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m102_c00429{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m19_c00429{transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);}
.maf_c00429{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m10_c00429{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m95_c00429{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.mde_c00429{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.mdb_c00429{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m2d_c00429{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.mbe_c00429{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m29_c00429{transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);}
.mef_c00429{transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);}
.mb4_c00429{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m8_c00429{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mb5_c00429{transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);}
.me7_c00429{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.mb1_c00429{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m6d_c00429{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m9_c00429{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m74_c00429{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.med_c00429{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m101_c00429{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mfc_c00429{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m90_c00429{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m5b_c00429{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m4f_c00429{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m94_c00429{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.m9b_c00429{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m48_c00429{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m9e_c00429{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.md_c00429{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_c00429{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m99_c00429{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m8b_c00429{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.md7_c00429{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mbc_c00429{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.mf_c00429{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m75_c00429{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m43_c00429{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m63_c00429{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m9d_c00429{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m64_c00429{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m8d_c00429{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m50_c00429{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m4a_c00429{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m7e_c00429{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mf2_c00429{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m4e_c00429{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mda_c00429{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mf8_c00429{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m100_c00429{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.mc9_c00429{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m61_c00429{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.md8_c00429{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m2b_c00429{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.ma4_c00429{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m79_c00429{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mcd_c00429{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m5f_c00429{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mee_c00429{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m69_c00429{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.ma2_c00429{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mec_c00429{transform:matrix(0.532468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532468,0.000000,0.000000,0.250000,0,0);}
.m41_c00429{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m83_c00429{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.mdc_c00429{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m3e_c00429{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mb_c00429{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m98_c00429{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.me9_c00429{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m3a_c00429{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m52_c00429{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m25_c00429{transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);}
.m4d_c00429{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mc4_c00429{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m103_c00429{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m1c_c00429{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m8a_c00429{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.mb3_c00429{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mc2_c00429{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.mc0_c00429{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m3d_c00429{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mc3_c00429{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m1d_c00429{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.mab_c00429{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.md3_c00429{transform:matrix(0.547310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547310,0.000000,0.000000,0.250000,0,0);}
.m65_c00429{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m78_c00429{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m9f_c00429{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m24_c00429{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);}
.mf1_c00429{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mfb_c00429{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m1_c00429{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m7f_c00429{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mb2_c00429{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m5_c00429{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m60_c00429{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.md1_c00429{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.md2_c00429{transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);}
.mf0_c00429{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m9a_c00429{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m77_c00429{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m21_c00429{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.ma6_c00429{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m42_c00429{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mb6_c00429{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.me2_c00429{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m92_c00429{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.me1_c00429{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.mbf_c00429{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m87_c00429{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m4c_c00429{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.mb0_c00429{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.maa_c00429{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mba_c00429{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.ma1_c00429{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.md0_c00429{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m26_c00429{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);}
.m23_c00429{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m6_c00429{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m22_c00429{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.mb9_c00429{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.md5_c00429{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m71_c00429{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);}
.mc8_c00429{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mdf_c00429{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mc1_c00429{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mcc_c00429{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m4b_c00429{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.ma0_c00429{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m33_c00429{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.ma9_c00429{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.m1f_c00429{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mc5_c00429{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m2_c00429{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);}
.mc7_c00429{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_c00429{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m35_c00429{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m2c_c00429{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.ma5_c00429{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m31_c00429{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.mfa_c00429{transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);}
.m40_c00429{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.me_c00429{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.ma7_c00429{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m4_c00429{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m3b_c00429{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m17_c00429{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m14_c00429{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m12_c00429{transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);}
.m39_c00429{transform:matrix(0.648824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648824,0.000000,0.000000,0.250000,0,0);}
.m1a_c00429{transform:matrix(0.651471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651471,0.000000,0.000000,0.250000,0,0);}
.mdd_c00429{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m15_c00429{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m16_c00429{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m13_c00429{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m46_c00429{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m1e_c00429{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m38_c00429{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m91_c00429{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m0_c00429{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.me3_c00429{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m18_c00429{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);}
.m97_c00429{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mb7_c00429{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mac_c00429{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m76_c00429{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m81_c00429{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m59_c00429{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mad_c00429{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m7c_c00429{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m49_c00429{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m96_c00429{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.me0_c00429{transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);}
.m54_c00429{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m93_c00429{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m8f_c00429{transform:matrix(0.814103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.814103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.814103,0.000000,0.000000,0.250000,0,0);}
.m11_c00429{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m2a_c00429{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m20_c00429{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.ma_c00429{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m70_c00429{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00429{vertical-align:0.000000px;}
.v1_c00429{vertical-align:1.680000px;}
.v2_c00429{vertical-align:18.000000px;}
.ls1_c00429{letter-spacing:0.000000px;}
.ls0_c00429{letter-spacing:8.817600px;}
.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;}
}
.ws2_c00429{word-spacing:-5.674408px;}
.ws0_c00429{word-spacing:-2.923710px;}
.ws3_c00429{word-spacing:0.000000px;}
.ws1_c00429{word-spacing:0.990001px;}
.fc0_c00429{color:transparent;}
.fs7_c00429{font-size:3.420000px;}
.fs5_c00429{font-size:13.620000px;}
.fs0_c00429{font-size:18.720000px;}
.fs2_c00429{font-size:20.400000px;}
.fs1_c00429{font-size:25.500000px;}
.fs4_c00429{font-size:28.920000px;}
.fs3_c00429{font-size:32.340000px;}
.fs6_c00429{font-size:35.700000px;}
.fs8_c00429{font-size:39.120000px;}
.y0_c00429{bottom:0.000000px;}
.yd0_c00429{bottom:254.745000px;}
.ycd_c00429{bottom:255.405000px;}
.ycf_c00429{bottom:255.630000px;}
.yce_c00429{bottom:256.905000px;}
.yca_c00429{bottom:271.905000px;}
.yc8_c00429{bottom:274.245000px;}
.ycc_c00429{bottom:275.130000px;}
.ycb_c00429{bottom:275.325000px;}
.yc9_c00429{bottom:276.405000px;}
.yc7_c00429{bottom:293.745000px;}
.yc6_c00429{bottom:295.470000px;}
.yc5_c00429{bottom:295.905000px;}
.yc3_c00429{bottom:312.180000px;}
.yc2_c00429{bottom:313.245000px;}
.yc4_c00429{bottom:315.405000px;}
.ybe_c00429{bottom:332.745000px;}
.yc1_c00429{bottom:334.245000px;}
.ybd_c00429{bottom:334.905000px;}
.yc0_c00429{bottom:335.130000px;}
.ybf_c00429{bottom:336.405000px;}
.ybc_c00429{bottom:351.405000px;}
.yb9_c00429{bottom:353.745000px;}
.yb8_c00429{bottom:354.405000px;}
.yba_c00429{bottom:355.905000px;}
.ybb_c00429{bottom:356.970000px;}
.yb7_c00429{bottom:371.970000px;}
.yb6_c00429{bottom:373.245000px;}
.yb5_c00429{bottom:375.405000px;}
.yb2_c00429{bottom:392.325000px;}
.yb0_c00429{bottom:392.745000px;}
.yb3_c00429{bottom:393.630000px;}
.yb4_c00429{bottom:394.470000px;}
.yb1_c00429{bottom:394.905000px;}
.yaf_c00429{bottom:412.245000px;}
.yad_c00429{bottom:413.325000px;}
.yac_c00429{bottom:414.405000px;}
.yae_c00429{bottom:415.470000px;}
.yaa_c00429{bottom:431.745000px;}
.yab_c00429{bottom:432.630000px;}
.ya8_c00429{bottom:432.825000px;}
.ya7_c00429{bottom:433.245000px;}
.ya9_c00429{bottom:433.470000px;}
.ya4_c00429{bottom:433.905000px;}
.ya5_c00429{bottom:434.130000px;}
.ya6_c00429{bottom:434.970000px;}
.ya1_c00429{bottom:453.405000px;}
.ya2_c00429{bottom:453.630000px;}
.ya3_c00429{bottom:454.470000px;}
.y9f_c00429{bottom:470.745000px;}
.y9b_c00429{bottom:471.825000px;}
.y9d_c00429{bottom:472.245000px;}
.ya0_c00429{bottom:472.905000px;}
.y9e_c00429{bottom:473.130000px;}
.y9c_c00429{bottom:474.405000px;}
.y97_c00429{bottom:490.245000px;}
.y96_c00429{bottom:492.405000px;}
.y9a_c00429{bottom:492.630000px;}
.y98_c00429{bottom:492.825000px;}
.y99_c00429{bottom:493.905000px;}
.y92_c00429{bottom:511.245000px;}
.y94_c00429{bottom:511.905000px;}
.y95_c00429{bottom:512.130000px;}
.y93_c00429{bottom:512.970000px;}
.y91_c00429{bottom:513.405000px;}
.y8f_c00429{bottom:529.470000px;}
.y8d_c00429{bottom:530.745000px;}
.y90_c00429{bottom:531.405000px;}
.y8e_c00429{bottom:531.630000px;}
.y8c_c00429{bottom:532.905000px;}
.y8b_c00429{bottom:548.970000px;}
.y8a_c00429{bottom:550.245000px;}
.y89_c00429{bottom:551.970000px;}
.y88_c00429{bottom:552.405000px;}
.y87_c00429{bottom:569.745000px;}
.y83_c00429{bottom:570.630000px;}
.y86_c00429{bottom:571.470000px;}
.y85_c00429{bottom:571.905000px;}
.y84_c00429{bottom:572.970000px;}
.y81_c00429{bottom:591.405000px;}
.y82_c00429{bottom:591.630000px;}
.y80_c00429{bottom:608.745000px;}
.y7f_c00429{bottom:610.905000px;}
.y7d_c00429{bottom:627.405000px;}
.y7b_c00429{bottom:629.745000px;}
.y7e_c00429{bottom:630.630000px;}
.y7c_c00429{bottom:630.825000px;}
.y7a_c00429{bottom:631.905000px;}
.y75_c00429{bottom:649.245000px;}
.y77_c00429{bottom:650.130000px;}
.y76_c00429{bottom:650.325000px;}
.y79_c00429{bottom:650.970000px;}
.y78_c00429{bottom:651.405000px;}
.y71_c00429{bottom:666.405000px;}
.y70_c00429{bottom:668.745000px;}
.y74_c00429{bottom:669.630000px;}
.y6f_c00429{bottom:670.470000px;}
.y73_c00429{bottom:670.905000px;}
.y72_c00429{bottom:671.970000px;}
.y6e_c00429{bottom:685.905000px;}
.y6c_c00429{bottom:686.745000px;}
.y6d_c00429{bottom:686.970000px;}
.y6b_c00429{bottom:689.325000px;}
.y6a_c00429{bottom:690.405000px;}
.y67_c00429{bottom:706.905000px;}
.y66_c00429{bottom:707.745000px;}
.y69_c00429{bottom:708.630000px;}
.y68_c00429{bottom:709.470000px;}
.y65_c00429{bottom:709.905000px;}
.y64_c00429{bottom:727.245000px;}
.y61_c00429{bottom:728.130000px;}
.y63_c00429{bottom:729.405000px;}
.y62_c00429{bottom:730.470000px;}
.y5d_c00429{bottom:745.905000px;}
.y5c_c00429{bottom:746.745000px;}
.y60_c00429{bottom:747.825000px;}
.y5e_c00429{bottom:748.470000px;}
.y5b_c00429{bottom:748.905000px;}
.y5f_c00429{bottom:749.130000px;}
.y57_c00429{bottom:766.245000px;}
.y59_c00429{bottom:767.745000px;}
.y5a_c00429{bottom:768.405000px;}
.y58_c00429{bottom:769.905000px;}
.y56_c00429{bottom:785.745000px;}
.y54_c00429{bottom:787.245000px;}
.y53_c00429{bottom:787.905000px;}
.y55_c00429{bottom:788.130000px;}
.y52_c00429{bottom:789.405000px;}
.y4d_c00429{bottom:806.745000px;}
.y51_c00429{bottom:807.630000px;}
.y50_c00429{bottom:808.905000px;}
.y4e_c00429{bottom:808.920000px;}
.y4f_c00429{bottom:809.970000px;}
.y4a_c00429{bottom:835.245000px;}
.y4b_c00429{bottom:836.325000px;}
.y4c_c00429{bottom:837.405000px;}
.y49_c00429{bottom:853.905000px;}
.y47_c00429{bottom:854.745000px;}
.y46_c00429{bottom:856.905000px;}
.y45_c00429{bottom:857.130000px;}
.y48_c00429{bottom:857.970000px;}
.y44_c00429{bottom:874.245000px;}
.y40_c00429{bottom:875.745000px;}
.y43_c00429{bottom:876.405000px;}
.y41_c00429{bottom:876.630000px;}
.y42_c00429{bottom:877.905000px;}
.y3c_c00429{bottom:893.745000px;}
.y3e_c00429{bottom:895.245000px;}
.y3a_c00429{bottom:895.905000px;}
.y3f_c00429{bottom:896.130000px;}
.y3b_c00429{bottom:896.970000px;}
.y3d_c00429{bottom:897.405000px;}
.y38_c00429{bottom:913.245000px;}
.y34_c00429{bottom:914.745000px;}
.y39_c00429{bottom:915.405000px;}
.y37_c00429{bottom:915.630000px;}
.y35_c00429{bottom:916.470000px;}
.y36_c00429{bottom:916.905000px;}
.y32_c00429{bottom:934.245000px;}
.y33_c00429{bottom:934.905000px;}
.y2f_c00429{bottom:935.970000px;}
.y30_c00429{bottom:936.405000px;}
.y31_c00429{bottom:937.470000px;}
.y2c_c00429{bottom:960.825000px;}
.y2d_c00429{bottom:961.905000px;}
.y2e_c00429{bottom:964.050000px;}
.y27_c00429{bottom:975.825000px;}
.y2a_c00429{bottom:976.905000px;}
.y29_c00429{bottom:977.130000px;}
.y2b_c00429{bottom:978.195000px;}
.y28_c00429{bottom:979.050000px;}
.y26_c00429{bottom:990.405000px;}
.y25_c00429{bottom:991.050000px;}
.y22_c00429{bottom:991.905000px;}
.y21_c00429{bottom:992.130000px;}
.y24_c00429{bottom:992.970000px;}
.y23_c00429{bottom:993.195000px;}
.y1f_c00429{bottom:1005.405000px;}
.y19_c00429{bottom:1005.630000px;}
.y1c_c00429{bottom:1005.825000px;}
.y1e_c00429{bottom:1006.905000px;}
.y1b_c00429{bottom:1007.550000px;}
.y1a_c00429{bottom:1007.970000px;}
.y1d_c00429{bottom:1008.195000px;}
.y20_c00429{bottom:1009.050000px;}
.y16_c00429{bottom:1019.325000px;}
.y17_c00429{bottom:1019.550000px;}
.y18_c00429{bottom:1020.405000px;}
.y13_c00429{bottom:1021.470000px;}
.y14_c00429{bottom:1021.695000px;}
.y15_c00429{bottom:1022.550000px;}
.y11_c00429{bottom:1034.325000px;}
.yf_c00429{bottom:1035.405000px;}
.y10_c00429{bottom:1036.050000px;}
.y12_c00429{bottom:1036.470000px;}
.yd_c00429{bottom:1036.695000px;}
.ye_c00429{bottom:1037.550000px;}
.yb_c00429{bottom:1049.970000px;}
.yc_c00429{bottom:1050.405000px;}
.ya_c00429{bottom:1051.050000px;}
.y9_c00429{bottom:1063.470000px;}
.y4_c00429{bottom:1064.325000px;}
.y3_c00429{bottom:1064.550000px;}
.y7_c00429{bottom:1065.405000px;}
.y5_c00429{bottom:1066.050000px;}
.y6_c00429{bottom:1066.470000px;}
.y8_c00429{bottom:1066.695000px;}
.y2_c00429{bottom:1100.970000px;}
.y1_c00429{bottom:1103.130000px;}
.h9_c00429{height:4.206533px;}
.h6_c00429{height:16.752334px;}
.h1_c00429{height:23.025234px;}
.h3_c00429{height:25.091602px;}
.h2_c00429{height:31.364502px;}
.h7_c00429{height:33.044502px;}
.h5_c00429{height:35.571035px;}
.h4_c00429{height:39.777568px;}
.h8_c00429{height:43.910303px;}
.hb_c00429{height:48.116836px;}
.ha_c00429{height:53.571035px;}
.h0_c00429{height:1335.000000px;}
.w0_c00429{width:880.500000px;}
.x0_c00429{left:0.000000px;}
.x2_c00429{left:151.500000px;}
.x1e_c00429{left:153.000000px;}
.x3_c00429{left:166.920000px;}
.x46_c00429{left:168.000000px;}
.xb5_c00429{left:169.500000px;}
.xf8_c00429{left:171.420000px;}
.xc8_c00429{left:172.500000px;}
.x8d_c00429{left:174.000000px;}
.x85_c00429{left:178.500000px;}
.x47_c00429{left:180.000000px;}
.x10_c00429{left:181.080000px;}
.x59_c00429{left:183.000000px;}
.x4_c00429{left:184.500000px;}
.x98_c00429{left:185.580000px;}
.x3a_c00429{left:186.855000px;}
.x65_c00429{left:187.920000px;}
.xa0_c00429{left:189.000000px;}
.x12_c00429{left:190.500000px;}
.xa5_c00429{left:192.420000px;}
.xe2_c00429{left:193.500000px;}
.x4e_c00429{left:194.580000px;}
.x1f_c00429{left:196.500000px;}
.xd9_c00429{left:198.000000px;}
.xd0_c00429{left:199.500000px;}
.x8e_c00429{left:200.580000px;}
.x5a_c00429{left:205.500000px;}
.x20_c00429{left:207.000000px;}
.x11_c00429{left:208.500000px;}
.xb6_c00429{left:209.580000px;}
.xc9_c00429{left:211.500000px;}
.x66_c00429{left:213.645000px;}
.x86_c00429{left:217.920000px;}
.xd1_c00429{left:219.420000px;}
.xad_c00429{left:220.920000px;}
.x44_c00429{left:222.000000px;}
.xdf_c00429{left:223.920000px;}
.xca_c00429{left:225.000000px;}
.x5b_c00429{left:226.080000px;}
.x77_c00429{left:229.080000px;}
.xa6_c00429{left:231.000000px;}
.x27_c00429{left:232.080000px;}
.x13_c00429{left:233.580000px;}
.xea_c00429{left:237.000000px;}
.x4f_c00429{left:238.080000px;}
.xb7_c00429{left:240.000000px;}
.x21_c00429{left:241.080000px;}
.xa1_c00429{left:244.500000px;}
.x8f_c00429{left:246.420000px;}
.x6d_c00429{left:249.000000px;}
.xe5_c00429{left:250.500000px;}
.xa7_c00429{left:252.420000px;}
.x45_c00429{left:253.920000px;}
.x31_c00429{left:255.000000px;}
.x7c_c00429{left:256.500000px;}
.xe3_c00429{left:258.420000px;}
.x50_c00429{left:259.500000px;}
.x87_c00429{left:262.920000px;}
.x5_c00429{left:265.500000px;}
.x3b_c00429{left:267.000000px;}
.x28_c00429{left:268.500000px;}
.x14_c00429{left:270.000000px;}
.xae_c00429{left:271.920000px;}
.x32_c00429{left:273.000000px;}
.x78_c00429{left:274.080000px;}
.x72_c00429{left:276.000000px;}
.x7d_c00429{left:277.500000px;}
.x5c_c00429{left:279.000000px;}
.x22_c00429{left:280.080000px;}
.xf9_c00429{left:282.000000px;}
.xeb_c00429{left:283.080000px;}
.x67_c00429{left:285.000000px;}
.x61_c00429{left:288.000000px;}
.xc2_c00429{left:291.000000px;}
.x90_c00429{left:292.500000px;}
.xbe_c00429{left:293.580000px;}
.x33_c00429{left:295.500000px;}
.x6_c00429{left:296.580000px;}
.x29_c00429{left:298.500000px;}
.x5d_c00429{left:299.775000px;}
.x3c_c00429{left:301.920000px;}
.xd2_c00429{left:303.420000px;}
.x23_c00429{left:305.355000px;}
.xee_c00429{left:308.580000px;}
.x73_c00429{left:312.420000px;}
.x79_c00429{left:313.920000px;}
.x6e_c00429{left:316.080000px;}
.xec_c00429{left:317.580000px;}
.x99_c00429{left:319.080000px;}
.xef_c00429{left:322.500000px;}
.x51_c00429{left:324.420000px;}
.x3d_c00429{left:328.500000px;}
.xd3_c00429{left:330.000000px;}
.xaf_c00429{left:331.920000px;}
.xe6_c00429{left:333.000000px;}
.x7_c00429{left:334.080000px;}
.x48_c00429{left:336.000000px;}
.x15_c00429{left:339.855000px;}
.xe7_c00429{left:345.420000px;}
.x24_c00429{left:346.500000px;}
.x34_c00429{left:347.580000px;}
.x91_c00429{left:349.500000px;}
.x8_c00429{left:351.000000px;}
.x16_c00429{left:356.580000px;}
.x103_c00429{left:360.420000px;}
.xc3_c00429{left:362.580000px;}
.x52_c00429{left:364.500000px;}
.x88_c00429{left:366.420000px;}
.x7e_c00429{left:367.500000px;}
.x5e_c00429{left:368.775000px;}
.xda_c00429{left:370.500000px;}
.xb0_c00429{left:373.500000px;}
.x3e_c00429{left:375.000000px;}
.x25_c00429{left:376.920000px;}
.x9a_c00429{left:378.000000px;}
.x68_c00429{left:379.920000px;}
.x17_c00429{left:381.000000px;}
.xc4_c00429{left:382.920000px;}
.x7f_c00429{left:384.420000px;}
.x74_c00429{left:385.920000px;}
.x3f_c00429{left:387.000000px;}
.x35_c00429{left:388.500000px;}
.xcb_c00429{left:389.580000px;}
.xdb_c00429{left:391.500000px;}
.xf0_c00429{left:393.000000px;}
.x6f_c00429{left:394.080000px;}
.xfe_c00429{left:398.580000px;}
.x89_c00429{left:400.080000px;}
.xd4_c00429{left:402.000000px;}
.x26_c00429{left:403.500000px;}
.xf2_c00429{left:405.000000px;}
.x1_c00429{left:406.500000px;}
.x49_c00429{left:409.920000px;}
.x92_c00429{left:411.000000px;}
.x9b_c00429{left:412.500000px;}
.xa8_c00429{left:417.420000px;}
.xdc_c00429{left:418.500000px;}
.xb1_c00429{left:421.500000px;}
.xf1_c00429{left:422.580000px;}
.xbf_c00429{left:424.500000px;}
.xcc_c00429{left:425.580000px;}
.x36_c00429{left:427.080000px;}
.x9_c00429{left:430.080000px;}
.x2a_c00429{left:432.000000px;}
.xb8_c00429{left:433.500000px;}
.x40_c00429{left:436.500000px;}
.x53_c00429{left:439.500000px;}
.x2b_c00429{left:442.500000px;}
.xa9_c00429{left:444.000000px;}
.xcd_c00429{left:445.500000px;}
.x4a_c00429{left:446.580000px;}
.x93_c00429{left:450.000000px;}
.x18_c00429{left:451.920000px;}
.x7a_c00429{left:454.275000px;}
.xff_c00429{left:457.080000px;}
.x70_c00429{left:458.580000px;}
.xaa_c00429{left:462.420000px;}
.xc5_c00429{left:466.500000px;}
.xa_c00429{left:469.500000px;}
.x75_c00429{left:471.000000px;}
.x62_c00429{left:472.500000px;}
.xfa_c00429{left:474.420000px;}
.x2c_c00429{left:477.000000px;}
.x69_c00429{left:482.580000px;}
.x94_c00429{left:487.920000px;}
.x71_c00429{left:490.500000px;}
.xb2_c00429{left:491.580000px;}
.xb9_c00429{left:495.420000px;}
.xd5_c00429{left:496.500000px;}
.x80_c00429{left:499.500000px;}
.x6a_c00429{left:501.420000px;}
.x2d_c00429{left:505.920000px;}
.x37_c00429{left:508.080000px;}
.xd6_c00429{left:511.500000px;}
.x9c_c00429{left:513.420000px;}
.xce_c00429{left:514.500000px;}
.x107_c00429{left:516.000000px;}
.x4b_c00429{left:517.500000px;}
.xc6_c00429{left:520.500000px;}
.x100_c00429{left:523.920000px;}
.xf6_c00429{left:525.000000px;}
.x6b_c00429{left:527.145000px;}
.x81_c00429{left:529.500000px;}
.x19_c00429{left:531.000000px;}
.xb3_c00429{left:532.500000px;}
.xba_c00429{left:534.000000px;}
.xdd_c00429{left:535.500000px;}
.x63_c00429{left:537.000000px;}
.x76_c00429{left:540.000000px;}
.x54_c00429{left:541.500000px;}
.x2e_c00429{left:547.500000px;}
.xb_c00429{left:548.580000px;}
.x101_c00429{left:550.500000px;}
.xde_c00429{left:552.000000px;}
.x41_c00429{left:555.000000px;}
.xd7_c00429{left:559.500000px;}
.x1a_c00429{left:564.000000px;}
.x55_c00429{left:565.500000px;}
.xe0_c00429{left:566.580000px;}
.xcf_c00429{left:569.580000px;}
.x9d_c00429{left:573.000000px;}
.x5f_c00429{left:574.080000px;}
.x2f_c00429{left:576.420000px;}
.xab_c00429{left:577.500000px;}
.xf3_c00429{left:581.580000px;}
.x95_c00429{left:583.500000px;}
.x4c_c00429{left:588.000000px;}
.x42_c00429{left:589.920000px;}
.x7b_c00429{left:591.000000px;}
.x82_c00429{left:592.920000px;}
.x56_c00429{left:594.000000px;}
.xa2_c00429{left:595.920000px;}
.x6c_c00429{left:598.080000px;}
.xfb_c00429{left:600.000000px;}
.x30_c00429{left:603.000000px;}
.xc_c00429{left:605.580000px;}
.x1b_c00429{left:610.920000px;}
.xbb_c00429{left:612.000000px;}
.x57_c00429{left:615.000000px;}
.xd_c00429{left:616.500000px;}
.x83_c00429{left:619.920000px;}
.x96_c00429{left:622.920000px;}
.xa3_c00429{left:624.000000px;}
.xb4_c00429{left:627.420000px;}
.x1c_c00429{left:628.500000px;}
.x38_c00429{left:629.580000px;}
.x4d_c00429{left:632.145000px;}
.x64_c00429{left:635.580000px;}
.xe1_c00429{left:637.080000px;}
.xed_c00429{left:639.000000px;}
.x104_c00429{left:640.500000px;}
.x8a_c00429{left:645.000000px;}
.xe8_c00429{left:646.500000px;}
.xbc_c00429{left:648.000000px;}
.xf4_c00429{left:652.920000px;}
.xfc_c00429{left:657.420000px;}
.xc0_c00429{left:658.920000px;}
.x8b_c00429{left:660.000000px;}
.x105_c00429{left:661.500000px;}
.xe_c00429{left:662.580000px;}
.x60_c00429{left:664.080000px;}
.x102_c00429{left:666.420000px;}
.x9e_c00429{left:668.580000px;}
.xfd_c00429{left:670.500000px;}
.x1d_c00429{left:672.000000px;}
.x43_c00429{left:673.500000px;}
.x8c_c00429{left:675.000000px;}
.xc7_c00429{left:679.500000px;}
.x97_c00429{left:681.420000px;}
.xf7_c00429{left:682.500000px;}
.x39_c00429{left:684.420000px;}
.xc1_c00429{left:686.580000px;}
.xf5_c00429{left:688.500000px;}
.xf_c00429{left:689.580000px;}
.xe9_c00429{left:691.500000px;}
.x106_c00429{left:694.920000px;}
.xbd_c00429{left:697.920000px;}
.xa4_c00429{left:699.420000px;}
.xe4_c00429{left:702.000000px;}
.x58_c00429{left:703.080000px;}
.xd8_c00429{left:708.420000px;}
.xac_c00429{left:709.500000px;}
.x9f_c00429{left:715.500000px;}
.x84_c00429{left:716.580000px;}
@media print{
.v0_c00429{vertical-align:0.000000pt;}
.v1_c00429{vertical-align:1.493333pt;}
.v2_c00429{vertical-align:16.000000pt;}
.ls1_c00429{letter-spacing:0.000000pt;}
.ls0_c00429{letter-spacing:7.837867pt;}
.ws2_c00429{word-spacing:-5.043919pt;}
.ws0_c00429{word-spacing:-2.598853pt;}
.ws3_c00429{word-spacing:0.000000pt;}
.ws1_c00429{word-spacing:0.880001pt;}
.fs7_c00429{font-size:3.040000pt;}
.fs5_c00429{font-size:12.106667pt;}
.fs0_c00429{font-size:16.640000pt;}
.fs2_c00429{font-size:18.133333pt;}
.fs1_c00429{font-size:22.666667pt;}
.fs4_c00429{font-size:25.706667pt;}
.fs3_c00429{font-size:28.746667pt;}
.fs6_c00429{font-size:31.733333pt;}
.fs8_c00429{font-size:34.773333pt;}
.y0_c00429{bottom:0.000000pt;}
.yd0_c00429{bottom:226.440000pt;}
.ycd_c00429{bottom:227.026667pt;}
.ycf_c00429{bottom:227.226667pt;}
.yce_c00429{bottom:228.360000pt;}
.yca_c00429{bottom:241.693333pt;}
.yc8_c00429{bottom:243.773333pt;}
.ycc_c00429{bottom:244.560000pt;}
.ycb_c00429{bottom:244.733333pt;}
.yc9_c00429{bottom:245.693333pt;}
.yc7_c00429{bottom:261.106667pt;}
.yc6_c00429{bottom:262.640000pt;}
.yc5_c00429{bottom:263.026667pt;}
.yc3_c00429{bottom:277.493333pt;}
.yc2_c00429{bottom:278.440000pt;}
.yc4_c00429{bottom:280.360000pt;}
.ybe_c00429{bottom:295.773333pt;}
.yc1_c00429{bottom:297.106667pt;}
.ybd_c00429{bottom:297.693333pt;}
.yc0_c00429{bottom:297.893333pt;}
.ybf_c00429{bottom:299.026667pt;}
.ybc_c00429{bottom:312.360000pt;}
.yb9_c00429{bottom:314.440000pt;}
.yb8_c00429{bottom:315.026667pt;}
.yba_c00429{bottom:316.360000pt;}
.ybb_c00429{bottom:317.306667pt;}
.yb7_c00429{bottom:330.640000pt;}
.yb6_c00429{bottom:331.773333pt;}
.yb5_c00429{bottom:333.693333pt;}
.yb2_c00429{bottom:348.733333pt;}
.yb0_c00429{bottom:349.106667pt;}
.yb3_c00429{bottom:349.893333pt;}
.yb4_c00429{bottom:350.640000pt;}
.yb1_c00429{bottom:351.026667pt;}
.yaf_c00429{bottom:366.440000pt;}
.yad_c00429{bottom:367.400000pt;}
.yac_c00429{bottom:368.360000pt;}
.yae_c00429{bottom:369.306667pt;}
.yaa_c00429{bottom:383.773333pt;}
.yab_c00429{bottom:384.560000pt;}
.ya8_c00429{bottom:384.733333pt;}
.ya7_c00429{bottom:385.106667pt;}
.ya9_c00429{bottom:385.306667pt;}
.ya4_c00429{bottom:385.693333pt;}
.ya5_c00429{bottom:385.893333pt;}
.ya6_c00429{bottom:386.640000pt;}
.ya1_c00429{bottom:403.026667pt;}
.ya2_c00429{bottom:403.226667pt;}
.ya3_c00429{bottom:403.973333pt;}
.y9f_c00429{bottom:418.440000pt;}
.y9b_c00429{bottom:419.400000pt;}
.y9d_c00429{bottom:419.773333pt;}
.ya0_c00429{bottom:420.360000pt;}
.y9e_c00429{bottom:420.560000pt;}
.y9c_c00429{bottom:421.693333pt;}
.y97_c00429{bottom:435.773333pt;}
.y96_c00429{bottom:437.693333pt;}
.y9a_c00429{bottom:437.893333pt;}
.y98_c00429{bottom:438.066667pt;}
.y99_c00429{bottom:439.026667pt;}
.y92_c00429{bottom:454.440000pt;}
.y94_c00429{bottom:455.026667pt;}
.y95_c00429{bottom:455.226667pt;}
.y93_c00429{bottom:455.973333pt;}
.y91_c00429{bottom:456.360000pt;}
.y8f_c00429{bottom:470.640000pt;}
.y8d_c00429{bottom:471.773333pt;}
.y90_c00429{bottom:472.360000pt;}
.y8e_c00429{bottom:472.560000pt;}
.y8c_c00429{bottom:473.693333pt;}
.y8b_c00429{bottom:487.973333pt;}
.y8a_c00429{bottom:489.106667pt;}
.y89_c00429{bottom:490.640000pt;}
.y88_c00429{bottom:491.026667pt;}
.y87_c00429{bottom:506.440000pt;}
.y83_c00429{bottom:507.226667pt;}
.y86_c00429{bottom:507.973333pt;}
.y85_c00429{bottom:508.360000pt;}
.y84_c00429{bottom:509.306667pt;}
.y81_c00429{bottom:525.693333pt;}
.y82_c00429{bottom:525.893333pt;}
.y80_c00429{bottom:541.106667pt;}
.y7f_c00429{bottom:543.026667pt;}
.y7d_c00429{bottom:557.693333pt;}
.y7b_c00429{bottom:559.773333pt;}
.y7e_c00429{bottom:560.560000pt;}
.y7c_c00429{bottom:560.733333pt;}
.y7a_c00429{bottom:561.693333pt;}
.y75_c00429{bottom:577.106667pt;}
.y77_c00429{bottom:577.893333pt;}
.y76_c00429{bottom:578.066667pt;}
.y79_c00429{bottom:578.640000pt;}
.y78_c00429{bottom:579.026667pt;}
.y71_c00429{bottom:592.360000pt;}
.y70_c00429{bottom:594.440000pt;}
.y74_c00429{bottom:595.226667pt;}
.y6f_c00429{bottom:595.973333pt;}
.y73_c00429{bottom:596.360000pt;}
.y72_c00429{bottom:597.306667pt;}
.y6e_c00429{bottom:609.693333pt;}
.y6c_c00429{bottom:610.440000pt;}
.y6d_c00429{bottom:610.640000pt;}
.y6b_c00429{bottom:612.733333pt;}
.y6a_c00429{bottom:613.693333pt;}
.y67_c00429{bottom:628.360000pt;}
.y66_c00429{bottom:629.106667pt;}
.y69_c00429{bottom:629.893333pt;}
.y68_c00429{bottom:630.640000pt;}
.y65_c00429{bottom:631.026667pt;}
.y64_c00429{bottom:646.440000pt;}
.y61_c00429{bottom:647.226667pt;}
.y63_c00429{bottom:648.360000pt;}
.y62_c00429{bottom:649.306667pt;}
.y5d_c00429{bottom:663.026667pt;}
.y5c_c00429{bottom:663.773333pt;}
.y60_c00429{bottom:664.733333pt;}
.y5e_c00429{bottom:665.306667pt;}
.y5b_c00429{bottom:665.693333pt;}
.y5f_c00429{bottom:665.893333pt;}
.y57_c00429{bottom:681.106667pt;}
.y59_c00429{bottom:682.440000pt;}
.y5a_c00429{bottom:683.026667pt;}
.y58_c00429{bottom:684.360000pt;}
.y56_c00429{bottom:698.440000pt;}
.y54_c00429{bottom:699.773333pt;}
.y53_c00429{bottom:700.360000pt;}
.y55_c00429{bottom:700.560000pt;}
.y52_c00429{bottom:701.693333pt;}
.y4d_c00429{bottom:717.106667pt;}
.y51_c00429{bottom:717.893333pt;}
.y50_c00429{bottom:719.026667pt;}
.y4e_c00429{bottom:719.040000pt;}
.y4f_c00429{bottom:719.973333pt;}
.y4a_c00429{bottom:742.440000pt;}
.y4b_c00429{bottom:743.400000pt;}
.y4c_c00429{bottom:744.360000pt;}
.y49_c00429{bottom:759.026667pt;}
.y47_c00429{bottom:759.773333pt;}
.y46_c00429{bottom:761.693333pt;}
.y45_c00429{bottom:761.893333pt;}
.y48_c00429{bottom:762.640000pt;}
.y44_c00429{bottom:777.106667pt;}
.y40_c00429{bottom:778.440000pt;}
.y43_c00429{bottom:779.026667pt;}
.y41_c00429{bottom:779.226667pt;}
.y42_c00429{bottom:780.360000pt;}
.y3c_c00429{bottom:794.440000pt;}
.y3e_c00429{bottom:795.773333pt;}
.y3a_c00429{bottom:796.360000pt;}
.y3f_c00429{bottom:796.560000pt;}
.y3b_c00429{bottom:797.306667pt;}
.y3d_c00429{bottom:797.693333pt;}
.y38_c00429{bottom:811.773333pt;}
.y34_c00429{bottom:813.106667pt;}
.y39_c00429{bottom:813.693333pt;}
.y37_c00429{bottom:813.893333pt;}
.y35_c00429{bottom:814.640000pt;}
.y36_c00429{bottom:815.026667pt;}
.y32_c00429{bottom:830.440000pt;}
.y33_c00429{bottom:831.026667pt;}
.y2f_c00429{bottom:831.973333pt;}
.y30_c00429{bottom:832.360000pt;}
.y31_c00429{bottom:833.306667pt;}
.y2c_c00429{bottom:854.066667pt;}
.y2d_c00429{bottom:855.026667pt;}
.y2e_c00429{bottom:856.933333pt;}
.y27_c00429{bottom:867.400000pt;}
.y2a_c00429{bottom:868.360000pt;}
.y29_c00429{bottom:868.560000pt;}
.y2b_c00429{bottom:869.506667pt;}
.y28_c00429{bottom:870.266667pt;}
.y26_c00429{bottom:880.360000pt;}
.y25_c00429{bottom:880.933333pt;}
.y22_c00429{bottom:881.693333pt;}
.y21_c00429{bottom:881.893333pt;}
.y24_c00429{bottom:882.640000pt;}
.y23_c00429{bottom:882.840000pt;}
.y1f_c00429{bottom:893.693333pt;}
.y19_c00429{bottom:893.893333pt;}
.y1c_c00429{bottom:894.066667pt;}
.y1e_c00429{bottom:895.026667pt;}
.y1b_c00429{bottom:895.600000pt;}
.y1a_c00429{bottom:895.973333pt;}
.y1d_c00429{bottom:896.173333pt;}
.y20_c00429{bottom:896.933333pt;}
.y16_c00429{bottom:906.066667pt;}
.y17_c00429{bottom:906.266667pt;}
.y18_c00429{bottom:907.026667pt;}
.y13_c00429{bottom:907.973333pt;}
.y14_c00429{bottom:908.173333pt;}
.y15_c00429{bottom:908.933333pt;}
.y11_c00429{bottom:919.400000pt;}
.yf_c00429{bottom:920.360000pt;}
.y10_c00429{bottom:920.933333pt;}
.y12_c00429{bottom:921.306667pt;}
.yd_c00429{bottom:921.506667pt;}
.ye_c00429{bottom:922.266667pt;}
.yb_c00429{bottom:933.306667pt;}
.yc_c00429{bottom:933.693333pt;}
.ya_c00429{bottom:934.266667pt;}
.y9_c00429{bottom:945.306667pt;}
.y4_c00429{bottom:946.066667pt;}
.y3_c00429{bottom:946.266667pt;}
.y7_c00429{bottom:947.026667pt;}
.y5_c00429{bottom:947.600000pt;}
.y6_c00429{bottom:947.973333pt;}
.y8_c00429{bottom:948.173333pt;}
.y2_c00429{bottom:978.640000pt;}
.y1_c00429{bottom:980.560000pt;}
.h9_c00429{height:3.739141pt;}
.h6_c00429{height:14.890964pt;}
.h1_c00429{height:20.466875pt;}
.h3_c00429{height:22.303646pt;}
.h2_c00429{height:27.879557pt;}
.h7_c00429{height:29.372891pt;}
.h5_c00429{height:31.618698pt;}
.h4_c00429{height:35.357839pt;}
.h8_c00429{height:39.031380pt;}
.hb_c00429{height:42.770521pt;}
.ha_c00429{height:47.618698pt;}
.h0_c00429{height:1186.666667pt;}
.w0_c00429{width:782.666667pt;}
.x0_c00429{left:0.000000pt;}
.x2_c00429{left:134.666667pt;}
.x1e_c00429{left:136.000000pt;}
.x3_c00429{left:148.373333pt;}
.x46_c00429{left:149.333333pt;}
.xb5_c00429{left:150.666667pt;}
.xf8_c00429{left:152.373333pt;}
.xc8_c00429{left:153.333333pt;}
.x8d_c00429{left:154.666667pt;}
.x85_c00429{left:158.666667pt;}
.x47_c00429{left:160.000000pt;}
.x10_c00429{left:160.960000pt;}
.x59_c00429{left:162.666667pt;}
.x4_c00429{left:164.000000pt;}
.x98_c00429{left:164.960000pt;}
.x3a_c00429{left:166.093333pt;}
.x65_c00429{left:167.040000pt;}
.xa0_c00429{left:168.000000pt;}
.x12_c00429{left:169.333333pt;}
.xa5_c00429{left:171.040000pt;}
.xe2_c00429{left:172.000000pt;}
.x4e_c00429{left:172.960000pt;}
.x1f_c00429{left:174.666667pt;}
.xd9_c00429{left:176.000000pt;}
.xd0_c00429{left:177.333333pt;}
.x8e_c00429{left:178.293333pt;}
.x5a_c00429{left:182.666667pt;}
.x20_c00429{left:184.000000pt;}
.x11_c00429{left:185.333333pt;}
.xb6_c00429{left:186.293333pt;}
.xc9_c00429{left:188.000000pt;}
.x66_c00429{left:189.906667pt;}
.x86_c00429{left:193.706667pt;}
.xd1_c00429{left:195.040000pt;}
.xad_c00429{left:196.373333pt;}
.x44_c00429{left:197.333333pt;}
.xdf_c00429{left:199.040000pt;}
.xca_c00429{left:200.000000pt;}
.x5b_c00429{left:200.960000pt;}
.x77_c00429{left:203.626667pt;}
.xa6_c00429{left:205.333333pt;}
.x27_c00429{left:206.293333pt;}
.x13_c00429{left:207.626667pt;}
.xea_c00429{left:210.666667pt;}
.x4f_c00429{left:211.626667pt;}
.xb7_c00429{left:213.333333pt;}
.x21_c00429{left:214.293333pt;}
.xa1_c00429{left:217.333333pt;}
.x8f_c00429{left:219.040000pt;}
.x6d_c00429{left:221.333333pt;}
.xe5_c00429{left:222.666667pt;}
.xa7_c00429{left:224.373333pt;}
.x45_c00429{left:225.706667pt;}
.x31_c00429{left:226.666667pt;}
.x7c_c00429{left:228.000000pt;}
.xe3_c00429{left:229.706667pt;}
.x50_c00429{left:230.666667pt;}
.x87_c00429{left:233.706667pt;}
.x5_c00429{left:236.000000pt;}
.x3b_c00429{left:237.333333pt;}
.x28_c00429{left:238.666667pt;}
.x14_c00429{left:240.000000pt;}
.xae_c00429{left:241.706667pt;}
.x32_c00429{left:242.666667pt;}
.x78_c00429{left:243.626667pt;}
.x72_c00429{left:245.333333pt;}
.x7d_c00429{left:246.666667pt;}
.x5c_c00429{left:248.000000pt;}
.x22_c00429{left:248.960000pt;}
.xf9_c00429{left:250.666667pt;}
.xeb_c00429{left:251.626667pt;}
.x67_c00429{left:253.333333pt;}
.x61_c00429{left:256.000000pt;}
.xc2_c00429{left:258.666667pt;}
.x90_c00429{left:260.000000pt;}
.xbe_c00429{left:260.960000pt;}
.x33_c00429{left:262.666667pt;}
.x6_c00429{left:263.626667pt;}
.x29_c00429{left:265.333333pt;}
.x5d_c00429{left:266.466667pt;}
.x3c_c00429{left:268.373333pt;}
.xd2_c00429{left:269.706667pt;}
.x23_c00429{left:271.426667pt;}
.xee_c00429{left:274.293333pt;}
.x73_c00429{left:277.706667pt;}
.x79_c00429{left:279.040000pt;}
.x6e_c00429{left:280.960000pt;}
.xec_c00429{left:282.293333pt;}
.x99_c00429{left:283.626667pt;}
.xef_c00429{left:286.666667pt;}
.x51_c00429{left:288.373333pt;}
.x3d_c00429{left:292.000000pt;}
.xd3_c00429{left:293.333333pt;}
.xaf_c00429{left:295.040000pt;}
.xe6_c00429{left:296.000000pt;}
.x7_c00429{left:296.960000pt;}
.x48_c00429{left:298.666667pt;}
.x15_c00429{left:302.093333pt;}
.xe7_c00429{left:307.040000pt;}
.x24_c00429{left:308.000000pt;}
.x34_c00429{left:308.960000pt;}
.x91_c00429{left:310.666667pt;}
.x8_c00429{left:312.000000pt;}
.x16_c00429{left:316.960000pt;}
.x103_c00429{left:320.373333pt;}
.xc3_c00429{left:322.293333pt;}
.x52_c00429{left:324.000000pt;}
.x88_c00429{left:325.706667pt;}
.x7e_c00429{left:326.666667pt;}
.x5e_c00429{left:327.800000pt;}
.xda_c00429{left:329.333333pt;}
.xb0_c00429{left:332.000000pt;}
.x3e_c00429{left:333.333333pt;}
.x25_c00429{left:335.040000pt;}
.x9a_c00429{left:336.000000pt;}
.x68_c00429{left:337.706667pt;}
.x17_c00429{left:338.666667pt;}
.xc4_c00429{left:340.373333pt;}
.x7f_c00429{left:341.706667pt;}
.x74_c00429{left:343.040000pt;}
.x3f_c00429{left:344.000000pt;}
.x35_c00429{left:345.333333pt;}
.xcb_c00429{left:346.293333pt;}
.xdb_c00429{left:348.000000pt;}
.xf0_c00429{left:349.333333pt;}
.x6f_c00429{left:350.293333pt;}
.xfe_c00429{left:354.293333pt;}
.x89_c00429{left:355.626667pt;}
.xd4_c00429{left:357.333333pt;}
.x26_c00429{left:358.666667pt;}
.xf2_c00429{left:360.000000pt;}
.x1_c00429{left:361.333333pt;}
.x49_c00429{left:364.373333pt;}
.x92_c00429{left:365.333333pt;}
.x9b_c00429{left:366.666667pt;}
.xa8_c00429{left:371.040000pt;}
.xdc_c00429{left:372.000000pt;}
.xb1_c00429{left:374.666667pt;}
.xf1_c00429{left:375.626667pt;}
.xbf_c00429{left:377.333333pt;}
.xcc_c00429{left:378.293333pt;}
.x36_c00429{left:379.626667pt;}
.x9_c00429{left:382.293333pt;}
.x2a_c00429{left:384.000000pt;}
.xb8_c00429{left:385.333333pt;}
.x40_c00429{left:388.000000pt;}
.x53_c00429{left:390.666667pt;}
.x2b_c00429{left:393.333333pt;}
.xa9_c00429{left:394.666667pt;}
.xcd_c00429{left:396.000000pt;}
.x4a_c00429{left:396.960000pt;}
.x93_c00429{left:400.000000pt;}
.x18_c00429{left:401.706667pt;}
.x7a_c00429{left:403.800000pt;}
.xff_c00429{left:406.293333pt;}
.x70_c00429{left:407.626667pt;}
.xaa_c00429{left:411.040000pt;}
.xc5_c00429{left:414.666667pt;}
.xa_c00429{left:417.333333pt;}
.x75_c00429{left:418.666667pt;}
.x62_c00429{left:420.000000pt;}
.xfa_c00429{left:421.706667pt;}
.x2c_c00429{left:424.000000pt;}
.x69_c00429{left:428.960000pt;}
.x94_c00429{left:433.706667pt;}
.x71_c00429{left:436.000000pt;}
.xb2_c00429{left:436.960000pt;}
.xb9_c00429{left:440.373333pt;}
.xd5_c00429{left:441.333333pt;}
.x80_c00429{left:444.000000pt;}
.x6a_c00429{left:445.706667pt;}
.x2d_c00429{left:449.706667pt;}
.x37_c00429{left:451.626667pt;}
.xd6_c00429{left:454.666667pt;}
.x9c_c00429{left:456.373333pt;}
.xce_c00429{left:457.333333pt;}
.x107_c00429{left:458.666667pt;}
.x4b_c00429{left:460.000000pt;}
.xc6_c00429{left:462.666667pt;}
.x100_c00429{left:465.706667pt;}
.xf6_c00429{left:466.666667pt;}
.x6b_c00429{left:468.573333pt;}
.x81_c00429{left:470.666667pt;}
.x19_c00429{left:472.000000pt;}
.xb3_c00429{left:473.333333pt;}
.xba_c00429{left:474.666667pt;}
.xdd_c00429{left:476.000000pt;}
.x63_c00429{left:477.333333pt;}
.x76_c00429{left:480.000000pt;}
.x54_c00429{left:481.333333pt;}
.x2e_c00429{left:486.666667pt;}
.xb_c00429{left:487.626667pt;}
.x101_c00429{left:489.333333pt;}
.xde_c00429{left:490.666667pt;}
.x41_c00429{left:493.333333pt;}
.xd7_c00429{left:497.333333pt;}
.x1a_c00429{left:501.333333pt;}
.x55_c00429{left:502.666667pt;}
.xe0_c00429{left:503.626667pt;}
.xcf_c00429{left:506.293333pt;}
.x9d_c00429{left:509.333333pt;}
.x5f_c00429{left:510.293333pt;}
.x2f_c00429{left:512.373333pt;}
.xab_c00429{left:513.333333pt;}
.xf3_c00429{left:516.960000pt;}
.x95_c00429{left:518.666667pt;}
.x4c_c00429{left:522.666667pt;}
.x42_c00429{left:524.373333pt;}
.x7b_c00429{left:525.333333pt;}
.x82_c00429{left:527.040000pt;}
.x56_c00429{left:528.000000pt;}
.xa2_c00429{left:529.706667pt;}
.x6c_c00429{left:531.626667pt;}
.xfb_c00429{left:533.333333pt;}
.x30_c00429{left:536.000000pt;}
.xc_c00429{left:538.293333pt;}
.x1b_c00429{left:543.040000pt;}
.xbb_c00429{left:544.000000pt;}
.x57_c00429{left:546.666667pt;}
.xd_c00429{left:548.000000pt;}
.x83_c00429{left:551.040000pt;}
.x96_c00429{left:553.706667pt;}
.xa3_c00429{left:554.666667pt;}
.xb4_c00429{left:557.706667pt;}
.x1c_c00429{left:558.666667pt;}
.x38_c00429{left:559.626667pt;}
.x4d_c00429{left:561.906667pt;}
.x64_c00429{left:564.960000pt;}
.xe1_c00429{left:566.293333pt;}
.xed_c00429{left:568.000000pt;}
.x104_c00429{left:569.333333pt;}
.x8a_c00429{left:573.333333pt;}
.xe8_c00429{left:574.666667pt;}
.xbc_c00429{left:576.000000pt;}
.xf4_c00429{left:580.373333pt;}
.xfc_c00429{left:584.373333pt;}
.xc0_c00429{left:585.706667pt;}
.x8b_c00429{left:586.666667pt;}
.x105_c00429{left:588.000000pt;}
.xe_c00429{left:588.960000pt;}
.x60_c00429{left:590.293333pt;}
.x102_c00429{left:592.373333pt;}
.x9e_c00429{left:594.293333pt;}
.xfd_c00429{left:596.000000pt;}
.x1d_c00429{left:597.333333pt;}
.x43_c00429{left:598.666667pt;}
.x8c_c00429{left:600.000000pt;}
.xc7_c00429{left:604.000000pt;}
.x97_c00429{left:605.706667pt;}
.xf7_c00429{left:606.666667pt;}
.x39_c00429{left:608.373333pt;}
.xc1_c00429{left:610.293333pt;}
.xf5_c00429{left:612.000000pt;}
.xf_c00429{left:612.960000pt;}
.xe9_c00429{left:614.666667pt;}
.x106_c00429{left:617.706667pt;}
.xbd_c00429{left:620.373333pt;}
.xa4_c00429{left:621.706667pt;}
.xe4_c00429{left:624.000000pt;}
.x58_c00429{left:624.960000pt;}
.xd8_c00429{left:629.706667pt;}
.xac_c00429{left:630.666667pt;}
.x9f_c00429{left:636.000000pt;}
.x84_c00429{left:636.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_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_dd2acdda6123e565581a8a63.woff2')format("woff");}.ff1_c00430{font-family:ff1_c00430;line-height:1.688965;font-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_c00430{transform:matrix(0.006560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.006560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.006560,0.000000,0.000000,0.250000,0,0);}
.m46_c00430{transform:matrix(0.009498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009498,0.000000,0.000000,0.250000,0,0);}
.m3b_c00430{transform:matrix(0.009611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009611,0.000000,0.000000,0.250000,0,0);}
.m47_c00430{transform:matrix(0.011420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011420,0.000000,0.000000,0.250000,0,0);}
.m37_c00430{transform:matrix(0.014291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014291,0.000000,0.000000,0.250000,0,0);}
.m4b_c00430{transform:matrix(0.014493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014493,0.000000,0.000000,0.250000,0,0);}
.m10_c00430{transform:matrix(0.015894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015894,0.000000,0.000000,0.250000,0,0);}
.m4c_c00430{transform:matrix(0.015943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015943,0.000000,0.000000,0.250000,0,0);}
.m5f_c00430{transform:matrix(0.016452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016452,0.000000,0.000000,0.250000,0,0);}
.mb_c00430{transform:matrix(0.016889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016889,0.000000,0.000000,0.250000,0,0);}
.ma_c00430{transform:matrix(0.017022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017022,0.000000,0.000000,0.250000,0,0);}
.m50_c00430{transform:matrix(0.017196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017196,0.000000,0.000000,0.250000,0,0);}
.m48_c00430{transform:matrix(0.017486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017486,0.000000,0.000000,0.250000,0,0);}
.m4e_c00430{transform:matrix(0.018444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018444,0.000000,0.000000,0.250000,0,0);}
.m5c_c00430{transform:matrix(0.018487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018487,0.000000,0.000000,0.250000,0,0);}
.m4_c00430{transform:matrix(0.018932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018932,0.000000,0.000000,0.250000,0,0);}
.m61_c00430{transform:matrix(0.020416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020416,0.000000,0.000000,0.250000,0,0);}
.m5e_c00430{transform:matrix(0.021304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021304,0.000000,0.000000,0.250000,0,0);}
.m4a_c00430{transform:matrix(0.021472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021472,0.000000,0.000000,0.250000,0,0);}
.m11_c00430{transform:matrix(0.022928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022928,0.000000,0.000000,0.250000,0,0);}
.m9_c00430{transform:matrix(0.023565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023565,0.000000,0.000000,0.250000,0,0);}
.m49_c00430{transform:matrix(0.023857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023857,0.000000,0.000000,0.250000,0,0);}
.m53_c00430{transform:matrix(0.024659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024659,0.000000,0.000000,0.250000,0,0);}
.m2a_c00430{transform:matrix(0.025461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025461,0.000000,0.000000,0.250000,0,0);}
.m59_c00430{transform:matrix(0.025609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025609,0.000000,0.000000,0.250000,0,0);}
.m3f_c00430{transform:matrix(0.026263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026263,0.000000,0.000000,0.250000,0,0);}
.m16_c00430{transform:matrix(0.027159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027159,0.000000,0.000000,0.250000,0,0);}
.me_c00430{transform:matrix(0.028757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028757,0.000000,0.000000,0.250000,0,0);}
.m54_c00430{transform:matrix(0.029333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029333,0.000000,0.000000,0.250000,0,0);}
.m2_c00430{transform:matrix(0.029773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029773,0.000000,0.000000,0.250000,0,0);}
.m1b_c00430{transform:matrix(0.030176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030176,0.000000,0.000000,0.250000,0,0);}
.m35_c00430{transform:matrix(0.030473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030473,0.000000,0.000000,0.250000,0,0);}
.m56_c00430{transform:matrix(0.031676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031676,0.000000,0.000000,0.250000,0,0);}
.m42_c00430{transform:matrix(0.032033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032033,0.000000,0.000000,0.250000,0,0);}
.m55_c00430{transform:matrix(0.032746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032746,0.000000,0.000000,0.250000,0,0);}
.mc_c00430{transform:matrix(0.032985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032985,0.000000,0.000000,0.250000,0,0);}
.md_c00430{transform:matrix(0.034091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034091,0.000000,0.000000,0.250000,0,0);}
.m14_c00430{transform:matrix(0.036671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036671,0.000000,0.000000,0.250000,0,0);}
.m1c_c00430{transform:matrix(0.038765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038765,0.000000,0.000000,0.250000,0,0);}
.m36_c00430{transform:matrix(0.040671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040671,0.000000,0.000000,0.250000,0,0);}
.m17_c00430{transform:matrix(0.041240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041240,0.000000,0.000000,0.250000,0,0);}
.m4d_c00430{transform:matrix(0.041318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041318,0.000000,0.000000,0.250000,0,0);}
.m38_c00430{transform:matrix(0.043640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043640,0.000000,0.000000,0.250000,0,0);}
.m18_c00430{transform:matrix(0.043796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043796,0.000000,0.000000,0.250000,0,0);}
.m3d_c00430{transform:matrix(0.044937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044937,0.000000,0.000000,0.250000,0,0);}
.m1a_c00430{transform:matrix(0.045506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045506,0.000000,0.000000,0.250000,0,0);}
.m57_c00430{transform:matrix(0.045833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045833,0.000000,0.000000,0.250000,0,0);}
.m12_c00430{transform:matrix(0.046544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046544,0.000000,0.000000,0.250000,0,0);}
.m1e_c00430{transform:matrix(0.052901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052901,0.000000,0.000000,0.250000,0,0);}
.m39_c00430{transform:matrix(0.055461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055461,0.000000,0.000000,0.250000,0,0);}
.m19_c00430{transform:matrix(0.056265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056265,0.000000,0.000000,0.250000,0,0);}
.m22_c00430{transform:matrix(0.058181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058181,0.000000,0.000000,0.250000,0,0);}
.m1d_c00430{transform:matrix(0.062412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062412,0.000000,0.000000,0.250000,0,0);}
.m5a_c00430{transform:matrix(0.063260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063260,0.000000,0.000000,0.250000,0,0);}
.m6_c00430{transform:matrix(0.065697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065697,0.000000,0.000000,0.250000,0,0);}
.mf_c00430{transform:matrix(0.066358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066358,0.000000,0.000000,0.250000,0,0);}
.m2e_c00430{transform:matrix(0.067348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067348,0.000000,0.000000,0.250000,0,0);}
.m34_c00430{transform:matrix(0.071227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071227,0.000000,0.000000,0.250000,0,0);}
.m29_c00430{transform:matrix(0.076223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076223,0.000000,0.000000,0.250000,0,0);}
.m2d_c00430{transform:matrix(0.077574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077574,0.000000,0.000000,0.250000,0,0);}
.m3c_c00430{transform:matrix(0.077837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077837,0.000000,0.000000,0.250000,0,0);}
.m4f_c00430{transform:matrix(0.079337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079337,0.000000,0.000000,0.250000,0,0);}
.m2f_c00430{transform:matrix(0.080292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080292,0.000000,0.000000,0.250000,0,0);}
.m1f_c00430{transform:matrix(0.080705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080705,0.000000,0.000000,0.250000,0,0);}
.m24_c00430{transform:matrix(0.081805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081805,0.000000,0.000000,0.250000,0,0);}
.m40_c00430{transform:matrix(0.083193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083193,0.000000,0.000000,0.250000,0,0);}
.m13_c00430{transform:matrix(0.085343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085343,0.000000,0.000000,0.250000,0,0);}
.m30_c00430{transform:matrix(0.087447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087447,0.000000,0.000000,0.250000,0,0);}
.m15_c00430{transform:matrix(0.091641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091641,0.000000,0.000000,0.250000,0,0);}
.m31_c00430{transform:matrix(0.091678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091678,0.000000,0.000000,0.250000,0,0);}
.m2b_c00430{transform:matrix(0.099788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099788,0.000000,0.000000,0.250000,0,0);}
.m3a_c00430{transform:matrix(0.100077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100077,0.000000,0.000000,0.250000,0,0);}
.m5_c00430{transform:matrix(0.102958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102958,0.000000,0.000000,0.250000,0,0);}
.m23_c00430{transform:matrix(0.105751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105751,0.000000,0.000000,0.250000,0,0);}
.m33_c00430{transform:matrix(0.116419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116419,0.000000,0.000000,0.250000,0,0);}
.m44_c00430{transform:matrix(0.129406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129406,0.000000,0.000000,0.250000,0,0);}
.m25_c00430{transform:matrix(0.129668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129668,0.000000,0.000000,0.250000,0,0);}
.m26_c00430{transform:matrix(0.166494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166494,0.000000,0.000000,0.250000,0,0);}
.m43_c00430{transform:matrix(0.166512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166512,0.000000,0.000000,0.250000,0,0);}
.m27_c00430{transform:matrix(0.194502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194502,0.000000,0.000000,0.250000,0,0);}
.m45_c00430{transform:matrix(0.195539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195539,0.000000,0.000000,0.250000,0,0);}
.m3_c00430{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m28_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);}
.m32_c00430{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m52_c00430{transform:matrix(0.318382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318382,0.000000,0.000000,0.250000,0,0);}
.m62_c00430{transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);}
.m2c_c00430{transform:matrix(0.332599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332599,0.000000,0.000000,0.250000,0,0);}
.m41_c00430{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_c00430{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00430{transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);}
.m5d_c00430{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.m1_c00430{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m21_c00430{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m60_c00430{transform:matrix(0.524840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524840,0.000000,0.000000,0.250000,0,0);}
.m0_c00430{transform:matrix(0.679487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679487,0.000000,0.000000,0.250000,0,0);}
.m3e_c00430{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m20_c00430{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.m51_c00430{transform:matrix(1.756637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.756637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.756637,0.000000,0.000000,0.250000,0,0);}
.m58_c00430{transform:matrix(3.482456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.482456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.482456,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;}
.fs1e_c00430{font-size:3.420000px;}
.fs1b_c00430{font-size:6.780000px;}
.fs12_c00430{font-size:11.880000px;}
.fs15_c00430{font-size:13.620000px;}
.fs0_c00430{font-size:18.720000px;}
.fs13_c00430{font-size:20.400000px;}
.fs1_c00430{font-size:28.920000px;}
.fs3_c00430{font-size:32.340000px;}
.fs18_c00430{font-size:35.700000px;}
.fsf_c00430{font-size:39.120000px;}
.fse_c00430{font-size:42.540000px;}
.fs11_c00430{font-size:49.320000px;}
.fs5_c00430{font-size:52.740000px;}
.fs1d_c00430{font-size:61.200000px;}
.fs10_c00430{font-size:64.620000px;}
.fs6_c00430{font-size:68.040000px;}
.fs1c_c00430{font-size:71.460000px;}
.fs14_c00430{font-size:74.820000px;}
.fs19_c00430{font-size:78.240000px;}
.fs16_c00430{font-size:85.020000px;}
.fsc_c00430{font-size:88.440000px;}
.fsb_c00430{font-size:91.860000px;}
.fs2_c00430{font-size:95.220000px;}
.fs1a_c00430{font-size:102.060000px;}
.fsd_c00430{font-size:110.580000px;}
.fs8_c00430{font-size:113.940000px;}
.fs4_c00430{font-size:127.560000px;}
.fs17_c00430{font-size:132.660000px;}
.fsa_c00430{font-size:139.440000px;}
.fs9_c00430{font-size:146.280000px;}
.fs7_c00430{font-size:205.800000px;}
.fs1f_c00430{font-size:241.500000px;}
.fs20_c00430{font-size:248.340000px;}
.y0_c00430{bottom:0.000000px;}
.y99_c00430{bottom:253.680000px;}
.y30_c00430{bottom:254.325000px;}
.y4a_c00430{bottom:254.955000px;}
.y21_c00430{bottom:255.180000px;}
.y73_c00430{bottom:256.455000px;}
.y13_c00430{bottom:256.650000px;}
.y5e_c00430{bottom:257.505000px;}
.y7f_c00430{bottom:257.730000px;}
.y8f_c00430{bottom:257.925000px;}
.y78_c00430{bottom:259.005000px;}
.yaf_c00430{bottom:259.200000px;}
.y61_c00430{bottom:260.280000px;}
.y93_c00430{bottom:260.700000px;}
.y8c_c00430{bottom:261.555000px;}
.y6e_c00430{bottom:264.300000px;}
.yb2_c00430{bottom:276.645000px;}
.y3e_c00430{bottom:276.825000px;}
.yb6_c00430{bottom:278.985000px;}
.y52_c00430{bottom:280.035000px;}
.y22_c00430{bottom:281.730000px;}
.y4f_c00430{bottom:282.180000px;}
.y80_c00430{bottom:284.550000px;}
.y74_c00430{bottom:284.730000px;}
.y9a_c00430{bottom:286.410000px;}
.y4b_c00430{bottom:287.505000px;}
.y90_c00430{bottom:289.050000px;}
.y5f_c00430{bottom:292.455000px;}
.y79_c00430{bottom:293.730000px;}
.y3f_c00430{bottom:297.180000px;}
.y62_c00430{bottom:298.230000px;}
.yb0_c00430{bottom:299.730000px;}
.y81_c00430{bottom:302.730000px;}
.y8d_c00430{bottom:305.505000px;}
.yb4_c00430{bottom:305.700000px;}
.y50_c00430{bottom:306.180000px;}
.y91_c00430{bottom:312.555000px;}
.y6f_c00430{bottom:317.730000px;}
.y4c_c00430{bottom:319.680000px;}
.y8b_c00430{bottom:324.300000px;}
.y9b_c00430{bottom:324.855000px;}
.yb1_c00430{bottom:325.275000px;}
.yb5_c00430{bottom:326.130000px;}
.yad_c00430{bottom:329.355000px;}
.y63_c00430{bottom:329.955000px;}
.y53_c00430{bottom:330.180000px;}
.y9c_c00430{bottom:334.275000px;}
.y5_c00430{bottom:341.460000px;}
.y9d_c00430{bottom:344.550000px;}
.yb3_c00430{bottom:347.775000px;}
.yb7_c00430{bottom:349.050000px;}
.yae_c00430{bottom:352.275000px;}
.y6_c00430{bottom:392.955000px;}
.y9e_c00430{bottom:395.505000px;}
.y70_c00430{bottom:396.180000px;}
.y64_c00430{bottom:397.680000px;}
.y31_c00430{bottom:398.775000px;}
.y23_c00430{bottom:398.955000px;}
.y82_c00430{bottom:399.825000px;}
.y14_c00430{bottom:400.680000px;}
.y4d_c00430{bottom:401.325000px;}
.y40_c00430{bottom:402.405000px;}
.y54_c00430{bottom:404.550000px;}
.y7_c00430{bottom:423.150000px;}
.y9f_c00430{bottom:455.925000px;}
.y32_c00430{bottom:457.275000px;}
.y55_c00430{bottom:457.680000px;}
.y60_c00430{bottom:458.775000px;}
.y24_c00430{bottom:458.955000px;}
.y15_c00430{bottom:459.180000px;}
.yb8_c00430{bottom:459.825000px;}
.y83_c00430{bottom:461.325000px;}
.y41_c00430{bottom:462.405000px;}
.y5a_c00430{bottom:465.630000px;}
.y8_c00430{bottom:473.805000px;}
.y71_c00430{bottom:516.180000px;}
.ya0_c00430{bottom:516.585000px;}
.y5b_c00430{bottom:517.680000px;}
.y33_c00430{bottom:518.775000px;}
.y97_c00430{bottom:519.825000px;}
.y25_c00430{bottom:520.035000px;}
.y16_c00430{bottom:520.680000px;}
.yb9_c00430{bottom:520.905000px;}
.y51_c00430{bottom:521.325000px;}
.y42_c00430{bottom:522.405000px;}
.y56_c00430{bottom:524.550000px;}
.y9_c00430{bottom:544.905000px;}
.ya1_c00430{bottom:571.005000px;}
.y72_c00430{bottom:571.680000px;}
.ya_c00430{bottom:572.685000px;}
.y65_c00430{bottom:573.180000px;}
.y7a_c00430{bottom:574.680000px;}
.y84_c00430{bottom:575.325000px;}
.y17_c00430{bottom:576.180000px;}
.yba_c00430{bottom:576.405000px;}
.y94_c00430{bottom:576.825000px;}
.y34_c00430{bottom:577.275000px;}
.y43_c00430{bottom:578.775000px;}
.y26_c00430{bottom:580.035000px;}
.ya2_c00430{bottom:626.505000px;}
.y66_c00430{bottom:627.180000px;}
.yb_c00430{bottom:628.590000px;}
.y7b_c00430{bottom:628.680000px;}
.y95_c00430{bottom:629.325000px;}
.y27_c00430{bottom:629.535000px;}
.y85_c00430{bottom:630.825000px;}
.y35_c00430{bottom:632.775000px;}
.y18_c00430{bottom:633.180000px;}
.y3_c00430{bottom:642.555000px;}
.y28_c00430{bottom:674.955000px;}
.ya3_c00430{bottom:677.925000px;}
.y67_c00430{bottom:678.180000px;}
.y75_c00430{bottom:679.680000px;}
.y4_c00430{bottom:681.825000px;}
.yc_c00430{bottom:682.905000px;}
.y19_c00430{bottom:683.325000px;}
.y36_c00430{bottom:683.775000px;}
.y4e_c00430{bottom:684.195000px;}
.y57_c00430{bottom:686.130000px;}
.y44_c00430{bottom:686.550000px;}
.yd_c00430{bottom:712.155000px;}
.y76_c00430{bottom:712.275000px;}
.y29_c00430{bottom:718.230000px;}
.y68_c00430{bottom:724.680000px;}
.ya4_c00430{bottom:725.505000px;}
.y7c_c00430{bottom:726.180000px;}
.y86_c00430{bottom:728.325000px;}
.y1a_c00430{bottom:729.825000px;}
.y37_c00430{bottom:730.275000px;}
.ye_c00430{bottom:771.135000px;}
.ya5_c00430{bottom:779.505000px;}
.y69_c00430{bottom:780.180000px;}
.y38_c00430{bottom:781.275000px;}
.y1b_c00430{bottom:781.680000px;}
.y2a_c00430{bottom:782.535000px;}
.y45_c00430{bottom:783.825000px;}
.y58_c00430{bottom:787.050000px;}
.y5c_c00430{bottom:788.130000px;}
.yf_c00430{bottom:814.200000px;}
.ya6_c00430{bottom:836.730000px;}
.y6a_c00430{bottom:837.180000px;}
.y87_c00430{bottom:840.825000px;}
.y39_c00430{bottom:842.775000px;}
.y1c_c00430{bottom:843.180000px;}
.y2b_c00430{bottom:844.035000px;}
.ya7_c00430{bottom:858.420000px;}
.y10_c00430{bottom:861.750000px;}
.y2c_c00430{bottom:890.730000px;}
.y6b_c00430{bottom:892.680000px;}
.ya8_c00430{bottom:893.085000px;}
.y92_c00430{bottom:894.180000px;}
.ybb_c00430{bottom:894.825000px;}
.y98_c00430{bottom:895.905000px;}
.y1d_c00430{bottom:896.325000px;}
.y3a_c00430{bottom:898.275000px;}
.y59_c00430{bottom:899.130000px;}
.y46_c00430{bottom:899.550000px;}
.y5d_c00430{bottom:900.630000px;}
.y11_c00430{bottom:909.150000px;}
.ya9_c00430{bottom:938.505000px;}
.y2d_c00430{bottom:939.180000px;}
.y7d_c00430{bottom:940.245000px;}
.y8e_c00430{bottom:940.680000px;}
.y88_c00430{bottom:942.405000px;}
.y1e_c00430{bottom:942.825000px;}
.y3b_c00430{bottom:943.275000px;}
.y47_c00430{bottom:944.775000px;}
.y12_c00430{bottom:951.090000px;}
.y77_c00430{bottom:988.680000px;}
.yaa_c00430{bottom:989.505000px;}
.y6c_c00430{bottom:990.180000px;}
.y89_c00430{bottom:992.325000px;}
.y96_c00430{bottom:993.825000px;}
.y3c_c00430{bottom:994.275000px;}
.y48_c00430{bottom:995.775000px;}
.y1f_c00430{bottom:996.180000px;}
.y2e_c00430{bottom:997.035000px;}
.yab_c00430{bottom:1045.035000px;}
.y6d_c00430{bottom:1048.680000px;}
.y7e_c00430{bottom:1050.180000px;}
.y8a_c00430{bottom:1052.325000px;}
.y3d_c00430{bottom:1054.275000px;}
.y2f_c00430{bottom:1054.455000px;}
.y49_c00430{bottom:1055.550000px;}
.y20_c00430{bottom:1056.180000px;}
.yac_c00430{bottom:1065.630000px;}
.y2_c00430{bottom:1098.405000px;}
.y1_c00430{bottom:1101.630000px;}
.h1f_c00430{height:4.206533px;}
.h1c_c00430{height:8.339268px;}
.h13_c00430{height:14.612168px;}
.h16_c00430{height:16.752334px;}
.h1_c00430{height:23.025234px;}
.h14_c00430{height:25.091602px;}
.h2_c00430{height:35.571035px;}
.h4_c00430{height:39.777568px;}
.h19_c00430{height:43.910303px;}
.h10_c00430{height:48.116836px;}
.hf_c00430{height:52.323369px;}
.h12_c00430{height:60.662637px;}
.h6_c00430{height:64.869170px;}
.h1e_c00430{height:75.274805px;}
.h11_c00430{height:79.481338px;}
.h7_c00430{height:83.687871px;}
.h1d_c00430{height:87.894404px;}
.h15_c00430{height:92.027139px;}
.h1a_c00430{height:96.233672px;}
.h17_c00430{height:104.572939px;}
.hd_c00430{height:108.779473px;}
.hc_c00430{height:112.986006px;}
.h3_c00430{height:117.118740px;}
.h1b_c00430{height:125.531807px;}
.he_c00430{height:136.011240px;}
.h9_c00430{height:140.143975px;}
.h5_c00430{height:156.896309px;}
.h18_c00430{height:163.169209px;}
.hb_c00430{height:171.508477px;}
.ha_c00430{height:179.921543px;}
.h8_c00430{height:253.129980px;}
.h20_c00430{height:297.040283px;}
.h21_c00430{height:305.453350px;}
.h0_c00430{height:1335.000000px;}
.w0_c00430{width:880.500000px;}
.x0_c00430{left:0.000000px;}
.x3_c00430{left:256.500000px;}
.x4_c00430{left:258.000000px;}
.x5_c00430{left:279.225000px;}
.x6_c00430{left:280.920000px;}
.x7_c00430{left:282.420000px;}
.x9_c00430{left:304.080000px;}
.x8_c00430{left:306.000000px;}
.xc_c00430{left:318.000000px;}
.xa_c00430{left:319.080000px;}
.xb_c00430{left:320.775000px;}
.xf_c00430{left:330.420000px;}
.xe_c00430{left:331.500000px;}
.xd_c00430{left:334.500000px;}
.x10_c00430{left:351.000000px;}
.x11_c00430{left:352.500000px;}
.x13_c00430{left:363.420000px;}
.x12_c00430{left:364.500000px;}
.x14_c00430{left:366.000000px;}
.x17_c00430{left:376.920000px;}
.x15_c00430{left:378.000000px;}
.x16_c00430{left:379.500000px;}
.x19_c00430{left:390.420000px;}
.x18_c00430{left:391.500000px;}
.x1a_c00430{left:393.000000px;}
.x1b_c00430{left:404.580000px;}
.x1c_c00430{left:405.855000px;}
.x1_c00430{left:411.000000px;}
.x1f_c00430{left:417.420000px;}
.x1d_c00430{left:418.500000px;}
.x1e_c00430{left:420.420000px;}
.x22_c00430{left:444.000000px;}
.x21_c00430{left:445.080000px;}
.x20_c00430{left:447.855000px;}
.x24_c00430{left:457.500000px;}
.x23_c00430{left:458.580000px;}
.x26_c00430{left:471.000000px;}
.x25_c00430{left:472.500000px;}
.x27_c00430{left:485.145000px;}
.x28_c00430{left:486.855000px;}
.x2b_c00430{left:498.000000px;}
.x2a_c00430{left:499.080000px;}
.x29_c00430{left:500.145000px;}
.x2d_c00430{left:511.500000px;}
.x2c_c00430{left:512.580000px;}
.x2e_c00430{left:526.080000px;}
.x2f_c00430{left:527.355000px;}
.x32_c00430{left:539.580000px;}
.x30_c00430{left:540.645000px;}
.x31_c00430{left:541.920000px;}
.x33_c00430{left:552.645000px;}
.x34_c00430{left:567.000000px;}
.x36_c00430{left:580.500000px;}
.x35_c00430{left:581.580000px;}
.x37_c00430{left:583.920000px;}
.x38_c00430{left:589.920000px;}
.x3b_c00430{left:594.000000px;}
.x39_c00430{left:595.500000px;}
.x3a_c00430{left:597.420000px;}
.x3d_c00430{left:607.080000px;}
.x3c_c00430{left:608.145000px;}
.x3e_c00430{left:610.275000px;}
.x41_c00430{left:621.000000px;}
.x3f_c00430{left:622.500000px;}
.x40_c00430{left:624.000000px;}
.x2_c00430{left:708.000000px;}
@media print{
.v0_c00430{vertical-align:0.000000pt;}
.ls0_c00430{letter-spacing:0.000000pt;}
.ws0_c00430{word-spacing:0.000000pt;}
.fs1e_c00430{font-size:3.040000pt;}
.fs1b_c00430{font-size:6.026667pt;}
.fs12_c00430{font-size:10.560000pt;}
.fs15_c00430{font-size:12.106667pt;}
.fs0_c00430{font-size:16.640000pt;}
.fs13_c00430{font-size:18.133333pt;}
.fs1_c00430{font-size:25.706667pt;}
.fs3_c00430{font-size:28.746667pt;}
.fs18_c00430{font-size:31.733333pt;}
.fsf_c00430{font-size:34.773333pt;}
.fse_c00430{font-size:37.813333pt;}
.fs11_c00430{font-size:43.840000pt;}
.fs5_c00430{font-size:46.880000pt;}
.fs1d_c00430{font-size:54.400000pt;}
.fs10_c00430{font-size:57.440000pt;}
.fs6_c00430{font-size:60.480000pt;}
.fs1c_c00430{font-size:63.520000pt;}
.fs14_c00430{font-size:66.506667pt;}
.fs19_c00430{font-size:69.546667pt;}
.fs16_c00430{font-size:75.573333pt;}
.fsc_c00430{font-size:78.613333pt;}
.fsb_c00430{font-size:81.653333pt;}
.fs2_c00430{font-size:84.640000pt;}
.fs1a_c00430{font-size:90.720000pt;}
.fsd_c00430{font-size:98.293333pt;}
.fs8_c00430{font-size:101.280000pt;}
.fs4_c00430{font-size:113.386667pt;}
.fs17_c00430{font-size:117.920000pt;}
.fsa_c00430{font-size:123.946667pt;}
.fs9_c00430{font-size:130.026667pt;}
.fs7_c00430{font-size:182.933333pt;}
.fs1f_c00430{font-size:214.666667pt;}
.fs20_c00430{font-size:220.746667pt;}
.y0_c00430{bottom:0.000000pt;}
.y99_c00430{bottom:225.493333pt;}
.y30_c00430{bottom:226.066667pt;}
.y4a_c00430{bottom:226.626667pt;}
.y21_c00430{bottom:226.826667pt;}
.y73_c00430{bottom:227.960000pt;}
.y13_c00430{bottom:228.133333pt;}
.y5e_c00430{bottom:228.893333pt;}
.y7f_c00430{bottom:229.093333pt;}
.y8f_c00430{bottom:229.266667pt;}
.y78_c00430{bottom:230.226667pt;}
.yaf_c00430{bottom:230.400000pt;}
.y61_c00430{bottom:231.360000pt;}
.y93_c00430{bottom:231.733333pt;}
.y8c_c00430{bottom:232.493333pt;}
.y6e_c00430{bottom:234.933333pt;}
.yb2_c00430{bottom:245.906667pt;}
.y3e_c00430{bottom:246.066667pt;}
.yb6_c00430{bottom:247.986667pt;}
.y52_c00430{bottom:248.920000pt;}
.y22_c00430{bottom:250.426667pt;}
.y4f_c00430{bottom:250.826667pt;}
.y80_c00430{bottom:252.933333pt;}
.y74_c00430{bottom:253.093333pt;}
.y9a_c00430{bottom:254.586667pt;}
.y4b_c00430{bottom:255.560000pt;}
.y90_c00430{bottom:256.933333pt;}
.y5f_c00430{bottom:259.960000pt;}
.y79_c00430{bottom:261.093333pt;}
.y3f_c00430{bottom:264.160000pt;}
.y62_c00430{bottom:265.093333pt;}
.yb0_c00430{bottom:266.426667pt;}
.y81_c00430{bottom:269.093333pt;}
.y8d_c00430{bottom:271.560000pt;}
.yb4_c00430{bottom:271.733333pt;}
.y50_c00430{bottom:272.160000pt;}
.y91_c00430{bottom:277.826667pt;}
.y6f_c00430{bottom:282.426667pt;}
.y4c_c00430{bottom:284.160000pt;}
.y8b_c00430{bottom:288.266667pt;}
.y9b_c00430{bottom:288.760000pt;}
.yb1_c00430{bottom:289.133333pt;}
.yb5_c00430{bottom:289.893333pt;}
.yad_c00430{bottom:292.760000pt;}
.y63_c00430{bottom:293.293333pt;}
.y53_c00430{bottom:293.493333pt;}
.y9c_c00430{bottom:297.133333pt;}
.y5_c00430{bottom:303.520000pt;}
.y9d_c00430{bottom:306.266667pt;}
.yb3_c00430{bottom:309.133333pt;}
.yb7_c00430{bottom:310.266667pt;}
.yae_c00430{bottom:313.133333pt;}
.y6_c00430{bottom:349.293333pt;}
.y9e_c00430{bottom:351.560000pt;}
.y70_c00430{bottom:352.160000pt;}
.y64_c00430{bottom:353.493333pt;}
.y31_c00430{bottom:354.466667pt;}
.y23_c00430{bottom:354.626667pt;}
.y82_c00430{bottom:355.400000pt;}
.y14_c00430{bottom:356.160000pt;}
.y4d_c00430{bottom:356.733333pt;}
.y40_c00430{bottom:357.693333pt;}
.y54_c00430{bottom:359.600000pt;}
.y7_c00430{bottom:376.133333pt;}
.y9f_c00430{bottom:405.266667pt;}
.y32_c00430{bottom:406.466667pt;}
.y55_c00430{bottom:406.826667pt;}
.y60_c00430{bottom:407.800000pt;}
.y24_c00430{bottom:407.960000pt;}
.y15_c00430{bottom:408.160000pt;}
.yb8_c00430{bottom:408.733333pt;}
.y83_c00430{bottom:410.066667pt;}
.y41_c00430{bottom:411.026667pt;}
.y5a_c00430{bottom:413.893333pt;}
.y8_c00430{bottom:421.160000pt;}
.y71_c00430{bottom:458.826667pt;}
.ya0_c00430{bottom:459.186667pt;}
.y5b_c00430{bottom:460.160000pt;}
.y33_c00430{bottom:461.133333pt;}
.y97_c00430{bottom:462.066667pt;}
.y25_c00430{bottom:462.253333pt;}
.y16_c00430{bottom:462.826667pt;}
.yb9_c00430{bottom:463.026667pt;}
.y51_c00430{bottom:463.400000pt;}
.y42_c00430{bottom:464.360000pt;}
.y56_c00430{bottom:466.266667pt;}
.y9_c00430{bottom:484.360000pt;}
.ya1_c00430{bottom:507.560000pt;}
.y72_c00430{bottom:508.160000pt;}
.ya_c00430{bottom:509.053333pt;}
.y65_c00430{bottom:509.493333pt;}
.y7a_c00430{bottom:510.826667pt;}
.y84_c00430{bottom:511.400000pt;}
.y17_c00430{bottom:512.160000pt;}
.yba_c00430{bottom:512.360000pt;}
.y94_c00430{bottom:512.733333pt;}
.y34_c00430{bottom:513.133333pt;}
.y43_c00430{bottom:514.466667pt;}
.y26_c00430{bottom:515.586667pt;}
.ya2_c00430{bottom:556.893333pt;}
.y66_c00430{bottom:557.493333pt;}
.yb_c00430{bottom:558.746667pt;}
.y7b_c00430{bottom:558.826667pt;}
.y95_c00430{bottom:559.400000pt;}
.y27_c00430{bottom:559.586667pt;}
.y85_c00430{bottom:560.733333pt;}
.y35_c00430{bottom:562.466667pt;}
.y18_c00430{bottom:562.826667pt;}
.y3_c00430{bottom:571.160000pt;}
.y28_c00430{bottom:599.960000pt;}
.ya3_c00430{bottom:602.600000pt;}
.y67_c00430{bottom:602.826667pt;}
.y75_c00430{bottom:604.160000pt;}
.y4_c00430{bottom:606.066667pt;}
.yc_c00430{bottom:607.026667pt;}
.y19_c00430{bottom:607.400000pt;}
.y36_c00430{bottom:607.800000pt;}
.y4e_c00430{bottom:608.173333pt;}
.y57_c00430{bottom:609.893333pt;}
.y44_c00430{bottom:610.266667pt;}
.yd_c00430{bottom:633.026667pt;}
.y76_c00430{bottom:633.133333pt;}
.y29_c00430{bottom:638.426667pt;}
.y68_c00430{bottom:644.160000pt;}
.ya4_c00430{bottom:644.893333pt;}
.y7c_c00430{bottom:645.493333pt;}
.y86_c00430{bottom:647.400000pt;}
.y1a_c00430{bottom:648.733333pt;}
.y37_c00430{bottom:649.133333pt;}
.ye_c00430{bottom:685.453333pt;}
.ya5_c00430{bottom:692.893333pt;}
.y69_c00430{bottom:693.493333pt;}
.y38_c00430{bottom:694.466667pt;}
.y1b_c00430{bottom:694.826667pt;}
.y2a_c00430{bottom:695.586667pt;}
.y45_c00430{bottom:696.733333pt;}
.y58_c00430{bottom:699.600000pt;}
.y5c_c00430{bottom:700.560000pt;}
.yf_c00430{bottom:723.733333pt;}
.ya6_c00430{bottom:743.760000pt;}
.y6a_c00430{bottom:744.160000pt;}
.y87_c00430{bottom:747.400000pt;}
.y39_c00430{bottom:749.133333pt;}
.y1c_c00430{bottom:749.493333pt;}
.y2b_c00430{bottom:750.253333pt;}
.ya7_c00430{bottom:763.040000pt;}
.y10_c00430{bottom:766.000000pt;}
.y2c_c00430{bottom:791.760000pt;}
.y6b_c00430{bottom:793.493333pt;}
.ya8_c00430{bottom:793.853333pt;}
.y92_c00430{bottom:794.826667pt;}
.ybb_c00430{bottom:795.400000pt;}
.y98_c00430{bottom:796.360000pt;}
.y1d_c00430{bottom:796.733333pt;}
.y3a_c00430{bottom:798.466667pt;}
.y59_c00430{bottom:799.226667pt;}
.y46_c00430{bottom:799.600000pt;}
.y5d_c00430{bottom:800.560000pt;}
.y11_c00430{bottom:808.133333pt;}
.ya9_c00430{bottom:834.226667pt;}
.y2d_c00430{bottom:834.826667pt;}
.y7d_c00430{bottom:835.773333pt;}
.y8e_c00430{bottom:836.160000pt;}
.y88_c00430{bottom:837.693333pt;}
.y1e_c00430{bottom:838.066667pt;}
.y3b_c00430{bottom:838.466667pt;}
.y47_c00430{bottom:839.800000pt;}
.y12_c00430{bottom:845.413333pt;}
.y77_c00430{bottom:878.826667pt;}
.yaa_c00430{bottom:879.560000pt;}
.y6c_c00430{bottom:880.160000pt;}
.y89_c00430{bottom:882.066667pt;}
.y96_c00430{bottom:883.400000pt;}
.y3c_c00430{bottom:883.800000pt;}
.y48_c00430{bottom:885.133333pt;}
.y1f_c00430{bottom:885.493333pt;}
.y2e_c00430{bottom:886.253333pt;}
.yab_c00430{bottom:928.920000pt;}
.y6d_c00430{bottom:932.160000pt;}
.y7e_c00430{bottom:933.493333pt;}
.y8a_c00430{bottom:935.400000pt;}
.y3d_c00430{bottom:937.133333pt;}
.y2f_c00430{bottom:937.293333pt;}
.y49_c00430{bottom:938.266667pt;}
.y20_c00430{bottom:938.826667pt;}
.yac_c00430{bottom:947.226667pt;}
.y2_c00430{bottom:976.360000pt;}
.y1_c00430{bottom:979.226667pt;}
.h1f_c00430{height:3.739141pt;}
.h1c_c00430{height:7.412682pt;}
.h13_c00430{height:12.988594pt;}
.h16_c00430{height:14.890964pt;}
.h1_c00430{height:20.466875pt;}
.h14_c00430{height:22.303646pt;}
.h2_c00430{height:31.618698pt;}
.h4_c00430{height:35.357839pt;}
.h19_c00430{height:39.031380pt;}
.h10_c00430{height:42.770521pt;}
.hf_c00430{height:46.509661pt;}
.h12_c00430{height:53.922344pt;}
.h6_c00430{height:57.661484pt;}
.h1e_c00430{height:66.910937pt;}
.h11_c00430{height:70.650078pt;}
.h7_c00430{height:74.389219pt;}
.h1d_c00430{height:78.128359pt;}
.h15_c00430{height:81.801901pt;}
.h1a_c00430{height:85.541042pt;}
.h17_c00430{height:92.953724pt;}
.hd_c00430{height:96.692865pt;}
.hc_c00430{height:100.432005pt;}
.h3_c00430{height:104.105547pt;}
.h1b_c00430{height:111.583828pt;}
.he_c00430{height:120.898880pt;}
.h9_c00430{height:124.572422pt;}
.h5_c00430{height:139.463385pt;}
.h18_c00430{height:145.039297pt;}
.hb_c00430{height:152.451979pt;}
.ha_c00430{height:159.930260pt;}
.h8_c00430{height:225.004427pt;}
.h20_c00430{height:264.035807pt;}
.h21_c00430{height:271.514089pt;}
.h0_c00430{height:1186.666667pt;}
.w0_c00430{width:782.666667pt;}
.x0_c00430{left:0.000000pt;}
.x3_c00430{left:228.000000pt;}
.x4_c00430{left:229.333333pt;}
.x5_c00430{left:248.200000pt;}
.x6_c00430{left:249.706667pt;}
.x7_c00430{left:251.040000pt;}
.x9_c00430{left:270.293333pt;}
.x8_c00430{left:272.000000pt;}
.xc_c00430{left:282.666667pt;}
.xa_c00430{left:283.626667pt;}
.xb_c00430{left:285.133333pt;}
.xf_c00430{left:293.706667pt;}
.xe_c00430{left:294.666667pt;}
.xd_c00430{left:297.333333pt;}
.x10_c00430{left:312.000000pt;}
.x11_c00430{left:313.333333pt;}
.x13_c00430{left:323.040000pt;}
.x12_c00430{left:324.000000pt;}
.x14_c00430{left:325.333333pt;}
.x17_c00430{left:335.040000pt;}
.x15_c00430{left:336.000000pt;}
.x16_c00430{left:337.333333pt;}
.x19_c00430{left:347.040000pt;}
.x18_c00430{left:348.000000pt;}
.x1a_c00430{left:349.333333pt;}
.x1b_c00430{left:359.626667pt;}
.x1c_c00430{left:360.760000pt;}
.x1_c00430{left:365.333333pt;}
.x1f_c00430{left:371.040000pt;}
.x1d_c00430{left:372.000000pt;}
.x1e_c00430{left:373.706667pt;}
.x22_c00430{left:394.666667pt;}
.x21_c00430{left:395.626667pt;}
.x20_c00430{left:398.093333pt;}
.x24_c00430{left:406.666667pt;}
.x23_c00430{left:407.626667pt;}
.x26_c00430{left:418.666667pt;}
.x25_c00430{left:420.000000pt;}
.x27_c00430{left:431.240000pt;}
.x28_c00430{left:432.760000pt;}
.x2b_c00430{left:442.666667pt;}
.x2a_c00430{left:443.626667pt;}
.x29_c00430{left:444.573333pt;}
.x2d_c00430{left:454.666667pt;}
.x2c_c00430{left:455.626667pt;}
.x2e_c00430{left:467.626667pt;}
.x2f_c00430{left:468.760000pt;}
.x32_c00430{left:479.626667pt;}
.x30_c00430{left:480.573333pt;}
.x31_c00430{left:481.706667pt;}
.x33_c00430{left:491.240000pt;}
.x34_c00430{left:504.000000pt;}
.x36_c00430{left:516.000000pt;}
.x35_c00430{left:516.960000pt;}
.x37_c00430{left:519.040000pt;}
.x38_c00430{left:524.373333pt;}
.x3b_c00430{left:528.000000pt;}
.x39_c00430{left:529.333333pt;}
.x3a_c00430{left:531.040000pt;}
.x3d_c00430{left:539.626667pt;}
.x3c_c00430{left:540.573333pt;}
.x3e_c00430{left:542.466667pt;}
.x41_c00430{left:552.000000pt;}
.x3f_c00430{left:553.333333pt;}
.x40_c00430{left:554.666667pt;}
.x2_c00430{left:629.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3799fbe5d453147c00243232.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:1.688965;font-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_c00431{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.mcd_c00431{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m56_c00431{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mc8_c00431{transform:matrix(0.363445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363445,0.000000,0.000000,0.250000,0,0);}
.m89_c00431{transform:matrix(0.363866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363866,0.000000,0.000000,0.250000,0,0);}
.m8d_c00431{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m70_c00431{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m6a_c00431{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mb6_c00431{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.m3d_c00431{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m84_c00431{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m61_c00431{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m62_c00431{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.mc3_c00431{transform:matrix(0.382285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382285,0.000000,0.000000,0.250000,0,0);}
.m25_c00431{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m42_c00431{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.ma2_c00431{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.m6e_c00431{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m22_c00431{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m2a_c00431{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.ma4_c00431{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.mbf_c00431{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.md5_c00431{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m82_c00431{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mb4_c00431{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m78_c00431{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m8f_c00431{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m93_c00431{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m4e_c00431{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.mc4_c00431{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m91_c00431{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m40_c00431{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mcc_c00431{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m1f_c00431{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m15_c00431{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.ma6_c00431{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m9f_c00431{transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);}
.mab_c00431{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m80_c00431{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.mc1_c00431{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.ma1_c00431{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m17_c00431{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m86_c00431{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.ma_c00431{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mde_c00431{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mc9_c00431{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.md7_c00431{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m8a_c00431{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m1a_c00431{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.md4_c00431{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.ma0_c00431{transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);}
.mb2_c00431{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m68_c00431{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m32_c00431{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m69_c00431{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m7c_c00431{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m12_c00431{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m46_c00431{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m97_c00431{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.mad_c00431{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m6b_c00431{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m1b_c00431{transform:matrix(0.427386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427386,0.000000,0.000000,0.250000,0,0);}
.m7d_c00431{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.mac_c00431{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m18_c00431{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m1c_c00431{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m51_c00431{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m5c_c00431{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.m90_c00431{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mbd_c00431{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m4c_c00431{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.m4a_c00431{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.mb_c00431{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m96_c00431{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m6d_c00431{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mae_c00431{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m55_c00431{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m95_c00431{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m72_c00431{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.m21_c00431{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.m2c_c00431{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m8c_c00431{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m67_c00431{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.mbb_c00431{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.ma3_c00431{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m59_c00431{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.mdb_c00431{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.md_c00431{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m35_c00431{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.m7b_c00431{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m8b_c00431{transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);}
.m47_c00431{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m5f_c00431{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.m2_c00431{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m81_c00431{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.mdf_c00431{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mc7_c00431{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.m7_c00431{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.maa_c00431{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m44_c00431{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m24_c00431{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.md1_c00431{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m14_c00431{transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);}
.m77_c00431{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m3b_c00431{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m60_c00431{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mc2_c00431{transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);}
.m3e_c00431{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m79_c00431{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m94_c00431{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m5a_c00431{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.mbc_c00431{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m4_c00431{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);}
.m87_c00431{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.md8_c00431{transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);}
.mf_c00431{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.mce_c00431{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.md6_c00431{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.mb1_c00431{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m7e_c00431{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mdc_c00431{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m3_c00431{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m3f_c00431{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m48_c00431{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m5d_c00431{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m5b_c00431{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m3c_c00431{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m30_c00431{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m4f_c00431{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.md3_c00431{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m6c_c00431{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m11_c00431{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mb8_c00431{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.mbe_c00431{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mb5_c00431{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m53_c00431{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mcf_c00431{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m26_c00431{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m4b_c00431{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m66_c00431{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.ma8_c00431{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m99_c00431{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m13_c00431{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.ma9_c00431{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m54_c00431{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m16_c00431{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m23_c00431{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m1e_c00431{transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);}
.m2d_c00431{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mc5_c00431{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m64_c00431{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m65_c00431{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m41_c00431{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m2b_c00431{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m19_c00431{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mca_c00431{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m2f_c00431{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m34_c00431{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.ma5_c00431{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.ma7_c00431{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mb7_c00431{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m6_c00431{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m1_c00431{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m2e_c00431{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m38_c00431{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m8_c00431{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m7a_c00431{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m49_c00431{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mc0_c00431{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m4d_c00431{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m9_c00431{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m9c_c00431{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mc6_c00431{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m7f_c00431{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m76_c00431{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m28_c00431{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m9e_c00431{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mcb_c00431{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m8e_c00431{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m1d_c00431{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.md2_c00431{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mc_c00431{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m36_c00431{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m27_c00431{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.maf_c00431{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mda_c00431{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.md9_c00431{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m9b_c00431{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m85_c00431{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.m58_c00431{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m5_c00431{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m57_c00431{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m45_c00431{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m0_c00431{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);}
.m74_c00431{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_c00431{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m39_c00431{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.m73_c00431{transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);}
.mdd_c00431{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mb3_c00431{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.md0_c00431{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.me_c00431{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m10_c00431{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m9a_c00431{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mba_c00431{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mb9_c00431{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mb0_c00431{transform:matrix(0.705128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705128,0.000000,0.000000,0.250000,0,0);}
.m3a_c00431{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.m29_c00431{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m52_c00431{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m75_c00431{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m98_c00431{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m92_c00431{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m71_c00431{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m31_c00431{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m6f_c00431{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m43_c00431{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m37_c00431{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m9d_c00431{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m88_c00431{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m63_c00431{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m5e_c00431{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m83_c00431{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m50_c00431{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws1_c00431{word-spacing:-3.584672px;}
.ws0_c00431{word-spacing:-3.089552px;}
.ws2_c00431{word-spacing:-0.670398px;}
.ws3_c00431{word-spacing:0.000000px;}
.fc0_c00431{color:transparent;}
.fs6_c00431{font-size:3.420000px;}
.fs4_c00431{font-size:18.720000px;}
.fs0_c00431{font-size:20.400000px;}
.fs1_c00431{font-size:25.500000px;}
.fs2_c00431{font-size:28.920000px;}
.fs5_c00431{font-size:32.340000px;}
.fs3_c00431{font-size:35.700000px;}
.fs7_c00431{font-size:39.120000px;}
.y0_c00431{bottom:0.000000px;}
.yca_c00431{bottom:253.245000px;}
.yc8_c00431{bottom:253.905000px;}
.yc7_c00431{bottom:254.130000px;}
.yc9_c00431{bottom:254.970000px;}
.ycb_c00431{bottom:255.405000px;}
.yc3_c00431{bottom:273.405000px;}
.yc6_c00431{bottom:273.825000px;}
.yc5_c00431{bottom:274.470000px;}
.yc4_c00431{bottom:274.905000px;}
.yc0_c00431{bottom:292.245000px;}
.ybe_c00431{bottom:292.905000px;}
.yc2_c00431{bottom:293.325000px;}
.yc1_c00431{bottom:293.970000px;}
.ybf_c00431{bottom:294.405000px;}
.yba_c00431{bottom:310.245000px;}
.ybb_c00431{bottom:310.905000px;}
.ybd_c00431{bottom:311.745000px;}
.yb9_c00431{bottom:313.905000px;}
.ybc_c00431{bottom:315.405000px;}
.yb7_c00431{bottom:328.905000px;}
.yb8_c00431{bottom:331.245000px;}
.yb1_c00431{bottom:350.745000px;}
.yb6_c00431{bottom:352.245000px;}
.yb2_c00431{bottom:352.905000px;}
.yb5_c00431{bottom:353.130000px;}
.yb4_c00431{bottom:353.970000px;}
.yb3_c00431{bottom:354.405000px;}
.yab_c00431{bottom:370.245000px;}
.yb0_c00431{bottom:371.325000px;}
.yad_c00431{bottom:371.745000px;}
.yac_c00431{bottom:372.405000px;}
.yaf_c00431{bottom:373.470000px;}
.yae_c00431{bottom:373.905000px;}
.yaa_c00431{bottom:391.245000px;}
.ya9_c00431{bottom:393.405000px;}
.ya5_c00431{bottom:409.680000px;}
.ya8_c00431{bottom:410.745000px;}
.ya4_c00431{bottom:411.825000px;}
.ya6_c00431{bottom:412.905000px;}
.ya7_c00431{bottom:413.130000px;}
.ya3_c00431{bottom:429.405000px;}
.ya2_c00431{bottom:430.245000px;}
.y9f_c00431{bottom:432.405000px;}
.ya0_c00431{bottom:433.470000px;}
.ya1_c00431{bottom:433.905000px;}
.y9b_c00431{bottom:449.745000px;}
.y9c_c00431{bottom:451.245000px;}
.y9e_c00431{bottom:451.905000px;}
.y9d_c00431{bottom:453.405000px;}
.y98_c00431{bottom:468.405000px;}
.y99_c00431{bottom:470.745000px;}
.y9a_c00431{bottom:471.405000px;}
.y96_c00431{bottom:471.630000px;}
.y97_c00431{bottom:472.905000px;}
.y95_c00431{bottom:487.905000px;}
.y92_c00431{bottom:490.245000px;}
.y94_c00431{bottom:491.130000px;}
.y91_c00431{bottom:491.970000px;}
.y93_c00431{bottom:492.405000px;}
.y8f_c00431{bottom:509.745000px;}
.y90_c00431{bottom:511.905000px;}
.y8e_c00431{bottom:529.245000px;}
.y8d_c00431{bottom:530.130000px;}
.y8c_c00431{bottom:531.405000px;}
.y8a_c00431{bottom:548.745000px;}
.y86_c00431{bottom:549.630000px;}
.y87_c00431{bottom:549.825000px;}
.y88_c00431{bottom:550.245000px;}
.y85_c00431{bottom:550.905000px;}
.y89_c00431{bottom:551.130000px;}
.y8b_c00431{bottom:551.970000px;}
.y82_c00431{bottom:568.245000px;}
.y84_c00431{bottom:569.745000px;}
.y81_c00431{bottom:570.405000px;}
.y83_c00431{bottom:571.905000px;}
.y80_c00431{bottom:586.905000px;}
.y7d_c00431{bottom:587.745000px;}
.y7e_c00431{bottom:589.905000px;}
.y7f_c00431{bottom:591.405000px;}
.y77_c00431{bottom:607.245000px;}
.y79_c00431{bottom:608.745000px;}
.y78_c00431{bottom:609.405000px;}
.y7a_c00431{bottom:609.630000px;}
.y7b_c00431{bottom:610.905000px;}
.y7c_c00431{bottom:611.970000px;}
.y74_c00431{bottom:625.905000px;}
.y72_c00431{bottom:626.970000px;}
.y75_c00431{bottom:628.245000px;}
.y70_c00431{bottom:628.905000px;}
.y71_c00431{bottom:629.130000px;}
.y76_c00431{bottom:629.325000px;}
.y73_c00431{bottom:630.405000px;}
.y6b_c00431{bottom:647.745000px;}
.y6c_c00431{bottom:648.825000px;}
.y6f_c00431{bottom:649.470000px;}
.y6e_c00431{bottom:649.905000px;}
.y6d_c00431{bottom:650.130000px;}
.y68_c00431{bottom:665.745000px;}
.y69_c00431{bottom:667.245000px;}
.y67_c00431{bottom:669.405000px;}
.y6a_c00431{bottom:669.630000px;}
.y65_c00431{bottom:686.745000px;}
.y66_c00431{bottom:686.970000px;}
.y64_c00431{bottom:687.825000px;}
.y63_c00431{bottom:688.905000px;}
.y5f_c00431{bottom:706.245000px;}
.y62_c00431{bottom:707.745000px;}
.y60_c00431{bottom:708.405000px;}
.y61_c00431{bottom:708.630000px;}
.y5e_c00431{bottom:709.470000px;}
.y5b_c00431{bottom:724.905000px;}
.y5c_c00431{bottom:725.745000px;}
.y5a_c00431{bottom:726.630000px;}
.y5d_c00431{bottom:727.245000px;}
.y53_c00431{bottom:745.245000px;}
.y57_c00431{bottom:745.905000px;}
.y55_c00431{bottom:746.745000px;}
.y54_c00431{bottom:747.405000px;}
.y58_c00431{bottom:747.825000px;}
.y59_c00431{bottom:748.470000px;}
.y56_c00431{bottom:748.905000px;}
.y51_c00431{bottom:766.245000px;}
.y50_c00431{bottom:767.130000px;}
.y52_c00431{bottom:767.325000px;}
.y4f_c00431{bottom:768.405000px;}
.y4c_c00431{bottom:785.745000px;}
.y4e_c00431{bottom:787.905000px;}
.y4d_c00431{bottom:788.970000px;}
.y4a_c00431{bottom:805.245000px;}
.y48_c00431{bottom:806.130000px;}
.y49_c00431{bottom:807.405000px;}
.y4b_c00431{bottom:807.630000px;}
.y47_c00431{bottom:823.905000px;}
.y45_c00431{bottom:824.745000px;}
.y43_c00431{bottom:825.630000px;}
.y46_c00431{bottom:825.825000px;}
.y44_c00431{bottom:826.905000px;}
.y40_c00431{bottom:843.405000px;}
.y42_c00431{bottom:844.245000px;}
.y3d_c00431{bottom:845.325000px;}
.y41_c00431{bottom:845.745000px;}
.y3c_c00431{bottom:846.630000px;}
.y3f_c00431{bottom:846.825000px;}
.y3b_c00431{bottom:847.470000px;}
.y3e_c00431{bottom:847.905000px;}
.y3a_c00431{bottom:864.825000px;}
.y37_c00431{bottom:865.245000px;}
.y35_c00431{bottom:865.905000px;}
.y39_c00431{bottom:866.130000px;}
.y38_c00431{bottom:867.405000px;}
.y36_c00431{bottom:867.420000px;}
.y31_c00431{bottom:884.745000px;}
.y30_c00431{bottom:885.405000px;}
.y34_c00431{bottom:885.630000px;}
.y33_c00431{bottom:885.825000px;}
.y32_c00431{bottom:886.905000px;}
.y2f_c00431{bottom:903.825000px;}
.y2a_c00431{bottom:904.245000px;}
.y2b_c00431{bottom:905.130000px;}
.y2e_c00431{bottom:905.325000px;}
.y2c_c00431{bottom:906.405000px;}
.y2d_c00431{bottom:907.470000px;}
.y28_c00431{bottom:922.905000px;}
.y25_c00431{bottom:923.745000px;}
.y27_c00431{bottom:924.630000px;}
.y26_c00431{bottom:925.905000px;}
.y29_c00431{bottom:926.970000px;}
.y1e_c00431{bottom:942.825000px;}
.y23_c00431{bottom:943.245000px;}
.y1d_c00431{bottom:943.905000px;}
.y20_c00431{bottom:944.130000px;}
.y22_c00431{bottom:944.970000px;}
.y21_c00431{bottom:945.405000px;}
.y24_c00431{bottom:945.630000px;}
.y1f_c00431{bottom:946.470000px;}
.y19_c00431{bottom:961.905000px;}
.y1b_c00431{bottom:962.745000px;}
.y18_c00431{bottom:963.825000px;}
.y17_c00431{bottom:964.905000px;}
.y1a_c00431{bottom:965.130000px;}
.y1c_c00431{bottom:965.970000px;}
.y14_c00431{bottom:982.245000px;}
.y13_c00431{bottom:984.405000px;}
.y16_c00431{bottom:984.630000px;}
.y15_c00431{bottom:985.470000px;}
.y12_c00431{bottom:1001.745000px;}
.ye_c00431{bottom:1021.245000px;}
.y11_c00431{bottom:1021.470000px;}
.y10_c00431{bottom:1022.745000px;}
.yd_c00431{bottom:1023.405000px;}
.yf_c00431{bottom:1024.905000px;}
.yb_c00431{bottom:1039.905000px;}
.yc_c00431{bottom:1040.745000px;}
.ya_c00431{bottom:1042.245000px;}
.y7_c00431{bottom:1042.905000px;}
.y9_c00431{bottom:1043.130000px;}
.y8_c00431{bottom:1043.970000px;}
.y3_c00431{bottom:1059.405000px;}
.y6_c00431{bottom:1061.745000px;}
.y4_c00431{bottom:1063.905000px;}
.y5_c00431{bottom:1064.970000px;}
.y2_c00431{bottom:1099.470000px;}
.y1_c00431{bottom:1102.050000px;}
.h7_c00431{height:4.206533px;}
.h5_c00431{height:23.025234px;}
.h1_c00431{height:25.091602px;}
.h2_c00431{height:31.364502px;}
.h3_c00431{height:35.571035px;}
.h6_c00431{height:39.777568px;}
.h4_c00431{height:43.910303px;}
.h8_c00431{height:48.116836px;}
.h0_c00431{height:1335.000000px;}
.w0_c00431{width:880.500000px;}
.x0_c00431{left:0.000000px;}
.x2_c00431{left:151.500000px;}
.x3_c00431{left:152.580000px;}
.xe_c00431{left:154.920000px;}
.xd8_c00431{left:168.000000px;}
.x1b_c00431{left:169.500000px;}
.xaa_c00431{left:171.000000px;}
.x39_c00431{left:173.355000px;}
.x7a_c00431{left:175.920000px;}
.xc6_c00431{left:181.500000px;}
.xab_c00431{left:183.420000px;}
.x26_c00431{left:184.920000px;}
.xe1_c00431{left:186.000000px;}
.x70_c00431{left:189.420000px;}
.xf_c00431{left:190.500000px;}
.x88_c00431{left:191.580000px;}
.x66_c00431{left:193.500000px;}
.x7b_c00431{left:196.500000px;}
.x4c_c00431{left:198.000000px;}
.xd9_c00431{left:201.000000px;}
.x43_c00431{left:203.580000px;}
.xba_c00431{left:205.080000px;}
.x84_c00431{left:208.500000px;}
.xa2_c00431{left:211.500000px;}
.x57_c00431{left:212.580000px;}
.x28_c00431{left:215.580000px;}
.x71_c00431{left:217.500000px;}
.xd5_c00431{left:218.580000px;}
.x10_c00431{left:220.500000px;}
.x4_c00431{left:223.500000px;}
.x8f_c00431{left:225.420000px;}
.x9c_c00431{left:226.920000px;}
.xfe_c00431{left:228.420000px;}
.x67_c00431{left:229.500000px;}
.x58_c00431{left:231.000000px;}
.x96_c00431{left:232.080000px;}
.x4d_c00431{left:235.500000px;}
.xd6_c00431{left:237.420000px;}
.x5e_c00431{left:238.500000px;}
.x1c_c00431{left:240.000000px;}
.x44_c00431{left:243.420000px;}
.xbb_c00431{left:244.500000px;}
.x27_c00431{left:246.000000px;}
.x3a_c00431{left:247.080000px;}
.x94_c00431{left:248.775000px;}
.xc7_c00431{left:250.920000px;}
.x7c_c00431{left:253.275000px;}
.xa7_c00431{left:254.580000px;}
.xf7_c00431{left:256.500000px;}
.x5f_c00431{left:259.500000px;}
.xd7_c00431{left:264.000000px;}
.x11_c00431{left:265.500000px;}
.xa3_c00431{left:267.000000px;}
.xb5_c00431{left:268.500000px;}
.xda_c00431{left:270.420000px;}
.xce_c00431{left:274.920000px;}
.xec_c00431{left:277.920000px;}
.x29_c00431{left:282.420000px;}
.x12_c00431{left:285.420000px;}
.x3b_c00431{left:286.920000px;}
.xee_c00431{left:288.000000px;}
.x7d_c00431{left:289.080000px;}
.x95_c00431{left:290.775000px;}
.x9d_c00431{left:292.275000px;}
.x90_c00431{left:295.500000px;}
.x89_c00431{left:296.580000px;}
.x72_c00431{left:297.645000px;}
.x1d_c00431{left:302.580000px;}
.x59_c00431{left:304.500000px;}
.xf0_c00431{left:305.580000px;}
.x4e_c00431{left:307.080000px;}
.x13_c00431{left:309.420000px;}
.x5_c00431{left:311.580000px;}
.xe7_c00431{left:313.080000px;}
.xdb_c00431{left:315.000000px;}
.x45_c00431{left:316.080000px;}
.x5a_c00431{left:322.920000px;}
.x3c_c00431{left:324.000000px;}
.x68_c00431{left:325.920000px;}
.xcf_c00431{left:327.420000px;}
.xac_c00431{left:328.920000px;}
.x6_c00431{left:331.500000px;}
.x1e_c00431{left:333.000000px;}
.x31_c00431{left:334.920000px;}
.xf8_c00431{left:336.000000px;}
.x73_c00431{left:337.500000px;}
.x4f_c00431{left:339.000000px;}
.x60_c00431{left:342.000000px;}
.x97_c00431{left:344.580000px;}
.x8a_c00431{left:346.500000px;}
.x5b_c00431{left:349.500000px;}
.x9e_c00431{left:351.420000px;}
.x3d_c00431{left:354.000000px;}
.x46_c00431{left:355.500000px;}
.x50_c00431{left:357.420000px;}
.x7_c00431{left:358.500000px;}
.x85_c00431{left:360.000000px;}
.x74_c00431{left:361.500000px;}
.x61_c00431{left:362.580000px;}
.xe2_c00431{left:364.500000px;}
.xbc_c00431{left:366.000000px;}
.xd0_c00431{left:367.920000px;}
.x14_c00431{left:369.000000px;}
.xf1_c00431{left:370.920000px;}
.x2a_c00431{left:374.580000px;}
.x9f_c00431{left:376.920000px;}
.xeb_c00431{left:379.500000px;}
.xc2_c00431{left:382.080000px;}
.x51_c00431{left:385.920000px;}
.x15_c00431{left:388.920000px;}
.x86_c00431{left:390.000000px;}
.x5c_c00431{left:391.500000px;}
.x1f_c00431{left:393.000000px;}
.xa8_c00431{left:394.080000px;}
.xad_c00431{left:395.580000px;}
.xb6_c00431{left:397.080000px;}
.x7e_c00431{left:398.580000px;}
.xe8_c00431{left:400.500000px;}
.x98_c00431{left:402.420000px;}
.x32_c00431{left:405.000000px;}
.xff_c00431{left:406.500000px;}
.x1_c00431{left:408.000000px;}
.x2b_c00431{left:409.500000px;}
.x16_c00431{left:415.080000px;}
.x69_c00431{left:418.080000px;}
.xf5_c00431{left:420.420000px;}
.x20_c00431{left:421.920000px;}
.x47_c00431{left:427.500000px;}
.x8_c00431{left:429.000000px;}
.x87_c00431{left:430.500000px;}
.xf2_c00431{left:432.000000px;}
.x62_c00431{left:433.080000px;}
.x100_c00431{left:435.000000px;}
.x6a_c00431{left:436.500000px;}
.x7f_c00431{left:439.080000px;}
.xed_c00431{left:441.855000px;}
.x9_c00431{left:445.920000px;}
.x21_c00431{left:447.000000px;}
.x48_c00431{left:448.920000px;}
.x2c_c00431{left:450.000000px;}
.x33_c00431{left:453.000000px;}
.xc8_c00431{left:454.080000px;}
.x3e_c00431{left:457.080000px;}
.xae_c00431{left:458.580000px;}
.xa4_c00431{left:460.500000px;}
.x8b_c00431{left:464.580000px;}
.x99_c00431{left:466.500000px;}
.xbd_c00431{left:467.580000px;}
.xf9_c00431{left:469.500000px;}
.xe5_c00431{left:471.000000px;}
.x52_c00431{left:473.145000px;}
.xc9_c00431{left:475.920000px;}
.x3f_c00431{left:478.920000px;}
.x75_c00431{left:480.000000px;}
.x6b_c00431{left:481.500000px;}
.x17_c00431{left:486.000000px;}
.x80_c00431{left:489.000000px;}
.xa5_c00431{left:490.080000px;}
.x53_c00431{left:493.500000px;}
.x5d_c00431{left:495.000000px;}
.xa0_c00431{left:496.500000px;}
.xb7_c00431{left:497.580000px;}
.xe3_c00431{left:499.500000px;}
.xbe_c00431{left:501.000000px;}
.x63_c00431{left:504.000000px;}
.x34_c00431{left:505.500000px;}
.x40_c00431{left:507.000000px;}
.xfb_c00431{left:508.080000px;}
.x76_c00431{left:511.500000px;}
.xf6_c00431{left:514.080000px;}
.x49_c00431{left:516.000000px;}
.xca_c00431{left:517.920000px;}
.xaf_c00431{left:519.420000px;}
.xa1_c00431{left:520.920000px;}
.xc3_c00431{left:522.000000px;}
.x22_c00431{left:525.420000px;}
.x77_c00431{left:526.500000px;}
.xf3_c00431{left:531.000000px;}
.x35_c00431{left:534.000000px;}
.xa_c00431{left:535.500000px;}
.xdc_c00431{left:540.645000px;}
.xbf_c00431{left:543.420000px;}
.x6c_c00431{left:544.500000px;}
.xe6_c00431{left:546.420000px;}
.xfa_c00431{left:547.500000px;}
.xe4_c00431{left:548.580000px;}
.x4a_c00431{left:550.500000px;}
.x81_c00431{left:552.000000px;}
.x2d_c00431{left:554.580000px;}
.xb0_c00431{left:558.000000px;}
.x8c_c00431{left:559.080000px;}
.xe9_c00431{left:560.580000px;}
.x23_c00431{left:562.920000px;}
.x54_c00431{left:565.080000px;}
.x18_c00431{left:567.000000px;}
.xc0_c00431{left:568.500000px;}
.xfc_c00431{left:570.000000px;}
.xdd_c00431{left:572.580000px;}
.x2e_c00431{left:576.420000px;}
.x64_c00431{left:578.580000px;}
.xcb_c00431{left:580.920000px;}
.xb_c00431{left:583.500000px;}
.xb8_c00431{left:585.000000px;}
.x55_c00431{left:587.580000px;}
.x24_c00431{left:589.080000px;}
.x36_c00431{left:593.580000px;}
.x78_c00431{left:595.920000px;}
.x19_c00431{left:598.080000px;}
.xb1_c00431{left:600.000000px;}
.x9a_c00431{left:601.080000px;}
.xd1_c00431{left:604.500000px;}
.xde_c00431{left:605.775000px;}
.xcc_c00431{left:607.920000px;}
.x8d_c00431{left:610.500000px;}
.xb2_c00431{left:612.420000px;}
.xc1_c00431{left:614.580000px;}
.x2f_c00431{left:617.580000px;}
.x6d_c00431{left:619.920000px;}
.x41_c00431{left:624.000000px;}
.x4b_c00431{left:625.500000px;}
.x37_c00431{left:627.420000px;}
.x82_c00431{left:628.500000px;}
.x56_c00431{left:630.420000px;}
.x91_c00431{left:634.275000px;}
.xc4_c00431{left:636.000000px;}
.xd2_c00431{left:637.920000px;}
.xc_c00431{left:640.920000px;}
.xa6_c00431{left:642.000000px;}
.xb9_c00431{left:643.500000px;}
.xef_c00431{left:646.080000px;}
.x9b_c00431{left:649.080000px;}
.xf4_c00431{left:652.500000px;}
.x6e_c00431{left:656.580000px;}
.xdf_c00431{left:658.500000px;}
.x25_c00431{left:660.000000px;}
.x30_c00431{left:661.500000px;}
.x83_c00431{left:663.645000px;}
.x1a_c00431{left:669.000000px;}
.x79_c00431{left:672.000000px;}
.xfd_c00431{left:673.080000px;}
.xe0_c00431{left:675.420000px;}
.x92_c00431{left:676.920000px;}
.x65_c00431{left:679.500000px;}
.xd3_c00431{left:684.000000px;}
.x6f_c00431{left:687.000000px;}
.xcd_c00431{left:688.080000px;}
.xa9_c00431{left:690.000000px;}
.xb3_c00431{left:691.500000px;}
.xea_c00431{left:694.920000px;}
.x8e_c00431{left:699.000000px;}
.x42_c00431{left:704.580000px;}
.xc5_c00431{left:706.080000px;}
.x38_c00431{left:708.000000px;}
.xd4_c00431{left:709.920000px;}
.x93_c00431{left:717.000000px;}
.xd_c00431{left:720.000000px;}
.xb4_c00431{left:723.000000px;}
@media print{
.v0_c00431{vertical-align:0.000000pt;}
.ls0_c00431{letter-spacing:0.000000pt;}
.ws1_c00431{word-spacing:-3.186375pt;}
.ws0_c00431{word-spacing:-2.746269pt;}
.ws2_c00431{word-spacing:-0.595909pt;}
.ws3_c00431{word-spacing:0.000000pt;}
.fs6_c00431{font-size:3.040000pt;}
.fs4_c00431{font-size:16.640000pt;}
.fs0_c00431{font-size:18.133333pt;}
.fs1_c00431{font-size:22.666667pt;}
.fs2_c00431{font-size:25.706667pt;}
.fs5_c00431{font-size:28.746667pt;}
.fs3_c00431{font-size:31.733333pt;}
.fs7_c00431{font-size:34.773333pt;}
.y0_c00431{bottom:0.000000pt;}
.yca_c00431{bottom:225.106667pt;}
.yc8_c00431{bottom:225.693333pt;}
.yc7_c00431{bottom:225.893333pt;}
.yc9_c00431{bottom:226.640000pt;}
.ycb_c00431{bottom:227.026667pt;}
.yc3_c00431{bottom:243.026667pt;}
.yc6_c00431{bottom:243.400000pt;}
.yc5_c00431{bottom:243.973333pt;}
.yc4_c00431{bottom:244.360000pt;}
.yc0_c00431{bottom:259.773333pt;}
.ybe_c00431{bottom:260.360000pt;}
.yc2_c00431{bottom:260.733333pt;}
.yc1_c00431{bottom:261.306667pt;}
.ybf_c00431{bottom:261.693333pt;}
.yba_c00431{bottom:275.773333pt;}
.ybb_c00431{bottom:276.360000pt;}
.ybd_c00431{bottom:277.106667pt;}
.yb9_c00431{bottom:279.026667pt;}
.ybc_c00431{bottom:280.360000pt;}
.yb7_c00431{bottom:292.360000pt;}
.yb8_c00431{bottom:294.440000pt;}
.yb1_c00431{bottom:311.773333pt;}
.yb6_c00431{bottom:313.106667pt;}
.yb2_c00431{bottom:313.693333pt;}
.yb5_c00431{bottom:313.893333pt;}
.yb4_c00431{bottom:314.640000pt;}
.yb3_c00431{bottom:315.026667pt;}
.yab_c00431{bottom:329.106667pt;}
.yb0_c00431{bottom:330.066667pt;}
.yad_c00431{bottom:330.440000pt;}
.yac_c00431{bottom:331.026667pt;}
.yaf_c00431{bottom:331.973333pt;}
.yae_c00431{bottom:332.360000pt;}
.yaa_c00431{bottom:347.773333pt;}
.ya9_c00431{bottom:349.693333pt;}
.ya5_c00431{bottom:364.160000pt;}
.ya8_c00431{bottom:365.106667pt;}
.ya4_c00431{bottom:366.066667pt;}
.ya6_c00431{bottom:367.026667pt;}
.ya7_c00431{bottom:367.226667pt;}
.ya3_c00431{bottom:381.693333pt;}
.ya2_c00431{bottom:382.440000pt;}
.y9f_c00431{bottom:384.360000pt;}
.ya0_c00431{bottom:385.306667pt;}
.ya1_c00431{bottom:385.693333pt;}
.y9b_c00431{bottom:399.773333pt;}
.y9c_c00431{bottom:401.106667pt;}
.y9e_c00431{bottom:401.693333pt;}
.y9d_c00431{bottom:403.026667pt;}
.y98_c00431{bottom:416.360000pt;}
.y99_c00431{bottom:418.440000pt;}
.y9a_c00431{bottom:419.026667pt;}
.y96_c00431{bottom:419.226667pt;}
.y97_c00431{bottom:420.360000pt;}
.y95_c00431{bottom:433.693333pt;}
.y92_c00431{bottom:435.773333pt;}
.y94_c00431{bottom:436.560000pt;}
.y91_c00431{bottom:437.306667pt;}
.y93_c00431{bottom:437.693333pt;}
.y8f_c00431{bottom:453.106667pt;}
.y90_c00431{bottom:455.026667pt;}
.y8e_c00431{bottom:470.440000pt;}
.y8d_c00431{bottom:471.226667pt;}
.y8c_c00431{bottom:472.360000pt;}
.y8a_c00431{bottom:487.773333pt;}
.y86_c00431{bottom:488.560000pt;}
.y87_c00431{bottom:488.733333pt;}
.y88_c00431{bottom:489.106667pt;}
.y85_c00431{bottom:489.693333pt;}
.y89_c00431{bottom:489.893333pt;}
.y8b_c00431{bottom:490.640000pt;}
.y82_c00431{bottom:505.106667pt;}
.y84_c00431{bottom:506.440000pt;}
.y81_c00431{bottom:507.026667pt;}
.y83_c00431{bottom:508.360000pt;}
.y80_c00431{bottom:521.693333pt;}
.y7d_c00431{bottom:522.440000pt;}
.y7e_c00431{bottom:524.360000pt;}
.y7f_c00431{bottom:525.693333pt;}
.y77_c00431{bottom:539.773333pt;}
.y79_c00431{bottom:541.106667pt;}
.y78_c00431{bottom:541.693333pt;}
.y7a_c00431{bottom:541.893333pt;}
.y7b_c00431{bottom:543.026667pt;}
.y7c_c00431{bottom:543.973333pt;}
.y74_c00431{bottom:556.360000pt;}
.y72_c00431{bottom:557.306667pt;}
.y75_c00431{bottom:558.440000pt;}
.y70_c00431{bottom:559.026667pt;}
.y71_c00431{bottom:559.226667pt;}
.y76_c00431{bottom:559.400000pt;}
.y73_c00431{bottom:560.360000pt;}
.y6b_c00431{bottom:575.773333pt;}
.y6c_c00431{bottom:576.733333pt;}
.y6f_c00431{bottom:577.306667pt;}
.y6e_c00431{bottom:577.693333pt;}
.y6d_c00431{bottom:577.893333pt;}
.y68_c00431{bottom:591.773333pt;}
.y69_c00431{bottom:593.106667pt;}
.y67_c00431{bottom:595.026667pt;}
.y6a_c00431{bottom:595.226667pt;}
.y65_c00431{bottom:610.440000pt;}
.y66_c00431{bottom:610.640000pt;}
.y64_c00431{bottom:611.400000pt;}
.y63_c00431{bottom:612.360000pt;}
.y5f_c00431{bottom:627.773333pt;}
.y62_c00431{bottom:629.106667pt;}
.y60_c00431{bottom:629.693333pt;}
.y61_c00431{bottom:629.893333pt;}
.y5e_c00431{bottom:630.640000pt;}
.y5b_c00431{bottom:644.360000pt;}
.y5c_c00431{bottom:645.106667pt;}
.y5a_c00431{bottom:645.893333pt;}
.y5d_c00431{bottom:646.440000pt;}
.y53_c00431{bottom:662.440000pt;}
.y57_c00431{bottom:663.026667pt;}
.y55_c00431{bottom:663.773333pt;}
.y54_c00431{bottom:664.360000pt;}
.y58_c00431{bottom:664.733333pt;}
.y59_c00431{bottom:665.306667pt;}
.y56_c00431{bottom:665.693333pt;}
.y51_c00431{bottom:681.106667pt;}
.y50_c00431{bottom:681.893333pt;}
.y52_c00431{bottom:682.066667pt;}
.y4f_c00431{bottom:683.026667pt;}
.y4c_c00431{bottom:698.440000pt;}
.y4e_c00431{bottom:700.360000pt;}
.y4d_c00431{bottom:701.306667pt;}
.y4a_c00431{bottom:715.773333pt;}
.y48_c00431{bottom:716.560000pt;}
.y49_c00431{bottom:717.693333pt;}
.y4b_c00431{bottom:717.893333pt;}
.y47_c00431{bottom:732.360000pt;}
.y45_c00431{bottom:733.106667pt;}
.y43_c00431{bottom:733.893333pt;}
.y46_c00431{bottom:734.066667pt;}
.y44_c00431{bottom:735.026667pt;}
.y40_c00431{bottom:749.693333pt;}
.y42_c00431{bottom:750.440000pt;}
.y3d_c00431{bottom:751.400000pt;}
.y41_c00431{bottom:751.773333pt;}
.y3c_c00431{bottom:752.560000pt;}
.y3f_c00431{bottom:752.733333pt;}
.y3b_c00431{bottom:753.306667pt;}
.y3e_c00431{bottom:753.693333pt;}
.y3a_c00431{bottom:768.733333pt;}
.y37_c00431{bottom:769.106667pt;}
.y35_c00431{bottom:769.693333pt;}
.y39_c00431{bottom:769.893333pt;}
.y38_c00431{bottom:771.026667pt;}
.y36_c00431{bottom:771.040000pt;}
.y31_c00431{bottom:786.440000pt;}
.y30_c00431{bottom:787.026667pt;}
.y34_c00431{bottom:787.226667pt;}
.y33_c00431{bottom:787.400000pt;}
.y32_c00431{bottom:788.360000pt;}
.y2f_c00431{bottom:803.400000pt;}
.y2a_c00431{bottom:803.773333pt;}
.y2b_c00431{bottom:804.560000pt;}
.y2e_c00431{bottom:804.733333pt;}
.y2c_c00431{bottom:805.693333pt;}
.y2d_c00431{bottom:806.640000pt;}
.y28_c00431{bottom:820.360000pt;}
.y25_c00431{bottom:821.106667pt;}
.y27_c00431{bottom:821.893333pt;}
.y26_c00431{bottom:823.026667pt;}
.y29_c00431{bottom:823.973333pt;}
.y1e_c00431{bottom:838.066667pt;}
.y23_c00431{bottom:838.440000pt;}
.y1d_c00431{bottom:839.026667pt;}
.y20_c00431{bottom:839.226667pt;}
.y22_c00431{bottom:839.973333pt;}
.y21_c00431{bottom:840.360000pt;}
.y24_c00431{bottom:840.560000pt;}
.y1f_c00431{bottom:841.306667pt;}
.y19_c00431{bottom:855.026667pt;}
.y1b_c00431{bottom:855.773333pt;}
.y18_c00431{bottom:856.733333pt;}
.y17_c00431{bottom:857.693333pt;}
.y1a_c00431{bottom:857.893333pt;}
.y1c_c00431{bottom:858.640000pt;}
.y14_c00431{bottom:873.106667pt;}
.y13_c00431{bottom:875.026667pt;}
.y16_c00431{bottom:875.226667pt;}
.y15_c00431{bottom:875.973333pt;}
.y12_c00431{bottom:890.440000pt;}
.ye_c00431{bottom:907.773333pt;}
.y11_c00431{bottom:907.973333pt;}
.y10_c00431{bottom:909.106667pt;}
.yd_c00431{bottom:909.693333pt;}
.yf_c00431{bottom:911.026667pt;}
.yb_c00431{bottom:924.360000pt;}
.yc_c00431{bottom:925.106667pt;}
.ya_c00431{bottom:926.440000pt;}
.y7_c00431{bottom:927.026667pt;}
.y9_c00431{bottom:927.226667pt;}
.y8_c00431{bottom:927.973333pt;}
.y3_c00431{bottom:941.693333pt;}
.y6_c00431{bottom:943.773333pt;}
.y4_c00431{bottom:945.693333pt;}
.y5_c00431{bottom:946.640000pt;}
.y2_c00431{bottom:977.306667pt;}
.y1_c00431{bottom:979.600000pt;}
.h7_c00431{height:3.739141pt;}
.h5_c00431{height:20.466875pt;}
.h1_c00431{height:22.303646pt;}
.h2_c00431{height:27.879557pt;}
.h3_c00431{height:31.618698pt;}
.h6_c00431{height:35.357839pt;}
.h4_c00431{height:39.031380pt;}
.h8_c00431{height:42.770521pt;}
.h0_c00431{height:1186.666667pt;}
.w0_c00431{width:782.666667pt;}
.x0_c00431{left:0.000000pt;}
.x2_c00431{left:134.666667pt;}
.x3_c00431{left:135.626667pt;}
.xe_c00431{left:137.706667pt;}
.xd8_c00431{left:149.333333pt;}
.x1b_c00431{left:150.666667pt;}
.xaa_c00431{left:152.000000pt;}
.x39_c00431{left:154.093333pt;}
.x7a_c00431{left:156.373333pt;}
.xc6_c00431{left:161.333333pt;}
.xab_c00431{left:163.040000pt;}
.x26_c00431{left:164.373333pt;}
.xe1_c00431{left:165.333333pt;}
.x70_c00431{left:168.373333pt;}
.xf_c00431{left:169.333333pt;}
.x88_c00431{left:170.293333pt;}
.x66_c00431{left:172.000000pt;}
.x7b_c00431{left:174.666667pt;}
.x4c_c00431{left:176.000000pt;}
.xd9_c00431{left:178.666667pt;}
.x43_c00431{left:180.960000pt;}
.xba_c00431{left:182.293333pt;}
.x84_c00431{left:185.333333pt;}
.xa2_c00431{left:188.000000pt;}
.x57_c00431{left:188.960000pt;}
.x28_c00431{left:191.626667pt;}
.x71_c00431{left:193.333333pt;}
.xd5_c00431{left:194.293333pt;}
.x10_c00431{left:196.000000pt;}
.x4_c00431{left:198.666667pt;}
.x8f_c00431{left:200.373333pt;}
.x9c_c00431{left:201.706667pt;}
.xfe_c00431{left:203.040000pt;}
.x67_c00431{left:204.000000pt;}
.x58_c00431{left:205.333333pt;}
.x96_c00431{left:206.293333pt;}
.x4d_c00431{left:209.333333pt;}
.xd6_c00431{left:211.040000pt;}
.x5e_c00431{left:212.000000pt;}
.x1c_c00431{left:213.333333pt;}
.x44_c00431{left:216.373333pt;}
.xbb_c00431{left:217.333333pt;}
.x27_c00431{left:218.666667pt;}
.x3a_c00431{left:219.626667pt;}
.x94_c00431{left:221.133333pt;}
.xc7_c00431{left:223.040000pt;}
.x7c_c00431{left:225.133333pt;}
.xa7_c00431{left:226.293333pt;}
.xf7_c00431{left:228.000000pt;}
.x5f_c00431{left:230.666667pt;}
.xd7_c00431{left:234.666667pt;}
.x11_c00431{left:236.000000pt;}
.xa3_c00431{left:237.333333pt;}
.xb5_c00431{left:238.666667pt;}
.xda_c00431{left:240.373333pt;}
.xce_c00431{left:244.373333pt;}
.xec_c00431{left:247.040000pt;}
.x29_c00431{left:251.040000pt;}
.x12_c00431{left:253.706667pt;}
.x3b_c00431{left:255.040000pt;}
.xee_c00431{left:256.000000pt;}
.x7d_c00431{left:256.960000pt;}
.x95_c00431{left:258.466667pt;}
.x9d_c00431{left:259.800000pt;}
.x90_c00431{left:262.666667pt;}
.x89_c00431{left:263.626667pt;}
.x72_c00431{left:264.573333pt;}
.x1d_c00431{left:268.960000pt;}
.x59_c00431{left:270.666667pt;}
.xf0_c00431{left:271.626667pt;}
.x4e_c00431{left:272.960000pt;}
.x13_c00431{left:275.040000pt;}
.x5_c00431{left:276.960000pt;}
.xe7_c00431{left:278.293333pt;}
.xdb_c00431{left:280.000000pt;}
.x45_c00431{left:280.960000pt;}
.x5a_c00431{left:287.040000pt;}
.x3c_c00431{left:288.000000pt;}
.x68_c00431{left:289.706667pt;}
.xcf_c00431{left:291.040000pt;}
.xac_c00431{left:292.373333pt;}
.x6_c00431{left:294.666667pt;}
.x1e_c00431{left:296.000000pt;}
.x31_c00431{left:297.706667pt;}
.xf8_c00431{left:298.666667pt;}
.x73_c00431{left:300.000000pt;}
.x4f_c00431{left:301.333333pt;}
.x60_c00431{left:304.000000pt;}
.x97_c00431{left:306.293333pt;}
.x8a_c00431{left:308.000000pt;}
.x5b_c00431{left:310.666667pt;}
.x9e_c00431{left:312.373333pt;}
.x3d_c00431{left:314.666667pt;}
.x46_c00431{left:316.000000pt;}
.x50_c00431{left:317.706667pt;}
.x7_c00431{left:318.666667pt;}
.x85_c00431{left:320.000000pt;}
.x74_c00431{left:321.333333pt;}
.x61_c00431{left:322.293333pt;}
.xe2_c00431{left:324.000000pt;}
.xbc_c00431{left:325.333333pt;}
.xd0_c00431{left:327.040000pt;}
.x14_c00431{left:328.000000pt;}
.xf1_c00431{left:329.706667pt;}
.x2a_c00431{left:332.960000pt;}
.x9f_c00431{left:335.040000pt;}
.xeb_c00431{left:337.333333pt;}
.xc2_c00431{left:339.626667pt;}
.x51_c00431{left:343.040000pt;}
.x15_c00431{left:345.706667pt;}
.x86_c00431{left:346.666667pt;}
.x5c_c00431{left:348.000000pt;}
.x1f_c00431{left:349.333333pt;}
.xa8_c00431{left:350.293333pt;}
.xad_c00431{left:351.626667pt;}
.xb6_c00431{left:352.960000pt;}
.x7e_c00431{left:354.293333pt;}
.xe8_c00431{left:356.000000pt;}
.x98_c00431{left:357.706667pt;}
.x32_c00431{left:360.000000pt;}
.xff_c00431{left:361.333333pt;}
.x1_c00431{left:362.666667pt;}
.x2b_c00431{left:364.000000pt;}
.x16_c00431{left:368.960000pt;}
.x69_c00431{left:371.626667pt;}
.xf5_c00431{left:373.706667pt;}
.x20_c00431{left:375.040000pt;}
.x47_c00431{left:380.000000pt;}
.x8_c00431{left:381.333333pt;}
.x87_c00431{left:382.666667pt;}
.xf2_c00431{left:384.000000pt;}
.x62_c00431{left:384.960000pt;}
.x100_c00431{left:386.666667pt;}
.x6a_c00431{left:388.000000pt;}
.x7f_c00431{left:390.293333pt;}
.xed_c00431{left:392.760000pt;}
.x9_c00431{left:396.373333pt;}
.x21_c00431{left:397.333333pt;}
.x48_c00431{left:399.040000pt;}
.x2c_c00431{left:400.000000pt;}
.x33_c00431{left:402.666667pt;}
.xc8_c00431{left:403.626667pt;}
.x3e_c00431{left:406.293333pt;}
.xae_c00431{left:407.626667pt;}
.xa4_c00431{left:409.333333pt;}
.x8b_c00431{left:412.960000pt;}
.x99_c00431{left:414.666667pt;}
.xbd_c00431{left:415.626667pt;}
.xf9_c00431{left:417.333333pt;}
.xe5_c00431{left:418.666667pt;}
.x52_c00431{left:420.573333pt;}
.xc9_c00431{left:423.040000pt;}
.x3f_c00431{left:425.706667pt;}
.x75_c00431{left:426.666667pt;}
.x6b_c00431{left:428.000000pt;}
.x17_c00431{left:432.000000pt;}
.x80_c00431{left:434.666667pt;}
.xa5_c00431{left:435.626667pt;}
.x53_c00431{left:438.666667pt;}
.x5d_c00431{left:440.000000pt;}
.xa0_c00431{left:441.333333pt;}
.xb7_c00431{left:442.293333pt;}
.xe3_c00431{left:444.000000pt;}
.xbe_c00431{left:445.333333pt;}
.x63_c00431{left:448.000000pt;}
.x34_c00431{left:449.333333pt;}
.x40_c00431{left:450.666667pt;}
.xfb_c00431{left:451.626667pt;}
.x76_c00431{left:454.666667pt;}
.xf6_c00431{left:456.960000pt;}
.x49_c00431{left:458.666667pt;}
.xca_c00431{left:460.373333pt;}
.xaf_c00431{left:461.706667pt;}
.xa1_c00431{left:463.040000pt;}
.xc3_c00431{left:464.000000pt;}
.x22_c00431{left:467.040000pt;}
.x77_c00431{left:468.000000pt;}
.xf3_c00431{left:472.000000pt;}
.x35_c00431{left:474.666667pt;}
.xa_c00431{left:476.000000pt;}
.xdc_c00431{left:480.573333pt;}
.xbf_c00431{left:483.040000pt;}
.x6c_c00431{left:484.000000pt;}
.xe6_c00431{left:485.706667pt;}
.xfa_c00431{left:486.666667pt;}
.xe4_c00431{left:487.626667pt;}
.x4a_c00431{left:489.333333pt;}
.x81_c00431{left:490.666667pt;}
.x2d_c00431{left:492.960000pt;}
.xb0_c00431{left:496.000000pt;}
.x8c_c00431{left:496.960000pt;}
.xe9_c00431{left:498.293333pt;}
.x23_c00431{left:500.373333pt;}
.x54_c00431{left:502.293333pt;}
.x18_c00431{left:504.000000pt;}
.xc0_c00431{left:505.333333pt;}
.xfc_c00431{left:506.666667pt;}
.xdd_c00431{left:508.960000pt;}
.x2e_c00431{left:512.373333pt;}
.x64_c00431{left:514.293333pt;}
.xcb_c00431{left:516.373333pt;}
.xb_c00431{left:518.666667pt;}
.xb8_c00431{left:520.000000pt;}
.x55_c00431{left:522.293333pt;}
.x24_c00431{left:523.626667pt;}
.x36_c00431{left:527.626667pt;}
.x78_c00431{left:529.706667pt;}
.x19_c00431{left:531.626667pt;}
.xb1_c00431{left:533.333333pt;}
.x9a_c00431{left:534.293333pt;}
.xd1_c00431{left:537.333333pt;}
.xde_c00431{left:538.466667pt;}
.xcc_c00431{left:540.373333pt;}
.x8d_c00431{left:542.666667pt;}
.xb2_c00431{left:544.373333pt;}
.xc1_c00431{left:546.293333pt;}
.x2f_c00431{left:548.960000pt;}
.x6d_c00431{left:551.040000pt;}
.x41_c00431{left:554.666667pt;}
.x4b_c00431{left:556.000000pt;}
.x37_c00431{left:557.706667pt;}
.x82_c00431{left:558.666667pt;}
.x56_c00431{left:560.373333pt;}
.x91_c00431{left:563.800000pt;}
.xc4_c00431{left:565.333333pt;}
.xd2_c00431{left:567.040000pt;}
.xc_c00431{left:569.706667pt;}
.xa6_c00431{left:570.666667pt;}
.xb9_c00431{left:572.000000pt;}
.xef_c00431{left:574.293333pt;}
.x9b_c00431{left:576.960000pt;}
.xf4_c00431{left:580.000000pt;}
.x6e_c00431{left:583.626667pt;}
.xdf_c00431{left:585.333333pt;}
.x25_c00431{left:586.666667pt;}
.x30_c00431{left:588.000000pt;}
.x83_c00431{left:589.906667pt;}
.x1a_c00431{left:594.666667pt;}
.x79_c00431{left:597.333333pt;}
.xfd_c00431{left:598.293333pt;}
.xe0_c00431{left:600.373333pt;}
.x92_c00431{left:601.706667pt;}
.x65_c00431{left:604.000000pt;}
.xd3_c00431{left:608.000000pt;}
.x6f_c00431{left:610.666667pt;}
.xcd_c00431{left:611.626667pt;}
.xa9_c00431{left:613.333333pt;}
.xb3_c00431{left:614.666667pt;}
.xea_c00431{left:617.706667pt;}
.x8e_c00431{left:621.333333pt;}
.x42_c00431{left:626.293333pt;}
.xc5_c00431{left:627.626667pt;}
.x38_c00431{left:629.333333pt;}
.xd4_c00431{left:631.040000pt;}
.x93_c00431{left:637.333333pt;}
.xd_c00431{left:640.000000pt;}
.xb4_c00431{left:642.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_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_93e30d2e66a49a4c45259286.woff2')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.maf_c00432{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.meb_c00432{transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);}
.m46_c00432{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.mc6_c00432{transform:matrix(0.348794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348794,0.000000,0.000000,0.250000,0,0);}
.m1c_c00432{transform:matrix(0.349258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349258,0.000000,0.000000,0.250000,0,0);}
.m73_c00432{transform:matrix(0.355882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355882,0.000000,0.000000,0.250000,0,0);}
.m4b_c00432{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m76_c00432{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m89_c00432{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.me4_c00432{transform:matrix(0.365028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365028,0.000000,0.000000,0.250000,0,0);}
.m10c_c00432{transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);}
.m5_c00432{transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);}
.me5_c00432{transform:matrix(0.370130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370130,0.000000,0.000000,0.250000,0,0);}
.ma_c00432{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m6c_c00432{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.ma4_c00432{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.mcd_c00432{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m6e_c00432{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mc5_c00432{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m3f_c00432{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m109_c00432{transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);}
.m72_c00432{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m10d_c00432{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m31_c00432{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m87_c00432{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m111_c00432{transform:matrix(0.389187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389187,0.000000,0.000000,0.250000,0,0);}
.m4f_c00432{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m37_c00432{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m21_c00432{transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);}
.mc9_c00432{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.mc8_c00432{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m4c_c00432{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.mfe_c00432{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m5c_c00432{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m104_c00432{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m32_c00432{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);}
.md7_c00432{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.mb8_c00432{transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);}
.mfa_c00432{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m9_c00432{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m34_c00432{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m101_c00432{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m2e_c00432{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m45_c00432{transform:matrix(0.409509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409509,0.000000,0.000000,0.250000,0,0);}
.m17_c00432{transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);}
.m74_c00432{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m4e_c00432{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m11_c00432{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.med_c00432{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.md6_c00432{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m3a_c00432{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mcb_c00432{transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);}
.m85_c00432{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m51_c00432{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mf_c00432{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.me6_c00432{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.mb1_c00432{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m29_c00432{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.md2_c00432{transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);}
.m3c_c00432{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m38_c00432{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m8f_c00432{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mc3_c00432{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.ma8_c00432{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m108_c00432{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m1b_c00432{transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);}
.m12_c00432{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.m79_c00432{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m58_c00432{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.mf1_c00432{transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);}
.m105_c00432{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m22_c00432{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m10a_c00432{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.m35_c00432{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.mb_c00432{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m66_c00432{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m2a_c00432{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.md1_c00432{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m5e_c00432{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.mce_c00432{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.mea_c00432{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m56_c00432{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.mff_c00432{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m13_c00432{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m88_c00432{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m1d_c00432{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.mf9_c00432{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.md0_c00432{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m19_c00432{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.m1a_c00432{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.m2f_c00432{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.mc_c00432{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m57_c00432{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m15_c00432{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mef_c00432{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mba_c00432{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m7d_c00432{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m55_c00432{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.md_c00432{transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);}
.mb3_c00432{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m5f_c00432{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.m4_c00432{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.ma0_c00432{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mdb_c00432{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.mad_c00432{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.mc0_c00432{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m95_c00432{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m2c_c00432{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.mcc_c00432{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m4d_c00432{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.md9_c00432{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m5a_c00432{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.mf4_c00432{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m9c_c00432{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m5d_c00432{transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);}
.m39_c00432{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.me_c00432{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m9f_c00432{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m1_c00432{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.ma2_c00432{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m10f_c00432{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m59_c00432{transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);}
.m7e_c00432{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mbd_c00432{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m6_c00432{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_c00432{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m8e_c00432{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m86_c00432{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m77_c00432{transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);}
.mb9_c00432{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.mcf_c00432{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.ma1_c00432{transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);}
.mc4_c00432{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m106_c00432{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.me9_c00432{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m70_c00432{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m6d_c00432{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.md5_c00432{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.m3b_c00432{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mbb_c00432{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m2_c00432{transform:matrix(0.519481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519481,0.000000,0.000000,0.250000,0,0);}
.m52_c00432{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m97_c00432{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m41_c00432{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m80_c00432{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m49_c00432{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m110_c00432{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mb4_c00432{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);}
.maa_c00432{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.mec_c00432{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m9e_c00432{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m64_c00432{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m7b_c00432{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mc2_c00432{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m4a_c00432{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mde_c00432{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.me0_c00432{transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);}
.m8a_c00432{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.mee_c00432{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mb0_c00432{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m69_c00432{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mfb_c00432{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mf3_c00432{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mae_c00432{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m84_c00432{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m7f_c00432{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m42_c00432{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m24_c00432{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m7a_c00432{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mca_c00432{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m5b_c00432{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m3d_c00432{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m61_c00432{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.me3_c00432{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m100_c00432{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.ma9_c00432{transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);}
.m75_c00432{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m40_c00432{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mab_c00432{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m44_c00432{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m90_c00432{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.ma7_c00432{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.mf5_c00432{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mf7_c00432{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mbe_c00432{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m50_c00432{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m6f_c00432{transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);}
.mbf_c00432{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m7c_c00432{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m47_c00432{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.me8_c00432{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m67_c00432{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m6b_c00432{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mdc_c00432{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.me2_c00432{transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);}
.mfd_c00432{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m8_c00432{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m43_c00432{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m54_c00432{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m1e_c00432{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m36_c00432{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m26_c00432{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m7_c00432{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m98_c00432{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m92_c00432{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m78_c00432{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.m83_c00432{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.mdd_c00432{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.ma5_c00432{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m8c_c00432{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m10_c00432{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m93_c00432{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mb2_c00432{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m60_c00432{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m68_c00432{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.mfc_c00432{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m96_c00432{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m28_c00432{transform:matrix(0.591912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591912,0.000000,0.000000,0.250000,0,0);}
.m3_c00432{transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);}
.mbc_c00432{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m71_c00432{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.m2d_c00432{transform:matrix(0.594917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594917,0.000000,0.000000,0.250000,0,0);}
.m8b_c00432{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m23_c00432{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.mac_c00432{transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);}
.mf0_c00432{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m102_c00432{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m91_c00432{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m18_c00432{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.m9a_c00432{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m9d_c00432{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m27_c00432{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);}
.me7_c00432{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);}
.mc1_c00432{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m9b_c00432{transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);}
.mc7_c00432{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.ma6_c00432{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.mb6_c00432{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m0_c00432{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m53_c00432{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.mdf_c00432{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);}
.m10b_c00432{transform:matrix(0.652206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652206,0.000000,0.000000,0.250000,0,0);}
.m20_c00432{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m1f_c00432{transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);}
.mf8_c00432{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m48_c00432{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m65_c00432{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m99_c00432{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m63_c00432{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.md8_c00432{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m25_c00432{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.m103_c00432{transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);}
.md4_c00432{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m82_c00432{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.mda_c00432{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.mb7_c00432{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);}
.mb5_c00432{transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);}
.m6a_c00432{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m8d_c00432{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.me1_c00432{transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);}
.m107_c00432{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m3e_c00432{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m33_c00432{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m62_c00432{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m10e_c00432{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mf6_c00432{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m94_c00432{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.m16_c00432{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mf2_c00432{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.ma3_c00432{transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);}
.md3_c00432{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m14_c00432{transform:matrix(1.436123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.436123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.436123,0.000000,0.000000,0.250000,0,0);}
.m81_c00432{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m2b_c00432{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws2_c00432{word-spacing:-6.425697px;}
.ws1_c00432{word-spacing:-2.923710px;}
.ws0_c00432{word-spacing:-1.205317px;}
.ws3_c00432{word-spacing:0.000000px;}
.fc0_c00432{color:transparent;}
.fs7_c00432{font-size:3.420000px;}
.fs5_c00432{font-size:13.620000px;}
.fs4_c00432{font-size:18.720000px;}
.fs0_c00432{font-size:20.400000px;}
.fs6_c00432{font-size:25.500000px;}
.fs1_c00432{font-size:28.920000px;}
.fs2_c00432{font-size:32.340000px;}
.fs3_c00432{font-size:35.700000px;}
.fs8_c00432{font-size:39.120000px;}
.y0_c00432{bottom:0.000000px;}
.yde_c00432{bottom:252.180000px;}
.ydd_c00432{bottom:253.245000px;}
.ye5_c00432{bottom:253.680000px;}
.ye2_c00432{bottom:254.130000px;}
.ye0_c00432{bottom:254.325000px;}
.ye1_c00432{bottom:254.550000px;}
.ye3_c00432{bottom:254.970000px;}
.ydf_c00432{bottom:255.405000px;}
.ye4_c00432{bottom:256.905000px;}
.yd8_c00432{bottom:272.745000px;}
.ydc_c00432{bottom:272.970000px;}
.yda_c00432{bottom:274.905000px;}
.ydb_c00432{bottom:275.130000px;}
.yd9_c00432{bottom:276.420000px;}
.yd5_c00432{bottom:293.550000px;}
.yd6_c00432{bottom:293.745000px;}
.yd7_c00432{bottom:295.905000px;}
.yd1_c00432{bottom:313.245000px;}
.yd3_c00432{bottom:313.905000px;}
.yd2_c00432{bottom:314.970000px;}
.yd0_c00432{bottom:315.405000px;}
.yd4_c00432{bottom:316.470000px;}
.ycd_c00432{bottom:332.745000px;}
.ycf_c00432{bottom:333.405000px;}
.ycb_c00432{bottom:334.470000px;}
.ycc_c00432{bottom:334.905000px;}
.yce_c00432{bottom:335.970000px;}
.yc5_c00432{bottom:352.245000px;}
.yc8_c00432{bottom:352.905000px;}
.yc9_c00432{bottom:353.130000px;}
.yc7_c00432{bottom:353.325000px;}
.yca_c00432{bottom:353.745000px;}
.yc4_c00432{bottom:354.405000px;}
.yc6_c00432{bottom:355.470000px;}
.yc1_c00432{bottom:370.245000px;}
.ybf_c00432{bottom:371.745000px;}
.yc0_c00432{bottom:372.405000px;}
.yc2_c00432{bottom:373.470000px;}
.ybe_c00432{bottom:373.905000px;}
.ybd_c00432{bottom:374.130000px;}
.yc3_c00432{bottom:374.970000px;}
.yb9_c00432{bottom:391.245000px;}
.ybb_c00432{bottom:392.130000px;}
.yba_c00432{bottom:392.970000px;}
.yb8_c00432{bottom:393.405000px;}
.ybc_c00432{bottom:393.630000px;}
.yb7_c00432{bottom:419.325000px;}
.yb4_c00432{bottom:420.405000px;}
.yb3_c00432{bottom:420.825000px;}
.yb6_c00432{bottom:421.470000px;}
.yb5_c00432{bottom:421.695000px;}
.yb2_c00432{bottom:421.905000px;}
.yb1_c00432{bottom:422.970000px;}
.yac_c00432{bottom:434.325000px;}
.yae_c00432{bottom:435.405000px;}
.yab_c00432{bottom:436.050000px;}
.yad_c00432{bottom:436.470000px;}
.yaf_c00432{bottom:436.695000px;}
.yb0_c00432{bottom:437.550000px;}
.ya9_c00432{bottom:448.470000px;}
.ya8_c00432{bottom:450.405000px;}
.ya7_c00432{bottom:450.630000px;}
.ya6_c00432{bottom:451.470000px;}
.yaa_c00432{bottom:452.550000px;}
.ya1_c00432{bottom:464.325000px;}
.ya2_c00432{bottom:465.405000px;}
.ya4_c00432{bottom:465.630000px;}
.ya5_c00432{bottom:466.050000px;}
.ya3_c00432{bottom:466.470000px;}
.ya0_c00432{bottom:467.550000px;}
.y9a_c00432{bottom:478.470000px;}
.y9b_c00432{bottom:479.325000px;}
.y9e_c00432{bottom:480.405000px;}
.y9d_c00432{bottom:481.470000px;}
.y9c_c00432{bottom:481.695000px;}
.y9f_c00432{bottom:482.550000px;}
.y97_c00432{bottom:495.405000px;}
.y98_c00432{bottom:496.470000px;}
.y99_c00432{bottom:497.550000px;}
.y96_c00432{bottom:507.825000px;}
.y94_c00432{bottom:508.905000px;}
.y95_c00432{bottom:509.130000px;}
.y90_c00432{bottom:509.325000px;}
.y93_c00432{bottom:509.970000px;}
.y8f_c00432{bottom:511.050000px;}
.y91_c00432{bottom:511.470000px;}
.y92_c00432{bottom:512.550000px;}
.y8e_c00432{bottom:524.325000px;}
.y8d_c00432{bottom:527.550000px;}
.y8b_c00432{bottom:536.970000px;}
.y8c_c00432{bottom:537.825000px;}
.y89_c00432{bottom:538.905000px;}
.y86_c00432{bottom:539.550000px;}
.y8a_c00432{bottom:540.195000px;}
.y87_c00432{bottom:540.405000px;}
.y88_c00432{bottom:541.050000px;}
.y84_c00432{bottom:552.825000px;}
.y82_c00432{bottom:553.470000px;}
.y80_c00432{bottom:553.905000px;}
.y83_c00432{bottom:554.970000px;}
.y81_c00432{bottom:555.630000px;}
.y85_c00432{bottom:556.050000px;}
.y7c_c00432{bottom:568.050000px;}
.y7e_c00432{bottom:568.905000px;}
.y7d_c00432{bottom:569.970000px;}
.y7f_c00432{bottom:571.050000px;}
.y7b_c00432{bottom:582.825000px;}
.y7a_c00432{bottom:586.050000px;}
.y79_c00432{bottom:596.970000px;}
.y76_c00432{bottom:597.825000px;}
.y71_c00432{bottom:598.050000px;}
.y77_c00432{bottom:598.905000px;}
.y78_c00432{bottom:599.130000px;}
.y75_c00432{bottom:599.550000px;}
.y72_c00432{bottom:599.970000px;}
.y73_c00432{bottom:600.195000px;}
.y74_c00432{bottom:601.050000px;}
.y6e_c00432{bottom:611.970000px;}
.y70_c00432{bottom:612.405000px;}
.y6b_c00432{bottom:613.905000px;}
.y6c_c00432{bottom:614.130000px;}
.y6f_c00432{bottom:614.550000px;}
.y6d_c00432{bottom:614.970000px;}
.y6a_c00432{bottom:627.825000px;}
.y68_c00432{bottom:628.905000px;}
.y65_c00432{bottom:629.130000px;}
.y69_c00432{bottom:629.550000px;}
.y66_c00432{bottom:629.970000px;}
.y67_c00432{bottom:631.050000px;}
.y64_c00432{bottom:641.325000px;}
.y62_c00432{bottom:641.550000px;}
.y61_c00432{bottom:642.825000px;}
.y63_c00432{bottom:643.470000px;}
.y5d_c00432{bottom:643.905000px;}
.y5f_c00432{bottom:644.130000px;}
.y60_c00432{bottom:644.550000px;}
.y5e_c00432{bottom:644.970000px;}
.y5a_c00432{bottom:657.405000px;}
.y5b_c00432{bottom:658.470000px;}
.y59_c00432{bottom:659.130000px;}
.y5c_c00432{bottom:659.550000px;}
.y56_c00432{bottom:685.905000px;}
.y58_c00432{bottom:686.130000px;}
.y57_c00432{bottom:686.970000px;}
.y55_c00432{bottom:703.245000px;}
.y51_c00432{bottom:704.745000px;}
.y53_c00432{bottom:705.405000px;}
.y54_c00432{bottom:705.630000px;}
.y52_c00432{bottom:706.905000px;}
.y4f_c00432{bottom:722.745000px;}
.y50_c00432{bottom:723.825000px;}
.y4c_c00432{bottom:724.905000px;}
.y4e_c00432{bottom:725.970000px;}
.y4d_c00432{bottom:726.420000px;}
.y49_c00432{bottom:742.905000px;}
.y4a_c00432{bottom:745.470000px;}
.y4b_c00432{bottom:745.905000px;}
.y46_c00432{bottom:760.905000px;}
.y47_c00432{bottom:764.130000px;}
.y45_c00432{bottom:764.325000px;}
.y48_c00432{bottom:764.970000px;}
.y44_c00432{bottom:765.405000px;}
.y40_c00432{bottom:782.745000px;}
.y43_c00432{bottom:783.825000px;}
.y41_c00432{bottom:784.470000px;}
.y42_c00432{bottom:784.905000px;}
.y3d_c00432{bottom:800.970000px;}
.y3f_c00432{bottom:802.245000px;}
.y3c_c00432{bottom:804.405000px;}
.y3e_c00432{bottom:805.470000px;}
.y3a_c00432{bottom:820.905000px;}
.y37_c00432{bottom:821.745000px;}
.y38_c00432{bottom:821.970000px;}
.y3b_c00432{bottom:822.630000px;}
.y35_c00432{bottom:823.905000px;}
.y39_c00432{bottom:824.130000px;}
.y36_c00432{bottom:824.970000px;}
.y33_c00432{bottom:840.405000px;}
.y30_c00432{bottom:841.245000px;}
.y32_c00432{bottom:842.325000px;}
.y31_c00432{bottom:843.405000px;}
.y34_c00432{bottom:843.630000px;}
.y2f_c00432{bottom:844.905000px;}
.y2e_c00432{bottom:862.905000px;}
.y2d_c00432{bottom:863.325000px;}
.y2c_c00432{bottom:864.405000px;}
.y28_c00432{bottom:880.245000px;}
.y2b_c00432{bottom:881.550000px;}
.y2a_c00432{bottom:881.745000px;}
.y29_c00432{bottom:882.405000px;}
.y27_c00432{bottom:898.905000px;}
.y23_c00432{bottom:900.180000px;}
.y24_c00432{bottom:900.405000px;}
.y25_c00432{bottom:901.245000px;}
.y26_c00432{bottom:902.130000px;}
.y21_c00432{bottom:903.405000px;}
.y22_c00432{bottom:903.420000px;}
.y20_c00432{bottom:920.745000px;}
.y1e_c00432{bottom:921.630000px;}
.y1d_c00432{bottom:922.905000px;}
.y1f_c00432{bottom:922.920000px;}
.y1b_c00432{bottom:940.245000px;}
.y1c_c00432{bottom:941.325000px;}
.y1a_c00432{bottom:942.405000px;}
.y18_c00432{bottom:958.905000px;}
.y15_c00432{bottom:959.745000px;}
.y17_c00432{bottom:960.825000px;}
.y19_c00432{bottom:962.130000px;}
.y16_c00432{bottom:963.420000px;}
.y11_c00432{bottom:979.245000px;}
.y13_c00432{bottom:980.325000px;}
.y14_c00432{bottom:981.405000px;}
.y12_c00432{bottom:982.920000px;}
.yd_c00432{bottom:1002.825000px;}
.y10_c00432{bottom:1003.050000px;}
.yc_c00432{bottom:1003.905000px;}
.ye_c00432{bottom:1004.970000px;}
.yf_c00432{bottom:1006.050000px;}
.yb_c00432{bottom:1023.405000px;}
.y6_c00432{bottom:1037.325000px;}
.y7_c00432{bottom:1038.405000px;}
.y9_c00432{bottom:1038.630000px;}
.ya_c00432{bottom:1039.695000px;}
.y8_c00432{bottom:1040.550000px;}
.y5_c00432{bottom:1061.745000px;}
.y3_c00432{bottom:1062.825000px;}
.y4_c00432{bottom:1063.905000px;}
.y2_c00432{bottom:1099.905000px;}
.y1_c00432{bottom:1102.050000px;}
.h8_c00432{height:4.206533px;}
.h6_c00432{height:16.752334px;}
.h5_c00432{height:23.025234px;}
.h1_c00432{height:25.091602px;}
.h7_c00432{height:31.364502px;}
.h2_c00432{height:35.571035px;}
.h3_c00432{height:39.777568px;}
.h4_c00432{height:43.910303px;}
.h9_c00432{height:48.116836px;}
.h0_c00432{height:1335.000000px;}
.w0_c00432{width:880.500000px;}
.x0_c00432{left:0.000000px;}
.xc_c00432{left:154.920000px;}
.x61_c00432{left:156.000000px;}
.x7f_c00432{left:157.275000px;}
.x1e_c00432{left:167.580000px;}
.x2d_c00432{left:169.920000px;}
.x32_c00432{left:171.000000px;}
.x42_c00432{left:172.500000px;}
.x103_c00432{left:173.580000px;}
.xc1_c00432{left:183.000000px;}
.xa1_c00432{left:187.500000px;}
.xd9_c00432{left:188.580000px;}
.xd1_c00432{left:189.855000px;}
.x3b_c00432{left:190.920000px;}
.xcf_c00432{left:192.420000px;}
.x6c_c00432{left:193.500000px;}
.x85_c00432{left:194.580000px;}
.x80_c00432{left:196.500000px;}
.x59_c00432{left:199.080000px;}
.xff_c00432{left:201.000000px;}
.xf6_c00432{left:204.000000px;}
.x2e_c00432{left:210.420000px;}
.x76_c00432{left:211.920000px;}
.xd_c00432{left:213.000000px;}
.x6d_c00432{left:214.500000px;}
.xd0_c00432{left:219.000000px;}
.xee_c00432{left:221.145000px;}
.xb7_c00432{left:223.500000px;}
.x3_c00432{left:225.000000px;}
.x86_c00432{left:226.080000px;}
.x1f_c00432{left:229.500000px;}
.x9e_c00432{left:230.580000px;}
.xb9_c00432{left:232.080000px;}
.x3c_c00432{left:234.000000px;}
.xe7_c00432{left:237.000000px;}
.x62_c00432{left:238.080000px;}
.x77_c00432{left:239.580000px;}
.x5a_c00432{left:241.080000px;}
.xe_c00432{left:243.000000px;}
.xd7_c00432{left:244.500000px;}
.xe0_c00432{left:246.420000px;}
.x8f_c00432{left:248.580000px;}
.xd2_c00432{left:250.500000px;}
.x90_c00432{left:252.000000px;}
.x43_c00432{left:253.500000px;}
.xa8_c00432{left:254.580000px;}
.xaf_c00432{left:256.080000px;}
.xc2_c00432{left:258.000000px;}
.x33_c00432{left:261.000000px;}
.x3d_c00432{left:263.355000px;}
.xc8_c00432{left:265.500000px;}
.x87_c00432{left:268.080000px;}
.x2f_c00432{left:270.000000px;}
.xba_c00432{left:273.000000px;}
.xda_c00432{left:277.080000px;}
.xd8_c00432{left:280.920000px;}
.x34_c00432{left:282.000000px;}
.x49_c00432{left:283.500000px;}
.x78_c00432{left:286.080000px;}
.x20_c00432{left:287.355000px;}
.xbb_c00432{left:289.080000px;}
.x30_c00432{left:291.000000px;}
.x3e_c00432{left:292.080000px;}
.xb8_c00432{left:295.080000px;}
.x21_c00432{left:300.000000px;}
.x44_c00432{left:303.000000px;}
.x9f_c00432{left:304.500000px;}
.xb0_c00432{left:306.000000px;}
.x5b_c00432{left:307.500000px;}
.x4_c00432{left:309.000000px;}
.xa9_c00432{left:310.500000px;}
.x63_c00432{left:312.000000px;}
.x88_c00432{left:313.500000px;}
.xf_c00432{left:317.580000px;}
.x22_c00432{left:319.500000px;}
.x6e_c00432{left:320.580000px;}
.xaa_c00432{left:322.500000px;}
.x45_c00432{left:325.080000px;}
.x3f_c00432{left:326.580000px;}
.xf7_c00432{left:328.500000px;}
.xe1_c00432{left:329.580000px;}
.xb1_c00432{left:331.080000px;}
.x102_c00432{left:334.500000px;}
.x79_c00432{left:336.000000px;}
.x10_c00432{left:338.355000px;}
.xe8_c00432{left:339.420000px;}
.xf8_c00432{left:340.500000px;}
.x91_c00432{left:343.500000px;}
.x81_c00432{left:346.920000px;}
.xa0_c00432{left:349.500000px;}
.x46_c00432{left:351.000000px;}
.xc3_c00432{left:353.580000px;}
.x89_c00432{left:356.145000px;}
.x23_c00432{left:358.080000px;}
.x6f_c00432{left:363.000000px;}
.x11_c00432{left:364.500000px;}
.x54_c00432{left:365.775000px;}
.xab_c00432{left:367.080000px;}
.x40_c00432{left:368.580000px;}
.x24_c00432{left:370.500000px;}
.x64_c00432{left:371.580000px;}
.xdb_c00432{left:373.500000px;}
.x92_c00432{left:376.500000px;}
.x4a_c00432{left:377.580000px;}
.x5_c00432{left:379.500000px;}
.x5c_c00432{left:382.500000px;}
.xe4_c00432{left:383.580000px;}
.x8a_c00432{left:387.000000px;}
.x12_c00432{left:388.500000px;}
.xc4_c00432{left:390.420000px;}
.xa2_c00432{left:391.500000px;}
.x31_c00432{left:393.000000px;}
.xd3_c00432{left:394.080000px;}
.xac_c00432{left:396.420000px;}
.xdd_c00432{left:397.920000px;}
.x98_c00432{left:399.000000px;}
.x41_c00432{left:400.920000px;}
.x13_c00432{left:403.080000px;}
.xc5_c00432{left:406.500000px;}
.x1_c00432{left:408.000000px;}
.xc9_c00432{left:409.080000px;}
.x82_c00432{left:410.580000px;}
.x93_c00432{left:412.080000px;}
.x65_c00432{left:413.580000px;}
.x70_c00432{left:415.080000px;}
.x47_c00432{left:416.145000px;}
.xa3_c00432{left:418.080000px;}
.xd4_c00432{left:420.000000px;}
.xe2_c00432{left:421.500000px;}
.x4b_c00432{left:424.080000px;}
.x35_c00432{left:427.080000px;}
.xe3_c00432{left:430.500000px;}
.xb2_c00432{left:433.920000px;}
.x25_c00432{left:436.920000px;}
.xad_c00432{left:439.500000px;}
.x14_c00432{left:441.000000px;}
.xfc_c00432{left:442.500000px;}
.xca_c00432{left:443.580000px;}
.x66_c00432{left:445.080000px;}
.x1d_c00432{left:447.000000px;}
.x8b_c00432{left:451.080000px;}
.x48_c00432{left:452.145000px;}
.x6_c00432{left:456.855000px;}
.xd5_c00432{left:460.080000px;}
.x4c_c00432{left:462.420000px;}
.xe9_c00432{left:463.500000px;}
.xfd_c00432{left:465.000000px;}
.x99_c00432{left:466.500000px;}
.xbc_c00432{left:468.000000px;}
.xae_c00432{left:469.080000px;}
.x26_c00432{left:471.000000px;}
.xa4_c00432{left:472.500000px;}
.x7_c00432{left:474.000000px;}
.xf3_c00432{left:475.080000px;}
.xd6_c00432{left:477.645000px;}
.x15_c00432{left:481.080000px;}
.x94_c00432{left:483.000000px;}
.xdc_c00432{left:486.000000px;}
.x9a_c00432{left:487.920000px;}
.x4d_c00432{left:489.000000px;}
.x55_c00432{left:490.080000px;}
.x8_c00432{left:493.500000px;}
.x7a_c00432{left:496.500000px;}
.xcb_c00432{left:499.500000px;}
.x16_c00432{left:500.580000px;}
.x27_c00432{left:504.000000px;}
.x71_c00432{left:508.920000px;}
.xc6_c00432{left:510.000000px;}
.x4e_c00432{left:511.500000px;}
.x67_c00432{left:515.580000px;}
.x95_c00432{left:517.080000px;}
.xde_c00432{left:519.000000px;}
.x100_c00432{left:520.080000px;}
.x56_c00432{left:525.000000px;}
.x17_c00432{left:528.420000px;}
.xef_c00432{left:529.500000px;}
.x5d_c00432{left:532.920000px;}
.xbd_c00432{left:536.580000px;}
.x9_c00432{left:538.080000px;}
.xb3_c00432{left:541.920000px;}
.xf0_c00432{left:544.500000px;}
.xea_c00432{left:546.420000px;}
.x72_c00432{left:548.580000px;}
.xe5_c00432{left:550.500000px;}
.x18_c00432{left:552.000000px;}
.xcc_c00432{left:553.500000px;}
.xa_c00432{left:555.000000px;}
.xb4_c00432{left:556.500000px;}
.x36_c00432{left:558.420000px;}
.x4f_c00432{left:559.500000px;}
.x5e_c00432{left:561.420000px;}
.x104_c00432{left:564.420000px;}
.x28_c00432{left:565.500000px;}
.x19_c00432{left:566.580000px;}
.xa5_c00432{left:568.920000px;}
.x101_c00432{left:570.420000px;}
.x8c_c00432{left:571.920000px;}
.x83_c00432{left:573.420000px;}
.xc7_c00432{left:577.080000px;}
.xf9_c00432{left:579.000000px;}
.xb5_c00432{left:580.500000px;}
.x7b_c00432{left:582.000000px;}
.x50_c00432{left:583.500000px;}
.x105_c00432{left:586.920000px;}
.xeb_c00432{left:588.000000px;}
.x68_c00432{left:592.500000px;}
.x37_c00432{left:595.500000px;}
.x29_c00432{left:597.000000px;}
.xf1_c00432{left:599.580000px;}
.x73_c00432{left:601.080000px;}
.x7c_c00432{left:603.000000px;}
.xbe_c00432{left:604.500000px;}
.xe6_c00432{left:607.500000px;}
.x57_c00432{left:609.420000px;}
.x8d_c00432{left:610.920000px;}
.x38_c00432{left:613.080000px;}
.xec_c00432{left:617.580000px;}
.xcd_c00432{left:619.080000px;}
.xfa_c00432{left:621.000000px;}
.xdf_c00432{left:624.000000px;}
.x2a_c00432{left:627.000000px;}
.xb_c00432{left:629.775000px;}
.x51_c00432{left:631.080000px;}
.x9b_c00432{left:634.500000px;}
.x69_c00432{left:636.420000px;}
.xbf_c00432{left:637.500000px;}
.xb6_c00432{left:639.645000px;}
.x84_c00432{left:640.920000px;}
.xf4_c00432{left:642.000000px;}
.xed_c00432{left:645.000000px;}
.x7d_c00432{left:647.580000px;}
.xa6_c00432{left:649.500000px;}
.x1a_c00432{left:650.580000px;}
.xce_c00432{left:652.920000px;}
.x52_c00432{left:654.420000px;}
.x96_c00432{left:655.920000px;}
.xfb_c00432{left:658.920000px;}
.x106_c00432{left:660.420000px;}
.x7e_c00432{left:663.000000px;}
.x2b_c00432{left:664.920000px;}
.x39_c00432{left:666.000000px;}
.x74_c00432{left:667.500000px;}
.x9c_c00432{left:669.000000px;}
.x1b_c00432{left:672.855000px;}
.x6a_c00432{left:675.000000px;}
.xa7_c00432{left:676.080000px;}
.x5f_c00432{left:677.580000px;}
.x2c_c00432{left:681.420000px;}
.x97_c00432{left:682.500000px;}
.x53_c00432{left:685.500000px;}
.xf5_c00432{left:688.500000px;}
.x9d_c00432{left:690.000000px;}
.x8e_c00432{left:692.580000px;}
.x3a_c00432{left:694.080000px;}
.xf2_c00432{left:696.000000px;}
.x1c_c00432{left:697.500000px;}
.x75_c00432{left:703.920000px;}
.x2_c00432{left:706.500000px;}
.xc0_c00432{left:708.000000px;}
.x60_c00432{left:709.920000px;}
.x6b_c00432{left:711.420000px;}
.x58_c00432{left:718.080000px;}
.xfe_c00432{left:722.580000px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.ls0_c00432{letter-spacing:0.000000pt;}
.ws2_c00432{word-spacing:-5.711730pt;}
.ws1_c00432{word-spacing:-2.598853pt;}
.ws0_c00432{word-spacing:-1.071393pt;}
.ws3_c00432{word-spacing:0.000000pt;}
.fs7_c00432{font-size:3.040000pt;}
.fs5_c00432{font-size:12.106667pt;}
.fs4_c00432{font-size:16.640000pt;}
.fs0_c00432{font-size:18.133333pt;}
.fs6_c00432{font-size:22.666667pt;}
.fs1_c00432{font-size:25.706667pt;}
.fs2_c00432{font-size:28.746667pt;}
.fs3_c00432{font-size:31.733333pt;}
.fs8_c00432{font-size:34.773333pt;}
.y0_c00432{bottom:0.000000pt;}
.yde_c00432{bottom:224.160000pt;}
.ydd_c00432{bottom:225.106667pt;}
.ye5_c00432{bottom:225.493333pt;}
.ye2_c00432{bottom:225.893333pt;}
.ye0_c00432{bottom:226.066667pt;}
.ye1_c00432{bottom:226.266667pt;}
.ye3_c00432{bottom:226.640000pt;}
.ydf_c00432{bottom:227.026667pt;}
.ye4_c00432{bottom:228.360000pt;}
.yd8_c00432{bottom:242.440000pt;}
.ydc_c00432{bottom:242.640000pt;}
.yda_c00432{bottom:244.360000pt;}
.ydb_c00432{bottom:244.560000pt;}
.yd9_c00432{bottom:245.706667pt;}
.yd5_c00432{bottom:260.933333pt;}
.yd6_c00432{bottom:261.106667pt;}
.yd7_c00432{bottom:263.026667pt;}
.yd1_c00432{bottom:278.440000pt;}
.yd3_c00432{bottom:279.026667pt;}
.yd2_c00432{bottom:279.973333pt;}
.yd0_c00432{bottom:280.360000pt;}
.yd4_c00432{bottom:281.306667pt;}
.ycd_c00432{bottom:295.773333pt;}
.ycf_c00432{bottom:296.360000pt;}
.ycb_c00432{bottom:297.306667pt;}
.ycc_c00432{bottom:297.693333pt;}
.yce_c00432{bottom:298.640000pt;}
.yc5_c00432{bottom:313.106667pt;}
.yc8_c00432{bottom:313.693333pt;}
.yc9_c00432{bottom:313.893333pt;}
.yc7_c00432{bottom:314.066667pt;}
.yca_c00432{bottom:314.440000pt;}
.yc4_c00432{bottom:315.026667pt;}
.yc6_c00432{bottom:315.973333pt;}
.yc1_c00432{bottom:329.106667pt;}
.ybf_c00432{bottom:330.440000pt;}
.yc0_c00432{bottom:331.026667pt;}
.yc2_c00432{bottom:331.973333pt;}
.ybe_c00432{bottom:332.360000pt;}
.ybd_c00432{bottom:332.560000pt;}
.yc3_c00432{bottom:333.306667pt;}
.yb9_c00432{bottom:347.773333pt;}
.ybb_c00432{bottom:348.560000pt;}
.yba_c00432{bottom:349.306667pt;}
.yb8_c00432{bottom:349.693333pt;}
.ybc_c00432{bottom:349.893333pt;}
.yb7_c00432{bottom:372.733333pt;}
.yb4_c00432{bottom:373.693333pt;}
.yb3_c00432{bottom:374.066667pt;}
.yb6_c00432{bottom:374.640000pt;}
.yb5_c00432{bottom:374.840000pt;}
.yb2_c00432{bottom:375.026667pt;}
.yb1_c00432{bottom:375.973333pt;}
.yac_c00432{bottom:386.066667pt;}
.yae_c00432{bottom:387.026667pt;}
.yab_c00432{bottom:387.600000pt;}
.yad_c00432{bottom:387.973333pt;}
.yaf_c00432{bottom:388.173333pt;}
.yb0_c00432{bottom:388.933333pt;}
.ya9_c00432{bottom:398.640000pt;}
.ya8_c00432{bottom:400.360000pt;}
.ya7_c00432{bottom:400.560000pt;}
.ya6_c00432{bottom:401.306667pt;}
.yaa_c00432{bottom:402.266667pt;}
.ya1_c00432{bottom:412.733333pt;}
.ya2_c00432{bottom:413.693333pt;}
.ya4_c00432{bottom:413.893333pt;}
.ya5_c00432{bottom:414.266667pt;}
.ya3_c00432{bottom:414.640000pt;}
.ya0_c00432{bottom:415.600000pt;}
.y9a_c00432{bottom:425.306667pt;}
.y9b_c00432{bottom:426.066667pt;}
.y9e_c00432{bottom:427.026667pt;}
.y9d_c00432{bottom:427.973333pt;}
.y9c_c00432{bottom:428.173333pt;}
.y9f_c00432{bottom:428.933333pt;}
.y97_c00432{bottom:440.360000pt;}
.y98_c00432{bottom:441.306667pt;}
.y99_c00432{bottom:442.266667pt;}
.y96_c00432{bottom:451.400000pt;}
.y94_c00432{bottom:452.360000pt;}
.y95_c00432{bottom:452.560000pt;}
.y90_c00432{bottom:452.733333pt;}
.y93_c00432{bottom:453.306667pt;}
.y8f_c00432{bottom:454.266667pt;}
.y91_c00432{bottom:454.640000pt;}
.y92_c00432{bottom:455.600000pt;}
.y8e_c00432{bottom:466.066667pt;}
.y8d_c00432{bottom:468.933333pt;}
.y8b_c00432{bottom:477.306667pt;}
.y8c_c00432{bottom:478.066667pt;}
.y89_c00432{bottom:479.026667pt;}
.y86_c00432{bottom:479.600000pt;}
.y8a_c00432{bottom:480.173333pt;}
.y87_c00432{bottom:480.360000pt;}
.y88_c00432{bottom:480.933333pt;}
.y84_c00432{bottom:491.400000pt;}
.y82_c00432{bottom:491.973333pt;}
.y80_c00432{bottom:492.360000pt;}
.y83_c00432{bottom:493.306667pt;}
.y81_c00432{bottom:493.893333pt;}
.y85_c00432{bottom:494.266667pt;}
.y7c_c00432{bottom:504.933333pt;}
.y7e_c00432{bottom:505.693333pt;}
.y7d_c00432{bottom:506.640000pt;}
.y7f_c00432{bottom:507.600000pt;}
.y7b_c00432{bottom:518.066667pt;}
.y7a_c00432{bottom:520.933333pt;}
.y79_c00432{bottom:530.640000pt;}
.y76_c00432{bottom:531.400000pt;}
.y71_c00432{bottom:531.600000pt;}
.y77_c00432{bottom:532.360000pt;}
.y78_c00432{bottom:532.560000pt;}
.y75_c00432{bottom:532.933333pt;}
.y72_c00432{bottom:533.306667pt;}
.y73_c00432{bottom:533.506667pt;}
.y74_c00432{bottom:534.266667pt;}
.y6e_c00432{bottom:543.973333pt;}
.y70_c00432{bottom:544.360000pt;}
.y6b_c00432{bottom:545.693333pt;}
.y6c_c00432{bottom:545.893333pt;}
.y6f_c00432{bottom:546.266667pt;}
.y6d_c00432{bottom:546.640000pt;}
.y6a_c00432{bottom:558.066667pt;}
.y68_c00432{bottom:559.026667pt;}
.y65_c00432{bottom:559.226667pt;}
.y69_c00432{bottom:559.600000pt;}
.y66_c00432{bottom:559.973333pt;}
.y67_c00432{bottom:560.933333pt;}
.y64_c00432{bottom:570.066667pt;}
.y62_c00432{bottom:570.266667pt;}
.y61_c00432{bottom:571.400000pt;}
.y63_c00432{bottom:571.973333pt;}
.y5d_c00432{bottom:572.360000pt;}
.y5f_c00432{bottom:572.560000pt;}
.y60_c00432{bottom:572.933333pt;}
.y5e_c00432{bottom:573.306667pt;}
.y5a_c00432{bottom:584.360000pt;}
.y5b_c00432{bottom:585.306667pt;}
.y59_c00432{bottom:585.893333pt;}
.y5c_c00432{bottom:586.266667pt;}
.y56_c00432{bottom:609.693333pt;}
.y58_c00432{bottom:609.893333pt;}
.y57_c00432{bottom:610.640000pt;}
.y55_c00432{bottom:625.106667pt;}
.y51_c00432{bottom:626.440000pt;}
.y53_c00432{bottom:627.026667pt;}
.y54_c00432{bottom:627.226667pt;}
.y52_c00432{bottom:628.360000pt;}
.y4f_c00432{bottom:642.440000pt;}
.y50_c00432{bottom:643.400000pt;}
.y4c_c00432{bottom:644.360000pt;}
.y4e_c00432{bottom:645.306667pt;}
.y4d_c00432{bottom:645.706667pt;}
.y49_c00432{bottom:660.360000pt;}
.y4a_c00432{bottom:662.640000pt;}
.y4b_c00432{bottom:663.026667pt;}
.y46_c00432{bottom:676.360000pt;}
.y47_c00432{bottom:679.226667pt;}
.y45_c00432{bottom:679.400000pt;}
.y48_c00432{bottom:679.973333pt;}
.y44_c00432{bottom:680.360000pt;}
.y40_c00432{bottom:695.773333pt;}
.y43_c00432{bottom:696.733333pt;}
.y41_c00432{bottom:697.306667pt;}
.y42_c00432{bottom:697.693333pt;}
.y3d_c00432{bottom:711.973333pt;}
.y3f_c00432{bottom:713.106667pt;}
.y3c_c00432{bottom:715.026667pt;}
.y3e_c00432{bottom:715.973333pt;}
.y3a_c00432{bottom:729.693333pt;}
.y37_c00432{bottom:730.440000pt;}
.y38_c00432{bottom:730.640000pt;}
.y3b_c00432{bottom:731.226667pt;}
.y35_c00432{bottom:732.360000pt;}
.y39_c00432{bottom:732.560000pt;}
.y36_c00432{bottom:733.306667pt;}
.y33_c00432{bottom:747.026667pt;}
.y30_c00432{bottom:747.773333pt;}
.y32_c00432{bottom:748.733333pt;}
.y31_c00432{bottom:749.693333pt;}
.y34_c00432{bottom:749.893333pt;}
.y2f_c00432{bottom:751.026667pt;}
.y2e_c00432{bottom:767.026667pt;}
.y2d_c00432{bottom:767.400000pt;}
.y2c_c00432{bottom:768.360000pt;}
.y28_c00432{bottom:782.440000pt;}
.y2b_c00432{bottom:783.600000pt;}
.y2a_c00432{bottom:783.773333pt;}
.y29_c00432{bottom:784.360000pt;}
.y27_c00432{bottom:799.026667pt;}
.y23_c00432{bottom:800.160000pt;}
.y24_c00432{bottom:800.360000pt;}
.y25_c00432{bottom:801.106667pt;}
.y26_c00432{bottom:801.893333pt;}
.y21_c00432{bottom:803.026667pt;}
.y22_c00432{bottom:803.040000pt;}
.y20_c00432{bottom:818.440000pt;}
.y1e_c00432{bottom:819.226667pt;}
.y1d_c00432{bottom:820.360000pt;}
.y1f_c00432{bottom:820.373333pt;}
.y1b_c00432{bottom:835.773333pt;}
.y1c_c00432{bottom:836.733333pt;}
.y1a_c00432{bottom:837.693333pt;}
.y18_c00432{bottom:852.360000pt;}
.y15_c00432{bottom:853.106667pt;}
.y17_c00432{bottom:854.066667pt;}
.y19_c00432{bottom:855.226667pt;}
.y16_c00432{bottom:856.373333pt;}
.y11_c00432{bottom:870.440000pt;}
.y13_c00432{bottom:871.400000pt;}
.y14_c00432{bottom:872.360000pt;}
.y12_c00432{bottom:873.706667pt;}
.yd_c00432{bottom:891.400000pt;}
.y10_c00432{bottom:891.600000pt;}
.yc_c00432{bottom:892.360000pt;}
.ye_c00432{bottom:893.306667pt;}
.yf_c00432{bottom:894.266667pt;}
.yb_c00432{bottom:909.693333pt;}
.y6_c00432{bottom:922.066667pt;}
.y7_c00432{bottom:923.026667pt;}
.y9_c00432{bottom:923.226667pt;}
.ya_c00432{bottom:924.173333pt;}
.y8_c00432{bottom:924.933333pt;}
.y5_c00432{bottom:943.773333pt;}
.y3_c00432{bottom:944.733333pt;}
.y4_c00432{bottom:945.693333pt;}
.y2_c00432{bottom:977.693333pt;}
.y1_c00432{bottom:979.600000pt;}
.h8_c00432{height:3.739141pt;}
.h6_c00432{height:14.890964pt;}
.h5_c00432{height:20.466875pt;}
.h1_c00432{height:22.303646pt;}
.h7_c00432{height:27.879557pt;}
.h2_c00432{height:31.618698pt;}
.h3_c00432{height:35.357839pt;}
.h4_c00432{height:39.031380pt;}
.h9_c00432{height:42.770521pt;}
.h0_c00432{height:1186.666667pt;}
.w0_c00432{width:782.666667pt;}
.x0_c00432{left:0.000000pt;}
.xc_c00432{left:137.706667pt;}
.x61_c00432{left:138.666667pt;}
.x7f_c00432{left:139.800000pt;}
.x1e_c00432{left:148.960000pt;}
.x2d_c00432{left:151.040000pt;}
.x32_c00432{left:152.000000pt;}
.x42_c00432{left:153.333333pt;}
.x103_c00432{left:154.293333pt;}
.xc1_c00432{left:162.666667pt;}
.xa1_c00432{left:166.666667pt;}
.xd9_c00432{left:167.626667pt;}
.xd1_c00432{left:168.760000pt;}
.x3b_c00432{left:169.706667pt;}
.xcf_c00432{left:171.040000pt;}
.x6c_c00432{left:172.000000pt;}
.x85_c00432{left:172.960000pt;}
.x80_c00432{left:174.666667pt;}
.x59_c00432{left:176.960000pt;}
.xff_c00432{left:178.666667pt;}
.xf6_c00432{left:181.333333pt;}
.x2e_c00432{left:187.040000pt;}
.x76_c00432{left:188.373333pt;}
.xd_c00432{left:189.333333pt;}
.x6d_c00432{left:190.666667pt;}
.xd0_c00432{left:194.666667pt;}
.xee_c00432{left:196.573333pt;}
.xb7_c00432{left:198.666667pt;}
.x3_c00432{left:200.000000pt;}
.x86_c00432{left:200.960000pt;}
.x1f_c00432{left:204.000000pt;}
.x9e_c00432{left:204.960000pt;}
.xb9_c00432{left:206.293333pt;}
.x3c_c00432{left:208.000000pt;}
.xe7_c00432{left:210.666667pt;}
.x62_c00432{left:211.626667pt;}
.x77_c00432{left:212.960000pt;}
.x5a_c00432{left:214.293333pt;}
.xe_c00432{left:216.000000pt;}
.xd7_c00432{left:217.333333pt;}
.xe0_c00432{left:219.040000pt;}
.x8f_c00432{left:220.960000pt;}
.xd2_c00432{left:222.666667pt;}
.x90_c00432{left:224.000000pt;}
.x43_c00432{left:225.333333pt;}
.xa8_c00432{left:226.293333pt;}
.xaf_c00432{left:227.626667pt;}
.xc2_c00432{left:229.333333pt;}
.x33_c00432{left:232.000000pt;}
.x3d_c00432{left:234.093333pt;}
.xc8_c00432{left:236.000000pt;}
.x87_c00432{left:238.293333pt;}
.x2f_c00432{left:240.000000pt;}
.xba_c00432{left:242.666667pt;}
.xda_c00432{left:246.293333pt;}
.xd8_c00432{left:249.706667pt;}
.x34_c00432{left:250.666667pt;}
.x49_c00432{left:252.000000pt;}
.x78_c00432{left:254.293333pt;}
.x20_c00432{left:255.426667pt;}
.xbb_c00432{left:256.960000pt;}
.x30_c00432{left:258.666667pt;}
.x3e_c00432{left:259.626667pt;}
.xb8_c00432{left:262.293333pt;}
.x21_c00432{left:266.666667pt;}
.x44_c00432{left:269.333333pt;}
.x9f_c00432{left:270.666667pt;}
.xb0_c00432{left:272.000000pt;}
.x5b_c00432{left:273.333333pt;}
.x4_c00432{left:274.666667pt;}
.xa9_c00432{left:276.000000pt;}
.x63_c00432{left:277.333333pt;}
.x88_c00432{left:278.666667pt;}
.xf_c00432{left:282.293333pt;}
.x22_c00432{left:284.000000pt;}
.x6e_c00432{left:284.960000pt;}
.xaa_c00432{left:286.666667pt;}
.x45_c00432{left:288.960000pt;}
.x3f_c00432{left:290.293333pt;}
.xf7_c00432{left:292.000000pt;}
.xe1_c00432{left:292.960000pt;}
.xb1_c00432{left:294.293333pt;}
.x102_c00432{left:297.333333pt;}
.x79_c00432{left:298.666667pt;}
.x10_c00432{left:300.760000pt;}
.xe8_c00432{left:301.706667pt;}
.xf8_c00432{left:302.666667pt;}
.x91_c00432{left:305.333333pt;}
.x81_c00432{left:308.373333pt;}
.xa0_c00432{left:310.666667pt;}
.x46_c00432{left:312.000000pt;}
.xc3_c00432{left:314.293333pt;}
.x89_c00432{left:316.573333pt;}
.x23_c00432{left:318.293333pt;}
.x6f_c00432{left:322.666667pt;}
.x11_c00432{left:324.000000pt;}
.x54_c00432{left:325.133333pt;}
.xab_c00432{left:326.293333pt;}
.x40_c00432{left:327.626667pt;}
.x24_c00432{left:329.333333pt;}
.x64_c00432{left:330.293333pt;}
.xdb_c00432{left:332.000000pt;}
.x92_c00432{left:334.666667pt;}
.x4a_c00432{left:335.626667pt;}
.x5_c00432{left:337.333333pt;}
.x5c_c00432{left:340.000000pt;}
.xe4_c00432{left:340.960000pt;}
.x8a_c00432{left:344.000000pt;}
.x12_c00432{left:345.333333pt;}
.xc4_c00432{left:347.040000pt;}
.xa2_c00432{left:348.000000pt;}
.x31_c00432{left:349.333333pt;}
.xd3_c00432{left:350.293333pt;}
.xac_c00432{left:352.373333pt;}
.xdd_c00432{left:353.706667pt;}
.x98_c00432{left:354.666667pt;}
.x41_c00432{left:356.373333pt;}
.x13_c00432{left:358.293333pt;}
.xc5_c00432{left:361.333333pt;}
.x1_c00432{left:362.666667pt;}
.xc9_c00432{left:363.626667pt;}
.x82_c00432{left:364.960000pt;}
.x93_c00432{left:366.293333pt;}
.x65_c00432{left:367.626667pt;}
.x70_c00432{left:368.960000pt;}
.x47_c00432{left:369.906667pt;}
.xa3_c00432{left:371.626667pt;}
.xd4_c00432{left:373.333333pt;}
.xe2_c00432{left:374.666667pt;}
.x4b_c00432{left:376.960000pt;}
.x35_c00432{left:379.626667pt;}
.xe3_c00432{left:382.666667pt;}
.xb2_c00432{left:385.706667pt;}
.x25_c00432{left:388.373333pt;}
.xad_c00432{left:390.666667pt;}
.x14_c00432{left:392.000000pt;}
.xfc_c00432{left:393.333333pt;}
.xca_c00432{left:394.293333pt;}
.x66_c00432{left:395.626667pt;}
.x1d_c00432{left:397.333333pt;}
.x8b_c00432{left:400.960000pt;}
.x48_c00432{left:401.906667pt;}
.x6_c00432{left:406.093333pt;}
.xd5_c00432{left:408.960000pt;}
.x4c_c00432{left:411.040000pt;}
.xe9_c00432{left:412.000000pt;}
.xfd_c00432{left:413.333333pt;}
.x99_c00432{left:414.666667pt;}
.xbc_c00432{left:416.000000pt;}
.xae_c00432{left:416.960000pt;}
.x26_c00432{left:418.666667pt;}
.xa4_c00432{left:420.000000pt;}
.x7_c00432{left:421.333333pt;}
.xf3_c00432{left:422.293333pt;}
.xd6_c00432{left:424.573333pt;}
.x15_c00432{left:427.626667pt;}
.x94_c00432{left:429.333333pt;}
.xdc_c00432{left:432.000000pt;}
.x9a_c00432{left:433.706667pt;}
.x4d_c00432{left:434.666667pt;}
.x55_c00432{left:435.626667pt;}
.x8_c00432{left:438.666667pt;}
.x7a_c00432{left:441.333333pt;}
.xcb_c00432{left:444.000000pt;}
.x16_c00432{left:444.960000pt;}
.x27_c00432{left:448.000000pt;}
.x71_c00432{left:452.373333pt;}
.xc6_c00432{left:453.333333pt;}
.x4e_c00432{left:454.666667pt;}
.x67_c00432{left:458.293333pt;}
.x95_c00432{left:459.626667pt;}
.xde_c00432{left:461.333333pt;}
.x100_c00432{left:462.293333pt;}
.x56_c00432{left:466.666667pt;}
.x17_c00432{left:469.706667pt;}
.xef_c00432{left:470.666667pt;}
.x5d_c00432{left:473.706667pt;}
.xbd_c00432{left:476.960000pt;}
.x9_c00432{left:478.293333pt;}
.xb3_c00432{left:481.706667pt;}
.xf0_c00432{left:484.000000pt;}
.xea_c00432{left:485.706667pt;}
.x72_c00432{left:487.626667pt;}
.xe5_c00432{left:489.333333pt;}
.x18_c00432{left:490.666667pt;}
.xcc_c00432{left:492.000000pt;}
.xa_c00432{left:493.333333pt;}
.xb4_c00432{left:494.666667pt;}
.x36_c00432{left:496.373333pt;}
.x4f_c00432{left:497.333333pt;}
.x5e_c00432{left:499.040000pt;}
.x104_c00432{left:501.706667pt;}
.x28_c00432{left:502.666667pt;}
.x19_c00432{left:503.626667pt;}
.xa5_c00432{left:505.706667pt;}
.x101_c00432{left:507.040000pt;}
.x8c_c00432{left:508.373333pt;}
.x83_c00432{left:509.706667pt;}
.xc7_c00432{left:512.960000pt;}
.xf9_c00432{left:514.666667pt;}
.xb5_c00432{left:516.000000pt;}
.x7b_c00432{left:517.333333pt;}
.x50_c00432{left:518.666667pt;}
.x105_c00432{left:521.706667pt;}
.xeb_c00432{left:522.666667pt;}
.x68_c00432{left:526.666667pt;}
.x37_c00432{left:529.333333pt;}
.x29_c00432{left:530.666667pt;}
.xf1_c00432{left:532.960000pt;}
.x73_c00432{left:534.293333pt;}
.x7c_c00432{left:536.000000pt;}
.xbe_c00432{left:537.333333pt;}
.xe6_c00432{left:540.000000pt;}
.x57_c00432{left:541.706667pt;}
.x8d_c00432{left:543.040000pt;}
.x38_c00432{left:544.960000pt;}
.xec_c00432{left:548.960000pt;}
.xcd_c00432{left:550.293333pt;}
.xfa_c00432{left:552.000000pt;}
.xdf_c00432{left:554.666667pt;}
.x2a_c00432{left:557.333333pt;}
.xb_c00432{left:559.800000pt;}
.x51_c00432{left:560.960000pt;}
.x9b_c00432{left:564.000000pt;}
.x69_c00432{left:565.706667pt;}
.xbf_c00432{left:566.666667pt;}
.xb6_c00432{left:568.573333pt;}
.x84_c00432{left:569.706667pt;}
.xf4_c00432{left:570.666667pt;}
.xed_c00432{left:573.333333pt;}
.x7d_c00432{left:575.626667pt;}
.xa6_c00432{left:577.333333pt;}
.x1a_c00432{left:578.293333pt;}
.xce_c00432{left:580.373333pt;}
.x52_c00432{left:581.706667pt;}
.x96_c00432{left:583.040000pt;}
.xfb_c00432{left:585.706667pt;}
.x106_c00432{left:587.040000pt;}
.x7e_c00432{left:589.333333pt;}
.x2b_c00432{left:591.040000pt;}
.x39_c00432{left:592.000000pt;}
.x74_c00432{left:593.333333pt;}
.x9c_c00432{left:594.666667pt;}
.x1b_c00432{left:598.093333pt;}
.x6a_c00432{left:600.000000pt;}
.xa7_c00432{left:600.960000pt;}
.x5f_c00432{left:602.293333pt;}
.x2c_c00432{left:605.706667pt;}
.x97_c00432{left:606.666667pt;}
.x53_c00432{left:609.333333pt;}
.xf5_c00432{left:612.000000pt;}
.x9d_c00432{left:613.333333pt;}
.x8e_c00432{left:615.626667pt;}
.x3a_c00432{left:616.960000pt;}
.xf2_c00432{left:618.666667pt;}
.x1c_c00432{left:620.000000pt;}
.x75_c00432{left:625.706667pt;}
.x2_c00432{left:628.000000pt;}
.xc0_c00432{left:629.333333pt;}
.x60_c00432{left:631.040000pt;}
.x6b_c00432{left:632.373333pt;}
.x58_c00432{left:638.293333pt;}
.xfe_c00432{left:642.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_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_4ac484a8f05670f97fa65b2f.woff2')format("woff");}.ff1_c00433{font-family:ff1_c00433;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mcc_c00433{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.md5_c00433{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.md2_c00433{transform:matrix(0.363445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363445,0.000000,0.000000,0.250000,0,0);}
.m69_c00433{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m6e_c00433{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.md7_c00433{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m8f_c00433{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.me5_c00433{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.m60_c00433{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m89_c00433{transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);}
.me1_c00433{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.mbe_c00433{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m7_c00433{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m5f_c00433{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m7d_c00433{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m34_c00433{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.mbb_c00433{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.ma3_c00433{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m38_c00433{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m47_c00433{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mb4_c00433{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.mb5_c00433{transform:matrix(0.411043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411043,0.000000,0.000000,0.250000,0,0);}
.m7e_c00433{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.ma2_c00433{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m49_c00433{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m9_c00433{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m90_c00433{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.mc3_c00433{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.mbc_c00433{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m7b_c00433{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.ma8_c00433{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.mc4_c00433{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m80_c00433{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m6_c00433{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m17_c00433{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.me0_c00433{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m68_c00433{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mdc_c00433{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m95_c00433{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.mad_c00433{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m8_c00433{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m13_c00433{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mb8_c00433{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m75_c00433{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m54_c00433{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.mb1_c00433{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.mda_c00433{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.mdb_c00433{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.me_c00433{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m39_c00433{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.maa_c00433{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m3c_c00433{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m41_c00433{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m3a_c00433{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mb7_c00433{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.mc5_c00433{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mcb_c00433{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m63_c00433{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m58_c00433{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m37_c00433{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m9f_c00433{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.md0_c00433{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.mbf_c00433{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m94_c00433{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m7f_c00433{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m91_c00433{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.mba_c00433{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m11_c00433{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.mb9_c00433{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m25_c00433{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m5_c00433{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m53_c00433{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m29_c00433{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.me2_c00433{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mae_c00433{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m43_c00433{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m9a_c00433{transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);}
.m27_c00433{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.m71_c00433{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m28_c00433{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.m6c_c00433{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m4f_c00433{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.me9_c00433{transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);}
.m1c_c00433{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.mcd_c00433{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mce_c00433{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.m9c_c00433{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.md1_c00433{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.mf_c00433{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.maf_c00433{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m6b_c00433{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m2a_c00433{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m92_c00433{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m40_c00433{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mb2_c00433{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m78_c00433{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m8c_c00433{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m79_c00433{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m45_c00433{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mb3_c00433{transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);}
.m62_c00433{transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);}
.md4_c00433{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m76_c00433{transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);}
.mca_c00433{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m1b_c00433{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_c00433{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m65_c00433{transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);}
.mb6_c00433{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mdd_c00433{transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);}
.m8b_c00433{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m1f_c00433{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m97_c00433{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.mc1_c00433{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.ma6_c00433{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m87_c00433{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m23_c00433{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m1e_c00433{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m2c_c00433{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m9b_c00433{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.mb_c00433{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m98_c00433{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m42_c00433{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.me8_c00433{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.me3_c00433{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m51_c00433{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.md6_c00433{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m9e_c00433{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m3e_c00433{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.md8_c00433{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m84_c00433{transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);}
.m4a_c00433{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.me6_c00433{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m1d_c00433{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m2b_c00433{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m5c_c00433{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mcf_c00433{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m56_c00433{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m15_c00433{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m3_c00433{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mab_c00433{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m61_c00433{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m50_c00433{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m19_c00433{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m33_c00433{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m4_c00433{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m52_c00433{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m74_c00433{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m73_c00433{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m66_c00433{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m8a_c00433{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m7a_c00433{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m5a_c00433{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m4c_c00433{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m18_c00433{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m77_c00433{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mdf_c00433{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m24_c00433{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.ma1_c00433{transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);}
.m4b_c00433{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m46_c00433{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m5d_c00433{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m3b_c00433{transform:matrix(0.555195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555195,0.000000,0.000000,0.250000,0,0);}
.m16_c00433{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.me7_c00433{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m32_c00433{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m20_c00433{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.ma4_c00433{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m6a_c00433{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m2f_c00433{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m88_c00433{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m8d_c00433{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m57_c00433{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mc9_c00433{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m12_c00433{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.mc8_c00433{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m7c_c00433{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m30_c00433{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.ma9_c00433{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m6d_c00433{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m55_c00433{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m1a_c00433{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m21_c00433{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m86_c00433{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m10_c00433{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m67_c00433{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m2e_c00433{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m0_c00433{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m14_c00433{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m22_c00433{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m31_c00433{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.md3_c00433{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.ma_c00433{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_c00433{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.ma5_c00433{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m9d_c00433{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m4e_c00433{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mac_c00433{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.ma0_c00433{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.mbd_c00433{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m5e_c00433{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_c00433{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m96_c00433{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m4d_c00433{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m3d_c00433{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m81_c00433{transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);}
.m85_c00433{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m48_c00433{transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);}
.m2_c00433{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.md_c00433{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m35_c00433{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mc0_c00433{transform:matrix(0.696471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696471,0.000000,0.000000,0.250000,0,0);}
.m1_c00433{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m99_c00433{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.m82_c00433{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m44_c00433{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.md9_c00433{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m64_c00433{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m5b_c00433{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.mc2_c00433{transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);}
.m2d_c00433{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m93_c00433{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.m6f_c00433{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m36_c00433{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.me4_c00433{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.ma7_c00433{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m83_c00433{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mde_c00433{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.m8e_c00433{transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);}
.m26_c00433{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m59_c00433{transform:matrix(0.801282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.801282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.801282,0.000000,0.000000,0.250000,0,0);}
.mc6_c00433{transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);}
.m70_c00433{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.mb0_c00433{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.mc7_c00433{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.v0_c00433{vertical-align:0.000000px;}
.v1_c00433{vertical-align:6.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;}
}
.ws2_c00433{word-spacing:-4.859423px;}
.ws0_c00433{word-spacing:-2.630198px;}
.ws3_c00433{word-spacing:0.000000px;}
.ws1_c00433{word-spacing:1.010502px;}
.fc0_c00433{color:transparent;}
.fs1_c00433{font-size:18.720000px;}
.fs0_c00433{font-size:25.500000px;}
.fs2_c00433{font-size:28.920000px;}
.fs4_c00433{font-size:32.340000px;}
.fs3_c00433{font-size:35.700000px;}
.fs5_c00433{font-size:39.120000px;}
.y0_c00433{bottom:0.000000px;}
.yc2_c00433{bottom:255.405000px;}
.yc1_c00433{bottom:270.405000px;}
.yc0_c00433{bottom:272.745000px;}
.ybf_c00433{bottom:274.905000px;}
.ybe_c00433{bottom:293.745000px;}
.ybc_c00433{bottom:294.405000px;}
.ybb_c00433{bottom:294.630000px;}
.ybd_c00433{bottom:295.905000px;}
.yb7_c00433{bottom:313.245000px;}
.yb6_c00433{bottom:313.905000px;}
.yb8_c00433{bottom:314.130000px;}
.yba_c00433{bottom:314.325000px;}
.yb9_c00433{bottom:315.405000px;}
.yb1_c00433{bottom:332.745000px;}
.yb2_c00433{bottom:333.630000px;}
.yb4_c00433{bottom:333.825000px;}
.yb3_c00433{bottom:334.905000px;}
.yb5_c00433{bottom:335.130000px;}
.yad_c00433{bottom:349.905000px;}
.yaf_c00433{bottom:352.245000px;}
.yb0_c00433{bottom:353.130000px;}
.yae_c00433{bottom:354.405000px;}
.yaa_c00433{bottom:370.470000px;}
.yab_c00433{bottom:371.745000px;}
.ya9_c00433{bottom:373.245000px;}
.ya8_c00433{bottom:373.470000px;}
.ya7_c00433{bottom:373.905000px;}
.yac_c00433{bottom:374.970000px;}
.ya5_c00433{bottom:391.245000px;}
.ya4_c00433{bottom:392.325000px;}
.ya6_c00433{bottom:393.405000px;}
.ya3_c00433{bottom:394.905000px;}
.ya2_c00433{bottom:410.745000px;}
.ya1_c00433{bottom:412.245000px;}
.y9e_c00433{bottom:412.905000px;}
.y9f_c00433{bottom:413.130000px;}
.ya0_c00433{bottom:413.970000px;}
.y99_c00433{bottom:431.745000px;}
.y9c_c00433{bottom:432.405000px;}
.y9d_c00433{bottom:432.630000px;}
.y9a_c00433{bottom:432.825000px;}
.y9b_c00433{bottom:433.470000px;}
.y97_c00433{bottom:433.905000px;}
.y98_c00433{bottom:434.970000px;}
.y95_c00433{bottom:449.970000px;}
.y93_c00433{bottom:451.245000px;}
.y96_c00433{bottom:451.905000px;}
.y91_c00433{bottom:452.325000px;}
.y94_c00433{bottom:452.970000px;}
.y92_c00433{bottom:453.405000px;}
.y8f_c00433{bottom:470.745000px;}
.y90_c00433{bottom:472.905000px;}
.y8e_c00433{bottom:473.130000px;}
.y8d_c00433{bottom:489.180000px;}
.y8c_c00433{bottom:491.325000px;}
.y8b_c00433{bottom:492.405000px;}
.y89_c00433{bottom:509.745000px;}
.y85_c00433{bottom:511.245000px;}
.y87_c00433{bottom:511.905000px;}
.y88_c00433{bottom:512.130000px;}
.y8a_c00433{bottom:512.970000px;}
.y86_c00433{bottom:513.405000px;}
.y83_c00433{bottom:529.245000px;}
.y84_c00433{bottom:530.325000px;}
.y82_c00433{bottom:531.405000px;}
.y80_c00433{bottom:532.470000px;}
.y81_c00433{bottom:532.905000px;}
.y7b_c00433{bottom:548.745000px;}
.y7a_c00433{bottom:548.970000px;}
.y7f_c00433{bottom:550.245000px;}
.y7e_c00433{bottom:550.905000px;}
.y7d_c00433{bottom:551.130000px;}
.y7c_c00433{bottom:551.970000px;}
.y79_c00433{bottom:552.405000px;}
.y77_c00433{bottom:569.745000px;}
.y76_c00433{bottom:570.630000px;}
.y78_c00433{bottom:571.905000px;}
.y74_c00433{bottom:588.825000px;}
.y71_c00433{bottom:589.245000px;}
.y72_c00433{bottom:590.130000px;}
.y75_c00433{bottom:590.325000px;}
.y73_c00433{bottom:590.970000px;}
.y70_c00433{bottom:591.405000px;}
.y6a_c00433{bottom:607.245000px;}
.y6d_c00433{bottom:608.745000px;}
.y6f_c00433{bottom:609.630000px;}
.y6b_c00433{bottom:610.470000px;}
.y6e_c00433{bottom:610.905000px;}
.y6c_c00433{bottom:611.130000px;}
.y68_c00433{bottom:627.825000px;}
.y65_c00433{bottom:628.245000px;}
.y64_c00433{bottom:629.130000px;}
.y69_c00433{bottom:629.325000px;}
.y66_c00433{bottom:630.405000px;}
.y67_c00433{bottom:631.470000px;}
.y5f_c00433{bottom:647.745000px;}
.y63_c00433{bottom:648.630000px;}
.y61_c00433{bottom:648.825000px;}
.y62_c00433{bottom:649.905000px;}
.y60_c00433{bottom:650.130000px;}
.y5a_c00433{bottom:666.405000px;}
.y5b_c00433{bottom:667.680000px;}
.y5e_c00433{bottom:669.405000px;}
.y5c_c00433{bottom:669.630000px;}
.y5d_c00433{bottom:670.905000px;}
.y59_c00433{bottom:686.745000px;}
.y58_c00433{bottom:688.905000px;}
.y56_c00433{bottom:689.130000px;}
.y57_c00433{bottom:690.405000px;}
.y50_c00433{bottom:707.325000px;}
.y55_c00433{bottom:707.745000px;}
.y53_c00433{bottom:708.405000px;}
.y51_c00433{bottom:708.630000px;}
.y54_c00433{bottom:709.470000px;}
.y52_c00433{bottom:709.905000px;}
.y4b_c00433{bottom:724.905000px;}
.y4c_c00433{bottom:727.245000px;}
.y4d_c00433{bottom:728.130000px;}
.y4e_c00433{bottom:728.325000px;}
.y4f_c00433{bottom:728.970000px;}
.y4a_c00433{bottom:729.405000px;}
.y48_c00433{bottom:745.245000px;}
.y47_c00433{bottom:746.745000px;}
.y49_c00433{bottom:747.405000px;}
.y45_c00433{bottom:748.905000px;}
.y46_c00433{bottom:749.130000px;}
.y44_c00433{bottom:766.245000px;}
.y43_c00433{bottom:767.325000px;}
.y42_c00433{bottom:768.405000px;}
.y3f_c00433{bottom:784.905000px;}
.y41_c00433{bottom:785.745000px;}
.y40_c00433{bottom:787.905000px;}
.y3e_c00433{bottom:788.130000px;}
.y3c_c00433{bottom:805.245000px;}
.y3a_c00433{bottom:806.325000px;}
.y39_c00433{bottom:807.405000px;}
.y3d_c00433{bottom:807.630000px;}
.y3b_c00433{bottom:808.470000px;}
.y35_c00433{bottom:823.905000px;}
.y33_c00433{bottom:824.745000px;}
.y38_c00433{bottom:825.825000px;}
.y36_c00433{bottom:826.905000px;}
.y37_c00433{bottom:827.130000px;}
.y34_c00433{bottom:827.970000px;}
.y32_c00433{bottom:844.245000px;}
.y31_c00433{bottom:845.745000px;}
.y30_c00433{bottom:847.905000px;}
.y2e_c00433{bottom:865.245000px;}
.y2f_c00433{bottom:866.130000px;}
.y2d_c00433{bottom:867.405000px;}
.y2b_c00433{bottom:882.405000px;}
.y2a_c00433{bottom:884.745000px;}
.y29_c00433{bottom:885.825000px;}
.y2c_c00433{bottom:886.470000px;}
.y28_c00433{bottom:886.905000px;}
.y25_c00433{bottom:904.245000px;}
.y27_c00433{bottom:905.970000px;}
.y24_c00433{bottom:906.405000px;}
.y26_c00433{bottom:907.470000px;}
.y22_c00433{bottom:923.745000px;}
.y23_c00433{bottom:924.630000px;}
.y20_c00433{bottom:925.905000px;}
.y21_c00433{bottom:927.405000px;}
.y1d_c00433{bottom:943.245000px;}
.y1e_c00433{bottom:943.470000px;}
.y1c_c00433{bottom:944.325000px;}
.y1b_c00433{bottom:945.405000px;}
.y1f_c00433{bottom:946.470000px;}
.y18_c00433{bottom:962.745000px;}
.y17_c00433{bottom:964.905000px;}
.y1a_c00433{bottom:965.130000px;}
.y19_c00433{bottom:965.970000px;}
.y14_c00433{bottom:982.245000px;}
.y16_c00433{bottom:983.325000px;}
.y13_c00433{bottom:984.405000px;}
.y15_c00433{bottom:984.630000px;}
.yf_c00433{bottom:1000.905000px;}
.y10_c00433{bottom:1001.745000px;}
.y12_c00433{bottom:1002.825000px;}
.ye_c00433{bottom:1003.905000px;}
.y11_c00433{bottom:1004.130000px;}
.yc_c00433{bottom:1023.405000px;}
.yd_c00433{bottom:1024.470000px;}
.yb_c00433{bottom:1024.905000px;}
.y9_c00433{bottom:1042.245000px;}
.ya_c00433{bottom:1042.905000px;}
.y8_c00433{bottom:1044.405000px;}
.y5_c00433{bottom:1061.745000px;}
.y7_c00433{bottom:1062.405000px;}
.y3_c00433{bottom:1062.630000px;}
.y6_c00433{bottom:1063.470000px;}
.y4_c00433{bottom:1063.905000px;}
.y1_c00433{bottom:1100.970000px;}
.y2_c00433{bottom:1101.630000px;}
.h2_c00433{height:23.025234px;}
.h1_c00433{height:31.364502px;}
.h3_c00433{height:35.571035px;}
.h5_c00433{height:39.777568px;}
.h7_c00433{height:41.571035px;}
.h4_c00433{height:43.910303px;}
.h6_c00433{height:48.116836px;}
.h0_c00433{height:1335.000000px;}
.w0_c00433{width:880.500000px;}
.x0_c00433{left:0.000000px;}
.x10c_c00433{left:149.580000px;}
.xaf_c00433{left:151.080000px;}
.x1_c00433{left:153.000000px;}
.x3_c00433{left:154.500000px;}
.xfd_c00433{left:166.500000px;}
.xe3_c00433{left:168.000000px;}
.xf8_c00433{left:169.920000px;}
.x10d_c00433{left:171.420000px;}
.xbd_c00433{left:172.920000px;}
.x4_c00433{left:174.420000px;}
.xd9_c00433{left:176.580000px;}
.x110_c00433{left:178.080000px;}
.x1c_c00433{left:180.000000px;}
.xf_c00433{left:181.500000px;}
.x55_c00433{left:183.420000px;}
.xb0_c00433{left:187.920000px;}
.x34_c00433{left:189.420000px;}
.xe4_c00433{left:190.500000px;}
.x29_c00433{left:192.420000px;}
.xb7_c00433{left:193.500000px;}
.x8d_c00433{left:194.580000px;}
.xc4_c00433{left:196.920000px;}
.x1d_c00433{left:198.000000px;}
.xbe_c00433{left:199.920000px;}
.x5_c00433{left:201.000000px;}
.xec_c00433{left:205.500000px;}
.x64_c00433{left:207.000000px;}
.x88_c00433{left:208.500000px;}
.x56_c00433{left:210.000000px;}
.x4a_c00433{left:213.420000px;}
.x35_c00433{left:216.420000px;}
.xe5_c00433{left:217.500000px;}
.x98_c00433{left:219.000000px;}
.xa8_c00433{left:220.500000px;}
.x10_c00433{left:222.000000px;}
.x65_c00433{left:223.500000px;}
.x78_c00433{left:225.000000px;}
.xf9_c00433{left:226.500000px;}
.x89_c00433{left:227.580000px;}
.x1e_c00433{left:229.080000px;}
.x80_c00433{left:232.500000px;}
.x2a_c00433{left:234.420000px;}
.x116_c00433{left:237.000000px;}
.x11_c00433{left:240.420000px;}
.x42_c00433{left:241.500000px;}
.xdf_c00433{left:243.420000px;}
.x57_c00433{left:245.580000px;}
.x4b_c00433{left:249.000000px;}
.x6_c00433{left:250.500000px;}
.xb1_c00433{left:252.420000px;}
.x8e_c00433{left:255.000000px;}
.x66_c00433{left:256.080000px;}
.x36_c00433{left:258.420000px;}
.xed_c00433{left:259.920000px;}
.x111_c00433{left:261.000000px;}
.x1f_c00433{left:262.920000px;}
.x58_c00433{left:264.420000px;}
.x79_c00433{left:265.500000px;}
.xf0_c00433{left:267.420000px;}
.x99_c00433{left:268.500000px;}
.x12_c00433{left:271.920000px;}
.xfe_c00433{left:273.000000px;}
.x117_c00433{left:277.500000px;}
.x7_c00433{left:279.000000px;}
.xfa_c00433{left:280.500000px;}
.xc5_c00433{left:283.080000px;}
.x37_c00433{left:284.580000px;}
.x4c_c00433{left:286.500000px;}
.xa9_c00433{left:288.420000px;}
.x59_c00433{left:289.500000px;}
.x81_c00433{left:291.000000px;}
.xce_c00433{left:292.920000px;}
.x43_c00433{left:295.920000px;}
.x101_c00433{left:298.500000px;}
.xbf_c00433{left:299.580000px;}
.x8a_c00433{left:304.500000px;}
.x2b_c00433{left:307.500000px;}
.x13_c00433{left:309.000000px;}
.x20_c00433{left:310.500000px;}
.xf1_c00433{left:312.000000px;}
.x82_c00433{left:313.920000px;}
.x71_c00433{left:316.500000px;}
.xda_c00433{left:318.000000px;}
.xc0_c00433{left:319.920000px;}
.x9a_c00433{left:321.000000px;}
.x112_c00433{left:324.000000px;}
.x38_c00433{left:325.500000px;}
.xe0_c00433{left:327.420000px;}
.x5a_c00433{left:328.500000px;}
.x4d_c00433{left:330.000000px;}
.xcf_c00433{left:331.920000px;}
.xe6_c00433{left:333.000000px;}
.x67_c00433{left:334.500000px;}
.x72_c00433{left:337.920000px;}
.xff_c00433{left:339.000000px;}
.xa0_c00433{left:340.500000px;}
.x2c_c00433{left:342.000000px;}
.x21_c00433{left:343.500000px;}
.xc9_c00433{left:345.000000px;}
.xb8_c00433{left:346.500000px;}
.xf2_c00433{left:347.580000px;}
.xb2_c00433{left:351.000000px;}
.x14_c00433{left:352.080000px;}
.xe1_c00433{left:354.000000px;}
.x8f_c00433{left:355.080000px;}
.x39_c00433{left:358.080000px;}
.x2d_c00433{left:360.420000px;}
.xe7_c00433{left:363.420000px;}
.x5b_c00433{left:364.920000px;}
.xee_c00433{left:366.000000px;}
.x73_c00433{left:367.920000px;}
.xb3_c00433{left:369.000000px;}
.x4e_c00433{left:370.500000px;}
.x8_c00433{left:372.000000px;}
.x90_c00433{left:373.920000px;}
.xf4_c00433{left:375.420000px;}
.x7a_c00433{left:378.000000px;}
.xd3_c00433{left:380.580000px;}
.x22_c00433{left:382.500000px;}
.x10f_c00433{left:387.000000px;}
.x44_c00433{left:388.500000px;}
.xca_c00433{left:389.580000px;}
.x5c_c00433{left:391.920000px;}
.x9b_c00433{left:394.500000px;}
.x10a_c00433{left:396.000000px;}
.xdb_c00433{left:398.580000px;}
.x15_c00433{left:402.000000px;}
.x3a_c00433{left:404.580000px;}
.x105_c00433{left:406.080000px;}
.xe8_c00433{left:408.420000px;}
.x2_c00433{left:409.500000px;}
.xd0_c00433{left:411.420000px;}
.xf5_c00433{left:412.920000px;}
.x68_c00433{left:415.080000px;}
.xb9_c00433{left:418.080000px;}
.x45_c00433{left:420.000000px;}
.x23_c00433{left:421.920000px;}
.x74_c00433{left:424.500000px;}
.x113_c00433{left:428.580000px;}
.x2e_c00433{left:430.080000px;}
.x9_c00433{left:433.920000px;}
.xeb_c00433{left:435.000000px;}
.x106_c00433{left:436.080000px;}
.x91_c00433{left:438.420000px;}
.x69_c00433{left:439.920000px;}
.x7b_c00433{left:444.000000px;}
.x100_c00433{left:445.080000px;}
.xfb_c00433{left:448.080000px;}
.x24_c00433{left:449.580000px;}
.xf3_c00433{left:451.500000px;}
.x4f_c00433{left:454.080000px;}
.x10e_c00433{left:457.500000px;}
.x9c_c00433{left:459.000000px;}
.xe9_c00433{left:460.080000px;}
.xa1_c00433{left:462.420000px;}
.x83_c00433{left:463.920000px;}
.xc6_c00433{left:465.420000px;}
.x92_c00433{left:469.080000px;}
.x16_c00433{left:471.000000px;}
.xe2_c00433{left:473.580000px;}
.x46_c00433{left:475.080000px;}
.x6a_c00433{left:477.420000px;}
.x7c_c00433{left:478.500000px;}
.x2f_c00433{left:480.000000px;}
.x3b_c00433{left:483.420000px;}
.xa_c00433{left:484.500000px;}
.xf6_c00433{left:485.580000px;}
.xef_c00433{left:487.500000px;}
.xa2_c00433{left:490.920000px;}
.x25_c00433{left:492.420000px;}
.xc7_c00433{left:493.500000px;}
.x5d_c00433{left:495.420000px;}
.xdc_c00433{left:499.500000px;}
.x30_c00433{left:501.000000px;}
.xb4_c00433{left:502.920000px;}
.x6b_c00433{left:504.420000px;}
.x17_c00433{left:508.080000px;}
.xba_c00433{left:512.580000px;}
.xd1_c00433{left:514.080000px;}
.x102_c00433{left:516.000000px;}
.x50_c00433{left:517.500000px;}
.xd4_c00433{left:519.000000px;}
.x5e_c00433{left:520.080000px;}
.xcb_c00433{left:522.000000px;}
.x3c_c00433{left:523.500000px;}
.x7d_c00433{left:526.920000px;}
.x93_c00433{left:528.000000px;}
.xaa_c00433{left:529.920000px;}
.xbb_c00433{left:531.420000px;}
.xd2_c00433{left:532.920000px;}
.x9d_c00433{left:535.920000px;}
.x3d_c00433{left:538.500000px;}
.x6c_c00433{left:541.500000px;}
.x84_c00433{left:544.920000px;}
.x47_c00433{left:546.420000px;}
.xc8_c00433{left:547.500000px;}
.x31_c00433{left:549.000000px;}
.x18_c00433{left:551.580000px;}
.xa3_c00433{left:555.420000px;}
.xbc_c00433{left:556.920000px;}
.x5f_c00433{left:561.000000px;}
.x7e_c00433{left:562.080000px;}
.x9e_c00433{left:564.420000px;}
.xc1_c00433{left:567.420000px;}
.x32_c00433{left:570.000000px;}
.xf7_c00433{left:573.000000px;}
.x103_c00433{left:574.500000px;}
.xdd_c00433{left:577.500000px;}
.x75_c00433{left:578.580000px;}
.xd5_c00433{left:580.500000px;}
.x19_c00433{left:582.420000px;}
.xab_c00433{left:583.500000px;}
.xb_c00433{left:585.000000px;}
.xb5_c00433{left:586.080000px;}
.x3e_c00433{left:588.000000px;}
.x60_c00433{left:592.500000px;}
.xcc_c00433{left:594.000000px;}
.x51_c00433{left:595.500000px;}
.x94_c00433{left:598.920000px;}
.x107_c00433{left:600.000000px;}
.x85_c00433{left:601.500000px;}
.x26_c00433{left:603.420000px;}
.x6d_c00433{left:607.500000px;}
.xde_c00433{left:610.920000px;}
.x48_c00433{left:613.500000px;}
.x10b_c00433{left:615.420000px;}
.xb6_c00433{left:616.500000px;}
.xc_c00433{left:618.420000px;}
.xac_c00433{left:619.500000px;}
.xa4_c00433{left:620.580000px;}
.xd6_c00433{left:622.920000px;}
.x7f_c00433{left:624.420000px;}
.xc2_c00433{left:625.500000px;}
.x95_c00433{left:626.580000px;}
.x114_c00433{left:630.420000px;}
.x76_c00433{left:632.580000px;}
.x6e_c00433{left:634.500000px;}
.x86_c00433{left:636.000000px;}
.x61_c00433{left:638.580000px;}
.xa5_c00433{left:640.920000px;}
.xc3_c00433{left:642.000000px;}
.xfc_c00433{left:645.000000px;}
.x9f_c00433{left:646.500000px;}
.x52_c00433{left:649.080000px;}
.x1a_c00433{left:652.080000px;}
.x62_c00433{left:655.920000px;}
.xea_c00433{left:657.000000px;}
.x104_c00433{left:658.500000px;}
.x3f_c00433{left:661.080000px;}
.x8b_c00433{left:663.420000px;}
.xd_c00433{left:664.500000px;}
.xd7_c00433{left:666.420000px;}
.x53_c00433{left:667.920000px;}
.xa6_c00433{left:669.420000px;}
.xad_c00433{left:670.500000px;}
.x27_c00433{left:672.420000px;}
.x108_c00433{left:673.920000px;}
.x6f_c00433{left:675.000000px;}
.x49_c00433{left:678.420000px;}
.x40_c00433{left:679.500000px;}
.x96_c00433{left:681.420000px;}
.x63_c00433{left:682.920000px;}
.x33_c00433{left:688.080000px;}
.x115_c00433{left:690.000000px;}
.x41_c00433{left:691.920000px;}
.x87_c00433{left:693.000000px;}
.x54_c00433{left:694.920000px;}
.xcd_c00433{left:696.000000px;}
.xa7_c00433{left:697.500000px;}
.x8c_c00433{left:700.920000px;}
.x109_c00433{left:702.420000px;}
.xd8_c00433{left:703.500000px;}
.x1b_c00433{left:705.000000px;}
.x28_c00433{left:706.080000px;}
.x97_c00433{left:708.420000px;}
.xae_c00433{left:709.920000px;}
.x77_c00433{left:717.000000px;}
.xe_c00433{left:718.080000px;}
.x70_c00433{left:720.000000px;}
@media print{
.v0_c00433{vertical-align:0.000000pt;}
.v1_c00433{vertical-align:5.333333pt;}
.ls0_c00433{letter-spacing:0.000000pt;}
.ws2_c00433{word-spacing:-4.319487pt;}
.ws0_c00433{word-spacing:-2.337954pt;}
.ws3_c00433{word-spacing:0.000000pt;}
.ws1_c00433{word-spacing:0.898224pt;}
.fs1_c00433{font-size:16.640000pt;}
.fs0_c00433{font-size:22.666667pt;}
.fs2_c00433{font-size:25.706667pt;}
.fs4_c00433{font-size:28.746667pt;}
.fs3_c00433{font-size:31.733333pt;}
.fs5_c00433{font-size:34.773333pt;}
.y0_c00433{bottom:0.000000pt;}
.yc2_c00433{bottom:227.026667pt;}
.yc1_c00433{bottom:240.360000pt;}
.yc0_c00433{bottom:242.440000pt;}
.ybf_c00433{bottom:244.360000pt;}
.ybe_c00433{bottom:261.106667pt;}
.ybc_c00433{bottom:261.693333pt;}
.ybb_c00433{bottom:261.893333pt;}
.ybd_c00433{bottom:263.026667pt;}
.yb7_c00433{bottom:278.440000pt;}
.yb6_c00433{bottom:279.026667pt;}
.yb8_c00433{bottom:279.226667pt;}
.yba_c00433{bottom:279.400000pt;}
.yb9_c00433{bottom:280.360000pt;}
.yb1_c00433{bottom:295.773333pt;}
.yb2_c00433{bottom:296.560000pt;}
.yb4_c00433{bottom:296.733333pt;}
.yb3_c00433{bottom:297.693333pt;}
.yb5_c00433{bottom:297.893333pt;}
.yad_c00433{bottom:311.026667pt;}
.yaf_c00433{bottom:313.106667pt;}
.yb0_c00433{bottom:313.893333pt;}
.yae_c00433{bottom:315.026667pt;}
.yaa_c00433{bottom:329.306667pt;}
.yab_c00433{bottom:330.440000pt;}
.ya9_c00433{bottom:331.773333pt;}
.ya8_c00433{bottom:331.973333pt;}
.ya7_c00433{bottom:332.360000pt;}
.yac_c00433{bottom:333.306667pt;}
.ya5_c00433{bottom:347.773333pt;}
.ya4_c00433{bottom:348.733333pt;}
.ya6_c00433{bottom:349.693333pt;}
.ya3_c00433{bottom:351.026667pt;}
.ya2_c00433{bottom:365.106667pt;}
.ya1_c00433{bottom:366.440000pt;}
.y9e_c00433{bottom:367.026667pt;}
.y9f_c00433{bottom:367.226667pt;}
.ya0_c00433{bottom:367.973333pt;}
.y99_c00433{bottom:383.773333pt;}
.y9c_c00433{bottom:384.360000pt;}
.y9d_c00433{bottom:384.560000pt;}
.y9a_c00433{bottom:384.733333pt;}
.y9b_c00433{bottom:385.306667pt;}
.y97_c00433{bottom:385.693333pt;}
.y98_c00433{bottom:386.640000pt;}
.y95_c00433{bottom:399.973333pt;}
.y93_c00433{bottom:401.106667pt;}
.y96_c00433{bottom:401.693333pt;}
.y91_c00433{bottom:402.066667pt;}
.y94_c00433{bottom:402.640000pt;}
.y92_c00433{bottom:403.026667pt;}
.y8f_c00433{bottom:418.440000pt;}
.y90_c00433{bottom:420.360000pt;}
.y8e_c00433{bottom:420.560000pt;}
.y8d_c00433{bottom:434.826667pt;}
.y8c_c00433{bottom:436.733333pt;}
.y8b_c00433{bottom:437.693333pt;}
.y89_c00433{bottom:453.106667pt;}
.y85_c00433{bottom:454.440000pt;}
.y87_c00433{bottom:455.026667pt;}
.y88_c00433{bottom:455.226667pt;}
.y8a_c00433{bottom:455.973333pt;}
.y86_c00433{bottom:456.360000pt;}
.y83_c00433{bottom:470.440000pt;}
.y84_c00433{bottom:471.400000pt;}
.y82_c00433{bottom:472.360000pt;}
.y80_c00433{bottom:473.306667pt;}
.y81_c00433{bottom:473.693333pt;}
.y7b_c00433{bottom:487.773333pt;}
.y7a_c00433{bottom:487.973333pt;}
.y7f_c00433{bottom:489.106667pt;}
.y7e_c00433{bottom:489.693333pt;}
.y7d_c00433{bottom:489.893333pt;}
.y7c_c00433{bottom:490.640000pt;}
.y79_c00433{bottom:491.026667pt;}
.y77_c00433{bottom:506.440000pt;}
.y76_c00433{bottom:507.226667pt;}
.y78_c00433{bottom:508.360000pt;}
.y74_c00433{bottom:523.400000pt;}
.y71_c00433{bottom:523.773333pt;}
.y72_c00433{bottom:524.560000pt;}
.y75_c00433{bottom:524.733333pt;}
.y73_c00433{bottom:525.306667pt;}
.y70_c00433{bottom:525.693333pt;}
.y6a_c00433{bottom:539.773333pt;}
.y6d_c00433{bottom:541.106667pt;}
.y6f_c00433{bottom:541.893333pt;}
.y6b_c00433{bottom:542.640000pt;}
.y6e_c00433{bottom:543.026667pt;}
.y6c_c00433{bottom:543.226667pt;}
.y68_c00433{bottom:558.066667pt;}
.y65_c00433{bottom:558.440000pt;}
.y64_c00433{bottom:559.226667pt;}
.y69_c00433{bottom:559.400000pt;}
.y66_c00433{bottom:560.360000pt;}
.y67_c00433{bottom:561.306667pt;}
.y5f_c00433{bottom:575.773333pt;}
.y63_c00433{bottom:576.560000pt;}
.y61_c00433{bottom:576.733333pt;}
.y62_c00433{bottom:577.693333pt;}
.y60_c00433{bottom:577.893333pt;}
.y5a_c00433{bottom:592.360000pt;}
.y5b_c00433{bottom:593.493333pt;}
.y5e_c00433{bottom:595.026667pt;}
.y5c_c00433{bottom:595.226667pt;}
.y5d_c00433{bottom:596.360000pt;}
.y59_c00433{bottom:610.440000pt;}
.y58_c00433{bottom:612.360000pt;}
.y56_c00433{bottom:612.560000pt;}
.y57_c00433{bottom:613.693333pt;}
.y50_c00433{bottom:628.733333pt;}
.y55_c00433{bottom:629.106667pt;}
.y53_c00433{bottom:629.693333pt;}
.y51_c00433{bottom:629.893333pt;}
.y54_c00433{bottom:630.640000pt;}
.y52_c00433{bottom:631.026667pt;}
.y4b_c00433{bottom:644.360000pt;}
.y4c_c00433{bottom:646.440000pt;}
.y4d_c00433{bottom:647.226667pt;}
.y4e_c00433{bottom:647.400000pt;}
.y4f_c00433{bottom:647.973333pt;}
.y4a_c00433{bottom:648.360000pt;}
.y48_c00433{bottom:662.440000pt;}
.y47_c00433{bottom:663.773333pt;}
.y49_c00433{bottom:664.360000pt;}
.y45_c00433{bottom:665.693333pt;}
.y46_c00433{bottom:665.893333pt;}
.y44_c00433{bottom:681.106667pt;}
.y43_c00433{bottom:682.066667pt;}
.y42_c00433{bottom:683.026667pt;}
.y3f_c00433{bottom:697.693333pt;}
.y41_c00433{bottom:698.440000pt;}
.y40_c00433{bottom:700.360000pt;}
.y3e_c00433{bottom:700.560000pt;}
.y3c_c00433{bottom:715.773333pt;}
.y3a_c00433{bottom:716.733333pt;}
.y39_c00433{bottom:717.693333pt;}
.y3d_c00433{bottom:717.893333pt;}
.y3b_c00433{bottom:718.640000pt;}
.y35_c00433{bottom:732.360000pt;}
.y33_c00433{bottom:733.106667pt;}
.y38_c00433{bottom:734.066667pt;}
.y36_c00433{bottom:735.026667pt;}
.y37_c00433{bottom:735.226667pt;}
.y34_c00433{bottom:735.973333pt;}
.y32_c00433{bottom:750.440000pt;}
.y31_c00433{bottom:751.773333pt;}
.y30_c00433{bottom:753.693333pt;}
.y2e_c00433{bottom:769.106667pt;}
.y2f_c00433{bottom:769.893333pt;}
.y2d_c00433{bottom:771.026667pt;}
.y2b_c00433{bottom:784.360000pt;}
.y2a_c00433{bottom:786.440000pt;}
.y29_c00433{bottom:787.400000pt;}
.y2c_c00433{bottom:787.973333pt;}
.y28_c00433{bottom:788.360000pt;}
.y25_c00433{bottom:803.773333pt;}
.y27_c00433{bottom:805.306667pt;}
.y24_c00433{bottom:805.693333pt;}
.y26_c00433{bottom:806.640000pt;}
.y22_c00433{bottom:821.106667pt;}
.y23_c00433{bottom:821.893333pt;}
.y20_c00433{bottom:823.026667pt;}
.y21_c00433{bottom:824.360000pt;}
.y1d_c00433{bottom:838.440000pt;}
.y1e_c00433{bottom:838.640000pt;}
.y1c_c00433{bottom:839.400000pt;}
.y1b_c00433{bottom:840.360000pt;}
.y1f_c00433{bottom:841.306667pt;}
.y18_c00433{bottom:855.773333pt;}
.y17_c00433{bottom:857.693333pt;}
.y1a_c00433{bottom:857.893333pt;}
.y19_c00433{bottom:858.640000pt;}
.y14_c00433{bottom:873.106667pt;}
.y16_c00433{bottom:874.066667pt;}
.y13_c00433{bottom:875.026667pt;}
.y15_c00433{bottom:875.226667pt;}
.yf_c00433{bottom:889.693333pt;}
.y10_c00433{bottom:890.440000pt;}
.y12_c00433{bottom:891.400000pt;}
.ye_c00433{bottom:892.360000pt;}
.y11_c00433{bottom:892.560000pt;}
.yc_c00433{bottom:909.693333pt;}
.yd_c00433{bottom:910.640000pt;}
.yb_c00433{bottom:911.026667pt;}
.y9_c00433{bottom:926.440000pt;}
.ya_c00433{bottom:927.026667pt;}
.y8_c00433{bottom:928.360000pt;}
.y5_c00433{bottom:943.773333pt;}
.y7_c00433{bottom:944.360000pt;}
.y3_c00433{bottom:944.560000pt;}
.y6_c00433{bottom:945.306667pt;}
.y4_c00433{bottom:945.693333pt;}
.y1_c00433{bottom:978.640000pt;}
.y2_c00433{bottom:979.226667pt;}
.h2_c00433{height:20.466875pt;}
.h1_c00433{height:27.879557pt;}
.h3_c00433{height:31.618698pt;}
.h5_c00433{height:35.357839pt;}
.h7_c00433{height:36.952031pt;}
.h4_c00433{height:39.031380pt;}
.h6_c00433{height:42.770521pt;}
.h0_c00433{height:1186.666667pt;}
.w0_c00433{width:782.666667pt;}
.x0_c00433{left:0.000000pt;}
.x10c_c00433{left:132.960000pt;}
.xaf_c00433{left:134.293333pt;}
.x1_c00433{left:136.000000pt;}
.x3_c00433{left:137.333333pt;}
.xfd_c00433{left:148.000000pt;}
.xe3_c00433{left:149.333333pt;}
.xf8_c00433{left:151.040000pt;}
.x10d_c00433{left:152.373333pt;}
.xbd_c00433{left:153.706667pt;}
.x4_c00433{left:155.040000pt;}
.xd9_c00433{left:156.960000pt;}
.x110_c00433{left:158.293333pt;}
.x1c_c00433{left:160.000000pt;}
.xf_c00433{left:161.333333pt;}
.x55_c00433{left:163.040000pt;}
.xb0_c00433{left:167.040000pt;}
.x34_c00433{left:168.373333pt;}
.xe4_c00433{left:169.333333pt;}
.x29_c00433{left:171.040000pt;}
.xb7_c00433{left:172.000000pt;}
.x8d_c00433{left:172.960000pt;}
.xc4_c00433{left:175.040000pt;}
.x1d_c00433{left:176.000000pt;}
.xbe_c00433{left:177.706667pt;}
.x5_c00433{left:178.666667pt;}
.xec_c00433{left:182.666667pt;}
.x64_c00433{left:184.000000pt;}
.x88_c00433{left:185.333333pt;}
.x56_c00433{left:186.666667pt;}
.x4a_c00433{left:189.706667pt;}
.x35_c00433{left:192.373333pt;}
.xe5_c00433{left:193.333333pt;}
.x98_c00433{left:194.666667pt;}
.xa8_c00433{left:196.000000pt;}
.x10_c00433{left:197.333333pt;}
.x65_c00433{left:198.666667pt;}
.x78_c00433{left:200.000000pt;}
.xf9_c00433{left:201.333333pt;}
.x89_c00433{left:202.293333pt;}
.x1e_c00433{left:203.626667pt;}
.x80_c00433{left:206.666667pt;}
.x2a_c00433{left:208.373333pt;}
.x116_c00433{left:210.666667pt;}
.x11_c00433{left:213.706667pt;}
.x42_c00433{left:214.666667pt;}
.xdf_c00433{left:216.373333pt;}
.x57_c00433{left:218.293333pt;}
.x4b_c00433{left:221.333333pt;}
.x6_c00433{left:222.666667pt;}
.xb1_c00433{left:224.373333pt;}
.x8e_c00433{left:226.666667pt;}
.x66_c00433{left:227.626667pt;}
.x36_c00433{left:229.706667pt;}
.xed_c00433{left:231.040000pt;}
.x111_c00433{left:232.000000pt;}
.x1f_c00433{left:233.706667pt;}
.x58_c00433{left:235.040000pt;}
.x79_c00433{left:236.000000pt;}
.xf0_c00433{left:237.706667pt;}
.x99_c00433{left:238.666667pt;}
.x12_c00433{left:241.706667pt;}
.xfe_c00433{left:242.666667pt;}
.x117_c00433{left:246.666667pt;}
.x7_c00433{left:248.000000pt;}
.xfa_c00433{left:249.333333pt;}
.xc5_c00433{left:251.626667pt;}
.x37_c00433{left:252.960000pt;}
.x4c_c00433{left:254.666667pt;}
.xa9_c00433{left:256.373333pt;}
.x59_c00433{left:257.333333pt;}
.x81_c00433{left:258.666667pt;}
.xce_c00433{left:260.373333pt;}
.x43_c00433{left:263.040000pt;}
.x101_c00433{left:265.333333pt;}
.xbf_c00433{left:266.293333pt;}
.x8a_c00433{left:270.666667pt;}
.x2b_c00433{left:273.333333pt;}
.x13_c00433{left:274.666667pt;}
.x20_c00433{left:276.000000pt;}
.xf1_c00433{left:277.333333pt;}
.x82_c00433{left:279.040000pt;}
.x71_c00433{left:281.333333pt;}
.xda_c00433{left:282.666667pt;}
.xc0_c00433{left:284.373333pt;}
.x9a_c00433{left:285.333333pt;}
.x112_c00433{left:288.000000pt;}
.x38_c00433{left:289.333333pt;}
.xe0_c00433{left:291.040000pt;}
.x5a_c00433{left:292.000000pt;}
.x4d_c00433{left:293.333333pt;}
.xcf_c00433{left:295.040000pt;}
.xe6_c00433{left:296.000000pt;}
.x67_c00433{left:297.333333pt;}
.x72_c00433{left:300.373333pt;}
.xff_c00433{left:301.333333pt;}
.xa0_c00433{left:302.666667pt;}
.x2c_c00433{left:304.000000pt;}
.x21_c00433{left:305.333333pt;}
.xc9_c00433{left:306.666667pt;}
.xb8_c00433{left:308.000000pt;}
.xf2_c00433{left:308.960000pt;}
.xb2_c00433{left:312.000000pt;}
.x14_c00433{left:312.960000pt;}
.xe1_c00433{left:314.666667pt;}
.x8f_c00433{left:315.626667pt;}
.x39_c00433{left:318.293333pt;}
.x2d_c00433{left:320.373333pt;}
.xe7_c00433{left:323.040000pt;}
.x5b_c00433{left:324.373333pt;}
.xee_c00433{left:325.333333pt;}
.x73_c00433{left:327.040000pt;}
.xb3_c00433{left:328.000000pt;}
.x4e_c00433{left:329.333333pt;}
.x8_c00433{left:330.666667pt;}
.x90_c00433{left:332.373333pt;}
.xf4_c00433{left:333.706667pt;}
.x7a_c00433{left:336.000000pt;}
.xd3_c00433{left:338.293333pt;}
.x22_c00433{left:340.000000pt;}
.x10f_c00433{left:344.000000pt;}
.x44_c00433{left:345.333333pt;}
.xca_c00433{left:346.293333pt;}
.x5c_c00433{left:348.373333pt;}
.x9b_c00433{left:350.666667pt;}
.x10a_c00433{left:352.000000pt;}
.xdb_c00433{left:354.293333pt;}
.x15_c00433{left:357.333333pt;}
.x3a_c00433{left:359.626667pt;}
.x105_c00433{left:360.960000pt;}
.xe8_c00433{left:363.040000pt;}
.x2_c00433{left:364.000000pt;}
.xd0_c00433{left:365.706667pt;}
.xf5_c00433{left:367.040000pt;}
.x68_c00433{left:368.960000pt;}
.xb9_c00433{left:371.626667pt;}
.x45_c00433{left:373.333333pt;}
.x23_c00433{left:375.040000pt;}
.x74_c00433{left:377.333333pt;}
.x113_c00433{left:380.960000pt;}
.x2e_c00433{left:382.293333pt;}
.x9_c00433{left:385.706667pt;}
.xeb_c00433{left:386.666667pt;}
.x106_c00433{left:387.626667pt;}
.x91_c00433{left:389.706667pt;}
.x69_c00433{left:391.040000pt;}
.x7b_c00433{left:394.666667pt;}
.x100_c00433{left:395.626667pt;}
.xfb_c00433{left:398.293333pt;}
.x24_c00433{left:399.626667pt;}
.xf3_c00433{left:401.333333pt;}
.x4f_c00433{left:403.626667pt;}
.x10e_c00433{left:406.666667pt;}
.x9c_c00433{left:408.000000pt;}
.xe9_c00433{left:408.960000pt;}
.xa1_c00433{left:411.040000pt;}
.x83_c00433{left:412.373333pt;}
.xc6_c00433{left:413.706667pt;}
.x92_c00433{left:416.960000pt;}
.x16_c00433{left:418.666667pt;}
.xe2_c00433{left:420.960000pt;}
.x46_c00433{left:422.293333pt;}
.x6a_c00433{left:424.373333pt;}
.x7c_c00433{left:425.333333pt;}
.x2f_c00433{left:426.666667pt;}
.x3b_c00433{left:429.706667pt;}
.xa_c00433{left:430.666667pt;}
.xf6_c00433{left:431.626667pt;}
.xef_c00433{left:433.333333pt;}
.xa2_c00433{left:436.373333pt;}
.x25_c00433{left:437.706667pt;}
.xc7_c00433{left:438.666667pt;}
.x5d_c00433{left:440.373333pt;}
.xdc_c00433{left:444.000000pt;}
.x30_c00433{left:445.333333pt;}
.xb4_c00433{left:447.040000pt;}
.x6b_c00433{left:448.373333pt;}
.x17_c00433{left:451.626667pt;}
.xba_c00433{left:455.626667pt;}
.xd1_c00433{left:456.960000pt;}
.x102_c00433{left:458.666667pt;}
.x50_c00433{left:460.000000pt;}
.xd4_c00433{left:461.333333pt;}
.x5e_c00433{left:462.293333pt;}
.xcb_c00433{left:464.000000pt;}
.x3c_c00433{left:465.333333pt;}
.x7d_c00433{left:468.373333pt;}
.x93_c00433{left:469.333333pt;}
.xaa_c00433{left:471.040000pt;}
.xbb_c00433{left:472.373333pt;}
.xd2_c00433{left:473.706667pt;}
.x9d_c00433{left:476.373333pt;}
.x3d_c00433{left:478.666667pt;}
.x6c_c00433{left:481.333333pt;}
.x84_c00433{left:484.373333pt;}
.x47_c00433{left:485.706667pt;}
.xc8_c00433{left:486.666667pt;}
.x31_c00433{left:488.000000pt;}
.x18_c00433{left:490.293333pt;}
.xa3_c00433{left:493.706667pt;}
.xbc_c00433{left:495.040000pt;}
.x5f_c00433{left:498.666667pt;}
.x7e_c00433{left:499.626667pt;}
.x9e_c00433{left:501.706667pt;}
.xc1_c00433{left:504.373333pt;}
.x32_c00433{left:506.666667pt;}
.xf7_c00433{left:509.333333pt;}
.x103_c00433{left:510.666667pt;}
.xdd_c00433{left:513.333333pt;}
.x75_c00433{left:514.293333pt;}
.xd5_c00433{left:516.000000pt;}
.x19_c00433{left:517.706667pt;}
.xab_c00433{left:518.666667pt;}
.xb_c00433{left:520.000000pt;}
.xb5_c00433{left:520.960000pt;}
.x3e_c00433{left:522.666667pt;}
.x60_c00433{left:526.666667pt;}
.xcc_c00433{left:528.000000pt;}
.x51_c00433{left:529.333333pt;}
.x94_c00433{left:532.373333pt;}
.x107_c00433{left:533.333333pt;}
.x85_c00433{left:534.666667pt;}
.x26_c00433{left:536.373333pt;}
.x6d_c00433{left:540.000000pt;}
.xde_c00433{left:543.040000pt;}
.x48_c00433{left:545.333333pt;}
.x10b_c00433{left:547.040000pt;}
.xb6_c00433{left:548.000000pt;}
.xc_c00433{left:549.706667pt;}
.xac_c00433{left:550.666667pt;}
.xa4_c00433{left:551.626667pt;}
.xd6_c00433{left:553.706667pt;}
.x7f_c00433{left:555.040000pt;}
.xc2_c00433{left:556.000000pt;}
.x95_c00433{left:556.960000pt;}
.x114_c00433{left:560.373333pt;}
.x76_c00433{left:562.293333pt;}
.x6e_c00433{left:564.000000pt;}
.x86_c00433{left:565.333333pt;}
.x61_c00433{left:567.626667pt;}
.xa5_c00433{left:569.706667pt;}
.xc3_c00433{left:570.666667pt;}
.xfc_c00433{left:573.333333pt;}
.x9f_c00433{left:574.666667pt;}
.x52_c00433{left:576.960000pt;}
.x1a_c00433{left:579.626667pt;}
.x62_c00433{left:583.040000pt;}
.xea_c00433{left:584.000000pt;}
.x104_c00433{left:585.333333pt;}
.x3f_c00433{left:587.626667pt;}
.x8b_c00433{left:589.706667pt;}
.xd_c00433{left:590.666667pt;}
.xd7_c00433{left:592.373333pt;}
.x53_c00433{left:593.706667pt;}
.xa6_c00433{left:595.040000pt;}
.xad_c00433{left:596.000000pt;}
.x27_c00433{left:597.706667pt;}
.x108_c00433{left:599.040000pt;}
.x6f_c00433{left:600.000000pt;}
.x49_c00433{left:603.040000pt;}
.x40_c00433{left:604.000000pt;}
.x96_c00433{left:605.706667pt;}
.x63_c00433{left:607.040000pt;}
.x33_c00433{left:611.626667pt;}
.x115_c00433{left:613.333333pt;}
.x41_c00433{left:615.040000pt;}
.x87_c00433{left:616.000000pt;}
.x54_c00433{left:617.706667pt;}
.xcd_c00433{left:618.666667pt;}
.xa7_c00433{left:620.000000pt;}
.x8c_c00433{left:623.040000pt;}
.x109_c00433{left:624.373333pt;}
.xd8_c00433{left:625.333333pt;}
.x1b_c00433{left:626.666667pt;}
.x28_c00433{left:627.626667pt;}
.x97_c00433{left:629.706667pt;}
.xae_c00433{left:631.040000pt;}
.x77_c00433{left:637.333333pt;}
.xe_c00433{left:638.293333pt;}
.x70_c00433{left:640.000000pt;}
}





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

.ir_c00434:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00434{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00434;src:url('chunks/assets/font_5d843f317285cc23dccf7813.woff2')format("woff");}.ff1_c00434{font-family:ff1_c00434;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me3_c00434{transform:matrix(0.110996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110996,0.000000,0.000000,0.250000,0,0);}
.mdb_c00434{transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);}
.me4_c00434{transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);}
.me7_c00434{transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);}
.m52_c00434{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m37_c00434{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);}
.m90_c00434{transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);}
.m2e_c00434{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.m59_c00434{transform:matrix(0.363445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363445,0.000000,0.000000,0.250000,0,0);}
.m72_c00434{transform:matrix(0.363866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363866,0.000000,0.000000,0.250000,0,0);}
.m4_c00434{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m6c_c00434{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m8c_c00434{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m93_c00434{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m45_c00434{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.m9f_c00434{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00434{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m69_c00434{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m3d_c00434{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m85_c00434{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m19_c00434{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m21_c00434{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m4a_c00434{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m3e_c00434{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m53_c00434{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.mb4_c00434{transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);}
.m32_c00434{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m95_c00434{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m64_c00434{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m26_c00434{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m68_c00434{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m84_c00434{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m28_c00434{transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);}
.m2f_c00434{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.m76_c00434{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m1a_c00434{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m23_c00434{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m92_c00434{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m70_c00434{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m9e_c00434{transform:matrix(0.404564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404564,0.000000,0.000000,0.250000,0,0);}
.m6e_c00434{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.me6_c00434{transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);}
.mac_c00434{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m17_c00434{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m6a_c00434{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m61_c00434{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.me8_c00434{transform:matrix(0.411859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411859,0.000000,0.000000,0.250000,0,0);}
.m2a_c00434{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m78_c00434{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.md3_c00434{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.m8a_c00434{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m6b_c00434{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m2c_c00434{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m12_c00434{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m5d_c00434{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m87_c00434{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.ma9_c00434{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m1e_c00434{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.md5_c00434{transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);}
.m36_c00434{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m3c_c00434{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m9c_c00434{transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);}
.m5f_c00434{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m9a_c00434{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m44_c00434{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mb2_c00434{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);}
.m1f_c00434{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m4e_c00434{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m34_c00434{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m7c_c00434{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m73_c00434{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m42_c00434{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.mcf_c00434{transform:matrix(0.450321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450321,0.000000,0.000000,0.250000,0,0);}
.m33_c00434{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.maf_c00434{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.me2_c00434{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.mc2_c00434{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.md6_c00434{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.m5c_c00434{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m47_c00434{transform:matrix(0.469748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469748,0.000000,0.000000,0.250000,0,0);}
.ma3_c00434{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.m62_c00434{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m31_c00434{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m58_c00434{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.mc3_c00434{transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);}
.m5a_c00434{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m88_c00434{transform:matrix(0.482773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482773,0.000000,0.000000,0.250000,0,0);}
.mc7_c00434{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m41_c00434{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m9d_c00434{transform:matrix(0.487059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487059,0.000000,0.000000,0.250000,0,0);}
.m57_c00434{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m1_c00434{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m4f_c00434{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mbc_c00434{transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);}
.m75_c00434{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m82_c00434{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.mb_c00434{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);}
.m6f_c00434{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m3b_c00434{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m7a_c00434{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m8b_c00434{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m1d_c00434{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mdf_c00434{transform:matrix(0.512821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512821,0.000000,0.000000,0.250000,0,0);}
.mde_c00434{transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);}
.m66_c00434{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m3f_c00434{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.md7_c00434{transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);}
.m5e_c00434{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mc4_c00434{transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);}
.m6d_c00434{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m13_c00434{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.me0_c00434{transform:matrix(0.519231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519231,0.000000,0.000000,0.250000,0,0);}
.m11_c00434{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mb9_c00434{transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);}
.m39_c00434{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m48_c00434{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m67_c00434{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m7b_c00434{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.md_c00434{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m7_c00434{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.md2_c00434{transform:matrix(0.528846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528846,0.000000,0.000000,0.250000,0,0);}
.m4c_c00434{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mda_c00434{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.mc_c00434{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mca_c00434{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m4d_c00434{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m77_c00434{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m18_c00434{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m15_c00434{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m2b_c00434{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.ma_c00434{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mad_c00434{transform:matrix(0.537445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537445,0.000000,0.000000,0.250000,0,0);}
.me_c00434{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m25_c00434{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m29_c00434{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m63_c00434{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m24_c00434{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m5_c00434{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m7e_c00434{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m10_c00434{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m51_c00434{transform:matrix(0.548237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548237,0.000000,0.000000,0.250000,0,0);}
.m14_c00434{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mbf_c00434{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.mb7_c00434{transform:matrix(0.552083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552083,0.000000,0.000000,0.250000,0,0);}
.m97_c00434{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.mf_c00434{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m6_c00434{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mbd_c00434{transform:matrix(0.556167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556167,0.000000,0.000000,0.250000,0,0);}
.m5b_c00434{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m98_c00434{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m8e_c00434{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m91_c00434{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m27_c00434{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);}
.m3_c00434{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mbb_c00434{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m1c_c00434{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m8f_c00434{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m60_c00434{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m56_c00434{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m96_c00434{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);}
.m16_c00434{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.md9_c00434{transform:matrix(0.571314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571314,0.000000,0.000000,0.250000,0,0);}
.m30_c00434{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m49_c00434{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.maa_c00434{transform:matrix(0.575991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575991,0.000000,0.000000,0.250000,0,0);}
.mb0_c00434{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.m9b_c00434{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m38_c00434{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.m8_c00434{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m81_c00434{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m50_c00434{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m83_c00434{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);}
.m2d_c00434{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m94_c00434{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m79_c00434{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mb6_c00434{transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);}
.mab_c00434{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m80_c00434{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m1b_c00434{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.ma8_c00434{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.ma7_c00434{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.ma5_c00434{transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);}
.m99_c00434{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m89_c00434{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m2_c00434{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);}
.m7d_c00434{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m0_c00434{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.mdd_c00434{transform:matrix(0.642070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642070,0.000000,0.000000,0.250000,0,0);}
.md4_c00434{transform:matrix(0.643172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643172,0.000000,0.000000,0.250000,0,0);}
.mc5_c00434{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.mb5_c00434{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.ma2_c00434{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.ma1_c00434{transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);}
.m35_c00434{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m22_c00434{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mb1_c00434{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m20_c00434{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m86_c00434{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.me5_c00434{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.mae_c00434{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mdc_c00434{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.mc1_c00434{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.m8d_c00434{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.ma4_c00434{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.mce_c00434{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m71_c00434{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.ma6_c00434{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);}
.md1_c00434{transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);}
.mc9_c00434{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.ma0_c00434{transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);}
.m46_c00434{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m55_c00434{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.mbe_c00434{transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);}
.m74_c00434{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.md0_c00434{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.mc8_c00434{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m7f_c00434{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.me1_c00434{transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);}
.mc0_c00434{transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);}
.m9_c00434{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m4b_c00434{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.md8_c00434{transform:matrix(0.772727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772727,0.000000,0.000000,0.250000,0,0);}
.m43_c00434{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.mcd_c00434{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.mc6_c00434{transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);}
.mba_c00434{transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);}
.m40_c00434{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mcc_c00434{transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);}
.m65_c00434{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.mcb_c00434{transform:matrix(0.881057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.881057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.881057,0.000000,0.000000,0.250000,0,0);}
.mb8_c00434{transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);}
.mb3_c00434{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m3a_c00434{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.v1_c00434{vertical-align:-6.000000px;}
.v0_c00434{vertical-align:0.000000px;}
.v2_c00434{vertical-align:6.000000px;}
.ls1_c00434{letter-spacing:0.000000px;}
.ls0_c00434{letter-spacing:64.456126px;}
.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;}
}
.ws5_c00434{word-spacing:-72.410206px;}
.ws0_c00434{word-spacing:-3.584672px;}
.ws1_c00434{word-spacing:-2.092143px;}
.ws3_c00434{word-spacing:-2.020944px;}
.ws11_c00434{word-spacing:0.000000px;}
.ws2_c00434{word-spacing:1.778009px;}
.ws8_c00434{word-spacing:14.950398px;}
.ws4_c00434{word-spacing:35.020449px;}
.wse_c00434{word-spacing:35.023211px;}
.wsb_c00434{word-spacing:36.658489px;}
.wsd_c00434{word-spacing:41.750340px;}
.ws9_c00434{word-spacing:51.638400px;}
.ws6_c00434{word-spacing:54.291843px;}
.wsa_c00434{word-spacing:54.638400px;}
.ws10_c00434{word-spacing:55.942961px;}
.wsc_c00434{word-spacing:56.099540px;}
.wsf_c00434{word-spacing:59.332701px;}
.ws7_c00434{word-spacing:65.029892px;}
._0_c00434{margin-left:-64.456126px;}
._2_c00434{width:70.265181px;}
._1_c00434{width:73.498341px;}
.fc0_c00434{color:transparent;}
.fs7_c00434{font-size:3.420000px;}
.fs9_c00434{font-size:11.880000px;}
.fs8_c00434{font-size:13.620000px;}
.fs4_c00434{font-size:18.720000px;}
.fs0_c00434{font-size:20.400000px;}
.fs3_c00434{font-size:25.500000px;}
.fs1_c00434{font-size:28.920000px;}
.fs6_c00434{font-size:32.340000px;}
.fs2_c00434{font-size:35.700000px;}
.fs5_c00434{font-size:39.120000px;}
.y0_c00434{bottom:0.000000px;}
.y6a_c00434{bottom:254.745000px;}
.y6b_c00434{bottom:255.405000px;}
.y68_c00434{bottom:255.630000px;}
.y69_c00434{bottom:256.905000px;}
.y63_c00434{bottom:272.745000px;}
.y67_c00434{bottom:273.180000px;}
.y66_c00434{bottom:273.825000px;}
.y65_c00434{bottom:274.050000px;}
.y61_c00434{bottom:274.245000px;}
.y62_c00434{bottom:275.130000px;}
.y60_c00434{bottom:276.405000px;}
.y64_c00434{bottom:277.470000px;}
.y5d_c00434{bottom:293.745000px;}
.y5f_c00434{bottom:293.970000px;}
.y5c_c00434{bottom:294.630000px;}
.y5a_c00434{bottom:295.050000px;}
.y5e_c00434{bottom:295.470000px;}
.y5b_c00434{bottom:295.905000px;}
.y57_c00434{bottom:310.905000px;}
.y56_c00434{bottom:313.245000px;}
.y59_c00434{bottom:314.745000px;}
.y55_c00434{bottom:315.405000px;}
.y58_c00434{bottom:316.470000px;}
.y53_c00434{bottom:333.630000px;}
.y52_c00434{bottom:333.825000px;}
.y50_c00434{bottom:334.905000px;}
.y54_c00434{bottom:335.130000px;}
.y51_c00434{bottom:335.970000px;}
.y4f_c00434{bottom:336.405000px;}
.y4c_c00434{bottom:349.905000px;}
.y4b_c00434{bottom:352.245000px;}
.y4d_c00434{bottom:353.745000px;}
.y49_c00434{bottom:354.405000px;}
.y4a_c00434{bottom:354.630000px;}
.y4e_c00434{bottom:355.470000px;}
.y44_c00434{bottom:371.745000px;}
.y48_c00434{bottom:372.630000px;}
.y46_c00434{bottom:372.825000px;}
.y45_c00434{bottom:373.245000px;}
.y43_c00434{bottom:373.905000px;}
.y47_c00434{bottom:374.130000px;}
.y42_c00434{bottom:375.405000px;}
.y3e_c00434{bottom:390.405000px;}
.y3f_c00434{bottom:392.745000px;}
.y41_c00434{bottom:393.405000px;}
.y40_c00434{bottom:394.905000px;}
.y39_c00434{bottom:409.905000px;}
.y3b_c00434{bottom:410.745000px;}
.y37_c00434{bottom:412.245000px;}
.y3a_c00434{bottom:412.905000px;}
.y3d_c00434{bottom:413.130000px;}
.y3c_c00434{bottom:413.970000px;}
.y38_c00434{bottom:414.405000px;}
.y34_c00434{bottom:431.745000px;}
.y35_c00434{bottom:432.405000px;}
.y33_c00434{bottom:432.630000px;}
.y36_c00434{bottom:432.825000px;}
.y32_c00434{bottom:433.905000px;}
.y31_c00434{bottom:434.970000px;}
.y30_c00434{bottom:451.245000px;}
.y2f_c00434{bottom:452.970000px;}
.y2e_c00434{bottom:453.405000px;}
.y2d_c00434{bottom:469.905000px;}
.y2b_c00434{bottom:470.745000px;}
.y2a_c00434{bottom:472.905000px;}
.y2c_c00434{bottom:473.130000px;}
.y28_c00434{bottom:490.245000px;}
.y29_c00434{bottom:491.130000px;}
.y26_c00434{bottom:491.745000px;}
.y27_c00434{bottom:492.405000px;}
.y23_c00434{bottom:508.905000px;}
.y24_c00434{bottom:510.825000px;}
.y21_c00434{bottom:511.245000px;}
.y25_c00434{bottom:511.905000px;}
.y22_c00434{bottom:512.130000px;}
.y1f_c00434{bottom:513.405000px;}
.y20_c00434{bottom:513.420000px;}
.y1e_c00434{bottom:529.470000px;}
.y1d_c00434{bottom:529.905000px;}
.y1c_c00434{bottom:530.745000px;}
.y1b_c00434{bottom:548.970000px;}
.y19_c00434{bottom:549.405000px;}
.y17_c00434{bottom:550.245000px;}
.y18_c00434{bottom:550.470000px;}
.y1a_c00434{bottom:551.325000px;}
.y16_c00434{bottom:552.405000px;}
.y15_c00434{bottom:568.680000px;}
.y11_c00434{bottom:569.745000px;}
.y14_c00434{bottom:569.970000px;}
.y13_c00434{bottom:571.905000px;}
.y12_c00434{bottom:572.130000px;}
.y10_c00434{bottom:572.970000px;}
.ye_c00434{bottom:589.245000px;}
.yd_c00434{bottom:591.405000px;}
.yf_c00434{bottom:592.905000px;}
.y8_c00434{bottom:607.905000px;}
.yb_c00434{bottom:608.745000px;}
.y9_c00434{bottom:610.905000px;}
.ya_c00434{bottom:611.130000px;}
.yc_c00434{bottom:611.970000px;}
.y7_c00434{bottom:612.405000px;}
.y4_c00434{bottom:629.745000px;}
.y6_c00434{bottom:630.630000px;}
.y5_c00434{bottom:631.470000px;}
.y3_c00434{bottom:631.905000px;}
.yd3_c00434{bottom:674.550000px;}
.yd1_c00434{bottom:678.630000px;}
.yd0_c00434{bottom:679.695000px;}
.yd2_c00434{bottom:679.920000px;}
.yd5_c00434{bottom:680.130000px;}
.yd4_c00434{bottom:681.195000px;}
.yd6_c00434{bottom:681.630000px;}
.yd7_c00434{bottom:682.695000px;}
.ycd_c00434{bottom:692.130000px;}
.yce_c00434{bottom:693.195000px;}
.ycf_c00434{bottom:695.130000px;}
.yc5_c00434{bottom:705.630000px;}
.yc6_c00434{bottom:706.275000px;}
.yc4_c00434{bottom:706.695000px;}
.yca_c00434{bottom:708.195000px;}
.yc7_c00434{bottom:708.405000px;}
.yc8_c00434{bottom:708.420000px;}
.ycb_c00434{bottom:708.630000px;}
.yc9_c00434{bottom:709.470000px;}
.ycc_c00434{bottom:709.695000px;}
.yc0_c00434{bottom:720.630000px;}
.yc1_c00434{bottom:721.275000px;}
.ybf_c00434{bottom:721.695000px;}
.yc2_c00434{bottom:722.130000px;}
.yc3_c00434{bottom:723.195000px;}
.yba_c00434{bottom:734.130000px;}
.ybc_c00434{bottom:734.775000px;}
.ybb_c00434{bottom:735.195000px;}
.ybd_c00434{bottom:735.630000px;}
.ybe_c00434{bottom:737.130000px;}
.yb5_c00434{bottom:748.695000px;}
.yb7_c00434{bottom:749.130000px;}
.yb6_c00434{bottom:749.550000px;}
.yb8_c00434{bottom:750.195000px;}
.yb9_c00434{bottom:750.630000px;}
.yb3_c00434{bottom:762.195000px;}
.yb2_c00434{bottom:762.630000px;}
.yb1_c00434{bottom:763.695000px;}
.yb4_c00434{bottom:763.920000px;}
.yac_c00434{bottom:772.695000px;}
.yad_c00434{bottom:773.130000px;}
.yae_c00434{bottom:774.195000px;}
.yaf_c00434{bottom:774.630000px;}
.yb0_c00434{bottom:775.695000px;}
.yaa_c00434{bottom:776.130000px;}
.yab_c00434{bottom:777.195000px;}
.ya7_c00434{bottom:787.695000px;}
.ya8_c00434{bottom:788.130000px;}
.ya9_c00434{bottom:789.195000px;}
.ya6_c00434{bottom:790.695000px;}
.ya5_c00434{bottom:801.630000px;}
.ya4_c00434{bottom:802.695000px;}
.ya2_c00434{bottom:803.130000px;}
.ya3_c00434{bottom:804.195000px;}
.ya1_c00434{bottom:815.130000px;}
.ya0_c00434{bottom:816.630000px;}
.y9f_c00434{bottom:817.695000px;}
.y9e_c00434{bottom:828.630000px;}
.y9c_c00434{bottom:830.130000px;}
.y9b_c00434{bottom:831.195000px;}
.y9d_c00434{bottom:831.420000px;}
.y9a_c00434{bottom:842.130000px;}
.y99_c00434{bottom:843.195000px;}
.y97_c00434{bottom:843.630000px;}
.y96_c00434{bottom:844.695000px;}
.y98_c00434{bottom:844.920000px;}
.y95_c00434{bottom:845.130000px;}
.y93_c00434{bottom:857.130000px;}
.y90_c00434{bottom:858.195000px;}
.y94_c00434{bottom:858.420000px;}
.y91_c00434{bottom:858.630000px;}
.y92_c00434{bottom:859.695000px;}
.y8f_c00434{bottom:884.130000px;}
.y8c_c00434{bottom:885.195000px;}
.y8b_c00434{bottom:885.630000px;}
.y8d_c00434{bottom:886.695000px;}
.y8e_c00434{bottom:886.920000px;}
.y8a_c00434{bottom:898.695000px;}
.y89_c00434{bottom:899.130000px;}
.y87_c00434{bottom:900.195000px;}
.y88_c00434{bottom:900.420000px;}
.y86_c00434{bottom:912.195000px;}
.y84_c00434{bottom:913.695000px;}
.y85_c00434{bottom:913.920000px;}
.y80_c00434{bottom:926.130000px;}
.y82_c00434{bottom:927.195000px;}
.y83_c00434{bottom:927.420000px;}
.y7e_c00434{bottom:927.630000px;}
.y7f_c00434{bottom:928.695000px;}
.y81_c00434{bottom:928.920000px;}
.y7d_c00434{bottom:939.630000px;}
.y7b_c00434{bottom:940.695000px;}
.y7c_c00434{bottom:940.920000px;}
.y79_c00434{bottom:941.130000px;}
.y78_c00434{bottom:942.195000px;}
.y7a_c00434{bottom:942.420000px;}
.y77_c00434{bottom:969.630000px;}
.y76_c00434{bottom:970.695000px;}
.y74_c00434{bottom:995.130000px;}
.y75_c00434{bottom:996.195000px;}
.y71_c00434{bottom:1020.405000px;}
.y73_c00434{bottom:1021.470000px;}
.y72_c00434{bottom:1022.550000px;}
.y70_c00434{bottom:1035.405000px;}
.y6e_c00434{bottom:1036.470000px;}
.y6f_c00434{bottom:1037.550000px;}
.y6d_c00434{bottom:1063.905000px;}
.y6c_c00434{bottom:1066.050000px;}
.y2_c00434{bottom:1099.905000px;}
.y1_c00434{bottom:1102.050000px;}
.h8_c00434{height:4.206533px;}
.hc_c00434{height:14.612168px;}
.ha_c00434{height:16.752334px;}
.hb_c00434{height:22.752334px;}
.h5_c00434{height:23.025234px;}
.h1_c00434{height:25.091602px;}
.h9_c00434{height:29.025234px;}
.h4_c00434{height:31.364502px;}
.h2_c00434{height:35.571035px;}
.h7_c00434{height:39.777568px;}
.h3_c00434{height:43.910303px;}
.h6_c00434{height:48.116836px;}
.h0_c00434{height:1335.000000px;}
.w0_c00434{width:880.500000px;}
.x0_c00434{left:0.000000px;}
.x11_c00434{left:151.920000px;}
.x6c_c00434{left:153.420000px;}
.xb5_c00434{left:154.500000px;}
.x3_c00434{left:168.000000px;}
.x7f_c00434{left:169.920000px;}
.x24_c00434{left:171.000000px;}
.x9f_c00434{left:175.080000px;}
.x30_c00434{left:181.500000px;}
.x55_c00434{left:183.420000px;}
.x5f_c00434{left:184.500000px;}
.xa7_c00434{left:186.420000px;}
.x4_c00434{left:189.000000px;}
.x6d_c00434{left:190.080000px;}
.x80_c00434{left:195.000000px;}
.xae_c00434{left:197.580000px;}
.x60_c00434{left:204.000000px;}
.xc4_c00434{left:206.580000px;}
.x3f_c00434{left:208.080000px;}
.xcd_c00434{left:211.500000px;}
.x8a_c00434{left:213.000000px;}
.xd7_c00434{left:216.000000px;}
.x4c_c00434{left:217.920000px;}
.x12_c00434{left:220.500000px;}
.x56_c00434{left:221.580000px;}
.x6e_c00434{left:223.920000px;}
.x31_c00434{left:226.920000px;}
.xaf_c00434{left:228.000000px;}
.xd8_c00434{left:229.080000px;}
.x40_c00434{left:232.500000px;}
.x25_c00434{left:234.000000px;}
.x5_c00434{left:235.500000px;}
.x42_c00434{left:237.000000px;}
.x8b_c00434{left:238.500000px;}
.xda_c00434{left:243.000000px;}
.xd4_c00434{left:244.080000px;}
.x4d_c00434{left:246.420000px;}
.x95_c00434{left:251.145000px;}
.x26_c00434{left:255.000000px;}
.xd2_c00434{left:256.500000px;}
.x6_c00434{left:257.580000px;}
.x62_c00434{left:259.500000px;}
.x57_c00434{left:261.000000px;}
.xe5_c00434{left:262.920000px;}
.xde_c00434{left:265.920000px;}
.x13_c00434{left:267.000000px;}
.x77_c00434{left:269.775000px;}
.xba_c00434{left:271.500000px;}
.x1b_c00434{left:272.580000px;}
.xa0_c00434{left:274.080000px;}
.xb0_c00434{left:276.000000px;}
.xe7_c00434{left:277.500000px;}
.x41_c00434{left:279.420000px;}
.xbf_c00434{left:280.500000px;}
.x96_c00434{left:288.000000px;}
.x43_c00434{left:289.920000px;}
.x32_c00434{left:291.855000px;}
.xb6_c00434{left:292.920000px;}
.x6f_c00434{left:294.000000px;}
.xa8_c00434{left:295.500000px;}
.x81_c00434{left:297.000000px;}
.x4e_c00434{left:298.920000px;}
.x27_c00434{left:304.920000px;}
.x78_c00434{left:306.420000px;}
.xb1_c00434{left:307.500000px;}
.x63_c00434{left:309.420000px;}
.x82_c00434{left:312.420000px;}
.x8c_c00434{left:318.000000px;}
.x14_c00434{left:319.500000px;}
.x7_c00434{left:320.580000px;}
.xdf_c00434{left:322.500000px;}
.x33_c00434{left:324.420000px;}
.xd3_c00434{left:325.500000px;}
.xe6_c00434{left:327.000000px;}
.xc8_c00434{left:330.000000px;}
.x83_c00434{left:331.920000px;}
.xc6_c00434{left:333.000000px;}
.x58_c00434{left:334.500000px;}
.x64_c00434{left:336.000000px;}
.x4f_c00434{left:337.920000px;}
.x44_c00434{left:339.420000px;}
.x28_c00434{left:341.580000px;}
.x1c_c00434{left:343.500000px;}
.x15_c00434{left:346.500000px;}
.x97_c00434{left:349.080000px;}
.x8_c00434{left:354.000000px;}
.xb7_c00434{left:355.080000px;}
.xb2_c00434{left:358.500000px;}
.x70_c00434{left:359.580000px;}
.xa1_c00434{left:364.500000px;}
.x79_c00434{left:365.580000px;}
.x29_c00434{left:368.145000px;}
.xe0_c00434{left:370.500000px;}
.x59_c00434{left:372.000000px;}
.xb8_c00434{left:373.500000px;}
.x71_c00434{left:375.000000px;}
.x45_c00434{left:376.500000px;}
.xdb_c00434{left:379.500000px;}
.xc7_c00434{left:382.500000px;}
.x34_c00434{left:384.855000px;}
.x98_c00434{left:387.000000px;}
.x2a_c00434{left:388.500000px;}
.x65_c00434{left:391.080000px;}
.x9_c00434{left:393.000000px;}
.xbb_c00434{left:394.920000px;}
.x84_c00434{left:396.000000px;}
.x8d_c00434{left:397.920000px;}
.x1_c00434{left:405.000000px;}
.x61_c00434{left:406.500000px;}
.xb9_c00434{left:409.500000px;}
.x35_c00434{left:417.420000px;}
.xa9_c00434{left:418.500000px;}
.xe1_c00434{left:420.000000px;}
.x1d_c00434{left:423.000000px;}
.x5a_c00434{left:424.500000px;}
.xc9_c00434{left:429.000000px;}
.x8e_c00434{left:430.080000px;}
.x46_c00434{left:431.580000px;}
.xcf_c00434{left:433.500000px;}
.x16_c00434{left:436.920000px;}
.x85_c00434{left:441.420000px;}
.xbc_c00434{left:444.000000px;}
.x50_c00434{left:447.645000px;}
.x36_c00434{left:450.000000px;}
.xaa_c00434{left:451.500000px;}
.x99_c00434{left:453.000000px;}
.x72_c00434{left:456.420000px;}
.x7a_c00434{left:457.500000px;}
.x8f_c00434{left:460.080000px;}
.x47_c00434{left:462.000000px;}
.x86_c00434{left:464.580000px;}
.xa2_c00434{left:466.920000px;}
.xc5_c00434{left:468.000000px;}
.x66_c00434{left:469.080000px;}
.xd5_c00434{left:472.500000px;}
.x5b_c00434{left:474.645000px;}
.xdc_c00434{left:477.000000px;}
.x90_c00434{left:478.920000px;}
.xab_c00434{left:481.500000px;}
.x37_c00434{left:486.000000px;}
.x2b_c00434{left:489.420000px;}
.x67_c00434{left:490.500000px;}
.xc0_c00434{left:492.000000px;}
.x1e_c00434{left:495.000000px;}
.xa_c00434{left:496.500000px;}
.x73_c00434{left:498.000000px;}
.x87_c00434{left:502.500000px;}
.x91_c00434{left:503.580000px;}
.xa3_c00434{left:505.920000px;}
.xc1_c00434{left:507.000000px;}
.x7b_c00434{left:510.420000px;}
.x9a_c00434{left:513.000000px;}
.x1f_c00434{left:514.920000px;}
.x17_c00434{left:516.000000px;}
.xe2_c00434{left:519.000000px;}
.x51_c00434{left:520.500000px;}
.x38_c00434{left:522.000000px;}
.x2c_c00434{left:523.920000px;}
.xb_c00434{left:525.000000px;}
.xca_c00434{left:526.500000px;}
.xce_c00434{left:528.000000px;}
.xd0_c00434{left:531.000000px;}
.xc2_c00434{left:532.080000px;}
.xa4_c00434{left:534.000000px;}
.xb3_c00434{left:538.920000px;}
.x20_c00434{left:542.145000px;}
.x39_c00434{left:545.580000px;}
.x18_c00434{left:548.580000px;}
.x88_c00434{left:552.000000px;}
.x5c_c00434{left:561.420000px;}
.x9b_c00434{left:563.580000px;}
.xe3_c00434{left:568.500000px;}
.xc_c00434{left:569.580000px;}
.x3a_c00434{left:571.080000px;}
.x2d_c00434{left:572.580000px;}
.x92_c00434{left:574.080000px;}
.x52_c00434{left:576.000000px;}
.xc3_c00434{left:577.500000px;}
.x48_c00434{left:580.500000px;}
.x21_c00434{left:583.500000px;}
.xbd_c00434{left:585.420000px;}
.x7c_c00434{left:587.580000px;}
.xd_c00434{left:589.920000px;}
.xac_c00434{left:592.920000px;}
.x3b_c00434{left:598.080000px;}
.x2e_c00434{left:602.580000px;}
.x9c_c00434{left:606.000000px;}
.x89_c00434{left:607.500000px;}
.xb4_c00434{left:609.000000px;}
.x5d_c00434{left:610.920000px;}
.x19_c00434{left:612.000000px;}
.x68_c00434{left:615.000000px;}
.xe4_c00434{left:618.000000px;}
.xe_c00434{left:619.080000px;}
.x7d_c00434{left:621.000000px;}
.xd9_c00434{left:622.500000px;}
.x49_c00434{left:624.420000px;}
.xcb_c00434{left:627.420000px;}
.x3c_c00434{left:629.355000px;}
.x69_c00434{left:630.420000px;}
.xd1_c00434{left:631.500000px;}
.xbe_c00434{left:634.500000px;}
.x9d_c00434{left:637.500000px;}
.x5e_c00434{left:639.420000px;}
.x53_c00434{left:643.500000px;}
.x93_c00434{left:645.000000px;}
.x22_c00434{left:647.580000px;}
.x74_c00434{left:651.420000px;}
.xa5_c00434{left:656.580000px;}
.x6a_c00434{left:658.080000px;}
.x9e_c00434{left:666.420000px;}
.xf_c00434{left:667.500000px;}
.xad_c00434{left:669.000000px;}
.x7e_c00434{left:670.500000px;}
.xd6_c00434{left:672.420000px;}
.x4a_c00434{left:675.000000px;}
.xdd_c00434{left:676.500000px;}
.x3d_c00434{left:678.420000px;}
.xcc_c00434{left:679.500000px;}
.xa6_c00434{left:685.500000px;}
.x10_c00434{left:687.000000px;}
.x23_c00434{left:688.080000px;}
.x54_c00434{left:690.000000px;}
.x75_c00434{left:693.000000px;}
.x2f_c00434{left:696.000000px;}
.x3e_c00434{left:697.500000px;}
.x6b_c00434{left:699.000000px;}
.x2_c00434{left:702.000000px;}
.x4b_c00434{left:706.500000px;}
.x76_c00434{left:714.000000px;}
.x1a_c00434{left:715.080000px;}
.x94_c00434{left:716.580000px;}
@media print{
.v1_c00434{vertical-align:-5.333333pt;}
.v0_c00434{vertical-align:0.000000pt;}
.v2_c00434{vertical-align:5.333333pt;}
.ls1_c00434{letter-spacing:0.000000pt;}
.ls0_c00434{letter-spacing:57.294334pt;}
.ws5_c00434{word-spacing:-64.364628pt;}
.ws0_c00434{word-spacing:-3.186375pt;}
.ws1_c00434{word-spacing:-1.859683pt;}
.ws3_c00434{word-spacing:-1.796395pt;}
.ws11_c00434{word-spacing:0.000000pt;}
.ws2_c00434{word-spacing:1.580452pt;}
.ws8_c00434{word-spacing:13.289243pt;}
.ws4_c00434{word-spacing:31.129288pt;}
.wse_c00434{word-spacing:31.131743pt;}
.wsb_c00434{word-spacing:32.585323pt;}
.wsd_c00434{word-spacing:37.111414pt;}
.ws9_c00434{word-spacing:45.900800pt;}
.ws6_c00434{word-spacing:48.259416pt;}
.wsa_c00434{word-spacing:48.567467pt;}
.ws10_c00434{word-spacing:49.727076pt;}
.wsc_c00434{word-spacing:49.866258pt;}
.wsf_c00434{word-spacing:52.740178pt;}
.ws7_c00434{word-spacing:57.804348pt;}
._0_c00434{margin-left:-57.294334pt;}
._2_c00434{width:62.457938pt;}
._1_c00434{width:65.331859pt;}
.fs7_c00434{font-size:3.040000pt;}
.fs9_c00434{font-size:10.560000pt;}
.fs8_c00434{font-size:12.106667pt;}
.fs4_c00434{font-size:16.640000pt;}
.fs0_c00434{font-size:18.133333pt;}
.fs3_c00434{font-size:22.666667pt;}
.fs1_c00434{font-size:25.706667pt;}
.fs6_c00434{font-size:28.746667pt;}
.fs2_c00434{font-size:31.733333pt;}
.fs5_c00434{font-size:34.773333pt;}
.y0_c00434{bottom:0.000000pt;}
.y6a_c00434{bottom:226.440000pt;}
.y6b_c00434{bottom:227.026667pt;}
.y68_c00434{bottom:227.226667pt;}
.y69_c00434{bottom:228.360000pt;}
.y63_c00434{bottom:242.440000pt;}
.y67_c00434{bottom:242.826667pt;}
.y66_c00434{bottom:243.400000pt;}
.y65_c00434{bottom:243.600000pt;}
.y61_c00434{bottom:243.773333pt;}
.y62_c00434{bottom:244.560000pt;}
.y60_c00434{bottom:245.693333pt;}
.y64_c00434{bottom:246.640000pt;}
.y5d_c00434{bottom:261.106667pt;}
.y5f_c00434{bottom:261.306667pt;}
.y5c_c00434{bottom:261.893333pt;}
.y5a_c00434{bottom:262.266667pt;}
.y5e_c00434{bottom:262.640000pt;}
.y5b_c00434{bottom:263.026667pt;}
.y57_c00434{bottom:276.360000pt;}
.y56_c00434{bottom:278.440000pt;}
.y59_c00434{bottom:279.773333pt;}
.y55_c00434{bottom:280.360000pt;}
.y58_c00434{bottom:281.306667pt;}
.y53_c00434{bottom:296.560000pt;}
.y52_c00434{bottom:296.733333pt;}
.y50_c00434{bottom:297.693333pt;}
.y54_c00434{bottom:297.893333pt;}
.y51_c00434{bottom:298.640000pt;}
.y4f_c00434{bottom:299.026667pt;}
.y4c_c00434{bottom:311.026667pt;}
.y4b_c00434{bottom:313.106667pt;}
.y4d_c00434{bottom:314.440000pt;}
.y49_c00434{bottom:315.026667pt;}
.y4a_c00434{bottom:315.226667pt;}
.y4e_c00434{bottom:315.973333pt;}
.y44_c00434{bottom:330.440000pt;}
.y48_c00434{bottom:331.226667pt;}
.y46_c00434{bottom:331.400000pt;}
.y45_c00434{bottom:331.773333pt;}
.y43_c00434{bottom:332.360000pt;}
.y47_c00434{bottom:332.560000pt;}
.y42_c00434{bottom:333.693333pt;}
.y3e_c00434{bottom:347.026667pt;}
.y3f_c00434{bottom:349.106667pt;}
.y41_c00434{bottom:349.693333pt;}
.y40_c00434{bottom:351.026667pt;}
.y39_c00434{bottom:364.360000pt;}
.y3b_c00434{bottom:365.106667pt;}
.y37_c00434{bottom:366.440000pt;}
.y3a_c00434{bottom:367.026667pt;}
.y3d_c00434{bottom:367.226667pt;}
.y3c_c00434{bottom:367.973333pt;}
.y38_c00434{bottom:368.360000pt;}
.y34_c00434{bottom:383.773333pt;}
.y35_c00434{bottom:384.360000pt;}
.y33_c00434{bottom:384.560000pt;}
.y36_c00434{bottom:384.733333pt;}
.y32_c00434{bottom:385.693333pt;}
.y31_c00434{bottom:386.640000pt;}
.y30_c00434{bottom:401.106667pt;}
.y2f_c00434{bottom:402.640000pt;}
.y2e_c00434{bottom:403.026667pt;}
.y2d_c00434{bottom:417.693333pt;}
.y2b_c00434{bottom:418.440000pt;}
.y2a_c00434{bottom:420.360000pt;}
.y2c_c00434{bottom:420.560000pt;}
.y28_c00434{bottom:435.773333pt;}
.y29_c00434{bottom:436.560000pt;}
.y26_c00434{bottom:437.106667pt;}
.y27_c00434{bottom:437.693333pt;}
.y23_c00434{bottom:452.360000pt;}
.y24_c00434{bottom:454.066667pt;}
.y21_c00434{bottom:454.440000pt;}
.y25_c00434{bottom:455.026667pt;}
.y22_c00434{bottom:455.226667pt;}
.y1f_c00434{bottom:456.360000pt;}
.y20_c00434{bottom:456.373333pt;}
.y1e_c00434{bottom:470.640000pt;}
.y1d_c00434{bottom:471.026667pt;}
.y1c_c00434{bottom:471.773333pt;}
.y1b_c00434{bottom:487.973333pt;}
.y19_c00434{bottom:488.360000pt;}
.y17_c00434{bottom:489.106667pt;}
.y18_c00434{bottom:489.306667pt;}
.y1a_c00434{bottom:490.066667pt;}
.y16_c00434{bottom:491.026667pt;}
.y15_c00434{bottom:505.493333pt;}
.y11_c00434{bottom:506.440000pt;}
.y14_c00434{bottom:506.640000pt;}
.y13_c00434{bottom:508.360000pt;}
.y12_c00434{bottom:508.560000pt;}
.y10_c00434{bottom:509.306667pt;}
.ye_c00434{bottom:523.773333pt;}
.yd_c00434{bottom:525.693333pt;}
.yf_c00434{bottom:527.026667pt;}
.y8_c00434{bottom:540.360000pt;}
.yb_c00434{bottom:541.106667pt;}
.y9_c00434{bottom:543.026667pt;}
.ya_c00434{bottom:543.226667pt;}
.yc_c00434{bottom:543.973333pt;}
.y7_c00434{bottom:544.360000pt;}
.y4_c00434{bottom:559.773333pt;}
.y6_c00434{bottom:560.560000pt;}
.y5_c00434{bottom:561.306667pt;}
.y3_c00434{bottom:561.693333pt;}
.yd3_c00434{bottom:599.600000pt;}
.yd1_c00434{bottom:603.226667pt;}
.yd0_c00434{bottom:604.173333pt;}
.yd2_c00434{bottom:604.373333pt;}
.yd5_c00434{bottom:604.560000pt;}
.yd4_c00434{bottom:605.506667pt;}
.yd6_c00434{bottom:605.893333pt;}
.yd7_c00434{bottom:606.840000pt;}
.ycd_c00434{bottom:615.226667pt;}
.yce_c00434{bottom:616.173333pt;}
.ycf_c00434{bottom:617.893333pt;}
.yc5_c00434{bottom:627.226667pt;}
.yc6_c00434{bottom:627.800000pt;}
.yc4_c00434{bottom:628.173333pt;}
.yca_c00434{bottom:629.506667pt;}
.yc7_c00434{bottom:629.693333pt;}
.yc8_c00434{bottom:629.706667pt;}
.ycb_c00434{bottom:629.893333pt;}
.yc9_c00434{bottom:630.640000pt;}
.ycc_c00434{bottom:630.840000pt;}
.yc0_c00434{bottom:640.560000pt;}
.yc1_c00434{bottom:641.133333pt;}
.ybf_c00434{bottom:641.506667pt;}
.yc2_c00434{bottom:641.893333pt;}
.yc3_c00434{bottom:642.840000pt;}
.yba_c00434{bottom:652.560000pt;}
.ybc_c00434{bottom:653.133333pt;}
.ybb_c00434{bottom:653.506667pt;}
.ybd_c00434{bottom:653.893333pt;}
.ybe_c00434{bottom:655.226667pt;}
.yb5_c00434{bottom:665.506667pt;}
.yb7_c00434{bottom:665.893333pt;}
.yb6_c00434{bottom:666.266667pt;}
.yb8_c00434{bottom:666.840000pt;}
.yb9_c00434{bottom:667.226667pt;}
.yb3_c00434{bottom:677.506667pt;}
.yb2_c00434{bottom:677.893333pt;}
.yb1_c00434{bottom:678.840000pt;}
.yb4_c00434{bottom:679.040000pt;}
.yac_c00434{bottom:686.840000pt;}
.yad_c00434{bottom:687.226667pt;}
.yae_c00434{bottom:688.173333pt;}
.yaf_c00434{bottom:688.560000pt;}
.yb0_c00434{bottom:689.506667pt;}
.yaa_c00434{bottom:689.893333pt;}
.yab_c00434{bottom:690.840000pt;}
.ya7_c00434{bottom:700.173333pt;}
.ya8_c00434{bottom:700.560000pt;}
.ya9_c00434{bottom:701.506667pt;}
.ya6_c00434{bottom:702.840000pt;}
.ya5_c00434{bottom:712.560000pt;}
.ya4_c00434{bottom:713.506667pt;}
.ya2_c00434{bottom:713.893333pt;}
.ya3_c00434{bottom:714.840000pt;}
.ya1_c00434{bottom:724.560000pt;}
.ya0_c00434{bottom:725.893333pt;}
.y9f_c00434{bottom:726.840000pt;}
.y9e_c00434{bottom:736.560000pt;}
.y9c_c00434{bottom:737.893333pt;}
.y9b_c00434{bottom:738.840000pt;}
.y9d_c00434{bottom:739.040000pt;}
.y9a_c00434{bottom:748.560000pt;}
.y99_c00434{bottom:749.506667pt;}
.y97_c00434{bottom:749.893333pt;}
.y96_c00434{bottom:750.840000pt;}
.y98_c00434{bottom:751.040000pt;}
.y95_c00434{bottom:751.226667pt;}
.y93_c00434{bottom:761.893333pt;}
.y90_c00434{bottom:762.840000pt;}
.y94_c00434{bottom:763.040000pt;}
.y91_c00434{bottom:763.226667pt;}
.y92_c00434{bottom:764.173333pt;}
.y8f_c00434{bottom:785.893333pt;}
.y8c_c00434{bottom:786.840000pt;}
.y8b_c00434{bottom:787.226667pt;}
.y8d_c00434{bottom:788.173333pt;}
.y8e_c00434{bottom:788.373333pt;}
.y8a_c00434{bottom:798.840000pt;}
.y89_c00434{bottom:799.226667pt;}
.y87_c00434{bottom:800.173333pt;}
.y88_c00434{bottom:800.373333pt;}
.y86_c00434{bottom:810.840000pt;}
.y84_c00434{bottom:812.173333pt;}
.y85_c00434{bottom:812.373333pt;}
.y80_c00434{bottom:823.226667pt;}
.y82_c00434{bottom:824.173333pt;}
.y83_c00434{bottom:824.373333pt;}
.y7e_c00434{bottom:824.560000pt;}
.y7f_c00434{bottom:825.506667pt;}
.y81_c00434{bottom:825.706667pt;}
.y7d_c00434{bottom:835.226667pt;}
.y7b_c00434{bottom:836.173333pt;}
.y7c_c00434{bottom:836.373333pt;}
.y79_c00434{bottom:836.560000pt;}
.y78_c00434{bottom:837.506667pt;}
.y7a_c00434{bottom:837.706667pt;}
.y77_c00434{bottom:861.893333pt;}
.y76_c00434{bottom:862.840000pt;}
.y74_c00434{bottom:884.560000pt;}
.y75_c00434{bottom:885.506667pt;}
.y71_c00434{bottom:907.026667pt;}
.y73_c00434{bottom:907.973333pt;}
.y72_c00434{bottom:908.933333pt;}
.y70_c00434{bottom:920.360000pt;}
.y6e_c00434{bottom:921.306667pt;}
.y6f_c00434{bottom:922.266667pt;}
.y6d_c00434{bottom:945.693333pt;}
.y6c_c00434{bottom:947.600000pt;}
.y2_c00434{bottom:977.693333pt;}
.y1_c00434{bottom:979.600000pt;}
.h8_c00434{height:3.739141pt;}
.hc_c00434{height:12.988594pt;}
.ha_c00434{height:14.890964pt;}
.hb_c00434{height:20.224297pt;}
.h5_c00434{height:20.466875pt;}
.h1_c00434{height:22.303646pt;}
.h9_c00434{height:25.800208pt;}
.h4_c00434{height:27.879557pt;}
.h2_c00434{height:31.618698pt;}
.h7_c00434{height:35.357839pt;}
.h3_c00434{height:39.031380pt;}
.h6_c00434{height:42.770521pt;}
.h0_c00434{height:1186.666667pt;}
.w0_c00434{width:782.666667pt;}
.x0_c00434{left:0.000000pt;}
.x11_c00434{left:135.040000pt;}
.x6c_c00434{left:136.373333pt;}
.xb5_c00434{left:137.333333pt;}
.x3_c00434{left:149.333333pt;}
.x7f_c00434{left:151.040000pt;}
.x24_c00434{left:152.000000pt;}
.x9f_c00434{left:155.626667pt;}
.x30_c00434{left:161.333333pt;}
.x55_c00434{left:163.040000pt;}
.x5f_c00434{left:164.000000pt;}
.xa7_c00434{left:165.706667pt;}
.x4_c00434{left:168.000000pt;}
.x6d_c00434{left:168.960000pt;}
.x80_c00434{left:173.333333pt;}
.xae_c00434{left:175.626667pt;}
.x60_c00434{left:181.333333pt;}
.xc4_c00434{left:183.626667pt;}
.x3f_c00434{left:184.960000pt;}
.xcd_c00434{left:188.000000pt;}
.x8a_c00434{left:189.333333pt;}
.xd7_c00434{left:192.000000pt;}
.x4c_c00434{left:193.706667pt;}
.x12_c00434{left:196.000000pt;}
.x56_c00434{left:196.960000pt;}
.x6e_c00434{left:199.040000pt;}
.x31_c00434{left:201.706667pt;}
.xaf_c00434{left:202.666667pt;}
.xd8_c00434{left:203.626667pt;}
.x40_c00434{left:206.666667pt;}
.x25_c00434{left:208.000000pt;}
.x5_c00434{left:209.333333pt;}
.x42_c00434{left:210.666667pt;}
.x8b_c00434{left:212.000000pt;}
.xda_c00434{left:216.000000pt;}
.xd4_c00434{left:216.960000pt;}
.x4d_c00434{left:219.040000pt;}
.x95_c00434{left:223.240000pt;}
.x26_c00434{left:226.666667pt;}
.xd2_c00434{left:228.000000pt;}
.x6_c00434{left:228.960000pt;}
.x62_c00434{left:230.666667pt;}
.x57_c00434{left:232.000000pt;}
.xe5_c00434{left:233.706667pt;}
.xde_c00434{left:236.373333pt;}
.x13_c00434{left:237.333333pt;}
.x77_c00434{left:239.800000pt;}
.xba_c00434{left:241.333333pt;}
.x1b_c00434{left:242.293333pt;}
.xa0_c00434{left:243.626667pt;}
.xb0_c00434{left:245.333333pt;}
.xe7_c00434{left:246.666667pt;}
.x41_c00434{left:248.373333pt;}
.xbf_c00434{left:249.333333pt;}
.x96_c00434{left:256.000000pt;}
.x43_c00434{left:257.706667pt;}
.x32_c00434{left:259.426667pt;}
.xb6_c00434{left:260.373333pt;}
.x6f_c00434{left:261.333333pt;}
.xa8_c00434{left:262.666667pt;}
.x81_c00434{left:264.000000pt;}
.x4e_c00434{left:265.706667pt;}
.x27_c00434{left:271.040000pt;}
.x78_c00434{left:272.373333pt;}
.xb1_c00434{left:273.333333pt;}
.x63_c00434{left:275.040000pt;}
.x82_c00434{left:277.706667pt;}
.x8c_c00434{left:282.666667pt;}
.x14_c00434{left:284.000000pt;}
.x7_c00434{left:284.960000pt;}
.xdf_c00434{left:286.666667pt;}
.x33_c00434{left:288.373333pt;}
.xd3_c00434{left:289.333333pt;}
.xe6_c00434{left:290.666667pt;}
.xc8_c00434{left:293.333333pt;}
.x83_c00434{left:295.040000pt;}
.xc6_c00434{left:296.000000pt;}
.x58_c00434{left:297.333333pt;}
.x64_c00434{left:298.666667pt;}
.x4f_c00434{left:300.373333pt;}
.x44_c00434{left:301.706667pt;}
.x28_c00434{left:303.626667pt;}
.x1c_c00434{left:305.333333pt;}
.x15_c00434{left:308.000000pt;}
.x97_c00434{left:310.293333pt;}
.x8_c00434{left:314.666667pt;}
.xb7_c00434{left:315.626667pt;}
.xb2_c00434{left:318.666667pt;}
.x70_c00434{left:319.626667pt;}
.xa1_c00434{left:324.000000pt;}
.x79_c00434{left:324.960000pt;}
.x29_c00434{left:327.240000pt;}
.xe0_c00434{left:329.333333pt;}
.x59_c00434{left:330.666667pt;}
.xb8_c00434{left:332.000000pt;}
.x71_c00434{left:333.333333pt;}
.x45_c00434{left:334.666667pt;}
.xdb_c00434{left:337.333333pt;}
.xc7_c00434{left:340.000000pt;}
.x34_c00434{left:342.093333pt;}
.x98_c00434{left:344.000000pt;}
.x2a_c00434{left:345.333333pt;}
.x65_c00434{left:347.626667pt;}
.x9_c00434{left:349.333333pt;}
.xbb_c00434{left:351.040000pt;}
.x84_c00434{left:352.000000pt;}
.x8d_c00434{left:353.706667pt;}
.x1_c00434{left:360.000000pt;}
.x61_c00434{left:361.333333pt;}
.xb9_c00434{left:364.000000pt;}
.x35_c00434{left:371.040000pt;}
.xa9_c00434{left:372.000000pt;}
.xe1_c00434{left:373.333333pt;}
.x1d_c00434{left:376.000000pt;}
.x5a_c00434{left:377.333333pt;}
.xc9_c00434{left:381.333333pt;}
.x8e_c00434{left:382.293333pt;}
.x46_c00434{left:383.626667pt;}
.xcf_c00434{left:385.333333pt;}
.x16_c00434{left:388.373333pt;}
.x85_c00434{left:392.373333pt;}
.xbc_c00434{left:394.666667pt;}
.x50_c00434{left:397.906667pt;}
.x36_c00434{left:400.000000pt;}
.xaa_c00434{left:401.333333pt;}
.x99_c00434{left:402.666667pt;}
.x72_c00434{left:405.706667pt;}
.x7a_c00434{left:406.666667pt;}
.x8f_c00434{left:408.960000pt;}
.x47_c00434{left:410.666667pt;}
.x86_c00434{left:412.960000pt;}
.xa2_c00434{left:415.040000pt;}
.xc5_c00434{left:416.000000pt;}
.x66_c00434{left:416.960000pt;}
.xd5_c00434{left:420.000000pt;}
.x5b_c00434{left:421.906667pt;}
.xdc_c00434{left:424.000000pt;}
.x90_c00434{left:425.706667pt;}
.xab_c00434{left:428.000000pt;}
.x37_c00434{left:432.000000pt;}
.x2b_c00434{left:435.040000pt;}
.x67_c00434{left:436.000000pt;}
.xc0_c00434{left:437.333333pt;}
.x1e_c00434{left:440.000000pt;}
.xa_c00434{left:441.333333pt;}
.x73_c00434{left:442.666667pt;}
.x87_c00434{left:446.666667pt;}
.x91_c00434{left:447.626667pt;}
.xa3_c00434{left:449.706667pt;}
.xc1_c00434{left:450.666667pt;}
.x7b_c00434{left:453.706667pt;}
.x9a_c00434{left:456.000000pt;}
.x1f_c00434{left:457.706667pt;}
.x17_c00434{left:458.666667pt;}
.xe2_c00434{left:461.333333pt;}
.x51_c00434{left:462.666667pt;}
.x38_c00434{left:464.000000pt;}
.x2c_c00434{left:465.706667pt;}
.xb_c00434{left:466.666667pt;}
.xca_c00434{left:468.000000pt;}
.xce_c00434{left:469.333333pt;}
.xd0_c00434{left:472.000000pt;}
.xc2_c00434{left:472.960000pt;}
.xa4_c00434{left:474.666667pt;}
.xb3_c00434{left:479.040000pt;}
.x20_c00434{left:481.906667pt;}
.x39_c00434{left:484.960000pt;}
.x18_c00434{left:487.626667pt;}
.x88_c00434{left:490.666667pt;}
.x5c_c00434{left:499.040000pt;}
.x9b_c00434{left:500.960000pt;}
.xe3_c00434{left:505.333333pt;}
.xc_c00434{left:506.293333pt;}
.x3a_c00434{left:507.626667pt;}
.x2d_c00434{left:508.960000pt;}
.x92_c00434{left:510.293333pt;}
.x52_c00434{left:512.000000pt;}
.xc3_c00434{left:513.333333pt;}
.x48_c00434{left:516.000000pt;}
.x21_c00434{left:518.666667pt;}
.xbd_c00434{left:520.373333pt;}
.x7c_c00434{left:522.293333pt;}
.xd_c00434{left:524.373333pt;}
.xac_c00434{left:527.040000pt;}
.x3b_c00434{left:531.626667pt;}
.x2e_c00434{left:535.626667pt;}
.x9c_c00434{left:538.666667pt;}
.x89_c00434{left:540.000000pt;}
.xb4_c00434{left:541.333333pt;}
.x5d_c00434{left:543.040000pt;}
.x19_c00434{left:544.000000pt;}
.x68_c00434{left:546.666667pt;}
.xe4_c00434{left:549.333333pt;}
.xe_c00434{left:550.293333pt;}
.x7d_c00434{left:552.000000pt;}
.xd9_c00434{left:553.333333pt;}
.x49_c00434{left:555.040000pt;}
.xcb_c00434{left:557.706667pt;}
.x3c_c00434{left:559.426667pt;}
.x69_c00434{left:560.373333pt;}
.xd1_c00434{left:561.333333pt;}
.xbe_c00434{left:564.000000pt;}
.x9d_c00434{left:566.666667pt;}
.x5e_c00434{left:568.373333pt;}
.x53_c00434{left:572.000000pt;}
.x93_c00434{left:573.333333pt;}
.x22_c00434{left:575.626667pt;}
.x74_c00434{left:579.040000pt;}
.xa5_c00434{left:583.626667pt;}
.x6a_c00434{left:584.960000pt;}
.x9e_c00434{left:592.373333pt;}
.xf_c00434{left:593.333333pt;}
.xad_c00434{left:594.666667pt;}
.x7e_c00434{left:596.000000pt;}
.xd6_c00434{left:597.706667pt;}
.x4a_c00434{left:600.000000pt;}
.xdd_c00434{left:601.333333pt;}
.x3d_c00434{left:603.040000pt;}
.xcc_c00434{left:604.000000pt;}
.xa6_c00434{left:609.333333pt;}
.x10_c00434{left:610.666667pt;}
.x23_c00434{left:611.626667pt;}
.x54_c00434{left:613.333333pt;}
.x75_c00434{left:616.000000pt;}
.x2f_c00434{left:618.666667pt;}
.x3e_c00434{left:620.000000pt;}
.x6b_c00434{left:621.333333pt;}
.x2_c00434{left:624.000000pt;}
.x4b_c00434{left:628.000000pt;}
.x76_c00434{left:634.666667pt;}
.x1a_c00434{left:635.626667pt;}
.x94_c00434{left:636.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_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_0d60518e93213f6c8d6d5349.woff2')format("woff");}.ff1_c00435{font-family:ff1_c00435;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mcc_c00435{transform:matrix(0.327922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327922,0.000000,0.000000,0.250000,0,0);}
.m28_c00435{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m4f_c00435{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.mac_c00435{transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);}
.m8_c00435{transform:matrix(0.363445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363445,0.000000,0.000000,0.250000,0,0);}
.m7d_c00435{transform:matrix(0.367227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367227,0.000000,0.000000,0.250000,0,0);}
.m7a_c00435{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m53_c00435{transform:matrix(0.368908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368908,0.000000,0.000000,0.250000,0,0);}
.m12_c00435{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.meb_c00435{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m82_c00435{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mde_c00435{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.mbd_c00435{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m2b_c00435{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.ma6_c00435{transform:matrix(0.378479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378479,0.000000,0.000000,0.250000,0,0);}
.m11_c00435{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mf6_c00435{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m96_c00435{transform:matrix(0.383436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383436,0.000000,0.000000,0.250000,0,0);}
.m4d_c00435{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m7c_c00435{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.mfb_c00435{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m0_c00435{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m95_c00435{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m8c_c00435{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m6e_c00435{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.mb9_c00435{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.maa_c00435{transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);}
.m4_c00435{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m94_c00435{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m2d_c00435{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m2c_c00435{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m81_c00435{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m9b_c00435{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.mc9_c00435{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m84_c00435{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.m7b_c00435{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mc3_c00435{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m4e_c00435{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m6c_c00435{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m99_c00435{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.mf7_c00435{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m16_c00435{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m67_c00435{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.md5_c00435{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.mb7_c00435{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m1a_c00435{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m9d_c00435{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m48_c00435{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.me3_c00435{transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);}
.m33_c00435{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m39_c00435{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.mf0_c00435{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m50_c00435{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m8f_c00435{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.me6_c00435{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m6b_c00435{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m8a_c00435{transform:matrix(0.422353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422353,0.000000,0.000000,0.250000,0,0);}
.m18_c00435{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mb2_c00435{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.mee_c00435{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.mbf_c00435{transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);}
.mef_c00435{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mc0_c00435{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m66_c00435{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m30_c00435{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.m86_c00435{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m60_c00435{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.ma5_c00435{transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);}
.m49_c00435{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m35_c00435{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m3f_c00435{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m73_c00435{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m7f_c00435{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m72_c00435{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.mfa_c00435{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.maf_c00435{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m1c_c00435{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m2a_c00435{transform:matrix(0.437848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437848,0.000000,0.000000,0.250000,0,0);}
.m76_c00435{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.mec_c00435{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.mea_c00435{transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);}
.mc1_c00435{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.mfd_c00435{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m21_c00435{transform:matrix(0.441390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441390,0.000000,0.000000,0.250000,0,0);}
.mdb_c00435{transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);}
.mc5_c00435{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.mcb_c00435{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m6_c00435{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m65_c00435{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m79_c00435{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.ma7_c00435{transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);}
.mb8_c00435{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m3d_c00435{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m55_c00435{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m5f_c00435{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m9c_c00435{transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);}
.ma4_c00435{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.m9e_c00435{transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);}
.m25_c00435{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m46_c00435{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m34_c00435{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.md7_c00435{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mba_c00435{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m37_c00435{transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);}
.mbe_c00435{transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);}
.mbb_c00435{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m5a_c00435{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.md0_c00435{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.ma2_c00435{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m6f_c00435{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.md4_c00435{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m69_c00435{transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);}
.ma1_c00435{transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);}
.m7_c00435{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.me_c00435{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.ma0_c00435{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.me1_c00435{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.mf4_c00435{transform:matrix(0.485714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485714,0.000000,0.000000,0.250000,0,0);}
.m15_c00435{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m64_c00435{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m8b_c00435{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.md6_c00435{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m9f_c00435{transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);}
.m17_c00435{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.ma8_c00435{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m91_c00435{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m2f_c00435{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m2e_c00435{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m5_c00435{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);}
.m29_c00435{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.mf2_c00435{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m8e_c00435{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mc7_c00435{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.mcf_c00435{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m10_c00435{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m80_c00435{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mf8_c00435{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m19_c00435{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m83_c00435{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m9_c00435{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m42_c00435{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m4b_c00435{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.med_c00435{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.mc8_c00435{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m41_c00435{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m97_c00435{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m20_c00435{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m26_c00435{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m36_c00435{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m61_c00435{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.mb_c00435{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m71_c00435{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m56_c00435{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mf1_c00435{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.mb4_c00435{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mc6_c00435{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m8d_c00435{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m70_c00435{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.mf_c00435{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m27_c00435{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mdd_c00435{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m2_c00435{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m13_c00435{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m3e_c00435{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m43_c00435{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mf3_c00435{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.md9_c00435{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m5e_c00435{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m3c_c00435{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m45_c00435{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mf5_c00435{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m22_c00435{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m40_c00435{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.ma3_c00435{transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);}
.m89_c00435{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.mb1_c00435{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.ma9_c00435{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_c00435{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m1b_c00435{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mae_c00435{transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);}
.m62_c00435{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m98_c00435{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m6d_c00435{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mf9_c00435{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m23_c00435{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mab_c00435{transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);}
.mca_c00435{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.me7_c00435{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m4a_c00435{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m78_c00435{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.md1_c00435{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m6a_c00435{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mb3_c00435{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m59_c00435{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.mc2_c00435{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m1f_c00435{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mcd_c00435{transform:matrix(0.571176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571176,0.000000,0.000000,0.250000,0,0);}
.m44_c00435{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m52_c00435{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.mad_c00435{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m3b_c00435{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.me5_c00435{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m31_c00435{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m92_c00435{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m87_c00435{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.me8_c00435{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);}
.m51_c00435{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.me0_c00435{transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);}
.m54_c00435{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m9a_c00435{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.mdc_c00435{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.mb5_c00435{transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);}
.m7e_c00435{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m90_c00435{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m3a_c00435{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.ma_c00435{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m1_c00435{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);}
.m58_c00435{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);}
.mb6_c00435{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m24_c00435{transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);}
.mce_c00435{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m32_c00435{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m93_c00435{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m4c_c00435{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.me4_c00435{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.md3_c00435{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.md2_c00435{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m5b_c00435{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m1d_c00435{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.md8_c00435{transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);}
.me9_c00435{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m63_c00435{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.mda_c00435{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m38_c00435{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.me2_c00435{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);}
.m88_c00435{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m1e_c00435{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mc4_c00435{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.mc_c00435{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m14_c00435{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m85_c00435{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m5c_c00435{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mbc_c00435{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m75_c00435{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.m74_c00435{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m5d_c00435{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m77_c00435{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.md_c00435{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.mfc_c00435{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m68_c00435{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m47_c00435{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m57_c00435{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.mdf_c00435{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mb0_c00435{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00435{vertical-align:0.000000px;}
.v1_c00435{vertical-align:4.260000px;}
.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;}
}
.ws4_c00435{word-spacing:-5.052391px;}
.ws0_c00435{word-spacing:-3.584672px;}
.ws5_c00435{word-spacing:0.000000px;}
.ws2_c00435{word-spacing:1.010502px;}
.ws3_c00435{word-spacing:1.831440px;}
.ws1_c00435{word-spacing:2.970720px;}
.fc0_c00435{color:transparent;}
.fs7_c00435{font-size:3.420000px;}
.fs8_c00435{font-size:13.620000px;}
.fs4_c00435{font-size:18.720000px;}
.fs1_c00435{font-size:20.400000px;}
.fs3_c00435{font-size:25.500000px;}
.fs2_c00435{font-size:28.920000px;}
.fs5_c00435{font-size:32.340000px;}
.fs0_c00435{font-size:35.700000px;}
.fs6_c00435{font-size:39.120000px;}
.y0_c00435{bottom:0.000000px;}
.ybe_c00435{bottom:251.745000px;}
.ybd_c00435{bottom:253.905000px;}
.ybf_c00435{bottom:254.130000px;}
.yb9_c00435{bottom:271.245000px;}
.ybb_c00435{bottom:272.970000px;}
.yba_c00435{bottom:273.405000px;}
.ybc_c00435{bottom:274.470000px;}
.yb4_c00435{bottom:290.745000px;}
.yb7_c00435{bottom:292.245000px;}
.yb6_c00435{bottom:292.905000px;}
.yb8_c00435{bottom:293.130000px;}
.yb5_c00435{bottom:294.420000px;}
.yb0_c00435{bottom:316.905000px;}
.yb1_c00435{bottom:317.325000px;}
.yae_c00435{bottom:317.970000px;}
.yaf_c00435{bottom:318.195000px;}
.yb2_c00435{bottom:319.470000px;}
.yb3_c00435{bottom:320.550000px;}
.yad_c00435{bottom:330.825000px;}
.ya9_c00435{bottom:331.905000px;}
.yac_c00435{bottom:332.325000px;}
.ya6_c00435{bottom:333.195000px;}
.ya8_c00435{bottom:333.405000px;}
.ya7_c00435{bottom:334.050000px;}
.yab_c00435{bottom:334.470000px;}
.yaa_c00435{bottom:335.550000px;}
.ya4_c00435{bottom:345.825000px;}
.ya0_c00435{bottom:346.905000px;}
.ya1_c00435{bottom:347.130000px;}
.ya3_c00435{bottom:347.970000px;}
.ya5_c00435{bottom:348.630000px;}
.ya2_c00435{bottom:349.050000px;}
.y9f_c00435{bottom:360.825000px;}
.y9b_c00435{bottom:361.050000px;}
.y9e_c00435{bottom:361.905000px;}
.y99_c00435{bottom:362.325000px;}
.y9a_c00435{bottom:362.970000px;}
.y9c_c00435{bottom:363.405000px;}
.y9d_c00435{bottom:364.050000px;}
.y98_c00435{bottom:386.745000px;}
.y96_c00435{bottom:405.825000px;}
.y97_c00435{bottom:406.245000px;}
.y94_c00435{bottom:408.405000px;}
.y95_c00435{bottom:409.920000px;}
.y92_c00435{bottom:427.245000px;}
.y93_c00435{bottom:427.905000px;}
.y91_c00435{bottom:429.405000px;}
.y8f_c00435{bottom:446.325000px;}
.y8c_c00435{bottom:446.745000px;}
.y90_c00435{bottom:447.405000px;}
.y8d_c00435{bottom:447.630000px;}
.y8e_c00435{bottom:447.825000px;}
.y8a_c00435{bottom:448.905000px;}
.y8b_c00435{bottom:448.920000px;}
.y88_c00435{bottom:465.825000px;}
.y87_c00435{bottom:466.245000px;}
.y89_c00435{bottom:466.905000px;}
.y84_c00435{bottom:468.405000px;}
.y86_c00435{bottom:468.420000px;}
.y85_c00435{bottom:468.630000px;}
.y83_c00435{bottom:483.405000px;}
.y80_c00435{bottom:485.745000px;}
.y82_c00435{bottom:486.825000px;}
.y81_c00435{bottom:487.920000px;}
.y7c_c00435{bottom:505.245000px;}
.y7f_c00435{bottom:506.550000px;}
.y7e_c00435{bottom:507.405000px;}
.y7d_c00435{bottom:508.920000px;}
.y78_c00435{bottom:527.970000px;}
.y77_c00435{bottom:528.825000px;}
.y7b_c00435{bottom:529.050000px;}
.y76_c00435{bottom:529.905000px;}
.y79_c00435{bottom:530.970000px;}
.y7a_c00435{bottom:532.050000px;}
.y74_c00435{bottom:547.470000px;}
.y75_c00435{bottom:548.550000px;}
.y73_c00435{bottom:549.405000px;}
.y72_c00435{bottom:571.905000px;}
.y70_c00435{bottom:572.745000px;}
.y71_c00435{bottom:573.825000px;}
.y6c_c00435{bottom:604.905000px;}
.y6d_c00435{bottom:607.245000px;}
.y6f_c00435{bottom:608.130000px;}
.y6e_c00435{bottom:608.970000px;}
.y6b_c00435{bottom:609.405000px;}
.y68_c00435{bottom:625.680000px;}
.y69_c00435{bottom:626.745000px;}
.y6a_c00435{bottom:627.630000px;}
.y67_c00435{bottom:628.905000px;}
.y66_c00435{bottom:643.905000px;}
.y62_c00435{bottom:646.245000px;}
.y63_c00435{bottom:647.130000px;}
.y64_c00435{bottom:647.970000px;}
.y61_c00435{bottom:648.405000px;}
.y65_c00435{bottom:649.470000px;}
.y5b_c00435{bottom:663.405000px;}
.y5c_c00435{bottom:665.745000px;}
.y60_c00435{bottom:666.630000px;}
.y5e_c00435{bottom:667.470000px;}
.y5d_c00435{bottom:667.905000px;}
.y5f_c00435{bottom:668.970000px;}
.y58_c00435{bottom:683.970000px;}
.y57_c00435{bottom:685.245000px;}
.y56_c00435{bottom:687.405000px;}
.y59_c00435{bottom:687.630000px;}
.y5a_c00435{bottom:688.470000px;}
.y55_c00435{bottom:703.905000px;}
.y54_c00435{bottom:704.745000px;}
.y53_c00435{bottom:706.470000px;}
.y52_c00435{bottom:706.905000px;}
.y50_c00435{bottom:724.245000px;}
.y51_c00435{bottom:725.325000px;}
.y4f_c00435{bottom:726.405000px;}
.y4e_c00435{bottom:745.245000px;}
.y4d_c00435{bottom:745.905000px;}
.y4b_c00435{bottom:764.745000px;}
.y4a_c00435{bottom:765.630000px;}
.y49_c00435{bottom:765.825000px;}
.y4c_c00435{bottom:766.470000px;}
.y48_c00435{bottom:766.905000px;}
.y45_c00435{bottom:781.905000px;}
.y44_c00435{bottom:784.245000px;}
.y47_c00435{bottom:785.130000px;}
.y46_c00435{bottom:785.325000px;}
.y43_c00435{bottom:786.405000px;}
.y3f_c00435{bottom:801.405000px;}
.y42_c00435{bottom:802.245000px;}
.y41_c00435{bottom:803.745000px;}
.y3d_c00435{bottom:804.405000px;}
.y40_c00435{bottom:804.630000px;}
.y3e_c00435{bottom:805.905000px;}
.y3b_c00435{bottom:823.245000px;}
.y3a_c00435{bottom:824.325000px;}
.y39_c00435{bottom:825.405000px;}
.y3c_c00435{bottom:825.630000px;}
.y37_c00435{bottom:842.745000px;}
.y35_c00435{bottom:843.825000px;}
.y34_c00435{bottom:844.905000px;}
.y36_c00435{bottom:845.130000px;}
.y38_c00435{bottom:845.970000px;}
.y31_c00435{bottom:861.405000px;}
.y33_c00435{bottom:862.245000px;}
.y32_c00435{bottom:863.745000px;}
.y2f_c00435{bottom:864.405000px;}
.y30_c00435{bottom:864.630000px;}
.y2d_c00435{bottom:880.905000px;}
.y2b_c00435{bottom:881.745000px;}
.y2e_c00435{bottom:881.970000px;}
.y2c_c00435{bottom:882.825000px;}
.y2a_c00435{bottom:883.905000px;}
.y28_c00435{bottom:900.405000px;}
.y25_c00435{bottom:902.745000px;}
.y29_c00435{bottom:903.630000px;}
.y27_c00435{bottom:904.470000px;}
.y24_c00435{bottom:904.905000px;}
.y26_c00435{bottom:905.970000px;}
.y20_c00435{bottom:921.405000px;}
.y23_c00435{bottom:922.245000px;}
.y22_c00435{bottom:923.130000px;}
.y21_c00435{bottom:923.970000px;}
.y1f_c00435{bottom:924.405000px;}
.y1d_c00435{bottom:940.905000px;}
.y1c_c00435{bottom:941.745000px;}
.y1e_c00435{bottom:943.050000px;}
.y1b_c00435{bottom:943.905000px;}
.y18_c00435{bottom:961.245000px;}
.y1a_c00435{bottom:962.325000px;}
.y19_c00435{bottom:963.405000px;}
.y17_c00435{bottom:979.470000px;}
.y13_c00435{bottom:980.745000px;}
.y16_c00435{bottom:981.825000px;}
.y14_c00435{bottom:982.905000px;}
.y15_c00435{bottom:983.970000px;}
.y12_c00435{bottom:1000.245000px;}
.y11_c00435{bottom:1001.325000px;}
.yf_c00435{bottom:1002.405000px;}
.y10_c00435{bottom:1003.470000px;}
.yb_c00435{bottom:1019.745000px;}
.ye_c00435{bottom:1020.630000px;}
.yd_c00435{bottom:1021.470000px;}
.yc_c00435{bottom:1021.905000px;}
.ya_c00435{bottom:1038.405000px;}
.y9_c00435{bottom:1039.245000px;}
.y8_c00435{bottom:1041.405000px;}
.y7_c00435{bottom:1041.630000px;}
.y6_c00435{bottom:1057.905000px;}
.y4_c00435{bottom:1058.745000px;}
.y3_c00435{bottom:1060.905000px;}
.y5_c00435{bottom:1061.970000px;}
.y1_c00435{bottom:1097.745000px;}
.y2_c00435{bottom:1099.050000px;}
.h9_c00435{height:4.206533px;}
.ha_c00435{height:16.752334px;}
.h5_c00435{height:23.025234px;}
.h2_c00435{height:25.091602px;}
.h4_c00435{height:31.364502px;}
.h3_c00435{height:35.571035px;}
.h7_c00435{height:35.624502px;}
.h6_c00435{height:39.777568px;}
.h1_c00435{height:43.910303px;}
.h8_c00435{height:48.116836px;}
.h0_c00435{height:1335.000000px;}
.w0_c00435{width:880.500000px;}
.x0_c00435{left:0.000000px;}
.xed_c00435{left:149.580000px;}
.xc1_c00435{left:151.500000px;}
.x44_c00435{left:152.580000px;}
.x1_c00435{left:154.500000px;}
.xf1_c00435{left:165.000000px;}
.xcd_c00435{left:166.500000px;}
.xbd_c00435{left:168.000000px;}
.x3_c00435{left:169.500000px;}
.x69_c00435{left:172.080000px;}
.x97_c00435{left:174.000000px;}
.x73_c00435{left:180.420000px;}
.x60_c00435{left:183.000000px;}
.xc2_c00435{left:189.000000px;}
.x7b_c00435{left:190.080000px;}
.x6a_c00435{left:191.580000px;}
.x4d_c00435{left:193.500000px;}
.x10_c00435{left:196.500000px;}
.xa1_c00435{left:198.000000px;}
.xfc_c00435{left:199.500000px;}
.x4_c00435{left:201.420000px;}
.x8b_c00435{left:203.580000px;}
.x99_c00435{left:206.580000px;}
.x92_c00435{left:208.500000px;}
.x2a_c00435{left:211.080000px;}
.x11_c00435{left:213.420000px;}
.x45_c00435{left:214.920000px;}
.x85_c00435{left:216.420000px;}
.xee_c00435{left:217.920000px;}
.xf6_c00435{left:219.000000px;}
.x1f_c00435{left:220.080000px;}
.xfd_c00435{left:223.500000px;}
.x53_c00435{left:225.420000px;}
.xb3_c00435{left:226.500000px;}
.xa2_c00435{left:229.500000px;}
.x98_c00435{left:231.000000px;}
.x5_c00435{left:234.000000px;}
.xc3_c00435{left:237.420000px;}
.x8c_c00435{left:238.920000px;}
.x12_c00435{left:240.420000px;}
.x4e_c00435{left:242.580000px;}
.x31_c00435{left:244.500000px;}
.x7c_c00435{left:246.420000px;}
.xd5_c00435{left:249.000000px;}
.x3a_c00435{left:252.000000px;}
.xf9_c00435{left:253.500000px;}
.x61_c00435{left:254.580000px;}
.x54_c00435{left:256.920000px;}
.xdf_c00435{left:258.000000px;}
.xa6_c00435{left:259.080000px;}
.xda_c00435{left:261.000000px;}
.xc4_c00435{left:262.920000px;}
.x46_c00435{left:265.080000px;}
.x20_c00435{left:267.000000px;}
.xe3_c00435{left:269.580000px;}
.xad_c00435{left:271.500000px;}
.x74_c00435{left:274.500000px;}
.x3b_c00435{left:276.420000px;}
.xb4_c00435{left:277.500000px;}
.xce_c00435{left:280.500000px;}
.x9a_c00435{left:282.000000px;}
.x86_c00435{left:283.500000px;}
.x47_c00435{left:286.920000px;}
.x2b_c00435{left:289.080000px;}
.x13_c00435{left:290.580000px;}
.x7d_c00435{left:292.500000px;}
.x75_c00435{left:294.000000px;}
.x62_c00435{left:297.000000px;}
.xd6_c00435{left:300.000000px;}
.x6_c00435{left:301.080000px;}
.xb5_c00435{left:304.500000px;}
.x3c_c00435{left:306.420000px;}
.x32_c00435{left:307.500000px;}
.xf7_c00435{left:308.580000px;}
.xbe_c00435{left:313.500000px;}
.x7_c00435{left:319.080000px;}
.x14_c00435{left:322.275000px;}
.xb6_c00435{left:323.580000px;}
.xfe_c00435{left:331.080000px;}
.x76_c00435{left:337.500000px;}
.x8_c00435{left:339.000000px;}
.x2c_c00435{left:340.500000px;}
.xe0_c00435{left:342.420000px;}
.xe4_c00435{left:343.500000px;}
.xb7_c00435{left:345.420000px;}
.x87_c00435{left:346.500000px;}
.xa7_c00435{left:348.000000px;}
.x6b_c00435{left:349.500000px;}
.x7e_c00435{left:351.000000px;}
.x55_c00435{left:352.500000px;}
.x8d_c00435{left:354.000000px;}
.x48_c00435{left:357.000000px;}
.xef_c00435{left:362.580000px;}
.xe5_c00435{left:364.080000px;}
.x9b_c00435{left:366.000000px;}
.x7f_c00435{left:368.580000px;}
.x15_c00435{left:370.920000px;}
.xa3_c00435{left:372.000000px;}
.xcf_c00435{left:373.500000px;}
.x3d_c00435{left:375.420000px;}
.xf2_c00435{left:376.500000px;}
.x33_c00435{left:378.000000px;}
.x4f_c00435{left:379.500000px;}
.xf8_c00435{left:382.920000px;}
.xa8_c00435{left:385.920000px;}
.xbf_c00435{left:387.000000px;}
.x80_c00435{left:388.080000px;}
.x56_c00435{left:390.000000px;}
.x77_c00435{left:391.080000px;}
.x9_c00435{left:396.000000px;}
.xae_c00435{left:399.000000px;}
.x6c_c00435{left:400.080000px;}
.xd7_c00435{left:402.420000px;}
.xc9_c00435{left:403.920000px;}
.x49_c00435{left:405.000000px;}
.x21_c00435{left:406.080000px;}
.xb8_c00435{left:408.420000px;}
.x2_c00435{left:409.500000px;}
.xea_c00435{left:410.580000px;}
.xf0_c00435{left:412.920000px;}
.xdb_c00435{left:414.000000px;}
.x16_c00435{left:415.500000px;}
.x57_c00435{left:417.000000px;}
.xd2_c00435{left:418.080000px;}
.x6d_c00435{left:420.000000px;}
.xd0_c00435{left:421.920000px;}
.x50_c00435{left:423.000000px;}
.x9c_c00435{left:424.500000px;}
.x22_c00435{left:426.420000px;}
.xf3_c00435{left:427.500000px;}
.x63_c00435{left:429.000000px;}
.x8e_c00435{left:432.000000px;}
.x34_c00435{left:433.500000px;}
.xb9_c00435{left:434.580000px;}
.x17_c00435{left:436.920000px;}
.xa9_c00435{left:441.420000px;}
.x3e_c00435{left:443.580000px;}
.xfa_c00435{left:447.000000px;}
.x88_c00435{left:448.500000px;}
.xc5_c00435{left:450.420000px;}
.xf4_c00435{left:451.920000px;}
.xd8_c00435{left:454.500000px;}
.x18_c00435{left:457.500000px;}
.x78_c00435{left:458.580000px;}
.x58_c00435{left:460.500000px;}
.xa_c00435{left:462.000000px;}
.xdc_c00435{left:465.000000px;}
.x23_c00435{left:466.080000px;}
.x3f_c00435{left:468.000000px;}
.xaa_c00435{left:469.500000px;}
.x8f_c00435{left:470.580000px;}
.xba_c00435{left:472.080000px;}
.xe6_c00435{left:475.500000px;}
.xcb_c00435{left:476.580000px;}
.x9d_c00435{left:478.500000px;}
.x6e_c00435{left:480.000000px;}
.x93_c00435{left:481.080000px;}
.x81_c00435{left:483.420000px;}
.xdd_c00435{left:486.420000px;}
.x40_c00435{left:487.500000px;}
.x89_c00435{left:490.080000px;}
.xeb_c00435{left:492.000000px;}
.x24_c00435{left:493.500000px;}
.x59_c00435{left:494.580000px;}
.x9e_c00435{left:496.500000px;}
.xcc_c00435{left:498.855000px;}
.x6f_c00435{left:500.580000px;}
.xbb_c00435{left:502.080000px;}
.x2d_c00435{left:505.080000px;}
.xe1_c00435{left:507.000000px;}
.x35_c00435{left:508.500000px;}
.x51_c00435{left:510.000000px;}
.xab_c00435{left:514.500000px;}
.xd1_c00435{left:516.000000px;}
.x79_c00435{left:517.500000px;}
.x70_c00435{left:520.500000px;}
.xc6_c00435{left:522.000000px;}
.x82_c00435{left:523.500000px;}
.xb_c00435{left:526.500000px;}
.x4a_c00435{left:529.920000px;}
.x2e_c00435{left:531.645000px;}
.xca_c00435{left:532.920000px;}
.xd4_c00435{left:534.420000px;}
.x19_c00435{left:537.420000px;}
.xc7_c00435{left:540.000000px;}
.xac_c00435{left:541.500000px;}
.xe7_c00435{left:544.500000px;}
.x5a_c00435{left:545.580000px;}
.x9f_c00435{left:549.000000px;}
.xc_c00435{left:550.500000px;}
.x41_c00435{left:552.000000px;}
.x25_c00435{left:555.420000px;}
.xc0_c00435{left:556.500000px;}
.x90_c00435{left:558.000000px;}
.xc8_c00435{left:559.500000px;}
.x64_c00435{left:560.580000px;}
.xd3_c00435{left:563.355000px;}
.x5b_c00435{left:570.000000px;}
.xe2_c00435{left:571.080000px;}
.x1a_c00435{left:573.000000px;}
.xaf_c00435{left:574.500000px;}
.x52_c00435{left:575.580000px;}
.x4b_c00435{left:577.500000px;}
.xfb_c00435{left:579.000000px;}
.x26_c00435{left:580.500000px;}
.xd9_c00435{left:583.080000px;}
.x36_c00435{left:586.500000px;}
.xbc_c00435{left:587.580000px;}
.x83_c00435{left:591.000000px;}
.xb0_c00435{left:594.000000px;}
.x1b_c00435{left:595.500000px;}
.x42_c00435{left:597.000000px;}
.x2f_c00435{left:598.500000px;}
.xa0_c00435{left:600.000000px;}
.x84_c00435{left:603.000000px;}
.xde_c00435{left:612.000000px;}
.x5c_c00435{left:613.080000px;}
.xd_c00435{left:614.580000px;}
.x1c_c00435{left:618.000000px;}
.x4c_c00435{left:620.580000px;}
.x43_c00435{left:621.855000px;}
.x65_c00435{left:625.080000px;}
.xb1_c00435{left:628.500000px;}
.x94_c00435{left:630.000000px;}
.x5d_c00435{left:636.000000px;}
.x1d_c00435{left:640.080000px;}
.x37_c00435{left:641.580000px;}
.x71_c00435{left:643.920000px;}
.x66_c00435{left:647.580000px;}
.xb2_c00435{left:649.920000px;}
.xa4_c00435{left:652.080000px;}
.xec_c00435{left:655.500000px;}
.x27_c00435{left:656.580000px;}
.xe8_c00435{left:658.500000px;}
.x8a_c00435{left:660.000000px;}
.xf5_c00435{left:666.420000px;}
.x5e_c00435{left:669.420000px;}
.x72_c00435{left:670.500000px;}
.x95_c00435{left:672.420000px;}
.x28_c00435{left:675.420000px;}
.x38_c00435{left:676.500000px;}
.xe_c00435{left:678.000000px;}
.x67_c00435{left:680.580000px;}
.x91_c00435{left:685.500000px;}
.x7a_c00435{left:691.080000px;}
.x30_c00435{left:692.775000px;}
.xe9_c00435{left:694.920000px;}
.xf_c00435{left:698.580000px;}
.x68_c00435{left:700.500000px;}
.x29_c00435{left:702.000000px;}
.xa5_c00435{left:704.580000px;}
.x1e_c00435{left:709.920000px;}
.x39_c00435{left:715.080000px;}
.x96_c00435{left:717.000000px;}
.x5f_c00435{left:718.080000px;}
@media print{
.v0_c00435{vertical-align:0.000000pt;}
.v1_c00435{vertical-align:3.786667pt;}
.ls0_c00435{letter-spacing:0.000000pt;}
.ws4_c00435{word-spacing:-4.491014pt;}
.ws0_c00435{word-spacing:-3.186375pt;}
.ws5_c00435{word-spacing:0.000000pt;}
.ws2_c00435{word-spacing:0.898224pt;}
.ws3_c00435{word-spacing:1.627947pt;}
.ws1_c00435{word-spacing:2.640640pt;}
.fs7_c00435{font-size:3.040000pt;}
.fs8_c00435{font-size:12.106667pt;}
.fs4_c00435{font-size:16.640000pt;}
.fs1_c00435{font-size:18.133333pt;}
.fs3_c00435{font-size:22.666667pt;}
.fs2_c00435{font-size:25.706667pt;}
.fs5_c00435{font-size:28.746667pt;}
.fs0_c00435{font-size:31.733333pt;}
.fs6_c00435{font-size:34.773333pt;}
.y0_c00435{bottom:0.000000pt;}
.ybe_c00435{bottom:223.773333pt;}
.ybd_c00435{bottom:225.693333pt;}
.ybf_c00435{bottom:225.893333pt;}
.yb9_c00435{bottom:241.106667pt;}
.ybb_c00435{bottom:242.640000pt;}
.yba_c00435{bottom:243.026667pt;}
.ybc_c00435{bottom:243.973333pt;}
.yb4_c00435{bottom:258.440000pt;}
.yb7_c00435{bottom:259.773333pt;}
.yb6_c00435{bottom:260.360000pt;}
.yb8_c00435{bottom:260.560000pt;}
.yb5_c00435{bottom:261.706667pt;}
.yb0_c00435{bottom:281.693333pt;}
.yb1_c00435{bottom:282.066667pt;}
.yae_c00435{bottom:282.640000pt;}
.yaf_c00435{bottom:282.840000pt;}
.yb2_c00435{bottom:283.973333pt;}
.yb3_c00435{bottom:284.933333pt;}
.yad_c00435{bottom:294.066667pt;}
.ya9_c00435{bottom:295.026667pt;}
.yac_c00435{bottom:295.400000pt;}
.ya6_c00435{bottom:296.173333pt;}
.ya8_c00435{bottom:296.360000pt;}
.ya7_c00435{bottom:296.933333pt;}
.yab_c00435{bottom:297.306667pt;}
.yaa_c00435{bottom:298.266667pt;}
.ya4_c00435{bottom:307.400000pt;}
.ya0_c00435{bottom:308.360000pt;}
.ya1_c00435{bottom:308.560000pt;}
.ya3_c00435{bottom:309.306667pt;}
.ya5_c00435{bottom:309.893333pt;}
.ya2_c00435{bottom:310.266667pt;}
.y9f_c00435{bottom:320.733333pt;}
.y9b_c00435{bottom:320.933333pt;}
.y9e_c00435{bottom:321.693333pt;}
.y99_c00435{bottom:322.066667pt;}
.y9a_c00435{bottom:322.640000pt;}
.y9c_c00435{bottom:323.026667pt;}
.y9d_c00435{bottom:323.600000pt;}
.y98_c00435{bottom:343.773333pt;}
.y96_c00435{bottom:360.733333pt;}
.y97_c00435{bottom:361.106667pt;}
.y94_c00435{bottom:363.026667pt;}
.y95_c00435{bottom:364.373333pt;}
.y92_c00435{bottom:379.773333pt;}
.y93_c00435{bottom:380.360000pt;}
.y91_c00435{bottom:381.693333pt;}
.y8f_c00435{bottom:396.733333pt;}
.y8c_c00435{bottom:397.106667pt;}
.y90_c00435{bottom:397.693333pt;}
.y8d_c00435{bottom:397.893333pt;}
.y8e_c00435{bottom:398.066667pt;}
.y8a_c00435{bottom:399.026667pt;}
.y8b_c00435{bottom:399.040000pt;}
.y88_c00435{bottom:414.066667pt;}
.y87_c00435{bottom:414.440000pt;}
.y89_c00435{bottom:415.026667pt;}
.y84_c00435{bottom:416.360000pt;}
.y86_c00435{bottom:416.373333pt;}
.y85_c00435{bottom:416.560000pt;}
.y83_c00435{bottom:429.693333pt;}
.y80_c00435{bottom:431.773333pt;}
.y82_c00435{bottom:432.733333pt;}
.y81_c00435{bottom:433.706667pt;}
.y7c_c00435{bottom:449.106667pt;}
.y7f_c00435{bottom:450.266667pt;}
.y7e_c00435{bottom:451.026667pt;}
.y7d_c00435{bottom:452.373333pt;}
.y78_c00435{bottom:469.306667pt;}
.y77_c00435{bottom:470.066667pt;}
.y7b_c00435{bottom:470.266667pt;}
.y76_c00435{bottom:471.026667pt;}
.y79_c00435{bottom:471.973333pt;}
.y7a_c00435{bottom:472.933333pt;}
.y74_c00435{bottom:486.640000pt;}
.y75_c00435{bottom:487.600000pt;}
.y73_c00435{bottom:488.360000pt;}
.y72_c00435{bottom:508.360000pt;}
.y70_c00435{bottom:509.106667pt;}
.y71_c00435{bottom:510.066667pt;}
.y6c_c00435{bottom:537.693333pt;}
.y6d_c00435{bottom:539.773333pt;}
.y6f_c00435{bottom:540.560000pt;}
.y6e_c00435{bottom:541.306667pt;}
.y6b_c00435{bottom:541.693333pt;}
.y68_c00435{bottom:556.160000pt;}
.y69_c00435{bottom:557.106667pt;}
.y6a_c00435{bottom:557.893333pt;}
.y67_c00435{bottom:559.026667pt;}
.y66_c00435{bottom:572.360000pt;}
.y62_c00435{bottom:574.440000pt;}
.y63_c00435{bottom:575.226667pt;}
.y64_c00435{bottom:575.973333pt;}
.y61_c00435{bottom:576.360000pt;}
.y65_c00435{bottom:577.306667pt;}
.y5b_c00435{bottom:589.693333pt;}
.y5c_c00435{bottom:591.773333pt;}
.y60_c00435{bottom:592.560000pt;}
.y5e_c00435{bottom:593.306667pt;}
.y5d_c00435{bottom:593.693333pt;}
.y5f_c00435{bottom:594.640000pt;}
.y58_c00435{bottom:607.973333pt;}
.y57_c00435{bottom:609.106667pt;}
.y56_c00435{bottom:611.026667pt;}
.y59_c00435{bottom:611.226667pt;}
.y5a_c00435{bottom:611.973333pt;}
.y55_c00435{bottom:625.693333pt;}
.y54_c00435{bottom:626.440000pt;}
.y53_c00435{bottom:627.973333pt;}
.y52_c00435{bottom:628.360000pt;}
.y50_c00435{bottom:643.773333pt;}
.y51_c00435{bottom:644.733333pt;}
.y4f_c00435{bottom:645.693333pt;}
.y4e_c00435{bottom:662.440000pt;}
.y4d_c00435{bottom:663.026667pt;}
.y4b_c00435{bottom:679.773333pt;}
.y4a_c00435{bottom:680.560000pt;}
.y49_c00435{bottom:680.733333pt;}
.y4c_c00435{bottom:681.306667pt;}
.y48_c00435{bottom:681.693333pt;}
.y45_c00435{bottom:695.026667pt;}
.y44_c00435{bottom:697.106667pt;}
.y47_c00435{bottom:697.893333pt;}
.y46_c00435{bottom:698.066667pt;}
.y43_c00435{bottom:699.026667pt;}
.y3f_c00435{bottom:712.360000pt;}
.y42_c00435{bottom:713.106667pt;}
.y41_c00435{bottom:714.440000pt;}
.y3d_c00435{bottom:715.026667pt;}
.y40_c00435{bottom:715.226667pt;}
.y3e_c00435{bottom:716.360000pt;}
.y3b_c00435{bottom:731.773333pt;}
.y3a_c00435{bottom:732.733333pt;}
.y39_c00435{bottom:733.693333pt;}
.y3c_c00435{bottom:733.893333pt;}
.y37_c00435{bottom:749.106667pt;}
.y35_c00435{bottom:750.066667pt;}
.y34_c00435{bottom:751.026667pt;}
.y36_c00435{bottom:751.226667pt;}
.y38_c00435{bottom:751.973333pt;}
.y31_c00435{bottom:765.693333pt;}
.y33_c00435{bottom:766.440000pt;}
.y32_c00435{bottom:767.773333pt;}
.y2f_c00435{bottom:768.360000pt;}
.y30_c00435{bottom:768.560000pt;}
.y2d_c00435{bottom:783.026667pt;}
.y2b_c00435{bottom:783.773333pt;}
.y2e_c00435{bottom:783.973333pt;}
.y2c_c00435{bottom:784.733333pt;}
.y2a_c00435{bottom:785.693333pt;}
.y28_c00435{bottom:800.360000pt;}
.y25_c00435{bottom:802.440000pt;}
.y29_c00435{bottom:803.226667pt;}
.y27_c00435{bottom:803.973333pt;}
.y24_c00435{bottom:804.360000pt;}
.y26_c00435{bottom:805.306667pt;}
.y20_c00435{bottom:819.026667pt;}
.y23_c00435{bottom:819.773333pt;}
.y22_c00435{bottom:820.560000pt;}
.y21_c00435{bottom:821.306667pt;}
.y1f_c00435{bottom:821.693333pt;}
.y1d_c00435{bottom:836.360000pt;}
.y1c_c00435{bottom:837.106667pt;}
.y1e_c00435{bottom:838.266667pt;}
.y1b_c00435{bottom:839.026667pt;}
.y18_c00435{bottom:854.440000pt;}
.y1a_c00435{bottom:855.400000pt;}
.y19_c00435{bottom:856.360000pt;}
.y17_c00435{bottom:870.640000pt;}
.y13_c00435{bottom:871.773333pt;}
.y16_c00435{bottom:872.733333pt;}
.y14_c00435{bottom:873.693333pt;}
.y15_c00435{bottom:874.640000pt;}
.y12_c00435{bottom:889.106667pt;}
.y11_c00435{bottom:890.066667pt;}
.yf_c00435{bottom:891.026667pt;}
.y10_c00435{bottom:891.973333pt;}
.yb_c00435{bottom:906.440000pt;}
.ye_c00435{bottom:907.226667pt;}
.yd_c00435{bottom:907.973333pt;}
.yc_c00435{bottom:908.360000pt;}
.ya_c00435{bottom:923.026667pt;}
.y9_c00435{bottom:923.773333pt;}
.y8_c00435{bottom:925.693333pt;}
.y7_c00435{bottom:925.893333pt;}
.y6_c00435{bottom:940.360000pt;}
.y4_c00435{bottom:941.106667pt;}
.y3_c00435{bottom:943.026667pt;}
.y5_c00435{bottom:943.973333pt;}
.y1_c00435{bottom:975.773333pt;}
.y2_c00435{bottom:976.933333pt;}
.h9_c00435{height:3.739141pt;}
.ha_c00435{height:14.890964pt;}
.h5_c00435{height:20.466875pt;}
.h2_c00435{height:22.303646pt;}
.h4_c00435{height:27.879557pt;}
.h3_c00435{height:31.618698pt;}
.h7_c00435{height:31.666224pt;}
.h6_c00435{height:35.357839pt;}
.h1_c00435{height:39.031380pt;}
.h8_c00435{height:42.770521pt;}
.h0_c00435{height:1186.666667pt;}
.w0_c00435{width:782.666667pt;}
.x0_c00435{left:0.000000pt;}
.xed_c00435{left:132.960000pt;}
.xc1_c00435{left:134.666667pt;}
.x44_c00435{left:135.626667pt;}
.x1_c00435{left:137.333333pt;}
.xf1_c00435{left:146.666667pt;}
.xcd_c00435{left:148.000000pt;}
.xbd_c00435{left:149.333333pt;}
.x3_c00435{left:150.666667pt;}
.x69_c00435{left:152.960000pt;}
.x97_c00435{left:154.666667pt;}
.x73_c00435{left:160.373333pt;}
.x60_c00435{left:162.666667pt;}
.xc2_c00435{left:168.000000pt;}
.x7b_c00435{left:168.960000pt;}
.x6a_c00435{left:170.293333pt;}
.x4d_c00435{left:172.000000pt;}
.x10_c00435{left:174.666667pt;}
.xa1_c00435{left:176.000000pt;}
.xfc_c00435{left:177.333333pt;}
.x4_c00435{left:179.040000pt;}
.x8b_c00435{left:180.960000pt;}
.x99_c00435{left:183.626667pt;}
.x92_c00435{left:185.333333pt;}
.x2a_c00435{left:187.626667pt;}
.x11_c00435{left:189.706667pt;}
.x45_c00435{left:191.040000pt;}
.x85_c00435{left:192.373333pt;}
.xee_c00435{left:193.706667pt;}
.xf6_c00435{left:194.666667pt;}
.x1f_c00435{left:195.626667pt;}
.xfd_c00435{left:198.666667pt;}
.x53_c00435{left:200.373333pt;}
.xb3_c00435{left:201.333333pt;}
.xa2_c00435{left:204.000000pt;}
.x98_c00435{left:205.333333pt;}
.x5_c00435{left:208.000000pt;}
.xc3_c00435{left:211.040000pt;}
.x8c_c00435{left:212.373333pt;}
.x12_c00435{left:213.706667pt;}
.x4e_c00435{left:215.626667pt;}
.x31_c00435{left:217.333333pt;}
.x7c_c00435{left:219.040000pt;}
.xd5_c00435{left:221.333333pt;}
.x3a_c00435{left:224.000000pt;}
.xf9_c00435{left:225.333333pt;}
.x61_c00435{left:226.293333pt;}
.x54_c00435{left:228.373333pt;}
.xdf_c00435{left:229.333333pt;}
.xa6_c00435{left:230.293333pt;}
.xda_c00435{left:232.000000pt;}
.xc4_c00435{left:233.706667pt;}
.x46_c00435{left:235.626667pt;}
.x20_c00435{left:237.333333pt;}
.xe3_c00435{left:239.626667pt;}
.xad_c00435{left:241.333333pt;}
.x74_c00435{left:244.000000pt;}
.x3b_c00435{left:245.706667pt;}
.xb4_c00435{left:246.666667pt;}
.xce_c00435{left:249.333333pt;}
.x9a_c00435{left:250.666667pt;}
.x86_c00435{left:252.000000pt;}
.x47_c00435{left:255.040000pt;}
.x2b_c00435{left:256.960000pt;}
.x13_c00435{left:258.293333pt;}
.x7d_c00435{left:260.000000pt;}
.x75_c00435{left:261.333333pt;}
.x62_c00435{left:264.000000pt;}
.xd6_c00435{left:266.666667pt;}
.x6_c00435{left:267.626667pt;}
.xb5_c00435{left:270.666667pt;}
.x3c_c00435{left:272.373333pt;}
.x32_c00435{left:273.333333pt;}
.xf7_c00435{left:274.293333pt;}
.xbe_c00435{left:278.666667pt;}
.x7_c00435{left:283.626667pt;}
.x14_c00435{left:286.466667pt;}
.xb6_c00435{left:287.626667pt;}
.xfe_c00435{left:294.293333pt;}
.x76_c00435{left:300.000000pt;}
.x8_c00435{left:301.333333pt;}
.x2c_c00435{left:302.666667pt;}
.xe0_c00435{left:304.373333pt;}
.xe4_c00435{left:305.333333pt;}
.xb7_c00435{left:307.040000pt;}
.x87_c00435{left:308.000000pt;}
.xa7_c00435{left:309.333333pt;}
.x6b_c00435{left:310.666667pt;}
.x7e_c00435{left:312.000000pt;}
.x55_c00435{left:313.333333pt;}
.x8d_c00435{left:314.666667pt;}
.x48_c00435{left:317.333333pt;}
.xef_c00435{left:322.293333pt;}
.xe5_c00435{left:323.626667pt;}
.x9b_c00435{left:325.333333pt;}
.x7f_c00435{left:327.626667pt;}
.x15_c00435{left:329.706667pt;}
.xa3_c00435{left:330.666667pt;}
.xcf_c00435{left:332.000000pt;}
.x3d_c00435{left:333.706667pt;}
.xf2_c00435{left:334.666667pt;}
.x33_c00435{left:336.000000pt;}
.x4f_c00435{left:337.333333pt;}
.xf8_c00435{left:340.373333pt;}
.xa8_c00435{left:343.040000pt;}
.xbf_c00435{left:344.000000pt;}
.x80_c00435{left:344.960000pt;}
.x56_c00435{left:346.666667pt;}
.x77_c00435{left:347.626667pt;}
.x9_c00435{left:352.000000pt;}
.xae_c00435{left:354.666667pt;}
.x6c_c00435{left:355.626667pt;}
.xd7_c00435{left:357.706667pt;}
.xc9_c00435{left:359.040000pt;}
.x49_c00435{left:360.000000pt;}
.x21_c00435{left:360.960000pt;}
.xb8_c00435{left:363.040000pt;}
.x2_c00435{left:364.000000pt;}
.xea_c00435{left:364.960000pt;}
.xf0_c00435{left:367.040000pt;}
.xdb_c00435{left:368.000000pt;}
.x16_c00435{left:369.333333pt;}
.x57_c00435{left:370.666667pt;}
.xd2_c00435{left:371.626667pt;}
.x6d_c00435{left:373.333333pt;}
.xd0_c00435{left:375.040000pt;}
.x50_c00435{left:376.000000pt;}
.x9c_c00435{left:377.333333pt;}
.x22_c00435{left:379.040000pt;}
.xf3_c00435{left:380.000000pt;}
.x63_c00435{left:381.333333pt;}
.x8e_c00435{left:384.000000pt;}
.x34_c00435{left:385.333333pt;}
.xb9_c00435{left:386.293333pt;}
.x17_c00435{left:388.373333pt;}
.xa9_c00435{left:392.373333pt;}
.x3e_c00435{left:394.293333pt;}
.xfa_c00435{left:397.333333pt;}
.x88_c00435{left:398.666667pt;}
.xc5_c00435{left:400.373333pt;}
.xf4_c00435{left:401.706667pt;}
.xd8_c00435{left:404.000000pt;}
.x18_c00435{left:406.666667pt;}
.x78_c00435{left:407.626667pt;}
.x58_c00435{left:409.333333pt;}
.xa_c00435{left:410.666667pt;}
.xdc_c00435{left:413.333333pt;}
.x23_c00435{left:414.293333pt;}
.x3f_c00435{left:416.000000pt;}
.xaa_c00435{left:417.333333pt;}
.x8f_c00435{left:418.293333pt;}
.xba_c00435{left:419.626667pt;}
.xe6_c00435{left:422.666667pt;}
.xcb_c00435{left:423.626667pt;}
.x9d_c00435{left:425.333333pt;}
.x6e_c00435{left:426.666667pt;}
.x93_c00435{left:427.626667pt;}
.x81_c00435{left:429.706667pt;}
.xdd_c00435{left:432.373333pt;}
.x40_c00435{left:433.333333pt;}
.x89_c00435{left:435.626667pt;}
.xeb_c00435{left:437.333333pt;}
.x24_c00435{left:438.666667pt;}
.x59_c00435{left:439.626667pt;}
.x9e_c00435{left:441.333333pt;}
.xcc_c00435{left:443.426667pt;}
.x6f_c00435{left:444.960000pt;}
.xbb_c00435{left:446.293333pt;}
.x2d_c00435{left:448.960000pt;}
.xe1_c00435{left:450.666667pt;}
.x35_c00435{left:452.000000pt;}
.x51_c00435{left:453.333333pt;}
.xab_c00435{left:457.333333pt;}
.xd1_c00435{left:458.666667pt;}
.x79_c00435{left:460.000000pt;}
.x70_c00435{left:462.666667pt;}
.xc6_c00435{left:464.000000pt;}
.x82_c00435{left:465.333333pt;}
.xb_c00435{left:468.000000pt;}
.x4a_c00435{left:471.040000pt;}
.x2e_c00435{left:472.573333pt;}
.xca_c00435{left:473.706667pt;}
.xd4_c00435{left:475.040000pt;}
.x19_c00435{left:477.706667pt;}
.xc7_c00435{left:480.000000pt;}
.xac_c00435{left:481.333333pt;}
.xe7_c00435{left:484.000000pt;}
.x5a_c00435{left:484.960000pt;}
.x9f_c00435{left:488.000000pt;}
.xc_c00435{left:489.333333pt;}
.x41_c00435{left:490.666667pt;}
.x25_c00435{left:493.706667pt;}
.xc0_c00435{left:494.666667pt;}
.x90_c00435{left:496.000000pt;}
.xc8_c00435{left:497.333333pt;}
.x64_c00435{left:498.293333pt;}
.xd3_c00435{left:500.760000pt;}
.x5b_c00435{left:506.666667pt;}
.xe2_c00435{left:507.626667pt;}
.x1a_c00435{left:509.333333pt;}
.xaf_c00435{left:510.666667pt;}
.x52_c00435{left:511.626667pt;}
.x4b_c00435{left:513.333333pt;}
.xfb_c00435{left:514.666667pt;}
.x26_c00435{left:516.000000pt;}
.xd9_c00435{left:518.293333pt;}
.x36_c00435{left:521.333333pt;}
.xbc_c00435{left:522.293333pt;}
.x83_c00435{left:525.333333pt;}
.xb0_c00435{left:528.000000pt;}
.x1b_c00435{left:529.333333pt;}
.x42_c00435{left:530.666667pt;}
.x2f_c00435{left:532.000000pt;}
.xa0_c00435{left:533.333333pt;}
.x84_c00435{left:536.000000pt;}
.xde_c00435{left:544.000000pt;}
.x5c_c00435{left:544.960000pt;}
.xd_c00435{left:546.293333pt;}
.x1c_c00435{left:549.333333pt;}
.x4c_c00435{left:551.626667pt;}
.x43_c00435{left:552.760000pt;}
.x65_c00435{left:555.626667pt;}
.xb1_c00435{left:558.666667pt;}
.x94_c00435{left:560.000000pt;}
.x5d_c00435{left:565.333333pt;}
.x1d_c00435{left:568.960000pt;}
.x37_c00435{left:570.293333pt;}
.x71_c00435{left:572.373333pt;}
.x66_c00435{left:575.626667pt;}
.xb2_c00435{left:577.706667pt;}
.xa4_c00435{left:579.626667pt;}
.xec_c00435{left:582.666667pt;}
.x27_c00435{left:583.626667pt;}
.xe8_c00435{left:585.333333pt;}
.x8a_c00435{left:586.666667pt;}
.xf5_c00435{left:592.373333pt;}
.x5e_c00435{left:595.040000pt;}
.x72_c00435{left:596.000000pt;}
.x95_c00435{left:597.706667pt;}
.x28_c00435{left:600.373333pt;}
.x38_c00435{left:601.333333pt;}
.xe_c00435{left:602.666667pt;}
.x67_c00435{left:604.960000pt;}
.x91_c00435{left:609.333333pt;}
.x7a_c00435{left:614.293333pt;}
.x30_c00435{left:615.800000pt;}
.xe9_c00435{left:617.706667pt;}
.xf_c00435{left:620.960000pt;}
.x68_c00435{left:622.666667pt;}
.x29_c00435{left:624.000000pt;}
.xa5_c00435{left:626.293333pt;}
.x1e_c00435{left:631.040000pt;}
.x39_c00435{left:635.626667pt;}
.x96_c00435{left:637.333333pt;}
.x5f_c00435{left:638.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_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_6e9f92382fb19034da7b188d.woff2')format("woff");}.ff1_c00436{font-family:ff1_c00436;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.med_c00436{transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);}
.m82_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);}
.m80_c00436{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.mb3_c00436{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m6a_c00436{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m4c_c00436{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.mc7_c00436{transform:matrix(0.367788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367788,0.000000,0.000000,0.250000,0,0);}
.m50_c00436{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mb4_c00436{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mbd_c00436{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.mb7_c00436{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mc0_c00436{transform:matrix(0.378479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378479,0.000000,0.000000,0.250000,0,0);}
.m42_c00436{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m4f_c00436{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m97_c00436{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m8d_c00436{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m76_c00436{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m7b_c00436{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m7e_c00436{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m17_c00436{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.ma9_c00436{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m5f_c00436{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m7a_c00436{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.ma2_c00436{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.mc_c00436{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m47_c00436{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.mc4_c00436{transform:matrix(0.398237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398237,0.000000,0.000000,0.250000,0,0);}
.maa_c00436{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m67_c00436{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_c00436{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m11_c00436{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.mf1_c00436{transform:matrix(0.403676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403676,0.000000,0.000000,0.250000,0,0);}
.m2c_c00436{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m85_c00436{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m75_c00436{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.mcc_c00436{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m9c_c00436{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m6d_c00436{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m3d_c00436{transform:matrix(0.412193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412193,0.000000,0.000000,0.250000,0,0);}
.m1c_c00436{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m79_c00436{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m7d_c00436{transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);}
.me1_c00436{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.m7_c00436{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mac_c00436{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m3e_c00436{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m23_c00436{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m38_c00436{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mc5_c00436{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m39_c00436{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m72_c00436{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m70_c00436{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mca_c00436{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m9e_c00436{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m5a_c00436{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m68_c00436{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m32_c00436{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.ma5_c00436{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m1e_c00436{transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);}
.m5d_c00436{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.mbf_c00436{transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);}
.m4b_c00436{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.ma8_c00436{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m3a_c00436{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.m92_c00436{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m54_c00436{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mab_c00436{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m8a_c00436{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.ma_c00436{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m7f_c00436{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m5e_c00436{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m44_c00436{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.mcb_c00436{transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);}
.m3f_c00436{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m84_c00436{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m66_c00436{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.me3_c00436{transform:matrix(0.444853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444853,0.000000,0.000000,0.250000,0,0);}
.ma3_c00436{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m52_c00436{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.mae_c00436{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.mc8_c00436{transform:matrix(0.455929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455929,0.000000,0.000000,0.250000,0,0);}
.m90_c00436{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mcd_c00436{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mb_c00436{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.mc6_c00436{transform:matrix(0.459251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459251,0.000000,0.000000,0.250000,0,0);}
.m74_c00436{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m22_c00436{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.ma7_c00436{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.me2_c00436{transform:matrix(0.461538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461538,0.000000,0.000000,0.250000,0,0);}
.m5c_c00436{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m9_c00436{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m62_c00436{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.md2_c00436{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.mdd_c00436{transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);}
.m6b_c00436{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.mdc_c00436{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.me7_c00436{transform:matrix(0.472794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472794,0.000000,0.000000,0.250000,0,0);}
.m4_c00436{transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);}
.m81_c00436{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m46_c00436{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.md1_c00436{transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);}
.m65_c00436{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m8_c00436{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.m29_c00436{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m55_c00436{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.md7_c00436{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m33_c00436{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m30_c00436{transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);}
.ma6_c00436{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m1_c00436{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mb2_c00436{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mef_c00436{transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);}
.me0_c00436{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.m61_c00436{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m15_c00436{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.mf_c00436{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_c00436{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m1a_c00436{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m86_c00436{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m2f_c00436{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m88_c00436{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m96_c00436{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m59_c00436{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.me9_c00436{transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);}
.m5_c00436{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mc1_c00436{transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);}
.m63_c00436{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m9d_c00436{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m2a_c00436{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m6_c00436{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m45_c00436{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m9a_c00436{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mbe_c00436{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m8b_c00436{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m1f_c00436{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m13_c00436{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m89_c00436{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m41_c00436{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m10_c00436{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.md6_c00436{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.mc3_c00436{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m3c_c00436{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m83_c00436{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m34_c00436{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m8f_c00436{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m1d_c00436{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.md5_c00436{transform:matrix(0.537660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537660,0.000000,0.000000,0.250000,0,0);}
.m1b_c00436{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mbc_c00436{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m16_c00436{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m27_c00436{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m25_c00436{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m9b_c00436{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m5b_c00436{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m60_c00436{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m4a_c00436{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mec_c00436{transform:matrix(0.544872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544872,0.000000,0.000000,0.250000,0,0);}
.m93_c00436{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m40_c00436{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m51_c00436{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m57_c00436{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m19_c00436{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.md0_c00436{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m6c_c00436{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m87_c00436{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m64_c00436{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m6f_c00436{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.mb5_c00436{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m37_c00436{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m24_c00436{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m26_c00436{transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);}
.m69_c00436{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m2_c00436{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m3b_c00436{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mad_c00436{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m9f_c00436{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);}
.mb0_c00436{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m95_c00436{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m18_c00436{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m6e_c00436{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.mdb_c00436{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m7c_c00436{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m2d_c00436{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.ma0_c00436{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m2e_c00436{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.me_c00436{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m78_c00436{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m53_c00436{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m43_c00436{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m35_c00436{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m56_c00436{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m8c_c00436{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m58_c00436{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m21_c00436{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m3_c00436{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m36_c00436{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m4e_c00436{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m77_c00436{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.mb8_c00436{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m94_c00436{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m48_c00436{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mc9_c00436{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.md_c00436{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m12_c00436{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.mba_c00436{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m28_c00436{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.mda_c00436{transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);}
.m31_c00436{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.m91_c00436{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.mb9_c00436{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m4d_c00436{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m98_c00436{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m20_c00436{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m2b_c00436{transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);}
.me8_c00436{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.me6_c00436{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.m0_c00436{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.md3_c00436{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.mc2_c00436{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.mee_c00436{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.mbb_c00436{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);}
.mdf_c00436{transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);}
.maf_c00436{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.me5_c00436{transform:matrix(0.721366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721366,0.000000,0.000000,0.250000,0,0);}
.mb1_c00436{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m14_c00436{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mcf_c00436{transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);}
.meb_c00436{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.me4_c00436{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.ma4_c00436{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mf0_c00436{transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);}
.m8e_c00436{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mea_c00436{transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);}
.mde_c00436{transform:matrix(0.779736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779736,0.000000,0.000000,0.250000,0,0);}
.m73_c00436{transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);}
.ma1_c00436{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.md9_c00436{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.md4_c00436{transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);}
.m99_c00436{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.md8_c00436{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mce_c00436{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m49_c00436{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v2_c00436{vertical-align:-6.000000px;}
.v0_c00436{vertical-align:0.000000px;}
.v1_c00436{vertical-align:12.000000px;}
.ls1_c00436{letter-spacing:0.000000px;}
.ls0_c00436{letter-spacing:97.591680px;}
.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;}
}
.ws2_c00436{word-spacing:-16.889280px;}
.ws1_c00436{word-spacing:-6.184625px;}
.ws0_c00436{word-spacing:-6.058950px;}
.ws3_c00436{word-spacing:-3.584672px;}
.ws8_c00436{word-spacing:0.000000px;}
.ws7_c00436{word-spacing:36.899244px;}
.ws4_c00436{word-spacing:52.478400px;}
.ws6_c00436{word-spacing:55.942961px;}
.ws5_c00436{word-spacing:59.332701px;}
._0_c00436{width:7.052040px;}
.fc0_c00436{color:transparent;}
.fs6_c00436{font-size:3.420000px;}
.fs9_c00436{font-size:11.880000px;}
.fs8_c00436{font-size:13.620000px;}
.fs0_c00436{font-size:18.720000px;}
.fs7_c00436{font-size:20.400000px;}
.fs4_c00436{font-size:25.500000px;}
.fs1_c00436{font-size:28.920000px;}
.fs2_c00436{font-size:32.340000px;}
.fs3_c00436{font-size:35.700000px;}
.fs5_c00436{font-size:39.120000px;}
.y0_c00436{bottom:0.000000px;}
.ybe_c00436{bottom:253.050000px;}
.yc0_c00436{bottom:256.695000px;}
.ybd_c00436{bottom:257.130000px;}
.ybc_c00436{bottom:258.195000px;}
.ybf_c00436{bottom:258.420000px;}
.yb9_c00436{bottom:270.630000px;}
.yba_c00436{bottom:271.695000px;}
.ybb_c00436{bottom:271.920000px;}
.yb5_c00436{bottom:284.130000px;}
.yb8_c00436{bottom:285.195000px;}
.yb4_c00436{bottom:285.630000px;}
.yb7_c00436{bottom:286.470000px;}
.yb6_c00436{bottom:286.920000px;}
.yb3_c00436{bottom:297.630000px;}
.yb0_c00436{bottom:298.050000px;}
.yb2_c00436{bottom:298.275000px;}
.yaf_c00436{bottom:298.695000px;}
.yb1_c00436{bottom:300.195000px;}
.yae_c00436{bottom:311.130000px;}
.yab_c00436{bottom:311.550000px;}
.yad_c00436{bottom:312.195000px;}
.yac_c00436{bottom:313.695000px;}
.yaa_c00436{bottom:324.630000px;}
.ya9_c00436{bottom:326.130000px;}
.ya8_c00436{bottom:338.130000px;}
.ya7_c00436{bottom:339.630000px;}
.ya6_c00436{bottom:340.695000px;}
.ya5_c00436{bottom:352.920000px;}
.ya3_c00436{bottom:353.130000px;}
.ya4_c00436{bottom:354.195000px;}
.ya2_c00436{bottom:365.130000px;}
.ya1_c00436{bottom:366.630000px;}
.ya0_c00436{bottom:368.130000px;}
.y9f_c00436{bottom:378.630000px;}
.y9e_c00436{bottom:379.695000px;}
.y9d_c00436{bottom:380.130000px;}
.y9b_c00436{bottom:381.630000px;}
.y9c_c00436{bottom:382.695000px;}
.y99_c00436{bottom:393.630000px;}
.y9a_c00436{bottom:394.920000px;}
.y98_c00436{bottom:395.130000px;}
.y97_c00436{bottom:396.195000px;}
.y95_c00436{bottom:407.130000px;}
.y96_c00436{bottom:408.420000px;}
.y94_c00436{bottom:408.630000px;}
.y93_c00436{bottom:409.695000px;}
.y91_c00436{bottom:420.630000px;}
.y92_c00436{bottom:421.920000px;}
.y90_c00436{bottom:422.130000px;}
.y8e_c00436{bottom:435.630000px;}
.y8d_c00436{bottom:436.695000px;}
.y8f_c00436{bottom:436.920000px;}
.y8c_c00436{bottom:454.920000px;}
.y8b_c00436{bottom:455.130000px;}
.y8a_c00436{bottom:456.195000px;}
.y89_c00436{bottom:467.130000px;}
.y87_c00436{bottom:468.630000px;}
.y88_c00436{bottom:469.695000px;}
.y86_c00436{bottom:480.630000px;}
.y85_c00436{bottom:481.695000px;}
.y83_c00436{bottom:482.130000px;}
.y84_c00436{bottom:483.195000px;}
.y80_c00436{bottom:500.325000px;}
.y7f_c00436{bottom:501.405000px;}
.y81_c00436{bottom:502.470000px;}
.y82_c00436{bottom:503.550000px;}
.y7e_c00436{bottom:515.325000px;}
.y7d_c00436{bottom:517.470000px;}
.y7c_c00436{bottom:518.550000px;}
.y7b_c00436{bottom:539.550000px;}
.y79_c00436{bottom:568.245000px;}
.y7a_c00436{bottom:568.470000px;}
.y78_c00436{bottom:570.405000px;}
.y77_c00436{bottom:587.745000px;}
.y73_c00436{bottom:589.470000px;}
.y76_c00436{bottom:589.905000px;}
.y75_c00436{bottom:590.130000px;}
.y74_c00436{bottom:590.325000px;}
.y72_c00436{bottom:591.405000px;}
.y70_c00436{bottom:607.245000px;}
.y71_c00436{bottom:608.745000px;}
.y6e_c00436{bottom:610.905000px;}
.y6f_c00436{bottom:610.920000px;}
.y6d_c00436{bottom:625.905000px;}
.y6a_c00436{bottom:628.245000px;}
.y69_c00436{bottom:629.130000px;}
.y68_c00436{bottom:630.405000px;}
.y6c_c00436{bottom:630.630000px;}
.y6b_c00436{bottom:631.470000px;}
.y65_c00436{bottom:646.470000px;}
.y61_c00436{bottom:646.905000px;}
.y62_c00436{bottom:647.745000px;}
.y64_c00436{bottom:648.825000px;}
.y66_c00436{bottom:649.050000px;}
.y63_c00436{bottom:649.905000px;}
.y67_c00436{bottom:650.130000px;}
.y5c_c00436{bottom:667.245000px;}
.y5f_c00436{bottom:668.745000px;}
.y5a_c00436{bottom:669.405000px;}
.y5d_c00436{bottom:669.630000px;}
.y60_c00436{bottom:669.825000px;}
.y5b_c00436{bottom:670.470000px;}
.y5e_c00436{bottom:670.905000px;}
.y57_c00436{bottom:688.245000px;}
.y59_c00436{bottom:689.130000px;}
.y56_c00436{bottom:689.970000px;}
.y58_c00436{bottom:690.405000px;}
.y54_c00436{bottom:707.745000px;}
.y53_c00436{bottom:708.405000px;}
.y55_c00436{bottom:708.630000px;}
.y52_c00436{bottom:709.470000px;}
.y51_c00436{bottom:709.905000px;}
.y50_c00436{bottom:727.245000px;}
.y4e_c00436{bottom:728.970000px;}
.y4d_c00436{bottom:729.405000px;}
.y4f_c00436{bottom:730.470000px;}
.y4c_c00436{bottom:745.245000px;}
.y49_c00436{bottom:745.680000px;}
.y4b_c00436{bottom:746.745000px;}
.y4a_c00436{bottom:747.825000px;}
.y48_c00436{bottom:748.905000px;}
.y47_c00436{bottom:765.405000px;}
.y46_c00436{bottom:766.245000px;}
.y45_c00436{bottom:768.405000px;}
.y41_c00436{bottom:784.905000px;}
.y40_c00436{bottom:785.745000px;}
.y44_c00436{bottom:785.970000px;}
.y43_c00436{bottom:786.825000px;}
.y3f_c00436{bottom:787.905000px;}
.y42_c00436{bottom:788.130000px;}
.y3e_c00436{bottom:805.245000px;}
.y3c_c00436{bottom:807.405000px;}
.y3d_c00436{bottom:808.470000px;}
.y3b_c00436{bottom:823.905000px;}
.y39_c00436{bottom:824.745000px;}
.y3a_c00436{bottom:826.905000px;}
.y36_c00436{bottom:845.745000px;}
.y38_c00436{bottom:846.825000px;}
.y37_c00436{bottom:847.905000px;}
.y32_c00436{bottom:863.745000px;}
.y34_c00436{bottom:863.970000px;}
.y35_c00436{bottom:865.245000px;}
.y33_c00436{bottom:865.905000px;}
.y2d_c00436{bottom:882.405000px;}
.y2f_c00436{bottom:883.470000px;}
.y30_c00436{bottom:883.905000px;}
.y31_c00436{bottom:884.745000px;}
.y2c_c00436{bottom:886.905000px;}
.y2e_c00436{bottom:887.970000px;}
.y2b_c00436{bottom:901.905000px;}
.y29_c00436{bottom:902.970000px;}
.y2a_c00436{bottom:903.405000px;}
.y28_c00436{bottom:903.825000px;}
.y27_c00436{bottom:904.245000px;}
.y26_c00436{bottom:906.405000px;}
.y25_c00436{bottom:922.470000px;}
.y22_c00436{bottom:923.325000px;}
.y20_c00436{bottom:923.745000px;}
.y21_c00436{bottom:925.905000px;}
.y24_c00436{bottom:925.920000px;}
.y23_c00436{bottom:926.970000px;}
.y1c_c00436{bottom:942.180000px;}
.y1d_c00436{bottom:943.245000px;}
.y1f_c00436{bottom:944.970000px;}
.y1e_c00436{bottom:945.405000px;}
.y1a_c00436{bottom:962.745000px;}
.y1b_c00436{bottom:963.825000px;}
.y19_c00436{bottom:964.905000px;}
.y18_c00436{bottom:982.245000px;}
.y16_c00436{bottom:983.325000px;}
.y15_c00436{bottom:984.405000px;}
.y17_c00436{bottom:985.470000px;}
.y12_c00436{bottom:1001.745000px;}
.y14_c00436{bottom:1002.825000px;}
.y11_c00436{bottom:1003.905000px;}
.y13_c00436{bottom:1004.970000px;}
.yf_c00436{bottom:1020.405000px;}
.yd_c00436{bottom:1021.245000px;}
.ye_c00436{bottom:1023.405000px;}
.y10_c00436{bottom:1024.470000px;}
.y9_c00436{bottom:1039.905000px;}
.y7_c00436{bottom:1040.745000px;}
.yc_c00436{bottom:1042.245000px;}
.y6_c00436{bottom:1042.905000px;}
.ya_c00436{bottom:1043.130000px;}
.y8_c00436{bottom:1043.970000px;}
.yb_c00436{bottom:1044.405000px;}
.y5_c00436{bottom:1061.745000px;}
.y4_c00436{bottom:1062.825000px;}
.y3_c00436{bottom:1063.905000px;}
.y2_c00436{bottom:1099.905000px;}
.y1_c00436{bottom:1101.630000px;}
.h7_c00436{height:4.206533px;}
.hb_c00436{height:14.612168px;}
.ha_c00436{height:16.752334px;}
.h1_c00436{height:23.025234px;}
.h9_c00436{height:25.091602px;}
.h5_c00436{height:31.364502px;}
.h2_c00436{height:35.571035px;}
.h3_c00436{height:39.777568px;}
.h4_c00436{height:43.910303px;}
.h8_c00436{height:47.571035px;}
.h6_c00436{height:48.116836px;}
.h0_c00436{height:1335.000000px;}
.w0_c00436{width:880.500000px;}
.x0_c00436{left:0.000000px;}
.x3_c00436{left:151.500000px;}
.x69_c00436{left:153.420000px;}
.xbc_c00436{left:154.500000px;}
.x6f_c00436{left:169.080000px;}
.xe_c00436{left:171.420000px;}
.x59_c00436{left:180.000000px;}
.x3c_c00436{left:181.920000px;}
.x8a_c00436{left:183.000000px;}
.xbd_c00436{left:184.500000px;}
.x4_c00436{left:190.500000px;}
.x28_c00436{left:191.580000px;}
.xc5_c00436{left:193.500000px;}
.x1d_c00436{left:198.000000px;}
.x70_c00436{left:199.500000px;}
.x6a_c00436{left:200.580000px;}
.xa4_c00436{left:202.080000px;}
.x5a_c00436{left:205.500000px;}
.xb4_c00436{left:207.000000px;}
.xf_c00436{left:209.580000px;}
.x90_c00436{left:211.920000px;}
.x3d_c00436{left:214.500000px;}
.x6b_c00436{left:217.500000px;}
.x9c_c00436{left:220.080000px;}
.x96_c00436{left:223.500000px;}
.x5_c00436{left:226.500000px;}
.x10_c00436{left:228.420000px;}
.x8b_c00436{left:232.500000px;}
.x81_c00436{left:235.080000px;}
.x64_c00436{left:236.580000px;}
.x29_c00436{left:238.080000px;}
.x5b_c00436{left:240.420000px;}
.xa5_c00436{left:243.000000px;}
.xb5_c00436{left:244.500000px;}
.xcb_c00436{left:247.080000px;}
.x1e_c00436{left:249.000000px;}
.x91_c00436{left:253.920000px;}
.x11_c00436{left:255.420000px;}
.x6c_c00436{left:259.500000px;}
.xbf_c00436{left:260.580000px;}
.x3e_c00436{left:262.500000px;}
.x7a_c00436{left:265.080000px;}
.x71_c00436{left:267.420000px;}
.x5c_c00436{left:272.775000px;}
.x2a_c00436{left:275.580000px;}
.x9d_c00436{left:277.080000px;}
.x33_c00436{left:280.500000px;}
.xb6_c00436{left:282.855000px;}
.x82_c00436{left:285.420000px;}
.xbe_c00436{left:288.420000px;}
.xc0_c00436{left:289.500000px;}
.x6_c00436{left:291.000000px;}
.x12_c00436{left:292.080000px;}
.x92_c00436{left:294.000000px;}
.x65_c00436{left:295.500000px;}
.x3f_c00436{left:296.580000px;}
.xcc_c00436{left:299.580000px;}
.x6d_c00436{left:303.000000px;}
.x1f_c00436{left:305.580000px;}
.x5d_c00436{left:307.080000px;}
.x2b_c00436{left:309.000000px;}
.xd1_c00436{left:312.000000px;}
.x47_c00436{left:313.920000px;}
.x40_c00436{left:315.000000px;}
.x66_c00436{left:316.080000px;}
.x4f_c00436{left:322.080000px;}
.x7_c00436{left:328.080000px;}
.xad_c00436{left:330.000000px;}
.x83_c00436{left:331.500000px;}
.x72_c00436{left:334.500000px;}
.xd7_c00436{left:335.580000px;}
.x8c_c00436{left:337.080000px;}
.x7b_c00436{left:338.580000px;}
.x13_c00436{left:340.920000px;}
.x34_c00436{left:342.000000px;}
.x6e_c00436{left:343.500000px;}
.x20_c00436{left:345.000000px;}
.xa6_c00436{left:346.080000px;}
.x97_c00436{left:347.145000px;}
.x9e_c00436{left:349.080000px;}
.x5e_c00436{left:352.920000px;}
.xd9_c00436{left:354.000000px;}
.xda_c00436{left:356.580000px;}
.x7c_c00436{left:358.920000px;}
.x8_c00436{left:360.420000px;}
.x98_c00436{left:361.500000px;}
.xa7_c00436{left:364.920000px;}
.xcd_c00436{left:366.000000px;}
.xb7_c00436{left:367.920000px;}
.xb3_c00436{left:369.000000px;}
.x67_c00436{left:374.580000px;}
.x41_c00436{left:376.920000px;}
.x2c_c00436{left:378.000000px;}
.x93_c00436{left:379.500000px;}
.xdc_c00436{left:381.000000px;}
.x35_c00436{left:385.500000px;}
.x14_c00436{left:387.420000px;}
.xdd_c00436{left:388.920000px;}
.x73_c00436{left:390.420000px;}
.xdf_c00436{left:393.000000px;}
.x48_c00436{left:394.080000px;}
.xde_c00436{left:397.500000px;}
.x94_c00436{left:399.000000px;}
.x9f_c00436{left:400.500000px;}
.xe0_c00436{left:402.000000px;}
.x21_c00436{left:403.920000px;}
.x1_c00436{left:406.500000px;}
.x5f_c00436{left:411.420000px;}
.xb8_c00436{left:414.000000px;}
.x84_c00436{left:417.000000px;}
.x36_c00436{left:418.080000px;}
.xa0_c00436{left:420.420000px;}
.x7d_c00436{left:422.580000px;}
.x95_c00436{left:426.000000px;}
.x2d_c00436{left:427.500000px;}
.x42_c00436{left:430.920000px;}
.xae_c00436{left:432.000000px;}
.xa8_c00436{left:433.080000px;}
.x49_c00436{left:435.000000px;}
.x37_c00436{left:438.000000px;}
.x15_c00436{left:439.500000px;}
.xcf_c00436{left:441.420000px;}
.x85_c00436{left:444.000000px;}
.xa1_c00436{left:448.500000px;}
.xb9_c00436{left:450.000000px;}
.x50_c00436{left:451.500000px;}
.x9_c00436{left:453.855000px;}
.xd3_c00436{left:456.420000px;}
.xd6_c00436{left:457.500000px;}
.x60_c00436{left:458.580000px;}
.x16_c00436{left:460.080000px;}
.x22_c00436{left:462.000000px;}
.xce_c00436{left:463.080000px;}
.xc1_c00436{left:465.420000px;}
.x51_c00436{left:471.000000px;}
.x74_c00436{left:472.920000px;}
.x2e_c00436{left:474.000000px;}
.xd2_c00436{left:478.500000px;}
.x43_c00436{left:480.420000px;}
.x38_c00436{left:481.500000px;}
.x61_c00436{left:484.080000px;}
.x4a_c00436{left:487.500000px;}
.x8d_c00436{left:489.000000px;}
.xc6_c00436{left:493.080000px;}
.x52_c00436{left:498.420000px;}
.x86_c00436{left:499.920000px;}
.x75_c00436{left:501.000000px;}
.xd4_c00436{left:502.500000px;}
.xa9_c00436{left:504.000000px;}
.xa_c00436{left:505.500000px;}
.x23_c00436{left:507.420000px;}
.xdb_c00436{left:510.000000px;}
.xd8_c00436{left:511.500000px;}
.xc7_c00436{left:512.580000px;}
.xba_c00436{left:516.000000px;}
.xaf_c00436{left:517.920000px;}
.xc2_c00436{left:526.500000px;}
.x2f_c00436{left:528.420000px;}
.x39_c00436{left:530.580000px;}
.x44_c00436{left:532.080000px;}
.x76_c00436{left:535.080000px;}
.x17_c00436{left:540.000000px;}
.x7e_c00436{left:541.500000px;}
.xb_c00436{left:543.000000px;}
.x53_c00436{left:544.500000px;}
.xc3_c00436{left:547.920000px;}
.xd5_c00436{left:552.000000px;}
.x77_c00436{left:555.000000px;}
.xc8_c00436{left:558.420000px;}
.x4b_c00436{left:559.500000px;}
.x30_c00436{left:561.000000px;}
.x68_c00436{left:563.580000px;}
.x54_c00436{left:565.500000px;}
.xd0_c00436{left:566.580000px;}
.x18_c00436{left:570.000000px;}
.xb0_c00436{left:574.080000px;}
.x99_c00436{left:577.500000px;}
.x7f_c00436{left:579.000000px;}
.x3a_c00436{left:580.500000px;}
.x45_c00436{left:582.000000px;}
.x4c_c00436{left:583.500000px;}
.xc9_c00436{left:586.920000px;}
.x8e_c00436{left:592.500000px;}
.x9a_c00436{left:593.580000px;}
.x87_c00436{left:595.500000px;}
.x24_c00436{left:597.420000px;}
.xa2_c00436{left:598.500000px;}
.x31_c00436{left:600.420000px;}
.x78_c00436{left:601.500000px;}
.xc_c00436{left:603.000000px;}
.xaa_c00436{left:604.500000px;}
.x55_c00436{left:607.080000px;}
.x19_c00436{left:619.920000px;}
.x25_c00436{left:627.000000px;}
.xca_c00436{left:628.500000px;}
.x46_c00436{left:633.000000px;}
.x3b_c00436{left:635.580000px;}
.x56_c00436{left:637.500000px;}
.x88_c00436{left:639.420000px;}
.xc4_c00436{left:640.920000px;}
.xb1_c00436{left:643.500000px;}
.x1a_c00436{left:646.500000px;}
.xab_c00436{left:648.000000px;}
.x4d_c00436{left:649.080000px;}
.x80_c00436{left:651.420000px;}
.x62_c00436{left:653.580000px;}
.x32_c00436{left:655.500000px;}
.xd_c00436{left:663.000000px;}
.x79_c00436{left:664.920000px;}
.x9b_c00436{left:666.420000px;}
.x26_c00436{left:669.000000px;}
.x63_c00436{left:670.500000px;}
.xa3_c00436{left:675.420000px;}
.x57_c00436{left:676.500000px;}
.x89_c00436{left:678.420000px;}
.x4e_c00436{left:679.500000px;}
.x8f_c00436{left:685.080000px;}
.x1b_c00436{left:688.080000px;}
.xbb_c00436{left:694.920000px;}
.x58_c00436{left:697.500000px;}
.x2_c00436{left:703.500000px;}
.x1c_c00436{left:706.920000px;}
.xac_c00436{left:710.580000px;}
.x27_c00436{left:715.500000px;}
.xb2_c00436{left:717.000000px;}
@media print{
.v2_c00436{vertical-align:-5.333333pt;}
.v0_c00436{vertical-align:0.000000pt;}
.v1_c00436{vertical-align:10.666667pt;}
.ls1_c00436{letter-spacing:0.000000pt;}
.ls0_c00436{letter-spacing:86.748160pt;}
.ws2_c00436{word-spacing:-15.012693pt;}
.ws1_c00436{word-spacing:-5.497444pt;}
.ws0_c00436{word-spacing:-5.385733pt;}
.ws3_c00436{word-spacing:-3.186375pt;}
.ws8_c00436{word-spacing:0.000000pt;}
.ws7_c00436{word-spacing:32.799328pt;}
.ws4_c00436{word-spacing:46.647467pt;}
.ws6_c00436{word-spacing:49.727076pt;}
.ws5_c00436{word-spacing:52.740178pt;}
._0_c00436{width:6.268480pt;}
.fs6_c00436{font-size:3.040000pt;}
.fs9_c00436{font-size:10.560000pt;}
.fs8_c00436{font-size:12.106667pt;}
.fs0_c00436{font-size:16.640000pt;}
.fs7_c00436{font-size:18.133333pt;}
.fs4_c00436{font-size:22.666667pt;}
.fs1_c00436{font-size:25.706667pt;}
.fs2_c00436{font-size:28.746667pt;}
.fs3_c00436{font-size:31.733333pt;}
.fs5_c00436{font-size:34.773333pt;}
.y0_c00436{bottom:0.000000pt;}
.ybe_c00436{bottom:224.933333pt;}
.yc0_c00436{bottom:228.173333pt;}
.ybd_c00436{bottom:228.560000pt;}
.ybc_c00436{bottom:229.506667pt;}
.ybf_c00436{bottom:229.706667pt;}
.yb9_c00436{bottom:240.560000pt;}
.yba_c00436{bottom:241.506667pt;}
.ybb_c00436{bottom:241.706667pt;}
.yb5_c00436{bottom:252.560000pt;}
.yb8_c00436{bottom:253.506667pt;}
.yb4_c00436{bottom:253.893333pt;}
.yb7_c00436{bottom:254.640000pt;}
.yb6_c00436{bottom:255.040000pt;}
.yb3_c00436{bottom:264.560000pt;}
.yb0_c00436{bottom:264.933333pt;}
.yb2_c00436{bottom:265.133333pt;}
.yaf_c00436{bottom:265.506667pt;}
.yb1_c00436{bottom:266.840000pt;}
.yae_c00436{bottom:276.560000pt;}
.yab_c00436{bottom:276.933333pt;}
.yad_c00436{bottom:277.506667pt;}
.yac_c00436{bottom:278.840000pt;}
.yaa_c00436{bottom:288.560000pt;}
.ya9_c00436{bottom:289.893333pt;}
.ya8_c00436{bottom:300.560000pt;}
.ya7_c00436{bottom:301.893333pt;}
.ya6_c00436{bottom:302.840000pt;}
.ya5_c00436{bottom:313.706667pt;}
.ya3_c00436{bottom:313.893333pt;}
.ya4_c00436{bottom:314.840000pt;}
.ya2_c00436{bottom:324.560000pt;}
.ya1_c00436{bottom:325.893333pt;}
.ya0_c00436{bottom:327.226667pt;}
.y9f_c00436{bottom:336.560000pt;}
.y9e_c00436{bottom:337.506667pt;}
.y9d_c00436{bottom:337.893333pt;}
.y9b_c00436{bottom:339.226667pt;}
.y9c_c00436{bottom:340.173333pt;}
.y99_c00436{bottom:349.893333pt;}
.y9a_c00436{bottom:351.040000pt;}
.y98_c00436{bottom:351.226667pt;}
.y97_c00436{bottom:352.173333pt;}
.y95_c00436{bottom:361.893333pt;}
.y96_c00436{bottom:363.040000pt;}
.y94_c00436{bottom:363.226667pt;}
.y93_c00436{bottom:364.173333pt;}
.y91_c00436{bottom:373.893333pt;}
.y92_c00436{bottom:375.040000pt;}
.y90_c00436{bottom:375.226667pt;}
.y8e_c00436{bottom:387.226667pt;}
.y8d_c00436{bottom:388.173333pt;}
.y8f_c00436{bottom:388.373333pt;}
.y8c_c00436{bottom:404.373333pt;}
.y8b_c00436{bottom:404.560000pt;}
.y8a_c00436{bottom:405.506667pt;}
.y89_c00436{bottom:415.226667pt;}
.y87_c00436{bottom:416.560000pt;}
.y88_c00436{bottom:417.506667pt;}
.y86_c00436{bottom:427.226667pt;}
.y85_c00436{bottom:428.173333pt;}
.y83_c00436{bottom:428.560000pt;}
.y84_c00436{bottom:429.506667pt;}
.y80_c00436{bottom:444.733333pt;}
.y7f_c00436{bottom:445.693333pt;}
.y81_c00436{bottom:446.640000pt;}
.y82_c00436{bottom:447.600000pt;}
.y7e_c00436{bottom:458.066667pt;}
.y7d_c00436{bottom:459.973333pt;}
.y7c_c00436{bottom:460.933333pt;}
.y7b_c00436{bottom:479.600000pt;}
.y79_c00436{bottom:505.106667pt;}
.y7a_c00436{bottom:505.306667pt;}
.y78_c00436{bottom:507.026667pt;}
.y77_c00436{bottom:522.440000pt;}
.y73_c00436{bottom:523.973333pt;}
.y76_c00436{bottom:524.360000pt;}
.y75_c00436{bottom:524.560000pt;}
.y74_c00436{bottom:524.733333pt;}
.y72_c00436{bottom:525.693333pt;}
.y70_c00436{bottom:539.773333pt;}
.y71_c00436{bottom:541.106667pt;}
.y6e_c00436{bottom:543.026667pt;}
.y6f_c00436{bottom:543.040000pt;}
.y6d_c00436{bottom:556.360000pt;}
.y6a_c00436{bottom:558.440000pt;}
.y69_c00436{bottom:559.226667pt;}
.y68_c00436{bottom:560.360000pt;}
.y6c_c00436{bottom:560.560000pt;}
.y6b_c00436{bottom:561.306667pt;}
.y65_c00436{bottom:574.640000pt;}
.y61_c00436{bottom:575.026667pt;}
.y62_c00436{bottom:575.773333pt;}
.y64_c00436{bottom:576.733333pt;}
.y66_c00436{bottom:576.933333pt;}
.y63_c00436{bottom:577.693333pt;}
.y67_c00436{bottom:577.893333pt;}
.y5c_c00436{bottom:593.106667pt;}
.y5f_c00436{bottom:594.440000pt;}
.y5a_c00436{bottom:595.026667pt;}
.y5d_c00436{bottom:595.226667pt;}
.y60_c00436{bottom:595.400000pt;}
.y5b_c00436{bottom:595.973333pt;}
.y5e_c00436{bottom:596.360000pt;}
.y57_c00436{bottom:611.773333pt;}
.y59_c00436{bottom:612.560000pt;}
.y56_c00436{bottom:613.306667pt;}
.y58_c00436{bottom:613.693333pt;}
.y54_c00436{bottom:629.106667pt;}
.y53_c00436{bottom:629.693333pt;}
.y55_c00436{bottom:629.893333pt;}
.y52_c00436{bottom:630.640000pt;}
.y51_c00436{bottom:631.026667pt;}
.y50_c00436{bottom:646.440000pt;}
.y4e_c00436{bottom:647.973333pt;}
.y4d_c00436{bottom:648.360000pt;}
.y4f_c00436{bottom:649.306667pt;}
.y4c_c00436{bottom:662.440000pt;}
.y49_c00436{bottom:662.826667pt;}
.y4b_c00436{bottom:663.773333pt;}
.y4a_c00436{bottom:664.733333pt;}
.y48_c00436{bottom:665.693333pt;}
.y47_c00436{bottom:680.360000pt;}
.y46_c00436{bottom:681.106667pt;}
.y45_c00436{bottom:683.026667pt;}
.y41_c00436{bottom:697.693333pt;}
.y40_c00436{bottom:698.440000pt;}
.y44_c00436{bottom:698.640000pt;}
.y43_c00436{bottom:699.400000pt;}
.y3f_c00436{bottom:700.360000pt;}
.y42_c00436{bottom:700.560000pt;}
.y3e_c00436{bottom:715.773333pt;}
.y3c_c00436{bottom:717.693333pt;}
.y3d_c00436{bottom:718.640000pt;}
.y3b_c00436{bottom:732.360000pt;}
.y39_c00436{bottom:733.106667pt;}
.y3a_c00436{bottom:735.026667pt;}
.y36_c00436{bottom:751.773333pt;}
.y38_c00436{bottom:752.733333pt;}
.y37_c00436{bottom:753.693333pt;}
.y32_c00436{bottom:767.773333pt;}
.y34_c00436{bottom:767.973333pt;}
.y35_c00436{bottom:769.106667pt;}
.y33_c00436{bottom:769.693333pt;}
.y2d_c00436{bottom:784.360000pt;}
.y2f_c00436{bottom:785.306667pt;}
.y30_c00436{bottom:785.693333pt;}
.y31_c00436{bottom:786.440000pt;}
.y2c_c00436{bottom:788.360000pt;}
.y2e_c00436{bottom:789.306667pt;}
.y2b_c00436{bottom:801.693333pt;}
.y29_c00436{bottom:802.640000pt;}
.y2a_c00436{bottom:803.026667pt;}
.y28_c00436{bottom:803.400000pt;}
.y27_c00436{bottom:803.773333pt;}
.y26_c00436{bottom:805.693333pt;}
.y25_c00436{bottom:819.973333pt;}
.y22_c00436{bottom:820.733333pt;}
.y20_c00436{bottom:821.106667pt;}
.y21_c00436{bottom:823.026667pt;}
.y24_c00436{bottom:823.040000pt;}
.y23_c00436{bottom:823.973333pt;}
.y1c_c00436{bottom:837.493333pt;}
.y1d_c00436{bottom:838.440000pt;}
.y1f_c00436{bottom:839.973333pt;}
.y1e_c00436{bottom:840.360000pt;}
.y1a_c00436{bottom:855.773333pt;}
.y1b_c00436{bottom:856.733333pt;}
.y19_c00436{bottom:857.693333pt;}
.y18_c00436{bottom:873.106667pt;}
.y16_c00436{bottom:874.066667pt;}
.y15_c00436{bottom:875.026667pt;}
.y17_c00436{bottom:875.973333pt;}
.y12_c00436{bottom:890.440000pt;}
.y14_c00436{bottom:891.400000pt;}
.y11_c00436{bottom:892.360000pt;}
.y13_c00436{bottom:893.306667pt;}
.yf_c00436{bottom:907.026667pt;}
.yd_c00436{bottom:907.773333pt;}
.ye_c00436{bottom:909.693333pt;}
.y10_c00436{bottom:910.640000pt;}
.y9_c00436{bottom:924.360000pt;}
.y7_c00436{bottom:925.106667pt;}
.yc_c00436{bottom:926.440000pt;}
.y6_c00436{bottom:927.026667pt;}
.ya_c00436{bottom:927.226667pt;}
.y8_c00436{bottom:927.973333pt;}
.yb_c00436{bottom:928.360000pt;}
.y5_c00436{bottom:943.773333pt;}
.y4_c00436{bottom:944.733333pt;}
.y3_c00436{bottom:945.693333pt;}
.y2_c00436{bottom:977.693333pt;}
.y1_c00436{bottom:979.226667pt;}
.h7_c00436{height:3.739141pt;}
.hb_c00436{height:12.988594pt;}
.ha_c00436{height:14.890964pt;}
.h1_c00436{height:20.466875pt;}
.h9_c00436{height:22.303646pt;}
.h5_c00436{height:27.879557pt;}
.h2_c00436{height:31.618698pt;}
.h3_c00436{height:35.357839pt;}
.h4_c00436{height:39.031380pt;}
.h8_c00436{height:42.285365pt;}
.h6_c00436{height:42.770521pt;}
.h0_c00436{height:1186.666667pt;}
.w0_c00436{width:782.666667pt;}
.x0_c00436{left:0.000000pt;}
.x3_c00436{left:134.666667pt;}
.x69_c00436{left:136.373333pt;}
.xbc_c00436{left:137.333333pt;}
.x6f_c00436{left:150.293333pt;}
.xe_c00436{left:152.373333pt;}
.x59_c00436{left:160.000000pt;}
.x3c_c00436{left:161.706667pt;}
.x8a_c00436{left:162.666667pt;}
.xbd_c00436{left:164.000000pt;}
.x4_c00436{left:169.333333pt;}
.x28_c00436{left:170.293333pt;}
.xc5_c00436{left:172.000000pt;}
.x1d_c00436{left:176.000000pt;}
.x70_c00436{left:177.333333pt;}
.x6a_c00436{left:178.293333pt;}
.xa4_c00436{left:179.626667pt;}
.x5a_c00436{left:182.666667pt;}
.xb4_c00436{left:184.000000pt;}
.xf_c00436{left:186.293333pt;}
.x90_c00436{left:188.373333pt;}
.x3d_c00436{left:190.666667pt;}
.x6b_c00436{left:193.333333pt;}
.x9c_c00436{left:195.626667pt;}
.x96_c00436{left:198.666667pt;}
.x5_c00436{left:201.333333pt;}
.x10_c00436{left:203.040000pt;}
.x8b_c00436{left:206.666667pt;}
.x81_c00436{left:208.960000pt;}
.x64_c00436{left:210.293333pt;}
.x29_c00436{left:211.626667pt;}
.x5b_c00436{left:213.706667pt;}
.xa5_c00436{left:216.000000pt;}
.xb5_c00436{left:217.333333pt;}
.xcb_c00436{left:219.626667pt;}
.x1e_c00436{left:221.333333pt;}
.x91_c00436{left:225.706667pt;}
.x11_c00436{left:227.040000pt;}
.x6c_c00436{left:230.666667pt;}
.xbf_c00436{left:231.626667pt;}
.x3e_c00436{left:233.333333pt;}
.x7a_c00436{left:235.626667pt;}
.x71_c00436{left:237.706667pt;}
.x5c_c00436{left:242.466667pt;}
.x2a_c00436{left:244.960000pt;}
.x9d_c00436{left:246.293333pt;}
.x33_c00436{left:249.333333pt;}
.xb6_c00436{left:251.426667pt;}
.x82_c00436{left:253.706667pt;}
.xbe_c00436{left:256.373333pt;}
.xc0_c00436{left:257.333333pt;}
.x6_c00436{left:258.666667pt;}
.x12_c00436{left:259.626667pt;}
.x92_c00436{left:261.333333pt;}
.x65_c00436{left:262.666667pt;}
.x3f_c00436{left:263.626667pt;}
.xcc_c00436{left:266.293333pt;}
.x6d_c00436{left:269.333333pt;}
.x1f_c00436{left:271.626667pt;}
.x5d_c00436{left:272.960000pt;}
.x2b_c00436{left:274.666667pt;}
.xd1_c00436{left:277.333333pt;}
.x47_c00436{left:279.040000pt;}
.x40_c00436{left:280.000000pt;}
.x66_c00436{left:280.960000pt;}
.x4f_c00436{left:286.293333pt;}
.x7_c00436{left:291.626667pt;}
.xad_c00436{left:293.333333pt;}
.x83_c00436{left:294.666667pt;}
.x72_c00436{left:297.333333pt;}
.xd7_c00436{left:298.293333pt;}
.x8c_c00436{left:299.626667pt;}
.x7b_c00436{left:300.960000pt;}
.x13_c00436{left:303.040000pt;}
.x34_c00436{left:304.000000pt;}
.x6e_c00436{left:305.333333pt;}
.x20_c00436{left:306.666667pt;}
.xa6_c00436{left:307.626667pt;}
.x97_c00436{left:308.573333pt;}
.x9e_c00436{left:310.293333pt;}
.x5e_c00436{left:313.706667pt;}
.xd9_c00436{left:314.666667pt;}
.xda_c00436{left:316.960000pt;}
.x7c_c00436{left:319.040000pt;}
.x8_c00436{left:320.373333pt;}
.x98_c00436{left:321.333333pt;}
.xa7_c00436{left:324.373333pt;}
.xcd_c00436{left:325.333333pt;}
.xb7_c00436{left:327.040000pt;}
.xb3_c00436{left:328.000000pt;}
.x67_c00436{left:332.960000pt;}
.x41_c00436{left:335.040000pt;}
.x2c_c00436{left:336.000000pt;}
.x93_c00436{left:337.333333pt;}
.xdc_c00436{left:338.666667pt;}
.x35_c00436{left:342.666667pt;}
.x14_c00436{left:344.373333pt;}
.xdd_c00436{left:345.706667pt;}
.x73_c00436{left:347.040000pt;}
.xdf_c00436{left:349.333333pt;}
.x48_c00436{left:350.293333pt;}
.xde_c00436{left:353.333333pt;}
.x94_c00436{left:354.666667pt;}
.x9f_c00436{left:356.000000pt;}
.xe0_c00436{left:357.333333pt;}
.x21_c00436{left:359.040000pt;}
.x1_c00436{left:361.333333pt;}
.x5f_c00436{left:365.706667pt;}
.xb8_c00436{left:368.000000pt;}
.x84_c00436{left:370.666667pt;}
.x36_c00436{left:371.626667pt;}
.xa0_c00436{left:373.706667pt;}
.x7d_c00436{left:375.626667pt;}
.x95_c00436{left:378.666667pt;}
.x2d_c00436{left:380.000000pt;}
.x42_c00436{left:383.040000pt;}
.xae_c00436{left:384.000000pt;}
.xa8_c00436{left:384.960000pt;}
.x49_c00436{left:386.666667pt;}
.x37_c00436{left:389.333333pt;}
.x15_c00436{left:390.666667pt;}
.xcf_c00436{left:392.373333pt;}
.x85_c00436{left:394.666667pt;}
.xa1_c00436{left:398.666667pt;}
.xb9_c00436{left:400.000000pt;}
.x50_c00436{left:401.333333pt;}
.x9_c00436{left:403.426667pt;}
.xd3_c00436{left:405.706667pt;}
.xd6_c00436{left:406.666667pt;}
.x60_c00436{left:407.626667pt;}
.x16_c00436{left:408.960000pt;}
.x22_c00436{left:410.666667pt;}
.xce_c00436{left:411.626667pt;}
.xc1_c00436{left:413.706667pt;}
.x51_c00436{left:418.666667pt;}
.x74_c00436{left:420.373333pt;}
.x2e_c00436{left:421.333333pt;}
.xd2_c00436{left:425.333333pt;}
.x43_c00436{left:427.040000pt;}
.x38_c00436{left:428.000000pt;}
.x61_c00436{left:430.293333pt;}
.x4a_c00436{left:433.333333pt;}
.x8d_c00436{left:434.666667pt;}
.xc6_c00436{left:438.293333pt;}
.x52_c00436{left:443.040000pt;}
.x86_c00436{left:444.373333pt;}
.x75_c00436{left:445.333333pt;}
.xd4_c00436{left:446.666667pt;}
.xa9_c00436{left:448.000000pt;}
.xa_c00436{left:449.333333pt;}
.x23_c00436{left:451.040000pt;}
.xdb_c00436{left:453.333333pt;}
.xd8_c00436{left:454.666667pt;}
.xc7_c00436{left:455.626667pt;}
.xba_c00436{left:458.666667pt;}
.xaf_c00436{left:460.373333pt;}
.xc2_c00436{left:468.000000pt;}
.x2f_c00436{left:469.706667pt;}
.x39_c00436{left:471.626667pt;}
.x44_c00436{left:472.960000pt;}
.x76_c00436{left:475.626667pt;}
.x17_c00436{left:480.000000pt;}
.x7e_c00436{left:481.333333pt;}
.xb_c00436{left:482.666667pt;}
.x53_c00436{left:484.000000pt;}
.xc3_c00436{left:487.040000pt;}
.xd5_c00436{left:490.666667pt;}
.x77_c00436{left:493.333333pt;}
.xc8_c00436{left:496.373333pt;}
.x4b_c00436{left:497.333333pt;}
.x30_c00436{left:498.666667pt;}
.x68_c00436{left:500.960000pt;}
.x54_c00436{left:502.666667pt;}
.xd0_c00436{left:503.626667pt;}
.x18_c00436{left:506.666667pt;}
.xb0_c00436{left:510.293333pt;}
.x99_c00436{left:513.333333pt;}
.x7f_c00436{left:514.666667pt;}
.x3a_c00436{left:516.000000pt;}
.x45_c00436{left:517.333333pt;}
.x4c_c00436{left:518.666667pt;}
.xc9_c00436{left:521.706667pt;}
.x8e_c00436{left:526.666667pt;}
.x9a_c00436{left:527.626667pt;}
.x87_c00436{left:529.333333pt;}
.x24_c00436{left:531.040000pt;}
.xa2_c00436{left:532.000000pt;}
.x31_c00436{left:533.706667pt;}
.x78_c00436{left:534.666667pt;}
.xc_c00436{left:536.000000pt;}
.xaa_c00436{left:537.333333pt;}
.x55_c00436{left:539.626667pt;}
.x19_c00436{left:551.040000pt;}
.x25_c00436{left:557.333333pt;}
.xca_c00436{left:558.666667pt;}
.x46_c00436{left:562.666667pt;}
.x3b_c00436{left:564.960000pt;}
.x56_c00436{left:566.666667pt;}
.x88_c00436{left:568.373333pt;}
.xc4_c00436{left:569.706667pt;}
.xb1_c00436{left:572.000000pt;}
.x1a_c00436{left:574.666667pt;}
.xab_c00436{left:576.000000pt;}
.x4d_c00436{left:576.960000pt;}
.x80_c00436{left:579.040000pt;}
.x62_c00436{left:580.960000pt;}
.x32_c00436{left:582.666667pt;}
.xd_c00436{left:589.333333pt;}
.x79_c00436{left:591.040000pt;}
.x9b_c00436{left:592.373333pt;}
.x26_c00436{left:594.666667pt;}
.x63_c00436{left:596.000000pt;}
.xa3_c00436{left:600.373333pt;}
.x57_c00436{left:601.333333pt;}
.x89_c00436{left:603.040000pt;}
.x4e_c00436{left:604.000000pt;}
.x8f_c00436{left:608.960000pt;}
.x1b_c00436{left:611.626667pt;}
.xbb_c00436{left:617.706667pt;}
.x58_c00436{left:620.000000pt;}
.x2_c00436{left:625.333333pt;}
.x1c_c00436{left:628.373333pt;}
.xac_c00436{left:631.626667pt;}
.x27_c00436{left:636.000000pt;}
.xb2_c00436{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b2e792dabaca27cd2ebb7cfb.woff2')format("woff");}.ff1_c00437{font-family:ff1_c00437;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mbc_c00437{transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);}
.ma4_c00437{transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);}
.m51_c00437{transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);}
.ma9_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);}
.mbb_c00437{transform:matrix(0.358129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358129,0.000000,0.000000,0.250000,0,0);}
.m72_c00437{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.me9_c00437{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.mb8_c00437{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m0_c00437{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m9_c00437{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m49_c00437{transform:matrix(0.370594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370594,0.000000,0.000000,0.250000,0,0);}
.mb7_c00437{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m92_c00437{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m28_c00437{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m6a_c00437{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m73_c00437{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.mac_c00437{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m4e_c00437{transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);}
.me0_c00437{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m13_c00437{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.md7_c00437{transform:matrix(0.386503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386503,0.000000,0.000000,0.250000,0,0);}
.m27_c00437{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mb3_c00437{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m60_c00437{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.md5_c00437{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.md9_c00437{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m6d_c00437{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.mcf_c00437{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.med_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);}
.m57_c00437{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m2e_c00437{transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);}
.m8d_c00437{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.md6_c00437{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m8c_c00437{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.mf5_c00437{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.mc4_c00437{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m1e_c00437{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m20_c00437{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mb4_c00437{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m1d_c00437{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.m8b_c00437{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m3f_c00437{transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);}
.mc0_c00437{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.mf2_c00437{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.mfa_c00437{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m7e_c00437{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m24_c00437{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.mae_c00437{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m64_c00437{transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);}
.m8e_c00437{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.me3_c00437{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m54_c00437{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mb5_c00437{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m74_c00437{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m15_c00437{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m33_c00437{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.ma7_c00437{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.me2_c00437{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.mc8_c00437{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m7c_c00437{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m48_c00437{transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);}
.m7b_c00437{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.mfc_c00437{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mb1_c00437{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.m53_c00437{transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);}
.m85_c00437{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m35_c00437{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m5f_c00437{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.mad_c00437{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m41_c00437{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mca_c00437{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.mc3_c00437{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.mde_c00437{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m96_c00437{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m9a_c00437{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m7f_c00437{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m7d_c00437{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.mf_c00437{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.mdb_c00437{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m40_c00437{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m8f_c00437{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m8_c00437{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m4b_c00437{transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);}
.m46_c00437{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.mdc_c00437{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m18_c00437{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m47_c00437{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.m3b_c00437{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m75_c00437{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m3e_c00437{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mcd_c00437{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mf3_c00437{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m81_c00437{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.ma3_c00437{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m82_c00437{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.m2f_c00437{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m43_c00437{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m58_c00437{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.md2_c00437{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m62_c00437{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.mea_c00437{transform:matrix(0.480252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480252,0.000000,0.000000,0.250000,0,0);}
.m3_c00437{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m9f_c00437{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m3d_c00437{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m10_c00437{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m50_c00437{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mc9_c00437{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m31_c00437{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m100_c00437{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m3c_c00437{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mf9_c00437{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m80_c00437{transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);}
.m5d_c00437{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m23_c00437{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_c00437{transform:matrix(0.502319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502319,0.000000,0.000000,0.250000,0,0);}
.m38_c00437{transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);}
.m5a_c00437{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mba_c00437{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m6c_c00437{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m12_c00437{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.md1_c00437{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mf8_c00437{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m6e_c00437{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m93_c00437{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.mcc_c00437{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m1b_c00437{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m32_c00437{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m98_c00437{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.maa_c00437{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.ma8_c00437{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m76_c00437{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mbf_c00437{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m7a_c00437{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.mc1_c00437{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m88_c00437{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m8a_c00437{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mce_c00437{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m4_c00437{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m4a_c00437{transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);}
.m61_c00437{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m17_c00437{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m91_c00437{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m7_c00437{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.md0_c00437{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m5_c00437{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m79_c00437{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.me_c00437{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m71_c00437{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m9b_c00437{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m9d_c00437{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.meb_c00437{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m2c_c00437{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m1f_c00437{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m25_c00437{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.md8_c00437{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m67_c00437{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m11_c00437{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mc7_c00437{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.ma1_c00437{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mb6_c00437{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.mda_c00437{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m36_c00437{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.me4_c00437{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m6b_c00437{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m63_c00437{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.mcb_c00437{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m94_c00437{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mb9_c00437{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m6f_c00437{transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);}
.m5b_c00437{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m21_c00437{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m19_c00437{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mec_c00437{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m99_c00437{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mfd_c00437{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m5c_c00437{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.mc5_c00437{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m26_c00437{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m97_c00437{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mf0_c00437{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m30_c00437{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m5e_c00437{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.ma6_c00437{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m70_c00437{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m6_c00437{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mf1_c00437{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m59_c00437{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m4c_c00437{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.ma0_c00437{transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);}
.mff_c00437{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mbe_c00437{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.me8_c00437{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.mdd_c00437{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.mee_c00437{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m9c_c00437{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.ma2_c00437{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.me6_c00437{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m77_c00437{transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);}
.mfe_c00437{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m56_c00437{transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);}
.m87_c00437{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.md3_c00437{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.maf_c00437{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mf4_c00437{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m2a_c00437{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m3a_c00437{transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);}
.m95_c00437{transform:matrix(0.606328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606328,0.000000,0.000000,0.250000,0,0);}
.m9e_c00437{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mb0_c00437{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.mb2_c00437{transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);}
.m2d_c00437{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m29_c00437{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m78_c00437{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m52_c00437{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);}
.mf7_c00437{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);}
.m16_c00437{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m65_c00437{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m90_c00437{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.md_c00437{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m44_c00437{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.mfb_c00437{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m1_c00437{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m37_c00437{transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);}
.mc2_c00437{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m45_c00437{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);}
.m4d_c00437{transform:matrix(0.651471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651471,0.000000,0.000000,0.250000,0,0);}
.me5_c00437{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.ma_c00437{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.mb_c00437{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m42_c00437{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m1c_c00437{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m89_c00437{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m4f_c00437{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.m66_c00437{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.m14_c00437{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.mbd_c00437{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.m34_c00437{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mab_c00437{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m22_c00437{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.me7_c00437{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.me1_c00437{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m83_c00437{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.m84_c00437{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mc6_c00437{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m86_c00437{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m2b_c00437{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m101_c00437{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);}
.m68_c00437{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.mf6_c00437{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mdf_c00437{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mef_c00437{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mc_c00437{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.md4_c00437{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m1a_c00437{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.m2_c00437{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.ma5_c00437{transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);}
.m69_c00437{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m55_c00437{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00437{vertical-align:0.000000px;}
.v1_c00437{vertical-align:3.420000px;}
.ls1_c00437{letter-spacing:0.000000px;}
.ls0_c00437{letter-spacing:14.817600px;}
.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.299716px;}
.ws2_c00437{word-spacing:0.000000px;}
.ws1_c00437{word-spacing:20.237181px;}
.fc0_c00437{color:transparent;}
.fs6_c00437{font-size:3.420000px;}
.fs5_c00437{font-size:18.720000px;}
.fs1_c00437{font-size:20.400000px;}
.fs2_c00437{font-size:25.500000px;}
.fs3_c00437{font-size:28.920000px;}
.fs4_c00437{font-size:32.340000px;}
.fs0_c00437{font-size:35.700000px;}
.fs7_c00437{font-size:39.120000px;}
.y0_c00437{bottom:0.000000px;}
.ybd_c00437{bottom:248.745000px;}
.ybe_c00437{bottom:250.050000px;}
.ybc_c00437{bottom:268.245000px;}
.yb9_c00437{bottom:269.745000px;}
.yb8_c00437{bottom:271.470000px;}
.yba_c00437{bottom:271.905000px;}
.ybb_c00437{bottom:272.970000px;}
.yb5_c00437{bottom:287.745000px;}
.yb6_c00437{bottom:289.245000px;}
.yb4_c00437{bottom:289.905000px;}
.yb7_c00437{bottom:290.130000px;}
.yb3_c00437{bottom:291.405000px;}
.yaf_c00437{bottom:308.745000px;}
.yac_c00437{bottom:309.630000px;}
.yb0_c00437{bottom:309.825000px;}
.yad_c00437{bottom:310.470000px;}
.yae_c00437{bottom:310.905000px;}
.yb1_c00437{bottom:311.130000px;}
.yb2_c00437{bottom:311.970000px;}
.yaa_c00437{bottom:329.745000px;}
.ya7_c00437{bottom:329.970000px;}
.ya6_c00437{bottom:330.405000px;}
.yab_c00437{bottom:330.630000px;}
.ya9_c00437{bottom:331.470000px;}
.ya8_c00437{bottom:331.905000px;}
.y9f_c00437{bottom:347.745000px;}
.ya4_c00437{bottom:348.180000px;}
.ya5_c00437{bottom:349.245000px;}
.ya0_c00437{bottom:349.905000px;}
.ya1_c00437{bottom:350.130000px;}
.ya2_c00437{bottom:350.970000px;}
.ya3_c00437{bottom:351.405000px;}
.y9c_c00437{bottom:368.745000px;}
.y9b_c00437{bottom:369.405000px;}
.y9e_c00437{bottom:370.470000px;}
.y9d_c00437{bottom:370.905000px;}
.y9a_c00437{bottom:386.745000px;}
.y99_c00437{bottom:390.405000px;}
.y98_c00437{bottom:407.745000px;}
.y97_c00437{bottom:409.905000px;}
.y94_c00437{bottom:427.245000px;}
.y96_c00437{bottom:429.405000px;}
.y95_c00437{bottom:429.630000px;}
.y90_c00437{bottom:446.745000px;}
.y92_c00437{bottom:447.825000px;}
.y91_c00437{bottom:448.905000px;}
.y93_c00437{bottom:449.970000px;}
.y8f_c00437{bottom:466.680000px;}
.y8e_c00437{bottom:467.745000px;}
.y8d_c00437{bottom:469.905000px;}
.y8b_c00437{bottom:487.245000px;}
.y8a_c00437{bottom:488.130000px;}
.y8c_c00437{bottom:488.970000px;}
.y89_c00437{bottom:489.405000px;}
.y87_c00437{bottom:504.405000px;}
.y88_c00437{bottom:506.745000px;}
.y86_c00437{bottom:507.825000px;}
.y84_c00437{bottom:508.470000px;}
.y85_c00437{bottom:508.905000px;}
.y7e_c00437{bottom:524.970000px;}
.y81_c00437{bottom:526.245000px;}
.y82_c00437{bottom:527.130000px;}
.y7f_c00437{bottom:527.970000px;}
.y80_c00437{bottom:528.405000px;}
.y83_c00437{bottom:528.630000px;}
.y78_c00437{bottom:544.245000px;}
.y79_c00437{bottom:545.745000px;}
.y7b_c00437{bottom:546.180000px;}
.y77_c00437{bottom:547.905000px;}
.y7a_c00437{bottom:548.130000px;}
.y7d_c00437{bottom:548.970000px;}
.y7c_c00437{bottom:549.405000px;}
.y76_c00437{bottom:565.245000px;}
.y73_c00437{bottom:566.130000px;}
.y72_c00437{bottom:566.325000px;}
.y75_c00437{bottom:566.745000px;}
.y71_c00437{bottom:567.405000px;}
.y74_c00437{bottom:568.905000px;}
.y6f_c00437{bottom:584.745000px;}
.y70_c00437{bottom:586.245000px;}
.y6d_c00437{bottom:586.905000px;}
.y6e_c00437{bottom:588.420000px;}
.y6c_c00437{bottom:603.405000px;}
.y6a_c00437{bottom:604.920000px;}
.y67_c00437{bottom:605.325000px;}
.y69_c00437{bottom:605.745000px;}
.y68_c00437{bottom:607.470000px;}
.y6b_c00437{bottom:607.905000px;}
.y66_c00437{bottom:625.245000px;}
.y63_c00437{bottom:626.325000px;}
.y64_c00437{bottom:626.970000px;}
.y65_c00437{bottom:627.405000px;}
.y61_c00437{bottom:645.825000px;}
.y62_c00437{bottom:646.470000px;}
.y60_c00437{bottom:646.905000px;}
.y5f_c00437{bottom:664.245000px;}
.y5e_c00437{bottom:665.325000px;}
.y5d_c00437{bottom:666.405000px;}
.y5c_c00437{bottom:683.745000px;}
.y5b_c00437{bottom:685.050000px;}
.y59_c00437{bottom:685.470000px;}
.y5a_c00437{bottom:685.905000px;}
.y58_c00437{bottom:686.970000px;}
.y55_c00437{bottom:703.245000px;}
.y56_c00437{bottom:704.745000px;}
.y54_c00437{bottom:705.405000px;}
.y57_c00437{bottom:705.825000px;}
.y52_c00437{bottom:722.745000px;}
.y4e_c00437{bottom:723.825000px;}
.y51_c00437{bottom:724.905000px;}
.y4f_c00437{bottom:725.130000px;}
.y50_c00437{bottom:725.970000px;}
.y53_c00437{bottom:726.405000px;}
.y4b_c00437{bottom:742.245000px;}
.y4d_c00437{bottom:743.745000px;}
.y49_c00437{bottom:744.825000px;}
.y4a_c00437{bottom:745.470000px;}
.y4c_c00437{bottom:745.905000px;}
.y47_c00437{bottom:763.245000px;}
.y48_c00437{bottom:764.325000px;}
.y46_c00437{bottom:765.405000px;}
.y45_c00437{bottom:781.905000px;}
.y43_c00437{bottom:782.745000px;}
.y41_c00437{bottom:784.905000px;}
.y42_c00437{bottom:784.920000px;}
.y44_c00437{bottom:785.130000px;}
.y3f_c00437{bottom:802.245000px;}
.y40_c00437{bottom:803.325000px;}
.y3c_c00437{bottom:804.405000px;}
.y3e_c00437{bottom:804.420000px;}
.y3d_c00437{bottom:804.630000px;}
.y38_c00437{bottom:820.905000px;}
.y39_c00437{bottom:821.325000px;}
.y34_c00437{bottom:821.745000px;}
.y3a_c00437{bottom:821.970000px;}
.y37_c00437{bottom:822.405000px;}
.y36_c00437{bottom:822.825000px;}
.y35_c00437{bottom:823.920000px;}
.y3b_c00437{bottom:824.130000px;}
.y33_c00437{bottom:843.405000px;}
.y32_c00437{bottom:859.905000px;}
.y31_c00437{bottom:862.050000px;}
.y2d_c00437{bottom:862.245000px;}
.y30_c00437{bottom:863.325000px;}
.y2f_c00437{bottom:864.405000px;}
.y2e_c00437{bottom:864.420000px;}
.y28_c00437{bottom:888.825000px;}
.y2a_c00437{bottom:889.050000px;}
.y27_c00437{bottom:889.905000px;}
.y2c_c00437{bottom:890.550000px;}
.y29_c00437{bottom:890.970000px;}
.y2b_c00437{bottom:892.050000px;}
.y23_c00437{bottom:907.470000px;}
.y22_c00437{bottom:908.325000px;}
.y24_c00437{bottom:908.550000px;}
.y21_c00437{bottom:909.405000px;}
.y26_c00437{bottom:909.630000px;}
.y25_c00437{bottom:911.550000px;}
.y20_c00437{bottom:933.405000px;}
.y1d_c00437{bottom:935.325000px;}
.y1f_c00437{bottom:936.825000px;}
.y1e_c00437{bottom:937.905000px;}
.y1a_c00437{bottom:979.245000px;}
.y18_c00437{bottom:980.325000px;}
.y19_c00437{bottom:981.405000px;}
.y1b_c00437{bottom:981.630000px;}
.y1c_c00437{bottom:982.470000px;}
.y14_c00437{bottom:998.745000px;}
.y17_c00437{bottom:998.970000px;}
.y13_c00437{bottom:1000.905000px;}
.y16_c00437{bottom:1001.130000px;}
.y15_c00437{bottom:1001.970000px;}
.y11_c00437{bottom:1017.405000px;}
.y10_c00437{bottom:1018.245000px;}
.ye_c00437{bottom:1020.405000px;}
.y12_c00437{bottom:1020.630000px;}
.yf_c00437{bottom:1021.470000px;}
.ya_c00437{bottom:1037.745000px;}
.yc_c00437{bottom:1037.970000px;}
.yd_c00437{bottom:1039.245000px;}
.y9_c00437{bottom:1039.905000px;}
.yb_c00437{bottom:1040.130000px;}
.y5_c00437{bottom:1056.825000px;}
.y6_c00437{bottom:1058.745000px;}
.y4_c00437{bottom:1059.405000px;}
.y7_c00437{bottom:1059.630000px;}
.y3_c00437{bottom:1060.470000px;}
.y8_c00437{bottom:1060.905000px;}
.y1_c00437{bottom:1096.245000px;}
.y2_c00437{bottom:1099.050000px;}
.h8_c00437{height:4.206533px;}
.h6_c00437{height:23.025234px;}
.h2_c00437{height:25.091602px;}
.h3_c00437{height:31.364502px;}
.h4_c00437{height:35.571035px;}
.h7_c00437{height:38.991035px;}
.h5_c00437{height:39.777568px;}
.h1_c00437{height:43.910303px;}
.h9_c00437{height:48.116836px;}
.h0_c00437{height:1335.000000px;}
.w0_c00437{width:880.500000px;}
.x0_c00437{left:0.000000px;}
.xa5_c00437{left:150.420000px;}
.x1_c00437{left:151.500000px;}
.xee_c00437{left:165.000000px;}
.x52_c00437{left:166.500000px;}
.x64_c00437{left:168.000000px;}
.x3_c00437{left:169.500000px;}
.x92_c00437{left:171.000000px;}
.x77_c00437{left:172.920000px;}
.xc3_c00437{left:178.920000px;}
.xdd_c00437{left:184.500000px;}
.x4_c00437{left:186.000000px;}
.x23_c00437{left:187.080000px;}
.xb0_c00437{left:189.000000px;}
.xcf_c00437{left:190.500000px;}
.xb5_c00437{left:192.000000px;}
.x99_c00437{left:193.500000px;}
.x39_c00437{left:198.855000px;}
.x5_c00437{left:200.580000px;}
.x63_c00437{left:205.500000px;}
.x24_c00437{left:206.580000px;}
.x5a_c00437{left:208.920000px;}
.xe8_c00437{left:210.000000px;}
.x47_c00437{left:211.500000px;}
.xd3_c00437{left:213.000000px;}
.xbd_c00437{left:217.920000px;}
.x2f_c00437{left:220.500000px;}
.xc4_c00437{left:223.500000px;}
.x14_c00437{left:226.920000px;}
.xb6_c00437{left:229.920000px;}
.x7f_c00437{left:231.000000px;}
.xa6_c00437{left:232.500000px;}
.xd4_c00437{left:234.000000px;}
.x8b_c00437{left:235.920000px;}
.x3a_c00437{left:237.000000px;}
.xab_c00437{left:239.580000px;}
.xe9_c00437{left:241.500000px;}
.xde_c00437{left:244.080000px;}
.x93_c00437{left:246.420000px;}
.x6c_c00437{left:247.500000px;}
.xef_c00437{left:249.000000px;}
.x6_c00437{left:252.000000px;}
.xae_c00437{left:253.500000px;}
.xc9_c00437{left:255.000000px;}
.x9a_c00437{left:256.920000px;}
.x65_c00437{left:258.000000px;}
.x70_c00437{left:259.500000px;}
.x87_c00437{left:261.000000px;}
.x15_c00437{left:262.920000px;}
.xf0_c00437{left:264.000000px;}
.xe0_c00437{left:265.500000px;}
.xf7_c00437{left:267.000000px;}
.x5b_c00437{left:268.500000px;}
.x43_c00437{left:270.420000px;}
.xbe_c00437{left:274.920000px;}
.x48_c00437{left:277.920000px;}
.x66_c00437{left:280.500000px;}
.x94_c00437{left:283.500000px;}
.x3b_c00437{left:285.420000px;}
.x25_c00437{left:286.500000px;}
.xd9_c00437{left:288.000000px;}
.x5c_c00437{left:289.500000px;}
.x16_c00437{left:291.420000px;}
.xdf_c00437{left:293.775000px;}
.xbf_c00437{left:295.500000px;}
.xca_c00437{left:297.000000px;}
.x6d_c00437{left:300.000000px;}
.xf4_c00437{left:302.580000px;}
.x7_c00437{left:304.920000px;}
.xac_c00437{left:309.000000px;}
.x30_c00437{left:310.275000px;}
.x71_c00437{left:312.000000px;}
.xb7_c00437{left:315.000000px;}
.x9b_c00437{left:316.080000px;}
.x17_c00437{left:319.500000px;}
.x6e_c00437{left:320.580000px;}
.xa7_c00437{left:322.500000px;}
.x80_c00437{left:324.000000px;}
.xad_c00437{left:325.920000px;}
.x78_c00437{left:327.000000px;}
.xd0_c00437{left:331.500000px;}
.xc0_c00437{left:333.000000px;}
.x3c_c00437{left:334.080000px;}
.x8_c00437{left:337.920000px;}
.x8c_c00437{left:342.000000px;}
.x31_c00437{left:344.580000px;}
.xc5_c00437{left:346.080000px;}
.x49_c00437{left:347.580000px;}
.x53_c00437{left:349.500000px;}
.x44_c00437{left:352.500000px;}
.xe4_c00437{left:357.420000px;}
.xa1_c00437{left:358.500000px;}
.xda_c00437{left:360.000000px;}
.xc6_c00437{left:361.500000px;}
.x3d_c00437{left:363.420000px;}
.x9_c00437{left:364.500000px;}
.x26_c00437{left:366.000000px;}
.x9c_c00437{left:367.920000px;}
.x4a_c00437{left:369.420000px;}
.xa8_c00437{left:370.500000px;}
.xb8_c00437{left:373.500000px;}
.xc1_c00437{left:374.580000px;}
.x81_c00437{left:376.080000px;}
.xf8_c00437{left:378.000000px;}
.x95_c00437{left:381.000000px;}
.x88_c00437{left:382.500000px;}
.xf5_c00437{left:384.000000px;}
.xb1_c00437{left:388.500000px;}
.x27_c00437{left:390.000000px;}
.x18_c00437{left:393.420000px;}
.x4b_c00437{left:394.920000px;}
.x79_c00437{left:396.000000px;}
.xea_c00437{left:397.500000px;}
.xf1_c00437{left:399.000000px;}
.x8d_c00437{left:400.080000px;}
.x6f_c00437{left:402.000000px;}
.xa2_c00437{left:403.500000px;}
.x2_c00437{left:408.000000px;}
.xdb_c00437{left:411.000000px;}
.xe1_c00437{left:412.500000px;}
.xa9_c00437{left:413.580000px;}
.x3e_c00437{left:415.500000px;}
.xeb_c00437{left:416.580000px;}
.xa_c00437{left:418.500000px;}
.xb9_c00437{left:420.000000px;}
.x5d_c00437{left:425.580000px;}
.x19_c00437{left:427.500000px;}
.x9d_c00437{left:429.000000px;}
.x7a_c00437{left:430.500000px;}
.x8e_c00437{left:432.000000px;}
.x72_c00437{left:433.500000px;}
.xf9_c00437{left:435.000000px;}
.x45_c00437{left:439.500000px;}
.x54_c00437{left:442.500000px;}
.x3f_c00437{left:444.420000px;}
.xe2_c00437{left:445.500000px;}
.x28_c00437{left:447.000000px;}
.x1a_c00437{left:450.000000px;}
.x82_c00437{left:451.500000px;}
.x32_c00437{left:454.500000px;}
.xf6_c00437{left:456.000000px;}
.x96_c00437{left:457.080000px;}
.xb2_c00437{left:462.000000px;}
.x67_c00437{left:463.500000px;}
.xb_c00437{left:469.500000px;}
.xd5_c00437{left:471.420000px;}
.x4c_c00437{left:472.500000px;}
.x5e_c00437{left:476.355000px;}
.x8f_c00437{left:479.580000px;}
.x1b_c00437{left:481.920000px;}
.x7b_c00437{left:483.000000px;}
.xc_c00437{left:484.500000px;}
.xb3_c00437{left:485.580000px;}
.xec_c00437{left:487.500000px;}
.x55_c00437{left:489.420000px;}
.xf2_c00437{left:490.920000px;}
.xcb_c00437{left:492.000000px;}
.x9e_c00437{left:496.500000px;}
.x5f_c00437{left:498.000000px;}
.xd6_c00437{left:499.500000px;}
.x40_c00437{left:501.000000px;}
.xa3_c00437{left:502.920000px;}
.x4d_c00437{left:505.920000px;}
.x29_c00437{left:507.420000px;}
.x1c_c00437{left:508.500000px;}
.xd_c00437{left:513.000000px;}
.x46_c00437{left:514.920000px;}
.x83_c00437{left:516.000000px;}
.xaf_c00437{left:518.145000px;}
.xe3_c00437{left:520.920000px;}
.xd1_c00437{left:523.080000px;}
.xcc_c00437{left:525.000000px;}
.x89_c00437{left:526.500000px;}
.xa4_c00437{left:529.500000px;}
.xe_c00437{left:530.580000px;}
.xb4_c00437{left:532.500000px;}
.x84_c00437{left:534.000000px;}
.x2a_c00437{left:535.920000px;}
.x33_c00437{left:538.500000px;}
.x60_c00437{left:540.420000px;}
.x41_c00437{left:544.080000px;}
.xf3_c00437{left:546.000000px;}
.xdc_c00437{left:547.500000px;}
.x1d_c00437{left:550.500000px;}
.x7c_c00437{left:551.580000px;}
.xd2_c00437{left:555.000000px;}
.xe5_c00437{left:557.580000px;}
.xc7_c00437{left:559.500000px;}
.x68_c00437{left:561.420000px;}
.xf_c00437{left:562.500000px;}
.x4e_c00437{left:565.920000px;}
.xd7_c00437{left:569.580000px;}
.x73_c00437{left:571.275000px;}
.x34_c00437{left:573.420000px;}
.x8a_c00437{left:577.080000px;}
.x1e_c00437{left:578.580000px;}
.x10_c00437{left:580.080000px;}
.x56_c00437{left:582.000000px;}
.x42_c00437{left:589.920000px;}
.x4f_c00437{left:592.500000px;}
.x9f_c00437{left:594.420000px;}
.xaa_c00437{left:596.145000px;}
.x1f_c00437{left:598.920000px;}
.x2b_c00437{left:600.420000px;}
.x97_c00437{left:601.500000px;}
.xe6_c00437{left:604.500000px;}
.x90_c00437{left:607.080000px;}
.x74_c00437{left:612.000000px;}
.x85_c00437{left:615.000000px;}
.x7d_c00437{left:618.420000px;}
.x35_c00437{left:619.500000px;}
.x57_c00437{left:622.080000px;}
.x20_c00437{left:624.000000px;}
.xfa_c00437{left:625.080000px;}
.x2c_c00437{left:628.500000px;}
.x50_c00437{left:631.920000px;}
.x69_c00437{left:633.000000px;}
.x61_c00437{left:634.500000px;}
.xe7_c00437{left:637.500000px;}
.x75_c00437{left:640.500000px;}
.x58_c00437{left:643.500000px;}
.x36_c00437{left:645.000000px;}
.xba_c00437{left:646.500000px;}
.x11_c00437{left:651.000000px;}
.x76_c00437{left:654.000000px;}
.x7e_c00437{left:658.500000px;}
.x59_c00437{left:660.420000px;}
.x91_c00437{left:661.500000px;}
.xbb_c00437{left:663.000000px;}
.xc2_c00437{left:666.420000px;}
.x98_c00437{left:667.500000px;}
.x12_c00437{left:669.000000px;}
.xd8_c00437{left:672.000000px;}
.x21_c00437{left:676.080000px;}
.x37_c00437{left:678.000000px;}
.x51_c00437{left:679.500000px;}
.xbc_c00437{left:682.500000px;}
.x6a_c00437{left:684.000000px;}
.xc8_c00437{left:687.000000px;}
.x2d_c00437{left:688.080000px;}
.x62_c00437{left:691.500000px;}
.x86_c00437{left:692.580000px;}
.xed_c00437{left:697.920000px;}
.x38_c00437{left:699.420000px;}
.xcd_c00437{left:700.500000px;}
.x22_c00437{left:708.000000px;}
.x2e_c00437{left:709.920000px;}
.x13_c00437{left:713.580000px;}
.xa0_c00437{left:716.580000px;}
.x6b_c00437{left:718.920000px;}
.xce_c00437{left:721.500000px;}
@media print{
.v0_c00437{vertical-align:0.000000pt;}
.v1_c00437{vertical-align:3.040000pt;}
.ls1_c00437{letter-spacing:0.000000pt;}
.ls0_c00437{letter-spacing:13.171200pt;}
.ws0_c00437{word-spacing:-0.266415pt;}
.ws2_c00437{word-spacing:0.000000pt;}
.ws1_c00437{word-spacing:17.988605pt;}
.fs6_c00437{font-size:3.040000pt;}
.fs5_c00437{font-size:16.640000pt;}
.fs1_c00437{font-size:18.133333pt;}
.fs2_c00437{font-size:22.666667pt;}
.fs3_c00437{font-size:25.706667pt;}
.fs4_c00437{font-size:28.746667pt;}
.fs0_c00437{font-size:31.733333pt;}
.fs7_c00437{font-size:34.773333pt;}
.y0_c00437{bottom:0.000000pt;}
.ybd_c00437{bottom:221.106667pt;}
.ybe_c00437{bottom:222.266667pt;}
.ybc_c00437{bottom:238.440000pt;}
.yb9_c00437{bottom:239.773333pt;}
.yb8_c00437{bottom:241.306667pt;}
.yba_c00437{bottom:241.693333pt;}
.ybb_c00437{bottom:242.640000pt;}
.yb5_c00437{bottom:255.773333pt;}
.yb6_c00437{bottom:257.106667pt;}
.yb4_c00437{bottom:257.693333pt;}
.yb7_c00437{bottom:257.893333pt;}
.yb3_c00437{bottom:259.026667pt;}
.yaf_c00437{bottom:274.440000pt;}
.yac_c00437{bottom:275.226667pt;}
.yb0_c00437{bottom:275.400000pt;}
.yad_c00437{bottom:275.973333pt;}
.yae_c00437{bottom:276.360000pt;}
.yb1_c00437{bottom:276.560000pt;}
.yb2_c00437{bottom:277.306667pt;}
.yaa_c00437{bottom:293.106667pt;}
.ya7_c00437{bottom:293.306667pt;}
.ya6_c00437{bottom:293.693333pt;}
.yab_c00437{bottom:293.893333pt;}
.ya9_c00437{bottom:294.640000pt;}
.ya8_c00437{bottom:295.026667pt;}
.y9f_c00437{bottom:309.106667pt;}
.ya4_c00437{bottom:309.493333pt;}
.ya5_c00437{bottom:310.440000pt;}
.ya0_c00437{bottom:311.026667pt;}
.ya1_c00437{bottom:311.226667pt;}
.ya2_c00437{bottom:311.973333pt;}
.ya3_c00437{bottom:312.360000pt;}
.y9c_c00437{bottom:327.773333pt;}
.y9b_c00437{bottom:328.360000pt;}
.y9e_c00437{bottom:329.306667pt;}
.y9d_c00437{bottom:329.693333pt;}
.y9a_c00437{bottom:343.773333pt;}
.y99_c00437{bottom:347.026667pt;}
.y98_c00437{bottom:362.440000pt;}
.y97_c00437{bottom:364.360000pt;}
.y94_c00437{bottom:379.773333pt;}
.y96_c00437{bottom:381.693333pt;}
.y95_c00437{bottom:381.893333pt;}
.y90_c00437{bottom:397.106667pt;}
.y92_c00437{bottom:398.066667pt;}
.y91_c00437{bottom:399.026667pt;}
.y93_c00437{bottom:399.973333pt;}
.y8f_c00437{bottom:414.826667pt;}
.y8e_c00437{bottom:415.773333pt;}
.y8d_c00437{bottom:417.693333pt;}
.y8b_c00437{bottom:433.106667pt;}
.y8a_c00437{bottom:433.893333pt;}
.y8c_c00437{bottom:434.640000pt;}
.y89_c00437{bottom:435.026667pt;}
.y87_c00437{bottom:448.360000pt;}
.y88_c00437{bottom:450.440000pt;}
.y86_c00437{bottom:451.400000pt;}
.y84_c00437{bottom:451.973333pt;}
.y85_c00437{bottom:452.360000pt;}
.y7e_c00437{bottom:466.640000pt;}
.y81_c00437{bottom:467.773333pt;}
.y82_c00437{bottom:468.560000pt;}
.y7f_c00437{bottom:469.306667pt;}
.y80_c00437{bottom:469.693333pt;}
.y83_c00437{bottom:469.893333pt;}
.y78_c00437{bottom:483.773333pt;}
.y79_c00437{bottom:485.106667pt;}
.y7b_c00437{bottom:485.493333pt;}
.y77_c00437{bottom:487.026667pt;}
.y7a_c00437{bottom:487.226667pt;}
.y7d_c00437{bottom:487.973333pt;}
.y7c_c00437{bottom:488.360000pt;}
.y76_c00437{bottom:502.440000pt;}
.y73_c00437{bottom:503.226667pt;}
.y72_c00437{bottom:503.400000pt;}
.y75_c00437{bottom:503.773333pt;}
.y71_c00437{bottom:504.360000pt;}
.y74_c00437{bottom:505.693333pt;}
.y6f_c00437{bottom:519.773333pt;}
.y70_c00437{bottom:521.106667pt;}
.y6d_c00437{bottom:521.693333pt;}
.y6e_c00437{bottom:523.040000pt;}
.y6c_c00437{bottom:536.360000pt;}
.y6a_c00437{bottom:537.706667pt;}
.y67_c00437{bottom:538.066667pt;}
.y69_c00437{bottom:538.440000pt;}
.y68_c00437{bottom:539.973333pt;}
.y6b_c00437{bottom:540.360000pt;}
.y66_c00437{bottom:555.773333pt;}
.y63_c00437{bottom:556.733333pt;}
.y64_c00437{bottom:557.306667pt;}
.y65_c00437{bottom:557.693333pt;}
.y61_c00437{bottom:574.066667pt;}
.y62_c00437{bottom:574.640000pt;}
.y60_c00437{bottom:575.026667pt;}
.y5f_c00437{bottom:590.440000pt;}
.y5e_c00437{bottom:591.400000pt;}
.y5d_c00437{bottom:592.360000pt;}
.y5c_c00437{bottom:607.773333pt;}
.y5b_c00437{bottom:608.933333pt;}
.y59_c00437{bottom:609.306667pt;}
.y5a_c00437{bottom:609.693333pt;}
.y58_c00437{bottom:610.640000pt;}
.y55_c00437{bottom:625.106667pt;}
.y56_c00437{bottom:626.440000pt;}
.y54_c00437{bottom:627.026667pt;}
.y57_c00437{bottom:627.400000pt;}
.y52_c00437{bottom:642.440000pt;}
.y4e_c00437{bottom:643.400000pt;}
.y51_c00437{bottom:644.360000pt;}
.y4f_c00437{bottom:644.560000pt;}
.y50_c00437{bottom:645.306667pt;}
.y53_c00437{bottom:645.693333pt;}
.y4b_c00437{bottom:659.773333pt;}
.y4d_c00437{bottom:661.106667pt;}
.y49_c00437{bottom:662.066667pt;}
.y4a_c00437{bottom:662.640000pt;}
.y4c_c00437{bottom:663.026667pt;}
.y47_c00437{bottom:678.440000pt;}
.y48_c00437{bottom:679.400000pt;}
.y46_c00437{bottom:680.360000pt;}
.y45_c00437{bottom:695.026667pt;}
.y43_c00437{bottom:695.773333pt;}
.y41_c00437{bottom:697.693333pt;}
.y42_c00437{bottom:697.706667pt;}
.y44_c00437{bottom:697.893333pt;}
.y3f_c00437{bottom:713.106667pt;}
.y40_c00437{bottom:714.066667pt;}
.y3c_c00437{bottom:715.026667pt;}
.y3e_c00437{bottom:715.040000pt;}
.y3d_c00437{bottom:715.226667pt;}
.y38_c00437{bottom:729.693333pt;}
.y39_c00437{bottom:730.066667pt;}
.y34_c00437{bottom:730.440000pt;}
.y3a_c00437{bottom:730.640000pt;}
.y37_c00437{bottom:731.026667pt;}
.y36_c00437{bottom:731.400000pt;}
.y35_c00437{bottom:732.373333pt;}
.y3b_c00437{bottom:732.560000pt;}
.y33_c00437{bottom:749.693333pt;}
.y32_c00437{bottom:764.360000pt;}
.y31_c00437{bottom:766.266667pt;}
.y2d_c00437{bottom:766.440000pt;}
.y30_c00437{bottom:767.400000pt;}
.y2f_c00437{bottom:768.360000pt;}
.y2e_c00437{bottom:768.373333pt;}
.y28_c00437{bottom:790.066667pt;}
.y2a_c00437{bottom:790.266667pt;}
.y27_c00437{bottom:791.026667pt;}
.y2c_c00437{bottom:791.600000pt;}
.y29_c00437{bottom:791.973333pt;}
.y2b_c00437{bottom:792.933333pt;}
.y23_c00437{bottom:806.640000pt;}
.y22_c00437{bottom:807.400000pt;}
.y24_c00437{bottom:807.600000pt;}
.y21_c00437{bottom:808.360000pt;}
.y26_c00437{bottom:808.560000pt;}
.y25_c00437{bottom:810.266667pt;}
.y20_c00437{bottom:829.693333pt;}
.y1d_c00437{bottom:831.400000pt;}
.y1f_c00437{bottom:832.733333pt;}
.y1e_c00437{bottom:833.693333pt;}
.y1a_c00437{bottom:870.440000pt;}
.y18_c00437{bottom:871.400000pt;}
.y19_c00437{bottom:872.360000pt;}
.y1b_c00437{bottom:872.560000pt;}
.y1c_c00437{bottom:873.306667pt;}
.y14_c00437{bottom:887.773333pt;}
.y17_c00437{bottom:887.973333pt;}
.y13_c00437{bottom:889.693333pt;}
.y16_c00437{bottom:889.893333pt;}
.y15_c00437{bottom:890.640000pt;}
.y11_c00437{bottom:904.360000pt;}
.y10_c00437{bottom:905.106667pt;}
.ye_c00437{bottom:907.026667pt;}
.y12_c00437{bottom:907.226667pt;}
.yf_c00437{bottom:907.973333pt;}
.ya_c00437{bottom:922.440000pt;}
.yc_c00437{bottom:922.640000pt;}
.yd_c00437{bottom:923.773333pt;}
.y9_c00437{bottom:924.360000pt;}
.yb_c00437{bottom:924.560000pt;}
.y5_c00437{bottom:939.400000pt;}
.y6_c00437{bottom:941.106667pt;}
.y4_c00437{bottom:941.693333pt;}
.y7_c00437{bottom:941.893333pt;}
.y3_c00437{bottom:942.640000pt;}
.y8_c00437{bottom:943.026667pt;}
.y1_c00437{bottom:974.440000pt;}
.y2_c00437{bottom:976.933333pt;}
.h8_c00437{height:3.739141pt;}
.h6_c00437{height:20.466875pt;}
.h2_c00437{height:22.303646pt;}
.h3_c00437{height:27.879557pt;}
.h4_c00437{height:31.618698pt;}
.h7_c00437{height:34.658698pt;}
.h5_c00437{height:35.357839pt;}
.h1_c00437{height:39.031380pt;}
.h9_c00437{height:42.770521pt;}
.h0_c00437{height:1186.666667pt;}
.w0_c00437{width:782.666667pt;}
.x0_c00437{left:0.000000pt;}
.xa5_c00437{left:133.706667pt;}
.x1_c00437{left:134.666667pt;}
.xee_c00437{left:146.666667pt;}
.x52_c00437{left:148.000000pt;}
.x64_c00437{left:149.333333pt;}
.x3_c00437{left:150.666667pt;}
.x92_c00437{left:152.000000pt;}
.x77_c00437{left:153.706667pt;}
.xc3_c00437{left:159.040000pt;}
.xdd_c00437{left:164.000000pt;}
.x4_c00437{left:165.333333pt;}
.x23_c00437{left:166.293333pt;}
.xb0_c00437{left:168.000000pt;}
.xcf_c00437{left:169.333333pt;}
.xb5_c00437{left:170.666667pt;}
.x99_c00437{left:172.000000pt;}
.x39_c00437{left:176.760000pt;}
.x5_c00437{left:178.293333pt;}
.x63_c00437{left:182.666667pt;}
.x24_c00437{left:183.626667pt;}
.x5a_c00437{left:185.706667pt;}
.xe8_c00437{left:186.666667pt;}
.x47_c00437{left:188.000000pt;}
.xd3_c00437{left:189.333333pt;}
.xbd_c00437{left:193.706667pt;}
.x2f_c00437{left:196.000000pt;}
.xc4_c00437{left:198.666667pt;}
.x14_c00437{left:201.706667pt;}
.xb6_c00437{left:204.373333pt;}
.x7f_c00437{left:205.333333pt;}
.xa6_c00437{left:206.666667pt;}
.xd4_c00437{left:208.000000pt;}
.x8b_c00437{left:209.706667pt;}
.x3a_c00437{left:210.666667pt;}
.xab_c00437{left:212.960000pt;}
.xe9_c00437{left:214.666667pt;}
.xde_c00437{left:216.960000pt;}
.x93_c00437{left:219.040000pt;}
.x6c_c00437{left:220.000000pt;}
.xef_c00437{left:221.333333pt;}
.x6_c00437{left:224.000000pt;}
.xae_c00437{left:225.333333pt;}
.xc9_c00437{left:226.666667pt;}
.x9a_c00437{left:228.373333pt;}
.x65_c00437{left:229.333333pt;}
.x70_c00437{left:230.666667pt;}
.x87_c00437{left:232.000000pt;}
.x15_c00437{left:233.706667pt;}
.xf0_c00437{left:234.666667pt;}
.xe0_c00437{left:236.000000pt;}
.xf7_c00437{left:237.333333pt;}
.x5b_c00437{left:238.666667pt;}
.x43_c00437{left:240.373333pt;}
.xbe_c00437{left:244.373333pt;}
.x48_c00437{left:247.040000pt;}
.x66_c00437{left:249.333333pt;}
.x94_c00437{left:252.000000pt;}
.x3b_c00437{left:253.706667pt;}
.x25_c00437{left:254.666667pt;}
.xd9_c00437{left:256.000000pt;}
.x5c_c00437{left:257.333333pt;}
.x16_c00437{left:259.040000pt;}
.xdf_c00437{left:261.133333pt;}
.xbf_c00437{left:262.666667pt;}
.xca_c00437{left:264.000000pt;}
.x6d_c00437{left:266.666667pt;}
.xf4_c00437{left:268.960000pt;}
.x7_c00437{left:271.040000pt;}
.xac_c00437{left:274.666667pt;}
.x30_c00437{left:275.800000pt;}
.x71_c00437{left:277.333333pt;}
.xb7_c00437{left:280.000000pt;}
.x9b_c00437{left:280.960000pt;}
.x17_c00437{left:284.000000pt;}
.x6e_c00437{left:284.960000pt;}
.xa7_c00437{left:286.666667pt;}
.x80_c00437{left:288.000000pt;}
.xad_c00437{left:289.706667pt;}
.x78_c00437{left:290.666667pt;}
.xd0_c00437{left:294.666667pt;}
.xc0_c00437{left:296.000000pt;}
.x3c_c00437{left:296.960000pt;}
.x8_c00437{left:300.373333pt;}
.x8c_c00437{left:304.000000pt;}
.x31_c00437{left:306.293333pt;}
.xc5_c00437{left:307.626667pt;}
.x49_c00437{left:308.960000pt;}
.x53_c00437{left:310.666667pt;}
.x44_c00437{left:313.333333pt;}
.xe4_c00437{left:317.706667pt;}
.xa1_c00437{left:318.666667pt;}
.xda_c00437{left:320.000000pt;}
.xc6_c00437{left:321.333333pt;}
.x3d_c00437{left:323.040000pt;}
.x9_c00437{left:324.000000pt;}
.x26_c00437{left:325.333333pt;}
.x9c_c00437{left:327.040000pt;}
.x4a_c00437{left:328.373333pt;}
.xa8_c00437{left:329.333333pt;}
.xb8_c00437{left:332.000000pt;}
.xc1_c00437{left:332.960000pt;}
.x81_c00437{left:334.293333pt;}
.xf8_c00437{left:336.000000pt;}
.x95_c00437{left:338.666667pt;}
.x88_c00437{left:340.000000pt;}
.xf5_c00437{left:341.333333pt;}
.xb1_c00437{left:345.333333pt;}
.x27_c00437{left:346.666667pt;}
.x18_c00437{left:349.706667pt;}
.x4b_c00437{left:351.040000pt;}
.x79_c00437{left:352.000000pt;}
.xea_c00437{left:353.333333pt;}
.xf1_c00437{left:354.666667pt;}
.x8d_c00437{left:355.626667pt;}
.x6f_c00437{left:357.333333pt;}
.xa2_c00437{left:358.666667pt;}
.x2_c00437{left:362.666667pt;}
.xdb_c00437{left:365.333333pt;}
.xe1_c00437{left:366.666667pt;}
.xa9_c00437{left:367.626667pt;}
.x3e_c00437{left:369.333333pt;}
.xeb_c00437{left:370.293333pt;}
.xa_c00437{left:372.000000pt;}
.xb9_c00437{left:373.333333pt;}
.x5d_c00437{left:378.293333pt;}
.x19_c00437{left:380.000000pt;}
.x9d_c00437{left:381.333333pt;}
.x7a_c00437{left:382.666667pt;}
.x8e_c00437{left:384.000000pt;}
.x72_c00437{left:385.333333pt;}
.xf9_c00437{left:386.666667pt;}
.x45_c00437{left:390.666667pt;}
.x54_c00437{left:393.333333pt;}
.x3f_c00437{left:395.040000pt;}
.xe2_c00437{left:396.000000pt;}
.x28_c00437{left:397.333333pt;}
.x1a_c00437{left:400.000000pt;}
.x82_c00437{left:401.333333pt;}
.x32_c00437{left:404.000000pt;}
.xf6_c00437{left:405.333333pt;}
.x96_c00437{left:406.293333pt;}
.xb2_c00437{left:410.666667pt;}
.x67_c00437{left:412.000000pt;}
.xb_c00437{left:417.333333pt;}
.xd5_c00437{left:419.040000pt;}
.x4c_c00437{left:420.000000pt;}
.x5e_c00437{left:423.426667pt;}
.x8f_c00437{left:426.293333pt;}
.x1b_c00437{left:428.373333pt;}
.x7b_c00437{left:429.333333pt;}
.xc_c00437{left:430.666667pt;}
.xb3_c00437{left:431.626667pt;}
.xec_c00437{left:433.333333pt;}
.x55_c00437{left:435.040000pt;}
.xf2_c00437{left:436.373333pt;}
.xcb_c00437{left:437.333333pt;}
.x9e_c00437{left:441.333333pt;}
.x5f_c00437{left:442.666667pt;}
.xd6_c00437{left:444.000000pt;}
.x40_c00437{left:445.333333pt;}
.xa3_c00437{left:447.040000pt;}
.x4d_c00437{left:449.706667pt;}
.x29_c00437{left:451.040000pt;}
.x1c_c00437{left:452.000000pt;}
.xd_c00437{left:456.000000pt;}
.x46_c00437{left:457.706667pt;}
.x83_c00437{left:458.666667pt;}
.xaf_c00437{left:460.573333pt;}
.xe3_c00437{left:463.040000pt;}
.xd1_c00437{left:464.960000pt;}
.xcc_c00437{left:466.666667pt;}
.x89_c00437{left:468.000000pt;}
.xa4_c00437{left:470.666667pt;}
.xe_c00437{left:471.626667pt;}
.xb4_c00437{left:473.333333pt;}
.x84_c00437{left:474.666667pt;}
.x2a_c00437{left:476.373333pt;}
.x33_c00437{left:478.666667pt;}
.x60_c00437{left:480.373333pt;}
.x41_c00437{left:483.626667pt;}
.xf3_c00437{left:485.333333pt;}
.xdc_c00437{left:486.666667pt;}
.x1d_c00437{left:489.333333pt;}
.x7c_c00437{left:490.293333pt;}
.xd2_c00437{left:493.333333pt;}
.xe5_c00437{left:495.626667pt;}
.xc7_c00437{left:497.333333pt;}
.x68_c00437{left:499.040000pt;}
.xf_c00437{left:500.000000pt;}
.x4e_c00437{left:503.040000pt;}
.xd7_c00437{left:506.293333pt;}
.x73_c00437{left:507.800000pt;}
.x34_c00437{left:509.706667pt;}
.x8a_c00437{left:512.960000pt;}
.x1e_c00437{left:514.293333pt;}
.x10_c00437{left:515.626667pt;}
.x56_c00437{left:517.333333pt;}
.x42_c00437{left:524.373333pt;}
.x4f_c00437{left:526.666667pt;}
.x9f_c00437{left:528.373333pt;}
.xaa_c00437{left:529.906667pt;}
.x1f_c00437{left:532.373333pt;}
.x2b_c00437{left:533.706667pt;}
.x97_c00437{left:534.666667pt;}
.xe6_c00437{left:537.333333pt;}
.x90_c00437{left:539.626667pt;}
.x74_c00437{left:544.000000pt;}
.x85_c00437{left:546.666667pt;}
.x7d_c00437{left:549.706667pt;}
.x35_c00437{left:550.666667pt;}
.x57_c00437{left:552.960000pt;}
.x20_c00437{left:554.666667pt;}
.xfa_c00437{left:555.626667pt;}
.x2c_c00437{left:558.666667pt;}
.x50_c00437{left:561.706667pt;}
.x69_c00437{left:562.666667pt;}
.x61_c00437{left:564.000000pt;}
.xe7_c00437{left:566.666667pt;}
.x75_c00437{left:569.333333pt;}
.x58_c00437{left:572.000000pt;}
.x36_c00437{left:573.333333pt;}
.xba_c00437{left:574.666667pt;}
.x11_c00437{left:578.666667pt;}
.x76_c00437{left:581.333333pt;}
.x7e_c00437{left:585.333333pt;}
.x59_c00437{left:587.040000pt;}
.x91_c00437{left:588.000000pt;}
.xbb_c00437{left:589.333333pt;}
.xc2_c00437{left:592.373333pt;}
.x98_c00437{left:593.333333pt;}
.x12_c00437{left:594.666667pt;}
.xd8_c00437{left:597.333333pt;}
.x21_c00437{left:600.960000pt;}
.x37_c00437{left:602.666667pt;}
.x51_c00437{left:604.000000pt;}
.xbc_c00437{left:606.666667pt;}
.x6a_c00437{left:608.000000pt;}
.xc8_c00437{left:610.666667pt;}
.x2d_c00437{left:611.626667pt;}
.x62_c00437{left:614.666667pt;}
.x86_c00437{left:615.626667pt;}
.xed_c00437{left:620.373333pt;}
.x38_c00437{left:621.706667pt;}
.xcd_c00437{left:622.666667pt;}
.x22_c00437{left:629.333333pt;}
.x2e_c00437{left:631.040000pt;}
.x13_c00437{left:634.293333pt;}
.xa0_c00437{left:636.960000pt;}
.x6b_c00437{left:639.040000pt;}
.xce_c00437{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f954ca777bbd79d3c7db9303.woff2')format("woff");}.ff1_c00438{font-family:ff1_c00438;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m103_c00438{transform:matrix(0.210084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210084,0.000000,0.000000,0.250000,0,0);}
.m101_c00438{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.m105_c00438{transform:matrix(0.281513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281513,0.000000,0.000000,0.250000,0,0);}
.m59_c00438{transform:matrix(0.333206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333206,0.000000,0.000000,0.250000,0,0);}
.md3_c00438{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);}
.m10c_c00438{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mef_c00438{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.m60_c00438{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.m3d_c00438{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m5e_c00438{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mae_c00438{transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);}
.m66_c00438{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.md1_c00438{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m54_c00438{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.me8_c00438{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.m9a_c00438{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.ma5_c00438{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.mfa_c00438{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m20_c00438{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m111_c00438{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.mca_c00438{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.mcb_c00438{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m107_c00438{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.med_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);}
.me0_c00438{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m55_c00438{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m80_c00438{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m3a_c00438{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.m8b_c00438{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mb9_c00438{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m4e_c00438{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m6f_c00438{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m97_c00438{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m27_c00438{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.mc9_c00438{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.mba_c00438{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m46_c00438{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m65_c00438{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mf5_c00438{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m96_c00438{transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);}
.m1b_c00438{transform:matrix(0.417440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417440,0.000000,0.000000,0.250000,0,0);}
.m109_c00438{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m87_c00438{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m10e_c00438{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.me2_c00438{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m84_c00438{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m1c_c00438{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.mcd_c00438{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.m14_c00438{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.ma0_c00438{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.md2_c00438{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mf8_c00438{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.mc1_c00438{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mf0_c00438{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m42_c00438{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.md_c00438{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.me9_c00438{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m3f_c00438{transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);}
.m4a_c00438{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m82_c00438{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m6d_c00438{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mec_c00438{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m45_c00438{transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);}
.m41_c00438{transform:matrix(0.428108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428108,0.000000,0.000000,0.250000,0,0);}
.m5d_c00438{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.me4_c00438{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.ma4_c00438{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m93_c00438{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m89_c00438{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m4d_c00438{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mde_c00438{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m94_c00438{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.maa_c00438{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m77_c00438{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.mb4_c00438{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m98_c00438{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m102_c00438{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m36_c00438{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m7f_c00438{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m1d_c00438{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.mc8_c00438{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m29_c00438{transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);}
.md7_c00438{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m7d_c00438{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m110_c00438{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m6a_c00438{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.mf1_c00438{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.me6_c00438{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.ma2_c00438{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m8a_c00438{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.mdd_c00438{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m79_c00438{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.mb8_c00438{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.m44_c00438{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m18_c00438{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m92_c00438{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.ma6_c00438{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.mf7_c00438{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.me1_c00438{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.md6_c00438{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.m8e_c00438{transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);}
.m22_c00438{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.mc6_c00438{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.mb3_c00438{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m9_c00438{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mb_c00438{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m32_c00438{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m112_c00438{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.mdf_c00438{transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);}
.m4f_c00438{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mad_c00438{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.md9_c00438{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.mb0_c00438{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mbc_c00438{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m35_c00438{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);}
.m1_c00438{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m10_c00438{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mb7_c00438{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.m38_c00438{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mc5_c00438{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m5b_c00438{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m6c_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);}
.mce_c00438{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m62_c00438{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mda_c00438{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m70_c00438{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m7b_c00438{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m26_c00438{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m1e_c00438{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.me5_c00438{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m3_c00438{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);}
.m50_c00438{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m58_c00438{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mc0_c00438{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.mac_c00438{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m61_c00438{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m34_c00438{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.m76_c00438{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m49_c00438{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m9d_c00438{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m19_c00438{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);}
.m10f_c00438{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m43_c00438{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.mbb_c00438{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m90_c00438{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m37_c00438{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.ma8_c00438{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m21_c00438{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);}
.m104_c00438{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.mbe_c00438{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m74_c00438{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m67_c00438{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m106_c00438{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mf2_c00438{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m7a_c00438{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.md5_c00438{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m52_c00438{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m86_c00438{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m10d_c00438{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m13_c00438{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m4c_c00438{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m8f_c00438{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mf_c00438{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m68_c00438{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mb1_c00438{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m7c_c00438{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.mcc_c00438{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m6_c00438{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m9b_c00438{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m64_c00438{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mab_c00438{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.mc3_c00438{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.me_c00438{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m5_c00438{transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);}
.m72_c00438{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m39_c00438{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m7e_c00438{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m8_c00438{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m69_c00438{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m53_c00438{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mc2_c00438{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m9e_c00438{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.ma3_c00438{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m5f_c00438{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m57_c00438{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.md4_c00438{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m23_c00438{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m10b_c00438{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mdb_c00438{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);}
.mc7_c00438{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m85_c00438{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m6b_c00438{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m3b_c00438{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.mff_c00438{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.meb_c00438{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.mfe_c00438{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m7_c00438{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.ma9_c00438{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.mfc_c00438{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m63_c00438{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.md0_c00438{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.mb6_c00438{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m48_c00438{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.mb5_c00438{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m8c_c00438{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mcf_c00438{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m9f_c00438{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m10a_c00438{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m15_c00438{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m108_c00438{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m3e_c00438{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.me3_c00438{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m17_c00438{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.mee_c00438{transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);}
.m6e_c00438{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m75_c00438{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m3c_c00438{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.mfd_c00438{transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);}
.mbd_c00438{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m33_c00438{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.mb2_c00438{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.md8_c00438{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.mf4_c00438{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mf3_c00438{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mc4_c00438{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.m9c_c00438{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m73_c00438{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m24_c00438{transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);}
.m56_c00438{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.ma_c00438{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.mc_c00438{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_c00438{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);}
.m91_c00438{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m40_c00438{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m1f_c00438{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m30_c00438{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.mea_c00438{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m25_c00438{transform:matrix(0.636029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636029,0.000000,0.000000,0.250000,0,0);}
.m16_c00438{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m95_c00438{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m2d_c00438{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.ma7_c00438{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.maf_c00438{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m2e_c00438{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m2c_c00438{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m71_c00438{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m31_c00438{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.m0_c00438{transform:matrix(0.679487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679487,0.000000,0.000000,0.250000,0,0);}
.m88_c00438{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m12_c00438{transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);}
.m1a_c00438{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m2a_c00438{transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);}
.m2b_c00438{transform:matrix(0.697794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697794,0.000000,0.000000,0.250000,0,0);}
.m47_c00438{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m2f_c00438{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);}
.m5a_c00438{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.m8d_c00438{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m78_c00438{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.mf6_c00438{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m83_c00438{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m99_c00438{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mbf_c00438{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.me7_c00438{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.ma1_c00438{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mf9_c00438{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.m81_c00438{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mfb_c00438{transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);}
.m51_c00438{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m2_c00438{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m100_c00438{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m5c_c00438{transform:matrix(0.888622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.888622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.888622,0.000000,0.000000,0.250000,0,0);}
.m4_c00438{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m28_c00438{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.m11_c00438{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m4b_c00438{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws3_c00438{word-spacing:-16.889280px;}
.ws1_c00438{word-spacing:-8.811328px;}
.ws0_c00438{word-spacing:-6.425697px;}
.ws2_c00438{word-spacing:-6.400641px;}
.ws4_c00438{word-spacing:0.000000px;}
._0_c00438{width:5.451249px;}
.fc0_c00438{color:transparent;}
.fs7_c00438{font-size:3.420000px;}
.fs2_c00438{font-size:13.620000px;}
.fs0_c00438{font-size:18.720000px;}
.fs4_c00438{font-size:20.400000px;}
.fs3_c00438{font-size:25.500000px;}
.fs1_c00438{font-size:28.920000px;}
.fs5_c00438{font-size:32.340000px;}
.fs6_c00438{font-size:35.700000px;}
.fs8_c00438{font-size:39.120000px;}
.y0_c00438{bottom:0.000000px;}
.ye3_c00438{bottom:254.745000px;}
.ye5_c00438{bottom:255.405000px;}
.ye4_c00438{bottom:255.630000px;}
.ye6_c00438{bottom:255.825000px;}
.ye2_c00438{bottom:256.905000px;}
.ydf_c00438{bottom:274.245000px;}
.ye0_c00438{bottom:274.905000px;}
.ye1_c00438{bottom:275.970000px;}
.yde_c00438{bottom:276.405000px;}
.ydb_c00438{bottom:292.245000px;}
.ydd_c00438{bottom:292.905000px;}
.ydc_c00438{bottom:294.405000px;}
.yda_c00438{bottom:295.470000px;}
.yd9_c00438{bottom:295.905000px;}
.yd6_c00438{bottom:311.970000px;}
.yd4_c00438{bottom:313.245000px;}
.yd5_c00438{bottom:313.905000px;}
.yd2_c00438{bottom:314.130000px;}
.yd7_c00438{bottom:314.970000px;}
.yd3_c00438{bottom:315.405000px;}
.yd8_c00438{bottom:316.470000px;}
.yd0_c00438{bottom:332.745000px;}
.yce_c00438{bottom:333.630000px;}
.yd1_c00438{bottom:333.825000px;}
.ycf_c00438{bottom:334.470000px;}
.ycd_c00438{bottom:334.905000px;}
.ycb_c00438{bottom:352.245000px;}
.ycc_c00438{bottom:353.970000px;}
.yca_c00438{bottom:354.405000px;}
.yc9_c00438{bottom:370.905000px;}
.yc6_c00438{bottom:371.745000px;}
.yc7_c00438{bottom:372.405000px;}
.yc8_c00438{bottom:372.630000px;}
.yc4_c00438{bottom:373.245000px;}
.yc5_c00438{bottom:373.905000px;}
.yc1_c00438{bottom:391.245000px;}
.ybe_c00438{bottom:391.470000px;}
.yc2_c00438{bottom:392.325000px;}
.yc0_c00438{bottom:393.405000px;}
.yc3_c00438{bottom:393.630000px;}
.ybf_c00438{bottom:394.470000px;}
.ybd_c00438{bottom:410.745000px;}
.yba_c00438{bottom:412.245000px;}
.ybb_c00438{bottom:412.905000px;}
.ybc_c00438{bottom:413.130000px;}
.yb9_c00438{bottom:414.405000px;}
.yb7_c00438{bottom:430.245000px;}
.yb4_c00438{bottom:431.745000px;}
.yb6_c00438{bottom:432.405000px;}
.yb5_c00438{bottom:432.630000px;}
.yb8_c00438{bottom:433.470000px;}
.yb3_c00438{bottom:433.905000px;}
.yb2_c00438{bottom:449.745000px;}
.yaf_c00438{bottom:451.245000px;}
.yb0_c00438{bottom:451.905000px;}
.yb1_c00438{bottom:452.970000px;}
.yae_c00438{bottom:453.405000px;}
.yab_c00438{bottom:469.245000px;}
.ya8_c00438{bottom:470.325000px;}
.ya9_c00438{bottom:470.745000px;}
.yac_c00438{bottom:471.405000px;}
.yad_c00438{bottom:471.630000px;}
.yaa_c00438{bottom:472.470000px;}
.ya7_c00438{bottom:472.905000px;}
.ya5_c00438{bottom:489.825000px;}
.ya3_c00438{bottom:490.245000px;}
.ya4_c00438{bottom:491.970000px;}
.ya2_c00438{bottom:492.405000px;}
.ya6_c00438{bottom:493.470000px;}
.ya1_c00438{bottom:507.405000px;}
.ya0_c00438{bottom:508.905000px;}
.y9f_c00438{bottom:509.745000px;}
.y9d_c00438{bottom:511.905000px;}
.y9e_c00438{bottom:512.970000px;}
.y9c_c00438{bottom:513.405000px;}
.y98_c00438{bottom:528.825000px;}
.y99_c00438{bottom:529.245000px;}
.y9b_c00438{bottom:530.130000px;}
.y96_c00438{bottom:530.745000px;}
.y97_c00438{bottom:531.405000px;}
.y9a_c00438{bottom:531.630000px;}
.y95_c00438{bottom:532.905000px;}
.y94_c00438{bottom:548.745000px;}
.y93_c00438{bottom:549.630000px;}
.y90_c00438{bottom:549.825000px;}
.y91_c00438{bottom:550.245000px;}
.y92_c00438{bottom:550.905000px;}
.y8f_c00438{bottom:551.130000px;}
.y8e_c00438{bottom:552.405000px;}
.y8d_c00438{bottom:569.325000px;}
.y8b_c00438{bottom:569.745000px;}
.y8c_c00438{bottom:570.405000px;}
.y8a_c00438{bottom:570.630000px;}
.y89_c00438{bottom:571.905000px;}
.y87_c00438{bottom:589.245000px;}
.y86_c00438{bottom:590.130000px;}
.y88_c00438{bottom:590.970000px;}
.y85_c00438{bottom:591.405000px;}
.y84_c00438{bottom:606.405000px;}
.y82_c00438{bottom:608.745000px;}
.y83_c00438{bottom:610.470000px;}
.y81_c00438{bottom:610.905000px;}
.y80_c00438{bottom:629.325000px;}
.y7e_c00438{bottom:629.745000px;}
.y7f_c00438{bottom:630.405000px;}
.y7d_c00438{bottom:631.905000px;}
.y7b_c00438{bottom:647.745000px;}
.y79_c00438{bottom:648.825000px;}
.y77_c00438{bottom:649.245000px;}
.y7a_c00438{bottom:649.905000px;}
.y7c_c00438{bottom:650.970000px;}
.y78_c00438{bottom:651.405000px;}
.y71_c00438{bottom:666.405000px;}
.y75_c00438{bottom:668.745000px;}
.y74_c00438{bottom:669.405000px;}
.y72_c00438{bottom:669.630000px;}
.y76_c00438{bottom:670.470000px;}
.y73_c00438{bottom:670.905000px;}
.y6f_c00438{bottom:686.970000px;}
.y6b_c00438{bottom:688.245000px;}
.y70_c00438{bottom:689.130000px;}
.y6e_c00438{bottom:689.325000px;}
.y6c_c00438{bottom:689.970000px;}
.y6d_c00438{bottom:690.405000px;}
.y67_c00438{bottom:706.905000px;}
.y66_c00438{bottom:707.745000px;}
.y6a_c00438{bottom:708.825000px;}
.y68_c00438{bottom:709.905000px;}
.y69_c00438{bottom:710.130000px;}
.y65_c00438{bottom:725.970000px;}
.y62_c00438{bottom:727.245000px;}
.y64_c00438{bottom:728.130000px;}
.y63_c00438{bottom:729.405000px;}
.y60_c00438{bottom:746.745000px;}
.y61_c00438{bottom:748.470000px;}
.y5f_c00438{bottom:748.905000px;}
.y5e_c00438{bottom:749.970000px;}
.y5c_c00438{bottom:766.245000px;}
.y5b_c00438{bottom:767.325000px;}
.y58_c00438{bottom:768.405000px;}
.y5a_c00438{bottom:768.630000px;}
.y5d_c00438{bottom:769.470000px;}
.y59_c00438{bottom:769.905000px;}
.y57_c00438{bottom:785.745000px;}
.y53_c00438{bottom:787.245000px;}
.y55_c00438{bottom:787.905000px;}
.y54_c00438{bottom:788.130000px;}
.y56_c00438{bottom:789.405000px;}
.y52_c00438{bottom:805.245000px;}
.y50_c00438{bottom:806.325000px;}
.y51_c00438{bottom:807.405000px;}
.y4e_c00438{bottom:807.825000px;}
.y4f_c00438{bottom:808.905000px;}
.y4d_c00438{bottom:809.970000px;}
.y49_c00438{bottom:826.245000px;}
.y4c_c00438{bottom:826.905000px;}
.y4b_c00438{bottom:827.970000px;}
.y4a_c00438{bottom:828.405000px;}
.y48_c00438{bottom:845.745000px;}
.y47_c00438{bottom:847.905000px;}
.y43_c00438{bottom:864.180000px;}
.y45_c00438{bottom:864.405000px;}
.y46_c00438{bottom:865.245000px;}
.y42_c00438{bottom:867.405000px;}
.y44_c00438{bottom:867.630000px;}
.y3e_c00438{bottom:884.745000px;}
.y41_c00438{bottom:885.630000px;}
.y40_c00438{bottom:886.905000px;}
.y3f_c00438{bottom:888.420000px;}
.y3a_c00438{bottom:916.050000px;}
.y3d_c00438{bottom:916.905000px;}
.y39_c00438{bottom:917.130000px;}
.y3b_c00438{bottom:917.970000px;}
.y3c_c00438{bottom:919.050000px;}
.y37_c00438{bottom:929.970000px;}
.y34_c00438{bottom:930.825000px;}
.y35_c00438{bottom:931.905000px;}
.y38_c00438{bottom:932.130000px;}
.y36_c00438{bottom:932.970000px;}
.y33_c00438{bottom:934.050000px;}
.y31_c00438{bottom:945.825000px;}
.y32_c00438{bottom:946.905000px;}
.y2f_c00438{bottom:947.130000px;}
.y30_c00438{bottom:947.970000px;}
.y29_c00438{bottom:959.970000px;}
.y2c_c00438{bottom:960.825000px;}
.y2b_c00438{bottom:961.905000px;}
.y2a_c00438{bottom:962.970000px;}
.y2d_c00438{bottom:963.195000px;}
.y2e_c00438{bottom:964.050000px;}
.y28_c00438{bottom:975.825000px;}
.y26_c00438{bottom:976.050000px;}
.y23_c00438{bottom:976.905000px;}
.y25_c00438{bottom:977.970000px;}
.y24_c00438{bottom:978.195000px;}
.y27_c00438{bottom:979.050000px;}
.y1e_c00438{bottom:989.550000px;}
.y22_c00438{bottom:990.405000px;}
.y21_c00438{bottom:991.470000px;}
.y20_c00438{bottom:992.130000px;}
.y1f_c00438{bottom:992.550000px;}
.y1b_c00438{bottom:1004.325000px;}
.y1d_c00438{bottom:1005.405000px;}
.y1c_c00438{bottom:1006.695000px;}
.y19_c00438{bottom:1019.325000px;}
.y15_c00438{bottom:1019.550000px;}
.y16_c00438{bottom:1020.405000px;}
.y17_c00438{bottom:1021.470000px;}
.y1a_c00438{bottom:1021.695000px;}
.y18_c00438{bottom:1022.550000px;}
.y13_c00438{bottom:1034.325000px;}
.y12_c00438{bottom:1035.405000px;}
.y11_c00438{bottom:1036.470000px;}
.y10_c00438{bottom:1036.695000px;}
.y14_c00438{bottom:1037.550000px;}
.ye_c00438{bottom:1048.905000px;}
.yf_c00438{bottom:1049.550000px;}
.yb_c00438{bottom:1050.405000px;}
.yd_c00438{bottom:1051.050000px;}
.ya_c00438{bottom:1051.470000px;}
.yc_c00438{bottom:1051.695000px;}
.y7_c00438{bottom:1062.825000px;}
.y5_c00438{bottom:1063.905000px;}
.y8_c00438{bottom:1064.325000px;}
.y9_c00438{bottom:1064.970000px;}
.y3_c00438{bottom:1065.195000px;}
.y6_c00438{bottom:1066.050000px;}
.y4_c00438{bottom:1066.470000px;}
.y2_c00438{bottom:1099.905000px;}
.y1_c00438{bottom:1103.130000px;}
.h8_c00438{height:4.206533px;}
.h3_c00438{height:16.752334px;}
.h1_c00438{height:23.025234px;}
.h5_c00438{height:25.091602px;}
.h4_c00438{height:31.364502px;}
.h2_c00438{height:35.571035px;}
.h6_c00438{height:39.777568px;}
.h7_c00438{height:43.910303px;}
.h9_c00438{height:48.116836px;}
.h0_c00438{height:1335.000000px;}
.w0_c00438{width:880.500000px;}
.x0_c00438{left:0.000000px;}
.x10_c00438{left:151.500000px;}
.x103_c00438{left:152.580000px;}
.x46_c00438{left:163.500000px;}
.x19_c00438{left:165.000000px;}
.x3_c00438{left:166.500000px;}
.x55_c00438{left:167.580000px;}
.x5c_c00438{left:169.920000px;}
.x68_c00438{left:172.500000px;}
.x52_c00438{left:174.420000px;}
.x92_c00438{left:177.000000px;}
.xdd_c00438{left:178.920000px;}
.x8b_c00438{left:180.420000px;}
.x104_c00438{left:181.500000px;}
.x4_c00438{left:182.580000px;}
.xd3_c00438{left:184.920000px;}
.xc0_c00438{left:186.420000px;}
.xa7_c00438{left:187.500000px;}
.xc6_c00438{left:188.580000px;}
.xb1_c00438{left:190.500000px;}
.xd9_c00438{left:192.000000px;}
.xbb_c00438{left:193.500000px;}
.x83_c00438{left:195.000000px;}
.x5d_c00438{left:196.080000px;}
.xcd_c00438{left:198.000000px;}
.xe2_c00438{left:199.080000px;}
.xf8_c00438{left:200.580000px;}
.x2c_c00438{left:202.080000px;}
.x11_c00438{left:205.080000px;}
.x36_c00438{left:207.000000px;}
.xb2_c00438{left:208.500000px;}
.x53_c00438{left:210.000000px;}
.x47_c00438{left:214.080000px;}
.x3e_c00438{left:215.145000px;}
.x37_c00438{left:217.080000px;}
.xa1_c00438{left:219.420000px;}
.x6f_c00438{left:220.500000px;}
.x10b_c00438{left:222.000000px;}
.xb3_c00438{left:223.080000px;}
.x2d_c00438{left:224.580000px;}
.x93_c00438{left:226.080000px;}
.x7b_c00438{left:229.920000px;}
.xf9_c00438{left:231.000000px;}
.x1a_c00438{left:232.080000px;}
.x5_c00438{left:233.580000px;}
.xd4_c00438{left:236.580000px;}
.x49_c00438{left:239.580000px;}
.x10c_c00438{left:243.420000px;}
.xa8_c00438{left:244.920000px;}
.xc7_c00438{left:246.420000px;}
.x5e_c00438{left:247.500000px;}
.x107_c00438{left:249.000000px;}
.x2e_c00438{left:251.580000px;}
.x38_c00438{left:253.500000px;}
.x22_c00438{left:255.000000px;}
.x70_c00438{left:256.920000px;}
.xe3_c00438{left:258.420000px;}
.x7c_c00438{left:259.920000px;}
.x12_c00438{left:262.080000px;}
.x84_c00438{left:264.000000px;}
.x6_c00438{left:265.500000px;}
.x54_c00438{left:267.000000px;}
.xea_c00438{left:268.500000px;}
.xef_c00438{left:270.420000px;}
.xa9_c00438{left:271.920000px;}
.x13_c00438{left:273.420000px;}
.xf2_c00438{left:274.920000px;}
.x56_c00438{left:276.000000px;}
.x9a_c00438{left:277.500000px;}
.x3f_c00438{left:279.000000px;}
.xb4_c00438{left:280.500000px;}
.x94_c00438{left:282.000000px;}
.x4a_c00438{left:283.920000px;}
.xa2_c00438{left:285.000000px;}
.x39_c00438{left:286.500000px;}
.x1b_c00438{left:288.000000px;}
.x69_c00438{left:289.500000px;}
.x23_c00438{left:292.500000px;}
.x48_c00438{left:293.580000px;}
.xbc_c00438{left:297.000000px;}
.x1c_c00438{left:298.920000px;}
.xc8_c00438{left:300.000000px;}
.xa3_c00438{left:301.500000px;}
.x7d_c00438{left:304.500000px;}
.x57_c00438{left:306.420000px;}
.xda_c00438{left:307.500000px;}
.x14_c00438{left:309.000000px;}
.x5f_c00438{left:310.080000px;}
.x9b_c00438{left:312.000000px;}
.x3a_c00438{left:313.920000px;}
.xfa_c00438{left:315.000000px;}
.xc1_c00438{left:316.920000px;}
.x40_c00438{left:318.000000px;}
.xb5_c00438{left:319.500000px;}
.x111_c00438{left:322.500000px;}
.x9c_c00438{left:324.000000px;}
.xaa_c00438{left:325.500000px;}
.x2f_c00438{left:327.000000px;}
.x105_c00438{left:328.500000px;}
.x71_c00438{left:330.000000px;}
.x4b_c00438{left:334.500000px;}
.x7_c00438{left:337.080000px;}
.x100_c00438{left:339.000000px;}
.xa4_c00438{left:340.920000px;}
.x7e_c00438{left:342.000000px;}
.x60_c00438{left:343.500000px;}
.xd5_c00438{left:345.000000px;}
.xbd_c00438{left:346.500000px;}
.xfb_c00438{left:348.000000px;}
.xce_c00438{left:351.000000px;}
.xc9_c00438{left:352.080000px;}
.x15_c00438{left:354.000000px;}
.x3b_c00438{left:357.000000px;}
.x1d_c00438{left:358.500000px;}
.x7f_c00438{left:359.580000px;}
.x72_c00438{left:361.080000px;}
.x24_c00438{left:363.000000px;}
.x106_c00438{left:364.080000px;}
.x112_c00438{left:366.000000px;}
.xde_c00438{left:367.500000px;}
.xd6_c00438{left:369.420000px;}
.xb6_c00438{left:371.580000px;}
.x8_c00438{left:373.500000px;}
.x61_c00438{left:376.080000px;}
.xab_c00438{left:379.080000px;}
.x16_c00438{left:381.420000px;}
.xe4_c00438{left:382.920000px;}
.x3c_c00438{left:385.920000px;}
.x41_c00438{left:387.645000px;}
.x1e_c00438{left:389.580000px;}
.x9_c00438{left:391.080000px;}
.x30_c00438{left:393.420000px;}
.xf3_c00438{left:394.500000px;}
.x4c_c00438{left:395.580000px;}
.xc2_c00438{left:397.500000px;}
.x95_c00438{left:399.420000px;}
.xf0_c00438{left:400.920000px;}
.x73_c00438{left:402.000000px;}
.x1_c00438{left:405.000000px;}
.x25_c00438{left:406.500000px;}
.xcf_c00438{left:408.000000px;}
.x31_c00438{left:409.500000px;}
.x3d_c00438{left:412.500000px;}
.x4d_c00438{left:414.000000px;}
.xfc_c00438{left:415.500000px;}
.x8c_c00438{left:417.420000px;}
.x108_c00438{left:420.000000px;}
.x6a_c00438{left:421.920000px;}
.xac_c00438{left:423.420000px;}
.x17_c00438{left:424.500000px;}
.x96_c00438{left:426.420000px;}
.x101_c00438{left:427.500000px;}
.x42_c00438{left:430.500000px;}
.xd0_c00438{left:432.000000px;}
.x74_c00438{left:433.500000px;}
.xf4_c00438{left:436.920000px;}
.x62_c00438{left:439.500000px;}
.xca_c00438{left:441.000000px;}
.xe6_c00438{left:445.500000px;}
.xeb_c00438{left:447.420000px;}
.x85_c00438{left:450.420000px;}
.xa_c00438{left:453.645000px;}
.x75_c00438{left:454.920000px;}
.xc3_c00438{left:456.000000px;}
.x9d_c00438{left:459.000000px;}
.x6b_c00438{left:461.580000px;}
.x8d_c00438{left:463.500000px;}
.xad_c00438{left:465.000000px;}
.x58_c00438{left:467.580000px;}
.x32_c00438{left:471.000000px;}
.x26_c00438{left:472.920000px;}
.x1f_c00438{left:475.500000px;}
.xbe_c00438{left:477.420000px;}
.x113_c00438{left:478.920000px;}
.x18_c00438{left:480.000000px;}
.xd7_c00438{left:481.500000px;}
.x86_c00438{left:484.500000px;}
.xc4_c00438{left:487.500000px;}
.xdf_c00438{left:489.000000px;}
.x27_c00438{left:490.920000px;}
.x117_c00438{left:493.080000px;}
.xfd_c00438{left:496.500000px;}
.xb_c00438{left:498.420000px;}
.xbf_c00438{left:504.000000px;}
.xd1_c00438{left:505.500000px;}
.xb7_c00438{left:507.000000px;}
.x10d_c00438{left:508.500000px;}
.x20_c00438{left:510.420000px;}
.x6c_c00438{left:512.580000px;}
.xe0_c00438{left:514.500000px;}
.x87_c00438{left:516.000000px;}
.x80_c00438{left:517.080000px;}
.x63_c00438{left:520.080000px;}
.xa5_c00438{left:522.420000px;}
.xae_c00438{left:524.580000px;}
.x118_c00438{left:526.080000px;}
.xf1_c00438{left:528.000000px;}
.x76_c00438{left:529.080000px;}
.x59_c00438{left:531.420000px;}
.x10e_c00438{left:533.580000px;}
.x21_c00438{left:537.000000px;}
.xcb_c00438{left:540.420000px;}
.x9e_c00438{left:541.920000px;}
.xf5_c00438{left:543.000000px;}
.xe7_c00438{left:544.500000px;}
.x88_c00438{left:546.000000px;}
.xc_c00438{left:547.500000px;}
.x77_c00438{left:549.000000px;}
.x64_c00438{left:550.500000px;}
.xb8_c00438{left:553.080000px;}
.x114_c00438{left:556.920000px;}
.x5a_c00438{left:558.420000px;}
.x28_c00438{left:561.000000px;}
.xec_c00438{left:562.500000px;}
.x119_c00438{left:564.000000px;}
.x43_c00438{left:565.500000px;}
.xaf_c00438{left:568.500000px;}
.xb9_c00438{left:571.920000px;}
.xe1_c00438{left:573.000000px;}
.x33_c00438{left:576.420000px;}
.xfe_c00438{left:577.920000px;}
.x4e_c00438{left:582.420000px;}
.x97_c00438{left:585.000000px;}
.xed_c00438{left:586.500000px;}
.x5b_c00438{left:589.500000px;}
.x34_c00438{left:591.645000px;}
.x4f_c00438{left:594.420000px;}
.x9f_c00438{left:595.500000px;}
.x8e_c00438{left:597.000000px;}
.xcc_c00438{left:598.500000px;}
.xe8_c00438{left:599.580000px;}
.x115_c00438{left:601.920000px;}
.x11a_c00438{left:603.000000px;}
.x65_c00438{left:604.500000px;}
.x109_c00438{left:606.000000px;}
.x10f_c00438{left:607.920000px;}
.xd_c00438{left:609.420000px;}
.x89_c00438{left:610.920000px;}
.x78_c00438{left:615.000000px;}
.xdb_c00438{left:618.420000px;}
.x98_c00438{left:621.000000px;}
.xf6_c00438{left:624.000000px;}
.x81_c00438{left:625.080000px;}
.xe_c00438{left:627.000000px;}
.xa6_c00438{left:628.920000px;}
.xc5_c00438{left:630.000000px;}
.x29_c00438{left:631.080000px;}
.x66_c00438{left:634.920000px;}
.x6d_c00438{left:637.080000px;}
.x99_c00438{left:639.000000px;}
.x8f_c00438{left:643.080000px;}
.x102_c00438{left:646.500000px;}
.x50_c00438{left:648.000000px;}
.xa0_c00438{left:649.500000px;}
.xe5_c00438{left:651.000000px;}
.x10a_c00438{left:652.080000px;}
.xf7_c00438{left:654.000000px;}
.xd2_c00438{left:657.000000px;}
.x6e_c00438{left:658.080000px;}
.x11b_c00438{left:660.000000px;}
.xb0_c00438{left:661.500000px;}
.x44_c00438{left:662.580000px;}
.x79_c00438{left:664.080000px;}
.x110_c00438{left:666.000000px;}
.xff_c00438{left:670.500000px;}
.x35_c00438{left:672.000000px;}
.xdc_c00438{left:673.080000px;}
.x90_c00438{left:674.580000px;}
.xd8_c00438{left:676.920000px;}
.x8a_c00438{left:679.500000px;}
.x67_c00438{left:681.000000px;}
.x45_c00438{left:685.500000px;}
.x116_c00438{left:686.580000px;}
.x2a_c00438{left:688.500000px;}
.xf_c00438{left:690.000000px;}
.x82_c00438{left:691.080000px;}
.x51_c00438{left:694.080000px;}
.x7a_c00438{left:696.000000px;}
.x2b_c00438{left:700.500000px;}
.x2_c00438{left:703.500000px;}
.xba_c00438{left:706.920000px;}
.x91_c00438{left:709.080000px;}
.xee_c00438{left:717.000000px;}
.xe9_c00438{left:718.500000px;}
.x11c_c00438{left:720.000000px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.ls0_c00438{letter-spacing:0.000000pt;}
.ws3_c00438{word-spacing:-15.012693pt;}
.ws1_c00438{word-spacing:-7.832291pt;}
.ws0_c00438{word-spacing:-5.711730pt;}
.ws2_c00438{word-spacing:-5.689459pt;}
.ws4_c00438{word-spacing:0.000000pt;}
._0_c00438{width:4.845555pt;}
.fs7_c00438{font-size:3.040000pt;}
.fs2_c00438{font-size:12.106667pt;}
.fs0_c00438{font-size:16.640000pt;}
.fs4_c00438{font-size:18.133333pt;}
.fs3_c00438{font-size:22.666667pt;}
.fs1_c00438{font-size:25.706667pt;}
.fs5_c00438{font-size:28.746667pt;}
.fs6_c00438{font-size:31.733333pt;}
.fs8_c00438{font-size:34.773333pt;}
.y0_c00438{bottom:0.000000pt;}
.ye3_c00438{bottom:226.440000pt;}
.ye5_c00438{bottom:227.026667pt;}
.ye4_c00438{bottom:227.226667pt;}
.ye6_c00438{bottom:227.400000pt;}
.ye2_c00438{bottom:228.360000pt;}
.ydf_c00438{bottom:243.773333pt;}
.ye0_c00438{bottom:244.360000pt;}
.ye1_c00438{bottom:245.306667pt;}
.yde_c00438{bottom:245.693333pt;}
.ydb_c00438{bottom:259.773333pt;}
.ydd_c00438{bottom:260.360000pt;}
.ydc_c00438{bottom:261.693333pt;}
.yda_c00438{bottom:262.640000pt;}
.yd9_c00438{bottom:263.026667pt;}
.yd6_c00438{bottom:277.306667pt;}
.yd4_c00438{bottom:278.440000pt;}
.yd5_c00438{bottom:279.026667pt;}
.yd2_c00438{bottom:279.226667pt;}
.yd7_c00438{bottom:279.973333pt;}
.yd3_c00438{bottom:280.360000pt;}
.yd8_c00438{bottom:281.306667pt;}
.yd0_c00438{bottom:295.773333pt;}
.yce_c00438{bottom:296.560000pt;}
.yd1_c00438{bottom:296.733333pt;}
.ycf_c00438{bottom:297.306667pt;}
.ycd_c00438{bottom:297.693333pt;}
.ycb_c00438{bottom:313.106667pt;}
.ycc_c00438{bottom:314.640000pt;}
.yca_c00438{bottom:315.026667pt;}
.yc9_c00438{bottom:329.693333pt;}
.yc6_c00438{bottom:330.440000pt;}
.yc7_c00438{bottom:331.026667pt;}
.yc8_c00438{bottom:331.226667pt;}
.yc4_c00438{bottom:331.773333pt;}
.yc5_c00438{bottom:332.360000pt;}
.yc1_c00438{bottom:347.773333pt;}
.ybe_c00438{bottom:347.973333pt;}
.yc2_c00438{bottom:348.733333pt;}
.yc0_c00438{bottom:349.693333pt;}
.yc3_c00438{bottom:349.893333pt;}
.ybf_c00438{bottom:350.640000pt;}
.ybd_c00438{bottom:365.106667pt;}
.yba_c00438{bottom:366.440000pt;}
.ybb_c00438{bottom:367.026667pt;}
.ybc_c00438{bottom:367.226667pt;}
.yb9_c00438{bottom:368.360000pt;}
.yb7_c00438{bottom:382.440000pt;}
.yb4_c00438{bottom:383.773333pt;}
.yb6_c00438{bottom:384.360000pt;}
.yb5_c00438{bottom:384.560000pt;}
.yb8_c00438{bottom:385.306667pt;}
.yb3_c00438{bottom:385.693333pt;}
.yb2_c00438{bottom:399.773333pt;}
.yaf_c00438{bottom:401.106667pt;}
.yb0_c00438{bottom:401.693333pt;}
.yb1_c00438{bottom:402.640000pt;}
.yae_c00438{bottom:403.026667pt;}
.yab_c00438{bottom:417.106667pt;}
.ya8_c00438{bottom:418.066667pt;}
.ya9_c00438{bottom:418.440000pt;}
.yac_c00438{bottom:419.026667pt;}
.yad_c00438{bottom:419.226667pt;}
.yaa_c00438{bottom:419.973333pt;}
.ya7_c00438{bottom:420.360000pt;}
.ya5_c00438{bottom:435.400000pt;}
.ya3_c00438{bottom:435.773333pt;}
.ya4_c00438{bottom:437.306667pt;}
.ya2_c00438{bottom:437.693333pt;}
.ya6_c00438{bottom:438.640000pt;}
.ya1_c00438{bottom:451.026667pt;}
.ya0_c00438{bottom:452.360000pt;}
.y9f_c00438{bottom:453.106667pt;}
.y9d_c00438{bottom:455.026667pt;}
.y9e_c00438{bottom:455.973333pt;}
.y9c_c00438{bottom:456.360000pt;}
.y98_c00438{bottom:470.066667pt;}
.y99_c00438{bottom:470.440000pt;}
.y9b_c00438{bottom:471.226667pt;}
.y96_c00438{bottom:471.773333pt;}
.y97_c00438{bottom:472.360000pt;}
.y9a_c00438{bottom:472.560000pt;}
.y95_c00438{bottom:473.693333pt;}
.y94_c00438{bottom:487.773333pt;}
.y93_c00438{bottom:488.560000pt;}
.y90_c00438{bottom:488.733333pt;}
.y91_c00438{bottom:489.106667pt;}
.y92_c00438{bottom:489.693333pt;}
.y8f_c00438{bottom:489.893333pt;}
.y8e_c00438{bottom:491.026667pt;}
.y8d_c00438{bottom:506.066667pt;}
.y8b_c00438{bottom:506.440000pt;}
.y8c_c00438{bottom:507.026667pt;}
.y8a_c00438{bottom:507.226667pt;}
.y89_c00438{bottom:508.360000pt;}
.y87_c00438{bottom:523.773333pt;}
.y86_c00438{bottom:524.560000pt;}
.y88_c00438{bottom:525.306667pt;}
.y85_c00438{bottom:525.693333pt;}
.y84_c00438{bottom:539.026667pt;}
.y82_c00438{bottom:541.106667pt;}
.y83_c00438{bottom:542.640000pt;}
.y81_c00438{bottom:543.026667pt;}
.y80_c00438{bottom:559.400000pt;}
.y7e_c00438{bottom:559.773333pt;}
.y7f_c00438{bottom:560.360000pt;}
.y7d_c00438{bottom:561.693333pt;}
.y7b_c00438{bottom:575.773333pt;}
.y79_c00438{bottom:576.733333pt;}
.y77_c00438{bottom:577.106667pt;}
.y7a_c00438{bottom:577.693333pt;}
.y7c_c00438{bottom:578.640000pt;}
.y78_c00438{bottom:579.026667pt;}
.y71_c00438{bottom:592.360000pt;}
.y75_c00438{bottom:594.440000pt;}
.y74_c00438{bottom:595.026667pt;}
.y72_c00438{bottom:595.226667pt;}
.y76_c00438{bottom:595.973333pt;}
.y73_c00438{bottom:596.360000pt;}
.y6f_c00438{bottom:610.640000pt;}
.y6b_c00438{bottom:611.773333pt;}
.y70_c00438{bottom:612.560000pt;}
.y6e_c00438{bottom:612.733333pt;}
.y6c_c00438{bottom:613.306667pt;}
.y6d_c00438{bottom:613.693333pt;}
.y67_c00438{bottom:628.360000pt;}
.y66_c00438{bottom:629.106667pt;}
.y6a_c00438{bottom:630.066667pt;}
.y68_c00438{bottom:631.026667pt;}
.y69_c00438{bottom:631.226667pt;}
.y65_c00438{bottom:645.306667pt;}
.y62_c00438{bottom:646.440000pt;}
.y64_c00438{bottom:647.226667pt;}
.y63_c00438{bottom:648.360000pt;}
.y60_c00438{bottom:663.773333pt;}
.y61_c00438{bottom:665.306667pt;}
.y5f_c00438{bottom:665.693333pt;}
.y5e_c00438{bottom:666.640000pt;}
.y5c_c00438{bottom:681.106667pt;}
.y5b_c00438{bottom:682.066667pt;}
.y58_c00438{bottom:683.026667pt;}
.y5a_c00438{bottom:683.226667pt;}
.y5d_c00438{bottom:683.973333pt;}
.y59_c00438{bottom:684.360000pt;}
.y57_c00438{bottom:698.440000pt;}
.y53_c00438{bottom:699.773333pt;}
.y55_c00438{bottom:700.360000pt;}
.y54_c00438{bottom:700.560000pt;}
.y56_c00438{bottom:701.693333pt;}
.y52_c00438{bottom:715.773333pt;}
.y50_c00438{bottom:716.733333pt;}
.y51_c00438{bottom:717.693333pt;}
.y4e_c00438{bottom:718.066667pt;}
.y4f_c00438{bottom:719.026667pt;}
.y4d_c00438{bottom:719.973333pt;}
.y49_c00438{bottom:734.440000pt;}
.y4c_c00438{bottom:735.026667pt;}
.y4b_c00438{bottom:735.973333pt;}
.y4a_c00438{bottom:736.360000pt;}
.y48_c00438{bottom:751.773333pt;}
.y47_c00438{bottom:753.693333pt;}
.y43_c00438{bottom:768.160000pt;}
.y45_c00438{bottom:768.360000pt;}
.y46_c00438{bottom:769.106667pt;}
.y42_c00438{bottom:771.026667pt;}
.y44_c00438{bottom:771.226667pt;}
.y3e_c00438{bottom:786.440000pt;}
.y41_c00438{bottom:787.226667pt;}
.y40_c00438{bottom:788.360000pt;}
.y3f_c00438{bottom:789.706667pt;}
.y3a_c00438{bottom:814.266667pt;}
.y3d_c00438{bottom:815.026667pt;}
.y39_c00438{bottom:815.226667pt;}
.y3b_c00438{bottom:815.973333pt;}
.y3c_c00438{bottom:816.933333pt;}
.y37_c00438{bottom:826.640000pt;}
.y34_c00438{bottom:827.400000pt;}
.y35_c00438{bottom:828.360000pt;}
.y38_c00438{bottom:828.560000pt;}
.y36_c00438{bottom:829.306667pt;}
.y33_c00438{bottom:830.266667pt;}
.y31_c00438{bottom:840.733333pt;}
.y32_c00438{bottom:841.693333pt;}
.y2f_c00438{bottom:841.893333pt;}
.y30_c00438{bottom:842.640000pt;}
.y29_c00438{bottom:853.306667pt;}
.y2c_c00438{bottom:854.066667pt;}
.y2b_c00438{bottom:855.026667pt;}
.y2a_c00438{bottom:855.973333pt;}
.y2d_c00438{bottom:856.173333pt;}
.y2e_c00438{bottom:856.933333pt;}
.y28_c00438{bottom:867.400000pt;}
.y26_c00438{bottom:867.600000pt;}
.y23_c00438{bottom:868.360000pt;}
.y25_c00438{bottom:869.306667pt;}
.y24_c00438{bottom:869.506667pt;}
.y27_c00438{bottom:870.266667pt;}
.y1e_c00438{bottom:879.600000pt;}
.y22_c00438{bottom:880.360000pt;}
.y21_c00438{bottom:881.306667pt;}
.y20_c00438{bottom:881.893333pt;}
.y1f_c00438{bottom:882.266667pt;}
.y1b_c00438{bottom:892.733333pt;}
.y1d_c00438{bottom:893.693333pt;}
.y1c_c00438{bottom:894.840000pt;}
.y19_c00438{bottom:906.066667pt;}
.y15_c00438{bottom:906.266667pt;}
.y16_c00438{bottom:907.026667pt;}
.y17_c00438{bottom:907.973333pt;}
.y1a_c00438{bottom:908.173333pt;}
.y18_c00438{bottom:908.933333pt;}
.y13_c00438{bottom:919.400000pt;}
.y12_c00438{bottom:920.360000pt;}
.y11_c00438{bottom:921.306667pt;}
.y10_c00438{bottom:921.506667pt;}
.y14_c00438{bottom:922.266667pt;}
.ye_c00438{bottom:932.360000pt;}
.yf_c00438{bottom:932.933333pt;}
.yb_c00438{bottom:933.693333pt;}
.yd_c00438{bottom:934.266667pt;}
.ya_c00438{bottom:934.640000pt;}
.yc_c00438{bottom:934.840000pt;}
.y7_c00438{bottom:944.733333pt;}
.y5_c00438{bottom:945.693333pt;}
.y8_c00438{bottom:946.066667pt;}
.y9_c00438{bottom:946.640000pt;}
.y3_c00438{bottom:946.840000pt;}
.y6_c00438{bottom:947.600000pt;}
.y4_c00438{bottom:947.973333pt;}
.y2_c00438{bottom:977.693333pt;}
.y1_c00438{bottom:980.560000pt;}
.h8_c00438{height:3.739141pt;}
.h3_c00438{height:14.890964pt;}
.h1_c00438{height:20.466875pt;}
.h5_c00438{height:22.303646pt;}
.h4_c00438{height:27.879557pt;}
.h2_c00438{height:31.618698pt;}
.h6_c00438{height:35.357839pt;}
.h7_c00438{height:39.031380pt;}
.h9_c00438{height:42.770521pt;}
.h0_c00438{height:1186.666667pt;}
.w0_c00438{width:782.666667pt;}
.x0_c00438{left:0.000000pt;}
.x10_c00438{left:134.666667pt;}
.x103_c00438{left:135.626667pt;}
.x46_c00438{left:145.333333pt;}
.x19_c00438{left:146.666667pt;}
.x3_c00438{left:148.000000pt;}
.x55_c00438{left:148.960000pt;}
.x5c_c00438{left:151.040000pt;}
.x68_c00438{left:153.333333pt;}
.x52_c00438{left:155.040000pt;}
.x92_c00438{left:157.333333pt;}
.xdd_c00438{left:159.040000pt;}
.x8b_c00438{left:160.373333pt;}
.x104_c00438{left:161.333333pt;}
.x4_c00438{left:162.293333pt;}
.xd3_c00438{left:164.373333pt;}
.xc0_c00438{left:165.706667pt;}
.xa7_c00438{left:166.666667pt;}
.xc6_c00438{left:167.626667pt;}
.xb1_c00438{left:169.333333pt;}
.xd9_c00438{left:170.666667pt;}
.xbb_c00438{left:172.000000pt;}
.x83_c00438{left:173.333333pt;}
.x5d_c00438{left:174.293333pt;}
.xcd_c00438{left:176.000000pt;}
.xe2_c00438{left:176.960000pt;}
.xf8_c00438{left:178.293333pt;}
.x2c_c00438{left:179.626667pt;}
.x11_c00438{left:182.293333pt;}
.x36_c00438{left:184.000000pt;}
.xb2_c00438{left:185.333333pt;}
.x53_c00438{left:186.666667pt;}
.x47_c00438{left:190.293333pt;}
.x3e_c00438{left:191.240000pt;}
.x37_c00438{left:192.960000pt;}
.xa1_c00438{left:195.040000pt;}
.x6f_c00438{left:196.000000pt;}
.x10b_c00438{left:197.333333pt;}
.xb3_c00438{left:198.293333pt;}
.x2d_c00438{left:199.626667pt;}
.x93_c00438{left:200.960000pt;}
.x7b_c00438{left:204.373333pt;}
.xf9_c00438{left:205.333333pt;}
.x1a_c00438{left:206.293333pt;}
.x5_c00438{left:207.626667pt;}
.xd4_c00438{left:210.293333pt;}
.x49_c00438{left:212.960000pt;}
.x10c_c00438{left:216.373333pt;}
.xa8_c00438{left:217.706667pt;}
.xc7_c00438{left:219.040000pt;}
.x5e_c00438{left:220.000000pt;}
.x107_c00438{left:221.333333pt;}
.x2e_c00438{left:223.626667pt;}
.x38_c00438{left:225.333333pt;}
.x22_c00438{left:226.666667pt;}
.x70_c00438{left:228.373333pt;}
.xe3_c00438{left:229.706667pt;}
.x7c_c00438{left:231.040000pt;}
.x12_c00438{left:232.960000pt;}
.x84_c00438{left:234.666667pt;}
.x6_c00438{left:236.000000pt;}
.x54_c00438{left:237.333333pt;}
.xea_c00438{left:238.666667pt;}
.xef_c00438{left:240.373333pt;}
.xa9_c00438{left:241.706667pt;}
.x13_c00438{left:243.040000pt;}
.xf2_c00438{left:244.373333pt;}
.x56_c00438{left:245.333333pt;}
.x9a_c00438{left:246.666667pt;}
.x3f_c00438{left:248.000000pt;}
.xb4_c00438{left:249.333333pt;}
.x94_c00438{left:250.666667pt;}
.x4a_c00438{left:252.373333pt;}
.xa2_c00438{left:253.333333pt;}
.x39_c00438{left:254.666667pt;}
.x1b_c00438{left:256.000000pt;}
.x69_c00438{left:257.333333pt;}
.x23_c00438{left:260.000000pt;}
.x48_c00438{left:260.960000pt;}
.xbc_c00438{left:264.000000pt;}
.x1c_c00438{left:265.706667pt;}
.xc8_c00438{left:266.666667pt;}
.xa3_c00438{left:268.000000pt;}
.x7d_c00438{left:270.666667pt;}
.x57_c00438{left:272.373333pt;}
.xda_c00438{left:273.333333pt;}
.x14_c00438{left:274.666667pt;}
.x5f_c00438{left:275.626667pt;}
.x9b_c00438{left:277.333333pt;}
.x3a_c00438{left:279.040000pt;}
.xfa_c00438{left:280.000000pt;}
.xc1_c00438{left:281.706667pt;}
.x40_c00438{left:282.666667pt;}
.xb5_c00438{left:284.000000pt;}
.x111_c00438{left:286.666667pt;}
.x9c_c00438{left:288.000000pt;}
.xaa_c00438{left:289.333333pt;}
.x2f_c00438{left:290.666667pt;}
.x105_c00438{left:292.000000pt;}
.x71_c00438{left:293.333333pt;}
.x4b_c00438{left:297.333333pt;}
.x7_c00438{left:299.626667pt;}
.x100_c00438{left:301.333333pt;}
.xa4_c00438{left:303.040000pt;}
.x7e_c00438{left:304.000000pt;}
.x60_c00438{left:305.333333pt;}
.xd5_c00438{left:306.666667pt;}
.xbd_c00438{left:308.000000pt;}
.xfb_c00438{left:309.333333pt;}
.xce_c00438{left:312.000000pt;}
.xc9_c00438{left:312.960000pt;}
.x15_c00438{left:314.666667pt;}
.x3b_c00438{left:317.333333pt;}
.x1d_c00438{left:318.666667pt;}
.x7f_c00438{left:319.626667pt;}
.x72_c00438{left:320.960000pt;}
.x24_c00438{left:322.666667pt;}
.x106_c00438{left:323.626667pt;}
.x112_c00438{left:325.333333pt;}
.xde_c00438{left:326.666667pt;}
.xd6_c00438{left:328.373333pt;}
.xb6_c00438{left:330.293333pt;}
.x8_c00438{left:332.000000pt;}
.x61_c00438{left:334.293333pt;}
.xab_c00438{left:336.960000pt;}
.x16_c00438{left:339.040000pt;}
.xe4_c00438{left:340.373333pt;}
.x3c_c00438{left:343.040000pt;}
.x41_c00438{left:344.573333pt;}
.x1e_c00438{left:346.293333pt;}
.x9_c00438{left:347.626667pt;}
.x30_c00438{left:349.706667pt;}
.xf3_c00438{left:350.666667pt;}
.x4c_c00438{left:351.626667pt;}
.xc2_c00438{left:353.333333pt;}
.x95_c00438{left:355.040000pt;}
.xf0_c00438{left:356.373333pt;}
.x73_c00438{left:357.333333pt;}
.x1_c00438{left:360.000000pt;}
.x25_c00438{left:361.333333pt;}
.xcf_c00438{left:362.666667pt;}
.x31_c00438{left:364.000000pt;}
.x3d_c00438{left:366.666667pt;}
.x4d_c00438{left:368.000000pt;}
.xfc_c00438{left:369.333333pt;}
.x8c_c00438{left:371.040000pt;}
.x108_c00438{left:373.333333pt;}
.x6a_c00438{left:375.040000pt;}
.xac_c00438{left:376.373333pt;}
.x17_c00438{left:377.333333pt;}
.x96_c00438{left:379.040000pt;}
.x101_c00438{left:380.000000pt;}
.x42_c00438{left:382.666667pt;}
.xd0_c00438{left:384.000000pt;}
.x74_c00438{left:385.333333pt;}
.xf4_c00438{left:388.373333pt;}
.x62_c00438{left:390.666667pt;}
.xca_c00438{left:392.000000pt;}
.xe6_c00438{left:396.000000pt;}
.xeb_c00438{left:397.706667pt;}
.x85_c00438{left:400.373333pt;}
.xa_c00438{left:403.240000pt;}
.x75_c00438{left:404.373333pt;}
.xc3_c00438{left:405.333333pt;}
.x9d_c00438{left:408.000000pt;}
.x6b_c00438{left:410.293333pt;}
.x8d_c00438{left:412.000000pt;}
.xad_c00438{left:413.333333pt;}
.x58_c00438{left:415.626667pt;}
.x32_c00438{left:418.666667pt;}
.x26_c00438{left:420.373333pt;}
.x1f_c00438{left:422.666667pt;}
.xbe_c00438{left:424.373333pt;}
.x113_c00438{left:425.706667pt;}
.x18_c00438{left:426.666667pt;}
.xd7_c00438{left:428.000000pt;}
.x86_c00438{left:430.666667pt;}
.xc4_c00438{left:433.333333pt;}
.xdf_c00438{left:434.666667pt;}
.x27_c00438{left:436.373333pt;}
.x117_c00438{left:438.293333pt;}
.xfd_c00438{left:441.333333pt;}
.xb_c00438{left:443.040000pt;}
.xbf_c00438{left:448.000000pt;}
.xd1_c00438{left:449.333333pt;}
.xb7_c00438{left:450.666667pt;}
.x10d_c00438{left:452.000000pt;}
.x20_c00438{left:453.706667pt;}
.x6c_c00438{left:455.626667pt;}
.xe0_c00438{left:457.333333pt;}
.x87_c00438{left:458.666667pt;}
.x80_c00438{left:459.626667pt;}
.x63_c00438{left:462.293333pt;}
.xa5_c00438{left:464.373333pt;}
.xae_c00438{left:466.293333pt;}
.x118_c00438{left:467.626667pt;}
.xf1_c00438{left:469.333333pt;}
.x76_c00438{left:470.293333pt;}
.x59_c00438{left:472.373333pt;}
.x10e_c00438{left:474.293333pt;}
.x21_c00438{left:477.333333pt;}
.xcb_c00438{left:480.373333pt;}
.x9e_c00438{left:481.706667pt;}
.xf5_c00438{left:482.666667pt;}
.xe7_c00438{left:484.000000pt;}
.x88_c00438{left:485.333333pt;}
.xc_c00438{left:486.666667pt;}
.x77_c00438{left:488.000000pt;}
.x64_c00438{left:489.333333pt;}
.xb8_c00438{left:491.626667pt;}
.x114_c00438{left:495.040000pt;}
.x5a_c00438{left:496.373333pt;}
.x28_c00438{left:498.666667pt;}
.xec_c00438{left:500.000000pt;}
.x119_c00438{left:501.333333pt;}
.x43_c00438{left:502.666667pt;}
.xaf_c00438{left:505.333333pt;}
.xb9_c00438{left:508.373333pt;}
.xe1_c00438{left:509.333333pt;}
.x33_c00438{left:512.373333pt;}
.xfe_c00438{left:513.706667pt;}
.x4e_c00438{left:517.706667pt;}
.x97_c00438{left:520.000000pt;}
.xed_c00438{left:521.333333pt;}
.x5b_c00438{left:524.000000pt;}
.x34_c00438{left:525.906667pt;}
.x4f_c00438{left:528.373333pt;}
.x9f_c00438{left:529.333333pt;}
.x8e_c00438{left:530.666667pt;}
.xcc_c00438{left:532.000000pt;}
.xe8_c00438{left:532.960000pt;}
.x115_c00438{left:535.040000pt;}
.x11a_c00438{left:536.000000pt;}
.x65_c00438{left:537.333333pt;}
.x109_c00438{left:538.666667pt;}
.x10f_c00438{left:540.373333pt;}
.xd_c00438{left:541.706667pt;}
.x89_c00438{left:543.040000pt;}
.x78_c00438{left:546.666667pt;}
.xdb_c00438{left:549.706667pt;}
.x98_c00438{left:552.000000pt;}
.xf6_c00438{left:554.666667pt;}
.x81_c00438{left:555.626667pt;}
.xe_c00438{left:557.333333pt;}
.xa6_c00438{left:559.040000pt;}
.xc5_c00438{left:560.000000pt;}
.x29_c00438{left:560.960000pt;}
.x66_c00438{left:564.373333pt;}
.x6d_c00438{left:566.293333pt;}
.x99_c00438{left:568.000000pt;}
.x8f_c00438{left:571.626667pt;}
.x102_c00438{left:574.666667pt;}
.x50_c00438{left:576.000000pt;}
.xa0_c00438{left:577.333333pt;}
.xe5_c00438{left:578.666667pt;}
.x10a_c00438{left:579.626667pt;}
.xf7_c00438{left:581.333333pt;}
.xd2_c00438{left:584.000000pt;}
.x6e_c00438{left:584.960000pt;}
.x11b_c00438{left:586.666667pt;}
.xb0_c00438{left:588.000000pt;}
.x44_c00438{left:588.960000pt;}
.x79_c00438{left:590.293333pt;}
.x110_c00438{left:592.000000pt;}
.xff_c00438{left:596.000000pt;}
.x35_c00438{left:597.333333pt;}
.xdc_c00438{left:598.293333pt;}
.x90_c00438{left:599.626667pt;}
.xd8_c00438{left:601.706667pt;}
.x8a_c00438{left:604.000000pt;}
.x67_c00438{left:605.333333pt;}
.x45_c00438{left:609.333333pt;}
.x116_c00438{left:610.293333pt;}
.x2a_c00438{left:612.000000pt;}
.xf_c00438{left:613.333333pt;}
.x82_c00438{left:614.293333pt;}
.x51_c00438{left:616.960000pt;}
.x7a_c00438{left:618.666667pt;}
.x2b_c00438{left:622.666667pt;}
.x2_c00438{left:625.333333pt;}
.xba_c00438{left:628.373333pt;}
.x91_c00438{left:630.293333pt;}
.xee_c00438{left:637.333333pt;}
.xe9_c00438{left:638.666667pt;}
.x11c_c00438{left:640.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_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_16439a00d98b786a6162a077.woff2')format("woff");}.ff1_c00439{font-family:ff1_c00439;line-height:1.688965;font-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_c00439{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00439{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m81_c00439{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m33_c00439{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m6f_c00439{transform:matrix(0.365955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365955,0.000000,0.000000,0.250000,0,0);}
.m65_c00439{transform:matrix(0.370594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370594,0.000000,0.000000,0.250000,0,0);}
.m50_c00439{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m38_c00439{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m36_c00439{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m1f_c00439{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m29_c00439{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m6a_c00439{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m37_c00439{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m1c_c00439{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m45_c00439{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m3f_c00439{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m42_c00439{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m93_c00439{transform:matrix(0.398237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398237,0.000000,0.000000,0.250000,0,0);}
.m2b_c00439{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m1a_c00439{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.mbc_c00439{transform:matrix(0.403676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403676,0.000000,0.000000,0.250000,0,0);}
.m71_c00439{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.m3c_c00439{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m77_c00439{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m47_c00439{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m31_c00439{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m70_c00439{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m73_c00439{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m5_c00439{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m6c_c00439{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.m75_c00439{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m5f_c00439{transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);}
.m25_c00439{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m5e_c00439{transform:matrix(0.426349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426349,0.000000,0.000000,0.250000,0,0);}
.m24_c00439{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m19_c00439{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m52_c00439{transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);}
.m2d_c00439{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m95_c00439{transform:matrix(0.431891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431891,0.000000,0.000000,0.250000,0,0);}
.m48_c00439{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m53_c00439{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m74_c00439{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m87_c00439{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);}
.m89_c00439{transform:matrix(0.442308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442308,0.000000,0.000000,0.250000,0,0);}
.mbb_c00439{transform:matrix(0.449519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449519,0.000000,0.000000,0.250000,0,0);}
.m16_c00439{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m59_c00439{transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);}
.m94_c00439{transform:matrix(0.455929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455929,0.000000,0.000000,0.250000,0,0);}
.m30_c00439{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mb9_c00439{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.mb0_c00439{transform:matrix(0.461538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461538,0.000000,0.000000,0.250000,0,0);}
.m60_c00439{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m9b_c00439{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m58_c00439{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00439{transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);}
.ma5_c00439{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.m3a_c00439{transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);}
.m83_c00439{transform:matrix(0.471955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471955,0.000000,0.000000,0.250000,0,0);}
.mb3_c00439{transform:matrix(0.472794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472794,0.000000,0.000000,0.250000,0,0);}
.m7d_c00439{transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);}
.m68_c00439{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m3e_c00439{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m9d_c00439{transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);}
.m5d_c00439{transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);}
.m9c_c00439{transform:matrix(0.482372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482372,0.000000,0.000000,0.250000,0,0);}
.m3d_c00439{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.ma1_c00439{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m43_c00439{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m6_c00439{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m61_c00439{transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);}
.mbd_c00439{transform:matrix(0.490441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490441,0.000000,0.000000,0.250000,0,0);}
.m15_c00439{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m91_c00439{transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);}
.mba_c00439{transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);}
.m28_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);}
.m13_c00439{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mb_c00439{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m96_c00439{transform:matrix(0.510417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510417,0.000000,0.000000,0.250000,0,0);}
.m8e_c00439{transform:matrix(0.512821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512821,0.000000,0.000000,0.250000,0,0);}
.m4b_c00439{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m39_c00439{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.mb1_c00439{transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);}
.m9f_c00439{transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);}
.m18_c00439{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m2f_c00439{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m88_c00439{transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);}
.m22_c00439{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m3b_c00439{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m6e_c00439{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m40_c00439{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mf_c00439{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m54_c00439{transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);}
.m2_c00439{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.ma7_c00439{transform:matrix(0.532051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532051,0.000000,0.000000,0.250000,0,0);}
.md_c00439{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m7e_c00439{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.mac_c00439{transform:matrix(0.533088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533088,0.000000,0.000000,0.250000,0,0);}
.m66_c00439{transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);}
.m9_c00439{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m14_c00439{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m2e_c00439{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m49_c00439{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m57_c00439{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m4_c00439{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m20_c00439{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m97_c00439{transform:matrix(0.544872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544872,0.000000,0.000000,0.250000,0,0);}
.m34_c00439{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m27_c00439{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m99_c00439{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m11_c00439{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m21_c00439{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m17_c00439{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m92_c00439{transform:matrix(0.556167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556167,0.000000,0.000000,0.250000,0,0);}
.me_c00439{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m72_c00439{transform:matrix(0.557269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557269,0.000000,0.000000,0.250000,0,0);}
.m69_c00439{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);}
.m2c_c00439{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m8d_c00439{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m23_c00439{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m10_c00439{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m62_c00439{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m7b_c00439{transform:matrix(0.573718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573718,0.000000,0.000000,0.250000,0,0);}
.m6b_c00439{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m67_c00439{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m26_c00439{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m85_c00439{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.m44_c00439{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m6d_c00439{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m5a_c00439{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.mb8_c00439{transform:matrix(0.584596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584596,0.000000,0.000000,0.250000,0,0);}
.m0_c00439{transform:matrix(0.590445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590445,0.000000,0.000000,0.250000,0,0);}
.m35_c00439{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.ma_c00439{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m7c_c00439{transform:matrix(0.593750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593750,0.000000,0.000000,0.250000,0,0);}
.m7_c00439{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_c00439{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.m4c_c00439{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m82_c00439{transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);}
.m79_c00439{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m1e_c00439{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m76_c00439{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m41_c00439{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m5b_c00439{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.m5c_c00439{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m8_c00439{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.m4e_c00439{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m12_c00439{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m1d_c00439{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);}
.m80_c00439{transform:matrix(0.642070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642070,0.000000,0.000000,0.250000,0,0);}
.m55_c00439{transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);}
.m4f_c00439{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);}
.m8b_c00439{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m63_c00439{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m7f_c00439{transform:matrix(0.658590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.658590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.658590,0.000000,0.000000,0.250000,0,0);}
.m78_c00439{transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);}
.m86_c00439{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m64_c00439{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.mc_c00439{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mb6_c00439{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.m4d_c00439{transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);}
.m84_c00439{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mad_c00439{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m90_c00439{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.m1_c00439{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m9e_c00439{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m56_c00439{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.ma6_c00439{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m51_c00439{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);}
.maa_c00439{transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);}
.m46_c00439{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mab_c00439{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.maf_c00439{transform:matrix(0.722467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722467,0.000000,0.000000,0.250000,0,0);}
.ma2_c00439{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m3_c00439{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m32_c00439{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m98_c00439{transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);}
.ma9_c00439{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.m9a_c00439{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.mb7_c00439{transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);}
.m1b_c00439{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mae_c00439{transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);}
.mb2_c00439{transform:matrix(0.772727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772727,0.000000,0.000000,0.250000,0,0);}
.ma0_c00439{transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);}
.m8a_c00439{transform:matrix(0.807269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807269,0.000000,0.000000,0.250000,0,0);}
.ma4_c00439{transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);}
.m7a_c00439{transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816079,0.000000,0.000000,0.250000,0,0);}
.m2a_c00439{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m8c_c00439{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.ma3_c00439{transform:matrix(0.881057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.881057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.881057,0.000000,0.000000,0.250000,0,0);}
.m8f_c00439{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.v1_c00439{vertical-align:-6.000000px;}
.v0_c00439{vertical-align:0.000000px;}
.ls2_c00439{letter-spacing:0.000000px;}
.ls0_c00439{letter-spacing:64.456126px;}
.ls1_c00439{letter-spacing:84.100357px;}
.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;}
}
.ws4_c00439{word-spacing:-72.410206px;}
.ws17_c00439{word-spacing:0.000000px;}
.ws3_c00439{word-spacing:0.215065px;}
.wsb_c00439{word-spacing:14.950398px;}
.ws14_c00439{word-spacing:27.000820px;}
.ws2_c00439{word-spacing:35.020449px;}
.wsa_c00439{word-spacing:43.618669px;}
.wse_c00439{word-spacing:49.664929px;}
.ws6_c00439{word-spacing:51.717174px;}
.ws9_c00439{word-spacing:52.439976px;}
.ws13_c00439{word-spacing:53.898995px;}
.ws5_c00439{word-spacing:54.291843px;}
.ws11_c00439{word-spacing:56.054058px;}
.ws7_c00439{word-spacing:56.866512px;}
.ws1_c00439{word-spacing:58.393307px;}
.ws15_c00439{word-spacing:63.199159px;}
.ws8_c00439{word-spacing:65.029892px;}
.ws0_c00439{word-spacing:69.168044px;}
.wsd_c00439{word-spacing:76.146277px;}
.wsf_c00439{word-spacing:78.638400px;}
.ws12_c00439{word-spacing:81.278299px;}
.ws10_c00439{word-spacing:88.431146px;}
.ws16_c00439{word-spacing:98.139504px;}
.wsc_c00439{word-spacing:101.341272px;}
._3_c00439{margin-left:-64.456126px;}
._2_c00439{width:21.252808px;}
._4_c00439{width:64.820592px;}
._1_c00439{width:73.547321px;}
._0_c00439{width:76.121179px;}
.fc0_c00439{color:transparent;}
.fs7_c00439{font-size:3.420000px;}
.fs8_c00439{font-size:11.880000px;}
.fs6_c00439{font-size:13.620000px;}
.fs1_c00439{font-size:18.720000px;}
.fs5_c00439{font-size:20.400000px;}
.fs3_c00439{font-size:25.500000px;}
.fs2_c00439{font-size:28.920000px;}
.fs0_c00439{font-size:32.340000px;}
.fs4_c00439{font-size:35.700000px;}
.y0_c00439{bottom:0.000000px;}
.yb2_c00439{bottom:253.050000px;}
.yb4_c00439{bottom:255.630000px;}
.yb5_c00439{bottom:256.050000px;}
.yb1_c00439{bottom:257.130000px;}
.yb0_c00439{bottom:258.195000px;}
.yb3_c00439{bottom:258.420000px;}
.yaf_c00439{bottom:269.130000px;}
.yae_c00439{bottom:270.195000px;}
.yac_c00439{bottom:270.630000px;}
.yad_c00439{bottom:271.695000px;}
.yab_c00439{bottom:283.695000px;}
.ya7_c00439{bottom:284.130000px;}
.ya8_c00439{bottom:284.775000px;}
.ya6_c00439{bottom:285.195000px;}
.yaa_c00439{bottom:286.920000px;}
.ya9_c00439{bottom:289.695000px;}
.ya5_c00439{bottom:296.130000px;}
.ya4_c00439{bottom:297.195000px;}
.ya1_c00439{bottom:298.050000px;}
.ya2_c00439{bottom:298.275000px;}
.ya0_c00439{bottom:298.695000px;}
.ya3_c00439{bottom:299.550000px;}
.y9e_c00439{bottom:311.130000px;}
.y9d_c00439{bottom:312.195000px;}
.y9f_c00439{bottom:312.420000px;}
.y99_c00439{bottom:312.630000px;}
.y9b_c00439{bottom:313.275000px;}
.y9a_c00439{bottom:313.695000px;}
.y9c_c00439{bottom:313.920000px;}
.y98_c00439{bottom:324.630000px;}
.y96_c00439{bottom:326.130000px;}
.y97_c00439{bottom:327.195000px;}
.y95_c00439{bottom:327.630000px;}
.y90_c00439{bottom:340.050000px;}
.y91_c00439{bottom:340.695000px;}
.y94_c00439{bottom:340.920000px;}
.y92_c00439{bottom:341.775000px;}
.y93_c00439{bottom:342.420000px;}
.y8f_c00439{bottom:353.130000px;}
.y8e_c00439{bottom:354.195000px;}
.y8d_c00439{bottom:354.630000px;}
.y8c_c00439{bottom:355.695000px;}
.y8b_c00439{bottom:366.630000px;}
.y8a_c00439{bottom:367.695000px;}
.y88_c00439{bottom:368.130000px;}
.y89_c00439{bottom:369.195000px;}
.y87_c00439{bottom:380.130000px;}
.y86_c00439{bottom:381.195000px;}
.y85_c00439{bottom:381.630000px;}
.y84_c00439{bottom:382.695000px;}
.y83_c00439{bottom:393.630000px;}
.y82_c00439{bottom:394.695000px;}
.y80_c00439{bottom:395.130000px;}
.y81_c00439{bottom:396.195000px;}
.y7f_c00439{bottom:407.130000px;}
.y7e_c00439{bottom:408.195000px;}
.y7d_c00439{bottom:408.630000px;}
.y7b_c00439{bottom:409.695000px;}
.y7c_c00439{bottom:410.130000px;}
.y7a_c00439{bottom:422.130000px;}
.y79_c00439{bottom:423.630000px;}
.y78_c00439{bottom:424.695000px;}
.y77_c00439{bottom:435.630000px;}
.y75_c00439{bottom:437.130000px;}
.y76_c00439{bottom:438.195000px;}
.y74_c00439{bottom:449.130000px;}
.y73_c00439{bottom:450.630000px;}
.y72_c00439{bottom:451.695000px;}
.y71_c00439{bottom:468.195000px;}
.y70_c00439{bottom:468.420000px;}
.y6e_c00439{bottom:469.695000px;}
.y6f_c00439{bottom:471.195000px;}
.y6d_c00439{bottom:480.630000px;}
.y6c_c00439{bottom:481.695000px;}
.y6a_c00439{bottom:482.130000px;}
.y6b_c00439{bottom:483.195000px;}
.y68_c00439{bottom:495.630000px;}
.y69_c00439{bottom:496.695000px;}
.y4c_c00439{bottom:518.325000px;}
.y4b_c00439{bottom:520.470000px;}
.y49_c00439{bottom:533.325000px;}
.y48_c00439{bottom:534.405000px;}
.y47_c00439{bottom:535.470000px;}
.y4a_c00439{bottom:536.550000px;}
.y45_c00439{bottom:548.325000px;}
.y46_c00439{bottom:549.405000px;}
.y44_c00439{bottom:550.050000px;}
.y43_c00439{bottom:551.550000px;}
.y42_c00439{bottom:577.050000px;}
.y41_c00439{bottom:578.970000px;}
.y30_c00439{bottom:614.745000px;}
.y32_c00439{bottom:616.905000px;}
.y31_c00439{bottom:617.130000px;}
.y33_c00439{bottom:617.970000px;}
.y2e_c00439{bottom:633.405000px;}
.y2c_c00439{bottom:635.745000px;}
.y2f_c00439{bottom:636.405000px;}
.y2a_c00439{bottom:636.630000px;}
.y2d_c00439{bottom:637.470000px;}
.y2b_c00439{bottom:637.905000px;}
.y28_c00439{bottom:653.325000px;}
.y29_c00439{bottom:653.745000px;}
.y26_c00439{bottom:655.245000px;}
.y27_c00439{bottom:655.905000px;}
.y24_c00439{bottom:656.130000px;}
.y25_c00439{bottom:656.325000px;}
.y23_c00439{bottom:657.405000px;}
.y22_c00439{bottom:673.245000px;}
.y20_c00439{bottom:674.745000px;}
.y21_c00439{bottom:675.405000px;}
.y1e_c00439{bottom:676.470000px;}
.y1f_c00439{bottom:676.905000px;}
.y64_c00439{bottom:715.695000px;}
.y65_c00439{bottom:717.195000px;}
.y67_c00439{bottom:717.420000px;}
.y63_c00439{bottom:717.630000px;}
.y66_c00439{bottom:718.920000px;}
.y62_c00439{bottom:729.630000px;}
.y60_c00439{bottom:730.695000px;}
.y61_c00439{bottom:732.420000px;}
.y5f_c00439{bottom:743.130000px;}
.y5e_c00439{bottom:744.195000px;}
.y5d_c00439{bottom:745.695000px;}
.y5c_c00439{bottom:756.630000px;}
.y5b_c00439{bottom:759.195000px;}
.y5a_c00439{bottom:771.630000px;}
.y59_c00439{bottom:772.695000px;}
.y57_c00439{bottom:786.195000px;}
.y58_c00439{bottom:787.695000px;}
.y56_c00439{bottom:798.195000px;}
.y55_c00439{bottom:798.630000px;}
.y54_c00439{bottom:799.695000px;}
.y53_c00439{bottom:800.130000px;}
.y4f_c00439{bottom:812.130000px;}
.y52_c00439{bottom:813.195000px;}
.y51_c00439{bottom:813.630000px;}
.y50_c00439{bottom:814.695000px;}
.y4e_c00439{bottom:840.195000px;}
.y4d_c00439{bottom:841.695000px;}
.y3f_c00439{bottom:868.905000px;}
.y40_c00439{bottom:871.050000px;}
.y3c_c00439{bottom:882.825000px;}
.y3d_c00439{bottom:883.905000px;}
.y3e_c00439{bottom:884.550000px;}
.y3a_c00439{bottom:884.970000px;}
.y3b_c00439{bottom:886.050000px;}
.y38_c00439{bottom:897.825000px;}
.y39_c00439{bottom:898.905000px;}
.y37_c00439{bottom:899.550000px;}
.y36_c00439{bottom:901.050000px;}
.y35_c00439{bottom:928.470000px;}
.y34_c00439{bottom:929.550000px;}
.y19_c00439{bottom:962.970000px;}
.y1b_c00439{bottom:963.405000px;}
.y1d_c00439{bottom:964.245000px;}
.y1c_c00439{bottom:965.130000px;}
.y1a_c00439{bottom:965.970000px;}
.y18_c00439{bottom:966.405000px;}
.y14_c00439{bottom:981.825000px;}
.y17_c00439{bottom:982.905000px;}
.y16_c00439{bottom:983.745000px;}
.y15_c00439{bottom:984.630000px;}
.y13_c00439{bottom:985.470000px;}
.y12_c00439{bottom:985.905000px;}
.y11_c00439{bottom:1003.245000px;}
.yf_c00439{bottom:1005.405000px;}
.y10_c00439{bottom:1006.470000px;}
.ya_c00439{bottom:1021.470000px;}
.yc_c00439{bottom:1022.745000px;}
.yd_c00439{bottom:1023.630000px;}
.ye_c00439{bottom:1024.470000px;}
.yb_c00439{bottom:1024.905000px;}
.y9_c00439{bottom:1042.245000px;}
.y8_c00439{bottom:1042.470000px;}
.y7_c00439{bottom:1044.405000px;}
.y5_c00439{bottom:1061.745000px;}
.y6_c00439{bottom:1062.825000px;}
.y3_c00439{bottom:1063.905000px;}
.y4_c00439{bottom:1064.970000px;}
.y1_c00439{bottom:1098.825000px;}
.y2_c00439{bottom:1103.130000px;}
.h8_c00439{height:4.206533px;}
.h9_c00439{height:14.612168px;}
.h7_c00439{height:16.752334px;}
.h2_c00439{height:23.025234px;}
.h6_c00439{height:25.091602px;}
.h4_c00439{height:31.364502px;}
.h3_c00439{height:35.571035px;}
.h1_c00439{height:39.777568px;}
.h5_c00439{height:43.910303px;}
.h0_c00439{height:1335.000000px;}
.w0_c00439{width:880.500000px;}
.x0_c00439{left:0.000000px;}
.x4c_c00439{left:151.500000px;}
.x1_c00439{left:153.000000px;}
.x3_c00439{left:154.080000px;}
.x47_c00439{left:168.000000px;}
.x40_c00439{left:169.920000px;}
.x57_c00439{left:179.580000px;}
.x48_c00439{left:189.000000px;}
.x10_c00439{left:190.080000px;}
.x29_c00439{left:193.500000px;}
.x41_c00439{left:195.000000px;}
.x1f_c00439{left:201.000000px;}
.x11_c00439{left:208.920000px;}
.x4_c00439{left:217.500000px;}
.x62_c00439{left:223.500000px;}
.x8b_c00439{left:225.000000px;}
.x8e_c00439{left:226.500000px;}
.x58_c00439{left:228.000000px;}
.x6b_c00439{left:229.500000px;}
.x9e_c00439{left:232.500000px;}
.x12_c00439{left:234.420000px;}
.x5_c00439{left:235.500000px;}
.x7d_c00439{left:237.000000px;}
.x33_c00439{left:238.920000px;}
.x59_c00439{left:249.000000px;}
.x4d_c00439{left:254.580000px;}
.x6_c00439{left:256.500000px;}
.xa7_c00439{left:260.580000px;}
.x9c_c00439{left:262.500000px;}
.xb6_c00439{left:264.000000px;}
.x2a_c00439{left:265.080000px;}
.x13_c00439{left:267.000000px;}
.xa8_c00439{left:269.580000px;}
.xa4_c00439{left:274.080000px;}
.x7e_c00439{left:277.500000px;}
.xaa_c00439{left:278.580000px;}
.x34_c00439{left:283.920000px;}
.x42_c00439{left:288.420000px;}
.x20_c00439{left:291.000000px;}
.x6c_c00439{left:292.500000px;}
.x63_c00439{left:293.580000px;}
.x2b_c00439{left:297.000000px;}
.xae_c00439{left:301.080000px;}
.x86_c00439{left:303.000000px;}
.xb3_c00439{left:304.920000px;}
.xb0_c00439{left:306.000000px;}
.x8f_c00439{left:307.500000px;}
.x14_c00439{left:310.500000px;}
.x8c_c00439{left:312.420000px;}
.xb1_c00439{left:313.920000px;}
.x78_c00439{left:316.500000px;}
.xb4_c00439{left:318.000000px;}
.x94_c00439{left:319.500000px;}
.x35_c00439{left:320.580000px;}
.x7_c00439{left:322.500000px;}
.x2c_c00439{left:324.420000px;}
.x4e_c00439{left:325.500000px;}
.x87_c00439{left:327.000000px;}
.xb5_c00439{left:333.000000px;}
.x71_c00439{left:340.500000px;}
.x5a_c00439{left:342.000000px;}
.x36_c00439{left:345.000000px;}
.x43_c00439{left:346.500000px;}
.x49_c00439{left:348.000000px;}
.x4f_c00439{left:352.920000px;}
.xa1_c00439{left:357.000000px;}
.x8_c00439{left:360.000000px;}
.x2d_c00439{left:362.580000px;}
.x15_c00439{left:364.500000px;}
.x9f_c00439{left:368.580000px;}
.xab_c00439{left:370.920000px;}
.x7f_c00439{left:372.420000px;}
.x72_c00439{left:373.500000px;}
.x79_c00439{left:376.920000px;}
.xa3_c00439{left:378.000000px;}
.x21_c00439{left:380.580000px;}
.x81_c00439{left:382.500000px;}
.x88_c00439{left:386.580000px;}
.x37_c00439{left:388.500000px;}
.x9_c00439{left:391.500000px;}
.x7a_c00439{left:393.000000px;}
.x16_c00439{left:396.000000px;}
.x50_c00439{left:402.420000px;}
.x89_c00439{left:403.500000px;}
.x90_c00439{left:406.500000px;}
.x2_c00439{left:408.000000px;}
.x6d_c00439{left:409.500000px;}
.x5b_c00439{left:410.580000px;}
.x69_c00439{left:412.500000px;}
.x95_c00439{left:415.500000px;}
.x2e_c00439{left:417.000000px;}
.x44_c00439{left:419.580000px;}
.x38_c00439{left:421.080000px;}
.x51_c00439{left:427.500000px;}
.x22_c00439{left:429.000000px;}
.xa0_c00439{left:432.000000px;}
.x5c_c00439{left:433.920000px;}
.x6e_c00439{left:436.500000px;}
.x64_c00439{left:442.500000px;}
.x17_c00439{left:443.580000px;}
.x82_c00439{left:445.500000px;}
.x4a_c00439{left:451.080000px;}
.xa_c00439{left:453.000000px;}
.x23_c00439{left:456.000000px;}
.x6a_c00439{left:457.080000px;}
.x5d_c00439{left:463.500000px;}
.x96_c00439{left:465.000000px;}
.x73_c00439{left:469.500000px;}
.x45_c00439{left:470.580000px;}
.x39_c00439{left:472.080000px;}
.x2f_c00439{left:473.580000px;}
.x18_c00439{left:478.920000px;}
.x7b_c00439{left:484.500000px;}
.xb2_c00439{left:490.500000px;}
.x24_c00439{left:492.420000px;}
.x8a_c00439{left:494.580000px;}
.x46_c00439{left:496.500000px;}
.xac_c00439{left:499.500000px;}
.x91_c00439{left:501.000000px;}
.x5e_c00439{left:504.000000px;}
.x6f_c00439{left:507.420000px;}
.x65_c00439{left:508.500000px;}
.x52_c00439{left:511.080000px;}
.x7c_c00439{left:514.500000px;}
.x97_c00439{left:516.000000px;}
.x3a_c00439{left:517.080000px;}
.x9a_c00439{left:519.000000px;}
.xb_c00439{left:521.580000px;}
.x66_c00439{left:525.000000px;}
.x70_c00439{left:528.000000px;}
.x3b_c00439{left:529.500000px;}
.x92_c00439{left:540.000000px;}
.x53_c00439{left:543.420000px;}
.x19_c00439{left:547.080000px;}
.xa2_c00439{left:553.500000px;}
.x74_c00439{left:555.420000px;}
.xa5_c00439{left:558.000000px;}
.xa9_c00439{left:559.500000px;}
.x9b_c00439{left:561.000000px;}
.xad_c00439{left:562.500000px;}
.x98_c00439{left:564.000000px;}
.x83_c00439{left:567.420000px;}
.x3c_c00439{left:569.580000px;}
.x25_c00439{left:571.500000px;}
.x30_c00439{left:576.420000px;}
.x8d_c00439{left:578.580000px;}
.xc_c00439{left:580.080000px;}
.x75_c00439{left:582.000000px;}
.x80_c00439{left:583.500000px;}
.x54_c00439{left:584.580000px;}
.x4b_c00439{left:590.580000px;}
.x93_c00439{left:592.500000px;}
.x26_c00439{left:594.000000px;}
.x84_c00439{left:595.500000px;}
.x1a_c00439{left:598.920000px;}
.x3d_c00439{left:600.420000px;}
.x55_c00439{left:603.420000px;}
.x99_c00439{left:604.500000px;}
.x5f_c00439{left:608.580000px;}
.xaf_c00439{left:612.000000px;}
.xa6_c00439{left:613.500000px;}
.x67_c00439{left:615.000000px;}
.x9d_c00439{left:616.500000px;}
.x76_c00439{left:618.420000px;}
.x27_c00439{left:622.500000px;}
.x31_c00439{left:624.000000px;}
.x1b_c00439{left:625.500000px;}
.x3e_c00439{left:626.580000px;}
.x60_c00439{left:628.920000px;}
.xd_c00439{left:630.000000px;}
.x85_c00439{left:633.420000px;}
.x77_c00439{left:634.500000px;}
.x68_c00439{left:639.000000px;}
.xe_c00439{left:649.920000px;}
.x32_c00439{left:652.500000px;}
.x1c_c00439{left:661.080000px;}
.x61_c00439{left:664.080000px;}
.x56_c00439{left:667.500000px;}
.xf_c00439{left:676.080000px;}
.x1d_c00439{left:679.920000px;}
.x3f_c00439{left:687.420000px;}
.x28_c00439{left:703.920000px;}
.x1e_c00439{left:706.500000px;}
@media print{
.v1_c00439{vertical-align:-5.333333pt;}
.v0_c00439{vertical-align:0.000000pt;}
.ls2_c00439{letter-spacing:0.000000pt;}
.ls0_c00439{letter-spacing:57.294334pt;}
.ls1_c00439{letter-spacing:74.755873pt;}
.ws4_c00439{word-spacing:-64.364628pt;}
.ws17_c00439{word-spacing:0.000000pt;}
.ws3_c00439{word-spacing:0.191169pt;}
.wsb_c00439{word-spacing:13.289243pt;}
.ws14_c00439{word-spacing:24.000728pt;}
.ws2_c00439{word-spacing:31.129288pt;}
.wsa_c00439{word-spacing:38.772150pt;}
.wse_c00439{word-spacing:44.146604pt;}
.ws6_c00439{word-spacing:45.970821pt;}
.ws9_c00439{word-spacing:46.613312pt;}
.ws13_c00439{word-spacing:47.910218pt;}
.ws5_c00439{word-spacing:48.259416pt;}
.ws11_c00439{word-spacing:49.825830pt;}
.ws7_c00439{word-spacing:50.548011pt;}
.ws1_c00439{word-spacing:51.905162pt;}
.ws15_c00439{word-spacing:56.177031pt;}
.ws8_c00439{word-spacing:57.804348pt;}
.ws0_c00439{word-spacing:61.482706pt;}
.wsd_c00439{word-spacing:67.685579pt;}
.wsf_c00439{word-spacing:69.900800pt;}
.ws12_c00439{word-spacing:72.247377pt;}
.ws10_c00439{word-spacing:78.605463pt;}
.ws16_c00439{word-spacing:87.235114pt;}
.wsc_c00439{word-spacing:90.081131pt;}
._3_c00439{margin-left:-57.294334pt;}
._2_c00439{width:18.891385pt;}
._4_c00439{width:57.618304pt;}
._1_c00439{width:65.375396pt;}
._0_c00439{width:67.663270pt;}
.fs7_c00439{font-size:3.040000pt;}
.fs8_c00439{font-size:10.560000pt;}
.fs6_c00439{font-size:12.106667pt;}
.fs1_c00439{font-size:16.640000pt;}
.fs5_c00439{font-size:18.133333pt;}
.fs3_c00439{font-size:22.666667pt;}
.fs2_c00439{font-size:25.706667pt;}
.fs0_c00439{font-size:28.746667pt;}
.fs4_c00439{font-size:31.733333pt;}
.y0_c00439{bottom:0.000000pt;}
.yb2_c00439{bottom:224.933333pt;}
.yb4_c00439{bottom:227.226667pt;}
.yb5_c00439{bottom:227.600000pt;}
.yb1_c00439{bottom:228.560000pt;}
.yb0_c00439{bottom:229.506667pt;}
.yb3_c00439{bottom:229.706667pt;}
.yaf_c00439{bottom:239.226667pt;}
.yae_c00439{bottom:240.173333pt;}
.yac_c00439{bottom:240.560000pt;}
.yad_c00439{bottom:241.506667pt;}
.yab_c00439{bottom:252.173333pt;}
.ya7_c00439{bottom:252.560000pt;}
.ya8_c00439{bottom:253.133333pt;}
.ya6_c00439{bottom:253.506667pt;}
.yaa_c00439{bottom:255.040000pt;}
.ya9_c00439{bottom:257.506667pt;}
.ya5_c00439{bottom:263.226667pt;}
.ya4_c00439{bottom:264.173333pt;}
.ya1_c00439{bottom:264.933333pt;}
.ya2_c00439{bottom:265.133333pt;}
.ya0_c00439{bottom:265.506667pt;}
.ya3_c00439{bottom:266.266667pt;}
.y9e_c00439{bottom:276.560000pt;}
.y9d_c00439{bottom:277.506667pt;}
.y9f_c00439{bottom:277.706667pt;}
.y99_c00439{bottom:277.893333pt;}
.y9b_c00439{bottom:278.466667pt;}
.y9a_c00439{bottom:278.840000pt;}
.y9c_c00439{bottom:279.040000pt;}
.y98_c00439{bottom:288.560000pt;}
.y96_c00439{bottom:289.893333pt;}
.y97_c00439{bottom:290.840000pt;}
.y95_c00439{bottom:291.226667pt;}
.y90_c00439{bottom:302.266667pt;}
.y91_c00439{bottom:302.840000pt;}
.y94_c00439{bottom:303.040000pt;}
.y92_c00439{bottom:303.800000pt;}
.y93_c00439{bottom:304.373333pt;}
.y8f_c00439{bottom:313.893333pt;}
.y8e_c00439{bottom:314.840000pt;}
.y8d_c00439{bottom:315.226667pt;}
.y8c_c00439{bottom:316.173333pt;}
.y8b_c00439{bottom:325.893333pt;}
.y8a_c00439{bottom:326.840000pt;}
.y88_c00439{bottom:327.226667pt;}
.y89_c00439{bottom:328.173333pt;}
.y87_c00439{bottom:337.893333pt;}
.y86_c00439{bottom:338.840000pt;}
.y85_c00439{bottom:339.226667pt;}
.y84_c00439{bottom:340.173333pt;}
.y83_c00439{bottom:349.893333pt;}
.y82_c00439{bottom:350.840000pt;}
.y80_c00439{bottom:351.226667pt;}
.y81_c00439{bottom:352.173333pt;}
.y7f_c00439{bottom:361.893333pt;}
.y7e_c00439{bottom:362.840000pt;}
.y7d_c00439{bottom:363.226667pt;}
.y7b_c00439{bottom:364.173333pt;}
.y7c_c00439{bottom:364.560000pt;}
.y7a_c00439{bottom:375.226667pt;}
.y79_c00439{bottom:376.560000pt;}
.y78_c00439{bottom:377.506667pt;}
.y77_c00439{bottom:387.226667pt;}
.y75_c00439{bottom:388.560000pt;}
.y76_c00439{bottom:389.506667pt;}
.y74_c00439{bottom:399.226667pt;}
.y73_c00439{bottom:400.560000pt;}
.y72_c00439{bottom:401.506667pt;}
.y71_c00439{bottom:416.173333pt;}
.y70_c00439{bottom:416.373333pt;}
.y6e_c00439{bottom:417.506667pt;}
.y6f_c00439{bottom:418.840000pt;}
.y6d_c00439{bottom:427.226667pt;}
.y6c_c00439{bottom:428.173333pt;}
.y6a_c00439{bottom:428.560000pt;}
.y6b_c00439{bottom:429.506667pt;}
.y68_c00439{bottom:440.560000pt;}
.y69_c00439{bottom:441.506667pt;}
.y4c_c00439{bottom:460.733333pt;}
.y4b_c00439{bottom:462.640000pt;}
.y49_c00439{bottom:474.066667pt;}
.y48_c00439{bottom:475.026667pt;}
.y47_c00439{bottom:475.973333pt;}
.y4a_c00439{bottom:476.933333pt;}
.y45_c00439{bottom:487.400000pt;}
.y46_c00439{bottom:488.360000pt;}
.y44_c00439{bottom:488.933333pt;}
.y43_c00439{bottom:490.266667pt;}
.y42_c00439{bottom:512.933333pt;}
.y41_c00439{bottom:514.640000pt;}
.y30_c00439{bottom:546.440000pt;}
.y32_c00439{bottom:548.360000pt;}
.y31_c00439{bottom:548.560000pt;}
.y33_c00439{bottom:549.306667pt;}
.y2e_c00439{bottom:563.026667pt;}
.y2c_c00439{bottom:565.106667pt;}
.y2f_c00439{bottom:565.693333pt;}
.y2a_c00439{bottom:565.893333pt;}
.y2d_c00439{bottom:566.640000pt;}
.y2b_c00439{bottom:567.026667pt;}
.y28_c00439{bottom:580.733333pt;}
.y29_c00439{bottom:581.106667pt;}
.y26_c00439{bottom:582.440000pt;}
.y27_c00439{bottom:583.026667pt;}
.y24_c00439{bottom:583.226667pt;}
.y25_c00439{bottom:583.400000pt;}
.y23_c00439{bottom:584.360000pt;}
.y22_c00439{bottom:598.440000pt;}
.y20_c00439{bottom:599.773333pt;}
.y21_c00439{bottom:600.360000pt;}
.y1e_c00439{bottom:601.306667pt;}
.y1f_c00439{bottom:601.693333pt;}
.y64_c00439{bottom:636.173333pt;}
.y65_c00439{bottom:637.506667pt;}
.y67_c00439{bottom:637.706667pt;}
.y63_c00439{bottom:637.893333pt;}
.y66_c00439{bottom:639.040000pt;}
.y62_c00439{bottom:648.560000pt;}
.y60_c00439{bottom:649.506667pt;}
.y61_c00439{bottom:651.040000pt;}
.y5f_c00439{bottom:660.560000pt;}
.y5e_c00439{bottom:661.506667pt;}
.y5d_c00439{bottom:662.840000pt;}
.y5c_c00439{bottom:672.560000pt;}
.y5b_c00439{bottom:674.840000pt;}
.y5a_c00439{bottom:685.893333pt;}
.y59_c00439{bottom:686.840000pt;}
.y57_c00439{bottom:698.840000pt;}
.y58_c00439{bottom:700.173333pt;}
.y56_c00439{bottom:709.506667pt;}
.y55_c00439{bottom:709.893333pt;}
.y54_c00439{bottom:710.840000pt;}
.y53_c00439{bottom:711.226667pt;}
.y4f_c00439{bottom:721.893333pt;}
.y52_c00439{bottom:722.840000pt;}
.y51_c00439{bottom:723.226667pt;}
.y50_c00439{bottom:724.173333pt;}
.y4e_c00439{bottom:746.840000pt;}
.y4d_c00439{bottom:748.173333pt;}
.y3f_c00439{bottom:772.360000pt;}
.y40_c00439{bottom:774.266667pt;}
.y3c_c00439{bottom:784.733333pt;}
.y3d_c00439{bottom:785.693333pt;}
.y3e_c00439{bottom:786.266667pt;}
.y3a_c00439{bottom:786.640000pt;}
.y3b_c00439{bottom:787.600000pt;}
.y38_c00439{bottom:798.066667pt;}
.y39_c00439{bottom:799.026667pt;}
.y37_c00439{bottom:799.600000pt;}
.y36_c00439{bottom:800.933333pt;}
.y35_c00439{bottom:825.306667pt;}
.y34_c00439{bottom:826.266667pt;}
.y19_c00439{bottom:855.973333pt;}
.y1b_c00439{bottom:856.360000pt;}
.y1d_c00439{bottom:857.106667pt;}
.y1c_c00439{bottom:857.893333pt;}
.y1a_c00439{bottom:858.640000pt;}
.y18_c00439{bottom:859.026667pt;}
.y14_c00439{bottom:872.733333pt;}
.y17_c00439{bottom:873.693333pt;}
.y16_c00439{bottom:874.440000pt;}
.y15_c00439{bottom:875.226667pt;}
.y13_c00439{bottom:875.973333pt;}
.y12_c00439{bottom:876.360000pt;}
.y11_c00439{bottom:891.773333pt;}
.yf_c00439{bottom:893.693333pt;}
.y10_c00439{bottom:894.640000pt;}
.ya_c00439{bottom:907.973333pt;}
.yc_c00439{bottom:909.106667pt;}
.yd_c00439{bottom:909.893333pt;}
.ye_c00439{bottom:910.640000pt;}
.yb_c00439{bottom:911.026667pt;}
.y9_c00439{bottom:926.440000pt;}
.y8_c00439{bottom:926.640000pt;}
.y7_c00439{bottom:928.360000pt;}
.y5_c00439{bottom:943.773333pt;}
.y6_c00439{bottom:944.733333pt;}
.y3_c00439{bottom:945.693333pt;}
.y4_c00439{bottom:946.640000pt;}
.y1_c00439{bottom:976.733333pt;}
.y2_c00439{bottom:980.560000pt;}
.h8_c00439{height:3.739141pt;}
.h9_c00439{height:12.988594pt;}
.h7_c00439{height:14.890964pt;}
.h2_c00439{height:20.466875pt;}
.h6_c00439{height:22.303646pt;}
.h4_c00439{height:27.879557pt;}
.h3_c00439{height:31.618698pt;}
.h1_c00439{height:35.357839pt;}
.h5_c00439{height:39.031380pt;}
.h0_c00439{height:1186.666667pt;}
.w0_c00439{width:782.666667pt;}
.x0_c00439{left:0.000000pt;}
.x4c_c00439{left:134.666667pt;}
.x1_c00439{left:136.000000pt;}
.x3_c00439{left:136.960000pt;}
.x47_c00439{left:149.333333pt;}
.x40_c00439{left:151.040000pt;}
.x57_c00439{left:159.626667pt;}
.x48_c00439{left:168.000000pt;}
.x10_c00439{left:168.960000pt;}
.x29_c00439{left:172.000000pt;}
.x41_c00439{left:173.333333pt;}
.x1f_c00439{left:178.666667pt;}
.x11_c00439{left:185.706667pt;}
.x4_c00439{left:193.333333pt;}
.x62_c00439{left:198.666667pt;}
.x8b_c00439{left:200.000000pt;}
.x8e_c00439{left:201.333333pt;}
.x58_c00439{left:202.666667pt;}
.x6b_c00439{left:204.000000pt;}
.x9e_c00439{left:206.666667pt;}
.x12_c00439{left:208.373333pt;}
.x5_c00439{left:209.333333pt;}
.x7d_c00439{left:210.666667pt;}
.x33_c00439{left:212.373333pt;}
.x59_c00439{left:221.333333pt;}
.x4d_c00439{left:226.293333pt;}
.x6_c00439{left:228.000000pt;}
.xa7_c00439{left:231.626667pt;}
.x9c_c00439{left:233.333333pt;}
.xb6_c00439{left:234.666667pt;}
.x2a_c00439{left:235.626667pt;}
.x13_c00439{left:237.333333pt;}
.xa8_c00439{left:239.626667pt;}
.xa4_c00439{left:243.626667pt;}
.x7e_c00439{left:246.666667pt;}
.xaa_c00439{left:247.626667pt;}
.x34_c00439{left:252.373333pt;}
.x42_c00439{left:256.373333pt;}
.x20_c00439{left:258.666667pt;}
.x6c_c00439{left:260.000000pt;}
.x63_c00439{left:260.960000pt;}
.x2b_c00439{left:264.000000pt;}
.xae_c00439{left:267.626667pt;}
.x86_c00439{left:269.333333pt;}
.xb3_c00439{left:271.040000pt;}
.xb0_c00439{left:272.000000pt;}
.x8f_c00439{left:273.333333pt;}
.x14_c00439{left:276.000000pt;}
.x8c_c00439{left:277.706667pt;}
.xb1_c00439{left:279.040000pt;}
.x78_c00439{left:281.333333pt;}
.xb4_c00439{left:282.666667pt;}
.x94_c00439{left:284.000000pt;}
.x35_c00439{left:284.960000pt;}
.x7_c00439{left:286.666667pt;}
.x2c_c00439{left:288.373333pt;}
.x4e_c00439{left:289.333333pt;}
.x87_c00439{left:290.666667pt;}
.xb5_c00439{left:296.000000pt;}
.x71_c00439{left:302.666667pt;}
.x5a_c00439{left:304.000000pt;}
.x36_c00439{left:306.666667pt;}
.x43_c00439{left:308.000000pt;}
.x49_c00439{left:309.333333pt;}
.x4f_c00439{left:313.706667pt;}
.xa1_c00439{left:317.333333pt;}
.x8_c00439{left:320.000000pt;}
.x2d_c00439{left:322.293333pt;}
.x15_c00439{left:324.000000pt;}
.x9f_c00439{left:327.626667pt;}
.xab_c00439{left:329.706667pt;}
.x7f_c00439{left:331.040000pt;}
.x72_c00439{left:332.000000pt;}
.x79_c00439{left:335.040000pt;}
.xa3_c00439{left:336.000000pt;}
.x21_c00439{left:338.293333pt;}
.x81_c00439{left:340.000000pt;}
.x88_c00439{left:343.626667pt;}
.x37_c00439{left:345.333333pt;}
.x9_c00439{left:348.000000pt;}
.x7a_c00439{left:349.333333pt;}
.x16_c00439{left:352.000000pt;}
.x50_c00439{left:357.706667pt;}
.x89_c00439{left:358.666667pt;}
.x90_c00439{left:361.333333pt;}
.x2_c00439{left:362.666667pt;}
.x6d_c00439{left:364.000000pt;}
.x5b_c00439{left:364.960000pt;}
.x69_c00439{left:366.666667pt;}
.x95_c00439{left:369.333333pt;}
.x2e_c00439{left:370.666667pt;}
.x44_c00439{left:372.960000pt;}
.x38_c00439{left:374.293333pt;}
.x51_c00439{left:380.000000pt;}
.x22_c00439{left:381.333333pt;}
.xa0_c00439{left:384.000000pt;}
.x5c_c00439{left:385.706667pt;}
.x6e_c00439{left:388.000000pt;}
.x64_c00439{left:393.333333pt;}
.x17_c00439{left:394.293333pt;}
.x82_c00439{left:396.000000pt;}
.x4a_c00439{left:400.960000pt;}
.xa_c00439{left:402.666667pt;}
.x23_c00439{left:405.333333pt;}
.x6a_c00439{left:406.293333pt;}
.x5d_c00439{left:412.000000pt;}
.x96_c00439{left:413.333333pt;}
.x73_c00439{left:417.333333pt;}
.x45_c00439{left:418.293333pt;}
.x39_c00439{left:419.626667pt;}
.x2f_c00439{left:420.960000pt;}
.x18_c00439{left:425.706667pt;}
.x7b_c00439{left:430.666667pt;}
.xb2_c00439{left:436.000000pt;}
.x24_c00439{left:437.706667pt;}
.x8a_c00439{left:439.626667pt;}
.x46_c00439{left:441.333333pt;}
.xac_c00439{left:444.000000pt;}
.x91_c00439{left:445.333333pt;}
.x5e_c00439{left:448.000000pt;}
.x6f_c00439{left:451.040000pt;}
.x65_c00439{left:452.000000pt;}
.x52_c00439{left:454.293333pt;}
.x7c_c00439{left:457.333333pt;}
.x97_c00439{left:458.666667pt;}
.x3a_c00439{left:459.626667pt;}
.x9a_c00439{left:461.333333pt;}
.xb_c00439{left:463.626667pt;}
.x66_c00439{left:466.666667pt;}
.x70_c00439{left:469.333333pt;}
.x3b_c00439{left:470.666667pt;}
.x92_c00439{left:480.000000pt;}
.x53_c00439{left:483.040000pt;}
.x19_c00439{left:486.293333pt;}
.xa2_c00439{left:492.000000pt;}
.x74_c00439{left:493.706667pt;}
.xa5_c00439{left:496.000000pt;}
.xa9_c00439{left:497.333333pt;}
.x9b_c00439{left:498.666667pt;}
.xad_c00439{left:500.000000pt;}
.x98_c00439{left:501.333333pt;}
.x83_c00439{left:504.373333pt;}
.x3c_c00439{left:506.293333pt;}
.x25_c00439{left:508.000000pt;}
.x30_c00439{left:512.373333pt;}
.x8d_c00439{left:514.293333pt;}
.xc_c00439{left:515.626667pt;}
.x75_c00439{left:517.333333pt;}
.x80_c00439{left:518.666667pt;}
.x54_c00439{left:519.626667pt;}
.x4b_c00439{left:524.960000pt;}
.x93_c00439{left:526.666667pt;}
.x26_c00439{left:528.000000pt;}
.x84_c00439{left:529.333333pt;}
.x1a_c00439{left:532.373333pt;}
.x3d_c00439{left:533.706667pt;}
.x55_c00439{left:536.373333pt;}
.x99_c00439{left:537.333333pt;}
.x5f_c00439{left:540.960000pt;}
.xaf_c00439{left:544.000000pt;}
.xa6_c00439{left:545.333333pt;}
.x67_c00439{left:546.666667pt;}
.x9d_c00439{left:548.000000pt;}
.x76_c00439{left:549.706667pt;}
.x27_c00439{left:553.333333pt;}
.x31_c00439{left:554.666667pt;}
.x1b_c00439{left:556.000000pt;}
.x3e_c00439{left:556.960000pt;}
.x60_c00439{left:559.040000pt;}
.xd_c00439{left:560.000000pt;}
.x85_c00439{left:563.040000pt;}
.x77_c00439{left:564.000000pt;}
.x68_c00439{left:568.000000pt;}
.xe_c00439{left:577.706667pt;}
.x32_c00439{left:580.000000pt;}
.x1c_c00439{left:587.626667pt;}
.x61_c00439{left:590.293333pt;}
.x56_c00439{left:593.333333pt;}
.xf_c00439{left:600.960000pt;}
.x1d_c00439{left:604.373333pt;}
.x3f_c00439{left:611.040000pt;}
.x28_c00439{left:625.706667pt;}
.x1e_c00439{left:628.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_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_f354046e98b4ff428bc2d2ad.woff2')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mac_c00440{transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);}
.m93_c00440{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.m71_c00440{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.mbb_c00440{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m9f_c00440{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m95_c00440{transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);}
.m5d_c00440{transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);}
.m46_c00440{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m40_c00440{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m5c_c00440{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m5e_c00440{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mb6_c00440{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.m3a_c00440{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m70_c00440{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m61_c00440{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.md2_c00440{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m6_c00440{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.ma5_c00440{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m42_c00440{transform:matrix(0.387653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387653,0.000000,0.000000,0.250000,0,0);}
.m39_c00440{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mc1_c00440{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m31_c00440{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m15_c00440{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m45_c00440{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.mca_c00440{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m90_c00440{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.mb3_c00440{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m7c_c00440{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m8f_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);}
.mb0_c00440{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m3f_c00440{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mb1_c00440{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.mc0_c00440{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.ma1_c00440{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.me4_c00440{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m87_c00440{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m37_c00440{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mb5_c00440{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.me0_c00440{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.me5_c00440{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m4c_c00440{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.md0_c00440{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.me6_c00440{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mb9_c00440{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mb8_c00440{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m8d_c00440{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.mb2_c00440{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.me1_c00440{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mbd_c00440{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m10_c00440{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m65_c00440{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m8a_c00440{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mdb_c00440{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m1f_c00440{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mdc_c00440{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.mc5_c00440{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m2a_c00440{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m4b_c00440{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m12_c00440{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m72_c00440{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m35_c00440{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.md1_c00440{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.ma9_c00440{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m32_c00440{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.md6_c00440{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.me2_c00440{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m85_c00440{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.md7_c00440{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mc7_c00440{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.maa_c00440{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m2f_c00440{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.mda_c00440{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m80_c00440{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.maf_c00440{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mad_c00440{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m57_c00440{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m19_c00440{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.mdf_c00440{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.ma3_c00440{transform:matrix(0.444341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444341,0.000000,0.000000,0.250000,0,0);}
.ma2_c00440{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.mea_c00440{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m99_c00440{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m89_c00440{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.me8_c00440{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.me9_c00440{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m96_c00440{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m55_c00440{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m7b_c00440{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m1_c00440{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m8e_c00440{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.md3_c00440{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m17_c00440{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m4a_c00440{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m51_c00440{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.md9_c00440{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.md5_c00440{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m5b_c00440{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.m14_c00440{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m1d_c00440{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m7d_c00440{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m86_c00440{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m9d_c00440{transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);}
.m48_c00440{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m62_c00440{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mcb_c00440{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mc9_c00440{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m34_c00440{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m91_c00440{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m2_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);}
.mb4_c00440{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m9a_c00440{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mc3_c00440{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m59_c00440{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mc6_c00440{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m6e_c00440{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m4e_c00440{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mae_c00440{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m63_c00440{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.ma_c00440{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m1e_c00440{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.mbf_c00440{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m6f_c00440{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.ma8_c00440{transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);}
.md_c00440{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m92_c00440{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.mf_c00440{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m3b_c00440{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mbc_c00440{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m50_c00440{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m9_c00440{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m16_c00440{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m56_c00440{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.me3_c00440{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m24_c00440{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m38_c00440{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.me_c00440{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m47_c00440{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m8c_c00440{transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);}
.mb_c00440{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m9b_c00440{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m5f_c00440{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m23_c00440{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m79_c00440{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m7_c00440{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m41_c00440{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m76_c00440{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m77_c00440{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m4_c00440{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mce_c00440{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.m18_c00440{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m1a_c00440{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mc_c00440{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mcf_c00440{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.ma4_c00440{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.md4_c00440{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m52_c00440{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m69_c00440{transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);}
.m43_c00440{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m11_c00440{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.ma7_c00440{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mc8_c00440{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m33_c00440{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m74_c00440{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m1c_c00440{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);}
.m64_c00440{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m6a_c00440{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m2d_c00440{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m21_c00440{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m97_c00440{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m2c_c00440{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.mbe_c00440{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m3d_c00440{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m88_c00440{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m13_c00440{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m6d_c00440{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m1b_c00440{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mcd_c00440{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m3e_c00440{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m4f_c00440{transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);}
.m36_c00440{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.mc2_c00440{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m94_c00440{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m81_c00440{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m2e_c00440{transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);}
.mcc_c00440{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m5_c00440{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m7f_c00440{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m26_c00440{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m82_c00440{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.mb7_c00440{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m53_c00440{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m60_c00440{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m9c_c00440{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m98_c00440{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m29_c00440{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.mde_c00440{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m2b_c00440{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m30_c00440{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mdd_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);}
.m68_c00440{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m0_c00440{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.mab_c00440{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m8_c00440{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m27_c00440{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m25_c00440{transform:matrix(0.675481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675481,0.000000,0.000000,0.250000,0,0);}
.m58_c00440{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m66_c00440{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m78_c00440{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m44_c00440{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m5a_c00440{transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);}
.m3_c00440{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.ma6_c00440{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m6b_c00440{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.ma0_c00440{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m75_c00440{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.mc4_c00440{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m84_c00440{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m28_c00440{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m83_c00440{transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);}
.m22_c00440{transform:matrix(0.742788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742788,0.000000,0.000000,0.250000,0,0);}
.m7a_c00440{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.me7_c00440{transform:matrix(0.755609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.755609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.755609,0.000000,0.000000,0.250000,0,0);}
.m8b_c00440{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m54_c00440{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m73_c00440{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m7e_c00440{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m67_c00440{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m9e_c00440{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.m4d_c00440{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.md8_c00440{transform:matrix(0.801282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.801282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.801282,0.000000,0.000000,0.250000,0,0);}
.m6c_c00440{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m20_c00440{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mba_c00440{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m49_c00440{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m3c_c00440{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00440{vertical-align:0.000000px;}
.ls0_c00440{letter-spacing:0.000000px;}
.sc__c00440{text-shadow:none;}
.sc0_c00440{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00440{-webkit-text-stroke:0px transparent;}
.sc0_c00440{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00440{word-spacing:0.000000px;}
.fc0_c00440{color:transparent;}
.fs6_c00440{font-size:3.420000px;}
.fs2_c00440{font-size:18.720000px;}
.fs0_c00440{font-size:20.400000px;}
.fs5_c00440{font-size:25.500000px;}
.fs1_c00440{font-size:28.920000px;}
.fs4_c00440{font-size:32.340000px;}
.fs3_c00440{font-size:35.700000px;}
.fs7_c00440{font-size:39.120000px;}
.y0_c00440{bottom:0.000000px;}
.yc2_c00440{bottom:310.905000px;}
.yc1_c00440{bottom:311.745000px;}
.yc3_c00440{bottom:312.825000px;}
.ybc_c00440{bottom:330.405000px;}
.ybd_c00440{bottom:331.245000px;}
.ybf_c00440{bottom:332.325000px;}
.ybb_c00440{bottom:333.405000px;}
.ybe_c00440{bottom:333.630000px;}
.yc0_c00440{bottom:334.905000px;}
.yba_c00440{bottom:349.905000px;}
.yb5_c00440{bottom:350.745000px;}
.yb7_c00440{bottom:352.245000px;}
.yb6_c00440{bottom:352.905000px;}
.yb9_c00440{bottom:353.970000px;}
.yb8_c00440{bottom:354.405000px;}
.yb2_c00440{bottom:369.405000px;}
.yb1_c00440{bottom:370.245000px;}
.yb3_c00440{bottom:370.470000px;}
.yb0_c00440{bottom:372.405000px;}
.yb4_c00440{bottom:372.630000px;}
.yad_c00440{bottom:388.905000px;}
.yae_c00440{bottom:389.745000px;}
.yac_c00440{bottom:391.245000px;}
.yaf_c00440{bottom:391.905000px;}
.yab_c00440{bottom:392.130000px;}
.ya9_c00440{bottom:392.325000px;}
.yaa_c00440{bottom:393.405000px;}
.ya8_c00440{bottom:408.405000px;}
.ya6_c00440{bottom:409.905000px;}
.ya5_c00440{bottom:410.745000px;}
.ya7_c00440{bottom:412.905000px;}
.ya1_c00440{bottom:429.405000px;}
.ya3_c00440{bottom:430.245000px;}
.ya4_c00440{bottom:431.130000px;}
.ya0_c00440{bottom:431.970000px;}
.y9f_c00440{bottom:432.405000px;}
.ya2_c00440{bottom:432.630000px;}
.y9c_c00440{bottom:449.745000px;}
.y9e_c00440{bottom:451.470000px;}
.y9b_c00440{bottom:451.905000px;}
.y9d_c00440{bottom:452.970000px;}
.y9a_c00440{bottom:469.245000px;}
.y98_c00440{bottom:471.405000px;}
.y99_c00440{bottom:472.470000px;}
.y95_c00440{bottom:488.745000px;}
.y97_c00440{bottom:490.905000px;}
.y96_c00440{bottom:492.405000px;}
.y93_c00440{bottom:507.405000px;}
.y94_c00440{bottom:511.905000px;}
.y8e_c00440{bottom:529.245000px;}
.y92_c00440{bottom:529.905000px;}
.y91_c00440{bottom:530.130000px;}
.y90_c00440{bottom:530.325000px;}
.y8d_c00440{bottom:531.405000px;}
.y8f_c00440{bottom:532.470000px;}
.y87_c00440{bottom:547.905000px;}
.y8c_c00440{bottom:548.325000px;}
.y8a_c00440{bottom:548.745000px;}
.y8b_c00440{bottom:548.970000px;}
.y89_c00440{bottom:549.630000px;}
.y88_c00440{bottom:550.470000px;}
.y86_c00440{bottom:550.905000px;}
.y83_c00440{bottom:568.245000px;}
.y84_c00440{bottom:569.130000px;}
.y85_c00440{bottom:570.405000px;}
.y7e_c00440{bottom:586.905000px;}
.y81_c00440{bottom:587.745000px;}
.y80_c00440{bottom:587.970000px;}
.y7f_c00440{bottom:589.470000px;}
.y7d_c00440{bottom:589.905000px;}
.y82_c00440{bottom:591.405000px;}
.y79_c00440{bottom:607.245000px;}
.y7b_c00440{bottom:608.325000px;}
.y7a_c00440{bottom:608.745000px;}
.y78_c00440{bottom:609.405000px;}
.y7c_c00440{bottom:610.905000px;}
.y75_c00440{bottom:626.970000px;}
.y76_c00440{bottom:627.180000px;}
.y73_c00440{bottom:627.405000px;}
.y71_c00440{bottom:628.245000px;}
.y77_c00440{bottom:628.905000px;}
.y72_c00440{bottom:629.325000px;}
.y74_c00440{bottom:629.970000px;}
.y70_c00440{bottom:630.405000px;}
.y6c_c00440{bottom:647.745000px;}
.y6e_c00440{bottom:648.630000px;}
.y6d_c00440{bottom:648.825000px;}
.y6f_c00440{bottom:649.470000px;}
.y6b_c00440{bottom:649.905000px;}
.y6a_c00440{bottom:666.405000px;}
.y69_c00440{bottom:667.245000px;}
.y68_c00440{bottom:668.130000px;}
.y67_c00440{bottom:668.325000px;}
.y65_c00440{bottom:668.970000px;}
.y66_c00440{bottom:669.405000px;}
.y60_c00440{bottom:685.470000px;}
.y5f_c00440{bottom:685.680000px;}
.y64_c00440{bottom:686.745000px;}
.y63_c00440{bottom:688.470000px;}
.y61_c00440{bottom:688.905000px;}
.y62_c00440{bottom:689.970000px;}
.y5d_c00440{bottom:706.245000px;}
.y5e_c00440{bottom:708.405000px;}
.y58_c00440{bottom:725.745000px;}
.y5c_c00440{bottom:727.245000px;}
.y5a_c00440{bottom:727.905000px;}
.y59_c00440{bottom:728.130000px;}
.y5b_c00440{bottom:728.970000px;}
.y56_c00440{bottom:745.245000px;}
.y53_c00440{bottom:745.470000px;}
.y55_c00440{bottom:747.405000px;}
.y54_c00440{bottom:747.630000px;}
.y57_c00440{bottom:748.470000px;}
.y51_c00440{bottom:766.245000px;}
.y52_c00440{bottom:766.905000px;}
.y50_c00440{bottom:767.130000px;}
.y4f_c00440{bottom:768.405000px;}
.y4d_c00440{bottom:784.245000px;}
.y4b_c00440{bottom:784.680000px;}
.y49_c00440{bottom:785.745000px;}
.y4c_c00440{bottom:786.630000px;}
.y4e_c00440{bottom:787.470000px;}
.y4a_c00440{bottom:787.905000px;}
.y44_c00440{bottom:805.245000px;}
.y48_c00440{bottom:806.970000px;}
.y45_c00440{bottom:807.405000px;}
.y46_c00440{bottom:807.630000px;}
.y47_c00440{bottom:808.470000px;}
.y43_c00440{bottom:824.745000px;}
.y41_c00440{bottom:826.905000px;}
.y42_c00440{bottom:827.130000px;}
.y3d_c00440{bottom:844.245000px;}
.y3f_c00440{bottom:845.130000px;}
.y3c_c00440{bottom:846.405000px;}
.y3e_c00440{bottom:846.630000px;}
.y40_c00440{bottom:847.470000px;}
.y39_c00440{bottom:863.745000px;}
.y3b_c00440{bottom:864.180000px;}
.y38_c00440{bottom:864.825000px;}
.y36_c00440{bottom:865.050000px;}
.y3a_c00440{bottom:865.245000px;}
.y34_c00440{bottom:865.905000px;}
.y37_c00440{bottom:866.130000px;}
.y35_c00440{bottom:867.405000px;}
.y33_c00440{bottom:883.245000px;}
.y30_c00440{bottom:884.745000px;}
.y32_c00440{bottom:885.405000px;}
.y31_c00440{bottom:885.630000px;}
.y2f_c00440{bottom:886.905000px;}
.y2a_c00440{bottom:902.745000px;}
.y2e_c00440{bottom:903.825000px;}
.y2b_c00440{bottom:904.245000px;}
.y29_c00440{bottom:904.905000px;}
.y28_c00440{bottom:905.130000px;}
.y2c_c00440{bottom:905.970000px;}
.y2d_c00440{bottom:906.405000px;}
.y27_c00440{bottom:922.245000px;}
.y22_c00440{bottom:923.745000px;}
.y26_c00440{bottom:924.825000px;}
.y24_c00440{bottom:925.470000px;}
.y21_c00440{bottom:925.905000px;}
.y25_c00440{bottom:925.920000px;}
.y23_c00440{bottom:926.970000px;}
.y1e_c00440{bottom:941.745000px;}
.y20_c00440{bottom:942.180000px;}
.y1f_c00440{bottom:943.245000px;}
.y1c_c00440{bottom:945.405000px;}
.y1d_c00440{bottom:945.420000px;}
.y1b_c00440{bottom:962.745000px;}
.y19_c00440{bottom:981.825000px;}
.y18_c00440{bottom:982.245000px;}
.y1a_c00440{bottom:983.970000px;}
.y17_c00440{bottom:984.405000px;}
.y15_c00440{bottom:1001.745000px;}
.y16_c00440{bottom:1001.970000px;}
.y13_c00440{bottom:1002.825000px;}
.y10_c00440{bottom:1003.470000px;}
.y12_c00440{bottom:1003.905000px;}
.y14_c00440{bottom:1004.130000px;}
.y11_c00440{bottom:1004.970000px;}
.ye_c00440{bottom:1021.245000px;}
.yd_c00440{bottom:1022.130000px;}
.yc_c00440{bottom:1022.970000px;}
.yb_c00440{bottom:1023.405000px;}
.yf_c00440{bottom:1023.630000px;}
.y7_c00440{bottom:1040.745000px;}
.ya_c00440{bottom:1041.630000px;}
.y9_c00440{bottom:1041.825000px;}
.y8_c00440{bottom:1042.905000px;}
.y6_c00440{bottom:1059.405000px;}
.y5_c00440{bottom:1061.745000px;}
.y4_c00440{bottom:1062.630000px;}
.y3_c00440{bottom:1063.905000px;}
.y2_c00440{bottom:1099.905000px;}
.y1_c00440{bottom:1102.050000px;}
.h7_c00440{height:4.206533px;}
.h3_c00440{height:23.025234px;}
.h1_c00440{height:25.091602px;}
.h6_c00440{height:31.364502px;}
.h2_c00440{height:35.571035px;}
.h5_c00440{height:39.777568px;}
.h4_c00440{height:43.910303px;}
.h8_c00440{height:48.116836px;}
.h0_c00440{height:1335.000000px;}
.w0_c00440{width:880.500000px;}
.x0_c00440{left:0.000000px;}
.xec_c00440{left:150.000000px;}
.x14_c00440{left:151.500000px;}
.x3_c00440{left:153.000000px;}
.xae_c00440{left:166.080000px;}
.x45_c00440{left:167.145000px;}
.xa9_c00440{left:169.500000px;}
.x97_c00440{left:172.500000px;}
.x3a_c00440{left:173.775000px;}
.x101_c00440{left:181.920000px;}
.x87_c00440{left:183.000000px;}
.x98_c00440{left:190.920000px;}
.x21_c00440{left:193.920000px;}
.xc0_c00440{left:195.000000px;}
.xef_c00440{left:196.920000px;}
.x4_c00440{left:198.000000px;}
.xe4_c00440{left:199.500000px;}
.x44_c00440{left:200.775000px;}
.x88_c00440{left:202.080000px;}
.x4f_c00440{left:204.000000px;}
.xf9_c00440{left:207.420000px;}
.xaa_c00440{left:208.500000px;}
.x15_c00440{left:209.580000px;}
.x6a_c00440{left:211.920000px;}
.xa1_c00440{left:213.000000px;}
.x5e_c00440{left:214.500000px;}
.x2e_c00440{left:216.420000px;}
.x3b_c00440{left:217.920000px;}
.x58_c00440{left:219.420000px;}
.x77_c00440{left:222.420000px;}
.x5_c00440{left:225.420000px;}
.xc8_c00440{left:226.920000px;}
.xb5_c00440{left:228.855000px;}
.x99_c00440{left:229.920000px;}
.xe7_c00440{left:231.000000px;}
.x22_c00440{left:234.420000px;}
.x46_c00440{left:237.000000px;}
.xff_c00440{left:240.000000px;}
.x16_c00440{left:241.920000px;}
.x2f_c00440{left:243.000000px;}
.xce_c00440{left:244.500000px;}
.x6b_c00440{left:247.500000px;}
.x5f_c00440{left:249.420000px;}
.xe2_c00440{left:250.920000px;}
.xa2_c00440{left:252.000000px;}
.xab_c00440{left:253.500000px;}
.x3c_c00440{left:255.420000px;}
.x78_c00440{left:256.500000px;}
.x47_c00440{left:258.000000px;}
.x80_c00440{left:259.500000px;}
.x23_c00440{left:262.080000px;}
.x6_c00440{left:263.580000px;}
.xde_c00440{left:265.920000px;}
.xc1_c00440{left:268.920000px;}
.xf4_c00440{left:270.000000px;}
.xfa_c00440{left:271.500000px;}
.xb6_c00440{left:274.500000px;}
.x102_c00440{left:276.000000px;}
.xf0_c00440{left:278.580000px;}
.x30_c00440{left:280.500000px;}
.x60_c00440{left:283.920000px;}
.xc9_c00440{left:285.420000px;}
.xe3_c00440{left:286.920000px;}
.x79_c00440{left:288.000000px;}
.xe5_c00440{left:289.080000px;}
.xd5_c00440{left:292.500000px;}
.x50_c00440{left:295.500000px;}
.x24_c00440{left:297.000000px;}
.x3d_c00440{left:298.500000px;}
.xf5_c00440{left:301.500000px;}
.x6c_c00440{left:303.000000px;}
.xf1_c00440{left:304.500000px;}
.x7_c00440{left:306.000000px;}
.xb7_c00440{left:308.580000px;}
.x48_c00440{left:310.920000px;}
.xa3_c00440{left:313.920000px;}
.x31_c00440{left:316.500000px;}
.x25_c00440{left:318.000000px;}
.x17_c00440{left:319.080000px;}
.x61_c00440{left:321.420000px;}
.xca_c00440{left:322.920000px;}
.x51_c00440{left:324.000000px;}
.xac_c00440{left:328.080000px;}
.xb8_c00440{left:331.920000px;}
.xed_c00440{left:333.000000px;}
.x26_c00440{left:336.000000px;}
.x6d_c00440{left:339.000000px;}
.x49_c00440{left:340.500000px;}
.x103_c00440{left:342.000000px;}
.xb2_c00440{left:343.920000px;}
.x89_c00440{left:345.000000px;}
.xc2_c00440{left:347.580000px;}
.x18_c00440{left:349.920000px;}
.x62_c00440{left:351.000000px;}
.xaf_c00440{left:353.580000px;}
.x104_c00440{left:357.420000px;}
.x6e_c00440{left:358.500000px;}
.xb9_c00440{left:360.000000px;}
.x32_c00440{left:361.920000px;}
.xe6_c00440{left:364.080000px;}
.x8a_c00440{left:366.000000px;}
.xc3_c00440{left:367.500000px;}
.xf6_c00440{left:368.580000px;}
.xad_c00440{left:371.580000px;}
.x3e_c00440{left:373.080000px;}
.x19_c00440{left:376.500000px;}
.x6f_c00440{left:378.420000px;}
.x8_c00440{left:379.500000px;}
.x9a_c00440{left:381.420000px;}
.x27_c00440{left:387.000000px;}
.x63_c00440{left:388.920000px;}
.xfb_c00440{left:391.500000px;}
.xba_c00440{left:393.000000px;}
.x52_c00440{left:394.500000px;}
.x59_c00440{left:395.580000px;}
.x90_c00440{left:397.080000px;}
.x9_c00440{left:399.420000px;}
.xcf_c00440{left:400.500000px;}
.x1_c00440{left:406.500000px;}
.xbb_c00440{left:410.580000px;}
.x1a_c00440{left:412.080000px;}
.xa4_c00440{left:413.580000px;}
.x5a_c00440{left:415.920000px;}
.x81_c00440{left:417.000000px;}
.xa_c00440{left:420.420000px;}
.x4a_c00440{left:423.420000px;}
.x7a_c00440{left:426.420000px;}
.x70_c00440{left:427.500000px;}
.x91_c00440{left:428.775000px;}
.xcb_c00440{left:430.920000px;}
.xb3_c00440{left:432.000000px;}
.xe8_c00440{left:433.500000px;}
.x3f_c00440{left:435.420000px;}
.xfc_c00440{left:437.580000px;}
.x33_c00440{left:441.420000px;}
.x1b_c00440{left:442.920000px;}
.x64_c00440{left:444.420000px;}
.xb_c00440{left:445.500000px;}
.x9b_c00440{left:447.000000px;}
.x71_c00440{left:448.500000px;}
.x4b_c00440{left:453.000000px;}
.xee_c00440{left:456.000000px;}
.xd0_c00440{left:457.080000px;}
.x53_c00440{left:459.000000px;}
.xf7_c00440{left:462.000000px;}
.xc_c00440{left:465.000000px;}
.x72_c00440{left:468.000000px;}
.x1c_c00440{left:469.500000px;}
.x7b_c00440{left:471.000000px;}
.x65_c00440{left:472.500000px;}
.xe9_c00440{left:474.000000px;}
.x40_c00440{left:475.920000px;}
.x82_c00440{left:477.000000px;}
.x34_c00440{left:478.500000px;}
.x54_c00440{left:480.420000px;}
.xbc_c00440{left:481.500000px;}
.x28_c00440{left:482.580000px;}
.xd_c00440{left:484.080000px;}
.x7c_c00440{left:489.000000px;}
.xd1_c00440{left:490.080000px;}
.x8b_c00440{left:495.000000px;}
.x35_c00440{left:499.500000px;}
.x100_c00440{left:500.580000px;}
.xdf_c00440{left:502.500000px;}
.x29_c00440{left:504.420000px;}
.xe_c00440{left:507.420000px;}
.xbd_c00440{left:508.920000px;}
.x83_c00440{left:511.080000px;}
.x4c_c00440{left:513.000000px;}
.xc4_c00440{left:514.920000px;}
.x92_c00440{left:516.000000px;}
.xd6_c00440{left:522.000000px;}
.x9c_c00440{left:525.000000px;}
.x73_c00440{left:526.500000px;}
.x66_c00440{left:528.000000px;}
.x36_c00440{left:529.080000px;}
.x93_c00440{left:532.500000px;}
.x2a_c00440{left:534.420000px;}
.xf_c00440{left:535.500000px;}
.x1d_c00440{left:537.000000px;}
.xa5_c00440{left:538.500000px;}
.xc5_c00440{left:543.000000px;}
.x94_c00440{left:544.920000px;}
.x55_c00440{left:549.000000px;}
.xe0_c00440{left:550.500000px;}
.xfd_c00440{left:552.000000px;}
.xea_c00440{left:553.920000px;}
.xb0_c00440{left:555.420000px;}
.x67_c00440{left:556.920000px;}
.x84_c00440{left:559.500000px;}
.xdd_c00440{left:561.420000px;}
.xd2_c00440{left:562.920000px;}
.x5b_c00440{left:564.000000px;}
.x4d_c00440{left:568.500000px;}
.x8c_c00440{left:571.500000px;}
.xd7_c00440{left:573.420000px;}
.xcc_c00440{left:574.500000px;}
.x74_c00440{left:577.500000px;}
.x10_c00440{left:581.580000px;}
.x37_c00440{left:583.500000px;}
.x7d_c00440{left:585.000000px;}
.xfe_c00440{left:586.500000px;}
.xa6_c00440{left:589.500000px;}
.x2b_c00440{left:592.500000px;}
.xe1_c00440{left:595.920000px;}
.xc6_c00440{left:597.000000px;}
.xd8_c00440{left:600.000000px;}
.x7e_c00440{left:601.920000px;}
.x1e_c00440{left:603.000000px;}
.x5c_c00440{left:605.580000px;}
.x41_c00440{left:607.920000px;}
.xa7_c00440{left:612.000000px;}
.x11_c00440{left:613.500000px;}
.x8d_c00440{left:615.000000px;}
.xd3_c00440{left:618.000000px;}
.x9d_c00440{left:621.000000px;}
.xdb_c00440{left:622.500000px;}
.x1f_c00440{left:625.500000px;}
.x2c_c00440{left:627.000000px;}
.x68_c00440{left:630.000000px;}
.xf2_c00440{left:631.500000px;}
.x56_c00440{left:633.420000px;}
.x75_c00440{left:635.580000px;}
.x85_c00440{left:637.920000px;}
.x9e_c00440{left:640.920000px;}
.x95_c00440{left:643.500000px;}
.x20_c00440{left:645.645000px;}
.x38_c00440{left:647.580000px;}
.x42_c00440{left:651.000000px;}
.x8e_c00440{left:652.500000px;}
.x96_c00440{left:655.920000px;}
.x12_c00440{left:657.000000px;}
.xb1_c00440{left:658.500000px;}
.xb4_c00440{left:660.000000px;}
.x4e_c00440{left:661.080000px;}
.xcd_c00440{left:664.500000px;}
.xbe_c00440{left:666.000000px;}
.x2d_c00440{left:667.500000px;}
.xd9_c00440{left:669.000000px;}
.xf8_c00440{left:670.920000px;}
.xa8_c00440{left:672.420000px;}
.x43_c00440{left:675.000000px;}
.x86_c00440{left:677.580000px;}
.xf3_c00440{left:679.080000px;}
.x9f_c00440{left:682.920000px;}
.xda_c00440{left:685.500000px;}
.x57_c00440{left:687.420000px;}
.x69_c00440{left:688.500000px;}
.x39_c00440{left:689.580000px;}
.xc7_c00440{left:694.920000px;}
.xd4_c00440{left:696.420000px;}
.xdc_c00440{left:697.920000px;}
.x76_c00440{left:700.500000px;}
.x8f_c00440{left:702.000000px;}
.xbf_c00440{left:703.080000px;}
.x2_c00440{left:705.000000px;}
.x5d_c00440{left:706.920000px;}
.x13_c00440{left:708.000000px;}
.xeb_c00440{left:709.920000px;}
.x7f_c00440{left:715.500000px;}
.xa0_c00440{left:721.500000px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.ls0_c00440{letter-spacing:0.000000pt;}
.ws0_c00440{word-spacing:0.000000pt;}
.fs6_c00440{font-size:3.040000pt;}
.fs2_c00440{font-size:16.640000pt;}
.fs0_c00440{font-size:18.133333pt;}
.fs5_c00440{font-size:22.666667pt;}
.fs1_c00440{font-size:25.706667pt;}
.fs4_c00440{font-size:28.746667pt;}
.fs3_c00440{font-size:31.733333pt;}
.fs7_c00440{font-size:34.773333pt;}
.y0_c00440{bottom:0.000000pt;}
.yc2_c00440{bottom:276.360000pt;}
.yc1_c00440{bottom:277.106667pt;}
.yc3_c00440{bottom:278.066667pt;}
.ybc_c00440{bottom:293.693333pt;}
.ybd_c00440{bottom:294.440000pt;}
.ybf_c00440{bottom:295.400000pt;}
.ybb_c00440{bottom:296.360000pt;}
.ybe_c00440{bottom:296.560000pt;}
.yc0_c00440{bottom:297.693333pt;}
.yba_c00440{bottom:311.026667pt;}
.yb5_c00440{bottom:311.773333pt;}
.yb7_c00440{bottom:313.106667pt;}
.yb6_c00440{bottom:313.693333pt;}
.yb9_c00440{bottom:314.640000pt;}
.yb8_c00440{bottom:315.026667pt;}
.yb2_c00440{bottom:328.360000pt;}
.yb1_c00440{bottom:329.106667pt;}
.yb3_c00440{bottom:329.306667pt;}
.yb0_c00440{bottom:331.026667pt;}
.yb4_c00440{bottom:331.226667pt;}
.yad_c00440{bottom:345.693333pt;}
.yae_c00440{bottom:346.440000pt;}
.yac_c00440{bottom:347.773333pt;}
.yaf_c00440{bottom:348.360000pt;}
.yab_c00440{bottom:348.560000pt;}
.ya9_c00440{bottom:348.733333pt;}
.yaa_c00440{bottom:349.693333pt;}
.ya8_c00440{bottom:363.026667pt;}
.ya6_c00440{bottom:364.360000pt;}
.ya5_c00440{bottom:365.106667pt;}
.ya7_c00440{bottom:367.026667pt;}
.ya1_c00440{bottom:381.693333pt;}
.ya3_c00440{bottom:382.440000pt;}
.ya4_c00440{bottom:383.226667pt;}
.ya0_c00440{bottom:383.973333pt;}
.y9f_c00440{bottom:384.360000pt;}
.ya2_c00440{bottom:384.560000pt;}
.y9c_c00440{bottom:399.773333pt;}
.y9e_c00440{bottom:401.306667pt;}
.y9b_c00440{bottom:401.693333pt;}
.y9d_c00440{bottom:402.640000pt;}
.y9a_c00440{bottom:417.106667pt;}
.y98_c00440{bottom:419.026667pt;}
.y99_c00440{bottom:419.973333pt;}
.y95_c00440{bottom:434.440000pt;}
.y97_c00440{bottom:436.360000pt;}
.y96_c00440{bottom:437.693333pt;}
.y93_c00440{bottom:451.026667pt;}
.y94_c00440{bottom:455.026667pt;}
.y8e_c00440{bottom:470.440000pt;}
.y92_c00440{bottom:471.026667pt;}
.y91_c00440{bottom:471.226667pt;}
.y90_c00440{bottom:471.400000pt;}
.y8d_c00440{bottom:472.360000pt;}
.y8f_c00440{bottom:473.306667pt;}
.y87_c00440{bottom:487.026667pt;}
.y8c_c00440{bottom:487.400000pt;}
.y8a_c00440{bottom:487.773333pt;}
.y8b_c00440{bottom:487.973333pt;}
.y89_c00440{bottom:488.560000pt;}
.y88_c00440{bottom:489.306667pt;}
.y86_c00440{bottom:489.693333pt;}
.y83_c00440{bottom:505.106667pt;}
.y84_c00440{bottom:505.893333pt;}
.y85_c00440{bottom:507.026667pt;}
.y7e_c00440{bottom:521.693333pt;}
.y81_c00440{bottom:522.440000pt;}
.y80_c00440{bottom:522.640000pt;}
.y7f_c00440{bottom:523.973333pt;}
.y7d_c00440{bottom:524.360000pt;}
.y82_c00440{bottom:525.693333pt;}
.y79_c00440{bottom:539.773333pt;}
.y7b_c00440{bottom:540.733333pt;}
.y7a_c00440{bottom:541.106667pt;}
.y78_c00440{bottom:541.693333pt;}
.y7c_c00440{bottom:543.026667pt;}
.y75_c00440{bottom:557.306667pt;}
.y76_c00440{bottom:557.493333pt;}
.y73_c00440{bottom:557.693333pt;}
.y71_c00440{bottom:558.440000pt;}
.y77_c00440{bottom:559.026667pt;}
.y72_c00440{bottom:559.400000pt;}
.y74_c00440{bottom:559.973333pt;}
.y70_c00440{bottom:560.360000pt;}
.y6c_c00440{bottom:575.773333pt;}
.y6e_c00440{bottom:576.560000pt;}
.y6d_c00440{bottom:576.733333pt;}
.y6f_c00440{bottom:577.306667pt;}
.y6b_c00440{bottom:577.693333pt;}
.y6a_c00440{bottom:592.360000pt;}
.y69_c00440{bottom:593.106667pt;}
.y68_c00440{bottom:593.893333pt;}
.y67_c00440{bottom:594.066667pt;}
.y65_c00440{bottom:594.640000pt;}
.y66_c00440{bottom:595.026667pt;}
.y60_c00440{bottom:609.306667pt;}
.y5f_c00440{bottom:609.493333pt;}
.y64_c00440{bottom:610.440000pt;}
.y63_c00440{bottom:611.973333pt;}
.y61_c00440{bottom:612.360000pt;}
.y62_c00440{bottom:613.306667pt;}
.y5d_c00440{bottom:627.773333pt;}
.y5e_c00440{bottom:629.693333pt;}
.y58_c00440{bottom:645.106667pt;}
.y5c_c00440{bottom:646.440000pt;}
.y5a_c00440{bottom:647.026667pt;}
.y59_c00440{bottom:647.226667pt;}
.y5b_c00440{bottom:647.973333pt;}
.y56_c00440{bottom:662.440000pt;}
.y53_c00440{bottom:662.640000pt;}
.y55_c00440{bottom:664.360000pt;}
.y54_c00440{bottom:664.560000pt;}
.y57_c00440{bottom:665.306667pt;}
.y51_c00440{bottom:681.106667pt;}
.y52_c00440{bottom:681.693333pt;}
.y50_c00440{bottom:681.893333pt;}
.y4f_c00440{bottom:683.026667pt;}
.y4d_c00440{bottom:697.106667pt;}
.y4b_c00440{bottom:697.493333pt;}
.y49_c00440{bottom:698.440000pt;}
.y4c_c00440{bottom:699.226667pt;}
.y4e_c00440{bottom:699.973333pt;}
.y4a_c00440{bottom:700.360000pt;}
.y44_c00440{bottom:715.773333pt;}
.y48_c00440{bottom:717.306667pt;}
.y45_c00440{bottom:717.693333pt;}
.y46_c00440{bottom:717.893333pt;}
.y47_c00440{bottom:718.640000pt;}
.y43_c00440{bottom:733.106667pt;}
.y41_c00440{bottom:735.026667pt;}
.y42_c00440{bottom:735.226667pt;}
.y3d_c00440{bottom:750.440000pt;}
.y3f_c00440{bottom:751.226667pt;}
.y3c_c00440{bottom:752.360000pt;}
.y3e_c00440{bottom:752.560000pt;}
.y40_c00440{bottom:753.306667pt;}
.y39_c00440{bottom:767.773333pt;}
.y3b_c00440{bottom:768.160000pt;}
.y38_c00440{bottom:768.733333pt;}
.y36_c00440{bottom:768.933333pt;}
.y3a_c00440{bottom:769.106667pt;}
.y34_c00440{bottom:769.693333pt;}
.y37_c00440{bottom:769.893333pt;}
.y35_c00440{bottom:771.026667pt;}
.y33_c00440{bottom:785.106667pt;}
.y30_c00440{bottom:786.440000pt;}
.y32_c00440{bottom:787.026667pt;}
.y31_c00440{bottom:787.226667pt;}
.y2f_c00440{bottom:788.360000pt;}
.y2a_c00440{bottom:802.440000pt;}
.y2e_c00440{bottom:803.400000pt;}
.y2b_c00440{bottom:803.773333pt;}
.y29_c00440{bottom:804.360000pt;}
.y28_c00440{bottom:804.560000pt;}
.y2c_c00440{bottom:805.306667pt;}
.y2d_c00440{bottom:805.693333pt;}
.y27_c00440{bottom:819.773333pt;}
.y22_c00440{bottom:821.106667pt;}
.y26_c00440{bottom:822.066667pt;}
.y24_c00440{bottom:822.640000pt;}
.y21_c00440{bottom:823.026667pt;}
.y25_c00440{bottom:823.040000pt;}
.y23_c00440{bottom:823.973333pt;}
.y1e_c00440{bottom:837.106667pt;}
.y20_c00440{bottom:837.493333pt;}
.y1f_c00440{bottom:838.440000pt;}
.y1c_c00440{bottom:840.360000pt;}
.y1d_c00440{bottom:840.373333pt;}
.y1b_c00440{bottom:855.773333pt;}
.y19_c00440{bottom:872.733333pt;}
.y18_c00440{bottom:873.106667pt;}
.y1a_c00440{bottom:874.640000pt;}
.y17_c00440{bottom:875.026667pt;}
.y15_c00440{bottom:890.440000pt;}
.y16_c00440{bottom:890.640000pt;}
.y13_c00440{bottom:891.400000pt;}
.y10_c00440{bottom:891.973333pt;}
.y12_c00440{bottom:892.360000pt;}
.y14_c00440{bottom:892.560000pt;}
.y11_c00440{bottom:893.306667pt;}
.ye_c00440{bottom:907.773333pt;}
.yd_c00440{bottom:908.560000pt;}
.yc_c00440{bottom:909.306667pt;}
.yb_c00440{bottom:909.693333pt;}
.yf_c00440{bottom:909.893333pt;}
.y7_c00440{bottom:925.106667pt;}
.ya_c00440{bottom:925.893333pt;}
.y9_c00440{bottom:926.066667pt;}
.y8_c00440{bottom:927.026667pt;}
.y6_c00440{bottom:941.693333pt;}
.y5_c00440{bottom:943.773333pt;}
.y4_c00440{bottom:944.560000pt;}
.y3_c00440{bottom:945.693333pt;}
.y2_c00440{bottom:977.693333pt;}
.y1_c00440{bottom:979.600000pt;}
.h7_c00440{height:3.739141pt;}
.h3_c00440{height:20.466875pt;}
.h1_c00440{height:22.303646pt;}
.h6_c00440{height:27.879557pt;}
.h2_c00440{height:31.618698pt;}
.h5_c00440{height:35.357839pt;}
.h4_c00440{height:39.031380pt;}
.h8_c00440{height:42.770521pt;}
.h0_c00440{height:1186.666667pt;}
.w0_c00440{width:782.666667pt;}
.x0_c00440{left:0.000000pt;}
.xec_c00440{left:133.333333pt;}
.x14_c00440{left:134.666667pt;}
.x3_c00440{left:136.000000pt;}
.xae_c00440{left:147.626667pt;}
.x45_c00440{left:148.573333pt;}
.xa9_c00440{left:150.666667pt;}
.x97_c00440{left:153.333333pt;}
.x3a_c00440{left:154.466667pt;}
.x101_c00440{left:161.706667pt;}
.x87_c00440{left:162.666667pt;}
.x98_c00440{left:169.706667pt;}
.x21_c00440{left:172.373333pt;}
.xc0_c00440{left:173.333333pt;}
.xef_c00440{left:175.040000pt;}
.x4_c00440{left:176.000000pt;}
.xe4_c00440{left:177.333333pt;}
.x44_c00440{left:178.466667pt;}
.x88_c00440{left:179.626667pt;}
.x4f_c00440{left:181.333333pt;}
.xf9_c00440{left:184.373333pt;}
.xaa_c00440{left:185.333333pt;}
.x15_c00440{left:186.293333pt;}
.x6a_c00440{left:188.373333pt;}
.xa1_c00440{left:189.333333pt;}
.x5e_c00440{left:190.666667pt;}
.x2e_c00440{left:192.373333pt;}
.x3b_c00440{left:193.706667pt;}
.x58_c00440{left:195.040000pt;}
.x77_c00440{left:197.706667pt;}
.x5_c00440{left:200.373333pt;}
.xc8_c00440{left:201.706667pt;}
.xb5_c00440{left:203.426667pt;}
.x99_c00440{left:204.373333pt;}
.xe7_c00440{left:205.333333pt;}
.x22_c00440{left:208.373333pt;}
.x46_c00440{left:210.666667pt;}
.xff_c00440{left:213.333333pt;}
.x16_c00440{left:215.040000pt;}
.x2f_c00440{left:216.000000pt;}
.xce_c00440{left:217.333333pt;}
.x6b_c00440{left:220.000000pt;}
.x5f_c00440{left:221.706667pt;}
.xe2_c00440{left:223.040000pt;}
.xa2_c00440{left:224.000000pt;}
.xab_c00440{left:225.333333pt;}
.x3c_c00440{left:227.040000pt;}
.x78_c00440{left:228.000000pt;}
.x47_c00440{left:229.333333pt;}
.x80_c00440{left:230.666667pt;}
.x23_c00440{left:232.960000pt;}
.x6_c00440{left:234.293333pt;}
.xde_c00440{left:236.373333pt;}
.xc1_c00440{left:239.040000pt;}
.xf4_c00440{left:240.000000pt;}
.xfa_c00440{left:241.333333pt;}
.xb6_c00440{left:244.000000pt;}
.x102_c00440{left:245.333333pt;}
.xf0_c00440{left:247.626667pt;}
.x30_c00440{left:249.333333pt;}
.x60_c00440{left:252.373333pt;}
.xc9_c00440{left:253.706667pt;}
.xe3_c00440{left:255.040000pt;}
.x79_c00440{left:256.000000pt;}
.xe5_c00440{left:256.960000pt;}
.xd5_c00440{left:260.000000pt;}
.x50_c00440{left:262.666667pt;}
.x24_c00440{left:264.000000pt;}
.x3d_c00440{left:265.333333pt;}
.xf5_c00440{left:268.000000pt;}
.x6c_c00440{left:269.333333pt;}
.xf1_c00440{left:270.666667pt;}
.x7_c00440{left:272.000000pt;}
.xb7_c00440{left:274.293333pt;}
.x48_c00440{left:276.373333pt;}
.xa3_c00440{left:279.040000pt;}
.x31_c00440{left:281.333333pt;}
.x25_c00440{left:282.666667pt;}
.x17_c00440{left:283.626667pt;}
.x61_c00440{left:285.706667pt;}
.xca_c00440{left:287.040000pt;}
.x51_c00440{left:288.000000pt;}
.xac_c00440{left:291.626667pt;}
.xb8_c00440{left:295.040000pt;}
.xed_c00440{left:296.000000pt;}
.x26_c00440{left:298.666667pt;}
.x6d_c00440{left:301.333333pt;}
.x49_c00440{left:302.666667pt;}
.x103_c00440{left:304.000000pt;}
.xb2_c00440{left:305.706667pt;}
.x89_c00440{left:306.666667pt;}
.xc2_c00440{left:308.960000pt;}
.x18_c00440{left:311.040000pt;}
.x62_c00440{left:312.000000pt;}
.xaf_c00440{left:314.293333pt;}
.x104_c00440{left:317.706667pt;}
.x6e_c00440{left:318.666667pt;}
.xb9_c00440{left:320.000000pt;}
.x32_c00440{left:321.706667pt;}
.xe6_c00440{left:323.626667pt;}
.x8a_c00440{left:325.333333pt;}
.xc3_c00440{left:326.666667pt;}
.xf6_c00440{left:327.626667pt;}
.xad_c00440{left:330.293333pt;}
.x3e_c00440{left:331.626667pt;}
.x19_c00440{left:334.666667pt;}
.x6f_c00440{left:336.373333pt;}
.x8_c00440{left:337.333333pt;}
.x9a_c00440{left:339.040000pt;}
.x27_c00440{left:344.000000pt;}
.x63_c00440{left:345.706667pt;}
.xfb_c00440{left:348.000000pt;}
.xba_c00440{left:349.333333pt;}
.x52_c00440{left:350.666667pt;}
.x59_c00440{left:351.626667pt;}
.x90_c00440{left:352.960000pt;}
.x9_c00440{left:355.040000pt;}
.xcf_c00440{left:356.000000pt;}
.x1_c00440{left:361.333333pt;}
.xbb_c00440{left:364.960000pt;}
.x1a_c00440{left:366.293333pt;}
.xa4_c00440{left:367.626667pt;}
.x5a_c00440{left:369.706667pt;}
.x81_c00440{left:370.666667pt;}
.xa_c00440{left:373.706667pt;}
.x4a_c00440{left:376.373333pt;}
.x7a_c00440{left:379.040000pt;}
.x70_c00440{left:380.000000pt;}
.x91_c00440{left:381.133333pt;}
.xcb_c00440{left:383.040000pt;}
.xb3_c00440{left:384.000000pt;}
.xe8_c00440{left:385.333333pt;}
.x3f_c00440{left:387.040000pt;}
.xfc_c00440{left:388.960000pt;}
.x33_c00440{left:392.373333pt;}
.x1b_c00440{left:393.706667pt;}
.x64_c00440{left:395.040000pt;}
.xb_c00440{left:396.000000pt;}
.x9b_c00440{left:397.333333pt;}
.x71_c00440{left:398.666667pt;}
.x4b_c00440{left:402.666667pt;}
.xee_c00440{left:405.333333pt;}
.xd0_c00440{left:406.293333pt;}
.x53_c00440{left:408.000000pt;}
.xf7_c00440{left:410.666667pt;}
.xc_c00440{left:413.333333pt;}
.x72_c00440{left:416.000000pt;}
.x1c_c00440{left:417.333333pt;}
.x7b_c00440{left:418.666667pt;}
.x65_c00440{left:420.000000pt;}
.xe9_c00440{left:421.333333pt;}
.x40_c00440{left:423.040000pt;}
.x82_c00440{left:424.000000pt;}
.x34_c00440{left:425.333333pt;}
.x54_c00440{left:427.040000pt;}
.xbc_c00440{left:428.000000pt;}
.x28_c00440{left:428.960000pt;}
.xd_c00440{left:430.293333pt;}
.x7c_c00440{left:434.666667pt;}
.xd1_c00440{left:435.626667pt;}
.x8b_c00440{left:440.000000pt;}
.x35_c00440{left:444.000000pt;}
.x100_c00440{left:444.960000pt;}
.xdf_c00440{left:446.666667pt;}
.x29_c00440{left:448.373333pt;}
.xe_c00440{left:451.040000pt;}
.xbd_c00440{left:452.373333pt;}
.x83_c00440{left:454.293333pt;}
.x4c_c00440{left:456.000000pt;}
.xc4_c00440{left:457.706667pt;}
.x92_c00440{left:458.666667pt;}
.xd6_c00440{left:464.000000pt;}
.x9c_c00440{left:466.666667pt;}
.x73_c00440{left:468.000000pt;}
.x66_c00440{left:469.333333pt;}
.x36_c00440{left:470.293333pt;}
.x93_c00440{left:473.333333pt;}
.x2a_c00440{left:475.040000pt;}
.xf_c00440{left:476.000000pt;}
.x1d_c00440{left:477.333333pt;}
.xa5_c00440{left:478.666667pt;}
.xc5_c00440{left:482.666667pt;}
.x94_c00440{left:484.373333pt;}
.x55_c00440{left:488.000000pt;}
.xe0_c00440{left:489.333333pt;}
.xfd_c00440{left:490.666667pt;}
.xea_c00440{left:492.373333pt;}
.xb0_c00440{left:493.706667pt;}
.x67_c00440{left:495.040000pt;}
.x84_c00440{left:497.333333pt;}
.xdd_c00440{left:499.040000pt;}
.xd2_c00440{left:500.373333pt;}
.x5b_c00440{left:501.333333pt;}
.x4d_c00440{left:505.333333pt;}
.x8c_c00440{left:508.000000pt;}
.xd7_c00440{left:509.706667pt;}
.xcc_c00440{left:510.666667pt;}
.x74_c00440{left:513.333333pt;}
.x10_c00440{left:516.960000pt;}
.x37_c00440{left:518.666667pt;}
.x7d_c00440{left:520.000000pt;}
.xfe_c00440{left:521.333333pt;}
.xa6_c00440{left:524.000000pt;}
.x2b_c00440{left:526.666667pt;}
.xe1_c00440{left:529.706667pt;}
.xc6_c00440{left:530.666667pt;}
.xd8_c00440{left:533.333333pt;}
.x7e_c00440{left:535.040000pt;}
.x1e_c00440{left:536.000000pt;}
.x5c_c00440{left:538.293333pt;}
.x41_c00440{left:540.373333pt;}
.xa7_c00440{left:544.000000pt;}
.x11_c00440{left:545.333333pt;}
.x8d_c00440{left:546.666667pt;}
.xd3_c00440{left:549.333333pt;}
.x9d_c00440{left:552.000000pt;}
.xdb_c00440{left:553.333333pt;}
.x1f_c00440{left:556.000000pt;}
.x2c_c00440{left:557.333333pt;}
.x68_c00440{left:560.000000pt;}
.xf2_c00440{left:561.333333pt;}
.x56_c00440{left:563.040000pt;}
.x75_c00440{left:564.960000pt;}
.x85_c00440{left:567.040000pt;}
.x9e_c00440{left:569.706667pt;}
.x95_c00440{left:572.000000pt;}
.x20_c00440{left:573.906667pt;}
.x38_c00440{left:575.626667pt;}
.x42_c00440{left:578.666667pt;}
.x8e_c00440{left:580.000000pt;}
.x96_c00440{left:583.040000pt;}
.x12_c00440{left:584.000000pt;}
.xb1_c00440{left:585.333333pt;}
.xb4_c00440{left:586.666667pt;}
.x4e_c00440{left:587.626667pt;}
.xcd_c00440{left:590.666667pt;}
.xbe_c00440{left:592.000000pt;}
.x2d_c00440{left:593.333333pt;}
.xd9_c00440{left:594.666667pt;}
.xf8_c00440{left:596.373333pt;}
.xa8_c00440{left:597.706667pt;}
.x43_c00440{left:600.000000pt;}
.x86_c00440{left:602.293333pt;}
.xf3_c00440{left:603.626667pt;}
.x9f_c00440{left:607.040000pt;}
.xda_c00440{left:609.333333pt;}
.x57_c00440{left:611.040000pt;}
.x69_c00440{left:612.000000pt;}
.x39_c00440{left:612.960000pt;}
.xc7_c00440{left:617.706667pt;}
.xd4_c00440{left:619.040000pt;}
.xdc_c00440{left:620.373333pt;}
.x76_c00440{left:622.666667pt;}
.x8f_c00440{left:624.000000pt;}
.xbf_c00440{left:624.960000pt;}
.x2_c00440{left:626.666667pt;}
.x5d_c00440{left:628.373333pt;}
.x13_c00440{left:629.333333pt;}
.xeb_c00440{left:631.040000pt;}
.x7f_c00440{left:636.000000pt;}
.xa0_c00440{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a80b3dbc789858dc26ec50da.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mca_c00441{transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);}
.m35_c00441{transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);}
.m17_c00441{transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);}
.m32_c00441{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m109_c00441{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m4f_c00441{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.ma9_c00441{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m2c_c00441{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m5f_c00441{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m3f_c00441{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m119_c00441{transform:matrix(0.381518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381518,0.000000,0.000000,0.250000,0,0);}
.mce_c00441{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m34_c00441{transform:matrix(0.386503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386503,0.000000,0.000000,0.250000,0,0);}
.m8c_c00441{transform:matrix(0.388824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388824,0.000000,0.000000,0.250000,0,0);}
.m11a_c00441{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m115_c00441{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m101_c00441{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m27_c00441{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mac_c00441{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m50_c00441{transform:matrix(0.396472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396472,0.000000,0.000000,0.250000,0,0);}
.me_c00441{transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);}
.m117_c00441{transform:matrix(0.397239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397239,0.000000,0.000000,0.250000,0,0);}
.m7a_c00441{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.mfa_c00441{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.med_c00441{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.mf0_c00441{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.md3_c00441{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mf8_c00441{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m7d_c00441{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m25_c00441{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m105_c00441{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mc8_c00441{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m9_c00441{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.mbd_c00441{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.m3b_c00441{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.mc9_c00441{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.mcc_c00441{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m38_c00441{transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);}
.m71_c00441{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.me0_c00441{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mae_c00441{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m95_c00441{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m19_c00441{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m112_c00441{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m10f_c00441{transform:matrix(0.422929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422929,0.000000,0.000000,0.250000,0,0);}
.mdf_c00441{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m10c_c00441{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m99_c00441{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m6d_c00441{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m33_c00441{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m7e_c00441{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.ma7_c00441{transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);}
.m2d_c00441{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m10d_c00441{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m6e_c00441{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m62_c00441{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m84_c00441{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m10b_c00441{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m82_c00441{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m77_c00441{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mb8_c00441{transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);}
.mf6_c00441{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m7_c00441{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m18_c00441{transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);}
.m1a_c00441{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m26_c00441{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m2e_c00441{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.ma_c00441{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.ma0_c00441{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m87_c00441{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m7f_c00441{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m96_c00441{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m10e_c00441{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.meb_c00441{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m4a_c00441{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m74_c00441{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m39_c00441{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.mea_c00441{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.m67_c00441{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mc7_c00441{transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);}
.me1_c00441{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m6b_c00441{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_c00441{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.m5b_c00441{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m45_c00441{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m21_c00441{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m49_c00441{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m7b_c00441{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m5_c00441{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m14_c00441{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.md5_c00441{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m52_c00441{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mc4_c00441{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mb6_c00441{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.mdd_c00441{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.mb2_c00441{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m6_c00441{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m8f_c00441{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m104_c00441{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.mfb_c00441{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m78_c00441{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.ma3_c00441{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.mf_c00441{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.mc1_c00441{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.ma6_c00441{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m60_c00441{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m9e_c00441{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m8_c00441{transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);}
.m5c_c00441{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m2_c00441{transform:matrix(0.480252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480252,0.000000,0.000000,0.250000,0,0);}
.ma4_c00441{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m2f_c00441{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m23_c00441{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m73_c00441{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m16_c00441{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m9b_c00441{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.mc5_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);}
.m1_c00441{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mc3_c00441{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m75_c00441{transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);}
.m111_c00441{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.me8_c00441{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m1e_c00441{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m5e_c00441{transform:matrix(0.494538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494538,0.000000,0.000000,0.250000,0,0);}
.m28_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);}
.mf1_c00441{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.mf4_c00441{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mfd_c00441{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.maf_c00441{transform:matrix(0.505882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505882,0.000000,0.000000,0.250000,0,0);}
.mda_c00441{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m3c_c00441{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.ma5_c00441{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m11b_c00441{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mb1_c00441{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.md0_c00441{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mcd_c00441{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mee_c00441{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.md2_c00441{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m40_c00441{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m76_c00441{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.md1_c00441{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m8a_c00441{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m1c_c00441{transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);}
.m3a_c00441{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m97_c00441{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m4b_c00441{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.me3_c00441{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mad_c00441{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);}
.m113_c00441{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m4e_c00441{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m1f_c00441{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mff_c00441{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mbb_c00441{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_c00441{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m11_c00441{transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);}
.mdb_c00441{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.me7_c00441{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mc_c00441{transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);}
.m6f_c00441{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m89_c00441{transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);}
.m3e_c00441{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m22_c00441{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m70_c00441{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m5a_c00441{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m92_c00441{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m31_c00441{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mf3_c00441{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m8b_c00441{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.md8_c00441{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m80_c00441{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.md9_c00441{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m12_c00441{transform:matrix(0.540441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540441,0.000000,0.000000,0.250000,0,0);}
.m53_c00441{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mc2_c00441{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m102_c00441{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m51_c00441{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m29_c00441{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.md7_c00441{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m10_c00441{transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);}
.mba_c00441{transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);}
.m54_c00441{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.me4_c00441{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mb_c00441{transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);}
.mcf_c00441{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mde_c00441{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.me5_c00441{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m4d_c00441{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m98_c00441{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.md6_c00441{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m81_c00441{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m4c_c00441{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.md4_c00441{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.me2_c00441{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mb9_c00441{transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);}
.mf9_c00441{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);}
.m58_c00441{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m9f_c00441{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m110_c00441{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m56_c00441{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.m20_c00441{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m42_c00441{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m10a_c00441{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m9d_c00441{transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);}
.m30_c00441{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m59_c00441{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mbe_c00441{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m114_c00441{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m108_c00441{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mfe_c00441{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mf2_c00441{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mb0_c00441{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m47_c00441{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mab_c00441{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m3_c00441{transform:matrix(0.589212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589212,0.000000,0.000000,0.250000,0,0);}
.m55_c00441{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.ma8_c00441{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.mfc_c00441{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m24_c00441{transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);}
.m106_c00441{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m91_c00441{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m68_c00441{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mcb_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);}
.m63_c00441{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m100_c00441{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m48_c00441{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m37_c00441{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mb3_c00441{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m93_c00441{transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);}
.m43_c00441{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.mb4_c00441{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.m13_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);}
.m6c_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);}
.m41_c00441{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mc6_c00441{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.me9_c00441{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.maa_c00441{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m44_c00441{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.ma2_c00441{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m7c_c00441{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m0_c00441{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m88_c00441{transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);}
.m61_c00441{transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);}
.m94_c00441{transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);}
.mb7_c00441{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.mc0_c00441{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);}
.mbc_c00441{transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);}
.m1d_c00441{transform:matrix(0.655294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655294,0.000000,0.000000,0.250000,0,0);}
.mbf_c00441{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m107_c00441{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m66_c00441{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m46_c00441{transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);}
.m9c_c00441{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m3d_c00441{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m116_c00441{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.m8d_c00441{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m15_c00441{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.m85_c00441{transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);}
.m69_c00441{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m64_c00441{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.mdc_c00441{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.ma1_c00441{transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);}
.mf5_c00441{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mf7_c00441{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m36_c00441{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m65_c00441{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m4_c00441{transform:matrix(0.728235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728235,0.000000,0.000000,0.250000,0,0);}
.m5d_c00441{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m6a_c00441{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m2a_c00441{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m103_c00441{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mef_c00441{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m79_c00441{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m72_c00441{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.mec_c00441{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.me6_c00441{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m118_c00441{transform:matrix(0.801282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.801282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.801282,0.000000,0.000000,0.250000,0,0);}
.m57_c00441{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m9a_c00441{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m83_c00441{transform:matrix(0.899840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.899840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.899840,0.000000,0.000000,0.250000,0,0);}
.mb5_c00441{transform:matrix(0.953744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.953744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.953744,0.000000,0.000000,0.250000,0,0);}
.m86_c00441{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m90_c00441{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m2b_c00441{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m1b_c00441{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00441{vertical-align:-12.000000px;}
.v2_c00441{vertical-align:-6.000000px;}
.v0_c00441{vertical-align:0.000000px;}
.ls0_c00441{letter-spacing:0.000000px;}
.sc__c00441{text-shadow:none;}
.sc0_c00441{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00441{-webkit-text-stroke:0px transparent;}
.sc0_c00441{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00441{word-spacing:-5.871000px;}
.ws1_c00441{word-spacing:-2.871000px;}
.ws2_c00441{word-spacing:0.000000px;}
.fc0_c00441{color:transparent;}
.fs5_c00441{font-size:3.420000px;}
.fs8_c00441{font-size:13.620000px;}
.fs6_c00441{font-size:18.720000px;}
.fs0_c00441{font-size:20.400000px;}
.fs3_c00441{font-size:25.500000px;}
.fs1_c00441{font-size:28.920000px;}
.fs4_c00441{font-size:32.340000px;}
.fs2_c00441{font-size:35.700000px;}
.fs7_c00441{font-size:39.120000px;}
.y0_c00441{bottom:0.000000px;}
.yed_c00441{bottom:251.745000px;}
.yeb_c00441{bottom:252.180000px;}
.yea_c00441{bottom:253.245000px;}
.yec_c00441{bottom:254.130000px;}
.ye9_c00441{bottom:255.405000px;}
.ye5_c00441{bottom:272.745000px;}
.ye7_c00441{bottom:273.630000px;}
.ye8_c00441{bottom:273.825000px;}
.ye4_c00441{bottom:274.905000px;}
.ye6_c00441{bottom:275.970000px;}
.ye2_c00441{bottom:291.825000px;}
.ye1_c00441{bottom:292.245000px;}
.ye0_c00441{bottom:293.970000px;}
.ydf_c00441{bottom:294.405000px;}
.ye3_c00441{bottom:295.470000px;}
.ydc_c00441{bottom:310.905000px;}
.yd9_c00441{bottom:311.745000px;}
.yde_c00441{bottom:312.180000px;}
.yda_c00441{bottom:313.905000px;}
.ydd_c00441{bottom:314.130000px;}
.ydb_c00441{bottom:315.405000px;}
.yd8_c00441{bottom:330.405000px;}
.yd7_c00441{bottom:332.745000px;}
.yd5_c00441{bottom:333.405000px;}
.yd6_c00441{bottom:334.905000px;}
.yd2_c00441{bottom:352.245000px;}
.yd0_c00441{bottom:353.130000px;}
.yd1_c00441{bottom:353.325000px;}
.yd4_c00441{bottom:353.970000px;}
.ycf_c00441{bottom:354.405000px;}
.yd3_c00441{bottom:355.470000px;}
.ycd_c00441{bottom:370.470000px;}
.ycc_c00441{bottom:371.325000px;}
.yce_c00441{bottom:371.745000px;}
.yca_c00441{bottom:372.630000px;}
.ycb_c00441{bottom:372.825000px;}
.yc9_c00441{bottom:373.905000px;}
.yc7_c00441{bottom:391.245000px;}
.yc8_c00441{bottom:392.130000px;}
.yc6_c00441{bottom:392.325000px;}
.yc5_c00441{bottom:393.405000px;}
.yc4_c00441{bottom:410.745000px;}
.yc2_c00441{bottom:412.245000px;}
.yc0_c00441{bottom:412.905000px;}
.yc1_c00441{bottom:413.130000px;}
.yc3_c00441{bottom:413.970000px;}
.ybf_c00441{bottom:430.245000px;}
.ybe_c00441{bottom:431.325000px;}
.ybd_c00441{bottom:432.405000px;}
.ybc_c00441{bottom:432.630000px;}
.yb9_c00441{bottom:433.470000px;}
.yba_c00441{bottom:433.905000px;}
.ybb_c00441{bottom:434.970000px;}
.yb7_c00441{bottom:451.245000px;}
.yb8_c00441{bottom:451.905000px;}
.yb6_c00441{bottom:452.130000px;}
.yb5_c00441{bottom:453.405000px;}
.yb4_c00441{bottom:470.745000px;}
.yb3_c00441{bottom:471.630000px;}
.yb2_c00441{bottom:471.825000px;}
.yb1_c00441{bottom:472.905000px;}
.yad_c00441{bottom:490.245000px;}
.yb0_c00441{bottom:491.130000px;}
.yaf_c00441{bottom:491.970000px;}
.yac_c00441{bottom:492.405000px;}
.yae_c00441{bottom:492.630000px;}
.ya8_c00441{bottom:509.745000px;}
.yab_c00441{bottom:510.630000px;}
.yaa_c00441{bottom:510.825000px;}
.ya7_c00441{bottom:511.905000px;}
.ya9_c00441{bottom:512.130000px;}
.ya3_c00441{bottom:529.245000px;}
.ya5_c00441{bottom:530.130000px;}
.ya6_c00441{bottom:530.325000px;}
.ya2_c00441{bottom:531.405000px;}
.ya4_c00441{bottom:532.470000px;}
.ya1_c00441{bottom:547.905000px;}
.y9d_c00441{bottom:548.745000px;}
.y9f_c00441{bottom:550.245000px;}
.y9e_c00441{bottom:551.130000px;}
.ya0_c00441{bottom:551.325000px;}
.y9c_c00441{bottom:552.405000px;}
.y9a_c00441{bottom:568.245000px;}
.y94_c00441{bottom:569.745000px;}
.y9b_c00441{bottom:570.405000px;}
.y98_c00441{bottom:570.630000px;}
.y99_c00441{bottom:571.470000px;}
.y97_c00441{bottom:571.905000px;}
.y95_c00441{bottom:571.920000px;}
.y96_c00441{bottom:572.970000px;}
.y93_c00441{bottom:591.825000px;}
.y8c_c00441{bottom:592.470000px;}
.y91_c00441{bottom:592.905000px;}
.y8f_c00441{bottom:593.325000px;}
.y90_c00441{bottom:593.550000px;}
.y8b_c00441{bottom:593.970000px;}
.y92_c00441{bottom:595.050000px;}
.y8d_c00441{bottom:595.470000px;}
.y8e_c00441{bottom:596.550000px;}
.y8a_c00441{bottom:606.825000px;}
.y80_c00441{bottom:607.050000px;}
.y87_c00441{bottom:607.905000px;}
.y89_c00441{bottom:608.130000px;}
.y83_c00441{bottom:608.325000px;}
.y86_c00441{bottom:608.550000px;}
.y88_c00441{bottom:608.970000px;}
.y84_c00441{bottom:609.405000px;}
.y82_c00441{bottom:609.630000px;}
.y81_c00441{bottom:610.050000px;}
.y85_c00441{bottom:610.470000px;}
.y7c_c00441{bottom:622.905000px;}
.y7d_c00441{bottom:623.130000px;}
.y7e_c00441{bottom:623.970000px;}
.y7f_c00441{bottom:625.050000px;}
.y79_c00441{bottom:637.050000px;}
.y77_c00441{bottom:637.470000px;}
.y75_c00441{bottom:637.905000px;}
.y78_c00441{bottom:638.550000px;}
.y76_c00441{bottom:638.970000px;}
.y7b_c00441{bottom:639.195000px;}
.y7a_c00441{bottom:640.050000px;}
.y6f_c00441{bottom:650.550000px;}
.y74_c00441{bottom:651.405000px;}
.y70_c00441{bottom:651.825000px;}
.y72_c00441{bottom:653.970000px;}
.y71_c00441{bottom:654.195000px;}
.y73_c00441{bottom:655.050000px;}
.y6c_c00441{bottom:665.970000px;}
.y69_c00441{bottom:667.905000px;}
.y6a_c00441{bottom:668.130000px;}
.y6e_c00441{bottom:668.550000px;}
.y6b_c00441{bottom:668.970000px;}
.y68_c00441{bottom:669.195000px;}
.y6d_c00441{bottom:670.050000px;}
.y66_c00441{bottom:681.405000px;}
.y67_c00441{bottom:681.825000px;}
.y65_c00441{bottom:682.050000px;}
.y63_c00441{bottom:682.905000px;}
.y62_c00441{bottom:683.130000px;}
.y61_c00441{bottom:683.970000px;}
.y64_c00441{bottom:684.195000px;}
.y5f_c00441{bottom:696.405000px;}
.y5b_c00441{bottom:696.825000px;}
.y60_c00441{bottom:697.470000px;}
.y5a_c00441{bottom:698.130000px;}
.y5d_c00441{bottom:698.550000px;}
.y5e_c00441{bottom:698.970000px;}
.y5c_c00441{bottom:699.195000px;}
.y56_c00441{bottom:718.245000px;}
.y59_c00441{bottom:719.130000px;}
.y58_c00441{bottom:720.405000px;}
.y57_c00441{bottom:721.470000px;}
.y53_c00441{bottom:737.325000px;}
.y4f_c00441{bottom:737.745000px;}
.y54_c00441{bottom:738.630000px;}
.y50_c00441{bottom:738.825000px;}
.y55_c00441{bottom:739.470000px;}
.y51_c00441{bottom:739.905000px;}
.y52_c00441{bottom:740.970000px;}
.y4d_c00441{bottom:757.245000px;}
.y4b_c00441{bottom:758.745000px;}
.y4a_c00441{bottom:759.405000px;}
.y4e_c00441{bottom:759.630000px;}
.y4c_c00441{bottom:760.905000px;}
.y49_c00441{bottom:778.245000px;}
.y48_c00441{bottom:779.130000px;}
.y47_c00441{bottom:780.405000px;}
.y46_c00441{bottom:796.245000px;}
.y44_c00441{bottom:797.745000px;}
.y40_c00441{bottom:798.405000px;}
.y45_c00441{bottom:798.630000px;}
.y41_c00441{bottom:798.825000px;}
.y43_c00441{bottom:799.470000px;}
.y42_c00441{bottom:800.970000px;}
.y3f_c00441{bottom:815.745000px;}
.y3b_c00441{bottom:815.970000px;}
.y3d_c00441{bottom:817.245000px;}
.y3c_c00441{bottom:818.130000px;}
.y3e_c00441{bottom:818.325000px;}
.y3a_c00441{bottom:819.405000px;}
.y39_c00441{bottom:834.405000px;}
.y38_c00441{bottom:835.680000px;}
.y36_c00441{bottom:836.745000px;}
.y37_c00441{bottom:838.050000px;}
.y34_c00441{bottom:838.905000px;}
.y35_c00441{bottom:838.920000px;}
.y33_c00441{bottom:858.405000px;}
.y31_c00441{bottom:876.825000px;}
.y32_c00441{bottom:877.905000px;}
.y30_c00441{bottom:878.970000px;}
.y2e_c00441{bottom:894.825000px;}
.y2d_c00441{bottom:895.245000px;}
.y2b_c00441{bottom:896.325000px;}
.y2c_c00441{bottom:897.405000px;}
.y2f_c00441{bottom:898.470000px;}
.y28_c00441{bottom:915.180000px;}
.y27_c00441{bottom:916.245000px;}
.y2a_c00441{bottom:916.905000px;}
.y29_c00441{bottom:917.130000px;}
.y25_c00441{bottom:918.405000px;}
.y26_c00441{bottom:918.420000px;}
.y24_c00441{bottom:935.745000px;}
.y22_c00441{bottom:936.630000px;}
.y21_c00441{bottom:937.905000px;}
.y23_c00441{bottom:937.920000px;}
.y20_c00441{bottom:954.405000px;}
.y1d_c00441{bottom:955.245000px;}
.y1f_c00441{bottom:956.325000px;}
.y1e_c00441{bottom:957.420000px;}
.y1b_c00441{bottom:973.905000px;}
.y1c_c00441{bottom:976.470000px;}
.y1a_c00441{bottom:976.905000px;}
.y19_c00441{bottom:993.825000px;}
.y14_c00441{bottom:994.245000px;}
.y16_c00441{bottom:995.325000px;}
.y18_c00441{bottom:996.405000px;}
.y17_c00441{bottom:997.470000px;}
.y15_c00441{bottom:997.920000px;}
.y13_c00441{bottom:1017.405000px;}
.y11_c00441{bottom:1017.825000px;}
.yf_c00441{bottom:1018.050000px;}
.yd_c00441{bottom:1018.905000px;}
.y12_c00441{bottom:1019.550000px;}
.ye_c00441{bottom:1019.970000px;}
.y10_c00441{bottom:1021.050000px;}
.y9_c00441{bottom:1036.470000px;}
.y8_c00441{bottom:1037.325000px;}
.ya_c00441{bottom:1037.550000px;}
.yc_c00441{bottom:1038.405000px;}
.yb_c00441{bottom:1039.470000px;}
.y7_c00441{bottom:1059.405000px;}
.y3_c00441{bottom:1061.745000px;}
.y6_c00441{bottom:1062.825000px;}
.y4_c00441{bottom:1063.905000px;}
.y5_c00441{bottom:1064.970000px;}
.y2_c00441{bottom:1099.905000px;}
.y1_c00441{bottom:1102.050000px;}
.h6_c00441{height:4.206533px;}
.h9_c00441{height:16.752334px;}
.h7_c00441{height:23.025234px;}
.h1_c00441{height:25.091602px;}
.h4_c00441{height:31.364502px;}
.h2_c00441{height:35.571035px;}
.h5_c00441{height:39.777568px;}
.h3_c00441{height:43.910303px;}
.h8_c00441{height:48.116836px;}
.h0_c00441{height:1335.000000px;}
.w0_c00441{width:880.500000px;}
.x0_c00441{left:0.000000px;}
.xde_c00441{left:149.580000px;}
.x9b_c00441{left:151.920000px;}
.x37_c00441{left:153.000000px;}
.x2_c00441{left:154.500000px;}
.x9c_c00441{left:165.420000px;}
.x10_c00441{left:167.145000px;}
.x1a_c00441{left:169.920000px;}
.x23_c00441{left:181.080000px;}
.x87_c00441{left:183.000000px;}
.x4c_c00441{left:184.080000px;}
.xa1_c00441{left:185.580000px;}
.x68_c00441{left:187.500000px;}
.x6c_c00441{left:189.855000px;}
.xbe_c00441{left:192.420000px;}
.x43_c00441{left:193.500000px;}
.xc9_c00441{left:195.420000px;}
.xaa_c00441{left:196.500000px;}
.x77_c00441{left:198.000000px;}
.xe9_c00441{left:199.500000px;}
.x38_c00441{left:201.420000px;}
.x24_c00441{left:202.500000px;}
.x55_c00441{left:207.000000px;}
.x44_c00441{left:208.080000px;}
.x1b_c00441{left:213.420000px;}
.x88_c00441{left:214.500000px;}
.xc3_c00441{left:216.000000px;}
.xd4_c00441{left:217.920000px;}
.x78_c00441{left:219.000000px;}
.xab_c00441{left:220.080000px;}
.x100_c00441{left:221.580000px;}
.x5e_c00441{left:223.500000px;}
.x56_c00441{left:226.920000px;}
.x91_c00441{left:229.500000px;}
.xd8_c00441{left:231.000000px;}
.x39_c00441{left:232.920000px;}
.x69_c00441{left:234.420000px;}
.x89_c00441{left:237.000000px;}
.xca_c00441{left:238.500000px;}
.xc4_c00441{left:241.500000px;}
.x11_c00441{left:243.000000px;}
.xea_c00441{left:247.500000px;}
.x92_c00441{left:249.000000px;}
.x28_c00441{left:250.500000px;}
.xdf_c00441{left:253.500000px;}
.x4d_c00441{left:255.000000px;}
.xb7_c00441{left:256.500000px;}
.x45_c00441{left:258.000000px;}
.x25_c00441{left:259.500000px;}
.x2e_c00441{left:262.500000px;}
.xad_c00441{left:264.000000px;}
.x57_c00441{left:265.080000px;}
.xbf_c00441{left:270.000000px;}
.x104_c00441{left:271.500000px;}
.x1c_c00441{left:273.000000px;}
.xa2_c00441{left:274.080000px;}
.x3_c00441{left:277.080000px;}
.x4e_c00441{left:278.580000px;}
.x12_c00441{left:280.500000px;}
.x8_c00441{left:282.420000px;}
.x105_c00441{left:283.500000px;}
.x5f_c00441{left:285.000000px;}
.xd9_c00441{left:286.080000px;}
.xcb_c00441{left:288.420000px;}
.xeb_c00441{left:291.000000px;}
.x1d_c00441{left:294.000000px;}
.x6a_c00441{left:297.420000px;}
.x3a_c00441{left:299.580000px;}
.x29_c00441{left:301.500000px;}
.x81_c00441{left:305.580000px;}
.x79_c00441{left:309.420000px;}
.xb3_c00441{left:310.500000px;}
.x60_c00441{left:312.000000px;}
.xac_c00441{left:313.500000px;}
.x2f_c00441{left:315.000000px;}
.xfc_c00441{left:316.500000px;}
.xae_c00441{left:317.580000px;}
.x72_c00441{left:321.000000px;}
.x2a_c00441{left:323.580000px;}
.x6b_c00441{left:325.500000px;}
.xc5_c00441{left:327.000000px;}
.x3b_c00441{left:334.920000px;}
.x58_c00441{left:337.920000px;}
.x9_c00441{left:339.000000px;}
.xec_c00441{left:342.420000px;}
.x8a_c00441{left:344.580000px;}
.x26_c00441{left:346.275000px;}
.x2b_c00441{left:349.080000px;}
.x4f_c00441{left:352.500000px;}
.xcc_c00441{left:354.000000px;}
.x8b_c00441{left:356.580000px;}
.xa3_c00441{left:358.920000px;}
.xba_c00441{left:360.000000px;}
.xe3_c00441{left:361.920000px;}
.xb4_c00441{left:364.080000px;}
.xa_c00441{left:365.580000px;}
.x30_c00441{left:367.080000px;}
.x93_c00441{left:370.080000px;}
.x50_c00441{left:372.000000px;}
.x13_c00441{left:373.500000px;}
.x101_c00441{left:375.420000px;}
.x4_c00441{left:376.500000px;}
.x9d_c00441{left:380.580000px;}
.x7a_c00441{left:382.080000px;}
.x61_c00441{left:384.000000px;}
.x27_c00441{left:387.000000px;}
.xf8_c00441{left:388.500000px;}
.x6d_c00441{left:390.000000px;}
.x8c_c00441{left:391.500000px;}
.xed_c00441{left:396.000000px;}
.x1e_c00441{left:398.580000px;}
.xb5_c00441{left:400.500000px;}
.xa4_c00441{left:401.580000px;}
.x82_c00441{left:403.500000px;}
.xd5_c00441{left:405.420000px;}
.xaf_c00441{left:408.420000px;}
.x1_c00441{left:409.500000px;}
.x94_c00441{left:411.420000px;}
.x3c_c00441{left:412.500000px;}
.xc6_c00441{left:415.920000px;}
.xe0_c00441{left:417.420000px;}
.x14_c00441{left:418.500000px;}
.x62_c00441{left:421.500000px;}
.x106_c00441{left:424.500000px;}
.xb0_c00441{left:425.580000px;}
.x59_c00441{left:427.080000px;}
.x95_c00441{left:428.580000px;}
.xe4_c00441{left:430.500000px;}
.xee_c00441{left:432.000000px;}
.x2c_c00441{left:433.500000px;}
.x8d_c00441{left:436.500000px;}
.xb_c00441{left:438.000000px;}
.xcd_c00441{left:439.500000px;}
.xd6_c00441{left:444.420000px;}
.xa5_c00441{left:445.920000px;}
.x3d_c00441{left:449.580000px;}
.x31_c00441{left:453.000000px;}
.x63_c00441{left:456.000000px;}
.x83_c00441{left:457.920000px;}
.xc_c00441{left:459.855000px;}
.xc0_c00441{left:461.580000px;}
.x5_c00441{left:463.500000px;}
.x1f_c00441{left:465.420000px;}
.xbb_c00441{left:466.500000px;}
.x7b_c00441{left:467.580000px;}
.x3e_c00441{left:470.580000px;}
.xe5_c00441{left:472.500000px;}
.x46_c00441{left:475.080000px;}
.x8e_c00441{left:478.500000px;}
.x15_c00441{left:481.500000px;}
.xd_c00441{left:483.000000px;}
.xb8_c00441{left:484.080000px;}
.x96_c00441{left:486.420000px;}
.xb1_c00441{left:487.920000px;}
.xa6_c00441{left:490.500000px;}
.xfd_c00441{left:491.580000px;}
.xd2_c00441{left:493.500000px;}
.x5a_c00441{left:499.080000px;}
.x2d_c00441{left:501.000000px;}
.x6e_c00441{left:502.080000px;}
.x97_c00441{left:504.000000px;}
.x47_c00441{left:505.500000px;}
.xef_c00441{left:507.420000px;}
.xf9_c00441{left:510.000000px;}
.x6_c00441{left:511.920000px;}
.x16_c00441{left:513.000000px;}
.x9e_c00441{left:514.080000px;}
.x20_c00441{left:516.000000px;}
.xc7_c00441{left:517.500000px;}
.xbc_c00441{left:519.000000px;}
.xe_c00441{left:520.920000px;}
.x6f_c00441{left:522.420000px;}
.x3f_c00441{left:525.000000px;}
.x7c_c00441{left:526.080000px;}
.xf2_c00441{left:528.000000px;}
.x32_c00441{left:529.080000px;}
.x48_c00441{left:531.000000px;}
.x64_c00441{left:532.500000px;}
.xfe_c00441{left:534.000000px;}
.x5b_c00441{left:537.000000px;}
.x73_c00441{left:540.000000px;}
.xf0_c00441{left:543.000000px;}
.xda_c00441{left:546.000000px;}
.x70_c00441{left:547.080000px;}
.xc1_c00441{left:548.580000px;}
.xfa_c00441{left:550.500000px;}
.x17_c00441{left:551.580000px;}
.xa7_c00441{left:553.500000px;}
.x102_c00441{left:555.000000px;}
.xb9_c00441{left:556.080000px;}
.x98_c00441{left:557.580000px;}
.x40_c00441{left:559.500000px;}
.x7d_c00441{left:561.000000px;}
.xbd_c00441{left:564.420000px;}
.xb6_c00441{left:565.500000px;}
.xf_c00441{left:566.580000px;}
.x51_c00441{left:570.000000px;}
.xd7_c00441{left:571.500000px;}
.x18_c00441{left:573.420000px;}
.xdb_c00441{left:574.500000px;}
.x7_c00441{left:576.420000px;}
.xe6_c00441{left:577.920000px;}
.xfb_c00441{left:579.420000px;}
.x65_c00441{left:580.500000px;}
.x33_c00441{left:581.775000px;}
.x7e_c00441{left:583.500000px;}
.xf4_c00441{left:586.500000px;}
.x19_c00441{left:589.920000px;}
.x8f_c00441{left:591.000000px;}
.x49_c00441{left:592.080000px;}
.xce_c00441{left:594.420000px;}
.x9f_c00441{left:595.920000px;}
.x66_c00441{left:598.500000px;}
.x7f_c00441{left:599.580000px;}
.xf5_c00441{left:601.080000px;}
.xa8_c00441{left:603.420000px;}
.xe7_c00441{left:604.920000px;}
.x99_c00441{left:610.500000px;}
.xe1_c00441{left:612.420000px;}
.x52_c00441{left:613.500000px;}
.xb2_c00441{left:614.580000px;}
.xd3_c00441{left:618.000000px;}
.xff_c00441{left:619.500000px;}
.x21_c00441{left:620.580000px;}
.x34_c00441{left:624.000000px;}
.x5c_c00441{left:627.000000px;}
.x74_c00441{left:628.500000px;}
.x84_c00441{left:631.080000px;}
.xcf_c00441{left:634.500000px;}
.x41_c00441{left:636.645000px;}
.xdc_c00441{left:639.000000px;}
.x53_c00441{left:640.920000px;}
.x4a_c00441{left:644.580000px;}
.x90_c00441{left:646.500000px;}
.x5d_c00441{left:648.000000px;}
.x85_c00441{left:649.500000px;}
.xe8_c00441{left:650.580000px;}
.xf6_c00441{left:652.080000px;}
.xe2_c00441{left:655.500000px;}
.x80_c00441{left:658.080000px;}
.x4b_c00441{left:661.500000px;}
.x42_c00441{left:663.000000px;}
.x75_c00441{left:666.000000px;}
.x107_c00441{left:667.920000px;}
.xc2_c00441{left:669.000000px;}
.xd0_c00441{left:670.500000px;}
.x35_c00441{left:672.000000px;}
.x54_c00441{left:673.080000px;}
.x71_c00441{left:675.000000px;}
.x22_c00441{left:678.420000px;}
.x9a_c00441{left:680.580000px;}
.xf1_c00441{left:684.000000px;}
.xa0_c00441{left:685.500000px;}
.xf7_c00441{left:687.000000px;}
.x103_c00441{left:688.500000px;}
.xd1_c00441{left:690.420000px;}
.x36_c00441{left:691.500000px;}
.xdd_c00441{left:696.000000px;}
.xf3_c00441{left:697.500000px;}
.xa9_c00441{left:698.580000px;}
.x67_c00441{left:700.500000px;}
.x108_c00441{left:703.500000px;}
.x86_c00441{left:706.500000px;}
.xc8_c00441{left:708.420000px;}
.x76_c00441{left:716.580000px;}
@media print{
.v1_c00441{vertical-align:-10.666667pt;}
.v2_c00441{vertical-align:-5.333333pt;}
.v0_c00441{vertical-align:0.000000pt;}
.ls0_c00441{letter-spacing:0.000000pt;}
.ws0_c00441{word-spacing:-5.218667pt;}
.ws1_c00441{word-spacing:-2.552000pt;}
.ws2_c00441{word-spacing:0.000000pt;}
.fs5_c00441{font-size:3.040000pt;}
.fs8_c00441{font-size:12.106667pt;}
.fs6_c00441{font-size:16.640000pt;}
.fs0_c00441{font-size:18.133333pt;}
.fs3_c00441{font-size:22.666667pt;}
.fs1_c00441{font-size:25.706667pt;}
.fs4_c00441{font-size:28.746667pt;}
.fs2_c00441{font-size:31.733333pt;}
.fs7_c00441{font-size:34.773333pt;}
.y0_c00441{bottom:0.000000pt;}
.yed_c00441{bottom:223.773333pt;}
.yeb_c00441{bottom:224.160000pt;}
.yea_c00441{bottom:225.106667pt;}
.yec_c00441{bottom:225.893333pt;}
.ye9_c00441{bottom:227.026667pt;}
.ye5_c00441{bottom:242.440000pt;}
.ye7_c00441{bottom:243.226667pt;}
.ye8_c00441{bottom:243.400000pt;}
.ye4_c00441{bottom:244.360000pt;}
.ye6_c00441{bottom:245.306667pt;}
.ye2_c00441{bottom:259.400000pt;}
.ye1_c00441{bottom:259.773333pt;}
.ye0_c00441{bottom:261.306667pt;}
.ydf_c00441{bottom:261.693333pt;}
.ye3_c00441{bottom:262.640000pt;}
.ydc_c00441{bottom:276.360000pt;}
.yd9_c00441{bottom:277.106667pt;}
.yde_c00441{bottom:277.493333pt;}
.yda_c00441{bottom:279.026667pt;}
.ydd_c00441{bottom:279.226667pt;}
.ydb_c00441{bottom:280.360000pt;}
.yd8_c00441{bottom:293.693333pt;}
.yd7_c00441{bottom:295.773333pt;}
.yd5_c00441{bottom:296.360000pt;}
.yd6_c00441{bottom:297.693333pt;}
.yd2_c00441{bottom:313.106667pt;}
.yd0_c00441{bottom:313.893333pt;}
.yd1_c00441{bottom:314.066667pt;}
.yd4_c00441{bottom:314.640000pt;}
.ycf_c00441{bottom:315.026667pt;}
.yd3_c00441{bottom:315.973333pt;}
.ycd_c00441{bottom:329.306667pt;}
.ycc_c00441{bottom:330.066667pt;}
.yce_c00441{bottom:330.440000pt;}
.yca_c00441{bottom:331.226667pt;}
.ycb_c00441{bottom:331.400000pt;}
.yc9_c00441{bottom:332.360000pt;}
.yc7_c00441{bottom:347.773333pt;}
.yc8_c00441{bottom:348.560000pt;}
.yc6_c00441{bottom:348.733333pt;}
.yc5_c00441{bottom:349.693333pt;}
.yc4_c00441{bottom:365.106667pt;}
.yc2_c00441{bottom:366.440000pt;}
.yc0_c00441{bottom:367.026667pt;}
.yc1_c00441{bottom:367.226667pt;}
.yc3_c00441{bottom:367.973333pt;}
.ybf_c00441{bottom:382.440000pt;}
.ybe_c00441{bottom:383.400000pt;}
.ybd_c00441{bottom:384.360000pt;}
.ybc_c00441{bottom:384.560000pt;}
.yb9_c00441{bottom:385.306667pt;}
.yba_c00441{bottom:385.693333pt;}
.ybb_c00441{bottom:386.640000pt;}
.yb7_c00441{bottom:401.106667pt;}
.yb8_c00441{bottom:401.693333pt;}
.yb6_c00441{bottom:401.893333pt;}
.yb5_c00441{bottom:403.026667pt;}
.yb4_c00441{bottom:418.440000pt;}
.yb3_c00441{bottom:419.226667pt;}
.yb2_c00441{bottom:419.400000pt;}
.yb1_c00441{bottom:420.360000pt;}
.yad_c00441{bottom:435.773333pt;}
.yb0_c00441{bottom:436.560000pt;}
.yaf_c00441{bottom:437.306667pt;}
.yac_c00441{bottom:437.693333pt;}
.yae_c00441{bottom:437.893333pt;}
.ya8_c00441{bottom:453.106667pt;}
.yab_c00441{bottom:453.893333pt;}
.yaa_c00441{bottom:454.066667pt;}
.ya7_c00441{bottom:455.026667pt;}
.ya9_c00441{bottom:455.226667pt;}
.ya3_c00441{bottom:470.440000pt;}
.ya5_c00441{bottom:471.226667pt;}
.ya6_c00441{bottom:471.400000pt;}
.ya2_c00441{bottom:472.360000pt;}
.ya4_c00441{bottom:473.306667pt;}
.ya1_c00441{bottom:487.026667pt;}
.y9d_c00441{bottom:487.773333pt;}
.y9f_c00441{bottom:489.106667pt;}
.y9e_c00441{bottom:489.893333pt;}
.ya0_c00441{bottom:490.066667pt;}
.y9c_c00441{bottom:491.026667pt;}
.y9a_c00441{bottom:505.106667pt;}
.y94_c00441{bottom:506.440000pt;}
.y9b_c00441{bottom:507.026667pt;}
.y98_c00441{bottom:507.226667pt;}
.y99_c00441{bottom:507.973333pt;}
.y97_c00441{bottom:508.360000pt;}
.y95_c00441{bottom:508.373333pt;}
.y96_c00441{bottom:509.306667pt;}
.y93_c00441{bottom:526.066667pt;}
.y8c_c00441{bottom:526.640000pt;}
.y91_c00441{bottom:527.026667pt;}
.y8f_c00441{bottom:527.400000pt;}
.y90_c00441{bottom:527.600000pt;}
.y8b_c00441{bottom:527.973333pt;}
.y92_c00441{bottom:528.933333pt;}
.y8d_c00441{bottom:529.306667pt;}
.y8e_c00441{bottom:530.266667pt;}
.y8a_c00441{bottom:539.400000pt;}
.y80_c00441{bottom:539.600000pt;}
.y87_c00441{bottom:540.360000pt;}
.y89_c00441{bottom:540.560000pt;}
.y83_c00441{bottom:540.733333pt;}
.y86_c00441{bottom:540.933333pt;}
.y88_c00441{bottom:541.306667pt;}
.y84_c00441{bottom:541.693333pt;}
.y82_c00441{bottom:541.893333pt;}
.y81_c00441{bottom:542.266667pt;}
.y85_c00441{bottom:542.640000pt;}
.y7c_c00441{bottom:553.693333pt;}
.y7d_c00441{bottom:553.893333pt;}
.y7e_c00441{bottom:554.640000pt;}
.y7f_c00441{bottom:555.600000pt;}
.y79_c00441{bottom:566.266667pt;}
.y77_c00441{bottom:566.640000pt;}
.y75_c00441{bottom:567.026667pt;}
.y78_c00441{bottom:567.600000pt;}
.y76_c00441{bottom:567.973333pt;}
.y7b_c00441{bottom:568.173333pt;}
.y7a_c00441{bottom:568.933333pt;}
.y6f_c00441{bottom:578.266667pt;}
.y74_c00441{bottom:579.026667pt;}
.y70_c00441{bottom:579.400000pt;}
.y72_c00441{bottom:581.306667pt;}
.y71_c00441{bottom:581.506667pt;}
.y73_c00441{bottom:582.266667pt;}
.y6c_c00441{bottom:591.973333pt;}
.y69_c00441{bottom:593.693333pt;}
.y6a_c00441{bottom:593.893333pt;}
.y6e_c00441{bottom:594.266667pt;}
.y6b_c00441{bottom:594.640000pt;}
.y68_c00441{bottom:594.840000pt;}
.y6d_c00441{bottom:595.600000pt;}
.y66_c00441{bottom:605.693333pt;}
.y67_c00441{bottom:606.066667pt;}
.y65_c00441{bottom:606.266667pt;}
.y63_c00441{bottom:607.026667pt;}
.y62_c00441{bottom:607.226667pt;}
.y61_c00441{bottom:607.973333pt;}
.y64_c00441{bottom:608.173333pt;}
.y5f_c00441{bottom:619.026667pt;}
.y5b_c00441{bottom:619.400000pt;}
.y60_c00441{bottom:619.973333pt;}
.y5a_c00441{bottom:620.560000pt;}
.y5d_c00441{bottom:620.933333pt;}
.y5e_c00441{bottom:621.306667pt;}
.y5c_c00441{bottom:621.506667pt;}
.y56_c00441{bottom:638.440000pt;}
.y59_c00441{bottom:639.226667pt;}
.y58_c00441{bottom:640.360000pt;}
.y57_c00441{bottom:641.306667pt;}
.y53_c00441{bottom:655.400000pt;}
.y4f_c00441{bottom:655.773333pt;}
.y54_c00441{bottom:656.560000pt;}
.y50_c00441{bottom:656.733333pt;}
.y55_c00441{bottom:657.306667pt;}
.y51_c00441{bottom:657.693333pt;}
.y52_c00441{bottom:658.640000pt;}
.y4d_c00441{bottom:673.106667pt;}
.y4b_c00441{bottom:674.440000pt;}
.y4a_c00441{bottom:675.026667pt;}
.y4e_c00441{bottom:675.226667pt;}
.y4c_c00441{bottom:676.360000pt;}
.y49_c00441{bottom:691.773333pt;}
.y48_c00441{bottom:692.560000pt;}
.y47_c00441{bottom:693.693333pt;}
.y46_c00441{bottom:707.773333pt;}
.y44_c00441{bottom:709.106667pt;}
.y40_c00441{bottom:709.693333pt;}
.y45_c00441{bottom:709.893333pt;}
.y41_c00441{bottom:710.066667pt;}
.y43_c00441{bottom:710.640000pt;}
.y42_c00441{bottom:711.973333pt;}
.y3f_c00441{bottom:725.106667pt;}
.y3b_c00441{bottom:725.306667pt;}
.y3d_c00441{bottom:726.440000pt;}
.y3c_c00441{bottom:727.226667pt;}
.y3e_c00441{bottom:727.400000pt;}
.y3a_c00441{bottom:728.360000pt;}
.y39_c00441{bottom:741.693333pt;}
.y38_c00441{bottom:742.826667pt;}
.y36_c00441{bottom:743.773333pt;}
.y37_c00441{bottom:744.933333pt;}
.y34_c00441{bottom:745.693333pt;}
.y35_c00441{bottom:745.706667pt;}
.y33_c00441{bottom:763.026667pt;}
.y31_c00441{bottom:779.400000pt;}
.y32_c00441{bottom:780.360000pt;}
.y30_c00441{bottom:781.306667pt;}
.y2e_c00441{bottom:795.400000pt;}
.y2d_c00441{bottom:795.773333pt;}
.y2b_c00441{bottom:796.733333pt;}
.y2c_c00441{bottom:797.693333pt;}
.y2f_c00441{bottom:798.640000pt;}
.y28_c00441{bottom:813.493333pt;}
.y27_c00441{bottom:814.440000pt;}
.y2a_c00441{bottom:815.026667pt;}
.y29_c00441{bottom:815.226667pt;}
.y25_c00441{bottom:816.360000pt;}
.y26_c00441{bottom:816.373333pt;}
.y24_c00441{bottom:831.773333pt;}
.y22_c00441{bottom:832.560000pt;}
.y21_c00441{bottom:833.693333pt;}
.y23_c00441{bottom:833.706667pt;}
.y20_c00441{bottom:848.360000pt;}
.y1d_c00441{bottom:849.106667pt;}
.y1f_c00441{bottom:850.066667pt;}
.y1e_c00441{bottom:851.040000pt;}
.y1b_c00441{bottom:865.693333pt;}
.y1c_c00441{bottom:867.973333pt;}
.y1a_c00441{bottom:868.360000pt;}
.y19_c00441{bottom:883.400000pt;}
.y14_c00441{bottom:883.773333pt;}
.y16_c00441{bottom:884.733333pt;}
.y18_c00441{bottom:885.693333pt;}
.y17_c00441{bottom:886.640000pt;}
.y15_c00441{bottom:887.040000pt;}
.y13_c00441{bottom:904.360000pt;}
.y11_c00441{bottom:904.733333pt;}
.yf_c00441{bottom:904.933333pt;}
.yd_c00441{bottom:905.693333pt;}
.y12_c00441{bottom:906.266667pt;}
.ye_c00441{bottom:906.640000pt;}
.y10_c00441{bottom:907.600000pt;}
.y9_c00441{bottom:921.306667pt;}
.y8_c00441{bottom:922.066667pt;}
.ya_c00441{bottom:922.266667pt;}
.yc_c00441{bottom:923.026667pt;}
.yb_c00441{bottom:923.973333pt;}
.y7_c00441{bottom:941.693333pt;}
.y3_c00441{bottom:943.773333pt;}
.y6_c00441{bottom:944.733333pt;}
.y4_c00441{bottom:945.693333pt;}
.y5_c00441{bottom:946.640000pt;}
.y2_c00441{bottom:977.693333pt;}
.y1_c00441{bottom:979.600000pt;}
.h6_c00441{height:3.739141pt;}
.h9_c00441{height:14.890964pt;}
.h7_c00441{height:20.466875pt;}
.h1_c00441{height:22.303646pt;}
.h4_c00441{height:27.879557pt;}
.h2_c00441{height:31.618698pt;}
.h5_c00441{height:35.357839pt;}
.h3_c00441{height:39.031380pt;}
.h8_c00441{height:42.770521pt;}
.h0_c00441{height:1186.666667pt;}
.w0_c00441{width:782.666667pt;}
.x0_c00441{left:0.000000pt;}
.xde_c00441{left:132.960000pt;}
.x9b_c00441{left:135.040000pt;}
.x37_c00441{left:136.000000pt;}
.x2_c00441{left:137.333333pt;}
.x9c_c00441{left:147.040000pt;}
.x10_c00441{left:148.573333pt;}
.x1a_c00441{left:151.040000pt;}
.x23_c00441{left:160.960000pt;}
.x87_c00441{left:162.666667pt;}
.x4c_c00441{left:163.626667pt;}
.xa1_c00441{left:164.960000pt;}
.x68_c00441{left:166.666667pt;}
.x6c_c00441{left:168.760000pt;}
.xbe_c00441{left:171.040000pt;}
.x43_c00441{left:172.000000pt;}
.xc9_c00441{left:173.706667pt;}
.xaa_c00441{left:174.666667pt;}
.x77_c00441{left:176.000000pt;}
.xe9_c00441{left:177.333333pt;}
.x38_c00441{left:179.040000pt;}
.x24_c00441{left:180.000000pt;}
.x55_c00441{left:184.000000pt;}
.x44_c00441{left:184.960000pt;}
.x1b_c00441{left:189.706667pt;}
.x88_c00441{left:190.666667pt;}
.xc3_c00441{left:192.000000pt;}
.xd4_c00441{left:193.706667pt;}
.x78_c00441{left:194.666667pt;}
.xab_c00441{left:195.626667pt;}
.x100_c00441{left:196.960000pt;}
.x5e_c00441{left:198.666667pt;}
.x56_c00441{left:201.706667pt;}
.x91_c00441{left:204.000000pt;}
.xd8_c00441{left:205.333333pt;}
.x39_c00441{left:207.040000pt;}
.x69_c00441{left:208.373333pt;}
.x89_c00441{left:210.666667pt;}
.xca_c00441{left:212.000000pt;}
.xc4_c00441{left:214.666667pt;}
.x11_c00441{left:216.000000pt;}
.xea_c00441{left:220.000000pt;}
.x92_c00441{left:221.333333pt;}
.x28_c00441{left:222.666667pt;}
.xdf_c00441{left:225.333333pt;}
.x4d_c00441{left:226.666667pt;}
.xb7_c00441{left:228.000000pt;}
.x45_c00441{left:229.333333pt;}
.x25_c00441{left:230.666667pt;}
.x2e_c00441{left:233.333333pt;}
.xad_c00441{left:234.666667pt;}
.x57_c00441{left:235.626667pt;}
.xbf_c00441{left:240.000000pt;}
.x104_c00441{left:241.333333pt;}
.x1c_c00441{left:242.666667pt;}
.xa2_c00441{left:243.626667pt;}
.x3_c00441{left:246.293333pt;}
.x4e_c00441{left:247.626667pt;}
.x12_c00441{left:249.333333pt;}
.x8_c00441{left:251.040000pt;}
.x105_c00441{left:252.000000pt;}
.x5f_c00441{left:253.333333pt;}
.xd9_c00441{left:254.293333pt;}
.xcb_c00441{left:256.373333pt;}
.xeb_c00441{left:258.666667pt;}
.x1d_c00441{left:261.333333pt;}
.x6a_c00441{left:264.373333pt;}
.x3a_c00441{left:266.293333pt;}
.x29_c00441{left:268.000000pt;}
.x81_c00441{left:271.626667pt;}
.x79_c00441{left:275.040000pt;}
.xb3_c00441{left:276.000000pt;}
.x60_c00441{left:277.333333pt;}
.xac_c00441{left:278.666667pt;}
.x2f_c00441{left:280.000000pt;}
.xfc_c00441{left:281.333333pt;}
.xae_c00441{left:282.293333pt;}
.x72_c00441{left:285.333333pt;}
.x2a_c00441{left:287.626667pt;}
.x6b_c00441{left:289.333333pt;}
.xc5_c00441{left:290.666667pt;}
.x3b_c00441{left:297.706667pt;}
.x58_c00441{left:300.373333pt;}
.x9_c00441{left:301.333333pt;}
.xec_c00441{left:304.373333pt;}
.x8a_c00441{left:306.293333pt;}
.x26_c00441{left:307.800000pt;}
.x2b_c00441{left:310.293333pt;}
.x4f_c00441{left:313.333333pt;}
.xcc_c00441{left:314.666667pt;}
.x8b_c00441{left:316.960000pt;}
.xa3_c00441{left:319.040000pt;}
.xba_c00441{left:320.000000pt;}
.xe3_c00441{left:321.706667pt;}
.xb4_c00441{left:323.626667pt;}
.xa_c00441{left:324.960000pt;}
.x30_c00441{left:326.293333pt;}
.x93_c00441{left:328.960000pt;}
.x50_c00441{left:330.666667pt;}
.x13_c00441{left:332.000000pt;}
.x101_c00441{left:333.706667pt;}
.x4_c00441{left:334.666667pt;}
.x9d_c00441{left:338.293333pt;}
.x7a_c00441{left:339.626667pt;}
.x61_c00441{left:341.333333pt;}
.x27_c00441{left:344.000000pt;}
.xf8_c00441{left:345.333333pt;}
.x6d_c00441{left:346.666667pt;}
.x8c_c00441{left:348.000000pt;}
.xed_c00441{left:352.000000pt;}
.x1e_c00441{left:354.293333pt;}
.xb5_c00441{left:356.000000pt;}
.xa4_c00441{left:356.960000pt;}
.x82_c00441{left:358.666667pt;}
.xd5_c00441{left:360.373333pt;}
.xaf_c00441{left:363.040000pt;}
.x1_c00441{left:364.000000pt;}
.x94_c00441{left:365.706667pt;}
.x3c_c00441{left:366.666667pt;}
.xc6_c00441{left:369.706667pt;}
.xe0_c00441{left:371.040000pt;}
.x14_c00441{left:372.000000pt;}
.x62_c00441{left:374.666667pt;}
.x106_c00441{left:377.333333pt;}
.xb0_c00441{left:378.293333pt;}
.x59_c00441{left:379.626667pt;}
.x95_c00441{left:380.960000pt;}
.xe4_c00441{left:382.666667pt;}
.xee_c00441{left:384.000000pt;}
.x2c_c00441{left:385.333333pt;}
.x8d_c00441{left:388.000000pt;}
.xb_c00441{left:389.333333pt;}
.xcd_c00441{left:390.666667pt;}
.xd6_c00441{left:395.040000pt;}
.xa5_c00441{left:396.373333pt;}
.x3d_c00441{left:399.626667pt;}
.x31_c00441{left:402.666667pt;}
.x63_c00441{left:405.333333pt;}
.x83_c00441{left:407.040000pt;}
.xc_c00441{left:408.760000pt;}
.xc0_c00441{left:410.293333pt;}
.x5_c00441{left:412.000000pt;}
.x1f_c00441{left:413.706667pt;}
.xbb_c00441{left:414.666667pt;}
.x7b_c00441{left:415.626667pt;}
.x3e_c00441{left:418.293333pt;}
.xe5_c00441{left:420.000000pt;}
.x46_c00441{left:422.293333pt;}
.x8e_c00441{left:425.333333pt;}
.x15_c00441{left:428.000000pt;}
.xd_c00441{left:429.333333pt;}
.xb8_c00441{left:430.293333pt;}
.x96_c00441{left:432.373333pt;}
.xb1_c00441{left:433.706667pt;}
.xa6_c00441{left:436.000000pt;}
.xfd_c00441{left:436.960000pt;}
.xd2_c00441{left:438.666667pt;}
.x5a_c00441{left:443.626667pt;}
.x2d_c00441{left:445.333333pt;}
.x6e_c00441{left:446.293333pt;}
.x97_c00441{left:448.000000pt;}
.x47_c00441{left:449.333333pt;}
.xef_c00441{left:451.040000pt;}
.xf9_c00441{left:453.333333pt;}
.x6_c00441{left:455.040000pt;}
.x16_c00441{left:456.000000pt;}
.x9e_c00441{left:456.960000pt;}
.x20_c00441{left:458.666667pt;}
.xc7_c00441{left:460.000000pt;}
.xbc_c00441{left:461.333333pt;}
.xe_c00441{left:463.040000pt;}
.x6f_c00441{left:464.373333pt;}
.x3f_c00441{left:466.666667pt;}
.x7c_c00441{left:467.626667pt;}
.xf2_c00441{left:469.333333pt;}
.x32_c00441{left:470.293333pt;}
.x48_c00441{left:472.000000pt;}
.x64_c00441{left:473.333333pt;}
.xfe_c00441{left:474.666667pt;}
.x5b_c00441{left:477.333333pt;}
.x73_c00441{left:480.000000pt;}
.xf0_c00441{left:482.666667pt;}
.xda_c00441{left:485.333333pt;}
.x70_c00441{left:486.293333pt;}
.xc1_c00441{left:487.626667pt;}
.xfa_c00441{left:489.333333pt;}
.x17_c00441{left:490.293333pt;}
.xa7_c00441{left:492.000000pt;}
.x102_c00441{left:493.333333pt;}
.xb9_c00441{left:494.293333pt;}
.x98_c00441{left:495.626667pt;}
.x40_c00441{left:497.333333pt;}
.x7d_c00441{left:498.666667pt;}
.xbd_c00441{left:501.706667pt;}
.xb6_c00441{left:502.666667pt;}
.xf_c00441{left:503.626667pt;}
.x51_c00441{left:506.666667pt;}
.xd7_c00441{left:508.000000pt;}
.x18_c00441{left:509.706667pt;}
.xdb_c00441{left:510.666667pt;}
.x7_c00441{left:512.373333pt;}
.xe6_c00441{left:513.706667pt;}
.xfb_c00441{left:515.040000pt;}
.x65_c00441{left:516.000000pt;}
.x33_c00441{left:517.133333pt;}
.x7e_c00441{left:518.666667pt;}
.xf4_c00441{left:521.333333pt;}
.x19_c00441{left:524.373333pt;}
.x8f_c00441{left:525.333333pt;}
.x49_c00441{left:526.293333pt;}
.xce_c00441{left:528.373333pt;}
.x9f_c00441{left:529.706667pt;}
.x66_c00441{left:532.000000pt;}
.x7f_c00441{left:532.960000pt;}
.xf5_c00441{left:534.293333pt;}
.xa8_c00441{left:536.373333pt;}
.xe7_c00441{left:537.706667pt;}
.x99_c00441{left:542.666667pt;}
.xe1_c00441{left:544.373333pt;}
.x52_c00441{left:545.333333pt;}
.xb2_c00441{left:546.293333pt;}
.xd3_c00441{left:549.333333pt;}
.xff_c00441{left:550.666667pt;}
.x21_c00441{left:551.626667pt;}
.x34_c00441{left:554.666667pt;}
.x5c_c00441{left:557.333333pt;}
.x74_c00441{left:558.666667pt;}
.x84_c00441{left:560.960000pt;}
.xcf_c00441{left:564.000000pt;}
.x41_c00441{left:565.906667pt;}
.xdc_c00441{left:568.000000pt;}
.x53_c00441{left:569.706667pt;}
.x4a_c00441{left:572.960000pt;}
.x90_c00441{left:574.666667pt;}
.x5d_c00441{left:576.000000pt;}
.x85_c00441{left:577.333333pt;}
.xe8_c00441{left:578.293333pt;}
.xf6_c00441{left:579.626667pt;}
.xe2_c00441{left:582.666667pt;}
.x80_c00441{left:584.960000pt;}
.x4b_c00441{left:588.000000pt;}
.x42_c00441{left:589.333333pt;}
.x75_c00441{left:592.000000pt;}
.x107_c00441{left:593.706667pt;}
.xc2_c00441{left:594.666667pt;}
.xd0_c00441{left:596.000000pt;}
.x35_c00441{left:597.333333pt;}
.x54_c00441{left:598.293333pt;}
.x71_c00441{left:600.000000pt;}
.x22_c00441{left:603.040000pt;}
.x9a_c00441{left:604.960000pt;}
.xf1_c00441{left:608.000000pt;}
.xa0_c00441{left:609.333333pt;}
.xf7_c00441{left:610.666667pt;}
.x103_c00441{left:612.000000pt;}
.xd1_c00441{left:613.706667pt;}
.x36_c00441{left:614.666667pt;}
.xdd_c00441{left:618.666667pt;}
.xf3_c00441{left:620.000000pt;}
.xa9_c00441{left:620.960000pt;}
.x67_c00441{left:622.666667pt;}
.x108_c00441{left:625.333333pt;}
.x86_c00441{left:628.000000pt;}
.xc8_c00441{left:629.706667pt;}
.x76_c00441{left:636.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_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_d027d357573368e982f8977a.woff2')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:1.688965;font-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_c00442{transform:matrix(0.005612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.005612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.005612,0.000000,0.000000,0.250000,0,0);}
.m42_c00442{transform:matrix(0.008933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008933,0.000000,0.000000,0.250000,0,0);}
.m35_c00442{transform:matrix(0.009611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009611,0.000000,0.000000,0.250000,0,0);}
.m41_c00442{transform:matrix(0.009760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009760,0.000000,0.000000,0.250000,0,0);}
.mc_c00442{transform:matrix(0.012920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012920,0.000000,0.000000,0.250000,0,0);}
.mb_c00442{transform:matrix(0.013404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013404,0.000000,0.000000,0.250000,0,0);}
.m10_c00442{transform:matrix(0.014953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014953,0.000000,0.000000,0.250000,0,0);}
.m48_c00442{transform:matrix(0.015943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015943,0.000000,0.000000,0.250000,0,0);}
.m14_c00442{transform:matrix(0.016395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016395,0.000000,0.000000,0.250000,0,0);}
.ma_c00442{transform:matrix(0.017022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017022,0.000000,0.000000,0.250000,0,0);}
.m5a_c00442{transform:matrix(0.017114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017114,0.000000,0.000000,0.250000,0,0);}
.m4d_c00442{transform:matrix(0.017196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017196,0.000000,0.000000,0.250000,0,0);}
.m44_c00442{transform:matrix(0.017486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017486,0.000000,0.000000,0.250000,0,0);}
.m30_c00442{transform:matrix(0.017639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017639,0.000000,0.000000,0.250000,0,0);}
.m4b_c00442{transform:matrix(0.018444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018444,0.000000,0.000000,0.250000,0,0);}
.m56_c00442{transform:matrix(0.018487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018487,0.000000,0.000000,0.250000,0,0);}
.m47_c00442{transform:matrix(0.018589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018589,0.000000,0.000000,0.250000,0,0);}
.m4_c00442{transform:matrix(0.018932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018932,0.000000,0.000000,0.250000,0,0);}
.me_c00442{transform:matrix(0.021722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021722,0.000000,0.000000,0.250000,0,0);}
.m46_c00442{transform:matrix(0.023055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023055,0.000000,0.000000,0.250000,0,0);}
.m20_c00442{transform:matrix(0.023773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023773,0.000000,0.000000,0.250000,0,0);}
.m45_c00442{transform:matrix(0.023857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023857,0.000000,0.000000,0.250000,0,0);}
.m51_c00442{transform:matrix(0.024659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024659,0.000000,0.000000,0.250000,0,0);}
.m3a_c00442{transform:matrix(0.026263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026263,0.000000,0.000000,0.250000,0,0);}
.m16_c00442{transform:matrix(0.027159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027159,0.000000,0.000000,0.250000,0,0);}
.m54_c00442{transform:matrix(0.029333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029333,0.000000,0.000000,0.250000,0,0);}
.m13_c00442{transform:matrix(0.029456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029456,0.000000,0.000000,0.250000,0,0);}
.m2e_c00442{transform:matrix(0.030473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030473,0.000000,0.000000,0.250000,0,0);}
.m2_c00442{transform:matrix(0.030699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030699,0.000000,0.000000,0.250000,0,0);}
.m52_c00442{transform:matrix(0.031676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031676,0.000000,0.000000,0.250000,0,0);}
.m2f_c00442{transform:matrix(0.031854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031854,0.000000,0.000000,0.250000,0,0);}
.m3e_c00442{transform:matrix(0.032033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032033,0.000000,0.000000,0.250000,0,0);}
.m53_c00442{transform:matrix(0.032746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032746,0.000000,0.000000,0.250000,0,0);}
.m9_c00442{transform:matrix(0.034091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034091,0.000000,0.000000,0.250000,0,0);}
.m3c_c00442{transform:matrix(0.038765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038765,0.000000,0.000000,0.250000,0,0);}
.m17_c00442{transform:matrix(0.041240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041240,0.000000,0.000000,0.250000,0,0);}
.m49_c00442{transform:matrix(0.041318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041318,0.000000,0.000000,0.250000,0,0);}
.m31_c00442{transform:matrix(0.043640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043640,0.000000,0.000000,0.250000,0,0);}
.m18_c00442{transform:matrix(0.043796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043796,0.000000,0.000000,0.250000,0,0);}
.m39_c00442{transform:matrix(0.044937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044937,0.000000,0.000000,0.250000,0,0);}
.m36_c00442{transform:matrix(0.045833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045833,0.000000,0.000000,0.250000,0,0);}
.md_c00442{transform:matrix(0.050521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050521,0.000000,0.000000,0.250000,0,0);}
.m1b_c00442{transform:matrix(0.058181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058181,0.000000,0.000000,0.250000,0,0);}
.m32_c00442{transform:matrix(0.060219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060219,0.000000,0.000000,0.250000,0,0);}
.m6_c00442{transform:matrix(0.065697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065697,0.000000,0.000000,0.250000,0,0);}
.mf_c00442{transform:matrix(0.066358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066358,0.000000,0.000000,0.250000,0,0);}
.m34_c00442{transform:matrix(0.071227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071227,0.000000,0.000000,0.250000,0,0);}
.m29_c00442{transform:matrix(0.073663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073663,0.000000,0.000000,0.250000,0,0);}
.m1f_c00442{transform:matrix(0.076223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076223,0.000000,0.000000,0.250000,0,0);}
.m25_c00442{transform:matrix(0.077574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077574,0.000000,0.000000,0.250000,0,0);}
.m33_c00442{transform:matrix(0.077837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077837,0.000000,0.000000,0.250000,0,0);}
.m1d_c00442{transform:matrix(0.081805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081805,0.000000,0.000000,0.250000,0,0);}
.m3b_c00442{transform:matrix(0.083193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083193,0.000000,0.000000,0.250000,0,0);}
.m24_c00442{transform:matrix(0.083333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083333,0.000000,0.000000,0.250000,0,0);}
.m4c_c00442{transform:matrix(0.085506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085506,0.000000,0.000000,0.250000,0,0);}
.m28_c00442{transform:matrix(0.086389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086389,0.000000,0.000000,0.250000,0,0);}
.m15_c00442{transform:matrix(0.091641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091641,0.000000,0.000000,0.250000,0,0);}
.m37_c00442{transform:matrix(0.091678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091678,0.000000,0.000000,0.250000,0,0);}
.m2a_c00442{transform:matrix(0.097393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097393,0.000000,0.000000,0.250000,0,0);}
.m26_c00442{transform:matrix(0.099788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099788,0.000000,0.000000,0.250000,0,0);}
.m38_c00442{transform:matrix(0.100077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100077,0.000000,0.000000,0.250000,0,0);}
.m19_c00442{transform:matrix(0.102968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102968,0.000000,0.000000,0.250000,0,0);}
.m1c_c00442{transform:matrix(0.105751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105751,0.000000,0.000000,0.250000,0,0);}
.m5_c00442{transform:matrix(0.109489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109489,0.000000,0.000000,0.250000,0,0);}
.m21_c00442{transform:matrix(0.112730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112730,0.000000,0.000000,0.250000,0,0);}
.m2d_c00442{transform:matrix(0.116419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116419,0.000000,0.000000,0.250000,0,0);}
.m3f_c00442{transform:matrix(0.129406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129406,0.000000,0.000000,0.250000,0,0);}
.m1e_c00442{transform:matrix(0.129668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129668,0.000000,0.000000,0.250000,0,0);}
.m27_c00442{transform:matrix(0.136364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136364,0.000000,0.000000,0.250000,0,0);}
.m12_c00442{transform:matrix(0.138235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138235,0.000000,0.000000,0.250000,0,0);}
.m22_c00442{transform:matrix(0.145882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145882,0.000000,0.000000,0.250000,0,0);}
.m40_c00442{transform:matrix(0.151971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151971,0.000000,0.000000,0.250000,0,0);}
.m43_c00442{transform:matrix(0.166512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166512,0.000000,0.000000,0.250000,0,0);}
.m59_c00442{transform:matrix(0.195539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195539,0.000000,0.000000,0.250000,0,0);}
.m58_c00442{transform:matrix(0.196324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196324,0.000000,0.000000,0.250000,0,0);}
.m2b_c00442{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00442{transform:matrix(0.291494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291494,0.000000,0.000000,0.250000,0,0);}
.m2c_c00442{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m50_c00442{transform:matrix(0.318382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318382,0.000000,0.000000,0.250000,0,0);}
.m3d_c00442{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_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);}
.m4a_c00442{transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);}
.m1_c00442{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m11_c00442{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m57_c00442{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.m23_c00442{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m0_c00442{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_c00442{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m1a_c00442{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.m4e_c00442{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m55_c00442{transform:matrix(3.482456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.482456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.482456,0.000000,0.000000,0.250000,0,0);}
.v0_c00442{vertical-align:0.000000px;}
.ls0_c00442{letter-spacing:0.000000px;}
.sc__c00442{text-shadow:none;}
.sc0_c00442{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00442{-webkit-text-stroke:0px transparent;}
.sc0_c00442{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00442{word-spacing:0.000000px;}
.fc0_c00442{color:transparent;}
.fs1d_c00442{font-size:3.420000px;}
.fs15_c00442{font-size:11.880000px;}
.fs19_c00442{font-size:18.720000px;}
.fs0_c00442{font-size:20.400000px;}
.fs18_c00442{font-size:25.500000px;}
.fs3_c00442{font-size:28.920000px;}
.fs14_c00442{font-size:32.340000px;}
.fs1_c00442{font-size:35.700000px;}
.fs11_c00442{font-size:39.120000px;}
.fs16_c00442{font-size:42.540000px;}
.fse_c00442{font-size:45.900000px;}
.fs5_c00442{font-size:49.320000px;}
.fs13_c00442{font-size:52.740000px;}
.fs1a_c00442{font-size:61.200000px;}
.fs12_c00442{font-size:64.620000px;}
.fs6_c00442{font-size:68.040000px;}
.fs1e_c00442{font-size:71.460000px;}
.fsb_c00442{font-size:74.820000px;}
.fs17_c00442{font-size:78.240000px;}
.fs1f_c00442{font-size:85.020000px;}
.fs8_c00442{font-size:88.440000px;}
.fs2_c00442{font-size:91.860000px;}
.fs1b_c00442{font-size:95.220000px;}
.fsf_c00442{font-size:100.320000px;}
.fs1c_c00442{font-size:102.060000px;}
.fsc_c00442{font-size:113.940000px;}
.fs4_c00442{font-size:127.560000px;}
.fs10_c00442{font-size:132.660000px;}
.fsd_c00442{font-size:139.440000px;}
.fs9_c00442{font-size:146.280000px;}
.fsa_c00442{font-size:170.100000px;}
.fs7_c00442{font-size:205.800000px;}
.y0_c00442{bottom:0.000000px;}
.y24_c00442{bottom:303.825000px;}
.y17_c00442{bottom:304.680000px;}
.y3d_c00442{bottom:305.955000px;}
.y5c_c00442{bottom:307.005000px;}
.y46_c00442{bottom:307.035000px;}
.y7c_c00442{bottom:307.230000px;}
.y76_c00442{bottom:308.505000px;}
.y5f_c00442{bottom:308.700000px;}
.y8f_c00442{bottom:311.055000px;}
.y5_c00442{bottom:312.960000px;}
.y6d_c00442{bottom:313.800000px;}
.y87_c00442{bottom:314.460000px;}
.y30_c00442{bottom:327.825000px;}
.y4a_c00442{bottom:328.455000px;}
.y18_c00442{bottom:331.230000px;}
.y47_c00442{bottom:333.180000px;}
.y7d_c00442{bottom:334.050000px;}
.y99_c00442{bottom:335.130000px;}
.y74_c00442{bottom:335.730000px;}
.y9b_c00442{bottom:335.910000px;}
.y3e_c00442{bottom:335.925000px;}
.y92_c00442{bottom:338.550000px;}
.y77_c00442{bottom:343.230000px;}
.y5d_c00442{bottom:343.455000px;}
.y31_c00442{bottom:346.680000px;}
.y60_c00442{bottom:349.230000px;}
.y7e_c00442{bottom:352.230000px;}
.y90_c00442{bottom:353.505000px;}
.yb0_c00442{bottom:354.780000px;}
.y48_c00442{bottom:355.680000px;}
.y93_c00442{bottom:362.055000px;}
.y6_c00442{bottom:365.535000px;}
.y6e_c00442{bottom:368.730000px;}
.y3f_c00442{bottom:370.680000px;}
.y88_c00442{bottom:373.800000px;}
.yac_c00442{bottom:374.775000px;}
.y9c_c00442{bottom:375.420000px;}
.y4b_c00442{bottom:379.680000px;}
.yaa_c00442{bottom:379.920000px;}
.y61_c00442{bottom:380.535000px;}
.y9d_c00442{bottom:383.775000px;}
.yad_c00442{bottom:385.050000px;}
.yab_c00442{bottom:392.775000px;}
.y9e_c00442{bottom:394.050000px;}
.y7_c00442{bottom:394.650000px;}
.y8_c00442{bottom:445.305000px;}
.y19_c00442{bottom:449.955000px;}
.y5e_c00442{bottom:450.825000px;}
.y9f_c00442{bottom:451.005000px;}
.y40_c00442{bottom:451.470000px;}
.y62_c00442{bottom:451.680000px;}
.y32_c00442{bottom:451.905000px;}
.y25_c00442{bottom:452.775000px;}
.y78_c00442{bottom:453.180000px;}
.y4c_c00442{bottom:454.050000px;}
.y89_c00442{bottom:454.905000px;}
.y57_c00442{bottom:455.130000px;}
.y7f_c00442{bottom:455.325000px;}
.y1a_c00442{bottom:503.955000px;}
.y41_c00442{bottom:506.325000px;}
.ya0_c00442{bottom:506.505000px;}
.y63_c00442{bottom:507.180000px;}
.y33_c00442{bottom:507.405000px;}
.yb1_c00442{bottom:508.245000px;}
.y26_c00442{bottom:508.275000px;}
.y6f_c00442{bottom:508.680000px;}
.y9a_c00442{bottom:510.405000px;}
.y4d_c00442{bottom:510.630000px;}
.y8a_c00442{bottom:510.825000px;}
.y9_c00442{bottom:517.905000px;}
.ya_c00442{bottom:541.200000px;}
.y1b_c00442{bottom:559.455000px;}
.ya1_c00442{bottom:562.005000px;}
.y64_c00442{bottom:562.680000px;}
.y34_c00442{bottom:562.905000px;}
.y27_c00442{bottom:563.775000px;}
.y79_c00442{bottom:564.180000px;}
.y4e_c00442{bottom:564.630000px;}
.y80_c00442{bottom:566.325000px;}
.yb_c00442{bottom:591.090000px;}
.y1c_c00442{bottom:614.955000px;}
.y49_c00442{bottom:617.325000px;}
.ya2_c00442{bottom:617.505000px;}
.y65_c00442{bottom:618.180000px;}
.y35_c00442{bottom:618.405000px;}
.y28_c00442{bottom:619.275000px;}
.y4f_c00442{bottom:620.550000px;}
.y58_c00442{bottom:621.630000px;}
.y81_c00442{bottom:621.825000px;}
.y15_c00442{bottom:621.975000px;}
.yc_c00442{bottom:643.905000px;}
.y3_c00442{bottom:645.135000px;}
.y1d_c00442{bottom:670.455000px;}
.y70_c00442{bottom:672.180000px;}
.y16_c00442{bottom:672.300000px;}
.ya3_c00442{bottom:673.005000px;}
.y29_c00442{bottom:673.275000px;}
.y66_c00442{bottom:673.680000px;}
.y36_c00442{bottom:673.905000px;}
.y94_c00442{bottom:675.180000px;}
.y8b_c00442{bottom:675.825000px;}
.y82_c00442{bottom:676.905000px;}
.y50_c00442{bottom:677.130000px;}
.y96_c00442{bottom:677.325000px;}
.yd_c00442{bottom:678.060000px;}
.y4_c00442{bottom:682.905000px;}
.y1e_c00442{bottom:727.035000px;}
.y2a_c00442{bottom:728.775000px;}
.y67_c00442{bottom:729.180000px;}
.y37_c00442{bottom:729.405000px;}
.ya4_c00442{bottom:729.585000px;}
.y83_c00442{bottom:730.245000px;}
.y59_c00442{bottom:730.275000px;}
.y95_c00442{bottom:730.680000px;}
.y51_c00442{bottom:731.550000px;}
.y8c_c00442{bottom:732.825000px;}
.ye_c00442{bottom:751.590000px;}
.y1f_c00442{bottom:781.455000px;}
.y68_c00442{bottom:783.180000px;}
.y38_c00442{bottom:783.825000px;}
.ya5_c00442{bottom:784.005000px;}
.y2b_c00442{bottom:784.275000px;}
.y71_c00442{bottom:784.680000px;}
.y42_c00442{bottom:784.905000px;}
.y5a_c00442{bottom:785.775000px;}
.y7a_c00442{bottom:786.180000px;}
.y8d_c00442{bottom:786.825000px;}
.y52_c00442{bottom:788.130000px;}
.y97_c00442{bottom:788.325000px;}
.yf_c00442{bottom:811.005000px;}
.y20_c00442{bottom:835.455000px;}
.y39_c00442{bottom:837.825000px;}
.ya6_c00442{bottom:838.425000px;}
.y69_c00442{bottom:838.680000px;}
.y43_c00442{bottom:839.325000px;}
.y2c_c00442{bottom:839.775000px;}
.y72_c00442{bottom:840.180000px;}
.y53_c00442{bottom:841.050000px;}
.y8e_c00442{bottom:843.825000px;}
.y10_c00442{bottom:854.685000px;}
.y21_c00442{bottom:892.035000px;}
.y73_c00442{bottom:894.180000px;}
.y44_c00442{bottom:894.405000px;}
.ya7_c00442{bottom:894.585000px;}
.y3a_c00442{bottom:894.825000px;}
.y2d_c00442{bottom:895.275000px;}
.y6a_c00442{bottom:895.680000px;}
.y54_c00442{bottom:896.550000px;}
.yae_c00442{bottom:897.405000px;}
.y84_c00442{bottom:897.825000px;}
.y11_c00442{bottom:901.650000px;}
.y12_c00442{bottom:944.655000px;}
.y22_c00442{bottom:947.955000px;}
.ya8_c00442{bottom:949.005000px;}
.y3b_c00442{bottom:949.905000px;}
.y45_c00442{bottom:950.325000px;}
.y2e_c00442{bottom:950.775000px;}
.y6b_c00442{bottom:951.180000px;}
.y7b_c00442{bottom:952.245000px;}
.y5b_c00442{bottom:952.275000px;}
.y91_c00442{bottom:952.680000px;}
.yaf_c00442{bottom:953.325000px;}
.y55_c00442{bottom:953.550000px;}
.y85_c00442{bottom:954.825000px;}
.y13_c00442{bottom:994.905000px;}
.y23_c00442{bottom:1003.455000px;}
.y75_c00442{bottom:1005.180000px;}
.y3c_c00442{bottom:1005.405000px;}
.ya9_c00442{bottom:1005.585000px;}
.y2f_c00442{bottom:1006.275000px;}
.y6c_c00442{bottom:1006.680000px;}
.y86_c00442{bottom:1008.405000px;}
.y56_c00442{bottom:1008.630000px;}
.y98_c00442{bottom:1008.825000px;}
.y14_c00442{bottom:1011.600000px;}
.y2_c00442{bottom:1097.745000px;}
.y1_c00442{bottom:1102.050000px;}
.h1e_c00442{height:4.206533px;}
.h16_c00442{height:14.612168px;}
.h1a_c00442{height:23.025234px;}
.h1_c00442{height:25.091602px;}
.h19_c00442{height:31.364502px;}
.h4_c00442{height:35.571035px;}
.h15_c00442{height:39.777568px;}
.h2_c00442{height:43.910303px;}
.h12_c00442{height:48.116836px;}
.h17_c00442{height:52.323369px;}
.hf_c00442{height:56.456104px;}
.h6_c00442{height:60.662637px;}
.h14_c00442{height:64.869170px;}
.h1b_c00442{height:75.274805px;}
.h13_c00442{height:79.481338px;}
.h7_c00442{height:83.687871px;}
.h1f_c00442{height:87.894404px;}
.hc_c00442{height:92.027139px;}
.h18_c00442{height:96.233672px;}
.h20_c00442{height:104.572939px;}
.h9_c00442{height:108.779473px;}
.h3_c00442{height:112.986006px;}
.h1c_c00442{height:117.118740px;}
.h10_c00442{height:123.391641px;}
.h1d_c00442{height:125.531807px;}
.hd_c00442{height:140.143975px;}
.h5_c00442{height:156.896309px;}
.h11_c00442{height:163.169209px;}
.he_c00442{height:171.508477px;}
.ha_c00442{height:179.921543px;}
.hb_c00442{height:209.219678px;}
.h8_c00442{height:253.129980px;}
.h0_c00442{height:1335.000000px;}
.w0_c00442{width:880.500000px;}
.x0_c00442{left:0.000000px;}
.x3_c00442{left:256.500000px;}
.x4_c00442{left:259.080000px;}
.x5_c00442{left:279.225000px;}
.x6_c00442{left:280.920000px;}
.x7_c00442{left:282.420000px;}
.x8_c00442{left:294.225000px;}
.x9_c00442{left:295.500000px;}
.xa_c00442{left:322.080000px;}
.xb_c00442{left:323.580000px;}
.xe_c00442{left:339.000000px;}
.xd_c00442{left:340.500000px;}
.xc_c00442{left:342.000000px;}
.x10_c00442{left:358.920000px;}
.xf_c00442{left:360.000000px;}
.x12_c00442{left:372.420000px;}
.x11_c00442{left:373.500000px;}
.x13_c00442{left:375.000000px;}
.x14_c00442{left:385.500000px;}
.x15_c00442{left:387.420000px;}
.x16_c00442{left:388.500000px;}
.x17_c00442{left:399.000000px;}
.x1_c00442{left:411.000000px;}
.x18_c00442{left:413.580000px;}
.x19_c00442{left:415.500000px;}
.x1a_c00442{left:427.500000px;}
.x1b_c00442{left:429.420000px;}
.x1d_c00442{left:439.500000px;}
.x1c_c00442{left:441.420000px;}
.x1f_c00442{left:453.000000px;}
.x1e_c00442{left:454.080000px;}
.x21_c00442{left:466.500000px;}
.x20_c00442{left:468.000000px;}
.x22_c00442{left:480.645000px;}
.x23_c00442{left:482.775000px;}
.x24_c00442{left:494.145000px;}
.x25_c00442{left:495.420000px;}
.x27_c00442{left:507.000000px;}
.x26_c00442{left:508.080000px;}
.x28_c00442{left:521.580000px;}
.x29_c00442{left:522.855000px;}
.x2a_c00442{left:535.080000px;}
.x2b_c00442{left:536.775000px;}
.x2c_c00442{left:548.145000px;}
.x2e_c00442{left:561.000000px;}
.x2d_c00442{left:562.500000px;}
.x31_c00442{left:574.500000px;}
.x2f_c00442{left:575.580000px;}
.x30_c00442{left:577.500000px;}
.x33_c00442{left:585.000000px;}
.x32_c00442{left:586.500000px;}
.x36_c00442{left:588.000000px;}
.x34_c00442{left:589.500000px;}
.x35_c00442{left:592.920000px;}
.x37_c00442{left:602.145000px;}
.x38_c00442{left:603.420000px;}
.x3a_c00442{left:615.000000px;}
.x39_c00442{left:616.500000px;}
.x2_c00442{left:706.500000px;}
@media print{
.v0_c00442{vertical-align:0.000000pt;}
.ls0_c00442{letter-spacing:0.000000pt;}
.ws0_c00442{word-spacing:0.000000pt;}
.fs1d_c00442{font-size:3.040000pt;}
.fs15_c00442{font-size:10.560000pt;}
.fs19_c00442{font-size:16.640000pt;}
.fs0_c00442{font-size:18.133333pt;}
.fs18_c00442{font-size:22.666667pt;}
.fs3_c00442{font-size:25.706667pt;}
.fs14_c00442{font-size:28.746667pt;}
.fs1_c00442{font-size:31.733333pt;}
.fs11_c00442{font-size:34.773333pt;}
.fs16_c00442{font-size:37.813333pt;}
.fse_c00442{font-size:40.800000pt;}
.fs5_c00442{font-size:43.840000pt;}
.fs13_c00442{font-size:46.880000pt;}
.fs1a_c00442{font-size:54.400000pt;}
.fs12_c00442{font-size:57.440000pt;}
.fs6_c00442{font-size:60.480000pt;}
.fs1e_c00442{font-size:63.520000pt;}
.fsb_c00442{font-size:66.506667pt;}
.fs17_c00442{font-size:69.546667pt;}
.fs1f_c00442{font-size:75.573333pt;}
.fs8_c00442{font-size:78.613333pt;}
.fs2_c00442{font-size:81.653333pt;}
.fs1b_c00442{font-size:84.640000pt;}
.fsf_c00442{font-size:89.173333pt;}
.fs1c_c00442{font-size:90.720000pt;}
.fsc_c00442{font-size:101.280000pt;}
.fs4_c00442{font-size:113.386667pt;}
.fs10_c00442{font-size:117.920000pt;}
.fsd_c00442{font-size:123.946667pt;}
.fs9_c00442{font-size:130.026667pt;}
.fsa_c00442{font-size:151.200000pt;}
.fs7_c00442{font-size:182.933333pt;}
.y0_c00442{bottom:0.000000pt;}
.y24_c00442{bottom:270.066667pt;}
.y17_c00442{bottom:270.826667pt;}
.y3d_c00442{bottom:271.960000pt;}
.y5c_c00442{bottom:272.893333pt;}
.y46_c00442{bottom:272.920000pt;}
.y7c_c00442{bottom:273.093333pt;}
.y76_c00442{bottom:274.226667pt;}
.y5f_c00442{bottom:274.400000pt;}
.y8f_c00442{bottom:276.493333pt;}
.y5_c00442{bottom:278.186667pt;}
.y6d_c00442{bottom:278.933333pt;}
.y87_c00442{bottom:279.520000pt;}
.y30_c00442{bottom:291.400000pt;}
.y4a_c00442{bottom:291.960000pt;}
.y18_c00442{bottom:294.426667pt;}
.y47_c00442{bottom:296.160000pt;}
.y7d_c00442{bottom:296.933333pt;}
.y99_c00442{bottom:297.893333pt;}
.y74_c00442{bottom:298.426667pt;}
.y9b_c00442{bottom:298.586667pt;}
.y3e_c00442{bottom:298.600000pt;}
.y92_c00442{bottom:300.933333pt;}
.y77_c00442{bottom:305.093333pt;}
.y5d_c00442{bottom:305.293333pt;}
.y31_c00442{bottom:308.160000pt;}
.y60_c00442{bottom:310.426667pt;}
.y7e_c00442{bottom:313.093333pt;}
.y90_c00442{bottom:314.226667pt;}
.yb0_c00442{bottom:315.360000pt;}
.y48_c00442{bottom:316.160000pt;}
.y93_c00442{bottom:321.826667pt;}
.y6_c00442{bottom:324.920000pt;}
.y6e_c00442{bottom:327.760000pt;}
.y3f_c00442{bottom:329.493333pt;}
.y88_c00442{bottom:332.266667pt;}
.yac_c00442{bottom:333.133333pt;}
.y9c_c00442{bottom:333.706667pt;}
.y4b_c00442{bottom:337.493333pt;}
.yaa_c00442{bottom:337.706667pt;}
.y61_c00442{bottom:338.253333pt;}
.y9d_c00442{bottom:341.133333pt;}
.yad_c00442{bottom:342.266667pt;}
.yab_c00442{bottom:349.133333pt;}
.y9e_c00442{bottom:350.266667pt;}
.y7_c00442{bottom:350.800000pt;}
.y8_c00442{bottom:395.826667pt;}
.y19_c00442{bottom:399.960000pt;}
.y5e_c00442{bottom:400.733333pt;}
.y9f_c00442{bottom:400.893333pt;}
.y40_c00442{bottom:401.306667pt;}
.y62_c00442{bottom:401.493333pt;}
.y32_c00442{bottom:401.693333pt;}
.y25_c00442{bottom:402.466667pt;}
.y78_c00442{bottom:402.826667pt;}
.y4c_c00442{bottom:403.600000pt;}
.y89_c00442{bottom:404.360000pt;}
.y57_c00442{bottom:404.560000pt;}
.y7f_c00442{bottom:404.733333pt;}
.y1a_c00442{bottom:447.960000pt;}
.y41_c00442{bottom:450.066667pt;}
.ya0_c00442{bottom:450.226667pt;}
.y63_c00442{bottom:450.826667pt;}
.y33_c00442{bottom:451.026667pt;}
.yb1_c00442{bottom:451.773333pt;}
.y26_c00442{bottom:451.800000pt;}
.y6f_c00442{bottom:452.160000pt;}
.y9a_c00442{bottom:453.693333pt;}
.y4d_c00442{bottom:453.893333pt;}
.y8a_c00442{bottom:454.066667pt;}
.y9_c00442{bottom:460.360000pt;}
.ya_c00442{bottom:481.066667pt;}
.y1b_c00442{bottom:497.293333pt;}
.ya1_c00442{bottom:499.560000pt;}
.y64_c00442{bottom:500.160000pt;}
.y34_c00442{bottom:500.360000pt;}
.y27_c00442{bottom:501.133333pt;}
.y79_c00442{bottom:501.493333pt;}
.y4e_c00442{bottom:501.893333pt;}
.y80_c00442{bottom:503.400000pt;}
.yb_c00442{bottom:525.413333pt;}
.y1c_c00442{bottom:546.626667pt;}
.y49_c00442{bottom:548.733333pt;}
.ya2_c00442{bottom:548.893333pt;}
.y65_c00442{bottom:549.493333pt;}
.y35_c00442{bottom:549.693333pt;}
.y28_c00442{bottom:550.466667pt;}
.y4f_c00442{bottom:551.600000pt;}
.y58_c00442{bottom:552.560000pt;}
.y81_c00442{bottom:552.733333pt;}
.y15_c00442{bottom:552.866667pt;}
.yc_c00442{bottom:572.360000pt;}
.y3_c00442{bottom:573.453333pt;}
.y1d_c00442{bottom:595.960000pt;}
.y70_c00442{bottom:597.493333pt;}
.y16_c00442{bottom:597.600000pt;}
.ya3_c00442{bottom:598.226667pt;}
.y29_c00442{bottom:598.466667pt;}
.y66_c00442{bottom:598.826667pt;}
.y36_c00442{bottom:599.026667pt;}
.y94_c00442{bottom:600.160000pt;}
.y8b_c00442{bottom:600.733333pt;}
.y82_c00442{bottom:601.693333pt;}
.y50_c00442{bottom:601.893333pt;}
.y96_c00442{bottom:602.066667pt;}
.yd_c00442{bottom:602.720000pt;}
.y4_c00442{bottom:607.026667pt;}
.y1e_c00442{bottom:646.253333pt;}
.y2a_c00442{bottom:647.800000pt;}
.y67_c00442{bottom:648.160000pt;}
.y37_c00442{bottom:648.360000pt;}
.ya4_c00442{bottom:648.520000pt;}
.y83_c00442{bottom:649.106667pt;}
.y59_c00442{bottom:649.133333pt;}
.y95_c00442{bottom:649.493333pt;}
.y51_c00442{bottom:650.266667pt;}
.y8c_c00442{bottom:651.400000pt;}
.ye_c00442{bottom:668.080000pt;}
.y1f_c00442{bottom:694.626667pt;}
.y68_c00442{bottom:696.160000pt;}
.y38_c00442{bottom:696.733333pt;}
.ya5_c00442{bottom:696.893333pt;}
.y2b_c00442{bottom:697.133333pt;}
.y71_c00442{bottom:697.493333pt;}
.y42_c00442{bottom:697.693333pt;}
.y5a_c00442{bottom:698.466667pt;}
.y7a_c00442{bottom:698.826667pt;}
.y8d_c00442{bottom:699.400000pt;}
.y52_c00442{bottom:700.560000pt;}
.y97_c00442{bottom:700.733333pt;}
.yf_c00442{bottom:720.893333pt;}
.y20_c00442{bottom:742.626667pt;}
.y39_c00442{bottom:744.733333pt;}
.ya6_c00442{bottom:745.266667pt;}
.y69_c00442{bottom:745.493333pt;}
.y43_c00442{bottom:746.066667pt;}
.y2c_c00442{bottom:746.466667pt;}
.y72_c00442{bottom:746.826667pt;}
.y53_c00442{bottom:747.600000pt;}
.y8e_c00442{bottom:750.066667pt;}
.y10_c00442{bottom:759.720000pt;}
.y21_c00442{bottom:792.920000pt;}
.y73_c00442{bottom:794.826667pt;}
.y44_c00442{bottom:795.026667pt;}
.ya7_c00442{bottom:795.186667pt;}
.y3a_c00442{bottom:795.400000pt;}
.y2d_c00442{bottom:795.800000pt;}
.y6a_c00442{bottom:796.160000pt;}
.y54_c00442{bottom:796.933333pt;}
.yae_c00442{bottom:797.693333pt;}
.y84_c00442{bottom:798.066667pt;}
.y11_c00442{bottom:801.466667pt;}
.y12_c00442{bottom:839.693333pt;}
.y22_c00442{bottom:842.626667pt;}
.ya8_c00442{bottom:843.560000pt;}
.y3b_c00442{bottom:844.360000pt;}
.y45_c00442{bottom:844.733333pt;}
.y2e_c00442{bottom:845.133333pt;}
.y6b_c00442{bottom:845.493333pt;}
.y7b_c00442{bottom:846.440000pt;}
.y5b_c00442{bottom:846.466667pt;}
.y91_c00442{bottom:846.826667pt;}
.yaf_c00442{bottom:847.400000pt;}
.y55_c00442{bottom:847.600000pt;}
.y85_c00442{bottom:848.733333pt;}
.y13_c00442{bottom:884.360000pt;}
.y23_c00442{bottom:891.960000pt;}
.y75_c00442{bottom:893.493333pt;}
.y3c_c00442{bottom:893.693333pt;}
.ya9_c00442{bottom:893.853333pt;}
.y2f_c00442{bottom:894.466667pt;}
.y6c_c00442{bottom:894.826667pt;}
.y86_c00442{bottom:896.360000pt;}
.y56_c00442{bottom:896.560000pt;}
.y98_c00442{bottom:896.733333pt;}
.y14_c00442{bottom:899.200000pt;}
.y2_c00442{bottom:975.773333pt;}
.y1_c00442{bottom:979.600000pt;}
.h1e_c00442{height:3.739141pt;}
.h16_c00442{height:12.988594pt;}
.h1a_c00442{height:20.466875pt;}
.h1_c00442{height:22.303646pt;}
.h19_c00442{height:27.879557pt;}
.h4_c00442{height:31.618698pt;}
.h15_c00442{height:35.357839pt;}
.h2_c00442{height:39.031380pt;}
.h12_c00442{height:42.770521pt;}
.h17_c00442{height:46.509661pt;}
.hf_c00442{height:50.183203pt;}
.h6_c00442{height:53.922344pt;}
.h14_c00442{height:57.661484pt;}
.h1b_c00442{height:66.910937pt;}
.h13_c00442{height:70.650078pt;}
.h7_c00442{height:74.389219pt;}
.h1f_c00442{height:78.128359pt;}
.hc_c00442{height:81.801901pt;}
.h18_c00442{height:85.541042pt;}
.h20_c00442{height:92.953724pt;}
.h9_c00442{height:96.692865pt;}
.h3_c00442{height:100.432005pt;}
.h1c_c00442{height:104.105547pt;}
.h10_c00442{height:109.681458pt;}
.h1d_c00442{height:111.583828pt;}
.hd_c00442{height:124.572422pt;}
.h5_c00442{height:139.463385pt;}
.h11_c00442{height:145.039297pt;}
.he_c00442{height:152.451979pt;}
.ha_c00442{height:159.930260pt;}
.hb_c00442{height:185.973047pt;}
.h8_c00442{height:225.004427pt;}
.h0_c00442{height:1186.666667pt;}
.w0_c00442{width:782.666667pt;}
.x0_c00442{left:0.000000pt;}
.x3_c00442{left:228.000000pt;}
.x4_c00442{left:230.293333pt;}
.x5_c00442{left:248.200000pt;}
.x6_c00442{left:249.706667pt;}
.x7_c00442{left:251.040000pt;}
.x8_c00442{left:261.533333pt;}
.x9_c00442{left:262.666667pt;}
.xa_c00442{left:286.293333pt;}
.xb_c00442{left:287.626667pt;}
.xe_c00442{left:301.333333pt;}
.xd_c00442{left:302.666667pt;}
.xc_c00442{left:304.000000pt;}
.x10_c00442{left:319.040000pt;}
.xf_c00442{left:320.000000pt;}
.x12_c00442{left:331.040000pt;}
.x11_c00442{left:332.000000pt;}
.x13_c00442{left:333.333333pt;}
.x14_c00442{left:342.666667pt;}
.x15_c00442{left:344.373333pt;}
.x16_c00442{left:345.333333pt;}
.x17_c00442{left:354.666667pt;}
.x1_c00442{left:365.333333pt;}
.x18_c00442{left:367.626667pt;}
.x19_c00442{left:369.333333pt;}
.x1a_c00442{left:380.000000pt;}
.x1b_c00442{left:381.706667pt;}
.x1d_c00442{left:390.666667pt;}
.x1c_c00442{left:392.373333pt;}
.x1f_c00442{left:402.666667pt;}
.x1e_c00442{left:403.626667pt;}
.x21_c00442{left:414.666667pt;}
.x20_c00442{left:416.000000pt;}
.x22_c00442{left:427.240000pt;}
.x23_c00442{left:429.133333pt;}
.x24_c00442{left:439.240000pt;}
.x25_c00442{left:440.373333pt;}
.x27_c00442{left:450.666667pt;}
.x26_c00442{left:451.626667pt;}
.x28_c00442{left:463.626667pt;}
.x29_c00442{left:464.760000pt;}
.x2a_c00442{left:475.626667pt;}
.x2b_c00442{left:477.133333pt;}
.x2c_c00442{left:487.240000pt;}
.x2e_c00442{left:498.666667pt;}
.x2d_c00442{left:500.000000pt;}
.x31_c00442{left:510.666667pt;}
.x2f_c00442{left:511.626667pt;}
.x30_c00442{left:513.333333pt;}
.x33_c00442{left:520.000000pt;}
.x32_c00442{left:521.333333pt;}
.x36_c00442{left:522.666667pt;}
.x34_c00442{left:524.000000pt;}
.x35_c00442{left:527.040000pt;}
.x37_c00442{left:535.240000pt;}
.x38_c00442{left:536.373333pt;}
.x3a_c00442{left:546.666667pt;}
.x39_c00442{left:548.000000pt;}
.x2_c00442{left:628.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_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_04ed5a285083900751c5d1ae.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m58_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);}
.m56_c00443{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.me4_c00443{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.mc2_c00443{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.mcf_c00443{transform:matrix(0.341258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341258,0.000000,0.000000,0.250000,0,0);}
.m82_c00443{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m76_c00443{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.md2_c00443{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.mee_c00443{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.mb4_c00443{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m11_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);}
.mcd_c00443{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mf0_c00443{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.mbf_c00443{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.me7_c00443{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.mf1_c00443{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.md6_c00443{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m83_c00443{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mc6_c00443{transform:matrix(0.387653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387653,0.000000,0.000000,0.250000,0,0);}
.mdd_c00443{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m3b_c00443{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.mb3_c00443{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m4d_c00443{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m8a_c00443{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.mc9_c00443{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m5b_c00443{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.md5_c00443{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m29_c00443{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.ma8_c00443{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m71_c00443{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.mf9_c00443{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m17_c00443{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m27_c00443{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.md9_c00443{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m9a_c00443{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mda_c00443{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.md4_c00443{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m38_c00443{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m8e_c00443{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m68_c00443{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.mcb_c00443{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.md0_c00443{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m96_c00443{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m95_c00443{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.md1_c00443{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.me1_c00443{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m99_c00443{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m16_c00443{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m44_c00443{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m79_c00443{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m35_c00443{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m18_c00443{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m22_c00443{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m67_c00443{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mcc_c00443{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m93_c00443{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.ma1_c00443{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m24_c00443{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m30_c00443{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.maf_c00443{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.mb9_c00443{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.me3_c00443{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mc7_c00443{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.mef_c00443{transform:matrix(0.427386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427386,0.000000,0.000000,0.250000,0,0);}
.m6a_c00443{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m4f_c00443{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m86_c00443{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.mb8_c00443{transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);}
.m89_c00443{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m5d_c00443{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m42_c00443{transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);}
.m61_c00443{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.ma6_c00443{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m77_c00443{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m64_c00443{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m69_c00443{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m5c_c00443{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m3f_c00443{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m3c_c00443{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.med_c00443{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.me5_c00443{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m48_c00443{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m70_c00443{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m98_c00443{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.mf5_c00443{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.mde_c00443{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m85_c00443{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.md8_c00443{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m80_c00443{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m1d_c00443{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m4e_c00443{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.m8c_c00443{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.me6_c00443{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m73_c00443{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.m28_c00443{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m7f_c00443{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m2_c00443{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m46_c00443{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m6c_c00443{transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);}
.m84_c00443{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.mf6_c00443{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.mf7_c00443{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.m15_c00443{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m5e_c00443{transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);}
.ma5_c00443{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m10_c00443{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m5f_c00443{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.me8_c00443{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m78_c00443{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m4b_c00443{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mb7_c00443{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m1_c00443{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mad_c00443{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m52_c00443{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.m9_c00443{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m74_c00443{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m6e_c00443{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.mf8_c00443{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m5_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);}
.m87_c00443{transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);}
.mb_c00443{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m2c_c00443{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m7_c00443{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.me2_c00443{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mb2_c00443{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mc1_c00443{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m2f_c00443{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m2d_c00443{transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);}
.m91_c00443{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m7b_c00443{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.mb5_c00443{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.mba_c00443{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m13_c00443{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m66_c00443{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m47_c00443{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m92_c00443{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m7e_c00443{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mac_c00443{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mbd_c00443{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m9e_c00443{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m50_c00443{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m9d_c00443{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m39_c00443{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m1e_c00443{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m62_c00443{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mdc_c00443{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m72_c00443{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.ma2_c00443{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m4_c00443{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mec_c00443{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mc0_c00443{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m6b_c00443{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m3e_c00443{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m7d_c00443{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m8_c00443{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m8b_c00443{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m59_c00443{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.ma4_c00443{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m9f_c00443{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.ma7_c00443{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.mdb_c00443{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m20_c00443{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mc4_c00443{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m51_c00443{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.ma9_c00443{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m32_c00443{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m5a_c00443{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m4a_c00443{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m21_c00443{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m94_c00443{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.ma_c00443{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m9b_c00443{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m65_c00443{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mc8_c00443{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mdf_c00443{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m2e_c00443{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mea_c00443{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mf2_c00443{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m25_c00443{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.me_c00443{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mc3_c00443{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m63_c00443{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mab_c00443{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.me9_c00443{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m3a_c00443{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mb0_c00443{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m90_c00443{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m12_c00443{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m54_c00443{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m53_c00443{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m14_c00443{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m3_c00443{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mbe_c00443{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m1a_c00443{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m88_c00443{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m23_c00443{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m8d_c00443{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m60_c00443{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.md7_c00443{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mce_c00443{transform:matrix(0.587647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587647,0.000000,0.000000,0.250000,0,0);}
.m6f_c00443{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.mae_c00443{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m36_c00443{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m34_c00443{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m2b_c00443{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.m1c_c00443{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);}
.md_c00443{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m8f_c00443{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.mc_c00443{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m2a_c00443{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.ma0_c00443{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.m37_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);}
.m57_c00443{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m97_c00443{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m49_c00443{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m7a_c00443{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m0_c00443{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m7c_c00443{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.mb6_c00443{transform:matrix(0.644710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644710,0.000000,0.000000,0.250000,0,0);}
.m75_c00443{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.md3_c00443{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.maa_c00443{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m19_c00443{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m33_c00443{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m31_c00443{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.meb_c00443{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m26_c00443{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mbc_c00443{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.mb1_c00443{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mbb_c00443{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m4c_c00443{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mf4_c00443{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m41_c00443{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m45_c00443{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m1b_c00443{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mc5_c00443{transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754808,0.000000,0.000000,0.250000,0,0);}
.mf3_c00443{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.m1f_c00443{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m6_c00443{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mca_c00443{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mf_c00443{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m43_c00443{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.me0_c00443{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m6d_c00443{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m40_c00443{transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);}
.ma3_c00443{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m81_c00443{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m3d_c00443{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m55_c00443{transform:matrix(1.011929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.011929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.011929,0.000000,0.000000,0.250000,0,0);}
.m9c_c00443{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v2_c00443{vertical-align:-7.740000px;}
.v0_c00443{vertical-align:0.000000px;}
.v1_c00443{vertical-align:18.000000px;}
.ls0_c00443{letter-spacing:0.000000px;}
.sc__c00443{text-shadow:none;}
.sc0_c00443{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00443{-webkit-text-stroke:0px transparent;}
.sc0_c00443{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00443{word-spacing:-16.889280px;}
.ws2_c00443{word-spacing:-9.216610px;}
.ws0_c00443{word-spacing:-8.678629px;}
.ws1_c00443{word-spacing:-0.328560px;}
.ws4_c00443{word-spacing:0.000000px;}
._0_c00443{width:6.522671px;}
.fc0_c00443{color:transparent;}
.fs7_c00443{font-size:3.420000px;}
.fs2_c00443{font-size:18.720000px;}
.fs0_c00443{font-size:20.400000px;}
.fs3_c00443{font-size:25.500000px;}
.fs1_c00443{font-size:28.920000px;}
.fs5_c00443{font-size:32.340000px;}
.fs6_c00443{font-size:35.700000px;}
.fs4_c00443{font-size:39.120000px;}
.y0_c00443{bottom:0.000000px;}
.yd1_c00443{bottom:253.245000px;}
.ycd_c00443{bottom:254.130000px;}
.ycf_c00443{bottom:254.325000px;}
.ycc_c00443{bottom:254.970000px;}
.yd0_c00443{bottom:255.405000px;}
.yce_c00443{bottom:256.470000px;}
.yc9_c00443{bottom:272.745000px;}
.yca_c00443{bottom:274.905000px;}
.ycb_c00443{bottom:275.130000px;}
.yc6_c00443{bottom:291.825000px;}
.yc2_c00443{bottom:292.245000px;}
.yc5_c00443{bottom:293.325000px;}
.yc7_c00443{bottom:293.970000px;}
.yc4_c00443{bottom:294.405000px;}
.yc8_c00443{bottom:294.630000px;}
.yc3_c00443{bottom:295.470000px;}
.ybb_c00443{bottom:310.680000px;}
.ybe_c00443{bottom:310.905000px;}
.ybd_c00443{bottom:311.745000px;}
.ybc_c00443{bottom:312.825000px;}
.yc1_c00443{bottom:313.245000px;}
.ybf_c00443{bottom:313.905000px;}
.yc0_c00443{bottom:314.970000px;}
.yba_c00443{bottom:330.405000px;}
.yb7_c00443{bottom:331.245000px;}
.yb8_c00443{bottom:332.745000px;}
.yb6_c00443{bottom:333.405000px;}
.yb9_c00443{bottom:334.905000px;}
.yaf_c00443{bottom:349.905000px;}
.yb2_c00443{bottom:350.745000px;}
.yb5_c00443{bottom:350.970000px;}
.yb1_c00443{bottom:352.245000px;}
.yb3_c00443{bottom:353.130000px;}
.yb4_c00443{bottom:353.325000px;}
.yb0_c00443{bottom:354.405000px;}
.yac_c00443{bottom:371.745000px;}
.yae_c00443{bottom:373.470000px;}
.yad_c00443{bottom:373.905000px;}
.ya6_c00443{bottom:389.325000px;}
.yaa_c00443{bottom:390.405000px;}
.ya5_c00443{bottom:391.245000px;}
.yab_c00443{bottom:392.130000px;}
.ya7_c00443{bottom:393.405000px;}
.ya8_c00443{bottom:393.630000px;}
.ya9_c00443{bottom:394.470000px;}
.ya2_c00443{bottom:410.745000px;}
.ya4_c00443{bottom:410.970000px;}
.ya1_c00443{bottom:412.905000px;}
.ya3_c00443{bottom:413.970000px;}
.y9f_c00443{bottom:429.825000px;}
.y9e_c00443{bottom:430.470000px;}
.y9c_c00443{bottom:430.680000px;}
.y9d_c00443{bottom:431.745000px;}
.y9a_c00443{bottom:432.405000px;}
.y9b_c00443{bottom:433.470000px;}
.ya0_c00443{bottom:433.905000px;}
.y96_c00443{bottom:449.745000px;}
.y94_c00443{bottom:450.405000px;}
.y97_c00443{bottom:451.245000px;}
.y98_c00443{bottom:451.905000px;}
.y93_c00443{bottom:452.130000px;}
.y99_c00443{bottom:452.970000px;}
.y95_c00443{bottom:453.405000px;}
.y92_c00443{bottom:469.245000px;}
.y8f_c00443{bottom:469.905000px;}
.y90_c00443{bottom:470.745000px;}
.y91_c00443{bottom:471.630000px;}
.y8e_c00443{bottom:472.905000px;}
.y8d_c00443{bottom:490.245000px;}
.y8b_c00443{bottom:491.325000px;}
.y8c_c00443{bottom:492.405000px;}
.y8a_c00443{bottom:508.680000px;}
.y89_c00443{bottom:511.905000px;}
.y88_c00443{bottom:512.130000px;}
.y87_c00443{bottom:529.245000px;}
.y86_c00443{bottom:531.405000px;}
.y80_c00443{bottom:548.745000px;}
.y82_c00443{bottom:550.245000px;}
.y7f_c00443{bottom:550.470000px;}
.y83_c00443{bottom:550.905000px;}
.y84_c00443{bottom:551.130000px;}
.y85_c00443{bottom:551.970000px;}
.y81_c00443{bottom:552.405000px;}
.y7c_c00443{bottom:569.745000px;}
.y7a_c00443{bottom:570.405000px;}
.y7b_c00443{bottom:570.630000px;}
.y7e_c00443{bottom:571.470000px;}
.y7d_c00443{bottom:571.905000px;}
.y77_c00443{bottom:586.905000px;}
.y78_c00443{bottom:589.245000px;}
.y75_c00443{bottom:589.905000px;}
.y79_c00443{bottom:590.130000px;}
.y76_c00443{bottom:591.405000px;}
.y74_c00443{bottom:607.470000px;}
.y73_c00443{bottom:608.745000px;}
.y70_c00443{bottom:609.405000px;}
.y72_c00443{bottom:609.630000px;}
.y71_c00443{bottom:610.905000px;}
.y6f_c00443{bottom:626.745000px;}
.y6c_c00443{bottom:628.245000px;}
.y6a_c00443{bottom:628.905000px;}
.y6d_c00443{bottom:629.130000px;}
.y6b_c00443{bottom:629.970000px;}
.y6e_c00443{bottom:630.405000px;}
.y68_c00443{bottom:647.745000px;}
.y69_c00443{bottom:648.630000px;}
.y66_c00443{bottom:649.905000px;}
.y67_c00443{bottom:649.920000px;}
.y60_c00443{bottom:665.745000px;}
.y63_c00443{bottom:667.245000px;}
.y64_c00443{bottom:668.325000px;}
.y62_c00443{bottom:669.405000px;}
.y65_c00443{bottom:669.630000px;}
.y61_c00443{bottom:670.470000px;}
.y5f_c00443{bottom:686.745000px;}
.y5d_c00443{bottom:688.905000px;}
.y5e_c00443{bottom:689.970000px;}
.y59_c00443{bottom:705.405000px;}
.y5c_c00443{bottom:706.245000px;}
.y58_c00443{bottom:708.405000px;}
.y5a_c00443{bottom:708.630000px;}
.y5b_c00443{bottom:709.470000px;}
.y54_c00443{bottom:726.825000px;}
.y57_c00443{bottom:727.245000px;}
.y55_c00443{bottom:727.905000px;}
.y53_c00443{bottom:728.130000px;}
.y56_c00443{bottom:728.970000px;}
.y52_c00443{bottom:745.245000px;}
.y4f_c00443{bottom:745.680000px;}
.y4c_c00443{bottom:745.905000px;}
.y51_c00443{bottom:746.745000px;}
.y4b_c00443{bottom:747.405000px;}
.y4e_c00443{bottom:747.630000px;}
.y4d_c00443{bottom:748.470000px;}
.y50_c00443{bottom:748.905000px;}
.y4a_c00443{bottom:763.905000px;}
.y49_c00443{bottom:766.245000px;}
.y46_c00443{bottom:767.970000px;}
.y47_c00443{bottom:768.405000px;}
.y48_c00443{bottom:769.470000px;}
.y41_c00443{bottom:783.405000px;}
.y43_c00443{bottom:785.745000px;}
.y45_c00443{bottom:786.630000px;}
.y44_c00443{bottom:787.470000px;}
.y42_c00443{bottom:787.905000px;}
.y3f_c00443{bottom:805.245000px;}
.y3e_c00443{bottom:807.405000px;}
.y40_c00443{bottom:808.470000px;}
.y3b_c00443{bottom:824.745000px;}
.y3c_c00443{bottom:825.825000px;}
.y3a_c00443{bottom:826.905000px;}
.y3d_c00443{bottom:827.130000px;}
.y37_c00443{bottom:843.405000px;}
.y36_c00443{bottom:844.245000px;}
.y39_c00443{bottom:845.745000px;}
.y35_c00443{bottom:846.405000px;}
.y38_c00443{bottom:847.470000px;}
.y31_c00443{bottom:862.905000px;}
.y2f_c00443{bottom:863.745000px;}
.y33_c00443{bottom:865.245000px;}
.y2e_c00443{bottom:865.905000px;}
.y32_c00443{bottom:866.325000px;}
.y34_c00443{bottom:866.970000px;}
.y30_c00443{bottom:867.405000px;}
.y2d_c00443{bottom:882.405000px;}
.y2a_c00443{bottom:883.245000px;}
.y2c_c00443{bottom:884.745000px;}
.y29_c00443{bottom:886.905000px;}
.y2b_c00443{bottom:887.970000px;}
.y27_c00443{bottom:904.905000px;}
.y28_c00443{bottom:906.405000px;}
.y21_c00443{bottom:923.745000px;}
.y24_c00443{bottom:924.630000px;}
.y25_c00443{bottom:924.825000px;}
.y26_c00443{bottom:925.470000px;}
.y23_c00443{bottom:925.905000px;}
.y22_c00443{bottom:926.970000px;}
.y1f_c00443{bottom:943.245000px;}
.y1e_c00443{bottom:944.130000px;}
.y20_c00443{bottom:944.325000px;}
.y1d_c00443{bottom:945.405000px;}
.y1c_c00443{bottom:961.905000px;}
.y1b_c00443{bottom:964.470000px;}
.y19_c00443{bottom:964.905000px;}
.y1a_c00443{bottom:965.130000px;}
.y14_c00443{bottom:982.245000px;}
.y17_c00443{bottom:983.970000px;}
.y16_c00443{bottom:984.405000px;}
.y18_c00443{bottom:984.630000px;}
.y15_c00443{bottom:985.470000px;}
.y10_c00443{bottom:1001.745000px;}
.y12_c00443{bottom:1002.825000px;}
.y11_c00443{bottom:1003.905000px;}
.y13_c00443{bottom:1004.970000px;}
.yf_c00443{bottom:1021.245000px;}
.ye_c00443{bottom:1023.405000px;}
.yd_c00443{bottom:1023.630000px;}
.yc_c00443{bottom:1024.470000px;}
.y8_c00443{bottom:1039.680000px;}
.ya_c00443{bottom:1040.745000px;}
.y9_c00443{bottom:1041.825000px;}
.y7_c00443{bottom:1042.905000px;}
.yb_c00443{bottom:1043.130000px;}
.y3_c00443{bottom:1062.405000px;}
.y4_c00443{bottom:1062.630000px;}
.y6_c00443{bottom:1063.470000px;}
.y5_c00443{bottom:1063.905000px;}
.y2_c00443{bottom:1098.405000px;}
.y1_c00443{bottom:1102.050000px;}
.h9_c00443{height:4.206533px;}
.h3_c00443{height:23.025234px;}
.h1_c00443{height:25.091602px;}
.h4_c00443{height:31.364502px;}
.h2_c00443{height:35.571035px;}
.h6_c00443{height:39.777568px;}
.h7_c00443{height:43.910303px;}
.h5_c00443{height:48.116836px;}
.h8_c00443{height:53.571035px;}
.h0_c00443{height:1335.000000px;}
.w0_c00443{width:880.500000px;}
.x0_c00443{left:0.000000px;}
.x10e_c00443{left:150.000000px;}
.x2_c00443{left:151.500000px;}
.xa9_c00443{left:153.000000px;}
.x14_c00443{left:166.920000px;}
.x4e_c00443{left:168.000000px;}
.x89_c00443{left:169.500000px;}
.x75_c00443{left:172.920000px;}
.x38_c00443{left:174.000000px;}
.xc7_c00443{left:175.500000px;}
.xe8_c00443{left:176.580000px;}
.xaa_c00443{left:177.855000px;}
.x23_c00443{left:181.500000px;}
.xf4_c00443{left:183.000000px;}
.x108_c00443{left:184.500000px;}
.xad_c00443{left:186.000000px;}
.x112_c00443{left:187.500000px;}
.x3_c00443{left:188.580000px;}
.xdb_c00443{left:190.500000px;}
.x9f_c00443{left:191.580000px;}
.x90_c00443{left:193.500000px;}
.x48_c00443{left:195.000000px;}
.x64_c00443{left:196.920000px;}
.xa4_c00443{left:198.420000px;}
.x39_c00443{left:199.500000px;}
.xb6_c00443{left:201.000000px;}
.xe5_c00443{left:203.580000px;}
.x4_c00443{left:207.420000px;}
.xed_c00443{left:209.580000px;}
.x7e_c00443{left:211.500000px;}
.x4f_c00443{left:213.000000px;}
.xa0_c00443{left:214.080000px;}
.xfe_c00443{left:216.420000px;}
.xb2_c00443{left:217.500000px;}
.x5c_c00443{left:219.000000px;}
.x65_c00443{left:221.580000px;}
.x69_c00443{left:223.920000px;}
.x24_c00443{left:225.000000px;}
.x15_c00443{left:226.920000px;}
.xcb_c00443{left:229.500000px;}
.x5_c00443{left:234.420000px;}
.xe1_c00443{left:235.920000px;}
.x5d_c00443{left:237.420000px;}
.x50_c00443{left:238.500000px;}
.x66_c00443{left:240.420000px;}
.xc2_c00443{left:241.500000px;}
.x2e_c00443{left:243.000000px;}
.xae_c00443{left:246.420000px;}
.x113_c00443{left:247.500000px;}
.x109_c00443{left:250.275000px;}
.x3a_c00443{left:252.000000px;}
.x16_c00443{left:253.500000px;}
.x49_c00443{left:256.080000px;}
.x25_c00443{left:258.420000px;}
.xcc_c00443{left:259.500000px;}
.x2f_c00443{left:261.000000px;}
.xa5_c00443{left:262.500000px;}
.x6_c00443{left:264.000000px;}
.x7f_c00443{left:265.080000px;}
.x67_c00443{left:267.420000px;}
.xab_c00443{left:268.500000px;}
.x3b_c00443{left:270.420000px;}
.x51_c00443{left:273.420000px;}
.x99_c00443{left:276.420000px;}
.x76_c00443{left:277.920000px;}
.x101_c00443{left:279.000000px;}
.xe2_c00443{left:280.500000px;}
.x80_c00443{left:283.920000px;}
.xd3_c00443{left:286.920000px;}
.x26_c00443{left:288.000000px;}
.x6a_c00443{left:289.920000px;}
.x7_c00443{left:291.000000px;}
.xc3_c00443{left:295.500000px;}
.x17_c00443{left:297.000000px;}
.x4a_c00443{left:299.580000px;}
.x3c_c00443{left:304.080000px;}
.x27_c00443{left:306.420000px;}
.xa6_c00443{left:307.500000px;}
.xb7_c00443{left:309.000000px;}
.x4b_c00443{left:310.500000px;}
.x52_c00443{left:313.500000px;}
.x91_c00443{left:314.580000px;}
.x9a_c00443{left:316.500000px;}
.xee_c00443{left:318.420000px;}
.xc8_c00443{left:319.920000px;}
.x68_c00443{left:321.000000px;}
.x30_c00443{left:322.920000px;}
.xcd_c00443{left:324.420000px;}
.xbf_c00443{left:327.000000px;}
.x4c_c00443{left:328.920000px;}
.x6b_c00443{left:330.000000px;}
.xe3_c00443{left:331.500000px;}
.xd4_c00443{left:337.500000px;}
.xf5_c00443{left:339.000000px;}
.x8_c00443{left:340.500000px;}
.x8a_c00443{left:342.000000px;}
.xc4_c00443{left:343.500000px;}
.x18_c00443{left:344.580000px;}
.x6c_c00443{left:346.500000px;}
.x4d_c00443{left:348.000000px;}
.x3d_c00443{left:349.500000px;}
.x92_c00443{left:350.580000px;}
.x77_c00443{left:354.000000px;}
.xdc_c00443{left:355.920000px;}
.xaf_c00443{left:357.000000px;}
.xac_c00443{left:358.920000px;}
.x6d_c00443{left:361.500000px;}
.x19_c00443{left:364.920000px;}
.xce_c00443{left:367.500000px;}
.xf6_c00443{left:369.000000px;}
.x5e_c00443{left:370.500000px;}
.x9_c00443{left:371.580000px;}
.x31_c00443{left:376.500000px;}
.x6e_c00443{left:378.000000px;}
.x53_c00443{left:381.000000px;}
.x28_c00443{left:382.080000px;}
.xd5_c00443{left:385.080000px;}
.x102_c00443{left:387.420000px;}
.x81_c00443{left:388.500000px;}
.x1a_c00443{left:391.920000px;}
.x3e_c00443{left:393.000000px;}
.xb3_c00443{left:394.500000px;}
.x6f_c00443{left:396.000000px;}
.xf7_c00443{left:397.920000px;}
.x78_c00443{left:399.000000px;}
.xc5_c00443{left:400.500000px;}
.x54_c00443{left:401.580000px;}
.x93_c00443{left:403.080000px;}
.xcf_c00443{left:404.580000px;}
.xa_c00443{left:406.080000px;}
.x1_c00443{left:408.000000px;}
.x70_c00443{left:411.000000px;}
.x8b_c00443{left:412.500000px;}
.xef_c00443{left:414.000000px;}
.xff_c00443{left:415.500000px;}
.xc6_c00443{left:418.500000px;}
.xbb_c00443{left:420.420000px;}
.x9b_c00443{left:421.920000px;}
.xb_c00443{left:424.920000px;}
.xb8_c00443{left:426.420000px;}
.x32_c00443{left:427.500000px;}
.xa7_c00443{left:429.000000px;}
.x114_c00443{left:430.080000px;}
.xd6_c00443{left:431.145000px;}
.x8c_c00443{left:433.500000px;}
.x55_c00443{left:438.000000px;}
.xbc_c00443{left:439.920000px;}
.x103_c00443{left:442.920000px;}
.x82_c00443{left:444.000000px;}
.x1b_c00443{left:445.500000px;}
.x33_c00443{left:447.000000px;}
.x9c_c00443{left:448.500000px;}
.xc_c00443{left:451.500000px;}
.x3f_c00443{left:452.580000px;}
.xb9_c00443{left:454.500000px;}
.x10c_c00443{left:456.000000px;}
.x5f_c00443{left:463.500000px;}
.xdd_c00443{left:466.500000px;}
.xe6_c00443{left:468.000000px;}
.xa1_c00443{left:469.500000px;}
.x34_c00443{left:470.580000px;}
.x56_c00443{left:474.000000px;}
.x83_c00443{left:475.500000px;}
.x8d_c00443{left:478.500000px;}
.x10f_c00443{left:480.420000px;}
.x29_c00443{left:481.500000px;}
.x79_c00443{left:483.000000px;}
.xd0_c00443{left:484.500000px;}
.x1c_c00443{left:485.580000px;}
.x40_c00443{left:489.000000px;}
.x94_c00443{left:490.080000px;}
.xd_c00443{left:493.500000px;}
.x60_c00443{left:496.500000px;}
.x7a_c00443{left:497.580000px;}
.x8e_c00443{left:499.920000px;}
.x57_c00443{left:501.000000px;}
.xa2_c00443{left:502.920000px;}
.x1d_c00443{left:505.920000px;}
.x41_c00443{left:507.000000px;}
.x95_c00443{left:508.920000px;}
.xfb_c00443{left:510.420000px;}
.xde_c00443{left:511.500000px;}
.x104_c00443{left:513.420000px;}
.x110_c00443{left:514.500000px;}
.xe9_c00443{left:517.500000px;}
.x100_c00443{left:519.000000px;}
.x42_c00443{left:520.500000px;}
.xf0_c00443{left:523.920000px;}
.xb0_c00443{left:525.000000px;}
.x8f_c00443{left:526.500000px;}
.xdf_c00443{left:527.580000px;}
.x9d_c00443{left:529.920000px;}
.x1e_c00443{left:532.500000px;}
.x96_c00443{left:537.000000px;}
.xc0_c00443{left:540.000000px;}
.x84_c00443{left:541.080000px;}
.xf8_c00443{left:543.000000px;}
.xe_c00443{left:547.080000px;}
.xf1_c00443{left:550.500000px;}
.xbd_c00443{left:552.000000px;}
.x2a_c00443{left:553.920000px;}
.xba_c00443{left:555.000000px;}
.x105_c00443{left:557.580000px;}
.xf_c00443{left:565.500000px;}
.x58_c00443{left:567.000000px;}
.x61_c00443{left:568.500000px;}
.xe4_c00443{left:569.580000px;}
.x85_c00443{left:571.080000px;}
.x1f_c00443{left:572.580000px;}
.xc1_c00443{left:574.920000px;}
.x106_c00443{left:576.420000px;}
.x43_c00443{left:579.420000px;}
.x71_c00443{left:580.500000px;}
.xeb_c00443{left:582.000000px;}
.xf9_c00443{left:585.420000px;}
.xf2_c00443{left:588.420000px;}
.x86_c00443{left:589.920000px;}
.x10_c00443{left:592.920000px;}
.xb1_c00443{left:594.000000px;}
.x59_c00443{left:595.500000px;}
.x72_c00443{left:597.420000px;}
.xd7_c00443{left:598.920000px;}
.xea_c00443{left:600.000000px;}
.xa3_c00443{left:601.500000px;}
.x97_c00443{left:604.500000px;}
.x10d_c00443{left:606.000000px;}
.x2b_c00443{left:607.080000px;}
.x7b_c00443{left:610.080000px;}
.x44_c00443{left:612.420000px;}
.x35_c00443{left:613.500000px;}
.x87_c00443{left:616.500000px;}
.x11_c00443{left:619.080000px;}
.xe0_c00443{left:620.580000px;}
.x62_c00443{left:624.000000px;}
.xbe_c00443{left:625.500000px;}
.x7c_c00443{left:628.920000px;}
.x111_c00443{left:631.080000px;}
.xd1_c00443{left:634.500000px;}
.x20_c00443{left:636.000000px;}
.x10a_c00443{left:638.145000px;}
.x9e_c00443{left:640.920000px;}
.x73_c00443{left:642.000000px;}
.x45_c00443{left:643.080000px;}
.xd8_c00443{left:645.000000px;}
.x2c_c00443{left:646.920000px;}
.x107_c00443{left:649.080000px;}
.xe7_c00443{left:650.580000px;}
.xfc_c00443{left:653.580000px;}
.x7d_c00443{left:655.500000px;}
.x98_c00443{left:658.080000px;}
.x36_c00443{left:660.000000px;}
.x46_c00443{left:661.920000px;}
.xd9_c00443{left:664.080000px;}
.x88_c00443{left:665.580000px;}
.xf3_c00443{left:667.500000px;}
.xb4_c00443{left:669.000000px;}
.x10b_c00443{left:670.920000px;}
.x12_c00443{left:672.420000px;}
.xec_c00443{left:674.580000px;}
.x5a_c00443{left:676.080000px;}
.x37_c00443{left:678.000000px;}
.xc9_c00443{left:680.580000px;}
.xb5_c00443{left:684.000000px;}
.xd2_c00443{left:685.920000px;}
.xa8_c00443{left:689.580000px;}
.x21_c00443{left:691.920000px;}
.x74_c00443{left:694.080000px;}
.x47_c00443{left:696.000000px;}
.x13_c00443{left:699.000000px;}
.xfd_c00443{left:703.275000px;}
.x2d_c00443{left:704.580000px;}
.x5b_c00443{left:706.500000px;}
.xda_c00443{left:708.420000px;}
.x63_c00443{left:709.920000px;}
.xca_c00443{left:714.000000px;}
.x22_c00443{left:715.500000px;}
.xfa_c00443{left:720.000000px;}
@media print{
.v2_c00443{vertical-align:-6.880000pt;}
.v0_c00443{vertical-align:0.000000pt;}
.v1_c00443{vertical-align:16.000000pt;}
.ls0_c00443{letter-spacing:0.000000pt;}
.ws3_c00443{word-spacing:-15.012693pt;}
.ws2_c00443{word-spacing:-8.192542pt;}
.ws0_c00443{word-spacing:-7.714337pt;}
.ws1_c00443{word-spacing:-0.292053pt;}
.ws4_c00443{word-spacing:0.000000pt;}
._0_c00443{width:5.797930pt;}
.fs7_c00443{font-size:3.040000pt;}
.fs2_c00443{font-size:16.640000pt;}
.fs0_c00443{font-size:18.133333pt;}
.fs3_c00443{font-size:22.666667pt;}
.fs1_c00443{font-size:25.706667pt;}
.fs5_c00443{font-size:28.746667pt;}
.fs6_c00443{font-size:31.733333pt;}
.fs4_c00443{font-size:34.773333pt;}
.y0_c00443{bottom:0.000000pt;}
.yd1_c00443{bottom:225.106667pt;}
.ycd_c00443{bottom:225.893333pt;}
.ycf_c00443{bottom:226.066667pt;}
.ycc_c00443{bottom:226.640000pt;}
.yd0_c00443{bottom:227.026667pt;}
.yce_c00443{bottom:227.973333pt;}
.yc9_c00443{bottom:242.440000pt;}
.yca_c00443{bottom:244.360000pt;}
.ycb_c00443{bottom:244.560000pt;}
.yc6_c00443{bottom:259.400000pt;}
.yc2_c00443{bottom:259.773333pt;}
.yc5_c00443{bottom:260.733333pt;}
.yc7_c00443{bottom:261.306667pt;}
.yc4_c00443{bottom:261.693333pt;}
.yc8_c00443{bottom:261.893333pt;}
.yc3_c00443{bottom:262.640000pt;}
.ybb_c00443{bottom:276.160000pt;}
.ybe_c00443{bottom:276.360000pt;}
.ybd_c00443{bottom:277.106667pt;}
.ybc_c00443{bottom:278.066667pt;}
.yc1_c00443{bottom:278.440000pt;}
.ybf_c00443{bottom:279.026667pt;}
.yc0_c00443{bottom:279.973333pt;}
.yba_c00443{bottom:293.693333pt;}
.yb7_c00443{bottom:294.440000pt;}
.yb8_c00443{bottom:295.773333pt;}
.yb6_c00443{bottom:296.360000pt;}
.yb9_c00443{bottom:297.693333pt;}
.yaf_c00443{bottom:311.026667pt;}
.yb2_c00443{bottom:311.773333pt;}
.yb5_c00443{bottom:311.973333pt;}
.yb1_c00443{bottom:313.106667pt;}
.yb3_c00443{bottom:313.893333pt;}
.yb4_c00443{bottom:314.066667pt;}
.yb0_c00443{bottom:315.026667pt;}
.yac_c00443{bottom:330.440000pt;}
.yae_c00443{bottom:331.973333pt;}
.yad_c00443{bottom:332.360000pt;}
.ya6_c00443{bottom:346.066667pt;}
.yaa_c00443{bottom:347.026667pt;}
.ya5_c00443{bottom:347.773333pt;}
.yab_c00443{bottom:348.560000pt;}
.ya7_c00443{bottom:349.693333pt;}
.ya8_c00443{bottom:349.893333pt;}
.ya9_c00443{bottom:350.640000pt;}
.ya2_c00443{bottom:365.106667pt;}
.ya4_c00443{bottom:365.306667pt;}
.ya1_c00443{bottom:367.026667pt;}
.ya3_c00443{bottom:367.973333pt;}
.y9f_c00443{bottom:382.066667pt;}
.y9e_c00443{bottom:382.640000pt;}
.y9c_c00443{bottom:382.826667pt;}
.y9d_c00443{bottom:383.773333pt;}
.y9a_c00443{bottom:384.360000pt;}
.y9b_c00443{bottom:385.306667pt;}
.ya0_c00443{bottom:385.693333pt;}
.y96_c00443{bottom:399.773333pt;}
.y94_c00443{bottom:400.360000pt;}
.y97_c00443{bottom:401.106667pt;}
.y98_c00443{bottom:401.693333pt;}
.y93_c00443{bottom:401.893333pt;}
.y99_c00443{bottom:402.640000pt;}
.y95_c00443{bottom:403.026667pt;}
.y92_c00443{bottom:417.106667pt;}
.y8f_c00443{bottom:417.693333pt;}
.y90_c00443{bottom:418.440000pt;}
.y91_c00443{bottom:419.226667pt;}
.y8e_c00443{bottom:420.360000pt;}
.y8d_c00443{bottom:435.773333pt;}
.y8b_c00443{bottom:436.733333pt;}
.y8c_c00443{bottom:437.693333pt;}
.y8a_c00443{bottom:452.160000pt;}
.y89_c00443{bottom:455.026667pt;}
.y88_c00443{bottom:455.226667pt;}
.y87_c00443{bottom:470.440000pt;}
.y86_c00443{bottom:472.360000pt;}
.y80_c00443{bottom:487.773333pt;}
.y82_c00443{bottom:489.106667pt;}
.y7f_c00443{bottom:489.306667pt;}
.y83_c00443{bottom:489.693333pt;}
.y84_c00443{bottom:489.893333pt;}
.y85_c00443{bottom:490.640000pt;}
.y81_c00443{bottom:491.026667pt;}
.y7c_c00443{bottom:506.440000pt;}
.y7a_c00443{bottom:507.026667pt;}
.y7b_c00443{bottom:507.226667pt;}
.y7e_c00443{bottom:507.973333pt;}
.y7d_c00443{bottom:508.360000pt;}
.y77_c00443{bottom:521.693333pt;}
.y78_c00443{bottom:523.773333pt;}
.y75_c00443{bottom:524.360000pt;}
.y79_c00443{bottom:524.560000pt;}
.y76_c00443{bottom:525.693333pt;}
.y74_c00443{bottom:539.973333pt;}
.y73_c00443{bottom:541.106667pt;}
.y70_c00443{bottom:541.693333pt;}
.y72_c00443{bottom:541.893333pt;}
.y71_c00443{bottom:543.026667pt;}
.y6f_c00443{bottom:557.106667pt;}
.y6c_c00443{bottom:558.440000pt;}
.y6a_c00443{bottom:559.026667pt;}
.y6d_c00443{bottom:559.226667pt;}
.y6b_c00443{bottom:559.973333pt;}
.y6e_c00443{bottom:560.360000pt;}
.y68_c00443{bottom:575.773333pt;}
.y69_c00443{bottom:576.560000pt;}
.y66_c00443{bottom:577.693333pt;}
.y67_c00443{bottom:577.706667pt;}
.y60_c00443{bottom:591.773333pt;}
.y63_c00443{bottom:593.106667pt;}
.y64_c00443{bottom:594.066667pt;}
.y62_c00443{bottom:595.026667pt;}
.y65_c00443{bottom:595.226667pt;}
.y61_c00443{bottom:595.973333pt;}
.y5f_c00443{bottom:610.440000pt;}
.y5d_c00443{bottom:612.360000pt;}
.y5e_c00443{bottom:613.306667pt;}
.y59_c00443{bottom:627.026667pt;}
.y5c_c00443{bottom:627.773333pt;}
.y58_c00443{bottom:629.693333pt;}
.y5a_c00443{bottom:629.893333pt;}
.y5b_c00443{bottom:630.640000pt;}
.y54_c00443{bottom:646.066667pt;}
.y57_c00443{bottom:646.440000pt;}
.y55_c00443{bottom:647.026667pt;}
.y53_c00443{bottom:647.226667pt;}
.y56_c00443{bottom:647.973333pt;}
.y52_c00443{bottom:662.440000pt;}
.y4f_c00443{bottom:662.826667pt;}
.y4c_c00443{bottom:663.026667pt;}
.y51_c00443{bottom:663.773333pt;}
.y4b_c00443{bottom:664.360000pt;}
.y4e_c00443{bottom:664.560000pt;}
.y4d_c00443{bottom:665.306667pt;}
.y50_c00443{bottom:665.693333pt;}
.y4a_c00443{bottom:679.026667pt;}
.y49_c00443{bottom:681.106667pt;}
.y46_c00443{bottom:682.640000pt;}
.y47_c00443{bottom:683.026667pt;}
.y48_c00443{bottom:683.973333pt;}
.y41_c00443{bottom:696.360000pt;}
.y43_c00443{bottom:698.440000pt;}
.y45_c00443{bottom:699.226667pt;}
.y44_c00443{bottom:699.973333pt;}
.y42_c00443{bottom:700.360000pt;}
.y3f_c00443{bottom:715.773333pt;}
.y3e_c00443{bottom:717.693333pt;}
.y40_c00443{bottom:718.640000pt;}
.y3b_c00443{bottom:733.106667pt;}
.y3c_c00443{bottom:734.066667pt;}
.y3a_c00443{bottom:735.026667pt;}
.y3d_c00443{bottom:735.226667pt;}
.y37_c00443{bottom:749.693333pt;}
.y36_c00443{bottom:750.440000pt;}
.y39_c00443{bottom:751.773333pt;}
.y35_c00443{bottom:752.360000pt;}
.y38_c00443{bottom:753.306667pt;}
.y31_c00443{bottom:767.026667pt;}
.y2f_c00443{bottom:767.773333pt;}
.y33_c00443{bottom:769.106667pt;}
.y2e_c00443{bottom:769.693333pt;}
.y32_c00443{bottom:770.066667pt;}
.y34_c00443{bottom:770.640000pt;}
.y30_c00443{bottom:771.026667pt;}
.y2d_c00443{bottom:784.360000pt;}
.y2a_c00443{bottom:785.106667pt;}
.y2c_c00443{bottom:786.440000pt;}
.y29_c00443{bottom:788.360000pt;}
.y2b_c00443{bottom:789.306667pt;}
.y27_c00443{bottom:804.360000pt;}
.y28_c00443{bottom:805.693333pt;}
.y21_c00443{bottom:821.106667pt;}
.y24_c00443{bottom:821.893333pt;}
.y25_c00443{bottom:822.066667pt;}
.y26_c00443{bottom:822.640000pt;}
.y23_c00443{bottom:823.026667pt;}
.y22_c00443{bottom:823.973333pt;}
.y1f_c00443{bottom:838.440000pt;}
.y1e_c00443{bottom:839.226667pt;}
.y20_c00443{bottom:839.400000pt;}
.y1d_c00443{bottom:840.360000pt;}
.y1c_c00443{bottom:855.026667pt;}
.y1b_c00443{bottom:857.306667pt;}
.y19_c00443{bottom:857.693333pt;}
.y1a_c00443{bottom:857.893333pt;}
.y14_c00443{bottom:873.106667pt;}
.y17_c00443{bottom:874.640000pt;}
.y16_c00443{bottom:875.026667pt;}
.y18_c00443{bottom:875.226667pt;}
.y15_c00443{bottom:875.973333pt;}
.y10_c00443{bottom:890.440000pt;}
.y12_c00443{bottom:891.400000pt;}
.y11_c00443{bottom:892.360000pt;}
.y13_c00443{bottom:893.306667pt;}
.yf_c00443{bottom:907.773333pt;}
.ye_c00443{bottom:909.693333pt;}
.yd_c00443{bottom:909.893333pt;}
.yc_c00443{bottom:910.640000pt;}
.y8_c00443{bottom:924.160000pt;}
.ya_c00443{bottom:925.106667pt;}
.y9_c00443{bottom:926.066667pt;}
.y7_c00443{bottom:927.026667pt;}
.yb_c00443{bottom:927.226667pt;}
.y3_c00443{bottom:944.360000pt;}
.y4_c00443{bottom:944.560000pt;}
.y6_c00443{bottom:945.306667pt;}
.y5_c00443{bottom:945.693333pt;}
.y2_c00443{bottom:976.360000pt;}
.y1_c00443{bottom:979.600000pt;}
.h9_c00443{height:3.739141pt;}
.h3_c00443{height:20.466875pt;}
.h1_c00443{height:22.303646pt;}
.h4_c00443{height:27.879557pt;}
.h2_c00443{height:31.618698pt;}
.h6_c00443{height:35.357839pt;}
.h7_c00443{height:39.031380pt;}
.h5_c00443{height:42.770521pt;}
.h8_c00443{height:47.618698pt;}
.h0_c00443{height:1186.666667pt;}
.w0_c00443{width:782.666667pt;}
.x0_c00443{left:0.000000pt;}
.x10e_c00443{left:133.333333pt;}
.x2_c00443{left:134.666667pt;}
.xa9_c00443{left:136.000000pt;}
.x14_c00443{left:148.373333pt;}
.x4e_c00443{left:149.333333pt;}
.x89_c00443{left:150.666667pt;}
.x75_c00443{left:153.706667pt;}
.x38_c00443{left:154.666667pt;}
.xc7_c00443{left:156.000000pt;}
.xe8_c00443{left:156.960000pt;}
.xaa_c00443{left:158.093333pt;}
.x23_c00443{left:161.333333pt;}
.xf4_c00443{left:162.666667pt;}
.x108_c00443{left:164.000000pt;}
.xad_c00443{left:165.333333pt;}
.x112_c00443{left:166.666667pt;}
.x3_c00443{left:167.626667pt;}
.xdb_c00443{left:169.333333pt;}
.x9f_c00443{left:170.293333pt;}
.x90_c00443{left:172.000000pt;}
.x48_c00443{left:173.333333pt;}
.x64_c00443{left:175.040000pt;}
.xa4_c00443{left:176.373333pt;}
.x39_c00443{left:177.333333pt;}
.xb6_c00443{left:178.666667pt;}
.xe5_c00443{left:180.960000pt;}
.x4_c00443{left:184.373333pt;}
.xed_c00443{left:186.293333pt;}
.x7e_c00443{left:188.000000pt;}
.x4f_c00443{left:189.333333pt;}
.xa0_c00443{left:190.293333pt;}
.xfe_c00443{left:192.373333pt;}
.xb2_c00443{left:193.333333pt;}
.x5c_c00443{left:194.666667pt;}
.x65_c00443{left:196.960000pt;}
.x69_c00443{left:199.040000pt;}
.x24_c00443{left:200.000000pt;}
.x15_c00443{left:201.706667pt;}
.xcb_c00443{left:204.000000pt;}
.x5_c00443{left:208.373333pt;}
.xe1_c00443{left:209.706667pt;}
.x5d_c00443{left:211.040000pt;}
.x50_c00443{left:212.000000pt;}
.x66_c00443{left:213.706667pt;}
.xc2_c00443{left:214.666667pt;}
.x2e_c00443{left:216.000000pt;}
.xae_c00443{left:219.040000pt;}
.x113_c00443{left:220.000000pt;}
.x109_c00443{left:222.466667pt;}
.x3a_c00443{left:224.000000pt;}
.x16_c00443{left:225.333333pt;}
.x49_c00443{left:227.626667pt;}
.x25_c00443{left:229.706667pt;}
.xcc_c00443{left:230.666667pt;}
.x2f_c00443{left:232.000000pt;}
.xa5_c00443{left:233.333333pt;}
.x6_c00443{left:234.666667pt;}
.x7f_c00443{left:235.626667pt;}
.x67_c00443{left:237.706667pt;}
.xab_c00443{left:238.666667pt;}
.x3b_c00443{left:240.373333pt;}
.x51_c00443{left:243.040000pt;}
.x99_c00443{left:245.706667pt;}
.x76_c00443{left:247.040000pt;}
.x101_c00443{left:248.000000pt;}
.xe2_c00443{left:249.333333pt;}
.x80_c00443{left:252.373333pt;}
.xd3_c00443{left:255.040000pt;}
.x26_c00443{left:256.000000pt;}
.x6a_c00443{left:257.706667pt;}
.x7_c00443{left:258.666667pt;}
.xc3_c00443{left:262.666667pt;}
.x17_c00443{left:264.000000pt;}
.x4a_c00443{left:266.293333pt;}
.x3c_c00443{left:270.293333pt;}
.x27_c00443{left:272.373333pt;}
.xa6_c00443{left:273.333333pt;}
.xb7_c00443{left:274.666667pt;}
.x4b_c00443{left:276.000000pt;}
.x52_c00443{left:278.666667pt;}
.x91_c00443{left:279.626667pt;}
.x9a_c00443{left:281.333333pt;}
.xee_c00443{left:283.040000pt;}
.xc8_c00443{left:284.373333pt;}
.x68_c00443{left:285.333333pt;}
.x30_c00443{left:287.040000pt;}
.xcd_c00443{left:288.373333pt;}
.xbf_c00443{left:290.666667pt;}
.x4c_c00443{left:292.373333pt;}
.x6b_c00443{left:293.333333pt;}
.xe3_c00443{left:294.666667pt;}
.xd4_c00443{left:300.000000pt;}
.xf5_c00443{left:301.333333pt;}
.x8_c00443{left:302.666667pt;}
.x8a_c00443{left:304.000000pt;}
.xc4_c00443{left:305.333333pt;}
.x18_c00443{left:306.293333pt;}
.x6c_c00443{left:308.000000pt;}
.x4d_c00443{left:309.333333pt;}
.x3d_c00443{left:310.666667pt;}
.x92_c00443{left:311.626667pt;}
.x77_c00443{left:314.666667pt;}
.xdc_c00443{left:316.373333pt;}
.xaf_c00443{left:317.333333pt;}
.xac_c00443{left:319.040000pt;}
.x6d_c00443{left:321.333333pt;}
.x19_c00443{left:324.373333pt;}
.xce_c00443{left:326.666667pt;}
.xf6_c00443{left:328.000000pt;}
.x5e_c00443{left:329.333333pt;}
.x9_c00443{left:330.293333pt;}
.x31_c00443{left:334.666667pt;}
.x6e_c00443{left:336.000000pt;}
.x53_c00443{left:338.666667pt;}
.x28_c00443{left:339.626667pt;}
.xd5_c00443{left:342.293333pt;}
.x102_c00443{left:344.373333pt;}
.x81_c00443{left:345.333333pt;}
.x1a_c00443{left:348.373333pt;}
.x3e_c00443{left:349.333333pt;}
.xb3_c00443{left:350.666667pt;}
.x6f_c00443{left:352.000000pt;}
.xf7_c00443{left:353.706667pt;}
.x78_c00443{left:354.666667pt;}
.xc5_c00443{left:356.000000pt;}
.x54_c00443{left:356.960000pt;}
.x93_c00443{left:358.293333pt;}
.xcf_c00443{left:359.626667pt;}
.xa_c00443{left:360.960000pt;}
.x1_c00443{left:362.666667pt;}
.x70_c00443{left:365.333333pt;}
.x8b_c00443{left:366.666667pt;}
.xef_c00443{left:368.000000pt;}
.xff_c00443{left:369.333333pt;}
.xc6_c00443{left:372.000000pt;}
.xbb_c00443{left:373.706667pt;}
.x9b_c00443{left:375.040000pt;}
.xb_c00443{left:377.706667pt;}
.xb8_c00443{left:379.040000pt;}
.x32_c00443{left:380.000000pt;}
.xa7_c00443{left:381.333333pt;}
.x114_c00443{left:382.293333pt;}
.xd6_c00443{left:383.240000pt;}
.x8c_c00443{left:385.333333pt;}
.x55_c00443{left:389.333333pt;}
.xbc_c00443{left:391.040000pt;}
.x103_c00443{left:393.706667pt;}
.x82_c00443{left:394.666667pt;}
.x1b_c00443{left:396.000000pt;}
.x33_c00443{left:397.333333pt;}
.x9c_c00443{left:398.666667pt;}
.xc_c00443{left:401.333333pt;}
.x3f_c00443{left:402.293333pt;}
.xb9_c00443{left:404.000000pt;}
.x10c_c00443{left:405.333333pt;}
.x5f_c00443{left:412.000000pt;}
.xdd_c00443{left:414.666667pt;}
.xe6_c00443{left:416.000000pt;}
.xa1_c00443{left:417.333333pt;}
.x34_c00443{left:418.293333pt;}
.x56_c00443{left:421.333333pt;}
.x83_c00443{left:422.666667pt;}
.x8d_c00443{left:425.333333pt;}
.x10f_c00443{left:427.040000pt;}
.x29_c00443{left:428.000000pt;}
.x79_c00443{left:429.333333pt;}
.xd0_c00443{left:430.666667pt;}
.x1c_c00443{left:431.626667pt;}
.x40_c00443{left:434.666667pt;}
.x94_c00443{left:435.626667pt;}
.xd_c00443{left:438.666667pt;}
.x60_c00443{left:441.333333pt;}
.x7a_c00443{left:442.293333pt;}
.x8e_c00443{left:444.373333pt;}
.x57_c00443{left:445.333333pt;}
.xa2_c00443{left:447.040000pt;}
.x1d_c00443{left:449.706667pt;}
.x41_c00443{left:450.666667pt;}
.x95_c00443{left:452.373333pt;}
.xfb_c00443{left:453.706667pt;}
.xde_c00443{left:454.666667pt;}
.x104_c00443{left:456.373333pt;}
.x110_c00443{left:457.333333pt;}
.xe9_c00443{left:460.000000pt;}
.x100_c00443{left:461.333333pt;}
.x42_c00443{left:462.666667pt;}
.xf0_c00443{left:465.706667pt;}
.xb0_c00443{left:466.666667pt;}
.x8f_c00443{left:468.000000pt;}
.xdf_c00443{left:468.960000pt;}
.x9d_c00443{left:471.040000pt;}
.x1e_c00443{left:473.333333pt;}
.x96_c00443{left:477.333333pt;}
.xc0_c00443{left:480.000000pt;}
.x84_c00443{left:480.960000pt;}
.xf8_c00443{left:482.666667pt;}
.xe_c00443{left:486.293333pt;}
.xf1_c00443{left:489.333333pt;}
.xbd_c00443{left:490.666667pt;}
.x2a_c00443{left:492.373333pt;}
.xba_c00443{left:493.333333pt;}
.x105_c00443{left:495.626667pt;}
.xf_c00443{left:502.666667pt;}
.x58_c00443{left:504.000000pt;}
.x61_c00443{left:505.333333pt;}
.xe4_c00443{left:506.293333pt;}
.x85_c00443{left:507.626667pt;}
.x1f_c00443{left:508.960000pt;}
.xc1_c00443{left:511.040000pt;}
.x106_c00443{left:512.373333pt;}
.x43_c00443{left:515.040000pt;}
.x71_c00443{left:516.000000pt;}
.xeb_c00443{left:517.333333pt;}
.xf9_c00443{left:520.373333pt;}
.xf2_c00443{left:523.040000pt;}
.x86_c00443{left:524.373333pt;}
.x10_c00443{left:527.040000pt;}
.xb1_c00443{left:528.000000pt;}
.x59_c00443{left:529.333333pt;}
.x72_c00443{left:531.040000pt;}
.xd7_c00443{left:532.373333pt;}
.xea_c00443{left:533.333333pt;}
.xa3_c00443{left:534.666667pt;}
.x97_c00443{left:537.333333pt;}
.x10d_c00443{left:538.666667pt;}
.x2b_c00443{left:539.626667pt;}
.x7b_c00443{left:542.293333pt;}
.x44_c00443{left:544.373333pt;}
.x35_c00443{left:545.333333pt;}
.x87_c00443{left:548.000000pt;}
.x11_c00443{left:550.293333pt;}
.xe0_c00443{left:551.626667pt;}
.x62_c00443{left:554.666667pt;}
.xbe_c00443{left:556.000000pt;}
.x7c_c00443{left:559.040000pt;}
.x111_c00443{left:560.960000pt;}
.xd1_c00443{left:564.000000pt;}
.x20_c00443{left:565.333333pt;}
.x10a_c00443{left:567.240000pt;}
.x9e_c00443{left:569.706667pt;}
.x73_c00443{left:570.666667pt;}
.x45_c00443{left:571.626667pt;}
.xd8_c00443{left:573.333333pt;}
.x2c_c00443{left:575.040000pt;}
.x107_c00443{left:576.960000pt;}
.xe7_c00443{left:578.293333pt;}
.xfc_c00443{left:580.960000pt;}
.x7d_c00443{left:582.666667pt;}
.x98_c00443{left:584.960000pt;}
.x36_c00443{left:586.666667pt;}
.x46_c00443{left:588.373333pt;}
.xd9_c00443{left:590.293333pt;}
.x88_c00443{left:591.626667pt;}
.xf3_c00443{left:593.333333pt;}
.xb4_c00443{left:594.666667pt;}
.x10b_c00443{left:596.373333pt;}
.x12_c00443{left:597.706667pt;}
.xec_c00443{left:599.626667pt;}
.x5a_c00443{left:600.960000pt;}
.x37_c00443{left:602.666667pt;}
.xc9_c00443{left:604.960000pt;}
.xb5_c00443{left:608.000000pt;}
.xd2_c00443{left:609.706667pt;}
.xa8_c00443{left:612.960000pt;}
.x21_c00443{left:615.040000pt;}
.x74_c00443{left:616.960000pt;}
.x47_c00443{left:618.666667pt;}
.x13_c00443{left:621.333333pt;}
.xfd_c00443{left:625.133333pt;}
.x2d_c00443{left:626.293333pt;}
.x5b_c00443{left:628.000000pt;}
.xda_c00443{left:629.706667pt;}
.x63_c00443{left:631.040000pt;}
.xca_c00443{left:634.666667pt;}
.x22_c00443{left:636.000000pt;}
.xfa_c00443{left:640.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_9bec11f090e99ece4e8873e1.woff2')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mfe_c00444{transform:matrix(0.291765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291765,0.000000,0.000000,0.250000,0,0);}
.m84_c00444{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.mb_c00444{transform:matrix(0.340249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340249,0.000000,0.000000,0.250000,0,0);}
.m24_c00444{transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);}
.m9c_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);}
.mb8_c00444{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.me6_c00444{transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);}
.maa_c00444{transform:matrix(0.360429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360429,0.000000,0.000000,0.250000,0,0);}
.m4c_c00444{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m7_c00444{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m92_c00444{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.mdd_c00444{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m66_c00444{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.med_c00444{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.mac_c00444{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m44_c00444{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m7f_c00444{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m8b_c00444{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m41_c00444{transform:matrix(0.384202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384202,0.000000,0.000000,0.250000,0,0);}
.m3e_c00444{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m93_c00444{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m3d_c00444{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.m36_c00444{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.me1_c00444{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m7e_c00444{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m101_c00444{transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);}
.m35_c00444{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m82_c00444{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.md1_c00444{transform:matrix(0.394710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394710,0.000000,0.000000,0.250000,0,0);}
.mf5_c00444{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m8e_c00444{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m46_c00444{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m6b_c00444{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m58_c00444{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.mf3_c00444{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.mbd_c00444{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m5f_c00444{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.m6_c00444{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mda_c00444{transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);}
.m104_c00444{transform:matrix(0.403525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403525,0.000000,0.000000,0.250000,0,0);}
.m40_c00444{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m4a_c00444{transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);}
.m32_c00444{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m1b_c00444{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.ma_c00444{transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);}
.m15_c00444{transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);}
.m37_c00444{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m10_c00444{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.mc_c00444{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.m70_c00444{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m76_c00444{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mc2_c00444{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.ma9_c00444{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m107_c00444{transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);}
.mf_c00444{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.mcc_c00444{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m50_c00444{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m26_c00444{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m3f_c00444{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.ma7_c00444{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m83_c00444{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m75_c00444{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.ma8_c00444{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.mbb_c00444{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.me5_c00444{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.mdf_c00444{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m96_c00444{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m57_c00444{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m95_c00444{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m9a_c00444{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m5d_c00444{transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);}
.m7d_c00444{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m1c_c00444{transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);}
.m3a_c00444{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m60_c00444{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.mb2_c00444{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.md0_c00444{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m89_c00444{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.mc3_c00444{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mfc_c00444{transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);}
.m1f_c00444{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m27_c00444{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m34_c00444{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m12_c00444{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.mf4_c00444{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.md2_c00444{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m106_c00444{transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);}
.mf9_c00444{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m45_c00444{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m2e_c00444{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m7b_c00444{transform:matrix(0.444341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444341,0.000000,0.000000,0.250000,0,0);}
.m94_c00444{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m1e_c00444{transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);}
.m2_c00444{transform:matrix(0.446324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446324,0.000000,0.000000,0.250000,0,0);}
.m103_c00444{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m18_c00444{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.ma3_c00444{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.mcd_c00444{transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);}
.m61_c00444{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m19_c00444{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mad_c00444{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m86_c00444{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.m8_c00444{transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);}
.mc6_c00444{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m21_c00444{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m105_c00444{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.m3_c00444{transform:matrix(0.470168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470168,0.000000,0.000000,0.250000,0,0);}
.mc9_c00444{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mab_c00444{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.ma2_c00444{transform:matrix(0.473109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473109,0.000000,0.000000,0.250000,0,0);}
.m11_c00444{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.ma0_c00444{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.me2_c00444{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m8d_c00444{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.md6_c00444{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.me_c00444{transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);}
.m5a_c00444{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m5c_c00444{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m64_c00444{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.mee_c00444{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.ma4_c00444{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.maf_c00444{transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);}
.md_c00444{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mbf_c00444{transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);}
.m23_c00444{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.ma6_c00444{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mfa_c00444{transform:matrix(0.490588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490588,0.000000,0.000000,0.250000,0,0);}
.m0_c00444{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mcb_c00444{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m5e_c00444{transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);}
.m4b_c00444{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mf7_c00444{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m3c_c00444{transform:matrix(0.494898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494898,0.000000,0.000000,0.250000,0,0);}
.me8_c00444{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m2f_c00444{transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);}
.m9f_c00444{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m9_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);}
.mbc_c00444{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mf0_c00444{transform:matrix(0.505882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505882,0.000000,0.000000,0.250000,0,0);}
.m8c_c00444{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.mdb_c00444{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.mf1_c00444{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.mf6_c00444{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m47_c00444{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m73_c00444{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.md3_c00444{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.mb0_c00444{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m3b_c00444{transform:matrix(0.511176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511176,0.000000,0.000000,0.250000,0,0);}
.m69_c00444{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m53_c00444{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m102_c00444{transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);}
.me4_c00444{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.mc5_c00444{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mba_c00444{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m8f_c00444{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m72_c00444{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m6a_c00444{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m39_c00444{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m7c_c00444{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m6f_c00444{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m77_c00444{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m9e_c00444{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mf2_c00444{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.me0_c00444{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_c00444{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.me3_c00444{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m9d_c00444{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mc7_c00444{transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);}
.m8a_c00444{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m52_c00444{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m6d_c00444{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m2d_c00444{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m38_c00444{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mc4_c00444{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m74_c00444{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mdc_c00444{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m65_c00444{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m55_c00444{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mc8_c00444{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m68_c00444{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m2a_c00444{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.ma5_c00444{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.me9_c00444{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m1d_c00444{transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);}
.m108_c00444{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m91_c00444{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m42_c00444{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m31_c00444{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m17_c00444{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m79_c00444{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m88_c00444{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m80_c00444{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mb1_c00444{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m71_c00444{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m5b_c00444{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m97_c00444{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m63_c00444{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m6c_c00444{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mea_c00444{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.mbe_c00444{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m56_c00444{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.mef_c00444{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.m98_c00444{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mfd_c00444{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mf8_c00444{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.m90_c00444{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m4f_c00444{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m48_c00444{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.mca_c00444{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);}
.m51_c00444{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m4d_c00444{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.ma1_c00444{transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);}
.m25_c00444{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m4e_c00444{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.md4_c00444{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m85_c00444{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m2b_c00444{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m29_c00444{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mc1_c00444{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.mfb_c00444{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m99_c00444{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m59_c00444{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m16_c00444{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m30_c00444{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mcf_c00444{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.mec_c00444{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m54_c00444{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.me7_c00444{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m49_c00444{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_c00444{transform:matrix(0.603734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603734,0.000000,0.000000,0.250000,0,0);}
.m62_c00444{transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);}
.mb4_c00444{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m87_c00444{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m6e_c00444{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mff_c00444{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m5_c00444{transform:matrix(0.621888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621888,0.000000,0.000000,0.250000,0,0);}
.m20_c00444{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_c00444{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mce_c00444{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.mde_c00444{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m78_c00444{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.md8_c00444{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m100_c00444{transform:matrix(0.642628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642628,0.000000,0.000000,0.250000,0,0);}
.md7_c00444{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m1a_c00444{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.meb_c00444{transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);}
.m2c_c00444{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.md5_c00444{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m22_c00444{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.m14_c00444{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m1_c00444{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.md9_c00444{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);}
.m9b_c00444{transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);}
.m67_c00444{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.mb6_c00444{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m7a_c00444{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mb3_c00444{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m81_c00444{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m43_c00444{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.mae_c00444{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mb7_c00444{transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);}
.mb5_c00444{transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);}
.m13_c00444{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m33_c00444{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m28_c00444{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00444{vertical-align:-4.320000px;}
.v0_c00444{vertical-align:0.000000px;}
.v4_c00444{vertical-align:1.680000px;}
.v3_c00444{vertical-align:6.000000px;}
.v2_c00444{vertical-align:13.680000px;}
.ls2_c00444{letter-spacing:0.000000px;}
.ls1_c00444{letter-spacing:11.817600px;}
.ls0_c00444{letter-spacing:12.657600px;}
.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;}
}
.ws2_c00444{word-spacing:-14.892000px;}
.ws0_c00444{word-spacing:-7.448345px;}
.ws1_c00444{word-spacing:-6.425697px;}
.ws4_c00444{word-spacing:-3.199200px;}
.ws3_c00444{word-spacing:-3.015319px;}
.ws6_c00444{word-spacing:-1.855200px;}
.ws5_c00444{word-spacing:-0.308400px;}
.ws7_c00444{word-spacing:0.000000px;}
._0_c00444{width:6.021000px;}
.fc0_c00444{color:transparent;}
.fs7_c00444{font-size:3.420000px;}
.fs6_c00444{font-size:13.620000px;}
.fs1_c00444{font-size:18.720000px;}
.fs2_c00444{font-size:20.400000px;}
.fs5_c00444{font-size:25.500000px;}
.fs0_c00444{font-size:28.920000px;}
.fs4_c00444{font-size:32.340000px;}
.fs3_c00444{font-size:35.700000px;}
.fs8_c00444{font-size:39.120000px;}
.y0_c00444{bottom:0.000000px;}
.y3_c00444{bottom:232.050000px;}
.yd7_c00444{bottom:254.325000px;}
.yd5_c00444{bottom:254.550000px;}
.yd6_c00444{bottom:256.470000px;}
.yd2_c00444{bottom:268.470000px;}
.yd0_c00444{bottom:269.325000px;}
.yd3_c00444{bottom:270.405000px;}
.yd4_c00444{bottom:270.630000px;}
.yd1_c00444{bottom:271.470000px;}
.ycf_c00444{bottom:272.550000px;}
.ycd_c00444{bottom:284.325000px;}
.yce_c00444{bottom:284.550000px;}
.ycc_c00444{bottom:285.405000px;}
.ycb_c00444{bottom:286.470000px;}
.yc7_c00444{bottom:298.470000px;}
.yc8_c00444{bottom:299.325000px;}
.yc4_c00444{bottom:299.550000px;}
.yca_c00444{bottom:300.405000px;}
.yc5_c00444{bottom:300.630000px;}
.yc9_c00444{bottom:301.050000px;}
.yc6_c00444{bottom:301.470000px;}
.ybe_c00444{bottom:313.470000px;}
.yc0_c00444{bottom:313.905000px;}
.ybf_c00444{bottom:314.550000px;}
.ybd_c00444{bottom:315.405000px;}
.yc3_c00444{bottom:315.630000px;}
.yc1_c00444{bottom:316.470000px;}
.yc2_c00444{bottom:317.550000px;}
.yb9_c00444{bottom:329.325000px;}
.yb6_c00444{bottom:329.550000px;}
.yba_c00444{bottom:329.970000px;}
.yb7_c00444{bottom:330.405000px;}
.ybc_c00444{bottom:331.050000px;}
.yb8_c00444{bottom:331.470000px;}
.ybb_c00444{bottom:331.695000px;}
.yb0_c00444{bottom:341.970000px;}
.yaf_c00444{bottom:342.825000px;}
.yb3_c00444{bottom:343.470000px;}
.yb2_c00444{bottom:343.905000px;}
.yb5_c00444{bottom:344.325000px;}
.yb1_c00444{bottom:344.970000px;}
.yb4_c00444{bottom:346.050000px;}
.yaa_c00444{bottom:356.970000px;}
.ya9_c00444{bottom:357.825000px;}
.yac_c00444{bottom:358.050000px;}
.yab_c00444{bottom:358.470000px;}
.yae_c00444{bottom:358.905000px;}
.yad_c00444{bottom:359.970000px;}
.ya4_c00444{bottom:373.050000px;}
.ya6_c00444{bottom:373.905000px;}
.ya8_c00444{bottom:374.130000px;}
.ya5_c00444{bottom:374.970000px;}
.ya7_c00444{bottom:376.050000px;}
.y9e_c00444{bottom:387.825000px;}
.y9d_c00444{bottom:388.050000px;}
.ya2_c00444{bottom:388.905000px;}
.ya3_c00444{bottom:389.130000px;}
.ya0_c00444{bottom:389.550000px;}
.ya1_c00444{bottom:389.970000px;}
.y9f_c00444{bottom:391.050000px;}
.y9a_c00444{bottom:402.825000px;}
.y9b_c00444{bottom:403.905000px;}
.y99_c00444{bottom:404.970000px;}
.y98_c00444{bottom:405.195000px;}
.y9c_c00444{bottom:406.050000px;}
.y97_c00444{bottom:417.825000px;}
.y95_c00444{bottom:418.050000px;}
.y94_c00444{bottom:418.905000px;}
.y91_c00444{bottom:419.130000px;}
.y96_c00444{bottom:419.550000px;}
.y92_c00444{bottom:419.970000px;}
.y93_c00444{bottom:421.050000px;}
.y8f_c00444{bottom:431.550000px;}
.y8c_c00444{bottom:431.970000px;}
.y8e_c00444{bottom:432.405000px;}
.y90_c00444{bottom:433.470000px;}
.y8d_c00444{bottom:434.550000px;}
.y87_c00444{bottom:447.405000px;}
.y86_c00444{bottom:447.630000px;}
.y8a_c00444{bottom:448.470000px;}
.y89_c00444{bottom:448.905000px;}
.y8b_c00444{bottom:449.550000px;}
.y88_c00444{bottom:449.970000px;}
.y85_c00444{bottom:470.745000px;}
.y84_c00444{bottom:472.905000px;}
.y82_c00444{bottom:489.405000px;}
.y83_c00444{bottom:490.245000px;}
.y81_c00444{bottom:490.905000px;}
.y7f_c00444{bottom:491.325000px;}
.y7e_c00444{bottom:492.405000px;}
.y80_c00444{bottom:493.470000px;}
.y7c_c00444{bottom:508.905000px;}
.y7a_c00444{bottom:509.745000px;}
.y7d_c00444{bottom:510.630000px;}
.y7b_c00444{bottom:511.905000px;}
.y79_c00444{bottom:529.245000px;}
.y77_c00444{bottom:530.745000px;}
.y78_c00444{bottom:531.405000px;}
.y76_c00444{bottom:531.630000px;}
.y74_c00444{bottom:532.905000px;}
.y75_c00444{bottom:533.970000px;}
.y70_c00444{bottom:550.245000px;}
.y71_c00444{bottom:551.130000px;}
.y73_c00444{bottom:551.970000px;}
.y6f_c00444{bottom:552.405000px;}
.y72_c00444{bottom:553.470000px;}
.y6e_c00444{bottom:569.325000px;}
.y6b_c00444{bottom:569.745000px;}
.y6c_c00444{bottom:571.905000px;}
.y6d_c00444{bottom:572.130000px;}
.y6a_c00444{bottom:588.180000px;}
.y69_c00444{bottom:589.245000px;}
.y68_c00444{bottom:591.405000px;}
.y66_c00444{bottom:608.745000px;}
.y67_c00444{bottom:610.905000px;}
.y63_c00444{bottom:629.745000px;}
.y65_c00444{bottom:630.405000px;}
.y64_c00444{bottom:630.825000px;}
.y61_c00444{bottom:631.905000px;}
.y62_c00444{bottom:632.970000px;}
.y5c_c00444{bottom:649.245000px;}
.y5e_c00444{bottom:650.130000px;}
.y5f_c00444{bottom:650.325000px;}
.y60_c00444{bottom:650.970000px;}
.y5d_c00444{bottom:651.405000px;}
.y5a_c00444{bottom:667.470000px;}
.y59_c00444{bottom:668.745000px;}
.y5b_c00444{bottom:670.470000px;}
.y58_c00444{bottom:670.905000px;}
.y57_c00444{bottom:687.825000px;}
.y56_c00444{bottom:688.245000px;}
.y55_c00444{bottom:690.405000px;}
.y53_c00444{bottom:707.745000px;}
.y54_c00444{bottom:708.630000px;}
.y52_c00444{bottom:709.905000px;}
.y50_c00444{bottom:725.970000px;}
.y51_c00444{bottom:726.405000px;}
.y4d_c00444{bottom:727.245000px;}
.y4f_c00444{bottom:728.325000px;}
.y4e_c00444{bottom:729.405000px;}
.y4b_c00444{bottom:746.745000px;}
.y4a_c00444{bottom:748.905000px;}
.y4c_c00444{bottom:749.130000px;}
.y49_c00444{bottom:764.970000px;}
.y46_c00444{bottom:765.405000px;}
.y45_c00444{bottom:766.245000px;}
.y48_c00444{bottom:767.325000px;}
.y44_c00444{bottom:768.405000px;}
.y47_c00444{bottom:768.630000px;}
.y43_c00444{bottom:785.745000px;}
.y41_c00444{bottom:787.905000px;}
.y42_c00444{bottom:789.420000px;}
.y40_c00444{bottom:805.245000px;}
.y3f_c00444{bottom:807.405000px;}
.y3e_c00444{bottom:808.905000px;}
.y3b_c00444{bottom:826.245000px;}
.y3c_c00444{bottom:826.905000px;}
.y3d_c00444{bottom:827.130000px;}
.y38_c00444{bottom:827.325000px;}
.y39_c00444{bottom:827.970000px;}
.y3a_c00444{bottom:828.405000px;}
.y35_c00444{bottom:845.745000px;}
.y37_c00444{bottom:846.825000px;}
.y36_c00444{bottom:847.905000px;}
.y33_c00444{bottom:865.245000px;}
.y34_c00444{bottom:867.405000px;}
.y32_c00444{bottom:884.745000px;}
.y31_c00444{bottom:885.825000px;}
.y2e_c00444{bottom:886.905000px;}
.y2f_c00444{bottom:886.920000px;}
.y30_c00444{bottom:887.970000px;}
.y2c_c00444{bottom:904.245000px;}
.y2d_c00444{bottom:905.325000px;}
.y29_c00444{bottom:906.405000px;}
.y2b_c00444{bottom:906.420000px;}
.y2a_c00444{bottom:906.630000px;}
.y25_c00444{bottom:923.745000px;}
.y28_c00444{bottom:924.180000px;}
.y27_c00444{bottom:924.405000px;}
.y24_c00444{bottom:924.825000px;}
.y26_c00444{bottom:925.245000px;}
.y1d_c00444{bottom:943.245000px;}
.y1f_c00444{bottom:944.325000px;}
.y20_c00444{bottom:944.745000px;}
.y21_c00444{bottom:945.405000px;}
.y23_c00444{bottom:946.470000px;}
.y22_c00444{bottom:946.905000px;}
.y1e_c00444{bottom:946.920000px;}
.y1c_c00444{bottom:964.905000px;}
.y15_c00444{bottom:982.245000px;}
.y1b_c00444{bottom:983.325000px;}
.y1a_c00444{bottom:983.745000px;}
.y18_c00444{bottom:984.405000px;}
.y19_c00444{bottom:985.470000px;}
.y17_c00444{bottom:985.905000px;}
.y16_c00444{bottom:985.920000px;}
.y13_c00444{bottom:1005.825000px;}
.y14_c00444{bottom:1006.050000px;}
.y10_c00444{bottom:1006.905000px;}
.y11_c00444{bottom:1007.970000px;}
.y12_c00444{bottom:1009.050000px;}
.yc_c00444{bottom:1024.470000px;}
.yf_c00444{bottom:1025.325000px;}
.yd_c00444{bottom:1026.405000px;}
.ye_c00444{bottom:1028.550000px;}
.y9_c00444{bottom:1039.470000px;}
.y8_c00444{bottom:1040.325000px;}
.y7_c00444{bottom:1040.550000px;}
.y6_c00444{bottom:1041.405000px;}
.yb_c00444{bottom:1041.630000px;}
.ya_c00444{bottom:1042.695000px;}
.y4_c00444{bottom:1064.745000px;}
.y5_c00444{bottom:1066.905000px;}
.y1_c00444{bottom:1102.905000px;}
.y2_c00444{bottom:1106.130000px;}
.h8_c00444{height:4.206533px;}
.h7_c00444{height:16.752334px;}
.h2_c00444{height:23.025234px;}
.h3_c00444{height:25.091602px;}
.ha_c00444{height:27.044502px;}
.h6_c00444{height:31.364502px;}
.hd_c00444{height:33.044502px;}
.h1_c00444{height:35.571035px;}
.hc_c00444{height:37.364502px;}
.h5_c00444{height:39.777568px;}
.h4_c00444{height:43.910303px;}
.hb_c00444{height:45.044502px;}
.h9_c00444{height:48.116836px;}
.h0_c00444{height:1335.000000px;}
.w0_c00444{width:880.500000px;}
.x0_c00444{left:0.000000px;}
.x3d_c00444{left:151.080000px;}
.x9_c00444{left:153.000000px;}
.x50_c00444{left:154.275000px;}
.xe0_c00444{left:163.500000px;}
.x103_c00444{left:165.000000px;}
.x1f_c00444{left:166.080000px;}
.x2a_c00444{left:168.420000px;}
.x94_c00444{left:170.580000px;}
.x6b_c00444{left:172.920000px;}
.xa1_c00444{left:177.420000px;}
.xb0_c00444{left:179.580000px;}
.xd7_c00444{left:183.000000px;}
.xe2_c00444{left:184.920000px;}
.x84_c00444{left:186.420000px;}
.xef_c00444{left:188.580000px;}
.x9b_c00444{left:190.080000px;}
.x51_c00444{left:195.000000px;}
.xc0_c00444{left:199.500000px;}
.x6c_c00444{left:201.000000px;}
.xa2_c00444{left:204.000000px;}
.x59_c00444{left:205.500000px;}
.x2b_c00444{left:207.420000px;}
.xb1_c00444{left:208.500000px;}
.x90_c00444{left:211.080000px;}
.xa_c00444{left:214.920000px;}
.xaa_c00444{left:216.000000px;}
.xd6_c00444{left:217.500000px;}
.xfc_c00444{left:219.000000px;}
.x85_c00444{left:220.500000px;}
.xce_c00444{left:221.580000px;}
.x7b_c00444{left:223.500000px;}
.xb_c00444{left:227.580000px;}
.x20_c00444{left:229.500000px;}
.xdd_c00444{left:231.000000px;}
.xe8_c00444{left:232.080000px;}
.xe1_c00444{left:236.580000px;}
.x4_c00444{left:240.000000px;}
.x95_c00444{left:241.500000px;}
.xb5_c00444{left:245.580000px;}
.x5a_c00444{left:247.500000px;}
.x44_c00444{left:249.000000px;}
.x52_c00444{left:250.920000px;}
.x72_c00444{left:252.000000px;}
.xcf_c00444{left:253.080000px;}
.xe5_c00444{left:255.000000px;}
.xdb_c00444{left:256.500000px;}
.x3e_c00444{left:257.775000px;}
.x36_c00444{left:259.500000px;}
.x49_c00444{left:261.000000px;}
.x6d_c00444{left:262.080000px;}
.xbb_c00444{left:264.000000px;}
.x5b_c00444{left:265.500000px;}
.x2c_c00444{left:267.000000px;}
.xc1_c00444{left:269.580000px;}
.x8a_c00444{left:271.080000px;}
.xc_c00444{left:273.000000px;}
.x73_c00444{left:274.080000px;}
.xe9_c00444{left:277.920000px;}
.x86_c00444{left:279.000000px;}
.x37_c00444{left:280.500000px;}
.x5c_c00444{left:281.580000px;}
.xe3_c00444{left:282.855000px;}
.x96_c00444{left:286.080000px;}
.x2d_c00444{left:288.000000px;}
.x62_c00444{left:289.080000px;}
.xc5_c00444{left:290.580000px;}
.x6e_c00444{left:294.420000px;}
.x21_c00444{left:295.500000px;}
.xe4_c00444{left:298.080000px;}
.xd_c00444{left:299.580000px;}
.x8b_c00444{left:303.420000px;}
.xab_c00444{left:304.920000px;}
.xde_c00444{left:309.420000px;}
.xff_c00444{left:310.920000px;}
.xe6_c00444{left:316.500000px;}
.x3f_c00444{left:318.420000px;}
.x63_c00444{left:320.580000px;}
.x45_c00444{left:322.080000px;}
.x7c_c00444{left:328.080000px;}
.x53_c00444{left:329.580000px;}
.xac_c00444{left:331.500000px;}
.x1a_c00444{left:333.000000px;}
.x5d_c00444{left:334.920000px;}
.xa3_c00444{left:337.920000px;}
.xc9_c00444{left:341.580000px;}
.x40_c00444{left:344.580000px;}
.x74_c00444{left:346.500000px;}
.x46_c00444{left:347.580000px;}
.x38_c00444{left:350.775000px;}
.xbc_c00444{left:352.500000px;}
.x22_c00444{left:354.420000px;}
.x5_c00444{left:356.580000px;}
.x8c_c00444{left:358.500000px;}
.xd0_c00444{left:362.580000px;}
.x64_c00444{left:363.645000px;}
.xb6_c00444{left:365.580000px;}
.x41_c00444{left:367.080000px;}
.xb2_c00444{left:368.580000px;}
.x7d_c00444{left:370.080000px;}
.xe_c00444{left:371.580000px;}
.x2e_c00444{left:372.645000px;}
.x54_c00444{left:374.145000px;}
.xf8_c00444{left:376.920000px;}
.xbd_c00444{left:378.420000px;}
.xd1_c00444{left:383.580000px;}
.x100_c00444{left:385.500000px;}
.x47_c00444{left:387.420000px;}
.x23_c00444{left:388.500000px;}
.x39_c00444{left:390.000000px;}
.xf_c00444{left:393.420000px;}
.xca_c00444{left:396.000000px;}
.xdc_c00444{left:397.080000px;}
.xa4_c00444{left:398.145000px;}
.x7e_c00444{left:400.500000px;}
.xf4_c00444{left:401.580000px;}
.x55_c00444{left:403.500000px;}
.x65_c00444{left:405.000000px;}
.xea_c00444{left:406.080000px;}
.x2_c00444{left:408.000000px;}
.x91_c00444{left:410.580000px;}
.xd2_c00444{left:413.580000px;}
.x10_c00444{left:417.000000px;}
.x1b_c00444{left:418.500000px;}
.xf9_c00444{left:421.080000px;}
.x3a_c00444{left:427.080000px;}
.xcb_c00444{left:429.000000px;}
.x101_c00444{left:430.920000px;}
.x75_c00444{left:433.920000px;}
.x24_c00444{left:435.000000px;}
.x7f_c00444{left:436.920000px;}
.x66_c00444{left:438.000000px;}
.x11_c00444{left:441.420000px;}
.x42_c00444{left:443.580000px;}
.x9c_c00444{left:445.920000px;}
.x6_c00444{left:447.000000px;}
.x2f_c00444{left:448.500000px;}
.xf0_c00444{left:450.000000px;}
.xeb_c00444{left:451.080000px;}
.x12_c00444{left:452.580000px;}
.xb3_c00444{left:454.080000px;}
.x5e_c00444{left:456.420000px;}
.xd8_c00444{left:457.500000px;}
.xd3_c00444{left:460.500000px;}
.x6f_c00444{left:462.000000px;}
.x1c_c00444{left:463.080000px;}
.x43_c00444{left:464.580000px;}
.xb7_c00444{left:466.920000px;}
.xa5_c00444{left:468.420000px;}
.x48_c00444{left:469.500000px;}
.xbe_c00444{left:470.580000px;}
.x102_c00444{left:472.500000px;}
.xc2_c00444{left:473.580000px;}
.x8d_c00444{left:476.580000px;}
.x4a_c00444{left:478.080000px;}
.x30_c00444{left:481.500000px;}
.x1d_c00444{left:483.000000px;}
.x87_c00444{left:484.275000px;}
.x13_c00444{left:489.420000px;}
.xf5_c00444{left:492.000000px;}
.xb8_c00444{left:493.080000px;}
.xa6_c00444{left:494.580000px;}
.x25_c00444{left:496.500000px;}
.x1e_c00444{left:497.580000px;}
.x76_c00444{left:499.500000px;}
.x31_c00444{left:501.420000px;}
.x80_c00444{left:506.145000px;}
.x3b_c00444{left:508.500000px;}
.xb4_c00444{left:509.580000px;}
.x56_c00444{left:511.080000px;}
.x67_c00444{left:513.000000px;}
.xad_c00444{left:516.000000px;}
.x97_c00444{left:520.500000px;}
.x5f_c00444{left:522.420000px;}
.x88_c00444{left:523.500000px;}
.x14_c00444{left:526.500000px;}
.x32_c00444{left:528.000000px;}
.x26_c00444{left:529.500000px;}
.xec_c00444{left:532.080000px;}
.x68_c00444{left:535.080000px;}
.x7_c00444{left:536.580000px;}
.x70_c00444{left:538.080000px;}
.x8e_c00444{left:541.500000px;}
.xc6_c00444{left:544.080000px;}
.x15_c00444{left:547.500000px;}
.x77_c00444{left:550.080000px;}
.xf1_c00444{left:553.080000px;}
.x92_c00444{left:554.580000px;}
.x4b_c00444{left:557.580000px;}
.xfd_c00444{left:559.920000px;}
.xed_c00444{left:561.000000px;}
.xc3_c00444{left:562.500000px;}
.x57_c00444{left:565.500000px;}
.xd9_c00444{left:567.000000px;}
.x27_c00444{left:568.080000px;}
.x71_c00444{left:570.000000px;}
.x16_c00444{left:571.500000px;}
.x78_c00444{left:573.420000px;}
.x81_c00444{left:574.500000px;}
.xbf_c00444{left:576.000000px;}
.xe7_c00444{left:577.080000px;}
.x4c_c00444{left:580.500000px;}
.x9d_c00444{left:586.080000px;}
.x28_c00444{left:590.355000px;}
.xf6_c00444{left:592.500000px;}
.x60_c00444{left:594.420000px;}
.x17_c00444{left:595.500000px;}
.x82_c00444{left:597.000000px;}
.xd4_c00444{left:598.080000px;}
.x4d_c00444{left:600.000000px;}
.x79_c00444{left:602.580000px;}
.x33_c00444{left:604.500000px;}
.x8f_c00444{left:606.000000px;}
.x8_c00444{left:607.275000px;}
.x69_c00444{left:610.500000px;}
.x29_c00444{left:611.580000px;}
.x98_c00444{left:613.920000px;}
.xcc_c00444{left:615.000000px;}
.x9e_c00444{left:618.420000px;}
.x89_c00444{left:619.500000px;}
.xa7_c00444{left:621.000000px;}
.xfa_c00444{left:622.080000px;}
.xae_c00444{left:626.580000px;}
.xf7_c00444{left:633.000000px;}
.xc4_c00444{left:634.500000px;}
.x58_c00444{left:637.080000px;}
.xf2_c00444{left:638.580000px;}
.x99_c00444{left:640.500000px;}
.xc7_c00444{left:641.580000px;}
.x4e_c00444{left:644.580000px;}
.xfe_c00444{left:646.080000px;}
.xda_c00444{left:650.580000px;}
.x61_c00444{left:655.500000px;}
.xa8_c00444{left:656.580000px;}
.xb9_c00444{left:659.580000px;}
.x4f_c00444{left:661.500000px;}
.xd5_c00444{left:667.920000px;}
.x93_c00444{left:669.000000px;}
.x9f_c00444{left:671.580000px;}
.x34_c00444{left:673.500000px;}
.xa9_c00444{left:674.580000px;}
.xba_c00444{left:676.500000px;}
.x83_c00444{left:677.580000px;}
.xdf_c00444{left:679.080000px;}
.xf3_c00444{left:681.000000px;}
.x3c_c00444{left:684.000000px;}
.x6a_c00444{left:687.000000px;}
.x18_c00444{left:688.080000px;}
.xaf_c00444{left:689.580000px;}
.xee_c00444{left:691.080000px;}
.x7a_c00444{left:696.420000px;}
.x9a_c00444{left:697.920000px;}
.x1_c00444{left:706.500000px;}
.xcd_c00444{left:708.000000px;}
.x19_c00444{left:709.920000px;}
.xa0_c00444{left:711.000000px;}
.xc8_c00444{left:712.080000px;}
.x35_c00444{left:716.580000px;}
.x3_c00444{left:718.920000px;}
.xfb_c00444{left:721.920000px;}
@media print{
.v1_c00444{vertical-align:-3.840000pt;}
.v0_c00444{vertical-align:0.000000pt;}
.v4_c00444{vertical-align:1.493333pt;}
.v3_c00444{vertical-align:5.333333pt;}
.v2_c00444{vertical-align:12.160000pt;}
.ls2_c00444{letter-spacing:0.000000pt;}
.ls1_c00444{letter-spacing:10.504533pt;}
.ls0_c00444{letter-spacing:11.251200pt;}
.ws2_c00444{word-spacing:-13.237333pt;}
.ws0_c00444{word-spacing:-6.620751pt;}
.ws1_c00444{word-spacing:-5.711730pt;}
.ws4_c00444{word-spacing:-2.843733pt;}
.ws3_c00444{word-spacing:-2.680284pt;}
.ws6_c00444{word-spacing:-1.649067pt;}
.ws5_c00444{word-spacing:-0.274133pt;}
.ws7_c00444{word-spacing:0.000000pt;}
._0_c00444{width:5.352000pt;}
.fs7_c00444{font-size:3.040000pt;}
.fs6_c00444{font-size:12.106667pt;}
.fs1_c00444{font-size:16.640000pt;}
.fs2_c00444{font-size:18.133333pt;}
.fs5_c00444{font-size:22.666667pt;}
.fs0_c00444{font-size:25.706667pt;}
.fs4_c00444{font-size:28.746667pt;}
.fs3_c00444{font-size:31.733333pt;}
.fs8_c00444{font-size:34.773333pt;}
.y0_c00444{bottom:0.000000pt;}
.y3_c00444{bottom:206.266667pt;}
.yd7_c00444{bottom:226.066667pt;}
.yd5_c00444{bottom:226.266667pt;}
.yd6_c00444{bottom:227.973333pt;}
.yd2_c00444{bottom:238.640000pt;}
.yd0_c00444{bottom:239.400000pt;}
.yd3_c00444{bottom:240.360000pt;}
.yd4_c00444{bottom:240.560000pt;}
.yd1_c00444{bottom:241.306667pt;}
.ycf_c00444{bottom:242.266667pt;}
.ycd_c00444{bottom:252.733333pt;}
.yce_c00444{bottom:252.933333pt;}
.ycc_c00444{bottom:253.693333pt;}
.ycb_c00444{bottom:254.640000pt;}
.yc7_c00444{bottom:265.306667pt;}
.yc8_c00444{bottom:266.066667pt;}
.yc4_c00444{bottom:266.266667pt;}
.yca_c00444{bottom:267.026667pt;}
.yc5_c00444{bottom:267.226667pt;}
.yc9_c00444{bottom:267.600000pt;}
.yc6_c00444{bottom:267.973333pt;}
.ybe_c00444{bottom:278.640000pt;}
.yc0_c00444{bottom:279.026667pt;}
.ybf_c00444{bottom:279.600000pt;}
.ybd_c00444{bottom:280.360000pt;}
.yc3_c00444{bottom:280.560000pt;}
.yc1_c00444{bottom:281.306667pt;}
.yc2_c00444{bottom:282.266667pt;}
.yb9_c00444{bottom:292.733333pt;}
.yb6_c00444{bottom:292.933333pt;}
.yba_c00444{bottom:293.306667pt;}
.yb7_c00444{bottom:293.693333pt;}
.ybc_c00444{bottom:294.266667pt;}
.yb8_c00444{bottom:294.640000pt;}
.ybb_c00444{bottom:294.840000pt;}
.yb0_c00444{bottom:303.973333pt;}
.yaf_c00444{bottom:304.733333pt;}
.yb3_c00444{bottom:305.306667pt;}
.yb2_c00444{bottom:305.693333pt;}
.yb5_c00444{bottom:306.066667pt;}
.yb1_c00444{bottom:306.640000pt;}
.yb4_c00444{bottom:307.600000pt;}
.yaa_c00444{bottom:317.306667pt;}
.ya9_c00444{bottom:318.066667pt;}
.yac_c00444{bottom:318.266667pt;}
.yab_c00444{bottom:318.640000pt;}
.yae_c00444{bottom:319.026667pt;}
.yad_c00444{bottom:319.973333pt;}
.ya4_c00444{bottom:331.600000pt;}
.ya6_c00444{bottom:332.360000pt;}
.ya8_c00444{bottom:332.560000pt;}
.ya5_c00444{bottom:333.306667pt;}
.ya7_c00444{bottom:334.266667pt;}
.y9e_c00444{bottom:344.733333pt;}
.y9d_c00444{bottom:344.933333pt;}
.ya2_c00444{bottom:345.693333pt;}
.ya3_c00444{bottom:345.893333pt;}
.ya0_c00444{bottom:346.266667pt;}
.ya1_c00444{bottom:346.640000pt;}
.y9f_c00444{bottom:347.600000pt;}
.y9a_c00444{bottom:358.066667pt;}
.y9b_c00444{bottom:359.026667pt;}
.y99_c00444{bottom:359.973333pt;}
.y98_c00444{bottom:360.173333pt;}
.y9c_c00444{bottom:360.933333pt;}
.y97_c00444{bottom:371.400000pt;}
.y95_c00444{bottom:371.600000pt;}
.y94_c00444{bottom:372.360000pt;}
.y91_c00444{bottom:372.560000pt;}
.y96_c00444{bottom:372.933333pt;}
.y92_c00444{bottom:373.306667pt;}
.y93_c00444{bottom:374.266667pt;}
.y8f_c00444{bottom:383.600000pt;}
.y8c_c00444{bottom:383.973333pt;}
.y8e_c00444{bottom:384.360000pt;}
.y90_c00444{bottom:385.306667pt;}
.y8d_c00444{bottom:386.266667pt;}
.y87_c00444{bottom:397.693333pt;}
.y86_c00444{bottom:397.893333pt;}
.y8a_c00444{bottom:398.640000pt;}
.y89_c00444{bottom:399.026667pt;}
.y8b_c00444{bottom:399.600000pt;}
.y88_c00444{bottom:399.973333pt;}
.y85_c00444{bottom:418.440000pt;}
.y84_c00444{bottom:420.360000pt;}
.y82_c00444{bottom:435.026667pt;}
.y83_c00444{bottom:435.773333pt;}
.y81_c00444{bottom:436.360000pt;}
.y7f_c00444{bottom:436.733333pt;}
.y7e_c00444{bottom:437.693333pt;}
.y80_c00444{bottom:438.640000pt;}
.y7c_c00444{bottom:452.360000pt;}
.y7a_c00444{bottom:453.106667pt;}
.y7d_c00444{bottom:453.893333pt;}
.y7b_c00444{bottom:455.026667pt;}
.y79_c00444{bottom:470.440000pt;}
.y77_c00444{bottom:471.773333pt;}
.y78_c00444{bottom:472.360000pt;}
.y76_c00444{bottom:472.560000pt;}
.y74_c00444{bottom:473.693333pt;}
.y75_c00444{bottom:474.640000pt;}
.y70_c00444{bottom:489.106667pt;}
.y71_c00444{bottom:489.893333pt;}
.y73_c00444{bottom:490.640000pt;}
.y6f_c00444{bottom:491.026667pt;}
.y72_c00444{bottom:491.973333pt;}
.y6e_c00444{bottom:506.066667pt;}
.y6b_c00444{bottom:506.440000pt;}
.y6c_c00444{bottom:508.360000pt;}
.y6d_c00444{bottom:508.560000pt;}
.y6a_c00444{bottom:522.826667pt;}
.y69_c00444{bottom:523.773333pt;}
.y68_c00444{bottom:525.693333pt;}
.y66_c00444{bottom:541.106667pt;}
.y67_c00444{bottom:543.026667pt;}
.y63_c00444{bottom:559.773333pt;}
.y65_c00444{bottom:560.360000pt;}
.y64_c00444{bottom:560.733333pt;}
.y61_c00444{bottom:561.693333pt;}
.y62_c00444{bottom:562.640000pt;}
.y5c_c00444{bottom:577.106667pt;}
.y5e_c00444{bottom:577.893333pt;}
.y5f_c00444{bottom:578.066667pt;}
.y60_c00444{bottom:578.640000pt;}
.y5d_c00444{bottom:579.026667pt;}
.y5a_c00444{bottom:593.306667pt;}
.y59_c00444{bottom:594.440000pt;}
.y5b_c00444{bottom:595.973333pt;}
.y58_c00444{bottom:596.360000pt;}
.y57_c00444{bottom:611.400000pt;}
.y56_c00444{bottom:611.773333pt;}
.y55_c00444{bottom:613.693333pt;}
.y53_c00444{bottom:629.106667pt;}
.y54_c00444{bottom:629.893333pt;}
.y52_c00444{bottom:631.026667pt;}
.y50_c00444{bottom:645.306667pt;}
.y51_c00444{bottom:645.693333pt;}
.y4d_c00444{bottom:646.440000pt;}
.y4f_c00444{bottom:647.400000pt;}
.y4e_c00444{bottom:648.360000pt;}
.y4b_c00444{bottom:663.773333pt;}
.y4a_c00444{bottom:665.693333pt;}
.y4c_c00444{bottom:665.893333pt;}
.y49_c00444{bottom:679.973333pt;}
.y46_c00444{bottom:680.360000pt;}
.y45_c00444{bottom:681.106667pt;}
.y48_c00444{bottom:682.066667pt;}
.y44_c00444{bottom:683.026667pt;}
.y47_c00444{bottom:683.226667pt;}
.y43_c00444{bottom:698.440000pt;}
.y41_c00444{bottom:700.360000pt;}
.y42_c00444{bottom:701.706667pt;}
.y40_c00444{bottom:715.773333pt;}
.y3f_c00444{bottom:717.693333pt;}
.y3e_c00444{bottom:719.026667pt;}
.y3b_c00444{bottom:734.440000pt;}
.y3c_c00444{bottom:735.026667pt;}
.y3d_c00444{bottom:735.226667pt;}
.y38_c00444{bottom:735.400000pt;}
.y39_c00444{bottom:735.973333pt;}
.y3a_c00444{bottom:736.360000pt;}
.y35_c00444{bottom:751.773333pt;}
.y37_c00444{bottom:752.733333pt;}
.y36_c00444{bottom:753.693333pt;}
.y33_c00444{bottom:769.106667pt;}
.y34_c00444{bottom:771.026667pt;}
.y32_c00444{bottom:786.440000pt;}
.y31_c00444{bottom:787.400000pt;}
.y2e_c00444{bottom:788.360000pt;}
.y2f_c00444{bottom:788.373333pt;}
.y30_c00444{bottom:789.306667pt;}
.y2c_c00444{bottom:803.773333pt;}
.y2d_c00444{bottom:804.733333pt;}
.y29_c00444{bottom:805.693333pt;}
.y2b_c00444{bottom:805.706667pt;}
.y2a_c00444{bottom:805.893333pt;}
.y25_c00444{bottom:821.106667pt;}
.y28_c00444{bottom:821.493333pt;}
.y27_c00444{bottom:821.693333pt;}
.y24_c00444{bottom:822.066667pt;}
.y26_c00444{bottom:822.440000pt;}
.y1d_c00444{bottom:838.440000pt;}
.y1f_c00444{bottom:839.400000pt;}
.y20_c00444{bottom:839.773333pt;}
.y21_c00444{bottom:840.360000pt;}
.y23_c00444{bottom:841.306667pt;}
.y22_c00444{bottom:841.693333pt;}
.y1e_c00444{bottom:841.706667pt;}
.y1c_c00444{bottom:857.693333pt;}
.y15_c00444{bottom:873.106667pt;}
.y1b_c00444{bottom:874.066667pt;}
.y1a_c00444{bottom:874.440000pt;}
.y18_c00444{bottom:875.026667pt;}
.y19_c00444{bottom:875.973333pt;}
.y17_c00444{bottom:876.360000pt;}
.y16_c00444{bottom:876.373333pt;}
.y13_c00444{bottom:894.066667pt;}
.y14_c00444{bottom:894.266667pt;}
.y10_c00444{bottom:895.026667pt;}
.y11_c00444{bottom:895.973333pt;}
.y12_c00444{bottom:896.933333pt;}
.yc_c00444{bottom:910.640000pt;}
.yf_c00444{bottom:911.400000pt;}
.yd_c00444{bottom:912.360000pt;}
.ye_c00444{bottom:914.266667pt;}
.y9_c00444{bottom:923.973333pt;}
.y8_c00444{bottom:924.733333pt;}
.y7_c00444{bottom:924.933333pt;}
.y6_c00444{bottom:925.693333pt;}
.yb_c00444{bottom:925.893333pt;}
.ya_c00444{bottom:926.840000pt;}
.y4_c00444{bottom:946.440000pt;}
.y5_c00444{bottom:948.360000pt;}
.y1_c00444{bottom:980.360000pt;}
.y2_c00444{bottom:983.226667pt;}
.h8_c00444{height:3.739141pt;}
.h7_c00444{height:14.890964pt;}
.h2_c00444{height:20.466875pt;}
.h3_c00444{height:22.303646pt;}
.ha_c00444{height:24.039557pt;}
.h6_c00444{height:27.879557pt;}
.hd_c00444{height:29.372891pt;}
.h1_c00444{height:31.618698pt;}
.hc_c00444{height:33.212891pt;}
.h5_c00444{height:35.357839pt;}
.h4_c00444{height:39.031380pt;}
.hb_c00444{height:40.039557pt;}
.h9_c00444{height:42.770521pt;}
.h0_c00444{height:1186.666667pt;}
.w0_c00444{width:782.666667pt;}
.x0_c00444{left:0.000000pt;}
.x3d_c00444{left:134.293333pt;}
.x9_c00444{left:136.000000pt;}
.x50_c00444{left:137.133333pt;}
.xe0_c00444{left:145.333333pt;}
.x103_c00444{left:146.666667pt;}
.x1f_c00444{left:147.626667pt;}
.x2a_c00444{left:149.706667pt;}
.x94_c00444{left:151.626667pt;}
.x6b_c00444{left:153.706667pt;}
.xa1_c00444{left:157.706667pt;}
.xb0_c00444{left:159.626667pt;}
.xd7_c00444{left:162.666667pt;}
.xe2_c00444{left:164.373333pt;}
.x84_c00444{left:165.706667pt;}
.xef_c00444{left:167.626667pt;}
.x9b_c00444{left:168.960000pt;}
.x51_c00444{left:173.333333pt;}
.xc0_c00444{left:177.333333pt;}
.x6c_c00444{left:178.666667pt;}
.xa2_c00444{left:181.333333pt;}
.x59_c00444{left:182.666667pt;}
.x2b_c00444{left:184.373333pt;}
.xb1_c00444{left:185.333333pt;}
.x90_c00444{left:187.626667pt;}
.xa_c00444{left:191.040000pt;}
.xaa_c00444{left:192.000000pt;}
.xd6_c00444{left:193.333333pt;}
.xfc_c00444{left:194.666667pt;}
.x85_c00444{left:196.000000pt;}
.xce_c00444{left:196.960000pt;}
.x7b_c00444{left:198.666667pt;}
.xb_c00444{left:202.293333pt;}
.x20_c00444{left:204.000000pt;}
.xdd_c00444{left:205.333333pt;}
.xe8_c00444{left:206.293333pt;}
.xe1_c00444{left:210.293333pt;}
.x4_c00444{left:213.333333pt;}
.x95_c00444{left:214.666667pt;}
.xb5_c00444{left:218.293333pt;}
.x5a_c00444{left:220.000000pt;}
.x44_c00444{left:221.333333pt;}
.x52_c00444{left:223.040000pt;}
.x72_c00444{left:224.000000pt;}
.xcf_c00444{left:224.960000pt;}
.xe5_c00444{left:226.666667pt;}
.xdb_c00444{left:228.000000pt;}
.x3e_c00444{left:229.133333pt;}
.x36_c00444{left:230.666667pt;}
.x49_c00444{left:232.000000pt;}
.x6d_c00444{left:232.960000pt;}
.xbb_c00444{left:234.666667pt;}
.x5b_c00444{left:236.000000pt;}
.x2c_c00444{left:237.333333pt;}
.xc1_c00444{left:239.626667pt;}
.x8a_c00444{left:240.960000pt;}
.xc_c00444{left:242.666667pt;}
.x73_c00444{left:243.626667pt;}
.xe9_c00444{left:247.040000pt;}
.x86_c00444{left:248.000000pt;}
.x37_c00444{left:249.333333pt;}
.x5c_c00444{left:250.293333pt;}
.xe3_c00444{left:251.426667pt;}
.x96_c00444{left:254.293333pt;}
.x2d_c00444{left:256.000000pt;}
.x62_c00444{left:256.960000pt;}
.xc5_c00444{left:258.293333pt;}
.x6e_c00444{left:261.706667pt;}
.x21_c00444{left:262.666667pt;}
.xe4_c00444{left:264.960000pt;}
.xd_c00444{left:266.293333pt;}
.x8b_c00444{left:269.706667pt;}
.xab_c00444{left:271.040000pt;}
.xde_c00444{left:275.040000pt;}
.xff_c00444{left:276.373333pt;}
.xe6_c00444{left:281.333333pt;}
.x3f_c00444{left:283.040000pt;}
.x63_c00444{left:284.960000pt;}
.x45_c00444{left:286.293333pt;}
.x7c_c00444{left:291.626667pt;}
.x53_c00444{left:292.960000pt;}
.xac_c00444{left:294.666667pt;}
.x1a_c00444{left:296.000000pt;}
.x5d_c00444{left:297.706667pt;}
.xa3_c00444{left:300.373333pt;}
.xc9_c00444{left:303.626667pt;}
.x40_c00444{left:306.293333pt;}
.x74_c00444{left:308.000000pt;}
.x46_c00444{left:308.960000pt;}
.x38_c00444{left:311.800000pt;}
.xbc_c00444{left:313.333333pt;}
.x22_c00444{left:315.040000pt;}
.x5_c00444{left:316.960000pt;}
.x8c_c00444{left:318.666667pt;}
.xd0_c00444{left:322.293333pt;}
.x64_c00444{left:323.240000pt;}
.xb6_c00444{left:324.960000pt;}
.x41_c00444{left:326.293333pt;}
.xb2_c00444{left:327.626667pt;}
.x7d_c00444{left:328.960000pt;}
.xe_c00444{left:330.293333pt;}
.x2e_c00444{left:331.240000pt;}
.x54_c00444{left:332.573333pt;}
.xf8_c00444{left:335.040000pt;}
.xbd_c00444{left:336.373333pt;}
.xd1_c00444{left:340.960000pt;}
.x100_c00444{left:342.666667pt;}
.x47_c00444{left:344.373333pt;}
.x23_c00444{left:345.333333pt;}
.x39_c00444{left:346.666667pt;}
.xf_c00444{left:349.706667pt;}
.xca_c00444{left:352.000000pt;}
.xdc_c00444{left:352.960000pt;}
.xa4_c00444{left:353.906667pt;}
.x7e_c00444{left:356.000000pt;}
.xf4_c00444{left:356.960000pt;}
.x55_c00444{left:358.666667pt;}
.x65_c00444{left:360.000000pt;}
.xea_c00444{left:360.960000pt;}
.x2_c00444{left:362.666667pt;}
.x91_c00444{left:364.960000pt;}
.xd2_c00444{left:367.626667pt;}
.x10_c00444{left:370.666667pt;}
.x1b_c00444{left:372.000000pt;}
.xf9_c00444{left:374.293333pt;}
.x3a_c00444{left:379.626667pt;}
.xcb_c00444{left:381.333333pt;}
.x101_c00444{left:383.040000pt;}
.x75_c00444{left:385.706667pt;}
.x24_c00444{left:386.666667pt;}
.x7f_c00444{left:388.373333pt;}
.x66_c00444{left:389.333333pt;}
.x11_c00444{left:392.373333pt;}
.x42_c00444{left:394.293333pt;}
.x9c_c00444{left:396.373333pt;}
.x6_c00444{left:397.333333pt;}
.x2f_c00444{left:398.666667pt;}
.xf0_c00444{left:400.000000pt;}
.xeb_c00444{left:400.960000pt;}
.x12_c00444{left:402.293333pt;}
.xb3_c00444{left:403.626667pt;}
.x5e_c00444{left:405.706667pt;}
.xd8_c00444{left:406.666667pt;}
.xd3_c00444{left:409.333333pt;}
.x6f_c00444{left:410.666667pt;}
.x1c_c00444{left:411.626667pt;}
.x43_c00444{left:412.960000pt;}
.xb7_c00444{left:415.040000pt;}
.xa5_c00444{left:416.373333pt;}
.x48_c00444{left:417.333333pt;}
.xbe_c00444{left:418.293333pt;}
.x102_c00444{left:420.000000pt;}
.xc2_c00444{left:420.960000pt;}
.x8d_c00444{left:423.626667pt;}
.x4a_c00444{left:424.960000pt;}
.x30_c00444{left:428.000000pt;}
.x1d_c00444{left:429.333333pt;}
.x87_c00444{left:430.466667pt;}
.x13_c00444{left:435.040000pt;}
.xf5_c00444{left:437.333333pt;}
.xb8_c00444{left:438.293333pt;}
.xa6_c00444{left:439.626667pt;}
.x25_c00444{left:441.333333pt;}
.x1e_c00444{left:442.293333pt;}
.x76_c00444{left:444.000000pt;}
.x31_c00444{left:445.706667pt;}
.x80_c00444{left:449.906667pt;}
.x3b_c00444{left:452.000000pt;}
.xb4_c00444{left:452.960000pt;}
.x56_c00444{left:454.293333pt;}
.x67_c00444{left:456.000000pt;}
.xad_c00444{left:458.666667pt;}
.x97_c00444{left:462.666667pt;}
.x5f_c00444{left:464.373333pt;}
.x88_c00444{left:465.333333pt;}
.x14_c00444{left:468.000000pt;}
.x32_c00444{left:469.333333pt;}
.x26_c00444{left:470.666667pt;}
.xec_c00444{left:472.960000pt;}
.x68_c00444{left:475.626667pt;}
.x7_c00444{left:476.960000pt;}
.x70_c00444{left:478.293333pt;}
.x8e_c00444{left:481.333333pt;}
.xc6_c00444{left:483.626667pt;}
.x15_c00444{left:486.666667pt;}
.x77_c00444{left:488.960000pt;}
.xf1_c00444{left:491.626667pt;}
.x92_c00444{left:492.960000pt;}
.x4b_c00444{left:495.626667pt;}
.xfd_c00444{left:497.706667pt;}
.xed_c00444{left:498.666667pt;}
.xc3_c00444{left:500.000000pt;}
.x57_c00444{left:502.666667pt;}
.xd9_c00444{left:504.000000pt;}
.x27_c00444{left:504.960000pt;}
.x71_c00444{left:506.666667pt;}
.x16_c00444{left:508.000000pt;}
.x78_c00444{left:509.706667pt;}
.x81_c00444{left:510.666667pt;}
.xbf_c00444{left:512.000000pt;}
.xe7_c00444{left:512.960000pt;}
.x4c_c00444{left:516.000000pt;}
.x9d_c00444{left:520.960000pt;}
.x28_c00444{left:524.760000pt;}
.xf6_c00444{left:526.666667pt;}
.x60_c00444{left:528.373333pt;}
.x17_c00444{left:529.333333pt;}
.x82_c00444{left:530.666667pt;}
.xd4_c00444{left:531.626667pt;}
.x4d_c00444{left:533.333333pt;}
.x79_c00444{left:535.626667pt;}
.x33_c00444{left:537.333333pt;}
.x8f_c00444{left:538.666667pt;}
.x8_c00444{left:539.800000pt;}
.x69_c00444{left:542.666667pt;}
.x29_c00444{left:543.626667pt;}
.x98_c00444{left:545.706667pt;}
.xcc_c00444{left:546.666667pt;}
.x9e_c00444{left:549.706667pt;}
.x89_c00444{left:550.666667pt;}
.xa7_c00444{left:552.000000pt;}
.xfa_c00444{left:552.960000pt;}
.xae_c00444{left:556.960000pt;}
.xf7_c00444{left:562.666667pt;}
.xc4_c00444{left:564.000000pt;}
.x58_c00444{left:566.293333pt;}
.xf2_c00444{left:567.626667pt;}
.x99_c00444{left:569.333333pt;}
.xc7_c00444{left:570.293333pt;}
.x4e_c00444{left:572.960000pt;}
.xfe_c00444{left:574.293333pt;}
.xda_c00444{left:578.293333pt;}
.x61_c00444{left:582.666667pt;}
.xa8_c00444{left:583.626667pt;}
.xb9_c00444{left:586.293333pt;}
.x4f_c00444{left:588.000000pt;}
.xd5_c00444{left:593.706667pt;}
.x93_c00444{left:594.666667pt;}
.x9f_c00444{left:596.960000pt;}
.x34_c00444{left:598.666667pt;}
.xa9_c00444{left:599.626667pt;}
.xba_c00444{left:601.333333pt;}
.x83_c00444{left:602.293333pt;}
.xdf_c00444{left:603.626667pt;}
.xf3_c00444{left:605.333333pt;}
.x3c_c00444{left:608.000000pt;}
.x6a_c00444{left:610.666667pt;}
.x18_c00444{left:611.626667pt;}
.xaf_c00444{left:612.960000pt;}
.xee_c00444{left:614.293333pt;}
.x7a_c00444{left:619.040000pt;}
.x9a_c00444{left:620.373333pt;}
.x1_c00444{left:628.000000pt;}
.xcd_c00444{left:629.333333pt;}
.x19_c00444{left:631.040000pt;}
.xa0_c00444{left:632.000000pt;}
.xc8_c00444{left:632.960000pt;}
.x35_c00444{left:636.960000pt;}
.x3_c00444{left:639.040000pt;}
.xfb_c00444{left:641.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_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_dc81bc6e4d7073beb7b7783b.woff2')format("woff");}.ff1_c00445{font-family:ff1_c00445;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf0_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);}
.mf1_c00445{transform:matrix(0.328151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328151,0.000000,0.000000,0.250000,0,0);}
.m0_c00445{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.mf4_c00445{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m2e_c00445{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m1c_c00445{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.mce_c00445{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.md7_c00445{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.mca_c00445{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.md0_c00445{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.mad_c00445{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mc3_c00445{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m37_c00445{transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);}
.mac_c00445{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m3d_c00445{transform:matrix(0.394710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394710,0.000000,0.000000,0.250000,0,0);}
.mfb_c00445{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.mfc_c00445{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m10d_c00445{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m103_c00445{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.mfe_c00445{transform:matrix(0.400307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400307,0.000000,0.000000,0.250000,0,0);}
.mdf_c00445{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mcf_c00445{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m68_c00445{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mb1_c00445{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m2c_c00445{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.m107_c00445{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m93_c00445{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mf2_c00445{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m70_c00445{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mf9_c00445{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m8e_c00445{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.ma5_c00445{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m20_c00445{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m91_c00445{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m92_c00445{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m6d_c00445{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.me4_c00445{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.mbe_c00445{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mde_c00445{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.me9_c00445{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.ma8_c00445{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m60_c00445{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mf8_c00445{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m11_c00445{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.mdc_c00445{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m1d_c00445{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m15_c00445{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m5c_c00445{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.me3_c00445{transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);}
.mcc_c00445{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mb3_c00445{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m3e_c00445{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m55_c00445{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.mc7_c00445{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m5a_c00445{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.mb6_c00445{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m7e_c00445{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.mc8_c00445{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.ma4_c00445{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m4d_c00445{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.mb4_c00445{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mcb_c00445{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.me2_c00445{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mef_c00445{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m9b_c00445{transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);}
.m2_c00445{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m35_c00445{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.m12_c00445{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m5f_c00445{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m82_c00445{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m86_c00445{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m96_c00445{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.maf_c00445{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.m98_c00445{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m3c_c00445{transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);}
.m95_c00445{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m5b_c00445{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m6f_c00445{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.mb2_c00445{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m4e_c00445{transform:matrix(0.454706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454706,0.000000,0.000000,0.250000,0,0);}
.m34_c00445{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m10b_c00445{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.me6_c00445{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m36_c00445{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.mf_c00445{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m105_c00445{transform:matrix(0.461345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461345,0.000000,0.000000,0.250000,0,0);}
.m8c_c00445{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.mdb_c00445{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.me5_c00445{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m80_c00445{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m59_c00445{transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);}
.m23_c00445{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m3f_c00445{transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);}
.md9_c00445{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m32_c00445{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m10a_c00445{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.m27_c00445{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m31_c00445{transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);}
.m2b_c00445{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m29_c00445{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.ma6_c00445{transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);}
.mf5_c00445{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.m4c_c00445{transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);}
.m21_c00445{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m9_c00445{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m4a_c00445{transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);}
.m61_c00445{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m38_c00445{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.mfd_c00445{transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);}
.m100_c00445{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m8d_c00445{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.mc2_c00445{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m8_c00445{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m72_c00445{transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);}
.m9a_c00445{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m46_c00445{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m54_c00445{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.ma3_c00445{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m19_c00445{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.ma0_c00445{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.mdd_c00445{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mda_c00445{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mb_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);}
.m6b_c00445{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mc4_c00445{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.mba_c00445{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mbb_c00445{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m6_c00445{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m3a_c00445{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.md1_c00445{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m67_c00445{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m3b_c00445{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m62_c00445{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mc1_c00445{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m9e_c00445{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m57_c00445{transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);}
.m63_c00445{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m69_c00445{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mb5_c00445{transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);}
.m7a_c00445{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m13_c00445{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.mb7_c00445{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m102_c00445{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m112_c00445{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m99_c00445{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m94_c00445{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m111_c00445{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m16_c00445{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);}
.m42_c00445{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m106_c00445{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m7b_c00445{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.md8_c00445{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m77_c00445{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m64_c00445{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m44_c00445{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.m4f_c00445{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m73_c00445{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m110_c00445{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m10_c00445{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m5e_c00445{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mc6_c00445{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m78_c00445{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m6c_c00445{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.md_c00445{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.mc0_c00445{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m26_c00445{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m7c_c00445{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mf3_c00445{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m7f_c00445{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mbd_c00445{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m7_c00445{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.mea_c00445{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.m10e_c00445{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m10c_c00445{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m5_c00445{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m84_c00445{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m66_c00445{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m6e_c00445{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mf6_c00445{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m9f_c00445{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m9c_c00445{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m104_c00445{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m97_c00445{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mfa_c00445{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.md5_c00445{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m101_c00445{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m10f_c00445{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m65_c00445{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.mbf_c00445{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m39_c00445{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.md4_c00445{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);}
.m7d_c00445{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.md6_c00445{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.ma_c00445{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.ma7_c00445{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.med_c00445{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m87_c00445{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.mec_c00445{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.ma9_c00445{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m52_c00445{transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);}
.m76_c00445{transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);}
.m6a_c00445{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mbc_c00445{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m47_c00445{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.mcd_c00445{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mb8_c00445{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m8a_c00445{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mab_c00445{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m48_c00445{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m75_c00445{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m3_c00445{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.ma2_c00445{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m1a_c00445{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m8b_c00445{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m14_c00445{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m17_c00445{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.m1b_c00445{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m71_c00445{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m50_c00445{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m9d_c00445{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.md3_c00445{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.ma1_c00445{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);}
.mc5_c00445{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.me8_c00445{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.me0_c00445{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mf7_c00445{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m41_c00445{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);}
.m81_c00445{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mc9_c00445{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m49_c00445{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m109_c00445{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.me_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);}
.m58_c00445{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m1f_c00445{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.md2_c00445{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m1e_c00445{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m2f_c00445{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m24_c00445{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m1_c00445{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.mb9_c00445{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m2a_c00445{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);}
.mb0_c00445{transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);}
.m33_c00445{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.mc_c00445{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m25_c00445{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m22_c00445{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m88_c00445{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m4b_c00445{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.m40_c00445{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m18_c00445{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m43_c00445{transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);}
.m53_c00445{transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);}
.m2d_c00445{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mee_c00445{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.mff_c00445{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m28_c00445{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m45_c00445{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);}
.m51_c00445{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m83_c00445{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mae_c00445{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m4_c00445{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m89_c00445{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.me7_c00445{transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);}
.m74_c00445{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m79_c00445{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m8f_c00445{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m90_c00445{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m108_c00445{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.m30_c00445{transform:matrix(0.794872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.794872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.794872,0.000000,0.000000,0.250000,0,0);}
.m85_c00445{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.meb_c00445{transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);}
.me1_c00445{transform:matrix(0.810897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.810897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.810897,0.000000,0.000000,0.250000,0,0);}
.maa_c00445{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m56_c00445{transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);}
.m5d_c00445{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00445{vertical-align:0.000000px;}
.v1_c00445{vertical-align:12.000000px;}
.ls0_c00445{letter-spacing:0.000000px;}
.sc__c00445{text-shadow:none;}
.sc0_c00445{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00445{-webkit-text-stroke:0px transparent;}
.sc0_c00445{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00445{word-spacing:-6.425697px;}
.ws1_c00445{word-spacing:-6.024098px;}
.ws2_c00445{word-spacing:-3.839879px;}
.ws4_c00445{word-spacing:0.000000px;}
.ws3_c00445{word-spacing:0.414013px;}
.fc0_c00445{color:transparent;}
.fs7_c00445{font-size:3.420000px;}
.fs6_c00445{font-size:13.620000px;}
.fs3_c00445{font-size:18.720000px;}
.fs1_c00445{font-size:20.400000px;}
.fs2_c00445{font-size:25.500000px;}
.fs4_c00445{font-size:28.920000px;}
.fs5_c00445{font-size:32.340000px;}
.fs0_c00445{font-size:35.700000px;}
.fs8_c00445{font-size:39.120000px;}
.y0_c00445{bottom:0.000000px;}
.yde_c00445{bottom:251.745000px;}
.ydd_c00445{bottom:252.630000px;}
.ydc_c00445{bottom:253.905000px;}
.yd9_c00445{bottom:271.245000px;}
.yd8_c00445{bottom:273.405000px;}
.ydb_c00445{bottom:273.630000px;}
.yda_c00445{bottom:274.470000px;}
.yd3_c00445{bottom:290.745000px;}
.yd7_c00445{bottom:290.970000px;}
.yd4_c00445{bottom:292.905000px;}
.yd6_c00445{bottom:293.130000px;}
.yd5_c00445{bottom:293.970000px;}
.ycc_c00445{bottom:307.905000px;}
.yd2_c00445{bottom:309.405000px;}
.ycf_c00445{bottom:310.245000px;}
.yce_c00445{bottom:311.130000px;}
.yd0_c00445{bottom:311.745000px;}
.ycd_c00445{bottom:312.405000px;}
.yd1_c00445{bottom:313.905000px;}
.yc9_c00445{bottom:330.180000px;}
.ycb_c00445{bottom:331.245000px;}
.yc5_c00445{bottom:331.905000px;}
.yc7_c00445{bottom:332.130000px;}
.yc8_c00445{bottom:332.325000px;}
.yca_c00445{bottom:332.970000px;}
.yc6_c00445{bottom:333.405000px;}
.yc3_c00445{bottom:350.745000px;}
.yc1_c00445{bottom:351.405000px;}
.yc2_c00445{bottom:352.905000px;}
.yc4_c00445{bottom:353.970000px;}
.ybf_c00445{bottom:368.970000px;}
.yc0_c00445{bottom:369.825000px;}
.ybc_c00445{bottom:370.245000px;}
.ybb_c00445{bottom:370.905000px;}
.ybe_c00445{bottom:371.325000px;}
.ybd_c00445{bottom:372.405000px;}
.yb9_c00445{bottom:389.745000px;}
.yba_c00445{bottom:391.470000px;}
.yb7_c00445{bottom:391.905000px;}
.yb8_c00445{bottom:392.970000px;}
.yb2_c00445{bottom:410.130000px;}
.yb4_c00445{bottom:410.745000px;}
.yb3_c00445{bottom:410.970000px;}
.yb1_c00445{bottom:411.405000px;}
.yb5_c00445{bottom:411.630000px;}
.yb6_c00445{bottom:412.470000px;}
.yab_c00445{bottom:427.905000px;}
.yae_c00445{bottom:429.825000px;}
.yac_c00445{bottom:430.050000px;}
.yad_c00445{bottom:430.905000px;}
.yaf_c00445{bottom:432.405000px;}
.yb0_c00445{bottom:433.470000px;}
.ya6_c00445{bottom:449.745000px;}
.ya9_c00445{bottom:450.405000px;}
.ya8_c00445{bottom:450.630000px;}
.yaa_c00445{bottom:450.825000px;}
.ya7_c00445{bottom:451.905000px;}
.ya5_c00445{bottom:469.245000px;}
.ya0_c00445{bottom:488.325000px;}
.ya3_c00445{bottom:488.745000px;}
.ya1_c00445{bottom:489.630000px;}
.ya4_c00445{bottom:490.470000px;}
.ya2_c00445{bottom:490.905000px;}
.y9d_c00445{bottom:508.245000px;}
.y9b_c00445{bottom:508.905000px;}
.y9f_c00445{bottom:509.130000px;}
.y9e_c00445{bottom:509.325000px;}
.y9c_c00445{bottom:510.405000px;}
.y99_c00445{bottom:527.325000px;}
.y97_c00445{bottom:527.745000px;}
.y98_c00445{bottom:529.470000px;}
.y96_c00445{bottom:529.905000px;}
.y9a_c00445{bottom:530.970000px;}
.y94_c00445{bottom:547.245000px;}
.y93_c00445{bottom:549.405000px;}
.y95_c00445{bottom:550.470000px;}
.y90_c00445{bottom:566.745000px;}
.y91_c00445{bottom:566.970000px;}
.y8f_c00445{bottom:568.905000px;}
.y92_c00445{bottom:569.970000px;}
.y8d_c00445{bottom:585.405000px;}
.y8e_c00445{bottom:586.245000px;}
.y8c_c00445{bottom:588.405000px;}
.y8a_c00445{bottom:604.905000px;}
.y88_c00445{bottom:607.245000px;}
.y87_c00445{bottom:607.905000px;}
.y8b_c00445{bottom:608.970000px;}
.y89_c00445{bottom:609.405000px;}
.y86_c00445{bottom:626.745000px;}
.y83_c00445{bottom:627.405000px;}
.y85_c00445{bottom:628.470000px;}
.y84_c00445{bottom:628.905000px;}
.y81_c00445{bottom:645.825000px;}
.y82_c00445{bottom:646.245000px;}
.y7d_c00445{bottom:646.905000px;}
.y7f_c00445{bottom:647.130000px;}
.y80_c00445{bottom:647.970000px;}
.y7e_c00445{bottom:648.405000px;}
.y7b_c00445{bottom:665.745000px;}
.y77_c00445{bottom:666.405000px;}
.y78_c00445{bottom:666.630000px;}
.y79_c00445{bottom:666.825000px;}
.y7c_c00445{bottom:667.905000px;}
.y7a_c00445{bottom:668.970000px;}
.y76_c00445{bottom:685.245000px;}
.y71_c00445{bottom:685.905000px;}
.y73_c00445{bottom:686.130000px;}
.y74_c00445{bottom:686.970000px;}
.y72_c00445{bottom:687.405000px;}
.y75_c00445{bottom:688.470000px;}
.y6c_c00445{bottom:702.405000px;}
.y70_c00445{bottom:703.905000px;}
.y6e_c00445{bottom:704.745000px;}
.y6f_c00445{bottom:705.630000px;}
.y6b_c00445{bottom:706.470000px;}
.y6d_c00445{bottom:706.905000px;}
.y69_c00445{bottom:726.405000px;}
.y6a_c00445{bottom:727.470000px;}
.y68_c00445{bottom:742.905000px;}
.y64_c00445{bottom:743.745000px;}
.y65_c00445{bottom:745.905000px;}
.y66_c00445{bottom:746.130000px;}
.y67_c00445{bottom:746.970000px;}
.y5f_c00445{bottom:763.245000px;}
.y62_c00445{bottom:764.325000px;}
.y60_c00445{bottom:764.745000px;}
.y61_c00445{bottom:765.405000px;}
.y63_c00445{bottom:766.905000px;}
.y5b_c00445{bottom:783.825000px;}
.y5d_c00445{bottom:784.245000px;}
.y59_c00445{bottom:784.905000px;}
.y5e_c00445{bottom:785.130000px;}
.y5a_c00445{bottom:785.970000px;}
.y5c_c00445{bottom:786.405000px;}
.y56_c00445{bottom:802.245000px;}
.y57_c00445{bottom:802.470000px;}
.y54_c00445{bottom:804.405000px;}
.y55_c00445{bottom:804.630000px;}
.y58_c00445{bottom:805.905000px;}
.y51_c00445{bottom:822.825000px;}
.y52_c00445{bottom:824.130000px;}
.y50_c00445{bottom:825.405000px;}
.y53_c00445{bottom:825.630000px;}
.y4f_c00445{bottom:842.745000px;}
.y4e_c00445{bottom:844.905000px;}
.y4a_c00445{bottom:862.245000px;}
.y4c_c00445{bottom:864.405000px;}
.y4b_c00445{bottom:864.420000px;}
.y4d_c00445{bottom:864.630000px;}
.y46_c00445{bottom:884.325000px;}
.y47_c00445{bottom:884.550000px;}
.y43_c00445{bottom:884.970000px;}
.y42_c00445{bottom:885.195000px;}
.y48_c00445{bottom:885.405000px;}
.y49_c00445{bottom:885.630000px;}
.y44_c00445{bottom:886.470000px;}
.y45_c00445{bottom:887.550000px;}
.y3a_c00445{bottom:899.130000px;}
.y41_c00445{bottom:899.325000px;}
.y3b_c00445{bottom:899.970000px;}
.y3e_c00445{bottom:900.405000px;}
.y3d_c00445{bottom:900.630000px;}
.y3c_c00445{bottom:901.470000px;}
.y3f_c00445{bottom:901.695000px;}
.y40_c00445{bottom:902.550000px;}
.y39_c00445{bottom:912.825000px;}
.y37_c00445{bottom:928.905000px;}
.y35_c00445{bottom:929.550000px;}
.y32_c00445{bottom:929.970000px;}
.y34_c00445{bottom:930.405000px;}
.y33_c00445{bottom:931.050000px;}
.y36_c00445{bottom:931.470000px;}
.y38_c00445{bottom:932.550000px;}
.y31_c00445{bottom:943.050000px;}
.y30_c00445{bottom:943.470000px;}
.y2e_c00445{bottom:943.905000px;}
.y2c_c00445{bottom:944.130000px;}
.y2f_c00445{bottom:944.970000px;}
.y2d_c00445{bottom:946.050000px;}
.y2b_c00445{bottom:958.905000px;}
.y29_c00445{bottom:959.970000px;}
.y2a_c00445{bottom:961.050000px;}
.y27_c00445{bottom:971.970000px;}
.y26_c00445{bottom:972.825000px;}
.y24_c00445{bottom:973.050000px;}
.y28_c00445{bottom:973.905000px;}
.y25_c00445{bottom:974.970000px;}
.y21_c00445{bottom:986.970000px;}
.y20_c00445{bottom:988.905000px;}
.y1f_c00445{bottom:989.130000px;}
.y22_c00445{bottom:989.970000px;}
.y23_c00445{bottom:991.050000px;}
.y1b_c00445{bottom:1002.825000px;}
.y1a_c00445{bottom:1003.905000px;}
.y19_c00445{bottom:1004.550000px;}
.y1d_c00445{bottom:1004.970000px;}
.y1c_c00445{bottom:1005.195000px;}
.y1e_c00445{bottom:1006.050000px;}
.y13_c00445{bottom:1016.550000px;}
.y14_c00445{bottom:1017.405000px;}
.y15_c00445{bottom:1017.630000px;}
.y18_c00445{bottom:1018.050000px;}
.y17_c00445{bottom:1018.470000px;}
.y16_c00445{bottom:1019.550000px;}
.y12_c00445{bottom:1031.325000px;}
.y11_c00445{bottom:1032.405000px;}
.y10_c00445{bottom:1032.630000px;}
.yf_c00445{bottom:1033.470000px;}
.ye_c00445{bottom:1034.550000px;}
.yd_c00445{bottom:1046.325000px;}
.yb_c00445{bottom:1047.405000px;}
.ya_c00445{bottom:1047.630000px;}
.y8_c00445{bottom:1048.050000px;}
.y9_c00445{bottom:1048.470000px;}
.yc_c00445{bottom:1049.550000px;}
.y3_c00445{bottom:1060.470000px;}
.y6_c00445{bottom:1062.405000px;}
.y5_c00445{bottom:1062.630000px;}
.y4_c00445{bottom:1063.470000px;}
.y7_c00445{bottom:1064.550000px;}
.y1_c00445{bottom:1097.745000px;}
.y2_c00445{bottom:1099.050000px;}
.h8_c00445{height:4.206533px;}
.h7_c00445{height:16.752334px;}
.h4_c00445{height:23.025234px;}
.h2_c00445{height:25.091602px;}
.h3_c00445{height:31.364502px;}
.h5_c00445{height:35.571035px;}
.h6_c00445{height:39.777568px;}
.h9_c00445{height:43.364502px;}
.h1_c00445{height:43.910303px;}
.ha_c00445{height:48.116836px;}
.h0_c00445{height:1335.000000px;}
.w0_c00445{width:880.500000px;}
.x0_c00445{left:0.000000px;}
.x10d_c00445{left:148.500000px;}
.x101_c00445{left:150.000000px;}
.x1_c00445{left:151.500000px;}
.xf_c00445{left:153.420000px;}
.x3d_c00445{left:163.500000px;}
.x35_c00445{left:166.080000px;}
.x3_c00445{left:167.580000px;}
.x10_c00445{left:169.500000px;}
.xb0_c00445{left:171.420000px;}
.x67_c00445{left:175.080000px;}
.xe1_c00445{left:178.500000px;}
.xce_c00445{left:180.000000px;}
.xfa_c00445{left:183.000000px;}
.x4_c00445{left:184.080000px;}
.x4b_c00445{left:187.920000px;}
.x7f_c00445{left:189.000000px;}
.x36_c00445{left:190.500000px;}
.xe9_c00445{left:195.000000px;}
.x102_c00445{left:199.500000px;}
.x91_c00445{left:201.000000px;}
.x3e_c00445{left:202.080000px;}
.xed_c00445{left:205.500000px;}
.x9a_c00445{left:207.000000px;}
.xa0_c00445{left:208.080000px;}
.xf5_c00445{left:213.000000px;}
.x4c_c00445{left:214.500000px;}
.x59_c00445{left:216.000000px;}
.x21_c00445{left:217.500000px;}
.x92_c00445{left:219.000000px;}
.xc9_c00445{left:220.080000px;}
.xa7_c00445{left:221.580000px;}
.xd9_c00445{left:223.920000px;}
.xcf_c00445{left:226.500000px;}
.x89_c00445{left:229.500000px;}
.x22_c00445{left:233.580000px;}
.x3f_c00445{left:235.080000px;}
.x103_c00445{left:238.080000px;}
.xa8_c00445{left:241.920000px;}
.x18_c00445{left:243.000000px;}
.xb1_c00445{left:244.500000px;}
.x4d_c00445{left:247.500000px;}
.x2e_c00445{left:249.000000px;}
.x11_c00445{left:250.920000px;}
.x6d_c00445{left:255.000000px;}
.xfd_c00445{left:257.580000px;}
.x5_c00445{left:259.500000px;}
.x12_c00445{left:261.000000px;}
.x108_c00445{left:262.500000px;}
.x23_c00445{left:264.000000px;}
.xa1_c00445{left:267.000000px;}
.xa9_c00445{left:268.080000px;}
.x5a_c00445{left:271.500000px;}
.x93_c00445{left:273.000000px;}
.x19_c00445{left:274.080000px;}
.x6e_c00445{left:276.000000px;}
.xe2_c00445{left:277.500000px;}
.x40_c00445{left:279.420000px;}
.x8a_c00445{left:280.500000px;}
.x6_c00445{left:282.000000px;}
.xb5_c00445{left:283.500000px;}
.xc2_c00445{left:286.080000px;}
.x77_c00445{left:288.000000px;}
.xa2_c00445{left:289.500000px;}
.xd0_c00445{left:291.420000px;}
.x94_c00445{left:292.500000px;}
.x24_c00445{left:295.500000px;}
.x68_c00445{left:298.500000px;}
.x37_c00445{left:302.580000px;}
.xb6_c00445{left:304.920000px;}
.x13_c00445{left:306.000000px;}
.xdd_c00445{left:307.080000px;}
.x6f_c00445{left:309.420000px;}
.xe3_c00445{left:311.580000px;}
.x62_c00445{left:313.500000px;}
.xbd_c00445{left:314.580000px;}
.xb2_c00445{left:316.500000px;}
.x104_c00445{left:318.420000px;}
.x80_c00445{left:319.920000px;}
.x41_c00445{left:321.000000px;}
.xc3_c00445{left:322.500000px;}
.x7_c00445{left:324.000000px;}
.xca_c00445{left:325.080000px;}
.xee_c00445{left:327.000000px;}
.x2f_c00445{left:328.080000px;}
.x25_c00445{left:330.420000px;}
.xea_c00445{left:331.500000px;}
.x14_c00445{left:332.580000px;}
.x78_c00445{left:334.080000px;}
.xa3_c00445{left:337.500000px;}
.x5b_c00445{left:338.580000px;}
.xf6_c00445{left:340.500000px;}
.x26_c00445{left:345.000000px;}
.x10e_c00445{left:346.080000px;}
.xd1_c00445{left:348.000000px;}
.xe4_c00445{left:349.920000px;}
.x1a_c00445{left:351.000000px;}
.x79_c00445{left:352.920000px;}
.x42_c00445{left:355.080000px;}
.xf2_c00445{left:357.420000px;}
.x81_c00445{left:358.500000px;}
.x9b_c00445{left:360.420000px;}
.x4e_c00445{left:361.500000px;}
.x1b_c00445{left:363.000000px;}
.xbe_c00445{left:364.920000px;}
.x8b_c00445{left:367.920000px;}
.xaa_c00445{left:371.580000px;}
.xcb_c00445{left:373.920000px;}
.x15_c00445{left:375.000000px;}
.x105_c00445{left:376.500000px;}
.x70_c00445{left:378.420000px;}
.x7a_c00445{left:379.920000px;}
.xde_c00445{left:381.420000px;}
.x43_c00445{left:382.500000px;}
.x30_c00445{left:385.500000px;}
.xfe_c00445{left:387.000000px;}
.x38_c00445{left:390.000000px;}
.xc4_c00445{left:391.080000px;}
.x5c_c00445{left:393.420000px;}
.x8_c00445{left:396.000000px;}
.x63_c00445{left:399.000000px;}
.x1c_c00445{left:401.580000px;}
.x16_c00445{left:405.420000px;}
.xda_c00445{left:406.500000px;}
.x2_c00445{left:408.000000px;}
.xef_c00445{left:411.000000px;}
.xa4_c00445{left:412.500000px;}
.x9c_c00445{left:414.420000px;}
.x69_c00445{left:415.500000px;}
.xab_c00445{left:417.420000px;}
.x4f_c00445{left:421.500000px;}
.x10b_c00445{left:424.500000px;}
.x7b_c00445{left:426.000000px;}
.x44_c00445{left:427.080000px;}
.x10f_c00445{left:429.000000px;}
.x31_c00445{left:430.080000px;}
.x17_c00445{left:432.000000px;}
.x82_c00445{left:433.080000px;}
.x1d_c00445{left:434.580000px;}
.x39_c00445{left:436.920000px;}
.x9_c00445{left:439.080000px;}
.xf7_c00445{left:442.080000px;}
.x8c_c00445{left:443.580000px;}
.xf3_c00445{left:445.920000px;}
.xff_c00445{left:447.420000px;}
.x27_c00445{left:448.500000px;}
.x64_c00445{left:450.000000px;}
.x50_c00445{left:453.000000px;}
.x95_c00445{left:454.500000px;}
.xb7_c00445{left:456.000000px;}
.x32_c00445{left:457.080000px;}
.x71_c00445{left:459.000000px;}
.xa5_c00445{left:460.080000px;}
.xd2_c00445{left:463.500000px;}
.x83_c00445{left:468.420000px;}
.x45_c00445{left:469.500000px;}
.x5d_c00445{left:471.000000px;}
.xac_c00445{left:472.500000px;}
.x72_c00445{left:475.080000px;}
.xb3_c00445{left:477.000000px;}
.x1e_c00445{left:478.080000px;}
.x3a_c00445{left:479.580000px;}
.x111_c00445{left:481.500000px;}
.x6a_c00445{left:483.420000px;}
.xe5_c00445{left:484.500000px;}
.x28_c00445{left:486.420000px;}
.xb8_c00445{left:489.420000px;}
.xc5_c00445{left:495.000000px;}
.x7c_c00445{left:496.920000px;}
.x29_c00445{left:500.580000px;}
.x96_c00445{left:502.920000px;}
.xa6_c00445{left:507.000000px;}
.xbf_c00445{left:510.000000px;}
.x46_c00445{left:511.920000px;}
.x100_c00445{left:513.000000px;}
.x6b_c00445{left:517.080000px;}
.xe6_c00445{left:518.580000px;}
.xa_c00445{left:520.080000px;}
.x73_c00445{left:522.000000px;}
.x47_c00445{left:523.500000px;}
.xc6_c00445{left:524.580000px;}
.xf4_c00445{left:528.000000px;}
.x51_c00445{left:529.500000px;}
.x33_c00445{left:531.420000px;}
.xcc_c00445{left:532.920000px;}
.x8d_c00445{left:534.420000px;}
.x9d_c00445{left:535.500000px;}
.x65_c00445{left:537.420000px;}
.xe7_c00445{left:538.500000px;}
.x109_c00445{left:541.920000px;}
.x112_c00445{left:543.000000px;}
.x5e_c00445{left:544.080000px;}
.xdb_c00445{left:547.500000px;}
.xfb_c00445{left:549.000000px;}
.xd5_c00445{left:552.000000px;}
.x1f_c00445{left:555.420000px;}
.x34_c00445{left:558.000000px;}
.x97_c00445{left:559.500000px;}
.xad_c00445{left:561.000000px;}
.xb9_c00445{left:562.500000px;}
.xc7_c00445{left:564.000000px;}
.x8e_c00445{left:565.500000px;}
.x74_c00445{left:567.420000px;}
.xd6_c00445{left:570.000000px;}
.x52_c00445{left:571.920000px;}
.x48_c00445{left:573.000000px;}
.x84_c00445{left:574.500000px;}
.xb_c00445{left:575.580000px;}
.x2a_c00445{left:578.580000px;}
.xba_c00445{left:580.920000px;}
.x20_c00445{left:582.000000px;}
.x7d_c00445{left:586.080000px;}
.x5f_c00445{left:588.000000px;}
.x53_c00445{left:589.080000px;}
.x8f_c00445{left:592.080000px;}
.x3b_c00445{left:593.580000px;}
.x75_c00445{left:595.500000px;}
.xc8_c00445{left:596.580000px;}
.x98_c00445{left:598.920000px;}
.x9e_c00445{left:600.420000px;}
.xd3_c00445{left:601.500000px;}
.xae_c00445{left:604.500000px;}
.x49_c00445{left:605.580000px;}
.x85_c00445{left:609.000000px;}
.x10a_c00445{left:610.500000px;}
.x54_c00445{left:612.000000px;}
.xdf_c00445{left:613.500000px;}
.xb4_c00445{left:615.000000px;}
.xc_c00445{left:617.580000px;}
.xbb_c00445{left:621.000000px;}
.x60_c00445{left:622.920000px;}
.xf0_c00445{left:624.000000px;}
.x55_c00445{left:630.420000px;}
.x86_c00445{left:633.420000px;}
.x7e_c00445{left:634.920000px;}
.x106_c00445{left:636.000000px;}
.xd_c00445{left:637.080000px;}
.xf8_c00445{left:639.000000px;}
.xeb_c00445{left:642.000000px;}
.x10c_c00445{left:645.000000px;}
.x4a_c00445{left:647.580000px;}
.x6c_c00445{left:649.500000px;}
.x56_c00445{left:652.080000px;}
.x2b_c00445{left:657.000000px;}
.x76_c00445{left:658.500000px;}
.xaf_c00445{left:660.000000px;}
.x87_c00445{left:661.080000px;}
.xf1_c00445{left:663.000000px;}
.xe_c00445{left:664.500000px;}
.xc0_c00445{left:666.000000px;}
.xd7_c00445{left:669.420000px;}
.x99_c00445{left:672.420000px;}
.x2c_c00445{left:674.580000px;}
.x57_c00445{left:676.500000px;}
.xf9_c00445{left:678.000000px;}
.x3c_c00445{left:679.080000px;}
.x66_c00445{left:682.080000px;}
.xbc_c00445{left:684.420000px;}
.x110_c00445{left:685.920000px;}
.xdc_c00445{left:687.420000px;}
.x9f_c00445{left:688.500000px;}
.x107_c00445{left:689.580000px;}
.x61_c00445{left:691.080000px;}
.xcd_c00445{left:694.500000px;}
.x2d_c00445{left:697.500000px;}
.x90_c00445{left:699.420000px;}
.xc1_c00445{left:700.920000px;}
.xfc_c00445{left:702.000000px;}
.x88_c00445{left:703.500000px;}
.xd4_c00445{left:705.420000px;}
.xe8_c00445{left:708.420000px;}
.xd8_c00445{left:709.920000px;}
.x58_c00445{left:711.000000px;}
.xe0_c00445{left:716.580000px;}
.xec_c00445{left:723.000000px;}
@media print{
.v0_c00445{vertical-align:0.000000pt;}
.v1_c00445{vertical-align:10.666667pt;}
.ls0_c00445{letter-spacing:0.000000pt;}
.ws0_c00445{word-spacing:-5.711730pt;}
.ws1_c00445{word-spacing:-5.354754pt;}
.ws2_c00445{word-spacing:-3.413226pt;}
.ws4_c00445{word-spacing:0.000000pt;}
.ws3_c00445{word-spacing:0.368011pt;}
.fs7_c00445{font-size:3.040000pt;}
.fs6_c00445{font-size:12.106667pt;}
.fs3_c00445{font-size:16.640000pt;}
.fs1_c00445{font-size:18.133333pt;}
.fs2_c00445{font-size:22.666667pt;}
.fs4_c00445{font-size:25.706667pt;}
.fs5_c00445{font-size:28.746667pt;}
.fs0_c00445{font-size:31.733333pt;}
.fs8_c00445{font-size:34.773333pt;}
.y0_c00445{bottom:0.000000pt;}
.yde_c00445{bottom:223.773333pt;}
.ydd_c00445{bottom:224.560000pt;}
.ydc_c00445{bottom:225.693333pt;}
.yd9_c00445{bottom:241.106667pt;}
.yd8_c00445{bottom:243.026667pt;}
.ydb_c00445{bottom:243.226667pt;}
.yda_c00445{bottom:243.973333pt;}
.yd3_c00445{bottom:258.440000pt;}
.yd7_c00445{bottom:258.640000pt;}
.yd4_c00445{bottom:260.360000pt;}
.yd6_c00445{bottom:260.560000pt;}
.yd5_c00445{bottom:261.306667pt;}
.ycc_c00445{bottom:273.693333pt;}
.yd2_c00445{bottom:275.026667pt;}
.ycf_c00445{bottom:275.773333pt;}
.yce_c00445{bottom:276.560000pt;}
.yd0_c00445{bottom:277.106667pt;}
.ycd_c00445{bottom:277.693333pt;}
.yd1_c00445{bottom:279.026667pt;}
.yc9_c00445{bottom:293.493333pt;}
.ycb_c00445{bottom:294.440000pt;}
.yc5_c00445{bottom:295.026667pt;}
.yc7_c00445{bottom:295.226667pt;}
.yc8_c00445{bottom:295.400000pt;}
.yca_c00445{bottom:295.973333pt;}
.yc6_c00445{bottom:296.360000pt;}
.yc3_c00445{bottom:311.773333pt;}
.yc1_c00445{bottom:312.360000pt;}
.yc2_c00445{bottom:313.693333pt;}
.yc4_c00445{bottom:314.640000pt;}
.ybf_c00445{bottom:327.973333pt;}
.yc0_c00445{bottom:328.733333pt;}
.ybc_c00445{bottom:329.106667pt;}
.ybb_c00445{bottom:329.693333pt;}
.ybe_c00445{bottom:330.066667pt;}
.ybd_c00445{bottom:331.026667pt;}
.yb9_c00445{bottom:346.440000pt;}
.yba_c00445{bottom:347.973333pt;}
.yb7_c00445{bottom:348.360000pt;}
.yb8_c00445{bottom:349.306667pt;}
.yb2_c00445{bottom:364.560000pt;}
.yb4_c00445{bottom:365.106667pt;}
.yb3_c00445{bottom:365.306667pt;}
.yb1_c00445{bottom:365.693333pt;}
.yb5_c00445{bottom:365.893333pt;}
.yb6_c00445{bottom:366.640000pt;}
.yab_c00445{bottom:380.360000pt;}
.yae_c00445{bottom:382.066667pt;}
.yac_c00445{bottom:382.266667pt;}
.yad_c00445{bottom:383.026667pt;}
.yaf_c00445{bottom:384.360000pt;}
.yb0_c00445{bottom:385.306667pt;}
.ya6_c00445{bottom:399.773333pt;}
.ya9_c00445{bottom:400.360000pt;}
.ya8_c00445{bottom:400.560000pt;}
.yaa_c00445{bottom:400.733333pt;}
.ya7_c00445{bottom:401.693333pt;}
.ya5_c00445{bottom:417.106667pt;}
.ya0_c00445{bottom:434.066667pt;}
.ya3_c00445{bottom:434.440000pt;}
.ya1_c00445{bottom:435.226667pt;}
.ya4_c00445{bottom:435.973333pt;}
.ya2_c00445{bottom:436.360000pt;}
.y9d_c00445{bottom:451.773333pt;}
.y9b_c00445{bottom:452.360000pt;}
.y9f_c00445{bottom:452.560000pt;}
.y9e_c00445{bottom:452.733333pt;}
.y9c_c00445{bottom:453.693333pt;}
.y99_c00445{bottom:468.733333pt;}
.y97_c00445{bottom:469.106667pt;}
.y98_c00445{bottom:470.640000pt;}
.y96_c00445{bottom:471.026667pt;}
.y9a_c00445{bottom:471.973333pt;}
.y94_c00445{bottom:486.440000pt;}
.y93_c00445{bottom:488.360000pt;}
.y95_c00445{bottom:489.306667pt;}
.y90_c00445{bottom:503.773333pt;}
.y91_c00445{bottom:503.973333pt;}
.y8f_c00445{bottom:505.693333pt;}
.y92_c00445{bottom:506.640000pt;}
.y8d_c00445{bottom:520.360000pt;}
.y8e_c00445{bottom:521.106667pt;}
.y8c_c00445{bottom:523.026667pt;}
.y8a_c00445{bottom:537.693333pt;}
.y88_c00445{bottom:539.773333pt;}
.y87_c00445{bottom:540.360000pt;}
.y8b_c00445{bottom:541.306667pt;}
.y89_c00445{bottom:541.693333pt;}
.y86_c00445{bottom:557.106667pt;}
.y83_c00445{bottom:557.693333pt;}
.y85_c00445{bottom:558.640000pt;}
.y84_c00445{bottom:559.026667pt;}
.y81_c00445{bottom:574.066667pt;}
.y82_c00445{bottom:574.440000pt;}
.y7d_c00445{bottom:575.026667pt;}
.y7f_c00445{bottom:575.226667pt;}
.y80_c00445{bottom:575.973333pt;}
.y7e_c00445{bottom:576.360000pt;}
.y7b_c00445{bottom:591.773333pt;}
.y77_c00445{bottom:592.360000pt;}
.y78_c00445{bottom:592.560000pt;}
.y79_c00445{bottom:592.733333pt;}
.y7c_c00445{bottom:593.693333pt;}
.y7a_c00445{bottom:594.640000pt;}
.y76_c00445{bottom:609.106667pt;}
.y71_c00445{bottom:609.693333pt;}
.y73_c00445{bottom:609.893333pt;}
.y74_c00445{bottom:610.640000pt;}
.y72_c00445{bottom:611.026667pt;}
.y75_c00445{bottom:611.973333pt;}
.y6c_c00445{bottom:624.360000pt;}
.y70_c00445{bottom:625.693333pt;}
.y6e_c00445{bottom:626.440000pt;}
.y6f_c00445{bottom:627.226667pt;}
.y6b_c00445{bottom:627.973333pt;}
.y6d_c00445{bottom:628.360000pt;}
.y69_c00445{bottom:645.693333pt;}
.y6a_c00445{bottom:646.640000pt;}
.y68_c00445{bottom:660.360000pt;}
.y64_c00445{bottom:661.106667pt;}
.y65_c00445{bottom:663.026667pt;}
.y66_c00445{bottom:663.226667pt;}
.y67_c00445{bottom:663.973333pt;}
.y5f_c00445{bottom:678.440000pt;}
.y62_c00445{bottom:679.400000pt;}
.y60_c00445{bottom:679.773333pt;}
.y61_c00445{bottom:680.360000pt;}
.y63_c00445{bottom:681.693333pt;}
.y5b_c00445{bottom:696.733333pt;}
.y5d_c00445{bottom:697.106667pt;}
.y59_c00445{bottom:697.693333pt;}
.y5e_c00445{bottom:697.893333pt;}
.y5a_c00445{bottom:698.640000pt;}
.y5c_c00445{bottom:699.026667pt;}
.y56_c00445{bottom:713.106667pt;}
.y57_c00445{bottom:713.306667pt;}
.y54_c00445{bottom:715.026667pt;}
.y55_c00445{bottom:715.226667pt;}
.y58_c00445{bottom:716.360000pt;}
.y51_c00445{bottom:731.400000pt;}
.y52_c00445{bottom:732.560000pt;}
.y50_c00445{bottom:733.693333pt;}
.y53_c00445{bottom:733.893333pt;}
.y4f_c00445{bottom:749.106667pt;}
.y4e_c00445{bottom:751.026667pt;}
.y4a_c00445{bottom:766.440000pt;}
.y4c_c00445{bottom:768.360000pt;}
.y4b_c00445{bottom:768.373333pt;}
.y4d_c00445{bottom:768.560000pt;}
.y46_c00445{bottom:786.066667pt;}
.y47_c00445{bottom:786.266667pt;}
.y43_c00445{bottom:786.640000pt;}
.y42_c00445{bottom:786.840000pt;}
.y48_c00445{bottom:787.026667pt;}
.y49_c00445{bottom:787.226667pt;}
.y44_c00445{bottom:787.973333pt;}
.y45_c00445{bottom:788.933333pt;}
.y3a_c00445{bottom:799.226667pt;}
.y41_c00445{bottom:799.400000pt;}
.y3b_c00445{bottom:799.973333pt;}
.y3e_c00445{bottom:800.360000pt;}
.y3d_c00445{bottom:800.560000pt;}
.y3c_c00445{bottom:801.306667pt;}
.y3f_c00445{bottom:801.506667pt;}
.y40_c00445{bottom:802.266667pt;}
.y39_c00445{bottom:811.400000pt;}
.y37_c00445{bottom:825.693333pt;}
.y35_c00445{bottom:826.266667pt;}
.y32_c00445{bottom:826.640000pt;}
.y34_c00445{bottom:827.026667pt;}
.y33_c00445{bottom:827.600000pt;}
.y36_c00445{bottom:827.973333pt;}
.y38_c00445{bottom:828.933333pt;}
.y31_c00445{bottom:838.266667pt;}
.y30_c00445{bottom:838.640000pt;}
.y2e_c00445{bottom:839.026667pt;}
.y2c_c00445{bottom:839.226667pt;}
.y2f_c00445{bottom:839.973333pt;}
.y2d_c00445{bottom:840.933333pt;}
.y2b_c00445{bottom:852.360000pt;}
.y29_c00445{bottom:853.306667pt;}
.y2a_c00445{bottom:854.266667pt;}
.y27_c00445{bottom:863.973333pt;}
.y26_c00445{bottom:864.733333pt;}
.y24_c00445{bottom:864.933333pt;}
.y28_c00445{bottom:865.693333pt;}
.y25_c00445{bottom:866.640000pt;}
.y21_c00445{bottom:877.306667pt;}
.y20_c00445{bottom:879.026667pt;}
.y1f_c00445{bottom:879.226667pt;}
.y22_c00445{bottom:879.973333pt;}
.y23_c00445{bottom:880.933333pt;}
.y1b_c00445{bottom:891.400000pt;}
.y1a_c00445{bottom:892.360000pt;}
.y19_c00445{bottom:892.933333pt;}
.y1d_c00445{bottom:893.306667pt;}
.y1c_c00445{bottom:893.506667pt;}
.y1e_c00445{bottom:894.266667pt;}
.y13_c00445{bottom:903.600000pt;}
.y14_c00445{bottom:904.360000pt;}
.y15_c00445{bottom:904.560000pt;}
.y18_c00445{bottom:904.933333pt;}
.y17_c00445{bottom:905.306667pt;}
.y16_c00445{bottom:906.266667pt;}
.y12_c00445{bottom:916.733333pt;}
.y11_c00445{bottom:917.693333pt;}
.y10_c00445{bottom:917.893333pt;}
.yf_c00445{bottom:918.640000pt;}
.ye_c00445{bottom:919.600000pt;}
.yd_c00445{bottom:930.066667pt;}
.yb_c00445{bottom:931.026667pt;}
.ya_c00445{bottom:931.226667pt;}
.y8_c00445{bottom:931.600000pt;}
.y9_c00445{bottom:931.973333pt;}
.yc_c00445{bottom:932.933333pt;}
.y3_c00445{bottom:942.640000pt;}
.y6_c00445{bottom:944.360000pt;}
.y5_c00445{bottom:944.560000pt;}
.y4_c00445{bottom:945.306667pt;}
.y7_c00445{bottom:946.266667pt;}
.y1_c00445{bottom:975.773333pt;}
.y2_c00445{bottom:976.933333pt;}
.h8_c00445{height:3.739141pt;}
.h7_c00445{height:14.890964pt;}
.h4_c00445{height:20.466875pt;}
.h2_c00445{height:22.303646pt;}
.h3_c00445{height:27.879557pt;}
.h5_c00445{height:31.618698pt;}
.h6_c00445{height:35.357839pt;}
.h9_c00445{height:38.546224pt;}
.h1_c00445{height:39.031380pt;}
.ha_c00445{height:42.770521pt;}
.h0_c00445{height:1186.666667pt;}
.w0_c00445{width:782.666667pt;}
.x0_c00445{left:0.000000pt;}
.x10d_c00445{left:132.000000pt;}
.x101_c00445{left:133.333333pt;}
.x1_c00445{left:134.666667pt;}
.xf_c00445{left:136.373333pt;}
.x3d_c00445{left:145.333333pt;}
.x35_c00445{left:147.626667pt;}
.x3_c00445{left:148.960000pt;}
.x10_c00445{left:150.666667pt;}
.xb0_c00445{left:152.373333pt;}
.x67_c00445{left:155.626667pt;}
.xe1_c00445{left:158.666667pt;}
.xce_c00445{left:160.000000pt;}
.xfa_c00445{left:162.666667pt;}
.x4_c00445{left:163.626667pt;}
.x4b_c00445{left:167.040000pt;}
.x7f_c00445{left:168.000000pt;}
.x36_c00445{left:169.333333pt;}
.xe9_c00445{left:173.333333pt;}
.x102_c00445{left:177.333333pt;}
.x91_c00445{left:178.666667pt;}
.x3e_c00445{left:179.626667pt;}
.xed_c00445{left:182.666667pt;}
.x9a_c00445{left:184.000000pt;}
.xa0_c00445{left:184.960000pt;}
.xf5_c00445{left:189.333333pt;}
.x4c_c00445{left:190.666667pt;}
.x59_c00445{left:192.000000pt;}
.x21_c00445{left:193.333333pt;}
.x92_c00445{left:194.666667pt;}
.xc9_c00445{left:195.626667pt;}
.xa7_c00445{left:196.960000pt;}
.xd9_c00445{left:199.040000pt;}
.xcf_c00445{left:201.333333pt;}
.x89_c00445{left:204.000000pt;}
.x22_c00445{left:207.626667pt;}
.x3f_c00445{left:208.960000pt;}
.x103_c00445{left:211.626667pt;}
.xa8_c00445{left:215.040000pt;}
.x18_c00445{left:216.000000pt;}
.xb1_c00445{left:217.333333pt;}
.x4d_c00445{left:220.000000pt;}
.x2e_c00445{left:221.333333pt;}
.x11_c00445{left:223.040000pt;}
.x6d_c00445{left:226.666667pt;}
.xfd_c00445{left:228.960000pt;}
.x5_c00445{left:230.666667pt;}
.x12_c00445{left:232.000000pt;}
.x108_c00445{left:233.333333pt;}
.x23_c00445{left:234.666667pt;}
.xa1_c00445{left:237.333333pt;}
.xa9_c00445{left:238.293333pt;}
.x5a_c00445{left:241.333333pt;}
.x93_c00445{left:242.666667pt;}
.x19_c00445{left:243.626667pt;}
.x6e_c00445{left:245.333333pt;}
.xe2_c00445{left:246.666667pt;}
.x40_c00445{left:248.373333pt;}
.x8a_c00445{left:249.333333pt;}
.x6_c00445{left:250.666667pt;}
.xb5_c00445{left:252.000000pt;}
.xc2_c00445{left:254.293333pt;}
.x77_c00445{left:256.000000pt;}
.xa2_c00445{left:257.333333pt;}
.xd0_c00445{left:259.040000pt;}
.x94_c00445{left:260.000000pt;}
.x24_c00445{left:262.666667pt;}
.x68_c00445{left:265.333333pt;}
.x37_c00445{left:268.960000pt;}
.xb6_c00445{left:271.040000pt;}
.x13_c00445{left:272.000000pt;}
.xdd_c00445{left:272.960000pt;}
.x6f_c00445{left:275.040000pt;}
.xe3_c00445{left:276.960000pt;}
.x62_c00445{left:278.666667pt;}
.xbd_c00445{left:279.626667pt;}
.xb2_c00445{left:281.333333pt;}
.x104_c00445{left:283.040000pt;}
.x80_c00445{left:284.373333pt;}
.x41_c00445{left:285.333333pt;}
.xc3_c00445{left:286.666667pt;}
.x7_c00445{left:288.000000pt;}
.xca_c00445{left:288.960000pt;}
.xee_c00445{left:290.666667pt;}
.x2f_c00445{left:291.626667pt;}
.x25_c00445{left:293.706667pt;}
.xea_c00445{left:294.666667pt;}
.x14_c00445{left:295.626667pt;}
.x78_c00445{left:296.960000pt;}
.xa3_c00445{left:300.000000pt;}
.x5b_c00445{left:300.960000pt;}
.xf6_c00445{left:302.666667pt;}
.x26_c00445{left:306.666667pt;}
.x10e_c00445{left:307.626667pt;}
.xd1_c00445{left:309.333333pt;}
.xe4_c00445{left:311.040000pt;}
.x1a_c00445{left:312.000000pt;}
.x79_c00445{left:313.706667pt;}
.x42_c00445{left:315.626667pt;}
.xf2_c00445{left:317.706667pt;}
.x81_c00445{left:318.666667pt;}
.x9b_c00445{left:320.373333pt;}
.x4e_c00445{left:321.333333pt;}
.x1b_c00445{left:322.666667pt;}
.xbe_c00445{left:324.373333pt;}
.x8b_c00445{left:327.040000pt;}
.xaa_c00445{left:330.293333pt;}
.xcb_c00445{left:332.373333pt;}
.x15_c00445{left:333.333333pt;}
.x105_c00445{left:334.666667pt;}
.x70_c00445{left:336.373333pt;}
.x7a_c00445{left:337.706667pt;}
.xde_c00445{left:339.040000pt;}
.x43_c00445{left:340.000000pt;}
.x30_c00445{left:342.666667pt;}
.xfe_c00445{left:344.000000pt;}
.x38_c00445{left:346.666667pt;}
.xc4_c00445{left:347.626667pt;}
.x5c_c00445{left:349.706667pt;}
.x8_c00445{left:352.000000pt;}
.x63_c00445{left:354.666667pt;}
.x1c_c00445{left:356.960000pt;}
.x16_c00445{left:360.373333pt;}
.xda_c00445{left:361.333333pt;}
.x2_c00445{left:362.666667pt;}
.xef_c00445{left:365.333333pt;}
.xa4_c00445{left:366.666667pt;}
.x9c_c00445{left:368.373333pt;}
.x69_c00445{left:369.333333pt;}
.xab_c00445{left:371.040000pt;}
.x4f_c00445{left:374.666667pt;}
.x10b_c00445{left:377.333333pt;}
.x7b_c00445{left:378.666667pt;}
.x44_c00445{left:379.626667pt;}
.x10f_c00445{left:381.333333pt;}
.x31_c00445{left:382.293333pt;}
.x17_c00445{left:384.000000pt;}
.x82_c00445{left:384.960000pt;}
.x1d_c00445{left:386.293333pt;}
.x39_c00445{left:388.373333pt;}
.x9_c00445{left:390.293333pt;}
.xf7_c00445{left:392.960000pt;}
.x8c_c00445{left:394.293333pt;}
.xf3_c00445{left:396.373333pt;}
.xff_c00445{left:397.706667pt;}
.x27_c00445{left:398.666667pt;}
.x64_c00445{left:400.000000pt;}
.x50_c00445{left:402.666667pt;}
.x95_c00445{left:404.000000pt;}
.xb7_c00445{left:405.333333pt;}
.x32_c00445{left:406.293333pt;}
.x71_c00445{left:408.000000pt;}
.xa5_c00445{left:408.960000pt;}
.xd2_c00445{left:412.000000pt;}
.x83_c00445{left:416.373333pt;}
.x45_c00445{left:417.333333pt;}
.x5d_c00445{left:418.666667pt;}
.xac_c00445{left:420.000000pt;}
.x72_c00445{left:422.293333pt;}
.xb3_c00445{left:424.000000pt;}
.x1e_c00445{left:424.960000pt;}
.x3a_c00445{left:426.293333pt;}
.x111_c00445{left:428.000000pt;}
.x6a_c00445{left:429.706667pt;}
.xe5_c00445{left:430.666667pt;}
.x28_c00445{left:432.373333pt;}
.xb8_c00445{left:435.040000pt;}
.xc5_c00445{left:440.000000pt;}
.x7c_c00445{left:441.706667pt;}
.x29_c00445{left:444.960000pt;}
.x96_c00445{left:447.040000pt;}
.xa6_c00445{left:450.666667pt;}
.xbf_c00445{left:453.333333pt;}
.x46_c00445{left:455.040000pt;}
.x100_c00445{left:456.000000pt;}
.x6b_c00445{left:459.626667pt;}
.xe6_c00445{left:460.960000pt;}
.xa_c00445{left:462.293333pt;}
.x73_c00445{left:464.000000pt;}
.x47_c00445{left:465.333333pt;}
.xc6_c00445{left:466.293333pt;}
.xf4_c00445{left:469.333333pt;}
.x51_c00445{left:470.666667pt;}
.x33_c00445{left:472.373333pt;}
.xcc_c00445{left:473.706667pt;}
.x8d_c00445{left:475.040000pt;}
.x9d_c00445{left:476.000000pt;}
.x65_c00445{left:477.706667pt;}
.xe7_c00445{left:478.666667pt;}
.x109_c00445{left:481.706667pt;}
.x112_c00445{left:482.666667pt;}
.x5e_c00445{left:483.626667pt;}
.xdb_c00445{left:486.666667pt;}
.xfb_c00445{left:488.000000pt;}
.xd5_c00445{left:490.666667pt;}
.x1f_c00445{left:493.706667pt;}
.x34_c00445{left:496.000000pt;}
.x97_c00445{left:497.333333pt;}
.xad_c00445{left:498.666667pt;}
.xb9_c00445{left:500.000000pt;}
.xc7_c00445{left:501.333333pt;}
.x8e_c00445{left:502.666667pt;}
.x74_c00445{left:504.373333pt;}
.xd6_c00445{left:506.666667pt;}
.x52_c00445{left:508.373333pt;}
.x48_c00445{left:509.333333pt;}
.x84_c00445{left:510.666667pt;}
.xb_c00445{left:511.626667pt;}
.x2a_c00445{left:514.293333pt;}
.xba_c00445{left:516.373333pt;}
.x20_c00445{left:517.333333pt;}
.x7d_c00445{left:520.960000pt;}
.x5f_c00445{left:522.666667pt;}
.x53_c00445{left:523.626667pt;}
.x8f_c00445{left:526.293333pt;}
.x3b_c00445{left:527.626667pt;}
.x75_c00445{left:529.333333pt;}
.xc8_c00445{left:530.293333pt;}
.x98_c00445{left:532.373333pt;}
.x9e_c00445{left:533.706667pt;}
.xd3_c00445{left:534.666667pt;}
.xae_c00445{left:537.333333pt;}
.x49_c00445{left:538.293333pt;}
.x85_c00445{left:541.333333pt;}
.x10a_c00445{left:542.666667pt;}
.x54_c00445{left:544.000000pt;}
.xdf_c00445{left:545.333333pt;}
.xb4_c00445{left:546.666667pt;}
.xc_c00445{left:548.960000pt;}
.xbb_c00445{left:552.000000pt;}
.x60_c00445{left:553.706667pt;}
.xf0_c00445{left:554.666667pt;}
.x55_c00445{left:560.373333pt;}
.x86_c00445{left:563.040000pt;}
.x7e_c00445{left:564.373333pt;}
.x106_c00445{left:565.333333pt;}
.xd_c00445{left:566.293333pt;}
.xf8_c00445{left:568.000000pt;}
.xeb_c00445{left:570.666667pt;}
.x10c_c00445{left:573.333333pt;}
.x4a_c00445{left:575.626667pt;}
.x6c_c00445{left:577.333333pt;}
.x56_c00445{left:579.626667pt;}
.x2b_c00445{left:584.000000pt;}
.x76_c00445{left:585.333333pt;}
.xaf_c00445{left:586.666667pt;}
.x87_c00445{left:587.626667pt;}
.xf1_c00445{left:589.333333pt;}
.xe_c00445{left:590.666667pt;}
.xc0_c00445{left:592.000000pt;}
.xd7_c00445{left:595.040000pt;}
.x99_c00445{left:597.706667pt;}
.x2c_c00445{left:599.626667pt;}
.x57_c00445{left:601.333333pt;}
.xf9_c00445{left:602.666667pt;}
.x3c_c00445{left:603.626667pt;}
.x66_c00445{left:606.293333pt;}
.xbc_c00445{left:608.373333pt;}
.x110_c00445{left:609.706667pt;}
.xdc_c00445{left:611.040000pt;}
.x9f_c00445{left:612.000000pt;}
.x107_c00445{left:612.960000pt;}
.x61_c00445{left:614.293333pt;}
.xcd_c00445{left:617.333333pt;}
.x2d_c00445{left:620.000000pt;}
.x90_c00445{left:621.706667pt;}
.xc1_c00445{left:623.040000pt;}
.xfc_c00445{left:624.000000pt;}
.x88_c00445{left:625.333333pt;}
.xd4_c00445{left:627.040000pt;}
.xe8_c00445{left:629.706667pt;}
.xd8_c00445{left:631.040000pt;}
.x58_c00445{left:632.000000pt;}
.xe0_c00445{left:636.960000pt;}
.xec_c00445{left:642.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_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_a7fb7f1ee7aa921a5a62f982.woff2')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:1.688965;font-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_c00446{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m69_c00446{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.mda_c00446{transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);}
.m2b_c00446{transform:matrix(0.357983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357983,0.000000,0.000000,0.250000,0,0);}
.m5b_c00446{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mcc_c00446{transform:matrix(0.362730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362730,0.000000,0.000000,0.250000,0,0);}
.m7_c00446{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m68_c00446{transform:matrix(0.366181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366181,0.000000,0.000000,0.250000,0,0);}
.mc_c00446{transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);}
.mdd_c00446{transform:matrix(0.368275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368275,0.000000,0.000000,0.250000,0,0);}
.m8c_c00446{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m4a_c00446{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.me4_c00446{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m87_c00446{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mb4_c00446{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m42_c00446{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.maa_c00446{transform:matrix(0.378942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378942,0.000000,0.000000,0.250000,0,0);}
.m8d_c00446{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m18_c00446{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.m88_c00446{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m8_c00446{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m61_c00446{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.mac_c00446{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m41_c00446{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.ma6_c00446{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m3a_c00446{transform:matrix(0.389954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389954,0.000000,0.000000,0.250000,0,0);}
.m99_c00446{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.me2_c00446{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.mc2_c00446{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m15_c00446{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m4b_c00446{transform:matrix(0.395228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395228,0.000000,0.000000,0.250000,0,0);}
.mf1_c00446{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m2d_c00446{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.me1_c00446{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.mdf_c00446{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.mbb_c00446{transform:matrix(0.398006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398006,0.000000,0.000000,0.250000,0,0);}
.m8e_c00446{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.m3f_c00446{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m90_c00446{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m54_c00446{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m71_c00446{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mc7_c00446{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m97_c00446{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mb8_c00446{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mc4_c00446{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m7c_c00446{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.mbe_c00446{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.mb2_c00446{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m30_c00446{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m4d_c00446{transform:matrix(0.413344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413344,0.000000,0.000000,0.250000,0,0);}
.m62_c00446{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m5a_c00446{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m6c_c00446{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m4f_c00446{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m29_c00446{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.md2_c00446{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mcb_c00446{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m2a_c00446{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m83_c00446{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m17_c00446{transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);}
.me9_c00446{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m8b_c00446{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m9b_c00446{transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);}
.m1a_c00446{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m35_c00446{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m49_c00446{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m5e_c00446{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m7f_c00446{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.mf0_c00446{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.md_c00446{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.me7_c00446{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.md8_c00446{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m7e_c00446{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m7d_c00446{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.mde_c00446{transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);}
.m14_c00446{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.mae_c00446{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m4e_c00446{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.m67_c00446{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m3b_c00446{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m93_c00446{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.me8_c00446{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.ma9_c00446{transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);}
.mb6_c00446{transform:matrix(0.444341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444341,0.000000,0.000000,0.250000,0,0);}
.m95_c00446{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m92_c00446{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.me5_c00446{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.mce_c00446{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m33_c00446{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m46_c00446{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.mee_c00446{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m6e_c00446{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.me3_c00446{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.m72_c00446{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m79_c00446{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.md7_c00446{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m12_c00446{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.mb0_c00446{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.ma8_c00446{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mea_c00446{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m50_c00446{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.m82_c00446{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mc1_c00446{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m80_c00446{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m1d_c00446{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m81_c00446{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mba_c00446{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m10_c00446{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m27_c00446{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mb3_c00446{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m7a_c00446{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m5f_c00446{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.md9_c00446{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m5_c00446{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_c00446{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m91_c00446{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.md5_c00446{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m85_c00446{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m1c_c00446{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m24_c00446{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mdc_c00446{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m13_c00446{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m94_c00446{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mc5_c00446{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.mbc_c00446{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m9c_c00446{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m73_c00446{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m25_c00446{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m84_c00446{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m3_c00446{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m43_c00446{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mcf_c00446{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m64_c00446{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m39_c00446{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m47_c00446{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m78_c00446{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mb9_c00446{transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);}
.m4_c00446{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.ma3_c00446{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m40_c00446{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m55_c00446{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m6f_c00446{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m11_c00446{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m7b_c00446{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mc6_c00446{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m19_c00446{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.mc8_c00446{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m28_c00446{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.me_c00446{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m32_c00446{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mc3_c00446{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m52_c00446{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m58_c00446{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m8a_c00446{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m37_c00446{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mb7_c00446{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mbd_c00446{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.mc9_c00446{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m9_c00446{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m1f_c00446{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m2e_c00446{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m60_c00446{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m2_c00446{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m70_c00446{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.ma5_c00446{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mef_c00446{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m77_c00446{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mf_c00446{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m1_c00446{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m8f_c00446{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m5c_c00446{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m9d_c00446{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m1e_c00446{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m9e_c00446{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m66_c00446{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m20_c00446{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m3c_c00446{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m56_c00446{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mec_c00446{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m38_c00446{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m45_c00446{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.ma0_c00446{transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);}
.m22_c00446{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m98_c00446{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.mb5_c00446{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mcd_c00446{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.med_c00446{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m21_c00446{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m51_c00446{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m16_c00446{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mbf_c00446{transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);}
.md0_c00446{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m3d_c00446{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.mab_c00446{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m65_c00446{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m6a_c00446{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m89_c00446{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);}
.me6_c00446{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m59_c00446{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.md6_c00446{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m96_c00446{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.md4_c00446{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m2f_c00446{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m75_c00446{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m6_c00446{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.md1_c00446{transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);}
.m4c_c00446{transform:matrix(0.616183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616183,0.000000,0.000000,0.250000,0,0);}
.m6d_c00446{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m9f_c00446{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.m1b_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);}
.m74_c00446{transform:matrix(0.628235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628235,0.000000,0.000000,0.250000,0,0);}
.m63_c00446{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m6b_c00446{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.mc0_c00446{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.meb_c00446{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.mad_c00446{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m53_c00446{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m23_c00446{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.ma_c00446{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.ma1_c00446{transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);}
.md3_c00446{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.ma7_c00446{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mb1_c00446{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m0_c00446{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.mdb_c00446{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m3e_c00446{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m57_c00446{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.ma2_c00446{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m5d_c00446{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mca_c00446{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m36_c00446{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.ma4_c00446{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m2c_c00446{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m34_c00446{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m31_c00446{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.me0_c00446{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m76_c00446{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.maf_c00446{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m48_c00446{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mb_c00446{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m26_c00446{transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);}
.m44_c00446{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.v0_c00446{vertical-align:0.000000px;}
.ls0_c00446{letter-spacing:0.000000px;}
.sc__c00446{text-shadow:none;}
.sc0_c00446{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00446{-webkit-text-stroke:0px transparent;}
.sc0_c00446{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00446{word-spacing:-5.173776px;}
.ws0_c00446{word-spacing:-4.530080px;}
.ws1_c00446{word-spacing:-3.327965px;}
.ws3_c00446{word-spacing:0.000000px;}
.fc0_c00446{color:transparent;}
.fs6_c00446{font-size:3.420000px;}
.fs0_c00446{font-size:18.720000px;}
.fs1_c00446{font-size:25.500000px;}
.fs2_c00446{font-size:28.920000px;}
.fs5_c00446{font-size:32.340000px;}
.fs3_c00446{font-size:35.700000px;}
.fs4_c00446{font-size:39.120000px;}
.y0_c00446{bottom:0.000000px;}
.ydd_c00446{bottom:251.970000px;}
.ye2_c00446{bottom:253.245000px;}
.ydf_c00446{bottom:254.130000px;}
.yde_c00446{bottom:254.325000px;}
.ye1_c00446{bottom:254.745000px;}
.ydc_c00446{bottom:255.405000px;}
.ye0_c00446{bottom:256.905000px;}
.yd7_c00446{bottom:272.745000px;}
.yd8_c00446{bottom:274.245000px;}
.yd9_c00446{bottom:274.905000px;}
.yda_c00446{bottom:275.970000px;}
.ydb_c00446{bottom:276.405000px;}
.yd2_c00446{bottom:292.245000px;}
.yd4_c00446{bottom:293.130000px;}
.yd6_c00446{bottom:293.745000px;}
.yd1_c00446{bottom:294.405000px;}
.yd3_c00446{bottom:295.470000px;}
.yd5_c00446{bottom:295.905000px;}
.ycb_c00446{bottom:310.905000px;}
.ycf_c00446{bottom:311.745000px;}
.ycc_c00446{bottom:311.970000px;}
.yc9_c00446{bottom:312.405000px;}
.yce_c00446{bottom:313.245000px;}
.yd0_c00446{bottom:313.905000px;}
.yca_c00446{bottom:314.130000px;}
.ycd_c00446{bottom:314.970000px;}
.yc6_c00446{bottom:331.680000px;}
.yc5_c00446{bottom:332.745000px;}
.yc7_c00446{bottom:333.405000px;}
.yc8_c00446{bottom:333.825000px;}
.yc4_c00446{bottom:334.905000px;}
.yc1_c00446{bottom:350.970000px;}
.yc3_c00446{bottom:352.245000px;}
.yc2_c00446{bottom:353.325000px;}
.ybf_c00446{bottom:354.405000px;}
.yc0_c00446{bottom:355.470000px;}
.ybb_c00446{bottom:370.245000px;}
.yba_c00446{bottom:371.745000px;}
.ybe_c00446{bottom:372.405000px;}
.ybd_c00446{bottom:372.630000px;}
.ybc_c00446{bottom:373.470000px;}
.yb9_c00446{bottom:373.905000px;}
.yb8_c00446{bottom:374.970000px;}
.yb5_c00446{bottom:388.905000px;}
.yb4_c00446{bottom:391.245000px;}
.yb3_c00446{bottom:392.970000px;}
.yb7_c00446{bottom:393.405000px;}
.yb6_c00446{bottom:394.470000px;}
.yb1_c00446{bottom:409.680000px;}
.yb0_c00446{bottom:410.745000px;}
.yb2_c00446{bottom:411.630000px;}
.yaf_c00446{bottom:412.905000px;}
.yab_c00446{bottom:430.245000px;}
.yae_c00446{bottom:431.130000px;}
.yac_c00446{bottom:432.405000px;}
.yad_c00446{bottom:432.630000px;}
.ya8_c00446{bottom:449.745000px;}
.ya7_c00446{bottom:450.825000px;}
.ya9_c00446{bottom:451.470000px;}
.ya5_c00446{bottom:451.905000px;}
.ya6_c00446{bottom:452.130000px;}
.yaa_c00446{bottom:452.970000px;}
.ya1_c00446{bottom:470.745000px;}
.ya4_c00446{bottom:471.405000px;}
.ya2_c00446{bottom:471.630000px;}
.ya3_c00446{bottom:471.825000px;}
.ya0_c00446{bottom:472.905000px;}
.y9c_c00446{bottom:487.905000px;}
.y9e_c00446{bottom:488.745000px;}
.y99_c00446{bottom:489.180000px;}
.y9b_c00446{bottom:490.245000px;}
.y9f_c00446{bottom:490.905000px;}
.y9d_c00446{bottom:491.130000px;}
.y9a_c00446{bottom:492.405000px;}
.y97_c00446{bottom:508.245000px;}
.y98_c00446{bottom:510.405000px;}
.y96_c00446{bottom:510.825000px;}
.y95_c00446{bottom:511.905000px;}
.y90_c00446{bottom:528.405000px;}
.y93_c00446{bottom:529.245000px;}
.y94_c00446{bottom:529.470000px;}
.y92_c00446{bottom:531.405000px;}
.y91_c00446{bottom:531.630000px;}
.y8d_c00446{bottom:548.745000px;}
.y8f_c00446{bottom:549.825000px;}
.y8e_c00446{bottom:550.905000px;}
.y8b_c00446{bottom:551.130000px;}
.y8c_c00446{bottom:551.970000px;}
.y8a_c00446{bottom:567.825000px;}
.y88_c00446{bottom:568.245000px;}
.y87_c00446{bottom:569.745000px;}
.y84_c00446{bottom:570.405000px;}
.y89_c00446{bottom:570.630000px;}
.y86_c00446{bottom:571.470000px;}
.y85_c00446{bottom:571.905000px;}
.y82_c00446{bottom:586.905000px;}
.y83_c00446{bottom:587.745000px;}
.y81_c00446{bottom:587.970000px;}
.y7f_c00446{bottom:589.245000px;}
.y7c_c00446{bottom:590.130000px;}
.y80_c00446{bottom:590.325000px;}
.y7d_c00446{bottom:590.970000px;}
.y7e_c00446{bottom:591.405000px;}
.y77_c00446{bottom:608.745000px;}
.y7b_c00446{bottom:609.405000px;}
.y7a_c00446{bottom:609.630000px;}
.y78_c00446{bottom:610.470000px;}
.y76_c00446{bottom:610.905000px;}
.y79_c00446{bottom:611.970000px;}
.y74_c00446{bottom:628.245000px;}
.y73_c00446{bottom:629.130000px;}
.y72_c00446{bottom:630.405000px;}
.y75_c00446{bottom:631.470000px;}
.y71_c00446{bottom:646.245000px;}
.y6e_c00446{bottom:647.745000px;}
.y70_c00446{bottom:648.630000px;}
.y6f_c00446{bottom:649.905000px;}
.y6b_c00446{bottom:666.405000px;}
.y67_c00446{bottom:666.825000px;}
.y68_c00446{bottom:667.245000px;}
.y6d_c00446{bottom:668.325000px;}
.y6c_c00446{bottom:668.745000px;}
.y69_c00446{bottom:668.970000px;}
.y6a_c00446{bottom:669.405000px;}
.y65_c00446{bottom:686.745000px;}
.y62_c00446{bottom:688.245000px;}
.y66_c00446{bottom:688.905000px;}
.y64_c00446{bottom:689.970000px;}
.y63_c00446{bottom:690.405000px;}
.y61_c00446{bottom:705.405000px;}
.y60_c00446{bottom:706.245000px;}
.y5d_c00446{bottom:707.745000px;}
.y5c_c00446{bottom:708.405000px;}
.y5f_c00446{bottom:708.630000px;}
.y5e_c00446{bottom:709.470000px;}
.y5b_c00446{bottom:727.905000px;}
.y5a_c00446{bottom:729.405000px;}
.y59_c00446{bottom:745.245000px;}
.y56_c00446{bottom:746.745000px;}
.y57_c00446{bottom:747.630000px;}
.y58_c00446{bottom:748.470000px;}
.y55_c00446{bottom:748.905000px;}
.y54_c00446{bottom:765.405000px;}
.y53_c00446{bottom:768.405000px;}
.y4e_c00446{bottom:785.745000px;}
.y52_c00446{bottom:786.630000px;}
.y4f_c00446{bottom:786.825000px;}
.y50_c00446{bottom:787.470000px;}
.y4d_c00446{bottom:787.905000px;}
.y51_c00446{bottom:788.970000px;}
.y4a_c00446{bottom:803.970000px;}
.y48_c00446{bottom:805.245000px;}
.y4b_c00446{bottom:806.130000px;}
.y4c_c00446{bottom:806.325000px;}
.y49_c00446{bottom:806.970000px;}
.y45_c00446{bottom:807.405000px;}
.y47_c00446{bottom:807.630000px;}
.y46_c00446{bottom:808.470000px;}
.y44_c00446{bottom:823.680000px;}
.y43_c00446{bottom:823.905000px;}
.y3f_c00446{bottom:824.745000px;}
.y42_c00446{bottom:826.470000px;}
.y41_c00446{bottom:826.905000px;}
.y40_c00446{bottom:827.970000px;}
.y3d_c00446{bottom:845.745000px;}
.y3e_c00446{bottom:846.405000px;}
.y3c_c00446{bottom:846.630000px;}
.y3b_c00446{bottom:847.905000px;}
.y3a_c00446{bottom:863.745000px;}
.y37_c00446{bottom:865.245000px;}
.y39_c00446{bottom:865.905000px;}
.y36_c00446{bottom:866.130000px;}
.y38_c00446{bottom:866.970000px;}
.y35_c00446{bottom:867.405000px;}
.y34_c00446{bottom:883.245000px;}
.y2e_c00446{bottom:883.680000px;}
.y31_c00446{bottom:884.325000px;}
.y2f_c00446{bottom:884.745000px;}
.y33_c00446{bottom:884.970000px;}
.y32_c00446{bottom:885.405000px;}
.y30_c00446{bottom:886.470000px;}
.y2d_c00446{bottom:886.905000px;}
.y2a_c00446{bottom:903.405000px;}
.y28_c00446{bottom:903.825000px;}
.y2b_c00446{bottom:904.245000px;}
.y2c_c00446{bottom:904.905000px;}
.y29_c00446{bottom:905.130000px;}
.y26_c00446{bottom:906.405000px;}
.y27_c00446{bottom:906.420000px;}
.y25_c00446{bottom:923.745000px;}
.y24_c00446{bottom:925.905000px;}
.y20_c00446{bottom:942.180000px;}
.y21_c00446{bottom:943.245000px;}
.y23_c00446{bottom:944.130000px;}
.y22_c00446{bottom:944.970000px;}
.y1f_c00446{bottom:945.405000px;}
.y1b_c00446{bottom:962.745000px;}
.y1d_c00446{bottom:964.470000px;}
.y1c_c00446{bottom:964.905000px;}
.y1e_c00446{bottom:965.130000px;}
.y1a_c00446{bottom:965.970000px;}
.y18_c00446{bottom:982.245000px;}
.y17_c00446{bottom:984.405000px;}
.y19_c00446{bottom:984.630000px;}
.y14_c00446{bottom:1000.905000px;}
.y13_c00446{bottom:1003.905000px;}
.y16_c00446{bottom:1004.130000px;}
.y15_c00446{bottom:1004.970000px;}
.y11_c00446{bottom:1021.245000px;}
.y12_c00446{bottom:1023.405000px;}
.ye_c00446{bottom:1039.905000px;}
.ya_c00446{bottom:1041.405000px;}
.yf_c00446{bottom:1041.825000px;}
.yb_c00446{bottom:1042.245000px;}
.yd_c00446{bottom:1042.905000px;}
.y10_c00446{bottom:1043.970000px;}
.yc_c00446{bottom:1044.405000px;}
.y3_c00446{bottom:1059.405000px;}
.y9_c00446{bottom:1060.680000px;}
.y6_c00446{bottom:1060.905000px;}
.y5_c00446{bottom:1061.745000px;}
.y8_c00446{bottom:1062.630000px;}
.y7_c00446{bottom:1063.470000px;}
.y4_c00446{bottom:1063.905000px;}
.y2_c00446{bottom:1099.470000px;}
.y1_c00446{bottom:1101.630000px;}
.h7_c00446{height:4.206533px;}
.h1_c00446{height:23.025234px;}
.h2_c00446{height:31.364502px;}
.h3_c00446{height:35.571035px;}
.h6_c00446{height:39.777568px;}
.h4_c00446{height:43.910303px;}
.h5_c00446{height:48.116836px;}
.h0_c00446{height:1335.000000px;}
.w0_c00446{width:880.500000px;}
.x0_c00446{left:0.000000px;}
.xbd_c00446{left:151.080000px;}
.x40_c00446{left:152.580000px;}
.x3_c00446{left:154.500000px;}
.xc7_c00446{left:167.580000px;}
.x1e_c00446{left:169.500000px;}
.xe6_c00446{left:171.420000px;}
.x91_c00446{left:172.500000px;}
.xb8_c00446{left:174.000000px;}
.xc4_c00446{left:175.500000px;}
.x36_c00446{left:177.000000px;}
.x11_c00446{left:178.500000px;}
.xec_c00446{left:180.000000px;}
.x5c_c00446{left:181.920000px;}
.x103_c00446{left:183.000000px;}
.xab_c00446{left:186.000000px;}
.x77_c00446{left:188.580000px;}
.xe2_c00446{left:190.920000px;}
.x1f_c00446{left:192.000000px;}
.x65_c00446{left:193.920000px;}
.x9c_c00446{left:195.420000px;}
.xb0_c00446{left:198.420000px;}
.x4_c00446{left:199.500000px;}
.xe7_c00446{left:201.000000px;}
.xc8_c00446{left:202.080000px;}
.x1c_c00446{left:205.500000px;}
.xda_c00446{left:207.420000px;}
.x41_c00446{left:208.500000px;}
.x80_c00446{left:210.000000px;}
.x2c_c00446{left:211.920000px;}
.x49_c00446{left:214.080000px;}
.x55_c00446{left:217.080000px;}
.x12_c00446{left:220.500000px;}
.xc9_c00446{left:222.420000px;}
.x6d_c00446{left:223.500000px;}
.xc5_c00446{left:225.420000px;}
.x5d_c00446{left:226.500000px;}
.x89_c00446{left:227.580000px;}
.x66_c00446{left:229.500000px;}
.xa4_c00446{left:231.000000px;}
.xe8_c00446{left:232.500000px;}
.xf7_c00446{left:236.580000px;}
.x4b_c00446{left:238.500000px;}
.xdb_c00446{left:241.080000px;}
.xcf_c00446{left:242.580000px;}
.x20_c00446{left:244.080000px;}
.xed_c00446{left:247.080000px;}
.x5e_c00446{left:249.420000px;}
.x5_c00446{left:250.500000px;}
.x81_c00446{left:252.000000px;}
.x13_c00446{left:253.500000px;}
.x1d_c00446{left:255.000000px;}
.xb1_c00446{left:258.000000px;}
.x4c_c00446{left:259.500000px;}
.x4a_c00446{left:261.000000px;}
.xdc_c00446{left:262.500000px;}
.xe3_c00446{left:263.580000px;}
.xee_c00446{left:265.080000px;}
.xc1_c00446{left:266.580000px;}
.x21_c00446{left:268.080000px;}
.xc6_c00446{left:269.580000px;}
.xf8_c00446{left:271.920000px;}
.xd0_c00446{left:274.500000px;}
.x42_c00446{left:275.580000px;}
.x37_c00446{left:277.500000px;}
.x4d_c00446{left:279.000000px;}
.x92_c00446{left:280.500000px;}
.x8a_c00446{left:282.420000px;}
.xfd_c00446{left:285.000000px;}
.xc2_c00446{left:286.500000px;}
.x82_c00446{left:287.580000px;}
.xcc_c00446{left:294.000000px;}
.xd4_c00446{left:295.500000px;}
.xf9_c00446{left:298.500000px;}
.x22_c00446{left:299.580000px;}
.x9d_c00446{left:303.000000px;}
.x38_c00446{left:306.000000px;}
.x100_c00446{left:309.000000px;}
.xb2_c00446{left:310.500000px;}
.x56_c00446{left:311.580000px;}
.x78_c00446{left:313.500000px;}
.x5f_c00446{left:316.920000px;}
.x8b_c00446{left:318.000000px;}
.x6_c00446{left:319.920000px;}
.x14_c00446{left:322.500000px;}
.x23_c00446{left:324.420000px;}
.xac_c00446{left:325.500000px;}
.xca_c00446{left:330.420000px;}
.x93_c00446{left:337.080000px;}
.x83_c00446{left:340.920000px;}
.xb3_c00446{left:342.420000px;}
.x39_c00446{left:345.000000px;}
.x9e_c00446{left:346.500000px;}
.x4e_c00446{left:348.420000px;}
.x97_c00446{left:349.500000px;}
.x15_c00446{left:351.420000px;}
.xa5_c00446{left:352.500000px;}
.xbe_c00446{left:357.000000px;}
.x6e_c00446{left:358.080000px;}
.xd5_c00446{left:361.920000px;}
.xef_c00446{left:363.420000px;}
.x7_c00446{left:364.500000px;}
.x67_c00446{left:367.080000px;}
.x43_c00446{left:370.500000px;}
.x84_c00446{left:373.920000px;}
.x6f_c00446{left:375.420000px;}
.xfa_c00446{left:376.500000px;}
.x16_c00446{left:379.080000px;}
.x8_c00446{left:382.500000px;}
.x8c_c00446{left:384.000000px;}
.x68_c00446{left:385.920000px;}
.xd6_c00446{left:388.080000px;}
.xf2_c00446{left:390.420000px;}
.xf0_c00446{left:395.580000px;}
.x2d_c00446{left:397.920000px;}
.x4f_c00446{left:399.000000px;}
.xa6_c00446{left:400.500000px;}
.x70_c00446{left:402.000000px;}
.x9_c00446{left:403.080000px;}
.xb4_c00446{left:406.920000px;}
.x79_c00446{left:408.420000px;}
.x1_c00446{left:409.500000px;}
.x57_c00446{left:411.000000px;}
.x69_c00446{left:412.080000px;}
.xe9_c00446{left:414.000000px;}
.x24_c00446{left:415.080000px;}
.xc3_c00446{left:417.420000px;}
.xfb_c00446{left:418.500000px;}
.x8d_c00446{left:420.000000px;}
.xcd_c00446{left:423.000000px;}
.x71_c00446{left:426.420000px;}
.x98_c00446{left:427.500000px;}
.x60_c00446{left:429.420000px;}
.x9f_c00446{left:430.500000px;}
.xf3_c00446{left:432.000000px;}
.x50_c00446{left:433.500000px;}
.xb5_c00446{left:436.500000px;}
.xf1_c00446{left:438.000000px;}
.x2e_c00446{left:439.080000px;}
.x104_c00446{left:444.000000px;}
.x44_c00446{left:445.080000px;}
.x7a_c00446{left:447.000000px;}
.x25_c00446{left:448.500000px;}
.x17_c00446{left:450.000000px;}
.x99_c00446{left:453.000000px;}
.x85_c00446{left:455.580000px;}
.x2f_c00446{left:459.420000px;}
.xe0_c00446{left:460.500000px;}
.xd1_c00446{left:462.000000px;}
.x101_c00446{left:465.000000px;}
.xce_c00446{left:466.500000px;}
.xb9_c00446{left:467.580000px;}
.x61_c00446{left:469.500000px;}
.x58_c00446{left:472.080000px;}
.xa_c00446{left:474.000000px;}
.x72_c00446{left:478.080000px;}
.x102_c00446{left:481.500000px;}
.x26_c00446{left:487.500000px;}
.x30_c00446{left:489.420000px;}
.x59_c00446{left:491.580000px;}
.xa7_c00446{left:493.500000px;}
.xd2_c00446{left:494.580000px;}
.x6a_c00446{left:496.500000px;}
.xfe_c00446{left:498.000000px;}
.x51_c00446{left:499.500000px;}
.x7b_c00446{left:501.000000px;}
.xba_c00446{left:504.000000px;}
.xf4_c00446{left:505.920000px;}
.x45_c00446{left:510.000000px;}
.x86_c00446{left:511.500000px;}
.x6b_c00446{left:514.080000px;}
.xff_c00446{left:516.000000px;}
.xea_c00446{left:517.500000px;}
.xad_c00446{left:519.000000px;}
.x9a_c00446{left:520.080000px;}
.x73_c00446{left:522.420000px;}
.x52_c00446{left:525.420000px;}
.xa0_c00446{left:526.500000px;}
.xbf_c00446{left:528.420000px;}
.xf5_c00446{left:530.580000px;}
.x3a_c00446{left:532.500000px;}
.xfc_c00446{left:534.000000px;}
.xe4_c00446{left:535.080000px;}
.x18_c00446{left:537.000000px;}
.xa8_c00446{left:538.500000px;}
.x62_c00446{left:540.855000px;}
.x8e_c00446{left:541.920000px;}
.x7c_c00446{left:543.420000px;}
.xd7_c00446{left:544.920000px;}
.xb_c00446{left:547.920000px;}
.xbb_c00446{left:550.920000px;}
.x31_c00446{left:554.580000px;}
.xcb_c00446{left:556.920000px;}
.x3b_c00446{left:558.000000px;}
.xeb_c00446{left:562.920000px;}
.x74_c00446{left:564.000000px;}
.x9b_c00446{left:565.080000px;}
.xf6_c00446{left:567.000000px;}
.x94_c00446{left:570.000000px;}
.x87_c00446{left:571.500000px;}
.xa1_c00446{left:573.000000px;}
.x32_c00446{left:574.920000px;}
.xb6_c00446{left:577.500000px;}
.xc_c00446{left:583.500000px;}
.x3c_c00446{left:585.420000px;}
.xdd_c00446{left:589.500000px;}
.xa9_c00446{left:591.000000px;}
.x27_c00446{left:592.080000px;}
.xd3_c00446{left:594.000000px;}
.x19_c00446{left:595.500000px;}
.x5a_c00446{left:601.080000px;}
.x33_c00446{left:603.000000px;}
.x63_c00446{left:607.080000px;}
.xd_c00446{left:609.000000px;}
.xde_c00446{left:612.420000px;}
.x28_c00446{left:613.920000px;}
.x46_c00446{left:616.500000px;}
.x8f_c00446{left:619.500000px;}
.x7d_c00446{left:621.000000px;}
.xbc_c00446{left:622.500000px;}
.xe5_c00446{left:623.580000px;}
.x64_c00446{left:625.920000px;}
.xe_c00446{left:627.000000px;}
.xaa_c00446{left:630.000000px;}
.xc0_c00446{left:631.500000px;}
.x29_c00446{left:636.000000px;}
.xd8_c00446{left:637.500000px;}
.xdf_c00446{left:642.000000px;}
.x88_c00446{left:643.500000px;}
.x47_c00446{left:646.500000px;}
.xa2_c00446{left:649.920000px;}
.x3d_c00446{left:651.420000px;}
.xf_c00446{left:652.500000px;}
.xae_c00446{left:653.580000px;}
.x90_c00446{left:655.500000px;}
.x1a_c00446{left:659.580000px;}
.x34_c00446{left:661.500000px;}
.x105_c00446{left:663.000000px;}
.x7e_c00446{left:664.920000px;}
.x95_c00446{left:666.000000px;}
.x5b_c00446{left:667.500000px;}
.x75_c00446{left:669.000000px;}
.x53_c00446{left:672.420000px;}
.xa3_c00446{left:678.000000px;}
.x6c_c00446{left:679.500000px;}
.xd9_c00446{left:681.000000px;}
.x2a_c00446{left:682.080000px;}
.x10_c00446{left:683.580000px;}
.xaf_c00446{left:685.920000px;}
.x3e_c00446{left:687.000000px;}
.x35_c00446{left:688.920000px;}
.x1b_c00446{left:691.500000px;}
.x7f_c00446{left:693.000000px;}
.x48_c00446{left:697.920000px;}
.xb7_c00446{left:700.500000px;}
.x54_c00446{left:701.580000px;}
.xe1_c00446{left:706.920000px;}
.x2_c00446{left:708.000000px;}
.x3f_c00446{left:709.920000px;}
.x76_c00446{left:712.080000px;}
.x2b_c00446{left:715.500000px;}
.x96_c00446{left:718.500000px;}
@media print{
.v0_c00446{vertical-align:0.000000pt;}
.ls0_c00446{letter-spacing:0.000000pt;}
.ws2_c00446{word-spacing:-4.598912pt;}
.ws0_c00446{word-spacing:-4.026738pt;}
.ws1_c00446{word-spacing:-2.958191pt;}
.ws3_c00446{word-spacing:0.000000pt;}
.fs6_c00446{font-size:3.040000pt;}
.fs0_c00446{font-size:16.640000pt;}
.fs1_c00446{font-size:22.666667pt;}
.fs2_c00446{font-size:25.706667pt;}
.fs5_c00446{font-size:28.746667pt;}
.fs3_c00446{font-size:31.733333pt;}
.fs4_c00446{font-size:34.773333pt;}
.y0_c00446{bottom:0.000000pt;}
.ydd_c00446{bottom:223.973333pt;}
.ye2_c00446{bottom:225.106667pt;}
.ydf_c00446{bottom:225.893333pt;}
.yde_c00446{bottom:226.066667pt;}
.ye1_c00446{bottom:226.440000pt;}
.ydc_c00446{bottom:227.026667pt;}
.ye0_c00446{bottom:228.360000pt;}
.yd7_c00446{bottom:242.440000pt;}
.yd8_c00446{bottom:243.773333pt;}
.yd9_c00446{bottom:244.360000pt;}
.yda_c00446{bottom:245.306667pt;}
.ydb_c00446{bottom:245.693333pt;}
.yd2_c00446{bottom:259.773333pt;}
.yd4_c00446{bottom:260.560000pt;}
.yd6_c00446{bottom:261.106667pt;}
.yd1_c00446{bottom:261.693333pt;}
.yd3_c00446{bottom:262.640000pt;}
.yd5_c00446{bottom:263.026667pt;}
.ycb_c00446{bottom:276.360000pt;}
.ycf_c00446{bottom:277.106667pt;}
.ycc_c00446{bottom:277.306667pt;}
.yc9_c00446{bottom:277.693333pt;}
.yce_c00446{bottom:278.440000pt;}
.yd0_c00446{bottom:279.026667pt;}
.yca_c00446{bottom:279.226667pt;}
.ycd_c00446{bottom:279.973333pt;}
.yc6_c00446{bottom:294.826667pt;}
.yc5_c00446{bottom:295.773333pt;}
.yc7_c00446{bottom:296.360000pt;}
.yc8_c00446{bottom:296.733333pt;}
.yc4_c00446{bottom:297.693333pt;}
.yc1_c00446{bottom:311.973333pt;}
.yc3_c00446{bottom:313.106667pt;}
.yc2_c00446{bottom:314.066667pt;}
.ybf_c00446{bottom:315.026667pt;}
.yc0_c00446{bottom:315.973333pt;}
.ybb_c00446{bottom:329.106667pt;}
.yba_c00446{bottom:330.440000pt;}
.ybe_c00446{bottom:331.026667pt;}
.ybd_c00446{bottom:331.226667pt;}
.ybc_c00446{bottom:331.973333pt;}
.yb9_c00446{bottom:332.360000pt;}
.yb8_c00446{bottom:333.306667pt;}
.yb5_c00446{bottom:345.693333pt;}
.yb4_c00446{bottom:347.773333pt;}
.yb3_c00446{bottom:349.306667pt;}
.yb7_c00446{bottom:349.693333pt;}
.yb6_c00446{bottom:350.640000pt;}
.yb1_c00446{bottom:364.160000pt;}
.yb0_c00446{bottom:365.106667pt;}
.yb2_c00446{bottom:365.893333pt;}
.yaf_c00446{bottom:367.026667pt;}
.yab_c00446{bottom:382.440000pt;}
.yae_c00446{bottom:383.226667pt;}
.yac_c00446{bottom:384.360000pt;}
.yad_c00446{bottom:384.560000pt;}
.ya8_c00446{bottom:399.773333pt;}
.ya7_c00446{bottom:400.733333pt;}
.ya9_c00446{bottom:401.306667pt;}
.ya5_c00446{bottom:401.693333pt;}
.ya6_c00446{bottom:401.893333pt;}
.yaa_c00446{bottom:402.640000pt;}
.ya1_c00446{bottom:418.440000pt;}
.ya4_c00446{bottom:419.026667pt;}
.ya2_c00446{bottom:419.226667pt;}
.ya3_c00446{bottom:419.400000pt;}
.ya0_c00446{bottom:420.360000pt;}
.y9c_c00446{bottom:433.693333pt;}
.y9e_c00446{bottom:434.440000pt;}
.y99_c00446{bottom:434.826667pt;}
.y9b_c00446{bottom:435.773333pt;}
.y9f_c00446{bottom:436.360000pt;}
.y9d_c00446{bottom:436.560000pt;}
.y9a_c00446{bottom:437.693333pt;}
.y97_c00446{bottom:451.773333pt;}
.y98_c00446{bottom:453.693333pt;}
.y96_c00446{bottom:454.066667pt;}
.y95_c00446{bottom:455.026667pt;}
.y90_c00446{bottom:469.693333pt;}
.y93_c00446{bottom:470.440000pt;}
.y94_c00446{bottom:470.640000pt;}
.y92_c00446{bottom:472.360000pt;}
.y91_c00446{bottom:472.560000pt;}
.y8d_c00446{bottom:487.773333pt;}
.y8f_c00446{bottom:488.733333pt;}
.y8e_c00446{bottom:489.693333pt;}
.y8b_c00446{bottom:489.893333pt;}
.y8c_c00446{bottom:490.640000pt;}
.y8a_c00446{bottom:504.733333pt;}
.y88_c00446{bottom:505.106667pt;}
.y87_c00446{bottom:506.440000pt;}
.y84_c00446{bottom:507.026667pt;}
.y89_c00446{bottom:507.226667pt;}
.y86_c00446{bottom:507.973333pt;}
.y85_c00446{bottom:508.360000pt;}
.y82_c00446{bottom:521.693333pt;}
.y83_c00446{bottom:522.440000pt;}
.y81_c00446{bottom:522.640000pt;}
.y7f_c00446{bottom:523.773333pt;}
.y7c_c00446{bottom:524.560000pt;}
.y80_c00446{bottom:524.733333pt;}
.y7d_c00446{bottom:525.306667pt;}
.y7e_c00446{bottom:525.693333pt;}
.y77_c00446{bottom:541.106667pt;}
.y7b_c00446{bottom:541.693333pt;}
.y7a_c00446{bottom:541.893333pt;}
.y78_c00446{bottom:542.640000pt;}
.y76_c00446{bottom:543.026667pt;}
.y79_c00446{bottom:543.973333pt;}
.y74_c00446{bottom:558.440000pt;}
.y73_c00446{bottom:559.226667pt;}
.y72_c00446{bottom:560.360000pt;}
.y75_c00446{bottom:561.306667pt;}
.y71_c00446{bottom:574.440000pt;}
.y6e_c00446{bottom:575.773333pt;}
.y70_c00446{bottom:576.560000pt;}
.y6f_c00446{bottom:577.693333pt;}
.y6b_c00446{bottom:592.360000pt;}
.y67_c00446{bottom:592.733333pt;}
.y68_c00446{bottom:593.106667pt;}
.y6d_c00446{bottom:594.066667pt;}
.y6c_c00446{bottom:594.440000pt;}
.y69_c00446{bottom:594.640000pt;}
.y6a_c00446{bottom:595.026667pt;}
.y65_c00446{bottom:610.440000pt;}
.y62_c00446{bottom:611.773333pt;}
.y66_c00446{bottom:612.360000pt;}
.y64_c00446{bottom:613.306667pt;}
.y63_c00446{bottom:613.693333pt;}
.y61_c00446{bottom:627.026667pt;}
.y60_c00446{bottom:627.773333pt;}
.y5d_c00446{bottom:629.106667pt;}
.y5c_c00446{bottom:629.693333pt;}
.y5f_c00446{bottom:629.893333pt;}
.y5e_c00446{bottom:630.640000pt;}
.y5b_c00446{bottom:647.026667pt;}
.y5a_c00446{bottom:648.360000pt;}
.y59_c00446{bottom:662.440000pt;}
.y56_c00446{bottom:663.773333pt;}
.y57_c00446{bottom:664.560000pt;}
.y58_c00446{bottom:665.306667pt;}
.y55_c00446{bottom:665.693333pt;}
.y54_c00446{bottom:680.360000pt;}
.y53_c00446{bottom:683.026667pt;}
.y4e_c00446{bottom:698.440000pt;}
.y52_c00446{bottom:699.226667pt;}
.y4f_c00446{bottom:699.400000pt;}
.y50_c00446{bottom:699.973333pt;}
.y4d_c00446{bottom:700.360000pt;}
.y51_c00446{bottom:701.306667pt;}
.y4a_c00446{bottom:714.640000pt;}
.y48_c00446{bottom:715.773333pt;}
.y4b_c00446{bottom:716.560000pt;}
.y4c_c00446{bottom:716.733333pt;}
.y49_c00446{bottom:717.306667pt;}
.y45_c00446{bottom:717.693333pt;}
.y47_c00446{bottom:717.893333pt;}
.y46_c00446{bottom:718.640000pt;}
.y44_c00446{bottom:732.160000pt;}
.y43_c00446{bottom:732.360000pt;}
.y3f_c00446{bottom:733.106667pt;}
.y42_c00446{bottom:734.640000pt;}
.y41_c00446{bottom:735.026667pt;}
.y40_c00446{bottom:735.973333pt;}
.y3d_c00446{bottom:751.773333pt;}
.y3e_c00446{bottom:752.360000pt;}
.y3c_c00446{bottom:752.560000pt;}
.y3b_c00446{bottom:753.693333pt;}
.y3a_c00446{bottom:767.773333pt;}
.y37_c00446{bottom:769.106667pt;}
.y39_c00446{bottom:769.693333pt;}
.y36_c00446{bottom:769.893333pt;}
.y38_c00446{bottom:770.640000pt;}
.y35_c00446{bottom:771.026667pt;}
.y34_c00446{bottom:785.106667pt;}
.y2e_c00446{bottom:785.493333pt;}
.y31_c00446{bottom:786.066667pt;}
.y2f_c00446{bottom:786.440000pt;}
.y33_c00446{bottom:786.640000pt;}
.y32_c00446{bottom:787.026667pt;}
.y30_c00446{bottom:787.973333pt;}
.y2d_c00446{bottom:788.360000pt;}
.y2a_c00446{bottom:803.026667pt;}
.y28_c00446{bottom:803.400000pt;}
.y2b_c00446{bottom:803.773333pt;}
.y2c_c00446{bottom:804.360000pt;}
.y29_c00446{bottom:804.560000pt;}
.y26_c00446{bottom:805.693333pt;}
.y27_c00446{bottom:805.706667pt;}
.y25_c00446{bottom:821.106667pt;}
.y24_c00446{bottom:823.026667pt;}
.y20_c00446{bottom:837.493333pt;}
.y21_c00446{bottom:838.440000pt;}
.y23_c00446{bottom:839.226667pt;}
.y22_c00446{bottom:839.973333pt;}
.y1f_c00446{bottom:840.360000pt;}
.y1b_c00446{bottom:855.773333pt;}
.y1d_c00446{bottom:857.306667pt;}
.y1c_c00446{bottom:857.693333pt;}
.y1e_c00446{bottom:857.893333pt;}
.y1a_c00446{bottom:858.640000pt;}
.y18_c00446{bottom:873.106667pt;}
.y17_c00446{bottom:875.026667pt;}
.y19_c00446{bottom:875.226667pt;}
.y14_c00446{bottom:889.693333pt;}
.y13_c00446{bottom:892.360000pt;}
.y16_c00446{bottom:892.560000pt;}
.y15_c00446{bottom:893.306667pt;}
.y11_c00446{bottom:907.773333pt;}
.y12_c00446{bottom:909.693333pt;}
.ye_c00446{bottom:924.360000pt;}
.ya_c00446{bottom:925.693333pt;}
.yf_c00446{bottom:926.066667pt;}
.yb_c00446{bottom:926.440000pt;}
.yd_c00446{bottom:927.026667pt;}
.y10_c00446{bottom:927.973333pt;}
.yc_c00446{bottom:928.360000pt;}
.y3_c00446{bottom:941.693333pt;}
.y9_c00446{bottom:942.826667pt;}
.y6_c00446{bottom:943.026667pt;}
.y5_c00446{bottom:943.773333pt;}
.y8_c00446{bottom:944.560000pt;}
.y7_c00446{bottom:945.306667pt;}
.y4_c00446{bottom:945.693333pt;}
.y2_c00446{bottom:977.306667pt;}
.y1_c00446{bottom:979.226667pt;}
.h7_c00446{height:3.739141pt;}
.h1_c00446{height:20.466875pt;}
.h2_c00446{height:27.879557pt;}
.h3_c00446{height:31.618698pt;}
.h6_c00446{height:35.357839pt;}
.h4_c00446{height:39.031380pt;}
.h5_c00446{height:42.770521pt;}
.h0_c00446{height:1186.666667pt;}
.w0_c00446{width:782.666667pt;}
.x0_c00446{left:0.000000pt;}
.xbd_c00446{left:134.293333pt;}
.x40_c00446{left:135.626667pt;}
.x3_c00446{left:137.333333pt;}
.xc7_c00446{left:148.960000pt;}
.x1e_c00446{left:150.666667pt;}
.xe6_c00446{left:152.373333pt;}
.x91_c00446{left:153.333333pt;}
.xb8_c00446{left:154.666667pt;}
.xc4_c00446{left:156.000000pt;}
.x36_c00446{left:157.333333pt;}
.x11_c00446{left:158.666667pt;}
.xec_c00446{left:160.000000pt;}
.x5c_c00446{left:161.706667pt;}
.x103_c00446{left:162.666667pt;}
.xab_c00446{left:165.333333pt;}
.x77_c00446{left:167.626667pt;}
.xe2_c00446{left:169.706667pt;}
.x1f_c00446{left:170.666667pt;}
.x65_c00446{left:172.373333pt;}
.x9c_c00446{left:173.706667pt;}
.xb0_c00446{left:176.373333pt;}
.x4_c00446{left:177.333333pt;}
.xe7_c00446{left:178.666667pt;}
.xc8_c00446{left:179.626667pt;}
.x1c_c00446{left:182.666667pt;}
.xda_c00446{left:184.373333pt;}
.x41_c00446{left:185.333333pt;}
.x80_c00446{left:186.666667pt;}
.x2c_c00446{left:188.373333pt;}
.x49_c00446{left:190.293333pt;}
.x55_c00446{left:192.960000pt;}
.x12_c00446{left:196.000000pt;}
.xc9_c00446{left:197.706667pt;}
.x6d_c00446{left:198.666667pt;}
.xc5_c00446{left:200.373333pt;}
.x5d_c00446{left:201.333333pt;}
.x89_c00446{left:202.293333pt;}
.x66_c00446{left:204.000000pt;}
.xa4_c00446{left:205.333333pt;}
.xe8_c00446{left:206.666667pt;}
.xf7_c00446{left:210.293333pt;}
.x4b_c00446{left:212.000000pt;}
.xdb_c00446{left:214.293333pt;}
.xcf_c00446{left:215.626667pt;}
.x20_c00446{left:216.960000pt;}
.xed_c00446{left:219.626667pt;}
.x5e_c00446{left:221.706667pt;}
.x5_c00446{left:222.666667pt;}
.x81_c00446{left:224.000000pt;}
.x13_c00446{left:225.333333pt;}
.x1d_c00446{left:226.666667pt;}
.xb1_c00446{left:229.333333pt;}
.x4c_c00446{left:230.666667pt;}
.x4a_c00446{left:232.000000pt;}
.xdc_c00446{left:233.333333pt;}
.xe3_c00446{left:234.293333pt;}
.xee_c00446{left:235.626667pt;}
.xc1_c00446{left:236.960000pt;}
.x21_c00446{left:238.293333pt;}
.xc6_c00446{left:239.626667pt;}
.xf8_c00446{left:241.706667pt;}
.xd0_c00446{left:244.000000pt;}
.x42_c00446{left:244.960000pt;}
.x37_c00446{left:246.666667pt;}
.x4d_c00446{left:248.000000pt;}
.x92_c00446{left:249.333333pt;}
.x8a_c00446{left:251.040000pt;}
.xfd_c00446{left:253.333333pt;}
.xc2_c00446{left:254.666667pt;}
.x82_c00446{left:255.626667pt;}
.xcc_c00446{left:261.333333pt;}
.xd4_c00446{left:262.666667pt;}
.xf9_c00446{left:265.333333pt;}
.x22_c00446{left:266.293333pt;}
.x9d_c00446{left:269.333333pt;}
.x38_c00446{left:272.000000pt;}
.x100_c00446{left:274.666667pt;}
.xb2_c00446{left:276.000000pt;}
.x56_c00446{left:276.960000pt;}
.x78_c00446{left:278.666667pt;}
.x5f_c00446{left:281.706667pt;}
.x8b_c00446{left:282.666667pt;}
.x6_c00446{left:284.373333pt;}
.x14_c00446{left:286.666667pt;}
.x23_c00446{left:288.373333pt;}
.xac_c00446{left:289.333333pt;}
.xca_c00446{left:293.706667pt;}
.x93_c00446{left:299.626667pt;}
.x83_c00446{left:303.040000pt;}
.xb3_c00446{left:304.373333pt;}
.x39_c00446{left:306.666667pt;}
.x9e_c00446{left:308.000000pt;}
.x4e_c00446{left:309.706667pt;}
.x97_c00446{left:310.666667pt;}
.x15_c00446{left:312.373333pt;}
.xa5_c00446{left:313.333333pt;}
.xbe_c00446{left:317.333333pt;}
.x6e_c00446{left:318.293333pt;}
.xd5_c00446{left:321.706667pt;}
.xef_c00446{left:323.040000pt;}
.x7_c00446{left:324.000000pt;}
.x67_c00446{left:326.293333pt;}
.x43_c00446{left:329.333333pt;}
.x84_c00446{left:332.373333pt;}
.x6f_c00446{left:333.706667pt;}
.xfa_c00446{left:334.666667pt;}
.x16_c00446{left:336.960000pt;}
.x8_c00446{left:340.000000pt;}
.x8c_c00446{left:341.333333pt;}
.x68_c00446{left:343.040000pt;}
.xd6_c00446{left:344.960000pt;}
.xf2_c00446{left:347.040000pt;}
.xf0_c00446{left:351.626667pt;}
.x2d_c00446{left:353.706667pt;}
.x4f_c00446{left:354.666667pt;}
.xa6_c00446{left:356.000000pt;}
.x70_c00446{left:357.333333pt;}
.x9_c00446{left:358.293333pt;}
.xb4_c00446{left:361.706667pt;}
.x79_c00446{left:363.040000pt;}
.x1_c00446{left:364.000000pt;}
.x57_c00446{left:365.333333pt;}
.x69_c00446{left:366.293333pt;}
.xe9_c00446{left:368.000000pt;}
.x24_c00446{left:368.960000pt;}
.xc3_c00446{left:371.040000pt;}
.xfb_c00446{left:372.000000pt;}
.x8d_c00446{left:373.333333pt;}
.xcd_c00446{left:376.000000pt;}
.x71_c00446{left:379.040000pt;}
.x98_c00446{left:380.000000pt;}
.x60_c00446{left:381.706667pt;}
.x9f_c00446{left:382.666667pt;}
.xf3_c00446{left:384.000000pt;}
.x50_c00446{left:385.333333pt;}
.xb5_c00446{left:388.000000pt;}
.xf1_c00446{left:389.333333pt;}
.x2e_c00446{left:390.293333pt;}
.x104_c00446{left:394.666667pt;}
.x44_c00446{left:395.626667pt;}
.x7a_c00446{left:397.333333pt;}
.x25_c00446{left:398.666667pt;}
.x17_c00446{left:400.000000pt;}
.x99_c00446{left:402.666667pt;}
.x85_c00446{left:404.960000pt;}
.x2f_c00446{left:408.373333pt;}
.xe0_c00446{left:409.333333pt;}
.xd1_c00446{left:410.666667pt;}
.x101_c00446{left:413.333333pt;}
.xce_c00446{left:414.666667pt;}
.xb9_c00446{left:415.626667pt;}
.x61_c00446{left:417.333333pt;}
.x58_c00446{left:419.626667pt;}
.xa_c00446{left:421.333333pt;}
.x72_c00446{left:424.960000pt;}
.x102_c00446{left:428.000000pt;}
.x26_c00446{left:433.333333pt;}
.x30_c00446{left:435.040000pt;}
.x59_c00446{left:436.960000pt;}
.xa7_c00446{left:438.666667pt;}
.xd2_c00446{left:439.626667pt;}
.x6a_c00446{left:441.333333pt;}
.xfe_c00446{left:442.666667pt;}
.x51_c00446{left:444.000000pt;}
.x7b_c00446{left:445.333333pt;}
.xba_c00446{left:448.000000pt;}
.xf4_c00446{left:449.706667pt;}
.x45_c00446{left:453.333333pt;}
.x86_c00446{left:454.666667pt;}
.x6b_c00446{left:456.960000pt;}
.xff_c00446{left:458.666667pt;}
.xea_c00446{left:460.000000pt;}
.xad_c00446{left:461.333333pt;}
.x9a_c00446{left:462.293333pt;}
.x73_c00446{left:464.373333pt;}
.x52_c00446{left:467.040000pt;}
.xa0_c00446{left:468.000000pt;}
.xbf_c00446{left:469.706667pt;}
.xf5_c00446{left:471.626667pt;}
.x3a_c00446{left:473.333333pt;}
.xfc_c00446{left:474.666667pt;}
.xe4_c00446{left:475.626667pt;}
.x18_c00446{left:477.333333pt;}
.xa8_c00446{left:478.666667pt;}
.x62_c00446{left:480.760000pt;}
.x8e_c00446{left:481.706667pt;}
.x7c_c00446{left:483.040000pt;}
.xd7_c00446{left:484.373333pt;}
.xb_c00446{left:487.040000pt;}
.xbb_c00446{left:489.706667pt;}
.x31_c00446{left:492.960000pt;}
.xcb_c00446{left:495.040000pt;}
.x3b_c00446{left:496.000000pt;}
.xeb_c00446{left:500.373333pt;}
.x74_c00446{left:501.333333pt;}
.x9b_c00446{left:502.293333pt;}
.xf6_c00446{left:504.000000pt;}
.x94_c00446{left:506.666667pt;}
.x87_c00446{left:508.000000pt;}
.xa1_c00446{left:509.333333pt;}
.x32_c00446{left:511.040000pt;}
.xb6_c00446{left:513.333333pt;}
.xc_c00446{left:518.666667pt;}
.x3c_c00446{left:520.373333pt;}
.xdd_c00446{left:524.000000pt;}
.xa9_c00446{left:525.333333pt;}
.x27_c00446{left:526.293333pt;}
.xd3_c00446{left:528.000000pt;}
.x19_c00446{left:529.333333pt;}
.x5a_c00446{left:534.293333pt;}
.x33_c00446{left:536.000000pt;}
.x63_c00446{left:539.626667pt;}
.xd_c00446{left:541.333333pt;}
.xde_c00446{left:544.373333pt;}
.x28_c00446{left:545.706667pt;}
.x46_c00446{left:548.000000pt;}
.x8f_c00446{left:550.666667pt;}
.x7d_c00446{left:552.000000pt;}
.xbc_c00446{left:553.333333pt;}
.xe5_c00446{left:554.293333pt;}
.x64_c00446{left:556.373333pt;}
.xe_c00446{left:557.333333pt;}
.xaa_c00446{left:560.000000pt;}
.xc0_c00446{left:561.333333pt;}
.x29_c00446{left:565.333333pt;}
.xd8_c00446{left:566.666667pt;}
.xdf_c00446{left:570.666667pt;}
.x88_c00446{left:572.000000pt;}
.x47_c00446{left:574.666667pt;}
.xa2_c00446{left:577.706667pt;}
.x3d_c00446{left:579.040000pt;}
.xf_c00446{left:580.000000pt;}
.xae_c00446{left:580.960000pt;}
.x90_c00446{left:582.666667pt;}
.x1a_c00446{left:586.293333pt;}
.x34_c00446{left:588.000000pt;}
.x105_c00446{left:589.333333pt;}
.x7e_c00446{left:591.040000pt;}
.x95_c00446{left:592.000000pt;}
.x5b_c00446{left:593.333333pt;}
.x75_c00446{left:594.666667pt;}
.x53_c00446{left:597.706667pt;}
.xa3_c00446{left:602.666667pt;}
.x6c_c00446{left:604.000000pt;}
.xd9_c00446{left:605.333333pt;}
.x2a_c00446{left:606.293333pt;}
.x10_c00446{left:607.626667pt;}
.xaf_c00446{left:609.706667pt;}
.x3e_c00446{left:610.666667pt;}
.x35_c00446{left:612.373333pt;}
.x1b_c00446{left:614.666667pt;}
.x7f_c00446{left:616.000000pt;}
.x48_c00446{left:620.373333pt;}
.xb7_c00446{left:622.666667pt;}
.x54_c00446{left:623.626667pt;}
.xe1_c00446{left:628.373333pt;}
.x2_c00446{left:629.333333pt;}
.x3f_c00446{left:631.040000pt;}
.x76_c00446{left:632.960000pt;}
.x2b_c00446{left:636.000000pt;}
.x96_c00446{left:638.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_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_03f38ac87a40efa997084666.woff2')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m74_c00447{transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);}
.m59_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);}
.m73_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);}
.m63_c00447{transform:matrix(0.318109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318109,0.000000,0.000000,0.250000,0,0);}
.m76_c00447{transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);}
.m54_c00447{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m29_c00447{transform:matrix(0.343612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343612,0.000000,0.000000,0.250000,0,0);}
.m5e_c00447{transform:matrix(0.346324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346324,0.000000,0.000000,0.250000,0,0);}
.m30_c00447{transform:matrix(0.346955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346955,0.000000,0.000000,0.250000,0,0);}
.m27_c00447{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);}
.m21_c00447{transform:matrix(0.365028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365028,0.000000,0.000000,0.250000,0,0);}
.m37_c00447{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00447{transform:matrix(0.383581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383581,0.000000,0.000000,0.250000,0,0);}
.m67_c00447{transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);}
.m0_c00447{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m62_c00447{transform:matrix(0.389868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389868,0.000000,0.000000,0.250000,0,0);}
.mf_c00447{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.m25_c00447{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m20_c00447{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m3f_c00447{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.m61_c00447{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m22_c00447{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m4b_c00447{transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);}
.m11_c00447{transform:matrix(0.427647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427647,0.000000,0.000000,0.250000,0,0);}
.m60_c00447{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m2d_c00447{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_c00447{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m1e_c00447{transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);}
.m66_c00447{transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);}
.m58_c00447{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m19_c00447{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m64_c00447{transform:matrix(0.455929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455929,0.000000,0.000000,0.250000,0,0);}
.m2a_c00447{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m5b_c00447{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.m4f_c00447{transform:matrix(0.461538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461538,0.000000,0.000000,0.250000,0,0);}
.m38_c00447{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m50_c00447{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.m68_c00447{transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);}
.m40_c00447{transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);}
.m43_c00447{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m77_c00447{transform:matrix(0.485577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485577,0.000000,0.000000,0.250000,0,0);}
.m6f_c00447{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m56_c00447{transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);}
.m5c_c00447{transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);}
.m4e_c00447{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.m3e_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);}
.m65_c00447{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.md_c00447{transform:matrix(0.503529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503529,0.000000,0.000000,0.250000,0,0);}
.m6d_c00447{transform:matrix(0.507212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507212,0.000000,0.000000,0.250000,0,0);}
.m16_c00447{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m9_c00447{transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);}
.m39_c00447{transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);}
.m51_c00447{transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);}
.m2e_c00447{transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);}
.m18_c00447{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);}
.m8_c00447{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m72_c00447{transform:matrix(0.524840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524840,0.000000,0.000000,0.250000,0,0);}
.me_c00447{transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);}
.m53_c00447{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.m46_c00447{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m1a_c00447{transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);}
.m5a_c00447{transform:matrix(0.544872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544872,0.000000,0.000000,0.250000,0,0);}
.m1c_c00447{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m3c_c00447{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m3a_c00447{transform:matrix(0.556167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556167,0.000000,0.000000,0.250000,0,0);}
.m6_c00447{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m33_c00447{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m6e_c00447{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m15_c00447{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);}
.m1f_c00447{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m5f_c00447{transform:matrix(0.577093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577093,0.000000,0.000000,0.250000,0,0);}
.m10_c00447{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m2b_c00447{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.m69_c00447{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.mb_c00447{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m5_c00447{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.ma_c00447{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m6a_c00447{transform:matrix(0.601322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601322,0.000000,0.000000,0.250000,0,0);}
.m2_c00447{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m6c_c00447{transform:matrix(0.608974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608974,0.000000,0.000000,0.250000,0,0);}
.m24_c00447{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m23_c00447{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m14_c00447{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m31_c00447{transform:matrix(0.616987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616987,0.000000,0.000000,0.250000,0,0);}
.m13_c00447{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m7_c00447{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m47_c00447{transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);}
.m45_c00447{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.m32_c00447{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m26_c00447{transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);}
.m2c_c00447{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m1b_c00447{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m17_c00447{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m4_c00447{transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);}
.m71_c00447{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.m12_c00447{transform:matrix(0.685096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685096,0.000000,0.000000,0.250000,0,0);}
.m28_c00447{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m55_c00447{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m36_c00447{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.m41_c00447{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m49_c00447{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m4d_c00447{transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);}
.m70_c00447{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.m44_c00447{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m3b_c00447{transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);}
.m1d_c00447{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);}
.m4c_c00447{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.m35_c00447{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m75_c00447{transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);}
.m3d_c00447{transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);}
.m57_c00447{transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);}
.m52_c00447{transform:matrix(0.772727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772727,0.000000,0.000000,0.250000,0,0);}
.m5d_c00447{transform:matrix(0.785242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785242,0.000000,0.000000,0.250000,0,0);}
.m4a_c00447{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m42_c00447{transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);}
.m48_c00447{transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);}
.m6b_c00447{transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);}
.m34_c00447{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m2f_c00447{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.v2_c00447{vertical-align:-6.000000px;}
.v0_c00447{vertical-align:0.000000px;}
.v1_c00447{vertical-align:6.000000px;}
.ls3_c00447{letter-spacing:0.000000px;}
.ls2_c00447{letter-spacing:16.947678px;}
.ls0_c00447{letter-spacing:64.456126px;}
.ls1_c00447{letter-spacing:66.638818px;}
.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;}
}
.ws1_c00447{word-spacing:-72.410206px;}
.ws7_c00447{word-spacing:-18.944958px;}
.ws21_c00447{word-spacing:-2.430646px;}
.ws24_c00447{word-spacing:0.000000px;}
.ws11_c00447{word-spacing:14.355927px;}
.ws6_c00447{word-spacing:14.402322px;}
.ws1b_c00447{word-spacing:14.950398px;}
.ws1c_c00447{word-spacing:15.498475px;}
.ws22_c00447{word-spacing:24.040335px;}
.ws10_c00447{word-spacing:28.114700px;}
.ws15_c00447{word-spacing:28.967678px;}
.ws9_c00447{word-spacing:31.638459px;}
.ws1d_c00447{word-spacing:33.641400px;}
.ws0_c00447{word-spacing:35.020449px;}
.wsc_c00447{word-spacing:35.023211px;}
.ws8_c00447{word-spacing:36.658489px;}
.wsb_c00447{word-spacing:36.899244px;}
.ws20_c00447{word-spacing:41.750340px;}
.wsd_c00447{word-spacing:44.811241px;}
.ws19_c00447{word-spacing:51.717174px;}
.ws3_c00447{word-spacing:52.439976px;}
.ws1e_c00447{word-spacing:53.127923px;}
.ws2_c00447{word-spacing:54.291843px;}
.wse_c00447{word-spacing:55.942961px;}
.ws23_c00447{word-spacing:56.099540px;}
.ws18_c00447{word-spacing:56.502046px;}
.ws16_c00447{word-spacing:58.393307px;}
.ws1f_c00447{word-spacing:58.757998px;}
.wsa_c00447{word-spacing:59.332701px;}
.ws12_c00447{word-spacing:62.565861px;}
.ws4_c00447{word-spacing:65.029892px;}
.ws13_c00447{word-spacing:65.593241px;}
.ws14_c00447{word-spacing:69.168044px;}
.wsf_c00447{word-spacing:69.191050px;}
.ws17_c00447{word-spacing:86.659200px;}
.ws5_c00447{word-spacing:96.250880px;}
.ws1a_c00447{word-spacing:100.250880px;}
._0_c00447{margin-left:-64.456126px;}
._4_c00447{margin-left:-16.947678px;}
._5_c00447{width:46.767632px;}
._8_c00447{width:51.849302px;}
._1_c00447{width:64.820592px;}
._9_c00447{width:66.875441px;}
._6_c00447{width:69.690478px;}
._a_c00447{width:74.073043px;}
._2_c00447{width:75.654560px;}
._7_c00447{width:80.696927px;}
._3_c00447{width:111.183360px;}
.fc0_c00447{color:transparent;}
.fs7_c00447{font-size:3.420000px;}
.fs8_c00447{font-size:11.880000px;}
.fs6_c00447{font-size:13.620000px;}
.fs4_c00447{font-size:18.720000px;}
.fs1_c00447{font-size:20.400000px;}
.fs2_c00447{font-size:25.500000px;}
.fs5_c00447{font-size:28.920000px;}
.fs3_c00447{font-size:32.340000px;}
.fs0_c00447{font-size:35.700000px;}
.y0_c00447{bottom:0.000000px;}
.yc5_c00447{bottom:308.550000px;}
.yc3_c00447{bottom:311.130000px;}
.yc2_c00447{bottom:312.195000px;}
.yc4_c00447{bottom:312.420000px;}
.yc0_c00447{bottom:324.630000px;}
.yc1_c00447{bottom:325.695000px;}
.ybf_c00447{bottom:339.195000px;}
.yba_c00447{bottom:339.630000px;}
.ybd_c00447{bottom:340.470000px;}
.ybe_c00447{bottom:340.695000px;}
.ybc_c00447{bottom:340.920000px;}
.ybb_c00447{bottom:341.970000px;}
.yb7_c00447{bottom:353.130000px;}
.yb9_c00447{bottom:353.775000px;}
.yb8_c00447{bottom:354.195000px;}
.yb5_c00447{bottom:366.195000px;}
.yb3_c00447{bottom:366.630000px;}
.yb4_c00447{bottom:367.695000px;}
.yb6_c00447{bottom:367.920000px;}
.yb2_c00447{bottom:378.630000px;}
.yb0_c00447{bottom:380.130000px;}
.yb1_c00447{bottom:381.195000px;}
.yaf_c00447{bottom:393.630000px;}
.yae_c00447{bottom:394.695000px;}
.yac_c00447{bottom:395.130000px;}
.yad_c00447{bottom:396.195000px;}
.ya9_c00447{bottom:407.550000px;}
.yab_c00447{bottom:408.630000px;}
.yaa_c00447{bottom:409.695000px;}
.ya8_c00447{bottom:420.630000px;}
.ya7_c00447{bottom:421.695000px;}
.ya5_c00447{bottom:422.130000px;}
.ya6_c00447{bottom:423.195000px;}
.ya4_c00447{bottom:434.130000px;}
.ya3_c00447{bottom:435.630000px;}
.ya2_c00447{bottom:436.695000px;}
.ya1_c00447{bottom:437.130000px;}
.ya0_c00447{bottom:449.130000px;}
.y9f_c00447{bottom:450.195000px;}
.y9d_c00447{bottom:450.630000px;}
.y9e_c00447{bottom:451.695000px;}
.y9c_c00447{bottom:462.630000px;}
.y9b_c00447{bottom:463.695000px;}
.y9a_c00447{bottom:464.130000px;}
.y99_c00447{bottom:465.195000px;}
.y98_c00447{bottom:476.130000px;}
.y97_c00447{bottom:477.195000px;}
.y94_c00447{bottom:477.630000px;}
.y95_c00447{bottom:478.695000px;}
.y96_c00447{bottom:480.195000px;}
.y93_c00447{bottom:489.630000px;}
.y92_c00447{bottom:490.695000px;}
.y91_c00447{bottom:491.130000px;}
.y8f_c00447{bottom:492.195000px;}
.y90_c00447{bottom:492.630000px;}
.y8c_c00447{bottom:505.695000px;}
.y8e_c00447{bottom:505.920000px;}
.y8b_c00447{bottom:506.130000px;}
.y8d_c00447{bottom:507.420000px;}
.y89_c00447{bottom:518.130000px;}
.y88_c00447{bottom:519.195000px;}
.y8a_c00447{bottom:519.420000px;}
.y87_c00447{bottom:519.630000px;}
.y86_c00447{bottom:520.695000px;}
.y85_c00447{bottom:532.695000px;}
.y82_c00447{bottom:533.130000px;}
.y83_c00447{bottom:534.195000px;}
.y84_c00447{bottom:534.420000px;}
.y81_c00447{bottom:545.130000px;}
.y80_c00447{bottom:546.195000px;}
.y7d_c00447{bottom:546.630000px;}
.y7e_c00447{bottom:547.695000px;}
.y7f_c00447{bottom:547.920000px;}
.y7c_c00447{bottom:559.695000px;}
.y7a_c00447{bottom:560.130000px;}
.y79_c00447{bottom:561.195000px;}
.y7b_c00447{bottom:561.420000px;}
.y77_c00447{bottom:572.775000px;}
.y78_c00447{bottom:578.130000px;}
.y74_c00447{bottom:579.195000px;}
.y75_c00447{bottom:579.630000px;}
.y76_c00447{bottom:580.695000px;}
.y72_c00447{bottom:591.630000px;}
.y73_c00447{bottom:592.695000px;}
.y70_c00447{bottom:606.195000px;}
.y71_c00447{bottom:606.630000px;}
.y6f_c00447{bottom:607.695000px;}
.y17_c00447{bottom:629.325000px;}
.y16_c00447{bottom:630.405000px;}
.y14_c00447{bottom:631.470000px;}
.y15_c00447{bottom:632.550000px;}
.y18_c00447{bottom:632.970000px;}
.y13_c00447{bottom:644.325000px;}
.ye_c00447{bottom:644.970000px;}
.y12_c00447{bottom:645.405000px;}
.y11_c00447{bottom:646.050000px;}
.yf_c00447{bottom:646.470000px;}
.y10_c00447{bottom:647.550000px;}
.yd_c00447{bottom:667.470000px;}
.yc_c00447{bottom:671.550000px;}
.y6b_c00447{bottom:724.050000px;}
.y69_c00447{bottom:726.195000px;}
.y6a_c00447{bottom:726.630000px;}
.y6d_c00447{bottom:727.695000px;}
.y6c_c00447{bottom:727.920000px;}
.y6e_c00447{bottom:728.130000px;}
.y65_c00447{bottom:740.130000px;}
.y66_c00447{bottom:741.195000px;}
.y67_c00447{bottom:741.630000px;}
.y68_c00447{bottom:743.130000px;}
.y60_c00447{bottom:753.630000px;}
.y61_c00447{bottom:754.275000px;}
.y63_c00447{bottom:754.695000px;}
.y62_c00447{bottom:754.920000px;}
.y64_c00447{bottom:756.630000px;}
.y5f_c00447{bottom:759.195000px;}
.y5c_c00447{bottom:767.775000px;}
.y5a_c00447{bottom:768.195000px;}
.y5b_c00447{bottom:768.630000px;}
.y5e_c00447{bottom:769.050000px;}
.y5d_c00447{bottom:769.695000px;}
.y57_c00447{bottom:782.130000px;}
.y59_c00447{bottom:782.775000px;}
.y58_c00447{bottom:783.195000px;}
.y54_c00447{bottom:795.630000px;}
.y55_c00447{bottom:796.695000px;}
.y56_c00447{bottom:797.130000px;}
.y53_c00447{bottom:809.130000px;}
.y51_c00447{bottom:810.195000px;}
.y52_c00447{bottom:810.630000px;}
.y4f_c00447{bottom:822.630000px;}
.y4b_c00447{bottom:823.050000px;}
.y4c_c00447{bottom:823.695000px;}
.y50_c00447{bottom:824.130000px;}
.y4e_c00447{bottom:825.195000px;}
.y4d_c00447{bottom:825.420000px;}
.y48_c00447{bottom:837.630000px;}
.y49_c00447{bottom:838.695000px;}
.y4a_c00447{bottom:839.130000px;}
.y45_c00447{bottom:851.130000px;}
.y46_c00447{bottom:852.195000px;}
.y47_c00447{bottom:852.630000px;}
.y44_c00447{bottom:864.630000px;}
.y43_c00447{bottom:865.695000px;}
.y40_c00447{bottom:878.130000px;}
.y3f_c00447{bottom:879.195000px;}
.y41_c00447{bottom:879.630000px;}
.y42_c00447{bottom:880.695000px;}
.y3c_c00447{bottom:893.130000px;}
.y3d_c00447{bottom:894.195000px;}
.y3e_c00447{bottom:894.630000px;}
.y38_c00447{bottom:906.195000px;}
.y39_c00447{bottom:906.630000px;}
.y3a_c00447{bottom:907.695000px;}
.y3b_c00447{bottom:908.130000px;}
.y35_c00447{bottom:919.695000px;}
.y34_c00447{bottom:920.130000px;}
.y36_c00447{bottom:921.420000px;}
.y37_c00447{bottom:922.920000px;}
.y31_c00447{bottom:933.630000px;}
.y30_c00447{bottom:934.695000px;}
.y32_c00447{bottom:935.130000px;}
.y33_c00447{bottom:936.420000px;}
.y2c_c00447{bottom:948.195000px;}
.y2e_c00447{bottom:949.695000px;}
.y2d_c00447{bottom:949.920000px;}
.y2f_c00447{bottom:950.130000px;}
.y29_c00447{bottom:961.695000px;}
.y27_c00447{bottom:962.130000px;}
.y28_c00447{bottom:963.195000px;}
.y2a_c00447{bottom:963.420000px;}
.y2b_c00447{bottom:963.630000px;}
.y23_c00447{bottom:974.130000px;}
.y22_c00447{bottom:975.195000px;}
.y24_c00447{bottom:976.695000px;}
.y25_c00447{bottom:976.920000px;}
.y26_c00447{bottom:977.130000px;}
.y1e_c00447{bottom:988.695000px;}
.y1f_c00447{bottom:990.195000px;}
.y20_c00447{bottom:991.695000px;}
.y21_c00447{bottom:992.130000px;}
.y19_c00447{bottom:1001.130000px;}
.y1a_c00447{bottom:1002.195000px;}
.y1c_c00447{bottom:1002.630000px;}
.y1b_c00447{bottom:1003.695000px;}
.y1d_c00447{bottom:1004.550000px;}
.ya_c00447{bottom:1023.630000px;}
.yb_c00447{bottom:1024.050000px;}
.y9_c00447{bottom:1035.825000px;}
.y8_c00447{bottom:1037.325000px;}
.y6_c00447{bottom:1037.970000px;}
.y5_c00447{bottom:1039.050000px;}
.y7_c00447{bottom:1039.470000px;}
.y4_c00447{bottom:1060.470000px;}
.y3_c00447{bottom:1064.550000px;}
.y1_c00447{bottom:1097.745000px;}
.y2_c00447{bottom:1099.050000px;}
.h9_c00447{height:4.206533px;}
.hb_c00447{height:14.612168px;}
.h7_c00447{height:16.752334px;}
.h8_c00447{height:22.752334px;}
.h5_c00447{height:23.025234px;}
.h2_c00447{height:25.091602px;}
.ha_c00447{height:29.025234px;}
.h3_c00447{height:31.364502px;}
.h6_c00447{height:35.571035px;}
.h4_c00447{height:39.777568px;}
.h1_c00447{height:43.910303px;}
.h0_c00447{height:1335.000000px;}
.w0_c00447{width:880.500000px;}
.x0_c00447{left:0.000000px;}
.x5_c00447{left:103.500000px;}
.x6d_c00447{left:108.000000px;}
.x2c_c00447{left:109.500000px;}
.x2d_c00447{left:131.580000px;}
.x4e_c00447{left:136.080000px;}
.x51_c00447{left:141.000000px;}
.x43_c00447{left:145.500000px;}
.x33_c00447{left:149.580000px;}
.x7e_c00447{left:151.080000px;}
.x1_c00447{left:153.000000px;}
.x52_c00447{left:154.080000px;}
.x5e_c00447{left:158.580000px;}
.x6_c00447{left:163.920000px;}
.x55_c00447{left:168.000000px;}
.x4d_c00447{left:169.080000px;}
.x8c_c00447{left:180.000000px;}
.x6e_c00447{left:181.920000px;}
.x45_c00447{left:183.000000px;}
.x6b_c00447{left:187.500000px;}
.x60_c00447{left:190.920000px;}
.x7_c00447{left:192.000000px;}
.x19_c00447{left:195.000000px;}
.x61_c00447{left:199.500000px;}
.x80_c00447{left:201.000000px;}
.x6f_c00447{left:204.420000px;}
.x6c_c00447{left:208.500000px;}
.x8_c00447{left:225.000000px;}
.x1a_c00447{left:229.500000px;}
.x73_c00447{left:241.500000px;}
.x62_c00447{left:246.000000px;}
.x23_c00447{left:255.000000px;}
.x46_c00447{left:258.000000px;}
.x4f_c00447{left:259.500000px;}
.x56_c00447{left:262.500000px;}
.x34_c00447{left:264.000000px;}
.x31_c00447{left:267.000000px;}
.x39_c00447{left:268.500000px;}
.x63_c00447{left:295.500000px;}
.x74_c00447{left:304.500000px;}
.x3f_c00447{left:309.000000px;}
.x57_c00447{left:312.000000px;}
.x7c_c00447{left:313.500000px;}
.x9_c00447{left:316.080000px;}
.x3a_c00447{left:318.000000px;}
.x1b_c00447{left:322.080000px;}
.xa_c00447{left:331.080000px;}
.x1c_c00447{left:340.080000px;}
.x64_c00447{left:345.000000px;}
.x24_c00447{left:346.500000px;}
.x13_c00447{left:352.500000px;}
.x2e_c00447{left:354.000000px;}
.x81_c00447{left:357.000000px;}
.x47_c00447{left:358.500000px;}
.x5f_c00447{left:361.500000px;}
.x85_c00447{left:363.000000px;}
.x77_c00447{left:366.000000px;}
.x3b_c00447{left:367.500000px;}
.xb_c00447{left:375.000000px;}
.x25_c00447{left:376.500000px;}
.x1d_c00447{left:385.500000px;}
.x14_c00447{left:390.000000px;}
.x65_c00447{left:394.500000px;}
.x2f_c00447{left:403.500000px;}
.x15_c00447{left:405.000000px;}
.x2_c00447{left:408.000000px;}
.x70_c00447{left:409.920000px;}
.x3_c00447{left:411.000000px;}
.x17_c00447{left:412.500000px;}
.xc_c00447{left:413.580000px;}
.x78_c00447{left:415.080000px;}
.x44_c00447{left:417.000000px;}
.xd_c00447{left:430.500000px;}
.x26_c00447{left:435.000000px;}
.x1e_c00447{left:438.420000px;}
.x66_c00447{left:445.500000px;}
.x27_c00447{left:450.000000px;}
.x4_c00447{left:455.580000px;}
.x18_c00447{left:457.080000px;}
.x71_c00447{left:459.000000px;}
.x82_c00447{left:460.500000px;}
.x58_c00447{left:462.000000px;}
.x79_c00447{left:465.000000px;}
.x3c_c00447{left:466.500000px;}
.x28_c00447{left:472.920000px;}
.x16_c00447{left:475.500000px;}
.x48_c00447{left:507.000000px;}
.x8d_c00447{left:510.000000px;}
.x59_c00447{left:511.500000px;}
.x35_c00447{left:513.000000px;}
.x7d_c00447{left:516.000000px;}
.xe_c00447{left:518.580000px;}
.x29_c00447{left:530.580000px;}
.x89_c00447{left:543.000000px;}
.x67_c00447{left:544.500000px;}
.x2a_c00447{left:546.000000px;}
.x1f_c00447{left:547.080000px;}
.x49_c00447{left:556.500000px;}
.x83_c00447{left:559.500000px;}
.x5a_c00447{left:561.000000px;}
.x36_c00447{left:564.000000px;}
.x41_c00447{left:565.500000px;}
.x2b_c00447{left:571.500000px;}
.xf_c00447{left:586.500000px;}
.x8a_c00447{left:592.500000px;}
.x68_c00447{left:594.000000px;}
.x75_c00447{left:601.500000px;}
.x4a_c00447{left:606.000000px;}
.x72_c00447{left:607.500000px;}
.x86_c00447{left:609.000000px;}
.x37_c00447{left:610.500000px;}
.x7a_c00447{left:613.500000px;}
.x3d_c00447{left:615.000000px;}
.x20_c00447{left:616.500000px;}
.x8b_c00447{left:642.000000px;}
.x69_c00447{left:645.000000px;}
.x76_c00447{left:651.000000px;}
.x10_c00447{left:652.080000px;}
.x40_c00447{left:655.500000px;}
.x5d_c00447{left:657.420000px;}
.x87_c00447{left:658.500000px;}
.x53_c00447{left:660.000000px;}
.x3e_c00447{left:664.500000px;}
.x42_c00447{left:666.420000px;}
.x21_c00447{left:686.580000px;}
.x30_c00447{left:700.500000px;}
.x7f_c00447{left:703.500000px;}
.x4b_c00447{left:705.000000px;}
.x50_c00447{left:706.920000px;}
.x84_c00447{left:708.000000px;}
.x5b_c00447{left:709.500000px;}
.x11_c00447{left:714.000000px;}
.x6a_c00447{left:744.000000px;}
.x12_c00447{left:748.500000px;}
.x22_c00447{left:750.000000px;}
.x4c_c00447{left:754.500000px;}
.x54_c00447{left:756.420000px;}
.x88_c00447{left:757.500000px;}
.x5c_c00447{left:759.000000px;}
.x38_c00447{left:760.920000px;}
.x7b_c00447{left:762.000000px;}
.x32_c00447{left:763.500000px;}
@media print{
.v2_c00447{vertical-align:-5.333333pt;}
.v0_c00447{vertical-align:0.000000pt;}
.v1_c00447{vertical-align:5.333333pt;}
.ls3_c00447{letter-spacing:0.000000pt;}
.ls2_c00447{letter-spacing:15.064603pt;}
.ls0_c00447{letter-spacing:57.294334pt;}
.ls1_c00447{letter-spacing:59.234505pt;}
.ws1_c00447{word-spacing:-64.364628pt;}
.ws7_c00447{word-spacing:-16.839963pt;}
.ws21_c00447{word-spacing:-2.160574pt;}
.ws24_c00447{word-spacing:0.000000pt;}
.ws11_c00447{word-spacing:12.760824pt;}
.ws6_c00447{word-spacing:12.802064pt;}
.ws1b_c00447{word-spacing:13.289243pt;}
.ws1c_c00447{word-spacing:13.776423pt;}
.ws22_c00447{word-spacing:21.369187pt;}
.ws10_c00447{word-spacing:24.990845pt;}
.ws15_c00447{word-spacing:25.749047pt;}
.ws9_c00447{word-spacing:28.123075pt;}
.ws1d_c00447{word-spacing:29.903467pt;}
.ws0_c00447{word-spacing:31.129288pt;}
.wsc_c00447{word-spacing:31.131743pt;}
.ws8_c00447{word-spacing:32.585323pt;}
.wsb_c00447{word-spacing:32.799328pt;}
.ws20_c00447{word-spacing:37.111414pt;}
.wsd_c00447{word-spacing:39.832214pt;}
.ws19_c00447{word-spacing:45.970821pt;}
.ws3_c00447{word-spacing:46.613312pt;}
.ws1e_c00447{word-spacing:47.224820pt;}
.ws2_c00447{word-spacing:48.259416pt;}
.wse_c00447{word-spacing:49.727076pt;}
.ws23_c00447{word-spacing:49.866258pt;}
.ws18_c00447{word-spacing:50.224041pt;}
.ws16_c00447{word-spacing:51.905162pt;}
.ws1f_c00447{word-spacing:52.229332pt;}
.wsa_c00447{word-spacing:52.740178pt;}
.ws12_c00447{word-spacing:55.614099pt;}
.ws4_c00447{word-spacing:57.804348pt;}
.ws13_c00447{word-spacing:58.305103pt;}
.ws14_c00447{word-spacing:61.482706pt;}
.wsf_c00447{word-spacing:61.503155pt;}
.ws17_c00447{word-spacing:77.030400pt;}
.ws5_c00447{word-spacing:85.556338pt;}
.ws1a_c00447{word-spacing:89.111893pt;}
._0_c00447{margin-left:-57.294334pt;}
._4_c00447{margin-left:-15.064603pt;}
._5_c00447{width:41.571228pt;}
._8_c00447{width:46.088269pt;}
._1_c00447{width:57.618304pt;}
._9_c00447{width:59.444836pt;}
._6_c00447{width:61.947092pt;}
._a_c00447{width:65.842705pt;}
._2_c00447{width:67.248498pt;}
._7_c00447{width:71.730602pt;}
._3_c00447{width:98.829653pt;}
.fs7_c00447{font-size:3.040000pt;}
.fs8_c00447{font-size:10.560000pt;}
.fs6_c00447{font-size:12.106667pt;}
.fs4_c00447{font-size:16.640000pt;}
.fs1_c00447{font-size:18.133333pt;}
.fs2_c00447{font-size:22.666667pt;}
.fs5_c00447{font-size:25.706667pt;}
.fs3_c00447{font-size:28.746667pt;}
.fs0_c00447{font-size:31.733333pt;}
.y0_c00447{bottom:0.000000pt;}
.yc5_c00447{bottom:274.266667pt;}
.yc3_c00447{bottom:276.560000pt;}
.yc2_c00447{bottom:277.506667pt;}
.yc4_c00447{bottom:277.706667pt;}
.yc0_c00447{bottom:288.560000pt;}
.yc1_c00447{bottom:289.506667pt;}
.ybf_c00447{bottom:301.506667pt;}
.yba_c00447{bottom:301.893333pt;}
.ybd_c00447{bottom:302.640000pt;}
.ybe_c00447{bottom:302.840000pt;}
.ybc_c00447{bottom:303.040000pt;}
.ybb_c00447{bottom:303.973333pt;}
.yb7_c00447{bottom:313.893333pt;}
.yb9_c00447{bottom:314.466667pt;}
.yb8_c00447{bottom:314.840000pt;}
.yb5_c00447{bottom:325.506667pt;}
.yb3_c00447{bottom:325.893333pt;}
.yb4_c00447{bottom:326.840000pt;}
.yb6_c00447{bottom:327.040000pt;}
.yb2_c00447{bottom:336.560000pt;}
.yb0_c00447{bottom:337.893333pt;}
.yb1_c00447{bottom:338.840000pt;}
.yaf_c00447{bottom:349.893333pt;}
.yae_c00447{bottom:350.840000pt;}
.yac_c00447{bottom:351.226667pt;}
.yad_c00447{bottom:352.173333pt;}
.ya9_c00447{bottom:362.266667pt;}
.yab_c00447{bottom:363.226667pt;}
.yaa_c00447{bottom:364.173333pt;}
.ya8_c00447{bottom:373.893333pt;}
.ya7_c00447{bottom:374.840000pt;}
.ya5_c00447{bottom:375.226667pt;}
.ya6_c00447{bottom:376.173333pt;}
.ya4_c00447{bottom:385.893333pt;}
.ya3_c00447{bottom:387.226667pt;}
.ya2_c00447{bottom:388.173333pt;}
.ya1_c00447{bottom:388.560000pt;}
.ya0_c00447{bottom:399.226667pt;}
.y9f_c00447{bottom:400.173333pt;}
.y9d_c00447{bottom:400.560000pt;}
.y9e_c00447{bottom:401.506667pt;}
.y9c_c00447{bottom:411.226667pt;}
.y9b_c00447{bottom:412.173333pt;}
.y9a_c00447{bottom:412.560000pt;}
.y99_c00447{bottom:413.506667pt;}
.y98_c00447{bottom:423.226667pt;}
.y97_c00447{bottom:424.173333pt;}
.y94_c00447{bottom:424.560000pt;}
.y95_c00447{bottom:425.506667pt;}
.y96_c00447{bottom:426.840000pt;}
.y93_c00447{bottom:435.226667pt;}
.y92_c00447{bottom:436.173333pt;}
.y91_c00447{bottom:436.560000pt;}
.y8f_c00447{bottom:437.506667pt;}
.y90_c00447{bottom:437.893333pt;}
.y8c_c00447{bottom:449.506667pt;}
.y8e_c00447{bottom:449.706667pt;}
.y8b_c00447{bottom:449.893333pt;}
.y8d_c00447{bottom:451.040000pt;}
.y89_c00447{bottom:460.560000pt;}
.y88_c00447{bottom:461.506667pt;}
.y8a_c00447{bottom:461.706667pt;}
.y87_c00447{bottom:461.893333pt;}
.y86_c00447{bottom:462.840000pt;}
.y85_c00447{bottom:473.506667pt;}
.y82_c00447{bottom:473.893333pt;}
.y83_c00447{bottom:474.840000pt;}
.y84_c00447{bottom:475.040000pt;}
.y81_c00447{bottom:484.560000pt;}
.y80_c00447{bottom:485.506667pt;}
.y7d_c00447{bottom:485.893333pt;}
.y7e_c00447{bottom:486.840000pt;}
.y7f_c00447{bottom:487.040000pt;}
.y7c_c00447{bottom:497.506667pt;}
.y7a_c00447{bottom:497.893333pt;}
.y79_c00447{bottom:498.840000pt;}
.y7b_c00447{bottom:499.040000pt;}
.y77_c00447{bottom:509.133333pt;}
.y78_c00447{bottom:513.893333pt;}
.y74_c00447{bottom:514.840000pt;}
.y75_c00447{bottom:515.226667pt;}
.y76_c00447{bottom:516.173333pt;}
.y72_c00447{bottom:525.893333pt;}
.y73_c00447{bottom:526.840000pt;}
.y70_c00447{bottom:538.840000pt;}
.y71_c00447{bottom:539.226667pt;}
.y6f_c00447{bottom:540.173333pt;}
.y17_c00447{bottom:559.400000pt;}
.y16_c00447{bottom:560.360000pt;}
.y14_c00447{bottom:561.306667pt;}
.y15_c00447{bottom:562.266667pt;}
.y18_c00447{bottom:562.640000pt;}
.y13_c00447{bottom:572.733333pt;}
.ye_c00447{bottom:573.306667pt;}
.y12_c00447{bottom:573.693333pt;}
.y11_c00447{bottom:574.266667pt;}
.yf_c00447{bottom:574.640000pt;}
.y10_c00447{bottom:575.600000pt;}
.yd_c00447{bottom:593.306667pt;}
.yc_c00447{bottom:596.933333pt;}
.y6b_c00447{bottom:643.600000pt;}
.y69_c00447{bottom:645.506667pt;}
.y6a_c00447{bottom:645.893333pt;}
.y6d_c00447{bottom:646.840000pt;}
.y6c_c00447{bottom:647.040000pt;}
.y6e_c00447{bottom:647.226667pt;}
.y65_c00447{bottom:657.893333pt;}
.y66_c00447{bottom:658.840000pt;}
.y67_c00447{bottom:659.226667pt;}
.y68_c00447{bottom:660.560000pt;}
.y60_c00447{bottom:669.893333pt;}
.y61_c00447{bottom:670.466667pt;}
.y63_c00447{bottom:670.840000pt;}
.y62_c00447{bottom:671.040000pt;}
.y64_c00447{bottom:672.560000pt;}
.y5f_c00447{bottom:674.840000pt;}
.y5c_c00447{bottom:682.466667pt;}
.y5a_c00447{bottom:682.840000pt;}
.y5b_c00447{bottom:683.226667pt;}
.y5e_c00447{bottom:683.600000pt;}
.y5d_c00447{bottom:684.173333pt;}
.y57_c00447{bottom:695.226667pt;}
.y59_c00447{bottom:695.800000pt;}
.y58_c00447{bottom:696.173333pt;}
.y54_c00447{bottom:707.226667pt;}
.y55_c00447{bottom:708.173333pt;}
.y56_c00447{bottom:708.560000pt;}
.y53_c00447{bottom:719.226667pt;}
.y51_c00447{bottom:720.173333pt;}
.y52_c00447{bottom:720.560000pt;}
.y4f_c00447{bottom:731.226667pt;}
.y4b_c00447{bottom:731.600000pt;}
.y4c_c00447{bottom:732.173333pt;}
.y50_c00447{bottom:732.560000pt;}
.y4e_c00447{bottom:733.506667pt;}
.y4d_c00447{bottom:733.706667pt;}
.y48_c00447{bottom:744.560000pt;}
.y49_c00447{bottom:745.506667pt;}
.y4a_c00447{bottom:745.893333pt;}
.y45_c00447{bottom:756.560000pt;}
.y46_c00447{bottom:757.506667pt;}
.y47_c00447{bottom:757.893333pt;}
.y44_c00447{bottom:768.560000pt;}
.y43_c00447{bottom:769.506667pt;}
.y40_c00447{bottom:780.560000pt;}
.y3f_c00447{bottom:781.506667pt;}
.y41_c00447{bottom:781.893333pt;}
.y42_c00447{bottom:782.840000pt;}
.y3c_c00447{bottom:793.893333pt;}
.y3d_c00447{bottom:794.840000pt;}
.y3e_c00447{bottom:795.226667pt;}
.y38_c00447{bottom:805.506667pt;}
.y39_c00447{bottom:805.893333pt;}
.y3a_c00447{bottom:806.840000pt;}
.y3b_c00447{bottom:807.226667pt;}
.y35_c00447{bottom:817.506667pt;}
.y34_c00447{bottom:817.893333pt;}
.y36_c00447{bottom:819.040000pt;}
.y37_c00447{bottom:820.373333pt;}
.y31_c00447{bottom:829.893333pt;}
.y30_c00447{bottom:830.840000pt;}
.y32_c00447{bottom:831.226667pt;}
.y33_c00447{bottom:832.373333pt;}
.y2c_c00447{bottom:842.840000pt;}
.y2e_c00447{bottom:844.173333pt;}
.y2d_c00447{bottom:844.373333pt;}
.y2f_c00447{bottom:844.560000pt;}
.y29_c00447{bottom:854.840000pt;}
.y27_c00447{bottom:855.226667pt;}
.y28_c00447{bottom:856.173333pt;}
.y2a_c00447{bottom:856.373333pt;}
.y2b_c00447{bottom:856.560000pt;}
.y23_c00447{bottom:865.893333pt;}
.y22_c00447{bottom:866.840000pt;}
.y24_c00447{bottom:868.173333pt;}
.y25_c00447{bottom:868.373333pt;}
.y26_c00447{bottom:868.560000pt;}
.y1e_c00447{bottom:878.840000pt;}
.y1f_c00447{bottom:880.173333pt;}
.y20_c00447{bottom:881.506667pt;}
.y21_c00447{bottom:881.893333pt;}
.y19_c00447{bottom:889.893333pt;}
.y1a_c00447{bottom:890.840000pt;}
.y1c_c00447{bottom:891.226667pt;}
.y1b_c00447{bottom:892.173333pt;}
.y1d_c00447{bottom:892.933333pt;}
.ya_c00447{bottom:909.893333pt;}
.yb_c00447{bottom:910.266667pt;}
.y9_c00447{bottom:920.733333pt;}
.y8_c00447{bottom:922.066667pt;}
.y6_c00447{bottom:922.640000pt;}
.y5_c00447{bottom:923.600000pt;}
.y7_c00447{bottom:923.973333pt;}
.y4_c00447{bottom:942.640000pt;}
.y3_c00447{bottom:946.266667pt;}
.y1_c00447{bottom:975.773333pt;}
.y2_c00447{bottom:976.933333pt;}
.h9_c00447{height:3.739141pt;}
.hb_c00447{height:12.988594pt;}
.h7_c00447{height:14.890964pt;}
.h8_c00447{height:20.224297pt;}
.h5_c00447{height:20.466875pt;}
.h2_c00447{height:22.303646pt;}
.ha_c00447{height:25.800208pt;}
.h3_c00447{height:27.879557pt;}
.h6_c00447{height:31.618698pt;}
.h4_c00447{height:35.357839pt;}
.h1_c00447{height:39.031380pt;}
.h0_c00447{height:1186.666667pt;}
.w0_c00447{width:782.666667pt;}
.x0_c00447{left:0.000000pt;}
.x5_c00447{left:92.000000pt;}
.x6d_c00447{left:96.000000pt;}
.x2c_c00447{left:97.333333pt;}
.x2d_c00447{left:116.960000pt;}
.x4e_c00447{left:120.960000pt;}
.x51_c00447{left:125.333333pt;}
.x43_c00447{left:129.333333pt;}
.x33_c00447{left:132.960000pt;}
.x7e_c00447{left:134.293333pt;}
.x1_c00447{left:136.000000pt;}
.x52_c00447{left:136.960000pt;}
.x5e_c00447{left:140.960000pt;}
.x6_c00447{left:145.706667pt;}
.x55_c00447{left:149.333333pt;}
.x4d_c00447{left:150.293333pt;}
.x8c_c00447{left:160.000000pt;}
.x6e_c00447{left:161.706667pt;}
.x45_c00447{left:162.666667pt;}
.x6b_c00447{left:166.666667pt;}
.x60_c00447{left:169.706667pt;}
.x7_c00447{left:170.666667pt;}
.x19_c00447{left:173.333333pt;}
.x61_c00447{left:177.333333pt;}
.x80_c00447{left:178.666667pt;}
.x6f_c00447{left:181.706667pt;}
.x6c_c00447{left:185.333333pt;}
.x8_c00447{left:200.000000pt;}
.x1a_c00447{left:204.000000pt;}
.x73_c00447{left:214.666667pt;}
.x62_c00447{left:218.666667pt;}
.x23_c00447{left:226.666667pt;}
.x46_c00447{left:229.333333pt;}
.x4f_c00447{left:230.666667pt;}
.x56_c00447{left:233.333333pt;}
.x34_c00447{left:234.666667pt;}
.x31_c00447{left:237.333333pt;}
.x39_c00447{left:238.666667pt;}
.x63_c00447{left:262.666667pt;}
.x74_c00447{left:270.666667pt;}
.x3f_c00447{left:274.666667pt;}
.x57_c00447{left:277.333333pt;}
.x7c_c00447{left:278.666667pt;}
.x9_c00447{left:280.960000pt;}
.x3a_c00447{left:282.666667pt;}
.x1b_c00447{left:286.293333pt;}
.xa_c00447{left:294.293333pt;}
.x1c_c00447{left:302.293333pt;}
.x64_c00447{left:306.666667pt;}
.x24_c00447{left:308.000000pt;}
.x13_c00447{left:313.333333pt;}
.x2e_c00447{left:314.666667pt;}
.x81_c00447{left:317.333333pt;}
.x47_c00447{left:318.666667pt;}
.x5f_c00447{left:321.333333pt;}
.x85_c00447{left:322.666667pt;}
.x77_c00447{left:325.333333pt;}
.x3b_c00447{left:326.666667pt;}
.xb_c00447{left:333.333333pt;}
.x25_c00447{left:334.666667pt;}
.x1d_c00447{left:342.666667pt;}
.x14_c00447{left:346.666667pt;}
.x65_c00447{left:350.666667pt;}
.x2f_c00447{left:358.666667pt;}
.x15_c00447{left:360.000000pt;}
.x2_c00447{left:362.666667pt;}
.x70_c00447{left:364.373333pt;}
.x3_c00447{left:365.333333pt;}
.x17_c00447{left:366.666667pt;}
.xc_c00447{left:367.626667pt;}
.x78_c00447{left:368.960000pt;}
.x44_c00447{left:370.666667pt;}
.xd_c00447{left:382.666667pt;}
.x26_c00447{left:386.666667pt;}
.x1e_c00447{left:389.706667pt;}
.x66_c00447{left:396.000000pt;}
.x27_c00447{left:400.000000pt;}
.x4_c00447{left:404.960000pt;}
.x18_c00447{left:406.293333pt;}
.x71_c00447{left:408.000000pt;}
.x82_c00447{left:409.333333pt;}
.x58_c00447{left:410.666667pt;}
.x79_c00447{left:413.333333pt;}
.x3c_c00447{left:414.666667pt;}
.x28_c00447{left:420.373333pt;}
.x16_c00447{left:422.666667pt;}
.x48_c00447{left:450.666667pt;}
.x8d_c00447{left:453.333333pt;}
.x59_c00447{left:454.666667pt;}
.x35_c00447{left:456.000000pt;}
.x7d_c00447{left:458.666667pt;}
.xe_c00447{left:460.960000pt;}
.x29_c00447{left:471.626667pt;}
.x89_c00447{left:482.666667pt;}
.x67_c00447{left:484.000000pt;}
.x2a_c00447{left:485.333333pt;}
.x1f_c00447{left:486.293333pt;}
.x49_c00447{left:494.666667pt;}
.x83_c00447{left:497.333333pt;}
.x5a_c00447{left:498.666667pt;}
.x36_c00447{left:501.333333pt;}
.x41_c00447{left:502.666667pt;}
.x2b_c00447{left:508.000000pt;}
.xf_c00447{left:521.333333pt;}
.x8a_c00447{left:526.666667pt;}
.x68_c00447{left:528.000000pt;}
.x75_c00447{left:534.666667pt;}
.x4a_c00447{left:538.666667pt;}
.x72_c00447{left:540.000000pt;}
.x86_c00447{left:541.333333pt;}
.x37_c00447{left:542.666667pt;}
.x7a_c00447{left:545.333333pt;}
.x3d_c00447{left:546.666667pt;}
.x20_c00447{left:548.000000pt;}
.x8b_c00447{left:570.666667pt;}
.x69_c00447{left:573.333333pt;}
.x76_c00447{left:578.666667pt;}
.x10_c00447{left:579.626667pt;}
.x40_c00447{left:582.666667pt;}
.x5d_c00447{left:584.373333pt;}
.x87_c00447{left:585.333333pt;}
.x53_c00447{left:586.666667pt;}
.x3e_c00447{left:590.666667pt;}
.x42_c00447{left:592.373333pt;}
.x21_c00447{left:610.293333pt;}
.x30_c00447{left:622.666667pt;}
.x7f_c00447{left:625.333333pt;}
.x4b_c00447{left:626.666667pt;}
.x50_c00447{left:628.373333pt;}
.x84_c00447{left:629.333333pt;}
.x5b_c00447{left:630.666667pt;}
.x11_c00447{left:634.666667pt;}
.x6a_c00447{left:661.333333pt;}
.x12_c00447{left:665.333333pt;}
.x22_c00447{left:666.666667pt;}
.x4c_c00447{left:670.666667pt;}
.x54_c00447{left:672.373333pt;}
.x88_c00447{left:673.333333pt;}
.x5c_c00447{left:674.666667pt;}
.x38_c00447{left:676.373333pt;}
.x7b_c00447{left:677.333333pt;}
.x32_c00447{left:678.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_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_b098364db6a43961ed740435.woff2')format("woff");}.ff1_c00448{font-family:ff1_c00448;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m70_c00448{transform:matrix(0.324003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324003,0.000000,0.000000,0.250000,0,0);}
.m50_c00448{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.mb1_c00448{transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);}
.m79_c00448{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m6c_c00448{transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);}
.m5d_c00448{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m82_c00448{transform:matrix(0.370015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370015,0.000000,0.000000,0.250000,0,0);}
.m6f_c00448{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m86_c00448{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m8d_c00448{transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);}
.m72_c00448{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m67_c00448{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m27_c00448{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m7d_c00448{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m63_c00448{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m71_c00448{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m55_c00448{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.mc2_c00448{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.mc3_c00448{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m3f_c00448{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m78_c00448{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m62_c00448{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mc7_c00448{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mc5_c00448{transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);}
.m7f_c00448{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m1c_c00448{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m17_c00448{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m97_c00448{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.mb7_c00448{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.ma5_c00448{transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);}
.mb_c00448{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m6a_c00448{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m68_c00448{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m5c_c00448{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m31_c00448{transform:matrix(0.399540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399540,0.000000,0.000000,0.250000,0,0);}
.m99_c00448{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.mc6_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);}
.m80_c00448{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m7c_c00448{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.md2_c00448{transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);}
.m98_c00448{transform:matrix(0.403525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403525,0.000000,0.000000,0.250000,0,0);}
.m2_c00448{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m10_c00448{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m57_c00448{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m8c_c00448{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.mac_c00448{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m34_c00448{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.mbe_c00448{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.ma8_c00448{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.ma7_c00448{transform:matrix(0.409412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409412,0.000000,0.000000,0.250000,0,0);}
.m9e_c00448{transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);}
.mcd_c00448{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m9b_c00448{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.mf6_c00448{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.me4_c00448{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.md_c00448{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m23_c00448{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m8e_c00448{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m8_c00448{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m20_c00448{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m2f_c00448{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m9a_c00448{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.mb4_c00448{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mb9_c00448{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.md6_c00448{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m0_c00448{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m41_c00448{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m2d_c00448{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.mdf_c00448{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m51_c00448{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m1b_c00448{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m25_c00448{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.md4_c00448{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.me6_c00448{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.meb_c00448{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mf0_c00448{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m3b_c00448{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mc0_c00448{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.ma2_c00448{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.mbb_c00448{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.m30_c00448{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m6_c00448{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m95_c00448{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m53_c00448{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.ma_c00448{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m58_c00448{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.me7_c00448{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.ma6_c00448{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.mb3_c00448{transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);}
.m8a_c00448{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.m2a_c00448{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.m47_c00448{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m1e_c00448{transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);}
.mae_c00448{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.m44_c00448{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m5_c00448{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.me_c00448{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.mf_c00448{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.m2b_c00448{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.m4e_c00448{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.md8_c00448{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.m35_c00448{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.me9_c00448{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.ma1_c00448{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.mba_c00448{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.m54_c00448{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m9_c00448{transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);}
.m88_c00448{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mc1_c00448{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.mf4_c00448{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mde_c00448{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m84_c00448{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.me5_c00448{transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);}
.m91_c00448{transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);}
.m19_c00448{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mb0_c00448{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m69_c00448{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mc8_c00448{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.m2e_c00448{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m89_c00448{transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);}
.me0_c00448{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m1d_c00448{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m64_c00448{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.me3_c00448{transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);}
.mc_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);}
.m33_c00448{transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);}
.m6b_c00448{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.md9_c00448{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mc9_c00448{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.me1_c00448{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m87_c00448{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.mcf_c00448{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.mc4_c00448{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m16_c00448{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mab_c00448{transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);}
.m24_c00448{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.md3_c00448{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.mf7_c00448{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m74_c00448{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.md0_c00448{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m3d_c00448{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m2c_c00448{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m28_c00448{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m49_c00448{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m60_c00448{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m5a_c00448{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m56_c00448{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.mb6_c00448{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m3c_c00448{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m43_c00448{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m4b_c00448{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m7a_c00448{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m75_c00448{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mad_c00448{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m15_c00448{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m61_c00448{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.mdc_c00448{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mbd_c00448{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m13_c00448{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m7b_c00448{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.ma9_c00448{transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);}
.m14_c00448{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m1f_c00448{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m3e_c00448{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.mf3_c00448{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mf8_c00448{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mbc_c00448{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m40_c00448{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m29_c00448{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m77_c00448{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m7_c00448{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m37_c00448{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m85_c00448{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.mca_c00448{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.mce_c00448{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m4d_c00448{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m6d_c00448{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.ma4_c00448{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m5e_c00448{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mf2_c00448{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mb8_c00448{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mec_c00448{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m73_c00448{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m32_c00448{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mdd_c00448{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m8b_c00448{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mf9_c00448{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m4f_c00448{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.ma0_c00448{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m76_c00448{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m3a_c00448{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m66_c00448{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m59_c00448{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m52_c00448{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m11_c00448{transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);}
.md1_c00448{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m12_c00448{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mda_c00448{transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);}
.mb2_c00448{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m6e_c00448{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m83_c00448{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m65_c00448{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m96_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);}
.m7e_c00448{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.md5_c00448{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.mee_c00448{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.me8_c00448{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);}
.m9d_c00448{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.mea_c00448{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.med_c00448{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.mf1_c00448{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.m39_c00448{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m8f_c00448{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mdb_c00448{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m81_c00448{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.me2_c00448{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m93_c00448{transform:matrix(0.602697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602697,0.000000,0.000000,0.250000,0,0);}
.m21_c00448{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m92_c00448{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m4_c00448{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m3_c00448{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m9f_c00448{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.mf5_c00448{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.md7_c00448{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m36_c00448{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m5b_c00448{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m18_c00448{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.maa_c00448{transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);}
.mef_c00448{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.maf_c00448{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.m45_c00448{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m46_c00448{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m1_c00448{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m48_c00448{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.m4a_c00448{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m90_c00448{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m38_c00448{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m1a_c00448{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mcb_c00448{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m22_c00448{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m26_c00448{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m42_c00448{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m5f_c00448{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m4c_c00448{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m94_c00448{transform:matrix(0.883013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.883013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.883013,0.000000,0.000000,0.250000,0,0);}
.ma3_c00448{transform:matrix(0.957048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.957048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.957048,0.000000,0.000000,0.250000,0,0);}
.m9c_c00448{transform:matrix(1.747797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.747797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.747797,0.000000,0.000000,0.250000,0,0);}
.mcc_c00448{transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);}
.mb5_c00448{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.mbf_c00448{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws1_c00448{word-spacing:-6.090506px;}
.ws2_c00448{word-spacing:-5.978246px;}
.ws0_c00448{word-spacing:-3.593086px;}
.ws3_c00448{word-spacing:0.000000px;}
.fc0_c00448{color:transparent;}
.fs8_c00448{font-size:3.420000px;}
.fs7_c00448{font-size:13.620000px;}
.fs1_c00448{font-size:18.720000px;}
.fs6_c00448{font-size:20.400000px;}
.fs4_c00448{font-size:25.500000px;}
.fs3_c00448{font-size:28.920000px;}
.fs0_c00448{font-size:32.340000px;}
.fs2_c00448{font-size:35.700000px;}
.fs5_c00448{font-size:39.120000px;}
.y0_c00448{bottom:0.000000px;}
.yc0_c00448{bottom:254.745000px;}
.yc2_c00448{bottom:255.405000px;}
.yc3_c00448{bottom:256.245000px;}
.ybf_c00448{bottom:256.905000px;}
.yc1_c00448{bottom:257.325000px;}
.ybe_c00448{bottom:258.405000px;}
.yb9_c00448{bottom:275.745000px;}
.yb8_c00448{bottom:276.405000px;}
.yba_c00448{bottom:276.630000px;}
.ybd_c00448{bottom:277.245000px;}
.yb6_c00448{bottom:277.470000px;}
.yb7_c00448{bottom:277.905000px;}
.ybb_c00448{bottom:278.970000px;}
.ybc_c00448{bottom:279.405000px;}
.yb1_c00448{bottom:293.970000px;}
.yb0_c00448{bottom:294.825000px;}
.yaf_c00448{bottom:295.245000px;}
.yb5_c00448{bottom:295.470000px;}
.yb2_c00448{bottom:296.130000px;}
.yb4_c00448{bottom:296.745000px;}
.yb3_c00448{bottom:296.970000px;}
.yae_c00448{bottom:297.405000px;}
.yaa_c00448{bottom:314.745000px;}
.yab_c00448{bottom:315.825000px;}
.yad_c00448{bottom:316.245000px;}
.ya9_c00448{bottom:316.905000px;}
.yac_c00448{bottom:317.970000px;}
.ya2_c00448{bottom:333.405000px;}
.ya6_c00448{bottom:334.245000px;}
.ya5_c00448{bottom:335.325000px;}
.ya3_c00448{bottom:336.405000px;}
.ya8_c00448{bottom:336.825000px;}
.ya4_c00448{bottom:337.470000px;}
.ya7_c00448{bottom:337.905000px;}
.ya0_c00448{bottom:353.745000px;}
.y9f_c00448{bottom:354.825000px;}
.y9e_c00448{bottom:355.905000px;}
.ya1_c00448{bottom:356.970000px;}
.y9d_c00448{bottom:373.245000px;}
.y9a_c00448{bottom:374.325000px;}
.y9b_c00448{bottom:375.405000px;}
.y9c_c00448{bottom:376.470000px;}
.y97_c00448{bottom:392.745000px;}
.y96_c00448{bottom:394.245000px;}
.y99_c00448{bottom:394.905000px;}
.y98_c00448{bottom:395.970000px;}
.y95_c00448{bottom:412.245000px;}
.y92_c00448{bottom:413.745000px;}
.y93_c00448{bottom:413.970000px;}
.y94_c00448{bottom:414.405000px;}
.y90_c00448{bottom:415.905000px;}
.y91_c00448{bottom:415.920000px;}
.y8e_c00448{bottom:432.825000px;}
.y8d_c00448{bottom:433.245000px;}
.y8f_c00448{bottom:433.905000px;}
.y8b_c00448{bottom:434.130000px;}
.y8a_c00448{bottom:435.405000px;}
.y8c_c00448{bottom:435.420000px;}
.y89_c00448{bottom:451.905000px;}
.y85_c00448{bottom:452.745000px;}
.y88_c00448{bottom:453.825000px;}
.y86_c00448{bottom:454.905000px;}
.y87_c00448{bottom:455.130000px;}
.y83_c00448{bottom:471.405000px;}
.y80_c00448{bottom:472.245000px;}
.y82_c00448{bottom:473.325000px;}
.y84_c00448{bottom:474.405000px;}
.y81_c00448{bottom:474.420000px;}
.y7e_c00448{bottom:492.825000px;}
.y7f_c00448{bottom:493.905000px;}
.y7d_c00448{bottom:495.405000px;}
.y7b_c00448{bottom:511.245000px;}
.y78_c00448{bottom:512.745000px;}
.y7c_c00448{bottom:513.405000px;}
.y7a_c00448{bottom:514.905000px;}
.y79_c00448{bottom:514.920000px;}
.y74_c00448{bottom:538.905000px;}
.y76_c00448{bottom:539.325000px;}
.y77_c00448{bottom:539.550000px;}
.y73_c00448{bottom:540.630000px;}
.y75_c00448{bottom:541.050000px;}
.y72_c00448{bottom:541.470000px;}
.y70_c00448{bottom:557.970000px;}
.y6e_c00448{bottom:558.825000px;}
.y6d_c00448{bottom:559.905000px;}
.y71_c00448{bottom:560.970000px;}
.y6f_c00448{bottom:561.195000px;}
.y67_c00448{bottom:572.550000px;}
.y65_c00448{bottom:573.825000px;}
.y66_c00448{bottom:574.050000px;}
.y68_c00448{bottom:574.905000px;}
.y6a_c00448{bottom:575.130000px;}
.y6b_c00448{bottom:575.550000px;}
.y6c_c00448{bottom:575.970000px;}
.y69_c00448{bottom:576.195000px;}
.y64_c00448{bottom:601.245000px;}
.y62_c00448{bottom:602.130000px;}
.y63_c00448{bottom:602.325000px;}
.y61_c00448{bottom:603.405000px;}
.y5f_c00448{bottom:649.245000px;}
.y60_c00448{bottom:649.905000px;}
.y5c_c00448{bottom:668.745000px;}
.y5e_c00448{bottom:669.630000px;}
.y5d_c00448{bottom:670.905000px;}
.y5b_c00448{bottom:688.245000px;}
.y5a_c00448{bottom:689.325000px;}
.y59_c00448{bottom:690.405000px;}
.y57_c00448{bottom:707.745000px;}
.y58_c00448{bottom:708.630000px;}
.y56_c00448{bottom:709.905000px;}
.y55_c00448{bottom:726.180000px;}
.y54_c00448{bottom:727.245000px;}
.y53_c00448{bottom:728.130000px;}
.y52_c00448{bottom:729.405000px;}
.y4f_c00448{bottom:746.745000px;}
.y51_c00448{bottom:748.470000px;}
.y50_c00448{bottom:748.905000px;}
.y4e_c00448{bottom:765.405000px;}
.y4b_c00448{bottom:766.245000px;}
.y49_c00448{bottom:767.745000px;}
.y4a_c00448{bottom:768.405000px;}
.y4d_c00448{bottom:768.630000px;}
.y4c_c00448{bottom:769.470000px;}
.y48_c00448{bottom:769.905000px;}
.y47_c00448{bottom:785.745000px;}
.y45_c00448{bottom:787.245000px;}
.y44_c00448{bottom:787.905000px;}
.y46_c00448{bottom:788.130000px;}
.y42_c00448{bottom:805.245000px;}
.y43_c00448{bottom:806.325000px;}
.y40_c00448{bottom:806.745000px;}
.y41_c00448{bottom:808.470000px;}
.y3f_c00448{bottom:808.905000px;}
.y3d_c00448{bottom:823.905000px;}
.y3e_c00448{bottom:825.180000px;}
.y3a_c00448{bottom:826.245000px;}
.y3b_c00448{bottom:828.405000px;}
.y3c_c00448{bottom:829.470000px;}
.y39_c00448{bottom:844.470000px;}
.y37_c00448{bottom:845.745000px;}
.y38_c00448{bottom:847.905000px;}
.y36_c00448{bottom:848.130000px;}
.y35_c00448{bottom:863.745000px;}
.y31_c00448{bottom:865.245000px;}
.y32_c00448{bottom:867.405000px;}
.y34_c00448{bottom:867.630000px;}
.y33_c00448{bottom:868.470000px;}
.y2f_c00448{bottom:883.905000px;}
.y2c_c00448{bottom:884.745000px;}
.y30_c00448{bottom:884.970000px;}
.y2e_c00448{bottom:885.825000px;}
.y2d_c00448{bottom:886.905000px;}
.y2b_c00448{bottom:905.325000px;}
.y26_c00448{bottom:905.745000px;}
.y2a_c00448{bottom:906.405000px;}
.y27_c00448{bottom:906.630000px;}
.y29_c00448{bottom:907.470000px;}
.y28_c00448{bottom:907.905000px;}
.y21_c00448{bottom:925.245000px;}
.y23_c00448{bottom:926.130000px;}
.y24_c00448{bottom:926.325000px;}
.y25_c00448{bottom:926.970000px;}
.y22_c00448{bottom:927.405000px;}
.y1d_c00448{bottom:944.745000px;}
.y20_c00448{bottom:945.405000px;}
.y1f_c00448{bottom:945.630000px;}
.y1e_c00448{bottom:946.470000px;}
.y1c_c00448{bottom:946.905000px;}
.y1a_c00448{bottom:963.180000px;}
.y17_c00448{bottom:963.405000px;}
.y15_c00448{bottom:964.245000px;}
.y1b_c00448{bottom:965.325000px;}
.y18_c00448{bottom:965.970000px;}
.y19_c00448{bottom:966.405000px;}
.y16_c00448{bottom:967.470000px;}
.y12_c00448{bottom:983.745000px;}
.y13_c00448{bottom:984.630000px;}
.y14_c00448{bottom:984.825000px;}
.y11_c00448{bottom:985.905000px;}
.y10_c00448{bottom:1003.245000px;}
.yf_c00448{bottom:1004.130000px;}
.yd_c00448{bottom:1022.745000px;}
.yc_c00448{bottom:1023.630000px;}
.ye_c00448{bottom:1023.825000px;}
.ya_c00448{bottom:1024.470000px;}
.yb_c00448{bottom:1024.905000px;}
.y7_c00448{bottom:1042.245000px;}
.y8_c00448{bottom:1043.325000px;}
.y9_c00448{bottom:1044.405000px;}
.y3_c00448{bottom:1061.745000px;}
.y6_c00448{bottom:1062.825000px;}
.y4_c00448{bottom:1063.905000px;}
.y5_c00448{bottom:1064.970000px;}
.y1_c00448{bottom:1098.825000px;}
.y2_c00448{bottom:1103.130000px;}
.h9_c00448{height:4.206533px;}
.h8_c00448{height:16.752334px;}
.h2_c00448{height:23.025234px;}
.h7_c00448{height:25.091602px;}
.h5_c00448{height:31.364502px;}
.h4_c00448{height:35.571035px;}
.h1_c00448{height:39.777568px;}
.h3_c00448{height:43.910303px;}
.h6_c00448{height:48.116836px;}
.h0_c00448{height:1335.000000px;}
.w0_c00448{width:880.500000px;}
.x0_c00448{left:0.000000px;}
.x3_c00448{left:148.500000px;}
.xe_c00448{left:150.000000px;}
.x58_c00448{left:151.080000px;}
.xca_c00448{left:153.000000px;}
.xd6_c00448{left:154.080000px;}
.x25_c00448{left:165.000000px;}
.x5d_c00448{left:166.080000px;}
.xbd_c00448{left:168.420000px;}
.x1a_c00448{left:170.580000px;}
.xf2_c00448{left:174.420000px;}
.x24_c00448{left:177.000000px;}
.xc5_c00448{left:180.420000px;}
.x59_c00448{left:181.500000px;}
.xeb_c00448{left:183.420000px;}
.xcb_c00448{left:184.920000px;}
.x39_c00448{left:186.000000px;}
.x6e_c00448{left:187.500000px;}
.x7a_c00448{left:190.080000px;}
.x1b_c00448{left:192.000000px;}
.xe0_c00448{left:196.920000px;}
.x26_c00448{left:199.920000px;}
.x9d_c00448{left:201.000000px;}
.x30_c00448{left:202.500000px;}
.xe6_c00448{left:204.000000px;}
.xee_c00448{left:205.080000px;}
.x1c_c00448{left:207.855000px;}
.xf_c00448{left:213.000000px;}
.xa9_c00448{left:214.920000px;}
.x3a_c00448{left:216.420000px;}
.x4d_c00448{left:217.500000px;}
.xcc_c00448{left:222.000000px;}
.x4_c00448{left:223.500000px;}
.x44_c00448{left:226.080000px;}
.x83_c00448{left:227.580000px;}
.x97_c00448{left:229.500000px;}
.xb5_c00448{left:232.500000px;}
.x31_c00448{left:234.420000px;}
.x5e_c00448{left:237.420000px;}
.xaa_c00448{left:239.580000px;}
.x5_c00448{left:244.500000px;}
.x4e_c00448{left:249.000000px;}
.x84_c00448{left:250.500000px;}
.x27_c00448{left:251.580000px;}
.x3b_c00448{left:253.500000px;}
.x6f_c00448{left:255.000000px;}
.x5a_c00448{left:257.580000px;}
.xc7_c00448{left:259.500000px;}
.x66_c00448{left:262.500000px;}
.x5f_c00448{left:263.580000px;}
.xa6_c00448{left:265.080000px;}
.x1d_c00448{left:268.080000px;}
.x85_c00448{left:270.000000px;}
.x7b_c00448{left:271.080000px;}
.x6_c00448{left:273.000000px;}
.xb6_c00448{left:274.500000px;}
.x70_c00448{left:276.000000px;}
.xa7_c00448{left:277.500000px;}
.x10_c00448{left:279.645000px;}
.x9e_c00448{left:282.000000px;}
.x3c_c00448{left:283.500000px;}
.xd7_c00448{left:285.000000px;}
.x1e_c00448{left:286.500000px;}
.xec_c00448{left:287.580000px;}
.x8f_c00448{left:294.000000px;}
.x28_c00448{left:295.500000px;}
.x8d_c00448{left:297.000000px;}
.xef_c00448{left:298.500000px;}
.x45_c00448{left:300.000000px;}
.x71_c00448{left:304.920000px;}
.xcd_c00448{left:310.920000px;}
.x4f_c00448{left:313.920000px;}
.xd8_c00448{left:315.000000px;}
.x9f_c00448{left:316.500000px;}
.x92_c00448{left:318.000000px;}
.x11_c00448{left:323.775000px;}
.x46_c00448{left:325.500000px;}
.x80_c00448{left:330.000000px;}
.x86_c00448{left:331.500000px;}
.x60_c00448{left:334.080000px;}
.xa0_c00448{left:335.580000px;}
.x67_c00448{left:337.500000px;}
.x81_c00448{left:342.420000px;}
.x7_c00448{left:343.920000px;}
.xe1_c00448{left:346.500000px;}
.x3d_c00448{left:347.580000px;}
.x72_c00448{left:351.000000px;}
.x32_c00448{left:352.500000px;}
.x47_c00448{left:354.000000px;}
.xbe_c00448{left:357.000000px;}
.x98_c00448{left:358.920000px;}
.x68_c00448{left:360.000000px;}
.xd4_c00448{left:361.500000px;}
.x50_c00448{left:363.000000px;}
.x29_c00448{left:364.500000px;}
.x5b_c00448{left:366.000000px;}
.xb7_c00448{left:367.500000px;}
.xf3_c00448{left:369.000000px;}
.x12_c00448{left:370.080000px;}
.x61_c00448{left:372.000000px;}
.x33_c00448{left:375.420000px;}
.x7c_c00448{left:384.000000px;}
.x93_c00448{left:386.580000px;}
.x1f_c00448{left:389.580000px;}
.x51_c00448{left:391.500000px;}
.x3e_c00448{left:393.000000px;}
.xc6_c00448{left:394.080000px;}
.xab_c00448{left:396.000000px;}
.x2a_c00448{left:399.000000px;}
.xe2_c00448{left:401.580000px;}
.x2_c00448{left:403.500000px;}
.x34_c00448{left:404.580000px;}
.x5c_c00448{left:406.500000px;}
.x87_c00448{left:407.775000px;}
.xa1_c00448{left:409.500000px;}
.x8_c00448{left:412.500000px;}
.xb8_c00448{left:414.000000px;}
.x62_c00448{left:418.500000px;}
.xda_c00448{left:420.000000px;}
.x69_c00448{left:421.080000px;}
.xce_c00448{left:423.000000px;}
.x99_c00448{left:430.920000px;}
.xe3_c00448{left:433.500000px;}
.x94_c00448{left:435.420000px;}
.xe7_c00448{left:438.420000px;}
.xac_c00448{left:441.000000px;}
.xbf_c00448{left:445.920000px;}
.x88_c00448{left:447.000000px;}
.x13_c00448{left:448.080000px;}
.xcf_c00448{left:451.920000px;}
.xc8_c00448{left:454.500000px;}
.x73_c00448{left:457.080000px;}
.x48_c00448{left:460.500000px;}
.xad_c00448{left:463.920000px;}
.x20_c00448{left:465.420000px;}
.x14_c00448{left:468.420000px;}
.x2b_c00448{left:469.500000px;}
.x82_c00448{left:470.580000px;}
.xc0_c00448{left:472.500000px;}
.xae_c00448{left:475.080000px;}
.x9_c00448{left:478.500000px;}
.x49_c00448{left:480.000000px;}
.x7d_c00448{left:481.500000px;}
.xa2_c00448{left:484.920000px;}
.x2c_c00448{left:489.000000px;}
.x3f_c00448{left:490.500000px;}
.x15_c00448{left:493.080000px;}
.xd0_c00448{left:496.080000px;}
.x9a_c00448{left:503.580000px;}
.x6a_c00448{left:505.080000px;}
.x95_c00448{left:507.000000px;}
.xb9_c00448{left:508.500000px;}
.x89_c00448{left:511.080000px;}
.x74_c00448{left:514.500000px;}
.x52_c00448{left:516.000000px;}
.x63_c00448{left:517.500000px;}
.x40_c00448{left:519.420000px;}
.x96_c00448{left:520.500000px;}
.xe8_c00448{left:523.080000px;}
.xa_c00448{left:525.000000px;}
.xc1_c00448{left:529.500000px;}
.x53_c00448{left:535.080000px;}
.xd1_c00448{left:536.580000px;}
.xd2_c00448{left:538.080000px;}
.x75_c00448{left:539.355000px;}
.xb_c00448{left:542.355000px;}
.xb4_c00448{left:544.500000px;}
.x16_c00448{left:546.000000px;}
.x2d_c00448{left:547.500000px;}
.xba_c00448{left:548.580000px;}
.x8a_c00448{left:550.500000px;}
.xdd_c00448{left:552.000000px;}
.x4a_c00448{left:553.500000px;}
.x8e_c00448{left:555.000000px;}
.x76_c00448{left:556.500000px;}
.x35_c00448{left:557.580000px;}
.xf4_c00448{left:561.000000px;}
.x21_c00448{left:565.500000px;}
.xaf_c00448{left:566.580000px;}
.xed_c00448{left:568.500000px;}
.xd3_c00448{left:569.580000px;}
.xbb_c00448{left:570.855000px;}
.x4b_c00448{left:571.920000px;}
.x54_c00448{left:573.000000px;}
.xa8_c00448{left:574.275000px;}
.xc_c00448{left:575.580000px;}
.x36_c00448{left:579.000000px;}
.xc2_c00448{left:580.080000px;}
.x17_c00448{left:582.000000px;}
.x7e_c00448{left:583.920000px;}
.x2e_c00448{left:586.500000px;}
.x6b_c00448{left:588.000000px;}
.xa3_c00448{left:589.080000px;}
.x9b_c00448{left:591.000000px;}
.xbc_c00448{left:592.500000px;}
.x55_c00448{left:595.500000px;}
.xe9_c00448{left:598.920000px;}
.xc9_c00448{left:600.000000px;}
.xc3_c00448{left:601.080000px;}
.x41_c00448{left:607.080000px;}
.x64_c00448{left:609.000000px;}
.x22_c00448{left:612.000000px;}
.xb0_c00448{left:615.000000px;}
.x4c_c00448{left:618.420000px;}
.x77_c00448{left:619.500000px;}
.xde_c00448{left:622.080000px;}
.x6c_c00448{left:624.000000px;}
.xb1_c00448{left:626.580000px;}
.x56_c00448{left:630.000000px;}
.x42_c00448{left:631.920000px;}
.x37_c00448{left:633.000000px;}
.xf0_c00448{left:634.500000px;}
.x8b_c00448{left:636.000000px;}
.x18_c00448{left:637.920000px;}
.x78_c00448{left:641.775000px;}
.xea_c00448{left:643.080000px;}
.xd_c00448{left:649.080000px;}
.xa4_c00448{left:652.920000px;}
.xdb_c00448{left:654.000000px;}
.xd5_c00448{left:655.080000px;}
.x8c_c00448{left:657.000000px;}
.xe4_c00448{left:658.500000px;}
.x43_c00448{left:661.080000px;}
.x19_c00448{left:663.000000px;}
.x2f_c00448{left:666.000000px;}
.xb2_c00448{left:669.420000px;}
.x57_c00448{left:675.000000px;}
.x90_c00448{left:676.920000px;}
.xe5_c00448{left:678.000000px;}
.x79_c00448{left:679.080000px;}
.x23_c00448{left:681.000000px;}
.x6d_c00448{left:685.080000px;}
.x7f_c00448{left:687.000000px;}
.xf1_c00448{left:688.080000px;}
.xa5_c00448{left:691.080000px;}
.xdf_c00448{left:693.000000px;}
.xd9_c00448{left:694.080000px;}
.xb3_c00448{left:696.000000px;}
.xdc_c00448{left:697.500000px;}
.x9c_c00448{left:699.000000px;}
.x1_c00448{left:700.500000px;}
.x38_c00448{left:703.080000px;}
.x65_c00448{left:705.420000px;}
.x91_c00448{left:706.920000px;}
.xc4_c00448{left:716.580000px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.ls0_c00448{letter-spacing:0.000000pt;}
.ws1_c00448{word-spacing:-5.413783pt;}
.ws2_c00448{word-spacing:-5.313996pt;}
.ws0_c00448{word-spacing:-3.193854pt;}
.ws3_c00448{word-spacing:0.000000pt;}
.fs8_c00448{font-size:3.040000pt;}
.fs7_c00448{font-size:12.106667pt;}
.fs1_c00448{font-size:16.640000pt;}
.fs6_c00448{font-size:18.133333pt;}
.fs4_c00448{font-size:22.666667pt;}
.fs3_c00448{font-size:25.706667pt;}
.fs0_c00448{font-size:28.746667pt;}
.fs2_c00448{font-size:31.733333pt;}
.fs5_c00448{font-size:34.773333pt;}
.y0_c00448{bottom:0.000000pt;}
.yc0_c00448{bottom:226.440000pt;}
.yc2_c00448{bottom:227.026667pt;}
.yc3_c00448{bottom:227.773333pt;}
.ybf_c00448{bottom:228.360000pt;}
.yc1_c00448{bottom:228.733333pt;}
.ybe_c00448{bottom:229.693333pt;}
.yb9_c00448{bottom:245.106667pt;}
.yb8_c00448{bottom:245.693333pt;}
.yba_c00448{bottom:245.893333pt;}
.ybd_c00448{bottom:246.440000pt;}
.yb6_c00448{bottom:246.640000pt;}
.yb7_c00448{bottom:247.026667pt;}
.ybb_c00448{bottom:247.973333pt;}
.ybc_c00448{bottom:248.360000pt;}
.yb1_c00448{bottom:261.306667pt;}
.yb0_c00448{bottom:262.066667pt;}
.yaf_c00448{bottom:262.440000pt;}
.yb5_c00448{bottom:262.640000pt;}
.yb2_c00448{bottom:263.226667pt;}
.yb4_c00448{bottom:263.773333pt;}
.yb3_c00448{bottom:263.973333pt;}
.yae_c00448{bottom:264.360000pt;}
.yaa_c00448{bottom:279.773333pt;}
.yab_c00448{bottom:280.733333pt;}
.yad_c00448{bottom:281.106667pt;}
.ya9_c00448{bottom:281.693333pt;}
.yac_c00448{bottom:282.640000pt;}
.ya2_c00448{bottom:296.360000pt;}
.ya6_c00448{bottom:297.106667pt;}
.ya5_c00448{bottom:298.066667pt;}
.ya3_c00448{bottom:299.026667pt;}
.ya8_c00448{bottom:299.400000pt;}
.ya4_c00448{bottom:299.973333pt;}
.ya7_c00448{bottom:300.360000pt;}
.ya0_c00448{bottom:314.440000pt;}
.y9f_c00448{bottom:315.400000pt;}
.y9e_c00448{bottom:316.360000pt;}
.ya1_c00448{bottom:317.306667pt;}
.y9d_c00448{bottom:331.773333pt;}
.y9a_c00448{bottom:332.733333pt;}
.y9b_c00448{bottom:333.693333pt;}
.y9c_c00448{bottom:334.640000pt;}
.y97_c00448{bottom:349.106667pt;}
.y96_c00448{bottom:350.440000pt;}
.y99_c00448{bottom:351.026667pt;}
.y98_c00448{bottom:351.973333pt;}
.y95_c00448{bottom:366.440000pt;}
.y92_c00448{bottom:367.773333pt;}
.y93_c00448{bottom:367.973333pt;}
.y94_c00448{bottom:368.360000pt;}
.y90_c00448{bottom:369.693333pt;}
.y91_c00448{bottom:369.706667pt;}
.y8e_c00448{bottom:384.733333pt;}
.y8d_c00448{bottom:385.106667pt;}
.y8f_c00448{bottom:385.693333pt;}
.y8b_c00448{bottom:385.893333pt;}
.y8a_c00448{bottom:387.026667pt;}
.y8c_c00448{bottom:387.040000pt;}
.y89_c00448{bottom:401.693333pt;}
.y85_c00448{bottom:402.440000pt;}
.y88_c00448{bottom:403.400000pt;}
.y86_c00448{bottom:404.360000pt;}
.y87_c00448{bottom:404.560000pt;}
.y83_c00448{bottom:419.026667pt;}
.y80_c00448{bottom:419.773333pt;}
.y82_c00448{bottom:420.733333pt;}
.y84_c00448{bottom:421.693333pt;}
.y81_c00448{bottom:421.706667pt;}
.y7e_c00448{bottom:438.066667pt;}
.y7f_c00448{bottom:439.026667pt;}
.y7d_c00448{bottom:440.360000pt;}
.y7b_c00448{bottom:454.440000pt;}
.y78_c00448{bottom:455.773333pt;}
.y7c_c00448{bottom:456.360000pt;}
.y7a_c00448{bottom:457.693333pt;}
.y79_c00448{bottom:457.706667pt;}
.y74_c00448{bottom:479.026667pt;}
.y76_c00448{bottom:479.400000pt;}
.y77_c00448{bottom:479.600000pt;}
.y73_c00448{bottom:480.560000pt;}
.y75_c00448{bottom:480.933333pt;}
.y72_c00448{bottom:481.306667pt;}
.y70_c00448{bottom:495.973333pt;}
.y6e_c00448{bottom:496.733333pt;}
.y6d_c00448{bottom:497.693333pt;}
.y71_c00448{bottom:498.640000pt;}
.y6f_c00448{bottom:498.840000pt;}
.y67_c00448{bottom:508.933333pt;}
.y65_c00448{bottom:510.066667pt;}
.y66_c00448{bottom:510.266667pt;}
.y68_c00448{bottom:511.026667pt;}
.y6a_c00448{bottom:511.226667pt;}
.y6b_c00448{bottom:511.600000pt;}
.y6c_c00448{bottom:511.973333pt;}
.y69_c00448{bottom:512.173333pt;}
.y64_c00448{bottom:534.440000pt;}
.y62_c00448{bottom:535.226667pt;}
.y63_c00448{bottom:535.400000pt;}
.y61_c00448{bottom:536.360000pt;}
.y5f_c00448{bottom:577.106667pt;}
.y60_c00448{bottom:577.693333pt;}
.y5c_c00448{bottom:594.440000pt;}
.y5e_c00448{bottom:595.226667pt;}
.y5d_c00448{bottom:596.360000pt;}
.y5b_c00448{bottom:611.773333pt;}
.y5a_c00448{bottom:612.733333pt;}
.y59_c00448{bottom:613.693333pt;}
.y57_c00448{bottom:629.106667pt;}
.y58_c00448{bottom:629.893333pt;}
.y56_c00448{bottom:631.026667pt;}
.y55_c00448{bottom:645.493333pt;}
.y54_c00448{bottom:646.440000pt;}
.y53_c00448{bottom:647.226667pt;}
.y52_c00448{bottom:648.360000pt;}
.y4f_c00448{bottom:663.773333pt;}
.y51_c00448{bottom:665.306667pt;}
.y50_c00448{bottom:665.693333pt;}
.y4e_c00448{bottom:680.360000pt;}
.y4b_c00448{bottom:681.106667pt;}
.y49_c00448{bottom:682.440000pt;}
.y4a_c00448{bottom:683.026667pt;}
.y4d_c00448{bottom:683.226667pt;}
.y4c_c00448{bottom:683.973333pt;}
.y48_c00448{bottom:684.360000pt;}
.y47_c00448{bottom:698.440000pt;}
.y45_c00448{bottom:699.773333pt;}
.y44_c00448{bottom:700.360000pt;}
.y46_c00448{bottom:700.560000pt;}
.y42_c00448{bottom:715.773333pt;}
.y43_c00448{bottom:716.733333pt;}
.y40_c00448{bottom:717.106667pt;}
.y41_c00448{bottom:718.640000pt;}
.y3f_c00448{bottom:719.026667pt;}
.y3d_c00448{bottom:732.360000pt;}
.y3e_c00448{bottom:733.493333pt;}
.y3a_c00448{bottom:734.440000pt;}
.y3b_c00448{bottom:736.360000pt;}
.y3c_c00448{bottom:737.306667pt;}
.y39_c00448{bottom:750.640000pt;}
.y37_c00448{bottom:751.773333pt;}
.y38_c00448{bottom:753.693333pt;}
.y36_c00448{bottom:753.893333pt;}
.y35_c00448{bottom:767.773333pt;}
.y31_c00448{bottom:769.106667pt;}
.y32_c00448{bottom:771.026667pt;}
.y34_c00448{bottom:771.226667pt;}
.y33_c00448{bottom:771.973333pt;}
.y2f_c00448{bottom:785.693333pt;}
.y2c_c00448{bottom:786.440000pt;}
.y30_c00448{bottom:786.640000pt;}
.y2e_c00448{bottom:787.400000pt;}
.y2d_c00448{bottom:788.360000pt;}
.y2b_c00448{bottom:804.733333pt;}
.y26_c00448{bottom:805.106667pt;}
.y2a_c00448{bottom:805.693333pt;}
.y27_c00448{bottom:805.893333pt;}
.y29_c00448{bottom:806.640000pt;}
.y28_c00448{bottom:807.026667pt;}
.y21_c00448{bottom:822.440000pt;}
.y23_c00448{bottom:823.226667pt;}
.y24_c00448{bottom:823.400000pt;}
.y25_c00448{bottom:823.973333pt;}
.y22_c00448{bottom:824.360000pt;}
.y1d_c00448{bottom:839.773333pt;}
.y20_c00448{bottom:840.360000pt;}
.y1f_c00448{bottom:840.560000pt;}
.y1e_c00448{bottom:841.306667pt;}
.y1c_c00448{bottom:841.693333pt;}
.y1a_c00448{bottom:856.160000pt;}
.y17_c00448{bottom:856.360000pt;}
.y15_c00448{bottom:857.106667pt;}
.y1b_c00448{bottom:858.066667pt;}
.y18_c00448{bottom:858.640000pt;}
.y19_c00448{bottom:859.026667pt;}
.y16_c00448{bottom:859.973333pt;}
.y12_c00448{bottom:874.440000pt;}
.y13_c00448{bottom:875.226667pt;}
.y14_c00448{bottom:875.400000pt;}
.y11_c00448{bottom:876.360000pt;}
.y10_c00448{bottom:891.773333pt;}
.yf_c00448{bottom:892.560000pt;}
.yd_c00448{bottom:909.106667pt;}
.yc_c00448{bottom:909.893333pt;}
.ye_c00448{bottom:910.066667pt;}
.ya_c00448{bottom:910.640000pt;}
.yb_c00448{bottom:911.026667pt;}
.y7_c00448{bottom:926.440000pt;}
.y8_c00448{bottom:927.400000pt;}
.y9_c00448{bottom:928.360000pt;}
.y3_c00448{bottom:943.773333pt;}
.y6_c00448{bottom:944.733333pt;}
.y4_c00448{bottom:945.693333pt;}
.y5_c00448{bottom:946.640000pt;}
.y1_c00448{bottom:976.733333pt;}
.y2_c00448{bottom:980.560000pt;}
.h9_c00448{height:3.739141pt;}
.h8_c00448{height:14.890964pt;}
.h2_c00448{height:20.466875pt;}
.h7_c00448{height:22.303646pt;}
.h5_c00448{height:27.879557pt;}
.h4_c00448{height:31.618698pt;}
.h1_c00448{height:35.357839pt;}
.h3_c00448{height:39.031380pt;}
.h6_c00448{height:42.770521pt;}
.h0_c00448{height:1186.666667pt;}
.w0_c00448{width:782.666667pt;}
.x0_c00448{left:0.000000pt;}
.x3_c00448{left:132.000000pt;}
.xe_c00448{left:133.333333pt;}
.x58_c00448{left:134.293333pt;}
.xca_c00448{left:136.000000pt;}
.xd6_c00448{left:136.960000pt;}
.x25_c00448{left:146.666667pt;}
.x5d_c00448{left:147.626667pt;}
.xbd_c00448{left:149.706667pt;}
.x1a_c00448{left:151.626667pt;}
.xf2_c00448{left:155.040000pt;}
.x24_c00448{left:157.333333pt;}
.xc5_c00448{left:160.373333pt;}
.x59_c00448{left:161.333333pt;}
.xeb_c00448{left:163.040000pt;}
.xcb_c00448{left:164.373333pt;}
.x39_c00448{left:165.333333pt;}
.x6e_c00448{left:166.666667pt;}
.x7a_c00448{left:168.960000pt;}
.x1b_c00448{left:170.666667pt;}
.xe0_c00448{left:175.040000pt;}
.x26_c00448{left:177.706667pt;}
.x9d_c00448{left:178.666667pt;}
.x30_c00448{left:180.000000pt;}
.xe6_c00448{left:181.333333pt;}
.xee_c00448{left:182.293333pt;}
.x1c_c00448{left:184.760000pt;}
.xf_c00448{left:189.333333pt;}
.xa9_c00448{left:191.040000pt;}
.x3a_c00448{left:192.373333pt;}
.x4d_c00448{left:193.333333pt;}
.xcc_c00448{left:197.333333pt;}
.x4_c00448{left:198.666667pt;}
.x44_c00448{left:200.960000pt;}
.x83_c00448{left:202.293333pt;}
.x97_c00448{left:204.000000pt;}
.xb5_c00448{left:206.666667pt;}
.x31_c00448{left:208.373333pt;}
.x5e_c00448{left:211.040000pt;}
.xaa_c00448{left:212.960000pt;}
.x5_c00448{left:217.333333pt;}
.x4e_c00448{left:221.333333pt;}
.x84_c00448{left:222.666667pt;}
.x27_c00448{left:223.626667pt;}
.x3b_c00448{left:225.333333pt;}
.x6f_c00448{left:226.666667pt;}
.x5a_c00448{left:228.960000pt;}
.xc7_c00448{left:230.666667pt;}
.x66_c00448{left:233.333333pt;}
.x5f_c00448{left:234.293333pt;}
.xa6_c00448{left:235.626667pt;}
.x1d_c00448{left:238.293333pt;}
.x85_c00448{left:240.000000pt;}
.x7b_c00448{left:240.960000pt;}
.x6_c00448{left:242.666667pt;}
.xb6_c00448{left:244.000000pt;}
.x70_c00448{left:245.333333pt;}
.xa7_c00448{left:246.666667pt;}
.x10_c00448{left:248.573333pt;}
.x9e_c00448{left:250.666667pt;}
.x3c_c00448{left:252.000000pt;}
.xd7_c00448{left:253.333333pt;}
.x1e_c00448{left:254.666667pt;}
.xec_c00448{left:255.626667pt;}
.x8f_c00448{left:261.333333pt;}
.x28_c00448{left:262.666667pt;}
.x8d_c00448{left:264.000000pt;}
.xef_c00448{left:265.333333pt;}
.x45_c00448{left:266.666667pt;}
.x71_c00448{left:271.040000pt;}
.xcd_c00448{left:276.373333pt;}
.x4f_c00448{left:279.040000pt;}
.xd8_c00448{left:280.000000pt;}
.x9f_c00448{left:281.333333pt;}
.x92_c00448{left:282.666667pt;}
.x11_c00448{left:287.800000pt;}
.x46_c00448{left:289.333333pt;}
.x80_c00448{left:293.333333pt;}
.x86_c00448{left:294.666667pt;}
.x60_c00448{left:296.960000pt;}
.xa0_c00448{left:298.293333pt;}
.x67_c00448{left:300.000000pt;}
.x81_c00448{left:304.373333pt;}
.x7_c00448{left:305.706667pt;}
.xe1_c00448{left:308.000000pt;}
.x3d_c00448{left:308.960000pt;}
.x72_c00448{left:312.000000pt;}
.x32_c00448{left:313.333333pt;}
.x47_c00448{left:314.666667pt;}
.xbe_c00448{left:317.333333pt;}
.x98_c00448{left:319.040000pt;}
.x68_c00448{left:320.000000pt;}
.xd4_c00448{left:321.333333pt;}
.x50_c00448{left:322.666667pt;}
.x29_c00448{left:324.000000pt;}
.x5b_c00448{left:325.333333pt;}
.xb7_c00448{left:326.666667pt;}
.xf3_c00448{left:328.000000pt;}
.x12_c00448{left:328.960000pt;}
.x61_c00448{left:330.666667pt;}
.x33_c00448{left:333.706667pt;}
.x7c_c00448{left:341.333333pt;}
.x93_c00448{left:343.626667pt;}
.x1f_c00448{left:346.293333pt;}
.x51_c00448{left:348.000000pt;}
.x3e_c00448{left:349.333333pt;}
.xc6_c00448{left:350.293333pt;}
.xab_c00448{left:352.000000pt;}
.x2a_c00448{left:354.666667pt;}
.xe2_c00448{left:356.960000pt;}
.x2_c00448{left:358.666667pt;}
.x34_c00448{left:359.626667pt;}
.x5c_c00448{left:361.333333pt;}
.x87_c00448{left:362.466667pt;}
.xa1_c00448{left:364.000000pt;}
.x8_c00448{left:366.666667pt;}
.xb8_c00448{left:368.000000pt;}
.x62_c00448{left:372.000000pt;}
.xda_c00448{left:373.333333pt;}
.x69_c00448{left:374.293333pt;}
.xce_c00448{left:376.000000pt;}
.x99_c00448{left:383.040000pt;}
.xe3_c00448{left:385.333333pt;}
.x94_c00448{left:387.040000pt;}
.xe7_c00448{left:389.706667pt;}
.xac_c00448{left:392.000000pt;}
.xbf_c00448{left:396.373333pt;}
.x88_c00448{left:397.333333pt;}
.x13_c00448{left:398.293333pt;}
.xcf_c00448{left:401.706667pt;}
.xc8_c00448{left:404.000000pt;}
.x73_c00448{left:406.293333pt;}
.x48_c00448{left:409.333333pt;}
.xad_c00448{left:412.373333pt;}
.x20_c00448{left:413.706667pt;}
.x14_c00448{left:416.373333pt;}
.x2b_c00448{left:417.333333pt;}
.x82_c00448{left:418.293333pt;}
.xc0_c00448{left:420.000000pt;}
.xae_c00448{left:422.293333pt;}
.x9_c00448{left:425.333333pt;}
.x49_c00448{left:426.666667pt;}
.x7d_c00448{left:428.000000pt;}
.xa2_c00448{left:431.040000pt;}
.x2c_c00448{left:434.666667pt;}
.x3f_c00448{left:436.000000pt;}
.x15_c00448{left:438.293333pt;}
.xd0_c00448{left:440.960000pt;}
.x9a_c00448{left:447.626667pt;}
.x6a_c00448{left:448.960000pt;}
.x95_c00448{left:450.666667pt;}
.xb9_c00448{left:452.000000pt;}
.x89_c00448{left:454.293333pt;}
.x74_c00448{left:457.333333pt;}
.x52_c00448{left:458.666667pt;}
.x63_c00448{left:460.000000pt;}
.x40_c00448{left:461.706667pt;}
.x96_c00448{left:462.666667pt;}
.xe8_c00448{left:464.960000pt;}
.xa_c00448{left:466.666667pt;}
.xc1_c00448{left:470.666667pt;}
.x53_c00448{left:475.626667pt;}
.xd1_c00448{left:476.960000pt;}
.xd2_c00448{left:478.293333pt;}
.x75_c00448{left:479.426667pt;}
.xb_c00448{left:482.093333pt;}
.xb4_c00448{left:484.000000pt;}
.x16_c00448{left:485.333333pt;}
.x2d_c00448{left:486.666667pt;}
.xba_c00448{left:487.626667pt;}
.x8a_c00448{left:489.333333pt;}
.xdd_c00448{left:490.666667pt;}
.x4a_c00448{left:492.000000pt;}
.x8e_c00448{left:493.333333pt;}
.x76_c00448{left:494.666667pt;}
.x35_c00448{left:495.626667pt;}
.xf4_c00448{left:498.666667pt;}
.x21_c00448{left:502.666667pt;}
.xaf_c00448{left:503.626667pt;}
.xed_c00448{left:505.333333pt;}
.xd3_c00448{left:506.293333pt;}
.xbb_c00448{left:507.426667pt;}
.x4b_c00448{left:508.373333pt;}
.x54_c00448{left:509.333333pt;}
.xa8_c00448{left:510.466667pt;}
.xc_c00448{left:511.626667pt;}
.x36_c00448{left:514.666667pt;}
.xc2_c00448{left:515.626667pt;}
.x17_c00448{left:517.333333pt;}
.x7e_c00448{left:519.040000pt;}
.x2e_c00448{left:521.333333pt;}
.x6b_c00448{left:522.666667pt;}
.xa3_c00448{left:523.626667pt;}
.x9b_c00448{left:525.333333pt;}
.xbc_c00448{left:526.666667pt;}
.x55_c00448{left:529.333333pt;}
.xe9_c00448{left:532.373333pt;}
.xc9_c00448{left:533.333333pt;}
.xc3_c00448{left:534.293333pt;}
.x41_c00448{left:539.626667pt;}
.x64_c00448{left:541.333333pt;}
.x22_c00448{left:544.000000pt;}
.xb0_c00448{left:546.666667pt;}
.x4c_c00448{left:549.706667pt;}
.x77_c00448{left:550.666667pt;}
.xde_c00448{left:552.960000pt;}
.x6c_c00448{left:554.666667pt;}
.xb1_c00448{left:556.960000pt;}
.x56_c00448{left:560.000000pt;}
.x42_c00448{left:561.706667pt;}
.x37_c00448{left:562.666667pt;}
.xf0_c00448{left:564.000000pt;}
.x8b_c00448{left:565.333333pt;}
.x18_c00448{left:567.040000pt;}
.x78_c00448{left:570.466667pt;}
.xea_c00448{left:571.626667pt;}
.xd_c00448{left:576.960000pt;}
.xa4_c00448{left:580.373333pt;}
.xdb_c00448{left:581.333333pt;}
.xd5_c00448{left:582.293333pt;}
.x8c_c00448{left:584.000000pt;}
.xe4_c00448{left:585.333333pt;}
.x43_c00448{left:587.626667pt;}
.x19_c00448{left:589.333333pt;}
.x2f_c00448{left:592.000000pt;}
.xb2_c00448{left:595.040000pt;}
.x57_c00448{left:600.000000pt;}
.x90_c00448{left:601.706667pt;}
.xe5_c00448{left:602.666667pt;}
.x79_c00448{left:603.626667pt;}
.x23_c00448{left:605.333333pt;}
.x6d_c00448{left:608.960000pt;}
.x7f_c00448{left:610.666667pt;}
.xf1_c00448{left:611.626667pt;}
.xa5_c00448{left:614.293333pt;}
.xdf_c00448{left:616.000000pt;}
.xd9_c00448{left:616.960000pt;}
.xb3_c00448{left:618.666667pt;}
.xdc_c00448{left:620.000000pt;}
.x9c_c00448{left:621.333333pt;}
.x1_c00448{left:622.666667pt;}
.x38_c00448{left:624.960000pt;}
.x65_c00448{left:627.040000pt;}
.x91_c00448{left:628.373333pt;}
.xc4_c00448{left:636.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_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_f192ed98fd3f52a4e30cbff3.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m74_c00449{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.m9e_c00449{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m99_c00449{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m37_c00449{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m7a_c00449{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.me2_c00449{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m64_c00449{transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);}
.mce_c00449{transform:matrix(0.371521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371521,0.000000,0.000000,0.250000,0,0);}
.mad_c00449{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.mac_c00449{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m7d_c00449{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m77_c00449{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.me1_c00449{transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);}
.m10d_c00449{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m7c_c00449{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m10a_c00449{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m71_c00449{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m2f_c00449{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m57_c00449{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m1c_c00449{transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);}
.m29_c00449{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.mcc_c00449{transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);}
.m65_c00449{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m6b_c00449{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m60_c00449{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.mb1_c00449{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m8d_c00449{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m22_c00449{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.mf_c00449{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m8f_c00449{transform:matrix(0.398859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398859,0.000000,0.000000,0.250000,0,0);}
.m10c_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);}
.mf8_c00449{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m47_c00449{transform:matrix(0.406120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406120,0.000000,0.000000,0.250000,0,0);}
.m5a_c00449{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m51_c00449{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m4b_c00449{transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);}
.mfa_c00449{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m101_c00449{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m24_c00449{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m7f_c00449{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m67_c00449{transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);}
.m98_c00449{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m95_c00449{transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);}
.m20_c00449{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.mb4_c00449{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m1f_c00449{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.md9_c00449{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m3b_c00449{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.meb_c00449{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m59_c00449{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m81_c00449{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.md_c00449{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m32_c00449{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.mae_c00449{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.mec_c00449{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m102_c00449{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.med_c00449{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m46_c00449{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m5d_c00449{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m8c_c00449{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m76_c00449{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.mc4_c00449{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m9c_c00449{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m63_c00449{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.mcd_c00449{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m73_c00449{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.ma_c00449{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.me9_c00449{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.mdb_c00449{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.mfb_c00449{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.mc0_c00449{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m45_c00449{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m5e_c00449{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m30_c00449{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.mc2_c00449{transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);}
.m9b_c00449{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m92_c00449{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m9a_c00449{transform:matrix(0.447614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447614,0.000000,0.000000,0.250000,0,0);}
.mf9_c00449{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m54_c00449{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m42_c00449{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.mea_c00449{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.mc6_c00449{transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);}
.m66_c00449{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m58_c00449{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mf6_c00449{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.md7_c00449{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.ma6_c00449{transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);}
.m1d_c00449{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.mdf_c00449{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.mb2_c00449{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.md6_c00449{transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);}
.m11_c00449{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.ma2_c00449{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m94_c00449{transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);}
.m19_c00449{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m4e_c00449{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.mb9_c00449{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mca_c00449{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m61_c00449{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.md8_c00449{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m26_c00449{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.m2d_c00449{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.mbb_c00449{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m1b_c00449{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mdc_c00449{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.mbf_c00449{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m100_c00449{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m3c_c00449{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m83_c00449{transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);}
.m68_c00449{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m0_c00449{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mab_c00449{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m43_c00449{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m31_c00449{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m2_c00449{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);}
.mf3_c00449{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mc_c00449{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m6c_c00449{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.mc1_c00449{transform:matrix(0.505882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505882,0.000000,0.000000,0.250000,0,0);}
.m10e_c00449{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m86_c00449{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m5b_c00449{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.maf_c00449{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m39_c00449{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mf2_c00449{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mb0_c00449{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.mef_c00449{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m6f_c00449{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m93_c00449{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m21_c00449{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m23_c00449{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mf0_c00449{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m10b_c00449{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m7e_c00449{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.ma9_c00449{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m18_c00449{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m97_c00449{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.mbe_c00449{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_c00449{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m88_c00449{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.ma0_c00449{transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);}
.m4_c00449{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m17_c00449{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mc5_c00449{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);}
.ma3_c00449{transform:matrix(0.525882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525882,0.000000,0.000000,0.250000,0,0);}
.m103_c00449{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m7_c00449{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m105_c00449{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m10_c00449{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.md3_c00449{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m15_c00449{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m62_c00449{transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530612,0.000000,0.000000,0.250000,0,0);}
.m41_c00449{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m55_c00449{transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);}
.mb_c00449{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m9d_c00449{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m48_c00449{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m72_c00449{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.me_c00449{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mfd_c00449{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.ma5_c00449{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m84_c00449{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.mf7_c00449{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m34_c00449{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m53_c00449{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m10f_c00449{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m6e_c00449{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.md0_c00449{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m7b_c00449{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m52_c00449{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m14_c00449{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m78_c00449{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m104_c00449{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m4f_c00449{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m79_c00449{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m2e_c00449{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m6d_c00449{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mf1_c00449{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m5c_c00449{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.ma8_c00449{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);}
.m6a_c00449{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m3e_c00449{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mbd_c00449{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m1a_c00449{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m8b_c00449{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m8e_c00449{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m16_c00449{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m12_c00449{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mf4_c00449{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m91_c00449{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.ma1_c00449{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m40_c00449{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.me8_c00449{transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);}
.md1_c00449{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.m3f_c00449{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mf5_c00449{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mde_c00449{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.me7_c00449{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.m109_c00449{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m25_c00449{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m75_c00449{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m3d_c00449{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.mba_c00449{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);}
.m3_c00449{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m85_c00449{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.mbc_c00449{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m70_c00449{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m106_c00449{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m36_c00449{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m27_c00449{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.me5_c00449{transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);}
.m8_c00449{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.mcf_c00449{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.mfc_c00449{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m28_c00449{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.mc3_c00449{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m9f_c00449{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m3a_c00449{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mc8_c00449{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m90_c00449{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.me4_c00449{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m89_c00449{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m87_c00449{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m6_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);}
.m69_c00449{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.mb3_c00449{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);}
.m13_c00449{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mcb_c00449{transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);}
.m1e_c00449{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m96_c00449{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m1_c00449{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);}
.m5f_c00449{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);}
.mdd_c00449{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.mda_c00449{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.me3_c00449{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.mc9_c00449{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.ma7_c00449{transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);}
.mb8_c00449{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.mb7_c00449{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);}
.mc7_c00449{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.mb6_c00449{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.md5_c00449{transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);}
.m33_c00449{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m2c_c00449{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.md4_c00449{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.m8a_c00449{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.me0_c00449{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.md2_c00449{transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);}
.mb5_c00449{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m80_c00449{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.ma4_c00449{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);}
.m4c_c00449{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.m4d_c00449{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m35_c00449{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m2b_c00449{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.m44_c00449{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m50_c00449{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m38_c00449{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m9_c00449{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mfe_c00449{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m107_c00449{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m49_c00449{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m56_c00449{transform:matrix(0.774840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.774840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.774840,0.000000,0.000000,0.250000,0,0);}
.mff_c00449{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m4a_c00449{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m108_c00449{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.m2a_c00449{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m82_c00449{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.me6_c00449{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m5_c00449{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.mee_c00449{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws2_c00449{word-spacing:0.000000px;}
.ws0_c00449{word-spacing:3.368175px;}
.ws1_c00449{word-spacing:6.123699px;}
.fc0_c00449{color:transparent;}
.fs2_c00449{font-size:3.420000px;}
.fs8_c00449{font-size:13.620000px;}
.fs4_c00449{font-size:18.720000px;}
.fs1_c00449{font-size:20.400000px;}
.fs3_c00449{font-size:25.500000px;}
.fs0_c00449{font-size:28.920000px;}
.fs6_c00449{font-size:32.340000px;}
.fs5_c00449{font-size:35.700000px;}
.fs7_c00449{font-size:39.120000px;}
.y0_c00449{bottom:0.000000px;}
.yd4_c00449{bottom:252.405000px;}
.yd3_c00449{bottom:253.245000px;}
.yd7_c00449{bottom:253.470000px;}
.yd6_c00449{bottom:254.745000px;}
.yd9_c00449{bottom:254.970000px;}
.yd5_c00449{bottom:255.405000px;}
.yd8_c00449{bottom:256.905000px;}
.yd0_c00449{bottom:274.245000px;}
.ycf_c00449{bottom:274.905000px;}
.yd2_c00449{bottom:275.130000px;}
.yd1_c00449{bottom:276.405000px;}
.yce_c00449{bottom:293.745000px;}
.ycc_c00449{bottom:294.630000px;}
.ycd_c00449{bottom:295.905000px;}
.yc9_c00449{bottom:313.245000px;}
.ycb_c00449{bottom:314.130000px;}
.yc8_c00449{bottom:315.405000px;}
.yca_c00449{bottom:315.630000px;}
.yc7_c00449{bottom:332.745000px;}
.yc6_c00449{bottom:334.905000px;}
.yc1_c00449{bottom:352.245000px;}
.yc4_c00449{bottom:353.745000px;}
.yc3_c00449{bottom:354.405000px;}
.yc2_c00449{bottom:354.420000px;}
.yc5_c00449{bottom:354.630000px;}
.yc0_c00449{bottom:378.825000px;}
.ybd_c00449{bottom:393.825000px;}
.ybf_c00449{bottom:394.905000px;}
.ybc_c00449{bottom:395.970000px;}
.ybe_c00449{bottom:396.195000px;}
.ybb_c00449{bottom:397.050000px;}
.yb9_c00449{bottom:407.970000px;}
.yb8_c00449{bottom:408.825000px;}
.yb6_c00449{bottom:409.905000px;}
.yb7_c00449{bottom:411.195000px;}
.yba_c00449{bottom:412.050000px;}
.yb2_c00449{bottom:422.970000px;}
.yb3_c00449{bottom:424.905000px;}
.yb5_c00449{bottom:425.970000px;}
.yb4_c00449{bottom:427.050000px;}
.yaf_c00449{bottom:437.970000px;}
.yae_c00449{bottom:438.405000px;}
.yad_c00449{bottom:439.050000px;}
.yac_c00449{bottom:439.905000px;}
.yb0_c00449{bottom:440.550000px;}
.yb1_c00449{bottom:440.970000px;}
.yab_c00449{bottom:442.050000px;}
.yaa_c00449{bottom:452.970000px;}
.ya8_c00449{bottom:453.825000px;}
.ya9_c00449{bottom:455.970000px;}
.ya7_c00449{bottom:468.405000px;}
.ya2_c00449{bottom:469.050000px;}
.ya4_c00449{bottom:469.905000px;}
.ya6_c00449{bottom:470.130000px;}
.ya5_c00449{bottom:470.970000px;}
.ya3_c00449{bottom:472.050000px;}
.ya1_c00449{bottom:484.905000px;}
.ya0_c00449{bottom:485.970000px;}
.y9f_c00449{bottom:497.325000px;}
.y97_c00449{bottom:497.550000px;}
.y9d_c00449{bottom:498.405000px;}
.y9e_c00449{bottom:498.630000px;}
.y9c_c00449{bottom:499.470000px;}
.y9b_c00449{bottom:499.905000px;}
.y99_c00449{bottom:500.550000px;}
.y98_c00449{bottom:500.970000px;}
.y9a_c00449{bottom:502.050000px;}
.y95_c00449{bottom:513.825000px;}
.y96_c00449{bottom:515.970000px;}
.y94_c00449{bottom:527.325000px;}
.y93_c00449{bottom:527.550000px;}
.y90_c00449{bottom:528.405000px;}
.y8f_c00449{bottom:529.050000px;}
.y92_c00449{bottom:529.470000px;}
.y91_c00449{bottom:530.550000px;}
.y8c_c00449{bottom:542.550000px;}
.y8e_c00449{bottom:543.405000px;}
.y8d_c00449{bottom:544.470000px;}
.y89_c00449{bottom:556.470000px;}
.y8a_c00449{bottom:556.905000px;}
.y88_c00449{bottom:557.325000px;}
.y85_c00449{bottom:557.550000px;}
.y8b_c00449{bottom:557.970000px;}
.y87_c00449{bottom:558.630000px;}
.y86_c00449{bottom:559.470000px;}
.y83_c00449{bottom:572.325000px;}
.y81_c00449{bottom:573.405000px;}
.y80_c00449{bottom:573.630000px;}
.y84_c00449{bottom:574.470000px;}
.y82_c00449{bottom:575.550000px;}
.y7f_c00449{bottom:586.470000px;}
.y7e_c00449{bottom:586.905000px;}
.y7d_c00449{bottom:587.325000px;}
.y7b_c00449{bottom:588.405000px;}
.y7c_c00449{bottom:588.630000px;}
.y7a_c00449{bottom:589.470000px;}
.y79_c00449{bottom:601.905000px;}
.y78_c00449{bottom:602.970000px;}
.y75_c00449{bottom:603.405000px;}
.y73_c00449{bottom:603.630000px;}
.y77_c00449{bottom:604.050000px;}
.y74_c00449{bottom:604.470000px;}
.y76_c00449{bottom:605.550000px;}
.y70_c00449{bottom:629.745000px;}
.y72_c00449{bottom:630.630000px;}
.y71_c00449{bottom:631.905000px;}
.y6d_c00449{bottom:646.905000px;}
.y6f_c00449{bottom:648.825000px;}
.y6c_c00449{bottom:649.905000px;}
.y6e_c00449{bottom:650.970000px;}
.y6b_c00449{bottom:651.405000px;}
.y6a_c00449{bottom:668.745000px;}
.y65_c00449{bottom:687.405000px;}
.y64_c00449{bottom:688.245000px;}
.y69_c00449{bottom:689.130000px;}
.y67_c00449{bottom:690.405000px;}
.y66_c00449{bottom:690.630000px;}
.y68_c00449{bottom:691.470000px;}
.y63_c00449{bottom:706.905000px;}
.y62_c00449{bottom:708.825000px;}
.y61_c00449{bottom:709.905000px;}
.y5e_c00449{bottom:727.245000px;}
.y5f_c00449{bottom:728.130000px;}
.y60_c00449{bottom:728.325000px;}
.y5d_c00449{bottom:729.405000px;}
.y5c_c00449{bottom:746.325000px;}
.y59_c00449{bottom:748.245000px;}
.y5b_c00449{bottom:748.905000px;}
.y5a_c00449{bottom:749.130000px;}
.y58_c00449{bottom:749.970000px;}
.y57_c00449{bottom:750.405000px;}
.y55_c00449{bottom:766.245000px;}
.y50_c00449{bottom:767.745000px;}
.y54_c00449{bottom:768.405000px;}
.y51_c00449{bottom:768.630000px;}
.y52_c00449{bottom:768.825000px;}
.y56_c00449{bottom:769.470000px;}
.y53_c00449{bottom:769.905000px;}
.y4f_c00449{bottom:785.745000px;}
.y4a_c00449{bottom:785.970000px;}
.y4c_c00449{bottom:787.245000px;}
.y4e_c00449{bottom:787.905000px;}
.y4d_c00449{bottom:788.130000px;}
.y4b_c00449{bottom:789.405000px;}
.y48_c00449{bottom:805.680000px;}
.y47_c00449{bottom:806.745000px;}
.y49_c00449{bottom:807.630000px;}
.y45_c00449{bottom:808.905000px;}
.y46_c00449{bottom:809.970000px;}
.y43_c00449{bottom:826.245000px;}
.y42_c00449{bottom:828.405000px;}
.y44_c00449{bottom:829.470000px;}
.y41_c00449{bottom:844.470000px;}
.y3d_c00449{bottom:845.325000px;}
.y3c_c00449{bottom:845.745000px;}
.y3f_c00449{bottom:846.630000px;}
.y3e_c00449{bottom:846.825000px;}
.y40_c00449{bottom:847.905000px;}
.y3b_c00449{bottom:864.405000px;}
.y37_c00449{bottom:865.245000px;}
.y3a_c00449{bottom:866.325000px;}
.y38_c00449{bottom:867.405000px;}
.y39_c00449{bottom:867.630000px;}
.y36_c00449{bottom:882.405000px;}
.y35_c00449{bottom:884.325000px;}
.y34_c00449{bottom:884.745000px;}
.y32_c00449{bottom:886.905000px;}
.y33_c00449{bottom:887.130000px;}
.y30_c00449{bottom:903.405000px;}
.y2d_c00449{bottom:904.245000px;}
.y31_c00449{bottom:905.325000px;}
.y2c_c00449{bottom:905.745000px;}
.y2f_c00449{bottom:906.405000px;}
.y2e_c00449{bottom:906.630000px;}
.y2b_c00449{bottom:907.905000px;}
.y28_c00449{bottom:923.325000px;}
.y25_c00449{bottom:923.745000px;}
.y29_c00449{bottom:925.905000px;}
.y26_c00449{bottom:926.130000px;}
.y27_c00449{bottom:926.325000px;}
.y2a_c00449{bottom:926.970000px;}
.y24_c00449{bottom:927.405000px;}
.y20_c00449{bottom:942.405000px;}
.y23_c00449{bottom:944.745000px;}
.y22_c00449{bottom:945.630000px;}
.y21_c00449{bottom:945.825000px;}
.y1f_c00449{bottom:946.905000px;}
.y1b_c00449{bottom:962.970000px;}
.y1d_c00449{bottom:963.825000px;}
.y18_c00449{bottom:964.245000px;}
.y1e_c00449{bottom:964.905000px;}
.y19_c00449{bottom:965.130000px;}
.y1c_c00449{bottom:965.970000px;}
.y1a_c00449{bottom:966.405000px;}
.y14_c00449{bottom:983.745000px;}
.y15_c00449{bottom:984.630000px;}
.y17_c00449{bottom:984.825000px;}
.y16_c00449{bottom:985.470000px;}
.y13_c00449{bottom:985.905000px;}
.y11_c00449{bottom:1002.825000px;}
.y10_c00449{bottom:1003.245000px;}
.y12_c00449{bottom:1003.905000px;}
.yf_c00449{bottom:1005.405000px;}
.ye_c00449{bottom:1022.745000px;}
.yd_c00449{bottom:1023.825000px;}
.yc_c00449{bottom:1024.905000px;}
.y9_c00449{bottom:1041.405000px;}
.ya_c00449{bottom:1042.245000px;}
.y8_c00449{bottom:1044.405000px;}
.yb_c00449{bottom:1045.470000px;}
.y7_c00449{bottom:1061.745000px;}
.y6_c00449{bottom:1062.630000px;}
.y3_c00449{bottom:1063.905000px;}
.y4_c00449{bottom:1063.920000px;}
.y5_c00449{bottom:1064.970000px;}
.y1_c00449{bottom:1099.905000px;}
.y2_c00449{bottom:1102.050000px;}
.h3_c00449{height:4.206533px;}
.h9_c00449{height:16.752334px;}
.h5_c00449{height:23.025234px;}
.h2_c00449{height:25.091602px;}
.h4_c00449{height:31.364502px;}
.h1_c00449{height:35.571035px;}
.h7_c00449{height:39.777568px;}
.h6_c00449{height:43.910303px;}
.h8_c00449{height:48.116836px;}
.h0_c00449{height:1335.000000px;}
.w0_c00449{width:880.500000px;}
.x0_c00449{left:0.000000px;}
.xf6_c00449{left:148.500000px;}
.xc6_c00449{left:150.000000px;}
.x4c_c00449{left:151.920000px;}
.x1_c00449{left:153.000000px;}
.xdf_c00449{left:163.920000px;}
.xcb_c00449{left:165.000000px;}
.xb7_c00449{left:166.500000px;}
.x7f_c00449{left:168.000000px;}
.x3_c00449{left:169.080000px;}
.xd1_c00449{left:171.000000px;}
.x90_c00449{left:174.000000px;}
.x62_c00449{left:177.000000px;}
.xe9_c00449{left:179.580000px;}
.xcc_c00449{left:181.500000px;}
.xc1_c00449{left:183.000000px;}
.xe4_c00449{left:184.080000px;}
.x9f_c00449{left:186.000000px;}
.x4d_c00449{left:189.000000px;}
.x88_c00449{left:190.500000px;}
.x7a_c00449{left:195.000000px;}
.x57_c00449{left:196.500000px;}
.x106_c00449{left:197.580000px;}
.xb8_c00449{left:199.080000px;}
.x104_c00449{left:201.000000px;}
.x72_c00449{left:202.080000px;}
.xa0_c00449{left:205.500000px;}
.xd2_c00449{left:209.580000px;}
.x99_c00449{left:213.000000px;}
.x1c_c00449{left:214.920000px;}
.xec_c00449{left:216.000000px;}
.x58_c00449{left:219.000000px;}
.xbf_c00449{left:220.500000px;}
.x89_c00449{left:221.775000px;}
.xee_c00449{left:223.500000px;}
.xfa_c00449{left:226.080000px;}
.xae_c00449{left:227.580000px;}
.x10_c00449{left:229.500000px;}
.x80_c00449{left:232.080000px;}
.x33_c00449{left:234.000000px;}
.x40_c00449{left:237.420000px;}
.xd3_c00449{left:238.500000px;}
.x1d_c00449{left:240.420000px;}
.xfe_c00449{left:244.920000px;}
.x63_c00449{left:246.420000px;}
.xaf_c00449{left:247.500000px;}
.x4_c00449{left:249.000000px;}
.xb2_c00449{left:250.500000px;}
.x91_c00449{left:251.775000px;}
.x73_c00449{left:255.000000px;}
.x28_c00449{left:257.580000px;}
.x11_c00449{left:261.000000px;}
.x34_c00449{left:265.500000px;}
.x5_c00449{left:266.580000px;}
.xdd_c00449{left:268.080000px;}
.x1e_c00449{left:269.580000px;}
.x64_c00449{left:271.500000px;}
.xc7_c00449{left:273.000000px;}
.x9a_c00449{left:274.500000px;}
.xfb_c00449{left:276.000000px;}
.x4e_c00449{left:277.500000px;}
.x81_c00449{left:279.000000px;}
.xc0_c00449{left:282.000000px;}
.x6b_c00449{left:283.500000px;}
.xa1_c00449{left:285.000000px;}
.x92_c00449{left:286.500000px;}
.x41_c00449{left:291.000000px;}
.x8a_c00449{left:293.580000px;}
.xde_c00449{left:295.500000px;}
.xa7_c00449{left:296.775000px;}
.x29_c00449{left:299.580000px;}
.xd9_c00449{left:303.000000px;}
.x74_c00449{left:304.500000px;}
.xe5_c00449{left:307.080000px;}
.xf7_c00449{left:309.420000px;}
.x42_c00449{left:310.920000px;}
.xe3_c00449{left:312.000000px;}
.x59_c00449{left:315.000000px;}
.x7b_c00449{left:316.920000px;}
.x4f_c00449{left:319.080000px;}
.x35_c00449{left:321.000000px;}
.xa2_c00449{left:322.080000px;}
.x1f_c00449{left:324.000000px;}
.x12_c00449{left:325.920000px;}
.xea_c00449{left:327.000000px;}
.xda_c00449{left:328.920000px;}
.x107_c00449{left:331.500000px;}
.xe6_c00449{left:334.500000px;}
.xc2_c00449{left:337.500000px;}
.x93_c00449{left:338.580000px;}
.x6_c00449{left:340.500000px;}
.xcd_c00449{left:342.000000px;}
.xd4_c00449{left:343.080000px;}
.xa8_c00449{left:345.000000px;}
.x82_c00449{left:346.080000px;}
.x7c_c00449{left:347.580000px;}
.x43_c00449{left:351.420000px;}
.x102_c00449{left:352.920000px;}
.x13_c00449{left:354.420000px;}
.x36_c00449{left:355.500000px;}
.x2a_c00449{left:357.000000px;}
.xe7_c00449{left:360.420000px;}
.x7_c00449{left:361.500000px;}
.x65_c00449{left:363.000000px;}
.x83_c00449{left:364.920000px;}
.xb3_c00449{left:367.500000px;}
.x20_c00449{left:369.000000px;}
.x94_c00449{left:370.275000px;}
.xe0_c00449{left:372.000000px;}
.x9b_c00449{left:373.080000px;}
.xa9_c00449{left:379.080000px;}
.x50_c00449{left:381.000000px;}
.xb9_c00449{left:383.580000px;}
.x21_c00449{left:385.500000px;}
.xd5_c00449{left:388.080000px;}
.xdb_c00449{left:389.580000px;}
.x8_c00449{left:391.500000px;}
.x44_c00449{left:393.420000px;}
.xb4_c00449{left:394.500000px;}
.x2b_c00449{left:396.000000px;}
.x37_c00449{left:397.500000px;}
.xef_c00449{left:398.580000px;}
.xa3_c00449{left:402.000000px;}
.xed_c00449{left:405.000000px;}
.x66_c00449{left:406.500000px;}
.x2_c00449{left:408.000000px;}
.xb5_c00449{left:411.000000px;}
.x75_c00449{left:412.920000px;}
.x6c_c00449{left:414.000000px;}
.xce_c00449{left:415.920000px;}
.x95_c00449{left:417.000000px;}
.x38_c00449{left:418.500000px;}
.x45_c00449{left:421.500000px;}
.xc3_c00449{left:427.500000px;}
.x108_c00449{left:428.580000px;}
.xcf_c00449{left:430.500000px;}
.x14_c00449{left:431.580000px;}
.xd6_c00449{left:433.080000px;}
.x5a_c00449{left:435.420000px;}
.x84_c00449{left:437.145000px;}
.x9_c00449{left:438.645000px;}
.x6d_c00449{left:439.920000px;}
.x67_c00449{left:441.000000px;}
.x51_c00449{left:442.500000px;}
.x8b_c00449{left:446.580000px;}
.x9c_c00449{left:448.500000px;}
.x2c_c00449{left:449.580000px;}
.xfc_c00449{left:452.580000px;}
.xaa_c00449{left:456.420000px;}
.xc8_c00449{left:460.500000px;}
.x22_c00449{left:462.420000px;}
.x7d_c00449{left:464.580000px;}
.x39_c00449{left:466.080000px;}
.x85_c00449{left:467.580000px;}
.xa_c00449{left:469.500000px;}
.xe8_c00449{left:470.580000px;}
.xc4_c00449{left:472.500000px;}
.x46_c00449{left:474.420000px;}
.xd7_c00449{left:476.580000px;}
.x15_c00449{left:478.080000px;}
.x96_c00449{left:481.500000px;}
.xf0_c00449{left:483.000000px;}
.xf8_c00449{left:485.580000px;}
.x23_c00449{left:487.920000px;}
.x2d_c00449{left:490.500000px;}
.x68_c00449{left:493.500000px;}
.xc9_c00449{left:494.580000px;}
.x16_c00449{left:498.000000px;}
.x47_c00449{left:502.080000px;}
.x52_c00449{left:504.000000px;}
.xe1_c00449{left:505.500000px;}
.x7e_c00449{left:507.420000px;}
.x3a_c00449{left:508.500000px;}
.x5b_c00449{left:509.580000px;}
.x9d_c00449{left:514.500000px;}
.xb_c00449{left:517.920000px;}
.x76_c00449{left:520.920000px;}
.xca_c00449{left:522.000000px;}
.x53_c00449{left:523.920000px;}
.x97_c00449{left:525.000000px;}
.x5c_c00449{left:526.500000px;}
.xf1_c00449{left:528.000000px;}
.xba_c00449{left:529.080000px;}
.x24_c00449{left:531.000000px;}
.x6e_c00449{left:532.920000px;}
.xa4_c00449{left:534.000000px;}
.xff_c00449{left:535.500000px;}
.x8c_c00449{left:536.580000px;}
.xf2_c00449{left:538.500000px;}
.xb0_c00449{left:540.000000px;}
.x105_c00449{left:541.500000px;}
.x69_c00449{left:544.500000px;}
.x17_c00449{left:545.580000px;}
.x25_c00449{left:549.000000px;}
.xbb_c00449{left:550.920000px;}
.x54_c00449{left:552.000000px;}
.x8d_c00449{left:553.080000px;}
.x86_c00449{left:555.420000px;}
.xf9_c00449{left:559.080000px;}
.x48_c00449{left:561.000000px;}
.x2e_c00449{left:562.500000px;}
.xab_c00449{left:564.645000px;}
.x3b_c00449{left:567.000000px;}
.xfd_c00449{left:570.420000px;}
.x5d_c00449{left:573.000000px;}
.x49_c00449{left:574.080000px;}
.xeb_c00449{left:575.580000px;}
.x18_c00449{left:577.500000px;}
.xbc_c00449{left:580.500000px;}
.x3c_c00449{left:581.580000px;}
.x77_c00449{left:583.500000px;}
.xb1_c00449{left:586.500000px;}
.x2f_c00449{left:588.420000px;}
.x100_c00449{left:589.920000px;}
.xc5_c00449{left:591.000000px;}
.xa5_c00449{left:595.500000px;}
.x5e_c00449{left:598.500000px;}
.xc_c00449{left:600.420000px;}
.xf3_c00449{left:601.500000px;}
.x19_c00449{left:606.420000px;}
.xac_c00449{left:608.580000px;}
.xe2_c00449{left:609.855000px;}
.x26_c00449{left:611.580000px;}
.x5f_c00449{left:616.920000px;}
.x30_c00449{left:618.000000px;}
.xdc_c00449{left:619.920000px;}
.xd0_c00449{left:624.000000px;}
.x3d_c00449{left:625.500000px;}
.xd_c00449{left:627.000000px;}
.x6f_c00449{left:628.920000px;}
.xbd_c00449{left:630.645000px;}
.xf4_c00449{left:631.920000px;}
.x55_c00449{left:633.000000px;}
.x9e_c00449{left:634.920000px;}
.x98_c00449{left:640.500000px;}
.x60_c00449{left:642.000000px;}
.x27_c00449{left:643.500000px;}
.x103_c00449{left:645.420000px;}
.x56_c00449{left:649.920000px;}
.xb6_c00449{left:653.580000px;}
.x78_c00449{left:655.500000px;}
.x70_c00449{left:657.420000px;}
.x1a_c00449{left:660.420000px;}
.x6a_c00449{left:661.500000px;}
.xbe_c00449{left:664.920000px;}
.x109_c00449{left:666.000000px;}
.x4a_c00449{left:667.500000px;}
.x31_c00449{left:668.580000px;}
.x8e_c00449{left:670.500000px;}
.xf5_c00449{left:675.000000px;}
.xe_c00449{left:678.000000px;}
.xad_c00449{left:680.580000px;}
.x4b_c00449{left:683.580000px;}
.x3e_c00449{left:686.580000px;}
.xd8_c00449{left:689.580000px;}
.xa6_c00449{left:693.000000px;}
.x87_c00449{left:694.920000px;}
.x1b_c00449{left:697.500000px;}
.x101_c00449{left:699.000000px;}
.x79_c00449{left:700.500000px;}
.x71_c00449{left:705.000000px;}
.x32_c00449{left:706.080000px;}
.x3f_c00449{left:708.420000px;}
.x8f_c00449{left:712.500000px;}
.x61_c00449{left:714.000000px;}
.xf_c00449{left:716.580000px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.ls0_c00449{letter-spacing:0.000000pt;}
.ws2_c00449{word-spacing:0.000000pt;}
.ws0_c00449{word-spacing:2.993933pt;}
.ws1_c00449{word-spacing:5.443288pt;}
.fs2_c00449{font-size:3.040000pt;}
.fs8_c00449{font-size:12.106667pt;}
.fs4_c00449{font-size:16.640000pt;}
.fs1_c00449{font-size:18.133333pt;}
.fs3_c00449{font-size:22.666667pt;}
.fs0_c00449{font-size:25.706667pt;}
.fs6_c00449{font-size:28.746667pt;}
.fs5_c00449{font-size:31.733333pt;}
.fs7_c00449{font-size:34.773333pt;}
.y0_c00449{bottom:0.000000pt;}
.yd4_c00449{bottom:224.360000pt;}
.yd3_c00449{bottom:225.106667pt;}
.yd7_c00449{bottom:225.306667pt;}
.yd6_c00449{bottom:226.440000pt;}
.yd9_c00449{bottom:226.640000pt;}
.yd5_c00449{bottom:227.026667pt;}
.yd8_c00449{bottom:228.360000pt;}
.yd0_c00449{bottom:243.773333pt;}
.ycf_c00449{bottom:244.360000pt;}
.yd2_c00449{bottom:244.560000pt;}
.yd1_c00449{bottom:245.693333pt;}
.yce_c00449{bottom:261.106667pt;}
.ycc_c00449{bottom:261.893333pt;}
.ycd_c00449{bottom:263.026667pt;}
.yc9_c00449{bottom:278.440000pt;}
.ycb_c00449{bottom:279.226667pt;}
.yc8_c00449{bottom:280.360000pt;}
.yca_c00449{bottom:280.560000pt;}
.yc7_c00449{bottom:295.773333pt;}
.yc6_c00449{bottom:297.693333pt;}
.yc1_c00449{bottom:313.106667pt;}
.yc4_c00449{bottom:314.440000pt;}
.yc3_c00449{bottom:315.026667pt;}
.yc2_c00449{bottom:315.040000pt;}
.yc5_c00449{bottom:315.226667pt;}
.yc0_c00449{bottom:336.733333pt;}
.ybd_c00449{bottom:350.066667pt;}
.ybf_c00449{bottom:351.026667pt;}
.ybc_c00449{bottom:351.973333pt;}
.ybe_c00449{bottom:352.173333pt;}
.ybb_c00449{bottom:352.933333pt;}
.yb9_c00449{bottom:362.640000pt;}
.yb8_c00449{bottom:363.400000pt;}
.yb6_c00449{bottom:364.360000pt;}
.yb7_c00449{bottom:365.506667pt;}
.yba_c00449{bottom:366.266667pt;}
.yb2_c00449{bottom:375.973333pt;}
.yb3_c00449{bottom:377.693333pt;}
.yb5_c00449{bottom:378.640000pt;}
.yb4_c00449{bottom:379.600000pt;}
.yaf_c00449{bottom:389.306667pt;}
.yae_c00449{bottom:389.693333pt;}
.yad_c00449{bottom:390.266667pt;}
.yac_c00449{bottom:391.026667pt;}
.yb0_c00449{bottom:391.600000pt;}
.yb1_c00449{bottom:391.973333pt;}
.yab_c00449{bottom:392.933333pt;}
.yaa_c00449{bottom:402.640000pt;}
.ya8_c00449{bottom:403.400000pt;}
.ya9_c00449{bottom:405.306667pt;}
.ya7_c00449{bottom:416.360000pt;}
.ya2_c00449{bottom:416.933333pt;}
.ya4_c00449{bottom:417.693333pt;}
.ya6_c00449{bottom:417.893333pt;}
.ya5_c00449{bottom:418.640000pt;}
.ya3_c00449{bottom:419.600000pt;}
.ya1_c00449{bottom:431.026667pt;}
.ya0_c00449{bottom:431.973333pt;}
.y9f_c00449{bottom:442.066667pt;}
.y97_c00449{bottom:442.266667pt;}
.y9d_c00449{bottom:443.026667pt;}
.y9e_c00449{bottom:443.226667pt;}
.y9c_c00449{bottom:443.973333pt;}
.y9b_c00449{bottom:444.360000pt;}
.y99_c00449{bottom:444.933333pt;}
.y98_c00449{bottom:445.306667pt;}
.y9a_c00449{bottom:446.266667pt;}
.y95_c00449{bottom:456.733333pt;}
.y96_c00449{bottom:458.640000pt;}
.y94_c00449{bottom:468.733333pt;}
.y93_c00449{bottom:468.933333pt;}
.y90_c00449{bottom:469.693333pt;}
.y8f_c00449{bottom:470.266667pt;}
.y92_c00449{bottom:470.640000pt;}
.y91_c00449{bottom:471.600000pt;}
.y8c_c00449{bottom:482.266667pt;}
.y8e_c00449{bottom:483.026667pt;}
.y8d_c00449{bottom:483.973333pt;}
.y89_c00449{bottom:494.640000pt;}
.y8a_c00449{bottom:495.026667pt;}
.y88_c00449{bottom:495.400000pt;}
.y85_c00449{bottom:495.600000pt;}
.y8b_c00449{bottom:495.973333pt;}
.y87_c00449{bottom:496.560000pt;}
.y86_c00449{bottom:497.306667pt;}
.y83_c00449{bottom:508.733333pt;}
.y81_c00449{bottom:509.693333pt;}
.y80_c00449{bottom:509.893333pt;}
.y84_c00449{bottom:510.640000pt;}
.y82_c00449{bottom:511.600000pt;}
.y7f_c00449{bottom:521.306667pt;}
.y7e_c00449{bottom:521.693333pt;}
.y7d_c00449{bottom:522.066667pt;}
.y7b_c00449{bottom:523.026667pt;}
.y7c_c00449{bottom:523.226667pt;}
.y7a_c00449{bottom:523.973333pt;}
.y79_c00449{bottom:535.026667pt;}
.y78_c00449{bottom:535.973333pt;}
.y75_c00449{bottom:536.360000pt;}
.y73_c00449{bottom:536.560000pt;}
.y77_c00449{bottom:536.933333pt;}
.y74_c00449{bottom:537.306667pt;}
.y76_c00449{bottom:538.266667pt;}
.y70_c00449{bottom:559.773333pt;}
.y72_c00449{bottom:560.560000pt;}
.y71_c00449{bottom:561.693333pt;}
.y6d_c00449{bottom:575.026667pt;}
.y6f_c00449{bottom:576.733333pt;}
.y6c_c00449{bottom:577.693333pt;}
.y6e_c00449{bottom:578.640000pt;}
.y6b_c00449{bottom:579.026667pt;}
.y6a_c00449{bottom:594.440000pt;}
.y65_c00449{bottom:611.026667pt;}
.y64_c00449{bottom:611.773333pt;}
.y69_c00449{bottom:612.560000pt;}
.y67_c00449{bottom:613.693333pt;}
.y66_c00449{bottom:613.893333pt;}
.y68_c00449{bottom:614.640000pt;}
.y63_c00449{bottom:628.360000pt;}
.y62_c00449{bottom:630.066667pt;}
.y61_c00449{bottom:631.026667pt;}
.y5e_c00449{bottom:646.440000pt;}
.y5f_c00449{bottom:647.226667pt;}
.y60_c00449{bottom:647.400000pt;}
.y5d_c00449{bottom:648.360000pt;}
.y5c_c00449{bottom:663.400000pt;}
.y59_c00449{bottom:665.106667pt;}
.y5b_c00449{bottom:665.693333pt;}
.y5a_c00449{bottom:665.893333pt;}
.y58_c00449{bottom:666.640000pt;}
.y57_c00449{bottom:667.026667pt;}
.y55_c00449{bottom:681.106667pt;}
.y50_c00449{bottom:682.440000pt;}
.y54_c00449{bottom:683.026667pt;}
.y51_c00449{bottom:683.226667pt;}
.y52_c00449{bottom:683.400000pt;}
.y56_c00449{bottom:683.973333pt;}
.y53_c00449{bottom:684.360000pt;}
.y4f_c00449{bottom:698.440000pt;}
.y4a_c00449{bottom:698.640000pt;}
.y4c_c00449{bottom:699.773333pt;}
.y4e_c00449{bottom:700.360000pt;}
.y4d_c00449{bottom:700.560000pt;}
.y4b_c00449{bottom:701.693333pt;}
.y48_c00449{bottom:716.160000pt;}
.y47_c00449{bottom:717.106667pt;}
.y49_c00449{bottom:717.893333pt;}
.y45_c00449{bottom:719.026667pt;}
.y46_c00449{bottom:719.973333pt;}
.y43_c00449{bottom:734.440000pt;}
.y42_c00449{bottom:736.360000pt;}
.y44_c00449{bottom:737.306667pt;}
.y41_c00449{bottom:750.640000pt;}
.y3d_c00449{bottom:751.400000pt;}
.y3c_c00449{bottom:751.773333pt;}
.y3f_c00449{bottom:752.560000pt;}
.y3e_c00449{bottom:752.733333pt;}
.y40_c00449{bottom:753.693333pt;}
.y3b_c00449{bottom:768.360000pt;}
.y37_c00449{bottom:769.106667pt;}
.y3a_c00449{bottom:770.066667pt;}
.y38_c00449{bottom:771.026667pt;}
.y39_c00449{bottom:771.226667pt;}
.y36_c00449{bottom:784.360000pt;}
.y35_c00449{bottom:786.066667pt;}
.y34_c00449{bottom:786.440000pt;}
.y32_c00449{bottom:788.360000pt;}
.y33_c00449{bottom:788.560000pt;}
.y30_c00449{bottom:803.026667pt;}
.y2d_c00449{bottom:803.773333pt;}
.y31_c00449{bottom:804.733333pt;}
.y2c_c00449{bottom:805.106667pt;}
.y2f_c00449{bottom:805.693333pt;}
.y2e_c00449{bottom:805.893333pt;}
.y2b_c00449{bottom:807.026667pt;}
.y28_c00449{bottom:820.733333pt;}
.y25_c00449{bottom:821.106667pt;}
.y29_c00449{bottom:823.026667pt;}
.y26_c00449{bottom:823.226667pt;}
.y27_c00449{bottom:823.400000pt;}
.y2a_c00449{bottom:823.973333pt;}
.y24_c00449{bottom:824.360000pt;}
.y20_c00449{bottom:837.693333pt;}
.y23_c00449{bottom:839.773333pt;}
.y22_c00449{bottom:840.560000pt;}
.y21_c00449{bottom:840.733333pt;}
.y1f_c00449{bottom:841.693333pt;}
.y1b_c00449{bottom:855.973333pt;}
.y1d_c00449{bottom:856.733333pt;}
.y18_c00449{bottom:857.106667pt;}
.y1e_c00449{bottom:857.693333pt;}
.y19_c00449{bottom:857.893333pt;}
.y1c_c00449{bottom:858.640000pt;}
.y1a_c00449{bottom:859.026667pt;}
.y14_c00449{bottom:874.440000pt;}
.y15_c00449{bottom:875.226667pt;}
.y17_c00449{bottom:875.400000pt;}
.y16_c00449{bottom:875.973333pt;}
.y13_c00449{bottom:876.360000pt;}
.y11_c00449{bottom:891.400000pt;}
.y10_c00449{bottom:891.773333pt;}
.y12_c00449{bottom:892.360000pt;}
.yf_c00449{bottom:893.693333pt;}
.ye_c00449{bottom:909.106667pt;}
.yd_c00449{bottom:910.066667pt;}
.yc_c00449{bottom:911.026667pt;}
.y9_c00449{bottom:925.693333pt;}
.ya_c00449{bottom:926.440000pt;}
.y8_c00449{bottom:928.360000pt;}
.yb_c00449{bottom:929.306667pt;}
.y7_c00449{bottom:943.773333pt;}
.y6_c00449{bottom:944.560000pt;}
.y3_c00449{bottom:945.693333pt;}
.y4_c00449{bottom:945.706667pt;}
.y5_c00449{bottom:946.640000pt;}
.y1_c00449{bottom:977.693333pt;}
.y2_c00449{bottom:979.600000pt;}
.h3_c00449{height:3.739141pt;}
.h9_c00449{height:14.890964pt;}
.h5_c00449{height:20.466875pt;}
.h2_c00449{height:22.303646pt;}
.h4_c00449{height:27.879557pt;}
.h1_c00449{height:31.618698pt;}
.h7_c00449{height:35.357839pt;}
.h6_c00449{height:39.031380pt;}
.h8_c00449{height:42.770521pt;}
.h0_c00449{height:1186.666667pt;}
.w0_c00449{width:782.666667pt;}
.x0_c00449{left:0.000000pt;}
.xf6_c00449{left:132.000000pt;}
.xc6_c00449{left:133.333333pt;}
.x4c_c00449{left:135.040000pt;}
.x1_c00449{left:136.000000pt;}
.xdf_c00449{left:145.706667pt;}
.xcb_c00449{left:146.666667pt;}
.xb7_c00449{left:148.000000pt;}
.x7f_c00449{left:149.333333pt;}
.x3_c00449{left:150.293333pt;}
.xd1_c00449{left:152.000000pt;}
.x90_c00449{left:154.666667pt;}
.x62_c00449{left:157.333333pt;}
.xe9_c00449{left:159.626667pt;}
.xcc_c00449{left:161.333333pt;}
.xc1_c00449{left:162.666667pt;}
.xe4_c00449{left:163.626667pt;}
.x9f_c00449{left:165.333333pt;}
.x4d_c00449{left:168.000000pt;}
.x88_c00449{left:169.333333pt;}
.x7a_c00449{left:173.333333pt;}
.x57_c00449{left:174.666667pt;}
.x106_c00449{left:175.626667pt;}
.xb8_c00449{left:176.960000pt;}
.x104_c00449{left:178.666667pt;}
.x72_c00449{left:179.626667pt;}
.xa0_c00449{left:182.666667pt;}
.xd2_c00449{left:186.293333pt;}
.x99_c00449{left:189.333333pt;}
.x1c_c00449{left:191.040000pt;}
.xec_c00449{left:192.000000pt;}
.x58_c00449{left:194.666667pt;}
.xbf_c00449{left:196.000000pt;}
.x89_c00449{left:197.133333pt;}
.xee_c00449{left:198.666667pt;}
.xfa_c00449{left:200.960000pt;}
.xae_c00449{left:202.293333pt;}
.x10_c00449{left:204.000000pt;}
.x80_c00449{left:206.293333pt;}
.x33_c00449{left:208.000000pt;}
.x40_c00449{left:211.040000pt;}
.xd3_c00449{left:212.000000pt;}
.x1d_c00449{left:213.706667pt;}
.xfe_c00449{left:217.706667pt;}
.x63_c00449{left:219.040000pt;}
.xaf_c00449{left:220.000000pt;}
.x4_c00449{left:221.333333pt;}
.xb2_c00449{left:222.666667pt;}
.x91_c00449{left:223.800000pt;}
.x73_c00449{left:226.666667pt;}
.x28_c00449{left:228.960000pt;}
.x11_c00449{left:232.000000pt;}
.x34_c00449{left:236.000000pt;}
.x5_c00449{left:236.960000pt;}
.xdd_c00449{left:238.293333pt;}
.x1e_c00449{left:239.626667pt;}
.x64_c00449{left:241.333333pt;}
.xc7_c00449{left:242.666667pt;}
.x9a_c00449{left:244.000000pt;}
.xfb_c00449{left:245.333333pt;}
.x4e_c00449{left:246.666667pt;}
.x81_c00449{left:248.000000pt;}
.xc0_c00449{left:250.666667pt;}
.x6b_c00449{left:252.000000pt;}
.xa1_c00449{left:253.333333pt;}
.x92_c00449{left:254.666667pt;}
.x41_c00449{left:258.666667pt;}
.x8a_c00449{left:260.960000pt;}
.xde_c00449{left:262.666667pt;}
.xa7_c00449{left:263.800000pt;}
.x29_c00449{left:266.293333pt;}
.xd9_c00449{left:269.333333pt;}
.x74_c00449{left:270.666667pt;}
.xe5_c00449{left:272.960000pt;}
.xf7_c00449{left:275.040000pt;}
.x42_c00449{left:276.373333pt;}
.xe3_c00449{left:277.333333pt;}
.x59_c00449{left:280.000000pt;}
.x7b_c00449{left:281.706667pt;}
.x4f_c00449{left:283.626667pt;}
.x35_c00449{left:285.333333pt;}
.xa2_c00449{left:286.293333pt;}
.x1f_c00449{left:288.000000pt;}
.x12_c00449{left:289.706667pt;}
.xea_c00449{left:290.666667pt;}
.xda_c00449{left:292.373333pt;}
.x107_c00449{left:294.666667pt;}
.xe6_c00449{left:297.333333pt;}
.xc2_c00449{left:300.000000pt;}
.x93_c00449{left:300.960000pt;}
.x6_c00449{left:302.666667pt;}
.xcd_c00449{left:304.000000pt;}
.xd4_c00449{left:304.960000pt;}
.xa8_c00449{left:306.666667pt;}
.x82_c00449{left:307.626667pt;}
.x7c_c00449{left:308.960000pt;}
.x43_c00449{left:312.373333pt;}
.x102_c00449{left:313.706667pt;}
.x13_c00449{left:315.040000pt;}
.x36_c00449{left:316.000000pt;}
.x2a_c00449{left:317.333333pt;}
.xe7_c00449{left:320.373333pt;}
.x7_c00449{left:321.333333pt;}
.x65_c00449{left:322.666667pt;}
.x83_c00449{left:324.373333pt;}
.xb3_c00449{left:326.666667pt;}
.x20_c00449{left:328.000000pt;}
.x94_c00449{left:329.133333pt;}
.xe0_c00449{left:330.666667pt;}
.x9b_c00449{left:331.626667pt;}
.xa9_c00449{left:336.960000pt;}
.x50_c00449{left:338.666667pt;}
.xb9_c00449{left:340.960000pt;}
.x21_c00449{left:342.666667pt;}
.xd5_c00449{left:344.960000pt;}
.xdb_c00449{left:346.293333pt;}
.x8_c00449{left:348.000000pt;}
.x44_c00449{left:349.706667pt;}
.xb4_c00449{left:350.666667pt;}
.x2b_c00449{left:352.000000pt;}
.x37_c00449{left:353.333333pt;}
.xef_c00449{left:354.293333pt;}
.xa3_c00449{left:357.333333pt;}
.xed_c00449{left:360.000000pt;}
.x66_c00449{left:361.333333pt;}
.x2_c00449{left:362.666667pt;}
.xb5_c00449{left:365.333333pt;}
.x75_c00449{left:367.040000pt;}
.x6c_c00449{left:368.000000pt;}
.xce_c00449{left:369.706667pt;}
.x95_c00449{left:370.666667pt;}
.x38_c00449{left:372.000000pt;}
.x45_c00449{left:374.666667pt;}
.xc3_c00449{left:380.000000pt;}
.x108_c00449{left:380.960000pt;}
.xcf_c00449{left:382.666667pt;}
.x14_c00449{left:383.626667pt;}
.xd6_c00449{left:384.960000pt;}
.x5a_c00449{left:387.040000pt;}
.x84_c00449{left:388.573333pt;}
.x9_c00449{left:389.906667pt;}
.x6d_c00449{left:391.040000pt;}
.x67_c00449{left:392.000000pt;}
.x51_c00449{left:393.333333pt;}
.x8b_c00449{left:396.960000pt;}
.x9c_c00449{left:398.666667pt;}
.x2c_c00449{left:399.626667pt;}
.xfc_c00449{left:402.293333pt;}
.xaa_c00449{left:405.706667pt;}
.xc8_c00449{left:409.333333pt;}
.x22_c00449{left:411.040000pt;}
.x7d_c00449{left:412.960000pt;}
.x39_c00449{left:414.293333pt;}
.x85_c00449{left:415.626667pt;}
.xa_c00449{left:417.333333pt;}
.xe8_c00449{left:418.293333pt;}
.xc4_c00449{left:420.000000pt;}
.x46_c00449{left:421.706667pt;}
.xd7_c00449{left:423.626667pt;}
.x15_c00449{left:424.960000pt;}
.x96_c00449{left:428.000000pt;}
.xf0_c00449{left:429.333333pt;}
.xf8_c00449{left:431.626667pt;}
.x23_c00449{left:433.706667pt;}
.x2d_c00449{left:436.000000pt;}
.x68_c00449{left:438.666667pt;}
.xc9_c00449{left:439.626667pt;}
.x16_c00449{left:442.666667pt;}
.x47_c00449{left:446.293333pt;}
.x52_c00449{left:448.000000pt;}
.xe1_c00449{left:449.333333pt;}
.x7e_c00449{left:451.040000pt;}
.x3a_c00449{left:452.000000pt;}
.x5b_c00449{left:452.960000pt;}
.x9d_c00449{left:457.333333pt;}
.xb_c00449{left:460.373333pt;}
.x76_c00449{left:463.040000pt;}
.xca_c00449{left:464.000000pt;}
.x53_c00449{left:465.706667pt;}
.x97_c00449{left:466.666667pt;}
.x5c_c00449{left:468.000000pt;}
.xf1_c00449{left:469.333333pt;}
.xba_c00449{left:470.293333pt;}
.x24_c00449{left:472.000000pt;}
.x6e_c00449{left:473.706667pt;}
.xa4_c00449{left:474.666667pt;}
.xff_c00449{left:476.000000pt;}
.x8c_c00449{left:476.960000pt;}
.xf2_c00449{left:478.666667pt;}
.xb0_c00449{left:480.000000pt;}
.x105_c00449{left:481.333333pt;}
.x69_c00449{left:484.000000pt;}
.x17_c00449{left:484.960000pt;}
.x25_c00449{left:488.000000pt;}
.xbb_c00449{left:489.706667pt;}
.x54_c00449{left:490.666667pt;}
.x8d_c00449{left:491.626667pt;}
.x86_c00449{left:493.706667pt;}
.xf9_c00449{left:496.960000pt;}
.x48_c00449{left:498.666667pt;}
.x2e_c00449{left:500.000000pt;}
.xab_c00449{left:501.906667pt;}
.x3b_c00449{left:504.000000pt;}
.xfd_c00449{left:507.040000pt;}
.x5d_c00449{left:509.333333pt;}
.x49_c00449{left:510.293333pt;}
.xeb_c00449{left:511.626667pt;}
.x18_c00449{left:513.333333pt;}
.xbc_c00449{left:516.000000pt;}
.x3c_c00449{left:516.960000pt;}
.x77_c00449{left:518.666667pt;}
.xb1_c00449{left:521.333333pt;}
.x2f_c00449{left:523.040000pt;}
.x100_c00449{left:524.373333pt;}
.xc5_c00449{left:525.333333pt;}
.xa5_c00449{left:529.333333pt;}
.x5e_c00449{left:532.000000pt;}
.xc_c00449{left:533.706667pt;}
.xf3_c00449{left:534.666667pt;}
.x19_c00449{left:539.040000pt;}
.xac_c00449{left:540.960000pt;}
.xe2_c00449{left:542.093333pt;}
.x26_c00449{left:543.626667pt;}
.x5f_c00449{left:548.373333pt;}
.x30_c00449{left:549.333333pt;}
.xdc_c00449{left:551.040000pt;}
.xd0_c00449{left:554.666667pt;}
.x3d_c00449{left:556.000000pt;}
.xd_c00449{left:557.333333pt;}
.x6f_c00449{left:559.040000pt;}
.xbd_c00449{left:560.573333pt;}
.xf4_c00449{left:561.706667pt;}
.x55_c00449{left:562.666667pt;}
.x9e_c00449{left:564.373333pt;}
.x98_c00449{left:569.333333pt;}
.x60_c00449{left:570.666667pt;}
.x27_c00449{left:572.000000pt;}
.x103_c00449{left:573.706667pt;}
.x56_c00449{left:577.706667pt;}
.xb6_c00449{left:580.960000pt;}
.x78_c00449{left:582.666667pt;}
.x70_c00449{left:584.373333pt;}
.x1a_c00449{left:587.040000pt;}
.x6a_c00449{left:588.000000pt;}
.xbe_c00449{left:591.040000pt;}
.x109_c00449{left:592.000000pt;}
.x4a_c00449{left:593.333333pt;}
.x31_c00449{left:594.293333pt;}
.x8e_c00449{left:596.000000pt;}
.xf5_c00449{left:600.000000pt;}
.xe_c00449{left:602.666667pt;}
.xad_c00449{left:604.960000pt;}
.x4b_c00449{left:607.626667pt;}
.x3e_c00449{left:610.293333pt;}
.xd8_c00449{left:612.960000pt;}
.xa6_c00449{left:616.000000pt;}
.x87_c00449{left:617.706667pt;}
.x1b_c00449{left:620.000000pt;}
.x101_c00449{left:621.333333pt;}
.x79_c00449{left:622.666667pt;}
.x71_c00449{left:626.666667pt;}
.x32_c00449{left:627.626667pt;}
.x3f_c00449{left:629.706667pt;}
.x8f_c00449{left:633.333333pt;}
.x61_c00449{left:634.666667pt;}
.xf_c00449{left:636.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_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_c6e616d036f87a1684a9c4f6.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mce_c00450{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.mc5_c00450{transform:matrix(0.335294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335294,0.000000,0.000000,0.250000,0,0);}
.mac_c00450{transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);}
.m73_c00450{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m80_c00450{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mcd_c00450{transform:matrix(0.380368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380368,0.000000,0.000000,0.250000,0,0);}
.m43_c00450{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mab_c00450{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.mad_c00450{transform:matrix(0.387653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387653,0.000000,0.000000,0.250000,0,0);}
.m51_c00450{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m48_c00450{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m6c_c00450{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m7b_c00450{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m84_c00450{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m5c_c00450{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m70_c00450{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m37_c00450{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m17_c00450{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.ma8_c00450{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.md0_c00450{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.m6e_c00450{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m8e_c00450{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.ma2_c00450{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m9e_c00450{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.ma7_c00450{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.mc9_c00450{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m7a_c00450{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m9f_c00450{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.mc8_c00450{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m18_c00450{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m61_c00450{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.ma6_c00450{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.maa_c00450{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m53_c00450{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m46_c00450{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m5d_c00450{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m65_c00450{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m94_c00450{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m89_c00450{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m35_c00450{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m2a_c00450{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m19_c00450{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.mbb_c00450{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m9a_c00450{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m22_c00450{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m8_c00450{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.m81_c00450{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m86_c00450{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m2b_c00450{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mcf_c00450{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m3f_c00450{transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);}
.m1c_c00450{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m88_c00450{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m90_c00450{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mb1_c00450{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.mb6_c00450{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m96_c00450{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m29_c00450{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m59_c00450{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.ma5_c00450{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);}
.mb2_c00450{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.maf_c00450{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m82_c00450{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m30_c00450{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m7d_c00450{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m5f_c00450{transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);}
.m92_c00450{transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);}
.m1_c00450{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m9_c00450{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m10_c00450{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m6f_c00450{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.m83_c00450{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.mb_c00450{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m33_c00450{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m39_c00450{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.ma3_c00450{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m77_c00450{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.mae_c00450{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.m49_c00450{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m16_c00450{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m6d_c00450{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.me_c00450{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mb5_c00450{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m44_c00450{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m1b_c00450{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.md_c00450{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m1d_c00450{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m3e_c00450{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m3c_c00450{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m6_c00450{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m26_c00450{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.m47_c00450{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m67_c00450{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m5e_c00450{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m34_c00450{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_c00450{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m5b_c00450{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m21_c00450{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m4c_c00450{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.ma9_c00450{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m57_c00450{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m9c_c00450{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m6b_c00450{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m6a_c00450{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m97_c00450{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.mc0_c00450{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m14_c00450{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m3d_c00450{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mb4_c00450{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m52_c00450{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m31_c00450{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m58_c00450{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m78_c00450{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m63_c00450{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m5_c00450{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m8b_c00450{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m99_c00450{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m23_c00450{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m4_c00450{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m1f_c00450{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m85_c00450{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m2f_c00450{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m9b_c00450{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m60_c00450{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m45_c00450{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m12_c00450{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m20_c00450{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m3a_c00450{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mca_c00450{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mbe_c00450{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.m4a_c00450{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mf_c00450{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mcc_c00450{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mc_c00450{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m79_c00450{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m76_c00450{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m24_c00450{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m8d_c00450{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.mba_c00450{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m2d_c00450{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m8c_c00450{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m9d_c00450{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mbc_c00450{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m1a_c00450{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m25_c00450{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);}
.m11_c00450{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m4f_c00450{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m87_c00450{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m50_c00450{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m4e_c00450{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.mb9_c00450{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m3_c00450{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m72_c00450{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m8a_c00450{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m7f_c00450{transform:matrix(0.574519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574519,0.000000,0.000000,0.250000,0,0);}
.m2c_c00450{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m69_c00450{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.mbf_c00450{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m95_c00450{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mc2_c00450{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m56_c00450{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mb0_c00450{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m74_c00450{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m40_c00450{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m2_c00450{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m4d_c00450{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m68_c00450{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.m66_c00450{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.m93_c00450{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m91_c00450{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.m27_c00450{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_c00450{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m64_c00450{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.mc1_c00450{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.ma1_c00450{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m71_c00450{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.ma_c00450{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m5a_c00450{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m42_c00450{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);}
.m32_c00450{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m13_c00450{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mbd_c00450{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m0_c00450{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m75_c00450{transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);}
.m7e_c00450{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m7c_c00450{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m4b_c00450{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m3b_c00450{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m98_c00450{transform:matrix(0.685096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685096,0.000000,0.000000,0.250000,0,0);}
.m62_c00450{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mc3_c00450{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.mb8_c00450{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mcb_c00450{transform:matrix(0.711029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.711029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.711029,0.000000,0.000000,0.250000,0,0);}
.m2e_c00450{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m55_c00450{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m28_c00450{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.mc6_c00450{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m54_c00450{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.ma0_c00450{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m1e_c00450{transform:matrix(0.741186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741186,0.000000,0.000000,0.250000,0,0);}
.m7_c00450{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m36_c00450{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mc4_c00450{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.ma4_c00450{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mb7_c00450{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.m15_c00450{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mb3_c00450{transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);}
.mc7_c00450{transform:matrix(0.806891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806891,0.000000,0.000000,0.250000,0,0);}
.m38_c00450{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.md1_c00450{transform:matrix(1.753788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.753788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.753788,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:-16.889280px;}
.ws1_c00450{word-spacing:-6.184625px;}
.ws2_c00450{word-spacing:-4.228080px;}
.ws3_c00450{word-spacing:0.000000px;}
._0_c00450{width:5.706053px;}
.fc0_c00450{color:transparent;}
.fs7_c00450{font-size:11.880000px;}
.fs2_c00450{font-size:18.720000px;}
.fs0_c00450{font-size:20.400000px;}
.fs5_c00450{font-size:25.500000px;}
.fs1_c00450{font-size:28.920000px;}
.fs4_c00450{font-size:32.340000px;}
.fs3_c00450{font-size:35.700000px;}
.fs6_c00450{font-size:39.120000px;}
.y0_c00450{bottom:0.000000px;}
.yd7_c00450{bottom:250.905000px;}
.yd6_c00450{bottom:251.745000px;}
.yda_c00450{bottom:252.180000px;}
.ydc_c00450{bottom:252.825000px;}
.yd8_c00450{bottom:253.050000px;}
.ydb_c00450{bottom:253.245000px;}
.yd5_c00450{bottom:253.470000px;}
.yd4_c00450{bottom:253.905000px;}
.ydd_c00450{bottom:254.130000px;}
.yde_c00450{bottom:254.775000px;}
.yd9_c00450{bottom:255.405000px;}
.yce_c00450{bottom:271.245000px;}
.yd1_c00450{bottom:271.470000px;}
.yd2_c00450{bottom:272.745000px;}
.yd0_c00450{bottom:273.405000px;}
.ycf_c00450{bottom:273.630000px;}
.yd3_c00450{bottom:274.905000px;}
.ycb_c00450{bottom:290.745000px;}
.ycc_c00450{bottom:292.245000px;}
.yc9_c00450{bottom:292.905000px;}
.yca_c00450{bottom:293.130000px;}
.ycd_c00450{bottom:294.405000px;}
.yc5_c00450{bottom:310.470000px;}
.yc4_c00450{bottom:311.745000px;}
.yc6_c00450{bottom:312.630000px;}
.yc7_c00450{bottom:313.470000px;}
.yc3_c00450{bottom:313.905000px;}
.yc8_c00450{bottom:314.130000px;}
.ybd_c00450{bottom:331.245000px;}
.ybf_c00450{bottom:332.130000px;}
.yc0_c00450{bottom:332.970000px;}
.ybe_c00450{bottom:333.405000px;}
.yc1_c00450{bottom:333.630000px;}
.yc2_c00450{bottom:334.470000px;}
.ybb_c00450{bottom:350.745000px;}
.yb9_c00450{bottom:351.630000px;}
.yba_c00450{bottom:352.470000px;}
.yb8_c00450{bottom:352.905000px;}
.ybc_c00450{bottom:353.130000px;}
.yb7_c00450{bottom:368.970000px;}
.yb4_c00450{bottom:370.245000px;}
.yb2_c00450{bottom:371.325000px;}
.yb6_c00450{bottom:372.405000px;}
.yb3_c00450{bottom:372.630000px;}
.yb5_c00450{bottom:373.470000px;}
.yaa_c00450{bottom:389.745000px;}
.yae_c00450{bottom:390.180000px;}
.yb0_c00450{bottom:390.630000px;}
.yb1_c00450{bottom:391.050000px;}
.yad_c00450{bottom:391.245000px;}
.yab_c00450{bottom:391.470000px;}
.yaf_c00450{bottom:391.905000px;}
.yac_c00450{bottom:393.405000px;}
.ya8_c00450{bottom:409.245000px;}
.ya9_c00450{bottom:411.405000px;}
.ya5_c00450{bottom:430.245000px;}
.ya7_c00450{bottom:430.905000px;}
.ya6_c00450{bottom:431.130000px;}
.ya4_c00450{bottom:432.405000px;}
.ya1_c00450{bottom:449.745000px;}
.ya3_c00450{bottom:450.405000px;}
.ya0_c00450{bottom:450.630000px;}
.y9f_c00450{bottom:450.825000px;}
.ya2_c00450{bottom:451.905000px;}
.y9e_c00450{bottom:467.745000px;}
.y9b_c00450{bottom:469.245000px;}
.y9c_c00450{bottom:470.130000px;}
.y9d_c00450{bottom:470.970000px;}
.y99_c00450{bottom:471.405000px;}
.y9a_c00450{bottom:472.470000px;}
.y95_c00450{bottom:488.745000px;}
.y97_c00450{bottom:489.630000px;}
.y96_c00450{bottom:490.470000px;}
.y98_c00450{bottom:490.905000px;}
.y93_c00450{bottom:508.245000px;}
.y92_c00450{bottom:510.405000px;}
.y94_c00450{bottom:510.630000px;}
.y8c_c00450{bottom:526.905000px;}
.y8e_c00450{bottom:527.745000px;}
.y8d_c00450{bottom:529.905000px;}
.y8f_c00450{bottom:530.130000px;}
.y90_c00450{bottom:530.970000px;}
.y91_c00450{bottom:531.405000px;}
.y8a_c00450{bottom:548.745000px;}
.y88_c00450{bottom:549.405000px;}
.y8b_c00450{bottom:549.630000px;}
.y89_c00450{bottom:550.905000px;}
.y86_c00450{bottom:568.245000px;}
.y84_c00450{bottom:568.905000px;}
.y85_c00450{bottom:569.130000px;}
.y87_c00450{bottom:569.970000px;}
.y83_c00450{bottom:570.405000px;}
.y80_c00450{bottom:585.405000px;}
.y82_c00450{bottom:586.245000px;}
.y7f_c00450{bottom:587.745000px;}
.y81_c00450{bottom:589.470000px;}
.y7e_c00450{bottom:589.905000px;}
.y7a_c00450{bottom:604.905000px;}
.y7b_c00450{bottom:607.245000px;}
.y79_c00450{bottom:608.130000px;}
.y78_c00450{bottom:609.405000px;}
.y7c_c00450{bottom:609.630000px;}
.y7d_c00450{bottom:610.470000px;}
.y77_c00450{bottom:626.745000px;}
.y76_c00450{bottom:627.630000px;}
.y74_c00450{bottom:627.825000px;}
.y75_c00450{bottom:628.905000px;}
.y6e_c00450{bottom:646.245000px;}
.y70_c00450{bottom:647.325000px;}
.y72_c00450{bottom:647.745000px;}
.y6f_c00450{bottom:648.405000px;}
.y73_c00450{bottom:649.470000px;}
.y71_c00450{bottom:649.905000px;}
.y6a_c00450{bottom:665.745000px;}
.y6d_c00450{bottom:667.245000px;}
.y69_c00450{bottom:667.905000px;}
.y6b_c00450{bottom:668.130000px;}
.y6c_c00450{bottom:669.405000px;}
.y67_c00450{bottom:685.245000px;}
.y64_c00450{bottom:686.745000px;}
.y65_c00450{bottom:687.630000px;}
.y62_c00450{bottom:687.825000px;}
.y63_c00450{bottom:688.470000px;}
.y61_c00450{bottom:688.905000px;}
.y68_c00450{bottom:689.130000px;}
.y66_c00450{bottom:689.970000px;}
.y60_c00450{bottom:705.825000px;}
.y5c_c00450{bottom:706.245000px;}
.y5f_c00450{bottom:707.970000px;}
.y5d_c00450{bottom:708.405000px;}
.y5e_c00450{bottom:709.470000px;}
.y59_c00450{bottom:725.745000px;}
.y5a_c00450{bottom:727.905000px;}
.y5b_c00450{bottom:728.130000px;}
.y56_c00450{bottom:745.245000px;}
.y58_c00450{bottom:746.970000px;}
.y54_c00450{bottom:747.405000px;}
.y55_c00450{bottom:747.630000px;}
.y57_c00450{bottom:748.470000px;}
.y4f_c00450{bottom:763.905000px;}
.y51_c00450{bottom:764.745000px;}
.y50_c00450{bottom:765.825000px;}
.y53_c00450{bottom:766.245000px;}
.y4e_c00450{bottom:766.905000px;}
.y52_c00450{bottom:767.325000px;}
.y4a_c00450{bottom:784.245000px;}
.y49_c00450{bottom:786.405000px;}
.y4c_c00450{bottom:786.630000px;}
.y4b_c00450{bottom:787.470000px;}
.y4d_c00450{bottom:787.905000px;}
.y48_c00450{bottom:805.245000px;}
.y45_c00450{bottom:805.905000px;}
.y46_c00450{bottom:806.130000px;}
.y47_c00450{bottom:807.405000px;}
.y42_c00450{bottom:822.405000px;}
.y3f_c00450{bottom:824.325000px;}
.y43_c00450{bottom:824.745000px;}
.y41_c00450{bottom:825.405000px;}
.y44_c00450{bottom:825.825000px;}
.y40_c00450{bottom:826.905000px;}
.y3e_c00450{bottom:841.905000px;}
.y3b_c00450{bottom:844.245000px;}
.y3d_c00450{bottom:845.130000px;}
.y3a_c00450{bottom:846.405000px;}
.y3c_c00450{bottom:847.470000px;}
.y39_c00450{bottom:863.745000px;}
.y38_c00450{bottom:864.630000px;}
.y37_c00450{bottom:865.905000px;}
.y35_c00450{bottom:882.825000px;}
.y36_c00450{bottom:884.970000px;}
.y34_c00450{bottom:885.405000px;}
.y2f_c00450{bottom:902.745000px;}
.y32_c00450{bottom:904.245000px;}
.y2e_c00450{bottom:904.905000px;}
.y31_c00450{bottom:905.130000px;}
.y33_c00450{bottom:905.325000px;}
.y30_c00450{bottom:906.405000px;}
.y29_c00450{bottom:921.405000px;}
.y2a_c00450{bottom:922.245000px;}
.y2c_c00450{bottom:923.745000px;}
.y28_c00450{bottom:924.405000px;}
.y2d_c00450{bottom:925.470000px;}
.y2b_c00450{bottom:925.905000px;}
.y26_c00450{bottom:940.905000px;}
.y22_c00450{bottom:941.745000px;}
.y23_c00450{bottom:942.825000px;}
.y27_c00450{bottom:943.245000px;}
.y24_c00450{bottom:943.905000px;}
.y25_c00450{bottom:945.405000px;}
.y1e_c00450{bottom:962.745000px;}
.y1c_c00450{bottom:963.405000px;}
.y1f_c00450{bottom:963.630000px;}
.y20_c00450{bottom:963.825000px;}
.y21_c00450{bottom:964.470000px;}
.y1d_c00450{bottom:964.905000px;}
.y1b_c00450{bottom:983.970000px;}
.y1a_c00450{bottom:984.405000px;}
.y19_c00450{bottom:1000.905000px;}
.y17_c00450{bottom:1001.745000px;}
.y16_c00450{bottom:1002.630000px;}
.y14_c00450{bottom:1003.905000px;}
.y18_c00450{bottom:1004.130000px;}
.y15_c00450{bottom:1004.970000px;}
.y10_c00450{bottom:1021.245000px;}
.y12_c00450{bottom:1022.130000px;}
.y11_c00450{bottom:1023.405000px;}
.y13_c00450{bottom:1024.470000px;}
.ye_c00450{bottom:1040.745000px;}
.yf_c00450{bottom:1041.825000px;}
.yb_c00450{bottom:1042.905000px;}
.yd_c00450{bottom:1043.130000px;}
.yc_c00450{bottom:1043.970000px;}
.y8_c00450{bottom:1059.825000px;}
.ya_c00450{bottom:1061.325000px;}
.y5_c00450{bottom:1061.745000px;}
.y3_c00450{bottom:1062.405000px;}
.y4_c00450{bottom:1062.630000px;}
.y6_c00450{bottom:1062.825000px;}
.y7_c00450{bottom:1063.470000px;}
.y9_c00450{bottom:1063.905000px;}
.y2_c00450{bottom:1099.905000px;}
.y1_c00450{bottom:1100.550000px;}
.h8_c00450{height:14.612168px;}
.h3_c00450{height:23.025234px;}
.h1_c00450{height:25.091602px;}
.h6_c00450{height:31.364502px;}
.h2_c00450{height:35.571035px;}
.h5_c00450{height:39.777568px;}
.h4_c00450{height:43.910303px;}
.h7_c00450{height:48.116836px;}
.h0_c00450{height:1335.000000px;}
.w0_c00450{width:880.500000px;}
.x0_c00450{left:0.000000px;}
.x3_c00450{left:151.920000px;}
.x90_c00450{left:153.000000px;}
.xe3_c00450{left:154.500000px;}
.x111_c00450{left:156.000000px;}
.x11e_c00450{left:157.080000px;}
.x39_c00450{left:166.500000px;}
.x66_c00450{left:168.420000px;}
.xd3_c00450{left:169.500000px;}
.x108_c00450{left:171.000000px;}
.x117_c00450{left:175.500000px;}
.x83_c00450{left:178.500000px;}
.x8b_c00450{left:180.420000px;}
.x38_c00450{left:182.580000px;}
.x73_c00450{left:186.000000px;}
.x5a_c00450{left:187.080000px;}
.xbd_c00450{left:188.580000px;}
.x12_c00450{left:190.080000px;}
.xae_c00450{left:192.420000px;}
.x67_c00450{left:195.000000px;}
.x2c_c00450{left:198.000000px;}
.x3a_c00450{left:199.500000px;}
.x10d_c00450{left:201.000000px;}
.x4_c00450{left:202.080000px;}
.xa5_c00450{left:204.420000px;}
.x5b_c00450{left:205.920000px;}
.xb9_c00450{left:207.420000px;}
.xbe_c00450{left:208.920000px;}
.x4e_c00450{left:211.500000px;}
.xf6_c00450{left:213.000000px;}
.x9f_c00450{left:214.500000px;}
.x1e_c00450{left:217.500000px;}
.x5_c00450{left:222.420000px;}
.x45_c00450{left:223.500000px;}
.x121_c00450{left:225.000000px;}
.xef_c00450{left:226.920000px;}
.x7c_c00450{left:228.000000px;}
.xdb_c00450{left:229.920000px;}
.xe9_c00450{left:231.000000px;}
.x4f_c00450{left:232.500000px;}
.x5c_c00450{left:234.420000px;}
.x91_c00450{left:235.500000px;}
.x3b_c00450{left:236.580000px;}
.xd4_c00450{left:238.920000px;}
.xa6_c00450{left:240.000000px;}
.x84_c00450{left:241.500000px;}
.xaf_c00450{left:244.920000px;}
.xc6_c00450{left:246.000000px;}
.x7d_c00450{left:247.080000px;}
.x98_c00450{left:249.420000px;}
.x6_c00450{left:250.500000px;}
.xcc_c00450{left:252.000000px;}
.x2d_c00450{left:255.000000px;}
.x1f_c00450{left:256.920000px;}
.xc7_c00450{left:258.000000px;}
.x13_c00450{left:259.500000px;}
.x109_c00450{left:262.500000px;}
.xa7_c00450{left:266.580000px;}
.x68_c00450{left:271.080000px;}
.xb0_c00450{left:273.000000px;}
.x105_c00450{left:274.920000px;}
.x92_c00450{left:276.000000px;}
.x50_c00450{left:277.500000px;}
.x20_c00450{left:279.000000px;}
.x14_c00450{left:280.500000px;}
.x11d_c00450{left:282.420000px;}
.x74_c00450{left:283.920000px;}
.x2e_c00450{left:286.500000px;}
.x112_c00450{left:288.000000px;}
.x7_c00450{left:289.500000px;}
.x69_c00450{left:291.420000px;}
.x7e_c00450{left:294.420000px;}
.x5d_c00450{left:295.500000px;}
.xa8_c00450{left:296.580000px;}
.xdc_c00450{left:298.500000px;}
.x11f_c00450{left:300.000000px;}
.xf7_c00450{left:301.920000px;}
.xfb_c00450{left:303.420000px;}
.x10e_c00450{left:304.500000px;}
.xea_c00450{left:306.000000px;}
.xcd_c00450{left:307.500000px;}
.x6a_c00450{left:309.000000px;}
.x106_c00450{left:312.000000px;}
.x46_c00450{left:313.500000px;}
.xb1_c00450{left:314.580000px;}
.xa9_c00450{left:316.920000px;}
.x2f_c00450{left:318.420000px;}
.x8_c00450{left:319.500000px;}
.x3c_c00450{left:321.000000px;}
.xd5_c00450{left:322.500000px;}
.x21_c00450{left:325.500000px;}
.x6b_c00450{left:326.580000px;}
.x15_c00450{left:328.500000px;}
.x107_c00450{left:330.420000px;}
.x93_c00450{left:331.920000px;}
.x99_c00450{left:333.000000px;}
.x9_c00450{left:334.500000px;}
.x5e_c00450{left:337.920000px;}
.xd6_c00450{left:339.420000px;}
.xbf_c00450{left:340.500000px;}
.xaa_c00450{left:342.420000px;}
.x75_c00450{left:343.500000px;}
.xc8_c00450{left:345.000000px;}
.x3d_c00450{left:346.500000px;}
.xe4_c00450{left:347.580000px;}
.x16_c00450{left:349.500000px;}
.x51_c00450{left:351.420000px;}
.xb2_c00450{left:354.000000px;}
.xdd_c00450{left:355.080000px;}
.x22_c00450{left:357.000000px;}
.xce_c00450{left:358.080000px;}
.x6c_c00450{left:360.000000px;}
.xeb_c00450{left:361.920000px;}
.x47_c00450{left:363.000000px;}
.x5f_c00450{left:364.500000px;}
.x76_c00450{left:366.420000px;}
.x30_c00450{left:369.000000px;}
.xf0_c00450{left:370.500000px;}
.x115_c00450{left:372.000000px;}
.xa_c00450{left:373.500000px;}
.xde_c00450{left:375.420000px;}
.x85_c00450{left:376.500000px;}
.x52_c00450{left:379.500000px;}
.xb3_c00450{left:382.500000px;}
.xfc_c00450{left:383.580000px;}
.x3e_c00450{left:385.080000px;}
.xd7_c00450{left:387.000000px;}
.x86_c00450{left:391.920000px;}
.x10f_c00450{left:393.000000px;}
.x23_c00450{left:394.500000px;}
.x17_c00450{left:395.580000px;}
.xe5_c00450{left:397.500000px;}
.x8c_c00450{left:398.580000px;}
.xc0_c00450{left:400.920000px;}
.x94_c00450{left:402.420000px;}
.xdf_c00450{left:403.500000px;}
.x122_c00450{left:405.000000px;}
.x1_c00450{left:406.500000px;}
.x6d_c00450{left:408.000000px;}
.x118_c00450{left:409.500000px;}
.x24_c00450{left:411.000000px;}
.xba_c00450{left:414.000000px;}
.x3f_c00450{left:415.500000px;}
.xf1_c00450{left:418.500000px;}
.x48_c00450{left:420.420000px;}
.xd8_c00450{left:421.500000px;}
.xb_c00450{left:426.000000px;}
.x53_c00450{left:427.080000px;}
.xfd_c00450{left:431.580000px;}
.xb4_c00450{left:433.500000px;}
.x31_c00450{left:435.420000px;}
.x120_c00450{left:436.500000px;}
.xa0_c00450{left:437.580000px;}
.xf2_c00450{left:439.500000px;}
.xd9_c00450{left:441.000000px;}
.x18_c00450{left:442.500000px;}
.x77_c00450{left:444.000000px;}
.x54_c00450{left:445.920000px;}
.x60_c00450{left:447.000000px;}
.x9a_c00450{left:448.920000px;}
.x119_c00450{left:453.420000px;}
.xc_c00450{left:454.500000px;}
.xc1_c00450{left:456.000000px;}
.x7f_c00450{left:457.080000px;}
.x101_c00450{left:459.420000px;}
.xcf_c00450{left:461.580000px;}
.xbb_c00450{left:463.920000px;}
.x123_c00450{left:465.420000px;}
.x6e_c00450{left:468.000000px;}
.x110_c00450{left:469.080000px;}
.xec_c00450{left:470.580000px;}
.x87_c00450{left:472.920000px;}
.x55_c00450{left:474.000000px;}
.xf8_c00450{left:475.920000px;}
.x9b_c00450{left:477.420000px;}
.x19_c00450{left:478.920000px;}
.x78_c00450{left:480.420000px;}
.x95_c00450{left:483.000000px;}
.xf3_c00450{left:484.500000px;}
.xab_c00450{left:486.000000px;}
.x25_c00450{left:487.500000px;}
.x124_c00450{left:489.000000px;}
.xa1_c00450{left:493.080000px;}
.x32_c00450{left:496.500000px;}
.xc2_c00450{left:499.920000px;}
.x6f_c00450{left:502.500000px;}
.x10a_c00450{left:505.500000px;}
.x40_c00450{left:507.420000px;}
.xb5_c00450{left:510.000000px;}
.x56_c00450{left:511.500000px;}
.xfe_c00450{left:513.000000px;}
.x61_c00450{left:514.080000px;}
.x8d_c00450{left:516.000000px;}
.xd_c00450{left:517.920000px;}
.x80_c00450{left:520.500000px;}
.x49_c00450{left:523.500000px;}
.x33_c00450{left:525.420000px;}
.x96_c00450{left:526.920000px;}
.x113_c00450{left:528.000000px;}
.xb6_c00450{left:531.420000px;}
.x62_c00450{left:532.500000px;}
.xe6_c00450{left:536.580000px;}
.xf9_c00450{left:540.000000px;}
.x102_c00450{left:541.500000px;}
.x26_c00450{left:543.420000px;}
.xa2_c00450{left:544.920000px;}
.x63_c00450{left:546.420000px;}
.x1a_c00450{left:547.500000px;}
.xe0_c00450{left:548.580000px;}
.x34_c00450{left:550.080000px;}
.xd0_c00450{left:553.500000px;}
.x70_c00450{left:555.000000px;}
.xb7_c00450{left:559.080000px;}
.x4a_c00450{left:561.420000px;}
.xe_c00450{left:562.500000px;}
.x41_c00450{left:564.420000px;}
.x57_c00450{left:567.420000px;}
.xc3_c00450{left:568.500000px;}
.xe7_c00450{left:570.420000px;}
.xa3_c00450{left:571.500000px;}
.x79_c00450{left:574.500000px;}
.xfa_c00450{left:575.580000px;}
.x71_c00450{left:577.920000px;}
.x11a_c00450{left:579.000000px;}
.xe1_c00450{left:580.080000px;}
.x35_c00450{left:582.000000px;}
.x88_c00450{left:583.500000px;}
.xbc_c00450{left:585.420000px;}
.x97_c00450{left:588.420000px;}
.x9c_c00450{left:589.500000px;}
.x4b_c00450{left:591.000000px;}
.x27_c00450{left:592.920000px;}
.xf_c00450{left:597.000000px;}
.x89_c00450{left:598.920000px;}
.x1b_c00450{left:600.000000px;}
.x42_c00450{left:601.500000px;}
.xda_c00450{left:603.000000px;}
.x72_c00450{left:604.920000px;}
.xa4_c00450{left:606.420000px;}
.xd1_c00450{left:607.920000px;}
.x36_c00450{left:609.420000px;}
.xc4_c00450{left:612.000000px;}
.x7a_c00450{left:613.500000px;}
.x10_c00450{left:614.580000px;}
.x114_c00450{left:618.000000px;}
.xed_c00450{left:619.500000px;}
.xff_c00450{left:620.580000px;}
.x81_c00450{left:624.420000px;}
.x11b_c00450{left:625.500000px;}
.x58_c00450{left:627.420000px;}
.xc9_c00450{left:628.500000px;}
.x28_c00450{left:630.420000px;}
.xac_c00450{left:631.500000px;}
.x9d_c00450{left:633.000000px;}
.xb8_c00450{left:634.920000px;}
.x10b_c00450{left:639.000000px;}
.x4c_c00450{left:640.080000px;}
.x1c_c00450{left:641.580000px;}
.x43_c00450{left:643.500000px;}
.x37_c00450{left:646.920000px;}
.x116_c00450{left:648.000000px;}
.x7b_c00450{left:649.500000px;}
.x100_c00450{left:651.420000px;}
.x29_c00450{left:656.580000px;}
.xe2_c00450{left:658.500000px;}
.x4d_c00450{left:660.420000px;}
.x11_c00450{left:661.920000px;}
.x64_c00450{left:663.000000px;}
.x8e_c00450{left:666.420000px;}
.xc5_c00450{left:667.920000px;}
.xca_c00450{left:669.000000px;}
.xd2_c00450{left:670.920000px;}
.x8a_c00450{left:672.000000px;}
.x1d_c00450{left:675.000000px;}
.x10c_c00450{left:676.080000px;}
.x103_c00450{left:682.500000px;}
.x59_c00450{left:686.580000px;}
.x2a_c00450{left:688.080000px;}
.xf4_c00450{left:691.920000px;}
.x8f_c00450{left:694.080000px;}
.x11c_c00450{left:696.000000px;}
.x104_c00450{left:697.500000px;}
.xcb_c00450{left:699.000000px;}
.x125_c00450{left:700.500000px;}
.x2_c00450{left:703.500000px;}
.x2b_c00450{left:706.920000px;}
.x9e_c00450{left:708.420000px;}
.xee_c00450{left:709.920000px;}
.xad_c00450{left:712.080000px;}
.x44_c00450{left:714.000000px;}
.x65_c00450{left:715.500000px;}
.x82_c00450{left:716.580000px;}
.x126_c00450{left:720.000000px;}
.xf5_c00450{left:721.500000px;}
.xe8_c00450{left:723.000000px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.ls0_c00450{letter-spacing:0.000000pt;}
.ws0_c00450{word-spacing:-15.012693pt;}
.ws1_c00450{word-spacing:-5.497444pt;}
.ws2_c00450{word-spacing:-3.758293pt;}
.ws3_c00450{word-spacing:0.000000pt;}
._0_c00450{width:5.072047pt;}
.fs7_c00450{font-size:10.560000pt;}
.fs2_c00450{font-size:16.640000pt;}
.fs0_c00450{font-size:18.133333pt;}
.fs5_c00450{font-size:22.666667pt;}
.fs1_c00450{font-size:25.706667pt;}
.fs4_c00450{font-size:28.746667pt;}
.fs3_c00450{font-size:31.733333pt;}
.fs6_c00450{font-size:34.773333pt;}
.y0_c00450{bottom:0.000000pt;}
.yd7_c00450{bottom:223.026667pt;}
.yd6_c00450{bottom:223.773333pt;}
.yda_c00450{bottom:224.160000pt;}
.ydc_c00450{bottom:224.733333pt;}
.yd8_c00450{bottom:224.933333pt;}
.ydb_c00450{bottom:225.106667pt;}
.yd5_c00450{bottom:225.306667pt;}
.yd4_c00450{bottom:225.693333pt;}
.ydd_c00450{bottom:225.893333pt;}
.yde_c00450{bottom:226.466667pt;}
.yd9_c00450{bottom:227.026667pt;}
.yce_c00450{bottom:241.106667pt;}
.yd1_c00450{bottom:241.306667pt;}
.yd2_c00450{bottom:242.440000pt;}
.yd0_c00450{bottom:243.026667pt;}
.ycf_c00450{bottom:243.226667pt;}
.yd3_c00450{bottom:244.360000pt;}
.ycb_c00450{bottom:258.440000pt;}
.ycc_c00450{bottom:259.773333pt;}
.yc9_c00450{bottom:260.360000pt;}
.yca_c00450{bottom:260.560000pt;}
.ycd_c00450{bottom:261.693333pt;}
.yc5_c00450{bottom:275.973333pt;}
.yc4_c00450{bottom:277.106667pt;}
.yc6_c00450{bottom:277.893333pt;}
.yc7_c00450{bottom:278.640000pt;}
.yc3_c00450{bottom:279.026667pt;}
.yc8_c00450{bottom:279.226667pt;}
.ybd_c00450{bottom:294.440000pt;}
.ybf_c00450{bottom:295.226667pt;}
.yc0_c00450{bottom:295.973333pt;}
.ybe_c00450{bottom:296.360000pt;}
.yc1_c00450{bottom:296.560000pt;}
.yc2_c00450{bottom:297.306667pt;}
.ybb_c00450{bottom:311.773333pt;}
.yb9_c00450{bottom:312.560000pt;}
.yba_c00450{bottom:313.306667pt;}
.yb8_c00450{bottom:313.693333pt;}
.ybc_c00450{bottom:313.893333pt;}
.yb7_c00450{bottom:327.973333pt;}
.yb4_c00450{bottom:329.106667pt;}
.yb2_c00450{bottom:330.066667pt;}
.yb6_c00450{bottom:331.026667pt;}
.yb3_c00450{bottom:331.226667pt;}
.yb5_c00450{bottom:331.973333pt;}
.yaa_c00450{bottom:346.440000pt;}
.yae_c00450{bottom:346.826667pt;}
.yb0_c00450{bottom:347.226667pt;}
.yb1_c00450{bottom:347.600000pt;}
.yad_c00450{bottom:347.773333pt;}
.yab_c00450{bottom:347.973333pt;}
.yaf_c00450{bottom:348.360000pt;}
.yac_c00450{bottom:349.693333pt;}
.ya8_c00450{bottom:363.773333pt;}
.ya9_c00450{bottom:365.693333pt;}
.ya5_c00450{bottom:382.440000pt;}
.ya7_c00450{bottom:383.026667pt;}
.ya6_c00450{bottom:383.226667pt;}
.ya4_c00450{bottom:384.360000pt;}
.ya1_c00450{bottom:399.773333pt;}
.ya3_c00450{bottom:400.360000pt;}
.ya0_c00450{bottom:400.560000pt;}
.y9f_c00450{bottom:400.733333pt;}
.ya2_c00450{bottom:401.693333pt;}
.y9e_c00450{bottom:415.773333pt;}
.y9b_c00450{bottom:417.106667pt;}
.y9c_c00450{bottom:417.893333pt;}
.y9d_c00450{bottom:418.640000pt;}
.y99_c00450{bottom:419.026667pt;}
.y9a_c00450{bottom:419.973333pt;}
.y95_c00450{bottom:434.440000pt;}
.y97_c00450{bottom:435.226667pt;}
.y96_c00450{bottom:435.973333pt;}
.y98_c00450{bottom:436.360000pt;}
.y93_c00450{bottom:451.773333pt;}
.y92_c00450{bottom:453.693333pt;}
.y94_c00450{bottom:453.893333pt;}
.y8c_c00450{bottom:468.360000pt;}
.y8e_c00450{bottom:469.106667pt;}
.y8d_c00450{bottom:471.026667pt;}
.y8f_c00450{bottom:471.226667pt;}
.y90_c00450{bottom:471.973333pt;}
.y91_c00450{bottom:472.360000pt;}
.y8a_c00450{bottom:487.773333pt;}
.y88_c00450{bottom:488.360000pt;}
.y8b_c00450{bottom:488.560000pt;}
.y89_c00450{bottom:489.693333pt;}
.y86_c00450{bottom:505.106667pt;}
.y84_c00450{bottom:505.693333pt;}
.y85_c00450{bottom:505.893333pt;}
.y87_c00450{bottom:506.640000pt;}
.y83_c00450{bottom:507.026667pt;}
.y80_c00450{bottom:520.360000pt;}
.y82_c00450{bottom:521.106667pt;}
.y7f_c00450{bottom:522.440000pt;}
.y81_c00450{bottom:523.973333pt;}
.y7e_c00450{bottom:524.360000pt;}
.y7a_c00450{bottom:537.693333pt;}
.y7b_c00450{bottom:539.773333pt;}
.y79_c00450{bottom:540.560000pt;}
.y78_c00450{bottom:541.693333pt;}
.y7c_c00450{bottom:541.893333pt;}
.y7d_c00450{bottom:542.640000pt;}
.y77_c00450{bottom:557.106667pt;}
.y76_c00450{bottom:557.893333pt;}
.y74_c00450{bottom:558.066667pt;}
.y75_c00450{bottom:559.026667pt;}
.y6e_c00450{bottom:574.440000pt;}
.y70_c00450{bottom:575.400000pt;}
.y72_c00450{bottom:575.773333pt;}
.y6f_c00450{bottom:576.360000pt;}
.y73_c00450{bottom:577.306667pt;}
.y71_c00450{bottom:577.693333pt;}
.y6a_c00450{bottom:591.773333pt;}
.y6d_c00450{bottom:593.106667pt;}
.y69_c00450{bottom:593.693333pt;}
.y6b_c00450{bottom:593.893333pt;}
.y6c_c00450{bottom:595.026667pt;}
.y67_c00450{bottom:609.106667pt;}
.y64_c00450{bottom:610.440000pt;}
.y65_c00450{bottom:611.226667pt;}
.y62_c00450{bottom:611.400000pt;}
.y63_c00450{bottom:611.973333pt;}
.y61_c00450{bottom:612.360000pt;}
.y68_c00450{bottom:612.560000pt;}
.y66_c00450{bottom:613.306667pt;}
.y60_c00450{bottom:627.400000pt;}
.y5c_c00450{bottom:627.773333pt;}
.y5f_c00450{bottom:629.306667pt;}
.y5d_c00450{bottom:629.693333pt;}
.y5e_c00450{bottom:630.640000pt;}
.y59_c00450{bottom:645.106667pt;}
.y5a_c00450{bottom:647.026667pt;}
.y5b_c00450{bottom:647.226667pt;}
.y56_c00450{bottom:662.440000pt;}
.y58_c00450{bottom:663.973333pt;}
.y54_c00450{bottom:664.360000pt;}
.y55_c00450{bottom:664.560000pt;}
.y57_c00450{bottom:665.306667pt;}
.y4f_c00450{bottom:679.026667pt;}
.y51_c00450{bottom:679.773333pt;}
.y50_c00450{bottom:680.733333pt;}
.y53_c00450{bottom:681.106667pt;}
.y4e_c00450{bottom:681.693333pt;}
.y52_c00450{bottom:682.066667pt;}
.y4a_c00450{bottom:697.106667pt;}
.y49_c00450{bottom:699.026667pt;}
.y4c_c00450{bottom:699.226667pt;}
.y4b_c00450{bottom:699.973333pt;}
.y4d_c00450{bottom:700.360000pt;}
.y48_c00450{bottom:715.773333pt;}
.y45_c00450{bottom:716.360000pt;}
.y46_c00450{bottom:716.560000pt;}
.y47_c00450{bottom:717.693333pt;}
.y42_c00450{bottom:731.026667pt;}
.y3f_c00450{bottom:732.733333pt;}
.y43_c00450{bottom:733.106667pt;}
.y41_c00450{bottom:733.693333pt;}
.y44_c00450{bottom:734.066667pt;}
.y40_c00450{bottom:735.026667pt;}
.y3e_c00450{bottom:748.360000pt;}
.y3b_c00450{bottom:750.440000pt;}
.y3d_c00450{bottom:751.226667pt;}
.y3a_c00450{bottom:752.360000pt;}
.y3c_c00450{bottom:753.306667pt;}
.y39_c00450{bottom:767.773333pt;}
.y38_c00450{bottom:768.560000pt;}
.y37_c00450{bottom:769.693333pt;}
.y35_c00450{bottom:784.733333pt;}
.y36_c00450{bottom:786.640000pt;}
.y34_c00450{bottom:787.026667pt;}
.y2f_c00450{bottom:802.440000pt;}
.y32_c00450{bottom:803.773333pt;}
.y2e_c00450{bottom:804.360000pt;}
.y31_c00450{bottom:804.560000pt;}
.y33_c00450{bottom:804.733333pt;}
.y30_c00450{bottom:805.693333pt;}
.y29_c00450{bottom:819.026667pt;}
.y2a_c00450{bottom:819.773333pt;}
.y2c_c00450{bottom:821.106667pt;}
.y28_c00450{bottom:821.693333pt;}
.y2d_c00450{bottom:822.640000pt;}
.y2b_c00450{bottom:823.026667pt;}
.y26_c00450{bottom:836.360000pt;}
.y22_c00450{bottom:837.106667pt;}
.y23_c00450{bottom:838.066667pt;}
.y27_c00450{bottom:838.440000pt;}
.y24_c00450{bottom:839.026667pt;}
.y25_c00450{bottom:840.360000pt;}
.y1e_c00450{bottom:855.773333pt;}
.y1c_c00450{bottom:856.360000pt;}
.y1f_c00450{bottom:856.560000pt;}
.y20_c00450{bottom:856.733333pt;}
.y21_c00450{bottom:857.306667pt;}
.y1d_c00450{bottom:857.693333pt;}
.y1b_c00450{bottom:874.640000pt;}
.y1a_c00450{bottom:875.026667pt;}
.y19_c00450{bottom:889.693333pt;}
.y17_c00450{bottom:890.440000pt;}
.y16_c00450{bottom:891.226667pt;}
.y14_c00450{bottom:892.360000pt;}
.y18_c00450{bottom:892.560000pt;}
.y15_c00450{bottom:893.306667pt;}
.y10_c00450{bottom:907.773333pt;}
.y12_c00450{bottom:908.560000pt;}
.y11_c00450{bottom:909.693333pt;}
.y13_c00450{bottom:910.640000pt;}
.ye_c00450{bottom:925.106667pt;}
.yf_c00450{bottom:926.066667pt;}
.yb_c00450{bottom:927.026667pt;}
.yd_c00450{bottom:927.226667pt;}
.yc_c00450{bottom:927.973333pt;}
.y8_c00450{bottom:942.066667pt;}
.ya_c00450{bottom:943.400000pt;}
.y5_c00450{bottom:943.773333pt;}
.y3_c00450{bottom:944.360000pt;}
.y4_c00450{bottom:944.560000pt;}
.y6_c00450{bottom:944.733333pt;}
.y7_c00450{bottom:945.306667pt;}
.y9_c00450{bottom:945.693333pt;}
.y2_c00450{bottom:977.693333pt;}
.y1_c00450{bottom:978.266667pt;}
.h8_c00450{height:12.988594pt;}
.h3_c00450{height:20.466875pt;}
.h1_c00450{height:22.303646pt;}
.h6_c00450{height:27.879557pt;}
.h2_c00450{height:31.618698pt;}
.h5_c00450{height:35.357839pt;}
.h4_c00450{height:39.031380pt;}
.h7_c00450{height:42.770521pt;}
.h0_c00450{height:1186.666667pt;}
.w0_c00450{width:782.666667pt;}
.x0_c00450{left:0.000000pt;}
.x3_c00450{left:135.040000pt;}
.x90_c00450{left:136.000000pt;}
.xe3_c00450{left:137.333333pt;}
.x111_c00450{left:138.666667pt;}
.x11e_c00450{left:139.626667pt;}
.x39_c00450{left:148.000000pt;}
.x66_c00450{left:149.706667pt;}
.xd3_c00450{left:150.666667pt;}
.x108_c00450{left:152.000000pt;}
.x117_c00450{left:156.000000pt;}
.x83_c00450{left:158.666667pt;}
.x8b_c00450{left:160.373333pt;}
.x38_c00450{left:162.293333pt;}
.x73_c00450{left:165.333333pt;}
.x5a_c00450{left:166.293333pt;}
.xbd_c00450{left:167.626667pt;}
.x12_c00450{left:168.960000pt;}
.xae_c00450{left:171.040000pt;}
.x67_c00450{left:173.333333pt;}
.x2c_c00450{left:176.000000pt;}
.x3a_c00450{left:177.333333pt;}
.x10d_c00450{left:178.666667pt;}
.x4_c00450{left:179.626667pt;}
.xa5_c00450{left:181.706667pt;}
.x5b_c00450{left:183.040000pt;}
.xb9_c00450{left:184.373333pt;}
.xbe_c00450{left:185.706667pt;}
.x4e_c00450{left:188.000000pt;}
.xf6_c00450{left:189.333333pt;}
.x9f_c00450{left:190.666667pt;}
.x1e_c00450{left:193.333333pt;}
.x5_c00450{left:197.706667pt;}
.x45_c00450{left:198.666667pt;}
.x121_c00450{left:200.000000pt;}
.xef_c00450{left:201.706667pt;}
.x7c_c00450{left:202.666667pt;}
.xdb_c00450{left:204.373333pt;}
.xe9_c00450{left:205.333333pt;}
.x4f_c00450{left:206.666667pt;}
.x5c_c00450{left:208.373333pt;}
.x91_c00450{left:209.333333pt;}
.x3b_c00450{left:210.293333pt;}
.xd4_c00450{left:212.373333pt;}
.xa6_c00450{left:213.333333pt;}
.x84_c00450{left:214.666667pt;}
.xaf_c00450{left:217.706667pt;}
.xc6_c00450{left:218.666667pt;}
.x7d_c00450{left:219.626667pt;}
.x98_c00450{left:221.706667pt;}
.x6_c00450{left:222.666667pt;}
.xcc_c00450{left:224.000000pt;}
.x2d_c00450{left:226.666667pt;}
.x1f_c00450{left:228.373333pt;}
.xc7_c00450{left:229.333333pt;}
.x13_c00450{left:230.666667pt;}
.x109_c00450{left:233.333333pt;}
.xa7_c00450{left:236.960000pt;}
.x68_c00450{left:240.960000pt;}
.xb0_c00450{left:242.666667pt;}
.x105_c00450{left:244.373333pt;}
.x92_c00450{left:245.333333pt;}
.x50_c00450{left:246.666667pt;}
.x20_c00450{left:248.000000pt;}
.x14_c00450{left:249.333333pt;}
.x11d_c00450{left:251.040000pt;}
.x74_c00450{left:252.373333pt;}
.x2e_c00450{left:254.666667pt;}
.x112_c00450{left:256.000000pt;}
.x7_c00450{left:257.333333pt;}
.x69_c00450{left:259.040000pt;}
.x7e_c00450{left:261.706667pt;}
.x5d_c00450{left:262.666667pt;}
.xa8_c00450{left:263.626667pt;}
.xdc_c00450{left:265.333333pt;}
.x11f_c00450{left:266.666667pt;}
.xf7_c00450{left:268.373333pt;}
.xfb_c00450{left:269.706667pt;}
.x10e_c00450{left:270.666667pt;}
.xea_c00450{left:272.000000pt;}
.xcd_c00450{left:273.333333pt;}
.x6a_c00450{left:274.666667pt;}
.x106_c00450{left:277.333333pt;}
.x46_c00450{left:278.666667pt;}
.xb1_c00450{left:279.626667pt;}
.xa9_c00450{left:281.706667pt;}
.x2f_c00450{left:283.040000pt;}
.x8_c00450{left:284.000000pt;}
.x3c_c00450{left:285.333333pt;}
.xd5_c00450{left:286.666667pt;}
.x21_c00450{left:289.333333pt;}
.x6b_c00450{left:290.293333pt;}
.x15_c00450{left:292.000000pt;}
.x107_c00450{left:293.706667pt;}
.x93_c00450{left:295.040000pt;}
.x99_c00450{left:296.000000pt;}
.x9_c00450{left:297.333333pt;}
.x5e_c00450{left:300.373333pt;}
.xd6_c00450{left:301.706667pt;}
.xbf_c00450{left:302.666667pt;}
.xaa_c00450{left:304.373333pt;}
.x75_c00450{left:305.333333pt;}
.xc8_c00450{left:306.666667pt;}
.x3d_c00450{left:308.000000pt;}
.xe4_c00450{left:308.960000pt;}
.x16_c00450{left:310.666667pt;}
.x51_c00450{left:312.373333pt;}
.xb2_c00450{left:314.666667pt;}
.xdd_c00450{left:315.626667pt;}
.x22_c00450{left:317.333333pt;}
.xce_c00450{left:318.293333pt;}
.x6c_c00450{left:320.000000pt;}
.xeb_c00450{left:321.706667pt;}
.x47_c00450{left:322.666667pt;}
.x5f_c00450{left:324.000000pt;}
.x76_c00450{left:325.706667pt;}
.x30_c00450{left:328.000000pt;}
.xf0_c00450{left:329.333333pt;}
.x115_c00450{left:330.666667pt;}
.xa_c00450{left:332.000000pt;}
.xde_c00450{left:333.706667pt;}
.x85_c00450{left:334.666667pt;}
.x52_c00450{left:337.333333pt;}
.xb3_c00450{left:340.000000pt;}
.xfc_c00450{left:340.960000pt;}
.x3e_c00450{left:342.293333pt;}
.xd7_c00450{left:344.000000pt;}
.x86_c00450{left:348.373333pt;}
.x10f_c00450{left:349.333333pt;}
.x23_c00450{left:350.666667pt;}
.x17_c00450{left:351.626667pt;}
.xe5_c00450{left:353.333333pt;}
.x8c_c00450{left:354.293333pt;}
.xc0_c00450{left:356.373333pt;}
.x94_c00450{left:357.706667pt;}
.xdf_c00450{left:358.666667pt;}
.x122_c00450{left:360.000000pt;}
.x1_c00450{left:361.333333pt;}
.x6d_c00450{left:362.666667pt;}
.x118_c00450{left:364.000000pt;}
.x24_c00450{left:365.333333pt;}
.xba_c00450{left:368.000000pt;}
.x3f_c00450{left:369.333333pt;}
.xf1_c00450{left:372.000000pt;}
.x48_c00450{left:373.706667pt;}
.xd8_c00450{left:374.666667pt;}
.xb_c00450{left:378.666667pt;}
.x53_c00450{left:379.626667pt;}
.xfd_c00450{left:383.626667pt;}
.xb4_c00450{left:385.333333pt;}
.x31_c00450{left:387.040000pt;}
.x120_c00450{left:388.000000pt;}
.xa0_c00450{left:388.960000pt;}
.xf2_c00450{left:390.666667pt;}
.xd9_c00450{left:392.000000pt;}
.x18_c00450{left:393.333333pt;}
.x77_c00450{left:394.666667pt;}
.x54_c00450{left:396.373333pt;}
.x60_c00450{left:397.333333pt;}
.x9a_c00450{left:399.040000pt;}
.x119_c00450{left:403.040000pt;}
.xc_c00450{left:404.000000pt;}
.xc1_c00450{left:405.333333pt;}
.x7f_c00450{left:406.293333pt;}
.x101_c00450{left:408.373333pt;}
.xcf_c00450{left:410.293333pt;}
.xbb_c00450{left:412.373333pt;}
.x123_c00450{left:413.706667pt;}
.x6e_c00450{left:416.000000pt;}
.x110_c00450{left:416.960000pt;}
.xec_c00450{left:418.293333pt;}
.x87_c00450{left:420.373333pt;}
.x55_c00450{left:421.333333pt;}
.xf8_c00450{left:423.040000pt;}
.x9b_c00450{left:424.373333pt;}
.x19_c00450{left:425.706667pt;}
.x78_c00450{left:427.040000pt;}
.x95_c00450{left:429.333333pt;}
.xf3_c00450{left:430.666667pt;}
.xab_c00450{left:432.000000pt;}
.x25_c00450{left:433.333333pt;}
.x124_c00450{left:434.666667pt;}
.xa1_c00450{left:438.293333pt;}
.x32_c00450{left:441.333333pt;}
.xc2_c00450{left:444.373333pt;}
.x6f_c00450{left:446.666667pt;}
.x10a_c00450{left:449.333333pt;}
.x40_c00450{left:451.040000pt;}
.xb5_c00450{left:453.333333pt;}
.x56_c00450{left:454.666667pt;}
.xfe_c00450{left:456.000000pt;}
.x61_c00450{left:456.960000pt;}
.x8d_c00450{left:458.666667pt;}
.xd_c00450{left:460.373333pt;}
.x80_c00450{left:462.666667pt;}
.x49_c00450{left:465.333333pt;}
.x33_c00450{left:467.040000pt;}
.x96_c00450{left:468.373333pt;}
.x113_c00450{left:469.333333pt;}
.xb6_c00450{left:472.373333pt;}
.x62_c00450{left:473.333333pt;}
.xe6_c00450{left:476.960000pt;}
.xf9_c00450{left:480.000000pt;}
.x102_c00450{left:481.333333pt;}
.x26_c00450{left:483.040000pt;}
.xa2_c00450{left:484.373333pt;}
.x63_c00450{left:485.706667pt;}
.x1a_c00450{left:486.666667pt;}
.xe0_c00450{left:487.626667pt;}
.x34_c00450{left:488.960000pt;}
.xd0_c00450{left:492.000000pt;}
.x70_c00450{left:493.333333pt;}
.xb7_c00450{left:496.960000pt;}
.x4a_c00450{left:499.040000pt;}
.xe_c00450{left:500.000000pt;}
.x41_c00450{left:501.706667pt;}
.x57_c00450{left:504.373333pt;}
.xc3_c00450{left:505.333333pt;}
.xe7_c00450{left:507.040000pt;}
.xa3_c00450{left:508.000000pt;}
.x79_c00450{left:510.666667pt;}
.xfa_c00450{left:511.626667pt;}
.x71_c00450{left:513.706667pt;}
.x11a_c00450{left:514.666667pt;}
.xe1_c00450{left:515.626667pt;}
.x35_c00450{left:517.333333pt;}
.x88_c00450{left:518.666667pt;}
.xbc_c00450{left:520.373333pt;}
.x97_c00450{left:523.040000pt;}
.x9c_c00450{left:524.000000pt;}
.x4b_c00450{left:525.333333pt;}
.x27_c00450{left:527.040000pt;}
.xf_c00450{left:530.666667pt;}
.x89_c00450{left:532.373333pt;}
.x1b_c00450{left:533.333333pt;}
.x42_c00450{left:534.666667pt;}
.xda_c00450{left:536.000000pt;}
.x72_c00450{left:537.706667pt;}
.xa4_c00450{left:539.040000pt;}
.xd1_c00450{left:540.373333pt;}
.x36_c00450{left:541.706667pt;}
.xc4_c00450{left:544.000000pt;}
.x7a_c00450{left:545.333333pt;}
.x10_c00450{left:546.293333pt;}
.x114_c00450{left:549.333333pt;}
.xed_c00450{left:550.666667pt;}
.xff_c00450{left:551.626667pt;}
.x81_c00450{left:555.040000pt;}
.x11b_c00450{left:556.000000pt;}
.x58_c00450{left:557.706667pt;}
.xc9_c00450{left:558.666667pt;}
.x28_c00450{left:560.373333pt;}
.xac_c00450{left:561.333333pt;}
.x9d_c00450{left:562.666667pt;}
.xb8_c00450{left:564.373333pt;}
.x10b_c00450{left:568.000000pt;}
.x4c_c00450{left:568.960000pt;}
.x1c_c00450{left:570.293333pt;}
.x43_c00450{left:572.000000pt;}
.x37_c00450{left:575.040000pt;}
.x116_c00450{left:576.000000pt;}
.x7b_c00450{left:577.333333pt;}
.x100_c00450{left:579.040000pt;}
.x29_c00450{left:583.626667pt;}
.xe2_c00450{left:585.333333pt;}
.x4d_c00450{left:587.040000pt;}
.x11_c00450{left:588.373333pt;}
.x64_c00450{left:589.333333pt;}
.x8e_c00450{left:592.373333pt;}
.xc5_c00450{left:593.706667pt;}
.xca_c00450{left:594.666667pt;}
.xd2_c00450{left:596.373333pt;}
.x8a_c00450{left:597.333333pt;}
.x1d_c00450{left:600.000000pt;}
.x10c_c00450{left:600.960000pt;}
.x103_c00450{left:606.666667pt;}
.x59_c00450{left:610.293333pt;}
.x2a_c00450{left:611.626667pt;}
.xf4_c00450{left:615.040000pt;}
.x8f_c00450{left:616.960000pt;}
.x11c_c00450{left:618.666667pt;}
.x104_c00450{left:620.000000pt;}
.xcb_c00450{left:621.333333pt;}
.x125_c00450{left:622.666667pt;}
.x2_c00450{left:625.333333pt;}
.x2b_c00450{left:628.373333pt;}
.x9e_c00450{left:629.706667pt;}
.xee_c00450{left:631.040000pt;}
.xad_c00450{left:632.960000pt;}
.x44_c00450{left:634.666667pt;}
.x65_c00450{left:636.000000pt;}
.x82_c00450{left:636.960000pt;}
.x126_c00450{left:640.000000pt;}
.xf5_c00450{left:641.333333pt;}
.xe8_c00450{left:642.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_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_7e3950b654d4213aa77b5624.woff2')format("woff");}.ff1_c00451{font-family:ff1_c00451;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md8_c00451{transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);}
.m19_c00451{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00451{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m81_c00451{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m52_c00451{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m82_c00451{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m29_c00451{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m64_c00451{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.mb3_c00451{transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);}
.m6b_c00451{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m9b_c00451{transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);}
.m7a_c00451{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m5b_c00451{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m7c_c00451{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.ma0_c00451{transform:matrix(0.398423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398423,0.000000,0.000000,0.250000,0,0);}
.m66_c00451{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m40_c00451{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.me2_c00451{transform:matrix(0.401471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401471,0.000000,0.000000,0.250000,0,0);}
.m55_c00451{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m42_c00451{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m72_c00451{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m6c_c00451{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m2d_c00451{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m75_c00451{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.ma3_c00451{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m22_c00451{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m43_c00451{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m16_c00451{transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415644,0.000000,0.000000,0.250000,0,0);}
.m59_c00451{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m30_c00451{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.ma8_c00451{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m39_c00451{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m87_c00451{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.mb6_c00451{transform:matrix(0.422794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422794,0.000000,0.000000,0.250000,0,0);}
.md_c00451{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m67_c00451{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.ma_c00451{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m11_c00451{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m5e_c00451{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m76_c00451{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m69_c00451{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m6f_c00451{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m26_c00451{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m6_c00451{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.ma9_c00451{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m18_c00451{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.mb1_c00451{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);}
.m88_c00451{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m4f_c00451{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m48_c00451{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m80_c00451{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m20_c00451{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m9e_c00451{transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);}
.m2_c00451{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m3f_c00451{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m33_c00451{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m8f_c00451{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m1_c00451{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.ma6_c00451{transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);}
.maa_c00451{transform:matrix(0.455929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455929,0.000000,0.000000,0.250000,0,0);}
.m53_c00451{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m73_c00451{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mdf_c00451{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.m6a_c00451{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m71_c00451{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.mbf_c00451{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.mcf_c00451{transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);}
.me3_c00451{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.m56_c00451{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.mb4_c00451{transform:matrix(0.471154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471154,0.000000,0.000000,0.250000,0,0);}
.m62_c00451{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m45_c00451{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.mb7_c00451{transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);}
.m7b_c00451{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mc3_c00451{transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);}
.m1f_c00451{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m3c_c00451{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m35_c00451{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mc6_c00451{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m50_c00451{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mbb_c00451{transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);}
.m91_c00451{transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);}
.m79_c00451{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m2b_c00451{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mdb_c00451{transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);}
.me1_c00451{transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);}
.m8a_c00451{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m5a_c00451{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_c00451{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m14_c00451{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m94_c00451{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m7f_c00451{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mdc_c00451{transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);}
.m61_c00451{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m9_c00451{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.md5_c00451{transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);}
.m4a_c00451{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mc2_c00451{transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);}
.m5d_c00451{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m21_c00451{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m5f_c00451{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m86_c00451{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m9a_c00451{transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);}
.m97_c00451{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.mdd_c00451{transform:matrix(0.522436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522436,0.000000,0.000000,0.250000,0,0);}
.m6e_c00451{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m17_c00451{transform:matrix(0.524583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524583,0.000000,0.000000,0.250000,0,0);}
.m27_c00451{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m90_c00451{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m63_c00451{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m57_c00451{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.md7_c00451{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.mce_c00451{transform:matrix(0.532051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532051,0.000000,0.000000,0.250000,0,0);}
.m4_c00451{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mcd_c00451{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.ma4_c00451{transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);}
.m85_c00451{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m3b_c00451{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m41_c00451{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m24_c00451{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m1d_c00451{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m5c_c00451{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m5_c00451{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m2c_c00451{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m68_c00451{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m78_c00451{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m8c_c00451{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m51_c00451{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m8b_c00451{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mae_c00451{transform:matrix(0.544872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544872,0.000000,0.000000,0.250000,0,0);}
.m1e_c00451{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m32_c00451{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m4c_c00451{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mbd_c00451{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m65_c00451{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m7_c00451{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m6d_c00451{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m9f_c00451{transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);}
.mc_c00451{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m8e_c00451{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.ma7_c00451{transform:matrix(0.557269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557269,0.000000,0.000000,0.250000,0,0);}
.m89_c00451{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m95_c00451{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m60_c00451{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);}
.m37_c00451{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mb9_c00451{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m4d_c00451{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m15_c00451{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m44_c00451{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m92_c00451{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.me_c00451{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.ma2_c00451{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m34_c00451{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m4b_c00451{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m36_c00451{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m7d_c00451{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);}
.maf_c00451{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.m2a_c00451{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mb8_c00451{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m1a_c00451{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.ma1_c00451{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m12_c00451{transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);}
.m93_c00451{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.m77_c00451{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m49_c00451{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m1c_c00451{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);}
.m31_c00451{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m28_c00451{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mac_c00451{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m4e_c00451{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m2e_c00451{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mab_c00451{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m38_c00451{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m98_c00451{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.mb5_c00451{transform:matrix(0.616987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616987,0.000000,0.000000,0.250000,0,0);}
.m3a_c00451{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.m84_c00451{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m96_c00451{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m70_c00451{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.mc8_c00451{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m3_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);}
.mf_c00451{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m9d_c00451{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m8d_c00451{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m23_c00451{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m0_c00451{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.md4_c00451{transform:matrix(0.643172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643172,0.000000,0.000000,0.250000,0,0);}
.mc4_c00451{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.m2f_c00451{transform:matrix(0.648235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648235,0.000000,0.000000,0.250000,0,0);}
.mba_c00451{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.me0_c00451{transform:matrix(0.657828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657828,0.000000,0.000000,0.250000,0,0);}
.mad_c00451{transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);}
.m25_c00451{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mb0_c00451{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m13_c00451{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.md9_c00451{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m47_c00451{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mc0_c00451{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.m9c_c00451{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.mcc_c00451{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m99_c00451{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);}
.md1_c00451{transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);}
.m10_c00451{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.md3_c00451{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.mc7_c00451{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.mbc_c00451{transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);}
.m58_c00451{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m3e_c00451{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.md0_c00451{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.md6_c00451{transform:matrix(0.741162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741162,0.000000,0.000000,0.250000,0,0);}
.mc1_c00451{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m83_c00451{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mde_c00451{transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);}
.mbe_c00451{transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);}
.m8_c00451{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m7e_c00451{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mda_c00451{transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);}
.mcb_c00451{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m3d_c00451{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mc5_c00451{transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);}
.mb_c00451{transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);}
.m74_c00451{transform:matrix(0.806891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806891,0.000000,0.000000,0.250000,0,0);}
.m54_c00451{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mca_c00451{transform:matrix(0.839207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.839207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.839207,0.000000,0.000000,0.250000,0,0);}
.md2_c00451{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mc9_c00451{transform:matrix(0.881057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.881057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.881057,0.000000,0.000000,0.250000,0,0);}
.ma5_c00451{transform:matrix(1.011013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.011013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.011013,0.000000,0.000000,0.250000,0,0);}
.mb2_c00451{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.v1_c00451{vertical-align:-6.000000px;}
.v0_c00451{vertical-align:0.000000px;}
.v2_c00451{vertical-align:6.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;}
}
.ws1_c00451{word-spacing:-3.584672px;}
.ws0_c00451{word-spacing:-3.444145px;}
.ws2_c00451{word-spacing:-0.768703px;}
.ws15_c00451{word-spacing:0.000000px;}
.ws8_c00451{word-spacing:16.594629px;}
.ws10_c00451{word-spacing:17.518243px;}
.wsf_c00451{word-spacing:32.801645px;}
.wsa_c00451{word-spacing:37.647282px;}
.wse_c00451{word-spacing:40.651310px;}
.ws4_c00451{word-spacing:42.369370px;}
.ws12_c00451{word-spacing:42.527343px;}
.wsb_c00451{word-spacing:43.123678px;}
.wsc_c00451{word-spacing:45.278742px;}
.ws11_c00451{word-spacing:52.474750px;}
.ws7_c00451{word-spacing:59.307203px;}
.ws5_c00451{word-spacing:62.015851px;}
.ws13_c00451{word-spacing:64.388073px;}
.wsd_c00451{word-spacing:69.032182px;}
.ws9_c00451{word-spacing:72.265343px;}
.ws6_c00451{word-spacing:73.041656px;}
.ws14_c00451{word-spacing:78.840534px;}
.ws3_c00451{word-spacing:79.892453px;}
._7_c00451{width:27.420821px;}
._3_c00451{width:47.604304px;}
._5_c00451{width:50.481423px;}
._6_c00451{width:53.232822px;}
._9_c00451{width:56.139066px;}
._8_c00451{width:58.283948px;}
._2_c00451{width:69.550358px;}
._1_c00451{width:72.544600px;}
._4_c00451{width:83.197823px;}
._0_c00451{width:91.421337px;}
.fc0_c00451{color:transparent;}
.fs8_c00451{font-size:3.420000px;}
.fs9_c00451{font-size:11.880000px;}
.fs7_c00451{font-size:13.620000px;}
.fs3_c00451{font-size:18.720000px;}
.fs0_c00451{font-size:20.400000px;}
.fs5_c00451{font-size:25.500000px;}
.fs1_c00451{font-size:28.920000px;}
.fs2_c00451{font-size:32.340000px;}
.fs4_c00451{font-size:35.700000px;}
.fs6_c00451{font-size:39.120000px;}
.y0_c00451{bottom:0.000000px;}
.yd0_c00451{bottom:256.050000px;}
.yd3_c00451{bottom:257.130000px;}
.yd2_c00451{bottom:258.195000px;}
.yd1_c00451{bottom:259.695000px;}
.ycf_c00451{bottom:260.130000px;}
.yce_c00451{bottom:261.195000px;}
.ycc_c00451{bottom:271.695000px;}
.ycd_c00451{bottom:272.130000px;}
.ycb_c00451{bottom:273.195000px;}
.yc9_c00451{bottom:273.630000px;}
.yca_c00451{bottom:274.695000px;}
.yc8_c00451{bottom:285.630000px;}
.yc6_c00451{bottom:287.130000px;}
.yc7_c00451{bottom:287.775000px;}
.yc5_c00451{bottom:288.195000px;}
.yc4_c00451{bottom:299.130000px;}
.yc3_c00451{bottom:300.195000px;}
.yc2_c00451{bottom:300.630000px;}
.yc1_c00451{bottom:301.275000px;}
.ybf_c00451{bottom:301.695000px;}
.yc0_c00451{bottom:302.130000px;}
.ybd_c00451{bottom:314.130000px;}
.yba_c00451{bottom:315.195000px;}
.ybe_c00451{bottom:315.420000px;}
.yb9_c00451{bottom:315.630000px;}
.ybb_c00451{bottom:316.275000px;}
.ybc_c00451{bottom:316.695000px;}
.yb8_c00451{bottom:327.630000px;}
.yb7_c00451{bottom:328.695000px;}
.yb6_c00451{bottom:330.195000px;}
.yb5_c00451{bottom:341.130000px;}
.yb3_c00451{bottom:343.695000px;}
.yb4_c00451{bottom:343.920000px;}
.yb2_c00451{bottom:354.630000px;}
.yb0_c00451{bottom:356.130000px;}
.yb1_c00451{bottom:357.195000px;}
.yaf_c00451{bottom:368.130000px;}
.yad_c00451{bottom:370.695000px;}
.yae_c00451{bottom:371.130000px;}
.yac_c00451{bottom:372.195000px;}
.yab_c00451{bottom:381.630000px;}
.ya8_c00451{bottom:383.130000px;}
.yaa_c00451{bottom:384.195000px;}
.ya9_c00451{bottom:385.695000px;}
.ya7_c00451{bottom:396.630000px;}
.ya6_c00451{bottom:397.695000px;}
.ya5_c00451{bottom:398.130000px;}
.ya4_c00451{bottom:399.195000px;}
.ya3_c00451{bottom:410.130000px;}
.ya2_c00451{bottom:411.195000px;}
.ya1_c00451{bottom:411.630000px;}
.ya0_c00451{bottom:412.695000px;}
.y9d_c00451{bottom:425.130000px;}
.y9f_c00451{bottom:426.195000px;}
.y9c_c00451{bottom:426.630000px;}
.y9e_c00451{bottom:427.695000px;}
.y9b_c00451{bottom:438.630000px;}
.y9a_c00451{bottom:439.695000px;}
.y99_c00451{bottom:440.130000px;}
.y98_c00451{bottom:441.195000px;}
.y97_c00451{bottom:452.130000px;}
.y96_c00451{bottom:453.420000px;}
.y94_c00451{bottom:454.695000px;}
.y95_c00451{bottom:454.920000px;}
.y93_c00451{bottom:465.630000px;}
.y90_c00451{bottom:467.130000px;}
.y92_c00451{bottom:468.195000px;}
.y8f_c00451{bottom:468.630000px;}
.y91_c00451{bottom:469.920000px;}
.y8e_c00451{bottom:479.550000px;}
.y8b_c00451{bottom:480.630000px;}
.y8d_c00451{bottom:481.695000px;}
.y8c_c00451{bottom:481.920000px;}
.y88_c00451{bottom:482.130000px;}
.y8a_c00451{bottom:483.195000px;}
.y89_c00451{bottom:483.420000px;}
.y87_c00451{bottom:494.130000px;}
.y85_c00451{bottom:495.630000px;}
.y84_c00451{bottom:496.695000px;}
.y86_c00451{bottom:496.920000px;}
.y83_c00451{bottom:512.130000px;}
.y82_c00451{bottom:513.195000px;}
.y7f_c00451{bottom:513.630000px;}
.y80_c00451{bottom:514.695000px;}
.y81_c00451{bottom:516.195000px;}
.y7e_c00451{bottom:540.195000px;}
.y7d_c00451{bottom:541.695000px;}
.y79_c00451{bottom:560.325000px;}
.y7b_c00451{bottom:561.195000px;}
.y7c_c00451{bottom:561.405000px;}
.y78_c00451{bottom:562.470000px;}
.y7a_c00451{bottom:563.550000px;}
.y76_c00451{bottom:575.325000px;}
.y77_c00451{bottom:576.825000px;}
.y75_c00451{bottom:577.050000px;}
.y74_c00451{bottom:577.470000px;}
.y73_c00451{bottom:596.550000px;}
.y72_c00451{bottom:598.470000px;}
.y70_c00451{bottom:628.245000px;}
.y71_c00451{bottom:629.970000px;}
.y6e_c00451{bottom:630.405000px;}
.y6f_c00451{bottom:630.630000px;}
.y6d_c00451{bottom:646.470000px;}
.y6a_c00451{bottom:646.905000px;}
.y69_c00451{bottom:647.745000px;}
.y6b_c00451{bottom:649.470000px;}
.y68_c00451{bottom:649.905000px;}
.y6c_c00451{bottom:650.130000px;}
.y65_c00451{bottom:667.245000px;}
.y66_c00451{bottom:669.405000px;}
.y67_c00451{bottom:670.905000px;}
.y63_c00451{bottom:686.970000px;}
.y62_c00451{bottom:688.245000px;}
.y61_c00451{bottom:689.130000px;}
.y64_c00451{bottom:689.325000px;}
.y60_c00451{bottom:690.405000px;}
.y5b_c00451{bottom:706.470000px;}
.y5f_c00451{bottom:707.325000px;}
.y5d_c00451{bottom:707.745000px;}
.y5c_c00451{bottom:708.405000px;}
.y5e_c00451{bottom:708.630000px;}
.y59_c00451{bottom:709.470000px;}
.y5a_c00451{bottom:709.905000px;}
.y58_c00451{bottom:726.825000px;}
.y55_c00451{bottom:727.245000px;}
.y54_c00451{bottom:728.130000px;}
.y57_c00451{bottom:728.970000px;}
.y56_c00451{bottom:729.405000px;}
.y52_c00451{bottom:745.905000px;}
.y53_c00451{bottom:748.470000px;}
.y51_c00451{bottom:748.905000px;}
.y50_c00451{bottom:765.405000px;}
.y4f_c00451{bottom:766.245000px;}
.y4d_c00451{bottom:768.405000px;}
.y4e_c00451{bottom:768.630000px;}
.y48_c00451{bottom:785.745000px;}
.y4a_c00451{bottom:785.970000px;}
.y47_c00451{bottom:787.905000px;}
.y4c_c00451{bottom:788.130000px;}
.y49_c00451{bottom:788.970000px;}
.y4b_c00451{bottom:791.130000px;}
.y45_c00451{bottom:804.405000px;}
.y43_c00451{bottom:805.245000px;}
.y46_c00451{bottom:805.905000px;}
.y44_c00451{bottom:806.325000px;}
.y41_c00451{bottom:807.405000px;}
.y42_c00451{bottom:807.630000px;}
.y3d_c00451{bottom:823.905000px;}
.y3e_c00451{bottom:824.745000px;}
.y3f_c00451{bottom:826.905000px;}
.y40_c00451{bottom:827.970000px;}
.y3c_c00451{bottom:844.470000px;}
.y3a_c00451{bottom:844.905000px;}
.y3b_c00451{bottom:845.745000px;}
.y39_c00451{bottom:847.470000px;}
.y38_c00451{bottom:847.905000px;}
.y35_c00451{bottom:865.245000px;}
.y36_c00451{bottom:866.130000px;}
.y37_c00451{bottom:867.405000px;}
.y31_c00451{bottom:883.905000px;}
.y33_c00451{bottom:884.745000px;}
.y32_c00451{bottom:885.630000px;}
.y34_c00451{bottom:886.905000px;}
.y2d_c00451{bottom:902.970000px;}
.y2f_c00451{bottom:903.405000px;}
.y2e_c00451{bottom:904.245000px;}
.y30_c00451{bottom:905.970000px;}
.y2c_c00451{bottom:906.405000px;}
.y29_c00451{bottom:923.745000px;}
.y2b_c00451{bottom:924.825000px;}
.y2a_c00451{bottom:925.470000px;}
.y28_c00451{bottom:925.905000px;}
.y25_c00451{bottom:944.745000px;}
.y26_c00451{bottom:945.405000px;}
.y24_c00451{bottom:945.630000px;}
.y27_c00451{bottom:946.905000px;}
.y23_c00451{bottom:964.245000px;}
.y20_c00451{bottom:964.905000px;}
.y1f_c00451{bottom:965.130000px;}
.y22_c00451{bottom:965.970000px;}
.y21_c00451{bottom:966.405000px;}
.y1c_c00451{bottom:981.405000px;}
.y1b_c00451{bottom:982.245000px;}
.y19_c00451{bottom:983.745000px;}
.y18_c00451{bottom:984.405000px;}
.y1d_c00451{bottom:984.825000px;}
.y1a_c00451{bottom:985.470000px;}
.y1e_c00451{bottom:985.905000px;}
.y16_c00451{bottom:1003.245000px;}
.y17_c00451{bottom:1003.905000px;}
.y15_c00451{bottom:1004.130000px;}
.y13_c00451{bottom:1004.970000px;}
.y14_c00451{bottom:1005.405000px;}
.y10_c00451{bottom:1021.245000px;}
.yd_c00451{bottom:1021.680000px;}
.ye_c00451{bottom:1022.325000px;}
.y12_c00451{bottom:1022.745000px;}
.yf_c00451{bottom:1023.405000px;}
.y11_c00451{bottom:1024.470000px;}
.yc_c00451{bottom:1024.905000px;}
.ya_c00451{bottom:1042.245000px;}
.y9_c00451{bottom:1043.130000px;}
.yb_c00451{bottom:1043.970000px;}
.y7_c00451{bottom:1044.405000px;}
.y8_c00451{bottom:1045.470000px;}
.y6_c00451{bottom:1061.745000px;}
.y5_c00451{bottom:1062.630000px;}
.y4_c00451{bottom:1062.825000px;}
.y3_c00451{bottom:1063.905000px;}
.y2_c00451{bottom:1099.905000px;}
.y1_c00451{bottom:1102.050000px;}
.h9_c00451{height:4.206533px;}
.hb_c00451{height:14.612168px;}
.h8_c00451{height:16.752334px;}
.ha_c00451{height:22.752334px;}
.h4_c00451{height:23.025234px;}
.h1_c00451{height:25.091602px;}
.h6_c00451{height:31.364502px;}
.h2_c00451{height:35.571035px;}
.h3_c00451{height:39.777568px;}
.h5_c00451{height:43.910303px;}
.h7_c00451{height:48.116836px;}
.h0_c00451{height:1335.000000px;}
.w0_c00451{width:880.500000px;}
.x0_c00451{left:0.000000px;}
.xca_c00451{left:103.500000px;}
.xf4_c00451{left:108.000000px;}
.xd4_c00451{left:109.500000px;}
.xde_c00451{left:132.000000px;}
.xd7_c00451{left:133.080000px;}
.xe3_c00451{left:137.580000px;}
.xe9_c00451{left:141.000000px;}
.xe5_c00451{left:142.500000px;}
.xe7_c00451{left:145.500000px;}
.xe4_c00451{left:146.580000px;}
.xf0_c00451{left:149.580000px;}
.xc0_c00451{left:151.500000px;}
.x2_c00451{left:153.000000px;}
.x3_c00451{left:154.080000px;}
.xe6_c00451{left:155.580000px;}
.xe8_c00451{left:159.000000px;}
.xcb_c00451{left:163.080000px;}
.x18_c00451{left:169.080000px;}
.x4_c00451{left:171.000000px;}
.x4a_c00451{left:172.500000px;}
.x69_c00451{left:177.000000px;}
.x9c_c00451{left:178.500000px;}
.x3f_c00451{left:180.420000px;}
.x53_c00451{left:181.500000px;}
.x11_c00451{left:183.420000px;}
.x34_c00451{left:184.500000px;}
.x60_c00451{left:186.000000px;}
.x9f_c00451{left:190.500000px;}
.x5_c00451{left:192.420000px;}
.xc1_c00451{left:196.920000px;}
.x27_c00451{left:199.920000px;}
.x85_c00451{left:201.000000px;}
.xc4_c00451{left:202.500000px;}
.x12_c00451{left:208.080000px;}
.x9d_c00451{left:211.080000px;}
.x6a_c00451{left:212.580000px;}
.x6_c00451{left:218.580000px;}
.x19_c00451{left:225.000000px;}
.x40_c00451{left:226.500000px;}
.xa7_c00451{left:229.500000px;}
.xb4_c00451{left:231.000000px;}
.x8c_c00451{left:234.000000px;}
.x7a_c00451{left:236.580000px;}
.x13_c00451{left:238.500000px;}
.x28_c00451{left:241.920000px;}
.x72_c00451{left:244.920000px;}
.x41_c00451{left:246.000000px;}
.x54_c00451{left:249.000000px;}
.xa8_c00451{left:250.500000px;}
.xd8_c00451{left:252.000000px;}
.x93_c00451{left:253.080000px;}
.xd5_c00451{left:255.000000px;}
.xa0_c00451{left:256.920000px;}
.xdb_c00451{left:259.500000px;}
.x7b_c00451{left:262.500000px;}
.x14_c00451{left:265.500000px;}
.x6b_c00451{left:267.000000px;}
.x61_c00451{left:270.000000px;}
.x73_c00451{left:274.080000px;}
.x86_c00451{left:280.500000px;}
.x7c_c00451{left:281.580000px;}
.xa1_c00451{left:283.080000px;}
.x29_c00451{left:285.000000px;}
.x9e_c00451{left:288.000000px;}
.x7_c00451{left:289.500000px;}
.x1a_c00451{left:293.355000px;}
.xd0_c00451{left:294.420000px;}
.x74_c00451{left:295.920000px;}
.xc2_c00451{left:298.920000px;}
.xad_c00451{left:300.420000px;}
.x2a_c00451{left:306.420000px;}
.xb5_c00451{left:309.000000px;}
.x55_c00451{left:310.080000px;}
.x94_c00451{left:313.920000px;}
.x87_c00451{left:315.420000px;}
.x1b_c00451{left:319.080000px;}
.xd1_c00451{left:322.920000px;}
.x4b_c00451{left:324.000000px;}
.xbd_c00451{left:326.580000px;}
.x56_c00451{left:331.920000px;}
.x1c_c00451{left:333.420000px;}
.x6c_c00451{left:336.000000px;}
.x7d_c00451{left:337.500000px;}
.x15_c00451{left:339.420000px;}
.x2b_c00451{left:342.000000px;}
.xae_c00451{left:343.500000px;}
.xa2_c00451{left:346.080000px;}
.x8_c00451{left:349.500000px;}
.x35_c00451{left:354.000000px;}
.x4c_c00451{left:357.000000px;}
.x57_c00451{left:360.000000px;}
.x2c_c00451{left:361.080000px;}
.x95_c00451{left:362.580000px;}
.x1d_c00451{left:364.500000px;}
.xaf_c00451{left:367.500000px;}
.x7e_c00451{left:369.000000px;}
.x62_c00451{left:373.500000px;}
.xb6_c00451{left:375.000000px;}
.xa3_c00451{left:376.500000px;}
.x1e_c00451{left:381.000000px;}
.x96_c00451{left:382.500000px;}
.x42_c00451{left:386.580000px;}
.x58_c00451{left:391.500000px;}
.x6d_c00451{left:393.000000px;}
.x88_c00451{left:394.500000px;}
.x9_c00451{left:396.000000px;}
.x1f_c00451{left:397.500000px;}
.x16_c00451{left:399.000000px;}
.x4d_c00451{left:403.920000px;}
.xbe_c00451{left:406.080000px;}
.xb7_c00451{left:408.420000px;}
.x1_c00451{left:409.500000px;}
.x97_c00451{left:411.000000px;}
.xa9_c00451{left:412.500000px;}
.x20_c00451{left:414.000000px;}
.x36_c00451{left:415.080000px;}
.x17_c00451{left:417.000000px;}
.xcc_c00451{left:418.920000px;}
.xa_c00451{left:421.080000px;}
.x59_c00451{left:423.420000px;}
.x75_c00451{left:430.920000px;}
.x37_c00451{left:433.500000px;}
.x2d_c00451{left:435.000000px;}
.x43_c00451{left:436.500000px;}
.xd2_c00451{left:438.000000px;}
.xaa_c00451{left:441.000000px;}
.xb_c00451{left:442.920000px;}
.x21_c00451{left:447.420000px;}
.xc5_c00451{left:448.500000px;}
.x8d_c00451{left:456.000000px;}
.x4e_c00451{left:457.080000px;}
.xb8_c00451{left:459.000000px;}
.xec_c00451{left:462.000000px;}
.x38_c00451{left:463.500000px;}
.x44_c00451{left:465.000000px;}
.x89_c00451{left:472.500000px;}
.x2e_c00451{left:474.000000px;}
.xdf_c00451{left:477.000000px;}
.xbf_c00451{left:478.500000px;}
.x63_c00451{left:480.420000px;}
.x5a_c00451{left:481.500000px;}
.x76_c00451{left:482.580000px;}
.xc6_c00451{left:485.580000px;}
.x8e_c00451{left:489.420000px;}
.x4f_c00451{left:493.500000px;}
.x6e_c00451{left:495.000000px;}
.x39_c00451{left:496.500000px;}
.xc3_c00451{left:500.580000px;}
.x7f_c00451{left:502.080000px;}
.xcd_c00451{left:503.580000px;}
.xc7_c00451{left:505.920000px;}
.x22_c00451{left:510.000000px;}
.xb9_c00451{left:516.000000px;}
.xed_c00451{left:517.500000px;}
.xa4_c00451{left:518.580000px;}
.x80_c00451{left:522.000000px;}
.x8f_c00451{left:524.580000px;}
.x45_c00451{left:526.500000px;}
.x3a_c00451{left:528.000000px;}
.xe0_c00451{left:531.000000px;}
.x6f_c00451{left:533.580000px;}
.xa5_c00451{left:537.000000px;}
.x64_c00451{left:538.500000px;}
.xc_c00451{left:543.420000px;}
.xd3_c00451{left:546.000000px;}
.x98_c00451{left:547.080000px;}
.x50_c00451{left:548.580000px;}
.x2f_c00451{left:550.500000px;}
.x70_c00451{left:555.420000px;}
.x65_c00451{left:557.580000px;}
.x5b_c00451{left:559.500000px;}
.x30_c00451{left:566.580000px;}
.xd_c00451{left:570.000000px;}
.xa6_c00451{left:573.420000px;}
.x3b_c00451{left:574.920000px;}
.x77_c00451{left:576.000000px;}
.x5c_c00451{left:578.355000px;}
.xf1_c00451{left:580.500000px;}
.x23_c00451{left:582.000000px;}
.x71_c00451{left:583.080000px;}
.xba_c00451{left:585.420000px;}
.x99_c00451{left:588.000000px;}
.x9a_c00451{left:594.420000px;}
.x46_c00451{left:598.500000px;}
.xb0_c00451{left:599.580000px;}
.x24_c00451{left:601.500000px;}
.x31_c00451{left:604.500000px;}
.x9b_c00451{left:606.420000px;}
.xc8_c00451{left:607.500000px;}
.x90_c00451{left:609.000000px;}
.x5d_c00451{left:610.500000px;}
.x8a_c00451{left:620.580000px;}
.x78_c00451{left:624.420000px;}
.x51_c00451{left:627.000000px;}
.x81_c00451{left:628.080000px;}
.x3c_c00451{left:629.580000px;}
.xab_c00451{left:631.500000px;}
.xf2_c00451{left:634.500000px;}
.xdd_c00451{left:636.000000px;}
.xe_c00451{left:637.500000px;}
.xf5_c00451{left:639.000000px;}
.x8b_c00451{left:640.920000px;}
.x82_c00451{left:648.000000px;}
.xb1_c00451{left:649.500000px;}
.x79_c00451{left:651.000000px;}
.x91_c00451{left:652.500000px;}
.x66_c00451{left:654.420000px;}
.x47_c00451{left:655.500000px;}
.xbb_c00451{left:657.000000px;}
.x52_c00451{left:658.500000px;}
.x3d_c00451{left:659.580000px;}
.x32_c00451{left:661.080000px;}
.xf_c00451{left:663.000000px;}
.x25_c00451{left:665.580000px;}
.x5e_c00451{left:667.920000px;}
.xac_c00451{left:669.000000px;}
.x48_c00451{left:675.420000px;}
.xc9_c00451{left:677.580000px;}
.xee_c00451{left:681.000000px;}
.xb2_c00451{left:682.500000px;}
.x83_c00451{left:684.000000px;}
.xd9_c00451{left:687.000000px;}
.xce_c00451{left:688.500000px;}
.xe2_c00451{left:690.000000px;}
.x67_c00451{left:691.500000px;}
.x3e_c00451{left:693.000000px;}
.xe1_c00451{left:694.500000px;}
.x26_c00451{left:697.920000px;}
.x92_c00451{left:699.420000px;}
.x5f_c00451{left:702.000000px;}
.x84_c00451{left:703.920000px;}
.x49_c00451{left:706.500000px;}
.x33_c00451{left:709.920000px;}
.xbc_c00451{left:711.000000px;}
.x10_c00451{left:714.000000px;}
.x68_c00451{left:717.000000px;}
.xb3_c00451{left:718.080000px;}
.xef_c00451{left:732.000000px;}
.xda_c00451{left:735.000000px;}
.xf3_c00451{left:739.500000px;}
.xdc_c00451{left:741.000000px;}
.xd6_c00451{left:743.580000px;}
.xcf_c00451{left:751.080000px;}
.xea_c00451{left:753.000000px;}
.xeb_c00451{left:762.420000px;}
@media print{
.v1_c00451{vertical-align:-5.333333pt;}
.v0_c00451{vertical-align:0.000000pt;}
.v2_c00451{vertical-align:5.333333pt;}
.ls0_c00451{letter-spacing:0.000000pt;}
.ws1_c00451{word-spacing:-3.186375pt;}
.ws0_c00451{word-spacing:-3.061462pt;}
.ws2_c00451{word-spacing:-0.683292pt;}
.ws15_c00451{word-spacing:0.000000pt;}
.ws8_c00451{word-spacing:14.750782pt;}
.ws10_c00451{word-spacing:15.571771pt;}
.wsf_c00451{word-spacing:29.157018pt;}
.wsa_c00451{word-spacing:33.464251pt;}
.wse_c00451{word-spacing:36.134498pt;}
.ws4_c00451{word-spacing:37.661663pt;}
.ws12_c00451{word-spacing:37.802083pt;}
.wsb_c00451{word-spacing:38.332159pt;}
.wsc_c00451{word-spacing:40.247770pt;}
.ws11_c00451{word-spacing:46.644222pt;}
.ws7_c00451{word-spacing:52.717514pt;}
.ws5_c00451{word-spacing:55.125201pt;}
.ws13_c00451{word-spacing:57.233843pt;}
.wsd_c00451{word-spacing:61.361940pt;}
.ws9_c00451{word-spacing:64.235860pt;}
.ws6_c00451{word-spacing:64.925917pt;}
.ws14_c00451{word-spacing:70.080475pt;}
.ws3_c00451{word-spacing:71.015514pt;}
._7_c00451{width:24.374063pt;}
._3_c00451{width:42.314936pt;}
._5_c00451{width:44.872376pt;}
._6_c00451{width:47.318064pt;}
._9_c00451{width:49.901392pt;}
._8_c00451{width:51.807954pt;}
._2_c00451{width:61.822541pt;}
._1_c00451{width:64.484089pt;}
._4_c00451{width:73.953620pt;}
._0_c00451{width:81.263410pt;}
.fs8_c00451{font-size:3.040000pt;}
.fs9_c00451{font-size:10.560000pt;}
.fs7_c00451{font-size:12.106667pt;}
.fs3_c00451{font-size:16.640000pt;}
.fs0_c00451{font-size:18.133333pt;}
.fs5_c00451{font-size:22.666667pt;}
.fs1_c00451{font-size:25.706667pt;}
.fs2_c00451{font-size:28.746667pt;}
.fs4_c00451{font-size:31.733333pt;}
.fs6_c00451{font-size:34.773333pt;}
.y0_c00451{bottom:0.000000pt;}
.yd0_c00451{bottom:227.600000pt;}
.yd3_c00451{bottom:228.560000pt;}
.yd2_c00451{bottom:229.506667pt;}
.yd1_c00451{bottom:230.840000pt;}
.ycf_c00451{bottom:231.226667pt;}
.yce_c00451{bottom:232.173333pt;}
.ycc_c00451{bottom:241.506667pt;}
.ycd_c00451{bottom:241.893333pt;}
.ycb_c00451{bottom:242.840000pt;}
.yc9_c00451{bottom:243.226667pt;}
.yca_c00451{bottom:244.173333pt;}
.yc8_c00451{bottom:253.893333pt;}
.yc6_c00451{bottom:255.226667pt;}
.yc7_c00451{bottom:255.800000pt;}
.yc5_c00451{bottom:256.173333pt;}
.yc4_c00451{bottom:265.893333pt;}
.yc3_c00451{bottom:266.840000pt;}
.yc2_c00451{bottom:267.226667pt;}
.yc1_c00451{bottom:267.800000pt;}
.ybf_c00451{bottom:268.173333pt;}
.yc0_c00451{bottom:268.560000pt;}
.ybd_c00451{bottom:279.226667pt;}
.yba_c00451{bottom:280.173333pt;}
.ybe_c00451{bottom:280.373333pt;}
.yb9_c00451{bottom:280.560000pt;}
.ybb_c00451{bottom:281.133333pt;}
.ybc_c00451{bottom:281.506667pt;}
.yb8_c00451{bottom:291.226667pt;}
.yb7_c00451{bottom:292.173333pt;}
.yb6_c00451{bottom:293.506667pt;}
.yb5_c00451{bottom:303.226667pt;}
.yb3_c00451{bottom:305.506667pt;}
.yb4_c00451{bottom:305.706667pt;}
.yb2_c00451{bottom:315.226667pt;}
.yb0_c00451{bottom:316.560000pt;}
.yb1_c00451{bottom:317.506667pt;}
.yaf_c00451{bottom:327.226667pt;}
.yad_c00451{bottom:329.506667pt;}
.yae_c00451{bottom:329.893333pt;}
.yac_c00451{bottom:330.840000pt;}
.yab_c00451{bottom:339.226667pt;}
.ya8_c00451{bottom:340.560000pt;}
.yaa_c00451{bottom:341.506667pt;}
.ya9_c00451{bottom:342.840000pt;}
.ya7_c00451{bottom:352.560000pt;}
.ya6_c00451{bottom:353.506667pt;}
.ya5_c00451{bottom:353.893333pt;}
.ya4_c00451{bottom:354.840000pt;}
.ya3_c00451{bottom:364.560000pt;}
.ya2_c00451{bottom:365.506667pt;}
.ya1_c00451{bottom:365.893333pt;}
.ya0_c00451{bottom:366.840000pt;}
.y9d_c00451{bottom:377.893333pt;}
.y9f_c00451{bottom:378.840000pt;}
.y9c_c00451{bottom:379.226667pt;}
.y9e_c00451{bottom:380.173333pt;}
.y9b_c00451{bottom:389.893333pt;}
.y9a_c00451{bottom:390.840000pt;}
.y99_c00451{bottom:391.226667pt;}
.y98_c00451{bottom:392.173333pt;}
.y97_c00451{bottom:401.893333pt;}
.y96_c00451{bottom:403.040000pt;}
.y94_c00451{bottom:404.173333pt;}
.y95_c00451{bottom:404.373333pt;}
.y93_c00451{bottom:413.893333pt;}
.y90_c00451{bottom:415.226667pt;}
.y92_c00451{bottom:416.173333pt;}
.y8f_c00451{bottom:416.560000pt;}
.y91_c00451{bottom:417.706667pt;}
.y8e_c00451{bottom:426.266667pt;}
.y8b_c00451{bottom:427.226667pt;}
.y8d_c00451{bottom:428.173333pt;}
.y8c_c00451{bottom:428.373333pt;}
.y88_c00451{bottom:428.560000pt;}
.y8a_c00451{bottom:429.506667pt;}
.y89_c00451{bottom:429.706667pt;}
.y87_c00451{bottom:439.226667pt;}
.y85_c00451{bottom:440.560000pt;}
.y84_c00451{bottom:441.506667pt;}
.y86_c00451{bottom:441.706667pt;}
.y83_c00451{bottom:455.226667pt;}
.y82_c00451{bottom:456.173333pt;}
.y7f_c00451{bottom:456.560000pt;}
.y80_c00451{bottom:457.506667pt;}
.y81_c00451{bottom:458.840000pt;}
.y7e_c00451{bottom:480.173333pt;}
.y7d_c00451{bottom:481.506667pt;}
.y79_c00451{bottom:498.066667pt;}
.y7b_c00451{bottom:498.840000pt;}
.y7c_c00451{bottom:499.026667pt;}
.y78_c00451{bottom:499.973333pt;}
.y7a_c00451{bottom:500.933333pt;}
.y76_c00451{bottom:511.400000pt;}
.y77_c00451{bottom:512.733333pt;}
.y75_c00451{bottom:512.933333pt;}
.y74_c00451{bottom:513.306667pt;}
.y73_c00451{bottom:530.266667pt;}
.y72_c00451{bottom:531.973333pt;}
.y70_c00451{bottom:558.440000pt;}
.y71_c00451{bottom:559.973333pt;}
.y6e_c00451{bottom:560.360000pt;}
.y6f_c00451{bottom:560.560000pt;}
.y6d_c00451{bottom:574.640000pt;}
.y6a_c00451{bottom:575.026667pt;}
.y69_c00451{bottom:575.773333pt;}
.y6b_c00451{bottom:577.306667pt;}
.y68_c00451{bottom:577.693333pt;}
.y6c_c00451{bottom:577.893333pt;}
.y65_c00451{bottom:593.106667pt;}
.y66_c00451{bottom:595.026667pt;}
.y67_c00451{bottom:596.360000pt;}
.y63_c00451{bottom:610.640000pt;}
.y62_c00451{bottom:611.773333pt;}
.y61_c00451{bottom:612.560000pt;}
.y64_c00451{bottom:612.733333pt;}
.y60_c00451{bottom:613.693333pt;}
.y5b_c00451{bottom:627.973333pt;}
.y5f_c00451{bottom:628.733333pt;}
.y5d_c00451{bottom:629.106667pt;}
.y5c_c00451{bottom:629.693333pt;}
.y5e_c00451{bottom:629.893333pt;}
.y59_c00451{bottom:630.640000pt;}
.y5a_c00451{bottom:631.026667pt;}
.y58_c00451{bottom:646.066667pt;}
.y55_c00451{bottom:646.440000pt;}
.y54_c00451{bottom:647.226667pt;}
.y57_c00451{bottom:647.973333pt;}
.y56_c00451{bottom:648.360000pt;}
.y52_c00451{bottom:663.026667pt;}
.y53_c00451{bottom:665.306667pt;}
.y51_c00451{bottom:665.693333pt;}
.y50_c00451{bottom:680.360000pt;}
.y4f_c00451{bottom:681.106667pt;}
.y4d_c00451{bottom:683.026667pt;}
.y4e_c00451{bottom:683.226667pt;}
.y48_c00451{bottom:698.440000pt;}
.y4a_c00451{bottom:698.640000pt;}
.y47_c00451{bottom:700.360000pt;}
.y4c_c00451{bottom:700.560000pt;}
.y49_c00451{bottom:701.306667pt;}
.y4b_c00451{bottom:703.226667pt;}
.y45_c00451{bottom:715.026667pt;}
.y43_c00451{bottom:715.773333pt;}
.y46_c00451{bottom:716.360000pt;}
.y44_c00451{bottom:716.733333pt;}
.y41_c00451{bottom:717.693333pt;}
.y42_c00451{bottom:717.893333pt;}
.y3d_c00451{bottom:732.360000pt;}
.y3e_c00451{bottom:733.106667pt;}
.y3f_c00451{bottom:735.026667pt;}
.y40_c00451{bottom:735.973333pt;}
.y3c_c00451{bottom:750.640000pt;}
.y3a_c00451{bottom:751.026667pt;}
.y3b_c00451{bottom:751.773333pt;}
.y39_c00451{bottom:753.306667pt;}
.y38_c00451{bottom:753.693333pt;}
.y35_c00451{bottom:769.106667pt;}
.y36_c00451{bottom:769.893333pt;}
.y37_c00451{bottom:771.026667pt;}
.y31_c00451{bottom:785.693333pt;}
.y33_c00451{bottom:786.440000pt;}
.y32_c00451{bottom:787.226667pt;}
.y34_c00451{bottom:788.360000pt;}
.y2d_c00451{bottom:802.640000pt;}
.y2f_c00451{bottom:803.026667pt;}
.y2e_c00451{bottom:803.773333pt;}
.y30_c00451{bottom:805.306667pt;}
.y2c_c00451{bottom:805.693333pt;}
.y29_c00451{bottom:821.106667pt;}
.y2b_c00451{bottom:822.066667pt;}
.y2a_c00451{bottom:822.640000pt;}
.y28_c00451{bottom:823.026667pt;}
.y25_c00451{bottom:839.773333pt;}
.y26_c00451{bottom:840.360000pt;}
.y24_c00451{bottom:840.560000pt;}
.y27_c00451{bottom:841.693333pt;}
.y23_c00451{bottom:857.106667pt;}
.y20_c00451{bottom:857.693333pt;}
.y1f_c00451{bottom:857.893333pt;}
.y22_c00451{bottom:858.640000pt;}
.y21_c00451{bottom:859.026667pt;}
.y1c_c00451{bottom:872.360000pt;}
.y1b_c00451{bottom:873.106667pt;}
.y19_c00451{bottom:874.440000pt;}
.y18_c00451{bottom:875.026667pt;}
.y1d_c00451{bottom:875.400000pt;}
.y1a_c00451{bottom:875.973333pt;}
.y1e_c00451{bottom:876.360000pt;}
.y16_c00451{bottom:891.773333pt;}
.y17_c00451{bottom:892.360000pt;}
.y15_c00451{bottom:892.560000pt;}
.y13_c00451{bottom:893.306667pt;}
.y14_c00451{bottom:893.693333pt;}
.y10_c00451{bottom:907.773333pt;}
.yd_c00451{bottom:908.160000pt;}
.ye_c00451{bottom:908.733333pt;}
.y12_c00451{bottom:909.106667pt;}
.yf_c00451{bottom:909.693333pt;}
.y11_c00451{bottom:910.640000pt;}
.yc_c00451{bottom:911.026667pt;}
.ya_c00451{bottom:926.440000pt;}
.y9_c00451{bottom:927.226667pt;}
.yb_c00451{bottom:927.973333pt;}
.y7_c00451{bottom:928.360000pt;}
.y8_c00451{bottom:929.306667pt;}
.y6_c00451{bottom:943.773333pt;}
.y5_c00451{bottom:944.560000pt;}
.y4_c00451{bottom:944.733333pt;}
.y3_c00451{bottom:945.693333pt;}
.y2_c00451{bottom:977.693333pt;}
.y1_c00451{bottom:979.600000pt;}
.h9_c00451{height:3.739141pt;}
.hb_c00451{height:12.988594pt;}
.h8_c00451{height:14.890964pt;}
.ha_c00451{height:20.224297pt;}
.h4_c00451{height:20.466875pt;}
.h1_c00451{height:22.303646pt;}
.h6_c00451{height:27.879557pt;}
.h2_c00451{height:31.618698pt;}
.h3_c00451{height:35.357839pt;}
.h5_c00451{height:39.031380pt;}
.h7_c00451{height:42.770521pt;}
.h0_c00451{height:1186.666667pt;}
.w0_c00451{width:782.666667pt;}
.x0_c00451{left:0.000000pt;}
.xca_c00451{left:92.000000pt;}
.xf4_c00451{left:96.000000pt;}
.xd4_c00451{left:97.333333pt;}
.xde_c00451{left:117.333333pt;}
.xd7_c00451{left:118.293333pt;}
.xe3_c00451{left:122.293333pt;}
.xe9_c00451{left:125.333333pt;}
.xe5_c00451{left:126.666667pt;}
.xe7_c00451{left:129.333333pt;}
.xe4_c00451{left:130.293333pt;}
.xf0_c00451{left:132.960000pt;}
.xc0_c00451{left:134.666667pt;}
.x2_c00451{left:136.000000pt;}
.x3_c00451{left:136.960000pt;}
.xe6_c00451{left:138.293333pt;}
.xe8_c00451{left:141.333333pt;}
.xcb_c00451{left:144.960000pt;}
.x18_c00451{left:150.293333pt;}
.x4_c00451{left:152.000000pt;}
.x4a_c00451{left:153.333333pt;}
.x69_c00451{left:157.333333pt;}
.x9c_c00451{left:158.666667pt;}
.x3f_c00451{left:160.373333pt;}
.x53_c00451{left:161.333333pt;}
.x11_c00451{left:163.040000pt;}
.x34_c00451{left:164.000000pt;}
.x60_c00451{left:165.333333pt;}
.x9f_c00451{left:169.333333pt;}
.x5_c00451{left:171.040000pt;}
.xc1_c00451{left:175.040000pt;}
.x27_c00451{left:177.706667pt;}
.x85_c00451{left:178.666667pt;}
.xc4_c00451{left:180.000000pt;}
.x12_c00451{left:184.960000pt;}
.x9d_c00451{left:187.626667pt;}
.x6a_c00451{left:188.960000pt;}
.x6_c00451{left:194.293333pt;}
.x19_c00451{left:200.000000pt;}
.x40_c00451{left:201.333333pt;}
.xa7_c00451{left:204.000000pt;}
.xb4_c00451{left:205.333333pt;}
.x8c_c00451{left:208.000000pt;}
.x7a_c00451{left:210.293333pt;}
.x13_c00451{left:212.000000pt;}
.x28_c00451{left:215.040000pt;}
.x72_c00451{left:217.706667pt;}
.x41_c00451{left:218.666667pt;}
.x54_c00451{left:221.333333pt;}
.xa8_c00451{left:222.666667pt;}
.xd8_c00451{left:224.000000pt;}
.x93_c00451{left:224.960000pt;}
.xd5_c00451{left:226.666667pt;}
.xa0_c00451{left:228.373333pt;}
.xdb_c00451{left:230.666667pt;}
.x7b_c00451{left:233.333333pt;}
.x14_c00451{left:236.000000pt;}
.x6b_c00451{left:237.333333pt;}
.x61_c00451{left:240.000000pt;}
.x73_c00451{left:243.626667pt;}
.x86_c00451{left:249.333333pt;}
.x7c_c00451{left:250.293333pt;}
.xa1_c00451{left:251.626667pt;}
.x29_c00451{left:253.333333pt;}
.x9e_c00451{left:256.000000pt;}
.x7_c00451{left:257.333333pt;}
.x1a_c00451{left:260.760000pt;}
.xd0_c00451{left:261.706667pt;}
.x74_c00451{left:263.040000pt;}
.xc2_c00451{left:265.706667pt;}
.xad_c00451{left:267.040000pt;}
.x2a_c00451{left:272.373333pt;}
.xb5_c00451{left:274.666667pt;}
.x55_c00451{left:275.626667pt;}
.x94_c00451{left:279.040000pt;}
.x87_c00451{left:280.373333pt;}
.x1b_c00451{left:283.626667pt;}
.xd1_c00451{left:287.040000pt;}
.x4b_c00451{left:288.000000pt;}
.xbd_c00451{left:290.293333pt;}
.x56_c00451{left:295.040000pt;}
.x1c_c00451{left:296.373333pt;}
.x6c_c00451{left:298.666667pt;}
.x7d_c00451{left:300.000000pt;}
.x15_c00451{left:301.706667pt;}
.x2b_c00451{left:304.000000pt;}
.xae_c00451{left:305.333333pt;}
.xa2_c00451{left:307.626667pt;}
.x8_c00451{left:310.666667pt;}
.x35_c00451{left:314.666667pt;}
.x4c_c00451{left:317.333333pt;}
.x57_c00451{left:320.000000pt;}
.x2c_c00451{left:320.960000pt;}
.x95_c00451{left:322.293333pt;}
.x1d_c00451{left:324.000000pt;}
.xaf_c00451{left:326.666667pt;}
.x7e_c00451{left:328.000000pt;}
.x62_c00451{left:332.000000pt;}
.xb6_c00451{left:333.333333pt;}
.xa3_c00451{left:334.666667pt;}
.x1e_c00451{left:338.666667pt;}
.x96_c00451{left:340.000000pt;}
.x42_c00451{left:343.626667pt;}
.x58_c00451{left:348.000000pt;}
.x6d_c00451{left:349.333333pt;}
.x88_c00451{left:350.666667pt;}
.x9_c00451{left:352.000000pt;}
.x1f_c00451{left:353.333333pt;}
.x16_c00451{left:354.666667pt;}
.x4d_c00451{left:359.040000pt;}
.xbe_c00451{left:360.960000pt;}
.xb7_c00451{left:363.040000pt;}
.x1_c00451{left:364.000000pt;}
.x97_c00451{left:365.333333pt;}
.xa9_c00451{left:366.666667pt;}
.x20_c00451{left:368.000000pt;}
.x36_c00451{left:368.960000pt;}
.x17_c00451{left:370.666667pt;}
.xcc_c00451{left:372.373333pt;}
.xa_c00451{left:374.293333pt;}
.x59_c00451{left:376.373333pt;}
.x75_c00451{left:383.040000pt;}
.x37_c00451{left:385.333333pt;}
.x2d_c00451{left:386.666667pt;}
.x43_c00451{left:388.000000pt;}
.xd2_c00451{left:389.333333pt;}
.xaa_c00451{left:392.000000pt;}
.xb_c00451{left:393.706667pt;}
.x21_c00451{left:397.706667pt;}
.xc5_c00451{left:398.666667pt;}
.x8d_c00451{left:405.333333pt;}
.x4e_c00451{left:406.293333pt;}
.xb8_c00451{left:408.000000pt;}
.xec_c00451{left:410.666667pt;}
.x38_c00451{left:412.000000pt;}
.x44_c00451{left:413.333333pt;}
.x89_c00451{left:420.000000pt;}
.x2e_c00451{left:421.333333pt;}
.xdf_c00451{left:424.000000pt;}
.xbf_c00451{left:425.333333pt;}
.x63_c00451{left:427.040000pt;}
.x5a_c00451{left:428.000000pt;}
.x76_c00451{left:428.960000pt;}
.xc6_c00451{left:431.626667pt;}
.x8e_c00451{left:435.040000pt;}
.x4f_c00451{left:438.666667pt;}
.x6e_c00451{left:440.000000pt;}
.x39_c00451{left:441.333333pt;}
.xc3_c00451{left:444.960000pt;}
.x7f_c00451{left:446.293333pt;}
.xcd_c00451{left:447.626667pt;}
.xc7_c00451{left:449.706667pt;}
.x22_c00451{left:453.333333pt;}
.xb9_c00451{left:458.666667pt;}
.xed_c00451{left:460.000000pt;}
.xa4_c00451{left:460.960000pt;}
.x80_c00451{left:464.000000pt;}
.x8f_c00451{left:466.293333pt;}
.x45_c00451{left:468.000000pt;}
.x3a_c00451{left:469.333333pt;}
.xe0_c00451{left:472.000000pt;}
.x6f_c00451{left:474.293333pt;}
.xa5_c00451{left:477.333333pt;}
.x64_c00451{left:478.666667pt;}
.xc_c00451{left:483.040000pt;}
.xd3_c00451{left:485.333333pt;}
.x98_c00451{left:486.293333pt;}
.x50_c00451{left:487.626667pt;}
.x2f_c00451{left:489.333333pt;}
.x70_c00451{left:493.706667pt;}
.x65_c00451{left:495.626667pt;}
.x5b_c00451{left:497.333333pt;}
.x30_c00451{left:503.626667pt;}
.xd_c00451{left:506.666667pt;}
.xa6_c00451{left:509.706667pt;}
.x3b_c00451{left:511.040000pt;}
.x77_c00451{left:512.000000pt;}
.x5c_c00451{left:514.093333pt;}
.xf1_c00451{left:516.000000pt;}
.x23_c00451{left:517.333333pt;}
.x71_c00451{left:518.293333pt;}
.xba_c00451{left:520.373333pt;}
.x99_c00451{left:522.666667pt;}
.x9a_c00451{left:528.373333pt;}
.x46_c00451{left:532.000000pt;}
.xb0_c00451{left:532.960000pt;}
.x24_c00451{left:534.666667pt;}
.x31_c00451{left:537.333333pt;}
.x9b_c00451{left:539.040000pt;}
.xc8_c00451{left:540.000000pt;}
.x90_c00451{left:541.333333pt;}
.x5d_c00451{left:542.666667pt;}
.x8a_c00451{left:551.626667pt;}
.x78_c00451{left:555.040000pt;}
.x51_c00451{left:557.333333pt;}
.x81_c00451{left:558.293333pt;}
.x3c_c00451{left:559.626667pt;}
.xab_c00451{left:561.333333pt;}
.xf2_c00451{left:564.000000pt;}
.xdd_c00451{left:565.333333pt;}
.xe_c00451{left:566.666667pt;}
.xf5_c00451{left:568.000000pt;}
.x8b_c00451{left:569.706667pt;}
.x82_c00451{left:576.000000pt;}
.xb1_c00451{left:577.333333pt;}
.x79_c00451{left:578.666667pt;}
.x91_c00451{left:580.000000pt;}
.x66_c00451{left:581.706667pt;}
.x47_c00451{left:582.666667pt;}
.xbb_c00451{left:584.000000pt;}
.x52_c00451{left:585.333333pt;}
.x3d_c00451{left:586.293333pt;}
.x32_c00451{left:587.626667pt;}
.xf_c00451{left:589.333333pt;}
.x25_c00451{left:591.626667pt;}
.x5e_c00451{left:593.706667pt;}
.xac_c00451{left:594.666667pt;}
.x48_c00451{left:600.373333pt;}
.xc9_c00451{left:602.293333pt;}
.xee_c00451{left:605.333333pt;}
.xb2_c00451{left:606.666667pt;}
.x83_c00451{left:608.000000pt;}
.xd9_c00451{left:610.666667pt;}
.xce_c00451{left:612.000000pt;}
.xe2_c00451{left:613.333333pt;}
.x67_c00451{left:614.666667pt;}
.x3e_c00451{left:616.000000pt;}
.xe1_c00451{left:617.333333pt;}
.x26_c00451{left:620.373333pt;}
.x92_c00451{left:621.706667pt;}
.x5f_c00451{left:624.000000pt;}
.x84_c00451{left:625.706667pt;}
.x49_c00451{left:628.000000pt;}
.x33_c00451{left:631.040000pt;}
.xbc_c00451{left:632.000000pt;}
.x10_c00451{left:634.666667pt;}
.x68_c00451{left:637.333333pt;}
.xb3_c00451{left:638.293333pt;}
.xef_c00451{left:650.666667pt;}
.xda_c00451{left:653.333333pt;}
.xf3_c00451{left:657.333333pt;}
.xdc_c00451{left:658.666667pt;}
.xd6_c00451{left:660.960000pt;}
.xcf_c00451{left:667.626667pt;}
.xea_c00451{left:669.333333pt;}
.xeb_c00451{left:677.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_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_a4f168ff9db55f1312243354.woff2')format("woff");}.ff1_c00452{font-family:ff1_c00452;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6c_c00452{transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);}
.mac_c00452{transform:matrix(0.336273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336273,0.000000,0.000000,0.250000,0,0);}
.m3a_c00452{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m25_c00452{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.m5b_c00452{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m6a_c00452{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mb6_c00452{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.me3_c00452{transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);}
.me1_c00452{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m11_c00452{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mf2_c00452{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m54_c00452{transform:matrix(0.378151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378151,0.000000,0.000000,0.250000,0,0);}
.m4d_c00452{transform:matrix(0.381513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381513,0.000000,0.000000,0.250000,0,0);}
.m77_c00452{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.mc6_c00452{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m73_c00452{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m9a_c00452{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.mc5_c00452{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mc7_c00452{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mbc_c00452{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.ma7_c00452{transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);}
.m7_c00452{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.meb_c00452{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.md2_c00452{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m39_c00452{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.me0_c00452{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m1a_c00452{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m68_c00452{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.me2_c00452{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m30_c00452{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m4e_c00452{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m95_c00452{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);}
.m80_c00452{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.mb2_c00452{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m3_c00452{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m74_c00452{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.ma6_c00452{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m48_c00452{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mdb_c00452{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.me6_c00452{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m64_c00452{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mb0_c00452{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m7f_c00452{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m98_c00452{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m15_c00452{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.mc3_c00452{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mb3_c00452{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mab_c00452{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mad_c00452{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m1d_c00452{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m90_c00452{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.mae_c00452{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m10_c00452{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m8a_c00452{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m9f_c00452{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m87_c00452{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m20_c00452{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mbe_c00452{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.md8_c00452{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m76_c00452{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m3d_c00452{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m97_c00452{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m6f_c00452{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.me9_c00452{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m5a_c00452{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m6d_c00452{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m67_c00452{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m19_c00452{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m38_c00452{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m6_c00452{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m22_c00452{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.md_c00452{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m71_c00452{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m65_c00452{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.m70_c00452{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m1b_c00452{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m8d_c00452{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.mcf_c00452{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.mf1_c00452{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m4f_c00452{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.md3_c00452{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.md6_c00452{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m5_c00452{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m2c_c00452{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m60_c00452{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m84_c00452{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.maf_c00452{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);}
.mcb_c00452{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m52_c00452{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m94_c00452{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mb_c00452{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.ma2_c00452{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m96_c00452{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m2b_c00452{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m45_c00452{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m79_c00452{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m51_c00452{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m5e_c00452{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.mc9_c00452{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m28_c00452{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m40_c00452{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.m41_c00452{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m42_c00452{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mdf_c00452{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.m5c_c00452{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m3f_c00452{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.md9_c00452{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m47_c00452{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.m44_c00452{transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);}
.ma4_c00452{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m91_c00452{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mc8_c00452{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.md0_c00452{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m1_c00452{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m88_c00452{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mca_c00452{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mcc_c00452{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mbb_c00452{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.ma1_c00452{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m13_c00452{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);}
.m6e_c00452{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.mde_c00452{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m14_c00452{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mf0_c00452{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m8e_c00452{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m7a_c00452{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m23_c00452{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m35_c00452{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m4a_c00452{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m7d_c00452{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m9e_c00452{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m3c_c00452{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m5d_c00452{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m86_c00452{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.mb5_c00452{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m83_c00452{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m3b_c00452{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m3e_c00452{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.ma8_c00452{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.md1_c00452{transform:matrix(0.522263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522263,0.000000,0.000000,0.250000,0,0);}
.m61_c00452{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mb8_c00452{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mb9_c00452{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m1f_c00452{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mbf_c00452{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m32_c00452{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.me7_c00452{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m99_c00452{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mbd_c00452{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mc_c00452{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mdd_c00452{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m37_c00452{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m2a_c00452{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m59_c00452{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m9c_c00452{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mb4_c00452{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m49_c00452{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mc1_c00452{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.me_c00452{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m21_c00452{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m36_c00452{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m78_c00452{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mdc_c00452{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m31_c00452{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m7e_c00452{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m8c_c00452{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m17_c00452{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m7c_c00452{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m85_c00452{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m62_c00452{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m55_c00452{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.med_c00452{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.ma0_c00452{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mea_c00452{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m1c_c00452{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m27_c00452{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m56_c00452{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.ma5_c00452{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m72_c00452{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m8_c00452{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mb1_c00452{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.mc0_c00452{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m2f_c00452{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.md4_c00452{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m46_c00452{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.me5_c00452{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m34_c00452{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m29_c00452{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m6b_c00452{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.ma3_c00452{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mba_c00452{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m81_c00452{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.mef_c00452{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m33_c00452{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m82_c00452{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mee_c00452{transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);}
.m26_c00452{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m57_c00452{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m2_c00452{transform:matrix(0.591805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591805,0.000000,0.000000,0.250000,0,0);}
.ma_c00452{transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);}
.m63_c00452{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.mec_c00452{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m43_c00452{transform:matrix(0.593880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593880,0.000000,0.000000,0.250000,0,0);}
.md7_c00452{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mcd_c00452{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_c00452{transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);}
.m8f_c00452{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.maa_c00452{transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);}
.m1e_c00452{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mf_c00452{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m2e_c00452{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);}
.m9_c00452{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.me4_c00452{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.m89_c00452{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m53_c00452{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m0_c00452{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.md5_c00452{transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);}
.m50_c00452{transform:matrix(0.655294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655294,0.000000,0.000000,0.250000,0,0);}
.m5f_c00452{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m4b_c00452{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m12_c00452{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m66_c00452{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m75_c00452{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m8b_c00452{transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);}
.mce_c00452{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m69_c00452{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.me8_c00452{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.mc2_c00452{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m18_c00452{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m24_c00452{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m7b_c00452{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m4_c00452{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m4c_c00452{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m58_c00452{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mb7_c00452{transform:matrix(0.772059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772059,0.000000,0.000000,0.250000,0,0);}
.m9b_c00452{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m92_c00452{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m93_c00452{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mda_c00452{transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);}
.m9d_c00452{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m2d_c00452{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m16_c00452{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.ma9_c00452{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws2_c00452{word-spacing:-6.184625px;}
.ws1_c00452{word-spacing:-3.058205px;}
.ws0_c00452{word-spacing:-2.181499px;}
.ws3_c00452{word-spacing:0.000000px;}
.fc0_c00452{color:transparent;}
.fs6_c00452{font-size:3.420000px;}
.fs3_c00452{font-size:18.720000px;}
.fs0_c00452{font-size:20.400000px;}
.fs4_c00452{font-size:25.500000px;}
.fs1_c00452{font-size:28.920000px;}
.fs5_c00452{font-size:32.340000px;}
.fs2_c00452{font-size:35.700000px;}
.fs7_c00452{font-size:39.120000px;}
.y0_c00452{bottom:0.000000px;}
.ye2_c00452{bottom:253.245000px;}
.ye4_c00452{bottom:254.745000px;}
.ye0_c00452{bottom:255.405000px;}
.ye1_c00452{bottom:255.630000px;}
.ye3_c00452{bottom:256.905000px;}
.ydc_c00452{bottom:272.325000px;}
.ydd_c00452{bottom:272.745000px;}
.yd8_c00452{bottom:272.970000px;}
.ydf_c00452{bottom:274.245000px;}
.yd9_c00452{bottom:274.470000px;}
.yda_c00452{bottom:274.905000px;}
.yde_c00452{bottom:275.130000px;}
.ydb_c00452{bottom:275.970000px;}
.yd7_c00452{bottom:276.405000px;}
.yd3_c00452{bottom:293.745000px;}
.yd5_c00452{bottom:294.630000px;}
.yd4_c00452{bottom:295.905000px;}
.yd6_c00452{bottom:296.970000px;}
.yd0_c00452{bottom:311.745000px;}
.yd2_c00452{bottom:313.245000px;}
.ycf_c00452{bottom:314.130000px;}
.yce_c00452{bottom:315.405000px;}
.yd1_c00452{bottom:316.470000px;}
.yca_c00452{bottom:331.245000px;}
.yc8_c00452{bottom:332.745000px;}
.ycb_c00452{bottom:333.405000px;}
.ycc_c00452{bottom:334.470000px;}
.yc9_c00452{bottom:334.905000px;}
.ycd_c00452{bottom:336.405000px;}
.yc6_c00452{bottom:352.245000px;}
.yc5_c00452{bottom:353.130000px;}
.yc4_c00452{bottom:353.325000px;}
.yc2_c00452{bottom:354.405000px;}
.yc3_c00452{bottom:355.470000px;}
.yc7_c00452{bottom:355.905000px;}
.ybf_c00452{bottom:371.745000px;}
.yc0_c00452{bottom:372.630000px;}
.ybe_c00452{bottom:373.050000px;}
.ybd_c00452{bottom:373.245000px;}
.ybc_c00452{bottom:373.905000px;}
.yc1_c00452{bottom:375.405000px;}
.yb9_c00452{bottom:391.245000px;}
.yba_c00452{bottom:392.970000px;}
.yb8_c00452{bottom:393.405000px;}
.ybb_c00452{bottom:394.905000px;}
.yb6_c00452{bottom:409.905000px;}
.yb3_c00452{bottom:410.745000px;}
.yb7_c00452{bottom:412.050000px;}
.yb5_c00452{bottom:412.905000px;}
.yb2_c00452{bottom:413.325000px;}
.yb4_c00452{bottom:413.970000px;}
.yb1_c00452{bottom:414.405000px;}
.yb0_c00452{bottom:430.245000px;}
.yae_c00452{bottom:431.745000px;}
.yaf_c00452{bottom:432.405000px;}
.yad_c00452{bottom:432.630000px;}
.yac_c00452{bottom:433.905000px;}
.ya8_c00452{bottom:449.745000px;}
.ya9_c00452{bottom:450.825000px;}
.ya6_c00452{bottom:451.245000px;}
.yaa_c00452{bottom:451.470000px;}
.ya7_c00452{bottom:451.905000px;}
.yab_c00452{bottom:452.970000px;}
.ya4_c00452{bottom:469.245000px;}
.ya1_c00452{bottom:470.745000px;}
.ya5_c00452{bottom:471.405000px;}
.ya3_c00452{bottom:471.630000px;}
.ya2_c00452{bottom:472.905000px;}
.ya0_c00452{bottom:473.130000px;}
.y9f_c00452{bottom:488.970000px;}
.y9e_c00452{bottom:490.245000px;}
.y9d_c00452{bottom:492.405000px;}
.y9c_c00452{bottom:508.245000px;}
.y99_c00452{bottom:509.745000px;}
.y9b_c00452{bottom:510.630000px;}
.y98_c00452{bottom:511.905000px;}
.y9a_c00452{bottom:512.970000px;}
.y93_c00452{bottom:529.245000px;}
.y95_c00452{bottom:529.905000px;}
.y96_c00452{bottom:530.550000px;}
.y90_c00452{bottom:530.745000px;}
.y92_c00452{bottom:531.405000px;}
.y97_c00452{bottom:531.630000px;}
.y94_c00452{bottom:532.470000px;}
.y91_c00452{bottom:532.905000px;}
.y8d_c00452{bottom:548.745000px;}
.y8e_c00452{bottom:550.245000px;}
.y8f_c00452{bottom:550.905000px;}
.y8c_c00452{bottom:551.130000px;}
.y8b_c00452{bottom:552.405000px;}
.y87_c00452{bottom:567.405000px;}
.y8a_c00452{bottom:568.245000px;}
.y89_c00452{bottom:569.745000px;}
.y88_c00452{bottom:570.630000px;}
.y86_c00452{bottom:571.905000px;}
.y85_c00452{bottom:588.180000px;}
.y84_c00452{bottom:589.245000px;}
.y83_c00452{bottom:590.130000px;}
.y81_c00452{bottom:591.405000px;}
.y82_c00452{bottom:591.420000px;}
.y80_c00452{bottom:608.745000px;}
.y7f_c00452{bottom:610.470000px;}
.y7e_c00452{bottom:610.905000px;}
.y7b_c00452{bottom:626.970000px;}
.y78_c00452{bottom:628.245000px;}
.y79_c00452{bottom:628.470000px;}
.y7a_c00452{bottom:629.325000px;}
.y7c_c00452{bottom:629.970000px;}
.y77_c00452{bottom:630.405000px;}
.y7d_c00452{bottom:631.905000px;}
.y75_c00452{bottom:646.905000px;}
.y70_c00452{bottom:647.325000px;}
.y76_c00452{bottom:647.745000px;}
.y74_c00452{bottom:649.245000px;}
.y73_c00452{bottom:649.905000px;}
.y71_c00452{bottom:650.130000px;}
.y72_c00452{bottom:651.405000px;}
.y6e_c00452{bottom:667.245000px;}
.y6f_c00452{bottom:667.905000px;}
.y68_c00452{bottom:668.745000px;}
.y6b_c00452{bottom:669.405000px;}
.y6d_c00452{bottom:669.630000px;}
.y69_c00452{bottom:669.825000px;}
.y6c_c00452{bottom:670.470000px;}
.y6a_c00452{bottom:670.905000px;}
.y65_c00452{bottom:688.245000px;}
.y67_c00452{bottom:689.130000px;}
.y66_c00452{bottom:689.970000px;}
.y63_c00452{bottom:690.405000px;}
.y64_c00452{bottom:691.470000px;}
.y5e_c00452{bottom:707.745000px;}
.y62_c00452{bottom:708.825000px;}
.y60_c00452{bottom:709.470000px;}
.y5f_c00452{bottom:709.905000px;}
.y61_c00452{bottom:710.970000px;}
.y5d_c00452{bottom:726.405000px;}
.y5b_c00452{bottom:727.245000px;}
.y59_c00452{bottom:728.130000px;}
.y5c_c00452{bottom:728.970000px;}
.y58_c00452{bottom:729.405000px;}
.y5a_c00452{bottom:730.470000px;}
.y55_c00452{bottom:746.745000px;}
.y56_c00452{bottom:748.905000px;}
.y57_c00452{bottom:749.130000px;}
.y52_c00452{bottom:765.405000px;}
.y53_c00452{bottom:766.245000px;}
.y54_c00452{bottom:767.325000px;}
.y50_c00452{bottom:768.405000px;}
.y51_c00452{bottom:769.470000px;}
.y4c_c00452{bottom:785.745000px;}
.y4e_c00452{bottom:787.905000px;}
.y4b_c00452{bottom:788.130000px;}
.y4f_c00452{bottom:788.970000px;}
.y4d_c00452{bottom:789.405000px;}
.y48_c00452{bottom:805.245000px;}
.y4a_c00452{bottom:805.470000px;}
.y49_c00452{bottom:806.325000px;}
.y44_c00452{bottom:806.745000px;}
.y46_c00452{bottom:807.405000px;}
.y47_c00452{bottom:807.630000px;}
.y43_c00452{bottom:807.825000px;}
.y45_c00452{bottom:808.470000px;}
.y42_c00452{bottom:808.905000px;}
.y41_c00452{bottom:824.745000px;}
.y3f_c00452{bottom:824.970000px;}
.y3d_c00452{bottom:826.245000px;}
.y3b_c00452{bottom:826.905000px;}
.y3c_c00452{bottom:827.130000px;}
.y40_c00452{bottom:827.970000px;}
.y3e_c00452{bottom:828.405000px;}
.y3a_c00452{bottom:845.325000px;}
.y38_c00452{bottom:845.745000px;}
.y36_c00452{bottom:846.630000px;}
.y35_c00452{bottom:847.470000px;}
.y37_c00452{bottom:847.905000px;}
.y39_c00452{bottom:848.970000px;}
.y32_c00452{bottom:865.245000px;}
.y34_c00452{bottom:866.130000px;}
.y31_c00452{bottom:866.325000px;}
.y30_c00452{bottom:867.405000px;}
.y33_c00452{bottom:868.470000px;}
.y2e_c00452{bottom:883.905000px;}
.y2c_c00452{bottom:884.745000px;}
.y2d_c00452{bottom:885.825000px;}
.y2b_c00452{bottom:886.905000px;}
.y2f_c00452{bottom:887.970000px;}
.y29_c00452{bottom:904.245000px;}
.y28_c00452{bottom:905.130000px;}
.y25_c00452{bottom:905.745000px;}
.y27_c00452{bottom:906.405000px;}
.y24_c00452{bottom:906.825000px;}
.y2a_c00452{bottom:907.470000px;}
.y26_c00452{bottom:907.905000px;}
.y21_c00452{bottom:924.405000px;}
.y23_c00452{bottom:924.825000px;}
.y22_c00452{bottom:925.905000px;}
.y20_c00452{bottom:926.325000px;}
.y1f_c00452{bottom:927.405000px;}
.y1c_c00452{bottom:944.745000px;}
.y1e_c00452{bottom:945.630000px;}
.y1d_c00452{bottom:946.905000px;}
.y19_c00452{bottom:962.325000px;}
.y1b_c00452{bottom:965.130000px;}
.y1a_c00452{bottom:965.970000px;}
.y18_c00452{bottom:966.405000px;}
.y16_c00452{bottom:984.630000px;}
.y17_c00452{bottom:985.905000px;}
.y15_c00452{bottom:1002.405000px;}
.y12_c00452{bottom:1003.245000px;}
.y13_c00452{bottom:1004.130000px;}
.y11_c00452{bottom:1005.405000px;}
.y14_c00452{bottom:1006.470000px;}
.ye_c00452{bottom:1021.245000px;}
.yc_c00452{bottom:1022.745000px;}
.yd_c00452{bottom:1023.630000px;}
.yf_c00452{bottom:1024.905000px;}
.y10_c00452{bottom:1025.970000px;}
.y9_c00452{bottom:1041.405000px;}
.y8_c00452{bottom:1042.245000px;}
.yb_c00452{bottom:1043.970000px;}
.y7_c00452{bottom:1044.405000px;}
.ya_c00452{bottom:1045.470000px;}
.y4_c00452{bottom:1061.745000px;}
.y3_c00452{bottom:1063.905000px;}
.y5_c00452{bottom:1064.130000px;}
.y6_c00452{bottom:1064.970000px;}
.y2_c00452{bottom:1099.905000px;}
.y1_c00452{bottom:1102.050000px;}
.h7_c00452{height:4.206533px;}
.h4_c00452{height:23.025234px;}
.h1_c00452{height:25.091602px;}
.h5_c00452{height:31.364502px;}
.h2_c00452{height:35.571035px;}
.h6_c00452{height:39.777568px;}
.h3_c00452{height:43.910303px;}
.h8_c00452{height:48.116836px;}
.h0_c00452{height:1335.000000px;}
.w0_c00452{width:880.500000px;}
.x0_c00452{left:0.000000px;}
.xe_c00452{left:150.420000px;}
.x3_c00452{left:151.500000px;}
.xa5_c00452{left:153.000000px;}
.xe8_c00452{left:154.500000px;}
.xea_c00452{left:155.775000px;}
.x3a_c00452{left:168.000000px;}
.xd0_c00452{left:169.080000px;}
.xb0_c00452{left:171.420000px;}
.xfe_c00452{left:172.500000px;}
.x38_c00452{left:178.920000px;}
.x28_c00452{left:180.000000px;}
.x10e_c00452{left:186.000000px;}
.x1d_c00452{left:187.500000px;}
.x99_c00452{left:190.500000px;}
.x5f_c00452{left:192.420000px;}
.x7b_c00452{left:193.500000px;}
.x8e_c00452{left:195.000000px;}
.x39_c00452{left:198.000000px;}
.x44_c00452{left:199.500000px;}
.xd1_c00452{left:201.420000px;}
.xf_c00452{left:205.080000px;}
.x101_c00452{left:207.000000px;}
.x7c_c00452{left:208.500000px;}
.xc0_c00452{left:209.580000px;}
.xa0_c00452{left:211.920000px;}
.xc6_c00452{left:213.000000px;}
.xcb_c00452{left:214.500000px;}
.xeb_c00452{left:216.420000px;}
.x45_c00452{left:217.500000px;}
.x1e_c00452{left:219.000000px;}
.x29_c00452{left:220.080000px;}
.x83_c00452{left:222.000000px;}
.xb9_c00452{left:225.420000px;}
.x4f_c00452{left:229.920000px;}
.x3b_c00452{left:231.000000px;}
.xb1_c00452{left:232.080000px;}
.xa6_c00452{left:233.580000px;}
.xdc_c00452{left:235.920000px;}
.x2a_c00452{left:237.420000px;}
.xcc_c00452{left:238.500000px;}
.x4_c00452{left:239.580000px;}
.x105_c00452{left:242.580000px;}
.xd8_c00452{left:244.080000px;}
.xa1_c00452{left:246.000000px;}
.xb2_c00452{left:249.000000px;}
.x3c_c00452{left:250.920000px;}
.x7d_c00452{left:253.500000px;}
.x71_c00452{left:255.000000px;}
.xa7_c00452{left:256.920000px;}
.xf4_c00452{left:258.000000px;}
.x60_c00452{left:259.080000px;}
.x10_c00452{left:261.000000px;}
.x8f_c00452{left:262.920000px;}
.x69_c00452{left:264.000000px;}
.x2b_c00452{left:265.920000px;}
.x84_c00452{left:268.500000px;}
.xab_c00452{left:271.500000px;}
.x3d_c00452{left:277.080000px;}
.x61_c00452{left:279.000000px;}
.x102_c00452{left:280.920000px;}
.x10f_c00452{left:282.420000px;}
.xac_c00452{left:283.500000px;}
.x85_c00452{left:285.420000px;}
.x1f_c00452{left:286.500000px;}
.x11_c00452{left:288.420000px;}
.x5_c00452{left:289.500000px;}
.x72_c00452{left:291.420000px;}
.x55_c00452{left:292.500000px;}
.xc1_c00452{left:297.420000px;}
.xe3_c00452{left:300.000000px;}
.x46_c00452{left:301.500000px;}
.xcd_c00452{left:306.420000px;}
.xd9_c00452{left:309.000000px;}
.xdd_c00452{left:310.080000px;}
.x56_c00452{left:312.420000px;}
.x2c_c00452{left:313.500000px;}
.x10b_c00452{left:316.500000px;}
.x104_c00452{left:317.580000px;}
.xe4_c00452{left:319.920000px;}
.x6_c00452{left:321.000000px;}
.xec_c00452{left:322.080000px;}
.x12_c00452{left:325.500000px;}
.x47_c00452{left:328.080000px;}
.x90_c00452{left:331.500000px;}
.x6a_c00452{left:334.500000px;}
.xce_c00452{left:335.580000px;}
.x3e_c00452{left:337.080000px;}
.x57_c00452{left:338.580000px;}
.xba_c00452{left:340.500000px;}
.x50_c00452{left:342.420000px;}
.x13_c00452{left:345.855000px;}
.xad_c00452{left:348.000000px;}
.xb3_c00452{left:349.920000px;}
.xa8_c00452{left:351.420000px;}
.x62_c00452{left:354.420000px;}
.xd2_c00452{left:355.500000px;}
.x20_c00452{left:357.000000px;}
.xf5_c00452{left:358.500000px;}
.x7_c00452{left:360.000000px;}
.xf0_c00452{left:363.000000px;}
.xc7_c00452{left:364.080000px;}
.x3f_c00452{left:367.500000px;}
.xda_c00452{left:369.855000px;}
.x106_c00452{left:370.920000px;}
.x110_c00452{left:373.080000px;}
.x48_c00452{left:374.580000px;}
.x86_c00452{left:376.500000px;}
.x2d_c00452{left:378.420000px;}
.xf6_c00452{left:379.920000px;}
.x6b_c00452{left:382.080000px;}
.x51_c00452{left:384.420000px;}
.x91_c00452{left:385.500000px;}
.x14_c00452{left:386.775000px;}
.xd3_c00452{left:388.500000px;}
.x9a_c00452{left:391.500000px;}
.x58_c00452{left:393.000000px;}
.x49_c00452{left:396.420000px;}
.x107_c00452{left:397.500000px;}
.x73_c00452{left:401.775000px;}
.x2e_c00452{left:403.920000px;}
.x1_c00452{left:405.000000px;}
.xa2_c00452{left:407.580000px;}
.xf7_c00452{left:409.920000px;}
.xae_c00452{left:411.420000px;}
.xc2_c00452{left:412.500000px;}
.x63_c00452{left:414.420000px;}
.xfa_c00452{left:415.920000px;}
.xde_c00452{left:417.000000px;}
.x8_c00452{left:418.920000px;}
.x21_c00452{left:420.420000px;}
.x15_c00452{left:421.500000px;}
.x10c_c00452{left:423.000000px;}
.xd4_c00452{left:424.500000px;}
.x7e_c00452{left:427.500000px;}
.x92_c00452{left:430.080000px;}
.x87_c00452{left:432.000000px;}
.x6c_c00452{left:433.500000px;}
.xed_c00452{left:435.000000px;}
.x4a_c00452{left:436.080000px;}
.x74_c00452{left:441.000000px;}
.x16_c00452{left:442.920000px;}
.xbb_c00452{left:445.500000px;}
.xff_c00452{left:447.000000px;}
.x108_c00452{left:448.500000px;}
.x88_c00452{left:450.420000px;}
.x52_c00452{left:451.500000px;}
.x22_c00452{left:453.000000px;}
.x4b_c00452{left:454.920000px;}
.x59_c00452{left:456.000000px;}
.xe9_c00452{left:459.000000px;}
.xb4_c00452{left:460.920000px;}
.x93_c00452{left:463.500000px;}
.x103_c00452{left:464.580000px;}
.x9b_c00452{left:466.080000px;}
.xee_c00452{left:468.420000px;}
.x2f_c00452{left:469.920000px;}
.x17_c00452{left:471.000000px;}
.x75_c00452{left:472.500000px;}
.x5a_c00452{left:475.500000px;}
.x89_c00452{left:477.420000px;}
.x64_c00452{left:480.420000px;}
.x4c_c00452{left:481.500000px;}
.x9c_c00452{left:484.920000px;}
.xa3_c00452{left:487.920000px;}
.xe5_c00452{left:490.500000px;}
.xd5_c00452{left:493.920000px;}
.x30_c00452{left:496.920000px;}
.xdf_c00452{left:498.000000px;}
.x9_c00452{left:499.500000px;}
.x18_c00452{left:502.920000px;}
.x40_c00452{left:505.080000px;}
.x76_c00452{left:507.000000px;}
.xaf_c00452{left:510.000000px;}
.x9d_c00452{left:511.500000px;}
.x100_c00452{left:513.000000px;}
.x111_c00452{left:514.080000px;}
.x6d_c00452{left:516.000000px;}
.x4d_c00452{left:519.420000px;}
.xc3_c00452{left:520.920000px;}
.x65_c00452{left:522.420000px;}
.x23_c00452{left:523.500000px;}
.x31_c00452{left:525.420000px;}
.xe0_c00452{left:527.580000px;}
.xdb_c00452{left:532.500000px;}
.x53_c00452{left:535.080000px;}
.xf1_c00452{left:538.500000px;}
.x109_c00452{left:540.000000px;}
.xc8_c00452{left:541.080000px;}
.xf8_c00452{left:542.580000px;}
.x19_c00452{left:544.080000px;}
.xa_c00452{left:545.580000px;}
.x94_c00452{left:547.920000px;}
.xc4_c00452{left:549.000000px;}
.xb5_c00452{left:550.500000px;}
.x24_c00452{left:553.500000px;}
.xe6_c00452{left:554.580000px;}
.xf2_c00452{left:555.855000px;}
.x32_c00452{left:556.920000px;}
.x112_c00452{left:558.000000px;}
.xfb_c00452{left:559.920000px;}
.x66_c00452{left:561.420000px;}
.xc9_c00452{left:562.920000px;}
.x1a_c00452{left:564.000000px;}
.x9e_c00452{left:567.000000px;}
.xb6_c00452{left:569.580000px;}
.xb_c00452{left:571.500000px;}
.x8a_c00452{left:573.000000px;}
.x77_c00452{left:574.080000px;}
.x95_c00452{left:576.420000px;}
.x7f_c00452{left:580.500000px;}
.x33_c00452{left:583.500000px;}
.xd6_c00452{left:586.920000px;}
.xfc_c00452{left:588.000000px;}
.x5b_c00452{left:589.080000px;}
.x67_c00452{left:590.580000px;}
.x78_c00452{left:592.500000px;}
.xc5_c00452{left:594.000000px;}
.xe7_c00452{left:595.500000px;}
.x10d_c00452{left:597.000000px;}
.x41_c00452{left:598.920000px;}
.x4e_c00452{left:600.000000px;}
.xe1_c00452{left:601.500000px;}
.xef_c00452{left:603.000000px;}
.x6e_c00452{left:604.080000px;}
.xbc_c00452{left:612.000000px;}
.xca_c00452{left:613.920000px;}
.x79_c00452{left:615.420000px;}
.x80_c00452{left:616.500000px;}
.x34_c00452{left:619.920000px;}
.x5c_c00452{left:622.080000px;}
.x6f_c00452{left:624.000000px;}
.x25_c00452{left:625.920000px;}
.xb7_c00452{left:628.500000px;}
.xbd_c00452{left:631.500000px;}
.xc_c00452{left:633.000000px;}
.x96_c00452{left:634.500000px;}
.x42_c00452{left:635.580000px;}
.x113_c00452{left:637.080000px;}
.xa4_c00452{left:638.580000px;}
.x8b_c00452{left:641.580000px;}
.x9f_c00452{left:643.500000px;}
.xa9_c00452{left:645.000000px;}
.x5d_c00452{left:646.920000px;}
.x35_c00452{left:651.000000px;}
.x68_c00452{left:652.920000px;}
.xe2_c00452{left:654.000000px;}
.x1b_c00452{left:655.500000px;}
.x97_c00452{left:658.920000px;}
.xfd_c00452{left:661.500000px;}
.xd_c00452{left:663.420000px;}
.x8c_c00452{left:664.500000px;}
.xcf_c00452{left:666.000000px;}
.x81_c00452{left:667.500000px;}
.x1c_c00452{left:668.580000px;}
.xf3_c00452{left:671.355000px;}
.x7a_c00452{left:672.420000px;}
.xb8_c00452{left:673.500000px;}
.x26_c00452{left:674.580000px;}
.x36_c00452{left:676.080000px;}
.xaa_c00452{left:679.080000px;}
.x54_c00452{left:680.580000px;}
.xbe_c00452{left:682.080000px;}
.x5e_c00452{left:688.080000px;}
.x8d_c00452{left:691.500000px;}
.x27_c00452{left:694.500000px;}
.x82_c00452{left:696.420000px;}
.x70_c00452{left:697.500000px;}
.x10a_c00452{left:702.000000px;}
.x2_c00452{left:703.500000px;}
.xbf_c00452{left:704.580000px;}
.x37_c00452{left:706.920000px;}
.x43_c00452{left:708.000000px;}
.xd7_c00452{left:709.500000px;}
.xf9_c00452{left:718.080000px;}
.x98_c00452{left:723.000000px;}
@media print{
.v0_c00452{vertical-align:0.000000pt;}
.ls0_c00452{letter-spacing:0.000000pt;}
.ws2_c00452{word-spacing:-5.497444pt;}
.ws1_c00452{word-spacing:-2.718405pt;}
.ws0_c00452{word-spacing:-1.939110pt;}
.ws3_c00452{word-spacing:0.000000pt;}
.fs6_c00452{font-size:3.040000pt;}
.fs3_c00452{font-size:16.640000pt;}
.fs0_c00452{font-size:18.133333pt;}
.fs4_c00452{font-size:22.666667pt;}
.fs1_c00452{font-size:25.706667pt;}
.fs5_c00452{font-size:28.746667pt;}
.fs2_c00452{font-size:31.733333pt;}
.fs7_c00452{font-size:34.773333pt;}
.y0_c00452{bottom:0.000000pt;}
.ye2_c00452{bottom:225.106667pt;}
.ye4_c00452{bottom:226.440000pt;}
.ye0_c00452{bottom:227.026667pt;}
.ye1_c00452{bottom:227.226667pt;}
.ye3_c00452{bottom:228.360000pt;}
.ydc_c00452{bottom:242.066667pt;}
.ydd_c00452{bottom:242.440000pt;}
.yd8_c00452{bottom:242.640000pt;}
.ydf_c00452{bottom:243.773333pt;}
.yd9_c00452{bottom:243.973333pt;}
.yda_c00452{bottom:244.360000pt;}
.yde_c00452{bottom:244.560000pt;}
.ydb_c00452{bottom:245.306667pt;}
.yd7_c00452{bottom:245.693333pt;}
.yd3_c00452{bottom:261.106667pt;}
.yd5_c00452{bottom:261.893333pt;}
.yd4_c00452{bottom:263.026667pt;}
.yd6_c00452{bottom:263.973333pt;}
.yd0_c00452{bottom:277.106667pt;}
.yd2_c00452{bottom:278.440000pt;}
.ycf_c00452{bottom:279.226667pt;}
.yce_c00452{bottom:280.360000pt;}
.yd1_c00452{bottom:281.306667pt;}
.yca_c00452{bottom:294.440000pt;}
.yc8_c00452{bottom:295.773333pt;}
.ycb_c00452{bottom:296.360000pt;}
.ycc_c00452{bottom:297.306667pt;}
.yc9_c00452{bottom:297.693333pt;}
.ycd_c00452{bottom:299.026667pt;}
.yc6_c00452{bottom:313.106667pt;}
.yc5_c00452{bottom:313.893333pt;}
.yc4_c00452{bottom:314.066667pt;}
.yc2_c00452{bottom:315.026667pt;}
.yc3_c00452{bottom:315.973333pt;}
.yc7_c00452{bottom:316.360000pt;}
.ybf_c00452{bottom:330.440000pt;}
.yc0_c00452{bottom:331.226667pt;}
.ybe_c00452{bottom:331.600000pt;}
.ybd_c00452{bottom:331.773333pt;}
.ybc_c00452{bottom:332.360000pt;}
.yc1_c00452{bottom:333.693333pt;}
.yb9_c00452{bottom:347.773333pt;}
.yba_c00452{bottom:349.306667pt;}
.yb8_c00452{bottom:349.693333pt;}
.ybb_c00452{bottom:351.026667pt;}
.yb6_c00452{bottom:364.360000pt;}
.yb3_c00452{bottom:365.106667pt;}
.yb7_c00452{bottom:366.266667pt;}
.yb5_c00452{bottom:367.026667pt;}
.yb2_c00452{bottom:367.400000pt;}
.yb4_c00452{bottom:367.973333pt;}
.yb1_c00452{bottom:368.360000pt;}
.yb0_c00452{bottom:382.440000pt;}
.yae_c00452{bottom:383.773333pt;}
.yaf_c00452{bottom:384.360000pt;}
.yad_c00452{bottom:384.560000pt;}
.yac_c00452{bottom:385.693333pt;}
.ya8_c00452{bottom:399.773333pt;}
.ya9_c00452{bottom:400.733333pt;}
.ya6_c00452{bottom:401.106667pt;}
.yaa_c00452{bottom:401.306667pt;}
.ya7_c00452{bottom:401.693333pt;}
.yab_c00452{bottom:402.640000pt;}
.ya4_c00452{bottom:417.106667pt;}
.ya1_c00452{bottom:418.440000pt;}
.ya5_c00452{bottom:419.026667pt;}
.ya3_c00452{bottom:419.226667pt;}
.ya2_c00452{bottom:420.360000pt;}
.ya0_c00452{bottom:420.560000pt;}
.y9f_c00452{bottom:434.640000pt;}
.y9e_c00452{bottom:435.773333pt;}
.y9d_c00452{bottom:437.693333pt;}
.y9c_c00452{bottom:451.773333pt;}
.y99_c00452{bottom:453.106667pt;}
.y9b_c00452{bottom:453.893333pt;}
.y98_c00452{bottom:455.026667pt;}
.y9a_c00452{bottom:455.973333pt;}
.y93_c00452{bottom:470.440000pt;}
.y95_c00452{bottom:471.026667pt;}
.y96_c00452{bottom:471.600000pt;}
.y90_c00452{bottom:471.773333pt;}
.y92_c00452{bottom:472.360000pt;}
.y97_c00452{bottom:472.560000pt;}
.y94_c00452{bottom:473.306667pt;}
.y91_c00452{bottom:473.693333pt;}
.y8d_c00452{bottom:487.773333pt;}
.y8e_c00452{bottom:489.106667pt;}
.y8f_c00452{bottom:489.693333pt;}
.y8c_c00452{bottom:489.893333pt;}
.y8b_c00452{bottom:491.026667pt;}
.y87_c00452{bottom:504.360000pt;}
.y8a_c00452{bottom:505.106667pt;}
.y89_c00452{bottom:506.440000pt;}
.y88_c00452{bottom:507.226667pt;}
.y86_c00452{bottom:508.360000pt;}
.y85_c00452{bottom:522.826667pt;}
.y84_c00452{bottom:523.773333pt;}
.y83_c00452{bottom:524.560000pt;}
.y81_c00452{bottom:525.693333pt;}
.y82_c00452{bottom:525.706667pt;}
.y80_c00452{bottom:541.106667pt;}
.y7f_c00452{bottom:542.640000pt;}
.y7e_c00452{bottom:543.026667pt;}
.y7b_c00452{bottom:557.306667pt;}
.y78_c00452{bottom:558.440000pt;}
.y79_c00452{bottom:558.640000pt;}
.y7a_c00452{bottom:559.400000pt;}
.y7c_c00452{bottom:559.973333pt;}
.y77_c00452{bottom:560.360000pt;}
.y7d_c00452{bottom:561.693333pt;}
.y75_c00452{bottom:575.026667pt;}
.y70_c00452{bottom:575.400000pt;}
.y76_c00452{bottom:575.773333pt;}
.y74_c00452{bottom:577.106667pt;}
.y73_c00452{bottom:577.693333pt;}
.y71_c00452{bottom:577.893333pt;}
.y72_c00452{bottom:579.026667pt;}
.y6e_c00452{bottom:593.106667pt;}
.y6f_c00452{bottom:593.693333pt;}
.y68_c00452{bottom:594.440000pt;}
.y6b_c00452{bottom:595.026667pt;}
.y6d_c00452{bottom:595.226667pt;}
.y69_c00452{bottom:595.400000pt;}
.y6c_c00452{bottom:595.973333pt;}
.y6a_c00452{bottom:596.360000pt;}
.y65_c00452{bottom:611.773333pt;}
.y67_c00452{bottom:612.560000pt;}
.y66_c00452{bottom:613.306667pt;}
.y63_c00452{bottom:613.693333pt;}
.y64_c00452{bottom:614.640000pt;}
.y5e_c00452{bottom:629.106667pt;}
.y62_c00452{bottom:630.066667pt;}
.y60_c00452{bottom:630.640000pt;}
.y5f_c00452{bottom:631.026667pt;}
.y61_c00452{bottom:631.973333pt;}
.y5d_c00452{bottom:645.693333pt;}
.y5b_c00452{bottom:646.440000pt;}
.y59_c00452{bottom:647.226667pt;}
.y5c_c00452{bottom:647.973333pt;}
.y58_c00452{bottom:648.360000pt;}
.y5a_c00452{bottom:649.306667pt;}
.y55_c00452{bottom:663.773333pt;}
.y56_c00452{bottom:665.693333pt;}
.y57_c00452{bottom:665.893333pt;}
.y52_c00452{bottom:680.360000pt;}
.y53_c00452{bottom:681.106667pt;}
.y54_c00452{bottom:682.066667pt;}
.y50_c00452{bottom:683.026667pt;}
.y51_c00452{bottom:683.973333pt;}
.y4c_c00452{bottom:698.440000pt;}
.y4e_c00452{bottom:700.360000pt;}
.y4b_c00452{bottom:700.560000pt;}
.y4f_c00452{bottom:701.306667pt;}
.y4d_c00452{bottom:701.693333pt;}
.y48_c00452{bottom:715.773333pt;}
.y4a_c00452{bottom:715.973333pt;}
.y49_c00452{bottom:716.733333pt;}
.y44_c00452{bottom:717.106667pt;}
.y46_c00452{bottom:717.693333pt;}
.y47_c00452{bottom:717.893333pt;}
.y43_c00452{bottom:718.066667pt;}
.y45_c00452{bottom:718.640000pt;}
.y42_c00452{bottom:719.026667pt;}
.y41_c00452{bottom:733.106667pt;}
.y3f_c00452{bottom:733.306667pt;}
.y3d_c00452{bottom:734.440000pt;}
.y3b_c00452{bottom:735.026667pt;}
.y3c_c00452{bottom:735.226667pt;}
.y40_c00452{bottom:735.973333pt;}
.y3e_c00452{bottom:736.360000pt;}
.y3a_c00452{bottom:751.400000pt;}
.y38_c00452{bottom:751.773333pt;}
.y36_c00452{bottom:752.560000pt;}
.y35_c00452{bottom:753.306667pt;}
.y37_c00452{bottom:753.693333pt;}
.y39_c00452{bottom:754.640000pt;}
.y32_c00452{bottom:769.106667pt;}
.y34_c00452{bottom:769.893333pt;}
.y31_c00452{bottom:770.066667pt;}
.y30_c00452{bottom:771.026667pt;}
.y33_c00452{bottom:771.973333pt;}
.y2e_c00452{bottom:785.693333pt;}
.y2c_c00452{bottom:786.440000pt;}
.y2d_c00452{bottom:787.400000pt;}
.y2b_c00452{bottom:788.360000pt;}
.y2f_c00452{bottom:789.306667pt;}
.y29_c00452{bottom:803.773333pt;}
.y28_c00452{bottom:804.560000pt;}
.y25_c00452{bottom:805.106667pt;}
.y27_c00452{bottom:805.693333pt;}
.y24_c00452{bottom:806.066667pt;}
.y2a_c00452{bottom:806.640000pt;}
.y26_c00452{bottom:807.026667pt;}
.y21_c00452{bottom:821.693333pt;}
.y23_c00452{bottom:822.066667pt;}
.y22_c00452{bottom:823.026667pt;}
.y20_c00452{bottom:823.400000pt;}
.y1f_c00452{bottom:824.360000pt;}
.y1c_c00452{bottom:839.773333pt;}
.y1e_c00452{bottom:840.560000pt;}
.y1d_c00452{bottom:841.693333pt;}
.y19_c00452{bottom:855.400000pt;}
.y1b_c00452{bottom:857.893333pt;}
.y1a_c00452{bottom:858.640000pt;}
.y18_c00452{bottom:859.026667pt;}
.y16_c00452{bottom:875.226667pt;}
.y17_c00452{bottom:876.360000pt;}
.y15_c00452{bottom:891.026667pt;}
.y12_c00452{bottom:891.773333pt;}
.y13_c00452{bottom:892.560000pt;}
.y11_c00452{bottom:893.693333pt;}
.y14_c00452{bottom:894.640000pt;}
.ye_c00452{bottom:907.773333pt;}
.yc_c00452{bottom:909.106667pt;}
.yd_c00452{bottom:909.893333pt;}
.yf_c00452{bottom:911.026667pt;}
.y10_c00452{bottom:911.973333pt;}
.y9_c00452{bottom:925.693333pt;}
.y8_c00452{bottom:926.440000pt;}
.yb_c00452{bottom:927.973333pt;}
.y7_c00452{bottom:928.360000pt;}
.ya_c00452{bottom:929.306667pt;}
.y4_c00452{bottom:943.773333pt;}
.y3_c00452{bottom:945.693333pt;}
.y5_c00452{bottom:945.893333pt;}
.y6_c00452{bottom:946.640000pt;}
.y2_c00452{bottom:977.693333pt;}
.y1_c00452{bottom:979.600000pt;}
.h7_c00452{height:3.739141pt;}
.h4_c00452{height:20.466875pt;}
.h1_c00452{height:22.303646pt;}
.h5_c00452{height:27.879557pt;}
.h2_c00452{height:31.618698pt;}
.h6_c00452{height:35.357839pt;}
.h3_c00452{height:39.031380pt;}
.h8_c00452{height:42.770521pt;}
.h0_c00452{height:1186.666667pt;}
.w0_c00452{width:782.666667pt;}
.x0_c00452{left:0.000000pt;}
.xe_c00452{left:133.706667pt;}
.x3_c00452{left:134.666667pt;}
.xa5_c00452{left:136.000000pt;}
.xe8_c00452{left:137.333333pt;}
.xea_c00452{left:138.466667pt;}
.x3a_c00452{left:149.333333pt;}
.xd0_c00452{left:150.293333pt;}
.xb0_c00452{left:152.373333pt;}
.xfe_c00452{left:153.333333pt;}
.x38_c00452{left:159.040000pt;}
.x28_c00452{left:160.000000pt;}
.x10e_c00452{left:165.333333pt;}
.x1d_c00452{left:166.666667pt;}
.x99_c00452{left:169.333333pt;}
.x5f_c00452{left:171.040000pt;}
.x7b_c00452{left:172.000000pt;}
.x8e_c00452{left:173.333333pt;}
.x39_c00452{left:176.000000pt;}
.x44_c00452{left:177.333333pt;}
.xd1_c00452{left:179.040000pt;}
.xf_c00452{left:182.293333pt;}
.x101_c00452{left:184.000000pt;}
.x7c_c00452{left:185.333333pt;}
.xc0_c00452{left:186.293333pt;}
.xa0_c00452{left:188.373333pt;}
.xc6_c00452{left:189.333333pt;}
.xcb_c00452{left:190.666667pt;}
.xeb_c00452{left:192.373333pt;}
.x45_c00452{left:193.333333pt;}
.x1e_c00452{left:194.666667pt;}
.x29_c00452{left:195.626667pt;}
.x83_c00452{left:197.333333pt;}
.xb9_c00452{left:200.373333pt;}
.x4f_c00452{left:204.373333pt;}
.x3b_c00452{left:205.333333pt;}
.xb1_c00452{left:206.293333pt;}
.xa6_c00452{left:207.626667pt;}
.xdc_c00452{left:209.706667pt;}
.x2a_c00452{left:211.040000pt;}
.xcc_c00452{left:212.000000pt;}
.x4_c00452{left:212.960000pt;}
.x105_c00452{left:215.626667pt;}
.xd8_c00452{left:216.960000pt;}
.xa1_c00452{left:218.666667pt;}
.xb2_c00452{left:221.333333pt;}
.x3c_c00452{left:223.040000pt;}
.x7d_c00452{left:225.333333pt;}
.x71_c00452{left:226.666667pt;}
.xa7_c00452{left:228.373333pt;}
.xf4_c00452{left:229.333333pt;}
.x60_c00452{left:230.293333pt;}
.x10_c00452{left:232.000000pt;}
.x8f_c00452{left:233.706667pt;}
.x69_c00452{left:234.666667pt;}
.x2b_c00452{left:236.373333pt;}
.x84_c00452{left:238.666667pt;}
.xab_c00452{left:241.333333pt;}
.x3d_c00452{left:246.293333pt;}
.x61_c00452{left:248.000000pt;}
.x102_c00452{left:249.706667pt;}
.x10f_c00452{left:251.040000pt;}
.xac_c00452{left:252.000000pt;}
.x85_c00452{left:253.706667pt;}
.x1f_c00452{left:254.666667pt;}
.x11_c00452{left:256.373333pt;}
.x5_c00452{left:257.333333pt;}
.x72_c00452{left:259.040000pt;}
.x55_c00452{left:260.000000pt;}
.xc1_c00452{left:264.373333pt;}
.xe3_c00452{left:266.666667pt;}
.x46_c00452{left:268.000000pt;}
.xcd_c00452{left:272.373333pt;}
.xd9_c00452{left:274.666667pt;}
.xdd_c00452{left:275.626667pt;}
.x56_c00452{left:277.706667pt;}
.x2c_c00452{left:278.666667pt;}
.x10b_c00452{left:281.333333pt;}
.x104_c00452{left:282.293333pt;}
.xe4_c00452{left:284.373333pt;}
.x6_c00452{left:285.333333pt;}
.xec_c00452{left:286.293333pt;}
.x12_c00452{left:289.333333pt;}
.x47_c00452{left:291.626667pt;}
.x90_c00452{left:294.666667pt;}
.x6a_c00452{left:297.333333pt;}
.xce_c00452{left:298.293333pt;}
.x3e_c00452{left:299.626667pt;}
.x57_c00452{left:300.960000pt;}
.xba_c00452{left:302.666667pt;}
.x50_c00452{left:304.373333pt;}
.x13_c00452{left:307.426667pt;}
.xad_c00452{left:309.333333pt;}
.xb3_c00452{left:311.040000pt;}
.xa8_c00452{left:312.373333pt;}
.x62_c00452{left:315.040000pt;}
.xd2_c00452{left:316.000000pt;}
.x20_c00452{left:317.333333pt;}
.xf5_c00452{left:318.666667pt;}
.x7_c00452{left:320.000000pt;}
.xf0_c00452{left:322.666667pt;}
.xc7_c00452{left:323.626667pt;}
.x3f_c00452{left:326.666667pt;}
.xda_c00452{left:328.760000pt;}
.x106_c00452{left:329.706667pt;}
.x110_c00452{left:331.626667pt;}
.x48_c00452{left:332.960000pt;}
.x86_c00452{left:334.666667pt;}
.x2d_c00452{left:336.373333pt;}
.xf6_c00452{left:337.706667pt;}
.x6b_c00452{left:339.626667pt;}
.x51_c00452{left:341.706667pt;}
.x91_c00452{left:342.666667pt;}
.x14_c00452{left:343.800000pt;}
.xd3_c00452{left:345.333333pt;}
.x9a_c00452{left:348.000000pt;}
.x58_c00452{left:349.333333pt;}
.x49_c00452{left:352.373333pt;}
.x107_c00452{left:353.333333pt;}
.x73_c00452{left:357.133333pt;}
.x2e_c00452{left:359.040000pt;}
.x1_c00452{left:360.000000pt;}
.xa2_c00452{left:362.293333pt;}
.xf7_c00452{left:364.373333pt;}
.xae_c00452{left:365.706667pt;}
.xc2_c00452{left:366.666667pt;}
.x63_c00452{left:368.373333pt;}
.xfa_c00452{left:369.706667pt;}
.xde_c00452{left:370.666667pt;}
.x8_c00452{left:372.373333pt;}
.x21_c00452{left:373.706667pt;}
.x15_c00452{left:374.666667pt;}
.x10c_c00452{left:376.000000pt;}
.xd4_c00452{left:377.333333pt;}
.x7e_c00452{left:380.000000pt;}
.x92_c00452{left:382.293333pt;}
.x87_c00452{left:384.000000pt;}
.x6c_c00452{left:385.333333pt;}
.xed_c00452{left:386.666667pt;}
.x4a_c00452{left:387.626667pt;}
.x74_c00452{left:392.000000pt;}
.x16_c00452{left:393.706667pt;}
.xbb_c00452{left:396.000000pt;}
.xff_c00452{left:397.333333pt;}
.x108_c00452{left:398.666667pt;}
.x88_c00452{left:400.373333pt;}
.x52_c00452{left:401.333333pt;}
.x22_c00452{left:402.666667pt;}
.x4b_c00452{left:404.373333pt;}
.x59_c00452{left:405.333333pt;}
.xe9_c00452{left:408.000000pt;}
.xb4_c00452{left:409.706667pt;}
.x93_c00452{left:412.000000pt;}
.x103_c00452{left:412.960000pt;}
.x9b_c00452{left:414.293333pt;}
.xee_c00452{left:416.373333pt;}
.x2f_c00452{left:417.706667pt;}
.x17_c00452{left:418.666667pt;}
.x75_c00452{left:420.000000pt;}
.x5a_c00452{left:422.666667pt;}
.x89_c00452{left:424.373333pt;}
.x64_c00452{left:427.040000pt;}
.x4c_c00452{left:428.000000pt;}
.x9c_c00452{left:431.040000pt;}
.xa3_c00452{left:433.706667pt;}
.xe5_c00452{left:436.000000pt;}
.xd5_c00452{left:439.040000pt;}
.x30_c00452{left:441.706667pt;}
.xdf_c00452{left:442.666667pt;}
.x9_c00452{left:444.000000pt;}
.x18_c00452{left:447.040000pt;}
.x40_c00452{left:448.960000pt;}
.x76_c00452{left:450.666667pt;}
.xaf_c00452{left:453.333333pt;}
.x9d_c00452{left:454.666667pt;}
.x100_c00452{left:456.000000pt;}
.x111_c00452{left:456.960000pt;}
.x6d_c00452{left:458.666667pt;}
.x4d_c00452{left:461.706667pt;}
.xc3_c00452{left:463.040000pt;}
.x65_c00452{left:464.373333pt;}
.x23_c00452{left:465.333333pt;}
.x31_c00452{left:467.040000pt;}
.xe0_c00452{left:468.960000pt;}
.xdb_c00452{left:473.333333pt;}
.x53_c00452{left:475.626667pt;}
.xf1_c00452{left:478.666667pt;}
.x109_c00452{left:480.000000pt;}
.xc8_c00452{left:480.960000pt;}
.xf8_c00452{left:482.293333pt;}
.x19_c00452{left:483.626667pt;}
.xa_c00452{left:484.960000pt;}
.x94_c00452{left:487.040000pt;}
.xc4_c00452{left:488.000000pt;}
.xb5_c00452{left:489.333333pt;}
.x24_c00452{left:492.000000pt;}
.xe6_c00452{left:492.960000pt;}
.xf2_c00452{left:494.093333pt;}
.x32_c00452{left:495.040000pt;}
.x112_c00452{left:496.000000pt;}
.xfb_c00452{left:497.706667pt;}
.x66_c00452{left:499.040000pt;}
.xc9_c00452{left:500.373333pt;}
.x1a_c00452{left:501.333333pt;}
.x9e_c00452{left:504.000000pt;}
.xb6_c00452{left:506.293333pt;}
.xb_c00452{left:508.000000pt;}
.x8a_c00452{left:509.333333pt;}
.x77_c00452{left:510.293333pt;}
.x95_c00452{left:512.373333pt;}
.x7f_c00452{left:516.000000pt;}
.x33_c00452{left:518.666667pt;}
.xd6_c00452{left:521.706667pt;}
.xfc_c00452{left:522.666667pt;}
.x5b_c00452{left:523.626667pt;}
.x67_c00452{left:524.960000pt;}
.x78_c00452{left:526.666667pt;}
.xc5_c00452{left:528.000000pt;}
.xe7_c00452{left:529.333333pt;}
.x10d_c00452{left:530.666667pt;}
.x41_c00452{left:532.373333pt;}
.x4e_c00452{left:533.333333pt;}
.xe1_c00452{left:534.666667pt;}
.xef_c00452{left:536.000000pt;}
.x6e_c00452{left:536.960000pt;}
.xbc_c00452{left:544.000000pt;}
.xca_c00452{left:545.706667pt;}
.x79_c00452{left:547.040000pt;}
.x80_c00452{left:548.000000pt;}
.x34_c00452{left:551.040000pt;}
.x5c_c00452{left:552.960000pt;}
.x6f_c00452{left:554.666667pt;}
.x25_c00452{left:556.373333pt;}
.xb7_c00452{left:558.666667pt;}
.xbd_c00452{left:561.333333pt;}
.xc_c00452{left:562.666667pt;}
.x96_c00452{left:564.000000pt;}
.x42_c00452{left:564.960000pt;}
.x113_c00452{left:566.293333pt;}
.xa4_c00452{left:567.626667pt;}
.x8b_c00452{left:570.293333pt;}
.x9f_c00452{left:572.000000pt;}
.xa9_c00452{left:573.333333pt;}
.x5d_c00452{left:575.040000pt;}
.x35_c00452{left:578.666667pt;}
.x68_c00452{left:580.373333pt;}
.xe2_c00452{left:581.333333pt;}
.x1b_c00452{left:582.666667pt;}
.x97_c00452{left:585.706667pt;}
.xfd_c00452{left:588.000000pt;}
.xd_c00452{left:589.706667pt;}
.x8c_c00452{left:590.666667pt;}
.xcf_c00452{left:592.000000pt;}
.x81_c00452{left:593.333333pt;}
.x1c_c00452{left:594.293333pt;}
.xf3_c00452{left:596.760000pt;}
.x7a_c00452{left:597.706667pt;}
.xb8_c00452{left:598.666667pt;}
.x26_c00452{left:599.626667pt;}
.x36_c00452{left:600.960000pt;}
.xaa_c00452{left:603.626667pt;}
.x54_c00452{left:604.960000pt;}
.xbe_c00452{left:606.293333pt;}
.x5e_c00452{left:611.626667pt;}
.x8d_c00452{left:614.666667pt;}
.x27_c00452{left:617.333333pt;}
.x82_c00452{left:619.040000pt;}
.x70_c00452{left:620.000000pt;}
.x10a_c00452{left:624.000000pt;}
.x2_c00452{left:625.333333pt;}
.xbf_c00452{left:626.293333pt;}
.x37_c00452{left:628.373333pt;}
.x43_c00452{left:629.333333pt;}
.xd7_c00452{left:630.666667pt;}
.xf9_c00452{left:638.293333pt;}
.x98_c00452{left:642.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_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_c95764078bf453a24d070b79.woff2')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:1.688965;font-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_c00453{transform:matrix(0.006560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.006560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.006560,0.000000,0.000000,0.250000,0,0);}
.m18_c00453{transform:matrix(0.007569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007569,0.000000,0.000000,0.250000,0,0);}
.m47_c00453{transform:matrix(0.008933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008933,0.000000,0.000000,0.250000,0,0);}
.m46_c00453{transform:matrix(0.009498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009498,0.000000,0.000000,0.250000,0,0);}
.m3e_c00453{transform:matrix(0.009611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009611,0.000000,0.000000,0.250000,0,0);}
.m29_c00453{transform:matrix(0.009714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009714,0.000000,0.000000,0.250000,0,0);}
.m17_c00453{transform:matrix(0.011728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011728,0.000000,0.000000,0.250000,0,0);}
.mb_c00453{transform:matrix(0.012831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012831,0.000000,0.000000,0.250000,0,0);}
.mc_c00453{transform:matrix(0.013508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013508,0.000000,0.000000,0.250000,0,0);}
.m4e_c00453{transform:matrix(0.013606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013606,0.000000,0.000000,0.250000,0,0);}
.md_c00453{transform:matrix(0.014550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014550,0.000000,0.000000,0.250000,0,0);}
.mf_c00453{transform:matrix(0.014953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014953,0.000000,0.000000,0.250000,0,0);}
.m4f_c00453{transform:matrix(0.015943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015943,0.000000,0.000000,0.250000,0,0);}
.m55_c00453{transform:matrix(0.016237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016237,0.000000,0.000000,0.250000,0,0);}
.m4b_c00453{transform:matrix(0.016447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016447,0.000000,0.000000,0.250000,0,0);}
.m63_c00453{transform:matrix(0.016452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016452,0.000000,0.000000,0.250000,0,0);}
.m51_c00453{transform:matrix(0.017638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017638,0.000000,0.000000,0.250000,0,0);}
.m39_c00453{transform:matrix(0.017639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017639,0.000000,0.000000,0.250000,0,0);}
.m5d_c00453{transform:matrix(0.018487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018487,0.000000,0.000000,0.250000,0,0);}
.m4_c00453{transform:matrix(0.018932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018932,0.000000,0.000000,0.250000,0,0);}
.m2a_c00453{transform:matrix(0.019231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019231,0.000000,0.000000,0.250000,0,0);}
.m12_c00453{transform:matrix(0.019686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019686,0.000000,0.000000,0.250000,0,0);}
.m5c_c00453{transform:matrix(0.021065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021065,0.000000,0.000000,0.250000,0,0);}
.m1e_c00453{transform:matrix(0.021217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021217,0.000000,0.000000,0.250000,0,0);}
.m19_c00453{transform:matrix(0.021936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021936,0.000000,0.000000,0.250000,0,0);}
.m14_c00453{transform:matrix(0.021996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021996,0.000000,0.000000,0.250000,0,0);}
.m4c_c00453{transform:matrix(0.022239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022239,0.000000,0.000000,0.250000,0,0);}
.m5a_c00453{transform:matrix(0.022814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022814,0.000000,0.000000,0.250000,0,0);}
.m20_c00453{transform:matrix(0.022928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022928,0.000000,0.000000,0.250000,0,0);}
.m4d_c00453{transform:matrix(0.023055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023055,0.000000,0.000000,0.250000,0,0);}
.m16_c00453{transform:matrix(0.024284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024284,0.000000,0.000000,0.250000,0,0);}
.m59_c00453{transform:matrix(0.024659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024659,0.000000,0.000000,0.250000,0,0);}
.m1a_c00453{transform:matrix(0.024891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024891,0.000000,0.000000,0.250000,0,0);}
.m1c_c00453{transform:matrix(0.025133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025133,0.000000,0.000000,0.250000,0,0);}
.m41_c00453{transform:matrix(0.026263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026263,0.000000,0.000000,0.250000,0,0);}
.m25_c00453{transform:matrix(0.027159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027159,0.000000,0.000000,0.250000,0,0);}
.m2_c00453{transform:matrix(0.029773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029773,0.000000,0.000000,0.250000,0,0);}
.m1d_c00453{transform:matrix(0.030385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030385,0.000000,0.000000,0.250000,0,0);}
.m5b_c00453{transform:matrix(0.031676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031676,0.000000,0.000000,0.250000,0,0);}
.m44_c00453{transform:matrix(0.032033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032033,0.000000,0.000000,0.250000,0,0);}
.m42_c00453{transform:matrix(0.037257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037257,0.000000,0.000000,0.250000,0,0);}
.m62_c00453{transform:matrix(0.038765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038765,0.000000,0.000000,0.250000,0,0);}
.ma_c00453{transform:matrix(0.040595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040595,0.000000,0.000000,0.250000,0,0);}
.m27_c00453{transform:matrix(0.041240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041240,0.000000,0.000000,0.250000,0,0);}
.m50_c00453{transform:matrix(0.041318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041318,0.000000,0.000000,0.250000,0,0);}
.m3a_c00453{transform:matrix(0.043640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043640,0.000000,0.000000,0.250000,0,0);}
.m28_c00453{transform:matrix(0.043796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043796,0.000000,0.000000,0.250000,0,0);}
.m3f_c00453{transform:matrix(0.044937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044937,0.000000,0.000000,0.250000,0,0);}
.m13_c00453{transform:matrix(0.046012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046012,0.000000,0.000000,0.250000,0,0);}
.m21_c00453{transform:matrix(0.046544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046544,0.000000,0.000000,0.250000,0,0);}
.m22_c00453{transform:matrix(0.047250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00453{transform:matrix(0.047794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047794,0.000000,0.000000,0.250000,0,0);}
.m1b_c00453{transform:matrix(0.049519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049519,0.000000,0.000000,0.250000,0,0);}
.m23_c00453{transform:matrix(0.051380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051380,0.000000,0.000000,0.250000,0,0);}
.m3b_c00453{transform:matrix(0.055461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055461,0.000000,0.000000,0.250000,0,0);}
.m26_c00453{transform:matrix(0.056265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056265,0.000000,0.000000,0.250000,0,0);}
.m2b_c00453{transform:matrix(0.058181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058181,0.000000,0.000000,0.250000,0,0);}
.m65_c00453{transform:matrix(0.062571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062571,0.000000,0.000000,0.250000,0,0);}
.m64_c00453{transform:matrix(0.065085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065085,0.000000,0.000000,0.250000,0,0);}
.m6_c00453{transform:matrix(0.065697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065697,0.000000,0.000000,0.250000,0,0);}
.m2f_c00453{transform:matrix(0.066302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066302,0.000000,0.000000,0.250000,0,0);}
.me_c00453{transform:matrix(0.066358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066358,0.000000,0.000000,0.250000,0,0);}
.m32_c00453{transform:matrix(0.067348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067348,0.000000,0.000000,0.250000,0,0);}
.m3c_c00453{transform:matrix(0.071227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071227,0.000000,0.000000,0.250000,0,0);}
.m4a_c00453{transform:matrix(0.075122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075122,0.000000,0.000000,0.250000,0,0);}
.m38_c00453{transform:matrix(0.077837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077837,0.000000,0.000000,0.250000,0,0);}
.m54_c00453{transform:matrix(0.079337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079337,0.000000,0.000000,0.250000,0,0);}
.m2d_c00453{transform:matrix(0.081805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081805,0.000000,0.000000,0.250000,0,0);}
.m45_c00453{transform:matrix(0.083193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083193,0.000000,0.000000,0.250000,0,0);}
.m33_c00453{transform:matrix(0.083216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083216,0.000000,0.000000,0.250000,0,0);}
.m30_c00453{transform:matrix(0.085331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085331,0.000000,0.000000,0.250000,0,0);}
.m10_c00453{transform:matrix(0.085432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085432,0.000000,0.000000,0.250000,0,0);}
.m24_c00453{transform:matrix(0.091641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091641,0.000000,0.000000,0.250000,0,0);}
.m40_c00453{transform:matrix(0.091678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091678,0.000000,0.000000,0.250000,0,0);}
.m37_c00453{transform:matrix(0.100077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100077,0.000000,0.000000,0.250000,0,0);}
.m1f_c00453{transform:matrix(0.102941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102941,0.000000,0.000000,0.250000,0,0);}
.m5_c00453{transform:matrix(0.102958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102958,0.000000,0.000000,0.250000,0,0);}
.m2c_c00453{transform:matrix(0.105751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105751,0.000000,0.000000,0.250000,0,0);}
.m35_c00453{transform:matrix(0.106979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106979,0.000000,0.000000,0.250000,0,0);}
.m5e_c00453{transform:matrix(0.113540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113540,0.000000,0.000000,0.250000,0,0);}
.m36_c00453{transform:matrix(0.116419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116419,0.000000,0.000000,0.250000,0,0);}
.m48_c00453{transform:matrix(0.129406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129406,0.000000,0.000000,0.250000,0,0);}
.m2e_c00453{transform:matrix(0.129668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129668,0.000000,0.000000,0.250000,0,0);}
.m9_c00453{transform:matrix(0.138235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138235,0.000000,0.000000,0.250000,0,0);}
.m49_c00453{transform:matrix(0.151971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151971,0.000000,0.000000,0.250000,0,0);}
.m60_c00453{transform:matrix(0.166512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166512,0.000000,0.000000,0.250000,0,0);}
.m52_c00453{transform:matrix(0.174793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174793,0.000000,0.000000,0.250000,0,0);}
.m11_c00453{transform:matrix(0.194502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194502,0.000000,0.000000,0.250000,0,0);}
.m61_c00453{transform:matrix(0.195539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195539,0.000000,0.000000,0.250000,0,0);}
.m3_c00453{transform:matrix(0.238404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238404,0.000000,0.000000,0.250000,0,0);}
.m15_c00453{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00453{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m43_c00453{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);}
.m58_c00453{transform:matrix(0.350160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350160,0.000000,0.000000,0.250000,0,0);}
.m8_c00453{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00453{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m31_c00453{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m1_c00453{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m57_c00453{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m53_c00453{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.m5f_c00453{transform:matrix(1.756637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.756637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.756637,0.000000,0.000000,0.250000,0,0);}
.m56_c00453{transform:matrix(3.482456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.482456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.482456,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;}
.fs23_c00453{font-size:3.420000px;}
.fs25_c00453{font-size:6.780000px;}
.fs1e_c00453{font-size:11.880000px;}
.fs1f_c00453{font-size:18.720000px;}
.fs1_c00453{font-size:20.400000px;}
.fs0_c00453{font-size:28.920000px;}
.fs3_c00453{font-size:32.340000px;}
.fs11_c00453{font-size:35.700000px;}
.fs1a_c00453{font-size:39.120000px;}
.fs19_c00453{font-size:42.540000px;}
.fs8_c00453{font-size:45.900000px;}
.fs1c_c00453{font-size:49.320000px;}
.fs5_c00453{font-size:52.740000px;}
.fs18_c00453{font-size:61.200000px;}
.fs1b_c00453{font-size:64.620000px;}
.fs6_c00453{font-size:68.040000px;}
.fse_c00453{font-size:71.460000px;}
.fs16_c00453{font-size:74.820000px;}
.fsf_c00453{font-size:78.240000px;}
.fs9_c00453{font-size:81.660000px;}
.fs1d_c00453{font-size:85.020000px;}
.fs20_c00453{font-size:88.440000px;}
.fs24_c00453{font-size:91.860000px;}
.fs2_c00453{font-size:95.220000px;}
.fs21_c00453{font-size:100.320000px;}
.fs22_c00453{font-size:107.160000px;}
.fs17_c00453{font-size:110.580000px;}
.fs12_c00453{font-size:117.360000px;}
.fs15_c00453{font-size:124.140000px;}
.fs4_c00453{font-size:127.560000px;}
.fs14_c00453{font-size:132.660000px;}
.fs10_c00453{font-size:134.340000px;}
.fsd_c00453{font-size:139.440000px;}
.fsa_c00453{font-size:149.640000px;}
.fsb_c00453{font-size:159.900000px;}
.fsc_c00453{font-size:170.100000px;}
.fs7_c00453{font-size:205.800000px;}
.fs13_c00453{font-size:216.000000px;}
.y0_c00453{bottom:0.000000px;}
.y16_c00453{bottom:270.405000px;}
.y9f_c00453{bottom:273.180000px;}
.y66_c00453{bottom:273.825000px;}
.y38_c00453{bottom:274.680000px;}
.y78_c00453{bottom:275.955000px;}
.y2b_c00453{bottom:276.150000px;}
.y99_c00453{bottom:277.230000px;}
.y7b_c00453{bottom:278.505000px;}
.y96_c00453{bottom:278.700000px;}
.y8f_c00453{bottom:279.975000px;}
.y6e_c00453{bottom:280.200000px;}
.y5_c00453{bottom:281.460000px;}
.y75_c00453{bottom:285.300000px;}
.y17_c00453{bottom:290.100000px;}
.y46_c00453{bottom:296.325000px;}
.y5a_c00453{bottom:297.180000px;}
.y39_c00453{bottom:299.730000px;}
.y7d_c00453{bottom:304.050000px;}
.ya0_c00453{bottom:304.830000px;}
.y79_c00453{bottom:305.730000px;}
.y92_c00453{bottom:308.550000px;}
.y7c_c00453{bottom:314.730000px;}
.y47_c00453{bottom:316.680000px;}
.y6f_c00453{bottom:319.230000px;}
.y7e_c00453{bottom:323.730000px;}
.y90_c00453{bottom:323.925000px;}
.yb6_c00453{bottom:325.200000px;}
.y9a_c00453{bottom:325.425000px;}
.y18_c00453{bottom:327.300000px;}
.y93_c00453{bottom:332.475000px;}
.y6_c00453{bottom:332.955000px;}
.y76_c00453{bottom:338.730000px;}
.y82_c00453{bottom:345.300000px;}
.ya1_c00453{bottom:345.420000px;}
.yb0_c00453{bottom:349.680000px;}
.y70_c00453{bottom:350.955000px;}
.ya2_c00453{bottom:355.275000px;}
.y7_c00453{bottom:363.150000px;}
.yb1_c00453{bottom:363.855000px;}
.ya3_c00453{bottom:365.130000px;}
.y19_c00453{bottom:379.905000px;}
.y1a_c00453{bottom:397.245000px;}
.y8_c00453{bottom:412.305000px;}
.ya4_c00453{bottom:418.005000px;}
.y3a_c00453{bottom:419.535000px;}
.y77_c00453{bottom:421.680000px;}
.y48_c00453{bottom:422.325000px;}
.y2c_c00453{bottom:423.180000px;}
.y54_c00453{bottom:423.405000px;}
.y94_c00453{bottom:424.680000px;}
.y5b_c00453{bottom:425.130000px;}
.y83_c00453{bottom:425.325000px;}
.y1b_c00453{bottom:426.105000px;}
.ya5_c00453{bottom:473.505000px;}
.y3b_c00453{bottom:473.955000px;}
.y49_c00453{bottom:477.405000px;}
.y55_c00453{bottom:477.825000px;}
.y2d_c00453{bottom:478.680000px;}
.y5c_c00453{bottom:479.550000px;}
.y67_c00453{bottom:479.775000px;}
.y97_c00453{bottom:480.180000px;}
.yb2_c00453{bottom:481.905000px;}
.y84_c00453{bottom:482.325000px;}
.y1c_c00453{bottom:483.510000px;}
.y9_c00453{bottom:484.905000px;}
.ya_c00453{bottom:503.100000px;}
.ya6_c00453{bottom:529.005000px;}
.y3c_c00453{bottom:530.535000px;}
.y2e_c00453{bottom:532.680000px;}
.yb_c00453{bottom:532.860000px;}
.y56_c00453{bottom:532.905000px;}
.y4a_c00453{bottom:533.325000px;}
.y71_c00453{bottom:534.180000px;}
.y5d_c00453{bottom:535.050000px;}
.y85_c00453{bottom:536.325000px;}
.y68_c00453{bottom:537.630000px;}
.yb7_c00453{bottom:537.825000px;}
.y1d_c00453{bottom:558.660000px;}
.yc_c00453{bottom:565.905000px;}
.ya7_c00453{bottom:584.505000px;}
.y3d_c00453{bottom:584.955000px;}
.y4b_c00453{bottom:587.325000px;}
.y2f_c00453{bottom:588.180000px;}
.y69_c00453{bottom:589.275000px;}
.y72_c00453{bottom:589.680000px;}
.y5e_c00453{bottom:590.550000px;}
.y95_c00453{bottom:591.180000px;}
.y86_c00453{bottom:593.325000px;}
.yd_c00453{bottom:596.010000px;}
.y29_c00453{bottom:625.230000px;}
.ya8_c00453{bottom:640.005000px;}
.y3_c00453{bottom:641.055000px;}
.y3e_c00453{bottom:641.535000px;}
.y4c_c00453{bottom:642.825000px;}
.y30_c00453{bottom:643.680000px;}
.y57_c00453{bottom:644.775000px;}
.y7f_c00453{bottom:645.180000px;}
.y5f_c00453{bottom:645.630000px;}
.y9b_c00453{bottom:646.680000px;}
.y87_c00453{bottom:647.325000px;}
.y1e_c00453{bottom:648.300000px;}
.yb3_c00453{bottom:648.825000px;}
.y2a_c00453{bottom:663.960000px;}
.ye_c00453{bottom:664.785000px;}
.y4_c00453{bottom:680.325000px;}
.ya9_c00453{bottom:694.005000px;}
.y3f_c00453{bottom:695.955000px;}
.y31_c00453{bottom:699.180000px;}
.y4d_c00453{bottom:699.405000px;}
.y6a_c00453{bottom:700.680000px;}
.y60_c00453{bottom:701.130000px;}
.y88_c00453{bottom:702.825000px;}
.y1f_c00453{bottom:707.460000px;}
.yf_c00453{bottom:739.560000px;}
.yaa_c00453{bottom:749.925000px;}
.y40_c00453{bottom:752.535000px;}
.y4e_c00453{bottom:753.825000px;}
.y32_c00453{bottom:754.680000px;}
.y58_c00453{bottom:754.905000px;}
.y98_c00453{bottom:755.745000px;}
.y6b_c00453{bottom:756.180000px;}
.y20_c00453{bottom:757.455000px;}
.y61_c00453{bottom:758.130000px;}
.y89_c00453{bottom:758.325000px;}
.yb8_c00453{bottom:759.825000px;}
.y21_c00453{bottom:788.505000px;}
.yab_c00453{bottom:805.005000px;}
.y41_c00453{bottom:805.455000px;}
.y10_c00453{bottom:807.150000px;}
.y33_c00453{bottom:810.180000px;}
.y4f_c00453{bottom:810.405000px;}
.y80_c00453{bottom:811.245000px;}
.y91_c00453{bottom:811.680000px;}
.y62_c00453{bottom:813.630000px;}
.y8a_c00453{bottom:813.825000px;}
.yb4_c00453{bottom:814.905000px;}
.y22_c00453{bottom:819.405000px;}
.y23_c00453{bottom:839.100000px;}
.y11_c00453{bottom:848.655000px;}
.yac_c00453{bottom:862.005000px;}
.y42_c00453{bottom:862.455000px;}
.y59_c00453{bottom:864.825000px;}
.y34_c00453{bottom:865.680000px;}
.y50_c00453{bottom:865.905000px;}
.y7a_c00453{bottom:867.180000px;}
.y63_c00453{bottom:868.050000px;}
.y6c_c00453{bottom:869.130000px;}
.yb5_c00453{bottom:869.325000px;}
.y8b_c00453{bottom:870.405000px;}
.y24_c00453{bottom:872.460000px;}
.y12_c00453{bottom:906.585000px;}
.yad_c00453{bottom:916.005000px;}
.y43_c00453{bottom:917.955000px;}
.y25_c00453{bottom:919.905000px;}
.y35_c00453{bottom:921.180000px;}
.y51_c00453{bottom:921.405000px;}
.y6d_c00453{bottom:922.680000px;}
.y64_c00453{bottom:923.550000px;}
.y8c_c00453{bottom:924.825000px;}
.y9c_c00453{bottom:931.275000px;}
.y26_c00453{bottom:937.245000px;}
.y13_c00453{bottom:939.405000px;}
.y27_c00453{bottom:965.250000px;}
.yae_c00453{bottom:970.635000px;}
.y14_c00453{bottom:971.655000px;}
.y44_c00453{bottom:972.105000px;}
.y52_c00453{bottom:973.035000px;}
.y73_c00453{bottom:974.730000px;}
.y36_c00453{bottom:975.180000px;}
.y81_c00453{bottom:976.230000px;}
.y65_c00453{bottom:976.680000px;}
.y9d_c00453{bottom:977.775000px;}
.y8d_c00453{bottom:979.035000px;}
.y28_c00453{bottom:1017.105000px;}
.yaf_c00453{bottom:1024.635000px;}
.y45_c00453{bottom:1026.780000px;}
.y53_c00453{bottom:1028.535000px;}
.y15_c00453{bottom:1028.925000px;}
.y74_c00453{bottom:1030.230000px;}
.y37_c00453{bottom:1032.180000px;}
.y8e_c00453{bottom:1033.035000px;}
.y9e_c00453{bottom:1033.275000px;}
.y1_c00453{bottom:1096.905000px;}
.y2_c00453{bottom:1100.550000px;}
.h24_c00453{height:4.206533px;}
.h26_c00453{height:8.339268px;}
.h1f_c00453{height:14.612168px;}
.h20_c00453{height:23.025234px;}
.h2_c00453{height:25.091602px;}
.h1_c00453{height:35.571035px;}
.h4_c00453{height:39.777568px;}
.h12_c00453{height:43.910303px;}
.h1b_c00453{height:48.116836px;}
.h1a_c00453{height:52.323369px;}
.h9_c00453{height:56.456104px;}
.h1d_c00453{height:60.662637px;}
.h6_c00453{height:64.869170px;}
.h19_c00453{height:75.274805px;}
.h1c_c00453{height:79.481338px;}
.h7_c00453{height:83.687871px;}
.hf_c00453{height:87.894404px;}
.h17_c00453{height:92.027139px;}
.h10_c00453{height:96.233672px;}
.ha_c00453{height:100.440205px;}
.h1e_c00453{height:104.572939px;}
.h21_c00453{height:108.779473px;}
.h25_c00453{height:112.986006px;}
.h3_c00453{height:117.118740px;}
.h22_c00453{height:123.391641px;}
.h23_c00453{height:131.804707px;}
.h18_c00453{height:136.011240px;}
.h13_c00453{height:144.350508px;}
.h16_c00453{height:152.689775px;}
.h5_c00453{height:156.896309px;}
.h15_c00453{height:163.169209px;}
.h11_c00453{height:165.235576px;}
.he_c00453{height:171.508477px;}
.hb_c00453{height:184.054277px;}
.hc_c00453{height:196.673877px;}
.hd_c00453{height:209.219678px;}
.h8_c00453{height:253.129980px;}
.h14_c00453{height:265.675781px;}
.h0_c00453{height:1335.000000px;}
.w0_c00453{width:880.500000px;}
.x0_c00453{left:0.000000px;}
.x1_c00453{left:151.500000px;}
.x3_c00453{left:253.500000px;}
.x4_c00453{left:256.500000px;}
.x5_c00453{left:276.225000px;}
.x7_c00453{left:277.500000px;}
.x6_c00453{left:278.580000px;}
.x8_c00453{left:280.920000px;}
.x9_c00453{left:292.080000px;}
.xa_c00453{left:293.355000px;}
.xb_c00453{left:307.080000px;}
.xc_c00453{left:331.500000px;}
.xf_c00453{left:357.000000px;}
.xe_c00453{left:358.080000px;}
.xd_c00453{left:359.580000px;}
.x10_c00453{left:361.470000px;}
.x12_c00453{left:376.500000px;}
.x11_c00453{left:378.000000px;}
.x14_c00453{left:388.500000px;}
.x15_c00453{left:390.000000px;}
.x13_c00453{left:391.080000px;}
.x18_c00453{left:402.000000px;}
.x17_c00453{left:403.500000px;}
.x16_c00453{left:405.000000px;}
.x2_c00453{left:406.500000px;}
.x1b_c00453{left:416.580000px;}
.x19_c00453{left:418.080000px;}
.x1a_c00453{left:420.000000px;}
.x1e_c00453{left:429.000000px;}
.x1d_c00453{left:430.920000px;}
.x1c_c00453{left:432.420000px;}
.x21_c00453{left:442.500000px;}
.x20_c00453{left:444.000000px;}
.x1f_c00453{left:445.080000px;}
.x24_c00453{left:456.000000px;}
.x23_c00453{left:457.500000px;}
.x22_c00453{left:459.000000px;}
.x26_c00453{left:470.580000px;}
.x25_c00453{left:471.645000px;}
.x29_c00453{left:484.080000px;}
.x27_c00453{left:485.145000px;}
.x28_c00453{left:486.420000px;}
.x2b_c00453{left:498.000000px;}
.x2a_c00453{left:499.080000px;}
.x2e_c00453{left:509.580000px;}
.x2d_c00453{left:511.500000px;}
.x2c_c00453{left:513.000000px;}
.x31_c00453{left:524.580000px;}
.x2f_c00453{left:526.080000px;}
.x30_c00453{left:527.775000px;}
.x33_c00453{left:538.080000px;}
.x32_c00453{left:539.145000px;}
.x36_c00453{left:552.000000px;}
.x34_c00453{left:553.500000px;}
.x35_c00453{left:554.775000px;}
.x39_c00453{left:565.500000px;}
.x37_c00453{left:566.580000px;}
.x38_c00453{left:568.920000px;}
.x3b_c00453{left:576.000000px;}
.x3c_c00453{left:579.000000px;}
.x3a_c00453{left:580.500000px;}
.x40_c00453{left:592.500000px;}
.x3f_c00453{left:593.580000px;}
.x3d_c00453{left:594.645000px;}
.x3e_c00453{left:595.920000px;}
.x43_c00453{left:606.000000px;}
.x42_c00453{left:607.500000px;}
.x41_c00453{left:609.000000px;}
@media print{
.v0_c00453{vertical-align:0.000000pt;}
.ls0_c00453{letter-spacing:0.000000pt;}
.ws0_c00453{word-spacing:0.000000pt;}
.fs23_c00453{font-size:3.040000pt;}
.fs25_c00453{font-size:6.026667pt;}
.fs1e_c00453{font-size:10.560000pt;}
.fs1f_c00453{font-size:16.640000pt;}
.fs1_c00453{font-size:18.133333pt;}
.fs0_c00453{font-size:25.706667pt;}
.fs3_c00453{font-size:28.746667pt;}
.fs11_c00453{font-size:31.733333pt;}
.fs1a_c00453{font-size:34.773333pt;}
.fs19_c00453{font-size:37.813333pt;}
.fs8_c00453{font-size:40.800000pt;}
.fs1c_c00453{font-size:43.840000pt;}
.fs5_c00453{font-size:46.880000pt;}
.fs18_c00453{font-size:54.400000pt;}
.fs1b_c00453{font-size:57.440000pt;}
.fs6_c00453{font-size:60.480000pt;}
.fse_c00453{font-size:63.520000pt;}
.fs16_c00453{font-size:66.506667pt;}
.fsf_c00453{font-size:69.546667pt;}
.fs9_c00453{font-size:72.586667pt;}
.fs1d_c00453{font-size:75.573333pt;}
.fs20_c00453{font-size:78.613333pt;}
.fs24_c00453{font-size:81.653333pt;}
.fs2_c00453{font-size:84.640000pt;}
.fs21_c00453{font-size:89.173333pt;}
.fs22_c00453{font-size:95.253333pt;}
.fs17_c00453{font-size:98.293333pt;}
.fs12_c00453{font-size:104.320000pt;}
.fs15_c00453{font-size:110.346667pt;}
.fs4_c00453{font-size:113.386667pt;}
.fs14_c00453{font-size:117.920000pt;}
.fs10_c00453{font-size:119.413333pt;}
.fsd_c00453{font-size:123.946667pt;}
.fsa_c00453{font-size:133.013333pt;}
.fsb_c00453{font-size:142.133333pt;}
.fsc_c00453{font-size:151.200000pt;}
.fs7_c00453{font-size:182.933333pt;}
.fs13_c00453{font-size:192.000000pt;}
.y0_c00453{bottom:0.000000pt;}
.y16_c00453{bottom:240.360000pt;}
.y9f_c00453{bottom:242.826667pt;}
.y66_c00453{bottom:243.400000pt;}
.y38_c00453{bottom:244.160000pt;}
.y78_c00453{bottom:245.293333pt;}
.y2b_c00453{bottom:245.466667pt;}
.y99_c00453{bottom:246.426667pt;}
.y7b_c00453{bottom:247.560000pt;}
.y96_c00453{bottom:247.733333pt;}
.y8f_c00453{bottom:248.866667pt;}
.y6e_c00453{bottom:249.066667pt;}
.y5_c00453{bottom:250.186667pt;}
.y75_c00453{bottom:253.600000pt;}
.y17_c00453{bottom:257.866667pt;}
.y46_c00453{bottom:263.400000pt;}
.y5a_c00453{bottom:264.160000pt;}
.y39_c00453{bottom:266.426667pt;}
.y7d_c00453{bottom:270.266667pt;}
.ya0_c00453{bottom:270.960000pt;}
.y79_c00453{bottom:271.760000pt;}
.y92_c00453{bottom:274.266667pt;}
.y7c_c00453{bottom:279.760000pt;}
.y47_c00453{bottom:281.493333pt;}
.y6f_c00453{bottom:283.760000pt;}
.y7e_c00453{bottom:287.760000pt;}
.y90_c00453{bottom:287.933333pt;}
.yb6_c00453{bottom:289.066667pt;}
.y9a_c00453{bottom:289.266667pt;}
.y18_c00453{bottom:290.933333pt;}
.y93_c00453{bottom:295.533333pt;}
.y6_c00453{bottom:295.960000pt;}
.y76_c00453{bottom:301.093333pt;}
.y82_c00453{bottom:306.933333pt;}
.ya1_c00453{bottom:307.040000pt;}
.yb0_c00453{bottom:310.826667pt;}
.y70_c00453{bottom:311.960000pt;}
.ya2_c00453{bottom:315.800000pt;}
.y7_c00453{bottom:322.800000pt;}
.yb1_c00453{bottom:323.426667pt;}
.ya3_c00453{bottom:324.560000pt;}
.y19_c00453{bottom:337.693333pt;}
.y1a_c00453{bottom:353.106667pt;}
.y8_c00453{bottom:366.493333pt;}
.ya4_c00453{bottom:371.560000pt;}
.y3a_c00453{bottom:372.920000pt;}
.y77_c00453{bottom:374.826667pt;}
.y48_c00453{bottom:375.400000pt;}
.y2c_c00453{bottom:376.160000pt;}
.y54_c00453{bottom:376.360000pt;}
.y94_c00453{bottom:377.493333pt;}
.y5b_c00453{bottom:377.893333pt;}
.y83_c00453{bottom:378.066667pt;}
.y1b_c00453{bottom:378.760000pt;}
.ya5_c00453{bottom:420.893333pt;}
.y3b_c00453{bottom:421.293333pt;}
.y49_c00453{bottom:424.360000pt;}
.y55_c00453{bottom:424.733333pt;}
.y2d_c00453{bottom:425.493333pt;}
.y5c_c00453{bottom:426.266667pt;}
.y67_c00453{bottom:426.466667pt;}
.y97_c00453{bottom:426.826667pt;}
.yb2_c00453{bottom:428.360000pt;}
.y84_c00453{bottom:428.733333pt;}
.y1c_c00453{bottom:429.786667pt;}
.y9_c00453{bottom:431.026667pt;}
.ya_c00453{bottom:447.200000pt;}
.ya6_c00453{bottom:470.226667pt;}
.y3c_c00453{bottom:471.586667pt;}
.y2e_c00453{bottom:473.493333pt;}
.yb_c00453{bottom:473.653333pt;}
.y56_c00453{bottom:473.693333pt;}
.y4a_c00453{bottom:474.066667pt;}
.y71_c00453{bottom:474.826667pt;}
.y5d_c00453{bottom:475.600000pt;}
.y85_c00453{bottom:476.733333pt;}
.y68_c00453{bottom:477.893333pt;}
.yb7_c00453{bottom:478.066667pt;}
.y1d_c00453{bottom:496.586667pt;}
.yc_c00453{bottom:503.026667pt;}
.ya7_c00453{bottom:519.560000pt;}
.y3d_c00453{bottom:519.960000pt;}
.y4b_c00453{bottom:522.066667pt;}
.y2f_c00453{bottom:522.826667pt;}
.y69_c00453{bottom:523.800000pt;}
.y72_c00453{bottom:524.160000pt;}
.y5e_c00453{bottom:524.933333pt;}
.y95_c00453{bottom:525.493333pt;}
.y86_c00453{bottom:527.400000pt;}
.yd_c00453{bottom:529.786667pt;}
.y29_c00453{bottom:555.760000pt;}
.ya8_c00453{bottom:568.893333pt;}
.y3_c00453{bottom:569.826667pt;}
.y3e_c00453{bottom:570.253333pt;}
.y4c_c00453{bottom:571.400000pt;}
.y30_c00453{bottom:572.160000pt;}
.y57_c00453{bottom:573.133333pt;}
.y7f_c00453{bottom:573.493333pt;}
.y5f_c00453{bottom:573.893333pt;}
.y9b_c00453{bottom:574.826667pt;}
.y87_c00453{bottom:575.400000pt;}
.y1e_c00453{bottom:576.266667pt;}
.yb3_c00453{bottom:576.733333pt;}
.y2a_c00453{bottom:590.186667pt;}
.ye_c00453{bottom:590.920000pt;}
.y4_c00453{bottom:604.733333pt;}
.ya9_c00453{bottom:616.893333pt;}
.y3f_c00453{bottom:618.626667pt;}
.y31_c00453{bottom:621.493333pt;}
.y4d_c00453{bottom:621.693333pt;}
.y6a_c00453{bottom:622.826667pt;}
.y60_c00453{bottom:623.226667pt;}
.y88_c00453{bottom:624.733333pt;}
.y1f_c00453{bottom:628.853333pt;}
.yf_c00453{bottom:657.386667pt;}
.yaa_c00453{bottom:666.600000pt;}
.y40_c00453{bottom:668.920000pt;}
.y4e_c00453{bottom:670.066667pt;}
.y32_c00453{bottom:670.826667pt;}
.y58_c00453{bottom:671.026667pt;}
.y98_c00453{bottom:671.773333pt;}
.y6b_c00453{bottom:672.160000pt;}
.y20_c00453{bottom:673.293333pt;}
.y61_c00453{bottom:673.893333pt;}
.y89_c00453{bottom:674.066667pt;}
.yb8_c00453{bottom:675.400000pt;}
.y21_c00453{bottom:700.893333pt;}
.yab_c00453{bottom:715.560000pt;}
.y41_c00453{bottom:715.960000pt;}
.y10_c00453{bottom:717.466667pt;}
.y33_c00453{bottom:720.160000pt;}
.y4f_c00453{bottom:720.360000pt;}
.y80_c00453{bottom:721.106667pt;}
.y91_c00453{bottom:721.493333pt;}
.y62_c00453{bottom:723.226667pt;}
.y8a_c00453{bottom:723.400000pt;}
.yb4_c00453{bottom:724.360000pt;}
.y22_c00453{bottom:728.360000pt;}
.y23_c00453{bottom:745.866667pt;}
.y11_c00453{bottom:754.360000pt;}
.yac_c00453{bottom:766.226667pt;}
.y42_c00453{bottom:766.626667pt;}
.y59_c00453{bottom:768.733333pt;}
.y34_c00453{bottom:769.493333pt;}
.y50_c00453{bottom:769.693333pt;}
.y7a_c00453{bottom:770.826667pt;}
.y63_c00453{bottom:771.600000pt;}
.y6c_c00453{bottom:772.560000pt;}
.yb5_c00453{bottom:772.733333pt;}
.y8b_c00453{bottom:773.693333pt;}
.y24_c00453{bottom:775.520000pt;}
.y12_c00453{bottom:805.853333pt;}
.yad_c00453{bottom:814.226667pt;}
.y43_c00453{bottom:815.960000pt;}
.y25_c00453{bottom:817.693333pt;}
.y35_c00453{bottom:818.826667pt;}
.y51_c00453{bottom:819.026667pt;}
.y6d_c00453{bottom:820.160000pt;}
.y64_c00453{bottom:820.933333pt;}
.y8c_c00453{bottom:822.066667pt;}
.y9c_c00453{bottom:827.800000pt;}
.y26_c00453{bottom:833.106667pt;}
.y13_c00453{bottom:835.026667pt;}
.y27_c00453{bottom:858.000000pt;}
.yae_c00453{bottom:862.786667pt;}
.y14_c00453{bottom:863.693333pt;}
.y44_c00453{bottom:864.093333pt;}
.y52_c00453{bottom:864.920000pt;}
.y73_c00453{bottom:866.426667pt;}
.y36_c00453{bottom:866.826667pt;}
.y81_c00453{bottom:867.760000pt;}
.y65_c00453{bottom:868.160000pt;}
.y9d_c00453{bottom:869.133333pt;}
.y8d_c00453{bottom:870.253333pt;}
.y28_c00453{bottom:904.093333pt;}
.yaf_c00453{bottom:910.786667pt;}
.y45_c00453{bottom:912.693333pt;}
.y53_c00453{bottom:914.253333pt;}
.y15_c00453{bottom:914.600000pt;}
.y74_c00453{bottom:915.760000pt;}
.y37_c00453{bottom:917.493333pt;}
.y8e_c00453{bottom:918.253333pt;}
.y9e_c00453{bottom:918.466667pt;}
.y1_c00453{bottom:975.026667pt;}
.y2_c00453{bottom:978.266667pt;}
.h24_c00453{height:3.739141pt;}
.h26_c00453{height:7.412682pt;}
.h1f_c00453{height:12.988594pt;}
.h20_c00453{height:20.466875pt;}
.h2_c00453{height:22.303646pt;}
.h1_c00453{height:31.618698pt;}
.h4_c00453{height:35.357839pt;}
.h12_c00453{height:39.031380pt;}
.h1b_c00453{height:42.770521pt;}
.h1a_c00453{height:46.509661pt;}
.h9_c00453{height:50.183203pt;}
.h1d_c00453{height:53.922344pt;}
.h6_c00453{height:57.661484pt;}
.h19_c00453{height:66.910937pt;}
.h1c_c00453{height:70.650078pt;}
.h7_c00453{height:74.389219pt;}
.hf_c00453{height:78.128359pt;}
.h17_c00453{height:81.801901pt;}
.h10_c00453{height:85.541042pt;}
.ha_c00453{height:89.280182pt;}
.h1e_c00453{height:92.953724pt;}
.h21_c00453{height:96.692865pt;}
.h25_c00453{height:100.432005pt;}
.h3_c00453{height:104.105547pt;}
.h22_c00453{height:109.681458pt;}
.h23_c00453{height:117.159740pt;}
.h18_c00453{height:120.898880pt;}
.h13_c00453{height:128.311562pt;}
.h16_c00453{height:135.724245pt;}
.h5_c00453{height:139.463385pt;}
.h15_c00453{height:145.039297pt;}
.h11_c00453{height:146.876068pt;}
.he_c00453{height:152.451979pt;}
.hb_c00453{height:163.603802pt;}
.hc_c00453{height:174.821224pt;}
.hd_c00453{height:185.973047pt;}
.h8_c00453{height:225.004427pt;}
.h14_c00453{height:236.156250pt;}
.h0_c00453{height:1186.666667pt;}
.w0_c00453{width:782.666667pt;}
.x0_c00453{left:0.000000pt;}
.x1_c00453{left:134.666667pt;}
.x3_c00453{left:225.333333pt;}
.x4_c00453{left:228.000000pt;}
.x5_c00453{left:245.533333pt;}
.x7_c00453{left:246.666667pt;}
.x6_c00453{left:247.626667pt;}
.x8_c00453{left:249.706667pt;}
.x9_c00453{left:259.626667pt;}
.xa_c00453{left:260.760000pt;}
.xb_c00453{left:272.960000pt;}
.xc_c00453{left:294.666667pt;}
.xf_c00453{left:317.333333pt;}
.xe_c00453{left:318.293333pt;}
.xd_c00453{left:319.626667pt;}
.x10_c00453{left:321.306667pt;}
.x12_c00453{left:334.666667pt;}
.x11_c00453{left:336.000000pt;}
.x14_c00453{left:345.333333pt;}
.x15_c00453{left:346.666667pt;}
.x13_c00453{left:347.626667pt;}
.x18_c00453{left:357.333333pt;}
.x17_c00453{left:358.666667pt;}
.x16_c00453{left:360.000000pt;}
.x2_c00453{left:361.333333pt;}
.x1b_c00453{left:370.293333pt;}
.x19_c00453{left:371.626667pt;}
.x1a_c00453{left:373.333333pt;}
.x1e_c00453{left:381.333333pt;}
.x1d_c00453{left:383.040000pt;}
.x1c_c00453{left:384.373333pt;}
.x21_c00453{left:393.333333pt;}
.x20_c00453{left:394.666667pt;}
.x1f_c00453{left:395.626667pt;}
.x24_c00453{left:405.333333pt;}
.x23_c00453{left:406.666667pt;}
.x22_c00453{left:408.000000pt;}
.x26_c00453{left:418.293333pt;}
.x25_c00453{left:419.240000pt;}
.x29_c00453{left:430.293333pt;}
.x27_c00453{left:431.240000pt;}
.x28_c00453{left:432.373333pt;}
.x2b_c00453{left:442.666667pt;}
.x2a_c00453{left:443.626667pt;}
.x2e_c00453{left:452.960000pt;}
.x2d_c00453{left:454.666667pt;}
.x2c_c00453{left:456.000000pt;}
.x31_c00453{left:466.293333pt;}
.x2f_c00453{left:467.626667pt;}
.x30_c00453{left:469.133333pt;}
.x33_c00453{left:478.293333pt;}
.x32_c00453{left:479.240000pt;}
.x36_c00453{left:490.666667pt;}
.x34_c00453{left:492.000000pt;}
.x35_c00453{left:493.133333pt;}
.x39_c00453{left:502.666667pt;}
.x37_c00453{left:503.626667pt;}
.x38_c00453{left:505.706667pt;}
.x3b_c00453{left:512.000000pt;}
.x3c_c00453{left:514.666667pt;}
.x3a_c00453{left:516.000000pt;}
.x40_c00453{left:526.666667pt;}
.x3f_c00453{left:527.626667pt;}
.x3d_c00453{left:528.573333pt;}
.x3e_c00453{left:529.706667pt;}
.x43_c00453{left:538.666667pt;}
.x42_c00453{left:540.000000pt;}
.x41_c00453{left:541.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ba178b9b51665dc1cc6b808a.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:1.688965;font-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_c00454{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.mc2_c00454{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.md6_c00454{transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);}
.m74_c00454{transform:matrix(0.364264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364264,0.000000,0.000000,0.250000,0,0);}
.m87_c00454{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m8f_c00454{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.md7_c00454{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m1d_c00454{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.ma4_c00454{transform:matrix(0.376534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376534,0.000000,0.000000,0.250000,0,0);}
.m97_c00454{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m60_c00454{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.me4_c00454{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m8c_c00454{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m8_c00454{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m91_c00454{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.ma5_c00454{transform:matrix(0.388037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388037,0.000000,0.000000,0.250000,0,0);}
.m68_c00454{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.meb_c00454{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mb5_c00454{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m8b_c00454{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m50_c00454{transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);}
.m65_c00454{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.mba_c00454{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m90_c00454{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m24_c00454{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m84_c00454{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m99_c00454{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m25_c00454{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m93_c00454{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m92_c00454{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m39_c00454{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m3b_c00454{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m58_c00454{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m6_c00454{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mc_c00454{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.me3_c00454{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.md_c00454{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.m31_c00454{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m7_c00454{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m33_c00454{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.ma0_c00454{transform:matrix(0.413727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413727,0.000000,0.000000,0.250000,0,0);}
.mc9_c00454{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m2c_c00454{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mef_c00454{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.mc8_c00454{transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);}
.m9c_c00454{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m96_c00454{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.ma3_c00454{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mb8_c00454{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.md2_c00454{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m1e_c00454{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m26_c00454{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m2d_c00454{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m36_c00454{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mc6_c00454{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m4f_c00454{transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);}
.m16_c00454{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mcb_c00454{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.me2_c00454{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m81_c00454{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m2b_c00454{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mb6_c00454{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m14_c00454{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mec_c00454{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m6f_c00454{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mc1_c00454{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m3d_c00454{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m88_c00454{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m17_c00454{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.mbf_c00454{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mce_c00454{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.m38_c00454{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.mf2_c00454{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.mcd_c00454{transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);}
.mea_c00454{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m5d_c00454{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m21_c00454{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.m8d_c00454{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.mf5_c00454{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.mf0_c00454{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m7e_c00454{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.me8_c00454{transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);}
.m66_c00454{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m86_c00454{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m3c_c00454{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m4d_c00454{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m3e_c00454{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m5a_c00454{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.m61_c00454{transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);}
.m80_c00454{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.mbd_c00454{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.m45_c00454{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.mf3_c00454{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.me9_c00454{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m85_c00454{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mab_c00454{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.mb4_c00454{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m4_c00454{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mf1_c00454{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m7b_c00454{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m8a_c00454{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.mde_c00454{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m57_c00454{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m2a_c00454{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m30_c00454{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m12_c00454{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m64_c00454{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m0_c00454{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m3a_c00454{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m7d_c00454{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m2f_c00454{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.md8_c00454{transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);}
.m42_c00454{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m2e_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);}
.m55_c00454{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.ma6_c00454{transform:matrix(0.503711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503711,0.000000,0.000000,0.250000,0,0);}
.m94_c00454{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.mcf_c00454{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.me7_c00454{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.ma8_c00454{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m76_c00454{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m1f_c00454{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.me0_c00454{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m71_c00454{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m82_c00454{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m43_c00454{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m95_c00454{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.ma2_c00454{transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);}
.m98_c00454{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m32_c00454{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m1b_c00454{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m9_c00454{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.mf_c00454{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m67_c00454{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mdf_c00454{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m79_c00454{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.mc0_c00454{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m9e_c00454{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m28_c00454{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.maf_c00454{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.md1_c00454{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m56_c00454{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m44_c00454{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.md3_c00454{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m9b_c00454{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mdc_c00454{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m49_c00454{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.ma_c00454{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m34_c00454{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m77_c00454{transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);}
.m3_c00454{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m4b_c00454{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m23_c00454{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m9f_c00454{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m20_c00454{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mbc_c00454{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m5e_c00454{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m37_c00454{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m6b_c00454{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.maa_c00454{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m22_c00454{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m8e_c00454{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m5_c00454{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m4a_c00454{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m35_c00454{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mda_c00454{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m29_c00454{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m40_c00454{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mc3_c00454{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m6d_c00454{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m7c_c00454{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m4c_c00454{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m5b_c00454{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m1c_c00454{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m48_c00454{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m13_c00454{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m46_c00454{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m59_c00454{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.ma7_c00454{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m51_c00454{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m47_c00454{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m11_c00454{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m62_c00454{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m53_c00454{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.ma1_c00454{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.m83_c00454{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m78_c00454{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m2_c00454{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mb3_c00454{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.md4_c00454{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.md0_c00454{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mbb_c00454{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.mb9_c00454{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.mac_c00454{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mee_c00454{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m72_c00454{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m5c_c00454{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.mdb_c00454{transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581950,0.000000,0.000000,0.250000,0,0);}
.m69_c00454{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.me_c00454{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m3f_c00454{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mc4_c00454{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m41_c00454{transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);}
.m5f_c00454{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m19_c00454{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);}
.mb2_c00454{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m73_c00454{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.md5_c00454{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m18_c00454{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m4e_c00454{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m9d_c00454{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m7f_c00454{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.md9_c00454{transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);}
.me5_c00454{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m52_c00454{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m1_c00454{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.mf4_c00454{transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);}
.m9a_c00454{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.mb7_c00454{transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);}
.mae_c00454{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mb_c00454{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.ma9_c00454{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.mc5_c00454{transform:matrix(0.669412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669412,0.000000,0.000000,0.250000,0,0);}
.mb0_c00454{transform:matrix(0.673529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673529,0.000000,0.000000,0.250000,0,0);}
.m6a_c00454{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.mf7_c00454{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m75_c00454{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.med_c00454{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.mcc_c00454{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mdd_c00454{transform:matrix(0.718824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.718824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.718824,0.000000,0.000000,0.250000,0,0);}
.m15_c00454{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.me1_c00454{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m27_c00454{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m54_c00454{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m10_c00454{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.me6_c00454{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.m63_c00454{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m6e_c00454{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mf6_c00454{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m1a_c00454{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mb1_c00454{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m70_c00454{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mbe_c00454{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mc7_c00454{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m6c_c00454{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.mad_c00454{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mca_c00454{transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);}
.m7a_c00454{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.v0_c00454{vertical-align:0.000000px;}
.v1_c00454{vertical-align:6.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;}
}
.ws4_c00454{word-spacing:-5.731052px;}
.ws2_c00454{word-spacing:-4.378680px;}
.ws3_c00454{word-spacing:-3.055796px;}
.ws0_c00454{word-spacing:-2.837779px;}
.ws5_c00454{word-spacing:0.000000px;}
.ws1_c00454{word-spacing:4.130761px;}
.fc0_c00454{color:transparent;}
.fs5_c00454{font-size:18.720000px;}
.fs1_c00454{font-size:20.400000px;}
.fs4_c00454{font-size:25.500000px;}
.fs0_c00454{font-size:28.920000px;}
.fs2_c00454{font-size:32.340000px;}
.fs3_c00454{font-size:35.700000px;}
.fs6_c00454{font-size:39.120000px;}
.y0_c00454{bottom:0.000000px;}
.ye0_c00454{bottom:252.405000px;}
.ydc_c00454{bottom:252.825000px;}
.ydf_c00454{bottom:253.245000px;}
.ye2_c00454{bottom:254.745000px;}
.ydb_c00454{bottom:254.970000px;}
.ydd_c00454{bottom:255.405000px;}
.yde_c00454{bottom:255.630000px;}
.ye1_c00454{bottom:256.905000px;}
.yd8_c00454{bottom:272.745000px;}
.yd9_c00454{bottom:273.825000px;}
.yd7_c00454{bottom:274.905000px;}
.yda_c00454{bottom:276.405000px;}
.yd4_c00454{bottom:292.245000px;}
.yd3_c00454{bottom:293.745000px;}
.yd5_c00454{bottom:294.630000px;}
.yd6_c00454{bottom:295.470000px;}
.yd2_c00454{bottom:295.905000px;}
.ycb_c00454{bottom:311.745000px;}
.yd0_c00454{bottom:312.405000px;}
.ycc_c00454{bottom:312.825000px;}
.yca_c00454{bottom:313.245000px;}
.ycd_c00454{bottom:313.905000px;}
.yc9_c00454{bottom:314.130000px;}
.yd1_c00454{bottom:314.325000px;}
.yce_c00454{bottom:314.970000px;}
.yc8_c00454{bottom:315.405000px;}
.ycf_c00454{bottom:316.470000px;}
.yc1_c00454{bottom:330.405000px;}
.yc4_c00454{bottom:332.325000px;}
.yc0_c00454{bottom:332.745000px;}
.yc5_c00454{bottom:333.405000px;}
.yc2_c00454{bottom:333.630000px;}
.yc3_c00454{bottom:334.470000px;}
.ybf_c00454{bottom:334.905000px;}
.yc6_c00454{bottom:335.970000px;}
.yc7_c00454{bottom:336.405000px;}
.ybb_c00454{bottom:351.825000px;}
.ybd_c00454{bottom:352.245000px;}
.ybc_c00454{bottom:353.130000px;}
.yba_c00454{bottom:353.970000px;}
.yb9_c00454{bottom:354.405000px;}
.ybe_c00454{bottom:355.470000px;}
.yb7_c00454{bottom:372.630000px;}
.yb6_c00454{bottom:372.825000px;}
.yb8_c00454{bottom:373.245000px;}
.yb4_c00454{bottom:373.905000px;}
.yb5_c00454{bottom:374.970000px;}
.yb0_c00454{bottom:391.245000px;}
.yb1_c00454{bottom:391.680000px;}
.yb2_c00454{bottom:392.325000px;}
.yaf_c00454{bottom:392.970000px;}
.yae_c00454{bottom:393.405000px;}
.yb3_c00454{bottom:394.905000px;}
.yaa_c00454{bottom:410.745000px;}
.yac_c00454{bottom:412.470000px;}
.ya9_c00454{bottom:412.905000px;}
.yab_c00454{bottom:413.970000px;}
.yad_c00454{bottom:414.405000px;}
.ya6_c00454{bottom:429.405000px;}
.ya7_c00454{bottom:431.745000px;}
.ya8_c00454{bottom:431.970000px;}
.ya3_c00454{bottom:432.405000px;}
.ya4_c00454{bottom:433.470000px;}
.ya5_c00454{bottom:433.905000px;}
.ya2_c00454{bottom:449.745000px;}
.y9f_c00454{bottom:451.245000px;}
.ya0_c00454{bottom:451.905000px;}
.y9d_c00454{bottom:452.130000px;}
.ya1_c00454{bottom:452.970000px;}
.y9e_c00454{bottom:453.405000px;}
.y9b_c00454{bottom:470.745000px;}
.y9c_c00454{bottom:471.630000px;}
.y9a_c00454{bottom:472.470000px;}
.y99_c00454{bottom:472.905000px;}
.y97_c00454{bottom:490.245000px;}
.y96_c00454{bottom:491.130000px;}
.y98_c00454{bottom:491.970000px;}
.y95_c00454{bottom:492.405000px;}
.y94_c00454{bottom:508.470000px;}
.y91_c00454{bottom:509.745000px;}
.y90_c00454{bottom:511.050000px;}
.y93_c00454{bottom:511.470000px;}
.y8f_c00454{bottom:511.905000px;}
.y92_c00454{bottom:512.970000px;}
.y8a_c00454{bottom:529.245000px;}
.y8e_c00454{bottom:530.130000px;}
.y8b_c00454{bottom:530.325000px;}
.y8c_c00454{bottom:531.405000px;}
.y8d_c00454{bottom:531.630000px;}
.y89_c00454{bottom:548.745000px;}
.y88_c00454{bottom:550.050000px;}
.y87_c00454{bottom:550.245000px;}
.y85_c00454{bottom:550.905000px;}
.y86_c00454{bottom:551.130000px;}
.y84_c00454{bottom:551.970000px;}
.y83_c00454{bottom:552.405000px;}
.y80_c00454{bottom:567.405000px;}
.y81_c00454{bottom:569.325000px;}
.y82_c00454{bottom:570.630000px;}
.y7f_c00454{bottom:571.905000px;}
.y7c_c00454{bottom:586.905000px;}
.y7b_c00454{bottom:589.050000px;}
.y7e_c00454{bottom:589.245000px;}
.y7d_c00454{bottom:590.130000px;}
.y79_c00454{bottom:590.325000px;}
.y7a_c00454{bottom:591.405000px;}
.y78_c00454{bottom:607.680000px;}
.y75_c00454{bottom:608.745000px;}
.y77_c00454{bottom:609.825000px;}
.y76_c00454{bottom:610.905000px;}
.y72_c00454{bottom:628.245000px;}
.y74_c00454{bottom:628.680000px;}
.y71_c00454{bottom:630.405000px;}
.y73_c00454{bottom:631.470000px;}
.y6f_c00454{bottom:646.905000px;}
.y6c_c00454{bottom:649.245000px;}
.y6b_c00454{bottom:649.905000px;}
.y6e_c00454{bottom:650.130000px;}
.y70_c00454{bottom:650.970000px;}
.y6d_c00454{bottom:651.405000px;}
.y65_c00454{bottom:666.405000px;}
.y66_c00454{bottom:668.745000px;}
.y68_c00454{bottom:669.405000px;}
.y6a_c00454{bottom:669.825000px;}
.y69_c00454{bottom:670.470000px;}
.y67_c00454{bottom:670.905000px;}
.y61_c00454{bottom:688.245000px;}
.y63_c00454{bottom:688.905000px;}
.y62_c00454{bottom:689.130000px;}
.y64_c00454{bottom:689.325000px;}
.y60_c00454{bottom:689.970000px;}
.y5f_c00454{bottom:690.405000px;}
.y5e_c00454{bottom:705.405000px;}
.y5b_c00454{bottom:706.680000px;}
.y5a_c00454{bottom:707.325000px;}
.y5d_c00454{bottom:707.745000px;}
.y5c_c00454{bottom:708.825000px;}
.y59_c00454{bottom:709.905000px;}
.y56_c00454{bottom:726.405000px;}
.y54_c00454{bottom:727.245000px;}
.y57_c00454{bottom:728.130000px;}
.y58_c00454{bottom:728.970000px;}
.y55_c00454{bottom:729.405000px;}
.y53_c00454{bottom:746.745000px;}
.y52_c00454{bottom:747.825000px;}
.y4f_c00454{bottom:748.905000px;}
.y51_c00454{bottom:749.130000px;}
.y50_c00454{bottom:749.970000px;}
.y4e_c00454{bottom:765.405000px;}
.y4c_c00454{bottom:768.405000px;}
.y4d_c00454{bottom:769.470000px;}
.y4a_c00454{bottom:784.680000px;}
.y4b_c00454{bottom:787.905000px;}
.y46_c00454{bottom:805.245000px;}
.y47_c00454{bottom:807.405000px;}
.y48_c00454{bottom:807.630000px;}
.y49_c00454{bottom:808.470000px;}
.y41_c00454{bottom:823.905000px;}
.y44_c00454{bottom:824.745000px;}
.y42_c00454{bottom:826.905000px;}
.y43_c00454{bottom:827.130000px;}
.y45_c00454{bottom:827.970000px;}
.y3f_c00454{bottom:845.745000px;}
.y3e_c00454{bottom:846.630000px;}
.y40_c00454{bottom:847.470000px;}
.y3d_c00454{bottom:847.905000px;}
.y3c_c00454{bottom:863.970000px;}
.y3a_c00454{bottom:865.245000px;}
.y38_c00454{bottom:865.905000px;}
.y3b_c00454{bottom:866.130000px;}
.y39_c00454{bottom:867.405000px;}
.y37_c00454{bottom:882.405000px;}
.y36_c00454{bottom:884.745000px;}
.y35_c00454{bottom:885.630000px;}
.y34_c00454{bottom:886.470000px;}
.y33_c00454{bottom:886.905000px;}
.y2f_c00454{bottom:903.825000px;}
.y30_c00454{bottom:904.245000px;}
.y32_c00454{bottom:905.130000px;}
.y31_c00454{bottom:905.970000px;}
.y2e_c00454{bottom:906.405000px;}
.y2c_c00454{bottom:923.325000px;}
.y2b_c00454{bottom:923.745000px;}
.y29_c00454{bottom:924.630000px;}
.y2a_c00454{bottom:925.470000px;}
.y28_c00454{bottom:925.905000px;}
.y2d_c00454{bottom:927.405000px;}
.y26_c00454{bottom:942.825000px;}
.y23_c00454{bottom:944.970000px;}
.y22_c00454{bottom:945.405000px;}
.y25_c00454{bottom:945.630000px;}
.y24_c00454{bottom:946.470000px;}
.y27_c00454{bottom:946.905000px;}
.y1f_c00454{bottom:962.745000px;}
.y1e_c00454{bottom:964.905000px;}
.y20_c00454{bottom:965.130000px;}
.y21_c00454{bottom:966.405000px;}
.y1a_c00454{bottom:982.245000px;}
.y1b_c00454{bottom:984.405000px;}
.y1c_c00454{bottom:985.470000px;}
.y1d_c00454{bottom:985.905000px;}
.y16_c00454{bottom:1001.745000px;}
.y17_c00454{bottom:1003.245000px;}
.y15_c00454{bottom:1003.905000px;}
.y18_c00454{bottom:1004.130000px;}
.y19_c00454{bottom:1005.405000px;}
.y12_c00454{bottom:1021.245000px;}
.y14_c00454{bottom:1022.325000px;}
.y11_c00454{bottom:1023.405000px;}
.yf_c00454{bottom:1023.630000px;}
.y10_c00454{bottom:1024.470000px;}
.y13_c00454{bottom:1024.905000px;}
.yc_c00454{bottom:1042.245000px;}
.y8_c00454{bottom:1042.905000px;}
.y9_c00454{bottom:1043.130000px;}
.yd_c00454{bottom:1043.325000px;}
.yb_c00454{bottom:1043.970000px;}
.ya_c00454{bottom:1044.405000px;}
.ye_c00454{bottom:1045.470000px;}
.y4_c00454{bottom:1061.325000px;}
.y5_c00454{bottom:1061.745000px;}
.y6_c00454{bottom:1063.470000px;}
.y3_c00454{bottom:1063.905000px;}
.y7_c00454{bottom:1064.970000px;}
.y1_c00454{bottom:1099.905000px;}
.y2_c00454{bottom:1102.050000px;}
.h6_c00454{height:23.025234px;}
.h2_c00454{height:25.091602px;}
.h5_c00454{height:31.364502px;}
.h1_c00454{height:35.571035px;}
.h3_c00454{height:39.777568px;}
.h8_c00454{height:41.571035px;}
.h4_c00454{height:43.910303px;}
.h7_c00454{height:48.116836px;}
.h0_c00454{height:1335.000000px;}
.w0_c00454{width:880.500000px;}
.x0_c00454{left:0.000000px;}
.x20_c00454{left:150.000000px;}
.x3_c00454{left:151.080000px;}
.x9b_c00454{left:153.000000px;}
.x9d_c00454{left:168.000000px;}
.x4_c00454{left:169.920000px;}
.x103_c00454{left:171.000000px;}
.x10c_c00454{left:172.500000px;}
.xef_c00454{left:173.580000px;}
.x2d_c00454{left:177.000000px;}
.x59_c00454{left:178.500000px;}
.xfc_c00454{left:181.080000px;}
.x62_c00454{left:182.580000px;}
.xb0_c00454{left:185.580000px;}
.x21_c00454{left:187.500000px;}
.x91_c00454{left:189.420000px;}
.x4c_c00454{left:190.500000px;}
.x43_c00454{left:192.000000px;}
.x12_c00454{left:193.500000px;}
.x5_c00454{left:194.580000px;}
.xf5_c00454{left:196.920000px;}
.xbc_c00454{left:198.000000px;}
.x9c_c00454{left:199.500000px;}
.x10e_c00454{left:201.420000px;}
.xf0_c00454{left:202.500000px;}
.x89_c00454{left:204.000000px;}
.xd7_c00454{left:208.500000px;}
.x10d_c00454{left:211.080000px;}
.xd1_c00454{left:213.000000px;}
.x22_c00454{left:214.080000px;}
.xb8_c00454{left:217.500000px;}
.xf9_c00454{left:219.000000px;}
.x5a_c00454{left:220.080000px;}
.x9e_c00454{left:222.000000px;}
.x92_c00454{left:223.080000px;}
.x13_c00454{left:225.000000px;}
.x4d_c00454{left:226.080000px;}
.xce_c00454{left:228.000000px;}
.x6_c00454{left:229.500000px;}
.xd8_c00454{left:230.580000px;}
.x39_c00454{left:232.080000px;}
.xa4_c00454{left:234.000000px;}
.xe0_c00454{left:235.500000px;}
.x78_c00454{left:238.500000px;}
.x2e_c00454{left:240.420000px;}
.xb1_c00454{left:242.580000px;}
.x6e_c00454{left:244.080000px;}
.xe5_c00454{left:246.000000px;}
.x23_c00454{left:247.500000px;}
.x10f_c00454{left:249.000000px;}
.x82_c00454{left:250.920000px;}
.x5b_c00454{left:252.000000px;}
.xa5_c00454{left:255.000000px;}
.x44_c00454{left:257.580000px;}
.xb9_c00454{left:259.500000px;}
.x14_c00454{left:262.080000px;}
.x7_c00454{left:265.500000px;}
.x24_c00454{left:266.580000px;}
.xc9_c00454{left:268.080000px;}
.x4e_c00454{left:270.420000px;}
.xa6_c00454{left:271.500000px;}
.xc3_c00454{left:272.580000px;}
.xb2_c00454{left:274.500000px;}
.x3a_c00454{left:275.580000px;}
.x6f_c00454{left:277.500000px;}
.xdc_c00454{left:280.080000px;}
.x15_c00454{left:282.420000px;}
.xf1_c00454{left:285.000000px;}
.x8a_c00454{left:286.500000px;}
.x5c_c00454{left:288.420000px;}
.xca_c00454{left:289.500000px;}
.x63_c00454{left:291.000000px;}
.xe6_c00454{left:292.500000px;}
.x3b_c00454{left:294.420000px;}
.x45_c00454{left:295.920000px;}
.x104_c00454{left:297.000000px;}
.xea_c00454{left:298.080000px;}
.x2f_c00454{left:301.500000px;}
.xad_c00454{left:303.000000px;}
.xd2_c00454{left:304.500000px;}
.x64_c00454{left:306.000000px;}
.x16_c00454{left:310.500000px;}
.x93_c00454{left:312.420000px;}
.x70_c00454{left:314.580000px;}
.x8_c00454{left:319.500000px;}
.x25_c00454{left:321.420000px;}
.xfa_c00454{left:322.500000px;}
.x5d_c00454{left:324.000000px;}
.x4f_c00454{left:326.580000px;}
.x8b_c00454{left:331.500000px;}
.x46_c00454{left:333.000000px;}
.x3c_c00454{left:334.080000px;}
.x100_c00454{left:336.420000px;}
.xc4_c00454{left:338.775000px;}
.x94_c00454{left:340.500000px;}
.x9f_c00454{left:342.000000px;}
.xd3_c00454{left:343.500000px;}
.xba_c00454{left:345.000000px;}
.x71_c00454{left:346.500000px;}
.xeb_c00454{left:348.000000px;}
.xbd_c00454{left:352.920000px;}
.x83_c00454{left:355.920000px;}
.x30_c00454{left:357.000000px;}
.xcf_c00454{left:358.080000px;}
.x26_c00454{left:360.420000px;}
.x101_c00454{left:361.500000px;}
.xa0_c00454{left:362.580000px;}
.x17_c00454{left:364.080000px;}
.xe1_c00454{left:365.580000px;}
.x50_c00454{left:367.080000px;}
.x65_c00454{left:368.580000px;}
.xfd_c00454{left:373.080000px;}
.xec_c00454{left:378.000000px;}
.x31_c00454{left:379.920000px;}
.x5e_c00454{left:382.500000px;}
.xae_c00454{left:384.420000px;}
.x51_c00454{left:385.920000px;}
.x9_c00454{left:387.420000px;}
.x79_c00454{left:388.920000px;}
.x8c_c00454{left:393.000000px;}
.x18_c00454{left:396.000000px;}
.xed_c00454{left:397.500000px;}
.x72_c00454{left:399.000000px;}
.x27_c00454{left:400.500000px;}
.x5f_c00454{left:402.420000px;}
.x66_c00454{left:403.500000px;}
.x2_c00454{left:405.000000px;}
.x32_c00454{left:406.920000px;}
.xf2_c00454{left:408.000000px;}
.xf6_c00454{left:409.920000px;}
.xcb_c00454{left:411.000000px;}
.x52_c00454{left:412.080000px;}
.x8d_c00454{left:414.420000px;}
.x7a_c00454{left:418.920000px;}
.x95_c00454{left:420.000000px;}
.x73_c00454{left:421.500000px;}
.xa_c00454{left:423.000000px;}
.x47_c00454{left:424.500000px;}
.x3d_c00454{left:427.920000px;}
.xbe_c00454{left:431.145000px;}
.xa7_c00454{left:432.420000px;}
.xbb_c00454{left:433.920000px;}
.xc5_c00454{left:436.500000px;}
.x84_c00454{left:438.000000px;}
.xa1_c00454{left:439.920000px;}
.x53_c00454{left:442.500000px;}
.x33_c00454{left:446.580000px;}
.x102_c00454{left:451.920000px;}
.x7b_c00454{left:453.420000px;}
.x107_c00454{left:456.420000px;}
.x8e_c00454{left:457.500000px;}
.xcc_c00454{left:463.500000px;}
.x67_c00454{left:465.000000px;}
.x110_c00454{left:466.080000px;}
.x3e_c00454{left:468.000000px;}
.x60_c00454{left:469.500000px;}
.x19_c00454{left:471.000000px;}
.xb3_c00454{left:472.275000px;}
.x96_c00454{left:475.500000px;}
.xb_c00454{left:477.000000px;}
.xee_c00454{left:478.920000px;}
.x54_c00454{left:480.000000px;}
.x74_c00454{left:484.080000px;}
.x8f_c00454{left:487.080000px;}
.xc6_c00454{left:489.000000px;}
.xa8_c00454{left:491.580000px;}
.x7c_c00454{left:493.500000px;}
.x108_c00454{left:495.000000px;}
.xd0_c00454{left:496.080000px;}
.x34_c00454{left:499.920000px;}
.x97_c00454{left:502.500000px;}
.x68_c00454{left:503.580000px;}
.x85_c00454{left:506.580000px;}
.x3f_c00454{left:510.420000px;}
.x48_c00454{left:511.500000px;}
.x75_c00454{left:512.580000px;}
.xe7_c00454{left:513.645000px;}
.x28_c00454{left:514.920000px;}
.xd5_c00454{left:516.000000px;}
.x1a_c00454{left:517.080000px;}
.xaf_c00454{left:519.420000px;}
.xc_c00454{left:524.580000px;}
.xcd_c00454{left:527.580000px;}
.x105_c00454{left:529.500000px;}
.x7d_c00454{left:531.420000px;}
.x109_c00454{left:535.500000px;}
.x55_c00454{left:536.580000px;}
.x1b_c00454{left:538.920000px;}
.x29_c00454{left:541.500000px;}
.xd_c00454{left:543.000000px;}
.xdd_c00454{left:544.500000px;}
.x86_c00454{left:547.500000px;}
.x69_c00454{left:549.000000px;}
.xc7_c00454{left:550.500000px;}
.x35_c00454{left:552.420000px;}
.xa9_c00454{left:553.920000px;}
.x10a_c00454{left:555.000000px;}
.x7e_c00454{left:561.420000px;}
.xde_c00454{left:562.500000px;}
.xbf_c00454{left:564.420000px;}
.xe2_c00454{left:565.500000px;}
.x56_c00454{left:566.580000px;}
.xa2_c00454{left:568.920000px;}
.x98_c00454{left:570.000000px;}
.x61_c00454{left:571.080000px;}
.x6a_c00454{left:574.500000px;}
.x49_c00454{left:575.580000px;}
.xf3_c00454{left:577.500000px;}
.x1c_c00454{left:579.420000px;}
.x10b_c00454{left:580.500000px;}
.xaa_c00454{left:583.500000px;}
.x40_c00454{left:586.920000px;}
.xd9_c00454{left:589.500000px;}
.x2a_c00454{left:591.000000px;}
.xc0_c00454{left:592.500000px;}
.xb4_c00454{left:595.500000px;}
.x7f_c00454{left:597.000000px;}
.xfe_c00454{left:600.000000px;}
.xe8_c00454{left:601.080000px;}
.xf4_c00454{left:603.000000px;}
.x6b_c00454{left:604.500000px;}
.xfb_c00454{left:607.080000px;}
.x2b_c00454{left:609.000000px;}
.x99_c00454{left:610.500000px;}
.x57_c00454{left:613.500000px;}
.x80_c00454{left:615.420000px;}
.x87_c00454{left:620.580000px;}
.x1d_c00454{left:622.500000px;}
.x4a_c00454{left:624.420000px;}
.xb5_c00454{left:625.920000px;}
.x106_c00454{left:628.080000px;}
.x36_c00454{left:630.000000px;}
.xe_c00454{left:631.920000px;}
.x76_c00454{left:633.000000px;}
.xdf_c00454{left:637.080000px;}
.xc1_c00454{left:639.000000px;}
.x41_c00454{left:640.080000px;}
.x81_c00454{left:642.420000px;}
.xe3_c00454{left:645.420000px;}
.x90_c00454{left:646.500000px;}
.x4b_c00454{left:651.000000px;}
.x6c_c00454{left:652.080000px;}
.x2c_c00454{left:654.000000px;}
.xa3_c00454{left:655.080000px;}
.xf_c00454{left:657.000000px;}
.xc8_c00454{left:658.920000px;}
.xf7_c00454{left:660.000000px;}
.xda_c00454{left:661.920000px;}
.xab_c00454{left:663.420000px;}
.x88_c00454{left:669.000000px;}
.x42_c00454{left:670.080000px;}
.x1e_c00454{left:672.000000px;}
.xe4_c00454{left:673.920000px;}
.x37_c00454{left:675.420000px;}
.xe9_c00454{left:677.580000px;}
.x58_c00454{left:680.580000px;}
.xb6_c00454{left:685.275000px;}
.x10_c00454{left:688.080000px;}
.xdb_c00454{left:691.500000px;}
.xd6_c00454{left:693.000000px;}
.x9a_c00454{left:694.500000px;}
.xc2_c00454{left:697.500000px;}
.xf8_c00454{left:698.580000px;}
.x1f_c00454{left:700.080000px;}
.xac_c00454{left:701.580000px;}
.x1_c00454{left:703.500000px;}
.x11_c00454{left:705.420000px;}
.xff_c00454{left:706.500000px;}
.x77_c00454{left:711.000000px;}
.x38_c00454{left:713.580000px;}
.x6d_c00454{left:715.080000px;}
.xd4_c00454{left:716.580000px;}
.x111_c00454{left:718.500000px;}
.xb7_c00454{left:723.000000px;}
@media print{
.v0_c00454{vertical-align:0.000000pt;}
.v1_c00454{vertical-align:5.333333pt;}
.ls0_c00454{letter-spacing:0.000000pt;}
.ws4_c00454{word-spacing:-5.094269pt;}
.ws2_c00454{word-spacing:-3.892160pt;}
.ws3_c00454{word-spacing:-2.716263pt;}
.ws0_c00454{word-spacing:-2.522470pt;}
.ws5_c00454{word-spacing:0.000000pt;}
.ws1_c00454{word-spacing:3.671787pt;}
.fs5_c00454{font-size:16.640000pt;}
.fs1_c00454{font-size:18.133333pt;}
.fs4_c00454{font-size:22.666667pt;}
.fs0_c00454{font-size:25.706667pt;}
.fs2_c00454{font-size:28.746667pt;}
.fs3_c00454{font-size:31.733333pt;}
.fs6_c00454{font-size:34.773333pt;}
.y0_c00454{bottom:0.000000pt;}
.ye0_c00454{bottom:224.360000pt;}
.ydc_c00454{bottom:224.733333pt;}
.ydf_c00454{bottom:225.106667pt;}
.ye2_c00454{bottom:226.440000pt;}
.ydb_c00454{bottom:226.640000pt;}
.ydd_c00454{bottom:227.026667pt;}
.yde_c00454{bottom:227.226667pt;}
.ye1_c00454{bottom:228.360000pt;}
.yd8_c00454{bottom:242.440000pt;}
.yd9_c00454{bottom:243.400000pt;}
.yd7_c00454{bottom:244.360000pt;}
.yda_c00454{bottom:245.693333pt;}
.yd4_c00454{bottom:259.773333pt;}
.yd3_c00454{bottom:261.106667pt;}
.yd5_c00454{bottom:261.893333pt;}
.yd6_c00454{bottom:262.640000pt;}
.yd2_c00454{bottom:263.026667pt;}
.ycb_c00454{bottom:277.106667pt;}
.yd0_c00454{bottom:277.693333pt;}
.ycc_c00454{bottom:278.066667pt;}
.yca_c00454{bottom:278.440000pt;}
.ycd_c00454{bottom:279.026667pt;}
.yc9_c00454{bottom:279.226667pt;}
.yd1_c00454{bottom:279.400000pt;}
.yce_c00454{bottom:279.973333pt;}
.yc8_c00454{bottom:280.360000pt;}
.ycf_c00454{bottom:281.306667pt;}
.yc1_c00454{bottom:293.693333pt;}
.yc4_c00454{bottom:295.400000pt;}
.yc0_c00454{bottom:295.773333pt;}
.yc5_c00454{bottom:296.360000pt;}
.yc2_c00454{bottom:296.560000pt;}
.yc3_c00454{bottom:297.306667pt;}
.ybf_c00454{bottom:297.693333pt;}
.yc6_c00454{bottom:298.640000pt;}
.yc7_c00454{bottom:299.026667pt;}
.ybb_c00454{bottom:312.733333pt;}
.ybd_c00454{bottom:313.106667pt;}
.ybc_c00454{bottom:313.893333pt;}
.yba_c00454{bottom:314.640000pt;}
.yb9_c00454{bottom:315.026667pt;}
.ybe_c00454{bottom:315.973333pt;}
.yb7_c00454{bottom:331.226667pt;}
.yb6_c00454{bottom:331.400000pt;}
.yb8_c00454{bottom:331.773333pt;}
.yb4_c00454{bottom:332.360000pt;}
.yb5_c00454{bottom:333.306667pt;}
.yb0_c00454{bottom:347.773333pt;}
.yb1_c00454{bottom:348.160000pt;}
.yb2_c00454{bottom:348.733333pt;}
.yaf_c00454{bottom:349.306667pt;}
.yae_c00454{bottom:349.693333pt;}
.yb3_c00454{bottom:351.026667pt;}
.yaa_c00454{bottom:365.106667pt;}
.yac_c00454{bottom:366.640000pt;}
.ya9_c00454{bottom:367.026667pt;}
.yab_c00454{bottom:367.973333pt;}
.yad_c00454{bottom:368.360000pt;}
.ya6_c00454{bottom:381.693333pt;}
.ya7_c00454{bottom:383.773333pt;}
.ya8_c00454{bottom:383.973333pt;}
.ya3_c00454{bottom:384.360000pt;}
.ya4_c00454{bottom:385.306667pt;}
.ya5_c00454{bottom:385.693333pt;}
.ya2_c00454{bottom:399.773333pt;}
.y9f_c00454{bottom:401.106667pt;}
.ya0_c00454{bottom:401.693333pt;}
.y9d_c00454{bottom:401.893333pt;}
.ya1_c00454{bottom:402.640000pt;}
.y9e_c00454{bottom:403.026667pt;}
.y9b_c00454{bottom:418.440000pt;}
.y9c_c00454{bottom:419.226667pt;}
.y9a_c00454{bottom:419.973333pt;}
.y99_c00454{bottom:420.360000pt;}
.y97_c00454{bottom:435.773333pt;}
.y96_c00454{bottom:436.560000pt;}
.y98_c00454{bottom:437.306667pt;}
.y95_c00454{bottom:437.693333pt;}
.y94_c00454{bottom:451.973333pt;}
.y91_c00454{bottom:453.106667pt;}
.y90_c00454{bottom:454.266667pt;}
.y93_c00454{bottom:454.640000pt;}
.y8f_c00454{bottom:455.026667pt;}
.y92_c00454{bottom:455.973333pt;}
.y8a_c00454{bottom:470.440000pt;}
.y8e_c00454{bottom:471.226667pt;}
.y8b_c00454{bottom:471.400000pt;}
.y8c_c00454{bottom:472.360000pt;}
.y8d_c00454{bottom:472.560000pt;}
.y89_c00454{bottom:487.773333pt;}
.y88_c00454{bottom:488.933333pt;}
.y87_c00454{bottom:489.106667pt;}
.y85_c00454{bottom:489.693333pt;}
.y86_c00454{bottom:489.893333pt;}
.y84_c00454{bottom:490.640000pt;}
.y83_c00454{bottom:491.026667pt;}
.y80_c00454{bottom:504.360000pt;}
.y81_c00454{bottom:506.066667pt;}
.y82_c00454{bottom:507.226667pt;}
.y7f_c00454{bottom:508.360000pt;}
.y7c_c00454{bottom:521.693333pt;}
.y7b_c00454{bottom:523.600000pt;}
.y7e_c00454{bottom:523.773333pt;}
.y7d_c00454{bottom:524.560000pt;}
.y79_c00454{bottom:524.733333pt;}
.y7a_c00454{bottom:525.693333pt;}
.y78_c00454{bottom:540.160000pt;}
.y75_c00454{bottom:541.106667pt;}
.y77_c00454{bottom:542.066667pt;}
.y76_c00454{bottom:543.026667pt;}
.y72_c00454{bottom:558.440000pt;}
.y74_c00454{bottom:558.826667pt;}
.y71_c00454{bottom:560.360000pt;}
.y73_c00454{bottom:561.306667pt;}
.y6f_c00454{bottom:575.026667pt;}
.y6c_c00454{bottom:577.106667pt;}
.y6b_c00454{bottom:577.693333pt;}
.y6e_c00454{bottom:577.893333pt;}
.y70_c00454{bottom:578.640000pt;}
.y6d_c00454{bottom:579.026667pt;}
.y65_c00454{bottom:592.360000pt;}
.y66_c00454{bottom:594.440000pt;}
.y68_c00454{bottom:595.026667pt;}
.y6a_c00454{bottom:595.400000pt;}
.y69_c00454{bottom:595.973333pt;}
.y67_c00454{bottom:596.360000pt;}
.y61_c00454{bottom:611.773333pt;}
.y63_c00454{bottom:612.360000pt;}
.y62_c00454{bottom:612.560000pt;}
.y64_c00454{bottom:612.733333pt;}
.y60_c00454{bottom:613.306667pt;}
.y5f_c00454{bottom:613.693333pt;}
.y5e_c00454{bottom:627.026667pt;}
.y5b_c00454{bottom:628.160000pt;}
.y5a_c00454{bottom:628.733333pt;}
.y5d_c00454{bottom:629.106667pt;}
.y5c_c00454{bottom:630.066667pt;}
.y59_c00454{bottom:631.026667pt;}
.y56_c00454{bottom:645.693333pt;}
.y54_c00454{bottom:646.440000pt;}
.y57_c00454{bottom:647.226667pt;}
.y58_c00454{bottom:647.973333pt;}
.y55_c00454{bottom:648.360000pt;}
.y53_c00454{bottom:663.773333pt;}
.y52_c00454{bottom:664.733333pt;}
.y4f_c00454{bottom:665.693333pt;}
.y51_c00454{bottom:665.893333pt;}
.y50_c00454{bottom:666.640000pt;}
.y4e_c00454{bottom:680.360000pt;}
.y4c_c00454{bottom:683.026667pt;}
.y4d_c00454{bottom:683.973333pt;}
.y4a_c00454{bottom:697.493333pt;}
.y4b_c00454{bottom:700.360000pt;}
.y46_c00454{bottom:715.773333pt;}
.y47_c00454{bottom:717.693333pt;}
.y48_c00454{bottom:717.893333pt;}
.y49_c00454{bottom:718.640000pt;}
.y41_c00454{bottom:732.360000pt;}
.y44_c00454{bottom:733.106667pt;}
.y42_c00454{bottom:735.026667pt;}
.y43_c00454{bottom:735.226667pt;}
.y45_c00454{bottom:735.973333pt;}
.y3f_c00454{bottom:751.773333pt;}
.y3e_c00454{bottom:752.560000pt;}
.y40_c00454{bottom:753.306667pt;}
.y3d_c00454{bottom:753.693333pt;}
.y3c_c00454{bottom:767.973333pt;}
.y3a_c00454{bottom:769.106667pt;}
.y38_c00454{bottom:769.693333pt;}
.y3b_c00454{bottom:769.893333pt;}
.y39_c00454{bottom:771.026667pt;}
.y37_c00454{bottom:784.360000pt;}
.y36_c00454{bottom:786.440000pt;}
.y35_c00454{bottom:787.226667pt;}
.y34_c00454{bottom:787.973333pt;}
.y33_c00454{bottom:788.360000pt;}
.y2f_c00454{bottom:803.400000pt;}
.y30_c00454{bottom:803.773333pt;}
.y32_c00454{bottom:804.560000pt;}
.y31_c00454{bottom:805.306667pt;}
.y2e_c00454{bottom:805.693333pt;}
.y2c_c00454{bottom:820.733333pt;}
.y2b_c00454{bottom:821.106667pt;}
.y29_c00454{bottom:821.893333pt;}
.y2a_c00454{bottom:822.640000pt;}
.y28_c00454{bottom:823.026667pt;}
.y2d_c00454{bottom:824.360000pt;}
.y26_c00454{bottom:838.066667pt;}
.y23_c00454{bottom:839.973333pt;}
.y22_c00454{bottom:840.360000pt;}
.y25_c00454{bottom:840.560000pt;}
.y24_c00454{bottom:841.306667pt;}
.y27_c00454{bottom:841.693333pt;}
.y1f_c00454{bottom:855.773333pt;}
.y1e_c00454{bottom:857.693333pt;}
.y20_c00454{bottom:857.893333pt;}
.y21_c00454{bottom:859.026667pt;}
.y1a_c00454{bottom:873.106667pt;}
.y1b_c00454{bottom:875.026667pt;}
.y1c_c00454{bottom:875.973333pt;}
.y1d_c00454{bottom:876.360000pt;}
.y16_c00454{bottom:890.440000pt;}
.y17_c00454{bottom:891.773333pt;}
.y15_c00454{bottom:892.360000pt;}
.y18_c00454{bottom:892.560000pt;}
.y19_c00454{bottom:893.693333pt;}
.y12_c00454{bottom:907.773333pt;}
.y14_c00454{bottom:908.733333pt;}
.y11_c00454{bottom:909.693333pt;}
.yf_c00454{bottom:909.893333pt;}
.y10_c00454{bottom:910.640000pt;}
.y13_c00454{bottom:911.026667pt;}
.yc_c00454{bottom:926.440000pt;}
.y8_c00454{bottom:927.026667pt;}
.y9_c00454{bottom:927.226667pt;}
.yd_c00454{bottom:927.400000pt;}
.yb_c00454{bottom:927.973333pt;}
.ya_c00454{bottom:928.360000pt;}
.ye_c00454{bottom:929.306667pt;}
.y4_c00454{bottom:943.400000pt;}
.y5_c00454{bottom:943.773333pt;}
.y6_c00454{bottom:945.306667pt;}
.y3_c00454{bottom:945.693333pt;}
.y7_c00454{bottom:946.640000pt;}
.y1_c00454{bottom:977.693333pt;}
.y2_c00454{bottom:979.600000pt;}
.h6_c00454{height:20.466875pt;}
.h2_c00454{height:22.303646pt;}
.h5_c00454{height:27.879557pt;}
.h1_c00454{height:31.618698pt;}
.h3_c00454{height:35.357839pt;}
.h8_c00454{height:36.952031pt;}
.h4_c00454{height:39.031380pt;}
.h7_c00454{height:42.770521pt;}
.h0_c00454{height:1186.666667pt;}
.w0_c00454{width:782.666667pt;}
.x0_c00454{left:0.000000pt;}
.x20_c00454{left:133.333333pt;}
.x3_c00454{left:134.293333pt;}
.x9b_c00454{left:136.000000pt;}
.x9d_c00454{left:149.333333pt;}
.x4_c00454{left:151.040000pt;}
.x103_c00454{left:152.000000pt;}
.x10c_c00454{left:153.333333pt;}
.xef_c00454{left:154.293333pt;}
.x2d_c00454{left:157.333333pt;}
.x59_c00454{left:158.666667pt;}
.xfc_c00454{left:160.960000pt;}
.x62_c00454{left:162.293333pt;}
.xb0_c00454{left:164.960000pt;}
.x21_c00454{left:166.666667pt;}
.x91_c00454{left:168.373333pt;}
.x4c_c00454{left:169.333333pt;}
.x43_c00454{left:170.666667pt;}
.x12_c00454{left:172.000000pt;}
.x5_c00454{left:172.960000pt;}
.xf5_c00454{left:175.040000pt;}
.xbc_c00454{left:176.000000pt;}
.x9c_c00454{left:177.333333pt;}
.x10e_c00454{left:179.040000pt;}
.xf0_c00454{left:180.000000pt;}
.x89_c00454{left:181.333333pt;}
.xd7_c00454{left:185.333333pt;}
.x10d_c00454{left:187.626667pt;}
.xd1_c00454{left:189.333333pt;}
.x22_c00454{left:190.293333pt;}
.xb8_c00454{left:193.333333pt;}
.xf9_c00454{left:194.666667pt;}
.x5a_c00454{left:195.626667pt;}
.x9e_c00454{left:197.333333pt;}
.x92_c00454{left:198.293333pt;}
.x13_c00454{left:200.000000pt;}
.x4d_c00454{left:200.960000pt;}
.xce_c00454{left:202.666667pt;}
.x6_c00454{left:204.000000pt;}
.xd8_c00454{left:204.960000pt;}
.x39_c00454{left:206.293333pt;}
.xa4_c00454{left:208.000000pt;}
.xe0_c00454{left:209.333333pt;}
.x78_c00454{left:212.000000pt;}
.x2e_c00454{left:213.706667pt;}
.xb1_c00454{left:215.626667pt;}
.x6e_c00454{left:216.960000pt;}
.xe5_c00454{left:218.666667pt;}
.x23_c00454{left:220.000000pt;}
.x10f_c00454{left:221.333333pt;}
.x82_c00454{left:223.040000pt;}
.x5b_c00454{left:224.000000pt;}
.xa5_c00454{left:226.666667pt;}
.x44_c00454{left:228.960000pt;}
.xb9_c00454{left:230.666667pt;}
.x14_c00454{left:232.960000pt;}
.x7_c00454{left:236.000000pt;}
.x24_c00454{left:236.960000pt;}
.xc9_c00454{left:238.293333pt;}
.x4e_c00454{left:240.373333pt;}
.xa6_c00454{left:241.333333pt;}
.xc3_c00454{left:242.293333pt;}
.xb2_c00454{left:244.000000pt;}
.x3a_c00454{left:244.960000pt;}
.x6f_c00454{left:246.666667pt;}
.xdc_c00454{left:248.960000pt;}
.x15_c00454{left:251.040000pt;}
.xf1_c00454{left:253.333333pt;}
.x8a_c00454{left:254.666667pt;}
.x5c_c00454{left:256.373333pt;}
.xca_c00454{left:257.333333pt;}
.x63_c00454{left:258.666667pt;}
.xe6_c00454{left:260.000000pt;}
.x3b_c00454{left:261.706667pt;}
.x45_c00454{left:263.040000pt;}
.x104_c00454{left:264.000000pt;}
.xea_c00454{left:264.960000pt;}
.x2f_c00454{left:268.000000pt;}
.xad_c00454{left:269.333333pt;}
.xd2_c00454{left:270.666667pt;}
.x64_c00454{left:272.000000pt;}
.x16_c00454{left:276.000000pt;}
.x93_c00454{left:277.706667pt;}
.x70_c00454{left:279.626667pt;}
.x8_c00454{left:284.000000pt;}
.x25_c00454{left:285.706667pt;}
.xfa_c00454{left:286.666667pt;}
.x5d_c00454{left:288.000000pt;}
.x4f_c00454{left:290.293333pt;}
.x8b_c00454{left:294.666667pt;}
.x46_c00454{left:296.000000pt;}
.x3c_c00454{left:296.960000pt;}
.x100_c00454{left:299.040000pt;}
.xc4_c00454{left:301.133333pt;}
.x94_c00454{left:302.666667pt;}
.x9f_c00454{left:304.000000pt;}
.xd3_c00454{left:305.333333pt;}
.xba_c00454{left:306.666667pt;}
.x71_c00454{left:308.000000pt;}
.xeb_c00454{left:309.333333pt;}
.xbd_c00454{left:313.706667pt;}
.x83_c00454{left:316.373333pt;}
.x30_c00454{left:317.333333pt;}
.xcf_c00454{left:318.293333pt;}
.x26_c00454{left:320.373333pt;}
.x101_c00454{left:321.333333pt;}
.xa0_c00454{left:322.293333pt;}
.x17_c00454{left:323.626667pt;}
.xe1_c00454{left:324.960000pt;}
.x50_c00454{left:326.293333pt;}
.x65_c00454{left:327.626667pt;}
.xfd_c00454{left:331.626667pt;}
.xec_c00454{left:336.000000pt;}
.x31_c00454{left:337.706667pt;}
.x5e_c00454{left:340.000000pt;}
.xae_c00454{left:341.706667pt;}
.x51_c00454{left:343.040000pt;}
.x9_c00454{left:344.373333pt;}
.x79_c00454{left:345.706667pt;}
.x8c_c00454{left:349.333333pt;}
.x18_c00454{left:352.000000pt;}
.xed_c00454{left:353.333333pt;}
.x72_c00454{left:354.666667pt;}
.x27_c00454{left:356.000000pt;}
.x5f_c00454{left:357.706667pt;}
.x66_c00454{left:358.666667pt;}
.x2_c00454{left:360.000000pt;}
.x32_c00454{left:361.706667pt;}
.xf2_c00454{left:362.666667pt;}
.xf6_c00454{left:364.373333pt;}
.xcb_c00454{left:365.333333pt;}
.x52_c00454{left:366.293333pt;}
.x8d_c00454{left:368.373333pt;}
.x7a_c00454{left:372.373333pt;}
.x95_c00454{left:373.333333pt;}
.x73_c00454{left:374.666667pt;}
.xa_c00454{left:376.000000pt;}
.x47_c00454{left:377.333333pt;}
.x3d_c00454{left:380.373333pt;}
.xbe_c00454{left:383.240000pt;}
.xa7_c00454{left:384.373333pt;}
.xbb_c00454{left:385.706667pt;}
.xc5_c00454{left:388.000000pt;}
.x84_c00454{left:389.333333pt;}
.xa1_c00454{left:391.040000pt;}
.x53_c00454{left:393.333333pt;}
.x33_c00454{left:396.960000pt;}
.x102_c00454{left:401.706667pt;}
.x7b_c00454{left:403.040000pt;}
.x107_c00454{left:405.706667pt;}
.x8e_c00454{left:406.666667pt;}
.xcc_c00454{left:412.000000pt;}
.x67_c00454{left:413.333333pt;}
.x110_c00454{left:414.293333pt;}
.x3e_c00454{left:416.000000pt;}
.x60_c00454{left:417.333333pt;}
.x19_c00454{left:418.666667pt;}
.xb3_c00454{left:419.800000pt;}
.x96_c00454{left:422.666667pt;}
.xb_c00454{left:424.000000pt;}
.xee_c00454{left:425.706667pt;}
.x54_c00454{left:426.666667pt;}
.x74_c00454{left:430.293333pt;}
.x8f_c00454{left:432.960000pt;}
.xc6_c00454{left:434.666667pt;}
.xa8_c00454{left:436.960000pt;}
.x7c_c00454{left:438.666667pt;}
.x108_c00454{left:440.000000pt;}
.xd0_c00454{left:440.960000pt;}
.x34_c00454{left:444.373333pt;}
.x97_c00454{left:446.666667pt;}
.x68_c00454{left:447.626667pt;}
.x85_c00454{left:450.293333pt;}
.x3f_c00454{left:453.706667pt;}
.x48_c00454{left:454.666667pt;}
.x75_c00454{left:455.626667pt;}
.xe7_c00454{left:456.573333pt;}
.x28_c00454{left:457.706667pt;}
.xd5_c00454{left:458.666667pt;}
.x1a_c00454{left:459.626667pt;}
.xaf_c00454{left:461.706667pt;}
.xc_c00454{left:466.293333pt;}
.xcd_c00454{left:468.960000pt;}
.x105_c00454{left:470.666667pt;}
.x7d_c00454{left:472.373333pt;}
.x109_c00454{left:476.000000pt;}
.x55_c00454{left:476.960000pt;}
.x1b_c00454{left:479.040000pt;}
.x29_c00454{left:481.333333pt;}
.xd_c00454{left:482.666667pt;}
.xdd_c00454{left:484.000000pt;}
.x86_c00454{left:486.666667pt;}
.x69_c00454{left:488.000000pt;}
.xc7_c00454{left:489.333333pt;}
.x35_c00454{left:491.040000pt;}
.xa9_c00454{left:492.373333pt;}
.x10a_c00454{left:493.333333pt;}
.x7e_c00454{left:499.040000pt;}
.xde_c00454{left:500.000000pt;}
.xbf_c00454{left:501.706667pt;}
.xe2_c00454{left:502.666667pt;}
.x56_c00454{left:503.626667pt;}
.xa2_c00454{left:505.706667pt;}
.x98_c00454{left:506.666667pt;}
.x61_c00454{left:507.626667pt;}
.x6a_c00454{left:510.666667pt;}
.x49_c00454{left:511.626667pt;}
.xf3_c00454{left:513.333333pt;}
.x1c_c00454{left:515.040000pt;}
.x10b_c00454{left:516.000000pt;}
.xaa_c00454{left:518.666667pt;}
.x40_c00454{left:521.706667pt;}
.xd9_c00454{left:524.000000pt;}
.x2a_c00454{left:525.333333pt;}
.xc0_c00454{left:526.666667pt;}
.xb4_c00454{left:529.333333pt;}
.x7f_c00454{left:530.666667pt;}
.xfe_c00454{left:533.333333pt;}
.xe8_c00454{left:534.293333pt;}
.xf4_c00454{left:536.000000pt;}
.x6b_c00454{left:537.333333pt;}
.xfb_c00454{left:539.626667pt;}
.x2b_c00454{left:541.333333pt;}
.x99_c00454{left:542.666667pt;}
.x57_c00454{left:545.333333pt;}
.x80_c00454{left:547.040000pt;}
.x87_c00454{left:551.626667pt;}
.x1d_c00454{left:553.333333pt;}
.x4a_c00454{left:555.040000pt;}
.xb5_c00454{left:556.373333pt;}
.x106_c00454{left:558.293333pt;}
.x36_c00454{left:560.000000pt;}
.xe_c00454{left:561.706667pt;}
.x76_c00454{left:562.666667pt;}
.xdf_c00454{left:566.293333pt;}
.xc1_c00454{left:568.000000pt;}
.x41_c00454{left:568.960000pt;}
.x81_c00454{left:571.040000pt;}
.xe3_c00454{left:573.706667pt;}
.x90_c00454{left:574.666667pt;}
.x4b_c00454{left:578.666667pt;}
.x6c_c00454{left:579.626667pt;}
.x2c_c00454{left:581.333333pt;}
.xa3_c00454{left:582.293333pt;}
.xf_c00454{left:584.000000pt;}
.xc8_c00454{left:585.706667pt;}
.xf7_c00454{left:586.666667pt;}
.xda_c00454{left:588.373333pt;}
.xab_c00454{left:589.706667pt;}
.x88_c00454{left:594.666667pt;}
.x42_c00454{left:595.626667pt;}
.x1e_c00454{left:597.333333pt;}
.xe4_c00454{left:599.040000pt;}
.x37_c00454{left:600.373333pt;}
.xe9_c00454{left:602.293333pt;}
.x58_c00454{left:604.960000pt;}
.xb6_c00454{left:609.133333pt;}
.x10_c00454{left:611.626667pt;}
.xdb_c00454{left:614.666667pt;}
.xd6_c00454{left:616.000000pt;}
.x9a_c00454{left:617.333333pt;}
.xc2_c00454{left:620.000000pt;}
.xf8_c00454{left:620.960000pt;}
.x1f_c00454{left:622.293333pt;}
.xac_c00454{left:623.626667pt;}
.x1_c00454{left:625.333333pt;}
.x11_c00454{left:627.040000pt;}
.xff_c00454{left:628.000000pt;}
.x77_c00454{left:632.000000pt;}
.x38_c00454{left:634.293333pt;}
.x6d_c00454{left:635.626667pt;}
.xd4_c00454{left:636.960000pt;}
.x111_c00454{left:638.666667pt;}
.xb7_c00454{left:642.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_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_1c1fb6bfc92ef7f0a21af113.woff2')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma0_c00455{transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);}
.md3_c00455{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m4f_c00455{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m50_c00455{transform:matrix(0.348739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348739,0.000000,0.000000,0.250000,0,0);}
.mb2_c00455{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m81_c00455{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.maf_c00455{transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);}
.ma1_c00455{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m4e_c00455{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mcc_c00455{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.md8_c00455{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.m7_c00455{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mac_c00455{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.mf0_c00455{transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378451,0.000000,0.000000,0.250000,0,0);}
.md5_c00455{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.me4_c00455{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m51_c00455{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m99_c00455{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m7d_c00455{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.mee_c00455{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m31_c00455{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m52_c00455{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.ma5_c00455{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m1f_c00455{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.ma2_c00455{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.ma8_c00455{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.ma3_c00455{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m6_c00455{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m9f_c00455{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);}
.m62_c00455{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m0_c00455{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.mab_c00455{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mbe_c00455{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.mb1_c00455{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.ma_c00455{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m55_c00455{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m6c_c00455{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.ma7_c00455{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.mb8_c00455{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m7f_c00455{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m35_c00455{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m8f_c00455{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m43_c00455{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m3c_c00455{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.mde_c00455{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mc9_c00455{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m5c_c00455{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.md2_c00455{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.me7_c00455{transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);}
.m17_c00455{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m57_c00455{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m7b_c00455{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m59_c00455{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m8b_c00455{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m78_c00455{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m20_c00455{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m21_c00455{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mcf_c00455{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m3d_c00455{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m4c_c00455{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mb7_c00455{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.mad_c00455{transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);}
.m9_c00455{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.ma9_c00455{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.me8_c00455{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m2d_c00455{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.mbf_c00455{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m6b_c00455{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m2a_c00455{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m10_c00455{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m28_c00455{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.me6_c00455{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m53_c00455{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.mb3_c00455{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m70_c00455{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m82_c00455{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m73_c00455{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.mb9_c00455{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m9a_c00455{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m2b_c00455{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m77_c00455{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.md6_c00455{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.md4_c00455{transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);}
.mc6_c00455{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m74_c00455{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.me5_c00455{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.mc0_c00455{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m34_c00455{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_c00455{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m8a_c00455{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.mbd_c00455{transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);}
.m3a_c00455{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m4a_c00455{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m1e_c00455{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mc5_c00455{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m5e_c00455{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m5f_c00455{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.me1_c00455{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.mf5_c00455{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.mb5_c00455{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.mc8_c00455{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.mea_c00455{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m3b_c00455{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m86_c00455{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.mba_c00455{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.m4b_c00455{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m71_c00455{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.ma6_c00455{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mae_c00455{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m72_c00455{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mce_c00455{transform:matrix(0.493277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493277,0.000000,0.000000,0.250000,0,0);}
.m5b_c00455{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m32_c00455{transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);}
.mef_c00455{transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);}
.m25_c00455{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);}
.mc4_c00455{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m69_c00455{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m6e_c00455{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m18_c00455{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m1a_c00455{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m6d_c00455{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m41_c00455{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mdf_c00455{transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);}
.m85_c00455{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m39_c00455{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m8_c00455{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mc_c00455{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m87_c00455{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.mf1_c00455{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.mc1_c00455{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.mb4_c00455{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m14_c00455{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m47_c00455{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mca_c00455{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m33_c00455{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m48_c00455{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m63_c00455{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m9e_c00455{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m11_c00455{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mf6_c00455{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.mf4_c00455{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m92_c00455{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m2f_c00455{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m13_c00455{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m4d_c00455{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m93_c00455{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.md7_c00455{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m44_c00455{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.me3_c00455{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m5_c00455{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m98_c00455{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m46_c00455{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mc2_c00455{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m2e_c00455{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m84_c00455{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mdb_c00455{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.ma4_c00455{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m8e_c00455{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.meb_c00455{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m12_c00455{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.mb_c00455{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.me9_c00455{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m80_c00455{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.mdd_c00455{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mcd_c00455{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m27_c00455{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.me2_c00455{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m61_c00455{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m42_c00455{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m66_c00455{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m40_c00455{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m37_c00455{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mf2_c00455{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m89_c00455{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.maa_c00455{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m3f_c00455{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m56_c00455{transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);}
.m75_c00455{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m96_c00455{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mcb_c00455{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m94_c00455{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.md1_c00455{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m2c_c00455{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mec_c00455{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m6a_c00455{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.me0_c00455{transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);}
.mb0_c00455{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m26_c00455{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m6f_c00455{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m58_c00455{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m97_c00455{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m49_c00455{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m7c_c00455{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m29_c00455{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m65_c00455{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m38_c00455{transform:matrix(0.587647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587647,0.000000,0.000000,0.250000,0,0);}
.md9_c00455{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m9c_c00455{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m90_c00455{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m16_c00455{transform:matrix(0.591805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591805,0.000000,0.000000,0.250000,0,0);}
.mdc_c00455{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m45_c00455{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m8d_c00455{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m1c_c00455{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);}
.mc3_c00455{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m1b_c00455{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m24_c00455{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m22_c00455{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m36_c00455{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_c00455{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m79_c00455{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.md0_c00455{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m5a_c00455{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m7e_c00455{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m1_c00455{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m9d_c00455{transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);}
.m3e_c00455{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m68_c00455{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m54_c00455{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m4_c00455{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.md_c00455{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m83_c00455{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m8c_c00455{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m9b_c00455{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m64_c00455{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m1d_c00455{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.mf3_c00455{transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);}
.mbb_c00455{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m7a_c00455{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.m91_c00455{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m76_c00455{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mda_c00455{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m2_c00455{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m19_c00455{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m30_c00455{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mc7_c00455{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.m60_c00455{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.med_c00455{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m5d_c00455{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m3_c00455{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.mbc_c00455{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m67_c00455{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mf_c00455{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.mb6_c00455{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m88_c00455{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.m15_c00455{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m95_c00455{transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.995614,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;}
}
.ws1_c00455{word-spacing:-16.889280px;}
.ws0_c00455{word-spacing:-8.851083px;}
.ws2_c00455{word-spacing:-8.811328px;}
.ws4_c00455{word-spacing:-4.378680px;}
.ws5_c00455{word-spacing:0.000000px;}
.ws3_c00455{word-spacing:1.072253px;}
._0_c00455{width:7.152095px;}
.fc0_c00455{color:transparent;}
.fs7_c00455{font-size:3.420000px;}
.fs2_c00455{font-size:18.720000px;}
.fs1_c00455{font-size:20.400000px;}
.fs3_c00455{font-size:25.500000px;}
.fs4_c00455{font-size:28.920000px;}
.fs0_c00455{font-size:32.340000px;}
.fs5_c00455{font-size:35.700000px;}
.fs6_c00455{font-size:39.120000px;}
.y0_c00455{bottom:0.000000px;}
.yd5_c00455{bottom:250.245000px;}
.yd4_c00455{bottom:252.405000px;}
.yd0_c00455{bottom:269.745000px;}
.ycd_c00455{bottom:270.630000px;}
.ycf_c00455{bottom:271.050000px;}
.yd2_c00455{bottom:271.245000px;}
.yce_c00455{bottom:271.905000px;}
.yd3_c00455{bottom:272.130000px;}
.yd1_c00455{bottom:273.405000px;}
.yc6_c00455{bottom:289.245000px;}
.yc9_c00455{bottom:289.680000px;}
.yc8_c00455{bottom:290.325000px;}
.yc7_c00455{bottom:291.405000px;}
.ycc_c00455{bottom:291.630000px;}
.yca_c00455{bottom:292.470000px;}
.ycb_c00455{bottom:292.905000px;}
.yc0_c00455{bottom:307.905000px;}
.yc4_c00455{bottom:309.825000px;}
.yc1_c00455{bottom:310.245000px;}
.yc2_c00455{bottom:311.130000px;}
.yc5_c00455{bottom:311.970000px;}
.yc3_c00455{bottom:312.405000px;}
.ybe_c00455{bottom:329.325000px;}
.yba_c00455{bottom:329.745000px;}
.yb9_c00455{bottom:330.405000px;}
.ybf_c00455{bottom:330.825000px;}
.ybd_c00455{bottom:331.245000px;}
.ybb_c00455{bottom:331.470000px;}
.ybc_c00455{bottom:331.905000px;}
.yb8_c00455{bottom:349.245000px;}
.yb5_c00455{bottom:350.130000px;}
.yb6_c00455{bottom:350.325000px;}
.yb7_c00455{bottom:350.970000px;}
.yb4_c00455{bottom:351.405000px;}
.yb0_c00455{bottom:367.905000px;}
.yb2_c00455{bottom:368.745000px;}
.yaf_c00455{bottom:370.905000px;}
.yb3_c00455{bottom:371.130000px;}
.yae_c00455{bottom:371.970000px;}
.yb1_c00455{bottom:372.405000px;}
.yad_c00455{bottom:389.745000px;}
.yac_c00455{bottom:390.405000px;}
.ya6_c00455{bottom:407.745000px;}
.ya9_c00455{bottom:409.245000px;}
.ya7_c00455{bottom:409.905000px;}
.yab_c00455{bottom:410.130000px;}
.yaa_c00455{bottom:410.970000px;}
.ya8_c00455{bottom:411.405000px;}
.ya4_c00455{bottom:426.405000px;}
.y9f_c00455{bottom:427.245000px;}
.ya2_c00455{bottom:428.745000px;}
.ya5_c00455{bottom:429.630000px;}
.ya3_c00455{bottom:429.825000px;}
.ya0_c00455{bottom:430.470000px;}
.ya1_c00455{bottom:430.905000px;}
.y9b_c00455{bottom:447.825000px;}
.y9c_c00455{bottom:448.245000px;}
.y9d_c00455{bottom:449.130000px;}
.y9e_c00455{bottom:450.405000px;}
.y9a_c00455{bottom:466.905000px;}
.y98_c00455{bottom:467.745000px;}
.y97_c00455{bottom:469.905000px;}
.y99_c00455{bottom:470.970000px;}
.y96_c00455{bottom:489.405000px;}
.y95_c00455{bottom:505.905000px;}
.y90_c00455{bottom:506.745000px;}
.y94_c00455{bottom:507.825000px;}
.y92_c00455{bottom:508.245000px;}
.y8f_c00455{bottom:508.905000px;}
.y91_c00455{bottom:509.130000px;}
.y93_c00455{bottom:509.970000px;}
.y8d_c00455{bottom:525.405000px;}
.y8b_c00455{bottom:527.745000px;}
.y8e_c00455{bottom:528.825000px;}
.y8c_c00455{bottom:529.470000px;}
.y8a_c00455{bottom:529.905000px;}
.y89_c00455{bottom:547.245000px;}
.y87_c00455{bottom:548.325000px;}
.y88_c00455{bottom:548.970000px;}
.y86_c00455{bottom:549.405000px;}
.y84_c00455{bottom:566.745000px;}
.y83_c00455{bottom:567.630000px;}
.y85_c00455{bottom:568.905000px;}
.y7f_c00455{bottom:586.245000px;}
.y82_c00455{bottom:587.130000px;}
.y81_c00455{bottom:587.325000px;}
.y80_c00455{bottom:588.405000px;}
.y7c_c00455{bottom:605.745000px;}
.y7e_c00455{bottom:606.825000px;}
.y7d_c00455{bottom:607.905000px;}
.y79_c00455{bottom:625.245000px;}
.y78_c00455{bottom:627.405000px;}
.y7b_c00455{bottom:627.630000px;}
.y7a_c00455{bottom:628.905000px;}
.y73_c00455{bottom:643.905000px;}
.y77_c00455{bottom:644.745000px;}
.y74_c00455{bottom:646.470000px;}
.y75_c00455{bottom:646.905000px;}
.y76_c00455{bottom:647.130000px;}
.y70_c00455{bottom:664.920000px;}
.y6f_c00455{bottom:665.745000px;}
.y71_c00455{bottom:666.630000px;}
.y72_c00455{bottom:667.470000px;}
.y6e_c00455{bottom:667.905000px;}
.y68_c00455{bottom:683.745000px;}
.y66_c00455{bottom:683.970000px;}
.y69_c00455{bottom:684.825000px;}
.y6d_c00455{bottom:685.245000px;}
.y67_c00455{bottom:685.905000px;}
.y6b_c00455{bottom:686.130000px;}
.y6a_c00455{bottom:686.970000px;}
.y6c_c00455{bottom:687.405000px;}
.y62_c00455{bottom:702.405000px;}
.y65_c00455{bottom:703.470000px;}
.y60_c00455{bottom:703.680000px;}
.y64_c00455{bottom:703.920000px;}
.y5e_c00455{bottom:704.745000px;}
.y63_c00455{bottom:705.630000px;}
.y5f_c00455{bottom:706.905000px;}
.y61_c00455{bottom:707.970000px;}
.y5c_c00455{bottom:724.245000px;}
.y5d_c00455{bottom:725.970000px;}
.y5b_c00455{bottom:726.405000px;}
.y56_c00455{bottom:742.905000px;}
.y5a_c00455{bottom:743.745000px;}
.y57_c00455{bottom:744.825000px;}
.y58_c00455{bottom:745.905000px;}
.y59_c00455{bottom:746.130000px;}
.y52_c00455{bottom:762.405000px;}
.y50_c00455{bottom:763.245000px;}
.y54_c00455{bottom:764.130000px;}
.y4f_c00455{bottom:764.970000px;}
.y51_c00455{bottom:765.405000px;}
.y53_c00455{bottom:765.630000px;}
.y55_c00455{bottom:766.470000px;}
.y4c_c00455{bottom:782.745000px;}
.y4e_c00455{bottom:783.825000px;}
.y4a_c00455{bottom:784.905000px;}
.y4b_c00455{bottom:785.130000px;}
.y4d_c00455{bottom:785.970000px;}
.y49_c00455{bottom:801.405000px;}
.y46_c00455{bottom:802.245000px;}
.y47_c00455{bottom:803.325000px;}
.y45_c00455{bottom:804.405000px;}
.y48_c00455{bottom:804.630000px;}
.y44_c00455{bottom:805.470000px;}
.y41_c00455{bottom:823.245000px;}
.y40_c00455{bottom:824.130000px;}
.y43_c00455{bottom:824.970000px;}
.y42_c00455{bottom:825.405000px;}
.y3f_c00455{bottom:840.405000px;}
.y3e_c00455{bottom:842.745000px;}
.y3c_c00455{bottom:843.630000px;}
.y3d_c00455{bottom:844.470000px;}
.y3b_c00455{bottom:844.905000px;}
.y37_c00455{bottom:862.245000px;}
.y39_c00455{bottom:863.130000px;}
.y3a_c00455{bottom:863.325000px;}
.y38_c00455{bottom:864.405000px;}
.y35_c00455{bottom:880.470000px;}
.y36_c00455{bottom:880.905000px;}
.y31_c00455{bottom:881.745000px;}
.y30_c00455{bottom:882.630000px;}
.y32_c00455{bottom:883.470000px;}
.y33_c00455{bottom:883.905000px;}
.y34_c00455{bottom:884.970000px;}
.y2d_c00455{bottom:900.405000px;}
.y2e_c00455{bottom:901.245000px;}
.y2c_c00455{bottom:902.325000px;}
.y2f_c00455{bottom:903.405000px;}
.y2b_c00455{bottom:920.745000px;}
.y29_c00455{bottom:922.470000px;}
.y28_c00455{bottom:922.905000px;}
.y2a_c00455{bottom:923.970000px;}
.y26_c00455{bottom:939.405000px;}
.y24_c00455{bottom:940.245000px;}
.y22_c00455{bottom:941.325000px;}
.y27_c00455{bottom:941.970000px;}
.y25_c00455{bottom:942.405000px;}
.y23_c00455{bottom:943.470000px;}
.y21_c00455{bottom:958.905000px;}
.y20_c00455{bottom:959.745000px;}
.y1e_c00455{bottom:961.905000px;}
.y1f_c00455{bottom:962.970000px;}
.y1b_c00455{bottom:979.245000px;}
.y1c_c00455{bottom:980.325000px;}
.y1d_c00455{bottom:981.405000px;}
.y19_c00455{bottom:997.905000px;}
.y17_c00455{bottom:998.745000px;}
.y1a_c00455{bottom:1000.245000px;}
.y16_c00455{bottom:1000.905000px;}
.y15_c00455{bottom:1001.130000px;}
.y18_c00455{bottom:1001.970000px;}
.y10_c00455{bottom:1018.245000px;}
.y14_c00455{bottom:1018.470000px;}
.yf_c00455{bottom:1019.325000px;}
.y11_c00455{bottom:1019.745000px;}
.y13_c00455{bottom:1020.405000px;}
.ye_c00455{bottom:1020.630000px;}
.yd_c00455{bottom:1021.470000px;}
.y12_c00455{bottom:1021.905000px;}
.yc_c00455{bottom:1036.905000px;}
.yb_c00455{bottom:1037.970000px;}
.y7_c00455{bottom:1038.825000px;}
.y9_c00455{bottom:1039.245000px;}
.y8_c00455{bottom:1040.130000px;}
.ya_c00455{bottom:1041.405000px;}
.y6_c00455{bottom:1058.745000px;}
.y3_c00455{bottom:1059.630000px;}
.y4_c00455{bottom:1060.470000px;}
.y5_c00455{bottom:1060.905000px;}
.y1_c00455{bottom:1098.825000px;}
.y2_c00455{bottom:1099.050000px;}
.h8_c00455{height:4.206533px;}
.h3_c00455{height:23.025234px;}
.h2_c00455{height:25.091602px;}
.h4_c00455{height:31.364502px;}
.h5_c00455{height:35.571035px;}
.h1_c00455{height:39.777568px;}
.h6_c00455{height:43.910303px;}
.h7_c00455{height:48.116836px;}
.h0_c00455{height:1335.000000px;}
.w0_c00455{width:880.500000px;}
.x0_c00455{left:0.000000px;}
.xf3_c00455{left:149.580000px;}
.x9a_c00455{left:151.080000px;}
.x1_c00455{left:153.000000px;}
.xcd_c00455{left:154.275000px;}
.x10e_c00455{left:162.000000px;}
.xe9_c00455{left:166.500000px;}
.x37_c00455{left:169.500000px;}
.x80_c00455{left:172.080000px;}
.xab_c00455{left:175.920000px;}
.x103_c00455{left:178.500000px;}
.x3_c00455{left:180.000000px;}
.xe3_c00455{left:181.920000px;}
.x4f_c00455{left:183.000000px;}
.x64_c00455{left:184.920000px;}
.x74_c00455{left:186.000000px;}
.xf_c00455{left:187.920000px;}
.xd8_c00455{left:189.000000px;}
.x28_c00455{left:190.500000px;}
.x6d_c00455{left:192.000000px;}
.x38_c00455{left:193.920000px;}
.xee_c00455{left:195.420000px;}
.xea_c00455{left:199.920000px;}
.x31_c00455{left:202.500000px;}
.xf4_c00455{left:203.580000px;}
.xac_c00455{left:207.000000px;}
.xba_c00455{left:208.920000px;}
.x4_c00455{left:210.000000px;}
.x1b_c00455{left:213.420000px;}
.x43_c00455{left:216.000000px;}
.xde_c00455{left:217.500000px;}
.xc0_c00455{left:218.580000px;}
.xfa_c00455{left:220.080000px;}
.x10f_c00455{left:222.420000px;}
.x10_c00455{left:223.500000px;}
.xc9_c00455{left:224.775000px;}
.x5_c00455{left:226.080000px;}
.x92_c00455{left:228.000000px;}
.x50_c00455{left:229.920000px;}
.x5c_c00455{left:233.580000px;}
.x81_c00455{left:237.000000px;}
.x29_c00455{left:238.920000px;}
.x110_c00455{left:240.000000px;}
.x32_c00455{left:243.420000px;}
.xe4_c00455{left:244.920000px;}
.x109_c00455{left:247.500000px;}
.x8a_c00455{left:249.420000px;}
.x39_c00455{left:251.580000px;}
.xa5_c00455{left:253.500000px;}
.x1c_c00455{left:255.420000px;}
.xef_c00455{left:256.500000px;}
.x44_c00455{left:258.420000px;}
.x82_c00455{left:259.500000px;}
.x51_c00455{left:261.420000px;}
.xfb_c00455{left:262.500000px;}
.x104_c00455{left:264.000000px;}
.x75_c00455{left:265.500000px;}
.x33_c00455{left:267.420000px;}
.xc6_c00455{left:270.000000px;}
.x65_c00455{left:274.500000px;}
.x2a_c00455{left:275.580000px;}
.x9b_c00455{left:280.500000px;}
.x6_c00455{left:281.580000px;}
.x6e_c00455{left:283.500000px;}
.xc1_c00455{left:285.000000px;}
.xd9_c00455{left:286.500000px;}
.xad_c00455{left:288.000000px;}
.x5d_c00455{left:289.080000px;}
.xbb_c00455{left:291.000000px;}
.x34_c00455{left:292.080000px;}
.x66_c00455{left:294.000000px;}
.x1d_c00455{left:295.920000px;}
.xbc_c00455{left:300.420000px;}
.x8b_c00455{left:301.920000px;}
.x11_c00455{left:303.000000px;}
.xae_c00455{left:304.500000px;}
.xce_c00455{left:305.580000px;}
.x2b_c00455{left:308.580000px;}
.xe5_c00455{left:310.080000px;}
.x52_c00455{left:313.500000px;}
.x45_c00455{left:316.500000px;}
.xdf_c00455{left:318.420000px;}
.x3a_c00455{left:319.920000px;}
.x83_c00455{left:323.580000px;}
.x76_c00455{left:325.500000px;}
.xfe_c00455{left:328.080000px;}
.x46_c00455{left:331.500000px;}
.x93_c00455{left:334.080000px;}
.xb1_c00455{left:337.080000px;}
.x35_c00455{left:338.580000px;}
.x7_c00455{left:340.080000px;}
.x53_c00455{left:342.420000px;}
.x77_c00455{left:343.500000px;}
.x101_c00455{left:345.000000px;}
.x10a_c00455{left:348.000000px;}
.x3b_c00455{left:349.920000px;}
.x36_c00455{left:355.080000px;}
.x1e_c00455{left:357.420000px;}
.xc2_c00455{left:360.000000px;}
.xbd_c00455{left:363.000000px;}
.x8_c00455{left:364.080000px;}
.x94_c00455{left:366.000000px;}
.xe0_c00455{left:370.500000px;}
.x12_c00455{left:373.080000px;}
.x54_c00455{left:377.580000px;}
.x6f_c00455{left:379.920000px;}
.x84_c00455{left:381.000000px;}
.xf0_c00455{left:382.500000px;}
.x67_c00455{left:385.920000px;}
.xe6_c00455{left:387.000000px;}
.x105_c00455{left:388.080000px;}
.xf5_c00455{left:389.580000px;}
.xb6_c00455{left:391.500000px;}
.x5e_c00455{left:394.080000px;}
.x9_c00455{left:396.000000px;}
.x1f_c00455{left:397.920000px;}
.x78_c00455{left:399.420000px;}
.x8c_c00455{left:400.500000px;}
.xaf_c00455{left:402.000000px;}
.xe1_c00455{left:403.920000px;}
.x9c_c00455{left:406.500000px;}
.x2_c00455{left:408.000000px;}
.x55_c00455{left:409.275000px;}
.x3c_c00455{left:411.420000px;}
.x2c_c00455{left:413.580000px;}
.x5f_c00455{left:415.500000px;}
.xc3_c00455{left:417.000000px;}
.xf1_c00455{left:418.080000px;}
.x47_c00455{left:419.580000px;}
.xf6_c00455{left:421.500000px;}
.x13_c00455{left:423.420000px;}
.x9d_c00455{left:424.500000px;}
.xca_c00455{left:425.580000px;}
.xcf_c00455{left:427.500000px;}
.x70_c00455{left:432.420000px;}
.x2d_c00455{left:433.920000px;}
.x9e_c00455{left:436.920000px;}
.x68_c00455{left:438.000000px;}
.xc4_c00455{left:439.500000px;}
.xb2_c00455{left:441.420000px;}
.x85_c00455{left:442.500000px;}
.x56_c00455{left:444.000000px;}
.xeb_c00455{left:446.580000px;}
.xc7_c00455{left:448.080000px;}
.x3d_c00455{left:451.500000px;}
.x79_c00455{left:456.000000px;}
.xa6_c00455{left:457.080000px;}
.xb0_c00455{left:459.420000px;}
.x71_c00455{left:460.500000px;}
.x20_c00455{left:462.000000px;}
.x2e_c00455{left:463.500000px;}
.x69_c00455{left:465.000000px;}
.xa_c00455{left:468.420000px;}
.xb3_c00455{left:469.500000px;}
.x8d_c00455{left:471.000000px;}
.x14_c00455{left:477.420000px;}
.xc8_c00455{left:480.000000px;}
.x21_c00455{left:481.080000px;}
.xc5_c00455{left:486.000000px;}
.xbe_c00455{left:489.420000px;}
.x106_c00455{left:490.500000px;}
.x48_c00455{left:493.920000px;}
.xda_c00455{left:496.080000px;}
.xb_c00455{left:498.000000px;}
.x9f_c00455{left:499.500000px;}
.x8e_c00455{left:501.420000px;}
.xb7_c00455{left:502.920000px;}
.x7a_c00455{left:505.500000px;}
.x15_c00455{left:507.000000px;}
.x57_c00455{left:510.420000px;}
.x3e_c00455{left:511.500000px;}
.x102_c00455{left:512.580000px;}
.x107_c00455{left:514.080000px;}
.xff_c00455{left:517.500000px;}
.x10b_c00455{left:519.000000px;}
.xa7_c00455{left:520.500000px;}
.x22_c00455{left:522.000000px;}
.xd2_c00455{left:526.080000px;}
.x7b_c00455{left:528.420000px;}
.x49_c00455{left:531.000000px;}
.x3f_c00455{left:532.500000px;}
.x60_c00455{left:534.000000px;}
.xb8_c00455{left:535.080000px;}
.x58_c00455{left:537.000000px;}
.xf2_c00455{left:538.500000px;}
.xbf_c00455{left:540.420000px;}
.x23_c00455{left:541.500000px;}
.x86_c00455{left:543.000000px;}
.xd0_c00455{left:546.420000px;}
.x8f_c00455{left:547.920000px;}
.x4a_c00455{left:549.000000px;}
.x6a_c00455{left:550.920000px;}
.xfc_c00455{left:553.275000px;}
.xa0_c00455{left:554.580000px;}
.xd3_c00455{left:557.580000px;}
.xf7_c00455{left:559.920000px;}
.x95_c00455{left:561.000000px;}
.x7c_c00455{left:562.080000px;}
.xcb_c00455{left:563.355000px;}
.x16_c00455{left:565.080000px;}
.xe7_c00455{left:567.420000px;}
.x10c_c00455{left:571.080000px;}
.x87_c00455{left:574.500000px;}
.xa1_c00455{left:576.420000px;}
.xd4_c00455{left:577.500000px;}
.x40_c00455{left:579.000000px;}
.x4b_c00455{left:580.920000px;}
.x96_c00455{left:582.000000px;}
.x24_c00455{left:583.500000px;}
.x6b_c00455{left:584.580000px;}
.xa8_c00455{left:586.500000px;}
.x17_c00455{left:589.920000px;}
.x2f_c00455{left:591.420000px;}
.xd5_c00455{left:592.500000px;}
.x7d_c00455{left:594.000000px;}
.xdb_c00455{left:595.500000px;}
.x61_c00455{left:598.080000px;}
.xa2_c00455{left:600.000000px;}
.xf8_c00455{left:604.500000px;}
.xa9_c00455{left:606.000000px;}
.xc_c00455{left:607.080000px;}
.x25_c00455{left:608.580000px;}
.xa3_c00455{left:610.500000px;}
.x7e_c00455{left:612.000000px;}
.x97_c00455{left:615.000000px;}
.x18_c00455{left:616.500000px;}
.x59_c00455{left:617.580000px;}
.x88_c00455{left:621.645000px;}
.xf9_c00455{left:624.420000px;}
.x4c_c00455{left:625.500000px;}
.x10d_c00455{left:627.000000px;}
.xd6_c00455{left:633.420000px;}
.xfd_c00455{left:634.500000px;}
.x5a_c00455{left:636.000000px;}
.x62_c00455{left:637.080000px;}
.x72_c00455{left:638.580000px;}
.x90_c00455{left:642.420000px;}
.xd1_c00455{left:643.500000px;}
.x108_c00455{left:645.000000px;}
.xb4_c00455{left:646.500000px;}
.xd_c00455{left:648.420000px;}
.xaa_c00455{left:649.500000px;}
.x6c_c00455{left:650.580000px;}
.x7f_c00455{left:654.000000px;}
.x19_c00455{left:658.920000px;}
.x4d_c00455{left:660.000000px;}
.xcc_c00455{left:661.500000px;}
.x41_c00455{left:663.000000px;}
.x63_c00455{left:664.500000px;}
.x5b_c00455{left:665.580000px;}
.x26_c00455{left:667.920000px;}
.x73_c00455{left:670.500000px;}
.x98_c00455{left:673.920000px;}
.xa4_c00455{left:675.000000px;}
.x4e_c00455{left:676.500000px;}
.x91_c00455{left:678.000000px;}
.xec_c00455{left:679.500000px;}
.x42_c00455{left:682.920000px;}
.x100_c00455{left:685.500000px;}
.xd7_c00455{left:688.500000px;}
.xb5_c00455{left:689.580000px;}
.xdc_c00455{left:693.000000px;}
.x27_c00455{left:694.500000px;}
.x1a_c00455{left:696.420000px;}
.xb9_c00455{left:697.920000px;}
.xed_c00455{left:701.775000px;}
.xe2_c00455{left:704.580000px;}
.xe_c00455{left:708.000000px;}
.x99_c00455{left:709.920000px;}
.xdd_c00455{left:712.500000px;}
.xe8_c00455{left:716.580000px;}
.x89_c00455{left:720.000000px;}
.x30_c00455{left:723.000000px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.ls0_c00455{letter-spacing:0.000000pt;}
.ws1_c00455{word-spacing:-15.012693pt;}
.ws0_c00455{word-spacing:-7.867630pt;}
.ws2_c00455{word-spacing:-7.832291pt;}
.ws4_c00455{word-spacing:-3.892160pt;}
.ws5_c00455{word-spacing:0.000000pt;}
.ws3_c00455{word-spacing:0.953113pt;}
._0_c00455{width:6.357418pt;}
.fs7_c00455{font-size:3.040000pt;}
.fs2_c00455{font-size:16.640000pt;}
.fs1_c00455{font-size:18.133333pt;}
.fs3_c00455{font-size:22.666667pt;}
.fs4_c00455{font-size:25.706667pt;}
.fs0_c00455{font-size:28.746667pt;}
.fs5_c00455{font-size:31.733333pt;}
.fs6_c00455{font-size:34.773333pt;}
.y0_c00455{bottom:0.000000pt;}
.yd5_c00455{bottom:222.440000pt;}
.yd4_c00455{bottom:224.360000pt;}
.yd0_c00455{bottom:239.773333pt;}
.ycd_c00455{bottom:240.560000pt;}
.ycf_c00455{bottom:240.933333pt;}
.yd2_c00455{bottom:241.106667pt;}
.yce_c00455{bottom:241.693333pt;}
.yd3_c00455{bottom:241.893333pt;}
.yd1_c00455{bottom:243.026667pt;}
.yc6_c00455{bottom:257.106667pt;}
.yc9_c00455{bottom:257.493333pt;}
.yc8_c00455{bottom:258.066667pt;}
.yc7_c00455{bottom:259.026667pt;}
.ycc_c00455{bottom:259.226667pt;}
.yca_c00455{bottom:259.973333pt;}
.ycb_c00455{bottom:260.360000pt;}
.yc0_c00455{bottom:273.693333pt;}
.yc4_c00455{bottom:275.400000pt;}
.yc1_c00455{bottom:275.773333pt;}
.yc2_c00455{bottom:276.560000pt;}
.yc5_c00455{bottom:277.306667pt;}
.yc3_c00455{bottom:277.693333pt;}
.ybe_c00455{bottom:292.733333pt;}
.yba_c00455{bottom:293.106667pt;}
.yb9_c00455{bottom:293.693333pt;}
.ybf_c00455{bottom:294.066667pt;}
.ybd_c00455{bottom:294.440000pt;}
.ybb_c00455{bottom:294.640000pt;}
.ybc_c00455{bottom:295.026667pt;}
.yb8_c00455{bottom:310.440000pt;}
.yb5_c00455{bottom:311.226667pt;}
.yb6_c00455{bottom:311.400000pt;}
.yb7_c00455{bottom:311.973333pt;}
.yb4_c00455{bottom:312.360000pt;}
.yb0_c00455{bottom:327.026667pt;}
.yb2_c00455{bottom:327.773333pt;}
.yaf_c00455{bottom:329.693333pt;}
.yb3_c00455{bottom:329.893333pt;}
.yae_c00455{bottom:330.640000pt;}
.yb1_c00455{bottom:331.026667pt;}
.yad_c00455{bottom:346.440000pt;}
.yac_c00455{bottom:347.026667pt;}
.ya6_c00455{bottom:362.440000pt;}
.ya9_c00455{bottom:363.773333pt;}
.ya7_c00455{bottom:364.360000pt;}
.yab_c00455{bottom:364.560000pt;}
.yaa_c00455{bottom:365.306667pt;}
.ya8_c00455{bottom:365.693333pt;}
.ya4_c00455{bottom:379.026667pt;}
.y9f_c00455{bottom:379.773333pt;}
.ya2_c00455{bottom:381.106667pt;}
.ya5_c00455{bottom:381.893333pt;}
.ya3_c00455{bottom:382.066667pt;}
.ya0_c00455{bottom:382.640000pt;}
.ya1_c00455{bottom:383.026667pt;}
.y9b_c00455{bottom:398.066667pt;}
.y9c_c00455{bottom:398.440000pt;}
.y9d_c00455{bottom:399.226667pt;}
.y9e_c00455{bottom:400.360000pt;}
.y9a_c00455{bottom:415.026667pt;}
.y98_c00455{bottom:415.773333pt;}
.y97_c00455{bottom:417.693333pt;}
.y99_c00455{bottom:418.640000pt;}
.y96_c00455{bottom:435.026667pt;}
.y95_c00455{bottom:449.693333pt;}
.y90_c00455{bottom:450.440000pt;}
.y94_c00455{bottom:451.400000pt;}
.y92_c00455{bottom:451.773333pt;}
.y8f_c00455{bottom:452.360000pt;}
.y91_c00455{bottom:452.560000pt;}
.y93_c00455{bottom:453.306667pt;}
.y8d_c00455{bottom:467.026667pt;}
.y8b_c00455{bottom:469.106667pt;}
.y8e_c00455{bottom:470.066667pt;}
.y8c_c00455{bottom:470.640000pt;}
.y8a_c00455{bottom:471.026667pt;}
.y89_c00455{bottom:486.440000pt;}
.y87_c00455{bottom:487.400000pt;}
.y88_c00455{bottom:487.973333pt;}
.y86_c00455{bottom:488.360000pt;}
.y84_c00455{bottom:503.773333pt;}
.y83_c00455{bottom:504.560000pt;}
.y85_c00455{bottom:505.693333pt;}
.y7f_c00455{bottom:521.106667pt;}
.y82_c00455{bottom:521.893333pt;}
.y81_c00455{bottom:522.066667pt;}
.y80_c00455{bottom:523.026667pt;}
.y7c_c00455{bottom:538.440000pt;}
.y7e_c00455{bottom:539.400000pt;}
.y7d_c00455{bottom:540.360000pt;}
.y79_c00455{bottom:555.773333pt;}
.y78_c00455{bottom:557.693333pt;}
.y7b_c00455{bottom:557.893333pt;}
.y7a_c00455{bottom:559.026667pt;}
.y73_c00455{bottom:572.360000pt;}
.y77_c00455{bottom:573.106667pt;}
.y74_c00455{bottom:574.640000pt;}
.y75_c00455{bottom:575.026667pt;}
.y76_c00455{bottom:575.226667pt;}
.y70_c00455{bottom:591.040000pt;}
.y6f_c00455{bottom:591.773333pt;}
.y71_c00455{bottom:592.560000pt;}
.y72_c00455{bottom:593.306667pt;}
.y6e_c00455{bottom:593.693333pt;}
.y68_c00455{bottom:607.773333pt;}
.y66_c00455{bottom:607.973333pt;}
.y69_c00455{bottom:608.733333pt;}
.y6d_c00455{bottom:609.106667pt;}
.y67_c00455{bottom:609.693333pt;}
.y6b_c00455{bottom:609.893333pt;}
.y6a_c00455{bottom:610.640000pt;}
.y6c_c00455{bottom:611.026667pt;}
.y62_c00455{bottom:624.360000pt;}
.y65_c00455{bottom:625.306667pt;}
.y60_c00455{bottom:625.493333pt;}
.y64_c00455{bottom:625.706667pt;}
.y5e_c00455{bottom:626.440000pt;}
.y63_c00455{bottom:627.226667pt;}
.y5f_c00455{bottom:628.360000pt;}
.y61_c00455{bottom:629.306667pt;}
.y5c_c00455{bottom:643.773333pt;}
.y5d_c00455{bottom:645.306667pt;}
.y5b_c00455{bottom:645.693333pt;}
.y56_c00455{bottom:660.360000pt;}
.y5a_c00455{bottom:661.106667pt;}
.y57_c00455{bottom:662.066667pt;}
.y58_c00455{bottom:663.026667pt;}
.y59_c00455{bottom:663.226667pt;}
.y52_c00455{bottom:677.693333pt;}
.y50_c00455{bottom:678.440000pt;}
.y54_c00455{bottom:679.226667pt;}
.y4f_c00455{bottom:679.973333pt;}
.y51_c00455{bottom:680.360000pt;}
.y53_c00455{bottom:680.560000pt;}
.y55_c00455{bottom:681.306667pt;}
.y4c_c00455{bottom:695.773333pt;}
.y4e_c00455{bottom:696.733333pt;}
.y4a_c00455{bottom:697.693333pt;}
.y4b_c00455{bottom:697.893333pt;}
.y4d_c00455{bottom:698.640000pt;}
.y49_c00455{bottom:712.360000pt;}
.y46_c00455{bottom:713.106667pt;}
.y47_c00455{bottom:714.066667pt;}
.y45_c00455{bottom:715.026667pt;}
.y48_c00455{bottom:715.226667pt;}
.y44_c00455{bottom:715.973333pt;}
.y41_c00455{bottom:731.773333pt;}
.y40_c00455{bottom:732.560000pt;}
.y43_c00455{bottom:733.306667pt;}
.y42_c00455{bottom:733.693333pt;}
.y3f_c00455{bottom:747.026667pt;}
.y3e_c00455{bottom:749.106667pt;}
.y3c_c00455{bottom:749.893333pt;}
.y3d_c00455{bottom:750.640000pt;}
.y3b_c00455{bottom:751.026667pt;}
.y37_c00455{bottom:766.440000pt;}
.y39_c00455{bottom:767.226667pt;}
.y3a_c00455{bottom:767.400000pt;}
.y38_c00455{bottom:768.360000pt;}
.y35_c00455{bottom:782.640000pt;}
.y36_c00455{bottom:783.026667pt;}
.y31_c00455{bottom:783.773333pt;}
.y30_c00455{bottom:784.560000pt;}
.y32_c00455{bottom:785.306667pt;}
.y33_c00455{bottom:785.693333pt;}
.y34_c00455{bottom:786.640000pt;}
.y2d_c00455{bottom:800.360000pt;}
.y2e_c00455{bottom:801.106667pt;}
.y2c_c00455{bottom:802.066667pt;}
.y2f_c00455{bottom:803.026667pt;}
.y2b_c00455{bottom:818.440000pt;}
.y29_c00455{bottom:819.973333pt;}
.y28_c00455{bottom:820.360000pt;}
.y2a_c00455{bottom:821.306667pt;}
.y26_c00455{bottom:835.026667pt;}
.y24_c00455{bottom:835.773333pt;}
.y22_c00455{bottom:836.733333pt;}
.y27_c00455{bottom:837.306667pt;}
.y25_c00455{bottom:837.693333pt;}
.y23_c00455{bottom:838.640000pt;}
.y21_c00455{bottom:852.360000pt;}
.y20_c00455{bottom:853.106667pt;}
.y1e_c00455{bottom:855.026667pt;}
.y1f_c00455{bottom:855.973333pt;}
.y1b_c00455{bottom:870.440000pt;}
.y1c_c00455{bottom:871.400000pt;}
.y1d_c00455{bottom:872.360000pt;}
.y19_c00455{bottom:887.026667pt;}
.y17_c00455{bottom:887.773333pt;}
.y1a_c00455{bottom:889.106667pt;}
.y16_c00455{bottom:889.693333pt;}
.y15_c00455{bottom:889.893333pt;}
.y18_c00455{bottom:890.640000pt;}
.y10_c00455{bottom:905.106667pt;}
.y14_c00455{bottom:905.306667pt;}
.yf_c00455{bottom:906.066667pt;}
.y11_c00455{bottom:906.440000pt;}
.y13_c00455{bottom:907.026667pt;}
.ye_c00455{bottom:907.226667pt;}
.yd_c00455{bottom:907.973333pt;}
.y12_c00455{bottom:908.360000pt;}
.yc_c00455{bottom:921.693333pt;}
.yb_c00455{bottom:922.640000pt;}
.y7_c00455{bottom:923.400000pt;}
.y9_c00455{bottom:923.773333pt;}
.y8_c00455{bottom:924.560000pt;}
.ya_c00455{bottom:925.693333pt;}
.y6_c00455{bottom:941.106667pt;}
.y3_c00455{bottom:941.893333pt;}
.y4_c00455{bottom:942.640000pt;}
.y5_c00455{bottom:943.026667pt;}
.y1_c00455{bottom:976.733333pt;}
.y2_c00455{bottom:976.933333pt;}
.h8_c00455{height:3.739141pt;}
.h3_c00455{height:20.466875pt;}
.h2_c00455{height:22.303646pt;}
.h4_c00455{height:27.879557pt;}
.h5_c00455{height:31.618698pt;}
.h1_c00455{height:35.357839pt;}
.h6_c00455{height:39.031380pt;}
.h7_c00455{height:42.770521pt;}
.h0_c00455{height:1186.666667pt;}
.w0_c00455{width:782.666667pt;}
.x0_c00455{left:0.000000pt;}
.xf3_c00455{left:132.960000pt;}
.x9a_c00455{left:134.293333pt;}
.x1_c00455{left:136.000000pt;}
.xcd_c00455{left:137.133333pt;}
.x10e_c00455{left:144.000000pt;}
.xe9_c00455{left:148.000000pt;}
.x37_c00455{left:150.666667pt;}
.x80_c00455{left:152.960000pt;}
.xab_c00455{left:156.373333pt;}
.x103_c00455{left:158.666667pt;}
.x3_c00455{left:160.000000pt;}
.xe3_c00455{left:161.706667pt;}
.x4f_c00455{left:162.666667pt;}
.x64_c00455{left:164.373333pt;}
.x74_c00455{left:165.333333pt;}
.xf_c00455{left:167.040000pt;}
.xd8_c00455{left:168.000000pt;}
.x28_c00455{left:169.333333pt;}
.x6d_c00455{left:170.666667pt;}
.x38_c00455{left:172.373333pt;}
.xee_c00455{left:173.706667pt;}
.xea_c00455{left:177.706667pt;}
.x31_c00455{left:180.000000pt;}
.xf4_c00455{left:180.960000pt;}
.xac_c00455{left:184.000000pt;}
.xba_c00455{left:185.706667pt;}
.x4_c00455{left:186.666667pt;}
.x1b_c00455{left:189.706667pt;}
.x43_c00455{left:192.000000pt;}
.xde_c00455{left:193.333333pt;}
.xc0_c00455{left:194.293333pt;}
.xfa_c00455{left:195.626667pt;}
.x10f_c00455{left:197.706667pt;}
.x10_c00455{left:198.666667pt;}
.xc9_c00455{left:199.800000pt;}
.x5_c00455{left:200.960000pt;}
.x92_c00455{left:202.666667pt;}
.x50_c00455{left:204.373333pt;}
.x5c_c00455{left:207.626667pt;}
.x81_c00455{left:210.666667pt;}
.x29_c00455{left:212.373333pt;}
.x110_c00455{left:213.333333pt;}
.x32_c00455{left:216.373333pt;}
.xe4_c00455{left:217.706667pt;}
.x109_c00455{left:220.000000pt;}
.x8a_c00455{left:221.706667pt;}
.x39_c00455{left:223.626667pt;}
.xa5_c00455{left:225.333333pt;}
.x1c_c00455{left:227.040000pt;}
.xef_c00455{left:228.000000pt;}
.x44_c00455{left:229.706667pt;}
.x82_c00455{left:230.666667pt;}
.x51_c00455{left:232.373333pt;}
.xfb_c00455{left:233.333333pt;}
.x104_c00455{left:234.666667pt;}
.x75_c00455{left:236.000000pt;}
.x33_c00455{left:237.706667pt;}
.xc6_c00455{left:240.000000pt;}
.x65_c00455{left:244.000000pt;}
.x2a_c00455{left:244.960000pt;}
.x9b_c00455{left:249.333333pt;}
.x6_c00455{left:250.293333pt;}
.x6e_c00455{left:252.000000pt;}
.xc1_c00455{left:253.333333pt;}
.xd9_c00455{left:254.666667pt;}
.xad_c00455{left:256.000000pt;}
.x5d_c00455{left:256.960000pt;}
.xbb_c00455{left:258.666667pt;}
.x34_c00455{left:259.626667pt;}
.x66_c00455{left:261.333333pt;}
.x1d_c00455{left:263.040000pt;}
.xbc_c00455{left:267.040000pt;}
.x8b_c00455{left:268.373333pt;}
.x11_c00455{left:269.333333pt;}
.xae_c00455{left:270.666667pt;}
.xce_c00455{left:271.626667pt;}
.x2b_c00455{left:274.293333pt;}
.xe5_c00455{left:275.626667pt;}
.x52_c00455{left:278.666667pt;}
.x45_c00455{left:281.333333pt;}
.xdf_c00455{left:283.040000pt;}
.x3a_c00455{left:284.373333pt;}
.x83_c00455{left:287.626667pt;}
.x76_c00455{left:289.333333pt;}
.xfe_c00455{left:291.626667pt;}
.x46_c00455{left:294.666667pt;}
.x93_c00455{left:296.960000pt;}
.xb1_c00455{left:299.626667pt;}
.x35_c00455{left:300.960000pt;}
.x7_c00455{left:302.293333pt;}
.x53_c00455{left:304.373333pt;}
.x77_c00455{left:305.333333pt;}
.x101_c00455{left:306.666667pt;}
.x10a_c00455{left:309.333333pt;}
.x3b_c00455{left:311.040000pt;}
.x36_c00455{left:315.626667pt;}
.x1e_c00455{left:317.706667pt;}
.xc2_c00455{left:320.000000pt;}
.xbd_c00455{left:322.666667pt;}
.x8_c00455{left:323.626667pt;}
.x94_c00455{left:325.333333pt;}
.xe0_c00455{left:329.333333pt;}
.x12_c00455{left:331.626667pt;}
.x54_c00455{left:335.626667pt;}
.x6f_c00455{left:337.706667pt;}
.x84_c00455{left:338.666667pt;}
.xf0_c00455{left:340.000000pt;}
.x67_c00455{left:343.040000pt;}
.xe6_c00455{left:344.000000pt;}
.x105_c00455{left:344.960000pt;}
.xf5_c00455{left:346.293333pt;}
.xb6_c00455{left:348.000000pt;}
.x5e_c00455{left:350.293333pt;}
.x9_c00455{left:352.000000pt;}
.x1f_c00455{left:353.706667pt;}
.x78_c00455{left:355.040000pt;}
.x8c_c00455{left:356.000000pt;}
.xaf_c00455{left:357.333333pt;}
.xe1_c00455{left:359.040000pt;}
.x9c_c00455{left:361.333333pt;}
.x2_c00455{left:362.666667pt;}
.x55_c00455{left:363.800000pt;}
.x3c_c00455{left:365.706667pt;}
.x2c_c00455{left:367.626667pt;}
.x5f_c00455{left:369.333333pt;}
.xc3_c00455{left:370.666667pt;}
.xf1_c00455{left:371.626667pt;}
.x47_c00455{left:372.960000pt;}
.xf6_c00455{left:374.666667pt;}
.x13_c00455{left:376.373333pt;}
.x9d_c00455{left:377.333333pt;}
.xca_c00455{left:378.293333pt;}
.xcf_c00455{left:380.000000pt;}
.x70_c00455{left:384.373333pt;}
.x2d_c00455{left:385.706667pt;}
.x9e_c00455{left:388.373333pt;}
.x68_c00455{left:389.333333pt;}
.xc4_c00455{left:390.666667pt;}
.xb2_c00455{left:392.373333pt;}
.x85_c00455{left:393.333333pt;}
.x56_c00455{left:394.666667pt;}
.xeb_c00455{left:396.960000pt;}
.xc7_c00455{left:398.293333pt;}
.x3d_c00455{left:401.333333pt;}
.x79_c00455{left:405.333333pt;}
.xa6_c00455{left:406.293333pt;}
.xb0_c00455{left:408.373333pt;}
.x71_c00455{left:409.333333pt;}
.x20_c00455{left:410.666667pt;}
.x2e_c00455{left:412.000000pt;}
.x69_c00455{left:413.333333pt;}
.xa_c00455{left:416.373333pt;}
.xb3_c00455{left:417.333333pt;}
.x8d_c00455{left:418.666667pt;}
.x14_c00455{left:424.373333pt;}
.xc8_c00455{left:426.666667pt;}
.x21_c00455{left:427.626667pt;}
.xc5_c00455{left:432.000000pt;}
.xbe_c00455{left:435.040000pt;}
.x106_c00455{left:436.000000pt;}
.x48_c00455{left:439.040000pt;}
.xda_c00455{left:440.960000pt;}
.xb_c00455{left:442.666667pt;}
.x9f_c00455{left:444.000000pt;}
.x8e_c00455{left:445.706667pt;}
.xb7_c00455{left:447.040000pt;}
.x7a_c00455{left:449.333333pt;}
.x15_c00455{left:450.666667pt;}
.x57_c00455{left:453.706667pt;}
.x3e_c00455{left:454.666667pt;}
.x102_c00455{left:455.626667pt;}
.x107_c00455{left:456.960000pt;}
.xff_c00455{left:460.000000pt;}
.x10b_c00455{left:461.333333pt;}
.xa7_c00455{left:462.666667pt;}
.x22_c00455{left:464.000000pt;}
.xd2_c00455{left:467.626667pt;}
.x7b_c00455{left:469.706667pt;}
.x49_c00455{left:472.000000pt;}
.x3f_c00455{left:473.333333pt;}
.x60_c00455{left:474.666667pt;}
.xb8_c00455{left:475.626667pt;}
.x58_c00455{left:477.333333pt;}
.xf2_c00455{left:478.666667pt;}
.xbf_c00455{left:480.373333pt;}
.x23_c00455{left:481.333333pt;}
.x86_c00455{left:482.666667pt;}
.xd0_c00455{left:485.706667pt;}
.x8f_c00455{left:487.040000pt;}
.x4a_c00455{left:488.000000pt;}
.x6a_c00455{left:489.706667pt;}
.xfc_c00455{left:491.800000pt;}
.xa0_c00455{left:492.960000pt;}
.xd3_c00455{left:495.626667pt;}
.xf7_c00455{left:497.706667pt;}
.x95_c00455{left:498.666667pt;}
.x7c_c00455{left:499.626667pt;}
.xcb_c00455{left:500.760000pt;}
.x16_c00455{left:502.293333pt;}
.xe7_c00455{left:504.373333pt;}
.x10c_c00455{left:507.626667pt;}
.x87_c00455{left:510.666667pt;}
.xa1_c00455{left:512.373333pt;}
.xd4_c00455{left:513.333333pt;}
.x40_c00455{left:514.666667pt;}
.x4b_c00455{left:516.373333pt;}
.x96_c00455{left:517.333333pt;}
.x24_c00455{left:518.666667pt;}
.x6b_c00455{left:519.626667pt;}
.xa8_c00455{left:521.333333pt;}
.x17_c00455{left:524.373333pt;}
.x2f_c00455{left:525.706667pt;}
.xd5_c00455{left:526.666667pt;}
.x7d_c00455{left:528.000000pt;}
.xdb_c00455{left:529.333333pt;}
.x61_c00455{left:531.626667pt;}
.xa2_c00455{left:533.333333pt;}
.xf8_c00455{left:537.333333pt;}
.xa9_c00455{left:538.666667pt;}
.xc_c00455{left:539.626667pt;}
.x25_c00455{left:540.960000pt;}
.xa3_c00455{left:542.666667pt;}
.x7e_c00455{left:544.000000pt;}
.x97_c00455{left:546.666667pt;}
.x18_c00455{left:548.000000pt;}
.x59_c00455{left:548.960000pt;}
.x88_c00455{left:552.573333pt;}
.xf9_c00455{left:555.040000pt;}
.x4c_c00455{left:556.000000pt;}
.x10d_c00455{left:557.333333pt;}
.xd6_c00455{left:563.040000pt;}
.xfd_c00455{left:564.000000pt;}
.x5a_c00455{left:565.333333pt;}
.x62_c00455{left:566.293333pt;}
.x72_c00455{left:567.626667pt;}
.x90_c00455{left:571.040000pt;}
.xd1_c00455{left:572.000000pt;}
.x108_c00455{left:573.333333pt;}
.xb4_c00455{left:574.666667pt;}
.xd_c00455{left:576.373333pt;}
.xaa_c00455{left:577.333333pt;}
.x6c_c00455{left:578.293333pt;}
.x7f_c00455{left:581.333333pt;}
.x19_c00455{left:585.706667pt;}
.x4d_c00455{left:586.666667pt;}
.xcc_c00455{left:588.000000pt;}
.x41_c00455{left:589.333333pt;}
.x63_c00455{left:590.666667pt;}
.x5b_c00455{left:591.626667pt;}
.x26_c00455{left:593.706667pt;}
.x73_c00455{left:596.000000pt;}
.x98_c00455{left:599.040000pt;}
.xa4_c00455{left:600.000000pt;}
.x4e_c00455{left:601.333333pt;}
.x91_c00455{left:602.666667pt;}
.xec_c00455{left:604.000000pt;}
.x42_c00455{left:607.040000pt;}
.x100_c00455{left:609.333333pt;}
.xd7_c00455{left:612.000000pt;}
.xb5_c00455{left:612.960000pt;}
.xdc_c00455{left:616.000000pt;}
.x27_c00455{left:617.333333pt;}
.x1a_c00455{left:619.040000pt;}
.xb9_c00455{left:620.373333pt;}
.xed_c00455{left:623.800000pt;}
.xe2_c00455{left:626.293333pt;}
.xe_c00455{left:629.333333pt;}
.x99_c00455{left:631.040000pt;}
.xdd_c00455{left:633.333333pt;}
.xe8_c00455{left:636.960000pt;}
.x89_c00455{left:640.000000pt;}
.x30_c00455{left:642.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_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_05842da0ed2a5a1208335f2d.woff2')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mba_c00456{transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);}
.m56_c00456{transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);}
.mb_c00456{transform:matrix(0.355828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355828,0.000000,0.000000,0.250000,0,0);}
.m16_c00456{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.mef_c00456{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m76_c00456{transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);}
.maa_c00456{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.m4a_c00456{transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);}
.m1e_c00456{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.me9_c00456{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m25_c00456{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.ma2_c00456{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m69_c00456{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m6e_c00456{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m54_c00456{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.mc_c00456{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m9f_c00456{transform:matrix(0.382780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382780,0.000000,0.000000,0.250000,0,0);}
.m39_c00456{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.mb7_c00456{transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);}
.m33_c00456{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mb2_c00456{transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);}
.m73_c00456{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m52_c00456{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m8_c00456{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m42_c00456{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m2d_c00456{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m6d_c00456{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.mf1_c00456{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.mce_c00456{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m87_c00456{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m88_c00456{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.ma1_c00456{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m7f_c00456{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m4e_c00456{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_c00456{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m9d_c00456{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m55_c00456{transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);}
.m2c_c00456{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m7a_c00456{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mb1_c00456{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.md1_c00456{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m47_c00456{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.mcd_c00456{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mf0_c00456{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.ma6_c00456{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m8f_c00456{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.ma3_c00456{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.m96_c00456{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m3d_c00456{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m4b_c00456{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mc3_c00456{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.ma5_c00456{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.m49_c00456{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.mbd_c00456{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m50_c00456{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m29_c00456{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m9e_c00456{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m7d_c00456{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.ma7_c00456{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.mc6_c00456{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.mab_c00456{transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);}
.md0_c00456{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.me7_c00456{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m98_c00456{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mbe_c00456{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.md2_c00456{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m68_c00456{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m61_c00456{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.maf_c00456{transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);}
.m92_c00456{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m22_c00456{transform:matrix(0.444341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444341,0.000000,0.000000,0.250000,0,0);}
.m1c_c00456{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m2_c00456{transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);}
.m46_c00456{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mb4_c00456{transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);}
.mc9_c00456{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.md7_c00456{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.mae_c00456{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.mdd_c00456{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.me2_c00456{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.mc4_c00456{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mc0_c00456{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m80_c00456{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.me_c00456{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.ma9_c00456{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m97_c00456{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m40_c00456{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m3a_c00456{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m99_c00456{transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);}
.m67_c00456{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m5e_c00456{transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);}
.m6c_c00456{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m63_c00456{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.mdf_c00456{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.m36_c00456{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m95_c00456{transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);}
.m64_c00456{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.med_c00456{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m43_c00456{transform:matrix(0.477273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477273,0.000000,0.000000,0.250000,0,0);}
.m30_c00456{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.m78_c00456{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.ma0_c00456{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.ma4_c00456{transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);}
.mde_c00456{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m26_c00456{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.md8_c00456{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m7_c00456{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mb9_c00456{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m21_c00456{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m1_c00456{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mc1_c00456{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mf_c00456{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m5f_c00456{transform:matrix(0.494538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494538,0.000000,0.000000,0.250000,0,0);}
.m24_c00456{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.mbc_c00456{transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);}
.m7b_c00456{transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);}
.m79_c00456{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m1b_c00456{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);}
.mca_c00456{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m4_c00456{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m7e_c00456{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m9a_c00456{transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);}
.mdb_c00456{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m72_c00456{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m85_c00456{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m62_c00456{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.md_c00456{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m93_c00456{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m9_c00456{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m3e_c00456{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m3_c00456{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m28_c00456{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m4d_c00456{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mbb_c00456{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m1f_c00456{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m71_c00456{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m8c_c00456{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m8d_c00456{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m48_c00456{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m14_c00456{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mb6_c00456{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.me8_c00456{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.mea_c00456{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m10_c00456{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m6f_c00456{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m8b_c00456{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m89_c00456{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m5b_c00456{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m90_c00456{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m13_c00456{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mec_c00456{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m86_c00456{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m27_c00456{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m82_c00456{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m12_c00456{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m5c_c00456{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m18_c00456{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mcb_c00456{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m1d_c00456{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m3c_c00456{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m77_c00456{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m74_c00456{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.me0_c00456{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.me4_c00456{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m51_c00456{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m53_c00456{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mcf_c00456{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m6b_c00456{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m3b_c00456{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.me1_c00456{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mda_c00456{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.me5_c00456{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m83_c00456{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m2f_c00456{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m5a_c00456{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mc7_c00456{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m11_c00456{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.meb_c00456{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m66_c00456{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.mc5_c00456{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m20_c00456{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mee_c00456{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.mb5_c00456{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.m5d_c00456{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m44_c00456{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m59_c00456{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m94_c00456{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);}
.m38_c00456{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mac_c00456{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m1a_c00456{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mc2_c00456{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.me6_c00456{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.ma_c00456{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m23_c00456{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m41_c00456{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m8e_c00456{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);}
.m15_c00456{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m9b_c00456{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m35_c00456{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m31_c00456{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m37_c00456{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.mdc_c00456{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m65_c00456{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m70_c00456{transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);}
.me3_c00456{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m0_c00456{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m32_c00456{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.mad_c00456{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);}
.m8a_c00456{transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);}
.m3f_c00456{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m4c_c00456{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mb8_c00456{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.md5_c00456{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mb0_c00456{transform:matrix(0.694853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694853,0.000000,0.000000,0.250000,0,0);}
.md6_c00456{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m84_c00456{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m17_c00456{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.md9_c00456{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.md4_c00456{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m60_c00456{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m19_c00456{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m6_c00456{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m2a_c00456{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m2b_c00456{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mcc_c00456{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m57_c00456{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m7c_c00456{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m5_c00456{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m34_c00456{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m91_c00456{transform:matrix(0.772436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772436,0.000000,0.000000,0.250000,0,0);}
.m4f_c00456{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.md3_c00456{transform:matrix(0.782051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782051,0.000000,0.000000,0.250000,0,0);}
.m75_c00456{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m2e_c00456{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m6a_c00456{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m81_c00456{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m9c_c00456{transform:matrix(0.816912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816912,0.000000,0.000000,0.250000,0,0);}
.m45_c00456{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.mb3_c00456{transform:matrix(1.004405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.004405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.004405,0.000000,0.000000,0.250000,0,0);}
.ma8_c00456{transform:matrix(1.311699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.311699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.311699,0.000000,0.000000,0.250000,0,0);}
.mbf_c00456{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.mc8_c00456{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws2_c00456{word-spacing:-5.752360px;}
.ws1_c00456{word-spacing:-4.766139px;}
.ws0_c00456{word-spacing:-4.373143px;}
.ws3_c00456{word-spacing:0.000000px;}
.fc0_c00456{color:transparent;}
.fs8_c00456{font-size:3.420000px;}
.fs7_c00456{font-size:13.620000px;}
.fs3_c00456{font-size:18.720000px;}
.fs0_c00456{font-size:20.400000px;}
.fs6_c00456{font-size:25.500000px;}
.fs1_c00456{font-size:28.920000px;}
.fs5_c00456{font-size:32.340000px;}
.fs2_c00456{font-size:35.700000px;}
.fs4_c00456{font-size:39.120000px;}
.y0_c00456{bottom:0.000000px;}
.yc9_c00456{bottom:253.245000px;}
.yc8_c00456{bottom:254.550000px;}
.yca_c00456{bottom:254.745000px;}
.yc7_c00456{bottom:255.405000px;}
.ycb_c00456{bottom:255.825000px;}
.yc3_c00456{bottom:271.905000px;}
.yc4_c00456{bottom:272.745000px;}
.yc6_c00456{bottom:274.245000px;}
.yc2_c00456{bottom:274.905000px;}
.yc5_c00456{bottom:276.405000px;}
.ybe_c00456{bottom:292.245000px;}
.ybd_c00456{bottom:293.550000px;}
.yc1_c00456{bottom:293.745000px;}
.ybc_c00456{bottom:294.405000px;}
.ybb_c00456{bottom:294.630000px;}
.ybf_c00456{bottom:295.470000px;}
.yc0_c00456{bottom:295.905000px;}
.yb9_c00456{bottom:312.825000px;}
.yb6_c00456{bottom:313.245000px;}
.yb8_c00456{bottom:313.905000px;}
.yb5_c00456{bottom:314.130000px;}
.yba_c00456{bottom:314.970000px;}
.yb7_c00456{bottom:315.405000px;}
.yb2_c00456{bottom:332.745000px;}
.yb4_c00456{bottom:333.825000px;}
.yb3_c00456{bottom:334.470000px;}
.yb0_c00456{bottom:334.905000px;}
.yb1_c00456{bottom:334.920000px;}
.yaf_c00456{bottom:354.405000px;}
.yab_c00456{bottom:371.745000px;}
.yae_c00456{bottom:372.630000px;}
.yad_c00456{bottom:372.825000px;}
.yac_c00456{bottom:373.905000px;}
.ya8_c00456{bottom:391.245000px;}
.yaa_c00456{bottom:392.130000px;}
.ya7_c00456{bottom:392.325000px;}
.ya9_c00456{bottom:393.405000px;}
.ya6_c00456{bottom:410.745000px;}
.ya4_c00456{bottom:412.905000px;}
.ya5_c00456{bottom:414.420000px;}
.ya2_c00456{bottom:431.745000px;}
.ya3_c00456{bottom:432.405000px;}
.ya0_c00456{bottom:432.630000px;}
.y9f_c00456{bottom:433.905000px;}
.ya1_c00456{bottom:433.920000px;}
.y9e_c00456{bottom:450.405000px;}
.y9d_c00456{bottom:450.825000px;}
.y9b_c00456{bottom:451.245000px;}
.y9c_c00456{bottom:453.420000px;}
.y9a_c00456{bottom:470.745000px;}
.y99_c00456{bottom:471.630000px;}
.y97_c00456{bottom:471.825000px;}
.y98_c00456{bottom:472.470000px;}
.y96_c00456{bottom:472.905000px;}
.y91_c00456{bottom:490.245000px;}
.y94_c00456{bottom:491.325000px;}
.y93_c00456{bottom:492.405000px;}
.y92_c00456{bottom:492.420000px;}
.y95_c00456{bottom:492.630000px;}
.y90_c00456{bottom:512.970000px;}
.y8a_c00456{bottom:513.825000px;}
.y8d_c00456{bottom:514.050000px;}
.y8c_c00456{bottom:514.905000px;}
.y8e_c00456{bottom:515.970000px;}
.y8b_c00456{bottom:516.195000px;}
.y8f_c00456{bottom:517.050000px;}
.y89_c00456{bottom:533.325000px;}
.y86_c00456{bottom:534.405000px;}
.y87_c00456{bottom:534.630000px;}
.y88_c00456{bottom:536.550000px;}
.y85_c00456{bottom:546.825000px;}
.y81_c00456{bottom:547.470000px;}
.y7f_c00456{bottom:548.325000px;}
.y84_c00456{bottom:548.550000px;}
.y80_c00456{bottom:549.405000px;}
.y83_c00456{bottom:549.630000px;}
.y82_c00456{bottom:551.550000px;}
.y7e_c00456{bottom:572.745000px;}
.y7b_c00456{bottom:573.825000px;}
.y7d_c00456{bottom:574.050000px;}
.y7c_c00456{bottom:574.905000px;}
.y7a_c00456{bottom:609.630000px;}
.y79_c00456{bottom:610.905000px;}
.y76_c00456{bottom:625.905000px;}
.y78_c00456{bottom:626.745000px;}
.y73_c00456{bottom:626.970000px;}
.y75_c00456{bottom:628.245000px;}
.y77_c00456{bottom:628.905000px;}
.y74_c00456{bottom:629.130000px;}
.y72_c00456{bottom:630.405000px;}
.y70_c00456{bottom:645.405000px;}
.y6f_c00456{bottom:647.745000px;}
.y71_c00456{bottom:648.405000px;}
.y6d_c00456{bottom:649.905000px;}
.y6e_c00456{bottom:650.970000px;}
.y68_c00456{bottom:667.245000px;}
.y6c_c00456{bottom:668.130000px;}
.y6b_c00456{bottom:668.325000px;}
.y69_c00456{bottom:669.405000px;}
.y6a_c00456{bottom:669.630000px;}
.y63_c00456{bottom:688.245000px;}
.y64_c00456{bottom:688.905000px;}
.y67_c00456{bottom:689.130000px;}
.y65_c00456{bottom:689.970000px;}
.y66_c00456{bottom:690.405000px;}
.y62_c00456{bottom:706.245000px;}
.y61_c00456{bottom:708.405000px;}
.y5e_c00456{bottom:725.745000px;}
.y5f_c00456{bottom:726.825000px;}
.y5a_c00456{bottom:727.245000px;}
.y5b_c00456{bottom:727.905000px;}
.y5d_c00456{bottom:728.130000px;}
.y60_c00456{bottom:728.970000px;}
.y5c_c00456{bottom:729.405000px;}
.y55_c00456{bottom:746.745000px;}
.y54_c00456{bottom:747.405000px;}
.y59_c00456{bottom:747.630000px;}
.y57_c00456{bottom:747.825000px;}
.y58_c00456{bottom:748.470000px;}
.y56_c00456{bottom:748.905000px;}
.y50_c00456{bottom:766.245000px;}
.y53_c00456{bottom:767.130000px;}
.y52_c00456{bottom:767.970000px;}
.y51_c00456{bottom:768.405000px;}
.y4e_c00456{bottom:785.745000px;}
.y4d_c00456{bottom:787.905000px;}
.y4f_c00456{bottom:788.970000px;}
.y4b_c00456{bottom:805.245000px;}
.y4a_c00456{bottom:806.325000px;}
.y48_c00456{bottom:807.405000px;}
.y49_c00456{bottom:807.630000px;}
.y4c_c00456{bottom:808.470000px;}
.y46_c00456{bottom:823.905000px;}
.y44_c00456{bottom:825.825000px;}
.y45_c00456{bottom:826.905000px;}
.y47_c00456{bottom:827.970000px;}
.y43_c00456{bottom:843.405000px;}
.y42_c00456{bottom:845.745000px;}
.y41_c00456{bottom:847.470000px;}
.y40_c00456{bottom:847.905000px;}
.y3e_c00456{bottom:863.745000px;}
.y3c_c00456{bottom:865.245000px;}
.y3f_c00456{bottom:865.905000px;}
.y3d_c00456{bottom:866.130000px;}
.y3b_c00456{bottom:867.405000px;}
.y3a_c00456{bottom:883.245000px;}
.y36_c00456{bottom:884.745000px;}
.y39_c00456{bottom:885.630000px;}
.y37_c00456{bottom:886.470000px;}
.y38_c00456{bottom:886.905000px;}
.y32_c00456{bottom:903.825000px;}
.y33_c00456{bottom:904.245000px;}
.y35_c00456{bottom:904.905000px;}
.y31_c00456{bottom:905.130000px;}
.y2f_c00456{bottom:905.325000px;}
.y34_c00456{bottom:905.970000px;}
.y30_c00456{bottom:906.405000px;}
.y29_c00456{bottom:921.405000px;}
.y2b_c00456{bottom:923.325000px;}
.y2c_c00456{bottom:923.745000px;}
.y2e_c00456{bottom:924.405000px;}
.y2a_c00456{bottom:924.630000px;}
.y2d_c00456{bottom:925.470000px;}
.y28_c00456{bottom:925.905000px;}
.y27_c00456{bottom:941.745000px;}
.y23_c00456{bottom:941.970000px;}
.y25_c00456{bottom:943.245000px;}
.y26_c00456{bottom:944.325000px;}
.y24_c00456{bottom:945.405000px;}
.y1f_c00456{bottom:961.905000px;}
.y1d_c00456{bottom:962.745000px;}
.y20_c00456{bottom:963.825000px;}
.y22_c00456{bottom:964.470000px;}
.y21_c00456{bottom:964.905000px;}
.y1e_c00456{bottom:965.130000px;}
.y1a_c00456{bottom:982.245000px;}
.y1c_c00456{bottom:983.130000px;}
.y19_c00456{bottom:984.405000px;}
.y1b_c00456{bottom:984.630000px;}
.y18_c00456{bottom:985.470000px;}
.y16_c00456{bottom:1000.905000px;}
.y12_c00456{bottom:1001.745000px;}
.y17_c00456{bottom:1002.825000px;}
.y14_c00456{bottom:1003.245000px;}
.y15_c00456{bottom:1003.905000px;}
.y13_c00456{bottom:1005.405000px;}
.y11_c00456{bottom:1020.405000px;}
.ye_c00456{bottom:1021.245000px;}
.y10_c00456{bottom:1021.470000px;}
.yc_c00456{bottom:1023.405000px;}
.yf_c00456{bottom:1023.630000px;}
.yd_c00456{bottom:1024.470000px;}
.ya_c00456{bottom:1039.905000px;}
.y9_c00456{bottom:1041.825000px;}
.y7_c00456{bottom:1042.245000px;}
.y8_c00456{bottom:1042.905000px;}
.yb_c00456{bottom:1044.405000px;}
.y6_c00456{bottom:1060.680000px;}
.y3_c00456{bottom:1061.745000px;}
.y5_c00456{bottom:1062.630000px;}
.y4_c00456{bottom:1063.905000px;}
.y2_c00456{bottom:1098.405000px;}
.y1_c00456{bottom:1102.050000px;}
.h9_c00456{height:4.206533px;}
.h8_c00456{height:16.752334px;}
.h4_c00456{height:23.025234px;}
.h1_c00456{height:25.091602px;}
.h7_c00456{height:31.364502px;}
.h2_c00456{height:35.571035px;}
.h6_c00456{height:39.777568px;}
.h3_c00456{height:43.910303px;}
.h5_c00456{height:48.116836px;}
.h0_c00456{height:1335.000000px;}
.w0_c00456{width:880.500000px;}
.x0_c00456{left:0.000000px;}
.xd_c00456{left:151.500000px;}
.x86_c00456{left:152.580000px;}
.xa6_c00456{left:154.080000px;}
.xcf_c00456{left:166.500000px;}
.x1f_c00456{left:167.580000px;}
.x3_c00456{left:169.080000px;}
.x4d_c00456{left:172.500000px;}
.xb1_c00456{left:175.080000px;}
.xf7_c00456{left:181.080000px;}
.xf1_c00456{left:186.000000px;}
.x68_c00456{left:187.500000px;}
.x17_c00456{left:193.500000px;}
.x34_c00456{left:198.000000px;}
.x26_c00456{left:200.580000px;}
.xaa_c00456{left:202.500000px;}
.x41_c00456{left:207.000000px;}
.xa7_c00456{left:208.500000px;}
.xd4_c00456{left:211.920000px;}
.xa0_c00456{left:213.420000px;}
.xc4_c00456{left:216.000000px;}
.x4e_c00456{left:217.500000px;}
.x27_c00456{left:220.500000px;}
.xab_c00456{left:222.000000px;}
.x18_c00456{left:223.500000px;}
.x42_c00456{left:225.000000px;}
.xe_c00456{left:226.500000px;}
.x94_c00456{left:228.855000px;}
.xd0_c00456{left:231.000000px;}
.xc0_c00456{left:232.500000px;}
.x77_c00456{left:234.000000px;}
.x87_c00456{left:235.080000px;}
.x60_c00456{left:236.580000px;}
.x43_c00456{left:241.500000px;}
.xe4_c00456{left:243.000000px;}
.x95_c00456{left:244.500000px;}
.x73_c00456{left:247.080000px;}
.xdd_c00456{left:249.000000px;}
.x4_c00456{left:250.500000px;}
.xc1_c00456{left:255.000000px;}
.xf2_c00456{left:256.500000px;}
.xb2_c00456{left:257.580000px;}
.x78_c00456{left:259.080000px;}
.xfa_c00456{left:260.580000px;}
.x69_c00456{left:265.080000px;}
.x35_c00456{left:267.000000px;}
.xf3_c00456{left:270.000000px;}
.x57_c00456{left:271.500000px;}
.x28_c00456{left:274.080000px;}
.x19_c00456{left:276.000000px;}
.xdb_c00456{left:279.000000px;}
.x7c_c00456{left:280.920000px;}
.x61_c00456{left:283.500000px;}
.x6a_c00456{left:285.000000px;}
.x36_c00456{left:288.000000px;}
.xf_c00456{left:291.420000px;}
.xa1_c00456{left:292.500000px;}
.x20_c00456{left:294.000000px;}
.x4f_c00456{left:295.500000px;}
.x9b_c00456{left:297.420000px;}
.xc2_c00456{left:299.580000px;}
.x1a_c00456{left:301.920000px;}
.x44_c00456{left:303.000000px;}
.xd1_c00456{left:307.500000px;}
.x37_c00456{left:310.920000px;}
.x50_c00456{left:312.420000px;}
.xf8_c00456{left:315.000000px;}
.x29_c00456{left:316.500000px;}
.x8d_c00456{left:319.920000px;}
.x62_c00456{left:321.420000px;}
.x74_c00456{left:322.500000px;}
.xe0_c00456{left:323.580000px;}
.x5_c00456{left:328.080000px;}
.xd5_c00456{left:330.000000px;}
.xc3_c00456{left:331.500000px;}
.x51_c00456{left:333.420000px;}
.xe5_c00456{left:337.920000px;}
.x1b_c00456{left:340.500000px;}
.x79_c00456{left:341.580000px;}
.x96_c00456{left:345.420000px;}
.x38_c00456{left:346.500000px;}
.x7d_c00456{left:347.775000px;}
.x8e_c00456{left:351.420000px;}
.xcc_c00456{left:352.920000px;}
.x63_c00456{left:354.000000px;}
.x10_c00456{left:355.920000px;}
.x58_c00456{left:358.080000px;}
.xd9_c00456{left:361.500000px;}
.x6b_c00456{left:362.580000px;}
.x64_c00456{left:364.500000px;}
.xb3_c00456{left:367.500000px;}
.x97_c00456{left:372.000000px;}
.xa8_c00456{left:373.080000px;}
.x45_c00456{left:374.580000px;}
.x1c_c00456{left:376.500000px;}
.x39_c00456{left:381.000000px;}
.xba_c00456{left:382.920000px;}
.xac_c00456{left:384.000000px;}
.xdc_c00456{left:385.080000px;}
.x7e_c00456{left:388.500000px;}
.xb4_c00456{left:391.080000px;}
.x2a_c00456{left:393.000000px;}
.x9c_c00456{left:394.500000px;}
.x11_c00456{left:396.420000px;}
.x1d_c00456{left:398.580000px;}
.x3a_c00456{left:400.920000px;}
.xd2_c00456{left:402.000000px;}
.x65_c00456{left:403.920000px;}
.x98_c00456{left:405.000000px;}
.x1_c00456{left:406.500000px;}
.x46_c00456{left:408.000000px;}
.x6_c00456{left:409.500000px;}
.x2b_c00456{left:411.000000px;}
.xcd_c00456{left:414.420000px;}
.x1e_c00456{left:417.000000px;}
.x7a_c00456{left:418.920000px;}
.xbb_c00456{left:421.500000px;}
.x8f_c00456{left:423.000000px;}
.x75_c00456{left:424.080000px;}
.x7f_c00456{left:426.420000px;}
.xe6_c00456{left:427.920000px;}
.xe1_c00456{left:432.000000px;}
.xad_c00456{left:433.920000px;}
.x47_c00456{left:436.500000px;}
.x59_c00456{left:437.580000px;}
.xa2_c00456{left:439.920000px;}
.x3b_c00456{left:441.420000px;}
.x2c_c00456{left:442.920000px;}
.x6c_c00456{left:445.080000px;}
.xc5_c00456{left:446.580000px;}
.x9d_c00456{left:448.080000px;}
.x80_c00456{left:454.500000px;}
.x7_c00456{left:457.920000px;}
.x5a_c00456{left:459.420000px;}
.xda_c00456{left:462.000000px;}
.xe7_c00456{left:463.500000px;}
.x52_c00456{left:464.580000px;}
.xc6_c00456{left:468.420000px;}
.xec_c00456{left:470.580000px;}
.xb5_c00456{left:472.920000px;}
.x88_c00456{left:475.500000px;}
.x12_c00456{left:478.500000px;}
.xe8_c00456{left:479.580000px;}
.x3c_c00456{left:481.920000px;}
.x99_c00456{left:483.000000px;}
.x53_c00456{left:484.920000px;}
.x8_c00456{left:488.580000px;}
.xc7_c00456{left:493.500000px;}
.xd6_c00456{left:494.580000px;}
.x9e_c00456{left:496.500000px;}
.xbc_c00456{left:498.000000px;}
.x48_c00456{left:499.500000px;}
.xf9_c00456{left:500.580000px;}
.x90_c00456{left:502.500000px;}
.x89_c00456{left:504.000000px;}
.x2d_c00456{left:506.580000px;}
.x81_c00456{left:508.080000px;}
.xae_c00456{left:509.580000px;}
.x9a_c00456{left:511.500000px;}
.x9_c00456{left:513.000000px;}
.x66_c00456{left:516.000000px;}
.xc8_c00456{left:517.500000px;}
.x21_c00456{left:520.080000px;}
.x3d_c00456{left:523.500000px;}
.x13_c00456{left:525.645000px;}
.x82_c00456{left:529.920000px;}
.x7b_c00456{left:532.920000px;}
.x6d_c00456{left:535.275000px;}
.xf4_c00456{left:536.580000px;}
.xa3_c00456{left:538.500000px;}
.xce_c00456{left:541.080000px;}
.x22_c00456{left:543.420000px;}
.x5b_c00456{left:544.500000px;}
.xb6_c00456{left:546.000000px;}
.xfb_c00456{left:547.920000px;}
.xa9_c00456{left:549.000000px;}
.x91_c00456{left:550.920000px;}
.x2e_c00456{left:553.080000px;}
.x8a_c00456{left:554.580000px;}
.xd7_c00456{left:556.920000px;}
.xa_c00456{left:559.500000px;}
.x83_c00456{left:561.420000px;}
.x14_c00456{left:562.500000px;}
.x49_c00456{left:565.500000px;}
.xc9_c00456{left:567.000000px;}
.xee_c00456{left:568.500000px;}
.x2f_c00456{left:573.420000px;}
.x23_c00456{left:574.920000px;}
.x6e_c00456{left:577.500000px;}
.xe2_c00456{left:579.420000px;}
.xa4_c00456{left:580.920000px;}
.x92_c00456{left:582.000000px;}
.x54_c00456{left:583.500000px;}
.xef_c00456{left:585.000000px;}
.xd8_c00456{left:587.580000px;}
.xb7_c00456{left:592.080000px;}
.x15_c00456{left:595.920000px;}
.x3e_c00456{left:597.000000px;}
.x6f_c00456{left:598.920000px;}
.xed_c00456{left:601.080000px;}
.x4a_c00456{left:603.420000px;}
.xca_c00456{left:605.580000px;}
.x8b_c00456{left:609.000000px;}
.xe9_c00456{left:610.500000px;}
.xf0_c00456{left:612.000000px;}
.xf5_c00456{left:613.500000px;}
.x30_c00456{left:615.000000px;}
.xb8_c00456{left:616.500000px;}
.xaf_c00456{left:618.420000px;}
.xd3_c00456{left:619.920000px;}
.xde_c00456{left:621.000000px;}
.x24_c00456{left:624.000000px;}
.xb_c00456{left:625.500000px;}
.x70_c00456{left:627.000000px;}
.x93_c00456{left:628.500000px;}
.x84_c00456{left:630.000000px;}
.x5c_c00456{left:631.500000px;}
.x4b_c00456{left:637.920000px;}
.xdf_c00456{left:641.580000px;}
.xa5_c00456{left:645.000000px;}
.xbd_c00456{left:646.080000px;}
.x5d_c00456{left:649.500000px;}
.x31_c00456{left:652.080000px;}
.x85_c00456{left:655.080000px;}
.xfc_c00456{left:656.580000px;}
.x67_c00456{left:658.080000px;}
.x55_c00456{left:660.420000px;}
.x71_c00456{left:663.000000px;}
.xc_c00456{left:664.500000px;}
.x4c_c00456{left:666.420000px;}
.xe3_c00456{left:667.500000px;}
.xbe_c00456{left:669.420000px;}
.x3f_c00456{left:672.000000px;}
.x16_c00456{left:673.080000px;}
.xea_c00456{left:675.000000px;}
.x8c_c00456{left:676.080000px;}
.x9f_c00456{left:681.000000px;}
.x5e_c00456{left:682.500000px;}
.xb0_c00456{left:685.500000px;}
.xf6_c00456{left:686.580000px;}
.xcb_c00456{left:688.080000px;}
.xb9_c00456{left:691.080000px;}
.x32_c00456{left:697.500000px;}
.xbf_c00456{left:699.420000px;}
.x40_c00456{left:700.920000px;}
.x2_c00456{left:705.000000px;}
.x25_c00456{left:706.920000px;}
.x72_c00456{left:708.420000px;}
.x5f_c00456{left:711.000000px;}
.x56_c00456{left:712.080000px;}
.x76_c00456{left:715.500000px;}
.xeb_c00456{left:716.580000px;}
.x33_c00456{left:721.500000px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.ls0_c00456{letter-spacing:0.000000pt;}
.ws2_c00456{word-spacing:-5.113209pt;}
.ws1_c00456{word-spacing:-4.236568pt;}
.ws0_c00456{word-spacing:-3.887238pt;}
.ws3_c00456{word-spacing:0.000000pt;}
.fs8_c00456{font-size:3.040000pt;}
.fs7_c00456{font-size:12.106667pt;}
.fs3_c00456{font-size:16.640000pt;}
.fs0_c00456{font-size:18.133333pt;}
.fs6_c00456{font-size:22.666667pt;}
.fs1_c00456{font-size:25.706667pt;}
.fs5_c00456{font-size:28.746667pt;}
.fs2_c00456{font-size:31.733333pt;}
.fs4_c00456{font-size:34.773333pt;}
.y0_c00456{bottom:0.000000pt;}
.yc9_c00456{bottom:225.106667pt;}
.yc8_c00456{bottom:226.266667pt;}
.yca_c00456{bottom:226.440000pt;}
.yc7_c00456{bottom:227.026667pt;}
.ycb_c00456{bottom:227.400000pt;}
.yc3_c00456{bottom:241.693333pt;}
.yc4_c00456{bottom:242.440000pt;}
.yc6_c00456{bottom:243.773333pt;}
.yc2_c00456{bottom:244.360000pt;}
.yc5_c00456{bottom:245.693333pt;}
.ybe_c00456{bottom:259.773333pt;}
.ybd_c00456{bottom:260.933333pt;}
.yc1_c00456{bottom:261.106667pt;}
.ybc_c00456{bottom:261.693333pt;}
.ybb_c00456{bottom:261.893333pt;}
.ybf_c00456{bottom:262.640000pt;}
.yc0_c00456{bottom:263.026667pt;}
.yb9_c00456{bottom:278.066667pt;}
.yb6_c00456{bottom:278.440000pt;}
.yb8_c00456{bottom:279.026667pt;}
.yb5_c00456{bottom:279.226667pt;}
.yba_c00456{bottom:279.973333pt;}
.yb7_c00456{bottom:280.360000pt;}
.yb2_c00456{bottom:295.773333pt;}
.yb4_c00456{bottom:296.733333pt;}
.yb3_c00456{bottom:297.306667pt;}
.yb0_c00456{bottom:297.693333pt;}
.yb1_c00456{bottom:297.706667pt;}
.yaf_c00456{bottom:315.026667pt;}
.yab_c00456{bottom:330.440000pt;}
.yae_c00456{bottom:331.226667pt;}
.yad_c00456{bottom:331.400000pt;}
.yac_c00456{bottom:332.360000pt;}
.ya8_c00456{bottom:347.773333pt;}
.yaa_c00456{bottom:348.560000pt;}
.ya7_c00456{bottom:348.733333pt;}
.ya9_c00456{bottom:349.693333pt;}
.ya6_c00456{bottom:365.106667pt;}
.ya4_c00456{bottom:367.026667pt;}
.ya5_c00456{bottom:368.373333pt;}
.ya2_c00456{bottom:383.773333pt;}
.ya3_c00456{bottom:384.360000pt;}
.ya0_c00456{bottom:384.560000pt;}
.y9f_c00456{bottom:385.693333pt;}
.ya1_c00456{bottom:385.706667pt;}
.y9e_c00456{bottom:400.360000pt;}
.y9d_c00456{bottom:400.733333pt;}
.y9b_c00456{bottom:401.106667pt;}
.y9c_c00456{bottom:403.040000pt;}
.y9a_c00456{bottom:418.440000pt;}
.y99_c00456{bottom:419.226667pt;}
.y97_c00456{bottom:419.400000pt;}
.y98_c00456{bottom:419.973333pt;}
.y96_c00456{bottom:420.360000pt;}
.y91_c00456{bottom:435.773333pt;}
.y94_c00456{bottom:436.733333pt;}
.y93_c00456{bottom:437.693333pt;}
.y92_c00456{bottom:437.706667pt;}
.y95_c00456{bottom:437.893333pt;}
.y90_c00456{bottom:455.973333pt;}
.y8a_c00456{bottom:456.733333pt;}
.y8d_c00456{bottom:456.933333pt;}
.y8c_c00456{bottom:457.693333pt;}
.y8e_c00456{bottom:458.640000pt;}
.y8b_c00456{bottom:458.840000pt;}
.y8f_c00456{bottom:459.600000pt;}
.y89_c00456{bottom:474.066667pt;}
.y86_c00456{bottom:475.026667pt;}
.y87_c00456{bottom:475.226667pt;}
.y88_c00456{bottom:476.933333pt;}
.y85_c00456{bottom:486.066667pt;}
.y81_c00456{bottom:486.640000pt;}
.y7f_c00456{bottom:487.400000pt;}
.y84_c00456{bottom:487.600000pt;}
.y80_c00456{bottom:488.360000pt;}
.y83_c00456{bottom:488.560000pt;}
.y82_c00456{bottom:490.266667pt;}
.y7e_c00456{bottom:509.106667pt;}
.y7b_c00456{bottom:510.066667pt;}
.y7d_c00456{bottom:510.266667pt;}
.y7c_c00456{bottom:511.026667pt;}
.y7a_c00456{bottom:541.893333pt;}
.y79_c00456{bottom:543.026667pt;}
.y76_c00456{bottom:556.360000pt;}
.y78_c00456{bottom:557.106667pt;}
.y73_c00456{bottom:557.306667pt;}
.y75_c00456{bottom:558.440000pt;}
.y77_c00456{bottom:559.026667pt;}
.y74_c00456{bottom:559.226667pt;}
.y72_c00456{bottom:560.360000pt;}
.y70_c00456{bottom:573.693333pt;}
.y6f_c00456{bottom:575.773333pt;}
.y71_c00456{bottom:576.360000pt;}
.y6d_c00456{bottom:577.693333pt;}
.y6e_c00456{bottom:578.640000pt;}
.y68_c00456{bottom:593.106667pt;}
.y6c_c00456{bottom:593.893333pt;}
.y6b_c00456{bottom:594.066667pt;}
.y69_c00456{bottom:595.026667pt;}
.y6a_c00456{bottom:595.226667pt;}
.y63_c00456{bottom:611.773333pt;}
.y64_c00456{bottom:612.360000pt;}
.y67_c00456{bottom:612.560000pt;}
.y65_c00456{bottom:613.306667pt;}
.y66_c00456{bottom:613.693333pt;}
.y62_c00456{bottom:627.773333pt;}
.y61_c00456{bottom:629.693333pt;}
.y5e_c00456{bottom:645.106667pt;}
.y5f_c00456{bottom:646.066667pt;}
.y5a_c00456{bottom:646.440000pt;}
.y5b_c00456{bottom:647.026667pt;}
.y5d_c00456{bottom:647.226667pt;}
.y60_c00456{bottom:647.973333pt;}
.y5c_c00456{bottom:648.360000pt;}
.y55_c00456{bottom:663.773333pt;}
.y54_c00456{bottom:664.360000pt;}
.y59_c00456{bottom:664.560000pt;}
.y57_c00456{bottom:664.733333pt;}
.y58_c00456{bottom:665.306667pt;}
.y56_c00456{bottom:665.693333pt;}
.y50_c00456{bottom:681.106667pt;}
.y53_c00456{bottom:681.893333pt;}
.y52_c00456{bottom:682.640000pt;}
.y51_c00456{bottom:683.026667pt;}
.y4e_c00456{bottom:698.440000pt;}
.y4d_c00456{bottom:700.360000pt;}
.y4f_c00456{bottom:701.306667pt;}
.y4b_c00456{bottom:715.773333pt;}
.y4a_c00456{bottom:716.733333pt;}
.y48_c00456{bottom:717.693333pt;}
.y49_c00456{bottom:717.893333pt;}
.y4c_c00456{bottom:718.640000pt;}
.y46_c00456{bottom:732.360000pt;}
.y44_c00456{bottom:734.066667pt;}
.y45_c00456{bottom:735.026667pt;}
.y47_c00456{bottom:735.973333pt;}
.y43_c00456{bottom:749.693333pt;}
.y42_c00456{bottom:751.773333pt;}
.y41_c00456{bottom:753.306667pt;}
.y40_c00456{bottom:753.693333pt;}
.y3e_c00456{bottom:767.773333pt;}
.y3c_c00456{bottom:769.106667pt;}
.y3f_c00456{bottom:769.693333pt;}
.y3d_c00456{bottom:769.893333pt;}
.y3b_c00456{bottom:771.026667pt;}
.y3a_c00456{bottom:785.106667pt;}
.y36_c00456{bottom:786.440000pt;}
.y39_c00456{bottom:787.226667pt;}
.y37_c00456{bottom:787.973333pt;}
.y38_c00456{bottom:788.360000pt;}
.y32_c00456{bottom:803.400000pt;}
.y33_c00456{bottom:803.773333pt;}
.y35_c00456{bottom:804.360000pt;}
.y31_c00456{bottom:804.560000pt;}
.y2f_c00456{bottom:804.733333pt;}
.y34_c00456{bottom:805.306667pt;}
.y30_c00456{bottom:805.693333pt;}
.y29_c00456{bottom:819.026667pt;}
.y2b_c00456{bottom:820.733333pt;}
.y2c_c00456{bottom:821.106667pt;}
.y2e_c00456{bottom:821.693333pt;}
.y2a_c00456{bottom:821.893333pt;}
.y2d_c00456{bottom:822.640000pt;}
.y28_c00456{bottom:823.026667pt;}
.y27_c00456{bottom:837.106667pt;}
.y23_c00456{bottom:837.306667pt;}
.y25_c00456{bottom:838.440000pt;}
.y26_c00456{bottom:839.400000pt;}
.y24_c00456{bottom:840.360000pt;}
.y1f_c00456{bottom:855.026667pt;}
.y1d_c00456{bottom:855.773333pt;}
.y20_c00456{bottom:856.733333pt;}
.y22_c00456{bottom:857.306667pt;}
.y21_c00456{bottom:857.693333pt;}
.y1e_c00456{bottom:857.893333pt;}
.y1a_c00456{bottom:873.106667pt;}
.y1c_c00456{bottom:873.893333pt;}
.y19_c00456{bottom:875.026667pt;}
.y1b_c00456{bottom:875.226667pt;}
.y18_c00456{bottom:875.973333pt;}
.y16_c00456{bottom:889.693333pt;}
.y12_c00456{bottom:890.440000pt;}
.y17_c00456{bottom:891.400000pt;}
.y14_c00456{bottom:891.773333pt;}
.y15_c00456{bottom:892.360000pt;}
.y13_c00456{bottom:893.693333pt;}
.y11_c00456{bottom:907.026667pt;}
.ye_c00456{bottom:907.773333pt;}
.y10_c00456{bottom:907.973333pt;}
.yc_c00456{bottom:909.693333pt;}
.yf_c00456{bottom:909.893333pt;}
.yd_c00456{bottom:910.640000pt;}
.ya_c00456{bottom:924.360000pt;}
.y9_c00456{bottom:926.066667pt;}
.y7_c00456{bottom:926.440000pt;}
.y8_c00456{bottom:927.026667pt;}
.yb_c00456{bottom:928.360000pt;}
.y6_c00456{bottom:942.826667pt;}
.y3_c00456{bottom:943.773333pt;}
.y5_c00456{bottom:944.560000pt;}
.y4_c00456{bottom:945.693333pt;}
.y2_c00456{bottom:976.360000pt;}
.y1_c00456{bottom:979.600000pt;}
.h9_c00456{height:3.739141pt;}
.h8_c00456{height:14.890964pt;}
.h4_c00456{height:20.466875pt;}
.h1_c00456{height:22.303646pt;}
.h7_c00456{height:27.879557pt;}
.h2_c00456{height:31.618698pt;}
.h6_c00456{height:35.357839pt;}
.h3_c00456{height:39.031380pt;}
.h5_c00456{height:42.770521pt;}
.h0_c00456{height:1186.666667pt;}
.w0_c00456{width:782.666667pt;}
.x0_c00456{left:0.000000pt;}
.xd_c00456{left:134.666667pt;}
.x86_c00456{left:135.626667pt;}
.xa6_c00456{left:136.960000pt;}
.xcf_c00456{left:148.000000pt;}
.x1f_c00456{left:148.960000pt;}
.x3_c00456{left:150.293333pt;}
.x4d_c00456{left:153.333333pt;}
.xb1_c00456{left:155.626667pt;}
.xf7_c00456{left:160.960000pt;}
.xf1_c00456{left:165.333333pt;}
.x68_c00456{left:166.666667pt;}
.x17_c00456{left:172.000000pt;}
.x34_c00456{left:176.000000pt;}
.x26_c00456{left:178.293333pt;}
.xaa_c00456{left:180.000000pt;}
.x41_c00456{left:184.000000pt;}
.xa7_c00456{left:185.333333pt;}
.xd4_c00456{left:188.373333pt;}
.xa0_c00456{left:189.706667pt;}
.xc4_c00456{left:192.000000pt;}
.x4e_c00456{left:193.333333pt;}
.x27_c00456{left:196.000000pt;}
.xab_c00456{left:197.333333pt;}
.x18_c00456{left:198.666667pt;}
.x42_c00456{left:200.000000pt;}
.xe_c00456{left:201.333333pt;}
.x94_c00456{left:203.426667pt;}
.xd0_c00456{left:205.333333pt;}
.xc0_c00456{left:206.666667pt;}
.x77_c00456{left:208.000000pt;}
.x87_c00456{left:208.960000pt;}
.x60_c00456{left:210.293333pt;}
.x43_c00456{left:214.666667pt;}
.xe4_c00456{left:216.000000pt;}
.x95_c00456{left:217.333333pt;}
.x73_c00456{left:219.626667pt;}
.xdd_c00456{left:221.333333pt;}
.x4_c00456{left:222.666667pt;}
.xc1_c00456{left:226.666667pt;}
.xf2_c00456{left:228.000000pt;}
.xb2_c00456{left:228.960000pt;}
.x78_c00456{left:230.293333pt;}
.xfa_c00456{left:231.626667pt;}
.x69_c00456{left:235.626667pt;}
.x35_c00456{left:237.333333pt;}
.xf3_c00456{left:240.000000pt;}
.x57_c00456{left:241.333333pt;}
.x28_c00456{left:243.626667pt;}
.x19_c00456{left:245.333333pt;}
.xdb_c00456{left:248.000000pt;}
.x7c_c00456{left:249.706667pt;}
.x61_c00456{left:252.000000pt;}
.x6a_c00456{left:253.333333pt;}
.x36_c00456{left:256.000000pt;}
.xf_c00456{left:259.040000pt;}
.xa1_c00456{left:260.000000pt;}
.x20_c00456{left:261.333333pt;}
.x4f_c00456{left:262.666667pt;}
.x9b_c00456{left:264.373333pt;}
.xc2_c00456{left:266.293333pt;}
.x1a_c00456{left:268.373333pt;}
.x44_c00456{left:269.333333pt;}
.xd1_c00456{left:273.333333pt;}
.x37_c00456{left:276.373333pt;}
.x50_c00456{left:277.706667pt;}
.xf8_c00456{left:280.000000pt;}
.x29_c00456{left:281.333333pt;}
.x8d_c00456{left:284.373333pt;}
.x62_c00456{left:285.706667pt;}
.x74_c00456{left:286.666667pt;}
.xe0_c00456{left:287.626667pt;}
.x5_c00456{left:291.626667pt;}
.xd5_c00456{left:293.333333pt;}
.xc3_c00456{left:294.666667pt;}
.x51_c00456{left:296.373333pt;}
.xe5_c00456{left:300.373333pt;}
.x1b_c00456{left:302.666667pt;}
.x79_c00456{left:303.626667pt;}
.x96_c00456{left:307.040000pt;}
.x38_c00456{left:308.000000pt;}
.x7d_c00456{left:309.133333pt;}
.x8e_c00456{left:312.373333pt;}
.xcc_c00456{left:313.706667pt;}
.x63_c00456{left:314.666667pt;}
.x10_c00456{left:316.373333pt;}
.x58_c00456{left:318.293333pt;}
.xd9_c00456{left:321.333333pt;}
.x6b_c00456{left:322.293333pt;}
.x64_c00456{left:324.000000pt;}
.xb3_c00456{left:326.666667pt;}
.x97_c00456{left:330.666667pt;}
.xa8_c00456{left:331.626667pt;}
.x45_c00456{left:332.960000pt;}
.x1c_c00456{left:334.666667pt;}
.x39_c00456{left:338.666667pt;}
.xba_c00456{left:340.373333pt;}
.xac_c00456{left:341.333333pt;}
.xdc_c00456{left:342.293333pt;}
.x7e_c00456{left:345.333333pt;}
.xb4_c00456{left:347.626667pt;}
.x2a_c00456{left:349.333333pt;}
.x9c_c00456{left:350.666667pt;}
.x11_c00456{left:352.373333pt;}
.x1d_c00456{left:354.293333pt;}
.x3a_c00456{left:356.373333pt;}
.xd2_c00456{left:357.333333pt;}
.x65_c00456{left:359.040000pt;}
.x98_c00456{left:360.000000pt;}
.x1_c00456{left:361.333333pt;}
.x46_c00456{left:362.666667pt;}
.x6_c00456{left:364.000000pt;}
.x2b_c00456{left:365.333333pt;}
.xcd_c00456{left:368.373333pt;}
.x1e_c00456{left:370.666667pt;}
.x7a_c00456{left:372.373333pt;}
.xbb_c00456{left:374.666667pt;}
.x8f_c00456{left:376.000000pt;}
.x75_c00456{left:376.960000pt;}
.x7f_c00456{left:379.040000pt;}
.xe6_c00456{left:380.373333pt;}
.xe1_c00456{left:384.000000pt;}
.xad_c00456{left:385.706667pt;}
.x47_c00456{left:388.000000pt;}
.x59_c00456{left:388.960000pt;}
.xa2_c00456{left:391.040000pt;}
.x3b_c00456{left:392.373333pt;}
.x2c_c00456{left:393.706667pt;}
.x6c_c00456{left:395.626667pt;}
.xc5_c00456{left:396.960000pt;}
.x9d_c00456{left:398.293333pt;}
.x80_c00456{left:404.000000pt;}
.x7_c00456{left:407.040000pt;}
.x5a_c00456{left:408.373333pt;}
.xda_c00456{left:410.666667pt;}
.xe7_c00456{left:412.000000pt;}
.x52_c00456{left:412.960000pt;}
.xc6_c00456{left:416.373333pt;}
.xec_c00456{left:418.293333pt;}
.xb5_c00456{left:420.373333pt;}
.x88_c00456{left:422.666667pt;}
.x12_c00456{left:425.333333pt;}
.xe8_c00456{left:426.293333pt;}
.x3c_c00456{left:428.373333pt;}
.x99_c00456{left:429.333333pt;}
.x53_c00456{left:431.040000pt;}
.x8_c00456{left:434.293333pt;}
.xc7_c00456{left:438.666667pt;}
.xd6_c00456{left:439.626667pt;}
.x9e_c00456{left:441.333333pt;}
.xbc_c00456{left:442.666667pt;}
.x48_c00456{left:444.000000pt;}
.xf9_c00456{left:444.960000pt;}
.x90_c00456{left:446.666667pt;}
.x89_c00456{left:448.000000pt;}
.x2d_c00456{left:450.293333pt;}
.x81_c00456{left:451.626667pt;}
.xae_c00456{left:452.960000pt;}
.x9a_c00456{left:454.666667pt;}
.x9_c00456{left:456.000000pt;}
.x66_c00456{left:458.666667pt;}
.xc8_c00456{left:460.000000pt;}
.x21_c00456{left:462.293333pt;}
.x3d_c00456{left:465.333333pt;}
.x13_c00456{left:467.240000pt;}
.x82_c00456{left:471.040000pt;}
.x7b_c00456{left:473.706667pt;}
.x6d_c00456{left:475.800000pt;}
.xf4_c00456{left:476.960000pt;}
.xa3_c00456{left:478.666667pt;}
.xce_c00456{left:480.960000pt;}
.x22_c00456{left:483.040000pt;}
.x5b_c00456{left:484.000000pt;}
.xb6_c00456{left:485.333333pt;}
.xfb_c00456{left:487.040000pt;}
.xa9_c00456{left:488.000000pt;}
.x91_c00456{left:489.706667pt;}
.x2e_c00456{left:491.626667pt;}
.x8a_c00456{left:492.960000pt;}
.xd7_c00456{left:495.040000pt;}
.xa_c00456{left:497.333333pt;}
.x83_c00456{left:499.040000pt;}
.x14_c00456{left:500.000000pt;}
.x49_c00456{left:502.666667pt;}
.xc9_c00456{left:504.000000pt;}
.xee_c00456{left:505.333333pt;}
.x2f_c00456{left:509.706667pt;}
.x23_c00456{left:511.040000pt;}
.x6e_c00456{left:513.333333pt;}
.xe2_c00456{left:515.040000pt;}
.xa4_c00456{left:516.373333pt;}
.x92_c00456{left:517.333333pt;}
.x54_c00456{left:518.666667pt;}
.xef_c00456{left:520.000000pt;}
.xd8_c00456{left:522.293333pt;}
.xb7_c00456{left:526.293333pt;}
.x15_c00456{left:529.706667pt;}
.x3e_c00456{left:530.666667pt;}
.x6f_c00456{left:532.373333pt;}
.xed_c00456{left:534.293333pt;}
.x4a_c00456{left:536.373333pt;}
.xca_c00456{left:538.293333pt;}
.x8b_c00456{left:541.333333pt;}
.xe9_c00456{left:542.666667pt;}
.xf0_c00456{left:544.000000pt;}
.xf5_c00456{left:545.333333pt;}
.x30_c00456{left:546.666667pt;}
.xb8_c00456{left:548.000000pt;}
.xaf_c00456{left:549.706667pt;}
.xd3_c00456{left:551.040000pt;}
.xde_c00456{left:552.000000pt;}
.x24_c00456{left:554.666667pt;}
.xb_c00456{left:556.000000pt;}
.x70_c00456{left:557.333333pt;}
.x93_c00456{left:558.666667pt;}
.x84_c00456{left:560.000000pt;}
.x5c_c00456{left:561.333333pt;}
.x4b_c00456{left:567.040000pt;}
.xdf_c00456{left:570.293333pt;}
.xa5_c00456{left:573.333333pt;}
.xbd_c00456{left:574.293333pt;}
.x5d_c00456{left:577.333333pt;}
.x31_c00456{left:579.626667pt;}
.x85_c00456{left:582.293333pt;}
.xfc_c00456{left:583.626667pt;}
.x67_c00456{left:584.960000pt;}
.x55_c00456{left:587.040000pt;}
.x71_c00456{left:589.333333pt;}
.xc_c00456{left:590.666667pt;}
.x4c_c00456{left:592.373333pt;}
.xe3_c00456{left:593.333333pt;}
.xbe_c00456{left:595.040000pt;}
.x3f_c00456{left:597.333333pt;}
.x16_c00456{left:598.293333pt;}
.xea_c00456{left:600.000000pt;}
.x8c_c00456{left:600.960000pt;}
.x9f_c00456{left:605.333333pt;}
.x5e_c00456{left:606.666667pt;}
.xb0_c00456{left:609.333333pt;}
.xf6_c00456{left:610.293333pt;}
.xcb_c00456{left:611.626667pt;}
.xb9_c00456{left:614.293333pt;}
.x32_c00456{left:620.000000pt;}
.xbf_c00456{left:621.706667pt;}
.x40_c00456{left:623.040000pt;}
.x2_c00456{left:626.666667pt;}
.x25_c00456{left:628.373333pt;}
.x72_c00456{left:629.706667pt;}
.x5f_c00456{left:632.000000pt;}
.x56_c00456{left:632.960000pt;}
.x76_c00456{left:636.000000pt;}
.xeb_c00456{left:636.960000pt;}
.x33_c00456{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d0aeeabc2482147b9640fffd.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mbe_c00457{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00457{transform:matrix(0.276457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276457,0.000000,0.000000,0.250000,0,0);}
.m81_c00457{transform:matrix(0.348548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348548,0.000000,0.000000,0.250000,0,0);}
.m2a_c00457{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.me0_c00457{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m47_c00457{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m20_c00457{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m66_c00457{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.m1c_c00457{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m6_c00457{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m2f_c00457{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m0_c00457{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m4d_c00457{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m71_c00457{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m86_c00457{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m88_c00457{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m5b_c00457{transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);}
.ma2_c00457{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.md1_c00457{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m55_c00457{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m9c_c00457{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.mcd_c00457{transform:matrix(0.406058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406058,0.000000,0.000000,0.250000,0,0);}
.m75_c00457{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m44_c00457{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.md9_c00457{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m7d_c00457{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.me2_c00457{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mc8_c00457{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m72_c00457{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m6d_c00457{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mca_c00457{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.ma_c00457{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m5f_c00457{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m63_c00457{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m1d_c00457{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m51_c00457{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m57_c00457{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m16_c00457{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m89_c00457{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m24_c00457{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m52_c00457{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m85_c00457{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m90_c00457{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m61_c00457{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m70_c00457{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m45_c00457{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m69_c00457{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m43_c00457{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m34_c00457{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mc4_c00457{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.md_c00457{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m8b_c00457{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m73_c00457{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m9e_c00457{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.ma5_c00457{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m5d_c00457{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mbb_c00457{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m7a_c00457{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m7f_c00457{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mc_c00457{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m25_c00457{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m7e_c00457{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.mc0_c00457{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m23_c00457{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.m54_c00457{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m59_c00457{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m92_c00457{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m10_c00457{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.me_c00457{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.m9b_c00457{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.md4_c00457{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m3a_c00457{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.md8_c00457{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mb6_c00457{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m6e_c00457{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m6f_c00457{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.md3_c00457{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.mb3_c00457{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m41_c00457{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m27_c00457{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.md0_c00457{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.mdc_c00457{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.mdb_c00457{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mdd_c00457{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m64_c00457{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m80_c00457{transform:matrix(0.482773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482773,0.000000,0.000000,0.250000,0,0);}
.mcc_c00457{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m3e_c00457{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.maf_c00457{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mab_c00457{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.maa_c00457{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m84_c00457{transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);}
.mb0_c00457{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mb7_c00457{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.m8d_c00457{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m4b_c00457{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m56_c00457{transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);}
.m99_c00457{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m7_c00457{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.ma9_c00457{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m2d_c00457{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_c00457{transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);}
.m6c_c00457{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m9a_c00457{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m2c_c00457{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m4a_c00457{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m98_c00457{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m65_c00457{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m22_c00457{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m8e_c00457{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m76_c00457{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m32_c00457{transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);}
.mc6_c00457{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m1b_c00457{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m2_c00457{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m8_c00457{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.md5_c00457{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.mc2_c00457{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m17_c00457{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m14_c00457{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mc1_c00457{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m50_c00457{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m35_c00457{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mcb_c00457{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mce_c00457{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m78_c00457{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m6b_c00457{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.ma8_c00457{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m46_c00457{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m9f_c00457{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m82_c00457{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m4_c00457{transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);}
.m13_c00457{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m26_c00457{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m33_c00457{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m12_c00457{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m4f_c00457{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m4e_c00457{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m40_c00457{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mc5_c00457{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m7b_c00457{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m11_c00457{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.ma0_c00457{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m9d_c00457{transform:matrix(0.539889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539889,0.000000,0.000000,0.250000,0,0);}
.m49_c00457{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m5_c00457{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m37_c00457{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m68_c00457{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m1e_c00457{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m95_c00457{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.md2_c00457{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m39_c00457{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.mb1_c00457{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m79_c00457{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m18_c00457{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mcf_c00457{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mb8_c00457{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mc3_c00457{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m91_c00457{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m4c_c00457{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m9_c00457{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m48_c00457{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.ma3_c00457{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mc9_c00457{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mb4_c00457{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m8a_c00457{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);}
.m3d_c00457{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m1a_c00457{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.ma7_c00457{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m31_c00457{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.mb9_c00457{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mbd_c00457{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.ma6_c00457{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m30_c00457{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m29_c00457{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.md7_c00457{transform:matrix(0.572356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572356,0.000000,0.000000,0.250000,0,0);}
.mda_c00457{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.mdf_c00457{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m74_c00457{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m67_c00457{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.md6_c00457{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m58_c00457{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m21_c00457{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m8c_c00457{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m94_c00457{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m53_c00457{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mf_c00457{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m5c_c00457{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m77_c00457{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);}
.mb2_c00457{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m2e_c00457{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mbf_c00457{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m97_c00457{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m3f_c00457{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m6a_c00457{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m1_c00457{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_c00457{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);}
.m36_c00457{transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);}
.m83_c00457{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mad_c00457{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m19_c00457{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.mae_c00457{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.mde_c00457{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.mac_c00457{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m1f_c00457{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.ma1_c00457{transform:matrix(0.669412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669412,0.000000,0.000000,0.250000,0,0);}
.m5a_c00457{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m60_c00457{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.mba_c00457{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.me1_c00457{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.ma4_c00457{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m96_c00457{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m5e_c00457{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.mc7_c00457{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m28_c00457{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m87_c00457{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m3_c00457{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m3c_c00457{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m15_c00457{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m3b_c00457{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m7c_c00457{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mb_c00457{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m38_c00457{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m8f_c00457{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.mb5_c00457{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m42_c00457{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m62_c00457{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,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:-9.216610px;}
.ws1_c00457{word-spacing:-7.448345px;}
.ws3_c00457{word-spacing:0.000000px;}
.ws2_c00457{word-spacing:1.201375px;}
.fc0_c00457{color:transparent;}
.fs6_c00457{font-size:3.420000px;}
.fs3_c00457{font-size:18.720000px;}
.fs1_c00457{font-size:20.400000px;}
.fs4_c00457{font-size:25.500000px;}
.fs2_c00457{font-size:28.920000px;}
.fs5_c00457{font-size:32.340000px;}
.fs0_c00457{font-size:35.700000px;}
.fs7_c00457{font-size:39.120000px;}
.y0_c00457{bottom:0.000000px;}
.yc3_c00457{bottom:247.470000px;}
.yc6_c00457{bottom:248.745000px;}
.yc8_c00457{bottom:250.245000px;}
.yc5_c00457{bottom:250.905000px;}
.yc2_c00457{bottom:250.920000px;}
.yc9_c00457{bottom:251.130000px;}
.yc4_c00457{bottom:251.970000px;}
.yc7_c00457{bottom:252.405000px;}
.ybb_c00457{bottom:267.405000px;}
.yb8_c00457{bottom:268.245000px;}
.ybf_c00457{bottom:268.470000px;}
.ybe_c00457{bottom:268.905000px;}
.yb9_c00457{bottom:269.325000px;}
.yc1_c00457{bottom:269.745000px;}
.yba_c00457{bottom:270.405000px;}
.ybc_c00457{bottom:270.825000px;}
.ybd_c00457{bottom:271.905000px;}
.yc0_c00457{bottom:271.920000px;}
.yb5_c00457{bottom:286.905000px;}
.yb6_c00457{bottom:287.325000px;}
.yb3_c00457{bottom:287.970000px;}
.yb2_c00457{bottom:289.245000px;}
.yb1_c00457{bottom:289.905000px;}
.yb7_c00457{bottom:290.325000px;}
.yb4_c00457{bottom:291.405000px;}
.yb0_c00457{bottom:308.745000px;}
.yaf_c00457{bottom:310.470000px;}
.yae_c00457{bottom:310.905000px;}
.yab_c00457{bottom:328.245000px;}
.yac_c00457{bottom:330.405000px;}
.yad_c00457{bottom:331.470000px;}
.ya5_c00457{bottom:346.680000px;}
.yaa_c00457{bottom:347.745000px;}
.ya9_c00457{bottom:348.825000px;}
.ya7_c00457{bottom:349.905000px;}
.ya6_c00457{bottom:350.130000px;}
.ya8_c00457{bottom:351.405000px;}
.ya2_c00457{bottom:366.405000px;}
.ya1_c00457{bottom:367.245000px;}
.ya3_c00457{bottom:369.405000px;}
.ya4_c00457{bottom:370.905000px;}
.y9d_c00457{bottom:386.970000px;}
.y9f_c00457{bottom:388.245000px;}
.ya0_c00457{bottom:389.970000px;}
.y9c_c00457{bottom:390.405000px;}
.y9e_c00457{bottom:391.470000px;}
.y97_c00457{bottom:405.405000px;}
.y9b_c00457{bottom:406.905000px;}
.y9a_c00457{bottom:407.745000px;}
.y99_c00457{bottom:408.630000px;}
.y98_c00457{bottom:409.905000px;}
.y94_c00457{bottom:426.180000px;}
.y95_c00457{bottom:427.245000px;}
.y96_c00457{bottom:428.970000px;}
.y93_c00457{bottom:429.405000px;}
.y91_c00457{bottom:446.745000px;}
.y92_c00457{bottom:448.470000px;}
.y90_c00457{bottom:448.905000px;}
.y8c_c00457{bottom:468.405000px;}
.y8d_c00457{bottom:468.630000px;}
.y8e_c00457{bottom:468.825000px;}
.y8f_c00457{bottom:469.905000px;}
.y8b_c00457{bottom:487.245000px;}
.y89_c00457{bottom:487.905000px;}
.y8a_c00457{bottom:489.405000px;}
.y86_c00457{bottom:506.745000px;}
.y88_c00457{bottom:507.405000px;}
.y87_c00457{bottom:507.630000px;}
.y85_c00457{bottom:508.905000px;}
.y83_c00457{bottom:526.245000px;}
.y84_c00457{bottom:527.130000px;}
.y82_c00457{bottom:527.970000px;}
.y80_c00457{bottom:528.405000px;}
.y81_c00457{bottom:529.470000px;}
.y7f_c00457{bottom:545.745000px;}
.y7e_c00457{bottom:546.630000px;}
.y7d_c00457{bottom:546.825000px;}
.y7c_c00457{bottom:547.905000px;}
.y7b_c00457{bottom:567.405000px;}
.y7a_c00457{bottom:583.905000px;}
.y77_c00457{bottom:584.745000px;}
.y78_c00457{bottom:586.905000px;}
.y79_c00457{bottom:587.130000px;}
.y72_c00457{bottom:604.245000px;}
.y74_c00457{bottom:605.325000px;}
.y73_c00457{bottom:606.405000px;}
.y76_c00457{bottom:606.630000px;}
.y75_c00457{bottom:607.470000px;}
.y71_c00457{bottom:623.745000px;}
.y6f_c00457{bottom:623.970000px;}
.y6e_c00457{bottom:625.245000px;}
.y6c_c00457{bottom:625.905000px;}
.y70_c00457{bottom:626.325000px;}
.y6d_c00457{bottom:627.405000px;}
.y65_c00457{bottom:642.405000px;}
.y67_c00457{bottom:643.245000px;}
.y6a_c00457{bottom:644.745000px;}
.y66_c00457{bottom:645.405000px;}
.y6b_c00457{bottom:645.630000px;}
.y69_c00457{bottom:646.470000px;}
.y68_c00457{bottom:646.905000px;}
.y64_c00457{bottom:662.745000px;}
.y63_c00457{bottom:664.245000px;}
.y5f_c00457{bottom:664.905000px;}
.y61_c00457{bottom:665.130000px;}
.y60_c00457{bottom:666.405000px;}
.y62_c00457{bottom:667.470000px;}
.y5d_c00457{bottom:683.745000px;}
.y5c_c00457{bottom:685.905000px;}
.y5e_c00457{bottom:686.970000px;}
.y5a_c00457{bottom:703.245000px;}
.y59_c00457{bottom:704.325000px;}
.y57_c00457{bottom:705.405000px;}
.y5b_c00457{bottom:705.630000px;}
.y58_c00457{bottom:706.470000px;}
.y56_c00457{bottom:721.905000px;}
.y55_c00457{bottom:722.745000px;}
.y54_c00457{bottom:724.905000px;}
.y52_c00457{bottom:743.745000px;}
.y50_c00457{bottom:744.405000px;}
.y51_c00457{bottom:744.630000px;}
.y53_c00457{bottom:745.905000px;}
.y4d_c00457{bottom:760.905000px;}
.y4a_c00457{bottom:761.745000px;}
.y4b_c00457{bottom:763.245000px;}
.y4f_c00457{bottom:764.130000px;}
.y4c_c00457{bottom:765.405000px;}
.y4e_c00457{bottom:766.470000px;}
.y48_c00457{bottom:782.745000px;}
.y46_c00457{bottom:783.405000px;}
.y49_c00457{bottom:783.825000px;}
.y47_c00457{bottom:784.905000px;}
.y45_c00457{bottom:802.245000px;}
.y42_c00457{bottom:802.905000px;}
.y43_c00457{bottom:803.130000px;}
.y44_c00457{bottom:804.405000px;}
.y3e_c00457{bottom:821.745000px;}
.y40_c00457{bottom:823.905000px;}
.y3f_c00457{bottom:823.920000px;}
.y41_c00457{bottom:824.130000px;}
.y3a_c00457{bottom:841.245000px;}
.y3b_c00457{bottom:842.130000px;}
.y3c_c00457{bottom:843.405000px;}
.y3d_c00457{bottom:843.630000px;}
.y33_c00457{bottom:859.245000px;}
.y35_c00457{bottom:860.745000px;}
.y34_c00457{bottom:861.825000px;}
.y39_c00457{bottom:862.245000px;}
.y36_c00457{bottom:862.905000px;}
.y37_c00457{bottom:863.325000px;}
.y38_c00457{bottom:864.405000px;}
.y31_c00457{bottom:880.245000px;}
.y30_c00457{bottom:881.325000px;}
.y32_c00457{bottom:881.745000px;}
.y2e_c00457{bottom:882.405000px;}
.y2f_c00457{bottom:883.905000px;}
.y2b_c00457{bottom:900.825000px;}
.y2d_c00457{bottom:901.245000px;}
.y2a_c00457{bottom:901.905000px;}
.y2c_c00457{bottom:903.405000px;}
.y27_c00457{bottom:920.745000px;}
.y29_c00457{bottom:921.630000px;}
.y28_c00457{bottom:922.905000px;}
.y24_c00457{bottom:939.405000px;}
.y23_c00457{bottom:940.245000px;}
.y20_c00457{bottom:940.905000px;}
.y22_c00457{bottom:941.130000px;}
.y26_c00457{bottom:941.325000px;}
.y21_c00457{bottom:942.405000px;}
.y25_c00457{bottom:943.470000px;}
.y1c_c00457{bottom:959.745000px;}
.y1f_c00457{bottom:959.970000px;}
.y1b_c00457{bottom:961.905000px;}
.y1e_c00457{bottom:962.130000px;}
.y1d_c00457{bottom:962.970000px;}
.y19_c00457{bottom:979.245000px;}
.y1a_c00457{bottom:980.325000px;}
.y17_c00457{bottom:981.405000px;}
.y18_c00457{bottom:982.470000px;}
.y15_c00457{bottom:998.745000px;}
.y12_c00457{bottom:999.630000px;}
.y16_c00457{bottom:1000.050000px;}
.y13_c00457{bottom:1000.905000px;}
.y14_c00457{bottom:1001.130000px;}
.y11_c00457{bottom:1001.970000px;}
.ye_c00457{bottom:1018.245000px;}
.yd_c00457{bottom:1020.405000px;}
.y10_c00457{bottom:1020.630000px;}
.yc_c00457{bottom:1021.470000px;}
.yf_c00457{bottom:1021.905000px;}
.yb_c00457{bottom:1039.245000px;}
.y7_c00457{bottom:1039.470000px;}
.ya_c00457{bottom:1040.130000px;}
.y8_c00457{bottom:1040.325000px;}
.y9_c00457{bottom:1041.405000px;}
.y6_c00457{bottom:1057.905000px;}
.y5_c00457{bottom:1058.745000px;}
.y4_c00457{bottom:1059.630000px;}
.y3_c00457{bottom:1060.905000px;}
.y1_c00457{bottom:1097.745000px;}
.y2_c00457{bottom:1099.050000px;}
.h7_c00457{height:4.206533px;}
.h4_c00457{height:23.025234px;}
.h2_c00457{height:25.091602px;}
.h5_c00457{height:31.364502px;}
.h3_c00457{height:35.571035px;}
.h6_c00457{height:39.777568px;}
.h1_c00457{height:43.910303px;}
.h8_c00457{height:48.116836px;}
.h0_c00457{height:1335.000000px;}
.w0_c00457{width:880.500000px;}
.x0_c00457{left:0.000000px;}
.x1_c00457{left:151.500000px;}
.x3_c00457{left:153.000000px;}
.xee_c00457{left:168.000000px;}
.x19_c00457{left:169.500000px;}
.x27_c00457{left:171.000000px;}
.x4c_c00457{left:172.920000px;}
.x5e_c00457{left:179.580000px;}
.x28_c00457{left:181.920000px;}
.x84_c00457{left:186.000000px;}
.x94_c00457{left:187.920000px;}
.xc5_c00457{left:192.000000px;}
.xbc_c00457{left:193.500000px;}
.x1a_c00457{left:194.580000px;}
.x9c_c00457{left:198.000000px;}
.xe9_c00457{left:199.500000px;}
.x4d_c00457{left:201.420000px;}
.xca_c00457{left:207.000000px;}
.xbd_c00457{left:208.500000px;}
.x10_c00457{left:211.500000px;}
.x3e_c00457{left:212.580000px;}
.x4_c00457{left:216.000000px;}
.x79_c00457{left:217.500000px;}
.x55_c00457{left:219.855000px;}
.x29_c00457{left:223.500000px;}
.x105_c00457{left:224.580000px;}
.x5_c00457{left:226.500000px;}
.xb3_c00457{left:228.000000px;}
.xbe_c00457{left:231.000000px;}
.x5f_c00457{left:232.080000px;}
.x1b_c00457{left:234.000000px;}
.xdc_c00457{left:235.500000px;}
.xfa_c00457{left:237.420000px;}
.xd0_c00457{left:238.920000px;}
.xf5_c00457{left:240.000000px;}
.xe2_c00457{left:241.500000px;}
.x10a_c00457{left:244.920000px;}
.xc6_c00457{left:247.080000px;}
.xd5_c00457{left:249.000000px;}
.xea_c00457{left:253.080000px;}
.xdd_c00457{left:255.420000px;}
.x2a_c00457{left:256.500000px;}
.x72_c00457{left:258.420000px;}
.xef_c00457{left:259.920000px;}
.x11b_c00457{left:261.000000px;}
.x95_c00457{left:262.920000px;}
.x4e_c00457{left:264.000000px;}
.x7a_c00457{left:265.500000px;}
.xbf_c00457{left:267.420000px;}
.x60_c00457{left:268.920000px;}
.xac_c00457{left:270.000000px;}
.xfb_c00457{left:271.500000px;}
.x1c_c00457{left:272.580000px;}
.x68_c00457{left:274.500000px;}
.x7e_c00457{left:277.500000px;}
.x3f_c00457{left:279.000000px;}
.x85_c00457{left:280.500000px;}
.x9d_c00457{left:282.420000px;}
.xd6_c00457{left:283.920000px;}
.x11_c00457{left:285.000000px;}
.x8d_c00457{left:287.580000px;}
.xe0_c00457{left:291.000000px;}
.xa5_c00457{left:294.000000px;}
.x35_c00457{left:295.080000px;}
.x4f_c00457{left:298.500000px;}
.x6_c00457{left:301.500000px;}
.x12_c00457{left:303.000000px;}
.x1d_c00457{left:305.775000px;}
.x8e_c00457{left:307.500000px;}
.x61_c00457{left:309.420000px;}
.x7f_c00457{left:310.920000px;}
.x40_c00457{left:312.000000px;}
.xfc_c00457{left:313.500000px;}
.x7b_c00457{left:315.420000px;}
.x36_c00457{left:316.500000px;}
.x9e_c00457{left:318.000000px;}
.xb4_c00457{left:319.500000px;}
.x86_c00457{left:320.580000px;}
.xd7_c00457{left:322.920000px;}
.xe3_c00457{left:324.000000px;}
.x2b_c00457{left:328.500000px;}
.x113_c00457{left:329.580000px;}
.xd1_c00457{left:331.920000px;}
.x41_c00457{left:333.000000px;}
.x116_c00457{left:334.500000px;}
.xc7_c00457{left:336.000000px;}
.x9f_c00457{left:337.500000px;}
.x7_c00457{left:338.580000px;}
.x7c_c00457{left:340.920000px;}
.x69_c00457{left:342.000000px;}
.x62_c00457{left:343.500000px;}
.x8f_c00457{left:344.580000px;}
.x13_c00457{left:348.420000px;}
.x73_c00457{left:349.500000px;}
.x37_c00457{left:351.000000px;}
.x1e_c00457{left:352.500000px;}
.xb5_c00457{left:357.000000px;}
.xe4_c00457{left:358.080000px;}
.x42_c00457{left:359.145000px;}
.xcb_c00457{left:360.420000px;}
.xad_c00457{left:363.420000px;}
.x50_c00457{left:365.580000px;}
.x8_c00457{left:367.920000px;}
.x117_c00457{left:369.000000px;}
.xe1_c00457{left:370.500000px;}
.xb6_c00457{left:372.000000px;}
.xa0_c00457{left:375.000000px;}
.x90_c00457{left:376.500000px;}
.xeb_c00457{left:378.000000px;}
.x43_c00457{left:379.500000px;}
.x2c_c00457{left:381.000000px;}
.x1f_c00457{left:385.080000px;}
.xfd_c00457{left:387.000000px;}
.xa1_c00457{left:388.080000px;}
.xae_c00457{left:391.500000px;}
.x102_c00457{left:393.420000px;}
.x96_c00457{left:394.920000px;}
.x56_c00457{left:397.080000px;}
.x7d_c00457{left:399.420000px;}
.xc0_c00457{left:402.000000px;}
.x2d_c00457{left:403.080000px;}
.x10b_c00457{left:405.000000px;}
.x87_c00457{left:406.080000px;}
.x2_c00457{left:408.000000px;}
.x51_c00457{left:409.500000px;}
.xf0_c00457{left:412.920000px;}
.x14_c00457{left:414.000000px;}
.x9_c00457{left:415.500000px;}
.x91_c00457{left:417.000000px;}
.x63_c00457{left:418.500000px;}
.x6a_c00457{left:420.420000px;}
.x106_c00457{left:423.000000px;}
.xa6_c00457{left:424.500000px;}
.x57_c00457{left:427.500000px;}
.x38_c00457{left:428.580000px;}
.x2e_c00457{left:430.500000px;}
.xa2_c00457{left:432.000000px;}
.x92_c00457{left:433.920000px;}
.x10c_c00457{left:435.420000px;}
.xc8_c00457{left:436.500000px;}
.xf1_c00457{left:438.000000px;}
.xaf_c00457{left:439.500000px;}
.x58_c00457{left:441.420000px;}
.x74_c00457{left:442.500000px;}
.xd8_c00457{left:444.420000px;}
.x88_c00457{left:445.920000px;}
.xa_c00457{left:448.080000px;}
.x2f_c00457{left:449.145000px;}
.x39_c00457{left:450.420000px;}
.xf6_c00457{left:452.145000px;}
.x52_c00457{left:456.000000px;}
.x20_c00457{left:457.500000px;}
.x6b_c00457{left:460.920000px;}
.x80_c00457{left:462.000000px;}
.x15_c00457{left:465.000000px;}
.x11c_c00457{left:466.920000px;}
.xb7_c00457{left:468.420000px;}
.x30_c00457{left:469.500000px;}
.xd9_c00457{left:470.580000px;}
.x97_c00457{left:473.580000px;}
.xe5_c00457{left:477.420000px;}
.x44_c00457{left:478.500000px;}
.xb_c00457{left:480.000000px;}
.x3a_c00457{left:481.500000px;}
.xd2_c00457{left:483.000000px;}
.x114_c00457{left:484.500000px;}
.x89_c00457{left:486.000000px;}
.x21_c00457{left:487.500000px;}
.x64_c00457{left:489.000000px;}
.x16_c00457{left:490.500000px;}
.x98_c00457{left:493.080000px;}
.x10d_c00457{left:495.000000px;}
.xa7_c00457{left:496.500000px;}
.x111_c00457{left:498.000000px;}
.x45_c00457{left:499.920000px;}
.xc1_c00457{left:502.920000px;}
.xb0_c00457{left:505.080000px;}
.x31_c00457{left:507.000000px;}
.xda_c00457{left:510.000000px;}
.x65_c00457{left:511.500000px;}
.xf2_c00457{left:513.420000px;}
.xd3_c00457{left:514.500000px;}
.x53_c00457{left:515.580000px;}
.xfe_c00457{left:517.500000px;}
.x46_c00457{left:519.855000px;}
.xc_c00457{left:522.000000px;}
.x107_c00457{left:523.500000px;}
.x6c_c00457{left:525.000000px;}
.x32_c00457{left:527.355000px;}
.x115_c00457{left:528.420000px;}
.xa8_c00457{left:529.500000px;}
.xb8_c00457{left:530.580000px;}
.x99_c00457{left:532.920000px;}
.xec_c00457{left:534.000000px;}
.xcc_c00457{left:535.920000px;}
.xff_c00457{left:537.000000px;}
.xe6_c00457{left:538.500000px;}
.xf3_c00457{left:540.000000px;}
.xde_c00457{left:541.080000px;}
.x33_c00457{left:545.580000px;}
.x17_c00457{left:547.080000px;}
.xf7_c00457{left:549.000000px;}
.xc2_c00457{left:550.080000px;}
.x103_c00457{left:552.000000px;}
.x22_c00457{left:553.500000px;}
.x59_c00457{left:554.580000px;}
.xd_c00457{left:556.500000px;}
.x47_c00457{left:557.775000px;}
.x8a_c00457{left:559.500000px;}
.xb9_c00457{left:560.580000px;}
.x6d_c00457{left:564.420000px;}
.xa3_c00457{left:566.355000px;}
.x10f_c00457{left:567.420000px;}
.xe7_c00457{left:568.920000px;}
.x23_c00457{left:571.500000px;}
.x81_c00457{left:572.580000px;}
.x3b_c00457{left:575.580000px;}
.xa9_c00457{left:577.080000px;}
.x18_c00457{left:579.420000px;}
.x8b_c00457{left:580.500000px;}
.x108_c00457{left:581.580000px;}
.xc3_c00457{left:583.500000px;}
.x75_c00457{left:586.920000px;}
.x118_c00457{left:589.500000px;}
.x48_c00457{left:590.580000px;}
.x6e_c00457{left:592.920000px;}
.xd4_c00457{left:594.420000px;}
.xb1_c00457{left:595.920000px;}
.x5a_c00457{left:597.000000px;}
.xc4_c00457{left:600.000000px;}
.xcd_c00457{left:601.500000px;}
.x110_c00457{left:603.000000px;}
.x9a_c00457{left:606.000000px;}
.x54_c00457{left:607.500000px;}
.x119_c00457{left:610.500000px;}
.xc9_c00457{left:612.000000px;}
.x66_c00457{left:613.080000px;}
.x82_c00457{left:615.000000px;}
.x34_c00457{left:616.275000px;}
.x3c_c00457{left:619.080000px;}
.x49_c00457{left:621.000000px;}
.x76_c00457{left:624.000000px;}
.xaa_c00457{left:625.500000px;}
.x100_c00457{left:627.420000px;}
.xe_c00457{left:628.500000px;}
.x6f_c00457{left:630.420000px;}
.x93_c00457{left:631.500000px;}
.xf4_c00457{left:633.000000px;}
.xdf_c00457{left:634.500000px;}
.xce_c00457{left:635.580000px;}
.x5b_c00457{left:637.080000px;}
.xe8_c00457{left:639.000000px;}
.xa4_c00457{left:642.420000px;}
.x4a_c00457{left:643.500000px;}
.xf8_c00457{left:644.580000px;}
.x77_c00457{left:646.080000px;}
.x11a_c00457{left:648.000000px;}
.xba_c00457{left:649.500000px;}
.xb2_c00457{left:651.000000px;}
.x10e_c00457{left:652.080000px;}
.x24_c00457{left:653.580000px;}
.x83_c00457{left:655.080000px;}
.x112_c00457{left:656.580000px;}
.x67_c00457{left:660.000000px;}
.x8c_c00457{left:661.080000px;}
.x4b_c00457{left:663.855000px;}
.x109_c00457{left:665.580000px;}
.x5c_c00457{left:668.775000px;}
.x25_c00457{left:673.920000px;}
.x3d_c00457{left:675.000000px;}
.xed_c00457{left:678.420000px;}
.xcf_c00457{left:681.000000px;}
.xf_c00457{left:687.000000px;}
.x70_c00457{left:688.080000px;}
.x104_c00457{left:689.580000px;}
.xf9_c00457{left:691.920000px;}
.x101_c00457{left:693.000000px;}
.xbb_c00457{left:694.080000px;}
.xdb_c00457{left:696.000000px;}
.x26_c00457{left:700.500000px;}
.xab_c00457{left:703.500000px;}
.x9b_c00457{left:704.580000px;}
.x71_c00457{left:709.920000px;}
.x5d_c00457{left:718.080000px;}
.x78_c00457{left:720.000000px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.ls0_c00457{letter-spacing:0.000000pt;}
.ws0_c00457{word-spacing:-8.192542pt;}
.ws1_c00457{word-spacing:-6.620751pt;}
.ws3_c00457{word-spacing:0.000000pt;}
.ws2_c00457{word-spacing:1.067889pt;}
.fs6_c00457{font-size:3.040000pt;}
.fs3_c00457{font-size:16.640000pt;}
.fs1_c00457{font-size:18.133333pt;}
.fs4_c00457{font-size:22.666667pt;}
.fs2_c00457{font-size:25.706667pt;}
.fs5_c00457{font-size:28.746667pt;}
.fs0_c00457{font-size:31.733333pt;}
.fs7_c00457{font-size:34.773333pt;}
.y0_c00457{bottom:0.000000pt;}
.yc3_c00457{bottom:219.973333pt;}
.yc6_c00457{bottom:221.106667pt;}
.yc8_c00457{bottom:222.440000pt;}
.yc5_c00457{bottom:223.026667pt;}
.yc2_c00457{bottom:223.040000pt;}
.yc9_c00457{bottom:223.226667pt;}
.yc4_c00457{bottom:223.973333pt;}
.yc7_c00457{bottom:224.360000pt;}
.ybb_c00457{bottom:237.693333pt;}
.yb8_c00457{bottom:238.440000pt;}
.ybf_c00457{bottom:238.640000pt;}
.ybe_c00457{bottom:239.026667pt;}
.yb9_c00457{bottom:239.400000pt;}
.yc1_c00457{bottom:239.773333pt;}
.yba_c00457{bottom:240.360000pt;}
.ybc_c00457{bottom:240.733333pt;}
.ybd_c00457{bottom:241.693333pt;}
.yc0_c00457{bottom:241.706667pt;}
.yb5_c00457{bottom:255.026667pt;}
.yb6_c00457{bottom:255.400000pt;}
.yb3_c00457{bottom:255.973333pt;}
.yb2_c00457{bottom:257.106667pt;}
.yb1_c00457{bottom:257.693333pt;}
.yb7_c00457{bottom:258.066667pt;}
.yb4_c00457{bottom:259.026667pt;}
.yb0_c00457{bottom:274.440000pt;}
.yaf_c00457{bottom:275.973333pt;}
.yae_c00457{bottom:276.360000pt;}
.yab_c00457{bottom:291.773333pt;}
.yac_c00457{bottom:293.693333pt;}
.yad_c00457{bottom:294.640000pt;}
.ya5_c00457{bottom:308.160000pt;}
.yaa_c00457{bottom:309.106667pt;}
.ya9_c00457{bottom:310.066667pt;}
.ya7_c00457{bottom:311.026667pt;}
.ya6_c00457{bottom:311.226667pt;}
.ya8_c00457{bottom:312.360000pt;}
.ya2_c00457{bottom:325.693333pt;}
.ya1_c00457{bottom:326.440000pt;}
.ya3_c00457{bottom:328.360000pt;}
.ya4_c00457{bottom:329.693333pt;}
.y9d_c00457{bottom:343.973333pt;}
.y9f_c00457{bottom:345.106667pt;}
.ya0_c00457{bottom:346.640000pt;}
.y9c_c00457{bottom:347.026667pt;}
.y9e_c00457{bottom:347.973333pt;}
.y97_c00457{bottom:360.360000pt;}
.y9b_c00457{bottom:361.693333pt;}
.y9a_c00457{bottom:362.440000pt;}
.y99_c00457{bottom:363.226667pt;}
.y98_c00457{bottom:364.360000pt;}
.y94_c00457{bottom:378.826667pt;}
.y95_c00457{bottom:379.773333pt;}
.y96_c00457{bottom:381.306667pt;}
.y93_c00457{bottom:381.693333pt;}
.y91_c00457{bottom:397.106667pt;}
.y92_c00457{bottom:398.640000pt;}
.y90_c00457{bottom:399.026667pt;}
.y8c_c00457{bottom:416.360000pt;}
.y8d_c00457{bottom:416.560000pt;}
.y8e_c00457{bottom:416.733333pt;}
.y8f_c00457{bottom:417.693333pt;}
.y8b_c00457{bottom:433.106667pt;}
.y89_c00457{bottom:433.693333pt;}
.y8a_c00457{bottom:435.026667pt;}
.y86_c00457{bottom:450.440000pt;}
.y88_c00457{bottom:451.026667pt;}
.y87_c00457{bottom:451.226667pt;}
.y85_c00457{bottom:452.360000pt;}
.y83_c00457{bottom:467.773333pt;}
.y84_c00457{bottom:468.560000pt;}
.y82_c00457{bottom:469.306667pt;}
.y80_c00457{bottom:469.693333pt;}
.y81_c00457{bottom:470.640000pt;}
.y7f_c00457{bottom:485.106667pt;}
.y7e_c00457{bottom:485.893333pt;}
.y7d_c00457{bottom:486.066667pt;}
.y7c_c00457{bottom:487.026667pt;}
.y7b_c00457{bottom:504.360000pt;}
.y7a_c00457{bottom:519.026667pt;}
.y77_c00457{bottom:519.773333pt;}
.y78_c00457{bottom:521.693333pt;}
.y79_c00457{bottom:521.893333pt;}
.y72_c00457{bottom:537.106667pt;}
.y74_c00457{bottom:538.066667pt;}
.y73_c00457{bottom:539.026667pt;}
.y76_c00457{bottom:539.226667pt;}
.y75_c00457{bottom:539.973333pt;}
.y71_c00457{bottom:554.440000pt;}
.y6f_c00457{bottom:554.640000pt;}
.y6e_c00457{bottom:555.773333pt;}
.y6c_c00457{bottom:556.360000pt;}
.y70_c00457{bottom:556.733333pt;}
.y6d_c00457{bottom:557.693333pt;}
.y65_c00457{bottom:571.026667pt;}
.y67_c00457{bottom:571.773333pt;}
.y6a_c00457{bottom:573.106667pt;}
.y66_c00457{bottom:573.693333pt;}
.y6b_c00457{bottom:573.893333pt;}
.y69_c00457{bottom:574.640000pt;}
.y68_c00457{bottom:575.026667pt;}
.y64_c00457{bottom:589.106667pt;}
.y63_c00457{bottom:590.440000pt;}
.y5f_c00457{bottom:591.026667pt;}
.y61_c00457{bottom:591.226667pt;}
.y60_c00457{bottom:592.360000pt;}
.y62_c00457{bottom:593.306667pt;}
.y5d_c00457{bottom:607.773333pt;}
.y5c_c00457{bottom:609.693333pt;}
.y5e_c00457{bottom:610.640000pt;}
.y5a_c00457{bottom:625.106667pt;}
.y59_c00457{bottom:626.066667pt;}
.y57_c00457{bottom:627.026667pt;}
.y5b_c00457{bottom:627.226667pt;}
.y58_c00457{bottom:627.973333pt;}
.y56_c00457{bottom:641.693333pt;}
.y55_c00457{bottom:642.440000pt;}
.y54_c00457{bottom:644.360000pt;}
.y52_c00457{bottom:661.106667pt;}
.y50_c00457{bottom:661.693333pt;}
.y51_c00457{bottom:661.893333pt;}
.y53_c00457{bottom:663.026667pt;}
.y4d_c00457{bottom:676.360000pt;}
.y4a_c00457{bottom:677.106667pt;}
.y4b_c00457{bottom:678.440000pt;}
.y4f_c00457{bottom:679.226667pt;}
.y4c_c00457{bottom:680.360000pt;}
.y4e_c00457{bottom:681.306667pt;}
.y48_c00457{bottom:695.773333pt;}
.y46_c00457{bottom:696.360000pt;}
.y49_c00457{bottom:696.733333pt;}
.y47_c00457{bottom:697.693333pt;}
.y45_c00457{bottom:713.106667pt;}
.y42_c00457{bottom:713.693333pt;}
.y43_c00457{bottom:713.893333pt;}
.y44_c00457{bottom:715.026667pt;}
.y3e_c00457{bottom:730.440000pt;}
.y40_c00457{bottom:732.360000pt;}
.y3f_c00457{bottom:732.373333pt;}
.y41_c00457{bottom:732.560000pt;}
.y3a_c00457{bottom:747.773333pt;}
.y3b_c00457{bottom:748.560000pt;}
.y3c_c00457{bottom:749.693333pt;}
.y3d_c00457{bottom:749.893333pt;}
.y33_c00457{bottom:763.773333pt;}
.y35_c00457{bottom:765.106667pt;}
.y34_c00457{bottom:766.066667pt;}
.y39_c00457{bottom:766.440000pt;}
.y36_c00457{bottom:767.026667pt;}
.y37_c00457{bottom:767.400000pt;}
.y38_c00457{bottom:768.360000pt;}
.y31_c00457{bottom:782.440000pt;}
.y30_c00457{bottom:783.400000pt;}
.y32_c00457{bottom:783.773333pt;}
.y2e_c00457{bottom:784.360000pt;}
.y2f_c00457{bottom:785.693333pt;}
.y2b_c00457{bottom:800.733333pt;}
.y2d_c00457{bottom:801.106667pt;}
.y2a_c00457{bottom:801.693333pt;}
.y2c_c00457{bottom:803.026667pt;}
.y27_c00457{bottom:818.440000pt;}
.y29_c00457{bottom:819.226667pt;}
.y28_c00457{bottom:820.360000pt;}
.y24_c00457{bottom:835.026667pt;}
.y23_c00457{bottom:835.773333pt;}
.y20_c00457{bottom:836.360000pt;}
.y22_c00457{bottom:836.560000pt;}
.y26_c00457{bottom:836.733333pt;}
.y21_c00457{bottom:837.693333pt;}
.y25_c00457{bottom:838.640000pt;}
.y1c_c00457{bottom:853.106667pt;}
.y1f_c00457{bottom:853.306667pt;}
.y1b_c00457{bottom:855.026667pt;}
.y1e_c00457{bottom:855.226667pt;}
.y1d_c00457{bottom:855.973333pt;}
.y19_c00457{bottom:870.440000pt;}
.y1a_c00457{bottom:871.400000pt;}
.y17_c00457{bottom:872.360000pt;}
.y18_c00457{bottom:873.306667pt;}
.y15_c00457{bottom:887.773333pt;}
.y12_c00457{bottom:888.560000pt;}
.y16_c00457{bottom:888.933333pt;}
.y13_c00457{bottom:889.693333pt;}
.y14_c00457{bottom:889.893333pt;}
.y11_c00457{bottom:890.640000pt;}
.ye_c00457{bottom:905.106667pt;}
.yd_c00457{bottom:907.026667pt;}
.y10_c00457{bottom:907.226667pt;}
.yc_c00457{bottom:907.973333pt;}
.yf_c00457{bottom:908.360000pt;}
.yb_c00457{bottom:923.773333pt;}
.y7_c00457{bottom:923.973333pt;}
.ya_c00457{bottom:924.560000pt;}
.y8_c00457{bottom:924.733333pt;}
.y9_c00457{bottom:925.693333pt;}
.y6_c00457{bottom:940.360000pt;}
.y5_c00457{bottom:941.106667pt;}
.y4_c00457{bottom:941.893333pt;}
.y3_c00457{bottom:943.026667pt;}
.y1_c00457{bottom:975.773333pt;}
.y2_c00457{bottom:976.933333pt;}
.h7_c00457{height:3.739141pt;}
.h4_c00457{height:20.466875pt;}
.h2_c00457{height:22.303646pt;}
.h5_c00457{height:27.879557pt;}
.h3_c00457{height:31.618698pt;}
.h6_c00457{height:35.357839pt;}
.h1_c00457{height:39.031380pt;}
.h8_c00457{height:42.770521pt;}
.h0_c00457{height:1186.666667pt;}
.w0_c00457{width:782.666667pt;}
.x0_c00457{left:0.000000pt;}
.x1_c00457{left:134.666667pt;}
.x3_c00457{left:136.000000pt;}
.xee_c00457{left:149.333333pt;}
.x19_c00457{left:150.666667pt;}
.x27_c00457{left:152.000000pt;}
.x4c_c00457{left:153.706667pt;}
.x5e_c00457{left:159.626667pt;}
.x28_c00457{left:161.706667pt;}
.x84_c00457{left:165.333333pt;}
.x94_c00457{left:167.040000pt;}
.xc5_c00457{left:170.666667pt;}
.xbc_c00457{left:172.000000pt;}
.x1a_c00457{left:172.960000pt;}
.x9c_c00457{left:176.000000pt;}
.xe9_c00457{left:177.333333pt;}
.x4d_c00457{left:179.040000pt;}
.xca_c00457{left:184.000000pt;}
.xbd_c00457{left:185.333333pt;}
.x10_c00457{left:188.000000pt;}
.x3e_c00457{left:188.960000pt;}
.x4_c00457{left:192.000000pt;}
.x79_c00457{left:193.333333pt;}
.x55_c00457{left:195.426667pt;}
.x29_c00457{left:198.666667pt;}
.x105_c00457{left:199.626667pt;}
.x5_c00457{left:201.333333pt;}
.xb3_c00457{left:202.666667pt;}
.xbe_c00457{left:205.333333pt;}
.x5f_c00457{left:206.293333pt;}
.x1b_c00457{left:208.000000pt;}
.xdc_c00457{left:209.333333pt;}
.xfa_c00457{left:211.040000pt;}
.xd0_c00457{left:212.373333pt;}
.xf5_c00457{left:213.333333pt;}
.xe2_c00457{left:214.666667pt;}
.x10a_c00457{left:217.706667pt;}
.xc6_c00457{left:219.626667pt;}
.xd5_c00457{left:221.333333pt;}
.xea_c00457{left:224.960000pt;}
.xdd_c00457{left:227.040000pt;}
.x2a_c00457{left:228.000000pt;}
.x72_c00457{left:229.706667pt;}
.xef_c00457{left:231.040000pt;}
.x11b_c00457{left:232.000000pt;}
.x95_c00457{left:233.706667pt;}
.x4e_c00457{left:234.666667pt;}
.x7a_c00457{left:236.000000pt;}
.xbf_c00457{left:237.706667pt;}
.x60_c00457{left:239.040000pt;}
.xac_c00457{left:240.000000pt;}
.xfb_c00457{left:241.333333pt;}
.x1c_c00457{left:242.293333pt;}
.x68_c00457{left:244.000000pt;}
.x7e_c00457{left:246.666667pt;}
.x3f_c00457{left:248.000000pt;}
.x85_c00457{left:249.333333pt;}
.x9d_c00457{left:251.040000pt;}
.xd6_c00457{left:252.373333pt;}
.x11_c00457{left:253.333333pt;}
.x8d_c00457{left:255.626667pt;}
.xe0_c00457{left:258.666667pt;}
.xa5_c00457{left:261.333333pt;}
.x35_c00457{left:262.293333pt;}
.x4f_c00457{left:265.333333pt;}
.x6_c00457{left:268.000000pt;}
.x12_c00457{left:269.333333pt;}
.x1d_c00457{left:271.800000pt;}
.x8e_c00457{left:273.333333pt;}
.x61_c00457{left:275.040000pt;}
.x7f_c00457{left:276.373333pt;}
.x40_c00457{left:277.333333pt;}
.xfc_c00457{left:278.666667pt;}
.x7b_c00457{left:280.373333pt;}
.x36_c00457{left:281.333333pt;}
.x9e_c00457{left:282.666667pt;}
.xb4_c00457{left:284.000000pt;}
.x86_c00457{left:284.960000pt;}
.xd7_c00457{left:287.040000pt;}
.xe3_c00457{left:288.000000pt;}
.x2b_c00457{left:292.000000pt;}
.x113_c00457{left:292.960000pt;}
.xd1_c00457{left:295.040000pt;}
.x41_c00457{left:296.000000pt;}
.x116_c00457{left:297.333333pt;}
.xc7_c00457{left:298.666667pt;}
.x9f_c00457{left:300.000000pt;}
.x7_c00457{left:300.960000pt;}
.x7c_c00457{left:303.040000pt;}
.x69_c00457{left:304.000000pt;}
.x62_c00457{left:305.333333pt;}
.x8f_c00457{left:306.293333pt;}
.x13_c00457{left:309.706667pt;}
.x73_c00457{left:310.666667pt;}
.x37_c00457{left:312.000000pt;}
.x1e_c00457{left:313.333333pt;}
.xb5_c00457{left:317.333333pt;}
.xe4_c00457{left:318.293333pt;}
.x42_c00457{left:319.240000pt;}
.xcb_c00457{left:320.373333pt;}
.xad_c00457{left:323.040000pt;}
.x50_c00457{left:324.960000pt;}
.x8_c00457{left:327.040000pt;}
.x117_c00457{left:328.000000pt;}
.xe1_c00457{left:329.333333pt;}
.xb6_c00457{left:330.666667pt;}
.xa0_c00457{left:333.333333pt;}
.x90_c00457{left:334.666667pt;}
.xeb_c00457{left:336.000000pt;}
.x43_c00457{left:337.333333pt;}
.x2c_c00457{left:338.666667pt;}
.x1f_c00457{left:342.293333pt;}
.xfd_c00457{left:344.000000pt;}
.xa1_c00457{left:344.960000pt;}
.xae_c00457{left:348.000000pt;}
.x102_c00457{left:349.706667pt;}
.x96_c00457{left:351.040000pt;}
.x56_c00457{left:352.960000pt;}
.x7d_c00457{left:355.040000pt;}
.xc0_c00457{left:357.333333pt;}
.x2d_c00457{left:358.293333pt;}
.x10b_c00457{left:360.000000pt;}
.x87_c00457{left:360.960000pt;}
.x2_c00457{left:362.666667pt;}
.x51_c00457{left:364.000000pt;}
.xf0_c00457{left:367.040000pt;}
.x14_c00457{left:368.000000pt;}
.x9_c00457{left:369.333333pt;}
.x91_c00457{left:370.666667pt;}
.x63_c00457{left:372.000000pt;}
.x6a_c00457{left:373.706667pt;}
.x106_c00457{left:376.000000pt;}
.xa6_c00457{left:377.333333pt;}
.x57_c00457{left:380.000000pt;}
.x38_c00457{left:380.960000pt;}
.x2e_c00457{left:382.666667pt;}
.xa2_c00457{left:384.000000pt;}
.x92_c00457{left:385.706667pt;}
.x10c_c00457{left:387.040000pt;}
.xc8_c00457{left:388.000000pt;}
.xf1_c00457{left:389.333333pt;}
.xaf_c00457{left:390.666667pt;}
.x58_c00457{left:392.373333pt;}
.x74_c00457{left:393.333333pt;}
.xd8_c00457{left:395.040000pt;}
.x88_c00457{left:396.373333pt;}
.xa_c00457{left:398.293333pt;}
.x2f_c00457{left:399.240000pt;}
.x39_c00457{left:400.373333pt;}
.xf6_c00457{left:401.906667pt;}
.x52_c00457{left:405.333333pt;}
.x20_c00457{left:406.666667pt;}
.x6b_c00457{left:409.706667pt;}
.x80_c00457{left:410.666667pt;}
.x15_c00457{left:413.333333pt;}
.x11c_c00457{left:415.040000pt;}
.xb7_c00457{left:416.373333pt;}
.x30_c00457{left:417.333333pt;}
.xd9_c00457{left:418.293333pt;}
.x97_c00457{left:420.960000pt;}
.xe5_c00457{left:424.373333pt;}
.x44_c00457{left:425.333333pt;}
.xb_c00457{left:426.666667pt;}
.x3a_c00457{left:428.000000pt;}
.xd2_c00457{left:429.333333pt;}
.x114_c00457{left:430.666667pt;}
.x89_c00457{left:432.000000pt;}
.x21_c00457{left:433.333333pt;}
.x64_c00457{left:434.666667pt;}
.x16_c00457{left:436.000000pt;}
.x98_c00457{left:438.293333pt;}
.x10d_c00457{left:440.000000pt;}
.xa7_c00457{left:441.333333pt;}
.x111_c00457{left:442.666667pt;}
.x45_c00457{left:444.373333pt;}
.xc1_c00457{left:447.040000pt;}
.xb0_c00457{left:448.960000pt;}
.x31_c00457{left:450.666667pt;}
.xda_c00457{left:453.333333pt;}
.x65_c00457{left:454.666667pt;}
.xf2_c00457{left:456.373333pt;}
.xd3_c00457{left:457.333333pt;}
.x53_c00457{left:458.293333pt;}
.xfe_c00457{left:460.000000pt;}
.x46_c00457{left:462.093333pt;}
.xc_c00457{left:464.000000pt;}
.x107_c00457{left:465.333333pt;}
.x6c_c00457{left:466.666667pt;}
.x32_c00457{left:468.760000pt;}
.x115_c00457{left:469.706667pt;}
.xa8_c00457{left:470.666667pt;}
.xb8_c00457{left:471.626667pt;}
.x99_c00457{left:473.706667pt;}
.xec_c00457{left:474.666667pt;}
.xcc_c00457{left:476.373333pt;}
.xff_c00457{left:477.333333pt;}
.xe6_c00457{left:478.666667pt;}
.xf3_c00457{left:480.000000pt;}
.xde_c00457{left:480.960000pt;}
.x33_c00457{left:484.960000pt;}
.x17_c00457{left:486.293333pt;}
.xf7_c00457{left:488.000000pt;}
.xc2_c00457{left:488.960000pt;}
.x103_c00457{left:490.666667pt;}
.x22_c00457{left:492.000000pt;}
.x59_c00457{left:492.960000pt;}
.xd_c00457{left:494.666667pt;}
.x47_c00457{left:495.800000pt;}
.x8a_c00457{left:497.333333pt;}
.xb9_c00457{left:498.293333pt;}
.x6d_c00457{left:501.706667pt;}
.xa3_c00457{left:503.426667pt;}
.x10f_c00457{left:504.373333pt;}
.xe7_c00457{left:505.706667pt;}
.x23_c00457{left:508.000000pt;}
.x81_c00457{left:508.960000pt;}
.x3b_c00457{left:511.626667pt;}
.xa9_c00457{left:512.960000pt;}
.x18_c00457{left:515.040000pt;}
.x8b_c00457{left:516.000000pt;}
.x108_c00457{left:516.960000pt;}
.xc3_c00457{left:518.666667pt;}
.x75_c00457{left:521.706667pt;}
.x118_c00457{left:524.000000pt;}
.x48_c00457{left:524.960000pt;}
.x6e_c00457{left:527.040000pt;}
.xd4_c00457{left:528.373333pt;}
.xb1_c00457{left:529.706667pt;}
.x5a_c00457{left:530.666667pt;}
.xc4_c00457{left:533.333333pt;}
.xcd_c00457{left:534.666667pt;}
.x110_c00457{left:536.000000pt;}
.x9a_c00457{left:538.666667pt;}
.x54_c00457{left:540.000000pt;}
.x119_c00457{left:542.666667pt;}
.xc9_c00457{left:544.000000pt;}
.x66_c00457{left:544.960000pt;}
.x82_c00457{left:546.666667pt;}
.x34_c00457{left:547.800000pt;}
.x3c_c00457{left:550.293333pt;}
.x49_c00457{left:552.000000pt;}
.x76_c00457{left:554.666667pt;}
.xaa_c00457{left:556.000000pt;}
.x100_c00457{left:557.706667pt;}
.xe_c00457{left:558.666667pt;}
.x6f_c00457{left:560.373333pt;}
.x93_c00457{left:561.333333pt;}
.xf4_c00457{left:562.666667pt;}
.xdf_c00457{left:564.000000pt;}
.xce_c00457{left:564.960000pt;}
.x5b_c00457{left:566.293333pt;}
.xe8_c00457{left:568.000000pt;}
.xa4_c00457{left:571.040000pt;}
.x4a_c00457{left:572.000000pt;}
.xf8_c00457{left:572.960000pt;}
.x77_c00457{left:574.293333pt;}
.x11a_c00457{left:576.000000pt;}
.xba_c00457{left:577.333333pt;}
.xb2_c00457{left:578.666667pt;}
.x10e_c00457{left:579.626667pt;}
.x24_c00457{left:580.960000pt;}
.x83_c00457{left:582.293333pt;}
.x112_c00457{left:583.626667pt;}
.x67_c00457{left:586.666667pt;}
.x8c_c00457{left:587.626667pt;}
.x4b_c00457{left:590.093333pt;}
.x109_c00457{left:591.626667pt;}
.x5c_c00457{left:594.466667pt;}
.x25_c00457{left:599.040000pt;}
.x3d_c00457{left:600.000000pt;}
.xed_c00457{left:603.040000pt;}
.xcf_c00457{left:605.333333pt;}
.xf_c00457{left:610.666667pt;}
.x70_c00457{left:611.626667pt;}
.x104_c00457{left:612.960000pt;}
.xf9_c00457{left:615.040000pt;}
.x101_c00457{left:616.000000pt;}
.xbb_c00457{left:616.960000pt;}
.xdb_c00457{left:618.666667pt;}
.x26_c00457{left:622.666667pt;}
.xab_c00457{left:625.333333pt;}
.x9b_c00457{left:626.293333pt;}
.x71_c00457{left:631.040000pt;}
.x5d_c00457{left:638.293333pt;}
.x78_c00457{left:640.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_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_7e0f1ef626e8832174e60a44.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:1.688965;font-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_c00458{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.mc8_c00458{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m95_c00458{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m5_c00458{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m34_c00458{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m2f_c00458{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m45_c00458{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m9d_c00458{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m1d_c00458{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m8f_c00458{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.m43_c00458{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m42_c00458{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.me_c00458{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m37_c00458{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.ma0_c00458{transform:matrix(0.382189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382189,0.000000,0.000000,0.250000,0,0);}
.m5f_c00458{transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);}
.m55_c00458{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m19_c00458{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m7d_c00458{transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);}
.m26_c00458{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m69_c00458{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m79_c00458{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m10_c00458{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m23_c00458{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m35_c00458{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m1b_c00458{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m87_c00458{transform:matrix(0.394555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394555,0.000000,0.000000,0.250000,0,0);}
.m7_c00458{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m1a_c00458{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m75_c00458{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.md4_c00458{transform:matrix(0.401471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401471,0.000000,0.000000,0.250000,0,0);}
.m1f_c00458{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m17_c00458{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m44_c00458{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m8d_c00458{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m31_c00458{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m1e_c00458{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m9_c00458{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m7c_c00458{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m77_c00458{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m30_c00458{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m7b_c00458{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.m12_c00458{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m8a_c00458{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m41_c00458{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m2c_c00458{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.md_c00458{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m5e_c00458{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m92_c00458{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.ma6_c00458{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m90_c00458{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m4f_c00458{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m3e_c00458{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m9c_c00458{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m85_c00458{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mb6_c00458{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m3a_c00458{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m74_c00458{transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);}
.m2d_c00458{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m71_c00458{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.mc3_c00458{transform:matrix(0.444853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444853,0.000000,0.000000,0.250000,0,0);}
.m8b_c00458{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m4e_c00458{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.m73_c00458{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.m6d_c00458{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mca_c00458{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.m8e_c00458{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mb1_c00458{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.mba_c00458{transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);}
.m65_c00458{transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);}
.m11_c00458{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m93_c00458{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m6c_c00458{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m67_c00458{transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);}
.m70_c00458{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m94_c00458{transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);}
.m33_c00458{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mb5_c00458{transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);}
.m6f_c00458{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.mb0_c00458{transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);}
.m61_c00458{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mb9_c00458{transform:matrix(0.481571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481571,0.000000,0.000000,0.250000,0,0);}
.m6a_c00458{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.md2_c00458{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m2b_c00458{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m16_c00458{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m97_c00458{transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);}
.m0_c00458{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mb_c00458{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m68_c00458{transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);}
.m3f_c00458{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m1c_c00458{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);}
.m56_c00458{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m91_c00458{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m60_c00458{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m36_c00458{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m53_c00458{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.mc7_c00458{transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);}
.m54_c00458{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m28_c00458{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m3d_c00458{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.mb3_c00458{transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);}
.m89_c00458{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m24_c00458{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m2_c00458{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m8c_c00458{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m9e_c00458{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.ma3_c00458{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m51_c00458{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mf_c00458{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.ma5_c00458{transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);}
.mc5_c00458{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.m14_c00458{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.md1_c00458{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m83_c00458{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.m64_c00458{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m48_c00458{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m47_c00458{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m78_c00458{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m57_c00458{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m39_c00458{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m50_c00458{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.ma2_c00458{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m96_c00458{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m88_c00458{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m58_c00458{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m72_c00458{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.ma_c00458{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m38_c00458{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m4a_c00458{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m18_c00458{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mad_c00458{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.ma1_c00458{transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);}
.ma4_c00458{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m5b_c00458{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m98_c00458{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m15_c00458{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m52_c00458{transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);}
.m63_c00458{transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);}
.m4b_c00458{transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);}
.m2a_c00458{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.m32_c00458{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m4_c00458{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m3c_c00458{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m84_c00458{transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);}
.m40_c00458{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.m46_c00458{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.m6e_c00458{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m6_c00458{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m6b_c00458{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m8_c00458{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m27_c00458{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m22_c00458{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.m66_c00458{transform:matrix(0.610477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610477,0.000000,0.000000,0.250000,0,0);}
.ma8_c00458{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m62_c00458{transform:matrix(0.612552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612552,0.000000,0.000000,0.250000,0,0);}
.m59_c00458{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.ma7_c00458{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m5a_c00458{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m7f_c00458{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m99_c00458{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m9a_c00458{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_c00458{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m7e_c00458{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m9b_c00458{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m1_c00458{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.mc2_c00458{transform:matrix(0.643172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643172,0.000000,0.000000,0.250000,0,0);}
.mb2_c00458{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.m29_c00458{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m76_c00458{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.mcb_c00458{transform:matrix(0.657828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657828,0.000000,0.000000,0.250000,0,0);}
.m80_c00458{transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);}
.m5d_c00458{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m20_c00458{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.md0_c00458{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m13_c00458{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m82_c00458{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.md3_c00458{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.mab_c00458{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mb7_c00458{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.maf_c00458{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.m4d_c00458{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.mcf_c00458{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m81_c00458{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.mbe_c00458{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.mc0_c00458{transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);}
.m5c_c00458{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mc1_c00458{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.mb8_c00458{transform:matrix(0.722467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722467,0.000000,0.000000,0.250000,0,0);}
.m7a_c00458{transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);}
.m4c_c00458{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mcc_c00458{transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);}
.mac_c00458{transform:matrix(0.734848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.734848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.734848,0.000000,0.000000,0.250000,0,0);}
.m2e_c00458{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m25_c00458{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.mcd_c00458{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.mae_c00458{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m21_c00458{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mc9_c00458{transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);}
.mc6_c00458{transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);}
.mc_c00458{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mc4_c00458{transform:matrix(0.772727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772727,0.000000,0.000000,0.250000,0,0);}
.mbb_c00458{transform:matrix(0.779736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779736,0.000000,0.000000,0.250000,0,0);}
.mbf_c00458{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m49_c00458{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mb4_c00458{transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);}
.mbd_c00458{transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);}
.mbc_c00458{transform:matrix(0.881057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.881057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.881057,0.000000,0.000000,0.250000,0,0);}
.mce_c00458{transform:matrix(0.941630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.941630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.941630,0.000000,0.000000,0.250000,0,0);}
.m9f_c00458{transform:matrix(1.004405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.004405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.004405,0.000000,0.000000,0.250000,0,0);}
.maa_c00458{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m3_c00458{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m86_c00458{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00458{vertical-align:-6.000000px;}
.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;}
}
.ws9_c00458{word-spacing:0.000000px;}
.ws0_c00458{word-spacing:3.392992px;}
.ws4_c00458{word-spacing:14.543502px;}
.ws8_c00458{word-spacing:17.518243px;}
.ws1_c00458{word-spacing:39.919730px;}
.ws6_c00458{word-spacing:40.651310px;}
.ws7_c00458{word-spacing:43.123678px;}
.ws5_c00458{word-spacing:45.278742px;}
.ws2_c00458{word-spacing:60.638400px;}
.ws3_c00458{word-spacing:69.032182px;}
._0_c00458{width:52.773091px;}
.fc0_c00458{color:transparent;}
.fs2_c00458{font-size:3.420000px;}
.fs7_c00458{font-size:11.880000px;}
.fs9_c00458{font-size:13.620000px;}
.fs5_c00458{font-size:18.720000px;}
.fs1_c00458{font-size:20.400000px;}
.fs4_c00458{font-size:25.500000px;}
.fs0_c00458{font-size:28.920000px;}
.fs6_c00458{font-size:32.340000px;}
.fs3_c00458{font-size:35.700000px;}
.fs8_c00458{font-size:39.120000px;}
.y0_c00458{bottom:0.000000px;}
.y69_c00458{bottom:254.745000px;}
.y67_c00458{bottom:255.630000px;}
.y6a_c00458{bottom:255.825000px;}
.y6b_c00458{bottom:256.245000px;}
.y66_c00458{bottom:256.905000px;}
.y68_c00458{bottom:256.920000px;}
.y64_c00458{bottom:273.405000px;}
.y61_c00458{bottom:274.245000px;}
.y63_c00458{bottom:275.325000px;}
.y65_c00458{bottom:275.745000px;}
.y62_c00458{bottom:276.420000px;}
.y5c_c00458{bottom:293.745000px;}
.y5e_c00458{bottom:294.180000px;}
.y60_c00458{bottom:295.905000px;}
.y5f_c00458{bottom:297.405000px;}
.y5d_c00458{bottom:297.420000px;}
.y5b_c00458{bottom:317.550000px;}
.y5a_c00458{bottom:319.470000px;}
.y57_c00458{bottom:332.325000px;}
.y59_c00458{bottom:333.405000px;}
.y56_c00458{bottom:334.470000px;}
.y58_c00458{bottom:335.550000px;}
.y54_c00458{bottom:351.825000px;}
.y55_c00458{bottom:355.050000px;}
.y53_c00458{bottom:365.970000px;}
.y51_c00458{bottom:367.050000px;}
.y50_c00458{bottom:367.905000px;}
.y52_c00458{bottom:368.130000px;}
.y4e_c00458{bottom:391.245000px;}
.y4f_c00458{bottom:392.325000px;}
.y4d_c00458{bottom:421.905000px;}
.y4c_c00458{bottom:455.745000px;}
.y4b_c00458{bottom:457.905000px;}
.y4a_c00458{bottom:474.405000px;}
.y46_c00458{bottom:475.245000px;}
.y49_c00458{bottom:475.680000px;}
.y48_c00458{bottom:477.405000px;}
.y47_c00458{bottom:478.470000px;}
.y43_c00458{bottom:493.905000px;}
.y40_c00458{bottom:496.245000px;}
.y44_c00458{bottom:497.130000px;}
.y45_c00458{bottom:497.970000px;}
.y41_c00458{bottom:498.405000px;}
.y42_c00458{bottom:499.470000px;}
.y3e_c00458{bottom:512.775000px;}
.y3d_c00458{bottom:515.745000px;}
.y3c_c00458{bottom:516.630000px;}
.y3b_c00458{bottom:517.470000px;}
.y3a_c00458{bottom:517.905000px;}
.y3f_c00458{bottom:518.970000px;}
.y36_c00458{bottom:534.405000px;}
.y37_c00458{bottom:535.245000px;}
.y39_c00458{bottom:536.130000px;}
.y38_c00458{bottom:537.405000px;}
.y2f_c00458{bottom:553.905000px;}
.y35_c00458{bottom:554.745000px;}
.y33_c00458{bottom:554.970000px;}
.y34_c00458{bottom:555.630000px;}
.y32_c00458{bottom:556.905000px;}
.y30_c00458{bottom:557.130000px;}
.y31_c00458{bottom:557.970000px;}
.y2b_c00458{bottom:574.245000px;}
.y2d_c00458{bottom:575.745000px;}
.y2c_c00458{bottom:576.405000px;}
.y2a_c00458{bottom:577.470000px;}
.y2e_c00458{bottom:577.905000px;}
.y25_c00458{bottom:593.745000px;}
.y28_c00458{bottom:593.970000px;}
.y26_c00458{bottom:595.245000px;}
.y29_c00458{bottom:596.325000px;}
.y27_c00458{bottom:596.970000px;}
.y24_c00458{bottom:597.405000px;}
.y21_c00458{bottom:614.745000px;}
.y22_c00458{bottom:616.905000px;}
.y23_c00458{bottom:617.970000px;}
.y1d_c00458{bottom:634.245000px;}
.y1f_c00458{bottom:635.325000px;}
.y20_c00458{bottom:635.745000px;}
.y1e_c00458{bottom:636.405000px;}
.y18_c00458{bottom:653.745000px;}
.y1b_c00458{bottom:653.970000px;}
.y19_c00458{bottom:655.905000px;}
.y1c_c00458{bottom:656.130000px;}
.y1a_c00458{bottom:656.970000px;}
.y12_c00458{bottom:673.245000px;}
.y15_c00458{bottom:673.470000px;}
.y13_c00458{bottom:673.905000px;}
.y17_c00458{bottom:674.745000px;}
.y16_c00458{bottom:675.405000px;}
.y14_c00458{bottom:675.630000px;}
.y10_c00458{bottom:691.905000px;}
.yb_c00458{bottom:692.745000px;}
.ye_c00458{bottom:693.405000px;}
.yd_c00458{bottom:694.245000px;}
.yf_c00458{bottom:694.470000px;}
.yc_c00458{bottom:694.905000px;}
.y11_c00458{bottom:696.405000px;}
.y8_c00458{bottom:711.405000px;}
.y7_c00458{bottom:712.245000px;}
.y5_c00458{bottom:713.745000px;}
.y3_c00458{bottom:714.405000px;}
.ya_c00458{bottom:714.630000px;}
.y6_c00458{bottom:715.470000px;}
.y9_c00458{bottom:715.905000px;}
.y4_c00458{bottom:715.920000px;}
.ya4_c00458{bottom:743.550000px;}
.ya3_c00458{bottom:746.130000px;}
.ya2_c00458{bottom:747.195000px;}
.ya0_c00458{bottom:759.630000px;}
.ya1_c00458{bottom:760.695000px;}
.y9d_c00458{bottom:772.695000px;}
.y9e_c00458{bottom:774.195000px;}
.y9f_c00458{bottom:774.630000px;}
.y9b_c00458{bottom:787.695000px;}
.y9c_c00458{bottom:789.195000px;}
.y9a_c00458{bottom:800.775000px;}
.y99_c00458{bottom:801.630000px;}
.y98_c00458{bottom:802.695000px;}
.y97_c00458{bottom:807.195000px;}
.y95_c00458{bottom:815.130000px;}
.y96_c00458{bottom:815.775000px;}
.y94_c00458{bottom:816.195000px;}
.y91_c00458{bottom:829.050000px;}
.y92_c00458{bottom:829.695000px;}
.y93_c00458{bottom:830.775000px;}
.y90_c00458{bottom:844.695000px;}
.y8f_c00458{bottom:857.130000px;}
.y8e_c00458{bottom:858.195000px;}
.y8d_c00458{bottom:871.695000px;}
.y8b_c00458{bottom:884.130000px;}
.y8c_c00458{bottom:885.195000px;}
.y8a_c00458{bottom:898.275000px;}
.y88_c00458{bottom:899.130000px;}
.y89_c00458{bottom:900.195000px;}
.y87_c00458{bottom:912.630000px;}
.y86_c00458{bottom:913.695000px;}
.y85_c00458{bottom:926.130000px;}
.y84_c00458{bottom:927.195000px;}
.y81_c00458{bottom:939.630000px;}
.y83_c00458{bottom:940.695000px;}
.y82_c00458{bottom:941.130000px;}
.y7e_c00458{bottom:953.130000px;}
.y80_c00458{bottom:954.630000px;}
.y7d_c00458{bottom:955.275000px;}
.y7f_c00458{bottom:955.695000px;}
.y79_c00458{bottom:972.195000px;}
.y7a_c00458{bottom:972.630000px;}
.y7c_c00458{bottom:973.695000px;}
.y7b_c00458{bottom:973.920000px;}
.y77_c00458{bottom:990.630000px;}
.y78_c00458{bottom:991.695000px;}
.y75_c00458{bottom:1010.970000px;}
.y76_c00458{bottom:1012.050000px;}
.y74_c00458{bottom:1023.825000px;}
.y71_c00458{bottom:1025.325000px;}
.y72_c00458{bottom:1025.970000px;}
.y73_c00458{bottom:1026.195000px;}
.y70_c00458{bottom:1039.905000px;}
.y6e_c00458{bottom:1040.970000px;}
.y6f_c00458{bottom:1042.050000px;}
.y6d_c00458{bottom:1063.905000px;}
.y6c_c00458{bottom:1064.970000px;}
.y1_c00458{bottom:1099.905000px;}
.y2_c00458{bottom:1102.050000px;}
.h3_c00458{height:4.206533px;}
.h8_c00458{height:14.612168px;}
.ha_c00458{height:16.752334px;}
.h6_c00458{height:23.025234px;}
.h2_c00458{height:25.091602px;}
.h5_c00458{height:31.364502px;}
.h1_c00458{height:35.571035px;}
.h7_c00458{height:39.777568px;}
.h4_c00458{height:43.910303px;}
.h9_c00458{height:48.116836px;}
.h0_c00458{height:1335.000000px;}
.w0_c00458{width:880.500000px;}
.x0_c00458{left:0.000000px;}
.x30_c00458{left:151.500000px;}
.x25_c00458{left:153.000000px;}
.xf_c00458{left:154.500000px;}
.x95_c00458{left:166.500000px;}
.x3_c00458{left:168.645000px;}
.x10_c00458{left:180.000000px;}
.x62_c00458{left:181.500000px;}
.x4c_c00458{left:187.500000px;}
.x9b_c00458{left:194.355000px;}
.x82_c00458{left:198.000000px;}
.x96_c00458{left:199.920000px;}
.x89_c00458{left:201.000000px;}
.x6c_c00458{left:207.000000px;}
.x19_c00458{left:208.500000px;}
.x31_c00458{left:210.000000px;}
.x3b_c00458{left:216.420000px;}
.x41_c00458{left:217.500000px;}
.x26_c00458{left:223.920000px;}
.x6d_c00458{left:226.080000px;}
.x85_c00458{left:227.580000px;}
.x57_c00458{left:233.580000px;}
.x4_c00458{left:238.500000px;}
.x63_c00458{left:240.420000px;}
.x75_c00458{left:243.000000px;}
.x11_c00458{left:245.580000px;}
.x7a_c00458{left:247.500000px;}
.x6e_c00458{left:248.580000px;}
.xa3_c00458{left:253.500000px;}
.x27_c00458{left:256.080000px;}
.x5_c00458{left:258.000000px;}
.x4d_c00458{left:260.580000px;}
.x64_c00458{left:267.420000px;}
.x9c_c00458{left:268.500000px;}
.x42_c00458{left:269.580000px;}
.x7b_c00458{left:271.500000px;}
.x28_c00458{left:279.000000px;}
.x32_c00458{left:280.920000px;}
.x9e_c00458{left:282.000000px;}
.x8a_c00458{left:285.000000px;}
.x1a_c00458{left:286.080000px;}
.x43_c00458{left:289.920000px;}
.x6_c00458{left:292.500000px;}
.x97_c00458{left:300.420000px;}
.xa4_c00458{left:304.500000px;}
.x6f_c00458{left:306.000000px;}
.x58_c00458{left:307.920000px;}
.x76_c00458{left:312.000000px;}
.x4e_c00458{left:313.080000px;}
.x1b_c00458{left:319.500000px;}
.x86_c00458{left:324.420000px;}
.xa5_c00458{left:326.580000px;}
.x12_c00458{left:328.920000px;}
.x44_c00458{left:331.500000px;}
.x65_c00458{left:334.080000px;}
.xb4_c00458{left:335.580000px;}
.xb7_c00458{left:339.000000px;}
.xac_c00458{left:340.500000px;}
.x33_c00458{left:343.500000px;}
.x7_c00458{left:344.580000px;}
.x9f_c00458{left:346.275000px;}
.x29_c00458{left:348.420000px;}
.x1c_c00458{left:352.080000px;}
.xb8_c00458{left:354.000000px;}
.x77_c00458{left:355.500000px;}
.x8b_c00458{left:356.580000px;}
.x83_c00458{left:357.645000px;}
.xb5_c00458{left:361.500000px;}
.x45_c00458{left:363.420000px;}
.x8_c00458{left:364.500000px;}
.x7c_c00458{left:365.580000px;}
.xa9_c00458{left:367.080000px;}
.x3c_c00458{left:370.500000px;}
.x2a_c00458{left:373.500000px;}
.x34_c00458{left:377.580000px;}
.x8c_c00458{left:378.855000px;}
.xbe_c00458{left:379.920000px;}
.xba_c00458{left:381.000000px;}
.x59_c00458{left:385.920000px;}
.x4f_c00458{left:388.275000px;}
.x3d_c00458{left:390.420000px;}
.x35_c00458{left:393.000000px;}
.xbb_c00458{left:397.500000px;}
.x92_c00458{left:399.000000px;}
.x13_c00458{left:400.500000px;}
.x8d_c00458{left:402.420000px;}
.x1d_c00458{left:405.000000px;}
.x2_c00458{left:406.500000px;}
.xaa_c00458{left:409.500000px;}
.x5a_c00458{left:411.000000px;}
.x84_c00458{left:416.580000px;}
.x46_c00458{left:418.920000px;}
.x93_c00458{left:420.000000px;}
.xa0_c00458{left:422.580000px;}
.x14_c00458{left:424.920000px;}
.x66_c00458{left:426.000000px;}
.x9d_c00458{left:427.500000px;}
.x50_c00458{left:430.500000px;}
.x36_c00458{left:431.775000px;}
.x78_c00458{left:433.500000px;}
.x94_c00458{left:434.580000px;}
.x9_c00458{left:436.500000px;}
.x8e_c00458{left:438.000000px;}
.xb6_c00458{left:439.500000px;}
.xad_c00458{left:442.080000px;}
.xbc_c00458{left:444.000000px;}
.x3e_c00458{left:445.500000px;}
.xaf_c00458{left:448.500000px;}
.x7d_c00458{left:450.420000px;}
.x51_c00458{left:452.580000px;}
.x15_c00458{left:454.920000px;}
.xb0_c00458{left:456.000000px;}
.xa8_c00458{left:457.500000px;}
.x79_c00458{left:460.920000px;}
.x67_c00458{left:463.920000px;}
.x70_c00458{left:466.080000px;}
.x98_c00458{left:469.500000px;}
.xa_c00458{left:472.920000px;}
.x47_c00458{left:474.000000px;}
.x71_c00458{left:475.920000px;}
.x1e_c00458{left:477.000000px;}
.x7e_c00458{left:481.920000px;}
.xa1_c00458{left:485.775000px;}
.xae_c00458{left:487.500000px;}
.x1f_c00458{left:496.500000px;}
.x2b_c00458{left:503.580000px;}
.xb2_c00458{left:507.000000px;}
.x20_c00458{left:508.500000px;}
.x5b_c00458{left:510.420000px;}
.xb1_c00458{left:511.500000px;}
.x16_c00458{left:516.420000px;}
.x52_c00458{left:520.500000px;}
.x37_c00458{left:521.580000px;}
.x68_c00458{left:523.500000px;}
.x2c_c00458{left:525.000000px;}
.x7f_c00458{left:531.000000px;}
.x72_c00458{left:532.920000px;}
.xb_c00458{left:534.000000px;}
.x38_c00458{left:544.080000px;}
.xab_c00458{left:547.500000px;}
.x3f_c00458{left:549.000000px;}
.x87_c00458{left:550.500000px;}
.xbd_c00458{left:552.000000px;}
.x5c_c00458{left:553.500000px;}
.x8f_c00458{left:556.500000px;}
.xa6_c00458{left:558.000000px;}
.xb3_c00458{left:561.000000px;}
.xbf_c00458{left:562.920000px;}
.x17_c00458{left:564.000000px;}
.xb9_c00458{left:565.500000px;}
.xa2_c00458{left:567.420000px;}
.x69_c00458{left:570.000000px;}
.x5d_c00458{left:571.080000px;}
.x21_c00458{left:575.580000px;}
.x53_c00458{left:579.000000px;}
.xc_c00458{left:580.500000px;}
.x5e_c00458{left:592.920000px;}
.x22_c00458{left:594.000000px;}
.x90_c00458{left:595.920000px;}
.x73_c00458{left:598.500000px;}
.x80_c00458{left:604.500000px;}
.x48_c00458{left:607.500000px;}
.x5f_c00458{left:610.920000px;}
.x54_c00458{left:613.500000px;}
.x2d_c00458{left:618.420000px;}
.x88_c00458{left:622.275000px;}
.x81_c00458{left:625.500000px;}
.x39_c00458{left:626.580000px;}
.xd_c00458{left:637.500000px;}
.x91_c00458{left:640.500000px;}
.x49_c00458{left:641.580000px;}
.x18_c00458{left:646.500000px;}
.xa7_c00458{left:648.000000px;}
.x4a_c00458{left:657.000000px;}
.x40_c00458{left:658.500000px;}
.x99_c00458{left:664.500000px;}
.x23_c00458{left:667.080000px;}
.x74_c00458{left:669.000000px;}
.x2e_c00458{left:672.000000px;}
.xe_c00458{left:676.500000px;}
.x6a_c00458{left:679.080000px;}
.x60_c00458{left:684.420000px;}
.x55_c00458{left:686.580000px;}
.x3a_c00458{left:688.080000px;}
.x4b_c00458{left:695.775000px;}
.x24_c00458{left:697.500000px;}
.x6b_c00458{left:702.420000px;}
.x9a_c00458{left:703.500000px;}
.x1_c00458{left:705.000000px;}
.x2f_c00458{left:706.500000px;}
.x56_c00458{left:708.420000px;}
.x61_c00458{left:717.000000px;}
@media print{
.v1_c00458{vertical-align:-5.333333pt;}
.v0_c00458{vertical-align:0.000000pt;}
.ls0_c00458{letter-spacing:0.000000pt;}
.ws9_c00458{word-spacing:0.000000pt;}
.ws0_c00458{word-spacing:3.015993pt;}
.ws4_c00458{word-spacing:12.927558pt;}
.ws8_c00458{word-spacing:15.571771pt;}
.ws1_c00458{word-spacing:35.484205pt;}
.ws6_c00458{word-spacing:36.134498pt;}
.ws7_c00458{word-spacing:38.332159pt;}
.ws5_c00458{word-spacing:40.247770pt;}
.ws2_c00458{word-spacing:53.900800pt;}
.ws3_c00458{word-spacing:61.361940pt;}
._0_c00458{width:46.909414pt;}
.fs2_c00458{font-size:3.040000pt;}
.fs7_c00458{font-size:10.560000pt;}
.fs9_c00458{font-size:12.106667pt;}
.fs5_c00458{font-size:16.640000pt;}
.fs1_c00458{font-size:18.133333pt;}
.fs4_c00458{font-size:22.666667pt;}
.fs0_c00458{font-size:25.706667pt;}
.fs6_c00458{font-size:28.746667pt;}
.fs3_c00458{font-size:31.733333pt;}
.fs8_c00458{font-size:34.773333pt;}
.y0_c00458{bottom:0.000000pt;}
.y69_c00458{bottom:226.440000pt;}
.y67_c00458{bottom:227.226667pt;}
.y6a_c00458{bottom:227.400000pt;}
.y6b_c00458{bottom:227.773333pt;}
.y66_c00458{bottom:228.360000pt;}
.y68_c00458{bottom:228.373333pt;}
.y64_c00458{bottom:243.026667pt;}
.y61_c00458{bottom:243.773333pt;}
.y63_c00458{bottom:244.733333pt;}
.y65_c00458{bottom:245.106667pt;}
.y62_c00458{bottom:245.706667pt;}
.y5c_c00458{bottom:261.106667pt;}
.y5e_c00458{bottom:261.493333pt;}
.y60_c00458{bottom:263.026667pt;}
.y5f_c00458{bottom:264.360000pt;}
.y5d_c00458{bottom:264.373333pt;}
.y5b_c00458{bottom:282.266667pt;}
.y5a_c00458{bottom:283.973333pt;}
.y57_c00458{bottom:295.400000pt;}
.y59_c00458{bottom:296.360000pt;}
.y56_c00458{bottom:297.306667pt;}
.y58_c00458{bottom:298.266667pt;}
.y54_c00458{bottom:312.733333pt;}
.y55_c00458{bottom:315.600000pt;}
.y53_c00458{bottom:325.306667pt;}
.y51_c00458{bottom:326.266667pt;}
.y50_c00458{bottom:327.026667pt;}
.y52_c00458{bottom:327.226667pt;}
.y4e_c00458{bottom:347.773333pt;}
.y4f_c00458{bottom:348.733333pt;}
.y4d_c00458{bottom:375.026667pt;}
.y4c_c00458{bottom:405.106667pt;}
.y4b_c00458{bottom:407.026667pt;}
.y4a_c00458{bottom:421.693333pt;}
.y46_c00458{bottom:422.440000pt;}
.y49_c00458{bottom:422.826667pt;}
.y48_c00458{bottom:424.360000pt;}
.y47_c00458{bottom:425.306667pt;}
.y43_c00458{bottom:439.026667pt;}
.y40_c00458{bottom:441.106667pt;}
.y44_c00458{bottom:441.893333pt;}
.y45_c00458{bottom:442.640000pt;}
.y41_c00458{bottom:443.026667pt;}
.y42_c00458{bottom:443.973333pt;}
.y3e_c00458{bottom:455.800000pt;}
.y3d_c00458{bottom:458.440000pt;}
.y3c_c00458{bottom:459.226667pt;}
.y3b_c00458{bottom:459.973333pt;}
.y3a_c00458{bottom:460.360000pt;}
.y3f_c00458{bottom:461.306667pt;}
.y36_c00458{bottom:475.026667pt;}
.y37_c00458{bottom:475.773333pt;}
.y39_c00458{bottom:476.560000pt;}
.y38_c00458{bottom:477.693333pt;}
.y2f_c00458{bottom:492.360000pt;}
.y35_c00458{bottom:493.106667pt;}
.y33_c00458{bottom:493.306667pt;}
.y34_c00458{bottom:493.893333pt;}
.y32_c00458{bottom:495.026667pt;}
.y30_c00458{bottom:495.226667pt;}
.y31_c00458{bottom:495.973333pt;}
.y2b_c00458{bottom:510.440000pt;}
.y2d_c00458{bottom:511.773333pt;}
.y2c_c00458{bottom:512.360000pt;}
.y2a_c00458{bottom:513.306667pt;}
.y2e_c00458{bottom:513.693333pt;}
.y25_c00458{bottom:527.773333pt;}
.y28_c00458{bottom:527.973333pt;}
.y26_c00458{bottom:529.106667pt;}
.y29_c00458{bottom:530.066667pt;}
.y27_c00458{bottom:530.640000pt;}
.y24_c00458{bottom:531.026667pt;}
.y21_c00458{bottom:546.440000pt;}
.y22_c00458{bottom:548.360000pt;}
.y23_c00458{bottom:549.306667pt;}
.y1d_c00458{bottom:563.773333pt;}
.y1f_c00458{bottom:564.733333pt;}
.y20_c00458{bottom:565.106667pt;}
.y1e_c00458{bottom:565.693333pt;}
.y18_c00458{bottom:581.106667pt;}
.y1b_c00458{bottom:581.306667pt;}
.y19_c00458{bottom:583.026667pt;}
.y1c_c00458{bottom:583.226667pt;}
.y1a_c00458{bottom:583.973333pt;}
.y12_c00458{bottom:598.440000pt;}
.y15_c00458{bottom:598.640000pt;}
.y13_c00458{bottom:599.026667pt;}
.y17_c00458{bottom:599.773333pt;}
.y16_c00458{bottom:600.360000pt;}
.y14_c00458{bottom:600.560000pt;}
.y10_c00458{bottom:615.026667pt;}
.yb_c00458{bottom:615.773333pt;}
.ye_c00458{bottom:616.360000pt;}
.yd_c00458{bottom:617.106667pt;}
.yf_c00458{bottom:617.306667pt;}
.yc_c00458{bottom:617.693333pt;}
.y11_c00458{bottom:619.026667pt;}
.y8_c00458{bottom:632.360000pt;}
.y7_c00458{bottom:633.106667pt;}
.y5_c00458{bottom:634.440000pt;}
.y3_c00458{bottom:635.026667pt;}
.ya_c00458{bottom:635.226667pt;}
.y6_c00458{bottom:635.973333pt;}
.y9_c00458{bottom:636.360000pt;}
.y4_c00458{bottom:636.373333pt;}
.ya4_c00458{bottom:660.933333pt;}
.ya3_c00458{bottom:663.226667pt;}
.ya2_c00458{bottom:664.173333pt;}
.ya0_c00458{bottom:675.226667pt;}
.ya1_c00458{bottom:676.173333pt;}
.y9d_c00458{bottom:686.840000pt;}
.y9e_c00458{bottom:688.173333pt;}
.y9f_c00458{bottom:688.560000pt;}
.y9b_c00458{bottom:700.173333pt;}
.y9c_c00458{bottom:701.506667pt;}
.y9a_c00458{bottom:711.800000pt;}
.y99_c00458{bottom:712.560000pt;}
.y98_c00458{bottom:713.506667pt;}
.y97_c00458{bottom:717.506667pt;}
.y95_c00458{bottom:724.560000pt;}
.y96_c00458{bottom:725.133333pt;}
.y94_c00458{bottom:725.506667pt;}
.y91_c00458{bottom:736.933333pt;}
.y92_c00458{bottom:737.506667pt;}
.y93_c00458{bottom:738.466667pt;}
.y90_c00458{bottom:750.840000pt;}
.y8f_c00458{bottom:761.893333pt;}
.y8e_c00458{bottom:762.840000pt;}
.y8d_c00458{bottom:774.840000pt;}
.y8b_c00458{bottom:785.893333pt;}
.y8c_c00458{bottom:786.840000pt;}
.y8a_c00458{bottom:798.466667pt;}
.y88_c00458{bottom:799.226667pt;}
.y89_c00458{bottom:800.173333pt;}
.y87_c00458{bottom:811.226667pt;}
.y86_c00458{bottom:812.173333pt;}
.y85_c00458{bottom:823.226667pt;}
.y84_c00458{bottom:824.173333pt;}
.y81_c00458{bottom:835.226667pt;}
.y83_c00458{bottom:836.173333pt;}
.y82_c00458{bottom:836.560000pt;}
.y7e_c00458{bottom:847.226667pt;}
.y80_c00458{bottom:848.560000pt;}
.y7d_c00458{bottom:849.133333pt;}
.y7f_c00458{bottom:849.506667pt;}
.y79_c00458{bottom:864.173333pt;}
.y7a_c00458{bottom:864.560000pt;}
.y7c_c00458{bottom:865.506667pt;}
.y7b_c00458{bottom:865.706667pt;}
.y77_c00458{bottom:880.560000pt;}
.y78_c00458{bottom:881.506667pt;}
.y75_c00458{bottom:898.640000pt;}
.y76_c00458{bottom:899.600000pt;}
.y74_c00458{bottom:910.066667pt;}
.y71_c00458{bottom:911.400000pt;}
.y72_c00458{bottom:911.973333pt;}
.y73_c00458{bottom:912.173333pt;}
.y70_c00458{bottom:924.360000pt;}
.y6e_c00458{bottom:925.306667pt;}
.y6f_c00458{bottom:926.266667pt;}
.y6d_c00458{bottom:945.693333pt;}
.y6c_c00458{bottom:946.640000pt;}
.y1_c00458{bottom:977.693333pt;}
.y2_c00458{bottom:979.600000pt;}
.h3_c00458{height:3.739141pt;}
.h8_c00458{height:12.988594pt;}
.ha_c00458{height:14.890964pt;}
.h6_c00458{height:20.466875pt;}
.h2_c00458{height:22.303646pt;}
.h5_c00458{height:27.879557pt;}
.h1_c00458{height:31.618698pt;}
.h7_c00458{height:35.357839pt;}
.h4_c00458{height:39.031380pt;}
.h9_c00458{height:42.770521pt;}
.h0_c00458{height:1186.666667pt;}
.w0_c00458{width:782.666667pt;}
.x0_c00458{left:0.000000pt;}
.x30_c00458{left:134.666667pt;}
.x25_c00458{left:136.000000pt;}
.xf_c00458{left:137.333333pt;}
.x95_c00458{left:148.000000pt;}
.x3_c00458{left:149.906667pt;}
.x10_c00458{left:160.000000pt;}
.x62_c00458{left:161.333333pt;}
.x4c_c00458{left:166.666667pt;}
.x9b_c00458{left:172.760000pt;}
.x82_c00458{left:176.000000pt;}
.x96_c00458{left:177.706667pt;}
.x89_c00458{left:178.666667pt;}
.x6c_c00458{left:184.000000pt;}
.x19_c00458{left:185.333333pt;}
.x31_c00458{left:186.666667pt;}
.x3b_c00458{left:192.373333pt;}
.x41_c00458{left:193.333333pt;}
.x26_c00458{left:199.040000pt;}
.x6d_c00458{left:200.960000pt;}
.x85_c00458{left:202.293333pt;}
.x57_c00458{left:207.626667pt;}
.x4_c00458{left:212.000000pt;}
.x63_c00458{left:213.706667pt;}
.x75_c00458{left:216.000000pt;}
.x11_c00458{left:218.293333pt;}
.x7a_c00458{left:220.000000pt;}
.x6e_c00458{left:220.960000pt;}
.xa3_c00458{left:225.333333pt;}
.x27_c00458{left:227.626667pt;}
.x5_c00458{left:229.333333pt;}
.x4d_c00458{left:231.626667pt;}
.x64_c00458{left:237.706667pt;}
.x9c_c00458{left:238.666667pt;}
.x42_c00458{left:239.626667pt;}
.x7b_c00458{left:241.333333pt;}
.x28_c00458{left:248.000000pt;}
.x32_c00458{left:249.706667pt;}
.x9e_c00458{left:250.666667pt;}
.x8a_c00458{left:253.333333pt;}
.x1a_c00458{left:254.293333pt;}
.x43_c00458{left:257.706667pt;}
.x6_c00458{left:260.000000pt;}
.x97_c00458{left:267.040000pt;}
.xa4_c00458{left:270.666667pt;}
.x6f_c00458{left:272.000000pt;}
.x58_c00458{left:273.706667pt;}
.x76_c00458{left:277.333333pt;}
.x4e_c00458{left:278.293333pt;}
.x1b_c00458{left:284.000000pt;}
.x86_c00458{left:288.373333pt;}
.xa5_c00458{left:290.293333pt;}
.x12_c00458{left:292.373333pt;}
.x44_c00458{left:294.666667pt;}
.x65_c00458{left:296.960000pt;}
.xb4_c00458{left:298.293333pt;}
.xb7_c00458{left:301.333333pt;}
.xac_c00458{left:302.666667pt;}
.x33_c00458{left:305.333333pt;}
.x7_c00458{left:306.293333pt;}
.x9f_c00458{left:307.800000pt;}
.x29_c00458{left:309.706667pt;}
.x1c_c00458{left:312.960000pt;}
.xb8_c00458{left:314.666667pt;}
.x77_c00458{left:316.000000pt;}
.x8b_c00458{left:316.960000pt;}
.x83_c00458{left:317.906667pt;}
.xb5_c00458{left:321.333333pt;}
.x45_c00458{left:323.040000pt;}
.x8_c00458{left:324.000000pt;}
.x7c_c00458{left:324.960000pt;}
.xa9_c00458{left:326.293333pt;}
.x3c_c00458{left:329.333333pt;}
.x2a_c00458{left:332.000000pt;}
.x34_c00458{left:335.626667pt;}
.x8c_c00458{left:336.760000pt;}
.xbe_c00458{left:337.706667pt;}
.xba_c00458{left:338.666667pt;}
.x59_c00458{left:343.040000pt;}
.x4f_c00458{left:345.133333pt;}
.x3d_c00458{left:347.040000pt;}
.x35_c00458{left:349.333333pt;}
.xbb_c00458{left:353.333333pt;}
.x92_c00458{left:354.666667pt;}
.x13_c00458{left:356.000000pt;}
.x8d_c00458{left:357.706667pt;}
.x1d_c00458{left:360.000000pt;}
.x2_c00458{left:361.333333pt;}
.xaa_c00458{left:364.000000pt;}
.x5a_c00458{left:365.333333pt;}
.x84_c00458{left:370.293333pt;}
.x46_c00458{left:372.373333pt;}
.x93_c00458{left:373.333333pt;}
.xa0_c00458{left:375.626667pt;}
.x14_c00458{left:377.706667pt;}
.x66_c00458{left:378.666667pt;}
.x9d_c00458{left:380.000000pt;}
.x50_c00458{left:382.666667pt;}
.x36_c00458{left:383.800000pt;}
.x78_c00458{left:385.333333pt;}
.x94_c00458{left:386.293333pt;}
.x9_c00458{left:388.000000pt;}
.x8e_c00458{left:389.333333pt;}
.xb6_c00458{left:390.666667pt;}
.xad_c00458{left:392.960000pt;}
.xbc_c00458{left:394.666667pt;}
.x3e_c00458{left:396.000000pt;}
.xaf_c00458{left:398.666667pt;}
.x7d_c00458{left:400.373333pt;}
.x51_c00458{left:402.293333pt;}
.x15_c00458{left:404.373333pt;}
.xb0_c00458{left:405.333333pt;}
.xa8_c00458{left:406.666667pt;}
.x79_c00458{left:409.706667pt;}
.x67_c00458{left:412.373333pt;}
.x70_c00458{left:414.293333pt;}
.x98_c00458{left:417.333333pt;}
.xa_c00458{left:420.373333pt;}
.x47_c00458{left:421.333333pt;}
.x71_c00458{left:423.040000pt;}
.x1e_c00458{left:424.000000pt;}
.x7e_c00458{left:428.373333pt;}
.xa1_c00458{left:431.800000pt;}
.xae_c00458{left:433.333333pt;}
.x1f_c00458{left:441.333333pt;}
.x2b_c00458{left:447.626667pt;}
.xb2_c00458{left:450.666667pt;}
.x20_c00458{left:452.000000pt;}
.x5b_c00458{left:453.706667pt;}
.xb1_c00458{left:454.666667pt;}
.x16_c00458{left:459.040000pt;}
.x52_c00458{left:462.666667pt;}
.x37_c00458{left:463.626667pt;}
.x68_c00458{left:465.333333pt;}
.x2c_c00458{left:466.666667pt;}
.x7f_c00458{left:472.000000pt;}
.x72_c00458{left:473.706667pt;}
.xb_c00458{left:474.666667pt;}
.x38_c00458{left:483.626667pt;}
.xab_c00458{left:486.666667pt;}
.x3f_c00458{left:488.000000pt;}
.x87_c00458{left:489.333333pt;}
.xbd_c00458{left:490.666667pt;}
.x5c_c00458{left:492.000000pt;}
.x8f_c00458{left:494.666667pt;}
.xa6_c00458{left:496.000000pt;}
.xb3_c00458{left:498.666667pt;}
.xbf_c00458{left:500.373333pt;}
.x17_c00458{left:501.333333pt;}
.xb9_c00458{left:502.666667pt;}
.xa2_c00458{left:504.373333pt;}
.x69_c00458{left:506.666667pt;}
.x5d_c00458{left:507.626667pt;}
.x21_c00458{left:511.626667pt;}
.x53_c00458{left:514.666667pt;}
.xc_c00458{left:516.000000pt;}
.x5e_c00458{left:527.040000pt;}
.x22_c00458{left:528.000000pt;}
.x90_c00458{left:529.706667pt;}
.x73_c00458{left:532.000000pt;}
.x80_c00458{left:537.333333pt;}
.x48_c00458{left:540.000000pt;}
.x5f_c00458{left:543.040000pt;}
.x54_c00458{left:545.333333pt;}
.x2d_c00458{left:549.706667pt;}
.x88_c00458{left:553.133333pt;}
.x81_c00458{left:556.000000pt;}
.x39_c00458{left:556.960000pt;}
.xd_c00458{left:566.666667pt;}
.x91_c00458{left:569.333333pt;}
.x49_c00458{left:570.293333pt;}
.x18_c00458{left:574.666667pt;}
.xa7_c00458{left:576.000000pt;}
.x4a_c00458{left:584.000000pt;}
.x40_c00458{left:585.333333pt;}
.x99_c00458{left:590.666667pt;}
.x23_c00458{left:592.960000pt;}
.x74_c00458{left:594.666667pt;}
.x2e_c00458{left:597.333333pt;}
.xe_c00458{left:601.333333pt;}
.x6a_c00458{left:603.626667pt;}
.x60_c00458{left:608.373333pt;}
.x55_c00458{left:610.293333pt;}
.x3a_c00458{left:611.626667pt;}
.x4b_c00458{left:618.466667pt;}
.x24_c00458{left:620.000000pt;}
.x6b_c00458{left:624.373333pt;}
.x9a_c00458{left:625.333333pt;}
.x1_c00458{left:626.666667pt;}
.x2f_c00458{left:628.000000pt;}
.x56_c00458{left:629.706667pt;}
.x61_c00458{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_16b0b7adb278cef294a15ceb.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m10c_c00459{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m89_c00459{transform:matrix(0.333206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333206,0.000000,0.000000,0.250000,0,0);}
.md2_c00459{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m27_c00459{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.ma6_c00459{transform:matrix(0.348739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348739,0.000000,0.000000,0.250000,0,0);}
.mf0_c00459{transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);}
.m3b_c00459{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.mdf_c00459{transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);}
.m81_c00459{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mc1_c00459{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mde_c00459{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m48_c00459{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m10b_c00459{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m7e_c00459{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mf3_c00459{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.mab_c00459{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m2e_c00459{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m2c_c00459{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m40_c00459{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m72_c00459{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.mcf_c00459{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m7c_c00459{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.mb7_c00459{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.mb6_c00459{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m6_c00459{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m39_c00459{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m9d_c00459{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.mf9_c00459{transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);}
.m2b_c00459{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m125_c00459{transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);}
.maa_c00459{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m7f_c00459{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.mbb_c00459{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m76_c00459{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m5_c00459{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.ma3_c00459{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m94_c00459{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_c00459{transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);}
.mae_c00459{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m4_c00459{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.m54_c00459{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m2a_c00459{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m49_c00459{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m6b_c00459{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.mb1_c00459{transform:matrix(0.406825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406825,0.000000,0.000000,0.250000,0,0);}
.m117_c00459{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.m98_c00459{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mad_c00459{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m9e_c00459{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m7d_c00459{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mf8_c00459{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m6c_c00459{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m7_c00459{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m12_c00459{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m4c_c00459{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.mb4_c00459{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.mee_c00459{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m107_c00459{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.me7_c00459{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m2d_c00459{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.me8_c00459{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.m66_c00459{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m100_c00459{transform:matrix(0.424397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424397,0.000000,0.000000,0.250000,0,0);}
.mf1_c00459{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m5d_c00459{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mdc_c00459{transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);}
.m106_c00459{transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);}
.m47_c00459{transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);}
.m126_c00459{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.m9_c00459{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m82_c00459{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m71_c00459{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.mf5_c00459{transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);}
.mb9_c00459{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m1e_c00459{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m17_c00459{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m24_c00459{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m9a_c00459{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m10e_c00459{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m8f_c00459{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m105_c00459{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.ma8_c00459{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.mc3_c00459{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m87_c00459{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.mf2_c00459{transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);}
.m80_c00459{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mc4_c00459{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.me1_c00459{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.m123_c00459{transform:matrix(0.447614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447614,0.000000,0.000000,0.250000,0,0);}
.maf_c00459{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.mc8_c00459{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.mc2_c00459{transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);}
.m62_c00459{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m4f_c00459{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m85_c00459{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m34_c00459{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m4a_c00459{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.mf6_c00459{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.mb8_c00459{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m11e_c00459{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mf4_c00459{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m11_c00459{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.mfe_c00459{transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);}
.mb2_c00459{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.m6f_c00459{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.md5_c00459{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mca_c00459{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m111_c00459{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m35_c00459{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m8c_c00459{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m11d_c00459{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m3f_c00459{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m23_c00459{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.mc6_c00459{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.ma1_c00459{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.mef_c00459{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m70_c00459{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mfa_c00459{transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);}
.md8_c00459{transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);}
.m78_c00459{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m8b_c00459{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m90_c00459{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.m1_c00459{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.me4_c00459{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m11c_c00459{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.m8d_c00459{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m11f_c00459{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.me6_c00459{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m38_c00459{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);}
.m99_c00459{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m55_c00459{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m9f_c00459{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m96_c00459{transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506030,0.000000,0.000000,0.250000,0,0);}
.me0_c00459{transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);}
.m18_c00459{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m1d_c00459{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m37_c00459{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m1b_c00459{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.mf7_c00459{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.m8_c00459{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mce_c00459{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m56_c00459{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.mc9_c00459{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m16_c00459{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m22_c00459{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m121_c00459{transform:matrix(0.518235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518235,0.000000,0.000000,0.250000,0,0);}
.m4e_c00459{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m69_c00459{transform:matrix(0.519481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519481,0.000000,0.000000,0.250000,0,0);}
.m7a_c00459{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mfb_c00459{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m52_c00459{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m25_c00459{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m5b_c00459{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m43_c00459{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m2f_c00459{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.me9_c00459{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);}
.m86_c00459{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m84_c00459{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m45_c00459{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mc_c00459{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m102_c00459{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.mb0_c00459{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m1f_c00459{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m1a_c00459{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m6d_c00459{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m20_c00459{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m10_c00459{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mcb_c00459{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m116_c00459{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m31_c00459{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m3c_c00459{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.me3_c00459{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m14_c00459{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.mcd_c00459{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.me_c00459{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m79_c00459{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m26_c00459{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mdd_c00459{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m57_c00459{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m110_c00459{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m15_c00459{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m13_c00459{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m36_c00459{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m33_c00459{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.ma5_c00459{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m108_c00459{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m73_c00459{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m44_c00459{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.meb_c00459{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.mb3_c00459{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m67_c00459{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mbd_c00459{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m88_c00459{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m46_c00459{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m4b_c00459{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m63_c00459{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m19_c00459{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mf_c00459{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mbc_c00459{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m7b_c00459{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.me5_c00459{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.mbe_c00459{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m9b_c00459{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m65_c00459{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m10d_c00459{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m21_c00459{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m8e_c00459{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m91_c00459{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m92_c00459{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m2_c00459{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m60_c00459{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mc5_c00459{transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);}
.m113_c00459{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.ma_c00459{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m53_c00459{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m6e_c00459{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m4d_c00459{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.m29_c00459{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m120_c00459{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m8a_c00459{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.ma7_c00459{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m59_c00459{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.mb5_c00459{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.mda_c00459{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);}
.m6a_c00459{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m93_c00459{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.md6_c00459{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m97_c00459{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m109_c00459{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m95_c00459{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m118_c00459{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.m104_c00459{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m10a_c00459{transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);}
.mff_c00459{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.ma9_c00459{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.mc0_c00459{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m28_c00459{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.mba_c00459{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mac_c00459{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.m9c_c00459{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.ma2_c00459{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m30_c00459{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m75_c00459{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m42_c00459{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mbf_c00459{transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);}
.m5a_c00459{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m115_c00459{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m124_c00459{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m0_c00459{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);}
.m83_c00459{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);}
.md1_c00459{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m122_c00459{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.med_c00459{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m77_c00459{transform:matrix(0.632780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632780,0.000000,0.000000,0.250000,0,0);}
.m58_c00459{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.md9_c00459{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m119_c00459{transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);}
.mec_c00459{transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);}
.m127_c00459{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.md4_c00459{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);}
.m5e_c00459{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m112_c00459{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m10f_c00459{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m32_c00459{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m3a_c00459{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m11b_c00459{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m1c_c00459{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mfd_c00459{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.md7_c00459{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m103_c00459{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mea_c00459{transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);}
.mc7_c00459{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m11a_c00459{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.mfc_c00459{transform:matrix(0.697794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697794,0.000000,0.000000,0.250000,0,0);}
.m41_c00459{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.mcc_c00459{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m74_c00459{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m114_c00459{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);}
.m68_c00459{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m101_c00459{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.ma4_c00459{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m5f_c00459{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m50_c00459{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.md_c00459{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.md0_c00459{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.ma0_c00459{transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);}
.m61_c00459{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m51_c00459{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mb_c00459{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m64_c00459{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m3e_c00459{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.mdb_c00459{transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);}
.me2_c00459{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.md3_c00459{transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);}
.m5c_c00459{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m3_c00459{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00459{vertical-align:-4.320000px;}
.v0_c00459{vertical-align:0.000000px;}
.ls1_c00459{letter-spacing:0.000000px;}
.ls0_c00459{letter-spacing:14.817600px;}
.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;}
}
.ws1_c00459{word-spacing:-1.670383px;}
.ws2_c00459{word-spacing:0.000000px;}
.ws0_c00459{word-spacing:3.414018px;}
.fc0_c00459{color:transparent;}
.fs2_c00459{font-size:3.420000px;}
.fs8_c00459{font-size:13.620000px;}
.fs4_c00459{font-size:18.720000px;}
.fs0_c00459{font-size:20.400000px;}
.fs6_c00459{font-size:25.500000px;}
.fs1_c00459{font-size:28.920000px;}
.fs5_c00459{font-size:32.340000px;}
.fs3_c00459{font-size:35.700000px;}
.fs7_c00459{font-size:39.120000px;}
.y0_c00459{bottom:0.000000px;}
.yee_c00459{bottom:231.405000px;}
.yef_c00459{bottom:231.825000px;}
.yeb_c00459{bottom:232.470000px;}
.yf0_c00459{bottom:233.130000px;}
.yec_c00459{bottom:233.550000px;}
.yed_c00459{bottom:233.970000px;}
.ye3_c00459{bottom:245.550000px;}
.ye7_c00459{bottom:247.050000px;}
.ye5_c00459{bottom:247.470000px;}
.yea_c00459{bottom:247.905000px;}
.ye9_c00459{bottom:248.130000px;}
.ye4_c00459{bottom:248.550000px;}
.ye6_c00459{bottom:248.970000px;}
.ye8_c00459{bottom:250.050000px;}
.ye0_c00459{bottom:260.325000px;}
.ye2_c00459{bottom:261.405000px;}
.ye1_c00459{bottom:263.550000px;}
.ydb_c00459{bottom:276.405000px;}
.yde_c00459{bottom:276.825000px;}
.ydc_c00459{bottom:277.470000px;}
.ydd_c00459{bottom:277.905000px;}
.yda_c00459{bottom:278.550000px;}
.ydf_c00459{bottom:279.195000px;}
.yd8_c00459{bottom:290.325000px;}
.yd9_c00459{bottom:291.405000px;}
.yd3_c00459{bottom:305.550000px;}
.yd4_c00459{bottom:306.405000px;}
.yd7_c00459{bottom:307.470000px;}
.yd6_c00459{bottom:307.695000px;}
.yd5_c00459{bottom:308.550000px;}
.ycf_c00459{bottom:319.470000px;}
.yd2_c00459{bottom:320.325000px;}
.ycd_c00459{bottom:321.405000px;}
.ycc_c00459{bottom:322.050000px;}
.yce_c00459{bottom:322.470000px;}
.yd1_c00459{bottom:322.695000px;}
.yd0_c00459{bottom:323.550000px;}
.yc6_c00459{bottom:334.905000px;}
.yc9_c00459{bottom:335.325000px;}
.yca_c00459{bottom:336.405000px;}
.ycb_c00459{bottom:336.630000px;}
.yc7_c00459{bottom:337.695000px;}
.yc8_c00459{bottom:338.550000px;}
.ybf_c00459{bottom:349.050000px;}
.yc1_c00459{bottom:350.325000px;}
.yc3_c00459{bottom:350.550000px;}
.yc0_c00459{bottom:350.970000px;}
.yc5_c00459{bottom:351.405000px;}
.yc2_c00459{bottom:352.470000px;}
.yc4_c00459{bottom:353.550000px;}
.ybd_c00459{bottom:364.905000px;}
.ybe_c00459{bottom:365.325000px;}
.ybc_c00459{bottom:365.970000px;}
.yb4_c00459{bottom:379.050000px;}
.yb6_c00459{bottom:380.325000px;}
.yb5_c00459{bottom:380.970000px;}
.yba_c00459{bottom:381.405000px;}
.yb9_c00459{bottom:381.630000px;}
.yb7_c00459{bottom:382.470000px;}
.ybb_c00459{bottom:382.695000px;}
.yb8_c00459{bottom:383.550000px;}
.yb3_c00459{bottom:394.905000px;}
.yb2_c00459{bottom:397.050000px;}
.yae_c00459{bottom:408.825000px;}
.yac_c00459{bottom:409.905000px;}
.yaf_c00459{bottom:410.550000px;}
.yad_c00459{bottom:410.970000px;}
.yb1_c00459{bottom:412.050000px;}
.yb0_c00459{bottom:412.470000px;}
.yab_c00459{bottom:423.825000px;}
.ya8_c00459{bottom:424.470000px;}
.ya7_c00459{bottom:424.905000px;}
.ya9_c00459{bottom:425.325000px;}
.yaa_c00459{bottom:425.970000px;}
.ya6_c00459{bottom:427.050000px;}
.ya1_c00459{bottom:439.050000px;}
.ya3_c00459{bottom:439.905000px;}
.ya5_c00459{bottom:440.130000px;}
.ya4_c00459{bottom:440.970000px;}
.ya2_c00459{bottom:442.050000px;}
.y9e_c00459{bottom:453.825000px;}
.ya0_c00459{bottom:454.905000px;}
.y9c_c00459{bottom:455.130000px;}
.y9d_c00459{bottom:455.970000px;}
.y9f_c00459{bottom:456.195000px;}
.y9b_c00459{bottom:468.825000px;}
.y99_c00459{bottom:469.905000px;}
.y97_c00459{bottom:470.130000px;}
.y9a_c00459{bottom:470.970000px;}
.y98_c00459{bottom:472.050000px;}
.y95_c00459{bottom:490.245000px;}
.y91_c00459{bottom:491.325000px;}
.y93_c00459{bottom:491.745000px;}
.y94_c00459{bottom:492.630000px;}
.y96_c00459{bottom:493.470000px;}
.y92_c00459{bottom:493.905000px;}
.y8e_c00459{bottom:511.245000px;}
.y8c_c00459{bottom:511.905000px;}
.y90_c00459{bottom:512.130000px;}
.y8d_c00459{bottom:512.970000px;}
.y8f_c00459{bottom:513.405000px;}
.y8a_c00459{bottom:530.745000px;}
.y8b_c00459{bottom:532.905000px;}
.y89_c00459{bottom:549.825000px;}
.y88_c00459{bottom:550.245000px;}
.y86_c00459{bottom:551.325000px;}
.y84_c00459{bottom:552.405000px;}
.y87_c00459{bottom:552.630000px;}
.y85_c00459{bottom:553.470000px;}
.y80_c00459{bottom:569.745000px;}
.y82_c00459{bottom:569.970000px;}
.y7f_c00459{bottom:571.470000px;}
.y7e_c00459{bottom:571.905000px;}
.y83_c00459{bottom:572.130000px;}
.y81_c00459{bottom:572.970000px;}
.y7d_c00459{bottom:589.245000px;}
.y7b_c00459{bottom:591.405000px;}
.y7c_c00459{bottom:592.470000px;}
.y78_c00459{bottom:607.905000px;}
.y77_c00459{bottom:608.745000px;}
.y76_c00459{bottom:609.825000px;}
.y7a_c00459{bottom:610.245000px;}
.y75_c00459{bottom:610.905000px;}
.y79_c00459{bottom:612.405000px;}
.y73_c00459{bottom:629.745000px;}
.y72_c00459{bottom:630.405000px;}
.y74_c00459{bottom:631.905000px;}
.y6d_c00459{bottom:647.745000px;}
.y71_c00459{bottom:648.180000px;}
.y70_c00459{bottom:648.825000px;}
.y6f_c00459{bottom:649.245000px;}
.y6e_c00459{bottom:651.405000px;}
.y6c_c00459{bottom:667.470000px;}
.y68_c00459{bottom:668.745000px;}
.y6a_c00459{bottom:669.630000px;}
.y6b_c00459{bottom:670.905000px;}
.y69_c00459{bottom:671.970000px;}
.y65_c00459{bottom:688.245000px;}
.y63_c00459{bottom:689.970000px;}
.y64_c00459{bottom:690.405000px;}
.y66_c00459{bottom:690.630000px;}
.y67_c00459{bottom:691.470000px;}
.y62_c00459{bottom:706.470000px;}
.y60_c00459{bottom:707.745000px;}
.y61_c00459{bottom:709.470000px;}
.y5f_c00459{bottom:709.905000px;}
.y5c_c00459{bottom:726.405000px;}
.y59_c00459{bottom:727.245000px;}
.y5e_c00459{bottom:728.325000px;}
.y5a_c00459{bottom:729.405000px;}
.y5b_c00459{bottom:729.630000px;}
.y5d_c00459{bottom:730.470000px;}
.y53_c00459{bottom:746.745000px;}
.y57_c00459{bottom:747.180000px;}
.y58_c00459{bottom:748.245000px;}
.y52_c00459{bottom:748.905000px;}
.y55_c00459{bottom:749.130000px;}
.y54_c00459{bottom:749.970000px;}
.y56_c00459{bottom:750.405000px;}
.y51_c00459{bottom:765.405000px;}
.y4c_c00459{bottom:766.245000px;}
.y4f_c00459{bottom:767.325000px;}
.y50_c00459{bottom:767.745000px;}
.y4d_c00459{bottom:769.470000px;}
.y4e_c00459{bottom:769.905000px;}
.y4b_c00459{bottom:785.745000px;}
.y47_c00459{bottom:785.970000px;}
.y48_c00459{bottom:787.245000px;}
.y46_c00459{bottom:787.905000px;}
.y49_c00459{bottom:788.970000px;}
.y4a_c00459{bottom:789.405000px;}
.y43_c00459{bottom:804.405000px;}
.y40_c00459{bottom:805.245000px;}
.y44_c00459{bottom:806.745000px;}
.y41_c00459{bottom:807.405000px;}
.y42_c00459{bottom:807.825000px;}
.y45_c00459{bottom:808.905000px;}
.y3f_c00459{bottom:826.245000px;}
.y3b_c00459{bottom:827.130000px;}
.y3e_c00459{bottom:827.325000px;}
.y3c_c00459{bottom:827.970000px;}
.y3d_c00459{bottom:828.405000px;}
.y3a_c00459{bottom:845.745000px;}
.y36_c00459{bottom:846.825000px;}
.y37_c00459{bottom:847.470000px;}
.y35_c00459{bottom:847.905000px;}
.y38_c00459{bottom:848.130000px;}
.y39_c00459{bottom:848.970000px;}
.y32_c00459{bottom:865.245000px;}
.y30_c00459{bottom:867.405000px;}
.y34_c00459{bottom:867.630000px;}
.y33_c00459{bottom:868.470000px;}
.y31_c00459{bottom:868.920000px;}
.y2e_c00459{bottom:884.970000px;}
.y2c_c00459{bottom:885.630000px;}
.y2d_c00459{bottom:886.905000px;}
.y2f_c00459{bottom:887.970000px;}
.y27_c00459{bottom:904.245000px;}
.y28_c00459{bottom:905.745000px;}
.y2b_c00459{bottom:906.825000px;}
.y2a_c00459{bottom:907.470000px;}
.y29_c00459{bottom:907.905000px;}
.y25_c00459{bottom:925.245000px;}
.y24_c00459{bottom:925.905000px;}
.y26_c00459{bottom:927.405000px;}
.y23_c00459{bottom:942.405000px;}
.y1f_c00459{bottom:944.130000px;}
.y20_c00459{bottom:944.745000px;}
.y21_c00459{bottom:946.905000px;}
.y22_c00459{bottom:947.970000px;}
.y1e_c00459{bottom:961.905000px;}
.y19_c00459{bottom:962.745000px;}
.y1d_c00459{bottom:963.405000px;}
.y1a_c00459{bottom:964.245000px;}
.y18_c00459{bottom:964.470000px;}
.y1c_c00459{bottom:965.325000px;}
.y1b_c00459{bottom:966.405000px;}
.y14_c00459{bottom:982.470000px;}
.y13_c00459{bottom:983.745000px;}
.y12_c00459{bottom:984.405000px;}
.y17_c00459{bottom:985.470000px;}
.y16_c00459{bottom:985.905000px;}
.y15_c00459{bottom:986.970000px;}
.y11_c00459{bottom:1003.245000px;}
.y10_c00459{bottom:1004.325000px;}
.yf_c00459{bottom:1004.970000px;}
.ye_c00459{bottom:1005.405000px;}
.yb_c00459{bottom:1022.745000px;}
.ya_c00459{bottom:1023.405000px;}
.yd_c00459{bottom:1024.470000px;}
.yc_c00459{bottom:1024.905000px;}
.y9_c00459{bottom:1042.245000px;}
.y6_c00459{bottom:1043.130000px;}
.y8_c00459{bottom:1043.325000px;}
.y7_c00459{bottom:1044.405000px;}
.y5_c00459{bottom:1061.745000px;}
.y3_c00459{bottom:1063.905000px;}
.y4_c00459{bottom:1063.920000px;}
.y2_c00459{bottom:1099.905000px;}
.y1_c00459{bottom:1102.050000px;}
.h3_c00459{height:4.206533px;}
.h9_c00459{height:16.752334px;}
.h5_c00459{height:23.025234px;}
.h1_c00459{height:25.091602px;}
.ha_c00459{height:27.044502px;}
.h7_c00459{height:31.364502px;}
.h2_c00459{height:35.571035px;}
.h6_c00459{height:39.777568px;}
.h4_c00459{height:43.910303px;}
.h8_c00459{height:48.116836px;}
.h0_c00459{height:1335.000000px;}
.w0_c00459{width:880.500000px;}
.x0_c00459{left:0.000000px;}
.x4e_c00459{left:150.420000px;}
.x2_c00459{left:151.500000px;}
.x7f_c00459{left:152.580000px;}
.xfc_c00459{left:154.920000px;}
.x3_c00459{left:166.080000px;}
.x61_c00459{left:167.580000px;}
.x6b_c00459{left:169.500000px;}
.x74_c00459{left:171.000000px;}
.x3b_c00459{left:172.500000px;}
.xd_c00459{left:173.580000px;}
.x33_c00459{left:179.580000px;}
.x80_c00459{left:181.080000px;}
.xe5_c00459{left:184.500000px;}
.xf5_c00459{left:185.580000px;}
.xf8_c00459{left:187.500000px;}
.x75_c00459{left:189.420000px;}
.xcf_c00459{left:196.500000px;}
.x58_c00459{left:198.000000px;}
.xfd_c00459{left:201.000000px;}
.x87_c00459{left:205.920000px;}
.xbe_c00459{left:208.500000px;}
.x81_c00459{left:211.500000px;}
.x8f_c00459{left:213.000000px;}
.xa8_c00459{left:214.500000px;}
.x29_c00459{left:215.580000px;}
.x96_c00459{left:220.500000px;}
.xd0_c00459{left:223.080000px;}
.x3c_c00459{left:226.920000px;}
.x17_c00459{left:228.420000px;}
.x49_c00459{left:231.000000px;}
.xe3_c00459{left:232.920000px;}
.xe0_c00459{left:234.420000px;}
.x21_c00459{left:237.000000px;}
.xea_c00459{left:241.500000px;}
.xe_c00459{left:243.000000px;}
.x6c_c00459{left:244.080000px;}
.xb6_c00459{left:246.000000px;}
.x2a_c00459{left:247.500000px;}
.xbf_c00459{left:249.000000px;}
.x34_c00459{left:250.080000px;}
.x62_c00459{left:252.000000px;}
.xc6_c00459{left:254.580000px;}
.x97_c00459{left:256.080000px;}
.x59_c00459{left:257.580000px;}
.x4_c00459{left:259.500000px;}
.xf9_c00459{left:260.580000px;}
.x6d_c00459{left:262.500000px;}
.xd8_c00459{left:264.000000px;}
.xe6_c00459{left:265.500000px;}
.xb7_c00459{left:268.500000px;}
.x63_c00459{left:271.080000px;}
.xa0_c00459{left:273.420000px;}
.xf_c00459{left:277.500000px;}
.x5_c00459{left:278.580000px;}
.x2b_c00459{left:281.580000px;}
.xc7_c00459{left:283.080000px;}
.x3d_c00459{left:285.420000px;}
.xd9_c00459{left:288.420000px;}
.x82_c00459{left:289.920000px;}
.x18_c00459{left:291.000000px;}
.x76_c00459{left:292.500000px;}
.x100_c00459{left:294.420000px;}
.x10_c00459{left:295.500000px;}
.xfe_c00459{left:297.420000px;}
.x6e_c00459{left:300.000000px;}
.x2c_c00459{left:301.920000px;}
.xc8_c00459{left:303.420000px;}
.x5a_c00459{left:304.920000px;}
.x108_c00459{left:309.855000px;}
.x101_c00459{left:313.080000px;}
.x22_c00459{left:314.580000px;}
.xe7_c00459{left:319.500000px;}
.xa1_c00459{left:321.000000px;}
.x90_c00459{left:322.500000px;}
.xe1_c00459{left:324.420000px;}
.x4f_c00459{left:325.500000px;}
.x109_c00459{left:326.580000px;}
.x3e_c00459{left:327.645000px;}
.xc9_c00459{left:328.920000px;}
.x83_c00459{left:331.500000px;}
.x35_c00459{left:333.000000px;}
.x98_c00459{left:336.420000px;}
.x102_c00459{left:337.500000px;}
.xb0_c00459{left:339.420000px;}
.x88_c00459{left:340.500000px;}
.xd4_c00459{left:342.000000px;}
.x77_c00459{left:343.920000px;}
.x64_c00459{left:345.000000px;}
.xf1_c00459{left:346.500000px;}
.x5b_c00459{left:348.000000px;}
.x3f_c00459{left:349.920000px;}
.x10a_c00459{left:351.000000px;}
.x50_c00459{left:352.080000px;}
.xda_c00459{left:354.000000px;}
.x99_c00459{left:355.500000px;}
.x11_c00459{left:359.580000px;}
.xe2_c00459{left:361.080000px;}
.xca_c00459{left:363.420000px;}
.x6_c00459{left:364.920000px;}
.x19_c00459{left:367.080000px;}
.xa2_c00459{left:370.080000px;}
.x23_c00459{left:371.580000px;}
.xd1_c00459{left:373.920000px;}
.x103_c00459{left:375.420000px;}
.x89_c00459{left:376.920000px;}
.xa9_c00459{left:378.420000px;}
.x91_c00459{left:381.000000px;}
.xed_c00459{left:382.920000px;}
.x6f_c00459{left:385.500000px;}
.x78_c00459{left:387.000000px;}
.x51_c00459{left:388.080000px;}
.x36_c00459{left:390.420000px;}
.x84_c00459{left:391.500000px;}
.x2d_c00459{left:394.080000px;}
.x4a_c00459{left:397.500000px;}
.x65_c00459{left:399.000000px;}
.xff_c00459{left:400.500000px;}
.x1a_c00459{left:402.420000px;}
.x12_c00459{left:405.420000px;}
.x1_c00459{left:406.500000px;}
.x106_c00459{left:409.080000px;}
.x9a_c00459{left:410.580000px;}
.xc3_c00459{left:413.580000px;}
.x5c_c00459{left:418.500000px;}
.xeb_c00459{left:421.500000px;}
.xee_c00459{left:427.920000px;}
.xfa_c00459{left:430.500000px;}
.x1b_c00459{left:432.000000px;}
.xf6_c00459{left:433.080000px;}
.x85_c00459{left:434.580000px;}
.x92_c00459{left:435.645000px;}
.x5d_c00459{left:437.580000px;}
.xb8_c00459{left:441.420000px;}
.xd2_c00459{left:442.920000px;}
.x40_c00459{left:444.000000px;}
.x66_c00459{left:445.500000px;}
.x9b_c00459{left:447.420000px;}
.x8a_c00459{left:448.920000px;}
.x52_c00459{left:450.420000px;}
.x79_c00459{left:451.500000px;}
.xdb_c00459{left:453.420000px;}
.x2e_c00459{left:455.775000px;}
.x7_c00459{left:457.080000px;}
.x24_c00459{left:459.000000px;}
.xa3_c00459{left:460.920000px;}
.xe4_c00459{left:462.000000px;}
.x41_c00459{left:463.500000px;}
.x4b_c00459{left:466.920000px;}
.xb1_c00459{left:471.000000px;}
.x13_c00459{left:472.080000px;}
.x9c_c00459{left:474.420000px;}
.x67_c00459{left:477.000000px;}
.xf2_c00459{left:478.920000px;}
.xb9_c00459{left:480.420000px;}
.x7a_c00459{left:481.920000px;}
.x8_c00459{left:483.000000px;}
.x42_c00459{left:484.500000px;}
.x53_c00459{left:485.580000px;}
.xcb_c00459{left:487.500000px;}
.x70_c00459{left:490.500000px;}
.xaa_c00459{left:491.580000px;}
.x93_c00459{left:493.920000px;}
.x68_c00459{left:495.000000px;}
.x1c_c00459{left:496.500000px;}
.xe8_c00459{left:498.000000px;}
.x5e_c00459{left:502.500000px;}
.x71_c00459{left:504.420000px;}
.xa4_c00459{left:506.355000px;}
.x7b_c00459{left:508.080000px;}
.xba_c00459{left:510.420000px;}
.x25_c00459{left:512.580000px;}
.x86_c00459{left:516.000000px;}
.x1d_c00459{left:517.080000px;}
.xf3_c00459{left:523.920000px;}
.x5f_c00459{left:525.000000px;}
.x37_c00459{left:526.080000px;}
.xd5_c00459{left:528.000000px;}
.x14_c00459{left:529.920000px;}
.x4c_c00459{left:532.500000px;}
.x8b_c00459{left:534.420000px;}
.xc0_c00459{left:537.420000px;}
.x54_c00459{left:540.000000px;}
.x26_c00459{left:546.000000px;}
.x43_c00459{left:549.000000px;}
.xdc_c00459{left:550.500000px;}
.x7c_c00459{left:553.080000px;}
.x9_c00459{left:555.000000px;}
.x2f_c00459{left:556.500000px;}
.x60_c00459{left:557.580000px;}
.xef_c00459{left:559.080000px;}
.xab_c00459{left:560.580000px;}
.x94_c00459{left:562.920000px;}
.xcc_c00459{left:564.000000px;}
.x1e_c00459{left:565.080000px;}
.x15_c00459{left:567.000000px;}
.x38_c00459{left:570.420000px;}
.x7d_c00459{left:571.500000px;}
.x9d_c00459{left:573.420000px;}
.x69_c00459{left:574.500000px;}
.xc1_c00459{left:576.000000px;}
.xd6_c00459{left:577.500000px;}
.xcd_c00459{left:578.580000px;}
.xbb_c00459{left:580.500000px;}
.xac_c00459{left:582.420000px;}
.x44_c00459{left:583.500000px;}
.xb2_c00459{left:585.420000px;}
.x30_c00459{left:586.500000px;}
.xa_c00459{left:587.580000px;}
.x72_c00459{left:594.000000px;}
.xc4_c00459{left:595.920000px;}
.xa5_c00459{left:597.420000px;}
.xdd_c00459{left:598.500000px;}
.x8c_c00459{left:607.500000px;}
.x9e_c00459{left:609.000000px;}
.x31_c00459{left:610.500000px;}
.x45_c00459{left:612.000000px;}
.x55_c00459{left:613.080000px;}
.x27_c00459{left:615.000000px;}
.xec_c00459{left:616.500000px;}
.xfb_c00459{left:618.000000px;}
.xbc_c00459{left:619.920000px;}
.xf7_c00459{left:621.645000px;}
.xad_c00459{left:626.580000px;}
.xb_c00459{left:628.080000px;}
.xce_c00459{left:631.080000px;}
.x95_c00459{left:633.420000px;}
.x8d_c00459{left:635.145000px;}
.x28_c00459{left:637.500000px;}
.xde_c00459{left:639.420000px;}
.xb3_c00459{left:640.500000px;}
.x56_c00459{left:642.420000px;}
.x39_c00459{left:644.580000px;}
.x1f_c00459{left:649.080000px;}
.xae_c00459{left:651.420000px;}
.xe9_c00459{left:653.580000px;}
.x46_c00459{left:656.580000px;}
.xd7_c00459{left:661.500000px;}
.xc2_c00459{left:663.000000px;}
.x16_c00459{left:664.080000px;}
.xd3_c00459{left:666.000000px;}
.x57_c00459{left:669.420000px;}
.xf4_c00459{left:670.500000px;}
.x3a_c00459{left:672.000000px;}
.xa6_c00459{left:675.000000px;}
.x47_c00459{left:678.420000px;}
.x6a_c00459{left:679.500000px;}
.xaf_c00459{left:681.420000px;}
.xb4_c00459{left:682.920000px;}
.x73_c00459{left:684.000000px;}
.x7e_c00459{left:688.500000px;}
.xbd_c00459{left:689.580000px;}
.x104_c00459{left:691.500000px;}
.x8e_c00459{left:694.080000px;}
.xc_c00459{left:696.420000px;}
.xf0_c00459{left:697.920000px;}
.x105_c00459{left:702.000000px;}
.x20_c00459{left:703.080000px;}
.x48_c00459{left:705.000000px;}
.xb5_c00459{left:706.500000px;}
.x32_c00459{left:708.420000px;}
.xc5_c00459{left:709.920000px;}
.x4d_c00459{left:713.145000px;}
.xdf_c00459{left:716.580000px;}
.x9f_c00459{left:718.500000px;}
.xa7_c00459{left:719.580000px;}
.x107_c00459{left:726.000000px;}
@media print{
.v1_c00459{vertical-align:-3.840000pt;}
.v0_c00459{vertical-align:0.000000pt;}
.ls1_c00459{letter-spacing:0.000000pt;}
.ls0_c00459{letter-spacing:13.171200pt;}
.ws1_c00459{word-spacing:-1.484785pt;}
.ws2_c00459{word-spacing:0.000000pt;}
.ws0_c00459{word-spacing:3.034683pt;}
.fs2_c00459{font-size:3.040000pt;}
.fs8_c00459{font-size:12.106667pt;}
.fs4_c00459{font-size:16.640000pt;}
.fs0_c00459{font-size:18.133333pt;}
.fs6_c00459{font-size:22.666667pt;}
.fs1_c00459{font-size:25.706667pt;}
.fs5_c00459{font-size:28.746667pt;}
.fs3_c00459{font-size:31.733333pt;}
.fs7_c00459{font-size:34.773333pt;}
.y0_c00459{bottom:0.000000pt;}
.yee_c00459{bottom:205.693333pt;}
.yef_c00459{bottom:206.066667pt;}
.yeb_c00459{bottom:206.640000pt;}
.yf0_c00459{bottom:207.226667pt;}
.yec_c00459{bottom:207.600000pt;}
.yed_c00459{bottom:207.973333pt;}
.ye3_c00459{bottom:218.266667pt;}
.ye7_c00459{bottom:219.600000pt;}
.ye5_c00459{bottom:219.973333pt;}
.yea_c00459{bottom:220.360000pt;}
.ye9_c00459{bottom:220.560000pt;}
.ye4_c00459{bottom:220.933333pt;}
.ye6_c00459{bottom:221.306667pt;}
.ye8_c00459{bottom:222.266667pt;}
.ye0_c00459{bottom:231.400000pt;}
.ye2_c00459{bottom:232.360000pt;}
.ye1_c00459{bottom:234.266667pt;}
.ydb_c00459{bottom:245.693333pt;}
.yde_c00459{bottom:246.066667pt;}
.ydc_c00459{bottom:246.640000pt;}
.ydd_c00459{bottom:247.026667pt;}
.yda_c00459{bottom:247.600000pt;}
.ydf_c00459{bottom:248.173333pt;}
.yd8_c00459{bottom:258.066667pt;}
.yd9_c00459{bottom:259.026667pt;}
.yd3_c00459{bottom:271.600000pt;}
.yd4_c00459{bottom:272.360000pt;}
.yd7_c00459{bottom:273.306667pt;}
.yd6_c00459{bottom:273.506667pt;}
.yd5_c00459{bottom:274.266667pt;}
.ycf_c00459{bottom:283.973333pt;}
.yd2_c00459{bottom:284.733333pt;}
.ycd_c00459{bottom:285.693333pt;}
.ycc_c00459{bottom:286.266667pt;}
.yce_c00459{bottom:286.640000pt;}
.yd1_c00459{bottom:286.840000pt;}
.yd0_c00459{bottom:287.600000pt;}
.yc6_c00459{bottom:297.693333pt;}
.yc9_c00459{bottom:298.066667pt;}
.yca_c00459{bottom:299.026667pt;}
.ycb_c00459{bottom:299.226667pt;}
.yc7_c00459{bottom:300.173333pt;}
.yc8_c00459{bottom:300.933333pt;}
.ybf_c00459{bottom:310.266667pt;}
.yc1_c00459{bottom:311.400000pt;}
.yc3_c00459{bottom:311.600000pt;}
.yc0_c00459{bottom:311.973333pt;}
.yc5_c00459{bottom:312.360000pt;}
.yc2_c00459{bottom:313.306667pt;}
.yc4_c00459{bottom:314.266667pt;}
.ybd_c00459{bottom:324.360000pt;}
.ybe_c00459{bottom:324.733333pt;}
.ybc_c00459{bottom:325.306667pt;}
.yb4_c00459{bottom:336.933333pt;}
.yb6_c00459{bottom:338.066667pt;}
.yb5_c00459{bottom:338.640000pt;}
.yba_c00459{bottom:339.026667pt;}
.yb9_c00459{bottom:339.226667pt;}
.yb7_c00459{bottom:339.973333pt;}
.ybb_c00459{bottom:340.173333pt;}
.yb8_c00459{bottom:340.933333pt;}
.yb3_c00459{bottom:351.026667pt;}
.yb2_c00459{bottom:352.933333pt;}
.yae_c00459{bottom:363.400000pt;}
.yac_c00459{bottom:364.360000pt;}
.yaf_c00459{bottom:364.933333pt;}
.yad_c00459{bottom:365.306667pt;}
.yb1_c00459{bottom:366.266667pt;}
.yb0_c00459{bottom:366.640000pt;}
.yab_c00459{bottom:376.733333pt;}
.ya8_c00459{bottom:377.306667pt;}
.ya7_c00459{bottom:377.693333pt;}
.ya9_c00459{bottom:378.066667pt;}
.yaa_c00459{bottom:378.640000pt;}
.ya6_c00459{bottom:379.600000pt;}
.ya1_c00459{bottom:390.266667pt;}
.ya3_c00459{bottom:391.026667pt;}
.ya5_c00459{bottom:391.226667pt;}
.ya4_c00459{bottom:391.973333pt;}
.ya2_c00459{bottom:392.933333pt;}
.y9e_c00459{bottom:403.400000pt;}
.ya0_c00459{bottom:404.360000pt;}
.y9c_c00459{bottom:404.560000pt;}
.y9d_c00459{bottom:405.306667pt;}
.y9f_c00459{bottom:405.506667pt;}
.y9b_c00459{bottom:416.733333pt;}
.y99_c00459{bottom:417.693333pt;}
.y97_c00459{bottom:417.893333pt;}
.y9a_c00459{bottom:418.640000pt;}
.y98_c00459{bottom:419.600000pt;}
.y95_c00459{bottom:435.773333pt;}
.y91_c00459{bottom:436.733333pt;}
.y93_c00459{bottom:437.106667pt;}
.y94_c00459{bottom:437.893333pt;}
.y96_c00459{bottom:438.640000pt;}
.y92_c00459{bottom:439.026667pt;}
.y8e_c00459{bottom:454.440000pt;}
.y8c_c00459{bottom:455.026667pt;}
.y90_c00459{bottom:455.226667pt;}
.y8d_c00459{bottom:455.973333pt;}
.y8f_c00459{bottom:456.360000pt;}
.y8a_c00459{bottom:471.773333pt;}
.y8b_c00459{bottom:473.693333pt;}
.y89_c00459{bottom:488.733333pt;}
.y88_c00459{bottom:489.106667pt;}
.y86_c00459{bottom:490.066667pt;}
.y84_c00459{bottom:491.026667pt;}
.y87_c00459{bottom:491.226667pt;}
.y85_c00459{bottom:491.973333pt;}
.y80_c00459{bottom:506.440000pt;}
.y82_c00459{bottom:506.640000pt;}
.y7f_c00459{bottom:507.973333pt;}
.y7e_c00459{bottom:508.360000pt;}
.y83_c00459{bottom:508.560000pt;}
.y81_c00459{bottom:509.306667pt;}
.y7d_c00459{bottom:523.773333pt;}
.y7b_c00459{bottom:525.693333pt;}
.y7c_c00459{bottom:526.640000pt;}
.y78_c00459{bottom:540.360000pt;}
.y77_c00459{bottom:541.106667pt;}
.y76_c00459{bottom:542.066667pt;}
.y7a_c00459{bottom:542.440000pt;}
.y75_c00459{bottom:543.026667pt;}
.y79_c00459{bottom:544.360000pt;}
.y73_c00459{bottom:559.773333pt;}
.y72_c00459{bottom:560.360000pt;}
.y74_c00459{bottom:561.693333pt;}
.y6d_c00459{bottom:575.773333pt;}
.y71_c00459{bottom:576.160000pt;}
.y70_c00459{bottom:576.733333pt;}
.y6f_c00459{bottom:577.106667pt;}
.y6e_c00459{bottom:579.026667pt;}
.y6c_c00459{bottom:593.306667pt;}
.y68_c00459{bottom:594.440000pt;}
.y6a_c00459{bottom:595.226667pt;}
.y6b_c00459{bottom:596.360000pt;}
.y69_c00459{bottom:597.306667pt;}
.y65_c00459{bottom:611.773333pt;}
.y63_c00459{bottom:613.306667pt;}
.y64_c00459{bottom:613.693333pt;}
.y66_c00459{bottom:613.893333pt;}
.y67_c00459{bottom:614.640000pt;}
.y62_c00459{bottom:627.973333pt;}
.y60_c00459{bottom:629.106667pt;}
.y61_c00459{bottom:630.640000pt;}
.y5f_c00459{bottom:631.026667pt;}
.y5c_c00459{bottom:645.693333pt;}
.y59_c00459{bottom:646.440000pt;}
.y5e_c00459{bottom:647.400000pt;}
.y5a_c00459{bottom:648.360000pt;}
.y5b_c00459{bottom:648.560000pt;}
.y5d_c00459{bottom:649.306667pt;}
.y53_c00459{bottom:663.773333pt;}
.y57_c00459{bottom:664.160000pt;}
.y58_c00459{bottom:665.106667pt;}
.y52_c00459{bottom:665.693333pt;}
.y55_c00459{bottom:665.893333pt;}
.y54_c00459{bottom:666.640000pt;}
.y56_c00459{bottom:667.026667pt;}
.y51_c00459{bottom:680.360000pt;}
.y4c_c00459{bottom:681.106667pt;}
.y4f_c00459{bottom:682.066667pt;}
.y50_c00459{bottom:682.440000pt;}
.y4d_c00459{bottom:683.973333pt;}
.y4e_c00459{bottom:684.360000pt;}
.y4b_c00459{bottom:698.440000pt;}
.y47_c00459{bottom:698.640000pt;}
.y48_c00459{bottom:699.773333pt;}
.y46_c00459{bottom:700.360000pt;}
.y49_c00459{bottom:701.306667pt;}
.y4a_c00459{bottom:701.693333pt;}
.y43_c00459{bottom:715.026667pt;}
.y40_c00459{bottom:715.773333pt;}
.y44_c00459{bottom:717.106667pt;}
.y41_c00459{bottom:717.693333pt;}
.y42_c00459{bottom:718.066667pt;}
.y45_c00459{bottom:719.026667pt;}
.y3f_c00459{bottom:734.440000pt;}
.y3b_c00459{bottom:735.226667pt;}
.y3e_c00459{bottom:735.400000pt;}
.y3c_c00459{bottom:735.973333pt;}
.y3d_c00459{bottom:736.360000pt;}
.y3a_c00459{bottom:751.773333pt;}
.y36_c00459{bottom:752.733333pt;}
.y37_c00459{bottom:753.306667pt;}
.y35_c00459{bottom:753.693333pt;}
.y38_c00459{bottom:753.893333pt;}
.y39_c00459{bottom:754.640000pt;}
.y32_c00459{bottom:769.106667pt;}
.y30_c00459{bottom:771.026667pt;}
.y34_c00459{bottom:771.226667pt;}
.y33_c00459{bottom:771.973333pt;}
.y31_c00459{bottom:772.373333pt;}
.y2e_c00459{bottom:786.640000pt;}
.y2c_c00459{bottom:787.226667pt;}
.y2d_c00459{bottom:788.360000pt;}
.y2f_c00459{bottom:789.306667pt;}
.y27_c00459{bottom:803.773333pt;}
.y28_c00459{bottom:805.106667pt;}
.y2b_c00459{bottom:806.066667pt;}
.y2a_c00459{bottom:806.640000pt;}
.y29_c00459{bottom:807.026667pt;}
.y25_c00459{bottom:822.440000pt;}
.y24_c00459{bottom:823.026667pt;}
.y26_c00459{bottom:824.360000pt;}
.y23_c00459{bottom:837.693333pt;}
.y1f_c00459{bottom:839.226667pt;}
.y20_c00459{bottom:839.773333pt;}
.y21_c00459{bottom:841.693333pt;}
.y22_c00459{bottom:842.640000pt;}
.y1e_c00459{bottom:855.026667pt;}
.y19_c00459{bottom:855.773333pt;}
.y1d_c00459{bottom:856.360000pt;}
.y1a_c00459{bottom:857.106667pt;}
.y18_c00459{bottom:857.306667pt;}
.y1c_c00459{bottom:858.066667pt;}
.y1b_c00459{bottom:859.026667pt;}
.y14_c00459{bottom:873.306667pt;}
.y13_c00459{bottom:874.440000pt;}
.y12_c00459{bottom:875.026667pt;}
.y17_c00459{bottom:875.973333pt;}
.y16_c00459{bottom:876.360000pt;}
.y15_c00459{bottom:877.306667pt;}
.y11_c00459{bottom:891.773333pt;}
.y10_c00459{bottom:892.733333pt;}
.yf_c00459{bottom:893.306667pt;}
.ye_c00459{bottom:893.693333pt;}
.yb_c00459{bottom:909.106667pt;}
.ya_c00459{bottom:909.693333pt;}
.yd_c00459{bottom:910.640000pt;}
.yc_c00459{bottom:911.026667pt;}
.y9_c00459{bottom:926.440000pt;}
.y6_c00459{bottom:927.226667pt;}
.y8_c00459{bottom:927.400000pt;}
.y7_c00459{bottom:928.360000pt;}
.y5_c00459{bottom:943.773333pt;}
.y3_c00459{bottom:945.693333pt;}
.y4_c00459{bottom:945.706667pt;}
.y2_c00459{bottom:977.693333pt;}
.y1_c00459{bottom:979.600000pt;}
.h3_c00459{height:3.739141pt;}
.h9_c00459{height:14.890964pt;}
.h5_c00459{height:20.466875pt;}
.h1_c00459{height:22.303646pt;}
.ha_c00459{height:24.039557pt;}
.h7_c00459{height:27.879557pt;}
.h2_c00459{height:31.618698pt;}
.h6_c00459{height:35.357839pt;}
.h4_c00459{height:39.031380pt;}
.h8_c00459{height:42.770521pt;}
.h0_c00459{height:1186.666667pt;}
.w0_c00459{width:782.666667pt;}
.x0_c00459{left:0.000000pt;}
.x4e_c00459{left:133.706667pt;}
.x2_c00459{left:134.666667pt;}
.x7f_c00459{left:135.626667pt;}
.xfc_c00459{left:137.706667pt;}
.x3_c00459{left:147.626667pt;}
.x61_c00459{left:148.960000pt;}
.x6b_c00459{left:150.666667pt;}
.x74_c00459{left:152.000000pt;}
.x3b_c00459{left:153.333333pt;}
.xd_c00459{left:154.293333pt;}
.x33_c00459{left:159.626667pt;}
.x80_c00459{left:160.960000pt;}
.xe5_c00459{left:164.000000pt;}
.xf5_c00459{left:164.960000pt;}
.xf8_c00459{left:166.666667pt;}
.x75_c00459{left:168.373333pt;}
.xcf_c00459{left:174.666667pt;}
.x58_c00459{left:176.000000pt;}
.xfd_c00459{left:178.666667pt;}
.x87_c00459{left:183.040000pt;}
.xbe_c00459{left:185.333333pt;}
.x81_c00459{left:188.000000pt;}
.x8f_c00459{left:189.333333pt;}
.xa8_c00459{left:190.666667pt;}
.x29_c00459{left:191.626667pt;}
.x96_c00459{left:196.000000pt;}
.xd0_c00459{left:198.293333pt;}
.x3c_c00459{left:201.706667pt;}
.x17_c00459{left:203.040000pt;}
.x49_c00459{left:205.333333pt;}
.xe3_c00459{left:207.040000pt;}
.xe0_c00459{left:208.373333pt;}
.x21_c00459{left:210.666667pt;}
.xea_c00459{left:214.666667pt;}
.xe_c00459{left:216.000000pt;}
.x6c_c00459{left:216.960000pt;}
.xb6_c00459{left:218.666667pt;}
.x2a_c00459{left:220.000000pt;}
.xbf_c00459{left:221.333333pt;}
.x34_c00459{left:222.293333pt;}
.x62_c00459{left:224.000000pt;}
.xc6_c00459{left:226.293333pt;}
.x97_c00459{left:227.626667pt;}
.x59_c00459{left:228.960000pt;}
.x4_c00459{left:230.666667pt;}
.xf9_c00459{left:231.626667pt;}
.x6d_c00459{left:233.333333pt;}
.xd8_c00459{left:234.666667pt;}
.xe6_c00459{left:236.000000pt;}
.xb7_c00459{left:238.666667pt;}
.x63_c00459{left:240.960000pt;}
.xa0_c00459{left:243.040000pt;}
.xf_c00459{left:246.666667pt;}
.x5_c00459{left:247.626667pt;}
.x2b_c00459{left:250.293333pt;}
.xc7_c00459{left:251.626667pt;}
.x3d_c00459{left:253.706667pt;}
.xd9_c00459{left:256.373333pt;}
.x82_c00459{left:257.706667pt;}
.x18_c00459{left:258.666667pt;}
.x76_c00459{left:260.000000pt;}
.x100_c00459{left:261.706667pt;}
.x10_c00459{left:262.666667pt;}
.xfe_c00459{left:264.373333pt;}
.x6e_c00459{left:266.666667pt;}
.x2c_c00459{left:268.373333pt;}
.xc8_c00459{left:269.706667pt;}
.x5a_c00459{left:271.040000pt;}
.x108_c00459{left:275.426667pt;}
.x101_c00459{left:278.293333pt;}
.x22_c00459{left:279.626667pt;}
.xe7_c00459{left:284.000000pt;}
.xa1_c00459{left:285.333333pt;}
.x90_c00459{left:286.666667pt;}
.xe1_c00459{left:288.373333pt;}
.x4f_c00459{left:289.333333pt;}
.x109_c00459{left:290.293333pt;}
.x3e_c00459{left:291.240000pt;}
.xc9_c00459{left:292.373333pt;}
.x83_c00459{left:294.666667pt;}
.x35_c00459{left:296.000000pt;}
.x98_c00459{left:299.040000pt;}
.x102_c00459{left:300.000000pt;}
.xb0_c00459{left:301.706667pt;}
.x88_c00459{left:302.666667pt;}
.xd4_c00459{left:304.000000pt;}
.x77_c00459{left:305.706667pt;}
.x64_c00459{left:306.666667pt;}
.xf1_c00459{left:308.000000pt;}
.x5b_c00459{left:309.333333pt;}
.x3f_c00459{left:311.040000pt;}
.x10a_c00459{left:312.000000pt;}
.x50_c00459{left:312.960000pt;}
.xda_c00459{left:314.666667pt;}
.x99_c00459{left:316.000000pt;}
.x11_c00459{left:319.626667pt;}
.xe2_c00459{left:320.960000pt;}
.xca_c00459{left:323.040000pt;}
.x6_c00459{left:324.373333pt;}
.x19_c00459{left:326.293333pt;}
.xa2_c00459{left:328.960000pt;}
.x23_c00459{left:330.293333pt;}
.xd1_c00459{left:332.373333pt;}
.x103_c00459{left:333.706667pt;}
.x89_c00459{left:335.040000pt;}
.xa9_c00459{left:336.373333pt;}
.x91_c00459{left:338.666667pt;}
.xed_c00459{left:340.373333pt;}
.x6f_c00459{left:342.666667pt;}
.x78_c00459{left:344.000000pt;}
.x51_c00459{left:344.960000pt;}
.x36_c00459{left:347.040000pt;}
.x84_c00459{left:348.000000pt;}
.x2d_c00459{left:350.293333pt;}
.x4a_c00459{left:353.333333pt;}
.x65_c00459{left:354.666667pt;}
.xff_c00459{left:356.000000pt;}
.x1a_c00459{left:357.706667pt;}
.x12_c00459{left:360.373333pt;}
.x1_c00459{left:361.333333pt;}
.x106_c00459{left:363.626667pt;}
.x9a_c00459{left:364.960000pt;}
.xc3_c00459{left:367.626667pt;}
.x5c_c00459{left:372.000000pt;}
.xeb_c00459{left:374.666667pt;}
.xee_c00459{left:380.373333pt;}
.xfa_c00459{left:382.666667pt;}
.x1b_c00459{left:384.000000pt;}
.xf6_c00459{left:384.960000pt;}
.x85_c00459{left:386.293333pt;}
.x92_c00459{left:387.240000pt;}
.x5d_c00459{left:388.960000pt;}
.xb8_c00459{left:392.373333pt;}
.xd2_c00459{left:393.706667pt;}
.x40_c00459{left:394.666667pt;}
.x66_c00459{left:396.000000pt;}
.x9b_c00459{left:397.706667pt;}
.x8a_c00459{left:399.040000pt;}
.x52_c00459{left:400.373333pt;}
.x79_c00459{left:401.333333pt;}
.xdb_c00459{left:403.040000pt;}
.x2e_c00459{left:405.133333pt;}
.x7_c00459{left:406.293333pt;}
.x24_c00459{left:408.000000pt;}
.xa3_c00459{left:409.706667pt;}
.xe4_c00459{left:410.666667pt;}
.x41_c00459{left:412.000000pt;}
.x4b_c00459{left:415.040000pt;}
.xb1_c00459{left:418.666667pt;}
.x13_c00459{left:419.626667pt;}
.x9c_c00459{left:421.706667pt;}
.x67_c00459{left:424.000000pt;}
.xf2_c00459{left:425.706667pt;}
.xb9_c00459{left:427.040000pt;}
.x7a_c00459{left:428.373333pt;}
.x8_c00459{left:429.333333pt;}
.x42_c00459{left:430.666667pt;}
.x53_c00459{left:431.626667pt;}
.xcb_c00459{left:433.333333pt;}
.x70_c00459{left:436.000000pt;}
.xaa_c00459{left:436.960000pt;}
.x93_c00459{left:439.040000pt;}
.x68_c00459{left:440.000000pt;}
.x1c_c00459{left:441.333333pt;}
.xe8_c00459{left:442.666667pt;}
.x5e_c00459{left:446.666667pt;}
.x71_c00459{left:448.373333pt;}
.xa4_c00459{left:450.093333pt;}
.x7b_c00459{left:451.626667pt;}
.xba_c00459{left:453.706667pt;}
.x25_c00459{left:455.626667pt;}
.x86_c00459{left:458.666667pt;}
.x1d_c00459{left:459.626667pt;}
.xf3_c00459{left:465.706667pt;}
.x5f_c00459{left:466.666667pt;}
.x37_c00459{left:467.626667pt;}
.xd5_c00459{left:469.333333pt;}
.x14_c00459{left:471.040000pt;}
.x4c_c00459{left:473.333333pt;}
.x8b_c00459{left:475.040000pt;}
.xc0_c00459{left:477.706667pt;}
.x54_c00459{left:480.000000pt;}
.x26_c00459{left:485.333333pt;}
.x43_c00459{left:488.000000pt;}
.xdc_c00459{left:489.333333pt;}
.x7c_c00459{left:491.626667pt;}
.x9_c00459{left:493.333333pt;}
.x2f_c00459{left:494.666667pt;}
.x60_c00459{left:495.626667pt;}
.xef_c00459{left:496.960000pt;}
.xab_c00459{left:498.293333pt;}
.x94_c00459{left:500.373333pt;}
.xcc_c00459{left:501.333333pt;}
.x1e_c00459{left:502.293333pt;}
.x15_c00459{left:504.000000pt;}
.x38_c00459{left:507.040000pt;}
.x7d_c00459{left:508.000000pt;}
.x9d_c00459{left:509.706667pt;}
.x69_c00459{left:510.666667pt;}
.xc1_c00459{left:512.000000pt;}
.xd6_c00459{left:513.333333pt;}
.xcd_c00459{left:514.293333pt;}
.xbb_c00459{left:516.000000pt;}
.xac_c00459{left:517.706667pt;}
.x44_c00459{left:518.666667pt;}
.xb2_c00459{left:520.373333pt;}
.x30_c00459{left:521.333333pt;}
.xa_c00459{left:522.293333pt;}
.x72_c00459{left:528.000000pt;}
.xc4_c00459{left:529.706667pt;}
.xa5_c00459{left:531.040000pt;}
.xdd_c00459{left:532.000000pt;}
.x8c_c00459{left:540.000000pt;}
.x9e_c00459{left:541.333333pt;}
.x31_c00459{left:542.666667pt;}
.x45_c00459{left:544.000000pt;}
.x55_c00459{left:544.960000pt;}
.x27_c00459{left:546.666667pt;}
.xec_c00459{left:548.000000pt;}
.xfb_c00459{left:549.333333pt;}
.xbc_c00459{left:551.040000pt;}
.xf7_c00459{left:552.573333pt;}
.xad_c00459{left:556.960000pt;}
.xb_c00459{left:558.293333pt;}
.xce_c00459{left:560.960000pt;}
.x95_c00459{left:563.040000pt;}
.x8d_c00459{left:564.573333pt;}
.x28_c00459{left:566.666667pt;}
.xde_c00459{left:568.373333pt;}
.xb3_c00459{left:569.333333pt;}
.x56_c00459{left:571.040000pt;}
.x39_c00459{left:572.960000pt;}
.x1f_c00459{left:576.960000pt;}
.xae_c00459{left:579.040000pt;}
.xe9_c00459{left:580.960000pt;}
.x46_c00459{left:583.626667pt;}
.xd7_c00459{left:588.000000pt;}
.xc2_c00459{left:589.333333pt;}
.x16_c00459{left:590.293333pt;}
.xd3_c00459{left:592.000000pt;}
.x57_c00459{left:595.040000pt;}
.xf4_c00459{left:596.000000pt;}
.x3a_c00459{left:597.333333pt;}
.xa6_c00459{left:600.000000pt;}
.x47_c00459{left:603.040000pt;}
.x6a_c00459{left:604.000000pt;}
.xaf_c00459{left:605.706667pt;}
.xb4_c00459{left:607.040000pt;}
.x73_c00459{left:608.000000pt;}
.x7e_c00459{left:612.000000pt;}
.xbd_c00459{left:612.960000pt;}
.x104_c00459{left:614.666667pt;}
.x8e_c00459{left:616.960000pt;}
.xc_c00459{left:619.040000pt;}
.xf0_c00459{left:620.373333pt;}
.x105_c00459{left:624.000000pt;}
.x20_c00459{left:624.960000pt;}
.x48_c00459{left:626.666667pt;}
.xb5_c00459{left:628.000000pt;}
.x32_c00459{left:629.706667pt;}
.xc5_c00459{left:631.040000pt;}
.x4d_c00459{left:633.906667pt;}
.xdf_c00459{left:636.960000pt;}
.x9f_c00459{left:638.666667pt;}
.xa7_c00459{left:639.626667pt;}
.x107_c00459{left:645.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_89fd59a43acf89cafdf35f25.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma4_c00460{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m53_c00460{transform:matrix(0.333824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333824,0.000000,0.000000,0.250000,0,0);}
.m29_c00460{transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);}
.m65_c00460{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m28_c00460{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m1a_c00460{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m68_c00460{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.mc_c00460{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m91_c00460{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m97_c00460{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.ma5_c00460{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.mf9_c00460{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mbd_c00460{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m64_c00460{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mda_c00460{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mc4_c00460{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m4c_c00460{transform:matrix(0.390074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390074,0.000000,0.000000,0.250000,0,0);}
.md8_c00460{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m26_c00460{transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);}
.m3a_c00460{transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);}
.m7f_c00460{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m10b_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);}
.mab_c00460{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m24_c00460{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.mc2_c00460{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.mcc_c00460{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.med_c00460{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.ma1_c00460{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mc3_c00460{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m9c_c00460{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.maa_c00460{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m4_c00460{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.m93_c00460{transform:matrix(0.410788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410788,0.000000,0.000000,0.250000,0,0);}
.md1_c00460{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.ma_c00460{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m8a_c00460{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.meb_c00460{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m3f_c00460{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.m8b_c00460{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m56_c00460{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m10d_c00460{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m4d_c00460{transform:matrix(0.421150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421150,0.000000,0.000000,0.250000,0,0);}
.mae_c00460{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m16_c00460{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m38_c00460{transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);}
.m104_c00460{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m33_c00460{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.m1b_c00460{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m10c_c00460{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m101_c00460{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m70_c00460{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m55_c00460{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mf8_c00460{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m46_c00460{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m9b_c00460{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m9e_c00460{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m114_c00460{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m31_c00460{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m36_c00460{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.me6_c00460{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.mcf_c00460{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m44_c00460{transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);}
.m108_c00460{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.m17_c00460{transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);}
.md4_c00460{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mf6_c00460{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m10e_c00460{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m113_c00460{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.mf1_c00460{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m52_c00460{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m9f_c00460{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.mf7_c00460{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m109_c00460{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m102_c00460{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m9a_c00460{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.mdd_c00460{transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);}
.m106_c00460{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mf2_c00460{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.mb1_c00460{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.mbc_c00460{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m54_c00460{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m94_c00460{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m4a_c00460{transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);}
.m43_c00460{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.me_c00460{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m116_c00460{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m88_c00460{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.md5_c00460{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m75_c00460{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m1c_c00460{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m90_c00460{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m7_c00460{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.md0_c00460{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m3c_c00460{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m42_c00460{transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);}
.me8_c00460{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.m27_c00460{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.me3_c00460{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m57_c00460{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m20_c00460{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.me2_c00460{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m80_c00460{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m11_c00460{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m6f_c00460{transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486085,0.000000,0.000000,0.250000,0,0);}
.m2e_c00460{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.ma8_c00460{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.mba_c00460{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m66_c00460{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m1_c00460{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m2f_c00460{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mc9_c00460{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.mb2_c00460{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mdb_c00460{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mfc_c00460{transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);}
.m78_c00460{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);}
.m6e_c00460{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mc0_c00460{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m8f_c00460{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m8c_c00460{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m62_c00460{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.mac_c00460{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m58_c00460{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mb3_c00460{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m77_c00460{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.me5_c00460{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m2a_c00460{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.m6d_c00460{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m87_c00460{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mb7_c00460{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m19_c00460{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);}
.m2_c00460{transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);}
.m10_c00460{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m5f_c00460{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.ma6_c00460{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m63_c00460{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mbb_c00460{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m7b_c00460{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.md2_c00460{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.md9_c00460{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mb0_c00460{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mcb_c00460{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m3e_c00460{transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);}
.m74_c00460{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m3d_c00460{transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);}
.m72_c00460{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m5a_c00460{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m37_c00460{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m84_c00460{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.mb8_c00460{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m9_c00460{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m69_c00460{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m85_c00460{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m6a_c00460{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m83_c00460{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mde_c00460{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m22_c00460{transform:matrix(0.539412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539412,0.000000,0.000000,0.250000,0,0);}
.m6_c00460{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m89_c00460{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m12_c00460{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.me4_c00460{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m73_c00460{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m25_c00460{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.mc7_c00460{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m23_c00460{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.mbe_c00460{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mbf_c00460{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mc8_c00460{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m48_c00460{transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);}
.md3_c00460{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.ma0_c00460{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mb4_c00460{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m67_c00460{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.ma9_c00460{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.me7_c00460{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m71_c00460{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mad_c00460{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m5b_c00460{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m32_c00460{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m8d_c00460{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mff_c00460{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);}
.mf4_c00460{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m99_c00460{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mee_c00460{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m1f_c00460{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.m13_c00460{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.m98_c00460{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.mca_c00460{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mce_c00460{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.mb9_c00460{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m60_c00460{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mfd_c00460{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.mec_c00460{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.mea_c00460{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m96_c00460{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.me1_c00460{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m7d_c00460{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mfe_c00460{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m51_c00460{transform:matrix(0.577941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577941,0.000000,0.000000,0.250000,0,0);}
.m5d_c00460{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m7e_c00460{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m18_c00460{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m6b_c00460{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m4e_c00460{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.ma3_c00460{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.mb5_c00460{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m79_c00460{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m5e_c00460{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mc5_c00460{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m15_c00460{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.md6_c00460{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.m47_c00460{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m110_c00460{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.maf_c00460{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);}
.m100_c00460{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mdc_c00460{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m82_c00460{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m103_c00460{transform:matrix(0.612552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612552,0.000000,0.000000,0.250000,0,0);}
.m6c_c00460{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m9d_c00460{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m39_c00460{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.ma2_c00460{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.mfb_c00460{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m30_c00460{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mf5_c00460{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m3b_c00460{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);}
.me0_c00460{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_c00460{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m10f_c00460{transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);}
.m49_c00460{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.mf3_c00460{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m35_c00460{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m34_c00460{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.mf_c00460{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m0_c00460{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m7c_c00460{transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);}
.m40_c00460{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.m8e_c00460{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m1d_c00460{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m2b_c00460{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);}
.me9_c00460{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m50_c00460{transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);}
.m7a_c00460{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m41_c00460{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m95_c00460{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m2d_c00460{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m2c_c00460{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m14_c00460{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m10a_c00460{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mfa_c00460{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.m45_c00460{transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);}
.mb_c00460{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m21_c00460{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);}
.mcd_c00460{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m81_c00460{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mb6_c00460{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mc1_c00460{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m5c_c00460{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m59_c00460{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m111_c00460{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m112_c00460{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m107_c00460{transform:matrix(0.736471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736471,0.000000,0.000000,0.250000,0,0);}
.m105_c00460{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.mdf_c00460{transform:matrix(0.741186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741186,0.000000,0.000000,0.250000,0,0);}
.m61_c00460{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m86_c00460{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.ma7_c00460{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m92_c00460{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m3_c00460{transform:matrix(0.794872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.794872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.794872,0.000000,0.000000,0.250000,0,0);}
.m76_c00460{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m1e_c00460{transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);}
.m115_c00460{transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);}
.mef_c00460{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.mc6_c00460{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.md7_c00460{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.md_c00460{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m5_c00460{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m4f_c00460{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.m8_c00460{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m4b_c00460{transform:matrix(3.134956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.134956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.134956,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;}
}
.ws3_c00460{word-spacing:-8.811328px;}
.ws2_c00460{word-spacing:-5.176144px;}
.ws1_c00460{word-spacing:-0.920325px;}
.ws0_c00460{word-spacing:-0.825177px;}
.ws4_c00460{word-spacing:0.000000px;}
.fc0_c00460{color:transparent;}
.fs6_c00460{font-size:6.780000px;}
.fs4_c00460{font-size:13.620000px;}
.fs2_c00460{font-size:18.720000px;}
.fs0_c00460{font-size:20.400000px;}
.fs5_c00460{font-size:25.500000px;}
.fs1_c00460{font-size:28.920000px;}
.fs3_c00460{font-size:32.340000px;}
.fs7_c00460{font-size:35.700000px;}
.y0_c00460{bottom:0.000000px;}
.y3_c00460{bottom:230.130000px;}
.ye2_c00460{bottom:251.970000px;}
.ye7_c00460{bottom:252.405000px;}
.ye5_c00460{bottom:253.245000px;}
.ye3_c00460{bottom:255.405000px;}
.ye4_c00460{bottom:255.630000px;}
.ye8_c00460{bottom:255.825000px;}
.ye1_c00460{bottom:256.470000px;}
.ye6_c00460{bottom:256.905000px;}
.ydd_c00460{bottom:271.470000px;}
.ydc_c00460{bottom:271.905000px;}
.ydf_c00460{bottom:272.745000px;}
.ye0_c00460{bottom:274.245000px;}
.ydb_c00460{bottom:274.470000px;}
.yda_c00460{bottom:274.905000px;}
.yde_c00460{bottom:276.405000px;}
.yd4_c00460{bottom:292.245000px;}
.yd7_c00460{bottom:293.745000px;}
.yd5_c00460{bottom:294.405000px;}
.yd8_c00460{bottom:295.470000px;}
.yd6_c00460{bottom:295.905000px;}
.yd9_c00460{bottom:296.970000px;}
.yd3_c00460{bottom:313.245000px;}
.yd1_c00460{bottom:314.325000px;}
.yd2_c00460{bottom:315.405000px;}
.ycd_c00460{bottom:332.745000px;}
.yce_c00460{bottom:333.405000px;}
.ycc_c00460{bottom:333.630000px;}
.ycf_c00460{bottom:334.470000px;}
.ycb_c00460{bottom:334.905000px;}
.yd0_c00460{bottom:335.970000px;}
.yca_c00460{bottom:351.825000px;}
.yc8_c00460{bottom:352.245000px;}
.yc9_c00460{bottom:353.130000px;}
.yc7_c00460{bottom:354.405000px;}
.yc5_c00460{bottom:371.325000px;}
.yc2_c00460{bottom:371.745000px;}
.yc3_c00460{bottom:372.825000px;}
.yc6_c00460{bottom:373.470000px;}
.yc4_c00460{bottom:373.905000px;}
.yc1_c00460{bottom:390.825000px;}
.yc0_c00460{bottom:391.245000px;}
.ybf_c00460{bottom:393.405000px;}
.ybe_c00460{bottom:394.470000px;}
.ybc_c00460{bottom:410.325000px;}
.yba_c00460{bottom:410.745000px;}
.ybb_c00460{bottom:412.470000px;}
.yb9_c00460{bottom:412.905000px;}
.ybd_c00460{bottom:413.970000px;}
.yb6_c00460{bottom:430.245000px;}
.yb8_c00460{bottom:430.470000px;}
.yb5_c00460{bottom:431.325000px;}
.yb4_c00460{bottom:432.405000px;}
.yb3_c00460{bottom:432.630000px;}
.yb7_c00460{bottom:433.470000px;}
.yae_c00460{bottom:451.245000px;}
.yb1_c00460{bottom:451.905000px;}
.yb0_c00460{bottom:452.130000px;}
.yb2_c00460{bottom:452.970000px;}
.yaf_c00460{bottom:453.405000px;}
.yab_c00460{bottom:468.405000px;}
.yac_c00460{bottom:470.325000px;}
.ya9_c00460{bottom:470.745000px;}
.yad_c00460{bottom:471.825000px;}
.yaa_c00460{bottom:472.905000px;}
.ya8_c00460{bottom:489.825000px;}
.ya5_c00460{bottom:490.245000px;}
.ya6_c00460{bottom:491.325000px;}
.ya7_c00460{bottom:491.970000px;}
.ya3_c00460{bottom:492.405000px;}
.ya4_c00460{bottom:492.630000px;}
.ya2_c00460{bottom:509.745000px;}
.ya1_c00460{bottom:510.630000px;}
.y9f_c00460{bottom:511.905000px;}
.ya0_c00460{bottom:512.130000px;}
.y9c_c00460{bottom:528.405000px;}
.y9d_c00460{bottom:529.245000px;}
.y9a_c00460{bottom:531.405000px;}
.y9b_c00460{bottom:531.630000px;}
.y9e_c00460{bottom:532.470000px;}
.y98_c00460{bottom:548.745000px;}
.y95_c00460{bottom:550.245000px;}
.y99_c00460{bottom:551.130000px;}
.y96_c00460{bottom:551.325000px;}
.y97_c00460{bottom:551.970000px;}
.y94_c00460{bottom:552.405000px;}
.y93_c00460{bottom:568.245000px;}
.y92_c00460{bottom:570.630000px;}
.y90_c00460{bottom:571.470000px;}
.y91_c00460{bottom:571.905000px;}
.y8e_c00460{bottom:586.905000px;}
.y8b_c00460{bottom:589.245000px;}
.y8d_c00460{bottom:590.130000px;}
.y8c_c00460{bottom:591.405000px;}
.y8f_c00460{bottom:592.470000px;}
.y88_c00460{bottom:608.745000px;}
.y89_c00460{bottom:609.825000px;}
.y87_c00460{bottom:610.905000px;}
.y8a_c00460{bottom:611.130000px;}
.y86_c00460{bottom:629.325000px;}
.y85_c00460{bottom:629.745000px;}
.y83_c00460{bottom:630.405000px;}
.y82_c00460{bottom:630.630000px;}
.y81_c00460{bottom:631.470000px;}
.y84_c00460{bottom:631.905000px;}
.y7e_c00460{bottom:646.905000px;}
.y7c_c00460{bottom:647.745000px;}
.y80_c00460{bottom:648.825000px;}
.y7f_c00460{bottom:650.130000px;}
.y7d_c00460{bottom:651.405000px;}
.y7a_c00460{bottom:666.405000px;}
.y78_c00460{bottom:668.745000px;}
.y77_c00460{bottom:669.405000px;}
.y79_c00460{bottom:670.905000px;}
.y7b_c00460{bottom:671.970000px;}
.y75_c00460{bottom:687.825000px;}
.y74_c00460{bottom:688.245000px;}
.y73_c00460{bottom:689.130000px;}
.y76_c00460{bottom:689.970000px;}
.y72_c00460{bottom:690.405000px;}
.y71_c00460{bottom:705.405000px;}
.y6f_c00460{bottom:707.745000px;}
.y70_c00460{bottom:709.470000px;}
.y6e_c00460{bottom:709.905000px;}
.y6a_c00460{bottom:727.245000px;}
.y6d_c00460{bottom:728.130000px;}
.y6c_c00460{bottom:729.405000px;}
.y6b_c00460{bottom:729.630000px;}
.y65_c00460{bottom:746.325000px;}
.y64_c00460{bottom:746.745000px;}
.y69_c00460{bottom:747.825000px;}
.y66_c00460{bottom:748.470000px;}
.y67_c00460{bottom:748.905000px;}
.y68_c00460{bottom:749.130000px;}
.y61_c00460{bottom:765.405000px;}
.y62_c00460{bottom:766.245000px;}
.y5e_c00460{bottom:767.325000px;}
.y5f_c00460{bottom:768.405000px;}
.y63_c00460{bottom:768.630000px;}
.y60_c00460{bottom:769.470000px;}
.y5d_c00460{bottom:785.745000px;}
.y5a_c00460{bottom:787.905000px;}
.y5b_c00460{bottom:788.130000px;}
.y5c_c00460{bottom:789.405000px;}
.y56_c00460{bottom:805.245000px;}
.y54_c00460{bottom:805.470000px;}
.y58_c00460{bottom:806.325000px;}
.y55_c00460{bottom:807.405000px;}
.y57_c00460{bottom:807.630000px;}
.y59_c00460{bottom:808.470000px;}
.y50_c00460{bottom:825.405000px;}
.y53_c00460{bottom:826.905000px;}
.y51_c00460{bottom:827.130000px;}
.y52_c00460{bottom:827.970000px;}
.y4f_c00460{bottom:828.405000px;}
.y4d_c00460{bottom:845.325000px;}
.y4e_c00460{bottom:845.745000px;}
.y4b_c00460{bottom:847.905000px;}
.y4c_c00460{bottom:848.970000px;}
.y4a_c00460{bottom:865.245000px;}
.y48_c00460{bottom:867.405000px;}
.y49_c00460{bottom:867.630000px;}
.y44_c00460{bottom:884.745000px;}
.y45_c00460{bottom:886.905000px;}
.y46_c00460{bottom:887.130000px;}
.y47_c00460{bottom:887.970000px;}
.y43_c00460{bottom:916.905000px;}
.y40_c00460{bottom:917.550000px;}
.y3f_c00460{bottom:918.405000px;}
.y42_c00460{bottom:918.630000px;}
.y41_c00460{bottom:918.855000px;}
.y3e_c00460{bottom:919.050000px;}
.y3c_c00460{bottom:931.050000px;}
.y3b_c00460{bottom:931.905000px;}
.y37_c00460{bottom:932.325000px;}
.y3d_c00460{bottom:933.195000px;}
.y35_c00460{bottom:933.405000px;}
.y36_c00460{bottom:933.855000px;}
.y34_c00460{bottom:934.050000px;}
.y3a_c00460{bottom:934.470000px;}
.y38_c00460{bottom:934.695000px;}
.y39_c00460{bottom:935.550000px;}
.y33_c00460{bottom:946.050000px;}
.y2f_c00460{bottom:946.905000px;}
.y31_c00460{bottom:947.130000px;}
.y32_c00460{bottom:947.970000px;}
.y30_c00460{bottom:949.050000px;}
.y29_c00460{bottom:959.970000px;}
.y2b_c00460{bottom:960.825000px;}
.y2d_c00460{bottom:961.905000px;}
.y2a_c00460{bottom:962.970000px;}
.y2e_c00460{bottom:963.195000px;}
.y2c_c00460{bottom:964.050000px;}
.y23_c00460{bottom:975.825000px;}
.y26_c00460{bottom:976.905000px;}
.y27_c00460{bottom:977.130000px;}
.y25_c00460{bottom:977.970000px;}
.y24_c00460{bottom:978.195000px;}
.y28_c00460{bottom:979.050000px;}
.y20_c00460{bottom:990.825000px;}
.y1d_c00460{bottom:991.050000px;}
.y21_c00460{bottom:991.905000px;}
.y1f_c00460{bottom:992.130000px;}
.y22_c00460{bottom:993.195000px;}
.y1e_c00460{bottom:994.050000px;}
.y1c_c00460{bottom:1004.325000px;}
.y1b_c00460{bottom:1005.825000px;}
.y18_c00460{bottom:1018.470000px;}
.y19_c00460{bottom:1019.325000px;}
.y17_c00460{bottom:1020.405000px;}
.y14_c00460{bottom:1020.630000px;}
.y16_c00460{bottom:1021.470000px;}
.y1a_c00460{bottom:1021.695000px;}
.y15_c00460{bottom:1022.550000px;}
.y10_c00460{bottom:1034.325000px;}
.y11_c00460{bottom:1035.405000px;}
.y12_c00460{bottom:1036.695000px;}
.y13_c00460{bottom:1037.550000px;}
.yd_c00460{bottom:1049.325000px;}
.ya_c00460{bottom:1050.405000px;}
.yf_c00460{bottom:1050.630000px;}
.yb_c00460{bottom:1051.050000px;}
.yc_c00460{bottom:1051.470000px;}
.y9_c00460{bottom:1051.695000px;}
.ye_c00460{bottom:1052.550000px;}
.y5_c00460{bottom:1064.325000px;}
.y8_c00460{bottom:1065.405000px;}
.y4_c00460{bottom:1065.630000px;}
.y7_c00460{bottom:1066.470000px;}
.y6_c00460{bottom:1066.695000px;}
.y2_c00460{bottom:1099.905000px;}
.y1_c00460{bottom:1102.050000px;}
.h7_c00460{height:8.339268px;}
.h5_c00460{height:16.752334px;}
.h3_c00460{height:23.025234px;}
.h1_c00460{height:25.091602px;}
.h6_c00460{height:31.364502px;}
.h2_c00460{height:35.571035px;}
.h4_c00460{height:39.777568px;}
.h8_c00460{height:43.910303px;}
.h0_c00460{height:1335.000000px;}
.w0_c00460{width:880.500000px;}
.x0_c00460{left:0.000000px;}
.xea_c00460{left:151.500000px;}
.x97_c00460{left:153.000000px;}
.x37_c00460{left:154.080000px;}
.x19_c00460{left:155.580000px;}
.x119_c00460{left:168.000000px;}
.x4_c00460{left:169.080000px;}
.x2d_c00460{left:170.355000px;}
.xc7_c00460{left:174.420000px;}
.x10d_c00460{left:177.000000px;}
.xe0_c00460{left:180.420000px;}
.x2c_c00460{left:183.855000px;}
.xc2_c00460{left:186.000000px;}
.x4a_c00460{left:187.080000px;}
.x1a_c00460{left:188.580000px;}
.xa4_c00460{left:190.500000px;}
.x6c_c00460{left:192.420000px;}
.x5_c00460{left:193.500000px;}
.x20_c00460{left:195.000000px;}
.xe2_c00460{left:198.000000px;}
.x86_c00460{left:200.580000px;}
.x75_c00460{left:202.080000px;}
.x9e_c00460{left:204.000000px;}
.xcd_c00460{left:205.080000px;}
.x98_c00460{left:207.000000px;}
.x4b_c00460{left:208.500000px;}
.xb8_c00460{left:210.420000px;}
.x21_c00460{left:211.500000px;}
.x7c_c00460{left:213.420000px;}
.xc8_c00460{left:214.920000px;}
.xa5_c00460{left:217.920000px;}
.xd4_c00460{left:220.500000px;}
.x6d_c00460{left:221.580000px;}
.xc3_c00460{left:223.920000px;}
.xfa_c00460{left:226.920000px;}
.xff_c00460{left:229.500000px;}
.x38_c00460{left:231.000000px;}
.x1b_c00460{left:232.500000px;}
.x99_c00460{left:234.000000px;}
.x103_c00460{left:237.420000px;}
.xb0_c00460{left:238.500000px;}
.x39_c00460{left:240.000000px;}
.x115_c00460{left:242.580000px;}
.xef_c00460{left:244.500000px;}
.xe1_c00460{left:246.000000px;}
.x4c_c00460{left:247.080000px;}
.x87_c00460{left:249.420000px;}
.x2e_c00460{left:250.500000px;}
.x7d_c00460{left:251.580000px;}
.x22_c00460{left:253.920000px;}
.x60_c00460{left:255.000000px;}
.xb9_c00460{left:256.500000px;}
.xb1_c00460{left:258.420000px;}
.x40_c00460{left:259.500000px;}
.x8d_c00460{left:264.000000px;}
.x100_c00460{left:265.920000px;}
.xda_c00460{left:267.420000px;}
.xd_c00460{left:271.500000px;}
.x6_c00460{left:273.000000px;}
.x3a_c00460{left:274.080000px;}
.x11a_c00460{left:276.000000px;}
.x9a_c00460{left:277.080000px;}
.xa6_c00460{left:278.580000px;}
.x10e_c00460{left:280.500000px;}
.x1c_c00460{left:282.000000px;}
.xc4_c00460{left:283.920000px;}
.xe5_c00460{left:286.920000px;}
.xce_c00460{left:288.000000px;}
.xba_c00460{left:291.000000px;}
.x7_c00460{left:292.500000px;}
.x1d_c00460{left:294.420000px;}
.x76_c00460{left:298.500000px;}
.x3b_c00460{left:299.580000px;}
.xe_c00460{left:302.580000px;}
.xf4_c00460{left:304.500000px;}
.x104_c00460{left:306.000000px;}
.x23_c00460{left:307.920000px;}
.x61_c00460{left:309.000000px;}
.xa7_c00460{left:310.080000px;}
.xfb_c00460{left:312.000000px;}
.x64_c00460{left:313.920000px;}
.xf_c00460{left:316.080000px;}
.x4d_c00460{left:318.420000px;}
.x8e_c00460{left:319.920000px;}
.x41_c00460{left:321.000000px;}
.x9f_c00460{left:322.500000px;}
.x24_c00460{left:324.000000px;}
.x62_c00460{left:325.500000px;}
.x88_c00460{left:327.000000px;}
.xe6_c00460{left:328.500000px;}
.x4e_c00460{left:330.000000px;}
.x10f_c00460{left:334.500000px;}
.x56_c00460{left:336.000000px;}
.x11b_c00460{left:337.080000px;}
.x42_c00460{left:339.000000px;}
.x105_c00460{left:340.080000px;}
.xa8_c00460{left:342.000000px;}
.x7e_c00460{left:344.580000px;}
.x3c_c00460{left:348.000000px;}
.x63_c00460{left:349.920000px;}
.x118_c00460{left:351.000000px;}
.x8_c00460{left:353.145000px;}
.x57_c00460{left:356.355000px;}
.x106_c00460{left:358.920000px;}
.x6e_c00460{left:361.920000px;}
.x43_c00460{left:364.920000px;}
.x10a_c00460{left:367.500000px;}
.xf0_c00460{left:369.000000px;}
.x77_c00460{left:370.500000px;}
.xbb_c00460{left:372.000000px;}
.x3d_c00460{left:373.920000px;}
.xa9_c00460{left:375.420000px;}
.xdb_c00460{left:376.500000px;}
.x89_c00460{left:378.000000px;}
.xa0_c00460{left:379.500000px;}
.x7f_c00460{left:381.000000px;}
.xd5_c00460{left:382.920000px;}
.x65_c00460{left:384.420000px;}
.x25_c00460{left:387.000000px;}
.x1e_c00460{left:388.500000px;}
.x8f_c00460{left:391.500000px;}
.x10_c00460{left:394.080000px;}
.x2f_c00460{left:396.000000px;}
.xf5_c00460{left:397.080000px;}
.x9_c00460{left:398.580000px;}
.x116_c00460{left:400.500000px;}
.x80_c00460{left:402.420000px;}
.x58_c00460{left:405.000000px;}
.xf1_c00460{left:406.500000px;}
.xbc_c00460{left:408.000000px;}
.x1_c00460{left:409.500000px;}
.xaa_c00460{left:411.000000px;}
.xb2_c00460{left:412.080000px;}
.x1f_c00460{left:415.080000px;}
.xd6_c00460{left:417.420000px;}
.x59_c00460{left:418.500000px;}
.x8a_c00460{left:420.000000px;}
.xbd_c00460{left:421.080000px;}
.x26_c00460{left:424.500000px;}
.xdc_c00460{left:426.000000px;}
.xcf_c00460{left:427.920000px;}
.x117_c00460{left:429.000000px;}
.x11_c00460{left:430.500000px;}
.x9b_c00460{left:431.580000px;}
.xeb_c00460{left:436.500000px;}
.xe7_c00460{left:438.420000px;}
.x30_c00460{left:441.420000px;}
.xab_c00460{left:442.500000px;}
.xf6_c00460{left:444.420000px;}
.x6f_c00460{left:445.500000px;}
.xd7_c00460{left:448.080000px;}
.x4f_c00460{left:450.000000px;}
.x8b_c00460{left:453.000000px;}
.xa_c00460{left:454.080000px;}
.x31_c00460{left:457.500000px;}
.x3e_c00460{left:460.500000px;}
.x90_c00460{left:463.080000px;}
.xc0_c00460{left:465.420000px;}
.x66_c00460{left:468.000000px;}
.x81_c00460{left:469.080000px;}
.xd0_c00460{left:471.000000px;}
.xfc_c00460{left:472.920000px;}
.x44_c00460{left:477.645000px;}
.xc5_c00460{left:480.000000px;}
.xdd_c00460{left:481.080000px;}
.x91_c00460{left:483.420000px;}
.xbe_c00460{left:484.920000px;}
.x67_c00460{left:487.080000px;}
.x3f_c00460{left:489.855000px;}
.xc9_c00460{left:492.000000px;}
.xb_c00460{left:493.500000px;}
.x110_c00460{left:496.080000px;}
.x50_c00460{left:502.500000px;}
.x27_c00460{left:505.500000px;}
.xd1_c00460{left:506.580000px;}
.x12_c00460{left:508.500000px;}
.xac_c00460{left:510.420000px;}
.x92_c00460{left:511.500000px;}
.x107_c00460{left:513.420000px;}
.xc6_c00460{left:514.500000px;}
.xb3_c00460{left:517.080000px;}
.x101_c00460{left:518.580000px;}
.xc_c00460{left:519.855000px;}
.x113_c00460{left:520.920000px;}
.xe8_c00460{left:522.000000px;}
.x70_c00460{left:523.080000px;}
.x32_c00460{left:524.145000px;}
.x78_c00460{left:526.500000px;}
.x82_c00460{left:528.000000px;}
.xca_c00460{left:530.580000px;}
.xde_c00460{left:532.920000px;}
.x68_c00460{left:535.500000px;}
.x5a_c00460{left:538.080000px;}
.xfd_c00460{left:539.580000px;}
.xf7_c00460{left:541.920000px;}
.x51_c00460{left:543.000000px;}
.xad_c00460{left:544.920000px;}
.x28_c00460{left:547.500000px;}
.xb4_c00460{left:548.580000px;}
.x93_c00460{left:550.080000px;}
.xc1_c00460{left:555.000000px;}
.x83_c00460{left:556.500000px;}
.xee_c00460{left:558.000000px;}
.x45_c00460{left:559.920000px;}
.x13_c00460{left:561.000000px;}
.x71_c00460{left:564.420000px;}
.x33_c00460{left:567.000000px;}
.xb5_c00460{left:568.500000px;}
.x14_c00460{left:571.500000px;}
.xae_c00460{left:573.420000px;}
.x5b_c00460{left:575.355000px;}
.x52_c00460{left:578.355000px;}
.x9c_c00460{left:579.420000px;}
.xe3_c00460{left:580.920000px;}
.x94_c00460{left:582.000000px;}
.xe9_c00460{left:583.500000px;}
.x10b_c00460{left:584.580000px;}
.xf2_c00460{left:586.920000px;}
.x111_c00460{left:589.500000px;}
.x8c_c00460{left:591.000000px;}
.x69_c00460{left:592.500000px;}
.xdf_c00460{left:595.500000px;}
.x108_c00460{left:598.920000px;}
.xaf_c00460{left:600.420000px;}
.x84_c00460{left:601.500000px;}
.x10c_c00460{left:603.420000px;}
.x15_c00460{left:604.500000px;}
.xb6_c00460{left:607.500000px;}
.xf8_c00460{left:609.000000px;}
.x72_c00460{left:610.080000px;}
.x79_c00460{left:612.000000px;}
.xf3_c00460{left:615.000000px;}
.xa1_c00460{left:616.080000px;}
.x46_c00460{left:619.080000px;}
.xcb_c00460{left:621.420000px;}
.x85_c00460{left:622.920000px;}
.xe4_c00460{left:624.000000px;}
.x29_c00460{left:626.580000px;}
.x95_c00460{left:628.080000px;}
.x16_c00460{left:629.580000px;}
.x5c_c00460{left:631.920000px;}
.xd2_c00460{left:633.000000px;}
.x34_c00460{left:634.080000px;}
.x53_c00460{left:635.355000px;}
.xb7_c00460{left:640.500000px;}
.x7a_c00460{left:644.580000px;}
.xa2_c00460{left:646.500000px;}
.x73_c00460{left:647.775000px;}
.xcc_c00460{left:649.500000px;}
.x109_c00460{left:653.580000px;}
.xec_c00460{left:655.500000px;}
.xd8_c00460{left:657.000000px;}
.x6a_c00460{left:658.500000px;}
.x96_c00460{left:660.420000px;}
.xbf_c00460{left:661.500000px;}
.x9d_c00460{left:663.000000px;}
.x112_c00460{left:664.920000px;}
.x114_c00460{left:666.420000px;}
.x5d_c00460{left:667.920000px;}
.x54_c00460{left:671.355000px;}
.xed_c00460{left:672.855000px;}
.x47_c00460{left:675.420000px;}
.x17_c00460{left:676.500000px;}
.xfe_c00460{left:678.000000px;}
.x6b_c00460{left:680.145000px;}
.x2a_c00460{left:682.500000px;}
.x18_c00460{left:687.000000px;}
.x7b_c00460{left:688.500000px;}
.xf9_c00460{left:690.000000px;}
.x35_c00460{left:691.080000px;}
.x2b_c00460{left:693.000000px;}
.xa3_c00460{left:694.920000px;}
.xd3_c00460{left:696.000000px;}
.x5e_c00460{left:698.580000px;}
.x55_c00460{left:700.500000px;}
.x36_c00460{left:703.500000px;}
.x74_c00460{left:705.000000px;}
.xd9_c00460{left:706.920000px;}
.x2_c00460{left:708.000000px;}
.x48_c00460{left:709.500000px;}
.x102_c00460{left:715.500000px;}
.x3_c00460{left:718.500000px;}
.x5f_c00460{left:723.000000px;}
.x49_c00460{left:724.920000px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.ls0_c00460{letter-spacing:0.000000pt;}
.ws3_c00460{word-spacing:-7.832291pt;}
.ws2_c00460{word-spacing:-4.601017pt;}
.ws1_c00460{word-spacing:-0.818067pt;}
.ws0_c00460{word-spacing:-0.733490pt;}
.ws4_c00460{word-spacing:0.000000pt;}
.fs6_c00460{font-size:6.026667pt;}
.fs4_c00460{font-size:12.106667pt;}
.fs2_c00460{font-size:16.640000pt;}
.fs0_c00460{font-size:18.133333pt;}
.fs5_c00460{font-size:22.666667pt;}
.fs1_c00460{font-size:25.706667pt;}
.fs3_c00460{font-size:28.746667pt;}
.fs7_c00460{font-size:31.733333pt;}
.y0_c00460{bottom:0.000000pt;}
.y3_c00460{bottom:204.560000pt;}
.ye2_c00460{bottom:223.973333pt;}
.ye7_c00460{bottom:224.360000pt;}
.ye5_c00460{bottom:225.106667pt;}
.ye3_c00460{bottom:227.026667pt;}
.ye4_c00460{bottom:227.226667pt;}
.ye8_c00460{bottom:227.400000pt;}
.ye1_c00460{bottom:227.973333pt;}
.ye6_c00460{bottom:228.360000pt;}
.ydd_c00460{bottom:241.306667pt;}
.ydc_c00460{bottom:241.693333pt;}
.ydf_c00460{bottom:242.440000pt;}
.ye0_c00460{bottom:243.773333pt;}
.ydb_c00460{bottom:243.973333pt;}
.yda_c00460{bottom:244.360000pt;}
.yde_c00460{bottom:245.693333pt;}
.yd4_c00460{bottom:259.773333pt;}
.yd7_c00460{bottom:261.106667pt;}
.yd5_c00460{bottom:261.693333pt;}
.yd8_c00460{bottom:262.640000pt;}
.yd6_c00460{bottom:263.026667pt;}
.yd9_c00460{bottom:263.973333pt;}
.yd3_c00460{bottom:278.440000pt;}
.yd1_c00460{bottom:279.400000pt;}
.yd2_c00460{bottom:280.360000pt;}
.ycd_c00460{bottom:295.773333pt;}
.yce_c00460{bottom:296.360000pt;}
.ycc_c00460{bottom:296.560000pt;}
.ycf_c00460{bottom:297.306667pt;}
.ycb_c00460{bottom:297.693333pt;}
.yd0_c00460{bottom:298.640000pt;}
.yca_c00460{bottom:312.733333pt;}
.yc8_c00460{bottom:313.106667pt;}
.yc9_c00460{bottom:313.893333pt;}
.yc7_c00460{bottom:315.026667pt;}
.yc5_c00460{bottom:330.066667pt;}
.yc2_c00460{bottom:330.440000pt;}
.yc3_c00460{bottom:331.400000pt;}
.yc6_c00460{bottom:331.973333pt;}
.yc4_c00460{bottom:332.360000pt;}
.yc1_c00460{bottom:347.400000pt;}
.yc0_c00460{bottom:347.773333pt;}
.ybf_c00460{bottom:349.693333pt;}
.ybe_c00460{bottom:350.640000pt;}
.ybc_c00460{bottom:364.733333pt;}
.yba_c00460{bottom:365.106667pt;}
.ybb_c00460{bottom:366.640000pt;}
.yb9_c00460{bottom:367.026667pt;}
.ybd_c00460{bottom:367.973333pt;}
.yb6_c00460{bottom:382.440000pt;}
.yb8_c00460{bottom:382.640000pt;}
.yb5_c00460{bottom:383.400000pt;}
.yb4_c00460{bottom:384.360000pt;}
.yb3_c00460{bottom:384.560000pt;}
.yb7_c00460{bottom:385.306667pt;}
.yae_c00460{bottom:401.106667pt;}
.yb1_c00460{bottom:401.693333pt;}
.yb0_c00460{bottom:401.893333pt;}
.yb2_c00460{bottom:402.640000pt;}
.yaf_c00460{bottom:403.026667pt;}
.yab_c00460{bottom:416.360000pt;}
.yac_c00460{bottom:418.066667pt;}
.ya9_c00460{bottom:418.440000pt;}
.yad_c00460{bottom:419.400000pt;}
.yaa_c00460{bottom:420.360000pt;}
.ya8_c00460{bottom:435.400000pt;}
.ya5_c00460{bottom:435.773333pt;}
.ya6_c00460{bottom:436.733333pt;}
.ya7_c00460{bottom:437.306667pt;}
.ya3_c00460{bottom:437.693333pt;}
.ya4_c00460{bottom:437.893333pt;}
.ya2_c00460{bottom:453.106667pt;}
.ya1_c00460{bottom:453.893333pt;}
.y9f_c00460{bottom:455.026667pt;}
.ya0_c00460{bottom:455.226667pt;}
.y9c_c00460{bottom:469.693333pt;}
.y9d_c00460{bottom:470.440000pt;}
.y9a_c00460{bottom:472.360000pt;}
.y9b_c00460{bottom:472.560000pt;}
.y9e_c00460{bottom:473.306667pt;}
.y98_c00460{bottom:487.773333pt;}
.y95_c00460{bottom:489.106667pt;}
.y99_c00460{bottom:489.893333pt;}
.y96_c00460{bottom:490.066667pt;}
.y97_c00460{bottom:490.640000pt;}
.y94_c00460{bottom:491.026667pt;}
.y93_c00460{bottom:505.106667pt;}
.y92_c00460{bottom:507.226667pt;}
.y90_c00460{bottom:507.973333pt;}
.y91_c00460{bottom:508.360000pt;}
.y8e_c00460{bottom:521.693333pt;}
.y8b_c00460{bottom:523.773333pt;}
.y8d_c00460{bottom:524.560000pt;}
.y8c_c00460{bottom:525.693333pt;}
.y8f_c00460{bottom:526.640000pt;}
.y88_c00460{bottom:541.106667pt;}
.y89_c00460{bottom:542.066667pt;}
.y87_c00460{bottom:543.026667pt;}
.y8a_c00460{bottom:543.226667pt;}
.y86_c00460{bottom:559.400000pt;}
.y85_c00460{bottom:559.773333pt;}
.y83_c00460{bottom:560.360000pt;}
.y82_c00460{bottom:560.560000pt;}
.y81_c00460{bottom:561.306667pt;}
.y84_c00460{bottom:561.693333pt;}
.y7e_c00460{bottom:575.026667pt;}
.y7c_c00460{bottom:575.773333pt;}
.y80_c00460{bottom:576.733333pt;}
.y7f_c00460{bottom:577.893333pt;}
.y7d_c00460{bottom:579.026667pt;}
.y7a_c00460{bottom:592.360000pt;}
.y78_c00460{bottom:594.440000pt;}
.y77_c00460{bottom:595.026667pt;}
.y79_c00460{bottom:596.360000pt;}
.y7b_c00460{bottom:597.306667pt;}
.y75_c00460{bottom:611.400000pt;}
.y74_c00460{bottom:611.773333pt;}
.y73_c00460{bottom:612.560000pt;}
.y76_c00460{bottom:613.306667pt;}
.y72_c00460{bottom:613.693333pt;}
.y71_c00460{bottom:627.026667pt;}
.y6f_c00460{bottom:629.106667pt;}
.y70_c00460{bottom:630.640000pt;}
.y6e_c00460{bottom:631.026667pt;}
.y6a_c00460{bottom:646.440000pt;}
.y6d_c00460{bottom:647.226667pt;}
.y6c_c00460{bottom:648.360000pt;}
.y6b_c00460{bottom:648.560000pt;}
.y65_c00460{bottom:663.400000pt;}
.y64_c00460{bottom:663.773333pt;}
.y69_c00460{bottom:664.733333pt;}
.y66_c00460{bottom:665.306667pt;}
.y67_c00460{bottom:665.693333pt;}
.y68_c00460{bottom:665.893333pt;}
.y61_c00460{bottom:680.360000pt;}
.y62_c00460{bottom:681.106667pt;}
.y5e_c00460{bottom:682.066667pt;}
.y5f_c00460{bottom:683.026667pt;}
.y63_c00460{bottom:683.226667pt;}
.y60_c00460{bottom:683.973333pt;}
.y5d_c00460{bottom:698.440000pt;}
.y5a_c00460{bottom:700.360000pt;}
.y5b_c00460{bottom:700.560000pt;}
.y5c_c00460{bottom:701.693333pt;}
.y56_c00460{bottom:715.773333pt;}
.y54_c00460{bottom:715.973333pt;}
.y58_c00460{bottom:716.733333pt;}
.y55_c00460{bottom:717.693333pt;}
.y57_c00460{bottom:717.893333pt;}
.y59_c00460{bottom:718.640000pt;}
.y50_c00460{bottom:733.693333pt;}
.y53_c00460{bottom:735.026667pt;}
.y51_c00460{bottom:735.226667pt;}
.y52_c00460{bottom:735.973333pt;}
.y4f_c00460{bottom:736.360000pt;}
.y4d_c00460{bottom:751.400000pt;}
.y4e_c00460{bottom:751.773333pt;}
.y4b_c00460{bottom:753.693333pt;}
.y4c_c00460{bottom:754.640000pt;}
.y4a_c00460{bottom:769.106667pt;}
.y48_c00460{bottom:771.026667pt;}
.y49_c00460{bottom:771.226667pt;}
.y44_c00460{bottom:786.440000pt;}
.y45_c00460{bottom:788.360000pt;}
.y46_c00460{bottom:788.560000pt;}
.y47_c00460{bottom:789.306667pt;}
.y43_c00460{bottom:815.026667pt;}
.y40_c00460{bottom:815.600000pt;}
.y3f_c00460{bottom:816.360000pt;}
.y42_c00460{bottom:816.560000pt;}
.y41_c00460{bottom:816.760000pt;}
.y3e_c00460{bottom:816.933333pt;}
.y3c_c00460{bottom:827.600000pt;}
.y3b_c00460{bottom:828.360000pt;}
.y37_c00460{bottom:828.733333pt;}
.y3d_c00460{bottom:829.506667pt;}
.y35_c00460{bottom:829.693333pt;}
.y36_c00460{bottom:830.093333pt;}
.y34_c00460{bottom:830.266667pt;}
.y3a_c00460{bottom:830.640000pt;}
.y38_c00460{bottom:830.840000pt;}
.y39_c00460{bottom:831.600000pt;}
.y33_c00460{bottom:840.933333pt;}
.y2f_c00460{bottom:841.693333pt;}
.y31_c00460{bottom:841.893333pt;}
.y32_c00460{bottom:842.640000pt;}
.y30_c00460{bottom:843.600000pt;}
.y29_c00460{bottom:853.306667pt;}
.y2b_c00460{bottom:854.066667pt;}
.y2d_c00460{bottom:855.026667pt;}
.y2a_c00460{bottom:855.973333pt;}
.y2e_c00460{bottom:856.173333pt;}
.y2c_c00460{bottom:856.933333pt;}
.y23_c00460{bottom:867.400000pt;}
.y26_c00460{bottom:868.360000pt;}
.y27_c00460{bottom:868.560000pt;}
.y25_c00460{bottom:869.306667pt;}
.y24_c00460{bottom:869.506667pt;}
.y28_c00460{bottom:870.266667pt;}
.y20_c00460{bottom:880.733333pt;}
.y1d_c00460{bottom:880.933333pt;}
.y21_c00460{bottom:881.693333pt;}
.y1f_c00460{bottom:881.893333pt;}
.y22_c00460{bottom:882.840000pt;}
.y1e_c00460{bottom:883.600000pt;}
.y1c_c00460{bottom:892.733333pt;}
.y1b_c00460{bottom:894.066667pt;}
.y18_c00460{bottom:905.306667pt;}
.y19_c00460{bottom:906.066667pt;}
.y17_c00460{bottom:907.026667pt;}
.y14_c00460{bottom:907.226667pt;}
.y16_c00460{bottom:907.973333pt;}
.y1a_c00460{bottom:908.173333pt;}
.y15_c00460{bottom:908.933333pt;}
.y10_c00460{bottom:919.400000pt;}
.y11_c00460{bottom:920.360000pt;}
.y12_c00460{bottom:921.506667pt;}
.y13_c00460{bottom:922.266667pt;}
.yd_c00460{bottom:932.733333pt;}
.ya_c00460{bottom:933.693333pt;}
.yf_c00460{bottom:933.893333pt;}
.yb_c00460{bottom:934.266667pt;}
.yc_c00460{bottom:934.640000pt;}
.y9_c00460{bottom:934.840000pt;}
.ye_c00460{bottom:935.600000pt;}
.y5_c00460{bottom:946.066667pt;}
.y8_c00460{bottom:947.026667pt;}
.y4_c00460{bottom:947.226667pt;}
.y7_c00460{bottom:947.973333pt;}
.y6_c00460{bottom:948.173333pt;}
.y2_c00460{bottom:977.693333pt;}
.y1_c00460{bottom:979.600000pt;}
.h7_c00460{height:7.412682pt;}
.h5_c00460{height:14.890964pt;}
.h3_c00460{height:20.466875pt;}
.h1_c00460{height:22.303646pt;}
.h6_c00460{height:27.879557pt;}
.h2_c00460{height:31.618698pt;}
.h4_c00460{height:35.357839pt;}
.h8_c00460{height:39.031380pt;}
.h0_c00460{height:1186.666667pt;}
.w0_c00460{width:782.666667pt;}
.x0_c00460{left:0.000000pt;}
.xea_c00460{left:134.666667pt;}
.x97_c00460{left:136.000000pt;}
.x37_c00460{left:136.960000pt;}
.x19_c00460{left:138.293333pt;}
.x119_c00460{left:149.333333pt;}
.x4_c00460{left:150.293333pt;}
.x2d_c00460{left:151.426667pt;}
.xc7_c00460{left:155.040000pt;}
.x10d_c00460{left:157.333333pt;}
.xe0_c00460{left:160.373333pt;}
.x2c_c00460{left:163.426667pt;}
.xc2_c00460{left:165.333333pt;}
.x4a_c00460{left:166.293333pt;}
.x1a_c00460{left:167.626667pt;}
.xa4_c00460{left:169.333333pt;}
.x6c_c00460{left:171.040000pt;}
.x5_c00460{left:172.000000pt;}
.x20_c00460{left:173.333333pt;}
.xe2_c00460{left:176.000000pt;}
.x86_c00460{left:178.293333pt;}
.x75_c00460{left:179.626667pt;}
.x9e_c00460{left:181.333333pt;}
.xcd_c00460{left:182.293333pt;}
.x98_c00460{left:184.000000pt;}
.x4b_c00460{left:185.333333pt;}
.xb8_c00460{left:187.040000pt;}
.x21_c00460{left:188.000000pt;}
.x7c_c00460{left:189.706667pt;}
.xc8_c00460{left:191.040000pt;}
.xa5_c00460{left:193.706667pt;}
.xd4_c00460{left:196.000000pt;}
.x6d_c00460{left:196.960000pt;}
.xc3_c00460{left:199.040000pt;}
.xfa_c00460{left:201.706667pt;}
.xff_c00460{left:204.000000pt;}
.x38_c00460{left:205.333333pt;}
.x1b_c00460{left:206.666667pt;}
.x99_c00460{left:208.000000pt;}
.x103_c00460{left:211.040000pt;}
.xb0_c00460{left:212.000000pt;}
.x39_c00460{left:213.333333pt;}
.x115_c00460{left:215.626667pt;}
.xef_c00460{left:217.333333pt;}
.xe1_c00460{left:218.666667pt;}
.x4c_c00460{left:219.626667pt;}
.x87_c00460{left:221.706667pt;}
.x2e_c00460{left:222.666667pt;}
.x7d_c00460{left:223.626667pt;}
.x22_c00460{left:225.706667pt;}
.x60_c00460{left:226.666667pt;}
.xb9_c00460{left:228.000000pt;}
.xb1_c00460{left:229.706667pt;}
.x40_c00460{left:230.666667pt;}
.x8d_c00460{left:234.666667pt;}
.x100_c00460{left:236.373333pt;}
.xda_c00460{left:237.706667pt;}
.xd_c00460{left:241.333333pt;}
.x6_c00460{left:242.666667pt;}
.x3a_c00460{left:243.626667pt;}
.x11a_c00460{left:245.333333pt;}
.x9a_c00460{left:246.293333pt;}
.xa6_c00460{left:247.626667pt;}
.x10e_c00460{left:249.333333pt;}
.x1c_c00460{left:250.666667pt;}
.xc4_c00460{left:252.373333pt;}
.xe5_c00460{left:255.040000pt;}
.xce_c00460{left:256.000000pt;}
.xba_c00460{left:258.666667pt;}
.x7_c00460{left:260.000000pt;}
.x1d_c00460{left:261.706667pt;}
.x76_c00460{left:265.333333pt;}
.x3b_c00460{left:266.293333pt;}
.xe_c00460{left:268.960000pt;}
.xf4_c00460{left:270.666667pt;}
.x104_c00460{left:272.000000pt;}
.x23_c00460{left:273.706667pt;}
.x61_c00460{left:274.666667pt;}
.xa7_c00460{left:275.626667pt;}
.xfb_c00460{left:277.333333pt;}
.x64_c00460{left:279.040000pt;}
.xf_c00460{left:280.960000pt;}
.x4d_c00460{left:283.040000pt;}
.x8e_c00460{left:284.373333pt;}
.x41_c00460{left:285.333333pt;}
.x9f_c00460{left:286.666667pt;}
.x24_c00460{left:288.000000pt;}
.x62_c00460{left:289.333333pt;}
.x88_c00460{left:290.666667pt;}
.xe6_c00460{left:292.000000pt;}
.x4e_c00460{left:293.333333pt;}
.x10f_c00460{left:297.333333pt;}
.x56_c00460{left:298.666667pt;}
.x11b_c00460{left:299.626667pt;}
.x42_c00460{left:301.333333pt;}
.x105_c00460{left:302.293333pt;}
.xa8_c00460{left:304.000000pt;}
.x7e_c00460{left:306.293333pt;}
.x3c_c00460{left:309.333333pt;}
.x63_c00460{left:311.040000pt;}
.x118_c00460{left:312.000000pt;}
.x8_c00460{left:313.906667pt;}
.x57_c00460{left:316.760000pt;}
.x106_c00460{left:319.040000pt;}
.x6e_c00460{left:321.706667pt;}
.x43_c00460{left:324.373333pt;}
.x10a_c00460{left:326.666667pt;}
.xf0_c00460{left:328.000000pt;}
.x77_c00460{left:329.333333pt;}
.xbb_c00460{left:330.666667pt;}
.x3d_c00460{left:332.373333pt;}
.xa9_c00460{left:333.706667pt;}
.xdb_c00460{left:334.666667pt;}
.x89_c00460{left:336.000000pt;}
.xa0_c00460{left:337.333333pt;}
.x7f_c00460{left:338.666667pt;}
.xd5_c00460{left:340.373333pt;}
.x65_c00460{left:341.706667pt;}
.x25_c00460{left:344.000000pt;}
.x1e_c00460{left:345.333333pt;}
.x8f_c00460{left:348.000000pt;}
.x10_c00460{left:350.293333pt;}
.x2f_c00460{left:352.000000pt;}
.xf5_c00460{left:352.960000pt;}
.x9_c00460{left:354.293333pt;}
.x116_c00460{left:356.000000pt;}
.x80_c00460{left:357.706667pt;}
.x58_c00460{left:360.000000pt;}
.xf1_c00460{left:361.333333pt;}
.xbc_c00460{left:362.666667pt;}
.x1_c00460{left:364.000000pt;}
.xaa_c00460{left:365.333333pt;}
.xb2_c00460{left:366.293333pt;}
.x1f_c00460{left:368.960000pt;}
.xd6_c00460{left:371.040000pt;}
.x59_c00460{left:372.000000pt;}
.x8a_c00460{left:373.333333pt;}
.xbd_c00460{left:374.293333pt;}
.x26_c00460{left:377.333333pt;}
.xdc_c00460{left:378.666667pt;}
.xcf_c00460{left:380.373333pt;}
.x117_c00460{left:381.333333pt;}
.x11_c00460{left:382.666667pt;}
.x9b_c00460{left:383.626667pt;}
.xeb_c00460{left:388.000000pt;}
.xe7_c00460{left:389.706667pt;}
.x30_c00460{left:392.373333pt;}
.xab_c00460{left:393.333333pt;}
.xf6_c00460{left:395.040000pt;}
.x6f_c00460{left:396.000000pt;}
.xd7_c00460{left:398.293333pt;}
.x4f_c00460{left:400.000000pt;}
.x8b_c00460{left:402.666667pt;}
.xa_c00460{left:403.626667pt;}
.x31_c00460{left:406.666667pt;}
.x3e_c00460{left:409.333333pt;}
.x90_c00460{left:411.626667pt;}
.xc0_c00460{left:413.706667pt;}
.x66_c00460{left:416.000000pt;}
.x81_c00460{left:416.960000pt;}
.xd0_c00460{left:418.666667pt;}
.xfc_c00460{left:420.373333pt;}
.x44_c00460{left:424.573333pt;}
.xc5_c00460{left:426.666667pt;}
.xdd_c00460{left:427.626667pt;}
.x91_c00460{left:429.706667pt;}
.xbe_c00460{left:431.040000pt;}
.x67_c00460{left:432.960000pt;}
.x3f_c00460{left:435.426667pt;}
.xc9_c00460{left:437.333333pt;}
.xb_c00460{left:438.666667pt;}
.x110_c00460{left:440.960000pt;}
.x50_c00460{left:446.666667pt;}
.x27_c00460{left:449.333333pt;}
.xd1_c00460{left:450.293333pt;}
.x12_c00460{left:452.000000pt;}
.xac_c00460{left:453.706667pt;}
.x92_c00460{left:454.666667pt;}
.x107_c00460{left:456.373333pt;}
.xc6_c00460{left:457.333333pt;}
.xb3_c00460{left:459.626667pt;}
.x101_c00460{left:460.960000pt;}
.xc_c00460{left:462.093333pt;}
.x113_c00460{left:463.040000pt;}
.xe8_c00460{left:464.000000pt;}
.x70_c00460{left:464.960000pt;}
.x32_c00460{left:465.906667pt;}
.x78_c00460{left:468.000000pt;}
.x82_c00460{left:469.333333pt;}
.xca_c00460{left:471.626667pt;}
.xde_c00460{left:473.706667pt;}
.x68_c00460{left:476.000000pt;}
.x5a_c00460{left:478.293333pt;}
.xfd_c00460{left:479.626667pt;}
.xf7_c00460{left:481.706667pt;}
.x51_c00460{left:482.666667pt;}
.xad_c00460{left:484.373333pt;}
.x28_c00460{left:486.666667pt;}
.xb4_c00460{left:487.626667pt;}
.x93_c00460{left:488.960000pt;}
.xc1_c00460{left:493.333333pt;}
.x83_c00460{left:494.666667pt;}
.xee_c00460{left:496.000000pt;}
.x45_c00460{left:497.706667pt;}
.x13_c00460{left:498.666667pt;}
.x71_c00460{left:501.706667pt;}
.x33_c00460{left:504.000000pt;}
.xb5_c00460{left:505.333333pt;}
.x14_c00460{left:508.000000pt;}
.xae_c00460{left:509.706667pt;}
.x5b_c00460{left:511.426667pt;}
.x52_c00460{left:514.093333pt;}
.x9c_c00460{left:515.040000pt;}
.xe3_c00460{left:516.373333pt;}
.x94_c00460{left:517.333333pt;}
.xe9_c00460{left:518.666667pt;}
.x10b_c00460{left:519.626667pt;}
.xf2_c00460{left:521.706667pt;}
.x111_c00460{left:524.000000pt;}
.x8c_c00460{left:525.333333pt;}
.x69_c00460{left:526.666667pt;}
.xdf_c00460{left:529.333333pt;}
.x108_c00460{left:532.373333pt;}
.xaf_c00460{left:533.706667pt;}
.x84_c00460{left:534.666667pt;}
.x10c_c00460{left:536.373333pt;}
.x15_c00460{left:537.333333pt;}
.xb6_c00460{left:540.000000pt;}
.xf8_c00460{left:541.333333pt;}
.x72_c00460{left:542.293333pt;}
.x79_c00460{left:544.000000pt;}
.xf3_c00460{left:546.666667pt;}
.xa1_c00460{left:547.626667pt;}
.x46_c00460{left:550.293333pt;}
.xcb_c00460{left:552.373333pt;}
.x85_c00460{left:553.706667pt;}
.xe4_c00460{left:554.666667pt;}
.x29_c00460{left:556.960000pt;}
.x95_c00460{left:558.293333pt;}
.x16_c00460{left:559.626667pt;}
.x5c_c00460{left:561.706667pt;}
.xd2_c00460{left:562.666667pt;}
.x34_c00460{left:563.626667pt;}
.x53_c00460{left:564.760000pt;}
.xb7_c00460{left:569.333333pt;}
.x7a_c00460{left:572.960000pt;}
.xa2_c00460{left:574.666667pt;}
.x73_c00460{left:575.800000pt;}
.xcc_c00460{left:577.333333pt;}
.x109_c00460{left:580.960000pt;}
.xec_c00460{left:582.666667pt;}
.xd8_c00460{left:584.000000pt;}
.x6a_c00460{left:585.333333pt;}
.x96_c00460{left:587.040000pt;}
.xbf_c00460{left:588.000000pt;}
.x9d_c00460{left:589.333333pt;}
.x112_c00460{left:591.040000pt;}
.x114_c00460{left:592.373333pt;}
.x5d_c00460{left:593.706667pt;}
.x54_c00460{left:596.760000pt;}
.xed_c00460{left:598.093333pt;}
.x47_c00460{left:600.373333pt;}
.x17_c00460{left:601.333333pt;}
.xfe_c00460{left:602.666667pt;}
.x6b_c00460{left:604.573333pt;}
.x2a_c00460{left:606.666667pt;}
.x18_c00460{left:610.666667pt;}
.x7b_c00460{left:612.000000pt;}
.xf9_c00460{left:613.333333pt;}
.x35_c00460{left:614.293333pt;}
.x2b_c00460{left:616.000000pt;}
.xa3_c00460{left:617.706667pt;}
.xd3_c00460{left:618.666667pt;}
.x5e_c00460{left:620.960000pt;}
.x55_c00460{left:622.666667pt;}
.x36_c00460{left:625.333333pt;}
.x74_c00460{left:626.666667pt;}
.xd9_c00460{left:628.373333pt;}
.x2_c00460{left:629.333333pt;}
.x48_c00460{left:630.666667pt;}
.x102_c00460{left:636.000000pt;}
.x3_c00460{left:638.666667pt;}
.x5f_c00460{left:642.666667pt;}
.x49_c00460{left:644.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_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_6e3bd4b56526eae395ff66fa.woff2')format("woff");}.ff1_c00461{font-family:ff1_c00461;line-height:1.688965;font-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_c00461{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00461{transform:matrix(0.275974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275974,0.000000,0.000000,0.250000,0,0);}
.mdf_c00461{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mba_c00461{transform:matrix(0.365966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365966,0.000000,0.000000,0.250000,0,0);}
.mc5_c00461{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mc2_c00461{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.me3_c00461{transform:matrix(0.378151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378151,0.000000,0.000000,0.250000,0,0);}
.me1_c00461{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m92_c00461{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.me0_c00461{transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);}
.ma8_c00461{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m6b_c00461{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m5a_c00461{transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);}
.m2c_c00461{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.mc1_c00461{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m67_c00461{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m16_c00461{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m24_c00461{transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);}
.mc6_c00461{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m1e_c00461{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m8_c00461{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.md8_c00461{transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);}
.m5b_c00461{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mab_c00461{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.me2_c00461{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.m44_c00461{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m49_c00461{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m46_c00461{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m5_c00461{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m3b_c00461{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m9b_c00461{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m56_c00461{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.md1_c00461{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m30_c00461{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.mbe_c00461{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m8e_c00461{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m14_c00461{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m9f_c00461{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m3_c00461{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m63_c00461{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m9d_c00461{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.m5c_c00461{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.mb5_c00461{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.maf_c00461{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.mbd_c00461{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m42_c00461{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m70_c00461{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.mb4_c00461{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m73_c00461{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m86_c00461{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.md6_c00461{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m51_c00461{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m97_c00461{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mb8_c00461{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.md3_c00461{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m5d_c00461{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m94_c00461{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.mf_c00461{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m7e_c00461{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.ma5_c00461{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m9_c00461{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m26_c00461{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.m1a_c00461{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m85_c00461{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m98_c00461{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m7b_c00461{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mda_c00461{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m20_c00461{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m2d_c00461{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m68_c00461{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.m9a_c00461{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.mc0_c00461{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.ma7_c00461{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.mc4_c00461{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m59_c00461{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.md4_c00461{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.m75_c00461{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m96_c00461{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.mdd_c00461{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.mb7_c00461{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.m62_c00461{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m55_c00461{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.ma9_c00461{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m47_c00461{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.ma0_c00461{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.m45_c00461{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.m90_c00461{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m7a_c00461{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.md_c00461{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m39_c00461{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.mbc_c00461{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m84_c00461{transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);}
.ma3_c00461{transform:matrix(0.473562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473562,0.000000,0.000000,0.250000,0,0);}
.m89_c00461{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m35_c00461{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m9c_c00461{transform:matrix(0.482773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482773,0.000000,0.000000,0.250000,0,0);}
.mb9_c00461{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m54_c00461{transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);}
.m17_c00461{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m8b_c00461{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m8d_c00461{transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);}
.mcb_c00461{transform:matrix(0.489796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489796,0.000000,0.000000,0.250000,0,0);}
.mc9_c00461{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m1_c00461{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m40_c00461{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m79_c00461{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m78_c00461{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m57_c00461{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.md5_c00461{transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);}
.m4_c00461{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_c00461{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m53_c00461{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m7f_c00461{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m4d_c00461{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m7d_c00461{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.mb2_c00461{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mcc_c00461{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mb1_c00461{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m3e_c00461{transform:matrix(0.513451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513451,0.000000,0.000000,0.250000,0,0);}
.m5e_c00461{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m22_c00461{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.me4_c00461{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.ma6_c00461{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m43_c00461{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m6d_c00461{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m65_c00461{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mc3_c00461{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m82_c00461{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m99_c00461{transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);}
.m1c_c00461{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m4f_c00461{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m95_c00461{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mb0_c00461{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mac_c00461{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m13_c00461{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m6f_c00461{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mc_c00461{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m88_c00461{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mae_c00461{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m32_c00461{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.ma2_c00461{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m33_c00461{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m23_c00461{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m10_c00461{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m37_c00461{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.ma_c00461{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m87_c00461{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m34_c00461{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m6_c00461{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.md2_c00461{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m71_c00461{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mcf_c00461{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m64_c00461{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m29_c00461{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m12_c00461{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.md7_c00461{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m6e_c00461{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m83_c00461{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m15_c00461{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m1f_c00461{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m27_c00461{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m4e_c00461{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mb3_c00461{transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);}
.m3d_c00461{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.ma1_c00461{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m4c_c00461{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m6a_c00461{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mcd_c00461{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mce_c00461{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m2b_c00461{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m8f_c00461{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m2a_c00461{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m48_c00461{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m81_c00461{transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);}
.me_c00461{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m8a_c00461{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m8c_c00461{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m19_c00461{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m72_c00461{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m6c_c00461{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m52_c00461{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m3c_c00461{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m91_c00461{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m7c_c00461{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.mc8_c00461{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m3a_c00461{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mdb_c00461{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m21_c00461{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.mbb_c00461{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m25_c00461{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m50_c00461{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_c00461{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.m2_c00461{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.md0_c00461{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m36_c00461{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m28_c00461{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m38_c00461{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m93_c00461{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m2f_c00461{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m4a_c00461{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.mde_c00461{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m58_c00461{transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);}
.mad_c00461{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m0_c00461{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m76_c00461{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m66_c00461{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m4b_c00461{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m9e_c00461{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.md9_c00461{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.m3f_c00461{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mdc_c00461{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m5f_c00461{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mb6_c00461{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m69_c00461{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.mb_c00461{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m77_c00461{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m18_c00461{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mc7_c00461{transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);}
.m11_c00461{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m1b_c00461{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m60_c00461{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m61_c00461{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m7_c00461{transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);}
.mca_c00461{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m1d_c00461{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m80_c00461{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.ma4_c00461{transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);}
.maa_c00461{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mbf_c00461{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,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;}
}
.ws1_c00461{word-spacing:0.000000px;}
.ws0_c00461{word-spacing:1.378427px;}
.fc0_c00461{color:transparent;}
.fs6_c00461{font-size:3.420000px;}
.fs4_c00461{font-size:18.720000px;}
.fs0_c00461{font-size:20.400000px;}
.fs2_c00461{font-size:25.500000px;}
.fs1_c00461{font-size:28.920000px;}
.fs5_c00461{font-size:32.340000px;}
.fs3_c00461{font-size:35.700000px;}
.y0_c00461{bottom:0.000000px;}
.ycd_c00461{bottom:253.245000px;}
.ycc_c00461{bottom:255.405000px;}
.yc8_c00461{bottom:272.745000px;}
.yca_c00461{bottom:274.245000px;}
.yc9_c00461{bottom:274.905000px;}
.ycb_c00461{bottom:275.130000px;}
.yc2_c00461{bottom:292.245000px;}
.yc5_c00461{bottom:293.745000px;}
.yc3_c00461{bottom:293.970000px;}
.yc7_c00461{bottom:294.405000px;}
.yc4_c00461{bottom:294.630000px;}
.yc1_c00461{bottom:295.470000px;}
.yc6_c00461{bottom:295.905000px;}
.ybd_c00461{bottom:311.745000px;}
.ybf_c00461{bottom:313.245000px;}
.ybc_c00461{bottom:313.905000px;}
.ybe_c00461{bottom:314.130000px;}
.yc0_c00461{bottom:315.405000px;}
.yb6_c00461{bottom:331.245000px;}
.yb7_c00461{bottom:332.745000px;}
.yb8_c00461{bottom:333.630000px;}
.yba_c00461{bottom:333.825000px;}
.yb9_c00461{bottom:334.905000px;}
.ybb_c00461{bottom:335.970000px;}
.yb5_c00461{bottom:352.245000px;}
.yb2_c00461{bottom:352.905000px;}
.yb4_c00461{bottom:353.970000px;}
.yb3_c00461{bottom:354.405000px;}
.yb1_c00461{bottom:371.325000px;}
.yac_c00461{bottom:371.745000px;}
.yaf_c00461{bottom:372.630000px;}
.yb0_c00461{bottom:373.470000px;}
.yad_c00461{bottom:373.905000px;}
.yae_c00461{bottom:374.130000px;}
.ya7_c00461{bottom:391.245000px;}
.yaa_c00461{bottom:392.325000px;}
.ya8_c00461{bottom:392.745000px;}
.ya9_c00461{bottom:392.970000px;}
.ya5_c00461{bottom:393.405000px;}
.yab_c00461{bottom:393.630000px;}
.ya6_c00461{bottom:394.920000px;}
.ya1_c00461{bottom:410.745000px;}
.ya4_c00461{bottom:412.245000px;}
.ya3_c00461{bottom:412.905000px;}
.ya2_c00461{bottom:413.970000px;}
.y9d_c00461{bottom:430.245000px;}
.y9f_c00461{bottom:430.470000px;}
.ya0_c00461{bottom:431.325000px;}
.y9c_c00461{bottom:432.405000px;}
.y9e_c00461{bottom:433.905000px;}
.y9b_c00461{bottom:451.245000px;}
.y99_c00461{bottom:451.905000px;}
.y9a_c00461{bottom:453.405000px;}
.y94_c00461{bottom:470.745000px;}
.y98_c00461{bottom:471.630000px;}
.y97_c00461{bottom:471.825000px;}
.y96_c00461{bottom:472.905000px;}
.y95_c00461{bottom:473.130000px;}
.y91_c00461{bottom:490.245000px;}
.y90_c00461{bottom:492.405000px;}
.y93_c00461{bottom:492.630000px;}
.y92_c00461{bottom:493.905000px;}
.y8f_c00461{bottom:509.745000px;}
.y8e_c00461{bottom:511.245000px;}
.y8d_c00461{bottom:511.905000px;}
.y8c_c00461{bottom:512.130000px;}
.y89_c00461{bottom:528.405000px;}
.y8b_c00461{bottom:529.245000px;}
.y88_c00461{bottom:531.405000px;}
.y8a_c00461{bottom:532.470000px;}
.y85_c00461{bottom:547.905000px;}
.y87_c00461{bottom:550.245000px;}
.y86_c00461{bottom:551.130000px;}
.y83_c00461{bottom:567.405000px;}
.y82_c00461{bottom:569.745000px;}
.y84_c00461{bottom:571.470000px;}
.y81_c00461{bottom:571.905000px;}
.y80_c00461{bottom:589.245000px;}
.y7e_c00461{bottom:590.130000px;}
.y7d_c00461{bottom:590.325000px;}
.y7f_c00461{bottom:591.405000px;}
.y7c_c00461{bottom:607.905000px;}
.y79_c00461{bottom:608.745000px;}
.y78_c00461{bottom:609.630000px;}
.y7b_c00461{bottom:609.825000px;}
.y7a_c00461{bottom:610.905000px;}
.y77_c00461{bottom:627.405000px;}
.y75_c00461{bottom:628.245000px;}
.y74_c00461{bottom:630.405000px;}
.y76_c00461{bottom:630.630000px;}
.y73_c00461{bottom:646.905000px;}
.y72_c00461{bottom:647.745000px;}
.y6f_c00461{bottom:648.825000px;}
.y70_c00461{bottom:649.245000px;}
.y6e_c00461{bottom:649.905000px;}
.y71_c00461{bottom:651.405000px;}
.y6d_c00461{bottom:666.405000px;}
.y6a_c00461{bottom:668.745000px;}
.y69_c00461{bottom:669.405000px;}
.y6c_c00461{bottom:670.470000px;}
.y6b_c00461{bottom:670.905000px;}
.y67_c00461{bottom:685.905000px;}
.y64_c00461{bottom:688.245000px;}
.y63_c00461{bottom:688.905000px;}
.y62_c00461{bottom:689.130000px;}
.y68_c00461{bottom:689.325000px;}
.y65_c00461{bottom:690.405000px;}
.y66_c00461{bottom:691.470000px;}
.y60_c00461{bottom:705.405000px;}
.y61_c00461{bottom:707.745000px;}
.y5e_c00461{bottom:709.470000px;}
.y5d_c00461{bottom:709.905000px;}
.y5f_c00461{bottom:710.970000px;}
.y59_c00461{bottom:726.825000px;}
.y5a_c00461{bottom:727.245000px;}
.y58_c00461{bottom:728.130000px;}
.y5c_c00461{bottom:728.325000px;}
.y5b_c00461{bottom:728.970000px;}
.y57_c00461{bottom:729.405000px;}
.y56_c00461{bottom:746.745000px;}
.y55_c00461{bottom:748.905000px;}
.y52_c00461{bottom:765.405000px;}
.y53_c00461{bottom:767.745000px;}
.y4f_c00461{bottom:768.405000px;}
.y54_c00461{bottom:768.630000px;}
.y51_c00461{bottom:769.470000px;}
.y50_c00461{bottom:769.905000px;}
.y4b_c00461{bottom:784.905000px;}
.y4c_c00461{bottom:785.745000px;}
.y4e_c00461{bottom:785.970000px;}
.y4d_c00461{bottom:786.825000px;}
.y49_c00461{bottom:787.245000px;}
.y46_c00461{bottom:787.905000px;}
.y47_c00461{bottom:788.130000px;}
.y48_c00461{bottom:788.325000px;}
.y4a_c00461{bottom:789.405000px;}
.y45_c00461{bottom:806.745000px;}
.y42_c00461{bottom:807.405000px;}
.y44_c00461{bottom:808.470000px;}
.y43_c00461{bottom:808.905000px;}
.y3f_c00461{bottom:823.905000px;}
.y41_c00461{bottom:826.245000px;}
.y40_c00461{bottom:827.130000px;}
.y3e_c00461{bottom:828.405000px;}
.y3b_c00461{bottom:845.745000px;}
.y3a_c00461{bottom:846.405000px;}
.y3c_c00461{bottom:847.905000px;}
.y3d_c00461{bottom:848.970000px;}
.y37_c00461{bottom:865.245000px;}
.y35_c00461{bottom:866.130000px;}
.y39_c00461{bottom:866.970000px;}
.y36_c00461{bottom:867.405000px;}
.y38_c00461{bottom:867.630000px;}
.y32_c00461{bottom:884.745000px;}
.y33_c00461{bottom:886.905000px;}
.y34_c00461{bottom:887.130000px;}
.y2d_c00461{bottom:905.325000px;}
.y2e_c00461{bottom:905.745000px;}
.y31_c00461{bottom:905.970000px;}
.y2c_c00461{bottom:906.405000px;}
.y2f_c00461{bottom:907.470000px;}
.y30_c00461{bottom:907.905000px;}
.y2b_c00461{bottom:925.245000px;}
.y28_c00461{bottom:925.470000px;}
.y29_c00461{bottom:925.905000px;}
.y27_c00461{bottom:926.970000px;}
.y2a_c00461{bottom:927.405000px;}
.y26_c00461{bottom:943.245000px;}
.y23_c00461{bottom:944.745000px;}
.y22_c00461{bottom:945.405000px;}
.y25_c00461{bottom:946.470000px;}
.y24_c00461{bottom:946.905000px;}
.y20_c00461{bottom:962.745000px;}
.y1d_c00461{bottom:964.905000px;}
.y1e_c00461{bottom:965.325000px;}
.y1f_c00461{bottom:966.405000px;}
.y21_c00461{bottom:967.470000px;}
.y1b_c00461{bottom:982.245000px;}
.y1c_c00461{bottom:982.470000px;}
.y19_c00461{bottom:983.325000px;}
.y18_c00461{bottom:984.825000px;}
.y17_c00461{bottom:985.905000px;}
.y1a_c00461{bottom:986.970000px;}
.y14_c00461{bottom:1003.245000px;}
.y11_c00461{bottom:1003.905000px;}
.y12_c00461{bottom:1004.130000px;}
.y15_c00461{bottom:1004.325000px;}
.y16_c00461{bottom:1004.970000px;}
.y13_c00461{bottom:1005.405000px;}
.y10_c00461{bottom:1021.245000px;}
.yf_c00461{bottom:1021.470000px;}
.yd_c00461{bottom:1022.745000px;}
.yb_c00461{bottom:1023.405000px;}
.yc_c00461{bottom:1023.630000px;}
.ye_c00461{bottom:1024.905000px;}
.ya_c00461{bottom:1042.245000px;}
.y8_c00461{bottom:1043.130000px;}
.y9_c00461{bottom:1044.405000px;}
.y7_c00461{bottom:1060.905000px;}
.y4_c00461{bottom:1061.745000px;}
.y3_c00461{bottom:1063.470000px;}
.y5_c00461{bottom:1063.905000px;}
.y6_c00461{bottom:1064.130000px;}
.y2_c00461{bottom:1099.905000px;}
.y1_c00461{bottom:1102.050000px;}
.h7_c00461{height:4.206533px;}
.h5_c00461{height:23.025234px;}
.h1_c00461{height:25.091602px;}
.h3_c00461{height:31.364502px;}
.h2_c00461{height:35.571035px;}
.h6_c00461{height:39.777568px;}
.h4_c00461{height:43.910303px;}
.h0_c00461{height:1335.000000px;}
.w0_c00461{width:880.500000px;}
.x0_c00461{left:0.000000px;}
.x2_c00461{left:151.500000px;}
.x3_c00461{left:153.000000px;}
.x9a_c00461{left:154.500000px;}
.x74_c00461{left:166.920000px;}
.xc0_c00461{left:168.000000px;}
.x34_c00461{left:169.080000px;}
.x42_c00461{left:171.000000px;}
.xf7_c00461{left:172.500000px;}
.x1f_c00461{left:175.500000px;}
.xc7_c00461{left:177.000000px;}
.xb9_c00461{left:180.000000px;}
.x4_c00461{left:183.000000px;}
.xe2_c00461{left:184.500000px;}
.x4a_c00461{left:186.000000px;}
.x20_c00461{left:187.080000px;}
.x14_c00461{left:188.580000px;}
.x6d_c00461{left:192.000000px;}
.x58_c00461{left:193.500000px;}
.x2c_c00461{left:195.000000px;}
.xac_c00461{left:198.000000px;}
.x9b_c00461{left:199.500000px;}
.x7d_c00461{left:201.000000px;}
.x75_c00461{left:203.580000px;}
.x5f_c00461{left:207.000000px;}
.x15_c00461{left:208.920000px;}
.x2d_c00461{left:211.920000px;}
.x93_c00461{left:213.000000px;}
.x68_c00461{left:216.420000px;}
.x10c_c00461{left:218.580000px;}
.x5_c00461{left:220.080000px;}
.x35_c00461{left:222.420000px;}
.x90_c00461{left:225.000000px;}
.x43_c00461{left:226.500000px;}
.xcd_c00461{left:229.500000px;}
.x88_c00461{left:231.420000px;}
.x76_c00461{left:232.500000px;}
.x21_c00461{left:234.420000px;}
.x16_c00461{left:236.580000px;}
.x6_c00461{left:238.920000px;}
.xea_c00461{left:244.500000px;}
.x60_c00461{left:249.420000px;}
.xb5_c00461{left:250.500000px;}
.x4b_c00461{left:251.580000px;}
.xc8_c00461{left:253.920000px;}
.xe3_c00461{left:255.420000px;}
.x59_c00461{left:256.920000px;}
.xba_c00461{left:258.000000px;}
.x7e_c00461{left:259.080000px;}
.x44_c00461{left:261.420000px;}
.xc1_c00461{left:262.920000px;}
.xce_c00461{left:264.000000px;}
.xd2_c00461{left:268.080000px;}
.x9c_c00461{left:270.000000px;}
.x89_c00461{left:271.500000px;}
.xf8_c00461{left:273.000000px;}
.x61_c00461{left:274.500000px;}
.x7_c00461{left:275.580000px;}
.x22_c00461{left:277.500000px;}
.x69_c00461{left:279.000000px;}
.xc9_c00461{left:280.080000px;}
.x4c_c00461{left:283.080000px;}
.xdd_c00461{left:285.000000px;}
.x17_c00461{left:286.920000px;}
.xf9_c00461{left:288.000000px;}
.x6e_c00461{left:289.080000px;}
.x105_c00461{left:291.420000px;}
.xe4_c00461{left:292.920000px;}
.xef_c00461{left:295.500000px;}
.xad_c00461{left:297.000000px;}
.x9d_c00461{left:300.000000px;}
.x4d_c00461{left:301.920000px;}
.x2e_c00461{left:303.000000px;}
.x23_c00461{left:304.920000px;}
.x36_c00461{left:310.080000px;}
.x9e_c00461{left:312.000000px;}
.xbb_c00461{left:313.080000px;}
.xd3_c00461{left:314.580000px;}
.x18_c00461{left:316.500000px;}
.xfa_c00461{left:318.000000px;}
.x6f_c00461{left:319.500000px;}
.x5a_c00461{left:320.580000px;}
.x108_c00461{left:322.920000px;}
.x37_c00461{left:324.000000px;}
.x101_c00461{left:325.500000px;}
.xf1_c00461{left:326.580000px;}
.x24_c00461{left:328.500000px;}
.x4e_c00461{left:330.000000px;}
.xc2_c00461{left:331.920000px;}
.x94_c00461{left:334.500000px;}
.x62_c00461{left:337.500000px;}
.x38_c00461{left:339.000000px;}
.x5b_c00461{left:340.500000px;}
.xae_c00461{left:341.580000px;}
.x45_c00461{left:345.000000px;}
.xa5_c00461{left:348.000000px;}
.x8_c00461{left:352.500000px;}
.x39_c00461{left:354.855000px;}
.xeb_c00461{left:355.920000px;}
.xc3_c00461{left:360.000000px;}
.x77_c00461{left:361.500000px;}
.x19_c00461{left:362.580000px;}
.xaf_c00461{left:364.920000px;}
.x25_c00461{left:367.500000px;}
.x95_c00461{left:369.420000px;}
.x8a_c00461{left:370.500000px;}
.xf2_c00461{left:373.500000px;}
.x78_c00461{left:375.000000px;}
.xd4_c00461{left:376.080000px;}
.x4f_c00461{left:378.000000px;}
.x7f_c00461{left:379.920000px;}
.x2f_c00461{left:382.920000px;}
.xb2_c00461{left:384.000000px;}
.x3a_c00461{left:385.500000px;}
.x46_c00461{left:388.500000px;}
.x79_c00461{left:390.000000px;}
.x6a_c00461{left:391.500000px;}
.xb0_c00461{left:392.580000px;}
.x50_c00461{left:394.500000px;}
.xd5_c00461{left:396.420000px;}
.xfb_c00461{left:397.500000px;}
.x3b_c00461{left:399.000000px;}
.x70_c00461{left:402.000000px;}
.xf3_c00461{left:403.500000px;}
.xc4_c00461{left:405.000000px;}
.x47_c00461{left:406.500000px;}
.x1_c00461{left:408.000000px;}
.x63_c00461{left:412.920000px;}
.x80_c00461{left:414.000000px;}
.x9_c00461{left:418.500000px;}
.xde_c00461{left:420.420000px;}
.x71_c00461{left:421.920000px;}
.xd6_c00461{left:423.000000px;}
.x9f_c00461{left:424.920000px;}
.xec_c00461{left:427.500000px;}
.x3c_c00461{left:429.420000px;}
.x26_c00461{left:430.920000px;}
.x81_c00461{left:433.920000px;}
.x5c_c00461{left:438.000000px;}
.x1a_c00461{left:441.000000px;}
.x8b_c00461{left:442.500000px;}
.xa6_c00461{left:445.500000px;}
.x72_c00461{left:446.580000px;}
.xdf_c00461{left:448.080000px;}
.x51_c00461{left:449.580000px;}
.xa0_c00461{left:451.080000px;}
.x96_c00461{left:454.500000px;}
.x82_c00461{left:460.500000px;}
.xb6_c00461{left:463.500000px;}
.x5d_c00461{left:465.000000px;}
.xa_c00461{left:466.920000px;}
.x8c_c00461{left:468.000000px;}
.xbc_c00461{left:469.500000px;}
.x7a_c00461{left:471.000000px;}
.x6b_c00461{left:472.500000px;}
.xd7_c00461{left:473.580000px;}
.x106_c00461{left:478.500000px;}
.xe5_c00461{left:479.580000px;}
.x64_c00461{left:483.000000px;}
.xfc_c00461{left:489.000000px;}
.x3d_c00461{left:490.500000px;}
.xf4_c00461{left:492.420000px;}
.xa1_c00461{left:493.500000px;}
.x5e_c00461{left:495.000000px;}
.xa3_c00461{left:496.920000px;}
.xb_c00461{left:501.000000px;}
.xed_c00461{left:502.920000px;}
.x27_c00461{left:504.420000px;}
.xd8_c00461{left:505.920000px;}
.x83_c00461{left:507.000000px;}
.xca_c00461{left:509.580000px;}
.x1b_c00461{left:511.080000px;}
.xa7_c00461{left:513.420000px;}
.x73_c00461{left:514.500000px;}
.xfd_c00461{left:520.920000px;}
.xc_c00461{left:523.500000px;}
.x52_c00461{left:525.420000px;}
.x48_c00461{left:526.500000px;}
.xcb_c00461{left:528.000000px;}
.xf0_c00461{left:529.500000px;}
.xf5_c00461{left:531.420000px;}
.x30_c00461{left:532.920000px;}
.xd9_c00461{left:534.000000px;}
.xc5_c00461{left:535.500000px;}
.x7b_c00461{left:537.420000px;}
.x65_c00461{left:538.500000px;}
.x28_c00461{left:540.420000px;}
.xb1_c00461{left:542.580000px;}
.xd_c00461{left:544.920000px;}
.x91_c00461{left:546.420000px;}
.x8d_c00461{left:550.920000px;}
.x53_c00461{left:552.420000px;}
.xcf_c00461{left:553.920000px;}
.xcc_c00461{left:555.000000px;}
.x97_c00461{left:556.500000px;}
.xe6_c00461{left:558.420000px;}
.x3e_c00461{left:559.500000px;}
.x31_c00461{left:564.420000px;}
.x1c_c00461{left:565.500000px;}
.x29_c00461{left:567.420000px;}
.x7c_c00461{left:569.580000px;}
.xe_c00461{left:571.500000px;}
.xfe_c00461{left:573.420000px;}
.xe0_c00461{left:574.920000px;}
.x3f_c00461{left:576.000000px;}
.x54_c00461{left:577.080000px;}
.x84_c00461{left:579.000000px;}
.xd0_c00461{left:583.920000px;}
.xe7_c00461{left:585.000000px;}
.x109_c00461{left:586.500000px;}
.x92_c00461{left:588.000000px;}
.xb7_c00461{left:591.420000px;}
.x55_c00461{left:597.000000px;}
.x85_c00461{left:598.920000px;}
.xda_c00461{left:600.000000px;}
.xa8_c00461{left:603.000000px;}
.xe1_c00461{left:604.500000px;}
.xf_c00461{left:607.080000px;}
.xbd_c00461{left:609.000000px;}
.x10a_c00461{left:610.920000px;}
.x40_c00461{left:614.580000px;}
.x8e_c00461{left:618.000000px;}
.xf6_c00461{left:619.500000px;}
.x49_c00461{left:624.420000px;}
.x10_c00461{left:625.920000px;}
.x32_c00461{left:627.000000px;}
.x2a_c00461{left:628.500000px;}
.x107_c00461{left:631.080000px;}
.x1d_c00461{left:633.000000px;}
.xb3_c00461{left:634.500000px;}
.x98_c00461{left:636.000000px;}
.xe8_c00461{left:640.500000px;}
.x56_c00461{left:641.580000px;}
.x102_c00461{left:643.500000px;}
.x41_c00461{left:645.000000px;}
.xd1_c00461{left:646.080000px;}
.xff_c00461{left:651.000000px;}
.x11_c00461{left:652.500000px;}
.x6c_c00461{left:655.500000px;}
.x33_c00461{left:657.420000px;}
.x66_c00461{left:659.580000px;}
.x99_c00461{left:661.080000px;}
.xa2_c00461{left:662.580000px;}
.xa9_c00461{left:664.080000px;}
.xb4_c00461{left:665.580000px;}
.x100_c00461{left:667.920000px;}
.x86_c00461{left:669.855000px;}
.x103_c00461{left:670.920000px;}
.xe9_c00461{left:672.000000px;}
.xdb_c00461{left:673.920000px;}
.xbe_c00461{left:676.500000px;}
.x1e_c00461{left:678.000000px;}
.x10b_c00461{left:679.500000px;}
.xb8_c00461{left:682.080000px;}
.xaa_c00461{left:684.000000px;}
.xa4_c00461{left:685.080000px;}
.xee_c00461{left:688.080000px;}
.x12_c00461{left:691.500000px;}
.xbf_c00461{left:693.000000px;}
.x8f_c00461{left:694.080000px;}
.xab_c00461{left:696.000000px;}
.x2b_c00461{left:700.920000px;}
.xdc_c00461{left:702.420000px;}
.x87_c00461{left:703.500000px;}
.x57_c00461{left:706.920000px;}
.x13_c00461{left:709.920000px;}
.x104_c00461{left:712.920000px;}
.xc6_c00461{left:717.000000px;}
.x67_c00461{left:720.000000px;}
@media print{
.v0_c00461{vertical-align:0.000000pt;}
.ls0_c00461{letter-spacing:0.000000pt;}
.ws1_c00461{word-spacing:0.000000pt;}
.ws0_c00461{word-spacing:1.225268pt;}
.fs6_c00461{font-size:3.040000pt;}
.fs4_c00461{font-size:16.640000pt;}
.fs0_c00461{font-size:18.133333pt;}
.fs2_c00461{font-size:22.666667pt;}
.fs1_c00461{font-size:25.706667pt;}
.fs5_c00461{font-size:28.746667pt;}
.fs3_c00461{font-size:31.733333pt;}
.y0_c00461{bottom:0.000000pt;}
.ycd_c00461{bottom:225.106667pt;}
.ycc_c00461{bottom:227.026667pt;}
.yc8_c00461{bottom:242.440000pt;}
.yca_c00461{bottom:243.773333pt;}
.yc9_c00461{bottom:244.360000pt;}
.ycb_c00461{bottom:244.560000pt;}
.yc2_c00461{bottom:259.773333pt;}
.yc5_c00461{bottom:261.106667pt;}
.yc3_c00461{bottom:261.306667pt;}
.yc7_c00461{bottom:261.693333pt;}
.yc4_c00461{bottom:261.893333pt;}
.yc1_c00461{bottom:262.640000pt;}
.yc6_c00461{bottom:263.026667pt;}
.ybd_c00461{bottom:277.106667pt;}
.ybf_c00461{bottom:278.440000pt;}
.ybc_c00461{bottom:279.026667pt;}
.ybe_c00461{bottom:279.226667pt;}
.yc0_c00461{bottom:280.360000pt;}
.yb6_c00461{bottom:294.440000pt;}
.yb7_c00461{bottom:295.773333pt;}
.yb8_c00461{bottom:296.560000pt;}
.yba_c00461{bottom:296.733333pt;}
.yb9_c00461{bottom:297.693333pt;}
.ybb_c00461{bottom:298.640000pt;}
.yb5_c00461{bottom:313.106667pt;}
.yb2_c00461{bottom:313.693333pt;}
.yb4_c00461{bottom:314.640000pt;}
.yb3_c00461{bottom:315.026667pt;}
.yb1_c00461{bottom:330.066667pt;}
.yac_c00461{bottom:330.440000pt;}
.yaf_c00461{bottom:331.226667pt;}
.yb0_c00461{bottom:331.973333pt;}
.yad_c00461{bottom:332.360000pt;}
.yae_c00461{bottom:332.560000pt;}
.ya7_c00461{bottom:347.773333pt;}
.yaa_c00461{bottom:348.733333pt;}
.ya8_c00461{bottom:349.106667pt;}
.ya9_c00461{bottom:349.306667pt;}
.ya5_c00461{bottom:349.693333pt;}
.yab_c00461{bottom:349.893333pt;}
.ya6_c00461{bottom:351.040000pt;}
.ya1_c00461{bottom:365.106667pt;}
.ya4_c00461{bottom:366.440000pt;}
.ya3_c00461{bottom:367.026667pt;}
.ya2_c00461{bottom:367.973333pt;}
.y9d_c00461{bottom:382.440000pt;}
.y9f_c00461{bottom:382.640000pt;}
.ya0_c00461{bottom:383.400000pt;}
.y9c_c00461{bottom:384.360000pt;}
.y9e_c00461{bottom:385.693333pt;}
.y9b_c00461{bottom:401.106667pt;}
.y99_c00461{bottom:401.693333pt;}
.y9a_c00461{bottom:403.026667pt;}
.y94_c00461{bottom:418.440000pt;}
.y98_c00461{bottom:419.226667pt;}
.y97_c00461{bottom:419.400000pt;}
.y96_c00461{bottom:420.360000pt;}
.y95_c00461{bottom:420.560000pt;}
.y91_c00461{bottom:435.773333pt;}
.y90_c00461{bottom:437.693333pt;}
.y93_c00461{bottom:437.893333pt;}
.y92_c00461{bottom:439.026667pt;}
.y8f_c00461{bottom:453.106667pt;}
.y8e_c00461{bottom:454.440000pt;}
.y8d_c00461{bottom:455.026667pt;}
.y8c_c00461{bottom:455.226667pt;}
.y89_c00461{bottom:469.693333pt;}
.y8b_c00461{bottom:470.440000pt;}
.y88_c00461{bottom:472.360000pt;}
.y8a_c00461{bottom:473.306667pt;}
.y85_c00461{bottom:487.026667pt;}
.y87_c00461{bottom:489.106667pt;}
.y86_c00461{bottom:489.893333pt;}
.y83_c00461{bottom:504.360000pt;}
.y82_c00461{bottom:506.440000pt;}
.y84_c00461{bottom:507.973333pt;}
.y81_c00461{bottom:508.360000pt;}
.y80_c00461{bottom:523.773333pt;}
.y7e_c00461{bottom:524.560000pt;}
.y7d_c00461{bottom:524.733333pt;}
.y7f_c00461{bottom:525.693333pt;}
.y7c_c00461{bottom:540.360000pt;}
.y79_c00461{bottom:541.106667pt;}
.y78_c00461{bottom:541.893333pt;}
.y7b_c00461{bottom:542.066667pt;}
.y7a_c00461{bottom:543.026667pt;}
.y77_c00461{bottom:557.693333pt;}
.y75_c00461{bottom:558.440000pt;}
.y74_c00461{bottom:560.360000pt;}
.y76_c00461{bottom:560.560000pt;}
.y73_c00461{bottom:575.026667pt;}
.y72_c00461{bottom:575.773333pt;}
.y6f_c00461{bottom:576.733333pt;}
.y70_c00461{bottom:577.106667pt;}
.y6e_c00461{bottom:577.693333pt;}
.y71_c00461{bottom:579.026667pt;}
.y6d_c00461{bottom:592.360000pt;}
.y6a_c00461{bottom:594.440000pt;}
.y69_c00461{bottom:595.026667pt;}
.y6c_c00461{bottom:595.973333pt;}
.y6b_c00461{bottom:596.360000pt;}
.y67_c00461{bottom:609.693333pt;}
.y64_c00461{bottom:611.773333pt;}
.y63_c00461{bottom:612.360000pt;}
.y62_c00461{bottom:612.560000pt;}
.y68_c00461{bottom:612.733333pt;}
.y65_c00461{bottom:613.693333pt;}
.y66_c00461{bottom:614.640000pt;}
.y60_c00461{bottom:627.026667pt;}
.y61_c00461{bottom:629.106667pt;}
.y5e_c00461{bottom:630.640000pt;}
.y5d_c00461{bottom:631.026667pt;}
.y5f_c00461{bottom:631.973333pt;}
.y59_c00461{bottom:646.066667pt;}
.y5a_c00461{bottom:646.440000pt;}
.y58_c00461{bottom:647.226667pt;}
.y5c_c00461{bottom:647.400000pt;}
.y5b_c00461{bottom:647.973333pt;}
.y57_c00461{bottom:648.360000pt;}
.y56_c00461{bottom:663.773333pt;}
.y55_c00461{bottom:665.693333pt;}
.y52_c00461{bottom:680.360000pt;}
.y53_c00461{bottom:682.440000pt;}
.y4f_c00461{bottom:683.026667pt;}
.y54_c00461{bottom:683.226667pt;}
.y51_c00461{bottom:683.973333pt;}
.y50_c00461{bottom:684.360000pt;}
.y4b_c00461{bottom:697.693333pt;}
.y4c_c00461{bottom:698.440000pt;}
.y4e_c00461{bottom:698.640000pt;}
.y4d_c00461{bottom:699.400000pt;}
.y49_c00461{bottom:699.773333pt;}
.y46_c00461{bottom:700.360000pt;}
.y47_c00461{bottom:700.560000pt;}
.y48_c00461{bottom:700.733333pt;}
.y4a_c00461{bottom:701.693333pt;}
.y45_c00461{bottom:717.106667pt;}
.y42_c00461{bottom:717.693333pt;}
.y44_c00461{bottom:718.640000pt;}
.y43_c00461{bottom:719.026667pt;}
.y3f_c00461{bottom:732.360000pt;}
.y41_c00461{bottom:734.440000pt;}
.y40_c00461{bottom:735.226667pt;}
.y3e_c00461{bottom:736.360000pt;}
.y3b_c00461{bottom:751.773333pt;}
.y3a_c00461{bottom:752.360000pt;}
.y3c_c00461{bottom:753.693333pt;}
.y3d_c00461{bottom:754.640000pt;}
.y37_c00461{bottom:769.106667pt;}
.y35_c00461{bottom:769.893333pt;}
.y39_c00461{bottom:770.640000pt;}
.y36_c00461{bottom:771.026667pt;}
.y38_c00461{bottom:771.226667pt;}
.y32_c00461{bottom:786.440000pt;}
.y33_c00461{bottom:788.360000pt;}
.y34_c00461{bottom:788.560000pt;}
.y2d_c00461{bottom:804.733333pt;}
.y2e_c00461{bottom:805.106667pt;}
.y31_c00461{bottom:805.306667pt;}
.y2c_c00461{bottom:805.693333pt;}
.y2f_c00461{bottom:806.640000pt;}
.y30_c00461{bottom:807.026667pt;}
.y2b_c00461{bottom:822.440000pt;}
.y28_c00461{bottom:822.640000pt;}
.y29_c00461{bottom:823.026667pt;}
.y27_c00461{bottom:823.973333pt;}
.y2a_c00461{bottom:824.360000pt;}
.y26_c00461{bottom:838.440000pt;}
.y23_c00461{bottom:839.773333pt;}
.y22_c00461{bottom:840.360000pt;}
.y25_c00461{bottom:841.306667pt;}
.y24_c00461{bottom:841.693333pt;}
.y20_c00461{bottom:855.773333pt;}
.y1d_c00461{bottom:857.693333pt;}
.y1e_c00461{bottom:858.066667pt;}
.y1f_c00461{bottom:859.026667pt;}
.y21_c00461{bottom:859.973333pt;}
.y1b_c00461{bottom:873.106667pt;}
.y1c_c00461{bottom:873.306667pt;}
.y19_c00461{bottom:874.066667pt;}
.y18_c00461{bottom:875.400000pt;}
.y17_c00461{bottom:876.360000pt;}
.y1a_c00461{bottom:877.306667pt;}
.y14_c00461{bottom:891.773333pt;}
.y11_c00461{bottom:892.360000pt;}
.y12_c00461{bottom:892.560000pt;}
.y15_c00461{bottom:892.733333pt;}
.y16_c00461{bottom:893.306667pt;}
.y13_c00461{bottom:893.693333pt;}
.y10_c00461{bottom:907.773333pt;}
.yf_c00461{bottom:907.973333pt;}
.yd_c00461{bottom:909.106667pt;}
.yb_c00461{bottom:909.693333pt;}
.yc_c00461{bottom:909.893333pt;}
.ye_c00461{bottom:911.026667pt;}
.ya_c00461{bottom:926.440000pt;}
.y8_c00461{bottom:927.226667pt;}
.y9_c00461{bottom:928.360000pt;}
.y7_c00461{bottom:943.026667pt;}
.y4_c00461{bottom:943.773333pt;}
.y3_c00461{bottom:945.306667pt;}
.y5_c00461{bottom:945.693333pt;}
.y6_c00461{bottom:945.893333pt;}
.y2_c00461{bottom:977.693333pt;}
.y1_c00461{bottom:979.600000pt;}
.h7_c00461{height:3.739141pt;}
.h5_c00461{height:20.466875pt;}
.h1_c00461{height:22.303646pt;}
.h3_c00461{height:27.879557pt;}
.h2_c00461{height:31.618698pt;}
.h6_c00461{height:35.357839pt;}
.h4_c00461{height:39.031380pt;}
.h0_c00461{height:1186.666667pt;}
.w0_c00461{width:782.666667pt;}
.x0_c00461{left:0.000000pt;}
.x2_c00461{left:134.666667pt;}
.x3_c00461{left:136.000000pt;}
.x9a_c00461{left:137.333333pt;}
.x74_c00461{left:148.373333pt;}
.xc0_c00461{left:149.333333pt;}
.x34_c00461{left:150.293333pt;}
.x42_c00461{left:152.000000pt;}
.xf7_c00461{left:153.333333pt;}
.x1f_c00461{left:156.000000pt;}
.xc7_c00461{left:157.333333pt;}
.xb9_c00461{left:160.000000pt;}
.x4_c00461{left:162.666667pt;}
.xe2_c00461{left:164.000000pt;}
.x4a_c00461{left:165.333333pt;}
.x20_c00461{left:166.293333pt;}
.x14_c00461{left:167.626667pt;}
.x6d_c00461{left:170.666667pt;}
.x58_c00461{left:172.000000pt;}
.x2c_c00461{left:173.333333pt;}
.xac_c00461{left:176.000000pt;}
.x9b_c00461{left:177.333333pt;}
.x7d_c00461{left:178.666667pt;}
.x75_c00461{left:180.960000pt;}
.x5f_c00461{left:184.000000pt;}
.x15_c00461{left:185.706667pt;}
.x2d_c00461{left:188.373333pt;}
.x93_c00461{left:189.333333pt;}
.x68_c00461{left:192.373333pt;}
.x10c_c00461{left:194.293333pt;}
.x5_c00461{left:195.626667pt;}
.x35_c00461{left:197.706667pt;}
.x90_c00461{left:200.000000pt;}
.x43_c00461{left:201.333333pt;}
.xcd_c00461{left:204.000000pt;}
.x88_c00461{left:205.706667pt;}
.x76_c00461{left:206.666667pt;}
.x21_c00461{left:208.373333pt;}
.x16_c00461{left:210.293333pt;}
.x6_c00461{left:212.373333pt;}
.xea_c00461{left:217.333333pt;}
.x60_c00461{left:221.706667pt;}
.xb5_c00461{left:222.666667pt;}
.x4b_c00461{left:223.626667pt;}
.xc8_c00461{left:225.706667pt;}
.xe3_c00461{left:227.040000pt;}
.x59_c00461{left:228.373333pt;}
.xba_c00461{left:229.333333pt;}
.x7e_c00461{left:230.293333pt;}
.x44_c00461{left:232.373333pt;}
.xc1_c00461{left:233.706667pt;}
.xce_c00461{left:234.666667pt;}
.xd2_c00461{left:238.293333pt;}
.x9c_c00461{left:240.000000pt;}
.x89_c00461{left:241.333333pt;}
.xf8_c00461{left:242.666667pt;}
.x61_c00461{left:244.000000pt;}
.x7_c00461{left:244.960000pt;}
.x22_c00461{left:246.666667pt;}
.x69_c00461{left:248.000000pt;}
.xc9_c00461{left:248.960000pt;}
.x4c_c00461{left:251.626667pt;}
.xdd_c00461{left:253.333333pt;}
.x17_c00461{left:255.040000pt;}
.xf9_c00461{left:256.000000pt;}
.x6e_c00461{left:256.960000pt;}
.x105_c00461{left:259.040000pt;}
.xe4_c00461{left:260.373333pt;}
.xef_c00461{left:262.666667pt;}
.xad_c00461{left:264.000000pt;}
.x9d_c00461{left:266.666667pt;}
.x4d_c00461{left:268.373333pt;}
.x2e_c00461{left:269.333333pt;}
.x23_c00461{left:271.040000pt;}
.x36_c00461{left:275.626667pt;}
.x9e_c00461{left:277.333333pt;}
.xbb_c00461{left:278.293333pt;}
.xd3_c00461{left:279.626667pt;}
.x18_c00461{left:281.333333pt;}
.xfa_c00461{left:282.666667pt;}
.x6f_c00461{left:284.000000pt;}
.x5a_c00461{left:284.960000pt;}
.x108_c00461{left:287.040000pt;}
.x37_c00461{left:288.000000pt;}
.x101_c00461{left:289.333333pt;}
.xf1_c00461{left:290.293333pt;}
.x24_c00461{left:292.000000pt;}
.x4e_c00461{left:293.333333pt;}
.xc2_c00461{left:295.040000pt;}
.x94_c00461{left:297.333333pt;}
.x62_c00461{left:300.000000pt;}
.x38_c00461{left:301.333333pt;}
.x5b_c00461{left:302.666667pt;}
.xae_c00461{left:303.626667pt;}
.x45_c00461{left:306.666667pt;}
.xa5_c00461{left:309.333333pt;}
.x8_c00461{left:313.333333pt;}
.x39_c00461{left:315.426667pt;}
.xeb_c00461{left:316.373333pt;}
.xc3_c00461{left:320.000000pt;}
.x77_c00461{left:321.333333pt;}
.x19_c00461{left:322.293333pt;}
.xaf_c00461{left:324.373333pt;}
.x25_c00461{left:326.666667pt;}
.x95_c00461{left:328.373333pt;}
.x8a_c00461{left:329.333333pt;}
.xf2_c00461{left:332.000000pt;}
.x78_c00461{left:333.333333pt;}
.xd4_c00461{left:334.293333pt;}
.x4f_c00461{left:336.000000pt;}
.x7f_c00461{left:337.706667pt;}
.x2f_c00461{left:340.373333pt;}
.xb2_c00461{left:341.333333pt;}
.x3a_c00461{left:342.666667pt;}
.x46_c00461{left:345.333333pt;}
.x79_c00461{left:346.666667pt;}
.x6a_c00461{left:348.000000pt;}
.xb0_c00461{left:348.960000pt;}
.x50_c00461{left:350.666667pt;}
.xd5_c00461{left:352.373333pt;}
.xfb_c00461{left:353.333333pt;}
.x3b_c00461{left:354.666667pt;}
.x70_c00461{left:357.333333pt;}
.xf3_c00461{left:358.666667pt;}
.xc4_c00461{left:360.000000pt;}
.x47_c00461{left:361.333333pt;}
.x1_c00461{left:362.666667pt;}
.x63_c00461{left:367.040000pt;}
.x80_c00461{left:368.000000pt;}
.x9_c00461{left:372.000000pt;}
.xde_c00461{left:373.706667pt;}
.x71_c00461{left:375.040000pt;}
.xd6_c00461{left:376.000000pt;}
.x9f_c00461{left:377.706667pt;}
.xec_c00461{left:380.000000pt;}
.x3c_c00461{left:381.706667pt;}
.x26_c00461{left:383.040000pt;}
.x81_c00461{left:385.706667pt;}
.x5c_c00461{left:389.333333pt;}
.x1a_c00461{left:392.000000pt;}
.x8b_c00461{left:393.333333pt;}
.xa6_c00461{left:396.000000pt;}
.x72_c00461{left:396.960000pt;}
.xdf_c00461{left:398.293333pt;}
.x51_c00461{left:399.626667pt;}
.xa0_c00461{left:400.960000pt;}
.x96_c00461{left:404.000000pt;}
.x82_c00461{left:409.333333pt;}
.xb6_c00461{left:412.000000pt;}
.x5d_c00461{left:413.333333pt;}
.xa_c00461{left:415.040000pt;}
.x8c_c00461{left:416.000000pt;}
.xbc_c00461{left:417.333333pt;}
.x7a_c00461{left:418.666667pt;}
.x6b_c00461{left:420.000000pt;}
.xd7_c00461{left:420.960000pt;}
.x106_c00461{left:425.333333pt;}
.xe5_c00461{left:426.293333pt;}
.x64_c00461{left:429.333333pt;}
.xfc_c00461{left:434.666667pt;}
.x3d_c00461{left:436.000000pt;}
.xf4_c00461{left:437.706667pt;}
.xa1_c00461{left:438.666667pt;}
.x5e_c00461{left:440.000000pt;}
.xa3_c00461{left:441.706667pt;}
.xb_c00461{left:445.333333pt;}
.xed_c00461{left:447.040000pt;}
.x27_c00461{left:448.373333pt;}
.xd8_c00461{left:449.706667pt;}
.x83_c00461{left:450.666667pt;}
.xca_c00461{left:452.960000pt;}
.x1b_c00461{left:454.293333pt;}
.xa7_c00461{left:456.373333pt;}
.x73_c00461{left:457.333333pt;}
.xfd_c00461{left:463.040000pt;}
.xc_c00461{left:465.333333pt;}
.x52_c00461{left:467.040000pt;}
.x48_c00461{left:468.000000pt;}
.xcb_c00461{left:469.333333pt;}
.xf0_c00461{left:470.666667pt;}
.xf5_c00461{left:472.373333pt;}
.x30_c00461{left:473.706667pt;}
.xd9_c00461{left:474.666667pt;}
.xc5_c00461{left:476.000000pt;}
.x7b_c00461{left:477.706667pt;}
.x65_c00461{left:478.666667pt;}
.x28_c00461{left:480.373333pt;}
.xb1_c00461{left:482.293333pt;}
.xd_c00461{left:484.373333pt;}
.x91_c00461{left:485.706667pt;}
.x8d_c00461{left:489.706667pt;}
.x53_c00461{left:491.040000pt;}
.xcf_c00461{left:492.373333pt;}
.xcc_c00461{left:493.333333pt;}
.x97_c00461{left:494.666667pt;}
.xe6_c00461{left:496.373333pt;}
.x3e_c00461{left:497.333333pt;}
.x31_c00461{left:501.706667pt;}
.x1c_c00461{left:502.666667pt;}
.x29_c00461{left:504.373333pt;}
.x7c_c00461{left:506.293333pt;}
.xe_c00461{left:508.000000pt;}
.xfe_c00461{left:509.706667pt;}
.xe0_c00461{left:511.040000pt;}
.x3f_c00461{left:512.000000pt;}
.x54_c00461{left:512.960000pt;}
.x84_c00461{left:514.666667pt;}
.xd0_c00461{left:519.040000pt;}
.xe7_c00461{left:520.000000pt;}
.x109_c00461{left:521.333333pt;}
.x92_c00461{left:522.666667pt;}
.xb7_c00461{left:525.706667pt;}
.x55_c00461{left:530.666667pt;}
.x85_c00461{left:532.373333pt;}
.xda_c00461{left:533.333333pt;}
.xa8_c00461{left:536.000000pt;}
.xe1_c00461{left:537.333333pt;}
.xf_c00461{left:539.626667pt;}
.xbd_c00461{left:541.333333pt;}
.x10a_c00461{left:543.040000pt;}
.x40_c00461{left:546.293333pt;}
.x8e_c00461{left:549.333333pt;}
.xf6_c00461{left:550.666667pt;}
.x49_c00461{left:555.040000pt;}
.x10_c00461{left:556.373333pt;}
.x32_c00461{left:557.333333pt;}
.x2a_c00461{left:558.666667pt;}
.x107_c00461{left:560.960000pt;}
.x1d_c00461{left:562.666667pt;}
.xb3_c00461{left:564.000000pt;}
.x98_c00461{left:565.333333pt;}
.xe8_c00461{left:569.333333pt;}
.x56_c00461{left:570.293333pt;}
.x102_c00461{left:572.000000pt;}
.x41_c00461{left:573.333333pt;}
.xd1_c00461{left:574.293333pt;}
.xff_c00461{left:578.666667pt;}
.x11_c00461{left:580.000000pt;}
.x6c_c00461{left:582.666667pt;}
.x33_c00461{left:584.373333pt;}
.x66_c00461{left:586.293333pt;}
.x99_c00461{left:587.626667pt;}
.xa2_c00461{left:588.960000pt;}
.xa9_c00461{left:590.293333pt;}
.xb4_c00461{left:591.626667pt;}
.x100_c00461{left:593.706667pt;}
.x86_c00461{left:595.426667pt;}
.x103_c00461{left:596.373333pt;}
.xe9_c00461{left:597.333333pt;}
.xdb_c00461{left:599.040000pt;}
.xbe_c00461{left:601.333333pt;}
.x1e_c00461{left:602.666667pt;}
.x10b_c00461{left:604.000000pt;}
.xb8_c00461{left:606.293333pt;}
.xaa_c00461{left:608.000000pt;}
.xa4_c00461{left:608.960000pt;}
.xee_c00461{left:611.626667pt;}
.x12_c00461{left:614.666667pt;}
.xbf_c00461{left:616.000000pt;}
.x8f_c00461{left:616.960000pt;}
.xab_c00461{left:618.666667pt;}
.x2b_c00461{left:623.040000pt;}
.xdc_c00461{left:624.373333pt;}
.x87_c00461{left:625.333333pt;}
.x57_c00461{left:628.373333pt;}
.x13_c00461{left:631.040000pt;}
.x104_c00461{left:633.706667pt;}
.xc6_c00461{left:637.333333pt;}
.x67_c00461{left:640.000000pt;}
}





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

.ir_c00462:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00462{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00462;src:url('chunks/assets/font_cf7af0920cbfadd5b5fed294.woff2')format("woff");}.ff1_c00462{font-family:ff1_c00462;line-height:1.688965;font-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_c00462{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.m2c_c00462{transform:matrix(0.333506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333506,0.000000,0.000000,0.250000,0,0);}
.m1d_c00462{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m11_c00462{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m36_c00462{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m1c_c00462{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m46_c00462{transform:matrix(0.380334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380334,0.000000,0.000000,0.250000,0,0);}
.m58_c00462{transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);}
.m4f_c00462{transform:matrix(0.394712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394712,0.000000,0.000000,0.250000,0,0);}
.m28_c00462{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.m2e_c00462{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m42_c00462{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m51_c00462{transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);}
.m14_c00462{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m50_c00462{transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);}
.m38_c00462{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.m59_c00462{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m49_c00462{transform:matrix(0.417440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417440,0.000000,0.000000,0.250000,0,0);}
.m21_c00462{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m53_c00462{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.ma_c00462{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m4c_c00462{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.m7_c00462{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m2b_c00462{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m10_c00462{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m48_c00462{transform:matrix(0.436722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436722,0.000000,0.000000,0.250000,0,0);}
.m4b_c00462{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m56_c00462{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m16_c00462{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.m41_c00462{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.mf_c00462{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m47_c00462{transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);}
.m44_c00462{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m15_c00462{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m45_c00462{transform:matrix(0.449170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449170,0.000000,0.000000,0.250000,0,0);}
.m4e_c00462{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.m2f_c00462{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m5a_c00462{transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);}
.me_c00462{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m31_c00462{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.m3_c00462{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m24_c00462{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m1f_c00462{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m43_c00462{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m55_c00462{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.m57_c00462{transform:matrix(0.491765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491765,0.000000,0.000000,0.250000,0,0);}
.m12_c00462{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_c00462{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m1b_c00462{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m3a_c00462{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m37_c00462{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.md_c00462{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m40_c00462{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);}
.m26_c00462{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m29_c00462{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m9_c00462{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m22_c00462{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m52_c00462{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m23_c00462{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m19_c00462{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m30_c00462{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m27_c00462{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m4_c00462{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m1_c00462{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m3e_c00462{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m4d_c00462{transform:matrix(0.555294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555294,0.000000,0.000000,0.250000,0,0);}
.m3d_c00462{transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);}
.m17_c00462{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m5_c00462{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m54_c00462{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m8_c00462{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m39_c00462{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m4a_c00462{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m35_c00462{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m33_c00462{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.mb_c00462{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m2_c00462{transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);}
.m6_c00462{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.mc_c00462{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m3c_c00462{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_c00462{transform:matrix(0.627206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627206,0.000000,0.000000,0.250000,0,0);}
.m3f_c00462{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m1e_c00462{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m0_c00462{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m3b_c00462{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);}
.m18_c00462{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m2a_c00462{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m2d_c00462{transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);}
.m25_c00462{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m1a_c00462{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m13_c00462{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m20_c00462{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,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;}
}
.ws2_c00462{word-spacing:-5.347467px;}
.ws3_c00462{word-spacing:-4.039420px;}
.ws0_c00462{word-spacing:-3.398400px;}
.ws4_c00462{word-spacing:0.000000px;}
.ws1_c00462{word-spacing:2.888521px;}
.fc0_c00462{color:transparent;}
.fs4_c00462{font-size:18.720000px;}
.fs0_c00462{font-size:20.400000px;}
.fs1_c00462{font-size:25.500000px;}
.fs2_c00462{font-size:28.920000px;}
.fs5_c00462{font-size:32.340000px;}
.fs3_c00462{font-size:35.700000px;}
.fs6_c00462{font-size:39.120000px;}
.y0_c00462{bottom:0.000000px;}
.y19_c00462{bottom:253.470000px;}
.y18_c00462{bottom:253.680000px;}
.y14_c00462{bottom:254.745000px;}
.y13_c00462{bottom:255.630000px;}
.y16_c00462{bottom:255.825000px;}
.y17_c00462{bottom:256.470000px;}
.y15_c00462{bottom:256.905000px;}
.y11_c00462{bottom:274.245000px;}
.y10_c00462{bottom:276.405000px;}
.y12_c00462{bottom:276.630000px;}
.ye_c00462{bottom:293.745000px;}
.yf_c00462{bottom:295.470000px;}
.yc_c00462{bottom:295.905000px;}
.yd_c00462{bottom:296.130000px;}
.yb_c00462{bottom:296.970000px;}
.y8_c00462{bottom:313.245000px;}
.y9_c00462{bottom:315.405000px;}
.ya_c00462{bottom:315.630000px;}
.y7_c00462{bottom:332.745000px;}
.y6_c00462{bottom:334.245000px;}
.y4_c00462{bottom:334.905000px;}
.y5_c00462{bottom:335.970000px;}
.y3_c00462{bottom:336.405000px;}
.y2c_c00462{bottom:364.470000px;}
.y2e_c00462{bottom:364.905000px;}
.y2b_c00462{bottom:365.325000px;}
.y2f_c00462{bottom:367.050000px;}
.y2d_c00462{bottom:367.470000px;}
.y29_c00462{bottom:378.825000px;}
.y2a_c00462{bottom:379.905000px;}
.y27_c00462{bottom:380.130000px;}
.y26_c00462{bottom:380.325000px;}
.y28_c00462{bottom:380.970000px;}
.y23_c00462{bottom:381.405000px;}
.y21_c00462{bottom:393.825000px;}
.y22_c00462{bottom:395.130000px;}
.y25_c00462{bottom:395.550000px;}
.y24_c00462{bottom:395.970000px;}
.y1f_c00462{bottom:396.405000px;}
.y20_c00462{bottom:408.825000px;}
.y1b_c00462{bottom:409.050000px;}
.y1c_c00462{bottom:409.905000px;}
.y1a_c00462{bottom:410.325000px;}
.y1e_c00462{bottom:410.970000px;}
.y1d_c00462{bottom:412.050000px;}
.y2_c00462{bottom:1099.470000px;}
.y1_c00462{bottom:1100.550000px;}
.h5_c00462{height:23.025234px;}
.h1_c00462{height:25.091602px;}
.h2_c00462{height:31.364502px;}
.h3_c00462{height:35.571035px;}
.h6_c00462{height:39.777568px;}
.h4_c00462{height:43.910303px;}
.h7_c00462{height:48.116836px;}
.h0_c00462{height:1335.000000px;}
.w0_c00462{width:880.500000px;}
.x0_c00462{left:0.000000px;}
.x1d_c00462{left:151.080000px;}
.x11_c00462{left:152.355000px;}
.x3_c00462{left:166.080000px;}
.x51_c00462{left:169.080000px;}
.x1e_c00462{left:170.145000px;}
.x40_c00462{left:180.420000px;}
.x48_c00462{left:190.080000px;}
.x37_c00462{left:197.580000px;}
.x2b_c00462{left:199.500000px;}
.x41_c00462{left:204.645000px;}
.x4_c00462{left:213.000000px;}
.x12_c00462{left:215.775000px;}
.x5a_c00462{left:225.420000px;}
.x5_c00462{left:230.580000px;}
.x5b_c00462{left:237.000000px;}
.x52_c00462{left:241.500000px;}
.x2c_c00462{left:245.145000px;}
.x13_c00462{left:251.580000px;}
.x1f_c00462{left:258.000000px;}
.x38_c00462{left:261.000000px;}
.x20_c00462{left:273.420000px;}
.x2d_c00462{left:277.080000px;}
.x14_c00462{left:278.145000px;}
.x6_c00462{left:284.580000px;}
.x5c_c00462{left:289.500000px;}
.x42_c00462{left:291.000000px;}
.x15_c00462{left:297.420000px;}
.x2e_c00462{left:310.500000px;}
.x39_c00462{left:313.080000px;}
.x4b_c00462{left:322.500000px;}
.x21_c00462{left:323.580000px;}
.x16_c00462{left:328.080000px;}
.x7_c00462{left:331.500000px;}
.x53_c00462{left:349.080000px;}
.x22_c00462{left:354.000000px;}
.x43_c00462{left:355.500000px;}
.x2f_c00462{left:360.000000px;}
.x8_c00462{left:361.080000px;}
.x4c_c00462{left:383.580000px;}
.x44_c00462{left:391.500000px;}
.x3a_c00462{left:395.145000px;}
.x17_c00462{left:399.420000px;}
.x23_c00462{left:405.000000px;}
.x1_c00462{left:406.500000px;}
.x30_c00462{left:415.500000px;}
.x5d_c00462{left:422.580000px;}
.x54_c00462{left:424.500000px;}
.x45_c00462{left:429.420000px;}
.x31_c00462{left:435.420000px;}
.x55_c00462{left:439.920000px;}
.x18_c00462{left:444.000000px;}
.x3b_c00462{left:445.080000px;}
.x9_c00462{left:455.580000px;}
.x19_c00462{left:462.420000px;}
.x24_c00462{left:468.000000px;}
.xa_c00462{left:477.420000px;}
.x4d_c00462{left:483.420000px;}
.x1a_c00462{left:490.500000px;}
.x5e_c00462{left:493.500000px;}
.x4f_c00462{left:496.500000px;}
.x25_c00462{left:499.500000px;}
.xb_c00462{left:507.000000px;}
.x56_c00462{left:508.080000px;}
.x60_c00462{left:509.580000px;}
.x32_c00462{left:511.920000px;}
.x49_c00462{left:516.420000px;}
.x3c_c00462{left:520.080000px;}
.x3d_c00462{left:538.500000px;}
.x57_c00462{left:545.580000px;}
.xc_c00462{left:553.500000px;}
.x50_c00462{left:556.920000px;}
.x26_c00462{left:563.580000px;}
.x33_c00462{left:573.000000px;}
.x3e_c00462{left:577.500000px;}
.x1b_c00462{left:578.580000px;}
.x27_c00462{left:583.080000px;}
.xd_c00462{left:586.500000px;}
.x4a_c00462{left:594.420000px;}
.xe_c00462{left:607.080000px;}
.x58_c00462{left:609.000000px;}
.x34_c00462{left:619.500000px;}
.x59_c00462{left:624.000000px;}
.x28_c00462{left:628.080000px;}
.x35_c00462{left:636.420000px;}
.x5f_c00462{left:640.080000px;}
.x29_c00462{left:648.000000px;}
.x3f_c00462{left:656.580000px;}
.x4e_c00462{left:666.420000px;}
.x46_c00462{left:673.500000px;}
.x1c_c00462{left:677.580000px;}
.x2a_c00462{left:681.420000px;}
.xf_c00462{left:685.080000px;}
.x47_c00462{left:696.000000px;}
.x2_c00462{left:703.500000px;}
.x36_c00462{left:706.080000px;}
.x10_c00462{left:714.420000px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.ls0_c00462{letter-spacing:0.000000pt;}
.ws2_c00462{word-spacing:-4.753304pt;}
.ws3_c00462{word-spacing:-3.590596pt;}
.ws0_c00462{word-spacing:-3.020800pt;}
.ws4_c00462{word-spacing:0.000000pt;}
.ws1_c00462{word-spacing:2.567574pt;}
.fs4_c00462{font-size:16.640000pt;}
.fs0_c00462{font-size:18.133333pt;}
.fs1_c00462{font-size:22.666667pt;}
.fs2_c00462{font-size:25.706667pt;}
.fs5_c00462{font-size:28.746667pt;}
.fs3_c00462{font-size:31.733333pt;}
.fs6_c00462{font-size:34.773333pt;}
.y0_c00462{bottom:0.000000pt;}
.y19_c00462{bottom:225.306667pt;}
.y18_c00462{bottom:225.493333pt;}
.y14_c00462{bottom:226.440000pt;}
.y13_c00462{bottom:227.226667pt;}
.y16_c00462{bottom:227.400000pt;}
.y17_c00462{bottom:227.973333pt;}
.y15_c00462{bottom:228.360000pt;}
.y11_c00462{bottom:243.773333pt;}
.y10_c00462{bottom:245.693333pt;}
.y12_c00462{bottom:245.893333pt;}
.ye_c00462{bottom:261.106667pt;}
.yf_c00462{bottom:262.640000pt;}
.yc_c00462{bottom:263.026667pt;}
.yd_c00462{bottom:263.226667pt;}
.yb_c00462{bottom:263.973333pt;}
.y8_c00462{bottom:278.440000pt;}
.y9_c00462{bottom:280.360000pt;}
.ya_c00462{bottom:280.560000pt;}
.y7_c00462{bottom:295.773333pt;}
.y6_c00462{bottom:297.106667pt;}
.y4_c00462{bottom:297.693333pt;}
.y5_c00462{bottom:298.640000pt;}
.y3_c00462{bottom:299.026667pt;}
.y2c_c00462{bottom:323.973333pt;}
.y2e_c00462{bottom:324.360000pt;}
.y2b_c00462{bottom:324.733333pt;}
.y2f_c00462{bottom:326.266667pt;}
.y2d_c00462{bottom:326.640000pt;}
.y29_c00462{bottom:336.733333pt;}
.y2a_c00462{bottom:337.693333pt;}
.y27_c00462{bottom:337.893333pt;}
.y26_c00462{bottom:338.066667pt;}
.y28_c00462{bottom:338.640000pt;}
.y23_c00462{bottom:339.026667pt;}
.y21_c00462{bottom:350.066667pt;}
.y22_c00462{bottom:351.226667pt;}
.y25_c00462{bottom:351.600000pt;}
.y24_c00462{bottom:351.973333pt;}
.y1f_c00462{bottom:352.360000pt;}
.y20_c00462{bottom:363.400000pt;}
.y1b_c00462{bottom:363.600000pt;}
.y1c_c00462{bottom:364.360000pt;}
.y1a_c00462{bottom:364.733333pt;}
.y1e_c00462{bottom:365.306667pt;}
.y1d_c00462{bottom:366.266667pt;}
.y2_c00462{bottom:977.306667pt;}
.y1_c00462{bottom:978.266667pt;}
.h5_c00462{height:20.466875pt;}
.h1_c00462{height:22.303646pt;}
.h2_c00462{height:27.879557pt;}
.h3_c00462{height:31.618698pt;}
.h6_c00462{height:35.357839pt;}
.h4_c00462{height:39.031380pt;}
.h7_c00462{height:42.770521pt;}
.h0_c00462{height:1186.666667pt;}
.w0_c00462{width:782.666667pt;}
.x0_c00462{left:0.000000pt;}
.x1d_c00462{left:134.293333pt;}
.x11_c00462{left:135.426667pt;}
.x3_c00462{left:147.626667pt;}
.x51_c00462{left:150.293333pt;}
.x1e_c00462{left:151.240000pt;}
.x40_c00462{left:160.373333pt;}
.x48_c00462{left:168.960000pt;}
.x37_c00462{left:175.626667pt;}
.x2b_c00462{left:177.333333pt;}
.x41_c00462{left:181.906667pt;}
.x4_c00462{left:189.333333pt;}
.x12_c00462{left:191.800000pt;}
.x5a_c00462{left:200.373333pt;}
.x5_c00462{left:204.960000pt;}
.x5b_c00462{left:210.666667pt;}
.x52_c00462{left:214.666667pt;}
.x2c_c00462{left:217.906667pt;}
.x13_c00462{left:223.626667pt;}
.x1f_c00462{left:229.333333pt;}
.x38_c00462{left:232.000000pt;}
.x20_c00462{left:243.040000pt;}
.x2d_c00462{left:246.293333pt;}
.x14_c00462{left:247.240000pt;}
.x6_c00462{left:252.960000pt;}
.x5c_c00462{left:257.333333pt;}
.x42_c00462{left:258.666667pt;}
.x15_c00462{left:264.373333pt;}
.x2e_c00462{left:276.000000pt;}
.x39_c00462{left:278.293333pt;}
.x4b_c00462{left:286.666667pt;}
.x21_c00462{left:287.626667pt;}
.x16_c00462{left:291.626667pt;}
.x7_c00462{left:294.666667pt;}
.x53_c00462{left:310.293333pt;}
.x22_c00462{left:314.666667pt;}
.x43_c00462{left:316.000000pt;}
.x2f_c00462{left:320.000000pt;}
.x8_c00462{left:320.960000pt;}
.x4c_c00462{left:340.960000pt;}
.x44_c00462{left:348.000000pt;}
.x3a_c00462{left:351.240000pt;}
.x17_c00462{left:355.040000pt;}
.x23_c00462{left:360.000000pt;}
.x1_c00462{left:361.333333pt;}
.x30_c00462{left:369.333333pt;}
.x5d_c00462{left:375.626667pt;}
.x54_c00462{left:377.333333pt;}
.x45_c00462{left:381.706667pt;}
.x31_c00462{left:387.040000pt;}
.x55_c00462{left:391.040000pt;}
.x18_c00462{left:394.666667pt;}
.x3b_c00462{left:395.626667pt;}
.x9_c00462{left:404.960000pt;}
.x19_c00462{left:411.040000pt;}
.x24_c00462{left:416.000000pt;}
.xa_c00462{left:424.373333pt;}
.x4d_c00462{left:429.706667pt;}
.x1a_c00462{left:436.000000pt;}
.x5e_c00462{left:438.666667pt;}
.x4f_c00462{left:441.333333pt;}
.x25_c00462{left:444.000000pt;}
.xb_c00462{left:450.666667pt;}
.x56_c00462{left:451.626667pt;}
.x60_c00462{left:452.960000pt;}
.x32_c00462{left:455.040000pt;}
.x49_c00462{left:459.040000pt;}
.x3c_c00462{left:462.293333pt;}
.x3d_c00462{left:478.666667pt;}
.x57_c00462{left:484.960000pt;}
.xc_c00462{left:492.000000pt;}
.x50_c00462{left:495.040000pt;}
.x26_c00462{left:500.960000pt;}
.x33_c00462{left:509.333333pt;}
.x3e_c00462{left:513.333333pt;}
.x1b_c00462{left:514.293333pt;}
.x27_c00462{left:518.293333pt;}
.xd_c00462{left:521.333333pt;}
.x4a_c00462{left:528.373333pt;}
.xe_c00462{left:539.626667pt;}
.x58_c00462{left:541.333333pt;}
.x34_c00462{left:550.666667pt;}
.x59_c00462{left:554.666667pt;}
.x28_c00462{left:558.293333pt;}
.x35_c00462{left:565.706667pt;}
.x5f_c00462{left:568.960000pt;}
.x29_c00462{left:576.000000pt;}
.x3f_c00462{left:583.626667pt;}
.x4e_c00462{left:592.373333pt;}
.x46_c00462{left:598.666667pt;}
.x1c_c00462{left:602.293333pt;}
.x2a_c00462{left:605.706667pt;}
.xf_c00462{left:608.960000pt;}
.x47_c00462{left:618.666667pt;}
.x2_c00462{left:625.333333pt;}
.x36_c00462{left:627.626667pt;}
.x10_c00462{left:635.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_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_0b31b20f684a6313127240ef.woff2')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md7_c00463{transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);}
.mdd_c00463{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.maf_c00463{transform:matrix(0.305066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305066,0.000000,0.000000,0.250000,0,0);}
.m6f_c00463{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m35_c00463{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m63_c00463{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m24_c00463{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m51_c00463{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.m9f_c00463{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.mbb_c00463{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00463{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m6c_c00463{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m72_c00463{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.ma1_c00463{transform:matrix(0.380334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380334,0.000000,0.000000,0.250000,0,0);}
.m77_c00463{transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);}
.m39_c00463{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m7f_c00463{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.mb3_c00463{transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);}
.me2_c00463{transform:matrix(0.388971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388971,0.000000,0.000000,0.250000,0,0);}
.m84_c00463{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m2_c00463{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m71_c00463{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m7a_c00463{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m7e_c00463{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m11_c00463{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m10_c00463{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m40_c00463{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.m79_c00463{transform:matrix(0.402607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402607,0.000000,0.000000,0.250000,0,0);}
.ma2_c00463{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.maa_c00463{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.ma3_c00463{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m87_c00463{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m2c_c00463{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m8c_c00463{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m76_c00463{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.m28_c00463{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m1a_c00463{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m69_c00463{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.mcc_c00463{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.mb_c00463{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m2f_c00463{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m50_c00463{transform:matrix(0.422353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422353,0.000000,0.000000,0.250000,0,0);}
.mc_c00463{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.ma8_c00463{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m8_c00463{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mcf_c00463{transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);}
.m5_c00463{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m6d_c00463{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m8f_c00463{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.m2e_c00463{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m82_c00463{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m38_c00463{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mb1_c00463{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);}
.m98_c00463{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m80_c00463{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.m54_c00463{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m7c_c00463{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mdb_c00463{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m3f_c00463{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m34_c00463{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m58_c00463{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.ma0_c00463{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m6b_c00463{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m52_c00463{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m42_c00463{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m3_c00463{transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);}
.m74_c00463{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m21_c00463{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mad_c00463{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m37_c00463{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.mc3_c00463{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m91_c00463{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.me0_c00463{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.m56_c00463{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m70_c00463{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.m7d_c00463{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mb7_c00463{transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);}
.m49_c00463{transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);}
.mc4_c00463{transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);}
.m18_c00463{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m30_c00463{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mca_c00463{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m61_c00463{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m65_c00463{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m53_c00463{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m6_c00463{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mbc_c00463{transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);}
.me1_c00463{transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);}
.m29_c00463{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m9_c00463{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);}
.m68_c00463{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m5e_c00463{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m5d_c00463{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m86_c00463{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m5c_c00463{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m8d_c00463{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m9a_c00463{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m73_c00463{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m32_c00463{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m4d_c00463{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.mda_c00463{transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);}
.m4e_c00463{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m75_c00463{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m5f_c00463{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.md4_c00463{transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);}
.m95_c00463{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mbf_c00463{transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);}
.m20_c00463{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mb6_c00463{transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);}
.m48_c00463{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m9d_c00463{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m88_c00463{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m59_c00463{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.ma_c00463{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m60_c00463{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mc7_c00463{transform:matrix(0.528045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528045,0.000000,0.000000,0.250000,0,0);}
.m3e_c00463{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.md6_c00463{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.md_c00463{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mdf_c00463{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m5b_c00463{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m66_c00463{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m46_c00463{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m1f_c00463{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m41_c00463{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m23_c00463{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m5a_c00463{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m94_c00463{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m57_c00463{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m55_c00463{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m43_c00463{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m7_c00463{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.m33_c00463{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m85_c00463{transform:matrix(0.547310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547310,0.000000,0.000000,0.250000,0,0);}
.m12_c00463{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m62_c00463{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m8b_c00463{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m26_c00463{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.mc5_c00463{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m6e_c00463{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.ma4_c00463{transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);}
.m1_c00463{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m1e_c00463{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m15_c00463{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m36_c00463{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m96_c00463{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mbd_c00463{transform:matrix(0.556167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556167,0.000000,0.000000,0.250000,0,0);}
.m93_c00463{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m81_c00463{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m2a_c00463{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m27_c00463{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m3b_c00463{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mba_c00463{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m83_c00463{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mce_c00463{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m64_c00463{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m2d_c00463{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m6a_c00463{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m4_c00463{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m1c_c00463{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mac_c00463{transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);}
.m92_c00463{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m3c_c00463{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.mb0_c00463{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.mf_c00463{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m44_c00463{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m89_c00463{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m45_c00463{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m4c_c00463{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m78_c00463{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m3d_c00463{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m16_c00463{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m2b_c00463{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m47_c00463{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m97_c00463{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.me_c00463{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m9c_c00463{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.mab_c00463{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m19_c00463{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.ma9_c00463{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.ma7_c00463{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.mb4_c00463{transform:matrix(0.616987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616987,0.000000,0.000000,0.250000,0,0);}
.m9e_c00463{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.ma5_c00463{transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);}
.mc6_c00463{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.ma6_c00463{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_c00463{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m8a_c00463{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m13_c00463{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.mb9_c00463{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m90_c00463{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m4a_c00463{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mb2_c00463{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m1d_c00463{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m0_c00463{transform:matrix(0.679487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679487,0.000000,0.000000,0.250000,0,0);}
.m99_c00463{transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);}
.md5_c00463{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.mae_c00463{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.md8_c00463{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m17_c00463{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mc1_c00463{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.mc8_c00463{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.md3_c00463{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.md1_c00463{transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);}
.m67_c00463{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.md2_c00463{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.m8e_c00463{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mcb_c00463{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m31_c00463{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m25_c00463{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m4b_c00463{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mbe_c00463{transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);}
.md0_c00463{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.mc2_c00463{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m14_c00463{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mdc_c00463{transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);}
.mc0_c00463{transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);}
.m3a_c00463{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m22_c00463{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.md9_c00463{transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);}
.mde_c00463{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m1b_c00463{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mc9_c00463{transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);}
.mb8_c00463{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m4f_c00463{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.mcd_c00463{transform:matrix(0.881057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.881057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.881057,0.000000,0.000000,0.250000,0,0);}
.mb5_c00463{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.v2_c00463{vertical-align:-6.000000px;}
.v0_c00463{vertical-align:0.000000px;}
.v1_c00463{vertical-align:6.000000px;}
.ls1_c00463{letter-spacing:0.000000px;}
.ls0_c00463{letter-spacing:71.004203px;}
.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:-8.145664px;}
.ws6_c00463{word-spacing:-1.885842px;}
.ws19_c00463{word-spacing:0.000000px;}
.ws1_c00463{word-spacing:0.695704px;}
.ws9_c00463{word-spacing:16.594629px;}
.ws15_c00463{word-spacing:20.445345px;}
.ws16_c00463{word-spacing:32.801645px;}
.wsd_c00463{word-spacing:37.647282px;}
.wse_c00463{word-spacing:39.650224px;}
.ws17_c00463{word-spacing:40.651310px;}
.ws14_c00463{word-spacing:40.968615px;}
.ws2_c00463{word-spacing:42.369370px;}
.wsf_c00463{word-spacing:43.123678px;}
.ws11_c00463{word-spacing:45.278742px;}
.ws7_c00463{word-spacing:50.372388px;}
.ws13_c00463{word-spacing:52.017590px;}
.ws8_c00463{word-spacing:52.623628px;}
.wsa_c00463{word-spacing:59.307203px;}
.ws4_c00463{word-spacing:63.050123px;}
.ws10_c00463{word-spacing:63.638400px;}
.ws18_c00463{word-spacing:64.388073px;}
.wsc_c00463{word-spacing:69.032182px;}
.ws3_c00463{word-spacing:69.426706px;}
.wsb_c00463{word-spacing:73.041656px;}
.ws12_c00463{word-spacing:73.170628px;}
.ws5_c00463{word-spacing:96.477382px;}
._4_c00463{width:47.604304px;}
._3_c00463{width:51.077758px;}
._2_c00463{width:53.232822px;}
._0_c00463{width:60.577708px;}
._1_c00463{width:83.666325px;}
.fc0_c00463{color:transparent;}
.fs8_c00463{font-size:3.420000px;}
.fs9_c00463{font-size:11.880000px;}
.fs7_c00463{font-size:13.620000px;}
.fs0_c00463{font-size:18.720000px;}
.fs6_c00463{font-size:20.400000px;}
.fs1_c00463{font-size:25.500000px;}
.fs3_c00463{font-size:28.920000px;}
.fs4_c00463{font-size:32.340000px;}
.fs2_c00463{font-size:35.700000px;}
.fs5_c00463{font-size:39.120000px;}
.y0_c00463{bottom:0.000000px;}
.y6b_c00463{bottom:254.745000px;}
.y68_c00463{bottom:255.405000px;}
.y6a_c00463{bottom:255.825000px;}
.y69_c00463{bottom:256.470000px;}
.y6c_c00463{bottom:256.905000px;}
.y62_c00463{bottom:274.245000px;}
.y67_c00463{bottom:275.130000px;}
.y66_c00463{bottom:275.325000px;}
.y64_c00463{bottom:275.970000px;}
.y63_c00463{bottom:276.405000px;}
.y65_c00463{bottom:276.630000px;}
.y61_c00463{bottom:293.745000px;}
.y5e_c00463{bottom:294.630000px;}
.y5f_c00463{bottom:295.470000px;}
.y60_c00463{bottom:295.905000px;}
.y5b_c00463{bottom:313.245000px;}
.y5d_c00463{bottom:314.325000px;}
.y5a_c00463{bottom:315.405000px;}
.y5c_c00463{bottom:315.630000px;}
.y57_c00463{bottom:331.905000px;}
.y54_c00463{bottom:332.745000px;}
.y56_c00463{bottom:334.245000px;}
.y53_c00463{bottom:334.905000px;}
.y58_c00463{bottom:335.130000px;}
.y59_c00463{bottom:335.970000px;}
.y55_c00463{bottom:336.405000px;}
.y52_c00463{bottom:352.680000px;}
.y50_c00463{bottom:353.745000px;}
.y4e_c00463{bottom:354.405000px;}
.y51_c00463{bottom:354.630000px;}
.y4f_c00463{bottom:355.905000px;}
.y4c_c00463{bottom:373.245000px;}
.y4b_c00463{bottom:374.325000px;}
.y4d_c00463{bottom:374.970000px;}
.y47_c00463{bottom:392.745000px;}
.y4a_c00463{bottom:393.405000px;}
.y49_c00463{bottom:393.825000px;}
.y46_c00463{bottom:394.470000px;}
.y48_c00463{bottom:394.905000px;}
.y43_c00463{bottom:412.245000px;}
.y45_c00463{bottom:412.905000px;}
.y44_c00463{bottom:413.130000px;}
.y42_c00463{bottom:414.405000px;}
.y41_c00463{bottom:431.745000px;}
.y40_c00463{bottom:433.905000px;}
.y3f_c00463{bottom:434.970000px;}
.y3e_c00463{bottom:435.405000px;}
.y3d_c00463{bottom:452.130000px;}
.y3b_c00463{bottom:452.745000px;}
.y3c_c00463{bottom:453.405000px;}
.y3a_c00463{bottom:454.905000px;}
.y39_c00463{bottom:469.905000px;}
.y36_c00463{bottom:470.745000px;}
.y34_c00463{bottom:472.245000px;}
.y37_c00463{bottom:472.905000px;}
.y38_c00463{bottom:473.970000px;}
.y35_c00463{bottom:474.405000px;}
.y33_c00463{bottom:490.470000px;}
.y32_c00463{bottom:492.405000px;}
.y31_c00463{bottom:492.630000px;}
.y30_c00463{bottom:492.825000px;}
.y2e_c00463{bottom:493.470000px;}
.y2d_c00463{bottom:493.905000px;}
.y2f_c00463{bottom:494.970000px;}
.y29_c00463{bottom:510.405000px;}
.y2a_c00463{bottom:511.245000px;}
.y2c_c00463{bottom:511.905000px;}
.y2b_c00463{bottom:512.130000px;}
.y27_c00463{bottom:512.325000px;}
.y28_c00463{bottom:513.405000px;}
.y25_c00463{bottom:529.245000px;}
.y22_c00463{bottom:529.905000px;}
.y23_c00463{bottom:530.745000px;}
.y24_c00463{bottom:531.405000px;}
.y26_c00463{bottom:531.630000px;}
.y21_c00463{bottom:532.905000px;}
.y1e_c00463{bottom:550.245000px;}
.y20_c00463{bottom:551.130000px;}
.y1d_c00463{bottom:551.325000px;}
.y1f_c00463{bottom:552.405000px;}
.y1c_c00463{bottom:553.470000px;}
.y19_c00463{bottom:569.745000px;}
.y1a_c00463{bottom:571.905000px;}
.y1b_c00463{bottom:572.130000px;}
.y13_c00463{bottom:588.405000px;}
.y18_c00463{bottom:589.245000px;}
.y12_c00463{bottom:589.470000px;}
.y14_c00463{bottom:590.745000px;}
.y17_c00463{bottom:591.405000px;}
.y15_c00463{bottom:591.825000px;}
.y16_c00463{bottom:592.470000px;}
.y11_c00463{bottom:592.905000px;}
.yd_c00463{bottom:608.745000px;}
.y10_c00463{bottom:610.905000px;}
.ye_c00463{bottom:611.130000px;}
.yc_c00463{bottom:611.970000px;}
.yf_c00463{bottom:612.405000px;}
.y8_c00463{bottom:629.745000px;}
.yb_c00463{bottom:630.405000px;}
.ya_c00463{bottom:630.630000px;}
.y7_c00463{bottom:631.905000px;}
.y9_c00463{bottom:632.970000px;}
.y6_c00463{bottom:646.905000px;}
.y4_c00463{bottom:648.405000px;}
.y3_c00463{bottom:649.245000px;}
.y5_c00463{bottom:651.405000px;}
.yd4_c00463{bottom:686.550000px;}
.yd5_c00463{bottom:688.695000px;}
.yd3_c00463{bottom:689.130000px;}
.yd2_c00463{bottom:690.195000px;}
.yd0_c00463{bottom:702.630000px;}
.yd1_c00463{bottom:703.695000px;}
.ycd_c00463{bottom:716.130000px;}
.ycf_c00463{bottom:717.195000px;}
.yce_c00463{bottom:717.405000px;}
.ycc_c00463{bottom:718.695000px;}
.yca_c00463{bottom:729.195000px;}
.yc9_c00463{bottom:729.630000px;}
.ycb_c00463{bottom:730.050000px;}
.yc7_c00463{bottom:730.275000px;}
.yc8_c00463{bottom:730.695000px;}
.yc6_c00463{bottom:731.130000px;}
.yc5_c00463{bottom:732.195000px;}
.yc4_c00463{bottom:743.130000px;}
.yc3_c00463{bottom:744.195000px;}
.yc1_c00463{bottom:744.630000px;}
.yc2_c00463{bottom:745.695000px;}
.yc0_c00463{bottom:757.695000px;}
.ybf_c00463{bottom:758.130000px;}
.ybe_c00463{bottom:759.195000px;}
.ybd_c00463{bottom:759.630000px;}
.ybc_c00463{bottom:760.695000px;}
.ybb_c00463{bottom:771.630000px;}
.yba_c00463{bottom:772.695000px;}
.yb8_c00463{bottom:773.130000px;}
.yb7_c00463{bottom:774.195000px;}
.yb9_c00463{bottom:774.420000px;}
.yb6_c00463{bottom:785.130000px;}
.yb5_c00463{bottom:786.195000px;}
.yb4_c00463{bottom:787.695000px;}
.yb2_c00463{bottom:798.630000px;}
.yaf_c00463{bottom:799.050000px;}
.yb1_c00463{bottom:799.695000px;}
.yb0_c00463{bottom:801.195000px;}
.yb3_c00463{bottom:801.420000px;}
.yae_c00463{bottom:812.130000px;}
.yad_c00463{bottom:813.630000px;}
.yac_c00463{bottom:814.695000px;}
.yab_c00463{bottom:815.130000px;}
.yaa_c00463{bottom:816.195000px;}
.ya9_c00463{bottom:827.130000px;}
.ya8_c00463{bottom:828.195000px;}
.ya6_c00463{bottom:828.630000px;}
.ya7_c00463{bottom:829.695000px;}
.ya5_c00463{bottom:840.630000px;}
.ya4_c00463{bottom:841.695000px;}
.ya3_c00463{bottom:842.130000px;}
.ya2_c00463{bottom:843.195000px;}
.ya1_c00463{bottom:855.195000px;}
.ya0_c00463{bottom:855.630000px;}
.y9f_c00463{bottom:856.695000px;}
.y9d_c00463{bottom:869.130000px;}
.y9e_c00463{bottom:870.195000px;}
.y9c_c00463{bottom:870.630000px;}
.y9b_c00463{bottom:882.630000px;}
.y9a_c00463{bottom:883.695000px;}
.y98_c00463{bottom:884.130000px;}
.y99_c00463{bottom:885.195000px;}
.y97_c00463{bottom:896.130000px;}
.y96_c00463{bottom:897.195000px;}
.y95_c00463{bottom:897.630000px;}
.y94_c00463{bottom:898.695000px;}
.y90_c00463{bottom:910.695000px;}
.y93_c00463{bottom:910.920000px;}
.y8f_c00463{bottom:911.130000px;}
.y92_c00463{bottom:912.195000px;}
.y91_c00463{bottom:912.420000px;}
.y8d_c00463{bottom:924.195000px;}
.y8c_c00463{bottom:924.630000px;}
.y8b_c00463{bottom:925.695000px;}
.y8e_c00463{bottom:925.920000px;}
.y8a_c00463{bottom:936.630000px;}
.y89_c00463{bottom:938.130000px;}
.y88_c00463{bottom:939.195000px;}
.y87_c00463{bottom:939.630000px;}
.y86_c00463{bottom:951.630000px;}
.y84_c00463{bottom:952.695000px;}
.y85_c00463{bottom:952.920000px;}
.y81_c00463{bottom:953.130000px;}
.y82_c00463{bottom:954.195000px;}
.y83_c00463{bottom:954.420000px;}
.y80_c00463{bottom:965.130000px;}
.y7f_c00463{bottom:966.195000px;}
.y7e_c00463{bottom:966.630000px;}
.y7d_c00463{bottom:967.695000px;}
.y7c_c00463{bottom:984.630000px;}
.y79_c00463{bottom:985.695000px;}
.y7a_c00463{bottom:986.130000px;}
.y7b_c00463{bottom:987.195000px;}
.y78_c00463{bottom:1001.130000px;}
.y76_c00463{bottom:1002.630000px;}
.y77_c00463{bottom:1003.695000px;}
.y75_c00463{bottom:1025.970000px;}
.y74_c00463{bottom:1027.050000px;}
.y71_c00463{bottom:1038.825000px;}
.y72_c00463{bottom:1039.905000px;}
.y73_c00463{bottom:1040.325000px;}
.y70_c00463{bottom:1040.970000px;}
.y6f_c00463{bottom:1042.050000px;}
.y6e_c00463{bottom:1063.470000px;}
.y6d_c00463{bottom:1066.050000px;}
.y2_c00463{bottom:1100.970000px;}
.y1_c00463{bottom:1101.630000px;}
.hb_c00463{height:4.206533px;}
.hc_c00463{height:14.612168px;}
.h9_c00463{height:16.752334px;}
.h1_c00463{height:23.025234px;}
.h8_c00463{height:25.091602px;}
.ha_c00463{height:29.025234px;}
.h2_c00463{height:31.364502px;}
.h4_c00463{height:35.571035px;}
.h6_c00463{height:37.364502px;}
.h5_c00463{height:39.777568px;}
.h3_c00463{height:43.910303px;}
.h7_c00463{height:48.116836px;}
.h0_c00463{height:1335.000000px;}
.w0_c00463{width:880.500000px;}
.x0_c00463{left:0.000000px;}
.xb4_c00463{left:103.500000px;}
.xe0_c00463{left:112.500000px;}
.xdb_c00463{left:113.580000px;}
.xbf_c00463{left:115.500000px;}
.xe3_c00463{left:136.080000px;}
.xc0_c00463{left:137.580000px;}
.xd7_c00463{left:142.080000px;}
.xe2_c00463{left:145.500000px;}
.xdc_c00463{left:147.000000px;}
.xa6_c00463{left:148.920000px;}
.x98_c00463{left:150.420000px;}
.x2_c00463{left:151.500000px;}
.x4d_c00463{left:153.000000px;}
.xe8_c00463{left:154.080000px;}
.xc8_c00463{left:155.580000px;}
.xd2_c00463{left:157.080000px;}
.xde_c00463{left:159.000000px;}
.xdd_c00463{left:160.080000px;}
.xb5_c00463{left:163.080000px;}
.x7b_c00463{left:166.500000px;}
.x37_c00463{left:168.000000px;}
.x83_c00463{left:175.080000px;}
.xd_c00463{left:180.000000px;}
.x70_c00463{left:181.500000px;}
.x9e_c00463{left:183.420000px;}
.xe9_c00463{left:185.580000px;}
.xd3_c00463{left:187.500000px;}
.x38_c00463{left:189.000000px;}
.x99_c00463{left:190.080000px;}
.xd6_c00463{left:191.580000px;}
.x63_c00463{left:193.920000px;}
.x8c_c00463{left:196.080000px;}
.xaa_c00463{left:201.000000px;}
.x56_c00463{left:202.080000px;}
.xe4_c00463{left:204.000000px;}
.x9f_c00463{left:213.420000px;}
.x2b_c00463{left:217.080000px;}
.x78_c00463{left:219.000000px;}
.x90_c00463{left:220.500000px;}
.x57_c00463{left:222.000000px;}
.x1d_c00463{left:223.500000px;}
.x64_c00463{left:225.420000px;}
.xe_c00463{left:226.500000px;}
.xab_c00463{left:231.000000px;}
.x3_c00463{left:235.080000px;}
.x34_c00463{left:236.580000px;}
.x71_c00463{left:238.920000px;}
.x44_c00463{left:241.920000px;}
.x84_c00463{left:244.275000px;}
.x1e_c00463{left:247.500000px;}
.x58_c00463{left:249.000000px;}
.x4e_c00463{left:250.080000px;}
.x2c_c00463{left:256.500000px;}
.xf_c00463{left:258.000000px;}
.xd8_c00463{left:259.500000px;}
.xc9_c00463{left:261.000000px;}
.x1f_c00463{left:262.500000px;}
.xc2_c00463{left:264.000000px;}
.xce_c00463{left:265.500000px;}
.xac_c00463{left:266.580000px;}
.x35_c00463{left:268.500000px;}
.x4_c00463{left:271.080000px;}
.x39_c00463{left:273.000000px;}
.x65_c00463{left:280.080000px;}
.x59_c00463{left:283.500000px;}
.x7c_c00463{left:284.580000px;}
.x4f_c00463{left:286.500000px;}
.x91_c00463{left:287.580000px;}
.x10_c00463{left:289.500000px;}
.x9a_c00463{left:290.580000px;}
.x45_c00463{left:294.000000px;}
.x20_c00463{left:295.500000px;}
.x66_c00463{left:297.420000px;}
.x2d_c00463{left:303.000000px;}
.x92_c00463{left:304.920000px;}
.xa0_c00463{left:306.420000px;}
.x72_c00463{left:308.580000px;}
.x5_c00463{left:310.920000px;}
.xc1_c00463{left:312.000000px;}
.xb6_c00463{left:313.080000px;}
.xd4_c00463{left:315.000000px;}
.x36_c00463{left:316.920000px;}
.x85_c00463{left:318.000000px;}
.xc3_c00463{left:319.500000px;}
.xa7_c00463{left:322.080000px;}
.x3a_c00463{left:325.080000px;}
.xb7_c00463{left:330.000000px;}
.x11_c00463{left:332.580000px;}
.x93_c00463{left:334.500000px;}
.xa1_c00463{left:336.000000px;}
.xbc_c00463{left:339.000000px;}
.x21_c00463{left:341.580000px;}
.x9b_c00463{left:348.000000px;}
.x67_c00463{left:351.000000px;}
.xb8_c00463{left:354.000000px;}
.x3b_c00463{left:356.580000px;}
.xe5_c00463{left:360.000000px;}
.x22_c00463{left:361.920000px;}
.x9c_c00463{left:363.000000px;}
.x6_c00463{left:364.080000px;}
.x68_c00463{left:366.000000px;}
.x73_c00463{left:369.000000px;}
.x46_c00463{left:370.080000px;}
.xea_c00463{left:372.000000px;}
.xd0_c00463{left:373.500000px;}
.x3c_c00463{left:375.420000px;}
.xad_c00463{left:379.080000px;}
.x50_c00463{left:380.580000px;}
.x7d_c00463{left:384.420000px;}
.x12_c00463{left:387.420000px;}
.x23_c00463{left:390.000000px;}
.x47_c00463{left:391.080000px;}
.x94_c00463{left:393.000000px;}
.x2e_c00463{left:395.580000px;}
.x5a_c00463{left:400.920000px;}
.x3d_c00463{left:402.420000px;}
.x7_c00463{left:404.580000px;}
.x1_c00463{left:406.500000px;}
.x79_c00463{left:408.000000px;}
.x86_c00463{left:409.080000px;}
.xa8_c00463{left:410.580000px;}
.x13_c00463{left:415.080000px;}
.x69_c00463{left:417.000000px;}
.xb9_c00463{left:419.580000px;}
.x5b_c00463{left:421.920000px;}
.xca_c00463{left:423.000000px;}
.x7a_c00463{left:424.080000px;}
.xe1_c00463{left:426.000000px;}
.xc4_c00463{left:427.920000px;}
.x8d_c00463{left:429.420000px;}
.xba_c00463{left:435.645000px;}
.x24_c00463{left:437.580000px;}
.x3e_c00463{left:439.920000px;}
.x87_c00463{left:441.000000px;}
.xbd_c00463{left:442.080000px;}
.x2f_c00463{left:445.500000px;}
.xa2_c00463{left:450.000000px;}
.x74_c00463{left:451.920000px;}
.x5c_c00463{left:456.000000px;}
.x8e_c00463{left:457.500000px;}
.x14_c00463{left:462.000000px;}
.x8b_c00463{left:463.275000px;}
.x51_c00463{left:465.000000px;}
.xae_c00463{left:468.420000px;}
.xa3_c00463{left:471.420000px;}
.x7e_c00463{left:472.500000px;}
.x48_c00463{left:474.420000px;}
.x5d_c00463{left:477.000000px;}
.x95_c00463{left:480.420000px;}
.xc5_c00463{left:481.500000px;}
.x30_c00463{left:484.920000px;}
.xbe_c00463{left:487.500000px;}
.xdf_c00463{left:490.500000px;}
.x7f_c00463{left:491.580000px;}
.x15_c00463{left:495.420000px;}
.x9d_c00463{left:501.000000px;}
.x8_c00463{left:504.000000px;}
.x75_c00463{left:506.580000px;}
.x6a_c00463{left:508.500000px;}
.x3f_c00463{left:516.000000px;}
.x5e_c00463{left:517.080000px;}
.xaf_c00463{left:519.000000px;}
.x16_c00463{left:520.500000px;}
.xe6_c00463{left:522.000000px;}
.x52_c00463{left:523.500000px;}
.x6b_c00463{left:526.080000px;}
.x9_c00463{left:528.000000px;}
.xd5_c00463{left:531.000000px;}
.xcb_c00463{left:532.500000px;}
.x17_c00463{left:534.000000px;}
.x5f_c00463{left:535.500000px;}
.x25_c00463{left:537.000000px;}
.x96_c00463{left:541.500000px;}
.x88_c00463{left:550.275000px;}
.x31_c00463{left:552.000000px;}
.xb0_c00463{left:558.000000px;}
.x80_c00463{left:561.000000px;}
.xa4_c00463{left:562.500000px;}
.x76_c00463{left:564.000000px;}
.x49_c00463{left:565.080000px;}
.x6c_c00463{left:567.000000px;}
.x53_c00463{left:568.500000px;}
.x18_c00463{left:576.420000px;}
.xa5_c00463{left:577.920000px;}
.xa_c00463{left:579.420000px;}
.xd9_c00463{left:585.000000px;}
.x6d_c00463{left:586.080000px;}
.x81_c00463{left:588.000000px;}
.xc6_c00463{left:589.500000px;}
.x40_c00463{left:591.000000px;}
.x89_c00463{left:592.275000px;}
.x54_c00463{left:600.420000px;}
.xb1_c00463{left:601.920000px;}
.x26_c00463{left:604.500000px;}
.xb_c00463{left:606.000000px;}
.x19_c00463{left:612.000000px;}
.x41_c00463{left:616.920000px;}
.x82_c00463{left:624.000000px;}
.x77_c00463{left:627.420000px;}
.x27_c00463{left:630.000000px;}
.x6e_c00463{left:634.920000px;}
.x4a_c00463{left:639.000000px;}
.xcd_c00463{left:640.920000px;}
.xc7_c00463{left:643.500000px;}
.x32_c00463{left:644.580000px;}
.x97_c00463{left:648.420000px;}
.xb2_c00463{left:649.500000px;}
.x1a_c00463{left:651.000000px;}
.x28_c00463{left:652.275000px;}
.x42_c00463{left:661.500000px;}
.x33_c00463{left:664.500000px;}
.x60_c00463{left:666.000000px;}
.x1b_c00463{left:667.500000px;}
.x6f_c00463{left:670.080000px;}
.x55_c00463{left:673.500000px;}
.xc_c00463{left:676.500000px;}
.xb3_c00463{left:682.080000px;}
.x61_c00463{left:684.000000px;}
.x1c_c00463{left:685.920000px;}
.x29_c00463{left:687.000000px;}
.x8a_c00463{left:690.000000px;}
.x4b_c00463{left:692.580000px;}
.xda_c00463{left:694.500000px;}
.x8f_c00463{left:699.000000px;}
.x62_c00463{left:700.500000px;}
.x2a_c00463{left:706.920000px;}
.x4c_c00463{left:708.000000px;}
.xa9_c00463{left:717.000000px;}
.x43_c00463{left:721.500000px;}
.xe7_c00463{left:739.920000px;}
.xbb_c00463{left:748.500000px;}
.xcc_c00463{left:750.420000px;}
.xd1_c00463{left:753.000000px;}
.xcf_c00463{left:754.500000px;}
@media print{
.v2_c00463{vertical-align:-5.333333pt;}
.v0_c00463{vertical-align:0.000000pt;}
.v1_c00463{vertical-align:5.333333pt;}
.ls1_c00463{letter-spacing:0.000000pt;}
.ls0_c00463{letter-spacing:63.114847pt;}
.ws0_c00463{word-spacing:-7.240590pt;}
.ws6_c00463{word-spacing:-1.676304pt;}
.ws19_c00463{word-spacing:0.000000pt;}
.ws1_c00463{word-spacing:0.618404pt;}
.ws9_c00463{word-spacing:14.750782pt;}
.ws15_c00463{word-spacing:18.173640pt;}
.ws16_c00463{word-spacing:29.157018pt;}
.wsd_c00463{word-spacing:33.464251pt;}
.wse_c00463{word-spacing:35.244643pt;}
.ws17_c00463{word-spacing:36.134498pt;}
.ws14_c00463{word-spacing:36.416547pt;}
.ws2_c00463{word-spacing:37.661663pt;}
.wsf_c00463{word-spacing:38.332159pt;}
.ws11_c00463{word-spacing:40.247770pt;}
.ws7_c00463{word-spacing:44.775456pt;}
.ws13_c00463{word-spacing:46.237858pt;}
.ws8_c00463{word-spacing:46.776558pt;}
.wsa_c00463{word-spacing:52.717514pt;}
.ws4_c00463{word-spacing:56.044554pt;}
.ws10_c00463{word-spacing:56.567467pt;}
.ws18_c00463{word-spacing:57.233843pt;}
.wsc_c00463{word-spacing:61.361940pt;}
.ws3_c00463{word-spacing:61.712627pt;}
.wsb_c00463{word-spacing:64.925917pt;}
.ws12_c00463{word-spacing:65.040558pt;}
.ws5_c00463{word-spacing:85.757673pt;}
._4_c00463{width:42.314936pt;}
._3_c00463{width:45.402452pt;}
._2_c00463{width:47.318064pt;}
._0_c00463{width:53.846851pt;}
._1_c00463{width:74.370066pt;}
.fs8_c00463{font-size:3.040000pt;}
.fs9_c00463{font-size:10.560000pt;}
.fs7_c00463{font-size:12.106667pt;}
.fs0_c00463{font-size:16.640000pt;}
.fs6_c00463{font-size:18.133333pt;}
.fs1_c00463{font-size:22.666667pt;}
.fs3_c00463{font-size:25.706667pt;}
.fs4_c00463{font-size:28.746667pt;}
.fs2_c00463{font-size:31.733333pt;}
.fs5_c00463{font-size:34.773333pt;}
.y0_c00463{bottom:0.000000pt;}
.y6b_c00463{bottom:226.440000pt;}
.y68_c00463{bottom:227.026667pt;}
.y6a_c00463{bottom:227.400000pt;}
.y69_c00463{bottom:227.973333pt;}
.y6c_c00463{bottom:228.360000pt;}
.y62_c00463{bottom:243.773333pt;}
.y67_c00463{bottom:244.560000pt;}
.y66_c00463{bottom:244.733333pt;}
.y64_c00463{bottom:245.306667pt;}
.y63_c00463{bottom:245.693333pt;}
.y65_c00463{bottom:245.893333pt;}
.y61_c00463{bottom:261.106667pt;}
.y5e_c00463{bottom:261.893333pt;}
.y5f_c00463{bottom:262.640000pt;}
.y60_c00463{bottom:263.026667pt;}
.y5b_c00463{bottom:278.440000pt;}
.y5d_c00463{bottom:279.400000pt;}
.y5a_c00463{bottom:280.360000pt;}
.y5c_c00463{bottom:280.560000pt;}
.y57_c00463{bottom:295.026667pt;}
.y54_c00463{bottom:295.773333pt;}
.y56_c00463{bottom:297.106667pt;}
.y53_c00463{bottom:297.693333pt;}
.y58_c00463{bottom:297.893333pt;}
.y59_c00463{bottom:298.640000pt;}
.y55_c00463{bottom:299.026667pt;}
.y52_c00463{bottom:313.493333pt;}
.y50_c00463{bottom:314.440000pt;}
.y4e_c00463{bottom:315.026667pt;}
.y51_c00463{bottom:315.226667pt;}
.y4f_c00463{bottom:316.360000pt;}
.y4c_c00463{bottom:331.773333pt;}
.y4b_c00463{bottom:332.733333pt;}
.y4d_c00463{bottom:333.306667pt;}
.y47_c00463{bottom:349.106667pt;}
.y4a_c00463{bottom:349.693333pt;}
.y49_c00463{bottom:350.066667pt;}
.y46_c00463{bottom:350.640000pt;}
.y48_c00463{bottom:351.026667pt;}
.y43_c00463{bottom:366.440000pt;}
.y45_c00463{bottom:367.026667pt;}
.y44_c00463{bottom:367.226667pt;}
.y42_c00463{bottom:368.360000pt;}
.y41_c00463{bottom:383.773333pt;}
.y40_c00463{bottom:385.693333pt;}
.y3f_c00463{bottom:386.640000pt;}
.y3e_c00463{bottom:387.026667pt;}
.y3d_c00463{bottom:401.893333pt;}
.y3b_c00463{bottom:402.440000pt;}
.y3c_c00463{bottom:403.026667pt;}
.y3a_c00463{bottom:404.360000pt;}
.y39_c00463{bottom:417.693333pt;}
.y36_c00463{bottom:418.440000pt;}
.y34_c00463{bottom:419.773333pt;}
.y37_c00463{bottom:420.360000pt;}
.y38_c00463{bottom:421.306667pt;}
.y35_c00463{bottom:421.693333pt;}
.y33_c00463{bottom:435.973333pt;}
.y32_c00463{bottom:437.693333pt;}
.y31_c00463{bottom:437.893333pt;}
.y30_c00463{bottom:438.066667pt;}
.y2e_c00463{bottom:438.640000pt;}
.y2d_c00463{bottom:439.026667pt;}
.y2f_c00463{bottom:439.973333pt;}
.y29_c00463{bottom:453.693333pt;}
.y2a_c00463{bottom:454.440000pt;}
.y2c_c00463{bottom:455.026667pt;}
.y2b_c00463{bottom:455.226667pt;}
.y27_c00463{bottom:455.400000pt;}
.y28_c00463{bottom:456.360000pt;}
.y25_c00463{bottom:470.440000pt;}
.y22_c00463{bottom:471.026667pt;}
.y23_c00463{bottom:471.773333pt;}
.y24_c00463{bottom:472.360000pt;}
.y26_c00463{bottom:472.560000pt;}
.y21_c00463{bottom:473.693333pt;}
.y1e_c00463{bottom:489.106667pt;}
.y20_c00463{bottom:489.893333pt;}
.y1d_c00463{bottom:490.066667pt;}
.y1f_c00463{bottom:491.026667pt;}
.y1c_c00463{bottom:491.973333pt;}
.y19_c00463{bottom:506.440000pt;}
.y1a_c00463{bottom:508.360000pt;}
.y1b_c00463{bottom:508.560000pt;}
.y13_c00463{bottom:523.026667pt;}
.y18_c00463{bottom:523.773333pt;}
.y12_c00463{bottom:523.973333pt;}
.y14_c00463{bottom:525.106667pt;}
.y17_c00463{bottom:525.693333pt;}
.y15_c00463{bottom:526.066667pt;}
.y16_c00463{bottom:526.640000pt;}
.y11_c00463{bottom:527.026667pt;}
.yd_c00463{bottom:541.106667pt;}
.y10_c00463{bottom:543.026667pt;}
.ye_c00463{bottom:543.226667pt;}
.yc_c00463{bottom:543.973333pt;}
.yf_c00463{bottom:544.360000pt;}
.y8_c00463{bottom:559.773333pt;}
.yb_c00463{bottom:560.360000pt;}
.ya_c00463{bottom:560.560000pt;}
.y7_c00463{bottom:561.693333pt;}
.y9_c00463{bottom:562.640000pt;}
.y6_c00463{bottom:575.026667pt;}
.y4_c00463{bottom:576.360000pt;}
.y3_c00463{bottom:577.106667pt;}
.y5_c00463{bottom:579.026667pt;}
.yd4_c00463{bottom:610.266667pt;}
.yd5_c00463{bottom:612.173333pt;}
.yd3_c00463{bottom:612.560000pt;}
.yd2_c00463{bottom:613.506667pt;}
.yd0_c00463{bottom:624.560000pt;}
.yd1_c00463{bottom:625.506667pt;}
.ycd_c00463{bottom:636.560000pt;}
.ycf_c00463{bottom:637.506667pt;}
.yce_c00463{bottom:637.693333pt;}
.ycc_c00463{bottom:638.840000pt;}
.yca_c00463{bottom:648.173333pt;}
.yc9_c00463{bottom:648.560000pt;}
.ycb_c00463{bottom:648.933333pt;}
.yc7_c00463{bottom:649.133333pt;}
.yc8_c00463{bottom:649.506667pt;}
.yc6_c00463{bottom:649.893333pt;}
.yc5_c00463{bottom:650.840000pt;}
.yc4_c00463{bottom:660.560000pt;}
.yc3_c00463{bottom:661.506667pt;}
.yc1_c00463{bottom:661.893333pt;}
.yc2_c00463{bottom:662.840000pt;}
.yc0_c00463{bottom:673.506667pt;}
.ybf_c00463{bottom:673.893333pt;}
.ybe_c00463{bottom:674.840000pt;}
.ybd_c00463{bottom:675.226667pt;}
.ybc_c00463{bottom:676.173333pt;}
.ybb_c00463{bottom:685.893333pt;}
.yba_c00463{bottom:686.840000pt;}
.yb8_c00463{bottom:687.226667pt;}
.yb7_c00463{bottom:688.173333pt;}
.yb9_c00463{bottom:688.373333pt;}
.yb6_c00463{bottom:697.893333pt;}
.yb5_c00463{bottom:698.840000pt;}
.yb4_c00463{bottom:700.173333pt;}
.yb2_c00463{bottom:709.893333pt;}
.yaf_c00463{bottom:710.266667pt;}
.yb1_c00463{bottom:710.840000pt;}
.yb0_c00463{bottom:712.173333pt;}
.yb3_c00463{bottom:712.373333pt;}
.yae_c00463{bottom:721.893333pt;}
.yad_c00463{bottom:723.226667pt;}
.yac_c00463{bottom:724.173333pt;}
.yab_c00463{bottom:724.560000pt;}
.yaa_c00463{bottom:725.506667pt;}
.ya9_c00463{bottom:735.226667pt;}
.ya8_c00463{bottom:736.173333pt;}
.ya6_c00463{bottom:736.560000pt;}
.ya7_c00463{bottom:737.506667pt;}
.ya5_c00463{bottom:747.226667pt;}
.ya4_c00463{bottom:748.173333pt;}
.ya3_c00463{bottom:748.560000pt;}
.ya2_c00463{bottom:749.506667pt;}
.ya1_c00463{bottom:760.173333pt;}
.ya0_c00463{bottom:760.560000pt;}
.y9f_c00463{bottom:761.506667pt;}
.y9d_c00463{bottom:772.560000pt;}
.y9e_c00463{bottom:773.506667pt;}
.y9c_c00463{bottom:773.893333pt;}
.y9b_c00463{bottom:784.560000pt;}
.y9a_c00463{bottom:785.506667pt;}
.y98_c00463{bottom:785.893333pt;}
.y99_c00463{bottom:786.840000pt;}
.y97_c00463{bottom:796.560000pt;}
.y96_c00463{bottom:797.506667pt;}
.y95_c00463{bottom:797.893333pt;}
.y94_c00463{bottom:798.840000pt;}
.y90_c00463{bottom:809.506667pt;}
.y93_c00463{bottom:809.706667pt;}
.y8f_c00463{bottom:809.893333pt;}
.y92_c00463{bottom:810.840000pt;}
.y91_c00463{bottom:811.040000pt;}
.y8d_c00463{bottom:821.506667pt;}
.y8c_c00463{bottom:821.893333pt;}
.y8b_c00463{bottom:822.840000pt;}
.y8e_c00463{bottom:823.040000pt;}
.y8a_c00463{bottom:832.560000pt;}
.y89_c00463{bottom:833.893333pt;}
.y88_c00463{bottom:834.840000pt;}
.y87_c00463{bottom:835.226667pt;}
.y86_c00463{bottom:845.893333pt;}
.y84_c00463{bottom:846.840000pt;}
.y85_c00463{bottom:847.040000pt;}
.y81_c00463{bottom:847.226667pt;}
.y82_c00463{bottom:848.173333pt;}
.y83_c00463{bottom:848.373333pt;}
.y80_c00463{bottom:857.893333pt;}
.y7f_c00463{bottom:858.840000pt;}
.y7e_c00463{bottom:859.226667pt;}
.y7d_c00463{bottom:860.173333pt;}
.y7c_c00463{bottom:875.226667pt;}
.y79_c00463{bottom:876.173333pt;}
.y7a_c00463{bottom:876.560000pt;}
.y7b_c00463{bottom:877.506667pt;}
.y78_c00463{bottom:889.893333pt;}
.y76_c00463{bottom:891.226667pt;}
.y77_c00463{bottom:892.173333pt;}
.y75_c00463{bottom:911.973333pt;}
.y74_c00463{bottom:912.933333pt;}
.y71_c00463{bottom:923.400000pt;}
.y72_c00463{bottom:924.360000pt;}
.y73_c00463{bottom:924.733333pt;}
.y70_c00463{bottom:925.306667pt;}
.y6f_c00463{bottom:926.266667pt;}
.y6e_c00463{bottom:945.306667pt;}
.y6d_c00463{bottom:947.600000pt;}
.y2_c00463{bottom:978.640000pt;}
.y1_c00463{bottom:979.226667pt;}
.hb_c00463{height:3.739141pt;}
.hc_c00463{height:12.988594pt;}
.h9_c00463{height:14.890964pt;}
.h1_c00463{height:20.466875pt;}
.h8_c00463{height:22.303646pt;}
.ha_c00463{height:25.800208pt;}
.h2_c00463{height:27.879557pt;}
.h4_c00463{height:31.618698pt;}
.h6_c00463{height:33.212891pt;}
.h5_c00463{height:35.357839pt;}
.h3_c00463{height:39.031380pt;}
.h7_c00463{height:42.770521pt;}
.h0_c00463{height:1186.666667pt;}
.w0_c00463{width:782.666667pt;}
.x0_c00463{left:0.000000pt;}
.xb4_c00463{left:92.000000pt;}
.xe0_c00463{left:100.000000pt;}
.xdb_c00463{left:100.960000pt;}
.xbf_c00463{left:102.666667pt;}
.xe3_c00463{left:120.960000pt;}
.xc0_c00463{left:122.293333pt;}
.xd7_c00463{left:126.293333pt;}
.xe2_c00463{left:129.333333pt;}
.xdc_c00463{left:130.666667pt;}
.xa6_c00463{left:132.373333pt;}
.x98_c00463{left:133.706667pt;}
.x2_c00463{left:134.666667pt;}
.x4d_c00463{left:136.000000pt;}
.xe8_c00463{left:136.960000pt;}
.xc8_c00463{left:138.293333pt;}
.xd2_c00463{left:139.626667pt;}
.xde_c00463{left:141.333333pt;}
.xdd_c00463{left:142.293333pt;}
.xb5_c00463{left:144.960000pt;}
.x7b_c00463{left:148.000000pt;}
.x37_c00463{left:149.333333pt;}
.x83_c00463{left:155.626667pt;}
.xd_c00463{left:160.000000pt;}
.x70_c00463{left:161.333333pt;}
.x9e_c00463{left:163.040000pt;}
.xe9_c00463{left:164.960000pt;}
.xd3_c00463{left:166.666667pt;}
.x38_c00463{left:168.000000pt;}
.x99_c00463{left:168.960000pt;}
.xd6_c00463{left:170.293333pt;}
.x63_c00463{left:172.373333pt;}
.x8c_c00463{left:174.293333pt;}
.xaa_c00463{left:178.666667pt;}
.x56_c00463{left:179.626667pt;}
.xe4_c00463{left:181.333333pt;}
.x9f_c00463{left:189.706667pt;}
.x2b_c00463{left:192.960000pt;}
.x78_c00463{left:194.666667pt;}
.x90_c00463{left:196.000000pt;}
.x57_c00463{left:197.333333pt;}
.x1d_c00463{left:198.666667pt;}
.x64_c00463{left:200.373333pt;}
.xe_c00463{left:201.333333pt;}
.xab_c00463{left:205.333333pt;}
.x3_c00463{left:208.960000pt;}
.x34_c00463{left:210.293333pt;}
.x71_c00463{left:212.373333pt;}
.x44_c00463{left:215.040000pt;}
.x84_c00463{left:217.133333pt;}
.x1e_c00463{left:220.000000pt;}
.x58_c00463{left:221.333333pt;}
.x4e_c00463{left:222.293333pt;}
.x2c_c00463{left:228.000000pt;}
.xf_c00463{left:229.333333pt;}
.xd8_c00463{left:230.666667pt;}
.xc9_c00463{left:232.000000pt;}
.x1f_c00463{left:233.333333pt;}
.xc2_c00463{left:234.666667pt;}
.xce_c00463{left:236.000000pt;}
.xac_c00463{left:236.960000pt;}
.x35_c00463{left:238.666667pt;}
.x4_c00463{left:240.960000pt;}
.x39_c00463{left:242.666667pt;}
.x65_c00463{left:248.960000pt;}
.x59_c00463{left:252.000000pt;}
.x7c_c00463{left:252.960000pt;}
.x4f_c00463{left:254.666667pt;}
.x91_c00463{left:255.626667pt;}
.x10_c00463{left:257.333333pt;}
.x9a_c00463{left:258.293333pt;}
.x45_c00463{left:261.333333pt;}
.x20_c00463{left:262.666667pt;}
.x66_c00463{left:264.373333pt;}
.x2d_c00463{left:269.333333pt;}
.x92_c00463{left:271.040000pt;}
.xa0_c00463{left:272.373333pt;}
.x72_c00463{left:274.293333pt;}
.x5_c00463{left:276.373333pt;}
.xc1_c00463{left:277.333333pt;}
.xb6_c00463{left:278.293333pt;}
.xd4_c00463{left:280.000000pt;}
.x36_c00463{left:281.706667pt;}
.x85_c00463{left:282.666667pt;}
.xc3_c00463{left:284.000000pt;}
.xa7_c00463{left:286.293333pt;}
.x3a_c00463{left:288.960000pt;}
.xb7_c00463{left:293.333333pt;}
.x11_c00463{left:295.626667pt;}
.x93_c00463{left:297.333333pt;}
.xa1_c00463{left:298.666667pt;}
.xbc_c00463{left:301.333333pt;}
.x21_c00463{left:303.626667pt;}
.x9b_c00463{left:309.333333pt;}
.x67_c00463{left:312.000000pt;}
.xb8_c00463{left:314.666667pt;}
.x3b_c00463{left:316.960000pt;}
.xe5_c00463{left:320.000000pt;}
.x22_c00463{left:321.706667pt;}
.x9c_c00463{left:322.666667pt;}
.x6_c00463{left:323.626667pt;}
.x68_c00463{left:325.333333pt;}
.x73_c00463{left:328.000000pt;}
.x46_c00463{left:328.960000pt;}
.xea_c00463{left:330.666667pt;}
.xd0_c00463{left:332.000000pt;}
.x3c_c00463{left:333.706667pt;}
.xad_c00463{left:336.960000pt;}
.x50_c00463{left:338.293333pt;}
.x7d_c00463{left:341.706667pt;}
.x12_c00463{left:344.373333pt;}
.x23_c00463{left:346.666667pt;}
.x47_c00463{left:347.626667pt;}
.x94_c00463{left:349.333333pt;}
.x2e_c00463{left:351.626667pt;}
.x5a_c00463{left:356.373333pt;}
.x3d_c00463{left:357.706667pt;}
.x7_c00463{left:359.626667pt;}
.x1_c00463{left:361.333333pt;}
.x79_c00463{left:362.666667pt;}
.x86_c00463{left:363.626667pt;}
.xa8_c00463{left:364.960000pt;}
.x13_c00463{left:368.960000pt;}
.x69_c00463{left:370.666667pt;}
.xb9_c00463{left:372.960000pt;}
.x5b_c00463{left:375.040000pt;}
.xca_c00463{left:376.000000pt;}
.x7a_c00463{left:376.960000pt;}
.xe1_c00463{left:378.666667pt;}
.xc4_c00463{left:380.373333pt;}
.x8d_c00463{left:381.706667pt;}
.xba_c00463{left:387.240000pt;}
.x24_c00463{left:388.960000pt;}
.x3e_c00463{left:391.040000pt;}
.x87_c00463{left:392.000000pt;}
.xbd_c00463{left:392.960000pt;}
.x2f_c00463{left:396.000000pt;}
.xa2_c00463{left:400.000000pt;}
.x74_c00463{left:401.706667pt;}
.x5c_c00463{left:405.333333pt;}
.x8e_c00463{left:406.666667pt;}
.x14_c00463{left:410.666667pt;}
.x8b_c00463{left:411.800000pt;}
.x51_c00463{left:413.333333pt;}
.xae_c00463{left:416.373333pt;}
.xa3_c00463{left:419.040000pt;}
.x7e_c00463{left:420.000000pt;}
.x48_c00463{left:421.706667pt;}
.x5d_c00463{left:424.000000pt;}
.x95_c00463{left:427.040000pt;}
.xc5_c00463{left:428.000000pt;}
.x30_c00463{left:431.040000pt;}
.xbe_c00463{left:433.333333pt;}
.xdf_c00463{left:436.000000pt;}
.x7f_c00463{left:436.960000pt;}
.x15_c00463{left:440.373333pt;}
.x9d_c00463{left:445.333333pt;}
.x8_c00463{left:448.000000pt;}
.x75_c00463{left:450.293333pt;}
.x6a_c00463{left:452.000000pt;}
.x3f_c00463{left:458.666667pt;}
.x5e_c00463{left:459.626667pt;}
.xaf_c00463{left:461.333333pt;}
.x16_c00463{left:462.666667pt;}
.xe6_c00463{left:464.000000pt;}
.x52_c00463{left:465.333333pt;}
.x6b_c00463{left:467.626667pt;}
.x9_c00463{left:469.333333pt;}
.xd5_c00463{left:472.000000pt;}
.xcb_c00463{left:473.333333pt;}
.x17_c00463{left:474.666667pt;}
.x5f_c00463{left:476.000000pt;}
.x25_c00463{left:477.333333pt;}
.x96_c00463{left:481.333333pt;}
.x88_c00463{left:489.133333pt;}
.x31_c00463{left:490.666667pt;}
.xb0_c00463{left:496.000000pt;}
.x80_c00463{left:498.666667pt;}
.xa4_c00463{left:500.000000pt;}
.x76_c00463{left:501.333333pt;}
.x49_c00463{left:502.293333pt;}
.x6c_c00463{left:504.000000pt;}
.x53_c00463{left:505.333333pt;}
.x18_c00463{left:512.373333pt;}
.xa5_c00463{left:513.706667pt;}
.xa_c00463{left:515.040000pt;}
.xd9_c00463{left:520.000000pt;}
.x6d_c00463{left:520.960000pt;}
.x81_c00463{left:522.666667pt;}
.xc6_c00463{left:524.000000pt;}
.x40_c00463{left:525.333333pt;}
.x89_c00463{left:526.466667pt;}
.x54_c00463{left:533.706667pt;}
.xb1_c00463{left:535.040000pt;}
.x26_c00463{left:537.333333pt;}
.xb_c00463{left:538.666667pt;}
.x19_c00463{left:544.000000pt;}
.x41_c00463{left:548.373333pt;}
.x82_c00463{left:554.666667pt;}
.x77_c00463{left:557.706667pt;}
.x27_c00463{left:560.000000pt;}
.x6e_c00463{left:564.373333pt;}
.x4a_c00463{left:568.000000pt;}
.xcd_c00463{left:569.706667pt;}
.xc7_c00463{left:572.000000pt;}
.x32_c00463{left:572.960000pt;}
.x97_c00463{left:576.373333pt;}
.xb2_c00463{left:577.333333pt;}
.x1a_c00463{left:578.666667pt;}
.x28_c00463{left:579.800000pt;}
.x42_c00463{left:588.000000pt;}
.x33_c00463{left:590.666667pt;}
.x60_c00463{left:592.000000pt;}
.x1b_c00463{left:593.333333pt;}
.x6f_c00463{left:595.626667pt;}
.x55_c00463{left:598.666667pt;}
.xc_c00463{left:601.333333pt;}
.xb3_c00463{left:606.293333pt;}
.x61_c00463{left:608.000000pt;}
.x1c_c00463{left:609.706667pt;}
.x29_c00463{left:610.666667pt;}
.x8a_c00463{left:613.333333pt;}
.x4b_c00463{left:615.626667pt;}
.xda_c00463{left:617.333333pt;}
.x8f_c00463{left:621.333333pt;}
.x62_c00463{left:622.666667pt;}
.x2a_c00463{left:628.373333pt;}
.x4c_c00463{left:629.333333pt;}
.xa9_c00463{left:637.333333pt;}
.x43_c00463{left:641.333333pt;}
.xe7_c00463{left:657.706667pt;}
.xbb_c00463{left:665.333333pt;}
.xcc_c00463{left:667.040000pt;}
.xd1_c00463{left:669.333333pt;}
.xcf_c00463{left:670.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_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_694030e500c2f277a02af8cd.woff2')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:1.688965;font-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_c00464{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00464{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.maa_c00464{transform:matrix(0.344709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344709,0.000000,0.000000,0.250000,0,0);}
.m90_c00464{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mcd_c00464{transform:matrix(0.363113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363113,0.000000,0.000000,0.250000,0,0);}
.md9_c00464{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m97_c00464{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mdb_c00464{transform:matrix(0.370015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370015,0.000000,0.000000,0.250000,0,0);}
.m98_c00464{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.ma8_c00464{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m91_c00464{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.md8_c00464{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.md0_c00464{transform:matrix(0.378151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378151,0.000000,0.000000,0.250000,0,0);}
.mdf_c00464{transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);}
.m77_c00464{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.ma4_c00464{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.mf8_c00464{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.ma6_c00464{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m42_c00464{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.me2_c00464{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m14_c00464{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.mce_c00464{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.ma3_c00464{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m73_c00464{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mf3_c00464{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.mcb_c00464{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m2d_c00464{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.me4_c00464{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m5a_c00464{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.me0_c00464{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m5c_c00464{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m3_c00464{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m35_c00464{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_c00464{transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);}
.m72_c00464{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m9b_c00464{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.m99_c00464{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.md1_c00464{transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);}
.m8d_c00464{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m17_c00464{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.md7_c00464{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m6_c00464{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m8c_c00464{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m85_c00464{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m33_c00464{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mc2_c00464{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.mb5_c00464{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.mcf_c00464{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.mde_c00464{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.ma7_c00464{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m49_c00464{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m56_c00464{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m84_c00464{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m47_c00464{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m44_c00464{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m65_c00464{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.mc0_c00464{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m87_c00464{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.md2_c00464{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.mc3_c00464{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.me7_c00464{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mfb_c00464{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m41_c00464{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m38_c00464{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m64_c00464{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m6b_c00464{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m6e_c00464{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.m37_c00464{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m78_c00464{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m2b_c00464{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m7a_c00464{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m28_c00464{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m4a_c00464{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m6f_c00464{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m4d_c00464{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mf6_c00464{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m8f_c00464{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m103_c00464{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m75_c00464{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m40_c00464{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m46_c00464{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m23_c00464{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m1f_c00464{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m8e_c00464{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.md3_c00464{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m2f_c00464{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.mb1_c00464{transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);}
.m13_c00464{transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);}
.mf0_c00464{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m29_c00464{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m21_c00464{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m1_c00464{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.mf9_c00464{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m45_c00464{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m88_c00464{transform:matrix(0.461345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461345,0.000000,0.000000,0.250000,0,0);}
.m100_c00464{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m22_c00464{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.mbc_c00464{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.mef_c00464{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m76_c00464{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.mbf_c00464{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.mbe_c00464{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.mdd_c00464{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m60_c00464{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m9c_c00464{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m3f_c00464{transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);}
.mb3_c00464{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m2c_c00464{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.me_c00464{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m31_c00464{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.ma2_c00464{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m70_c00464{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mfd_c00464{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m67_c00464{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mc8_c00464{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m8a_c00464{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m80_c00464{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m7f_c00464{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m1a_c00464{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m10_c00464{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_c00464{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m4c_c00464{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.mda_c00464{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m30_c00464{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m9f_c00464{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m89_c00464{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m2a_c00464{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.mb7_c00464{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.mc_c00464{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mec_c00464{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m62_c00464{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m6d_c00464{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m94_c00464{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m59_c00464{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m52_c00464{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m36_c00464{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.mf5_c00464{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.mae_c00464{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m9e_c00464{transform:matrix(0.522269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522269,0.000000,0.000000,0.250000,0,0);}
.m27_c00464{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m9_c00464{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.m19_c00464{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.mbd_c00464{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m81_c00464{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m101_c00464{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m2e_c00464{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m69_c00464{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m93_c00464{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m83_c00464{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m82_c00464{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mf_c00464{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mba_c00464{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m15_c00464{transform:matrix(0.533859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533859,0.000000,0.000000,0.250000,0,0);}
.me1_c00464{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.meb_c00464{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m43_c00464{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mc4_c00464{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mad_c00464{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mca_c00464{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m16_c00464{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m57_c00464{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m7_c00464{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m3d_c00464{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m7b_c00464{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.ma1_c00464{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.mb2_c00464{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.mea_c00464{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m61_c00464{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mdc_c00464{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m1e_c00464{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.me9_c00464{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.md4_c00464{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.mb6_c00464{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mee_c00464{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mbb_c00464{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.ma5_c00464{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m9d_c00464{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m25_c00464{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mf4_c00464{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mfa_c00464{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.mc7_c00464{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m55_c00464{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m3e_c00464{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.me5_c00464{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.md_c00464{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m4e_c00464{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m54_c00464{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.md5_c00464{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m7c_c00464{transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);}
.mb4_c00464{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mc9_c00464{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m11_c00464{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m3a_c00464{transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);}
.m1c_c00464{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.ma9_c00464{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m6a_c00464{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mab_c00464{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.mac_c00464{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m63_c00464{transform:matrix(0.570965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570965,0.000000,0.000000,0.250000,0,0);}
.m8_c00464{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.md6_c00464{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m53_c00464{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m4f_c00464{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.me8_c00464{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m7d_c00464{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.me6_c00464{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.m48_c00464{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.m3b_c00464{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m1d_c00464{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mcc_c00464{transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);}
.ma_c00464{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m50_c00464{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m95_c00464{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m86_c00464{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.ma0_c00464{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mf1_c00464{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m8b_c00464{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);}
.m102_c00464{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m34_c00464{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.mc1_c00464{transform:matrix(0.608173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608173,0.000000,0.000000,0.250000,0,0);}
.m74_c00464{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.mb9_c00464{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mc6_c00464{transform:matrix(0.608974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608974,0.000000,0.000000,0.250000,0,0);}
.m96_c00464{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m66_c00464{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.m32_c00464{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m26_c00464{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m4_c00464{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m7e_c00464{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.mf2_c00464{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);}
.m71_c00464{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.maf_c00464{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m4b_c00464{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mf7_c00464{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.mfe_c00464{transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);}
.mc5_c00464{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m58_c00464{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m20_c00464{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m24_c00464{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m0_c00464{transform:matrix(0.679487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679487,0.000000,0.000000,0.250000,0,0);}
.m79_c00464{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m5d_c00464{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m2_c00464{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m5f_c00464{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mb_c00464{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m9a_c00464{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m39_c00464{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mb8_c00464{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.med_c00464{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m5b_c00464{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m5_c00464{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mff_c00464{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m3c_c00464{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m68_c00464{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m51_c00464{transform:matrix(0.796474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.796474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.796474,0.000000,0.000000,0.250000,0,0);}
.m92_c00464{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m6c_c00464{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.mb0_c00464{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mfc_c00464{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m18_c00464{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,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:-4.530080px;}
.ws1_c00464{word-spacing:0.000000px;}
.fc0_c00464{color:transparent;}
.fs0_c00464{font-size:18.720000px;}
.fs3_c00464{font-size:25.500000px;}
.fs1_c00464{font-size:28.920000px;}
.fs4_c00464{font-size:32.340000px;}
.fs2_c00464{font-size:35.700000px;}
.fs5_c00464{font-size:39.120000px;}
.y0_c00464{bottom:0.000000px;}
.ye6_c00464{bottom:254.745000px;}
.ye7_c00464{bottom:255.405000px;}
.ye5_c00464{bottom:255.630000px;}
.ye4_c00464{bottom:256.905000px;}
.ydf_c00464{bottom:273.405000px;}
.ye3_c00464{bottom:274.245000px;}
.ye1_c00464{bottom:275.130000px;}
.ye0_c00464{bottom:275.970000px;}
.ye2_c00464{bottom:276.405000px;}
.ydc_c00464{bottom:292.905000px;}
.yd9_c00464{bottom:293.745000px;}
.ydd_c00464{bottom:293.970000px;}
.ydb_c00464{bottom:295.470000px;}
.yde_c00464{bottom:295.905000px;}
.yda_c00464{bottom:296.970000px;}
.yd8_c00464{bottom:310.905000px;}
.yd5_c00464{bottom:313.245000px;}
.yd6_c00464{bottom:314.130000px;}
.yd4_c00464{bottom:315.405000px;}
.yd7_c00464{bottom:316.470000px;}
.yd2_c00464{bottom:333.825000px;}
.yd3_c00464{bottom:334.470000px;}
.yd0_c00464{bottom:334.905000px;}
.yd1_c00464{bottom:335.130000px;}
.yce_c00464{bottom:351.405000px;}
.ycc_c00464{bottom:352.245000px;}
.ycf_c00464{bottom:353.325000px;}
.yca_c00464{bottom:353.745000px;}
.ycd_c00464{bottom:354.405000px;}
.ycb_c00464{bottom:355.905000px;}
.yc4_c00464{bottom:370.905000px;}
.yc8_c00464{bottom:371.745000px;}
.yc5_c00464{bottom:373.245000px;}
.yc7_c00464{bottom:373.470000px;}
.yc6_c00464{bottom:373.905000px;}
.yc9_c00464{bottom:374.130000px;}
.yc3_c00464{bottom:376.470000px;}
.yc0_c00464{bottom:392.745000px;}
.yc1_c00464{bottom:393.405000px;}
.yc2_c00464{bottom:394.470000px;}
.ybb_c00464{bottom:412.245000px;}
.ybe_c00464{bottom:412.905000px;}
.ybd_c00464{bottom:413.130000px;}
.ybf_c00464{bottom:413.970000px;}
.ybc_c00464{bottom:414.405000px;}
.yba_c00464{bottom:430.245000px;}
.yb7_c00464{bottom:431.745000px;}
.yb9_c00464{bottom:432.630000px;}
.yb8_c00464{bottom:433.470000px;}
.yb6_c00464{bottom:433.905000px;}
.yb5_c00464{bottom:448.905000px;}
.yb1_c00464{bottom:450.405000px;}
.yb4_c00464{bottom:450.825000px;}
.yb2_c00464{bottom:451.245000px;}
.yb3_c00464{bottom:451.905000px;}
.yb0_c00464{bottom:452.325000px;}
.yaf_c00464{bottom:453.405000px;}
.yae_c00464{bottom:468.405000px;}
.yad_c00464{bottom:469.680000px;}
.yab_c00464{bottom:470.745000px;}
.yac_c00464{bottom:471.825000px;}
.yaa_c00464{bottom:472.905000px;}
.ya8_c00464{bottom:490.245000px;}
.ya7_c00464{bottom:491.745000px;}
.ya9_c00464{bottom:492.405000px;}
.ya6_c00464{bottom:492.630000px;}
.ya4_c00464{bottom:509.745000px;}
.ya3_c00464{bottom:511.245000px;}
.ya5_c00464{bottom:511.905000px;}
.ya2_c00464{bottom:512.130000px;}
.ya1_c00464{bottom:513.405000px;}
.ya0_c00464{bottom:528.180000px;}
.y9e_c00464{bottom:529.245000px;}
.y9b_c00464{bottom:530.745000px;}
.y9d_c00464{bottom:531.405000px;}
.y9f_c00464{bottom:532.470000px;}
.y9c_c00464{bottom:532.905000px;}
.y99_c00464{bottom:550.245000px;}
.y9a_c00464{bottom:550.905000px;}
.y98_c00464{bottom:551.970000px;}
.y96_c00464{bottom:552.405000px;}
.y97_c00464{bottom:552.630000px;}
.y94_c00464{bottom:567.405000px;}
.y93_c00464{bottom:568.245000px;}
.y8f_c00464{bottom:569.745000px;}
.y92_c00464{bottom:570.630000px;}
.y95_c00464{bottom:571.470000px;}
.y91_c00464{bottom:571.905000px;}
.y90_c00464{bottom:572.130000px;}
.y8b_c00464{bottom:588.405000px;}
.y8e_c00464{bottom:589.245000px;}
.y8d_c00464{bottom:590.325000px;}
.y89_c00464{bottom:591.405000px;}
.y8c_c00464{bottom:591.630000px;}
.y8a_c00464{bottom:592.470000px;}
.y86_c00464{bottom:607.905000px;}
.y88_c00464{bottom:609.825000px;}
.y83_c00464{bottom:610.245000px;}
.y84_c00464{bottom:610.905000px;}
.y87_c00464{bottom:611.130000px;}
.y85_c00464{bottom:611.970000px;}
.y80_c00464{bottom:628.245000px;}
.y7f_c00464{bottom:629.745000px;}
.y81_c00464{bottom:630.405000px;}
.y7e_c00464{bottom:630.630000px;}
.y82_c00464{bottom:630.825000px;}
.y7c_c00464{bottom:631.470000px;}
.y7d_c00464{bottom:631.905000px;}
.y7a_c00464{bottom:646.905000px;}
.y78_c00464{bottom:648.180000px;}
.y79_c00464{bottom:649.245000px;}
.y7b_c00464{bottom:650.970000px;}
.y77_c00464{bottom:651.405000px;}
.y74_c00464{bottom:667.905000px;}
.y76_c00464{bottom:668.745000px;}
.y75_c00464{bottom:670.905000px;}
.y6f_c00464{bottom:687.405000px;}
.y70_c00464{bottom:688.245000px;}
.y73_c00464{bottom:689.970000px;}
.y72_c00464{bottom:690.405000px;}
.y71_c00464{bottom:691.470000px;}
.y6d_c00464{bottom:707.745000px;}
.y6e_c00464{bottom:708.630000px;}
.y6a_c00464{bottom:709.470000px;}
.y6c_c00464{bottom:709.905000px;}
.y6b_c00464{bottom:710.970000px;}
.y68_c00464{bottom:726.825000px;}
.y64_c00464{bottom:727.245000px;}
.y67_c00464{bottom:728.130000px;}
.y66_c00464{bottom:728.325000px;}
.y63_c00464{bottom:728.970000px;}
.y65_c00464{bottom:729.405000px;}
.y69_c00464{bottom:730.470000px;}
.y60_c00464{bottom:746.325000px;}
.y5e_c00464{bottom:748.245000px;}
.y61_c00464{bottom:748.470000px;}
.y62_c00464{bottom:748.905000px;}
.y5f_c00464{bottom:749.970000px;}
.y5d_c00464{bottom:750.405000px;}
.y5c_c00464{bottom:767.745000px;}
.y5b_c00464{bottom:769.905000px;}
.y57_c00464{bottom:785.970000px;}
.y5a_c00464{bottom:787.905000px;}
.y58_c00464{bottom:788.130000px;}
.y59_c00464{bottom:788.970000px;}
.y56_c00464{bottom:789.405000px;}
.y53_c00464{bottom:805.245000px;}
.y55_c00464{bottom:806.325000px;}
.y51_c00464{bottom:806.745000px;}
.y50_c00464{bottom:807.405000px;}
.y54_c00464{bottom:807.630000px;}
.y52_c00464{bottom:808.905000px;}
.y4c_c00464{bottom:824.745000px;}
.y4f_c00464{bottom:825.825000px;}
.y4a_c00464{bottom:826.245000px;}
.y4d_c00464{bottom:826.905000px;}
.y4e_c00464{bottom:827.130000px;}
.y49_c00464{bottom:827.325000px;}
.y4b_c00464{bottom:827.970000px;}
.y48_c00464{bottom:828.405000px;}
.y47_c00464{bottom:844.470000px;}
.y45_c00464{bottom:845.745000px;}
.y46_c00464{bottom:846.630000px;}
.y44_c00464{bottom:847.470000px;}
.y43_c00464{bottom:847.905000px;}
.y3d_c00464{bottom:865.245000px;}
.y41_c00464{bottom:866.130000px;}
.y3f_c00464{bottom:866.325000px;}
.y3e_c00464{bottom:866.970000px;}
.y40_c00464{bottom:867.405000px;}
.y42_c00464{bottom:867.630000px;}
.y3b_c00464{bottom:884.745000px;}
.y3c_c00464{bottom:885.630000px;}
.y38_c00464{bottom:885.825000px;}
.y37_c00464{bottom:886.470000px;}
.y3a_c00464{bottom:886.905000px;}
.y39_c00464{bottom:887.970000px;}
.y32_c00464{bottom:902.970000px;}
.y34_c00464{bottom:904.245000px;}
.y35_c00464{bottom:905.130000px;}
.y33_c00464{bottom:905.970000px;}
.y31_c00464{bottom:906.405000px;}
.y30_c00464{bottom:906.630000px;}
.y36_c00464{bottom:907.470000px;}
.y2d_c00464{bottom:923.745000px;}
.y2f_c00464{bottom:924.630000px;}
.y2e_c00464{bottom:925.905000px;}
.y2c_c00464{bottom:926.970000px;}
.y27_c00464{bottom:943.245000px;}
.y2a_c00464{bottom:944.130000px;}
.y2b_c00464{bottom:944.325000px;}
.y28_c00464{bottom:945.405000px;}
.y26_c00464{bottom:945.630000px;}
.y29_c00464{bottom:946.905000px;}
.y25_c00464{bottom:962.745000px;}
.y21_c00464{bottom:963.825000px;}
.y20_c00464{bottom:964.245000px;}
.y24_c00464{bottom:964.905000px;}
.y22_c00464{bottom:965.130000px;}
.y23_c00464{bottom:965.970000px;}
.y1f_c00464{bottom:981.405000px;}
.y1e_c00464{bottom:982.245000px;}
.y1c_c00464{bottom:983.325000px;}
.y19_c00464{bottom:983.745000px;}
.y1b_c00464{bottom:984.405000px;}
.y1d_c00464{bottom:984.630000px;}
.y1a_c00464{bottom:985.470000px;}
.y15_c00464{bottom:1001.745000px;}
.y16_c00464{bottom:1002.825000px;}
.y17_c00464{bottom:1003.905000px;}
.y18_c00464{bottom:1004.130000px;}
.y14_c00464{bottom:1004.970000px;}
.y13_c00464{bottom:1021.245000px;}
.y11_c00464{bottom:1022.325000px;}
.yf_c00464{bottom:1023.405000px;}
.y12_c00464{bottom:1023.630000px;}
.y10_c00464{bottom:1024.470000px;}
.y9_c00464{bottom:1040.745000px;}
.ye_c00464{bottom:1041.825000px;}
.y8_c00464{bottom:1042.245000px;}
.yd_c00464{bottom:1042.905000px;}
.yc_c00464{bottom:1043.130000px;}
.ya_c00464{bottom:1043.325000px;}
.yb_c00464{bottom:1043.970000px;}
.y7_c00464{bottom:1044.405000px;}
.y6_c00464{bottom:1060.470000px;}
.y4_c00464{bottom:1061.745000px;}
.y3_c00464{bottom:1062.630000px;}
.y5_c00464{bottom:1063.905000px;}
.y2_c00464{bottom:1099.905000px;}
.y1_c00464{bottom:1103.130000px;}
.h1_c00464{height:23.025234px;}
.h4_c00464{height:31.364502px;}
.h2_c00464{height:35.571035px;}
.h5_c00464{height:39.777568px;}
.h3_c00464{height:43.910303px;}
.h6_c00464{height:48.116836px;}
.h0_c00464{height:1335.000000px;}
.w0_c00464{width:880.500000px;}
.x0_c00464{left:0.000000px;}
.x3_c00464{left:151.500000px;}
.xa9_c00464{left:153.000000px;}
.x107_c00464{left:154.920000px;}
.xa3_c00464{left:168.000000px;}
.x103_c00464{left:169.500000px;}
.xb0_c00464{left:171.420000px;}
.xfa_c00464{left:175.500000px;}
.x6a_c00464{left:177.000000px;}
.x2a_c00464{left:178.920000px;}
.x81_c00464{left:180.420000px;}
.x11b_c00464{left:181.500000px;}
.x4_c00464{left:183.000000px;}
.xe1_c00464{left:186.000000px;}
.x4e_c00464{left:187.500000px;}
.xce_c00464{left:188.580000px;}
.x9c_c00464{left:190.080000px;}
.x1e_c00464{left:191.580000px;}
.x55_c00464{left:193.920000px;}
.x116_c00464{left:197.580000px;}
.x5e_c00464{left:199.080000px;}
.xf5_c00464{left:200.580000px;}
.x8a_c00464{left:204.000000px;}
.x35_c00464{left:205.500000px;}
.xc6_c00464{left:208.080000px;}
.xb9_c00464{left:211.920000px;}
.x111_c00464{left:213.000000px;}
.x6b_c00464{left:215.580000px;}
.x5f_c00464{left:217.920000px;}
.x2b_c00464{left:220.500000px;}
.x117_c00464{left:222.000000px;}
.x1f_c00464{left:223.500000px;}
.x13_c00464{left:226.080000px;}
.xaa_c00464{left:227.580000px;}
.x14_c00464{left:229.080000px;}
.x82_c00464{left:230.580000px;}
.x5_c00464{left:232.500000px;}
.x36_c00464{left:234.000000px;}
.xd1_c00464{left:236.580000px;}
.xba_c00464{left:240.000000px;}
.x6c_c00464{left:242.580000px;}
.x60_c00464{left:244.920000px;}
.x77_c00464{left:246.000000px;}
.xe6_c00464{left:249.000000px;}
.xea_c00464{left:250.920000px;}
.x6_c00464{left:252.000000px;}
.x4f_c00464{left:255.000000px;}
.x2c_c00464{left:256.080000px;}
.x9d_c00464{left:258.000000px;}
.xb1_c00464{left:259.500000px;}
.xc7_c00464{left:261.645000px;}
.xd8_c00464{left:262.920000px;}
.x6d_c00464{left:264.000000px;}
.x7_c00464{left:265.920000px;}
.x10f_c00464{left:267.000000px;}
.x43_c00464{left:268.500000px;}
.x78_c00464{left:269.580000px;}
.x10b_c00464{left:271.920000px;}
.x8b_c00464{left:273.420000px;}
.x2d_c00464{left:274.920000px;}
.xd2_c00464{left:276.420000px;}
.x112_c00464{left:277.500000px;}
.x61_c00464{left:278.580000px;}
.x118_c00464{left:280.500000px;}
.x95_c00464{left:283.500000px;}
.x37_c00464{left:285.420000px;}
.xab_c00464{left:286.500000px;}
.x44_c00464{left:288.000000px;}
.x56_c00464{left:291.000000px;}
.xf6_c00464{left:292.275000px;}
.xbb_c00464{left:293.580000px;}
.xfb_c00464{left:297.420000px;}
.x79_c00464{left:300.000000px;}
.x10c_c00464{left:301.500000px;}
.x15_c00464{left:303.420000px;}
.xed_c00464{left:304.500000px;}
.x8_c00464{left:306.000000px;}
.xd3_c00464{left:307.500000px;}
.x45_c00464{left:309.000000px;}
.xd9_c00464{left:310.080000px;}
.x6e_c00464{left:314.580000px;}
.xc8_c00464{left:317.580000px;}
.xa4_c00464{left:321.000000px;}
.xb2_c00464{left:322.500000px;}
.xbc_c00464{left:325.500000px;}
.x38_c00464{left:327.000000px;}
.x83_c00464{left:328.500000px;}
.x20_c00464{left:330.000000px;}
.xd4_c00464{left:333.420000px;}
.x57_c00464{left:334.500000px;}
.xf7_c00464{left:336.645000px;}
.xfc_c00464{left:338.145000px;}
.x9_c00464{left:340.080000px;}
.x84_c00464{left:343.080000px;}
.xfe_c00464{left:346.080000px;}
.xc2_c00464{left:348.000000px;}
.x21_c00464{left:349.500000px;}
.xc4_c00464{left:350.580000px;}
.x16_c00464{left:352.500000px;}
.x46_c00464{left:355.080000px;}
.x50_c00464{left:356.580000px;}
.x113_c00464{left:358.500000px;}
.x39_c00464{left:359.580000px;}
.xd5_c00464{left:361.920000px;}
.x58_c00464{left:364.500000px;}
.x2e_c00464{left:366.000000px;}
.x6f_c00464{left:367.500000px;}
.x62_c00464{left:369.000000px;}
.x11c_c00464{left:370.920000px;}
.x47_c00464{left:373.500000px;}
.xa_c00464{left:375.420000px;}
.xb3_c00464{left:378.000000px;}
.x3a_c00464{left:379.500000px;}
.xcf_c00464{left:381.420000px;}
.xa5_c00464{left:382.500000px;}
.xee_c00464{left:386.145000px;}
.x22_c00464{left:388.920000px;}
.x48_c00464{left:390.000000px;}
.x63_c00464{left:391.920000px;}
.xe2_c00464{left:394.920000px;}
.x2f_c00464{left:397.080000px;}
.x51_c00464{left:398.580000px;}
.x110_c00464{left:400.500000px;}
.x70_c00464{left:402.420000px;}
.x1_c00464{left:406.500000px;}
.x17_c00464{left:408.420000px;}
.xb_c00464{left:409.500000px;}
.x8c_c00464{left:410.580000px;}
.xef_c00464{left:412.920000px;}
.x96_c00464{left:414.420000px;}
.xff_c00464{left:415.500000px;}
.x64_c00464{left:418.500000px;}
.x7a_c00464{left:420.000000px;}
.xac_c00464{left:422.580000px;}
.x119_c00464{left:424.080000px;}
.x49_c00464{left:427.920000px;}
.x59_c00464{left:429.000000px;}
.x11d_c00464{left:430.080000px;}
.xd6_c00464{left:433.500000px;}
.xda_c00464{left:435.000000px;}
.x85_c00464{left:437.580000px;}
.x23_c00464{left:439.920000px;}
.x9e_c00464{left:441.000000px;}
.xad_c00464{left:442.500000px;}
.x3b_c00464{left:443.580000px;}
.x18_c00464{left:445.080000px;}
.xc_c00464{left:447.420000px;}
.xde_c00464{left:448.500000px;}
.x52_c00464{left:450.000000px;}
.x97_c00464{left:453.000000px;}
.x8d_c00464{left:456.420000px;}
.xb4_c00464{left:457.500000px;}
.xe7_c00464{left:458.580000px;}
.x3c_c00464{left:462.000000px;}
.x65_c00464{left:464.580000px;}
.x9f_c00464{left:466.500000px;}
.xbd_c00464{left:468.000000px;}
.x71_c00464{left:471.000000px;}
.xdb_c00464{left:474.000000px;}
.x3d_c00464{left:475.920000px;}
.x30_c00464{left:477.000000px;}
.xeb_c00464{left:478.080000px;}
.xf0_c00464{left:481.080000px;}
.x86_c00464{left:484.080000px;}
.xd_c00464{left:485.580000px;}
.xbe_c00464{left:487.080000px;}
.x11e_c00464{left:489.420000px;}
.x100_c00464{left:490.500000px;}
.xf8_c00464{left:491.775000px;}
.xd7_c00464{left:493.500000px;}
.x98_c00464{left:494.580000px;}
.x114_c00464{left:496.080000px;}
.xae_c00464{left:498.420000px;}
.x4a_c00464{left:499.920000px;}
.x8e_c00464{left:501.000000px;}
.xf1_c00464{left:502.500000px;}
.x7b_c00464{left:504.000000px;}
.x24_c00464{left:505.080000px;}
.xe3_c00464{left:507.645000px;}
.xa6_c00464{left:511.500000px;}
.x87_c00464{left:513.000000px;}
.x31_c00464{left:514.500000px;}
.x66_c00464{left:519.420000px;}
.x3e_c00464{left:521.580000px;}
.xf2_c00464{left:523.500000px;}
.x25_c00464{left:525.420000px;}
.xdc_c00464{left:527.580000px;}
.x72_c00464{left:531.000000px;}
.xc9_c00464{left:533.580000px;}
.x4b_c00464{left:535.080000px;}
.xf9_c00464{left:536.145000px;}
.xe4_c00464{left:538.920000px;}
.x5a_c00464{left:540.000000px;}
.x7c_c00464{left:541.500000px;}
.xe8_c00464{left:543.000000px;}
.x8f_c00464{left:544.500000px;}
.x67_c00464{left:546.000000px;}
.xc3_c00464{left:547.500000px;}
.x19_c00464{left:549.000000px;}
.xe_c00464{left:551.580000px;}
.xca_c00464{left:555.420000px;}
.x7d_c00464{left:556.500000px;}
.x26_c00464{left:558.000000px;}
.x108_c00464{left:559.080000px;}
.x90_c00464{left:561.000000px;}
.x99_c00464{left:562.500000px;}
.x73_c00464{left:563.580000px;}
.xb5_c00464{left:565.500000px;}
.x1a_c00464{left:567.000000px;}
.xf3_c00464{left:568.080000px;}
.xbf_c00464{left:571.500000px;}
.xaf_c00464{left:573.000000px;}
.x3f_c00464{left:574.500000px;}
.x11a_c00464{left:575.580000px;}
.x32_c00464{left:577.500000px;}
.x104_c00464{left:580.920000px;}
.xf_c00464{left:583.500000px;}
.xcb_c00464{left:586.920000px;}
.x4c_c00464{left:588.000000px;}
.x27_c00464{left:589.500000px;}
.x91_c00464{left:591.000000px;}
.x74_c00464{left:592.500000px;}
.x101_c00464{left:593.580000px;}
.xdf_c00464{left:595.920000px;}
.xa0_c00464{left:597.420000px;}
.x1b_c00464{left:599.580000px;}
.xa7_c00464{left:601.920000px;}
.x109_c00464{left:603.000000px;}
.x40_c00464{left:604.920000px;}
.xc0_c00464{left:607.500000px;}
.x33_c00464{left:609.000000px;}
.x7e_c00464{left:610.080000px;}
.x28_c00464{left:616.920000px;}
.x5b_c00464{left:618.000000px;}
.x88_c00464{left:622.500000px;}
.xc5_c00464{left:623.580000px;}
.x9a_c00464{left:625.080000px;}
.x10_c00464{left:629.580000px;}
.x68_c00464{left:631.920000px;}
.xa1_c00464{left:634.500000px;}
.x92_c00464{left:637.500000px;}
.x105_c00464{left:639.420000px;}
.x89_c00464{left:640.500000px;}
.xdd_c00464{left:642.420000px;}
.xb6_c00464{left:643.920000px;}
.x53_c00464{left:645.000000px;}
.x10a_c00464{left:646.500000px;}
.x115_c00464{left:648.000000px;}
.x11_c00464{left:649.920000px;}
.xe5_c00464{left:651.000000px;}
.xfd_c00464{left:652.080000px;}
.x1c_c00464{left:654.420000px;}
.x7f_c00464{left:655.920000px;}
.xcc_c00464{left:658.500000px;}
.x75_c00464{left:660.000000px;}
.x41_c00464{left:662.580000px;}
.x93_c00464{left:664.080000px;}
.x4d_c00464{left:666.000000px;}
.xe9_c00464{left:669.420000px;}
.xb7_c00464{left:670.500000px;}
.xe0_c00464{left:672.000000px;}
.x34_c00464{left:675.000000px;}
.x76_c00464{left:676.500000px;}
.x12_c00464{left:678.000000px;}
.xc1_c00464{left:679.500000px;}
.x29_c00464{left:680.580000px;}
.xa8_c00464{left:683.580000px;}
.x10d_c00464{left:685.500000px;}
.x54_c00464{left:687.000000px;}
.x5c_c00464{left:688.500000px;}
.x9b_c00464{left:689.580000px;}
.xa2_c00464{left:691.920000px;}
.x94_c00464{left:693.000000px;}
.x1d_c00464{left:694.500000px;}
.x102_c00464{left:696.420000px;}
.xcd_c00464{left:697.500000px;}
.x80_c00464{left:699.420000px;}
.x42_c00464{left:703.080000px;}
.x2_c00464{left:705.000000px;}
.x69_c00464{left:706.500000px;}
.xd0_c00464{left:708.420000px;}
.x10e_c00464{left:709.920000px;}
.xf4_c00464{left:713.145000px;}
.x106_c00464{left:715.080000px;}
.xb8_c00464{left:716.580000px;}
.xec_c00464{left:720.000000px;}
.x5d_c00464{left:721.500000px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.ls0_c00464{letter-spacing:0.000000pt;}
.ws0_c00464{word-spacing:-4.026738pt;}
.ws1_c00464{word-spacing:0.000000pt;}
.fs0_c00464{font-size:16.640000pt;}
.fs3_c00464{font-size:22.666667pt;}
.fs1_c00464{font-size:25.706667pt;}
.fs4_c00464{font-size:28.746667pt;}
.fs2_c00464{font-size:31.733333pt;}
.fs5_c00464{font-size:34.773333pt;}
.y0_c00464{bottom:0.000000pt;}
.ye6_c00464{bottom:226.440000pt;}
.ye7_c00464{bottom:227.026667pt;}
.ye5_c00464{bottom:227.226667pt;}
.ye4_c00464{bottom:228.360000pt;}
.ydf_c00464{bottom:243.026667pt;}
.ye3_c00464{bottom:243.773333pt;}
.ye1_c00464{bottom:244.560000pt;}
.ye0_c00464{bottom:245.306667pt;}
.ye2_c00464{bottom:245.693333pt;}
.ydc_c00464{bottom:260.360000pt;}
.yd9_c00464{bottom:261.106667pt;}
.ydd_c00464{bottom:261.306667pt;}
.ydb_c00464{bottom:262.640000pt;}
.yde_c00464{bottom:263.026667pt;}
.yda_c00464{bottom:263.973333pt;}
.yd8_c00464{bottom:276.360000pt;}
.yd5_c00464{bottom:278.440000pt;}
.yd6_c00464{bottom:279.226667pt;}
.yd4_c00464{bottom:280.360000pt;}
.yd7_c00464{bottom:281.306667pt;}
.yd2_c00464{bottom:296.733333pt;}
.yd3_c00464{bottom:297.306667pt;}
.yd0_c00464{bottom:297.693333pt;}
.yd1_c00464{bottom:297.893333pt;}
.yce_c00464{bottom:312.360000pt;}
.ycc_c00464{bottom:313.106667pt;}
.ycf_c00464{bottom:314.066667pt;}
.yca_c00464{bottom:314.440000pt;}
.ycd_c00464{bottom:315.026667pt;}
.ycb_c00464{bottom:316.360000pt;}
.yc4_c00464{bottom:329.693333pt;}
.yc8_c00464{bottom:330.440000pt;}
.yc5_c00464{bottom:331.773333pt;}
.yc7_c00464{bottom:331.973333pt;}
.yc6_c00464{bottom:332.360000pt;}
.yc9_c00464{bottom:332.560000pt;}
.yc3_c00464{bottom:334.640000pt;}
.yc0_c00464{bottom:349.106667pt;}
.yc1_c00464{bottom:349.693333pt;}
.yc2_c00464{bottom:350.640000pt;}
.ybb_c00464{bottom:366.440000pt;}
.ybe_c00464{bottom:367.026667pt;}
.ybd_c00464{bottom:367.226667pt;}
.ybf_c00464{bottom:367.973333pt;}
.ybc_c00464{bottom:368.360000pt;}
.yba_c00464{bottom:382.440000pt;}
.yb7_c00464{bottom:383.773333pt;}
.yb9_c00464{bottom:384.560000pt;}
.yb8_c00464{bottom:385.306667pt;}
.yb6_c00464{bottom:385.693333pt;}
.yb5_c00464{bottom:399.026667pt;}
.yb1_c00464{bottom:400.360000pt;}
.yb4_c00464{bottom:400.733333pt;}
.yb2_c00464{bottom:401.106667pt;}
.yb3_c00464{bottom:401.693333pt;}
.yb0_c00464{bottom:402.066667pt;}
.yaf_c00464{bottom:403.026667pt;}
.yae_c00464{bottom:416.360000pt;}
.yad_c00464{bottom:417.493333pt;}
.yab_c00464{bottom:418.440000pt;}
.yac_c00464{bottom:419.400000pt;}
.yaa_c00464{bottom:420.360000pt;}
.ya8_c00464{bottom:435.773333pt;}
.ya7_c00464{bottom:437.106667pt;}
.ya9_c00464{bottom:437.693333pt;}
.ya6_c00464{bottom:437.893333pt;}
.ya4_c00464{bottom:453.106667pt;}
.ya3_c00464{bottom:454.440000pt;}
.ya5_c00464{bottom:455.026667pt;}
.ya2_c00464{bottom:455.226667pt;}
.ya1_c00464{bottom:456.360000pt;}
.ya0_c00464{bottom:469.493333pt;}
.y9e_c00464{bottom:470.440000pt;}
.y9b_c00464{bottom:471.773333pt;}
.y9d_c00464{bottom:472.360000pt;}
.y9f_c00464{bottom:473.306667pt;}
.y9c_c00464{bottom:473.693333pt;}
.y99_c00464{bottom:489.106667pt;}
.y9a_c00464{bottom:489.693333pt;}
.y98_c00464{bottom:490.640000pt;}
.y96_c00464{bottom:491.026667pt;}
.y97_c00464{bottom:491.226667pt;}
.y94_c00464{bottom:504.360000pt;}
.y93_c00464{bottom:505.106667pt;}
.y8f_c00464{bottom:506.440000pt;}
.y92_c00464{bottom:507.226667pt;}
.y95_c00464{bottom:507.973333pt;}
.y91_c00464{bottom:508.360000pt;}
.y90_c00464{bottom:508.560000pt;}
.y8b_c00464{bottom:523.026667pt;}
.y8e_c00464{bottom:523.773333pt;}
.y8d_c00464{bottom:524.733333pt;}
.y89_c00464{bottom:525.693333pt;}
.y8c_c00464{bottom:525.893333pt;}
.y8a_c00464{bottom:526.640000pt;}
.y86_c00464{bottom:540.360000pt;}
.y88_c00464{bottom:542.066667pt;}
.y83_c00464{bottom:542.440000pt;}
.y84_c00464{bottom:543.026667pt;}
.y87_c00464{bottom:543.226667pt;}
.y85_c00464{bottom:543.973333pt;}
.y80_c00464{bottom:558.440000pt;}
.y7f_c00464{bottom:559.773333pt;}
.y81_c00464{bottom:560.360000pt;}
.y7e_c00464{bottom:560.560000pt;}
.y82_c00464{bottom:560.733333pt;}
.y7c_c00464{bottom:561.306667pt;}
.y7d_c00464{bottom:561.693333pt;}
.y7a_c00464{bottom:575.026667pt;}
.y78_c00464{bottom:576.160000pt;}
.y79_c00464{bottom:577.106667pt;}
.y7b_c00464{bottom:578.640000pt;}
.y77_c00464{bottom:579.026667pt;}
.y74_c00464{bottom:593.693333pt;}
.y76_c00464{bottom:594.440000pt;}
.y75_c00464{bottom:596.360000pt;}
.y6f_c00464{bottom:611.026667pt;}
.y70_c00464{bottom:611.773333pt;}
.y73_c00464{bottom:613.306667pt;}
.y72_c00464{bottom:613.693333pt;}
.y71_c00464{bottom:614.640000pt;}
.y6d_c00464{bottom:629.106667pt;}
.y6e_c00464{bottom:629.893333pt;}
.y6a_c00464{bottom:630.640000pt;}
.y6c_c00464{bottom:631.026667pt;}
.y6b_c00464{bottom:631.973333pt;}
.y68_c00464{bottom:646.066667pt;}
.y64_c00464{bottom:646.440000pt;}
.y67_c00464{bottom:647.226667pt;}
.y66_c00464{bottom:647.400000pt;}
.y63_c00464{bottom:647.973333pt;}
.y65_c00464{bottom:648.360000pt;}
.y69_c00464{bottom:649.306667pt;}
.y60_c00464{bottom:663.400000pt;}
.y5e_c00464{bottom:665.106667pt;}
.y61_c00464{bottom:665.306667pt;}
.y62_c00464{bottom:665.693333pt;}
.y5f_c00464{bottom:666.640000pt;}
.y5d_c00464{bottom:667.026667pt;}
.y5c_c00464{bottom:682.440000pt;}
.y5b_c00464{bottom:684.360000pt;}
.y57_c00464{bottom:698.640000pt;}
.y5a_c00464{bottom:700.360000pt;}
.y58_c00464{bottom:700.560000pt;}
.y59_c00464{bottom:701.306667pt;}
.y56_c00464{bottom:701.693333pt;}
.y53_c00464{bottom:715.773333pt;}
.y55_c00464{bottom:716.733333pt;}
.y51_c00464{bottom:717.106667pt;}
.y50_c00464{bottom:717.693333pt;}
.y54_c00464{bottom:717.893333pt;}
.y52_c00464{bottom:719.026667pt;}
.y4c_c00464{bottom:733.106667pt;}
.y4f_c00464{bottom:734.066667pt;}
.y4a_c00464{bottom:734.440000pt;}
.y4d_c00464{bottom:735.026667pt;}
.y4e_c00464{bottom:735.226667pt;}
.y49_c00464{bottom:735.400000pt;}
.y4b_c00464{bottom:735.973333pt;}
.y48_c00464{bottom:736.360000pt;}
.y47_c00464{bottom:750.640000pt;}
.y45_c00464{bottom:751.773333pt;}
.y46_c00464{bottom:752.560000pt;}
.y44_c00464{bottom:753.306667pt;}
.y43_c00464{bottom:753.693333pt;}
.y3d_c00464{bottom:769.106667pt;}
.y41_c00464{bottom:769.893333pt;}
.y3f_c00464{bottom:770.066667pt;}
.y3e_c00464{bottom:770.640000pt;}
.y40_c00464{bottom:771.026667pt;}
.y42_c00464{bottom:771.226667pt;}
.y3b_c00464{bottom:786.440000pt;}
.y3c_c00464{bottom:787.226667pt;}
.y38_c00464{bottom:787.400000pt;}
.y37_c00464{bottom:787.973333pt;}
.y3a_c00464{bottom:788.360000pt;}
.y39_c00464{bottom:789.306667pt;}
.y32_c00464{bottom:802.640000pt;}
.y34_c00464{bottom:803.773333pt;}
.y35_c00464{bottom:804.560000pt;}
.y33_c00464{bottom:805.306667pt;}
.y31_c00464{bottom:805.693333pt;}
.y30_c00464{bottom:805.893333pt;}
.y36_c00464{bottom:806.640000pt;}
.y2d_c00464{bottom:821.106667pt;}
.y2f_c00464{bottom:821.893333pt;}
.y2e_c00464{bottom:823.026667pt;}
.y2c_c00464{bottom:823.973333pt;}
.y27_c00464{bottom:838.440000pt;}
.y2a_c00464{bottom:839.226667pt;}
.y2b_c00464{bottom:839.400000pt;}
.y28_c00464{bottom:840.360000pt;}
.y26_c00464{bottom:840.560000pt;}
.y29_c00464{bottom:841.693333pt;}
.y25_c00464{bottom:855.773333pt;}
.y21_c00464{bottom:856.733333pt;}
.y20_c00464{bottom:857.106667pt;}
.y24_c00464{bottom:857.693333pt;}
.y22_c00464{bottom:857.893333pt;}
.y23_c00464{bottom:858.640000pt;}
.y1f_c00464{bottom:872.360000pt;}
.y1e_c00464{bottom:873.106667pt;}
.y1c_c00464{bottom:874.066667pt;}
.y19_c00464{bottom:874.440000pt;}
.y1b_c00464{bottom:875.026667pt;}
.y1d_c00464{bottom:875.226667pt;}
.y1a_c00464{bottom:875.973333pt;}
.y15_c00464{bottom:890.440000pt;}
.y16_c00464{bottom:891.400000pt;}
.y17_c00464{bottom:892.360000pt;}
.y18_c00464{bottom:892.560000pt;}
.y14_c00464{bottom:893.306667pt;}
.y13_c00464{bottom:907.773333pt;}
.y11_c00464{bottom:908.733333pt;}
.yf_c00464{bottom:909.693333pt;}
.y12_c00464{bottom:909.893333pt;}
.y10_c00464{bottom:910.640000pt;}
.y9_c00464{bottom:925.106667pt;}
.ye_c00464{bottom:926.066667pt;}
.y8_c00464{bottom:926.440000pt;}
.yd_c00464{bottom:927.026667pt;}
.yc_c00464{bottom:927.226667pt;}
.ya_c00464{bottom:927.400000pt;}
.yb_c00464{bottom:927.973333pt;}
.y7_c00464{bottom:928.360000pt;}
.y6_c00464{bottom:942.640000pt;}
.y4_c00464{bottom:943.773333pt;}
.y3_c00464{bottom:944.560000pt;}
.y5_c00464{bottom:945.693333pt;}
.y2_c00464{bottom:977.693333pt;}
.y1_c00464{bottom:980.560000pt;}
.h1_c00464{height:20.466875pt;}
.h4_c00464{height:27.879557pt;}
.h2_c00464{height:31.618698pt;}
.h5_c00464{height:35.357839pt;}
.h3_c00464{height:39.031380pt;}
.h6_c00464{height:42.770521pt;}
.h0_c00464{height:1186.666667pt;}
.w0_c00464{width:782.666667pt;}
.x0_c00464{left:0.000000pt;}
.x3_c00464{left:134.666667pt;}
.xa9_c00464{left:136.000000pt;}
.x107_c00464{left:137.706667pt;}
.xa3_c00464{left:149.333333pt;}
.x103_c00464{left:150.666667pt;}
.xb0_c00464{left:152.373333pt;}
.xfa_c00464{left:156.000000pt;}
.x6a_c00464{left:157.333333pt;}
.x2a_c00464{left:159.040000pt;}
.x81_c00464{left:160.373333pt;}
.x11b_c00464{left:161.333333pt;}
.x4_c00464{left:162.666667pt;}
.xe1_c00464{left:165.333333pt;}
.x4e_c00464{left:166.666667pt;}
.xce_c00464{left:167.626667pt;}
.x9c_c00464{left:168.960000pt;}
.x1e_c00464{left:170.293333pt;}
.x55_c00464{left:172.373333pt;}
.x116_c00464{left:175.626667pt;}
.x5e_c00464{left:176.960000pt;}
.xf5_c00464{left:178.293333pt;}
.x8a_c00464{left:181.333333pt;}
.x35_c00464{left:182.666667pt;}
.xc6_c00464{left:184.960000pt;}
.xb9_c00464{left:188.373333pt;}
.x111_c00464{left:189.333333pt;}
.x6b_c00464{left:191.626667pt;}
.x5f_c00464{left:193.706667pt;}
.x2b_c00464{left:196.000000pt;}
.x117_c00464{left:197.333333pt;}
.x1f_c00464{left:198.666667pt;}
.x13_c00464{left:200.960000pt;}
.xaa_c00464{left:202.293333pt;}
.x14_c00464{left:203.626667pt;}
.x82_c00464{left:204.960000pt;}
.x5_c00464{left:206.666667pt;}
.x36_c00464{left:208.000000pt;}
.xd1_c00464{left:210.293333pt;}
.xba_c00464{left:213.333333pt;}
.x6c_c00464{left:215.626667pt;}
.x60_c00464{left:217.706667pt;}
.x77_c00464{left:218.666667pt;}
.xe6_c00464{left:221.333333pt;}
.xea_c00464{left:223.040000pt;}
.x6_c00464{left:224.000000pt;}
.x4f_c00464{left:226.666667pt;}
.x2c_c00464{left:227.626667pt;}
.x9d_c00464{left:229.333333pt;}
.xb1_c00464{left:230.666667pt;}
.xc7_c00464{left:232.573333pt;}
.xd8_c00464{left:233.706667pt;}
.x6d_c00464{left:234.666667pt;}
.x7_c00464{left:236.373333pt;}
.x10f_c00464{left:237.333333pt;}
.x43_c00464{left:238.666667pt;}
.x78_c00464{left:239.626667pt;}
.x10b_c00464{left:241.706667pt;}
.x8b_c00464{left:243.040000pt;}
.x2d_c00464{left:244.373333pt;}
.xd2_c00464{left:245.706667pt;}
.x112_c00464{left:246.666667pt;}
.x61_c00464{left:247.626667pt;}
.x118_c00464{left:249.333333pt;}
.x95_c00464{left:252.000000pt;}
.x37_c00464{left:253.706667pt;}
.xab_c00464{left:254.666667pt;}
.x44_c00464{left:256.000000pt;}
.x56_c00464{left:258.666667pt;}
.xf6_c00464{left:259.800000pt;}
.xbb_c00464{left:260.960000pt;}
.xfb_c00464{left:264.373333pt;}
.x79_c00464{left:266.666667pt;}
.x10c_c00464{left:268.000000pt;}
.x15_c00464{left:269.706667pt;}
.xed_c00464{left:270.666667pt;}
.x8_c00464{left:272.000000pt;}
.xd3_c00464{left:273.333333pt;}
.x45_c00464{left:274.666667pt;}
.xd9_c00464{left:275.626667pt;}
.x6e_c00464{left:279.626667pt;}
.xc8_c00464{left:282.293333pt;}
.xa4_c00464{left:285.333333pt;}
.xb2_c00464{left:286.666667pt;}
.xbc_c00464{left:289.333333pt;}
.x38_c00464{left:290.666667pt;}
.x83_c00464{left:292.000000pt;}
.x20_c00464{left:293.333333pt;}
.xd4_c00464{left:296.373333pt;}
.x57_c00464{left:297.333333pt;}
.xf7_c00464{left:299.240000pt;}
.xfc_c00464{left:300.573333pt;}
.x9_c00464{left:302.293333pt;}
.x84_c00464{left:304.960000pt;}
.xfe_c00464{left:307.626667pt;}
.xc2_c00464{left:309.333333pt;}
.x21_c00464{left:310.666667pt;}
.xc4_c00464{left:311.626667pt;}
.x16_c00464{left:313.333333pt;}
.x46_c00464{left:315.626667pt;}
.x50_c00464{left:316.960000pt;}
.x113_c00464{left:318.666667pt;}
.x39_c00464{left:319.626667pt;}
.xd5_c00464{left:321.706667pt;}
.x58_c00464{left:324.000000pt;}
.x2e_c00464{left:325.333333pt;}
.x6f_c00464{left:326.666667pt;}
.x62_c00464{left:328.000000pt;}
.x11c_c00464{left:329.706667pt;}
.x47_c00464{left:332.000000pt;}
.xa_c00464{left:333.706667pt;}
.xb3_c00464{left:336.000000pt;}
.x3a_c00464{left:337.333333pt;}
.xcf_c00464{left:339.040000pt;}
.xa5_c00464{left:340.000000pt;}
.xee_c00464{left:343.240000pt;}
.x22_c00464{left:345.706667pt;}
.x48_c00464{left:346.666667pt;}
.x63_c00464{left:348.373333pt;}
.xe2_c00464{left:351.040000pt;}
.x2f_c00464{left:352.960000pt;}
.x51_c00464{left:354.293333pt;}
.x110_c00464{left:356.000000pt;}
.x70_c00464{left:357.706667pt;}
.x1_c00464{left:361.333333pt;}
.x17_c00464{left:363.040000pt;}
.xb_c00464{left:364.000000pt;}
.x8c_c00464{left:364.960000pt;}
.xef_c00464{left:367.040000pt;}
.x96_c00464{left:368.373333pt;}
.xff_c00464{left:369.333333pt;}
.x64_c00464{left:372.000000pt;}
.x7a_c00464{left:373.333333pt;}
.xac_c00464{left:375.626667pt;}
.x119_c00464{left:376.960000pt;}
.x49_c00464{left:380.373333pt;}
.x59_c00464{left:381.333333pt;}
.x11d_c00464{left:382.293333pt;}
.xd6_c00464{left:385.333333pt;}
.xda_c00464{left:386.666667pt;}
.x85_c00464{left:388.960000pt;}
.x23_c00464{left:391.040000pt;}
.x9e_c00464{left:392.000000pt;}
.xad_c00464{left:393.333333pt;}
.x3b_c00464{left:394.293333pt;}
.x18_c00464{left:395.626667pt;}
.xc_c00464{left:397.706667pt;}
.xde_c00464{left:398.666667pt;}
.x52_c00464{left:400.000000pt;}
.x97_c00464{left:402.666667pt;}
.x8d_c00464{left:405.706667pt;}
.xb4_c00464{left:406.666667pt;}
.xe7_c00464{left:407.626667pt;}
.x3c_c00464{left:410.666667pt;}
.x65_c00464{left:412.960000pt;}
.x9f_c00464{left:414.666667pt;}
.xbd_c00464{left:416.000000pt;}
.x71_c00464{left:418.666667pt;}
.xdb_c00464{left:421.333333pt;}
.x3d_c00464{left:423.040000pt;}
.x30_c00464{left:424.000000pt;}
.xeb_c00464{left:424.960000pt;}
.xf0_c00464{left:427.626667pt;}
.x86_c00464{left:430.293333pt;}
.xd_c00464{left:431.626667pt;}
.xbe_c00464{left:432.960000pt;}
.x11e_c00464{left:435.040000pt;}
.x100_c00464{left:436.000000pt;}
.xf8_c00464{left:437.133333pt;}
.xd7_c00464{left:438.666667pt;}
.x98_c00464{left:439.626667pt;}
.x114_c00464{left:440.960000pt;}
.xae_c00464{left:443.040000pt;}
.x4a_c00464{left:444.373333pt;}
.x8e_c00464{left:445.333333pt;}
.xf1_c00464{left:446.666667pt;}
.x7b_c00464{left:448.000000pt;}
.x24_c00464{left:448.960000pt;}
.xe3_c00464{left:451.240000pt;}
.xa6_c00464{left:454.666667pt;}
.x87_c00464{left:456.000000pt;}
.x31_c00464{left:457.333333pt;}
.x66_c00464{left:461.706667pt;}
.x3e_c00464{left:463.626667pt;}
.xf2_c00464{left:465.333333pt;}
.x25_c00464{left:467.040000pt;}
.xdc_c00464{left:468.960000pt;}
.x72_c00464{left:472.000000pt;}
.xc9_c00464{left:474.293333pt;}
.x4b_c00464{left:475.626667pt;}
.xf9_c00464{left:476.573333pt;}
.xe4_c00464{left:479.040000pt;}
.x5a_c00464{left:480.000000pt;}
.x7c_c00464{left:481.333333pt;}
.xe8_c00464{left:482.666667pt;}
.x8f_c00464{left:484.000000pt;}
.x67_c00464{left:485.333333pt;}
.xc3_c00464{left:486.666667pt;}
.x19_c00464{left:488.000000pt;}
.xe_c00464{left:490.293333pt;}
.xca_c00464{left:493.706667pt;}
.x7d_c00464{left:494.666667pt;}
.x26_c00464{left:496.000000pt;}
.x108_c00464{left:496.960000pt;}
.x90_c00464{left:498.666667pt;}
.x99_c00464{left:500.000000pt;}
.x73_c00464{left:500.960000pt;}
.xb5_c00464{left:502.666667pt;}
.x1a_c00464{left:504.000000pt;}
.xf3_c00464{left:504.960000pt;}
.xbf_c00464{left:508.000000pt;}
.xaf_c00464{left:509.333333pt;}
.x3f_c00464{left:510.666667pt;}
.x11a_c00464{left:511.626667pt;}
.x32_c00464{left:513.333333pt;}
.x104_c00464{left:516.373333pt;}
.xf_c00464{left:518.666667pt;}
.xcb_c00464{left:521.706667pt;}
.x4c_c00464{left:522.666667pt;}
.x27_c00464{left:524.000000pt;}
.x91_c00464{left:525.333333pt;}
.x74_c00464{left:526.666667pt;}
.x101_c00464{left:527.626667pt;}
.xdf_c00464{left:529.706667pt;}
.xa0_c00464{left:531.040000pt;}
.x1b_c00464{left:532.960000pt;}
.xa7_c00464{left:535.040000pt;}
.x109_c00464{left:536.000000pt;}
.x40_c00464{left:537.706667pt;}
.xc0_c00464{left:540.000000pt;}
.x33_c00464{left:541.333333pt;}
.x7e_c00464{left:542.293333pt;}
.x28_c00464{left:548.373333pt;}
.x5b_c00464{left:549.333333pt;}
.x88_c00464{left:553.333333pt;}
.xc5_c00464{left:554.293333pt;}
.x9a_c00464{left:555.626667pt;}
.x10_c00464{left:559.626667pt;}
.x68_c00464{left:561.706667pt;}
.xa1_c00464{left:564.000000pt;}
.x92_c00464{left:566.666667pt;}
.x105_c00464{left:568.373333pt;}
.x89_c00464{left:569.333333pt;}
.xdd_c00464{left:571.040000pt;}
.xb6_c00464{left:572.373333pt;}
.x53_c00464{left:573.333333pt;}
.x10a_c00464{left:574.666667pt;}
.x115_c00464{left:576.000000pt;}
.x11_c00464{left:577.706667pt;}
.xe5_c00464{left:578.666667pt;}
.xfd_c00464{left:579.626667pt;}
.x1c_c00464{left:581.706667pt;}
.x7f_c00464{left:583.040000pt;}
.xcc_c00464{left:585.333333pt;}
.x75_c00464{left:586.666667pt;}
.x41_c00464{left:588.960000pt;}
.x93_c00464{left:590.293333pt;}
.x4d_c00464{left:592.000000pt;}
.xe9_c00464{left:595.040000pt;}
.xb7_c00464{left:596.000000pt;}
.xe0_c00464{left:597.333333pt;}
.x34_c00464{left:600.000000pt;}
.x76_c00464{left:601.333333pt;}
.x12_c00464{left:602.666667pt;}
.xc1_c00464{left:604.000000pt;}
.x29_c00464{left:604.960000pt;}
.xa8_c00464{left:607.626667pt;}
.x10d_c00464{left:609.333333pt;}
.x54_c00464{left:610.666667pt;}
.x5c_c00464{left:612.000000pt;}
.x9b_c00464{left:612.960000pt;}
.xa2_c00464{left:615.040000pt;}
.x94_c00464{left:616.000000pt;}
.x1d_c00464{left:617.333333pt;}
.x102_c00464{left:619.040000pt;}
.xcd_c00464{left:620.000000pt;}
.x80_c00464{left:621.706667pt;}
.x42_c00464{left:624.960000pt;}
.x2_c00464{left:626.666667pt;}
.x69_c00464{left:628.000000pt;}
.xd0_c00464{left:629.706667pt;}
.x10e_c00464{left:631.040000pt;}
.xf4_c00464{left:633.906667pt;}
.x106_c00464{left:635.626667pt;}
.xb8_c00464{left:636.960000pt;}
.xec_c00464{left:640.000000pt;}
.x5d_c00464{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3651c4ea331f201047b032d5.woff2')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m10d_c00465{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m7e_c00465{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.m9a_c00465{transform:matrix(0.328221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328221,0.000000,0.000000,0.250000,0,0);}
.m15_c00465{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.m9c_c00465{transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);}
.m99_c00465{transform:matrix(0.351994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351994,0.000000,0.000000,0.250000,0,0);}
.m8b_c00465{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m90_c00465{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m0_c00465{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.mbf_c00465{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m1e_c00465{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.md9_c00465{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.mff_c00465{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m10_c00465{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.me5_c00465{transform:matrix(0.372449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372449,0.000000,0.000000,0.250000,0,0);}
.m6b_c00465{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m77_c00465{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.me1_c00465{transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);}
.m88_c00465{transform:matrix(0.378151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378151,0.000000,0.000000,0.250000,0,0);}
.m3_c00465{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mb3_c00465{transform:matrix(0.380705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380705,0.000000,0.000000,0.250000,0,0);}
.m17_c00465{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m9d_c00465{transform:matrix(0.386503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386503,0.000000,0.000000,0.250000,0,0);}
.m1b_c00465{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.mfd_c00465{transform:matrix(0.388824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388824,0.000000,0.000000,0.250000,0,0);}
.m1a_c00465{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m56_c00465{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.mf_c00465{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mac_c00465{transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);}
.m101_c00465{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m108_c00465{transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);}
.m93_c00465{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.ma_c00465{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m23_c00465{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m57_c00465{transform:matrix(0.398859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398859,0.000000,0.000000,0.250000,0,0);}
.mc1_c00465{transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);}
.mf6_c00465{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.m7c_c00465{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.m5b_c00465{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.ma7_c00465{transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);}
.m87_c00465{transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);}
.m81_c00465{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mf8_c00465{transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);}
.m7f_c00465{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m98_c00465{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.m21_c00465{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.mb5_c00465{transform:matrix(0.412193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412193,0.000000,0.000000,0.250000,0,0);}
.ma2_c00465{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m8a_c00465{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m52_c00465{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m92_c00465{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m85_c00465{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.mab_c00465{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m4f_c00465{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m7b_c00465{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m7_c00465{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.me9_c00465{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m33_c00465{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m65_c00465{transform:matrix(0.422929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422929,0.000000,0.000000,0.250000,0,0);}
.m95_c00465{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.md_c00465{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mf7_c00465{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.mdd_c00465{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.mb7_c00465{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m26_c00465{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m6f_c00465{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m27_c00465{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m39_c00465{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.ma4_c00465{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.mc6_c00465{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m37_c00465{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m76_c00465{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m58_c00465{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.md1_c00465{transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);}
.m104_c00465{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m107_c00465{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m74_c00465{transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);}
.m7d_c00465{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.me8_c00465{transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);}
.mf4_c00465{transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);}
.mc0_c00465{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m94_c00465{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m4b_c00465{transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);}
.m9b_c00465{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m8f_c00465{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m72_c00465{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m96_c00465{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.maa_c00465{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.m2_c00465{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m53_c00465{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m3b_c00465{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mee_c00465{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m102_c00465{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mae_c00465{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.mb1_c00465{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.maf_c00465{transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);}
.m63_c00465{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.md6_c00465{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m16_c00465{transform:matrix(0.468908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468908,0.000000,0.000000,0.250000,0,0);}
.m10f_c00465{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.md0_c00465{transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);}
.mb9_c00465{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.mf1_c00465{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m10b_c00465{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mb_c00465{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.ma1_c00465{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m66_c00465{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m86_c00465{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.mde_c00465{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m28_c00465{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m113_c00465{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m84_c00465{transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);}
.m51_c00465{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m3f_c00465{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mcd_c00465{transform:matrix(0.491176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491176,0.000000,0.000000,0.250000,0,0);}
.me7_c00465{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m110_c00465{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.m3d_c00465{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m12_c00465{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.me_c00465{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);}
.m6e_c00465{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mc3_c00465{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m35_c00465{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.me6_c00465{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m46_c00465{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mcf_c00465{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);}
.mdc_c00465{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m2c_c00465{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m91_c00465{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m7a_c00465{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m6a_c00465{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m71_c00465{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m38_c00465{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mdb_c00465{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.ma5_c00465{transform:matrix(0.519017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519017,0.000000,0.000000,0.250000,0,0);}
.m82_c00465{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.me0_c00465{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.mfe_c00465{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m2d_c00465{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mc2_c00465{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m8e_c00465{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mec_c00465{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_c00465{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.mb0_c00465{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m70_c00465{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mbb_c00465{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.ma0_c00465{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m6_c00465{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mad_c00465{transform:matrix(0.534706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534706,0.000000,0.000000,0.250000,0,0);}
.m5f_c00465{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.md8_c00465{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m45_c00465{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m5d_c00465{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mb8_c00465{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.ma3_c00465{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m50_c00465{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m20_c00465{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mc9_c00465{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.mf2_c00465{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m24_c00465{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mfb_c00465{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m32_c00465{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m67_c00465{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m97_c00465{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m31_c00465{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.me2_c00465{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m1f_c00465{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.m6d_c00465{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m8d_c00465{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mca_c00465{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m48_c00465{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mc_c00465{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m106_c00465{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m111_c00465{transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);}
.m9_c00465{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mdf_c00465{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m89_c00465{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mb2_c00465{transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);}
.mc7_c00465{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m2e_c00465{transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);}
.m4d_c00465{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mea_c00465{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.m78_c00465{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m42_c00465{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m4e_c00465{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.me4_c00465{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m4a_c00465{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m10c_c00465{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.md5_c00465{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.mba_c00465{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m5c_c00465{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mbd_c00465{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m5_c00465{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mf9_c00465{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.mb4_c00465{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.m49_c00465{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m1c_c00465{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m1d_c00465{transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);}
.mc5_c00465{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.mce_c00465{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.m55_c00465{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mc8_c00465{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m105_c00465{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.mda_c00465{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m29_c00465{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);}
.ma8_c00465{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m8_c00465{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.meb_c00465{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m54_c00465{transform:matrix(0.584025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584025,0.000000,0.000000,0.250000,0,0);}
.m44_c00465{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m3c_c00465{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m2b_c00465{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m75_c00465{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m9f_c00465{transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);}
.m10a_c00465{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m43_c00465{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m47_c00465{transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);}
.mbc_c00465{transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);}
.m3e_c00465{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m41_c00465{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m5a_c00465{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.m60_c00465{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m64_c00465{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m36_c00465{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m73_c00465{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mfc_c00465{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.mcb_c00465{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m10e_c00465{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m103_c00465{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m5e_c00465{transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);}
.m80_c00465{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);}
.m2f_c00465{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m112_c00465{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.med_c00465{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m109_c00465{transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);}
.m100_c00465{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.md2_c00465{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m3a_c00465{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.mcc_c00465{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m4_c00465{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m1_c00465{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.md3_c00465{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.ma9_c00465{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_c00465{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.mef_c00465{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.mfa_c00465{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m40_c00465{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m11_c00465{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m34_c00465{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m83_c00465{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.mf3_c00465{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m9e_c00465{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.m25_c00465{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.mf5_c00465{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.md7_c00465{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m68_c00465{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m69_c00465{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.me3_c00465{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);}
.mf0_c00465{transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);}
.m14_c00465{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.ma6_c00465{transform:matrix(0.734706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.734706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.734706,0.000000,0.000000,0.250000,0,0);}
.m22_c00465{transform:matrix(0.737981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737981,0.000000,0.000000,0.250000,0,0);}
.m13_c00465{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m30_c00465{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mc4_c00465{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m8c_c00465{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m18_c00465{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m6c_c00465{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m61_c00465{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m59_c00465{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m4c_c00465{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m79_c00465{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.md4_c00465{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m19_c00465{transform:matrix(2.003788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.003788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.003788,0.000000,0.000000,0.250000,0,0);}
.mb6_c00465{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.mbe_c00465{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws1_c00465{word-spacing:-5.643633px;}
.ws0_c00465{word-spacing:-4.801473px;}
.ws2_c00465{word-spacing:0.000000px;}
.fc0_c00465{color:transparent;}
.fs9_c00465{font-size:3.420000px;}
.fs7_c00465{font-size:11.880000px;}
.fs6_c00465{font-size:13.620000px;}
.fs4_c00465{font-size:18.720000px;}
.fs1_c00465{font-size:20.400000px;}
.fs3_c00465{font-size:25.500000px;}
.fs2_c00465{font-size:28.920000px;}
.fs5_c00465{font-size:32.340000px;}
.fs0_c00465{font-size:35.700000px;}
.fs8_c00465{font-size:39.120000px;}
.y0_c00465{bottom:0.000000px;}
.yd7_c00465{bottom:245.970000px;}
.yd4_c00465{bottom:247.905000px;}
.yd6_c00465{bottom:248.970000px;}
.yd5_c00465{bottom:249.195000px;}
.yd8_c00465{bottom:250.050000px;}
.yce_c00465{bottom:262.050000px;}
.ycf_c00465{bottom:262.905000px;}
.yd2_c00465{bottom:263.325000px;}
.yd1_c00465{bottom:263.970000px;}
.yd3_c00465{bottom:264.195000px;}
.yd0_c00465{bottom:265.050000px;}
.ycd_c00465{bottom:276.825000px;}
.ycc_c00465{bottom:280.050000px;}
.yc6_c00465{bottom:291.825000px;}
.ycb_c00465{bottom:292.050000px;}
.yc9_c00465{bottom:292.905000px;}
.yca_c00465{bottom:293.130000px;}
.yc5_c00465{bottom:293.550000px;}
.yc8_c00465{bottom:293.970000px;}
.yc7_c00465{bottom:295.050000px;}
.yc1_c00465{bottom:307.905000px;}
.yc2_c00465{bottom:308.130000px;}
.yc3_c00465{bottom:308.970000px;}
.yc4_c00465{bottom:310.050000px;}
.ybc_c00465{bottom:320.970000px;}
.ybd_c00465{bottom:322.905000px;}
.ybf_c00465{bottom:323.130000px;}
.ybe_c00465{bottom:323.970000px;}
.yc0_c00465{bottom:325.050000px;}
.yba_c00465{bottom:335.970000px;}
.yb9_c00465{bottom:336.825000px;}
.yb6_c00465{bottom:337.905000px;}
.yb7_c00465{bottom:338.130000px;}
.yb8_c00465{bottom:338.970000px;}
.ybb_c00465{bottom:340.050000px;}
.yad_c00465{bottom:350.550000px;}
.yb0_c00465{bottom:351.825000px;}
.yb3_c00465{bottom:352.050000px;}
.yae_c00465{bottom:352.470000px;}
.yb1_c00465{bottom:352.905000px;}
.yaf_c00465{bottom:353.130000px;}
.yb5_c00465{bottom:353.550000px;}
.yb2_c00465{bottom:353.970000px;}
.yb4_c00465{bottom:355.050000px;}
.yac_c00465{bottom:366.405000px;}
.yab_c00465{bottom:380.325000px;}
.ya6_c00465{bottom:380.550000px;}
.ya8_c00465{bottom:381.405000px;}
.ya9_c00465{bottom:382.470000px;}
.yaa_c00465{bottom:382.695000px;}
.ya7_c00465{bottom:383.550000px;}
.ya4_c00465{bottom:395.550000px;}
.ya3_c00465{bottom:396.405000px;}
.ya5_c00465{bottom:398.550000px;}
.ya1_c00465{bottom:410.325000px;}
.y9e_c00465{bottom:411.405000px;}
.y9d_c00465{bottom:411.630000px;}
.y9f_c00465{bottom:412.050000px;}
.ya0_c00465{bottom:412.470000px;}
.ya2_c00465{bottom:412.695000px;}
.y9b_c00465{bottom:425.325000px;}
.y9c_c00465{bottom:425.550000px;}
.y9a_c00465{bottom:426.405000px;}
.y98_c00465{bottom:427.470000px;}
.y99_c00465{bottom:427.695000px;}
.y97_c00465{bottom:440.325000px;}
.y96_c00465{bottom:441.405000px;}
.y93_c00465{bottom:441.630000px;}
.y94_c00465{bottom:442.470000px;}
.y95_c00465{bottom:443.550000px;}
.y91_c00465{bottom:467.745000px;}
.y92_c00465{bottom:469.470000px;}
.y8f_c00465{bottom:469.905000px;}
.y90_c00465{bottom:470.970000px;}
.y8d_c00465{bottom:487.245000px;}
.y8e_c00465{bottom:488.130000px;}
.y8b_c00465{bottom:489.405000px;}
.y8c_c00465{bottom:489.420000px;}
.y89_c00465{bottom:505.905000px;}
.y88_c00465{bottom:508.905000px;}
.y8a_c00465{bottom:509.970000px;}
.y87_c00465{bottom:526.245000px;}
.y86_c00465{bottom:527.745000px;}
.y85_c00465{bottom:528.405000px;}
.y84_c00465{bottom:529.905000px;}
.y82_c00465{bottom:547.245000px;}
.y83_c00465{bottom:547.905000px;}
.y80_c00465{bottom:549.405000px;}
.y81_c00465{bottom:549.420000px;}
.y7e_c00465{bottom:565.905000px;}
.y7f_c00465{bottom:567.405000px;}
.y7d_c00465{bottom:568.905000px;}
.y7a_c00465{bottom:583.905000px;}
.y77_c00465{bottom:585.180000px;}
.y76_c00465{bottom:586.245000px;}
.y7b_c00465{bottom:586.905000px;}
.y7c_c00465{bottom:587.325000px;}
.y79_c00465{bottom:588.405000px;}
.y78_c00465{bottom:588.420000px;}
.y73_c00465{bottom:608.970000px;}
.y70_c00465{bottom:609.825000px;}
.y75_c00465{bottom:610.050000px;}
.y72_c00465{bottom:610.905000px;}
.y74_c00465{bottom:611.550000px;}
.y71_c00465{bottom:611.970000px;}
.y6f_c00465{bottom:629.325000px;}
.y6e_c00465{bottom:630.405000px;}
.y6d_c00465{bottom:630.630000px;}
.y6c_c00465{bottom:632.550000px;}
.y6b_c00465{bottom:650.325000px;}
.y69_c00465{bottom:651.825000px;}
.y6a_c00465{bottom:653.970000px;}
.y68_c00465{bottom:683.745000px;}
.y67_c00465{bottom:684.825000px;}
.y65_c00465{bottom:685.905000px;}
.y66_c00465{bottom:686.970000px;}
.y5f_c00465{bottom:702.405000px;}
.y61_c00465{bottom:703.245000px;}
.y62_c00465{bottom:703.680000px;}
.y63_c00465{bottom:704.325000px;}
.y5e_c00465{bottom:704.745000px;}
.y60_c00465{bottom:705.405000px;}
.y5d_c00465{bottom:705.630000px;}
.y64_c00465{bottom:706.470000px;}
.y5c_c00465{bottom:706.905000px;}
.y5b_c00465{bottom:722.745000px;}
.y58_c00465{bottom:724.245000px;}
.y5a_c00465{bottom:724.905000px;}
.y59_c00465{bottom:725.130000px;}
.y57_c00465{bottom:726.405000px;}
.y55_c00465{bottom:743.325000px;}
.y51_c00465{bottom:743.745000px;}
.y53_c00465{bottom:744.630000px;}
.y52_c00465{bottom:744.825000px;}
.y56_c00465{bottom:745.470000px;}
.y54_c00465{bottom:745.905000px;}
.y50_c00465{bottom:763.245000px;}
.y4f_c00465{bottom:765.405000px;}
.y4e_c00465{bottom:781.905000px;}
.y4c_c00465{bottom:782.745000px;}
.y4d_c00465{bottom:784.050000px;}
.y4b_c00465{bottom:784.905000px;}
.y49_c00465{bottom:801.180000px;}
.y48_c00465{bottom:801.405000px;}
.y4a_c00465{bottom:802.245000px;}
.y47_c00465{bottom:803.325000px;}
.y42_c00465{bottom:821.325000px;}
.y45_c00465{bottom:821.745000px;}
.y41_c00465{bottom:823.245000px;}
.y43_c00465{bottom:823.905000px;}
.y46_c00465{bottom:824.130000px;}
.y44_c00465{bottom:824.970000px;}
.y40_c00465{bottom:825.405000px;}
.y3f_c00465{bottom:839.970000px;}
.y3a_c00465{bottom:841.245000px;}
.y3e_c00465{bottom:842.130000px;}
.y3d_c00465{bottom:842.325000px;}
.y3b_c00465{bottom:843.405000px;}
.y3c_c00465{bottom:844.470000px;}
.y39_c00465{bottom:860.745000px;}
.y35_c00465{bottom:861.825000px;}
.y36_c00465{bottom:862.905000px;}
.y37_c00465{bottom:863.130000px;}
.y38_c00465{bottom:863.970000px;}
.y33_c00465{bottom:880.470000px;}
.y34_c00465{bottom:880.680000px;}
.y30_c00465{bottom:882.630000px;}
.y32_c00465{bottom:882.825000px;}
.y2f_c00465{bottom:883.470000px;}
.y31_c00465{bottom:883.905000px;}
.y2a_c00465{bottom:901.245000px;}
.y2e_c00465{bottom:901.905000px;}
.y2b_c00465{bottom:902.130000px;}
.y2d_c00465{bottom:902.970000px;}
.y2c_c00465{bottom:903.405000px;}
.y28_c00465{bottom:920.745000px;}
.y27_c00465{bottom:921.630000px;}
.y26_c00465{bottom:922.905000px;}
.y29_c00465{bottom:923.970000px;}
.y22_c00465{bottom:940.245000px;}
.y25_c00465{bottom:941.130000px;}
.y24_c00465{bottom:941.325000px;}
.y23_c00465{bottom:941.970000px;}
.y21_c00465{bottom:942.405000px;}
.y1e_c00465{bottom:958.905000px;}
.y1f_c00465{bottom:959.970000px;}
.y1d_c00465{bottom:961.905000px;}
.y20_c00465{bottom:962.130000px;}
.y1b_c00465{bottom:979.245000px;}
.y1c_c00465{bottom:980.970000px;}
.y19_c00465{bottom:981.405000px;}
.y1a_c00465{bottom:982.470000px;}
.y18_c00465{bottom:998.745000px;}
.y13_c00465{bottom:998.970000px;}
.y16_c00465{bottom:1000.470000px;}
.y15_c00465{bottom:1000.905000px;}
.y17_c00465{bottom:1001.130000px;}
.y14_c00465{bottom:1001.970000px;}
.y10_c00465{bottom:1018.245000px;}
.y11_c00465{bottom:1020.405000px;}
.y12_c00465{bottom:1020.630000px;}
.yc_c00465{bottom:1037.745000px;}
.y8_c00465{bottom:1039.245000px;}
.y9_c00465{bottom:1040.130000px;}
.ya_c00465{bottom:1040.325000px;}
.yd_c00465{bottom:1040.775000px;}
.yf_c00465{bottom:1040.970000px;}
.ye_c00465{bottom:1041.405000px;}
.yb_c00465{bottom:1042.695000px;}
.y4_c00465{bottom:1057.245000px;}
.y7_c00465{bottom:1058.745000px;}
.y6_c00465{bottom:1059.405000px;}
.y5_c00465{bottom:1060.470000px;}
.y3_c00465{bottom:1060.905000px;}
.y2_c00465{bottom:1097.550000px;}
.y1_c00465{bottom:1097.745000px;}
.ha_c00465{height:4.206533px;}
.h8_c00465{height:14.612168px;}
.h7_c00465{height:16.752334px;}
.h5_c00465{height:23.025234px;}
.h2_c00465{height:25.091602px;}
.h4_c00465{height:31.364502px;}
.h3_c00465{height:35.571035px;}
.h6_c00465{height:39.777568px;}
.h1_c00465{height:43.910303px;}
.h9_c00465{height:48.116836px;}
.h0_c00465{height:1335.000000px;}
.w0_c00465{width:880.500000px;}
.x0_c00465{left:0.000000px;}
.xef_c00465{left:150.420000px;}
.xca_c00465{left:151.500000px;}
.xa7_c00465{left:153.000000px;}
.x1_c00465{left:154.500000px;}
.xf7_c00465{left:164.580000px;}
.xb0_c00465{left:166.080000px;}
.xb7_c00465{left:168.420000px;}
.x94_c00465{left:171.000000px;}
.xcb_c00465{left:173.580000px;}
.xfe_c00465{left:180.420000px;}
.x1e_c00465{left:183.000000px;}
.xc1_c00465{left:184.080000px;}
.xf0_c00465{left:186.000000px;}
.x3_c00465{left:187.500000px;}
.x87_c00465{left:188.580000px;}
.x6e_c00465{left:193.920000px;}
.x65_c00465{left:196.500000px;}
.x47_c00465{left:199.920000px;}
.x7f_c00465{left:201.420000px;}
.x2a_c00465{left:203.580000px;}
.xc2_c00465{left:205.920000px;}
.xff_c00465{left:207.000000px;}
.xb8_c00465{left:209.580000px;}
.xe5_c00465{left:213.000000px;}
.x66_c00465{left:214.500000px;}
.xcc_c00465{left:216.000000px;}
.x91_c00465{left:219.420000px;}
.x5c_c00465{left:220.920000px;}
.x10_c00465{left:223.080000px;}
.xe8_c00465{left:224.580000px;}
.x48_c00465{left:226.500000px;}
.x2b_c00465{left:228.420000px;}
.xd9_c00465{left:229.500000px;}
.x38_c00465{left:231.000000px;}
.x76_c00465{left:232.920000px;}
.x52_c00465{left:234.000000px;}
.xf1_c00465{left:236.580000px;}
.x9f_c00465{left:239.580000px;}
.x88_c00465{left:240.855000px;}
.xad_c00465{left:242.580000px;}
.x5d_c00465{left:246.000000px;}
.xc7_c00465{left:247.080000px;}
.xd0_c00465{left:250.500000px;}
.x103_c00465{left:253.500000px;}
.x92_c00465{left:254.580000px;}
.xdd_c00465{left:256.500000px;}
.x39_c00465{left:258.420000px;}
.xcd_c00465{left:259.500000px;}
.x1f_c00465{left:261.000000px;}
.x2c_c00465{left:262.080000px;}
.x4_c00465{left:265.500000px;}
.x67_c00465{left:266.580000px;}
.xb9_c00465{left:270.000000px;}
.x11_c00465{left:271.275000px;}
.xe1_c00465{left:274.500000px;}
.xce_c00465{left:276.000000px;}
.x6f_c00465{left:277.920000px;}
.x77_c00465{left:279.000000px;}
.x89_c00465{left:282.000000px;}
.x53_c00465{left:283.500000px;}
.x93_c00465{left:285.000000px;}
.xfa_c00465{left:286.920000px;}
.xba_c00465{left:291.000000px;}
.x20_c00465{left:292.920000px;}
.xb1_c00465{left:294.000000px;}
.x95_c00465{left:295.920000px;}
.xfb_c00465{left:297.000000px;}
.x5_c00465{left:300.000000px;}
.x5e_c00465{left:303.000000px;}
.xcf_c00465{left:304.080000px;}
.x12_c00465{left:306.000000px;}
.x3a_c00465{left:307.080000px;}
.xe2_c00465{left:308.580000px;}
.xf2_c00465{left:311.580000px;}
.xaf_c00465{left:313.080000px;}
.xe6_c00465{left:315.420000px;}
.xc3_c00465{left:316.500000px;}
.xec_c00465{left:317.580000px;}
.x8a_c00465{left:320.145000px;}
.xa8_c00465{left:322.080000px;}
.x3b_c00465{left:325.500000px;}
.x13_c00465{left:328.500000px;}
.x6_c00465{left:332.580000px;}
.xa2_c00465{left:334.500000px;}
.x2d_c00465{left:337.920000px;}
.x49_c00465{left:339.000000px;}
.xe7_c00465{left:342.000000px;}
.xd1_c00465{left:343.500000px;}
.x5f_c00465{left:344.580000px;}
.x54_c00465{left:345.645000px;}
.xdc_c00465{left:348.000000px;}
.x14_c00465{left:349.500000px;}
.x96_c00465{left:351.000000px;}
.xb2_c00465{left:352.920000px;}
.x7_c00465{left:354.420000px;}
.x104_c00465{left:355.920000px;}
.x68_c00465{left:357.420000px;}
.x2e_c00465{left:358.500000px;}
.x15_c00465{left:360.000000px;}
.x4a_c00465{left:361.500000px;}
.x21_c00465{left:363.000000px;}
.xd2_c00465{left:364.500000px;}
.x80_c00465{left:366.000000px;}
.xc4_c00465{left:370.500000px;}
.x100_c00465{left:372.000000px;}
.xde_c00465{left:375.000000px;}
.x60_c00465{left:376.500000px;}
.xda_c00465{left:378.000000px;}
.x78_c00465{left:379.500000px;}
.xbb_c00465{left:380.580000px;}
.x2f_c00465{left:382.080000px;}
.x8_c00465{left:384.420000px;}
.x70_c00465{left:386.580000px;}
.xb3_c00465{left:388.500000px;}
.x97_c00465{left:389.580000px;}
.x55_c00465{left:391.500000px;}
.x3c_c00465{left:393.000000px;}
.x8b_c00465{left:396.000000px;}
.xd3_c00465{left:397.500000px;}
.x16_c00465{left:400.500000px;}
.xbc_c00465{left:403.500000px;}
.x4b_c00465{left:405.420000px;}
.x2_c00465{left:409.500000px;}
.x56_c00465{left:412.080000px;}
.x8c_c00465{left:414.000000px;}
.xf3_c00465{left:417.000000px;}
.x61_c00465{left:418.500000px;}
.x9b_c00465{left:421.500000px;}
.x22_c00465{left:424.920000px;}
.x79_c00465{left:426.420000px;}
.x3d_c00465{left:432.000000px;}
.xb4_c00465{left:433.500000px;}
.x17_c00465{left:435.000000px;}
.x30_c00465{left:436.080000px;}
.x71_c00465{left:438.420000px;}
.x4c_c00465{left:439.920000px;}
.x57_c00465{left:442.500000px;}
.xbd_c00465{left:445.500000px;}
.x81_c00465{left:447.000000px;}
.xd4_c00465{left:450.000000px;}
.x9_c00465{left:451.080000px;}
.xa3_c00465{left:453.000000px;}
.x31_c00465{left:454.500000px;}
.x7a_c00465{left:456.000000px;}
.x18_c00465{left:459.420000px;}
.x98_c00465{left:462.000000px;}
.x8d_c00465{left:465.000000px;}
.x58_c00465{left:466.920000px;}
.x4d_c00465{left:468.420000px;}
.x3e_c00465{left:469.500000px;}
.x32_c00465{left:471.000000px;}
.xa_c00465{left:472.500000px;}
.xf8_c00465{left:473.580000px;}
.x23_c00465{left:475.500000px;}
.xdb_c00465{left:477.000000px;}
.xd5_c00465{left:478.080000px;}
.x69_c00465{left:481.080000px;}
.xfd_c00465{left:484.080000px;}
.x19_c00465{left:486.000000px;}
.x72_c00465{left:487.920000px;}
.xdf_c00465{left:489.000000px;}
.x24_c00465{left:493.080000px;}
.x59_c00465{left:494.580000px;}
.x3f_c00465{left:496.920000px;}
.x7b_c00465{left:498.420000px;}
.x101_c00465{left:499.920000px;}
.xfc_c00465{left:501.420000px;}
.x33_c00465{left:502.500000px;}
.x1a_c00465{left:503.580000px;}
.x9c_c00465{left:506.580000px;}
.x82_c00465{left:508.920000px;}
.xb_c00465{left:510.420000px;}
.xd6_c00465{left:516.420000px;}
.x1b_c00465{left:519.420000px;}
.xf4_c00465{left:520.500000px;}
.x40_c00465{left:521.580000px;}
.x34_c00465{left:523.500000px;}
.x25_c00465{left:525.420000px;}
.x8e_c00465{left:526.920000px;}
.x6a_c00465{left:529.500000px;}
.xa4_c00465{left:531.000000px;}
.x35_c00465{left:535.080000px;}
.x5a_c00465{left:537.000000px;}
.x41_c00465{left:540.420000px;}
.xa9_c00465{left:542.580000px;}
.xe0_c00465{left:544.500000px;}
.xf5_c00465{left:547.920000px;}
.x26_c00465{left:549.000000px;}
.x4e_c00465{left:552.000000px;}
.x8f_c00465{left:553.500000px;}
.xd7_c00465{left:562.080000px;}
.xf9_c00465{left:564.000000px;}
.x99_c00465{left:565.500000px;}
.x42_c00465{left:567.000000px;}
.x6b_c00465{left:568.080000px;}
.xa5_c00465{left:570.000000px;}
.xbe_c00465{left:572.580000px;}
.xed_c00465{left:574.920000px;}
.xae_c00465{left:577.500000px;}
.x1c_c00465{left:578.580000px;}
.xa0_c00465{left:583.500000px;}
.x83_c00465{left:585.000000px;}
.x7c_c00465{left:588.000000px;}
.xc8_c00465{left:589.500000px;}
.xb5_c00465{left:591.855000px;}
.x36_c00465{left:592.920000px;}
.xe3_c00465{left:594.000000px;}
.x9d_c00465{left:595.275000px;}
.x90_c00465{left:596.580000px;}
.xe9_c00465{left:598.080000px;}
.x73_c00465{left:600.420000px;}
.xc_c00465{left:601.500000px;}
.x62_c00465{left:603.420000px;}
.x84_c00465{left:604.500000px;}
.xaa_c00465{left:605.775000px;}
.x5b_c00465{left:607.920000px;}
.x1d_c00465{left:609.000000px;}
.xb6_c00465{left:612.420000px;}
.x9a_c00465{left:614.580000px;}
.x85_c00465{left:616.920000px;}
.xd_c00465{left:619.500000px;}
.xbf_c00465{left:622.080000px;}
.xc9_c00465{left:623.145000px;}
.x43_c00465{left:628.920000px;}
.x4f_c00465{left:630.000000px;}
.x27_c00465{left:634.920000px;}
.x6c_c00465{left:636.645000px;}
.xa1_c00465{left:640.500000px;}
.x37_c00465{left:642.000000px;}
.xf6_c00465{left:646.500000px;}
.xc5_c00465{left:648.000000px;}
.x7d_c00465{left:649.500000px;}
.x102_c00465{left:651.000000px;}
.xab_c00465{left:652.500000px;}
.x44_c00465{left:655.080000px;}
.xea_c00465{left:658.500000px;}
.xa6_c00465{left:659.580000px;}
.x50_c00465{left:661.500000px;}
.x74_c00465{left:663.000000px;}
.xac_c00465{left:666.000000px;}
.x63_c00465{left:668.580000px;}
.x7e_c00465{left:670.500000px;}
.xee_c00465{left:672.000000px;}
.x9e_c00465{left:673.080000px;}
.xc0_c00465{left:676.500000px;}
.x6d_c00465{left:679.500000px;}
.x75_c00465{left:681.645000px;}
.x86_c00465{left:688.500000px;}
.xe_c00465{left:690.000000px;}
.x45_c00465{left:691.080000px;}
.x64_c00465{left:694.500000px;}
.x28_c00465{left:696.420000px;}
.x51_c00465{left:697.500000px;}
.xd8_c00465{left:702.000000px;}
.xc6_c00465{left:704.580000px;}
.xeb_c00465{left:707.580000px;}
.x46_c00465{left:709.920000px;}
.xf_c00465{left:716.580000px;}
.x29_c00465{left:718.500000px;}
.xe4_c00465{left:723.000000px;}
@media print{
.v0_c00465{vertical-align:0.000000pt;}
.ls0_c00465{letter-spacing:0.000000pt;}
.ws1_c00465{word-spacing:-5.016562pt;}
.ws0_c00465{word-spacing:-4.267976pt;}
.ws2_c00465{word-spacing:0.000000pt;}
.fs9_c00465{font-size:3.040000pt;}
.fs7_c00465{font-size:10.560000pt;}
.fs6_c00465{font-size:12.106667pt;}
.fs4_c00465{font-size:16.640000pt;}
.fs1_c00465{font-size:18.133333pt;}
.fs3_c00465{font-size:22.666667pt;}
.fs2_c00465{font-size:25.706667pt;}
.fs5_c00465{font-size:28.746667pt;}
.fs0_c00465{font-size:31.733333pt;}
.fs8_c00465{font-size:34.773333pt;}
.y0_c00465{bottom:0.000000pt;}
.yd7_c00465{bottom:218.640000pt;}
.yd4_c00465{bottom:220.360000pt;}
.yd6_c00465{bottom:221.306667pt;}
.yd5_c00465{bottom:221.506667pt;}
.yd8_c00465{bottom:222.266667pt;}
.yce_c00465{bottom:232.933333pt;}
.ycf_c00465{bottom:233.693333pt;}
.yd2_c00465{bottom:234.066667pt;}
.yd1_c00465{bottom:234.640000pt;}
.yd3_c00465{bottom:234.840000pt;}
.yd0_c00465{bottom:235.600000pt;}
.ycd_c00465{bottom:246.066667pt;}
.ycc_c00465{bottom:248.933333pt;}
.yc6_c00465{bottom:259.400000pt;}
.ycb_c00465{bottom:259.600000pt;}
.yc9_c00465{bottom:260.360000pt;}
.yca_c00465{bottom:260.560000pt;}
.yc5_c00465{bottom:260.933333pt;}
.yc8_c00465{bottom:261.306667pt;}
.yc7_c00465{bottom:262.266667pt;}
.yc1_c00465{bottom:273.693333pt;}
.yc2_c00465{bottom:273.893333pt;}
.yc3_c00465{bottom:274.640000pt;}
.yc4_c00465{bottom:275.600000pt;}
.ybc_c00465{bottom:285.306667pt;}
.ybd_c00465{bottom:287.026667pt;}
.ybf_c00465{bottom:287.226667pt;}
.ybe_c00465{bottom:287.973333pt;}
.yc0_c00465{bottom:288.933333pt;}
.yba_c00465{bottom:298.640000pt;}
.yb9_c00465{bottom:299.400000pt;}
.yb6_c00465{bottom:300.360000pt;}
.yb7_c00465{bottom:300.560000pt;}
.yb8_c00465{bottom:301.306667pt;}
.ybb_c00465{bottom:302.266667pt;}
.yad_c00465{bottom:311.600000pt;}
.yb0_c00465{bottom:312.733333pt;}
.yb3_c00465{bottom:312.933333pt;}
.yae_c00465{bottom:313.306667pt;}
.yb1_c00465{bottom:313.693333pt;}
.yaf_c00465{bottom:313.893333pt;}
.yb5_c00465{bottom:314.266667pt;}
.yb2_c00465{bottom:314.640000pt;}
.yb4_c00465{bottom:315.600000pt;}
.yac_c00465{bottom:325.693333pt;}
.yab_c00465{bottom:338.066667pt;}
.ya6_c00465{bottom:338.266667pt;}
.ya8_c00465{bottom:339.026667pt;}
.ya9_c00465{bottom:339.973333pt;}
.yaa_c00465{bottom:340.173333pt;}
.ya7_c00465{bottom:340.933333pt;}
.ya4_c00465{bottom:351.600000pt;}
.ya3_c00465{bottom:352.360000pt;}
.ya5_c00465{bottom:354.266667pt;}
.ya1_c00465{bottom:364.733333pt;}
.y9e_c00465{bottom:365.693333pt;}
.y9d_c00465{bottom:365.893333pt;}
.y9f_c00465{bottom:366.266667pt;}
.ya0_c00465{bottom:366.640000pt;}
.ya2_c00465{bottom:366.840000pt;}
.y9b_c00465{bottom:378.066667pt;}
.y9c_c00465{bottom:378.266667pt;}
.y9a_c00465{bottom:379.026667pt;}
.y98_c00465{bottom:379.973333pt;}
.y99_c00465{bottom:380.173333pt;}
.y97_c00465{bottom:391.400000pt;}
.y96_c00465{bottom:392.360000pt;}
.y93_c00465{bottom:392.560000pt;}
.y94_c00465{bottom:393.306667pt;}
.y95_c00465{bottom:394.266667pt;}
.y91_c00465{bottom:415.773333pt;}
.y92_c00465{bottom:417.306667pt;}
.y8f_c00465{bottom:417.693333pt;}
.y90_c00465{bottom:418.640000pt;}
.y8d_c00465{bottom:433.106667pt;}
.y8e_c00465{bottom:433.893333pt;}
.y8b_c00465{bottom:435.026667pt;}
.y8c_c00465{bottom:435.040000pt;}
.y89_c00465{bottom:449.693333pt;}
.y88_c00465{bottom:452.360000pt;}
.y8a_c00465{bottom:453.306667pt;}
.y87_c00465{bottom:467.773333pt;}
.y86_c00465{bottom:469.106667pt;}
.y85_c00465{bottom:469.693333pt;}
.y84_c00465{bottom:471.026667pt;}
.y82_c00465{bottom:486.440000pt;}
.y83_c00465{bottom:487.026667pt;}
.y80_c00465{bottom:488.360000pt;}
.y81_c00465{bottom:488.373333pt;}
.y7e_c00465{bottom:503.026667pt;}
.y7f_c00465{bottom:504.360000pt;}
.y7d_c00465{bottom:505.693333pt;}
.y7a_c00465{bottom:519.026667pt;}
.y77_c00465{bottom:520.160000pt;}
.y76_c00465{bottom:521.106667pt;}
.y7b_c00465{bottom:521.693333pt;}
.y7c_c00465{bottom:522.066667pt;}
.y79_c00465{bottom:523.026667pt;}
.y78_c00465{bottom:523.040000pt;}
.y73_c00465{bottom:541.306667pt;}
.y70_c00465{bottom:542.066667pt;}
.y75_c00465{bottom:542.266667pt;}
.y72_c00465{bottom:543.026667pt;}
.y74_c00465{bottom:543.600000pt;}
.y71_c00465{bottom:543.973333pt;}
.y6f_c00465{bottom:559.400000pt;}
.y6e_c00465{bottom:560.360000pt;}
.y6d_c00465{bottom:560.560000pt;}
.y6c_c00465{bottom:562.266667pt;}
.y6b_c00465{bottom:578.066667pt;}
.y69_c00465{bottom:579.400000pt;}
.y6a_c00465{bottom:581.306667pt;}
.y68_c00465{bottom:607.773333pt;}
.y67_c00465{bottom:608.733333pt;}
.y65_c00465{bottom:609.693333pt;}
.y66_c00465{bottom:610.640000pt;}
.y5f_c00465{bottom:624.360000pt;}
.y61_c00465{bottom:625.106667pt;}
.y62_c00465{bottom:625.493333pt;}
.y63_c00465{bottom:626.066667pt;}
.y5e_c00465{bottom:626.440000pt;}
.y60_c00465{bottom:627.026667pt;}
.y5d_c00465{bottom:627.226667pt;}
.y64_c00465{bottom:627.973333pt;}
.y5c_c00465{bottom:628.360000pt;}
.y5b_c00465{bottom:642.440000pt;}
.y58_c00465{bottom:643.773333pt;}
.y5a_c00465{bottom:644.360000pt;}
.y59_c00465{bottom:644.560000pt;}
.y57_c00465{bottom:645.693333pt;}
.y55_c00465{bottom:660.733333pt;}
.y51_c00465{bottom:661.106667pt;}
.y53_c00465{bottom:661.893333pt;}
.y52_c00465{bottom:662.066667pt;}
.y56_c00465{bottom:662.640000pt;}
.y54_c00465{bottom:663.026667pt;}
.y50_c00465{bottom:678.440000pt;}
.y4f_c00465{bottom:680.360000pt;}
.y4e_c00465{bottom:695.026667pt;}
.y4c_c00465{bottom:695.773333pt;}
.y4d_c00465{bottom:696.933333pt;}
.y4b_c00465{bottom:697.693333pt;}
.y49_c00465{bottom:712.160000pt;}
.y48_c00465{bottom:712.360000pt;}
.y4a_c00465{bottom:713.106667pt;}
.y47_c00465{bottom:714.066667pt;}
.y42_c00465{bottom:730.066667pt;}
.y45_c00465{bottom:730.440000pt;}
.y41_c00465{bottom:731.773333pt;}
.y43_c00465{bottom:732.360000pt;}
.y46_c00465{bottom:732.560000pt;}
.y44_c00465{bottom:733.306667pt;}
.y40_c00465{bottom:733.693333pt;}
.y3f_c00465{bottom:746.640000pt;}
.y3a_c00465{bottom:747.773333pt;}
.y3e_c00465{bottom:748.560000pt;}
.y3d_c00465{bottom:748.733333pt;}
.y3b_c00465{bottom:749.693333pt;}
.y3c_c00465{bottom:750.640000pt;}
.y39_c00465{bottom:765.106667pt;}
.y35_c00465{bottom:766.066667pt;}
.y36_c00465{bottom:767.026667pt;}
.y37_c00465{bottom:767.226667pt;}
.y38_c00465{bottom:767.973333pt;}
.y33_c00465{bottom:782.640000pt;}
.y34_c00465{bottom:782.826667pt;}
.y30_c00465{bottom:784.560000pt;}
.y32_c00465{bottom:784.733333pt;}
.y2f_c00465{bottom:785.306667pt;}
.y31_c00465{bottom:785.693333pt;}
.y2a_c00465{bottom:801.106667pt;}
.y2e_c00465{bottom:801.693333pt;}
.y2b_c00465{bottom:801.893333pt;}
.y2d_c00465{bottom:802.640000pt;}
.y2c_c00465{bottom:803.026667pt;}
.y28_c00465{bottom:818.440000pt;}
.y27_c00465{bottom:819.226667pt;}
.y26_c00465{bottom:820.360000pt;}
.y29_c00465{bottom:821.306667pt;}
.y22_c00465{bottom:835.773333pt;}
.y25_c00465{bottom:836.560000pt;}
.y24_c00465{bottom:836.733333pt;}
.y23_c00465{bottom:837.306667pt;}
.y21_c00465{bottom:837.693333pt;}
.y1e_c00465{bottom:852.360000pt;}
.y1f_c00465{bottom:853.306667pt;}
.y1d_c00465{bottom:855.026667pt;}
.y20_c00465{bottom:855.226667pt;}
.y1b_c00465{bottom:870.440000pt;}
.y1c_c00465{bottom:871.973333pt;}
.y19_c00465{bottom:872.360000pt;}
.y1a_c00465{bottom:873.306667pt;}
.y18_c00465{bottom:887.773333pt;}
.y13_c00465{bottom:887.973333pt;}
.y16_c00465{bottom:889.306667pt;}
.y15_c00465{bottom:889.693333pt;}
.y17_c00465{bottom:889.893333pt;}
.y14_c00465{bottom:890.640000pt;}
.y10_c00465{bottom:905.106667pt;}
.y11_c00465{bottom:907.026667pt;}
.y12_c00465{bottom:907.226667pt;}
.yc_c00465{bottom:922.440000pt;}
.y8_c00465{bottom:923.773333pt;}
.y9_c00465{bottom:924.560000pt;}
.ya_c00465{bottom:924.733333pt;}
.yd_c00465{bottom:925.133333pt;}
.yf_c00465{bottom:925.306667pt;}
.ye_c00465{bottom:925.693333pt;}
.yb_c00465{bottom:926.840000pt;}
.y4_c00465{bottom:939.773333pt;}
.y7_c00465{bottom:941.106667pt;}
.y6_c00465{bottom:941.693333pt;}
.y5_c00465{bottom:942.640000pt;}
.y3_c00465{bottom:943.026667pt;}
.y2_c00465{bottom:975.600000pt;}
.y1_c00465{bottom:975.773333pt;}
.ha_c00465{height:3.739141pt;}
.h8_c00465{height:12.988594pt;}
.h7_c00465{height:14.890964pt;}
.h5_c00465{height:20.466875pt;}
.h2_c00465{height:22.303646pt;}
.h4_c00465{height:27.879557pt;}
.h3_c00465{height:31.618698pt;}
.h6_c00465{height:35.357839pt;}
.h1_c00465{height:39.031380pt;}
.h9_c00465{height:42.770521pt;}
.h0_c00465{height:1186.666667pt;}
.w0_c00465{width:782.666667pt;}
.x0_c00465{left:0.000000pt;}
.xef_c00465{left:133.706667pt;}
.xca_c00465{left:134.666667pt;}
.xa7_c00465{left:136.000000pt;}
.x1_c00465{left:137.333333pt;}
.xf7_c00465{left:146.293333pt;}
.xb0_c00465{left:147.626667pt;}
.xb7_c00465{left:149.706667pt;}
.x94_c00465{left:152.000000pt;}
.xcb_c00465{left:154.293333pt;}
.xfe_c00465{left:160.373333pt;}
.x1e_c00465{left:162.666667pt;}
.xc1_c00465{left:163.626667pt;}
.xf0_c00465{left:165.333333pt;}
.x3_c00465{left:166.666667pt;}
.x87_c00465{left:167.626667pt;}
.x6e_c00465{left:172.373333pt;}
.x65_c00465{left:174.666667pt;}
.x47_c00465{left:177.706667pt;}
.x7f_c00465{left:179.040000pt;}
.x2a_c00465{left:180.960000pt;}
.xc2_c00465{left:183.040000pt;}
.xff_c00465{left:184.000000pt;}
.xb8_c00465{left:186.293333pt;}
.xe5_c00465{left:189.333333pt;}
.x66_c00465{left:190.666667pt;}
.xcc_c00465{left:192.000000pt;}
.x91_c00465{left:195.040000pt;}
.x5c_c00465{left:196.373333pt;}
.x10_c00465{left:198.293333pt;}
.xe8_c00465{left:199.626667pt;}
.x48_c00465{left:201.333333pt;}
.x2b_c00465{left:203.040000pt;}
.xd9_c00465{left:204.000000pt;}
.x38_c00465{left:205.333333pt;}
.x76_c00465{left:207.040000pt;}
.x52_c00465{left:208.000000pt;}
.xf1_c00465{left:210.293333pt;}
.x9f_c00465{left:212.960000pt;}
.x88_c00465{left:214.093333pt;}
.xad_c00465{left:215.626667pt;}
.x5d_c00465{left:218.666667pt;}
.xc7_c00465{left:219.626667pt;}
.xd0_c00465{left:222.666667pt;}
.x103_c00465{left:225.333333pt;}
.x92_c00465{left:226.293333pt;}
.xdd_c00465{left:228.000000pt;}
.x39_c00465{left:229.706667pt;}
.xcd_c00465{left:230.666667pt;}
.x1f_c00465{left:232.000000pt;}
.x2c_c00465{left:232.960000pt;}
.x4_c00465{left:236.000000pt;}
.x67_c00465{left:236.960000pt;}
.xb9_c00465{left:240.000000pt;}
.x11_c00465{left:241.133333pt;}
.xe1_c00465{left:244.000000pt;}
.xce_c00465{left:245.333333pt;}
.x6f_c00465{left:247.040000pt;}
.x77_c00465{left:248.000000pt;}
.x89_c00465{left:250.666667pt;}
.x53_c00465{left:252.000000pt;}
.x93_c00465{left:253.333333pt;}
.xfa_c00465{left:255.040000pt;}
.xba_c00465{left:258.666667pt;}
.x20_c00465{left:260.373333pt;}
.xb1_c00465{left:261.333333pt;}
.x95_c00465{left:263.040000pt;}
.xfb_c00465{left:264.000000pt;}
.x5_c00465{left:266.666667pt;}
.x5e_c00465{left:269.333333pt;}
.xcf_c00465{left:270.293333pt;}
.x12_c00465{left:272.000000pt;}
.x3a_c00465{left:272.960000pt;}
.xe2_c00465{left:274.293333pt;}
.xf2_c00465{left:276.960000pt;}
.xaf_c00465{left:278.293333pt;}
.xe6_c00465{left:280.373333pt;}
.xc3_c00465{left:281.333333pt;}
.xec_c00465{left:282.293333pt;}
.x8a_c00465{left:284.573333pt;}
.xa8_c00465{left:286.293333pt;}
.x3b_c00465{left:289.333333pt;}
.x13_c00465{left:292.000000pt;}
.x6_c00465{left:295.626667pt;}
.xa2_c00465{left:297.333333pt;}
.x2d_c00465{left:300.373333pt;}
.x49_c00465{left:301.333333pt;}
.xe7_c00465{left:304.000000pt;}
.xd1_c00465{left:305.333333pt;}
.x5f_c00465{left:306.293333pt;}
.x54_c00465{left:307.240000pt;}
.xdc_c00465{left:309.333333pt;}
.x14_c00465{left:310.666667pt;}
.x96_c00465{left:312.000000pt;}
.xb2_c00465{left:313.706667pt;}
.x7_c00465{left:315.040000pt;}
.x104_c00465{left:316.373333pt;}
.x68_c00465{left:317.706667pt;}
.x2e_c00465{left:318.666667pt;}
.x15_c00465{left:320.000000pt;}
.x4a_c00465{left:321.333333pt;}
.x21_c00465{left:322.666667pt;}
.xd2_c00465{left:324.000000pt;}
.x80_c00465{left:325.333333pt;}
.xc4_c00465{left:329.333333pt;}
.x100_c00465{left:330.666667pt;}
.xde_c00465{left:333.333333pt;}
.x60_c00465{left:334.666667pt;}
.xda_c00465{left:336.000000pt;}
.x78_c00465{left:337.333333pt;}
.xbb_c00465{left:338.293333pt;}
.x2f_c00465{left:339.626667pt;}
.x8_c00465{left:341.706667pt;}
.x70_c00465{left:343.626667pt;}
.xb3_c00465{left:345.333333pt;}
.x97_c00465{left:346.293333pt;}
.x55_c00465{left:348.000000pt;}
.x3c_c00465{left:349.333333pt;}
.x8b_c00465{left:352.000000pt;}
.xd3_c00465{left:353.333333pt;}
.x16_c00465{left:356.000000pt;}
.xbc_c00465{left:358.666667pt;}
.x4b_c00465{left:360.373333pt;}
.x2_c00465{left:364.000000pt;}
.x56_c00465{left:366.293333pt;}
.x8c_c00465{left:368.000000pt;}
.xf3_c00465{left:370.666667pt;}
.x61_c00465{left:372.000000pt;}
.x9b_c00465{left:374.666667pt;}
.x22_c00465{left:377.706667pt;}
.x79_c00465{left:379.040000pt;}
.x3d_c00465{left:384.000000pt;}
.xb4_c00465{left:385.333333pt;}
.x17_c00465{left:386.666667pt;}
.x30_c00465{left:387.626667pt;}
.x71_c00465{left:389.706667pt;}
.x4c_c00465{left:391.040000pt;}
.x57_c00465{left:393.333333pt;}
.xbd_c00465{left:396.000000pt;}
.x81_c00465{left:397.333333pt;}
.xd4_c00465{left:400.000000pt;}
.x9_c00465{left:400.960000pt;}
.xa3_c00465{left:402.666667pt;}
.x31_c00465{left:404.000000pt;}
.x7a_c00465{left:405.333333pt;}
.x18_c00465{left:408.373333pt;}
.x98_c00465{left:410.666667pt;}
.x8d_c00465{left:413.333333pt;}
.x58_c00465{left:415.040000pt;}
.x4d_c00465{left:416.373333pt;}
.x3e_c00465{left:417.333333pt;}
.x32_c00465{left:418.666667pt;}
.xa_c00465{left:420.000000pt;}
.xf8_c00465{left:420.960000pt;}
.x23_c00465{left:422.666667pt;}
.xdb_c00465{left:424.000000pt;}
.xd5_c00465{left:424.960000pt;}
.x69_c00465{left:427.626667pt;}
.xfd_c00465{left:430.293333pt;}
.x19_c00465{left:432.000000pt;}
.x72_c00465{left:433.706667pt;}
.xdf_c00465{left:434.666667pt;}
.x24_c00465{left:438.293333pt;}
.x59_c00465{left:439.626667pt;}
.x3f_c00465{left:441.706667pt;}
.x7b_c00465{left:443.040000pt;}
.x101_c00465{left:444.373333pt;}
.xfc_c00465{left:445.706667pt;}
.x33_c00465{left:446.666667pt;}
.x1a_c00465{left:447.626667pt;}
.x9c_c00465{left:450.293333pt;}
.x82_c00465{left:452.373333pt;}
.xb_c00465{left:453.706667pt;}
.xd6_c00465{left:459.040000pt;}
.x1b_c00465{left:461.706667pt;}
.xf4_c00465{left:462.666667pt;}
.x40_c00465{left:463.626667pt;}
.x34_c00465{left:465.333333pt;}
.x25_c00465{left:467.040000pt;}
.x8e_c00465{left:468.373333pt;}
.x6a_c00465{left:470.666667pt;}
.xa4_c00465{left:472.000000pt;}
.x35_c00465{left:475.626667pt;}
.x5a_c00465{left:477.333333pt;}
.x41_c00465{left:480.373333pt;}
.xa9_c00465{left:482.293333pt;}
.xe0_c00465{left:484.000000pt;}
.xf5_c00465{left:487.040000pt;}
.x26_c00465{left:488.000000pt;}
.x4e_c00465{left:490.666667pt;}
.x8f_c00465{left:492.000000pt;}
.xd7_c00465{left:499.626667pt;}
.xf9_c00465{left:501.333333pt;}
.x99_c00465{left:502.666667pt;}
.x42_c00465{left:504.000000pt;}
.x6b_c00465{left:504.960000pt;}
.xa5_c00465{left:506.666667pt;}
.xbe_c00465{left:508.960000pt;}
.xed_c00465{left:511.040000pt;}
.xae_c00465{left:513.333333pt;}
.x1c_c00465{left:514.293333pt;}
.xa0_c00465{left:518.666667pt;}
.x83_c00465{left:520.000000pt;}
.x7c_c00465{left:522.666667pt;}
.xc8_c00465{left:524.000000pt;}
.xb5_c00465{left:526.093333pt;}
.x36_c00465{left:527.040000pt;}
.xe3_c00465{left:528.000000pt;}
.x9d_c00465{left:529.133333pt;}
.x90_c00465{left:530.293333pt;}
.xe9_c00465{left:531.626667pt;}
.x73_c00465{left:533.706667pt;}
.xc_c00465{left:534.666667pt;}
.x62_c00465{left:536.373333pt;}
.x84_c00465{left:537.333333pt;}
.xaa_c00465{left:538.466667pt;}
.x5b_c00465{left:540.373333pt;}
.x1d_c00465{left:541.333333pt;}
.xb6_c00465{left:544.373333pt;}
.x9a_c00465{left:546.293333pt;}
.x85_c00465{left:548.373333pt;}
.xd_c00465{left:550.666667pt;}
.xbf_c00465{left:552.960000pt;}
.xc9_c00465{left:553.906667pt;}
.x43_c00465{left:559.040000pt;}
.x4f_c00465{left:560.000000pt;}
.x27_c00465{left:564.373333pt;}
.x6c_c00465{left:565.906667pt;}
.xa1_c00465{left:569.333333pt;}
.x37_c00465{left:570.666667pt;}
.xf6_c00465{left:574.666667pt;}
.xc5_c00465{left:576.000000pt;}
.x7d_c00465{left:577.333333pt;}
.x102_c00465{left:578.666667pt;}
.xab_c00465{left:580.000000pt;}
.x44_c00465{left:582.293333pt;}
.xea_c00465{left:585.333333pt;}
.xa6_c00465{left:586.293333pt;}
.x50_c00465{left:588.000000pt;}
.x74_c00465{left:589.333333pt;}
.xac_c00465{left:592.000000pt;}
.x63_c00465{left:594.293333pt;}
.x7e_c00465{left:596.000000pt;}
.xee_c00465{left:597.333333pt;}
.x9e_c00465{left:598.293333pt;}
.xc0_c00465{left:601.333333pt;}
.x6d_c00465{left:604.000000pt;}
.x75_c00465{left:605.906667pt;}
.x86_c00465{left:612.000000pt;}
.xe_c00465{left:613.333333pt;}
.x45_c00465{left:614.293333pt;}
.x64_c00465{left:617.333333pt;}
.x28_c00465{left:619.040000pt;}
.x51_c00465{left:620.000000pt;}
.xd8_c00465{left:624.000000pt;}
.xc6_c00465{left:626.293333pt;}
.xeb_c00465{left:628.960000pt;}
.x46_c00465{left:631.040000pt;}
.xf_c00465{left:636.960000pt;}
.x29_c00465{left:638.666667pt;}
.xe4_c00465{left:642.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_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_bd65369e515f1e7c3ffcc75e.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7a_c00466{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.mda_c00466{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.mbd_c00466{transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);}
.mdd_c00466{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.mef_c00466{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m57_c00466{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m4f_c00466{transform:matrix(0.364264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364264,0.000000,0.000000,0.250000,0,0);}
.m75_c00466{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.mac_c00466{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m99_c00466{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mba_c00466{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mf5_c00466{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.med_c00466{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.me4_c00466{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.mdb_c00466{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.me5_c00466{transform:matrix(0.378151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378151,0.000000,0.000000,0.250000,0,0);}
.mc1_c00466{transform:matrix(0.379985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379985,0.000000,0.000000,0.250000,0,0);}
.m86_c00466{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m5a_c00466{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m8a_c00466{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.me_c00466{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m78_c00466{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.mcd_c00466{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.me2_c00466{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.mb9_c00466{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m36_c00466{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m8d_c00466{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m82_c00466{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m2e_c00466{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m53_c00466{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mdf_c00466{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m70_c00466{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.mf2_c00466{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m19_c00466{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m4a_c00466{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m18_c00466{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.m9a_c00466{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m98_c00466{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.me6_c00466{transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);}
.m22_c00466{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m93_c00466{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.mec_c00466{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.maa_c00466{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.ma2_c00466{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m73_c00466{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m7c_c00466{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.mcc_c00466{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.mb4_c00466{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.me8_c00466{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m6_c00466{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m4b_c00466{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.me7_c00466{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.mde_c00466{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m2c_c00466{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.ma8_c00466{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m2_c00466{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.mbc_c00466{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m3f_c00466{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.me3_c00466{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mb1_c00466{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mab_c00466{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.md8_c00466{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m6b_c00466{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.mb7_c00466{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.md0_c00466{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.ma4_c00466{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.mbb_c00466{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m58_c00466{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m52_c00466{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m48_c00466{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m5_c00466{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m30_c00466{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.ma5_c00466{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.md6_c00466{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m5b_c00466{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m9b_c00466{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mbf_c00466{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m79_c00466{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m1a_c00466{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m7f_c00466{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.mf0_c00466{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.ma6_c00466{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m39_c00466{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m59_c00466{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m1b_c00466{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m43_c00466{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m69_c00466{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.mdc_c00466{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.ma7_c00466{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m60_c00466{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m49_c00466{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m1e_c00466{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mc2_c00466{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m8b_c00466{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.mb5_c00466{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m66_c00466{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m5d_c00466{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m51_c00466{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m6d_c00466{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m1c_c00466{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m90_c00466{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.mc5_c00466{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.ma9_c00466{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.mf1_c00466{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m7b_c00466{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m3a_c00466{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.mee_c00466{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m89_c00466{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m7_c00466{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m7d_c00466{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m9f_c00466{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m34_c00466{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m42_c00466{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m12_c00466{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m23_c00466{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m1_c00466{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.md9_c00466{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m95_c00466{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m10_c00466{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_c00466{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mcf_c00466{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m13_c00466{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m44_c00466{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m8_c00466{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mcb_c00466{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m5f_c00466{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m80_c00466{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m5e_c00466{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.md1_c00466{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m11_c00466{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m91_c00466{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m62_c00466{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.md7_c00466{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mf3_c00466{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m29_c00466{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mc3_c00466{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m31_c00466{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m1f_c00466{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m50_c00466{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m65_c00466{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.ma0_c00466{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mad_c00466{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mb8_c00466{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m3e_c00466{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m6a_c00466{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mb_c00466{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mc4_c00466{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.md_c00466{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m4_c00466{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m9c_c00466{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.ma3_c00466{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mf_c00466{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m55_c00466{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mf4_c00466{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m35_c00466{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m46_c00466{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m2b_c00466{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m85_c00466{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m88_c00466{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.md5_c00466{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m84_c00466{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m71_c00466{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.m4e_c00466{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m9e_c00466{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m3d_c00466{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mc_c00466{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m3b_c00466{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.mc7_c00466{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m6f_c00466{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m76_c00466{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m5c_c00466{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m4c_c00466{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m20_c00466{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m74_c00466{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.me1_c00466{transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);}
.m14_c00466{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.md4_c00466{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.me0_c00466{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.maf_c00466{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m8e_c00466{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m41_c00466{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m28_c00466{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m77_c00466{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m8f_c00466{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.meb_c00466{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m26_c00466{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m17_c00466{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.me9_c00466{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m96_c00466{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.ma_c00466{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mea_c00466{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.mc0_c00466{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m32_c00466{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m61_c00466{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m54_c00466{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mb6_c00466{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m56_c00466{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m2a_c00466{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.mae_c00466{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m47_c00466{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mb3_c00466{transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);}
.m64_c00466{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.mb0_c00466{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.ma1_c00466{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m15_c00466{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m72_c00466{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m16_c00466{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m45_c00466{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m83_c00466{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_c00466{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m25_c00466{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m7e_c00466{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m63_c00466{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_c00466{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m6e_c00466{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.mc6_c00466{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m4d_c00466{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.md2_c00466{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m87_c00466{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.mb2_c00466{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mc8_c00466{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m37_c00466{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mca_c00466{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m0_c00466{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m81_c00466{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.m8c_c00466{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m1d_c00466{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m2d_c00466{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m9_c00466{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m97_c00466{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m68_c00466{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m24_c00466{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m2f_c00466{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m67_c00466{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.md3_c00466{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m21_c00466{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m94_c00466{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.mce_c00466{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.mbe_c00466{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m38_c00466{transform:matrix(0.801282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.801282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.801282,0.000000,0.000000,0.250000,0,0);}
.m6c_c00466{transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);}
.m3c_c00466{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m9d_c00466{transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);}
.m92_c00466{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mc9_c00466{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.m3_c00466{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,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:-16.889280px;}
.ws3_c00466{word-spacing:0.000000px;}
.ws2_c00466{word-spacing:6.830600px;}
.ws1_c00466{word-spacing:8.689161px;}
._0_c00466{width:6.661200px;}
.fc0_c00466{color:transparent;}
.fs3_c00466{font-size:3.420000px;}
.fs0_c00466{font-size:18.720000px;}
.fs7_c00466{font-size:20.400000px;}
.fs4_c00466{font-size:25.500000px;}
.fs1_c00466{font-size:28.920000px;}
.fs5_c00466{font-size:32.340000px;}
.fs2_c00466{font-size:35.700000px;}
.fs6_c00466{font-size:39.120000px;}
.y0_c00466{bottom:0.000000px;}
.yd0_c00466{bottom:250.905000px;}
.yd1_c00466{bottom:252.180000px;}
.yce_c00466{bottom:252.405000px;}
.ycb_c00466{bottom:253.245000px;}
.ycd_c00466{bottom:254.325000px;}
.ycf_c00466{bottom:254.970000px;}
.ycc_c00466{bottom:255.405000px;}
.yc8_c00466{bottom:270.825000px;}
.yca_c00466{bottom:272.745000px;}
.yc7_c00466{bottom:273.825000px;}
.yc9_c00466{bottom:274.905000px;}
.yc6_c00466{bottom:291.405000px;}
.yc5_c00466{bottom:291.825000px;}
.yc4_c00466{bottom:292.245000px;}
.yc3_c00466{bottom:293.325000px;}
.yc2_c00466{bottom:294.405000px;}
.ybf_c00466{bottom:311.745000px;}
.yc1_c00466{bottom:312.825000px;}
.ybe_c00466{bottom:313.905000px;}
.yc0_c00466{bottom:314.970000px;}
.ybc_c00466{bottom:330.405000px;}
.yba_c00466{bottom:331.245000px;}
.ybd_c00466{bottom:332.745000px;}
.yb9_c00466{bottom:333.405000px;}
.ybb_c00466{bottom:333.630000px;}
.yb6_c00466{bottom:350.745000px;}
.yb7_c00466{bottom:352.245000px;}
.yb5_c00466{bottom:352.905000px;}
.yb8_c00466{bottom:354.405000px;}
.yb2_c00466{bottom:370.245000px;}
.yb1_c00466{bottom:372.405000px;}
.yb4_c00466{bottom:372.630000px;}
.yb3_c00466{bottom:373.470000px;}
.yae_c00466{bottom:389.745000px;}
.ya9_c00466{bottom:389.970000px;}
.yad_c00466{bottom:390.825000px;}
.yaa_c00466{bottom:391.245000px;}
.yb0_c00466{bottom:391.905000px;}
.yaf_c00466{bottom:392.130000px;}
.yac_c00466{bottom:392.970000px;}
.yab_c00466{bottom:393.405000px;}
.ya8_c00466{bottom:409.680000px;}
.ya7_c00466{bottom:410.745000px;}
.ya5_c00466{bottom:412.905000px;}
.ya6_c00466{bottom:412.920000px;}
.ya2_c00466{bottom:430.245000px;}
.ya4_c00466{bottom:431.970000px;}
.ya3_c00466{bottom:432.405000px;}
.y9e_c00466{bottom:449.745000px;}
.ya1_c00466{bottom:451.470000px;}
.y9f_c00466{bottom:451.905000px;}
.ya0_c00466{bottom:452.130000px;}
.y9a_c00466{bottom:469.245000px;}
.y9c_c00466{bottom:469.905000px;}
.y9d_c00466{bottom:470.130000px;}
.y9b_c00466{bottom:471.405000px;}
.y99_c00466{bottom:471.630000px;}
.y98_c00466{bottom:472.470000px;}
.y95_c00466{bottom:487.470000px;}
.y92_c00466{bottom:488.745000px;}
.y97_c00466{bottom:488.970000px;}
.y94_c00466{bottom:489.825000px;}
.y96_c00466{bottom:490.050000px;}
.y93_c00466{bottom:490.905000px;}
.y91_c00466{bottom:507.405000px;}
.y8f_c00466{bottom:508.680000px;}
.y8e_c00466{bottom:509.745000px;}
.y90_c00466{bottom:510.630000px;}
.y8d_c00466{bottom:511.905000px;}
.y8c_c00466{bottom:529.245000px;}
.y88_c00466{bottom:530.130000px;}
.y89_c00466{bottom:530.325000px;}
.y8a_c00466{bottom:530.970000px;}
.y8b_c00466{bottom:531.405000px;}
.y85_c00466{bottom:548.745000px;}
.y86_c00466{bottom:549.630000px;}
.y84_c00466{bottom:550.470000px;}
.y83_c00466{bottom:550.905000px;}
.y87_c00466{bottom:551.970000px;}
.y80_c00466{bottom:568.245000px;}
.y82_c00466{bottom:569.130000px;}
.y81_c00466{bottom:569.970000px;}
.y7f_c00466{bottom:570.405000px;}
.y7d_c00466{bottom:586.245000px;}
.y7c_c00466{bottom:587.745000px;}
.y7a_c00466{bottom:588.825000px;}
.y7e_c00466{bottom:589.470000px;}
.y7b_c00466{bottom:589.905000px;}
.y76_c00466{bottom:608.325000px;}
.y79_c00466{bottom:608.745000px;}
.y74_c00466{bottom:609.405000px;}
.y77_c00466{bottom:609.630000px;}
.y75_c00466{bottom:610.470000px;}
.y78_c00466{bottom:610.905000px;}
.y72_c00466{bottom:628.245000px;}
.y70_c00466{bottom:628.905000px;}
.y73_c00466{bottom:629.130000px;}
.y71_c00466{bottom:630.405000px;}
.y6e_c00466{bottom:647.745000px;}
.y6b_c00466{bottom:648.405000px;}
.y6c_c00466{bottom:648.630000px;}
.y6f_c00466{bottom:649.470000px;}
.y6d_c00466{bottom:649.905000px;}
.y68_c00466{bottom:665.745000px;}
.y69_c00466{bottom:667.245000px;}
.y66_c00466{bottom:668.970000px;}
.y67_c00466{bottom:669.405000px;}
.y6a_c00466{bottom:670.470000px;}
.y60_c00466{bottom:685.905000px;}
.y63_c00466{bottom:686.745000px;}
.y65_c00466{bottom:688.050000px;}
.y61_c00466{bottom:688.470000px;}
.y64_c00466{bottom:688.905000px;}
.y62_c00466{bottom:689.130000px;}
.y5c_c00466{bottom:706.245000px;}
.y5e_c00466{bottom:707.325000px;}
.y5b_c00466{bottom:708.405000px;}
.y5d_c00466{bottom:708.630000px;}
.y5f_c00466{bottom:709.905000px;}
.y54_c00466{bottom:724.905000px;}
.y56_c00466{bottom:725.745000px;}
.y57_c00466{bottom:725.970000px;}
.y58_c00466{bottom:726.825000px;}
.y5a_c00466{bottom:727.245000px;}
.y53_c00466{bottom:727.905000px;}
.y59_c00466{bottom:728.130000px;}
.y55_c00466{bottom:728.970000px;}
.y50_c00466{bottom:744.405000px;}
.y4f_c00466{bottom:745.245000px;}
.y51_c00466{bottom:745.470000px;}
.y4e_c00466{bottom:747.405000px;}
.y4d_c00466{bottom:748.470000px;}
.y52_c00466{bottom:748.905000px;}
.y4c_c00466{bottom:764.745000px;}
.y4b_c00466{bottom:767.325000px;}
.y4a_c00466{bottom:768.405000px;}
.y49_c00466{bottom:785.745000px;}
.y48_c00466{bottom:787.905000px;}
.y46_c00466{bottom:804.405000px;}
.y44_c00466{bottom:805.245000px;}
.y45_c00466{bottom:805.470000px;}
.y41_c00466{bottom:806.325000px;}
.y43_c00466{bottom:806.550000px;}
.y42_c00466{bottom:807.405000px;}
.y47_c00466{bottom:807.630000px;}
.y3f_c00466{bottom:824.745000px;}
.y3d_c00466{bottom:826.905000px;}
.y40_c00466{bottom:827.130000px;}
.y3e_c00466{bottom:827.970000px;}
.y3c_c00466{bottom:846.405000px;}
.y39_c00466{bottom:861.405000px;}
.y3b_c00466{bottom:862.905000px;}
.y38_c00466{bottom:863.745000px;}
.y3a_c00466{bottom:864.630000px;}
.y37_c00466{bottom:865.905000px;}
.y34_c00466{bottom:883.245000px;}
.y36_c00466{bottom:884.325000px;}
.y32_c00466{bottom:884.745000px;}
.y31_c00466{bottom:885.405000px;}
.y33_c00466{bottom:885.630000px;}
.y35_c00466{bottom:886.905000px;}
.y2c_c00466{bottom:903.180000px;}
.y30_c00466{bottom:904.245000px;}
.y2e_c00466{bottom:905.130000px;}
.y2f_c00466{bottom:905.325000px;}
.y2d_c00466{bottom:906.405000px;}
.y2a_c00466{bottom:921.405000px;}
.y27_c00466{bottom:922.245000px;}
.y24_c00466{bottom:923.745000px;}
.y23_c00466{bottom:924.405000px;}
.y29_c00466{bottom:924.630000px;}
.y28_c00466{bottom:924.825000px;}
.y26_c00466{bottom:925.470000px;}
.y25_c00466{bottom:925.905000px;}
.y2b_c00466{bottom:926.970000px;}
.y22_c00466{bottom:940.905000px;}
.y20_c00466{bottom:942.405000px;}
.y1f_c00466{bottom:943.245000px;}
.y1e_c00466{bottom:944.130000px;}
.y21_c00466{bottom:944.970000px;}
.y1d_c00466{bottom:945.405000px;}
.y18_c00466{bottom:962.745000px;}
.y1a_c00466{bottom:963.630000px;}
.y1c_c00466{bottom:963.825000px;}
.y19_c00466{bottom:964.470000px;}
.y17_c00466{bottom:964.905000px;}
.y1b_c00466{bottom:965.130000px;}
.y13_c00466{bottom:982.245000px;}
.y15_c00466{bottom:984.405000px;}
.y14_c00466{bottom:984.630000px;}
.y16_c00466{bottom:985.470000px;}
.y11_c00466{bottom:1001.745000px;}
.yf_c00466{bottom:1002.630000px;}
.ye_c00466{bottom:1003.905000px;}
.y12_c00466{bottom:1004.130000px;}
.y10_c00466{bottom:1004.970000px;}
.ya_c00466{bottom:1021.245000px;}
.yb_c00466{bottom:1021.470000px;}
.yc_c00466{bottom:1023.405000px;}
.yd_c00466{bottom:1023.630000px;}
.y8_c00466{bottom:1040.745000px;}
.y7_c00466{bottom:1042.905000px;}
.y9_c00466{bottom:1044.405000px;}
.y3_c00466{bottom:1061.745000px;}
.y6_c00466{bottom:1062.630000px;}
.y5_c00466{bottom:1063.905000px;}
.y4_c00466{bottom:1063.920000px;}
.y2_c00466{bottom:1099.905000px;}
.y1_c00466{bottom:1101.630000px;}
.h4_c00466{height:4.206533px;}
.h1_c00466{height:23.025234px;}
.h8_c00466{height:25.091602px;}
.h5_c00466{height:31.364502px;}
.h2_c00466{height:35.571035px;}
.h6_c00466{height:39.777568px;}
.h3_c00466{height:43.910303px;}
.h7_c00466{height:48.116836px;}
.h0_c00466{height:1335.000000px;}
.w0_c00466{width:880.500000px;}
.x0_c00466{left:0.000000px;}
.xf_c00466{left:151.080000px;}
.x8f_c00466{left:153.000000px;}
.xec_c00466{left:154.500000px;}
.x111_c00466{left:157.275000px;}
.x26_c00466{left:166.500000px;}
.x3_c00466{left:167.580000px;}
.xf9_c00466{left:168.645000px;}
.x6c_c00466{left:169.920000px;}
.x59_c00466{left:171.420000px;}
.xdb_c00466{left:172.920000px;}
.xab_c00466{left:175.500000px;}
.xd5_c00466{left:178.500000px;}
.xc6_c00466{left:181.500000px;}
.x9c_c00466{left:185.580000px;}
.x7a_c00466{left:189.000000px;}
.x27_c00466{left:190.500000px;}
.xc7_c00466{left:192.420000px;}
.x6d_c00466{left:195.000000px;}
.x3f_c00466{left:197.580000px;}
.x5a_c00466{left:199.920000px;}
.xd0_c00466{left:201.000000px;}
.x9d_c00466{left:202.080000px;}
.x28_c00466{left:204.000000px;}
.x79_c00466{left:205.500000px;}
.x85_c00466{left:206.580000px;}
.xfc_c00466{left:208.920000px;}
.xb8_c00466{left:211.500000px;}
.xe5_c00466{left:213.420000px;}
.xa4_c00466{left:214.920000px;}
.x7b_c00466{left:216.000000px;}
.x4a_c00466{left:217.500000px;}
.x40_c00466{left:219.420000px;}
.x10_c00466{left:220.500000px;}
.x92_c00466{left:222.420000px;}
.x10c_c00466{left:224.355000px;}
.x90_c00466{left:226.080000px;}
.x35_c00466{left:228.000000px;}
.xd6_c00466{left:229.500000px;}
.x1d_c00466{left:231.420000px;}
.xc0_c00466{left:234.420000px;}
.x29_c00466{left:237.000000px;}
.x4b_c00466{left:238.080000px;}
.x86_c00466{left:240.420000px;}
.xa9_c00466{left:243.000000px;}
.x65_c00466{left:244.500000px;}
.xf5_c00466{left:246.000000px;}
.x41_c00466{left:247.920000px;}
.x7c_c00466{left:250.080000px;}
.xed_c00466{left:253.500000px;}
.x4_c00466{left:255.000000px;}
.xdc_c00466{left:256.920000px;}
.xa5_c00466{left:259.920000px;}
.x2a_c00466{left:264.420000px;}
.xd7_c00466{left:266.580000px;}
.x5b_c00466{left:268.500000px;}
.x87_c00466{left:270.000000px;}
.xb0_c00466{left:271.500000px;}
.xf6_c00466{left:273.420000px;}
.x5_c00466{left:274.500000px;}
.x10a_c00466{left:275.775000px;}
.x66_c00466{left:277.500000px;}
.xac_c00466{left:279.000000px;}
.x4c_c00466{left:282.000000px;}
.x9e_c00466{left:283.920000px;}
.xc8_c00466{left:285.000000px;}
.xcd_c00466{left:287.580000px;}
.x93_c00466{left:288.855000px;}
.x7d_c00466{left:291.420000px;}
.x6e_c00466{left:292.500000px;}
.xee_c00466{left:294.420000px;}
.xa6_c00466{left:296.580000px;}
.x11_c00466{left:298.500000px;}
.x88_c00466{left:302.580000px;}
.x36_c00466{left:304.500000px;}
.x42_c00466{left:306.420000px;}
.x5c_c00466{left:308.580000px;}
.x6_c00466{left:310.920000px;}
.x4d_c00466{left:313.500000px;}
.xb9_c00466{left:315.000000px;}
.x1e_c00466{left:316.080000px;}
.x107_c00466{left:318.000000px;}
.x2b_c00466{left:319.500000px;}
.x89_c00466{left:322.500000px;}
.x1f_c00466{left:324.000000px;}
.x94_c00466{left:327.000000px;}
.x12_c00466{left:328.500000px;}
.x10d_c00466{left:329.580000px;}
.xfd_c00466{left:331.080000px;}
.xef_c00466{left:333.000000px;}
.x43_c00466{left:334.500000px;}
.x67_c00466{left:336.420000px;}
.xd1_c00466{left:337.920000px;}
.x5d_c00466{left:339.000000px;}
.x74_c00466{left:340.500000px;}
.x91_c00466{left:343.920000px;}
.xe6_c00466{left:348.000000px;}
.x4e_c00466{left:349.080000px;}
.xb1_c00466{left:350.580000px;}
.xba_c00466{left:354.420000px;}
.x20_c00466{left:357.420000px;}
.xc1_c00466{left:361.500000px;}
.xd2_c00466{left:363.000000px;}
.x68_c00466{left:364.920000px;}
.xf0_c00466{left:369.000000px;}
.x95_c00466{left:372.000000px;}
.x2c_c00466{left:373.500000px;}
.x13_c00466{left:376.080000px;}
.x75_c00466{left:378.000000px;}
.x7_c00466{left:379.920000px;}
.x5e_c00466{left:381.000000px;}
.x21_c00466{left:382.500000px;}
.xdd_c00466{left:384.000000px;}
.x96_c00466{left:388.500000px;}
.x37_c00466{left:391.500000px;}
.x14_c00466{left:393.420000px;}
.x108_c00466{left:395.775000px;}
.x103_c00466{left:397.080000px;}
.x2d_c00466{left:402.420000px;}
.x97_c00466{left:403.500000px;}
.x1_c00466{left:405.000000px;}
.xe7_c00466{left:406.500000px;}
.xc9_c00466{left:408.000000px;}
.x6f_c00466{left:411.000000px;}
.xaa_c00466{left:414.000000px;}
.x22_c00466{left:418.500000px;}
.x15_c00466{left:420.420000px;}
.xad_c00466{left:422.355000px;}
.xca_c00466{left:423.645000px;}
.x38_c00466{left:424.920000px;}
.xf7_c00466{left:426.000000px;}
.xfe_c00466{left:427.500000px;}
.x2e_c00466{left:429.000000px;}
.x70_c00466{left:430.920000px;}
.x4f_c00466{left:432.420000px;}
.x7e_c00466{left:433.500000px;}
.x98_c00466{left:436.500000px;}
.xe1_c00466{left:438.000000px;}
.xf1_c00466{left:439.920000px;}
.xae_c00466{left:441.000000px;}
.x23_c00466{left:442.500000px;}
.x44_c00466{left:447.000000px;}
.xc2_c00466{left:448.080000px;}
.x76_c00466{left:451.080000px;}
.xde_c00466{left:456.420000px;}
.x5f_c00466{left:457.500000px;}
.x7f_c00466{left:459.000000px;}
.x8_c00466{left:462.000000px;}
.x10b_c00466{left:463.920000px;}
.x16_c00466{left:465.000000px;}
.x9f_c00466{left:469.500000px;}
.x24_c00466{left:471.000000px;}
.x2f_c00466{left:472.500000px;}
.xbb_c00466{left:473.580000px;}
.xd8_c00466{left:475.920000px;}
.xb2_c00466{left:477.000000px;}
.x69_c00466{left:478.500000px;}
.x50_c00466{left:479.580000px;}
.x9_c00466{left:481.080000px;}
.xd3_c00466{left:483.420000px;}
.xfa_c00466{left:484.500000px;}
.x104_c00466{left:485.775000px;}
.x80_c00466{left:487.500000px;}
.xe8_c00466{left:490.500000px;}
.xc3_c00466{left:493.500000px;}
.xa0_c00466{left:495.000000px;}
.x99_c00466{left:496.080000px;}
.x51_c00466{left:498.420000px;}
.xdf_c00466{left:499.920000px;}
.x60_c00466{left:501.000000px;}
.xf2_c00466{left:502.080000px;}
.x39_c00466{left:505.920000px;}
.xf8_c00466{left:507.000000px;}
.x8a_c00466{left:510.000000px;}
.xaf_c00466{left:511.500000px;}
.xe9_c00466{left:512.580000px;}
.xbc_c00466{left:514.500000px;}
.x17_c00466{left:517.500000px;}
.x45_c00466{left:519.000000px;}
.x81_c00466{left:520.080000px;}
.xb3_c00466{left:522.000000px;}
.x61_c00466{left:523.500000px;}
.x52_c00466{left:525.420000px;}
.x30_c00466{left:526.500000px;}
.xa_c00466{left:528.000000px;}
.xcb_c00466{left:529.080000px;}
.xfb_c00466{left:530.580000px;}
.x18_c00466{left:532.080000px;}
.xe0_c00466{left:535.500000px;}
.xe2_c00466{left:537.000000px;}
.x46_c00466{left:538.500000px;}
.xff_c00466{left:541.080000px;}
.x9a_c00466{left:542.355000px;}
.x101_c00466{left:544.500000px;}
.x25_c00466{left:546.000000px;}
.x62_c00466{left:547.080000px;}
.x10e_c00466{left:550.080000px;}
.x53_c00466{left:552.000000px;}
.xb_c00466{left:553.080000px;}
.x47_c00466{left:555.000000px;}
.xcc_c00466{left:558.000000px;}
.x71_c00466{left:559.920000px;}
.xea_c00466{left:561.000000px;}
.xf3_c00466{left:562.920000px;}
.x77_c00466{left:564.420000px;}
.xc4_c00466{left:567.000000px;}
.x54_c00466{left:568.080000px;}
.xbd_c00466{left:570.000000px;}
.x3a_c00466{left:571.500000px;}
.xe3_c00466{left:573.000000px;}
.xce_c00466{left:574.080000px;}
.xc_c00466{left:577.920000px;}
.x105_c00466{left:579.000000px;}
.x82_c00466{left:580.920000px;}
.x19_c00466{left:583.500000px;}
.x72_c00466{left:585.420000px;}
.x31_c00466{left:586.500000px;}
.xb4_c00466{left:588.000000px;}
.xbe_c00466{left:589.920000px;}
.xeb_c00466{left:592.080000px;}
.xd4_c00466{left:594.000000px;}
.xd9_c00466{left:595.500000px;}
.x3b_c00466{left:598.080000px;}
.x32_c00466{left:600.000000px;}
.x106_c00466{left:601.500000px;}
.xd_c00466{left:607.080000px;}
.x48_c00466{left:609.420000px;}
.x55_c00466{left:611.580000px;}
.xbf_c00466{left:615.000000px;}
.x10f_c00466{left:616.500000px;}
.x8b_c00466{left:619.500000px;}
.xa1_c00466{left:621.000000px;}
.xe4_c00466{left:622.920000px;}
.x6a_c00466{left:624.000000px;}
.x9b_c00466{left:627.000000px;}
.x3c_c00466{left:631.500000px;}
.x56_c00466{left:633.000000px;}
.x109_c00466{left:634.275000px;}
.xa2_c00466{left:637.500000px;}
.xa7_c00466{left:639.000000px;}
.x83_c00466{left:640.500000px;}
.xb5_c00466{left:641.580000px;}
.x8c_c00466{left:643.500000px;}
.x1a_c00466{left:646.500000px;}
.x78_c00466{left:648.000000px;}
.x33_c00466{left:649.920000px;}
.x57_c00466{left:652.080000px;}
.x63_c00466{left:654.420000px;}
.xe_c00466{left:655.500000px;}
.xb6_c00466{left:660.420000px;}
.xa8_c00466{left:663.000000px;}
.xa3_c00466{left:664.080000px;}
.x8d_c00466{left:667.920000px;}
.x58_c00466{left:671.580000px;}
.x110_c00466{left:673.920000px;}
.x100_c00466{left:675.420000px;}
.xc5_c00466{left:676.500000px;}
.x3d_c00466{left:679.080000px;}
.x1b_c00466{left:681.420000px;}
.xb7_c00466{left:687.000000px;}
.x73_c00466{left:688.500000px;}
.xf4_c00466{left:691.080000px;}
.x34_c00466{left:693.420000px;}
.x8e_c00466{left:696.000000px;}
.x6b_c00466{left:697.920000px;}
.x49_c00466{left:699.000000px;}
.xda_c00466{left:702.000000px;}
.x2_c00466{left:703.500000px;}
.x3e_c00466{left:706.920000px;}
.x84_c00466{left:708.000000px;}
.xcf_c00466{left:709.500000px;}
.x64_c00466{left:711.645000px;}
.x1c_c00466{left:713.580000px;}
.x102_c00466{left:717.000000px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.ls0_c00466{letter-spacing:0.000000pt;}
.ws0_c00466{word-spacing:-15.012693pt;}
.ws3_c00466{word-spacing:0.000000pt;}
.ws2_c00466{word-spacing:6.071644pt;}
.ws1_c00466{word-spacing:7.723699pt;}
._0_c00466{width:5.921067pt;}
.fs3_c00466{font-size:3.040000pt;}
.fs0_c00466{font-size:16.640000pt;}
.fs7_c00466{font-size:18.133333pt;}
.fs4_c00466{font-size:22.666667pt;}
.fs1_c00466{font-size:25.706667pt;}
.fs5_c00466{font-size:28.746667pt;}
.fs2_c00466{font-size:31.733333pt;}
.fs6_c00466{font-size:34.773333pt;}
.y0_c00466{bottom:0.000000pt;}
.yd0_c00466{bottom:223.026667pt;}
.yd1_c00466{bottom:224.160000pt;}
.yce_c00466{bottom:224.360000pt;}
.ycb_c00466{bottom:225.106667pt;}
.ycd_c00466{bottom:226.066667pt;}
.ycf_c00466{bottom:226.640000pt;}
.ycc_c00466{bottom:227.026667pt;}
.yc8_c00466{bottom:240.733333pt;}
.yca_c00466{bottom:242.440000pt;}
.yc7_c00466{bottom:243.400000pt;}
.yc9_c00466{bottom:244.360000pt;}
.yc6_c00466{bottom:259.026667pt;}
.yc5_c00466{bottom:259.400000pt;}
.yc4_c00466{bottom:259.773333pt;}
.yc3_c00466{bottom:260.733333pt;}
.yc2_c00466{bottom:261.693333pt;}
.ybf_c00466{bottom:277.106667pt;}
.yc1_c00466{bottom:278.066667pt;}
.ybe_c00466{bottom:279.026667pt;}
.yc0_c00466{bottom:279.973333pt;}
.ybc_c00466{bottom:293.693333pt;}
.yba_c00466{bottom:294.440000pt;}
.ybd_c00466{bottom:295.773333pt;}
.yb9_c00466{bottom:296.360000pt;}
.ybb_c00466{bottom:296.560000pt;}
.yb6_c00466{bottom:311.773333pt;}
.yb7_c00466{bottom:313.106667pt;}
.yb5_c00466{bottom:313.693333pt;}
.yb8_c00466{bottom:315.026667pt;}
.yb2_c00466{bottom:329.106667pt;}
.yb1_c00466{bottom:331.026667pt;}
.yb4_c00466{bottom:331.226667pt;}
.yb3_c00466{bottom:331.973333pt;}
.yae_c00466{bottom:346.440000pt;}
.ya9_c00466{bottom:346.640000pt;}
.yad_c00466{bottom:347.400000pt;}
.yaa_c00466{bottom:347.773333pt;}
.yb0_c00466{bottom:348.360000pt;}
.yaf_c00466{bottom:348.560000pt;}
.yac_c00466{bottom:349.306667pt;}
.yab_c00466{bottom:349.693333pt;}
.ya8_c00466{bottom:364.160000pt;}
.ya7_c00466{bottom:365.106667pt;}
.ya5_c00466{bottom:367.026667pt;}
.ya6_c00466{bottom:367.040000pt;}
.ya2_c00466{bottom:382.440000pt;}
.ya4_c00466{bottom:383.973333pt;}
.ya3_c00466{bottom:384.360000pt;}
.y9e_c00466{bottom:399.773333pt;}
.ya1_c00466{bottom:401.306667pt;}
.y9f_c00466{bottom:401.693333pt;}
.ya0_c00466{bottom:401.893333pt;}
.y9a_c00466{bottom:417.106667pt;}
.y9c_c00466{bottom:417.693333pt;}
.y9d_c00466{bottom:417.893333pt;}
.y9b_c00466{bottom:419.026667pt;}
.y99_c00466{bottom:419.226667pt;}
.y98_c00466{bottom:419.973333pt;}
.y95_c00466{bottom:433.306667pt;}
.y92_c00466{bottom:434.440000pt;}
.y97_c00466{bottom:434.640000pt;}
.y94_c00466{bottom:435.400000pt;}
.y96_c00466{bottom:435.600000pt;}
.y93_c00466{bottom:436.360000pt;}
.y91_c00466{bottom:451.026667pt;}
.y8f_c00466{bottom:452.160000pt;}
.y8e_c00466{bottom:453.106667pt;}
.y90_c00466{bottom:453.893333pt;}
.y8d_c00466{bottom:455.026667pt;}
.y8c_c00466{bottom:470.440000pt;}
.y88_c00466{bottom:471.226667pt;}
.y89_c00466{bottom:471.400000pt;}
.y8a_c00466{bottom:471.973333pt;}
.y8b_c00466{bottom:472.360000pt;}
.y85_c00466{bottom:487.773333pt;}
.y86_c00466{bottom:488.560000pt;}
.y84_c00466{bottom:489.306667pt;}
.y83_c00466{bottom:489.693333pt;}
.y87_c00466{bottom:490.640000pt;}
.y80_c00466{bottom:505.106667pt;}
.y82_c00466{bottom:505.893333pt;}
.y81_c00466{bottom:506.640000pt;}
.y7f_c00466{bottom:507.026667pt;}
.y7d_c00466{bottom:521.106667pt;}
.y7c_c00466{bottom:522.440000pt;}
.y7a_c00466{bottom:523.400000pt;}
.y7e_c00466{bottom:523.973333pt;}
.y7b_c00466{bottom:524.360000pt;}
.y76_c00466{bottom:540.733333pt;}
.y79_c00466{bottom:541.106667pt;}
.y74_c00466{bottom:541.693333pt;}
.y77_c00466{bottom:541.893333pt;}
.y75_c00466{bottom:542.640000pt;}
.y78_c00466{bottom:543.026667pt;}
.y72_c00466{bottom:558.440000pt;}
.y70_c00466{bottom:559.026667pt;}
.y73_c00466{bottom:559.226667pt;}
.y71_c00466{bottom:560.360000pt;}
.y6e_c00466{bottom:575.773333pt;}
.y6b_c00466{bottom:576.360000pt;}
.y6c_c00466{bottom:576.560000pt;}
.y6f_c00466{bottom:577.306667pt;}
.y6d_c00466{bottom:577.693333pt;}
.y68_c00466{bottom:591.773333pt;}
.y69_c00466{bottom:593.106667pt;}
.y66_c00466{bottom:594.640000pt;}
.y67_c00466{bottom:595.026667pt;}
.y6a_c00466{bottom:595.973333pt;}
.y60_c00466{bottom:609.693333pt;}
.y63_c00466{bottom:610.440000pt;}
.y65_c00466{bottom:611.600000pt;}
.y61_c00466{bottom:611.973333pt;}
.y64_c00466{bottom:612.360000pt;}
.y62_c00466{bottom:612.560000pt;}
.y5c_c00466{bottom:627.773333pt;}
.y5e_c00466{bottom:628.733333pt;}
.y5b_c00466{bottom:629.693333pt;}
.y5d_c00466{bottom:629.893333pt;}
.y5f_c00466{bottom:631.026667pt;}
.y54_c00466{bottom:644.360000pt;}
.y56_c00466{bottom:645.106667pt;}
.y57_c00466{bottom:645.306667pt;}
.y58_c00466{bottom:646.066667pt;}
.y5a_c00466{bottom:646.440000pt;}
.y53_c00466{bottom:647.026667pt;}
.y59_c00466{bottom:647.226667pt;}
.y55_c00466{bottom:647.973333pt;}
.y50_c00466{bottom:661.693333pt;}
.y4f_c00466{bottom:662.440000pt;}
.y51_c00466{bottom:662.640000pt;}
.y4e_c00466{bottom:664.360000pt;}
.y4d_c00466{bottom:665.306667pt;}
.y52_c00466{bottom:665.693333pt;}
.y4c_c00466{bottom:679.773333pt;}
.y4b_c00466{bottom:682.066667pt;}
.y4a_c00466{bottom:683.026667pt;}
.y49_c00466{bottom:698.440000pt;}
.y48_c00466{bottom:700.360000pt;}
.y46_c00466{bottom:715.026667pt;}
.y44_c00466{bottom:715.773333pt;}
.y45_c00466{bottom:715.973333pt;}
.y41_c00466{bottom:716.733333pt;}
.y43_c00466{bottom:716.933333pt;}
.y42_c00466{bottom:717.693333pt;}
.y47_c00466{bottom:717.893333pt;}
.y3f_c00466{bottom:733.106667pt;}
.y3d_c00466{bottom:735.026667pt;}
.y40_c00466{bottom:735.226667pt;}
.y3e_c00466{bottom:735.973333pt;}
.y3c_c00466{bottom:752.360000pt;}
.y39_c00466{bottom:765.693333pt;}
.y3b_c00466{bottom:767.026667pt;}
.y38_c00466{bottom:767.773333pt;}
.y3a_c00466{bottom:768.560000pt;}
.y37_c00466{bottom:769.693333pt;}
.y34_c00466{bottom:785.106667pt;}
.y36_c00466{bottom:786.066667pt;}
.y32_c00466{bottom:786.440000pt;}
.y31_c00466{bottom:787.026667pt;}
.y33_c00466{bottom:787.226667pt;}
.y35_c00466{bottom:788.360000pt;}
.y2c_c00466{bottom:802.826667pt;}
.y30_c00466{bottom:803.773333pt;}
.y2e_c00466{bottom:804.560000pt;}
.y2f_c00466{bottom:804.733333pt;}
.y2d_c00466{bottom:805.693333pt;}
.y2a_c00466{bottom:819.026667pt;}
.y27_c00466{bottom:819.773333pt;}
.y24_c00466{bottom:821.106667pt;}
.y23_c00466{bottom:821.693333pt;}
.y29_c00466{bottom:821.893333pt;}
.y28_c00466{bottom:822.066667pt;}
.y26_c00466{bottom:822.640000pt;}
.y25_c00466{bottom:823.026667pt;}
.y2b_c00466{bottom:823.973333pt;}
.y22_c00466{bottom:836.360000pt;}
.y20_c00466{bottom:837.693333pt;}
.y1f_c00466{bottom:838.440000pt;}
.y1e_c00466{bottom:839.226667pt;}
.y21_c00466{bottom:839.973333pt;}
.y1d_c00466{bottom:840.360000pt;}
.y18_c00466{bottom:855.773333pt;}
.y1a_c00466{bottom:856.560000pt;}
.y1c_c00466{bottom:856.733333pt;}
.y19_c00466{bottom:857.306667pt;}
.y17_c00466{bottom:857.693333pt;}
.y1b_c00466{bottom:857.893333pt;}
.y13_c00466{bottom:873.106667pt;}
.y15_c00466{bottom:875.026667pt;}
.y14_c00466{bottom:875.226667pt;}
.y16_c00466{bottom:875.973333pt;}
.y11_c00466{bottom:890.440000pt;}
.yf_c00466{bottom:891.226667pt;}
.ye_c00466{bottom:892.360000pt;}
.y12_c00466{bottom:892.560000pt;}
.y10_c00466{bottom:893.306667pt;}
.ya_c00466{bottom:907.773333pt;}
.yb_c00466{bottom:907.973333pt;}
.yc_c00466{bottom:909.693333pt;}
.yd_c00466{bottom:909.893333pt;}
.y8_c00466{bottom:925.106667pt;}
.y7_c00466{bottom:927.026667pt;}
.y9_c00466{bottom:928.360000pt;}
.y3_c00466{bottom:943.773333pt;}
.y6_c00466{bottom:944.560000pt;}
.y5_c00466{bottom:945.693333pt;}
.y4_c00466{bottom:945.706667pt;}
.y2_c00466{bottom:977.693333pt;}
.y1_c00466{bottom:979.226667pt;}
.h4_c00466{height:3.739141pt;}
.h1_c00466{height:20.466875pt;}
.h8_c00466{height:22.303646pt;}
.h5_c00466{height:27.879557pt;}
.h2_c00466{height:31.618698pt;}
.h6_c00466{height:35.357839pt;}
.h3_c00466{height:39.031380pt;}
.h7_c00466{height:42.770521pt;}
.h0_c00466{height:1186.666667pt;}
.w0_c00466{width:782.666667pt;}
.x0_c00466{left:0.000000pt;}
.xf_c00466{left:134.293333pt;}
.x8f_c00466{left:136.000000pt;}
.xec_c00466{left:137.333333pt;}
.x111_c00466{left:139.800000pt;}
.x26_c00466{left:148.000000pt;}
.x3_c00466{left:148.960000pt;}
.xf9_c00466{left:149.906667pt;}
.x6c_c00466{left:151.040000pt;}
.x59_c00466{left:152.373333pt;}
.xdb_c00466{left:153.706667pt;}
.xab_c00466{left:156.000000pt;}
.xd5_c00466{left:158.666667pt;}
.xc6_c00466{left:161.333333pt;}
.x9c_c00466{left:164.960000pt;}
.x7a_c00466{left:168.000000pt;}
.x27_c00466{left:169.333333pt;}
.xc7_c00466{left:171.040000pt;}
.x6d_c00466{left:173.333333pt;}
.x3f_c00466{left:175.626667pt;}
.x5a_c00466{left:177.706667pt;}
.xd0_c00466{left:178.666667pt;}
.x9d_c00466{left:179.626667pt;}
.x28_c00466{left:181.333333pt;}
.x79_c00466{left:182.666667pt;}
.x85_c00466{left:183.626667pt;}
.xfc_c00466{left:185.706667pt;}
.xb8_c00466{left:188.000000pt;}
.xe5_c00466{left:189.706667pt;}
.xa4_c00466{left:191.040000pt;}
.x7b_c00466{left:192.000000pt;}
.x4a_c00466{left:193.333333pt;}
.x40_c00466{left:195.040000pt;}
.x10_c00466{left:196.000000pt;}
.x92_c00466{left:197.706667pt;}
.x10c_c00466{left:199.426667pt;}
.x90_c00466{left:200.960000pt;}
.x35_c00466{left:202.666667pt;}
.xd6_c00466{left:204.000000pt;}
.x1d_c00466{left:205.706667pt;}
.xc0_c00466{left:208.373333pt;}
.x29_c00466{left:210.666667pt;}
.x4b_c00466{left:211.626667pt;}
.x86_c00466{left:213.706667pt;}
.xa9_c00466{left:216.000000pt;}
.x65_c00466{left:217.333333pt;}
.xf5_c00466{left:218.666667pt;}
.x41_c00466{left:220.373333pt;}
.x7c_c00466{left:222.293333pt;}
.xed_c00466{left:225.333333pt;}
.x4_c00466{left:226.666667pt;}
.xdc_c00466{left:228.373333pt;}
.xa5_c00466{left:231.040000pt;}
.x2a_c00466{left:235.040000pt;}
.xd7_c00466{left:236.960000pt;}
.x5b_c00466{left:238.666667pt;}
.x87_c00466{left:240.000000pt;}
.xb0_c00466{left:241.333333pt;}
.xf6_c00466{left:243.040000pt;}
.x5_c00466{left:244.000000pt;}
.x10a_c00466{left:245.133333pt;}
.x66_c00466{left:246.666667pt;}
.xac_c00466{left:248.000000pt;}
.x4c_c00466{left:250.666667pt;}
.x9e_c00466{left:252.373333pt;}
.xc8_c00466{left:253.333333pt;}
.xcd_c00466{left:255.626667pt;}
.x93_c00466{left:256.760000pt;}
.x7d_c00466{left:259.040000pt;}
.x6e_c00466{left:260.000000pt;}
.xee_c00466{left:261.706667pt;}
.xa6_c00466{left:263.626667pt;}
.x11_c00466{left:265.333333pt;}
.x88_c00466{left:268.960000pt;}
.x36_c00466{left:270.666667pt;}
.x42_c00466{left:272.373333pt;}
.x5c_c00466{left:274.293333pt;}
.x6_c00466{left:276.373333pt;}
.x4d_c00466{left:278.666667pt;}
.xb9_c00466{left:280.000000pt;}
.x1e_c00466{left:280.960000pt;}
.x107_c00466{left:282.666667pt;}
.x2b_c00466{left:284.000000pt;}
.x89_c00466{left:286.666667pt;}
.x1f_c00466{left:288.000000pt;}
.x94_c00466{left:290.666667pt;}
.x12_c00466{left:292.000000pt;}
.x10d_c00466{left:292.960000pt;}
.xfd_c00466{left:294.293333pt;}
.xef_c00466{left:296.000000pt;}
.x43_c00466{left:297.333333pt;}
.x67_c00466{left:299.040000pt;}
.xd1_c00466{left:300.373333pt;}
.x5d_c00466{left:301.333333pt;}
.x74_c00466{left:302.666667pt;}
.x91_c00466{left:305.706667pt;}
.xe6_c00466{left:309.333333pt;}
.x4e_c00466{left:310.293333pt;}
.xb1_c00466{left:311.626667pt;}
.xba_c00466{left:315.040000pt;}
.x20_c00466{left:317.706667pt;}
.xc1_c00466{left:321.333333pt;}
.xd2_c00466{left:322.666667pt;}
.x68_c00466{left:324.373333pt;}
.xf0_c00466{left:328.000000pt;}
.x95_c00466{left:330.666667pt;}
.x2c_c00466{left:332.000000pt;}
.x13_c00466{left:334.293333pt;}
.x75_c00466{left:336.000000pt;}
.x7_c00466{left:337.706667pt;}
.x5e_c00466{left:338.666667pt;}
.x21_c00466{left:340.000000pt;}
.xdd_c00466{left:341.333333pt;}
.x96_c00466{left:345.333333pt;}
.x37_c00466{left:348.000000pt;}
.x14_c00466{left:349.706667pt;}
.x108_c00466{left:351.800000pt;}
.x103_c00466{left:352.960000pt;}
.x2d_c00466{left:357.706667pt;}
.x97_c00466{left:358.666667pt;}
.x1_c00466{left:360.000000pt;}
.xe7_c00466{left:361.333333pt;}
.xc9_c00466{left:362.666667pt;}
.x6f_c00466{left:365.333333pt;}
.xaa_c00466{left:368.000000pt;}
.x22_c00466{left:372.000000pt;}
.x15_c00466{left:373.706667pt;}
.xad_c00466{left:375.426667pt;}
.xca_c00466{left:376.573333pt;}
.x38_c00466{left:377.706667pt;}
.xf7_c00466{left:378.666667pt;}
.xfe_c00466{left:380.000000pt;}
.x2e_c00466{left:381.333333pt;}
.x70_c00466{left:383.040000pt;}
.x4f_c00466{left:384.373333pt;}
.x7e_c00466{left:385.333333pt;}
.x98_c00466{left:388.000000pt;}
.xe1_c00466{left:389.333333pt;}
.xf1_c00466{left:391.040000pt;}
.xae_c00466{left:392.000000pt;}
.x23_c00466{left:393.333333pt;}
.x44_c00466{left:397.333333pt;}
.xc2_c00466{left:398.293333pt;}
.x76_c00466{left:400.960000pt;}
.xde_c00466{left:405.706667pt;}
.x5f_c00466{left:406.666667pt;}
.x7f_c00466{left:408.000000pt;}
.x8_c00466{left:410.666667pt;}
.x10b_c00466{left:412.373333pt;}
.x16_c00466{left:413.333333pt;}
.x9f_c00466{left:417.333333pt;}
.x24_c00466{left:418.666667pt;}
.x2f_c00466{left:420.000000pt;}
.xbb_c00466{left:420.960000pt;}
.xd8_c00466{left:423.040000pt;}
.xb2_c00466{left:424.000000pt;}
.x69_c00466{left:425.333333pt;}
.x50_c00466{left:426.293333pt;}
.x9_c00466{left:427.626667pt;}
.xd3_c00466{left:429.706667pt;}
.xfa_c00466{left:430.666667pt;}
.x104_c00466{left:431.800000pt;}
.x80_c00466{left:433.333333pt;}
.xe8_c00466{left:436.000000pt;}
.xc3_c00466{left:438.666667pt;}
.xa0_c00466{left:440.000000pt;}
.x99_c00466{left:440.960000pt;}
.x51_c00466{left:443.040000pt;}
.xdf_c00466{left:444.373333pt;}
.x60_c00466{left:445.333333pt;}
.xf2_c00466{left:446.293333pt;}
.x39_c00466{left:449.706667pt;}
.xf8_c00466{left:450.666667pt;}
.x8a_c00466{left:453.333333pt;}
.xaf_c00466{left:454.666667pt;}
.xe9_c00466{left:455.626667pt;}
.xbc_c00466{left:457.333333pt;}
.x17_c00466{left:460.000000pt;}
.x45_c00466{left:461.333333pt;}
.x81_c00466{left:462.293333pt;}
.xb3_c00466{left:464.000000pt;}
.x61_c00466{left:465.333333pt;}
.x52_c00466{left:467.040000pt;}
.x30_c00466{left:468.000000pt;}
.xa_c00466{left:469.333333pt;}
.xcb_c00466{left:470.293333pt;}
.xfb_c00466{left:471.626667pt;}
.x18_c00466{left:472.960000pt;}
.xe0_c00466{left:476.000000pt;}
.xe2_c00466{left:477.333333pt;}
.x46_c00466{left:478.666667pt;}
.xff_c00466{left:480.960000pt;}
.x9a_c00466{left:482.093333pt;}
.x101_c00466{left:484.000000pt;}
.x25_c00466{left:485.333333pt;}
.x62_c00466{left:486.293333pt;}
.x10e_c00466{left:488.960000pt;}
.x53_c00466{left:490.666667pt;}
.xb_c00466{left:491.626667pt;}
.x47_c00466{left:493.333333pt;}
.xcc_c00466{left:496.000000pt;}
.x71_c00466{left:497.706667pt;}
.xea_c00466{left:498.666667pt;}
.xf3_c00466{left:500.373333pt;}
.x77_c00466{left:501.706667pt;}
.xc4_c00466{left:504.000000pt;}
.x54_c00466{left:504.960000pt;}
.xbd_c00466{left:506.666667pt;}
.x3a_c00466{left:508.000000pt;}
.xe3_c00466{left:509.333333pt;}
.xce_c00466{left:510.293333pt;}
.xc_c00466{left:513.706667pt;}
.x105_c00466{left:514.666667pt;}
.x82_c00466{left:516.373333pt;}
.x19_c00466{left:518.666667pt;}
.x72_c00466{left:520.373333pt;}
.x31_c00466{left:521.333333pt;}
.xb4_c00466{left:522.666667pt;}
.xbe_c00466{left:524.373333pt;}
.xeb_c00466{left:526.293333pt;}
.xd4_c00466{left:528.000000pt;}
.xd9_c00466{left:529.333333pt;}
.x3b_c00466{left:531.626667pt;}
.x32_c00466{left:533.333333pt;}
.x106_c00466{left:534.666667pt;}
.xd_c00466{left:539.626667pt;}
.x48_c00466{left:541.706667pt;}
.x55_c00466{left:543.626667pt;}
.xbf_c00466{left:546.666667pt;}
.x10f_c00466{left:548.000000pt;}
.x8b_c00466{left:550.666667pt;}
.xa1_c00466{left:552.000000pt;}
.xe4_c00466{left:553.706667pt;}
.x6a_c00466{left:554.666667pt;}
.x9b_c00466{left:557.333333pt;}
.x3c_c00466{left:561.333333pt;}
.x56_c00466{left:562.666667pt;}
.x109_c00466{left:563.800000pt;}
.xa2_c00466{left:566.666667pt;}
.xa7_c00466{left:568.000000pt;}
.x83_c00466{left:569.333333pt;}
.xb5_c00466{left:570.293333pt;}
.x8c_c00466{left:572.000000pt;}
.x1a_c00466{left:574.666667pt;}
.x78_c00466{left:576.000000pt;}
.x33_c00466{left:577.706667pt;}
.x57_c00466{left:579.626667pt;}
.x63_c00466{left:581.706667pt;}
.xe_c00466{left:582.666667pt;}
.xb6_c00466{left:587.040000pt;}
.xa8_c00466{left:589.333333pt;}
.xa3_c00466{left:590.293333pt;}
.x8d_c00466{left:593.706667pt;}
.x58_c00466{left:596.960000pt;}
.x110_c00466{left:599.040000pt;}
.x100_c00466{left:600.373333pt;}
.xc5_c00466{left:601.333333pt;}
.x3d_c00466{left:603.626667pt;}
.x1b_c00466{left:605.706667pt;}
.xb7_c00466{left:610.666667pt;}
.x73_c00466{left:612.000000pt;}
.xf4_c00466{left:614.293333pt;}
.x34_c00466{left:616.373333pt;}
.x8e_c00466{left:618.666667pt;}
.x6b_c00466{left:620.373333pt;}
.x49_c00466{left:621.333333pt;}
.xda_c00466{left:624.000000pt;}
.x2_c00466{left:625.333333pt;}
.x3e_c00466{left:628.373333pt;}
.x84_c00466{left:629.333333pt;}
.xcf_c00466{left:630.666667pt;}
.x64_c00466{left:632.573333pt;}
.x1c_c00466{left:634.293333pt;}
.x102_c00466{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_23b601ab93bdb1a4eca1bc43.woff2')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m72_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);}
.ma0_c00467{transform:matrix(0.305066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305066,0.000000,0.000000,0.250000,0,0);}
.m60_c00467{transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);}
.m7a_c00467{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m1f_c00467{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m80_c00467{transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);}
.m49_c00467{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m62_c00467{transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);}
.m0_c00467{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m22_c00467{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m7c_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);}
.m58_c00467{transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);}
.m25_c00467{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m78_c00467{transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);}
.m5d_c00467{transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);}
.m76_c00467{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.mce_c00467{transform:matrix(0.388971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388971,0.000000,0.000000,0.250000,0,0);}
.m86_c00467{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m6d_c00467{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m6f_c00467{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m2_c00467{transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);}
.m39_c00467{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m23_c00467{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.md_c00467{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.m21_c00467{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m9d_c00467{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m79_c00467{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m7_c00467{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m70_c00467{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m71_c00467{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m6e_c00467{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m6a_c00467{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.maf_c00467{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.m3_c00467{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m99_c00467{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m1c_c00467{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m1a_c00467{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m63_c00467{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m9a_c00467{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m4_c00467{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m45_c00467{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m66_c00467{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m46_c00467{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m57_c00467{transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);}
.m30_c00467{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m3a_c00467{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m44_c00467{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.m8a_c00467{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m64_c00467{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m68_c00467{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m98_c00467{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m35_c00467{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.ma5_c00467{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);}
.m1e_c00467{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m2b_c00467{transform:matrix(0.441390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441390,0.000000,0.000000,0.250000,0,0);}
.m91_c00467{transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);}
.m40_c00467{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m6c_c00467{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m8b_c00467{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m41_c00467{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m50_c00467{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m43_c00467{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m90_c00467{transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);}
.m95_c00467{transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);}
.m2d_c00467{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m73_c00467{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m96_c00467{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m42_c00467{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.mb1_c00467{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.mbc_c00467{transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);}
.mcf_c00467{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.m16_c00467{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m94_c00467{transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);}
.ma7_c00467{transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);}
.m75_c00467{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.mb2_c00467{transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);}
.me_c00467{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mb6_c00467{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m5f_c00467{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m93_c00467{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m7f_c00467{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m2a_c00467{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m55_c00467{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mc9_c00467{transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);}
.m2c_c00467{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m27_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);}
.m53_c00467{transform:matrix(0.502783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502783,0.000000,0.000000,0.250000,0,0);}
.m4c_c00467{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m84_c00467{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m7b_c00467{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mc8_c00467{transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);}
.mc3_c00467{transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);}
.mcd_c00467{transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);}
.m13_c00467{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m24_c00467{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m61_c00467{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m29_c00467{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m74_c00467{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m7e_c00467{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m20_c00467{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m5a_c00467{transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);}
.mb_c00467{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m9c_c00467{transform:matrix(0.527244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527244,0.000000,0.000000,0.250000,0,0);}
.mb3_c00467{transform:matrix(0.528045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528045,0.000000,0.000000,0.250000,0,0);}
.m5c_c00467{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m34_c00467{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m3f_c00467{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mc5_c00467{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00467{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m5_c00467{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mcb_c00467{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m97_c00467{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.m51_c00467{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mc_c00467{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m4b_c00467{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m83_c00467{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m69_c00467{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m59_c00467{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m32_c00467{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m81_c00467{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m4f_c00467{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m12_c00467{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m17_c00467{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m11_c00467{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m67_c00467{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mac_c00467{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m3d_c00467{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m4d_c00467{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m33_c00467{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mf_c00467{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m3b_c00467{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m5b_c00467{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.m37_c00467{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.ma9_c00467{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.mba_c00467{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m31_c00467{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m15_c00467{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m82_c00467{transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);}
.m7d_c00467{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m48_c00467{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.ma_c00467{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m9b_c00467{transform:matrix(0.575991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575991,0.000000,0.000000,0.250000,0,0);}
.ma3_c00467{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.m6_c00467{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.ma8_c00467{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m52_c00467{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m56_c00467{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m10_c00467{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m38_c00467{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mb9_c00467{transform:matrix(0.602564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602564,0.000000,0.000000,0.250000,0,0);}
.m77_c00467{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.m85_c00467{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m4a_c00467{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m9e_c00467{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m9_c00467{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m9f_c00467{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m8_c00467{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.ma6_c00467{transform:matrix(0.616987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616987,0.000000,0.000000,0.250000,0,0);}
.m28_c00467{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mbe_c00467{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m18_c00467{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);}
.m47_c00467{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m54_c00467{transform:matrix(0.630705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630705,0.000000,0.000000,0.250000,0,0);}
.m8f_c00467{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m1_c00467{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m8d_c00467{transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);}
.mc1_c00467{transform:matrix(0.643172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643172,0.000000,0.000000,0.250000,0,0);}
.mb4_c00467{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.m89_c00467{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);}
.maa_c00467{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m4e_c00467{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m26_c00467{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.ma4_c00467{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m3c_c00467{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m88_c00467{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m92_c00467{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m5e_c00467{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.m87_c00467{transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);}
.ma1_c00467{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m2e_c00467{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.mc6_c00467{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.mae_c00467{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.m8e_c00467{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.mc2_c00467{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m1b_c00467{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mcc_c00467{transform:matrix(0.709251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709251,0.000000,0.000000,0.250000,0,0);}
.mbf_c00467{transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);}
.mc0_c00467{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.mb8_c00467{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m36_c00467{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mab_c00467{transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);}
.mbd_c00467{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.mb0_c00467{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m19_c00467{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mca_c00467{transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);}
.mad_c00467{transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);}
.m2f_c00467{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.mc7_c00467{transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);}
.mc4_c00467{transform:matrix(0.772727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772727,0.000000,0.000000,0.250000,0,0);}
.m1d_c00467{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.mbb_c00467{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m14_c00467{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mb5_c00467{transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);}
.mb7_c00467{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m3e_c00467{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.ma2_c00467{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m65_c00467{transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);}
.m6b_c00467{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v3_c00467{vertical-align:-12.000000px;}
.v2_c00467{vertical-align:-6.000000px;}
.v0_c00467{vertical-align:0.000000px;}
.v1_c00467{vertical-align:6.000000px;}
.ls1_c00467{letter-spacing:0.000000px;}
.ls0_c00467{letter-spacing:71.004203px;}
.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;}
}
.ws2_c00467{word-spacing:-78.958283px;}
.wsf_c00467{word-spacing:0.000000px;}
.ws3_c00467{word-spacing:16.594629px;}
.wse_c00467{word-spacing:18.415539px;}
.wsd_c00467{word-spacing:32.801645px;}
.ws7_c00467{word-spacing:37.647282px;}
.wsb_c00467{word-spacing:40.651310px;}
.ws1_c00467{word-spacing:42.369370px;}
.ws8_c00467{word-spacing:43.123678px;}
.wsa_c00467{word-spacing:45.278742px;}
.ws6_c00467{word-spacing:57.018127px;}
.ws4_c00467{word-spacing:62.015851px;}
.ws9_c00467{word-spacing:65.799022px;}
.wsc_c00467{word-spacing:69.032182px;}
.ws5_c00467{word-spacing:73.041656px;}
.ws0_c00467{word-spacing:79.892453px;}
._1_c00467{margin-left:-71.004203px;}
._4_c00467{width:50.481423px;}
._3_c00467{width:53.232822px;}
._2_c00467{width:83.666325px;}
._0_c00467{width:91.421337px;}
.fc0_c00467{color:transparent;}
.fs6_c00467{font-size:3.420000px;}
.fs9_c00467{font-size:11.880000px;}
.fs8_c00467{font-size:13.620000px;}
.fs4_c00467{font-size:18.720000px;}
.fs1_c00467{font-size:20.400000px;}
.fs3_c00467{font-size:25.500000px;}
.fs2_c00467{font-size:28.920000px;}
.fs5_c00467{font-size:32.340000px;}
.fs0_c00467{font-size:35.700000px;}
.fs7_c00467{font-size:39.120000px;}
.y0_c00467{bottom:0.000000px;}
.y5d_c00467{bottom:250.680000px;}
.y5c_c00467{bottom:250.905000px;}
.y5f_c00467{bottom:253.470000px;}
.y5e_c00467{bottom:253.905000px;}
.y60_c00467{bottom:254.970000px;}
.y58_c00467{bottom:271.680000px;}
.y59_c00467{bottom:272.745000px;}
.y5a_c00467{bottom:273.405000px;}
.y5b_c00467{bottom:273.630000px;}
.y57_c00467{bottom:274.905000px;}
.y53_c00467{bottom:289.905000px;}
.y54_c00467{bottom:291.405000px;}
.y56_c00467{bottom:292.245000px;}
.y55_c00467{bottom:293.325000px;}
.y52_c00467{bottom:310.470000px;}
.y4f_c00467{bottom:311.745000px;}
.y51_c00467{bottom:312.825000px;}
.y50_c00467{bottom:313.920000px;}
.y4e_c00467{bottom:329.745000px;}
.y4b_c00467{bottom:331.245000px;}
.y4d_c00467{bottom:333.405000px;}
.y4c_c00467{bottom:333.420000px;}
.y4a_c00467{bottom:352.470000px;}
.y44_c00467{bottom:353.325000px;}
.y46_c00467{bottom:353.550000px;}
.y49_c00467{bottom:354.405000px;}
.y45_c00467{bottom:355.470000px;}
.y48_c00467{bottom:356.550000px;}
.y47_c00467{bottom:356.970000px;}
.y42_c00467{bottom:373.050000px;}
.y43_c00467{bottom:373.905000px;}
.y41_c00467{bottom:376.050000px;}
.y40_c00467{bottom:394.905000px;}
.y3f_c00467{bottom:396.825000px;}
.y3d_c00467{bottom:398.325000px;}
.y3e_c00467{bottom:399.405000px;}
.y3b_c00467{bottom:448.470000px;}
.y3a_c00467{bottom:448.905000px;}
.y39_c00467{bottom:449.745000px;}
.y3c_c00467{bottom:450.630000px;}
.y36_c00467{bottom:451.470000px;}
.y37_c00467{bottom:451.905000px;}
.y38_c00467{bottom:452.130000px;}
.y33_c00467{bottom:467.970000px;}
.y31_c00467{bottom:468.825000px;}
.y32_c00467{bottom:469.245000px;}
.y35_c00467{bottom:470.130000px;}
.y34_c00467{bottom:470.970000px;}
.y30_c00467{bottom:471.405000px;}
.y2e_c00467{bottom:471.630000px;}
.y2f_c00467{bottom:472.470000px;}
.y2a_c00467{bottom:488.745000px;}
.y2d_c00467{bottom:489.825000px;}
.y2c_c00467{bottom:490.470000px;}
.y2b_c00467{bottom:490.905000px;}
.y25_c00467{bottom:508.245000px;}
.y29_c00467{bottom:509.130000px;}
.y28_c00467{bottom:509.325000px;}
.y24_c00467{bottom:510.405000px;}
.y27_c00467{bottom:511.470000px;}
.y26_c00467{bottom:511.905000px;}
.y1f_c00467{bottom:527.970000px;}
.y20_c00467{bottom:529.245000px;}
.y22_c00467{bottom:529.905000px;}
.y21_c00467{bottom:530.130000px;}
.y1e_c00467{bottom:530.325000px;}
.y23_c00467{bottom:530.970000px;}
.y1d_c00467{bottom:531.405000px;}
.y1c_c00467{bottom:546.405000px;}
.y1a_c00467{bottom:548.745000px;}
.y1b_c00467{bottom:549.405000px;}
.y19_c00467{bottom:549.630000px;}
.y17_c00467{bottom:549.825000px;}
.y18_c00467{bottom:550.470000px;}
.y12_c00467{bottom:567.405000px;}
.y11_c00467{bottom:568.245000px;}
.y16_c00467{bottom:568.905000px;}
.y13_c00467{bottom:569.130000px;}
.y15_c00467{bottom:569.970000px;}
.y14_c00467{bottom:570.405000px;}
.ye_c00467{bottom:585.405000px;}
.y10_c00467{bottom:586.245000px;}
.yd_c00467{bottom:587.745000px;}
.yc_c00467{bottom:588.630000px;}
.yf_c00467{bottom:588.825000px;}
.yb_c00467{bottom:589.905000px;}
.y7_c00467{bottom:607.245000px;}
.ya_c00467{bottom:608.325000px;}
.y6_c00467{bottom:609.405000px;}
.y8_c00467{bottom:609.630000px;}
.y9_c00467{bottom:610.470000px;}
.y3_c00467{bottom:626.745000px;}
.y4_c00467{bottom:628.905000px;}
.y5_c00467{bottom:629.970000px;}
.ybe_c00467{bottom:656.550000px;}
.yc0_c00467{bottom:657.630000px;}
.ybf_c00467{bottom:658.695000px;}
.ybd_c00467{bottom:659.130000px;}
.ybc_c00467{bottom:660.195000px;}
.ybb_c00467{bottom:671.130000px;}
.yba_c00467{bottom:672.195000px;}
.yb8_c00467{bottom:672.630000px;}
.yb9_c00467{bottom:673.695000px;}
.yb7_c00467{bottom:685.695000px;}
.yb5_c00467{bottom:686.130000px;}
.yb4_c00467{bottom:687.195000px;}
.yb6_c00467{bottom:687.405000px;}
.yb3_c00467{bottom:699.630000px;}
.yb2_c00467{bottom:700.275000px;}
.yb0_c00467{bottom:700.695000px;}
.yb1_c00467{bottom:701.130000px;}
.yaf_c00467{bottom:712.695000px;}
.yae_c00467{bottom:714.195000px;}
.yaa_c00467{bottom:714.630000px;}
.yac_c00467{bottom:715.275000px;}
.yab_c00467{bottom:715.695000px;}
.yad_c00467{bottom:715.920000px;}
.ya9_c00467{bottom:727.695000px;}
.ya8_c00467{bottom:728.130000px;}
.ya7_c00467{bottom:729.195000px;}
.ya6_c00467{bottom:741.630000px;}
.ya4_c00467{bottom:742.695000px;}
.ya5_c00467{bottom:742.920000px;}
.ya3_c00467{bottom:754.695000px;}
.ya2_c00467{bottom:756.195000px;}
.ya0_c00467{bottom:756.630000px;}
.y9f_c00467{bottom:757.695000px;}
.ya1_c00467{bottom:757.920000px;}
.y9e_c00467{bottom:769.695000px;}
.y9b_c00467{bottom:770.130000px;}
.y9c_c00467{bottom:771.195000px;}
.y9d_c00467{bottom:771.420000px;}
.y99_c00467{bottom:783.195000px;}
.y96_c00467{bottom:783.630000px;}
.y97_c00467{bottom:784.695000px;}
.y98_c00467{bottom:784.920000px;}
.y9a_c00467{bottom:786.195000px;}
.y95_c00467{bottom:796.695000px;}
.y93_c00467{bottom:797.130000px;}
.y94_c00467{bottom:798.195000px;}
.y92_c00467{bottom:810.195000px;}
.y90_c00467{bottom:810.630000px;}
.y91_c00467{bottom:811.695000px;}
.y8f_c00467{bottom:813.195000px;}
.y8d_c00467{bottom:824.130000px;}
.y8e_c00467{bottom:825.195000px;}
.y8c_c00467{bottom:825.630000px;}
.y8b_c00467{bottom:826.695000px;}
.y8a_c00467{bottom:837.630000px;}
.y89_c00467{bottom:838.695000px;}
.y87_c00467{bottom:839.130000px;}
.y88_c00467{bottom:840.195000px;}
.y86_c00467{bottom:852.195000px;}
.y83_c00467{bottom:852.630000px;}
.y85_c00467{bottom:853.695000px;}
.y84_c00467{bottom:853.920000px;}
.y82_c00467{bottom:865.695000px;}
.y81_c00467{bottom:866.130000px;}
.y80_c00467{bottom:867.195000px;}
.y7e_c00467{bottom:880.695000px;}
.y7f_c00467{bottom:880.920000px;}
.y7c_c00467{bottom:894.195000px;}
.y7d_c00467{bottom:894.420000px;}
.y7b_c00467{bottom:894.630000px;}
.y79_c00467{bottom:907.695000px;}
.y7a_c00467{bottom:907.920000px;}
.y76_c00467{bottom:908.130000px;}
.y77_c00467{bottom:909.195000px;}
.y78_c00467{bottom:909.420000px;}
.y75_c00467{bottom:921.420000px;}
.y73_c00467{bottom:921.630000px;}
.y72_c00467{bottom:922.695000px;}
.y74_c00467{bottom:922.920000px;}
.y6f_c00467{bottom:940.695000px;}
.y71_c00467{bottom:940.920000px;}
.y70_c00467{bottom:942.195000px;}
.y6e_c00467{bottom:957.195000px;}
.y6c_c00467{bottom:957.630000px;}
.y6d_c00467{bottom:958.695000px;}
.y6b_c00467{bottom:985.695000px;}
.y6a_c00467{bottom:987.195000px;}
.y69_c00467{bottom:1008.405000px;}
.y68_c00467{bottom:1023.405000px;}
.y67_c00467{bottom:1025.550000px;}
.y65_c00467{bottom:1038.405000px;}
.y63_c00467{bottom:1039.050000px;}
.y66_c00467{bottom:1039.470000px;}
.y64_c00467{bottom:1040.550000px;}
.y62_c00467{bottom:1062.405000px;}
.y61_c00467{bottom:1064.550000px;}
.y1_c00467{bottom:1097.745000px;}
.y2_c00467{bottom:1099.050000px;}
.h7_c00467{height:4.206533px;}
.hb_c00467{height:14.612168px;}
.h9_c00467{height:16.752334px;}
.ha_c00467{height:22.752334px;}
.h5_c00467{height:23.025234px;}
.h2_c00467{height:25.091602px;}
.h4_c00467{height:31.364502px;}
.h3_c00467{height:35.571035px;}
.h6_c00467{height:39.777568px;}
.h1_c00467{height:43.910303px;}
.h8_c00467{height:48.116836px;}
.h0_c00467{height:1335.000000px;}
.w0_c00467{width:880.500000px;}
.x0_c00467{left:0.000000px;}
.x3_c00467{left:151.920000px;}
.x28_c00467{left:153.000000px;}
.x1_c00467{left:154.500000px;}
.x7a_c00467{left:165.420000px;}
.x81_c00467{left:166.920000px;}
.x4a_c00467{left:168.000000px;}
.x1b_c00467{left:175.500000px;}
.x6e_c00467{left:177.645000px;}
.x1c_c00467{left:189.000000px;}
.x62_c00467{left:192.000000px;}
.x8e_c00467{left:195.420000px;}
.xbc_c00467{left:196.500000px;}
.xaa_c00467{left:198.000000px;}
.x6f_c00467{left:199.500000px;}
.x37_c00467{left:202.920000px;}
.x29_c00467{left:206.580000px;}
.x82_c00467{left:208.920000px;}
.x63_c00467{left:211.500000px;}
.x41_c00467{left:213.420000px;}
.xc0_c00467{left:218.580000px;}
.xab_c00467{left:220.080000px;}
.xe_c00467{left:223.080000px;}
.x7b_c00467{left:225.000000px;}
.xba_c00467{left:228.000000px;}
.x8f_c00467{left:229.080000px;}
.xb9_c00467{left:232.080000px;}
.xc5_c00467{left:236.580000px;}
.xad_c00467{left:238.080000px;}
.x42_c00467{left:240.000000px;}
.xbb_c00467{left:241.080000px;}
.x4b_c00467{left:246.000000px;}
.x4_c00467{left:249.855000px;}
.x1d_c00467{left:253.080000px;}
.xbd_c00467{left:255.420000px;}
.x70_c00467{left:256.500000px;}
.x8a_c00467{left:258.000000px;}
.x43_c00467{left:259.500000px;}
.x59_c00467{left:262.920000px;}
.x64_c00467{left:265.920000px;}
.x83_c00467{left:268.500000px;}
.xb3_c00467{left:270.000000px;}
.x2a_c00467{left:271.920000px;}
.x71_c00467{left:273.000000px;}
.xb5_c00467{left:274.080000px;}
.xc1_c00467{left:277.920000px;}
.x4c_c00467{left:280.920000px;}
.x38_c00467{left:283.500000px;}
.x44_c00467{left:286.500000px;}
.x65_c00467{left:288.420000px;}
.x84_c00467{left:289.500000px;}
.xa1_c00467{left:292.500000px;}
.x9b_c00467{left:295.500000px;}
.x5a_c00467{left:297.000000px;}
.x1e_c00467{left:300.000000px;}
.x90_c00467{left:303.420000px;}
.xf_c00467{left:306.000000px;}
.x4d_c00467{left:307.920000px;}
.x39_c00467{left:309.000000px;}
.x1f_c00467{left:312.000000px;}
.x5_c00467{left:313.500000px;}
.x2b_c00467{left:314.775000px;}
.x76_c00467{left:318.420000px;}
.x10_c00467{left:322.500000px;}
.x72_c00467{left:331.500000px;}
.x9c_c00467{left:333.000000px;}
.x3a_c00467{left:336.420000px;}
.x7c_c00467{left:338.355000px;}
.x6_c00467{left:340.920000px;}
.x4e_c00467{left:342.000000px;}
.xae_c00467{left:343.500000px;}
.x2c_c00467{left:345.000000px;}
.x45_c00467{left:346.920000px;}
.x5b_c00467{left:348.000000px;}
.xa2_c00467{left:355.500000px;}
.x95_c00467{left:358.080000px;}
.x85_c00467{left:359.580000px;}
.x5c_c00467{left:363.000000px;}
.x2d_c00467{left:364.920000px;}
.x66_c00467{left:369.000000px;}
.x7_c00467{left:372.000000px;}
.x20_c00467{left:373.920000px;}
.x96_c00467{left:378.420000px;}
.x3b_c00467{left:379.500000px;}
.x46_c00467{left:385.500000px;}
.x11_c00467{left:387.000000px;}
.xa3_c00467{left:388.500000px;}
.x8b_c00467{left:393.000000px;}
.x2e_c00467{left:394.500000px;}
.x77_c00467{left:396.000000px;}
.xbe_c00467{left:399.000000px;}
.x5d_c00467{left:400.500000px;}
.x21_c00467{left:402.000000px;}
.x4f_c00467{left:403.080000px;}
.x91_c00467{left:406.500000px;}
.x2_c00467{left:409.500000px;}
.xa4_c00467{left:411.000000px;}
.x99_c00467{left:414.000000px;}
.x73_c00467{left:418.080000px;}
.x50_c00467{left:419.145000px;}
.x12_c00467{left:422.580000px;}
.x67_c00467{left:424.500000px;}
.x7d_c00467{left:426.420000px;}
.x9d_c00467{left:427.920000px;}
.xa9_c00467{left:435.000000px;}
.x2f_c00467{left:436.500000px;}
.x51_c00467{left:439.920000px;}
.xc2_c00467{left:441.000000px;}
.x22_c00467{left:443.145000px;}
.x79_c00467{left:447.000000px;}
.x74_c00467{left:450.000000px;}
.xb0_c00467{left:451.500000px;}
.x30_c00467{left:453.420000px;}
.xbf_c00467{left:454.500000px;}
.x68_c00467{left:457.500000px;}
.x9a_c00467{left:458.580000px;}
.x13_c00467{left:465.645000px;}
.x47_c00467{left:469.920000px;}
.xa5_c00467{left:471.420000px;}
.x9e_c00467{left:472.500000px;}
.x3c_c00467{left:475.920000px;}
.x8_c00467{left:478.920000px;}
.x92_c00467{left:481.500000px;}
.x14_c00467{left:487.500000px;}
.x5e_c00467{left:493.500000px;}
.x86_c00467{left:496.500000px;}
.x69_c00467{left:498.000000px;}
.x52_c00467{left:499.500000px;}
.xa6_c00467{left:501.420000px;}
.x48_c00467{left:504.000000px;}
.x3d_c00467{left:505.500000px;}
.xb2_c00467{left:508.500000px;}
.xb1_c00467{left:510.000000px;}
.x75_c00467{left:513.000000px;}
.xa7_c00467{left:517.500000px;}
.x31_c00467{left:518.580000px;}
.x7e_c00467{left:520.500000px;}
.x23_c00467{left:522.420000px;}
.x9_c00467{left:525.000000px;}
.x49_c00467{left:529.500000px;}
.x6a_c00467{left:533.580000px;}
.x78_c00467{left:535.920000px;}
.x32_c00467{left:538.500000px;}
.x15_c00467{left:541.500000px;}
.x9f_c00467{left:543.420000px;}
.x53_c00467{left:544.500000px;}
.xa_c00467{left:547.500000px;}
.x8c_c00467{left:549.420000px;}
.xc3_c00467{left:550.500000px;}
.x97_c00467{left:553.500000px;}
.x54_c00467{left:555.000000px;}
.x87_c00467{left:558.000000px;}
.x16_c00467{left:559.500000px;}
.xa0_c00467{left:561.645000px;}
.x33_c00467{left:564.000000px;}
.xb_c00467{left:577.500000px;}
.x7f_c00467{left:578.580000px;}
.x17_c00467{left:580.920000px;}
.x3e_c00467{left:584.580000px;}
.x24_c00467{left:589.275000px;}
.x80_c00467{left:595.500000px;}
.x55_c00467{left:597.000000px;}
.x5f_c00467{left:598.500000px;}
.x34_c00467{left:599.580000px;}
.x3f_c00467{left:603.645000px;}
.x6b_c00467{left:609.420000px;}
.xb7_c00467{left:612.000000px;}
.xb4_c00467{left:613.500000px;}
.x8d_c00467{left:616.500000px;}
.xac_c00467{left:618.000000px;}
.x88_c00467{left:619.500000px;}
.x35_c00467{left:625.500000px;}
.x25_c00467{left:628.920000px;}
.xa8_c00467{left:637.500000px;}
.x18_c00467{left:640.500000px;}
.x60_c00467{left:643.500000px;}
.xc_c00467{left:651.420000px;}
.x26_c00467{left:654.420000px;}
.x6c_c00467{left:657.000000px;}
.xc4_c00467{left:658.500000px;}
.x19_c00467{left:660.000000px;}
.x56_c00467{left:661.080000px;}
.x61_c00467{left:664.500000px;}
.xb8_c00467{left:666.000000px;}
.xb6_c00467{left:667.500000px;}
.xc6_c00467{left:670.500000px;}
.xaf_c00467{left:672.000000px;}
.x93_c00467{left:673.920000px;}
.x36_c00467{left:676.500000px;}
.x27_c00467{left:681.000000px;}
.xd_c00467{left:682.500000px;}
.x89_c00467{left:685.080000px;}
.x57_c00467{left:691.500000px;}
.x1a_c00467{left:694.080000px;}
.x98_c00467{left:697.920000px;}
.x94_c00467{left:703.080000px;}
.x58_c00467{left:709.920000px;}
.x40_c00467{left:714.645000px;}
.x6d_c00467{left:717.000000px;}
@media print{
.v3_c00467{vertical-align:-10.666667pt;}
.v2_c00467{vertical-align:-5.333333pt;}
.v0_c00467{vertical-align:0.000000pt;}
.v1_c00467{vertical-align:5.333333pt;}
.ls1_c00467{letter-spacing:0.000000pt;}
.ls0_c00467{letter-spacing:63.114847pt;}
.ws2_c00467{word-spacing:-70.185141pt;}
.wsf_c00467{word-spacing:0.000000pt;}
.ws3_c00467{word-spacing:14.750782pt;}
.wse_c00467{word-spacing:16.369368pt;}
.wsd_c00467{word-spacing:29.157018pt;}
.ws7_c00467{word-spacing:33.464251pt;}
.wsb_c00467{word-spacing:36.134498pt;}
.ws1_c00467{word-spacing:37.661663pt;}
.ws8_c00467{word-spacing:38.332159pt;}
.wsa_c00467{word-spacing:40.247770pt;}
.ws6_c00467{word-spacing:50.682780pt;}
.ws4_c00467{word-spacing:55.125201pt;}
.ws9_c00467{word-spacing:58.488019pt;}
.wsc_c00467{word-spacing:61.361940pt;}
.ws5_c00467{word-spacing:64.925917pt;}
.ws0_c00467{word-spacing:71.015514pt;}
._1_c00467{margin-left:-63.114847pt;}
._4_c00467{width:44.872376pt;}
._3_c00467{width:47.318064pt;}
._2_c00467{width:74.370066pt;}
._0_c00467{width:81.263410pt;}
.fs6_c00467{font-size:3.040000pt;}
.fs9_c00467{font-size:10.560000pt;}
.fs8_c00467{font-size:12.106667pt;}
.fs4_c00467{font-size:16.640000pt;}
.fs1_c00467{font-size:18.133333pt;}
.fs3_c00467{font-size:22.666667pt;}
.fs2_c00467{font-size:25.706667pt;}
.fs5_c00467{font-size:28.746667pt;}
.fs0_c00467{font-size:31.733333pt;}
.fs7_c00467{font-size:34.773333pt;}
.y0_c00467{bottom:0.000000pt;}
.y5d_c00467{bottom:222.826667pt;}
.y5c_c00467{bottom:223.026667pt;}
.y5f_c00467{bottom:225.306667pt;}
.y5e_c00467{bottom:225.693333pt;}
.y60_c00467{bottom:226.640000pt;}
.y58_c00467{bottom:241.493333pt;}
.y59_c00467{bottom:242.440000pt;}
.y5a_c00467{bottom:243.026667pt;}
.y5b_c00467{bottom:243.226667pt;}
.y57_c00467{bottom:244.360000pt;}
.y53_c00467{bottom:257.693333pt;}
.y54_c00467{bottom:259.026667pt;}
.y56_c00467{bottom:259.773333pt;}
.y55_c00467{bottom:260.733333pt;}
.y52_c00467{bottom:275.973333pt;}
.y4f_c00467{bottom:277.106667pt;}
.y51_c00467{bottom:278.066667pt;}
.y50_c00467{bottom:279.040000pt;}
.y4e_c00467{bottom:293.106667pt;}
.y4b_c00467{bottom:294.440000pt;}
.y4d_c00467{bottom:296.360000pt;}
.y4c_c00467{bottom:296.373333pt;}
.y4a_c00467{bottom:313.306667pt;}
.y44_c00467{bottom:314.066667pt;}
.y46_c00467{bottom:314.266667pt;}
.y49_c00467{bottom:315.026667pt;}
.y45_c00467{bottom:315.973333pt;}
.y48_c00467{bottom:316.933333pt;}
.y47_c00467{bottom:317.306667pt;}
.y42_c00467{bottom:331.600000pt;}
.y43_c00467{bottom:332.360000pt;}
.y41_c00467{bottom:334.266667pt;}
.y40_c00467{bottom:351.026667pt;}
.y3f_c00467{bottom:352.733333pt;}
.y3d_c00467{bottom:354.066667pt;}
.y3e_c00467{bottom:355.026667pt;}
.y3b_c00467{bottom:398.640000pt;}
.y3a_c00467{bottom:399.026667pt;}
.y39_c00467{bottom:399.773333pt;}
.y3c_c00467{bottom:400.560000pt;}
.y36_c00467{bottom:401.306667pt;}
.y37_c00467{bottom:401.693333pt;}
.y38_c00467{bottom:401.893333pt;}
.y33_c00467{bottom:415.973333pt;}
.y31_c00467{bottom:416.733333pt;}
.y32_c00467{bottom:417.106667pt;}
.y35_c00467{bottom:417.893333pt;}
.y34_c00467{bottom:418.640000pt;}
.y30_c00467{bottom:419.026667pt;}
.y2e_c00467{bottom:419.226667pt;}
.y2f_c00467{bottom:419.973333pt;}
.y2a_c00467{bottom:434.440000pt;}
.y2d_c00467{bottom:435.400000pt;}
.y2c_c00467{bottom:435.973333pt;}
.y2b_c00467{bottom:436.360000pt;}
.y25_c00467{bottom:451.773333pt;}
.y29_c00467{bottom:452.560000pt;}
.y28_c00467{bottom:452.733333pt;}
.y24_c00467{bottom:453.693333pt;}
.y27_c00467{bottom:454.640000pt;}
.y26_c00467{bottom:455.026667pt;}
.y1f_c00467{bottom:469.306667pt;}
.y20_c00467{bottom:470.440000pt;}
.y22_c00467{bottom:471.026667pt;}
.y21_c00467{bottom:471.226667pt;}
.y1e_c00467{bottom:471.400000pt;}
.y23_c00467{bottom:471.973333pt;}
.y1d_c00467{bottom:472.360000pt;}
.y1c_c00467{bottom:485.693333pt;}
.y1a_c00467{bottom:487.773333pt;}
.y1b_c00467{bottom:488.360000pt;}
.y19_c00467{bottom:488.560000pt;}
.y17_c00467{bottom:488.733333pt;}
.y18_c00467{bottom:489.306667pt;}
.y12_c00467{bottom:504.360000pt;}
.y11_c00467{bottom:505.106667pt;}
.y16_c00467{bottom:505.693333pt;}
.y13_c00467{bottom:505.893333pt;}
.y15_c00467{bottom:506.640000pt;}
.y14_c00467{bottom:507.026667pt;}
.ye_c00467{bottom:520.360000pt;}
.y10_c00467{bottom:521.106667pt;}
.yd_c00467{bottom:522.440000pt;}
.yc_c00467{bottom:523.226667pt;}
.yf_c00467{bottom:523.400000pt;}
.yb_c00467{bottom:524.360000pt;}
.y7_c00467{bottom:539.773333pt;}
.ya_c00467{bottom:540.733333pt;}
.y6_c00467{bottom:541.693333pt;}
.y8_c00467{bottom:541.893333pt;}
.y9_c00467{bottom:542.640000pt;}
.y3_c00467{bottom:557.106667pt;}
.y4_c00467{bottom:559.026667pt;}
.y5_c00467{bottom:559.973333pt;}
.ybe_c00467{bottom:583.600000pt;}
.yc0_c00467{bottom:584.560000pt;}
.ybf_c00467{bottom:585.506667pt;}
.ybd_c00467{bottom:585.893333pt;}
.ybc_c00467{bottom:586.840000pt;}
.ybb_c00467{bottom:596.560000pt;}
.yba_c00467{bottom:597.506667pt;}
.yb8_c00467{bottom:597.893333pt;}
.yb9_c00467{bottom:598.840000pt;}
.yb7_c00467{bottom:609.506667pt;}
.yb5_c00467{bottom:609.893333pt;}
.yb4_c00467{bottom:610.840000pt;}
.yb6_c00467{bottom:611.026667pt;}
.yb3_c00467{bottom:621.893333pt;}
.yb2_c00467{bottom:622.466667pt;}
.yb0_c00467{bottom:622.840000pt;}
.yb1_c00467{bottom:623.226667pt;}
.yaf_c00467{bottom:633.506667pt;}
.yae_c00467{bottom:634.840000pt;}
.yaa_c00467{bottom:635.226667pt;}
.yac_c00467{bottom:635.800000pt;}
.yab_c00467{bottom:636.173333pt;}
.yad_c00467{bottom:636.373333pt;}
.ya9_c00467{bottom:646.840000pt;}
.ya8_c00467{bottom:647.226667pt;}
.ya7_c00467{bottom:648.173333pt;}
.ya6_c00467{bottom:659.226667pt;}
.ya4_c00467{bottom:660.173333pt;}
.ya5_c00467{bottom:660.373333pt;}
.ya3_c00467{bottom:670.840000pt;}
.ya2_c00467{bottom:672.173333pt;}
.ya0_c00467{bottom:672.560000pt;}
.y9f_c00467{bottom:673.506667pt;}
.ya1_c00467{bottom:673.706667pt;}
.y9e_c00467{bottom:684.173333pt;}
.y9b_c00467{bottom:684.560000pt;}
.y9c_c00467{bottom:685.506667pt;}
.y9d_c00467{bottom:685.706667pt;}
.y99_c00467{bottom:696.173333pt;}
.y96_c00467{bottom:696.560000pt;}
.y97_c00467{bottom:697.506667pt;}
.y98_c00467{bottom:697.706667pt;}
.y9a_c00467{bottom:698.840000pt;}
.y95_c00467{bottom:708.173333pt;}
.y93_c00467{bottom:708.560000pt;}
.y94_c00467{bottom:709.506667pt;}
.y92_c00467{bottom:720.173333pt;}
.y90_c00467{bottom:720.560000pt;}
.y91_c00467{bottom:721.506667pt;}
.y8f_c00467{bottom:722.840000pt;}
.y8d_c00467{bottom:732.560000pt;}
.y8e_c00467{bottom:733.506667pt;}
.y8c_c00467{bottom:733.893333pt;}
.y8b_c00467{bottom:734.840000pt;}
.y8a_c00467{bottom:744.560000pt;}
.y89_c00467{bottom:745.506667pt;}
.y87_c00467{bottom:745.893333pt;}
.y88_c00467{bottom:746.840000pt;}
.y86_c00467{bottom:757.506667pt;}
.y83_c00467{bottom:757.893333pt;}
.y85_c00467{bottom:758.840000pt;}
.y84_c00467{bottom:759.040000pt;}
.y82_c00467{bottom:769.506667pt;}
.y81_c00467{bottom:769.893333pt;}
.y80_c00467{bottom:770.840000pt;}
.y7e_c00467{bottom:782.840000pt;}
.y7f_c00467{bottom:783.040000pt;}
.y7c_c00467{bottom:794.840000pt;}
.y7d_c00467{bottom:795.040000pt;}
.y7b_c00467{bottom:795.226667pt;}
.y79_c00467{bottom:806.840000pt;}
.y7a_c00467{bottom:807.040000pt;}
.y76_c00467{bottom:807.226667pt;}
.y77_c00467{bottom:808.173333pt;}
.y78_c00467{bottom:808.373333pt;}
.y75_c00467{bottom:819.040000pt;}
.y73_c00467{bottom:819.226667pt;}
.y72_c00467{bottom:820.173333pt;}
.y74_c00467{bottom:820.373333pt;}
.y6f_c00467{bottom:836.173333pt;}
.y71_c00467{bottom:836.373333pt;}
.y70_c00467{bottom:837.506667pt;}
.y6e_c00467{bottom:850.840000pt;}
.y6c_c00467{bottom:851.226667pt;}
.y6d_c00467{bottom:852.173333pt;}
.y6b_c00467{bottom:876.173333pt;}
.y6a_c00467{bottom:877.506667pt;}
.y69_c00467{bottom:896.360000pt;}
.y68_c00467{bottom:909.693333pt;}
.y67_c00467{bottom:911.600000pt;}
.y65_c00467{bottom:923.026667pt;}
.y63_c00467{bottom:923.600000pt;}
.y66_c00467{bottom:923.973333pt;}
.y64_c00467{bottom:924.933333pt;}
.y62_c00467{bottom:944.360000pt;}
.y61_c00467{bottom:946.266667pt;}
.y1_c00467{bottom:975.773333pt;}
.y2_c00467{bottom:976.933333pt;}
.h7_c00467{height:3.739141pt;}
.hb_c00467{height:12.988594pt;}
.h9_c00467{height:14.890964pt;}
.ha_c00467{height:20.224297pt;}
.h5_c00467{height:20.466875pt;}
.h2_c00467{height:22.303646pt;}
.h4_c00467{height:27.879557pt;}
.h3_c00467{height:31.618698pt;}
.h6_c00467{height:35.357839pt;}
.h1_c00467{height:39.031380pt;}
.h8_c00467{height:42.770521pt;}
.h0_c00467{height:1186.666667pt;}
.w0_c00467{width:782.666667pt;}
.x0_c00467{left:0.000000pt;}
.x3_c00467{left:135.040000pt;}
.x28_c00467{left:136.000000pt;}
.x1_c00467{left:137.333333pt;}
.x7a_c00467{left:147.040000pt;}
.x81_c00467{left:148.373333pt;}
.x4a_c00467{left:149.333333pt;}
.x1b_c00467{left:156.000000pt;}
.x6e_c00467{left:157.906667pt;}
.x1c_c00467{left:168.000000pt;}
.x62_c00467{left:170.666667pt;}
.x8e_c00467{left:173.706667pt;}
.xbc_c00467{left:174.666667pt;}
.xaa_c00467{left:176.000000pt;}
.x6f_c00467{left:177.333333pt;}
.x37_c00467{left:180.373333pt;}
.x29_c00467{left:183.626667pt;}
.x82_c00467{left:185.706667pt;}
.x63_c00467{left:188.000000pt;}
.x41_c00467{left:189.706667pt;}
.xc0_c00467{left:194.293333pt;}
.xab_c00467{left:195.626667pt;}
.xe_c00467{left:198.293333pt;}
.x7b_c00467{left:200.000000pt;}
.xba_c00467{left:202.666667pt;}
.x8f_c00467{left:203.626667pt;}
.xb9_c00467{left:206.293333pt;}
.xc5_c00467{left:210.293333pt;}
.xad_c00467{left:211.626667pt;}
.x42_c00467{left:213.333333pt;}
.xbb_c00467{left:214.293333pt;}
.x4b_c00467{left:218.666667pt;}
.x4_c00467{left:222.093333pt;}
.x1d_c00467{left:224.960000pt;}
.xbd_c00467{left:227.040000pt;}
.x70_c00467{left:228.000000pt;}
.x8a_c00467{left:229.333333pt;}
.x43_c00467{left:230.666667pt;}
.x59_c00467{left:233.706667pt;}
.x64_c00467{left:236.373333pt;}
.x83_c00467{left:238.666667pt;}
.xb3_c00467{left:240.000000pt;}
.x2a_c00467{left:241.706667pt;}
.x71_c00467{left:242.666667pt;}
.xb5_c00467{left:243.626667pt;}
.xc1_c00467{left:247.040000pt;}
.x4c_c00467{left:249.706667pt;}
.x38_c00467{left:252.000000pt;}
.x44_c00467{left:254.666667pt;}
.x65_c00467{left:256.373333pt;}
.x84_c00467{left:257.333333pt;}
.xa1_c00467{left:260.000000pt;}
.x9b_c00467{left:262.666667pt;}
.x5a_c00467{left:264.000000pt;}
.x1e_c00467{left:266.666667pt;}
.x90_c00467{left:269.706667pt;}
.xf_c00467{left:272.000000pt;}
.x4d_c00467{left:273.706667pt;}
.x39_c00467{left:274.666667pt;}
.x1f_c00467{left:277.333333pt;}
.x5_c00467{left:278.666667pt;}
.x2b_c00467{left:279.800000pt;}
.x76_c00467{left:283.040000pt;}
.x10_c00467{left:286.666667pt;}
.x72_c00467{left:294.666667pt;}
.x9c_c00467{left:296.000000pt;}
.x3a_c00467{left:299.040000pt;}
.x7c_c00467{left:300.760000pt;}
.x6_c00467{left:303.040000pt;}
.x4e_c00467{left:304.000000pt;}
.xae_c00467{left:305.333333pt;}
.x2c_c00467{left:306.666667pt;}
.x45_c00467{left:308.373333pt;}
.x5b_c00467{left:309.333333pt;}
.xa2_c00467{left:316.000000pt;}
.x95_c00467{left:318.293333pt;}
.x85_c00467{left:319.626667pt;}
.x5c_c00467{left:322.666667pt;}
.x2d_c00467{left:324.373333pt;}
.x66_c00467{left:328.000000pt;}
.x7_c00467{left:330.666667pt;}
.x20_c00467{left:332.373333pt;}
.x96_c00467{left:336.373333pt;}
.x3b_c00467{left:337.333333pt;}
.x46_c00467{left:342.666667pt;}
.x11_c00467{left:344.000000pt;}
.xa3_c00467{left:345.333333pt;}
.x8b_c00467{left:349.333333pt;}
.x2e_c00467{left:350.666667pt;}
.x77_c00467{left:352.000000pt;}
.xbe_c00467{left:354.666667pt;}
.x5d_c00467{left:356.000000pt;}
.x21_c00467{left:357.333333pt;}
.x4f_c00467{left:358.293333pt;}
.x91_c00467{left:361.333333pt;}
.x2_c00467{left:364.000000pt;}
.xa4_c00467{left:365.333333pt;}
.x99_c00467{left:368.000000pt;}
.x73_c00467{left:371.626667pt;}
.x50_c00467{left:372.573333pt;}
.x12_c00467{left:375.626667pt;}
.x67_c00467{left:377.333333pt;}
.x7d_c00467{left:379.040000pt;}
.x9d_c00467{left:380.373333pt;}
.xa9_c00467{left:386.666667pt;}
.x2f_c00467{left:388.000000pt;}
.x51_c00467{left:391.040000pt;}
.xc2_c00467{left:392.000000pt;}
.x22_c00467{left:393.906667pt;}
.x79_c00467{left:397.333333pt;}
.x74_c00467{left:400.000000pt;}
.xb0_c00467{left:401.333333pt;}
.x30_c00467{left:403.040000pt;}
.xbf_c00467{left:404.000000pt;}
.x68_c00467{left:406.666667pt;}
.x9a_c00467{left:407.626667pt;}
.x13_c00467{left:413.906667pt;}
.x47_c00467{left:417.706667pt;}
.xa5_c00467{left:419.040000pt;}
.x9e_c00467{left:420.000000pt;}
.x3c_c00467{left:423.040000pt;}
.x8_c00467{left:425.706667pt;}
.x92_c00467{left:428.000000pt;}
.x14_c00467{left:433.333333pt;}
.x5e_c00467{left:438.666667pt;}
.x86_c00467{left:441.333333pt;}
.x69_c00467{left:442.666667pt;}
.x52_c00467{left:444.000000pt;}
.xa6_c00467{left:445.706667pt;}
.x48_c00467{left:448.000000pt;}
.x3d_c00467{left:449.333333pt;}
.xb2_c00467{left:452.000000pt;}
.xb1_c00467{left:453.333333pt;}
.x75_c00467{left:456.000000pt;}
.xa7_c00467{left:460.000000pt;}
.x31_c00467{left:460.960000pt;}
.x7e_c00467{left:462.666667pt;}
.x23_c00467{left:464.373333pt;}
.x9_c00467{left:466.666667pt;}
.x49_c00467{left:470.666667pt;}
.x6a_c00467{left:474.293333pt;}
.x78_c00467{left:476.373333pt;}
.x32_c00467{left:478.666667pt;}
.x15_c00467{left:481.333333pt;}
.x9f_c00467{left:483.040000pt;}
.x53_c00467{left:484.000000pt;}
.xa_c00467{left:486.666667pt;}
.x8c_c00467{left:488.373333pt;}
.xc3_c00467{left:489.333333pt;}
.x97_c00467{left:492.000000pt;}
.x54_c00467{left:493.333333pt;}
.x87_c00467{left:496.000000pt;}
.x16_c00467{left:497.333333pt;}
.xa0_c00467{left:499.240000pt;}
.x33_c00467{left:501.333333pt;}
.xb_c00467{left:513.333333pt;}
.x7f_c00467{left:514.293333pt;}
.x17_c00467{left:516.373333pt;}
.x3e_c00467{left:519.626667pt;}
.x24_c00467{left:523.800000pt;}
.x80_c00467{left:529.333333pt;}
.x55_c00467{left:530.666667pt;}
.x5f_c00467{left:532.000000pt;}
.x34_c00467{left:532.960000pt;}
.x3f_c00467{left:536.573333pt;}
.x6b_c00467{left:541.706667pt;}
.xb7_c00467{left:544.000000pt;}
.xb4_c00467{left:545.333333pt;}
.x8d_c00467{left:548.000000pt;}
.xac_c00467{left:549.333333pt;}
.x88_c00467{left:550.666667pt;}
.x35_c00467{left:556.000000pt;}
.x25_c00467{left:559.040000pt;}
.xa8_c00467{left:566.666667pt;}
.x18_c00467{left:569.333333pt;}
.x60_c00467{left:572.000000pt;}
.xc_c00467{left:579.040000pt;}
.x26_c00467{left:581.706667pt;}
.x6c_c00467{left:584.000000pt;}
.xc4_c00467{left:585.333333pt;}
.x19_c00467{left:586.666667pt;}
.x56_c00467{left:587.626667pt;}
.x61_c00467{left:590.666667pt;}
.xb8_c00467{left:592.000000pt;}
.xb6_c00467{left:593.333333pt;}
.xc6_c00467{left:596.000000pt;}
.xaf_c00467{left:597.333333pt;}
.x93_c00467{left:599.040000pt;}
.x36_c00467{left:601.333333pt;}
.x27_c00467{left:605.333333pt;}
.xd_c00467{left:606.666667pt;}
.x89_c00467{left:608.960000pt;}
.x57_c00467{left:614.666667pt;}
.x1a_c00467{left:616.960000pt;}
.x98_c00467{left:620.373333pt;}
.x94_c00467{left:624.960000pt;}
.x58_c00467{left:631.040000pt;}
.x40_c00467{left:635.240000pt;}
.x6d_c00467{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a7e508eeca4a776c962e15d4.woff2')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:1.688965;font-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_c00468{transform:matrix(0.323109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323109,0.000000,0.000000,0.250000,0,0);}
.mf9_c00468{transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);}
.mf8_c00468{transform:matrix(0.357745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357745,0.000000,0.000000,0.250000,0,0);}
.m5d_c00468{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.mf4_c00468{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m76_c00468{transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);}
.m3d_c00468{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mc8_c00468{transform:matrix(0.371429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371429,0.000000,0.000000,0.250000,0,0);}
.m2c_c00468{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m49_c00468{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m44_c00468{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.me5_c00468{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m48_c00468{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m6a_c00468{transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);}
.mfb_c00468{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.ma1_c00468{transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);}
.me4_c00468{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m2b_c00468{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m96_c00468{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m8b_c00468{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m5a_c00468{transform:matrix(0.390560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390560,0.000000,0.000000,0.250000,0,0);}
.ma7_c00468{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m47_c00468{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mc0_c00468{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m90_c00468{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m2d_c00468{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m79_c00468{transform:matrix(0.400307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400307,0.000000,0.000000,0.250000,0,0);}
.mde_c00468{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.mfa_c00468{transform:matrix(0.402607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402607,0.000000,0.000000,0.250000,0,0);}
.m6e_c00468{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m6f_c00468{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m86_c00468{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m5b_c00468{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m72_c00468{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.mb5_c00468{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m14_c00468{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mc9_c00468{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m22_c00468{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m73_c00468{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.me2_c00468{transform:matrix(0.414110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414110,0.000000,0.000000,0.250000,0,0);}
.m71_c00468{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mc4_c00468{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.mba_c00468{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mda_c00468{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m9f_c00468{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m3f_c00468{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.m4b_c00468{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m61_c00468{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m1f_c00468{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.mdd_c00468{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m5f_c00468{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mec_c00468{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.mf3_c00468{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m63_c00468{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.mc2_c00468{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.m2a_c00468{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mfc_c00468{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m77_c00468{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.md6_c00468{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m19_c00468{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.mfd_c00468{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m4_c00468{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m94_c00468{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m28_c00468{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.mb8_c00468{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.m60_c00468{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m95_c00468{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.md3_c00468{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m92_c00468{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m2_c00468{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m75_c00468{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m89_c00468{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m93_c00468{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.ma9_c00468{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m3b_c00468{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m15_c00468{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m8d_c00468{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m53_c00468{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m5c_c00468{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m3c_c00468{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.md5_c00468{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.mb4_c00468{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.mf6_c00468{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m26_c00468{transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);}
.mdf_c00468{transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);}
.mab_c00468{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.mcf_c00468{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m80_c00468{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m58_c00468{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mbc_c00468{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.ma3_c00468{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.mbf_c00468{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m9e_c00468{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.md9_c00468{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.m78_c00468{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.mb9_c00468{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.ma4_c00468{transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);}
.m99_c00468{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.me0_c00468{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.m7c_c00468{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.md2_c00468{transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);}
.m7d_c00468{transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);}
.mef_c00468{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.med_c00468{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m32_c00468{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m83_c00468{transform:matrix(0.482773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482773,0.000000,0.000000,0.250000,0,0);}
.mb2_c00468{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.md0_c00468{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m56_c00468{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m45_c00468{transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);}
.m1c_c00468{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m7a_c00468{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m8e_c00468{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m30_c00468{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m39_c00468{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_c00468{transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);}
.mad_c00468{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m6d_c00468{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m9d_c00468{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m88_c00468{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m9b_c00468{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mb0_c00468{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m46_c00468{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m21_c00468{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m43_c00468{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m10_c00468{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.ma0_c00468{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m4e_c00468{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m4a_c00468{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.me8_c00468{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m25_c00468{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.mae_c00468{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m1_c00468{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mce_c00468{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m5_c00468{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m18_c00468{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m55_c00468{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m38_c00468{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mb3_c00468{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m9_c00468{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m66_c00468{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m7f_c00468{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.md_c00468{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m57_c00468{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.mf7_c00468{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.mca_c00468{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m65_c00468{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m2e_c00468{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.mb_c00468{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m35_c00468{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m41_c00468{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m6b_c00468{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.ma_c00468{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m8f_c00468{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m85_c00468{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mb6_c00468{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m51_c00468{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.me3_c00468{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m42_c00468{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mb1_c00468{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m74_c00468{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m24_c00468{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mc_c00468{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m13_c00468{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.me6_c00468{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m81_c00468{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.md4_c00468{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m36_c00468{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m1a_c00468{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mb7_c00468{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m37_c00468{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mcb_c00468{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m3_c00468{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.maa_c00468{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mf5_c00468{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mcc_c00468{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m50_c00468{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m69_c00468{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m98_c00468{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mf0_c00468{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);}
.mdb_c00468{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m87_c00468{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m8c_c00468{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.me1_c00468{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.maf_c00468{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mc6_c00468{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m29_c00468{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.mc5_c00468{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.mac_c00468{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.me_c00468{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.meb_c00468{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.mea_c00468{transform:matrix(0.572356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572356,0.000000,0.000000,0.250000,0,0);}
.mc3_c00468{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m6c_c00468{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m9c_c00468{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m97_c00468{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.ma5_c00468{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m1e_c00468{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.me9_c00468{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m27_c00468{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m16_c00468{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m64_c00468{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.md7_c00468{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m82_c00468{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m4f_c00468{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.mbd_c00468{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.mdc_c00468{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.m7_c00468{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m54_c00468{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.m5e_c00468{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);}
.mbb_c00468{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mc7_c00468{transform:matrix(0.605462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605462,0.000000,0.000000,0.250000,0,0);}
.m59_c00468{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mc1_c00468{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m11_c00468{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m6_c00468{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m9a_c00468{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m17_c00468{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m8a_c00468{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);}
.ma6_c00468{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mcd_c00468{transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);}
.m20_c00468{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m33_c00468{transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);}
.m1d_c00468{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m8_c00468{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m12_c00468{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m0_c00468{transform:matrix(0.679487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679487,0.000000,0.000000,0.250000,0,0);}
.m34_c00468{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.mee_c00468{transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);}
.mbe_c00468{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.ma8_c00468{transform:matrix(0.695882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695882,0.000000,0.000000,0.250000,0,0);}
.m4d_c00468{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m4c_c00468{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m84_c00468{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.ma2_c00468{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m2f_c00468{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m7e_c00468{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m31_c00468{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m3e_c00468{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m67_c00468{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m70_c00468{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.md1_c00468{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m7b_c00468{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.me7_c00468{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.m91_c00468{transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);}
.m40_c00468{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.mf2_c00468{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m23_c00468{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m52_c00468{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m68_c00468{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m1b_c00468{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.mf_c00468{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.mf1_c00468{transform:matrix(0.999199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.999199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.999199,0.000000,0.000000,0.250000,0,0);}
.mfe_c00468{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m3a_c00468{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
.fs5_c00468{font-size:3.420000px;}
.fs0_c00468{font-size:18.720000px;}
.fs3_c00468{font-size:25.500000px;}
.fs1_c00468{font-size:28.920000px;}
.fs4_c00468{font-size:32.340000px;}
.fs2_c00468{font-size:35.700000px;}
.fs6_c00468{font-size:39.120000px;}
.y0_c00468{bottom:0.000000px;}
.yd6_c00468{bottom:249.825000px;}
.yd1_c00468{bottom:250.680000px;}
.yd7_c00468{bottom:250.905000px;}
.yd2_c00468{bottom:251.745000px;}
.yd3_c00468{bottom:251.970000px;}
.yd5_c00468{bottom:253.245000px;}
.yd0_c00468{bottom:253.905000px;}
.yd8_c00468{bottom:254.130000px;}
.yd4_c00468{bottom:255.405000px;}
.yd9_c00468{bottom:255.420000px;}
.ycf_c00468{bottom:271.680000px;}
.ycc_c00468{bottom:272.745000px;}
.yca_c00468{bottom:273.630000px;}
.yce_c00468{bottom:273.825000px;}
.ycb_c00468{bottom:274.905000px;}
.ycd_c00468{bottom:275.970000px;}
.yc2_c00468{bottom:289.905000px;}
.yc5_c00468{bottom:290.970000px;}
.yc6_c00468{bottom:291.825000px;}
.yc8_c00468{bottom:292.245000px;}
.yc9_c00468{bottom:292.470000px;}
.yc3_c00468{bottom:293.325000px;}
.yc4_c00468{bottom:294.405000px;}
.yc7_c00468{bottom:295.470000px;}
.yc0_c00468{bottom:311.745000px;}
.ybf_c00468{bottom:313.470000px;}
.ybe_c00468{bottom:313.905000px;}
.yc1_c00468{bottom:314.130000px;}
.ybd_c00468{bottom:331.245000px;}
.ybc_c00468{bottom:332.130000px;}
.ybb_c00468{bottom:333.405000px;}
.yb9_c00468{bottom:349.680000px;}
.yb8_c00468{bottom:350.745000px;}
.yb6_c00468{bottom:350.970000px;}
.yba_c00468{bottom:352.470000px;}
.yb7_c00468{bottom:352.905000px;}
.yb3_c00468{bottom:370.245000px;}
.yb2_c00468{bottom:370.470000px;}
.yb1_c00468{bottom:372.405000px;}
.yb4_c00468{bottom:373.470000px;}
.yb5_c00468{bottom:373.905000px;}
.yaf_c00468{bottom:389.745000px;}
.yae_c00468{bottom:390.825000px;}
.yab_c00468{bottom:391.245000px;}
.yac_c00468{bottom:392.130000px;}
.yad_c00468{bottom:392.970000px;}
.yaa_c00468{bottom:393.405000px;}
.yb0_c00468{bottom:394.470000px;}
.ya8_c00468{bottom:409.245000px;}
.ya7_c00468{bottom:410.745000px;}
.ya9_c00468{bottom:411.405000px;}
.ya6_c00468{bottom:411.630000px;}
.ya5_c00468{bottom:412.905000px;}
.ya4_c00468{bottom:429.825000px;}
.ya0_c00468{bottom:430.245000px;}
.ya2_c00468{bottom:430.905000px;}
.ya3_c00468{bottom:431.130000px;}
.ya1_c00468{bottom:431.970000px;}
.y9f_c00468{bottom:432.405000px;}
.y9d_c00468{bottom:451.470000px;}
.y9c_c00468{bottom:451.905000px;}
.y9e_c00468{bottom:452.970000px;}
.y99_c00468{bottom:469.245000px;}
.y9b_c00468{bottom:470.130000px;}
.y98_c00468{bottom:471.405000px;}
.y9a_c00468{bottom:472.470000px;}
.y96_c00468{bottom:488.745000px;}
.y95_c00468{bottom:490.905000px;}
.y97_c00468{bottom:492.405000px;}
.y92_c00468{bottom:507.405000px;}
.y94_c00468{bottom:507.825000px;}
.y93_c00468{bottom:508.245000px;}
.y90_c00468{bottom:509.325000px;}
.y8d_c00468{bottom:510.405000px;}
.y8f_c00468{bottom:510.630000px;}
.y91_c00468{bottom:511.470000px;}
.y8e_c00468{bottom:511.905000px;}
.y8a_c00468{bottom:526.905000px;}
.y8c_c00468{bottom:528.825000px;}
.y89_c00468{bottom:529.245000px;}
.y8b_c00468{bottom:529.905000px;}
.y88_c00468{bottom:531.405000px;}
.y86_c00468{bottom:546.405000px;}
.y84_c00468{bottom:548.745000px;}
.y87_c00468{bottom:549.405000px;}
.y85_c00468{bottom:549.825000px;}
.y83_c00468{bottom:550.905000px;}
.y81_c00468{bottom:567.825000px;}
.y7f_c00468{bottom:568.245000px;}
.y82_c00468{bottom:568.905000px;}
.y80_c00468{bottom:569.130000px;}
.y7e_c00468{bottom:570.405000px;}
.y7d_c00468{bottom:585.405000px;}
.y7b_c00468{bottom:587.745000px;}
.y7c_c00468{bottom:589.905000px;}
.y7a_c00468{bottom:606.405000px;}
.y79_c00468{bottom:607.245000px;}
.y77_c00468{bottom:609.405000px;}
.y78_c00468{bottom:609.630000px;}
.y76_c00468{bottom:610.905000px;}
.y73_c00468{bottom:625.905000px;}
.y75_c00468{bottom:626.745000px;}
.y74_c00468{bottom:628.245000px;}
.y70_c00468{bottom:629.325000px;}
.y72_c00468{bottom:629.970000px;}
.y71_c00468{bottom:630.405000px;}
.y6e_c00468{bottom:646.245000px;}
.y6b_c00468{bottom:647.325000px;}
.y6d_c00468{bottom:647.745000px;}
.y6c_c00468{bottom:648.405000px;}
.y6f_c00468{bottom:648.630000px;}
.y67_c00468{bottom:664.905000px;}
.y68_c00468{bottom:667.245000px;}
.y69_c00468{bottom:667.905000px;}
.y6a_c00468{bottom:668.130000px;}
.y66_c00468{bottom:669.405000px;}
.y63_c00468{bottom:685.470000px;}
.y64_c00468{bottom:686.325000px;}
.y61_c00468{bottom:686.745000px;}
.y60_c00468{bottom:688.905000px;}
.y62_c00468{bottom:689.130000px;}
.y65_c00468{bottom:689.970000px;}
.y5e_c00468{bottom:706.245000px;}
.y5d_c00468{bottom:708.405000px;}
.y5f_c00468{bottom:708.630000px;}
.y5c_c00468{bottom:725.745000px;}
.y59_c00468{bottom:727.905000px;}
.y5a_c00468{bottom:728.130000px;}
.y5b_c00468{bottom:728.970000px;}
.y58_c00468{bottom:744.825000px;}
.y57_c00468{bottom:745.245000px;}
.y55_c00468{bottom:747.405000px;}
.y56_c00468{bottom:747.630000px;}
.y54_c00468{bottom:765.825000px;}
.y52_c00468{bottom:766.245000px;}
.y50_c00468{bottom:767.130000px;}
.y53_c00468{bottom:767.970000px;}
.y51_c00468{bottom:768.405000px;}
.y4c_c00468{bottom:784.680000px;}
.y4e_c00468{bottom:785.325000px;}
.y4a_c00468{bottom:785.745000px;}
.y4d_c00468{bottom:786.630000px;}
.y4b_c00468{bottom:786.825000px;}
.y49_c00468{bottom:787.905000px;}
.y4f_c00468{bottom:788.970000px;}
.y45_c00468{bottom:805.245000px;}
.y47_c00468{bottom:806.130000px;}
.y48_c00468{bottom:806.325000px;}
.y46_c00468{bottom:807.405000px;}
.y41_c00468{bottom:824.745000px;}
.y44_c00468{bottom:825.630000px;}
.y43_c00468{bottom:826.905000px;}
.y42_c00468{bottom:828.420000px;}
.y40_c00468{bottom:842.970000px;}
.y3c_c00468{bottom:844.245000px;}
.y3f_c00468{bottom:845.130000px;}
.y3e_c00468{bottom:846.405000px;}
.y3d_c00468{bottom:846.630000px;}
.y39_c00468{bottom:862.905000px;}
.y37_c00468{bottom:863.745000px;}
.y3a_c00468{bottom:864.630000px;}
.y3b_c00468{bottom:865.470000px;}
.y36_c00468{bottom:865.905000px;}
.y38_c00468{bottom:866.130000px;}
.y35_c00468{bottom:866.970000px;}
.y32_c00468{bottom:882.825000px;}
.y34_c00468{bottom:883.245000px;}
.y30_c00468{bottom:884.745000px;}
.y31_c00468{bottom:884.970000px;}
.y2e_c00468{bottom:885.405000px;}
.y2f_c00468{bottom:885.630000px;}
.y33_c00468{bottom:886.470000px;}
.y2d_c00468{bottom:902.745000px;}
.y28_c00468{bottom:904.245000px;}
.y2a_c00468{bottom:904.905000px;}
.y2b_c00468{bottom:905.130000px;}
.y2c_c00468{bottom:905.970000px;}
.y29_c00468{bottom:906.405000px;}
.y26_c00468{bottom:923.745000px;}
.y23_c00468{bottom:924.630000px;}
.y27_c00468{bottom:924.825000px;}
.y25_c00468{bottom:925.905000px;}
.y24_c00468{bottom:926.970000px;}
.y1f_c00468{bottom:942.825000px;}
.y20_c00468{bottom:943.245000px;}
.y21_c00468{bottom:944.130000px;}
.y22_c00468{bottom:944.970000px;}
.y1d_c00468{bottom:945.405000px;}
.y1e_c00468{bottom:945.420000px;}
.y1c_c00468{bottom:964.905000px;}
.y19_c00468{bottom:980.970000px;}
.y18_c00468{bottom:982.245000px;}
.y1a_c00468{bottom:983.130000px;}
.y17_c00468{bottom:983.325000px;}
.y15_c00468{bottom:984.405000px;}
.y16_c00468{bottom:984.630000px;}
.y1b_c00468{bottom:985.470000px;}
.y13_c00468{bottom:1001.745000px;}
.y14_c00468{bottom:1003.470000px;}
.y12_c00468{bottom:1003.905000px;}
.y11_c00468{bottom:1004.970000px;}
.yf_c00468{bottom:1021.245000px;}
.yd_c00468{bottom:1023.405000px;}
.y10_c00468{bottom:1023.630000px;}
.ye_c00468{bottom:1024.470000px;}
.y9_c00468{bottom:1039.905000px;}
.yb_c00468{bottom:1040.745000px;}
.yc_c00468{bottom:1040.970000px;}
.ya_c00468{bottom:1042.905000px;}
.y8_c00468{bottom:1043.970000px;}
.y3_c00468{bottom:1061.745000px;}
.y7_c00468{bottom:1062.405000px;}
.y6_c00468{bottom:1062.630000px;}
.y5_c00468{bottom:1063.470000px;}
.y4_c00468{bottom:1063.905000px;}
.y2_c00468{bottom:1098.405000px;}
.y1_c00468{bottom:1101.630000px;}
.h6_c00468{height:4.206533px;}
.h1_c00468{height:23.025234px;}
.h4_c00468{height:31.364502px;}
.h2_c00468{height:35.571035px;}
.h5_c00468{height:39.777568px;}
.h3_c00468{height:43.910303px;}
.h7_c00468{height:48.116836px;}
.h0_c00468{height:1335.000000px;}
.w0_c00468{width:880.500000px;}
.x0_c00468{left:0.000000px;}
.x3_c00468{left:149.580000px;}
.x11_c00468{left:151.500000px;}
.x55_c00468{left:152.580000px;}
.x9c_c00468{left:154.500000px;}
.xef_c00468{left:156.420000px;}
.x100_c00468{left:157.920000px;}
.x41_c00468{left:167.580000px;}
.x12_c00468{left:169.080000px;}
.xd7_c00468{left:171.420000px;}
.xfc_c00468{left:172.500000px;}
.x9d_c00468{left:174.420000px;}
.x105_c00468{left:177.000000px;}
.x56_c00468{left:180.000000px;}
.xec_c00468{left:183.000000px;}
.x3e_c00468{left:184.920000px;}
.x2b_c00468{left:189.000000px;}
.x95_c00468{left:190.500000px;}
.xac_c00468{left:192.420000px;}
.xca_c00468{left:193.500000px;}
.xf7_c00468{left:198.420000px;}
.x4c_c00468{left:199.500000px;}
.x1f_c00468{left:202.500000px;}
.x74_c00468{left:204.000000px;}
.xa8_c00468{left:205.920000px;}
.x2c_c00468{left:208.500000px;}
.x4_c00468{left:209.580000px;}
.xcd_c00468{left:211.920000px;}
.x32_c00468{left:214.500000px;}
.x8f_c00468{left:215.580000px;}
.x4d_c00468{left:219.420000px;}
.x20_c00468{left:220.500000px;}
.xdc_c00468{left:222.420000px;}
.x88_c00468{left:223.920000px;}
.x75_c00468{left:225.420000px;}
.x57_c00468{left:226.500000px;}
.xad_c00468{left:228.000000px;}
.x13_c00468{left:229.500000px;}
.x63_c00468{left:231.000000px;}
.x90_c00468{left:232.920000px;}
.xfa_c00468{left:236.580000px;}
.xd3_c00468{left:238.080000px;}
.x5_c00468{left:239.580000px;}
.xf0_c00468{left:241.500000px;}
.xc4_c00468{left:243.000000px;}
.x4e_c00468{left:246.000000px;}
.xa3_c00468{left:247.500000px;}
.x21_c00468{left:249.000000px;}
.x89_c00468{left:250.920000px;}
.x76_c00468{left:252.420000px;}
.x107_c00468{left:253.920000px;}
.xbc_c00468{left:255.000000px;}
.x7e_c00468{left:256.500000px;}
.xed_c00468{left:258.000000px;}
.x14_c00468{left:259.500000px;}
.x96_c00468{left:261.420000px;}
.x33_c00468{left:262.500000px;}
.x42_c00468{left:266.580000px;}
.xd8_c00468{left:268.500000px;}
.xf8_c00468{left:271.920000px;}
.xe8_c00468{left:273.420000px;}
.xce_c00468{left:274.500000px;}
.x22_c00468{left:275.580000px;}
.xae_c00468{left:277.500000px;}
.x15_c00468{left:280.080000px;}
.x34_c00468{left:282.000000px;}
.xfb_c00468{left:283.500000px;}
.x3f_c00468{left:285.420000px;}
.x58_c00468{left:288.000000px;}
.x101_c00468{left:289.500000px;}
.x2d_c00468{left:294.000000px;}
.x8a_c00468{left:295.500000px;}
.x6a_c00468{left:297.000000px;}
.x91_c00468{left:298.920000px;}
.xf1_c00468{left:300.000000px;}
.x77_c00468{left:304.500000px;}
.x6_c00468{left:306.645000px;}
.xc5_c00468{left:309.420000px;}
.xd4_c00468{left:310.500000px;}
.x23_c00468{left:311.580000px;}
.x4f_c00468{left:314.580000px;}
.x6b_c00468{left:316.080000px;}
.xe6_c00468{left:318.000000px;}
.x97_c00468{left:321.000000px;}
.x40_c00468{left:322.080000px;}
.x81_c00468{left:325.500000px;}
.xf3_c00468{left:326.580000px;}
.x102_c00468{left:328.920000px;}
.x50_c00468{left:331.920000px;}
.x59_c00468{left:333.000000px;}
.x16_c00468{left:334.500000px;}
.x6c_c00468{left:336.000000px;}
.x43_c00468{left:339.000000px;}
.x35_c00468{left:340.500000px;}
.xa9_c00468{left:345.000000px;}
.x9e_c00468{left:346.500000px;}
.x108_c00468{left:347.580000px;}
.x5a_c00468{left:349.500000px;}
.x106_c00468{left:351.420000px;}
.xd9_c00468{left:354.420000px;}
.x7_c00468{left:357.000000px;}
.x82_c00468{left:358.500000px;}
.x44_c00468{left:359.580000px;}
.xb6_c00468{left:361.080000px;}
.x36_c00468{left:362.580000px;}
.xfd_c00468{left:364.080000px;}
.xbd_c00468{left:367.500000px;}
.x98_c00468{left:369.000000px;}
.xaf_c00468{left:370.080000px;}
.x8b_c00468{left:373.920000px;}
.x8_c00468{left:375.000000px;}
.x78_c00468{left:376.500000px;}
.x5b_c00468{left:378.000000px;}
.x37_c00468{left:379.500000px;}
.xde_c00468{left:381.000000px;}
.x45_c00468{left:382.920000px;}
.xc6_c00468{left:385.080000px;}
.xb0_c00468{left:390.000000px;}
.x17_c00468{left:391.500000px;}
.xa4_c00468{left:394.500000px;}
.x79_c00468{left:396.000000px;}
.xdf_c00468{left:399.000000px;}
.x8c_c00468{left:402.000000px;}
.xbe_c00468{left:403.080000px;}
.x1_c00468{left:405.000000px;}
.x46_c00468{left:406.920000px;}
.x7a_c00468{left:408.000000px;}
.xfe_c00468{left:409.500000px;}
.x24_c00468{left:411.000000px;}
.x9_c00468{left:412.500000px;}
.x6d_c00468{left:413.775000px;}
.x38_c00468{left:415.500000px;}
.xe0_c00468{left:417.000000px;}
.x18_c00468{left:420.000000px;}
.xf9_c00468{left:421.500000px;}
.xdd_c00468{left:423.000000px;}
.xcb_c00468{left:425.580000px;}
.xa_c00468{left:430.920000px;}
.x9f_c00468{left:432.000000px;}
.x47_c00468{left:433.500000px;}
.xb1_c00468{left:436.080000px;}
.x103_c00468{left:438.000000px;}
.x25_c00468{left:439.080000px;}
.x5c_c00468{left:441.000000px;}
.x64_c00468{left:444.000000px;}
.x7b_c00468{left:448.500000px;}
.x6e_c00468{left:450.000000px;}
.xe1_c00468{left:451.920000px;}
.xcf_c00468{left:453.000000px;}
.xb_c00468{left:454.080000px;}
.xee_c00468{left:456.420000px;}
.x83_c00468{left:459.000000px;}
.x5d_c00468{left:460.920000px;}
.x92_c00468{left:463.500000px;}
.xa0_c00468{left:464.580000px;}
.x51_c00468{left:466.920000px;}
.xb2_c00468{left:468.000000px;}
.x19_c00468{left:476.580000px;}
.xbf_c00468{left:478.080000px;}
.x6f_c00468{left:481.080000px;}
.x26_c00468{left:484.080000px;}
.x5e_c00468{left:486.000000px;}
.xc_c00468{left:487.500000px;}
.xb7_c00468{left:488.580000px;}
.x39_c00468{left:490.920000px;}
.x99_c00468{left:493.920000px;}
.x93_c00468{left:495.000000px;}
.x1a_c00468{left:498.000000px;}
.xa5_c00468{left:499.920000px;}
.x52_c00468{left:504.000000px;}
.xd_c00468{left:505.920000px;}
.xc0_c00468{left:508.920000px;}
.xb3_c00468{left:511.500000px;}
.xaa_c00468{left:512.580000px;}
.x7f_c00468{left:516.420000px;}
.x2e_c00468{left:518.580000px;}
.xcc_c00468{left:520.500000px;}
.xd0_c00468{left:522.420000px;}
.x1b_c00468{left:526.500000px;}
.x109_c00468{left:528.000000px;}
.x53_c00468{left:529.500000px;}
.x9a_c00468{left:530.580000px;}
.xe_c00468{left:532.500000px;}
.xe2_c00468{left:534.000000px;}
.xa1_c00468{left:535.080000px;}
.xc7_c00468{left:538.920000px;}
.x65_c00468{left:540.000000px;}
.x5f_c00468{left:541.500000px;}
.x48_c00468{left:543.000000px;}
.xc1_c00468{left:544.920000px;}
.x8d_c00468{left:546.420000px;}
.xb8_c00468{left:547.920000px;}
.xd1_c00468{left:549.420000px;}
.xf4_c00468{left:550.500000px;}
.x27_c00468{left:552.420000px;}
.xab_c00468{left:553.500000px;}
.x84_c00468{left:557.580000px;}
.x70_c00468{left:559.500000px;}
.x7c_c00468{left:561.420000px;}
.xe3_c00468{left:563.580000px;}
.x10a_c00468{left:565.920000px;}
.x1c_c00468{left:572.580000px;}
.x66_c00468{left:574.080000px;}
.x49_c00468{left:576.000000px;}
.x60_c00468{left:578.580000px;}
.x2f_c00468{left:581.580000px;}
.xd5_c00468{left:586.500000px;}
.xd6_c00468{left:588.000000px;}
.x28_c00468{left:589.080000px;}
.x85_c00468{left:591.000000px;}
.x67_c00468{left:592.500000px;}
.xc8_c00468{left:594.000000px;}
.x61_c00468{left:595.500000px;}
.xff_c00468{left:597.000000px;}
.xda_c00468{left:601.500000px;}
.xf5_c00468{left:602.580000px;}
.xf_c00468{left:603.645000px;}
.x9b_c00468{left:607.500000px;}
.xa2_c00468{left:609.420000px;}
.x3a_c00468{left:613.500000px;}
.xc2_c00468{left:615.000000px;}
.xe4_c00468{left:618.000000px;}
.x54_c00468{left:619.920000px;}
.x62_c00468{left:621.000000px;}
.x29_c00468{left:624.000000px;}
.x71_c00468{left:625.080000px;}
.x30_c00468{left:628.500000px;}
.x104_c00468{left:630.420000px;}
.x3b_c00468{left:631.500000px;}
.x1d_c00468{left:633.000000px;}
.xb4_c00468{left:634.920000px;}
.xa6_c00468{left:637.080000px;}
.xb9_c00468{left:640.500000px;}
.x72_c00468{left:643.920000px;}
.x94_c00468{left:645.000000px;}
.xe9_c00468{left:646.920000px;}
.x3c_c00468{left:648.000000px;}
.x86_c00468{left:651.000000px;}
.x10_c00468{left:652.500000px;}
.x68_c00468{left:655.080000px;}
.x4a_c00468{left:657.420000px;}
.xf2_c00468{left:658.920000px;}
.x7d_c00468{left:660.000000px;}
.x10b_c00468{left:663.420000px;}
.x31_c00468{left:665.580000px;}
.xc9_c00468{left:667.500000px;}
.xa7_c00468{left:669.420000px;}
.xb5_c00468{left:670.920000px;}
.xea_c00468{left:672.420000px;}
.xdb_c00468{left:673.500000px;}
.xba_c00468{left:675.000000px;}
.xe7_c00468{left:676.500000px;}
.xe5_c00468{left:677.580000px;}
.xd2_c00468{left:679.500000px;}
.x2a_c00468{left:682.080000px;}
.x10c_c00468{left:684.000000px;}
.x73_c00468{left:685.080000px;}
.x8e_c00468{left:688.500000px;}
.xf6_c00468{left:691.920000px;}
.xc3_c00468{left:694.080000px;}
.x4b_c00468{left:695.580000px;}
.x2_c00468{left:702.000000px;}
.x1e_c00468{left:705.000000px;}
.x3d_c00468{left:706.500000px;}
.x87_c00468{left:707.580000px;}
.x80_c00468{left:709.500000px;}
.xbb_c00468{left:711.000000px;}
.x69_c00468{left:712.500000px;}
.x10d_c00468{left:718.500000px;}
.xeb_c00468{left:719.580000px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.ls0_c00468{letter-spacing:0.000000pt;}
.ws0_c00468{word-spacing:0.000000pt;}
.fs5_c00468{font-size:3.040000pt;}
.fs0_c00468{font-size:16.640000pt;}
.fs3_c00468{font-size:22.666667pt;}
.fs1_c00468{font-size:25.706667pt;}
.fs4_c00468{font-size:28.746667pt;}
.fs2_c00468{font-size:31.733333pt;}
.fs6_c00468{font-size:34.773333pt;}
.y0_c00468{bottom:0.000000pt;}
.yd6_c00468{bottom:222.066667pt;}
.yd1_c00468{bottom:222.826667pt;}
.yd7_c00468{bottom:223.026667pt;}
.yd2_c00468{bottom:223.773333pt;}
.yd3_c00468{bottom:223.973333pt;}
.yd5_c00468{bottom:225.106667pt;}
.yd0_c00468{bottom:225.693333pt;}
.yd8_c00468{bottom:225.893333pt;}
.yd4_c00468{bottom:227.026667pt;}
.yd9_c00468{bottom:227.040000pt;}
.ycf_c00468{bottom:241.493333pt;}
.ycc_c00468{bottom:242.440000pt;}
.yca_c00468{bottom:243.226667pt;}
.yce_c00468{bottom:243.400000pt;}
.ycb_c00468{bottom:244.360000pt;}
.ycd_c00468{bottom:245.306667pt;}
.yc2_c00468{bottom:257.693333pt;}
.yc5_c00468{bottom:258.640000pt;}
.yc6_c00468{bottom:259.400000pt;}
.yc8_c00468{bottom:259.773333pt;}
.yc9_c00468{bottom:259.973333pt;}
.yc3_c00468{bottom:260.733333pt;}
.yc4_c00468{bottom:261.693333pt;}
.yc7_c00468{bottom:262.640000pt;}
.yc0_c00468{bottom:277.106667pt;}
.ybf_c00468{bottom:278.640000pt;}
.ybe_c00468{bottom:279.026667pt;}
.yc1_c00468{bottom:279.226667pt;}
.ybd_c00468{bottom:294.440000pt;}
.ybc_c00468{bottom:295.226667pt;}
.ybb_c00468{bottom:296.360000pt;}
.yb9_c00468{bottom:310.826667pt;}
.yb8_c00468{bottom:311.773333pt;}
.yb6_c00468{bottom:311.973333pt;}
.yba_c00468{bottom:313.306667pt;}
.yb7_c00468{bottom:313.693333pt;}
.yb3_c00468{bottom:329.106667pt;}
.yb2_c00468{bottom:329.306667pt;}
.yb1_c00468{bottom:331.026667pt;}
.yb4_c00468{bottom:331.973333pt;}
.yb5_c00468{bottom:332.360000pt;}
.yaf_c00468{bottom:346.440000pt;}
.yae_c00468{bottom:347.400000pt;}
.yab_c00468{bottom:347.773333pt;}
.yac_c00468{bottom:348.560000pt;}
.yad_c00468{bottom:349.306667pt;}
.yaa_c00468{bottom:349.693333pt;}
.yb0_c00468{bottom:350.640000pt;}
.ya8_c00468{bottom:363.773333pt;}
.ya7_c00468{bottom:365.106667pt;}
.ya9_c00468{bottom:365.693333pt;}
.ya6_c00468{bottom:365.893333pt;}
.ya5_c00468{bottom:367.026667pt;}
.ya4_c00468{bottom:382.066667pt;}
.ya0_c00468{bottom:382.440000pt;}
.ya2_c00468{bottom:383.026667pt;}
.ya3_c00468{bottom:383.226667pt;}
.ya1_c00468{bottom:383.973333pt;}
.y9f_c00468{bottom:384.360000pt;}
.y9d_c00468{bottom:401.306667pt;}
.y9c_c00468{bottom:401.693333pt;}
.y9e_c00468{bottom:402.640000pt;}
.y99_c00468{bottom:417.106667pt;}
.y9b_c00468{bottom:417.893333pt;}
.y98_c00468{bottom:419.026667pt;}
.y9a_c00468{bottom:419.973333pt;}
.y96_c00468{bottom:434.440000pt;}
.y95_c00468{bottom:436.360000pt;}
.y97_c00468{bottom:437.693333pt;}
.y92_c00468{bottom:451.026667pt;}
.y94_c00468{bottom:451.400000pt;}
.y93_c00468{bottom:451.773333pt;}
.y90_c00468{bottom:452.733333pt;}
.y8d_c00468{bottom:453.693333pt;}
.y8f_c00468{bottom:453.893333pt;}
.y91_c00468{bottom:454.640000pt;}
.y8e_c00468{bottom:455.026667pt;}
.y8a_c00468{bottom:468.360000pt;}
.y8c_c00468{bottom:470.066667pt;}
.y89_c00468{bottom:470.440000pt;}
.y8b_c00468{bottom:471.026667pt;}
.y88_c00468{bottom:472.360000pt;}
.y86_c00468{bottom:485.693333pt;}
.y84_c00468{bottom:487.773333pt;}
.y87_c00468{bottom:488.360000pt;}
.y85_c00468{bottom:488.733333pt;}
.y83_c00468{bottom:489.693333pt;}
.y81_c00468{bottom:504.733333pt;}
.y7f_c00468{bottom:505.106667pt;}
.y82_c00468{bottom:505.693333pt;}
.y80_c00468{bottom:505.893333pt;}
.y7e_c00468{bottom:507.026667pt;}
.y7d_c00468{bottom:520.360000pt;}
.y7b_c00468{bottom:522.440000pt;}
.y7c_c00468{bottom:524.360000pt;}
.y7a_c00468{bottom:539.026667pt;}
.y79_c00468{bottom:539.773333pt;}
.y77_c00468{bottom:541.693333pt;}
.y78_c00468{bottom:541.893333pt;}
.y76_c00468{bottom:543.026667pt;}
.y73_c00468{bottom:556.360000pt;}
.y75_c00468{bottom:557.106667pt;}
.y74_c00468{bottom:558.440000pt;}
.y70_c00468{bottom:559.400000pt;}
.y72_c00468{bottom:559.973333pt;}
.y71_c00468{bottom:560.360000pt;}
.y6e_c00468{bottom:574.440000pt;}
.y6b_c00468{bottom:575.400000pt;}
.y6d_c00468{bottom:575.773333pt;}
.y6c_c00468{bottom:576.360000pt;}
.y6f_c00468{bottom:576.560000pt;}
.y67_c00468{bottom:591.026667pt;}
.y68_c00468{bottom:593.106667pt;}
.y69_c00468{bottom:593.693333pt;}
.y6a_c00468{bottom:593.893333pt;}
.y66_c00468{bottom:595.026667pt;}
.y63_c00468{bottom:609.306667pt;}
.y64_c00468{bottom:610.066667pt;}
.y61_c00468{bottom:610.440000pt;}
.y60_c00468{bottom:612.360000pt;}
.y62_c00468{bottom:612.560000pt;}
.y65_c00468{bottom:613.306667pt;}
.y5e_c00468{bottom:627.773333pt;}
.y5d_c00468{bottom:629.693333pt;}
.y5f_c00468{bottom:629.893333pt;}
.y5c_c00468{bottom:645.106667pt;}
.y59_c00468{bottom:647.026667pt;}
.y5a_c00468{bottom:647.226667pt;}
.y5b_c00468{bottom:647.973333pt;}
.y58_c00468{bottom:662.066667pt;}
.y57_c00468{bottom:662.440000pt;}
.y55_c00468{bottom:664.360000pt;}
.y56_c00468{bottom:664.560000pt;}
.y54_c00468{bottom:680.733333pt;}
.y52_c00468{bottom:681.106667pt;}
.y50_c00468{bottom:681.893333pt;}
.y53_c00468{bottom:682.640000pt;}
.y51_c00468{bottom:683.026667pt;}
.y4c_c00468{bottom:697.493333pt;}
.y4e_c00468{bottom:698.066667pt;}
.y4a_c00468{bottom:698.440000pt;}
.y4d_c00468{bottom:699.226667pt;}
.y4b_c00468{bottom:699.400000pt;}
.y49_c00468{bottom:700.360000pt;}
.y4f_c00468{bottom:701.306667pt;}
.y45_c00468{bottom:715.773333pt;}
.y47_c00468{bottom:716.560000pt;}
.y48_c00468{bottom:716.733333pt;}
.y46_c00468{bottom:717.693333pt;}
.y41_c00468{bottom:733.106667pt;}
.y44_c00468{bottom:733.893333pt;}
.y43_c00468{bottom:735.026667pt;}
.y42_c00468{bottom:736.373333pt;}
.y40_c00468{bottom:749.306667pt;}
.y3c_c00468{bottom:750.440000pt;}
.y3f_c00468{bottom:751.226667pt;}
.y3e_c00468{bottom:752.360000pt;}
.y3d_c00468{bottom:752.560000pt;}
.y39_c00468{bottom:767.026667pt;}
.y37_c00468{bottom:767.773333pt;}
.y3a_c00468{bottom:768.560000pt;}
.y3b_c00468{bottom:769.306667pt;}
.y36_c00468{bottom:769.693333pt;}
.y38_c00468{bottom:769.893333pt;}
.y35_c00468{bottom:770.640000pt;}
.y32_c00468{bottom:784.733333pt;}
.y34_c00468{bottom:785.106667pt;}
.y30_c00468{bottom:786.440000pt;}
.y31_c00468{bottom:786.640000pt;}
.y2e_c00468{bottom:787.026667pt;}
.y2f_c00468{bottom:787.226667pt;}
.y33_c00468{bottom:787.973333pt;}
.y2d_c00468{bottom:802.440000pt;}
.y28_c00468{bottom:803.773333pt;}
.y2a_c00468{bottom:804.360000pt;}
.y2b_c00468{bottom:804.560000pt;}
.y2c_c00468{bottom:805.306667pt;}
.y29_c00468{bottom:805.693333pt;}
.y26_c00468{bottom:821.106667pt;}
.y23_c00468{bottom:821.893333pt;}
.y27_c00468{bottom:822.066667pt;}
.y25_c00468{bottom:823.026667pt;}
.y24_c00468{bottom:823.973333pt;}
.y1f_c00468{bottom:838.066667pt;}
.y20_c00468{bottom:838.440000pt;}
.y21_c00468{bottom:839.226667pt;}
.y22_c00468{bottom:839.973333pt;}
.y1d_c00468{bottom:840.360000pt;}
.y1e_c00468{bottom:840.373333pt;}
.y1c_c00468{bottom:857.693333pt;}
.y19_c00468{bottom:871.973333pt;}
.y18_c00468{bottom:873.106667pt;}
.y1a_c00468{bottom:873.893333pt;}
.y17_c00468{bottom:874.066667pt;}
.y15_c00468{bottom:875.026667pt;}
.y16_c00468{bottom:875.226667pt;}
.y1b_c00468{bottom:875.973333pt;}
.y13_c00468{bottom:890.440000pt;}
.y14_c00468{bottom:891.973333pt;}
.y12_c00468{bottom:892.360000pt;}
.y11_c00468{bottom:893.306667pt;}
.yf_c00468{bottom:907.773333pt;}
.yd_c00468{bottom:909.693333pt;}
.y10_c00468{bottom:909.893333pt;}
.ye_c00468{bottom:910.640000pt;}
.y9_c00468{bottom:924.360000pt;}
.yb_c00468{bottom:925.106667pt;}
.yc_c00468{bottom:925.306667pt;}
.ya_c00468{bottom:927.026667pt;}
.y8_c00468{bottom:927.973333pt;}
.y3_c00468{bottom:943.773333pt;}
.y7_c00468{bottom:944.360000pt;}
.y6_c00468{bottom:944.560000pt;}
.y5_c00468{bottom:945.306667pt;}
.y4_c00468{bottom:945.693333pt;}
.y2_c00468{bottom:976.360000pt;}
.y1_c00468{bottom:979.226667pt;}
.h6_c00468{height:3.739141pt;}
.h1_c00468{height:20.466875pt;}
.h4_c00468{height:27.879557pt;}
.h2_c00468{height:31.618698pt;}
.h5_c00468{height:35.357839pt;}
.h3_c00468{height:39.031380pt;}
.h7_c00468{height:42.770521pt;}
.h0_c00468{height:1186.666667pt;}
.w0_c00468{width:782.666667pt;}
.x0_c00468{left:0.000000pt;}
.x3_c00468{left:132.960000pt;}
.x11_c00468{left:134.666667pt;}
.x55_c00468{left:135.626667pt;}
.x9c_c00468{left:137.333333pt;}
.xef_c00468{left:139.040000pt;}
.x100_c00468{left:140.373333pt;}
.x41_c00468{left:148.960000pt;}
.x12_c00468{left:150.293333pt;}
.xd7_c00468{left:152.373333pt;}
.xfc_c00468{left:153.333333pt;}
.x9d_c00468{left:155.040000pt;}
.x105_c00468{left:157.333333pt;}
.x56_c00468{left:160.000000pt;}
.xec_c00468{left:162.666667pt;}
.x3e_c00468{left:164.373333pt;}
.x2b_c00468{left:168.000000pt;}
.x95_c00468{left:169.333333pt;}
.xac_c00468{left:171.040000pt;}
.xca_c00468{left:172.000000pt;}
.xf7_c00468{left:176.373333pt;}
.x4c_c00468{left:177.333333pt;}
.x1f_c00468{left:180.000000pt;}
.x74_c00468{left:181.333333pt;}
.xa8_c00468{left:183.040000pt;}
.x2c_c00468{left:185.333333pt;}
.x4_c00468{left:186.293333pt;}
.xcd_c00468{left:188.373333pt;}
.x32_c00468{left:190.666667pt;}
.x8f_c00468{left:191.626667pt;}
.x4d_c00468{left:195.040000pt;}
.x20_c00468{left:196.000000pt;}
.xdc_c00468{left:197.706667pt;}
.x88_c00468{left:199.040000pt;}
.x75_c00468{left:200.373333pt;}
.x57_c00468{left:201.333333pt;}
.xad_c00468{left:202.666667pt;}
.x13_c00468{left:204.000000pt;}
.x63_c00468{left:205.333333pt;}
.x90_c00468{left:207.040000pt;}
.xfa_c00468{left:210.293333pt;}
.xd3_c00468{left:211.626667pt;}
.x5_c00468{left:212.960000pt;}
.xf0_c00468{left:214.666667pt;}
.xc4_c00468{left:216.000000pt;}
.x4e_c00468{left:218.666667pt;}
.xa3_c00468{left:220.000000pt;}
.x21_c00468{left:221.333333pt;}
.x89_c00468{left:223.040000pt;}
.x76_c00468{left:224.373333pt;}
.x107_c00468{left:225.706667pt;}
.xbc_c00468{left:226.666667pt;}
.x7e_c00468{left:228.000000pt;}
.xed_c00468{left:229.333333pt;}
.x14_c00468{left:230.666667pt;}
.x96_c00468{left:232.373333pt;}
.x33_c00468{left:233.333333pt;}
.x42_c00468{left:236.960000pt;}
.xd8_c00468{left:238.666667pt;}
.xf8_c00468{left:241.706667pt;}
.xe8_c00468{left:243.040000pt;}
.xce_c00468{left:244.000000pt;}
.x22_c00468{left:244.960000pt;}
.xae_c00468{left:246.666667pt;}
.x15_c00468{left:248.960000pt;}
.x34_c00468{left:250.666667pt;}
.xfb_c00468{left:252.000000pt;}
.x3f_c00468{left:253.706667pt;}
.x58_c00468{left:256.000000pt;}
.x101_c00468{left:257.333333pt;}
.x2d_c00468{left:261.333333pt;}
.x8a_c00468{left:262.666667pt;}
.x6a_c00468{left:264.000000pt;}
.x91_c00468{left:265.706667pt;}
.xf1_c00468{left:266.666667pt;}
.x77_c00468{left:270.666667pt;}
.x6_c00468{left:272.573333pt;}
.xc5_c00468{left:275.040000pt;}
.xd4_c00468{left:276.000000pt;}
.x23_c00468{left:276.960000pt;}
.x4f_c00468{left:279.626667pt;}
.x6b_c00468{left:280.960000pt;}
.xe6_c00468{left:282.666667pt;}
.x97_c00468{left:285.333333pt;}
.x40_c00468{left:286.293333pt;}
.x81_c00468{left:289.333333pt;}
.xf3_c00468{left:290.293333pt;}
.x102_c00468{left:292.373333pt;}
.x50_c00468{left:295.040000pt;}
.x59_c00468{left:296.000000pt;}
.x16_c00468{left:297.333333pt;}
.x6c_c00468{left:298.666667pt;}
.x43_c00468{left:301.333333pt;}
.x35_c00468{left:302.666667pt;}
.xa9_c00468{left:306.666667pt;}
.x9e_c00468{left:308.000000pt;}
.x108_c00468{left:308.960000pt;}
.x5a_c00468{left:310.666667pt;}
.x106_c00468{left:312.373333pt;}
.xd9_c00468{left:315.040000pt;}
.x7_c00468{left:317.333333pt;}
.x82_c00468{left:318.666667pt;}
.x44_c00468{left:319.626667pt;}
.xb6_c00468{left:320.960000pt;}
.x36_c00468{left:322.293333pt;}
.xfd_c00468{left:323.626667pt;}
.xbd_c00468{left:326.666667pt;}
.x98_c00468{left:328.000000pt;}
.xaf_c00468{left:328.960000pt;}
.x8b_c00468{left:332.373333pt;}
.x8_c00468{left:333.333333pt;}
.x78_c00468{left:334.666667pt;}
.x5b_c00468{left:336.000000pt;}
.x37_c00468{left:337.333333pt;}
.xde_c00468{left:338.666667pt;}
.x45_c00468{left:340.373333pt;}
.xc6_c00468{left:342.293333pt;}
.xb0_c00468{left:346.666667pt;}
.x17_c00468{left:348.000000pt;}
.xa4_c00468{left:350.666667pt;}
.x79_c00468{left:352.000000pt;}
.xdf_c00468{left:354.666667pt;}
.x8c_c00468{left:357.333333pt;}
.xbe_c00468{left:358.293333pt;}
.x1_c00468{left:360.000000pt;}
.x46_c00468{left:361.706667pt;}
.x7a_c00468{left:362.666667pt;}
.xfe_c00468{left:364.000000pt;}
.x24_c00468{left:365.333333pt;}
.x9_c00468{left:366.666667pt;}
.x6d_c00468{left:367.800000pt;}
.x38_c00468{left:369.333333pt;}
.xe0_c00468{left:370.666667pt;}
.x18_c00468{left:373.333333pt;}
.xf9_c00468{left:374.666667pt;}
.xdd_c00468{left:376.000000pt;}
.xcb_c00468{left:378.293333pt;}
.xa_c00468{left:383.040000pt;}
.x9f_c00468{left:384.000000pt;}
.x47_c00468{left:385.333333pt;}
.xb1_c00468{left:387.626667pt;}
.x103_c00468{left:389.333333pt;}
.x25_c00468{left:390.293333pt;}
.x5c_c00468{left:392.000000pt;}
.x64_c00468{left:394.666667pt;}
.x7b_c00468{left:398.666667pt;}
.x6e_c00468{left:400.000000pt;}
.xe1_c00468{left:401.706667pt;}
.xcf_c00468{left:402.666667pt;}
.xb_c00468{left:403.626667pt;}
.xee_c00468{left:405.706667pt;}
.x83_c00468{left:408.000000pt;}
.x5d_c00468{left:409.706667pt;}
.x92_c00468{left:412.000000pt;}
.xa0_c00468{left:412.960000pt;}
.x51_c00468{left:415.040000pt;}
.xb2_c00468{left:416.000000pt;}
.x19_c00468{left:423.626667pt;}
.xbf_c00468{left:424.960000pt;}
.x6f_c00468{left:427.626667pt;}
.x26_c00468{left:430.293333pt;}
.x5e_c00468{left:432.000000pt;}
.xc_c00468{left:433.333333pt;}
.xb7_c00468{left:434.293333pt;}
.x39_c00468{left:436.373333pt;}
.x99_c00468{left:439.040000pt;}
.x93_c00468{left:440.000000pt;}
.x1a_c00468{left:442.666667pt;}
.xa5_c00468{left:444.373333pt;}
.x52_c00468{left:448.000000pt;}
.xd_c00468{left:449.706667pt;}
.xc0_c00468{left:452.373333pt;}
.xb3_c00468{left:454.666667pt;}
.xaa_c00468{left:455.626667pt;}
.x7f_c00468{left:459.040000pt;}
.x2e_c00468{left:460.960000pt;}
.xcc_c00468{left:462.666667pt;}
.xd0_c00468{left:464.373333pt;}
.x1b_c00468{left:468.000000pt;}
.x109_c00468{left:469.333333pt;}
.x53_c00468{left:470.666667pt;}
.x9a_c00468{left:471.626667pt;}
.xe_c00468{left:473.333333pt;}
.xe2_c00468{left:474.666667pt;}
.xa1_c00468{left:475.626667pt;}
.xc7_c00468{left:479.040000pt;}
.x65_c00468{left:480.000000pt;}
.x5f_c00468{left:481.333333pt;}
.x48_c00468{left:482.666667pt;}
.xc1_c00468{left:484.373333pt;}
.x8d_c00468{left:485.706667pt;}
.xb8_c00468{left:487.040000pt;}
.xd1_c00468{left:488.373333pt;}
.xf4_c00468{left:489.333333pt;}
.x27_c00468{left:491.040000pt;}
.xab_c00468{left:492.000000pt;}
.x84_c00468{left:495.626667pt;}
.x70_c00468{left:497.333333pt;}
.x7c_c00468{left:499.040000pt;}
.xe3_c00468{left:500.960000pt;}
.x10a_c00468{left:503.040000pt;}
.x1c_c00468{left:508.960000pt;}
.x66_c00468{left:510.293333pt;}
.x49_c00468{left:512.000000pt;}
.x60_c00468{left:514.293333pt;}
.x2f_c00468{left:516.960000pt;}
.xd5_c00468{left:521.333333pt;}
.xd6_c00468{left:522.666667pt;}
.x28_c00468{left:523.626667pt;}
.x85_c00468{left:525.333333pt;}
.x67_c00468{left:526.666667pt;}
.xc8_c00468{left:528.000000pt;}
.x61_c00468{left:529.333333pt;}
.xff_c00468{left:530.666667pt;}
.xda_c00468{left:534.666667pt;}
.xf5_c00468{left:535.626667pt;}
.xf_c00468{left:536.573333pt;}
.x9b_c00468{left:540.000000pt;}
.xa2_c00468{left:541.706667pt;}
.x3a_c00468{left:545.333333pt;}
.xc2_c00468{left:546.666667pt;}
.xe4_c00468{left:549.333333pt;}
.x54_c00468{left:551.040000pt;}
.x62_c00468{left:552.000000pt;}
.x29_c00468{left:554.666667pt;}
.x71_c00468{left:555.626667pt;}
.x30_c00468{left:558.666667pt;}
.x104_c00468{left:560.373333pt;}
.x3b_c00468{left:561.333333pt;}
.x1d_c00468{left:562.666667pt;}
.xb4_c00468{left:564.373333pt;}
.xa6_c00468{left:566.293333pt;}
.xb9_c00468{left:569.333333pt;}
.x72_c00468{left:572.373333pt;}
.x94_c00468{left:573.333333pt;}
.xe9_c00468{left:575.040000pt;}
.x3c_c00468{left:576.000000pt;}
.x86_c00468{left:578.666667pt;}
.x10_c00468{left:580.000000pt;}
.x68_c00468{left:582.293333pt;}
.x4a_c00468{left:584.373333pt;}
.xf2_c00468{left:585.706667pt;}
.x7d_c00468{left:586.666667pt;}
.x10b_c00468{left:589.706667pt;}
.x31_c00468{left:591.626667pt;}
.xc9_c00468{left:593.333333pt;}
.xa7_c00468{left:595.040000pt;}
.xb5_c00468{left:596.373333pt;}
.xea_c00468{left:597.706667pt;}
.xdb_c00468{left:598.666667pt;}
.xba_c00468{left:600.000000pt;}
.xe7_c00468{left:601.333333pt;}
.xe5_c00468{left:602.293333pt;}
.xd2_c00468{left:604.000000pt;}
.x2a_c00468{left:606.293333pt;}
.x10c_c00468{left:608.000000pt;}
.x73_c00468{left:608.960000pt;}
.x8e_c00468{left:612.000000pt;}
.xf6_c00468{left:615.040000pt;}
.xc3_c00468{left:616.960000pt;}
.x4b_c00468{left:618.293333pt;}
.x2_c00468{left:624.000000pt;}
.x1e_c00468{left:626.666667pt;}
.x3d_c00468{left:628.000000pt;}
.x87_c00468{left:628.960000pt;}
.x80_c00468{left:630.666667pt;}
.xbb_c00468{left:632.000000pt;}
.x69_c00468{left:633.333333pt;}
.x10d_c00468{left:638.666667pt;}
.xeb_c00468{left:639.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_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_313c82ad291fcca620c0ea07.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.med_c00469{transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);}
.m39_c00469{transform:matrix(0.325210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325210,0.000000,0.000000,0.250000,0,0);}
.mb1_c00469{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.mec_c00469{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.mb7_c00469{transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);}
.m3e_c00469{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mf_c00469{transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);}
.m90_c00469{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mbc_c00469{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.mb0_c00469{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m6b_c00469{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.mdd_c00469{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mde_c00469{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.me2_c00469{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.mf5_c00469{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m14_c00469{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m74_c00469{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m59_c00469{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m46_c00469{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m25_c00469{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m3d_c00469{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m50_c00469{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.mb6_c00469{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m36_c00469{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.me6_c00469{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.ma3_c00469{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.mc9_c00469{transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);}
.me9_c00469{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m73_c00469{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m8d_c00469{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_c00469{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m5e_c00469{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.mf6_c00469{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m6_c00469{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mef_c00469{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.mc2_c00469{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.m9_c00469{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m92_c00469{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m3_c00469{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m34_c00469{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.mcf_c00469{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.mae_c00469{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.mdf_c00469{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mcb_c00469{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.mca_c00469{transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);}
.m53_c00469{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m19_c00469{transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);}
.me4_c00469{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.me1_c00469{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.mc6_c00469{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m8b_c00469{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mbd_c00469{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.mad_c00469{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.maf_c00469{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m64_c00469{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m2c_c00469{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m1d_c00469{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m7f_c00469{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m7_c00469{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m4_c00469{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m11_c00469{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mc4_c00469{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.m38_c00469{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.maa_c00469{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.md8_c00469{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.me3_c00469{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.ma9_c00469{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mbb_c00469{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m44_c00469{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m47_c00469{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.mba_c00469{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.mb_c00469{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m9a_c00469{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.mc7_c00469{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.m9d_c00469{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m63_c00469{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m17_c00469{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m4d_c00469{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m87_c00469{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m8_c00469{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.md9_c00469{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mb5_c00469{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.mc3_c00469{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.mbe_c00469{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m45_c00469{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m82_c00469{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.m97_c00469{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m22_c00469{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.md_c00469{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.md3_c00469{transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);}
.m35_c00469{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m3b_c00469{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m6d_c00469{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m28_c00469{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.me0_c00469{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.mcd_c00469{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m23_c00469{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.m98_c00469{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.mbf_c00469{transform:matrix(0.449170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449170,0.000000,0.000000,0.250000,0,0);}
.m2b_c00469{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m52_c00469{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m26_c00469{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m2e_c00469{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m1a_c00469{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.md0_c00469{transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);}
.m75_c00469{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m99_c00469{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m24_c00469{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m93_c00469{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m4f_c00469{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mb3_c00469{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.ma0_c00469{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.m13_c00469{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m78_c00469{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.mcc_c00469{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m71_c00469{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.ma2_c00469{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m4c_c00469{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.m10_c00469{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m6a_c00469{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m1e_c00469{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.mb4_c00469{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.mb9_c00469{transform:matrix(0.478992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478992,0.000000,0.000000,0.250000,0,0);}
.m5d_c00469{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.md2_c00469{transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);}
.m21_c00469{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m40_c00469{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.meb_c00469{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.mb2_c00469{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m66_c00469{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.me5_c00469{transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);}
.m8f_c00469{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mab_c00469{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m91_c00469{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m48_c00469{transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);}
.m83_c00469{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m89_c00469{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m76_c00469{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m6f_c00469{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.ma4_c00469{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.mc_c00469{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_c00469{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.ma_c00469{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.me8_c00469{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.md1_c00469{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.md7_c00469{transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);}
.ma8_c00469{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m43_c00469{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mf3_c00469{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m4a_c00469{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.mea_c00469{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m86_c00469{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.mf8_c00469{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m5b_c00469{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m67_c00469{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m2a_c00469{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m30_c00469{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.ma7_c00469{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m49_c00469{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mb8_c00469{transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);}
.m69_c00469{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m3a_c00469{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m95_c00469{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m7b_c00469{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m5_c00469{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m6c_c00469{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m2d_c00469{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m29_c00469{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m8e_c00469{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m1c_c00469{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m7e_c00469{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.me_c00469{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mf4_c00469{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m27_c00469{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m55_c00469{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mf2_c00469{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m33_c00469{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.me7_c00469{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m77_c00469{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mc0_c00469{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m2_c00469{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m1b_c00469{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m7c_c00469{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m32_c00469{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m3c_c00469{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m0_c00469{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m3f_c00469{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.md5_c00469{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m5a_c00469{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m65_c00469{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m8c_c00469{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mce_c00469{transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);}
.mc1_c00469{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m88_c00469{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m9e_c00469{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m60_c00469{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mac_c00469{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m96_c00469{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m42_c00469{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.ma6_c00469{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mf1_c00469{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m9b_c00469{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m18_c00469{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m81_c00469{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m84_c00469{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m79_c00469{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mdb_c00469{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.ma5_c00469{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.m54_c00469{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m20_c00469{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.ma1_c00469{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m16_c00469{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m37_c00469{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m9c_c00469{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m8a_c00469{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m1f_c00469{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m56_c00469{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m41_c00469{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mf7_c00469{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.m51_c00469{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m5c_c00469{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);}
.md4_c00469{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.mc8_c00469{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m4b_c00469{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m7d_c00469{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m1_c00469{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m58_c00469{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m12_c00469{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m94_c00469{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m68_c00469{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mc5_c00469{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.md6_c00469{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.m7a_c00469{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m9f_c00469{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mf0_c00469{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m80_c00469{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m57_c00469{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.mdc_c00469{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m70_c00469{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m61_c00469{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m62_c00469{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m6e_c00469{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m2f_c00469{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m5f_c00469{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m4e_c00469{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m15_c00469{transform:matrix(0.875735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875735,0.000000,0.000000,0.250000,0,0);}
.mee_c00469{transform:matrix(2.653509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.653509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.653509,0.000000,0.000000,0.250000,0,0);}
.mda_c00469{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m31_c00469{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-6.400641px;}
.ws1_c00469{word-spacing:-3.335758px;}
.ws2_c00469{word-spacing:-1.335840px;}
.ws3_c00469{word-spacing:0.000000px;}
.fc0_c00469{color:transparent;}
.fs6_c00469{font-size:3.420000px;}
.fs8_c00469{font-size:13.620000px;}
.fs5_c00469{font-size:18.720000px;}
.fs1_c00469{font-size:20.400000px;}
.fs0_c00469{font-size:25.500000px;}
.fs2_c00469{font-size:28.920000px;}
.fs4_c00469{font-size:32.340000px;}
.fs3_c00469{font-size:35.700000px;}
.fs7_c00469{font-size:39.120000px;}
.y0_c00469{bottom:0.000000px;}
.yb8_c00469{bottom:251.745000px;}
.ybb_c00469{bottom:253.245000px;}
.yb7_c00469{bottom:253.905000px;}
.yba_c00469{bottom:254.970000px;}
.yb9_c00469{bottom:255.405000px;}
.yb6_c00469{bottom:272.745000px;}
.yb3_c00469{bottom:273.405000px;}
.yb5_c00469{bottom:274.470000px;}
.yb4_c00469{bottom:274.905000px;}
.yae_c00469{bottom:292.245000px;}
.yb0_c00469{bottom:293.745000px;}
.yad_c00469{bottom:294.405000px;}
.yaf_c00469{bottom:294.420000px;}
.yb1_c00469{bottom:294.630000px;}
.yb2_c00469{bottom:295.905000px;}
.ya8_c00469{bottom:311.745000px;}
.yaa_c00469{bottom:312.825000px;}
.yab_c00469{bottom:313.245000px;}
.ya9_c00469{bottom:313.905000px;}
.yac_c00469{bottom:315.405000px;}
.ya6_c00469{bottom:332.325000px;}
.ya4_c00469{bottom:332.745000px;}
.ya1_c00469{bottom:333.405000px;}
.ya2_c00469{bottom:333.630000px;}
.ya7_c00469{bottom:333.825000px;}
.ya5_c00469{bottom:334.905000px;}
.ya3_c00469{bottom:334.920000px;}
.y9d_c00469{bottom:350.745000px;}
.y9e_c00469{bottom:352.050000px;}
.y9f_c00469{bottom:352.245000px;}
.ya0_c00469{bottom:354.405000px;}
.y9c_c00469{bottom:370.905000px;}
.y98_c00469{bottom:371.745000px;}
.y9a_c00469{bottom:372.825000px;}
.y9b_c00469{bottom:373.905000px;}
.y99_c00469{bottom:373.920000px;}
.y94_c00469{bottom:391.245000px;}
.y96_c00469{bottom:393.405000px;}
.y95_c00469{bottom:393.420000px;}
.y97_c00469{bottom:393.630000px;}
.y93_c00469{bottom:413.970000px;}
.y90_c00469{bottom:414.825000px;}
.y91_c00469{bottom:415.905000px;}
.y92_c00469{bottom:416.130000px;}
.y8d_c00469{bottom:430.905000px;}
.y8e_c00469{bottom:431.970000px;}
.y8f_c00469{bottom:433.050000px;}
.y8c_c00469{bottom:449.325000px;}
.y8b_c00469{bottom:449.550000px;}
.y8a_c00469{bottom:449.970000px;}
.y89_c00469{bottom:450.405000px;}
.y86_c00469{bottom:463.470000px;}
.y82_c00469{bottom:464.325000px;}
.y87_c00469{bottom:464.550000px;}
.y83_c00469{bottom:464.970000px;}
.y84_c00469{bottom:465.405000px;}
.y85_c00469{bottom:466.470000px;}
.y88_c00469{bottom:466.695000px;}
.y81_c00469{bottom:490.245000px;}
.y80_c00469{bottom:491.325000px;}
.y7f_c00469{bottom:528.180000px;}
.y7d_c00469{bottom:528.405000px;}
.y7c_c00469{bottom:529.245000px;}
.y7e_c00469{bottom:530.325000px;}
.y7a_c00469{bottom:548.745000px;}
.y79_c00469{bottom:550.905000px;}
.y7b_c00469{bottom:551.970000px;}
.y72_c00469{bottom:567.405000px;}
.y74_c00469{bottom:568.245000px;}
.y75_c00469{bottom:569.325000px;}
.y73_c00469{bottom:569.745000px;}
.y77_c00469{bottom:570.405000px;}
.y78_c00469{bottom:570.630000px;}
.y76_c00469{bottom:571.470000px;}
.y71_c00469{bottom:571.905000px;}
.y6e_c00469{bottom:589.905000px;}
.y70_c00469{bottom:590.970000px;}
.y6f_c00469{bottom:591.405000px;}
.y6d_c00469{bottom:606.405000px;}
.y6c_c00469{bottom:608.745000px;}
.y6a_c00469{bottom:609.630000px;}
.y69_c00469{bottom:609.825000px;}
.y6b_c00469{bottom:610.905000px;}
.y68_c00469{bottom:628.245000px;}
.y66_c00469{bottom:629.970000px;}
.y67_c00469{bottom:630.405000px;}
.y61_c00469{bottom:647.745000px;}
.y64_c00469{bottom:648.825000px;}
.y63_c00469{bottom:649.470000px;}
.y62_c00469{bottom:649.905000px;}
.y65_c00469{bottom:651.405000px;}
.y5f_c00469{bottom:667.245000px;}
.y60_c00469{bottom:669.405000px;}
.y5e_c00469{bottom:669.630000px;}
.y5d_c00469{bottom:685.905000px;}
.y59_c00469{bottom:688.245000px;}
.y58_c00469{bottom:688.905000px;}
.y5a_c00469{bottom:689.130000px;}
.y5c_c00469{bottom:689.970000px;}
.y5b_c00469{bottom:690.405000px;}
.y54_c00469{bottom:707.745000px;}
.y56_c00469{bottom:708.630000px;}
.y57_c00469{bottom:708.825000px;}
.y55_c00469{bottom:709.905000px;}
.y51_c00469{bottom:727.245000px;}
.y53_c00469{bottom:728.325000px;}
.y50_c00469{bottom:729.405000px;}
.y52_c00469{bottom:730.470000px;}
.y4d_c00469{bottom:745.905000px;}
.y4b_c00469{bottom:746.745000px;}
.y4c_c00469{bottom:747.825000px;}
.y4e_c00469{bottom:748.905000px;}
.y4f_c00469{bottom:749.970000px;}
.y48_c00469{bottom:766.245000px;}
.y49_c00469{bottom:768.405000px;}
.y47_c00469{bottom:768.630000px;}
.y4a_c00469{bottom:769.470000px;}
.y45_c00469{bottom:784.905000px;}
.y43_c00469{bottom:785.745000px;}
.y44_c00469{bottom:787.905000px;}
.y46_c00469{bottom:788.970000px;}
.y41_c00469{bottom:805.245000px;}
.y3f_c00469{bottom:806.325000px;}
.y40_c00469{bottom:807.405000px;}
.y42_c00469{bottom:807.630000px;}
.y3e_c00469{bottom:823.905000px;}
.y3d_c00469{bottom:824.745000px;}
.y3a_c00469{bottom:824.970000px;}
.y3b_c00469{bottom:826.245000px;}
.y38_c00469{bottom:826.905000px;}
.y3c_c00469{bottom:827.970000px;}
.y39_c00469{bottom:828.405000px;}
.y34_c00469{bottom:844.245000px;}
.y36_c00469{bottom:845.745000px;}
.y35_c00469{bottom:846.630000px;}
.y33_c00469{bottom:847.905000px;}
.y37_c00469{bottom:848.970000px;}
.y32_c00469{bottom:864.825000px;}
.y2e_c00469{bottom:865.245000px;}
.y2f_c00469{bottom:866.325000px;}
.y30_c00469{bottom:867.405000px;}
.y31_c00469{bottom:868.470000px;}
.y2d_c00469{bottom:884.745000px;}
.y2c_c00469{bottom:886.905000px;}
.y2b_c00469{bottom:904.245000px;}
.y29_c00469{bottom:906.405000px;}
.y2a_c00469{bottom:907.920000px;}
.y28_c00469{bottom:926.130000px;}
.y27_c00469{bottom:926.325000px;}
.y26_c00469{bottom:927.405000px;}
.y20_c00469{bottom:942.405000px;}
.y23_c00469{bottom:943.245000px;}
.y24_c00469{bottom:944.325000px;}
.y25_c00469{bottom:945.405000px;}
.y22_c00469{bottom:945.825000px;}
.y21_c00469{bottom:946.905000px;}
.y1c_c00469{bottom:961.905000px;}
.y1e_c00469{bottom:964.245000px;}
.y1b_c00469{bottom:964.905000px;}
.y1f_c00469{bottom:965.325000px;}
.y1d_c00469{bottom:966.405000px;}
.y17_c00469{bottom:982.905000px;}
.y18_c00469{bottom:983.745000px;}
.y16_c00469{bottom:984.825000px;}
.y19_c00469{bottom:985.050000px;}
.y1a_c00469{bottom:985.905000px;}
.y15_c00469{bottom:1000.905000px;}
.y13_c00469{bottom:1001.970000px;}
.y11_c00469{bottom:1002.405000px;}
.y12_c00469{bottom:1003.245000px;}
.y10_c00469{bottom:1004.325000px;}
.y14_c00469{bottom:1005.405000px;}
.yc_c00469{bottom:1021.470000px;}
.ye_c00469{bottom:1021.905000px;}
.yf_c00469{bottom:1022.325000px;}
.ya_c00469{bottom:1022.745000px;}
.y9_c00469{bottom:1023.825000px;}
.yb_c00469{bottom:1024.050000px;}
.yd_c00469{bottom:1024.905000px;}
.y8_c00469{bottom:1041.405000px;}
.y6_c00469{bottom:1042.245000px;}
.y7_c00469{bottom:1044.405000px;}
.y5_c00469{bottom:1060.905000px;}
.y4_c00469{bottom:1061.745000px;}
.y3_c00469{bottom:1063.905000px;}
.y1_c00469{bottom:1100.970000px;}
.y2_c00469{bottom:1102.050000px;}
.h7_c00469{height:4.206533px;}
.h9_c00469{height:16.752334px;}
.h6_c00469{height:23.025234px;}
.h2_c00469{height:25.091602px;}
.h1_c00469{height:31.364502px;}
.h3_c00469{height:35.571035px;}
.h5_c00469{height:39.777568px;}
.h4_c00469{height:43.910303px;}
.h8_c00469{height:48.116836px;}
.h0_c00469{height:1335.000000px;}
.w0_c00469{width:880.500000px;}
.x0_c00469{left:0.000000px;}
.xcb_c00469{left:151.500000px;}
.x1_c00469{left:153.000000px;}
.x3_c00469{left:154.080000px;}
.xd9_c00469{left:166.500000px;}
.xeb_c00469{left:167.580000px;}
.x48_c00469{left:168.645000px;}
.xaa_c00469{left:171.420000px;}
.xf1_c00469{left:172.500000px;}
.xe4_c00469{left:178.920000px;}
.x99_c00469{left:180.000000px;}
.x52_c00469{left:181.500000px;}
.xc1_c00469{left:186.000000px;}
.x60_c00469{left:187.500000px;}
.x6a_c00469{left:189.000000px;}
.x75_c00469{left:192.420000px;}
.xc_c00469{left:196.080000px;}
.x59_c00469{left:197.580000px;}
.x3e_c00469{left:199.500000px;}
.xb7_c00469{left:200.580000px;}
.x4_c00469{left:204.420000px;}
.x6b_c00469{left:207.000000px;}
.x23_c00469{left:208.500000px;}
.x90_c00469{left:211.920000px;}
.x17_c00469{left:216.420000px;}
.xc6_c00469{left:219.000000px;}
.xab_c00469{left:220.080000px;}
.x76_c00469{left:221.580000px;}
.x9a_c00469{left:223.500000px;}
.x80_c00469{left:225.000000px;}
.xcc_c00469{left:227.580000px;}
.x2b_c00469{left:231.420000px;}
.x6c_c00469{left:234.000000px;}
.x61_c00469{left:236.580000px;}
.xd_c00469{left:238.920000px;}
.x49_c00469{left:240.000000px;}
.xe5_c00469{left:241.080000px;}
.xd2_c00469{left:242.580000px;}
.x24_c00469{left:244.500000px;}
.xc2_c00469{left:245.580000px;}
.x35_c00469{left:250.080000px;}
.x3f_c00469{left:252.000000px;}
.xe7_c00469{left:253.500000px;}
.xbc_c00469{left:255.000000px;}
.x62_c00469{left:258.420000px;}
.xe0_c00469{left:259.500000px;}
.x4a_c00469{left:261.000000px;}
.xcd_c00469{left:262.080000px;}
.xc3_c00469{left:265.920000px;}
.x5_c00469{left:267.420000px;}
.xaf_c00469{left:268.500000px;}
.x81_c00469{left:270.000000px;}
.x77_c00469{left:271.500000px;}
.x2c_c00469{left:273.000000px;}
.x91_c00469{left:276.420000px;}
.xa4_c00469{left:277.920000px;}
.x5a_c00469{left:280.500000px;}
.x18_c00469{left:283.500000px;}
.x46_c00469{left:284.580000px;}
.x63_c00469{left:286.920000px;}
.xdd_c00469{left:289.500000px;}
.xdc_c00469{left:292.500000px;}
.xe_c00469{left:293.580000px;}
.xb1_c00469{left:295.500000px;}
.xc0_c00469{left:301.080000px;}
.xa5_c00469{left:303.000000px;}
.x6d_c00469{left:306.000000px;}
.x36_c00469{left:309.420000px;}
.x47_c00469{left:310.500000px;}
.x4b_c00469{left:312.000000px;}
.xe6_c00469{left:313.500000px;}
.x92_c00469{left:316.920000px;}
.x8b_c00469{left:319.500000px;}
.xcf_c00469{left:322.500000px;}
.x6_c00469{left:323.580000px;}
.x25_c00469{left:325.500000px;}
.x2d_c00469{left:327.420000px;}
.x40_c00469{left:328.500000px;}
.xea_c00469{left:334.080000px;}
.xf_c00469{left:336.000000px;}
.x8c_c00469{left:337.500000px;}
.x78_c00469{left:338.580000px;}
.x53_c00469{left:340.080000px;}
.x64_c00469{left:342.000000px;}
.x9b_c00469{left:346.080000px;}
.x19_c00469{left:349.500000px;}
.xd6_c00469{left:351.000000px;}
.x6e_c00469{left:352.500000px;}
.x93_c00469{left:353.580000px;}
.x5b_c00469{left:355.500000px;}
.x37_c00469{left:358.080000px;}
.x54_c00469{left:360.420000px;}
.x41_c00469{left:361.920000px;}
.xc7_c00469{left:366.420000px;}
.x7_c00469{left:367.500000px;}
.x9c_c00469{left:369.000000px;}
.x82_c00469{left:375.420000px;}
.x38_c00469{left:376.500000px;}
.x1a_c00469{left:378.000000px;}
.x79_c00469{left:379.500000px;}
.x2e_c00469{left:382.500000px;}
.xde_c00469{left:383.580000px;}
.x4c_c00469{left:385.920000px;}
.xef_c00469{left:388.500000px;}
.x10_c00469{left:390.420000px;}
.xd7_c00469{left:391.500000px;}
.x26_c00469{left:392.580000px;}
.x1b_c00469{left:396.420000px;}
.xb8_c00469{left:398.145000px;}
.xb2_c00469{left:400.080000px;}
.x2f_c00469{left:403.500000px;}
.xac_c00469{left:406.500000px;}
.x2_c00469{left:408.000000px;}
.x7a_c00469{left:409.500000px;}
.x4d_c00469{left:414.000000px;}
.xd3_c00469{left:415.080000px;}
.xda_c00469{left:418.500000px;}
.x39_c00469{left:421.500000px;}
.x42_c00469{left:423.420000px;}
.x5c_c00469{left:424.500000px;}
.x1c_c00469{left:427.920000px;}
.xad_c00469{left:430.500000px;}
.xd4_c00469{left:433.500000px;}
.x27_c00469{left:436.500000px;}
.x94_c00469{left:439.920000px;}
.x55_c00469{left:442.500000px;}
.x11_c00469{left:445.920000px;}
.x83_c00469{left:447.000000px;}
.x7b_c00469{left:451.500000px;}
.xa6_c00469{left:453.420000px;}
.xb3_c00469{left:454.500000px;}
.x6f_c00469{left:456.420000px;}
.xe1_c00469{left:457.500000px;}
.x65_c00469{left:459.420000px;}
.xb9_c00469{left:460.920000px;}
.x8_c00469{left:465.420000px;}
.xb4_c00469{left:469.500000px;}
.x30_c00469{left:470.580000px;}
.x43_c00469{left:472.080000px;}
.x9d_c00469{left:475.080000px;}
.x1d_c00469{left:478.080000px;}
.xf2_c00469{left:480.000000px;}
.x70_c00469{left:481.920000px;}
.xb5_c00469{left:486.000000px;}
.x12_c00469{left:487.500000px;}
.xd0_c00469{left:488.580000px;}
.x44_c00469{left:492.420000px;}
.x8d_c00469{left:493.920000px;}
.x84_c00469{left:498.000000px;}
.x1e_c00469{left:499.920000px;}
.x31_c00469{left:501.000000px;}
.x56_c00469{left:504.000000px;}
.xf0_c00469{left:505.080000px;}
.x3a_c00469{left:510.000000px;}
.x66_c00469{left:511.080000px;}
.x9e_c00469{left:512.580000px;}
.xe8_c00469{left:514.080000px;}
.x7c_c00469{left:516.000000px;}
.x85_c00469{left:517.920000px;}
.x9_c00469{left:520.080000px;}
.xb0_c00469{left:522.420000px;}
.x28_c00469{left:523.500000px;}
.x8e_c00469{left:525.420000px;}
.xd8_c00469{left:527.580000px;}
.xce_c00469{left:529.920000px;}
.x9f_c00469{left:531.000000px;}
.x71_c00469{left:535.500000px;}
.xbd_c00469{left:538.080000px;}
.x3b_c00469{left:541.080000px;}
.xba_c00469{left:543.000000px;}
.x86_c00469{left:544.500000px;}
.x95_c00469{left:549.645000px;}
.x13_c00469{left:552.420000px;}
.x1f_c00469{left:553.920000px;}
.x4e_c00469{left:555.000000px;}
.xbb_c00469{left:556.920000px;}
.x32_c00469{left:558.855000px;}
.xbe_c00469{left:561.000000px;}
.x67_c00469{left:562.920000px;}
.xa_c00469{left:564.000000px;}
.xa0_c00469{left:565.080000px;}
.x45_c00469{left:567.000000px;}
.x5d_c00469{left:568.500000px;}
.x7d_c00469{left:573.420000px;}
.x57_c00469{left:576.000000px;}
.xc8_c00469{left:579.420000px;}
.x72_c00469{left:582.000000px;}
.x8f_c00469{left:586.080000px;}
.x87_c00469{left:589.080000px;}
.xc4_c00469{left:590.580000px;}
.x4f_c00469{left:592.920000px;}
.x20_c00469{left:594.420000px;}
.xa1_c00469{left:595.500000px;}
.xd1_c00469{left:596.775000px;}
.x73_c00469{left:598.920000px;}
.xa7_c00469{left:600.420000px;}
.x3c_c00469{left:601.920000px;}
.xec_c00469{left:604.500000px;}
.xdf_c00469{left:606.000000px;}
.x14_c00469{left:607.920000px;}
.xc5_c00469{left:610.500000px;}
.x7e_c00469{left:612.000000px;}
.xbf_c00469{left:613.080000px;}
.x96_c00469{left:618.000000px;}
.x29_c00469{left:619.080000px;}
.x50_c00469{left:621.420000px;}
.xae_c00469{left:624.420000px;}
.xd5_c00469{left:625.500000px;}
.x5e_c00469{left:627.000000px;}
.x68_c00469{left:628.500000px;}
.x33_c00469{left:633.000000px;}
.x88_c00469{left:634.500000px;}
.xb6_c00469{left:636.420000px;}
.xa2_c00469{left:637.500000px;}
.x15_c00469{left:649.920000px;}
.xc9_c00469{left:651.000000px;}
.xed_c00469{left:652.500000px;}
.x2a_c00469{left:655.080000px;}
.x21_c00469{left:656.580000px;}
.x69_c00469{left:660.420000px;}
.xe2_c00469{left:661.500000px;}
.x7f_c00469{left:663.000000px;}
.x34_c00469{left:666.420000px;}
.xa3_c00469{left:668.145000px;}
.x3d_c00469{left:669.420000px;}
.xee_c00469{left:670.500000px;}
.x89_c00469{left:672.420000px;}
.x58_c00469{left:675.000000px;}
.xa8_c00469{left:681.420000px;}
.xb_c00469{left:682.920000px;}
.x97_c00469{left:684.000000px;}
.x51_c00469{left:688.080000px;}
.xe3_c00469{left:693.000000px;}
.x5f_c00469{left:696.000000px;}
.x8a_c00469{left:697.080000px;}
.xe9_c00469{left:698.580000px;}
.x98_c00469{left:702.420000px;}
.xca_c00469{left:706.080000px;}
.xa9_c00469{left:708.420000px;}
.x74_c00469{left:709.920000px;}
.x16_c00469{left:712.500000px;}
.xdb_c00469{left:714.420000px;}
.x22_c00469{left:718.080000px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.ls0_c00469{letter-spacing:0.000000pt;}
.ws0_c00469{word-spacing:-5.689459pt;}
.ws1_c00469{word-spacing:-2.965118pt;}
.ws2_c00469{word-spacing:-1.187413pt;}
.ws3_c00469{word-spacing:0.000000pt;}
.fs6_c00469{font-size:3.040000pt;}
.fs8_c00469{font-size:12.106667pt;}
.fs5_c00469{font-size:16.640000pt;}
.fs1_c00469{font-size:18.133333pt;}
.fs0_c00469{font-size:22.666667pt;}
.fs2_c00469{font-size:25.706667pt;}
.fs4_c00469{font-size:28.746667pt;}
.fs3_c00469{font-size:31.733333pt;}
.fs7_c00469{font-size:34.773333pt;}
.y0_c00469{bottom:0.000000pt;}
.yb8_c00469{bottom:223.773333pt;}
.ybb_c00469{bottom:225.106667pt;}
.yb7_c00469{bottom:225.693333pt;}
.yba_c00469{bottom:226.640000pt;}
.yb9_c00469{bottom:227.026667pt;}
.yb6_c00469{bottom:242.440000pt;}
.yb3_c00469{bottom:243.026667pt;}
.yb5_c00469{bottom:243.973333pt;}
.yb4_c00469{bottom:244.360000pt;}
.yae_c00469{bottom:259.773333pt;}
.yb0_c00469{bottom:261.106667pt;}
.yad_c00469{bottom:261.693333pt;}
.yaf_c00469{bottom:261.706667pt;}
.yb1_c00469{bottom:261.893333pt;}
.yb2_c00469{bottom:263.026667pt;}
.ya8_c00469{bottom:277.106667pt;}
.yaa_c00469{bottom:278.066667pt;}
.yab_c00469{bottom:278.440000pt;}
.ya9_c00469{bottom:279.026667pt;}
.yac_c00469{bottom:280.360000pt;}
.ya6_c00469{bottom:295.400000pt;}
.ya4_c00469{bottom:295.773333pt;}
.ya1_c00469{bottom:296.360000pt;}
.ya2_c00469{bottom:296.560000pt;}
.ya7_c00469{bottom:296.733333pt;}
.ya5_c00469{bottom:297.693333pt;}
.ya3_c00469{bottom:297.706667pt;}
.y9d_c00469{bottom:311.773333pt;}
.y9e_c00469{bottom:312.933333pt;}
.y9f_c00469{bottom:313.106667pt;}
.ya0_c00469{bottom:315.026667pt;}
.y9c_c00469{bottom:329.693333pt;}
.y98_c00469{bottom:330.440000pt;}
.y9a_c00469{bottom:331.400000pt;}
.y9b_c00469{bottom:332.360000pt;}
.y99_c00469{bottom:332.373333pt;}
.y94_c00469{bottom:347.773333pt;}
.y96_c00469{bottom:349.693333pt;}
.y95_c00469{bottom:349.706667pt;}
.y97_c00469{bottom:349.893333pt;}
.y93_c00469{bottom:367.973333pt;}
.y90_c00469{bottom:368.733333pt;}
.y91_c00469{bottom:369.693333pt;}
.y92_c00469{bottom:369.893333pt;}
.y8d_c00469{bottom:383.026667pt;}
.y8e_c00469{bottom:383.973333pt;}
.y8f_c00469{bottom:384.933333pt;}
.y8c_c00469{bottom:399.400000pt;}
.y8b_c00469{bottom:399.600000pt;}
.y8a_c00469{bottom:399.973333pt;}
.y89_c00469{bottom:400.360000pt;}
.y86_c00469{bottom:411.973333pt;}
.y82_c00469{bottom:412.733333pt;}
.y87_c00469{bottom:412.933333pt;}
.y83_c00469{bottom:413.306667pt;}
.y84_c00469{bottom:413.693333pt;}
.y85_c00469{bottom:414.640000pt;}
.y88_c00469{bottom:414.840000pt;}
.y81_c00469{bottom:435.773333pt;}
.y80_c00469{bottom:436.733333pt;}
.y7f_c00469{bottom:469.493333pt;}
.y7d_c00469{bottom:469.693333pt;}
.y7c_c00469{bottom:470.440000pt;}
.y7e_c00469{bottom:471.400000pt;}
.y7a_c00469{bottom:487.773333pt;}
.y79_c00469{bottom:489.693333pt;}
.y7b_c00469{bottom:490.640000pt;}
.y72_c00469{bottom:504.360000pt;}
.y74_c00469{bottom:505.106667pt;}
.y75_c00469{bottom:506.066667pt;}
.y73_c00469{bottom:506.440000pt;}
.y77_c00469{bottom:507.026667pt;}
.y78_c00469{bottom:507.226667pt;}
.y76_c00469{bottom:507.973333pt;}
.y71_c00469{bottom:508.360000pt;}
.y6e_c00469{bottom:524.360000pt;}
.y70_c00469{bottom:525.306667pt;}
.y6f_c00469{bottom:525.693333pt;}
.y6d_c00469{bottom:539.026667pt;}
.y6c_c00469{bottom:541.106667pt;}
.y6a_c00469{bottom:541.893333pt;}
.y69_c00469{bottom:542.066667pt;}
.y6b_c00469{bottom:543.026667pt;}
.y68_c00469{bottom:558.440000pt;}
.y66_c00469{bottom:559.973333pt;}
.y67_c00469{bottom:560.360000pt;}
.y61_c00469{bottom:575.773333pt;}
.y64_c00469{bottom:576.733333pt;}
.y63_c00469{bottom:577.306667pt;}
.y62_c00469{bottom:577.693333pt;}
.y65_c00469{bottom:579.026667pt;}
.y5f_c00469{bottom:593.106667pt;}
.y60_c00469{bottom:595.026667pt;}
.y5e_c00469{bottom:595.226667pt;}
.y5d_c00469{bottom:609.693333pt;}
.y59_c00469{bottom:611.773333pt;}
.y58_c00469{bottom:612.360000pt;}
.y5a_c00469{bottom:612.560000pt;}
.y5c_c00469{bottom:613.306667pt;}
.y5b_c00469{bottom:613.693333pt;}
.y54_c00469{bottom:629.106667pt;}
.y56_c00469{bottom:629.893333pt;}
.y57_c00469{bottom:630.066667pt;}
.y55_c00469{bottom:631.026667pt;}
.y51_c00469{bottom:646.440000pt;}
.y53_c00469{bottom:647.400000pt;}
.y50_c00469{bottom:648.360000pt;}
.y52_c00469{bottom:649.306667pt;}
.y4d_c00469{bottom:663.026667pt;}
.y4b_c00469{bottom:663.773333pt;}
.y4c_c00469{bottom:664.733333pt;}
.y4e_c00469{bottom:665.693333pt;}
.y4f_c00469{bottom:666.640000pt;}
.y48_c00469{bottom:681.106667pt;}
.y49_c00469{bottom:683.026667pt;}
.y47_c00469{bottom:683.226667pt;}
.y4a_c00469{bottom:683.973333pt;}
.y45_c00469{bottom:697.693333pt;}
.y43_c00469{bottom:698.440000pt;}
.y44_c00469{bottom:700.360000pt;}
.y46_c00469{bottom:701.306667pt;}
.y41_c00469{bottom:715.773333pt;}
.y3f_c00469{bottom:716.733333pt;}
.y40_c00469{bottom:717.693333pt;}
.y42_c00469{bottom:717.893333pt;}
.y3e_c00469{bottom:732.360000pt;}
.y3d_c00469{bottom:733.106667pt;}
.y3a_c00469{bottom:733.306667pt;}
.y3b_c00469{bottom:734.440000pt;}
.y38_c00469{bottom:735.026667pt;}
.y3c_c00469{bottom:735.973333pt;}
.y39_c00469{bottom:736.360000pt;}
.y34_c00469{bottom:750.440000pt;}
.y36_c00469{bottom:751.773333pt;}
.y35_c00469{bottom:752.560000pt;}
.y33_c00469{bottom:753.693333pt;}
.y37_c00469{bottom:754.640000pt;}
.y32_c00469{bottom:768.733333pt;}
.y2e_c00469{bottom:769.106667pt;}
.y2f_c00469{bottom:770.066667pt;}
.y30_c00469{bottom:771.026667pt;}
.y31_c00469{bottom:771.973333pt;}
.y2d_c00469{bottom:786.440000pt;}
.y2c_c00469{bottom:788.360000pt;}
.y2b_c00469{bottom:803.773333pt;}
.y29_c00469{bottom:805.693333pt;}
.y2a_c00469{bottom:807.040000pt;}
.y28_c00469{bottom:823.226667pt;}
.y27_c00469{bottom:823.400000pt;}
.y26_c00469{bottom:824.360000pt;}
.y20_c00469{bottom:837.693333pt;}
.y23_c00469{bottom:838.440000pt;}
.y24_c00469{bottom:839.400000pt;}
.y25_c00469{bottom:840.360000pt;}
.y22_c00469{bottom:840.733333pt;}
.y21_c00469{bottom:841.693333pt;}
.y1c_c00469{bottom:855.026667pt;}
.y1e_c00469{bottom:857.106667pt;}
.y1b_c00469{bottom:857.693333pt;}
.y1f_c00469{bottom:858.066667pt;}
.y1d_c00469{bottom:859.026667pt;}
.y17_c00469{bottom:873.693333pt;}
.y18_c00469{bottom:874.440000pt;}
.y16_c00469{bottom:875.400000pt;}
.y19_c00469{bottom:875.600000pt;}
.y1a_c00469{bottom:876.360000pt;}
.y15_c00469{bottom:889.693333pt;}
.y13_c00469{bottom:890.640000pt;}
.y11_c00469{bottom:891.026667pt;}
.y12_c00469{bottom:891.773333pt;}
.y10_c00469{bottom:892.733333pt;}
.y14_c00469{bottom:893.693333pt;}
.yc_c00469{bottom:907.973333pt;}
.ye_c00469{bottom:908.360000pt;}
.yf_c00469{bottom:908.733333pt;}
.ya_c00469{bottom:909.106667pt;}
.y9_c00469{bottom:910.066667pt;}
.yb_c00469{bottom:910.266667pt;}
.yd_c00469{bottom:911.026667pt;}
.y8_c00469{bottom:925.693333pt;}
.y6_c00469{bottom:926.440000pt;}
.y7_c00469{bottom:928.360000pt;}
.y5_c00469{bottom:943.026667pt;}
.y4_c00469{bottom:943.773333pt;}
.y3_c00469{bottom:945.693333pt;}
.y1_c00469{bottom:978.640000pt;}
.y2_c00469{bottom:979.600000pt;}
.h7_c00469{height:3.739141pt;}
.h9_c00469{height:14.890964pt;}
.h6_c00469{height:20.466875pt;}
.h2_c00469{height:22.303646pt;}
.h1_c00469{height:27.879557pt;}
.h3_c00469{height:31.618698pt;}
.h5_c00469{height:35.357839pt;}
.h4_c00469{height:39.031380pt;}
.h8_c00469{height:42.770521pt;}
.h0_c00469{height:1186.666667pt;}
.w0_c00469{width:782.666667pt;}
.x0_c00469{left:0.000000pt;}
.xcb_c00469{left:134.666667pt;}
.x1_c00469{left:136.000000pt;}
.x3_c00469{left:136.960000pt;}
.xd9_c00469{left:148.000000pt;}
.xeb_c00469{left:148.960000pt;}
.x48_c00469{left:149.906667pt;}
.xaa_c00469{left:152.373333pt;}
.xf1_c00469{left:153.333333pt;}
.xe4_c00469{left:159.040000pt;}
.x99_c00469{left:160.000000pt;}
.x52_c00469{left:161.333333pt;}
.xc1_c00469{left:165.333333pt;}
.x60_c00469{left:166.666667pt;}
.x6a_c00469{left:168.000000pt;}
.x75_c00469{left:171.040000pt;}
.xc_c00469{left:174.293333pt;}
.x59_c00469{left:175.626667pt;}
.x3e_c00469{left:177.333333pt;}
.xb7_c00469{left:178.293333pt;}
.x4_c00469{left:181.706667pt;}
.x6b_c00469{left:184.000000pt;}
.x23_c00469{left:185.333333pt;}
.x90_c00469{left:188.373333pt;}
.x17_c00469{left:192.373333pt;}
.xc6_c00469{left:194.666667pt;}
.xab_c00469{left:195.626667pt;}
.x76_c00469{left:196.960000pt;}
.x9a_c00469{left:198.666667pt;}
.x80_c00469{left:200.000000pt;}
.xcc_c00469{left:202.293333pt;}
.x2b_c00469{left:205.706667pt;}
.x6c_c00469{left:208.000000pt;}
.x61_c00469{left:210.293333pt;}
.xd_c00469{left:212.373333pt;}
.x49_c00469{left:213.333333pt;}
.xe5_c00469{left:214.293333pt;}
.xd2_c00469{left:215.626667pt;}
.x24_c00469{left:217.333333pt;}
.xc2_c00469{left:218.293333pt;}
.x35_c00469{left:222.293333pt;}
.x3f_c00469{left:224.000000pt;}
.xe7_c00469{left:225.333333pt;}
.xbc_c00469{left:226.666667pt;}
.x62_c00469{left:229.706667pt;}
.xe0_c00469{left:230.666667pt;}
.x4a_c00469{left:232.000000pt;}
.xcd_c00469{left:232.960000pt;}
.xc3_c00469{left:236.373333pt;}
.x5_c00469{left:237.706667pt;}
.xaf_c00469{left:238.666667pt;}
.x81_c00469{left:240.000000pt;}
.x77_c00469{left:241.333333pt;}
.x2c_c00469{left:242.666667pt;}
.x91_c00469{left:245.706667pt;}
.xa4_c00469{left:247.040000pt;}
.x5a_c00469{left:249.333333pt;}
.x18_c00469{left:252.000000pt;}
.x46_c00469{left:252.960000pt;}
.x63_c00469{left:255.040000pt;}
.xdd_c00469{left:257.333333pt;}
.xdc_c00469{left:260.000000pt;}
.xe_c00469{left:260.960000pt;}
.xb1_c00469{left:262.666667pt;}
.xc0_c00469{left:267.626667pt;}
.xa5_c00469{left:269.333333pt;}
.x6d_c00469{left:272.000000pt;}
.x36_c00469{left:275.040000pt;}
.x47_c00469{left:276.000000pt;}
.x4b_c00469{left:277.333333pt;}
.xe6_c00469{left:278.666667pt;}
.x92_c00469{left:281.706667pt;}
.x8b_c00469{left:284.000000pt;}
.xcf_c00469{left:286.666667pt;}
.x6_c00469{left:287.626667pt;}
.x25_c00469{left:289.333333pt;}
.x2d_c00469{left:291.040000pt;}
.x40_c00469{left:292.000000pt;}
.xea_c00469{left:296.960000pt;}
.xf_c00469{left:298.666667pt;}
.x8c_c00469{left:300.000000pt;}
.x78_c00469{left:300.960000pt;}
.x53_c00469{left:302.293333pt;}
.x64_c00469{left:304.000000pt;}
.x9b_c00469{left:307.626667pt;}
.x19_c00469{left:310.666667pt;}
.xd6_c00469{left:312.000000pt;}
.x6e_c00469{left:313.333333pt;}
.x93_c00469{left:314.293333pt;}
.x5b_c00469{left:316.000000pt;}
.x37_c00469{left:318.293333pt;}
.x54_c00469{left:320.373333pt;}
.x41_c00469{left:321.706667pt;}
.xc7_c00469{left:325.706667pt;}
.x7_c00469{left:326.666667pt;}
.x9c_c00469{left:328.000000pt;}
.x82_c00469{left:333.706667pt;}
.x38_c00469{left:334.666667pt;}
.x1a_c00469{left:336.000000pt;}
.x79_c00469{left:337.333333pt;}
.x2e_c00469{left:340.000000pt;}
.xde_c00469{left:340.960000pt;}
.x4c_c00469{left:343.040000pt;}
.xef_c00469{left:345.333333pt;}
.x10_c00469{left:347.040000pt;}
.xd7_c00469{left:348.000000pt;}
.x26_c00469{left:348.960000pt;}
.x1b_c00469{left:352.373333pt;}
.xb8_c00469{left:353.906667pt;}
.xb2_c00469{left:355.626667pt;}
.x2f_c00469{left:358.666667pt;}
.xac_c00469{left:361.333333pt;}
.x2_c00469{left:362.666667pt;}
.x7a_c00469{left:364.000000pt;}
.x4d_c00469{left:368.000000pt;}
.xd3_c00469{left:368.960000pt;}
.xda_c00469{left:372.000000pt;}
.x39_c00469{left:374.666667pt;}
.x42_c00469{left:376.373333pt;}
.x5c_c00469{left:377.333333pt;}
.x1c_c00469{left:380.373333pt;}
.xad_c00469{left:382.666667pt;}
.xd4_c00469{left:385.333333pt;}
.x27_c00469{left:388.000000pt;}
.x94_c00469{left:391.040000pt;}
.x55_c00469{left:393.333333pt;}
.x11_c00469{left:396.373333pt;}
.x83_c00469{left:397.333333pt;}
.x7b_c00469{left:401.333333pt;}
.xa6_c00469{left:403.040000pt;}
.xb3_c00469{left:404.000000pt;}
.x6f_c00469{left:405.706667pt;}
.xe1_c00469{left:406.666667pt;}
.x65_c00469{left:408.373333pt;}
.xb9_c00469{left:409.706667pt;}
.x8_c00469{left:413.706667pt;}
.xb4_c00469{left:417.333333pt;}
.x30_c00469{left:418.293333pt;}
.x43_c00469{left:419.626667pt;}
.x9d_c00469{left:422.293333pt;}
.x1d_c00469{left:424.960000pt;}
.xf2_c00469{left:426.666667pt;}
.x70_c00469{left:428.373333pt;}
.xb5_c00469{left:432.000000pt;}
.x12_c00469{left:433.333333pt;}
.xd0_c00469{left:434.293333pt;}
.x44_c00469{left:437.706667pt;}
.x8d_c00469{left:439.040000pt;}
.x84_c00469{left:442.666667pt;}
.x1e_c00469{left:444.373333pt;}
.x31_c00469{left:445.333333pt;}
.x56_c00469{left:448.000000pt;}
.xf0_c00469{left:448.960000pt;}
.x3a_c00469{left:453.333333pt;}
.x66_c00469{left:454.293333pt;}
.x9e_c00469{left:455.626667pt;}
.xe8_c00469{left:456.960000pt;}
.x7c_c00469{left:458.666667pt;}
.x85_c00469{left:460.373333pt;}
.x9_c00469{left:462.293333pt;}
.xb0_c00469{left:464.373333pt;}
.x28_c00469{left:465.333333pt;}
.x8e_c00469{left:467.040000pt;}
.xd8_c00469{left:468.960000pt;}
.xce_c00469{left:471.040000pt;}
.x9f_c00469{left:472.000000pt;}
.x71_c00469{left:476.000000pt;}
.xbd_c00469{left:478.293333pt;}
.x3b_c00469{left:480.960000pt;}
.xba_c00469{left:482.666667pt;}
.x86_c00469{left:484.000000pt;}
.x95_c00469{left:488.573333pt;}
.x13_c00469{left:491.040000pt;}
.x1f_c00469{left:492.373333pt;}
.x4e_c00469{left:493.333333pt;}
.xbb_c00469{left:495.040000pt;}
.x32_c00469{left:496.760000pt;}
.xbe_c00469{left:498.666667pt;}
.x67_c00469{left:500.373333pt;}
.xa_c00469{left:501.333333pt;}
.xa0_c00469{left:502.293333pt;}
.x45_c00469{left:504.000000pt;}
.x5d_c00469{left:505.333333pt;}
.x7d_c00469{left:509.706667pt;}
.x57_c00469{left:512.000000pt;}
.xc8_c00469{left:515.040000pt;}
.x72_c00469{left:517.333333pt;}
.x8f_c00469{left:520.960000pt;}
.x87_c00469{left:523.626667pt;}
.xc4_c00469{left:524.960000pt;}
.x4f_c00469{left:527.040000pt;}
.x20_c00469{left:528.373333pt;}
.xa1_c00469{left:529.333333pt;}
.xd1_c00469{left:530.466667pt;}
.x73_c00469{left:532.373333pt;}
.xa7_c00469{left:533.706667pt;}
.x3c_c00469{left:535.040000pt;}
.xec_c00469{left:537.333333pt;}
.xdf_c00469{left:538.666667pt;}
.x14_c00469{left:540.373333pt;}
.xc5_c00469{left:542.666667pt;}
.x7e_c00469{left:544.000000pt;}
.xbf_c00469{left:544.960000pt;}
.x96_c00469{left:549.333333pt;}
.x29_c00469{left:550.293333pt;}
.x50_c00469{left:552.373333pt;}
.xae_c00469{left:555.040000pt;}
.xd5_c00469{left:556.000000pt;}
.x5e_c00469{left:557.333333pt;}
.x68_c00469{left:558.666667pt;}
.x33_c00469{left:562.666667pt;}
.x88_c00469{left:564.000000pt;}
.xb6_c00469{left:565.706667pt;}
.xa2_c00469{left:566.666667pt;}
.x15_c00469{left:577.706667pt;}
.xc9_c00469{left:578.666667pt;}
.xed_c00469{left:580.000000pt;}
.x2a_c00469{left:582.293333pt;}
.x21_c00469{left:583.626667pt;}
.x69_c00469{left:587.040000pt;}
.xe2_c00469{left:588.000000pt;}
.x7f_c00469{left:589.333333pt;}
.x34_c00469{left:592.373333pt;}
.xa3_c00469{left:593.906667pt;}
.x3d_c00469{left:595.040000pt;}
.xee_c00469{left:596.000000pt;}
.x89_c00469{left:597.706667pt;}
.x58_c00469{left:600.000000pt;}
.xa8_c00469{left:605.706667pt;}
.xb_c00469{left:607.040000pt;}
.x97_c00469{left:608.000000pt;}
.x51_c00469{left:611.626667pt;}
.xe3_c00469{left:616.000000pt;}
.x5f_c00469{left:618.666667pt;}
.x8a_c00469{left:619.626667pt;}
.xe9_c00469{left:620.960000pt;}
.x98_c00469{left:624.373333pt;}
.xca_c00469{left:627.626667pt;}
.xa9_c00469{left:629.706667pt;}
.x74_c00469{left:631.040000pt;}
.x16_c00469{left:633.333333pt;}
.xdb_c00469{left:635.040000pt;}
.x22_c00469{left:638.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_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_e903b24773a088059481053a.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:1.688965;font-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.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_c00470{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.mbe_c00470{transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);}
.m22_c00470{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m10_c00470{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m6f_c00470{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.mbf_c00470{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.md3_c00470{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m13_c00470{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.mb7_c00470{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.me0_c00470{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m6e_c00470{transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);}
.m2d_c00470{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m14_c00470{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.ma4_c00470{transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);}
.mdb_c00470{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.maf_c00470{transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);}
.m2b_c00470{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m1a_c00470{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m12b_c00470{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m107_c00470{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m12_c00470{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m2f_c00470{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m11a_c00470{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.me2_c00470{transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);}
.m58_c00470{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.mf2_c00470{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m33_c00470{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m7f_c00470{transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);}
.md5_c00470{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m11d_c00470{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.mde_c00470{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m116_c00470{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m3d_c00470{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.md8_c00470{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.mb1_c00470{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.m11f_c00470{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m9f_c00470{transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);}
.mef_c00470{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m4a_c00470{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m9c_c00470{transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);}
.m111_c00470{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.meb_c00470{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.ma7_c00470{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.mc9_c00470{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m54_c00470{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.mf_c00470{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m52_c00470{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.mc_c00470{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.m24_c00470{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.me9_c00470{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m65_c00470{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.mbb_c00470{transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);}
.m67_c00470{transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);}
.ma9_c00470{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.m48_c00470{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m11_c00470{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m66_c00470{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m70_c00470{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m79_c00470{transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);}
.mf7_c00470{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m51_c00470{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.mfc_c00470{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m8b_c00470{transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);}
.me3_c00470{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.ma_c00470{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.mc2_c00470{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m57_c00470{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m100_c00470{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m8f_c00470{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m11c_c00470{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.me4_c00470{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m115_c00470{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m8d_c00470{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.me5_c00470{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m6_c00470{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m123_c00470{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m3f_c00470{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m34_c00470{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m89_c00470{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m7b_c00470{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m41_c00470{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m93_c00470{transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);}
.mfb_c00470{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.mda_c00470{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m7c_c00470{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m30_c00470{transform:matrix(0.444805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444805,0.000000,0.000000,0.250000,0,0);}
.mf9_c00470{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m55_c00470{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.m2c_c00470{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m110_c00470{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.mad_c00470{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m32_c00470{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m10d_c00470{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.mf5_c00470{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m119_c00470{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.md7_c00470{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.mfd_c00470{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mdd_c00470{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m43_c00470{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.m95_c00470{transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);}
.m8e_c00470{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mba_c00470{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m5f_c00470{transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);}
.m53_c00470{transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);}
.m127_c00470{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m112_c00470{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m113_c00470{transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);}
.mee_c00470{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.mb4_c00470{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.mca_c00470{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m2e_c00470{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m74_c00470{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.m10a_c00470{transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);}
.m73_c00470{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m3b_c00470{transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);}
.m120_c00470{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m87_c00470{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.mb2_c00470{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mb8_c00470{transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);}
.m77_c00470{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.md4_c00470{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mc7_c00470{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m105_c00470{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m94_c00470{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m5b_c00470{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m12a_c00470{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m3a_c00470{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mcf_c00470{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.ma8_c00470{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m40_c00470{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.maa_c00470{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m114_c00470{transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);}
.m1_c00470{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m62_c00470{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m81_c00470{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m2_c00470{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_c00470{transform:matrix(0.502319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502319,0.000000,0.000000,0.250000,0,0);}
.mf3_c00470{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m4b_c00470{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m6d_c00470{transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);}
.m125_c00470{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.mf6_c00470{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mc6_c00470{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.mc1_c00470{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m8a_c00470{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m91_c00470{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m19_c00470{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m128_c00470{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m9_c00470{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mc0_c00470{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.m11e_c00470{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.mc5_c00470{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m9d_c00470{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.mcb_c00470{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m36_c00470{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.ma1_c00470{transform:matrix(0.518235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518235,0.000000,0.000000,0.250000,0,0);}
.m9e_c00470{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m86_c00470{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m12c_c00470{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m4_c00470{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m35_c00470{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m4f_c00470{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m71_c00470{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);}
.ma3_c00470{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m10e_c00470{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.md2_c00470{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m10c_c00470{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m92_c00470{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m10b_c00470{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.md1_c00470{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m7_c00470{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.ma5_c00470{transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);}
.m88_c00470{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m45_c00470{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m50_c00470{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.mcc_c00470{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m61_c00470{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m47_c00470{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.mec_c00470{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mcd_c00470{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m84_c00470{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.me7_c00470{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m25_c00470{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m99_c00470{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.mc8_c00470{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m3c_c00470{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.mb_c00470{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m101_c00470{transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);}
.mdf_c00470{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m1d_c00470{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m23_c00470{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m85_c00470{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m124_c00470{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m60_c00470{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);}
.me6_c00470{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mf4_c00470{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m83_c00470{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m122_c00470{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m4d_c00470{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m103_c00470{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m46_c00470{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m17_c00470{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m11b_c00470{transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);}
.m29_c00470{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m6b_c00470{transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);}
.m1e_c00470{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m96_c00470{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mfa_c00470{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m9a_c00470{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.mf1_c00470{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m8c_c00470{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.m3e_c00470{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mc4_c00470{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m38_c00470{transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);}
.m97_c00470{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.mce_c00470{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.ma6_c00470{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m21_c00470{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mac_c00470{transform:matrix(0.575735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575735,0.000000,0.000000,0.250000,0,0);}
.m4e_c00470{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.ma0_c00470{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.mea_c00470{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m80_c00470{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m102_c00470{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.m28_c00470{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.mf8_c00470{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m68_c00470{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m44_c00470{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m7e_c00470{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m104_c00470{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m129_c00470{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.md6_c00470{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m31_c00470{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.mf0_c00470{transform:matrix(0.601765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601765,0.000000,0.000000,0.250000,0,0);}
.mff_c00470{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m39_c00470{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m16_c00470{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m109_c00470{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.mb9_c00470{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m3_c00470{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m64_c00470{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m78_c00470{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m75_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);}
.ma2_c00470{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m5c_c00470{transform:matrix(0.636029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636029,0.000000,0.000000,0.250000,0,0);}
.m90_c00470{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m26_c00470{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m42_c00470{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.m69_c00470{transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);}
.m82_c00470{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.med_c00470{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m76_c00470{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m9b_c00470{transform:matrix(0.649265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649265,0.000000,0.000000,0.250000,0,0);}
.mab_c00470{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);}
.md0_c00470{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m98_c00470{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m5e_c00470{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.me_c00470{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m72_c00470{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m1c_c00470{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m7d_c00470{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m5a_c00470{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);}
.mb0_c00470{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m6a_c00470{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m6c_c00470{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m56_c00470{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m1b_c00470{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m0_c00470{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.mbc_c00470{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m7a_c00470{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m5d_c00470{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);}
.mb6_c00470{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.me1_c00470{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m106_c00470{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mb5_c00470{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);}
.m126_c00470{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m121_c00470{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m20_c00470{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.me8_c00470{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m118_c00470{transform:matrix(0.744118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.744118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.744118,0.000000,0.000000,0.250000,0,0);}
.m18_c00470{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m4c_c00470{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mdc_c00470{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m49_c00470{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m1f_c00470{transform:matrix(0.771635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.771635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.771635,0.000000,0.000000,0.250000,0,0);}
.md9_c00470{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.md_c00470{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m37_c00470{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.mfe_c00470{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m2a_c00470{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m117_c00470{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m10f_c00470{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.mb3_c00470{transform:matrix(0.886218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.886218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.886218,0.000000,0.000000,0.250000,0,0);}
.m108_c00470{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.mbd_c00470{transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);}
.mae_c00470{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m59_c00470{transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);}
.m63_c00470{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.mc3_c00470{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m5_c00470{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00470{vertical-align:0.000000px;}
.v1_c00470{vertical-align:6.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:-4.209521px;}
.ws1_c00470{word-spacing:0.000000px;}
.fc0_c00470{color:transparent;}
.fs2_c00470{font-size:3.420000px;}
.fs7_c00470{font-size:13.620000px;}
.fs0_c00470{font-size:18.720000px;}
.fs6_c00470{font-size:20.400000px;}
.fs4_c00470{font-size:25.500000px;}
.fs1_c00470{font-size:28.920000px;}
.fs5_c00470{font-size:32.340000px;}
.fs3_c00470{font-size:35.700000px;}
.y0_c00470{bottom:0.000000px;}
.yef_c00470{bottom:252.405000px;}
.yf3_c00470{bottom:253.245000px;}
.yf0_c00470{bottom:254.325000px;}
.yf4_c00470{bottom:254.745000px;}
.yee_c00470{bottom:255.405000px;}
.yf2_c00470{bottom:255.630000px;}
.yf1_c00470{bottom:256.905000px;}
.yea_c00470{bottom:271.905000px;}
.ye9_c00470{bottom:272.745000px;}
.yec_c00470{bottom:273.630000px;}
.ye7_c00470{bottom:274.245000px;}
.yeb_c00470{bottom:274.905000px;}
.ye8_c00470{bottom:275.130000px;}
.yed_c00470{bottom:275.325000px;}
.ye6_c00470{bottom:276.405000px;}
.ye2_c00470{bottom:292.245000px;}
.ye1_c00470{bottom:293.130000px;}
.ydf_c00470{bottom:293.745000px;}
.ye3_c00470{bottom:294.405000px;}
.ye4_c00470{bottom:294.630000px;}
.ye5_c00470{bottom:294.825000px;}
.ye0_c00470{bottom:295.905000px;}
.ydb_c00470{bottom:313.050000px;}
.ydc_c00470{bottom:313.245000px;}
.ydd_c00470{bottom:313.905000px;}
.yd9_c00470{bottom:314.130000px;}
.yda_c00470{bottom:315.405000px;}
.yde_c00470{bottom:315.630000px;}
.yd6_c00470{bottom:332.325000px;}
.yd4_c00470{bottom:332.745000px;}
.yd8_c00470{bottom:333.630000px;}
.yd7_c00470{bottom:333.825000px;}
.yd5_c00470{bottom:334.905000px;}
.yd2_c00470{bottom:350.970000px;}
.yd1_c00470{bottom:352.245000px;}
.yd3_c00470{bottom:353.130000px;}
.yd0_c00470{bottom:354.405000px;}
.ycb_c00470{bottom:369.405000px;}
.yc9_c00470{bottom:371.745000px;}
.ycc_c00470{bottom:372.405000px;}
.ycd_c00470{bottom:372.630000px;}
.yc8_c00470{bottom:372.825000px;}
.yca_c00470{bottom:373.905000px;}
.yce_c00470{bottom:374.130000px;}
.ycf_c00470{bottom:374.325000px;}
.yc5_c00470{bottom:391.245000px;}
.yc7_c00470{bottom:391.470000px;}
.yc4_c00470{bottom:392.130000px;}
.yc3_c00470{bottom:392.325000px;}
.yc1_c00470{bottom:393.405000px;}
.yc2_c00470{bottom:393.630000px;}
.yc6_c00470{bottom:394.470000px;}
.ybd_c00470{bottom:410.745000px;}
.ybe_c00470{bottom:412.050000px;}
.ybb_c00470{bottom:412.245000px;}
.yc0_c00470{bottom:412.470000px;}
.ybc_c00470{bottom:412.905000px;}
.ybf_c00470{bottom:413.130000px;}
.yba_c00470{bottom:430.245000px;}
.yb7_c00470{bottom:431.745000px;}
.yb9_c00470{bottom:432.405000px;}
.yb8_c00470{bottom:432.630000px;}
.yb5_c00470{bottom:432.825000px;}
.yb6_c00470{bottom:433.905000px;}
.yb3_c00470{bottom:451.245000px;}
.yb4_c00470{bottom:451.905000px;}
.yb2_c00470{bottom:453.405000px;}
.yb0_c00470{bottom:468.405000px;}
.yb1_c00470{bottom:469.470000px;}
.yac_c00470{bottom:470.325000px;}
.yae_c00470{bottom:470.745000px;}
.yaf_c00470{bottom:471.630000px;}
.yad_c00470{bottom:472.905000px;}
.yab_c00470{bottom:488.970000px;}
.ya8_c00470{bottom:490.245000px;}
.ya7_c00470{bottom:491.130000px;}
.yaa_c00470{bottom:491.970000px;}
.ya5_c00470{bottom:492.405000px;}
.ya6_c00470{bottom:492.630000px;}
.ya9_c00470{bottom:493.470000px;}
.y9e_c00470{bottom:509.745000px;}
.ya4_c00470{bottom:510.630000px;}
.ya3_c00470{bottom:510.825000px;}
.ya0_c00470{bottom:511.050000px;}
.ya1_c00470{bottom:511.905000px;}
.ya2_c00470{bottom:512.130000px;}
.y9f_c00470{bottom:512.970000px;}
.y9c_c00470{bottom:529.245000px;}
.y9a_c00470{bottom:530.745000px;}
.y9d_c00470{bottom:531.405000px;}
.y9b_c00470{bottom:531.630000px;}
.y99_c00470{bottom:532.905000px;}
.y96_c00470{bottom:548.745000px;}
.y93_c00470{bottom:550.245000px;}
.y97_c00470{bottom:550.905000px;}
.y98_c00470{bottom:551.130000px;}
.y95_c00470{bottom:551.325000px;}
.y94_c00470{bottom:552.405000px;}
.y92_c00470{bottom:569.325000px;}
.y91_c00470{bottom:569.745000px;}
.y90_c00470{bottom:570.405000px;}
.y8d_c00470{bottom:570.825000px;}
.y8f_c00470{bottom:571.470000px;}
.y8e_c00470{bottom:571.905000px;}
.y8b_c00470{bottom:588.825000px;}
.y88_c00470{bottom:589.245000px;}
.y8c_c00470{bottom:590.970000px;}
.y8a_c00470{bottom:591.405000px;}
.y89_c00470{bottom:591.420000px;}
.y85_c00470{bottom:615.405000px;}
.y86_c00470{bottom:616.695000px;}
.y87_c00470{bottom:617.550000px;}
.y82_c00470{bottom:629.325000px;}
.y84_c00470{bottom:629.550000px;}
.y80_c00470{bottom:630.405000px;}
.y7f_c00470{bottom:630.630000px;}
.y81_c00470{bottom:631.470000px;}
.y83_c00470{bottom:632.550000px;}
.y7d_c00470{bottom:644.325000px;}
.y7b_c00470{bottom:645.405000px;}
.y7a_c00470{bottom:645.630000px;}
.y7e_c00470{bottom:646.470000px;}
.y7c_c00470{bottom:647.550000px;}
.y79_c00470{bottom:658.905000px;}
.y75_c00470{bottom:659.325000px;}
.y76_c00470{bottom:660.405000px;}
.y78_c00470{bottom:661.470000px;}
.y77_c00470{bottom:661.695000px;}
.y73_c00470{bottom:672.825000px;}
.y6f_c00470{bottom:673.905000px;}
.y6e_c00470{bottom:674.550000px;}
.y72_c00470{bottom:674.970000px;}
.y74_c00470{bottom:675.195000px;}
.y71_c00470{bottom:675.630000px;}
.y70_c00470{bottom:676.050000px;}
.y6c_c00470{bottom:687.825000px;}
.y6d_c00470{bottom:688.905000px;}
.y6b_c00470{bottom:689.970000px;}
.y68_c00470{bottom:702.825000px;}
.y69_c00470{bottom:703.905000px;}
.y6a_c00470{bottom:704.550000px;}
.y67_c00470{bottom:704.970000px;}
.y66_c00470{bottom:717.825000px;}
.y64_c00470{bottom:718.470000px;}
.y65_c00470{bottom:721.050000px;}
.y63_c00470{bottom:732.825000px;}
.y5e_c00470{bottom:733.050000px;}
.y5f_c00470{bottom:733.905000px;}
.y62_c00470{bottom:734.130000px;}
.y60_c00470{bottom:734.970000px;}
.y61_c00470{bottom:736.050000px;}
.y5d_c00470{bottom:746.325000px;}
.y5a_c00470{bottom:747.405000px;}
.y5c_c00470{bottom:748.470000px;}
.y58_c00470{bottom:748.905000px;}
.y57_c00470{bottom:749.550000px;}
.y59_c00470{bottom:749.970000px;}
.y5b_c00470{bottom:750.195000px;}
.y56_c00470{bottom:762.825000px;}
.y55_c00470{bottom:764.970000px;}
.y51_c00470{bottom:776.325000px;}
.y4f_c00470{bottom:776.970000px;}
.y50_c00470{bottom:777.405000px;}
.y53_c00470{bottom:777.630000px;}
.y52_c00470{bottom:778.470000px;}
.y54_c00470{bottom:779.550000px;}
.y4e_c00470{bottom:791.325000px;}
.y4c_c00470{bottom:792.405000px;}
.y4d_c00470{bottom:793.695000px;}
.y4b_c00470{bottom:794.970000px;}
.y47_c00470{bottom:806.550000px;}
.y49_c00470{bottom:807.405000px;}
.y48_c00470{bottom:808.470000px;}
.y4a_c00470{bottom:809.550000px;}
.y46_c00470{bottom:821.325000px;}
.y43_c00470{bottom:822.405000px;}
.y45_c00470{bottom:823.695000px;}
.y44_c00470{bottom:824.550000px;}
.y40_c00470{bottom:835.905000px;}
.y42_c00470{bottom:836.325000px;}
.y3b_c00470{bottom:836.550000px;}
.y3d_c00470{bottom:837.405000px;}
.y3e_c00470{bottom:837.630000px;}
.y3f_c00470{bottom:838.050000px;}
.y41_c00470{bottom:838.695000px;}
.y3c_c00470{bottom:839.550000px;}
.y3a_c00470{bottom:850.905000px;}
.y39_c00470{bottom:851.325000px;}
.y37_c00470{bottom:852.405000px;}
.y34_c00470{bottom:852.630000px;}
.y36_c00470{bottom:853.470000px;}
.y38_c00470{bottom:853.695000px;}
.y35_c00470{bottom:854.550000px;}
.y33_c00470{bottom:866.325000px;}
.y32_c00470{bottom:867.405000px;}
.y2f_c00470{bottom:880.905000px;}
.y30_c00470{bottom:881.970000px;}
.y31_c00470{bottom:882.195000px;}
.y2d_c00470{bottom:882.630000px;}
.y2e_c00470{bottom:883.050000px;}
.y29_c00470{bottom:904.245000px;}
.y2a_c00470{bottom:905.745000px;}
.y2c_c00470{bottom:906.405000px;}
.y2b_c00470{bottom:907.470000px;}
.y28_c00470{bottom:923.745000px;}
.y27_c00470{bottom:925.905000px;}
.y26_c00470{bottom:926.130000px;}
.y25_c00470{bottom:927.405000px;}
.y1f_c00470{bottom:942.405000px;}
.y24_c00470{bottom:943.245000px;}
.y23_c00470{bottom:943.470000px;}
.y20_c00470{bottom:944.325000px;}
.y22_c00470{bottom:945.405000px;}
.y21_c00470{bottom:945.630000px;}
.y1d_c00470{bottom:962.745000px;}
.y1e_c00470{bottom:963.825000px;}
.y19_c00470{bottom:964.245000px;}
.y1c_c00470{bottom:964.905000px;}
.y1a_c00470{bottom:965.130000px;}
.y1b_c00470{bottom:965.970000px;}
.y18_c00470{bottom:966.405000px;}
.y17_c00470{bottom:981.405000px;}
.y16_c00470{bottom:982.470000px;}
.y14_c00470{bottom:983.745000px;}
.y15_c00470{bottom:984.825000px;}
.y13_c00470{bottom:1003.245000px;}
.y12_c00470{bottom:1004.130000px;}
.y10_c00470{bottom:1004.325000px;}
.y11_c00470{bottom:1005.405000px;}
.yc_c00470{bottom:1020.405000px;}
.yf_c00470{bottom:1022.745000px;}
.ye_c00470{bottom:1023.630000px;}
.yd_c00470{bottom:1024.470000px;}
.yb_c00470{bottom:1024.905000px;}
.ya_c00470{bottom:1039.905000px;}
.y7_c00470{bottom:1042.245000px;}
.y6_c00470{bottom:1043.130000px;}
.y8_c00470{bottom:1043.970000px;}
.y9_c00470{bottom:1044.405000px;}
.y5_c00470{bottom:1061.745000px;}
.y3_c00470{bottom:1063.905000px;}
.y4_c00470{bottom:1063.920000px;}
.y2_c00470{bottom:1099.905000px;}
.y1_c00470{bottom:1103.130000px;}
.h3_c00470{height:4.206533px;}
.h8_c00470{height:16.752334px;}
.h1_c00470{height:23.025234px;}
.h7_c00470{height:25.091602px;}
.h5_c00470{height:31.364502px;}
.h2_c00470{height:35.571035px;}
.h6_c00470{height:39.777568px;}
.h9_c00470{height:41.571035px;}
.h4_c00470{height:43.910303px;}
.h0_c00470{height:1335.000000px;}
.w0_c00470{width:880.500000px;}
.x0_c00470{left:0.000000px;}
.x1f_c00470{left:151.500000px;}
.xf_c00470{left:153.000000px;}
.x37_c00470{left:154.275000px;}
.x62_c00470{left:166.080000px;}
.x3_c00470{left:167.580000px;}
.x20_c00470{left:169.080000px;}
.xd1_c00470{left:172.500000px;}
.xfa_c00470{left:175.920000px;}
.x8f_c00470{left:180.000000px;}
.x6d_c00470{left:181.920000px;}
.x63_c00470{left:184.080000px;}
.xd2_c00470{left:186.420000px;}
.x51_c00470{left:190.920000px;}
.xdd_c00470{left:192.000000px;}
.x10_c00470{left:195.000000px;}
.x3f_c00470{left:196.275000px;}
.xc5_c00470{left:198.000000px;}
.xd9_c00470{left:199.080000px;}
.x48_c00470{left:201.000000px;}
.xc1_c00470{left:205.920000px;}
.xef_c00470{left:208.500000px;}
.xd3_c00470{left:211.920000px;}
.x9f_c00470{left:213.000000px;}
.x11_c00470{left:214.500000px;}
.x52_c00470{left:217.500000px;}
.x21_c00470{left:219.000000px;}
.x64_c00470{left:223.500000px;}
.x101_c00470{left:225.420000px;}
.x98_c00470{left:226.920000px;}
.x6e_c00470{left:228.000000px;}
.x7e_c00470{left:229.500000px;}
.xa3_c00470{left:232.080000px;}
.x40_c00470{left:234.000000px;}
.x5c_c00470{left:237.000000px;}
.x22_c00470{left:238.080000px;}
.x2d_c00470{left:240.000000px;}
.xe7_c00470{left:244.920000px;}
.xd4_c00470{left:246.420000px;}
.xb8_c00470{left:247.500000px;}
.xc6_c00470{left:249.000000px;}
.x4_c00470{left:252.000000px;}
.x12_c00470{left:253.500000px;}
.x41_c00470{left:255.420000px;}
.x7f_c00470{left:256.500000px;}
.x6f_c00470{left:259.500000px;}
.x23_c00470{left:261.000000px;}
.x77_c00470{left:262.500000px;}
.x49_c00470{left:264.000000px;}
.x89_c00470{left:265.080000px;}
.xad_c00470{left:267.000000px;}
.x53_c00470{left:271.500000px;}
.x5_c00470{left:272.580000px;}
.x13_c00470{left:274.275000px;}
.xba_c00470{left:276.000000px;}
.xb9_c00470{left:277.920000px;}
.xae_c00470{left:279.000000px;}
.xc7_c00470{left:280.500000px;}
.x86_c00470{left:282.000000px;}
.x42_c00470{left:285.000000px;}
.xa0_c00470{left:287.580000px;}
.x38_c00470{left:290.775000px;}
.xd5_c00470{left:292.920000px;}
.x78_c00470{left:295.080000px;}
.x5d_c00470{left:298.080000px;}
.x90_c00470{left:300.000000px;}
.x2e_c00470{left:301.500000px;}
.x70_c00470{left:303.000000px;}
.x65_c00470{left:304.500000px;}
.x54_c00470{left:305.580000px;}
.x24_c00470{left:307.080000px;}
.x14_c00470{left:308.580000px;}
.x4a_c00470{left:310.080000px;}
.xe1_c00470{left:312.420000px;}
.xa8_c00470{left:313.500000px;}
.xaf_c00470{left:314.580000px;}
.xd6_c00470{left:316.500000px;}
.xc8_c00470{left:318.000000px;}
.x93_c00470{left:319.080000px;}
.x87_c00470{left:328.080000px;}
.x39_c00470{left:331.920000px;}
.x106_c00470{left:333.420000px;}
.xa1_c00470{left:336.000000px;}
.x55_c00470{left:337.920000px;}
.xe8_c00470{left:339.000000px;}
.xc9_c00470{left:343.920000px;}
.x6_c00470{left:345.000000px;}
.x25_c00470{left:346.500000px;}
.xc2_c00470{left:347.580000px;}
.xa4_c00470{left:349.080000px;}
.xa9_c00470{left:351.000000px;}
.xe2_c00470{left:352.920000px;}
.x8a_c00470{left:354.000000px;}
.x88_c00470{left:357.420000px;}
.x80_c00470{left:361.500000px;}
.x71_c00470{left:363.000000px;}
.x3a_c00470{left:364.500000px;}
.x7_c00470{left:366.000000px;}
.x26_c00470{left:367.920000px;}
.xbb_c00470{left:369.420000px;}
.x66_c00470{left:370.920000px;}
.x72_c00470{left:373.500000px;}
.x107_c00470{left:375.000000px;}
.x99_c00470{left:376.500000px;}
.x2f_c00470{left:377.580000px;}
.xde_c00470{left:379.500000px;}
.xb0_c00470{left:381.000000px;}
.x43_c00470{left:382.920000px;}
.x94_c00470{left:385.080000px;}
.x67_c00470{left:387.000000px;}
.x15_c00470{left:391.275000px;}
.x27_c00470{left:394.500000px;}
.x81_c00470{left:395.580000px;}
.xf6_c00470{left:397.920000px;}
.x30_c00470{left:399.000000px;}
.x4b_c00470{left:400.500000px;}
.x95_c00470{left:402.645000px;}
.x8b_c00470{left:404.580000px;}
.x1_c00470{left:406.500000px;}
.xec_c00470{left:407.580000px;}
.xb1_c00470{left:411.420000px;}
.x31_c00470{left:414.000000px;}
.xa5_c00470{left:415.500000px;}
.x91_c00470{left:417.000000px;}
.x108_c00470{left:420.000000px;}
.x56_c00470{left:421.500000px;}
.x73_c00470{left:426.000000px;}
.x79_c00470{left:427.500000px;}
.x68_c00470{left:430.500000px;}
.xce_c00470{left:432.000000px;}
.x16_c00470{left:433.275000px;}
.x5e_c00470{left:435.000000px;}
.x8_c00470{left:436.920000px;}
.xa2_c00470{left:438.000000px;}
.xb2_c00470{left:439.500000px;}
.x4c_c00470{left:441.000000px;}
.x9a_c00470{left:442.500000px;}
.xe3_c00470{left:444.420000px;}
.x109_c00470{left:445.500000px;}
.x5f_c00470{left:447.000000px;}
.xaa_c00470{left:450.000000px;}
.x82_c00470{left:454.500000px;}
.x32_c00470{left:457.500000px;}
.x44_c00470{left:459.420000px;}
.xfb_c00470{left:460.920000px;}
.xda_c00470{left:462.000000px;}
.xf0_c00470{left:463.500000px;}
.x28_c00470{left:465.420000px;}
.x9_c00470{left:466.500000px;}
.xe4_c00470{left:468.420000px;}
.xe9_c00470{left:469.500000px;}
.xca_c00470{left:471.000000px;}
.x4d_c00470{left:474.000000px;}
.x9b_c00470{left:477.000000px;}
.xb3_c00470{left:483.000000px;}
.x96_c00470{left:484.500000px;}
.x60_c00470{left:485.580000px;}
.x74_c00470{left:487.080000px;}
.x92_c00470{left:489.000000px;}
.x69_c00470{left:490.500000px;}
.x17_c00470{left:493.500000px;}
.xbc_c00470{left:495.420000px;}
.xb4_c00470{left:496.500000px;}
.x3b_c00470{left:498.000000px;}
.xdb_c00470{left:501.000000px;}
.xf1_c00470{left:505.920000px;}
.x57_c00470{left:510.000000px;}
.x33_c00470{left:511.920000px;}
.x18_c00470{left:514.500000px;}
.x75_c00470{left:516.420000px;}
.x83_c00470{left:518.145000px;}
.xa_c00470{left:520.500000px;}
.xbd_c00470{left:522.000000px;}
.xa6_c00470{left:523.500000px;}
.xf7_c00470{left:524.580000px;}
.xab_c00470{left:526.080000px;}
.x58_c00470{left:528.420000px;}
.xdf_c00470{left:529.920000px;}
.xf2_c00470{left:531.420000px;}
.x3c_c00470{left:533.355000px;}
.xfc_c00470{left:535.500000px;}
.x4e_c00470{left:538.080000px;}
.x19_c00470{left:540.000000px;}
.x7a_c00470{left:541.080000px;}
.xcb_c00470{left:542.580000px;}
.x29_c00470{left:544.080000px;}
.xb5_c00470{left:547.080000px;}
.xc3_c00470{left:549.000000px;}
.xb_c00470{left:550.080000px;}
.xa7_c00470{left:553.080000px;}
.x45_c00470{left:554.580000px;}
.xfd_c00470{left:556.920000px;}
.x76_c00470{left:558.000000px;}
.x1a_c00470{left:559.080000px;}
.xbe_c00470{left:561.000000px;}
.xea_c00470{left:564.420000px;}
.x84_c00470{left:565.500000px;}
.xf3_c00470{left:568.500000px;}
.xcf_c00470{left:570.000000px;}
.x34_c00470{left:571.080000px;}
.x102_c00470{left:574.500000px;}
.x10a_c00470{left:576.000000px;}
.x8c_c00470{left:577.920000px;}
.x6a_c00470{left:579.000000px;}
.x1b_c00470{left:580.080000px;}
.xb6_c00470{left:582.855000px;}
.x61_c00470{left:586.920000px;}
.xc_c00470{left:589.080000px;}
.x8d_c00470{left:591.000000px;}
.x103_c00470{left:592.920000px;}
.xed_c00470{left:594.000000px;}
.xcc_c00470{left:595.500000px;}
.x3d_c00470{left:596.775000px;}
.x7b_c00470{left:598.500000px;}
.xd7_c00470{left:601.500000px;}
.xb7_c00470{left:605.355000px;}
.xf8_c00470{left:606.420000px;}
.x9c_c00470{left:607.500000px;}
.x46_c00470{left:610.080000px;}
.x35_c00470{left:612.420000px;}
.xbf_c00470{left:613.500000px;}
.xf4_c00470{left:615.000000px;}
.x2a_c00470{left:621.000000px;}
.x1c_c00470{left:624.000000px;}
.xd8_c00470{left:625.920000px;}
.x47_c00470{left:627.420000px;}
.xfe_c00470{left:628.920000px;}
.xe5_c00470{left:630.420000px;}
.xf5_c00470{left:631.920000px;}
.x9d_c00470{left:633.000000px;}
.x4f_c00470{left:634.500000px;}
.x1d_c00470{left:637.920000px;}
.xee_c00470{left:639.000000px;}
.xac_c00470{left:640.500000px;}
.x105_c00470{left:642.000000px;}
.x59_c00470{left:643.500000px;}
.xd0_c00470{left:645.000000px;}
.xc4_c00470{left:646.080000px;}
.xe0_c00470{left:648.420000px;}
.x10b_c00470{left:651.420000px;}
.x85_c00470{left:654.645000px;}
.xd_c00470{left:655.920000px;}
.x2b_c00470{left:657.000000px;}
.x7c_c00470{left:658.080000px;}
.x97_c00470{left:660.000000px;}
.xf9_c00470{left:661.500000px;}
.x50_c00470{left:663.000000px;}
.xff_c00470{left:664.500000px;}
.x8e_c00470{left:665.580000px;}
.x3e_c00470{left:672.855000px;}
.x5a_c00470{left:677.580000px;}
.xc0_c00470{left:681.420000px;}
.x1e_c00470{left:682.920000px;}
.xeb_c00470{left:687.000000px;}
.x6b_c00470{left:689.580000px;}
.xe6_c00470{left:691.500000px;}
.x36_c00470{left:692.775000px;}
.xe_c00470{left:694.080000px;}
.x2c_c00470{left:696.000000px;}
.x100_c00470{left:697.920000px;}
.xcd_c00470{left:699.000000px;}
.x6c_c00470{left:700.500000px;}
.x9e_c00470{left:702.000000px;}
.x2_c00470{left:705.000000px;}
.x5b_c00470{left:706.920000px;}
.xdc_c00470{left:709.920000px;}
.x7d_c00470{left:711.000000px;}
.x104_c00470{left:715.500000px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.v1_c00470{vertical-align:5.333333pt;}
.ls0_c00470{letter-spacing:0.000000pt;}
.ws0_c00470{word-spacing:-3.741796pt;}
.ws1_c00470{word-spacing:0.000000pt;}
.fs2_c00470{font-size:3.040000pt;}
.fs7_c00470{font-size:12.106667pt;}
.fs0_c00470{font-size:16.640000pt;}
.fs6_c00470{font-size:18.133333pt;}
.fs4_c00470{font-size:22.666667pt;}
.fs1_c00470{font-size:25.706667pt;}
.fs5_c00470{font-size:28.746667pt;}
.fs3_c00470{font-size:31.733333pt;}
.y0_c00470{bottom:0.000000pt;}
.yef_c00470{bottom:224.360000pt;}
.yf3_c00470{bottom:225.106667pt;}
.yf0_c00470{bottom:226.066667pt;}
.yf4_c00470{bottom:226.440000pt;}
.yee_c00470{bottom:227.026667pt;}
.yf2_c00470{bottom:227.226667pt;}
.yf1_c00470{bottom:228.360000pt;}
.yea_c00470{bottom:241.693333pt;}
.ye9_c00470{bottom:242.440000pt;}
.yec_c00470{bottom:243.226667pt;}
.ye7_c00470{bottom:243.773333pt;}
.yeb_c00470{bottom:244.360000pt;}
.ye8_c00470{bottom:244.560000pt;}
.yed_c00470{bottom:244.733333pt;}
.ye6_c00470{bottom:245.693333pt;}
.ye2_c00470{bottom:259.773333pt;}
.ye1_c00470{bottom:260.560000pt;}
.ydf_c00470{bottom:261.106667pt;}
.ye3_c00470{bottom:261.693333pt;}
.ye4_c00470{bottom:261.893333pt;}
.ye5_c00470{bottom:262.066667pt;}
.ye0_c00470{bottom:263.026667pt;}
.ydb_c00470{bottom:278.266667pt;}
.ydc_c00470{bottom:278.440000pt;}
.ydd_c00470{bottom:279.026667pt;}
.yd9_c00470{bottom:279.226667pt;}
.yda_c00470{bottom:280.360000pt;}
.yde_c00470{bottom:280.560000pt;}
.yd6_c00470{bottom:295.400000pt;}
.yd4_c00470{bottom:295.773333pt;}
.yd8_c00470{bottom:296.560000pt;}
.yd7_c00470{bottom:296.733333pt;}
.yd5_c00470{bottom:297.693333pt;}
.yd2_c00470{bottom:311.973333pt;}
.yd1_c00470{bottom:313.106667pt;}
.yd3_c00470{bottom:313.893333pt;}
.yd0_c00470{bottom:315.026667pt;}
.ycb_c00470{bottom:328.360000pt;}
.yc9_c00470{bottom:330.440000pt;}
.ycc_c00470{bottom:331.026667pt;}
.ycd_c00470{bottom:331.226667pt;}
.yc8_c00470{bottom:331.400000pt;}
.yca_c00470{bottom:332.360000pt;}
.yce_c00470{bottom:332.560000pt;}
.ycf_c00470{bottom:332.733333pt;}
.yc5_c00470{bottom:347.773333pt;}
.yc7_c00470{bottom:347.973333pt;}
.yc4_c00470{bottom:348.560000pt;}
.yc3_c00470{bottom:348.733333pt;}
.yc1_c00470{bottom:349.693333pt;}
.yc2_c00470{bottom:349.893333pt;}
.yc6_c00470{bottom:350.640000pt;}
.ybd_c00470{bottom:365.106667pt;}
.ybe_c00470{bottom:366.266667pt;}
.ybb_c00470{bottom:366.440000pt;}
.yc0_c00470{bottom:366.640000pt;}
.ybc_c00470{bottom:367.026667pt;}
.ybf_c00470{bottom:367.226667pt;}
.yba_c00470{bottom:382.440000pt;}
.yb7_c00470{bottom:383.773333pt;}
.yb9_c00470{bottom:384.360000pt;}
.yb8_c00470{bottom:384.560000pt;}
.yb5_c00470{bottom:384.733333pt;}
.yb6_c00470{bottom:385.693333pt;}
.yb3_c00470{bottom:401.106667pt;}
.yb4_c00470{bottom:401.693333pt;}
.yb2_c00470{bottom:403.026667pt;}
.yb0_c00470{bottom:416.360000pt;}
.yb1_c00470{bottom:417.306667pt;}
.yac_c00470{bottom:418.066667pt;}
.yae_c00470{bottom:418.440000pt;}
.yaf_c00470{bottom:419.226667pt;}
.yad_c00470{bottom:420.360000pt;}
.yab_c00470{bottom:434.640000pt;}
.ya8_c00470{bottom:435.773333pt;}
.ya7_c00470{bottom:436.560000pt;}
.yaa_c00470{bottom:437.306667pt;}
.ya5_c00470{bottom:437.693333pt;}
.ya6_c00470{bottom:437.893333pt;}
.ya9_c00470{bottom:438.640000pt;}
.y9e_c00470{bottom:453.106667pt;}
.ya4_c00470{bottom:453.893333pt;}
.ya3_c00470{bottom:454.066667pt;}
.ya0_c00470{bottom:454.266667pt;}
.ya1_c00470{bottom:455.026667pt;}
.ya2_c00470{bottom:455.226667pt;}
.y9f_c00470{bottom:455.973333pt;}
.y9c_c00470{bottom:470.440000pt;}
.y9a_c00470{bottom:471.773333pt;}
.y9d_c00470{bottom:472.360000pt;}
.y9b_c00470{bottom:472.560000pt;}
.y99_c00470{bottom:473.693333pt;}
.y96_c00470{bottom:487.773333pt;}
.y93_c00470{bottom:489.106667pt;}
.y97_c00470{bottom:489.693333pt;}
.y98_c00470{bottom:489.893333pt;}
.y95_c00470{bottom:490.066667pt;}
.y94_c00470{bottom:491.026667pt;}
.y92_c00470{bottom:506.066667pt;}
.y91_c00470{bottom:506.440000pt;}
.y90_c00470{bottom:507.026667pt;}
.y8d_c00470{bottom:507.400000pt;}
.y8f_c00470{bottom:507.973333pt;}
.y8e_c00470{bottom:508.360000pt;}
.y8b_c00470{bottom:523.400000pt;}
.y88_c00470{bottom:523.773333pt;}
.y8c_c00470{bottom:525.306667pt;}
.y8a_c00470{bottom:525.693333pt;}
.y89_c00470{bottom:525.706667pt;}
.y85_c00470{bottom:547.026667pt;}
.y86_c00470{bottom:548.173333pt;}
.y87_c00470{bottom:548.933333pt;}
.y82_c00470{bottom:559.400000pt;}
.y84_c00470{bottom:559.600000pt;}
.y80_c00470{bottom:560.360000pt;}
.y7f_c00470{bottom:560.560000pt;}
.y81_c00470{bottom:561.306667pt;}
.y83_c00470{bottom:562.266667pt;}
.y7d_c00470{bottom:572.733333pt;}
.y7b_c00470{bottom:573.693333pt;}
.y7a_c00470{bottom:573.893333pt;}
.y7e_c00470{bottom:574.640000pt;}
.y7c_c00470{bottom:575.600000pt;}
.y79_c00470{bottom:585.693333pt;}
.y75_c00470{bottom:586.066667pt;}
.y76_c00470{bottom:587.026667pt;}
.y78_c00470{bottom:587.973333pt;}
.y77_c00470{bottom:588.173333pt;}
.y73_c00470{bottom:598.066667pt;}
.y6f_c00470{bottom:599.026667pt;}
.y6e_c00470{bottom:599.600000pt;}
.y72_c00470{bottom:599.973333pt;}
.y74_c00470{bottom:600.173333pt;}
.y71_c00470{bottom:600.560000pt;}
.y70_c00470{bottom:600.933333pt;}
.y6c_c00470{bottom:611.400000pt;}
.y6d_c00470{bottom:612.360000pt;}
.y6b_c00470{bottom:613.306667pt;}
.y68_c00470{bottom:624.733333pt;}
.y69_c00470{bottom:625.693333pt;}
.y6a_c00470{bottom:626.266667pt;}
.y67_c00470{bottom:626.640000pt;}
.y66_c00470{bottom:638.066667pt;}
.y64_c00470{bottom:638.640000pt;}
.y65_c00470{bottom:640.933333pt;}
.y63_c00470{bottom:651.400000pt;}
.y5e_c00470{bottom:651.600000pt;}
.y5f_c00470{bottom:652.360000pt;}
.y62_c00470{bottom:652.560000pt;}
.y60_c00470{bottom:653.306667pt;}
.y61_c00470{bottom:654.266667pt;}
.y5d_c00470{bottom:663.400000pt;}
.y5a_c00470{bottom:664.360000pt;}
.y5c_c00470{bottom:665.306667pt;}
.y58_c00470{bottom:665.693333pt;}
.y57_c00470{bottom:666.266667pt;}
.y59_c00470{bottom:666.640000pt;}
.y5b_c00470{bottom:666.840000pt;}
.y56_c00470{bottom:678.066667pt;}
.y55_c00470{bottom:679.973333pt;}
.y51_c00470{bottom:690.066667pt;}
.y4f_c00470{bottom:690.640000pt;}
.y50_c00470{bottom:691.026667pt;}
.y53_c00470{bottom:691.226667pt;}
.y52_c00470{bottom:691.973333pt;}
.y54_c00470{bottom:692.933333pt;}
.y4e_c00470{bottom:703.400000pt;}
.y4c_c00470{bottom:704.360000pt;}
.y4d_c00470{bottom:705.506667pt;}
.y4b_c00470{bottom:706.640000pt;}
.y47_c00470{bottom:716.933333pt;}
.y49_c00470{bottom:717.693333pt;}
.y48_c00470{bottom:718.640000pt;}
.y4a_c00470{bottom:719.600000pt;}
.y46_c00470{bottom:730.066667pt;}
.y43_c00470{bottom:731.026667pt;}
.y45_c00470{bottom:732.173333pt;}
.y44_c00470{bottom:732.933333pt;}
.y40_c00470{bottom:743.026667pt;}
.y42_c00470{bottom:743.400000pt;}
.y3b_c00470{bottom:743.600000pt;}
.y3d_c00470{bottom:744.360000pt;}
.y3e_c00470{bottom:744.560000pt;}
.y3f_c00470{bottom:744.933333pt;}
.y41_c00470{bottom:745.506667pt;}
.y3c_c00470{bottom:746.266667pt;}
.y3a_c00470{bottom:756.360000pt;}
.y39_c00470{bottom:756.733333pt;}
.y37_c00470{bottom:757.693333pt;}
.y34_c00470{bottom:757.893333pt;}
.y36_c00470{bottom:758.640000pt;}
.y38_c00470{bottom:758.840000pt;}
.y35_c00470{bottom:759.600000pt;}
.y33_c00470{bottom:770.066667pt;}
.y32_c00470{bottom:771.026667pt;}
.y2f_c00470{bottom:783.026667pt;}
.y30_c00470{bottom:783.973333pt;}
.y31_c00470{bottom:784.173333pt;}
.y2d_c00470{bottom:784.560000pt;}
.y2e_c00470{bottom:784.933333pt;}
.y29_c00470{bottom:803.773333pt;}
.y2a_c00470{bottom:805.106667pt;}
.y2c_c00470{bottom:805.693333pt;}
.y2b_c00470{bottom:806.640000pt;}
.y28_c00470{bottom:821.106667pt;}
.y27_c00470{bottom:823.026667pt;}
.y26_c00470{bottom:823.226667pt;}
.y25_c00470{bottom:824.360000pt;}
.y1f_c00470{bottom:837.693333pt;}
.y24_c00470{bottom:838.440000pt;}
.y23_c00470{bottom:838.640000pt;}
.y20_c00470{bottom:839.400000pt;}
.y22_c00470{bottom:840.360000pt;}
.y21_c00470{bottom:840.560000pt;}
.y1d_c00470{bottom:855.773333pt;}
.y1e_c00470{bottom:856.733333pt;}
.y19_c00470{bottom:857.106667pt;}
.y1c_c00470{bottom:857.693333pt;}
.y1a_c00470{bottom:857.893333pt;}
.y1b_c00470{bottom:858.640000pt;}
.y18_c00470{bottom:859.026667pt;}
.y17_c00470{bottom:872.360000pt;}
.y16_c00470{bottom:873.306667pt;}
.y14_c00470{bottom:874.440000pt;}
.y15_c00470{bottom:875.400000pt;}
.y13_c00470{bottom:891.773333pt;}
.y12_c00470{bottom:892.560000pt;}
.y10_c00470{bottom:892.733333pt;}
.y11_c00470{bottom:893.693333pt;}
.yc_c00470{bottom:907.026667pt;}
.yf_c00470{bottom:909.106667pt;}
.ye_c00470{bottom:909.893333pt;}
.yd_c00470{bottom:910.640000pt;}
.yb_c00470{bottom:911.026667pt;}
.ya_c00470{bottom:924.360000pt;}
.y7_c00470{bottom:926.440000pt;}
.y6_c00470{bottom:927.226667pt;}
.y8_c00470{bottom:927.973333pt;}
.y9_c00470{bottom:928.360000pt;}
.y5_c00470{bottom:943.773333pt;}
.y3_c00470{bottom:945.693333pt;}
.y4_c00470{bottom:945.706667pt;}
.y2_c00470{bottom:977.693333pt;}
.y1_c00470{bottom:980.560000pt;}
.h3_c00470{height:3.739141pt;}
.h8_c00470{height:14.890964pt;}
.h1_c00470{height:20.466875pt;}
.h7_c00470{height:22.303646pt;}
.h5_c00470{height:27.879557pt;}
.h2_c00470{height:31.618698pt;}
.h6_c00470{height:35.357839pt;}
.h9_c00470{height:36.952031pt;}
.h4_c00470{height:39.031380pt;}
.h0_c00470{height:1186.666667pt;}
.w0_c00470{width:782.666667pt;}
.x0_c00470{left:0.000000pt;}
.x1f_c00470{left:134.666667pt;}
.xf_c00470{left:136.000000pt;}
.x37_c00470{left:137.133333pt;}
.x62_c00470{left:147.626667pt;}
.x3_c00470{left:148.960000pt;}
.x20_c00470{left:150.293333pt;}
.xd1_c00470{left:153.333333pt;}
.xfa_c00470{left:156.373333pt;}
.x8f_c00470{left:160.000000pt;}
.x6d_c00470{left:161.706667pt;}
.x63_c00470{left:163.626667pt;}
.xd2_c00470{left:165.706667pt;}
.x51_c00470{left:169.706667pt;}
.xdd_c00470{left:170.666667pt;}
.x10_c00470{left:173.333333pt;}
.x3f_c00470{left:174.466667pt;}
.xc5_c00470{left:176.000000pt;}
.xd9_c00470{left:176.960000pt;}
.x48_c00470{left:178.666667pt;}
.xc1_c00470{left:183.040000pt;}
.xef_c00470{left:185.333333pt;}
.xd3_c00470{left:188.373333pt;}
.x9f_c00470{left:189.333333pt;}
.x11_c00470{left:190.666667pt;}
.x52_c00470{left:193.333333pt;}
.x21_c00470{left:194.666667pt;}
.x64_c00470{left:198.666667pt;}
.x101_c00470{left:200.373333pt;}
.x98_c00470{left:201.706667pt;}
.x6e_c00470{left:202.666667pt;}
.x7e_c00470{left:204.000000pt;}
.xa3_c00470{left:206.293333pt;}
.x40_c00470{left:208.000000pt;}
.x5c_c00470{left:210.666667pt;}
.x22_c00470{left:211.626667pt;}
.x2d_c00470{left:213.333333pt;}
.xe7_c00470{left:217.706667pt;}
.xd4_c00470{left:219.040000pt;}
.xb8_c00470{left:220.000000pt;}
.xc6_c00470{left:221.333333pt;}
.x4_c00470{left:224.000000pt;}
.x12_c00470{left:225.333333pt;}
.x41_c00470{left:227.040000pt;}
.x7f_c00470{left:228.000000pt;}
.x6f_c00470{left:230.666667pt;}
.x23_c00470{left:232.000000pt;}
.x77_c00470{left:233.333333pt;}
.x49_c00470{left:234.666667pt;}
.x89_c00470{left:235.626667pt;}
.xad_c00470{left:237.333333pt;}
.x53_c00470{left:241.333333pt;}
.x5_c00470{left:242.293333pt;}
.x13_c00470{left:243.800000pt;}
.xba_c00470{left:245.333333pt;}
.xb9_c00470{left:247.040000pt;}
.xae_c00470{left:248.000000pt;}
.xc7_c00470{left:249.333333pt;}
.x86_c00470{left:250.666667pt;}
.x42_c00470{left:253.333333pt;}
.xa0_c00470{left:255.626667pt;}
.x38_c00470{left:258.466667pt;}
.xd5_c00470{left:260.373333pt;}
.x78_c00470{left:262.293333pt;}
.x5d_c00470{left:264.960000pt;}
.x90_c00470{left:266.666667pt;}
.x2e_c00470{left:268.000000pt;}
.x70_c00470{left:269.333333pt;}
.x65_c00470{left:270.666667pt;}
.x54_c00470{left:271.626667pt;}
.x24_c00470{left:272.960000pt;}
.x14_c00470{left:274.293333pt;}
.x4a_c00470{left:275.626667pt;}
.xe1_c00470{left:277.706667pt;}
.xa8_c00470{left:278.666667pt;}
.xaf_c00470{left:279.626667pt;}
.xd6_c00470{left:281.333333pt;}
.xc8_c00470{left:282.666667pt;}
.x93_c00470{left:283.626667pt;}
.x87_c00470{left:291.626667pt;}
.x39_c00470{left:295.040000pt;}
.x106_c00470{left:296.373333pt;}
.xa1_c00470{left:298.666667pt;}
.x55_c00470{left:300.373333pt;}
.xe8_c00470{left:301.333333pt;}
.xc9_c00470{left:305.706667pt;}
.x6_c00470{left:306.666667pt;}
.x25_c00470{left:308.000000pt;}
.xc2_c00470{left:308.960000pt;}
.xa4_c00470{left:310.293333pt;}
.xa9_c00470{left:312.000000pt;}
.xe2_c00470{left:313.706667pt;}
.x8a_c00470{left:314.666667pt;}
.x88_c00470{left:317.706667pt;}
.x80_c00470{left:321.333333pt;}
.x71_c00470{left:322.666667pt;}
.x3a_c00470{left:324.000000pt;}
.x7_c00470{left:325.333333pt;}
.x26_c00470{left:327.040000pt;}
.xbb_c00470{left:328.373333pt;}
.x66_c00470{left:329.706667pt;}
.x72_c00470{left:332.000000pt;}
.x107_c00470{left:333.333333pt;}
.x99_c00470{left:334.666667pt;}
.x2f_c00470{left:335.626667pt;}
.xde_c00470{left:337.333333pt;}
.xb0_c00470{left:338.666667pt;}
.x43_c00470{left:340.373333pt;}
.x94_c00470{left:342.293333pt;}
.x67_c00470{left:344.000000pt;}
.x15_c00470{left:347.800000pt;}
.x27_c00470{left:350.666667pt;}
.x81_c00470{left:351.626667pt;}
.xf6_c00470{left:353.706667pt;}
.x30_c00470{left:354.666667pt;}
.x4b_c00470{left:356.000000pt;}
.x95_c00470{left:357.906667pt;}
.x8b_c00470{left:359.626667pt;}
.x1_c00470{left:361.333333pt;}
.xec_c00470{left:362.293333pt;}
.xb1_c00470{left:365.706667pt;}
.x31_c00470{left:368.000000pt;}
.xa5_c00470{left:369.333333pt;}
.x91_c00470{left:370.666667pt;}
.x108_c00470{left:373.333333pt;}
.x56_c00470{left:374.666667pt;}
.x73_c00470{left:378.666667pt;}
.x79_c00470{left:380.000000pt;}
.x68_c00470{left:382.666667pt;}
.xce_c00470{left:384.000000pt;}
.x16_c00470{left:385.133333pt;}
.x5e_c00470{left:386.666667pt;}
.x8_c00470{left:388.373333pt;}
.xa2_c00470{left:389.333333pt;}
.xb2_c00470{left:390.666667pt;}
.x4c_c00470{left:392.000000pt;}
.x9a_c00470{left:393.333333pt;}
.xe3_c00470{left:395.040000pt;}
.x109_c00470{left:396.000000pt;}
.x5f_c00470{left:397.333333pt;}
.xaa_c00470{left:400.000000pt;}
.x82_c00470{left:404.000000pt;}
.x32_c00470{left:406.666667pt;}
.x44_c00470{left:408.373333pt;}
.xfb_c00470{left:409.706667pt;}
.xda_c00470{left:410.666667pt;}
.xf0_c00470{left:412.000000pt;}
.x28_c00470{left:413.706667pt;}
.x9_c00470{left:414.666667pt;}
.xe4_c00470{left:416.373333pt;}
.xe9_c00470{left:417.333333pt;}
.xca_c00470{left:418.666667pt;}
.x4d_c00470{left:421.333333pt;}
.x9b_c00470{left:424.000000pt;}
.xb3_c00470{left:429.333333pt;}
.x96_c00470{left:430.666667pt;}
.x60_c00470{left:431.626667pt;}
.x74_c00470{left:432.960000pt;}
.x92_c00470{left:434.666667pt;}
.x69_c00470{left:436.000000pt;}
.x17_c00470{left:438.666667pt;}
.xbc_c00470{left:440.373333pt;}
.xb4_c00470{left:441.333333pt;}
.x3b_c00470{left:442.666667pt;}
.xdb_c00470{left:445.333333pt;}
.xf1_c00470{left:449.706667pt;}
.x57_c00470{left:453.333333pt;}
.x33_c00470{left:455.040000pt;}
.x18_c00470{left:457.333333pt;}
.x75_c00470{left:459.040000pt;}
.x83_c00470{left:460.573333pt;}
.xa_c00470{left:462.666667pt;}
.xbd_c00470{left:464.000000pt;}
.xa6_c00470{left:465.333333pt;}
.xf7_c00470{left:466.293333pt;}
.xab_c00470{left:467.626667pt;}
.x58_c00470{left:469.706667pt;}
.xdf_c00470{left:471.040000pt;}
.xf2_c00470{left:472.373333pt;}
.x3c_c00470{left:474.093333pt;}
.xfc_c00470{left:476.000000pt;}
.x4e_c00470{left:478.293333pt;}
.x19_c00470{left:480.000000pt;}
.x7a_c00470{left:480.960000pt;}
.xcb_c00470{left:482.293333pt;}
.x29_c00470{left:483.626667pt;}
.xb5_c00470{left:486.293333pt;}
.xc3_c00470{left:488.000000pt;}
.xb_c00470{left:488.960000pt;}
.xa7_c00470{left:491.626667pt;}
.x45_c00470{left:492.960000pt;}
.xfd_c00470{left:495.040000pt;}
.x76_c00470{left:496.000000pt;}
.x1a_c00470{left:496.960000pt;}
.xbe_c00470{left:498.666667pt;}
.xea_c00470{left:501.706667pt;}
.x84_c00470{left:502.666667pt;}
.xf3_c00470{left:505.333333pt;}
.xcf_c00470{left:506.666667pt;}
.x34_c00470{left:507.626667pt;}
.x102_c00470{left:510.666667pt;}
.x10a_c00470{left:512.000000pt;}
.x8c_c00470{left:513.706667pt;}
.x6a_c00470{left:514.666667pt;}
.x1b_c00470{left:515.626667pt;}
.xb6_c00470{left:518.093333pt;}
.x61_c00470{left:521.706667pt;}
.xc_c00470{left:523.626667pt;}
.x8d_c00470{left:525.333333pt;}
.x103_c00470{left:527.040000pt;}
.xed_c00470{left:528.000000pt;}
.xcc_c00470{left:529.333333pt;}
.x3d_c00470{left:530.466667pt;}
.x7b_c00470{left:532.000000pt;}
.xd7_c00470{left:534.666667pt;}
.xb7_c00470{left:538.093333pt;}
.xf8_c00470{left:539.040000pt;}
.x9c_c00470{left:540.000000pt;}
.x46_c00470{left:542.293333pt;}
.x35_c00470{left:544.373333pt;}
.xbf_c00470{left:545.333333pt;}
.xf4_c00470{left:546.666667pt;}
.x2a_c00470{left:552.000000pt;}
.x1c_c00470{left:554.666667pt;}
.xd8_c00470{left:556.373333pt;}
.x47_c00470{left:557.706667pt;}
.xfe_c00470{left:559.040000pt;}
.xe5_c00470{left:560.373333pt;}
.xf5_c00470{left:561.706667pt;}
.x9d_c00470{left:562.666667pt;}
.x4f_c00470{left:564.000000pt;}
.x1d_c00470{left:567.040000pt;}
.xee_c00470{left:568.000000pt;}
.xac_c00470{left:569.333333pt;}
.x105_c00470{left:570.666667pt;}
.x59_c00470{left:572.000000pt;}
.xd0_c00470{left:573.333333pt;}
.xc4_c00470{left:574.293333pt;}
.xe0_c00470{left:576.373333pt;}
.x10b_c00470{left:579.040000pt;}
.x85_c00470{left:581.906667pt;}
.xd_c00470{left:583.040000pt;}
.x2b_c00470{left:584.000000pt;}
.x7c_c00470{left:584.960000pt;}
.x97_c00470{left:586.666667pt;}
.xf9_c00470{left:588.000000pt;}
.x50_c00470{left:589.333333pt;}
.xff_c00470{left:590.666667pt;}
.x8e_c00470{left:591.626667pt;}
.x3e_c00470{left:598.093333pt;}
.x5a_c00470{left:602.293333pt;}
.xc0_c00470{left:605.706667pt;}
.x1e_c00470{left:607.040000pt;}
.xeb_c00470{left:610.666667pt;}
.x6b_c00470{left:612.960000pt;}
.xe6_c00470{left:614.666667pt;}
.x36_c00470{left:615.800000pt;}
.xe_c00470{left:616.960000pt;}
.x2c_c00470{left:618.666667pt;}
.x100_c00470{left:620.373333pt;}
.xcd_c00470{left:621.333333pt;}
.x6c_c00470{left:622.666667pt;}
.x9e_c00470{left:624.000000pt;}
.x2_c00470{left:626.666667pt;}
.x5b_c00470{left:628.373333pt;}
.xdc_c00470{left:631.040000pt;}
.x7d_c00470{left:632.000000pt;}
.x104_c00470{left:636.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_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_55ca0264b44cf3664a0d5c17.woff2')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:1.688965;font-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_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);}
.ma8_c00471{transform:matrix(0.275974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275974,0.000000,0.000000,0.250000,0,0);}
.m85_c00471{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m7a_c00471{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m59_c00471{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m81_c00471{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m32_c00471{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m60_c00471{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m66_c00471{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m1b_c00471{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m80_c00471{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m56_c00471{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m5d_c00471{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m41_c00471{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.mb2_c00471{transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);}
.m9f_c00471{transform:matrix(0.394706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394706,0.000000,0.000000,0.250000,0,0);}
.m21_c00471{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m6f_c00471{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m74_c00471{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m48_c00471{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m92_c00471{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.mb1_c00471{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.m58_c00471{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m4e_c00471{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m75_c00471{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m98_c00471{transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);}
.m42_c00471{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m9_c00471{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.ma9_c00471{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m46_c00471{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m7_c00471{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m7c_c00471{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m57_c00471{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m5c_c00471{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m7d_c00471{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m3a_c00471{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m3c_c00471{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m9b_c00471{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m4b_c00471{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m2a_c00471{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m68_c00471{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m35_c00471{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m29_c00471{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m1a_c00471{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m4d_c00471{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m4c_c00471{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m5e_c00471{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m50_c00471{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m7e_c00471{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m69_c00471{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m88_c00471{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.mac_c00471{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m2f_c00471{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m90_c00471{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.me_c00471{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m67_c00471{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m14_c00471{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m55_c00471{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m18_c00471{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m99_c00471{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m10_c00471{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m23_c00471{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.md_c00471{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.mab_c00471{transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);}
.m91_c00471{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m49_c00471{transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);}
.m61_c00471{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m76_c00471{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m64_c00471{transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);}
.m1f_c00471{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.maf_c00471{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m8a_c00471{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m8_c00471{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m82_c00471{transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);}
.mb0_c00471{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m0_c00471{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m6c_c00471{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m38_c00471{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.m94_c00471{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m5_c00471{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_c00471{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m28_c00471{transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);}
.m96_c00471{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m3f_c00471{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m4f_c00471{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.ma4_c00471{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m3b_c00471{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.mc_c00471{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m95_c00471{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m13_c00471{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m45_c00471{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m6d_c00471{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m24_c00471{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.ma7_c00471{transform:matrix(0.521765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521765,0.000000,0.000000,0.250000,0,0);}
.m36_c00471{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m3e_c00471{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m11_c00471{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m3d_c00471{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m27_c00471{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m77_c00471{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m8b_c00471{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m5b_c00471{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m51_c00471{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m6_c00471{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m72_c00471{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m2_c00471{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m37_c00471{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m17_c00471{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m16_c00471{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m30_c00471{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m26_c00471{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m5f_c00471{transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);}
.m44_c00471{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m8d_c00471{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m65_c00471{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.ma5_c00471{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m70_c00471{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.m9c_c00471{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m2d_c00471{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m4a_c00471{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.ma_c00471{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m6e_c00471{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m86_c00471{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m19_c00471{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m12_c00471{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mf_c00471{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m54_c00471{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m52_c00471{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m6b_c00471{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.ma0_c00471{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m22_c00471{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m87_c00471{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m97_c00471{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m3_c00471{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m1e_c00471{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m79_c00471{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m78_c00471{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m93_c00471{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m7f_c00471{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m63_c00471{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m43_c00471{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m8e_c00471{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m2e_c00471{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m9d_c00471{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m1c_c00471{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m71_c00471{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m1d_c00471{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m40_c00471{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m2c_c00471{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m6a_c00471{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m2b_c00471{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.maa_c00471{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);}
.m20_c00471{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.ma6_c00471{transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);}
.m8f_c00471{transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);}
.m84_c00471{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m7b_c00471{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m31_c00471{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m9a_c00471{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m9e_c00471{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_c00471{transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);}
.m34_c00471{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mb_c00471{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mad_c00471{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.ma1_c00471{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m1_c00471{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m47_c00471{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.ma3_c00471{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);}
.mae_c00471{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.m73_c00471{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.ma2_c00471{transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);}
.m33_c00471{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m15_c00471{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m5a_c00471{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m39_c00471{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m8c_c00471{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m53_c00471{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m83_c00471{transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);}
.m25_c00471{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,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:-6.680629px;}
.ws1_c00471{word-spacing:0.000000px;}
.fc0_c00471{color:transparent;}
.fs6_c00471{font-size:13.620000px;}
.fs1_c00471{font-size:18.720000px;}
.fs5_c00471{font-size:20.400000px;}
.fs3_c00471{font-size:25.500000px;}
.fs0_c00471{font-size:28.920000px;}
.fs4_c00471{font-size:32.340000px;}
.fs2_c00471{font-size:35.700000px;}
.y0_c00471{bottom:0.000000px;}
.y71_c00471{bottom:250.470000px;}
.y6f_c00471{bottom:251.325000px;}
.y72_c00471{bottom:252.405000px;}
.y74_c00471{bottom:252.630000px;}
.y6e_c00471{bottom:253.470000px;}
.y73_c00471{bottom:253.695000px;}
.y70_c00471{bottom:254.550000px;}
.y6c_c00471{bottom:265.470000px;}
.y6d_c00471{bottom:266.325000px;}
.y6b_c00471{bottom:266.550000px;}
.y6a_c00471{bottom:267.405000px;}
.y69_c00471{bottom:268.050000px;}
.y67_c00471{bottom:268.470000px;}
.y68_c00471{bottom:269.550000px;}
.y64_c00471{bottom:280.470000px;}
.y61_c00471{bottom:281.325000px;}
.y62_c00471{bottom:282.405000px;}
.y63_c00471{bottom:282.630000px;}
.y66_c00471{bottom:283.470000px;}
.y65_c00471{bottom:284.550000px;}
.y5e_c00471{bottom:667.245000px;}
.y60_c00471{bottom:668.130000px;}
.y5f_c00471{bottom:669.405000px;}
.y5b_c00471{bottom:686.745000px;}
.y5d_c00471{bottom:687.825000px;}
.y59_c00471{bottom:688.245000px;}
.y5a_c00471{bottom:688.905000px;}
.y5c_c00471{bottom:689.970000px;}
.y57_c00471{bottom:706.245000px;}
.y56_c00471{bottom:708.405000px;}
.y58_c00471{bottom:708.630000px;}
.y52_c00471{bottom:727.245000px;}
.y55_c00471{bottom:727.905000px;}
.y53_c00471{bottom:728.130000px;}
.y54_c00471{bottom:728.970000px;}
.y51_c00471{bottom:729.405000px;}
.y50_c00471{bottom:744.405000px;}
.y4d_c00471{bottom:746.745000px;}
.y4f_c00471{bottom:748.470000px;}
.y4e_c00471{bottom:748.905000px;}
.y48_c00471{bottom:765.405000px;}
.y47_c00471{bottom:766.245000px;}
.y4c_c00471{bottom:767.970000px;}
.y4b_c00471{bottom:768.405000px;}
.y49_c00471{bottom:768.630000px;}
.y4a_c00471{bottom:769.470000px;}
.y45_c00471{bottom:784.470000px;}
.y44_c00471{bottom:785.745000px;}
.y46_c00471{bottom:786.630000px;}
.y43_c00471{bottom:787.905000px;}
.y42_c00471{bottom:803.970000px;}
.y3e_c00471{bottom:805.245000px;}
.y3f_c00471{bottom:807.405000px;}
.y40_c00471{bottom:807.630000px;}
.y41_c00471{bottom:808.470000px;}
.y3a_c00471{bottom:824.745000px;}
.y3c_c00471{bottom:826.905000px;}
.y3b_c00471{bottom:827.130000px;}
.y3d_c00471{bottom:827.970000px;}
.y39_c00471{bottom:844.245000px;}
.y36_c00471{bottom:844.470000px;}
.y37_c00471{bottom:845.745000px;}
.y38_c00471{bottom:845.970000px;}
.y35_c00471{bottom:846.630000px;}
.y34_c00471{bottom:847.905000px;}
.y30_c00471{bottom:865.245000px;}
.y33_c00471{bottom:866.130000px;}
.y31_c00471{bottom:866.970000px;}
.y32_c00471{bottom:867.405000px;}
.y2a_c00471{bottom:884.325000px;}
.y2f_c00471{bottom:884.745000px;}
.y2e_c00471{bottom:885.630000px;}
.y2c_c00471{bottom:885.825000px;}
.y2b_c00471{bottom:886.905000px;}
.y2d_c00471{bottom:887.970000px;}
.y27_c00471{bottom:902.745000px;}
.y24_c00471{bottom:904.245000px;}
.y29_c00471{bottom:905.130000px;}
.y28_c00471{bottom:905.970000px;}
.y26_c00471{bottom:906.405000px;}
.y25_c00471{bottom:907.470000px;}
.y22_c00471{bottom:922.905000px;}
.y23_c00471{bottom:923.745000px;}
.y21_c00471{bottom:925.905000px;}
.y1f_c00471{bottom:943.245000px;}
.y20_c00471{bottom:944.130000px;}
.y1d_c00471{bottom:945.405000px;}
.y1e_c00471{bottom:945.630000px;}
.y1c_c00471{bottom:962.745000px;}
.y1a_c00471{bottom:963.825000px;}
.y18_c00471{bottom:964.905000px;}
.y19_c00471{bottom:965.130000px;}
.y1b_c00471{bottom:965.970000px;}
.y16_c00471{bottom:982.245000px;}
.y17_c00471{bottom:983.970000px;}
.y15_c00471{bottom:984.405000px;}
.y14_c00471{bottom:985.470000px;}
.y13_c00471{bottom:1001.745000px;}
.y12_c00471{bottom:1002.825000px;}
.y11_c00471{bottom:1003.905000px;}
.y10_c00471{bottom:1004.130000px;}
.yc_c00471{bottom:1021.245000px;}
.yf_c00471{bottom:1022.325000px;}
.yd_c00471{bottom:1023.405000px;}
.ye_c00471{bottom:1024.470000px;}
.yb_c00471{bottom:1024.905000px;}
.ya_c00471{bottom:1042.905000px;}
.y9_c00471{bottom:1043.130000px;}
.y8_c00471{bottom:1043.325000px;}
.y7_c00471{bottom:1044.405000px;}
.y6_c00471{bottom:1059.405000px;}
.y4_c00471{bottom:1061.745000px;}
.y5_c00471{bottom:1063.470000px;}
.y3_c00471{bottom:1063.905000px;}
.y1_c00471{bottom:1099.905000px;}
.y2_c00471{bottom:1101.630000px;}
.h7_c00471{height:16.752334px;}
.h2_c00471{height:23.025234px;}
.h6_c00471{height:25.091602px;}
.h4_c00471{height:31.364502px;}
.h1_c00471{height:35.571035px;}
.h5_c00471{height:39.777568px;}
.h3_c00471{height:43.910303px;}
.h0_c00471{height:1335.000000px;}
.w0_c00471{width:880.500000px;}
.x0_c00471{left:0.000000px;}
.x1_c00471{left:151.500000px;}
.x12_c00471{left:153.000000px;}
.x3_c00471{left:168.000000px;}
.xa4_c00471{left:171.000000px;}
.x67_c00471{left:172.920000px;}
.x32_c00471{left:178.500000px;}
.x3f_c00471{left:180.420000px;}
.x5b_c00471{left:181.920000px;}
.x6f_c00471{left:185.580000px;}
.x28_c00471{left:187.920000px;}
.xc2_c00471{left:191.580000px;}
.x9c_c00471{left:193.080000px;}
.x4_c00471{left:199.920000px;}
.x1d_c00471{left:201.420000px;}
.x13_c00471{left:204.420000px;}
.x40_c00471{left:207.420000px;}
.x5c_c00471{left:208.500000px;}
.x88_c00471{left:210.000000px;}
.x29_c00471{left:214.500000px;}
.x33_c00471{left:223.080000px;}
.x5d_c00471{left:225.420000px;}
.xb1_c00471{left:227.580000px;}
.x70_c00471{left:231.420000px;}
.x51_c00471{left:234.000000px;}
.x34_c00471{left:240.420000px;}
.x14_c00471{left:243.420000px;}
.xb7_c00471{left:244.920000px;}
.x41_c00471{left:246.000000px;}
.x2a_c00471{left:247.080000px;}
.x8e_c00471{left:250.920000px;}
.x9d_c00471{left:252.420000px;}
.x5_c00471{left:253.500000px;}
.xcd_c00471{left:256.500000px;}
.xc3_c00471{left:258.000000px;}
.x95_c00471{left:259.500000px;}
.x5e_c00471{left:261.420000px;}
.x35_c00471{left:267.000000px;}
.xb8_c00471{left:268.500000px;}
.x15_c00471{left:273.420000px;}
.x7a_c00471{left:274.500000px;}
.xc4_c00471{left:276.000000px;}
.x2b_c00471{left:277.500000px;}
.x68_c00471{left:286.500000px;}
.xa7_c00471{left:289.500000px;}
.x8f_c00471{left:292.500000px;}
.x42_c00471{left:294.000000px;}
.x7b_c00471{left:295.920000px;}
.xa5_c00471{left:297.420000px;}
.x5f_c00471{left:298.920000px;}
.x71_c00471{left:303.000000px;}
.x6_c00471{left:307.080000px;}
.x36_c00471{left:310.500000px;}
.x8b_c00471{left:312.000000px;}
.x43_c00471{left:313.920000px;}
.xa8_c00471{left:316.080000px;}
.x69_c00471{left:319.080000px;}
.x16_c00471{left:321.000000px;}
.x89_c00471{left:322.500000px;}
.x9e_c00471{left:324.420000px;}
.x7_c00471{left:325.920000px;}
.xa6_c00471{left:327.000000px;}
.x7c_c00471{left:328.500000px;}
.x1e_c00471{left:330.000000px;}
.x81_c00471{left:331.920000px;}
.xb2_c00471{left:337.500000px;}
.x44_c00471{left:340.500000px;}
.x60_c00471{left:345.420000px;}
.x2c_c00471{left:347.580000px;}
.x8a_c00471{left:351.420000px;}
.x8_c00471{left:352.500000px;}
.x9f_c00471{left:354.000000px;}
.x52_c00471{left:357.000000px;}
.x96_c00471{left:358.920000px;}
.x37_c00471{left:362.580000px;}
.x1f_c00471{left:364.920000px;}
.xb3_c00471{left:369.420000px;}
.x72_c00471{left:372.420000px;}
.xa9_c00471{left:376.500000px;}
.xbd_c00471{left:379.080000px;}
.x38_c00471{left:381.420000px;}
.x17_c00471{left:382.500000px;}
.x45_c00471{left:384.000000px;}
.x82_c00471{left:385.920000px;}
.x90_c00471{left:387.420000px;}
.x9_c00471{left:391.500000px;}
.xaa_c00471{left:393.000000px;}
.xc5_c00471{left:394.500000px;}
.x20_c00471{left:398.580000px;}
.xa_c00471{left:406.920000px;}
.x2_c00471{left:408.000000px;}
.xab_c00471{left:409.500000px;}
.x46_c00471{left:411.000000px;}
.xa0_c00471{left:412.500000px;}
.x21_c00471{left:420.420000px;}
.x97_c00471{left:424.080000px;}
.x83_c00471{left:426.420000px;}
.x7d_c00471{left:427.500000px;}
.xc6_c00471{left:430.500000px;}
.x18_c00471{left:439.080000px;}
.x2d_c00471{left:441.420000px;}
.xac_c00471{left:442.500000px;}
.x53_c00471{left:444.000000px;}
.x22_c00471{left:448.500000px;}
.x61_c00471{left:450.000000px;}
.x98_c00471{left:454.500000px;}
.x47_c00471{left:455.580000px;}
.xb_c00471{left:460.080000px;}
.x91_c00471{left:461.580000px;}
.x73_c00471{left:466.500000px;}
.x2e_c00471{left:468.000000px;}
.x48_c00471{left:474.000000px;}
.xbe_c00471{left:475.920000px;}
.x39_c00471{left:477.000000px;}
.x7e_c00471{left:481.500000px;}
.xa1_c00471{left:485.580000px;}
.x62_c00471{left:487.920000px;}
.x23_c00471{left:490.500000px;}
.x3a_c00471{left:492.000000px;}
.x6a_c00471{left:495.420000px;}
.xb9_c00471{left:496.500000px;}
.x74_c00471{left:497.580000px;}
.x49_c00471{left:501.420000px;}
.x54_c00471{left:502.500000px;}
.xc_c00471{left:508.500000px;}
.x24_c00471{left:510.000000px;}
.x7f_c00471{left:514.500000px;}
.x75_c00471{left:516.420000px;}
.x2f_c00471{left:520.920000px;}
.x6b_c00471{left:522.420000px;}
.xbf_c00471{left:523.500000px;}
.xad_c00471{left:525.000000px;}
.xd_c00471{left:526.920000px;}
.xca_c00471{left:528.420000px;}
.x4a_c00471{left:531.000000px;}
.x8c_c00471{left:532.920000px;}
.xb4_c00471{left:535.500000px;}
.x3b_c00471{left:538.500000px;}
.x92_c00471{left:540.000000px;}
.x84_c00471{left:541.500000px;}
.x76_c00471{left:543.420000px;}
.xcb_c00471{left:544.500000px;}
.x4b_c00471{left:547.080000px;}
.x19_c00471{left:552.000000px;}
.x63_c00471{left:555.000000px;}
.xcc_c00471{left:556.500000px;}
.xba_c00471{left:558.420000px;}
.x6c_c00471{left:561.000000px;}
.x55_c00471{left:562.500000px;}
.xae_c00471{left:564.000000px;}
.x4c_c00471{left:565.080000px;}
.xe_c00471{left:567.420000px;}
.x1a_c00471{left:570.420000px;}
.x64_c00471{left:573.000000px;}
.xb5_c00471{left:582.000000px;}
.xbb_c00471{left:583.500000px;}
.x65_c00471{left:588.000000px;}
.x99_c00471{left:591.000000px;}
.x8d_c00471{left:594.000000px;}
.x30_c00471{left:595.500000px;}
.xc7_c00471{left:597.000000px;}
.x25_c00471{left:598.500000px;}
.x56_c00471{left:601.500000px;}
.xbc_c00471{left:603.000000px;}
.x4d_c00471{left:607.920000px;}
.x3c_c00471{left:609.000000px;}
.x93_c00471{left:613.500000px;}
.xaf_c00471{left:615.420000px;}
.x9a_c00471{left:616.500000px;}
.x85_c00471{left:619.920000px;}
.x57_c00471{left:622.920000px;}
.x6d_c00471{left:625.920000px;}
.xc0_c00471{left:627.420000px;}
.x4e_c00471{left:633.420000px;}
.xc8_c00471{left:634.920000px;}
.xf_c00471{left:636.000000px;}
.xb6_c00471{left:638.580000px;}
.x77_c00471{left:640.500000px;}
.x26_c00471{left:642.000000px;}
.xa2_c00471{left:643.500000px;}
.x58_c00471{left:646.500000px;}
.x1b_c00471{left:652.920000px;}
.xc1_c00471{left:654.000000px;}
.x66_c00471{left:658.080000px;}
.x86_c00471{left:661.080000px;}
.x3d_c00471{left:662.580000px;}
.x59_c00471{left:666.420000px;}
.x4f_c00471{left:670.500000px;}
.xa3_c00471{left:671.580000px;}
.x10_c00471{left:676.080000px;}
.x27_c00471{left:677.580000px;}
.x31_c00471{left:681.420000px;}
.x1c_c00471{left:682.920000px;}
.x78_c00471{left:684.000000px;}
.x94_c00471{left:687.000000px;}
.xb0_c00471{left:688.080000px;}
.x6e_c00471{left:690.420000px;}
.x5a_c00471{left:694.500000px;}
.x80_c00471{left:697.920000px;}
.x79_c00471{left:702.000000px;}
.x3e_c00471{left:705.420000px;}
.x11_c00471{left:706.500000px;}
.x9b_c00471{left:708.420000px;}
.x87_c00471{left:711.420000px;}
.xc9_c00471{left:715.500000px;}
.x50_c00471{left:717.000000px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.ls0_c00471{letter-spacing:0.000000pt;}
.ws0_c00471{word-spacing:-5.938337pt;}
.ws1_c00471{word-spacing:0.000000pt;}
.fs6_c00471{font-size:12.106667pt;}
.fs1_c00471{font-size:16.640000pt;}
.fs5_c00471{font-size:18.133333pt;}
.fs3_c00471{font-size:22.666667pt;}
.fs0_c00471{font-size:25.706667pt;}
.fs4_c00471{font-size:28.746667pt;}
.fs2_c00471{font-size:31.733333pt;}
.y0_c00471{bottom:0.000000pt;}
.y71_c00471{bottom:222.640000pt;}
.y6f_c00471{bottom:223.400000pt;}
.y72_c00471{bottom:224.360000pt;}
.y74_c00471{bottom:224.560000pt;}
.y6e_c00471{bottom:225.306667pt;}
.y73_c00471{bottom:225.506667pt;}
.y70_c00471{bottom:226.266667pt;}
.y6c_c00471{bottom:235.973333pt;}
.y6d_c00471{bottom:236.733333pt;}
.y6b_c00471{bottom:236.933333pt;}
.y6a_c00471{bottom:237.693333pt;}
.y69_c00471{bottom:238.266667pt;}
.y67_c00471{bottom:238.640000pt;}
.y68_c00471{bottom:239.600000pt;}
.y64_c00471{bottom:249.306667pt;}
.y61_c00471{bottom:250.066667pt;}
.y62_c00471{bottom:251.026667pt;}
.y63_c00471{bottom:251.226667pt;}
.y66_c00471{bottom:251.973333pt;}
.y65_c00471{bottom:252.933333pt;}
.y5e_c00471{bottom:593.106667pt;}
.y60_c00471{bottom:593.893333pt;}
.y5f_c00471{bottom:595.026667pt;}
.y5b_c00471{bottom:610.440000pt;}
.y5d_c00471{bottom:611.400000pt;}
.y59_c00471{bottom:611.773333pt;}
.y5a_c00471{bottom:612.360000pt;}
.y5c_c00471{bottom:613.306667pt;}
.y57_c00471{bottom:627.773333pt;}
.y56_c00471{bottom:629.693333pt;}
.y58_c00471{bottom:629.893333pt;}
.y52_c00471{bottom:646.440000pt;}
.y55_c00471{bottom:647.026667pt;}
.y53_c00471{bottom:647.226667pt;}
.y54_c00471{bottom:647.973333pt;}
.y51_c00471{bottom:648.360000pt;}
.y50_c00471{bottom:661.693333pt;}
.y4d_c00471{bottom:663.773333pt;}
.y4f_c00471{bottom:665.306667pt;}
.y4e_c00471{bottom:665.693333pt;}
.y48_c00471{bottom:680.360000pt;}
.y47_c00471{bottom:681.106667pt;}
.y4c_c00471{bottom:682.640000pt;}
.y4b_c00471{bottom:683.026667pt;}
.y49_c00471{bottom:683.226667pt;}
.y4a_c00471{bottom:683.973333pt;}
.y45_c00471{bottom:697.306667pt;}
.y44_c00471{bottom:698.440000pt;}
.y46_c00471{bottom:699.226667pt;}
.y43_c00471{bottom:700.360000pt;}
.y42_c00471{bottom:714.640000pt;}
.y3e_c00471{bottom:715.773333pt;}
.y3f_c00471{bottom:717.693333pt;}
.y40_c00471{bottom:717.893333pt;}
.y41_c00471{bottom:718.640000pt;}
.y3a_c00471{bottom:733.106667pt;}
.y3c_c00471{bottom:735.026667pt;}
.y3b_c00471{bottom:735.226667pt;}
.y3d_c00471{bottom:735.973333pt;}
.y39_c00471{bottom:750.440000pt;}
.y36_c00471{bottom:750.640000pt;}
.y37_c00471{bottom:751.773333pt;}
.y38_c00471{bottom:751.973333pt;}
.y35_c00471{bottom:752.560000pt;}
.y34_c00471{bottom:753.693333pt;}
.y30_c00471{bottom:769.106667pt;}
.y33_c00471{bottom:769.893333pt;}
.y31_c00471{bottom:770.640000pt;}
.y32_c00471{bottom:771.026667pt;}
.y2a_c00471{bottom:786.066667pt;}
.y2f_c00471{bottom:786.440000pt;}
.y2e_c00471{bottom:787.226667pt;}
.y2c_c00471{bottom:787.400000pt;}
.y2b_c00471{bottom:788.360000pt;}
.y2d_c00471{bottom:789.306667pt;}
.y27_c00471{bottom:802.440000pt;}
.y24_c00471{bottom:803.773333pt;}
.y29_c00471{bottom:804.560000pt;}
.y28_c00471{bottom:805.306667pt;}
.y26_c00471{bottom:805.693333pt;}
.y25_c00471{bottom:806.640000pt;}
.y22_c00471{bottom:820.360000pt;}
.y23_c00471{bottom:821.106667pt;}
.y21_c00471{bottom:823.026667pt;}
.y1f_c00471{bottom:838.440000pt;}
.y20_c00471{bottom:839.226667pt;}
.y1d_c00471{bottom:840.360000pt;}
.y1e_c00471{bottom:840.560000pt;}
.y1c_c00471{bottom:855.773333pt;}
.y1a_c00471{bottom:856.733333pt;}
.y18_c00471{bottom:857.693333pt;}
.y19_c00471{bottom:857.893333pt;}
.y1b_c00471{bottom:858.640000pt;}
.y16_c00471{bottom:873.106667pt;}
.y17_c00471{bottom:874.640000pt;}
.y15_c00471{bottom:875.026667pt;}
.y14_c00471{bottom:875.973333pt;}
.y13_c00471{bottom:890.440000pt;}
.y12_c00471{bottom:891.400000pt;}
.y11_c00471{bottom:892.360000pt;}
.y10_c00471{bottom:892.560000pt;}
.yc_c00471{bottom:907.773333pt;}
.yf_c00471{bottom:908.733333pt;}
.yd_c00471{bottom:909.693333pt;}
.ye_c00471{bottom:910.640000pt;}
.yb_c00471{bottom:911.026667pt;}
.ya_c00471{bottom:927.026667pt;}
.y9_c00471{bottom:927.226667pt;}
.y8_c00471{bottom:927.400000pt;}
.y7_c00471{bottom:928.360000pt;}
.y6_c00471{bottom:941.693333pt;}
.y4_c00471{bottom:943.773333pt;}
.y5_c00471{bottom:945.306667pt;}
.y3_c00471{bottom:945.693333pt;}
.y1_c00471{bottom:977.693333pt;}
.y2_c00471{bottom:979.226667pt;}
.h7_c00471{height:14.890964pt;}
.h2_c00471{height:20.466875pt;}
.h6_c00471{height:22.303646pt;}
.h4_c00471{height:27.879557pt;}
.h1_c00471{height:31.618698pt;}
.h5_c00471{height:35.357839pt;}
.h3_c00471{height:39.031380pt;}
.h0_c00471{height:1186.666667pt;}
.w0_c00471{width:782.666667pt;}
.x0_c00471{left:0.000000pt;}
.x1_c00471{left:134.666667pt;}
.x12_c00471{left:136.000000pt;}
.x3_c00471{left:149.333333pt;}
.xa4_c00471{left:152.000000pt;}
.x67_c00471{left:153.706667pt;}
.x32_c00471{left:158.666667pt;}
.x3f_c00471{left:160.373333pt;}
.x5b_c00471{left:161.706667pt;}
.x6f_c00471{left:164.960000pt;}
.x28_c00471{left:167.040000pt;}
.xc2_c00471{left:170.293333pt;}
.x9c_c00471{left:171.626667pt;}
.x4_c00471{left:177.706667pt;}
.x1d_c00471{left:179.040000pt;}
.x13_c00471{left:181.706667pt;}
.x40_c00471{left:184.373333pt;}
.x5c_c00471{left:185.333333pt;}
.x88_c00471{left:186.666667pt;}
.x29_c00471{left:190.666667pt;}
.x33_c00471{left:198.293333pt;}
.x5d_c00471{left:200.373333pt;}
.xb1_c00471{left:202.293333pt;}
.x70_c00471{left:205.706667pt;}
.x51_c00471{left:208.000000pt;}
.x34_c00471{left:213.706667pt;}
.x14_c00471{left:216.373333pt;}
.xb7_c00471{left:217.706667pt;}
.x41_c00471{left:218.666667pt;}
.x2a_c00471{left:219.626667pt;}
.x8e_c00471{left:223.040000pt;}
.x9d_c00471{left:224.373333pt;}
.x5_c00471{left:225.333333pt;}
.xcd_c00471{left:228.000000pt;}
.xc3_c00471{left:229.333333pt;}
.x95_c00471{left:230.666667pt;}
.x5e_c00471{left:232.373333pt;}
.x35_c00471{left:237.333333pt;}
.xb8_c00471{left:238.666667pt;}
.x15_c00471{left:243.040000pt;}
.x7a_c00471{left:244.000000pt;}
.xc4_c00471{left:245.333333pt;}
.x2b_c00471{left:246.666667pt;}
.x68_c00471{left:254.666667pt;}
.xa7_c00471{left:257.333333pt;}
.x8f_c00471{left:260.000000pt;}
.x42_c00471{left:261.333333pt;}
.x7b_c00471{left:263.040000pt;}
.xa5_c00471{left:264.373333pt;}
.x5f_c00471{left:265.706667pt;}
.x71_c00471{left:269.333333pt;}
.x6_c00471{left:272.960000pt;}
.x36_c00471{left:276.000000pt;}
.x8b_c00471{left:277.333333pt;}
.x43_c00471{left:279.040000pt;}
.xa8_c00471{left:280.960000pt;}
.x69_c00471{left:283.626667pt;}
.x16_c00471{left:285.333333pt;}
.x89_c00471{left:286.666667pt;}
.x9e_c00471{left:288.373333pt;}
.x7_c00471{left:289.706667pt;}
.xa6_c00471{left:290.666667pt;}
.x7c_c00471{left:292.000000pt;}
.x1e_c00471{left:293.333333pt;}
.x81_c00471{left:295.040000pt;}
.xb2_c00471{left:300.000000pt;}
.x44_c00471{left:302.666667pt;}
.x60_c00471{left:307.040000pt;}
.x2c_c00471{left:308.960000pt;}
.x8a_c00471{left:312.373333pt;}
.x8_c00471{left:313.333333pt;}
.x9f_c00471{left:314.666667pt;}
.x52_c00471{left:317.333333pt;}
.x96_c00471{left:319.040000pt;}
.x37_c00471{left:322.293333pt;}
.x1f_c00471{left:324.373333pt;}
.xb3_c00471{left:328.373333pt;}
.x72_c00471{left:331.040000pt;}
.xa9_c00471{left:334.666667pt;}
.xbd_c00471{left:336.960000pt;}
.x38_c00471{left:339.040000pt;}
.x17_c00471{left:340.000000pt;}
.x45_c00471{left:341.333333pt;}
.x82_c00471{left:343.040000pt;}
.x90_c00471{left:344.373333pt;}
.x9_c00471{left:348.000000pt;}
.xaa_c00471{left:349.333333pt;}
.xc5_c00471{left:350.666667pt;}
.x20_c00471{left:354.293333pt;}
.xa_c00471{left:361.706667pt;}
.x2_c00471{left:362.666667pt;}
.xab_c00471{left:364.000000pt;}
.x46_c00471{left:365.333333pt;}
.xa0_c00471{left:366.666667pt;}
.x21_c00471{left:373.706667pt;}
.x97_c00471{left:376.960000pt;}
.x83_c00471{left:379.040000pt;}
.x7d_c00471{left:380.000000pt;}
.xc6_c00471{left:382.666667pt;}
.x18_c00471{left:390.293333pt;}
.x2d_c00471{left:392.373333pt;}
.xac_c00471{left:393.333333pt;}
.x53_c00471{left:394.666667pt;}
.x22_c00471{left:398.666667pt;}
.x61_c00471{left:400.000000pt;}
.x98_c00471{left:404.000000pt;}
.x47_c00471{left:404.960000pt;}
.xb_c00471{left:408.960000pt;}
.x91_c00471{left:410.293333pt;}
.x73_c00471{left:414.666667pt;}
.x2e_c00471{left:416.000000pt;}
.x48_c00471{left:421.333333pt;}
.xbe_c00471{left:423.040000pt;}
.x39_c00471{left:424.000000pt;}
.x7e_c00471{left:428.000000pt;}
.xa1_c00471{left:431.626667pt;}
.x62_c00471{left:433.706667pt;}
.x23_c00471{left:436.000000pt;}
.x3a_c00471{left:437.333333pt;}
.x6a_c00471{left:440.373333pt;}
.xb9_c00471{left:441.333333pt;}
.x74_c00471{left:442.293333pt;}
.x49_c00471{left:445.706667pt;}
.x54_c00471{left:446.666667pt;}
.xc_c00471{left:452.000000pt;}
.x24_c00471{left:453.333333pt;}
.x7f_c00471{left:457.333333pt;}
.x75_c00471{left:459.040000pt;}
.x2f_c00471{left:463.040000pt;}
.x6b_c00471{left:464.373333pt;}
.xbf_c00471{left:465.333333pt;}
.xad_c00471{left:466.666667pt;}
.xd_c00471{left:468.373333pt;}
.xca_c00471{left:469.706667pt;}
.x4a_c00471{left:472.000000pt;}
.x8c_c00471{left:473.706667pt;}
.xb4_c00471{left:476.000000pt;}
.x3b_c00471{left:478.666667pt;}
.x92_c00471{left:480.000000pt;}
.x84_c00471{left:481.333333pt;}
.x76_c00471{left:483.040000pt;}
.xcb_c00471{left:484.000000pt;}
.x4b_c00471{left:486.293333pt;}
.x19_c00471{left:490.666667pt;}
.x63_c00471{left:493.333333pt;}
.xcc_c00471{left:494.666667pt;}
.xba_c00471{left:496.373333pt;}
.x6c_c00471{left:498.666667pt;}
.x55_c00471{left:500.000000pt;}
.xae_c00471{left:501.333333pt;}
.x4c_c00471{left:502.293333pt;}
.xe_c00471{left:504.373333pt;}
.x1a_c00471{left:507.040000pt;}
.x64_c00471{left:509.333333pt;}
.xb5_c00471{left:517.333333pt;}
.xbb_c00471{left:518.666667pt;}
.x65_c00471{left:522.666667pt;}
.x99_c00471{left:525.333333pt;}
.x8d_c00471{left:528.000000pt;}
.x30_c00471{left:529.333333pt;}
.xc7_c00471{left:530.666667pt;}
.x25_c00471{left:532.000000pt;}
.x56_c00471{left:534.666667pt;}
.xbc_c00471{left:536.000000pt;}
.x4d_c00471{left:540.373333pt;}
.x3c_c00471{left:541.333333pt;}
.x93_c00471{left:545.333333pt;}
.xaf_c00471{left:547.040000pt;}
.x9a_c00471{left:548.000000pt;}
.x85_c00471{left:551.040000pt;}
.x57_c00471{left:553.706667pt;}
.x6d_c00471{left:556.373333pt;}
.xc0_c00471{left:557.706667pt;}
.x4e_c00471{left:563.040000pt;}
.xc8_c00471{left:564.373333pt;}
.xf_c00471{left:565.333333pt;}
.xb6_c00471{left:567.626667pt;}
.x77_c00471{left:569.333333pt;}
.x26_c00471{left:570.666667pt;}
.xa2_c00471{left:572.000000pt;}
.x58_c00471{left:574.666667pt;}
.x1b_c00471{left:580.373333pt;}
.xc1_c00471{left:581.333333pt;}
.x66_c00471{left:584.960000pt;}
.x86_c00471{left:587.626667pt;}
.x3d_c00471{left:588.960000pt;}
.x59_c00471{left:592.373333pt;}
.x4f_c00471{left:596.000000pt;}
.xa3_c00471{left:596.960000pt;}
.x10_c00471{left:600.960000pt;}
.x27_c00471{left:602.293333pt;}
.x31_c00471{left:605.706667pt;}
.x1c_c00471{left:607.040000pt;}
.x78_c00471{left:608.000000pt;}
.x94_c00471{left:610.666667pt;}
.xb0_c00471{left:611.626667pt;}
.x6e_c00471{left:613.706667pt;}
.x5a_c00471{left:617.333333pt;}
.x80_c00471{left:620.373333pt;}
.x79_c00471{left:624.000000pt;}
.x3e_c00471{left:627.040000pt;}
.x11_c00471{left:628.000000pt;}
.x9b_c00471{left:629.706667pt;}
.x87_c00471{left:632.373333pt;}
.xc9_c00471{left:636.000000pt;}
.x50_c00471{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec5d22b3d41cd8c6519d87b8.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:1.688965;font-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_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);}
.md6_c00472{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m90_c00472{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m6b_c00472{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.mb3_c00472{transform:matrix(0.365966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365966,0.000000,0.000000,0.250000,0,0);}
.me6_c00472{transform:matrix(0.368482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368482,0.000000,0.000000,0.250000,0,0);}
.m5a_c00472{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mca_c00472{transform:matrix(0.368865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368865,0.000000,0.000000,0.250000,0,0);}
.ma2_c00472{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m3c_c00472{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mdf_c00472{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mda_c00472{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m97_c00472{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m84_c00472{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.m48_c00472{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mc7_c00472{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.mcd_c00472{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m1d_c00472{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mdc_c00472{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m85_c00472{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.md9_c00472{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.ma1_c00472{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mcb_c00472{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.mcf_c00472{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m73_c00472{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.ma3_c00472{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);}
.mb9_c00472{transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);}
.me3_c00472{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m12_c00472{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.m39_c00472{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.mc1_c00472{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m14_c00472{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m72_c00472{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.md0_c00472{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m41_c00472{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mbc_c00472{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m4f_c00472{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m95_c00472{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m1f_c00472{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.mb8_c00472{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m4a_c00472{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.m3d_c00472{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m19_c00472{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m55_c00472{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.md4_c00472{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m26_c00472{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m3a_c00472{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m10_c00472{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.mcc_c00472{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.md5_c00472{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.ma9_c00472{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m5b_c00472{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mc2_c00472{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.me4_c00472{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.maa_c00472{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m6c_c00472{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mba_c00472{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m1c_c00472{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m5f_c00472{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.me1_c00472{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m32_c00472{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mad_c00472{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m70_c00472{transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);}
.m6f_c00472{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m20_c00472{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m3b_c00472{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mb6_c00472{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m30_c00472{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m8e_c00472{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m78_c00472{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m94_c00472{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m4_c00472{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mb5_c00472{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m7d_c00472{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m8_c00472{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mc3_c00472{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m8c_c00472{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m51_c00472{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.mb1_c00472{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m1_c00472{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m3e_c00472{transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);}
.mbe_c00472{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.mc5_c00472{transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);}
.m2e_c00472{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.me_c00472{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m7a_c00472{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m7f_c00472{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m4d_c00472{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.md8_c00472{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.md3_c00472{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m96_c00472{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.m17_c00472{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.mc4_c00472{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.ma7_c00472{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.m67_c00472{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.mc_c00472{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mb2_c00472{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m89_c00472{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.m40_c00472{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.md7_c00472{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m50_c00472{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mb0_c00472{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mc9_c00472{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m9f_c00472{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m42_c00472{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m62_c00472{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m52_c00472{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m16_c00472{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);}
.m45_c00472{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.mac_c00472{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m53_c00472{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m6e_c00472{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m92_c00472{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m99_c00472{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.ma6_c00472{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m9_c00472{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.md1_c00472{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mab_c00472{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m38_c00472{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m61_c00472{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mbf_c00472{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m4c_c00472{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mdd_c00472{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m5_c00472{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m60_c00472{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m5e_c00472{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m6a_c00472{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m47_c00472{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m24_c00472{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m83_c00472{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mc6_c00472{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m35_c00472{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m3f_c00472{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m9d_c00472{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m9a_c00472{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m76_c00472{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m9b_c00472{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.ma5_c00472{transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);}
.m3_c00472{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m86_c00472{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m2d_c00472{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m2b_c00472{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m81_c00472{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m2c_c00472{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m49_c00472{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m11_c00472{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m63_c00472{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m7e_c00472{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m43_c00472{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mb4_c00472{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m74_c00472{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m29_c00472{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m4b_c00472{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m25_c00472{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.me2_c00472{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m1a_c00472{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m2a_c00472{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m8a_c00472{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m2_c00472{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m34_c00472{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m58_c00472{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m80_c00472{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mb7_c00472{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m59_c00472{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m18_c00472{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mdb_c00472{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m8d_c00472{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.mc8_c00472{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m22_c00472{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m36_c00472{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.ma8_c00472{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.md_c00472{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m56_c00472{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.ma_c00472{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m27_c00472{transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);}
.m9c_c00472{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m33_c00472{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mc0_c00472{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m37_c00472{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m65_c00472{transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);}
.m15_c00472{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m2f_c00472{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m44_c00472{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.maf_c00472{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m7c_c00472{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.md2_c00472{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m1b_c00472{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);}
.m66_c00472{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mbb_c00472{transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);}
.m98_c00472{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.mde_c00472{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.mce_c00472{transform:matrix(0.607059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607059,0.000000,0.000000,0.250000,0,0);}
.m68_c00472{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m8b_c00472{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m91_c00472{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m7_c00472{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m79_c00472{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m57_c00472{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m0_c00472{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);}
.m46_c00472{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);}
.m5c_c00472{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m31_c00472{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m8f_c00472{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m23_c00472{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m88_c00472{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m71_c00472{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m6d_c00472{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m21_c00472{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m28_c00472{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.me0_c00472{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.mae_c00472{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.me5_c00472{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.m9e_c00472{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.m54_c00472{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m75_c00472{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m93_c00472{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.m69_c00472{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m6_c00472{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m64_c00472{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m77_c00472{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mb_c00472{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m1e_c00472{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.ma4_c00472{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.ma0_c00472{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mf_c00472{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m5d_c00472{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.m87_c00472{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m7b_c00472{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m4e_c00472{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m82_c00472{transform:matrix(0.842949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.842949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.842949,0.000000,0.000000,0.250000,0,0);}
.mbd_c00472{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00472{vertical-align:0.000000px;}
.v1_c00472{vertical-align:12.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:-16.889280px;}
.ws1_c00472{word-spacing:-9.216610px;}
.ws2_c00472{word-spacing:-8.678629px;}
.ws3_c00472{word-spacing:-5.939993px;}
.ws5_c00472{word-spacing:0.000000px;}
.ws4_c00472{word-spacing:7.593290px;}
._1_c00472{width:2.907806px;}
._0_c00472{width:6.724047px;}
.fc0_c00472{color:transparent;}
.fs6_c00472{font-size:3.420000px;}
.fs5_c00472{font-size:18.720000px;}
.fs0_c00472{font-size:20.400000px;}
.fs3_c00472{font-size:25.500000px;}
.fs1_c00472{font-size:28.920000px;}
.fs4_c00472{font-size:32.340000px;}
.fs2_c00472{font-size:35.700000px;}
.fs7_c00472{font-size:39.120000px;}
.y0_c00472{bottom:0.000000px;}
.yf2_c00472{bottom:250.680000px;}
.yee_c00472{bottom:251.745000px;}
.yf1_c00472{bottom:253.245000px;}
.yec_c00472{bottom:253.905000px;}
.yed_c00472{bottom:254.130000px;}
.yef_c00472{bottom:254.970000px;}
.yf0_c00472{bottom:255.405000px;}
.yea_c00472{bottom:270.405000px;}
.yeb_c00472{bottom:272.745000px;}
.ye6_c00472{bottom:273.405000px;}
.ye9_c00472{bottom:273.630000px;}
.ye8_c00472{bottom:274.470000px;}
.ye7_c00472{bottom:274.905000px;}
.ye4_c00472{bottom:292.245000px;}
.ye5_c00472{bottom:293.130000px;}
.ye3_c00472{bottom:293.970000px;}
.ye2_c00472{bottom:294.405000px;}
.ye1_c00472{bottom:310.905000px;}
.yde_c00472{bottom:311.745000px;}
.ye0_c00472{bottom:312.825000px;}
.ydd_c00472{bottom:313.905000px;}
.ydf_c00472{bottom:314.130000px;}
.ydc_c00472{bottom:314.970000px;}
.yd9_c00472{bottom:330.405000px;}
.yda_c00472{bottom:331.245000px;}
.ydb_c00472{bottom:332.325000px;}
.yd7_c00472{bottom:333.405000px;}
.yd8_c00472{bottom:333.630000px;}
.yd0_c00472{bottom:350.745000px;}
.yd4_c00472{bottom:351.630000px;}
.yd6_c00472{bottom:351.825000px;}
.yd3_c00472{bottom:352.470000px;}
.yd2_c00472{bottom:352.905000px;}
.yd1_c00472{bottom:353.130000px;}
.yd5_c00472{bottom:353.970000px;}
.yce_c00472{bottom:370.245000px;}
.ycc_c00472{bottom:371.325000px;}
.ycd_c00472{bottom:372.405000px;}
.ycf_c00472{bottom:373.470000px;}
.ycb_c00472{bottom:389.745000px;}
.yc9_c00472{bottom:390.180000px;}
.yc8_c00472{bottom:391.245000px;}
.yca_c00472{bottom:391.905000px;}
.yc7_c00472{bottom:392.130000px;}
.yc6_c00472{bottom:393.405000px;}
.yc5_c00472{bottom:409.245000px;}
.yc4_c00472{bottom:410.745000px;}
.yc0_c00472{bottom:411.630000px;}
.yc2_c00472{bottom:411.825000px;}
.yc3_c00472{bottom:412.470000px;}
.yc1_c00472{bottom:412.905000px;}
.ybd_c00472{bottom:428.745000px;}
.yba_c00472{bottom:429.825000px;}
.ybc_c00472{bottom:430.245000px;}
.ybf_c00472{bottom:430.905000px;}
.ybb_c00472{bottom:431.130000px;}
.ybe_c00472{bottom:431.970000px;}
.yb7_c00472{bottom:432.405000px;}
.yb8_c00472{bottom:432.420000px;}
.yb9_c00472{bottom:433.470000px;}
.yb4_c00472{bottom:449.745000px;}
.yb3_c00472{bottom:450.630000px;}
.yb6_c00472{bottom:451.470000px;}
.yb5_c00472{bottom:451.905000px;}
.yb2_c00472{bottom:468.405000px;}
.yb0_c00472{bottom:469.245000px;}
.yaf_c00472{bottom:471.405000px;}
.yb1_c00472{bottom:471.630000px;}
.yac_c00472{bottom:488.745000px;}
.yae_c00472{bottom:489.405000px;}
.yad_c00472{bottom:489.630000px;}
.yab_c00472{bottom:490.905000px;}
.ya9_c00472{bottom:508.245000px;}
.yaa_c00472{bottom:509.130000px;}
.ya6_c00472{bottom:509.745000px;}
.ya7_c00472{bottom:510.405000px;}
.ya8_c00472{bottom:510.630000px;}
.ya5_c00472{bottom:511.905000px;}
.ya4_c00472{bottom:527.745000px;}
.ya1_c00472{bottom:528.825000px;}
.ya2_c00472{bottom:529.245000px;}
.ya3_c00472{bottom:529.905000px;}
.y9f_c00472{bottom:530.130000px;}
.ya0_c00472{bottom:530.970000px;}
.y9e_c00472{bottom:531.405000px;}
.y9b_c00472{bottom:547.245000px;}
.y9c_c00472{bottom:548.745000px;}
.y9d_c00472{bottom:549.405000px;}
.y98_c00472{bottom:549.825000px;}
.y9a_c00472{bottom:550.470000px;}
.y99_c00472{bottom:550.905000px;}
.y96_c00472{bottom:565.905000px;}
.y95_c00472{bottom:567.405000px;}
.y93_c00472{bottom:568.245000px;}
.y97_c00472{bottom:568.905000px;}
.y94_c00472{bottom:569.130000px;}
.y92_c00472{bottom:570.405000px;}
.y8f_c00472{bottom:587.745000px;}
.y91_c00472{bottom:588.405000px;}
.y90_c00472{bottom:588.630000px;}
.y8e_c00472{bottom:588.825000px;}
.y8d_c00472{bottom:589.905000px;}
.y87_c00472{bottom:607.245000px;}
.y8c_c00472{bottom:608.130000px;}
.y8b_c00472{bottom:609.405000px;}
.y88_c00472{bottom:609.630000px;}
.y8a_c00472{bottom:610.470000px;}
.y89_c00472{bottom:610.905000px;}
.y84_c00472{bottom:627.405000px;}
.y86_c00472{bottom:628.905000px;}
.y85_c00472{bottom:629.970000px;}
.y83_c00472{bottom:630.405000px;}
.y82_c00472{bottom:647.745000px;}
.y81_c00472{bottom:649.470000px;}
.y7f_c00472{bottom:649.905000px;}
.y80_c00472{bottom:650.970000px;}
.y7d_c00472{bottom:666.405000px;}
.y77_c00472{bottom:667.245000px;}
.y7e_c00472{bottom:667.905000px;}
.y79_c00472{bottom:668.325000px;}
.y7a_c00472{bottom:668.970000px;}
.y78_c00472{bottom:669.405000px;}
.y7b_c00472{bottom:669.630000px;}
.y7c_c00472{bottom:670.470000px;}
.y73_c00472{bottom:685.905000px;}
.y6f_c00472{bottom:686.745000px;}
.y75_c00472{bottom:687.825000px;}
.y76_c00472{bottom:688.470000px;}
.y72_c00472{bottom:688.905000px;}
.y74_c00472{bottom:689.130000px;}
.y71_c00472{bottom:689.970000px;}
.y70_c00472{bottom:690.405000px;}
.y6d_c00472{bottom:706.245000px;}
.y6b_c00472{bottom:707.325000px;}
.y6e_c00472{bottom:707.970000px;}
.y6a_c00472{bottom:708.405000px;}
.y6c_c00472{bottom:709.470000px;}
.y69_c00472{bottom:725.745000px;}
.y67_c00472{bottom:726.825000px;}
.y65_c00472{bottom:727.905000px;}
.y68_c00472{bottom:728.970000px;}
.y66_c00472{bottom:729.405000px;}
.y60_c00472{bottom:744.405000px;}
.y61_c00472{bottom:745.245000px;}
.y62_c00472{bottom:746.745000px;}
.y5f_c00472{bottom:747.405000px;}
.y63_c00472{bottom:747.630000px;}
.y64_c00472{bottom:748.470000px;}
.y58_c00472{bottom:763.905000px;}
.y5a_c00472{bottom:766.245000px;}
.y5e_c00472{bottom:766.905000px;}
.y5d_c00472{bottom:767.130000px;}
.y5c_c00472{bottom:767.325000px;}
.y5b_c00472{bottom:768.405000px;}
.y59_c00472{bottom:769.470000px;}
.y55_c00472{bottom:785.745000px;}
.y57_c00472{bottom:786.405000px;}
.y56_c00472{bottom:786.630000px;}
.y52_c00472{bottom:787.470000px;}
.y54_c00472{bottom:787.905000px;}
.y53_c00472{bottom:788.970000px;}
.y4f_c00472{bottom:804.405000px;}
.y51_c00472{bottom:805.245000px;}
.y50_c00472{bottom:806.325000px;}
.y4d_c00472{bottom:807.405000px;}
.y4e_c00472{bottom:807.630000px;}
.y47_c00472{bottom:824.745000px;}
.y4a_c00472{bottom:825.825000px;}
.y49_c00472{bottom:826.470000px;}
.y48_c00472{bottom:826.905000px;}
.y4b_c00472{bottom:827.130000px;}
.y4c_c00472{bottom:827.970000px;}
.y44_c00472{bottom:843.405000px;}
.y46_c00472{bottom:844.245000px;}
.y45_c00472{bottom:845.130000px;}
.y42_c00472{bottom:845.325000px;}
.y40_c00472{bottom:845.970000px;}
.y41_c00472{bottom:846.405000px;}
.y43_c00472{bottom:847.470000px;}
.y3e_c00472{bottom:862.905000px;}
.y3f_c00472{bottom:864.630000px;}
.y3c_c00472{bottom:865.245000px;}
.y3d_c00472{bottom:865.905000px;}
.y3b_c00472{bottom:867.405000px;}
.y3a_c00472{bottom:880.905000px;}
.y36_c00472{bottom:884.745000px;}
.y39_c00472{bottom:885.405000px;}
.y38_c00472{bottom:885.630000px;}
.y37_c00472{bottom:886.470000px;}
.y35_c00472{bottom:886.905000px;}
.y32_c00472{bottom:901.905000px;}
.y33_c00472{bottom:902.745000px;}
.y2e_c00472{bottom:903.405000px;}
.y31_c00472{bottom:904.245000px;}
.y34_c00472{bottom:904.905000px;}
.y30_c00472{bottom:905.130000px;}
.y2f_c00472{bottom:905.970000px;}
.y2d_c00472{bottom:906.405000px;}
.y2a_c00472{bottom:921.405000px;}
.y2b_c00472{bottom:923.745000px;}
.y2c_c00472{bottom:924.405000px;}
.y29_c00472{bottom:925.905000px;}
.y28_c00472{bottom:926.970000px;}
.y24_c00472{bottom:943.245000px;}
.y25_c00472{bottom:944.325000px;}
.y27_c00472{bottom:944.970000px;}
.y26_c00472{bottom:945.405000px;}
.y23_c00472{bottom:961.245000px;}
.y22_c00472{bottom:962.745000px;}
.y20_c00472{bottom:964.905000px;}
.y21_c00472{bottom:965.970000px;}
.y1f_c00472{bottom:982.245000px;}
.y1d_c00472{bottom:983.325000px;}
.y1e_c00472{bottom:983.970000px;}
.y1c_c00472{bottom:984.405000px;}
.y1b_c00472{bottom:985.470000px;}
.y19_c00472{bottom:1000.470000px;}
.y18_c00472{bottom:1000.905000px;}
.y14_c00472{bottom:1001.745000px;}
.y1a_c00472{bottom:1003.470000px;}
.y15_c00472{bottom:1003.905000px;}
.y16_c00472{bottom:1004.130000px;}
.y17_c00472{bottom:1004.970000px;}
.y11_c00472{bottom:1021.245000px;}
.y13_c00472{bottom:1022.130000px;}
.yf_c00472{bottom:1023.405000px;}
.y10_c00472{bottom:1023.630000px;}
.y12_c00472{bottom:1024.470000px;}
.yd_c00472{bottom:1040.745000px;}
.ye_c00472{bottom:1040.970000px;}
.ya_c00472{bottom:1041.825000px;}
.yb_c00472{bottom:1042.905000px;}
.yc_c00472{bottom:1043.130000px;}
.y8_c00472{bottom:1059.405000px;}
.y7_c00472{bottom:1059.825000px;}
.y4_c00472{bottom:1061.745000px;}
.y5_c00472{bottom:1062.405000px;}
.y9_c00472{bottom:1062.630000px;}
.y6_c00472{bottom:1063.470000px;}
.y3_c00472{bottom:1063.905000px;}
.y2_c00472{bottom:1098.405000px;}
.y1_c00472{bottom:1100.550000px;}
.h8_c00472{height:4.206533px;}
.h6_c00472{height:23.025234px;}
.h1_c00472{height:25.091602px;}
.h4_c00472{height:31.364502px;}
.h2_c00472{height:35.571035px;}
.h5_c00472{height:39.777568px;}
.h3_c00472{height:43.910303px;}
.h7_c00472{height:47.571035px;}
.h9_c00472{height:48.116836px;}
.h0_c00472{height:1335.000000px;}
.w0_c00472{width:880.500000px;}
.x0_c00472{left:0.000000px;}
.x3_c00472{left:151.920000px;}
.x107_c00472{left:166.500000px;}
.xc5_c00472{left:168.000000px;}
.x3c_c00472{left:169.500000px;}
.x34_c00472{left:172.920000px;}
.xd9_c00472{left:175.920000px;}
.x4e_c00472{left:180.420000px;}
.x111_c00472{left:181.500000px;}
.xf3_c00472{left:184.920000px;}
.x3d_c00472{left:186.000000px;}
.x91_c00472{left:187.080000px;}
.x45_c00472{left:188.580000px;}
.x4_c00472{left:190.920000px;}
.xc6_c00472{left:192.000000px;}
.xdd_c00472{left:193.920000px;}
.x60_c00472{left:195.000000px;}
.xc2_c00472{left:196.500000px;}
.xe3_c00472{left:198.000000px;}
.x10_c00472{left:201.000000px;}
.x69_c00472{left:202.500000px;}
.x104_c00472{left:203.580000px;}
.x26_c00472{left:205.080000px;}
.x7c_c00472{left:208.920000px;}
.xaa_c00472{left:210.000000px;}
.xf4_c00472{left:211.500000px;}
.xb7_c00472{left:214.080000px;}
.x5_c00472{left:217.500000px;}
.x82_c00472{left:219.000000px;}
.x4f_c00472{left:220.500000px;}
.x9a_c00472{left:223.500000px;}
.xfe_c00472{left:228.420000px;}
.xab_c00472{left:229.920000px;}
.x7d_c00472{left:231.000000px;}
.x1c_c00472{left:234.000000px;}
.x27_c00472{left:235.500000px;}
.xed_c00472{left:237.000000px;}
.xc7_c00472{left:238.080000px;}
.x11_c00472{left:241.500000px;}
.x35_c00472{left:243.000000px;}
.xb8_c00472{left:244.920000px;}
.xf5_c00472{left:247.080000px;}
.x1d_c00472{left:248.580000px;}
.xa3_c00472{left:252.000000px;}
.xda_c00472{left:253.500000px;}
.xe7_c00472{left:255.420000px;}
.x83_c00472{left:256.500000px;}
.xcc_c00472{left:258.000000px;}
.x6a_c00472{left:259.500000px;}
.xf8_c00472{left:261.000000px;}
.xc8_c00472{left:262.920000px;}
.xfc_c00472{left:264.000000px;}
.xdb_c00472{left:268.500000px;}
.x61_c00472{left:269.580000px;}
.x46_c00472{left:271.500000px;}
.x36_c00472{left:274.920000px;}
.x50_c00472{left:276.000000px;}
.x72_c00472{left:277.500000px;}
.x12_c00472{left:280.500000px;}
.x84_c00472{left:283.920000px;}
.xa4_c00472{left:285.000000px;}
.x110_c00472{left:286.920000px;}
.xff_c00472{left:288.000000px;}
.xd2_c00472{left:291.420000px;}
.x92_c00472{left:292.500000px;}
.x28_c00472{left:294.420000px;}
.x8b_c00472{left:295.500000px;}
.x51_c00472{left:296.580000px;}
.x57_c00472{left:303.000000px;}
.x9b_c00472{left:306.420000px;}
.xac_c00472{left:308.580000px;}
.x93_c00472{left:310.500000px;}
.x6_c00472{left:311.580000px;}
.x29_c00472{left:313.920000px;}
.x112_c00472{left:315.000000px;}
.xb9_c00472{left:317.580000px;}
.xde_c00472{left:319.920000px;}
.x58_c00472{left:322.920000px;}
.x105_c00472{left:325.080000px;}
.x100_c00472{left:327.420000px;}
.x47_c00472{left:328.920000px;}
.x7e_c00472{left:331.920000px;}
.x94_c00472{left:333.420000px;}
.xd3_c00472{left:334.500000px;}
.x37_c00472{left:336.000000px;}
.xba_c00472{left:337.500000px;}
.xf9_c00472{left:339.000000px;}
.x62_c00472{left:341.580000px;}
.x73_c00472{left:343.920000px;}
.x2a_c00472{left:346.500000px;}
.xe8_c00472{left:348.000000px;}
.xbb_c00472{left:349.920000px;}
.xd4_c00472{left:351.000000px;}
.x59_c00472{left:354.000000px;}
.x3e_c00472{left:355.920000px;}
.x7_c00472{left:357.000000px;}
.xc9_c00472{left:358.080000px;}
.x6b_c00472{left:361.080000px;}
.x8c_c00472{left:363.420000px;}
.x2b_c00472{left:364.500000px;}
.x1e_c00472{left:367.080000px;}
.x10d_c00472{left:369.420000px;}
.x74_c00472{left:372.000000px;}
.x85_c00472{left:375.420000px;}
.x13_c00472{left:378.420000px;}
.x8_c00472{left:379.500000px;}
.xad_c00472{left:381.420000px;}
.x52_c00472{left:382.500000px;}
.x1f_c00472{left:384.420000px;}
.x95_c00472{left:390.000000px;}
.x8d_c00472{left:391.500000px;}
.xa5_c00472{left:393.420000px;}
.xee_c00472{left:394.500000px;}
.xfa_c00472{left:395.580000px;}
.x9c_c00472{left:397.080000px;}
.xb2_c00472{left:399.000000px;}
.x106_c00472{left:400.080000px;}
.xbc_c00472{left:402.000000px;}
.x86_c00472{left:403.500000px;}
.x1_c00472{left:406.500000px;}
.xdf_c00472{left:408.420000px;}
.x20_c00472{left:409.500000px;}
.xcd_c00472{left:411.000000px;}
.x14_c00472{left:412.500000px;}
.x2c_c00472{left:414.420000px;}
.x9d_c00472{left:415.500000px;}
.x75_c00472{left:418.920000px;}
.x101_c00472{left:420.000000px;}
.x38_c00472{left:421.500000px;}
.xd0_c00472{left:424.080000px;}
.xbd_c00472{left:427.920000px;}
.x15_c00472{left:430.080000px;}
.xca_c00472{left:432.000000px;}
.x5a_c00472{left:436.920000px;}
.xe0_c00472{left:438.000000px;}
.xc3_c00472{left:439.080000px;}
.x7f_c00472{left:442.500000px;}
.xa6_c00472{left:445.080000px;}
.x76_c00472{left:447.000000px;}
.x6c_c00472{left:448.920000px;}
.x2d_c00472{left:450.420000px;}
.xae_c00472{left:453.000000px;}
.xe9_c00472{left:454.920000px;}
.x53_c00472{left:456.420000px;}
.xc4_c00472{left:457.920000px;}
.x9e_c00472{left:459.420000px;}
.x108_c00472{left:460.500000px;}
.xe4_c00472{left:462.420000px;}
.x9_c00472{left:463.920000px;}
.x8e_c00472{left:465.000000px;}
.x48_c00472{left:466.500000px;}
.x39_c00472{left:467.580000px;}
.x63_c00472{left:469.500000px;}
.xb3_c00472{left:472.500000px;}
.x3f_c00472{left:474.000000px;}
.x87_c00472{left:475.500000px;}
.x2e_c00472{left:477.000000px;}
.x77_c00472{left:478.080000px;}
.x21_c00472{left:484.080000px;}
.x49_c00472{left:486.420000px;}
.xe5_c00472{left:489.000000px;}
.xe1_c00472{left:492.420000px;}
.x88_c00472{left:493.920000px;}
.x9f_c00472{left:495.000000px;}
.x5b_c00472{left:498.420000px;}
.xef_c00472{left:499.500000px;}
.x109_c00472{left:500.580000px;}
.x6d_c00472{left:503.580000px;}
.x40_c00472{left:507.000000px;}
.xa_c00472{left:508.920000px;}
.x96_c00472{left:511.080000px;}
.x4a_c00472{left:513.000000px;}
.xce_c00472{left:515.580000px;}
.xa7_c00472{left:517.920000px;}
.x16_c00472{left:519.420000px;}
.xa0_c00472{left:520.500000px;}
.x2f_c00472{left:522.000000px;}
.xfd_c00472{left:523.275000px;}
.x8f_c00472{left:526.500000px;}
.x78_c00472{left:527.580000px;}
.x113_c00472{left:530.580000px;}
.xd1_c00472{left:532.080000px;}
.x10a_c00472{left:534.000000px;}
.xea_c00472{left:535.500000px;}
.xb_c00472{left:537.000000px;}
.x6e_c00472{left:538.500000px;}
.x64_c00472{left:539.580000px;}
.x4b_c00472{left:543.000000px;}
.x17_c00472{left:544.920000px;}
.x22_c00472{left:546.000000px;}
.x102_c00472{left:547.080000px;}
.xeb_c00472{left:550.500000px;}
.x41_c00472{left:555.000000px;}
.x10e_c00472{left:556.080000px;}
.xcb_c00472{left:559.920000px;}
.x65_c00472{left:561.420000px;}
.x10b_c00472{left:562.500000px;}
.xb4_c00472{left:564.000000px;}
.xbe_c00472{left:565.500000px;}
.x79_c00472{left:567.000000px;}
.x90_c00472{left:568.500000px;}
.xec_c00472{left:570.420000px;}
.x30_c00472{left:574.080000px;}
.x23_c00472{left:576.000000px;}
.xaf_c00472{left:577.920000px;}
.x80_c00472{left:580.920000px;}
.x5c_c00472{left:583.500000px;}
.x42_c00472{left:585.420000px;}
.x3a_c00472{left:586.500000px;}
.xd5_c00472{left:588.420000px;}
.x66_c00472{left:589.920000px;}
.xbf_c00472{left:591.000000px;}
.x31_c00472{left:592.920000px;}
.x10c_c00472{left:597.000000px;}
.xf6_c00472{left:598.080000px;}
.x18_c00472{left:603.000000px;}
.x10f_c00472{left:605.775000px;}
.x5d_c00472{left:607.920000px;}
.xe2_c00472{left:609.000000px;}
.x89_c00472{left:610.920000px;}
.x54_c00472{left:612.420000px;}
.x43_c00472{left:613.500000px;}
.xa1_c00472{left:615.420000px;}
.xf0_c00472{left:616.500000px;}
.x7a_c00472{left:617.580000px;}
.x32_c00472{left:619.080000px;}
.xc_c00472{left:621.000000px;}
.xcf_c00472{left:622.080000px;}
.xb5_c00472{left:624.420000px;}
.x97_c00472{left:625.920000px;}
.x6f_c00472{left:627.420000px;}
.xfb_c00472{left:628.920000px;}
.xd7_c00472{left:631.500000px;}
.x81_c00472{left:635.580000px;}
.x8a_c00472{left:637.500000px;}
.x55_c00472{left:639.000000px;}
.xa2_c00472{left:640.080000px;}
.xe6_c00472{left:642.000000px;}
.xdc_c00472{left:643.920000px;}
.x4c_c00472{left:645.000000px;}
.x19_c00472{left:647.580000px;}
.x3b_c00472{left:649.500000px;}
.x5e_c00472{left:651.420000px;}
.x70_c00472{left:654.000000px;}
.xf7_c00472{left:655.500000px;}
.xd_c00472{left:657.000000px;}
.x67_c00472{left:660.420000px;}
.xf1_c00472{left:661.500000px;}
.x24_c00472{left:662.580000px;}
.x1a_c00472{left:664.920000px;}
.x98_c00472{left:666.420000px;}
.x7b_c00472{left:669.000000px;}
.xb0_c00472{left:670.500000px;}
.xc0_c00472{left:672.000000px;}
.xe_c00472{left:673.920000px;}
.xa8_c00472{left:678.000000px;}
.xb6_c00472{left:679.920000px;}
.x44_c00472{left:681.000000px;}
.xf2_c00472{left:682.080000px;}
.xd8_c00472{left:684.000000px;}
.x56_c00472{left:685.500000px;}
.x5f_c00472{left:687.000000px;}
.x68_c00472{left:690.000000px;}
.x1b_c00472{left:691.500000px;}
.x99_c00472{left:692.580000px;}
.xa9_c00472{left:696.000000px;}
.x4d_c00472{left:697.920000px;}
.xb1_c00472{left:699.000000px;}
.x103_c00472{left:700.500000px;}
.xf_c00472{left:703.080000px;}
.x2_c00472{left:705.000000px;}
.x71_c00472{left:706.500000px;}
.x25_c00472{left:708.000000px;}
.xc1_c00472{left:713.580000px;}
.x33_c00472{left:715.500000px;}
.xd6_c00472{left:718.500000px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.v1_c00472{vertical-align:10.666667pt;}
.ls0_c00472{letter-spacing:0.000000pt;}
.ws0_c00472{word-spacing:-15.012693pt;}
.ws1_c00472{word-spacing:-8.192542pt;}
.ws2_c00472{word-spacing:-7.714337pt;}
.ws3_c00472{word-spacing:-5.279994pt;}
.ws5_c00472{word-spacing:0.000000pt;}
.ws4_c00472{word-spacing:6.749592pt;}
._1_c00472{width:2.584717pt;}
._0_c00472{width:5.976931pt;}
.fs6_c00472{font-size:3.040000pt;}
.fs5_c00472{font-size:16.640000pt;}
.fs0_c00472{font-size:18.133333pt;}
.fs3_c00472{font-size:22.666667pt;}
.fs1_c00472{font-size:25.706667pt;}
.fs4_c00472{font-size:28.746667pt;}
.fs2_c00472{font-size:31.733333pt;}
.fs7_c00472{font-size:34.773333pt;}
.y0_c00472{bottom:0.000000pt;}
.yf2_c00472{bottom:222.826667pt;}
.yee_c00472{bottom:223.773333pt;}
.yf1_c00472{bottom:225.106667pt;}
.yec_c00472{bottom:225.693333pt;}
.yed_c00472{bottom:225.893333pt;}
.yef_c00472{bottom:226.640000pt;}
.yf0_c00472{bottom:227.026667pt;}
.yea_c00472{bottom:240.360000pt;}
.yeb_c00472{bottom:242.440000pt;}
.ye6_c00472{bottom:243.026667pt;}
.ye9_c00472{bottom:243.226667pt;}
.ye8_c00472{bottom:243.973333pt;}
.ye7_c00472{bottom:244.360000pt;}
.ye4_c00472{bottom:259.773333pt;}
.ye5_c00472{bottom:260.560000pt;}
.ye3_c00472{bottom:261.306667pt;}
.ye2_c00472{bottom:261.693333pt;}
.ye1_c00472{bottom:276.360000pt;}
.yde_c00472{bottom:277.106667pt;}
.ye0_c00472{bottom:278.066667pt;}
.ydd_c00472{bottom:279.026667pt;}
.ydf_c00472{bottom:279.226667pt;}
.ydc_c00472{bottom:279.973333pt;}
.yd9_c00472{bottom:293.693333pt;}
.yda_c00472{bottom:294.440000pt;}
.ydb_c00472{bottom:295.400000pt;}
.yd7_c00472{bottom:296.360000pt;}
.yd8_c00472{bottom:296.560000pt;}
.yd0_c00472{bottom:311.773333pt;}
.yd4_c00472{bottom:312.560000pt;}
.yd6_c00472{bottom:312.733333pt;}
.yd3_c00472{bottom:313.306667pt;}
.yd2_c00472{bottom:313.693333pt;}
.yd1_c00472{bottom:313.893333pt;}
.yd5_c00472{bottom:314.640000pt;}
.yce_c00472{bottom:329.106667pt;}
.ycc_c00472{bottom:330.066667pt;}
.ycd_c00472{bottom:331.026667pt;}
.ycf_c00472{bottom:331.973333pt;}
.ycb_c00472{bottom:346.440000pt;}
.yc9_c00472{bottom:346.826667pt;}
.yc8_c00472{bottom:347.773333pt;}
.yca_c00472{bottom:348.360000pt;}
.yc7_c00472{bottom:348.560000pt;}
.yc6_c00472{bottom:349.693333pt;}
.yc5_c00472{bottom:363.773333pt;}
.yc4_c00472{bottom:365.106667pt;}
.yc0_c00472{bottom:365.893333pt;}
.yc2_c00472{bottom:366.066667pt;}
.yc3_c00472{bottom:366.640000pt;}
.yc1_c00472{bottom:367.026667pt;}
.ybd_c00472{bottom:381.106667pt;}
.yba_c00472{bottom:382.066667pt;}
.ybc_c00472{bottom:382.440000pt;}
.ybf_c00472{bottom:383.026667pt;}
.ybb_c00472{bottom:383.226667pt;}
.ybe_c00472{bottom:383.973333pt;}
.yb7_c00472{bottom:384.360000pt;}
.yb8_c00472{bottom:384.373333pt;}
.yb9_c00472{bottom:385.306667pt;}
.yb4_c00472{bottom:399.773333pt;}
.yb3_c00472{bottom:400.560000pt;}
.yb6_c00472{bottom:401.306667pt;}
.yb5_c00472{bottom:401.693333pt;}
.yb2_c00472{bottom:416.360000pt;}
.yb0_c00472{bottom:417.106667pt;}
.yaf_c00472{bottom:419.026667pt;}
.yb1_c00472{bottom:419.226667pt;}
.yac_c00472{bottom:434.440000pt;}
.yae_c00472{bottom:435.026667pt;}
.yad_c00472{bottom:435.226667pt;}
.yab_c00472{bottom:436.360000pt;}
.ya9_c00472{bottom:451.773333pt;}
.yaa_c00472{bottom:452.560000pt;}
.ya6_c00472{bottom:453.106667pt;}
.ya7_c00472{bottom:453.693333pt;}
.ya8_c00472{bottom:453.893333pt;}
.ya5_c00472{bottom:455.026667pt;}
.ya4_c00472{bottom:469.106667pt;}
.ya1_c00472{bottom:470.066667pt;}
.ya2_c00472{bottom:470.440000pt;}
.ya3_c00472{bottom:471.026667pt;}
.y9f_c00472{bottom:471.226667pt;}
.ya0_c00472{bottom:471.973333pt;}
.y9e_c00472{bottom:472.360000pt;}
.y9b_c00472{bottom:486.440000pt;}
.y9c_c00472{bottom:487.773333pt;}
.y9d_c00472{bottom:488.360000pt;}
.y98_c00472{bottom:488.733333pt;}
.y9a_c00472{bottom:489.306667pt;}
.y99_c00472{bottom:489.693333pt;}
.y96_c00472{bottom:503.026667pt;}
.y95_c00472{bottom:504.360000pt;}
.y93_c00472{bottom:505.106667pt;}
.y97_c00472{bottom:505.693333pt;}
.y94_c00472{bottom:505.893333pt;}
.y92_c00472{bottom:507.026667pt;}
.y8f_c00472{bottom:522.440000pt;}
.y91_c00472{bottom:523.026667pt;}
.y90_c00472{bottom:523.226667pt;}
.y8e_c00472{bottom:523.400000pt;}
.y8d_c00472{bottom:524.360000pt;}
.y87_c00472{bottom:539.773333pt;}
.y8c_c00472{bottom:540.560000pt;}
.y8b_c00472{bottom:541.693333pt;}
.y88_c00472{bottom:541.893333pt;}
.y8a_c00472{bottom:542.640000pt;}
.y89_c00472{bottom:543.026667pt;}
.y84_c00472{bottom:557.693333pt;}
.y86_c00472{bottom:559.026667pt;}
.y85_c00472{bottom:559.973333pt;}
.y83_c00472{bottom:560.360000pt;}
.y82_c00472{bottom:575.773333pt;}
.y81_c00472{bottom:577.306667pt;}
.y7f_c00472{bottom:577.693333pt;}
.y80_c00472{bottom:578.640000pt;}
.y7d_c00472{bottom:592.360000pt;}
.y77_c00472{bottom:593.106667pt;}
.y7e_c00472{bottom:593.693333pt;}
.y79_c00472{bottom:594.066667pt;}
.y7a_c00472{bottom:594.640000pt;}
.y78_c00472{bottom:595.026667pt;}
.y7b_c00472{bottom:595.226667pt;}
.y7c_c00472{bottom:595.973333pt;}
.y73_c00472{bottom:609.693333pt;}
.y6f_c00472{bottom:610.440000pt;}
.y75_c00472{bottom:611.400000pt;}
.y76_c00472{bottom:611.973333pt;}
.y72_c00472{bottom:612.360000pt;}
.y74_c00472{bottom:612.560000pt;}
.y71_c00472{bottom:613.306667pt;}
.y70_c00472{bottom:613.693333pt;}
.y6d_c00472{bottom:627.773333pt;}
.y6b_c00472{bottom:628.733333pt;}
.y6e_c00472{bottom:629.306667pt;}
.y6a_c00472{bottom:629.693333pt;}
.y6c_c00472{bottom:630.640000pt;}
.y69_c00472{bottom:645.106667pt;}
.y67_c00472{bottom:646.066667pt;}
.y65_c00472{bottom:647.026667pt;}
.y68_c00472{bottom:647.973333pt;}
.y66_c00472{bottom:648.360000pt;}
.y60_c00472{bottom:661.693333pt;}
.y61_c00472{bottom:662.440000pt;}
.y62_c00472{bottom:663.773333pt;}
.y5f_c00472{bottom:664.360000pt;}
.y63_c00472{bottom:664.560000pt;}
.y64_c00472{bottom:665.306667pt;}
.y58_c00472{bottom:679.026667pt;}
.y5a_c00472{bottom:681.106667pt;}
.y5e_c00472{bottom:681.693333pt;}
.y5d_c00472{bottom:681.893333pt;}
.y5c_c00472{bottom:682.066667pt;}
.y5b_c00472{bottom:683.026667pt;}
.y59_c00472{bottom:683.973333pt;}
.y55_c00472{bottom:698.440000pt;}
.y57_c00472{bottom:699.026667pt;}
.y56_c00472{bottom:699.226667pt;}
.y52_c00472{bottom:699.973333pt;}
.y54_c00472{bottom:700.360000pt;}
.y53_c00472{bottom:701.306667pt;}
.y4f_c00472{bottom:715.026667pt;}
.y51_c00472{bottom:715.773333pt;}
.y50_c00472{bottom:716.733333pt;}
.y4d_c00472{bottom:717.693333pt;}
.y4e_c00472{bottom:717.893333pt;}
.y47_c00472{bottom:733.106667pt;}
.y4a_c00472{bottom:734.066667pt;}
.y49_c00472{bottom:734.640000pt;}
.y48_c00472{bottom:735.026667pt;}
.y4b_c00472{bottom:735.226667pt;}
.y4c_c00472{bottom:735.973333pt;}
.y44_c00472{bottom:749.693333pt;}
.y46_c00472{bottom:750.440000pt;}
.y45_c00472{bottom:751.226667pt;}
.y42_c00472{bottom:751.400000pt;}
.y40_c00472{bottom:751.973333pt;}
.y41_c00472{bottom:752.360000pt;}
.y43_c00472{bottom:753.306667pt;}
.y3e_c00472{bottom:767.026667pt;}
.y3f_c00472{bottom:768.560000pt;}
.y3c_c00472{bottom:769.106667pt;}
.y3d_c00472{bottom:769.693333pt;}
.y3b_c00472{bottom:771.026667pt;}
.y3a_c00472{bottom:783.026667pt;}
.y36_c00472{bottom:786.440000pt;}
.y39_c00472{bottom:787.026667pt;}
.y38_c00472{bottom:787.226667pt;}
.y37_c00472{bottom:787.973333pt;}
.y35_c00472{bottom:788.360000pt;}
.y32_c00472{bottom:801.693333pt;}
.y33_c00472{bottom:802.440000pt;}
.y2e_c00472{bottom:803.026667pt;}
.y31_c00472{bottom:803.773333pt;}
.y34_c00472{bottom:804.360000pt;}
.y30_c00472{bottom:804.560000pt;}
.y2f_c00472{bottom:805.306667pt;}
.y2d_c00472{bottom:805.693333pt;}
.y2a_c00472{bottom:819.026667pt;}
.y2b_c00472{bottom:821.106667pt;}
.y2c_c00472{bottom:821.693333pt;}
.y29_c00472{bottom:823.026667pt;}
.y28_c00472{bottom:823.973333pt;}
.y24_c00472{bottom:838.440000pt;}
.y25_c00472{bottom:839.400000pt;}
.y27_c00472{bottom:839.973333pt;}
.y26_c00472{bottom:840.360000pt;}
.y23_c00472{bottom:854.440000pt;}
.y22_c00472{bottom:855.773333pt;}
.y20_c00472{bottom:857.693333pt;}
.y21_c00472{bottom:858.640000pt;}
.y1f_c00472{bottom:873.106667pt;}
.y1d_c00472{bottom:874.066667pt;}
.y1e_c00472{bottom:874.640000pt;}
.y1c_c00472{bottom:875.026667pt;}
.y1b_c00472{bottom:875.973333pt;}
.y19_c00472{bottom:889.306667pt;}
.y18_c00472{bottom:889.693333pt;}
.y14_c00472{bottom:890.440000pt;}
.y1a_c00472{bottom:891.973333pt;}
.y15_c00472{bottom:892.360000pt;}
.y16_c00472{bottom:892.560000pt;}
.y17_c00472{bottom:893.306667pt;}
.y11_c00472{bottom:907.773333pt;}
.y13_c00472{bottom:908.560000pt;}
.yf_c00472{bottom:909.693333pt;}
.y10_c00472{bottom:909.893333pt;}
.y12_c00472{bottom:910.640000pt;}
.yd_c00472{bottom:925.106667pt;}
.ye_c00472{bottom:925.306667pt;}
.ya_c00472{bottom:926.066667pt;}
.yb_c00472{bottom:927.026667pt;}
.yc_c00472{bottom:927.226667pt;}
.y8_c00472{bottom:941.693333pt;}
.y7_c00472{bottom:942.066667pt;}
.y4_c00472{bottom:943.773333pt;}
.y5_c00472{bottom:944.360000pt;}
.y9_c00472{bottom:944.560000pt;}
.y6_c00472{bottom:945.306667pt;}
.y3_c00472{bottom:945.693333pt;}
.y2_c00472{bottom:976.360000pt;}
.y1_c00472{bottom:978.266667pt;}
.h8_c00472{height:3.739141pt;}
.h6_c00472{height:20.466875pt;}
.h1_c00472{height:22.303646pt;}
.h4_c00472{height:27.879557pt;}
.h2_c00472{height:31.618698pt;}
.h5_c00472{height:35.357839pt;}
.h3_c00472{height:39.031380pt;}
.h7_c00472{height:42.285365pt;}
.h9_c00472{height:42.770521pt;}
.h0_c00472{height:1186.666667pt;}
.w0_c00472{width:782.666667pt;}
.x0_c00472{left:0.000000pt;}
.x3_c00472{left:135.040000pt;}
.x107_c00472{left:148.000000pt;}
.xc5_c00472{left:149.333333pt;}
.x3c_c00472{left:150.666667pt;}
.x34_c00472{left:153.706667pt;}
.xd9_c00472{left:156.373333pt;}
.x4e_c00472{left:160.373333pt;}
.x111_c00472{left:161.333333pt;}
.xf3_c00472{left:164.373333pt;}
.x3d_c00472{left:165.333333pt;}
.x91_c00472{left:166.293333pt;}
.x45_c00472{left:167.626667pt;}
.x4_c00472{left:169.706667pt;}
.xc6_c00472{left:170.666667pt;}
.xdd_c00472{left:172.373333pt;}
.x60_c00472{left:173.333333pt;}
.xc2_c00472{left:174.666667pt;}
.xe3_c00472{left:176.000000pt;}
.x10_c00472{left:178.666667pt;}
.x69_c00472{left:180.000000pt;}
.x104_c00472{left:180.960000pt;}
.x26_c00472{left:182.293333pt;}
.x7c_c00472{left:185.706667pt;}
.xaa_c00472{left:186.666667pt;}
.xf4_c00472{left:188.000000pt;}
.xb7_c00472{left:190.293333pt;}
.x5_c00472{left:193.333333pt;}
.x82_c00472{left:194.666667pt;}
.x4f_c00472{left:196.000000pt;}
.x9a_c00472{left:198.666667pt;}
.xfe_c00472{left:203.040000pt;}
.xab_c00472{left:204.373333pt;}
.x7d_c00472{left:205.333333pt;}
.x1c_c00472{left:208.000000pt;}
.x27_c00472{left:209.333333pt;}
.xed_c00472{left:210.666667pt;}
.xc7_c00472{left:211.626667pt;}
.x11_c00472{left:214.666667pt;}
.x35_c00472{left:216.000000pt;}
.xb8_c00472{left:217.706667pt;}
.xf5_c00472{left:219.626667pt;}
.x1d_c00472{left:220.960000pt;}
.xa3_c00472{left:224.000000pt;}
.xda_c00472{left:225.333333pt;}
.xe7_c00472{left:227.040000pt;}
.x83_c00472{left:228.000000pt;}
.xcc_c00472{left:229.333333pt;}
.x6a_c00472{left:230.666667pt;}
.xf8_c00472{left:232.000000pt;}
.xc8_c00472{left:233.706667pt;}
.xfc_c00472{left:234.666667pt;}
.xdb_c00472{left:238.666667pt;}
.x61_c00472{left:239.626667pt;}
.x46_c00472{left:241.333333pt;}
.x36_c00472{left:244.373333pt;}
.x50_c00472{left:245.333333pt;}
.x72_c00472{left:246.666667pt;}
.x12_c00472{left:249.333333pt;}
.x84_c00472{left:252.373333pt;}
.xa4_c00472{left:253.333333pt;}
.x110_c00472{left:255.040000pt;}
.xff_c00472{left:256.000000pt;}
.xd2_c00472{left:259.040000pt;}
.x92_c00472{left:260.000000pt;}
.x28_c00472{left:261.706667pt;}
.x8b_c00472{left:262.666667pt;}
.x51_c00472{left:263.626667pt;}
.x57_c00472{left:269.333333pt;}
.x9b_c00472{left:272.373333pt;}
.xac_c00472{left:274.293333pt;}
.x93_c00472{left:276.000000pt;}
.x6_c00472{left:276.960000pt;}
.x29_c00472{left:279.040000pt;}
.x112_c00472{left:280.000000pt;}
.xb9_c00472{left:282.293333pt;}
.xde_c00472{left:284.373333pt;}
.x58_c00472{left:287.040000pt;}
.x105_c00472{left:288.960000pt;}
.x100_c00472{left:291.040000pt;}
.x47_c00472{left:292.373333pt;}
.x7e_c00472{left:295.040000pt;}
.x94_c00472{left:296.373333pt;}
.xd3_c00472{left:297.333333pt;}
.x37_c00472{left:298.666667pt;}
.xba_c00472{left:300.000000pt;}
.xf9_c00472{left:301.333333pt;}
.x62_c00472{left:303.626667pt;}
.x73_c00472{left:305.706667pt;}
.x2a_c00472{left:308.000000pt;}
.xe8_c00472{left:309.333333pt;}
.xbb_c00472{left:311.040000pt;}
.xd4_c00472{left:312.000000pt;}
.x59_c00472{left:314.666667pt;}
.x3e_c00472{left:316.373333pt;}
.x7_c00472{left:317.333333pt;}
.xc9_c00472{left:318.293333pt;}
.x6b_c00472{left:320.960000pt;}
.x8c_c00472{left:323.040000pt;}
.x2b_c00472{left:324.000000pt;}
.x1e_c00472{left:326.293333pt;}
.x10d_c00472{left:328.373333pt;}
.x74_c00472{left:330.666667pt;}
.x85_c00472{left:333.706667pt;}
.x13_c00472{left:336.373333pt;}
.x8_c00472{left:337.333333pt;}
.xad_c00472{left:339.040000pt;}
.x52_c00472{left:340.000000pt;}
.x1f_c00472{left:341.706667pt;}
.x95_c00472{left:346.666667pt;}
.x8d_c00472{left:348.000000pt;}
.xa5_c00472{left:349.706667pt;}
.xee_c00472{left:350.666667pt;}
.xfa_c00472{left:351.626667pt;}
.x9c_c00472{left:352.960000pt;}
.xb2_c00472{left:354.666667pt;}
.x106_c00472{left:355.626667pt;}
.xbc_c00472{left:357.333333pt;}
.x86_c00472{left:358.666667pt;}
.x1_c00472{left:361.333333pt;}
.xdf_c00472{left:363.040000pt;}
.x20_c00472{left:364.000000pt;}
.xcd_c00472{left:365.333333pt;}
.x14_c00472{left:366.666667pt;}
.x2c_c00472{left:368.373333pt;}
.x9d_c00472{left:369.333333pt;}
.x75_c00472{left:372.373333pt;}
.x101_c00472{left:373.333333pt;}
.x38_c00472{left:374.666667pt;}
.xd0_c00472{left:376.960000pt;}
.xbd_c00472{left:380.373333pt;}
.x15_c00472{left:382.293333pt;}
.xca_c00472{left:384.000000pt;}
.x5a_c00472{left:388.373333pt;}
.xe0_c00472{left:389.333333pt;}
.xc3_c00472{left:390.293333pt;}
.x7f_c00472{left:393.333333pt;}
.xa6_c00472{left:395.626667pt;}
.x76_c00472{left:397.333333pt;}
.x6c_c00472{left:399.040000pt;}
.x2d_c00472{left:400.373333pt;}
.xae_c00472{left:402.666667pt;}
.xe9_c00472{left:404.373333pt;}
.x53_c00472{left:405.706667pt;}
.xc4_c00472{left:407.040000pt;}
.x9e_c00472{left:408.373333pt;}
.x108_c00472{left:409.333333pt;}
.xe4_c00472{left:411.040000pt;}
.x9_c00472{left:412.373333pt;}
.x8e_c00472{left:413.333333pt;}
.x48_c00472{left:414.666667pt;}
.x39_c00472{left:415.626667pt;}
.x63_c00472{left:417.333333pt;}
.xb3_c00472{left:420.000000pt;}
.x3f_c00472{left:421.333333pt;}
.x87_c00472{left:422.666667pt;}
.x2e_c00472{left:424.000000pt;}
.x77_c00472{left:424.960000pt;}
.x21_c00472{left:430.293333pt;}
.x49_c00472{left:432.373333pt;}
.xe5_c00472{left:434.666667pt;}
.xe1_c00472{left:437.706667pt;}
.x88_c00472{left:439.040000pt;}
.x9f_c00472{left:440.000000pt;}
.x5b_c00472{left:443.040000pt;}
.xef_c00472{left:444.000000pt;}
.x109_c00472{left:444.960000pt;}
.x6d_c00472{left:447.626667pt;}
.x40_c00472{left:450.666667pt;}
.xa_c00472{left:452.373333pt;}
.x96_c00472{left:454.293333pt;}
.x4a_c00472{left:456.000000pt;}
.xce_c00472{left:458.293333pt;}
.xa7_c00472{left:460.373333pt;}
.x16_c00472{left:461.706667pt;}
.xa0_c00472{left:462.666667pt;}
.x2f_c00472{left:464.000000pt;}
.xfd_c00472{left:465.133333pt;}
.x8f_c00472{left:468.000000pt;}
.x78_c00472{left:468.960000pt;}
.x113_c00472{left:471.626667pt;}
.xd1_c00472{left:472.960000pt;}
.x10a_c00472{left:474.666667pt;}
.xea_c00472{left:476.000000pt;}
.xb_c00472{left:477.333333pt;}
.x6e_c00472{left:478.666667pt;}
.x64_c00472{left:479.626667pt;}
.x4b_c00472{left:482.666667pt;}
.x17_c00472{left:484.373333pt;}
.x22_c00472{left:485.333333pt;}
.x102_c00472{left:486.293333pt;}
.xeb_c00472{left:489.333333pt;}
.x41_c00472{left:493.333333pt;}
.x10e_c00472{left:494.293333pt;}
.xcb_c00472{left:497.706667pt;}
.x65_c00472{left:499.040000pt;}
.x10b_c00472{left:500.000000pt;}
.xb4_c00472{left:501.333333pt;}
.xbe_c00472{left:502.666667pt;}
.x79_c00472{left:504.000000pt;}
.x90_c00472{left:505.333333pt;}
.xec_c00472{left:507.040000pt;}
.x30_c00472{left:510.293333pt;}
.x23_c00472{left:512.000000pt;}
.xaf_c00472{left:513.706667pt;}
.x80_c00472{left:516.373333pt;}
.x5c_c00472{left:518.666667pt;}
.x42_c00472{left:520.373333pt;}
.x3a_c00472{left:521.333333pt;}
.xd5_c00472{left:523.040000pt;}
.x66_c00472{left:524.373333pt;}
.xbf_c00472{left:525.333333pt;}
.x31_c00472{left:527.040000pt;}
.x10c_c00472{left:530.666667pt;}
.xf6_c00472{left:531.626667pt;}
.x18_c00472{left:536.000000pt;}
.x10f_c00472{left:538.466667pt;}
.x5d_c00472{left:540.373333pt;}
.xe2_c00472{left:541.333333pt;}
.x89_c00472{left:543.040000pt;}
.x54_c00472{left:544.373333pt;}
.x43_c00472{left:545.333333pt;}
.xa1_c00472{left:547.040000pt;}
.xf0_c00472{left:548.000000pt;}
.x7a_c00472{left:548.960000pt;}
.x32_c00472{left:550.293333pt;}
.xc_c00472{left:552.000000pt;}
.xcf_c00472{left:552.960000pt;}
.xb5_c00472{left:555.040000pt;}
.x97_c00472{left:556.373333pt;}
.x6f_c00472{left:557.706667pt;}
.xfb_c00472{left:559.040000pt;}
.xd7_c00472{left:561.333333pt;}
.x81_c00472{left:564.960000pt;}
.x8a_c00472{left:566.666667pt;}
.x55_c00472{left:568.000000pt;}
.xa2_c00472{left:568.960000pt;}
.xe6_c00472{left:570.666667pt;}
.xdc_c00472{left:572.373333pt;}
.x4c_c00472{left:573.333333pt;}
.x19_c00472{left:575.626667pt;}
.x3b_c00472{left:577.333333pt;}
.x5e_c00472{left:579.040000pt;}
.x70_c00472{left:581.333333pt;}
.xf7_c00472{left:582.666667pt;}
.xd_c00472{left:584.000000pt;}
.x67_c00472{left:587.040000pt;}
.xf1_c00472{left:588.000000pt;}
.x24_c00472{left:588.960000pt;}
.x1a_c00472{left:591.040000pt;}
.x98_c00472{left:592.373333pt;}
.x7b_c00472{left:594.666667pt;}
.xb0_c00472{left:596.000000pt;}
.xc0_c00472{left:597.333333pt;}
.xe_c00472{left:599.040000pt;}
.xa8_c00472{left:602.666667pt;}
.xb6_c00472{left:604.373333pt;}
.x44_c00472{left:605.333333pt;}
.xf2_c00472{left:606.293333pt;}
.xd8_c00472{left:608.000000pt;}
.x56_c00472{left:609.333333pt;}
.x5f_c00472{left:610.666667pt;}
.x68_c00472{left:613.333333pt;}
.x1b_c00472{left:614.666667pt;}
.x99_c00472{left:615.626667pt;}
.xa9_c00472{left:618.666667pt;}
.x4d_c00472{left:620.373333pt;}
.xb1_c00472{left:621.333333pt;}
.x103_c00472{left:622.666667pt;}
.xf_c00472{left:624.960000pt;}
.x2_c00472{left:626.666667pt;}
.x71_c00472{left:628.000000pt;}
.x25_c00472{left:629.333333pt;}
.xc1_c00472{left:634.293333pt;}
.x33_c00472{left:636.000000pt;}
.xd6_c00472{left:638.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_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_effda3946cbc500a9ecc7601.woff2')format("woff");}.ff1_c00473{font-family:ff1_c00473;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc7_c00473{transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);}
.mcb_c00473{transform:matrix(0.244295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244295,0.000000,0.000000,0.250000,0,0);}
.m62_c00473{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m83_c00473{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m48_c00473{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m5b_c00473{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m66_c00473{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m6a_c00473{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m3b_c00473{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m2d_c00473{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.ma7_c00473{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00473{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m2c_c00473{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m20_c00473{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m74_c00473{transform:matrix(0.387653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387653,0.000000,0.000000,0.250000,0,0);}
.mcc_c00473{transform:matrix(0.388971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388971,0.000000,0.000000,0.250000,0,0);}
.m1c_c00473{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m3_c00473{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m69_c00473{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m1d_c00473{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m6e_c00473{transform:matrix(0.397623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397623,0.000000,0.000000,0.250000,0,0);}
.m31_c00473{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m6_c00473{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);}
.m81_c00473{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m61_c00473{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m96_c00473{transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);}
.m67_c00473{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m35_c00473{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m44_c00473{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m2_c00473{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m60_c00473{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m5d_c00473{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.maf_c00473{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.m17_c00473{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m72_c00473{transform:matrix(0.416976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416976,0.000000,0.000000,0.250000,0,0);}
.m4e_c00473{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m71_c00473{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m38_c00473{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m10_c00473{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m5c_c00473{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m93_c00473{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m19_c00473{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m70_c00473{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m5e_c00473{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m4c_c00473{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m4d_c00473{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m55_c00473{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m89_c00473{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m8c_c00473{transform:matrix(0.436722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436722,0.000000,0.000000,0.250000,0,0);}
.m2b_c00473{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m9e_c00473{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);}
.m52_c00473{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m6c_c00473{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m7a_c00473{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m4f_c00473{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m54_c00473{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m68_c00473{transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);}
.mab_c00473{transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);}
.m64_c00473{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m51_c00473{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m37_c00473{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m65_c00473{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m8b_c00473{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m5f_c00473{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m21_c00473{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m73_c00473{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m9b_c00473{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m49_c00473{transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);}
.mc2_c00473{transform:matrix(0.461538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461538,0.000000,0.000000,0.250000,0,0);}
.m8a_c00473{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.mb0_c00473{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.mbe_c00473{transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);}
.m1a_c00473{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.m50_c00473{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m8d_c00473{transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);}
.ma5_c00473{transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);}
.m4_c00473{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m7c_c00473{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m7b_c00473{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mb1_c00473{transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);}
.m57_c00473{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m77_c00473{transform:matrix(0.483193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483193,0.000000,0.000000,0.250000,0,0);}
.m23_c00473{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mb5_c00473{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m46_c00473{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m3d_c00473{transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);}
.m6b_c00473{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m84_c00473{transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);}
.m1_c00473{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m6d_c00473{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.ma9_c00473{transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);}
.m59_c00473{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);}
.m82_c00473{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m3e_c00473{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m7_c00473{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m78_c00473{transform:matrix(0.505102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505102,0.000000,0.000000,0.250000,0,0);}
.m1b_c00473{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m28_c00473{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m92_c00473{transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);}
.mc9_c00473{transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);}
.m16_c00473{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m2a_c00473{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m29_c00473{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.mc4_c00473{transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);}
.mb2_c00473{transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);}
.m3a_c00473{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m80_c00473{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m7d_c00473{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m1f_c00473{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m2e_c00473{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mc6_c00473{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.mb_c00473{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m1e_c00473{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m7f_c00473{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m8_c00473{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m11_c00473{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m26_c00473{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m45_c00473{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m5_c00473{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m40_c00473{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m2f_c00473{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m79_c00473{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m4b_c00473{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m3f_c00473{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m36_c00473{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m5a_c00473{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m24_c00473{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mad_c00473{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m47_c00473{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m22_c00473{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m27_c00473{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mae_c00473{transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);}
.m34_c00473{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m87_c00473{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.ma8_c00473{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.me_c00473{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m9_c00473{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.mb9_c00473{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m58_c00473{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m4a_c00473{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.md_c00473{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m30_c00473{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m7e_c00473{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m94_c00473{transform:matrix(0.575991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575991,0.000000,0.000000,0.250000,0,0);}
.m9d_c00473{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.m43_c00473{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m42_c00473{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m86_c00473{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m53_c00473{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m18_c00473{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m39_c00473{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.maa_c00473{transform:matrix(0.601322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601322,0.000000,0.000000,0.250000,0,0);}
.m14_c00473{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m75_c00473{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m97_c00473{transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);}
.ma0_c00473{transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);}
.m95_c00473{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m13_c00473{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m99_c00473{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.ma_c00473{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m91_c00473{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m8f_c00473{transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);}
.m88_c00473{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mc3_c00473{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m6f_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);}
.m15_c00473{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mc_c00473{transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);}
.m0_c00473{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.mb3_c00473{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.m98_c00473{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m63_c00473{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m3c_c00473{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m9f_c00473{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m85_c00473{transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);}
.mc5_c00473{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.m9a_c00473{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mc8_c00473{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.mb7_c00473{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.m8e_c00473{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m90_c00473{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);}
.mc0_c00473{transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);}
.mc1_c00473{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.mb6_c00473{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m12_c00473{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mac_c00473{transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);}
.m25_c00473{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mba_c00473{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.mbf_c00473{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.ma1_c00473{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m41_c00473{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mbd_c00473{transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);}
.mca_c00473{transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);}
.m32_c00473{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.ma3_c00473{transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);}
.m56_c00473{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.mf_c00473{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m76_c00473{transform:matrix(0.802885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802885,0.000000,0.000000,0.250000,0,0);}
.mb4_c00473{transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);}
.mbb_c00473{transform:matrix(0.849119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.849119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.849119,0.000000,0.000000,0.250000,0,0);}
.ma6_c00473{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mb8_c00473{transform:matrix(0.881057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.881057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.881057,0.000000,0.000000,0.250000,0,0);}
.mbc_c00473{transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);}
.ma2_c00473{transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);}
.ma4_c00473{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.m9c_c00473{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.v1_c00473{vertical-align:-6.000000px;}
.v0_c00473{vertical-align:0.000000px;}
.ls2_c00473{letter-spacing:0.000000px;}
.ls1_c00473{letter-spacing:18.591909px;}
.ls0_c00473{letter-spacing:71.004203px;}
.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;}
}
.ws3_c00473{word-spacing:-78.958283px;}
.wsa_c00473{word-spacing:-20.589189px;}
.ws1_c00473{word-spacing:-4.994764px;}
.ws0_c00473{word-spacing:-3.929642px;}
.ws6_c00473{word-spacing:-1.885842px;}
.ws11_c00473{word-spacing:0.000000px;}
.ws8_c00473{word-spacing:16.046552px;}
.ws5_c00473{word-spacing:16.594629px;}
.ws10_c00473{word-spacing:32.801645px;}
.wsf_c00473{word-spacing:35.644341px;}
.wsb_c00473{word-spacing:37.647282px;}
.ws2_c00473{word-spacing:42.369370px;}
.wsd_c00473{word-spacing:43.123678px;}
.ws9_c00473{word-spacing:50.372388px;}
.wsc_c00473{word-spacing:60.638400px;}
.ws7_c00473{word-spacing:62.015851px;}
.wse_c00473{word-spacing:69.032182px;}
.ws4_c00473{word-spacing:96.477382px;}
._0_c00473{margin-left:-71.004203px;}
._2_c00473{margin-left:-18.591909px;}
._1_c00473{width:19.688063px;}
._4_c00473{width:43.598421px;}
._3_c00473{width:47.604304px;}
.fc0_c00473{color:transparent;}
.fs8_c00473{font-size:3.420000px;}
.fs9_c00473{font-size:11.880000px;}
.fs7_c00473{font-size:13.620000px;}
.fs5_c00473{font-size:18.720000px;}
.fs0_c00473{font-size:20.400000px;}
.fs4_c00473{font-size:25.500000px;}
.fs1_c00473{font-size:28.920000px;}
.fs3_c00473{font-size:32.340000px;}
.fs2_c00473{font-size:35.700000px;}
.fs6_c00473{font-size:39.120000px;}
.y0_c00473{bottom:0.000000px;}
.y5a_c00473{bottom:253.245000px;}
.y58_c00473{bottom:272.745000px;}
.y57_c00473{bottom:273.630000px;}
.y59_c00473{bottom:273.825000px;}
.y56_c00473{bottom:274.905000px;}
.y54_c00473{bottom:292.245000px;}
.y55_c00473{bottom:293.745000px;}
.y51_c00473{bottom:294.405000px;}
.y53_c00473{bottom:294.630000px;}
.y52_c00473{bottom:295.905000px;}
.y4f_c00473{bottom:311.745000px;}
.y4e_c00473{bottom:312.825000px;}
.y4c_c00473{bottom:313.245000px;}
.y4b_c00473{bottom:313.905000px;}
.y50_c00473{bottom:314.970000px;}
.y4d_c00473{bottom:315.405000px;}
.y46_c00473{bottom:331.245000px;}
.y4a_c00473{bottom:332.325000px;}
.y48_c00473{bottom:332.745000px;}
.y47_c00473{bottom:333.405000px;}
.y49_c00473{bottom:333.630000px;}
.y41_c00473{bottom:351.180000px;}
.y43_c00473{bottom:352.245000px;}
.y44_c00473{bottom:353.325000px;}
.y45_c00473{bottom:353.970000px;}
.y42_c00473{bottom:354.405000px;}
.y40_c00473{bottom:369.405000px;}
.y3c_c00473{bottom:371.745000px;}
.y3e_c00473{bottom:372.825000px;}
.y3f_c00473{bottom:373.245000px;}
.y3d_c00473{bottom:373.905000px;}
.y3a_c00473{bottom:390.405000px;}
.y37_c00473{bottom:391.245000px;}
.y3b_c00473{bottom:392.325000px;}
.y38_c00473{bottom:393.405000px;}
.y39_c00473{bottom:394.470000px;}
.y34_c00473{bottom:410.745000px;}
.y36_c00473{bottom:411.825000px;}
.y35_c00473{bottom:412.905000px;}
.y32_c00473{bottom:430.245000px;}
.y30_c00473{bottom:431.745000px;}
.y2e_c00473{bottom:432.405000px;}
.y2f_c00473{bottom:432.630000px;}
.y33_c00473{bottom:433.470000px;}
.y31_c00473{bottom:433.905000px;}
.y2d_c00473{bottom:449.745000px;}
.y2b_c00473{bottom:450.825000px;}
.y28_c00473{bottom:451.245000px;}
.y2c_c00473{bottom:451.905000px;}
.y2a_c00473{bottom:452.325000px;}
.y29_c00473{bottom:453.405000px;}
.y26_c00473{bottom:469.905000px;}
.y25_c00473{bottom:470.745000px;}
.y27_c00473{bottom:471.405000px;}
.y24_c00473{bottom:472.905000px;}
.y23_c00473{bottom:490.245000px;}
.y21_c00473{bottom:492.405000px;}
.y22_c00473{bottom:493.470000px;}
.y20_c00473{bottom:509.745000px;}
.y1d_c00473{bottom:511.905000px;}
.y1f_c00473{bottom:512.130000px;}
.y1e_c00473{bottom:512.970000px;}
.y19_c00473{bottom:529.245000px;}
.y1b_c00473{bottom:529.470000px;}
.y1c_c00473{bottom:530.130000px;}
.y1a_c00473{bottom:531.405000px;}
.y15_c00473{bottom:548.745000px;}
.y18_c00473{bottom:549.630000px;}
.y16_c00473{bottom:550.245000px;}
.y14_c00473{bottom:550.905000px;}
.y17_c00473{bottom:551.130000px;}
.y13_c00473{bottom:569.745000px;}
.y12_c00473{bottom:571.905000px;}
.y10_c00473{bottom:588.405000px;}
.yf_c00473{bottom:589.245000px;}
.y11_c00473{bottom:590.130000px;}
.ye_c00473{bottom:591.405000px;}
.yc_c00473{bottom:607.245000px;}
.y8_c00473{bottom:608.745000px;}
.yd_c00473{bottom:609.405000px;}
.ya_c00473{bottom:609.630000px;}
.y9_c00473{bottom:610.905000px;}
.yb_c00473{bottom:611.970000px;}
.y3_c00473{bottom:628.245000px;}
.y7_c00473{bottom:629.130000px;}
.y4_c00473{bottom:629.325000px;}
.y6_c00473{bottom:629.970000px;}
.y5_c00473{bottom:630.405000px;}
.ybc_c00473{bottom:671.550000px;}
.ybb_c00473{bottom:674.130000px;}
.yba_c00473{bottom:675.195000px;}
.ybd_c00473{bottom:676.920000px;}
.yb7_c00473{bottom:687.630000px;}
.yb8_c00473{bottom:690.195000px;}
.yb9_c00473{bottom:690.420000px;}
.yb3_c00473{bottom:701.130000px;}
.yb6_c00473{bottom:702.195000px;}
.yb4_c00473{bottom:702.405000px;}
.yb2_c00473{bottom:703.695000px;}
.yb5_c00473{bottom:703.920000px;}
.yb1_c00473{bottom:714.630000px;}
.yae_c00473{bottom:716.130000px;}
.yaf_c00473{bottom:716.775000px;}
.yad_c00473{bottom:717.195000px;}
.yb0_c00473{bottom:717.420000px;}
.yab_c00473{bottom:729.195000px;}
.ya9_c00473{bottom:729.630000px;}
.yaa_c00473{bottom:730.695000px;}
.yac_c00473{bottom:730.920000px;}
.ya8_c00473{bottom:743.130000px;}
.ya7_c00473{bottom:744.195000px;}
.ya5_c00473{bottom:744.630000px;}
.ya6_c00473{bottom:745.920000px;}
.ya4_c00473{bottom:756.630000px;}
.ya3_c00473{bottom:757.695000px;}
.ya2_c00473{bottom:758.130000px;}
.ya0_c00473{bottom:759.195000px;}
.ya1_c00473{bottom:759.420000px;}
.y9f_c00473{bottom:771.195000px;}
.y9c_c00473{bottom:771.630000px;}
.y9d_c00473{bottom:772.695000px;}
.y9e_c00473{bottom:772.920000px;}
.y9b_c00473{bottom:783.630000px;}
.y99_c00473{bottom:785.775000px;}
.y98_c00473{bottom:786.195000px;}
.y9a_c00473{bottom:786.420000px;}
.y97_c00473{bottom:799.695000px;}
.y96_c00473{bottom:812.130000px;}
.y93_c00473{bottom:813.195000px;}
.y94_c00473{bottom:813.630000px;}
.y95_c00473{bottom:814.920000px;}
.y92_c00473{bottom:825.630000px;}
.y90_c00473{bottom:826.695000px;}
.y8e_c00473{bottom:827.130000px;}
.y8f_c00473{bottom:828.195000px;}
.y91_c00473{bottom:828.420000px;}
.y8b_c00473{bottom:839.130000px;}
.y8d_c00473{bottom:840.195000px;}
.y8a_c00473{bottom:841.695000px;}
.y8c_c00473{bottom:841.920000px;}
.y88_c00473{bottom:854.130000px;}
.y87_c00473{bottom:855.195000px;}
.y89_c00473{bottom:855.420000px;}
.y84_c00473{bottom:867.630000px;}
.y86_c00473{bottom:868.695000px;}
.y85_c00473{bottom:870.420000px;}
.y81_c00473{bottom:882.195000px;}
.y82_c00473{bottom:882.630000px;}
.y83_c00473{bottom:883.920000px;}
.y7e_c00473{bottom:895.695000px;}
.y80_c00473{bottom:895.920000px;}
.y7d_c00473{bottom:896.130000px;}
.y7f_c00473{bottom:897.420000px;}
.y7a_c00473{bottom:910.695000px;}
.y7c_c00473{bottom:910.920000px;}
.y7b_c00473{bottom:912.420000px;}
.y78_c00473{bottom:924.195000px;}
.y79_c00473{bottom:924.420000px;}
.y75_c00473{bottom:924.630000px;}
.y76_c00473{bottom:925.695000px;}
.y77_c00473{bottom:925.920000px;}
.y73_c00473{bottom:937.695000px;}
.y74_c00473{bottom:937.920000px;}
.y70_c00473{bottom:938.130000px;}
.y71_c00473{bottom:939.195000px;}
.y72_c00473{bottom:939.420000px;}
.y6d_c00473{bottom:951.195000px;}
.y6f_c00473{bottom:951.420000px;}
.y6b_c00473{bottom:951.630000px;}
.y6c_c00473{bottom:952.695000px;}
.y6e_c00473{bottom:952.920000px;}
.y69_c00473{bottom:965.130000px;}
.y68_c00473{bottom:966.195000px;}
.y6a_c00473{bottom:966.420000px;}
.y66_c00473{bottom:983.130000px;}
.y65_c00473{bottom:984.195000px;}
.y67_c00473{bottom:984.420000px;}
.y63_c00473{bottom:1001.130000px;}
.y64_c00473{bottom:1002.195000px;}
.y60_c00473{bottom:1024.905000px;}
.y62_c00473{bottom:1025.970000px;}
.y61_c00473{bottom:1027.050000px;}
.y5f_c00473{bottom:1038.405000px;}
.y5e_c00473{bottom:1039.470000px;}
.y5d_c00473{bottom:1040.550000px;}
.y5c_c00473{bottom:1061.970000px;}
.y5b_c00473{bottom:1064.970000px;}
.y2_c00473{bottom:1098.405000px;}
.y1_c00473{bottom:1100.550000px;}
.h9_c00473{height:4.206533px;}
.ha_c00473{height:14.612168px;}
.h8_c00473{height:16.752334px;}
.h6_c00473{height:23.025234px;}
.h1_c00473{height:25.091602px;}
.h5_c00473{height:31.364502px;}
.h2_c00473{height:35.571035px;}
.h4_c00473{height:39.777568px;}
.h3_c00473{height:43.910303px;}
.h7_c00473{height:48.116836px;}
.h0_c00473{height:1335.000000px;}
.w0_c00473{width:880.500000px;}
.x0_c00473{left:0.000000px;}
.x81_c00473{left:151.500000px;}
.x2_c00473{left:153.000000px;}
.x3c_c00473{left:154.275000px;}
.x4c_c00473{left:168.000000px;}
.x2a_c00473{left:169.920000px;}
.xa6_c00473{left:171.000000px;}
.x99_c00473{left:172.500000px;}
.x89_c00473{left:177.000000px;}
.x76_c00473{left:181.500000px;}
.x8e_c00473{left:190.920000px;}
.xa7_c00473{left:193.500000px;}
.x2b_c00473{left:194.580000px;}
.x1d_c00473{left:196.080000px;}
.x4d_c00473{left:197.580000px;}
.x3_c00473{left:201.420000px;}
.x33_c00473{left:202.500000px;}
.x3d_c00473{left:207.000000px;}
.x82_c00473{left:211.080000px;}
.x58_c00473{left:214.080000px;}
.xaf_c00473{left:215.580000px;}
.x11_c00473{left:220.500000px;}
.xa5_c00473{left:222.000000px;}
.x45_c00473{left:223.500000px;}
.x63_c00473{left:229.500000px;}
.x5d_c00473{left:231.000000px;}
.x6c_c00473{left:232.500000px;}
.x9a_c00473{left:234.420000px;}
.x4_c00473{left:235.500000px;}
.xb0_c00473{left:238.500000px;}
.x7c_c00473{left:240.000000px;}
.x1e_c00473{left:241.500000px;}
.xb2_c00473{left:243.000000px;}
.xaa_c00473{left:244.920000px;}
.x2c_c00473{left:246.000000px;}
.x3e_c00473{left:249.000000px;}
.xb1_c00473{left:251.580000px;}
.x4e_c00473{left:258.645000px;}
.x7d_c00473{left:261.420000px;}
.x5_c00473{left:262.500000px;}
.x12_c00473{left:268.500000px;}
.x77_c00473{left:269.580000px;}
.x64_c00473{left:271.500000px;}
.x46_c00473{left:277.500000px;}
.x34_c00473{left:279.000000px;}
.x83_c00473{left:282.000000px;}
.x8a_c00473{left:283.500000px;}
.x6_c00473{left:286.500000px;}
.x13_c00473{left:289.500000px;}
.x9b_c00473{left:298.500000px;}
.x6d_c00473{left:303.000000px;}
.x2d_c00473{left:306.000000px;}
.x1f_c00473{left:307.500000px;}
.x59_c00473{left:310.500000px;}
.x4f_c00473{left:312.420000px;}
.x5e_c00473{left:313.920000px;}
.x7_c00473{left:316.920000px;}
.x6e_c00473{left:319.920000px;}
.xa8_c00473{left:321.000000px;}
.x47_c00473{left:322.500000px;}
.x35_c00473{left:323.580000px;}
.x50_c00473{left:333.000000px;}
.x94_c00473{left:336.000000px;}
.x20_c00473{left:337.080000px;}
.x65_c00473{left:339.000000px;}
.x14_c00473{left:344.580000px;}
.x6f_c00473{left:346.920000px;}
.x3f_c00473{left:348.000000px;}
.x7e_c00473{left:349.920000px;}
.x66_c00473{left:355.500000px;}
.x8f_c00473{left:356.580000px;}
.x51_c00473{left:358.500000px;}
.xb3_c00473{left:360.000000px;}
.x84_c00473{left:367.500000px;}
.x2e_c00473{left:369.000000px;}
.xab_c00473{left:370.500000px;}
.x36_c00473{left:372.420000px;}
.xa4_c00473{left:373.500000px;}
.x15_c00473{left:375.420000px;}
.x70_c00473{left:382.500000px;}
.x21_c00473{left:387.420000px;}
.x2f_c00473{left:391.500000px;}
.x78_c00473{left:396.000000px;}
.x48_c00473{left:397.500000px;}
.x16_c00473{left:402.000000px;}
.xa0_c00473{left:406.500000px;}
.x1_c00473{left:409.500000px;}
.x49_c00473{left:410.580000px;}
.x22_c00473{left:412.500000px;}
.x98_c00473{left:414.000000px;}
.x52_c00473{left:418.920000px;}
.x85_c00473{left:420.420000px;}
.x8_c00473{left:424.500000px;}
.x40_c00473{left:429.000000px;}
.x71_c00473{left:433.080000px;}
.x30_c00473{left:434.580000px;}
.x17_c00473{left:439.500000px;}
.x4a_c00473{left:441.420000px;}
.x53_c00473{left:444.000000px;}
.x9c_c00473{left:447.000000px;}
.x67_c00473{left:448.920000px;}
.x8b_c00473{left:450.420000px;}
.x4b_c00473{left:452.580000px;}
.x79_c00473{left:455.580000px;}
.x41_c00473{left:456.855000px;}
.x9_c00473{left:457.920000px;}
.x18_c00473{left:466.080000px;}
.xa1_c00473{left:468.000000px;}
.xb4_c00473{left:469.500000px;}
.x7a_c00473{left:474.420000px;}
.x8c_c00473{left:475.500000px;}
.xac_c00473{left:478.500000px;}
.x95_c00473{left:479.775000px;}
.x5f_c00473{left:481.500000px;}
.xa9_c00473{left:483.000000px;}
.xa2_c00473{left:484.500000px;}
.x23_c00473{left:485.580000px;}
.x72_c00473{left:490.500000px;}
.x54_c00473{left:497.580000px;}
.x37_c00473{left:502.080000px;}
.x19_c00473{left:504.000000px;}
.x31_c00473{left:506.580000px;}
.x8d_c00473{left:510.000000px;}
.x68_c00473{left:513.000000px;}
.x9d_c00473{left:514.920000px;}
.x86_c00473{left:516.000000px;}
.x5a_c00473{left:517.080000px;}
.x42_c00473{left:518.580000px;}
.xb5_c00473{left:522.000000px;}
.xa_c00473{left:526.500000px;}
.x90_c00473{left:531.000000px;}
.x9e_c00473{left:532.080000px;}
.x7f_c00473{left:535.500000px;}
.x32_c00473{left:538.275000px;}
.x60_c00473{left:543.000000px;}
.xb_c00473{left:546.420000px;}
.x96_c00473{left:548.580000px;}
.xa3_c00473{left:553.500000px;}
.x24_c00473{left:555.000000px;}
.x38_c00473{left:559.500000px;}
.x73_c00473{left:560.580000px;}
.x69_c00473{left:565.080000px;}
.xc_c00473{left:574.080000px;}
.x25_c00473{left:577.500000px;}
.x87_c00473{left:582.000000px;}
.x6a_c00473{left:583.080000px;}
.x1a_c00473{left:585.420000px;}
.xad_c00473{left:586.500000px;}
.x91_c00473{left:588.000000px;}
.x9f_c00473{left:589.500000px;}
.x55_c00473{left:601.500000px;}
.x43_c00473{left:602.580000px;}
.x61_c00473{left:606.000000px;}
.x26_c00473{left:608.580000px;}
.x5b_c00473{left:612.000000px;}
.x7b_c00473{left:619.500000px;}
.x56_c00473{left:622.080000px;}
.xd_c00473{left:623.580000px;}
.x74_c00473{left:625.500000px;}
.x39_c00473{left:635.580000px;}
.x44_c00473{left:637.920000px;}
.x27_c00473{left:639.000000px;}
.x92_c00473{left:640.500000px;}
.xe_c00473{left:643.920000px;}
.x62_c00473{left:645.420000px;}
.x88_c00473{left:653.580000px;}
.x1b_c00473{left:660.000000px;}
.x80_c00473{left:663.000000px;}
.x3a_c00473{left:669.000000px;}
.xf_c00473{left:672.000000px;}
.x97_c00473{left:673.500000px;}
.x6b_c00473{left:675.000000px;}
.x28_c00473{left:681.420000px;}
.x1c_c00473{left:682.500000px;}
.x5c_c00473{left:691.500000px;}
.xae_c00473{left:694.500000px;}
.xb6_c00473{left:697.500000px;}
.x93_c00473{left:700.500000px;}
.x75_c00473{left:701.775000px;}
.x29_c00473{left:706.500000px;}
.x3b_c00473{left:709.500000px;}
.x10_c00473{left:717.000000px;}
.x57_c00473{left:719.580000px;}
@media print{
.v1_c00473{vertical-align:-5.333333pt;}
.v0_c00473{vertical-align:0.000000pt;}
.ls2_c00473{letter-spacing:0.000000pt;}
.ls1_c00473{letter-spacing:16.526142pt;}
.ls0_c00473{letter-spacing:63.114847pt;}
.ws3_c00473{word-spacing:-70.185141pt;}
.wsa_c00473{word-spacing:-18.301502pt;}
.ws1_c00473{word-spacing:-4.439790pt;}
.ws0_c00473{word-spacing:-3.493016pt;}
.ws6_c00473{word-spacing:-1.676304pt;}
.ws11_c00473{word-spacing:0.000000pt;}
.ws8_c00473{word-spacing:14.263602pt;}
.ws5_c00473{word-spacing:14.750782pt;}
.ws10_c00473{word-spacing:29.157018pt;}
.wsf_c00473{word-spacing:31.683859pt;}
.wsb_c00473{word-spacing:33.464251pt;}
.ws2_c00473{word-spacing:37.661663pt;}
.wsd_c00473{word-spacing:38.332159pt;}
.ws9_c00473{word-spacing:44.775456pt;}
.wsc_c00473{word-spacing:53.900800pt;}
.ws7_c00473{word-spacing:55.125201pt;}
.wse_c00473{word-spacing:61.361940pt;}
.ws4_c00473{word-spacing:85.757673pt;}
._0_c00473{margin-left:-63.114847pt;}
._2_c00473{margin-left:-16.526142pt;}
._1_c00473{width:17.500501pt;}
._4_c00473{width:38.754152pt;}
._3_c00473{width:42.314936pt;}
.fs8_c00473{font-size:3.040000pt;}
.fs9_c00473{font-size:10.560000pt;}
.fs7_c00473{font-size:12.106667pt;}
.fs5_c00473{font-size:16.640000pt;}
.fs0_c00473{font-size:18.133333pt;}
.fs4_c00473{font-size:22.666667pt;}
.fs1_c00473{font-size:25.706667pt;}
.fs3_c00473{font-size:28.746667pt;}
.fs2_c00473{font-size:31.733333pt;}
.fs6_c00473{font-size:34.773333pt;}
.y0_c00473{bottom:0.000000pt;}
.y5a_c00473{bottom:225.106667pt;}
.y58_c00473{bottom:242.440000pt;}
.y57_c00473{bottom:243.226667pt;}
.y59_c00473{bottom:243.400000pt;}
.y56_c00473{bottom:244.360000pt;}
.y54_c00473{bottom:259.773333pt;}
.y55_c00473{bottom:261.106667pt;}
.y51_c00473{bottom:261.693333pt;}
.y53_c00473{bottom:261.893333pt;}
.y52_c00473{bottom:263.026667pt;}
.y4f_c00473{bottom:277.106667pt;}
.y4e_c00473{bottom:278.066667pt;}
.y4c_c00473{bottom:278.440000pt;}
.y4b_c00473{bottom:279.026667pt;}
.y50_c00473{bottom:279.973333pt;}
.y4d_c00473{bottom:280.360000pt;}
.y46_c00473{bottom:294.440000pt;}
.y4a_c00473{bottom:295.400000pt;}
.y48_c00473{bottom:295.773333pt;}
.y47_c00473{bottom:296.360000pt;}
.y49_c00473{bottom:296.560000pt;}
.y41_c00473{bottom:312.160000pt;}
.y43_c00473{bottom:313.106667pt;}
.y44_c00473{bottom:314.066667pt;}
.y45_c00473{bottom:314.640000pt;}
.y42_c00473{bottom:315.026667pt;}
.y40_c00473{bottom:328.360000pt;}
.y3c_c00473{bottom:330.440000pt;}
.y3e_c00473{bottom:331.400000pt;}
.y3f_c00473{bottom:331.773333pt;}
.y3d_c00473{bottom:332.360000pt;}
.y3a_c00473{bottom:347.026667pt;}
.y37_c00473{bottom:347.773333pt;}
.y3b_c00473{bottom:348.733333pt;}
.y38_c00473{bottom:349.693333pt;}
.y39_c00473{bottom:350.640000pt;}
.y34_c00473{bottom:365.106667pt;}
.y36_c00473{bottom:366.066667pt;}
.y35_c00473{bottom:367.026667pt;}
.y32_c00473{bottom:382.440000pt;}
.y30_c00473{bottom:383.773333pt;}
.y2e_c00473{bottom:384.360000pt;}
.y2f_c00473{bottom:384.560000pt;}
.y33_c00473{bottom:385.306667pt;}
.y31_c00473{bottom:385.693333pt;}
.y2d_c00473{bottom:399.773333pt;}
.y2b_c00473{bottom:400.733333pt;}
.y28_c00473{bottom:401.106667pt;}
.y2c_c00473{bottom:401.693333pt;}
.y2a_c00473{bottom:402.066667pt;}
.y29_c00473{bottom:403.026667pt;}
.y26_c00473{bottom:417.693333pt;}
.y25_c00473{bottom:418.440000pt;}
.y27_c00473{bottom:419.026667pt;}
.y24_c00473{bottom:420.360000pt;}
.y23_c00473{bottom:435.773333pt;}
.y21_c00473{bottom:437.693333pt;}
.y22_c00473{bottom:438.640000pt;}
.y20_c00473{bottom:453.106667pt;}
.y1d_c00473{bottom:455.026667pt;}
.y1f_c00473{bottom:455.226667pt;}
.y1e_c00473{bottom:455.973333pt;}
.y19_c00473{bottom:470.440000pt;}
.y1b_c00473{bottom:470.640000pt;}
.y1c_c00473{bottom:471.226667pt;}
.y1a_c00473{bottom:472.360000pt;}
.y15_c00473{bottom:487.773333pt;}
.y18_c00473{bottom:488.560000pt;}
.y16_c00473{bottom:489.106667pt;}
.y14_c00473{bottom:489.693333pt;}
.y17_c00473{bottom:489.893333pt;}
.y13_c00473{bottom:506.440000pt;}
.y12_c00473{bottom:508.360000pt;}
.y10_c00473{bottom:523.026667pt;}
.yf_c00473{bottom:523.773333pt;}
.y11_c00473{bottom:524.560000pt;}
.ye_c00473{bottom:525.693333pt;}
.yc_c00473{bottom:539.773333pt;}
.y8_c00473{bottom:541.106667pt;}
.yd_c00473{bottom:541.693333pt;}
.ya_c00473{bottom:541.893333pt;}
.y9_c00473{bottom:543.026667pt;}
.yb_c00473{bottom:543.973333pt;}
.y3_c00473{bottom:558.440000pt;}
.y7_c00473{bottom:559.226667pt;}
.y4_c00473{bottom:559.400000pt;}
.y6_c00473{bottom:559.973333pt;}
.y5_c00473{bottom:560.360000pt;}
.ybc_c00473{bottom:596.933333pt;}
.ybb_c00473{bottom:599.226667pt;}
.yba_c00473{bottom:600.173333pt;}
.ybd_c00473{bottom:601.706667pt;}
.yb7_c00473{bottom:611.226667pt;}
.yb8_c00473{bottom:613.506667pt;}
.yb9_c00473{bottom:613.706667pt;}
.yb3_c00473{bottom:623.226667pt;}
.yb6_c00473{bottom:624.173333pt;}
.yb4_c00473{bottom:624.360000pt;}
.yb2_c00473{bottom:625.506667pt;}
.yb5_c00473{bottom:625.706667pt;}
.yb1_c00473{bottom:635.226667pt;}
.yae_c00473{bottom:636.560000pt;}
.yaf_c00473{bottom:637.133333pt;}
.yad_c00473{bottom:637.506667pt;}
.yb0_c00473{bottom:637.706667pt;}
.yab_c00473{bottom:648.173333pt;}
.ya9_c00473{bottom:648.560000pt;}
.yaa_c00473{bottom:649.506667pt;}
.yac_c00473{bottom:649.706667pt;}
.ya8_c00473{bottom:660.560000pt;}
.ya7_c00473{bottom:661.506667pt;}
.ya5_c00473{bottom:661.893333pt;}
.ya6_c00473{bottom:663.040000pt;}
.ya4_c00473{bottom:672.560000pt;}
.ya3_c00473{bottom:673.506667pt;}
.ya2_c00473{bottom:673.893333pt;}
.ya0_c00473{bottom:674.840000pt;}
.ya1_c00473{bottom:675.040000pt;}
.y9f_c00473{bottom:685.506667pt;}
.y9c_c00473{bottom:685.893333pt;}
.y9d_c00473{bottom:686.840000pt;}
.y9e_c00473{bottom:687.040000pt;}
.y9b_c00473{bottom:696.560000pt;}
.y99_c00473{bottom:698.466667pt;}
.y98_c00473{bottom:698.840000pt;}
.y9a_c00473{bottom:699.040000pt;}
.y97_c00473{bottom:710.840000pt;}
.y96_c00473{bottom:721.893333pt;}
.y93_c00473{bottom:722.840000pt;}
.y94_c00473{bottom:723.226667pt;}
.y95_c00473{bottom:724.373333pt;}
.y92_c00473{bottom:733.893333pt;}
.y90_c00473{bottom:734.840000pt;}
.y8e_c00473{bottom:735.226667pt;}
.y8f_c00473{bottom:736.173333pt;}
.y91_c00473{bottom:736.373333pt;}
.y8b_c00473{bottom:745.893333pt;}
.y8d_c00473{bottom:746.840000pt;}
.y8a_c00473{bottom:748.173333pt;}
.y8c_c00473{bottom:748.373333pt;}
.y88_c00473{bottom:759.226667pt;}
.y87_c00473{bottom:760.173333pt;}
.y89_c00473{bottom:760.373333pt;}
.y84_c00473{bottom:771.226667pt;}
.y86_c00473{bottom:772.173333pt;}
.y85_c00473{bottom:773.706667pt;}
.y81_c00473{bottom:784.173333pt;}
.y82_c00473{bottom:784.560000pt;}
.y83_c00473{bottom:785.706667pt;}
.y7e_c00473{bottom:796.173333pt;}
.y80_c00473{bottom:796.373333pt;}
.y7d_c00473{bottom:796.560000pt;}
.y7f_c00473{bottom:797.706667pt;}
.y7a_c00473{bottom:809.506667pt;}
.y7c_c00473{bottom:809.706667pt;}
.y7b_c00473{bottom:811.040000pt;}
.y78_c00473{bottom:821.506667pt;}
.y79_c00473{bottom:821.706667pt;}
.y75_c00473{bottom:821.893333pt;}
.y76_c00473{bottom:822.840000pt;}
.y77_c00473{bottom:823.040000pt;}
.y73_c00473{bottom:833.506667pt;}
.y74_c00473{bottom:833.706667pt;}
.y70_c00473{bottom:833.893333pt;}
.y71_c00473{bottom:834.840000pt;}
.y72_c00473{bottom:835.040000pt;}
.y6d_c00473{bottom:845.506667pt;}
.y6f_c00473{bottom:845.706667pt;}
.y6b_c00473{bottom:845.893333pt;}
.y6c_c00473{bottom:846.840000pt;}
.y6e_c00473{bottom:847.040000pt;}
.y69_c00473{bottom:857.893333pt;}
.y68_c00473{bottom:858.840000pt;}
.y6a_c00473{bottom:859.040000pt;}
.y66_c00473{bottom:873.893333pt;}
.y65_c00473{bottom:874.840000pt;}
.y67_c00473{bottom:875.040000pt;}
.y63_c00473{bottom:889.893333pt;}
.y64_c00473{bottom:890.840000pt;}
.y60_c00473{bottom:911.026667pt;}
.y62_c00473{bottom:911.973333pt;}
.y61_c00473{bottom:912.933333pt;}
.y5f_c00473{bottom:923.026667pt;}
.y5e_c00473{bottom:923.973333pt;}
.y5d_c00473{bottom:924.933333pt;}
.y5c_c00473{bottom:943.973333pt;}
.y5b_c00473{bottom:946.640000pt;}
.y2_c00473{bottom:976.360000pt;}
.y1_c00473{bottom:978.266667pt;}
.h9_c00473{height:3.739141pt;}
.ha_c00473{height:12.988594pt;}
.h8_c00473{height:14.890964pt;}
.h6_c00473{height:20.466875pt;}
.h1_c00473{height:22.303646pt;}
.h5_c00473{height:27.879557pt;}
.h2_c00473{height:31.618698pt;}
.h4_c00473{height:35.357839pt;}
.h3_c00473{height:39.031380pt;}
.h7_c00473{height:42.770521pt;}
.h0_c00473{height:1186.666667pt;}
.w0_c00473{width:782.666667pt;}
.x0_c00473{left:0.000000pt;}
.x81_c00473{left:134.666667pt;}
.x2_c00473{left:136.000000pt;}
.x3c_c00473{left:137.133333pt;}
.x4c_c00473{left:149.333333pt;}
.x2a_c00473{left:151.040000pt;}
.xa6_c00473{left:152.000000pt;}
.x99_c00473{left:153.333333pt;}
.x89_c00473{left:157.333333pt;}
.x76_c00473{left:161.333333pt;}
.x8e_c00473{left:169.706667pt;}
.xa7_c00473{left:172.000000pt;}
.x2b_c00473{left:172.960000pt;}
.x1d_c00473{left:174.293333pt;}
.x4d_c00473{left:175.626667pt;}
.x3_c00473{left:179.040000pt;}
.x33_c00473{left:180.000000pt;}
.x3d_c00473{left:184.000000pt;}
.x82_c00473{left:187.626667pt;}
.x58_c00473{left:190.293333pt;}
.xaf_c00473{left:191.626667pt;}
.x11_c00473{left:196.000000pt;}
.xa5_c00473{left:197.333333pt;}
.x45_c00473{left:198.666667pt;}
.x63_c00473{left:204.000000pt;}
.x5d_c00473{left:205.333333pt;}
.x6c_c00473{left:206.666667pt;}
.x9a_c00473{left:208.373333pt;}
.x4_c00473{left:209.333333pt;}
.xb0_c00473{left:212.000000pt;}
.x7c_c00473{left:213.333333pt;}
.x1e_c00473{left:214.666667pt;}
.xb2_c00473{left:216.000000pt;}
.xaa_c00473{left:217.706667pt;}
.x2c_c00473{left:218.666667pt;}
.x3e_c00473{left:221.333333pt;}
.xb1_c00473{left:223.626667pt;}
.x4e_c00473{left:229.906667pt;}
.x7d_c00473{left:232.373333pt;}
.x5_c00473{left:233.333333pt;}
.x12_c00473{left:238.666667pt;}
.x77_c00473{left:239.626667pt;}
.x64_c00473{left:241.333333pt;}
.x46_c00473{left:246.666667pt;}
.x34_c00473{left:248.000000pt;}
.x83_c00473{left:250.666667pt;}
.x8a_c00473{left:252.000000pt;}
.x6_c00473{left:254.666667pt;}
.x13_c00473{left:257.333333pt;}
.x9b_c00473{left:265.333333pt;}
.x6d_c00473{left:269.333333pt;}
.x2d_c00473{left:272.000000pt;}
.x1f_c00473{left:273.333333pt;}
.x59_c00473{left:276.000000pt;}
.x4f_c00473{left:277.706667pt;}
.x5e_c00473{left:279.040000pt;}
.x7_c00473{left:281.706667pt;}
.x6e_c00473{left:284.373333pt;}
.xa8_c00473{left:285.333333pt;}
.x47_c00473{left:286.666667pt;}
.x35_c00473{left:287.626667pt;}
.x50_c00473{left:296.000000pt;}
.x94_c00473{left:298.666667pt;}
.x20_c00473{left:299.626667pt;}
.x65_c00473{left:301.333333pt;}
.x14_c00473{left:306.293333pt;}
.x6f_c00473{left:308.373333pt;}
.x3f_c00473{left:309.333333pt;}
.x7e_c00473{left:311.040000pt;}
.x66_c00473{left:316.000000pt;}
.x8f_c00473{left:316.960000pt;}
.x51_c00473{left:318.666667pt;}
.xb3_c00473{left:320.000000pt;}
.x84_c00473{left:326.666667pt;}
.x2e_c00473{left:328.000000pt;}
.xab_c00473{left:329.333333pt;}
.x36_c00473{left:331.040000pt;}
.xa4_c00473{left:332.000000pt;}
.x15_c00473{left:333.706667pt;}
.x70_c00473{left:340.000000pt;}
.x21_c00473{left:344.373333pt;}
.x2f_c00473{left:348.000000pt;}
.x78_c00473{left:352.000000pt;}
.x48_c00473{left:353.333333pt;}
.x16_c00473{left:357.333333pt;}
.xa0_c00473{left:361.333333pt;}
.x1_c00473{left:364.000000pt;}
.x49_c00473{left:364.960000pt;}
.x22_c00473{left:366.666667pt;}
.x98_c00473{left:368.000000pt;}
.x52_c00473{left:372.373333pt;}
.x85_c00473{left:373.706667pt;}
.x8_c00473{left:377.333333pt;}
.x40_c00473{left:381.333333pt;}
.x71_c00473{left:384.960000pt;}
.x30_c00473{left:386.293333pt;}
.x17_c00473{left:390.666667pt;}
.x4a_c00473{left:392.373333pt;}
.x53_c00473{left:394.666667pt;}
.x9c_c00473{left:397.333333pt;}
.x67_c00473{left:399.040000pt;}
.x8b_c00473{left:400.373333pt;}
.x4b_c00473{left:402.293333pt;}
.x79_c00473{left:404.960000pt;}
.x41_c00473{left:406.093333pt;}
.x9_c00473{left:407.040000pt;}
.x18_c00473{left:414.293333pt;}
.xa1_c00473{left:416.000000pt;}
.xb4_c00473{left:417.333333pt;}
.x7a_c00473{left:421.706667pt;}
.x8c_c00473{left:422.666667pt;}
.xac_c00473{left:425.333333pt;}
.x95_c00473{left:426.466667pt;}
.x5f_c00473{left:428.000000pt;}
.xa9_c00473{left:429.333333pt;}
.xa2_c00473{left:430.666667pt;}
.x23_c00473{left:431.626667pt;}
.x72_c00473{left:436.000000pt;}
.x54_c00473{left:442.293333pt;}
.x37_c00473{left:446.293333pt;}
.x19_c00473{left:448.000000pt;}
.x31_c00473{left:450.293333pt;}
.x8d_c00473{left:453.333333pt;}
.x68_c00473{left:456.000000pt;}
.x9d_c00473{left:457.706667pt;}
.x86_c00473{left:458.666667pt;}
.x5a_c00473{left:459.626667pt;}
.x42_c00473{left:460.960000pt;}
.xb5_c00473{left:464.000000pt;}
.xa_c00473{left:468.000000pt;}
.x90_c00473{left:472.000000pt;}
.x9e_c00473{left:472.960000pt;}
.x7f_c00473{left:476.000000pt;}
.x32_c00473{left:478.466667pt;}
.x60_c00473{left:482.666667pt;}
.xb_c00473{left:485.706667pt;}
.x96_c00473{left:487.626667pt;}
.xa3_c00473{left:492.000000pt;}
.x24_c00473{left:493.333333pt;}
.x38_c00473{left:497.333333pt;}
.x73_c00473{left:498.293333pt;}
.x69_c00473{left:502.293333pt;}
.xc_c00473{left:510.293333pt;}
.x25_c00473{left:513.333333pt;}
.x87_c00473{left:517.333333pt;}
.x6a_c00473{left:518.293333pt;}
.x1a_c00473{left:520.373333pt;}
.xad_c00473{left:521.333333pt;}
.x91_c00473{left:522.666667pt;}
.x9f_c00473{left:524.000000pt;}
.x55_c00473{left:534.666667pt;}
.x43_c00473{left:535.626667pt;}
.x61_c00473{left:538.666667pt;}
.x26_c00473{left:540.960000pt;}
.x5b_c00473{left:544.000000pt;}
.x7b_c00473{left:550.666667pt;}
.x56_c00473{left:552.960000pt;}
.xd_c00473{left:554.293333pt;}
.x74_c00473{left:556.000000pt;}
.x39_c00473{left:564.960000pt;}
.x44_c00473{left:567.040000pt;}
.x27_c00473{left:568.000000pt;}
.x92_c00473{left:569.333333pt;}
.xe_c00473{left:572.373333pt;}
.x62_c00473{left:573.706667pt;}
.x88_c00473{left:580.960000pt;}
.x1b_c00473{left:586.666667pt;}
.x80_c00473{left:589.333333pt;}
.x3a_c00473{left:594.666667pt;}
.xf_c00473{left:597.333333pt;}
.x97_c00473{left:598.666667pt;}
.x6b_c00473{left:600.000000pt;}
.x28_c00473{left:605.706667pt;}
.x1c_c00473{left:606.666667pt;}
.x5c_c00473{left:614.666667pt;}
.xae_c00473{left:617.333333pt;}
.xb6_c00473{left:620.000000pt;}
.x93_c00473{left:622.666667pt;}
.x75_c00473{left:623.800000pt;}
.x29_c00473{left:628.000000pt;}
.x3b_c00473{left:630.666667pt;}
.x10_c00473{left:637.333333pt;}
.x57_c00473{left:639.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_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_28f2e5cdd6d0f8becc13d4c5.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8b_c00474{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m57_c00474{transform:matrix(0.334356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334356,0.000000,0.000000,0.250000,0,0);}
.m71_c00474{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m7a_c00474{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.ma9_c00474{transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);}
.m80_c00474{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.ma4_c00474{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m78_c00474{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m16_c00474{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.me6_c00474{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.me5_c00474{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m8d_c00474{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m53_c00474{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m33_c00474{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.m88_c00474{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mb1_c00474{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mdb_c00474{transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);}
.m91_c00474{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m90_c00474{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.mde_c00474{transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);}
.m5_c00474{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.me3_c00474{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.ma7_c00474{transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);}
.m28_c00474{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m98_c00474{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m67_c00474{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m44_c00474{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m2c_c00474{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m9a_c00474{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m6d_c00474{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m74_c00474{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m48_c00474{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m85_c00474{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.md9_c00474{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m2d_c00474{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m92_c00474{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.md1_c00474{transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);}
.m40_c00474{transform:matrix(0.411043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411043,0.000000,0.000000,0.250000,0,0);}
.m86_c00474{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m70_c00474{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m87_c00474{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m8a_c00474{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m27_c00474{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.md8_c00474{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.m7b_c00474{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m42_c00474{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m1a_c00474{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m77_c00474{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.ma0_c00474{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m8_c00474{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mb8_c00474{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m61_c00474{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m3a_c00474{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mc0_c00474{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m51_c00474{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mc2_c00474{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.mb3_c00474{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.mbf_c00474{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.ma2_c00474{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.me4_c00474{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m1f_c00474{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m96_c00474{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.mdc_c00474{transform:matrix(0.427059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427059,0.000000,0.000000,0.250000,0,0);}
.me2_c00474{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.mab_c00474{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m73_c00474{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m64_c00474{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m60_c00474{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.ma6_c00474{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m69_c00474{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mc_c00474{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.md2_c00474{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m5f_c00474{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.md5_c00474{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.mb4_c00474{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m2a_c00474{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m76_c00474{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m97_c00474{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.mc6_c00474{transform:matrix(0.449170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449170,0.000000,0.000000,0.250000,0,0);}
.mae_c00474{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.mca_c00474{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m82_c00474{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m1e_c00474{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.mcc_c00474{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.mb9_c00474{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m9f_c00474{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.mb6_c00474{transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);}
.m2f_c00474{transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);}
.m55_c00474{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m31_c00474{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m47_c00474{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m37_c00474{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.md4_c00474{transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);}
.m3b_c00474{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.md0_c00474{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.mad_c00474{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m9d_c00474{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.mc3_c00474{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.mc5_c00474{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.mce_c00474{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m75_c00474{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m58_c00474{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.m2b_c00474{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m79_c00474{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mcd_c00474{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m1b_c00474{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m4e_c00474{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.ma1_c00474{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m9b_c00474{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m9e_c00474{transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);}
.ma5_c00474{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m59_c00474{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m7e_c00474{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m89_c00474{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m13_c00474{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_c00474{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m38_c00474{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m7c_c00474{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m4_c00474{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mda_c00474{transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);}
.m18_c00474{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m3e_c00474{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m8c_c00474{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.me1_c00474{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m1_c00474{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m3d_c00474{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m52_c00474{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mb2_c00474{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.me0_c00474{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m6f_c00474{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m34_c00474{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mdd_c00474{transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);}
.m7d_c00474{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m20_c00474{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mb_c00474{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.ma8_c00474{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m54_c00474{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mba_c00474{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m15_c00474{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.maf_c00474{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m49_c00474{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m26_c00474{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m2e_c00474{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mbb_c00474{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.md_c00474{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m22_c00474{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m43_c00474{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.mbd_c00474{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m4c_c00474{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m62_c00474{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mcb_c00474{transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);}
.m12_c00474{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m94_c00474{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.mb7_c00474{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.maa_c00474{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m72_c00474{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m81_c00474{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mcf_c00474{transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);}
.m3f_c00474{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m66_c00474{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m5c_c00474{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m21_c00474{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m56_c00474{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m8f_c00474{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m41_c00474{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.mbe_c00474{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.me7_c00474{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m5a_c00474{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m25_c00474{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m1c_c00474{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m6a_c00474{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m1d_c00474{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.me_c00474{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m14_c00474{transform:matrix(0.571176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571176,0.000000,0.000000,0.250000,0,0);}
.m23_c00474{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m95_c00474{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mac_c00474{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.mc4_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);}
.mf_c00474{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m8e_c00474{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m3c_c00474{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m46_c00474{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m50_c00474{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m6e_c00474{transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);}
.m84_c00474{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m9c_c00474{transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);}
.mb0_c00474{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.ma3_c00474{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m32_c00474{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m4d_c00474{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m4a_c00474{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m83_c00474{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m29_c00474{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m7f_c00474{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m6b_c00474{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m2_c00474{transform:matrix(0.609959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609959,0.000000,0.000000,0.250000,0,0);}
.m6c_c00474{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m36_c00474{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m10_c00474{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mbc_c00474{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.md6_c00474{transform:matrix(0.619853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619853,0.000000,0.000000,0.250000,0,0);}
.m0_c00474{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);}
.m63_c00474{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);}
.m7_c00474{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mdf_c00474{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.mc8_c00474{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.mc7_c00474{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m4f_c00474{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mc9_c00474{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);}
.m39_c00474{transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);}
.m24_c00474{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m5e_c00474{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m9_c00474{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.m93_c00474{transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);}
.m30_c00474{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m17_c00474{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mc1_c00474{transform:matrix(0.728235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728235,0.000000,0.000000,0.250000,0,0);}
.m45_c00474{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m5b_c00474{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m11_c00474{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.md3_c00474{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);}
.ma_c00474{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m65_c00474{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m68_c00474{transform:matrix(0.773237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.773237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.773237,0.000000,0.000000,0.250000,0,0);}
.m99_c00474{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m5d_c00474{transform:matrix(0.796474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.796474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.796474,0.000000,0.000000,0.250000,0,0);}
.m3_c00474{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m35_c00474{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m4b_c00474{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.md7_c00474{transform:matrix(0.875735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875735,0.000000,0.000000,0.250000,0,0);}
.m6_c00474{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.mb5_c00474{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v1_c00474{vertical-align:-12.000000px;}
.v2_c00474{vertical-align:-6.000000px;}
.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:-6.645939px;}
.ws1_c00474{word-spacing:-5.677725px;}
.ws2_c00474{word-spacing:0.000000px;}
.fc0_c00474{color:transparent;}
.fs4_c00474{font-size:3.420000px;}
.fs2_c00474{font-size:18.720000px;}
.fs0_c00474{font-size:20.400000px;}
.fs5_c00474{font-size:25.500000px;}
.fs1_c00474{font-size:28.920000px;}
.fs6_c00474{font-size:32.340000px;}
.fs3_c00474{font-size:35.700000px;}
.fs7_c00474{font-size:39.120000px;}
.y0_c00474{bottom:0.000000px;}
.ydb_c00474{bottom:251.745000px;}
.ydc_c00474{bottom:252.630000px;}
.yda_c00474{bottom:253.905000px;}
.yd6_c00474{bottom:271.245000px;}
.yd8_c00474{bottom:273.405000px;}
.yd7_c00474{bottom:273.420000px;}
.yd9_c00474{bottom:273.630000px;}
.yd3_c00474{bottom:293.325000px;}
.yd0_c00474{bottom:294.405000px;}
.yd5_c00474{bottom:294.630000px;}
.yd1_c00474{bottom:295.050000px;}
.yd4_c00474{bottom:295.470000px;}
.yd2_c00474{bottom:296.550000px;}
.ycf_c00474{bottom:312.825000px;}
.ycd_c00474{bottom:313.050000px;}
.ycc_c00474{bottom:313.905000px;}
.yce_c00474{bottom:316.050000px;}
.yca_c00474{bottom:328.050000px;}
.yc9_c00474{bottom:328.905000px;}
.ycb_c00474{bottom:331.050000px;}
.yc8_c00474{bottom:349.245000px;}
.yc7_c00474{bottom:352.470000px;}
.yc6_c00474{bottom:352.905000px;}
.yc2_c00474{bottom:385.245000px;}
.yc4_c00474{bottom:386.970000px;}
.yc5_c00474{bottom:387.405000px;}
.yc3_c00474{bottom:387.420000px;}
.yc1_c00474{bottom:404.745000px;}
.yc0_c00474{bottom:405.630000px;}
.ybe_c00474{bottom:406.470000px;}
.ybf_c00474{bottom:406.905000px;}
.yb9_c00474{bottom:424.245000px;}
.ybd_c00474{bottom:424.905000px;}
.ybb_c00474{bottom:425.130000px;}
.ybc_c00474{bottom:425.970000px;}
.yba_c00474{bottom:426.405000px;}
.yb5_c00474{bottom:443.745000px;}
.yb8_c00474{bottom:444.630000px;}
.yb7_c00474{bottom:445.905000px;}
.yb6_c00474{bottom:445.920000px;}
.yb4_c00474{bottom:462.405000px;}
.yaf_c00474{bottom:463.245000px;}
.yae_c00474{bottom:464.325000px;}
.yb3_c00474{bottom:464.745000px;}
.yb0_c00474{bottom:465.405000px;}
.yb2_c00474{bottom:465.630000px;}
.yb1_c00474{bottom:466.905000px;}
.yac_c00474{bottom:482.745000px;}
.ya8_c00474{bottom:484.245000px;}
.yad_c00474{bottom:484.905000px;}
.yab_c00474{bottom:485.130000px;}
.ya9_c00474{bottom:485.970000px;}
.yaa_c00474{bottom:486.405000px;}
.ya2_c00474{bottom:503.325000px;}
.ya3_c00474{bottom:503.745000px;}
.ya7_c00474{bottom:504.405000px;}
.ya6_c00474{bottom:504.630000px;}
.ya5_c00474{bottom:504.825000px;}
.ya4_c00474{bottom:505.905000px;}
.y9f_c00474{bottom:521.745000px;}
.y9b_c00474{bottom:523.245000px;}
.ya0_c00474{bottom:523.905000px;}
.ya1_c00474{bottom:524.130000px;}
.y9e_c00474{bottom:524.325000px;}
.y9d_c00474{bottom:524.970000px;}
.y9c_c00474{bottom:525.405000px;}
.y9a_c00474{bottom:540.405000px;}
.y98_c00474{bottom:542.325000px;}
.y96_c00474{bottom:542.745000px;}
.y99_c00474{bottom:543.405000px;}
.y97_c00474{bottom:543.630000px;}
.y95_c00474{bottom:543.825000px;}
.y94_c00474{bottom:544.905000px;}
.y93_c00474{bottom:561.180000px;}
.y91_c00474{bottom:561.405000px;}
.y8d_c00474{bottom:562.245000px;}
.y90_c00474{bottom:562.680000px;}
.y92_c00474{bottom:564.405000px;}
.y8e_c00474{bottom:564.630000px;}
.y8f_c00474{bottom:565.905000px;}
.y8a_c00474{bottom:583.245000px;}
.y8c_c00474{bottom:583.905000px;}
.y89_c00474{bottom:585.405000px;}
.y8b_c00474{bottom:586.470000px;}
.y88_c00474{bottom:601.245000px;}
.y83_c00474{bottom:601.470000px;}
.y85_c00474{bottom:602.745000px;}
.y82_c00474{bottom:603.405000px;}
.y86_c00474{bottom:603.630000px;}
.y87_c00474{bottom:603.825000px;}
.y84_c00474{bottom:604.905000px;}
.y7c_c00474{bottom:619.905000px;}
.y80_c00474{bottom:620.745000px;}
.y7e_c00474{bottom:621.825000px;}
.y7d_c00474{bottom:622.245000px;}
.y81_c00474{bottom:622.905000px;}
.y7f_c00474{bottom:623.130000px;}
.y7b_c00474{bottom:624.405000px;}
.y76_c00474{bottom:641.745000px;}
.y7a_c00474{bottom:643.050000px;}
.y78_c00474{bottom:643.245000px;}
.y75_c00474{bottom:643.470000px;}
.y74_c00474{bottom:643.905000px;}
.y79_c00474{bottom:644.130000px;}
.y77_c00474{bottom:644.970000px;}
.y6d_c00474{bottom:660.405000px;}
.y72_c00474{bottom:661.245000px;}
.y6e_c00474{bottom:662.325000px;}
.y6f_c00474{bottom:662.745000px;}
.y73_c00474{bottom:663.405000px;}
.y71_c00474{bottom:664.470000px;}
.y70_c00474{bottom:664.905000px;}
.y6c_c00474{bottom:679.905000px;}
.y6a_c00474{bottom:680.745000px;}
.y6b_c00474{bottom:682.245000px;}
.y67_c00474{bottom:682.905000px;}
.y69_c00474{bottom:683.130000px;}
.y68_c00474{bottom:683.970000px;}
.y62_c00474{bottom:700.245000px;}
.y65_c00474{bottom:701.325000px;}
.y66_c00474{bottom:701.745000px;}
.y60_c00474{bottom:702.405000px;}
.y63_c00474{bottom:702.630000px;}
.y61_c00474{bottom:703.470000px;}
.y64_c00474{bottom:703.905000px;}
.y5e_c00474{bottom:719.970000px;}
.y5d_c00474{bottom:720.825000px;}
.y5c_c00474{bottom:721.245000px;}
.y5f_c00474{bottom:721.905000px;}
.y5b_c00474{bottom:723.405000px;}
.y5a_c00474{bottom:739.905000px;}
.y57_c00474{bottom:740.745000px;}
.y58_c00474{bottom:741.825000px;}
.y59_c00474{bottom:742.905000px;}
.y54_c00474{bottom:760.245000px;}
.y56_c00474{bottom:761.130000px;}
.y55_c00474{bottom:761.970000px;}
.y51_c00474{bottom:762.405000px;}
.y52_c00474{bottom:762.420000px;}
.y53_c00474{bottom:763.470000px;}
.y4f_c00474{bottom:779.745000px;}
.y4e_c00474{bottom:780.630000px;}
.y50_c00474{bottom:781.470000px;}
.y4d_c00474{bottom:781.905000px;}
.y49_c00474{bottom:799.245000px;}
.y4c_c00474{bottom:800.325000px;}
.y4a_c00474{bottom:801.405000px;}
.y4b_c00474{bottom:801.630000px;}
.y47_c00474{bottom:818.745000px;}
.y44_c00474{bottom:820.245000px;}
.y48_c00474{bottom:820.905000px;}
.y46_c00474{bottom:821.130000px;}
.y45_c00474{bottom:822.405000px;}
.y43_c00474{bottom:838.245000px;}
.y42_c00474{bottom:839.745000px;}
.y3c_c00474{bottom:840.405000px;}
.y3e_c00474{bottom:840.630000px;}
.y40_c00474{bottom:840.825000px;}
.y3f_c00474{bottom:841.470000px;}
.y3d_c00474{bottom:841.905000px;}
.y41_c00474{bottom:842.970000px;}
.y38_c00474{bottom:858.180000px;}
.y35_c00474{bottom:858.825000px;}
.y3a_c00474{bottom:859.245000px;}
.y3b_c00474{bottom:859.905000px;}
.y39_c00474{bottom:860.130000px;}
.y36_c00474{bottom:860.970000px;}
.y37_c00474{bottom:861.405000px;}
.y33_c00474{bottom:877.470000px;}
.y32_c00474{bottom:878.745000px;}
.y34_c00474{bottom:879.630000px;}
.y31_c00474{bottom:880.905000px;}
.y2e_c00474{bottom:895.905000px;}
.y2c_c00474{bottom:898.245000px;}
.y30_c00474{bottom:898.905000px;}
.y2f_c00474{bottom:899.130000px;}
.y2b_c00474{bottom:900.405000px;}
.y2d_c00474{bottom:900.630000px;}
.y29_c00474{bottom:916.680000px;}
.y28_c00474{bottom:916.905000px;}
.y27_c00474{bottom:917.745000px;}
.y2a_c00474{bottom:918.405000px;}
.y26_c00474{bottom:918.825000px;}
.y25_c00474{bottom:919.905000px;}
.y24_c00474{bottom:939.405000px;}
.y21_c00474{bottom:956.325000px;}
.y1d_c00474{bottom:956.745000px;}
.y23_c00474{bottom:957.630000px;}
.y20_c00474{bottom:957.825000px;}
.y22_c00474{bottom:958.470000px;}
.y1c_c00474{bottom:958.905000px;}
.y1e_c00474{bottom:959.130000px;}
.y1f_c00474{bottom:959.970000px;}
.y18_c00474{bottom:976.245000px;}
.y19_c00474{bottom:977.325000px;}
.y1a_c00474{bottom:978.405000px;}
.y1b_c00474{bottom:978.630000px;}
.y14_c00474{bottom:995.745000px;}
.y13_c00474{bottom:996.825000px;}
.y17_c00474{bottom:997.245000px;}
.y15_c00474{bottom:997.905000px;}
.y16_c00474{bottom:998.130000px;}
.yf_c00474{bottom:1015.245000px;}
.y12_c00474{bottom:1016.745000px;}
.yd_c00474{bottom:1017.405000px;}
.y10_c00474{bottom:1017.630000px;}
.ye_c00474{bottom:1018.470000px;}
.y11_c00474{bottom:1018.905000px;}
.yb_c00474{bottom:1034.970000px;}
.y6_c00474{bottom:1036.245000px;}
.yc_c00474{bottom:1036.905000px;}
.y9_c00474{bottom:1037.130000px;}
.y8_c00474{bottom:1037.970000px;}
.ya_c00474{bottom:1038.405000px;}
.y7_c00474{bottom:1038.420000px;}
.y5_c00474{bottom:1057.905000px;}
.y4_c00474{bottom:1061.130000px;}
.y3_c00474{bottom:1062.405000px;}
.y2_c00474{bottom:1099.905000px;}
.y1_c00474{bottom:1100.550000px;}
.h5_c00474{height:4.206533px;}
.h3_c00474{height:23.025234px;}
.h1_c00474{height:25.091602px;}
.h6_c00474{height:31.364502px;}
.h2_c00474{height:35.571035px;}
.h7_c00474{height:39.777568px;}
.h4_c00474{height:43.910303px;}
.h8_c00474{height:48.116836px;}
.h0_c00474{height:1335.000000px;}
.w0_c00474{width:880.500000px;}
.x0_c00474{left:0.000000px;}
.x30_c00474{left:149.580000px;}
.x15_c00474{left:151.080000px;}
.xcc_c00474{left:153.000000px;}
.x6_c00474{left:166.080000px;}
.x88_c00474{left:167.145000px;}
.xf2_c00474{left:169.920000px;}
.x16_c00474{left:171.420000px;}
.xcd_c00474{left:173.580000px;}
.x5d_c00474{left:178.500000px;}
.xb9_c00474{left:180.000000px;}
.x103_c00474{left:183.420000px;}
.x3d_c00474{left:187.500000px;}
.x80_c00474{left:189.000000px;}
.xc7_c00474{left:190.500000px;}
.xa7_c00474{left:192.000000px;}
.x9e_c00474{left:193.500000px;}
.x96_c00474{left:197.580000px;}
.x23_c00474{left:202.920000px;}
.x73_c00474{left:205.080000px;}
.x4a_c00474{left:208.920000px;}
.x67_c00474{left:210.000000px;}
.x55_c00474{left:211.500000px;}
.xea_c00474{left:213.000000px;}
.x81_c00474{left:214.500000px;}
.x7b_c00474{left:216.420000px;}
.x31_c00474{left:220.500000px;}
.xce_c00474{left:223.080000px;}
.x74_c00474{left:225.420000px;}
.xa8_c00474{left:228.000000px;}
.x3e_c00474{left:229.500000px;}
.xd3_c00474{left:232.275000px;}
.xeb_c00474{left:235.920000px;}
.x68_c00474{left:237.000000px;}
.x89_c00474{left:238.500000px;}
.x7_c00474{left:240.000000px;}
.xf6_c00474{left:243.000000px;}
.x5e_c00474{left:244.920000px;}
.xa9_c00474{left:246.000000px;}
.xf0_c00474{left:247.500000px;}
.xe4_c00474{left:248.580000px;}
.x17_c00474{left:250.500000px;}
.x75_c00474{left:252.420000px;}
.xbf_c00474{left:253.500000px;}
.x24_c00474{left:256.920000px;}
.x8a_c00474{left:258.000000px;}
.x8_c00474{left:261.000000px;}
.xdd_c00474{left:262.080000px;}
.x82_c00474{left:264.000000px;}
.x32_c00474{left:265.500000px;}
.x100_c00474{left:268.500000px;}
.xba_c00474{left:271.920000px;}
.xd4_c00474{left:273.000000px;}
.xf4_c00474{left:274.500000px;}
.x5f_c00474{left:275.580000px;}
.x9_c00474{left:277.500000px;}
.x56_c00474{left:279.420000px;}
.x6f_c00474{left:282.000000px;}
.x18_c00474{left:283.500000px;}
.xf3_c00474{left:284.580000px;}
.x8f_c00474{left:286.500000px;}
.xfb_c00474{left:288.420000px;}
.x4b_c00474{left:289.500000px;}
.x69_c00474{left:290.580000px;}
.x8b_c00474{left:298.080000px;}
.x76_c00474{left:300.000000px;}
.x3f_c00474{left:301.500000px;}
.xd5_c00474{left:303.000000px;}
.x9f_c00474{left:304.080000px;}
.x57_c00474{left:306.000000px;}
.x33_c00474{left:307.080000px;}
.xd8_c00474{left:309.420000px;}
.x83_c00474{left:312.000000px;}
.xe5_c00474{left:313.500000px;}
.xaa_c00474{left:316.500000px;}
.xa_c00474{left:317.580000px;}
.x77_c00474{left:320.580000px;}
.xbb_c00474{left:322.500000px;}
.xa0_c00474{left:324.000000px;}
.x25_c00474{left:325.080000px;}
.x104_c00474{left:327.000000px;}
.x97_c00474{left:328.500000px;}
.x4c_c00474{left:330.420000px;}
.x19_c00474{left:331.500000px;}
.xc0_c00474{left:332.580000px;}
.xab_c00474{left:334.500000px;}
.xf1_c00474{left:336.420000px;}
.xf7_c00474{left:337.500000px;}
.xb_c00474{left:342.000000px;}
.x98_c00474{left:345.420000px;}
.xac_c00474{left:346.500000px;}
.xcf_c00474{left:347.580000px;}
.x6a_c00474{left:351.420000px;}
.x34_c00474{left:352.500000px;}
.x7c_c00474{left:353.580000px;}
.xd1_c00474{left:355.080000px;}
.x26_c00474{left:357.000000px;}
.x1a_c00474{left:358.500000px;}
.xa1_c00474{left:360.000000px;}
.x3_c00474{left:363.000000px;}
.xd9_c00474{left:367.920000px;}
.x35_c00474{left:372.420000px;}
.x4d_c00474{left:373.500000px;}
.xc_c00474{left:376.080000px;}
.x40_c00474{left:378.000000px;}
.x60_c00474{left:379.500000px;}
.xec_c00474{left:382.500000px;}
.x6b_c00474{left:384.420000px;}
.xd2_c00474{left:385.920000px;}
.xb3_c00474{left:388.500000px;}
.xad_c00474{left:390.420000px;}
.x70_c00474{left:391.500000px;}
.x90_c00474{left:392.775000px;}
.x105_c00474{left:394.920000px;}
.xc1_c00474{left:397.500000px;}
.x27_c00474{left:399.420000px;}
.xe8_c00474{left:400.500000px;}
.x61_c00474{left:401.580000px;}
.x1_c00474{left:405.000000px;}
.x36_c00474{left:406.500000px;}
.x84_c00474{left:408.420000px;}
.x1b_c00474{left:413.580000px;}
.xe1_c00474{left:416.775000px;}
.x4e_c00474{left:418.920000px;}
.xe6_c00474{left:420.000000px;}
.x7d_c00474{left:423.000000px;}
.x37_c00474{left:424.500000px;}
.x101_c00474{left:426.000000px;}
.x6c_c00474{left:427.500000px;}
.xfc_c00474{left:429.000000px;}
.x106_c00474{left:430.500000px;}
.xda_c00474{left:431.580000px;}
.x91_c00474{left:433.500000px;}
.xb4_c00474{left:435.420000px;}
.xae_c00474{left:436.500000px;}
.x62_c00474{left:438.420000px;}
.x28_c00474{left:439.500000px;}
.x4_c00474{left:441.000000px;}
.xd_c00474{left:443.580000px;}
.x1c_c00474{left:445.500000px;}
.x4f_c00474{left:448.500000px;}
.xd6_c00474{left:449.580000px;}
.x92_c00474{left:454.920000px;}
.x29_c00474{left:457.920000px;}
.x41_c00474{left:459.000000px;}
.xb5_c00474{left:460.500000px;}
.xc2_c00474{left:462.000000px;}
.x38_c00474{left:463.080000px;}
.x99_c00474{left:465.000000px;}
.xa2_c00474{left:466.920000px;}
.xc8_c00474{left:469.920000px;}
.xe_c00474{left:471.420000px;}
.xf8_c00474{left:472.920000px;}
.x7e_c00474{left:474.000000px;}
.x5_c00474{left:477.420000px;}
.x58_c00474{left:479.580000px;}
.x78_c00474{left:481.920000px;}
.xde_c00474{left:483.000000px;}
.x93_c00474{left:484.920000px;}
.x9a_c00474{left:486.000000px;}
.xe7_c00474{left:487.080000px;}
.xb6_c00474{left:489.000000px;}
.x63_c00474{left:490.080000px;}
.x39_c00474{left:493.500000px;}
.x42_c00474{left:494.580000px;}
.x6d_c00474{left:499.080000px;}
.xf9_c00474{left:501.000000px;}
.x2a_c00474{left:502.500000px;}
.xc9_c00474{left:503.580000px;}
.xb7_c00474{left:507.420000px;}
.xed_c00474{left:508.920000px;}
.x79_c00474{left:510.000000px;}
.xc3_c00474{left:511.920000px;}
.x43_c00474{left:513.000000px;}
.x9b_c00474{left:514.500000px;}
.x1d_c00474{left:516.000000px;}
.x50_c00474{left:517.080000px;}
.x2b_c00474{left:520.080000px;}
.xa3_c00474{left:522.420000px;}
.x71_c00474{left:523.500000px;}
.x94_c00474{left:529.080000px;}
.xf_c00474{left:532.920000px;}
.x44_c00474{left:535.920000px;}
.x51_c00474{left:538.500000px;}
.x85_c00474{left:541.500000px;}
.x6e_c00474{left:545.580000px;}
.x8c_c00474{left:547.500000px;}
.x1e_c00474{left:549.000000px;}
.xfd_c00474{left:550.500000px;}
.x59_c00474{left:556.080000px;}
.xaf_c00474{left:557.580000px;}
.xbc_c00474{left:562.500000px;}
.xdf_c00474{left:564.420000px;}
.xc4_c00474{left:567.000000px;}
.x102_c00474{left:568.500000px;}
.x10_c00474{left:570.420000px;}
.xa4_c00474{left:573.000000px;}
.xca_c00474{left:574.500000px;}
.xee_c00474{left:575.580000px;}
.xf5_c00474{left:577.275000px;}
.x5a_c00474{left:579.420000px;}
.x7f_c00474{left:580.500000px;}
.x2c_c00474{left:583.500000px;}
.x45_c00474{left:584.580000px;}
.xbd_c00474{left:586.500000px;}
.x52_c00474{left:587.580000px;}
.x1f_c00474{left:589.500000px;}
.x86_c00474{left:595.080000px;}
.x9c_c00474{left:598.920000px;}
.xfa_c00474{left:600.855000px;}
.x11_c00474{left:601.920000px;}
.x107_c00474{left:604.080000px;}
.x20_c00474{left:606.000000px;}
.x3a_c00474{left:609.000000px;}
.x64_c00474{left:610.500000px;}
.xef_c00474{left:612.000000px;}
.x87_c00474{left:613.920000px;}
.x5b_c00474{left:615.000000px;}
.x95_c00474{left:616.500000px;}
.x46_c00474{left:618.420000px;}
.x8d_c00474{left:620.775000px;}
.xdb_c00474{left:622.275000px;}
.xe2_c00474{left:624.420000px;}
.x3b_c00474{left:625.500000px;}
.xc5_c00474{left:628.500000px;}
.xfe_c00474{left:632.355000px;}
.x53_c00474{left:634.080000px;}
.xd0_c00474{left:637.080000px;}
.xb8_c00474{left:638.580000px;}
.x3c_c00474{left:640.920000px;}
.x7a_c00474{left:643.080000px;}
.x12_c00474{left:645.000000px;}
.xff_c00474{left:646.920000px;}
.xe3_c00474{left:649.080000px;}
.xb0_c00474{left:651.420000px;}
.x47_c00474{left:652.500000px;}
.x21_c00474{left:654.000000px;}
.x65_c00474{left:655.500000px;}
.x2d_c00474{left:658.500000px;}
.x8e_c00474{left:661.500000px;}
.x13_c00474{left:663.000000px;}
.xe9_c00474{left:664.080000px;}
.xa5_c00474{left:666.000000px;}
.xbe_c00474{left:668.580000px;}
.xcb_c00474{left:671.580000px;}
.x9d_c00474{left:673.080000px;}
.x14_c00474{left:675.000000px;}
.x48_c00474{left:681.000000px;}
.x72_c00474{left:682.920000px;}
.xa6_c00474{left:685.080000px;}
.xd7_c00474{left:688.500000px;}
.x2e_c00474{left:690.420000px;}
.xb1_c00474{left:693.420000px;}
.x5c_c00474{left:694.920000px;}
.xc6_c00474{left:696.000000px;}
.xe0_c00474{left:699.420000px;}
.x108_c00474{left:702.000000px;}
.x2_c00474{left:703.500000px;}
.x54_c00474{left:706.920000px;}
.x66_c00474{left:708.000000px;}
.xdc_c00474{left:714.000000px;}
.x22_c00474{left:715.500000px;}
.x2f_c00474{left:717.000000px;}
.x49_c00474{left:720.000000px;}
.xb2_c00474{left:726.000000px;}
@media print{
.v1_c00474{vertical-align:-10.666667pt;}
.v2_c00474{vertical-align:-5.333333pt;}
.v0_c00474{vertical-align:0.000000pt;}
.ls0_c00474{letter-spacing:0.000000pt;}
.ws0_c00474{word-spacing:-5.907501pt;}
.ws1_c00474{word-spacing:-5.046867pt;}
.ws2_c00474{word-spacing:0.000000pt;}
.fs4_c00474{font-size:3.040000pt;}
.fs2_c00474{font-size:16.640000pt;}
.fs0_c00474{font-size:18.133333pt;}
.fs5_c00474{font-size:22.666667pt;}
.fs1_c00474{font-size:25.706667pt;}
.fs6_c00474{font-size:28.746667pt;}
.fs3_c00474{font-size:31.733333pt;}
.fs7_c00474{font-size:34.773333pt;}
.y0_c00474{bottom:0.000000pt;}
.ydb_c00474{bottom:223.773333pt;}
.ydc_c00474{bottom:224.560000pt;}
.yda_c00474{bottom:225.693333pt;}
.yd6_c00474{bottom:241.106667pt;}
.yd8_c00474{bottom:243.026667pt;}
.yd7_c00474{bottom:243.040000pt;}
.yd9_c00474{bottom:243.226667pt;}
.yd3_c00474{bottom:260.733333pt;}
.yd0_c00474{bottom:261.693333pt;}
.yd5_c00474{bottom:261.893333pt;}
.yd1_c00474{bottom:262.266667pt;}
.yd4_c00474{bottom:262.640000pt;}
.yd2_c00474{bottom:263.600000pt;}
.ycf_c00474{bottom:278.066667pt;}
.ycd_c00474{bottom:278.266667pt;}
.ycc_c00474{bottom:279.026667pt;}
.yce_c00474{bottom:280.933333pt;}
.yca_c00474{bottom:291.600000pt;}
.yc9_c00474{bottom:292.360000pt;}
.ycb_c00474{bottom:294.266667pt;}
.yc8_c00474{bottom:310.440000pt;}
.yc7_c00474{bottom:313.306667pt;}
.yc6_c00474{bottom:313.693333pt;}
.yc2_c00474{bottom:342.440000pt;}
.yc4_c00474{bottom:343.973333pt;}
.yc5_c00474{bottom:344.360000pt;}
.yc3_c00474{bottom:344.373333pt;}
.yc1_c00474{bottom:359.773333pt;}
.yc0_c00474{bottom:360.560000pt;}
.ybe_c00474{bottom:361.306667pt;}
.ybf_c00474{bottom:361.693333pt;}
.yb9_c00474{bottom:377.106667pt;}
.ybd_c00474{bottom:377.693333pt;}
.ybb_c00474{bottom:377.893333pt;}
.ybc_c00474{bottom:378.640000pt;}
.yba_c00474{bottom:379.026667pt;}
.yb5_c00474{bottom:394.440000pt;}
.yb8_c00474{bottom:395.226667pt;}
.yb7_c00474{bottom:396.360000pt;}
.yb6_c00474{bottom:396.373333pt;}
.yb4_c00474{bottom:411.026667pt;}
.yaf_c00474{bottom:411.773333pt;}
.yae_c00474{bottom:412.733333pt;}
.yb3_c00474{bottom:413.106667pt;}
.yb0_c00474{bottom:413.693333pt;}
.yb2_c00474{bottom:413.893333pt;}
.yb1_c00474{bottom:415.026667pt;}
.yac_c00474{bottom:429.106667pt;}
.ya8_c00474{bottom:430.440000pt;}
.yad_c00474{bottom:431.026667pt;}
.yab_c00474{bottom:431.226667pt;}
.ya9_c00474{bottom:431.973333pt;}
.yaa_c00474{bottom:432.360000pt;}
.ya2_c00474{bottom:447.400000pt;}
.ya3_c00474{bottom:447.773333pt;}
.ya7_c00474{bottom:448.360000pt;}
.ya6_c00474{bottom:448.560000pt;}
.ya5_c00474{bottom:448.733333pt;}
.ya4_c00474{bottom:449.693333pt;}
.y9f_c00474{bottom:463.773333pt;}
.y9b_c00474{bottom:465.106667pt;}
.ya0_c00474{bottom:465.693333pt;}
.ya1_c00474{bottom:465.893333pt;}
.y9e_c00474{bottom:466.066667pt;}
.y9d_c00474{bottom:466.640000pt;}
.y9c_c00474{bottom:467.026667pt;}
.y9a_c00474{bottom:480.360000pt;}
.y98_c00474{bottom:482.066667pt;}
.y96_c00474{bottom:482.440000pt;}
.y99_c00474{bottom:483.026667pt;}
.y97_c00474{bottom:483.226667pt;}
.y95_c00474{bottom:483.400000pt;}
.y94_c00474{bottom:484.360000pt;}
.y93_c00474{bottom:498.826667pt;}
.y91_c00474{bottom:499.026667pt;}
.y8d_c00474{bottom:499.773333pt;}
.y90_c00474{bottom:500.160000pt;}
.y92_c00474{bottom:501.693333pt;}
.y8e_c00474{bottom:501.893333pt;}
.y8f_c00474{bottom:503.026667pt;}
.y8a_c00474{bottom:518.440000pt;}
.y8c_c00474{bottom:519.026667pt;}
.y89_c00474{bottom:520.360000pt;}
.y8b_c00474{bottom:521.306667pt;}
.y88_c00474{bottom:534.440000pt;}
.y83_c00474{bottom:534.640000pt;}
.y85_c00474{bottom:535.773333pt;}
.y82_c00474{bottom:536.360000pt;}
.y86_c00474{bottom:536.560000pt;}
.y87_c00474{bottom:536.733333pt;}
.y84_c00474{bottom:537.693333pt;}
.y7c_c00474{bottom:551.026667pt;}
.y80_c00474{bottom:551.773333pt;}
.y7e_c00474{bottom:552.733333pt;}
.y7d_c00474{bottom:553.106667pt;}
.y81_c00474{bottom:553.693333pt;}
.y7f_c00474{bottom:553.893333pt;}
.y7b_c00474{bottom:555.026667pt;}
.y76_c00474{bottom:570.440000pt;}
.y7a_c00474{bottom:571.600000pt;}
.y78_c00474{bottom:571.773333pt;}
.y75_c00474{bottom:571.973333pt;}
.y74_c00474{bottom:572.360000pt;}
.y79_c00474{bottom:572.560000pt;}
.y77_c00474{bottom:573.306667pt;}
.y6d_c00474{bottom:587.026667pt;}
.y72_c00474{bottom:587.773333pt;}
.y6e_c00474{bottom:588.733333pt;}
.y6f_c00474{bottom:589.106667pt;}
.y73_c00474{bottom:589.693333pt;}
.y71_c00474{bottom:590.640000pt;}
.y70_c00474{bottom:591.026667pt;}
.y6c_c00474{bottom:604.360000pt;}
.y6a_c00474{bottom:605.106667pt;}
.y6b_c00474{bottom:606.440000pt;}
.y67_c00474{bottom:607.026667pt;}
.y69_c00474{bottom:607.226667pt;}
.y68_c00474{bottom:607.973333pt;}
.y62_c00474{bottom:622.440000pt;}
.y65_c00474{bottom:623.400000pt;}
.y66_c00474{bottom:623.773333pt;}
.y60_c00474{bottom:624.360000pt;}
.y63_c00474{bottom:624.560000pt;}
.y61_c00474{bottom:625.306667pt;}
.y64_c00474{bottom:625.693333pt;}
.y5e_c00474{bottom:639.973333pt;}
.y5d_c00474{bottom:640.733333pt;}
.y5c_c00474{bottom:641.106667pt;}
.y5f_c00474{bottom:641.693333pt;}
.y5b_c00474{bottom:643.026667pt;}
.y5a_c00474{bottom:657.693333pt;}
.y57_c00474{bottom:658.440000pt;}
.y58_c00474{bottom:659.400000pt;}
.y59_c00474{bottom:660.360000pt;}
.y54_c00474{bottom:675.773333pt;}
.y56_c00474{bottom:676.560000pt;}
.y55_c00474{bottom:677.306667pt;}
.y51_c00474{bottom:677.693333pt;}
.y52_c00474{bottom:677.706667pt;}
.y53_c00474{bottom:678.640000pt;}
.y4f_c00474{bottom:693.106667pt;}
.y4e_c00474{bottom:693.893333pt;}
.y50_c00474{bottom:694.640000pt;}
.y4d_c00474{bottom:695.026667pt;}
.y49_c00474{bottom:710.440000pt;}
.y4c_c00474{bottom:711.400000pt;}
.y4a_c00474{bottom:712.360000pt;}
.y4b_c00474{bottom:712.560000pt;}
.y47_c00474{bottom:727.773333pt;}
.y44_c00474{bottom:729.106667pt;}
.y48_c00474{bottom:729.693333pt;}
.y46_c00474{bottom:729.893333pt;}
.y45_c00474{bottom:731.026667pt;}
.y43_c00474{bottom:745.106667pt;}
.y42_c00474{bottom:746.440000pt;}
.y3c_c00474{bottom:747.026667pt;}
.y3e_c00474{bottom:747.226667pt;}
.y40_c00474{bottom:747.400000pt;}
.y3f_c00474{bottom:747.973333pt;}
.y3d_c00474{bottom:748.360000pt;}
.y41_c00474{bottom:749.306667pt;}
.y38_c00474{bottom:762.826667pt;}
.y35_c00474{bottom:763.400000pt;}
.y3a_c00474{bottom:763.773333pt;}
.y3b_c00474{bottom:764.360000pt;}
.y39_c00474{bottom:764.560000pt;}
.y36_c00474{bottom:765.306667pt;}
.y37_c00474{bottom:765.693333pt;}
.y33_c00474{bottom:779.973333pt;}
.y32_c00474{bottom:781.106667pt;}
.y34_c00474{bottom:781.893333pt;}
.y31_c00474{bottom:783.026667pt;}
.y2e_c00474{bottom:796.360000pt;}
.y2c_c00474{bottom:798.440000pt;}
.y30_c00474{bottom:799.026667pt;}
.y2f_c00474{bottom:799.226667pt;}
.y2b_c00474{bottom:800.360000pt;}
.y2d_c00474{bottom:800.560000pt;}
.y29_c00474{bottom:814.826667pt;}
.y28_c00474{bottom:815.026667pt;}
.y27_c00474{bottom:815.773333pt;}
.y2a_c00474{bottom:816.360000pt;}
.y26_c00474{bottom:816.733333pt;}
.y25_c00474{bottom:817.693333pt;}
.y24_c00474{bottom:835.026667pt;}
.y21_c00474{bottom:850.066667pt;}
.y1d_c00474{bottom:850.440000pt;}
.y23_c00474{bottom:851.226667pt;}
.y20_c00474{bottom:851.400000pt;}
.y22_c00474{bottom:851.973333pt;}
.y1c_c00474{bottom:852.360000pt;}
.y1e_c00474{bottom:852.560000pt;}
.y1f_c00474{bottom:853.306667pt;}
.y18_c00474{bottom:867.773333pt;}
.y19_c00474{bottom:868.733333pt;}
.y1a_c00474{bottom:869.693333pt;}
.y1b_c00474{bottom:869.893333pt;}
.y14_c00474{bottom:885.106667pt;}
.y13_c00474{bottom:886.066667pt;}
.y17_c00474{bottom:886.440000pt;}
.y15_c00474{bottom:887.026667pt;}
.y16_c00474{bottom:887.226667pt;}
.yf_c00474{bottom:902.440000pt;}
.y12_c00474{bottom:903.773333pt;}
.yd_c00474{bottom:904.360000pt;}
.y10_c00474{bottom:904.560000pt;}
.ye_c00474{bottom:905.306667pt;}
.y11_c00474{bottom:905.693333pt;}
.yb_c00474{bottom:919.973333pt;}
.y6_c00474{bottom:921.106667pt;}
.yc_c00474{bottom:921.693333pt;}
.y9_c00474{bottom:921.893333pt;}
.y8_c00474{bottom:922.640000pt;}
.ya_c00474{bottom:923.026667pt;}
.y7_c00474{bottom:923.040000pt;}
.y5_c00474{bottom:940.360000pt;}
.y4_c00474{bottom:943.226667pt;}
.y3_c00474{bottom:944.360000pt;}
.y2_c00474{bottom:977.693333pt;}
.y1_c00474{bottom:978.266667pt;}
.h5_c00474{height:3.739141pt;}
.h3_c00474{height:20.466875pt;}
.h1_c00474{height:22.303646pt;}
.h6_c00474{height:27.879557pt;}
.h2_c00474{height:31.618698pt;}
.h7_c00474{height:35.357839pt;}
.h4_c00474{height:39.031380pt;}
.h8_c00474{height:42.770521pt;}
.h0_c00474{height:1186.666667pt;}
.w0_c00474{width:782.666667pt;}
.x0_c00474{left:0.000000pt;}
.x30_c00474{left:132.960000pt;}
.x15_c00474{left:134.293333pt;}
.xcc_c00474{left:136.000000pt;}
.x6_c00474{left:147.626667pt;}
.x88_c00474{left:148.573333pt;}
.xf2_c00474{left:151.040000pt;}
.x16_c00474{left:152.373333pt;}
.xcd_c00474{left:154.293333pt;}
.x5d_c00474{left:158.666667pt;}
.xb9_c00474{left:160.000000pt;}
.x103_c00474{left:163.040000pt;}
.x3d_c00474{left:166.666667pt;}
.x80_c00474{left:168.000000pt;}
.xc7_c00474{left:169.333333pt;}
.xa7_c00474{left:170.666667pt;}
.x9e_c00474{left:172.000000pt;}
.x96_c00474{left:175.626667pt;}
.x23_c00474{left:180.373333pt;}
.x73_c00474{left:182.293333pt;}
.x4a_c00474{left:185.706667pt;}
.x67_c00474{left:186.666667pt;}
.x55_c00474{left:188.000000pt;}
.xea_c00474{left:189.333333pt;}
.x81_c00474{left:190.666667pt;}
.x7b_c00474{left:192.373333pt;}
.x31_c00474{left:196.000000pt;}
.xce_c00474{left:198.293333pt;}
.x74_c00474{left:200.373333pt;}
.xa8_c00474{left:202.666667pt;}
.x3e_c00474{left:204.000000pt;}
.xd3_c00474{left:206.466667pt;}
.xeb_c00474{left:209.706667pt;}
.x68_c00474{left:210.666667pt;}
.x89_c00474{left:212.000000pt;}
.x7_c00474{left:213.333333pt;}
.xf6_c00474{left:216.000000pt;}
.x5e_c00474{left:217.706667pt;}
.xa9_c00474{left:218.666667pt;}
.xf0_c00474{left:220.000000pt;}
.xe4_c00474{left:220.960000pt;}
.x17_c00474{left:222.666667pt;}
.x75_c00474{left:224.373333pt;}
.xbf_c00474{left:225.333333pt;}
.x24_c00474{left:228.373333pt;}
.x8a_c00474{left:229.333333pt;}
.x8_c00474{left:232.000000pt;}
.xdd_c00474{left:232.960000pt;}
.x82_c00474{left:234.666667pt;}
.x32_c00474{left:236.000000pt;}
.x100_c00474{left:238.666667pt;}
.xba_c00474{left:241.706667pt;}
.xd4_c00474{left:242.666667pt;}
.xf4_c00474{left:244.000000pt;}
.x5f_c00474{left:244.960000pt;}
.x9_c00474{left:246.666667pt;}
.x56_c00474{left:248.373333pt;}
.x6f_c00474{left:250.666667pt;}
.x18_c00474{left:252.000000pt;}
.xf3_c00474{left:252.960000pt;}
.x8f_c00474{left:254.666667pt;}
.xfb_c00474{left:256.373333pt;}
.x4b_c00474{left:257.333333pt;}
.x69_c00474{left:258.293333pt;}
.x8b_c00474{left:264.960000pt;}
.x76_c00474{left:266.666667pt;}
.x3f_c00474{left:268.000000pt;}
.xd5_c00474{left:269.333333pt;}
.x9f_c00474{left:270.293333pt;}
.x57_c00474{left:272.000000pt;}
.x33_c00474{left:272.960000pt;}
.xd8_c00474{left:275.040000pt;}
.x83_c00474{left:277.333333pt;}
.xe5_c00474{left:278.666667pt;}
.xaa_c00474{left:281.333333pt;}
.xa_c00474{left:282.293333pt;}
.x77_c00474{left:284.960000pt;}
.xbb_c00474{left:286.666667pt;}
.xa0_c00474{left:288.000000pt;}
.x25_c00474{left:288.960000pt;}
.x104_c00474{left:290.666667pt;}
.x97_c00474{left:292.000000pt;}
.x4c_c00474{left:293.706667pt;}
.x19_c00474{left:294.666667pt;}
.xc0_c00474{left:295.626667pt;}
.xab_c00474{left:297.333333pt;}
.xf1_c00474{left:299.040000pt;}
.xf7_c00474{left:300.000000pt;}
.xb_c00474{left:304.000000pt;}
.x98_c00474{left:307.040000pt;}
.xac_c00474{left:308.000000pt;}
.xcf_c00474{left:308.960000pt;}
.x6a_c00474{left:312.373333pt;}
.x34_c00474{left:313.333333pt;}
.x7c_c00474{left:314.293333pt;}
.xd1_c00474{left:315.626667pt;}
.x26_c00474{left:317.333333pt;}
.x1a_c00474{left:318.666667pt;}
.xa1_c00474{left:320.000000pt;}
.x3_c00474{left:322.666667pt;}
.xd9_c00474{left:327.040000pt;}
.x35_c00474{left:331.040000pt;}
.x4d_c00474{left:332.000000pt;}
.xc_c00474{left:334.293333pt;}
.x40_c00474{left:336.000000pt;}
.x60_c00474{left:337.333333pt;}
.xec_c00474{left:340.000000pt;}
.x6b_c00474{left:341.706667pt;}
.xd2_c00474{left:343.040000pt;}
.xb3_c00474{left:345.333333pt;}
.xad_c00474{left:347.040000pt;}
.x70_c00474{left:348.000000pt;}
.x90_c00474{left:349.133333pt;}
.x105_c00474{left:351.040000pt;}
.xc1_c00474{left:353.333333pt;}
.x27_c00474{left:355.040000pt;}
.xe8_c00474{left:356.000000pt;}
.x61_c00474{left:356.960000pt;}
.x1_c00474{left:360.000000pt;}
.x36_c00474{left:361.333333pt;}
.x84_c00474{left:363.040000pt;}
.x1b_c00474{left:367.626667pt;}
.xe1_c00474{left:370.466667pt;}
.x4e_c00474{left:372.373333pt;}
.xe6_c00474{left:373.333333pt;}
.x7d_c00474{left:376.000000pt;}
.x37_c00474{left:377.333333pt;}
.x101_c00474{left:378.666667pt;}
.x6c_c00474{left:380.000000pt;}
.xfc_c00474{left:381.333333pt;}
.x106_c00474{left:382.666667pt;}
.xda_c00474{left:383.626667pt;}
.x91_c00474{left:385.333333pt;}
.xb4_c00474{left:387.040000pt;}
.xae_c00474{left:388.000000pt;}
.x62_c00474{left:389.706667pt;}
.x28_c00474{left:390.666667pt;}
.x4_c00474{left:392.000000pt;}
.xd_c00474{left:394.293333pt;}
.x1c_c00474{left:396.000000pt;}
.x4f_c00474{left:398.666667pt;}
.xd6_c00474{left:399.626667pt;}
.x92_c00474{left:404.373333pt;}
.x29_c00474{left:407.040000pt;}
.x41_c00474{left:408.000000pt;}
.xb5_c00474{left:409.333333pt;}
.xc2_c00474{left:410.666667pt;}
.x38_c00474{left:411.626667pt;}
.x99_c00474{left:413.333333pt;}
.xa2_c00474{left:415.040000pt;}
.xc8_c00474{left:417.706667pt;}
.xe_c00474{left:419.040000pt;}
.xf8_c00474{left:420.373333pt;}
.x7e_c00474{left:421.333333pt;}
.x5_c00474{left:424.373333pt;}
.x58_c00474{left:426.293333pt;}
.x78_c00474{left:428.373333pt;}
.xde_c00474{left:429.333333pt;}
.x93_c00474{left:431.040000pt;}
.x9a_c00474{left:432.000000pt;}
.xe7_c00474{left:432.960000pt;}
.xb6_c00474{left:434.666667pt;}
.x63_c00474{left:435.626667pt;}
.x39_c00474{left:438.666667pt;}
.x42_c00474{left:439.626667pt;}
.x6d_c00474{left:443.626667pt;}
.xf9_c00474{left:445.333333pt;}
.x2a_c00474{left:446.666667pt;}
.xc9_c00474{left:447.626667pt;}
.xb7_c00474{left:451.040000pt;}
.xed_c00474{left:452.373333pt;}
.x79_c00474{left:453.333333pt;}
.xc3_c00474{left:455.040000pt;}
.x43_c00474{left:456.000000pt;}
.x9b_c00474{left:457.333333pt;}
.x1d_c00474{left:458.666667pt;}
.x50_c00474{left:459.626667pt;}
.x2b_c00474{left:462.293333pt;}
.xa3_c00474{left:464.373333pt;}
.x71_c00474{left:465.333333pt;}
.x94_c00474{left:470.293333pt;}
.xf_c00474{left:473.706667pt;}
.x44_c00474{left:476.373333pt;}
.x51_c00474{left:478.666667pt;}
.x85_c00474{left:481.333333pt;}
.x6e_c00474{left:484.960000pt;}
.x8c_c00474{left:486.666667pt;}
.x1e_c00474{left:488.000000pt;}
.xfd_c00474{left:489.333333pt;}
.x59_c00474{left:494.293333pt;}
.xaf_c00474{left:495.626667pt;}
.xbc_c00474{left:500.000000pt;}
.xdf_c00474{left:501.706667pt;}
.xc4_c00474{left:504.000000pt;}
.x102_c00474{left:505.333333pt;}
.x10_c00474{left:507.040000pt;}
.xa4_c00474{left:509.333333pt;}
.xca_c00474{left:510.666667pt;}
.xee_c00474{left:511.626667pt;}
.xf5_c00474{left:513.133333pt;}
.x5a_c00474{left:515.040000pt;}
.x7f_c00474{left:516.000000pt;}
.x2c_c00474{left:518.666667pt;}
.x45_c00474{left:519.626667pt;}
.xbd_c00474{left:521.333333pt;}
.x52_c00474{left:522.293333pt;}
.x1f_c00474{left:524.000000pt;}
.x86_c00474{left:528.960000pt;}
.x9c_c00474{left:532.373333pt;}
.xfa_c00474{left:534.093333pt;}
.x11_c00474{left:535.040000pt;}
.x107_c00474{left:536.960000pt;}
.x20_c00474{left:538.666667pt;}
.x3a_c00474{left:541.333333pt;}
.x64_c00474{left:542.666667pt;}
.xef_c00474{left:544.000000pt;}
.x87_c00474{left:545.706667pt;}
.x5b_c00474{left:546.666667pt;}
.x95_c00474{left:548.000000pt;}
.x46_c00474{left:549.706667pt;}
.x8d_c00474{left:551.800000pt;}
.xdb_c00474{left:553.133333pt;}
.xe2_c00474{left:555.040000pt;}
.x3b_c00474{left:556.000000pt;}
.xc5_c00474{left:558.666667pt;}
.xfe_c00474{left:562.093333pt;}
.x53_c00474{left:563.626667pt;}
.xd0_c00474{left:566.293333pt;}
.xb8_c00474{left:567.626667pt;}
.x3c_c00474{left:569.706667pt;}
.x7a_c00474{left:571.626667pt;}
.x12_c00474{left:573.333333pt;}
.xff_c00474{left:575.040000pt;}
.xe3_c00474{left:576.960000pt;}
.xb0_c00474{left:579.040000pt;}
.x47_c00474{left:580.000000pt;}
.x21_c00474{left:581.333333pt;}
.x65_c00474{left:582.666667pt;}
.x2d_c00474{left:585.333333pt;}
.x8e_c00474{left:588.000000pt;}
.x13_c00474{left:589.333333pt;}
.xe9_c00474{left:590.293333pt;}
.xa5_c00474{left:592.000000pt;}
.xbe_c00474{left:594.293333pt;}
.xcb_c00474{left:596.960000pt;}
.x9d_c00474{left:598.293333pt;}
.x14_c00474{left:600.000000pt;}
.x48_c00474{left:605.333333pt;}
.x72_c00474{left:607.040000pt;}
.xa6_c00474{left:608.960000pt;}
.xd7_c00474{left:612.000000pt;}
.x2e_c00474{left:613.706667pt;}
.xb1_c00474{left:616.373333pt;}
.x5c_c00474{left:617.706667pt;}
.xc6_c00474{left:618.666667pt;}
.xe0_c00474{left:621.706667pt;}
.x108_c00474{left:624.000000pt;}
.x2_c00474{left:625.333333pt;}
.x54_c00474{left:628.373333pt;}
.x66_c00474{left:629.333333pt;}
.xdc_c00474{left:634.666667pt;}
.x22_c00474{left:636.000000pt;}
.x2f_c00474{left:637.333333pt;}
.x49_c00474{left:640.000000pt;}
.xb2_c00474{left:645.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_93e30d2e66a49a4c45259286.woff2')format("woff");}.ff1_c00475{font-family:ff1_c00475;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m10f_c00475{transform:matrix(0.333506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333506,0.000000,0.000000,0.250000,0,0);}
.m66_c00475{transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);}
.m102_c00475{transform:matrix(0.348739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348739,0.000000,0.000000,0.250000,0,0);}
.me6_c00475{transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);}
.m27_c00475{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m82_c00475{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m4f_c00475{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m0_c00475{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.ma_c00475{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m7f_c00475{transform:matrix(0.368865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368865,0.000000,0.000000,0.250000,0,0);}
.mf_c00475{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.ma8_c00475{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m41_c00475{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.mcc_c00475{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m7b_c00475{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mc_c00475{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m59_c00475{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.m10b_c00475{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.mb3_c00475{transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);}
.m7e_c00475{transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);}
.m107_c00475{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m72_c00475{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m1f_c00475{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m68_c00475{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m8_c00475{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m65_c00475{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m48_c00475{transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);}
.m105_c00475{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m10d_c00475{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m1b_c00475{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.md3_c00475{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.mce_c00475{transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);}
.m103_c00475{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.md8_c00475{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.m3f_c00475{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.m81_c00475{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mb_c00475{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m6f_c00475{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m120_c00475{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m10e_c00475{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.m53_c00475{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m4c_c00475{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m8e_c00475{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m116_c00475{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.me4_c00475{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.m18_c00475{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m7_c00475{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m4a_c00475{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.mf3_c00475{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m85_c00475{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m6_c00475{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m11f_c00475{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.me7_c00475{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m112_c00475{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m5f_c00475{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mbd_c00475{transform:matrix(0.416976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416976,0.000000,0.000000,0.250000,0,0);}
.m5d_c00475{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m101_c00475{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.mfc_c00475{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m9_c00475{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.mae_c00475{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.mc0_c00475{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m13_c00475{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mf1_c00475{transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);}
.m104_c00475{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m5e_c00475{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m77_c00475{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.md1_c00475{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.mac_c00475{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.mf2_c00475{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m24_c00475{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mfe_c00475{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mc4_c00475{transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);}
.med_c00475{transform:matrix(0.427647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427647,0.000000,0.000000,0.250000,0,0);}
.m35_c00475{transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);}
.m36_c00475{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m2c_c00475{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m92_c00475{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.md5_c00475{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m113_c00475{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m11d_c00475{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m122_c00475{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m1a_c00475{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m2_c00475{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.me5_c00475{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.ma9_c00475{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.mb5_c00475{transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);}
.m83_c00475{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m111_c00475{transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);}
.m8f_c00475{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.mcd_c00475{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.meb_c00475{transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);}
.m110_c00475{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m4d_c00475{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.ma1_c00475{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m10_c00475{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m74_c00475{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m3a_c00475{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.ma2_c00475{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.m7a_c00475{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m63_c00475{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m70_c00475{transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457983,0.000000,0.000000,0.250000,0,0);}
.mb8_c00475{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m1d_c00475{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m119_c00475{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.mbb_c00475{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m11e_c00475{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m88_c00475{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m99_c00475{transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);}
.m9a_c00475{transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);}
.m39_c00475{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.mc5_c00475{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.md0_c00475{transform:matrix(0.468824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468824,0.000000,0.000000,0.250000,0,0);}
.m115_c00475{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.mfd_c00475{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.mca_c00475{transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);}
.ma3_c00475{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.md9_c00475{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.mb1_c00475{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.me1_c00475{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.md6_c00475{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.m58_c00475{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m34_c00475{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.mb9_c00475{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m3b_c00475{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m8d_c00475{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.ma0_c00475{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.mc3_c00475{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.md4_c00475{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);}
.m2a_c00475{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.ma5_c00475{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m10a_c00475{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.mc8_c00475{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.mc9_c00475{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m5a_c00475{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);}
.m80_c00475{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.mfb_c00475{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m84_c00475{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m64_c00475{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m2f_c00475{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.md2_c00475{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.m47_c00475{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.mc6_c00475{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.mf4_c00475{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m45_c00475{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m2b_c00475{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mf6_c00475{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.mfa_c00475{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m1e_c00475{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mdc_c00475{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m57_c00475{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m5c_c00475{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m1c_c00475{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mb6_c00475{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);}
.m9f_c00475{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m78_c00475{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m90_c00475{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m100_c00475{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m9e_c00475{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m37_c00475{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m4e_c00475{transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);}
.m79_c00475{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mec_c00475{transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);}
.m46_c00475{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m60_c00475{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m2d_c00475{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mf0_c00475{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m61_c00475{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.ma7_c00475{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m26_c00475{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m8a_c00475{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.me9_c00475{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m91_c00475{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m5b_c00475{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m11a_c00475{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m15_c00475{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mb2_c00475{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m32_c00475{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.mf5_c00475{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m20_c00475{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m6b_c00475{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m14_c00475{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m75_c00475{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m50_c00475{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m11b_c00475{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mbf_c00475{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m7c_c00475{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m114_c00475{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m121_c00475{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m8b_c00475{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.mc2_c00475{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m42_c00475{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m109_c00475{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m38_c00475{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mc1_c00475{transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);}
.mf8_c00475{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m86_c00475{transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);}
.m93_c00475{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.mf7_c00475{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m28_c00475{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m87_c00475{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mb4_c00475{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.m23_c00475{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m3c_c00475{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m6d_c00475{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.me2_c00475{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mdb_c00475{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.m3_c00475{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m52_c00475{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m2e_c00475{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m25_c00475{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m4b_c00475{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m9c_c00475{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m6e_c00475{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m51_c00475{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m3e_c00475{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mdd_c00475{transform:matrix(0.575735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575735,0.000000,0.000000,0.250000,0,0);}
.m67_c00475{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m56_c00475{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m4_c00475{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mad_c00475{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m30_c00475{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mba_c00475{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m55_c00475{transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);}
.m29_c00475{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.mcb_c00475{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m5_c00475{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m11c_c00475{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.mc7_c00475{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.mbc_c00475{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m73_c00475{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m62_c00475{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m31_c00475{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m49_c00475{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.ma4_c00475{transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);}
.m44_c00475{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m33_c00475{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.me0_c00475{transform:matrix(0.619853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619853,0.000000,0.000000,0.250000,0,0);}
.mb7_c00475{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mef_c00475{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m1_c00475{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);}
.me_c00475{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);}
.m97_c00475{transform:matrix(0.627206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627206,0.000000,0.000000,0.250000,0,0);}
.m40_c00475{transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);}
.m6a_c00475{transform:matrix(0.628235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628235,0.000000,0.000000,0.250000,0,0);}
.mcf_c00475{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.mab_c00475{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.mdf_c00475{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m76_c00475{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.m117_c00475{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m3d_c00475{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.maa_c00475{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m54_c00475{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.maf_c00475{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.mf9_c00475{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m98_c00475{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.me8_c00475{transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);}
.md7_c00475{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.mda_c00475{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);}
.mff_c00475{transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);}
.mea_c00475{transform:matrix(0.652206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652206,0.000000,0.000000,0.250000,0,0);}
.m9b_c00475{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m9d_c00475{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.mbe_c00475{transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);}
.m89_c00475{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m69_c00475{transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);}
.m12_c00475{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mee_c00475{transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);}
.m95_c00475{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m96_c00475{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.ma6_c00475{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m8c_c00475{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.mb0_c00475{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);}
.m10c_c00475{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.md_c00475{transform:matrix(0.718824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.718824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.718824,0.000000,0.000000,0.250000,0,0);}
.m43_c00475{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m11_c00475{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m21_c00475{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m106_c00475{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m118_c00475{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m17_c00475{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m108_c00475{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m7d_c00475{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m16_c00475{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m6c_c00475{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m94_c00475{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m71_c00475{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.me3_c00475{transform:matrix(0.957048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.957048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.957048,0.000000,0.000000,0.250000,0,0);}
.mde_c00475{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m19_c00475{transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);}
.m22_c00475{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-5.176144px;}
.ws1_c00475{word-spacing:-1.132108px;}
.ws2_c00475{word-spacing:0.000000px;}
.fc0_c00475{color:transparent;}
.fs6_c00475{font-size:3.420000px;}
.fs8_c00475{font-size:13.620000px;}
.fs5_c00475{font-size:18.720000px;}
.fs1_c00475{font-size:20.400000px;}
.fs3_c00475{font-size:25.500000px;}
.fs2_c00475{font-size:28.920000px;}
.fs4_c00475{font-size:32.340000px;}
.fs0_c00475{font-size:35.700000px;}
.fs7_c00475{font-size:39.120000px;}
.y0_c00475{bottom:0.000000px;}
.yeb_c00475{bottom:251.130000px;}
.yec_c00475{bottom:251.745000px;}
.yea_c00475{bottom:252.405000px;}
.yed_c00475{bottom:252.630000px;}
.yee_c00475{bottom:253.905000px;}
.ye9_c00475{bottom:271.245000px;}
.ye6_c00475{bottom:271.905000px;}
.ye8_c00475{bottom:272.130000px;}
.ye7_c00475{bottom:273.405000px;}
.ye0_c00475{bottom:289.245000px;}
.ye5_c00475{bottom:289.470000px;}
.ye3_c00475{bottom:290.745000px;}
.ye2_c00475{bottom:291.630000px;}
.ye4_c00475{bottom:291.825000px;}
.ye1_c00475{bottom:292.905000px;}
.ydc_c00475{bottom:310.245000px;}
.ydf_c00475{bottom:311.130000px;}
.yde_c00475{bottom:311.325000px;}
.ydd_c00475{bottom:312.405000px;}
.yd9_c00475{bottom:327.405000px;}
.yd6_c00475{bottom:329.745000px;}
.yd8_c00475{bottom:330.630000px;}
.ydb_c00475{bottom:330.825000px;}
.yda_c00475{bottom:331.470000px;}
.yd5_c00475{bottom:331.905000px;}
.yd7_c00475{bottom:333.405000px;}
.yd0_c00475{bottom:349.245000px;}
.yd4_c00475{bottom:350.130000px;}
.yd3_c00475{bottom:350.970000px;}
.yd1_c00475{bottom:351.405000px;}
.yd2_c00475{bottom:351.630000px;}
.ycf_c00475{bottom:368.325000px;}
.yca_c00475{bottom:368.745000px;}
.ycb_c00475{bottom:369.825000px;}
.yce_c00475{bottom:370.905000px;}
.ycc_c00475{bottom:371.970000px;}
.ycd_c00475{bottom:372.405000px;}
.yc7_c00475{bottom:390.405000px;}
.yc9_c00475{bottom:391.470000px;}
.yc8_c00475{bottom:391.905000px;}
.yc5_c00475{bottom:406.905000px;}
.yc1_c00475{bottom:407.745000px;}
.yc4_c00475{bottom:409.245000px;}
.yc6_c00475{bottom:409.905000px;}
.yc3_c00475{bottom:411.405000px;}
.yc2_c00475{bottom:411.420000px;}
.yba_c00475{bottom:434.550000px;}
.ybc_c00475{bottom:435.825000px;}
.ybb_c00475{bottom:436.470000px;}
.ybe_c00475{bottom:436.905000px;}
.ybd_c00475{bottom:437.130000px;}
.ybf_c00475{bottom:438.195000px;}
.yc0_c00475{bottom:439.050000px;}
.yb4_c00475{bottom:450.630000px;}
.yb7_c00475{bottom:450.825000px;}
.yb5_c00475{bottom:451.695000px;}
.yb8_c00475{bottom:451.905000px;}
.yb6_c00475{bottom:452.550000px;}
.yb9_c00475{bottom:454.050000px;}
.yaf_c00475{bottom:464.325000px;}
.yb2_c00475{bottom:465.405000px;}
.yb3_c00475{bottom:466.470000px;}
.yb1_c00475{bottom:466.905000px;}
.yae_c00475{bottom:467.550000px;}
.yb0_c00475{bottom:467.970000px;}
.ya9_c00475{bottom:479.325000px;}
.yad_c00475{bottom:480.405000px;}
.ya8_c00475{bottom:481.470000px;}
.yab_c00475{bottom:481.695000px;}
.yaa_c00475{bottom:481.905000px;}
.yac_c00475{bottom:482.970000px;}
.ya1_c00475{bottom:494.550000px;}
.ya6_c00475{bottom:495.405000px;}
.ya7_c00475{bottom:496.470000px;}
.ya3_c00475{bottom:496.695000px;}
.ya4_c00475{bottom:496.905000px;}
.ya2_c00475{bottom:497.550000px;}
.ya5_c00475{bottom:498.195000px;}
.ya0_c00475{bottom:510.405000px;}
.y9f_c00475{bottom:523.905000px;}
.y9e_c00475{bottom:524.325000px;}
.y9b_c00475{bottom:524.550000px;}
.y99_c00475{bottom:525.405000px;}
.y9d_c00475{bottom:525.630000px;}
.y98_c00475{bottom:526.050000px;}
.y9c_c00475{bottom:526.470000px;}
.y9a_c00475{bottom:527.550000px;}
.y94_c00475{bottom:538.905000px;}
.y95_c00475{bottom:539.325000px;}
.y93_c00475{bottom:539.970000px;}
.y97_c00475{bottom:540.405000px;}
.y96_c00475{bottom:540.630000px;}
.y90_c00475{bottom:553.470000px;}
.y8e_c00475{bottom:554.325000px;}
.y8c_c00475{bottom:554.550000px;}
.y8f_c00475{bottom:555.405000px;}
.y92_c00475{bottom:555.630000px;}
.y91_c00475{bottom:556.470000px;}
.y8d_c00475{bottom:557.550000px;}
.y8a_c00475{bottom:568.905000px;}
.y87_c00475{bottom:569.550000px;}
.y88_c00475{bottom:569.970000px;}
.y89_c00475{bottom:570.405000px;}
.y8b_c00475{bottom:571.050000px;}
.y83_c00475{bottom:582.825000px;}
.y85_c00475{bottom:583.470000px;}
.y81_c00475{bottom:583.905000px;}
.y86_c00475{bottom:584.970000px;}
.y82_c00475{bottom:585.195000px;}
.y84_c00475{bottom:586.050000px;}
.y80_c00475{bottom:596.970000px;}
.y7a_c00475{bottom:598.050000px;}
.y7f_c00475{bottom:598.905000px;}
.y7c_c00475{bottom:599.325000px;}
.y7b_c00475{bottom:599.970000px;}
.y7e_c00475{bottom:600.195000px;}
.y7d_c00475{bottom:601.050000px;}
.y79_c00475{bottom:612.825000px;}
.y74_c00475{bottom:613.050000px;}
.y76_c00475{bottom:613.905000px;}
.y77_c00475{bottom:614.130000px;}
.y78_c00475{bottom:614.970000px;}
.y75_c00475{bottom:616.050000px;}
.y6e_c00475{bottom:627.825000px;}
.y73_c00475{bottom:628.050000px;}
.y70_c00475{bottom:628.905000px;}
.y6d_c00475{bottom:629.130000px;}
.y71_c00475{bottom:629.970000px;}
.y72_c00475{bottom:630.195000px;}
.y6f_c00475{bottom:631.050000px;}
.y6c_c00475{bottom:642.405000px;}
.y6b_c00475{bottom:642.825000px;}
.y67_c00475{bottom:643.905000px;}
.y6a_c00475{bottom:644.970000px;}
.y69_c00475{bottom:645.195000px;}
.y68_c00475{bottom:646.050000px;}
.y65_c00475{bottom:658.050000px;}
.y64_c00475{bottom:658.905000px;}
.y63_c00475{bottom:659.130000px;}
.y66_c00475{bottom:659.970000px;}
.y61_c00475{bottom:660.195000px;}
.y62_c00475{bottom:661.050000px;}
.y5f_c00475{bottom:685.245000px;}
.y60_c00475{bottom:687.405000px;}
.y5b_c00475{bottom:704.745000px;}
.y5c_c00475{bottom:705.630000px;}
.y5d_c00475{bottom:706.905000px;}
.y5e_c00475{bottom:707.970000px;}
.y58_c00475{bottom:724.245000px;}
.y59_c00475{bottom:725.130000px;}
.y56_c00475{bottom:725.325000px;}
.y5a_c00475{bottom:725.970000px;}
.y55_c00475{bottom:726.405000px;}
.y57_c00475{bottom:727.470000px;}
.y4f_c00475{bottom:743.745000px;}
.y54_c00475{bottom:744.630000px;}
.y51_c00475{bottom:744.825000px;}
.y53_c00475{bottom:745.470000px;}
.y52_c00475{bottom:745.905000px;}
.y50_c00475{bottom:746.130000px;}
.y49_c00475{bottom:762.405000px;}
.y4a_c00475{bottom:763.245000px;}
.y4d_c00475{bottom:763.680000px;}
.y4e_c00475{bottom:765.405000px;}
.y4c_c00475{bottom:765.630000px;}
.y4b_c00475{bottom:766.905000px;}
.y48_c00475{bottom:781.905000px;}
.y46_c00475{bottom:782.745000px;}
.y47_c00475{bottom:782.970000px;}
.y44_c00475{bottom:784.245000px;}
.y43_c00475{bottom:784.905000px;}
.y42_c00475{bottom:785.970000px;}
.y45_c00475{bottom:786.405000px;}
.y3d_c00475{bottom:802.245000px;}
.y41_c00475{bottom:804.405000px;}
.y40_c00475{bottom:804.630000px;}
.y3e_c00475{bottom:805.470000px;}
.y3f_c00475{bottom:805.905000px;}
.y3b_c00475{bottom:820.905000px;}
.y3c_c00475{bottom:822.180000px;}
.y3a_c00475{bottom:822.405000px;}
.y39_c00475{bottom:823.245000px;}
.y36_c00475{bottom:823.905000px;}
.y38_c00475{bottom:824.970000px;}
.y37_c00475{bottom:825.405000px;}
.y35_c00475{bottom:842.745000px;}
.y33_c00475{bottom:844.905000px;}
.y34_c00475{bottom:844.920000px;}
.y32_c00475{bottom:862.245000px;}
.y31_c00475{bottom:864.405000px;}
.y2f_c00475{bottom:881.745000px;}
.y2e_c00475{bottom:883.905000px;}
.y30_c00475{bottom:884.970000px;}
.y2a_c00475{bottom:901.245000px;}
.y2b_c00475{bottom:902.325000px;}
.y2c_c00475{bottom:902.745000px;}
.y2d_c00475{bottom:902.970000px;}
.y29_c00475{bottom:903.405000px;}
.y28_c00475{bottom:904.470000px;}
.y26_c00475{bottom:921.180000px;}
.y27_c00475{bottom:922.470000px;}
.y22_c00475{bottom:922.905000px;}
.y24_c00475{bottom:923.130000px;}
.y23_c00475{bottom:923.970000px;}
.y25_c00475{bottom:924.405000px;}
.y20_c00475{bottom:940.245000px;}
.y1d_c00475{bottom:941.325000px;}
.y21_c00475{bottom:943.470000px;}
.y1e_c00475{bottom:943.905000px;}
.y1f_c00475{bottom:944.970000px;}
.y18_c00475{bottom:960.825000px;}
.y1c_c00475{bottom:961.905000px;}
.y1b_c00475{bottom:962.325000px;}
.y19_c00475{bottom:962.970000px;}
.y1a_c00475{bottom:963.405000px;}
.y15_c00475{bottom:980.745000px;}
.y17_c00475{bottom:981.405000px;}
.y16_c00475{bottom:982.470000px;}
.y13_c00475{bottom:982.905000px;}
.y14_c00475{bottom:982.920000px;}
.y12_c00475{bottom:1000.245000px;}
.y10_c00475{bottom:1001.130000px;}
.yf_c00475{bottom:1002.405000px;}
.y11_c00475{bottom:1002.420000px;}
.ye_c00475{bottom:1018.905000px;}
.yb_c00475{bottom:1019.745000px;}
.yd_c00475{bottom:1020.825000px;}
.yc_c00475{bottom:1023.420000px;}
.y7_c00475{bottom:1039.245000px;}
.y9_c00475{bottom:1040.130000px;}
.y8_c00475{bottom:1040.325000px;}
.ya_c00475{bottom:1040.970000px;}
.y6_c00475{bottom:1041.405000px;}
.y5_c00475{bottom:1042.470000px;}
.y3_c00475{bottom:1058.745000px;}
.y4_c00475{bottom:1060.905000px;}
.y1_c00475{bottom:1097.745000px;}
.y2_c00475{bottom:1099.050000px;}
.h7_c00475{height:4.206533px;}
.h9_c00475{height:16.752334px;}
.h6_c00475{height:23.025234px;}
.h2_c00475{height:25.091602px;}
.h4_c00475{height:31.364502px;}
.h3_c00475{height:35.571035px;}
.h5_c00475{height:39.777568px;}
.h1_c00475{height:43.910303px;}
.h8_c00475{height:48.116836px;}
.h0_c00475{height:1335.000000px;}
.w0_c00475{width:880.500000px;}
.x0_c00475{left:0.000000px;}
.x1_c00475{left:151.500000px;}
.xd_c00475{left:153.000000px;}
.xae_c00475{left:166.500000px;}
.x29_c00475{left:167.580000px;}
.x1b_c00475{left:169.500000px;}
.xe9_c00475{left:172.920000px;}
.x84_c00475{left:177.000000px;}
.xe_c00475{left:178.500000px;}
.x48_c00475{left:179.580000px;}
.x50_c00475{left:182.580000px;}
.x79_c00475{left:184.500000px;}
.x34_c00475{left:185.580000px;}
.xff_c00475{left:189.000000px;}
.x63_c00475{left:190.920000px;}
.xbb_c00475{left:192.000000px;}
.xf_c00475{left:195.000000px;}
.x102_c00475{left:196.500000px;}
.x5a_c00475{left:197.580000px;}
.x51_c00475{left:200.580000px;}
.xbc_c00475{left:202.920000px;}
.x35_c00475{left:204.000000px;}
.xe1_c00475{left:205.500000px;}
.x8b_c00475{left:207.000000px;}
.xc3_c00475{left:208.080000px;}
.x5b_c00475{left:213.000000px;}
.xcb_c00475{left:216.420000px;}
.x64_c00475{left:217.500000px;}
.xee_c00475{left:219.000000px;}
.x3d_c00475{left:220.080000px;}
.xf7_c00475{left:222.420000px;}
.x73_c00475{left:226.080000px;}
.xa2_c00475{left:228.000000px;}
.xdc_c00475{left:229.080000px;}
.x3_c00475{left:232.500000px;}
.x98_c00475{left:237.000000px;}
.x103_c00475{left:241.500000px;}
.x7a_c00475{left:243.420000px;}
.xcd_c00475{left:244.920000px;}
.x23_c00475{left:249.000000px;}
.x3e_c00475{left:250.500000px;}
.x65_c00475{left:252.000000px;}
.xd4_c00475{left:253.500000px;}
.xbd_c00475{left:255.000000px;}
.xb4_c00475{left:256.500000px;}
.x1c_c00475{left:259.500000px;}
.x10_c00475{left:260.580000px;}
.x6d_c00475{left:262.500000px;}
.xc0_c00475{left:265.500000px;}
.x104_c00475{left:267.000000px;}
.xef_c00475{left:268.920000px;}
.x66_c00475{left:271.080000px;}
.xcc_c00475{left:272.580000px;}
.xdd_c00475{left:273.645000px;}
.x7b_c00475{left:276.000000px;}
.x3f_c00475{left:277.080000px;}
.x8c_c00475{left:279.000000px;}
.x1d_c00475{left:280.500000px;}
.x2a_c00475{left:282.000000px;}
.x49_c00475{left:285.000000px;}
.x52_c00475{left:286.080000px;}
.x85_c00475{left:288.000000px;}
.xa1_c00475{left:291.000000px;}
.x5c_c00475{left:292.275000px;}
.x99_c00475{left:294.000000px;}
.xf8_c00475{left:296.580000px;}
.x24_c00475{left:300.000000px;}
.x100_c00475{left:301.500000px;}
.x4_c00475{left:303.000000px;}
.xce_c00475{left:304.080000px;}
.xc4_c00475{left:306.000000px;}
.x40_c00475{left:307.080000px;}
.x7c_c00475{left:308.580000px;}
.x11_c00475{left:309.855000px;}
.x2b_c00475{left:312.000000px;}
.xd5_c00475{left:315.645000px;}
.xf9_c00475{left:316.920000px;}
.x36_c00475{left:318.000000px;}
.x5_c00475{left:319.500000px;}
.x25_c00475{left:322.080000px;}
.xea_c00475{left:323.580000px;}
.x7d_c00475{left:327.420000px;}
.x8d_c00475{left:328.920000px;}
.x74_c00475{left:330.645000px;}
.x4a_c00475{left:333.000000px;}
.x5d_c00475{left:334.500000px;}
.x9a_c00475{left:336.000000px;}
.xc5_c00475{left:338.580000px;}
.x12_c00475{left:340.500000px;}
.xb2_c00475{left:343.080000px;}
.x1e_c00475{left:344.775000px;}
.x26_c00475{left:348.000000px;}
.x4b_c00475{left:354.420000px;}
.xfc_c00475{left:355.500000px;}
.x6_c00475{left:356.580000px;}
.xa6_c00475{left:360.000000px;}
.xb5_c00475{left:361.500000px;}
.x2c_c00475{left:363.000000px;}
.x67_c00475{left:364.500000px;}
.xd8_c00475{left:367.500000px;}
.x93_c00475{left:368.580000px;}
.x6e_c00475{left:370.080000px;}
.x13_c00475{left:372.000000px;}
.x5e_c00475{left:373.500000px;}
.xe5_c00475{left:376.920000px;}
.xd9_c00475{left:378.000000px;}
.xde_c00475{left:379.500000px;}
.x4c_c00475{left:382.500000px;}
.x53_c00475{left:383.775000px;}
.x1f_c00475{left:385.080000px;}
.x41_c00475{left:388.500000px;}
.xaf_c00475{left:391.500000px;}
.x14_c00475{left:393.000000px;}
.x86_c00475{left:397.500000px;}
.x68_c00475{left:399.000000px;}
.xc6_c00475{left:404.580000px;}
.x42_c00475{left:406.500000px;}
.x2_c00475{left:408.000000px;}
.x9b_c00475{left:409.500000px;}
.x8e_c00475{left:412.500000px;}
.x27_c00475{left:414.000000px;}
.x37_c00475{left:415.500000px;}
.x75_c00475{left:417.000000px;}
.x20_c00475{left:420.420000px;}
.x7_c00475{left:421.920000px;}
.xe2_c00475{left:423.000000px;}
.x54_c00475{left:424.500000px;}
.x9c_c00475{left:427.920000px;}
.xf4_c00475{left:429.000000px;}
.xa7_c00475{left:430.080000px;}
.x2d_c00475{left:431.580000px;}
.xbe_c00475{left:433.500000px;}
.x69_c00475{left:435.000000px;}
.x76_c00475{left:438.000000px;}
.x5f_c00475{left:440.580000px;}
.x4d_c00475{left:443.580000px;}
.xeb_c00475{left:445.500000px;}
.xc1_c00475{left:446.580000px;}
.x6f_c00475{left:448.080000px;}
.x15_c00475{left:449.580000px;}
.xb6_c00475{left:451.500000px;}
.x9d_c00475{left:453.420000px;}
.xe6_c00475{left:456.000000px;}
.x28_c00475{left:458.145000px;}
.x21_c00475{left:462.420000px;}
.x38_c00475{left:465.420000px;}
.xcf_c00475{left:466.500000px;}
.xe3_c00475{left:467.580000px;}
.x87_c00475{left:469.500000px;}
.x43_c00475{left:470.580000px;}
.x55_c00475{left:472.500000px;}
.x4e_c00475{left:474.000000px;}
.xb3_c00475{left:475.500000px;}
.x7e_c00475{left:477.000000px;}
.xec_c00475{left:478.500000px;}
.x2e_c00475{left:481.500000px;}
.x8_c00475{left:484.080000px;}
.xdf_c00475{left:486.000000px;}
.x8f_c00475{left:487.920000px;}
.xbf_c00475{left:490.500000px;}
.x39_c00475{left:493.920000px;}
.xda_c00475{left:495.000000px;}
.xf5_c00475{left:496.500000px;}
.xa8_c00475{left:498.000000px;}
.x44_c00475{left:499.920000px;}
.xd0_c00475{left:501.000000px;}
.x22_c00475{left:505.275000px;}
.x2f_c00475{left:508.080000px;}
.x9e_c00475{left:510.000000px;}
.x9_c00475{left:511.500000px;}
.x6a_c00475{left:513.000000px;}
.xfd_c00475{left:514.920000px;}
.x7f_c00475{left:516.000000px;}
.xe4_c00475{left:517.920000px;}
.x60_c00475{left:519.000000px;}
.x94_c00475{left:522.420000px;}
.x105_c00475{left:523.500000px;}
.xdb_c00475{left:524.580000px;}
.x90_c00475{left:526.920000px;}
.xfa_c00475{left:528.000000px;}
.x70_c00475{left:532.920000px;}
.xa3_c00475{left:534.420000px;}
.xb7_c00475{left:535.500000px;}
.x80_c00475{left:537.000000px;}
.x88_c00475{left:539.580000px;}
.xf0_c00475{left:541.500000px;}
.xa9_c00475{left:542.580000px;}
.x30_c00475{left:544.080000px;}
.x77_c00475{left:547.080000px;}
.x56_c00475{left:549.000000px;}
.x16_c00475{left:551.580000px;}
.x91_c00475{left:553.500000px;}
.xe7_c00475{left:554.580000px;}
.x3a_c00475{left:556.500000px;}
.xd1_c00475{left:558.420000px;}
.x89_c00475{left:559.920000px;}
.x45_c00475{left:561.000000px;}
.xc7_c00475{left:564.000000px;}
.x95_c00475{left:567.000000px;}
.xd2_c00475{left:570.000000px;}
.xaa_c00475{left:571.080000px;}
.x71_c00475{left:573.000000px;}
.xf1_c00475{left:575.580000px;}
.xa_c00475{left:577.080000px;}
.xb0_c00475{left:580.080000px;}
.x6b_c00475{left:585.000000px;}
.x96_c00475{left:586.080000px;}
.x81_c00475{left:589.080000px;}
.x46_c00475{left:591.000000px;}
.x61_c00475{left:595.500000px;}
.xb8_c00475{left:597.000000px;}
.xc8_c00475{left:599.580000px;}
.x9f_c00475{left:601.500000px;}
.x17_c00475{left:604.500000px;}
.x31_c00475{left:607.920000px;}
.xfe_c00475{left:609.000000px;}
.xb_c00475{left:610.080000px;}
.x62_c00475{left:613.920000px;}
.xab_c00475{left:615.000000px;}
.xa4_c00475{left:621.000000px;}
.xf2_c00475{left:622.080000px;}
.xfb_c00475{left:623.580000px;}
.xc9_c00475{left:627.000000px;}
.xb9_c00475{left:628.920000px;}
.x57_c00475{left:630.420000px;}
.x101_c00475{left:631.500000px;}
.x3b_c00475{left:635.580000px;}
.xa0_c00475{left:638.580000px;}
.x18_c00475{left:640.500000px;}
.x32_c00475{left:643.920000px;}
.xac_c00475{left:645.420000px;}
.x8a_c00475{left:646.500000px;}
.xb1_c00475{left:649.500000px;}
.x19_c00475{left:655.500000px;}
.x106_c00475{left:658.920000px;}
.x47_c00475{left:660.000000px;}
.x82_c00475{left:662.580000px;}
.x72_c00475{left:664.500000px;}
.x78_c00475{left:669.420000px;}
.x33_c00475{left:670.500000px;}
.xad_c00475{left:672.000000px;}
.xe8_c00475{left:673.500000px;}
.x92_c00475{left:675.420000px;}
.xf3_c00475{left:676.500000px;}
.xd3_c00475{left:678.000000px;}
.xd6_c00475{left:679.500000px;}
.xc2_c00475{left:680.580000px;}
.x6c_c00475{left:684.000000px;}
.xca_c00475{left:685.500000px;}
.x1a_c00475{left:688.500000px;}
.x107_c00475{left:691.500000px;}
.x58_c00475{left:692.580000px;}
.xc_c00475{left:695.775000px;}
.xf6_c00475{left:697.500000px;}
.xed_c00475{left:700.920000px;}
.xe0_c00475{left:702.000000px;}
.x3c_c00475{left:703.080000px;}
.xba_c00475{left:707.580000px;}
.x83_c00475{left:709.080000px;}
.xa5_c00475{left:711.000000px;}
.x59_c00475{left:714.000000px;}
.x4f_c00475{left:715.500000px;}
.xd7_c00475{left:718.920000px;}
.x97_c00475{left:720.000000px;}
.x108_c00475{left:723.000000px;}
@media print{
.v0_c00475{vertical-align:0.000000pt;}
.ls0_c00475{letter-spacing:0.000000pt;}
.ws0_c00475{word-spacing:-4.601017pt;}
.ws1_c00475{word-spacing:-1.006319pt;}
.ws2_c00475{word-spacing:0.000000pt;}
.fs6_c00475{font-size:3.040000pt;}
.fs8_c00475{font-size:12.106667pt;}
.fs5_c00475{font-size:16.640000pt;}
.fs1_c00475{font-size:18.133333pt;}
.fs3_c00475{font-size:22.666667pt;}
.fs2_c00475{font-size:25.706667pt;}
.fs4_c00475{font-size:28.746667pt;}
.fs0_c00475{font-size:31.733333pt;}
.fs7_c00475{font-size:34.773333pt;}
.y0_c00475{bottom:0.000000pt;}
.yeb_c00475{bottom:223.226667pt;}
.yec_c00475{bottom:223.773333pt;}
.yea_c00475{bottom:224.360000pt;}
.yed_c00475{bottom:224.560000pt;}
.yee_c00475{bottom:225.693333pt;}
.ye9_c00475{bottom:241.106667pt;}
.ye6_c00475{bottom:241.693333pt;}
.ye8_c00475{bottom:241.893333pt;}
.ye7_c00475{bottom:243.026667pt;}
.ye0_c00475{bottom:257.106667pt;}
.ye5_c00475{bottom:257.306667pt;}
.ye3_c00475{bottom:258.440000pt;}
.ye2_c00475{bottom:259.226667pt;}
.ye4_c00475{bottom:259.400000pt;}
.ye1_c00475{bottom:260.360000pt;}
.ydc_c00475{bottom:275.773333pt;}
.ydf_c00475{bottom:276.560000pt;}
.yde_c00475{bottom:276.733333pt;}
.ydd_c00475{bottom:277.693333pt;}
.yd9_c00475{bottom:291.026667pt;}
.yd6_c00475{bottom:293.106667pt;}
.yd8_c00475{bottom:293.893333pt;}
.ydb_c00475{bottom:294.066667pt;}
.yda_c00475{bottom:294.640000pt;}
.yd5_c00475{bottom:295.026667pt;}
.yd7_c00475{bottom:296.360000pt;}
.yd0_c00475{bottom:310.440000pt;}
.yd4_c00475{bottom:311.226667pt;}
.yd3_c00475{bottom:311.973333pt;}
.yd1_c00475{bottom:312.360000pt;}
.yd2_c00475{bottom:312.560000pt;}
.ycf_c00475{bottom:327.400000pt;}
.yca_c00475{bottom:327.773333pt;}
.ycb_c00475{bottom:328.733333pt;}
.yce_c00475{bottom:329.693333pt;}
.ycc_c00475{bottom:330.640000pt;}
.ycd_c00475{bottom:331.026667pt;}
.yc7_c00475{bottom:347.026667pt;}
.yc9_c00475{bottom:347.973333pt;}
.yc8_c00475{bottom:348.360000pt;}
.yc5_c00475{bottom:361.693333pt;}
.yc1_c00475{bottom:362.440000pt;}
.yc4_c00475{bottom:363.773333pt;}
.yc6_c00475{bottom:364.360000pt;}
.yc3_c00475{bottom:365.693333pt;}
.yc2_c00475{bottom:365.706667pt;}
.yba_c00475{bottom:386.266667pt;}
.ybc_c00475{bottom:387.400000pt;}
.ybb_c00475{bottom:387.973333pt;}
.ybe_c00475{bottom:388.360000pt;}
.ybd_c00475{bottom:388.560000pt;}
.ybf_c00475{bottom:389.506667pt;}
.yc0_c00475{bottom:390.266667pt;}
.yb4_c00475{bottom:400.560000pt;}
.yb7_c00475{bottom:400.733333pt;}
.yb5_c00475{bottom:401.506667pt;}
.yb8_c00475{bottom:401.693333pt;}
.yb6_c00475{bottom:402.266667pt;}
.yb9_c00475{bottom:403.600000pt;}
.yaf_c00475{bottom:412.733333pt;}
.yb2_c00475{bottom:413.693333pt;}
.yb3_c00475{bottom:414.640000pt;}
.yb1_c00475{bottom:415.026667pt;}
.yae_c00475{bottom:415.600000pt;}
.yb0_c00475{bottom:415.973333pt;}
.ya9_c00475{bottom:426.066667pt;}
.yad_c00475{bottom:427.026667pt;}
.ya8_c00475{bottom:427.973333pt;}
.yab_c00475{bottom:428.173333pt;}
.yaa_c00475{bottom:428.360000pt;}
.yac_c00475{bottom:429.306667pt;}
.ya1_c00475{bottom:439.600000pt;}
.ya6_c00475{bottom:440.360000pt;}
.ya7_c00475{bottom:441.306667pt;}
.ya3_c00475{bottom:441.506667pt;}
.ya4_c00475{bottom:441.693333pt;}
.ya2_c00475{bottom:442.266667pt;}
.ya5_c00475{bottom:442.840000pt;}
.ya0_c00475{bottom:453.693333pt;}
.y9f_c00475{bottom:465.693333pt;}
.y9e_c00475{bottom:466.066667pt;}
.y9b_c00475{bottom:466.266667pt;}
.y99_c00475{bottom:467.026667pt;}
.y9d_c00475{bottom:467.226667pt;}
.y98_c00475{bottom:467.600000pt;}
.y9c_c00475{bottom:467.973333pt;}
.y9a_c00475{bottom:468.933333pt;}
.y94_c00475{bottom:479.026667pt;}
.y95_c00475{bottom:479.400000pt;}
.y93_c00475{bottom:479.973333pt;}
.y97_c00475{bottom:480.360000pt;}
.y96_c00475{bottom:480.560000pt;}
.y90_c00475{bottom:491.973333pt;}
.y8e_c00475{bottom:492.733333pt;}
.y8c_c00475{bottom:492.933333pt;}
.y8f_c00475{bottom:493.693333pt;}
.y92_c00475{bottom:493.893333pt;}
.y91_c00475{bottom:494.640000pt;}
.y8d_c00475{bottom:495.600000pt;}
.y8a_c00475{bottom:505.693333pt;}
.y87_c00475{bottom:506.266667pt;}
.y88_c00475{bottom:506.640000pt;}
.y89_c00475{bottom:507.026667pt;}
.y8b_c00475{bottom:507.600000pt;}
.y83_c00475{bottom:518.066667pt;}
.y85_c00475{bottom:518.640000pt;}
.y81_c00475{bottom:519.026667pt;}
.y86_c00475{bottom:519.973333pt;}
.y82_c00475{bottom:520.173333pt;}
.y84_c00475{bottom:520.933333pt;}
.y80_c00475{bottom:530.640000pt;}
.y7a_c00475{bottom:531.600000pt;}
.y7f_c00475{bottom:532.360000pt;}
.y7c_c00475{bottom:532.733333pt;}
.y7b_c00475{bottom:533.306667pt;}
.y7e_c00475{bottom:533.506667pt;}
.y7d_c00475{bottom:534.266667pt;}
.y79_c00475{bottom:544.733333pt;}
.y74_c00475{bottom:544.933333pt;}
.y76_c00475{bottom:545.693333pt;}
.y77_c00475{bottom:545.893333pt;}
.y78_c00475{bottom:546.640000pt;}
.y75_c00475{bottom:547.600000pt;}
.y6e_c00475{bottom:558.066667pt;}
.y73_c00475{bottom:558.266667pt;}
.y70_c00475{bottom:559.026667pt;}
.y6d_c00475{bottom:559.226667pt;}
.y71_c00475{bottom:559.973333pt;}
.y72_c00475{bottom:560.173333pt;}
.y6f_c00475{bottom:560.933333pt;}
.y6c_c00475{bottom:571.026667pt;}
.y6b_c00475{bottom:571.400000pt;}
.y67_c00475{bottom:572.360000pt;}
.y6a_c00475{bottom:573.306667pt;}
.y69_c00475{bottom:573.506667pt;}
.y68_c00475{bottom:574.266667pt;}
.y65_c00475{bottom:584.933333pt;}
.y64_c00475{bottom:585.693333pt;}
.y63_c00475{bottom:585.893333pt;}
.y66_c00475{bottom:586.640000pt;}
.y61_c00475{bottom:586.840000pt;}
.y62_c00475{bottom:587.600000pt;}
.y5f_c00475{bottom:609.106667pt;}
.y60_c00475{bottom:611.026667pt;}
.y5b_c00475{bottom:626.440000pt;}
.y5c_c00475{bottom:627.226667pt;}
.y5d_c00475{bottom:628.360000pt;}
.y5e_c00475{bottom:629.306667pt;}
.y58_c00475{bottom:643.773333pt;}
.y59_c00475{bottom:644.560000pt;}
.y56_c00475{bottom:644.733333pt;}
.y5a_c00475{bottom:645.306667pt;}
.y55_c00475{bottom:645.693333pt;}
.y57_c00475{bottom:646.640000pt;}
.y4f_c00475{bottom:661.106667pt;}
.y54_c00475{bottom:661.893333pt;}
.y51_c00475{bottom:662.066667pt;}
.y53_c00475{bottom:662.640000pt;}
.y52_c00475{bottom:663.026667pt;}
.y50_c00475{bottom:663.226667pt;}
.y49_c00475{bottom:677.693333pt;}
.y4a_c00475{bottom:678.440000pt;}
.y4d_c00475{bottom:678.826667pt;}
.y4e_c00475{bottom:680.360000pt;}
.y4c_c00475{bottom:680.560000pt;}
.y4b_c00475{bottom:681.693333pt;}
.y48_c00475{bottom:695.026667pt;}
.y46_c00475{bottom:695.773333pt;}
.y47_c00475{bottom:695.973333pt;}
.y44_c00475{bottom:697.106667pt;}
.y43_c00475{bottom:697.693333pt;}
.y42_c00475{bottom:698.640000pt;}
.y45_c00475{bottom:699.026667pt;}
.y3d_c00475{bottom:713.106667pt;}
.y41_c00475{bottom:715.026667pt;}
.y40_c00475{bottom:715.226667pt;}
.y3e_c00475{bottom:715.973333pt;}
.y3f_c00475{bottom:716.360000pt;}
.y3b_c00475{bottom:729.693333pt;}
.y3c_c00475{bottom:730.826667pt;}
.y3a_c00475{bottom:731.026667pt;}
.y39_c00475{bottom:731.773333pt;}
.y36_c00475{bottom:732.360000pt;}
.y38_c00475{bottom:733.306667pt;}
.y37_c00475{bottom:733.693333pt;}
.y35_c00475{bottom:749.106667pt;}
.y33_c00475{bottom:751.026667pt;}
.y34_c00475{bottom:751.040000pt;}
.y32_c00475{bottom:766.440000pt;}
.y31_c00475{bottom:768.360000pt;}
.y2f_c00475{bottom:783.773333pt;}
.y2e_c00475{bottom:785.693333pt;}
.y30_c00475{bottom:786.640000pt;}
.y2a_c00475{bottom:801.106667pt;}
.y2b_c00475{bottom:802.066667pt;}
.y2c_c00475{bottom:802.440000pt;}
.y2d_c00475{bottom:802.640000pt;}
.y29_c00475{bottom:803.026667pt;}
.y28_c00475{bottom:803.973333pt;}
.y26_c00475{bottom:818.826667pt;}
.y27_c00475{bottom:819.973333pt;}
.y22_c00475{bottom:820.360000pt;}
.y24_c00475{bottom:820.560000pt;}
.y23_c00475{bottom:821.306667pt;}
.y25_c00475{bottom:821.693333pt;}
.y20_c00475{bottom:835.773333pt;}
.y1d_c00475{bottom:836.733333pt;}
.y21_c00475{bottom:838.640000pt;}
.y1e_c00475{bottom:839.026667pt;}
.y1f_c00475{bottom:839.973333pt;}
.y18_c00475{bottom:854.066667pt;}
.y1c_c00475{bottom:855.026667pt;}
.y1b_c00475{bottom:855.400000pt;}
.y19_c00475{bottom:855.973333pt;}
.y1a_c00475{bottom:856.360000pt;}
.y15_c00475{bottom:871.773333pt;}
.y17_c00475{bottom:872.360000pt;}
.y16_c00475{bottom:873.306667pt;}
.y13_c00475{bottom:873.693333pt;}
.y14_c00475{bottom:873.706667pt;}
.y12_c00475{bottom:889.106667pt;}
.y10_c00475{bottom:889.893333pt;}
.yf_c00475{bottom:891.026667pt;}
.y11_c00475{bottom:891.040000pt;}
.ye_c00475{bottom:905.693333pt;}
.yb_c00475{bottom:906.440000pt;}
.yd_c00475{bottom:907.400000pt;}
.yc_c00475{bottom:909.706667pt;}
.y7_c00475{bottom:923.773333pt;}
.y9_c00475{bottom:924.560000pt;}
.y8_c00475{bottom:924.733333pt;}
.ya_c00475{bottom:925.306667pt;}
.y6_c00475{bottom:925.693333pt;}
.y5_c00475{bottom:926.640000pt;}
.y3_c00475{bottom:941.106667pt;}
.y4_c00475{bottom:943.026667pt;}
.y1_c00475{bottom:975.773333pt;}
.y2_c00475{bottom:976.933333pt;}
.h7_c00475{height:3.739141pt;}
.h9_c00475{height:14.890964pt;}
.h6_c00475{height:20.466875pt;}
.h2_c00475{height:22.303646pt;}
.h4_c00475{height:27.879557pt;}
.h3_c00475{height:31.618698pt;}
.h5_c00475{height:35.357839pt;}
.h1_c00475{height:39.031380pt;}
.h8_c00475{height:42.770521pt;}
.h0_c00475{height:1186.666667pt;}
.w0_c00475{width:782.666667pt;}
.x0_c00475{left:0.000000pt;}
.x1_c00475{left:134.666667pt;}
.xd_c00475{left:136.000000pt;}
.xae_c00475{left:148.000000pt;}
.x29_c00475{left:148.960000pt;}
.x1b_c00475{left:150.666667pt;}
.xe9_c00475{left:153.706667pt;}
.x84_c00475{left:157.333333pt;}
.xe_c00475{left:158.666667pt;}
.x48_c00475{left:159.626667pt;}
.x50_c00475{left:162.293333pt;}
.x79_c00475{left:164.000000pt;}
.x34_c00475{left:164.960000pt;}
.xff_c00475{left:168.000000pt;}
.x63_c00475{left:169.706667pt;}
.xbb_c00475{left:170.666667pt;}
.xf_c00475{left:173.333333pt;}
.x102_c00475{left:174.666667pt;}
.x5a_c00475{left:175.626667pt;}
.x51_c00475{left:178.293333pt;}
.xbc_c00475{left:180.373333pt;}
.x35_c00475{left:181.333333pt;}
.xe1_c00475{left:182.666667pt;}
.x8b_c00475{left:184.000000pt;}
.xc3_c00475{left:184.960000pt;}
.x5b_c00475{left:189.333333pt;}
.xcb_c00475{left:192.373333pt;}
.x64_c00475{left:193.333333pt;}
.xee_c00475{left:194.666667pt;}
.x3d_c00475{left:195.626667pt;}
.xf7_c00475{left:197.706667pt;}
.x73_c00475{left:200.960000pt;}
.xa2_c00475{left:202.666667pt;}
.xdc_c00475{left:203.626667pt;}
.x3_c00475{left:206.666667pt;}
.x98_c00475{left:210.666667pt;}
.x103_c00475{left:214.666667pt;}
.x7a_c00475{left:216.373333pt;}
.xcd_c00475{left:217.706667pt;}
.x23_c00475{left:221.333333pt;}
.x3e_c00475{left:222.666667pt;}
.x65_c00475{left:224.000000pt;}
.xd4_c00475{left:225.333333pt;}
.xbd_c00475{left:226.666667pt;}
.xb4_c00475{left:228.000000pt;}
.x1c_c00475{left:230.666667pt;}
.x10_c00475{left:231.626667pt;}
.x6d_c00475{left:233.333333pt;}
.xc0_c00475{left:236.000000pt;}
.x104_c00475{left:237.333333pt;}
.xef_c00475{left:239.040000pt;}
.x66_c00475{left:240.960000pt;}
.xcc_c00475{left:242.293333pt;}
.xdd_c00475{left:243.240000pt;}
.x7b_c00475{left:245.333333pt;}
.x3f_c00475{left:246.293333pt;}
.x8c_c00475{left:248.000000pt;}
.x1d_c00475{left:249.333333pt;}
.x2a_c00475{left:250.666667pt;}
.x49_c00475{left:253.333333pt;}
.x52_c00475{left:254.293333pt;}
.x85_c00475{left:256.000000pt;}
.xa1_c00475{left:258.666667pt;}
.x5c_c00475{left:259.800000pt;}
.x99_c00475{left:261.333333pt;}
.xf8_c00475{left:263.626667pt;}
.x24_c00475{left:266.666667pt;}
.x100_c00475{left:268.000000pt;}
.x4_c00475{left:269.333333pt;}
.xce_c00475{left:270.293333pt;}
.xc4_c00475{left:272.000000pt;}
.x40_c00475{left:272.960000pt;}
.x7c_c00475{left:274.293333pt;}
.x11_c00475{left:275.426667pt;}
.x2b_c00475{left:277.333333pt;}
.xd5_c00475{left:280.573333pt;}
.xf9_c00475{left:281.706667pt;}
.x36_c00475{left:282.666667pt;}
.x5_c00475{left:284.000000pt;}
.x25_c00475{left:286.293333pt;}
.xea_c00475{left:287.626667pt;}
.x7d_c00475{left:291.040000pt;}
.x8d_c00475{left:292.373333pt;}
.x74_c00475{left:293.906667pt;}
.x4a_c00475{left:296.000000pt;}
.x5d_c00475{left:297.333333pt;}
.x9a_c00475{left:298.666667pt;}
.xc5_c00475{left:300.960000pt;}
.x12_c00475{left:302.666667pt;}
.xb2_c00475{left:304.960000pt;}
.x1e_c00475{left:306.466667pt;}
.x26_c00475{left:309.333333pt;}
.x4b_c00475{left:315.040000pt;}
.xfc_c00475{left:316.000000pt;}
.x6_c00475{left:316.960000pt;}
.xa6_c00475{left:320.000000pt;}
.xb5_c00475{left:321.333333pt;}
.x2c_c00475{left:322.666667pt;}
.x67_c00475{left:324.000000pt;}
.xd8_c00475{left:326.666667pt;}
.x93_c00475{left:327.626667pt;}
.x6e_c00475{left:328.960000pt;}
.x13_c00475{left:330.666667pt;}
.x5e_c00475{left:332.000000pt;}
.xe5_c00475{left:335.040000pt;}
.xd9_c00475{left:336.000000pt;}
.xde_c00475{left:337.333333pt;}
.x4c_c00475{left:340.000000pt;}
.x53_c00475{left:341.133333pt;}
.x1f_c00475{left:342.293333pt;}
.x41_c00475{left:345.333333pt;}
.xaf_c00475{left:348.000000pt;}
.x14_c00475{left:349.333333pt;}
.x86_c00475{left:353.333333pt;}
.x68_c00475{left:354.666667pt;}
.xc6_c00475{left:359.626667pt;}
.x42_c00475{left:361.333333pt;}
.x2_c00475{left:362.666667pt;}
.x9b_c00475{left:364.000000pt;}
.x8e_c00475{left:366.666667pt;}
.x27_c00475{left:368.000000pt;}
.x37_c00475{left:369.333333pt;}
.x75_c00475{left:370.666667pt;}
.x20_c00475{left:373.706667pt;}
.x7_c00475{left:375.040000pt;}
.xe2_c00475{left:376.000000pt;}
.x54_c00475{left:377.333333pt;}
.x9c_c00475{left:380.373333pt;}
.xf4_c00475{left:381.333333pt;}
.xa7_c00475{left:382.293333pt;}
.x2d_c00475{left:383.626667pt;}
.xbe_c00475{left:385.333333pt;}
.x69_c00475{left:386.666667pt;}
.x76_c00475{left:389.333333pt;}
.x5f_c00475{left:391.626667pt;}
.x4d_c00475{left:394.293333pt;}
.xeb_c00475{left:396.000000pt;}
.xc1_c00475{left:396.960000pt;}
.x6f_c00475{left:398.293333pt;}
.x15_c00475{left:399.626667pt;}
.xb6_c00475{left:401.333333pt;}
.x9d_c00475{left:403.040000pt;}
.xe6_c00475{left:405.333333pt;}
.x28_c00475{left:407.240000pt;}
.x21_c00475{left:411.040000pt;}
.x38_c00475{left:413.706667pt;}
.xcf_c00475{left:414.666667pt;}
.xe3_c00475{left:415.626667pt;}
.x87_c00475{left:417.333333pt;}
.x43_c00475{left:418.293333pt;}
.x55_c00475{left:420.000000pt;}
.x4e_c00475{left:421.333333pt;}
.xb3_c00475{left:422.666667pt;}
.x7e_c00475{left:424.000000pt;}
.xec_c00475{left:425.333333pt;}
.x2e_c00475{left:428.000000pt;}
.x8_c00475{left:430.293333pt;}
.xdf_c00475{left:432.000000pt;}
.x8f_c00475{left:433.706667pt;}
.xbf_c00475{left:436.000000pt;}
.x39_c00475{left:439.040000pt;}
.xda_c00475{left:440.000000pt;}
.xf5_c00475{left:441.333333pt;}
.xa8_c00475{left:442.666667pt;}
.x44_c00475{left:444.373333pt;}
.xd0_c00475{left:445.333333pt;}
.x22_c00475{left:449.133333pt;}
.x2f_c00475{left:451.626667pt;}
.x9e_c00475{left:453.333333pt;}
.x9_c00475{left:454.666667pt;}
.x6a_c00475{left:456.000000pt;}
.xfd_c00475{left:457.706667pt;}
.x7f_c00475{left:458.666667pt;}
.xe4_c00475{left:460.373333pt;}
.x60_c00475{left:461.333333pt;}
.x94_c00475{left:464.373333pt;}
.x105_c00475{left:465.333333pt;}
.xdb_c00475{left:466.293333pt;}
.x90_c00475{left:468.373333pt;}
.xfa_c00475{left:469.333333pt;}
.x70_c00475{left:473.706667pt;}
.xa3_c00475{left:475.040000pt;}
.xb7_c00475{left:476.000000pt;}
.x80_c00475{left:477.333333pt;}
.x88_c00475{left:479.626667pt;}
.xf0_c00475{left:481.333333pt;}
.xa9_c00475{left:482.293333pt;}
.x30_c00475{left:483.626667pt;}
.x77_c00475{left:486.293333pt;}
.x56_c00475{left:488.000000pt;}
.x16_c00475{left:490.293333pt;}
.x91_c00475{left:492.000000pt;}
.xe7_c00475{left:492.960000pt;}
.x3a_c00475{left:494.666667pt;}
.xd1_c00475{left:496.373333pt;}
.x89_c00475{left:497.706667pt;}
.x45_c00475{left:498.666667pt;}
.xc7_c00475{left:501.333333pt;}
.x95_c00475{left:504.000000pt;}
.xd2_c00475{left:506.666667pt;}
.xaa_c00475{left:507.626667pt;}
.x71_c00475{left:509.333333pt;}
.xf1_c00475{left:511.626667pt;}
.xa_c00475{left:512.960000pt;}
.xb0_c00475{left:515.626667pt;}
.x6b_c00475{left:520.000000pt;}
.x96_c00475{left:520.960000pt;}
.x81_c00475{left:523.626667pt;}
.x46_c00475{left:525.333333pt;}
.x61_c00475{left:529.333333pt;}
.xb8_c00475{left:530.666667pt;}
.xc8_c00475{left:532.960000pt;}
.x9f_c00475{left:534.666667pt;}
.x17_c00475{left:537.333333pt;}
.x31_c00475{left:540.373333pt;}
.xfe_c00475{left:541.333333pt;}
.xb_c00475{left:542.293333pt;}
.x62_c00475{left:545.706667pt;}
.xab_c00475{left:546.666667pt;}
.xa4_c00475{left:552.000000pt;}
.xf2_c00475{left:552.960000pt;}
.xfb_c00475{left:554.293333pt;}
.xc9_c00475{left:557.333333pt;}
.xb9_c00475{left:559.040000pt;}
.x57_c00475{left:560.373333pt;}
.x101_c00475{left:561.333333pt;}
.x3b_c00475{left:564.960000pt;}
.xa0_c00475{left:567.626667pt;}
.x18_c00475{left:569.333333pt;}
.x32_c00475{left:572.373333pt;}
.xac_c00475{left:573.706667pt;}
.x8a_c00475{left:574.666667pt;}
.xb1_c00475{left:577.333333pt;}
.x19_c00475{left:582.666667pt;}
.x106_c00475{left:585.706667pt;}
.x47_c00475{left:586.666667pt;}
.x82_c00475{left:588.960000pt;}
.x72_c00475{left:590.666667pt;}
.x78_c00475{left:595.040000pt;}
.x33_c00475{left:596.000000pt;}
.xad_c00475{left:597.333333pt;}
.xe8_c00475{left:598.666667pt;}
.x92_c00475{left:600.373333pt;}
.xf3_c00475{left:601.333333pt;}
.xd3_c00475{left:602.666667pt;}
.xd6_c00475{left:604.000000pt;}
.xc2_c00475{left:604.960000pt;}
.x6c_c00475{left:608.000000pt;}
.xca_c00475{left:609.333333pt;}
.x1a_c00475{left:612.000000pt;}
.x107_c00475{left:614.666667pt;}
.x58_c00475{left:615.626667pt;}
.xc_c00475{left:618.466667pt;}
.xf6_c00475{left:620.000000pt;}
.xed_c00475{left:623.040000pt;}
.xe0_c00475{left:624.000000pt;}
.x3c_c00475{left:624.960000pt;}
.xba_c00475{left:628.960000pt;}
.x83_c00475{left:630.293333pt;}
.xa5_c00475{left:632.000000pt;}
.x59_c00475{left:634.666667pt;}
.x4f_c00475{left:636.000000pt;}
.xd7_c00475{left:639.040000pt;}
.x97_c00475{left:640.000000pt;}
.x108_c00475{left:642.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_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_41a2be67c80787805092163c.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:1.688965;font-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_c00476{transform:matrix(0.014443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014443,0.000000,0.000000,0.250000,0,0);}
.m3_c00476{transform:matrix(0.020611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020611,0.000000,0.000000,0.250000,0,0);}
.m6_c00476{transform:matrix(0.026576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026576,0.000000,0.000000,0.250000,0,0);}
.m4_c00476{transform:matrix(0.038122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038122,0.000000,0.000000,0.250000,0,0);}
.m5_c00476{transform:matrix(0.039353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039353,0.000000,0.000000,0.250000,0,0);}
.m0_c00476{transform:matrix(0.059049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059049,0.000000,0.000000,0.250000,0,0);}
.m1_c00476{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,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;}
.fs1_c00476{font-size:25.500000px;}
.fs0_c00476{font-size:78.240000px;}
.fs5_c00476{font-size:91.860000px;}
.fs4_c00476{font-size:95.220000px;}
.fs2_c00476{font-size:117.360000px;}
.fs6_c00476{font-size:127.560000px;}
.fs3_c00476{font-size:146.280000px;}
.y0_c00476{bottom:0.000000px;}
.y1_c00476{bottom:535.425000px;}
.y3_c00476{bottom:538.605000px;}
.y2_c00476{bottom:566.970000px;}
.y4_c00476{bottom:615.090000px;}
.y5_c00476{bottom:677.055000px;}
.y6_c00476{bottom:723.135000px;}
.y7_c00476{bottom:771.960000px;}
.h2_c00476{height:31.364502px;}
.h1_c00476{height:96.233672px;}
.h6_c00476{height:112.986006px;}
.h5_c00476{height:117.118740px;}
.h3_c00476{height:144.350508px;}
.h7_c00476{height:156.896309px;}
.h4_c00476{height:179.921543px;}
.h0_c00476{height:1335.000000px;}
.w0_c00476{width:880.500000px;}
.x0_c00476{left:0.000000px;}
.x1_c00476{left:779.580000px;}
.x2_c00476{left:793.920000px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.ls0_c00476{letter-spacing:0.000000pt;}
.ws0_c00476{word-spacing:0.000000pt;}
.fs1_c00476{font-size:22.666667pt;}
.fs0_c00476{font-size:69.546667pt;}
.fs5_c00476{font-size:81.653333pt;}
.fs4_c00476{font-size:84.640000pt;}
.fs2_c00476{font-size:104.320000pt;}
.fs6_c00476{font-size:113.386667pt;}
.fs3_c00476{font-size:130.026667pt;}
.y0_c00476{bottom:0.000000pt;}
.y1_c00476{bottom:475.933333pt;}
.y3_c00476{bottom:478.760000pt;}
.y2_c00476{bottom:503.973333pt;}
.y4_c00476{bottom:546.746667pt;}
.y5_c00476{bottom:601.826667pt;}
.y6_c00476{bottom:642.786667pt;}
.y7_c00476{bottom:686.186667pt;}
.h2_c00476{height:27.879557pt;}
.h1_c00476{height:85.541042pt;}
.h6_c00476{height:100.432005pt;}
.h5_c00476{height:104.105547pt;}
.h3_c00476{height:128.311562pt;}
.h7_c00476{height:139.463385pt;}
.h4_c00476{height:159.930260pt;}
.h0_c00476{height:1186.666667pt;}
.w0_c00476{width:782.666667pt;}
.x0_c00476{left:0.000000pt;}
.x1_c00476{left:692.960000pt;}
.x2_c00476{left:705.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_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_1337c93f94d730999bffe17d.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:1.688965;font-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_c00477{transform:matrix(0.003456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.003456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.003456,0.000000,0.000000,0.250000,0,0);}
.mc_c00477{transform:matrix(0.004746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.004746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.004746,0.000000,0.000000,0.250000,0,0);}
.m2_c00477{transform:matrix(0.006734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.006734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.006734,0.000000,0.000000,0.250000,0,0);}
.m4_c00477{transform:matrix(0.008469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008469,0.000000,0.000000,0.250000,0,0);}
.m5_c00477{transform:matrix(0.011445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011445,0.000000,0.000000,0.250000,0,0);}
.m6_c00477{transform:matrix(0.012558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012558,0.000000,0.000000,0.250000,0,0);}
.mf_c00477{transform:matrix(0.016856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016856,0.000000,0.000000,0.250000,0,0);}
.m7_c00477{transform:matrix(0.017052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017052,0.000000,0.000000,0.250000,0,0);}
.m1_c00477{transform:matrix(0.017700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017700,0.000000,0.000000,0.250000,0,0);}
.m9_c00477{transform:matrix(0.018048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018048,0.000000,0.000000,0.250000,0,0);}
.ma_c00477{transform:matrix(0.018125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018125,0.000000,0.000000,0.250000,0,0);}
.mb_c00477{transform:matrix(0.025866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025866,0.000000,0.000000,0.250000,0,0);}
.m0_c00477{transform:matrix(0.040963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040963,0.000000,0.000000,0.250000,0,0);}
.m8_c00477{transform:matrix(0.044827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044827,0.000000,0.000000,0.250000,0,0);}
.md_c00477{transform:matrix(0.050997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050997,0.000000,0.000000,0.250000,0,0);}
.me_c00477{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,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;}
.fsb_c00477{font-size:25.500000px;}
.fsa_c00477{font-size:78.240000px;}
.fs0_c00477{font-size:81.660000px;}
.fs6_c00477{font-size:102.060000px;}
.fs8_c00477{font-size:124.140000px;}
.fs7_c00477{font-size:146.280000px;}
.fs5_c00477{font-size:153.060000px;}
.fs4_c00477{font-size:156.480000px;}
.fs3_c00477{font-size:159.900000px;}
.fs2_c00477{font-size:214.320000px;}
.fs1_c00477{font-size:251.700000px;}
.fs9_c00477{font-size:379.260000px;}
.y0_c00477{bottom:0.000000px;}
.y1_c00477{bottom:288.360000px;}
.y2_c00477{bottom:306.420000px;}
.y3_c00477{bottom:420.660000px;}
.y4_c00477{bottom:513.285000px;}
.y5_c00477{bottom:590.865000px;}
.y6_c00477{bottom:666.930000px;}
.y7_c00477{bottom:736.410000px;}
.y8_c00477{bottom:789.090000px;}
.y9_c00477{bottom:854.460000px;}
.ya_c00477{bottom:944.865000px;}
.yb_c00477{bottom:950.925000px;}
.yc_c00477{bottom:982.470000px;}
.yd_c00477{bottom:1014.930000px;}
.hc_c00477{height:31.364502px;}
.hb_c00477{height:96.233672px;}
.h1_c00477{height:100.440205px;}
.h7_c00477{height:125.531807px;}
.h9_c00477{height:152.689775px;}
.h8_c00477{height:179.921543px;}
.h6_c00477{height:188.260811px;}
.h5_c00477{height:192.467344px;}
.h4_c00477{height:196.673877px;}
.h3_c00477{height:263.609414px;}
.h2_c00477{height:309.586084px;}
.ha_c00477{height:466.482393px;}
.h0_c00477{height:1335.000000px;}
.w0_c00477{width:880.500000px;}
.x0_c00477{left:0.000000px;}
.x6_c00477{left:784.080000px;}
.x1_c00477{left:785.145000px;}
.x3_c00477{left:786.420000px;}
.x2_c00477{left:791.370000px;}
.x5_c00477{left:793.080000px;}
.x4_c00477{left:794.175000px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.ls0_c00477{letter-spacing:0.000000pt;}
.ws0_c00477{word-spacing:0.000000pt;}
.fsb_c00477{font-size:22.666667pt;}
.fsa_c00477{font-size:69.546667pt;}
.fs0_c00477{font-size:72.586667pt;}
.fs6_c00477{font-size:90.720000pt;}
.fs8_c00477{font-size:110.346667pt;}
.fs7_c00477{font-size:130.026667pt;}
.fs5_c00477{font-size:136.053333pt;}
.fs4_c00477{font-size:139.093333pt;}
.fs3_c00477{font-size:142.133333pt;}
.fs2_c00477{font-size:190.506667pt;}
.fs1_c00477{font-size:223.733333pt;}
.fs9_c00477{font-size:337.120000pt;}
.y0_c00477{bottom:0.000000pt;}
.y1_c00477{bottom:256.320000pt;}
.y2_c00477{bottom:272.373333pt;}
.y3_c00477{bottom:373.920000pt;}
.y4_c00477{bottom:456.253333pt;}
.y5_c00477{bottom:525.213333pt;}
.y6_c00477{bottom:592.826667pt;}
.y7_c00477{bottom:654.586667pt;}
.y8_c00477{bottom:701.413333pt;}
.y9_c00477{bottom:759.520000pt;}
.ya_c00477{bottom:839.880000pt;}
.yb_c00477{bottom:845.266667pt;}
.yc_c00477{bottom:873.306667pt;}
.yd_c00477{bottom:902.160000pt;}
.hc_c00477{height:27.879557pt;}
.hb_c00477{height:85.541042pt;}
.h1_c00477{height:89.280182pt;}
.h7_c00477{height:111.583828pt;}
.h9_c00477{height:135.724245pt;}
.h8_c00477{height:159.930260pt;}
.h6_c00477{height:167.342943pt;}
.h5_c00477{height:171.082083pt;}
.h4_c00477{height:174.821224pt;}
.h3_c00477{height:234.319479pt;}
.h2_c00477{height:275.187630pt;}
.ha_c00477{height:414.651016pt;}
.h0_c00477{height:1186.666667pt;}
.w0_c00477{width:782.666667pt;}
.x0_c00477{left:0.000000pt;}
.x6_c00477{left:696.960000pt;}
.x1_c00477{left:697.906667pt;}
.x3_c00477{left:699.040000pt;}
.x2_c00477{left:703.440000pt;}
.x5_c00477{left:704.960000pt;}
.x4_c00477{left:705.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_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_5bd54e8dbbdec4ce33e97103.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:1.688965;font-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_c00478{transform:matrix(0.013230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013230,0.000000,0.000000,0.250000,0,0);}
.m3_c00478{transform:matrix(0.014762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014762,0.000000,0.000000,0.250000,0,0);}
.m2_c00478{transform:matrix(0.015328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015328,0.000000,0.000000,0.250000,0,0);}
.m6_c00478{transform:matrix(0.021284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021284,0.000000,0.000000,0.250000,0,0);}
.m5_c00478{transform:matrix(0.031716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031716,0.000000,0.000000,0.250000,0,0);}
.m0_c00478{transform:matrix(0.059049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059049,0.000000,0.000000,0.250000,0,0);}
.m1_c00478{transform:matrix(0.780449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780449,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;}
.fs1_c00478{font-size:18.720000px;}
.fs0_c00478{font-size:78.240000px;}
.fs5_c00478{font-size:88.440000px;}
.fs2_c00478{font-size:110.580000px;}
.fs6_c00478{font-size:127.560000px;}
.fs3_c00478{font-size:156.480000px;}
.fs4_c00478{font-size:163.260000px;}
.y0_c00478{bottom:0.000000px;}
.y1_c00478{bottom:517.425000px;}
.y3_c00478{bottom:521.250000px;}
.y2_c00478{bottom:549.630000px;}
.y4_c00478{bottom:596.865000px;}
.y5_c00478{bottom:669.705000px;}
.y6_c00478{bottom:736.200000px;}
.y7_c00478{bottom:783.960000px;}
.h2_c00478{height:23.025234px;}
.h1_c00478{height:96.233672px;}
.h6_c00478{height:108.779473px;}
.h3_c00478{height:136.011240px;}
.h7_c00478{height:156.896309px;}
.h4_c00478{height:192.467344px;}
.h5_c00478{height:200.806611px;}
.h0_c00478{height:1335.000000px;}
.w0_c00478{width:880.500000px;}
.x0_c00478{left:0.000000px;}
.x1_c00478{left:781.080000px;}
.x4_c00478{left:783.000000px;}
.x3_c00478{left:786.000000px;}
.x2_c00478{left:793.920000px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.ls0_c00478{letter-spacing:0.000000pt;}
.ws0_c00478{word-spacing:0.000000pt;}
.fs1_c00478{font-size:16.640000pt;}
.fs0_c00478{font-size:69.546667pt;}
.fs5_c00478{font-size:78.613333pt;}
.fs2_c00478{font-size:98.293333pt;}
.fs6_c00478{font-size:113.386667pt;}
.fs3_c00478{font-size:139.093333pt;}
.fs4_c00478{font-size:145.120000pt;}
.y0_c00478{bottom:0.000000pt;}
.y1_c00478{bottom:459.933333pt;}
.y3_c00478{bottom:463.333333pt;}
.y2_c00478{bottom:488.560000pt;}
.y4_c00478{bottom:530.546667pt;}
.y5_c00478{bottom:595.293333pt;}
.y6_c00478{bottom:654.400000pt;}
.y7_c00478{bottom:696.853333pt;}
.h2_c00478{height:20.466875pt;}
.h1_c00478{height:85.541042pt;}
.h6_c00478{height:96.692865pt;}
.h3_c00478{height:120.898880pt;}
.h7_c00478{height:139.463385pt;}
.h4_c00478{height:171.082083pt;}
.h5_c00478{height:178.494766pt;}
.h0_c00478{height:1186.666667pt;}
.w0_c00478{width:782.666667pt;}
.x0_c00478{left:0.000000pt;}
.x1_c00478{left:694.293333pt;}
.x4_c00478{left:696.000000pt;}
.x3_c00478{left:698.666667pt;}
.x2_c00478{left:705.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_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_fb569920db014276c93cf3c2.woff2')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:1.688965;font-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_c00479{transform:matrix(0.007199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007199,0.000000,0.000000,0.250000,0,0);}
.m3_c00479{transform:matrix(0.013536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013536,0.000000,0.000000,0.250000,0,0);}
.m7_c00479{transform:matrix(0.017052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017052,0.000000,0.000000,0.250000,0,0);}
.m2_c00479{transform:matrix(0.017819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017819,0.000000,0.000000,0.250000,0,0);}
.m4_c00479{transform:matrix(0.032609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032609,0.000000,0.000000,0.250000,0,0);}
.m0_c00479{transform:matrix(0.046048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046048,0.000000,0.000000,0.250000,0,0);}
.m1_c00479{transform:matrix(0.291494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291494,0.000000,0.000000,0.250000,0,0);}
.m5_c00479{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,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;}
.fs5_c00479{font-size:11.880000px;}
.fs1_c00479{font-size:28.920000px;}
.fs0_c00479{font-size:85.020000px;}
.fs4_c00479{font-size:95.220000px;}
.fs3_c00479{font-size:146.280000px;}
.fs6_c00479{font-size:153.060000px;}
.fs2_c00479{font-size:166.680000px;}
.y0_c00479{bottom:0.000000px;}
.y1_c00479{bottom:516.780000px;}
.y3_c00479{bottom:527.640000px;}
.y2_c00479{bottom:550.905000px;}
.y4_c00479{bottom:600.090000px;}
.y5_c00479{bottom:660.555000px;}
.y6_c00479{bottom:697.275000px;}
.y7_c00479{bottom:721.140000px;}
.y8_c00479{bottom:795.930000px;}
.h6_c00479{height:14.612168px;}
.h2_c00479{height:35.571035px;}
.h1_c00479{height:104.572939px;}
.h5_c00479{height:117.118740px;}
.h4_c00479{height:179.921543px;}
.h7_c00479{height:188.260811px;}
.h3_c00479{height:205.013145px;}
.h0_c00479{height:1335.000000px;}
.w0_c00479{width:880.500000px;}
.x0_c00479{left:0.000000px;}
.x5_c00479{left:780.225000px;}
.x1_c00479{left:783.225000px;}
.x4_c00479{left:785.145000px;}
.x3_c00479{left:786.420000px;}
.x2_c00479{left:790.920000px;}
@media print{
.v0_c00479{vertical-align:0.000000pt;}
.ls0_c00479{letter-spacing:0.000000pt;}
.ws0_c00479{word-spacing:0.000000pt;}
.fs5_c00479{font-size:10.560000pt;}
.fs1_c00479{font-size:25.706667pt;}
.fs0_c00479{font-size:75.573333pt;}
.fs4_c00479{font-size:84.640000pt;}
.fs3_c00479{font-size:130.026667pt;}
.fs6_c00479{font-size:136.053333pt;}
.fs2_c00479{font-size:148.160000pt;}
.y0_c00479{bottom:0.000000pt;}
.y1_c00479{bottom:459.360000pt;}
.y3_c00479{bottom:469.013333pt;}
.y2_c00479{bottom:489.693333pt;}
.y4_c00479{bottom:533.413333pt;}
.y5_c00479{bottom:587.160000pt;}
.y6_c00479{bottom:619.800000pt;}
.y7_c00479{bottom:641.013333pt;}
.y8_c00479{bottom:707.493333pt;}
.h6_c00479{height:12.988594pt;}
.h2_c00479{height:31.618698pt;}
.h1_c00479{height:92.953724pt;}
.h5_c00479{height:104.105547pt;}
.h4_c00479{height:159.930260pt;}
.h7_c00479{height:167.342943pt;}
.h3_c00479{height:182.233906pt;}
.h0_c00479{height:1186.666667pt;}
.w0_c00479{width:782.666667pt;}
.x0_c00479{left:0.000000pt;}
.x5_c00479{left:693.533333pt;}
.x1_c00479{left:696.200000pt;}
.x4_c00479{left:697.906667pt;}
.x3_c00479{left:699.040000pt;}
.x2_c00479{left:703.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_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_9a2a9fbc532862e76829afd1.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:1.688965;font-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_c00480{transform:matrix(0.012794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012794,0.000000,0.000000,0.250000,0,0);}
.m5_c00480{transform:matrix(0.013231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013231,0.000000,0.000000,0.250000,0,0);}
.m3_c00480{transform:matrix(0.015256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015256,0.000000,0.000000,0.250000,0,0);}
.m2_c00480{transform:matrix(0.018574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018574,0.000000,0.000000,0.250000,0,0);}
.m7_c00480{transform:matrix(0.021568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021568,0.000000,0.000000,0.250000,0,0);}
.m0_c00480{transform:matrix(0.059049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059049,0.000000,0.000000,0.250000,0,0);}
.m6_c00480{transform:matrix(0.275690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275690,0.000000,0.000000,0.250000,0,0);}
.m1_c00480{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_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;}
.fs1_c00480{font-size:25.500000px;}
.fs6_c00480{font-size:39.120000px;}
.fs0_c00480{font-size:78.240000px;}
.fs7_c00480{font-size:141.180000px;}
.fs2_c00480{font-size:159.900000px;}
.fs3_c00480{font-size:170.100000px;}
.fs5_c00480{font-size:183.660000px;}
.fs4_c00480{font-size:188.760000px;}
.y0_c00480{bottom:0.000000px;}
.y1_c00480{bottom:473.925000px;}
.y3_c00480{bottom:484.785000px;}
.y2_c00480{bottom:506.970000px;}
.y4_c00480{bottom:558.060000px;}
.y5_c00480{bottom:636.690000px;}
.y6_c00480{bottom:720.255000px;}
.y7_c00480{bottom:789.180000px;}
.y8_c00480{bottom:823.155000px;}
.h2_c00480{height:31.364502px;}
.h7_c00480{height:48.116836px;}
.h1_c00480{height:96.233672px;}
.h8_c00480{height:173.648643px;}
.h3_c00480{height:196.673877px;}
.h4_c00480{height:209.219678px;}
.h6_c00480{height:225.898213px;}
.h5_c00480{height:232.171113px;}
.h0_c00480{height:1335.000000px;}
.w0_c00480{width:880.500000px;}
.x0_c00480{left:0.000000px;}
.x3_c00480{left:778.305000px;}
.x1_c00480{left:779.580000px;}
.x5_c00480{left:780.855000px;}
.x4_c00480{left:782.130000px;}
.x2_c00480{left:787.920000px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.ls0_c00480{letter-spacing:0.000000pt;}
.ws0_c00480{word-spacing:0.000000pt;}
.fs1_c00480{font-size:22.666667pt;}
.fs6_c00480{font-size:34.773333pt;}
.fs0_c00480{font-size:69.546667pt;}
.fs7_c00480{font-size:125.493333pt;}
.fs2_c00480{font-size:142.133333pt;}
.fs3_c00480{font-size:151.200000pt;}
.fs5_c00480{font-size:163.253333pt;}
.fs4_c00480{font-size:167.786667pt;}
.y0_c00480{bottom:0.000000pt;}
.y1_c00480{bottom:421.266667pt;}
.y3_c00480{bottom:430.920000pt;}
.y2_c00480{bottom:450.640000pt;}
.y4_c00480{bottom:496.053333pt;}
.y5_c00480{bottom:565.946667pt;}
.y6_c00480{bottom:640.226667pt;}
.y7_c00480{bottom:701.493333pt;}
.y8_c00480{bottom:731.693333pt;}
.h2_c00480{height:27.879557pt;}
.h7_c00480{height:42.770521pt;}
.h1_c00480{height:85.541042pt;}
.h8_c00480{height:154.354349pt;}
.h3_c00480{height:174.821224pt;}
.h4_c00480{height:185.973047pt;}
.h6_c00480{height:200.798411pt;}
.h5_c00480{height:206.374323pt;}
.h0_c00480{height:1186.666667pt;}
.w0_c00480{width:782.666667pt;}
.x0_c00480{left:0.000000pt;}
.x3_c00480{left:691.826667pt;}
.x1_c00480{left:692.960000pt;}
.x5_c00480{left:694.093333pt;}
.x4_c00480{left:695.226667pt;}
.x2_c00480{left:700.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_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_2d887759583e725535408c75.woff2')format("woff");}.ff1_c00481{font-family:ff1_c00481;line-height:1.688965;font-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_c00481{transform:matrix(0.013416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013416,0.000000,0.000000,0.250000,0,0);}
.m3_c00481{transform:matrix(0.015618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015618,0.000000,0.000000,0.250000,0,0);}
.m4_c00481{transform:matrix(0.024250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024250,0.000000,0.000000,0.250000,0,0);}
.m2_c00481{transform:matrix(0.026066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026066,0.000000,0.000000,0.250000,0,0);}
.m0_c00481{transform:matrix(0.047759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047759,0.000000,0.000000,0.250000,0,0);}
.m5_c00481{transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);}
.m1_c00481{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,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;}
.fs1_c00481{font-size:25.500000px;}
.fs5_c00481{font-size:32.340000px;}
.fs0_c00481{font-size:81.660000px;}
.fs4_c00481{font-size:102.060000px;}
.fs2_c00481{font-size:113.940000px;}
.fs3_c00481{font-size:141.180000px;}
.fs6_c00481{font-size:199.020000px;}
.y0_c00481{bottom:0.000000px;}
.y1_c00481{bottom:520.860000px;}
.y3_c00481{bottom:526.185000px;}
.y2_c00481{bottom:553.470000px;}
.y4_c00481{bottom:602.655000px;}
.y5_c00481{bottom:662.910000px;}
.y6_c00481{bottom:712.410000px;}
.y7_c00481{bottom:753.825000px;}
.y8_c00481{bottom:772.965000px;}
.h2_c00481{height:31.364502px;}
.h6_c00481{height:39.777568px;}
.h1_c00481{height:100.440205px;}
.h5_c00481{height:125.531807px;}
.h3_c00481{height:140.143975px;}
.h4_c00481{height:173.648643px;}
.h7_c00481{height:244.790713px;}
.h0_c00481{height:1335.000000px;}
.w0_c00481{width:880.500000px;}
.x0_c00481{left:0.000000px;}
.x1_c00481{left:782.145000px;}
.x3_c00481{left:784.275000px;}
.x2_c00481{left:795.420000px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.ls0_c00481{letter-spacing:0.000000pt;}
.ws0_c00481{word-spacing:0.000000pt;}
.fs1_c00481{font-size:22.666667pt;}
.fs5_c00481{font-size:28.746667pt;}
.fs0_c00481{font-size:72.586667pt;}
.fs4_c00481{font-size:90.720000pt;}
.fs2_c00481{font-size:101.280000pt;}
.fs3_c00481{font-size:125.493333pt;}
.fs6_c00481{font-size:176.906667pt;}
.y0_c00481{bottom:0.000000pt;}
.y1_c00481{bottom:462.986667pt;}
.y3_c00481{bottom:467.720000pt;}
.y2_c00481{bottom:491.973333pt;}
.y4_c00481{bottom:535.693333pt;}
.y5_c00481{bottom:589.253333pt;}
.y6_c00481{bottom:633.253333pt;}
.y7_c00481{bottom:670.066667pt;}
.y8_c00481{bottom:687.080000pt;}
.h2_c00481{height:27.879557pt;}
.h6_c00481{height:35.357839pt;}
.h1_c00481{height:89.280182pt;}
.h5_c00481{height:111.583828pt;}
.h3_c00481{height:124.572422pt;}
.h4_c00481{height:154.354349pt;}
.h7_c00481{height:217.591745pt;}
.h0_c00481{height:1186.666667pt;}
.w0_c00481{width:782.666667pt;}
.x0_c00481{left:0.000000pt;}
.x1_c00481{left:695.240000pt;}
.x3_c00481{left:697.133333pt;}
.x2_c00481{left:707.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_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_810a3e87d35f909458e2c91e.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:1.688965;font-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_c00482{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00482{transform:matrix(0.002031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.002031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.002031,0.000000,0.000000,0.250000,0,0);}
.m0_c00482{transform:matrix(0.002673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.002673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.002673,0.000000,0.000000,0.250000,0,0);}
.m6_c00482{transform:matrix(0.011758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011758,0.000000,0.000000,0.250000,0,0);}
.ma_c00482{transform:matrix(0.016715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016715,0.000000,0.000000,0.250000,0,0);}
.m5_c00482{transform:matrix(0.018424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018424,0.000000,0.000000,0.250000,0,0);}
.m9_c00482{transform:matrix(0.018647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018647,0.000000,0.000000,0.250000,0,0);}
.m7_c00482{transform:matrix(0.033035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033035,0.000000,0.000000,0.250000,0,0);}
.m4_c00482{transform:matrix(0.038595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038595,0.000000,0.000000,0.250000,0,0);}
.m1_c00482{transform:matrix(0.040999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040999,0.000000,0.000000,0.250000,0,0);}
.m8_c00482{transform:matrix(0.079135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079135,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:71.460000px;}
.fs1_c00482{font-size:95.220000px;}
.fs4_c00482{font-size:107.160000px;}
.fs6_c00482{font-size:134.340000px;}
.fs7_c00482{font-size:146.280000px;}
.fs2_c00482{font-size:153.060000px;}
.fs3_c00482{font-size:209.220000px;}
.fs0_c00482{font-size:280.620000px;}
.y0_c00482{bottom:0.000000px;}
.y1_c00482{bottom:417.810000px;}
.y2_c00482{bottom:522.555000px;}
.y3_c00482{bottom:575.430000px;}
.y4_c00482{bottom:655.305000px;}
.y5_c00482{bottom:739.830000px;}
.y6_c00482{bottom:788.085000px;}
.y7_c00482{bottom:832.800000px;}
.y8_c00482{bottom:898.590000px;}
.h6_c00482{height:87.894404px;}
.h2_c00482{height:117.118740px;}
.h5_c00482{height:131.804707px;}
.h7_c00482{height:165.235576px;}
.h8_c00482{height:179.921543px;}
.h3_c00482{height:188.260811px;}
.h4_c00482{height:257.336514px;}
.h1_c00482{height:345.157119px;}
.h0_c00482{height:1335.000000px;}
.w0_c00482{width:880.500000px;}
.x0_c00482{left:0.000000px;}
.x1_c00482{left:777.030000px;}
.x4_c00482{left:780.225000px;}
.x5_c00482{left:781.500000px;}
.x6_c00482{left:783.000000px;}
.x2_c00482{left:784.695000px;}
.x3_c00482{left:792.420000px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.ls0_c00482{letter-spacing:0.000000pt;}
.ws0_c00482{word-spacing:0.000000pt;}
.fs5_c00482{font-size:63.520000pt;}
.fs1_c00482{font-size:84.640000pt;}
.fs4_c00482{font-size:95.253333pt;}
.fs6_c00482{font-size:119.413333pt;}
.fs7_c00482{font-size:130.026667pt;}
.fs2_c00482{font-size:136.053333pt;}
.fs3_c00482{font-size:185.973333pt;}
.fs0_c00482{font-size:249.440000pt;}
.y0_c00482{bottom:0.000000pt;}
.y1_c00482{bottom:371.386667pt;}
.y2_c00482{bottom:464.493333pt;}
.y3_c00482{bottom:511.493333pt;}
.y4_c00482{bottom:582.493333pt;}
.y5_c00482{bottom:657.626667pt;}
.y6_c00482{bottom:700.520000pt;}
.y7_c00482{bottom:740.266667pt;}
.y8_c00482{bottom:798.746667pt;}
.h6_c00482{height:78.128359pt;}
.h2_c00482{height:104.105547pt;}
.h5_c00482{height:117.159740pt;}
.h7_c00482{height:146.876068pt;}
.h8_c00482{height:159.930260pt;}
.h3_c00482{height:167.342943pt;}
.h4_c00482{height:228.743568pt;}
.h1_c00482{height:306.806328pt;}
.h0_c00482{height:1186.666667pt;}
.w0_c00482{width:782.666667pt;}
.x0_c00482{left:0.000000pt;}
.x1_c00482{left:690.693333pt;}
.x4_c00482{left:693.533333pt;}
.x5_c00482{left:694.666667pt;}
.x6_c00482{left:696.000000pt;}
.x2_c00482{left:697.506667pt;}
.x3_c00482{left:704.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_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_584c0a32b0fda76f44f00131.woff2')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:1.688965;font-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_c00483{transform:matrix(0.004723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.004723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.004723,0.000000,0.000000,0.250000,0,0);}
.m3_c00483{transform:matrix(0.004807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.004807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.004807,0.000000,0.000000,0.250000,0,0);}
.m0_c00483{transform:matrix(0.005726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.005726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.005726,0.000000,0.000000,0.250000,0,0);}
.m1_c00483{transform:matrix(0.006562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.006562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.006562,0.000000,0.000000,0.250000,0,0);}
.m4_c00483{transform:matrix(0.008067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008067,0.000000,0.000000,0.250000,0,0);}
.md_c00483{transform:matrix(0.008264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008264,0.000000,0.000000,0.250000,0,0);}
.m7_c00483{transform:matrix(0.016239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016239,0.000000,0.000000,0.250000,0,0);}
.mf_c00483{transform:matrix(0.017542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017542,0.000000,0.000000,0.250000,0,0);}
.mc_c00483{transform:matrix(0.022054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022054,0.000000,0.000000,0.250000,0,0);}
.m5_c00483{transform:matrix(0.027725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027725,0.000000,0.000000,0.250000,0,0);}
.m9_c00483{transform:matrix(0.028903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028903,0.000000,0.000000,0.250000,0,0);}
.ma_c00483{transform:matrix(0.035639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035639,0.000000,0.000000,0.250000,0,0);}
.mb_c00483{transform:matrix(0.041115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041115,0.000000,0.000000,0.250000,0,0);}
.m6_c00483{transform:matrix(0.045414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045414,0.000000,0.000000,0.250000,0,0);}
.me_c00483{transform:matrix(0.218618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218618,0.000000,0.000000,0.250000,0,0);}
.m8_c00483{transform:matrix(0.286859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286859,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;}
.fs4_c00483{font-size:18.720000px;}
.fs8_c00483{font-size:42.540000px;}
.fs2_c00483{font-size:68.040000px;}
.fs6_c00483{font-size:85.020000px;}
.fs5_c00483{font-size:91.860000px;}
.fs1_c00483{font-size:95.220000px;}
.fs3_c00483{font-size:149.640000px;}
.fs9_c00483{font-size:153.060000px;}
.fs7_c00483{font-size:188.760000px;}
.fs0_c00483{font-size:358.860000px;}
.y0_c00483{bottom:0.000000px;}
.y1_c00483{bottom:203.250000px;}
.y2_c00483{bottom:332.055000px;}
.y3_c00483{bottom:381.150000px;}
.y4_c00483{bottom:423.510000px;}
.y5_c00483{bottom:605.130000px;}
.y6_c00483{bottom:633.135000px;}
.y7_c00483{bottom:675.780000px;}
.y8_c00483{bottom:717.780000px;}
.y9_c00483{bottom:836.055000px;}
.ya_c00483{bottom:928.635000px;}
.yb_c00483{bottom:971.280000px;}
.yc_c00483{bottom:1026.690000px;}
.yd_c00483{bottom:1098.180000px;}
.ye_c00483{bottom:1134.930000px;}
.h5_c00483{height:23.025234px;}
.h9_c00483{height:52.323369px;}
.h3_c00483{height:83.687871px;}
.h7_c00483{height:104.572939px;}
.h6_c00483{height:112.986006px;}
.h2_c00483{height:117.118740px;}
.h4_c00483{height:184.054277px;}
.ha_c00483{height:188.260811px;}
.h8_c00483{height:232.171113px;}
.h1_c00483{height:441.390791px;}
.h0_c00483{height:1335.000000px;}
.w0_c00483{width:880.500000px;}
.x0_c00483{left:0.000000px;}
.x1_c00483{left:776.595000px;}
.x6_c00483{left:778.500000px;}
.x9_c00483{left:780.225000px;}
.x7_c00483{left:781.725000px;}
.x5_c00483{left:783.225000px;}
.x2_c00483{left:785.145000px;}
.x3_c00483{left:788.355000px;}
.x8_c00483{left:790.725000px;}
.x4_c00483{left:793.920000px;}
@media print{
.v0_c00483{vertical-align:0.000000pt;}
.ls0_c00483{letter-spacing:0.000000pt;}
.ws0_c00483{word-spacing:0.000000pt;}
.fs4_c00483{font-size:16.640000pt;}
.fs8_c00483{font-size:37.813333pt;}
.fs2_c00483{font-size:60.480000pt;}
.fs6_c00483{font-size:75.573333pt;}
.fs5_c00483{font-size:81.653333pt;}
.fs1_c00483{font-size:84.640000pt;}
.fs3_c00483{font-size:133.013333pt;}
.fs9_c00483{font-size:136.053333pt;}
.fs7_c00483{font-size:167.786667pt;}
.fs0_c00483{font-size:318.986667pt;}
.y0_c00483{bottom:0.000000pt;}
.y1_c00483{bottom:180.666667pt;}
.y2_c00483{bottom:295.160000pt;}
.y3_c00483{bottom:338.800000pt;}
.y4_c00483{bottom:376.453333pt;}
.y5_c00483{bottom:537.893333pt;}
.y6_c00483{bottom:562.786667pt;}
.y7_c00483{bottom:600.693333pt;}
.y8_c00483{bottom:638.026667pt;}
.y9_c00483{bottom:743.160000pt;}
.ya_c00483{bottom:825.453333pt;}
.yb_c00483{bottom:863.360000pt;}
.yc_c00483{bottom:912.613333pt;}
.yd_c00483{bottom:976.160000pt;}
.ye_c00483{bottom:1008.826667pt;}
.h5_c00483{height:20.466875pt;}
.h9_c00483{height:46.509661pt;}
.h3_c00483{height:74.389219pt;}
.h7_c00483{height:92.953724pt;}
.h6_c00483{height:100.432005pt;}
.h2_c00483{height:104.105547pt;}
.h4_c00483{height:163.603802pt;}
.ha_c00483{height:167.342943pt;}
.h8_c00483{height:206.374323pt;}
.h1_c00483{height:392.347370pt;}
.h0_c00483{height:1186.666667pt;}
.w0_c00483{width:782.666667pt;}
.x0_c00483{left:0.000000pt;}
.x1_c00483{left:690.306667pt;}
.x6_c00483{left:692.000000pt;}
.x9_c00483{left:693.533333pt;}
.x7_c00483{left:694.866667pt;}
.x5_c00483{left:696.200000pt;}
.x2_c00483{left:697.906667pt;}
.x3_c00483{left:700.760000pt;}
.x8_c00483{left:702.866667pt;}
.x4_c00483{left:705.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_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_997e1e173e4d034f710f0b7e.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma9_c00484{transform:matrix(0.236549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236549,0.000000,0.000000,0.250000,0,0);}
.m2_c00484{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00484{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m54_c00484{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m80_c00484{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m20_c00484{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m7d_c00484{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m47_c00484{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m3b_c00484{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m6b_c00484{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m72_c00484{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m7c_c00484{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m74_c00484{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m23_c00484{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m41_c00484{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m5d_c00484{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m24_c00484{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m93_c00484{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m35_c00484{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m4f_c00484{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.mb0_c00484{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.m61_c00484{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m97_c00484{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.m4d_c00484{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mab_c00484{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m1b_c00484{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m73_c00484{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m14_c00484{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m36_c00484{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m30_c00484{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.m52_c00484{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m51_c00484{transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);}
.m56_c00484{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mb1_c00484{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.m37_c00484{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m9a_c00484{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m3_c00484{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m59_c00484{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.ma8_c00484{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.me_c00484{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m7e_c00484{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m26_c00484{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m1d_c00484{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m95_c00484{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m3a_c00484{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m96_c00484{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.maa_c00484{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.m2c_c00484{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m98_c00484{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m8e_c00484{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.m1f_c00484{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m42_c00484{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m82_c00484{transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);}
.m29_c00484{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.mac_c00484{transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);}
.m50_c00484{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m6e_c00484{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m7_c00484{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.ma2_c00484{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.m58_c00484{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m8f_c00484{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m34_c00484{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.mf_c00484{transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);}
.m86_c00484{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.md_c00484{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m7a_c00484{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m46_c00484{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m19_c00484{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m6c_c00484{transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);}
.m1_c00484{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m6f_c00484{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m62_c00484{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m8c_c00484{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m1a_c00484{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_c00484{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m71_c00484{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m45_c00484{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m15_c00484{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.ma3_c00484{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m9c_c00484{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m1e_c00484{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m8d_c00484{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m8a_c00484{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.mb_c00484{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m57_c00484{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m64_c00484{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m12_c00484{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m2d_c00484{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m21_c00484{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m5e_c00484{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m83_c00484{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m40_c00484{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m13_c00484{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m9e_c00484{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m5_c00484{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m8_c00484{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m53_c00484{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.ma4_c00484{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m18_c00484{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m49_c00484{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m79_c00484{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m78_c00484{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.mc_c00484{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m85_c00484{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m28_c00484{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m94_c00484{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m22_c00484{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m9b_c00484{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m4c_c00484{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m16_c00484{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m7f_c00484{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mad_c00484{transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);}
.m84_c00484{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m31_c00484{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m60_c00484{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m6d_c00484{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.maf_c00484{transform:matrix(0.555294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555294,0.000000,0.000000,0.250000,0,0);}
.m17_c00484{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m66_c00484{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m2f_c00484{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m9d_c00484{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m7b_c00484{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m92_c00484{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m69_c00484{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);}
.m67_c00484{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m39_c00484{transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);}
.m4_c00484{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m25_c00484{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m33_c00484{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.m4b_c00484{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.ma_c00484{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m5f_c00484{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m3e_c00484{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m5b_c00484{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m27_c00484{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m4a_c00484{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m6a_c00484{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m76_c00484{transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);}
.m81_c00484{transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);}
.ma0_c00484{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m9_c00484{transform:matrix(0.608921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608921,0.000000,0.000000,0.250000,0,0);}
.m2e_c00484{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m6_c00484{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m91_c00484{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m5a_c00484{transform:matrix(0.616701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616701,0.000000,0.000000,0.250000,0,0);}
.m0_c00484{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);}
.m70_c00484{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);}
.m43_c00484{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.ma5_c00484{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m77_c00484{transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);}
.m11_c00484{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m90_c00484{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.m8b_c00484{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m44_c00484{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m99_c00484{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.ma7_c00484{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);}
.m2b_c00484{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m55_c00484{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m10_c00484{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m9f_c00484{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m89_c00484{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m75_c00484{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.ma1_c00484{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);}
.mae_c00484{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.m3c_c00484{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.ma6_c00484{transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);}
.m2a_c00484{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m3f_c00484{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m63_c00484{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m68_c00484{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m5c_c00484{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m1c_c00484{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m32_c00484{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m88_c00484{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.m4e_c00484{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m38_c00484{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m65_c00484{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m3d_c00484{transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.823718,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:-3.398400px;}
.ws1_c00484{word-spacing:0.000000px;}
.fc0_c00484{color:transparent;}
.fs6_c00484{font-size:18.720000px;}
.fs0_c00484{font-size:20.400000px;}
.fs2_c00484{font-size:22.140000px;}
.fs4_c00484{font-size:25.500000px;}
.fs1_c00484{font-size:28.920000px;}
.fs5_c00484{font-size:32.340000px;}
.fs3_c00484{font-size:35.700000px;}
.fs7_c00484{font-size:39.120000px;}
.y0_c00484{bottom:0.000000px;}
.y3_c00484{bottom:223.275000px;}
.y86_c00484{bottom:250.470000px;}
.y84_c00484{bottom:251.325000px;}
.y88_c00484{bottom:251.550000px;}
.y87_c00484{bottom:252.405000px;}
.y89_c00484{bottom:252.630000px;}
.y85_c00484{bottom:254.550000px;}
.y82_c00484{bottom:265.470000px;}
.y80_c00484{bottom:266.325000px;}
.y83_c00484{bottom:266.550000px;}
.y81_c00484{bottom:267.405000px;}
.y7f_c00484{bottom:268.050000px;}
.y7e_c00484{bottom:268.470000px;}
.y7d_c00484{bottom:269.550000px;}
.y7b_c00484{bottom:280.470000px;}
.y8b_c00484{bottom:280.905000px;}
.y78_c00484{bottom:281.325000px;}
.y79_c00484{bottom:282.405000px;}
.y7a_c00484{bottom:282.630000px;}
.y8a_c00484{bottom:283.050000px;}
.y7c_c00484{bottom:283.470000px;}
.y74_c00484{bottom:606.405000px;}
.y73_c00484{bottom:607.245000px;}
.y76_c00484{bottom:608.745000px;}
.y75_c00484{bottom:609.630000px;}
.y77_c00484{bottom:610.470000px;}
.y72_c00484{bottom:610.905000px;}
.y6f_c00484{bottom:627.825000px;}
.y6b_c00484{bottom:628.245000px;}
.y71_c00484{bottom:628.905000px;}
.y6d_c00484{bottom:629.130000px;}
.y6e_c00484{bottom:629.325000px;}
.y70_c00484{bottom:629.970000px;}
.y6c_c00484{bottom:630.405000px;}
.y67_c00484{bottom:647.745000px;}
.y68_c00484{bottom:648.630000px;}
.y69_c00484{bottom:648.825000px;}
.y6a_c00484{bottom:649.470000px;}
.y66_c00484{bottom:649.905000px;}
.y64_c00484{bottom:664.905000px;}
.y63_c00484{bottom:667.245000px;}
.y62_c00484{bottom:669.405000px;}
.y65_c00484{bottom:670.470000px;}
.y5f_c00484{bottom:686.745000px;}
.y61_c00484{bottom:688.905000px;}
.y60_c00484{bottom:689.130000px;}
.y5e_c00484{bottom:705.405000px;}
.y5c_c00484{bottom:706.245000px;}
.y5d_c00484{bottom:706.470000px;}
.y5a_c00484{bottom:708.405000px;}
.y5b_c00484{bottom:708.630000px;}
.y56_c00484{bottom:725.745000px;}
.y55_c00484{bottom:727.905000px;}
.y57_c00484{bottom:728.130000px;}
.y58_c00484{bottom:728.970000px;}
.y59_c00484{bottom:729.405000px;}
.y53_c00484{bottom:747.405000px;}
.y54_c00484{bottom:747.630000px;}
.y51_c00484{bottom:766.245000px;}
.y50_c00484{bottom:767.130000px;}
.y52_c00484{bottom:767.970000px;}
.y4f_c00484{bottom:768.405000px;}
.y4d_c00484{bottom:785.745000px;}
.y4a_c00484{bottom:786.630000px;}
.y4e_c00484{bottom:786.825000px;}
.y4b_c00484{bottom:787.470000px;}
.y49_c00484{bottom:787.905000px;}
.y4c_c00484{bottom:788.970000px;}
.y47_c00484{bottom:805.245000px;}
.y48_c00484{bottom:806.130000px;}
.y46_c00484{bottom:807.405000px;}
.y45_c00484{bottom:824.745000px;}
.y43_c00484{bottom:826.905000px;}
.y44_c00484{bottom:827.130000px;}
.y3f_c00484{bottom:844.245000px;}
.y40_c00484{bottom:845.130000px;}
.y41_c00484{bottom:845.325000px;}
.y3e_c00484{bottom:846.405000px;}
.y42_c00484{bottom:847.470000px;}
.y39_c00484{bottom:862.905000px;}
.y3c_c00484{bottom:863.745000px;}
.y3b_c00484{bottom:864.825000px;}
.y3a_c00484{bottom:865.470000px;}
.y38_c00484{bottom:865.905000px;}
.y3d_c00484{bottom:866.130000px;}
.y37_c00484{bottom:883.245000px;}
.y35_c00484{bottom:883.680000px;}
.y34_c00484{bottom:884.325000px;}
.y32_c00484{bottom:884.745000px;}
.y36_c00484{bottom:885.405000px;}
.y33_c00484{bottom:885.630000px;}
.y31_c00484{bottom:886.470000px;}
.y30_c00484{bottom:886.905000px;}
.y2e_c00484{bottom:901.905000px;}
.y2c_c00484{bottom:903.825000px;}
.y2d_c00484{bottom:904.245000px;}
.y2f_c00484{bottom:904.905000px;}
.y2b_c00484{bottom:906.405000px;}
.y27_c00484{bottom:923.325000px;}
.y28_c00484{bottom:923.745000px;}
.y2a_c00484{bottom:924.630000px;}
.y25_c00484{bottom:925.470000px;}
.y26_c00484{bottom:925.905000px;}
.y29_c00484{bottom:926.970000px;}
.y23_c00484{bottom:943.245000px;}
.y22_c00484{bottom:944.130000px;}
.y24_c00484{bottom:944.970000px;}
.y21_c00484{bottom:945.405000px;}
.y1d_c00484{bottom:962.745000px;}
.y20_c00484{bottom:964.470000px;}
.y1e_c00484{bottom:964.905000px;}
.y1f_c00484{bottom:965.130000px;}
.y18_c00484{bottom:981.825000px;}
.y1c_c00484{bottom:982.245000px;}
.y19_c00484{bottom:983.325000px;}
.y1b_c00484{bottom:983.970000px;}
.y17_c00484{bottom:984.405000px;}
.y1a_c00484{bottom:984.630000px;}
.y15_c00484{bottom:1001.325000px;}
.y14_c00484{bottom:1002.825000px;}
.y16_c00484{bottom:1003.470000px;}
.y12_c00484{bottom:1003.905000px;}
.y13_c00484{bottom:1004.130000px;}
.y11_c00484{bottom:1021.245000px;}
.y10_c00484{bottom:1023.405000px;}
.yb_c00484{bottom:1039.905000px;}
.yd_c00484{bottom:1040.745000px;}
.ye_c00484{bottom:1041.825000px;}
.yc_c00484{bottom:1042.905000px;}
.yf_c00484{bottom:1043.130000px;}
.y7_c00484{bottom:1060.245000px;}
.ya_c00484{bottom:1060.470000px;}
.y4_c00484{bottom:1061.745000px;}
.y8_c00484{bottom:1062.405000px;}
.y9_c00484{bottom:1062.825000px;}
.y6_c00484{bottom:1063.470000px;}
.y5_c00484{bottom:1063.905000px;}
.y2_c00484{bottom:1098.405000px;}
.y1_c00484{bottom:1100.550000px;}
.h7_c00484{height:23.025234px;}
.h1_c00484{height:25.091602px;}
.h3_c00484{height:27.231768px;}
.h5_c00484{height:31.364502px;}
.h2_c00484{height:35.571035px;}
.h6_c00484{height:39.777568px;}
.h4_c00484{height:43.910303px;}
.h8_c00484{height:48.116836px;}
.h0_c00484{height:1335.000000px;}
.w0_c00484{width:880.500000px;}
.x0_c00484{left:0.000000px;}
.x4_c00484{left:150.420000px;}
.xb6_c00484{left:166.500000px;}
.x8a_c00484{left:168.420000px;}
.x6d_c00484{left:169.920000px;}
.xa4_c00484{left:177.420000px;}
.xab_c00484{left:178.920000px;}
.xc5_c00484{left:180.000000px;}
.x81_c00484{left:181.500000px;}
.x30_c00484{left:185.580000px;}
.x24_c00484{left:187.500000px;}
.x95_c00484{left:189.000000px;}
.x54_c00484{left:191.580000px;}
.x8b_c00484{left:195.000000px;}
.x79_c00484{left:196.920000px;}
.x6e_c00484{left:198.000000px;}
.x5_c00484{left:199.080000px;}
.xa5_c00484{left:200.580000px;}
.x14_c00484{left:202.920000px;}
.xc8_c00484{left:204.420000px;}
.x3d_c00484{left:208.500000px;}
.x55_c00484{left:210.420000px;}
.xb4_c00484{left:213.420000px;}
.x25_c00484{left:216.000000px;}
.x82_c00484{left:219.000000px;}
.xc1_c00484{left:225.000000px;}
.x7a_c00484{left:226.500000px;}
.x15_c00484{left:229.920000px;}
.x61_c00484{left:232.500000px;}
.x4a_c00484{left:233.580000px;}
.x56_c00484{left:236.580000px;}
.x31_c00484{left:238.500000px;}
.x6_c00484{left:239.580000px;}
.x3e_c00484{left:242.580000px;}
.xb5_c00484{left:244.080000px;}
.xa6_c00484{left:246.420000px;}
.x8c_c00484{left:249.000000px;}
.xc2_c00484{left:252.420000px;}
.x3f_c00484{left:259.920000px;}
.xcd_c00484{left:261.000000px;}
.x96_c00484{left:262.500000px;}
.x62_c00484{left:265.080000px;}
.x26_c00484{left:266.580000px;}
.x32_c00484{left:270.000000px;}
.xac_c00484{left:271.500000px;}
.x16_c00484{left:273.000000px;}
.x4b_c00484{left:274.500000px;}
.x57_c00484{left:280.500000px;}
.x83_c00484{left:283.500000px;}
.x7_c00484{left:285.000000px;}
.x40_c00484{left:286.500000px;}
.x6f_c00484{left:292.500000px;}
.x8d_c00484{left:295.500000px;}
.x27_c00484{left:297.000000px;}
.xad_c00484{left:298.500000px;}
.x17_c00484{left:305.580000px;}
.x33_c00484{left:307.500000px;}
.x70_c00484{left:309.000000px;}
.x63_c00484{left:310.920000px;}
.x8_c00484{left:312.420000px;}
.xa7_c00484{left:313.500000px;}
.x4c_c00484{left:314.580000px;}
.x7b_c00484{left:316.920000px;}
.x41_c00484{left:322.500000px;}
.x18_c00484{left:324.420000px;}
.x8e_c00484{left:328.920000px;}
.xb7_c00484{left:330.420000px;}
.xce_c00484{left:331.500000px;}
.x28_c00484{left:334.920000px;}
.x71_c00484{left:339.420000px;}
.x9_c00484{left:342.000000px;}
.x58_c00484{left:345.000000px;}
.xd7_c00484{left:346.500000px;}
.x19_c00484{left:351.420000px;}
.x97_c00484{left:354.420000px;}
.xd0_c00484{left:355.500000px;}
.x9f_c00484{left:360.000000px;}
.x29_c00484{left:361.500000px;}
.xba_c00484{left:364.920000px;}
.x42_c00484{left:366.000000px;}
.x59_c00484{left:370.500000px;}
.xae_c00484{left:372.420000px;}
.xa_c00484{left:373.500000px;}
.xa8_c00484{left:374.580000px;}
.xd8_c00484{left:381.000000px;}
.xdc_c00484{left:382.500000px;}
.x7c_c00484{left:385.500000px;}
.x84_c00484{left:386.580000px;}
.xbb_c00484{left:391.500000px;}
.x1a_c00484{left:393.000000px;}
.x8f_c00484{left:396.000000px;}
.x64_c00484{left:397.920000px;}
.x34_c00484{left:399.000000px;}
.x2a_c00484{left:400.080000px;}
.x1_c00484{left:405.000000px;}
.xa0_c00484{left:406.500000px;}
.x90_c00484{left:414.420000px;}
.xb_c00484{left:418.080000px;}
.x72_c00484{left:420.420000px;}
.xc9_c00484{left:421.500000px;}
.x1b_c00484{left:422.580000px;}
.xd9_c00484{left:424.500000px;}
.xa1_c00484{left:427.500000px;}
.x43_c00484{left:430.080000px;}
.xc3_c00484{left:432.000000px;}
.xd1_c00484{left:433.500000px;}
.x65_c00484{left:436.500000px;}
.xc_c00484{left:438.420000px;}
.x2b_c00484{left:439.920000px;}
.x1c_c00484{left:441.420000px;}
.xbc_c00484{left:445.920000px;}
.x35_c00484{left:447.000000px;}
.x98_c00484{left:450.000000px;}
.xca_c00484{left:457.500000px;}
.x5a_c00484{left:458.580000px;}
.x85_c00484{left:460.080000px;}
.x36_c00484{left:465.420000px;}
.x1d_c00484{left:466.500000px;}
.x91_c00484{left:468.000000px;}
.xd_c00484{left:469.920000px;}
.x4d_c00484{left:471.000000px;}
.xa9_c00484{left:472.500000px;}
.x73_c00484{left:475.500000px;}
.x86_c00484{left:478.920000px;}
.x44_c00484{left:480.000000px;}
.x99_c00484{left:481.920000px;}
.x66_c00484{left:484.500000px;}
.xd4_c00484{left:486.000000px;}
.xaf_c00484{left:487.920000px;}
.x5b_c00484{left:490.500000px;}
.x37_c00484{left:492.000000px;}
.x7d_c00484{left:493.500000px;}
.xbd_c00484{left:495.000000px;}
.xd2_c00484{left:499.500000px;}
.x1e_c00484{left:502.500000px;}
.x67_c00484{left:504.420000px;}
.x9a_c00484{left:506.580000px;}
.x45_c00484{left:510.000000px;}
.xa2_c00484{left:511.920000px;}
.x2c_c00484{left:513.000000px;}
.x4e_c00484{left:517.080000px;}
.xe_c00484{left:518.580000px;}
.x9b_c00484{left:526.920000px;}
.xd3_c00484{left:528.420000px;}
.x74_c00484{left:529.920000px;}
.x68_c00484{left:531.000000px;}
.x1f_c00484{left:532.500000px;}
.x7e_c00484{left:534.420000px;}
.x4f_c00484{left:537.420000px;}
.xb0_c00484{left:538.500000px;}
.xda_c00484{left:541.500000px;}
.x87_c00484{left:543.000000px;}
.x2d_c00484{left:546.420000px;}
.x5c_c00484{left:550.920000px;}
.xcf_c00484{left:552.420000px;}
.xc4_c00484{left:553.920000px;}
.x9c_c00484{left:555.420000px;}
.x75_c00484{left:556.500000px;}
.xf_c00484{left:558.000000px;}
.x46_c00484{left:559.500000px;}
.xb8_c00484{left:561.000000px;}
.x50_c00484{left:564.000000px;}
.xc6_c00484{left:565.500000px;}
.x69_c00484{left:568.080000px;}
.x20_c00484{left:569.580000px;}
.xbe_c00484{left:571.500000px;}
.x10_c00484{left:576.420000px;}
.x92_c00484{left:579.000000px;}
.x38_c00484{left:582.420000px;}
.x47_c00484{left:585.000000px;}
.x6a_c00484{left:586.920000px;}
.x21_c00484{left:588.420000px;}
.xaa_c00484{left:589.500000px;}
.xd5_c00484{left:590.580000px;}
.x5d_c00484{left:592.500000px;}
.x88_c00484{left:594.000000px;}
.xb1_c00484{left:595.080000px;}
.x7f_c00484{left:598.080000px;}
.x2e_c00484{left:599.580000px;}
.x76_c00484{left:601.500000px;}
.x51_c00484{left:603.000000px;}
.x39_c00484{left:606.420000px;}
.xb9_c00484{left:607.920000px;}
.x9d_c00484{left:609.000000px;}
.xb2_c00484{left:613.920000px;}
.x11_c00484{left:615.420000px;}
.x48_c00484{left:618.420000px;}
.xa3_c00484{left:623.580000px;}
.x89_c00484{left:625.920000px;}
.x52_c00484{left:630.000000px;}
.x3a_c00484{left:633.000000px;}
.x77_c00484{left:634.500000px;}
.x5e_c00484{left:637.080000px;}
.xb3_c00484{left:640.920000px;}
.x93_c00484{left:642.000000px;}
.xcb_c00484{left:645.000000px;}
.x2f_c00484{left:648.420000px;}
.x22_c00484{left:652.500000px;}
.xd6_c00484{left:655.920000px;}
.x6b_c00484{left:658.920000px;}
.x9e_c00484{left:663.000000px;}
.xdb_c00484{left:664.500000px;}
.x5f_c00484{left:668.580000px;}
.x80_c00484{left:670.920000px;}
.x3b_c00484{left:676.080000px;}
.x23_c00484{left:678.420000px;}
.x78_c00484{left:679.500000px;}
.x12_c00484{left:681.000000px;}
.xcc_c00484{left:682.080000px;}
.x49_c00484{left:683.580000px;}
.x6c_c00484{left:685.500000px;}
.x94_c00484{left:688.080000px;}
.xc7_c00484{left:690.000000px;}
.xbf_c00484{left:692.580000px;}
.x53_c00484{left:696.420000px;}
.x13_c00484{left:697.500000px;}
.x60_c00484{left:700.500000px;}
.x2_c00484{left:705.000000px;}
.x3c_c00484{left:706.920000px;}
.xc0_c00484{left:712.920000px;}
.x3_c00484{left:732.000000px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.ls0_c00484{letter-spacing:0.000000pt;}
.ws0_c00484{word-spacing:-3.020800pt;}
.ws1_c00484{word-spacing:0.000000pt;}
.fs6_c00484{font-size:16.640000pt;}
.fs0_c00484{font-size:18.133333pt;}
.fs2_c00484{font-size:19.680000pt;}
.fs4_c00484{font-size:22.666667pt;}
.fs1_c00484{font-size:25.706667pt;}
.fs5_c00484{font-size:28.746667pt;}
.fs3_c00484{font-size:31.733333pt;}
.fs7_c00484{font-size:34.773333pt;}
.y0_c00484{bottom:0.000000pt;}
.y3_c00484{bottom:198.466667pt;}
.y86_c00484{bottom:222.640000pt;}
.y84_c00484{bottom:223.400000pt;}
.y88_c00484{bottom:223.600000pt;}
.y87_c00484{bottom:224.360000pt;}
.y89_c00484{bottom:224.560000pt;}
.y85_c00484{bottom:226.266667pt;}
.y82_c00484{bottom:235.973333pt;}
.y80_c00484{bottom:236.733333pt;}
.y83_c00484{bottom:236.933333pt;}
.y81_c00484{bottom:237.693333pt;}
.y7f_c00484{bottom:238.266667pt;}
.y7e_c00484{bottom:238.640000pt;}
.y7d_c00484{bottom:239.600000pt;}
.y7b_c00484{bottom:249.306667pt;}
.y8b_c00484{bottom:249.693333pt;}
.y78_c00484{bottom:250.066667pt;}
.y79_c00484{bottom:251.026667pt;}
.y7a_c00484{bottom:251.226667pt;}
.y8a_c00484{bottom:251.600000pt;}
.y7c_c00484{bottom:251.973333pt;}
.y74_c00484{bottom:539.026667pt;}
.y73_c00484{bottom:539.773333pt;}
.y76_c00484{bottom:541.106667pt;}
.y75_c00484{bottom:541.893333pt;}
.y77_c00484{bottom:542.640000pt;}
.y72_c00484{bottom:543.026667pt;}
.y6f_c00484{bottom:558.066667pt;}
.y6b_c00484{bottom:558.440000pt;}
.y71_c00484{bottom:559.026667pt;}
.y6d_c00484{bottom:559.226667pt;}
.y6e_c00484{bottom:559.400000pt;}
.y70_c00484{bottom:559.973333pt;}
.y6c_c00484{bottom:560.360000pt;}
.y67_c00484{bottom:575.773333pt;}
.y68_c00484{bottom:576.560000pt;}
.y69_c00484{bottom:576.733333pt;}
.y6a_c00484{bottom:577.306667pt;}
.y66_c00484{bottom:577.693333pt;}
.y64_c00484{bottom:591.026667pt;}
.y63_c00484{bottom:593.106667pt;}
.y62_c00484{bottom:595.026667pt;}
.y65_c00484{bottom:595.973333pt;}
.y5f_c00484{bottom:610.440000pt;}
.y61_c00484{bottom:612.360000pt;}
.y60_c00484{bottom:612.560000pt;}
.y5e_c00484{bottom:627.026667pt;}
.y5c_c00484{bottom:627.773333pt;}
.y5d_c00484{bottom:627.973333pt;}
.y5a_c00484{bottom:629.693333pt;}
.y5b_c00484{bottom:629.893333pt;}
.y56_c00484{bottom:645.106667pt;}
.y55_c00484{bottom:647.026667pt;}
.y57_c00484{bottom:647.226667pt;}
.y58_c00484{bottom:647.973333pt;}
.y59_c00484{bottom:648.360000pt;}
.y53_c00484{bottom:664.360000pt;}
.y54_c00484{bottom:664.560000pt;}
.y51_c00484{bottom:681.106667pt;}
.y50_c00484{bottom:681.893333pt;}
.y52_c00484{bottom:682.640000pt;}
.y4f_c00484{bottom:683.026667pt;}
.y4d_c00484{bottom:698.440000pt;}
.y4a_c00484{bottom:699.226667pt;}
.y4e_c00484{bottom:699.400000pt;}
.y4b_c00484{bottom:699.973333pt;}
.y49_c00484{bottom:700.360000pt;}
.y4c_c00484{bottom:701.306667pt;}
.y47_c00484{bottom:715.773333pt;}
.y48_c00484{bottom:716.560000pt;}
.y46_c00484{bottom:717.693333pt;}
.y45_c00484{bottom:733.106667pt;}
.y43_c00484{bottom:735.026667pt;}
.y44_c00484{bottom:735.226667pt;}
.y3f_c00484{bottom:750.440000pt;}
.y40_c00484{bottom:751.226667pt;}
.y41_c00484{bottom:751.400000pt;}
.y3e_c00484{bottom:752.360000pt;}
.y42_c00484{bottom:753.306667pt;}
.y39_c00484{bottom:767.026667pt;}
.y3c_c00484{bottom:767.773333pt;}
.y3b_c00484{bottom:768.733333pt;}
.y3a_c00484{bottom:769.306667pt;}
.y38_c00484{bottom:769.693333pt;}
.y3d_c00484{bottom:769.893333pt;}
.y37_c00484{bottom:785.106667pt;}
.y35_c00484{bottom:785.493333pt;}
.y34_c00484{bottom:786.066667pt;}
.y32_c00484{bottom:786.440000pt;}
.y36_c00484{bottom:787.026667pt;}
.y33_c00484{bottom:787.226667pt;}
.y31_c00484{bottom:787.973333pt;}
.y30_c00484{bottom:788.360000pt;}
.y2e_c00484{bottom:801.693333pt;}
.y2c_c00484{bottom:803.400000pt;}
.y2d_c00484{bottom:803.773333pt;}
.y2f_c00484{bottom:804.360000pt;}
.y2b_c00484{bottom:805.693333pt;}
.y27_c00484{bottom:820.733333pt;}
.y28_c00484{bottom:821.106667pt;}
.y2a_c00484{bottom:821.893333pt;}
.y25_c00484{bottom:822.640000pt;}
.y26_c00484{bottom:823.026667pt;}
.y29_c00484{bottom:823.973333pt;}
.y23_c00484{bottom:838.440000pt;}
.y22_c00484{bottom:839.226667pt;}
.y24_c00484{bottom:839.973333pt;}
.y21_c00484{bottom:840.360000pt;}
.y1d_c00484{bottom:855.773333pt;}
.y20_c00484{bottom:857.306667pt;}
.y1e_c00484{bottom:857.693333pt;}
.y1f_c00484{bottom:857.893333pt;}
.y18_c00484{bottom:872.733333pt;}
.y1c_c00484{bottom:873.106667pt;}
.y19_c00484{bottom:874.066667pt;}
.y1b_c00484{bottom:874.640000pt;}
.y17_c00484{bottom:875.026667pt;}
.y1a_c00484{bottom:875.226667pt;}
.y15_c00484{bottom:890.066667pt;}
.y14_c00484{bottom:891.400000pt;}
.y16_c00484{bottom:891.973333pt;}
.y12_c00484{bottom:892.360000pt;}
.y13_c00484{bottom:892.560000pt;}
.y11_c00484{bottom:907.773333pt;}
.y10_c00484{bottom:909.693333pt;}
.yb_c00484{bottom:924.360000pt;}
.yd_c00484{bottom:925.106667pt;}
.ye_c00484{bottom:926.066667pt;}
.yc_c00484{bottom:927.026667pt;}
.yf_c00484{bottom:927.226667pt;}
.y7_c00484{bottom:942.440000pt;}
.ya_c00484{bottom:942.640000pt;}
.y4_c00484{bottom:943.773333pt;}
.y8_c00484{bottom:944.360000pt;}
.y9_c00484{bottom:944.733333pt;}
.y6_c00484{bottom:945.306667pt;}
.y5_c00484{bottom:945.693333pt;}
.y2_c00484{bottom:976.360000pt;}
.y1_c00484{bottom:978.266667pt;}
.h7_c00484{height:20.466875pt;}
.h1_c00484{height:22.303646pt;}
.h3_c00484{height:24.206016pt;}
.h5_c00484{height:27.879557pt;}
.h2_c00484{height:31.618698pt;}
.h6_c00484{height:35.357839pt;}
.h4_c00484{height:39.031380pt;}
.h8_c00484{height:42.770521pt;}
.h0_c00484{height:1186.666667pt;}
.w0_c00484{width:782.666667pt;}
.x0_c00484{left:0.000000pt;}
.x4_c00484{left:133.706667pt;}
.xb6_c00484{left:148.000000pt;}
.x8a_c00484{left:149.706667pt;}
.x6d_c00484{left:151.040000pt;}
.xa4_c00484{left:157.706667pt;}
.xab_c00484{left:159.040000pt;}
.xc5_c00484{left:160.000000pt;}
.x81_c00484{left:161.333333pt;}
.x30_c00484{left:164.960000pt;}
.x24_c00484{left:166.666667pt;}
.x95_c00484{left:168.000000pt;}
.x54_c00484{left:170.293333pt;}
.x8b_c00484{left:173.333333pt;}
.x79_c00484{left:175.040000pt;}
.x6e_c00484{left:176.000000pt;}
.x5_c00484{left:176.960000pt;}
.xa5_c00484{left:178.293333pt;}
.x14_c00484{left:180.373333pt;}
.xc8_c00484{left:181.706667pt;}
.x3d_c00484{left:185.333333pt;}
.x55_c00484{left:187.040000pt;}
.xb4_c00484{left:189.706667pt;}
.x25_c00484{left:192.000000pt;}
.x82_c00484{left:194.666667pt;}
.xc1_c00484{left:200.000000pt;}
.x7a_c00484{left:201.333333pt;}
.x15_c00484{left:204.373333pt;}
.x61_c00484{left:206.666667pt;}
.x4a_c00484{left:207.626667pt;}
.x56_c00484{left:210.293333pt;}
.x31_c00484{left:212.000000pt;}
.x6_c00484{left:212.960000pt;}
.x3e_c00484{left:215.626667pt;}
.xb5_c00484{left:216.960000pt;}
.xa6_c00484{left:219.040000pt;}
.x8c_c00484{left:221.333333pt;}
.xc2_c00484{left:224.373333pt;}
.x3f_c00484{left:231.040000pt;}
.xcd_c00484{left:232.000000pt;}
.x96_c00484{left:233.333333pt;}
.x62_c00484{left:235.626667pt;}
.x26_c00484{left:236.960000pt;}
.x32_c00484{left:240.000000pt;}
.xac_c00484{left:241.333333pt;}
.x16_c00484{left:242.666667pt;}
.x4b_c00484{left:244.000000pt;}
.x57_c00484{left:249.333333pt;}
.x83_c00484{left:252.000000pt;}
.x7_c00484{left:253.333333pt;}
.x40_c00484{left:254.666667pt;}
.x6f_c00484{left:260.000000pt;}
.x8d_c00484{left:262.666667pt;}
.x27_c00484{left:264.000000pt;}
.xad_c00484{left:265.333333pt;}
.x17_c00484{left:271.626667pt;}
.x33_c00484{left:273.333333pt;}
.x70_c00484{left:274.666667pt;}
.x63_c00484{left:276.373333pt;}
.x8_c00484{left:277.706667pt;}
.xa7_c00484{left:278.666667pt;}
.x4c_c00484{left:279.626667pt;}
.x7b_c00484{left:281.706667pt;}
.x41_c00484{left:286.666667pt;}
.x18_c00484{left:288.373333pt;}
.x8e_c00484{left:292.373333pt;}
.xb7_c00484{left:293.706667pt;}
.xce_c00484{left:294.666667pt;}
.x28_c00484{left:297.706667pt;}
.x71_c00484{left:301.706667pt;}
.x9_c00484{left:304.000000pt;}
.x58_c00484{left:306.666667pt;}
.xd7_c00484{left:308.000000pt;}
.x19_c00484{left:312.373333pt;}
.x97_c00484{left:315.040000pt;}
.xd0_c00484{left:316.000000pt;}
.x9f_c00484{left:320.000000pt;}
.x29_c00484{left:321.333333pt;}
.xba_c00484{left:324.373333pt;}
.x42_c00484{left:325.333333pt;}
.x59_c00484{left:329.333333pt;}
.xae_c00484{left:331.040000pt;}
.xa_c00484{left:332.000000pt;}
.xa8_c00484{left:332.960000pt;}
.xd8_c00484{left:338.666667pt;}
.xdc_c00484{left:340.000000pt;}
.x7c_c00484{left:342.666667pt;}
.x84_c00484{left:343.626667pt;}
.xbb_c00484{left:348.000000pt;}
.x1a_c00484{left:349.333333pt;}
.x8f_c00484{left:352.000000pt;}
.x64_c00484{left:353.706667pt;}
.x34_c00484{left:354.666667pt;}
.x2a_c00484{left:355.626667pt;}
.x1_c00484{left:360.000000pt;}
.xa0_c00484{left:361.333333pt;}
.x90_c00484{left:368.373333pt;}
.xb_c00484{left:371.626667pt;}
.x72_c00484{left:373.706667pt;}
.xc9_c00484{left:374.666667pt;}
.x1b_c00484{left:375.626667pt;}
.xd9_c00484{left:377.333333pt;}
.xa1_c00484{left:380.000000pt;}
.x43_c00484{left:382.293333pt;}
.xc3_c00484{left:384.000000pt;}
.xd1_c00484{left:385.333333pt;}
.x65_c00484{left:388.000000pt;}
.xc_c00484{left:389.706667pt;}
.x2b_c00484{left:391.040000pt;}
.x1c_c00484{left:392.373333pt;}
.xbc_c00484{left:396.373333pt;}
.x35_c00484{left:397.333333pt;}
.x98_c00484{left:400.000000pt;}
.xca_c00484{left:406.666667pt;}
.x5a_c00484{left:407.626667pt;}
.x85_c00484{left:408.960000pt;}
.x36_c00484{left:413.706667pt;}
.x1d_c00484{left:414.666667pt;}
.x91_c00484{left:416.000000pt;}
.xd_c00484{left:417.706667pt;}
.x4d_c00484{left:418.666667pt;}
.xa9_c00484{left:420.000000pt;}
.x73_c00484{left:422.666667pt;}
.x86_c00484{left:425.706667pt;}
.x44_c00484{left:426.666667pt;}
.x99_c00484{left:428.373333pt;}
.x66_c00484{left:430.666667pt;}
.xd4_c00484{left:432.000000pt;}
.xaf_c00484{left:433.706667pt;}
.x5b_c00484{left:436.000000pt;}
.x37_c00484{left:437.333333pt;}
.x7d_c00484{left:438.666667pt;}
.xbd_c00484{left:440.000000pt;}
.xd2_c00484{left:444.000000pt;}
.x1e_c00484{left:446.666667pt;}
.x67_c00484{left:448.373333pt;}
.x9a_c00484{left:450.293333pt;}
.x45_c00484{left:453.333333pt;}
.xa2_c00484{left:455.040000pt;}
.x2c_c00484{left:456.000000pt;}
.x4e_c00484{left:459.626667pt;}
.xe_c00484{left:460.960000pt;}
.x9b_c00484{left:468.373333pt;}
.xd3_c00484{left:469.706667pt;}
.x74_c00484{left:471.040000pt;}
.x68_c00484{left:472.000000pt;}
.x1f_c00484{left:473.333333pt;}
.x7e_c00484{left:475.040000pt;}
.x4f_c00484{left:477.706667pt;}
.xb0_c00484{left:478.666667pt;}
.xda_c00484{left:481.333333pt;}
.x87_c00484{left:482.666667pt;}
.x2d_c00484{left:485.706667pt;}
.x5c_c00484{left:489.706667pt;}
.xcf_c00484{left:491.040000pt;}
.xc4_c00484{left:492.373333pt;}
.x9c_c00484{left:493.706667pt;}
.x75_c00484{left:494.666667pt;}
.xf_c00484{left:496.000000pt;}
.x46_c00484{left:497.333333pt;}
.xb8_c00484{left:498.666667pt;}
.x50_c00484{left:501.333333pt;}
.xc6_c00484{left:502.666667pt;}
.x69_c00484{left:504.960000pt;}
.x20_c00484{left:506.293333pt;}
.xbe_c00484{left:508.000000pt;}
.x10_c00484{left:512.373333pt;}
.x92_c00484{left:514.666667pt;}
.x38_c00484{left:517.706667pt;}
.x47_c00484{left:520.000000pt;}
.x6a_c00484{left:521.706667pt;}
.x21_c00484{left:523.040000pt;}
.xaa_c00484{left:524.000000pt;}
.xd5_c00484{left:524.960000pt;}
.x5d_c00484{left:526.666667pt;}
.x88_c00484{left:528.000000pt;}
.xb1_c00484{left:528.960000pt;}
.x7f_c00484{left:531.626667pt;}
.x2e_c00484{left:532.960000pt;}
.x76_c00484{left:534.666667pt;}
.x51_c00484{left:536.000000pt;}
.x39_c00484{left:539.040000pt;}
.xb9_c00484{left:540.373333pt;}
.x9d_c00484{left:541.333333pt;}
.xb2_c00484{left:545.706667pt;}
.x11_c00484{left:547.040000pt;}
.x48_c00484{left:549.706667pt;}
.xa3_c00484{left:554.293333pt;}
.x89_c00484{left:556.373333pt;}
.x52_c00484{left:560.000000pt;}
.x3a_c00484{left:562.666667pt;}
.x77_c00484{left:564.000000pt;}
.x5e_c00484{left:566.293333pt;}
.xb3_c00484{left:569.706667pt;}
.x93_c00484{left:570.666667pt;}
.xcb_c00484{left:573.333333pt;}
.x2f_c00484{left:576.373333pt;}
.x22_c00484{left:580.000000pt;}
.xd6_c00484{left:583.040000pt;}
.x6b_c00484{left:585.706667pt;}
.x9e_c00484{left:589.333333pt;}
.xdb_c00484{left:590.666667pt;}
.x5f_c00484{left:594.293333pt;}
.x80_c00484{left:596.373333pt;}
.x3b_c00484{left:600.960000pt;}
.x23_c00484{left:603.040000pt;}
.x78_c00484{left:604.000000pt;}
.x12_c00484{left:605.333333pt;}
.xcc_c00484{left:606.293333pt;}
.x49_c00484{left:607.626667pt;}
.x6c_c00484{left:609.333333pt;}
.x94_c00484{left:611.626667pt;}
.xc7_c00484{left:613.333333pt;}
.xbf_c00484{left:615.626667pt;}
.x53_c00484{left:619.040000pt;}
.x13_c00484{left:620.000000pt;}
.x60_c00484{left:622.666667pt;}
.x2_c00484{left:626.666667pt;}
.x3c_c00484{left:628.373333pt;}
.xc0_c00484{left:633.706667pt;}
.x3_c00484{left:650.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_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_fc681d4aa5315c3f50f8de9e.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mce_c00485{transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);}
.m39_c00485{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m40_c00485{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.m86_c00485{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m0_c00485{transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);}
.m7e_c00485{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);}
.m5b_c00485{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m73_c00485{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m79_c00485{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m89_c00485{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m96_c00485{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m60_c00485{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m7f_c00485{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m59_c00485{transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);}
.m49_c00485{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.maa_c00485{transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);}
.m4e_c00485{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.m88_c00485{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m27_c00485{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m7b_c00485{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m6b_c00485{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m1b_c00485{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m41_c00485{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.md_c00485{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m72_c00485{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m62_c00485{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m3f_c00485{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m2c_c00485{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.ma2_c00485{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m6a_c00485{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m98_c00485{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m3b_c00485{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m21_c00485{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m50_c00485{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m3e_c00485{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m3_c00485{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m18_c00485{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m5f_c00485{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.mcc_c00485{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.m69_c00485{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m5d_c00485{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m68_c00485{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m9e_c00485{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.mc4_c00485{transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);}
.m8a_c00485{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m74_c00485{transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);}
.m51_c00485{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m4a_c00485{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m75_c00485{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m25_c00485{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m5e_c00485{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m2a_c00485{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.md1_c00485{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m38_c00485{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.ma3_c00485{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_c00485{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.ma4_c00485{transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);}
.m78_c00485{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.mab_c00485{transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);}
.m29_c00485{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m24_c00485{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m5a_c00485{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m57_c00485{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.m6c_c00485{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.m10_c00485{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m2e_c00485{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m6d_c00485{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m8c_c00485{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.ma6_c00485{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m22_c00485{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m31_c00485{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m2b_c00485{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.mba_c00485{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.ma_c00485{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00485{transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);}
.mb5_c00485{transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);}
.m28_c00485{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m64_c00485{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.md4_c00485{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m80_c00485{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mc_c00485{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m85_c00485{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m19_c00485{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);}
.m65_c00485{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m87_c00485{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mbb_c00485{transform:matrix(0.507212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507212,0.000000,0.000000,0.250000,0,0);}
.m46_c00485{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m77_c00485{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m7c_c00485{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m43_c00485{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.maf_c00485{transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);}
.m6f_c00485{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m45_c00485{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.mca_c00485{transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);}
.mb2_c00485{transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);}
.m63_c00485{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m32_c00485{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m13_c00485{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m94_c00485{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m2d_c00485{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m5c_c00485{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m71_c00485{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m84_c00485{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mbf_c00485{transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529647,0.000000,0.000000,0.250000,0,0);}
.m6e_c00485{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mcd_c00485{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.m9_c00485{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m83_c00485{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m2_c00485{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m5_c00485{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m20_c00485{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m76_c00485{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m23_c00485{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m6_c00485{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m81_c00485{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m4b_c00485{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m34_c00485{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m61_c00485{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mb6_c00485{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m1a_c00485{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m67_c00485{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m58_c00485{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m1e_c00485{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m2f_c00485{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m1c_c00485{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.mb0_c00485{transform:matrix(0.556167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556167,0.000000,0.000000,0.250000,0,0);}
.m3c_c00485{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m16_c00485{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m92_c00485{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m1f_c00485{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mae_c00485{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m36_c00485{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.mbe_c00485{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m35_c00485{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m3a_c00485{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.mb_c00485{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m90_c00485{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);}
.md3_c00485{transform:matrix(0.570485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570485,0.000000,0.000000,0.250000,0,0);}
.me_c00485{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m8f_c00485{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m4c_c00485{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m42_c00485{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m30_c00485{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m53_c00485{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m12_c00485{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.ma7_c00485{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.m91_c00485{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m8e_c00485{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.m82_c00485{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m1d_c00485{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m8b_c00485{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m3d_c00485{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m52_c00485{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.mc0_c00485{transform:matrix(0.606571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606571,0.000000,0.000000,0.250000,0,0);}
.ma0_c00485{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m15_c00485{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m9f_c00485{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m7_c00485{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m9d_c00485{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.mac_c00485{transform:matrix(0.616987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616987,0.000000,0.000000,0.250000,0,0);}
.m9c_c00485{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m93_c00485{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mc3_c00485{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m1_c00485{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_c00485{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);}
.m8d_c00485{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m9a_c00485{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m44_c00485{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mc8_c00485{transform:matrix(0.643172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643172,0.000000,0.000000,0.250000,0,0);}
.m7d_c00485{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m17_c00485{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m97_c00485{transform:matrix(0.655147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655147,0.000000,0.000000,0.250000,0,0);}
.ma1_c00485{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m48_c00485{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.ma8_c00485{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m8_c00485{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m95_c00485{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.ma5_c00485{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.mcf_c00485{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.mb8_c00485{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.mc1_c00485{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.mb7_c00485{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m99_c00485{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m37_c00485{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m9b_c00485{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);}
.md5_c00485{transform:matrix(0.709251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709251,0.000000,0.000000,0.250000,0,0);}
.mc6_c00485{transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);}
.m33_c00485{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mc7_c00485{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.m26_c00485{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mbc_c00485{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m47_c00485{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.mb1_c00485{transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);}
.mc5_c00485{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.mb4_c00485{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.mf_c00485{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mc2_c00485{transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.751263,0.000000,0.000000,0.250000,0,0);}
.md2_c00485{transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);}
.m54_c00485{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mb3_c00485{transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);}
.m4_c00485{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.md0_c00485{transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);}
.mcb_c00485{transform:matrix(0.772727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772727,0.000000,0.000000,0.250000,0,0);}
.m56_c00485{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m70_c00485{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.m55_c00485{transform:matrix(0.793269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.793269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.793269,0.000000,0.000000,0.250000,0,0);}
.mc9_c00485{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.md6_c00485{transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);}
.mb9_c00485{transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);}
.m11_c00485{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m4f_c00485{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mad_c00485{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.mbd_c00485{transform:matrix(0.881057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.881057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.881057,0.000000,0.000000,0.250000,0,0);}
.m4d_c00485{transform:matrix(1.050735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.050735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.050735,0.000000,0.000000,0.250000,0,0);}
.ma9_c00485{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.v1_c00485{vertical-align:-6.000000px;}
.v0_c00485{vertical-align:0.000000px;}
.v2_c00485{vertical-align:6.000000px;}
.ls2_c00485{letter-spacing:0.000000px;}
.ls1_c00485{letter-spacing:18.591909px;}
.ls0_c00485{letter-spacing:71.004203px;}
.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;}
}
.ws4_c00485{word-spacing:-78.958283px;}
.ws7_c00485{word-spacing:-20.589189px;}
.ws0_c00485{word-spacing:-8.811328px;}
.ws1_c00485{word-spacing:-3.398400px;}
.ws18_c00485{word-spacing:0.000000px;}
.ws6_c00485{word-spacing:16.594629px;}
.ws15_c00485{word-spacing:29.881209px;}
.ws16_c00485{word-spacing:32.801645px;}
.wsd_c00485{word-spacing:33.641400px;}
.wsf_c00485{word-spacing:35.644341px;}
.ws14_c00485{word-spacing:35.722082px;}
.wsa_c00485{word-spacing:37.647282px;}
.ws10_c00485{word-spacing:41.653165px;}
.ws2_c00485{word-spacing:42.369370px;}
.ws11_c00485{word-spacing:43.123678px;}
.wse_c00485{word-spacing:43.656106px;}
.ws17_c00485{word-spacing:45.278742px;}
.ws9_c00485{word-spacing:57.018127px;}
.wsc_c00485{word-spacing:60.638400px;}
.ws8_c00485{word-spacing:62.015851px;}
.ws3_c00485{word-spacing:63.050123px;}
.ws13_c00485{word-spacing:65.799022px;}
.wsb_c00485{word-spacing:66.638400px;}
.ws12_c00485{word-spacing:69.032182px;}
.ws5_c00485{word-spacing:96.477382px;}
._1_c00485{margin-left:-71.004203px;}
._2_c00485{margin-left:-18.591909px;}
._4_c00485{width:45.601362px;}
._9_c00485{width:46.654562px;}
._5_c00485{width:48.922695px;}
._7_c00485{width:53.232822px;}
._0_c00485{width:73.186895px;}
._3_c00485{width:74.570880px;}
._8_c00485{width:79.964662px;}
._6_c00485{width:83.197823px;}
.fc0_c00485{color:transparent;}
.fs8_c00485{font-size:3.420000px;}
.fs9_c00485{font-size:11.880000px;}
.fs7_c00485{font-size:13.620000px;}
.fs3_c00485{font-size:18.720000px;}
.fs1_c00485{font-size:20.400000px;}
.fs4_c00485{font-size:25.500000px;}
.fs2_c00485{font-size:28.920000px;}
.fs5_c00485{font-size:32.340000px;}
.fs0_c00485{font-size:35.700000px;}
.fs6_c00485{font-size:39.120000px;}
.y0_c00485{bottom:0.000000px;}
.yd2_c00485{bottom:244.050000px;}
.yd1_c00485{bottom:246.195000px;}
.yd0_c00485{bottom:248.130000px;}
.ycf_c00485{bottom:249.195000px;}
.ycb_c00485{bottom:261.630000px;}
.ycc_c00485{bottom:262.695000px;}
.yce_c00485{bottom:263.130000px;}
.ycd_c00485{bottom:264.195000px;}
.yc8_c00485{bottom:274.695000px;}
.yc7_c00485{bottom:275.130000px;}
.yc6_c00485{bottom:276.195000px;}
.yca_c00485{bottom:276.630000px;}
.yc9_c00485{bottom:277.695000px;}
.yc5_c00485{bottom:280.695000px;}
.yc0_c00485{bottom:289.695000px;}
.yc1_c00485{bottom:290.130000px;}
.yc2_c00485{bottom:290.775000px;}
.yc3_c00485{bottom:291.195000px;}
.yc4_c00485{bottom:291.420000px;}
.ybb_c00485{bottom:303.630000px;}
.ybd_c00485{bottom:304.275000px;}
.ybc_c00485{bottom:304.695000px;}
.ybe_c00485{bottom:305.130000px;}
.ybf_c00485{bottom:306.195000px;}
.yb8_c00485{bottom:318.195000px;}
.yba_c00485{bottom:318.630000px;}
.yb9_c00485{bottom:319.695000px;}
.yb4_c00485{bottom:331.695000px;}
.yb7_c00485{bottom:332.130000px;}
.yb6_c00485{bottom:333.195000px;}
.yb5_c00485{bottom:333.420000px;}
.yaf_c00485{bottom:344.550000px;}
.yb0_c00485{bottom:345.195000px;}
.yb3_c00485{bottom:345.630000px;}
.yb1_c00485{bottom:346.695000px;}
.yb2_c00485{bottom:347.130000px;}
.yac_c00485{bottom:358.275000px;}
.yab_c00485{bottom:359.130000px;}
.yad_c00485{bottom:360.195000px;}
.yae_c00485{bottom:360.630000px;}
.ya8_c00485{bottom:372.195000px;}
.ya9_c00485{bottom:372.630000px;}
.yaa_c00485{bottom:373.695000px;}
.ya5_c00485{bottom:387.195000px;}
.ya6_c00485{bottom:387.630000px;}
.ya7_c00485{bottom:388.695000px;}
.ya0_c00485{bottom:399.630000px;}
.ya1_c00485{bottom:400.695000px;}
.ya3_c00485{bottom:401.130000px;}
.ya2_c00485{bottom:402.195000px;}
.ya4_c00485{bottom:402.420000px;}
.y9d_c00485{bottom:413.130000px;}
.y9c_c00485{bottom:414.195000px;}
.y9f_c00485{bottom:415.695000px;}
.y9e_c00485{bottom:416.130000px;}
.y98_c00485{bottom:426.630000px;}
.y97_c00485{bottom:427.695000px;}
.y9b_c00485{bottom:428.130000px;}
.y99_c00485{bottom:430.695000px;}
.y9a_c00485{bottom:430.920000px;}
.y94_c00485{bottom:441.630000px;}
.y96_c00485{bottom:442.920000px;}
.y95_c00485{bottom:444.195000px;}
.y90_c00485{bottom:455.130000px;}
.y8f_c00485{bottom:456.195000px;}
.y92_c00485{bottom:456.630000px;}
.y91_c00485{bottom:457.695000px;}
.y93_c00485{bottom:457.920000px;}
.y8c_c00485{bottom:468.195000px;}
.y8b_c00485{bottom:470.130000px;}
.y8e_c00485{bottom:471.195000px;}
.y8d_c00485{bottom:471.420000px;}
.y88_c00485{bottom:484.695000px;}
.y8a_c00485{bottom:484.920000px;}
.y89_c00485{bottom:486.420000px;}
.y87_c00485{bottom:498.630000px;}
.y85_c00485{bottom:499.695000px;}
.y86_c00485{bottom:499.920000px;}
.y82_c00485{bottom:512.130000px;}
.y84_c00485{bottom:513.195000px;}
.y83_c00485{bottom:513.420000px;}
.y7f_c00485{bottom:525.630000px;}
.y7e_c00485{bottom:526.695000px;}
.y80_c00485{bottom:526.920000px;}
.y81_c00485{bottom:528.420000px;}
.y7a_c00485{bottom:544.695000px;}
.y7d_c00485{bottom:545.130000px;}
.y7b_c00485{bottom:546.195000px;}
.y7c_c00485{bottom:546.630000px;}
.y76_c00485{bottom:561.630000px;}
.y77_c00485{bottom:562.695000px;}
.y79_c00485{bottom:563.130000px;}
.y78_c00485{bottom:564.195000px;}
.y75_c00485{bottom:581.550000px;}
.y74_c00485{bottom:592.905000px;}
.y73_c00485{bottom:593.325000px;}
.y72_c00485{bottom:595.050000px;}
.y70_c00485{bottom:595.470000px;}
.y71_c00485{bottom:596.550000px;}
.y6f_c00485{bottom:617.550000px;}
.y6e_c00485{bottom:643.470000px;}
.y6d_c00485{bottom:643.905000px;}
.y6b_c00485{bottom:645.630000px;}
.y6c_c00485{bottom:646.050000px;}
.y6a_c00485{bottom:646.905000px;}
.y66_c00485{bottom:663.405000px;}
.y65_c00485{bottom:664.245000px;}
.y67_c00485{bottom:666.405000px;}
.y68_c00485{bottom:666.630000px;}
.y69_c00485{bottom:667.470000px;}
.y63_c00485{bottom:682.905000px;}
.y64_c00485{bottom:683.745000px;}
.y62_c00485{bottom:685.905000px;}
.y61_c00485{bottom:686.130000px;}
.y60_c00485{bottom:703.245000px;}
.y5e_c00485{bottom:705.405000px;}
.y5f_c00485{bottom:706.470000px;}
.y5b_c00485{bottom:721.905000px;}
.y5d_c00485{bottom:724.245000px;}
.y5a_c00485{bottom:724.905000px;}
.y5c_c00485{bottom:725.970000px;}
.y58_c00485{bottom:743.745000px;}
.y59_c00485{bottom:744.630000px;}
.y56_c00485{bottom:745.905000px;}
.y57_c00485{bottom:746.970000px;}
.y53_c00485{bottom:760.905000px;}
.y55_c00485{bottom:761.745000px;}
.y54_c00485{bottom:763.245000px;}
.y52_c00485{bottom:765.405000px;}
.y4f_c00485{bottom:781.245000px;}
.y4d_c00485{bottom:782.745000px;}
.y51_c00485{bottom:783.630000px;}
.y4e_c00485{bottom:784.905000px;}
.y50_c00485{bottom:785.970000px;}
.y4c_c00485{bottom:802.245000px;}
.y4b_c00485{bottom:804.405000px;}
.y4a_c00485{bottom:821.745000px;}
.y48_c00485{bottom:823.905000px;}
.y49_c00485{bottom:825.405000px;}
.y45_c00485{bottom:841.245000px;}
.y47_c00485{bottom:842.970000px;}
.y44_c00485{bottom:843.405000px;}
.y46_c00485{bottom:844.905000px;}
.y3f_c00485{bottom:860.745000px;}
.y41_c00485{bottom:861.825000px;}
.y42_c00485{bottom:862.245000px;}
.y43_c00485{bottom:862.905000px;}
.y40_c00485{bottom:864.405000px;}
.y3e_c00485{bottom:880.680000px;}
.y3d_c00485{bottom:881.745000px;}
.y3c_c00485{bottom:882.630000px;}
.y39_c00485{bottom:883.470000px;}
.y3b_c00485{bottom:883.905000px;}
.y3a_c00485{bottom:884.970000px;}
.y31_c00485{bottom:898.905000px;}
.y32_c00485{bottom:900.405000px;}
.y37_c00485{bottom:901.050000px;}
.y36_c00485{bottom:901.245000px;}
.y38_c00485{bottom:901.905000px;}
.y35_c00485{bottom:902.130000px;}
.y34_c00485{bottom:902.550000px;}
.y33_c00485{bottom:902.970000px;}
.y30_c00485{bottom:903.405000px;}
.y2a_c00485{bottom:918.405000px;}
.y29_c00485{bottom:919.680000px;}
.y2b_c00485{bottom:919.905000px;}
.y2c_c00485{bottom:920.745000px;}
.y2f_c00485{bottom:921.630000px;}
.y2d_c00485{bottom:922.905000px;}
.y2e_c00485{bottom:923.970000px;}
.y27_c00485{bottom:940.245000px;}
.y28_c00485{bottom:941.970000px;}
.y26_c00485{bottom:942.405000px;}
.y23_c00485{bottom:959.745000px;}
.y24_c00485{bottom:960.630000px;}
.y22_c00485{bottom:960.825000px;}
.y25_c00485{bottom:961.470000px;}
.y21_c00485{bottom:961.905000px;}
.y1b_c00485{bottom:979.245000px;}
.y1e_c00485{bottom:979.470000px;}
.y20_c00485{bottom:980.130000px;}
.y1f_c00485{bottom:980.325000px;}
.y1c_c00485{bottom:981.405000px;}
.y1d_c00485{bottom:981.630000px;}
.y18_c00485{bottom:998.745000px;}
.y1a_c00485{bottom:999.630000px;}
.y19_c00485{bottom:999.825000px;}
.y16_c00485{bottom:1000.905000px;}
.y17_c00485{bottom:1001.970000px;}
.y15_c00485{bottom:1016.970000px;}
.y14_c00485{bottom:1018.245000px;}
.y11_c00485{bottom:1018.470000px;}
.y10_c00485{bottom:1020.405000px;}
.y12_c00485{bottom:1020.630000px;}
.y13_c00485{bottom:1021.470000px;}
.yc_c00485{bottom:1037.745000px;}
.yf_c00485{bottom:1039.905000px;}
.yd_c00485{bottom:1040.130000px;}
.ye_c00485{bottom:1040.970000px;}
.y6_c00485{bottom:1056.405000px;}
.ya_c00485{bottom:1057.245000px;}
.yb_c00485{bottom:1058.130000px;}
.y4_c00485{bottom:1058.745000px;}
.y3_c00485{bottom:1059.405000px;}
.y5_c00485{bottom:1059.630000px;}
.y9_c00485{bottom:1059.825000px;}
.y8_c00485{bottom:1060.470000px;}
.y7_c00485{bottom:1060.905000px;}
.y1_c00485{bottom:1097.745000px;}
.y2_c00485{bottom:1099.050000px;}
.h9_c00485{height:4.206533px;}
.ha_c00485{height:14.612168px;}
.h8_c00485{height:16.752334px;}
.hb_c00485{height:22.752334px;}
.h4_c00485{height:23.025234px;}
.h2_c00485{height:25.091602px;}
.hc_c00485{height:29.025234px;}
.h5_c00485{height:31.364502px;}
.h3_c00485{height:35.571035px;}
.h6_c00485{height:39.777568px;}
.h1_c00485{height:43.910303px;}
.h7_c00485{height:48.116836px;}
.h0_c00485{height:1335.000000px;}
.w0_c00485{width:880.500000px;}
.x0_c00485{left:0.000000px;}
.xe5_c00485{left:112.500000px;}
.xbf_c00485{left:114.000000px;}
.xb5_c00485{left:115.500000px;}
.xc0_c00485{left:136.080000px;}
.xc6_c00485{left:138.000000px;}
.xd2_c00485{left:142.080000px;}
.xde_c00485{left:145.500000px;}
.xd6_c00485{left:147.000000px;}
.xcb_c00485{left:150.000000px;}
.xd4_c00485{left:151.080000px;}
.x13_c00485{left:153.000000px;}
.x1_c00485{left:154.500000px;}
.xcc_c00485{left:155.580000px;}
.xe4_c00485{left:157.500000px;}
.xdf_c00485{left:159.000000px;}
.xd7_c00485{left:160.080000px;}
.xdc_c00485{left:163.500000px;}
.x3_c00485{left:169.500000px;}
.x59_c00485{left:171.420000px;}
.x90_c00485{left:172.920000px;}
.xda_c00485{left:174.420000px;}
.x98_c00485{left:175.920000px;}
.xa2_c00485{left:178.500000px;}
.x7a_c00485{left:181.500000px;}
.x4c_c00485{left:182.580000px;}
.x83_c00485{left:184.920000px;}
.xe3_c00485{left:186.000000px;}
.xcd_c00485{left:187.500000px;}
.x17_c00485{left:189.000000px;}
.x39_c00485{left:190.920000px;}
.xdb_c00485{left:196.080000px;}
.x22_c00485{left:197.580000px;}
.x4_c00485{left:200.355000px;}
.xaa_c00485{left:202.500000px;}
.xe0_c00485{left:204.000000px;}
.x63_c00485{left:208.500000px;}
.x14_c00485{left:210.000000px;}
.x89_c00485{left:213.420000px;}
.x18_c00485{left:214.500000px;}
.x23_c00485{left:216.420000px;}
.x3a_c00485{left:217.500000px;}
.x3e_c00485{left:222.420000px;}
.x2e_c00485{left:226.920000px;}
.x6b_c00485{left:229.500000px;}
.xb6_c00485{left:232.500000px;}
.x9d_c00485{left:233.580000px;}
.x7b_c00485{left:235.080000px;}
.x64_c00485{left:240.000000px;}
.x24_c00485{left:241.500000px;}
.x4d_c00485{left:243.000000px;}
.x91_c00485{left:244.500000px;}
.x15_c00485{left:248.580000px;}
.x6c_c00485{left:250.920000px;}
.x74_c00485{left:252.420000px;}
.x99_c00485{left:253.920000px;}
.x7c_c00485{left:255.420000px;}
.xa3_c00485{left:256.500000px;}
.xb2_c00485{left:257.580000px;}
.xce_c00485{left:259.500000px;}
.xd8_c00485{left:261.000000px;}
.xc5_c00485{left:262.500000px;}
.x5_c00485{left:264.000000px;}
.x2f_c00485{left:267.000000px;}
.x84_c00485{left:268.920000px;}
.x25_c00485{left:271.500000px;}
.x19_c00485{left:276.420000px;}
.x6d_c00485{left:277.500000px;}
.x9e_c00485{left:280.080000px;}
.x4e_c00485{left:281.580000px;}
.x30_c00485{left:283.500000px;}
.x3f_c00485{left:286.500000px;}
.x6_c00485{left:289.920000px;}
.x75_c00485{left:292.500000px;}
.x16_c00485{left:295.500000px;}
.x31_c00485{left:297.000000px;}
.x3b_c00485{left:299.580000px;}
.xe1_c00485{left:304.500000px;}
.x85_c00485{left:306.420000px;}
.x4f_c00485{left:310.500000px;}
.x40_c00485{left:311.580000px;}
.x7d_c00485{left:313.500000px;}
.x1a_c00485{left:315.000000px;}
.xca_c00485{left:318.000000px;}
.xa4_c00485{left:319.080000px;}
.xb7_c00485{left:322.080000px;}
.x7_c00485{left:324.000000px;}
.x41_c00485{left:325.500000px;}
.x65_c00485{left:327.000000px;}
.x92_c00485{left:328.500000px;}
.x32_c00485{left:329.580000px;}
.x6e_c00485{left:334.500000px;}
.x8a_c00485{left:336.000000px;}
.x42_c00485{left:338.145000px;}
.x1b_c00485{left:340.500000px;}
.x9a_c00485{left:341.580000px;}
.x93_c00485{left:343.920000px;}
.x26_c00485{left:348.000000px;}
.xa5_c00485{left:355.500000px;}
.xe2_c00485{left:358.500000px;}
.xb8_c00485{left:363.000000px;}
.x50_c00485{left:364.500000px;}
.xab_c00485{left:366.000000px;}
.x43_c00485{left:367.500000px;}
.xdd_c00485{left:369.000000px;}
.x1c_c00485{left:370.500000px;}
.x9f_c00485{left:372.000000px;}
.x27_c00485{left:373.500000px;}
.x8_c00485{left:375.000000px;}
.x8b_c00485{left:377.580000px;}
.x51_c00485{left:382.080000px;}
.x94_c00485{left:384.000000px;}
.x44_c00485{left:385.500000px;}
.xbd_c00485{left:388.500000px;}
.x9_c00485{left:391.500000px;}
.x8c_c00485{left:396.420000px;}
.x45_c00485{left:399.000000px;}
.xac_c00485{left:400.920000px;}
.x52_c00485{left:403.920000px;}
.x1d_c00485{left:407.580000px;}
.x2_c00485{left:409.500000px;}
.x28_c00485{left:411.420000px;}
.xbe_c00485{left:412.500000px;}
.xb3_c00485{left:414.000000px;}
.x7e_c00485{left:415.080000px;}
.x3c_c00485{left:417.000000px;}
.x6f_c00485{left:418.500000px;}
.x76_c00485{left:420.420000px;}
.xa6_c00485{left:423.000000px;}
.x1e_c00485{left:424.500000px;}
.xc8_c00485{left:426.000000px;}
.x66_c00485{left:427.500000px;}
.xb9_c00485{left:429.420000px;}
.x46_c00485{left:430.500000px;}
.x86_c00485{left:433.500000px;}
.xa_c00485{left:438.000000px;}
.x5a_c00485{left:439.500000px;}
.xa7_c00485{left:441.420000px;}
.x3d_c00485{left:445.920000px;}
.x29_c00485{left:448.920000px;}
.xb_c00485{left:456.420000px;}
.xb4_c00485{left:457.920000px;}
.x5b_c00485{left:459.000000px;}
.xa8_c00485{left:466.920000px;}
.x47_c00485{left:468.000000px;}
.x9b_c00485{left:469.500000px;}
.x67_c00485{left:471.000000px;}
.xcf_c00485{left:472.500000px;}
.x2a_c00485{left:474.420000px;}
.xd9_c00485{left:475.500000px;}
.xc7_c00485{left:477.000000px;}
.x5c_c00485{left:478.080000px;}
.x87_c00485{left:480.000000px;}
.x33_c00485{left:481.920000px;}
.xc_c00485{left:483.000000px;}
.x7f_c00485{left:487.500000px;}
.x53_c00485{left:489.000000px;}
.x5d_c00485{left:490.500000px;}
.x70_c00485{left:495.420000px;}
.x8d_c00485{left:501.000000px;}
.x95_c00485{left:505.920000px;}
.xba_c00485{left:507.420000px;}
.x54_c00485{left:510.420000px;}
.xa0_c00485{left:512.580000px;}
.xad_c00485{left:518.580000px;}
.x5e_c00485{left:521.580000px;}
.x1f_c00485{left:527.580000px;}
.x55_c00485{left:529.500000px;}
.x34_c00485{left:531.420000px;}
.xd_c00485{left:532.920000px;}
.x48_c00485{left:534.000000px;}
.x68_c00485{left:535.500000px;}
.x77_c00485{left:537.000000px;}
.xae_c00485{left:538.500000px;}
.x49_c00485{left:552.420000px;}
.xa9_c00485{left:555.420000px;}
.xa1_c00485{left:556.500000px;}
.xe_c00485{left:558.420000px;}
.x80_c00485{left:561.420000px;}
.x5f_c00485{left:575.355000px;}
.x8e_c00485{left:576.420000px;}
.xc1_c00485{left:580.920000px;}
.xc9_c00485{left:583.500000px;}
.xd5_c00485{left:585.000000px;}
.x4a_c00485{left:586.080000px;}
.x2b_c00485{left:588.420000px;}
.x71_c00485{left:589.500000px;}
.x88_c00485{left:592.500000px;}
.x35_c00485{left:598.500000px;}
.x56_c00485{left:603.420000px;}
.x20_c00485{left:604.500000px;}
.x60_c00485{left:607.500000px;}
.x78_c00485{left:610.080000px;}
.xf_c00485{left:612.000000px;}
.xbb_c00485{left:618.420000px;}
.x36_c00485{left:625.920000px;}
.x57_c00485{left:629.580000px;}
.xc2_c00485{left:634.500000px;}
.x81_c00485{left:637.500000px;}
.xd0_c00485{left:639.000000px;}
.x96_c00485{left:640.080000px;}
.x72_c00485{left:643.080000px;}
.x61_c00485{left:648.000000px;}
.x37_c00485{left:649.500000px;}
.x69_c00485{left:651.000000px;}
.xaf_c00485{left:652.080000px;}
.x73_c00485{left:661.920000px;}
.x8f_c00485{left:663.000000px;}
.x10_c00485{left:664.500000px;}
.x4b_c00485{left:666.000000px;}
.x62_c00485{left:667.500000px;}
.x9c_c00485{left:669.420000px;}
.x6a_c00485{left:673.080000px;}
.x21_c00485{left:675.000000px;}
.x2c_c00485{left:678.000000px;}
.x38_c00485{left:679.920000px;}
.x82_c00485{left:681.000000px;}
.xb0_c00485{left:684.420000px;}
.x58_c00485{left:688.920000px;}
.x79_c00485{left:691.080000px;}
.xc3_c00485{left:693.000000px;}
.xd1_c00485{left:694.500000px;}
.x2d_c00485{left:697.920000px;}
.x97_c00485{left:703.500000px;}
.x11_c00485{left:704.580000px;}
.xbc_c00485{left:712.500000px;}
.xb1_c00485{left:718.080000px;}
.x12_c00485{left:723.000000px;}
.xc4_c00485{left:742.500000px;}
.xd3_c00485{left:748.500000px;}
@media print{
.v1_c00485{vertical-align:-5.333333pt;}
.v0_c00485{vertical-align:0.000000pt;}
.v2_c00485{vertical-align:5.333333pt;}
.ls2_c00485{letter-spacing:0.000000pt;}
.ls1_c00485{letter-spacing:16.526142pt;}
.ls0_c00485{letter-spacing:63.114847pt;}
.ws4_c00485{word-spacing:-70.185141pt;}
.ws7_c00485{word-spacing:-18.301502pt;}
.ws0_c00485{word-spacing:-7.832291pt;}
.ws1_c00485{word-spacing:-3.020800pt;}
.ws18_c00485{word-spacing:0.000000pt;}
.ws6_c00485{word-spacing:14.750782pt;}
.ws15_c00485{word-spacing:26.561074pt;}
.ws16_c00485{word-spacing:29.157018pt;}
.wsd_c00485{word-spacing:29.903467pt;}
.wsf_c00485{word-spacing:31.683859pt;}
.ws14_c00485{word-spacing:31.752962pt;}
.wsa_c00485{word-spacing:33.464251pt;}
.ws10_c00485{word-spacing:37.025035pt;}
.ws2_c00485{word-spacing:37.661663pt;}
.ws11_c00485{word-spacing:38.332159pt;}
.wse_c00485{word-spacing:38.805427pt;}
.ws17_c00485{word-spacing:40.247770pt;}
.ws9_c00485{word-spacing:50.682780pt;}
.wsc_c00485{word-spacing:53.900800pt;}
.ws8_c00485{word-spacing:55.125201pt;}
.ws3_c00485{word-spacing:56.044554pt;}
.ws13_c00485{word-spacing:58.488019pt;}
.wsb_c00485{word-spacing:59.234133pt;}
.ws12_c00485{word-spacing:61.361940pt;}
.ws5_c00485{word-spacing:85.757673pt;}
._1_c00485{margin-left:-63.114847pt;}
._2_c00485{margin-left:-16.526142pt;}
._4_c00485{width:40.534544pt;}
._9_c00485{width:41.470722pt;}
._5_c00485{width:43.486840pt;}
._7_c00485{width:47.318064pt;}
._0_c00485{width:65.055018pt;}
._3_c00485{width:66.285227pt;}
._8_c00485{width:71.079700pt;}
._6_c00485{width:73.953620pt;}
.fs8_c00485{font-size:3.040000pt;}
.fs9_c00485{font-size:10.560000pt;}
.fs7_c00485{font-size:12.106667pt;}
.fs3_c00485{font-size:16.640000pt;}
.fs1_c00485{font-size:18.133333pt;}
.fs4_c00485{font-size:22.666667pt;}
.fs2_c00485{font-size:25.706667pt;}
.fs5_c00485{font-size:28.746667pt;}
.fs0_c00485{font-size:31.733333pt;}
.fs6_c00485{font-size:34.773333pt;}
.y0_c00485{bottom:0.000000pt;}
.yd2_c00485{bottom:216.933333pt;}
.yd1_c00485{bottom:218.840000pt;}
.yd0_c00485{bottom:220.560000pt;}
.ycf_c00485{bottom:221.506667pt;}
.ycb_c00485{bottom:232.560000pt;}
.ycc_c00485{bottom:233.506667pt;}
.yce_c00485{bottom:233.893333pt;}
.ycd_c00485{bottom:234.840000pt;}
.yc8_c00485{bottom:244.173333pt;}
.yc7_c00485{bottom:244.560000pt;}
.yc6_c00485{bottom:245.506667pt;}
.yca_c00485{bottom:245.893333pt;}
.yc9_c00485{bottom:246.840000pt;}
.yc5_c00485{bottom:249.506667pt;}
.yc0_c00485{bottom:257.506667pt;}
.yc1_c00485{bottom:257.893333pt;}
.yc2_c00485{bottom:258.466667pt;}
.yc3_c00485{bottom:258.840000pt;}
.yc4_c00485{bottom:259.040000pt;}
.ybb_c00485{bottom:269.893333pt;}
.ybd_c00485{bottom:270.466667pt;}
.ybc_c00485{bottom:270.840000pt;}
.ybe_c00485{bottom:271.226667pt;}
.ybf_c00485{bottom:272.173333pt;}
.yb8_c00485{bottom:282.840000pt;}
.yba_c00485{bottom:283.226667pt;}
.yb9_c00485{bottom:284.173333pt;}
.yb4_c00485{bottom:294.840000pt;}
.yb7_c00485{bottom:295.226667pt;}
.yb6_c00485{bottom:296.173333pt;}
.yb5_c00485{bottom:296.373333pt;}
.yaf_c00485{bottom:306.266667pt;}
.yb0_c00485{bottom:306.840000pt;}
.yb3_c00485{bottom:307.226667pt;}
.yb1_c00485{bottom:308.173333pt;}
.yb2_c00485{bottom:308.560000pt;}
.yac_c00485{bottom:318.466667pt;}
.yab_c00485{bottom:319.226667pt;}
.yad_c00485{bottom:320.173333pt;}
.yae_c00485{bottom:320.560000pt;}
.ya8_c00485{bottom:330.840000pt;}
.ya9_c00485{bottom:331.226667pt;}
.yaa_c00485{bottom:332.173333pt;}
.ya5_c00485{bottom:344.173333pt;}
.ya6_c00485{bottom:344.560000pt;}
.ya7_c00485{bottom:345.506667pt;}
.ya0_c00485{bottom:355.226667pt;}
.ya1_c00485{bottom:356.173333pt;}
.ya3_c00485{bottom:356.560000pt;}
.ya2_c00485{bottom:357.506667pt;}
.ya4_c00485{bottom:357.706667pt;}
.y9d_c00485{bottom:367.226667pt;}
.y9c_c00485{bottom:368.173333pt;}
.y9f_c00485{bottom:369.506667pt;}
.y9e_c00485{bottom:369.893333pt;}
.y98_c00485{bottom:379.226667pt;}
.y97_c00485{bottom:380.173333pt;}
.y9b_c00485{bottom:380.560000pt;}
.y99_c00485{bottom:382.840000pt;}
.y9a_c00485{bottom:383.040000pt;}
.y94_c00485{bottom:392.560000pt;}
.y96_c00485{bottom:393.706667pt;}
.y95_c00485{bottom:394.840000pt;}
.y90_c00485{bottom:404.560000pt;}
.y8f_c00485{bottom:405.506667pt;}
.y92_c00485{bottom:405.893333pt;}
.y91_c00485{bottom:406.840000pt;}
.y93_c00485{bottom:407.040000pt;}
.y8c_c00485{bottom:416.173333pt;}
.y8b_c00485{bottom:417.893333pt;}
.y8e_c00485{bottom:418.840000pt;}
.y8d_c00485{bottom:419.040000pt;}
.y88_c00485{bottom:430.840000pt;}
.y8a_c00485{bottom:431.040000pt;}
.y89_c00485{bottom:432.373333pt;}
.y87_c00485{bottom:443.226667pt;}
.y85_c00485{bottom:444.173333pt;}
.y86_c00485{bottom:444.373333pt;}
.y82_c00485{bottom:455.226667pt;}
.y84_c00485{bottom:456.173333pt;}
.y83_c00485{bottom:456.373333pt;}
.y7f_c00485{bottom:467.226667pt;}
.y7e_c00485{bottom:468.173333pt;}
.y80_c00485{bottom:468.373333pt;}
.y81_c00485{bottom:469.706667pt;}
.y7a_c00485{bottom:484.173333pt;}
.y7d_c00485{bottom:484.560000pt;}
.y7b_c00485{bottom:485.506667pt;}
.y7c_c00485{bottom:485.893333pt;}
.y76_c00485{bottom:499.226667pt;}
.y77_c00485{bottom:500.173333pt;}
.y79_c00485{bottom:500.560000pt;}
.y78_c00485{bottom:501.506667pt;}
.y75_c00485{bottom:516.933333pt;}
.y74_c00485{bottom:527.026667pt;}
.y73_c00485{bottom:527.400000pt;}
.y72_c00485{bottom:528.933333pt;}
.y70_c00485{bottom:529.306667pt;}
.y71_c00485{bottom:530.266667pt;}
.y6f_c00485{bottom:548.933333pt;}
.y6e_c00485{bottom:571.973333pt;}
.y6d_c00485{bottom:572.360000pt;}
.y6b_c00485{bottom:573.893333pt;}
.y6c_c00485{bottom:574.266667pt;}
.y6a_c00485{bottom:575.026667pt;}
.y66_c00485{bottom:589.693333pt;}
.y65_c00485{bottom:590.440000pt;}
.y67_c00485{bottom:592.360000pt;}
.y68_c00485{bottom:592.560000pt;}
.y69_c00485{bottom:593.306667pt;}
.y63_c00485{bottom:607.026667pt;}
.y64_c00485{bottom:607.773333pt;}
.y62_c00485{bottom:609.693333pt;}
.y61_c00485{bottom:609.893333pt;}
.y60_c00485{bottom:625.106667pt;}
.y5e_c00485{bottom:627.026667pt;}
.y5f_c00485{bottom:627.973333pt;}
.y5b_c00485{bottom:641.693333pt;}
.y5d_c00485{bottom:643.773333pt;}
.y5a_c00485{bottom:644.360000pt;}
.y5c_c00485{bottom:645.306667pt;}
.y58_c00485{bottom:661.106667pt;}
.y59_c00485{bottom:661.893333pt;}
.y56_c00485{bottom:663.026667pt;}
.y57_c00485{bottom:663.973333pt;}
.y53_c00485{bottom:676.360000pt;}
.y55_c00485{bottom:677.106667pt;}
.y54_c00485{bottom:678.440000pt;}
.y52_c00485{bottom:680.360000pt;}
.y4f_c00485{bottom:694.440000pt;}
.y4d_c00485{bottom:695.773333pt;}
.y51_c00485{bottom:696.560000pt;}
.y4e_c00485{bottom:697.693333pt;}
.y50_c00485{bottom:698.640000pt;}
.y4c_c00485{bottom:713.106667pt;}
.y4b_c00485{bottom:715.026667pt;}
.y4a_c00485{bottom:730.440000pt;}
.y48_c00485{bottom:732.360000pt;}
.y49_c00485{bottom:733.693333pt;}
.y45_c00485{bottom:747.773333pt;}
.y47_c00485{bottom:749.306667pt;}
.y44_c00485{bottom:749.693333pt;}
.y46_c00485{bottom:751.026667pt;}
.y3f_c00485{bottom:765.106667pt;}
.y41_c00485{bottom:766.066667pt;}
.y42_c00485{bottom:766.440000pt;}
.y43_c00485{bottom:767.026667pt;}
.y40_c00485{bottom:768.360000pt;}
.y3e_c00485{bottom:782.826667pt;}
.y3d_c00485{bottom:783.773333pt;}
.y3c_c00485{bottom:784.560000pt;}
.y39_c00485{bottom:785.306667pt;}
.y3b_c00485{bottom:785.693333pt;}
.y3a_c00485{bottom:786.640000pt;}
.y31_c00485{bottom:799.026667pt;}
.y32_c00485{bottom:800.360000pt;}
.y37_c00485{bottom:800.933333pt;}
.y36_c00485{bottom:801.106667pt;}
.y38_c00485{bottom:801.693333pt;}
.y35_c00485{bottom:801.893333pt;}
.y34_c00485{bottom:802.266667pt;}
.y33_c00485{bottom:802.640000pt;}
.y30_c00485{bottom:803.026667pt;}
.y2a_c00485{bottom:816.360000pt;}
.y29_c00485{bottom:817.493333pt;}
.y2b_c00485{bottom:817.693333pt;}
.y2c_c00485{bottom:818.440000pt;}
.y2f_c00485{bottom:819.226667pt;}
.y2d_c00485{bottom:820.360000pt;}
.y2e_c00485{bottom:821.306667pt;}
.y27_c00485{bottom:835.773333pt;}
.y28_c00485{bottom:837.306667pt;}
.y26_c00485{bottom:837.693333pt;}
.y23_c00485{bottom:853.106667pt;}
.y24_c00485{bottom:853.893333pt;}
.y22_c00485{bottom:854.066667pt;}
.y25_c00485{bottom:854.640000pt;}
.y21_c00485{bottom:855.026667pt;}
.y1b_c00485{bottom:870.440000pt;}
.y1e_c00485{bottom:870.640000pt;}
.y20_c00485{bottom:871.226667pt;}
.y1f_c00485{bottom:871.400000pt;}
.y1c_c00485{bottom:872.360000pt;}
.y1d_c00485{bottom:872.560000pt;}
.y18_c00485{bottom:887.773333pt;}
.y1a_c00485{bottom:888.560000pt;}
.y19_c00485{bottom:888.733333pt;}
.y16_c00485{bottom:889.693333pt;}
.y17_c00485{bottom:890.640000pt;}
.y15_c00485{bottom:903.973333pt;}
.y14_c00485{bottom:905.106667pt;}
.y11_c00485{bottom:905.306667pt;}
.y10_c00485{bottom:907.026667pt;}
.y12_c00485{bottom:907.226667pt;}
.y13_c00485{bottom:907.973333pt;}
.yc_c00485{bottom:922.440000pt;}
.yf_c00485{bottom:924.360000pt;}
.yd_c00485{bottom:924.560000pt;}
.ye_c00485{bottom:925.306667pt;}
.y6_c00485{bottom:939.026667pt;}
.ya_c00485{bottom:939.773333pt;}
.yb_c00485{bottom:940.560000pt;}
.y4_c00485{bottom:941.106667pt;}
.y3_c00485{bottom:941.693333pt;}
.y5_c00485{bottom:941.893333pt;}
.y9_c00485{bottom:942.066667pt;}
.y8_c00485{bottom:942.640000pt;}
.y7_c00485{bottom:943.026667pt;}
.y1_c00485{bottom:975.773333pt;}
.y2_c00485{bottom:976.933333pt;}
.h9_c00485{height:3.739141pt;}
.ha_c00485{height:12.988594pt;}
.h8_c00485{height:14.890964pt;}
.hb_c00485{height:20.224297pt;}
.h4_c00485{height:20.466875pt;}
.h2_c00485{height:22.303646pt;}
.hc_c00485{height:25.800208pt;}
.h5_c00485{height:27.879557pt;}
.h3_c00485{height:31.618698pt;}
.h6_c00485{height:35.357839pt;}
.h1_c00485{height:39.031380pt;}
.h7_c00485{height:42.770521pt;}
.h0_c00485{height:1186.666667pt;}
.w0_c00485{width:782.666667pt;}
.x0_c00485{left:0.000000pt;}
.xe5_c00485{left:100.000000pt;}
.xbf_c00485{left:101.333333pt;}
.xb5_c00485{left:102.666667pt;}
.xc0_c00485{left:120.960000pt;}
.xc6_c00485{left:122.666667pt;}
.xd2_c00485{left:126.293333pt;}
.xde_c00485{left:129.333333pt;}
.xd6_c00485{left:130.666667pt;}
.xcb_c00485{left:133.333333pt;}
.xd4_c00485{left:134.293333pt;}
.x13_c00485{left:136.000000pt;}
.x1_c00485{left:137.333333pt;}
.xcc_c00485{left:138.293333pt;}
.xe4_c00485{left:140.000000pt;}
.xdf_c00485{left:141.333333pt;}
.xd7_c00485{left:142.293333pt;}
.xdc_c00485{left:145.333333pt;}
.x3_c00485{left:150.666667pt;}
.x59_c00485{left:152.373333pt;}
.x90_c00485{left:153.706667pt;}
.xda_c00485{left:155.040000pt;}
.x98_c00485{left:156.373333pt;}
.xa2_c00485{left:158.666667pt;}
.x7a_c00485{left:161.333333pt;}
.x4c_c00485{left:162.293333pt;}
.x83_c00485{left:164.373333pt;}
.xe3_c00485{left:165.333333pt;}
.xcd_c00485{left:166.666667pt;}
.x17_c00485{left:168.000000pt;}
.x39_c00485{left:169.706667pt;}
.xdb_c00485{left:174.293333pt;}
.x22_c00485{left:175.626667pt;}
.x4_c00485{left:178.093333pt;}
.xaa_c00485{left:180.000000pt;}
.xe0_c00485{left:181.333333pt;}
.x63_c00485{left:185.333333pt;}
.x14_c00485{left:186.666667pt;}
.x89_c00485{left:189.706667pt;}
.x18_c00485{left:190.666667pt;}
.x23_c00485{left:192.373333pt;}
.x3a_c00485{left:193.333333pt;}
.x3e_c00485{left:197.706667pt;}
.x2e_c00485{left:201.706667pt;}
.x6b_c00485{left:204.000000pt;}
.xb6_c00485{left:206.666667pt;}
.x9d_c00485{left:207.626667pt;}
.x7b_c00485{left:208.960000pt;}
.x64_c00485{left:213.333333pt;}
.x24_c00485{left:214.666667pt;}
.x4d_c00485{left:216.000000pt;}
.x91_c00485{left:217.333333pt;}
.x15_c00485{left:220.960000pt;}
.x6c_c00485{left:223.040000pt;}
.x74_c00485{left:224.373333pt;}
.x99_c00485{left:225.706667pt;}
.x7c_c00485{left:227.040000pt;}
.xa3_c00485{left:228.000000pt;}
.xb2_c00485{left:228.960000pt;}
.xce_c00485{left:230.666667pt;}
.xd8_c00485{left:232.000000pt;}
.xc5_c00485{left:233.333333pt;}
.x5_c00485{left:234.666667pt;}
.x2f_c00485{left:237.333333pt;}
.x84_c00485{left:239.040000pt;}
.x25_c00485{left:241.333333pt;}
.x19_c00485{left:245.706667pt;}
.x6d_c00485{left:246.666667pt;}
.x9e_c00485{left:248.960000pt;}
.x4e_c00485{left:250.293333pt;}
.x30_c00485{left:252.000000pt;}
.x3f_c00485{left:254.666667pt;}
.x6_c00485{left:257.706667pt;}
.x75_c00485{left:260.000000pt;}
.x16_c00485{left:262.666667pt;}
.x31_c00485{left:264.000000pt;}
.x3b_c00485{left:266.293333pt;}
.xe1_c00485{left:270.666667pt;}
.x85_c00485{left:272.373333pt;}
.x4f_c00485{left:276.000000pt;}
.x40_c00485{left:276.960000pt;}
.x7d_c00485{left:278.666667pt;}
.x1a_c00485{left:280.000000pt;}
.xca_c00485{left:282.666667pt;}
.xa4_c00485{left:283.626667pt;}
.xb7_c00485{left:286.293333pt;}
.x7_c00485{left:288.000000pt;}
.x41_c00485{left:289.333333pt;}
.x65_c00485{left:290.666667pt;}
.x92_c00485{left:292.000000pt;}
.x32_c00485{left:292.960000pt;}
.x6e_c00485{left:297.333333pt;}
.x8a_c00485{left:298.666667pt;}
.x42_c00485{left:300.573333pt;}
.x1b_c00485{left:302.666667pt;}
.x9a_c00485{left:303.626667pt;}
.x93_c00485{left:305.706667pt;}
.x26_c00485{left:309.333333pt;}
.xa5_c00485{left:316.000000pt;}
.xe2_c00485{left:318.666667pt;}
.xb8_c00485{left:322.666667pt;}
.x50_c00485{left:324.000000pt;}
.xab_c00485{left:325.333333pt;}
.x43_c00485{left:326.666667pt;}
.xdd_c00485{left:328.000000pt;}
.x1c_c00485{left:329.333333pt;}
.x9f_c00485{left:330.666667pt;}
.x27_c00485{left:332.000000pt;}
.x8_c00485{left:333.333333pt;}
.x8b_c00485{left:335.626667pt;}
.x51_c00485{left:339.626667pt;}
.x94_c00485{left:341.333333pt;}
.x44_c00485{left:342.666667pt;}
.xbd_c00485{left:345.333333pt;}
.x9_c00485{left:348.000000pt;}
.x8c_c00485{left:352.373333pt;}
.x45_c00485{left:354.666667pt;}
.xac_c00485{left:356.373333pt;}
.x52_c00485{left:359.040000pt;}
.x1d_c00485{left:362.293333pt;}
.x2_c00485{left:364.000000pt;}
.x28_c00485{left:365.706667pt;}
.xbe_c00485{left:366.666667pt;}
.xb3_c00485{left:368.000000pt;}
.x7e_c00485{left:368.960000pt;}
.x3c_c00485{left:370.666667pt;}
.x6f_c00485{left:372.000000pt;}
.x76_c00485{left:373.706667pt;}
.xa6_c00485{left:376.000000pt;}
.x1e_c00485{left:377.333333pt;}
.xc8_c00485{left:378.666667pt;}
.x66_c00485{left:380.000000pt;}
.xb9_c00485{left:381.706667pt;}
.x46_c00485{left:382.666667pt;}
.x86_c00485{left:385.333333pt;}
.xa_c00485{left:389.333333pt;}
.x5a_c00485{left:390.666667pt;}
.xa7_c00485{left:392.373333pt;}
.x3d_c00485{left:396.373333pt;}
.x29_c00485{left:399.040000pt;}
.xb_c00485{left:405.706667pt;}
.xb4_c00485{left:407.040000pt;}
.x5b_c00485{left:408.000000pt;}
.xa8_c00485{left:415.040000pt;}
.x47_c00485{left:416.000000pt;}
.x9b_c00485{left:417.333333pt;}
.x67_c00485{left:418.666667pt;}
.xcf_c00485{left:420.000000pt;}
.x2a_c00485{left:421.706667pt;}
.xd9_c00485{left:422.666667pt;}
.xc7_c00485{left:424.000000pt;}
.x5c_c00485{left:424.960000pt;}
.x87_c00485{left:426.666667pt;}
.x33_c00485{left:428.373333pt;}
.xc_c00485{left:429.333333pt;}
.x7f_c00485{left:433.333333pt;}
.x53_c00485{left:434.666667pt;}
.x5d_c00485{left:436.000000pt;}
.x70_c00485{left:440.373333pt;}
.x8d_c00485{left:445.333333pt;}
.x95_c00485{left:449.706667pt;}
.xba_c00485{left:451.040000pt;}
.x54_c00485{left:453.706667pt;}
.xa0_c00485{left:455.626667pt;}
.xad_c00485{left:460.960000pt;}
.x5e_c00485{left:463.626667pt;}
.x1f_c00485{left:468.960000pt;}
.x55_c00485{left:470.666667pt;}
.x34_c00485{left:472.373333pt;}
.xd_c00485{left:473.706667pt;}
.x48_c00485{left:474.666667pt;}
.x68_c00485{left:476.000000pt;}
.x77_c00485{left:477.333333pt;}
.xae_c00485{left:478.666667pt;}
.x49_c00485{left:491.040000pt;}
.xa9_c00485{left:493.706667pt;}
.xa1_c00485{left:494.666667pt;}
.xe_c00485{left:496.373333pt;}
.x80_c00485{left:499.040000pt;}
.x5f_c00485{left:511.426667pt;}
.x8e_c00485{left:512.373333pt;}
.xc1_c00485{left:516.373333pt;}
.xc9_c00485{left:518.666667pt;}
.xd5_c00485{left:520.000000pt;}
.x4a_c00485{left:520.960000pt;}
.x2b_c00485{left:523.040000pt;}
.x71_c00485{left:524.000000pt;}
.x88_c00485{left:526.666667pt;}
.x35_c00485{left:532.000000pt;}
.x56_c00485{left:536.373333pt;}
.x20_c00485{left:537.333333pt;}
.x60_c00485{left:540.000000pt;}
.x78_c00485{left:542.293333pt;}
.xf_c00485{left:544.000000pt;}
.xbb_c00485{left:549.706667pt;}
.x36_c00485{left:556.373333pt;}
.x57_c00485{left:559.626667pt;}
.xc2_c00485{left:564.000000pt;}
.x81_c00485{left:566.666667pt;}
.xd0_c00485{left:568.000000pt;}
.x96_c00485{left:568.960000pt;}
.x72_c00485{left:571.626667pt;}
.x61_c00485{left:576.000000pt;}
.x37_c00485{left:577.333333pt;}
.x69_c00485{left:578.666667pt;}
.xaf_c00485{left:579.626667pt;}
.x73_c00485{left:588.373333pt;}
.x8f_c00485{left:589.333333pt;}
.x10_c00485{left:590.666667pt;}
.x4b_c00485{left:592.000000pt;}
.x62_c00485{left:593.333333pt;}
.x9c_c00485{left:595.040000pt;}
.x6a_c00485{left:598.293333pt;}
.x21_c00485{left:600.000000pt;}
.x2c_c00485{left:602.666667pt;}
.x38_c00485{left:604.373333pt;}
.x82_c00485{left:605.333333pt;}
.xb0_c00485{left:608.373333pt;}
.x58_c00485{left:612.373333pt;}
.x79_c00485{left:614.293333pt;}
.xc3_c00485{left:616.000000pt;}
.xd1_c00485{left:617.333333pt;}
.x2d_c00485{left:620.373333pt;}
.x97_c00485{left:625.333333pt;}
.x11_c00485{left:626.293333pt;}
.xbc_c00485{left:633.333333pt;}
.xb1_c00485{left:638.293333pt;}
.x12_c00485{left:642.666667pt;}
.xc4_c00485{left:660.000000pt;}
.xd3_c00485{left:665.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_14c19466f2ddd968c77a3461.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6c_c00486{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.md5_c00486{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.mf_c00486{transform:matrix(0.341258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341258,0.000000,0.000000,0.250000,0,0);}
.mac_c00486{transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);}
.mcf_c00486{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.md4_c00486{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_c00486{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m93_c00486{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mc0_c00486{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m1e_c00486{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m79_c00486{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m2f_c00486{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.me4_c00486{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m15_c00486{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.mc4_c00486{transform:matrix(0.373850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373850,0.000000,0.000000,0.250000,0,0);}
.m8f_c00486{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m89_c00486{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m6f_c00486{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m14_c00486{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.md3_c00486{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m49_c00486{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m6e_c00486{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m72_c00486{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m8a_c00486{transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);}
.m81_c00486{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m69_c00486{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.mc3_c00486{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m8d_c00486{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.mca_c00486{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m4f_c00486{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m4b_c00486{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.me5_c00486{transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);}
.mc8_c00486{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m1b_c00486{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m42_c00486{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.mde_c00486{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mc1_c00486{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.mf5_c00486{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.ma0_c00486{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.mba_c00486{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m83_c00486{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.mb5_c00486{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m9c_c00486{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.m8e_c00486{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m13_c00486{transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);}
.ma3_c00486{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.me2_c00486{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m4d_c00486{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m86_c00486{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m41_c00486{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m9e_c00486{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.mb8_c00486{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m6b_c00486{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m16_c00486{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mc7_c00486{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.me1_c00486{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m5c_c00486{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mc5_c00486{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m80_c00486{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.mdb_c00486{transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);}
.ma1_c00486{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.mda_c00486{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.md2_c00486{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.med_c00486{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m8_c00486{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m32_c00486{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.m30_c00486{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.md0_c00486{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m2e_c00486{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m82_c00486{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.mbf_c00486{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.meb_c00486{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m9d_c00486{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m9f_c00486{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m45_c00486{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.me3_c00486{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m99_c00486{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.ma5_c00486{transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);}
.mdc_c00486{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.mef_c00486{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.md_c00486{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.me7_c00486{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m1d_c00486{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m25_c00486{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m98_c00486{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m3b_c00486{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.mea_c00486{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.mb9_c00486{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mb3_c00486{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.ma9_c00486{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.mf4_c00486{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mf0_c00486{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.m48_c00486{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m88_c00486{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mb1_c00486{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.mce_c00486{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m6a_c00486{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m5e_c00486{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.ma6_c00486{transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);}
.mf3_c00486{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.mc2_c00486{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.m3d_c00486{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.m6d_c00486{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.md9_c00486{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m1c_c00486{transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);}
.ma2_c00486{transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);}
.m3c_c00486{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m1f_c00486{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mee_c00486{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.m57_c00486{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m9a_c00486{transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);}
.m8c_c00486{transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);}
.mab_c00486{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m68_c00486{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m7b_c00486{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m90_c00486{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m31_c00486{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m7e_c00486{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m54_c00486{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m36_c00486{transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);}
.m18_c00486{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_c00486{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.mc6_c00486{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m22_c00486{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m23_c00486{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m1a_c00486{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m5_c00486{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m70_c00486{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.md8_c00486{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.ma4_c00486{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.m91_c00486{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mbd_c00486{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m66_c00486{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m58_c00486{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m1_c00486{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m2_c00486{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.mae_c00486{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.me8_c00486{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m78_c00486{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mb7_c00486{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m92_c00486{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.mb_c00486{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.ma7_c00486{transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);}
.m46_c00486{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m3a_c00486{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.me_c00486{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m51_c00486{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m7f_c00486{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m27_c00486{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mdd_c00486{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m11_c00486{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m21_c00486{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m3e_c00486{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m39_c00486{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m34_c00486{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m47_c00486{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.ma8_c00486{transform:matrix(0.540441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540441,0.000000,0.000000,0.250000,0,0);}
.m5d_c00486{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m43_c00486{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m52_c00486{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.mcb_c00486{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m38_c00486{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m17_c00486{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.mbc_c00486{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m7a_c00486{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m9b_c00486{transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);}
.m84_c00486{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.ma_c00486{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mdf_c00486{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m71_c00486{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m5a_c00486{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m85_c00486{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.maa_c00486{transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);}
.m77_c00486{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m74_c00486{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m9_c00486{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m50_c00486{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m20_c00486{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.mbb_c00486{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m67_c00486{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.md1_c00486{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.md7_c00486{transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);}
.m12_c00486{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m5b_c00486{transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);}
.mc9_c00486{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m37_c00486{transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);}
.m2c_c00486{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m4e_c00486{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m2b_c00486{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m96_c00486{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m29_c00486{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.mad_c00486{transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);}
.me0_c00486{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);}
.m94_c00486{transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);}
.mec_c00486{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.mb2_c00486{transform:matrix(0.583206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583206,0.000000,0.000000,0.250000,0,0);}
.m73_c00486{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mb0_c00486{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m75_c00486{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.m28_c00486{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m6_c00486{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.md6_c00486{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.m7c_c00486{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.m3f_c00486{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m26_c00486{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);}
.m63_c00486{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m24_c00486{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.m95_c00486{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m65_c00486{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m2a_c00486{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m53_c00486{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m33_c00486{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mf1_c00486{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.m56_c00486{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.m0_c00486{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);}
.m2d_c00486{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);}
.m44_c00486{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m4_c00486{transform:matrix(0.636411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636411,0.000000,0.000000,0.250000,0,0);}
.m87_c00486{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.me9_c00486{transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);}
.mbe_c00486{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m97_c00486{transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);}
.m60_c00486{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m10_c00486{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mb6_c00486{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m4c_c00486{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.me6_c00486{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m76_c00486{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m7d_c00486{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m62_c00486{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m7_c00486{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mcc_c00486{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m4a_c00486{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mf2_c00486{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m5f_c00486{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m8b_c00486{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.maf_c00486{transform:matrix(0.797199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797199,0.000000,0.000000,0.250000,0,0);}
.m64_c00486{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m59_c00486{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m35_c00486{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.mc_c00486{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m19_c00486{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m55_c00486{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.mb4_c00486{transform:matrix(3.511062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.511062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.511062,0.000000,0.000000,0.250000,0,0);}
.mcd_c00486{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m3_c00486{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v0_c00486{vertical-align:0.000000px;}
.ls0_c00486{letter-spacing:0.000000px;}
.sc__c00486{text-shadow:none;}
.sc0_c00486{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00486{-webkit-text-stroke:0px transparent;}
.sc0_c00486{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00486{word-spacing:-4.378680px;}
.ws3_c00486{word-spacing:-4.348680px;}
.ws1_c00486{word-spacing:-4.299067px;}
.ws2_c00486{word-spacing:-3.074040px;}
.ws4_c00486{word-spacing:0.000000px;}
.fc0_c00486{color:transparent;}
.fs2_c00486{font-size:3.420000px;}
.fs8_c00486{font-size:6.780000px;}
.fs3_c00486{font-size:18.720000px;}
.fs0_c00486{font-size:20.400000px;}
.fs6_c00486{font-size:25.500000px;}
.fs1_c00486{font-size:28.920000px;}
.fs7_c00486{font-size:32.340000px;}
.fs4_c00486{font-size:35.700000px;}
.fs5_c00486{font-size:39.120000px;}
.y0_c00486{bottom:0.000000px;}
.yc4_c00486{bottom:251.745000px;}
.yc8_c00486{bottom:252.825000px;}
.yc9_c00486{bottom:253.245000px;}
.yc6_c00486{bottom:254.130000px;}
.yc3_c00486{bottom:254.325000px;}
.yc5_c00486{bottom:254.970000px;}
.yc7_c00486{bottom:255.405000px;}
.yc1_c00486{bottom:270.405000px;}
.yc0_c00486{bottom:272.325000px;}
.ybf_c00486{bottom:272.745000px;}
.ybd_c00486{bottom:273.405000px;}
.yc2_c00486{bottom:273.825000px;}
.ybe_c00486{bottom:274.470000px;}
.ybc_c00486{bottom:274.905000px;}
.yb4_c00486{bottom:291.825000px;}
.yb5_c00486{bottom:292.245000px;}
.yb6_c00486{bottom:293.550000px;}
.yb8_c00486{bottom:293.745000px;}
.yb7_c00486{bottom:293.970000px;}
.yb2_c00486{bottom:294.405000px;}
.yb3_c00486{bottom:294.420000px;}
.yb9_c00486{bottom:294.630000px;}
.ybb_c00486{bottom:294.825000px;}
.yba_c00486{bottom:295.905000px;}
.yaf_c00486{bottom:311.745000px;}
.yae_c00486{bottom:312.825000px;}
.yb1_c00486{bottom:313.905000px;}
.yb0_c00486{bottom:314.130000px;}
.yac_c00486{bottom:331.245000px;}
.yab_c00486{bottom:333.405000px;}
.yad_c00486{bottom:334.470000px;}
.ya9_c00486{bottom:350.745000px;}
.ya6_c00486{bottom:352.245000px;}
.ya8_c00486{bottom:352.470000px;}
.ya7_c00486{bottom:352.905000px;}
.yaa_c00486{bottom:353.970000px;}
.ya5_c00486{bottom:369.405000px;}
.ya3_c00486{bottom:370.245000px;}
.ya4_c00486{bottom:371.325000px;}
.ya2_c00486{bottom:372.405000px;}
.ya1_c00486{bottom:373.905000px;}
.y9e_c00486{bottom:389.745000px;}
.ya0_c00486{bottom:389.970000px;}
.y9c_c00486{bottom:391.245000px;}
.y9f_c00486{bottom:391.905000px;}
.y9d_c00486{bottom:392.970000px;}
.y9a_c00486{bottom:393.405000px;}
.y9b_c00486{bottom:393.420000px;}
.y98_c00486{bottom:410.745000px;}
.y96_c00486{bottom:411.630000px;}
.y99_c00486{bottom:411.825000px;}
.y95_c00486{bottom:412.905000px;}
.y97_c00486{bottom:412.920000px;}
.y92_c00486{bottom:429.405000px;}
.y91_c00486{bottom:430.245000px;}
.y94_c00486{bottom:431.550000px;}
.y93_c00486{bottom:432.405000px;}
.y90_c00486{bottom:448.245000px;}
.y8f_c00486{bottom:448.470000px;}
.y8e_c00486{bottom:448.680000px;}
.y8a_c00486{bottom:449.745000px;}
.y8c_c00486{bottom:450.825000px;}
.y8d_c00486{bottom:451.905000px;}
.y8b_c00486{bottom:451.920000px;}
.y89_c00486{bottom:467.745000px;}
.y86_c00486{bottom:469.245000px;}
.y84_c00486{bottom:470.325000px;}
.y87_c00486{bottom:470.970000px;}
.y85_c00486{bottom:471.405000px;}
.y88_c00486{bottom:472.470000px;}
.y83_c00486{bottom:472.905000px;}
.y82_c00486{bottom:488.745000px;}
.y81_c00486{bottom:489.825000px;}
.y7c_c00486{bottom:490.050000px;}
.y7f_c00486{bottom:490.245000px;}
.y7d_c00486{bottom:490.905000px;}
.y80_c00486{bottom:491.130000px;}
.y7e_c00486{bottom:492.405000px;}
.y7a_c00486{bottom:507.855000px;}
.y7b_c00486{bottom:508.245000px;}
.y77_c00486{bottom:508.680000px;}
.y78_c00486{bottom:509.325000px;}
.y73_c00486{bottom:509.745000px;}
.y79_c00486{bottom:510.405000px;}
.y76_c00486{bottom:510.825000px;}
.y74_c00486{bottom:511.905000px;}
.y75_c00486{bottom:511.920000px;}
.y71_c00486{bottom:531.825000px;}
.y72_c00486{bottom:532.050000px;}
.y6d_c00486{bottom:532.905000px;}
.y6f_c00486{bottom:533.550000px;}
.y6e_c00486{bottom:533.970000px;}
.y70_c00486{bottom:535.050000px;}
.y6c_c00486{bottom:535.470000px;}
.y6b_c00486{bottom:551.970000px;}
.y6a_c00486{bottom:552.825000px;}
.y69_c00486{bottom:554.550000px;}
.y68_c00486{bottom:554.970000px;}
.y67_c00486{bottom:574.905000px;}
.y64_c00486{bottom:575.970000px;}
.y65_c00486{bottom:577.245000px;}
.y66_c00486{bottom:578.325000px;}
.y63_c00486{bottom:579.405000px;}
.y62_c00486{bottom:610.905000px;}
.y61_c00486{bottom:611.970000px;}
.y60_c00486{bottom:647.325000px;}
.y5d_c00486{bottom:647.745000px;}
.y5e_c00486{bottom:648.405000px;}
.y5f_c00486{bottom:649.905000px;}
.y5b_c00486{bottom:666.180000px;}
.y5c_c00486{bottom:667.245000px;}
.y5a_c00486{bottom:668.130000px;}
.y59_c00486{bottom:669.405000px;}
.y56_c00486{bottom:686.745000px;}
.y58_c00486{bottom:687.825000px;}
.y55_c00486{bottom:688.905000px;}
.y57_c00486{bottom:689.130000px;}
.y52_c00486{bottom:705.405000px;}
.y51_c00486{bottom:706.245000px;}
.y50_c00486{bottom:708.405000px;}
.y53_c00486{bottom:708.630000px;}
.y54_c00486{bottom:709.470000px;}
.y4f_c00486{bottom:724.905000px;}
.y4c_c00486{bottom:725.745000px;}
.y4d_c00486{bottom:727.245000px;}
.y4a_c00486{bottom:727.905000px;}
.y4b_c00486{bottom:728.130000px;}
.y4e_c00486{bottom:728.970000px;}
.y48_c00486{bottom:745.245000px;}
.y47_c00486{bottom:747.405000px;}
.y49_c00486{bottom:748.470000px;}
.y46_c00486{bottom:766.245000px;}
.y45_c00486{bottom:785.745000px;}
.y43_c00486{bottom:786.825000px;}
.y44_c00486{bottom:787.905000px;}
.y41_c00486{bottom:804.825000px;}
.y42_c00486{bottom:805.245000px;}
.y40_c00486{bottom:807.405000px;}
.y3f_c00486{bottom:826.470000px;}
.y3c_c00486{bottom:844.245000px;}
.y3b_c00486{bottom:845.130000px;}
.y3d_c00486{bottom:845.970000px;}
.y3a_c00486{bottom:846.405000px;}
.y3e_c00486{bottom:846.630000px;}
.y39_c00486{bottom:863.325000px;}
.y38_c00486{bottom:863.745000px;}
.y35_c00486{bottom:864.630000px;}
.y37_c00486{bottom:865.470000px;}
.y34_c00486{bottom:865.905000px;}
.y36_c00486{bottom:866.130000px;}
.y2f_c00486{bottom:881.970000px;}
.y33_c00486{bottom:884.970000px;}
.y31_c00486{bottom:885.405000px;}
.y30_c00486{bottom:886.470000px;}
.y32_c00486{bottom:886.905000px;}
.y2e_c00486{bottom:901.905000px;}
.y29_c00486{bottom:902.745000px;}
.y2c_c00486{bottom:904.245000px;}
.y2b_c00486{bottom:904.905000px;}
.y2a_c00486{bottom:905.130000px;}
.y2d_c00486{bottom:906.405000px;}
.y23_c00486{bottom:921.405000px;}
.y27_c00486{bottom:922.245000px;}
.y28_c00486{bottom:923.325000px;}
.y22_c00486{bottom:923.745000px;}
.y26_c00486{bottom:924.825000px;}
.y24_c00486{bottom:925.905000px;}
.y25_c00486{bottom:926.970000px;}
.y1f_c00486{bottom:943.245000px;}
.y20_c00486{bottom:944.325000px;}
.y21_c00486{bottom:944.550000px;}
.y1e_c00486{bottom:945.405000px;}
.y1d_c00486{bottom:964.905000px;}
.y19_c00486{bottom:982.245000px;}
.y1b_c00486{bottom:983.325000px;}
.y18_c00486{bottom:984.405000px;}
.y1a_c00486{bottom:984.630000px;}
.y1c_c00486{bottom:985.470000px;}
.y13_c00486{bottom:1000.905000px;}
.y14_c00486{bottom:1001.745000px;}
.y17_c00486{bottom:1001.970000px;}
.y16_c00486{bottom:1003.470000px;}
.y12_c00486{bottom:1003.905000px;}
.y15_c00486{bottom:1004.970000px;}
.y11_c00486{bottom:1020.825000px;}
.yd_c00486{bottom:1021.245000px;}
.yf_c00486{bottom:1023.405000px;}
.y10_c00486{bottom:1023.630000px;}
.ye_c00486{bottom:1024.470000px;}
.yc_c00486{bottom:1040.745000px;}
.yb_c00486{bottom:1042.905000px;}
.ya_c00486{bottom:1043.970000px;}
.y7_c00486{bottom:1059.405000px;}
.y9_c00486{bottom:1060.680000px;}
.y8_c00486{bottom:1060.905000px;}
.y6_c00486{bottom:1061.745000px;}
.y5_c00486{bottom:1062.630000px;}
.y3_c00486{bottom:1063.905000px;}
.y4_c00486{bottom:1063.920000px;}
.y2_c00486{bottom:1098.405000px;}
.y1_c00486{bottom:1100.550000px;}
.h3_c00486{height:4.206533px;}
.h9_c00486{height:8.339268px;}
.h4_c00486{height:23.025234px;}
.h1_c00486{height:25.091602px;}
.h7_c00486{height:31.364502px;}
.h2_c00486{height:35.571035px;}
.h8_c00486{height:39.777568px;}
.h5_c00486{height:43.910303px;}
.h6_c00486{height:48.116836px;}
.h0_c00486{height:1335.000000px;}
.w0_c00486{width:880.500000px;}
.x0_c00486{left:0.000000px;}
.x12_c00486{left:151.080000px;}
.x9d_c00486{left:152.775000px;}
.x7d_c00486{left:154.275000px;}
.xac_c00486{left:165.000000px;}
.x74_c00486{left:166.080000px;}
.x3_c00486{left:167.145000px;}
.x13_c00486{left:171.420000px;}
.xe4_c00486{left:172.920000px;}
.x32_c00486{left:174.855000px;}
.xb8_c00486{left:175.920000px;}
.x6b_c00486{left:177.000000px;}
.x8f_c00486{left:179.580000px;}
.x97_c00486{left:183.000000px;}
.x79_c00486{left:188.145000px;}
.xd9_c00486{left:189.420000px;}
.x9e_c00486{left:192.000000px;}
.xc7_c00486{left:193.080000px;}
.x14_c00486{left:198.645000px;}
.x3d_c00486{left:200.580000px;}
.xad_c00486{left:202.080000px;}
.x24_c00486{left:203.580000px;}
.xbd_c00486{left:205.920000px;}
.xb1_c00486{left:208.500000px;}
.x83_c00486{left:211.500000px;}
.xe5_c00486{left:213.000000px;}
.x6c_c00486{left:216.420000px;}
.x45_c00486{left:219.000000px;}
.x75_c00486{left:220.920000px;}
.x25_c00486{left:222.420000px;}
.xeb_c00486{left:223.500000px;}
.x50_c00486{left:225.000000px;}
.x84_c00486{left:226.920000px;}
.x59_c00486{left:232.080000px;}
.x62_c00486{left:234.000000px;}
.x4_c00486{left:237.000000px;}
.x33_c00486{left:238.275000px;}
.x17_c00486{left:241.500000px;}
.xe0_c00486{left:246.000000px;}
.x76_c00486{left:247.500000px;}
.x51_c00486{left:250.920000px;}
.x6d_c00486{left:253.920000px;}
.x9f_c00486{left:256.500000px;}
.x5_c00486{left:258.000000px;}
.x98_c00486{left:259.920000px;}
.x18_c00486{left:261.000000px;}
.x26_c00486{left:262.080000px;}
.x3e_c00486{left:263.145000px;}
.xbe_c00486{left:264.420000px;}
.x63_c00486{left:267.000000px;}
.xa6_c00486{left:270.000000px;}
.x6_c00486{left:274.920000px;}
.xb2_c00486{left:276.000000px;}
.x15_c00486{left:277.080000px;}
.xcc_c00486{left:280.500000px;}
.x85_c00486{left:281.580000px;}
.x19_c00486{left:284.580000px;}
.x6e_c00486{left:288.000000px;}
.xd4_c00486{left:289.500000px;}
.x5a_c00486{left:291.000000px;}
.xa0_c00486{left:292.920000px;}
.x52_c00486{left:294.000000px;}
.xb3_c00486{left:297.000000px;}
.xbf_c00486{left:298.920000px;}
.x7e_c00486{left:301.500000px;}
.xa2_c00486{left:302.580000px;}
.x77_c00486{left:304.080000px;}
.xde_c00486{left:306.000000px;}
.xae_c00486{left:309.000000px;}
.x86_c00486{left:310.500000px;}
.x34_c00486{left:311.580000px;}
.x99_c00486{left:313.500000px;}
.x90_c00486{left:315.420000px;}
.x3f_c00486{left:319.080000px;}
.x7_c00486{left:324.000000px;}
.x64_c00486{left:327.000000px;}
.x1a_c00486{left:328.920000px;}
.x5b_c00486{left:333.420000px;}
.xb4_c00486{left:336.420000px;}
.xda_c00486{left:337.920000px;}
.xd5_c00486{left:339.000000px;}
.xec_c00486{left:343.500000px;}
.x65_c00486{left:345.000000px;}
.xc3_c00486{left:346.275000px;}
.x27_c00486{left:349.920000px;}
.x46_c00486{left:352.500000px;}
.xa3_c00486{left:353.580000px;}
.xc0_c00486{left:355.500000px;}
.x40_c00486{left:357.000000px;}
.x6f_c00486{left:358.500000px;}
.x8_c00486{left:360.000000px;}
.xed_c00486{left:363.000000px;}
.x53_c00486{left:364.500000px;}
.x91_c00486{left:366.420000px;}
.x35_c00486{left:369.000000px;}
.xe6_c00486{left:370.920000px;}
.x9_c00486{left:372.420000px;}
.x66_c00486{left:373.920000px;}
.x36_c00486{left:382.500000px;}
.xc1_c00486{left:384.000000px;}
.xb9_c00486{left:385.500000px;}
.xc4_c00486{left:387.000000px;}
.xe1_c00486{left:388.500000px;}
.x7f_c00486{left:391.500000px;}
.x47_c00486{left:392.580000px;}
.x92_c00486{left:394.920000px;}
.xdb_c00486{left:396.420000px;}
.x67_c00486{left:399.000000px;}
.xba_c00486{left:400.920000px;}
.xaf_c00486{left:402.000000px;}
.x16_c00486{left:403.275000px;}
.x9a_c00486{left:405.000000px;}
.x1_c00486{left:406.500000px;}
.x54_c00486{left:408.000000px;}
.x70_c00486{left:409.500000px;}
.x28_c00486{left:411.420000px;}
.xa4_c00486{left:412.920000px;}
.x1b_c00486{left:415.080000px;}
.xa_c00486{left:416.580000px;}
.xa7_c00486{left:418.500000px;}
.xc5_c00486{left:419.580000px;}
.x87_c00486{left:423.000000px;}
.x48_c00486{left:426.000000px;}
.x71_c00486{left:427.080000px;}
.xa1_c00486{left:428.580000px;}
.xd6_c00486{left:430.500000px;}
.x93_c00486{left:432.000000px;}
.x29_c00486{left:436.080000px;}
.x1c_c00486{left:438.420000px;}
.xe7_c00486{left:439.500000px;}
.xa8_c00486{left:442.500000px;}
.x88_c00486{left:445.500000px;}
.x41_c00486{left:447.420000px;}
.x72_c00486{left:448.500000px;}
.xb_c00486{left:453.420000px;}
.xc8_c00486{left:455.580000px;}
.xd1_c00486{left:462.000000px;}
.x37_c00486{left:463.080000px;}
.x80_c00486{left:464.580000px;}
.x2a_c00486{left:468.000000px;}
.x49_c00486{left:469.500000px;}
.x5c_c00486{left:472.920000px;}
.x73_c00486{left:475.080000px;}
.x1d_c00486{left:478.920000px;}
.xee_c00486{left:481.920000px;}
.xc9_c00486{left:483.000000px;}
.xd2_c00486{left:486.000000px;}
.xa9_c00486{left:490.500000px;}
.xe2_c00486{left:492.000000px;}
.x55_c00486{left:493.920000px;}
.x68_c00486{left:496.500000px;}
.xe8_c00486{left:498.000000px;}
.x5d_c00486{left:499.080000px;}
.xc_c00486{left:501.000000px;}
.xc2_c00486{left:504.420000px;}
.x1e_c00486{left:505.500000px;}
.x7a_c00486{left:508.275000px;}
.x2b_c00486{left:510.420000px;}
.xcd_c00486{left:513.000000px;}
.x89_c00486{left:514.500000px;}
.x94_c00486{left:517.080000px;}
.x56_c00486{left:518.580000px;}
.x38_c00486{left:520.500000px;}
.x4a_c00486{left:522.000000px;}
.xaa_c00486{left:526.500000px;}
.xd_c00486{left:531.000000px;}
.xca_c00486{left:533.580000px;}
.x2c_c00486{left:535.500000px;}
.xd7_c00486{left:537.000000px;}
.xce_c00486{left:538.500000px;}
.x5e_c00486{left:539.580000px;}
.xb0_c00486{left:541.500000px;}
.x9b_c00486{left:542.580000px;}
.x69_c00486{left:544.080000px;}
.xa5_c00486{left:546.420000px;}
.xab_c00486{left:547.920000px;}
.x42_c00486{left:550.500000px;}
.x8a_c00486{left:553.500000px;}
.xcb_c00486{left:556.500000px;}
.x5f_c00486{left:558.420000px;}
.xbb_c00486{left:559.920000px;}
.x1f_c00486{left:561.000000px;}
.xcf_c00486{left:562.920000px;}
.x57_c00486{left:566.580000px;}
.x4b_c00486{left:570.420000px;}
.x2d_c00486{left:572.580000px;}
.x8b_c00486{left:574.080000px;}
.x39_c00486{left:580.500000px;}
.x7b_c00486{left:582.000000px;}
.x8c_c00486{left:586.500000px;}
.xdf_c00486{left:587.580000px;}
.xbc_c00486{left:589.080000px;}
.xd8_c00486{left:592.500000px;}
.xe_c00486{left:595.500000px;}
.x60_c00486{left:600.000000px;}
.x2e_c00486{left:601.080000px;}
.xdc_c00486{left:604.500000px;}
.x4c_c00486{left:607.500000px;}
.xb5_c00486{left:608.580000px;}
.x78_c00486{left:610.500000px;}
.x20_c00486{left:612.000000px;}
.xe9_c00486{left:615.000000px;}
.x3a_c00486{left:616.080000px;}
.xf_c00486{left:618.420000px;}
.x43_c00486{left:621.420000px;}
.x2f_c00486{left:627.000000px;}
.x21_c00486{left:628.500000px;}
.x81_c00486{left:630.000000px;}
.x95_c00486{left:631.500000px;}
.xc6_c00486{left:634.080000px;}
.x10_c00486{left:637.080000px;}
.x4d_c00486{left:639.000000px;}
.xd3_c00486{left:640.920000px;}
.x58_c00486{left:642.000000px;}
.xb6_c00486{left:643.500000px;}
.x96_c00486{left:645.000000px;}
.xef_c00486{left:647.355000px;}
.xd0_c00486{left:648.420000px;}
.x30_c00486{left:652.920000px;}
.x44_c00486{left:655.500000px;}
.xe3_c00486{left:660.000000px;}
.x4e_c00486{left:661.920000px;}
.x8d_c00486{left:663.420000px;}
.x9c_c00486{left:669.420000px;}
.xb7_c00486{left:671.580000px;}
.x6a_c00486{left:676.500000px;}
.x3b_c00486{left:679.500000px;}
.x82_c00486{left:680.580000px;}
.x22_c00486{left:688.500000px;}
.x4f_c00486{left:690.000000px;}
.x7c_c00486{left:692.775000px;}
.x31_c00486{left:694.920000px;}
.x8e_c00486{left:697.500000px;}
.xea_c00486{left:699.000000px;}
.x11_c00486{left:700.275000px;}
.x2_c00486{left:705.000000px;}
.x23_c00486{left:706.920000px;}
.x61_c00486{left:712.080000px;}
.xdd_c00486{left:713.580000px;}
.x3c_c00486{left:715.080000px;}
@media print{
.v0_c00486{vertical-align:0.000000pt;}
.ls0_c00486{letter-spacing:0.000000pt;}
.ws0_c00486{word-spacing:-3.892160pt;}
.ws3_c00486{word-spacing:-3.865493pt;}
.ws1_c00486{word-spacing:-3.821393pt;}
.ws2_c00486{word-spacing:-2.732480pt;}
.ws4_c00486{word-spacing:0.000000pt;}
.fs2_c00486{font-size:3.040000pt;}
.fs8_c00486{font-size:6.026667pt;}
.fs3_c00486{font-size:16.640000pt;}
.fs0_c00486{font-size:18.133333pt;}
.fs6_c00486{font-size:22.666667pt;}
.fs1_c00486{font-size:25.706667pt;}
.fs7_c00486{font-size:28.746667pt;}
.fs4_c00486{font-size:31.733333pt;}
.fs5_c00486{font-size:34.773333pt;}
.y0_c00486{bottom:0.000000pt;}
.yc4_c00486{bottom:223.773333pt;}
.yc8_c00486{bottom:224.733333pt;}
.yc9_c00486{bottom:225.106667pt;}
.yc6_c00486{bottom:225.893333pt;}
.yc3_c00486{bottom:226.066667pt;}
.yc5_c00486{bottom:226.640000pt;}
.yc7_c00486{bottom:227.026667pt;}
.yc1_c00486{bottom:240.360000pt;}
.yc0_c00486{bottom:242.066667pt;}
.ybf_c00486{bottom:242.440000pt;}
.ybd_c00486{bottom:243.026667pt;}
.yc2_c00486{bottom:243.400000pt;}
.ybe_c00486{bottom:243.973333pt;}
.ybc_c00486{bottom:244.360000pt;}
.yb4_c00486{bottom:259.400000pt;}
.yb5_c00486{bottom:259.773333pt;}
.yb6_c00486{bottom:260.933333pt;}
.yb8_c00486{bottom:261.106667pt;}
.yb7_c00486{bottom:261.306667pt;}
.yb2_c00486{bottom:261.693333pt;}
.yb3_c00486{bottom:261.706667pt;}
.yb9_c00486{bottom:261.893333pt;}
.ybb_c00486{bottom:262.066667pt;}
.yba_c00486{bottom:263.026667pt;}
.yaf_c00486{bottom:277.106667pt;}
.yae_c00486{bottom:278.066667pt;}
.yb1_c00486{bottom:279.026667pt;}
.yb0_c00486{bottom:279.226667pt;}
.yac_c00486{bottom:294.440000pt;}
.yab_c00486{bottom:296.360000pt;}
.yad_c00486{bottom:297.306667pt;}
.ya9_c00486{bottom:311.773333pt;}
.ya6_c00486{bottom:313.106667pt;}
.ya8_c00486{bottom:313.306667pt;}
.ya7_c00486{bottom:313.693333pt;}
.yaa_c00486{bottom:314.640000pt;}
.ya5_c00486{bottom:328.360000pt;}
.ya3_c00486{bottom:329.106667pt;}
.ya4_c00486{bottom:330.066667pt;}
.ya2_c00486{bottom:331.026667pt;}
.ya1_c00486{bottom:332.360000pt;}
.y9e_c00486{bottom:346.440000pt;}
.ya0_c00486{bottom:346.640000pt;}
.y9c_c00486{bottom:347.773333pt;}
.y9f_c00486{bottom:348.360000pt;}
.y9d_c00486{bottom:349.306667pt;}
.y9a_c00486{bottom:349.693333pt;}
.y9b_c00486{bottom:349.706667pt;}
.y98_c00486{bottom:365.106667pt;}
.y96_c00486{bottom:365.893333pt;}
.y99_c00486{bottom:366.066667pt;}
.y95_c00486{bottom:367.026667pt;}
.y97_c00486{bottom:367.040000pt;}
.y92_c00486{bottom:381.693333pt;}
.y91_c00486{bottom:382.440000pt;}
.y94_c00486{bottom:383.600000pt;}
.y93_c00486{bottom:384.360000pt;}
.y90_c00486{bottom:398.440000pt;}
.y8f_c00486{bottom:398.640000pt;}
.y8e_c00486{bottom:398.826667pt;}
.y8a_c00486{bottom:399.773333pt;}
.y8c_c00486{bottom:400.733333pt;}
.y8d_c00486{bottom:401.693333pt;}
.y8b_c00486{bottom:401.706667pt;}
.y89_c00486{bottom:415.773333pt;}
.y86_c00486{bottom:417.106667pt;}
.y84_c00486{bottom:418.066667pt;}
.y87_c00486{bottom:418.640000pt;}
.y85_c00486{bottom:419.026667pt;}
.y88_c00486{bottom:419.973333pt;}
.y83_c00486{bottom:420.360000pt;}
.y82_c00486{bottom:434.440000pt;}
.y81_c00486{bottom:435.400000pt;}
.y7c_c00486{bottom:435.600000pt;}
.y7f_c00486{bottom:435.773333pt;}
.y7d_c00486{bottom:436.360000pt;}
.y80_c00486{bottom:436.560000pt;}
.y7e_c00486{bottom:437.693333pt;}
.y7a_c00486{bottom:451.426667pt;}
.y7b_c00486{bottom:451.773333pt;}
.y77_c00486{bottom:452.160000pt;}
.y78_c00486{bottom:452.733333pt;}
.y73_c00486{bottom:453.106667pt;}
.y79_c00486{bottom:453.693333pt;}
.y76_c00486{bottom:454.066667pt;}
.y74_c00486{bottom:455.026667pt;}
.y75_c00486{bottom:455.040000pt;}
.y71_c00486{bottom:472.733333pt;}
.y72_c00486{bottom:472.933333pt;}
.y6d_c00486{bottom:473.693333pt;}
.y6f_c00486{bottom:474.266667pt;}
.y6e_c00486{bottom:474.640000pt;}
.y70_c00486{bottom:475.600000pt;}
.y6c_c00486{bottom:475.973333pt;}
.y6b_c00486{bottom:490.640000pt;}
.y6a_c00486{bottom:491.400000pt;}
.y69_c00486{bottom:492.933333pt;}
.y68_c00486{bottom:493.306667pt;}
.y67_c00486{bottom:511.026667pt;}
.y64_c00486{bottom:511.973333pt;}
.y65_c00486{bottom:513.106667pt;}
.y66_c00486{bottom:514.066667pt;}
.y63_c00486{bottom:515.026667pt;}
.y62_c00486{bottom:543.026667pt;}
.y61_c00486{bottom:543.973333pt;}
.y60_c00486{bottom:575.400000pt;}
.y5d_c00486{bottom:575.773333pt;}
.y5e_c00486{bottom:576.360000pt;}
.y5f_c00486{bottom:577.693333pt;}
.y5b_c00486{bottom:592.160000pt;}
.y5c_c00486{bottom:593.106667pt;}
.y5a_c00486{bottom:593.893333pt;}
.y59_c00486{bottom:595.026667pt;}
.y56_c00486{bottom:610.440000pt;}
.y58_c00486{bottom:611.400000pt;}
.y55_c00486{bottom:612.360000pt;}
.y57_c00486{bottom:612.560000pt;}
.y52_c00486{bottom:627.026667pt;}
.y51_c00486{bottom:627.773333pt;}
.y50_c00486{bottom:629.693333pt;}
.y53_c00486{bottom:629.893333pt;}
.y54_c00486{bottom:630.640000pt;}
.y4f_c00486{bottom:644.360000pt;}
.y4c_c00486{bottom:645.106667pt;}
.y4d_c00486{bottom:646.440000pt;}
.y4a_c00486{bottom:647.026667pt;}
.y4b_c00486{bottom:647.226667pt;}
.y4e_c00486{bottom:647.973333pt;}
.y48_c00486{bottom:662.440000pt;}
.y47_c00486{bottom:664.360000pt;}
.y49_c00486{bottom:665.306667pt;}
.y46_c00486{bottom:681.106667pt;}
.y45_c00486{bottom:698.440000pt;}
.y43_c00486{bottom:699.400000pt;}
.y44_c00486{bottom:700.360000pt;}
.y41_c00486{bottom:715.400000pt;}
.y42_c00486{bottom:715.773333pt;}
.y40_c00486{bottom:717.693333pt;}
.y3f_c00486{bottom:734.640000pt;}
.y3c_c00486{bottom:750.440000pt;}
.y3b_c00486{bottom:751.226667pt;}
.y3d_c00486{bottom:751.973333pt;}
.y3a_c00486{bottom:752.360000pt;}
.y3e_c00486{bottom:752.560000pt;}
.y39_c00486{bottom:767.400000pt;}
.y38_c00486{bottom:767.773333pt;}
.y35_c00486{bottom:768.560000pt;}
.y37_c00486{bottom:769.306667pt;}
.y34_c00486{bottom:769.693333pt;}
.y36_c00486{bottom:769.893333pt;}
.y2f_c00486{bottom:783.973333pt;}
.y33_c00486{bottom:786.640000pt;}
.y31_c00486{bottom:787.026667pt;}
.y30_c00486{bottom:787.973333pt;}
.y32_c00486{bottom:788.360000pt;}
.y2e_c00486{bottom:801.693333pt;}
.y29_c00486{bottom:802.440000pt;}
.y2c_c00486{bottom:803.773333pt;}
.y2b_c00486{bottom:804.360000pt;}
.y2a_c00486{bottom:804.560000pt;}
.y2d_c00486{bottom:805.693333pt;}
.y23_c00486{bottom:819.026667pt;}
.y27_c00486{bottom:819.773333pt;}
.y28_c00486{bottom:820.733333pt;}
.y22_c00486{bottom:821.106667pt;}
.y26_c00486{bottom:822.066667pt;}
.y24_c00486{bottom:823.026667pt;}
.y25_c00486{bottom:823.973333pt;}
.y1f_c00486{bottom:838.440000pt;}
.y20_c00486{bottom:839.400000pt;}
.y21_c00486{bottom:839.600000pt;}
.y1e_c00486{bottom:840.360000pt;}
.y1d_c00486{bottom:857.693333pt;}
.y19_c00486{bottom:873.106667pt;}
.y1b_c00486{bottom:874.066667pt;}
.y18_c00486{bottom:875.026667pt;}
.y1a_c00486{bottom:875.226667pt;}
.y1c_c00486{bottom:875.973333pt;}
.y13_c00486{bottom:889.693333pt;}
.y14_c00486{bottom:890.440000pt;}
.y17_c00486{bottom:890.640000pt;}
.y16_c00486{bottom:891.973333pt;}
.y12_c00486{bottom:892.360000pt;}
.y15_c00486{bottom:893.306667pt;}
.y11_c00486{bottom:907.400000pt;}
.yd_c00486{bottom:907.773333pt;}
.yf_c00486{bottom:909.693333pt;}
.y10_c00486{bottom:909.893333pt;}
.ye_c00486{bottom:910.640000pt;}
.yc_c00486{bottom:925.106667pt;}
.yb_c00486{bottom:927.026667pt;}
.ya_c00486{bottom:927.973333pt;}
.y7_c00486{bottom:941.693333pt;}
.y9_c00486{bottom:942.826667pt;}
.y8_c00486{bottom:943.026667pt;}
.y6_c00486{bottom:943.773333pt;}
.y5_c00486{bottom:944.560000pt;}
.y3_c00486{bottom:945.693333pt;}
.y4_c00486{bottom:945.706667pt;}
.y2_c00486{bottom:976.360000pt;}
.y1_c00486{bottom:978.266667pt;}
.h3_c00486{height:3.739141pt;}
.h9_c00486{height:7.412682pt;}
.h4_c00486{height:20.466875pt;}
.h1_c00486{height:22.303646pt;}
.h7_c00486{height:27.879557pt;}
.h2_c00486{height:31.618698pt;}
.h8_c00486{height:35.357839pt;}
.h5_c00486{height:39.031380pt;}
.h6_c00486{height:42.770521pt;}
.h0_c00486{height:1186.666667pt;}
.w0_c00486{width:782.666667pt;}
.x0_c00486{left:0.000000pt;}
.x12_c00486{left:134.293333pt;}
.x9d_c00486{left:135.800000pt;}
.x7d_c00486{left:137.133333pt;}
.xac_c00486{left:146.666667pt;}
.x74_c00486{left:147.626667pt;}
.x3_c00486{left:148.573333pt;}
.x13_c00486{left:152.373333pt;}
.xe4_c00486{left:153.706667pt;}
.x32_c00486{left:155.426667pt;}
.xb8_c00486{left:156.373333pt;}
.x6b_c00486{left:157.333333pt;}
.x8f_c00486{left:159.626667pt;}
.x97_c00486{left:162.666667pt;}
.x79_c00486{left:167.240000pt;}
.xd9_c00486{left:168.373333pt;}
.x9e_c00486{left:170.666667pt;}
.xc7_c00486{left:171.626667pt;}
.x14_c00486{left:176.573333pt;}
.x3d_c00486{left:178.293333pt;}
.xad_c00486{left:179.626667pt;}
.x24_c00486{left:180.960000pt;}
.xbd_c00486{left:183.040000pt;}
.xb1_c00486{left:185.333333pt;}
.x83_c00486{left:188.000000pt;}
.xe5_c00486{left:189.333333pt;}
.x6c_c00486{left:192.373333pt;}
.x45_c00486{left:194.666667pt;}
.x75_c00486{left:196.373333pt;}
.x25_c00486{left:197.706667pt;}
.xeb_c00486{left:198.666667pt;}
.x50_c00486{left:200.000000pt;}
.x84_c00486{left:201.706667pt;}
.x59_c00486{left:206.293333pt;}
.x62_c00486{left:208.000000pt;}
.x4_c00486{left:210.666667pt;}
.x33_c00486{left:211.800000pt;}
.x17_c00486{left:214.666667pt;}
.xe0_c00486{left:218.666667pt;}
.x76_c00486{left:220.000000pt;}
.x51_c00486{left:223.040000pt;}
.x6d_c00486{left:225.706667pt;}
.x9f_c00486{left:228.000000pt;}
.x5_c00486{left:229.333333pt;}
.x98_c00486{left:231.040000pt;}
.x18_c00486{left:232.000000pt;}
.x26_c00486{left:232.960000pt;}
.x3e_c00486{left:233.906667pt;}
.xbe_c00486{left:235.040000pt;}
.x63_c00486{left:237.333333pt;}
.xa6_c00486{left:240.000000pt;}
.x6_c00486{left:244.373333pt;}
.xb2_c00486{left:245.333333pt;}
.x15_c00486{left:246.293333pt;}
.xcc_c00486{left:249.333333pt;}
.x85_c00486{left:250.293333pt;}
.x19_c00486{left:252.960000pt;}
.x6e_c00486{left:256.000000pt;}
.xd4_c00486{left:257.333333pt;}
.x5a_c00486{left:258.666667pt;}
.xa0_c00486{left:260.373333pt;}
.x52_c00486{left:261.333333pt;}
.xb3_c00486{left:264.000000pt;}
.xbf_c00486{left:265.706667pt;}
.x7e_c00486{left:268.000000pt;}
.xa2_c00486{left:268.960000pt;}
.x77_c00486{left:270.293333pt;}
.xde_c00486{left:272.000000pt;}
.xae_c00486{left:274.666667pt;}
.x86_c00486{left:276.000000pt;}
.x34_c00486{left:276.960000pt;}
.x99_c00486{left:278.666667pt;}
.x90_c00486{left:280.373333pt;}
.x3f_c00486{left:283.626667pt;}
.x7_c00486{left:288.000000pt;}
.x64_c00486{left:290.666667pt;}
.x1a_c00486{left:292.373333pt;}
.x5b_c00486{left:296.373333pt;}
.xb4_c00486{left:299.040000pt;}
.xda_c00486{left:300.373333pt;}
.xd5_c00486{left:301.333333pt;}
.xec_c00486{left:305.333333pt;}
.x65_c00486{left:306.666667pt;}
.xc3_c00486{left:307.800000pt;}
.x27_c00486{left:311.040000pt;}
.x46_c00486{left:313.333333pt;}
.xa3_c00486{left:314.293333pt;}
.xc0_c00486{left:316.000000pt;}
.x40_c00486{left:317.333333pt;}
.x6f_c00486{left:318.666667pt;}
.x8_c00486{left:320.000000pt;}
.xed_c00486{left:322.666667pt;}
.x53_c00486{left:324.000000pt;}
.x91_c00486{left:325.706667pt;}
.x35_c00486{left:328.000000pt;}
.xe6_c00486{left:329.706667pt;}
.x9_c00486{left:331.040000pt;}
.x66_c00486{left:332.373333pt;}
.x36_c00486{left:340.000000pt;}
.xc1_c00486{left:341.333333pt;}
.xb9_c00486{left:342.666667pt;}
.xc4_c00486{left:344.000000pt;}
.xe1_c00486{left:345.333333pt;}
.x7f_c00486{left:348.000000pt;}
.x47_c00486{left:348.960000pt;}
.x92_c00486{left:351.040000pt;}
.xdb_c00486{left:352.373333pt;}
.x67_c00486{left:354.666667pt;}
.xba_c00486{left:356.373333pt;}
.xaf_c00486{left:357.333333pt;}
.x16_c00486{left:358.466667pt;}
.x9a_c00486{left:360.000000pt;}
.x1_c00486{left:361.333333pt;}
.x54_c00486{left:362.666667pt;}
.x70_c00486{left:364.000000pt;}
.x28_c00486{left:365.706667pt;}
.xa4_c00486{left:367.040000pt;}
.x1b_c00486{left:368.960000pt;}
.xa_c00486{left:370.293333pt;}
.xa7_c00486{left:372.000000pt;}
.xc5_c00486{left:372.960000pt;}
.x87_c00486{left:376.000000pt;}
.x48_c00486{left:378.666667pt;}
.x71_c00486{left:379.626667pt;}
.xa1_c00486{left:380.960000pt;}
.xd6_c00486{left:382.666667pt;}
.x93_c00486{left:384.000000pt;}
.x29_c00486{left:387.626667pt;}
.x1c_c00486{left:389.706667pt;}
.xe7_c00486{left:390.666667pt;}
.xa8_c00486{left:393.333333pt;}
.x88_c00486{left:396.000000pt;}
.x41_c00486{left:397.706667pt;}
.x72_c00486{left:398.666667pt;}
.xb_c00486{left:403.040000pt;}
.xc8_c00486{left:404.960000pt;}
.xd1_c00486{left:410.666667pt;}
.x37_c00486{left:411.626667pt;}
.x80_c00486{left:412.960000pt;}
.x2a_c00486{left:416.000000pt;}
.x49_c00486{left:417.333333pt;}
.x5c_c00486{left:420.373333pt;}
.x73_c00486{left:422.293333pt;}
.x1d_c00486{left:425.706667pt;}
.xee_c00486{left:428.373333pt;}
.xc9_c00486{left:429.333333pt;}
.xd2_c00486{left:432.000000pt;}
.xa9_c00486{left:436.000000pt;}
.xe2_c00486{left:437.333333pt;}
.x55_c00486{left:439.040000pt;}
.x68_c00486{left:441.333333pt;}
.xe8_c00486{left:442.666667pt;}
.x5d_c00486{left:443.626667pt;}
.xc_c00486{left:445.333333pt;}
.xc2_c00486{left:448.373333pt;}
.x1e_c00486{left:449.333333pt;}
.x7a_c00486{left:451.800000pt;}
.x2b_c00486{left:453.706667pt;}
.xcd_c00486{left:456.000000pt;}
.x89_c00486{left:457.333333pt;}
.x94_c00486{left:459.626667pt;}
.x56_c00486{left:460.960000pt;}
.x38_c00486{left:462.666667pt;}
.x4a_c00486{left:464.000000pt;}
.xaa_c00486{left:468.000000pt;}
.xd_c00486{left:472.000000pt;}
.xca_c00486{left:474.293333pt;}
.x2c_c00486{left:476.000000pt;}
.xd7_c00486{left:477.333333pt;}
.xce_c00486{left:478.666667pt;}
.x5e_c00486{left:479.626667pt;}
.xb0_c00486{left:481.333333pt;}
.x9b_c00486{left:482.293333pt;}
.x69_c00486{left:483.626667pt;}
.xa5_c00486{left:485.706667pt;}
.xab_c00486{left:487.040000pt;}
.x42_c00486{left:489.333333pt;}
.x8a_c00486{left:492.000000pt;}
.xcb_c00486{left:494.666667pt;}
.x5f_c00486{left:496.373333pt;}
.xbb_c00486{left:497.706667pt;}
.x1f_c00486{left:498.666667pt;}
.xcf_c00486{left:500.373333pt;}
.x57_c00486{left:503.626667pt;}
.x4b_c00486{left:507.040000pt;}
.x2d_c00486{left:508.960000pt;}
.x8b_c00486{left:510.293333pt;}
.x39_c00486{left:516.000000pt;}
.x7b_c00486{left:517.333333pt;}
.x8c_c00486{left:521.333333pt;}
.xdf_c00486{left:522.293333pt;}
.xbc_c00486{left:523.626667pt;}
.xd8_c00486{left:526.666667pt;}
.xe_c00486{left:529.333333pt;}
.x60_c00486{left:533.333333pt;}
.x2e_c00486{left:534.293333pt;}
.xdc_c00486{left:537.333333pt;}
.x4c_c00486{left:540.000000pt;}
.xb5_c00486{left:540.960000pt;}
.x78_c00486{left:542.666667pt;}
.x20_c00486{left:544.000000pt;}
.xe9_c00486{left:546.666667pt;}
.x3a_c00486{left:547.626667pt;}
.xf_c00486{left:549.706667pt;}
.x43_c00486{left:552.373333pt;}
.x2f_c00486{left:557.333333pt;}
.x21_c00486{left:558.666667pt;}
.x81_c00486{left:560.000000pt;}
.x95_c00486{left:561.333333pt;}
.xc6_c00486{left:563.626667pt;}
.x10_c00486{left:566.293333pt;}
.x4d_c00486{left:568.000000pt;}
.xd3_c00486{left:569.706667pt;}
.x58_c00486{left:570.666667pt;}
.xb6_c00486{left:572.000000pt;}
.x96_c00486{left:573.333333pt;}
.xef_c00486{left:575.426667pt;}
.xd0_c00486{left:576.373333pt;}
.x30_c00486{left:580.373333pt;}
.x44_c00486{left:582.666667pt;}
.xe3_c00486{left:586.666667pt;}
.x4e_c00486{left:588.373333pt;}
.x8d_c00486{left:589.706667pt;}
.x9c_c00486{left:595.040000pt;}
.xb7_c00486{left:596.960000pt;}
.x6a_c00486{left:601.333333pt;}
.x3b_c00486{left:604.000000pt;}
.x82_c00486{left:604.960000pt;}
.x22_c00486{left:612.000000pt;}
.x4f_c00486{left:613.333333pt;}
.x7c_c00486{left:615.800000pt;}
.x31_c00486{left:617.706667pt;}
.x8e_c00486{left:620.000000pt;}
.xea_c00486{left:621.333333pt;}
.x11_c00486{left:622.466667pt;}
.x2_c00486{left:626.666667pt;}
.x23_c00486{left:628.373333pt;}
.x61_c00486{left:632.960000pt;}
.xdd_c00486{left:634.293333pt;}
.x3c_c00486{left:635.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_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_f90410e55e25d3a9323cc277.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m94_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);}
.m92_c00487{transform:matrix(0.281513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281513,0.000000,0.000000,0.250000,0,0);}
.me4_c00487{transform:matrix(0.346218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346218,0.000000,0.000000,0.250000,0,0);}
.m6a_c00487{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m5d_c00487{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.ma8_c00487{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m20_c00487{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.me8_c00487{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.me7_c00487{transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);}
.ma7_c00487{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.mc7_c00487{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m2f_c00487{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.me1_c00487{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.mc2_c00487{transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);}
.m33_c00487{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m1b_c00487{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m82_c00487{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m45_c00487{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m26_c00487{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m8a_c00487{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.m18_c00487{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mba_c00487{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.mcf_c00487{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m37_c00487{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.md9_c00487{transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);}
.mb6_c00487{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m21_c00487{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m40_c00487{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m9b_c00487{transform:matrix(0.414110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414110,0.000000,0.000000,0.250000,0,0);}
.m64_c00487{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m44_c00487{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m43_c00487{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m77_c00487{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mdb_c00487{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m9e_c00487{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m29_c00487{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m2c_c00487{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.maf_c00487{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.me6_c00487{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m54_c00487{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mb8_c00487{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m25_c00487{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mdf_c00487{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mab_c00487{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m47_c00487{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m63_c00487{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.maa_c00487{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.mbd_c00487{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m9a_c00487{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mac_c00487{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m2b_c00487{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m28_c00487{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mb7_c00487{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m83_c00487{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m7c_c00487{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m84_c00487{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m85_c00487{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m8e_c00487{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m91_c00487{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m7e_c00487{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m78_c00487{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m52_c00487{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.mcc_c00487{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.mc0_c00487{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m8_c00487{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m59_c00487{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m96_c00487{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.mbf_c00487{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m9_c00487{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.m48_c00487{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m7b_c00487{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.md8_c00487{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m6b_c00487{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.me2_c00487{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.md_c00487{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.md4_c00487{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m8c_c00487{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.ma9_c00487{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m41_c00487{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m35_c00487{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m50_c00487{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.me3_c00487{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m65_c00487{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m53_c00487{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m9d_c00487{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.mdd_c00487{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.md6_c00487{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m62_c00487{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m12_c00487{transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);}
.m61_c00487{transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);}
.md5_c00487{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.mce_c00487{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.mcd_c00487{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m1c_c00487{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.ma1_c00487{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.mc4_c00487{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mbc_c00487{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.mb5_c00487{transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);}
.m7a_c00487{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.mc3_c00487{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_c00487{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m74_c00487{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.m5_c00487{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m76_c00487{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.mc5_c00487{transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);}
.m24_c00487{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m5b_c00487{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);}
.m34_c00487{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m55_c00487{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m36_c00487{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m3f_c00487{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.mad_c00487{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m30_c00487{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mc9_c00487{transform:matrix(0.510204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510204,0.000000,0.000000,0.250000,0,0);}
.m2d_c00487{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m1f_c00487{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m58_c00487{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m6c_c00487{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m22_c00487{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m4b_c00487{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m73_c00487{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.mae_c00487{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.ma2_c00487{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m75_c00487{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m67_c00487{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.mc_c00487{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m46_c00487{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m66_c00487{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.mbe_c00487{transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524378,0.000000,0.000000,0.250000,0,0);}
.m93_c00487{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m3a_c00487{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m39_c00487{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m3d_c00487{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m98_c00487{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m51_c00487{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m57_c00487{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m7_c00487{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m32_c00487{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m17_c00487{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m89_c00487{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.mb9_c00487{transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);}
.ma0_c00487{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m5e_c00487{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m27_c00487{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.me9_c00487{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.mf_c00487{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m42_c00487{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m97_c00487{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m31_c00487{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.ma4_c00487{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m5a_c00487{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m86_c00487{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.mde_c00487{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m3e_c00487{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m69_c00487{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.me5_c00487{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m60_c00487{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m4a_c00487{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.ma6_c00487{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m23_c00487{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m4_c00487{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m11_c00487{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m9f_c00487{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.md0_c00487{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);}
.m15_c00487{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m71_c00487{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m81_c00487{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m6d_c00487{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.mc1_c00487{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m10_c00487{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.me_c00487{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m3_c00487{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m8b_c00487{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m68_c00487{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m79_c00487{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m6e_c00487{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m9c_c00487{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m4d_c00487{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.m70_c00487{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.mdc_c00487{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m4c_c00487{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m7d_c00487{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.ma5_c00487{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.mca_c00487{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m87_c00487{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m38_c00487{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mc8_c00487{transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);}
.m99_c00487{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m1a_c00487{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);}
.m88_c00487{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mb4_c00487{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.m8d_c00487{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m95_c00487{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m19_c00487{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m1e_c00487{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.ma_c00487{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mb_c00487{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.mb2_c00487{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m6f_c00487{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.md1_c00487{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);}
.mb0_c00487{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m56_c00487{transform:matrix(0.636411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636411,0.000000,0.000000,0.250000,0,0);}
.ma3_c00487{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.me0_c00487{transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);}
.md7_c00487{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.mbb_c00487{transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);}
.m5f_c00487{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m16_c00487{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m1_c00487{transform:matrix(0.679487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679487,0.000000,0.000000,0.250000,0,0);}
.m13_c00487{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mb1_c00487{transform:matrix(0.696471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696471,0.000000,0.000000,0.250000,0,0);}
.m90_c00487{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.mcb_c00487{transform:matrix(0.714706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.714706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.714706,0.000000,0.000000,0.250000,0,0);}
.m3b_c00487{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m72_c00487{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m7f_c00487{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m2_c00487{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mb3_c00487{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m5c_c00487{transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736378,0.000000,0.000000,0.250000,0,0);}
.m4f_c00487{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m14_c00487{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m80_c00487{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m49_c00487{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.md2_c00487{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m3c_c00487{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m6_c00487{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m8f_c00487{transform:matrix(0.806891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806891,0.000000,0.000000,0.250000,0,0);}
.m2e_c00487{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m4e_c00487{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.m1d_c00487{transform:matrix(0.837340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837340,0.000000,0.000000,0.250000,0,0);}
.mda_c00487{transform:matrix(0.875735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875735,0.000000,0.000000,0.250000,0,0);}
.mc6_c00487{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.m2a_c00487{transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);}
.md3_c00487{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,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;}
.fs6_c00487{font-size:3.420000px;}
.fs1_c00487{font-size:18.720000px;}
.fs2_c00487{font-size:20.400000px;}
.fs4_c00487{font-size:25.500000px;}
.fs0_c00487{font-size:28.920000px;}
.fs5_c00487{font-size:32.340000px;}
.fs3_c00487{font-size:35.700000px;}
.fs7_c00487{font-size:39.120000px;}
.y0_c00487{bottom:0.000000px;}
.yd9_c00487{bottom:249.825000px;}
.yd8_c00487{bottom:250.680000px;}
.ydb_c00487{bottom:251.745000px;}
.ydd_c00487{bottom:253.245000px;}
.yda_c00487{bottom:253.905000px;}
.yde_c00487{bottom:254.130000px;}
.ydc_c00487{bottom:255.405000px;}
.yd6_c00487{bottom:270.405000px;}
.yd4_c00487{bottom:271.245000px;}
.yd5_c00487{bottom:271.470000px;}
.yd7_c00487{bottom:272.130000px;}
.yd3_c00487{bottom:273.405000px;}
.yd2_c00487{bottom:289.905000px;}
.yca_c00487{bottom:290.745000px;}
.ycb_c00487{bottom:290.970000px;}
.ycd_c00487{bottom:291.405000px;}
.ycc_c00487{bottom:291.825000px;}
.ycf_c00487{bottom:292.245000px;}
.yd0_c00487{bottom:292.905000px;}
.yce_c00487{bottom:294.405000px;}
.yd1_c00487{bottom:296.130000px;}
.yc9_c00487{bottom:309.405000px;}
.yc7_c00487{bottom:310.905000px;}
.yc4_c00487{bottom:311.745000px;}
.yc8_c00487{bottom:311.970000px;}
.yc6_c00487{bottom:312.825000px;}
.yc5_c00487{bottom:313.905000px;}
.yc2_c00487{bottom:330.405000px;}
.ybe_c00487{bottom:331.245000px;}
.ybd_c00487{bottom:332.325000px;}
.ybf_c00487{bottom:332.550000px;}
.yc3_c00487{bottom:333.405000px;}
.yc1_c00487{bottom:334.050000px;}
.yc0_c00487{bottom:334.905000px;}
.ybb_c00487{bottom:349.905000px;}
.yb6_c00487{bottom:350.745000px;}
.yba_c00487{bottom:350.970000px;}
.yb8_c00487{bottom:351.405000px;}
.yb5_c00487{bottom:351.825000px;}
.yb7_c00487{bottom:352.470000px;}
.ybc_c00487{bottom:352.905000px;}
.yb9_c00487{bottom:353.550000px;}
.yb3_c00487{bottom:369.405000px;}
.yb2_c00487{bottom:370.245000px;}
.yb4_c00487{bottom:372.405000px;}
.yb0_c00487{bottom:389.325000px;}
.yb1_c00487{bottom:389.745000px;}
.ya8_c00487{bottom:390.825000px;}
.yab_c00487{bottom:391.245000px;}
.yac_c00487{bottom:391.470000px;}
.yae_c00487{bottom:392.130000px;}
.yaa_c00487{bottom:392.325000px;}
.yad_c00487{bottom:392.550000px;}
.ya9_c00487{bottom:393.405000px;}
.yaf_c00487{bottom:393.420000px;}
.ya7_c00487{bottom:408.825000px;}
.ya6_c00487{bottom:410.550000px;}
.ya5_c00487{bottom:410.745000px;}
.ya2_c00487{bottom:411.825000px;}
.ya4_c00487{bottom:412.905000px;}
.ya3_c00487{bottom:413.970000px;}
.ya1_c00487{bottom:430.470000px;}
.ya0_c00487{bottom:432.405000px;}
.y9f_c00487{bottom:433.470000px;}
.y9d_c00487{bottom:448.245000px;}
.y99_c00487{bottom:449.745000px;}
.y9c_c00487{bottom:450.405000px;}
.y9e_c00487{bottom:450.630000px;}
.y9b_c00487{bottom:450.825000px;}
.y9a_c00487{bottom:451.470000px;}
.y97_c00487{bottom:451.905000px;}
.y98_c00487{bottom:452.970000px;}
.y93_c00487{bottom:467.745000px;}
.y94_c00487{bottom:468.180000px;}
.y8d_c00487{bottom:468.405000px;}
.y8f_c00487{bottom:469.245000px;}
.y95_c00487{bottom:470.130000px;}
.y92_c00487{bottom:470.325000px;}
.y96_c00487{bottom:470.970000px;}
.y91_c00487{bottom:471.405000px;}
.y8e_c00487{bottom:471.825000px;}
.y90_c00487{bottom:472.905000px;}
.y8b_c00487{bottom:488.745000px;}
.y88_c00487{bottom:488.970000px;}
.y8a_c00487{bottom:489.630000px;}
.y86_c00487{bottom:490.245000px;}
.y8c_c00487{bottom:490.905000px;}
.y89_c00487{bottom:491.970000px;}
.y87_c00487{bottom:492.405000px;}
.y83_c00487{bottom:507.405000px;}
.y82_c00487{bottom:508.245000px;}
.y84_c00487{bottom:509.745000px;}
.y85_c00487{bottom:510.405000px;}
.y80_c00487{bottom:511.470000px;}
.y81_c00487{bottom:512.970000px;}
.y7d_c00487{bottom:529.245000px;}
.y7f_c00487{bottom:529.905000px;}
.y7e_c00487{bottom:530.970000px;}
.y7c_c00487{bottom:531.405000px;}
.y7a_c00487{bottom:546.405000px;}
.y78_c00487{bottom:548.745000px;}
.y7b_c00487{bottom:549.630000px;}
.y79_c00487{bottom:550.905000px;}
.y77_c00487{bottom:565.905000px;}
.y74_c00487{bottom:568.245000px;}
.y75_c00487{bottom:569.325000px;}
.y76_c00487{bottom:570.405000px;}
.y73_c00487{bottom:587.745000px;}
.y71_c00487{bottom:589.905000px;}
.y72_c00487{bottom:590.970000px;}
.y6f_c00487{bottom:608.325000px;}
.y6e_c00487{bottom:609.405000px;}
.y70_c00487{bottom:610.470000px;}
.y69_c00487{bottom:625.905000px;}
.y6d_c00487{bottom:626.745000px;}
.y6c_c00487{bottom:627.180000px;}
.y6b_c00487{bottom:628.245000px;}
.y6a_c00487{bottom:628.905000px;}
.y67_c00487{bottom:646.245000px;}
.y65_c00487{bottom:648.405000px;}
.y68_c00487{bottom:649.470000px;}
.y66_c00487{bottom:649.905000px;}
.y61_c00487{bottom:667.245000px;}
.y60_c00487{bottom:667.905000px;}
.y64_c00487{bottom:668.130000px;}
.y63_c00487{bottom:668.970000px;}
.y62_c00487{bottom:669.405000px;}
.y5d_c00487{bottom:686.745000px;}
.y5f_c00487{bottom:687.825000px;}
.y5e_c00487{bottom:688.470000px;}
.y5c_c00487{bottom:688.905000px;}
.y59_c00487{bottom:706.245000px;}
.y5b_c00487{bottom:707.130000px;}
.y5a_c00487{bottom:707.970000px;}
.y58_c00487{bottom:708.405000px;}
.y54_c00487{bottom:725.745000px;}
.y56_c00487{bottom:726.630000px;}
.y57_c00487{bottom:727.905000px;}
.y55_c00487{bottom:728.970000px;}
.y51_c00487{bottom:744.825000px;}
.y50_c00487{bottom:745.245000px;}
.y52_c00487{bottom:746.130000px;}
.y53_c00487{bottom:746.325000px;}
.y4e_c00487{bottom:747.405000px;}
.y4f_c00487{bottom:747.630000px;}
.y4a_c00487{bottom:766.245000px;}
.y4d_c00487{bottom:766.905000px;}
.y4c_c00487{bottom:767.130000px;}
.y4b_c00487{bottom:768.405000px;}
.y46_c00487{bottom:786.405000px;}
.y48_c00487{bottom:786.630000px;}
.y49_c00487{bottom:787.470000px;}
.y47_c00487{bottom:787.905000px;}
.y44_c00487{bottom:805.245000px;}
.y45_c00487{bottom:805.905000px;}
.y43_c00487{bottom:807.405000px;}
.y3f_c00487{bottom:824.745000px;}
.y42_c00487{bottom:825.630000px;}
.y40_c00487{bottom:825.825000px;}
.y41_c00487{bottom:826.905000px;}
.y3d_c00487{bottom:842.745000px;}
.y3a_c00487{bottom:844.245000px;}
.y3e_c00487{bottom:844.905000px;}
.y3b_c00487{bottom:845.130000px;}
.y38_c00487{bottom:845.970000px;}
.y39_c00487{bottom:846.405000px;}
.y3c_c00487{bottom:847.470000px;}
.y35_c00487{bottom:863.325000px;}
.y37_c00487{bottom:864.630000px;}
.y34_c00487{bottom:865.905000px;}
.y36_c00487{bottom:866.970000px;}
.y32_c00487{bottom:883.245000px;}
.y30_c00487{bottom:884.325000px;}
.y31_c00487{bottom:885.405000px;}
.y33_c00487{bottom:885.630000px;}
.y2d_c00487{bottom:902.745000px;}
.y2f_c00487{bottom:904.905000px;}
.y2c_c00487{bottom:905.130000px;}
.y2e_c00487{bottom:906.405000px;}
.y28_c00487{bottom:922.245000px;}
.y29_c00487{bottom:923.745000px;}
.y27_c00487{bottom:924.405000px;}
.y2b_c00487{bottom:925.470000px;}
.y2a_c00487{bottom:925.905000px;}
.y26_c00487{bottom:941.745000px;}
.y25_c00487{bottom:942.825000px;}
.y24_c00487{bottom:943.245000px;}
.y22_c00487{bottom:943.905000px;}
.y23_c00487{bottom:944.130000px;}
.y1f_c00487{bottom:960.405000px;}
.y21_c00487{bottom:961.245000px;}
.y20_c00487{bottom:962.745000px;}
.y1c_c00487{bottom:963.405000px;}
.y1e_c00487{bottom:964.470000px;}
.y1d_c00487{bottom:964.905000px;}
.y18_c00487{bottom:982.245000px;}
.y1a_c00487{bottom:984.405000px;}
.y19_c00487{bottom:984.420000px;}
.y1b_c00487{bottom:984.630000px;}
.y16_c00487{bottom:1001.745000px;}
.y17_c00487{bottom:1003.905000px;}
.y12_c00487{bottom:1021.245000px;}
.y14_c00487{bottom:1022.130000px;}
.y15_c00487{bottom:1022.325000px;}
.y13_c00487{bottom:1023.405000px;}
.y11_c00487{bottom:1024.470000px;}
.y10_c00487{bottom:1040.745000px;}
.yd_c00487{bottom:1041.630000px;}
.ye_c00487{bottom:1041.825000px;}
.yf_c00487{bottom:1042.470000px;}
.yc_c00487{bottom:1042.905000px;}
.yb_c00487{bottom:1058.745000px;}
.y6_c00487{bottom:1059.405000px;}
.y9_c00487{bottom:1060.245000px;}
.y4_c00487{bottom:1061.550000px;}
.y8_c00487{bottom:1061.745000px;}
.y7_c00487{bottom:1062.405000px;}
.y3_c00487{bottom:1062.630000px;}
.ya_c00487{bottom:1063.470000px;}
.y5_c00487{bottom:1063.905000px;}
.y1_c00487{bottom:1098.405000px;}
.y2_c00487{bottom:1101.630000px;}
.h7_c00487{height:4.206533px;}
.h2_c00487{height:23.025234px;}
.h3_c00487{height:25.091602px;}
.h5_c00487{height:31.364502px;}
.h1_c00487{height:35.571035px;}
.h6_c00487{height:39.777568px;}
.h4_c00487{height:43.910303px;}
.h8_c00487{height:48.116836px;}
.h0_c00487{height:1335.000000px;}
.w0_c00487{width:880.500000px;}
.x0_c00487{left:0.000000px;}
.x1_c00487{left:150.000000px;}
.x3_c00487{left:151.500000px;}
.x2e_c00487{left:166.080000px;}
.x111_c00487{left:171.000000px;}
.x4_c00487{left:173.355000px;}
.x90_c00487{left:178.920000px;}
.xb9_c00487{left:180.000000px;}
.xea_c00487{left:181.500000px;}
.xf5_c00487{left:182.580000px;}
.x20_c00487{left:186.000000px;}
.x3f_c00487{left:187.080000px;}
.x5_c00487{left:189.645000px;}
.x7e_c00487{left:192.420000px;}
.xcb_c00487{left:194.580000px;}
.x5d_c00487{left:196.080000px;}
.xa8_c00487{left:197.580000px;}
.xb1_c00487{left:199.080000px;}
.x72_c00487{left:201.420000px;}
.xd3_c00487{left:202.500000px;}
.x67_c00487{left:207.000000px;}
.x98_c00487{left:210.000000px;}
.xe5_c00487{left:213.000000px;}
.x11_c00487{left:214.080000px;}
.xdb_c00487{left:216.000000px;}
.xa9_c00487{left:217.500000px;}
.xd4_c00487{left:218.580000px;}
.xeb_c00487{left:220.500000px;}
.x86_c00487{left:221.580000px;}
.x2c_c00487{left:223.500000px;}
.xed_c00487{left:226.920000px;}
.x91_c00487{left:230.580000px;}
.x73_c00487{left:232.500000px;}
.x40_c00487{left:234.000000px;}
.xe1_c00487{left:237.420000px;}
.x2d_c00487{left:241.500000px;}
.x4b_c00487{left:243.000000px;}
.x87_c00487{left:244.920000px;}
.x5e_c00487{left:246.000000px;}
.x115_c00487{left:248.580000px;}
.x74_c00487{left:250.080000px;}
.x10a_c00487{left:252.000000px;}
.xee_c00487{left:253.080000px;}
.x6_c00487{left:255.420000px;}
.x99_c00487{left:256.500000px;}
.xf2_c00487{left:258.000000px;}
.x35_c00487{left:260.580000px;}
.x68_c00487{left:262.500000px;}
.xd5_c00487{left:264.420000px;}
.x41_c00487{left:265.500000px;}
.xe2_c00487{left:267.000000px;}
.xaa_c00487{left:268.920000px;}
.x92_c00487{left:270.420000px;}
.x12_c00487{left:271.500000px;}
.x21_c00487{left:274.500000px;}
.x55_c00487{left:276.420000px;}
.x88_c00487{left:277.920000px;}
.x36_c00487{left:280.500000px;}
.x69_c00487{left:282.420000px;}
.xc1_c00487{left:285.000000px;}
.x4c_c00487{left:286.500000px;}
.xec_c00487{left:288.000000px;}
.xcc_c00487{left:289.920000px;}
.x7_c00487{left:291.000000px;}
.x7f_c00487{left:295.500000px;}
.x93_c00487{left:297.420000px;}
.x75_c00487{left:300.420000px;}
.x5f_c00487{left:303.000000px;}
.x10b_c00487{left:304.500000px;}
.x42_c00487{left:306.000000px;}
.x13_c00487{left:307.920000px;}
.x22_c00487{left:309.000000px;}
.x37_c00487{left:310.920000px;}
.x56_c00487{left:312.000000px;}
.x89_c00487{left:313.080000px;}
.xcd_c00487{left:316.500000px;}
.xab_c00487{left:323.580000px;}
.xc2_c00487{left:324.855000px;}
.x8_c00487{left:325.920000px;}
.xbe_c00487{left:328.500000px;}
.x23_c00487{left:330.000000px;}
.x43_c00487{left:331.920000px;}
.x14_c00487{left:334.080000px;}
.xfd_c00487{left:335.580000px;}
.xf6_c00487{left:337.500000px;}
.xba_c00487{left:339.000000px;}
.x76_c00487{left:340.500000px;}
.xa2_c00487{left:343.500000px;}
.x8a_c00487{left:345.000000px;}
.xb2_c00487{left:346.920000px;}
.xe6_c00487{left:348.000000px;}
.x9a_c00487{left:349.500000px;}
.x9_c00487{left:352.500000px;}
.x80_c00487{left:354.000000px;}
.x60_c00487{left:357.000000px;}
.x106_c00487{left:358.080000px;}
.x24_c00487{left:359.580000px;}
.x8b_c00487{left:361.920000px;}
.xc3_c00487{left:366.000000px;}
.xbf_c00487{left:367.080000px;}
.x103_c00487{left:370.500000px;}
.xce_c00487{left:372.000000px;}
.x38_c00487{left:373.500000px;}
.x4d_c00487{left:374.580000px;}
.x2f_c00487{left:376.920000px;}
.xbb_c00487{left:378.420000px;}
.xfe_c00487{left:381.000000px;}
.xb3_c00487{left:384.000000px;}
.x94_c00487{left:385.500000px;}
.x44_c00487{left:387.000000px;}
.xa3_c00487{left:388.500000px;}
.x77_c00487{left:390.000000px;}
.x104_c00487{left:391.080000px;}
.x6a_c00487{left:393.000000px;}
.xe7_c00487{left:394.500000px;}
.xd6_c00487{left:397.080000px;}
.x4e_c00487{left:399.000000px;}
.x95_c00487{left:400.500000px;}
.x15_c00487{left:402.000000px;}
.xc7_c00487{left:405.000000px;}
.x2_c00487{left:406.500000px;}
.x39_c00487{left:408.420000px;}
.x78_c00487{left:411.000000px;}
.x61_c00487{left:412.920000px;}
.x25_c00487{left:414.000000px;}
.xf7_c00487{left:417.000000px;}
.xef_c00487{left:418.920000px;}
.xcf_c00487{left:420.420000px;}
.xac_c00487{left:421.500000px;}
.xa_c00487{left:424.500000px;}
.x4f_c00487{left:426.000000px;}
.x6b_c00487{left:427.080000px;}
.xc4_c00487{left:429.000000px;}
.xa4_c00487{left:430.500000px;}
.x81_c00487{left:432.420000px;}
.xf8_c00487{left:433.500000px;}
.xd7_c00487{left:435.000000px;}
.x107_c00487{left:436.920000px;}
.x79_c00487{left:439.080000px;}
.xad_c00487{left:442.920000px;}
.xbc_c00487{left:444.000000px;}
.xdc_c00487{left:445.500000px;}
.x6c_c00487{left:447.420000px;}
.xc0_c00487{left:448.500000px;}
.xf9_c00487{left:450.000000px;}
.xff_c00487{left:453.000000px;}
.x3a_c00487{left:454.500000px;}
.x16_c00487{left:457.500000px;}
.x57_c00487{left:459.420000px;}
.x10c_c00487{left:460.920000px;}
.x50_c00487{left:463.920000px;}
.x45_c00487{left:468.000000px;}
.x112_c00487{left:469.920000px;}
.xae_c00487{left:471.000000px;}
.x17_c00487{left:474.000000px;}
.x6d_c00487{left:475.500000px;}
.xe3_c00487{left:477.000000px;}
.xb_c00487{left:478.500000px;}
.x26_c00487{left:479.580000px;}
.xd8_c00487{left:481.080000px;}
.x7a_c00487{left:483.000000px;}
.x58_c00487{left:484.500000px;}
.x10e_c00487{left:486.000000px;}
.x9b_c00487{left:487.080000px;}
.x82_c00487{left:488.580000px;}
.x51_c00487{left:490.080000px;}
.xc_c00487{left:496.920000px;}
.xa5_c00487{left:502.500000px;}
.x18_c00487{left:504.420000px;}
.xdd_c00487{left:505.920000px;}
.x3b_c00487{left:508.500000px;}
.x27_c00487{left:510.000000px;}
.xb4_c00487{left:511.920000px;}
.xbd_c00487{left:513.000000px;}
.x6e_c00487{left:516.000000px;}
.x7b_c00487{left:517.920000px;}
.x30_c00487{left:519.000000px;}
.x113_c00487{left:520.080000px;}
.x62_c00487{left:522.000000px;}
.xd_c00487{left:523.080000px;}
.x3c_c00487{left:525.420000px;}
.x9c_c00487{left:528.420000px;}
.xd0_c00487{left:529.500000px;}
.x46_c00487{left:531.420000px;}
.x116_c00487{left:532.500000px;}
.x96_c00487{left:533.580000px;}
.x83_c00487{left:535.500000px;}
.x63_c00487{left:538.500000px;}
.xc8_c00487{left:539.580000px;}
.x31_c00487{left:541.920000px;}
.xd9_c00487{left:546.000000px;}
.x19_c00487{left:548.580000px;}
.x105_c00487{left:550.500000px;}
.x100_c00487{left:553.500000px;}
.x9d_c00487{left:555.000000px;}
.xd1_c00487{left:556.920000px;}
.x59_c00487{left:558.420000px;}
.xf3_c00487{left:559.500000px;}
.x28_c00487{left:561.000000px;}
.x52_c00487{left:567.420000px;}
.x1a_c00487{left:568.920000px;}
.x32_c00487{left:570.000000px;}
.xc9_c00487{left:571.080000px;}
.x7c_c00487{left:573.000000px;}
.x47_c00487{left:574.500000px;}
.xa6_c00487{left:576.000000px;}
.xc5_c00487{left:577.080000px;}
.x64_c00487{left:579.000000px;}
.x108_c00487{left:582.420000px;}
.xe_c00487{left:583.500000px;}
.x10f_c00487{left:584.580000px;}
.xfa_c00487{left:588.420000px;}
.x6f_c00487{left:589.500000px;}
.x101_c00487{left:590.580000px;}
.x97_c00487{left:592.920000px;}
.xde_c00487{left:594.420000px;}
.x1b_c00487{left:595.920000px;}
.x9e_c00487{left:597.000000px;}
.x29_c00487{left:598.080000px;}
.x3d_c00487{left:599.580000px;}
.xb5_c00487{left:601.920000px;}
.x48_c00487{left:609.420000px;}
.xca_c00487{left:610.500000px;}
.x114_c00487{left:611.580000px;}
.x5a_c00487{left:613.500000px;}
.x33_c00487{left:615.420000px;}
.x70_c00487{left:616.500000px;}
.x8c_c00487{left:617.580000px;}
.x65_c00487{left:620.580000px;}
.x84_c00487{left:622.080000px;}
.xdf_c00487{left:624.000000px;}
.xf4_c00487{left:625.080000px;}
.x5b_c00487{left:627.000000px;}
.x1c_c00487{left:628.080000px;}
.x2a_c00487{left:630.000000px;}
.xda_c00487{left:631.080000px;}
.xa7_c00487{left:633.000000px;}
.x109_c00487{left:634.500000px;}
.x8d_c00487{left:637.920000px;}
.x66_c00487{left:639.000000px;}
.xaf_c00487{left:642.000000px;}
.x10d_c00487{left:645.000000px;}
.x1d_c00487{left:646.500000px;}
.x71_c00487{left:648.000000px;}
.x9f_c00487{left:650.580000px;}
.xe4_c00487{left:652.500000px;}
.xe8_c00487{left:657.420000px;}
.x1e_c00487{left:658.920000px;}
.xb6_c00487{left:660.000000px;}
.x53_c00487{left:661.500000px;}
.x8e_c00487{left:664.080000px;}
.x34_c00487{left:666.000000px;}
.xa0_c00487{left:669.420000px;}
.xe0_c00487{left:672.855000px;}
.xc6_c00487{left:673.920000px;}
.x3e_c00487{left:675.420000px;}
.x2b_c00487{left:676.500000px;}
.x54_c00487{left:678.000000px;}
.x5c_c00487{left:679.920000px;}
.xf_c00487{left:681.000000px;}
.x49_c00487{left:682.920000px;}
.xe9_c00487{left:684.000000px;}
.xfb_c00487{left:685.500000px;}
.x110_c00487{left:687.420000px;}
.xf0_c00487{left:694.500000px;}
.xa1_c00487{left:696.000000px;}
.x1f_c00487{left:697.500000px;}
.xfc_c00487{left:699.420000px;}
.x102_c00487{left:700.500000px;}
.xb7_c00487{left:701.580000px;}
.x8f_c00487{left:703.080000px;}
.xd2_c00487{left:705.000000px;}
.x85_c00487{left:706.920000px;}
.xb0_c00487{left:708.000000px;}
.x4a_c00487{left:709.920000px;}
.xf1_c00487{left:714.000000px;}
.x10_c00487{left:715.080000px;}
.x7d_c00487{left:718.500000px;}
.xb8_c00487{left:721.500000px;}
@media print{
.v0_c00487{vertical-align:0.000000pt;}
.ls0_c00487{letter-spacing:0.000000pt;}
.ws0_c00487{word-spacing:0.000000pt;}
.fs6_c00487{font-size:3.040000pt;}
.fs1_c00487{font-size:16.640000pt;}
.fs2_c00487{font-size:18.133333pt;}
.fs4_c00487{font-size:22.666667pt;}
.fs0_c00487{font-size:25.706667pt;}
.fs5_c00487{font-size:28.746667pt;}
.fs3_c00487{font-size:31.733333pt;}
.fs7_c00487{font-size:34.773333pt;}
.y0_c00487{bottom:0.000000pt;}
.yd9_c00487{bottom:222.066667pt;}
.yd8_c00487{bottom:222.826667pt;}
.ydb_c00487{bottom:223.773333pt;}
.ydd_c00487{bottom:225.106667pt;}
.yda_c00487{bottom:225.693333pt;}
.yde_c00487{bottom:225.893333pt;}
.ydc_c00487{bottom:227.026667pt;}
.yd6_c00487{bottom:240.360000pt;}
.yd4_c00487{bottom:241.106667pt;}
.yd5_c00487{bottom:241.306667pt;}
.yd7_c00487{bottom:241.893333pt;}
.yd3_c00487{bottom:243.026667pt;}
.yd2_c00487{bottom:257.693333pt;}
.yca_c00487{bottom:258.440000pt;}
.ycb_c00487{bottom:258.640000pt;}
.ycd_c00487{bottom:259.026667pt;}
.ycc_c00487{bottom:259.400000pt;}
.ycf_c00487{bottom:259.773333pt;}
.yd0_c00487{bottom:260.360000pt;}
.yce_c00487{bottom:261.693333pt;}
.yd1_c00487{bottom:263.226667pt;}
.yc9_c00487{bottom:275.026667pt;}
.yc7_c00487{bottom:276.360000pt;}
.yc4_c00487{bottom:277.106667pt;}
.yc8_c00487{bottom:277.306667pt;}
.yc6_c00487{bottom:278.066667pt;}
.yc5_c00487{bottom:279.026667pt;}
.yc2_c00487{bottom:293.693333pt;}
.ybe_c00487{bottom:294.440000pt;}
.ybd_c00487{bottom:295.400000pt;}
.ybf_c00487{bottom:295.600000pt;}
.yc3_c00487{bottom:296.360000pt;}
.yc1_c00487{bottom:296.933333pt;}
.yc0_c00487{bottom:297.693333pt;}
.ybb_c00487{bottom:311.026667pt;}
.yb6_c00487{bottom:311.773333pt;}
.yba_c00487{bottom:311.973333pt;}
.yb8_c00487{bottom:312.360000pt;}
.yb5_c00487{bottom:312.733333pt;}
.yb7_c00487{bottom:313.306667pt;}
.ybc_c00487{bottom:313.693333pt;}
.yb9_c00487{bottom:314.266667pt;}
.yb3_c00487{bottom:328.360000pt;}
.yb2_c00487{bottom:329.106667pt;}
.yb4_c00487{bottom:331.026667pt;}
.yb0_c00487{bottom:346.066667pt;}
.yb1_c00487{bottom:346.440000pt;}
.ya8_c00487{bottom:347.400000pt;}
.yab_c00487{bottom:347.773333pt;}
.yac_c00487{bottom:347.973333pt;}
.yae_c00487{bottom:348.560000pt;}
.yaa_c00487{bottom:348.733333pt;}
.yad_c00487{bottom:348.933333pt;}
.ya9_c00487{bottom:349.693333pt;}
.yaf_c00487{bottom:349.706667pt;}
.ya7_c00487{bottom:363.400000pt;}
.ya6_c00487{bottom:364.933333pt;}
.ya5_c00487{bottom:365.106667pt;}
.ya2_c00487{bottom:366.066667pt;}
.ya4_c00487{bottom:367.026667pt;}
.ya3_c00487{bottom:367.973333pt;}
.ya1_c00487{bottom:382.640000pt;}
.ya0_c00487{bottom:384.360000pt;}
.y9f_c00487{bottom:385.306667pt;}
.y9d_c00487{bottom:398.440000pt;}
.y99_c00487{bottom:399.773333pt;}
.y9c_c00487{bottom:400.360000pt;}
.y9e_c00487{bottom:400.560000pt;}
.y9b_c00487{bottom:400.733333pt;}
.y9a_c00487{bottom:401.306667pt;}
.y97_c00487{bottom:401.693333pt;}
.y98_c00487{bottom:402.640000pt;}
.y93_c00487{bottom:415.773333pt;}
.y94_c00487{bottom:416.160000pt;}
.y8d_c00487{bottom:416.360000pt;}
.y8f_c00487{bottom:417.106667pt;}
.y95_c00487{bottom:417.893333pt;}
.y92_c00487{bottom:418.066667pt;}
.y96_c00487{bottom:418.640000pt;}
.y91_c00487{bottom:419.026667pt;}
.y8e_c00487{bottom:419.400000pt;}
.y90_c00487{bottom:420.360000pt;}
.y8b_c00487{bottom:434.440000pt;}
.y88_c00487{bottom:434.640000pt;}
.y8a_c00487{bottom:435.226667pt;}
.y86_c00487{bottom:435.773333pt;}
.y8c_c00487{bottom:436.360000pt;}
.y89_c00487{bottom:437.306667pt;}
.y87_c00487{bottom:437.693333pt;}
.y83_c00487{bottom:451.026667pt;}
.y82_c00487{bottom:451.773333pt;}
.y84_c00487{bottom:453.106667pt;}
.y85_c00487{bottom:453.693333pt;}
.y80_c00487{bottom:454.640000pt;}
.y81_c00487{bottom:455.973333pt;}
.y7d_c00487{bottom:470.440000pt;}
.y7f_c00487{bottom:471.026667pt;}
.y7e_c00487{bottom:471.973333pt;}
.y7c_c00487{bottom:472.360000pt;}
.y7a_c00487{bottom:485.693333pt;}
.y78_c00487{bottom:487.773333pt;}
.y7b_c00487{bottom:488.560000pt;}
.y79_c00487{bottom:489.693333pt;}
.y77_c00487{bottom:503.026667pt;}
.y74_c00487{bottom:505.106667pt;}
.y75_c00487{bottom:506.066667pt;}
.y76_c00487{bottom:507.026667pt;}
.y73_c00487{bottom:522.440000pt;}
.y71_c00487{bottom:524.360000pt;}
.y72_c00487{bottom:525.306667pt;}
.y6f_c00487{bottom:540.733333pt;}
.y6e_c00487{bottom:541.693333pt;}
.y70_c00487{bottom:542.640000pt;}
.y69_c00487{bottom:556.360000pt;}
.y6d_c00487{bottom:557.106667pt;}
.y6c_c00487{bottom:557.493333pt;}
.y6b_c00487{bottom:558.440000pt;}
.y6a_c00487{bottom:559.026667pt;}
.y67_c00487{bottom:574.440000pt;}
.y65_c00487{bottom:576.360000pt;}
.y68_c00487{bottom:577.306667pt;}
.y66_c00487{bottom:577.693333pt;}
.y61_c00487{bottom:593.106667pt;}
.y60_c00487{bottom:593.693333pt;}
.y64_c00487{bottom:593.893333pt;}
.y63_c00487{bottom:594.640000pt;}
.y62_c00487{bottom:595.026667pt;}
.y5d_c00487{bottom:610.440000pt;}
.y5f_c00487{bottom:611.400000pt;}
.y5e_c00487{bottom:611.973333pt;}
.y5c_c00487{bottom:612.360000pt;}
.y59_c00487{bottom:627.773333pt;}
.y5b_c00487{bottom:628.560000pt;}
.y5a_c00487{bottom:629.306667pt;}
.y58_c00487{bottom:629.693333pt;}
.y54_c00487{bottom:645.106667pt;}
.y56_c00487{bottom:645.893333pt;}
.y57_c00487{bottom:647.026667pt;}
.y55_c00487{bottom:647.973333pt;}
.y51_c00487{bottom:662.066667pt;}
.y50_c00487{bottom:662.440000pt;}
.y52_c00487{bottom:663.226667pt;}
.y53_c00487{bottom:663.400000pt;}
.y4e_c00487{bottom:664.360000pt;}
.y4f_c00487{bottom:664.560000pt;}
.y4a_c00487{bottom:681.106667pt;}
.y4d_c00487{bottom:681.693333pt;}
.y4c_c00487{bottom:681.893333pt;}
.y4b_c00487{bottom:683.026667pt;}
.y46_c00487{bottom:699.026667pt;}
.y48_c00487{bottom:699.226667pt;}
.y49_c00487{bottom:699.973333pt;}
.y47_c00487{bottom:700.360000pt;}
.y44_c00487{bottom:715.773333pt;}
.y45_c00487{bottom:716.360000pt;}
.y43_c00487{bottom:717.693333pt;}
.y3f_c00487{bottom:733.106667pt;}
.y42_c00487{bottom:733.893333pt;}
.y40_c00487{bottom:734.066667pt;}
.y41_c00487{bottom:735.026667pt;}
.y3d_c00487{bottom:749.106667pt;}
.y3a_c00487{bottom:750.440000pt;}
.y3e_c00487{bottom:751.026667pt;}
.y3b_c00487{bottom:751.226667pt;}
.y38_c00487{bottom:751.973333pt;}
.y39_c00487{bottom:752.360000pt;}
.y3c_c00487{bottom:753.306667pt;}
.y35_c00487{bottom:767.400000pt;}
.y37_c00487{bottom:768.560000pt;}
.y34_c00487{bottom:769.693333pt;}
.y36_c00487{bottom:770.640000pt;}
.y32_c00487{bottom:785.106667pt;}
.y30_c00487{bottom:786.066667pt;}
.y31_c00487{bottom:787.026667pt;}
.y33_c00487{bottom:787.226667pt;}
.y2d_c00487{bottom:802.440000pt;}
.y2f_c00487{bottom:804.360000pt;}
.y2c_c00487{bottom:804.560000pt;}
.y2e_c00487{bottom:805.693333pt;}
.y28_c00487{bottom:819.773333pt;}
.y29_c00487{bottom:821.106667pt;}
.y27_c00487{bottom:821.693333pt;}
.y2b_c00487{bottom:822.640000pt;}
.y2a_c00487{bottom:823.026667pt;}
.y26_c00487{bottom:837.106667pt;}
.y25_c00487{bottom:838.066667pt;}
.y24_c00487{bottom:838.440000pt;}
.y22_c00487{bottom:839.026667pt;}
.y23_c00487{bottom:839.226667pt;}
.y1f_c00487{bottom:853.693333pt;}
.y21_c00487{bottom:854.440000pt;}
.y20_c00487{bottom:855.773333pt;}
.y1c_c00487{bottom:856.360000pt;}
.y1e_c00487{bottom:857.306667pt;}
.y1d_c00487{bottom:857.693333pt;}
.y18_c00487{bottom:873.106667pt;}
.y1a_c00487{bottom:875.026667pt;}
.y19_c00487{bottom:875.040000pt;}
.y1b_c00487{bottom:875.226667pt;}
.y16_c00487{bottom:890.440000pt;}
.y17_c00487{bottom:892.360000pt;}
.y12_c00487{bottom:907.773333pt;}
.y14_c00487{bottom:908.560000pt;}
.y15_c00487{bottom:908.733333pt;}
.y13_c00487{bottom:909.693333pt;}
.y11_c00487{bottom:910.640000pt;}
.y10_c00487{bottom:925.106667pt;}
.yd_c00487{bottom:925.893333pt;}
.ye_c00487{bottom:926.066667pt;}
.yf_c00487{bottom:926.640000pt;}
.yc_c00487{bottom:927.026667pt;}
.yb_c00487{bottom:941.106667pt;}
.y6_c00487{bottom:941.693333pt;}
.y9_c00487{bottom:942.440000pt;}
.y4_c00487{bottom:943.600000pt;}
.y8_c00487{bottom:943.773333pt;}
.y7_c00487{bottom:944.360000pt;}
.y3_c00487{bottom:944.560000pt;}
.ya_c00487{bottom:945.306667pt;}
.y5_c00487{bottom:945.693333pt;}
.y1_c00487{bottom:976.360000pt;}
.y2_c00487{bottom:979.226667pt;}
.h7_c00487{height:3.739141pt;}
.h2_c00487{height:20.466875pt;}
.h3_c00487{height:22.303646pt;}
.h5_c00487{height:27.879557pt;}
.h1_c00487{height:31.618698pt;}
.h6_c00487{height:35.357839pt;}
.h4_c00487{height:39.031380pt;}
.h8_c00487{height:42.770521pt;}
.h0_c00487{height:1186.666667pt;}
.w0_c00487{width:782.666667pt;}
.x0_c00487{left:0.000000pt;}
.x1_c00487{left:133.333333pt;}
.x3_c00487{left:134.666667pt;}
.x2e_c00487{left:147.626667pt;}
.x111_c00487{left:152.000000pt;}
.x4_c00487{left:154.093333pt;}
.x90_c00487{left:159.040000pt;}
.xb9_c00487{left:160.000000pt;}
.xea_c00487{left:161.333333pt;}
.xf5_c00487{left:162.293333pt;}
.x20_c00487{left:165.333333pt;}
.x3f_c00487{left:166.293333pt;}
.x5_c00487{left:168.573333pt;}
.x7e_c00487{left:171.040000pt;}
.xcb_c00487{left:172.960000pt;}
.x5d_c00487{left:174.293333pt;}
.xa8_c00487{left:175.626667pt;}
.xb1_c00487{left:176.960000pt;}
.x72_c00487{left:179.040000pt;}
.xd3_c00487{left:180.000000pt;}
.x67_c00487{left:184.000000pt;}
.x98_c00487{left:186.666667pt;}
.xe5_c00487{left:189.333333pt;}
.x11_c00487{left:190.293333pt;}
.xdb_c00487{left:192.000000pt;}
.xa9_c00487{left:193.333333pt;}
.xd4_c00487{left:194.293333pt;}
.xeb_c00487{left:196.000000pt;}
.x86_c00487{left:196.960000pt;}
.x2c_c00487{left:198.666667pt;}
.xed_c00487{left:201.706667pt;}
.x91_c00487{left:204.960000pt;}
.x73_c00487{left:206.666667pt;}
.x40_c00487{left:208.000000pt;}
.xe1_c00487{left:211.040000pt;}
.x2d_c00487{left:214.666667pt;}
.x4b_c00487{left:216.000000pt;}
.x87_c00487{left:217.706667pt;}
.x5e_c00487{left:218.666667pt;}
.x115_c00487{left:220.960000pt;}
.x74_c00487{left:222.293333pt;}
.x10a_c00487{left:224.000000pt;}
.xee_c00487{left:224.960000pt;}
.x6_c00487{left:227.040000pt;}
.x99_c00487{left:228.000000pt;}
.xf2_c00487{left:229.333333pt;}
.x35_c00487{left:231.626667pt;}
.x68_c00487{left:233.333333pt;}
.xd5_c00487{left:235.040000pt;}
.x41_c00487{left:236.000000pt;}
.xe2_c00487{left:237.333333pt;}
.xaa_c00487{left:239.040000pt;}
.x92_c00487{left:240.373333pt;}
.x12_c00487{left:241.333333pt;}
.x21_c00487{left:244.000000pt;}
.x55_c00487{left:245.706667pt;}
.x88_c00487{left:247.040000pt;}
.x36_c00487{left:249.333333pt;}
.x69_c00487{left:251.040000pt;}
.xc1_c00487{left:253.333333pt;}
.x4c_c00487{left:254.666667pt;}
.xec_c00487{left:256.000000pt;}
.xcc_c00487{left:257.706667pt;}
.x7_c00487{left:258.666667pt;}
.x7f_c00487{left:262.666667pt;}
.x93_c00487{left:264.373333pt;}
.x75_c00487{left:267.040000pt;}
.x5f_c00487{left:269.333333pt;}
.x10b_c00487{left:270.666667pt;}
.x42_c00487{left:272.000000pt;}
.x13_c00487{left:273.706667pt;}
.x22_c00487{left:274.666667pt;}
.x37_c00487{left:276.373333pt;}
.x56_c00487{left:277.333333pt;}
.x89_c00487{left:278.293333pt;}
.xcd_c00487{left:281.333333pt;}
.xab_c00487{left:287.626667pt;}
.xc2_c00487{left:288.760000pt;}
.x8_c00487{left:289.706667pt;}
.xbe_c00487{left:292.000000pt;}
.x23_c00487{left:293.333333pt;}
.x43_c00487{left:295.040000pt;}
.x14_c00487{left:296.960000pt;}
.xfd_c00487{left:298.293333pt;}
.xf6_c00487{left:300.000000pt;}
.xba_c00487{left:301.333333pt;}
.x76_c00487{left:302.666667pt;}
.xa2_c00487{left:305.333333pt;}
.x8a_c00487{left:306.666667pt;}
.xb2_c00487{left:308.373333pt;}
.xe6_c00487{left:309.333333pt;}
.x9a_c00487{left:310.666667pt;}
.x9_c00487{left:313.333333pt;}
.x80_c00487{left:314.666667pt;}
.x60_c00487{left:317.333333pt;}
.x106_c00487{left:318.293333pt;}
.x24_c00487{left:319.626667pt;}
.x8b_c00487{left:321.706667pt;}
.xc3_c00487{left:325.333333pt;}
.xbf_c00487{left:326.293333pt;}
.x103_c00487{left:329.333333pt;}
.xce_c00487{left:330.666667pt;}
.x38_c00487{left:332.000000pt;}
.x4d_c00487{left:332.960000pt;}
.x2f_c00487{left:335.040000pt;}
.xbb_c00487{left:336.373333pt;}
.xfe_c00487{left:338.666667pt;}
.xb3_c00487{left:341.333333pt;}
.x94_c00487{left:342.666667pt;}
.x44_c00487{left:344.000000pt;}
.xa3_c00487{left:345.333333pt;}
.x77_c00487{left:346.666667pt;}
.x104_c00487{left:347.626667pt;}
.x6a_c00487{left:349.333333pt;}
.xe7_c00487{left:350.666667pt;}
.xd6_c00487{left:352.960000pt;}
.x4e_c00487{left:354.666667pt;}
.x95_c00487{left:356.000000pt;}
.x15_c00487{left:357.333333pt;}
.xc7_c00487{left:360.000000pt;}
.x2_c00487{left:361.333333pt;}
.x39_c00487{left:363.040000pt;}
.x78_c00487{left:365.333333pt;}
.x61_c00487{left:367.040000pt;}
.x25_c00487{left:368.000000pt;}
.xf7_c00487{left:370.666667pt;}
.xef_c00487{left:372.373333pt;}
.xcf_c00487{left:373.706667pt;}
.xac_c00487{left:374.666667pt;}
.xa_c00487{left:377.333333pt;}
.x4f_c00487{left:378.666667pt;}
.x6b_c00487{left:379.626667pt;}
.xc4_c00487{left:381.333333pt;}
.xa4_c00487{left:382.666667pt;}
.x81_c00487{left:384.373333pt;}
.xf8_c00487{left:385.333333pt;}
.xd7_c00487{left:386.666667pt;}
.x107_c00487{left:388.373333pt;}
.x79_c00487{left:390.293333pt;}
.xad_c00487{left:393.706667pt;}
.xbc_c00487{left:394.666667pt;}
.xdc_c00487{left:396.000000pt;}
.x6c_c00487{left:397.706667pt;}
.xc0_c00487{left:398.666667pt;}
.xf9_c00487{left:400.000000pt;}
.xff_c00487{left:402.666667pt;}
.x3a_c00487{left:404.000000pt;}
.x16_c00487{left:406.666667pt;}
.x57_c00487{left:408.373333pt;}
.x10c_c00487{left:409.706667pt;}
.x50_c00487{left:412.373333pt;}
.x45_c00487{left:416.000000pt;}
.x112_c00487{left:417.706667pt;}
.xae_c00487{left:418.666667pt;}
.x17_c00487{left:421.333333pt;}
.x6d_c00487{left:422.666667pt;}
.xe3_c00487{left:424.000000pt;}
.xb_c00487{left:425.333333pt;}
.x26_c00487{left:426.293333pt;}
.xd8_c00487{left:427.626667pt;}
.x7a_c00487{left:429.333333pt;}
.x58_c00487{left:430.666667pt;}
.x10e_c00487{left:432.000000pt;}
.x9b_c00487{left:432.960000pt;}
.x82_c00487{left:434.293333pt;}
.x51_c00487{left:435.626667pt;}
.xc_c00487{left:441.706667pt;}
.xa5_c00487{left:446.666667pt;}
.x18_c00487{left:448.373333pt;}
.xdd_c00487{left:449.706667pt;}
.x3b_c00487{left:452.000000pt;}
.x27_c00487{left:453.333333pt;}
.xb4_c00487{left:455.040000pt;}
.xbd_c00487{left:456.000000pt;}
.x6e_c00487{left:458.666667pt;}
.x7b_c00487{left:460.373333pt;}
.x30_c00487{left:461.333333pt;}
.x113_c00487{left:462.293333pt;}
.x62_c00487{left:464.000000pt;}
.xd_c00487{left:464.960000pt;}
.x3c_c00487{left:467.040000pt;}
.x9c_c00487{left:469.706667pt;}
.xd0_c00487{left:470.666667pt;}
.x46_c00487{left:472.373333pt;}
.x116_c00487{left:473.333333pt;}
.x96_c00487{left:474.293333pt;}
.x83_c00487{left:476.000000pt;}
.x63_c00487{left:478.666667pt;}
.xc8_c00487{left:479.626667pt;}
.x31_c00487{left:481.706667pt;}
.xd9_c00487{left:485.333333pt;}
.x19_c00487{left:487.626667pt;}
.x105_c00487{left:489.333333pt;}
.x100_c00487{left:492.000000pt;}
.x9d_c00487{left:493.333333pt;}
.xd1_c00487{left:495.040000pt;}
.x59_c00487{left:496.373333pt;}
.xf3_c00487{left:497.333333pt;}
.x28_c00487{left:498.666667pt;}
.x52_c00487{left:504.373333pt;}
.x1a_c00487{left:505.706667pt;}
.x32_c00487{left:506.666667pt;}
.xc9_c00487{left:507.626667pt;}
.x7c_c00487{left:509.333333pt;}
.x47_c00487{left:510.666667pt;}
.xa6_c00487{left:512.000000pt;}
.xc5_c00487{left:512.960000pt;}
.x64_c00487{left:514.666667pt;}
.x108_c00487{left:517.706667pt;}
.xe_c00487{left:518.666667pt;}
.x10f_c00487{left:519.626667pt;}
.xfa_c00487{left:523.040000pt;}
.x6f_c00487{left:524.000000pt;}
.x101_c00487{left:524.960000pt;}
.x97_c00487{left:527.040000pt;}
.xde_c00487{left:528.373333pt;}
.x1b_c00487{left:529.706667pt;}
.x9e_c00487{left:530.666667pt;}
.x29_c00487{left:531.626667pt;}
.x3d_c00487{left:532.960000pt;}
.xb5_c00487{left:535.040000pt;}
.x48_c00487{left:541.706667pt;}
.xca_c00487{left:542.666667pt;}
.x114_c00487{left:543.626667pt;}
.x5a_c00487{left:545.333333pt;}
.x33_c00487{left:547.040000pt;}
.x70_c00487{left:548.000000pt;}
.x8c_c00487{left:548.960000pt;}
.x65_c00487{left:551.626667pt;}
.x84_c00487{left:552.960000pt;}
.xdf_c00487{left:554.666667pt;}
.xf4_c00487{left:555.626667pt;}
.x5b_c00487{left:557.333333pt;}
.x1c_c00487{left:558.293333pt;}
.x2a_c00487{left:560.000000pt;}
.xda_c00487{left:560.960000pt;}
.xa7_c00487{left:562.666667pt;}
.x109_c00487{left:564.000000pt;}
.x8d_c00487{left:567.040000pt;}
.x66_c00487{left:568.000000pt;}
.xaf_c00487{left:570.666667pt;}
.x10d_c00487{left:573.333333pt;}
.x1d_c00487{left:574.666667pt;}
.x71_c00487{left:576.000000pt;}
.x9f_c00487{left:578.293333pt;}
.xe4_c00487{left:580.000000pt;}
.xe8_c00487{left:584.373333pt;}
.x1e_c00487{left:585.706667pt;}
.xb6_c00487{left:586.666667pt;}
.x53_c00487{left:588.000000pt;}
.x8e_c00487{left:590.293333pt;}
.x34_c00487{left:592.000000pt;}
.xa0_c00487{left:595.040000pt;}
.xe0_c00487{left:598.093333pt;}
.xc6_c00487{left:599.040000pt;}
.x3e_c00487{left:600.373333pt;}
.x2b_c00487{left:601.333333pt;}
.x54_c00487{left:602.666667pt;}
.x5c_c00487{left:604.373333pt;}
.xf_c00487{left:605.333333pt;}
.x49_c00487{left:607.040000pt;}
.xe9_c00487{left:608.000000pt;}
.xfb_c00487{left:609.333333pt;}
.x110_c00487{left:611.040000pt;}
.xf0_c00487{left:617.333333pt;}
.xa1_c00487{left:618.666667pt;}
.x1f_c00487{left:620.000000pt;}
.xfc_c00487{left:621.706667pt;}
.x102_c00487{left:622.666667pt;}
.xb7_c00487{left:623.626667pt;}
.x8f_c00487{left:624.960000pt;}
.xd2_c00487{left:626.666667pt;}
.x85_c00487{left:628.373333pt;}
.xb0_c00487{left:629.333333pt;}
.x4a_c00487{left:631.040000pt;}
.xf1_c00487{left:634.666667pt;}
.x10_c00487{left:635.626667pt;}
.x7d_c00487{left:638.666667pt;}
.xb8_c00487{left:641.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_670f484975e66710c0e359fd.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m98_c00488{transform:matrix(0.347866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347866,0.000000,0.000000,0.250000,0,0);}
.m87_c00488{transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);}
.mef_c00488{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.me8_c00488{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m6f_c00488{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mee_c00488{transform:matrix(0.366181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366181,0.000000,0.000000,0.250000,0,0);}
.m6b_c00488{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m97_c00488{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m78_c00488{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m75_c00488{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m5d_c00488{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.mec_c00488{transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);}
.mb6_c00488{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m80_c00488{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.mc1_c00488{transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);}
.mb1_c00488{transform:matrix(0.389187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389187,0.000000,0.000000,0.250000,0,0);}
.m74_c00488{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m16_c00488{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.mb3_c00488{transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);}
.m46_c00488{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.ma7_c00488{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m28_c00488{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m49_c00488{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m2c_c00488{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m93_c00488{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m2d_c00488{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.mb0_c00488{transform:matrix(0.399923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399923,0.000000,0.000000,0.250000,0,0);}
.m41_c00488{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m57_c00488{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m1d_c00488{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mc7_c00488{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.ma4_c00488{transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);}
.ma6_c00488{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m82_c00488{transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);}
.m62_c00488{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.ma5_c00488{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m50_c00488{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m37_c00488{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m91_c00488{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m66_c00488{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m8a_c00488{transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);}
.mdb_c00488{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.mcb_c00488{transform:matrix(0.411043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411043,0.000000,0.000000,0.250000,0,0);}
.m71_c00488{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.maa_c00488{transform:matrix(0.412193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412193,0.000000,0.000000,0.250000,0,0);}
.m8e_c00488{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.mc2_c00488{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m20_c00488{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.mbe_c00488{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.maf_c00488{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.mdd_c00488{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m35_c00488{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m54_c00488{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m8d_c00488{transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);}
.mbf_c00488{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m9b_c00488{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m48_c00488{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mab_c00488{transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);}
.m32_c00488{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m69_c00488{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m65_c00488{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.md9_c00488{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.me0_c00488{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.me_c00488{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.me3_c00488{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m5f_c00488{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m67_c00488{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mb5_c00488{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m95_c00488{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.ma2_c00488{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.ma_c00488{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m40_c00488{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m9c_c00488{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.med_c00488{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m1b_c00488{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m89_c00488{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m51_c00488{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m3a_c00488{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.mda_c00488{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.m33_c00488{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.md1_c00488{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.md7_c00488{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m90_c00488{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m26_c00488{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.mc_c00488{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.me7_c00488{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.ma3_c00488{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.mb7_c00488{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.mcf_c00488{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.mac_c00488{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m2e_c00488{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m0_c00488{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m55_c00488{transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);}
.md8_c00488{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mad_c00488{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.me9_c00488{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.m2a_c00488{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m39_c00488{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m94_c00488{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.mae_c00488{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.md_c00488{transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);}
.m1f_c00488{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m86_c00488{transform:matrix(0.470168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470168,0.000000,0.000000,0.250000,0,0);}
.m92_c00488{transform:matrix(0.471176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471176,0.000000,0.000000,0.250000,0,0);}
.m1c_c00488{transform:matrix(0.472269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472269,0.000000,0.000000,0.250000,0,0);}
.m85_c00488{transform:matrix(0.472689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472689,0.000000,0.000000,0.250000,0,0);}
.m8f_c00488{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m43_c00488{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m7a_c00488{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m29_c00488{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.mc5_c00488{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m96_c00488{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.m3f_c00488{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m12_c00488{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.me6_c00488{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m52_c00488{transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);}
.m88_c00488{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m4b_c00488{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.me2_c00488{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.mcd_c00488{transform:matrix(0.489496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489496,0.000000,0.000000,0.250000,0,0);}
.mdf_c00488{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.mb9_c00488{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m18_c00488{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m2f_c00488{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m6c_c00488{transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);}
.m4c_c00488{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m9_c00488{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_c00488{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m5e_c00488{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m7f_c00488{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m42_c00488{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.mb4_c00488{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m58_c00488{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m2b_c00488{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m83_c00488{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m5c_c00488{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m76_c00488{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m10_c00488{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m1e_c00488{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m7b_c00488{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m63_c00488{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m5b_c00488{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m59_c00488{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m3b_c00488{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.mbb_c00488{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m60_c00488{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m73_c00488{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m4a_c00488{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m24_c00488{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m5_c00488{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m81_c00488{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.mb_c00488{transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);}
.m64_c00488{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m27_c00488{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m34_c00488{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m6_c00488{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m6e_c00488{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.mce_c00488{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m19_c00488{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mb2_c00488{transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);}
.m3_c00488{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mc9_c00488{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m56_c00488{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m4_c00488{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m4d_c00488{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.mca_c00488{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mba_c00488{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m8c_c00488{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m8b_c00488{transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);}
.m9f_c00488{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.mc0_c00488{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m7c_c00488{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);}
.m4e_c00488{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.mc6_c00488{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m9a_c00488{transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);}
.mdc_c00488{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m17_c00488{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m15_c00488{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.md0_c00488{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.me4_c00488{transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);}
.mc3_c00488{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m7d_c00488{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.ma8_c00488{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.me5_c00488{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m31_c00488{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m3d_c00488{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m11_c00488{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m8_c00488{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.ma9_c00488{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m79_c00488{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m61_c00488{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m21_c00488{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.ma1_c00488{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.mc8_c00488{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.m38_c00488{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.mcc_c00488{transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);}
.m25_c00488{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.mf_c00488{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mb8_c00488{transform:matrix(0.591805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591805,0.000000,0.000000,0.250000,0,0);}
.m84_c00488{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.m3c_c00488{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m7e_c00488{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mbc_c00488{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.ma0_c00488{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mea_c00488{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m13_c00488{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m9d_c00488{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.m7_c00488{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mde_c00488{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.md3_c00488{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m30_c00488{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m72_c00488{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m1_c00488{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.md4_c00488{transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);}
.m45_c00488{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.mc4_c00488{transform:matrix(0.644710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644710,0.000000,0.000000,0.250000,0,0);}
.md2_c00488{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.mbd_c00488{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m4f_c00488{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m14_c00488{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m6d_c00488{transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);}
.m68_c00488{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m99_c00488{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.m53_c00488{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m2_c00488{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.me1_c00488{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m44_c00488{transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);}
.m9e_c00488{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m1a_c00488{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m70_c00488{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.md6_c00488{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m6a_c00488{transform:matrix(0.742788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742788,0.000000,0.000000,0.250000,0,0);}
.m36_c00488{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m77_c00488{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.md5_c00488{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m47_c00488{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m5a_c00488{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.meb_c00488{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m23_c00488{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m22_c00488{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws1_c00488{word-spacing:0.000000px;}
.ws0_c00488{word-spacing:4.509494px;}
.fc0_c00488{color:transparent;}
.fs6_c00488{font-size:3.420000px;}
.fs2_c00488{font-size:18.720000px;}
.fs1_c00488{font-size:20.400000px;}
.fs4_c00488{font-size:25.500000px;}
.fs0_c00488{font-size:28.920000px;}
.fs5_c00488{font-size:32.340000px;}
.fs3_c00488{font-size:35.700000px;}
.fs7_c00488{font-size:39.120000px;}
.y0_c00488{bottom:0.000000px;}
.yb9_c00488{bottom:253.680000px;}
.ybc_c00488{bottom:254.745000px;}
.ybb_c00488{bottom:255.825000px;}
.yba_c00488{bottom:256.920000px;}
.yb5_c00488{bottom:273.825000px;}
.yb6_c00488{bottom:274.245000px;}
.yb4_c00488{bottom:276.405000px;}
.yb7_c00488{bottom:276.630000px;}
.yb3_c00488{bottom:277.470000px;}
.yb8_c00488{bottom:277.905000px;}
.yae_c00488{bottom:293.745000px;}
.yb1_c00488{bottom:295.245000px;}
.yaf_c00488{bottom:295.470000px;}
.yad_c00488{bottom:295.905000px;}
.yb0_c00488{bottom:296.325000px;}
.yb2_c00488{bottom:297.405000px;}
.ya9_c00488{bottom:313.245000px;}
.ya8_c00488{bottom:314.550000px;}
.yaa_c00488{bottom:314.745000px;}
.ya7_c00488{bottom:315.405000px;}
.ya6_c00488{bottom:315.825000px;}
.yab_c00488{bottom:316.905000px;}
.yac_c00488{bottom:317.130000px;}
.y9f_c00488{bottom:334.245000px;}
.ya4_c00488{bottom:334.470000px;}
.ya1_c00488{bottom:335.130000px;}
.ya2_c00488{bottom:335.325000px;}
.ya3_c00488{bottom:335.970000px;}
.ya0_c00488{bottom:336.405000px;}
.ya5_c00488{bottom:337.470000px;}
.y9c_c00488{bottom:353.325000px;}
.y9d_c00488{bottom:353.745000px;}
.y9b_c00488{bottom:354.630000px;}
.y99_c00488{bottom:355.905000px;}
.y9e_c00488{bottom:356.130000px;}
.y9a_c00488{bottom:356.970000px;}
.y96_c00488{bottom:370.905000px;}
.y97_c00488{bottom:371.745000px;}
.y94_c00488{bottom:373.245000px;}
.y93_c00488{bottom:373.905000px;}
.y98_c00488{bottom:374.130000px;}
.y95_c00488{bottom:375.405000px;}
.y90_c00488{bottom:391.470000px;}
.y92_c00488{bottom:391.680000px;}
.y8e_c00488{bottom:392.745000px;}
.y91_c00488{bottom:393.630000px;}
.y8d_c00488{bottom:393.825000px;}
.y8f_c00488{bottom:394.905000px;}
.y8b_c00488{bottom:412.245000px;}
.y8a_c00488{bottom:412.680000px;}
.y89_c00488{bottom:413.745000px;}
.y8c_c00488{bottom:414.405000px;}
.y88_c00488{bottom:415.905000px;}
.y86_c00488{bottom:431.325000px;}
.y87_c00488{bottom:431.745000px;}
.y85_c00488{bottom:432.630000px;}
.y81_c00488{bottom:432.825000px;}
.y83_c00488{bottom:433.470000px;}
.y82_c00488{bottom:433.905000px;}
.y84_c00488{bottom:434.970000px;}
.y7d_c00488{bottom:451.245000px;}
.y80_c00488{bottom:452.970000px;}
.y7f_c00488{bottom:453.405000px;}
.y7e_c00488{bottom:453.630000px;}
.y7c_c00488{bottom:454.470000px;}
.y7a_c00488{bottom:471.180000px;}
.y7b_c00488{bottom:473.325000px;}
.y79_c00488{bottom:473.970000px;}
.y78_c00488{bottom:474.405000px;}
.y77_c00488{bottom:491.325000px;}
.y75_c00488{bottom:491.745000px;}
.y76_c00488{bottom:493.905000px;}
.y74_c00488{bottom:509.745000px;}
.y6f_c00488{bottom:511.245000px;}
.y73_c00488{bottom:512.130000px;}
.y71_c00488{bottom:513.405000px;}
.y72_c00488{bottom:514.470000px;}
.y70_c00488{bottom:514.920000px;}
.y6b_c00488{bottom:539.325000px;}
.y6e_c00488{bottom:539.550000px;}
.y6c_c00488{bottom:540.405000px;}
.y6d_c00488{bottom:540.630000px;}
.y6a_c00488{bottom:541.470000px;}
.y66_c00488{bottom:563.970000px;}
.y67_c00488{bottom:564.825000px;}
.y65_c00488{bottom:565.905000px;}
.y69_c00488{bottom:566.970000px;}
.y68_c00488{bottom:568.050000px;}
.y64_c00488{bottom:593.745000px;}
.y62_c00488{bottom:631.905000px;}
.y63_c00488{bottom:633.405000px;}
.y5e_c00488{bottom:686.745000px;}
.y61_c00488{bottom:687.405000px;}
.y5f_c00488{bottom:687.825000px;}
.y5a_c00488{bottom:688.905000px;}
.y5d_c00488{bottom:689.130000px;}
.y60_c00488{bottom:689.325000px;}
.y5c_c00488{bottom:689.970000px;}
.y5b_c00488{bottom:690.405000px;}
.y55_c00488{bottom:705.405000px;}
.y58_c00488{bottom:707.745000px;}
.y59_c00488{bottom:708.405000px;}
.y57_c00488{bottom:708.630000px;}
.y56_c00488{bottom:709.470000px;}
.y54_c00488{bottom:709.905000px;}
.y52_c00488{bottom:724.905000px;}
.y53_c00488{bottom:725.970000px;}
.y51_c00488{bottom:727.245000px;}
.y50_c00488{bottom:728.130000px;}
.y4e_c00488{bottom:728.970000px;}
.y4f_c00488{bottom:729.405000px;}
.y4d_c00488{bottom:730.470000px;}
.y4c_c00488{bottom:746.325000px;}
.y4a_c00488{bottom:746.745000px;}
.y4b_c00488{bottom:747.405000px;}
.y48_c00488{bottom:748.470000px;}
.y49_c00488{bottom:748.905000px;}
.y47_c00488{bottom:766.245000px;}
.y44_c00488{bottom:767.970000px;}
.y45_c00488{bottom:768.405000px;}
.y46_c00488{bottom:768.630000px;}
.y41_c00488{bottom:785.745000px;}
.y42_c00488{bottom:786.825000px;}
.y3e_c00488{bottom:787.470000px;}
.y40_c00488{bottom:787.905000px;}
.y3f_c00488{bottom:788.130000px;}
.y43_c00488{bottom:788.970000px;}
.y3c_c00488{bottom:805.245000px;}
.y3b_c00488{bottom:807.405000px;}
.y3d_c00488{bottom:808.470000px;}
.y3a_c00488{bottom:824.745000px;}
.y39_c00488{bottom:826.245000px;}
.y38_c00488{bottom:826.905000px;}
.y36_c00488{bottom:844.245000px;}
.y37_c00488{bottom:845.745000px;}
.y35_c00488{bottom:846.405000px;}
.y34_c00488{bottom:846.630000px;}
.y33_c00488{bottom:847.905000px;}
.y32_c00488{bottom:862.905000px;}
.y30_c00488{bottom:865.245000px;}
.y2f_c00488{bottom:866.130000px;}
.y31_c00488{bottom:866.325000px;}
.y2e_c00488{bottom:867.405000px;}
.y2d_c00488{bottom:883.245000px;}
.y2c_c00488{bottom:885.630000px;}
.y2b_c00488{bottom:886.905000px;}
.y2a_c00488{bottom:904.245000px;}
.y28_c00488{bottom:923.325000px;}
.y25_c00488{bottom:923.745000px;}
.y26_c00488{bottom:925.905000px;}
.y29_c00488{bottom:926.130000px;}
.y27_c00488{bottom:926.970000px;}
.y21_c00488{bottom:943.245000px;}
.y23_c00488{bottom:944.325000px;}
.y22_c00488{bottom:945.405000px;}
.y24_c00488{bottom:946.470000px;}
.y20_c00488{bottom:962.970000px;}
.y1f_c00488{bottom:963.825000px;}
.y1c_c00488{bottom:964.245000px;}
.y1e_c00488{bottom:964.905000px;}
.y1d_c00488{bottom:965.130000px;}
.y19_c00488{bottom:981.405000px;}
.y17_c00488{bottom:983.745000px;}
.y1b_c00488{bottom:984.405000px;}
.y18_c00488{bottom:984.825000px;}
.y16_c00488{bottom:985.905000px;}
.y1a_c00488{bottom:986.970000px;}
.y15_c00488{bottom:1001.745000px;}
.y13_c00488{bottom:1001.970000px;}
.y14_c00488{bottom:1002.825000px;}
.y12_c00488{bottom:1003.905000px;}
.y10_c00488{bottom:1004.970000px;}
.y11_c00488{bottom:1005.420000px;}
.ye_c00488{bottom:1020.405000px;}
.yf_c00488{bottom:1021.905000px;}
.yd_c00488{bottom:1022.745000px;}
.y8_c00488{bottom:1042.245000px;}
.yc_c00488{bottom:1043.130000px;}
.ya_c00488{bottom:1043.325000px;}
.yb_c00488{bottom:1043.970000px;}
.y9_c00488{bottom:1044.405000px;}
.y6_c00488{bottom:1060.470000px;}
.y5_c00488{bottom:1061.745000px;}
.y7_c00488{bottom:1062.825000px;}
.y4_c00488{bottom:1063.905000px;}
.y3_c00488{bottom:1064.130000px;}
.y1_c00488{bottom:1099.905000px;}
.y2_c00488{bottom:1102.050000px;}
.h7_c00488{height:4.206533px;}
.h3_c00488{height:23.025234px;}
.h2_c00488{height:25.091602px;}
.h5_c00488{height:31.364502px;}
.h1_c00488{height:35.571035px;}
.h6_c00488{height:39.777568px;}
.h4_c00488{height:43.910303px;}
.h8_c00488{height:48.116836px;}
.h0_c00488{height:1335.000000px;}
.w0_c00488{width:880.500000px;}
.x0_c00488{left:0.000000px;}
.x3_c00488{left:151.500000px;}
.x8c_c00488{left:153.000000px;}
.xc6_c00488{left:154.920000px;}
.x24_c00488{left:168.000000px;}
.x91_c00488{left:169.500000px;}
.x30_c00488{left:170.580000px;}
.x83_c00488{left:172.080000px;}
.x9f_c00488{left:175.920000px;}
.x73_c00488{left:179.580000px;}
.x4_c00488{left:181.500000px;}
.x62_c00488{left:183.000000px;}
.xd6_c00488{left:186.000000px;}
.x96_c00488{left:188.580000px;}
.x8d_c00488{left:192.420000px;}
.xb6_c00488{left:193.500000px;}
.x58_c00488{left:201.420000px;}
.x63_c00488{left:202.500000px;}
.x7b_c00488{left:205.500000px;}
.x10_c00488{left:208.500000px;}
.x97_c00488{left:210.000000px;}
.xbb_c00488{left:211.920000px;}
.x31_c00488{left:214.500000px;}
.x1f_c00488{left:216.000000px;}
.x6c_c00488{left:217.500000px;}
.x8e_c00488{left:219.000000px;}
.x46_c00488{left:220.500000px;}
.x3c_c00488{left:223.500000px;}
.xe4_c00488{left:226.080000px;}
.x50_c00488{left:227.580000px;}
.xa7_c00488{left:229.920000px;}
.xc7_c00488{left:231.000000px;}
.xa0_c00488{left:232.500000px;}
.xdc_c00488{left:234.000000px;}
.xc2_c00488{left:235.920000px;}
.x25_c00488{left:237.000000px;}
.x3d_c00488{left:238.500000px;}
.x11_c00488{left:243.420000px;}
.x51_c00488{left:249.000000px;}
.xd1_c00488{left:250.080000px;}
.xd7_c00488{left:252.420000px;}
.x8f_c00488{left:253.920000px;}
.x84_c00488{left:255.000000px;}
.xa8_c00488{left:256.500000px;}
.x26_c00488{left:258.000000px;}
.x5_c00488{left:259.920000px;}
.xa1_c00488{left:261.000000px;}
.x7c_c00488{left:262.500000px;}
.xe5_c00488{left:265.080000px;}
.x20_c00488{left:266.580000px;}
.x12_c00488{left:269.580000px;}
.xbc_c00488{left:271.500000px;}
.x47_c00488{left:273.420000px;}
.xb7_c00488{left:275.580000px;}
.x32_c00488{left:279.420000px;}
.x92_c00488{left:280.920000px;}
.x6d_c00488{left:282.420000px;}
.x3e_c00488{left:283.920000px;}
.xaf_c00488{left:285.000000px;}
.x64_c00488{left:292.500000px;}
.xf0_c00488{left:294.000000px;}
.x59_c00488{left:295.080000px;}
.x6_c00488{left:297.420000px;}
.x48_c00488{left:300.420000px;}
.xca_c00488{left:301.500000px;}
.x13_c00488{left:302.580000px;}
.xb0_c00488{left:304.080000px;}
.xd2_c00488{left:306.000000px;}
.xc3_c00488{left:307.920000px;}
.x6e_c00488{left:309.420000px;}
.x27_c00488{left:310.920000px;}
.x52_c00488{left:316.500000px;}
.x98_c00488{left:317.580000px;}
.x14_c00488{left:319.920000px;}
.xa2_c00488{left:321.000000px;}
.x7_c00488{left:322.500000px;}
.x3f_c00488{left:324.420000px;}
.x7d_c00488{left:325.500000px;}
.xad_c00488{left:327.645000px;}
.x90_c00488{left:330.420000px;}
.x74_c00488{left:331.920000px;}
.xea_c00488{left:333.420000px;}
.xf1_c00488{left:334.920000px;}
.x21_c00488{left:336.420000px;}
.x33_c00488{left:337.920000px;}
.x5a_c00488{left:339.000000px;}
.xc8_c00488{left:343.080000px;}
.x15_c00488{left:346.500000px;}
.xf5_c00488{left:347.775000px;}
.xb1_c00488{left:349.080000px;}
.x65_c00488{left:351.000000px;}
.x40_c00488{left:353.580000px;}
.x49_c00488{left:355.500000px;}
.x75_c00488{left:358.500000px;}
.xeb_c00488{left:360.000000px;}
.x53_c00488{left:361.500000px;}
.xbd_c00488{left:364.500000px;}
.x8_c00488{left:366.000000px;}
.xb2_c00488{left:371.355000px;}
.xa9_c00488{left:373.080000px;}
.x28_c00488{left:375.420000px;}
.x5b_c00488{left:376.500000px;}
.x22_c00488{left:378.420000px;}
.x93_c00488{left:382.920000px;}
.x9_c00488{left:384.420000px;}
.x66_c00488{left:386.580000px;}
.x16_c00488{left:388.500000px;}
.xae_c00488{left:390.000000px;}
.xd8_c00488{left:391.080000px;}
.x76_c00488{left:394.080000px;}
.xb3_c00488{left:396.000000px;}
.x5c_c00488{left:399.000000px;}
.x29_c00488{left:400.500000px;}
.x34_c00488{left:403.920000px;}
.x2_c00488{left:405.000000px;}
.x7e_c00488{left:406.500000px;}
.x4a_c00488{left:408.000000px;}
.xcb_c00488{left:409.080000px;}
.x23_c00488{left:411.420000px;}
.xdd_c00488{left:412.920000px;}
.x17_c00488{left:417.000000px;}
.x67_c00488{left:420.000000px;}
.xc4_c00488{left:421.500000px;}
.xa_c00488{left:422.580000px;}
.x4b_c00488{left:424.500000px;}
.x77_c00488{left:426.420000px;}
.x6f_c00488{left:427.500000px;}
.x99_c00488{left:430.080000px;}
.xe1_c00488{left:433.920000px;}
.x18_c00488{left:435.420000px;}
.xde_c00488{left:438.420000px;}
.xa3_c00488{left:439.920000px;}
.xb_c00488{left:441.420000px;}
.x35_c00488{left:445.500000px;}
.xec_c00488{left:447.000000px;}
.xf2_c00488{left:449.580000px;}
.x5d_c00488{left:451.500000px;}
.xe7_c00488{left:453.000000px;}
.x2a_c00488{left:455.580000px;}
.x9a_c00488{left:459.000000px;}
.x19_c00488{left:461.580000px;}
.xe2_c00488{left:463.500000px;}
.x36_c00488{left:465.420000px;}
.xc_c00488{left:468.000000px;}
.x68_c00488{left:474.420000px;}
.xbe_c00488{left:475.500000px;}
.x9b_c00488{left:478.500000px;}
.xcc_c00488{left:481.080000px;}
.x85_c00488{left:482.775000px;}
.xa4_c00488{left:487.500000px;}
.xb8_c00488{left:488.580000px;}
.x37_c00488{left:493.080000px;}
.xaa_c00488{left:499.080000px;}
.x41_c00488{left:500.580000px;}
.x69_c00488{left:501.645000px;}
.xed_c00488{left:502.920000px;}
.x7f_c00488{left:504.420000px;}
.xbf_c00488{left:507.420000px;}
.x70_c00488{left:508.500000px;}
.xf4_c00488{left:511.500000px;}
.x94_c00488{left:513.000000px;}
.xb9_c00488{left:516.855000px;}
.x4c_c00488{left:522.000000px;}
.x86_c00488{left:523.920000px;}
.x54_c00488{left:525.000000px;}
.x2b_c00488{left:526.500000px;}
.xcd_c00488{left:528.000000px;}
.xee_c00488{left:530.355000px;}
.xd3_c00488{left:535.500000px;}
.xba_c00488{left:538.920000px;}
.x9c_c00488{left:541.500000px;}
.xab_c00488{left:543.000000px;}
.x55_c00488{left:544.500000px;}
.x38_c00488{left:547.500000px;}
.x87_c00488{left:549.420000px;}
.x80_c00488{left:552.000000px;}
.xd_c00488{left:553.080000px;}
.x42_c00488{left:555.420000px;}
.xc9_c00488{left:556.500000px;}
.xb4_c00488{left:559.080000px;}
.xd9_c00488{left:562.920000px;}
.x4d_c00488{left:565.080000px;}
.x78_c00488{left:566.580000px;}
.x1a_c00488{left:568.500000px;}
.xce_c00488{left:570.000000px;}
.x71_c00488{left:572.580000px;}
.x5e_c00488{left:574.500000px;}
.x88_c00488{left:576.420000px;}
.xb5_c00488{left:580.920000px;}
.xe8_c00488{left:583.500000px;}
.xe6_c00488{left:585.000000px;}
.xd4_c00488{left:586.920000px;}
.x6a_c00488{left:588.420000px;}
.x5f_c00488{left:589.500000px;}
.xac_c00488{left:590.580000px;}
.x2c_c00488{left:594.000000px;}
.x56_c00488{left:595.920000px;}
.xdf_c00488{left:598.500000px;}
.x79_c00488{left:600.420000px;}
.xda_c00488{left:601.920000px;}
.xc5_c00488{left:604.080000px;}
.xe_c00488{left:607.920000px;}
.x39_c00488{left:610.080000px;}
.x1b_c00488{left:613.500000px;}
.x43_c00488{left:616.920000px;}
.x9d_c00488{left:619.920000px;}
.xa5_c00488{left:622.080000px;}
.x95_c00488{left:623.775000px;}
.xe3_c00488{left:625.920000px;}
.x2d_c00488{left:628.920000px;}
.xc0_c00488{left:633.420000px;}
.x57_c00488{left:634.920000px;}
.x81_c00488{left:636.000000px;}
.x89_c00488{left:642.000000px;}
.xd5_c00488{left:646.500000px;}
.x9e_c00488{left:648.420000px;}
.x72_c00488{left:650.775000px;}
.x3a_c00488{left:652.080000px;}
.x2e_c00488{left:657.000000px;}
.x1c_c00488{left:658.080000px;}
.xcf_c00488{left:660.000000px;}
.xe0_c00488{left:661.080000px;}
.x4e_c00488{left:662.580000px;}
.xf_c00488{left:664.500000px;}
.x44_c00488{left:666.420000px;}
.xa6_c00488{left:669.000000px;}
.x60_c00488{left:675.000000px;}
.x82_c00488{left:678.000000px;}
.xf3_c00488{left:680.580000px;}
.xe9_c00488{left:684.000000px;}
.x8a_c00488{left:685.080000px;}
.x6b_c00488{left:689.580000px;}
.x2f_c00488{left:691.500000px;}
.x4f_c00488{left:692.580000px;}
.x1d_c00488{left:694.500000px;}
.x7a_c00488{left:697.920000px;}
.xef_c00488{left:699.000000px;}
.x3b_c00488{left:702.000000px;}
.x1_c00488{left:703.500000px;}
.x45_c00488{left:706.500000px;}
.x61_c00488{left:708.000000px;}
.xc1_c00488{left:709.920000px;}
.xdb_c00488{left:711.000000px;}
.x1e_c00488{left:712.500000px;}
.x8b_c00488{left:715.500000px;}
.xd0_c00488{left:718.080000px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.ls0_c00488{letter-spacing:0.000000pt;}
.ws1_c00488{word-spacing:0.000000pt;}
.ws0_c00488{word-spacing:4.008439pt;}
.fs6_c00488{font-size:3.040000pt;}
.fs2_c00488{font-size:16.640000pt;}
.fs1_c00488{font-size:18.133333pt;}
.fs4_c00488{font-size:22.666667pt;}
.fs0_c00488{font-size:25.706667pt;}
.fs5_c00488{font-size:28.746667pt;}
.fs3_c00488{font-size:31.733333pt;}
.fs7_c00488{font-size:34.773333pt;}
.y0_c00488{bottom:0.000000pt;}
.yb9_c00488{bottom:225.493333pt;}
.ybc_c00488{bottom:226.440000pt;}
.ybb_c00488{bottom:227.400000pt;}
.yba_c00488{bottom:228.373333pt;}
.yb5_c00488{bottom:243.400000pt;}
.yb6_c00488{bottom:243.773333pt;}
.yb4_c00488{bottom:245.693333pt;}
.yb7_c00488{bottom:245.893333pt;}
.yb3_c00488{bottom:246.640000pt;}
.yb8_c00488{bottom:247.026667pt;}
.yae_c00488{bottom:261.106667pt;}
.yb1_c00488{bottom:262.440000pt;}
.yaf_c00488{bottom:262.640000pt;}
.yad_c00488{bottom:263.026667pt;}
.yb0_c00488{bottom:263.400000pt;}
.yb2_c00488{bottom:264.360000pt;}
.ya9_c00488{bottom:278.440000pt;}
.ya8_c00488{bottom:279.600000pt;}
.yaa_c00488{bottom:279.773333pt;}
.ya7_c00488{bottom:280.360000pt;}
.ya6_c00488{bottom:280.733333pt;}
.yab_c00488{bottom:281.693333pt;}
.yac_c00488{bottom:281.893333pt;}
.y9f_c00488{bottom:297.106667pt;}
.ya4_c00488{bottom:297.306667pt;}
.ya1_c00488{bottom:297.893333pt;}
.ya2_c00488{bottom:298.066667pt;}
.ya3_c00488{bottom:298.640000pt;}
.ya0_c00488{bottom:299.026667pt;}
.ya5_c00488{bottom:299.973333pt;}
.y9c_c00488{bottom:314.066667pt;}
.y9d_c00488{bottom:314.440000pt;}
.y9b_c00488{bottom:315.226667pt;}
.y99_c00488{bottom:316.360000pt;}
.y9e_c00488{bottom:316.560000pt;}
.y9a_c00488{bottom:317.306667pt;}
.y96_c00488{bottom:329.693333pt;}
.y97_c00488{bottom:330.440000pt;}
.y94_c00488{bottom:331.773333pt;}
.y93_c00488{bottom:332.360000pt;}
.y98_c00488{bottom:332.560000pt;}
.y95_c00488{bottom:333.693333pt;}
.y90_c00488{bottom:347.973333pt;}
.y92_c00488{bottom:348.160000pt;}
.y8e_c00488{bottom:349.106667pt;}
.y91_c00488{bottom:349.893333pt;}
.y8d_c00488{bottom:350.066667pt;}
.y8f_c00488{bottom:351.026667pt;}
.y8b_c00488{bottom:366.440000pt;}
.y8a_c00488{bottom:366.826667pt;}
.y89_c00488{bottom:367.773333pt;}
.y8c_c00488{bottom:368.360000pt;}
.y88_c00488{bottom:369.693333pt;}
.y86_c00488{bottom:383.400000pt;}
.y87_c00488{bottom:383.773333pt;}
.y85_c00488{bottom:384.560000pt;}
.y81_c00488{bottom:384.733333pt;}
.y83_c00488{bottom:385.306667pt;}
.y82_c00488{bottom:385.693333pt;}
.y84_c00488{bottom:386.640000pt;}
.y7d_c00488{bottom:401.106667pt;}
.y80_c00488{bottom:402.640000pt;}
.y7f_c00488{bottom:403.026667pt;}
.y7e_c00488{bottom:403.226667pt;}
.y7c_c00488{bottom:403.973333pt;}
.y7a_c00488{bottom:418.826667pt;}
.y7b_c00488{bottom:420.733333pt;}
.y79_c00488{bottom:421.306667pt;}
.y78_c00488{bottom:421.693333pt;}
.y77_c00488{bottom:436.733333pt;}
.y75_c00488{bottom:437.106667pt;}
.y76_c00488{bottom:439.026667pt;}
.y74_c00488{bottom:453.106667pt;}
.y6f_c00488{bottom:454.440000pt;}
.y73_c00488{bottom:455.226667pt;}
.y71_c00488{bottom:456.360000pt;}
.y72_c00488{bottom:457.306667pt;}
.y70_c00488{bottom:457.706667pt;}
.y6b_c00488{bottom:479.400000pt;}
.y6e_c00488{bottom:479.600000pt;}
.y6c_c00488{bottom:480.360000pt;}
.y6d_c00488{bottom:480.560000pt;}
.y6a_c00488{bottom:481.306667pt;}
.y66_c00488{bottom:501.306667pt;}
.y67_c00488{bottom:502.066667pt;}
.y65_c00488{bottom:503.026667pt;}
.y69_c00488{bottom:503.973333pt;}
.y68_c00488{bottom:504.933333pt;}
.y64_c00488{bottom:527.773333pt;}
.y62_c00488{bottom:561.693333pt;}
.y63_c00488{bottom:563.026667pt;}
.y5e_c00488{bottom:610.440000pt;}
.y61_c00488{bottom:611.026667pt;}
.y5f_c00488{bottom:611.400000pt;}
.y5a_c00488{bottom:612.360000pt;}
.y5d_c00488{bottom:612.560000pt;}
.y60_c00488{bottom:612.733333pt;}
.y5c_c00488{bottom:613.306667pt;}
.y5b_c00488{bottom:613.693333pt;}
.y55_c00488{bottom:627.026667pt;}
.y58_c00488{bottom:629.106667pt;}
.y59_c00488{bottom:629.693333pt;}
.y57_c00488{bottom:629.893333pt;}
.y56_c00488{bottom:630.640000pt;}
.y54_c00488{bottom:631.026667pt;}
.y52_c00488{bottom:644.360000pt;}
.y53_c00488{bottom:645.306667pt;}
.y51_c00488{bottom:646.440000pt;}
.y50_c00488{bottom:647.226667pt;}
.y4e_c00488{bottom:647.973333pt;}
.y4f_c00488{bottom:648.360000pt;}
.y4d_c00488{bottom:649.306667pt;}
.y4c_c00488{bottom:663.400000pt;}
.y4a_c00488{bottom:663.773333pt;}
.y4b_c00488{bottom:664.360000pt;}
.y48_c00488{bottom:665.306667pt;}
.y49_c00488{bottom:665.693333pt;}
.y47_c00488{bottom:681.106667pt;}
.y44_c00488{bottom:682.640000pt;}
.y45_c00488{bottom:683.026667pt;}
.y46_c00488{bottom:683.226667pt;}
.y41_c00488{bottom:698.440000pt;}
.y42_c00488{bottom:699.400000pt;}
.y3e_c00488{bottom:699.973333pt;}
.y40_c00488{bottom:700.360000pt;}
.y3f_c00488{bottom:700.560000pt;}
.y43_c00488{bottom:701.306667pt;}
.y3c_c00488{bottom:715.773333pt;}
.y3b_c00488{bottom:717.693333pt;}
.y3d_c00488{bottom:718.640000pt;}
.y3a_c00488{bottom:733.106667pt;}
.y39_c00488{bottom:734.440000pt;}
.y38_c00488{bottom:735.026667pt;}
.y36_c00488{bottom:750.440000pt;}
.y37_c00488{bottom:751.773333pt;}
.y35_c00488{bottom:752.360000pt;}
.y34_c00488{bottom:752.560000pt;}
.y33_c00488{bottom:753.693333pt;}
.y32_c00488{bottom:767.026667pt;}
.y30_c00488{bottom:769.106667pt;}
.y2f_c00488{bottom:769.893333pt;}
.y31_c00488{bottom:770.066667pt;}
.y2e_c00488{bottom:771.026667pt;}
.y2d_c00488{bottom:785.106667pt;}
.y2c_c00488{bottom:787.226667pt;}
.y2b_c00488{bottom:788.360000pt;}
.y2a_c00488{bottom:803.773333pt;}
.y28_c00488{bottom:820.733333pt;}
.y25_c00488{bottom:821.106667pt;}
.y26_c00488{bottom:823.026667pt;}
.y29_c00488{bottom:823.226667pt;}
.y27_c00488{bottom:823.973333pt;}
.y21_c00488{bottom:838.440000pt;}
.y23_c00488{bottom:839.400000pt;}
.y22_c00488{bottom:840.360000pt;}
.y24_c00488{bottom:841.306667pt;}
.y20_c00488{bottom:855.973333pt;}
.y1f_c00488{bottom:856.733333pt;}
.y1c_c00488{bottom:857.106667pt;}
.y1e_c00488{bottom:857.693333pt;}
.y1d_c00488{bottom:857.893333pt;}
.y19_c00488{bottom:872.360000pt;}
.y17_c00488{bottom:874.440000pt;}
.y1b_c00488{bottom:875.026667pt;}
.y18_c00488{bottom:875.400000pt;}
.y16_c00488{bottom:876.360000pt;}
.y1a_c00488{bottom:877.306667pt;}
.y15_c00488{bottom:890.440000pt;}
.y13_c00488{bottom:890.640000pt;}
.y14_c00488{bottom:891.400000pt;}
.y12_c00488{bottom:892.360000pt;}
.y10_c00488{bottom:893.306667pt;}
.y11_c00488{bottom:893.706667pt;}
.ye_c00488{bottom:907.026667pt;}
.yf_c00488{bottom:908.360000pt;}
.yd_c00488{bottom:909.106667pt;}
.y8_c00488{bottom:926.440000pt;}
.yc_c00488{bottom:927.226667pt;}
.ya_c00488{bottom:927.400000pt;}
.yb_c00488{bottom:927.973333pt;}
.y9_c00488{bottom:928.360000pt;}
.y6_c00488{bottom:942.640000pt;}
.y5_c00488{bottom:943.773333pt;}
.y7_c00488{bottom:944.733333pt;}
.y4_c00488{bottom:945.693333pt;}
.y3_c00488{bottom:945.893333pt;}
.y1_c00488{bottom:977.693333pt;}
.y2_c00488{bottom:979.600000pt;}
.h7_c00488{height:3.739141pt;}
.h3_c00488{height:20.466875pt;}
.h2_c00488{height:22.303646pt;}
.h5_c00488{height:27.879557pt;}
.h1_c00488{height:31.618698pt;}
.h6_c00488{height:35.357839pt;}
.h4_c00488{height:39.031380pt;}
.h8_c00488{height:42.770521pt;}
.h0_c00488{height:1186.666667pt;}
.w0_c00488{width:782.666667pt;}
.x0_c00488{left:0.000000pt;}
.x3_c00488{left:134.666667pt;}
.x8c_c00488{left:136.000000pt;}
.xc6_c00488{left:137.706667pt;}
.x24_c00488{left:149.333333pt;}
.x91_c00488{left:150.666667pt;}
.x30_c00488{left:151.626667pt;}
.x83_c00488{left:152.960000pt;}
.x9f_c00488{left:156.373333pt;}
.x73_c00488{left:159.626667pt;}
.x4_c00488{left:161.333333pt;}
.x62_c00488{left:162.666667pt;}
.xd6_c00488{left:165.333333pt;}
.x96_c00488{left:167.626667pt;}
.x8d_c00488{left:171.040000pt;}
.xb6_c00488{left:172.000000pt;}
.x58_c00488{left:179.040000pt;}
.x63_c00488{left:180.000000pt;}
.x7b_c00488{left:182.666667pt;}
.x10_c00488{left:185.333333pt;}
.x97_c00488{left:186.666667pt;}
.xbb_c00488{left:188.373333pt;}
.x31_c00488{left:190.666667pt;}
.x1f_c00488{left:192.000000pt;}
.x6c_c00488{left:193.333333pt;}
.x8e_c00488{left:194.666667pt;}
.x46_c00488{left:196.000000pt;}
.x3c_c00488{left:198.666667pt;}
.xe4_c00488{left:200.960000pt;}
.x50_c00488{left:202.293333pt;}
.xa7_c00488{left:204.373333pt;}
.xc7_c00488{left:205.333333pt;}
.xa0_c00488{left:206.666667pt;}
.xdc_c00488{left:208.000000pt;}
.xc2_c00488{left:209.706667pt;}
.x25_c00488{left:210.666667pt;}
.x3d_c00488{left:212.000000pt;}
.x11_c00488{left:216.373333pt;}
.x51_c00488{left:221.333333pt;}
.xd1_c00488{left:222.293333pt;}
.xd7_c00488{left:224.373333pt;}
.x8f_c00488{left:225.706667pt;}
.x84_c00488{left:226.666667pt;}
.xa8_c00488{left:228.000000pt;}
.x26_c00488{left:229.333333pt;}
.x5_c00488{left:231.040000pt;}
.xa1_c00488{left:232.000000pt;}
.x7c_c00488{left:233.333333pt;}
.xe5_c00488{left:235.626667pt;}
.x20_c00488{left:236.960000pt;}
.x12_c00488{left:239.626667pt;}
.xbc_c00488{left:241.333333pt;}
.x47_c00488{left:243.040000pt;}
.xb7_c00488{left:244.960000pt;}
.x32_c00488{left:248.373333pt;}
.x92_c00488{left:249.706667pt;}
.x6d_c00488{left:251.040000pt;}
.x3e_c00488{left:252.373333pt;}
.xaf_c00488{left:253.333333pt;}
.x64_c00488{left:260.000000pt;}
.xf0_c00488{left:261.333333pt;}
.x59_c00488{left:262.293333pt;}
.x6_c00488{left:264.373333pt;}
.x48_c00488{left:267.040000pt;}
.xca_c00488{left:268.000000pt;}
.x13_c00488{left:268.960000pt;}
.xb0_c00488{left:270.293333pt;}
.xd2_c00488{left:272.000000pt;}
.xc3_c00488{left:273.706667pt;}
.x6e_c00488{left:275.040000pt;}
.x27_c00488{left:276.373333pt;}
.x52_c00488{left:281.333333pt;}
.x98_c00488{left:282.293333pt;}
.x14_c00488{left:284.373333pt;}
.xa2_c00488{left:285.333333pt;}
.x7_c00488{left:286.666667pt;}
.x3f_c00488{left:288.373333pt;}
.x7d_c00488{left:289.333333pt;}
.xad_c00488{left:291.240000pt;}
.x90_c00488{left:293.706667pt;}
.x74_c00488{left:295.040000pt;}
.xea_c00488{left:296.373333pt;}
.xf1_c00488{left:297.706667pt;}
.x21_c00488{left:299.040000pt;}
.x33_c00488{left:300.373333pt;}
.x5a_c00488{left:301.333333pt;}
.xc8_c00488{left:304.960000pt;}
.x15_c00488{left:308.000000pt;}
.xf5_c00488{left:309.133333pt;}
.xb1_c00488{left:310.293333pt;}
.x65_c00488{left:312.000000pt;}
.x40_c00488{left:314.293333pt;}
.x49_c00488{left:316.000000pt;}
.x75_c00488{left:318.666667pt;}
.xeb_c00488{left:320.000000pt;}
.x53_c00488{left:321.333333pt;}
.xbd_c00488{left:324.000000pt;}
.x8_c00488{left:325.333333pt;}
.xb2_c00488{left:330.093333pt;}
.xa9_c00488{left:331.626667pt;}
.x28_c00488{left:333.706667pt;}
.x5b_c00488{left:334.666667pt;}
.x22_c00488{left:336.373333pt;}
.x93_c00488{left:340.373333pt;}
.x9_c00488{left:341.706667pt;}
.x66_c00488{left:343.626667pt;}
.x16_c00488{left:345.333333pt;}
.xae_c00488{left:346.666667pt;}
.xd8_c00488{left:347.626667pt;}
.x76_c00488{left:350.293333pt;}
.xb3_c00488{left:352.000000pt;}
.x5c_c00488{left:354.666667pt;}
.x29_c00488{left:356.000000pt;}
.x34_c00488{left:359.040000pt;}
.x2_c00488{left:360.000000pt;}
.x7e_c00488{left:361.333333pt;}
.x4a_c00488{left:362.666667pt;}
.xcb_c00488{left:363.626667pt;}
.x23_c00488{left:365.706667pt;}
.xdd_c00488{left:367.040000pt;}
.x17_c00488{left:370.666667pt;}
.x67_c00488{left:373.333333pt;}
.xc4_c00488{left:374.666667pt;}
.xa_c00488{left:375.626667pt;}
.x4b_c00488{left:377.333333pt;}
.x77_c00488{left:379.040000pt;}
.x6f_c00488{left:380.000000pt;}
.x99_c00488{left:382.293333pt;}
.xe1_c00488{left:385.706667pt;}
.x18_c00488{left:387.040000pt;}
.xde_c00488{left:389.706667pt;}
.xa3_c00488{left:391.040000pt;}
.xb_c00488{left:392.373333pt;}
.x35_c00488{left:396.000000pt;}
.xec_c00488{left:397.333333pt;}
.xf2_c00488{left:399.626667pt;}
.x5d_c00488{left:401.333333pt;}
.xe7_c00488{left:402.666667pt;}
.x2a_c00488{left:404.960000pt;}
.x9a_c00488{left:408.000000pt;}
.x19_c00488{left:410.293333pt;}
.xe2_c00488{left:412.000000pt;}
.x36_c00488{left:413.706667pt;}
.xc_c00488{left:416.000000pt;}
.x68_c00488{left:421.706667pt;}
.xbe_c00488{left:422.666667pt;}
.x9b_c00488{left:425.333333pt;}
.xcc_c00488{left:427.626667pt;}
.x85_c00488{left:429.133333pt;}
.xa4_c00488{left:433.333333pt;}
.xb8_c00488{left:434.293333pt;}
.x37_c00488{left:438.293333pt;}
.xaa_c00488{left:443.626667pt;}
.x41_c00488{left:444.960000pt;}
.x69_c00488{left:445.906667pt;}
.xed_c00488{left:447.040000pt;}
.x7f_c00488{left:448.373333pt;}
.xbf_c00488{left:451.040000pt;}
.x70_c00488{left:452.000000pt;}
.xf4_c00488{left:454.666667pt;}
.x94_c00488{left:456.000000pt;}
.xb9_c00488{left:459.426667pt;}
.x4c_c00488{left:464.000000pt;}
.x86_c00488{left:465.706667pt;}
.x54_c00488{left:466.666667pt;}
.x2b_c00488{left:468.000000pt;}
.xcd_c00488{left:469.333333pt;}
.xee_c00488{left:471.426667pt;}
.xd3_c00488{left:476.000000pt;}
.xba_c00488{left:479.040000pt;}
.x9c_c00488{left:481.333333pt;}
.xab_c00488{left:482.666667pt;}
.x55_c00488{left:484.000000pt;}
.x38_c00488{left:486.666667pt;}
.x87_c00488{left:488.373333pt;}
.x80_c00488{left:490.666667pt;}
.xd_c00488{left:491.626667pt;}
.x42_c00488{left:493.706667pt;}
.xc9_c00488{left:494.666667pt;}
.xb4_c00488{left:496.960000pt;}
.xd9_c00488{left:500.373333pt;}
.x4d_c00488{left:502.293333pt;}
.x78_c00488{left:503.626667pt;}
.x1a_c00488{left:505.333333pt;}
.xce_c00488{left:506.666667pt;}
.x71_c00488{left:508.960000pt;}
.x5e_c00488{left:510.666667pt;}
.x88_c00488{left:512.373333pt;}
.xb5_c00488{left:516.373333pt;}
.xe8_c00488{left:518.666667pt;}
.xe6_c00488{left:520.000000pt;}
.xd4_c00488{left:521.706667pt;}
.x6a_c00488{left:523.040000pt;}
.x5f_c00488{left:524.000000pt;}
.xac_c00488{left:524.960000pt;}
.x2c_c00488{left:528.000000pt;}
.x56_c00488{left:529.706667pt;}
.xdf_c00488{left:532.000000pt;}
.x79_c00488{left:533.706667pt;}
.xda_c00488{left:535.040000pt;}
.xc5_c00488{left:536.960000pt;}
.xe_c00488{left:540.373333pt;}
.x39_c00488{left:542.293333pt;}
.x1b_c00488{left:545.333333pt;}
.x43_c00488{left:548.373333pt;}
.x9d_c00488{left:551.040000pt;}
.xa5_c00488{left:552.960000pt;}
.x95_c00488{left:554.466667pt;}
.xe3_c00488{left:556.373333pt;}
.x2d_c00488{left:559.040000pt;}
.xc0_c00488{left:563.040000pt;}
.x57_c00488{left:564.373333pt;}
.x81_c00488{left:565.333333pt;}
.x89_c00488{left:570.666667pt;}
.xd5_c00488{left:574.666667pt;}
.x9e_c00488{left:576.373333pt;}
.x72_c00488{left:578.466667pt;}
.x3a_c00488{left:579.626667pt;}
.x2e_c00488{left:584.000000pt;}
.x1c_c00488{left:584.960000pt;}
.xcf_c00488{left:586.666667pt;}
.xe0_c00488{left:587.626667pt;}
.x4e_c00488{left:588.960000pt;}
.xf_c00488{left:590.666667pt;}
.x44_c00488{left:592.373333pt;}
.xa6_c00488{left:594.666667pt;}
.x60_c00488{left:600.000000pt;}
.x82_c00488{left:602.666667pt;}
.xf3_c00488{left:604.960000pt;}
.xe9_c00488{left:608.000000pt;}
.x8a_c00488{left:608.960000pt;}
.x6b_c00488{left:612.960000pt;}
.x2f_c00488{left:614.666667pt;}
.x4f_c00488{left:615.626667pt;}
.x1d_c00488{left:617.333333pt;}
.x7a_c00488{left:620.373333pt;}
.xef_c00488{left:621.333333pt;}
.x3b_c00488{left:624.000000pt;}
.x1_c00488{left:625.333333pt;}
.x45_c00488{left:628.000000pt;}
.x61_c00488{left:629.333333pt;}
.xc1_c00488{left:631.040000pt;}
.xdb_c00488{left:632.000000pt;}
.x1e_c00488{left:633.333333pt;}
.x8b_c00488{left:636.000000pt;}
.xd0_c00488{left:638.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_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_3f124ca2a570e1dde4c93aef.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb3_c00489{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.mdb_c00489{transform:matrix(0.336273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336273,0.000000,0.000000,0.250000,0,0);}
.m8f_c00489{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m4f_c00489{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.m11_c00489{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m2c_c00489{transform:matrix(0.356212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356212,0.000000,0.000000,0.250000,0,0);}
.mb9_c00489{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m86_c00489{transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);}
.m16_c00489{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m83_c00489{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m9d_c00489{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m87_c00489{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m2a_c00489{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.m7b_c00489{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m40_c00489{transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379601,0.000000,0.000000,0.250000,0,0);}
.m51_c00489{transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);}
.mbb_c00489{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m82_c00489{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m8e_c00489{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.m4e_c00489{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m42_c00489{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m18_c00489{transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);}
.m44_c00489{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.mcc_c00489{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mab_c00489{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m7e_c00489{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.mb_c00489{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m61_c00489{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.mad_c00489{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.md2_c00489{transform:matrix(0.398390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398390,0.000000,0.000000,0.250000,0,0);}
.mbd_c00489{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m19_c00489{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m45_c00489{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m7f_c00489{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m95_c00489{transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);}
.m17_c00489{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m98_c00489{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m8_c00489{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m43_c00489{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.md_c00489{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.mb6_c00489{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m12_c00489{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.mc_c00489{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m6_c00489{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m5_c00489{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mc2_c00489{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.mca_c00489{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.mb7_c00489{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m21_c00489{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.me7_c00489{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m5e_c00489{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.mc3_c00489{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m8a_c00489{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.mb2_c00489{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m90_c00489{transform:matrix(0.416794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416794,0.000000,0.000000,0.250000,0,0);}
.m5d_c00489{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m39_c00489{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.ma_c00489{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.mbc_c00489{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m2e_c00489{transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);}
.mcf_c00489{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m36_c00489{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m6d_c00489{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.md1_c00489{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m68_c00489{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mc9_c00489{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m3a_c00489{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m9b_c00489{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m58_c00489{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.mec_c00489{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m23_c00489{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mb5_c00489{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.me6_c00489{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m25_c00489{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mc8_c00489{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.mce_c00489{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.me4_c00489{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m78_c00489{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m81_c00489{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.mac_c00489{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.ma7_c00489{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m2f_c00489{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.mcb_c00489{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.me0_c00489{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m79_c00489{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.me_c00489{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.mc7_c00489{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.maf_c00489{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m96_c00489{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.me5_c00489{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.mc4_c00489{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m6e_c00489{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.mda_c00489{transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);}
.m94_c00489{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m8c_c00489{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.md5_c00489{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.m9c_c00489{transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);}
.ma5_c00489{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mb8_c00489{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.mc0_c00489{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.m53_c00489{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.mba_c00489{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.me3_c00489{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.mb1_c00489{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m10_c00489{transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);}
.m9a_c00489{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m5c_c00489{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.mc6_c00489{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.mf_c00489{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.m4c_c00489{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m30_c00489{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.mb4_c00489{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.mb0_c00489{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m70_c00489{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m93_c00489{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m0_c00489{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m89_c00489{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mdc_c00489{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m1a_c00489{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_c00489{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m6f_c00489{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m67_c00489{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.ma2_c00489{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m32_c00489{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m5b_c00489{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m55_c00489{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.me8_c00489{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m92_c00489{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m80_c00489{transform:matrix(0.513451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513451,0.000000,0.000000,0.250000,0,0);}
.m48_c00489{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m46_c00489{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m72_c00489{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m28_c00489{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.ma3_c00489{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m41_c00489{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.md7_c00489{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m77_c00489{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.md9_c00489{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m33_c00489{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m7a_c00489{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m59_c00489{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m6b_c00489{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.meb_c00489{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m73_c00489{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m66_c00489{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mbe_c00489{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m31_c00489{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mc5_c00489{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.ma6_c00489{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m49_c00489{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m97_c00489{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m1e_c00489{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m91_c00489{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m8d_c00489{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m1f_c00489{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m38_c00489{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m15_c00489{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m47_c00489{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m1c_c00489{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m22_c00489{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.ma1_c00489{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m56_c00489{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.mde_c00489{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m3e_c00489{transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);}
.m4d_c00489{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.mc1_c00489{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m2_c00489{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m1b_c00489{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.ma8_c00489{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m7c_c00489{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m9_c00489{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.md3_c00489{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m3d_c00489{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m4a_c00489{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m84_c00489{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m5f_c00489{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m24_c00489{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m3f_c00489{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m74_c00489{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m69_c00489{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.med_c00489{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m88_c00489{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m9e_c00489{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m63_c00489{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m7_c00489{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.mcd_c00489{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m13_c00489{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m62_c00489{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m65_c00489{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mea_c00489{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m3b_c00489{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m60_c00489{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.ma4_c00489{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);}
.m50_c00489{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.me9_c00489{transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);}
.m76_c00489{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m99_c00489{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m9f_c00489{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m29_c00489{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);}
.me1_c00489{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.m5a_c00489{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.ma0_c00489{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m27_c00489{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m1d_c00489{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.md8_c00489{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.md6_c00489{transform:matrix(0.618776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618776,0.000000,0.000000,0.250000,0,0);}
.m1_c00489{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_c00489{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);}
.m26_c00489{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m35_c00489{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m2b_c00489{transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);}
.m75_c00489{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m3c_c00489{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m20_c00489{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.me2_c00489{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.maa_c00489{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m6a_c00489{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m85_c00489{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.mbf_c00489{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.m2d_c00489{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m57_c00489{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.md0_c00489{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m54_c00489{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m6c_c00489{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mdf_c00489{transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);}
.m3_c00489{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.md4_c00489{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m52_c00489{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m4b_c00489{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.ma9_c00489{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m7d_c00489{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m64_c00489{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.mae_c00489{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m71_c00489{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m8b_c00489{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m37_c00489{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.mee_c00489{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m4_c00489{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m14_c00489{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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:-4.335047px;}
.ws1_c00489{word-spacing:0.000000px;}
.fc0_c00489{color:transparent;}
.fs3_c00489{font-size:3.420000px;}
.fs2_c00489{font-size:18.720000px;}
.fs1_c00489{font-size:20.400000px;}
.fs6_c00489{font-size:25.500000px;}
.fs0_c00489{font-size:28.920000px;}
.fs5_c00489{font-size:32.340000px;}
.fs4_c00489{font-size:35.700000px;}
.fs7_c00489{font-size:39.120000px;}
.y0_c00489{bottom:0.000000px;}
.ybc_c00489{bottom:251.745000px;}
.ybb_c00489{bottom:253.905000px;}
.ybd_c00489{bottom:254.130000px;}
.yba_c00489{bottom:270.405000px;}
.yb9_c00489{bottom:273.405000px;}
.yb6_c00489{bottom:292.245000px;}
.yb7_c00489{bottom:293.130000px;}
.yb8_c00489{bottom:293.970000px;}
.yb5_c00489{bottom:294.405000px;}
.yb3_c00489{bottom:311.745000px;}
.yb4_c00489{bottom:312.825000px;}
.yb2_c00489{bottom:313.470000px;}
.yb1_c00489{bottom:313.905000px;}
.yae_c00489{bottom:330.405000px;}
.yad_c00489{bottom:331.245000px;}
.yaf_c00489{bottom:333.405000px;}
.yb0_c00489{bottom:333.825000px;}
.yab_c00489{bottom:349.905000px;}
.ya8_c00489{bottom:350.745000px;}
.yac_c00489{bottom:350.970000px;}
.ya9_c00489{bottom:352.905000px;}
.yaa_c00489{bottom:354.405000px;}
.ya7_c00489{bottom:370.245000px;}
.ya6_c00489{bottom:372.405000px;}
.ya2_c00489{bottom:390.180000px;}
.ya1_c00489{bottom:391.245000px;}
.ya5_c00489{bottom:391.905000px;}
.ya4_c00489{bottom:392.130000px;}
.ya3_c00489{bottom:392.970000px;}
.ya0_c00489{bottom:393.405000px;}
.y9e_c00489{bottom:409.245000px;}
.y9b_c00489{bottom:410.745000px;}
.y9f_c00489{bottom:411.825000px;}
.y9c_c00489{bottom:412.905000px;}
.y9d_c00489{bottom:413.970000px;}
.y9a_c00489{bottom:427.905000px;}
.y92_c00489{bottom:429.405000px;}
.y94_c00489{bottom:430.680000px;}
.y97_c00489{bottom:431.130000px;}
.y99_c00489{bottom:431.325000px;}
.y96_c00489{bottom:431.970000px;}
.y95_c00489{bottom:432.405000px;}
.y93_c00489{bottom:432.630000px;}
.y98_c00489{bottom:433.470000px;}
.y8d_c00489{bottom:449.745000px;}
.y90_c00489{bottom:450.825000px;}
.y8f_c00489{bottom:451.905000px;}
.y8e_c00489{bottom:452.130000px;}
.y91_c00489{bottom:452.970000px;}
.y8a_c00489{bottom:468.405000px;}
.y88_c00489{bottom:469.245000px;}
.y8b_c00489{bottom:470.745000px;}
.y8c_c00489{bottom:471.405000px;}
.y89_c00489{bottom:472.905000px;}
.y87_c00489{bottom:488.745000px;}
.y84_c00489{bottom:490.245000px;}
.y86_c00489{bottom:490.905000px;}
.y83_c00489{bottom:491.130000px;}
.y85_c00489{bottom:492.405000px;}
.y81_c00489{bottom:507.405000px;}
.y80_c00489{bottom:509.745000px;}
.y82_c00489{bottom:510.630000px;}
.y7f_c00489{bottom:511.905000px;}
.y7e_c00489{bottom:526.905000px;}
.y7b_c00489{bottom:529.245000px;}
.y7d_c00489{bottom:530.325000px;}
.y7a_c00489{bottom:531.405000px;}
.y7c_c00489{bottom:532.470000px;}
.y79_c00489{bottom:546.825000px;}
.y76_c00489{bottom:548.325000px;}
.y77_c00489{bottom:548.745000px;}
.y78_c00489{bottom:549.825000px;}
.y75_c00489{bottom:550.905000px;}
.y72_c00489{bottom:568.245000px;}
.y73_c00489{bottom:569.130000px;}
.y74_c00489{bottom:569.970000px;}
.y71_c00489{bottom:570.405000px;}
.y70_c00489{bottom:587.745000px;}
.y6e_c00489{bottom:588.630000px;}
.y6f_c00489{bottom:589.905000px;}
.y6d_c00489{bottom:590.130000px;}
.y6c_c00489{bottom:591.405000px;}
.y68_c00489{bottom:607.245000px;}
.y6a_c00489{bottom:607.470000px;}
.y6b_c00489{bottom:608.325000px;}
.y69_c00489{bottom:609.405000px;}
.y67_c00489{bottom:610.905000px;}
.y64_c00489{bottom:625.905000px;}
.y66_c00489{bottom:626.745000px;}
.y61_c00489{bottom:628.245000px;}
.y63_c00489{bottom:628.905000px;}
.y65_c00489{bottom:629.130000px;}
.y62_c00489{bottom:630.405000px;}
.y5e_c00489{bottom:645.405000px;}
.y60_c00489{bottom:647.745000px;}
.y5f_c00489{bottom:648.825000px;}
.y5d_c00489{bottom:649.905000px;}
.y5b_c00489{bottom:665.325000px;}
.y5a_c00489{bottom:666.405000px;}
.y5c_c00489{bottom:666.825000px;}
.y58_c00489{bottom:667.245000px;}
.y59_c00489{bottom:668.130000px;}
.y57_c00489{bottom:669.405000px;}
.y56_c00489{bottom:685.680000px;}
.y54_c00489{bottom:686.745000px;}
.y53_c00489{bottom:688.905000px;}
.y55_c00489{bottom:689.130000px;}
.y51_c00489{bottom:706.245000px;}
.y4f_c00489{bottom:708.405000px;}
.y50_c00489{bottom:708.630000px;}
.y52_c00489{bottom:709.470000px;}
.y4c_c00489{bottom:725.745000px;}
.y4b_c00489{bottom:727.905000px;}
.y4d_c00489{bottom:728.130000px;}
.y4e_c00489{bottom:729.405000px;}
.y4a_c00489{bottom:744.405000px;}
.y45_c00489{bottom:745.245000px;}
.y48_c00489{bottom:746.325000px;}
.y47_c00489{bottom:747.405000px;}
.y49_c00489{bottom:747.630000px;}
.y46_c00489{bottom:748.905000px;}
.y43_c00489{bottom:765.405000px;}
.y42_c00489{bottom:766.245000px;}
.y44_c00489{bottom:767.130000px;}
.y41_c00489{bottom:767.970000px;}
.y40_c00489{bottom:768.405000px;}
.y3d_c00489{bottom:783.405000px;}
.y3b_c00489{bottom:785.325000px;}
.y3e_c00489{bottom:786.630000px;}
.y3f_c00489{bottom:787.470000px;}
.y3c_c00489{bottom:787.905000px;}
.y3a_c00489{bottom:805.245000px;}
.y39_c00489{bottom:806.130000px;}
.y37_c00489{bottom:807.405000px;}
.y38_c00489{bottom:808.470000px;}
.y35_c00489{bottom:824.745000px;}
.y34_c00489{bottom:826.905000px;}
.y36_c00489{bottom:827.130000px;}
.y33_c00489{bottom:843.405000px;}
.y31_c00489{bottom:844.245000px;}
.y30_c00489{bottom:846.405000px;}
.y32_c00489{bottom:847.470000px;}
.y2e_c00489{bottom:864.825000px;}
.y2b_c00489{bottom:866.130000px;}
.y2d_c00489{bottom:866.325000px;}
.y2f_c00489{bottom:866.970000px;}
.y2c_c00489{bottom:867.405000px;}
.y28_c00489{bottom:884.745000px;}
.y2a_c00489{bottom:885.630000px;}
.y29_c00489{bottom:886.470000px;}
.y27_c00489{bottom:886.905000px;}
.y26_c00489{bottom:887.970000px;}
.y25_c00489{bottom:904.245000px;}
.y24_c00489{bottom:906.405000px;}
.y23_c00489{bottom:922.680000px;}
.y1f_c00489{bottom:923.745000px;}
.y21_c00489{bottom:924.630000px;}
.y20_c00489{bottom:925.470000px;}
.y22_c00489{bottom:925.905000px;}
.y1c_c00489{bottom:941.970000px;}
.y1d_c00489{bottom:943.245000px;}
.y1a_c00489{bottom:945.405000px;}
.y1b_c00489{bottom:945.420000px;}
.y1e_c00489{bottom:945.630000px;}
.y18_c00489{bottom:963.825000px;}
.y19_c00489{bottom:964.905000px;}
.y15_c00489{bottom:982.245000px;}
.y16_c00489{bottom:982.680000px;}
.y14_c00489{bottom:984.405000px;}
.y17_c00489{bottom:984.630000px;}
.y13_c00489{bottom:985.470000px;}
.y12_c00489{bottom:1001.745000px;}
.y10_c00489{bottom:1003.905000px;}
.y11_c00489{bottom:1004.970000px;}
.yf_c00489{bottom:1020.405000px;}
.ye_c00489{bottom:1021.245000px;}
.yc_c00489{bottom:1023.405000px;}
.yd_c00489{bottom:1024.920000px;}
.ya_c00489{bottom:1040.745000px;}
.yb_c00489{bottom:1041.825000px;}
.y9_c00489{bottom:1042.245000px;}
.y8_c00489{bottom:1060.245000px;}
.y6_c00489{bottom:1061.745000px;}
.y3_c00489{bottom:1062.405000px;}
.y4_c00489{bottom:1062.630000px;}
.y7_c00489{bottom:1063.905000px;}
.y5_c00489{bottom:1063.920000px;}
.y1_c00489{bottom:1099.905000px;}
.y2_c00489{bottom:1100.550000px;}
.h4_c00489{height:4.206533px;}
.h3_c00489{height:23.025234px;}
.h2_c00489{height:25.091602px;}
.h7_c00489{height:31.364502px;}
.h1_c00489{height:35.571035px;}
.h6_c00489{height:39.777568px;}
.h5_c00489{height:43.910303px;}
.h8_c00489{height:48.116836px;}
.h0_c00489{height:1335.000000px;}
.w0_c00489{width:880.500000px;}
.x0_c00489{left:0.000000px;}
.xff_c00489{left:148.080000px;}
.x93_c00489{left:151.500000px;}
.x2f_c00489{left:153.000000px;}
.x1_c00489{left:154.500000px;}
.x106_c00489{left:165.000000px;}
.xfc_c00489{left:166.080000px;}
.x14_c00489{left:169.080000px;}
.x3_c00489{left:171.000000px;}
.x24_c00489{left:172.500000px;}
.x104_c00489{left:174.000000px;}
.xb4_c00489{left:177.000000px;}
.xae_c00489{left:178.500000px;}
.x5b_c00489{left:180.420000px;}
.xbf_c00489{left:183.000000px;}
.x48_c00489{left:186.000000px;}
.xec_c00489{left:189.000000px;}
.x1c_c00489{left:191.145000px;}
.x101_c00489{left:195.000000px;}
.x107_c00489{left:196.920000px;}
.x25_c00489{left:198.000000px;}
.xcd_c00489{left:199.920000px;}
.xfa_c00489{left:201.000000px;}
.xf_c00489{left:207.000000px;}
.x99_c00489{left:208.500000px;}
.xa3_c00489{left:210.000000px;}
.x3d_c00489{left:212.580000px;}
.xf3_c00489{left:214.500000px;}
.x102_c00489{left:216.420000px;}
.x5c_c00489{left:220.080000px;}
.x8b_c00489{left:222.000000px;}
.x74_c00489{left:223.920000px;}
.xc8_c00489{left:225.000000px;}
.x30_c00489{left:226.920000px;}
.x49_c00489{left:230.580000px;}
.x9a_c00489{left:234.420000px;}
.xa4_c00489{left:235.500000px;}
.x7b_c00489{left:237.000000px;}
.x82_c00489{left:243.000000px;}
.x26_c00489{left:246.000000px;}
.x50_c00489{left:248.580000px;}
.x4_c00489{left:252.000000px;}
.x1d_c00489{left:253.500000px;}
.x35_c00489{left:255.000000px;}
.x6b_c00489{left:256.500000px;}
.xdb_c00489{left:259.500000px;}
.x83_c00489{left:261.000000px;}
.x15_c00489{left:262.500000px;}
.x108_c00489{left:264.000000px;}
.x94_c00489{left:265.920000px;}
.xe5_c00489{left:267.420000px;}
.x5d_c00489{left:268.500000px;}
.xc0_c00489{left:270.000000px;}
.x1e_c00489{left:271.920000px;}
.x9b_c00489{left:274.500000px;}
.x36_c00489{left:275.580000px;}
.x27_c00489{left:277.500000px;}
.xb9_c00489{left:279.420000px;}
.x3e_c00489{left:280.500000px;}
.x16_c00489{left:283.500000px;}
.x7c_c00489{left:284.580000px;}
.xb5_c00489{left:286.920000px;}
.xfd_c00489{left:288.420000px;}
.xed_c00489{left:289.500000px;}
.x31_c00489{left:291.000000px;}
.xf4_c00489{left:294.000000px;}
.xf7_c00489{left:295.500000px;}
.x10_c00489{left:297.000000px;}
.x1f_c00489{left:298.500000px;}
.x3f_c00489{left:300.000000px;}
.x51_c00489{left:301.500000px;}
.x5_c00489{left:303.000000px;}
.xce_c00489{left:304.500000px;}
.x7d_c00489{left:306.420000px;}
.xe6_c00489{left:308.580000px;}
.xaf_c00489{left:311.355000px;}
.x8c_c00489{left:312.855000px;}
.xf8_c00489{left:313.920000px;}
.xba_c00489{left:315.000000px;}
.x17_c00489{left:318.000000px;}
.xc1_c00489{left:319.080000px;}
.xdc_c00489{left:320.580000px;}
.x4a_c00489{left:322.500000px;}
.x6_c00489{left:323.580000px;}
.xa5_c00489{left:325.500000px;}
.xf5_c00489{left:327.000000px;}
.x5e_c00489{left:333.000000px;}
.x40_c00489{left:334.500000px;}
.xc9_c00489{left:336.420000px;}
.x75_c00489{left:337.500000px;}
.xe2_c00489{left:338.580000px;}
.x32_c00489{left:341.580000px;}
.xa6_c00489{left:345.000000px;}
.x28_c00489{left:346.500000px;}
.x52_c00489{left:348.000000px;}
.x7_c00489{left:349.500000px;}
.xbb_c00489{left:352.500000px;}
.x41_c00489{left:354.000000px;}
.xb6_c00489{left:355.080000px;}
.xd0_c00489{left:356.580000px;}
.x5f_c00489{left:363.000000px;}
.x6c_c00489{left:364.080000px;}
.x53_c00489{left:366.000000px;}
.x8d_c00489{left:368.580000px;}
.x37_c00489{left:370.500000px;}
.x18_c00489{left:373.080000px;}
.x20_c00489{left:376.500000px;}
.xc2_c00489{left:378.000000px;}
.xb0_c00489{left:381.420000px;}
.x9c_c00489{left:382.500000px;}
.xe3_c00489{left:384.000000px;}
.x60_c00489{left:385.500000px;}
.xa9_c00489{left:387.420000px;}
.x103_c00489{left:390.000000px;}
.xe7_c00489{left:391.500000px;}
.x38_c00489{left:393.000000px;}
.x11_c00489{left:396.000000px;}
.x6d_c00489{left:397.920000px;}
.x7e_c00489{left:399.000000px;}
.x100_c00489{left:402.000000px;}
.x4b_c00489{left:406.080000px;}
.xb1_c00489{left:408.000000px;}
.x2_c00489{left:409.500000px;}
.x33_c00489{left:410.580000px;}
.xfb_c00489{left:412.500000px;}
.xaa_c00489{left:414.000000px;}
.x9d_c00489{left:415.275000px;}
.x84_c00489{left:417.000000px;}
.x7f_c00489{left:418.500000px;}
.xca_c00489{left:421.080000px;}
.x8_c00489{left:423.000000px;}
.x29_c00489{left:424.500000px;}
.xee_c00489{left:425.580000px;}
.x61_c00489{left:427.920000px;}
.x42_c00489{left:430.080000px;}
.xc3_c00489{left:432.000000px;}
.xd1_c00489{left:433.500000px;}
.x54_c00489{left:436.080000px;}
.xcf_c00489{left:439.080000px;}
.x34_c00489{left:441.645000px;}
.xbc_c00489{left:442.920000px;}
.x4c_c00489{left:444.000000px;}
.x2a_c00489{left:445.920000px;}
.x95_c00489{left:447.000000px;}
.x76_c00489{left:448.500000px;}
.x8e_c00489{left:450.420000px;}
.x62_c00489{left:451.920000px;}
.xc4_c00489{left:453.420000px;}
.xb7_c00489{left:454.500000px;}
.xdd_c00489{left:457.500000px;}
.x9e_c00489{left:458.580000px;}
.x43_c00489{left:461.580000px;}
.x109_c00489{left:463.500000px;}
.x85_c00489{left:465.000000px;}
.xab_c00489{left:466.080000px;}
.xcb_c00489{left:467.580000px;}
.x21_c00489{left:471.000000px;}
.x9_c00489{left:472.080000px;}
.xe8_c00489{left:475.500000px;}
.x63_c00489{left:478.500000px;}
.x12_c00489{left:482.580000px;}
.x55_c00489{left:484.275000px;}
.x10a_c00489{left:486.000000px;}
.xcc_c00489{left:487.920000px;}
.x6e_c00489{left:489.420000px;}
.x77_c00489{left:490.920000px;}
.x8f_c00489{left:493.275000px;}
.xc5_c00489{left:495.000000px;}
.xf9_c00489{left:496.500000px;}
.x86_c00489{left:499.080000px;}
.xf6_c00489{left:500.580000px;}
.xd6_c00489{left:502.080000px;}
.xa_c00489{left:504.000000px;}
.x13_c00489{left:506.145000px;}
.xef_c00489{left:508.275000px;}
.x56_c00489{left:510.000000px;}
.x44_c00489{left:514.080000px;}
.x78_c00489{left:516.000000px;}
.x64_c00489{left:517.500000px;}
.xb2_c00489{left:519.000000px;}
.xd2_c00489{left:520.080000px;}
.xd7_c00489{left:522.420000px;}
.x6f_c00489{left:526.080000px;}
.x4d_c00489{left:528.000000px;}
.x90_c00489{left:529.500000px;}
.x39_c00489{left:532.500000px;}
.x2b_c00489{left:534.000000px;}
.x87_c00489{left:537.000000px;}
.x9f_c00489{left:538.500000px;}
.xb3_c00489{left:540.420000px;}
.xbd_c00489{left:544.500000px;}
.xb_c00489{left:546.000000px;}
.x70_c00489{left:547.500000px;}
.xd8_c00489{left:549.000000px;}
.xe9_c00489{left:550.500000px;}
.x65_c00489{left:552.000000px;}
.x79_c00489{left:554.580000px;}
.x105_c00489{left:556.500000px;}
.x3a_c00489{left:557.580000px;}
.x4e_c00489{left:560.580000px;}
.x19_c00489{left:563.580000px;}
.x22_c00489{left:567.000000px;}
.xde_c00489{left:568.080000px;}
.x80_c00489{left:570.000000px;}
.x66_c00489{left:571.920000px;}
.x91_c00489{left:573.420000px;}
.x45_c00489{left:574.920000px;}
.x71_c00489{left:579.420000px;}
.xa0_c00489{left:580.500000px;}
.x88_c00489{left:585.000000px;}
.xa7_c00489{left:586.500000px;}
.xf0_c00489{left:589.500000px;}
.x57_c00489{left:592.500000px;}
.xc_c00489{left:594.000000px;}
.xea_c00489{left:596.580000px;}
.x67_c00489{left:598.920000px;}
.x7a_c00489{left:600.000000px;}
.xd9_c00489{left:601.500000px;}
.x96_c00489{left:603.000000px;}
.xa1_c00489{left:604.500000px;}
.x46_c00489{left:606.000000px;}
.xc6_c00489{left:610.920000px;}
.xf1_c00489{left:613.920000px;}
.xbe_c00489{left:615.000000px;}
.x4f_c00489{left:617.580000px;}
.xa8_c00489{left:619.920000px;}
.xd3_c00489{left:623.355000px;}
.x58_c00489{left:624.420000px;}
.x2c_c00489{left:627.000000px;}
.xdf_c00489{left:631.500000px;}
.x3b_c00489{left:632.580000px;}
.xac_c00489{left:636.000000px;}
.x92_c00489{left:638.580000px;}
.xd_c00489{left:640.080000px;}
.xf2_c00489{left:642.000000px;}
.x1a_c00489{left:644.775000px;}
.x68_c00489{left:646.080000px;}
.xe0_c00489{left:648.420000px;}
.xe4_c00489{left:651.000000px;}
.x59_c00489{left:652.080000px;}
.xb8_c00489{left:659.580000px;}
.xd4_c00489{left:663.000000px;}
.xe_c00489{left:666.000000px;}
.xad_c00489{left:670.080000px;}
.x23_c00489{left:671.580000px;}
.xe1_c00489{left:673.500000px;}
.x2d_c00489{left:675.000000px;}
.x69_c00489{left:678.000000px;}
.xa2_c00489{left:679.500000px;}
.x89_c00489{left:681.420000px;}
.x72_c00489{left:682.920000px;}
.xeb_c00489{left:686.580000px;}
.x1b_c00489{left:688.500000px;}
.x97_c00489{left:691.080000px;}
.x2e_c00489{left:693.000000px;}
.x6a_c00489{left:694.500000px;}
.x5a_c00489{left:696.420000px;}
.x47_c00489{left:697.920000px;}
.xda_c00489{left:701.580000px;}
.xc7_c00489{left:704.580000px;}
.x3c_c00489{left:706.080000px;}
.x8a_c00489{left:708.000000px;}
.xfe_c00489{left:711.000000px;}
.xd5_c00489{left:717.000000px;}
.x73_c00489{left:718.500000px;}
.x81_c00489{left:720.000000px;}
.x98_c00489{left:723.420000px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.ls0_c00489{letter-spacing:0.000000pt;}
.ws0_c00489{word-spacing:-3.853375pt;}
.ws1_c00489{word-spacing:0.000000pt;}
.fs3_c00489{font-size:3.040000pt;}
.fs2_c00489{font-size:16.640000pt;}
.fs1_c00489{font-size:18.133333pt;}
.fs6_c00489{font-size:22.666667pt;}
.fs0_c00489{font-size:25.706667pt;}
.fs5_c00489{font-size:28.746667pt;}
.fs4_c00489{font-size:31.733333pt;}
.fs7_c00489{font-size:34.773333pt;}
.y0_c00489{bottom:0.000000pt;}
.ybc_c00489{bottom:223.773333pt;}
.ybb_c00489{bottom:225.693333pt;}
.ybd_c00489{bottom:225.893333pt;}
.yba_c00489{bottom:240.360000pt;}
.yb9_c00489{bottom:243.026667pt;}
.yb6_c00489{bottom:259.773333pt;}
.yb7_c00489{bottom:260.560000pt;}
.yb8_c00489{bottom:261.306667pt;}
.yb5_c00489{bottom:261.693333pt;}
.yb3_c00489{bottom:277.106667pt;}
.yb4_c00489{bottom:278.066667pt;}
.yb2_c00489{bottom:278.640000pt;}
.yb1_c00489{bottom:279.026667pt;}
.yae_c00489{bottom:293.693333pt;}
.yad_c00489{bottom:294.440000pt;}
.yaf_c00489{bottom:296.360000pt;}
.yb0_c00489{bottom:296.733333pt;}
.yab_c00489{bottom:311.026667pt;}
.ya8_c00489{bottom:311.773333pt;}
.yac_c00489{bottom:311.973333pt;}
.ya9_c00489{bottom:313.693333pt;}
.yaa_c00489{bottom:315.026667pt;}
.ya7_c00489{bottom:329.106667pt;}
.ya6_c00489{bottom:331.026667pt;}
.ya2_c00489{bottom:346.826667pt;}
.ya1_c00489{bottom:347.773333pt;}
.ya5_c00489{bottom:348.360000pt;}
.ya4_c00489{bottom:348.560000pt;}
.ya3_c00489{bottom:349.306667pt;}
.ya0_c00489{bottom:349.693333pt;}
.y9e_c00489{bottom:363.773333pt;}
.y9b_c00489{bottom:365.106667pt;}
.y9f_c00489{bottom:366.066667pt;}
.y9c_c00489{bottom:367.026667pt;}
.y9d_c00489{bottom:367.973333pt;}
.y9a_c00489{bottom:380.360000pt;}
.y92_c00489{bottom:381.693333pt;}
.y94_c00489{bottom:382.826667pt;}
.y97_c00489{bottom:383.226667pt;}
.y99_c00489{bottom:383.400000pt;}
.y96_c00489{bottom:383.973333pt;}
.y95_c00489{bottom:384.360000pt;}
.y93_c00489{bottom:384.560000pt;}
.y98_c00489{bottom:385.306667pt;}
.y8d_c00489{bottom:399.773333pt;}
.y90_c00489{bottom:400.733333pt;}
.y8f_c00489{bottom:401.693333pt;}
.y8e_c00489{bottom:401.893333pt;}
.y91_c00489{bottom:402.640000pt;}
.y8a_c00489{bottom:416.360000pt;}
.y88_c00489{bottom:417.106667pt;}
.y8b_c00489{bottom:418.440000pt;}
.y8c_c00489{bottom:419.026667pt;}
.y89_c00489{bottom:420.360000pt;}
.y87_c00489{bottom:434.440000pt;}
.y84_c00489{bottom:435.773333pt;}
.y86_c00489{bottom:436.360000pt;}
.y83_c00489{bottom:436.560000pt;}
.y85_c00489{bottom:437.693333pt;}
.y81_c00489{bottom:451.026667pt;}
.y80_c00489{bottom:453.106667pt;}
.y82_c00489{bottom:453.893333pt;}
.y7f_c00489{bottom:455.026667pt;}
.y7e_c00489{bottom:468.360000pt;}
.y7b_c00489{bottom:470.440000pt;}
.y7d_c00489{bottom:471.400000pt;}
.y7a_c00489{bottom:472.360000pt;}
.y7c_c00489{bottom:473.306667pt;}
.y79_c00489{bottom:486.066667pt;}
.y76_c00489{bottom:487.400000pt;}
.y77_c00489{bottom:487.773333pt;}
.y78_c00489{bottom:488.733333pt;}
.y75_c00489{bottom:489.693333pt;}
.y72_c00489{bottom:505.106667pt;}
.y73_c00489{bottom:505.893333pt;}
.y74_c00489{bottom:506.640000pt;}
.y71_c00489{bottom:507.026667pt;}
.y70_c00489{bottom:522.440000pt;}
.y6e_c00489{bottom:523.226667pt;}
.y6f_c00489{bottom:524.360000pt;}
.y6d_c00489{bottom:524.560000pt;}
.y6c_c00489{bottom:525.693333pt;}
.y68_c00489{bottom:539.773333pt;}
.y6a_c00489{bottom:539.973333pt;}
.y6b_c00489{bottom:540.733333pt;}
.y69_c00489{bottom:541.693333pt;}
.y67_c00489{bottom:543.026667pt;}
.y64_c00489{bottom:556.360000pt;}
.y66_c00489{bottom:557.106667pt;}
.y61_c00489{bottom:558.440000pt;}
.y63_c00489{bottom:559.026667pt;}
.y65_c00489{bottom:559.226667pt;}
.y62_c00489{bottom:560.360000pt;}
.y5e_c00489{bottom:573.693333pt;}
.y60_c00489{bottom:575.773333pt;}
.y5f_c00489{bottom:576.733333pt;}
.y5d_c00489{bottom:577.693333pt;}
.y5b_c00489{bottom:591.400000pt;}
.y5a_c00489{bottom:592.360000pt;}
.y5c_c00489{bottom:592.733333pt;}
.y58_c00489{bottom:593.106667pt;}
.y59_c00489{bottom:593.893333pt;}
.y57_c00489{bottom:595.026667pt;}
.y56_c00489{bottom:609.493333pt;}
.y54_c00489{bottom:610.440000pt;}
.y53_c00489{bottom:612.360000pt;}
.y55_c00489{bottom:612.560000pt;}
.y51_c00489{bottom:627.773333pt;}
.y4f_c00489{bottom:629.693333pt;}
.y50_c00489{bottom:629.893333pt;}
.y52_c00489{bottom:630.640000pt;}
.y4c_c00489{bottom:645.106667pt;}
.y4b_c00489{bottom:647.026667pt;}
.y4d_c00489{bottom:647.226667pt;}
.y4e_c00489{bottom:648.360000pt;}
.y4a_c00489{bottom:661.693333pt;}
.y45_c00489{bottom:662.440000pt;}
.y48_c00489{bottom:663.400000pt;}
.y47_c00489{bottom:664.360000pt;}
.y49_c00489{bottom:664.560000pt;}
.y46_c00489{bottom:665.693333pt;}
.y43_c00489{bottom:680.360000pt;}
.y42_c00489{bottom:681.106667pt;}
.y44_c00489{bottom:681.893333pt;}
.y41_c00489{bottom:682.640000pt;}
.y40_c00489{bottom:683.026667pt;}
.y3d_c00489{bottom:696.360000pt;}
.y3b_c00489{bottom:698.066667pt;}
.y3e_c00489{bottom:699.226667pt;}
.y3f_c00489{bottom:699.973333pt;}
.y3c_c00489{bottom:700.360000pt;}
.y3a_c00489{bottom:715.773333pt;}
.y39_c00489{bottom:716.560000pt;}
.y37_c00489{bottom:717.693333pt;}
.y38_c00489{bottom:718.640000pt;}
.y35_c00489{bottom:733.106667pt;}
.y34_c00489{bottom:735.026667pt;}
.y36_c00489{bottom:735.226667pt;}
.y33_c00489{bottom:749.693333pt;}
.y31_c00489{bottom:750.440000pt;}
.y30_c00489{bottom:752.360000pt;}
.y32_c00489{bottom:753.306667pt;}
.y2e_c00489{bottom:768.733333pt;}
.y2b_c00489{bottom:769.893333pt;}
.y2d_c00489{bottom:770.066667pt;}
.y2f_c00489{bottom:770.640000pt;}
.y2c_c00489{bottom:771.026667pt;}
.y28_c00489{bottom:786.440000pt;}
.y2a_c00489{bottom:787.226667pt;}
.y29_c00489{bottom:787.973333pt;}
.y27_c00489{bottom:788.360000pt;}
.y26_c00489{bottom:789.306667pt;}
.y25_c00489{bottom:803.773333pt;}
.y24_c00489{bottom:805.693333pt;}
.y23_c00489{bottom:820.160000pt;}
.y1f_c00489{bottom:821.106667pt;}
.y21_c00489{bottom:821.893333pt;}
.y20_c00489{bottom:822.640000pt;}
.y22_c00489{bottom:823.026667pt;}
.y1c_c00489{bottom:837.306667pt;}
.y1d_c00489{bottom:838.440000pt;}
.y1a_c00489{bottom:840.360000pt;}
.y1b_c00489{bottom:840.373333pt;}
.y1e_c00489{bottom:840.560000pt;}
.y18_c00489{bottom:856.733333pt;}
.y19_c00489{bottom:857.693333pt;}
.y15_c00489{bottom:873.106667pt;}
.y16_c00489{bottom:873.493333pt;}
.y14_c00489{bottom:875.026667pt;}
.y17_c00489{bottom:875.226667pt;}
.y13_c00489{bottom:875.973333pt;}
.y12_c00489{bottom:890.440000pt;}
.y10_c00489{bottom:892.360000pt;}
.y11_c00489{bottom:893.306667pt;}
.yf_c00489{bottom:907.026667pt;}
.ye_c00489{bottom:907.773333pt;}
.yc_c00489{bottom:909.693333pt;}
.yd_c00489{bottom:911.040000pt;}
.ya_c00489{bottom:925.106667pt;}
.yb_c00489{bottom:926.066667pt;}
.y9_c00489{bottom:926.440000pt;}
.y8_c00489{bottom:942.440000pt;}
.y6_c00489{bottom:943.773333pt;}
.y3_c00489{bottom:944.360000pt;}
.y4_c00489{bottom:944.560000pt;}
.y7_c00489{bottom:945.693333pt;}
.y5_c00489{bottom:945.706667pt;}
.y1_c00489{bottom:977.693333pt;}
.y2_c00489{bottom:978.266667pt;}
.h4_c00489{height:3.739141pt;}
.h3_c00489{height:20.466875pt;}
.h2_c00489{height:22.303646pt;}
.h7_c00489{height:27.879557pt;}
.h1_c00489{height:31.618698pt;}
.h6_c00489{height:35.357839pt;}
.h5_c00489{height:39.031380pt;}
.h8_c00489{height:42.770521pt;}
.h0_c00489{height:1186.666667pt;}
.w0_c00489{width:782.666667pt;}
.x0_c00489{left:0.000000pt;}
.xff_c00489{left:131.626667pt;}
.x93_c00489{left:134.666667pt;}
.x2f_c00489{left:136.000000pt;}
.x1_c00489{left:137.333333pt;}
.x106_c00489{left:146.666667pt;}
.xfc_c00489{left:147.626667pt;}
.x14_c00489{left:150.293333pt;}
.x3_c00489{left:152.000000pt;}
.x24_c00489{left:153.333333pt;}
.x104_c00489{left:154.666667pt;}
.xb4_c00489{left:157.333333pt;}
.xae_c00489{left:158.666667pt;}
.x5b_c00489{left:160.373333pt;}
.xbf_c00489{left:162.666667pt;}
.x48_c00489{left:165.333333pt;}
.xec_c00489{left:168.000000pt;}
.x1c_c00489{left:169.906667pt;}
.x101_c00489{left:173.333333pt;}
.x107_c00489{left:175.040000pt;}
.x25_c00489{left:176.000000pt;}
.xcd_c00489{left:177.706667pt;}
.xfa_c00489{left:178.666667pt;}
.xf_c00489{left:184.000000pt;}
.x99_c00489{left:185.333333pt;}
.xa3_c00489{left:186.666667pt;}
.x3d_c00489{left:188.960000pt;}
.xf3_c00489{left:190.666667pt;}
.x102_c00489{left:192.373333pt;}
.x5c_c00489{left:195.626667pt;}
.x8b_c00489{left:197.333333pt;}
.x74_c00489{left:199.040000pt;}
.xc8_c00489{left:200.000000pt;}
.x30_c00489{left:201.706667pt;}
.x49_c00489{left:204.960000pt;}
.x9a_c00489{left:208.373333pt;}
.xa4_c00489{left:209.333333pt;}
.x7b_c00489{left:210.666667pt;}
.x82_c00489{left:216.000000pt;}
.x26_c00489{left:218.666667pt;}
.x50_c00489{left:220.960000pt;}
.x4_c00489{left:224.000000pt;}
.x1d_c00489{left:225.333333pt;}
.x35_c00489{left:226.666667pt;}
.x6b_c00489{left:228.000000pt;}
.xdb_c00489{left:230.666667pt;}
.x83_c00489{left:232.000000pt;}
.x15_c00489{left:233.333333pt;}
.x108_c00489{left:234.666667pt;}
.x94_c00489{left:236.373333pt;}
.xe5_c00489{left:237.706667pt;}
.x5d_c00489{left:238.666667pt;}
.xc0_c00489{left:240.000000pt;}
.x1e_c00489{left:241.706667pt;}
.x9b_c00489{left:244.000000pt;}
.x36_c00489{left:244.960000pt;}
.x27_c00489{left:246.666667pt;}
.xb9_c00489{left:248.373333pt;}
.x3e_c00489{left:249.333333pt;}
.x16_c00489{left:252.000000pt;}
.x7c_c00489{left:252.960000pt;}
.xb5_c00489{left:255.040000pt;}
.xfd_c00489{left:256.373333pt;}
.xed_c00489{left:257.333333pt;}
.x31_c00489{left:258.666667pt;}
.xf4_c00489{left:261.333333pt;}
.xf7_c00489{left:262.666667pt;}
.x10_c00489{left:264.000000pt;}
.x1f_c00489{left:265.333333pt;}
.x3f_c00489{left:266.666667pt;}
.x51_c00489{left:268.000000pt;}
.x5_c00489{left:269.333333pt;}
.xce_c00489{left:270.666667pt;}
.x7d_c00489{left:272.373333pt;}
.xe6_c00489{left:274.293333pt;}
.xaf_c00489{left:276.760000pt;}
.x8c_c00489{left:278.093333pt;}
.xf8_c00489{left:279.040000pt;}
.xba_c00489{left:280.000000pt;}
.x17_c00489{left:282.666667pt;}
.xc1_c00489{left:283.626667pt;}
.xdc_c00489{left:284.960000pt;}
.x4a_c00489{left:286.666667pt;}
.x6_c00489{left:287.626667pt;}
.xa5_c00489{left:289.333333pt;}
.xf5_c00489{left:290.666667pt;}
.x5e_c00489{left:296.000000pt;}
.x40_c00489{left:297.333333pt;}
.xc9_c00489{left:299.040000pt;}
.x75_c00489{left:300.000000pt;}
.xe2_c00489{left:300.960000pt;}
.x32_c00489{left:303.626667pt;}
.xa6_c00489{left:306.666667pt;}
.x28_c00489{left:308.000000pt;}
.x52_c00489{left:309.333333pt;}
.x7_c00489{left:310.666667pt;}
.xbb_c00489{left:313.333333pt;}
.x41_c00489{left:314.666667pt;}
.xb6_c00489{left:315.626667pt;}
.xd0_c00489{left:316.960000pt;}
.x5f_c00489{left:322.666667pt;}
.x6c_c00489{left:323.626667pt;}
.x53_c00489{left:325.333333pt;}
.x8d_c00489{left:327.626667pt;}
.x37_c00489{left:329.333333pt;}
.x18_c00489{left:331.626667pt;}
.x20_c00489{left:334.666667pt;}
.xc2_c00489{left:336.000000pt;}
.xb0_c00489{left:339.040000pt;}
.x9c_c00489{left:340.000000pt;}
.xe3_c00489{left:341.333333pt;}
.x60_c00489{left:342.666667pt;}
.xa9_c00489{left:344.373333pt;}
.x103_c00489{left:346.666667pt;}
.xe7_c00489{left:348.000000pt;}
.x38_c00489{left:349.333333pt;}
.x11_c00489{left:352.000000pt;}
.x6d_c00489{left:353.706667pt;}
.x7e_c00489{left:354.666667pt;}
.x100_c00489{left:357.333333pt;}
.x4b_c00489{left:360.960000pt;}
.xb1_c00489{left:362.666667pt;}
.x2_c00489{left:364.000000pt;}
.x33_c00489{left:364.960000pt;}
.xfb_c00489{left:366.666667pt;}
.xaa_c00489{left:368.000000pt;}
.x9d_c00489{left:369.133333pt;}
.x84_c00489{left:370.666667pt;}
.x7f_c00489{left:372.000000pt;}
.xca_c00489{left:374.293333pt;}
.x8_c00489{left:376.000000pt;}
.x29_c00489{left:377.333333pt;}
.xee_c00489{left:378.293333pt;}
.x61_c00489{left:380.373333pt;}
.x42_c00489{left:382.293333pt;}
.xc3_c00489{left:384.000000pt;}
.xd1_c00489{left:385.333333pt;}
.x54_c00489{left:387.626667pt;}
.xcf_c00489{left:390.293333pt;}
.x34_c00489{left:392.573333pt;}
.xbc_c00489{left:393.706667pt;}
.x4c_c00489{left:394.666667pt;}
.x2a_c00489{left:396.373333pt;}
.x95_c00489{left:397.333333pt;}
.x76_c00489{left:398.666667pt;}
.x8e_c00489{left:400.373333pt;}
.x62_c00489{left:401.706667pt;}
.xc4_c00489{left:403.040000pt;}
.xb7_c00489{left:404.000000pt;}
.xdd_c00489{left:406.666667pt;}
.x9e_c00489{left:407.626667pt;}
.x43_c00489{left:410.293333pt;}
.x109_c00489{left:412.000000pt;}
.x85_c00489{left:413.333333pt;}
.xab_c00489{left:414.293333pt;}
.xcb_c00489{left:415.626667pt;}
.x21_c00489{left:418.666667pt;}
.x9_c00489{left:419.626667pt;}
.xe8_c00489{left:422.666667pt;}
.x63_c00489{left:425.333333pt;}
.x12_c00489{left:428.960000pt;}
.x55_c00489{left:430.466667pt;}
.x10a_c00489{left:432.000000pt;}
.xcc_c00489{left:433.706667pt;}
.x6e_c00489{left:435.040000pt;}
.x77_c00489{left:436.373333pt;}
.x8f_c00489{left:438.466667pt;}
.xc5_c00489{left:440.000000pt;}
.xf9_c00489{left:441.333333pt;}
.x86_c00489{left:443.626667pt;}
.xf6_c00489{left:444.960000pt;}
.xd6_c00489{left:446.293333pt;}
.xa_c00489{left:448.000000pt;}
.x13_c00489{left:449.906667pt;}
.xef_c00489{left:451.800000pt;}
.x56_c00489{left:453.333333pt;}
.x44_c00489{left:456.960000pt;}
.x78_c00489{left:458.666667pt;}
.x64_c00489{left:460.000000pt;}
.xb2_c00489{left:461.333333pt;}
.xd2_c00489{left:462.293333pt;}
.xd7_c00489{left:464.373333pt;}
.x6f_c00489{left:467.626667pt;}
.x4d_c00489{left:469.333333pt;}
.x90_c00489{left:470.666667pt;}
.x39_c00489{left:473.333333pt;}
.x2b_c00489{left:474.666667pt;}
.x87_c00489{left:477.333333pt;}
.x9f_c00489{left:478.666667pt;}
.xb3_c00489{left:480.373333pt;}
.xbd_c00489{left:484.000000pt;}
.xb_c00489{left:485.333333pt;}
.x70_c00489{left:486.666667pt;}
.xd8_c00489{left:488.000000pt;}
.xe9_c00489{left:489.333333pt;}
.x65_c00489{left:490.666667pt;}
.x79_c00489{left:492.960000pt;}
.x105_c00489{left:494.666667pt;}
.x3a_c00489{left:495.626667pt;}
.x4e_c00489{left:498.293333pt;}
.x19_c00489{left:500.960000pt;}
.x22_c00489{left:504.000000pt;}
.xde_c00489{left:504.960000pt;}
.x80_c00489{left:506.666667pt;}
.x66_c00489{left:508.373333pt;}
.x91_c00489{left:509.706667pt;}
.x45_c00489{left:511.040000pt;}
.x71_c00489{left:515.040000pt;}
.xa0_c00489{left:516.000000pt;}
.x88_c00489{left:520.000000pt;}
.xa7_c00489{left:521.333333pt;}
.xf0_c00489{left:524.000000pt;}
.x57_c00489{left:526.666667pt;}
.xc_c00489{left:528.000000pt;}
.xea_c00489{left:530.293333pt;}
.x67_c00489{left:532.373333pt;}
.x7a_c00489{left:533.333333pt;}
.xd9_c00489{left:534.666667pt;}
.x96_c00489{left:536.000000pt;}
.xa1_c00489{left:537.333333pt;}
.x46_c00489{left:538.666667pt;}
.xc6_c00489{left:543.040000pt;}
.xf1_c00489{left:545.706667pt;}
.xbe_c00489{left:546.666667pt;}
.x4f_c00489{left:548.960000pt;}
.xa8_c00489{left:551.040000pt;}
.xd3_c00489{left:554.093333pt;}
.x58_c00489{left:555.040000pt;}
.x2c_c00489{left:557.333333pt;}
.xdf_c00489{left:561.333333pt;}
.x3b_c00489{left:562.293333pt;}
.xac_c00489{left:565.333333pt;}
.x92_c00489{left:567.626667pt;}
.xd_c00489{left:568.960000pt;}
.xf2_c00489{left:570.666667pt;}
.x1a_c00489{left:573.133333pt;}
.x68_c00489{left:574.293333pt;}
.xe0_c00489{left:576.373333pt;}
.xe4_c00489{left:578.666667pt;}
.x59_c00489{left:579.626667pt;}
.xb8_c00489{left:586.293333pt;}
.xd4_c00489{left:589.333333pt;}
.xe_c00489{left:592.000000pt;}
.xad_c00489{left:595.626667pt;}
.x23_c00489{left:596.960000pt;}
.xe1_c00489{left:598.666667pt;}
.x2d_c00489{left:600.000000pt;}
.x69_c00489{left:602.666667pt;}
.xa2_c00489{left:604.000000pt;}
.x89_c00489{left:605.706667pt;}
.x72_c00489{left:607.040000pt;}
.xeb_c00489{left:610.293333pt;}
.x1b_c00489{left:612.000000pt;}
.x97_c00489{left:614.293333pt;}
.x2e_c00489{left:616.000000pt;}
.x6a_c00489{left:617.333333pt;}
.x5a_c00489{left:619.040000pt;}
.x47_c00489{left:620.373333pt;}
.xda_c00489{left:623.626667pt;}
.xc7_c00489{left:626.293333pt;}
.x3c_c00489{left:627.626667pt;}
.x8a_c00489{left:629.333333pt;}
.xfe_c00489{left:632.000000pt;}
.xd5_c00489{left:637.333333pt;}
.x73_c00489{left:638.666667pt;}
.x81_c00489{left:640.000000pt;}
.x98_c00489{left:643.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_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_9e525fc6e79f1ae17a0a3e72.woff2')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.meb_c00490{transform:matrix(0.281513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281513,0.000000,0.000000,0.250000,0,0);}
.me9_c00490{transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);}
.med_c00490{transform:matrix(0.346218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346218,0.000000,0.000000,0.250000,0,0);}
.mc5_c00490{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m1d_c00490{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.md_c00490{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m1e_c00490{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.mbb_c00490{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m9f_c00490{transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);}
.mb7_c00490{transform:matrix(0.384874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384874,0.000000,0.000000,0.250000,0,0);}
.m45_c00490{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m69_c00490{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m4_c00490{transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);}
.m53_c00490{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m99_c00490{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m11_c00490{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.mcc_c00490{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.ma9_c00490{transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);}
.m9d_c00490{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m73_c00490{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m4f_c00490{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m4a_c00490{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m8c_c00490{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mad_c00490{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m6c_c00490{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.me2_c00490{transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);}
.m67_c00490{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mf0_c00490{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.ma6_c00490{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m75_c00490{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.mc8_c00490{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.md4_c00490{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.mb2_c00490{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mde_c00490{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m51_c00490{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mf4_c00490{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m3f_c00490{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m6f_c00490{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m55_c00490{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m39_c00490{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m90_c00490{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m7b_c00490{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m3a_c00490{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.m66_c00490{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m2e_c00490{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m3b_c00490{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.md8_c00490{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mf2_c00490{transform:matrix(0.426764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426764,0.000000,0.000000,0.250000,0,0);}
.mcb_c00490{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m32_c00490{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m3e_c00490{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m36_c00490{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.mc1_c00490{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.mcd_c00490{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mf3_c00490{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.mea_c00490{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.md9_c00490{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m4e_c00490{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.md1_c00490{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m87_c00490{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m9c_c00490{transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);}
.m92_c00490{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.ma4_c00490{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.m33_c00490{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m96_c00490{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m64_c00490{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.ma8_c00490{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m71_c00490{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m6b_c00490{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m88_c00490{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m6e_c00490{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m1b_c00490{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.ma0_c00490{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m26_c00490{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m22_c00490{transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);}
.mce_c00490{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m80_c00490{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m7_c00490{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m50_c00490{transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);}
.m63_c00490{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m28_c00490{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.mec_c00490{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.maf_c00490{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.md7_c00490{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.mbc_c00490{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m40_c00490{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m2b_c00490{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m13_c00490{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.mc3_c00490{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.mb1_c00490{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m34_c00490{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.md0_c00490{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.mc0_c00490{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m1_c00490{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.ma_c00490{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.ma2_c00490{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.md5_c00490{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m27_c00490{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.mc_c00490{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_c00490{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m83_c00490{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.mb3_c00490{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.mca_c00490{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.ma5_c00490{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mee_c00490{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m9_c00490{transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);}
.m54_c00490{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m10_c00490{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m41_c00490{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mac_c00490{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m62_c00490{transform:matrix(0.513451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513451,0.000000,0.000000,0.250000,0,0);}
.m77_c00490{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m4c_c00490{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m91_c00490{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m49_c00490{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m16_c00490{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m8f_c00490{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m2c_c00490{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.mb6_c00490{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m74_c00490{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m17_c00490{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m8b_c00490{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m85_c00490{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.ma7_c00490{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m1f_c00490{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);}
.mcf_c00490{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m5b_c00490{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m9e_c00490{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m81_c00490{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m72_c00490{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m9a_c00490{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.mb9_c00490{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.maa_c00490{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m43_c00490{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m1c_c00490{transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);}
.m60_c00490{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m2f_c00490{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m3d_c00490{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mf5_c00490{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m9b_c00490{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m6_c00490{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m61_c00490{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m1a_c00490{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m6d_c00490{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m47_c00490{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m23_c00490{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m68_c00490{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m52_c00490{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m5a_c00490{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mdc_c00490{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mf1_c00490{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.mb4_c00490{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.me3_c00490{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m4b_c00490{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mdf_c00490{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m59_c00490{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m8a_c00490{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m94_c00490{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.mae_c00490{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.md2_c00490{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m65_c00490{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m5e_c00490{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mda_c00490{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m5_c00490{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m25_c00490{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m8e_c00490{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_c00490{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m44_c00490{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mef_c00490{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.me7_c00490{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m84_c00490{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.m6a_c00490{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m19_c00490{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.me6_c00490{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.me4_c00490{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.ma3_c00490{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m48_c00490{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.md3_c00490{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.mbf_c00490{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.mc4_c00490{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.mb0_c00490{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.mb5_c00490{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m98_c00490{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m8d_c00490{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mc6_c00490{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.me_c00490{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m12_c00490{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.mc9_c00490{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m2d_c00490{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m79_c00490{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m93_c00490{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m82_c00490{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m35_c00490{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.mc2_c00490{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.mb8_c00490{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mba_c00490{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);}
.md6_c00490{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.me5_c00490{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.mbd_c00490{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m5f_c00490{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m7f_c00490{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m95_c00490{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m46_c00490{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m56_c00490{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m2a_c00490{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mdb_c00490{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m37_c00490{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m7a_c00490{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.mf_c00490{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m15_c00490{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m21_c00490{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m14_c00490{transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);}
.ma1_c00490{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);}
.mdd_c00490{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m3_c00490{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m7d_c00490{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m57_c00490{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m8_c00490{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.m38_c00490{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m18_c00490{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m24_c00490{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m0_c00490{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m5d_c00490{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m30_c00490{transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);}
.me8_c00490{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m7e_c00490{transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);}
.m76_c00490{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m7c_c00490{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m97_c00490{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m42_c00490{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.mc7_c00490{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m58_c00490{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m89_c00490{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m5c_c00490{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.me0_c00490{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m4d_c00490{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mab_c00490{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.me1_c00490{transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);}
.m78_c00490{transform:matrix(0.810096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.810096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.810096,0.000000,0.000000,0.250000,0,0);}
.mbe_c00490{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m86_c00490{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.mb_c00490{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m31_c00490{transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);}
.m2_c00490{transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);}
.m29_c00490{transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);}
.m3c_c00490{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.v0_c00490{vertical-align:0.000000px;}
.ls0_c00490{letter-spacing:0.000000px;}
.sc__c00490{text-shadow:none;}
.sc0_c00490{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00490{-webkit-text-stroke:0px transparent;}
.sc0_c00490{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00490{word-spacing:-6.184625px;}
.ws1_c00490{word-spacing:-4.228560px;}
.ws2_c00490{word-spacing:0.000000px;}
.fc0_c00490{color:transparent;}
.fs7_c00490{font-size:3.420000px;}
.fs5_c00490{font-size:13.620000px;}
.fs0_c00490{font-size:18.720000px;}
.fs2_c00490{font-size:20.400000px;}
.fs4_c00490{font-size:25.500000px;}
.fs1_c00490{font-size:28.920000px;}
.fs3_c00490{font-size:32.340000px;}
.fs6_c00490{font-size:35.700000px;}
.fs8_c00490{font-size:39.120000px;}
.y0_c00490{bottom:0.000000px;}
.yd7_c00490{bottom:250.905000px;}
.yd8_c00490{bottom:253.245000px;}
.yd9_c00490{bottom:254.970000px;}
.yd6_c00490{bottom:255.405000px;}
.yd3_c00490{bottom:272.745000px;}
.yd4_c00490{bottom:273.405000px;}
.yd2_c00490{bottom:274.905000px;}
.yd5_c00490{bottom:276.405000px;}
.ycf_c00490{bottom:289.905000px;}
.yd0_c00490{bottom:291.180000px;}
.ycd_c00490{bottom:292.245000px;}
.yce_c00490{bottom:294.405000px;}
.yd1_c00490{bottom:295.905000px;}
.yca_c00490{bottom:310.905000px;}
.yc9_c00490{bottom:311.745000px;}
.yc8_c00490{bottom:313.905000px;}
.ycc_c00490{bottom:314.130000px;}
.ycb_c00490{bottom:315.405000px;}
.yc6_c00490{bottom:332.325000px;}
.yc5_c00490{bottom:333.405000px;}
.yc4_c00490{bottom:333.630000px;}
.yc7_c00490{bottom:334.470000px;}
.ybf_c00490{bottom:349.905000px;}
.yc1_c00490{bottom:352.245000px;}
.yc2_c00490{bottom:352.905000px;}
.yc3_c00490{bottom:353.130000px;}
.ybe_c00490{bottom:353.970000px;}
.yc0_c00490{bottom:354.405000px;}
.ybb_c00490{bottom:370.245000px;}
.ybd_c00490{bottom:370.470000px;}
.yb9_c00490{bottom:371.745000px;}
.yba_c00490{bottom:372.405000px;}
.ybc_c00490{bottom:373.905000px;}
.yb6_c00490{bottom:388.905000px;}
.yb8_c00490{bottom:391.245000px;}
.yb7_c00490{bottom:392.325000px;}
.yb5_c00490{bottom:393.405000px;}
.yb2_c00490{bottom:410.745000px;}
.yb4_c00490{bottom:411.630000px;}
.yb1_c00490{bottom:411.825000px;}
.yb3_c00490{bottom:412.470000px;}
.yb0_c00490{bottom:412.905000px;}
.yae_c00490{bottom:430.245000px;}
.yaf_c00490{bottom:432.405000px;}
.yac_c00490{bottom:449.325000px;}
.yad_c00490{bottom:449.745000px;}
.yaa_c00490{bottom:451.905000px;}
.yab_c00490{bottom:452.970000px;}
.ya7_c00490{bottom:468.405000px;}
.ya8_c00490{bottom:469.245000px;}
.ya9_c00490{bottom:470.130000px;}
.ya6_c00490{bottom:471.405000px;}
.ya5_c00490{bottom:471.630000px;}
.ya3_c00490{bottom:488.745000px;}
.ya4_c00490{bottom:490.470000px;}
.ya2_c00490{bottom:490.905000px;}
.ya1_c00490{bottom:491.970000px;}
.ya0_c00490{bottom:492.405000px;}
.y9d_c00490{bottom:506.745000px;}
.y9f_c00490{bottom:508.245000px;}
.y9c_c00490{bottom:509.745000px;}
.y9e_c00490{bottom:510.405000px;}
.y9b_c00490{bottom:510.630000px;}
.y9a_c00490{bottom:511.905000px;}
.y98_c00490{bottom:529.245000px;}
.y99_c00490{bottom:529.905000px;}
.y97_c00490{bottom:530.130000px;}
.y96_c00490{bottom:531.405000px;}
.y92_c00490{bottom:547.245000px;}
.y95_c00490{bottom:548.325000px;}
.y93_c00490{bottom:548.745000px;}
.y94_c00490{bottom:549.630000px;}
.y91_c00490{bottom:550.905000px;}
.y8d_c00490{bottom:568.245000px;}
.y90_c00490{bottom:569.970000px;}
.y8e_c00490{bottom:570.405000px;}
.y8f_c00490{bottom:571.470000px;}
.y8b_c00490{bottom:589.245000px;}
.y89_c00490{bottom:589.905000px;}
.y8c_c00490{bottom:590.130000px;}
.y8a_c00490{bottom:591.405000px;}
.y88_c00490{bottom:606.405000px;}
.y86_c00490{bottom:609.405000px;}
.y87_c00490{bottom:610.905000px;}
.y84_c00490{bottom:625.905000px;}
.y83_c00490{bottom:628.245000px;}
.y82_c00490{bottom:629.130000px;}
.y85_c00490{bottom:630.405000px;}
.y7f_c00490{bottom:647.745000px;}
.y81_c00490{bottom:648.825000px;}
.y7e_c00490{bottom:649.905000px;}
.y80_c00490{bottom:650.130000px;}
.y78_c00490{bottom:665.745000px;}
.y7c_c00490{bottom:668.130000px;}
.y7b_c00490{bottom:668.550000px;}
.y79_c00490{bottom:669.405000px;}
.y7a_c00490{bottom:669.630000px;}
.y7d_c00490{bottom:670.905000px;}
.y75_c00490{bottom:686.745000px;}
.y76_c00490{bottom:688.245000px;}
.y72_c00490{bottom:688.905000px;}
.y73_c00490{bottom:689.130000px;}
.y74_c00490{bottom:689.325000px;}
.y71_c00490{bottom:689.970000px;}
.y77_c00490{bottom:690.405000px;}
.y6e_c00490{bottom:705.405000px;}
.y6f_c00490{bottom:706.245000px;}
.y6b_c00490{bottom:708.405000px;}
.y6c_c00490{bottom:708.630000px;}
.y6d_c00490{bottom:709.470000px;}
.y70_c00490{bottom:709.905000px;}
.y6a_c00490{bottom:724.905000px;}
.y66_c00490{bottom:725.745000px;}
.y69_c00490{bottom:726.825000px;}
.y64_c00490{bottom:727.905000px;}
.y68_c00490{bottom:728.130000px;}
.y65_c00490{bottom:728.970000px;}
.y67_c00490{bottom:729.405000px;}
.y63_c00490{bottom:745.245000px;}
.y5f_c00490{bottom:746.745000px;}
.y62_c00490{bottom:747.405000px;}
.y5e_c00490{bottom:747.630000px;}
.y61_c00490{bottom:747.825000px;}
.y60_c00490{bottom:748.905000px;}
.y5d_c00490{bottom:764.970000px;}
.y5c_c00490{bottom:767.130000px;}
.y5b_c00490{bottom:767.325000px;}
.y59_c00490{bottom:767.970000px;}
.y5a_c00490{bottom:768.405000px;}
.y55_c00490{bottom:785.745000px;}
.y56_c00490{bottom:786.630000px;}
.y57_c00490{bottom:786.825000px;}
.y54_c00490{bottom:787.470000px;}
.y53_c00490{bottom:787.905000px;}
.y58_c00490{bottom:788.970000px;}
.y50_c00490{bottom:805.245000px;}
.y52_c00490{bottom:806.130000px;}
.y51_c00490{bottom:807.405000px;}
.y4f_c00490{bottom:823.245000px;}
.y4c_c00490{bottom:824.745000px;}
.y4b_c00490{bottom:825.825000px;}
.y4d_c00490{bottom:826.905000px;}
.y4e_c00490{bottom:827.130000px;}
.y44_c00490{bottom:843.405000px;}
.y48_c00490{bottom:844.245000px;}
.y4a_c00490{bottom:845.130000px;}
.y49_c00490{bottom:845.745000px;}
.y45_c00490{bottom:846.405000px;}
.y46_c00490{bottom:846.825000px;}
.y47_c00490{bottom:847.905000px;}
.y42_c00490{bottom:862.905000px;}
.y43_c00490{bottom:864.825000px;}
.y3e_c00490{bottom:865.905000px;}
.y40_c00490{bottom:866.130000px;}
.y41_c00490{bottom:866.970000px;}
.y3f_c00490{bottom:867.405000px;}
.y3b_c00490{bottom:883.245000px;}
.y37_c00490{bottom:884.745000px;}
.y39_c00490{bottom:885.405000px;}
.y3d_c00490{bottom:885.630000px;}
.y3a_c00490{bottom:885.825000px;}
.y3c_c00490{bottom:886.470000px;}
.y38_c00490{bottom:886.905000px;}
.y35_c00490{bottom:904.245000px;}
.y36_c00490{bottom:905.130000px;}
.y34_c00490{bottom:906.405000px;}
.y30_c00490{bottom:923.745000px;}
.y33_c00490{bottom:924.630000px;}
.y32_c00490{bottom:925.905000px;}
.y31_c00490{bottom:925.920000px;}
.y2f_c00490{bottom:946.905000px;}
.y2d_c00490{bottom:947.130000px;}
.y2e_c00490{bottom:949.050000px;}
.y2b_c00490{bottom:960.405000px;}
.y28_c00490{bottom:960.825000px;}
.y24_c00490{bottom:961.050000px;}
.y29_c00490{bottom:961.695000px;}
.y25_c00490{bottom:961.905000px;}
.y2a_c00490{bottom:962.550000px;}
.y2c_c00490{bottom:962.970000px;}
.y27_c00490{bottom:963.195000px;}
.y26_c00490{bottom:964.050000px;}
.y23_c00490{bottom:974.325000px;}
.y21_c00490{bottom:976.470000px;}
.y22_c00490{bottom:977.550000px;}
.y1e_c00490{bottom:989.325000px;}
.y1a_c00490{bottom:989.550000px;}
.y1b_c00490{bottom:990.405000px;}
.y1c_c00490{bottom:990.630000px;}
.y1f_c00490{bottom:991.470000px;}
.y20_c00490{bottom:991.695000px;}
.y1d_c00490{bottom:992.550000px;}
.y19_c00490{bottom:1004.325000px;}
.y14_c00490{bottom:1004.550000px;}
.y15_c00490{bottom:1005.405000px;}
.y17_c00490{bottom:1006.470000px;}
.y18_c00490{bottom:1006.695000px;}
.y16_c00490{bottom:1007.550000px;}
.y13_c00490{bottom:1019.325000px;}
.y10_c00490{bottom:1035.405000px;}
.yf_c00490{bottom:1035.630000px;}
.y12_c00490{bottom:1036.470000px;}
.y11_c00490{bottom:1037.550000px;}
.ya_c00490{bottom:1048.470000px;}
.ye_c00490{bottom:1049.325000px;}
.yb_c00490{bottom:1049.550000px;}
.yc_c00490{bottom:1051.050000px;}
.yd_c00490{bottom:1051.470000px;}
.y3_c00490{bottom:1064.130000px;}
.y5_c00490{bottom:1064.325000px;}
.y8_c00490{bottom:1064.970000px;}
.y9_c00490{bottom:1065.195000px;}
.y7_c00490{bottom:1065.405000px;}
.y4_c00490{bottom:1066.050000px;}
.y6_c00490{bottom:1066.470000px;}
.y2_c00490{bottom:1099.905000px;}
.y1_c00490{bottom:1103.130000px;}
.h8_c00490{height:4.206533px;}
.h6_c00490{height:16.752334px;}
.h1_c00490{height:23.025234px;}
.h3_c00490{height:25.091602px;}
.h5_c00490{height:31.364502px;}
.h2_c00490{height:35.571035px;}
.h4_c00490{height:39.777568px;}
.h7_c00490{height:43.910303px;}
.h9_c00490{height:48.116836px;}
.h0_c00490{height:1335.000000px;}
.w0_c00490{width:880.500000px;}
.x0_c00490{left:0.000000px;}
.xe_c00490{left:151.080000px;}
.x40_c00490{left:153.420000px;}
.xfc_c00490{left:154.500000px;}
.x103_c00490{left:156.000000px;}
.x41_c00490{left:163.500000px;}
.x13_c00490{left:165.000000px;}
.x3_c00490{left:166.080000px;}
.x44_c00490{left:167.580000px;}
.xf7_c00490{left:169.500000px;}
.x106_c00490{left:171.000000px;}
.xac_c00490{left:172.920000px;}
.x1f_c00490{left:178.500000px;}
.x9e_c00490{left:179.580000px;}
.x4_c00490{left:183.000000px;}
.xa4_c00490{left:184.500000px;}
.x10b_c00490{left:189.000000px;}
.xf1_c00490{left:190.920000px;}
.xe1_c00490{left:192.000000px;}
.xf_c00490{left:195.420000px;}
.x94_c00490{left:196.500000px;}
.xb0_c00490{left:198.000000px;}
.x42_c00490{left:199.500000px;}
.xad_c00490{left:201.000000px;}
.x62_c00490{left:203.580000px;}
.x4d_c00490{left:205.500000px;}
.x75_c00490{left:207.000000px;}
.xf6_c00490{left:208.080000px;}
.x9f_c00490{left:211.080000px;}
.x10c_c00490{left:212.580000px;}
.x95_c00490{left:213.855000px;}
.xe5_c00490{left:214.920000px;}
.x112_c00490{left:217.500000px;}
.x57_c00490{left:218.580000px;}
.x5_c00490{left:220.500000px;}
.x35_c00490{left:223.920000px;}
.xbb_c00490{left:225.420000px;}
.x8a_c00490{left:226.500000px;}
.x43_c00490{left:228.420000px;}
.xb1_c00490{left:229.500000px;}
.xa0_c00490{left:231.420000px;}
.xae_c00490{left:234.000000px;}
.x10_c00490{left:237.000000px;}
.x81_c00490{left:238.920000px;}
.x6e_c00490{left:240.420000px;}
.xc2_c00490{left:241.920000px;}
.xe6_c00490{left:243.420000px;}
.xfd_c00490{left:244.500000px;}
.xa5_c00490{left:246.000000px;}
.x28_c00490{left:248.580000px;}
.x36_c00490{left:250.500000px;}
.x14_c00490{left:252.420000px;}
.xd9_c00490{left:253.500000px;}
.x45_c00490{left:255.000000px;}
.x115_c00490{left:256.500000px;}
.x63_c00490{left:258.000000px;}
.x76_c00490{left:259.500000px;}
.x58_c00490{left:265.500000px;}
.x82_c00490{left:267.420000px;}
.x20_c00490{left:269.580000px;}
.x11_c00490{left:272.580000px;}
.x46_c00490{left:274.500000px;}
.xea_c00490{left:276.420000px;}
.xbc_c00490{left:279.000000px;}
.x77_c00490{left:280.500000px;}
.x6f_c00490{left:281.580000px;}
.xd2_c00490{left:283.500000px;}
.x21_c00490{left:285.645000px;}
.xcd_c00490{left:287.580000px;}
.x8b_c00490{left:289.500000px;}
.x64_c00490{left:291.000000px;}
.xb2_c00490{left:293.580000px;}
.x9a_c00490{left:295.920000px;}
.x78_c00490{left:297.420000px;}
.x12_c00490{left:300.000000px;}
.xa1_c00490{left:301.080000px;}
.xd3_c00490{left:303.420000px;}
.x37_c00490{left:304.500000px;}
.x15_c00490{left:306.000000px;}
.x6_c00490{left:307.500000px;}
.x4e_c00490{left:309.000000px;}
.x29_c00490{left:310.500000px;}
.xb3_c00490{left:312.420000px;}
.x59_c00490{left:313.500000px;}
.xfe_c00490{left:315.000000px;}
.x10d_c00490{left:316.920000px;}
.x83_c00490{left:322.500000px;}
.xc3_c00490{left:327.000000px;}
.x8c_c00490{left:328.500000px;}
.x5a_c00490{left:330.420000px;}
.x65_c00490{left:331.500000px;}
.xc8_c00490{left:333.420000px;}
.x79_c00490{left:336.420000px;}
.x9b_c00490{left:337.500000px;}
.xf8_c00490{left:339.420000px;}
.x2a_c00490{left:341.145000px;}
.xc4_c00490{left:343.500000px;}
.x8d_c00490{left:345.420000px;}
.x116_c00490{left:346.500000px;}
.x7_c00490{left:348.000000px;}
.xaf_c00490{left:349.500000px;}
.xd4_c00490{left:352.920000px;}
.xa6_c00490{left:355.080000px;}
.xeb_c00490{left:357.000000px;}
.x4f_c00490{left:358.080000px;}
.x66_c00490{left:360.420000px;}
.x70_c00490{left:364.920000px;}
.x22_c00490{left:366.000000px;}
.x7a_c00490{left:367.500000px;}
.x110_c00490{left:370.500000px;}
.x104_c00490{left:372.420000px;}
.x47_c00490{left:373.920000px;}
.xbd_c00490{left:375.000000px;}
.x84_c00490{left:376.500000px;}
.x50_c00490{left:378.420000px;}
.xb4_c00490{left:379.500000px;}
.x10e_c00490{left:381.420000px;}
.xda_c00490{left:383.580000px;}
.xa7_c00490{left:385.500000px;}
.xff_c00490{left:388.080000px;}
.x38_c00490{left:390.000000px;}
.x16_c00490{left:391.080000px;}
.x5b_c00490{left:395.580000px;}
.x71_c00490{left:397.500000px;}
.x105_c00490{left:398.580000px;}
.x7b_c00490{left:400.920000px;}
.xdb_c00490{left:402.420000px;}
.xf9_c00490{left:403.920000px;}
.x1_c00490{left:405.000000px;}
.x8e_c00490{left:406.080000px;}
.x51_c00490{left:408.420000px;}
.x85_c00490{left:409.920000px;}
.xc5_c00490{left:411.420000px;}
.x9c_c00490{left:418.500000px;}
.x10f_c00490{left:420.000000px;}
.x17_c00490{left:421.080000px;}
.x2b_c00490{left:424.080000px;}
.x23_c00490{left:427.080000px;}
.xdc_c00490{left:430.080000px;}
.xee_c00490{left:431.580000px;}
.xa2_c00490{left:433.500000px;}
.x2c_c00490{left:436.500000px;}
.x18_c00490{left:438.000000px;}
.x67_c00490{left:440.580000px;}
.x39_c00490{left:442.500000px;}
.x113_c00490{left:444.000000px;}
.x100_c00490{left:445.920000px;}
.xb5_c00490{left:447.420000px;}
.xd5_c00490{left:450.000000px;}
.x8_c00490{left:453.000000px;}
.x5c_c00490{left:454.920000px;}
.x52_c00490{left:456.000000px;}
.xbe_c00490{left:457.920000px;}
.xc9_c00490{left:459.000000px;}
.x86_c00490{left:460.920000px;}
.x68_c00490{left:462.000000px;}
.x111_c00490{left:466.500000px;}
.x48_c00490{left:469.080000px;}
.x2d_c00490{left:470.580000px;}
.x7c_c00490{left:472.920000px;}
.xb6_c00490{left:474.420000px;}
.xe2_c00490{left:478.920000px;}
.xbf_c00490{left:480.000000px;}
.xd6_c00490{left:483.000000px;}
.x24_c00490{left:484.500000px;}
.x107_c00490{left:487.080000px;}
.x87_c00490{left:489.000000px;}
.x5d_c00490{left:492.000000px;}
.x19_c00490{left:493.080000px;}
.x25_c00490{left:495.000000px;}
.x96_c00490{left:496.500000px;}
.x8f_c00490{left:498.420000px;}
.xec_c00490{left:499.500000px;}
.x2e_c00490{left:501.420000px;}
.x7d_c00490{left:502.920000px;}
.xa8_c00490{left:504.000000px;}
.xe3_c00490{left:505.500000px;}
.xdd_c00490{left:506.580000px;}
.xc0_c00490{left:507.855000px;}
.x114_c00490{left:510.000000px;}
.x53_c00490{left:511.500000px;}
.x49_c00490{left:513.000000px;}
.x9_c00490{left:514.500000px;}
.xe7_c00490{left:515.580000px;}
.xf2_c00490{left:517.920000px;}
.xef_c00490{left:519.420000px;}
.xb7_c00490{left:520.500000px;}
.xce_c00490{left:525.420000px;}
.x3a_c00490{left:526.500000px;}
.x26_c00490{left:529.080000px;}
.x5e_c00490{left:530.580000px;}
.xed_c00490{left:534.000000px;}
.x4a_c00490{left:535.920000px;}
.x90_c00490{left:538.500000px;}
.x97_c00490{left:540.000000px;}
.x69_c00490{left:541.500000px;}
.x7e_c00490{left:543.420000px;}
.x2f_c00490{left:544.500000px;}
.xd7_c00490{left:546.420000px;}
.x108_c00490{left:547.920000px;}
.x1a_c00490{left:549.000000px;}
.x101_c00490{left:550.920000px;}
.xf3_c00490{left:552.420000px;}
.xc1_c00490{left:553.500000px;}
.x27_c00490{left:556.500000px;}
.xca_c00490{left:558.000000px;}
.x117_c00490{left:559.080000px;}
.x3b_c00490{left:562.080000px;}
.x72_c00490{left:568.080000px;}
.xa9_c00490{left:570.000000px;}
.xa_c00490{left:571.080000px;}
.xcf_c00490{left:572.580000px;}
.x4b_c00490{left:574.080000px;}
.x30_c00490{left:576.420000px;}
.xb8_c00490{left:579.000000px;}
.x1b_c00490{left:580.500000px;}
.x5f_c00490{left:582.420000px;}
.xde_c00490{left:583.500000px;}
.x54_c00490{left:586.080000px;}
.x7f_c00490{left:588.000000px;}
.x6a_c00490{left:589.500000px;}
.xc6_c00490{left:591.000000px;}
.x3c_c00490{left:592.080000px;}
.x11a_c00490{left:594.000000px;}
.xcb_c00490{left:595.500000px;}
.x73_c00490{left:598.500000px;}
.xf4_c00490{left:601.500000px;}
.x31_c00490{left:603.000000px;}
.xe8_c00490{left:604.500000px;}
.x91_c00490{left:607.920000px;}
.x88_c00490{left:611.580000px;}
.x4c_c00490{left:615.000000px;}
.x6b_c00490{left:616.920000px;}
.xfa_c00490{left:618.000000px;}
.x118_c00490{left:622.920000px;}
.x80_c00490{left:624.420000px;}
.xf0_c00490{left:625.500000px;}
.x98_c00490{left:626.580000px;}
.x3d_c00490{left:630.000000px;}
.xb_c00490{left:631.500000px;}
.x92_c00490{left:634.500000px;}
.x102_c00490{left:636.000000px;}
.x55_c00490{left:637.080000px;}
.x1c_c00490{left:638.580000px;}
.xdf_c00490{left:640.920000px;}
.x89_c00490{left:643.500000px;}
.xd0_c00490{left:645.000000px;}
.xc_c00490{left:646.500000px;}
.x32_c00490{left:648.000000px;}
.xaa_c00490{left:649.080000px;}
.x119_c00490{left:651.000000px;}
.x60_c00490{left:652.080000px;}
.x6c_c00490{left:654.000000px;}
.xd8_c00490{left:655.920000px;}
.xc7_c00490{left:658.920000px;}
.x33_c00490{left:660.000000px;}
.x3e_c00490{left:661.920000px;}
.x99_c00490{left:663.420000px;}
.xb9_c00490{left:666.000000px;}
.xa3_c00490{left:669.000000px;}
.xf5_c00490{left:670.500000px;}
.x109_c00490{left:675.000000px;}
.x93_c00490{left:677.580000px;}
.xab_c00490{left:680.580000px;}
.xcc_c00490{left:682.920000px;}
.x74_c00490{left:685.080000px;}
.x1d_c00490{left:688.920000px;}
.x3f_c00490{left:691.500000px;}
.xe4_c00490{left:693.420000px;}
.x6d_c00490{left:696.000000px;}
.x9d_c00490{left:697.920000px;}
.x1e_c00490{left:699.000000px;}
.xd_c00490{left:700.080000px;}
.x56_c00490{left:702.000000px;}
.x2_c00490{left:703.500000px;}
.x34_c00490{left:706.080000px;}
.xfb_c00490{left:709.920000px;}
.x10a_c00490{left:715.080000px;}
.xe0_c00490{left:716.580000px;}
.xba_c00490{left:718.500000px;}
.xe9_c00490{left:720.000000px;}
.x61_c00490{left:721.500000px;}
.xd1_c00490{left:723.000000px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.ls0_c00490{letter-spacing:0.000000pt;}
.ws0_c00490{word-spacing:-5.497444pt;}
.ws1_c00490{word-spacing:-3.758720pt;}
.ws2_c00490{word-spacing:0.000000pt;}
.fs7_c00490{font-size:3.040000pt;}
.fs5_c00490{font-size:12.106667pt;}
.fs0_c00490{font-size:16.640000pt;}
.fs2_c00490{font-size:18.133333pt;}
.fs4_c00490{font-size:22.666667pt;}
.fs1_c00490{font-size:25.706667pt;}
.fs3_c00490{font-size:28.746667pt;}
.fs6_c00490{font-size:31.733333pt;}
.fs8_c00490{font-size:34.773333pt;}
.y0_c00490{bottom:0.000000pt;}
.yd7_c00490{bottom:223.026667pt;}
.yd8_c00490{bottom:225.106667pt;}
.yd9_c00490{bottom:226.640000pt;}
.yd6_c00490{bottom:227.026667pt;}
.yd3_c00490{bottom:242.440000pt;}
.yd4_c00490{bottom:243.026667pt;}
.yd2_c00490{bottom:244.360000pt;}
.yd5_c00490{bottom:245.693333pt;}
.ycf_c00490{bottom:257.693333pt;}
.yd0_c00490{bottom:258.826667pt;}
.ycd_c00490{bottom:259.773333pt;}
.yce_c00490{bottom:261.693333pt;}
.yd1_c00490{bottom:263.026667pt;}
.yca_c00490{bottom:276.360000pt;}
.yc9_c00490{bottom:277.106667pt;}
.yc8_c00490{bottom:279.026667pt;}
.ycc_c00490{bottom:279.226667pt;}
.ycb_c00490{bottom:280.360000pt;}
.yc6_c00490{bottom:295.400000pt;}
.yc5_c00490{bottom:296.360000pt;}
.yc4_c00490{bottom:296.560000pt;}
.yc7_c00490{bottom:297.306667pt;}
.ybf_c00490{bottom:311.026667pt;}
.yc1_c00490{bottom:313.106667pt;}
.yc2_c00490{bottom:313.693333pt;}
.yc3_c00490{bottom:313.893333pt;}
.ybe_c00490{bottom:314.640000pt;}
.yc0_c00490{bottom:315.026667pt;}
.ybb_c00490{bottom:329.106667pt;}
.ybd_c00490{bottom:329.306667pt;}
.yb9_c00490{bottom:330.440000pt;}
.yba_c00490{bottom:331.026667pt;}
.ybc_c00490{bottom:332.360000pt;}
.yb6_c00490{bottom:345.693333pt;}
.yb8_c00490{bottom:347.773333pt;}
.yb7_c00490{bottom:348.733333pt;}
.yb5_c00490{bottom:349.693333pt;}
.yb2_c00490{bottom:365.106667pt;}
.yb4_c00490{bottom:365.893333pt;}
.yb1_c00490{bottom:366.066667pt;}
.yb3_c00490{bottom:366.640000pt;}
.yb0_c00490{bottom:367.026667pt;}
.yae_c00490{bottom:382.440000pt;}
.yaf_c00490{bottom:384.360000pt;}
.yac_c00490{bottom:399.400000pt;}
.yad_c00490{bottom:399.773333pt;}
.yaa_c00490{bottom:401.693333pt;}
.yab_c00490{bottom:402.640000pt;}
.ya7_c00490{bottom:416.360000pt;}
.ya8_c00490{bottom:417.106667pt;}
.ya9_c00490{bottom:417.893333pt;}
.ya6_c00490{bottom:419.026667pt;}
.ya5_c00490{bottom:419.226667pt;}
.ya3_c00490{bottom:434.440000pt;}
.ya4_c00490{bottom:435.973333pt;}
.ya2_c00490{bottom:436.360000pt;}
.ya1_c00490{bottom:437.306667pt;}
.ya0_c00490{bottom:437.693333pt;}
.y9d_c00490{bottom:450.440000pt;}
.y9f_c00490{bottom:451.773333pt;}
.y9c_c00490{bottom:453.106667pt;}
.y9e_c00490{bottom:453.693333pt;}
.y9b_c00490{bottom:453.893333pt;}
.y9a_c00490{bottom:455.026667pt;}
.y98_c00490{bottom:470.440000pt;}
.y99_c00490{bottom:471.026667pt;}
.y97_c00490{bottom:471.226667pt;}
.y96_c00490{bottom:472.360000pt;}
.y92_c00490{bottom:486.440000pt;}
.y95_c00490{bottom:487.400000pt;}
.y93_c00490{bottom:487.773333pt;}
.y94_c00490{bottom:488.560000pt;}
.y91_c00490{bottom:489.693333pt;}
.y8d_c00490{bottom:505.106667pt;}
.y90_c00490{bottom:506.640000pt;}
.y8e_c00490{bottom:507.026667pt;}
.y8f_c00490{bottom:507.973333pt;}
.y8b_c00490{bottom:523.773333pt;}
.y89_c00490{bottom:524.360000pt;}
.y8c_c00490{bottom:524.560000pt;}
.y8a_c00490{bottom:525.693333pt;}
.y88_c00490{bottom:539.026667pt;}
.y86_c00490{bottom:541.693333pt;}
.y87_c00490{bottom:543.026667pt;}
.y84_c00490{bottom:556.360000pt;}
.y83_c00490{bottom:558.440000pt;}
.y82_c00490{bottom:559.226667pt;}
.y85_c00490{bottom:560.360000pt;}
.y7f_c00490{bottom:575.773333pt;}
.y81_c00490{bottom:576.733333pt;}
.y7e_c00490{bottom:577.693333pt;}
.y80_c00490{bottom:577.893333pt;}
.y78_c00490{bottom:591.773333pt;}
.y7c_c00490{bottom:593.893333pt;}
.y7b_c00490{bottom:594.266667pt;}
.y79_c00490{bottom:595.026667pt;}
.y7a_c00490{bottom:595.226667pt;}
.y7d_c00490{bottom:596.360000pt;}
.y75_c00490{bottom:610.440000pt;}
.y76_c00490{bottom:611.773333pt;}
.y72_c00490{bottom:612.360000pt;}
.y73_c00490{bottom:612.560000pt;}
.y74_c00490{bottom:612.733333pt;}
.y71_c00490{bottom:613.306667pt;}
.y77_c00490{bottom:613.693333pt;}
.y6e_c00490{bottom:627.026667pt;}
.y6f_c00490{bottom:627.773333pt;}
.y6b_c00490{bottom:629.693333pt;}
.y6c_c00490{bottom:629.893333pt;}
.y6d_c00490{bottom:630.640000pt;}
.y70_c00490{bottom:631.026667pt;}
.y6a_c00490{bottom:644.360000pt;}
.y66_c00490{bottom:645.106667pt;}
.y69_c00490{bottom:646.066667pt;}
.y64_c00490{bottom:647.026667pt;}
.y68_c00490{bottom:647.226667pt;}
.y65_c00490{bottom:647.973333pt;}
.y67_c00490{bottom:648.360000pt;}
.y63_c00490{bottom:662.440000pt;}
.y5f_c00490{bottom:663.773333pt;}
.y62_c00490{bottom:664.360000pt;}
.y5e_c00490{bottom:664.560000pt;}
.y61_c00490{bottom:664.733333pt;}
.y60_c00490{bottom:665.693333pt;}
.y5d_c00490{bottom:679.973333pt;}
.y5c_c00490{bottom:681.893333pt;}
.y5b_c00490{bottom:682.066667pt;}
.y59_c00490{bottom:682.640000pt;}
.y5a_c00490{bottom:683.026667pt;}
.y55_c00490{bottom:698.440000pt;}
.y56_c00490{bottom:699.226667pt;}
.y57_c00490{bottom:699.400000pt;}
.y54_c00490{bottom:699.973333pt;}
.y53_c00490{bottom:700.360000pt;}
.y58_c00490{bottom:701.306667pt;}
.y50_c00490{bottom:715.773333pt;}
.y52_c00490{bottom:716.560000pt;}
.y51_c00490{bottom:717.693333pt;}
.y4f_c00490{bottom:731.773333pt;}
.y4c_c00490{bottom:733.106667pt;}
.y4b_c00490{bottom:734.066667pt;}
.y4d_c00490{bottom:735.026667pt;}
.y4e_c00490{bottom:735.226667pt;}
.y44_c00490{bottom:749.693333pt;}
.y48_c00490{bottom:750.440000pt;}
.y4a_c00490{bottom:751.226667pt;}
.y49_c00490{bottom:751.773333pt;}
.y45_c00490{bottom:752.360000pt;}
.y46_c00490{bottom:752.733333pt;}
.y47_c00490{bottom:753.693333pt;}
.y42_c00490{bottom:767.026667pt;}
.y43_c00490{bottom:768.733333pt;}
.y3e_c00490{bottom:769.693333pt;}
.y40_c00490{bottom:769.893333pt;}
.y41_c00490{bottom:770.640000pt;}
.y3f_c00490{bottom:771.026667pt;}
.y3b_c00490{bottom:785.106667pt;}
.y37_c00490{bottom:786.440000pt;}
.y39_c00490{bottom:787.026667pt;}
.y3d_c00490{bottom:787.226667pt;}
.y3a_c00490{bottom:787.400000pt;}
.y3c_c00490{bottom:787.973333pt;}
.y38_c00490{bottom:788.360000pt;}
.y35_c00490{bottom:803.773333pt;}
.y36_c00490{bottom:804.560000pt;}
.y34_c00490{bottom:805.693333pt;}
.y30_c00490{bottom:821.106667pt;}
.y33_c00490{bottom:821.893333pt;}
.y32_c00490{bottom:823.026667pt;}
.y31_c00490{bottom:823.040000pt;}
.y2f_c00490{bottom:841.693333pt;}
.y2d_c00490{bottom:841.893333pt;}
.y2e_c00490{bottom:843.600000pt;}
.y2b_c00490{bottom:853.693333pt;}
.y28_c00490{bottom:854.066667pt;}
.y24_c00490{bottom:854.266667pt;}
.y29_c00490{bottom:854.840000pt;}
.y25_c00490{bottom:855.026667pt;}
.y2a_c00490{bottom:855.600000pt;}
.y2c_c00490{bottom:855.973333pt;}
.y27_c00490{bottom:856.173333pt;}
.y26_c00490{bottom:856.933333pt;}
.y23_c00490{bottom:866.066667pt;}
.y21_c00490{bottom:867.973333pt;}
.y22_c00490{bottom:868.933333pt;}
.y1e_c00490{bottom:879.400000pt;}
.y1a_c00490{bottom:879.600000pt;}
.y1b_c00490{bottom:880.360000pt;}
.y1c_c00490{bottom:880.560000pt;}
.y1f_c00490{bottom:881.306667pt;}
.y20_c00490{bottom:881.506667pt;}
.y1d_c00490{bottom:882.266667pt;}
.y19_c00490{bottom:892.733333pt;}
.y14_c00490{bottom:892.933333pt;}
.y15_c00490{bottom:893.693333pt;}
.y17_c00490{bottom:894.640000pt;}
.y18_c00490{bottom:894.840000pt;}
.y16_c00490{bottom:895.600000pt;}
.y13_c00490{bottom:906.066667pt;}
.y10_c00490{bottom:920.360000pt;}
.yf_c00490{bottom:920.560000pt;}
.y12_c00490{bottom:921.306667pt;}
.y11_c00490{bottom:922.266667pt;}
.ya_c00490{bottom:931.973333pt;}
.ye_c00490{bottom:932.733333pt;}
.yb_c00490{bottom:932.933333pt;}
.yc_c00490{bottom:934.266667pt;}
.yd_c00490{bottom:934.640000pt;}
.y3_c00490{bottom:945.893333pt;}
.y5_c00490{bottom:946.066667pt;}
.y8_c00490{bottom:946.640000pt;}
.y9_c00490{bottom:946.840000pt;}
.y7_c00490{bottom:947.026667pt;}
.y4_c00490{bottom:947.600000pt;}
.y6_c00490{bottom:947.973333pt;}
.y2_c00490{bottom:977.693333pt;}
.y1_c00490{bottom:980.560000pt;}
.h8_c00490{height:3.739141pt;}
.h6_c00490{height:14.890964pt;}
.h1_c00490{height:20.466875pt;}
.h3_c00490{height:22.303646pt;}
.h5_c00490{height:27.879557pt;}
.h2_c00490{height:31.618698pt;}
.h4_c00490{height:35.357839pt;}
.h7_c00490{height:39.031380pt;}
.h9_c00490{height:42.770521pt;}
.h0_c00490{height:1186.666667pt;}
.w0_c00490{width:782.666667pt;}
.x0_c00490{left:0.000000pt;}
.xe_c00490{left:134.293333pt;}
.x40_c00490{left:136.373333pt;}
.xfc_c00490{left:137.333333pt;}
.x103_c00490{left:138.666667pt;}
.x41_c00490{left:145.333333pt;}
.x13_c00490{left:146.666667pt;}
.x3_c00490{left:147.626667pt;}
.x44_c00490{left:148.960000pt;}
.xf7_c00490{left:150.666667pt;}
.x106_c00490{left:152.000000pt;}
.xac_c00490{left:153.706667pt;}
.x1f_c00490{left:158.666667pt;}
.x9e_c00490{left:159.626667pt;}
.x4_c00490{left:162.666667pt;}
.xa4_c00490{left:164.000000pt;}
.x10b_c00490{left:168.000000pt;}
.xf1_c00490{left:169.706667pt;}
.xe1_c00490{left:170.666667pt;}
.xf_c00490{left:173.706667pt;}
.x94_c00490{left:174.666667pt;}
.xb0_c00490{left:176.000000pt;}
.x42_c00490{left:177.333333pt;}
.xad_c00490{left:178.666667pt;}
.x62_c00490{left:180.960000pt;}
.x4d_c00490{left:182.666667pt;}
.x75_c00490{left:184.000000pt;}
.xf6_c00490{left:184.960000pt;}
.x9f_c00490{left:187.626667pt;}
.x10c_c00490{left:188.960000pt;}
.x95_c00490{left:190.093333pt;}
.xe5_c00490{left:191.040000pt;}
.x112_c00490{left:193.333333pt;}
.x57_c00490{left:194.293333pt;}
.x5_c00490{left:196.000000pt;}
.x35_c00490{left:199.040000pt;}
.xbb_c00490{left:200.373333pt;}
.x8a_c00490{left:201.333333pt;}
.x43_c00490{left:203.040000pt;}
.xb1_c00490{left:204.000000pt;}
.xa0_c00490{left:205.706667pt;}
.xae_c00490{left:208.000000pt;}
.x10_c00490{left:210.666667pt;}
.x81_c00490{left:212.373333pt;}
.x6e_c00490{left:213.706667pt;}
.xc2_c00490{left:215.040000pt;}
.xe6_c00490{left:216.373333pt;}
.xfd_c00490{left:217.333333pt;}
.xa5_c00490{left:218.666667pt;}
.x28_c00490{left:220.960000pt;}
.x36_c00490{left:222.666667pt;}
.x14_c00490{left:224.373333pt;}
.xd9_c00490{left:225.333333pt;}
.x45_c00490{left:226.666667pt;}
.x115_c00490{left:228.000000pt;}
.x63_c00490{left:229.333333pt;}
.x76_c00490{left:230.666667pt;}
.x58_c00490{left:236.000000pt;}
.x82_c00490{left:237.706667pt;}
.x20_c00490{left:239.626667pt;}
.x11_c00490{left:242.293333pt;}
.x46_c00490{left:244.000000pt;}
.xea_c00490{left:245.706667pt;}
.xbc_c00490{left:248.000000pt;}
.x77_c00490{left:249.333333pt;}
.x6f_c00490{left:250.293333pt;}
.xd2_c00490{left:252.000000pt;}
.x21_c00490{left:253.906667pt;}
.xcd_c00490{left:255.626667pt;}
.x8b_c00490{left:257.333333pt;}
.x64_c00490{left:258.666667pt;}
.xb2_c00490{left:260.960000pt;}
.x9a_c00490{left:263.040000pt;}
.x78_c00490{left:264.373333pt;}
.x12_c00490{left:266.666667pt;}
.xa1_c00490{left:267.626667pt;}
.xd3_c00490{left:269.706667pt;}
.x37_c00490{left:270.666667pt;}
.x15_c00490{left:272.000000pt;}
.x6_c00490{left:273.333333pt;}
.x4e_c00490{left:274.666667pt;}
.x29_c00490{left:276.000000pt;}
.xb3_c00490{left:277.706667pt;}
.x59_c00490{left:278.666667pt;}
.xfe_c00490{left:280.000000pt;}
.x10d_c00490{left:281.706667pt;}
.x83_c00490{left:286.666667pt;}
.xc3_c00490{left:290.666667pt;}
.x8c_c00490{left:292.000000pt;}
.x5a_c00490{left:293.706667pt;}
.x65_c00490{left:294.666667pt;}
.xc8_c00490{left:296.373333pt;}
.x79_c00490{left:299.040000pt;}
.x9b_c00490{left:300.000000pt;}
.xf8_c00490{left:301.706667pt;}
.x2a_c00490{left:303.240000pt;}
.xc4_c00490{left:305.333333pt;}
.x8d_c00490{left:307.040000pt;}
.x116_c00490{left:308.000000pt;}
.x7_c00490{left:309.333333pt;}
.xaf_c00490{left:310.666667pt;}
.xd4_c00490{left:313.706667pt;}
.xa6_c00490{left:315.626667pt;}
.xeb_c00490{left:317.333333pt;}
.x4f_c00490{left:318.293333pt;}
.x66_c00490{left:320.373333pt;}
.x70_c00490{left:324.373333pt;}
.x22_c00490{left:325.333333pt;}
.x7a_c00490{left:326.666667pt;}
.x110_c00490{left:329.333333pt;}
.x104_c00490{left:331.040000pt;}
.x47_c00490{left:332.373333pt;}
.xbd_c00490{left:333.333333pt;}
.x84_c00490{left:334.666667pt;}
.x50_c00490{left:336.373333pt;}
.xb4_c00490{left:337.333333pt;}
.x10e_c00490{left:339.040000pt;}
.xda_c00490{left:340.960000pt;}
.xa7_c00490{left:342.666667pt;}
.xff_c00490{left:344.960000pt;}
.x38_c00490{left:346.666667pt;}
.x16_c00490{left:347.626667pt;}
.x5b_c00490{left:351.626667pt;}
.x71_c00490{left:353.333333pt;}
.x105_c00490{left:354.293333pt;}
.x7b_c00490{left:356.373333pt;}
.xdb_c00490{left:357.706667pt;}
.xf9_c00490{left:359.040000pt;}
.x1_c00490{left:360.000000pt;}
.x8e_c00490{left:360.960000pt;}
.x51_c00490{left:363.040000pt;}
.x85_c00490{left:364.373333pt;}
.xc5_c00490{left:365.706667pt;}
.x9c_c00490{left:372.000000pt;}
.x10f_c00490{left:373.333333pt;}
.x17_c00490{left:374.293333pt;}
.x2b_c00490{left:376.960000pt;}
.x23_c00490{left:379.626667pt;}
.xdc_c00490{left:382.293333pt;}
.xee_c00490{left:383.626667pt;}
.xa2_c00490{left:385.333333pt;}
.x2c_c00490{left:388.000000pt;}
.x18_c00490{left:389.333333pt;}
.x67_c00490{left:391.626667pt;}
.x39_c00490{left:393.333333pt;}
.x113_c00490{left:394.666667pt;}
.x100_c00490{left:396.373333pt;}
.xb5_c00490{left:397.706667pt;}
.xd5_c00490{left:400.000000pt;}
.x8_c00490{left:402.666667pt;}
.x5c_c00490{left:404.373333pt;}
.x52_c00490{left:405.333333pt;}
.xbe_c00490{left:407.040000pt;}
.xc9_c00490{left:408.000000pt;}
.x86_c00490{left:409.706667pt;}
.x68_c00490{left:410.666667pt;}
.x111_c00490{left:414.666667pt;}
.x48_c00490{left:416.960000pt;}
.x2d_c00490{left:418.293333pt;}
.x7c_c00490{left:420.373333pt;}
.xb6_c00490{left:421.706667pt;}
.xe2_c00490{left:425.706667pt;}
.xbf_c00490{left:426.666667pt;}
.xd6_c00490{left:429.333333pt;}
.x24_c00490{left:430.666667pt;}
.x107_c00490{left:432.960000pt;}
.x87_c00490{left:434.666667pt;}
.x5d_c00490{left:437.333333pt;}
.x19_c00490{left:438.293333pt;}
.x25_c00490{left:440.000000pt;}
.x96_c00490{left:441.333333pt;}
.x8f_c00490{left:443.040000pt;}
.xec_c00490{left:444.000000pt;}
.x2e_c00490{left:445.706667pt;}
.x7d_c00490{left:447.040000pt;}
.xa8_c00490{left:448.000000pt;}
.xe3_c00490{left:449.333333pt;}
.xdd_c00490{left:450.293333pt;}
.xc0_c00490{left:451.426667pt;}
.x114_c00490{left:453.333333pt;}
.x53_c00490{left:454.666667pt;}
.x49_c00490{left:456.000000pt;}
.x9_c00490{left:457.333333pt;}
.xe7_c00490{left:458.293333pt;}
.xf2_c00490{left:460.373333pt;}
.xef_c00490{left:461.706667pt;}
.xb7_c00490{left:462.666667pt;}
.xce_c00490{left:467.040000pt;}
.x3a_c00490{left:468.000000pt;}
.x26_c00490{left:470.293333pt;}
.x5e_c00490{left:471.626667pt;}
.xed_c00490{left:474.666667pt;}
.x4a_c00490{left:476.373333pt;}
.x90_c00490{left:478.666667pt;}
.x97_c00490{left:480.000000pt;}
.x69_c00490{left:481.333333pt;}
.x7e_c00490{left:483.040000pt;}
.x2f_c00490{left:484.000000pt;}
.xd7_c00490{left:485.706667pt;}
.x108_c00490{left:487.040000pt;}
.x1a_c00490{left:488.000000pt;}
.x101_c00490{left:489.706667pt;}
.xf3_c00490{left:491.040000pt;}
.xc1_c00490{left:492.000000pt;}
.x27_c00490{left:494.666667pt;}
.xca_c00490{left:496.000000pt;}
.x117_c00490{left:496.960000pt;}
.x3b_c00490{left:499.626667pt;}
.x72_c00490{left:504.960000pt;}
.xa9_c00490{left:506.666667pt;}
.xa_c00490{left:507.626667pt;}
.xcf_c00490{left:508.960000pt;}
.x4b_c00490{left:510.293333pt;}
.x30_c00490{left:512.373333pt;}
.xb8_c00490{left:514.666667pt;}
.x1b_c00490{left:516.000000pt;}
.x5f_c00490{left:517.706667pt;}
.xde_c00490{left:518.666667pt;}
.x54_c00490{left:520.960000pt;}
.x7f_c00490{left:522.666667pt;}
.x6a_c00490{left:524.000000pt;}
.xc6_c00490{left:525.333333pt;}
.x3c_c00490{left:526.293333pt;}
.x11a_c00490{left:528.000000pt;}
.xcb_c00490{left:529.333333pt;}
.x73_c00490{left:532.000000pt;}
.xf4_c00490{left:534.666667pt;}
.x31_c00490{left:536.000000pt;}
.xe8_c00490{left:537.333333pt;}
.x91_c00490{left:540.373333pt;}
.x88_c00490{left:543.626667pt;}
.x4c_c00490{left:546.666667pt;}
.x6b_c00490{left:548.373333pt;}
.xfa_c00490{left:549.333333pt;}
.x118_c00490{left:553.706667pt;}
.x80_c00490{left:555.040000pt;}
.xf0_c00490{left:556.000000pt;}
.x98_c00490{left:556.960000pt;}
.x3d_c00490{left:560.000000pt;}
.xb_c00490{left:561.333333pt;}
.x92_c00490{left:564.000000pt;}
.x102_c00490{left:565.333333pt;}
.x55_c00490{left:566.293333pt;}
.x1c_c00490{left:567.626667pt;}
.xdf_c00490{left:569.706667pt;}
.x89_c00490{left:572.000000pt;}
.xd0_c00490{left:573.333333pt;}
.xc_c00490{left:574.666667pt;}
.x32_c00490{left:576.000000pt;}
.xaa_c00490{left:576.960000pt;}
.x119_c00490{left:578.666667pt;}
.x60_c00490{left:579.626667pt;}
.x6c_c00490{left:581.333333pt;}
.xd8_c00490{left:583.040000pt;}
.xc7_c00490{left:585.706667pt;}
.x33_c00490{left:586.666667pt;}
.x3e_c00490{left:588.373333pt;}
.x99_c00490{left:589.706667pt;}
.xb9_c00490{left:592.000000pt;}
.xa3_c00490{left:594.666667pt;}
.xf5_c00490{left:596.000000pt;}
.x109_c00490{left:600.000000pt;}
.x93_c00490{left:602.293333pt;}
.xab_c00490{left:604.960000pt;}
.xcc_c00490{left:607.040000pt;}
.x74_c00490{left:608.960000pt;}
.x1d_c00490{left:612.373333pt;}
.x3f_c00490{left:614.666667pt;}
.xe4_c00490{left:616.373333pt;}
.x6d_c00490{left:618.666667pt;}
.x9d_c00490{left:620.373333pt;}
.x1e_c00490{left:621.333333pt;}
.xd_c00490{left:622.293333pt;}
.x56_c00490{left:624.000000pt;}
.x2_c00490{left:625.333333pt;}
.x34_c00490{left:627.626667pt;}
.xfb_c00490{left:631.040000pt;}
.x10a_c00490{left:635.626667pt;}
.xe0_c00490{left:636.960000pt;}
.xba_c00490{left:638.666667pt;}
.xe9_c00490{left:640.000000pt;}
.x61_c00490{left:641.333333pt;}
.xd1_c00490{left:642.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_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_cf9e4df17e12b5ade4d20a31.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:1.688965;font-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_c00491{transform:matrix(0.236549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236549,0.000000,0.000000,0.250000,0,0);}
.me_c00491{transform:matrix(0.385900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385900,0.000000,0.000000,0.250000,0,0);}
.md_c00491{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m2_c00491{transform:matrix(0.399351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399351,0.000000,0.000000,0.250000,0,0);}
.m9_c00491{transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);}
.m7_c00491{transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);}
.m4_c00491{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m3_c00491{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m5_c00491{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.mf_c00491{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.ma_c00491{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m10_c00491{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m0_c00491{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mb_c00491{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_c00491{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m6_c00491{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mc_c00491{transform:matrix(0.936123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.936123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.936123,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:-1.875720px;}
.ws1_c00491{word-spacing:0.000000px;}
.fc0_c00491{color:transparent;}
.fs4_c00491{font-size:13.620000px;}
.fs3_c00491{font-size:18.720000px;}
.fs1_c00491{font-size:20.400000px;}
.fs5_c00491{font-size:25.500000px;}
.fs0_c00491{font-size:28.920000px;}
.fs2_c00491{font-size:32.340000px;}
.y0_c00491{bottom:0.000000px;}
.y6_c00491{bottom:246.825000px;}
.y8_c00491{bottom:247.050000px;}
.y9_c00491{bottom:247.695000px;}
.y7_c00491{bottom:247.905000px;}
.y5_c00491{bottom:248.130000px;}
.y3_c00491{bottom:260.325000px;}
.y4_c00491{bottom:261.405000px;}
.ya_c00491{bottom:261.825000px;}
.yc_c00491{bottom:262.470000px;}
.yb_c00491{bottom:262.905000px;}
.y1_c00491{bottom:1099.905000px;}
.y2_c00491{bottom:1100.550000px;}
.h5_c00491{height:16.752334px;}
.h4_c00491{height:23.025234px;}
.h2_c00491{height:25.091602px;}
.h6_c00491{height:31.364502px;}
.h1_c00491{height:35.571035px;}
.h3_c00491{height:39.777568px;}
.h0_c00491{height:1335.000000px;}
.w0_c00491{width:880.500000px;}
.x0_c00491{left:0.000000px;}
.x1_c00491{left:151.500000px;}
.x10_c00491{left:176.145000px;}
.x11_c00491{left:207.000000px;}
.xe_c00491{left:232.500000px;}
.x7_c00491{left:307.500000px;}
.xf_c00491{left:316.920000px;}
.x8_c00491{left:330.000000px;}
.x9_c00491{left:370.500000px;}
.xa_c00491{left:385.500000px;}
.x2_c00491{left:406.500000px;}
.xb_c00491{left:451.080000px;}
.x3_c00491{left:473.580000px;}
.xc_c00491{left:509.355000px;}
.xd_c00491{left:532.500000px;}
.x4_c00491{left:544.500000px;}
.x5_c00491{left:582.420000px;}
.x6_c00491{left:629.580000px;}
@media print{
.v0_c00491{vertical-align:0.000000pt;}
.ls0_c00491{letter-spacing:0.000000pt;}
.ws0_c00491{word-spacing:-1.667307pt;}
.ws1_c00491{word-spacing:0.000000pt;}
.fs4_c00491{font-size:12.106667pt;}
.fs3_c00491{font-size:16.640000pt;}
.fs1_c00491{font-size:18.133333pt;}
.fs5_c00491{font-size:22.666667pt;}
.fs0_c00491{font-size:25.706667pt;}
.fs2_c00491{font-size:28.746667pt;}
.y0_c00491{bottom:0.000000pt;}
.y6_c00491{bottom:219.400000pt;}
.y8_c00491{bottom:219.600000pt;}
.y9_c00491{bottom:220.173333pt;}
.y7_c00491{bottom:220.360000pt;}
.y5_c00491{bottom:220.560000pt;}
.y3_c00491{bottom:231.400000pt;}
.y4_c00491{bottom:232.360000pt;}
.ya_c00491{bottom:232.733333pt;}
.yc_c00491{bottom:233.306667pt;}
.yb_c00491{bottom:233.693333pt;}
.y1_c00491{bottom:977.693333pt;}
.y2_c00491{bottom:978.266667pt;}
.h5_c00491{height:14.890964pt;}
.h4_c00491{height:20.466875pt;}
.h2_c00491{height:22.303646pt;}
.h6_c00491{height:27.879557pt;}
.h1_c00491{height:31.618698pt;}
.h3_c00491{height:35.357839pt;}
.h0_c00491{height:1186.666667pt;}
.w0_c00491{width:782.666667pt;}
.x0_c00491{left:0.000000pt;}
.x1_c00491{left:134.666667pt;}
.x10_c00491{left:156.573333pt;}
.x11_c00491{left:184.000000pt;}
.xe_c00491{left:206.666667pt;}
.x7_c00491{left:273.333333pt;}
.xf_c00491{left:281.706667pt;}
.x8_c00491{left:293.333333pt;}
.x9_c00491{left:329.333333pt;}
.xa_c00491{left:342.666667pt;}
.x2_c00491{left:361.333333pt;}
.xb_c00491{left:400.960000pt;}
.x3_c00491{left:420.960000pt;}
.xc_c00491{left:452.760000pt;}
.xd_c00491{left:473.333333pt;}
.x4_c00491{left:484.000000pt;}
.x5_c00491{left:517.706667pt;}
.x6_c00491{left:559.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_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_d4d7440a7875ef2df2a11925.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb9_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);}
.mc9_c00492{transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);}
.md7_c00492{transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);}
.m64_c00492{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.mc_c00492{transform:matrix(0.354202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354202,0.000000,0.000000,0.250000,0,0);}
.m81_c00492{transform:matrix(0.359664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359664,0.000000,0.000000,0.250000,0,0);}
.m80_c00492{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m3e_c00492{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.mc3_c00492{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00492{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m4b_c00492{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m41_c00492{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.maa_c00492{transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);}
.m82_c00492{transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);}
.m99_c00492{transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);}
.m87_c00492{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m73_c00492{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m8c_c00492{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.md5_c00492{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_c00492{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m28_c00492{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m5b_c00492{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m3a_c00492{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m3d_c00492{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.ma_c00492{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.ma2_c00492{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m1e_c00492{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m37_c00492{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m35_c00492{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m6_c00492{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m19_c00492{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m55_c00492{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.md8_c00492{transform:matrix(0.419872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419872,0.000000,0.000000,0.250000,0,0);}
.m5a_c00492{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m57_c00492{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m9e_c00492{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.mbf_c00492{transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);}
.m21_c00492{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m23_c00492{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m54_c00492{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m7f_c00492{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m6c_c00492{transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);}
.m8b_c00492{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m27_c00492{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m9f_c00492{transform:matrix(0.431891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431891,0.000000,0.000000,0.250000,0,0);}
.m11_c00492{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m47_c00492{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m95_c00492{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.m97_c00492{transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);}
.m10_c00492{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m51_c00492{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.mba_c00492{transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);}
.mac_c00492{transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);}
.m86_c00492{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m71_c00492{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m65_c00492{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m1f_c00492{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m22_c00492{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m98_c00492{transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);}
.mb1_c00492{transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);}
.mcd_c00492{transform:matrix(0.454327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454327,0.000000,0.000000,0.250000,0,0);}
.mb3_c00492{transform:matrix(0.455128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455128,0.000000,0.000000,0.250000,0,0);}
.m96_c00492{transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);}
.ma5_c00492{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.md1_c00492{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.m2c_c00492{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m66_c00492{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.md0_c00492{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m24_c00492{transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);}
.m8d_c00492{transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);}
.mb8_c00492{transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474359,0.000000,0.000000,0.250000,0,0);}
.mad_c00492{transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);}
.m1d_c00492{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mce_c00492{transform:matrix(0.481571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481571,0.000000,0.000000,0.250000,0,0);}
.m52_c00492{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m4c_c00492{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m2a_c00492{transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);}
.m91_c00492{transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);}
.m1_c00492{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m63_c00492{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.md3_c00492{transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);}
.m43_c00492{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.mc2_c00492{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.m3_c00492{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m17_c00492{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_c00492{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m20_c00492{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.md2_c00492{transform:matrix(0.507212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507212,0.000000,0.000000,0.250000,0,0);}
.m59_c00492{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m8e_c00492{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.md6_c00492{transform:matrix(0.510417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510417,0.000000,0.000000,0.250000,0,0);}
.m61_c00492{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m85_c00492{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m2b_c00492{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m15_c00492{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.mc6_c00492{transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);}
.m49_c00492{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.maf_c00492{transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);}
.m31_c00492{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m13_c00492{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.md4_c00492{transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);}
.m46_c00492{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m7c_c00492{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m78_c00492{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m8_c00492{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m3c_c00492{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m90_c00492{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mf_c00492{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.mc8_c00492{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.me_c00492{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m1c_c00492{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m1a_c00492{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m34_c00492{transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);}
.m1b_c00492{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m26_c00492{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m38_c00492{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m5d_c00492{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m42_c00492{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m7_c00492{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m2d_c00492{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m76_c00492{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m48_c00492{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m6a_c00492{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m32_c00492{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.ma8_c00492{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m16_c00492{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m29_c00492{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m62_c00492{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m5c_c00492{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m7d_c00492{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m92_c00492{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m12_c00492{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m88_c00492{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m45_c00492{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m4_c00492{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mc1_c00492{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m77_c00492{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m50_c00492{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.mbc_c00492{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m2e_c00492{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m36_c00492{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.mcf_c00492{transform:matrix(0.570485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570485,0.000000,0.000000,0.250000,0,0);}
.m3b_c00492{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m44_c00492{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m70_c00492{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m7a_c00492{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.ma9_c00492{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.m4f_c00492{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m75_c00492{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m5f_c00492{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m30_c00492{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m68_c00492{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m9_c00492{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m58_c00492{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.m6f_c00492{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m2f_c00492{transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);}
.m8f_c00492{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.ma0_c00492{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m5_c00492{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m83_c00492{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.ma3_c00492{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m4a_c00492{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m9d_c00492{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m9c_c00492{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m9b_c00492{transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);}
.m33_c00492{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m93_c00492{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.mbb_c00492{transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);}
.mc5_c00492{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m79_c00492{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);}
.m5e_c00492{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m39_c00492{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.mc4_c00492{transform:matrix(0.643172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643172,0.000000,0.000000,0.250000,0,0);}
.m84_c00492{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.mb_c00492{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.mae_c00492{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.ma1_c00492{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m67_c00492{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mab_c00492{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m3f_c00492{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m0_c00492{transform:matrix(0.679487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679487,0.000000,0.000000,0.250000,0,0);}
.mb2_c00492{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.mcb_c00492{transform:matrix(0.680617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680617,0.000000,0.000000,0.250000,0,0);}
.mc7_c00492{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.ma4_c00492{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m7b_c00492{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.mb4_c00492{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m2_c00492{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mbe_c00492{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.m6e_c00492{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m8a_c00492{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.m9a_c00492{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m94_c00492{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);}
.m69_c00492{transform:matrix(0.706618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.706618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.706618,0.000000,0.000000,0.250000,0,0);}
.mb6_c00492{transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);}
.m25_c00492{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.mb7_c00492{transform:matrix(0.718062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.718062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.718062,0.000000,0.000000,0.250000,0,0);}
.m18_c00492{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mcc_c00492{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m72_c00492{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.md_c00492{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.ma7_c00492{transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);}
.m74_c00492{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.mb5_c00492{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.mbd_c00492{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m40_c00492{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mca_c00492{transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);}
.m14_c00492{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m89_c00492{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m56_c00492{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mb0_c00492{transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);}
.m7e_c00492{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m4e_c00492{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.mc0_c00492{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m6d_c00492{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.ma6_c00492{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m60_c00492{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v2_c00492{vertical-align:-6.000000px;}
.v0_c00492{vertical-align:0.000000px;}
.v1_c00492{vertical-align:6.000000px;}
.ls1_c00492{letter-spacing:0.000000px;}
.ls0_c00492{letter-spacing:107.409862px;}
.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:-3.584672px;}
.ws1_c00492{word-spacing:-0.873581px;}
.ws10_c00492{word-spacing:0.000000px;}
.wsd_c00492{word-spacing:11.067042px;}
.wse_c00492{word-spacing:13.067771px;}
.ws5_c00492{word-spacing:16.594629px;}
.ws9_c00492{word-spacing:19.604565px;}
.wsa_c00492{word-spacing:37.647282px;}
.ws3_c00492{word-spacing:42.369370px;}
.wsc_c00492{word-spacing:43.123678px;}
.ws2_c00492{word-spacing:44.161763px;}
.ws8_c00492{word-spacing:50.372388px;}
.wsb_c00492{word-spacing:59.307203px;}
.wsf_c00492{word-spacing:60.638400px;}
.ws6_c00492{word-spacing:62.015851px;}
.ws4_c00492{word-spacing:81.489889px;}
.ws7_c00492{word-spacing:96.795137px;}
._1_c00492{width:47.604304px;}
._0_c00492{width:72.544600px;}
.fc0_c00492{color:transparent;}
.fs5_c00492{font-size:3.420000px;}
.fs8_c00492{font-size:11.880000px;}
.fs7_c00492{font-size:13.620000px;}
.fs0_c00492{font-size:18.720000px;}
.fs6_c00492{font-size:20.400000px;}
.fs2_c00492{font-size:25.500000px;}
.fs1_c00492{font-size:28.920000px;}
.fs4_c00492{font-size:32.340000px;}
.fs3_c00492{font-size:35.700000px;}
.y0_c00492{bottom:0.000000px;}
.ye0_c00492{bottom:257.550000px;}
.ydf_c00492{bottom:260.130000px;}
.yde_c00492{bottom:261.195000px;}
.ye1_c00492{bottom:261.630000px;}
.ye2_c00492{bottom:263.130000px;}
.ye3_c00492{bottom:264.195000px;}
.yd9_c00492{bottom:271.050000px;}
.yd8_c00492{bottom:273.195000px;}
.yd7_c00492{bottom:273.630000px;}
.yd6_c00492{bottom:274.695000px;}
.yda_c00492{bottom:275.130000px;}
.ydb_c00492{bottom:276.195000px;}
.ydc_c00492{bottom:276.630000px;}
.ydd_c00492{bottom:277.695000px;}
.yd3_c00492{bottom:288.630000px;}
.yd4_c00492{bottom:289.695000px;}
.yd5_c00492{bottom:291.195000px;}
.ycd_c00492{bottom:302.130000px;}
.yce_c00492{bottom:302.775000px;}
.ycc_c00492{bottom:303.195000px;}
.ycf_c00492{bottom:303.630000px;}
.yd0_c00492{bottom:304.695000px;}
.yd1_c00492{bottom:305.130000px;}
.yd2_c00492{bottom:306.195000px;}
.ycb_c00492{bottom:307.695000px;}
.yc8_c00492{bottom:315.195000px;}
.yc6_c00492{bottom:316.695000px;}
.yc7_c00492{bottom:317.130000px;}
.yc9_c00492{bottom:318.195000px;}
.yca_c00492{bottom:321.195000px;}
.yc5_c00492{bottom:322.695000px;}
.yc1_c00492{bottom:329.775000px;}
.ybf_c00492{bottom:330.195000px;}
.yc0_c00492{bottom:330.630000px;}
.yc2_c00492{bottom:331.695000px;}
.yc3_c00492{bottom:333.195000px;}
.yc4_c00492{bottom:333.630000px;}
.ybb_c00492{bottom:343.695000px;}
.yb9_c00492{bottom:344.130000px;}
.yba_c00492{bottom:345.195000px;}
.ybc_c00492{bottom:345.630000px;}
.ybd_c00492{bottom:346.695000px;}
.ybe_c00492{bottom:348.195000px;}
.yb7_c00492{bottom:358.695000px;}
.yb8_c00492{bottom:360.195000px;}
.yb3_c00492{bottom:371.130000px;}
.yb2_c00492{bottom:372.195000px;}
.yb5_c00492{bottom:372.630000px;}
.yb4_c00492{bottom:373.695000px;}
.yb6_c00492{bottom:375.195000px;}
.yac_c00492{bottom:383.550000px;}
.yad_c00492{bottom:384.630000px;}
.yae_c00492{bottom:385.695000px;}
.yaf_c00492{bottom:387.195000px;}
.yb0_c00492{bottom:387.630000px;}
.yb1_c00492{bottom:388.695000px;}
.ya9_c00492{bottom:399.630000px;}
.yaa_c00492{bottom:400.695000px;}
.yab_c00492{bottom:402.195000px;}
.ya4_c00492{bottom:412.275000px;}
.ya3_c00492{bottom:413.130000px;}
.ya5_c00492{bottom:414.195000px;}
.ya6_c00492{bottom:414.630000px;}
.ya7_c00492{bottom:415.695000px;}
.ya8_c00492{bottom:416.130000px;}
.ya0_c00492{bottom:426.630000px;}
.y9f_c00492{bottom:427.695000px;}
.ya1_c00492{bottom:429.630000px;}
.ya2_c00492{bottom:430.695000px;}
.y9c_c00492{bottom:440.130000px;}
.y9b_c00492{bottom:441.195000px;}
.y9e_c00492{bottom:441.630000px;}
.y9d_c00492{bottom:442.695000px;}
.y97_c00492{bottom:453.630000px;}
.y99_c00492{bottom:455.130000px;}
.y98_c00492{bottom:456.195000px;}
.y9a_c00492{bottom:456.630000px;}
.y93_c00492{bottom:467.130000px;}
.y92_c00492{bottom:468.195000px;}
.y94_c00492{bottom:469.695000px;}
.y95_c00492{bottom:470.130000px;}
.y96_c00492{bottom:471.195000px;}
.y8c_c00492{bottom:486.195000px;}
.y8e_c00492{bottom:488.130000px;}
.y8d_c00492{bottom:489.195000px;}
.y8f_c00492{bottom:489.420000px;}
.y91_c00492{bottom:489.630000px;}
.y90_c00492{bottom:490.920000px;}
.y88_c00492{bottom:504.630000px;}
.y8a_c00492{bottom:506.130000px;}
.y89_c00492{bottom:507.195000px;}
.y8b_c00492{bottom:507.630000px;}
.y86_c00492{bottom:531.825000px;}
.y87_c00492{bottom:535.050000px;}
.y85_c00492{bottom:547.905000px;}
.y83_c00492{bottom:548.550000px;}
.y82_c00492{bottom:548.970000px;}
.y84_c00492{bottom:550.050000px;}
.y80_c00492{bottom:572.970000px;}
.y81_c00492{bottom:574.050000px;}
.y7f_c00492{bottom:607.905000px;}
.y7d_c00492{bottom:608.745000px;}
.y7c_c00492{bottom:609.825000px;}
.y7b_c00492{bottom:610.905000px;}
.y7e_c00492{bottom:611.970000px;}
.y78_c00492{bottom:628.245000px;}
.y77_c00492{bottom:630.405000px;}
.y79_c00492{bottom:630.630000px;}
.y7a_c00492{bottom:631.470000px;}
.y72_c00492{bottom:646.905000px;}
.y70_c00492{bottom:647.745000px;}
.y76_c00492{bottom:648.405000px;}
.y74_c00492{bottom:648.630000px;}
.y6e_c00492{bottom:649.050000px;}
.y75_c00492{bottom:649.245000px;}
.y6f_c00492{bottom:649.470000px;}
.y6d_c00492{bottom:649.905000px;}
.y71_c00492{bottom:650.130000px;}
.y73_c00492{bottom:651.405000px;}
.y68_c00492{bottom:667.245000px;}
.y6c_c00492{bottom:668.325000px;}
.y6a_c00492{bottom:668.745000px;}
.y69_c00492{bottom:669.405000px;}
.y6b_c00492{bottom:670.905000px;}
.y67_c00492{bottom:689.130000px;}
.y66_c00492{bottom:689.970000px;}
.y65_c00492{bottom:690.405000px;}
.y61_c00492{bottom:707.325000px;}
.y63_c00492{bottom:707.745000px;}
.y64_c00492{bottom:708.405000px;}
.y62_c00492{bottom:708.630000px;}
.y60_c00492{bottom:709.905000px;}
.y5d_c00492{bottom:725.745000px;}
.y5b_c00492{bottom:727.050000px;}
.y5c_c00492{bottom:727.245000px;}
.y5f_c00492{bottom:728.130000px;}
.y5a_c00492{bottom:729.405000px;}
.y5e_c00492{bottom:730.470000px;}
.y56_c00492{bottom:744.405000px;}
.y59_c00492{bottom:745.470000px;}
.y54_c00492{bottom:745.905000px;}
.y55_c00492{bottom:746.745000px;}
.y57_c00492{bottom:747.405000px;}
.y58_c00492{bottom:747.630000px;}
.y53_c00492{bottom:748.470000px;}
.y50_c00492{bottom:748.905000px;}
.y51_c00492{bottom:748.920000px;}
.y52_c00492{bottom:749.970000px;}
.y4b_c00492{bottom:766.245000px;}
.y4f_c00492{bottom:767.970000px;}
.y4c_c00492{bottom:768.405000px;}
.y4e_c00492{bottom:768.630000px;}
.y4d_c00492{bottom:769.470000px;}
.y48_c00492{bottom:785.745000px;}
.y49_c00492{bottom:786.630000px;}
.y4a_c00492{bottom:787.470000px;}
.y47_c00492{bottom:787.905000px;}
.y46_c00492{bottom:804.405000px;}
.y44_c00492{bottom:805.245000px;}
.y42_c00492{bottom:806.970000px;}
.y45_c00492{bottom:807.405000px;}
.y43_c00492{bottom:808.470000px;}
.y41_c00492{bottom:824.745000px;}
.y3f_c00492{bottom:826.470000px;}
.y3e_c00492{bottom:826.905000px;}
.y40_c00492{bottom:827.970000px;}
.y3d_c00492{bottom:844.245000px;}
.y3b_c00492{bottom:845.745000px;}
.y3c_c00492{bottom:846.405000px;}
.y3a_c00492{bottom:847.905000px;}
.y38_c00492{bottom:863.745000px;}
.y36_c00492{bottom:865.245000px;}
.y37_c00492{bottom:865.905000px;}
.y39_c00492{bottom:866.130000px;}
.y35_c00492{bottom:866.325000px;}
.y34_c00492{bottom:867.405000px;}
.y33_c00492{bottom:883.245000px;}
.y32_c00492{bottom:884.325000px;}
.y30_c00492{bottom:884.745000px;}
.y31_c00492{bottom:885.630000px;}
.y2f_c00492{bottom:886.470000px;}
.y2d_c00492{bottom:886.905000px;}
.y2e_c00492{bottom:887.970000px;}
.y26_c00492{bottom:901.905000px;}
.y2b_c00492{bottom:902.745000px;}
.y29_c00492{bottom:903.405000px;}
.y28_c00492{bottom:904.245000px;}
.y2c_c00492{bottom:905.130000px;}
.y2a_c00492{bottom:905.970000px;}
.y27_c00492{bottom:906.405000px;}
.y24_c00492{bottom:923.745000px;}
.y25_c00492{bottom:924.405000px;}
.y23_c00492{bottom:924.630000px;}
.y22_c00492{bottom:925.905000px;}
.y1e_c00492{bottom:943.245000px;}
.y21_c00492{bottom:944.130000px;}
.y20_c00492{bottom:944.970000px;}
.y1f_c00492{bottom:945.405000px;}
.y1d_c00492{bottom:962.745000px;}
.y1c_c00492{bottom:962.970000px;}
.y1b_c00492{bottom:964.905000px;}
.y1a_c00492{bottom:965.970000px;}
.y16_c00492{bottom:981.405000px;}
.y18_c00492{bottom:983.325000px;}
.y17_c00492{bottom:984.405000px;}
.y19_c00492{bottom:985.470000px;}
.y13_c00492{bottom:1000.905000px;}
.y11_c00492{bottom:1001.745000px;}
.y12_c00492{bottom:1003.905000px;}
.y14_c00492{bottom:1004.130000px;}
.y15_c00492{bottom:1004.970000px;}
.y10_c00492{bottom:1021.245000px;}
.yf_c00492{bottom:1022.325000px;}
.yd_c00492{bottom:1022.745000px;}
.ye_c00492{bottom:1023.405000px;}
.yc_c00492{bottom:1024.905000px;}
.y6_c00492{bottom:1040.745000px;}
.y8_c00492{bottom:1042.245000px;}
.yb_c00492{bottom:1042.905000px;}
.y9_c00492{bottom:1043.130000px;}
.ya_c00492{bottom:1043.970000px;}
.y7_c00492{bottom:1044.405000px;}
.y5_c00492{bottom:1061.745000px;}
.y4_c00492{bottom:1063.470000px;}
.y3_c00492{bottom:1063.905000px;}
.y2_c00492{bottom:1099.905000px;}
.y1_c00492{bottom:1103.130000px;}
.h6_c00492{height:4.206533px;}
.hb_c00492{height:14.612168px;}
.h8_c00492{height:16.752334px;}
.ha_c00492{height:22.752334px;}
.h1_c00492{height:23.025234px;}
.h7_c00492{height:25.091602px;}
.h9_c00492{height:29.025234px;}
.h3_c00492{height:31.364502px;}
.h2_c00492{height:35.571035px;}
.h5_c00492{height:39.777568px;}
.h4_c00492{height:43.910303px;}
.h0_c00492{height:1335.000000px;}
.w0_c00492{width:880.500000px;}
.x0_c00492{left:0.000000px;}
.x3_c00492{left:151.500000px;}
.x9d_c00492{left:153.000000px;}
.x79_c00492{left:168.000000px;}
.x4_c00492{left:169.500000px;}
.x82_c00492{left:171.000000px;}
.xb7_c00492{left:172.920000px;}
.x69_c00492{left:180.000000px;}
.xc0_c00492{left:181.500000px;}
.x11_c00492{left:183.420000px;}
.xb8_c00492{left:186.000000px;}
.xa3_c00492{left:187.920000px;}
.x41_c00492{left:192.420000px;}
.xce_c00492{left:193.500000px;}
.xe3_c00492{left:194.580000px;}
.x5e_c00492{left:196.080000px;}
.x83_c00492{left:198.000000px;}
.x53_c00492{left:199.500000px;}
.x3b_c00492{left:202.500000px;}
.xc8_c00492{left:203.580000px;}
.xb9_c00492{left:205.080000px;}
.x92_c00492{left:206.580000px;}
.xd5_c00492{left:208.080000px;}
.x12_c00492{left:211.500000px;}
.x1f_c00492{left:213.000000px;}
.xa4_c00492{left:214.920000px;}
.xe7_c00492{left:216.000000px;}
.x5_c00492{left:217.080000px;}
.x5f_c00492{left:219.000000px;}
.x29_c00492{left:220.920000px;}
.x6a_c00492{left:222.420000px;}
.x33_c00492{left:223.500000px;}
.x9e_c00492{left:226.500000px;}
.xd3_c00492{left:229.080000px;}
.xdb_c00492{left:231.420000px;}
.x3c_c00492{left:236.580000px;}
.x95_c00492{left:238.500000px;}
.xa5_c00492{left:241.500000px;}
.x7a_c00492{left:243.420000px;}
.xc1_c00492{left:244.500000px;}
.xe4_c00492{left:246.420000px;}
.x2a_c00492{left:247.500000px;}
.x6b_c00492{left:249.000000px;}
.x93_c00492{left:253.920000px;}
.x72_c00492{left:256.920000px;}
.xe6_c00492{left:258.000000px;}
.x96_c00492{left:259.500000px;}
.x6_c00492{left:262.500000px;}
.x94_c00492{left:265.500000px;}
.x42_c00492{left:266.580000px;}
.x8a_c00492{left:268.920000px;}
.x13_c00492{left:278.580000px;}
.x20_c00492{left:283.500000px;}
.x54_c00492{left:285.420000px;}
.x43_c00492{left:286.920000px;}
.xb2_c00492{left:288.000000px;}
.xac_c00492{left:289.080000px;}
.x7_c00492{left:291.000000px;}
.x84_c00492{left:297.000000px;}
.xa6_c00492{left:298.920000px;}
.x21_c00492{left:300.420000px;}
.x7b_c00492{left:304.080000px;}
.x8b_c00492{left:305.580000px;}
.xd7_c00492{left:307.500000px;}
.x3d_c00492{left:309.000000px;}
.x14_c00492{left:310.920000px;}
.xc2_c00492{left:312.000000px;}
.x44_c00492{left:315.000000px;}
.xd2_c00492{left:316.500000px;}
.xde_c00492{left:318.000000px;}
.xd0_c00492{left:319.500000px;}
.x4d_c00492{left:322.500000px;}
.x34_c00492{left:328.500000px;}
.x2b_c00492{left:332.580000px;}
.x22_c00492{left:334.080000px;}
.xba_c00492{left:337.500000px;}
.x85_c00492{left:338.580000px;}
.xb3_c00492{left:341.580000px;}
.x6c_c00492{left:343.920000px;}
.x8_c00492{left:348.420000px;}
.x45_c00492{left:354.420000px;}
.x86_c00492{left:357.420000px;}
.xcb_c00492{left:358.500000px;}
.xad_c00492{left:361.500000px;}
.x23_c00492{left:364.920000px;}
.x7c_c00492{left:366.000000px;}
.x55_c00492{left:369.000000px;}
.x9f_c00492{left:370.080000px;}
.xe8_c00492{left:372.000000px;}
.xbb_c00492{left:373.500000px;}
.x35_c00492{left:375.420000px;}
.x8c_c00492{left:376.500000px;}
.x15_c00492{left:379.500000px;}
.x87_c00492{left:383.580000px;}
.xae_c00492{left:385.920000px;}
.x60_c00492{left:389.580000px;}
.x7d_c00492{left:392.580000px;}
.x6d_c00492{left:396.420000px;}
.x3e_c00492{left:397.500000px;}
.x2c_c00492{left:399.000000px;}
.x8d_c00492{left:402.000000px;}
.x1_c00492{left:405.000000px;}
.x9_c00492{left:406.500000px;}
.x61_c00492{left:409.080000px;}
.xc9_c00492{left:412.500000px;}
.x73_c00492{left:413.580000px;}
.xe5_c00492{left:418.500000px;}
.x62_c00492{left:423.000000px;}
.x2d_c00492{left:424.920000px;}
.xe1_c00492{left:426.000000px;}
.xbc_c00492{left:427.080000px;}
.xc3_c00492{left:428.355000px;}
.x74_c00492{left:430.920000px;}
.x16_c00492{left:432.000000px;}
.x97_c00492{left:434.580000px;}
.x36_c00492{left:437.580000px;}
.xca_c00492{left:443.580000px;}
.x56_c00492{left:445.920000px;}
.x46_c00492{left:447.420000px;}
.x88_c00492{left:453.000000px;}
.xcc_c00492{left:454.500000px;}
.x75_c00492{left:456.000000px;}
.xa0_c00492{left:457.080000px;}
.x17_c00492{left:458.580000px;}
.x2e_c00492{left:460.500000px;}
.x3f_c00492{left:462.000000px;}
.x4e_c00492{left:463.500000px;}
.x98_c00492{left:464.580000px;}
.xa7_c00492{left:466.920000px;}
.xa_c00492{left:469.500000px;}
.xcd_c00492{left:471.000000px;}
.xcf_c00492{left:472.500000px;}
.x47_c00492{left:475.500000px;}
.xbd_c00492{left:478.920000px;}
.xe2_c00492{left:480.000000px;}
.x18_c00492{left:481.920000px;}
.x57_c00492{left:485.580000px;}
.xaf_c00492{left:487.500000px;}
.xc4_c00492{left:489.000000px;}
.xb4_c00492{left:491.355000px;}
.xa8_c00492{left:495.000000px;}
.x63_c00492{left:498.000000px;}
.x37_c00492{left:500.580000px;}
.x8e_c00492{left:502.920000px;}
.x24_c00492{left:504.000000px;}
.xb_c00492{left:505.500000px;}
.x19_c00492{left:515.580000px;}
.x6e_c00492{left:517.080000px;}
.x2f_c00492{left:520.500000px;}
.xd8_c00492{left:523.500000px;}
.x64_c00492{left:525.000000px;}
.x7e_c00492{left:526.080000px;}
.x48_c00492{left:527.580000px;}
.x8f_c00492{left:529.500000px;}
.x40_c00492{left:532.080000px;}
.xdf_c00492{left:534.000000px;}
.x1a_c00492{left:535.080000px;}
.x76_c00492{left:538.500000px;}
.x25_c00492{left:540.420000px;}
.x7f_c00492{left:546.420000px;}
.x6f_c00492{left:547.920000px;}
.x49_c00492{left:549.000000px;}
.xc_c00492{left:550.080000px;}
.x99_c00492{left:552.000000px;}
.x4f_c00492{left:555.420000px;}
.x58_c00492{left:558.420000px;}
.x4a_c00492{left:562.920000px;}
.x26_c00492{left:567.000000px;}
.x89_c00492{left:571.080000px;}
.x65_c00492{left:573.000000px;}
.x70_c00492{left:574.500000px;}
.x77_c00492{left:576.420000px;}
.x38_c00492{left:578.580000px;}
.x1b_c00492{left:580.500000px;}
.x50_c00492{left:581.580000px;}
.xc5_c00492{left:586.080000px;}
.xdc_c00492{left:588.000000px;}
.xd_c00492{left:592.500000px;}
.xbe_c00492{left:595.080000px;}
.x59_c00492{left:598.080000px;}
.x90_c00492{left:600.420000px;}
.xa9_c00492{left:604.500000px;}
.x66_c00492{left:606.420000px;}
.x1c_c00492{left:609.420000px;}
.x30_c00492{left:612.420000px;}
.xbf_c00492{left:615.420000px;}
.x27_c00492{left:616.500000px;}
.x5a_c00492{left:621.000000px;}
.x78_c00492{left:623.580000px;}
.x71_c00492{left:627.420000px;}
.x39_c00492{left:631.500000px;}
.x80_c00492{left:632.580000px;}
.xaa_c00492{left:634.080000px;}
.x9a_c00492{left:636.000000px;}
.xd9_c00492{left:637.500000px;}
.x31_c00492{left:639.000000px;}
.xe_c00492{left:640.500000px;}
.xd4_c00492{left:642.000000px;}
.x5b_c00492{left:643.500000px;}
.xb0_c00492{left:645.420000px;}
.xdd_c00492{left:646.500000px;}
.x1d_c00492{left:648.420000px;}
.x28_c00492{left:651.000000px;}
.xb5_c00492{left:654.000000px;}
.xab_c00492{left:657.420000px;}
.xc6_c00492{left:658.920000px;}
.x3a_c00492{left:660.000000px;}
.xf_c00492{left:663.420000px;}
.x67_c00492{left:666.420000px;}
.xa1_c00492{left:672.000000px;}
.x5c_c00492{left:675.000000px;}
.x9b_c00492{left:676.500000px;}
.x81_c00492{left:678.000000px;}
.xda_c00492{left:682.500000px;}
.xb1_c00492{left:684.000000px;}
.x51_c00492{left:688.080000px;}
.xa2_c00492{left:690.420000px;}
.x10_c00492{left:691.500000px;}
.x4b_c00492{left:692.580000px;}
.x9c_c00492{left:694.920000px;}
.xb6_c00492{left:696.000000px;}
.xd1_c00492{left:697.500000px;}
.xd6_c00492{left:699.000000px;}
.xe0_c00492{left:700.500000px;}
.x1e_c00492{left:702.000000px;}
.x2_c00492{left:703.500000px;}
.x91_c00492{left:704.580000px;}
.x32_c00492{left:706.920000px;}
.x52_c00492{left:708.420000px;}
.xc7_c00492{left:709.920000px;}
.x4c_c00492{left:712.080000px;}
.x5d_c00492{left:714.000000px;}
.x68_c00492{left:716.580000px;}
@media print{
.v2_c00492{vertical-align:-5.333333pt;}
.v0_c00492{vertical-align:0.000000pt;}
.v1_c00492{vertical-align:5.333333pt;}
.ls1_c00492{letter-spacing:0.000000pt;}
.ls0_c00492{letter-spacing:95.475433pt;}
.ws0_c00492{word-spacing:-3.186375pt;}
.ws1_c00492{word-spacing:-0.776516pt;}
.ws10_c00492{word-spacing:0.000000pt;}
.wsd_c00492{word-spacing:9.837371pt;}
.wse_c00492{word-spacing:11.615796pt;}
.ws5_c00492{word-spacing:14.750782pt;}
.ws9_c00492{word-spacing:17.426280pt;}
.wsa_c00492{word-spacing:33.464251pt;}
.ws3_c00492{word-spacing:37.661663pt;}
.wsc_c00492{word-spacing:38.332159pt;}
.ws2_c00492{word-spacing:39.254900pt;}
.ws8_c00492{word-spacing:44.775456pt;}
.wsb_c00492{word-spacing:52.717514pt;}
.wsf_c00492{word-spacing:53.900800pt;}
.ws6_c00492{word-spacing:55.125201pt;}
.ws4_c00492{word-spacing:72.435457pt;}
.ws7_c00492{word-spacing:86.040122pt;}
._1_c00492{width:42.314936pt;}
._0_c00492{width:64.484089pt;}
.fs5_c00492{font-size:3.040000pt;}
.fs8_c00492{font-size:10.560000pt;}
.fs7_c00492{font-size:12.106667pt;}
.fs0_c00492{font-size:16.640000pt;}
.fs6_c00492{font-size:18.133333pt;}
.fs2_c00492{font-size:22.666667pt;}
.fs1_c00492{font-size:25.706667pt;}
.fs4_c00492{font-size:28.746667pt;}
.fs3_c00492{font-size:31.733333pt;}
.y0_c00492{bottom:0.000000pt;}
.ye0_c00492{bottom:228.933333pt;}
.ydf_c00492{bottom:231.226667pt;}
.yde_c00492{bottom:232.173333pt;}
.ye1_c00492{bottom:232.560000pt;}
.ye2_c00492{bottom:233.893333pt;}
.ye3_c00492{bottom:234.840000pt;}
.yd9_c00492{bottom:240.933333pt;}
.yd8_c00492{bottom:242.840000pt;}
.yd7_c00492{bottom:243.226667pt;}
.yd6_c00492{bottom:244.173333pt;}
.yda_c00492{bottom:244.560000pt;}
.ydb_c00492{bottom:245.506667pt;}
.ydc_c00492{bottom:245.893333pt;}
.ydd_c00492{bottom:246.840000pt;}
.yd3_c00492{bottom:256.560000pt;}
.yd4_c00492{bottom:257.506667pt;}
.yd5_c00492{bottom:258.840000pt;}
.ycd_c00492{bottom:268.560000pt;}
.yce_c00492{bottom:269.133333pt;}
.ycc_c00492{bottom:269.506667pt;}
.ycf_c00492{bottom:269.893333pt;}
.yd0_c00492{bottom:270.840000pt;}
.yd1_c00492{bottom:271.226667pt;}
.yd2_c00492{bottom:272.173333pt;}
.ycb_c00492{bottom:273.506667pt;}
.yc8_c00492{bottom:280.173333pt;}
.yc6_c00492{bottom:281.506667pt;}
.yc7_c00492{bottom:281.893333pt;}
.yc9_c00492{bottom:282.840000pt;}
.yca_c00492{bottom:285.506667pt;}
.yc5_c00492{bottom:286.840000pt;}
.yc1_c00492{bottom:293.133333pt;}
.ybf_c00492{bottom:293.506667pt;}
.yc0_c00492{bottom:293.893333pt;}
.yc2_c00492{bottom:294.840000pt;}
.yc3_c00492{bottom:296.173333pt;}
.yc4_c00492{bottom:296.560000pt;}
.ybb_c00492{bottom:305.506667pt;}
.yb9_c00492{bottom:305.893333pt;}
.yba_c00492{bottom:306.840000pt;}
.ybc_c00492{bottom:307.226667pt;}
.ybd_c00492{bottom:308.173333pt;}
.ybe_c00492{bottom:309.506667pt;}
.yb7_c00492{bottom:318.840000pt;}
.yb8_c00492{bottom:320.173333pt;}
.yb3_c00492{bottom:329.893333pt;}
.yb2_c00492{bottom:330.840000pt;}
.yb5_c00492{bottom:331.226667pt;}
.yb4_c00492{bottom:332.173333pt;}
.yb6_c00492{bottom:333.506667pt;}
.yac_c00492{bottom:340.933333pt;}
.yad_c00492{bottom:341.893333pt;}
.yae_c00492{bottom:342.840000pt;}
.yaf_c00492{bottom:344.173333pt;}
.yb0_c00492{bottom:344.560000pt;}
.yb1_c00492{bottom:345.506667pt;}
.ya9_c00492{bottom:355.226667pt;}
.yaa_c00492{bottom:356.173333pt;}
.yab_c00492{bottom:357.506667pt;}
.ya4_c00492{bottom:366.466667pt;}
.ya3_c00492{bottom:367.226667pt;}
.ya5_c00492{bottom:368.173333pt;}
.ya6_c00492{bottom:368.560000pt;}
.ya7_c00492{bottom:369.506667pt;}
.ya8_c00492{bottom:369.893333pt;}
.ya0_c00492{bottom:379.226667pt;}
.y9f_c00492{bottom:380.173333pt;}
.ya1_c00492{bottom:381.893333pt;}
.ya2_c00492{bottom:382.840000pt;}
.y9c_c00492{bottom:391.226667pt;}
.y9b_c00492{bottom:392.173333pt;}
.y9e_c00492{bottom:392.560000pt;}
.y9d_c00492{bottom:393.506667pt;}
.y97_c00492{bottom:403.226667pt;}
.y99_c00492{bottom:404.560000pt;}
.y98_c00492{bottom:405.506667pt;}
.y9a_c00492{bottom:405.893333pt;}
.y93_c00492{bottom:415.226667pt;}
.y92_c00492{bottom:416.173333pt;}
.y94_c00492{bottom:417.506667pt;}
.y95_c00492{bottom:417.893333pt;}
.y96_c00492{bottom:418.840000pt;}
.y8c_c00492{bottom:432.173333pt;}
.y8e_c00492{bottom:433.893333pt;}
.y8d_c00492{bottom:434.840000pt;}
.y8f_c00492{bottom:435.040000pt;}
.y91_c00492{bottom:435.226667pt;}
.y90_c00492{bottom:436.373333pt;}
.y88_c00492{bottom:448.560000pt;}
.y8a_c00492{bottom:449.893333pt;}
.y89_c00492{bottom:450.840000pt;}
.y8b_c00492{bottom:451.226667pt;}
.y86_c00492{bottom:472.733333pt;}
.y87_c00492{bottom:475.600000pt;}
.y85_c00492{bottom:487.026667pt;}
.y83_c00492{bottom:487.600000pt;}
.y82_c00492{bottom:487.973333pt;}
.y84_c00492{bottom:488.933333pt;}
.y80_c00492{bottom:509.306667pt;}
.y81_c00492{bottom:510.266667pt;}
.y7f_c00492{bottom:540.360000pt;}
.y7d_c00492{bottom:541.106667pt;}
.y7c_c00492{bottom:542.066667pt;}
.y7b_c00492{bottom:543.026667pt;}
.y7e_c00492{bottom:543.973333pt;}
.y78_c00492{bottom:558.440000pt;}
.y77_c00492{bottom:560.360000pt;}
.y79_c00492{bottom:560.560000pt;}
.y7a_c00492{bottom:561.306667pt;}
.y72_c00492{bottom:575.026667pt;}
.y70_c00492{bottom:575.773333pt;}
.y76_c00492{bottom:576.360000pt;}
.y74_c00492{bottom:576.560000pt;}
.y6e_c00492{bottom:576.933333pt;}
.y75_c00492{bottom:577.106667pt;}
.y6f_c00492{bottom:577.306667pt;}
.y6d_c00492{bottom:577.693333pt;}
.y71_c00492{bottom:577.893333pt;}
.y73_c00492{bottom:579.026667pt;}
.y68_c00492{bottom:593.106667pt;}
.y6c_c00492{bottom:594.066667pt;}
.y6a_c00492{bottom:594.440000pt;}
.y69_c00492{bottom:595.026667pt;}
.y6b_c00492{bottom:596.360000pt;}
.y67_c00492{bottom:612.560000pt;}
.y66_c00492{bottom:613.306667pt;}
.y65_c00492{bottom:613.693333pt;}
.y61_c00492{bottom:628.733333pt;}
.y63_c00492{bottom:629.106667pt;}
.y64_c00492{bottom:629.693333pt;}
.y62_c00492{bottom:629.893333pt;}
.y60_c00492{bottom:631.026667pt;}
.y5d_c00492{bottom:645.106667pt;}
.y5b_c00492{bottom:646.266667pt;}
.y5c_c00492{bottom:646.440000pt;}
.y5f_c00492{bottom:647.226667pt;}
.y5a_c00492{bottom:648.360000pt;}
.y5e_c00492{bottom:649.306667pt;}
.y56_c00492{bottom:661.693333pt;}
.y59_c00492{bottom:662.640000pt;}
.y54_c00492{bottom:663.026667pt;}
.y55_c00492{bottom:663.773333pt;}
.y57_c00492{bottom:664.360000pt;}
.y58_c00492{bottom:664.560000pt;}
.y53_c00492{bottom:665.306667pt;}
.y50_c00492{bottom:665.693333pt;}
.y51_c00492{bottom:665.706667pt;}
.y52_c00492{bottom:666.640000pt;}
.y4b_c00492{bottom:681.106667pt;}
.y4f_c00492{bottom:682.640000pt;}
.y4c_c00492{bottom:683.026667pt;}
.y4e_c00492{bottom:683.226667pt;}
.y4d_c00492{bottom:683.973333pt;}
.y48_c00492{bottom:698.440000pt;}
.y49_c00492{bottom:699.226667pt;}
.y4a_c00492{bottom:699.973333pt;}
.y47_c00492{bottom:700.360000pt;}
.y46_c00492{bottom:715.026667pt;}
.y44_c00492{bottom:715.773333pt;}
.y42_c00492{bottom:717.306667pt;}
.y45_c00492{bottom:717.693333pt;}
.y43_c00492{bottom:718.640000pt;}
.y41_c00492{bottom:733.106667pt;}
.y3f_c00492{bottom:734.640000pt;}
.y3e_c00492{bottom:735.026667pt;}
.y40_c00492{bottom:735.973333pt;}
.y3d_c00492{bottom:750.440000pt;}
.y3b_c00492{bottom:751.773333pt;}
.y3c_c00492{bottom:752.360000pt;}
.y3a_c00492{bottom:753.693333pt;}
.y38_c00492{bottom:767.773333pt;}
.y36_c00492{bottom:769.106667pt;}
.y37_c00492{bottom:769.693333pt;}
.y39_c00492{bottom:769.893333pt;}
.y35_c00492{bottom:770.066667pt;}
.y34_c00492{bottom:771.026667pt;}
.y33_c00492{bottom:785.106667pt;}
.y32_c00492{bottom:786.066667pt;}
.y30_c00492{bottom:786.440000pt;}
.y31_c00492{bottom:787.226667pt;}
.y2f_c00492{bottom:787.973333pt;}
.y2d_c00492{bottom:788.360000pt;}
.y2e_c00492{bottom:789.306667pt;}
.y26_c00492{bottom:801.693333pt;}
.y2b_c00492{bottom:802.440000pt;}
.y29_c00492{bottom:803.026667pt;}
.y28_c00492{bottom:803.773333pt;}
.y2c_c00492{bottom:804.560000pt;}
.y2a_c00492{bottom:805.306667pt;}
.y27_c00492{bottom:805.693333pt;}
.y24_c00492{bottom:821.106667pt;}
.y25_c00492{bottom:821.693333pt;}
.y23_c00492{bottom:821.893333pt;}
.y22_c00492{bottom:823.026667pt;}
.y1e_c00492{bottom:838.440000pt;}
.y21_c00492{bottom:839.226667pt;}
.y20_c00492{bottom:839.973333pt;}
.y1f_c00492{bottom:840.360000pt;}
.y1d_c00492{bottom:855.773333pt;}
.y1c_c00492{bottom:855.973333pt;}
.y1b_c00492{bottom:857.693333pt;}
.y1a_c00492{bottom:858.640000pt;}
.y16_c00492{bottom:872.360000pt;}
.y18_c00492{bottom:874.066667pt;}
.y17_c00492{bottom:875.026667pt;}
.y19_c00492{bottom:875.973333pt;}
.y13_c00492{bottom:889.693333pt;}
.y11_c00492{bottom:890.440000pt;}
.y12_c00492{bottom:892.360000pt;}
.y14_c00492{bottom:892.560000pt;}
.y15_c00492{bottom:893.306667pt;}
.y10_c00492{bottom:907.773333pt;}
.yf_c00492{bottom:908.733333pt;}
.yd_c00492{bottom:909.106667pt;}
.ye_c00492{bottom:909.693333pt;}
.yc_c00492{bottom:911.026667pt;}
.y6_c00492{bottom:925.106667pt;}
.y8_c00492{bottom:926.440000pt;}
.yb_c00492{bottom:927.026667pt;}
.y9_c00492{bottom:927.226667pt;}
.ya_c00492{bottom:927.973333pt;}
.y7_c00492{bottom:928.360000pt;}
.y5_c00492{bottom:943.773333pt;}
.y4_c00492{bottom:945.306667pt;}
.y3_c00492{bottom:945.693333pt;}
.y2_c00492{bottom:977.693333pt;}
.y1_c00492{bottom:980.560000pt;}
.h6_c00492{height:3.739141pt;}
.hb_c00492{height:12.988594pt;}
.h8_c00492{height:14.890964pt;}
.ha_c00492{height:20.224297pt;}
.h1_c00492{height:20.466875pt;}
.h7_c00492{height:22.303646pt;}
.h9_c00492{height:25.800208pt;}
.h3_c00492{height:27.879557pt;}
.h2_c00492{height:31.618698pt;}
.h5_c00492{height:35.357839pt;}
.h4_c00492{height:39.031380pt;}
.h0_c00492{height:1186.666667pt;}
.w0_c00492{width:782.666667pt;}
.x0_c00492{left:0.000000pt;}
.x3_c00492{left:134.666667pt;}
.x9d_c00492{left:136.000000pt;}
.x79_c00492{left:149.333333pt;}
.x4_c00492{left:150.666667pt;}
.x82_c00492{left:152.000000pt;}
.xb7_c00492{left:153.706667pt;}
.x69_c00492{left:160.000000pt;}
.xc0_c00492{left:161.333333pt;}
.x11_c00492{left:163.040000pt;}
.xb8_c00492{left:165.333333pt;}
.xa3_c00492{left:167.040000pt;}
.x41_c00492{left:171.040000pt;}
.xce_c00492{left:172.000000pt;}
.xe3_c00492{left:172.960000pt;}
.x5e_c00492{left:174.293333pt;}
.x83_c00492{left:176.000000pt;}
.x53_c00492{left:177.333333pt;}
.x3b_c00492{left:180.000000pt;}
.xc8_c00492{left:180.960000pt;}
.xb9_c00492{left:182.293333pt;}
.x92_c00492{left:183.626667pt;}
.xd5_c00492{left:184.960000pt;}
.x12_c00492{left:188.000000pt;}
.x1f_c00492{left:189.333333pt;}
.xa4_c00492{left:191.040000pt;}
.xe7_c00492{left:192.000000pt;}
.x5_c00492{left:192.960000pt;}
.x5f_c00492{left:194.666667pt;}
.x29_c00492{left:196.373333pt;}
.x6a_c00492{left:197.706667pt;}
.x33_c00492{left:198.666667pt;}
.x9e_c00492{left:201.333333pt;}
.xd3_c00492{left:203.626667pt;}
.xdb_c00492{left:205.706667pt;}
.x3c_c00492{left:210.293333pt;}
.x95_c00492{left:212.000000pt;}
.xa5_c00492{left:214.666667pt;}
.x7a_c00492{left:216.373333pt;}
.xc1_c00492{left:217.333333pt;}
.xe4_c00492{left:219.040000pt;}
.x2a_c00492{left:220.000000pt;}
.x6b_c00492{left:221.333333pt;}
.x93_c00492{left:225.706667pt;}
.x72_c00492{left:228.373333pt;}
.xe6_c00492{left:229.333333pt;}
.x96_c00492{left:230.666667pt;}
.x6_c00492{left:233.333333pt;}
.x94_c00492{left:236.000000pt;}
.x42_c00492{left:236.960000pt;}
.x8a_c00492{left:239.040000pt;}
.x13_c00492{left:247.626667pt;}
.x20_c00492{left:252.000000pt;}
.x54_c00492{left:253.706667pt;}
.x43_c00492{left:255.040000pt;}
.xb2_c00492{left:256.000000pt;}
.xac_c00492{left:256.960000pt;}
.x7_c00492{left:258.666667pt;}
.x84_c00492{left:264.000000pt;}
.xa6_c00492{left:265.706667pt;}
.x21_c00492{left:267.040000pt;}
.x7b_c00492{left:270.293333pt;}
.x8b_c00492{left:271.626667pt;}
.xd7_c00492{left:273.333333pt;}
.x3d_c00492{left:274.666667pt;}
.x14_c00492{left:276.373333pt;}
.xc2_c00492{left:277.333333pt;}
.x44_c00492{left:280.000000pt;}
.xd2_c00492{left:281.333333pt;}
.xde_c00492{left:282.666667pt;}
.xd0_c00492{left:284.000000pt;}
.x4d_c00492{left:286.666667pt;}
.x34_c00492{left:292.000000pt;}
.x2b_c00492{left:295.626667pt;}
.x22_c00492{left:296.960000pt;}
.xba_c00492{left:300.000000pt;}
.x85_c00492{left:300.960000pt;}
.xb3_c00492{left:303.626667pt;}
.x6c_c00492{left:305.706667pt;}
.x8_c00492{left:309.706667pt;}
.x45_c00492{left:315.040000pt;}
.x86_c00492{left:317.706667pt;}
.xcb_c00492{left:318.666667pt;}
.xad_c00492{left:321.333333pt;}
.x23_c00492{left:324.373333pt;}
.x7c_c00492{left:325.333333pt;}
.x55_c00492{left:328.000000pt;}
.x9f_c00492{left:328.960000pt;}
.xe8_c00492{left:330.666667pt;}
.xbb_c00492{left:332.000000pt;}
.x35_c00492{left:333.706667pt;}
.x8c_c00492{left:334.666667pt;}
.x15_c00492{left:337.333333pt;}
.x87_c00492{left:340.960000pt;}
.xae_c00492{left:343.040000pt;}
.x60_c00492{left:346.293333pt;}
.x7d_c00492{left:348.960000pt;}
.x6d_c00492{left:352.373333pt;}
.x3e_c00492{left:353.333333pt;}
.x2c_c00492{left:354.666667pt;}
.x8d_c00492{left:357.333333pt;}
.x1_c00492{left:360.000000pt;}
.x9_c00492{left:361.333333pt;}
.x61_c00492{left:363.626667pt;}
.xc9_c00492{left:366.666667pt;}
.x73_c00492{left:367.626667pt;}
.xe5_c00492{left:372.000000pt;}
.x62_c00492{left:376.000000pt;}
.x2d_c00492{left:377.706667pt;}
.xe1_c00492{left:378.666667pt;}
.xbc_c00492{left:379.626667pt;}
.xc3_c00492{left:380.760000pt;}
.x74_c00492{left:383.040000pt;}
.x16_c00492{left:384.000000pt;}
.x97_c00492{left:386.293333pt;}
.x36_c00492{left:388.960000pt;}
.xca_c00492{left:394.293333pt;}
.x56_c00492{left:396.373333pt;}
.x46_c00492{left:397.706667pt;}
.x88_c00492{left:402.666667pt;}
.xcc_c00492{left:404.000000pt;}
.x75_c00492{left:405.333333pt;}
.xa0_c00492{left:406.293333pt;}
.x17_c00492{left:407.626667pt;}
.x2e_c00492{left:409.333333pt;}
.x3f_c00492{left:410.666667pt;}
.x4e_c00492{left:412.000000pt;}
.x98_c00492{left:412.960000pt;}
.xa7_c00492{left:415.040000pt;}
.xa_c00492{left:417.333333pt;}
.xcd_c00492{left:418.666667pt;}
.xcf_c00492{left:420.000000pt;}
.x47_c00492{left:422.666667pt;}
.xbd_c00492{left:425.706667pt;}
.xe2_c00492{left:426.666667pt;}
.x18_c00492{left:428.373333pt;}
.x57_c00492{left:431.626667pt;}
.xaf_c00492{left:433.333333pt;}
.xc4_c00492{left:434.666667pt;}
.xb4_c00492{left:436.760000pt;}
.xa8_c00492{left:440.000000pt;}
.x63_c00492{left:442.666667pt;}
.x37_c00492{left:444.960000pt;}
.x8e_c00492{left:447.040000pt;}
.x24_c00492{left:448.000000pt;}
.xb_c00492{left:449.333333pt;}
.x19_c00492{left:458.293333pt;}
.x6e_c00492{left:459.626667pt;}
.x2f_c00492{left:462.666667pt;}
.xd8_c00492{left:465.333333pt;}
.x64_c00492{left:466.666667pt;}
.x7e_c00492{left:467.626667pt;}
.x48_c00492{left:468.960000pt;}
.x8f_c00492{left:470.666667pt;}
.x40_c00492{left:472.960000pt;}
.xdf_c00492{left:474.666667pt;}
.x1a_c00492{left:475.626667pt;}
.x76_c00492{left:478.666667pt;}
.x25_c00492{left:480.373333pt;}
.x7f_c00492{left:485.706667pt;}
.x6f_c00492{left:487.040000pt;}
.x49_c00492{left:488.000000pt;}
.xc_c00492{left:488.960000pt;}
.x99_c00492{left:490.666667pt;}
.x4f_c00492{left:493.706667pt;}
.x58_c00492{left:496.373333pt;}
.x4a_c00492{left:500.373333pt;}
.x26_c00492{left:504.000000pt;}
.x89_c00492{left:507.626667pt;}
.x65_c00492{left:509.333333pt;}
.x70_c00492{left:510.666667pt;}
.x77_c00492{left:512.373333pt;}
.x38_c00492{left:514.293333pt;}
.x1b_c00492{left:516.000000pt;}
.x50_c00492{left:516.960000pt;}
.xc5_c00492{left:520.960000pt;}
.xdc_c00492{left:522.666667pt;}
.xd_c00492{left:526.666667pt;}
.xbe_c00492{left:528.960000pt;}
.x59_c00492{left:531.626667pt;}
.x90_c00492{left:533.706667pt;}
.xa9_c00492{left:537.333333pt;}
.x66_c00492{left:539.040000pt;}
.x1c_c00492{left:541.706667pt;}
.x30_c00492{left:544.373333pt;}
.xbf_c00492{left:547.040000pt;}
.x27_c00492{left:548.000000pt;}
.x5a_c00492{left:552.000000pt;}
.x78_c00492{left:554.293333pt;}
.x71_c00492{left:557.706667pt;}
.x39_c00492{left:561.333333pt;}
.x80_c00492{left:562.293333pt;}
.xaa_c00492{left:563.626667pt;}
.x9a_c00492{left:565.333333pt;}
.xd9_c00492{left:566.666667pt;}
.x31_c00492{left:568.000000pt;}
.xe_c00492{left:569.333333pt;}
.xd4_c00492{left:570.666667pt;}
.x5b_c00492{left:572.000000pt;}
.xb0_c00492{left:573.706667pt;}
.xdd_c00492{left:574.666667pt;}
.x1d_c00492{left:576.373333pt;}
.x28_c00492{left:578.666667pt;}
.xb5_c00492{left:581.333333pt;}
.xab_c00492{left:584.373333pt;}
.xc6_c00492{left:585.706667pt;}
.x3a_c00492{left:586.666667pt;}
.xf_c00492{left:589.706667pt;}
.x67_c00492{left:592.373333pt;}
.xa1_c00492{left:597.333333pt;}
.x5c_c00492{left:600.000000pt;}
.x9b_c00492{left:601.333333pt;}
.x81_c00492{left:602.666667pt;}
.xda_c00492{left:606.666667pt;}
.xb1_c00492{left:608.000000pt;}
.x51_c00492{left:611.626667pt;}
.xa2_c00492{left:613.706667pt;}
.x10_c00492{left:614.666667pt;}
.x4b_c00492{left:615.626667pt;}
.x9c_c00492{left:617.706667pt;}
.xb6_c00492{left:618.666667pt;}
.xd1_c00492{left:620.000000pt;}
.xd6_c00492{left:621.333333pt;}
.xe0_c00492{left:622.666667pt;}
.x1e_c00492{left:624.000000pt;}
.x2_c00492{left:625.333333pt;}
.x91_c00492{left:626.293333pt;}
.x32_c00492{left:628.373333pt;}
.x52_c00492{left:629.706667pt;}
.xc7_c00492{left:631.040000pt;}
.x4c_c00492{left:632.960000pt;}
.x5d_c00492{left:634.666667pt;}
.x68_c00492{left:636.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_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_60416ad5802d18217e1ef1a6.woff2')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m79_c00493{transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);}
.m76_c00493{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.md8_c00493{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.mec_c00493{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m62_c00493{transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);}
.m33_c00493{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m72_c00493{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m0_c00493{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m85_c00493{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.md2_c00493{transform:matrix(0.369632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369632,0.000000,0.000000,0.250000,0,0);}
.m78_c00493{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.me9_c00493{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m63_c00493{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.mf0_c00493{transform:matrix(0.373850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373850,0.000000,0.000000,0.250000,0,0);}
.meb_c00493{transform:matrix(0.374233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374233,0.000000,0.000000,0.250000,0,0);}
.m3a_c00493{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m5b_c00493{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m1b_c00493{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m84_c00493{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m19_c00493{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.mb9_c00493{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.me4_c00493{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.m6c_c00493{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mee_c00493{transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);}
.m7d_c00493{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m7e_c00493{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m2b_c00493{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.maf_c00493{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m46_c00493{transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);}
.me6_c00493{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m39_c00493{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.mea_c00493{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.mc1_c00493{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m21_c00493{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.mc6_c00493{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_c00493{transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);}
.md_c00493{transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);}
.m3e_c00493{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.mad_c00493{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.me3_c00493{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.md0_c00493{transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);}
.mc9_c00493{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.med_c00493{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.m75_c00493{transform:matrix(0.406058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406058,0.000000,0.000000,0.250000,0,0);}
.mb5_c00493{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m6_c00493{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m54_c00493{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m7b_c00493{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.mc8_c00493{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.mc4_c00493{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.mc2_c00493{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m60_c00493{transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);}
.m56_c00493{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m6e_c00493{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.ma0_c00493{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m3b_c00493{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m17_c00493{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m8a_c00493{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.mdf_c00493{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m71_c00493{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m9b_c00493{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.me5_c00493{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m5a_c00493{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.md4_c00493{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m9e_c00493{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mcd_c00493{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.mf_c00493{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m50_c00493{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m73_c00493{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.ma4_c00493{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m93_c00493{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m55_c00493{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m48_c00493{transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);}
.md9_c00493{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.mbb_c00493{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m65_c00493{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m1a_c00493{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.mcb_c00493{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.m51_c00493{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m5d_c00493{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m6b_c00493{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mb8_c00493{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m4d_c00493{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m18_c00493{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m35_c00493{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.mc0_c00493{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m83_c00493{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.mcc_c00493{transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);}
.m81_c00493{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.m3f_c00493{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m77_c00493{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.m2e_c00493{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.mac_c00493{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.ma1_c00493{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m11_c00493{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m4a_c00493{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.ma8_c00493{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.m9_c00493{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m67_c00493{transform:matrix(0.456865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456865,0.000000,0.000000,0.250000,0,0);}
.m45_c00493{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m5c_c00493{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.mb6_c00493{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.mdd_c00493{transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);}
.m7c_c00493{transform:matrix(0.468067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468067,0.000000,0.000000,0.250000,0,0);}
.m6d_c00493{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.md3_c00493{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.m57_c00493{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m99_c00493{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.m88_c00493{transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);}
.m12_c00493{transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);}
.m40_c00493{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m97_c00493{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m37_c00493{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.m7_c00493{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.ma3_c00493{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.md6_c00493{transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);}
.m5e_c00493{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.mb7_c00493{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.me7_c00493{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m26_c00493{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mb2_c00493{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m82_c00493{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m32_c00493{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m9a_c00493{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m15_c00493{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m38_c00493{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m61_c00493{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.mdc_c00493{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m9f_c00493{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m4_c00493{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_c00493{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m25_c00493{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m86_c00493{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mca_c00493{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m8b_c00493{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m68_c00493{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mc5_c00493{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.ma7_c00493{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.md7_c00493{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m4b_c00493{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.mc_c00493{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m87_c00493{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m89_c00493{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m3c_c00493{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m14_c00493{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m43_c00493{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m53_c00493{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m5_c00493{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.me_c00493{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m90_c00493{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m1d_c00493{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m42_c00493{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m59_c00493{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.md5_c00493{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m44_c00493{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m7f_c00493{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.md1_c00493{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.me1_c00493{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m28_c00493{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m74_c00493{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.mda_c00493{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m41_c00493{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m98_c00493{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m91_c00493{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m9d_c00493{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m10_c00493{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mb_c00493{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m4f_c00493{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mc7_c00493{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m58_c00493{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m36_c00493{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mdb_c00493{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m52_c00493{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m92_c00493{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m6f_c00493{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m24_c00493{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mb0_c00493{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m69_c00493{transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);}
.m9c_c00493{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.mb3_c00493{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m80_c00493{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m8e_c00493{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m70_c00493{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.m6a_c00493{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m31_c00493{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.me8_c00493{transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);}
.m13_c00493{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.maa_c00493{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m2f_c00493{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m27_c00493{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m66_c00493{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.ma9_c00493{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.mae_c00493{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m96_c00493{transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);}
.m8_c00493{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m23_c00493{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m7a_c00493{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m8f_c00493{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.mde_c00493{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.mce_c00493{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m64_c00493{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m2_c00493{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);}
.mb1_c00493{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m94_c00493{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.m3_c00493{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mba_c00493{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.ma_c00493{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m2a_c00493{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m5f_c00493{transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);}
.m29_c00493{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.mbd_c00493{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m1c_c00493{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);}
.m1e_c00493{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.ma5_c00493{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m1_c00493{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m8c_c00493{transform:matrix(0.644710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644710,0.000000,0.000000,0.250000,0,0);}
.m4e_c00493{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m22_c00493{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.me2_c00493{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.m4c_c00493{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m3d_c00493{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.mc3_c00493{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m1f_c00493{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.m34_c00493{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m20_c00493{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m47_c00493{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m95_c00493{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.mbe_c00493{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m2d_c00493{transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);}
.m16_c00493{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.mab_c00493{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.me0_c00493{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.mef_c00493{transform:matrix(0.774840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.774840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.774840,0.000000,0.000000,0.250000,0,0);}
.mbc_c00493{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.mbf_c00493{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.mcf_c00493{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m49_c00493{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.ma6_c00493{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.ma2_c00493{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m30_c00493{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.mb4_c00493{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.v1_c00493{vertical-align:-6.000000px;}
.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;}
}
.ws1_c00493{word-spacing:-7.257960px;}
.ws2_c00493{word-spacing:0.000000px;}
.ws0_c00493{word-spacing:0.123939px;}
.fc0_c00493{color:transparent;}
.fs5_c00493{font-size:18.720000px;}
.fs1_c00493{font-size:20.400000px;}
.fs2_c00493{font-size:25.500000px;}
.fs3_c00493{font-size:28.920000px;}
.fs4_c00493{font-size:32.340000px;}
.fs0_c00493{font-size:35.700000px;}
.fs6_c00493{font-size:39.120000px;}
.y0_c00493{bottom:0.000000px;}
.ycb_c00493{bottom:249.180000px;}
.ycc_c00493{bottom:250.245000px;}
.yca_c00493{bottom:251.130000px;}
.yc9_c00493{bottom:252.405000px;}
.yc8_c00493{bottom:269.745000px;}
.yc7_c00493{bottom:270.825000px;}
.yc6_c00493{bottom:271.470000px;}
.yc5_c00493{bottom:271.905000px;}
.yc0_c00493{bottom:289.245000px;}
.yc4_c00493{bottom:289.680000px;}
.yc1_c00493{bottom:290.130000px;}
.yc2_c00493{bottom:291.405000px;}
.yc3_c00493{bottom:291.630000px;}
.ybc_c00493{bottom:308.745000px;}
.ybd_c00493{bottom:310.905000px;}
.ybe_c00493{bottom:311.130000px;}
.ybf_c00493{bottom:312.405000px;}
.ybb_c00493{bottom:328.245000px;}
.yb8_c00493{bottom:329.550000px;}
.yb9_c00493{bottom:329.745000px;}
.yba_c00493{bottom:331.905000px;}
.yb7_c00493{bottom:349.245000px;}
.yb5_c00493{bottom:350.130000px;}
.yb6_c00493{bottom:351.405000px;}
.yb4_c00493{bottom:366.405000px;}
.yb2_c00493{bottom:368.745000px;}
.yb3_c00493{bottom:368.970000px;}
.yb1_c00493{bottom:370.905000px;}
.yb0_c00493{bottom:390.405000px;}
.yaf_c00493{bottom:406.905000px;}
.yac_c00493{bottom:407.745000px;}
.yad_c00493{bottom:409.905000px;}
.yae_c00493{bottom:411.405000px;}
.ya6_c00493{bottom:426.405000px;}
.yab_c00493{bottom:427.245000px;}
.ya4_c00493{bottom:427.680000px;}
.ya9_c00493{bottom:428.325000px;}
.ya7_c00493{bottom:428.745000px;}
.yaa_c00493{bottom:429.405000px;}
.ya8_c00493{bottom:429.630000px;}
.ya5_c00493{bottom:430.905000px;}
.ya2_c00493{bottom:446.745000px;}
.y9f_c00493{bottom:447.825000px;}
.ya0_c00493{bottom:448.245000px;}
.ya3_c00493{bottom:448.905000px;}
.ya1_c00493{bottom:449.130000px;}
.y9e_c00493{bottom:449.325000px;}
.y9d_c00493{bottom:450.405000px;}
.y99_c00493{bottom:467.745000px;}
.y9b_c00493{bottom:468.630000px;}
.y9c_c00493{bottom:468.825000px;}
.y98_c00493{bottom:469.905000px;}
.y9a_c00493{bottom:470.130000px;}
.y93_c00493{bottom:487.245000px;}
.y97_c00493{bottom:488.130000px;}
.y95_c00493{bottom:488.970000px;}
.y96_c00493{bottom:489.405000px;}
.y94_c00493{bottom:489.630000px;}
.y91_c00493{bottom:506.745000px;}
.y90_c00493{bottom:508.905000px;}
.y8f_c00493{bottom:509.130000px;}
.y92_c00493{bottom:509.970000px;}
.y8c_c00493{bottom:526.245000px;}
.y8d_c00493{bottom:527.745000px;}
.y8b_c00493{bottom:528.405000px;}
.y8e_c00493{bottom:528.825000px;}
.y8a_c00493{bottom:529.470000px;}
.y89_c00493{bottom:529.905000px;}
.y88_c00493{bottom:543.405000px;}
.y85_c00493{bottom:545.745000px;}
.y84_c00493{bottom:547.905000px;}
.y86_c00493{bottom:548.130000px;}
.y87_c00493{bottom:548.970000px;}
.y82_c00493{bottom:565.245000px;}
.y83_c00493{bottom:566.745000px;}
.y80_c00493{bottom:567.405000px;}
.y81_c00493{bottom:567.630000px;}
.y7f_c00493{bottom:568.470000px;}
.y7e_c00493{bottom:568.905000px;}
.y7d_c00493{bottom:586.905000px;}
.y7c_c00493{bottom:587.325000px;}
.y7b_c00493{bottom:588.405000px;}
.y79_c00493{bottom:603.405000px;}
.y76_c00493{bottom:605.745000px;}
.y78_c00493{bottom:606.630000px;}
.y7a_c00493{bottom:607.470000px;}
.y77_c00493{bottom:607.905000px;}
.y74_c00493{bottom:625.245000px;}
.y75_c00493{bottom:626.325000px;}
.y73_c00493{bottom:627.405000px;}
.y70_c00493{bottom:644.745000px;}
.y72_c00493{bottom:644.970000px;}
.y71_c00493{bottom:645.825000px;}
.y6f_c00493{bottom:646.905000px;}
.y6d_c00493{bottom:664.245000px;}
.y6c_c00493{bottom:664.470000px;}
.y6b_c00493{bottom:666.405000px;}
.y6e_c00493{bottom:666.630000px;}
.y69_c00493{bottom:683.745000px;}
.y6a_c00493{bottom:684.825000px;}
.y68_c00493{bottom:685.245000px;}
.y66_c00493{bottom:685.905000px;}
.y64_c00493{bottom:686.130000px;}
.y67_c00493{bottom:686.970000px;}
.y65_c00493{bottom:687.405000px;}
.y61_c00493{bottom:702.405000px;}
.y60_c00493{bottom:703.245000px;}
.y62_c00493{bottom:703.470000px;}
.y5d_c00493{bottom:704.745000px;}
.y5f_c00493{bottom:705.405000px;}
.y63_c00493{bottom:706.470000px;}
.y5e_c00493{bottom:706.905000px;}
.y5c_c00493{bottom:723.825000px;}
.y5b_c00493{bottom:724.245000px;}
.y5a_c00493{bottom:725.130000px;}
.y59_c00493{bottom:726.405000px;}
.y57_c00493{bottom:743.745000px;}
.y58_c00493{bottom:744.630000px;}
.y56_c00493{bottom:745.905000px;}
.y54_c00493{bottom:763.245000px;}
.y55_c00493{bottom:765.405000px;}
.y53_c00493{bottom:781.680000px;}
.y4e_c00493{bottom:782.745000px;}
.y4f_c00493{bottom:783.180000px;}
.y52_c00493{bottom:783.825000px;}
.y51_c00493{bottom:784.905000px;}
.y50_c00493{bottom:785.970000px;}
.y4d_c00493{bottom:802.245000px;}
.y4c_c00493{bottom:804.405000px;}
.y49_c00493{bottom:820.905000px;}
.y48_c00493{bottom:823.245000px;}
.y4a_c00493{bottom:823.905000px;}
.y4b_c00493{bottom:824.970000px;}
.y47_c00493{bottom:825.405000px;}
.y43_c00493{bottom:841.245000px;}
.y3d_c00493{bottom:841.470000px;}
.y40_c00493{bottom:841.680000px;}
.y3c_c00493{bottom:841.905000px;}
.y45_c00493{bottom:842.325000px;}
.y41_c00493{bottom:842.745000px;}
.y44_c00493{bottom:842.970000px;}
.y42_c00493{bottom:843.405000px;}
.y46_c00493{bottom:843.630000px;}
.y3b_c00493{bottom:843.825000px;}
.y3e_c00493{bottom:844.470000px;}
.y3f_c00493{bottom:844.905000px;}
.y3a_c00493{bottom:859.905000px;}
.y39_c00493{bottom:860.745000px;}
.y37_c00493{bottom:861.825000px;}
.y35_c00493{bottom:862.245000px;}
.y38_c00493{bottom:863.970000px;}
.y36_c00493{bottom:864.405000px;}
.y34_c00493{bottom:880.245000px;}
.y32_c00493{bottom:881.745000px;}
.y33_c00493{bottom:882.630000px;}
.y31_c00493{bottom:883.905000px;}
.y30_c00493{bottom:898.905000px;}
.y2c_c00493{bottom:900.825000px;}
.y2b_c00493{bottom:901.245000px;}
.y2f_c00493{bottom:902.130000px;}
.y2d_c00493{bottom:902.970000px;}
.y2a_c00493{bottom:903.405000px;}
.y2e_c00493{bottom:903.630000px;}
.y29_c00493{bottom:920.745000px;}
.y27_c00493{bottom:921.825000px;}
.y28_c00493{bottom:922.905000px;}
.y25_c00493{bottom:940.245000px;}
.y23_c00493{bottom:941.745000px;}
.y24_c00493{bottom:942.405000px;}
.y26_c00493{bottom:942.630000px;}
.y22_c00493{bottom:943.905000px;}
.y1e_c00493{bottom:959.745000px;}
.y21_c00493{bottom:960.825000px;}
.y1f_c00493{bottom:961.905000px;}
.y20_c00493{bottom:962.130000px;}
.y1c_c00493{bottom:979.245000px;}
.y1a_c00493{bottom:979.470000px;}
.y1b_c00493{bottom:981.405000px;}
.y1d_c00493{bottom:981.630000px;}
.y15_c00493{bottom:998.745000px;}
.y16_c00493{bottom:998.970000px;}
.y19_c00493{bottom:1000.470000px;}
.y14_c00493{bottom:1000.905000px;}
.y17_c00493{bottom:1001.130000px;}
.y18_c00493{bottom:1001.970000px;}
.y12_c00493{bottom:1017.825000px;}
.y13_c00493{bottom:1018.245000px;}
.y11_c00493{bottom:1019.745000px;}
.y10_c00493{bottom:1021.470000px;}
.yb_c00493{bottom:1036.905000px;}
.yf_c00493{bottom:1037.745000px;}
.ya_c00493{bottom:1039.245000px;}
.ye_c00493{bottom:1040.130000px;}
.yc_c00493{bottom:1040.325000px;}
.yd_c00493{bottom:1040.970000px;}
.y9_c00493{bottom:1041.405000px;}
.y7_c00493{bottom:1057.245000px;}
.y6_c00493{bottom:1058.745000px;}
.y8_c00493{bottom:1059.405000px;}
.y4_c00493{bottom:1060.470000px;}
.y5_c00493{bottom:1060.905000px;}
.y3_c00493{bottom:1061.970000px;}
.y1_c00493{bottom:1097.745000px;}
.y2_c00493{bottom:1099.050000px;}
.h6_c00493{height:23.025234px;}
.h2_c00493{height:25.091602px;}
.h3_c00493{height:31.364502px;}
.h4_c00493{height:35.571035px;}
.h5_c00493{height:39.777568px;}
.h1_c00493{height:43.910303px;}
.h7_c00493{height:48.116836px;}
.h0_c00493{height:1335.000000px;}
.w0_c00493{width:880.500000px;}
.x0_c00493{left:0.000000px;}
.x101_c00493{left:148.080000px;}
.xf1_c00493{left:149.580000px;}
.x81_c00493{left:151.500000px;}
.x1_c00493{left:153.000000px;}
.x10_c00493{left:154.500000px;}
.xd7_c00493{left:166.920000px;}
.x8c_c00493{left:168.000000px;}
.x3_c00493{left:169.500000px;}
.x77_c00493{left:172.920000px;}
.xbc_c00493{left:176.580000px;}
.xab_c00493{left:182.580000px;}
.xa4_c00493{left:183.645000px;}
.xc2_c00493{left:186.000000px;}
.x11_c00493{left:187.500000px;}
.x21_c00493{left:190.080000px;}
.xd3_c00493{left:193.080000px;}
.x1f_c00493{left:194.580000px;}
.x2c_c00493{left:196.920000px;}
.x53_c00493{left:198.000000px;}
.x78_c00493{left:201.420000px;}
.x4_c00493{left:202.500000px;}
.x93_c00493{left:204.000000px;}
.xc3_c00493{left:205.500000px;}
.xe2_c00493{left:207.000000px;}
.x89_c00493{left:208.500000px;}
.x3f_c00493{left:209.580000px;}
.x82_c00493{left:211.500000px;}
.x36_c00493{left:214.920000px;}
.x69_c00493{left:217.500000px;}
.xb5_c00493{left:222.000000px;}
.x73_c00493{left:223.500000px;}
.x94_c00493{left:226.920000px;}
.x60_c00493{left:229.080000px;}
.x46_c00493{left:230.580000px;}
.x12_c00493{left:232.920000px;}
.xc4_c00493{left:234.000000px;}
.x2d_c00493{left:237.420000px;}
.xb6_c00493{left:238.500000px;}
.xff_c00493{left:240.000000px;}
.x54_c00493{left:241.920000px;}
.x5_c00493{left:244.080000px;}
.xac_c00493{left:245.145000px;}
.xf9_c00493{left:246.420000px;}
.xe3_c00493{left:247.500000px;}
.xbd_c00493{left:249.000000px;}
.x61_c00493{left:250.500000px;}
.x37_c00493{left:252.000000px;}
.xc5_c00493{left:253.920000px;}
.xb0_c00493{left:255.000000px;}
.x8a_c00493{left:256.080000px;}
.x13_c00493{left:259.920000px;}
.x9e_c00493{left:262.500000px;}
.x6_c00493{left:264.420000px;}
.x20_c00493{left:266.355000px;}
.xce_c00493{left:273.000000px;}
.x8b_c00493{left:274.920000px;}
.x49_c00493{left:276.000000px;}
.x96_c00493{left:277.500000px;}
.x79_c00493{left:280.500000px;}
.xc6_c00493{left:282.000000px;}
.x2e_c00493{left:283.500000px;}
.x22_c00493{left:285.000000px;}
.x40_c00493{left:286.275000px;}
.x38_c00493{left:288.420000px;}
.x83_c00493{left:290.580000px;}
.x7_c00493{left:292.500000px;}
.x47_c00493{left:294.000000px;}
.x6a_c00493{left:295.920000px;}
.xf2_c00493{left:300.420000px;}
.x55_c00493{left:301.500000px;}
.x2f_c00493{left:303.420000px;}
.xcf_c00493{left:306.000000px;}
.x14_c00493{left:307.500000px;}
.x62_c00493{left:309.000000px;}
.x39_c00493{left:315.000000px;}
.xbe_c00493{left:316.500000px;}
.x56_c00493{left:318.000000px;}
.x95_c00493{left:319.500000px;}
.x100_c00493{left:321.000000px;}
.xdd_c00493{left:322.500000px;}
.x97_c00493{left:324.000000px;}
.xb7_c00493{left:325.500000px;}
.x7a_c00493{left:328.080000px;}
.x30_c00493{left:330.000000px;}
.x41_c00493{left:331.920000px;}
.xb1_c00493{left:333.000000px;}
.xd4_c00493{left:334.500000px;}
.x4a_c00493{left:336.000000px;}
.x6b_c00493{left:337.080000px;}
.x74_c00493{left:338.580000px;}
.x8d_c00493{left:341.580000px;}
.xde_c00493{left:343.920000px;}
.xe4_c00493{left:345.420000px;}
.x7b_c00493{left:348.420000px;}
.x57_c00493{left:349.500000px;}
.xd5_c00493{left:352.500000px;}
.xd8_c00493{left:354.000000px;}
.x23_c00493{left:355.500000px;}
.xec_c00493{left:356.580000px;}
.x48_c00493{left:358.080000px;}
.x42_c00493{left:359.355000px;}
.x63_c00493{left:362.580000px;}
.x8_c00493{left:364.500000px;}
.xfe_c00493{left:366.420000px;}
.xe9_c00493{left:367.500000px;}
.x15_c00493{left:368.580000px;}
.x3a_c00493{left:371.580000px;}
.xfa_c00493{left:373.500000px;}
.x7c_c00493{left:375.000000px;}
.x31_c00493{left:378.420000px;}
.xf3_c00493{left:379.500000px;}
.x8e_c00493{left:381.000000px;}
.x9_c00493{left:382.080000px;}
.x75_c00493{left:383.580000px;}
.xc7_c00493{left:385.500000px;}
.x4b_c00493{left:388.080000px;}
.x102_c00493{left:389.145000px;}
.x24_c00493{left:390.420000px;}
.xa5_c00493{left:393.420000px;}
.x6c_c00493{left:396.000000px;}
.x8f_c00493{left:402.000000px;}
.xea_c00493{left:405.000000px;}
.x84_c00493{left:408.420000px;}
.x2_c00493{left:409.500000px;}
.xd9_c00493{left:412.500000px;}
.xb2_c00493{left:414.000000px;}
.x43_c00493{left:416.145000px;}
.x58_c00493{left:417.420000px;}
.x98_c00493{left:421.080000px;}
.xb8_c00493{left:422.580000px;}
.xa_c00493{left:424.500000px;}
.x16_c00493{left:426.420000px;}
.xad_c00493{left:427.500000px;}
.x25_c00493{left:430.920000px;}
.x7d_c00493{left:432.000000px;}
.xc8_c00493{left:435.000000px;}
.x32_c00493{left:436.080000px;}
.x6d_c00493{left:438.420000px;}
.x4c_c00493{left:439.500000px;}
.x59_c00493{left:442.920000px;}
.xdf_c00493{left:445.500000px;}
.xd0_c00493{left:446.580000px;}
.x9f_c00493{left:448.500000px;}
.xb_c00493{left:450.000000px;}
.x17_c00493{left:453.000000px;}
.x33_c00493{left:454.920000px;}
.xe5_c00493{left:456.000000px;}
.xf8_c00493{left:457.920000px;}
.xda_c00493{left:459.000000px;}
.x4d_c00493{left:462.420000px;}
.xe0_c00493{left:465.000000px;}
.xb3_c00493{left:468.000000px;}
.x26_c00493{left:469.920000px;}
.xc9_c00493{left:471.420000px;}
.xa0_c00493{left:472.920000px;}
.x6e_c00493{left:475.080000px;}
.x3b_c00493{left:477.000000px;}
.xc_c00493{left:478.500000px;}
.x85_c00493{left:479.775000px;}
.x34_c00493{left:481.500000px;}
.x44_c00493{left:483.000000px;}
.x5a_c00493{left:486.000000px;}
.x64_c00493{left:487.080000px;}
.xf6_c00493{left:489.000000px;}
.x18_c00493{left:491.580000px;}
.xa6_c00493{left:495.420000px;}
.xe1_c00493{left:496.920000px;}
.x90_c00493{left:499.080000px;}
.x6f_c00493{left:505.275000px;}
.xe6_c00493{left:506.580000px;}
.xb4_c00493{left:508.500000px;}
.x19_c00493{left:510.420000px;}
.x86_c00493{left:512.580000px;}
.x5b_c00493{left:516.420000px;}
.x99_c00493{left:519.000000px;}
.xa7_c00493{left:523.080000px;}
.x27_c00493{left:526.500000px;}
.xfb_c00493{left:527.580000px;}
.x3c_c00493{left:529.500000px;}
.xae_c00493{left:531.000000px;}
.x65_c00493{left:532.080000px;}
.x35_c00493{left:534.000000px;}
.xca_c00493{left:535.500000px;}
.x1a_c00493{left:536.580000px;}
.x76_c00493{left:541.920000px;}
.xed_c00493{left:543.645000px;}
.x28_c00493{left:544.920000px;}
.xa1_c00493{left:546.000000px;}
.x103_c00493{left:547.500000px;}
.x5c_c00493{left:548.580000px;}
.x4e_c00493{left:550.500000px;}
.xb9_c00493{left:553.500000px;}
.x3d_c00493{left:555.420000px;}
.xfc_c00493{left:560.580000px;}
.xdb_c00493{left:564.000000px;}
.xcb_c00493{left:565.500000px;}
.x5d_c00493{left:567.420000px;}
.x9a_c00493{left:570.000000px;}
.xd_c00493{left:571.080000px;}
.xbf_c00493{left:576.000000px;}
.xa8_c00493{left:577.500000px;}
.xd1_c00493{left:578.580000px;}
.x29_c00493{left:581.580000px;}
.x1b_c00493{left:583.500000px;}
.xeb_c00493{left:586.080000px;}
.x66_c00493{left:589.080000px;}
.x4f_c00493{left:592.920000px;}
.x7e_c00493{left:595.500000px;}
.xf4_c00493{left:597.420000px;}
.xa9_c00493{left:598.500000px;}
.xe7_c00493{left:599.580000px;}
.x87_c00493{left:601.500000px;}
.xe_c00493{left:603.420000px;}
.x9b_c00493{left:606.000000px;}
.x70_c00493{left:607.080000px;}
.x1c_c00493{left:612.000000px;}
.x91_c00493{left:613.500000px;}
.xaf_c00493{left:616.500000px;}
.xc0_c00493{left:618.420000px;}
.x9c_c00493{left:624.420000px;}
.x1d_c00493{left:625.500000px;}
.xef_c00493{left:627.000000px;}
.x67_c00493{left:630.000000px;}
.xf_c00493{left:632.580000px;}
.xe8_c00493{left:634.500000px;}
.xf7_c00493{left:637.500000px;}
.xa2_c00493{left:639.420000px;}
.xcc_c00493{left:640.500000px;}
.xee_c00493{left:641.775000px;}
.x50_c00493{left:643.920000px;}
.xaa_c00493{left:645.420000px;}
.xf5_c00493{left:646.500000px;}
.x5e_c00493{left:648.000000px;}
.xc1_c00493{left:651.420000px;}
.xba_c00493{left:655.500000px;}
.xcd_c00493{left:660.420000px;}
.x5f_c00493{left:661.920000px;}
.xf0_c00493{left:663.420000px;}
.x71_c00493{left:666.000000px;}
.xd2_c00493{left:667.500000px;}
.x7f_c00493{left:669.420000px;}
.x88_c00493{left:672.000000px;}
.x9d_c00493{left:674.580000px;}
.x3e_c00493{left:678.000000px;}
.xfd_c00493{left:679.500000px;}
.x1e_c00493{left:685.500000px;}
.x2a_c00493{left:686.580000px;}
.xa3_c00493{left:692.145000px;}
.x68_c00493{left:694.920000px;}
.xd6_c00493{left:697.500000px;}
.xdc_c00493{left:698.580000px;}
.xbb_c00493{left:700.500000px;}
.x72_c00493{left:702.420000px;}
.x51_c00493{left:703.500000px;}
.x92_c00493{left:705.420000px;}
.x80_c00493{left:708.420000px;}
.x45_c00493{left:709.920000px;}
.x2b_c00493{left:717.000000px;}
.x52_c00493{left:720.000000px;}
@media print{
.v1_c00493{vertical-align:-5.333333pt;}
.v0_c00493{vertical-align:0.000000pt;}
.ls0_c00493{letter-spacing:0.000000pt;}
.ws1_c00493{word-spacing:-6.451520pt;}
.ws2_c00493{word-spacing:0.000000pt;}
.ws0_c00493{word-spacing:0.110168pt;}
.fs5_c00493{font-size:16.640000pt;}
.fs1_c00493{font-size:18.133333pt;}
.fs2_c00493{font-size:22.666667pt;}
.fs3_c00493{font-size:25.706667pt;}
.fs4_c00493{font-size:28.746667pt;}
.fs0_c00493{font-size:31.733333pt;}
.fs6_c00493{font-size:34.773333pt;}
.y0_c00493{bottom:0.000000pt;}
.ycb_c00493{bottom:221.493333pt;}
.ycc_c00493{bottom:222.440000pt;}
.yca_c00493{bottom:223.226667pt;}
.yc9_c00493{bottom:224.360000pt;}
.yc8_c00493{bottom:239.773333pt;}
.yc7_c00493{bottom:240.733333pt;}
.yc6_c00493{bottom:241.306667pt;}
.yc5_c00493{bottom:241.693333pt;}
.yc0_c00493{bottom:257.106667pt;}
.yc4_c00493{bottom:257.493333pt;}
.yc1_c00493{bottom:257.893333pt;}
.yc2_c00493{bottom:259.026667pt;}
.yc3_c00493{bottom:259.226667pt;}
.ybc_c00493{bottom:274.440000pt;}
.ybd_c00493{bottom:276.360000pt;}
.ybe_c00493{bottom:276.560000pt;}
.ybf_c00493{bottom:277.693333pt;}
.ybb_c00493{bottom:291.773333pt;}
.yb8_c00493{bottom:292.933333pt;}
.yb9_c00493{bottom:293.106667pt;}
.yba_c00493{bottom:295.026667pt;}
.yb7_c00493{bottom:310.440000pt;}
.yb5_c00493{bottom:311.226667pt;}
.yb6_c00493{bottom:312.360000pt;}
.yb4_c00493{bottom:325.693333pt;}
.yb2_c00493{bottom:327.773333pt;}
.yb3_c00493{bottom:327.973333pt;}
.yb1_c00493{bottom:329.693333pt;}
.yb0_c00493{bottom:347.026667pt;}
.yaf_c00493{bottom:361.693333pt;}
.yac_c00493{bottom:362.440000pt;}
.yad_c00493{bottom:364.360000pt;}
.yae_c00493{bottom:365.693333pt;}
.ya6_c00493{bottom:379.026667pt;}
.yab_c00493{bottom:379.773333pt;}
.ya4_c00493{bottom:380.160000pt;}
.ya9_c00493{bottom:380.733333pt;}
.ya7_c00493{bottom:381.106667pt;}
.yaa_c00493{bottom:381.693333pt;}
.ya8_c00493{bottom:381.893333pt;}
.ya5_c00493{bottom:383.026667pt;}
.ya2_c00493{bottom:397.106667pt;}
.y9f_c00493{bottom:398.066667pt;}
.ya0_c00493{bottom:398.440000pt;}
.ya3_c00493{bottom:399.026667pt;}
.ya1_c00493{bottom:399.226667pt;}
.y9e_c00493{bottom:399.400000pt;}
.y9d_c00493{bottom:400.360000pt;}
.y99_c00493{bottom:415.773333pt;}
.y9b_c00493{bottom:416.560000pt;}
.y9c_c00493{bottom:416.733333pt;}
.y98_c00493{bottom:417.693333pt;}
.y9a_c00493{bottom:417.893333pt;}
.y93_c00493{bottom:433.106667pt;}
.y97_c00493{bottom:433.893333pt;}
.y95_c00493{bottom:434.640000pt;}
.y96_c00493{bottom:435.026667pt;}
.y94_c00493{bottom:435.226667pt;}
.y91_c00493{bottom:450.440000pt;}
.y90_c00493{bottom:452.360000pt;}
.y8f_c00493{bottom:452.560000pt;}
.y92_c00493{bottom:453.306667pt;}
.y8c_c00493{bottom:467.773333pt;}
.y8d_c00493{bottom:469.106667pt;}
.y8b_c00493{bottom:469.693333pt;}
.y8e_c00493{bottom:470.066667pt;}
.y8a_c00493{bottom:470.640000pt;}
.y89_c00493{bottom:471.026667pt;}
.y88_c00493{bottom:483.026667pt;}
.y85_c00493{bottom:485.106667pt;}
.y84_c00493{bottom:487.026667pt;}
.y86_c00493{bottom:487.226667pt;}
.y87_c00493{bottom:487.973333pt;}
.y82_c00493{bottom:502.440000pt;}
.y83_c00493{bottom:503.773333pt;}
.y80_c00493{bottom:504.360000pt;}
.y81_c00493{bottom:504.560000pt;}
.y7f_c00493{bottom:505.306667pt;}
.y7e_c00493{bottom:505.693333pt;}
.y7d_c00493{bottom:521.693333pt;}
.y7c_c00493{bottom:522.066667pt;}
.y7b_c00493{bottom:523.026667pt;}
.y79_c00493{bottom:536.360000pt;}
.y76_c00493{bottom:538.440000pt;}
.y78_c00493{bottom:539.226667pt;}
.y7a_c00493{bottom:539.973333pt;}
.y77_c00493{bottom:540.360000pt;}
.y74_c00493{bottom:555.773333pt;}
.y75_c00493{bottom:556.733333pt;}
.y73_c00493{bottom:557.693333pt;}
.y70_c00493{bottom:573.106667pt;}
.y72_c00493{bottom:573.306667pt;}
.y71_c00493{bottom:574.066667pt;}
.y6f_c00493{bottom:575.026667pt;}
.y6d_c00493{bottom:590.440000pt;}
.y6c_c00493{bottom:590.640000pt;}
.y6b_c00493{bottom:592.360000pt;}
.y6e_c00493{bottom:592.560000pt;}
.y69_c00493{bottom:607.773333pt;}
.y6a_c00493{bottom:608.733333pt;}
.y68_c00493{bottom:609.106667pt;}
.y66_c00493{bottom:609.693333pt;}
.y64_c00493{bottom:609.893333pt;}
.y67_c00493{bottom:610.640000pt;}
.y65_c00493{bottom:611.026667pt;}
.y61_c00493{bottom:624.360000pt;}
.y60_c00493{bottom:625.106667pt;}
.y62_c00493{bottom:625.306667pt;}
.y5d_c00493{bottom:626.440000pt;}
.y5f_c00493{bottom:627.026667pt;}
.y63_c00493{bottom:627.973333pt;}
.y5e_c00493{bottom:628.360000pt;}
.y5c_c00493{bottom:643.400000pt;}
.y5b_c00493{bottom:643.773333pt;}
.y5a_c00493{bottom:644.560000pt;}
.y59_c00493{bottom:645.693333pt;}
.y57_c00493{bottom:661.106667pt;}
.y58_c00493{bottom:661.893333pt;}
.y56_c00493{bottom:663.026667pt;}
.y54_c00493{bottom:678.440000pt;}
.y55_c00493{bottom:680.360000pt;}
.y53_c00493{bottom:694.826667pt;}
.y4e_c00493{bottom:695.773333pt;}
.y4f_c00493{bottom:696.160000pt;}
.y52_c00493{bottom:696.733333pt;}
.y51_c00493{bottom:697.693333pt;}
.y50_c00493{bottom:698.640000pt;}
.y4d_c00493{bottom:713.106667pt;}
.y4c_c00493{bottom:715.026667pt;}
.y49_c00493{bottom:729.693333pt;}
.y48_c00493{bottom:731.773333pt;}
.y4a_c00493{bottom:732.360000pt;}
.y4b_c00493{bottom:733.306667pt;}
.y47_c00493{bottom:733.693333pt;}
.y43_c00493{bottom:747.773333pt;}
.y3d_c00493{bottom:747.973333pt;}
.y40_c00493{bottom:748.160000pt;}
.y3c_c00493{bottom:748.360000pt;}
.y45_c00493{bottom:748.733333pt;}
.y41_c00493{bottom:749.106667pt;}
.y44_c00493{bottom:749.306667pt;}
.y42_c00493{bottom:749.693333pt;}
.y46_c00493{bottom:749.893333pt;}
.y3b_c00493{bottom:750.066667pt;}
.y3e_c00493{bottom:750.640000pt;}
.y3f_c00493{bottom:751.026667pt;}
.y3a_c00493{bottom:764.360000pt;}
.y39_c00493{bottom:765.106667pt;}
.y37_c00493{bottom:766.066667pt;}
.y35_c00493{bottom:766.440000pt;}
.y38_c00493{bottom:767.973333pt;}
.y36_c00493{bottom:768.360000pt;}
.y34_c00493{bottom:782.440000pt;}
.y32_c00493{bottom:783.773333pt;}
.y33_c00493{bottom:784.560000pt;}
.y31_c00493{bottom:785.693333pt;}
.y30_c00493{bottom:799.026667pt;}
.y2c_c00493{bottom:800.733333pt;}
.y2b_c00493{bottom:801.106667pt;}
.y2f_c00493{bottom:801.893333pt;}
.y2d_c00493{bottom:802.640000pt;}
.y2a_c00493{bottom:803.026667pt;}
.y2e_c00493{bottom:803.226667pt;}
.y29_c00493{bottom:818.440000pt;}
.y27_c00493{bottom:819.400000pt;}
.y28_c00493{bottom:820.360000pt;}
.y25_c00493{bottom:835.773333pt;}
.y23_c00493{bottom:837.106667pt;}
.y24_c00493{bottom:837.693333pt;}
.y26_c00493{bottom:837.893333pt;}
.y22_c00493{bottom:839.026667pt;}
.y1e_c00493{bottom:853.106667pt;}
.y21_c00493{bottom:854.066667pt;}
.y1f_c00493{bottom:855.026667pt;}
.y20_c00493{bottom:855.226667pt;}
.y1c_c00493{bottom:870.440000pt;}
.y1a_c00493{bottom:870.640000pt;}
.y1b_c00493{bottom:872.360000pt;}
.y1d_c00493{bottom:872.560000pt;}
.y15_c00493{bottom:887.773333pt;}
.y16_c00493{bottom:887.973333pt;}
.y19_c00493{bottom:889.306667pt;}
.y14_c00493{bottom:889.693333pt;}
.y17_c00493{bottom:889.893333pt;}
.y18_c00493{bottom:890.640000pt;}
.y12_c00493{bottom:904.733333pt;}
.y13_c00493{bottom:905.106667pt;}
.y11_c00493{bottom:906.440000pt;}
.y10_c00493{bottom:907.973333pt;}
.yb_c00493{bottom:921.693333pt;}
.yf_c00493{bottom:922.440000pt;}
.ya_c00493{bottom:923.773333pt;}
.ye_c00493{bottom:924.560000pt;}
.yc_c00493{bottom:924.733333pt;}
.yd_c00493{bottom:925.306667pt;}
.y9_c00493{bottom:925.693333pt;}
.y7_c00493{bottom:939.773333pt;}
.y6_c00493{bottom:941.106667pt;}
.y8_c00493{bottom:941.693333pt;}
.y4_c00493{bottom:942.640000pt;}
.y5_c00493{bottom:943.026667pt;}
.y3_c00493{bottom:943.973333pt;}
.y1_c00493{bottom:975.773333pt;}
.y2_c00493{bottom:976.933333pt;}
.h6_c00493{height:20.466875pt;}
.h2_c00493{height:22.303646pt;}
.h3_c00493{height:27.879557pt;}
.h4_c00493{height:31.618698pt;}
.h5_c00493{height:35.357839pt;}
.h1_c00493{height:39.031380pt;}
.h7_c00493{height:42.770521pt;}
.h0_c00493{height:1186.666667pt;}
.w0_c00493{width:782.666667pt;}
.x0_c00493{left:0.000000pt;}
.x101_c00493{left:131.626667pt;}
.xf1_c00493{left:132.960000pt;}
.x81_c00493{left:134.666667pt;}
.x1_c00493{left:136.000000pt;}
.x10_c00493{left:137.333333pt;}
.xd7_c00493{left:148.373333pt;}
.x8c_c00493{left:149.333333pt;}
.x3_c00493{left:150.666667pt;}
.x77_c00493{left:153.706667pt;}
.xbc_c00493{left:156.960000pt;}
.xab_c00493{left:162.293333pt;}
.xa4_c00493{left:163.240000pt;}
.xc2_c00493{left:165.333333pt;}
.x11_c00493{left:166.666667pt;}
.x21_c00493{left:168.960000pt;}
.xd3_c00493{left:171.626667pt;}
.x1f_c00493{left:172.960000pt;}
.x2c_c00493{left:175.040000pt;}
.x53_c00493{left:176.000000pt;}
.x78_c00493{left:179.040000pt;}
.x4_c00493{left:180.000000pt;}
.x93_c00493{left:181.333333pt;}
.xc3_c00493{left:182.666667pt;}
.xe2_c00493{left:184.000000pt;}
.x89_c00493{left:185.333333pt;}
.x3f_c00493{left:186.293333pt;}
.x82_c00493{left:188.000000pt;}
.x36_c00493{left:191.040000pt;}
.x69_c00493{left:193.333333pt;}
.xb5_c00493{left:197.333333pt;}
.x73_c00493{left:198.666667pt;}
.x94_c00493{left:201.706667pt;}
.x60_c00493{left:203.626667pt;}
.x46_c00493{left:204.960000pt;}
.x12_c00493{left:207.040000pt;}
.xc4_c00493{left:208.000000pt;}
.x2d_c00493{left:211.040000pt;}
.xb6_c00493{left:212.000000pt;}
.xff_c00493{left:213.333333pt;}
.x54_c00493{left:215.040000pt;}
.x5_c00493{left:216.960000pt;}
.xac_c00493{left:217.906667pt;}
.xf9_c00493{left:219.040000pt;}
.xe3_c00493{left:220.000000pt;}
.xbd_c00493{left:221.333333pt;}
.x61_c00493{left:222.666667pt;}
.x37_c00493{left:224.000000pt;}
.xc5_c00493{left:225.706667pt;}
.xb0_c00493{left:226.666667pt;}
.x8a_c00493{left:227.626667pt;}
.x13_c00493{left:231.040000pt;}
.x9e_c00493{left:233.333333pt;}
.x6_c00493{left:235.040000pt;}
.x20_c00493{left:236.760000pt;}
.xce_c00493{left:242.666667pt;}
.x8b_c00493{left:244.373333pt;}
.x49_c00493{left:245.333333pt;}
.x96_c00493{left:246.666667pt;}
.x79_c00493{left:249.333333pt;}
.xc6_c00493{left:250.666667pt;}
.x2e_c00493{left:252.000000pt;}
.x22_c00493{left:253.333333pt;}
.x40_c00493{left:254.466667pt;}
.x38_c00493{left:256.373333pt;}
.x83_c00493{left:258.293333pt;}
.x7_c00493{left:260.000000pt;}
.x47_c00493{left:261.333333pt;}
.x6a_c00493{left:263.040000pt;}
.xf2_c00493{left:267.040000pt;}
.x55_c00493{left:268.000000pt;}
.x2f_c00493{left:269.706667pt;}
.xcf_c00493{left:272.000000pt;}
.x14_c00493{left:273.333333pt;}
.x62_c00493{left:274.666667pt;}
.x39_c00493{left:280.000000pt;}
.xbe_c00493{left:281.333333pt;}
.x56_c00493{left:282.666667pt;}
.x95_c00493{left:284.000000pt;}
.x100_c00493{left:285.333333pt;}
.xdd_c00493{left:286.666667pt;}
.x97_c00493{left:288.000000pt;}
.xb7_c00493{left:289.333333pt;}
.x7a_c00493{left:291.626667pt;}
.x30_c00493{left:293.333333pt;}
.x41_c00493{left:295.040000pt;}
.xb1_c00493{left:296.000000pt;}
.xd4_c00493{left:297.333333pt;}
.x4a_c00493{left:298.666667pt;}
.x6b_c00493{left:299.626667pt;}
.x74_c00493{left:300.960000pt;}
.x8d_c00493{left:303.626667pt;}
.xde_c00493{left:305.706667pt;}
.xe4_c00493{left:307.040000pt;}
.x7b_c00493{left:309.706667pt;}
.x57_c00493{left:310.666667pt;}
.xd5_c00493{left:313.333333pt;}
.xd8_c00493{left:314.666667pt;}
.x23_c00493{left:316.000000pt;}
.xec_c00493{left:316.960000pt;}
.x48_c00493{left:318.293333pt;}
.x42_c00493{left:319.426667pt;}
.x63_c00493{left:322.293333pt;}
.x8_c00493{left:324.000000pt;}
.xfe_c00493{left:325.706667pt;}
.xe9_c00493{left:326.666667pt;}
.x15_c00493{left:327.626667pt;}
.x3a_c00493{left:330.293333pt;}
.xfa_c00493{left:332.000000pt;}
.x7c_c00493{left:333.333333pt;}
.x31_c00493{left:336.373333pt;}
.xf3_c00493{left:337.333333pt;}
.x8e_c00493{left:338.666667pt;}
.x9_c00493{left:339.626667pt;}
.x75_c00493{left:340.960000pt;}
.xc7_c00493{left:342.666667pt;}
.x4b_c00493{left:344.960000pt;}
.x102_c00493{left:345.906667pt;}
.x24_c00493{left:347.040000pt;}
.xa5_c00493{left:349.706667pt;}
.x6c_c00493{left:352.000000pt;}
.x8f_c00493{left:357.333333pt;}
.xea_c00493{left:360.000000pt;}
.x84_c00493{left:363.040000pt;}
.x2_c00493{left:364.000000pt;}
.xd9_c00493{left:366.666667pt;}
.xb2_c00493{left:368.000000pt;}
.x43_c00493{left:369.906667pt;}
.x58_c00493{left:371.040000pt;}
.x98_c00493{left:374.293333pt;}
.xb8_c00493{left:375.626667pt;}
.xa_c00493{left:377.333333pt;}
.x16_c00493{left:379.040000pt;}
.xad_c00493{left:380.000000pt;}
.x25_c00493{left:383.040000pt;}
.x7d_c00493{left:384.000000pt;}
.xc8_c00493{left:386.666667pt;}
.x32_c00493{left:387.626667pt;}
.x6d_c00493{left:389.706667pt;}
.x4c_c00493{left:390.666667pt;}
.x59_c00493{left:393.706667pt;}
.xdf_c00493{left:396.000000pt;}
.xd0_c00493{left:396.960000pt;}
.x9f_c00493{left:398.666667pt;}
.xb_c00493{left:400.000000pt;}
.x17_c00493{left:402.666667pt;}
.x33_c00493{left:404.373333pt;}
.xe5_c00493{left:405.333333pt;}
.xf8_c00493{left:407.040000pt;}
.xda_c00493{left:408.000000pt;}
.x4d_c00493{left:411.040000pt;}
.xe0_c00493{left:413.333333pt;}
.xb3_c00493{left:416.000000pt;}
.x26_c00493{left:417.706667pt;}
.xc9_c00493{left:419.040000pt;}
.xa0_c00493{left:420.373333pt;}
.x6e_c00493{left:422.293333pt;}
.x3b_c00493{left:424.000000pt;}
.xc_c00493{left:425.333333pt;}
.x85_c00493{left:426.466667pt;}
.x34_c00493{left:428.000000pt;}
.x44_c00493{left:429.333333pt;}
.x5a_c00493{left:432.000000pt;}
.x64_c00493{left:432.960000pt;}
.xf6_c00493{left:434.666667pt;}
.x18_c00493{left:436.960000pt;}
.xa6_c00493{left:440.373333pt;}
.xe1_c00493{left:441.706667pt;}
.x90_c00493{left:443.626667pt;}
.x6f_c00493{left:449.133333pt;}
.xe6_c00493{left:450.293333pt;}
.xb4_c00493{left:452.000000pt;}
.x19_c00493{left:453.706667pt;}
.x86_c00493{left:455.626667pt;}
.x5b_c00493{left:459.040000pt;}
.x99_c00493{left:461.333333pt;}
.xa7_c00493{left:464.960000pt;}
.x27_c00493{left:468.000000pt;}
.xfb_c00493{left:468.960000pt;}
.x3c_c00493{left:470.666667pt;}
.xae_c00493{left:472.000000pt;}
.x65_c00493{left:472.960000pt;}
.x35_c00493{left:474.666667pt;}
.xca_c00493{left:476.000000pt;}
.x1a_c00493{left:476.960000pt;}
.x76_c00493{left:481.706667pt;}
.xed_c00493{left:483.240000pt;}
.x28_c00493{left:484.373333pt;}
.xa1_c00493{left:485.333333pt;}
.x103_c00493{left:486.666667pt;}
.x5c_c00493{left:487.626667pt;}
.x4e_c00493{left:489.333333pt;}
.xb9_c00493{left:492.000000pt;}
.x3d_c00493{left:493.706667pt;}
.xfc_c00493{left:498.293333pt;}
.xdb_c00493{left:501.333333pt;}
.xcb_c00493{left:502.666667pt;}
.x5d_c00493{left:504.373333pt;}
.x9a_c00493{left:506.666667pt;}
.xd_c00493{left:507.626667pt;}
.xbf_c00493{left:512.000000pt;}
.xa8_c00493{left:513.333333pt;}
.xd1_c00493{left:514.293333pt;}
.x29_c00493{left:516.960000pt;}
.x1b_c00493{left:518.666667pt;}
.xeb_c00493{left:520.960000pt;}
.x66_c00493{left:523.626667pt;}
.x4f_c00493{left:527.040000pt;}
.x7e_c00493{left:529.333333pt;}
.xf4_c00493{left:531.040000pt;}
.xa9_c00493{left:532.000000pt;}
.xe7_c00493{left:532.960000pt;}
.x87_c00493{left:534.666667pt;}
.xe_c00493{left:536.373333pt;}
.x9b_c00493{left:538.666667pt;}
.x70_c00493{left:539.626667pt;}
.x1c_c00493{left:544.000000pt;}
.x91_c00493{left:545.333333pt;}
.xaf_c00493{left:548.000000pt;}
.xc0_c00493{left:549.706667pt;}
.x9c_c00493{left:555.040000pt;}
.x1d_c00493{left:556.000000pt;}
.xef_c00493{left:557.333333pt;}
.x67_c00493{left:560.000000pt;}
.xf_c00493{left:562.293333pt;}
.xe8_c00493{left:564.000000pt;}
.xf7_c00493{left:566.666667pt;}
.xa2_c00493{left:568.373333pt;}
.xcc_c00493{left:569.333333pt;}
.xee_c00493{left:570.466667pt;}
.x50_c00493{left:572.373333pt;}
.xaa_c00493{left:573.706667pt;}
.xf5_c00493{left:574.666667pt;}
.x5e_c00493{left:576.000000pt;}
.xc1_c00493{left:579.040000pt;}
.xba_c00493{left:582.666667pt;}
.xcd_c00493{left:587.040000pt;}
.x5f_c00493{left:588.373333pt;}
.xf0_c00493{left:589.706667pt;}
.x71_c00493{left:592.000000pt;}
.xd2_c00493{left:593.333333pt;}
.x7f_c00493{left:595.040000pt;}
.x88_c00493{left:597.333333pt;}
.x9d_c00493{left:599.626667pt;}
.x3e_c00493{left:602.666667pt;}
.xfd_c00493{left:604.000000pt;}
.x1e_c00493{left:609.333333pt;}
.x2a_c00493{left:610.293333pt;}
.xa3_c00493{left:615.240000pt;}
.x68_c00493{left:617.706667pt;}
.xd6_c00493{left:620.000000pt;}
.xdc_c00493{left:620.960000pt;}
.xbb_c00493{left:622.666667pt;}
.x72_c00493{left:624.373333pt;}
.x51_c00493{left:625.333333pt;}
.x92_c00493{left:627.040000pt;}
.x80_c00493{left:629.706667pt;}
.x45_c00493{left:631.040000pt;}
.x2b_c00493{left:637.333333pt;}
.x52_c00493{left:640.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_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_7e66a7f756c61246cf06f58a.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8c_c00494{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00494{transform:matrix(0.308666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308666,0.000000,0.000000,0.250000,0,0);}
.m36_c00494{transform:matrix(0.324790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324790,0.000000,0.000000,0.250000,0,0);}
.m85_c00494{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m9b_c00494{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m4f_c00494{transform:matrix(0.348794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348794,0.000000,0.000000,0.250000,0,0);}
.m5b_c00494{transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);}
.m34_c00494{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m9f_c00494{transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);}
.m55_c00494{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m72_c00494{transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);}
.md4_c00494{transform:matrix(0.365031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365031,0.000000,0.000000,0.250000,0,0);}
.m42_c00494{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m12_c00494{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m92_c00494{transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370782,0.000000,0.000000,0.250000,0,0);}
.mb_c00494{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.maa_c00494{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m87_c00494{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00494{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m5d_c00494{transform:matrix(0.382780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382780,0.000000,0.000000,0.250000,0,0);}
.mba_c00494{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m6_c00494{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.mc5_c00494{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.mdc_c00494{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.ma_c00494{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.maf_c00494{transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);}
.m4_c00494{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m8b_c00494{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.md6_c00494{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m51_c00494{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m8_c00494{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m8f_c00494{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m96_c00494{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m39_c00494{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.md2_c00494{transform:matrix(0.401457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401457,0.000000,0.000000,0.250000,0,0);}
.mc0_c00494{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m5e_c00494{transform:matrix(0.403525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403525,0.000000,0.000000,0.250000,0,0);}
.m53_c00494{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m49_c00494{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m65_c00494{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.m48_c00494{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.mce_c00494{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.mde_c00494{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m4a_c00494{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m6e_c00494{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m31_c00494{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.md0_c00494{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m37_c00494{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m8e_c00494{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m8a_c00494{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.mcb_c00494{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m7c_c00494{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m66_c00494{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.ma1_c00494{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.mab_c00494{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m3f_c00494{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.m6a_c00494{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m93_c00494{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mca_c00494{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m1d_c00494{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m83_c00494{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m50_c00494{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.mbb_c00494{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.me1_c00494{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m47_c00494{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m61_c00494{transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);}
.m98_c00494{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m71_c00494{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.m75_c00494{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mb6_c00494{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m43_c00494{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m94_c00494{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.mdb_c00494{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m69_c00494{transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);}
.ma4_c00494{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m33_c00494{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m68_c00494{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.md9_c00494{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m15_c00494{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mbf_c00494{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.m8d_c00494{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m5c_c00494{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.m76_c00494{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.mda_c00494{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.me0_c00494{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.mf_c00494{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m97_c00494{transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);}
.ma6_c00494{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m10_c00494{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m89_c00494{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m95_c00494{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m3c_c00494{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.me2_c00494{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.mc7_c00494{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m9e_c00494{transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);}
.mc4_c00494{transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);}
.m6f_c00494{transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);}
.m32_c00494{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.ma0_c00494{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m7d_c00494{transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);}
.m9a_c00494{transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);}
.m6c_c00494{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m1e_c00494{transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);}
.m64_c00494{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m45_c00494{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.mc3_c00494{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m1a_c00494{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m22_c00494{transform:matrix(0.479592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479592,0.000000,0.000000,0.250000,0,0);}
.m63_c00494{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m14_c00494{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m25_c00494{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m81_c00494{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.md3_c00494{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m1_c00494{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m26_c00494{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.ma5_c00494{transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493043,0.000000,0.000000,0.250000,0,0);}
.m84_c00494{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m19_c00494{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);}
.mae_c00494{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m58_c00494{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m7b_c00494{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m9_c00494{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m11_c00494{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m52_c00494{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m56_c00494{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m7a_c00494{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.mb8_c00494{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.mad_c00494{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.mbe_c00494{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m1f_c00494{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mcd_c00494{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m7f_c00494{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m3a_c00494{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mc6_c00494{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m27_c00494{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m59_c00494{transform:matrix(0.525046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525046,0.000000,0.000000,0.250000,0,0);}
.m4e_c00494{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m40_c00494{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m99_c00494{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m4d_c00494{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m3d_c00494{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m6d_c00494{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m5_c00494{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m1b_c00494{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m30_c00494{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m2e_c00494{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m5a_c00494{transform:matrix(0.535714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535714,0.000000,0.000000,0.250000,0,0);}
.m3_c00494{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m35_c00494{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.md1_c00494{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.mb3_c00494{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m79_c00494{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m80_c00494{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.md7_c00494{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m38_c00494{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mb5_c00494{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m90_c00494{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m28_c00494{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m54_c00494{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m60_c00494{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m82_c00494{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m5f_c00494{transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);}
.mb9_c00494{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m70_c00494{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.md5_c00494{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.mb4_c00494{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m1c_c00494{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mac_c00494{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.mc8_c00494{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m29_c00494{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m18_c00494{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.ma7_c00494{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m9c_c00494{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.me5_c00494{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.ma9_c00494{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m46_c00494{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mb1_c00494{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m13_c00494{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mc2_c00494{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.mdf_c00494{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m44_c00494{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m9d_c00494{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m2f_c00494{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m6b_c00494{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m74_c00494{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.mbc_c00494{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.ma2_c00494{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.me4_c00494{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m16_c00494{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m86_c00494{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.ma8_c00494{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.m57_c00494{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m67_c00494{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.md_c00494{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.mc9_c00494{transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);}
.mbd_c00494{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mb7_c00494{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.me3_c00494{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m21_c00494{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m78_c00494{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.m2a_c00494{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m24_c00494{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.m4b_c00494{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_c00494{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.mcf_c00494{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.mcc_c00494{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.m0_c00494{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m2d_c00494{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.mc_c00494{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m41_c00494{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.md8_c00494{transform:matrix(0.678676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.678676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.678676,0.000000,0.000000,0.250000,0,0);}
.m62_c00494{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m73_c00494{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.m23_c00494{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.ma3_c00494{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m4c_c00494{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m3e_c00494{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m2_c00494{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m91_c00494{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m3b_c00494{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m2c_c00494{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mdd_c00494{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m7_c00494{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.me_c00494{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.mb2_c00494{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m17_c00494{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m7e_c00494{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m20_c00494{transform:matrix(0.807692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807692,0.000000,0.000000,0.250000,0,0);}
.m88_c00494{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.m77_c00494{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
.fs8_c00494{font-size:3.420000px;}
.fs7_c00494{font-size:13.620000px;}
.fs2_c00494{font-size:18.720000px;}
.fs0_c00494{font-size:20.400000px;}
.fs5_c00494{font-size:25.500000px;}
.fs1_c00494{font-size:28.920000px;}
.fs4_c00494{font-size:32.340000px;}
.fs3_c00494{font-size:35.700000px;}
.fs6_c00494{font-size:39.120000px;}
.y0_c00494{bottom:0.000000px;}
.yb8_c00494{bottom:254.745000px;}
.yb7_c00494{bottom:256.905000px;}
.yb5_c00494{bottom:273.405000px;}
.yb3_c00494{bottom:274.245000px;}
.yb6_c00494{bottom:276.405000px;}
.yb4_c00494{bottom:277.470000px;}
.yaf_c00494{bottom:293.745000px;}
.yb1_c00494{bottom:294.630000px;}
.yb2_c00494{bottom:294.825000px;}
.yb0_c00494{bottom:295.905000px;}
.yac_c00494{bottom:311.745000px;}
.yae_c00494{bottom:313.245000px;}
.yad_c00494{bottom:314.550000px;}
.yab_c00494{bottom:315.405000px;}
.ya9_c00494{bottom:331.680000px;}
.ya7_c00494{bottom:332.970000px;}
.yaa_c00494{bottom:333.630000px;}
.ya5_c00494{bottom:334.245000px;}
.ya8_c00494{bottom:334.905000px;}
.ya6_c00494{bottom:336.405000px;}
.ya1_c00494{bottom:350.970000px;}
.y9e_c00494{bottom:352.245000px;}
.ya0_c00494{bottom:353.130000px;}
.y9f_c00494{bottom:353.325000px;}
.ya4_c00494{bottom:353.745000px;}
.ya2_c00494{bottom:353.970000px;}
.y9d_c00494{bottom:354.405000px;}
.ya3_c00494{bottom:355.470000px;}
.y9c_c00494{bottom:355.905000px;}
.y9a_c00494{bottom:371.745000px;}
.y95_c00494{bottom:372.180000px;}
.y9b_c00494{bottom:372.405000px;}
.y97_c00494{bottom:372.630000px;}
.y98_c00494{bottom:372.825000px;}
.y94_c00494{bottom:373.245000px;}
.y99_c00494{bottom:373.470000px;}
.y96_c00494{bottom:373.905000px;}
.y93_c00494{bottom:375.405000px;}
.y92_c00494{bottom:391.470000px;}
.y90_c00494{bottom:392.325000px;}
.y8c_c00494{bottom:392.745000px;}
.y91_c00494{bottom:392.970000px;}
.y8e_c00494{bottom:393.405000px;}
.y8f_c00494{bottom:394.470000px;}
.y8d_c00494{bottom:394.905000px;}
.y8b_c00494{bottom:410.745000px;}
.y89_c00494{bottom:412.245000px;}
.y8a_c00494{bottom:412.905000px;}
.y88_c00494{bottom:413.970000px;}
.y87_c00494{bottom:414.405000px;}
.y86_c00494{bottom:429.405000px;}
.y83_c00494{bottom:431.745000px;}
.y85_c00494{bottom:432.405000px;}
.y84_c00494{bottom:432.630000px;}
.y81_c00494{bottom:433.905000px;}
.y82_c00494{bottom:433.920000px;}
.y80_c00494{bottom:452.325000px;}
.y7f_c00494{bottom:453.405000px;}
.y7e_c00494{bottom:469.905000px;}
.y7a_c00494{bottom:470.745000px;}
.y7b_c00494{bottom:472.905000px;}
.y7d_c00494{bottom:473.130000px;}
.y7c_c00494{bottom:474.405000px;}
.y79_c00494{bottom:490.245000px;}
.y76_c00494{bottom:491.325000px;}
.y77_c00494{bottom:492.405000px;}
.y78_c00494{bottom:493.470000px;}
.y74_c00494{bottom:509.745000px;}
.y70_c00494{bottom:510.825000px;}
.y71_c00494{bottom:511.245000px;}
.y73_c00494{bottom:511.905000px;}
.y75_c00494{bottom:512.130000px;}
.y72_c00494{bottom:513.405000px;}
.y6f_c00494{bottom:529.245000px;}
.y6c_c00494{bottom:529.680000px;}
.y6a_c00494{bottom:530.745000px;}
.y6d_c00494{bottom:531.405000px;}
.y6e_c00494{bottom:531.630000px;}
.y6b_c00494{bottom:532.470000px;}
.y69_c00494{bottom:532.905000px;}
.y67_c00494{bottom:550.245000px;}
.y66_c00494{bottom:551.325000px;}
.y68_c00494{bottom:552.405000px;}
.y64_c00494{bottom:568.680000px;}
.y65_c00494{bottom:569.745000px;}
.y61_c00494{bottom:571.905000px;}
.y62_c00494{bottom:572.130000px;}
.y63_c00494{bottom:573.420000px;}
.y5f_c00494{bottom:588.405000px;}
.y60_c00494{bottom:589.245000px;}
.y5d_c00494{bottom:608.745000px;}
.y5e_c00494{bottom:608.970000px;}
.y5c_c00494{bottom:609.180000px;}
.y59_c00494{bottom:610.245000px;}
.y5b_c00494{bottom:611.325000px;}
.y5a_c00494{bottom:612.420000px;}
.y58_c00494{bottom:628.680000px;}
.y55_c00494{bottom:629.745000px;}
.y56_c00494{bottom:630.825000px;}
.y57_c00494{bottom:631.905000px;}
.y54_c00494{bottom:646.905000px;}
.y4f_c00494{bottom:649.245000px;}
.y50_c00494{bottom:650.325000px;}
.y52_c00494{bottom:651.405000px;}
.y51_c00494{bottom:651.630000px;}
.y53_c00494{bottom:652.470000px;}
.y4a_c00494{bottom:668.745000px;}
.y4e_c00494{bottom:669.630000px;}
.y4d_c00494{bottom:670.470000px;}
.y4c_c00494{bottom:670.905000px;}
.y4b_c00494{bottom:670.920000px;}
.y49_c00494{bottom:695.550000px;}
.y47_c00494{bottom:696.405000px;}
.y48_c00494{bottom:696.630000px;}
.y46_c00494{bottom:697.470000px;}
.y45_c00494{bottom:717.825000px;}
.y44_c00494{bottom:718.050000px;}
.y43_c00494{bottom:718.905000px;}
.y42_c00494{bottom:719.970000px;}
.y3f_c00494{bottom:731.970000px;}
.y3c_c00494{bottom:732.825000px;}
.y41_c00494{bottom:733.050000px;}
.y3d_c00494{bottom:733.905000px;}
.y40_c00494{bottom:735.195000px;}
.y3e_c00494{bottom:736.050000px;}
.y3b_c00494{bottom:758.745000px;}
.y3a_c00494{bottom:760.245000px;}
.y39_c00494{bottom:761.325000px;}
.y38_c00494{bottom:795.405000px;}
.y36_c00494{bottom:845.325000px;}
.y37_c00494{bottom:845.745000px;}
.y32_c00494{bottom:865.245000px;}
.y34_c00494{bottom:866.130000px;}
.y31_c00494{bottom:866.325000px;}
.y35_c00494{bottom:866.970000px;}
.y33_c00494{bottom:867.405000px;}
.y30_c00494{bottom:884.325000px;}
.y2f_c00494{bottom:884.745000px;}
.y2e_c00494{bottom:885.630000px;}
.y2d_c00494{bottom:886.905000px;}
.y2b_c00494{bottom:904.245000px;}
.y2c_c00494{bottom:905.130000px;}
.y2a_c00494{bottom:906.405000px;}
.y27_c00494{bottom:923.745000px;}
.y26_c00494{bottom:924.630000px;}
.y29_c00494{bottom:924.825000px;}
.y28_c00494{bottom:925.470000px;}
.y25_c00494{bottom:925.905000px;}
.y24_c00494{bottom:926.130000px;}
.y22_c00494{bottom:944.325000px;}
.y1e_c00494{bottom:944.745000px;}
.y21_c00494{bottom:945.405000px;}
.y20_c00494{bottom:945.630000px;}
.y23_c00494{bottom:946.470000px;}
.y1f_c00494{bottom:946.905000px;}
.y1a_c00494{bottom:962.745000px;}
.y1d_c00494{bottom:962.970000px;}
.y1c_c00494{bottom:963.180000px;}
.y18_c00494{bottom:964.905000px;}
.y19_c00494{bottom:965.130000px;}
.y1b_c00494{bottom:966.405000px;}
.y17_c00494{bottom:985.905000px;}
.y15_c00494{bottom:1000.905000px;}
.y14_c00494{bottom:1003.905000px;}
.y16_c00494{bottom:1004.130000px;}
.y12_c00494{bottom:1004.970000px;}
.y13_c00494{bottom:1005.405000px;}
.ye_c00494{bottom:1022.745000px;}
.y10_c00494{bottom:1023.630000px;}
.yf_c00494{bottom:1023.825000px;}
.y11_c00494{bottom:1024.470000px;}
.yd_c00494{bottom:1024.905000px;}
.yc_c00494{bottom:1039.905000px;}
.ya_c00494{bottom:1042.245000px;}
.yb_c00494{bottom:1042.905000px;}
.y7_c00494{bottom:1043.130000px;}
.y8_c00494{bottom:1043.325000px;}
.y9_c00494{bottom:1044.405000px;}
.y5_c00494{bottom:1061.745000px;}
.y6_c00494{bottom:1062.630000px;}
.y4_c00494{bottom:1063.905000px;}
.y3_c00494{bottom:1064.130000px;}
.y2_c00494{bottom:1099.905000px;}
.y1_c00494{bottom:1102.050000px;}
.h9_c00494{height:4.206533px;}
.h8_c00494{height:16.752334px;}
.h3_c00494{height:23.025234px;}
.h1_c00494{height:25.091602px;}
.h6_c00494{height:31.364502px;}
.h2_c00494{height:35.571035px;}
.h5_c00494{height:39.777568px;}
.h4_c00494{height:43.910303px;}
.h7_c00494{height:48.116836px;}
.h0_c00494{height:1335.000000px;}
.w0_c00494{width:880.500000px;}
.x0_c00494{left:0.000000px;}
.x3_c00494{left:151.920000px;}
.x5c_c00494{left:153.000000px;}
.xc1_c00494{left:154.500000px;}
.x77_c00494{left:166.500000px;}
.x31_c00494{left:168.000000px;}
.x9d_c00494{left:169.080000px;}
.xc8_c00494{left:171.000000px;}
.xb3_c00494{left:172.920000px;}
.xe5_c00494{left:180.420000px;}
.xd9_c00494{left:184.500000px;}
.x52_c00494{left:189.420000px;}
.x4_c00494{left:191.580000px;}
.x45_c00494{left:193.920000px;}
.x3c_c00494{left:196.920000px;}
.x32_c00494{left:198.420000px;}
.x10_c00494{left:199.920000px;}
.xa3_c00494{left:201.000000px;}
.xd5_c00494{left:204.000000px;}
.x28_c00494{left:205.080000px;}
.x64_c00494{left:208.500000px;}
.x69_c00494{left:211.500000px;}
.x53_c00494{left:217.500000px;}
.xd2_c00494{left:219.000000px;}
.x4d_c00494{left:220.080000px;}
.x1e_c00494{left:221.580000px;}
.x3d_c00494{left:224.580000px;}
.x11_c00494{left:229.920000px;}
.xda_c00494{left:231.000000px;}
.xe0_c00494{left:232.500000px;}
.x6a_c00494{left:238.080000px;}
.xae_c00494{left:240.000000px;}
.xa4_c00494{left:241.080000px;}
.xbb_c00494{left:242.580000px;}
.x8e_c00494{left:245.580000px;}
.x5_c00494{left:249.000000px;}
.xb4_c00494{left:250.500000px;}
.x78_c00494{left:257.580000px;}
.x91_c00494{left:259.500000px;}
.x9e_c00494{left:262.500000px;}
.x65_c00494{left:263.580000px;}
.x88_c00494{left:265.080000px;}
.x7f_c00494{left:267.000000px;}
.x1f_c00494{left:268.080000px;}
.xbc_c00494{left:273.000000px;}
.x33_c00494{left:276.000000px;}
.xc9_c00494{left:278.775000px;}
.x92_c00494{left:280.500000px;}
.xaa_c00494{left:283.080000px;}
.xaf_c00494{left:284.580000px;}
.x54_c00494{left:288.000000px;}
.x5d_c00494{left:289.920000px;}
.xdd_c00494{left:292.080000px;}
.x29_c00494{left:294.000000px;}
.x12_c00494{left:296.580000px;}
.x96_c00494{left:300.000000px;}
.xca_c00494{left:303.000000px;}
.xbd_c00494{left:304.920000px;}
.x55_c00494{left:310.080000px;}
.x6b_c00494{left:311.580000px;}
.x6_c00494{left:313.920000px;}
.x34_c00494{left:316.500000px;}
.xc2_c00494{left:318.000000px;}
.x3e_c00494{left:319.920000px;}
.x79_c00494{left:322.920000px;}
.xe1_c00494{left:324.000000px;}
.x4e_c00494{left:325.080000px;}
.x95_c00494{left:328.500000px;}
.xdb_c00494{left:329.580000px;}
.x20_c00494{left:331.920000px;}
.x72_c00494{left:334.080000px;}
.x6c_c00494{left:335.355000px;}
.xcb_c00494{left:337.500000px;}
.x3f_c00494{left:339.000000px;}
.x7_c00494{left:340.920000px;}
.xb0_c00494{left:342.000000px;}
.x97_c00494{left:346.080000px;}
.x93_c00494{left:349.275000px;}
.xc3_c00494{left:354.420000px;}
.x4f_c00494{left:357.000000px;}
.x66_c00494{left:358.500000px;}
.x7a_c00494{left:359.580000px;}
.xa5_c00494{left:361.920000px;}
.xb5_c00494{left:363.000000px;}
.x8f_c00494{left:364.080000px;}
.x13_c00494{left:367.275000px;}
.xbe_c00494{left:370.500000px;}
.x89_c00494{left:372.420000px;}
.x80_c00494{left:375.855000px;}
.x9f_c00494{left:377.580000px;}
.xc4_c00494{left:379.080000px;}
.x56_c00494{left:381.000000px;}
.x5e_c00494{left:382.080000px;}
.x40_c00494{left:384.000000px;}
.x35_c00494{left:387.000000px;}
.xcc_c00494{left:389.580000px;}
.xb6_c00494{left:393.000000px;}
.x8_c00494{left:394.500000px;}
.xde_c00494{left:396.000000px;}
.xd6_c00494{left:397.500000px;}
.x21_c00494{left:398.580000px;}
.x2a_c00494{left:400.080000px;}
.x46_c00494{left:402.420000px;}
.x14_c00494{left:403.500000px;}
.x1_c00494{left:405.000000px;}
.x41_c00494{left:408.420000px;}
.x9c_c00494{left:410.580000px;}
.x5f_c00494{left:413.580000px;}
.x7b_c00494{left:415.500000px;}
.x81_c00494{left:416.580000px;}
.xab_c00494{left:418.500000px;}
.x73_c00494{left:424.920000px;}
.xe6_c00494{left:426.000000px;}
.x36_c00494{left:427.500000px;}
.x67_c00494{left:429.000000px;}
.x22_c00494{left:430.500000px;}
.xcd_c00494{left:433.080000px;}
.x42_c00494{left:435.000000px;}
.x9_c00494{left:436.080000px;}
.x6d_c00494{left:441.000000px;}
.xd7_c00494{left:442.920000px;}
.x47_c00494{left:444.000000px;}
.x15_c00494{left:445.500000px;}
.x90_c00494{left:448.500000px;}
.xac_c00494{left:450.000000px;}
.x57_c00494{left:453.420000px;}
.x98_c00494{left:457.500000px;}
.x60_c00494{left:459.000000px;}
.xb7_c00494{left:460.500000px;}
.x16_c00494{left:462.420000px;}
.x50_c00494{left:463.500000px;}
.x74_c00494{left:464.580000px;}
.x2b_c00494{left:467.580000px;}
.xbf_c00494{left:471.420000px;}
.xa6_c00494{left:472.500000px;}
.x7c_c00494{left:475.500000px;}
.x58_c00494{left:480.000000px;}
.xa0_c00494{left:483.000000px;}
.x75_c00494{left:486.855000px;}
.x48_c00494{left:489.000000px;}
.x43_c00494{left:490.500000px;}
.xd8_c00494{left:491.580000px;}
.x82_c00494{left:493.080000px;}
.x8a_c00494{left:495.000000px;}
.xe2_c00494{left:499.500000px;}
.x23_c00494{left:501.000000px;}
.x37_c00494{left:502.500000px;}
.x7d_c00494{left:504.420000px;}
.x51_c00494{left:505.500000px;}
.xce_c00494{left:509.580000px;}
.x76_c00494{left:511.080000px;}
.x99_c00494{left:512.580000px;}
.x24_c00494{left:519.000000px;}
.xad_c00494{left:520.500000px;}
.x17_c00494{left:521.580000px;}
.x38_c00494{left:524.580000px;}
.x6e_c00494{left:526.080000px;}
.x2c_c00494{left:531.000000px;}
.xa_c00494{left:532.080000px;}
.xb8_c00494{left:535.080000px;}
.xa7_c00494{left:538.500000px;}
.x49_c00494{left:540.000000px;}
.x7e_c00494{left:543.420000px;}
.x59_c00494{left:546.000000px;}
.x25_c00494{left:549.000000px;}
.xa1_c00494{left:550.500000px;}
.x18_c00494{left:552.000000px;}
.xb1_c00494{left:554.580000px;}
.xc5_c00494{left:556.080000px;}
.xa8_c00494{left:558.000000px;}
.x4a_c00494{left:561.420000px;}
.xd3_c00494{left:562.920000px;}
.x83_c00494{left:564.000000px;}
.xb9_c00494{left:565.920000px;}
.x19_c00494{left:567.000000px;}
.xc6_c00494{left:573.000000px;}
.x6f_c00494{left:574.080000px;}
.x2d_c00494{left:580.500000px;}
.x68_c00494{left:583.275000px;}
.xc0_c00494{left:586.500000px;}
.x8b_c00494{left:587.580000px;}
.xb_c00494{left:589.080000px;}
.x39_c00494{left:590.580000px;}
.xcf_c00494{left:592.920000px;}
.x5a_c00494{left:595.080000px;}
.x84_c00494{left:598.500000px;}
.x4b_c00494{left:600.000000px;}
.x1a_c00494{left:601.080000px;}
.x9a_c00494{left:603.000000px;}
.xdc_c00494{left:615.000000px;}
.x85_c00494{left:616.500000px;}
.xdf_c00494{left:617.775000px;}
.xe3_c00494{left:619.500000px;}
.x44_c00494{left:622.080000px;}
.xd4_c00494{left:625.500000px;}
.x61_c00494{left:627.000000px;}
.xe4_c00494{left:628.500000px;}
.x86_c00494{left:630.420000px;}
.xd0_c00494{left:631.500000px;}
.x70_c00494{left:632.580000px;}
.x2e_c00494{left:634.500000px;}
.xc_c00494{left:636.000000px;}
.x26_c00494{left:637.500000px;}
.x94_c00494{left:644.145000px;}
.x62_c00494{left:646.500000px;}
.xa2_c00494{left:648.000000px;}
.x1b_c00494{left:655.080000px;}
.x71_c00494{left:656.355000px;}
.xc7_c00494{left:659.580000px;}
.xd_c00494{left:661.500000px;}
.x8c_c00494{left:663.420000px;}
.x3a_c00494{left:670.500000px;}
.x87_c00494{left:673.500000px;}
.x1c_c00494{left:675.000000px;}
.x2f_c00494{left:676.500000px;}
.xe_c00494{left:681.000000px;}
.xba_c00494{left:684.000000px;}
.x4c_c00494{left:685.500000px;}
.x9b_c00494{left:687.000000px;}
.x3b_c00494{left:688.500000px;}
.x8d_c00494{left:690.000000px;}
.xb2_c00494{left:691.920000px;}
.x5b_c00494{left:693.000000px;}
.xf_c00494{left:694.920000px;}
.x1d_c00494{left:700.080000px;}
.x2_c00494{left:703.500000px;}
.x30_c00494{left:705.000000px;}
.xd1_c00494{left:706.500000px;}
.x63_c00494{left:708.420000px;}
.xa9_c00494{left:709.920000px;}
.x27_c00494{left:717.000000px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.ls0_c00494{letter-spacing:0.000000pt;}
.ws0_c00494{word-spacing:0.000000pt;}
.fs8_c00494{font-size:3.040000pt;}
.fs7_c00494{font-size:12.106667pt;}
.fs2_c00494{font-size:16.640000pt;}
.fs0_c00494{font-size:18.133333pt;}
.fs5_c00494{font-size:22.666667pt;}
.fs1_c00494{font-size:25.706667pt;}
.fs4_c00494{font-size:28.746667pt;}
.fs3_c00494{font-size:31.733333pt;}
.fs6_c00494{font-size:34.773333pt;}
.y0_c00494{bottom:0.000000pt;}
.yb8_c00494{bottom:226.440000pt;}
.yb7_c00494{bottom:228.360000pt;}
.yb5_c00494{bottom:243.026667pt;}
.yb3_c00494{bottom:243.773333pt;}
.yb6_c00494{bottom:245.693333pt;}
.yb4_c00494{bottom:246.640000pt;}
.yaf_c00494{bottom:261.106667pt;}
.yb1_c00494{bottom:261.893333pt;}
.yb2_c00494{bottom:262.066667pt;}
.yb0_c00494{bottom:263.026667pt;}
.yac_c00494{bottom:277.106667pt;}
.yae_c00494{bottom:278.440000pt;}
.yad_c00494{bottom:279.600000pt;}
.yab_c00494{bottom:280.360000pt;}
.ya9_c00494{bottom:294.826667pt;}
.ya7_c00494{bottom:295.973333pt;}
.yaa_c00494{bottom:296.560000pt;}
.ya5_c00494{bottom:297.106667pt;}
.ya8_c00494{bottom:297.693333pt;}
.ya6_c00494{bottom:299.026667pt;}
.ya1_c00494{bottom:311.973333pt;}
.y9e_c00494{bottom:313.106667pt;}
.ya0_c00494{bottom:313.893333pt;}
.y9f_c00494{bottom:314.066667pt;}
.ya4_c00494{bottom:314.440000pt;}
.ya2_c00494{bottom:314.640000pt;}
.y9d_c00494{bottom:315.026667pt;}
.ya3_c00494{bottom:315.973333pt;}
.y9c_c00494{bottom:316.360000pt;}
.y9a_c00494{bottom:330.440000pt;}
.y95_c00494{bottom:330.826667pt;}
.y9b_c00494{bottom:331.026667pt;}
.y97_c00494{bottom:331.226667pt;}
.y98_c00494{bottom:331.400000pt;}
.y94_c00494{bottom:331.773333pt;}
.y99_c00494{bottom:331.973333pt;}
.y96_c00494{bottom:332.360000pt;}
.y93_c00494{bottom:333.693333pt;}
.y92_c00494{bottom:347.973333pt;}
.y90_c00494{bottom:348.733333pt;}
.y8c_c00494{bottom:349.106667pt;}
.y91_c00494{bottom:349.306667pt;}
.y8e_c00494{bottom:349.693333pt;}
.y8f_c00494{bottom:350.640000pt;}
.y8d_c00494{bottom:351.026667pt;}
.y8b_c00494{bottom:365.106667pt;}
.y89_c00494{bottom:366.440000pt;}
.y8a_c00494{bottom:367.026667pt;}
.y88_c00494{bottom:367.973333pt;}
.y87_c00494{bottom:368.360000pt;}
.y86_c00494{bottom:381.693333pt;}
.y83_c00494{bottom:383.773333pt;}
.y85_c00494{bottom:384.360000pt;}
.y84_c00494{bottom:384.560000pt;}
.y81_c00494{bottom:385.693333pt;}
.y82_c00494{bottom:385.706667pt;}
.y80_c00494{bottom:402.066667pt;}
.y7f_c00494{bottom:403.026667pt;}
.y7e_c00494{bottom:417.693333pt;}
.y7a_c00494{bottom:418.440000pt;}
.y7b_c00494{bottom:420.360000pt;}
.y7d_c00494{bottom:420.560000pt;}
.y7c_c00494{bottom:421.693333pt;}
.y79_c00494{bottom:435.773333pt;}
.y76_c00494{bottom:436.733333pt;}
.y77_c00494{bottom:437.693333pt;}
.y78_c00494{bottom:438.640000pt;}
.y74_c00494{bottom:453.106667pt;}
.y70_c00494{bottom:454.066667pt;}
.y71_c00494{bottom:454.440000pt;}
.y73_c00494{bottom:455.026667pt;}
.y75_c00494{bottom:455.226667pt;}
.y72_c00494{bottom:456.360000pt;}
.y6f_c00494{bottom:470.440000pt;}
.y6c_c00494{bottom:470.826667pt;}
.y6a_c00494{bottom:471.773333pt;}
.y6d_c00494{bottom:472.360000pt;}
.y6e_c00494{bottom:472.560000pt;}
.y6b_c00494{bottom:473.306667pt;}
.y69_c00494{bottom:473.693333pt;}
.y67_c00494{bottom:489.106667pt;}
.y66_c00494{bottom:490.066667pt;}
.y68_c00494{bottom:491.026667pt;}
.y64_c00494{bottom:505.493333pt;}
.y65_c00494{bottom:506.440000pt;}
.y61_c00494{bottom:508.360000pt;}
.y62_c00494{bottom:508.560000pt;}
.y63_c00494{bottom:509.706667pt;}
.y5f_c00494{bottom:523.026667pt;}
.y60_c00494{bottom:523.773333pt;}
.y5d_c00494{bottom:541.106667pt;}
.y5e_c00494{bottom:541.306667pt;}
.y5c_c00494{bottom:541.493333pt;}
.y59_c00494{bottom:542.440000pt;}
.y5b_c00494{bottom:543.400000pt;}
.y5a_c00494{bottom:544.373333pt;}
.y58_c00494{bottom:558.826667pt;}
.y55_c00494{bottom:559.773333pt;}
.y56_c00494{bottom:560.733333pt;}
.y57_c00494{bottom:561.693333pt;}
.y54_c00494{bottom:575.026667pt;}
.y4f_c00494{bottom:577.106667pt;}
.y50_c00494{bottom:578.066667pt;}
.y52_c00494{bottom:579.026667pt;}
.y51_c00494{bottom:579.226667pt;}
.y53_c00494{bottom:579.973333pt;}
.y4a_c00494{bottom:594.440000pt;}
.y4e_c00494{bottom:595.226667pt;}
.y4d_c00494{bottom:595.973333pt;}
.y4c_c00494{bottom:596.360000pt;}
.y4b_c00494{bottom:596.373333pt;}
.y49_c00494{bottom:618.266667pt;}
.y47_c00494{bottom:619.026667pt;}
.y48_c00494{bottom:619.226667pt;}
.y46_c00494{bottom:619.973333pt;}
.y45_c00494{bottom:638.066667pt;}
.y44_c00494{bottom:638.266667pt;}
.y43_c00494{bottom:639.026667pt;}
.y42_c00494{bottom:639.973333pt;}
.y3f_c00494{bottom:650.640000pt;}
.y3c_c00494{bottom:651.400000pt;}
.y41_c00494{bottom:651.600000pt;}
.y3d_c00494{bottom:652.360000pt;}
.y40_c00494{bottom:653.506667pt;}
.y3e_c00494{bottom:654.266667pt;}
.y3b_c00494{bottom:674.440000pt;}
.y3a_c00494{bottom:675.773333pt;}
.y39_c00494{bottom:676.733333pt;}
.y38_c00494{bottom:707.026667pt;}
.y36_c00494{bottom:751.400000pt;}
.y37_c00494{bottom:751.773333pt;}
.y32_c00494{bottom:769.106667pt;}
.y34_c00494{bottom:769.893333pt;}
.y31_c00494{bottom:770.066667pt;}
.y35_c00494{bottom:770.640000pt;}
.y33_c00494{bottom:771.026667pt;}
.y30_c00494{bottom:786.066667pt;}
.y2f_c00494{bottom:786.440000pt;}
.y2e_c00494{bottom:787.226667pt;}
.y2d_c00494{bottom:788.360000pt;}
.y2b_c00494{bottom:803.773333pt;}
.y2c_c00494{bottom:804.560000pt;}
.y2a_c00494{bottom:805.693333pt;}
.y27_c00494{bottom:821.106667pt;}
.y26_c00494{bottom:821.893333pt;}
.y29_c00494{bottom:822.066667pt;}
.y28_c00494{bottom:822.640000pt;}
.y25_c00494{bottom:823.026667pt;}
.y24_c00494{bottom:823.226667pt;}
.y22_c00494{bottom:839.400000pt;}
.y1e_c00494{bottom:839.773333pt;}
.y21_c00494{bottom:840.360000pt;}
.y20_c00494{bottom:840.560000pt;}
.y23_c00494{bottom:841.306667pt;}
.y1f_c00494{bottom:841.693333pt;}
.y1a_c00494{bottom:855.773333pt;}
.y1d_c00494{bottom:855.973333pt;}
.y1c_c00494{bottom:856.160000pt;}
.y18_c00494{bottom:857.693333pt;}
.y19_c00494{bottom:857.893333pt;}
.y1b_c00494{bottom:859.026667pt;}
.y17_c00494{bottom:876.360000pt;}
.y15_c00494{bottom:889.693333pt;}
.y14_c00494{bottom:892.360000pt;}
.y16_c00494{bottom:892.560000pt;}
.y12_c00494{bottom:893.306667pt;}
.y13_c00494{bottom:893.693333pt;}
.ye_c00494{bottom:909.106667pt;}
.y10_c00494{bottom:909.893333pt;}
.yf_c00494{bottom:910.066667pt;}
.y11_c00494{bottom:910.640000pt;}
.yd_c00494{bottom:911.026667pt;}
.yc_c00494{bottom:924.360000pt;}
.ya_c00494{bottom:926.440000pt;}
.yb_c00494{bottom:927.026667pt;}
.y7_c00494{bottom:927.226667pt;}
.y8_c00494{bottom:927.400000pt;}
.y9_c00494{bottom:928.360000pt;}
.y5_c00494{bottom:943.773333pt;}
.y6_c00494{bottom:944.560000pt;}
.y4_c00494{bottom:945.693333pt;}
.y3_c00494{bottom:945.893333pt;}
.y2_c00494{bottom:977.693333pt;}
.y1_c00494{bottom:979.600000pt;}
.h9_c00494{height:3.739141pt;}
.h8_c00494{height:14.890964pt;}
.h3_c00494{height:20.466875pt;}
.h1_c00494{height:22.303646pt;}
.h6_c00494{height:27.879557pt;}
.h2_c00494{height:31.618698pt;}
.h5_c00494{height:35.357839pt;}
.h4_c00494{height:39.031380pt;}
.h7_c00494{height:42.770521pt;}
.h0_c00494{height:1186.666667pt;}
.w0_c00494{width:782.666667pt;}
.x0_c00494{left:0.000000pt;}
.x3_c00494{left:135.040000pt;}
.x5c_c00494{left:136.000000pt;}
.xc1_c00494{left:137.333333pt;}
.x77_c00494{left:148.000000pt;}
.x31_c00494{left:149.333333pt;}
.x9d_c00494{left:150.293333pt;}
.xc8_c00494{left:152.000000pt;}
.xb3_c00494{left:153.706667pt;}
.xe5_c00494{left:160.373333pt;}
.xd9_c00494{left:164.000000pt;}
.x52_c00494{left:168.373333pt;}
.x4_c00494{left:170.293333pt;}
.x45_c00494{left:172.373333pt;}
.x3c_c00494{left:175.040000pt;}
.x32_c00494{left:176.373333pt;}
.x10_c00494{left:177.706667pt;}
.xa3_c00494{left:178.666667pt;}
.xd5_c00494{left:181.333333pt;}
.x28_c00494{left:182.293333pt;}
.x64_c00494{left:185.333333pt;}
.x69_c00494{left:188.000000pt;}
.x53_c00494{left:193.333333pt;}
.xd2_c00494{left:194.666667pt;}
.x4d_c00494{left:195.626667pt;}
.x1e_c00494{left:196.960000pt;}
.x3d_c00494{left:199.626667pt;}
.x11_c00494{left:204.373333pt;}
.xda_c00494{left:205.333333pt;}
.xe0_c00494{left:206.666667pt;}
.x6a_c00494{left:211.626667pt;}
.xae_c00494{left:213.333333pt;}
.xa4_c00494{left:214.293333pt;}
.xbb_c00494{left:215.626667pt;}
.x8e_c00494{left:218.293333pt;}
.x5_c00494{left:221.333333pt;}
.xb4_c00494{left:222.666667pt;}
.x78_c00494{left:228.960000pt;}
.x91_c00494{left:230.666667pt;}
.x9e_c00494{left:233.333333pt;}
.x65_c00494{left:234.293333pt;}
.x88_c00494{left:235.626667pt;}
.x7f_c00494{left:237.333333pt;}
.x1f_c00494{left:238.293333pt;}
.xbc_c00494{left:242.666667pt;}
.x33_c00494{left:245.333333pt;}
.xc9_c00494{left:247.800000pt;}
.x92_c00494{left:249.333333pt;}
.xaa_c00494{left:251.626667pt;}
.xaf_c00494{left:252.960000pt;}
.x54_c00494{left:256.000000pt;}
.x5d_c00494{left:257.706667pt;}
.xdd_c00494{left:259.626667pt;}
.x29_c00494{left:261.333333pt;}
.x12_c00494{left:263.626667pt;}
.x96_c00494{left:266.666667pt;}
.xca_c00494{left:269.333333pt;}
.xbd_c00494{left:271.040000pt;}
.x55_c00494{left:275.626667pt;}
.x6b_c00494{left:276.960000pt;}
.x6_c00494{left:279.040000pt;}
.x34_c00494{left:281.333333pt;}
.xc2_c00494{left:282.666667pt;}
.x3e_c00494{left:284.373333pt;}
.x79_c00494{left:287.040000pt;}
.xe1_c00494{left:288.000000pt;}
.x4e_c00494{left:288.960000pt;}
.x95_c00494{left:292.000000pt;}
.xdb_c00494{left:292.960000pt;}
.x20_c00494{left:295.040000pt;}
.x72_c00494{left:296.960000pt;}
.x6c_c00494{left:298.093333pt;}
.xcb_c00494{left:300.000000pt;}
.x3f_c00494{left:301.333333pt;}
.x7_c00494{left:303.040000pt;}
.xb0_c00494{left:304.000000pt;}
.x97_c00494{left:307.626667pt;}
.x93_c00494{left:310.466667pt;}
.xc3_c00494{left:315.040000pt;}
.x4f_c00494{left:317.333333pt;}
.x66_c00494{left:318.666667pt;}
.x7a_c00494{left:319.626667pt;}
.xa5_c00494{left:321.706667pt;}
.xb5_c00494{left:322.666667pt;}
.x8f_c00494{left:323.626667pt;}
.x13_c00494{left:326.466667pt;}
.xbe_c00494{left:329.333333pt;}
.x89_c00494{left:331.040000pt;}
.x80_c00494{left:334.093333pt;}
.x9f_c00494{left:335.626667pt;}
.xc4_c00494{left:336.960000pt;}
.x56_c00494{left:338.666667pt;}
.x5e_c00494{left:339.626667pt;}
.x40_c00494{left:341.333333pt;}
.x35_c00494{left:344.000000pt;}
.xcc_c00494{left:346.293333pt;}
.xb6_c00494{left:349.333333pt;}
.x8_c00494{left:350.666667pt;}
.xde_c00494{left:352.000000pt;}
.xd6_c00494{left:353.333333pt;}
.x21_c00494{left:354.293333pt;}
.x2a_c00494{left:355.626667pt;}
.x46_c00494{left:357.706667pt;}
.x14_c00494{left:358.666667pt;}
.x1_c00494{left:360.000000pt;}
.x41_c00494{left:363.040000pt;}
.x9c_c00494{left:364.960000pt;}
.x5f_c00494{left:367.626667pt;}
.x7b_c00494{left:369.333333pt;}
.x81_c00494{left:370.293333pt;}
.xab_c00494{left:372.000000pt;}
.x73_c00494{left:377.706667pt;}
.xe6_c00494{left:378.666667pt;}
.x36_c00494{left:380.000000pt;}
.x67_c00494{left:381.333333pt;}
.x22_c00494{left:382.666667pt;}
.xcd_c00494{left:384.960000pt;}
.x42_c00494{left:386.666667pt;}
.x9_c00494{left:387.626667pt;}
.x6d_c00494{left:392.000000pt;}
.xd7_c00494{left:393.706667pt;}
.x47_c00494{left:394.666667pt;}
.x15_c00494{left:396.000000pt;}
.x90_c00494{left:398.666667pt;}
.xac_c00494{left:400.000000pt;}
.x57_c00494{left:403.040000pt;}
.x98_c00494{left:406.666667pt;}
.x60_c00494{left:408.000000pt;}
.xb7_c00494{left:409.333333pt;}
.x16_c00494{left:411.040000pt;}
.x50_c00494{left:412.000000pt;}
.x74_c00494{left:412.960000pt;}
.x2b_c00494{left:415.626667pt;}
.xbf_c00494{left:419.040000pt;}
.xa6_c00494{left:420.000000pt;}
.x7c_c00494{left:422.666667pt;}
.x58_c00494{left:426.666667pt;}
.xa0_c00494{left:429.333333pt;}
.x75_c00494{left:432.760000pt;}
.x48_c00494{left:434.666667pt;}
.x43_c00494{left:436.000000pt;}
.xd8_c00494{left:436.960000pt;}
.x82_c00494{left:438.293333pt;}
.x8a_c00494{left:440.000000pt;}
.xe2_c00494{left:444.000000pt;}
.x23_c00494{left:445.333333pt;}
.x37_c00494{left:446.666667pt;}
.x7d_c00494{left:448.373333pt;}
.x51_c00494{left:449.333333pt;}
.xce_c00494{left:452.960000pt;}
.x76_c00494{left:454.293333pt;}
.x99_c00494{left:455.626667pt;}
.x24_c00494{left:461.333333pt;}
.xad_c00494{left:462.666667pt;}
.x17_c00494{left:463.626667pt;}
.x38_c00494{left:466.293333pt;}
.x6e_c00494{left:467.626667pt;}
.x2c_c00494{left:472.000000pt;}
.xa_c00494{left:472.960000pt;}
.xb8_c00494{left:475.626667pt;}
.xa7_c00494{left:478.666667pt;}
.x49_c00494{left:480.000000pt;}
.x7e_c00494{left:483.040000pt;}
.x59_c00494{left:485.333333pt;}
.x25_c00494{left:488.000000pt;}
.xa1_c00494{left:489.333333pt;}
.x18_c00494{left:490.666667pt;}
.xb1_c00494{left:492.960000pt;}
.xc5_c00494{left:494.293333pt;}
.xa8_c00494{left:496.000000pt;}
.x4a_c00494{left:499.040000pt;}
.xd3_c00494{left:500.373333pt;}
.x83_c00494{left:501.333333pt;}
.xb9_c00494{left:503.040000pt;}
.x19_c00494{left:504.000000pt;}
.xc6_c00494{left:509.333333pt;}
.x6f_c00494{left:510.293333pt;}
.x2d_c00494{left:516.000000pt;}
.x68_c00494{left:518.466667pt;}
.xc0_c00494{left:521.333333pt;}
.x8b_c00494{left:522.293333pt;}
.xb_c00494{left:523.626667pt;}
.x39_c00494{left:524.960000pt;}
.xcf_c00494{left:527.040000pt;}
.x5a_c00494{left:528.960000pt;}
.x84_c00494{left:532.000000pt;}
.x4b_c00494{left:533.333333pt;}
.x1a_c00494{left:534.293333pt;}
.x9a_c00494{left:536.000000pt;}
.xdc_c00494{left:546.666667pt;}
.x85_c00494{left:548.000000pt;}
.xdf_c00494{left:549.133333pt;}
.xe3_c00494{left:550.666667pt;}
.x44_c00494{left:552.960000pt;}
.xd4_c00494{left:556.000000pt;}
.x61_c00494{left:557.333333pt;}
.xe4_c00494{left:558.666667pt;}
.x86_c00494{left:560.373333pt;}
.xd0_c00494{left:561.333333pt;}
.x70_c00494{left:562.293333pt;}
.x2e_c00494{left:564.000000pt;}
.xc_c00494{left:565.333333pt;}
.x26_c00494{left:566.666667pt;}
.x94_c00494{left:572.573333pt;}
.x62_c00494{left:574.666667pt;}
.xa2_c00494{left:576.000000pt;}
.x1b_c00494{left:582.293333pt;}
.x71_c00494{left:583.426667pt;}
.xc7_c00494{left:586.293333pt;}
.xd_c00494{left:588.000000pt;}
.x8c_c00494{left:589.706667pt;}
.x3a_c00494{left:596.000000pt;}
.x87_c00494{left:598.666667pt;}
.x1c_c00494{left:600.000000pt;}
.x2f_c00494{left:601.333333pt;}
.xe_c00494{left:605.333333pt;}
.xba_c00494{left:608.000000pt;}
.x4c_c00494{left:609.333333pt;}
.x9b_c00494{left:610.666667pt;}
.x3b_c00494{left:612.000000pt;}
.x8d_c00494{left:613.333333pt;}
.xb2_c00494{left:615.040000pt;}
.x5b_c00494{left:616.000000pt;}
.xf_c00494{left:617.706667pt;}
.x1d_c00494{left:622.293333pt;}
.x2_c00494{left:625.333333pt;}
.x30_c00494{left:626.666667pt;}
.xd1_c00494{left:628.000000pt;}
.x63_c00494{left:629.706667pt;}
.xa9_c00494{left:631.040000pt;}
.x27_c00494{left:637.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_54d7e7a1b61ba1347ccbe20e.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma0_c00495{transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);}
.ma8_c00495{transform:matrix(0.360390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360390,0.000000,0.000000,0.250000,0,0);}
.m8c_c00495{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.maa_c00495{transform:matrix(0.369202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369202,0.000000,0.000000,0.250000,0,0);}
.m16_c00495{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m45_c00495{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.mba_c00495{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m79_c00495{transform:matrix(0.382189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382189,0.000000,0.000000,0.250000,0,0);}
.m5_c00495{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.mc3_c00495{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m31_c00495{transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);}
.me6_c00495{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m0_c00495{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.mdc_c00495{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m8d_c00495{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.mbc_c00495{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.ma9_c00495{transform:matrix(0.404453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404453,0.000000,0.000000,0.250000,0,0);}
.mca_c00495{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m81_c00495{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.mc8_c00495{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m7f_c00495{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.m9b_c00495{transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);}
.ma1_c00495{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.mb7_c00495{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m2a_c00495{transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);}
.m74_c00495{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.m8a_c00495{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.mdf_c00495{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.mbd_c00495{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.me4_c00495{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m56_c00495{transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);}
.m72_c00495{transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);}
.mb2_c00495{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m91_c00495{transform:matrix(0.419606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419606,0.000000,0.000000,0.250000,0,0);}
.mac_c00495{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m23_c00495{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m3e_c00495{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.mde_c00495{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m67_c00495{transform:matrix(0.424397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424397,0.000000,0.000000,0.250000,0,0);}
.m5a_c00495{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m9_c00495{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.mae_c00495{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m32_c00495{transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);}
.m40_c00495{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m26_c00495{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m61_c00495{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.mb1_c00495{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m85_c00495{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.mc7_c00495{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m73_c00495{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m41_c00495{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m3f_c00495{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m68_c00495{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m49_c00495{transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);}
.m6c_c00495{transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);}
.m86_c00495{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m2d_c00495{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.ma6_c00495{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mcd_c00495{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m55_c00495{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m27_c00495{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.mb8_c00495{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.me2_c00495{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m1c_c00495{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m88_c00495{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.mcc_c00495{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m6f_c00495{transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);}
.m20_c00495{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m96_c00495{transform:matrix(0.466286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466286,0.000000,0.000000,0.250000,0,0);}
.m44_c00495{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.me1_c00495{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m9a_c00495{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m7d_c00495{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.m7e_c00495{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.m36_c00495{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m51_c00495{transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);}
.m59_c00495{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m62_c00495{transform:matrix(0.477206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477206,0.000000,0.000000,0.250000,0,0);}
.m53_c00495{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m9d_c00495{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.mb3_c00495{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m17_c00495{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m60_c00495{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m84_c00495{transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);}
.m83_c00495{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.ma7_c00495{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.md3_c00495{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m98_c00495{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m5d_c00495{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.m6_c00495{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m13_c00495{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m52_c00495{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.ma4_c00495{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m65_c00495{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m50_c00495{transform:matrix(0.497059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497059,0.000000,0.000000,0.250000,0,0);}
.m19_c00495{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_c00495{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.me9_c00495{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m57_c00495{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m63_c00495{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.mb4_c00495{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m69_c00495{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m93_c00495{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.md1_c00495{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m6d_c00495{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.md7_c00495{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mc4_c00495{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.mda_c00495{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m46_c00495{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m30_c00495{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.mc2_c00495{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mab_c00495{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.m2b_c00495{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);}
.m70_c00495{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.mbe_c00495{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.me8_c00495{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m8e_c00495{transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);}
.m7a_c00495{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m39_c00495{transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);}
.m2c_c00495{transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);}
.mb6_c00495{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m6a_c00495{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.m3a_c00495{transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);}
.m18_c00495{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.mb0_c00495{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mcf_c00495{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m12_c00495{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.mdb_c00495{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m90_c00495{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);}
.m33_c00495{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.md9_c00495{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m2f_c00495{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.md4_c00495{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.ma_c00495{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.m9f_c00495{transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);}
.mc9_c00495{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m11_c00495{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m95_c00495{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m58_c00495{transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);}
.m8f_c00495{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.md2_c00495{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m75_c00495{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.mc1_c00495{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m42_c00495{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m35_c00495{transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);}
.m80_c00495{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m71_c00495{transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);}
.m6b_c00495{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.m2e_c00495{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.ma3_c00495{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.md5_c00495{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m97_c00495{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.me3_c00495{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m1e_c00495{transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);}
.mbb_c00495{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mc_c00495{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m4d_c00495{transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);}
.m76_c00495{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.md6_c00495{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m99_c00495{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.m4f_c00495{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.me7_c00495{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m64_c00495{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m24_c00495{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m89_c00495{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);}
.m5e_c00495{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.mf_c00495{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m1b_c00495{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m43_c00495{transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);}
.m22_c00495{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.mdd_c00495{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m28_c00495{transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);}
.m37_c00495{transform:matrix(0.595588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595588,0.000000,0.000000,0.250000,0,0);}
.m4_c00495{transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);}
.m78_c00495{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.ma2_c00495{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);}
.mce_c00495{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m87_c00495{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m8_c00495{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m15_c00495{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m34_c00495{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);}
.m38_c00495{transform:matrix(0.627206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627206,0.000000,0.000000,0.250000,0,0);}
.m10_c00495{transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);}
.m3b_c00495{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.m47_c00495{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m3c_c00495{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m25_c00495{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m1a_c00495{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.ma5_c00495{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m4c_c00495{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m1_c00495{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m54_c00495{transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);}
.mc5_c00495{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m21_c00495{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m3_c00495{transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);}
.m7c_c00495{transform:matrix(0.649265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649265,0.000000,0.000000,0.250000,0,0);}
.m8b_c00495{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.me_c00495{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);}
.mb_c00495{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m4a_c00495{transform:matrix(0.655147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655147,0.000000,0.000000,0.250000,0,0);}
.md_c00495{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m66_c00495{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m3d_c00495{transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);}
.m29_c00495{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m48_c00495{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m7b_c00495{transform:matrix(0.673529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673529,0.000000,0.000000,0.250000,0,0);}
.m5c_c00495{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);}
.m9e_c00495{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m1f_c00495{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.mad_c00495{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.m14_c00495{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m9c_c00495{transform:matrix(0.696324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696324,0.000000,0.000000,0.250000,0,0);}
.m82_c00495{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.m92_c00495{transform:matrix(0.697794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697794,0.000000,0.000000,0.250000,0,0);}
.m4e_c00495{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);}
.mbf_c00495{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m5f_c00495{transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);}
.m94_c00495{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.mc0_c00495{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.m4b_c00495{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.me0_c00495{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.md0_c00495{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.mc6_c00495{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mb9_c00495{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.me5_c00495{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mcb_c00495{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m5b_c00495{transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);}
.mb5_c00495{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m1d_c00495{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m77_c00495{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m7_c00495{transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);}
.m6e_c00495{transform:matrix(1.103524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.103524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.103524,0.000000,0.000000,0.250000,0,0);}
.m2_c00495{transform:matrix(1.123348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.123348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.123348,0.000000,0.000000,0.250000,0,0);}
.maf_c00495{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
.fs7_c00495{font-size:3.420000px;}
.fs2_c00495{font-size:13.620000px;}
.fs5_c00495{font-size:18.720000px;}
.fs1_c00495{font-size:20.400000px;}
.fs4_c00495{font-size:25.500000px;}
.fs3_c00495{font-size:28.920000px;}
.fs0_c00495{font-size:32.340000px;}
.fs6_c00495{font-size:35.700000px;}
.y0_c00495{bottom:0.000000px;}
.y111_c00495{bottom:250.245000px;}
.y113_c00495{bottom:250.905000px;}
.y115_c00495{bottom:251.130000px;}
.y112_c00495{bottom:251.325000px;}
.y114_c00495{bottom:252.405000px;}
.y10c_c00495{bottom:267.405000px;}
.y10d_c00495{bottom:269.745000px;}
.y10f_c00495{bottom:270.630000px;}
.y110_c00495{bottom:270.825000px;}
.y10e_c00495{bottom:271.905000px;}
.y10a_c00495{bottom:289.050000px;}
.y109_c00495{bottom:291.405000px;}
.y10b_c00495{bottom:292.470000px;}
.y108_c00495{bottom:310.245000px;}
.y105_c00495{bottom:310.905000px;}
.y107_c00495{bottom:311.130000px;}
.y106_c00495{bottom:312.405000px;}
.y104_c00495{bottom:328.245000px;}
.yff_c00495{bottom:328.470000px;}
.y103_c00495{bottom:329.325000px;}
.y101_c00495{bottom:329.745000px;}
.yfe_c00495{bottom:330.405000px;}
.y100_c00495{bottom:330.630000px;}
.y102_c00495{bottom:331.905000px;}
.yfb_c00495{bottom:347.745000px;}
.yf9_c00495{bottom:349.245000px;}
.yfa_c00495{bottom:349.905000px;}
.yfd_c00495{bottom:350.130000px;}
.yfc_c00495{bottom:351.405000px;}
.yf8_c00495{bottom:367.245000px;}
.yf4_c00495{bottom:368.745000px;}
.yf7_c00495{bottom:369.630000px;}
.yf6_c00495{bottom:370.905000px;}
.yf5_c00495{bottom:370.920000px;}
.yf1_c00495{bottom:394.470000px;}
.yf3_c00495{bottom:395.325000px;}
.yf0_c00495{bottom:396.405000px;}
.yf2_c00495{bottom:398.550000px;}
.yec_c00495{bottom:410.325000px;}
.ye9_c00495{bottom:410.550000px;}
.yee_c00495{bottom:411.405000px;}
.yeb_c00495{bottom:411.630000px;}
.yea_c00495{bottom:412.470000px;}
.yef_c00495{bottom:412.695000px;}
.yed_c00495{bottom:413.550000px;}
.ye8_c00495{bottom:425.325000px;}
.ye7_c00495{bottom:440.325000px;}
.ye5_c00495{bottom:441.405000px;}
.ye6_c00495{bottom:441.630000px;}
.ye4_c00495{bottom:443.550000px;}
.ye3_c00495{bottom:454.050000px;}
.ye2_c00495{bottom:454.905000px;}
.ye1_c00495{bottom:455.130000px;}
.yde_c00495{bottom:455.325000px;}
.ydf_c00495{bottom:455.970000px;}
.ydc_c00495{bottom:456.630000px;}
.ye0_c00495{bottom:457.050000px;}
.ydd_c00495{bottom:457.470000px;}
.ydb_c00495{bottom:470.325000px;}
.yda_c00495{bottom:472.470000px;}
.yd9_c00495{bottom:472.695000px;}
.yd7_c00495{bottom:484.470000px;}
.yd8_c00495{bottom:484.905000px;}
.yd6_c00495{bottom:486.405000px;}
.yd3_c00495{bottom:486.630000px;}
.yd4_c00495{bottom:487.050000px;}
.yd5_c00495{bottom:487.470000px;}
.yd2_c00495{bottom:499.905000px;}
.ycc_c00495{bottom:512.970000px;}
.ycf_c00495{bottom:513.825000px;}
.yd0_c00495{bottom:514.470000px;}
.ycd_c00495{bottom:514.905000px;}
.yce_c00495{bottom:515.130000px;}
.ycb_c00495{bottom:515.970000px;}
.yd1_c00495{bottom:517.050000px;}
.yc8_c00495{bottom:529.905000px;}
.yc6_c00495{bottom:530.130000px;}
.yc7_c00495{bottom:530.970000px;}
.yc9_c00495{bottom:531.195000px;}
.yca_c00495{bottom:532.050000px;}
.yc5_c00495{bottom:543.405000px;}
.yc4_c00495{bottom:544.905000px;}
.yc2_c00495{bottom:545.550000px;}
.yc3_c00495{bottom:545.970000px;}
.yc1_c00495{bottom:558.405000px;}
.ybe_c00495{bottom:558.825000px;}
.ybd_c00495{bottom:559.050000px;}
.yc0_c00495{bottom:559.905000px;}
.ybf_c00495{bottom:560.970000px;}
.yb9_c00495{bottom:572.970000px;}
.yba_c00495{bottom:573.825000px;}
.yb7_c00495{bottom:574.905000px;}
.ybc_c00495{bottom:575.130000px;}
.yb8_c00495{bottom:575.970000px;}
.ybb_c00495{bottom:576.195000px;}
.yb6_c00495{bottom:577.050000px;}
.yb4_c00495{bottom:588.405000px;}
.yb5_c00495{bottom:588.630000px;}
.yb3_c00495{bottom:589.470000px;}
.yad_c00495{bottom:601.470000px;}
.yaf_c00495{bottom:602.325000px;}
.yb1_c00495{bottom:603.405000px;}
.yae_c00495{bottom:604.470000px;}
.yb2_c00495{bottom:604.695000px;}
.yb0_c00495{bottom:605.550000px;}
.ya9_c00495{bottom:617.325000px;}
.yaa_c00495{bottom:618.405000px;}
.yac_c00495{bottom:619.470000px;}
.yab_c00495{bottom:619.695000px;}
.ya7_c00495{bottom:631.470000px;}
.ya8_c00495{bottom:633.405000px;}
.ya6_c00495{bottom:633.630000px;}
.ya5_c00495{bottom:635.550000px;}
.ya3_c00495{bottom:647.325000px;}
.ya4_c00495{bottom:648.405000px;}
.ya1_c00495{bottom:649.695000px;}
.ya2_c00495{bottom:650.550000px;}
.y9f_c00495{bottom:662.325000px;}
.y9a_c00495{bottom:662.550000px;}
.ya0_c00495{bottom:663.405000px;}
.y9e_c00495{bottom:664.050000px;}
.y9b_c00495{bottom:664.470000px;}
.y9c_c00495{bottom:664.695000px;}
.y9d_c00495{bottom:665.550000px;}
.y99_c00495{bottom:676.905000px;}
.y97_c00495{bottom:677.550000px;}
.y96_c00495{bottom:678.405000px;}
.y98_c00495{bottom:679.050000px;}
.y94_c00495{bottom:691.050000px;}
.y90_c00495{bottom:691.470000px;}
.y91_c00495{bottom:692.325000px;}
.y93_c00495{bottom:692.970000px;}
.y95_c00495{bottom:693.195000px;}
.y92_c00495{bottom:694.050000px;}
.y8f_c00495{bottom:705.825000px;}
.y8e_c00495{bottom:709.470000px;}
.y8d_c00495{bottom:710.550000px;}
.y8c_c00495{bottom:720.825000px;}
.y87_c00495{bottom:721.050000px;}
.y8a_c00495{bottom:721.905000px;}
.y8b_c00495{bottom:722.970000px;}
.y89_c00495{bottom:723.195000px;}
.y88_c00495{bottom:724.050000px;}
.y85_c00495{bottom:736.050000px;}
.y83_c00495{bottom:736.905000px;}
.y86_c00495{bottom:737.970000px;}
.y82_c00495{bottom:738.195000px;}
.y84_c00495{bottom:739.050000px;}
.y7e_c00495{bottom:749.970000px;}
.y81_c00495{bottom:750.825000px;}
.y7d_c00495{bottom:751.905000px;}
.y7f_c00495{bottom:752.130000px;}
.y80_c00495{bottom:752.970000px;}
.y7a_c00495{bottom:765.825000px;}
.y7c_c00495{bottom:766.905000px;}
.y79_c00495{bottom:767.970000px;}
.y78_c00495{bottom:768.195000px;}
.y7b_c00495{bottom:769.050000px;}
.y76_c00495{bottom:780.405000px;}
.y73_c00495{bottom:781.905000px;}
.y74_c00495{bottom:782.130000px;}
.y75_c00495{bottom:782.970000px;}
.y77_c00495{bottom:784.050000px;}
.y72_c00495{bottom:796.470000px;}
.y6f_c00495{bottom:796.905000px;}
.y70_c00495{bottom:797.550000px;}
.y6e_c00495{bottom:797.970000px;}
.y6d_c00495{bottom:798.195000px;}
.y71_c00495{bottom:799.050000px;}
.y69_c00495{bottom:809.325000px;}
.y6b_c00495{bottom:810.405000px;}
.y6a_c00495{bottom:811.470000px;}
.y68_c00495{bottom:811.695000px;}
.y67_c00495{bottom:811.905000px;}
.y6c_c00495{bottom:812.550000px;}
.y65_c00495{bottom:824.325000px;}
.y63_c00495{bottom:825.405000px;}
.y64_c00495{bottom:825.630000px;}
.y61_c00495{bottom:826.050000px;}
.y66_c00495{bottom:826.470000px;}
.y62_c00495{bottom:827.550000px;}
.y5e_c00495{bottom:839.325000px;}
.y5f_c00495{bottom:840.405000px;}
.y5d_c00495{bottom:841.470000px;}
.y5c_c00495{bottom:841.695000px;}
.y60_c00495{bottom:842.550000px;}
.y57_c00495{bottom:854.325000px;}
.y5a_c00495{bottom:854.550000px;}
.y56_c00495{bottom:855.405000px;}
.y5b_c00495{bottom:856.050000px;}
.y59_c00495{bottom:856.470000px;}
.y58_c00495{bottom:856.695000px;}
.y55_c00495{bottom:857.550000px;}
.y54_c00495{bottom:868.470000px;}
.y53_c00495{bottom:869.325000px;}
.y50_c00495{bottom:870.405000px;}
.y52_c00495{bottom:871.470000px;}
.y51_c00495{bottom:871.695000px;}
.y4f_c00495{bottom:872.550000px;}
.y4d_c00495{bottom:883.905000px;}
.y4e_c00495{bottom:884.130000px;}
.y49_c00495{bottom:884.550000px;}
.y4b_c00495{bottom:884.970000px;}
.y4c_c00495{bottom:885.630000px;}
.y4a_c00495{bottom:886.050000px;}
.y45_c00495{bottom:897.825000px;}
.y48_c00495{bottom:898.905000px;}
.y47_c00495{bottom:899.325000px;}
.y42_c00495{bottom:899.550000px;}
.y46_c00495{bottom:900.195000px;}
.y44_c00495{bottom:901.050000px;}
.y43_c00495{bottom:901.470000px;}
.y41_c00495{bottom:912.825000px;}
.y3c_c00495{bottom:913.470000px;}
.y3f_c00495{bottom:913.905000px;}
.y3e_c00495{bottom:914.130000px;}
.y3b_c00495{bottom:914.325000px;}
.y3d_c00495{bottom:914.970000px;}
.y40_c00495{bottom:915.195000px;}
.y3a_c00495{bottom:916.050000px;}
.y38_c00495{bottom:928.905000px;}
.y39_c00495{bottom:929.325000px;}
.y37_c00495{bottom:930.405000px;}
.y33_c00495{bottom:943.050000px;}
.y34_c00495{bottom:944.970000px;}
.y36_c00495{bottom:945.195000px;}
.y35_c00495{bottom:946.050000px;}
.y31_c00495{bottom:958.050000px;}
.y32_c00495{bottom:958.905000px;}
.y28_c00495{bottom:971.550000px;}
.y2b_c00495{bottom:971.970000px;}
.y30_c00495{bottom:972.825000px;}
.y2c_c00495{bottom:973.050000px;}
.y2e_c00495{bottom:973.470000px;}
.y2f_c00495{bottom:973.695000px;}
.y2a_c00495{bottom:973.905000px;}
.y2d_c00495{bottom:974.550000px;}
.y29_c00495{bottom:974.970000px;}
.y26_c00495{bottom:986.970000px;}
.y25_c00495{bottom:987.825000px;}
.y27_c00495{bottom:989.550000px;}
.y24_c00495{bottom:989.970000px;}
.y22_c00495{bottom:1001.325000px;}
.y1f_c00495{bottom:1001.970000px;}
.y1c_c00495{bottom:1003.050000px;}
.y20_c00495{bottom:1003.470000px;}
.y23_c00495{bottom:1003.695000px;}
.y1e_c00495{bottom:1003.905000px;}
.y21_c00495{bottom:1004.550000px;}
.y1d_c00495{bottom:1004.970000px;}
.y1b_c00495{bottom:1016.970000px;}
.y19_c00495{bottom:1017.405000px;}
.y1a_c00495{bottom:1019.130000px;}
.y18_c00495{bottom:1019.550000px;}
.y17_c00495{bottom:1030.470000px;}
.y16_c00495{bottom:1031.550000px;}
.y14_c00495{bottom:1032.405000px;}
.y13_c00495{bottom:1032.630000px;}
.y12_c00495{bottom:1033.470000px;}
.y11_c00495{bottom:1033.695000px;}
.y15_c00495{bottom:1034.550000px;}
.ye_c00495{bottom:1045.470000px;}
.y10_c00495{bottom:1045.905000px;}
.yd_c00495{bottom:1046.325000px;}
.ya_c00495{bottom:1047.405000px;}
.yf_c00495{bottom:1048.050000px;}
.y9_c00495{bottom:1048.470000px;}
.yb_c00495{bottom:1048.695000px;}
.yc_c00495{bottom:1049.550000px;}
.y5_c00495{bottom:1061.325000px;}
.y8_c00495{bottom:1061.970000px;}
.y6_c00495{bottom:1062.405000px;}
.y7_c00495{bottom:1063.050000px;}
.y3_c00495{bottom:1063.695000px;}
.y4_c00495{bottom:1064.550000px;}
.y1_c00495{bottom:1098.825000px;}
.y2_c00495{bottom:1099.050000px;}
.h8_c00495{height:4.206533px;}
.h3_c00495{height:16.752334px;}
.h6_c00495{height:23.025234px;}
.h2_c00495{height:25.091602px;}
.h5_c00495{height:31.364502px;}
.h4_c00495{height:35.571035px;}
.h1_c00495{height:39.777568px;}
.h7_c00495{height:43.910303px;}
.h0_c00495{height:1335.000000px;}
.w0_c00495{width:880.500000px;}
.x0_c00495{left:0.000000px;}
.xfa_c00495{left:150.420000px;}
.xc1_c00495{left:151.500000px;}
.x1_c00495{left:153.000000px;}
.x58_c00495{left:154.500000px;}
.x7e_c00495{left:163.500000px;}
.xef_c00495{left:165.420000px;}
.x1f_c00495{left:166.500000px;}
.x3_c00495{left:167.580000px;}
.xdb_c00495{left:177.000000px;}
.x2b_c00495{left:180.000000px;}
.xac_c00495{left:181.080000px;}
.x33_c00495{left:184.500000px;}
.x4_c00495{left:185.580000px;}
.x40_c00495{left:187.080000px;}
.x8b_c00495{left:189.000000px;}
.xad_c00495{left:190.080000px;}
.x8f_c00495{left:192.000000px;}
.x106_c00495{left:195.000000px;}
.x4e_c00495{left:196.500000px;}
.x7f_c00495{left:197.580000px;}
.x8c_c00495{left:199.920000px;}
.x82_c00495{left:202.500000px;}
.x6f_c00495{left:205.500000px;}
.xea_c00495{left:207.000000px;}
.x13_c00495{left:208.080000px;}
.x10b_c00495{left:211.920000px;}
.x41_c00495{left:215.580000px;}
.xe1_c00495{left:217.920000px;}
.x96_c00495{left:219.000000px;}
.xd4_c00495{left:220.500000px;}
.x5a_c00495{left:222.000000px;}
.x59_c00495{left:223.500000px;}
.xa1_c00495{left:225.000000px;}
.x63_c00495{left:226.920000px;}
.x5_c00495{left:228.000000px;}
.xca_c00495{left:229.920000px;}
.x76_c00495{left:231.420000px;}
.xf0_c00495{left:232.500000px;}
.xe2_c00495{left:234.000000px;}
.xb9_c00495{left:235.500000px;}
.x2c_c00495{left:238.500000px;}
.x44_c00495{left:240.645000px;}
.x83_c00495{left:243.000000px;}
.xa5_c00495{left:246.000000px;}
.x68_c00495{left:247.500000px;}
.x34_c00495{left:251.145000px;}
.x64_c00495{left:253.500000px;}
.xb7_c00495{left:255.420000px;}
.xae_c00495{left:258.000000px;}
.x42_c00495{left:259.500000px;}
.x90_c00495{left:261.000000px;}
.x20_c00495{left:262.500000px;}
.x97_c00495{left:264.000000px;}
.x14_c00495{left:265.500000px;}
.xa2_c00495{left:267.420000px;}
.x80_c00495{left:268.500000px;}
.xd5_c00495{left:270.000000px;}
.xcb_c00495{left:271.500000px;}
.x6_c00495{left:274.500000px;}
.x15_c00495{left:276.000000px;}
.x77_c00495{left:277.500000px;}
.x4f_c00495{left:278.580000px;}
.x45_c00495{left:280.500000px;}
.xb8_c00495{left:282.000000px;}
.xc2_c00495{left:286.500000px;}
.x69_c00495{left:288.000000px;}
.x2d_c00495{left:289.500000px;}
.x35_c00495{left:291.000000px;}
.x70_c00495{left:292.500000px;}
.x100_c00495{left:294.000000px;}
.x21_c00495{left:295.500000px;}
.xc3_c00495{left:297.000000px;}
.x78_c00495{left:298.500000px;}
.xa6_c00495{left:300.000000px;}
.xf4_c00495{left:303.420000px;}
.xcc_c00495{left:306.420000px;}
.x65_c00495{left:307.500000px;}
.xc5_c00495{left:309.000000px;}
.x16_c00495{left:310.080000px;}
.x7_c00495{left:312.000000px;}
.x43_c00495{left:316.500000px;}
.x50_c00495{left:318.000000px;}
.x46_c00495{left:321.000000px;}
.x2e_c00495{left:322.080000px;}
.x81_c00495{left:324.000000px;}
.x84_c00495{left:325.500000px;}
.xd6_c00495{left:328.080000px;}
.xaf_c00495{left:329.580000px;}
.xc4_c00495{left:331.080000px;}
.x36_c00495{left:333.000000px;}
.x98_c00495{left:334.500000px;}
.x17_c00495{left:337.080000px;}
.x101_c00495{left:339.000000px;}
.x66_c00495{left:341.580000px;}
.xe3_c00495{left:343.500000px;}
.x5b_c00495{left:345.000000px;}
.x71_c00495{left:346.080000px;}
.xb0_c00495{left:349.500000px;}
.xa3_c00495{left:350.580000px;}
.xdc_c00495{left:352.500000px;}
.x91_c00495{left:354.000000px;}
.x51_c00495{left:358.500000px;}
.x8_c00495{left:360.000000px;}
.x108_c00495{left:361.500000px;}
.x99_c00495{left:363.420000px;}
.x2f_c00495{left:364.500000px;}
.xbd_c00495{left:367.500000px;}
.x67_c00495{left:368.580000px;}
.x79_c00495{left:370.500000px;}
.xa4_c00495{left:372.420000px;}
.xd1_c00495{left:376.500000px;}
.x9_c00495{left:378.000000px;}
.x22_c00495{left:379.500000px;}
.x18_c00495{left:381.000000px;}
.x6a_c00495{left:382.920000px;}
.xcd_c00495{left:384.420000px;}
.x5c_c00495{left:388.500000px;}
.x92_c00495{left:390.420000px;}
.x37_c00495{left:391.500000px;}
.x9b_c00495{left:394.500000px;}
.xe4_c00495{left:395.580000px;}
.x8d_c00495{left:398.580000px;}
.xa_c00495{left:400.500000px;}
.x6b_c00495{left:402.000000px;}
.x93_c00495{left:406.500000px;}
.x30_c00495{left:408.000000px;}
.x2_c00495{left:409.500000px;}
.x72_c00495{left:412.500000px;}
.x52_c00495{left:414.000000px;}
.x7a_c00495{left:415.920000px;}
.x23_c00495{left:418.500000px;}
.x47_c00495{left:419.580000px;}
.xf1_c00495{left:421.920000px;}
.x19_c00495{left:423.000000px;}
.xfb_c00495{left:424.500000px;}
.x8e_c00495{left:426.000000px;}
.x85_c00495{left:428.580000px;}
.xd7_c00495{left:431.580000px;}
.x1a_c00495{left:433.500000px;}
.xeb_c00495{left:435.000000px;}
.x38_c00495{left:436.080000px;}
.xe5_c00495{left:438.000000px;}
.xce_c00495{left:439.500000px;}
.xf5_c00495{left:441.000000px;}
.x31_c00495{left:442.920000px;}
.x9a_c00495{left:444.000000px;}
.x9c_c00495{left:445.500000px;}
.x7b_c00495{left:446.580000px;}
.xa7_c00495{left:448.500000px;}
.x109_c00495{left:450.420000px;}
.xba_c00495{left:452.580000px;}
.x86_c00495{left:454.920000px;}
.x5d_c00495{left:456.000000px;}
.x53_c00495{left:457.080000px;}
.xb1_c00495{left:458.580000px;}
.xd2_c00495{left:460.080000px;}
.xb_c00495{left:462.000000px;}
.xf3_c00495{left:463.500000px;}
.xd8_c00495{left:465.000000px;}
.xf6_c00495{left:468.420000px;}
.x32_c00495{left:469.500000px;}
.x7c_c00495{left:472.500000px;}
.x102_c00495{left:474.000000px;}
.x24_c00495{left:477.000000px;}
.x39_c00495{left:478.080000px;}
.x1b_c00495{left:479.580000px;}
.x48_c00495{left:481.080000px;}
.x73_c00495{left:484.080000px;}
.xec_c00495{left:486.000000px;}
.xbb_c00495{left:490.920000px;}
.xd3_c00495{left:492.000000px;}
.xfc_c00495{left:495.420000px;}
.xc6_c00495{left:496.500000px;}
.x5e_c00495{left:498.000000px;}
.x3a_c00495{left:499.080000px;}
.xb2_c00495{left:501.855000px;}
.xc_c00495{left:502.920000px;}
.x1c_c00495{left:506.580000px;}
.x6c_c00495{left:508.500000px;}
.x103_c00495{left:510.000000px;}
.x87_c00495{left:513.420000px;}
.xf7_c00495{left:515.580000px;}
.x54_c00495{left:517.080000px;}
.xed_c00495{left:518.580000px;}
.x25_c00495{left:520.500000px;}
.xb3_c00495{left:521.580000px;}
.x3b_c00495{left:525.000000px;}
.xdd_c00495{left:526.500000px;}
.x74_c00495{left:528.000000px;}
.x88_c00495{left:529.500000px;}
.x5f_c00495{left:531.000000px;}
.x26_c00495{left:534.000000px;}
.xc7_c00495{left:535.920000px;}
.x104_c00495{left:537.000000px;}
.x10a_c00495{left:538.500000px;}
.xd_c00495{left:541.920000px;}
.xa8_c00495{left:545.580000px;}
.x49_c00495{left:547.500000px;}
.x9d_c00495{left:549.420000px;}
.x1d_c00495{left:550.500000px;}
.xc8_c00495{left:553.080000px;}
.xfd_c00495{left:556.500000px;}
.xe_c00495{left:557.580000px;}
.xd9_c00495{left:560.580000px;}
.xbe_c00495{left:564.000000px;}
.x3c_c00495{left:565.080000px;}
.xf2_c00495{left:568.920000px;}
.xde_c00495{left:570.420000px;}
.xbc_c00495{left:572.145000px;}
.xcf_c00495{left:574.500000px;}
.x27_c00495{left:576.000000px;}
.xf_c00495{left:580.500000px;}
.x6d_c00495{left:582.000000px;}
.x3d_c00495{left:583.500000px;}
.x75_c00495{left:585.000000px;}
.xb4_c00495{left:587.580000px;}
.x94_c00495{left:592.500000px;}
.x60_c00495{left:593.580000px;}
.xe6_c00495{left:598.080000px;}
.xfe_c00495{left:603.420000px;}
.xb5_c00495{left:606.000000px;}
.x1e_c00495{left:607.500000px;}
.xe7_c00495{left:608.580000px;}
.x28_c00495{left:610.920000px;}
.x9e_c00495{left:613.080000px;}
.x4a_c00495{left:614.580000px;}
.x6e_c00495{left:616.080000px;}
.x10_c00495{left:617.580000px;}
.xbf_c00495{left:619.920000px;}
.xa9_c00495{left:621.000000px;}
.xf8_c00495{left:622.920000px;}
.xdf_c00495{left:625.920000px;}
.x9f_c00495{left:630.000000px;}
.x11_c00495{left:633.000000px;}
.x89_c00495{left:636.000000px;}
.x55_c00495{left:640.080000px;}
.xe0_c00495{left:643.500000px;}
.x107_c00495{left:645.000000px;}
.x61_c00495{left:646.500000px;}
.xc0_c00495{left:649.080000px;}
.xe8_c00495{left:650.580000px;}
.x29_c00495{left:655.080000px;}
.xd0_c00495{left:657.000000px;}
.x4b_c00495{left:658.500000px;}
.x62_c00495{left:660.000000px;}
.x10c_c00495{left:661.500000px;}
.xaa_c00495{left:665.580000px;}
.xda_c00495{left:667.500000px;}
.x3e_c00495{left:670.500000px;}
.x4c_c00495{left:672.000000px;}
.x95_c00495{left:673.500000px;}
.x12_c00495{left:675.000000px;}
.x56_c00495{left:679.500000px;}
.x7d_c00495{left:680.580000px;}
.x3f_c00495{left:682.920000px;}
.xc9_c00495{left:685.500000px;}
.xb6_c00495{left:688.500000px;}
.xff_c00495{left:689.580000px;}
.x57_c00495{left:691.500000px;}
.xab_c00495{left:693.420000px;}
.x105_c00495{left:694.920000px;}
.x2a_c00495{left:700.500000px;}
.xa0_c00495{left:702.000000px;}
.x10d_c00495{left:703.500000px;}
.x8a_c00495{left:706.500000px;}
.xee_c00495{left:707.580000px;}
.x4d_c00495{left:709.080000px;}
.xe9_c00495{left:710.580000px;}
.xf9_c00495{left:716.580000px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.ls0_c00495{letter-spacing:0.000000pt;}
.ws0_c00495{word-spacing:0.000000pt;}
.fs7_c00495{font-size:3.040000pt;}
.fs2_c00495{font-size:12.106667pt;}
.fs5_c00495{font-size:16.640000pt;}
.fs1_c00495{font-size:18.133333pt;}
.fs4_c00495{font-size:22.666667pt;}
.fs3_c00495{font-size:25.706667pt;}
.fs0_c00495{font-size:28.746667pt;}
.fs6_c00495{font-size:31.733333pt;}
.y0_c00495{bottom:0.000000pt;}
.y111_c00495{bottom:222.440000pt;}
.y113_c00495{bottom:223.026667pt;}
.y115_c00495{bottom:223.226667pt;}
.y112_c00495{bottom:223.400000pt;}
.y114_c00495{bottom:224.360000pt;}
.y10c_c00495{bottom:237.693333pt;}
.y10d_c00495{bottom:239.773333pt;}
.y10f_c00495{bottom:240.560000pt;}
.y110_c00495{bottom:240.733333pt;}
.y10e_c00495{bottom:241.693333pt;}
.y10a_c00495{bottom:256.933333pt;}
.y109_c00495{bottom:259.026667pt;}
.y10b_c00495{bottom:259.973333pt;}
.y108_c00495{bottom:275.773333pt;}
.y105_c00495{bottom:276.360000pt;}
.y107_c00495{bottom:276.560000pt;}
.y106_c00495{bottom:277.693333pt;}
.y104_c00495{bottom:291.773333pt;}
.yff_c00495{bottom:291.973333pt;}
.y103_c00495{bottom:292.733333pt;}
.y101_c00495{bottom:293.106667pt;}
.yfe_c00495{bottom:293.693333pt;}
.y100_c00495{bottom:293.893333pt;}
.y102_c00495{bottom:295.026667pt;}
.yfb_c00495{bottom:309.106667pt;}
.yf9_c00495{bottom:310.440000pt;}
.yfa_c00495{bottom:311.026667pt;}
.yfd_c00495{bottom:311.226667pt;}
.yfc_c00495{bottom:312.360000pt;}
.yf8_c00495{bottom:326.440000pt;}
.yf4_c00495{bottom:327.773333pt;}
.yf7_c00495{bottom:328.560000pt;}
.yf6_c00495{bottom:329.693333pt;}
.yf5_c00495{bottom:329.706667pt;}
.yf1_c00495{bottom:350.640000pt;}
.yf3_c00495{bottom:351.400000pt;}
.yf0_c00495{bottom:352.360000pt;}
.yf2_c00495{bottom:354.266667pt;}
.yec_c00495{bottom:364.733333pt;}
.ye9_c00495{bottom:364.933333pt;}
.yee_c00495{bottom:365.693333pt;}
.yeb_c00495{bottom:365.893333pt;}
.yea_c00495{bottom:366.640000pt;}
.yef_c00495{bottom:366.840000pt;}
.yed_c00495{bottom:367.600000pt;}
.ye8_c00495{bottom:378.066667pt;}
.ye7_c00495{bottom:391.400000pt;}
.ye5_c00495{bottom:392.360000pt;}
.ye6_c00495{bottom:392.560000pt;}
.ye4_c00495{bottom:394.266667pt;}
.ye3_c00495{bottom:403.600000pt;}
.ye2_c00495{bottom:404.360000pt;}
.ye1_c00495{bottom:404.560000pt;}
.yde_c00495{bottom:404.733333pt;}
.ydf_c00495{bottom:405.306667pt;}
.ydc_c00495{bottom:405.893333pt;}
.ye0_c00495{bottom:406.266667pt;}
.ydd_c00495{bottom:406.640000pt;}
.ydb_c00495{bottom:418.066667pt;}
.yda_c00495{bottom:419.973333pt;}
.yd9_c00495{bottom:420.173333pt;}
.yd7_c00495{bottom:430.640000pt;}
.yd8_c00495{bottom:431.026667pt;}
.yd6_c00495{bottom:432.360000pt;}
.yd3_c00495{bottom:432.560000pt;}
.yd4_c00495{bottom:432.933333pt;}
.yd5_c00495{bottom:433.306667pt;}
.yd2_c00495{bottom:444.360000pt;}
.ycc_c00495{bottom:455.973333pt;}
.ycf_c00495{bottom:456.733333pt;}
.yd0_c00495{bottom:457.306667pt;}
.ycd_c00495{bottom:457.693333pt;}
.yce_c00495{bottom:457.893333pt;}
.ycb_c00495{bottom:458.640000pt;}
.yd1_c00495{bottom:459.600000pt;}
.yc8_c00495{bottom:471.026667pt;}
.yc6_c00495{bottom:471.226667pt;}
.yc7_c00495{bottom:471.973333pt;}
.yc9_c00495{bottom:472.173333pt;}
.yca_c00495{bottom:472.933333pt;}
.yc5_c00495{bottom:483.026667pt;}
.yc4_c00495{bottom:484.360000pt;}
.yc2_c00495{bottom:484.933333pt;}
.yc3_c00495{bottom:485.306667pt;}
.yc1_c00495{bottom:496.360000pt;}
.ybe_c00495{bottom:496.733333pt;}
.ybd_c00495{bottom:496.933333pt;}
.yc0_c00495{bottom:497.693333pt;}
.ybf_c00495{bottom:498.640000pt;}
.yb9_c00495{bottom:509.306667pt;}
.yba_c00495{bottom:510.066667pt;}
.yb7_c00495{bottom:511.026667pt;}
.ybc_c00495{bottom:511.226667pt;}
.yb8_c00495{bottom:511.973333pt;}
.ybb_c00495{bottom:512.173333pt;}
.yb6_c00495{bottom:512.933333pt;}
.yb4_c00495{bottom:523.026667pt;}
.yb5_c00495{bottom:523.226667pt;}
.yb3_c00495{bottom:523.973333pt;}
.yad_c00495{bottom:534.640000pt;}
.yaf_c00495{bottom:535.400000pt;}
.yb1_c00495{bottom:536.360000pt;}
.yae_c00495{bottom:537.306667pt;}
.yb2_c00495{bottom:537.506667pt;}
.yb0_c00495{bottom:538.266667pt;}
.ya9_c00495{bottom:548.733333pt;}
.yaa_c00495{bottom:549.693333pt;}
.yac_c00495{bottom:550.640000pt;}
.yab_c00495{bottom:550.840000pt;}
.ya7_c00495{bottom:561.306667pt;}
.ya8_c00495{bottom:563.026667pt;}
.ya6_c00495{bottom:563.226667pt;}
.ya5_c00495{bottom:564.933333pt;}
.ya3_c00495{bottom:575.400000pt;}
.ya4_c00495{bottom:576.360000pt;}
.ya1_c00495{bottom:577.506667pt;}
.ya2_c00495{bottom:578.266667pt;}
.y9f_c00495{bottom:588.733333pt;}
.y9a_c00495{bottom:588.933333pt;}
.ya0_c00495{bottom:589.693333pt;}
.y9e_c00495{bottom:590.266667pt;}
.y9b_c00495{bottom:590.640000pt;}
.y9c_c00495{bottom:590.840000pt;}
.y9d_c00495{bottom:591.600000pt;}
.y99_c00495{bottom:601.693333pt;}
.y97_c00495{bottom:602.266667pt;}
.y96_c00495{bottom:603.026667pt;}
.y98_c00495{bottom:603.600000pt;}
.y94_c00495{bottom:614.266667pt;}
.y90_c00495{bottom:614.640000pt;}
.y91_c00495{bottom:615.400000pt;}
.y93_c00495{bottom:615.973333pt;}
.y95_c00495{bottom:616.173333pt;}
.y92_c00495{bottom:616.933333pt;}
.y8f_c00495{bottom:627.400000pt;}
.y8e_c00495{bottom:630.640000pt;}
.y8d_c00495{bottom:631.600000pt;}
.y8c_c00495{bottom:640.733333pt;}
.y87_c00495{bottom:640.933333pt;}
.y8a_c00495{bottom:641.693333pt;}
.y8b_c00495{bottom:642.640000pt;}
.y89_c00495{bottom:642.840000pt;}
.y88_c00495{bottom:643.600000pt;}
.y85_c00495{bottom:654.266667pt;}
.y83_c00495{bottom:655.026667pt;}
.y86_c00495{bottom:655.973333pt;}
.y82_c00495{bottom:656.173333pt;}
.y84_c00495{bottom:656.933333pt;}
.y7e_c00495{bottom:666.640000pt;}
.y81_c00495{bottom:667.400000pt;}
.y7d_c00495{bottom:668.360000pt;}
.y7f_c00495{bottom:668.560000pt;}
.y80_c00495{bottom:669.306667pt;}
.y7a_c00495{bottom:680.733333pt;}
.y7c_c00495{bottom:681.693333pt;}
.y79_c00495{bottom:682.640000pt;}
.y78_c00495{bottom:682.840000pt;}
.y7b_c00495{bottom:683.600000pt;}
.y76_c00495{bottom:693.693333pt;}
.y73_c00495{bottom:695.026667pt;}
.y74_c00495{bottom:695.226667pt;}
.y75_c00495{bottom:695.973333pt;}
.y77_c00495{bottom:696.933333pt;}
.y72_c00495{bottom:707.973333pt;}
.y6f_c00495{bottom:708.360000pt;}
.y70_c00495{bottom:708.933333pt;}
.y6e_c00495{bottom:709.306667pt;}
.y6d_c00495{bottom:709.506667pt;}
.y71_c00495{bottom:710.266667pt;}
.y69_c00495{bottom:719.400000pt;}
.y6b_c00495{bottom:720.360000pt;}
.y6a_c00495{bottom:721.306667pt;}
.y68_c00495{bottom:721.506667pt;}
.y67_c00495{bottom:721.693333pt;}
.y6c_c00495{bottom:722.266667pt;}
.y65_c00495{bottom:732.733333pt;}
.y63_c00495{bottom:733.693333pt;}
.y64_c00495{bottom:733.893333pt;}
.y61_c00495{bottom:734.266667pt;}
.y66_c00495{bottom:734.640000pt;}
.y62_c00495{bottom:735.600000pt;}
.y5e_c00495{bottom:746.066667pt;}
.y5f_c00495{bottom:747.026667pt;}
.y5d_c00495{bottom:747.973333pt;}
.y5c_c00495{bottom:748.173333pt;}
.y60_c00495{bottom:748.933333pt;}
.y57_c00495{bottom:759.400000pt;}
.y5a_c00495{bottom:759.600000pt;}
.y56_c00495{bottom:760.360000pt;}
.y5b_c00495{bottom:760.933333pt;}
.y59_c00495{bottom:761.306667pt;}
.y58_c00495{bottom:761.506667pt;}
.y55_c00495{bottom:762.266667pt;}
.y54_c00495{bottom:771.973333pt;}
.y53_c00495{bottom:772.733333pt;}
.y50_c00495{bottom:773.693333pt;}
.y52_c00495{bottom:774.640000pt;}
.y51_c00495{bottom:774.840000pt;}
.y4f_c00495{bottom:775.600000pt;}
.y4d_c00495{bottom:785.693333pt;}
.y4e_c00495{bottom:785.893333pt;}
.y49_c00495{bottom:786.266667pt;}
.y4b_c00495{bottom:786.640000pt;}
.y4c_c00495{bottom:787.226667pt;}
.y4a_c00495{bottom:787.600000pt;}
.y45_c00495{bottom:798.066667pt;}
.y48_c00495{bottom:799.026667pt;}
.y47_c00495{bottom:799.400000pt;}
.y42_c00495{bottom:799.600000pt;}
.y46_c00495{bottom:800.173333pt;}
.y44_c00495{bottom:800.933333pt;}
.y43_c00495{bottom:801.306667pt;}
.y41_c00495{bottom:811.400000pt;}
.y3c_c00495{bottom:811.973333pt;}
.y3f_c00495{bottom:812.360000pt;}
.y3e_c00495{bottom:812.560000pt;}
.y3b_c00495{bottom:812.733333pt;}
.y3d_c00495{bottom:813.306667pt;}
.y40_c00495{bottom:813.506667pt;}
.y3a_c00495{bottom:814.266667pt;}
.y38_c00495{bottom:825.693333pt;}
.y39_c00495{bottom:826.066667pt;}
.y37_c00495{bottom:827.026667pt;}
.y33_c00495{bottom:838.266667pt;}
.y34_c00495{bottom:839.973333pt;}
.y36_c00495{bottom:840.173333pt;}
.y35_c00495{bottom:840.933333pt;}
.y31_c00495{bottom:851.600000pt;}
.y32_c00495{bottom:852.360000pt;}
.y28_c00495{bottom:863.600000pt;}
.y2b_c00495{bottom:863.973333pt;}
.y30_c00495{bottom:864.733333pt;}
.y2c_c00495{bottom:864.933333pt;}
.y2e_c00495{bottom:865.306667pt;}
.y2f_c00495{bottom:865.506667pt;}
.y2a_c00495{bottom:865.693333pt;}
.y2d_c00495{bottom:866.266667pt;}
.y29_c00495{bottom:866.640000pt;}
.y26_c00495{bottom:877.306667pt;}
.y25_c00495{bottom:878.066667pt;}
.y27_c00495{bottom:879.600000pt;}
.y24_c00495{bottom:879.973333pt;}
.y22_c00495{bottom:890.066667pt;}
.y1f_c00495{bottom:890.640000pt;}
.y1c_c00495{bottom:891.600000pt;}
.y20_c00495{bottom:891.973333pt;}
.y23_c00495{bottom:892.173333pt;}
.y1e_c00495{bottom:892.360000pt;}
.y21_c00495{bottom:892.933333pt;}
.y1d_c00495{bottom:893.306667pt;}
.y1b_c00495{bottom:903.973333pt;}
.y19_c00495{bottom:904.360000pt;}
.y1a_c00495{bottom:905.893333pt;}
.y18_c00495{bottom:906.266667pt;}
.y17_c00495{bottom:915.973333pt;}
.y16_c00495{bottom:916.933333pt;}
.y14_c00495{bottom:917.693333pt;}
.y13_c00495{bottom:917.893333pt;}
.y12_c00495{bottom:918.640000pt;}
.y11_c00495{bottom:918.840000pt;}
.y15_c00495{bottom:919.600000pt;}
.ye_c00495{bottom:929.306667pt;}
.y10_c00495{bottom:929.693333pt;}
.yd_c00495{bottom:930.066667pt;}
.ya_c00495{bottom:931.026667pt;}
.yf_c00495{bottom:931.600000pt;}
.y9_c00495{bottom:931.973333pt;}
.yb_c00495{bottom:932.173333pt;}
.yc_c00495{bottom:932.933333pt;}
.y5_c00495{bottom:943.400000pt;}
.y8_c00495{bottom:943.973333pt;}
.y6_c00495{bottom:944.360000pt;}
.y7_c00495{bottom:944.933333pt;}
.y3_c00495{bottom:945.506667pt;}
.y4_c00495{bottom:946.266667pt;}
.y1_c00495{bottom:976.733333pt;}
.y2_c00495{bottom:976.933333pt;}
.h8_c00495{height:3.739141pt;}
.h3_c00495{height:14.890964pt;}
.h6_c00495{height:20.466875pt;}
.h2_c00495{height:22.303646pt;}
.h5_c00495{height:27.879557pt;}
.h4_c00495{height:31.618698pt;}
.h1_c00495{height:35.357839pt;}
.h7_c00495{height:39.031380pt;}
.h0_c00495{height:1186.666667pt;}
.w0_c00495{width:782.666667pt;}
.x0_c00495{left:0.000000pt;}
.xfa_c00495{left:133.706667pt;}
.xc1_c00495{left:134.666667pt;}
.x1_c00495{left:136.000000pt;}
.x58_c00495{left:137.333333pt;}
.x7e_c00495{left:145.333333pt;}
.xef_c00495{left:147.040000pt;}
.x1f_c00495{left:148.000000pt;}
.x3_c00495{left:148.960000pt;}
.xdb_c00495{left:157.333333pt;}
.x2b_c00495{left:160.000000pt;}
.xac_c00495{left:160.960000pt;}
.x33_c00495{left:164.000000pt;}
.x4_c00495{left:164.960000pt;}
.x40_c00495{left:166.293333pt;}
.x8b_c00495{left:168.000000pt;}
.xad_c00495{left:168.960000pt;}
.x8f_c00495{left:170.666667pt;}
.x106_c00495{left:173.333333pt;}
.x4e_c00495{left:174.666667pt;}
.x7f_c00495{left:175.626667pt;}
.x8c_c00495{left:177.706667pt;}
.x82_c00495{left:180.000000pt;}
.x6f_c00495{left:182.666667pt;}
.xea_c00495{left:184.000000pt;}
.x13_c00495{left:184.960000pt;}
.x10b_c00495{left:188.373333pt;}
.x41_c00495{left:191.626667pt;}
.xe1_c00495{left:193.706667pt;}
.x96_c00495{left:194.666667pt;}
.xd4_c00495{left:196.000000pt;}
.x5a_c00495{left:197.333333pt;}
.x59_c00495{left:198.666667pt;}
.xa1_c00495{left:200.000000pt;}
.x63_c00495{left:201.706667pt;}
.x5_c00495{left:202.666667pt;}
.xca_c00495{left:204.373333pt;}
.x76_c00495{left:205.706667pt;}
.xf0_c00495{left:206.666667pt;}
.xe2_c00495{left:208.000000pt;}
.xb9_c00495{left:209.333333pt;}
.x2c_c00495{left:212.000000pt;}
.x44_c00495{left:213.906667pt;}
.x83_c00495{left:216.000000pt;}
.xa5_c00495{left:218.666667pt;}
.x68_c00495{left:220.000000pt;}
.x34_c00495{left:223.240000pt;}
.x64_c00495{left:225.333333pt;}
.xb7_c00495{left:227.040000pt;}
.xae_c00495{left:229.333333pt;}
.x42_c00495{left:230.666667pt;}
.x90_c00495{left:232.000000pt;}
.x20_c00495{left:233.333333pt;}
.x97_c00495{left:234.666667pt;}
.x14_c00495{left:236.000000pt;}
.xa2_c00495{left:237.706667pt;}
.x80_c00495{left:238.666667pt;}
.xd5_c00495{left:240.000000pt;}
.xcb_c00495{left:241.333333pt;}
.x6_c00495{left:244.000000pt;}
.x15_c00495{left:245.333333pt;}
.x77_c00495{left:246.666667pt;}
.x4f_c00495{left:247.626667pt;}
.x45_c00495{left:249.333333pt;}
.xb8_c00495{left:250.666667pt;}
.xc2_c00495{left:254.666667pt;}
.x69_c00495{left:256.000000pt;}
.x2d_c00495{left:257.333333pt;}
.x35_c00495{left:258.666667pt;}
.x70_c00495{left:260.000000pt;}
.x100_c00495{left:261.333333pt;}
.x21_c00495{left:262.666667pt;}
.xc3_c00495{left:264.000000pt;}
.x78_c00495{left:265.333333pt;}
.xa6_c00495{left:266.666667pt;}
.xf4_c00495{left:269.706667pt;}
.xcc_c00495{left:272.373333pt;}
.x65_c00495{left:273.333333pt;}
.xc5_c00495{left:274.666667pt;}
.x16_c00495{left:275.626667pt;}
.x7_c00495{left:277.333333pt;}
.x43_c00495{left:281.333333pt;}
.x50_c00495{left:282.666667pt;}
.x46_c00495{left:285.333333pt;}
.x2e_c00495{left:286.293333pt;}
.x81_c00495{left:288.000000pt;}
.x84_c00495{left:289.333333pt;}
.xd6_c00495{left:291.626667pt;}
.xaf_c00495{left:292.960000pt;}
.xc4_c00495{left:294.293333pt;}
.x36_c00495{left:296.000000pt;}
.x98_c00495{left:297.333333pt;}
.x17_c00495{left:299.626667pt;}
.x101_c00495{left:301.333333pt;}
.x66_c00495{left:303.626667pt;}
.xe3_c00495{left:305.333333pt;}
.x5b_c00495{left:306.666667pt;}
.x71_c00495{left:307.626667pt;}
.xb0_c00495{left:310.666667pt;}
.xa3_c00495{left:311.626667pt;}
.xdc_c00495{left:313.333333pt;}
.x91_c00495{left:314.666667pt;}
.x51_c00495{left:318.666667pt;}
.x8_c00495{left:320.000000pt;}
.x108_c00495{left:321.333333pt;}
.x99_c00495{left:323.040000pt;}
.x2f_c00495{left:324.000000pt;}
.xbd_c00495{left:326.666667pt;}
.x67_c00495{left:327.626667pt;}
.x79_c00495{left:329.333333pt;}
.xa4_c00495{left:331.040000pt;}
.xd1_c00495{left:334.666667pt;}
.x9_c00495{left:336.000000pt;}
.x22_c00495{left:337.333333pt;}
.x18_c00495{left:338.666667pt;}
.x6a_c00495{left:340.373333pt;}
.xcd_c00495{left:341.706667pt;}
.x5c_c00495{left:345.333333pt;}
.x92_c00495{left:347.040000pt;}
.x37_c00495{left:348.000000pt;}
.x9b_c00495{left:350.666667pt;}
.xe4_c00495{left:351.626667pt;}
.x8d_c00495{left:354.293333pt;}
.xa_c00495{left:356.000000pt;}
.x6b_c00495{left:357.333333pt;}
.x93_c00495{left:361.333333pt;}
.x30_c00495{left:362.666667pt;}
.x2_c00495{left:364.000000pt;}
.x72_c00495{left:366.666667pt;}
.x52_c00495{left:368.000000pt;}
.x7a_c00495{left:369.706667pt;}
.x23_c00495{left:372.000000pt;}
.x47_c00495{left:372.960000pt;}
.xf1_c00495{left:375.040000pt;}
.x19_c00495{left:376.000000pt;}
.xfb_c00495{left:377.333333pt;}
.x8e_c00495{left:378.666667pt;}
.x85_c00495{left:380.960000pt;}
.xd7_c00495{left:383.626667pt;}
.x1a_c00495{left:385.333333pt;}
.xeb_c00495{left:386.666667pt;}
.x38_c00495{left:387.626667pt;}
.xe5_c00495{left:389.333333pt;}
.xce_c00495{left:390.666667pt;}
.xf5_c00495{left:392.000000pt;}
.x31_c00495{left:393.706667pt;}
.x9a_c00495{left:394.666667pt;}
.x9c_c00495{left:396.000000pt;}
.x7b_c00495{left:396.960000pt;}
.xa7_c00495{left:398.666667pt;}
.x109_c00495{left:400.373333pt;}
.xba_c00495{left:402.293333pt;}
.x86_c00495{left:404.373333pt;}
.x5d_c00495{left:405.333333pt;}
.x53_c00495{left:406.293333pt;}
.xb1_c00495{left:407.626667pt;}
.xd2_c00495{left:408.960000pt;}
.xb_c00495{left:410.666667pt;}
.xf3_c00495{left:412.000000pt;}
.xd8_c00495{left:413.333333pt;}
.xf6_c00495{left:416.373333pt;}
.x32_c00495{left:417.333333pt;}
.x7c_c00495{left:420.000000pt;}
.x102_c00495{left:421.333333pt;}
.x24_c00495{left:424.000000pt;}
.x39_c00495{left:424.960000pt;}
.x1b_c00495{left:426.293333pt;}
.x48_c00495{left:427.626667pt;}
.x73_c00495{left:430.293333pt;}
.xec_c00495{left:432.000000pt;}
.xbb_c00495{left:436.373333pt;}
.xd3_c00495{left:437.333333pt;}
.xfc_c00495{left:440.373333pt;}
.xc6_c00495{left:441.333333pt;}
.x5e_c00495{left:442.666667pt;}
.x3a_c00495{left:443.626667pt;}
.xb2_c00495{left:446.093333pt;}
.xc_c00495{left:447.040000pt;}
.x1c_c00495{left:450.293333pt;}
.x6c_c00495{left:452.000000pt;}
.x103_c00495{left:453.333333pt;}
.x87_c00495{left:456.373333pt;}
.xf7_c00495{left:458.293333pt;}
.x54_c00495{left:459.626667pt;}
.xed_c00495{left:460.960000pt;}
.x25_c00495{left:462.666667pt;}
.xb3_c00495{left:463.626667pt;}
.x3b_c00495{left:466.666667pt;}
.xdd_c00495{left:468.000000pt;}
.x74_c00495{left:469.333333pt;}
.x88_c00495{left:470.666667pt;}
.x5f_c00495{left:472.000000pt;}
.x26_c00495{left:474.666667pt;}
.xc7_c00495{left:476.373333pt;}
.x104_c00495{left:477.333333pt;}
.x10a_c00495{left:478.666667pt;}
.xd_c00495{left:481.706667pt;}
.xa8_c00495{left:484.960000pt;}
.x49_c00495{left:486.666667pt;}
.x9d_c00495{left:488.373333pt;}
.x1d_c00495{left:489.333333pt;}
.xc8_c00495{left:491.626667pt;}
.xfd_c00495{left:494.666667pt;}
.xe_c00495{left:495.626667pt;}
.xd9_c00495{left:498.293333pt;}
.xbe_c00495{left:501.333333pt;}
.x3c_c00495{left:502.293333pt;}
.xf2_c00495{left:505.706667pt;}
.xde_c00495{left:507.040000pt;}
.xbc_c00495{left:508.573333pt;}
.xcf_c00495{left:510.666667pt;}
.x27_c00495{left:512.000000pt;}
.xf_c00495{left:516.000000pt;}
.x6d_c00495{left:517.333333pt;}
.x3d_c00495{left:518.666667pt;}
.x75_c00495{left:520.000000pt;}
.xb4_c00495{left:522.293333pt;}
.x94_c00495{left:526.666667pt;}
.x60_c00495{left:527.626667pt;}
.xe6_c00495{left:531.626667pt;}
.xfe_c00495{left:536.373333pt;}
.xb5_c00495{left:538.666667pt;}
.x1e_c00495{left:540.000000pt;}
.xe7_c00495{left:540.960000pt;}
.x28_c00495{left:543.040000pt;}
.x9e_c00495{left:544.960000pt;}
.x4a_c00495{left:546.293333pt;}
.x6e_c00495{left:547.626667pt;}
.x10_c00495{left:548.960000pt;}
.xbf_c00495{left:551.040000pt;}
.xa9_c00495{left:552.000000pt;}
.xf8_c00495{left:553.706667pt;}
.xdf_c00495{left:556.373333pt;}
.x9f_c00495{left:560.000000pt;}
.x11_c00495{left:562.666667pt;}
.x89_c00495{left:565.333333pt;}
.x55_c00495{left:568.960000pt;}
.xe0_c00495{left:572.000000pt;}
.x107_c00495{left:573.333333pt;}
.x61_c00495{left:574.666667pt;}
.xc0_c00495{left:576.960000pt;}
.xe8_c00495{left:578.293333pt;}
.x29_c00495{left:582.293333pt;}
.xd0_c00495{left:584.000000pt;}
.x4b_c00495{left:585.333333pt;}
.x62_c00495{left:586.666667pt;}
.x10c_c00495{left:588.000000pt;}
.xaa_c00495{left:591.626667pt;}
.xda_c00495{left:593.333333pt;}
.x3e_c00495{left:596.000000pt;}
.x4c_c00495{left:597.333333pt;}
.x95_c00495{left:598.666667pt;}
.x12_c00495{left:600.000000pt;}
.x56_c00495{left:604.000000pt;}
.x7d_c00495{left:604.960000pt;}
.x3f_c00495{left:607.040000pt;}
.xc9_c00495{left:609.333333pt;}
.xb6_c00495{left:612.000000pt;}
.xff_c00495{left:612.960000pt;}
.x57_c00495{left:614.666667pt;}
.xab_c00495{left:616.373333pt;}
.x105_c00495{left:617.706667pt;}
.x2a_c00495{left:622.666667pt;}
.xa0_c00495{left:624.000000pt;}
.x10d_c00495{left:625.333333pt;}
.x8a_c00495{left:628.000000pt;}
.xee_c00495{left:628.960000pt;}
.x4d_c00495{left:630.293333pt;}
.xe9_c00495{left:631.626667pt;}
.xf9_c00495{left:636.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_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_4b200817fb045b2f45f6bd2e.woff2')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma4_c00496{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00496{transform:matrix(0.291794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291794,0.000000,0.000000,0.250000,0,0);}
.md2_c00496{transform:matrix(0.337815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337815,0.000000,0.000000,0.250000,0,0);}
.m7f_c00496{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m7b_c00496{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m22_c00496{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.md4_c00496{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m97_c00496{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m5f_c00496{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.mb9_c00496{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m4c_c00496{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m60_c00496{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.mc5_c00496{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mce_c00496{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m27_c00496{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m41_c00496{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m58_c00496{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.mbb_c00496{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.mc1_c00496{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.mb7_c00496{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.md7_c00496{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m4e_c00496{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m34_c00496{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m46_c00496{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m87_c00496{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m9e_c00496{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m71_c00496{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.ma6_c00496{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m95_c00496{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m9_c00496{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m48_c00496{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m75_c00496{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m8d_c00496{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.m12_c00496{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m90_c00496{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.mc3_c00496{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m79_c00496{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.me_c00496{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m24_c00496{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m59_c00496{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m85_c00496{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m32_c00496{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m31_c00496{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.mb3_c00496{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m63_c00496{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.mc8_c00496{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.mb0_c00496{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m6c_c00496{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m6a_c00496{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.ma8_c00496{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.mb8_c00496{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.mb5_c00496{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m28_c00496{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.ma3_c00496{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.mba_c00496{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m10_c00496{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m83_c00496{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.maa_c00496{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m9d_c00496{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m16_c00496{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m84_c00496{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.md3_c00496{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m81_c00496{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.mc4_c00496{transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);}
.m1e_c00496{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m8_c00496{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mc9_c00496{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.md6_c00496{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m44_c00496{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.mbc_c00496{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m65_c00496{transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);}
.mc6_c00496{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m2a_c00496{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m23_c00496{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.m29_c00496{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.mc2_c00496{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.ma7_c00496{transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460111,0.000000,0.000000,0.250000,0,0);}
.mad_c00496{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.mbe_c00496{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m47_c00496{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m56_c00496{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m61_c00496{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m3e_c00496{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m73_c00496{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m74_c00496{transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);}
.m49_c00496{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m6d_c00496{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m3_c00496{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mc0_c00496{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.mbf_c00496{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m99_c00496{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.maf_c00496{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m19_c00496{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m8f_c00496{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m64_c00496{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m6e_c00496{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m76_c00496{transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);}
.m66_c00496{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.mb4_c00496{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m1_c00496{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.mb6_c00496{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mb1_c00496{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m4f_c00496{transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);}
.m2e_c00496{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_c00496{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m94_c00496{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m2b_c00496{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m33_c00496{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m2d_c00496{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m98_c00496{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m8a_c00496{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m8b_c00496{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m9b_c00496{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m53_c00496{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m4_c00496{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.mc_c00496{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m5b_c00496{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m2f_c00496{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m70_c00496{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.ma9_c00496{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m26_c00496{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m42_c00496{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m72_c00496{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m5a_c00496{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m43_c00496{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m4b_c00496{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m82_c00496{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m6b_c00496{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m18_c00496{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m7a_c00496{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m6_c00496{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m11_c00496{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mab_c00496{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m1f_c00496{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m86_c00496{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m37_c00496{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m7_c00496{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m13_c00496{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m62_c00496{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m8e_c00496{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m51_c00496{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.mcb_c00496{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.mcd_c00496{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m80_c00496{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m67_c00496{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.mbd_c00496{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.md8_c00496{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m54_c00496{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m5e_c00496{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);}
.m8c_c00496{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m3b_c00496{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mb_c00496{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m7d_c00496{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m69_c00496{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.mac_c00496{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m1c_c00496{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m92_c00496{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m2c_c00496{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.md5_c00496{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m35_c00496{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m45_c00496{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mf_c00496{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.ma0_c00496{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m4a_c00496{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m2_c00496{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m39_c00496{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m6f_c00496{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.ma_c00496{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m91_c00496{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m96_c00496{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m5d_c00496{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m25_c00496{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m1a_c00496{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m14_c00496{transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);}
.m7e_c00496{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m5c_c00496{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m5_c00496{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.mc7_c00496{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m3a_c00496{transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);}
.m88_c00496{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.m3f_c00496{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);}
.m9a_c00496{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.mb2_c00496{transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);}
.ma5_c00496{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.m93_c00496{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m1b_c00496{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m77_c00496{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m17_c00496{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m50_c00496{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m52_c00496{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.mca_c00496{transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);}
.mcc_c00496{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);}
.m55_c00496{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m0_c00496{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m40_c00496{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m3c_c00496{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m68_c00496{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m3d_c00496{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mae_c00496{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.ma1_c00496{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m15_c00496{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m4d_c00496{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m78_c00496{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.m20_c00496{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m36_c00496{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m7c_c00496{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m9c_c00496{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.md_c00496{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.md1_c00496{transform:matrix(0.755609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.755609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.755609,0.000000,0.000000,0.250000,0,0);}
.m38_c00496{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m21_c00496{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m57_c00496{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mcf_c00496{transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);}
.m9f_c00496{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.md0_c00496{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m1d_c00496{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m89_c00496{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.v0_c00496{vertical-align:0.000000px;}
.v1_c00496{vertical-align:12.000000px;}
.v2_c00496{vertical-align:18.000000px;}
.ls0_c00496{letter-spacing:0.000000px;}
.sc__c00496{text-shadow:none;}
.sc0_c00496{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00496{-webkit-text-stroke:0px transparent;}
.sc0_c00496{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00496{word-spacing:-8.811328px;}
.ws1_c00496{word-spacing:-6.988015px;}
.ws2_c00496{word-spacing:-6.400641px;}
.ws0_c00496{word-spacing:-4.199201px;}
.ws4_c00496{word-spacing:0.000000px;}
.fc0_c00496{color:transparent;}
.fs4_c00496{font-size:18.720000px;}
.fs0_c00496{font-size:20.400000px;}
.fs5_c00496{font-size:25.500000px;}
.fs1_c00496{font-size:28.920000px;}
.fs2_c00496{font-size:32.340000px;}
.fs3_c00496{font-size:35.700000px;}
.fs6_c00496{font-size:39.120000px;}
.y0_c00496{bottom:0.000000px;}
.yd4_c00496{bottom:253.245000px;}
.yd1_c00496{bottom:253.905000px;}
.yd2_c00496{bottom:254.130000px;}
.yd3_c00496{bottom:255.405000px;}
.ycc_c00496{bottom:271.245000px;}
.yd0_c00496{bottom:272.745000px;}
.ycd_c00496{bottom:273.405000px;}
.yce_c00496{bottom:273.630000px;}
.ycf_c00496{bottom:274.905000px;}
.yc7_c00496{bottom:289.905000px;}
.ycb_c00496{bottom:290.745000px;}
.yc8_c00496{bottom:292.245000px;}
.yca_c00496{bottom:293.130000px;}
.yc9_c00496{bottom:294.405000px;}
.yc5_c00496{bottom:311.745000px;}
.yc6_c00496{bottom:313.470000px;}
.yc4_c00496{bottom:313.905000px;}
.yc1_c00496{bottom:331.245000px;}
.yc2_c00496{bottom:333.405000px;}
.yc3_c00496{bottom:334.470000px;}
.ybd_c00496{bottom:350.745000px;}
.yc0_c00496{bottom:352.470000px;}
.ybe_c00496{bottom:352.905000px;}
.ybf_c00496{bottom:353.970000px;}
.ybb_c00496{bottom:370.245000px;}
.yba_c00496{bottom:371.325000px;}
.yb9_c00496{bottom:372.405000px;}
.ybc_c00496{bottom:372.630000px;}
.yb8_c00496{bottom:389.745000px;}
.yb5_c00496{bottom:390.825000px;}
.yb7_c00496{bottom:391.905000px;}
.yb4_c00496{bottom:392.130000px;}
.yb6_c00496{bottom:392.970000px;}
.yb3_c00496{bottom:393.405000px;}
.yb0_c00496{bottom:410.745000px;}
.yb2_c00496{bottom:411.405000px;}
.yb1_c00496{bottom:411.825000px;}
.yaf_c00496{bottom:412.905000px;}
.yad_c00496{bottom:428.745000px;}
.ya9_c00496{bottom:430.245000px;}
.yae_c00496{bottom:430.905000px;}
.yab_c00496{bottom:431.325000px;}
.yac_c00496{bottom:431.970000px;}
.yaa_c00496{bottom:432.405000px;}
.ya6_c00496{bottom:449.745000px;}
.ya8_c00496{bottom:450.405000px;}
.ya4_c00496{bottom:450.825000px;}
.ya7_c00496{bottom:451.470000px;}
.ya5_c00496{bottom:451.905000px;}
.ya2_c00496{bottom:469.245000px;}
.ya3_c00496{bottom:469.905000px;}
.ya1_c00496{bottom:471.405000px;}
.y9c_c00496{bottom:487.905000px;}
.y9a_c00496{bottom:488.745000px;}
.ya0_c00496{bottom:489.630000px;}
.y9f_c00496{bottom:489.825000px;}
.y9e_c00496{bottom:490.470000px;}
.y99_c00496{bottom:490.905000px;}
.y9b_c00496{bottom:491.130000px;}
.y9d_c00496{bottom:492.405000px;}
.y97_c00496{bottom:507.180000px;}
.y98_c00496{bottom:508.245000px;}
.y95_c00496{bottom:510.405000px;}
.y96_c00496{bottom:511.905000px;}
.y94_c00496{bottom:530.130000px;}
.y93_c00496{bottom:547.245000px;}
.y90_c00496{bottom:548.745000px;}
.y92_c00496{bottom:549.405000px;}
.y8f_c00496{bottom:549.630000px;}
.y91_c00496{bottom:550.470000px;}
.y8e_c00496{bottom:550.905000px;}
.y8d_c00496{bottom:567.405000px;}
.y8b_c00496{bottom:568.245000px;}
.y8c_c00496{bottom:570.405000px;}
.y85_c00496{bottom:587.325000px;}
.y8a_c00496{bottom:588.405000px;}
.y88_c00496{bottom:589.245000px;}
.y86_c00496{bottom:589.905000px;}
.y89_c00496{bottom:590.970000px;}
.y87_c00496{bottom:591.405000px;}
.y7f_c00496{bottom:607.245000px;}
.y84_c00496{bottom:608.745000px;}
.y80_c00496{bottom:609.405000px;}
.y82_c00496{bottom:609.630000px;}
.y81_c00496{bottom:610.470000px;}
.y83_c00496{bottom:610.905000px;}
.y7a_c00496{bottom:625.905000px;}
.y7d_c00496{bottom:628.245000px;}
.y78_c00496{bottom:628.905000px;}
.y7c_c00496{bottom:629.130000px;}
.y7b_c00496{bottom:629.325000px;}
.y7e_c00496{bottom:629.970000px;}
.y79_c00496{bottom:630.405000px;}
.y75_c00496{bottom:647.325000px;}
.y73_c00496{bottom:647.745000px;}
.y77_c00496{bottom:647.970000px;}
.y76_c00496{bottom:648.405000px;}
.y72_c00496{bottom:648.630000px;}
.y71_c00496{bottom:649.905000px;}
.y74_c00496{bottom:650.970000px;}
.y6d_c00496{bottom:667.245000px;}
.y6e_c00496{bottom:668.130000px;}
.y6f_c00496{bottom:669.405000px;}
.y70_c00496{bottom:670.470000px;}
.y6b_c00496{bottom:686.745000px;}
.y6a_c00496{bottom:688.905000px;}
.y6c_c00496{bottom:689.130000px;}
.y65_c00496{bottom:706.245000px;}
.y68_c00496{bottom:707.325000px;}
.y66_c00496{bottom:708.405000px;}
.y69_c00496{bottom:708.630000px;}
.y67_c00496{bottom:709.470000px;}
.y63_c00496{bottom:725.745000px;}
.y62_c00496{bottom:727.905000px;}
.y64_c00496{bottom:728.130000px;}
.y61_c00496{bottom:728.970000px;}
.y5b_c00496{bottom:745.245000px;}
.y5d_c00496{bottom:746.325000px;}
.y60_c00496{bottom:746.970000px;}
.y5c_c00496{bottom:747.405000px;}
.y5f_c00496{bottom:747.630000px;}
.y5e_c00496{bottom:748.470000px;}
.y59_c00496{bottom:763.905000px;}
.y5a_c00496{bottom:764.745000px;}
.y55_c00496{bottom:766.905000px;}
.y58_c00496{bottom:767.130000px;}
.y57_c00496{bottom:767.325000px;}
.y56_c00496{bottom:767.970000px;}
.y54_c00496{bottom:768.405000px;}
.y52_c00496{bottom:785.325000px;}
.y4e_c00496{bottom:785.745000px;}
.y53_c00496{bottom:786.405000px;}
.y4f_c00496{bottom:786.630000px;}
.y4d_c00496{bottom:786.825000px;}
.y50_c00496{bottom:787.470000px;}
.y51_c00496{bottom:787.905000px;}
.y4c_c00496{bottom:802.905000px;}
.y49_c00496{bottom:804.825000px;}
.y4a_c00496{bottom:805.245000px;}
.y47_c00496{bottom:806.130000px;}
.y4b_c00496{bottom:806.970000px;}
.y48_c00496{bottom:807.405000px;}
.y45_c00496{bottom:822.405000px;}
.y44_c00496{bottom:823.905000px;}
.y43_c00496{bottom:824.745000px;}
.y46_c00496{bottom:825.405000px;}
.y42_c00496{bottom:826.905000px;}
.y40_c00496{bottom:841.905000px;}
.y3f_c00496{bottom:843.825000px;}
.y3d_c00496{bottom:844.245000px;}
.y41_c00496{bottom:844.905000px;}
.y3e_c00496{bottom:846.405000px;}
.y38_c00496{bottom:863.745000px;}
.y3b_c00496{bottom:863.970000px;}
.y39_c00496{bottom:865.905000px;}
.y3c_c00496{bottom:866.130000px;}
.y3a_c00496{bottom:866.970000px;}
.y37_c00496{bottom:884.325000px;}
.y36_c00496{bottom:884.745000px;}
.y33_c00496{bottom:885.405000px;}
.y34_c00496{bottom:885.630000px;}
.y32_c00496{bottom:886.470000px;}
.y35_c00496{bottom:886.905000px;}
.y30_c00496{bottom:902.745000px;}
.y31_c00496{bottom:903.825000px;}
.y2e_c00496{bottom:904.905000px;}
.y2f_c00496{bottom:905.130000px;}
.y2d_c00496{bottom:922.245000px;}
.y28_c00496{bottom:923.325000px;}
.y2a_c00496{bottom:923.745000px;}
.y2c_c00496{bottom:924.405000px;}
.y2b_c00496{bottom:924.825000px;}
.y29_c00496{bottom:925.905000px;}
.y26_c00496{bottom:941.745000px;}
.y24_c00496{bottom:943.245000px;}
.y27_c00496{bottom:944.130000px;}
.y25_c00496{bottom:945.405000px;}
.y23_c00496{bottom:961.470000px;}
.y20_c00496{bottom:961.905000px;}
.y1f_c00496{bottom:963.630000px;}
.y22_c00496{bottom:964.470000px;}
.y1e_c00496{bottom:964.905000px;}
.y21_c00496{bottom:965.970000px;}
.y1b_c00496{bottom:981.405000px;}
.y1a_c00496{bottom:982.245000px;}
.y1d_c00496{bottom:982.905000px;}
.y1c_c00496{bottom:983.970000px;}
.y19_c00496{bottom:984.405000px;}
.y18_c00496{bottom:1001.325000px;}
.y15_c00496{bottom:1001.745000px;}
.y17_c00496{bottom:1002.825000px;}
.y16_c00496{bottom:1003.905000px;}
.y11_c00496{bottom:1020.405000px;}
.y13_c00496{bottom:1021.245000px;}
.y14_c00496{bottom:1022.325000px;}
.y10_c00496{bottom:1023.405000px;}
.y12_c00496{bottom:1023.630000px;}
.yd_c00496{bottom:1040.325000px;}
.y8_c00496{bottom:1040.745000px;}
.yf_c00496{bottom:1041.630000px;}
.yc_c00496{bottom:1041.825000px;}
.ye_c00496{bottom:1042.470000px;}
.y9_c00496{bottom:1042.905000px;}
.yb_c00496{bottom:1043.130000px;}
.ya_c00496{bottom:1043.970000px;}
.y4_c00496{bottom:1059.405000px;}
.y6_c00496{bottom:1060.245000px;}
.y5_c00496{bottom:1061.325000px;}
.y3_c00496{bottom:1062.405000px;}
.y7_c00496{bottom:1062.630000px;}
.y2_c00496{bottom:1098.405000px;}
.y1_c00496{bottom:1100.550000px;}
.h5_c00496{height:23.025234px;}
.h1_c00496{height:25.091602px;}
.h6_c00496{height:31.364502px;}
.h2_c00496{height:35.571035px;}
.h3_c00496{height:39.777568px;}
.h4_c00496{height:43.910303px;}
.h7_c00496{height:47.571035px;}
.h9_c00496{height:48.116836px;}
.h8_c00496{height:53.571035px;}
.h0_c00496{height:1335.000000px;}
.w0_c00496{width:880.500000px;}
.x0_c00496{left:0.000000px;}
.x3_c00496{left:151.500000px;}
.x5f_c00496{left:152.580000px;}
.x12_c00496{left:153.855000px;}
.x117_c00496{left:154.920000px;}
.xd7_c00496{left:169.500000px;}
.xc3_c00496{left:172.500000px;}
.x84_c00496{left:178.080000px;}
.x23_c00496{left:179.580000px;}
.xf2_c00496{left:181.500000px;}
.x13_c00496{left:182.580000px;}
.xe1_c00496{left:184.500000px;}
.x70_c00496{left:186.000000px;}
.xcb_c00496{left:190.920000px;}
.x100_c00496{left:192.000000px;}
.xbd_c00496{left:193.500000px;}
.x85_c00496{left:195.000000px;}
.x60_c00496{left:196.920000px;}
.x10f_c00496{left:198.000000px;}
.x112_c00496{left:201.000000px;}
.x78_c00496{left:205.500000px;}
.x95_c00496{left:207.000000px;}
.x57_c00496{left:208.080000px;}
.x40_c00496{left:210.000000px;}
.xb6_c00496{left:211.500000px;}
.xa2_c00496{left:213.420000px;}
.xd8_c00496{left:214.500000px;}
.xe6_c00496{left:216.000000px;}
.x2d_c00496{left:217.500000px;}
.x36_c00496{left:219.420000px;}
.x24_c00496{left:220.500000px;}
.x61_c00496{left:223.920000px;}
.x4_c00496{left:225.000000px;}
.x14_c00496{left:228.420000px;}
.xed_c00496{left:230.580000px;}
.xe9_c00496{left:232.500000px;}
.xab_c00496{left:234.420000px;}
.xfc_c00496{left:238.080000px;}
.x5_c00496{left:240.000000px;}
.xc8_c00496{left:241.500000px;}
.x41_c00496{left:246.420000px;}
.xea_c00496{left:248.580000px;}
.xb2_c00496{left:250.500000px;}
.x10a_c00496{left:252.420000px;}
.x15_c00496{left:253.920000px;}
.x8c_c00496{left:256.500000px;}
.x86_c00496{left:258.000000px;}
.xf3_c00496{left:259.500000px;}
.x96_c00496{left:261.000000px;}
.x62_c00496{left:262.500000px;}
.xb7_c00496{left:265.500000px;}
.x71_c00496{left:266.580000px;}
.xc4_c00496{left:270.000000px;}
.xd9_c00496{left:271.500000px;}
.xcc_c00496{left:272.580000px;}
.x42_c00496{left:274.920000px;}
.x10b_c00496{left:277.500000px;}
.xb8_c00496{left:279.000000px;}
.x16_c00496{left:280.500000px;}
.x58_c00496{left:283.500000px;}
.xdf_c00496{left:285.000000px;}
.x25_c00496{left:286.500000px;}
.x7d_c00496{left:288.000000px;}
.xcd_c00496{left:291.000000px;}
.xe7_c00496{left:292.500000px;}
.xac_c00496{left:294.420000px;}
.x6_c00496{left:295.500000px;}
.x17_c00496{left:297.420000px;}
.xeb_c00496{left:300.000000px;}
.x6b_c00496{left:301.500000px;}
.xda_c00496{left:304.080000px;}
.x79_c00496{left:306.000000px;}
.x4c_c00496{left:307.500000px;}
.x63_c00496{left:310.500000px;}
.x8d_c00496{left:312.000000px;}
.x26_c00496{left:313.500000px;}
.xf6_c00496{left:315.000000px;}
.x97_c00496{left:316.500000px;}
.xad_c00496{left:319.080000px;}
.x59_c00496{left:321.420000px;}
.xc9_c00496{left:322.500000px;}
.x18_c00496{left:324.000000px;}
.xfd_c00496{left:327.000000px;}
.xa3_c00496{left:328.500000px;}
.x7_c00496{left:330.000000px;}
.xb3_c00496{left:336.420000px;}
.xce_c00496{left:339.000000px;}
.x4d_c00496{left:340.500000px;}
.x64_c00496{left:342.420000px;}
.x6c_c00496{left:344.580000px;}
.x7a_c00496{left:346.500000px;}
.xee_c00496{left:348.420000px;}
.x87_c00496{left:349.500000px;}
.x37_c00496{left:351.000000px;}
.xd3_c00496{left:352.920000px;}
.x98_c00496{left:354.000000px;}
.xcf_c00496{left:355.920000px;}
.xa4_c00496{left:357.000000px;}
.xf4_c00496{left:358.500000px;}
.xae_c00496{left:359.580000px;}
.x43_c00496{left:361.500000px;}
.x105_c00496{left:363.000000px;}
.x9e_c00496{left:364.080000px;}
.x38_c00496{left:365.580000px;}
.x8_c00496{left:369.420000px;}
.x2e_c00496{left:370.920000px;}
.x10c_c00496{left:373.920000px;}
.x6d_c00496{left:376.920000px;}
.x7e_c00496{left:378.420000px;}
.x44_c00496{left:379.500000px;}
.x4e_c00496{left:380.580000px;}
.xc5_c00496{left:384.000000px;}
.x72_c00496{left:385.500000px;}
.x19_c00496{left:387.000000px;}
.x65_c00496{left:388.920000px;}
.xdb_c00496{left:390.000000px;}
.x5a_c00496{left:391.920000px;}
.xf7_c00496{left:393.000000px;}
.x101_c00496{left:394.920000px;}
.xd4_c00496{left:396.420000px;}
.x88_c00496{left:397.920000px;}
.x4f_c00496{left:400.920000px;}
.x9f_c00496{left:402.000000px;}
.x9_c00496{left:403.920000px;}
.x7f_c00496{left:405.000000px;}
.x1_c00496{left:406.500000px;}
.x8e_c00496{left:407.580000px;}
.x10d_c00496{left:411.420000px;}
.x1a_c00496{left:412.500000px;}
.x66_c00496{left:415.500000px;}
.xe2_c00496{left:417.420000px;}
.xb9_c00496{left:418.920000px;}
.x110_c00496{left:420.000000px;}
.xdc_c00496{left:421.500000px;}
.xa5_c00496{left:423.420000px;}
.x99_c00496{left:425.580000px;}
.x50_c00496{left:428.580000px;}
.x106_c00496{left:430.920000px;}
.xd5_c00496{left:432.000000px;}
.x73_c00496{left:433.080000px;}
.x7b_c00496{left:434.580000px;}
.x8f_c00496{left:436.500000px;}
.x39_c00496{left:441.420000px;}
.x89_c00496{left:442.500000px;}
.x9a_c00496{left:444.420000px;}
.xa_c00496{left:445.920000px;}
.x113_c00496{left:447.000000px;}
.x2f_c00496{left:448.500000px;}
.xf8_c00496{left:450.000000px;}
.x67_c00496{left:453.000000px;}
.xba_c00496{left:454.920000px;}
.x45_c00496{left:456.420000px;}
.xe8_c00496{left:457.500000px;}
.xf5_c00496{left:459.000000px;}
.xdd_c00496{left:460.080000px;}
.x118_c00496{left:462.420000px;}
.x10e_c00496{left:463.920000px;}
.x114_c00496{left:465.420000px;}
.x1b_c00496{left:466.500000px;}
.xbe_c00496{left:468.000000px;}
.xf9_c00496{left:469.920000px;}
.xb_c00496{left:471.000000px;}
.x27_c00496{left:472.920000px;}
.x9b_c00496{left:474.000000px;}
.x3a_c00496{left:477.000000px;}
.x107_c00496{left:478.500000px;}
.x30_c00496{left:479.580000px;}
.xbb_c00496{left:481.500000px;}
.x1c_c00496{left:483.000000px;}
.x90_c00496{left:489.000000px;}
.x51_c00496{left:490.500000px;}
.x74_c00496{left:491.580000px;}
.x8a_c00496{left:493.920000px;}
.xef_c00496{left:496.080000px;}
.xfa_c00496{left:497.580000px;}
.x80_c00496{left:500.580000px;}
.xd6_c00496{left:504.000000px;}
.xaf_c00496{left:505.920000px;}
.x46_c00496{left:507.000000px;}
.x91_c00496{left:508.500000px;}
.x1d_c00496{left:510.420000px;}
.xe0_c00496{left:513.420000px;}
.x9c_c00496{left:515.580000px;}
.x81_c00496{left:519.420000px;}
.x6e_c00496{left:520.500000px;}
.x5b_c00496{left:521.580000px;}
.x28_c00496{left:524.580000px;}
.x52_c00496{left:526.080000px;}
.xa6_c00496{left:530.580000px;}
.xc_c00496{left:535.080000px;}
.x102_c00496{left:536.580000px;}
.x31_c00496{left:538.500000px;}
.x3b_c00496{left:540.000000px;}
.xb0_c00496{left:541.080000px;}
.xd0_c00496{left:543.000000px;}
.x53_c00496{left:544.920000px;}
.x47_c00496{left:547.080000px;}
.x9d_c00496{left:549.420000px;}
.xa7_c00496{left:550.500000px;}
.xd_c00496{left:552.000000px;}
.x5c_c00496{left:553.920000px;}
.x103_c00496{left:555.000000px;}
.x92_c00496{left:556.500000px;}
.x7c_c00496{left:557.580000px;}
.xf0_c00496{left:561.420000px;}
.x29_c00496{left:562.500000px;}
.x68_c00496{left:565.500000px;}
.xec_c00496{left:566.580000px;}
.x48_c00496{left:568.920000px;}
.x32_c00496{left:572.580000px;}
.x111_c00496{left:574.500000px;}
.x3c_c00496{left:576.420000px;}
.xa8_c00496{left:577.500000px;}
.xc6_c00496{left:580.500000px;}
.xe3_c00496{left:582.420000px;}
.x104_c00496{left:583.500000px;}
.x1e_c00496{left:584.580000px;}
.x2a_c00496{left:586.080000px;}
.x108_c00496{left:588.000000px;}
.x33_c00496{left:591.420000px;}
.x82_c00496{left:594.000000px;}
.xbf_c00496{left:595.920000px;}
.xe_c00496{left:597.000000px;}
.xbc_c00496{left:599.580000px;}
.x1f_c00496{left:601.500000px;}
.xa0_c00496{left:603.000000px;}
.x93_c00496{left:604.080000px;}
.xd1_c00496{left:607.500000px;}
.x8b_c00496{left:609.000000px;}
.xfb_c00496{left:611.580000px;}
.xc7_c00496{left:613.920000px;}
.x54_c00496{left:615.000000px;}
.xb4_c00496{left:617.580000px;}
.x2b_c00496{left:619.080000px;}
.xf1_c00496{left:621.420000px;}
.x5d_c00496{left:623.580000px;}
.xfe_c00496{left:625.500000px;}
.x20_c00496{left:627.000000px;}
.xc0_c00496{left:630.000000px;}
.x6f_c00496{left:631.080000px;}
.x75_c00496{left:633.000000px;}
.xf_c00496{left:634.500000px;}
.x109_c00496{left:637.500000px;}
.x49_c00496{left:640.500000px;}
.x55_c00496{left:642.420000px;}
.x10_c00496{left:645.420000px;}
.x3d_c00496{left:648.000000px;}
.x76_c00496{left:649.920000px;}
.xa9_c00496{left:651.000000px;}
.x69_c00496{left:653.580000px;}
.xca_c00496{left:655.500000px;}
.xde_c00496{left:656.580000px;}
.xff_c00496{left:658.500000px;}
.xe4_c00496{left:660.000000px;}
.x115_c00496{left:661.080000px;}
.x34_c00496{left:663.000000px;}
.x94_c00496{left:664.500000px;}
.xc1_c00496{left:666.420000px;}
.x21_c00496{left:668.580000px;}
.x83_c00496{left:670.920000px;}
.x5e_c00496{left:672.000000px;}
.x2c_c00496{left:673.500000px;}
.x4a_c00496{left:674.580000px;}
.x77_c00496{left:676.080000px;}
.x56_c00496{left:681.420000px;}
.xb1_c00496{left:684.000000px;}
.x3e_c00496{left:688.500000px;}
.xaa_c00496{left:689.580000px;}
.x116_c00496{left:691.500000px;}
.x11_c00496{left:692.580000px;}
.xc2_c00496{left:694.080000px;}
.x6a_c00496{left:697.080000px;}
.x22_c00496{left:699.000000px;}
.x2_c00496{left:703.500000px;}
.xb5_c00496{left:705.420000px;}
.x3f_c00496{left:708.420000px;}
.xa1_c00496{left:709.920000px;}
.xe5_c00496{left:711.000000px;}
.x35_c00496{left:716.580000px;}
.x4b_c00496{left:718.500000px;}
.xd2_c00496{left:720.000000px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.v1_c00496{vertical-align:10.666667pt;}
.v2_c00496{vertical-align:16.000000pt;}
.ls0_c00496{letter-spacing:0.000000pt;}
.ws3_c00496{word-spacing:-7.832291pt;}
.ws1_c00496{word-spacing:-6.211569pt;}
.ws2_c00496{word-spacing:-5.689459pt;}
.ws0_c00496{word-spacing:-3.732623pt;}
.ws4_c00496{word-spacing:0.000000pt;}
.fs4_c00496{font-size:16.640000pt;}
.fs0_c00496{font-size:18.133333pt;}
.fs5_c00496{font-size:22.666667pt;}
.fs1_c00496{font-size:25.706667pt;}
.fs2_c00496{font-size:28.746667pt;}
.fs3_c00496{font-size:31.733333pt;}
.fs6_c00496{font-size:34.773333pt;}
.y0_c00496{bottom:0.000000pt;}
.yd4_c00496{bottom:225.106667pt;}
.yd1_c00496{bottom:225.693333pt;}
.yd2_c00496{bottom:225.893333pt;}
.yd3_c00496{bottom:227.026667pt;}
.ycc_c00496{bottom:241.106667pt;}
.yd0_c00496{bottom:242.440000pt;}
.ycd_c00496{bottom:243.026667pt;}
.yce_c00496{bottom:243.226667pt;}
.ycf_c00496{bottom:244.360000pt;}
.yc7_c00496{bottom:257.693333pt;}
.ycb_c00496{bottom:258.440000pt;}
.yc8_c00496{bottom:259.773333pt;}
.yca_c00496{bottom:260.560000pt;}
.yc9_c00496{bottom:261.693333pt;}
.yc5_c00496{bottom:277.106667pt;}
.yc6_c00496{bottom:278.640000pt;}
.yc4_c00496{bottom:279.026667pt;}
.yc1_c00496{bottom:294.440000pt;}
.yc2_c00496{bottom:296.360000pt;}
.yc3_c00496{bottom:297.306667pt;}
.ybd_c00496{bottom:311.773333pt;}
.yc0_c00496{bottom:313.306667pt;}
.ybe_c00496{bottom:313.693333pt;}
.ybf_c00496{bottom:314.640000pt;}
.ybb_c00496{bottom:329.106667pt;}
.yba_c00496{bottom:330.066667pt;}
.yb9_c00496{bottom:331.026667pt;}
.ybc_c00496{bottom:331.226667pt;}
.yb8_c00496{bottom:346.440000pt;}
.yb5_c00496{bottom:347.400000pt;}
.yb7_c00496{bottom:348.360000pt;}
.yb4_c00496{bottom:348.560000pt;}
.yb6_c00496{bottom:349.306667pt;}
.yb3_c00496{bottom:349.693333pt;}
.yb0_c00496{bottom:365.106667pt;}
.yb2_c00496{bottom:365.693333pt;}
.yb1_c00496{bottom:366.066667pt;}
.yaf_c00496{bottom:367.026667pt;}
.yad_c00496{bottom:381.106667pt;}
.ya9_c00496{bottom:382.440000pt;}
.yae_c00496{bottom:383.026667pt;}
.yab_c00496{bottom:383.400000pt;}
.yac_c00496{bottom:383.973333pt;}
.yaa_c00496{bottom:384.360000pt;}
.ya6_c00496{bottom:399.773333pt;}
.ya8_c00496{bottom:400.360000pt;}
.ya4_c00496{bottom:400.733333pt;}
.ya7_c00496{bottom:401.306667pt;}
.ya5_c00496{bottom:401.693333pt;}
.ya2_c00496{bottom:417.106667pt;}
.ya3_c00496{bottom:417.693333pt;}
.ya1_c00496{bottom:419.026667pt;}
.y9c_c00496{bottom:433.693333pt;}
.y9a_c00496{bottom:434.440000pt;}
.ya0_c00496{bottom:435.226667pt;}
.y9f_c00496{bottom:435.400000pt;}
.y9e_c00496{bottom:435.973333pt;}
.y99_c00496{bottom:436.360000pt;}
.y9b_c00496{bottom:436.560000pt;}
.y9d_c00496{bottom:437.693333pt;}
.y97_c00496{bottom:450.826667pt;}
.y98_c00496{bottom:451.773333pt;}
.y95_c00496{bottom:453.693333pt;}
.y96_c00496{bottom:455.026667pt;}
.y94_c00496{bottom:471.226667pt;}
.y93_c00496{bottom:486.440000pt;}
.y90_c00496{bottom:487.773333pt;}
.y92_c00496{bottom:488.360000pt;}
.y8f_c00496{bottom:488.560000pt;}
.y91_c00496{bottom:489.306667pt;}
.y8e_c00496{bottom:489.693333pt;}
.y8d_c00496{bottom:504.360000pt;}
.y8b_c00496{bottom:505.106667pt;}
.y8c_c00496{bottom:507.026667pt;}
.y85_c00496{bottom:522.066667pt;}
.y8a_c00496{bottom:523.026667pt;}
.y88_c00496{bottom:523.773333pt;}
.y86_c00496{bottom:524.360000pt;}
.y89_c00496{bottom:525.306667pt;}
.y87_c00496{bottom:525.693333pt;}
.y7f_c00496{bottom:539.773333pt;}
.y84_c00496{bottom:541.106667pt;}
.y80_c00496{bottom:541.693333pt;}
.y82_c00496{bottom:541.893333pt;}
.y81_c00496{bottom:542.640000pt;}
.y83_c00496{bottom:543.026667pt;}
.y7a_c00496{bottom:556.360000pt;}
.y7d_c00496{bottom:558.440000pt;}
.y78_c00496{bottom:559.026667pt;}
.y7c_c00496{bottom:559.226667pt;}
.y7b_c00496{bottom:559.400000pt;}
.y7e_c00496{bottom:559.973333pt;}
.y79_c00496{bottom:560.360000pt;}
.y75_c00496{bottom:575.400000pt;}
.y73_c00496{bottom:575.773333pt;}
.y77_c00496{bottom:575.973333pt;}
.y76_c00496{bottom:576.360000pt;}
.y72_c00496{bottom:576.560000pt;}
.y71_c00496{bottom:577.693333pt;}
.y74_c00496{bottom:578.640000pt;}
.y6d_c00496{bottom:593.106667pt;}
.y6e_c00496{bottom:593.893333pt;}
.y6f_c00496{bottom:595.026667pt;}
.y70_c00496{bottom:595.973333pt;}
.y6b_c00496{bottom:610.440000pt;}
.y6a_c00496{bottom:612.360000pt;}
.y6c_c00496{bottom:612.560000pt;}
.y65_c00496{bottom:627.773333pt;}
.y68_c00496{bottom:628.733333pt;}
.y66_c00496{bottom:629.693333pt;}
.y69_c00496{bottom:629.893333pt;}
.y67_c00496{bottom:630.640000pt;}
.y63_c00496{bottom:645.106667pt;}
.y62_c00496{bottom:647.026667pt;}
.y64_c00496{bottom:647.226667pt;}
.y61_c00496{bottom:647.973333pt;}
.y5b_c00496{bottom:662.440000pt;}
.y5d_c00496{bottom:663.400000pt;}
.y60_c00496{bottom:663.973333pt;}
.y5c_c00496{bottom:664.360000pt;}
.y5f_c00496{bottom:664.560000pt;}
.y5e_c00496{bottom:665.306667pt;}
.y59_c00496{bottom:679.026667pt;}
.y5a_c00496{bottom:679.773333pt;}
.y55_c00496{bottom:681.693333pt;}
.y58_c00496{bottom:681.893333pt;}
.y57_c00496{bottom:682.066667pt;}
.y56_c00496{bottom:682.640000pt;}
.y54_c00496{bottom:683.026667pt;}
.y52_c00496{bottom:698.066667pt;}
.y4e_c00496{bottom:698.440000pt;}
.y53_c00496{bottom:699.026667pt;}
.y4f_c00496{bottom:699.226667pt;}
.y4d_c00496{bottom:699.400000pt;}
.y50_c00496{bottom:699.973333pt;}
.y51_c00496{bottom:700.360000pt;}
.y4c_c00496{bottom:713.693333pt;}
.y49_c00496{bottom:715.400000pt;}
.y4a_c00496{bottom:715.773333pt;}
.y47_c00496{bottom:716.560000pt;}
.y4b_c00496{bottom:717.306667pt;}
.y48_c00496{bottom:717.693333pt;}
.y45_c00496{bottom:731.026667pt;}
.y44_c00496{bottom:732.360000pt;}
.y43_c00496{bottom:733.106667pt;}
.y46_c00496{bottom:733.693333pt;}
.y42_c00496{bottom:735.026667pt;}
.y40_c00496{bottom:748.360000pt;}
.y3f_c00496{bottom:750.066667pt;}
.y3d_c00496{bottom:750.440000pt;}
.y41_c00496{bottom:751.026667pt;}
.y3e_c00496{bottom:752.360000pt;}
.y38_c00496{bottom:767.773333pt;}
.y3b_c00496{bottom:767.973333pt;}
.y39_c00496{bottom:769.693333pt;}
.y3c_c00496{bottom:769.893333pt;}
.y3a_c00496{bottom:770.640000pt;}
.y37_c00496{bottom:786.066667pt;}
.y36_c00496{bottom:786.440000pt;}
.y33_c00496{bottom:787.026667pt;}
.y34_c00496{bottom:787.226667pt;}
.y32_c00496{bottom:787.973333pt;}
.y35_c00496{bottom:788.360000pt;}
.y30_c00496{bottom:802.440000pt;}
.y31_c00496{bottom:803.400000pt;}
.y2e_c00496{bottom:804.360000pt;}
.y2f_c00496{bottom:804.560000pt;}
.y2d_c00496{bottom:819.773333pt;}
.y28_c00496{bottom:820.733333pt;}
.y2a_c00496{bottom:821.106667pt;}
.y2c_c00496{bottom:821.693333pt;}
.y2b_c00496{bottom:822.066667pt;}
.y29_c00496{bottom:823.026667pt;}
.y26_c00496{bottom:837.106667pt;}
.y24_c00496{bottom:838.440000pt;}
.y27_c00496{bottom:839.226667pt;}
.y25_c00496{bottom:840.360000pt;}
.y23_c00496{bottom:854.640000pt;}
.y20_c00496{bottom:855.026667pt;}
.y1f_c00496{bottom:856.560000pt;}
.y22_c00496{bottom:857.306667pt;}
.y1e_c00496{bottom:857.693333pt;}
.y21_c00496{bottom:858.640000pt;}
.y1b_c00496{bottom:872.360000pt;}
.y1a_c00496{bottom:873.106667pt;}
.y1d_c00496{bottom:873.693333pt;}
.y1c_c00496{bottom:874.640000pt;}
.y19_c00496{bottom:875.026667pt;}
.y18_c00496{bottom:890.066667pt;}
.y15_c00496{bottom:890.440000pt;}
.y17_c00496{bottom:891.400000pt;}
.y16_c00496{bottom:892.360000pt;}
.y11_c00496{bottom:907.026667pt;}
.y13_c00496{bottom:907.773333pt;}
.y14_c00496{bottom:908.733333pt;}
.y10_c00496{bottom:909.693333pt;}
.y12_c00496{bottom:909.893333pt;}
.yd_c00496{bottom:924.733333pt;}
.y8_c00496{bottom:925.106667pt;}
.yf_c00496{bottom:925.893333pt;}
.yc_c00496{bottom:926.066667pt;}
.ye_c00496{bottom:926.640000pt;}
.y9_c00496{bottom:927.026667pt;}
.yb_c00496{bottom:927.226667pt;}
.ya_c00496{bottom:927.973333pt;}
.y4_c00496{bottom:941.693333pt;}
.y6_c00496{bottom:942.440000pt;}
.y5_c00496{bottom:943.400000pt;}
.y3_c00496{bottom:944.360000pt;}
.y7_c00496{bottom:944.560000pt;}
.y2_c00496{bottom:976.360000pt;}
.y1_c00496{bottom:978.266667pt;}
.h5_c00496{height:20.466875pt;}
.h1_c00496{height:22.303646pt;}
.h6_c00496{height:27.879557pt;}
.h2_c00496{height:31.618698pt;}
.h3_c00496{height:35.357839pt;}
.h4_c00496{height:39.031380pt;}
.h7_c00496{height:42.285365pt;}
.h9_c00496{height:42.770521pt;}
.h8_c00496{height:47.618698pt;}
.h0_c00496{height:1186.666667pt;}
.w0_c00496{width:782.666667pt;}
.x0_c00496{left:0.000000pt;}
.x3_c00496{left:134.666667pt;}
.x5f_c00496{left:135.626667pt;}
.x12_c00496{left:136.760000pt;}
.x117_c00496{left:137.706667pt;}
.xd7_c00496{left:150.666667pt;}
.xc3_c00496{left:153.333333pt;}
.x84_c00496{left:158.293333pt;}
.x23_c00496{left:159.626667pt;}
.xf2_c00496{left:161.333333pt;}
.x13_c00496{left:162.293333pt;}
.xe1_c00496{left:164.000000pt;}
.x70_c00496{left:165.333333pt;}
.xcb_c00496{left:169.706667pt;}
.x100_c00496{left:170.666667pt;}
.xbd_c00496{left:172.000000pt;}
.x85_c00496{left:173.333333pt;}
.x60_c00496{left:175.040000pt;}
.x10f_c00496{left:176.000000pt;}
.x112_c00496{left:178.666667pt;}
.x78_c00496{left:182.666667pt;}
.x95_c00496{left:184.000000pt;}
.x57_c00496{left:184.960000pt;}
.x40_c00496{left:186.666667pt;}
.xb6_c00496{left:188.000000pt;}
.xa2_c00496{left:189.706667pt;}
.xd8_c00496{left:190.666667pt;}
.xe6_c00496{left:192.000000pt;}
.x2d_c00496{left:193.333333pt;}
.x36_c00496{left:195.040000pt;}
.x24_c00496{left:196.000000pt;}
.x61_c00496{left:199.040000pt;}
.x4_c00496{left:200.000000pt;}
.x14_c00496{left:203.040000pt;}
.xed_c00496{left:204.960000pt;}
.xe9_c00496{left:206.666667pt;}
.xab_c00496{left:208.373333pt;}
.xfc_c00496{left:211.626667pt;}
.x5_c00496{left:213.333333pt;}
.xc8_c00496{left:214.666667pt;}
.x41_c00496{left:219.040000pt;}
.xea_c00496{left:220.960000pt;}
.xb2_c00496{left:222.666667pt;}
.x10a_c00496{left:224.373333pt;}
.x15_c00496{left:225.706667pt;}
.x8c_c00496{left:228.000000pt;}
.x86_c00496{left:229.333333pt;}
.xf3_c00496{left:230.666667pt;}
.x96_c00496{left:232.000000pt;}
.x62_c00496{left:233.333333pt;}
.xb7_c00496{left:236.000000pt;}
.x71_c00496{left:236.960000pt;}
.xc4_c00496{left:240.000000pt;}
.xd9_c00496{left:241.333333pt;}
.xcc_c00496{left:242.293333pt;}
.x42_c00496{left:244.373333pt;}
.x10b_c00496{left:246.666667pt;}
.xb8_c00496{left:248.000000pt;}
.x16_c00496{left:249.333333pt;}
.x58_c00496{left:252.000000pt;}
.xdf_c00496{left:253.333333pt;}
.x25_c00496{left:254.666667pt;}
.x7d_c00496{left:256.000000pt;}
.xcd_c00496{left:258.666667pt;}
.xe7_c00496{left:260.000000pt;}
.xac_c00496{left:261.706667pt;}
.x6_c00496{left:262.666667pt;}
.x17_c00496{left:264.373333pt;}
.xeb_c00496{left:266.666667pt;}
.x6b_c00496{left:268.000000pt;}
.xda_c00496{left:270.293333pt;}
.x79_c00496{left:272.000000pt;}
.x4c_c00496{left:273.333333pt;}
.x63_c00496{left:276.000000pt;}
.x8d_c00496{left:277.333333pt;}
.x26_c00496{left:278.666667pt;}
.xf6_c00496{left:280.000000pt;}
.x97_c00496{left:281.333333pt;}
.xad_c00496{left:283.626667pt;}
.x59_c00496{left:285.706667pt;}
.xc9_c00496{left:286.666667pt;}
.x18_c00496{left:288.000000pt;}
.xfd_c00496{left:290.666667pt;}
.xa3_c00496{left:292.000000pt;}
.x7_c00496{left:293.333333pt;}
.xb3_c00496{left:299.040000pt;}
.xce_c00496{left:301.333333pt;}
.x4d_c00496{left:302.666667pt;}
.x64_c00496{left:304.373333pt;}
.x6c_c00496{left:306.293333pt;}
.x7a_c00496{left:308.000000pt;}
.xee_c00496{left:309.706667pt;}
.x87_c00496{left:310.666667pt;}
.x37_c00496{left:312.000000pt;}
.xd3_c00496{left:313.706667pt;}
.x98_c00496{left:314.666667pt;}
.xcf_c00496{left:316.373333pt;}
.xa4_c00496{left:317.333333pt;}
.xf4_c00496{left:318.666667pt;}
.xae_c00496{left:319.626667pt;}
.x43_c00496{left:321.333333pt;}
.x105_c00496{left:322.666667pt;}
.x9e_c00496{left:323.626667pt;}
.x38_c00496{left:324.960000pt;}
.x8_c00496{left:328.373333pt;}
.x2e_c00496{left:329.706667pt;}
.x10c_c00496{left:332.373333pt;}
.x6d_c00496{left:335.040000pt;}
.x7e_c00496{left:336.373333pt;}
.x44_c00496{left:337.333333pt;}
.x4e_c00496{left:338.293333pt;}
.xc5_c00496{left:341.333333pt;}
.x72_c00496{left:342.666667pt;}
.x19_c00496{left:344.000000pt;}
.x65_c00496{left:345.706667pt;}
.xdb_c00496{left:346.666667pt;}
.x5a_c00496{left:348.373333pt;}
.xf7_c00496{left:349.333333pt;}
.x101_c00496{left:351.040000pt;}
.xd4_c00496{left:352.373333pt;}
.x88_c00496{left:353.706667pt;}
.x4f_c00496{left:356.373333pt;}
.x9f_c00496{left:357.333333pt;}
.x9_c00496{left:359.040000pt;}
.x7f_c00496{left:360.000000pt;}
.x1_c00496{left:361.333333pt;}
.x8e_c00496{left:362.293333pt;}
.x10d_c00496{left:365.706667pt;}
.x1a_c00496{left:366.666667pt;}
.x66_c00496{left:369.333333pt;}
.xe2_c00496{left:371.040000pt;}
.xb9_c00496{left:372.373333pt;}
.x110_c00496{left:373.333333pt;}
.xdc_c00496{left:374.666667pt;}
.xa5_c00496{left:376.373333pt;}
.x99_c00496{left:378.293333pt;}
.x50_c00496{left:380.960000pt;}
.x106_c00496{left:383.040000pt;}
.xd5_c00496{left:384.000000pt;}
.x73_c00496{left:384.960000pt;}
.x7b_c00496{left:386.293333pt;}
.x8f_c00496{left:388.000000pt;}
.x39_c00496{left:392.373333pt;}
.x89_c00496{left:393.333333pt;}
.x9a_c00496{left:395.040000pt;}
.xa_c00496{left:396.373333pt;}
.x113_c00496{left:397.333333pt;}
.x2f_c00496{left:398.666667pt;}
.xf8_c00496{left:400.000000pt;}
.x67_c00496{left:402.666667pt;}
.xba_c00496{left:404.373333pt;}
.x45_c00496{left:405.706667pt;}
.xe8_c00496{left:406.666667pt;}
.xf5_c00496{left:408.000000pt;}
.xdd_c00496{left:408.960000pt;}
.x118_c00496{left:411.040000pt;}
.x10e_c00496{left:412.373333pt;}
.x114_c00496{left:413.706667pt;}
.x1b_c00496{left:414.666667pt;}
.xbe_c00496{left:416.000000pt;}
.xf9_c00496{left:417.706667pt;}
.xb_c00496{left:418.666667pt;}
.x27_c00496{left:420.373333pt;}
.x9b_c00496{left:421.333333pt;}
.x3a_c00496{left:424.000000pt;}
.x107_c00496{left:425.333333pt;}
.x30_c00496{left:426.293333pt;}
.xbb_c00496{left:428.000000pt;}
.x1c_c00496{left:429.333333pt;}
.x90_c00496{left:434.666667pt;}
.x51_c00496{left:436.000000pt;}
.x74_c00496{left:436.960000pt;}
.x8a_c00496{left:439.040000pt;}
.xef_c00496{left:440.960000pt;}
.xfa_c00496{left:442.293333pt;}
.x80_c00496{left:444.960000pt;}
.xd6_c00496{left:448.000000pt;}
.xaf_c00496{left:449.706667pt;}
.x46_c00496{left:450.666667pt;}
.x91_c00496{left:452.000000pt;}
.x1d_c00496{left:453.706667pt;}
.xe0_c00496{left:456.373333pt;}
.x9c_c00496{left:458.293333pt;}
.x81_c00496{left:461.706667pt;}
.x6e_c00496{left:462.666667pt;}
.x5b_c00496{left:463.626667pt;}
.x28_c00496{left:466.293333pt;}
.x52_c00496{left:467.626667pt;}
.xa6_c00496{left:471.626667pt;}
.xc_c00496{left:475.626667pt;}
.x102_c00496{left:476.960000pt;}
.x31_c00496{left:478.666667pt;}
.x3b_c00496{left:480.000000pt;}
.xb0_c00496{left:480.960000pt;}
.xd0_c00496{left:482.666667pt;}
.x53_c00496{left:484.373333pt;}
.x47_c00496{left:486.293333pt;}
.x9d_c00496{left:488.373333pt;}
.xa7_c00496{left:489.333333pt;}
.xd_c00496{left:490.666667pt;}
.x5c_c00496{left:492.373333pt;}
.x103_c00496{left:493.333333pt;}
.x92_c00496{left:494.666667pt;}
.x7c_c00496{left:495.626667pt;}
.xf0_c00496{left:499.040000pt;}
.x29_c00496{left:500.000000pt;}
.x68_c00496{left:502.666667pt;}
.xec_c00496{left:503.626667pt;}
.x48_c00496{left:505.706667pt;}
.x32_c00496{left:508.960000pt;}
.x111_c00496{left:510.666667pt;}
.x3c_c00496{left:512.373333pt;}
.xa8_c00496{left:513.333333pt;}
.xc6_c00496{left:516.000000pt;}
.xe3_c00496{left:517.706667pt;}
.x104_c00496{left:518.666667pt;}
.x1e_c00496{left:519.626667pt;}
.x2a_c00496{left:520.960000pt;}
.x108_c00496{left:522.666667pt;}
.x33_c00496{left:525.706667pt;}
.x82_c00496{left:528.000000pt;}
.xbf_c00496{left:529.706667pt;}
.xe_c00496{left:530.666667pt;}
.xbc_c00496{left:532.960000pt;}
.x1f_c00496{left:534.666667pt;}
.xa0_c00496{left:536.000000pt;}
.x93_c00496{left:536.960000pt;}
.xd1_c00496{left:540.000000pt;}
.x8b_c00496{left:541.333333pt;}
.xfb_c00496{left:543.626667pt;}
.xc7_c00496{left:545.706667pt;}
.x54_c00496{left:546.666667pt;}
.xb4_c00496{left:548.960000pt;}
.x2b_c00496{left:550.293333pt;}
.xf1_c00496{left:552.373333pt;}
.x5d_c00496{left:554.293333pt;}
.xfe_c00496{left:556.000000pt;}
.x20_c00496{left:557.333333pt;}
.xc0_c00496{left:560.000000pt;}
.x6f_c00496{left:560.960000pt;}
.x75_c00496{left:562.666667pt;}
.xf_c00496{left:564.000000pt;}
.x109_c00496{left:566.666667pt;}
.x49_c00496{left:569.333333pt;}
.x55_c00496{left:571.040000pt;}
.x10_c00496{left:573.706667pt;}
.x3d_c00496{left:576.000000pt;}
.x76_c00496{left:577.706667pt;}
.xa9_c00496{left:578.666667pt;}
.x69_c00496{left:580.960000pt;}
.xca_c00496{left:582.666667pt;}
.xde_c00496{left:583.626667pt;}
.xff_c00496{left:585.333333pt;}
.xe4_c00496{left:586.666667pt;}
.x115_c00496{left:587.626667pt;}
.x34_c00496{left:589.333333pt;}
.x94_c00496{left:590.666667pt;}
.xc1_c00496{left:592.373333pt;}
.x21_c00496{left:594.293333pt;}
.x83_c00496{left:596.373333pt;}
.x5e_c00496{left:597.333333pt;}
.x2c_c00496{left:598.666667pt;}
.x4a_c00496{left:599.626667pt;}
.x77_c00496{left:600.960000pt;}
.x56_c00496{left:605.706667pt;}
.xb1_c00496{left:608.000000pt;}
.x3e_c00496{left:612.000000pt;}
.xaa_c00496{left:612.960000pt;}
.x116_c00496{left:614.666667pt;}
.x11_c00496{left:615.626667pt;}
.xc2_c00496{left:616.960000pt;}
.x6a_c00496{left:619.626667pt;}
.x22_c00496{left:621.333333pt;}
.x2_c00496{left:625.333333pt;}
.xb5_c00496{left:627.040000pt;}
.x3f_c00496{left:629.706667pt;}
.xa1_c00496{left:631.040000pt;}
.xe5_c00496{left:632.000000pt;}
.x35_c00496{left:636.960000pt;}
.x4b_c00496{left:638.666667pt;}
.xd2_c00496{left:640.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_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_49a66622af0a94921e7c0d63.woff2')format("woff");}.ff1_c00497{font-family:ff1_c00497;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mab_c00497{transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);}
.m9b_c00497{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.mbf_c00497{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.mcf_c00497{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m86_c00497{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m60_c00497{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m7f_c00497{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.mb6_c00497{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m67_c00497{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.m80_c00497{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.mbc_c00497{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m5d_c00497{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m66_c00497{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m69_c00497{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m9d_c00497{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.mb5_c00497{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m45_c00497{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.mec_c00497{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.m7c_c00497{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m0_c00497{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.mde_c00497{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mee_c00497{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m2e_c00497{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.mae_c00497{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m81_c00497{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.maa_c00497{transform:matrix(0.398859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398859,0.000000,0.000000,0.250000,0,0);}
.mca_c00497{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m6b_c00497{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.ma8_c00497{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m9a_c00497{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.md8_c00497{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m64_c00497{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m12_c00497{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m26_c00497{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m7_c00497{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m92_c00497{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.me6_c00497{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m1e_c00497{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m84_c00497{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m83_c00497{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m89_c00497{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.mb9_c00497{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.m7a_c00497{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m14_c00497{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.ma9_c00497{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.md5_c00497{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.mc4_c00497{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m76_c00497{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m4d_c00497{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m96_c00497{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m2d_c00497{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.mb2_c00497{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.mc2_c00497{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m97_c00497{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m54_c00497{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m6e_c00497{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m1c_c00497{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.me9_c00497{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.mcb_c00497{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m57_c00497{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m93_c00497{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.md3_c00497{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.med_c00497{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m95_c00497{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m78_c00497{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.mac_c00497{transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);}
.m5b_c00497{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.md7_c00497{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.mbb_c00497{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m8d_c00497{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m2_c00497{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.ma3_c00497{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.mbe_c00497{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.meb_c00497{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m48_c00497{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m61_c00497{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m19_c00497{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.mb8_c00497{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m82_c00497{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m3b_c00497{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m53_c00497{transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);}
.ma6_c00497{transform:matrix(0.454755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454755,0.000000,0.000000,0.250000,0,0);}
.mb3_c00497{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.mdb_c00497{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.m8b_c00497{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.me7_c00497{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.me3_c00497{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m6a_c00497{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.md_c00497{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m1b_c00497{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m18_c00497{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m21_c00497{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m75_c00497{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.mc7_c00497{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m74_c00497{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m13_c00497{transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);}
.mba_c00497{transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);}
.m79_c00497{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m10_c00497{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m4_c00497{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m70_c00497{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m5f_c00497{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m37_c00497{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.mc_c00497{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);}
.m29_c00497{transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503247,0.000000,0.000000,0.250000,0,0);}
.m31_c00497{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m7d_c00497{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m6_c00497{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m2f_c00497{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m41_c00497{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m94_c00497{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m50_c00497{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m39_c00497{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m8c_c00497{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m17_c00497{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m25_c00497{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m55_c00497{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m42_c00497{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.mb_c00497{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m5c_c00497{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.ma0_c00497{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m3c_c00497{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.m59_c00497{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m99_c00497{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.mb1_c00497{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m24_c00497{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.ma2_c00497{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m52_c00497{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m65_c00497{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m6f_c00497{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m9_c00497{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.mc8_c00497{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m5a_c00497{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.md6_c00497{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.m46_c00497{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m8_c00497{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.mb4_c00497{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.mdf_c00497{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.mbd_c00497{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m91_c00497{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.me_c00497{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m16_c00497{transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);}
.m28_c00497{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m3f_c00497{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m4f_c00497{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m87_c00497{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m6c_c00497{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mdc_c00497{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m56_c00497{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m90_c00497{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.me0_c00497{transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);}
.m8e_c00497{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mea_c00497{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.mcc_c00497{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m9c_c00497{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m38_c00497{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m62_c00497{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m3d_c00497{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m58_c00497{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.mf_c00497{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mc5_c00497{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.md0_c00497{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m47_c00497{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m2b_c00497{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m1a_c00497{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.me2_c00497{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m40_c00497{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m36_c00497{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.ma7_c00497{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m1d_c00497{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m32_c00497{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m22_c00497{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m35_c00497{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.mcd_c00497{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m51_c00497{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.m73_c00497{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.ma_c00497{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m3a_c00497{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m98_c00497{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m3_c00497{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m4e_c00497{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m71_c00497{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.mb0_c00497{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m8f_c00497{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.md1_c00497{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m20_c00497{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.me5_c00497{transform:matrix(0.587059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587059,0.000000,0.000000,0.250000,0,0);}
.ma4_c00497{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.md2_c00497{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m63_c00497{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m30_c00497{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m49_c00497{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.me8_c00497{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.m8a_c00497{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m27_c00497{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);}
.md9_c00497{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.m6d_c00497{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.maf_c00497{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.mdd_c00497{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.mc3_c00497{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.m15_c00497{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m43_c00497{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.me4_c00497{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.mce_c00497{transform:matrix(0.616701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616701,0.000000,0.000000,0.250000,0,0);}
.mb7_c00497{transform:matrix(0.617059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617059,0.000000,0.000000,0.250000,0,0);}
.m1_c00497{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_c00497{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_c00497{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m85_c00497{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.m88_c00497{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m5_c00497{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m23_c00497{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m9f_c00497{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m2c_c00497{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mc0_c00497{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m2a_c00497{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.mc1_c00497{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m5e_c00497{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.md4_c00497{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m44_c00497{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.mda_c00497{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m4a_c00497{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.me1_c00497{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m72_c00497{transform:matrix(0.741186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741186,0.000000,0.000000,0.250000,0,0);}
.m11_c00497{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.ma5_c00497{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m4b_c00497{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m77_c00497{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m7b_c00497{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m68_c00497{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m4c_c00497{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.mc9_c00497{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m7e_c00497{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.mc6_c00497{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m34_c00497{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.m1f_c00497{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.m9e_c00497{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.mad_c00497{transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);}
.ma1_c00497{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,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;}
}
.ws1_c00497{word-spacing:-6.805632px;}
.ws0_c00497{word-spacing:-5.390467px;}
.ws2_c00497{word-spacing:0.000000px;}
.fc0_c00497{color:transparent;}
.fs6_c00497{font-size:3.420000px;}
.fs8_c00497{font-size:11.880000px;}
.fs5_c00497{font-size:18.720000px;}
.fs1_c00497{font-size:20.400000px;}
.fs4_c00497{font-size:25.500000px;}
.fs3_c00497{font-size:28.920000px;}
.fs2_c00497{font-size:32.340000px;}
.fs0_c00497{font-size:35.700000px;}
.fs7_c00497{font-size:39.120000px;}
.y0_c00497{bottom:0.000000px;}
.yd6_c00497{bottom:248.745000px;}
.yd3_c00497{bottom:250.245000px;}
.yd2_c00497{bottom:250.905000px;}
.yd5_c00497{bottom:251.970000px;}
.yd4_c00497{bottom:252.405000px;}
.ycf_c00497{bottom:269.745000px;}
.yd0_c00497{bottom:271.470000px;}
.yd1_c00497{bottom:271.905000px;}
.yce_c00497{bottom:286.905000px;}
.yca_c00497{bottom:287.970000px;}
.ycc_c00497{bottom:289.245000px;}
.yc8_c00497{bottom:290.130000px;}
.ycd_c00497{bottom:290.325000px;}
.yc9_c00497{bottom:290.970000px;}
.ycb_c00497{bottom:291.405000px;}
.yc7_c00497{bottom:308.745000px;}
.yc2_c00497{bottom:308.970000px;}
.yc0_c00497{bottom:309.420000px;}
.yc5_c00497{bottom:309.825000px;}
.yc6_c00497{bottom:310.050000px;}
.yc1_c00497{bottom:310.905000px;}
.yc3_c00497{bottom:311.130000px;}
.yc4_c00497{bottom:312.405000px;}
.yba_c00497{bottom:328.245000px;}
.ybe_c00497{bottom:329.745000px;}
.ybd_c00497{bottom:330.405000px;}
.ybc_c00497{bottom:330.630000px;}
.ybb_c00497{bottom:331.470000px;}
.ybf_c00497{bottom:331.905000px;}
.yb6_c00497{bottom:347.745000px;}
.yb7_c00497{bottom:349.245000px;}
.yb9_c00497{bottom:350.970000px;}
.yb8_c00497{bottom:351.405000px;}
.yb4_c00497{bottom:368.745000px;}
.yb2_c00497{bottom:369.405000px;}
.yb5_c00497{bottom:369.630000px;}
.yb3_c00497{bottom:370.905000px;}
.yb0_c00497{bottom:385.905000px;}
.yb1_c00497{bottom:387.405000px;}
.yad_c00497{bottom:388.245000px;}
.yaf_c00497{bottom:389.130000px;}
.yae_c00497{bottom:390.405000px;}
.yac_c00497{bottom:391.470000px;}
.ya9_c00497{bottom:406.905000px;}
.ya7_c00497{bottom:407.745000px;}
.yaa_c00497{bottom:407.970000px;}
.ya8_c00497{bottom:409.905000px;}
.yab_c00497{bottom:410.130000px;}
.ya4_c00497{bottom:427.245000px;}
.ya3_c00497{bottom:428.745000px;}
.ya2_c00497{bottom:429.405000px;}
.ya5_c00497{bottom:429.630000px;}
.ya6_c00497{bottom:430.470000px;}
.y9c_c00497{bottom:446.745000px;}
.y9b_c00497{bottom:447.405000px;}
.y9a_c00497{bottom:447.825000px;}
.y9d_c00497{bottom:448.245000px;}
.y9f_c00497{bottom:448.905000px;}
.ya1_c00497{bottom:449.130000px;}
.ya0_c00497{bottom:449.970000px;}
.y9e_c00497{bottom:450.405000px;}
.y97_c00497{bottom:467.745000px;}
.y99_c00497{bottom:468.405000px;}
.y98_c00497{bottom:469.470000px;}
.y96_c00497{bottom:469.905000px;}
.y95_c00497{bottom:485.970000px;}
.y94_c00497{bottom:486.405000px;}
.y92_c00497{bottom:487.245000px;}
.y91_c00497{bottom:489.405000px;}
.y93_c00497{bottom:490.470000px;}
.y8e_c00497{bottom:506.745000px;}
.y90_c00497{bottom:507.420000px;}
.y8f_c00497{bottom:514.275000px;}
.y8d_c00497{bottom:523.905000px;}
.y8c_c00497{bottom:526.245000px;}
.y89_c00497{bottom:526.470000px;}
.y8b_c00497{bottom:526.680000px;}
.y88_c00497{bottom:527.130000px;}
.y87_c00497{bottom:528.405000px;}
.y8a_c00497{bottom:528.630000px;}
.y85_c00497{bottom:544.905000px;}
.y86_c00497{bottom:545.745000px;}
.y83_c00497{bottom:546.405000px;}
.y80_c00497{bottom:547.905000px;}
.y81_c00497{bottom:547.920000px;}
.y84_c00497{bottom:548.130000px;}
.y82_c00497{bottom:548.970000px;}
.y7f_c00497{bottom:566.550000px;}
.y7c_c00497{bottom:566.745000px;}
.y7b_c00497{bottom:567.405000px;}
.y7e_c00497{bottom:567.630000px;}
.y7d_c00497{bottom:568.470000px;}
.y7a_c00497{bottom:583.905000px;}
.y78_c00497{bottom:584.745000px;}
.y77_c00497{bottom:584.970000px;}
.y79_c00497{bottom:586.245000px;}
.y76_c00497{bottom:588.405000px;}
.y74_c00497{bottom:605.745000px;}
.y72_c00497{bottom:606.405000px;}
.y75_c00497{bottom:607.470000px;}
.y73_c00497{bottom:607.905000px;}
.y6f_c00497{bottom:625.245000px;}
.y6e_c00497{bottom:626.130000px;}
.y70_c00497{bottom:627.405000px;}
.y71_c00497{bottom:628.470000px;}
.y6d_c00497{bottom:644.745000px;}
.y6b_c00497{bottom:646.470000px;}
.y6a_c00497{bottom:646.905000px;}
.y6c_c00497{bottom:647.130000px;}
.y69_c00497{bottom:647.970000px;}
.y68_c00497{bottom:664.245000px;}
.y66_c00497{bottom:665.325000px;}
.y65_c00497{bottom:666.405000px;}
.y67_c00497{bottom:666.630000px;}
.y60_c00497{bottom:682.905000px;}
.y61_c00497{bottom:683.325000px;}
.y5f_c00497{bottom:683.745000px;}
.y62_c00497{bottom:685.050000px;}
.y63_c00497{bottom:685.905000px;}
.y64_c00497{bottom:686.970000px;}
.y5d_c00497{bottom:703.245000px;}
.y5e_c00497{bottom:704.745000px;}
.y5a_c00497{bottom:705.405000px;}
.y5b_c00497{bottom:705.630000px;}
.y5c_c00497{bottom:706.905000px;}
.y57_c00497{bottom:721.905000px;}
.y59_c00497{bottom:722.745000px;}
.y54_c00497{bottom:724.905000px;}
.y56_c00497{bottom:725.130000px;}
.y55_c00497{bottom:725.970000px;}
.y58_c00497{bottom:726.405000px;}
.y50_c00497{bottom:743.745000px;}
.y51_c00497{bottom:744.630000px;}
.y53_c00497{bottom:744.825000px;}
.y52_c00497{bottom:745.905000px;}
.y4e_c00497{bottom:763.245000px;}
.y4f_c00497{bottom:764.130000px;}
.y4d_c00497{bottom:765.405000px;}
.y4b_c00497{bottom:784.470000px;}
.y4a_c00497{bottom:784.905000px;}
.y4c_c00497{bottom:785.130000px;}
.y49_c00497{bottom:802.245000px;}
.y48_c00497{bottom:803.325000px;}
.y46_c00497{bottom:804.405000px;}
.y47_c00497{bottom:804.630000px;}
.y45_c00497{bottom:821.745000px;}
.y44_c00497{bottom:823.245000px;}
.y41_c00497{bottom:823.905000px;}
.y42_c00497{bottom:824.130000px;}
.y43_c00497{bottom:825.405000px;}
.y3d_c00497{bottom:840.405000px;}
.y3b_c00497{bottom:841.245000px;}
.y3e_c00497{bottom:842.745000px;}
.y3c_c00497{bottom:843.405000px;}
.y3f_c00497{bottom:843.630000px;}
.y40_c00497{bottom:844.905000px;}
.y3a_c00497{bottom:859.905000px;}
.y38_c00497{bottom:862.245000px;}
.y36_c00497{bottom:862.905000px;}
.y39_c00497{bottom:863.130000px;}
.y37_c00497{bottom:864.405000px;}
.y33_c00497{bottom:879.405000px;}
.y34_c00497{bottom:881.325000px;}
.y35_c00497{bottom:881.745000px;}
.y31_c00497{bottom:882.405000px;}
.y32_c00497{bottom:883.905000px;}
.y2f_c00497{bottom:901.245000px;}
.y2e_c00497{bottom:902.130000px;}
.y2d_c00497{bottom:902.970000px;}
.y30_c00497{bottom:903.405000px;}
.y2c_c00497{bottom:919.470000px;}
.y29_c00497{bottom:920.745000px;}
.y2a_c00497{bottom:921.825000px;}
.y27_c00497{bottom:922.905000px;}
.y28_c00497{bottom:923.130000px;}
.y2b_c00497{bottom:923.970000px;}
.y25_c00497{bottom:939.825000px;}
.y23_c00497{bottom:940.905000px;}
.y24_c00497{bottom:942.405000px;}
.y26_c00497{bottom:943.470000px;}
.y22_c00497{bottom:959.745000px;}
.y20_c00497{bottom:961.905000px;}
.y21_c00497{bottom:962.130000px;}
.y1d_c00497{bottom:979.245000px;}
.y1e_c00497{bottom:980.745000px;}
.y1c_c00497{bottom:981.405000px;}
.y1f_c00497{bottom:982.905000px;}
.y16_c00497{bottom:997.905000px;}
.y17_c00497{bottom:998.745000px;}
.y1b_c00497{bottom:1000.905000px;}
.y1a_c00497{bottom:1001.325000px;}
.y18_c00497{bottom:1001.970000px;}
.y19_c00497{bottom:1002.405000px;}
.yf_c00497{bottom:1018.245000px;}
.y12_c00497{bottom:1018.470000px;}
.y13_c00497{bottom:1019.745000px;}
.y10_c00497{bottom:1020.405000px;}
.y15_c00497{bottom:1020.630000px;}
.y11_c00497{bottom:1021.470000px;}
.y14_c00497{bottom:1021.905000px;}
.ya_c00497{bottom:1036.905000px;}
.yc_c00497{bottom:1037.970000px;}
.y9_c00497{bottom:1039.245000px;}
.y7_c00497{bottom:1039.905000px;}
.y8_c00497{bottom:1040.130000px;}
.ye_c00497{bottom:1040.325000px;}
.yd_c00497{bottom:1041.405000px;}
.yb_c00497{bottom:1042.470000px;}
.y6_c00497{bottom:1058.745000px;}
.y3_c00497{bottom:1059.825000px;}
.y5_c00497{bottom:1060.470000px;}
.y4_c00497{bottom:1060.905000px;}
.y1_c00497{bottom:1097.745000px;}
.y2_c00497{bottom:1099.050000px;}
.h7_c00497{height:4.206533px;}
.h9_c00497{height:14.612168px;}
.h6_c00497{height:23.025234px;}
.h2_c00497{height:25.091602px;}
.h5_c00497{height:31.364502px;}
.h4_c00497{height:35.571035px;}
.h3_c00497{height:39.777568px;}
.h1_c00497{height:43.910303px;}
.h8_c00497{height:48.116836px;}
.h0_c00497{height:1335.000000px;}
.w0_c00497{width:880.500000px;}
.x0_c00497{left:0.000000px;}
.x1_c00497{left:151.500000px;}
.x12_c00497{left:153.000000px;}
.x11c_c00497{left:166.500000px;}
.xe8_c00497{left:168.000000px;}
.x3c_c00497{left:169.500000px;}
.x35_c00497{left:171.420000px;}
.xd7_c00497{left:172.500000px;}
.x5c_c00497{left:175.920000px;}
.x47_c00497{left:177.420000px;}
.x8e_c00497{left:178.500000px;}
.x73_c00497{left:180.000000px;}
.x13_c00497{left:181.500000px;}
.xbe_c00497{left:183.420000px;}
.x68_c00497{left:184.920000px;}
.xe7_c00497{left:186.000000px;}
.xc4_c00497{left:189.000000px;}
.xb4_c00497{left:190.080000px;}
.xd8_c00497{left:192.000000px;}
.x14_c00497{left:193.920000px;}
.xe1_c00497{left:195.000000px;}
.x1f_c00497{left:198.000000px;}
.xdc_c00497{left:199.920000px;}
.x51_c00497{left:201.000000px;}
.xe9_c00497{left:202.500000px;}
.x109_c00497{left:204.000000px;}
.x48_c00497{left:205.920000px;}
.x3_c00497{left:212.580000px;}
.x5d_c00497{left:214.500000px;}
.x85_c00497{left:217.500000px;}
.xfe_c00497{left:219.420000px;}
.x2d_c00497{left:223.500000px;}
.x8f_c00497{left:225.000000px;}
.xc9_c00497{left:226.500000px;}
.x74_c00497{left:228.000000px;}
.xa2_c00497{left:229.500000px;}
.x15_c00497{left:230.580000px;}
.x86_c00497{left:234.420000px;}
.xbf_c00497{left:235.920000px;}
.xd0_c00497{left:237.000000px;}
.x36_c00497{left:238.500000px;}
.x20_c00497{left:240.000000px;}
.x4_c00497{left:241.920000px;}
.x3d_c00497{left:243.000000px;}
.xa3_c00497{left:249.420000px;}
.x69_c00497{left:252.000000px;}
.xd9_c00497{left:253.920000px;}
.x52_c00497{left:255.000000px;}
.xe2_c00497{left:256.500000px;}
.x7b_c00497{left:257.580000px;}
.x96_c00497{left:259.500000px;}
.xf6_c00497{left:260.775000px;}
.xc0_c00497{left:262.500000px;}
.x3e_c00497{left:264.000000px;}
.x49_c00497{left:265.500000px;}
.x21_c00497{left:266.580000px;}
.xff_c00497{left:268.500000px;}
.x6a_c00497{left:270.420000px;}
.x103_c00497{left:271.500000px;}
.x90_c00497{left:273.000000px;}
.x53_c00497{left:274.920000px;}
.x5_c00497{left:276.000000px;}
.xda_c00497{left:279.000000px;}
.xac_c00497{left:280.500000px;}
.xc5_c00497{left:281.580000px;}
.x10e_c00497{left:283.080000px;}
.xfa_c00497{left:285.000000px;}
.x104_c00497{left:286.920000px;}
.xb5_c00497{left:288.420000px;}
.x5e_c00497{left:289.920000px;}
.x3f_c00497{left:291.000000px;}
.x111_c00497{left:292.920000px;}
.xad_c00497{left:294.420000px;}
.xb6_c00497{left:295.500000px;}
.xca_c00497{left:297.420000px;}
.x6b_c00497{left:298.500000px;}
.x16_c00497{left:301.500000px;}
.x87_c00497{left:303.000000px;}
.x6_c00497{left:304.500000px;}
.x37_c00497{left:306.420000px;}
.x118_c00497{left:309.000000px;}
.x7c_c00497{left:310.080000px;}
.xc1_c00497{left:313.080000px;}
.x54_c00497{left:315.000000px;}
.x11d_c00497{left:316.080000px;}
.x5f_c00497{left:318.420000px;}
.x91_c00497{left:319.500000px;}
.xef_c00497{left:320.580000px;}
.xae_c00497{left:322.920000px;}
.xea_c00497{left:324.000000px;}
.xe3_c00497{left:330.000000px;}
.x75_c00497{left:331.500000px;}
.x38_c00497{left:332.580000px;}
.xd1_c00497{left:334.500000px;}
.x2e_c00497{left:336.420000px;}
.x22_c00497{left:337.500000px;}
.x40_c00497{left:339.420000px;}
.xc2_c00497{left:342.420000px;}
.x88_c00497{left:343.500000px;}
.x7_c00497{left:345.000000px;}
.x6c_c00497{left:346.500000px;}
.xcb_c00497{left:347.580000px;}
.x7d_c00497{left:349.500000px;}
.x10a_c00497{left:352.920000px;}
.xb7_c00497{left:354.000000px;}
.x100_c00497{left:355.080000px;}
.xde_c00497{left:356.580000px;}
.x92_c00497{left:358.080000px;}
.xf0_c00497{left:361.080000px;}
.x76_c00497{left:364.500000px;}
.xa4_c00497{left:366.420000px;}
.x60_c00497{left:369.000000px;}
.xb8_c00497{left:370.500000px;}
.x10f_c00497{left:371.580000px;}
.x39_c00497{left:373.500000px;}
.x116_c00497{left:375.000000px;}
.x101_c00497{left:376.080000px;}
.x41_c00497{left:378.000000px;}
.xaf_c00497{left:379.500000px;}
.x7e_c00497{left:380.580000px;}
.x105_c00497{left:382.920000px;}
.x17_c00497{left:384.000000px;}
.xe4_c00497{left:385.500000px;}
.xd2_c00497{left:387.000000px;}
.x55_c00497{left:390.000000px;}
.x97_c00497{left:393.000000px;}
.x6d_c00497{left:394.080000px;}
.x4a_c00497{left:396.420000px;}
.x2f_c00497{left:397.500000px;}
.x89_c00497{left:398.580000px;}
.x8_c00497{left:400.920000px;}
.x114_c00497{left:402.000000px;}
.x119_c00497{left:403.500000px;}
.x23_c00497{left:405.000000px;}
.xdd_c00497{left:406.920000px;}
.x2_c00497{left:408.000000px;}
.xc3_c00497{left:409.500000px;}
.x18_c00497{left:410.580000px;}
.x6e_c00497{left:412.920000px;}
.xeb_c00497{left:414.420000px;}
.xb9_c00497{left:418.500000px;}
.xf1_c00497{left:419.580000px;}
.x24_c00497{left:421.500000px;}
.x3a_c00497{left:423.420000px;}
.x61_c00497{left:424.500000px;}
.x106_c00497{left:425.580000px;}
.x9_c00497{left:427.500000px;}
.x7f_c00497{left:432.000000px;}
.xa5_c00497{left:433.080000px;}
.xb0_c00497{left:434.580000px;}
.x10b_c00497{left:436.500000px;}
.x102_c00497{left:437.775000px;}
.x42_c00497{left:439.500000px;}
.x77_c00497{left:444.000000px;}
.x98_c00497{left:446.580000px;}
.x3b_c00497{left:450.000000px;}
.xf2_c00497{left:451.500000px;}
.xcc_c00497{left:453.000000px;}
.xb1_c00497{left:454.920000px;}
.x56_c00497{left:457.920000px;}
.x62_c00497{left:460.500000px;}
.xa6_c00497{left:463.500000px;}
.xa_c00497{left:464.580000px;}
.xba_c00497{left:466.500000px;}
.x4b_c00497{left:468.000000px;}
.xfb_c00497{left:471.000000px;}
.x11e_c00497{left:472.080000px;}
.xf7_c00497{left:474.000000px;}
.x25_c00497{left:475.080000px;}
.x63_c00497{left:477.000000px;}
.x99_c00497{left:478.500000px;}
.x19_c00497{left:480.000000px;}
.x6f_c00497{left:481.500000px;}
.xb_c00497{left:483.420000px;}
.x30_c00497{left:487.500000px;}
.xa7_c00497{left:488.580000px;}
.x10c_c00497{left:490.500000px;}
.x43_c00497{left:491.580000px;}
.xec_c00497{left:493.500000px;}
.x57_c00497{left:496.500000px;}
.x70_c00497{left:498.420000px;}
.x4c_c00497{left:499.500000px;}
.x78_c00497{left:503.580000px;}
.x26_c00497{left:505.500000px;}
.x93_c00497{left:507.420000px;}
.xc_c00497{left:509.580000px;}
.xf3_c00497{left:513.420000px;}
.x80_c00497{left:514.920000px;}
.x58_c00497{left:516.000000px;}
.x64_c00497{left:517.500000px;}
.xdf_c00497{left:519.000000px;}
.x9a_c00497{left:523.920000px;}
.xb2_c00497{left:525.000000px;}
.xd3_c00497{left:529.500000px;}
.xa8_c00497{left:532.920000px;}
.xc6_c00497{left:534.420000px;}
.x8a_c00497{left:535.500000px;}
.x44_c00497{left:537.000000px;}
.xd_c00497{left:538.080000px;}
.xed_c00497{left:540.000000px;}
.x94_c00497{left:541.500000px;}
.xf8_c00497{left:542.580000px;}
.x9e_c00497{left:545.580000px;}
.x4d_c00497{left:547.080000px;}
.xcd_c00497{left:550.920000px;}
.xc7_c00497{left:553.500000px;}
.x71_c00497{left:555.000000px;}
.xe_c00497{left:556.920000px;}
.xfc_c00497{left:558.000000px;}
.x27_c00497{left:560.580000px;}
.x81_c00497{left:564.000000px;}
.x1a_c00497{left:565.500000px;}
.x4e_c00497{left:567.000000px;}
.x59_c00497{left:568.080000px;}
.xd4_c00497{left:569.580000px;}
.xa9_c00497{left:571.500000px;}
.xe0_c00497{left:573.000000px;}
.x107_c00497{left:574.500000px;}
.xce_c00497{left:577.920000px;}
.x1b_c00497{left:580.920000px;}
.xfd_c00497{left:582.000000px;}
.xf_c00497{left:583.500000px;}
.x11a_c00497{left:584.580000px;}
.x8b_c00497{left:586.500000px;}
.x79_c00497{left:588.000000px;}
.x115_c00497{left:589.920000px;}
.x9b_c00497{left:591.000000px;}
.x4f_c00497{left:593.580000px;}
.x9f_c00497{left:595.920000px;}
.x31_c00497{left:597.000000px;}
.x5a_c00497{left:598.920000px;}
.x110_c00497{left:600.000000px;}
.xf4_c00497{left:603.000000px;}
.xe5_c00497{left:604.080000px;}
.x28_c00497{left:606.000000px;}
.xdb_c00497{left:607.500000px;}
.xee_c00497{left:609.000000px;}
.x9c_c00497{left:610.920000px;}
.x45_c00497{left:612.000000px;}
.x82_c00497{left:613.500000px;}
.xd5_c00497{left:615.000000px;}
.xaa_c00497{left:619.080000px;}
.x1c_c00497{left:621.000000px;}
.x112_c00497{left:622.275000px;}
.x29_c00497{left:625.920000px;}
.x65_c00497{left:627.420000px;}
.xc8_c00497{left:628.920000px;}
.x11b_c00497{left:630.000000px;}
.xf9_c00497{left:633.420000px;}
.x10_c00497{left:634.500000px;}
.x7a_c00497{left:636.000000px;}
.x9d_c00497{left:637.500000px;}
.x72_c00497{left:640.080000px;}
.xbb_c00497{left:643.920000px;}
.x10d_c00497{left:646.500000px;}
.x83_c00497{left:649.500000px;}
.x2a_c00497{left:650.580000px;}
.xa0_c00497{left:652.500000px;}
.x50_c00497{left:654.000000px;}
.x8c_c00497{left:655.080000px;}
.x32_c00497{left:656.580000px;}
.xf5_c00497{left:658.080000px;}
.x1d_c00497{left:661.080000px;}
.x117_c00497{left:663.000000px;}
.x66_c00497{left:664.500000px;}
.x11_c00497{left:666.000000px;}
.xb3_c00497{left:667.500000px;}
.x5b_c00497{left:670.500000px;}
.xbc_c00497{left:672.000000px;}
.x95_c00497{left:673.080000px;}
.x33_c00497{left:675.420000px;}
.xab_c00497{left:681.000000px;}
.x113_c00497{left:682.500000px;}
.x67_c00497{left:683.580000px;}
.x8d_c00497{left:685.500000px;}
.x2b_c00497{left:688.500000px;}
.x46_c00497{left:689.580000px;}
.x1e_c00497{left:691.920000px;}
.xd6_c00497{left:693.420000px;}
.xe6_c00497{left:694.500000px;}
.x108_c00497{left:695.580000px;}
.xcf_c00497{left:697.920000px;}
.x34_c00497{left:700.080000px;}
.x2c_c00497{left:708.420000px;}
.xa1_c00497{left:709.500000px;}
.x84_c00497{left:717.000000px;}
.xbd_c00497{left:720.000000px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.ls0_c00497{letter-spacing:0.000000pt;}
.ws1_c00497{word-spacing:-6.049450pt;}
.ws0_c00497{word-spacing:-4.791527pt;}
.ws2_c00497{word-spacing:0.000000pt;}
.fs6_c00497{font-size:3.040000pt;}
.fs8_c00497{font-size:10.560000pt;}
.fs5_c00497{font-size:16.640000pt;}
.fs1_c00497{font-size:18.133333pt;}
.fs4_c00497{font-size:22.666667pt;}
.fs3_c00497{font-size:25.706667pt;}
.fs2_c00497{font-size:28.746667pt;}
.fs0_c00497{font-size:31.733333pt;}
.fs7_c00497{font-size:34.773333pt;}
.y0_c00497{bottom:0.000000pt;}
.yd6_c00497{bottom:221.106667pt;}
.yd3_c00497{bottom:222.440000pt;}
.yd2_c00497{bottom:223.026667pt;}
.yd5_c00497{bottom:223.973333pt;}
.yd4_c00497{bottom:224.360000pt;}
.ycf_c00497{bottom:239.773333pt;}
.yd0_c00497{bottom:241.306667pt;}
.yd1_c00497{bottom:241.693333pt;}
.yce_c00497{bottom:255.026667pt;}
.yca_c00497{bottom:255.973333pt;}
.ycc_c00497{bottom:257.106667pt;}
.yc8_c00497{bottom:257.893333pt;}
.ycd_c00497{bottom:258.066667pt;}
.yc9_c00497{bottom:258.640000pt;}
.ycb_c00497{bottom:259.026667pt;}
.yc7_c00497{bottom:274.440000pt;}
.yc2_c00497{bottom:274.640000pt;}
.yc0_c00497{bottom:275.040000pt;}
.yc5_c00497{bottom:275.400000pt;}
.yc6_c00497{bottom:275.600000pt;}
.yc1_c00497{bottom:276.360000pt;}
.yc3_c00497{bottom:276.560000pt;}
.yc4_c00497{bottom:277.693333pt;}
.yba_c00497{bottom:291.773333pt;}
.ybe_c00497{bottom:293.106667pt;}
.ybd_c00497{bottom:293.693333pt;}
.ybc_c00497{bottom:293.893333pt;}
.ybb_c00497{bottom:294.640000pt;}
.ybf_c00497{bottom:295.026667pt;}
.yb6_c00497{bottom:309.106667pt;}
.yb7_c00497{bottom:310.440000pt;}
.yb9_c00497{bottom:311.973333pt;}
.yb8_c00497{bottom:312.360000pt;}
.yb4_c00497{bottom:327.773333pt;}
.yb2_c00497{bottom:328.360000pt;}
.yb5_c00497{bottom:328.560000pt;}
.yb3_c00497{bottom:329.693333pt;}
.yb0_c00497{bottom:343.026667pt;}
.yb1_c00497{bottom:344.360000pt;}
.yad_c00497{bottom:345.106667pt;}
.yaf_c00497{bottom:345.893333pt;}
.yae_c00497{bottom:347.026667pt;}
.yac_c00497{bottom:347.973333pt;}
.ya9_c00497{bottom:361.693333pt;}
.ya7_c00497{bottom:362.440000pt;}
.yaa_c00497{bottom:362.640000pt;}
.ya8_c00497{bottom:364.360000pt;}
.yab_c00497{bottom:364.560000pt;}
.ya4_c00497{bottom:379.773333pt;}
.ya3_c00497{bottom:381.106667pt;}
.ya2_c00497{bottom:381.693333pt;}
.ya5_c00497{bottom:381.893333pt;}
.ya6_c00497{bottom:382.640000pt;}
.y9c_c00497{bottom:397.106667pt;}
.y9b_c00497{bottom:397.693333pt;}
.y9a_c00497{bottom:398.066667pt;}
.y9d_c00497{bottom:398.440000pt;}
.y9f_c00497{bottom:399.026667pt;}
.ya1_c00497{bottom:399.226667pt;}
.ya0_c00497{bottom:399.973333pt;}
.y9e_c00497{bottom:400.360000pt;}
.y97_c00497{bottom:415.773333pt;}
.y99_c00497{bottom:416.360000pt;}
.y98_c00497{bottom:417.306667pt;}
.y96_c00497{bottom:417.693333pt;}
.y95_c00497{bottom:431.973333pt;}
.y94_c00497{bottom:432.360000pt;}
.y92_c00497{bottom:433.106667pt;}
.y91_c00497{bottom:435.026667pt;}
.y93_c00497{bottom:435.973333pt;}
.y8e_c00497{bottom:450.440000pt;}
.y90_c00497{bottom:451.040000pt;}
.y8f_c00497{bottom:457.133333pt;}
.y8d_c00497{bottom:465.693333pt;}
.y8c_c00497{bottom:467.773333pt;}
.y89_c00497{bottom:467.973333pt;}
.y8b_c00497{bottom:468.160000pt;}
.y88_c00497{bottom:468.560000pt;}
.y87_c00497{bottom:469.693333pt;}
.y8a_c00497{bottom:469.893333pt;}
.y85_c00497{bottom:484.360000pt;}
.y86_c00497{bottom:485.106667pt;}
.y83_c00497{bottom:485.693333pt;}
.y80_c00497{bottom:487.026667pt;}
.y81_c00497{bottom:487.040000pt;}
.y84_c00497{bottom:487.226667pt;}
.y82_c00497{bottom:487.973333pt;}
.y7f_c00497{bottom:503.600000pt;}
.y7c_c00497{bottom:503.773333pt;}
.y7b_c00497{bottom:504.360000pt;}
.y7e_c00497{bottom:504.560000pt;}
.y7d_c00497{bottom:505.306667pt;}
.y7a_c00497{bottom:519.026667pt;}
.y78_c00497{bottom:519.773333pt;}
.y77_c00497{bottom:519.973333pt;}
.y79_c00497{bottom:521.106667pt;}
.y76_c00497{bottom:523.026667pt;}
.y74_c00497{bottom:538.440000pt;}
.y72_c00497{bottom:539.026667pt;}
.y75_c00497{bottom:539.973333pt;}
.y73_c00497{bottom:540.360000pt;}
.y6f_c00497{bottom:555.773333pt;}
.y6e_c00497{bottom:556.560000pt;}
.y70_c00497{bottom:557.693333pt;}
.y71_c00497{bottom:558.640000pt;}
.y6d_c00497{bottom:573.106667pt;}
.y6b_c00497{bottom:574.640000pt;}
.y6a_c00497{bottom:575.026667pt;}
.y6c_c00497{bottom:575.226667pt;}
.y69_c00497{bottom:575.973333pt;}
.y68_c00497{bottom:590.440000pt;}
.y66_c00497{bottom:591.400000pt;}
.y65_c00497{bottom:592.360000pt;}
.y67_c00497{bottom:592.560000pt;}
.y60_c00497{bottom:607.026667pt;}
.y61_c00497{bottom:607.400000pt;}
.y5f_c00497{bottom:607.773333pt;}
.y62_c00497{bottom:608.933333pt;}
.y63_c00497{bottom:609.693333pt;}
.y64_c00497{bottom:610.640000pt;}
.y5d_c00497{bottom:625.106667pt;}
.y5e_c00497{bottom:626.440000pt;}
.y5a_c00497{bottom:627.026667pt;}
.y5b_c00497{bottom:627.226667pt;}
.y5c_c00497{bottom:628.360000pt;}
.y57_c00497{bottom:641.693333pt;}
.y59_c00497{bottom:642.440000pt;}
.y54_c00497{bottom:644.360000pt;}
.y56_c00497{bottom:644.560000pt;}
.y55_c00497{bottom:645.306667pt;}
.y58_c00497{bottom:645.693333pt;}
.y50_c00497{bottom:661.106667pt;}
.y51_c00497{bottom:661.893333pt;}
.y53_c00497{bottom:662.066667pt;}
.y52_c00497{bottom:663.026667pt;}
.y4e_c00497{bottom:678.440000pt;}
.y4f_c00497{bottom:679.226667pt;}
.y4d_c00497{bottom:680.360000pt;}
.y4b_c00497{bottom:697.306667pt;}
.y4a_c00497{bottom:697.693333pt;}
.y4c_c00497{bottom:697.893333pt;}
.y49_c00497{bottom:713.106667pt;}
.y48_c00497{bottom:714.066667pt;}
.y46_c00497{bottom:715.026667pt;}
.y47_c00497{bottom:715.226667pt;}
.y45_c00497{bottom:730.440000pt;}
.y44_c00497{bottom:731.773333pt;}
.y41_c00497{bottom:732.360000pt;}
.y42_c00497{bottom:732.560000pt;}
.y43_c00497{bottom:733.693333pt;}
.y3d_c00497{bottom:747.026667pt;}
.y3b_c00497{bottom:747.773333pt;}
.y3e_c00497{bottom:749.106667pt;}
.y3c_c00497{bottom:749.693333pt;}
.y3f_c00497{bottom:749.893333pt;}
.y40_c00497{bottom:751.026667pt;}
.y3a_c00497{bottom:764.360000pt;}
.y38_c00497{bottom:766.440000pt;}
.y36_c00497{bottom:767.026667pt;}
.y39_c00497{bottom:767.226667pt;}
.y37_c00497{bottom:768.360000pt;}
.y33_c00497{bottom:781.693333pt;}
.y34_c00497{bottom:783.400000pt;}
.y35_c00497{bottom:783.773333pt;}
.y31_c00497{bottom:784.360000pt;}
.y32_c00497{bottom:785.693333pt;}
.y2f_c00497{bottom:801.106667pt;}
.y2e_c00497{bottom:801.893333pt;}
.y2d_c00497{bottom:802.640000pt;}
.y30_c00497{bottom:803.026667pt;}
.y2c_c00497{bottom:817.306667pt;}
.y29_c00497{bottom:818.440000pt;}
.y2a_c00497{bottom:819.400000pt;}
.y27_c00497{bottom:820.360000pt;}
.y28_c00497{bottom:820.560000pt;}
.y2b_c00497{bottom:821.306667pt;}
.y25_c00497{bottom:835.400000pt;}
.y23_c00497{bottom:836.360000pt;}
.y24_c00497{bottom:837.693333pt;}
.y26_c00497{bottom:838.640000pt;}
.y22_c00497{bottom:853.106667pt;}
.y20_c00497{bottom:855.026667pt;}
.y21_c00497{bottom:855.226667pt;}
.y1d_c00497{bottom:870.440000pt;}
.y1e_c00497{bottom:871.773333pt;}
.y1c_c00497{bottom:872.360000pt;}
.y1f_c00497{bottom:873.693333pt;}
.y16_c00497{bottom:887.026667pt;}
.y17_c00497{bottom:887.773333pt;}
.y1b_c00497{bottom:889.693333pt;}
.y1a_c00497{bottom:890.066667pt;}
.y18_c00497{bottom:890.640000pt;}
.y19_c00497{bottom:891.026667pt;}
.yf_c00497{bottom:905.106667pt;}
.y12_c00497{bottom:905.306667pt;}
.y13_c00497{bottom:906.440000pt;}
.y10_c00497{bottom:907.026667pt;}
.y15_c00497{bottom:907.226667pt;}
.y11_c00497{bottom:907.973333pt;}
.y14_c00497{bottom:908.360000pt;}
.ya_c00497{bottom:921.693333pt;}
.yc_c00497{bottom:922.640000pt;}
.y9_c00497{bottom:923.773333pt;}
.y7_c00497{bottom:924.360000pt;}
.y8_c00497{bottom:924.560000pt;}
.ye_c00497{bottom:924.733333pt;}
.yd_c00497{bottom:925.693333pt;}
.yb_c00497{bottom:926.640000pt;}
.y6_c00497{bottom:941.106667pt;}
.y3_c00497{bottom:942.066667pt;}
.y5_c00497{bottom:942.640000pt;}
.y4_c00497{bottom:943.026667pt;}
.y1_c00497{bottom:975.773333pt;}
.y2_c00497{bottom:976.933333pt;}
.h7_c00497{height:3.739141pt;}
.h9_c00497{height:12.988594pt;}
.h6_c00497{height:20.466875pt;}
.h2_c00497{height:22.303646pt;}
.h5_c00497{height:27.879557pt;}
.h4_c00497{height:31.618698pt;}
.h3_c00497{height:35.357839pt;}
.h1_c00497{height:39.031380pt;}
.h8_c00497{height:42.770521pt;}
.h0_c00497{height:1186.666667pt;}
.w0_c00497{width:782.666667pt;}
.x0_c00497{left:0.000000pt;}
.x1_c00497{left:134.666667pt;}
.x12_c00497{left:136.000000pt;}
.x11c_c00497{left:148.000000pt;}
.xe8_c00497{left:149.333333pt;}
.x3c_c00497{left:150.666667pt;}
.x35_c00497{left:152.373333pt;}
.xd7_c00497{left:153.333333pt;}
.x5c_c00497{left:156.373333pt;}
.x47_c00497{left:157.706667pt;}
.x8e_c00497{left:158.666667pt;}
.x73_c00497{left:160.000000pt;}
.x13_c00497{left:161.333333pt;}
.xbe_c00497{left:163.040000pt;}
.x68_c00497{left:164.373333pt;}
.xe7_c00497{left:165.333333pt;}
.xc4_c00497{left:168.000000pt;}
.xb4_c00497{left:168.960000pt;}
.xd8_c00497{left:170.666667pt;}
.x14_c00497{left:172.373333pt;}
.xe1_c00497{left:173.333333pt;}
.x1f_c00497{left:176.000000pt;}
.xdc_c00497{left:177.706667pt;}
.x51_c00497{left:178.666667pt;}
.xe9_c00497{left:180.000000pt;}
.x109_c00497{left:181.333333pt;}
.x48_c00497{left:183.040000pt;}
.x3_c00497{left:188.960000pt;}
.x5d_c00497{left:190.666667pt;}
.x85_c00497{left:193.333333pt;}
.xfe_c00497{left:195.040000pt;}
.x2d_c00497{left:198.666667pt;}
.x8f_c00497{left:200.000000pt;}
.xc9_c00497{left:201.333333pt;}
.x74_c00497{left:202.666667pt;}
.xa2_c00497{left:204.000000pt;}
.x15_c00497{left:204.960000pt;}
.x86_c00497{left:208.373333pt;}
.xbf_c00497{left:209.706667pt;}
.xd0_c00497{left:210.666667pt;}
.x36_c00497{left:212.000000pt;}
.x20_c00497{left:213.333333pt;}
.x4_c00497{left:215.040000pt;}
.x3d_c00497{left:216.000000pt;}
.xa3_c00497{left:221.706667pt;}
.x69_c00497{left:224.000000pt;}
.xd9_c00497{left:225.706667pt;}
.x52_c00497{left:226.666667pt;}
.xe2_c00497{left:228.000000pt;}
.x7b_c00497{left:228.960000pt;}
.x96_c00497{left:230.666667pt;}
.xf6_c00497{left:231.800000pt;}
.xc0_c00497{left:233.333333pt;}
.x3e_c00497{left:234.666667pt;}
.x49_c00497{left:236.000000pt;}
.x21_c00497{left:236.960000pt;}
.xff_c00497{left:238.666667pt;}
.x6a_c00497{left:240.373333pt;}
.x103_c00497{left:241.333333pt;}
.x90_c00497{left:242.666667pt;}
.x53_c00497{left:244.373333pt;}
.x5_c00497{left:245.333333pt;}
.xda_c00497{left:248.000000pt;}
.xac_c00497{left:249.333333pt;}
.xc5_c00497{left:250.293333pt;}
.x10e_c00497{left:251.626667pt;}
.xfa_c00497{left:253.333333pt;}
.x104_c00497{left:255.040000pt;}
.xb5_c00497{left:256.373333pt;}
.x5e_c00497{left:257.706667pt;}
.x3f_c00497{left:258.666667pt;}
.x111_c00497{left:260.373333pt;}
.xad_c00497{left:261.706667pt;}
.xb6_c00497{left:262.666667pt;}
.xca_c00497{left:264.373333pt;}
.x6b_c00497{left:265.333333pt;}
.x16_c00497{left:268.000000pt;}
.x87_c00497{left:269.333333pt;}
.x6_c00497{left:270.666667pt;}
.x37_c00497{left:272.373333pt;}
.x118_c00497{left:274.666667pt;}
.x7c_c00497{left:275.626667pt;}
.xc1_c00497{left:278.293333pt;}
.x54_c00497{left:280.000000pt;}
.x11d_c00497{left:280.960000pt;}
.x5f_c00497{left:283.040000pt;}
.x91_c00497{left:284.000000pt;}
.xef_c00497{left:284.960000pt;}
.xae_c00497{left:287.040000pt;}
.xea_c00497{left:288.000000pt;}
.xe3_c00497{left:293.333333pt;}
.x75_c00497{left:294.666667pt;}
.x38_c00497{left:295.626667pt;}
.xd1_c00497{left:297.333333pt;}
.x2e_c00497{left:299.040000pt;}
.x22_c00497{left:300.000000pt;}
.x40_c00497{left:301.706667pt;}
.xc2_c00497{left:304.373333pt;}
.x88_c00497{left:305.333333pt;}
.x7_c00497{left:306.666667pt;}
.x6c_c00497{left:308.000000pt;}
.xcb_c00497{left:308.960000pt;}
.x7d_c00497{left:310.666667pt;}
.x10a_c00497{left:313.706667pt;}
.xb7_c00497{left:314.666667pt;}
.x100_c00497{left:315.626667pt;}
.xde_c00497{left:316.960000pt;}
.x92_c00497{left:318.293333pt;}
.xf0_c00497{left:320.960000pt;}
.x76_c00497{left:324.000000pt;}
.xa4_c00497{left:325.706667pt;}
.x60_c00497{left:328.000000pt;}
.xb8_c00497{left:329.333333pt;}
.x10f_c00497{left:330.293333pt;}
.x39_c00497{left:332.000000pt;}
.x116_c00497{left:333.333333pt;}
.x101_c00497{left:334.293333pt;}
.x41_c00497{left:336.000000pt;}
.xaf_c00497{left:337.333333pt;}
.x7e_c00497{left:338.293333pt;}
.x105_c00497{left:340.373333pt;}
.x17_c00497{left:341.333333pt;}
.xe4_c00497{left:342.666667pt;}
.xd2_c00497{left:344.000000pt;}
.x55_c00497{left:346.666667pt;}
.x97_c00497{left:349.333333pt;}
.x6d_c00497{left:350.293333pt;}
.x4a_c00497{left:352.373333pt;}
.x2f_c00497{left:353.333333pt;}
.x89_c00497{left:354.293333pt;}
.x8_c00497{left:356.373333pt;}
.x114_c00497{left:357.333333pt;}
.x119_c00497{left:358.666667pt;}
.x23_c00497{left:360.000000pt;}
.xdd_c00497{left:361.706667pt;}
.x2_c00497{left:362.666667pt;}
.xc3_c00497{left:364.000000pt;}
.x18_c00497{left:364.960000pt;}
.x6e_c00497{left:367.040000pt;}
.xeb_c00497{left:368.373333pt;}
.xb9_c00497{left:372.000000pt;}
.xf1_c00497{left:372.960000pt;}
.x24_c00497{left:374.666667pt;}
.x3a_c00497{left:376.373333pt;}
.x61_c00497{left:377.333333pt;}
.x106_c00497{left:378.293333pt;}
.x9_c00497{left:380.000000pt;}
.x7f_c00497{left:384.000000pt;}
.xa5_c00497{left:384.960000pt;}
.xb0_c00497{left:386.293333pt;}
.x10b_c00497{left:388.000000pt;}
.x102_c00497{left:389.133333pt;}
.x42_c00497{left:390.666667pt;}
.x77_c00497{left:394.666667pt;}
.x98_c00497{left:396.960000pt;}
.x3b_c00497{left:400.000000pt;}
.xf2_c00497{left:401.333333pt;}
.xcc_c00497{left:402.666667pt;}
.xb1_c00497{left:404.373333pt;}
.x56_c00497{left:407.040000pt;}
.x62_c00497{left:409.333333pt;}
.xa6_c00497{left:412.000000pt;}
.xa_c00497{left:412.960000pt;}
.xba_c00497{left:414.666667pt;}
.x4b_c00497{left:416.000000pt;}
.xfb_c00497{left:418.666667pt;}
.x11e_c00497{left:419.626667pt;}
.xf7_c00497{left:421.333333pt;}
.x25_c00497{left:422.293333pt;}
.x63_c00497{left:424.000000pt;}
.x99_c00497{left:425.333333pt;}
.x19_c00497{left:426.666667pt;}
.x6f_c00497{left:428.000000pt;}
.xb_c00497{left:429.706667pt;}
.x30_c00497{left:433.333333pt;}
.xa7_c00497{left:434.293333pt;}
.x10c_c00497{left:436.000000pt;}
.x43_c00497{left:436.960000pt;}
.xec_c00497{left:438.666667pt;}
.x57_c00497{left:441.333333pt;}
.x70_c00497{left:443.040000pt;}
.x4c_c00497{left:444.000000pt;}
.x78_c00497{left:447.626667pt;}
.x26_c00497{left:449.333333pt;}
.x93_c00497{left:451.040000pt;}
.xc_c00497{left:452.960000pt;}
.xf3_c00497{left:456.373333pt;}
.x80_c00497{left:457.706667pt;}
.x58_c00497{left:458.666667pt;}
.x64_c00497{left:460.000000pt;}
.xdf_c00497{left:461.333333pt;}
.x9a_c00497{left:465.706667pt;}
.xb2_c00497{left:466.666667pt;}
.xd3_c00497{left:470.666667pt;}
.xa8_c00497{left:473.706667pt;}
.xc6_c00497{left:475.040000pt;}
.x8a_c00497{left:476.000000pt;}
.x44_c00497{left:477.333333pt;}
.xd_c00497{left:478.293333pt;}
.xed_c00497{left:480.000000pt;}
.x94_c00497{left:481.333333pt;}
.xf8_c00497{left:482.293333pt;}
.x9e_c00497{left:484.960000pt;}
.x4d_c00497{left:486.293333pt;}
.xcd_c00497{left:489.706667pt;}
.xc7_c00497{left:492.000000pt;}
.x71_c00497{left:493.333333pt;}
.xe_c00497{left:495.040000pt;}
.xfc_c00497{left:496.000000pt;}
.x27_c00497{left:498.293333pt;}
.x81_c00497{left:501.333333pt;}
.x1a_c00497{left:502.666667pt;}
.x4e_c00497{left:504.000000pt;}
.x59_c00497{left:504.960000pt;}
.xd4_c00497{left:506.293333pt;}
.xa9_c00497{left:508.000000pt;}
.xe0_c00497{left:509.333333pt;}
.x107_c00497{left:510.666667pt;}
.xce_c00497{left:513.706667pt;}
.x1b_c00497{left:516.373333pt;}
.xfd_c00497{left:517.333333pt;}
.xf_c00497{left:518.666667pt;}
.x11a_c00497{left:519.626667pt;}
.x8b_c00497{left:521.333333pt;}
.x79_c00497{left:522.666667pt;}
.x115_c00497{left:524.373333pt;}
.x9b_c00497{left:525.333333pt;}
.x4f_c00497{left:527.626667pt;}
.x9f_c00497{left:529.706667pt;}
.x31_c00497{left:530.666667pt;}
.x5a_c00497{left:532.373333pt;}
.x110_c00497{left:533.333333pt;}
.xf4_c00497{left:536.000000pt;}
.xe5_c00497{left:536.960000pt;}
.x28_c00497{left:538.666667pt;}
.xdb_c00497{left:540.000000pt;}
.xee_c00497{left:541.333333pt;}
.x9c_c00497{left:543.040000pt;}
.x45_c00497{left:544.000000pt;}
.x82_c00497{left:545.333333pt;}
.xd5_c00497{left:546.666667pt;}
.xaa_c00497{left:550.293333pt;}
.x1c_c00497{left:552.000000pt;}
.x112_c00497{left:553.133333pt;}
.x29_c00497{left:556.373333pt;}
.x65_c00497{left:557.706667pt;}
.xc8_c00497{left:559.040000pt;}
.x11b_c00497{left:560.000000pt;}
.xf9_c00497{left:563.040000pt;}
.x10_c00497{left:564.000000pt;}
.x7a_c00497{left:565.333333pt;}
.x9d_c00497{left:566.666667pt;}
.x72_c00497{left:568.960000pt;}
.xbb_c00497{left:572.373333pt;}
.x10d_c00497{left:574.666667pt;}
.x83_c00497{left:577.333333pt;}
.x2a_c00497{left:578.293333pt;}
.xa0_c00497{left:580.000000pt;}
.x50_c00497{left:581.333333pt;}
.x8c_c00497{left:582.293333pt;}
.x32_c00497{left:583.626667pt;}
.xf5_c00497{left:584.960000pt;}
.x1d_c00497{left:587.626667pt;}
.x117_c00497{left:589.333333pt;}
.x66_c00497{left:590.666667pt;}
.x11_c00497{left:592.000000pt;}
.xb3_c00497{left:593.333333pt;}
.x5b_c00497{left:596.000000pt;}
.xbc_c00497{left:597.333333pt;}
.x95_c00497{left:598.293333pt;}
.x33_c00497{left:600.373333pt;}
.xab_c00497{left:605.333333pt;}
.x113_c00497{left:606.666667pt;}
.x67_c00497{left:607.626667pt;}
.x8d_c00497{left:609.333333pt;}
.x2b_c00497{left:612.000000pt;}
.x46_c00497{left:612.960000pt;}
.x1e_c00497{left:615.040000pt;}
.xd6_c00497{left:616.373333pt;}
.xe6_c00497{left:617.333333pt;}
.x108_c00497{left:618.293333pt;}
.xcf_c00497{left:620.373333pt;}
.x34_c00497{left:622.293333pt;}
.x2c_c00497{left:629.706667pt;}
.xa1_c00497{left:630.666667pt;}
.x84_c00497{left:637.333333pt;}
.xbd_c00497{left:640.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_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_07e81728f1853c67b2ddc04c.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:1.688965;font-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_c00498{transform:matrix(0.006560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.006560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.006560,0.000000,0.000000,0.250000,0,0);}
.m4a_c00498{transform:matrix(0.009498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009498,0.000000,0.000000,0.250000,0,0);}
.m36_c00498{transform:matrix(0.009611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009611,0.000000,0.000000,0.250000,0,0);}
.m4b_c00498{transform:matrix(0.011420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011420,0.000000,0.000000,0.250000,0,0);}
.m46_c00498{transform:matrix(0.013457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013457,0.000000,0.000000,0.250000,0,0);}
.m44_c00498{transform:matrix(0.014178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014178,0.000000,0.000000,0.250000,0,0);}
.m4f_c00498{transform:matrix(0.014493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014493,0.000000,0.000000,0.250000,0,0);}
.mb_c00498{transform:matrix(0.014728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014728,0.000000,0.000000,0.250000,0,0);}
.m10_c00498{transform:matrix(0.015520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015520,0.000000,0.000000,0.250000,0,0);}
.m50_c00498{transform:matrix(0.015943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015943,0.000000,0.000000,0.250000,0,0);}
.m5c_c00498{transform:matrix(0.016452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016452,0.000000,0.000000,0.250000,0,0);}
.m14_c00498{transform:matrix(0.016933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016933,0.000000,0.000000,0.250000,0,0);}
.ma_c00498{transform:matrix(0.017022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017022,0.000000,0.000000,0.250000,0,0);}
.m55_c00498{transform:matrix(0.017196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017196,0.000000,0.000000,0.250000,0,0);}
.m4c_c00498{transform:matrix(0.017486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017486,0.000000,0.000000,0.250000,0,0);}
.m30_c00498{transform:matrix(0.017639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017639,0.000000,0.000000,0.250000,0,0);}
.m49_c00498{transform:matrix(0.017801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017801,0.000000,0.000000,0.250000,0,0);}
.m45_c00498{transform:matrix(0.018273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018273,0.000000,0.000000,0.250000,0,0);}
.m53_c00498{transform:matrix(0.018444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018444,0.000000,0.000000,0.250000,0,0);}
.m59_c00498{transform:matrix(0.018487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018487,0.000000,0.000000,0.250000,0,0);}
.m4_c00498{transform:matrix(0.018932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018932,0.000000,0.000000,0.250000,0,0);}
.me_c00498{transform:matrix(0.019246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019246,0.000000,0.000000,0.250000,0,0);}
.m4e_c00498{transform:matrix(0.021472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021472,0.000000,0.000000,0.250000,0,0);}
.m4d_c00498{transform:matrix(0.022239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022239,0.000000,0.000000,0.250000,0,0);}
.m58_c00498{transform:matrix(0.022814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022814,0.000000,0.000000,0.250000,0,0);}
.m2a_c00498{transform:matrix(0.023773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023773,0.000000,0.000000,0.250000,0,0);}
.m57_c00498{transform:matrix(0.024659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024659,0.000000,0.000000,0.250000,0,0);}
.m48_c00498{transform:matrix(0.025998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025998,0.000000,0.000000,0.250000,0,0);}
.m3f_c00498{transform:matrix(0.026263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026263,0.000000,0.000000,0.250000,0,0);}
.m16_c00498{transform:matrix(0.027159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027159,0.000000,0.000000,0.250000,0,0);}
.mc_c00498{transform:matrix(0.029489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029489,0.000000,0.000000,0.250000,0,0);}
.m2_c00498{transform:matrix(0.029773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029773,0.000000,0.000000,0.250000,0,0);}
.m2d_c00498{transform:matrix(0.030473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030473,0.000000,0.000000,0.250000,0,0);}
.m41_c00498{transform:matrix(0.030874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030874,0.000000,0.000000,0.250000,0,0);}
.m13_c00498{transform:matrix(0.031506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031506,0.000000,0.000000,0.250000,0,0);}
.m56_c00498{transform:matrix(0.031676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031676,0.000000,0.000000,0.250000,0,0);}
.m9_c00498{transform:matrix(0.033239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033239,0.000000,0.000000,0.250000,0,0);}
.md_c00498{transform:matrix(0.033702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033702,0.000000,0.000000,0.250000,0,0);}
.m1b_c00498{transform:matrix(0.035294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035294,0.000000,0.000000,0.250000,0,0);}
.m47_c00498{transform:matrix(0.037257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037257,0.000000,0.000000,0.250000,0,0);}
.m2e_c00498{transform:matrix(0.040671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040671,0.000000,0.000000,0.250000,0,0);}
.m17_c00498{transform:matrix(0.041240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041240,0.000000,0.000000,0.250000,0,0);}
.m51_c00498{transform:matrix(0.041318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041318,0.000000,0.000000,0.250000,0,0);}
.m31_c00498{transform:matrix(0.043640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043640,0.000000,0.000000,0.250000,0,0);}
.m1a_c00498{transform:matrix(0.043796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043796,0.000000,0.000000,0.250000,0,0);}
.m3c_c00498{transform:matrix(0.044937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044937,0.000000,0.000000,0.250000,0,0);}
.m33_c00498{transform:matrix(0.045506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045506,0.000000,0.000000,0.250000,0,0);}
.m34_c00498{transform:matrix(0.048662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048662,0.000000,0.000000,0.250000,0,0);}
.m19_c00498{transform:matrix(0.052901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052901,0.000000,0.000000,0.250000,0,0);}
.m32_c00498{transform:matrix(0.055461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055461,0.000000,0.000000,0.250000,0,0);}
.m18_c00498{transform:matrix(0.056265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056265,0.000000,0.000000,0.250000,0,0);}
.m1e_c00498{transform:matrix(0.058181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058181,0.000000,0.000000,0.250000,0,0);}
.m35_c00498{transform:matrix(0.058305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058305,0.000000,0.000000,0.250000,0,0);}
.m2f_c00498{transform:matrix(0.062412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062412,0.000000,0.000000,0.250000,0,0);}
.m37_c00498{transform:matrix(0.062652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062652,0.000000,0.000000,0.250000,0,0);}
.m6_c00498{transform:matrix(0.065697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065697,0.000000,0.000000,0.250000,0,0);}
.mf_c00498{transform:matrix(0.066358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066358,0.000000,0.000000,0.250000,0,0);}
.m27_c00498{transform:matrix(0.067348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067348,0.000000,0.000000,0.250000,0,0);}
.m39_c00498{transform:matrix(0.071227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071227,0.000000,0.000000,0.250000,0,0);}
.m40_c00498{transform:matrix(0.077837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077837,0.000000,0.000000,0.250000,0,0);}
.m20_c00498{transform:matrix(0.081805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081805,0.000000,0.000000,0.250000,0,0);}
.m28_c00498{transform:matrix(0.083216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083216,0.000000,0.000000,0.250000,0,0);}
.m24_c00498{transform:matrix(0.085331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085331,0.000000,0.000000,0.250000,0,0);}
.m54_c00498{transform:matrix(0.085506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085506,0.000000,0.000000,0.250000,0,0);}
.m2b_c00498{transform:matrix(0.087447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087447,0.000000,0.000000,0.250000,0,0);}
.m15_c00498{transform:matrix(0.091641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091641,0.000000,0.000000,0.250000,0,0);}
.m38_c00498{transform:matrix(0.091678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091678,0.000000,0.000000,0.250000,0,0);}
.m5d_c00498{transform:matrix(0.095557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095557,0.000000,0.000000,0.250000,0,0);}
.m5e_c00498{transform:matrix(0.100077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100077,0.000000,0.000000,0.250000,0,0);}
.m5_c00498{transform:matrix(0.102958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102958,0.000000,0.000000,0.250000,0,0);}
.m1c_c00498{transform:matrix(0.102968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102968,0.000000,0.000000,0.250000,0,0);}
.m1f_c00498{transform:matrix(0.105751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105751,0.000000,0.000000,0.250000,0,0);}
.m2c_c00498{transform:matrix(0.116419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116419,0.000000,0.000000,0.250000,0,0);}
.m5b_c00498{transform:matrix(0.129406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129406,0.000000,0.000000,0.250000,0,0);}
.m22_c00498{transform:matrix(0.129668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129668,0.000000,0.000000,0.250000,0,0);}
.m21_c00498{transform:matrix(0.136364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136364,0.000000,0.000000,0.250000,0,0);}
.m12_c00498{transform:matrix(0.138235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138235,0.000000,0.000000,0.250000,0,0);}
.m3d_c00498{transform:matrix(0.145706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145706,0.000000,0.000000,0.250000,0,0);}
.m3a_c00498{transform:matrix(0.145882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145882,0.000000,0.000000,0.250000,0,0);}
.m3_c00498{transform:matrix(0.238404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238404,0.000000,0.000000,0.250000,0,0);}
.m25_c00498{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00498{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m43_c00498{transform:matrix(0.318382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318382,0.000000,0.000000,0.250000,0,0);}
.m1_c00498{transform:matrix(0.339724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339724,0.000000,0.000000,0.250000,0,0);}
.m52_c00498{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_c00498{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00498{transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);}
.m11_c00498{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m5a_c00498{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.m23_c00498{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m0_c00498{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m42_c00498{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m1d_c00498{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.m29_c00498{transform:matrix(0.878319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.878319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.878319,0.000000,0.000000,0.250000,0,0);}
.m3e_c00498{transform:matrix(1.756637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.756637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.756637,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;}
.fs15_c00498{font-size:6.780000px;}
.fs12_c00498{font-size:11.880000px;}
.fs14_c00498{font-size:18.720000px;}
.fs0_c00498{font-size:20.400000px;}
.fs1a_c00498{font-size:25.500000px;}
.fs8_c00498{font-size:28.920000px;}
.fs3_c00498{font-size:32.340000px;}
.fs1_c00498{font-size:39.120000px;}
.fs13_c00498{font-size:42.540000px;}
.fse_c00498{font-size:45.900000px;}
.fs10_c00498{font-size:49.320000px;}
.fs5_c00498{font-size:52.740000px;}
.fs11_c00498{font-size:56.100000px;}
.fsf_c00498{font-size:64.620000px;}
.fs6_c00498{font-size:68.040000px;}
.fs17_c00498{font-size:74.820000px;}
.fs16_c00498{font-size:78.240000px;}
.fs18_c00498{font-size:88.440000px;}
.fs2_c00498{font-size:95.220000px;}
.fs1b_c00498{font-size:100.320000px;}
.fs1c_c00498{font-size:102.060000px;}
.fsb_c00498{font-size:113.940000px;}
.fs4_c00498{font-size:127.560000px;}
.fs19_c00498{font-size:132.660000px;}
.fsd_c00498{font-size:134.340000px;}
.fs9_c00498{font-size:146.280000px;}
.fsc_c00498{font-size:149.640000px;}
.fsa_c00498{font-size:159.900000px;}
.fs7_c00498{font-size:205.800000px;}
.y0_c00498{bottom:0.000000px;}
.y25_c00498{bottom:270.825000px;}
.y7b_c00498{bottom:271.455000px;}
.y17_c00498{bottom:271.680000px;}
.y98_c00498{bottom:273.150000px;}
.y5b_c00498{bottom:274.005000px;}
.ya7_c00498{bottom:274.230000px;}
.ya3_c00498{bottom:274.425000px;}
.y83_c00498{bottom:275.505000px;}
.y67_c00498{bottom:275.700000px;}
.ya1_c00498{bottom:278.055000px;}
.y5_c00498{bottom:279.960000px;}
.y71_c00498{bottom:280.800000px;}
.y32_c00498{bottom:293.325000px;}
.y49_c00498{bottom:294.180000px;}
.y18_c00498{bottom:296.730000px;}
.ya8_c00498{bottom:301.050000px;}
.y7c_c00498{bottom:302.730000px;}
.yaa_c00498{bottom:302.910000px;}
.y89_c00498{bottom:304.275000px;}
.ybe_c00498{bottom:305.550000px;}
.y99_c00498{bottom:305.730000px;}
.ya4_c00498{bottom:306.630000px;}
.y4a_c00498{bottom:308.355000px;}
.y5c_c00498{bottom:308.955000px;}
.y84_c00498{bottom:310.230000px;}
.y8a_c00498{bottom:313.275000px;}
.y33_c00498{bottom:313.680000px;}
.y68_c00498{bottom:316.230000px;}
.ybf_c00498{bottom:319.275000px;}
.ya2_c00498{bottom:320.925000px;}
.ya9_c00498{bottom:322.005000px;}
.ycc_c00498{bottom:322.200000px;}
.y8b_c00498{bottom:323.550000px;}
.ybd_c00498{bottom:323.775000px;}
.y4b_c00498{bottom:325.425000px;}
.ya5_c00498{bottom:329.055000px;}
.y6_c00498{bottom:329.955000px;}
.y72_c00498{bottom:334.230000px;}
.y9b_c00498{bottom:340.800000px;}
.y9a_c00498{bottom:342.555000px;}
.yab_c00498{bottom:342.855000px;}
.yba_c00498{bottom:344.325000px;}
.ycd_c00498{bottom:345.180000px;}
.y69_c00498{bottom:347.955000px;}
.yac_c00498{bottom:350.775000px;}
.y7_c00498{bottom:358.650000px;}
.y4c_c00498{bottom:358.680000px;}
.yad_c00498{bottom:361.050000px;}
.y8_c00498{bottom:409.305000px;}
.yae_c00498{bottom:413.505000px;}
.y5d_c00498{bottom:414.180000px;}
.y19_c00498{bottom:415.455000px;}
.y73_c00498{bottom:416.535000px;}
.y8c_c00498{bottom:417.555000px;}
.y34_c00498{bottom:417.825000px;}
.y26_c00498{bottom:418.275000px;}
.y85_c00498{bottom:418.680000px;}
.y3f_c00498{bottom:421.050000px;}
.yc0_c00498{bottom:422.325000px;}
.yaf_c00498{bottom:469.005000px;}
.y5e_c00498{bottom:469.680000px;}
.y8d_c00498{bottom:471.555000px;}
.y1a_c00498{bottom:472.035000px;}
.y35_c00498{bottom:473.325000px;}
.y7d_c00498{bottom:474.180000px;}
.y4d_c00498{bottom:474.405000px;}
.y27_c00498{bottom:475.275000px;}
.ya6_c00498{bottom:475.680000px;}
.y55_c00498{bottom:476.550000px;}
.y40_c00498{bottom:477.630000px;}
.yc1_c00498{bottom:477.825000px;}
.y9_c00498{bottom:480.405000px;}
.ya_c00498{bottom:504.555000px;}
.yb0_c00498{bottom:523.425000px;}
.y5f_c00498{bottom:525.180000px;}
.y1b_c00498{bottom:526.455000px;}
.y9c_c00498{bottom:527.130000px;}
.y6a_c00498{bottom:527.535000px;}
.y8e_c00498{bottom:528.555000px;}
.y36_c00498{bottom:528.825000px;}
.y7e_c00498{bottom:529.680000px;}
.y4e_c00498{bottom:529.905000px;}
.y28_c00498{bottom:530.775000px;}
.y41_c00498{bottom:531.630000px;}
.y56_c00498{bottom:532.050000px;}
.yc2_c00498{bottom:533.325000px;}
.y9d_c00498{bottom:537.630000px;}
.yb_c00498{bottom:555.090000px;}
.yb1_c00498{bottom:580.005000px;}
.y60_c00498{bottom:580.680000px;}
.y1c_c00498{bottom:581.955000px;}
.y8f_c00498{bottom:584.055000px;}
.y37_c00498{bottom:584.325000px;}
.y86_c00498{bottom:585.180000px;}
.y29_c00498{bottom:586.275000px;}
.y74_c00498{bottom:586.680000px;}
.y42_c00498{bottom:587.550000px;}
.yc3_c00498{bottom:588.825000px;}
.yc_c00498{bottom:609.405000px;}
.yb2_c00498{bottom:635.505000px;}
.y61_c00498{bottom:636.180000px;}
.y90_c00498{bottom:638.055000px;}
.y1d_c00498{bottom:638.535000px;}
.y38_c00498{bottom:639.825000px;}
.y75_c00498{bottom:640.680000px;}
.yd_c00498{bottom:640.785000px;}
.y4f_c00498{bottom:640.905000px;}
.y3_c00498{bottom:641.055000px;}
.y2a_c00498{bottom:641.775000px;}
.y9e_c00498{bottom:642.180000px;}
.y57_c00498{bottom:643.050000px;}
.y43_c00498{bottom:644.130000px;}
.yc4_c00498{bottom:644.325000px;}
.y16_c00498{bottom:645.960000px;}
.y4_c00498{bottom:678.825000px;}
.yb3_c00498{bottom:689.925000px;}
.y62_c00498{bottom:691.680000px;}
.y6b_c00498{bottom:692.955000px;}
.y1e_c00498{bottom:693.375000px;}
.y91_c00498{bottom:693.555000px;}
.y39_c00498{bottom:695.325000px;}
.y2b_c00498{bottom:695.775000px;}
.y76_c00498{bottom:696.180000px;}
.ybb_c00498{bottom:697.680000px;}
.y58_c00498{bottom:698.550000px;}
.y44_c00498{bottom:699.630000px;}
.yc5_c00498{bottom:699.825000px;}
.ye_c00498{bottom:709.185000px;}
.yb4_c00498{bottom:746.505000px;}
.y63_c00498{bottom:747.180000px;}
.y1f_c00498{bottom:748.035000px;}
.y92_c00498{bottom:749.055000px;}
.y3a_c00498{bottom:749.325000px;}
.y6c_c00498{bottom:749.535000px;}
.y50_c00498{bottom:750.405000px;}
.y2c_c00498{bottom:751.275000px;}
.y87_c00498{bottom:751.680000px;}
.yce_c00498{bottom:753.180000px;}
.y45_c00498{bottom:753.630000px;}
.y59_c00498{bottom:754.050000px;}
.yc6_c00498{bottom:755.325000px;}
.yf_c00498{bottom:763.185000px;}
.yb5_c00498{bottom:800.925000px;}
.y77_c00498{bottom:802.470000px;}
.y93_c00498{bottom:803.475000px;}
.y20_c00498{bottom:803.535000px;}
.y6d_c00498{bottom:805.035000px;}
.y3b_c00498{bottom:806.325000px;}
.y2d_c00498{bottom:806.775000px;}
.y7f_c00498{bottom:807.180000px;}
.y51_c00498{bottom:807.405000px;}
.y64_c00498{bottom:808.275000px;}
.y46_c00498{bottom:809.550000px;}
.yc7_c00498{bottom:810.825000px;}
.y78_c00498{bottom:815.130000px;}
.y10_c00498{bottom:821.010000px;}
.yb6_c00498{bottom:857.505000px;}
.y65_c00498{bottom:858.180000px;}
.y21_c00498{bottom:859.455000px;}
.y94_c00498{bottom:860.055000px;}
.y6e_c00498{bottom:860.535000px;}
.y52_c00498{bottom:861.405000px;}
.y3c_c00498{bottom:861.825000px;}
.y2e_c00498{bottom:862.275000px;}
.y79_c00498{bottom:862.680000px;}
.y47_c00498{bottom:865.050000px;}
.yc8_c00498{bottom:866.325000px;}
.y11_c00498{bottom:880.650000px;}
.yb7_c00498{bottom:913.005000px;}
.y66_c00498{bottom:913.680000px;}
.y22_c00498{bottom:914.955000px;}
.y95_c00498{bottom:915.555000px;}
.y6f_c00498{bottom:916.035000px;}
.y3d_c00498{bottom:916.905000px;}
.y2f_c00498{bottom:917.775000px;}
.y7a_c00498{bottom:918.180000px;}
.y53_c00498{bottom:918.405000px;}
.ybc_c00498{bottom:919.680000px;}
.y5a_c00498{bottom:920.550000px;}
.y48_c00498{bottom:921.630000px;}
.yc9_c00498{bottom:921.825000px;}
.y12_c00498{bottom:922.800000px;}
.yb8_c00498{bottom:967.005000px;}
.y23_c00498{bottom:968.955000px;}
.y96_c00498{bottom:971.055000px;}
.y70_c00498{bottom:971.535000px;}
.y9f_c00498{bottom:972.180000px;}
.y13_c00498{bottom:972.405000px;}
.y30_c00498{bottom:973.275000px;}
.y80_c00498{bottom:973.680000px;}
.y54_c00498{bottom:974.775000px;}
.yca_c00498{bottom:977.325000px;}
.y14_c00498{bottom:992.100000px;}
.y15_c00498{bottom:1022.055000px;}
.yb9_c00498{bottom:1022.505000px;}
.y81_c00498{bottom:1024.680000px;}
.y97_c00498{bottom:1025.055000px;}
.y24_c00498{bottom:1025.535000px;}
.y31_c00498{bottom:1027.275000px;}
.ya0_c00498{bottom:1027.680000px;}
.y3e_c00498{bottom:1028.775000px;}
.y88_c00498{bottom:1029.180000px;}
.ycb_c00498{bottom:1031.325000px;}
.y82_c00498{bottom:1038.855000px;}
.y2_c00498{bottom:1096.680000px;}
.y1_c00498{bottom:1099.050000px;}
.h16_c00498{height:8.339268px;}
.h13_c00498{height:14.612168px;}
.h15_c00498{height:23.025234px;}
.h1_c00498{height:25.091602px;}
.h1b_c00498{height:31.364502px;}
.h9_c00498{height:35.571035px;}
.h4_c00498{height:39.777568px;}
.h2_c00498{height:48.116836px;}
.h14_c00498{height:52.323369px;}
.hf_c00498{height:56.456104px;}
.h11_c00498{height:60.662637px;}
.h6_c00498{height:64.869170px;}
.h12_c00498{height:69.001904px;}
.h10_c00498{height:79.481338px;}
.h7_c00498{height:83.687871px;}
.h18_c00498{height:92.027139px;}
.h17_c00498{height:96.233672px;}
.h19_c00498{height:108.779473px;}
.h3_c00498{height:117.118740px;}
.h1c_c00498{height:123.391641px;}
.h1d_c00498{height:125.531807px;}
.hc_c00498{height:140.143975px;}
.h5_c00498{height:156.896309px;}
.h1a_c00498{height:163.169209px;}
.he_c00498{height:165.235576px;}
.ha_c00498{height:179.921543px;}
.hd_c00498{height:184.054277px;}
.hb_c00498{height:196.673877px;}
.h8_c00498{height:253.129980px;}
.h0_c00498{height:1335.000000px;}
.w0_c00498{width:880.500000px;}
.x0_c00498{left:0.000000px;}
.x3_c00498{left:252.000000px;}
.x6_c00498{left:273.225000px;}
.x4_c00498{left:274.725000px;}
.x5_c00498{left:276.420000px;}
.x7_c00498{left:289.080000px;}
.xa_c00498{left:313.500000px;}
.x9_c00498{left:315.000000px;}
.x8_c00498{left:316.080000px;}
.xe_c00498{left:330.420000px;}
.xd_c00498{left:331.500000px;}
.xc_c00498{left:333.000000px;}
.xb_c00498{left:334.500000px;}
.x11_c00498{left:349.500000px;}
.x10_c00498{left:351.000000px;}
.xf_c00498{left:352.500000px;}
.x14_c00498{left:363.420000px;}
.x13_c00498{left:364.500000px;}
.x12_c00498{left:365.580000px;}
.x18_c00498{left:376.920000px;}
.x17_c00498{left:378.420000px;}
.x15_c00498{left:379.500000px;}
.x16_c00498{left:384.000000px;}
.x1a_c00498{left:390.420000px;}
.x19_c00498{left:392.580000px;}
.x1e_c00498{left:403.500000px;}
.x1d_c00498{left:405.000000px;}
.x1b_c00498{left:406.500000px;}
.x1c_c00498{left:408.420000px;}
.x1_c00498{left:409.500000px;}
.x20_c00498{left:418.275000px;}
.x1f_c00498{left:420.420000px;}
.x23_c00498{left:430.920000px;}
.x22_c00498{left:432.000000px;}
.x21_c00498{left:433.080000px;}
.x26_c00498{left:444.000000px;}
.x25_c00498{left:445.500000px;}
.x24_c00498{left:447.000000px;}
.x28_c00498{left:457.500000px;}
.x27_c00498{left:459.645000px;}
.x2c_c00498{left:471.000000px;}
.x2b_c00498{left:472.500000px;}
.x29_c00498{left:474.420000px;}
.x2a_c00498{left:475.920000px;}
.x30_c00498{left:484.500000px;}
.x2d_c00498{left:486.645000px;}
.x2f_c00498{left:487.920000px;}
.x2e_c00498{left:489.420000px;}
.x33_c00498{left:498.000000px;}
.x32_c00498{left:499.500000px;}
.x31_c00498{left:500.580000px;}
.x37_c00498{left:511.500000px;}
.x36_c00498{left:513.000000px;}
.x34_c00498{left:514.080000px;}
.x35_c00498{left:516.000000px;}
.x39_c00498{left:525.000000px;}
.x38_c00498{left:527.145000px;}
.x3b_c00498{left:538.500000px;}
.x3a_c00498{left:540.645000px;}
.x3e_c00498{left:552.000000px;}
.x3d_c00498{left:553.500000px;}
.x3c_c00498{left:555.000000px;}
.x42_c00498{left:565.500000px;}
.x41_c00498{left:566.580000px;}
.x40_c00498{left:568.500000px;}
.x3f_c00498{left:569.580000px;}
.x46_c00498{left:579.000000px;}
.x45_c00498{left:580.500000px;}
.x43_c00498{left:582.000000px;}
.x44_c00498{left:583.500000px;}
.x47_c00498{left:592.500000px;}
.x48_c00498{left:594.645000px;}
.x49_c00498{left:595.920000px;}
.x4a_c00498{left:598.920000px;}
.x4e_c00498{left:607.500000px;}
.x4d_c00498{left:608.580000px;}
.x4b_c00498{left:609.645000px;}
.x4c_c00498{left:610.920000px;}
.x53_c00498{left:619.500000px;}
.x52_c00498{left:621.000000px;}
.x51_c00498{left:622.500000px;}
.x4f_c00498{left:624.000000px;}
.x50_c00498{left:625.500000px;}
.x2_c00498{left:708.000000px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.ls0_c00498{letter-spacing:0.000000pt;}
.ws0_c00498{word-spacing:0.000000pt;}
.fs15_c00498{font-size:6.026667pt;}
.fs12_c00498{font-size:10.560000pt;}
.fs14_c00498{font-size:16.640000pt;}
.fs0_c00498{font-size:18.133333pt;}
.fs1a_c00498{font-size:22.666667pt;}
.fs8_c00498{font-size:25.706667pt;}
.fs3_c00498{font-size:28.746667pt;}
.fs1_c00498{font-size:34.773333pt;}
.fs13_c00498{font-size:37.813333pt;}
.fse_c00498{font-size:40.800000pt;}
.fs10_c00498{font-size:43.840000pt;}
.fs5_c00498{font-size:46.880000pt;}
.fs11_c00498{font-size:49.866667pt;}
.fsf_c00498{font-size:57.440000pt;}
.fs6_c00498{font-size:60.480000pt;}
.fs17_c00498{font-size:66.506667pt;}
.fs16_c00498{font-size:69.546667pt;}
.fs18_c00498{font-size:78.613333pt;}
.fs2_c00498{font-size:84.640000pt;}
.fs1b_c00498{font-size:89.173333pt;}
.fs1c_c00498{font-size:90.720000pt;}
.fsb_c00498{font-size:101.280000pt;}
.fs4_c00498{font-size:113.386667pt;}
.fs19_c00498{font-size:117.920000pt;}
.fsd_c00498{font-size:119.413333pt;}
.fs9_c00498{font-size:130.026667pt;}
.fsc_c00498{font-size:133.013333pt;}
.fsa_c00498{font-size:142.133333pt;}
.fs7_c00498{font-size:182.933333pt;}
.y0_c00498{bottom:0.000000pt;}
.y25_c00498{bottom:240.733333pt;}
.y7b_c00498{bottom:241.293333pt;}
.y17_c00498{bottom:241.493333pt;}
.y98_c00498{bottom:242.800000pt;}
.y5b_c00498{bottom:243.560000pt;}
.ya7_c00498{bottom:243.760000pt;}
.ya3_c00498{bottom:243.933333pt;}
.y83_c00498{bottom:244.893333pt;}
.y67_c00498{bottom:245.066667pt;}
.ya1_c00498{bottom:247.160000pt;}
.y5_c00498{bottom:248.853333pt;}
.y71_c00498{bottom:249.600000pt;}
.y32_c00498{bottom:260.733333pt;}
.y49_c00498{bottom:261.493333pt;}
.y18_c00498{bottom:263.760000pt;}
.ya8_c00498{bottom:267.600000pt;}
.y7c_c00498{bottom:269.093333pt;}
.yaa_c00498{bottom:269.253333pt;}
.y89_c00498{bottom:270.466667pt;}
.ybe_c00498{bottom:271.600000pt;}
.y99_c00498{bottom:271.760000pt;}
.ya4_c00498{bottom:272.560000pt;}
.y4a_c00498{bottom:274.093333pt;}
.y5c_c00498{bottom:274.626667pt;}
.y84_c00498{bottom:275.760000pt;}
.y8a_c00498{bottom:278.466667pt;}
.y33_c00498{bottom:278.826667pt;}
.y68_c00498{bottom:281.093333pt;}
.ybf_c00498{bottom:283.800000pt;}
.ya2_c00498{bottom:285.266667pt;}
.ya9_c00498{bottom:286.226667pt;}
.ycc_c00498{bottom:286.400000pt;}
.y8b_c00498{bottom:287.600000pt;}
.ybd_c00498{bottom:287.800000pt;}
.y4b_c00498{bottom:289.266667pt;}
.ya5_c00498{bottom:292.493333pt;}
.y6_c00498{bottom:293.293333pt;}
.y72_c00498{bottom:297.093333pt;}
.y9b_c00498{bottom:302.933333pt;}
.y9a_c00498{bottom:304.493333pt;}
.yab_c00498{bottom:304.760000pt;}
.yba_c00498{bottom:306.066667pt;}
.ycd_c00498{bottom:306.826667pt;}
.y69_c00498{bottom:309.293333pt;}
.yac_c00498{bottom:311.800000pt;}
.y7_c00498{bottom:318.800000pt;}
.y4c_c00498{bottom:318.826667pt;}
.yad_c00498{bottom:320.933333pt;}
.y8_c00498{bottom:363.826667pt;}
.yae_c00498{bottom:367.560000pt;}
.y5d_c00498{bottom:368.160000pt;}
.y19_c00498{bottom:369.293333pt;}
.y73_c00498{bottom:370.253333pt;}
.y8c_c00498{bottom:371.160000pt;}
.y34_c00498{bottom:371.400000pt;}
.y26_c00498{bottom:371.800000pt;}
.y85_c00498{bottom:372.160000pt;}
.y3f_c00498{bottom:374.266667pt;}
.yc0_c00498{bottom:375.400000pt;}
.yaf_c00498{bottom:416.893333pt;}
.y5e_c00498{bottom:417.493333pt;}
.y8d_c00498{bottom:419.160000pt;}
.y1a_c00498{bottom:419.586667pt;}
.y35_c00498{bottom:420.733333pt;}
.y7d_c00498{bottom:421.493333pt;}
.y4d_c00498{bottom:421.693333pt;}
.y27_c00498{bottom:422.466667pt;}
.ya6_c00498{bottom:422.826667pt;}
.y55_c00498{bottom:423.600000pt;}
.y40_c00498{bottom:424.560000pt;}
.yc1_c00498{bottom:424.733333pt;}
.y9_c00498{bottom:427.026667pt;}
.ya_c00498{bottom:448.493333pt;}
.yb0_c00498{bottom:465.266667pt;}
.y5f_c00498{bottom:466.826667pt;}
.y1b_c00498{bottom:467.960000pt;}
.y9c_c00498{bottom:468.560000pt;}
.y6a_c00498{bottom:468.920000pt;}
.y8e_c00498{bottom:469.826667pt;}
.y36_c00498{bottom:470.066667pt;}
.y7e_c00498{bottom:470.826667pt;}
.y4e_c00498{bottom:471.026667pt;}
.y28_c00498{bottom:471.800000pt;}
.y41_c00498{bottom:472.560000pt;}
.y56_c00498{bottom:472.933333pt;}
.yc2_c00498{bottom:474.066667pt;}
.y9d_c00498{bottom:477.893333pt;}
.yb_c00498{bottom:493.413333pt;}
.yb1_c00498{bottom:515.560000pt;}
.y60_c00498{bottom:516.160000pt;}
.y1c_c00498{bottom:517.293333pt;}
.y8f_c00498{bottom:519.160000pt;}
.y37_c00498{bottom:519.400000pt;}
.y86_c00498{bottom:520.160000pt;}
.y29_c00498{bottom:521.133333pt;}
.y74_c00498{bottom:521.493333pt;}
.y42_c00498{bottom:522.266667pt;}
.yc3_c00498{bottom:523.400000pt;}
.yc_c00498{bottom:541.693333pt;}
.yb2_c00498{bottom:564.893333pt;}
.y61_c00498{bottom:565.493333pt;}
.y90_c00498{bottom:567.160000pt;}
.y1d_c00498{bottom:567.586667pt;}
.y38_c00498{bottom:568.733333pt;}
.y75_c00498{bottom:569.493333pt;}
.yd_c00498{bottom:569.586667pt;}
.y4f_c00498{bottom:569.693333pt;}
.y3_c00498{bottom:569.826667pt;}
.y2a_c00498{bottom:570.466667pt;}
.y9e_c00498{bottom:570.826667pt;}
.y57_c00498{bottom:571.600000pt;}
.y43_c00498{bottom:572.560000pt;}
.yc4_c00498{bottom:572.733333pt;}
.y16_c00498{bottom:574.186667pt;}
.y4_c00498{bottom:603.400000pt;}
.yb3_c00498{bottom:613.266667pt;}
.y62_c00498{bottom:614.826667pt;}
.y6b_c00498{bottom:615.960000pt;}
.y1e_c00498{bottom:616.333333pt;}
.y91_c00498{bottom:616.493333pt;}
.y39_c00498{bottom:618.066667pt;}
.y2b_c00498{bottom:618.466667pt;}
.y76_c00498{bottom:618.826667pt;}
.ybb_c00498{bottom:620.160000pt;}
.y58_c00498{bottom:620.933333pt;}
.y44_c00498{bottom:621.893333pt;}
.yc5_c00498{bottom:622.066667pt;}
.ye_c00498{bottom:630.386667pt;}
.yb4_c00498{bottom:663.560000pt;}
.y63_c00498{bottom:664.160000pt;}
.y1f_c00498{bottom:664.920000pt;}
.y92_c00498{bottom:665.826667pt;}
.y3a_c00498{bottom:666.066667pt;}
.y6c_c00498{bottom:666.253333pt;}
.y50_c00498{bottom:667.026667pt;}
.y2c_c00498{bottom:667.800000pt;}
.y87_c00498{bottom:668.160000pt;}
.yce_c00498{bottom:669.493333pt;}
.y45_c00498{bottom:669.893333pt;}
.y59_c00498{bottom:670.266667pt;}
.yc6_c00498{bottom:671.400000pt;}
.yf_c00498{bottom:678.386667pt;}
.yb5_c00498{bottom:711.933333pt;}
.y77_c00498{bottom:713.306667pt;}
.y93_c00498{bottom:714.200000pt;}
.y20_c00498{bottom:714.253333pt;}
.y6d_c00498{bottom:715.586667pt;}
.y3b_c00498{bottom:716.733333pt;}
.y2d_c00498{bottom:717.133333pt;}
.y7f_c00498{bottom:717.493333pt;}
.y51_c00498{bottom:717.693333pt;}
.y64_c00498{bottom:718.466667pt;}
.y46_c00498{bottom:719.600000pt;}
.yc7_c00498{bottom:720.733333pt;}
.y78_c00498{bottom:724.560000pt;}
.y10_c00498{bottom:729.786667pt;}
.yb6_c00498{bottom:762.226667pt;}
.y65_c00498{bottom:762.826667pt;}
.y21_c00498{bottom:763.960000pt;}
.y94_c00498{bottom:764.493333pt;}
.y6e_c00498{bottom:764.920000pt;}
.y52_c00498{bottom:765.693333pt;}
.y3c_c00498{bottom:766.066667pt;}
.y2e_c00498{bottom:766.466667pt;}
.y79_c00498{bottom:766.826667pt;}
.y47_c00498{bottom:768.933333pt;}
.yc8_c00498{bottom:770.066667pt;}
.y11_c00498{bottom:782.800000pt;}
.yb7_c00498{bottom:811.560000pt;}
.y66_c00498{bottom:812.160000pt;}
.y22_c00498{bottom:813.293333pt;}
.y95_c00498{bottom:813.826667pt;}
.y6f_c00498{bottom:814.253333pt;}
.y3d_c00498{bottom:815.026667pt;}
.y2f_c00498{bottom:815.800000pt;}
.y7a_c00498{bottom:816.160000pt;}
.y53_c00498{bottom:816.360000pt;}
.ybc_c00498{bottom:817.493333pt;}
.y5a_c00498{bottom:818.266667pt;}
.y48_c00498{bottom:819.226667pt;}
.yc9_c00498{bottom:819.400000pt;}
.y12_c00498{bottom:820.266667pt;}
.yb8_c00498{bottom:859.560000pt;}
.y23_c00498{bottom:861.293333pt;}
.y96_c00498{bottom:863.160000pt;}
.y70_c00498{bottom:863.586667pt;}
.y9f_c00498{bottom:864.160000pt;}
.y13_c00498{bottom:864.360000pt;}
.y30_c00498{bottom:865.133333pt;}
.y80_c00498{bottom:865.493333pt;}
.y54_c00498{bottom:866.466667pt;}
.yca_c00498{bottom:868.733333pt;}
.y14_c00498{bottom:881.866667pt;}
.y15_c00498{bottom:908.493333pt;}
.yb9_c00498{bottom:908.893333pt;}
.y81_c00498{bottom:910.826667pt;}
.y97_c00498{bottom:911.160000pt;}
.y24_c00498{bottom:911.586667pt;}
.y31_c00498{bottom:913.133333pt;}
.ya0_c00498{bottom:913.493333pt;}
.y3e_c00498{bottom:914.466667pt;}
.y88_c00498{bottom:914.826667pt;}
.ycb_c00498{bottom:916.733333pt;}
.y82_c00498{bottom:923.426667pt;}
.y2_c00498{bottom:974.826667pt;}
.y1_c00498{bottom:976.933333pt;}
.h16_c00498{height:7.412682pt;}
.h13_c00498{height:12.988594pt;}
.h15_c00498{height:20.466875pt;}
.h1_c00498{height:22.303646pt;}
.h1b_c00498{height:27.879557pt;}
.h9_c00498{height:31.618698pt;}
.h4_c00498{height:35.357839pt;}
.h2_c00498{height:42.770521pt;}
.h14_c00498{height:46.509661pt;}
.hf_c00498{height:50.183203pt;}
.h11_c00498{height:53.922344pt;}
.h6_c00498{height:57.661484pt;}
.h12_c00498{height:61.335026pt;}
.h10_c00498{height:70.650078pt;}
.h7_c00498{height:74.389219pt;}
.h18_c00498{height:81.801901pt;}
.h17_c00498{height:85.541042pt;}
.h19_c00498{height:96.692865pt;}
.h3_c00498{height:104.105547pt;}
.h1c_c00498{height:109.681458pt;}
.h1d_c00498{height:111.583828pt;}
.hc_c00498{height:124.572422pt;}
.h5_c00498{height:139.463385pt;}
.h1a_c00498{height:145.039297pt;}
.he_c00498{height:146.876068pt;}
.ha_c00498{height:159.930260pt;}
.hd_c00498{height:163.603802pt;}
.hb_c00498{height:174.821224pt;}
.h8_c00498{height:225.004427pt;}
.h0_c00498{height:1186.666667pt;}
.w0_c00498{width:782.666667pt;}
.x0_c00498{left:0.000000pt;}
.x3_c00498{left:224.000000pt;}
.x6_c00498{left:242.866667pt;}
.x4_c00498{left:244.200000pt;}
.x5_c00498{left:245.706667pt;}
.x7_c00498{left:256.960000pt;}
.xa_c00498{left:278.666667pt;}
.x9_c00498{left:280.000000pt;}
.x8_c00498{left:280.960000pt;}
.xe_c00498{left:293.706667pt;}
.xd_c00498{left:294.666667pt;}
.xc_c00498{left:296.000000pt;}
.xb_c00498{left:297.333333pt;}
.x11_c00498{left:310.666667pt;}
.x10_c00498{left:312.000000pt;}
.xf_c00498{left:313.333333pt;}
.x14_c00498{left:323.040000pt;}
.x13_c00498{left:324.000000pt;}
.x12_c00498{left:324.960000pt;}
.x18_c00498{left:335.040000pt;}
.x17_c00498{left:336.373333pt;}
.x15_c00498{left:337.333333pt;}
.x16_c00498{left:341.333333pt;}
.x1a_c00498{left:347.040000pt;}
.x19_c00498{left:348.960000pt;}
.x1e_c00498{left:358.666667pt;}
.x1d_c00498{left:360.000000pt;}
.x1b_c00498{left:361.333333pt;}
.x1c_c00498{left:363.040000pt;}
.x1_c00498{left:364.000000pt;}
.x20_c00498{left:371.800000pt;}
.x1f_c00498{left:373.706667pt;}
.x23_c00498{left:383.040000pt;}
.x22_c00498{left:384.000000pt;}
.x21_c00498{left:384.960000pt;}
.x26_c00498{left:394.666667pt;}
.x25_c00498{left:396.000000pt;}
.x24_c00498{left:397.333333pt;}
.x28_c00498{left:406.666667pt;}
.x27_c00498{left:408.573333pt;}
.x2c_c00498{left:418.666667pt;}
.x2b_c00498{left:420.000000pt;}
.x29_c00498{left:421.706667pt;}
.x2a_c00498{left:423.040000pt;}
.x30_c00498{left:430.666667pt;}
.x2d_c00498{left:432.573333pt;}
.x2f_c00498{left:433.706667pt;}
.x2e_c00498{left:435.040000pt;}
.x33_c00498{left:442.666667pt;}
.x32_c00498{left:444.000000pt;}
.x31_c00498{left:444.960000pt;}
.x37_c00498{left:454.666667pt;}
.x36_c00498{left:456.000000pt;}
.x34_c00498{left:456.960000pt;}
.x35_c00498{left:458.666667pt;}
.x39_c00498{left:466.666667pt;}
.x38_c00498{left:468.573333pt;}
.x3b_c00498{left:478.666667pt;}
.x3a_c00498{left:480.573333pt;}
.x3e_c00498{left:490.666667pt;}
.x3d_c00498{left:492.000000pt;}
.x3c_c00498{left:493.333333pt;}
.x42_c00498{left:502.666667pt;}
.x41_c00498{left:503.626667pt;}
.x40_c00498{left:505.333333pt;}
.x3f_c00498{left:506.293333pt;}
.x46_c00498{left:514.666667pt;}
.x45_c00498{left:516.000000pt;}
.x43_c00498{left:517.333333pt;}
.x44_c00498{left:518.666667pt;}
.x47_c00498{left:526.666667pt;}
.x48_c00498{left:528.573333pt;}
.x49_c00498{left:529.706667pt;}
.x4a_c00498{left:532.373333pt;}
.x4e_c00498{left:540.000000pt;}
.x4d_c00498{left:540.960000pt;}
.x4b_c00498{left:541.906667pt;}
.x4c_c00498{left:543.040000pt;}
.x53_c00498{left:550.666667pt;}
.x52_c00498{left:552.000000pt;}
.x51_c00498{left:553.333333pt;}
.x4f_c00498{left:554.666667pt;}
.x50_c00498{left:556.000000pt;}
.x2_c00498{left:629.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_95f2ee11a12978ed5299502d.woff2')format("woff");}.ff1_c00499{font-family:ff1_c00499;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf6_c00499{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.m97_c00499{transform:matrix(0.330672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330672,0.000000,0.000000,0.250000,0,0);}
.m2_c00499{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.mfd_c00499{transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);}
.med_c00499{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.mbd_c00499{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m9e_c00499{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.me_c00499{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.mff_c00499{transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);}
.md7_c00499{transform:matrix(0.367227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367227,0.000000,0.000000,0.250000,0,0);}
.m18_c00499{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m25_c00499{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m49_c00499{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.me1_c00499{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m0_c00499{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.mbe_c00499{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m2e_c00499{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00499{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m5_c00499{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m11_c00499{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.ma6_c00499{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m4a_c00499{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m80_c00499{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.mf1_c00499{transform:matrix(0.384586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384586,0.000000,0.000000,0.250000,0,0);}
.mfe_c00499{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m4d_c00499{transform:matrix(0.388420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388420,0.000000,0.000000,0.250000,0,0);}
.ma5_c00499{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m77_c00499{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.mf3_c00499{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m87_c00499{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.mb1_c00499{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m4f_c00499{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m6a_c00499{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m8f_c00499{transform:matrix(0.394555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394555,0.000000,0.000000,0.250000,0,0);}
.m6e_c00499{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.mee_c00499{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m55_c00499{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m101_c00499{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m68_c00499{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m99_c00499{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.ma4_c00499{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.ma3_c00499{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m92_c00499{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.mf4_c00499{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m3f_c00499{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m48_c00499{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m46_c00499{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m7d_c00499{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m5f_c00499{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m88_c00499{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m9c_c00499{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.mb3_c00499{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m4c_c00499{transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);}
.ma8_c00499{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.mf2_c00499{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m5b_c00499{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m3a_c00499{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m81_c00499{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m85_c00499{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.mf7_c00499{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.ma0_c00499{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m6c_c00499{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m93_c00499{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.mb8_c00499{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m58_c00499{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m42_c00499{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m86_c00499{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m23_c00499{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m28_c00499{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.ma7_c00499{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.ma2_c00499{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m20_c00499{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m62_c00499{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m1e_c00499{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.me8_c00499{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.m72_c00499{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m4e_c00499{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m7f_c00499{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.mf_c00499{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m29_c00499{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.mdc_c00499{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m38_c00499{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m30_c00499{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m98_c00499{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.m36_c00499{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m8d_c00499{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m83_c00499{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m14_c00499{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.mec_c00499{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m24_c00499{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m7e_c00499{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m52_c00499{transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);}
.m17_c00499{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.md1_c00499{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.mc3_c00499{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.m5c_c00499{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.mbf_c00499{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.me7_c00499{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m78_c00499{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m2f_c00499{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mc1_c00499{transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);}
.m9d_c00499{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.mc4_c00499{transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);}
.m6b_c00499{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.maf_c00499{transform:matrix(0.461345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461345,0.000000,0.000000,0.250000,0,0);}
.m89_c00499{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m71_c00499{transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);}
.m9a_c00499{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.mca_c00499{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.md6_c00499{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.mb9_c00499{transform:matrix(0.463866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463866,0.000000,0.000000,0.250000,0,0);}
.mb6_c00499{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.m3b_c00499{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00499{transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);}
.me4_c00499{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.me3_c00499{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.mc8_c00499{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m31_c00499{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.mcf_c00499{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m27_c00499{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.m16_c00499{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m7b_c00499{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.mea_c00499{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.me2_c00499{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m2d_c00499{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m54_c00499{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m8e_c00499{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.mae_c00499{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m82_c00499{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.mdf_c00499{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m6_c00499{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m104_c00499{transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);}
.m4_c00499{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);}
.m57_c00499{transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);}
.m59_c00499{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m19_c00499{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.ma9_c00499{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.mb0_c00499{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m64_c00499{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m84_c00499{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m9f_c00499{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.mc9_c00499{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.mce_c00499{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m103_c00499{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m22_c00499{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m10_c00499{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m5a_c00499{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m1f_c00499{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m73_c00499{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.mba_c00499{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m66_c00499{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.me9_c00499{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m5d_c00499{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m12_c00499{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m5e_c00499{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.mfa_c00499{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.mf8_c00499{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.md9_c00499{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m34_c00499{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.mf5_c00499{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.maa_c00499{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m9_c00499{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.md8_c00499{transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);}
.mf0_c00499{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m74_c00499{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.mc2_c00499{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m7_c00499{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.mb2_c00499{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m75_c00499{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m8_c00499{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m26_c00499{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.ma1_c00499{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.me6_c00499{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m13_c00499{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.mad_c00499{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m61_c00499{transform:matrix(0.541280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541280,0.000000,0.000000,0.250000,0,0);}
.m2c_c00499{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m7c_c00499{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m56_c00499{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.mc_c00499{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.mac_c00499{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.me5_c00499{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m69_c00499{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m100_c00499{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);}
.m4b_c00499{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m94_c00499{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.mdb_c00499{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m3e_c00499{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m39_c00499{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m53_c00499{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.mc6_c00499{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.meb_c00499{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.me0_c00499{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m47_c00499{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.mbb_c00499{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.mde_c00499{transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);}
.m2b_c00499{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.md_c00499{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m8c_c00499{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m45_c00499{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.mc7_c00499{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m91_c00499{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m102_c00499{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.mef_c00499{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.m65_c00499{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.m3c_c00499{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m44_c00499{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m95_c00499{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m15_c00499{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.mcb_c00499{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.mc5_c00499{transform:matrix(0.595954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595954,0.000000,0.000000,0.250000,0,0);}
.m50_c00499{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.mfc_c00499{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.m33_c00499{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_c00499{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.md0_c00499{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.ma_c00499{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m41_c00499{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.mfb_c00499{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);}
.m3_c00499{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m51_c00499{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.mab_c00499{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.mf9_c00499{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.mbc_c00499{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m79_c00499{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m1_c00499{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_c00499{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.mb7_c00499{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.m9b_c00499{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.mb5_c00499{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.md4_c00499{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m7a_c00499{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m8b_c00499{transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);}
.md3_c00499{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m1b_c00499{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.mb_c00499{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.mc0_c00499{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.m6d_c00499{transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);}
.mb4_c00499{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m2a_c00499{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m37_c00499{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.md2_c00499{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m8a_c00499{transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);}
.mda_c00499{transform:matrix(0.705929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705929,0.000000,0.000000,0.250000,0,0);}
.m67_c00499{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.m35_c00499{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m40_c00499{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.md5_c00499{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m63_c00499{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m90_c00499{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m6f_c00499{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m1c_c00499{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m1a_c00499{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.m21_c00499{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.mcc_c00499{transform:matrix(0.780449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780449,0.000000,0.000000,0.250000,0,0);}
.mdd_c00499{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.m96_c00499{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.mcd_c00499{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m76_c00499{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m60_c00499{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m70_c00499{transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);}
.v2_c00499{vertical-align:-6.000000px;}
.v0_c00499{vertical-align:0.000000px;}
.v1_c00499{vertical-align:18.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;}
}
.ws3_c00499{word-spacing:-8.809918px;}
.ws1_c00499{word-spacing:-7.348683px;}
.ws0_c00499{word-spacing:-6.988015px;}
.ws2_c00499{word-spacing:-6.067092px;}
.ws4_c00499{word-spacing:0.000000px;}
.fc0_c00499{color:transparent;}
.fs5_c00499{font-size:18.720000px;}
.fs1_c00499{font-size:20.400000px;}
.fs3_c00499{font-size:25.500000px;}
.fs4_c00499{font-size:28.920000px;}
.fs0_c00499{font-size:32.340000px;}
.fs2_c00499{font-size:35.700000px;}
.fs6_c00499{font-size:39.120000px;}
.y0_c00499{bottom:0.000000px;}
.yf7_c00499{bottom:250.245000px;}
.yf6_c00499{bottom:250.470000px;}
.yf3_c00499{bottom:251.130000px;}
.yf9_c00499{bottom:251.325000px;}
.yf4_c00499{bottom:251.970000px;}
.yf5_c00499{bottom:252.405000px;}
.yf8_c00499{bottom:253.470000px;}
.yf2_c00499{bottom:268.905000px;}
.yf0_c00499{bottom:269.745000px;}
.yef_c00499{bottom:271.905000px;}
.yf1_c00499{bottom:272.970000px;}
.yea_c00499{bottom:289.245000px;}
.yed_c00499{bottom:290.550000px;}
.yeb_c00499{bottom:290.745000px;}
.ye9_c00499{bottom:291.405000px;}
.yee_c00499{bottom:291.630000px;}
.yec_c00499{bottom:292.470000px;}
.ye6_c00499{bottom:309.180000px;}
.ye7_c00499{bottom:309.405000px;}
.ye5_c00499{bottom:310.245000px;}
.ye8_c00499{bottom:311.970000px;}
.ye4_c00499{bottom:312.405000px;}
.ye0_c00499{bottom:328.680000px;}
.ye2_c00499{bottom:329.745000px;}
.ye3_c00499{bottom:330.630000px;}
.ye1_c00499{bottom:331.905000px;}
.ydc_c00499{bottom:347.745000px;}
.ydd_c00499{bottom:349.245000px;}
.yde_c00499{bottom:351.405000px;}
.ydf_c00499{bottom:352.470000px;}
.yd9_c00499{bottom:368.745000px;}
.yd7_c00499{bottom:369.825000px;}
.yd8_c00499{bottom:370.905000px;}
.yda_c00499{bottom:371.130000px;}
.ydb_c00499{bottom:371.970000px;}
.yd6_c00499{bottom:389.325000px;}
.yd1_c00499{bottom:390.405000px;}
.yd4_c00499{bottom:390.630000px;}
.yd5_c00499{bottom:390.825000px;}
.yd2_c00499{bottom:391.470000px;}
.yd3_c00499{bottom:391.905000px;}
.yce_c00499{bottom:407.745000px;}
.ycf_c00499{bottom:408.825000px;}
.ycb_c00499{bottom:409.245000px;}
.ycd_c00499{bottom:409.905000px;}
.ycc_c00499{bottom:410.130000px;}
.yca_c00499{bottom:410.325000px;}
.yd0_c00499{bottom:410.970000px;}
.yc9_c00499{bottom:411.405000px;}
.yc7_c00499{bottom:427.245000px;}
.yc8_c00499{bottom:428.745000px;}
.yc5_c00499{bottom:429.630000px;}
.yc6_c00499{bottom:429.825000px;}
.yc4_c00499{bottom:430.905000px;}
.yc3_c00499{bottom:446.745000px;}
.yc2_c00499{bottom:448.245000px;}
.yc1_c00499{bottom:448.470000px;}
.ybf_c00499{bottom:449.970000px;}
.ybe_c00499{bottom:450.405000px;}
.yc0_c00499{bottom:451.905000px;}
.ybc_c00499{bottom:467.325000px;}
.yba_c00499{bottom:467.745000px;}
.ybd_c00499{bottom:468.630000px;}
.yb9_c00499{bottom:469.245000px;}
.ybb_c00499{bottom:469.470000px;}
.yb7_c00499{bottom:469.905000px;}
.yb8_c00499{bottom:470.970000px;}
.yb6_c00499{bottom:485.970000px;}
.yb2_c00499{bottom:488.325000px;}
.yb5_c00499{bottom:488.745000px;}
.yb0_c00499{bottom:488.970000px;}
.yb4_c00499{bottom:489.405000px;}
.yb3_c00499{bottom:489.630000px;}
.yb1_c00499{bottom:490.470000px;}
.ya9_c00499{bottom:506.325000px;}
.yae_c00499{bottom:506.745000px;}
.yaf_c00499{bottom:507.825000px;}
.yaa_c00499{bottom:508.905000px;}
.yad_c00499{bottom:509.130000px;}
.yab_c00499{bottom:509.325000px;}
.yac_c00499{bottom:509.970000px;}
.ya8_c00499{bottom:527.745000px;}
.ya7_c00499{bottom:528.405000px;}
.ya5_c00499{bottom:529.470000px;}
.ya6_c00499{bottom:529.905000px;}
.ya2_c00499{bottom:546.180000px;}
.ya4_c00499{bottom:547.050000px;}
.ya0_c00499{bottom:547.245000px;}
.ya3_c00499{bottom:549.405000px;}
.ya1_c00499{bottom:550.470000px;}
.y9d_c00499{bottom:566.745000px;}
.y9f_c00499{bottom:567.630000px;}
.y9c_c00499{bottom:568.470000px;}
.y9e_c00499{bottom:568.905000px;}
.y97_c00499{bottom:586.245000px;}
.y98_c00499{bottom:587.130000px;}
.y9b_c00499{bottom:587.325000px;}
.y99_c00499{bottom:587.970000px;}
.y96_c00499{bottom:588.405000px;}
.y9a_c00499{bottom:589.470000px;}
.y95_c00499{bottom:603.405000px;}
.y93_c00499{bottom:605.745000px;}
.y94_c00499{bottom:607.905000px;}
.y8d_c00499{bottom:625.245000px;}
.y8e_c00499{bottom:626.325000px;}
.y92_c00499{bottom:626.550000px;}
.y8f_c00499{bottom:626.745000px;}
.y91_c00499{bottom:627.405000px;}
.y90_c00499{bottom:628.905000px;}
.y8b_c00499{bottom:644.745000px;}
.y8c_c00499{bottom:645.825000px;}
.y8a_c00499{bottom:646.245000px;}
.y89_c00499{bottom:647.130000px;}
.y88_c00499{bottom:648.405000px;}
.y80_c00499{bottom:663.825000px;}
.y86_c00499{bottom:664.245000px;}
.y87_c00499{bottom:665.325000px;}
.y81_c00499{bottom:665.745000px;}
.y84_c00499{bottom:666.630000px;}
.y82_c00499{bottom:666.825000px;}
.y85_c00499{bottom:667.470000px;}
.y83_c00499{bottom:667.905000px;}
.y7d_c00499{bottom:683.745000px;}
.y7e_c00499{bottom:685.245000px;}
.y7b_c00499{bottom:685.905000px;}
.y7f_c00499{bottom:686.130000px;}
.y7a_c00499{bottom:686.970000px;}
.y7c_c00499{bottom:687.405000px;}
.y77_c00499{bottom:702.405000px;}
.y79_c00499{bottom:703.680000px;}
.y78_c00499{bottom:705.630000px;}
.y76_c00499{bottom:706.470000px;}
.y75_c00499{bottom:706.905000px;}
.y6d_c00499{bottom:723.405000px;}
.y74_c00499{bottom:723.825000px;}
.y6e_c00499{bottom:724.245000px;}
.y73_c00499{bottom:725.130000px;}
.y70_c00499{bottom:725.325000px;}
.y72_c00499{bottom:725.970000px;}
.y71_c00499{bottom:726.405000px;}
.y6f_c00499{bottom:726.630000px;}
.y6c_c00499{bottom:727.470000px;}
.y68_c00499{bottom:743.745000px;}
.y69_c00499{bottom:745.905000px;}
.y6b_c00499{bottom:746.130000px;}
.y6a_c00499{bottom:746.970000px;}
.y64_c00499{bottom:762.405000px;}
.y65_c00499{bottom:763.245000px;}
.y67_c00499{bottom:764.130000px;}
.y62_c00499{bottom:764.325000px;}
.y63_c00499{bottom:765.405000px;}
.y66_c00499{bottom:765.630000px;}
.y5e_c00499{bottom:781.905000px;}
.y5b_c00499{bottom:782.745000px;}
.y5f_c00499{bottom:783.825000px;}
.y5d_c00499{bottom:784.245000px;}
.y5a_c00499{bottom:784.905000px;}
.y5c_c00499{bottom:785.130000px;}
.y61_c00499{bottom:785.970000px;}
.y60_c00499{bottom:786.405000px;}
.y52_c00499{bottom:802.245000px;}
.y56_c00499{bottom:802.470000px;}
.y59_c00499{bottom:803.325000px;}
.y55_c00499{bottom:803.745000px;}
.y57_c00499{bottom:804.405000px;}
.y58_c00499{bottom:804.630000px;}
.y54_c00499{bottom:805.470000px;}
.y53_c00499{bottom:805.905000px;}
.y51_c00499{bottom:821.745000px;}
.y50_c00499{bottom:821.970000px;}
.y4e_c00499{bottom:823.245000px;}
.y4f_c00499{bottom:824.130000px;}
.y4d_c00499{bottom:825.405000px;}
.y4c_c00499{bottom:841.245000px;}
.y49_c00499{bottom:842.745000px;}
.y48_c00499{bottom:843.630000px;}
.y4a_c00499{bottom:844.470000px;}
.y4b_c00499{bottom:844.905000px;}
.y46_c00499{bottom:859.905000px;}
.y3f_c00499{bottom:862.245000px;}
.y45_c00499{bottom:862.905000px;}
.y47_c00499{bottom:863.130000px;}
.y44_c00499{bottom:863.325000px;}
.y42_c00499{bottom:863.970000px;}
.y40_c00499{bottom:864.405000px;}
.y41_c00499{bottom:864.630000px;}
.y43_c00499{bottom:865.470000px;}
.y3c_c00499{bottom:881.745000px;}
.y3e_c00499{bottom:882.630000px;}
.y3d_c00499{bottom:883.470000px;}
.y3b_c00499{bottom:883.905000px;}
.y39_c00499{bottom:900.825000px;}
.y37_c00499{bottom:901.245000px;}
.y3a_c00499{bottom:902.970000px;}
.y38_c00499{bottom:903.405000px;}
.y36_c00499{bottom:920.745000px;}
.y35_c00499{bottom:921.180000px;}
.y31_c00499{bottom:921.405000px;}
.y33_c00499{bottom:922.245000px;}
.y34_c00499{bottom:923.325000px;}
.y32_c00499{bottom:924.405000px;}
.y2e_c00499{bottom:940.245000px;}
.y2f_c00499{bottom:940.470000px;}
.y29_c00499{bottom:941.325000px;}
.y2b_c00499{bottom:941.745000px;}
.y30_c00499{bottom:941.970000px;}
.y28_c00499{bottom:942.405000px;}
.y2d_c00499{bottom:942.630000px;}
.y2c_c00499{bottom:943.470000px;}
.y2a_c00499{bottom:943.905000px;}
.y21_c00499{bottom:959.745000px;}
.y20_c00499{bottom:959.970000px;}
.y27_c00499{bottom:960.825000px;}
.y25_c00499{bottom:961.245000px;}
.y26_c00499{bottom:961.905000px;}
.y24_c00499{bottom:962.130000px;}
.y22_c00499{bottom:962.970000px;}
.y23_c00499{bottom:963.405000px;}
.y19_c00499{bottom:979.245000px;}
.y1d_c00499{bottom:979.680000px;}
.y1f_c00499{bottom:980.745000px;}
.y1a_c00499{bottom:981.630000px;}
.y1e_c00499{bottom:981.825000px;}
.y1c_c00499{bottom:982.470000px;}
.y1b_c00499{bottom:982.905000px;}
.y18_c00499{bottom:999.825000px;}
.y15_c00499{bottom:1000.245000px;}
.y16_c00499{bottom:1001.130000px;}
.y17_c00499{bottom:1001.970000px;}
.y14_c00499{bottom:1002.405000px;}
.y13_c00499{bottom:1019.745000px;}
.y10_c00499{bottom:1020.630000px;}
.yf_c00499{bottom:1021.470000px;}
.y11_c00499{bottom:1021.905000px;}
.y12_c00499{bottom:1022.970000px;}
.yc_c00499{bottom:1038.405000px;}
.y9_c00499{bottom:1039.245000px;}
.ye_c00499{bottom:1040.130000px;}
.yb_c00499{bottom:1040.325000px;}
.yd_c00499{bottom:1040.970000px;}
.ya_c00499{bottom:1041.405000px;}
.y4_c00499{bottom:1057.470000px;}
.y5_c00499{bottom:1057.905000px;}
.y3_c00499{bottom:1058.745000px;}
.y7_c00499{bottom:1060.470000px;}
.y6_c00499{bottom:1060.905000px;}
.y8_c00499{bottom:1061.970000px;}
.y1_c00499{bottom:1098.825000px;}
.y2_c00499{bottom:1099.050000px;}
.h6_c00499{height:23.025234px;}
.h2_c00499{height:25.091602px;}
.h4_c00499{height:31.364502px;}
.h5_c00499{height:35.571035px;}
.h1_c00499{height:39.777568px;}
.h3_c00499{height:43.910303px;}
.h7_c00499{height:48.116836px;}
.h8_c00499{height:53.571035px;}
.h0_c00499{height:1335.000000px;}
.w0_c00499{width:880.500000px;}
.x0_c00499{left:0.000000px;}
.x1_c00499{left:151.500000px;}
.x3_c00499{left:152.580000px;}
.x21_c00499{left:168.000000px;}
.x46_c00499{left:169.920000px;}
.x1e_c00499{left:171.000000px;}
.x3b_c00499{left:174.000000px;}
.xc2_c00499{left:176.355000px;}
.xf3_c00499{left:180.000000px;}
.xe3_c00499{left:181.500000px;}
.x4_c00499{left:182.580000px;}
.x1f_c00499{left:184.920000px;}
.x108_c00499{left:186.000000px;}
.xcf_c00499{left:187.920000px;}
.x2f_c00499{left:190.500000px;}
.x65_c00499{left:192.420000px;}
.xd3_c00499{left:193.500000px;}
.x52_c00499{left:195.000000px;}
.xb9_c00499{left:196.500000px;}
.x7b_c00499{left:198.000000px;}
.x22_c00499{left:199.080000px;}
.xa2_c00499{left:201.420000px;}
.x84_c00499{left:202.920000px;}
.x47_c00499{left:207.000000px;}
.xab_c00499{left:208.500000px;}
.x5_c00499{left:210.000000px;}
.xdb_c00499{left:211.080000px;}
.x96_c00499{left:213.000000px;}
.x30_c00499{left:217.080000px;}
.xae_c00499{left:219.000000px;}
.xf7_c00499{left:225.000000px;}
.xe4_c00499{left:226.500000px;}
.x66_c00499{left:229.500000px;}
.x12_c00499{left:230.580000px;}
.x8e_c00499{left:232.500000px;}
.x9d_c00499{left:235.500000px;}
.x53_c00499{left:236.580000px;}
.x85_c00499{left:240.420000px;}
.x6_c00499{left:243.000000px;}
.x5c_c00499{left:244.920000px;}
.xba_c00499{left:246.420000px;}
.xa3_c00499{left:247.500000px;}
.x97_c00499{left:249.000000px;}
.x77_c00499{left:250.500000px;}
.x31_c00499{left:253.500000px;}
.x7c_c00499{left:256.920000px;}
.x8f_c00499{left:259.500000px;}
.x3c_c00499{left:261.000000px;}
.xfb_c00499{left:265.920000px;}
.x23_c00499{left:267.000000px;}
.x13_c00499{left:268.920000px;}
.x78_c00499{left:270.000000px;}
.x48_c00499{left:271.500000px;}
.x32_c00499{left:274.920000px;}
.xd6_c00499{left:277.080000px;}
.x5d_c00499{left:279.420000px;}
.x67_c00499{left:280.500000px;}
.x7_c00499{left:281.580000px;}
.xf8_c00499{left:283.080000px;}
.x7d_c00499{left:284.580000px;}
.x54_c00499{left:286.080000px;}
.xd4_c00499{left:288.000000px;}
.xed_c00499{left:290.580000px;}
.x3d_c00499{left:292.080000px;}
.x104_c00499{left:293.580000px;}
.x14_c00499{left:295.080000px;}
.x10d_c00499{left:296.580000px;}
.x68_c00499{left:298.920000px;}
.x20_c00499{left:300.000000px;}
.x86_c00499{left:301.080000px;}
.xa4_c00499{left:306.000000px;}
.xee_c00499{left:307.080000px;}
.xac_c00499{left:310.500000px;}
.x5e_c00499{left:313.500000px;}
.x33_c00499{left:315.000000px;}
.x49_c00499{left:318.000000px;}
.xdc_c00499{left:319.500000px;}
.xb4_c00499{left:320.775000px;}
.x8_c00499{left:322.080000px;}
.x24_c00499{left:324.000000px;}
.x69_c00499{left:325.500000px;}
.x9e_c00499{left:327.420000px;}
.x90_c00499{left:328.920000px;}
.xa5_c00499{left:331.500000px;}
.xad_c00499{left:333.000000px;}
.xca_c00499{left:334.500000px;}
.xef_c00499{left:337.500000px;}
.x98_c00499{left:338.580000px;}
.x87_c00499{left:340.920000px;}
.x5f_c00499{left:342.000000px;}
.xc3_c00499{left:343.080000px;}
.x10e_c00499{left:344.775000px;}
.x25_c00499{left:348.000000px;}
.x3e_c00499{left:351.000000px;}
.xd0_c00499{left:353.580000px;}
.xbb_c00499{left:355.500000px;}
.x15_c00499{left:358.080000px;}
.x71_c00499{left:361.080000px;}
.x55_c00499{left:362.775000px;}
.x34_c00499{left:364.500000px;}
.x91_c00499{left:366.000000px;}
.x88_c00499{left:367.920000px;}
.xb5_c00499{left:369.000000px;}
.xfc_c00499{left:370.500000px;}
.xe5_c00499{left:372.000000px;}
.xaf_c00499{left:373.500000px;}
.x79_c00499{left:375.000000px;}
.xa6_c00499{left:376.500000px;}
.x3f_c00499{left:377.580000px;}
.x9_c00499{left:379.500000px;}
.xdd_c00499{left:380.580000px;}
.x111_c00499{left:382.080000px;}
.x9f_c00499{left:383.580000px;}
.xc4_c00499{left:386.580000px;}
.x4a_c00499{left:388.500000px;}
.xe6_c00499{left:391.500000px;}
.x72_c00499{left:393.000000px;}
.x56_c00499{left:395.580000px;}
.x26_c00499{left:397.500000px;}
.x7a_c00499{left:399.000000px;}
.x89_c00499{left:400.500000px;}
.xcb_c00499{left:402.420000px;}
.x35_c00499{left:403.500000px;}
.x2_c00499{left:406.500000px;}
.x60_c00499{left:408.000000px;}
.xde_c00499{left:409.920000px;}
.xa0_c00499{left:414.000000px;}
.xf4_c00499{left:415.500000px;}
.x16_c00499{left:417.000000px;}
.xbc_c00499{left:418.920000px;}
.x57_c00499{left:421.920000px;}
.x40_c00499{left:424.920000px;}
.xb0_c00499{left:426.000000px;}
.xa_c00499{left:427.920000px;}
.xff_c00499{left:430.500000px;}
.x73_c00499{left:433.500000px;}
.xf9_c00499{left:435.000000px;}
.xf0_c00499{left:436.080000px;}
.x8a_c00499{left:439.080000px;}
.xb6_c00499{left:441.420000px;}
.x27_c00499{left:442.920000px;}
.x4b_c00499{left:445.080000px;}
.x7e_c00499{left:448.920000px;}
.x17_c00499{left:450.000000px;}
.x36_c00499{left:452.580000px;}
.xb_c00499{left:454.500000px;}
.x58_c00499{left:456.000000px;}
.x6a_c00499{left:457.080000px;}
.x41_c00499{left:459.000000px;}
.xfd_c00499{left:460.500000px;}
.xbd_c00499{left:463.080000px;}
.xc5_c00499{left:465.420000px;}
.x28_c00499{left:469.500000px;}
.xb7_c00499{left:471.000000px;}
.xdf_c00499{left:472.920000px;}
.x6b_c00499{left:475.920000px;}
.xea_c00499{left:477.000000px;}
.x42_c00499{left:478.500000px;}
.xa1_c00499{left:480.000000px;}
.xbe_c00499{left:481.080000px;}
.x100_c00499{left:482.580000px;}
.x74_c00499{left:484.500000px;}
.x37_c00499{left:485.580000px;}
.x7f_c00499{left:487.500000px;}
.x59_c00499{left:490.500000px;}
.x10f_c00499{left:491.580000px;}
.xc_c00499{left:493.500000px;}
.x99_c00499{left:495.420000px;}
.x105_c00499{left:496.920000px;}
.x61_c00499{left:499.500000px;}
.x4c_c00499{left:502.920000px;}
.xe7_c00499{left:504.000000px;}
.x43_c00499{left:505.920000px;}
.xc6_c00499{left:509.775000px;}
.xd_c00499{left:512.580000px;}
.xb8_c00499{left:514.500000px;}
.xeb_c00499{left:516.000000px;}
.xcc_c00499{left:517.080000px;}
.x92_c00499{left:519.000000px;}
.x29_c00499{left:520.080000px;}
.xfa_c00499{left:522.420000px;}
.x80_c00499{left:525.000000px;}
.x62_c00499{left:526.920000px;}
.xf5_c00499{left:528.000000px;}
.x8b_c00499{left:531.000000px;}
.xe_c00499{left:532.500000px;}
.x5a_c00499{left:533.775000px;}
.x4d_c00499{left:537.420000px;}
.x6c_c00499{left:538.500000px;}
.x18_c00499{left:540.000000px;}
.xe0_c00499{left:541.920000px;}
.xd1_c00499{left:543.855000px;}
.xc7_c00499{left:547.500000px;}
.x2a_c00499{left:549.000000px;}
.x38_c00499{left:550.080000px;}
.x63_c00499{left:551.580000px;}
.x19_c00499{left:553.080000px;}
.xd7_c00499{left:555.000000px;}
.x6d_c00499{left:558.000000px;}
.xd9_c00499{left:559.080000px;}
.x9a_c00499{left:561.000000px;}
.x4e_c00499{left:562.080000px;}
.xa7_c00499{left:564.000000px;}
.xc8_c00499{left:565.080000px;}
.x101_c00499{left:568.500000px;}
.x81_c00499{left:569.580000px;}
.xd5_c00499{left:571.080000px;}
.x44_c00499{left:573.420000px;}
.x2b_c00499{left:576.000000px;}
.xf_c00499{left:577.080000px;}
.xf1_c00499{left:579.000000px;}
.xd2_c00499{left:580.080000px;}
.xb1_c00499{left:582.000000px;}
.xa8_c00499{left:583.080000px;}
.xbf_c00499{left:584.580000px;}
.x75_c00499{left:588.000000px;}
.x110_c00499{left:589.500000px;}
.x1a_c00499{left:590.775000px;}
.xd8_c00499{left:592.920000px;}
.x2c_c00499{left:594.000000px;}
.xcd_c00499{left:598.080000px;}
.x109_c00499{left:600.000000px;}
.xc0_c00499{left:604.500000px;}
.x6e_c00499{left:606.420000px;}
.x10b_c00499{left:609.000000px;}
.x45_c00499{left:610.920000px;}
.x39_c00499{left:612.000000px;}
.x10_c00499{left:614.580000px;}
.xfe_c00499{left:616.500000px;}
.x93_c00499{left:617.580000px;}
.xb2_c00499{left:619.920000px;}
.xa9_c00499{left:621.000000px;}
.x2d_c00499{left:622.920000px;}
.x82_c00499{left:624.000000px;}
.x5b_c00499{left:626.145000px;}
.x8c_c00499{left:628.500000px;}
.x6f_c00499{left:630.420000px;}
.x1b_c00499{left:631.920000px;}
.xf6_c00499{left:637.500000px;}
.x4f_c00499{left:640.080000px;}
.x83_c00499{left:642.000000px;}
.x94_c00499{left:645.000000px;}
.x3a_c00499{left:646.500000px;}
.xec_c00499{left:649.500000px;}
.x106_c00499{left:651.420000px;}
.x10c_c00499{left:652.920000px;}
.x102_c00499{left:657.000000px;}
.x76_c00499{left:658.500000px;}
.xce_c00499{left:660.000000px;}
.x9b_c00499{left:664.080000px;}
.x2e_c00499{left:669.000000px;}
.xe8_c00499{left:672.000000px;}
.x95_c00499{left:673.080000px;}
.x8d_c00499{left:675.420000px;}
.xaa_c00499{left:677.580000px;}
.x50_c00499{left:679.080000px;}
.xf2_c00499{left:684.000000px;}
.x103_c00499{left:685.500000px;}
.xda_c00499{left:688.500000px;}
.x10a_c00499{left:690.000000px;}
.xb3_c00499{left:691.080000px;}
.x11_c00499{left:693.420000px;}
.x64_c00499{left:694.920000px;}
.x51_c00499{left:696.420000px;}
.x1c_c00499{left:700.500000px;}
.xe9_c00499{left:702.420000px;}
.xe1_c00499{left:703.500000px;}
.xc9_c00499{left:708.000000px;}
.x70_c00499{left:709.500000px;}
.xc1_c00499{left:711.855000px;}
.x107_c00499{left:712.920000px;}
.x1d_c00499{left:715.500000px;}
.xe2_c00499{left:720.000000px;}
.x9c_c00499{left:723.000000px;}
@media print{
.v2_c00499{vertical-align:-5.333333pt;}
.v0_c00499{vertical-align:0.000000pt;}
.v1_c00499{vertical-align:16.000000pt;}
.ls0_c00499{letter-spacing:0.000000pt;}
.ws3_c00499{word-spacing:-7.831038pt;}
.ws1_c00499{word-spacing:-6.532163pt;}
.ws0_c00499{word-spacing:-6.211569pt;}
.ws2_c00499{word-spacing:-5.392971pt;}
.ws4_c00499{word-spacing:0.000000pt;}
.fs5_c00499{font-size:16.640000pt;}
.fs1_c00499{font-size:18.133333pt;}
.fs3_c00499{font-size:22.666667pt;}
.fs4_c00499{font-size:25.706667pt;}
.fs0_c00499{font-size:28.746667pt;}
.fs2_c00499{font-size:31.733333pt;}
.fs6_c00499{font-size:34.773333pt;}
.y0_c00499{bottom:0.000000pt;}
.yf7_c00499{bottom:222.440000pt;}
.yf6_c00499{bottom:222.640000pt;}
.yf3_c00499{bottom:223.226667pt;}
.yf9_c00499{bottom:223.400000pt;}
.yf4_c00499{bottom:223.973333pt;}
.yf5_c00499{bottom:224.360000pt;}
.yf8_c00499{bottom:225.306667pt;}
.yf2_c00499{bottom:239.026667pt;}
.yf0_c00499{bottom:239.773333pt;}
.yef_c00499{bottom:241.693333pt;}
.yf1_c00499{bottom:242.640000pt;}
.yea_c00499{bottom:257.106667pt;}
.yed_c00499{bottom:258.266667pt;}
.yeb_c00499{bottom:258.440000pt;}
.ye9_c00499{bottom:259.026667pt;}
.yee_c00499{bottom:259.226667pt;}
.yec_c00499{bottom:259.973333pt;}
.ye6_c00499{bottom:274.826667pt;}
.ye7_c00499{bottom:275.026667pt;}
.ye5_c00499{bottom:275.773333pt;}
.ye8_c00499{bottom:277.306667pt;}
.ye4_c00499{bottom:277.693333pt;}
.ye0_c00499{bottom:292.160000pt;}
.ye2_c00499{bottom:293.106667pt;}
.ye3_c00499{bottom:293.893333pt;}
.ye1_c00499{bottom:295.026667pt;}
.ydc_c00499{bottom:309.106667pt;}
.ydd_c00499{bottom:310.440000pt;}
.yde_c00499{bottom:312.360000pt;}
.ydf_c00499{bottom:313.306667pt;}
.yd9_c00499{bottom:327.773333pt;}
.yd7_c00499{bottom:328.733333pt;}
.yd8_c00499{bottom:329.693333pt;}
.yda_c00499{bottom:329.893333pt;}
.ydb_c00499{bottom:330.640000pt;}
.yd6_c00499{bottom:346.066667pt;}
.yd1_c00499{bottom:347.026667pt;}
.yd4_c00499{bottom:347.226667pt;}
.yd5_c00499{bottom:347.400000pt;}
.yd2_c00499{bottom:347.973333pt;}
.yd3_c00499{bottom:348.360000pt;}
.yce_c00499{bottom:362.440000pt;}
.ycf_c00499{bottom:363.400000pt;}
.ycb_c00499{bottom:363.773333pt;}
.ycd_c00499{bottom:364.360000pt;}
.ycc_c00499{bottom:364.560000pt;}
.yca_c00499{bottom:364.733333pt;}
.yd0_c00499{bottom:365.306667pt;}
.yc9_c00499{bottom:365.693333pt;}
.yc7_c00499{bottom:379.773333pt;}
.yc8_c00499{bottom:381.106667pt;}
.yc5_c00499{bottom:381.893333pt;}
.yc6_c00499{bottom:382.066667pt;}
.yc4_c00499{bottom:383.026667pt;}
.yc3_c00499{bottom:397.106667pt;}
.yc2_c00499{bottom:398.440000pt;}
.yc1_c00499{bottom:398.640000pt;}
.ybf_c00499{bottom:399.973333pt;}
.ybe_c00499{bottom:400.360000pt;}
.yc0_c00499{bottom:401.693333pt;}
.ybc_c00499{bottom:415.400000pt;}
.yba_c00499{bottom:415.773333pt;}
.ybd_c00499{bottom:416.560000pt;}
.yb9_c00499{bottom:417.106667pt;}
.ybb_c00499{bottom:417.306667pt;}
.yb7_c00499{bottom:417.693333pt;}
.yb8_c00499{bottom:418.640000pt;}
.yb6_c00499{bottom:431.973333pt;}
.yb2_c00499{bottom:434.066667pt;}
.yb5_c00499{bottom:434.440000pt;}
.yb0_c00499{bottom:434.640000pt;}
.yb4_c00499{bottom:435.026667pt;}
.yb3_c00499{bottom:435.226667pt;}
.yb1_c00499{bottom:435.973333pt;}
.ya9_c00499{bottom:450.066667pt;}
.yae_c00499{bottom:450.440000pt;}
.yaf_c00499{bottom:451.400000pt;}
.yaa_c00499{bottom:452.360000pt;}
.yad_c00499{bottom:452.560000pt;}
.yab_c00499{bottom:452.733333pt;}
.yac_c00499{bottom:453.306667pt;}
.ya8_c00499{bottom:469.106667pt;}
.ya7_c00499{bottom:469.693333pt;}
.ya5_c00499{bottom:470.640000pt;}
.ya6_c00499{bottom:471.026667pt;}
.ya2_c00499{bottom:485.493333pt;}
.ya4_c00499{bottom:486.266667pt;}
.ya0_c00499{bottom:486.440000pt;}
.ya3_c00499{bottom:488.360000pt;}
.ya1_c00499{bottom:489.306667pt;}
.y9d_c00499{bottom:503.773333pt;}
.y9f_c00499{bottom:504.560000pt;}
.y9c_c00499{bottom:505.306667pt;}
.y9e_c00499{bottom:505.693333pt;}
.y97_c00499{bottom:521.106667pt;}
.y98_c00499{bottom:521.893333pt;}
.y9b_c00499{bottom:522.066667pt;}
.y99_c00499{bottom:522.640000pt;}
.y96_c00499{bottom:523.026667pt;}
.y9a_c00499{bottom:523.973333pt;}
.y95_c00499{bottom:536.360000pt;}
.y93_c00499{bottom:538.440000pt;}
.y94_c00499{bottom:540.360000pt;}
.y8d_c00499{bottom:555.773333pt;}
.y8e_c00499{bottom:556.733333pt;}
.y92_c00499{bottom:556.933333pt;}
.y8f_c00499{bottom:557.106667pt;}
.y91_c00499{bottom:557.693333pt;}
.y90_c00499{bottom:559.026667pt;}
.y8b_c00499{bottom:573.106667pt;}
.y8c_c00499{bottom:574.066667pt;}
.y8a_c00499{bottom:574.440000pt;}
.y89_c00499{bottom:575.226667pt;}
.y88_c00499{bottom:576.360000pt;}
.y80_c00499{bottom:590.066667pt;}
.y86_c00499{bottom:590.440000pt;}
.y87_c00499{bottom:591.400000pt;}
.y81_c00499{bottom:591.773333pt;}
.y84_c00499{bottom:592.560000pt;}
.y82_c00499{bottom:592.733333pt;}
.y85_c00499{bottom:593.306667pt;}
.y83_c00499{bottom:593.693333pt;}
.y7d_c00499{bottom:607.773333pt;}
.y7e_c00499{bottom:609.106667pt;}
.y7b_c00499{bottom:609.693333pt;}
.y7f_c00499{bottom:609.893333pt;}
.y7a_c00499{bottom:610.640000pt;}
.y7c_c00499{bottom:611.026667pt;}
.y77_c00499{bottom:624.360000pt;}
.y79_c00499{bottom:625.493333pt;}
.y78_c00499{bottom:627.226667pt;}
.y76_c00499{bottom:627.973333pt;}
.y75_c00499{bottom:628.360000pt;}
.y6d_c00499{bottom:643.026667pt;}
.y74_c00499{bottom:643.400000pt;}
.y6e_c00499{bottom:643.773333pt;}
.y73_c00499{bottom:644.560000pt;}
.y70_c00499{bottom:644.733333pt;}
.y72_c00499{bottom:645.306667pt;}
.y71_c00499{bottom:645.693333pt;}
.y6f_c00499{bottom:645.893333pt;}
.y6c_c00499{bottom:646.640000pt;}
.y68_c00499{bottom:661.106667pt;}
.y69_c00499{bottom:663.026667pt;}
.y6b_c00499{bottom:663.226667pt;}
.y6a_c00499{bottom:663.973333pt;}
.y64_c00499{bottom:677.693333pt;}
.y65_c00499{bottom:678.440000pt;}
.y67_c00499{bottom:679.226667pt;}
.y62_c00499{bottom:679.400000pt;}
.y63_c00499{bottom:680.360000pt;}
.y66_c00499{bottom:680.560000pt;}
.y5e_c00499{bottom:695.026667pt;}
.y5b_c00499{bottom:695.773333pt;}
.y5f_c00499{bottom:696.733333pt;}
.y5d_c00499{bottom:697.106667pt;}
.y5a_c00499{bottom:697.693333pt;}
.y5c_c00499{bottom:697.893333pt;}
.y61_c00499{bottom:698.640000pt;}
.y60_c00499{bottom:699.026667pt;}
.y52_c00499{bottom:713.106667pt;}
.y56_c00499{bottom:713.306667pt;}
.y59_c00499{bottom:714.066667pt;}
.y55_c00499{bottom:714.440000pt;}
.y57_c00499{bottom:715.026667pt;}
.y58_c00499{bottom:715.226667pt;}
.y54_c00499{bottom:715.973333pt;}
.y53_c00499{bottom:716.360000pt;}
.y51_c00499{bottom:730.440000pt;}
.y50_c00499{bottom:730.640000pt;}
.y4e_c00499{bottom:731.773333pt;}
.y4f_c00499{bottom:732.560000pt;}
.y4d_c00499{bottom:733.693333pt;}
.y4c_c00499{bottom:747.773333pt;}
.y49_c00499{bottom:749.106667pt;}
.y48_c00499{bottom:749.893333pt;}
.y4a_c00499{bottom:750.640000pt;}
.y4b_c00499{bottom:751.026667pt;}
.y46_c00499{bottom:764.360000pt;}
.y3f_c00499{bottom:766.440000pt;}
.y45_c00499{bottom:767.026667pt;}
.y47_c00499{bottom:767.226667pt;}
.y44_c00499{bottom:767.400000pt;}
.y42_c00499{bottom:767.973333pt;}
.y40_c00499{bottom:768.360000pt;}
.y41_c00499{bottom:768.560000pt;}
.y43_c00499{bottom:769.306667pt;}
.y3c_c00499{bottom:783.773333pt;}
.y3e_c00499{bottom:784.560000pt;}
.y3d_c00499{bottom:785.306667pt;}
.y3b_c00499{bottom:785.693333pt;}
.y39_c00499{bottom:800.733333pt;}
.y37_c00499{bottom:801.106667pt;}
.y3a_c00499{bottom:802.640000pt;}
.y38_c00499{bottom:803.026667pt;}
.y36_c00499{bottom:818.440000pt;}
.y35_c00499{bottom:818.826667pt;}
.y31_c00499{bottom:819.026667pt;}
.y33_c00499{bottom:819.773333pt;}
.y34_c00499{bottom:820.733333pt;}
.y32_c00499{bottom:821.693333pt;}
.y2e_c00499{bottom:835.773333pt;}
.y2f_c00499{bottom:835.973333pt;}
.y29_c00499{bottom:836.733333pt;}
.y2b_c00499{bottom:837.106667pt;}
.y30_c00499{bottom:837.306667pt;}
.y28_c00499{bottom:837.693333pt;}
.y2d_c00499{bottom:837.893333pt;}
.y2c_c00499{bottom:838.640000pt;}
.y2a_c00499{bottom:839.026667pt;}
.y21_c00499{bottom:853.106667pt;}
.y20_c00499{bottom:853.306667pt;}
.y27_c00499{bottom:854.066667pt;}
.y25_c00499{bottom:854.440000pt;}
.y26_c00499{bottom:855.026667pt;}
.y24_c00499{bottom:855.226667pt;}
.y22_c00499{bottom:855.973333pt;}
.y23_c00499{bottom:856.360000pt;}
.y19_c00499{bottom:870.440000pt;}
.y1d_c00499{bottom:870.826667pt;}
.y1f_c00499{bottom:871.773333pt;}
.y1a_c00499{bottom:872.560000pt;}
.y1e_c00499{bottom:872.733333pt;}
.y1c_c00499{bottom:873.306667pt;}
.y1b_c00499{bottom:873.693333pt;}
.y18_c00499{bottom:888.733333pt;}
.y15_c00499{bottom:889.106667pt;}
.y16_c00499{bottom:889.893333pt;}
.y17_c00499{bottom:890.640000pt;}
.y14_c00499{bottom:891.026667pt;}
.y13_c00499{bottom:906.440000pt;}
.y10_c00499{bottom:907.226667pt;}
.yf_c00499{bottom:907.973333pt;}
.y11_c00499{bottom:908.360000pt;}
.y12_c00499{bottom:909.306667pt;}
.yc_c00499{bottom:923.026667pt;}
.y9_c00499{bottom:923.773333pt;}
.ye_c00499{bottom:924.560000pt;}
.yb_c00499{bottom:924.733333pt;}
.yd_c00499{bottom:925.306667pt;}
.ya_c00499{bottom:925.693333pt;}
.y4_c00499{bottom:939.973333pt;}
.y5_c00499{bottom:940.360000pt;}
.y3_c00499{bottom:941.106667pt;}
.y7_c00499{bottom:942.640000pt;}
.y6_c00499{bottom:943.026667pt;}
.y8_c00499{bottom:943.973333pt;}
.y1_c00499{bottom:976.733333pt;}
.y2_c00499{bottom:976.933333pt;}
.h6_c00499{height:20.466875pt;}
.h2_c00499{height:22.303646pt;}
.h4_c00499{height:27.879557pt;}
.h5_c00499{height:31.618698pt;}
.h1_c00499{height:35.357839pt;}
.h3_c00499{height:39.031380pt;}
.h7_c00499{height:42.770521pt;}
.h8_c00499{height:47.618698pt;}
.h0_c00499{height:1186.666667pt;}
.w0_c00499{width:782.666667pt;}
.x0_c00499{left:0.000000pt;}
.x1_c00499{left:134.666667pt;}
.x3_c00499{left:135.626667pt;}
.x21_c00499{left:149.333333pt;}
.x46_c00499{left:151.040000pt;}
.x1e_c00499{left:152.000000pt;}
.x3b_c00499{left:154.666667pt;}
.xc2_c00499{left:156.760000pt;}
.xf3_c00499{left:160.000000pt;}
.xe3_c00499{left:161.333333pt;}
.x4_c00499{left:162.293333pt;}
.x1f_c00499{left:164.373333pt;}
.x108_c00499{left:165.333333pt;}
.xcf_c00499{left:167.040000pt;}
.x2f_c00499{left:169.333333pt;}
.x65_c00499{left:171.040000pt;}
.xd3_c00499{left:172.000000pt;}
.x52_c00499{left:173.333333pt;}
.xb9_c00499{left:174.666667pt;}
.x7b_c00499{left:176.000000pt;}
.x22_c00499{left:176.960000pt;}
.xa2_c00499{left:179.040000pt;}
.x84_c00499{left:180.373333pt;}
.x47_c00499{left:184.000000pt;}
.xab_c00499{left:185.333333pt;}
.x5_c00499{left:186.666667pt;}
.xdb_c00499{left:187.626667pt;}
.x96_c00499{left:189.333333pt;}
.x30_c00499{left:192.960000pt;}
.xae_c00499{left:194.666667pt;}
.xf7_c00499{left:200.000000pt;}
.xe4_c00499{left:201.333333pt;}
.x66_c00499{left:204.000000pt;}
.x12_c00499{left:204.960000pt;}
.x8e_c00499{left:206.666667pt;}
.x9d_c00499{left:209.333333pt;}
.x53_c00499{left:210.293333pt;}
.x85_c00499{left:213.706667pt;}
.x6_c00499{left:216.000000pt;}
.x5c_c00499{left:217.706667pt;}
.xba_c00499{left:219.040000pt;}
.xa3_c00499{left:220.000000pt;}
.x97_c00499{left:221.333333pt;}
.x77_c00499{left:222.666667pt;}
.x31_c00499{left:225.333333pt;}
.x7c_c00499{left:228.373333pt;}
.x8f_c00499{left:230.666667pt;}
.x3c_c00499{left:232.000000pt;}
.xfb_c00499{left:236.373333pt;}
.x23_c00499{left:237.333333pt;}
.x13_c00499{left:239.040000pt;}
.x78_c00499{left:240.000000pt;}
.x48_c00499{left:241.333333pt;}
.x32_c00499{left:244.373333pt;}
.xd6_c00499{left:246.293333pt;}
.x5d_c00499{left:248.373333pt;}
.x67_c00499{left:249.333333pt;}
.x7_c00499{left:250.293333pt;}
.xf8_c00499{left:251.626667pt;}
.x7d_c00499{left:252.960000pt;}
.x54_c00499{left:254.293333pt;}
.xd4_c00499{left:256.000000pt;}
.xed_c00499{left:258.293333pt;}
.x3d_c00499{left:259.626667pt;}
.x104_c00499{left:260.960000pt;}
.x14_c00499{left:262.293333pt;}
.x10d_c00499{left:263.626667pt;}
.x68_c00499{left:265.706667pt;}
.x20_c00499{left:266.666667pt;}
.x86_c00499{left:267.626667pt;}
.xa4_c00499{left:272.000000pt;}
.xee_c00499{left:272.960000pt;}
.xac_c00499{left:276.000000pt;}
.x5e_c00499{left:278.666667pt;}
.x33_c00499{left:280.000000pt;}
.x49_c00499{left:282.666667pt;}
.xdc_c00499{left:284.000000pt;}
.xb4_c00499{left:285.133333pt;}
.x8_c00499{left:286.293333pt;}
.x24_c00499{left:288.000000pt;}
.x69_c00499{left:289.333333pt;}
.x9e_c00499{left:291.040000pt;}
.x90_c00499{left:292.373333pt;}
.xa5_c00499{left:294.666667pt;}
.xad_c00499{left:296.000000pt;}
.xca_c00499{left:297.333333pt;}
.xef_c00499{left:300.000000pt;}
.x98_c00499{left:300.960000pt;}
.x87_c00499{left:303.040000pt;}
.x5f_c00499{left:304.000000pt;}
.xc3_c00499{left:304.960000pt;}
.x10e_c00499{left:306.466667pt;}
.x25_c00499{left:309.333333pt;}
.x3e_c00499{left:312.000000pt;}
.xd0_c00499{left:314.293333pt;}
.xbb_c00499{left:316.000000pt;}
.x15_c00499{left:318.293333pt;}
.x71_c00499{left:320.960000pt;}
.x55_c00499{left:322.466667pt;}
.x34_c00499{left:324.000000pt;}
.x91_c00499{left:325.333333pt;}
.x88_c00499{left:327.040000pt;}
.xb5_c00499{left:328.000000pt;}
.xfc_c00499{left:329.333333pt;}
.xe5_c00499{left:330.666667pt;}
.xaf_c00499{left:332.000000pt;}
.x79_c00499{left:333.333333pt;}
.xa6_c00499{left:334.666667pt;}
.x3f_c00499{left:335.626667pt;}
.x9_c00499{left:337.333333pt;}
.xdd_c00499{left:338.293333pt;}
.x111_c00499{left:339.626667pt;}
.x9f_c00499{left:340.960000pt;}
.xc4_c00499{left:343.626667pt;}
.x4a_c00499{left:345.333333pt;}
.xe6_c00499{left:348.000000pt;}
.x72_c00499{left:349.333333pt;}
.x56_c00499{left:351.626667pt;}
.x26_c00499{left:353.333333pt;}
.x7a_c00499{left:354.666667pt;}
.x89_c00499{left:356.000000pt;}
.xcb_c00499{left:357.706667pt;}
.x35_c00499{left:358.666667pt;}
.x2_c00499{left:361.333333pt;}
.x60_c00499{left:362.666667pt;}
.xde_c00499{left:364.373333pt;}
.xa0_c00499{left:368.000000pt;}
.xf4_c00499{left:369.333333pt;}
.x16_c00499{left:370.666667pt;}
.xbc_c00499{left:372.373333pt;}
.x57_c00499{left:375.040000pt;}
.x40_c00499{left:377.706667pt;}
.xb0_c00499{left:378.666667pt;}
.xa_c00499{left:380.373333pt;}
.xff_c00499{left:382.666667pt;}
.x73_c00499{left:385.333333pt;}
.xf9_c00499{left:386.666667pt;}
.xf0_c00499{left:387.626667pt;}
.x8a_c00499{left:390.293333pt;}
.xb6_c00499{left:392.373333pt;}
.x27_c00499{left:393.706667pt;}
.x4b_c00499{left:395.626667pt;}
.x7e_c00499{left:399.040000pt;}
.x17_c00499{left:400.000000pt;}
.x36_c00499{left:402.293333pt;}
.xb_c00499{left:404.000000pt;}
.x58_c00499{left:405.333333pt;}
.x6a_c00499{left:406.293333pt;}
.x41_c00499{left:408.000000pt;}
.xfd_c00499{left:409.333333pt;}
.xbd_c00499{left:411.626667pt;}
.xc5_c00499{left:413.706667pt;}
.x28_c00499{left:417.333333pt;}
.xb7_c00499{left:418.666667pt;}
.xdf_c00499{left:420.373333pt;}
.x6b_c00499{left:423.040000pt;}
.xea_c00499{left:424.000000pt;}
.x42_c00499{left:425.333333pt;}
.xa1_c00499{left:426.666667pt;}
.xbe_c00499{left:427.626667pt;}
.x100_c00499{left:428.960000pt;}
.x74_c00499{left:430.666667pt;}
.x37_c00499{left:431.626667pt;}
.x7f_c00499{left:433.333333pt;}
.x59_c00499{left:436.000000pt;}
.x10f_c00499{left:436.960000pt;}
.xc_c00499{left:438.666667pt;}
.x99_c00499{left:440.373333pt;}
.x105_c00499{left:441.706667pt;}
.x61_c00499{left:444.000000pt;}
.x4c_c00499{left:447.040000pt;}
.xe7_c00499{left:448.000000pt;}
.x43_c00499{left:449.706667pt;}
.xc6_c00499{left:453.133333pt;}
.xd_c00499{left:455.626667pt;}
.xb8_c00499{left:457.333333pt;}
.xeb_c00499{left:458.666667pt;}
.xcc_c00499{left:459.626667pt;}
.x92_c00499{left:461.333333pt;}
.x29_c00499{left:462.293333pt;}
.xfa_c00499{left:464.373333pt;}
.x80_c00499{left:466.666667pt;}
.x62_c00499{left:468.373333pt;}
.xf5_c00499{left:469.333333pt;}
.x8b_c00499{left:472.000000pt;}
.xe_c00499{left:473.333333pt;}
.x5a_c00499{left:474.466667pt;}
.x4d_c00499{left:477.706667pt;}
.x6c_c00499{left:478.666667pt;}
.x18_c00499{left:480.000000pt;}
.xe0_c00499{left:481.706667pt;}
.xd1_c00499{left:483.426667pt;}
.xc7_c00499{left:486.666667pt;}
.x2a_c00499{left:488.000000pt;}
.x38_c00499{left:488.960000pt;}
.x63_c00499{left:490.293333pt;}
.x19_c00499{left:491.626667pt;}
.xd7_c00499{left:493.333333pt;}
.x6d_c00499{left:496.000000pt;}
.xd9_c00499{left:496.960000pt;}
.x9a_c00499{left:498.666667pt;}
.x4e_c00499{left:499.626667pt;}
.xa7_c00499{left:501.333333pt;}
.xc8_c00499{left:502.293333pt;}
.x101_c00499{left:505.333333pt;}
.x81_c00499{left:506.293333pt;}
.xd5_c00499{left:507.626667pt;}
.x44_c00499{left:509.706667pt;}
.x2b_c00499{left:512.000000pt;}
.xf_c00499{left:512.960000pt;}
.xf1_c00499{left:514.666667pt;}
.xd2_c00499{left:515.626667pt;}
.xb1_c00499{left:517.333333pt;}
.xa8_c00499{left:518.293333pt;}
.xbf_c00499{left:519.626667pt;}
.x75_c00499{left:522.666667pt;}
.x110_c00499{left:524.000000pt;}
.x1a_c00499{left:525.133333pt;}
.xd8_c00499{left:527.040000pt;}
.x2c_c00499{left:528.000000pt;}
.xcd_c00499{left:531.626667pt;}
.x109_c00499{left:533.333333pt;}
.xc0_c00499{left:537.333333pt;}
.x6e_c00499{left:539.040000pt;}
.x10b_c00499{left:541.333333pt;}
.x45_c00499{left:543.040000pt;}
.x39_c00499{left:544.000000pt;}
.x10_c00499{left:546.293333pt;}
.xfe_c00499{left:548.000000pt;}
.x93_c00499{left:548.960000pt;}
.xb2_c00499{left:551.040000pt;}
.xa9_c00499{left:552.000000pt;}
.x2d_c00499{left:553.706667pt;}
.x82_c00499{left:554.666667pt;}
.x5b_c00499{left:556.573333pt;}
.x8c_c00499{left:558.666667pt;}
.x6f_c00499{left:560.373333pt;}
.x1b_c00499{left:561.706667pt;}
.xf6_c00499{left:566.666667pt;}
.x4f_c00499{left:568.960000pt;}
.x83_c00499{left:570.666667pt;}
.x94_c00499{left:573.333333pt;}
.x3a_c00499{left:574.666667pt;}
.xec_c00499{left:577.333333pt;}
.x106_c00499{left:579.040000pt;}
.x10c_c00499{left:580.373333pt;}
.x102_c00499{left:584.000000pt;}
.x76_c00499{left:585.333333pt;}
.xce_c00499{left:586.666667pt;}
.x9b_c00499{left:590.293333pt;}
.x2e_c00499{left:594.666667pt;}
.xe8_c00499{left:597.333333pt;}
.x95_c00499{left:598.293333pt;}
.x8d_c00499{left:600.373333pt;}
.xaa_c00499{left:602.293333pt;}
.x50_c00499{left:603.626667pt;}
.xf2_c00499{left:608.000000pt;}
.x103_c00499{left:609.333333pt;}
.xda_c00499{left:612.000000pt;}
.x10a_c00499{left:613.333333pt;}
.xb3_c00499{left:614.293333pt;}
.x11_c00499{left:616.373333pt;}
.x64_c00499{left:617.706667pt;}
.x51_c00499{left:619.040000pt;}
.x1c_c00499{left:622.666667pt;}
.xe9_c00499{left:624.373333pt;}
.xe1_c00499{left:625.333333pt;}
.xc9_c00499{left:629.333333pt;}
.x70_c00499{left:630.666667pt;}
.xc1_c00499{left:632.760000pt;}
.x107_c00499{left:633.706667pt;}
.x1d_c00499{left:636.000000pt;}
.xe2_c00499{left:640.000000pt;}
.x9c_c00499{left:642.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_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_9c483e96035bc732d4754e53.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9c0_c00001{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m9bf_c00001{transform:matrix(0.000730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000730,0.000000,0.000000,0.250000,0,0);}
.m9f7_c00001{transform:matrix(0.001100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.001100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.001100,0.000000,0.000000,0.250000,0,0);}
.ma31_c00001{transform:matrix(0.003679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.003679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.003679,0.000000,0.000000,0.250000,0,0);}
.m9f8_c00001{transform:matrix(0.004240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.004240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.004240,0.000000,0.000000,0.250000,0,0);}
.ma30_c00001{transform:matrix(0.004293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.004293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.004293,0.000000,0.000000,0.250000,0,0);}
.m97a_c00001{transform:matrix(0.005328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.005328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.005328,0.000000,0.000000,0.250000,0,0);}
.m8d2_c00001{transform:matrix(0.005675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.005675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.005675,0.000000,0.000000,0.250000,0,0);}
.m537_c00001{transform:matrix(0.006560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.006560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.006560,0.000000,0.000000,0.250000,0,0);}
.m9f9_c00001{transform:matrix(0.006619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.006619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.006619,0.000000,0.000000,0.250000,0,0);}
.m97b_c00001{transform:matrix(0.007163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007163,0.000000,0.000000,0.250000,0,0);}
.ma18_c00001{transform:matrix(0.007474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007474,0.000000,0.000000,0.250000,0,0);}
.m9c1_c00001{transform:matrix(0.007752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007752,0.000000,0.000000,0.250000,0,0);}
.m8a9_c00001{transform:matrix(0.008096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008096,0.000000,0.000000,0.250000,0,0);}
.m93d_c00001{transform:matrix(0.008249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008249,0.000000,0.000000,0.250000,0,0);}
.ma0d_c00001{transform:matrix(0.008408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008408,0.000000,0.000000,0.250000,0,0);}
.m89f_c00001{transform:matrix(0.008469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008469,0.000000,0.000000,0.250000,0,0);}
.m922_c00001{transform:matrix(0.008495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008495,0.000000,0.000000,0.250000,0,0);}
.m9fd_c00001{transform:matrix(0.008650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008650,0.000000,0.000000,0.250000,0,0);}
.m88f_c00001{transform:matrix(0.008820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008820,0.000000,0.000000,0.250000,0,0);}
.m569_c00001{transform:matrix(0.008933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008933,0.000000,0.000000,0.250000,0,0);}
.ma2e_c00001{transform:matrix(0.009067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009067,0.000000,0.000000,0.250000,0,0);}
.m961_c00001{transform:matrix(0.009097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009097,0.000000,0.000000,0.250000,0,0);}
.m968_c00001{transform:matrix(0.009244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009244,0.000000,0.000000,0.250000,0,0);}
.m99e_c00001{transform:matrix(0.009346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009346,0.000000,0.000000,0.250000,0,0);}
.m8f0_c00001{transform:matrix(0.009474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009474,0.000000,0.000000,0.250000,0,0);}
.m568_c00001{transform:matrix(0.009498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009498,0.000000,0.000000,0.250000,0,0);}
.ma16_c00001{transform:matrix(0.009561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009561,0.000000,0.000000,0.250000,0,0);}
.m55b_c00001{transform:matrix(0.009611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009611,0.000000,0.000000,0.250000,0,0);}
.m5da_c00001{transform:matrix(0.009760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009760,0.000000,0.000000,0.250000,0,0);}
.m5d9_c00001{transform:matrix(0.009878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009878,0.000000,0.000000,0.250000,0,0);}
.m9f4_c00001{transform:matrix(0.009949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009949,0.000000,0.000000,0.250000,0,0);}
.m91f_c00001{transform:matrix(0.010199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010199,0.000000,0.000000,0.250000,0,0);}
.m9cd_c00001{transform:matrix(0.010382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010382,0.000000,0.000000,0.250000,0,0);}
.m890_c00001{transform:matrix(0.010431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010431,0.000000,0.000000,0.250000,0,0);}
.m8bc_c00001{transform:matrix(0.010552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010552,0.000000,0.000000,0.250000,0,0);}
.m926_c00001{transform:matrix(0.010566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010566,0.000000,0.000000,0.250000,0,0);}
.m8e4_c00001{transform:matrix(0.010569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010569,0.000000,0.000000,0.250000,0,0);}
.m9c5_c00001{transform:matrix(0.010648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010648,0.000000,0.000000,0.250000,0,0);}
.m93c_c00001{transform:matrix(0.010699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010699,0.000000,0.000000,0.250000,0,0);}
.m9b7_c00001{transform:matrix(0.010709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010709,0.000000,0.000000,0.250000,0,0);}
.m8f5_c00001{transform:matrix(0.010728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010728,0.000000,0.000000,0.250000,0,0);}
.m5d2_c00001{transform:matrix(0.010887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010887,0.000000,0.000000,0.250000,0,0);}
.m8e7_c00001{transform:matrix(0.010944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010944,0.000000,0.000000,0.250000,0,0);}
.ma19_c00001{transform:matrix(0.011024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011024,0.000000,0.000000,0.250000,0,0);}
.m9e5_c00001{transform:matrix(0.011026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011026,0.000000,0.000000,0.250000,0,0);}
.m8d1_c00001{transform:matrix(0.011027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011027,0.000000,0.000000,0.250000,0,0);}
.ma32_c00001{transform:matrix(0.011056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011056,0.000000,0.000000,0.250000,0,0);}
.m9aa_c00001{transform:matrix(0.011351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011351,0.000000,0.000000,0.250000,0,0);}
.m950_c00001{transform:matrix(0.011352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011352,0.000000,0.000000,0.250000,0,0);}
.m923_c00001{transform:matrix(0.011380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011380,0.000000,0.000000,0.250000,0,0);}
.m5db_c00001{transform:matrix(0.011420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011420,0.000000,0.000000,0.250000,0,0);}
.m90b_c00001{transform:matrix(0.011457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011457,0.000000,0.000000,0.250000,0,0);}
.m976_c00001{transform:matrix(0.011599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011599,0.000000,0.000000,0.250000,0,0);}
.m88e_c00001{transform:matrix(0.011622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011622,0.000000,0.000000,0.250000,0,0);}
.m8b1_c00001{transform:matrix(0.011787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011787,0.000000,0.000000,0.250000,0,0);}
.m8f3_c00001{transform:matrix(0.011817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011817,0.000000,0.000000,0.250000,0,0);}
.m9e6_c00001{transform:matrix(0.011934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011934,0.000000,0.000000,0.250000,0,0);}
.m8e1_c00001{transform:matrix(0.011942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011942,0.000000,0.000000,0.250000,0,0);}
.m8b5_c00001{transform:matrix(0.011956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011956,0.000000,0.000000,0.250000,0,0);}
.m8bd_c00001{transform:matrix(0.012127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012127,0.000000,0.000000,0.250000,0,0);}
.m8fa_c00001{transform:matrix(0.012158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012158,0.000000,0.000000,0.250000,0,0);}
.m89c_c00001{transform:matrix(0.012477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012477,0.000000,0.000000,0.250000,0,0);}
.ma0c_c00001{transform:matrix(0.012496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012496,0.000000,0.000000,0.250000,0,0);}
.m895_c00001{transform:matrix(0.012539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012539,0.000000,0.000000,0.250000,0,0);}
.ma2a_c00001{transform:matrix(0.012715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012715,0.000000,0.000000,0.250000,0,0);}
.m907_c00001{transform:matrix(0.012720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012720,0.000000,0.000000,0.250000,0,0);}
.ma0f_c00001{transform:matrix(0.012787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012787,0.000000,0.000000,0.250000,0,0);}
.m9bc_c00001{transform:matrix(0.012959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012959,0.000000,0.000000,0.250000,0,0);}
.m9a6_c00001{transform:matrix(0.012975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012975,0.000000,0.000000,0.250000,0,0);}
.m929_c00001{transform:matrix(0.013031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013031,0.000000,0.000000,0.250000,0,0);}
.m8af_c00001{transform:matrix(0.013049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013049,0.000000,0.000000,0.250000,0,0);}
.ma03_c00001{transform:matrix(0.013139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013139,0.000000,0.000000,0.250000,0,0);}
.m92e_c00001{transform:matrix(0.013175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013175,0.000000,0.000000,0.250000,0,0);}
.m957_c00001{transform:matrix(0.013322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013322,0.000000,0.000000,0.250000,0,0);}
.m8c1_c00001{transform:matrix(0.013328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013328,0.000000,0.000000,0.250000,0,0);}
.m9b2_c00001{transform:matrix(0.013331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013331,0.000000,0.000000,0.250000,0,0);}
.m8d5_c00001{transform:matrix(0.013506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013506,0.000000,0.000000,0.250000,0,0);}
.m975_c00001{transform:matrix(0.013508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013508,0.000000,0.000000,0.250000,0,0);}
.m607_c00001{transform:matrix(0.013606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013606,0.000000,0.000000,0.250000,0,0);}
.m96b_c00001{transform:matrix(0.013662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013662,0.000000,0.000000,0.250000,0,0);}
.m89b_c00001{transform:matrix(0.013845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013845,0.000000,0.000000,0.250000,0,0);}
.m8c6_c00001{transform:matrix(0.014025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014025,0.000000,0.000000,0.250000,0,0);}
.m8d3_c00001{transform:matrix(0.014072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014072,0.000000,0.000000,0.250000,0,0);}
.m89a_c00001{transform:matrix(0.014129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014129,0.000000,0.000000,0.250000,0,0);}
.m911_c00001{transform:matrix(0.014415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014415,0.000000,0.000000,0.250000,0,0);}
.m96a_c00001{transform:matrix(0.014425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014425,0.000000,0.000000,0.250000,0,0);}
.m974_c00001{transform:matrix(0.014450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014450,0.000000,0.000000,0.250000,0,0);}
.m571_c00001{transform:matrix(0.014493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014493,0.000000,0.000000,0.250000,0,0);}
.m8c7_c00001{transform:matrix(0.014634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014634,0.000000,0.000000,0.250000,0,0);}
.m9f3_c00001{transform:matrix(0.014728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014728,0.000000,0.000000,0.250000,0,0);}
.m965_c00001{transform:matrix(0.014916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014916,0.000000,0.000000,0.250000,0,0);}
.m53f_c00001{transform:matrix(0.014953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014953,0.000000,0.000000,0.250000,0,0);}
.m902_c00001{transform:matrix(0.014960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014960,0.000000,0.000000,0.250000,0,0);}
.m90f_c00001{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);}
.ma1d_c00001{transform:matrix(0.015060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015060,0.000000,0.000000,0.250000,0,0);}
.m980_c00001{transform:matrix(0.015104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015104,0.000000,0.000000,0.250000,0,0);}
.m8b9_c00001{transform:matrix(0.015146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015146,0.000000,0.000000,0.250000,0,0);}
.m949_c00001{transform:matrix(0.015160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015160,0.000000,0.000000,0.250000,0,0);}
.m5e2_c00001{transform:matrix(0.015173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015173,0.000000,0.000000,0.250000,0,0);}
.m8fc_c00001{transform:matrix(0.015176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015176,0.000000,0.000000,0.250000,0,0);}
.m8f9_c00001{transform:matrix(0.015279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015279,0.000000,0.000000,0.250000,0,0);}
.ma1f_c00001{transform:matrix(0.015291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015291,0.000000,0.000000,0.250000,0,0);}
.m912_c00001{transform:matrix(0.015297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015297,0.000000,0.000000,0.250000,0,0);}
.ma2b_c00001{transform:matrix(0.015520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015520,0.000000,0.000000,0.250000,0,0);}
.m9b5_c00001{transform:matrix(0.015638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015638,0.000000,0.000000,0.250000,0,0);}
.m931_c00001{transform:matrix(0.015721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015721,0.000000,0.000000,0.250000,0,0);}
.m937_c00001{transform:matrix(0.015829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015829,0.000000,0.000000,0.250000,0,0);}
.m9be_c00001{transform:matrix(0.015913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015913,0.000000,0.000000,0.250000,0,0);}
.m572_c00001{transform:matrix(0.015943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015943,0.000000,0.000000,0.250000,0,0);}
.m5ff_c00001{transform:matrix(0.016056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016056,0.000000,0.000000,0.250000,0,0);}
.m892_c00001{transform:matrix(0.016169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016169,0.000000,0.000000,0.250000,0,0);}
.m577_c00001{transform:matrix(0.016237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016237,0.000000,0.000000,0.250000,0,0);}
.m96c_c00001{transform:matrix(0.016244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016244,0.000000,0.000000,0.250000,0,0);}
.m9b8_c00001{transform:matrix(0.016304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016304,0.000000,0.000000,0.250000,0,0);}
.m5e4_c00001{transform:matrix(0.016452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016452,0.000000,0.000000,0.250000,0,0);}
.m953_c00001{transform:matrix(0.016463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016463,0.000000,0.000000,0.250000,0,0);}
.ma2c_c00001{transform:matrix(0.016525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016525,0.000000,0.000000,0.250000,0,0);}
.m95e_c00001{transform:matrix(0.016559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016559,0.000000,0.000000,0.250000,0,0);}
.m5df_c00001{transform:matrix(0.016584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016584,0.000000,0.000000,0.250000,0,0);}
.m5cf_c00001{transform:matrix(0.016640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016640,0.000000,0.000000,0.250000,0,0);}
.m9ee_c00001{transform:matrix(0.016660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016660,0.000000,0.000000,0.250000,0,0);}
.m600_c00001{transform:matrix(0.016735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016735,0.000000,0.000000,0.250000,0,0);}
.m53d_c00001{transform:matrix(0.016840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016840,0.000000,0.000000,0.250000,0,0);}
.m920_c00001{transform:matrix(0.016848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016848,0.000000,0.000000,0.250000,0,0);}
.m8ae_c00001{transform:matrix(0.016920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016920,0.000000,0.000000,0.250000,0,0);}
.m542_c00001{transform:matrix(0.016933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016933,0.000000,0.000000,0.250000,0,0);}
.m53a_c00001{transform:matrix(0.017022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017022,0.000000,0.000000,0.250000,0,0);}
.m9ab_c00001{transform:matrix(0.017041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017041,0.000000,0.000000,0.250000,0,0);}
.m8de_c00001{transform:matrix(0.017051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017051,0.000000,0.000000,0.250000,0,0);}
.m998_c00001{transform:matrix(0.017052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017052,0.000000,0.000000,0.250000,0,0);}
.m928_c00001{transform:matrix(0.017063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017063,0.000000,0.000000,0.250000,0,0);}
.m580_c00001{transform:matrix(0.017114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017114,0.000000,0.000000,0.250000,0,0);}
.m898_c00001{transform:matrix(0.017125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017125,0.000000,0.000000,0.250000,0,0);}
.m94a_c00001{transform:matrix(0.017187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017187,0.000000,0.000000,0.250000,0,0);}
.m5e1_c00001{transform:matrix(0.017196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017196,0.000000,0.000000,0.250000,0,0);}
.m90c_c00001{transform:matrix(0.017241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017241,0.000000,0.000000,0.250000,0,0);}
.m933_c00001{transform:matrix(0.017248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017248,0.000000,0.000000,0.250000,0,0);}
.ma0e_c00001{transform:matrix(0.017330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017330,0.000000,0.000000,0.250000,0,0);}
.m97d_c00001{transform:matrix(0.017350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017350,0.000000,0.000000,0.250000,0,0);}
.m5d1_c00001{transform:matrix(0.017425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017425,0.000000,0.000000,0.250000,0,0);}
.m990_c00001{transform:matrix(0.017442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017442,0.000000,0.000000,0.250000,0,0);}
.m56d_c00001{transform:matrix(0.017486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017486,0.000000,0.000000,0.250000,0,0);}
.m954_c00001{transform:matrix(0.017511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017511,0.000000,0.000000,0.250000,0,0);}
.m9d0_c00001{transform:matrix(0.017521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017521,0.000000,0.000000,0.250000,0,0);}
.m8a4_c00001{transform:matrix(0.017636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017636,0.000000,0.000000,0.250000,0,0);}
.m90d_c00001{transform:matrix(0.017637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017637,0.000000,0.000000,0.250000,0,0);}
.m94c_c00001{transform:matrix(0.017639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017639,0.000000,0.000000,0.250000,0,0);}
.m8df_c00001{transform:matrix(0.017641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017641,0.000000,0.000000,0.250000,0,0);}
.m98d_c00001{transform:matrix(0.017842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017842,0.000000,0.000000,0.250000,0,0);}
.ma28_c00001{transform:matrix(0.017874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017874,0.000000,0.000000,0.250000,0,0);}
.m9c4_c00001{transform:matrix(0.018048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018048,0.000000,0.000000,0.250000,0,0);}
.m92b_c00001{transform:matrix(0.018125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018125,0.000000,0.000000,0.250000,0,0);}
.m9fe_c00001{transform:matrix(0.018180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018180,0.000000,0.000000,0.250000,0,0);}
.m913_c00001{transform:matrix(0.018200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018200,0.000000,0.000000,0.250000,0,0);}
.m8ff_c00001{transform:matrix(0.018253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018253,0.000000,0.000000,0.250000,0,0);}
.m92f_c00001{transform:matrix(0.018366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018366,0.000000,0.000000,0.250000,0,0);}
.m95d_c00001{transform:matrix(0.018395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018395,0.000000,0.000000,0.250000,0,0);}
.m5d3_c00001{transform:matrix(0.018423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018423,0.000000,0.000000,0.250000,0,0);}
.m575_c00001{transform:matrix(0.018444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018444,0.000000,0.000000,0.250000,0,0);}
.m8c2_c00001{transform:matrix(0.018448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018448,0.000000,0.000000,0.250000,0,0);}
.ma2f_c00001{transform:matrix(0.018449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018449,0.000000,0.000000,0.250000,0,0);}
.m952_c00001{transform:matrix(0.018462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018462,0.000000,0.000000,0.250000,0,0);}
.m57e_c00001{transform:matrix(0.018487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018487,0.000000,0.000000,0.250000,0,0);}
.m89d_c00001{transform:matrix(0.018697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018697,0.000000,0.000000,0.250000,0,0);}
.m9d6_c00001{transform:matrix(0.018753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018753,0.000000,0.000000,0.250000,0,0);}
.m9c3_c00001{transform:matrix(0.018788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018788,0.000000,0.000000,0.250000,0,0);}
.m99c_c00001{transform:matrix(0.018850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018850,0.000000,0.000000,0.250000,0,0);}
.m986_c00001{transform:matrix(0.018877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018877,0.000000,0.000000,0.250000,0,0);}
.m8d7_c00001{transform:matrix(0.018912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018912,0.000000,0.000000,0.250000,0,0);}
.m534_c00001{transform:matrix(0.018932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018932,0.000000,0.000000,0.250000,0,0);}
.m9d1_c00001{transform:matrix(0.018933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018933,0.000000,0.000000,0.250000,0,0);}
.m964_c00001{transform:matrix(0.019018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019018,0.000000,0.000000,0.250000,0,0);}
.m9af_c00001{transform:matrix(0.019040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019040,0.000000,0.000000,0.250000,0,0);}
.m969_c00001{transform:matrix(0.019148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019148,0.000000,0.000000,0.250000,0,0);}
.m95b_c00001{transform:matrix(0.019176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019176,0.000000,0.000000,0.250000,0,0);}
.m89e_c00001{transform:matrix(0.019212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019212,0.000000,0.000000,0.250000,0,0);}
.m88d_c00001{transform:matrix(0.019246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019246,0.000000,0.000000,0.250000,0,0);}
.m5d4_c00001{transform:matrix(0.019374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019374,0.000000,0.000000,0.250000,0,0);}
.m60c_c00001{transform:matrix(0.019407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019407,0.000000,0.000000,0.250000,0,0);}
.m91c_c00001{transform:matrix(0.019471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019471,0.000000,0.000000,0.250000,0,0);}
.m602_c00001{transform:matrix(0.019561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019561,0.000000,0.000000,0.250000,0,0);}
.m9ce_c00001{transform:matrix(0.019652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019652,0.000000,0.000000,0.250000,0,0);}
.m919_c00001{transform:matrix(0.019762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019762,0.000000,0.000000,0.250000,0,0);}
.m9cc_c00001{transform:matrix(0.019900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019900,0.000000,0.000000,0.250000,0,0);}
.m984_c00001{transform:matrix(0.019939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019939,0.000000,0.000000,0.250000,0,0);}
.m8b0_c00001{transform:matrix(0.019995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019995,0.000000,0.000000,0.250000,0,0);}
.m891_c00001{transform:matrix(0.020098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020098,0.000000,0.000000,0.250000,0,0);}
.m942_c00001{transform:matrix(0.020210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020210,0.000000,0.000000,0.250000,0,0);}
.m8da_c00001{transform:matrix(0.020322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020322,0.000000,0.000000,0.250000,0,0);}
.m97f_c00001{transform:matrix(0.020399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020399,0.000000,0.000000,0.250000,0,0);}
.ma27_c00001{transform:matrix(0.020545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020545,0.000000,0.000000,0.250000,0,0);}
.m8cf_c00001{transform:matrix(0.020616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020616,0.000000,0.000000,0.250000,0,0);}
.m8e8_c00001{transform:matrix(0.020669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020669,0.000000,0.000000,0.250000,0,0);}
.m9a9_c00001{transform:matrix(0.020714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020714,0.000000,0.000000,0.250000,0,0);}
.m92d_c00001{transform:matrix(0.020762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020762,0.000000,0.000000,0.250000,0,0);}
.m916_c00001{transform:matrix(0.020833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020833,0.000000,0.000000,0.250000,0,0);}
.m8d4_c00001{transform:matrix(0.020891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020891,0.000000,0.000000,0.250000,0,0);}
.m8be_c00001{transform:matrix(0.020992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020992,0.000000,0.000000,0.250000,0,0);}
.m9ff_c00001{transform:matrix(0.021031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021031,0.000000,0.000000,0.250000,0,0);}
.m908_c00001{transform:matrix(0.021113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021113,0.000000,0.000000,0.250000,0,0);}
.m927_c00001{transform:matrix(0.021217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021217,0.000000,0.000000,0.250000,0,0);}
.m8ee_c00001{transform:matrix(0.021284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021284,0.000000,0.000000,0.250000,0,0);}
.m91a_c00001{transform:matrix(0.021297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021297,0.000000,0.000000,0.250000,0,0);}
.m5d6_c00001{transform:matrix(0.021356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021356,0.000000,0.000000,0.250000,0,0);}
.m56f_c00001{transform:matrix(0.021472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021472,0.000000,0.000000,0.250000,0,0);}
.ma09_c00001{transform:matrix(0.021472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021472,0.000000,0.000000,0.250000,0,0);}
.m9b3_c00001{transform:matrix(0.021483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021483,0.000000,0.000000,0.250000,0,0);}
.m8e2_c00001{transform:matrix(0.021637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021637,0.000000,0.000000,0.250000,0,0);}
.m92a_c00001{transform:matrix(0.021674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021674,0.000000,0.000000,0.250000,0,0);}
.m897_c00001{transform:matrix(0.021734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021734,0.000000,0.000000,0.250000,0,0);}
.m8ec_c00001{transform:matrix(0.021773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021773,0.000000,0.000000,0.250000,0,0);}
.m958_c00001{transform:matrix(0.021823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021823,0.000000,0.000000,0.250000,0,0);}
.m917_c00001{transform:matrix(0.021856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021856,0.000000,0.000000,0.250000,0,0);}
.m8ce_c00001{transform:matrix(0.021870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021870,0.000000,0.000000,0.250000,0,0);}
.m8b6_c00001{transform:matrix(0.021945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021945,0.000000,0.000000,0.250000,0,0);}
.m8b4_c00001{transform:matrix(0.021991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021991,0.000000,0.000000,0.250000,0,0);}
.m981_c00001{transform:matrix(0.022108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022108,0.000000,0.000000,0.250000,0,0);}
.ma12_c00001{transform:matrix(0.022117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022117,0.000000,0.000000,0.250000,0,0);}
.m8dd_c00001{transform:matrix(0.022225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022225,0.000000,0.000000,0.250000,0,0);}
.m5dc_c00001{transform:matrix(0.022239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022239,0.000000,0.000000,0.250000,0,0);}
.m8cc_c00001{transform:matrix(0.022249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022249,0.000000,0.000000,0.250000,0,0);}
.m8c9_c00001{transform:matrix(0.022275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022275,0.000000,0.000000,0.250000,0,0);}
.m896_c00001{transform:matrix(0.022367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022367,0.000000,0.000000,0.250000,0,0);}
.m9d5_c00001{transform:matrix(0.022443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022443,0.000000,0.000000,0.250000,0,0);}
.m98a_c00001{transform:matrix(0.022479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022479,0.000000,0.000000,0.250000,0,0);}
.m962_c00001{transform:matrix(0.022501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022501,0.000000,0.000000,0.250000,0,0);}
.m5fd_c00001{transform:matrix(0.022578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022578,0.000000,0.000000,0.250000,0,0);}
.m93a_c00001{transform:matrix(0.022614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022614,0.000000,0.000000,0.250000,0,0);}
.m921_c00001{transform:matrix(0.022789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022789,0.000000,0.000000,0.250000,0,0);}
.m57b_c00001{transform:matrix(0.022814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022814,0.000000,0.000000,0.250000,0,0);}
.m997_c00001{transform:matrix(0.022897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022897,0.000000,0.000000,0.250000,0,0);}
.m9ae_c00001{transform:matrix(0.022930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022930,0.000000,0.000000,0.250000,0,0);}
.m5dd_c00001{transform:matrix(0.023055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023055,0.000000,0.000000,0.250000,0,0);}
.m983_c00001{transform:matrix(0.023060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023060,0.000000,0.000000,0.250000,0,0);}
.m8a5_c00001{transform:matrix(0.023200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023200,0.000000,0.000000,0.250000,0,0);}
.m994_c00001{transform:matrix(0.023441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023441,0.000000,0.000000,0.250000,0,0);}
.m8f4_c00001{transform:matrix(0.023467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023467,0.000000,0.000000,0.250000,0,0);}
.m88b_c00001{transform:matrix(0.023559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023559,0.000000,0.000000,0.250000,0,0);}
.m95c_c00001{transform:matrix(0.023656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023656,0.000000,0.000000,0.250000,0,0);}
.m899_c00001{transform:matrix(0.023666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023666,0.000000,0.000000,0.250000,0,0);}
.m9d7_c00001{transform:matrix(0.023754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023754,0.000000,0.000000,0.250000,0,0);}
.m8fb_c00001{transform:matrix(0.023796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023796,0.000000,0.000000,0.250000,0,0);}
.m56e_c00001{transform:matrix(0.023857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023857,0.000000,0.000000,0.250000,0,0);}
.m9d3_c00001{transform:matrix(0.023925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023925,0.000000,0.000000,0.250000,0,0);}
.m906_c00001{transform:matrix(0.024010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024010,0.000000,0.000000,0.250000,0,0);}
.ma26_c00001{transform:matrix(0.024045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024045,0.000000,0.000000,0.250000,0,0);}
.m8e5_c00001{transform:matrix(0.024076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024076,0.000000,0.000000,0.250000,0,0);}
.m9ad_c00001{transform:matrix(0.024084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024084,0.000000,0.000000,0.250000,0,0);}
.ma23_c00001{transform:matrix(0.024216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024216,0.000000,0.000000,0.250000,0,0);}
.m8cb_c00001{transform:matrix(0.024281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024281,0.000000,0.000000,0.250000,0,0);}
.m91d_c00001{transform:matrix(0.024459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024459,0.000000,0.000000,0.250000,0,0);}
.m88c_c00001{transform:matrix(0.024565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024565,0.000000,0.000000,0.250000,0,0);}
.m57a_c00001{transform:matrix(0.024659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024659,0.000000,0.000000,0.250000,0,0);}
.m963_c00001{transform:matrix(0.024668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024668,0.000000,0.000000,0.250000,0,0);}
.m8f6_c00001{transform:matrix(0.024691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024691,0.000000,0.000000,0.250000,0,0);}
.m8cd_c00001{transform:matrix(0.024714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024714,0.000000,0.000000,0.250000,0,0);}
.m8c4_c00001{transform:matrix(0.024824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024824,0.000000,0.000000,0.250000,0,0);}
.m9c2_c00001{transform:matrix(0.024916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024916,0.000000,0.000000,0.250000,0,0);}
.m93b_c00001{transform:matrix(0.024963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024963,0.000000,0.000000,0.250000,0,0);}
.m8fd_c00001{transform:matrix(0.025095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025095,0.000000,0.000000,0.250000,0,0);}
.ma1c_c00001{transform:matrix(0.025132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025132,0.000000,0.000000,0.250000,0,0);}
.m940_c00001{transform:matrix(0.025279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025279,0.000000,0.000000,0.250000,0,0);}
.m93e_c00001{transform:matrix(0.025408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025408,0.000000,0.000000,0.250000,0,0);}
.m8f7_c00001{transform:matrix(0.025460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025460,0.000000,0.000000,0.250000,0,0);}
.m8e6_c00001{transform:matrix(0.025573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025573,0.000000,0.000000,0.250000,0,0);}
.m57c_c00001{transform:matrix(0.025609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025609,0.000000,0.000000,0.250000,0,0);}
.m900_c00001{transform:matrix(0.025708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025708,0.000000,0.000000,0.250000,0,0);}
.m9e4_c00001{transform:matrix(0.025803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025803,0.000000,0.000000,0.250000,0,0);}
.m544_c00001{transform:matrix(0.026014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026014,0.000000,0.000000,0.250000,0,0);}
.m934_c00001{transform:matrix(0.026017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026017,0.000000,0.000000,0.250000,0,0);}
.m90e_c00001{transform:matrix(0.026205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026205,0.000000,0.000000,0.250000,0,0);}
.m563_c00001{transform:matrix(0.026263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026263,0.000000,0.000000,0.250000,0,0);}
.m8eb_c00001{transform:matrix(0.026457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026457,0.000000,0.000000,0.250000,0,0);}
.m9a5_c00001{transform:matrix(0.026840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026840,0.000000,0.000000,0.250000,0,0);}
.m972_c00001{transform:matrix(0.026896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026896,0.000000,0.000000,0.250000,0,0);}
.m603_c00001{transform:matrix(0.027159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027159,0.000000,0.000000,0.250000,0,0);}
.m893_c00001{transform:matrix(0.027296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027296,0.000000,0.000000,0.250000,0,0);}
.m959_c00001{transform:matrix(0.027537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027537,0.000000,0.000000,0.250000,0,0);}
.m8e9_c00001{transform:matrix(0.028436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028436,0.000000,0.000000,0.250000,0,0);}
.m9e7_c00001{transform:matrix(0.028758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028758,0.000000,0.000000,0.250000,0,0);}
.m894_c00001{transform:matrix(0.028807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028807,0.000000,0.000000,0.250000,0,0);}
.m8c5_c00001{transform:matrix(0.028954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028954,0.000000,0.000000,0.250000,0,0);}
.m609_c00001{transform:matrix(0.029333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029333,0.000000,0.000000,0.250000,0,0);}
.m8fe_c00001{transform:matrix(0.029358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029358,0.000000,0.000000,0.250000,0,0);}
.m8d9_c00001{transform:matrix(0.029394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029394,0.000000,0.000000,0.250000,0,0);}
.m977_c00001{transform:matrix(0.029434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029434,0.000000,0.000000,0.250000,0,0);}
.m601_c00001{transform:matrix(0.029456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029456,0.000000,0.000000,0.250000,0,0);}
.m9e3_c00001{transform:matrix(0.029489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029489,0.000000,0.000000,0.250000,0,0);}
.m9a2_c00001{transform:matrix(0.029652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029652,0.000000,0.000000,0.250000,0,0);}
.m533_c00001{transform:matrix(0.029773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029773,0.000000,0.000000,0.250000,0,0);}
.m8f8_c00001{transform:matrix(0.029835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029835,0.000000,0.000000,0.250000,0,0);}
.m8b3_c00001{transform:matrix(0.030235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030235,0.000000,0.000000,0.250000,0,0);}
.m559_c00001{transform:matrix(0.030473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030473,0.000000,0.000000,0.250000,0,0);}
.m935_c00001{transform:matrix(0.030657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030657,0.000000,0.000000,0.250000,0,0);}
.m98c_c00001{transform:matrix(0.030795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030795,0.000000,0.000000,0.250000,0,0);}
.m8b7_c00001{transform:matrix(0.031189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031189,0.000000,0.000000,0.250000,0,0);}
.m9b1_c00001{transform:matrix(0.031201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031201,0.000000,0.000000,0.250000,0,0);}
.m985_c00001{transform:matrix(0.031332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031332,0.000000,0.000000,0.250000,0,0);}
.m541_c00001{transform:matrix(0.031506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031506,0.000000,0.000000,0.250000,0,0);}
.m608_c00001{transform:matrix(0.031676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031676,0.000000,0.000000,0.250000,0,0);}
.ma24_c00001{transform:matrix(0.031842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031842,0.000000,0.000000,0.250000,0,0);}
.m97e_c00001{transform:matrix(0.031893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031893,0.000000,0.000000,0.250000,0,0);}
.m566_c00001{transform:matrix(0.032033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032033,0.000000,0.000000,0.250000,0,0);}
.m951_c00001{transform:matrix(0.032195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032195,0.000000,0.000000,0.250000,0,0);}
.m989_c00001{transform:matrix(0.032284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032284,0.000000,0.000000,0.250000,0,0);}
.ma17_c00001{transform:matrix(0.032294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032294,0.000000,0.000000,0.250000,0,0);}
.ma08_c00001{transform:matrix(0.032332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032332,0.000000,0.000000,0.250000,0,0);}
.m93f_c00001{transform:matrix(0.032609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032609,0.000000,0.000000,0.250000,0,0);}
.m9d2_c00001{transform:matrix(0.032985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032985,0.000000,0.000000,0.250000,0,0);}
.m539_c00001{transform:matrix(0.033239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033239,0.000000,0.000000,0.250000,0,0);}
.m948_c00001{transform:matrix(0.033248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033248,0.000000,0.000000,0.250000,0,0);}
.m979_c00001{transform:matrix(0.033505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033505,0.000000,0.000000,0.250000,0,0);}
.ma11_c00001{transform:matrix(0.033582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033582,0.000000,0.000000,0.250000,0,0);}
.m5d0_c00001{transform:matrix(0.033638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033638,0.000000,0.000000,0.250000,0,0);}
.m8ea_c00001{transform:matrix(0.033642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033642,0.000000,0.000000,0.250000,0,0);}
.m5ce_c00001{transform:matrix(0.034291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034291,0.000000,0.000000,0.250000,0,0);}
.m903_c00001{transform:matrix(0.034319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034319,0.000000,0.000000,0.250000,0,0);}
.m53b_c00001{transform:matrix(0.034939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034939,0.000000,0.000000,0.250000,0,0);}
.ma22_c00001{transform:matrix(0.034944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034944,0.000000,0.000000,0.250000,0,0);}
.m92c_c00001{transform:matrix(0.034994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034994,0.000000,0.000000,0.250000,0,0);}
.m8c3_c00001{transform:matrix(0.035129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035129,0.000000,0.000000,0.250000,0,0);}
.m9b0_c00001{transform:matrix(0.035677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035677,0.000000,0.000000,0.250000,0,0);}
.ma2d_c00001{transform:matrix(0.035917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035917,0.000000,0.000000,0.250000,0,0);}
.m8ab_c00001{transform:matrix(0.036302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036302,0.000000,0.000000,0.250000,0,0);}
.m9f5_c00001{transform:matrix(0.036704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036704,0.000000,0.000000,0.250000,0,0);}
.m98b_c00001{transform:matrix(0.036974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036974,0.000000,0.000000,0.250000,0,0);}
.m941_c00001{transform:matrix(0.037374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037374,0.000000,0.000000,0.250000,0,0);}
.ma29_c00001{transform:matrix(0.037625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037625,0.000000,0.000000,0.250000,0,0);}
.m8db_c00001{transform:matrix(0.037829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037829,0.000000,0.000000,0.250000,0,0);}
.m94d_c00001{transform:matrix(0.037884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037884,0.000000,0.000000,0.250000,0,0);}
.ma07_c00001{transform:matrix(0.038285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038285,0.000000,0.000000,0.250000,0,0);}
.m9ec_c00001{transform:matrix(0.038427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038427,0.000000,0.000000,0.250000,0,0);}
.m9e2_c00001{transform:matrix(0.038501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038501,0.000000,0.000000,0.250000,0,0);}
.m8b8_c00001{transform:matrix(0.038726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038726,0.000000,0.000000,0.250000,0,0);}
.m973_c00001{transform:matrix(0.038752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038752,0.000000,0.000000,0.250000,0,0);}
.m564_c00001{transform:matrix(0.038765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038765,0.000000,0.000000,0.250000,0,0);}
.m8dc_c00001{transform:matrix(0.038942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038942,0.000000,0.000000,0.250000,0,0);}
.m910_c00001{transform:matrix(0.039167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039167,0.000000,0.000000,0.250000,0,0);}
.m904_c00001{transform:matrix(0.039382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039382,0.000000,0.000000,0.250000,0,0);}
.m94b_c00001{transform:matrix(0.039855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039855,0.000000,0.000000,0.250000,0,0);}
.m97c_c00001{transform:matrix(0.040049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040049,0.000000,0.000000,0.250000,0,0);}
.m8ca_c00001{transform:matrix(0.040452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040452,0.000000,0.000000,0.250000,0,0);}
.m55a_c00001{transform:matrix(0.040671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040671,0.000000,0.000000,0.250000,0,0);}
.ma20_c00001{transform:matrix(0.040875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040875,0.000000,0.000000,0.250000,0,0);}
.m545_c00001{transform:matrix(0.041240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041240,0.000000,0.000000,0.250000,0,0);}
.m574_c00001{transform:matrix(0.041318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041318,0.000000,0.000000,0.250000,0,0);}
.m8f1_c00001{transform:matrix(0.041637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041637,0.000000,0.000000,0.250000,0,0);}
.m9fb_c00001{transform:matrix(0.041745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041745,0.000000,0.000000,0.250000,0,0);}
.m9bb_c00001{transform:matrix(0.042248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042248,0.000000,0.000000,0.250000,0,0);}
.m95a_c00001{transform:matrix(0.042370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042370,0.000000,0.000000,0.250000,0,0);}
.m9fa_c00001{transform:matrix(0.042456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042456,0.000000,0.000000,0.250000,0,0);}
.m8aa_c00001{transform:matrix(0.042711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042711,0.000000,0.000000,0.250000,0,0);}
.m936_c00001{transform:matrix(0.043163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043163,0.000000,0.000000,0.250000,0,0);}
.m930_c00001{transform:matrix(0.043250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043250,0.000000,0.000000,0.250000,0,0);}
.m562_c00001{transform:matrix(0.043640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043640,0.000000,0.000000,0.250000,0,0);}
.m9a7_c00001{transform:matrix(0.043793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043793,0.000000,0.000000,0.250000,0,0);}
.m546_c00001{transform:matrix(0.043796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043796,0.000000,0.000000,0.250000,0,0);}
.ma33_c00001{transform:matrix(0.044089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044089,0.000000,0.000000,0.250000,0,0);}
.m988_c00001{transform:matrix(0.044098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044098,0.000000,0.000000,0.250000,0,0);}
.m90a_c00001{transform:matrix(0.044637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044637,0.000000,0.000000,0.250000,0,0);}
.m8e0_c00001{transform:matrix(0.044905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044905,0.000000,0.000000,0.250000,0,0);}
.m561_c00001{transform:matrix(0.044937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044937,0.000000,0.000000,0.250000,0,0);}
.m53c_c00001{transform:matrix(0.045245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045245,0.000000,0.000000,0.250000,0,0);}
.m94f_c00001{transform:matrix(0.045722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045722,0.000000,0.000000,0.250000,0,0);}
.m55c_c00001{transform:matrix(0.045833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045833,0.000000,0.000000,0.250000,0,0);}
.ma10_c00001{transform:matrix(0.045961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045961,0.000000,0.000000,0.250000,0,0);}
.m98f_c00001{transform:matrix(0.045963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045963,0.000000,0.000000,0.250000,0,0);}
.m909_c00001{transform:matrix(0.046048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046048,0.000000,0.000000,0.250000,0,0);}
.m945_c00001{transform:matrix(0.046224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046224,0.000000,0.000000,0.250000,0,0);}
.m8d8_c00001{transform:matrix(0.046289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046289,0.000000,0.000000,0.250000,0,0);}
.m999_c00001{transform:matrix(0.046473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046473,0.000000,0.000000,0.250000,0,0);}
.m991_c00001{transform:matrix(0.046702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046702,0.000000,0.000000,0.250000,0,0);}
.m98e_c00001{transform:matrix(0.047354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047354,0.000000,0.000000,0.250000,0,0);}
.m9a3_c00001{transform:matrix(0.047659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047659,0.000000,0.000000,0.250000,0,0);}
.m971_c00001{transform:matrix(0.047759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047759,0.000000,0.000000,0.250000,0,0);}
.ma02_c00001{transform:matrix(0.048115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048115,0.000000,0.000000,0.250000,0,0);}
.m915_c00001{transform:matrix(0.048121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048121,0.000000,0.000000,0.250000,0,0);}
.m60b_c00001{transform:matrix(0.049270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049270,0.000000,0.000000,0.250000,0,0);}
.m967_c00001{transform:matrix(0.049463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049463,0.000000,0.000000,0.250000,0,0);}
.m8e3_c00001{transform:matrix(0.049929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049929,0.000000,0.000000,0.250000,0,0);}
.m9fc_c00001{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);}
.m947_c00001{transform:matrix(0.050521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050521,0.000000,0.000000,0.250000,0,0);}
.m9d8_c00001{transform:matrix(0.050997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050997,0.000000,0.000000,0.250000,0,0);}
.m9e9_c00001{transform:matrix(0.051065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051065,0.000000,0.000000,0.250000,0,0);}
.m995_c00001{transform:matrix(0.051164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051164,0.000000,0.000000,0.250000,0,0);}
.m8c8_c00001{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);}
.m9cf_c00001{transform:matrix(0.052223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052223,0.000000,0.000000,0.250000,0,0);}
.m6cb_c00001{transform:matrix(0.052412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052412,0.000000,0.000000,0.250000,0,0);}
.m605_c00001{transform:matrix(0.052901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052901,0.000000,0.000000,0.250000,0,0);}
.m9e8_c00001{transform:matrix(0.053489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053489,0.000000,0.000000,0.250000,0,0);}
.m9ef_c00001{transform:matrix(0.053528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053528,0.000000,0.000000,0.250000,0,0);}
.m8ed_c00001{transform:matrix(0.053873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053873,0.000000,0.000000,0.250000,0,0);}
.m9d4_c00001{transform:matrix(0.054130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054130,0.000000,0.000000,0.250000,0,0);}
.m9f6_c00001{transform:matrix(0.054892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054892,0.000000,0.000000,0.250000,0,0);}
.m9cb_c00001{transform:matrix(0.055206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055206,0.000000,0.000000,0.250000,0,0);}
.m8a7_c00001{transform:matrix(0.055333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055333,0.000000,0.000000,0.250000,0,0);}
.m55d_c00001{transform:matrix(0.055461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055461,0.000000,0.000000,0.250000,0,0);}
.m996_c00001{transform:matrix(0.055575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055575,0.000000,0.000000,0.250000,0,0);}
.m905_c00001{transform:matrix(0.056335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056335,0.000000,0.000000,0.250000,0,0);}
.m8ac_c00001{transform:matrix(0.056465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056465,0.000000,0.000000,0.250000,0,0);}
.m9a1_c00001{transform:matrix(0.057137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057137,0.000000,0.000000,0.250000,0,0);}
.m54a_c00001{transform:matrix(0.058181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058181,0.000000,0.000000,0.250000,0,0);}
.ma13_c00001{transform:matrix(0.058354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058354,0.000000,0.000000,0.250000,0,0);}
.ma04_c00001{transform:matrix(0.058474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058474,0.000000,0.000000,0.250000,0,0);}
.m8ba_c00001{transform:matrix(0.058984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058984,0.000000,0.000000,0.250000,0,0);}
.ma15_c00001{transform:matrix(0.059433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059433,0.000000,0.000000,0.250000,0,0);}
.m918_c00001{transform:matrix(0.059809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059809,0.000000,0.000000,0.250000,0,0);}
.m924_c00001{transform:matrix(0.059882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059882,0.000000,0.000000,0.250000,0,0);}
.m982_c00001{transform:matrix(0.060034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060034,0.000000,0.000000,0.250000,0,0);}
.ma1e_c00001{transform:matrix(0.061067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061067,0.000000,0.000000,0.250000,0,0);}
.m99b_c00001{transform:matrix(0.061350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061350,0.000000,0.000000,0.250000,0,0);}
.m5e5_c00001{transform:matrix(0.061718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061718,0.000000,0.000000,0.250000,0,0);}
.m9c8_c00001{transform:matrix(0.061903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061903,0.000000,0.000000,0.250000,0,0);}
.m901_c00001{transform:matrix(0.061925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061925,0.000000,0.000000,0.250000,0,0);}
.m8ef_c00001{transform:matrix(0.062442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062442,0.000000,0.000000,0.250000,0,0);}
.m9b4_c00001{transform:matrix(0.062552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062552,0.000000,0.000000,0.250000,0,0);}
.m938_c00001{transform:matrix(0.064755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064755,0.000000,0.000000,0.250000,0,0);}
.m9bd_c00001{transform:matrix(0.065393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065393,0.000000,0.000000,0.250000,0,0);}
.m8a8_c00001{transform:matrix(0.065686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065686,0.000000,0.000000,0.250000,0,0);}
.m536_c00001{transform:matrix(0.065697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065697,0.000000,0.000000,0.250000,0,0);}
.m9ac_c00001{transform:matrix(0.065911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065911,0.000000,0.000000,0.250000,0,0);}
.m53e_c00001{transform:matrix(0.066358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066358,0.000000,0.000000,0.250000,0,0);}
.m551_c00001{transform:matrix(0.067348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067348,0.000000,0.000000,0.250000,0,0);}
.ma0a_c00001{transform:matrix(0.067380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067380,0.000000,0.000000,0.250000,0,0);}
.m993_c00001{transform:matrix(0.068010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068010,0.000000,0.000000,0.250000,0,0);}
.m55f_c00001{transform:matrix(0.071227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071227,0.000000,0.000000,0.250000,0,0);}
.m60a_c00001{transform:matrix(0.071472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071472,0.000000,0.000000,0.250000,0,0);}
.ma21_c00001{transform:matrix(0.072727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072727,0.000000,0.000000,0.250000,0,0);}
.m553_c00001{transform:matrix(0.072876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072876,0.000000,0.000000,0.250000,0,0);}
.m5fe_c00001{transform:matrix(0.072888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072888,0.000000,0.000000,0.250000,0,0);}
.ma05_c00001{transform:matrix(0.072993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072993,0.000000,0.000000,0.250000,0,0);}
.m9c9_c00001{transform:matrix(0.074048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074048,0.000000,0.000000,0.250000,0,0);}
.m946_c00001{transform:matrix(0.074513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074513,0.000000,0.000000,0.250000,0,0);}
.m932_c00001{transform:matrix(0.075147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075147,0.000000,0.000000,0.250000,0,0);}
.m9f1_c00001{transform:matrix(0.076137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076137,0.000000,0.000000,0.250000,0,0);}
.m5d8_c00001{transform:matrix(0.077574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077574,0.000000,0.000000,0.250000,0,0);}
.m939_c00001{transform:matrix(0.077822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077822,0.000000,0.000000,0.250000,0,0);}
.m560_c00001{transform:matrix(0.077837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077837,0.000000,0.000000,0.250000,0,0);}
.m987_c00001{transform:matrix(0.078459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078459,0.000000,0.000000,0.250000,0,0);}
.m992_c00001{transform:matrix(0.079591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079591,0.000000,0.000000,0.250000,0,0);}
.m552_c00001{transform:matrix(0.080292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080292,0.000000,0.000000,0.250000,0,0);}
.m9a0_c00001{transform:matrix(0.080548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080548,0.000000,0.000000,0.250000,0,0);}
.m9f0_c00001{transform:matrix(0.081349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081349,0.000000,0.000000,0.250000,0,0);}
.m54c_c00001{transform:matrix(0.081805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081805,0.000000,0.000000,0.250000,0,0);}
.m573_c00001{transform:matrix(0.083193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083193,0.000000,0.000000,0.250000,0,0);}
.m8bf_c00001{transform:matrix(0.083216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083216,0.000000,0.000000,0.250000,0,0);}
.m8bb_c00001{transform:matrix(0.083333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083333,0.000000,0.000000,0.250000,0,0);}
.m543_c00001{transform:matrix(0.084979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084979,0.000000,0.000000,0.250000,0,0);}
.m5d7_c00001{transform:matrix(0.085331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085331,0.000000,0.000000,0.250000,0,0);}
.m576_c00001{transform:matrix(0.085506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085506,0.000000,0.000000,0.250000,0,0);}
.m9ba_c00001{transform:matrix(0.086482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086482,0.000000,0.000000,0.250000,0,0);}
.m604_c00001{transform:matrix(0.086656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086656,0.000000,0.000000,0.250000,0,0);}
.m554_c00001{transform:matrix(0.087447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087447,0.000000,0.000000,0.250000,0,0);}
.m925_c00001{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);}
.m955_c00001{transform:matrix(0.090024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090024,0.000000,0.000000,0.250000,0,0);}
.m9b9_c00001{transform:matrix(0.090441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090441,0.000000,0.000000,0.250000,0,0);}
.m5d5_c00001{transform:matrix(0.091641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091641,0.000000,0.000000,0.250000,0,0);}
.m55e_c00001{transform:matrix(0.091678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091678,0.000000,0.000000,0.250000,0,0);}
.m60d_c00001{transform:matrix(0.092025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092025,0.000000,0.000000,0.250000,0,0);}
.ma14_c00001{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);}
.ma1b_c00001{transform:matrix(0.097261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097261,0.000000,0.000000,0.250000,0,0);}
.m9ca_c00001{transform:matrix(0.097326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097326,0.000000,0.000000,0.250000,0,0);}
.m8ad_c00001{transform:matrix(0.099788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099788,0.000000,0.000000,0.250000,0,0);}
.m567_c00001{transform:matrix(0.100077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100077,0.000000,0.000000,0.250000,0,0);}
.ma00_c00001{transform:matrix(0.101070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101070,0.000000,0.000000,0.250000,0,0);}
.m535_c00001{transform:matrix(0.102958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102958,0.000000,0.000000,0.250000,0,0);}
.m547_c00001{transform:matrix(0.102968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102968,0.000000,0.000000,0.250000,0,0);}
.m956_c00001{transform:matrix(0.104927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104927,0.000000,0.000000,0.250000,0,0);}
.ma35_c00001{transform:matrix(0.105080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105080,0.000000,0.000000,0.250000,0,0);}
.m54b_c00001{transform:matrix(0.105751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105751,0.000000,0.000000,0.250000,0,0);}
.m5e0_c00001{transform:matrix(0.107143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107143,0.000000,0.000000,0.250000,0,0);}
.m914_c00001{transform:matrix(0.109279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109279,0.000000,0.000000,0.250000,0,0);}
.m99a_c00001{transform:matrix(0.109489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109489,0.000000,0.000000,0.250000,0,0);}
.m550_c00001{transform:matrix(0.109661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109661,0.000000,0.000000,0.250000,0,0);}
.m5e3_c00001{transform:matrix(0.113540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113540,0.000000,0.000000,0.250000,0,0);}
.m556_c00001{transform:matrix(0.116419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116419,0.000000,0.000000,0.250000,0,0);}
.m8f2_c00001{transform:matrix(0.116667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116667,0.000000,0.000000,0.250000,0,0);}
.m8a6_c00001{transform:matrix(0.120856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120856,0.000000,0.000000,0.250000,0,0);}
.m99f_c00001{transform:matrix(0.122871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122871,0.000000,0.000000,0.250000,0,0);}
.m65e_c00001{transform:matrix(0.124449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124449,0.000000,0.000000,0.250000,0,0);}
.m91b_c00001{transform:matrix(0.124824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124824,0.000000,0.000000,0.250000,0,0);}
.m8b2_c00001{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);}
.m56a_c00001{transform:matrix(0.129406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129406,0.000000,0.000000,0.250000,0,0);}
.m54f_c00001{transform:matrix(0.129668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129668,0.000000,0.000000,0.250000,0,0);}
.m54e_c00001{transform:matrix(0.136364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136364,0.000000,0.000000,0.250000,0,0);}
.m540_c00001{transform:matrix(0.138235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138235,0.000000,0.000000,0.250000,0,0);}
.m9a4_c00001{transform:matrix(0.139903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139903,0.000000,0.000000,0.250000,0,0);}
.m966_c00001{transform:matrix(0.141830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141830,0.000000,0.000000,0.250000,0,0);}
.m80c_c00001{transform:matrix(0.142647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142647,0.000000,0.000000,0.250000,0,0);}
.m740_c00001{transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);}
.ma25_c00001{transform:matrix(0.145798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145798,0.000000,0.000000,0.250000,0,0);}
.ma01_c00001{transform:matrix(0.149859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149859,0.000000,0.000000,0.250000,0,0);}
.m56c_c00001{transform:matrix(0.151971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151971,0.000000,0.000000,0.250000,0,0);}
.ma06_c00001{transform:matrix(0.154443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154443,0.000000,0.000000,0.250000,0,0);}
.ma34_c00001{transform:matrix(0.159091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159091,0.000000,0.000000,0.250000,0,0);}
.m54d_c00001{transform:matrix(0.166494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166494,0.000000,0.000000,0.250000,0,0);}
.m56b_c00001{transform:matrix(0.166512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166512,0.000000,0.000000,0.250000,0,0);}
.m458_c00001{transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166794,0.000000,0.000000,0.250000,0,0);}
.m47e_c00001{transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166807,0.000000,0.000000,0.250000,0,0);}
.m943_c00001{transform:matrix(0.174847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174847,0.000000,0.000000,0.250000,0,0);}
.m5de_c00001{transform:matrix(0.175294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175294,0.000000,0.000000,0.250000,0,0);}
.m531_c00001{transform:matrix(0.184137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184137,0.000000,0.000000,0.250000,0,0);}
.m9eb_c00001{transform:matrix(0.194502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194502,0.000000,0.000000,0.250000,0,0);}
.m5e6_c00001{transform:matrix(0.195539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195539,0.000000,0.000000,0.250000,0,0);}
.m180_c00001{transform:matrix(0.195798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195798,0.000000,0.000000,0.250000,0,0);}
.m85a_c00001{transform:matrix(0.196197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196197,0.000000,0.000000,0.250000,0,0);}
.m7c9_c00001{transform:matrix(0.196314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196314,0.000000,0.000000,0.250000,0,0);}
.m57f_c00001{transform:matrix(0.196324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196324,0.000000,0.000000,0.250000,0,0);}
.m74a_c00001{transform:matrix(0.199907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199907,0.000000,0.000000,0.250000,0,0);}
.m7c6_c00001{transform:matrix(0.200207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200207,0.000000,0.000000,0.250000,0,0);}
.m944_c00001{transform:matrix(0.202071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202071,0.000000,0.000000,0.250000,0,0);}
.m9ea_c00001{transform:matrix(0.208403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208403,0.000000,0.000000,0.250000,0,0);}
.m7e3_c00001{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);}
.m94e_c00001{transform:matrix(0.211918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211918,0.000000,0.000000,0.250000,0,0);}
.m6a3_c00001{transform:matrix(0.218558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218558,0.000000,0.000000,0.250000,0,0);}
.m8c0_c00001{transform:matrix(0.218824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218824,0.000000,0.000000,0.250000,0,0);}
.m8a0_c00001{transform:matrix(0.228216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228216,0.000000,0.000000,0.250000,0,0);}
.m59a_c00001{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m32d_c00001{transform:matrix(0.231846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231846,0.000000,0.000000,0.250000,0,0);}
.m68a_c00001{transform:matrix(0.232353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232353,0.000000,0.000000,0.250000,0,0);}
.m5fc_c00001{transform:matrix(0.238404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238404,0.000000,0.000000,0.250000,0,0);}
.m8d6_c00001{transform:matrix(0.241181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241181,0.000000,0.000000,0.250000,0,0);}
.m217_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);}
.m3bc_c00001{transform:matrix(0.263485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263485,0.000000,0.000000,0.250000,0,0);}
.m52b_c00001{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.m525_c00001{transform:matrix(0.275974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275974,0.000000,0.000000,0.250000,0,0);}
.m379_c00001{transform:matrix(0.281513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281513,0.000000,0.000000,0.250000,0,0);}
.m84c_c00001{transform:matrix(0.282004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282004,0.000000,0.000000,0.250000,0,0);}
.m5cd_c00001{transform:matrix(0.283859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283859,0.000000,0.000000,0.250000,0,0);}
.m857_c00001{transform:matrix(0.291280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291280,0.000000,0.000000,0.250000,0,0);}
.m7f0_c00001{transform:matrix(0.291494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291494,0.000000,0.000000,0.250000,0,0);}
.m5c3_c00001{transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291597,0.000000,0.000000,0.250000,0,0);}
.m555_c00001{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m7eb_c00001{transform:matrix(0.294527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294527,0.000000,0.000000,0.250000,0,0);}
.m216_c00001{transform:matrix(0.299629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299629,0.000000,0.000000,0.250000,0,0);}
.m810_c00001{transform:matrix(0.299793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299793,0.000000,0.000000,0.250000,0,0);}
.m522_c00001{transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301764,0.000000,0.000000,0.250000,0,0);}
.m44e_c00001{transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304448,0.000000,0.000000,0.250000,0,0);}
.m99d_c00001{transform:matrix(0.304622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304622,0.000000,0.000000,0.250000,0,0);}
.m565_c00001{transform:matrix(0.305288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305288,0.000000,0.000000,0.250000,0,0);}
.m681_c00001{transform:matrix(0.305498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305498,0.000000,0.000000,0.250000,0,0);}
.m79e_c00001{transform:matrix(0.307514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307514,0.000000,0.000000,0.250000,0,0);}
.m73e_c00001{transform:matrix(0.308442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308442,0.000000,0.000000,0.250000,0,0);}
.m631_c00001{transform:matrix(0.308666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308666,0.000000,0.000000,0.250000,0,0);}
.m80d_c00001{transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);}
.m403_c00001{transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312152,0.000000,0.000000,0.250000,0,0);}
.m860_c00001{transform:matrix(0.314007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314007,0.000000,0.000000,0.250000,0,0);}
.m4b8_c00001{transform:matrix(0.314034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314034,0.000000,0.000000,0.250000,0,0);}
.m34d_c00001{transform:matrix(0.314417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314417,0.000000,0.000000,0.250000,0,0);}
.m3a0_c00001{transform:matrix(0.317718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317718,0.000000,0.000000,0.250000,0,0);}
.m579_c00001{transform:matrix(0.318382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318382,0.000000,0.000000,0.250000,0,0);}
.m1c2_c00001{transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318908,0.000000,0.000000,0.250000,0,0);}
.m524_c00001{transform:matrix(0.320168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320168,0.000000,0.000000,0.250000,0,0);}
.m558_c00001{transform:matrix(0.321324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321324,0.000000,0.000000,0.250000,0,0);}
.m5c8_c00001{transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);}
.m9f2_c00001{transform:matrix(0.321892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321892,0.000000,0.000000,0.250000,0,0);}
.m9dd_c00001{transform:matrix(0.322086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322086,0.000000,0.000000,0.250000,0,0);}
.m813_c00001{transform:matrix(0.323748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323748,0.000000,0.000000,0.250000,0,0);}
.m9e1_c00001{transform:matrix(0.325210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325210,0.000000,0.000000,0.250000,0,0);}
.m7dd_c00001{transform:matrix(0.326994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326994,0.000000,0.000000,0.250000,0,0);}
.m82f_c00001{transform:matrix(0.327801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327801,0.000000,0.000000,0.250000,0,0);}
.m91e_c00001{transform:matrix(0.327922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327922,0.000000,0.000000,0.250000,0,0);}
.m3bf_c00001{transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327941,0.000000,0.000000,0.250000,0,0);}
.m5a0_c00001{transform:matrix(0.328235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328235,0.000000,0.000000,0.250000,0,0);}
.m229_c00001{transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328992,0.000000,0.000000,0.250000,0,0);}
.m2c0_c00001{transform:matrix(0.330672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330672,0.000000,0.000000,0.250000,0,0);}
.m831_c00001{transform:matrix(0.332096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332096,0.000000,0.000000,0.250000,0,0);}
.m8d0_c00001{transform:matrix(0.333024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333024,0.000000,0.000000,0.250000,0,0);}
.m454_c00001{transform:matrix(0.333206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333206,0.000000,0.000000,0.250000,0,0);}
.m452_c00001{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m7a7_c00001{transform:matrix(0.333529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333529,0.000000,0.000000,0.250000,0,0);}
.m11c_c00001{transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333613,0.000000,0.000000,0.250000,0,0);}
.m80e_c00001{transform:matrix(0.333824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333824,0.000000,0.000000,0.250000,0,0);}
.m888_c00001{transform:matrix(0.336271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336271,0.000000,0.000000,0.250000,0,0);}
.m40b_c00001{transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336555,0.000000,0.000000,0.250000,0,0);}
.m11e_c00001{transform:matrix(0.337040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337040,0.000000,0.000000,0.250000,0,0);}
.m332_c00001{transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337423,0.000000,0.000000,0.250000,0,0);}
.m85d_c00001{transform:matrix(0.338126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338126,0.000000,0.000000,0.250000,0,0);}
.m3f9_c00001{transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338190,0.000000,0.000000,0.250000,0,0);}
.m39d_c00001{transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339076,0.000000,0.000000,0.250000,0,0);}
.m9de_c00001{transform:matrix(0.339981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339981,0.000000,0.000000,0.250000,0,0);}
.m7c2_c00001{transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340336,0.000000,0.000000,0.250000,0,0);}
.m618_c00001{transform:matrix(0.340445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340445,0.000000,0.000000,0.250000,0,0);}
.m1e2_c00001{transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340491,0.000000,0.000000,0.250000,0,0);}
.m4c0_c00001{transform:matrix(0.340756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340756,0.000000,0.000000,0.250000,0,0);}
.m67c_c00001{transform:matrix(0.341176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341176,0.000000,0.000000,0.250000,0,0);}
.m4c1_c00001{transform:matrix(0.341258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341258,0.000000,0.000000,0.250000,0,0);}
.m7e0_c00001{transform:matrix(0.341373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341373,0.000000,0.000000,0.250000,0,0);}
.m763_c00001{transform:matrix(0.341837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341837,0.000000,0.000000,0.250000,0,0);}
.m74e_c00001{transform:matrix(0.342017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342017,0.000000,0.000000,0.250000,0,0);}
.m63a_c00001{transform:matrix(0.342437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342437,0.000000,0.000000,0.250000,0,0);}
.m7d6_c00001{transform:matrix(0.342764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342764,0.000000,0.000000,0.250000,0,0);}
.m4c5_c00001{transform:matrix(0.342857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342857,0.000000,0.000000,0.250000,0,0);}
.m664_c00001{transform:matrix(0.343612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343612,0.000000,0.000000,0.250000,0,0);}
.m9d_c00001{transform:matrix(0.344118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344118,0.000000,0.000000,0.250000,0,0);}
.m733_c00001{transform:matrix(0.344156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344156,0.000000,0.000000,0.250000,0,0);}
.m732_c00001{transform:matrix(0.344620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344620,0.000000,0.000000,0.250000,0,0);}
.m9e0_c00001{transform:matrix(0.344958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344958,0.000000,0.000000,0.250000,0,0);}
.m181_c00001{transform:matrix(0.346218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346218,0.000000,0.000000,0.250000,0,0);}
.m7d1_c00001{transform:matrix(0.346475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346475,0.000000,0.000000,0.250000,0,0);}
.m59b_c00001{transform:matrix(0.346955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346955,0.000000,0.000000,0.250000,0,0);}
.m6eb_c00001{transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347403,0.000000,0.000000,0.250000,0,0);}
.m348_c00001{transform:matrix(0.347866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347866,0.000000,0.000000,0.250000,0,0);}
.m6f6_c00001{transform:matrix(0.348235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348235,0.000000,0.000000,0.250000,0,0);}
.m241_c00001{transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348319,0.000000,0.000000,0.250000,0,0);}
.m638_c00001{transform:matrix(0.348330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348330,0.000000,0.000000,0.250000,0,0);}
.me1_c00001{transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348543,0.000000,0.000000,0.250000,0,0);}
.m45f_c00001{transform:matrix(0.348548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348548,0.000000,0.000000,0.250000,0,0);}
.m201_c00001{transform:matrix(0.348739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348739,0.000000,0.000000,0.250000,0,0);}
.m509_c00001{transform:matrix(0.348794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348794,0.000000,0.000000,0.250000,0,0);}
.m2c8_c00001{transform:matrix(0.348926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348926,0.000000,0.000000,0.250000,0,0);}
.m187_c00001{transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349160,0.000000,0.000000,0.250000,0,0);}
.m970_c00001{transform:matrix(0.349258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349258,0.000000,0.000000,0.250000,0,0);}
.m22b_c00001{transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349310,0.000000,0.000000,0.250000,0,0);}
.m486_c00001{transform:matrix(0.349580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349580,0.000000,0.000000,0.250000,0,0);}
.m496_c00001{transform:matrix(0.349722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349722,0.000000,0.000000,0.250000,0,0);}
.m488_c00001{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);}
.m570_c00001{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);}
.m134_c00001{transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350077,0.000000,0.000000,0.250000,0,0);}
.m741_c00001{transform:matrix(0.350104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350104,0.000000,0.000000,0.250000,0,0);}
.m9ed_c00001{transform:matrix(0.352941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352941,0.000000,0.000000,0.250000,0,0);}
.m819_c00001{transform:matrix(0.352968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352968,0.000000,0.000000,0.250000,0,0);}
.m7e7_c00001{transform:matrix(0.353432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353432,0.000000,0.000000,0.250000,0,0);}
.m516_c00001{transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);}
.mce_c00001{transform:matrix(0.354202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354202,0.000000,0.000000,0.250000,0,0);}
.m679_c00001{transform:matrix(0.354294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354294,0.000000,0.000000,0.250000,0,0);}
.m521_c00001{transform:matrix(0.354360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354360,0.000000,0.000000,0.250000,0,0);}
.m644_c00001{transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354622,0.000000,0.000000,0.250000,0,0);}
.m2c9_c00001{transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355061,0.000000,0.000000,0.250000,0,0);}
.m70e_c00001{transform:matrix(0.355288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355288,0.000000,0.000000,0.250000,0,0);}
.m376_c00001{transform:matrix(0.355882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355882,0.000000,0.000000,0.250000,0,0);}
.m7a2_c00001{transform:matrix(0.356679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356679,0.000000,0.000000,0.250000,0,0);}
.m5f9_c00001{transform:matrix(0.356723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356723,0.000000,0.000000,0.250000,0,0);}
.m106_c00001{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.m87e_c00001{transform:matrix(0.357607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357607,0.000000,0.000000,0.250000,0,0);}
.m67a_c00001{transform:matrix(0.357745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357745,0.000000,0.000000,0.250000,0,0);}
.m8e_c00001{transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358403,0.000000,0.000000,0.250000,0,0);}
.m871_c00001{transform:matrix(0.358534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358534,0.000000,0.000000,0.250000,0,0);}
.m63f_c00001{transform:matrix(0.358896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358896,0.000000,0.000000,0.250000,0,0);}
.m7d2_c00001{transform:matrix(0.358998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358998,0.000000,0.000000,0.250000,0,0);}
.m63e_c00001{transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359279,0.000000,0.000000,0.250000,0,0);}
.m419_c00001{transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359462,0.000000,0.000000,0.250000,0,0);}
.m1d5_c00001{transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359663,0.000000,0.000000,0.250000,0,0);}
.m3c7_c00001{transform:matrix(0.359664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359664,0.000000,0.000000,0.250000,0,0);}
.m7cc_c00001{transform:matrix(0.359926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359926,0.000000,0.000000,0.250000,0,0);}
.m9d9_c00001{transform:matrix(0.360390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360390,0.000000,0.000000,0.250000,0,0);}
.m484_c00001{transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360504,0.000000,0.000000,0.250000,0,0);}
.m75f_c00001{transform:matrix(0.360853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360853,0.000000,0.000000,0.250000,0,0);}
.m330_c00001{transform:matrix(0.361029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361029,0.000000,0.000000,0.250000,0,0);}
.m80a_c00001{transform:matrix(0.361317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361317,0.000000,0.000000,0.250000,0,0);}
.me2_c00001{transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361345,0.000000,0.000000,0.250000,0,0);}
.m670_c00001{transform:matrix(0.361765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361765,0.000000,0.000000,0.250000,0,0);}
.m6a8_c00001{transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361781,0.000000,0.000000,0.250000,0,0);}
.m792_c00001{transform:matrix(0.362245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362245,0.000000,0.000000,0.250000,0,0);}
.m5be_c00001{transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362347,0.000000,0.000000,0.250000,0,0);}
.m1a_c00001{transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362605,0.000000,0.000000,0.250000,0,0);}
.m62b_c00001{transform:matrix(0.363173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363173,0.000000,0.000000,0.250000,0,0);}
.m9dc_c00001{transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);}
.mb8_c00001{transform:matrix(0.363866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363866,0.000000,0.000000,0.250000,0,0);}
.m658_c00001{transform:matrix(0.364100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364100,0.000000,0.000000,0.250000,0,0);}
.m378_c00001{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m5ee_c00001{transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364627,0.000000,0.000000,0.250000,0,0);}
.m483_c00001{transform:matrix(0.364647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364647,0.000000,0.000000,0.250000,0,0);}
.m2c6_c00001{transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364706,0.000000,0.000000,0.250000,0,0);}
.m285_c00001{transform:matrix(0.365028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365028,0.000000,0.000000,0.250000,0,0);}
.m222_c00001{transform:matrix(0.365126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365126,0.000000,0.000000,0.250000,0,0);}
.m3db_c00001{transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365546,0.000000,0.000000,0.250000,0,0);}
.m6fe_c00001{transform:matrix(0.365955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365955,0.000000,0.000000,0.250000,0,0);}
.m4b1_c00001{transform:matrix(0.365966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365966,0.000000,0.000000,0.250000,0,0);}
.m34f_c00001{transform:matrix(0.366181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366181,0.000000,0.000000,0.250000,0,0);}
.m66b_c00001{transform:matrix(0.366387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366387,0.000000,0.000000,0.250000,0,0);}
.m2a4_c00001{transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366419,0.000000,0.000000,0.250000,0,0);}
.m36f_c00001{transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366807,0.000000,0.000000,0.250000,0,0);}
.m794_c00001{transform:matrix(0.366883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366883,0.000000,0.000000,0.250000,0,0);}
.m4c8_c00001{transform:matrix(0.366948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366948,0.000000,0.000000,0.250000,0,0);}
.m4c2_c00001{transform:matrix(0.367227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367227,0.000000,0.000000,0.250000,0,0);}
.m482_c00001{transform:matrix(0.367331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367331,0.000000,0.000000,0.250000,0,0);}
.m80f_c00001{transform:matrix(0.367347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367347,0.000000,0.000000,0.250000,0,0);}
.m1e9_c00001{transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367647,0.000000,0.000000,0.250000,0,0);}
.m50f_c00001{transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367811,0.000000,0.000000,0.250000,0,0);}
.m0_c00001{transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368067,0.000000,0.000000,0.250000,0,0);}
.m5c7_c00001{transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368098,0.000000,0.000000,0.250000,0,0);}
.m42f_c00001{transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368257,0.000000,0.000000,0.250000,0,0);}
.m6dd_c00001{transform:matrix(0.368275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368275,0.000000,0.000000,0.250000,0,0);}
.mb2_c00001{transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368487,0.000000,0.000000,0.250000,0,0);}
.m7b4_c00001{transform:matrix(0.368738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368738,0.000000,0.000000,0.250000,0,0);}
.m713_c00001{transform:matrix(0.369202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369202,0.000000,0.000000,0.250000,0,0);}
.m5c2_c00001{transform:matrix(0.369632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369632,0.000000,0.000000,0.250000,0,0);}
.m648_c00001{transform:matrix(0.369666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369666,0.000000,0.000000,0.250000,0,0);}
.m1fa_c00001{transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369748,0.000000,0.000000,0.250000,0,0);}
.m41e_c00001{transform:matrix(0.370130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370130,0.000000,0.000000,0.250000,0,0);}
.m7b_c00001{transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370168,0.000000,0.000000,0.250000,0,0);}
.m33e_c00001{transform:matrix(0.370588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370588,0.000000,0.000000,0.250000,0,0);}
.m23e_c00001{transform:matrix(0.370594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370594,0.000000,0.000000,0.250000,0,0);}
.m11_c00001{transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371008,0.000000,0.000000,0.250000,0,0);}
.m25b_c00001{transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371058,0.000000,0.000000,0.250000,0,0);}
.m33b_c00001{transform:matrix(0.371166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371166,0.000000,0.000000,0.250000,0,0);}
.m708_c00001{transform:matrix(0.371176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371176,0.000000,0.000000,0.250000,0,0);}
.m5a2_c00001{transform:matrix(0.371324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371324,0.000000,0.000000,0.250000,0,0);}
.m526_c00001{transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371369,0.000000,0.000000,0.250000,0,0);}
.m162_c00001{transform:matrix(0.371429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371429,0.000000,0.000000,0.250000,0,0);}
.m743_c00001{transform:matrix(0.371521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371521,0.000000,0.000000,0.250000,0,0);}
.m342_c00001{transform:matrix(0.371549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371549,0.000000,0.000000,0.250000,0,0);}
.m2df_c00001{transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371849,0.000000,0.000000,0.250000,0,0);}
.m6a2_c00001{transform:matrix(0.371933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371933,0.000000,0.000000,0.250000,0,0);}
.m29d_c00001{transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371985,0.000000,0.000000,0.250000,0,0);}
.m95_c00001{transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372269,0.000000,0.000000,0.250000,0,0);}
.m7c0_c00001{transform:matrix(0.372449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372449,0.000000,0.000000,0.250000,0,0);}
.m66c_c00001{transform:matrix(0.372689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372689,0.000000,0.000000,0.250000,0,0);}
.m210_c00001{transform:matrix(0.372699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372699,0.000000,0.000000,0.250000,0,0);}
.m694_c00001{transform:matrix(0.372913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372913,0.000000,0.000000,0.250000,0,0);}
.m408_c00001{transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373109,0.000000,0.000000,0.250000,0,0);}
.m744_c00001{transform:matrix(0.373377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373377,0.000000,0.000000,0.250000,0,0);}
.m36e_c00001{transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373529,0.000000,0.000000,0.250000,0,0);}
.m4ae_c00001{transform:matrix(0.373850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373850,0.000000,0.000000,0.250000,0,0);}
.m4fb_c00001{transform:matrix(0.373950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373950,0.000000,0.000000,0.250000,0,0);}
.m299_c00001{transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374768,0.000000,0.000000,0.250000,0,0);}
.m2d2_c00001{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m538_c00001{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m84_c00001{transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375210,0.000000,0.000000,0.250000,0,0);}
.m87f_c00001{transform:matrix(0.375294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375294,0.000000,0.000000,0.250000,0,0);}
.m518_c00001{transform:matrix(0.375696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375696,0.000000,0.000000,0.250000,0,0);}
.m736_c00001{transform:matrix(0.376160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376160,0.000000,0.000000,0.250000,0,0);}
.m2ba_c00001{transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376471,0.000000,0.000000,0.250000,0,0);}
.m73b_c00001{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m467_c00001{transform:matrix(0.376891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376891,0.000000,0.000000,0.250000,0,0);}
.m7d5_c00001{transform:matrix(0.377075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377075,0.000000,0.000000,0.250000,0,0);}
.m5a4_c00001{transform:matrix(0.377087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377087,0.000000,0.000000,0.250000,0,0);}
.m462_c00001{transform:matrix(0.377301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377301,0.000000,0.000000,0.250000,0,0);}
.mdd_c00001{transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377311,0.000000,0.000000,0.250000,0,0);}
.m851_c00001{transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377551,0.000000,0.000000,0.250000,0,0);}
.m64c_c00001{transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377684,0.000000,0.000000,0.250000,0,0);}
.m124_c00001{transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377731,0.000000,0.000000,0.250000,0,0);}
.m284_c00001{transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378015,0.000000,0.000000,0.250000,0,0);}
.m4cd_c00001{transform:matrix(0.378112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378112,0.000000,0.000000,0.250000,0,0);}
.m171_c00001{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m652_c00001{transform:matrix(0.378834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378834,0.000000,0.000000,0.250000,0,0);}
.m783_c00001{transform:matrix(0.378942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378942,0.000000,0.000000,0.250000,0,0);}
.m67e_c00001{transform:matrix(0.379218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379218,0.000000,0.000000,0.250000,0,0);}
.m750_c00001{transform:matrix(0.379406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379406,0.000000,0.000000,0.250000,0,0);}
.m44b_c00001{transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379412,0.000000,0.000000,0.250000,0,0);}
.m2e6_c00001{transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379832,0.000000,0.000000,0.250000,0,0);}
.m889_c00001{transform:matrix(0.379870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379870,0.000000,0.000000,0.250000,0,0);}
.m811_c00001{transform:matrix(0.380187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380187,0.000000,0.000000,0.250000,0,0);}
.m62d_c00001{transform:matrix(0.380252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380252,0.000000,0.000000,0.250000,0,0);}
.m672_c00001{transform:matrix(0.380334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380334,0.000000,0.000000,0.250000,0,0);}
.m662_c00001{transform:matrix(0.380609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380609,0.000000,0.000000,0.250000,0,0);}
.m183_c00001{transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380672,0.000000,0.000000,0.250000,0,0);}
.m6ac_c00001{transform:matrix(0.380705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380705,0.000000,0.000000,0.250000,0,0);}
.m33f_c00001{transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380752,0.000000,0.000000,0.250000,0,0);}
.m87a_c00001{transform:matrix(0.380798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380798,0.000000,0.000000,0.250000,0,0);}
.m1e5_c00001{transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381092,0.000000,0.000000,0.250000,0,0);}
.m688_c00001{transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381262,0.000000,0.000000,0.250000,0,0);}
.m478_c00001{transform:matrix(0.381725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381725,0.000000,0.000000,0.250000,0,0);}
.m799_c00001{transform:matrix(0.381743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381743,0.000000,0.000000,0.250000,0,0);}
.m69d_c00001{transform:matrix(0.381902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381902,0.000000,0.000000,0.250000,0,0);}
.m8_c00001{transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381933,0.000000,0.000000,0.250000,0,0);}
.m78e_c00001{transform:matrix(0.382189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382189,0.000000,0.000000,0.250000,0,0);}
.m154_c00001{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m718_c00001{transform:matrix(0.382653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382653,0.000000,0.000000,0.250000,0,0);}
.m223_c00001{transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382669,0.000000,0.000000,0.250000,0,0);}
.mb0_c00001{transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382773,0.000000,0.000000,0.250000,0,0);}
.m474_c00001{transform:matrix(0.382780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382780,0.000000,0.000000,0.250000,0,0);}
.m645_c00001{transform:matrix(0.383117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383117,0.000000,0.000000,0.250000,0,0);}
.m2cb_c00001{transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383193,0.000000,0.000000,0.250000,0,0);}
.m865_c00001{transform:matrix(0.383299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383299,0.000000,0.000000,0.250000,0,0);}
.m655_c00001{transform:matrix(0.383436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383436,0.000000,0.000000,0.250000,0,0);}
.m620_c00001{transform:matrix(0.383581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383581,0.000000,0.000000,0.250000,0,0);}
.m185_c00001{transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383613,0.000000,0.000000,0.250000,0,0);}
.m75b_c00001{transform:matrix(0.383817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383817,0.000000,0.000000,0.250000,0,0);}
.m3ff_c00001{transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384034,0.000000,0.000000,0.250000,0,0);}
.m6e8_c00001{transform:matrix(0.384045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384045,0.000000,0.000000,0.250000,0,0);}
.m75c_c00001{transform:matrix(0.384336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384336,0.000000,0.000000,0.250000,0,0);}
.me0_c00001{transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384454,0.000000,0.000000,0.250000,0,0);}
.m80b_c00001{transform:matrix(0.384508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384508,0.000000,0.000000,0.250000,0,0);}
.m465_c00001{transform:matrix(0.384586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384586,0.000000,0.000000,0.250000,0,0);}
.m7d3_c00001{transform:matrix(0.384855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384855,0.000000,0.000000,0.250000,0,0);}
.m65a_c00001{transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384972,0.000000,0.000000,0.250000,0,0);}
.m130_c00001{transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385294,0.000000,0.000000,0.250000,0,0);}
.m4da_c00001{transform:matrix(0.385436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385436,0.000000,0.000000,0.250000,0,0);}
.m1b2_c00001{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m481_c00001{transform:matrix(0.385736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385736,0.000000,0.000000,0.250000,0,0);}
.m62a_c00001{transform:matrix(0.385900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385900,0.000000,0.000000,0.250000,0,0);}
.m115_c00001{transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386134,0.000000,0.000000,0.250000,0,0);}
.m678_c00001{transform:matrix(0.386364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386364,0.000000,0.000000,0.250000,0,0);}
.m7b9_c00001{transform:matrix(0.386411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386411,0.000000,0.000000,0.250000,0,0);}
.m5ad_c00001{transform:matrix(0.386503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386503,0.000000,0.000000,0.250000,0,0);}
.m3e3_c00001{transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386555,0.000000,0.000000,0.250000,0,0);}
.m754_c00001{transform:matrix(0.386827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386827,0.000000,0.000000,0.250000,0,0);}
.m1d6_c00001{transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386975,0.000000,0.000000,0.250000,0,0);}
.m42d_c00001{transform:matrix(0.387270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387270,0.000000,0.000000,0.250000,0,0);}
.m48d_c00001{transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387291,0.000000,0.000000,0.250000,0,0);}
.m49a_c00001{transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387395,0.000000,0.000000,0.250000,0,0);}
.m825_c00001{transform:matrix(0.387448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387448,0.000000,0.000000,0.250000,0,0);}
.m4f6_c00001{transform:matrix(0.387653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387653,0.000000,0.000000,0.250000,0,0);}
.m673_c00001{transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);}
.m4_c00001{transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387815,0.000000,0.000000,0.250000,0,0);}
.m47a_c00001{transform:matrix(0.388037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388037,0.000000,0.000000,0.250000,0,0);}
.m3ed_c00001{transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388235,0.000000,0.000000,0.250000,0,0);}
.m64d_c00001{transform:matrix(0.388420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388420,0.000000,0.000000,0.250000,0,0);}
.m2fa_c00001{transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388622,0.000000,0.000000,0.250000,0,0);}
.m46c_c00001{transform:matrix(0.388655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388655,0.000000,0.000000,0.250000,0,0);}
.m343_c00001{transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388683,0.000000,0.000000,0.250000,0,0);}
.m4a5_c00001{transform:matrix(0.388971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388971,0.000000,0.000000,0.250000,0,0);}
.m346_c00001{transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389004,0.000000,0.000000,0.250000,0,0);}
.me8_c00001{transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389076,0.000000,0.000000,0.250000,0,0);}
.m267_c00001{transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389147,0.000000,0.000000,0.250000,0,0);}
.m10_c00001{transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389496,0.000000,0.000000,0.250000,0,0);}
.m776_c00001{transform:matrix(0.389523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389523,0.000000,0.000000,0.250000,0,0);}
.m4c7_c00001{transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389571,0.000000,0.000000,0.250000,0,0);}
.m61f_c00001{transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389610,0.000000,0.000000,0.250000,0,0);}
.mcb_c00001{transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389916,0.000000,0.000000,0.250000,0,0);}
.m81f_c00001{transform:matrix(0.390041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390041,0.000000,0.000000,0.250000,0,0);}
.m48b_c00001{transform:matrix(0.390074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390074,0.000000,0.000000,0.250000,0,0);}
.maa_c00001{transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390336,0.000000,0.000000,0.250000,0,0);}
.m64a_c00001{transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390538,0.000000,0.000000,0.250000,0,0);}
.m870_c00001{transform:matrix(0.390588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390588,0.000000,0.000000,0.250000,0,0);}
.m500_c00001{transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391002,0.000000,0.000000,0.250000,0,0);}
.mdf_c00001{transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391176,0.000000,0.000000,0.250000,0,0);}
.m649_c00001{transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391466,0.000000,0.000000,0.250000,0,0);}
.m1f5_c00001{transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391597,0.000000,0.000000,0.250000,0,0);}
.m7bf_c00001{transform:matrix(0.391598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391598,0.000000,0.000000,0.250000,0,0);}
.m6c5_c00001{transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391929,0.000000,0.000000,0.250000,0,0);}
.mc1_c00001{transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392017,0.000000,0.000000,0.250000,0,0);}
.m530_c00001{transform:matrix(0.392116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392116,0.000000,0.000000,0.250000,0,0);}
.m4ec_c00001{transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392393,0.000000,0.000000,0.250000,0,0);}
.mab_c00001{transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392437,0.000000,0.000000,0.250000,0,0);}
.m772_c00001{transform:matrix(0.392628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392628,0.000000,0.000000,0.250000,0,0);}
.m731_c00001{transform:matrix(0.392635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392635,0.000000,0.000000,0.250000,0,0);}
.m3e7_c00001{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m504_c00001{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m820_c00001{transform:matrix(0.393154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393154,0.000000,0.000000,0.250000,0,0);}
.m189_c00001{transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393277,0.000000,0.000000,0.250000,0,0);}
.m6af_c00001{transform:matrix(0.393321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393321,0.000000,0.000000,0.250000,0,0);}
.m2aa_c00001{transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);}
.m105_c00001{transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393697,0.000000,0.000000,0.250000,0,0);}
.m43c_c00001{transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393785,0.000000,0.000000,0.250000,0,0);}
.m29_c00001{transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394118,0.000000,0.000000,0.250000,0,0);}
.m654_c00001{transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394172,0.000000,0.000000,0.250000,0,0);}
.m746_c00001{transform:matrix(0.394191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394191,0.000000,0.000000,0.250000,0,0);}
.m227_c00001{transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394249,0.000000,0.000000,0.250000,0,0);}
.m3f3_c00001{transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394538,0.000000,0.000000,0.250000,0,0);}
.m7c7_c00001{transform:matrix(0.394710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394710,0.000000,0.000000,0.250000,0,0);}
.m4f0_c00001{transform:matrix(0.394712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394712,0.000000,0.000000,0.250000,0,0);}
.mc2_c00001{transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394958,0.000000,0.000000,0.250000,0,0);}
.m5b8_c00001{transform:matrix(0.395176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395176,0.000000,0.000000,0.250000,0,0);}
.m41d_c00001{transform:matrix(0.395228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395228,0.000000,0.000000,0.250000,0,0);}
.m2b7_c00001{transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395378,0.000000,0.000000,0.250000,0,0);}
.m6e9_c00001{transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395640,0.000000,0.000000,0.250000,0,0);}
.m79d_c00001{transform:matrix(0.395747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395747,0.000000,0.000000,0.250000,0,0);}
.mcd_c00001{transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395798,0.000000,0.000000,0.250000,0,0);}
.m1de_c00001{transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396104,0.000000,0.000000,0.250000,0,0);}
.ma1_c00001{transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396218,0.000000,0.000000,0.250000,0,0);}
.m78f_c00001{transform:matrix(0.396266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396266,0.000000,0.000000,0.250000,0,0);}
.m775_c00001{transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396568,0.000000,0.000000,0.250000,0,0);}
.m240_c00001{transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396639,0.000000,0.000000,0.250000,0,0);}
.m69f_c00001{transform:matrix(0.396856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396856,0.000000,0.000000,0.250000,0,0);}
.m2ee_c00001{transform:matrix(0.397032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397032,0.000000,0.000000,0.250000,0,0);}
.m139_c00001{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m7d9_c00001{transform:matrix(0.397303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397303,0.000000,0.000000,0.250000,0,0);}
.m17e_c00001{transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397479,0.000000,0.000000,0.250000,0,0);}
.m291_c00001{transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397495,0.000000,0.000000,0.250000,0,0);}
.m806_c00001{transform:matrix(0.397647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397647,0.000000,0.000000,0.250000,0,0);}
.m6fa_c00001{transform:matrix(0.397822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397822,0.000000,0.000000,0.250000,0,0);}
.m1c8_c00001{transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397899,0.000000,0.000000,0.250000,0,0);}
.m6b5_c00001{transform:matrix(0.397959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397959,0.000000,0.000000,0.250000,0,0);}
.m5c9_c00001{transform:matrix(0.398006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398006,0.000000,0.000000,0.250000,0,0);}
.m49d_c00001{transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398319,0.000000,0.000000,0.250000,0,0);}
.m839_c00001{transform:matrix(0.398340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398340,0.000000,0.000000,0.250000,0,0);}
.m58e_c00001{transform:matrix(0.398390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398390,0.000000,0.000000,0.250000,0,0);}
.m71a_c00001{transform:matrix(0.398423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398423,0.000000,0.000000,0.250000,0,0);}
.m1e_c00001{transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398739,0.000000,0.000000,0.250000,0,0);}
.m5fb_c00001{transform:matrix(0.398859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398859,0.000000,0.000000,0.250000,0,0);}
.m5fa_c00001{transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398887,0.000000,0.000000,0.250000,0,0);}
.m2ea_c00001{transform:matrix(0.399156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399156,0.000000,0.000000,0.250000,0,0);}
.m2d9_c00001{transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399160,0.000000,0.000000,0.250000,0,0);}
.m6a4_c00001{transform:matrix(0.399351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399351,0.000000,0.000000,0.250000,0,0);}
.m6f9_c00001{transform:matrix(0.399378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399378,0.000000,0.000000,0.250000,0,0);}
.m471_c00001{transform:matrix(0.399540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399540,0.000000,0.000000,0.250000,0,0);}
.m1ec_c00001{transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399580,0.000000,0.000000,0.250000,0,0);}
.m236_c00001{transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399814,0.000000,0.000000,0.250000,0,0);}
.m661_c00001{transform:matrix(0.399840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399840,0.000000,0.000000,0.250000,0,0);}
.m5ab_c00001{transform:matrix(0.399896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399896,0.000000,0.000000,0.250000,0,0);}
.m42a_c00001{transform:matrix(0.399923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399923,0.000000,0.000000,0.250000,0,0);}
.m2e0_c00001{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);}
.m32e_c00001{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);}
.m686_c00001{transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400278,0.000000,0.000000,0.250000,0,0);}
.m6d1_c00001{transform:matrix(0.400415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400415,0.000000,0.000000,0.250000,0,0);}
.m44a_c00001{transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400420,0.000000,0.000000,0.250000,0,0);}
.m859_c00001{transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400742,0.000000,0.000000,0.250000,0,0);}
.m68_c00001{transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400840,0.000000,0.000000,0.250000,0,0);}
.m67b_c00001{transform:matrix(0.400934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400934,0.000000,0.000000,0.250000,0,0);}
.m5c0_c00001{transform:matrix(0.401074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401074,0.000000,0.000000,0.250000,0,0);}
.me4_c00001{transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401206,0.000000,0.000000,0.250000,0,0);}
.ma9_c00001{transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401261,0.000000,0.000000,0.250000,0,0);}
.m6d7_c00001{transform:matrix(0.401452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401452,0.000000,0.000000,0.250000,0,0);}
.m297_c00001{transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401670,0.000000,0.000000,0.250000,0,0);}
.m1f6_c00001{transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401681,0.000000,0.000000,0.250000,0,0);}
.m5f8_c00001{transform:matrix(0.401765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401765,0.000000,0.000000,0.250000,0,0);}
.m456_c00001{transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402101,0.000000,0.000000,0.250000,0,0);}
.m745_c00001{transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402134,0.000000,0.000000,0.250000,0,0);}
.m705_c00001{transform:matrix(0.402490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402490,0.000000,0.000000,0.250000,0,0);}
.m220_c00001{transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402521,0.000000,0.000000,0.250000,0,0);}
.m788_c00001{transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);}
.m13a_c00001{transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402941,0.000000,0.000000,0.250000,0,0);}
.m34e_c00001{transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403061,0.000000,0.000000,0.250000,0,0);}
.m6a1_c00001{transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403361,0.000000,0.000000,0.250000,0,0);}
.m344_c00001{transform:matrix(0.403525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403525,0.000000,0.000000,0.250000,0,0);}
.m17c_c00001{transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403527,0.000000,0.000000,0.250000,0,0);}
.m63d_c00001{transform:matrix(0.403758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403758,0.000000,0.000000,0.250000,0,0);}
.m15_c00001{transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403782,0.000000,0.000000,0.250000,0,0);}
.m4a4_c00001{transform:matrix(0.403846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403846,0.000000,0.000000,0.250000,0,0);}
.m647_c00001{transform:matrix(0.403989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403989,0.000000,0.000000,0.250000,0,0);}
.m76c_c00001{transform:matrix(0.404046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404046,0.000000,0.000000,0.250000,0,0);}
.m78d_c00001{transform:matrix(0.404118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404118,0.000000,0.000000,0.250000,0,0);}
.m155_c00001{transform:matrix(0.404141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404141,0.000000,0.000000,0.250000,0,0);}
.m3fd_c00001{transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404202,0.000000,0.000000,0.250000,0,0);}
.m286_c00001{transform:matrix(0.404453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404453,0.000000,0.000000,0.250000,0,0);}
.m676_c00001{transform:matrix(0.404564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404564,0.000000,0.000000,0.250000,0,0);}
.m27_c00001{transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404622,0.000000,0.000000,0.250000,0,0);}
.m512_c00001{transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404917,0.000000,0.000000,0.250000,0,0);}
.m202_c00001{transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405042,0.000000,0.000000,0.250000,0,0);}
.m1a2_c00001{transform:matrix(0.405083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405083,0.000000,0.000000,0.250000,0,0);}
.m4a9_c00001{transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);}
.md7_c00001{transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405462,0.000000,0.000000,0.250000,0,0);}
.m6fc_c00001{transform:matrix(0.405602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405602,0.000000,0.000000,0.250000,0,0);}
.m45e_c00001{transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405844,0.000000,0.000000,0.250000,0,0);}
.m398_c00001{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m7fd_c00001{transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405882,0.000000,0.000000,0.250000,0,0);}
.m4b0_c00001{transform:matrix(0.406058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406058,0.000000,0.000000,0.250000,0,0);}
.m4f2_c00001{transform:matrix(0.406120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406120,0.000000,0.000000,0.250000,0,0);}
.m30c_c00001{transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00001{transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406303,0.000000,0.000000,0.250000,0,0);}
.m75e_c00001{transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406308,0.000000,0.000000,0.250000,0,0);}
.m78b_c00001{transform:matrix(0.406639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406639,0.000000,0.000000,0.250000,0,0);}
.m1ee_c00001{transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406723,0.000000,0.000000,0.250000,0,0);}
.m6ab_c00001{transform:matrix(0.406772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406772,0.000000,0.000000,0.250000,0,0);}
.m13_c00001{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m797_c00001{transform:matrix(0.407158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407158,0.000000,0.000000,0.250000,0,0);}
.m293_c00001{transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407236,0.000000,0.000000,0.250000,0,0);}
.m167_c00001{transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407563,0.000000,0.000000,0.250000,0,0);}
.m3f8_c00001{transform:matrix(0.407592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407592,0.000000,0.000000,0.250000,0,0);}
.m77a_c00001{transform:matrix(0.407676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407676,0.000000,0.000000,0.250000,0,0);}
.m28e_c00001{transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407699,0.000000,0.000000,0.250000,0,0);}
.m2f5_c00001{transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407853,0.000000,0.000000,0.250000,0,0);}
.m632_c00001{transform:matrix(0.407975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407975,0.000000,0.000000,0.250000,0,0);}
.m2d7_c00001{transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407983,0.000000,0.000000,0.250000,0,0);}
.m371_c00001{transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);}
.m389_c00001{transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408195,0.000000,0.000000,0.250000,0,0);}
.m37a_c00001{transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408403,0.000000,0.000000,0.250000,0,0);}
.m505_c00001{transform:matrix(0.408627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408627,0.000000,0.000000,0.250000,0,0);}
.m81e_c00001{transform:matrix(0.408714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408714,0.000000,0.000000,0.250000,0,0);}
.m35_c00001{transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408824,0.000000,0.000000,0.250000,0,0);}
.m39e_c00001{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m517_c00001{transform:matrix(0.409232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409232,0.000000,0.000000,0.250000,0,0);}
.m1f8_c00001{transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409244,0.000000,0.000000,0.250000,0,0);}
.m367_c00001{transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409555,0.000000,0.000000,0.250000,0,0);}
.m111_c00001{transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409664,0.000000,0.000000,0.250000,0,0);}
.m725_c00001{transform:matrix(0.409751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409751,0.000000,0.000000,0.250000,0,0);}
.mb5_c00001{transform:matrix(0.409893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409893,0.000000,0.000000,0.250000,0,0);}
.m6ec_c00001{transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410019,0.000000,0.000000,0.250000,0,0);}
.m13b_c00001{transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410084,0.000000,0.000000,0.250000,0,0);}
.m18_c00001{transform:matrix(0.410270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410270,0.000000,0.000000,0.250000,0,0);}
.m630_c00001{transform:matrix(0.410276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410276,0.000000,0.000000,0.250000,0,0);}
.m4eb_c00001{transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410482,0.000000,0.000000,0.250000,0,0);}
.m13d_c00001{transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410504,0.000000,0.000000,0.250000,0,0);}
.m58c_c00001{transform:matrix(0.410788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410788,0.000000,0.000000,0.250000,0,0);}
.m109_c00001{transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410924,0.000000,0.000000,0.250000,0,0);}
.m1ad_c00001{transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410946,0.000000,0.000000,0.250000,0,0);}
.m7bd_c00001{transform:matrix(0.411176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411176,0.000000,0.000000,0.250000,0,0);}
.m707_c00001{transform:matrix(0.411307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411307,0.000000,0.000000,0.250000,0,0);}
.m192_c00001{transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411345,0.000000,0.000000,0.250000,0,0);}
.m4a0_c00001{transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411410,0.000000,0.000000,0.250000,0,0);}
.m1e1_c00001{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m429_c00001{transform:matrix(0.411810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411810,0.000000,0.000000,0.250000,0,0);}
.m2c3_c00001{transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411826,0.000000,0.000000,0.250000,0,0);}
.m5b9_c00001{transform:matrix(0.411874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411874,0.000000,0.000000,0.250000,0,0);}
.m4b_c00001{transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412185,0.000000,0.000000,0.250000,0,0);}
.m1aa_c00001{transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412338,0.000000,0.000000,0.250000,0,0);}
.m6e6_c00001{transform:matrix(0.412344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412344,0.000000,0.000000,0.250000,0,0);}
.m16_c00001{transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412605,0.000000,0.000000,0.250000,0,0);}
.m339_c00001{transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412801,0.000000,0.000000,0.250000,0,0);}
.m73f_c00001{transform:matrix(0.412863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412863,0.000000,0.000000,0.250000,0,0);}
.m14c_c00001{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m723_c00001{transform:matrix(0.413265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413265,0.000000,0.000000,0.250000,0,0);}
.m66f_c00001{transform:matrix(0.413344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413344,0.000000,0.000000,0.250000,0,0);}
.m7c4_c00001{transform:matrix(0.413382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413382,0.000000,0.000000,0.250000,0,0);}
.m11d_c00001{transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413445,0.000000,0.000000,0.250000,0,0);}
.m235_c00001{transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413729,0.000000,0.000000,0.250000,0,0);}
.m97_c00001{transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413866,0.000000,0.000000,0.250000,0,0);}
.m276_c00001{transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413900,0.000000,0.000000,0.250000,0,0);}
.m418_c00001{transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414193,0.000000,0.000000,0.250000,0,0);}
.mae_c00001{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.m786_c00001{transform:matrix(0.414419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414419,0.000000,0.000000,0.250000,0,0);}
.m369_c00001{transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414657,0.000000,0.000000,0.250000,0,0);}
.m7_c00001{transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414706,0.000000,0.000000,0.250000,0,0);}
.m249_c00001{transform:matrix(0.414877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414877,0.000000,0.000000,0.250000,0,0);}
.m622_c00001{transform:matrix(0.414938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414938,0.000000,0.000000,0.250000,0,0);}
.m23a_c00001{transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415121,0.000000,0.000000,0.250000,0,0);}
.mba_c00001{transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415126,0.000000,0.000000,0.250000,0,0);}
.m7be_c00001{transform:matrix(0.415456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415456,0.000000,0.000000,0.250000,0,0);}
.mc8_c00001{transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415546,0.000000,0.000000,0.250000,0,0);}
.m6b0_c00001{transform:matrix(0.415584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415584,0.000000,0.000000,0.250000,0,0);}
.m113_c00001{transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415966,0.000000,0.000000,0.250000,0,0);}
.m874_c00001{transform:matrix(0.416048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416048,0.000000,0.000000,0.250000,0,0);}
.m393_c00001{transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416387,0.000000,0.000000,0.250000,0,0);}
.m3a2_c00001{transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416494,0.000000,0.000000,0.250000,0,0);}
.m23b_c00001{transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416512,0.000000,0.000000,0.250000,0,0);}
.m446_c00001{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.m461_c00001{transform:matrix(0.416794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416794,0.000000,0.000000,0.250000,0,0);}
.m70_c00001{transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416807,0.000000,0.000000,0.250000,0,0);}
.m6ba_c00001{transform:matrix(0.416976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416976,0.000000,0.000000,0.250000,0,0);}
.m703_c00001{transform:matrix(0.417059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417059,0.000000,0.000000,0.250000,0,0);}
.m98_c00001{transform:matrix(0.417227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417227,0.000000,0.000000,0.250000,0,0);}
.m50a_c00001{transform:matrix(0.417440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417440,0.000000,0.000000,0.250000,0,0);}
.m6d4_c00001{transform:matrix(0.417531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417531,0.000000,0.000000,0.250000,0,0);}
.m1c3_c00001{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m665_c00001{transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417647,0.000000,0.000000,0.250000,0,0);}
.m4ed_c00001{transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417904,0.000000,0.000000,0.250000,0,0);}
.m4c4_c00001{transform:matrix(0.418050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418050,0.000000,0.000000,0.250000,0,0);}
.mbc_c00001{transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418067,0.000000,0.000000,0.250000,0,0);}
.m415_c00001{transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418367,0.000000,0.000000,0.250000,0,0);}
.m9b_c00001{transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418487,0.000000,0.000000,0.250000,0,0);}
.m5b2_c00001{transform:matrix(0.418568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418568,0.000000,0.000000,0.250000,0,0);}
.m817_c00001{transform:matrix(0.418824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418824,0.000000,0.000000,0.250000,0,0);}
.m5ec_c00001{transform:matrix(0.418831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418831,0.000000,0.000000,0.250000,0,0);}
.m96_c00001{transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418908,0.000000,0.000000,0.250000,0,0);}
.m507_c00001{transform:matrix(0.419087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419087,0.000000,0.000000,0.250000,0,0);}
.m381_c00001{transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419295,0.000000,0.000000,0.250000,0,0);}
.m132_c00001{transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419328,0.000000,0.000000,0.250000,0,0);}
.m4a2_c00001{transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419604,0.000000,0.000000,0.250000,0,0);}
.m5f6_c00001{transform:matrix(0.419606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419606,0.000000,0.000000,0.250000,0,0);}
.m23_c00001{transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419748,0.000000,0.000000,0.250000,0,0);}
.m238_c00001{transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419759,0.000000,0.000000,0.250000,0,0);}
.m70f_c00001{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);}
.m785_c00001{transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420124,0.000000,0.000000,0.250000,0,0);}
.md_c00001{transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420168,0.000000,0.000000,0.250000,0,0);}
.m1db_c00001{transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420223,0.000000,0.000000,0.250000,0,0);}
.m142_c00001{transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420588,0.000000,0.000000,0.250000,0,0);}
.m51b_c00001{transform:matrix(0.420643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420643,0.000000,0.000000,0.250000,0,0);}
.m1f3_c00001{transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420686,0.000000,0.000000,0.250000,0,0);}
.m50_c00001{transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421008,0.000000,0.000000,0.250000,0,0);}
.m48c_c00001{transform:matrix(0.421150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421150,0.000000,0.000000,0.250000,0,0);}
.m275_c00001{transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421162,0.000000,0.000000,0.250000,0,0);}
.m66a_c00001{transform:matrix(0.421324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421324,0.000000,0.000000,0.250000,0,0);}
.m1e8_c00001{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m4ad_c00001{transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421614,0.000000,0.000000,0.250000,0,0);}
.m62e_c00001{transform:matrix(0.421680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421680,0.000000,0.000000,0.250000,0,0);}
.m38c_c00001{transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421849,0.000000,0.000000,0.250000,0,0);}
.m211_c00001{transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422078,0.000000,0.000000,0.250000,0,0);}
.m264_c00001{transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422199,0.000000,0.000000,0.250000,0,0);}
.mf6_c00001{transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422269,0.000000,0.000000,0.250000,0,0);}
.m7e8_c00001{transform:matrix(0.422353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422353,0.000000,0.000000,0.250000,0,0);}
.m4d0_c00001{transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422542,0.000000,0.000000,0.250000,0,0);}
.m4b9_c00001{transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422546,0.000000,0.000000,0.250000,0,0);}
.mcf_c00001{transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422689,0.000000,0.000000,0.250000,0,0);}
.m85_c00001{transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422718,0.000000,0.000000,0.250000,0,0);}
.m370_c00001{transform:matrix(0.422929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422929,0.000000,0.000000,0.250000,0,0);}
.m760_c00001{transform:matrix(0.422941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422941,0.000000,0.000000,0.250000,0,0);}
.m19d_c00001{transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423006,0.000000,0.000000,0.250000,0,0);}
.ma4_c00001{transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423109,0.000000,0.000000,0.250000,0,0);}
.m7bb_c00001{transform:matrix(0.423237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423237,0.000000,0.000000,0.250000,0,0);}
.m5b1_c00001{transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);}
.m1ea_c00001{transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423529,0.000000,0.000000,0.250000,0,0);}
.m265_c00001{transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423755,0.000000,0.000000,0.250000,0,0);}
.m2f1_c00001{transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423878,0.000000,0.000000,0.250000,0,0);}
.m4ea_c00001{transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423933,0.000000,0.000000,0.250000,0,0);}
.m2f_c00001{transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423950,0.000000,0.000000,0.250000,0,0);}
.m442_c00001{transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424265,0.000000,0.000000,0.250000,0,0);}
.m77c_c00001{transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424274,0.000000,0.000000,0.250000,0,0);}
.m1a3_c00001{transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424370,0.000000,0.000000,0.250000,0,0);}
.m739_c00001{transform:matrix(0.424397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424397,0.000000,0.000000,0.250000,0,0);}
.m7ba_c00001{transform:matrix(0.424706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424706,0.000000,0.000000,0.250000,0,0);}
.md6_c00001{transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424790,0.000000,0.000000,0.250000,0,0);}
.m231_c00001{transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424793,0.000000,0.000000,0.250000,0,0);}
.m250_c00001{transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424861,0.000000,0.000000,0.250000,0,0);}
.m18f_c00001{transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425210,0.000000,0.000000,0.250000,0,0);}
.m8a2_c00001{transform:matrix(0.425311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425311,0.000000,0.000000,0.250000,0,0);}
.m3e2_c00001{transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425325,0.000000,0.000000,0.250000,0,0);}
.m131_c00001{transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425630,0.000000,0.000000,0.250000,0,0);}
.m1a9_c00001{transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425788,0.000000,0.000000,0.250000,0,0);}
.m3a1_c00001{transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425830,0.000000,0.000000,0.250000,0,0);}
.m748_c00001{transform:matrix(0.425882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425882,0.000000,0.000000,0.250000,0,0);}
.m1ab_c00001{transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426050,0.000000,0.000000,0.250000,0,0);}
.m2e2_c00001{transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426252,0.000000,0.000000,0.250000,0,0);}
.m791_c00001{transform:matrix(0.426349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426349,0.000000,0.000000,0.250000,0,0);}
.m118_c00001{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m45a_c00001{transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426716,0.000000,0.000000,0.250000,0,0);}
.m6a7_c00001{transform:matrix(0.426867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426867,0.000000,0.000000,0.250000,0,0);}
.mb7_c00001{transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426891,0.000000,0.000000,0.250000,0,0);}
.m3d2_c00001{transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427180,0.000000,0.000000,0.250000,0,0);}
.mff_c00001{transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427311,0.000000,0.000000,0.250000,0,0);}
.m63b_c00001{transform:matrix(0.427386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427386,0.000000,0.000000,0.250000,0,0);}
.m2a3_c00001{transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427644,0.000000,0.000000,0.250000,0,0);}
.m755_c00001{transform:matrix(0.427647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427647,0.000000,0.000000,0.250000,0,0);}
.m15b_c00001{transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427731,0.000000,0.000000,0.250000,0,0);}
.m7fc_c00001{transform:matrix(0.427905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427905,0.000000,0.000000,0.250000,0,0);}
.m4f7_c00001{transform:matrix(0.428108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428108,0.000000,0.000000,0.250000,0,0);}
.mc3_c00001{transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428151,0.000000,0.000000,0.250000,0,0);}
.m6e5_c00001{transform:matrix(0.428423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428423,0.000000,0.000000,0.250000,0,0);}
.mc4_c00001{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m1c1_c00001{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m771_c00001{transform:matrix(0.428942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428942,0.000000,0.000000,0.250000,0,0);}
.m47b_c00001{transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428992,0.000000,0.000000,0.250000,0,0);}
.m46a_c00001{transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429035,0.000000,0.000000,0.250000,0,0);}
.m37e_c00001{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m816_c00001{transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429412,0.000000,0.000000,0.250000,0,0);}
.m532_c00001{transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429461,0.000000,0.000000,0.250000,0,0);}
.m41c_c00001{transform:matrix(0.429499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429499,0.000000,0.000000,0.250000,0,0);}
.m1bf_c00001{transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429832,0.000000,0.000000,0.250000,0,0);}
.m1bb_c00001{transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429963,0.000000,0.000000,0.250000,0,0);}
.m52f_c00001{transform:matrix(0.429979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429979,0.000000,0.000000,0.250000,0,0);}
.m146_c00001{transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430252,0.000000,0.000000,0.250000,0,0);}
.m373_c00001{transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430427,0.000000,0.000000,0.250000,0,0);}
.me9_c00001{transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430498,0.000000,0.000000,0.250000,0,0);}
.m82a_c00001{transform:matrix(0.430588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430588,0.000000,0.000000,0.250000,0,0);}
.m1cd_c00001{transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430672,0.000000,0.000000,0.250000,0,0);}
.m1e6_c00001{transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430891,0.000000,0.000000,0.250000,0,0);}
.m501_c00001{transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431017,0.000000,0.000000,0.250000,0,0);}
.m2b_c00001{transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431092,0.000000,0.000000,0.250000,0,0);}
.m824_c00001{transform:matrix(0.431176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431176,0.000000,0.000000,0.250000,0,0);}
.m643_c00001{transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431354,0.000000,0.000000,0.250000,0,0);}
.ma8_c00001{transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431513,0.000000,0.000000,0.250000,0,0);}
.m278_c00001{transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431535,0.000000,0.000000,0.250000,0,0);}
.m73d_c00001{transform:matrix(0.431765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431765,0.000000,0.000000,0.250000,0,0);}
.m366_c00001{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.m663_c00001{transform:matrix(0.431891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431891,0.000000,0.000000,0.250000,0,0);}
.mf9_c00001{transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431933,0.000000,0.000000,0.250000,0,0);}
.m77b_c00001{transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432054,0.000000,0.000000,0.250000,0,0);}
.m16f_c00001{transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432282,0.000000,0.000000,0.250000,0,0);}
.mc7_c00001{transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432353,0.000000,0.000000,0.250000,0,0);}
.m4c3_c00001{transform:matrix(0.432515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432515,0.000000,0.000000,0.250000,0,0);}
.med_c00001{transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432573,0.000000,0.000000,0.250000,0,0);}
.m3e1_c00001{transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432746,0.000000,0.000000,0.250000,0,0);}
.m102_c00001{transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432773,0.000000,0.000000,0.250000,0,0);}
.m801_c00001{transform:matrix(0.432941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432941,0.000000,0.000000,0.250000,0,0);}
.m315_c00001{transform:matrix(0.433088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433088,0.000000,0.000000,0.250000,0,0);}
.m1d7_c00001{transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433091,0.000000,0.000000,0.250000,0,0);}
.m89_c00001{transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433193,0.000000,0.000000,0.250000,0,0);}
.m196_c00001{transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433210,0.000000,0.000000,0.250000,0,0);}
.m7a4_c00001{transform:matrix(0.433529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433529,0.000000,0.000000,0.250000,0,0);}
.m6a5_c00001{transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433610,0.000000,0.000000,0.250000,0,0);}
.m3cd_c00001{transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433613,0.000000,0.000000,0.250000,0,0);}
.m594_c00001{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.m26_c00001{transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434034,0.000000,0.000000,0.250000,0,0);}
.m84d_c00001{transform:matrix(0.434118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434118,0.000000,0.000000,0.250000,0,0);}
.m499_c00001{transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434129,0.000000,0.000000,0.250000,0,0);}
.m4d3_c00001{transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434137,0.000000,0.000000,0.250000,0,0);}
.m54_c00001{transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434454,0.000000,0.000000,0.250000,0,0);}
.m44_c00001{transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434601,0.000000,0.000000,0.250000,0,0);}
.mf5_c00001{transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434647,0.000000,0.000000,0.250000,0,0);}
.m7cd_c00001{transform:matrix(0.434706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434706,0.000000,0.000000,0.250000,0,0);}
.m15e_c00001{transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434874,0.000000,0.000000,0.250000,0,0);}
.m26d_c00001{transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435065,0.000000,0.000000,0.250000,0,0);}
.m2ec_c00001{transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435166,0.000000,0.000000,0.250000,0,0);}
.mf7_c00001{transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435294,0.000000,0.000000,0.250000,0,0);}
.m840_c00001{transform:matrix(0.435529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435529,0.000000,0.000000,0.250000,0,0);}
.m9c6_c00001{transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435685,0.000000,0.000000,0.250000,0,0);}
.m173_c00001{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m104_c00001{transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436456,0.000000,0.000000,0.250000,0,0);}
.m749_c00001{transform:matrix(0.436722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436722,0.000000,0.000000,0.250000,0,0);}
.m58_c00001{transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436975,0.000000,0.000000,0.250000,0,0);}
.m6ef_c00001{transform:matrix(0.437059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437059,0.000000,0.000000,0.250000,0,0);}
.m289_c00001{transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437225,0.000000,0.000000,0.250000,0,0);}
.m215_c00001{transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437241,0.000000,0.000000,0.250000,0,0);}
.m1f4_c00001{transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437384,0.000000,0.000000,0.250000,0,0);}
.m372_c00001{transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437395,0.000000,0.000000,0.250000,0,0);}
.m2f9_c00001{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);}
.m4b6_c00001{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);}
.m179_c00001{transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437647,0.000000,0.000000,0.250000,0,0);}
.m71c_c00001{transform:matrix(0.437759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437759,0.000000,0.000000,0.250000,0,0);}
.m350_c00001{transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437815,0.000000,0.000000,0.250000,0,0);}
.m87b_c00001{transform:matrix(0.437848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437848,0.000000,0.000000,0.250000,0,0);}
.m45b_c00001{transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438131,0.000000,0.000000,0.250000,0,0);}
.m611_c00001{transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438235,0.000000,0.000000,0.250000,0,0);}
.m219_c00001{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.m174_c00001{transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439239,0.000000,0.000000,0.250000,0,0);}
.m29c_c00001{transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439315,0.000000,0.000000,0.250000,0,0);}
.m759_c00001{transform:matrix(0.439412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439412,0.000000,0.000000,0.250000,0,0);}
.m14f_c00001{transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439496,0.000000,0.000000,0.250000,0,0);}
.m2c5_c00001{transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439703,0.000000,0.000000,0.250000,0,0);}
.m25c_c00001{transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439834,0.000000,0.000000,0.250000,0,0);}
.m20a_c00001{transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439916,0.000000,0.000000,0.250000,0,0);}
.m737_c00001{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);}
.m129_c00001{transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440167,0.000000,0.000000,0.250000,0,0);}
.m395_c00001{transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440336,0.000000,0.000000,0.250000,0,0);}
.m3d1_c00001{transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440353,0.000000,0.000000,0.250000,0,0);}
.m821_c00001{transform:matrix(0.440588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440588,0.000000,0.000000,0.250000,0,0);}
.m1e7_c00001{transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440631,0.000000,0.000000,0.250000,0,0);}
.m1a1_c00001{transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440756,0.000000,0.000000,0.250000,0,0);}
.m485_c00001{transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440871,0.000000,0.000000,0.250000,0,0);}
.m1b3_c00001{transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441095,0.000000,0.000000,0.250000,0,0);}
.m126_c00001{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m73a_c00001{transform:matrix(0.441390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441390,0.000000,0.000000,0.250000,0,0);}
.m43e_c00001{transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441506,0.000000,0.000000,0.250000,0,0);}
.m3e0_c00001{transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441558,0.000000,0.000000,0.250000,0,0);}
.m22a_c00001{transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441597,0.000000,0.000000,0.250000,0,0);}
.m70b_c00001{transform:matrix(0.441765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441765,0.000000,0.000000,0.250000,0,0);}
.m27a_c00001{transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441909,0.000000,0.000000,0.250000,0,0);}
.m318_c00001{transform:matrix(0.441912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441912,0.000000,0.000000,0.250000,0,0);}
.m12_c00001{transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442017,0.000000,0.000000,0.250000,0,0);}
.m2e1_c00001{transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442022,0.000000,0.000000,0.250000,0,0);}
.m78c_c00001{transform:matrix(0.442353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442353,0.000000,0.000000,0.250000,0,0);}
.m271_c00001{transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442427,0.000000,0.000000,0.250000,0,0);}
.mc5_c00001{transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442437,0.000000,0.000000,0.250000,0,0);}
.m3cf_c00001{transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442486,0.000000,0.000000,0.250000,0,0);}
.m127_c00001{transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442857,0.000000,0.000000,0.250000,0,0);}
.m637_c00001{transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442946,0.000000,0.000000,0.250000,0,0);}
.m4f8_c00001{transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442950,0.000000,0.000000,0.250000,0,0);}
.m14e_c00001{transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443277,0.000000,0.000000,0.250000,0,0);}
.m774_c00001{transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443414,0.000000,0.000000,0.250000,0,0);}
.m3dd_c00001{transform:matrix(0.443465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443465,0.000000,0.000000,0.250000,0,0);}
.m81b_c00001{transform:matrix(0.443529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443529,0.000000,0.000000,0.250000,0,0);}
.m248_c00001{transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443878,0.000000,0.000000,0.250000,0,0);}
.m2fb_c00001{transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443910,0.000000,0.000000,0.250000,0,0);}
.m747_c00001{transform:matrix(0.443983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443983,0.000000,0.000000,0.250000,0,0);}
.m4f_c00001{transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444118,0.000000,0.000000,0.250000,0,0);}
.m1be_c00001{transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444502,0.000000,0.000000,0.250000,0,0);}
.m143_c00001{transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444538,0.000000,0.000000,0.250000,0,0);}
.m298_c00001{transform:matrix(0.444706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444706,0.000000,0.000000,0.250000,0,0);}
.m40f_c00001{transform:matrix(0.444805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444805,0.000000,0.000000,0.250000,0,0);}
.m325_c00001{transform:matrix(0.444853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444853,0.000000,0.000000,0.250000,0,0);}
.m495_c00001{transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444958,0.000000,0.000000,0.250000,0,0);}
.m778_c00001{transform:matrix(0.445021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445021,0.000000,0.000000,0.250000,0,0);}
.m20d_c00001{transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445269,0.000000,0.000000,0.250000,0,0);}
.m436_c00001{transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445378,0.000000,0.000000,0.250000,0,0);}
.m508_c00001{transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445539,0.000000,0.000000,0.250000,0,0);}
.m65_c00001{transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445733,0.000000,0.000000,0.250000,0,0);}
.m226_c00001{transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445798,0.000000,0.000000,0.250000,0,0);}
.m787_c00001{transform:matrix(0.445882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445882,0.000000,0.000000,0.250000,0,0);}
.m502_c00001{transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446058,0.000000,0.000000,0.250000,0,0);}
.m2e8_c00001{transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446197,0.000000,0.000000,0.250000,0,0);}
.m38e_c00001{transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446218,0.000000,0.000000,0.250000,0,0);}
.m50c_c00001{transform:matrix(0.446324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446324,0.000000,0.000000,0.250000,0,0);}
.m6d8_c00001{transform:matrix(0.446471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446471,0.000000,0.000000,0.250000,0,0);}
.m4dd_c00001{transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446577,0.000000,0.000000,0.250000,0,0);}
.m156_c00001{transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446639,0.000000,0.000000,0.250000,0,0);}
.m83_c00001{transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446660,0.000000,0.000000,0.250000,0,0);}
.m8c_c00001{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m726_c00001{transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447059,0.000000,0.000000,0.250000,0,0);}
.m4bd_c00001{transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447095,0.000000,0.000000,0.250000,0,0);}
.m16b_c00001{transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447124,0.000000,0.000000,0.250000,0,0);}
.m218_c00001{transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447479,0.000000,0.000000,0.250000,0,0);}
.m1d2_c00001{transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447588,0.000000,0.000000,0.250000,0,0);}
.md4_c00001{transform:matrix(0.447614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447614,0.000000,0.000000,0.250000,0,0);}
.m795_c00001{transform:matrix(0.447647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447647,0.000000,0.000000,0.250000,0,0);}
.m87_c00001{transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447899,0.000000,0.000000,0.250000,0,0);}
.m4e7_c00001{transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448052,0.000000,0.000000,0.250000,0,0);}
.m689_c00001{transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448133,0.000000,0.000000,0.250000,0,0);}
.m7dc_c00001{transform:matrix(0.448235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448235,0.000000,0.000000,0.250000,0,0);}
.m387_c00001{transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448319,0.000000,0.000000,0.250000,0,0);}
.m60_c00001{transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448516,0.000000,0.000000,0.250000,0,0);}
.m50d_c00001{transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448651,0.000000,0.000000,0.250000,0,0);}
.me_c00001{transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448739,0.000000,0.000000,0.250000,0,0);}
.m822_c00001{transform:matrix(0.448824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448824,0.000000,0.000000,0.250000,0,0);}
.m203_c00001{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m3a_c00001{transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449160,0.000000,0.000000,0.250000,0,0);}
.m93_c00001{transform:matrix(0.449170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449170,0.000000,0.000000,0.250000,0,0);}
.m823_c00001{transform:matrix(0.449412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449412,0.000000,0.000000,0.250000,0,0);}
.m17a_c00001{transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449443,0.000000,0.000000,0.250000,0,0);}
.m642_c00001{transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);}
.m269_c00001{transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449689,0.000000,0.000000,0.250000,0,0);}
.m3f6_c00001{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);}
.m714_c00001{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);}
.m738_c00001{transform:matrix(0.450207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450207,0.000000,0.000000,0.250000,0,0);}
.m14b_c00001{transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450371,0.000000,0.000000,0.250000,0,0);}
.m84e_c00001{transform:matrix(0.450588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450588,0.000000,0.000000,0.250000,0,0);}
.m1da_c00001{transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450726,0.000000,0.000000,0.250000,0,0);}
.m1fd_c00001{transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450835,0.000000,0.000000,0.250000,0,0);}
.m191_c00001{transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450840,0.000000,0.000000,0.250000,0,0);}
.m735_c00001{transform:matrix(0.451176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451176,0.000000,0.000000,0.250000,0,0);}
.m27d_c00001{transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451245,0.000000,0.000000,0.250000,0,0);}
.m3e9_c00001{transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451261,0.000000,0.000000,0.250000,0,0);}
.m1ed_c00001{transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451299,0.000000,0.000000,0.250000,0,0);}
.m2e_c00001{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.mc0_c00001{transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451763,0.000000,0.000000,0.250000,0,0);}
.m7ea_c00001{transform:matrix(0.451765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451765,0.000000,0.000000,0.250000,0,0);}
.m489_c00001{transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452101,0.000000,0.000000,0.250000,0,0);}
.m1b4_c00001{transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452226,0.000000,0.000000,0.250000,0,0);}
.m5af_c00001{transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452282,0.000000,0.000000,0.250000,0,0);}
.m756_c00001{transform:matrix(0.452353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452353,0.000000,0.000000,0.250000,0,0);}
.m188_c00001{transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452521,0.000000,0.000000,0.250000,0,0);}
.m1b6_c00001{transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452690,0.000000,0.000000,0.250000,0,0);}
.m26c_c00001{transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452801,0.000000,0.000000,0.250000,0,0);}
.m176_c00001{transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452941,0.000000,0.000000,0.250000,0,0);}
.m1c_c00001{transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453154,0.000000,0.000000,0.250000,0,0);}
.m50e_c00001{transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453320,0.000000,0.000000,0.250000,0,0);}
.m2dd_c00001{transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453361,0.000000,0.000000,0.250000,0,0);}
.m3a8_c00001{transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453526,0.000000,0.000000,0.250000,0,0);}
.m789_c00001{transform:matrix(0.453529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453529,0.000000,0.000000,0.250000,0,0);}
.m2bc_c00001{transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453618,0.000000,0.000000,0.250000,0,0);}
.m149_c00001{transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453782,0.000000,0.000000,0.250000,0,0);}
.m2a6_c00001{transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453838,0.000000,0.000000,0.250000,0,0);}
.m2e3_c00001{transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);}
.m71d_c00001{transform:matrix(0.454118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454118,0.000000,0.000000,0.250000,0,0);}
.m3c9_c00001{transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454202,0.000000,0.000000,0.250000,0,0);}
.m1dd_c00001{transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454357,0.000000,0.000000,0.250000,0,0);}
.m49c_c00001{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.m385_c00001{transform:matrix(0.454622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454622,0.000000,0.000000,0.250000,0,0);}
.m6ae_c00001{transform:matrix(0.454706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454706,0.000000,0.000000,0.250000,0,0);}
.m345_c00001{transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454876,0.000000,0.000000,0.250000,0,0);}
.m200_c00001{transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455009,0.000000,0.000000,0.250000,0,0);}
.m3b9_c00001{transform:matrix(0.455128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455128,0.000000,0.000000,0.250000,0,0);}
.m764_c00001{transform:matrix(0.455294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455294,0.000000,0.000000,0.250000,0,0);}
.m292_c00001{transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455394,0.000000,0.000000,0.250000,0,0);}
.m2e9_c00001{transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455462,0.000000,0.000000,0.250000,0,0);}
.m18d_c00001{transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455473,0.000000,0.000000,0.250000,0,0);}
.m1c5_c00001{transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455882,0.000000,0.000000,0.250000,0,0);}
.m46e_c00001{transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455913,0.000000,0.000000,0.250000,0,0);}
.m37b_c00001{transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456303,0.000000,0.000000,0.250000,0,0);}
.mbe_c00001{transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456401,0.000000,0.000000,0.250000,0,0);}
.mbf_c00001{transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456432,0.000000,0.000000,0.250000,0,0);}
.m85f_c00001{transform:matrix(0.456618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456618,0.000000,0.000000,0.250000,0,0);}
.m123_c00001{transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456723,0.000000,0.000000,0.250000,0,0);}
.m5e7_c00001{transform:matrix(0.456865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456865,0.000000,0.000000,0.250000,0,0);}
.m589_c00001{transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456950,0.000000,0.000000,0.250000,0,0);}
.m7c1_c00001{transform:matrix(0.457059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457059,0.000000,0.000000,0.250000,0,0);}
.m144_c00001{transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457143,0.000000,0.000000,0.250000,0,0);}
.m169_c00001{transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457328,0.000000,0.000000,0.250000,0,0);}
.m843_c00001{transform:matrix(0.457353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457353,0.000000,0.000000,0.250000,0,0);}
.m6c8_c00001{transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457469,0.000000,0.000000,0.250000,0,0);}
.m40d_c00001{transform:matrix(0.457563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457563,0.000000,0.000000,0.250000,0,0);}
.m818_c00001{transform:matrix(0.457647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457647,0.000000,0.000000,0.250000,0,0);}
.m55_c00001{transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457792,0.000000,0.000000,0.250000,0,0);}
.m58b_c00001{transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457988,0.000000,0.000000,0.250000,0,0);}
.m720_c00001{transform:matrix(0.458235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458235,0.000000,0.000000,0.250000,0,0);}
.m239_c00001{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m2b4_c00001{transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458403,0.000000,0.000000,0.250000,0,0);}
.m3a3_c00001{transform:matrix(0.458506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458506,0.000000,0.000000,0.250000,0,0);}
.m2d5_c00001{transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458720,0.000000,0.000000,0.250000,0,0);}
.m729_c00001{transform:matrix(0.458824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458824,0.000000,0.000000,0.250000,0,0);}
.m255_c00001{transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459025,0.000000,0.000000,0.250000,0,0);}
.m3f1_c00001{transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459244,0.000000,0.000000,0.250000,0,0);}
.m7ff_c00001{transform:matrix(0.459412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459412,0.000000,0.000000,0.250000,0,0);}
.m815_c00001{transform:matrix(0.459544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459544,0.000000,0.000000,0.250000,0,0);}
.m3bd_c00001{transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459596,0.000000,0.000000,0.250000,0,0);}
.ma0_c00001{transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459647,0.000000,0.000000,0.250000,0,0);}
.m3b0_c00001{transform:matrix(0.459936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459936,0.000000,0.000000,0.250000,0,0);}
.m6bd_c00001{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_c00001{transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460062,0.000000,0.000000,0.250000,0,0);}
.m2d_c00001{transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460084,0.000000,0.000000,0.250000,0,0);}
.m1f_c00001{transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460504,0.000000,0.000000,0.250000,0,0);}
.m5ea_c00001{transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460575,0.000000,0.000000,0.250000,0,0);}
.m506_c00001{transform:matrix(0.460581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460581,0.000000,0.000000,0.250000,0,0);}
.m700_c00001{transform:matrix(0.460588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460588,0.000000,0.000000,0.250000,0,0);}
.m4d2_c00001{transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460924,0.000000,0.000000,0.250000,0,0);}
.m1ba_c00001{transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461039,0.000000,0.000000,0.250000,0,0);}
.m364_c00001{transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461100,0.000000,0.000000,0.250000,0,0);}
.m82c_c00001{transform:matrix(0.461176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461176,0.000000,0.000000,0.250000,0,0);}
.me6_c00001{transform:matrix(0.461345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461345,0.000000,0.000000,0.250000,0,0);}
.m242_c00001{transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461503,0.000000,0.000000,0.250000,0,0);}
.m324_c00001{transform:matrix(0.461538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461538,0.000000,0.000000,0.250000,0,0);}
.m1cf_c00001{transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461618,0.000000,0.000000,0.250000,0,0);}
.m44f_c00001{transform:matrix(0.461765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461765,0.000000,0.000000,0.250000,0,0);}
.m19b_c00001{transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461967,0.000000,0.000000,0.250000,0,0);}
.m165_c00001{transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462137,0.000000,0.000000,0.250000,0,0);}
.m480_c00001{transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462185,0.000000,0.000000,0.250000,0,0);}
.m667_c00001{transform:matrix(0.462340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462340,0.000000,0.000000,0.250000,0,0);}
.m75a_c00001{transform:matrix(0.462353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462353,0.000000,0.000000,0.250000,0,0);}
.m151_c00001{transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462605,0.000000,0.000000,0.250000,0,0);}
.m6b4_c00001{transform:matrix(0.462656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462656,0.000000,0.000000,0.250000,0,0);}
.m1ce_c00001{transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462894,0.000000,0.000000,0.250000,0,0);}
.m7ce_c00001{transform:matrix(0.462941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462941,0.000000,0.000000,0.250000,0,0);}
.m3d3_c00001{transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463174,0.000000,0.000000,0.250000,0,0);}
.m22c_c00001{transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463358,0.000000,0.000000,0.250000,0,0);}
.m68d_c00001{transform:matrix(0.463445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463445,0.000000,0.000000,0.250000,0,0);}
.m72f_c00001{transform:matrix(0.463529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463529,0.000000,0.000000,0.250000,0,0);}
.m258_c00001{transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463693,0.000000,0.000000,0.250000,0,0);}
.m2ad_c00001{transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463822,0.000000,0.000000,0.250000,0,0);}
.m311_c00001{transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463942,0.000000,0.000000,0.250000,0,0);}
.m6f8_c00001{transform:matrix(0.464118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464118,0.000000,0.000000,0.250000,0,0);}
.m28c_c00001{transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464212,0.000000,0.000000,0.250000,0,0);}
.m4b4_c00001{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.m21c_c00001{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.m6d9_c00001{transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464706,0.000000,0.000000,0.250000,0,0);}
.m623_c00001{transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464730,0.000000,0.000000,0.250000,0,0);}
.m2b9_c00001{transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464750,0.000000,0.000000,0.250000,0,0);}
.m39a_c00001{transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465126,0.000000,0.000000,0.250000,0,0);}
.m209_c00001{transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465213,0.000000,0.000000,0.250000,0,0);}
.m20e_c00001{transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465249,0.000000,0.000000,0.250000,0,0);}
.m422_c00001{transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465294,0.000000,0.000000,0.250000,0,0);}
.m31f_c00001{transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465545,0.000000,0.000000,0.250000,0,0);}
.m39b_c00001{transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465677,0.000000,0.000000,0.250000,0,0);}
.m1c0_c00001{transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465768,0.000000,0.000000,0.250000,0,0);}
.m72b_c00001{transform:matrix(0.465882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465882,0.000000,0.000000,0.250000,0,0);}
.m34c_c00001{transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465966,0.000000,0.000000,0.250000,0,0);}
.m51f_c00001{transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466141,0.000000,0.000000,0.250000,0,0);}
.m29b_c00001{transform:matrix(0.466286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466286,0.000000,0.000000,0.250000,0,0);}
.m5a1_c00001{transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466346,0.000000,0.000000,0.250000,0,0);}
.m583_c00001{transform:matrix(0.466387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466387,0.000000,0.000000,0.250000,0,0);}
.m800_c00001{transform:matrix(0.466471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466471,0.000000,0.000000,0.250000,0,0);}
.m1b8_c00001{transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466605,0.000000,0.000000,0.250000,0,0);}
.m359_c00001{transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466805,0.000000,0.000000,0.250000,0,0);}
.m2cc_c00001{transform:matrix(0.466807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466807,0.000000,0.000000,0.250000,0,0);}
.m812_c00001{transform:matrix(0.466912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466912,0.000000,0.000000,0.250000,0,0);}
.m66d_c00001{transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467059,0.000000,0.000000,0.250000,0,0);}
.m10e_c00001{transform:matrix(0.467069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467069,0.000000,0.000000,0.250000,0,0);}
.m335_c00001{transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467227,0.000000,0.000000,0.250000,0,0);}
.m47d_c00001{transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467324,0.000000,0.000000,0.250000,0,0);}
.m166_c00001{transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467532,0.000000,0.000000,0.250000,0,0);}
.m6da_c00001{transform:matrix(0.467647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467647,0.000000,0.000000,0.250000,0,0);}
.mec_c00001{transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467842,0.000000,0.000000,0.250000,0,0);}
.m409_c00001{transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467996,0.000000,0.000000,0.250000,0,0);}
.m6b8_c00001{transform:matrix(0.468235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468235,0.000000,0.000000,0.250000,0,0);}
.m2ed_c00001{transform:matrix(0.468361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468361,0.000000,0.000000,0.250000,0,0);}
.m4e3_c00001{transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468460,0.000000,0.000000,0.250000,0,0);}
.m69b_c00001{transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468487,0.000000,0.000000,0.250000,0,0);}
.m767_c00001{transform:matrix(0.468824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468824,0.000000,0.000000,0.250000,0,0);}
.m2ca_c00001{transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468880,0.000000,0.000000,0.250000,0,0);}
.m120_c00001{transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468924,0.000000,0.000000,0.250000,0,0);}
.m145_c00001{transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469388,0.000000,0.000000,0.250000,0,0);}
.m424_c00001{transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469398,0.000000,0.000000,0.250000,0,0);}
.m782_c00001{transform:matrix(0.469412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469412,0.000000,0.000000,0.250000,0,0);}
.m5cb_c00001{transform:matrix(0.469748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469748,0.000000,0.000000,0.250000,0,0);}
.m2ac_c00001{transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469852,0.000000,0.000000,0.250000,0,0);}
.m23d_c00001{transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469917,0.000000,0.000000,0.250000,0,0);}
.m7fa_c00001{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);}
.m4a3_c00001{transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470264,0.000000,0.000000,0.250000,0,0);}
.m468_c00001{transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470315,0.000000,0.000000,0.250000,0,0);}
.m308_c00001{transform:matrix(0.470353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470353,0.000000,0.000000,0.250000,0,0);}
.m3c2_c00001{transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470436,0.000000,0.000000,0.250000,0,0);}
.m83b_c00001{transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);}
.m338_c00001{transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470779,0.000000,0.000000,0.250000,0,0);}
.m3e4_c00001{transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470954,0.000000,0.000000,0.250000,0,0);}
.m397_c00001{transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471008,0.000000,0.000000,0.250000,0,0);}
.m682_c00001{transform:matrix(0.471176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471176,0.000000,0.000000,0.250000,0,0);}
.m5a_c00001{transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471243,0.000000,0.000000,0.250000,0,0);}
.m625_c00001{transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471473,0.000000,0.000000,0.250000,0,0);}
.m1c4_c00001{transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471707,0.000000,0.000000,0.250000,0,0);}
.m7a8_c00001{transform:matrix(0.471765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471765,0.000000,0.000000,0.250000,0,0);}
.m66_c00001{transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471992,0.000000,0.000000,0.250000,0,0);}
.m3f4_c00001{transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472171,0.000000,0.000000,0.250000,0,0);}
.m60f_c00001{transform:matrix(0.472269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472269,0.000000,0.000000,0.250000,0,0);}
.m84a_c00001{transform:matrix(0.472353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472353,0.000000,0.000000,0.250000,0,0);}
.m2a1_c00001{transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472510,0.000000,0.000000,0.250000,0,0);}
.m40a_c00001{transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472635,0.000000,0.000000,0.250000,0,0);}
.m122_c00001{transform:matrix(0.472689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472689,0.000000,0.000000,0.250000,0,0);}
.m668_c00001{transform:matrix(0.472756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472756,0.000000,0.000000,0.250000,0,0);}
.m328_c00001{transform:matrix(0.472794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472794,0.000000,0.000000,0.250000,0,0);}
.m7f7_c00001{transform:matrix(0.472941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472941,0.000000,0.000000,0.250000,0,0);}
.m26e_c00001{transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473029,0.000000,0.000000,0.250000,0,0);}
.m2ab_c00001{transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473529,0.000000,0.000000,0.250000,0,0);}
.m37c_c00001{transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473548,0.000000,0.000000,0.250000,0,0);}
.m45d_c00001{transform:matrix(0.473562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473562,0.000000,0.000000,0.250000,0,0);}
.m650_c00001{transform:matrix(0.473950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473950,0.000000,0.000000,0.250000,0,0);}
.m475_c00001{transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474066,0.000000,0.000000,0.250000,0,0);}
.m77d_c00001{transform:matrix(0.474118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474118,0.000000,0.000000,0.250000,0,0);}
.m163_c00001{transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474370,0.000000,0.000000,0.250000,0,0);}
.m79_c00001{transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474490,0.000000,0.000000,0.250000,0,0);}
.m4d1_c00001{transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474585,0.000000,0.000000,0.250000,0,0);}
.m40e_c00001{transform:matrix(0.474693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474693,0.000000,0.000000,0.250000,0,0);}
.m702_c00001{transform:matrix(0.474706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474706,0.000000,0.000000,0.250000,0,0);}
.m634_c00001{transform:matrix(0.474790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474790,0.000000,0.000000,0.250000,0,0);}
.m3d9_c00001{transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474954,0.000000,0.000000,0.250000,0,0);}
.m28d_c00001{transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475104,0.000000,0.000000,0.250000,0,0);}
.m7df_c00001{transform:matrix(0.475294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475294,0.000000,0.000000,0.250000,0,0);}
.m399_c00001{transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475417,0.000000,0.000000,0.250000,0,0);}
.m2ce_c00001{transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475622,0.000000,0.000000,0.250000,0,0);}
.m3ce_c00001{transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475630,0.000000,0.000000,0.250000,0,0);}
.m8b_c00001{transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475881,0.000000,0.000000,0.250000,0,0);}
.m6ea_c00001{transform:matrix(0.475882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475882,0.000000,0.000000,0.250000,0,0);}
.m50b_c00001{transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476141,0.000000,0.000000,0.250000,0,0);}
.m719_c00001{transform:matrix(0.476471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476471,0.000000,0.000000,0.250000,0,0);}
.m3da_c00001{transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476660,0.000000,0.000000,0.250000,0,0);}
.m304_c00001{transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476763,0.000000,0.000000,0.250000,0,0);}
.m684_c00001{transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476809,0.000000,0.000000,0.250000,0,0);}
.m205_c00001{transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477178,0.000000,0.000000,0.250000,0,0);}
.m27b_c00001{transform:matrix(0.477206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477206,0.000000,0.000000,0.250000,0,0);}
.m472_c00001{transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477311,0.000000,0.000000,0.250000,0,0);}
.m52a_c00001{transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477647,0.000000,0.000000,0.250000,0,0);}
.m3fc_c00001{transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477737,0.000000,0.000000,0.250000,0,0);}
.m21a_c00001{transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478200,0.000000,0.000000,0.250000,0,0);}
.m39f_c00001{transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478216,0.000000,0.000000,0.250000,0,0);}
.m6dc_c00001{transform:matrix(0.478235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478235,0.000000,0.000000,0.250000,0,0);}
.m1d9_c00001{transform:matrix(0.478571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478571,0.000000,0.000000,0.250000,0,0);}
.m1ca_c00001{transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478664,0.000000,0.000000,0.250000,0,0);}
.m288_c00001{transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478734,0.000000,0.000000,0.250000,0,0);}
.m7d0_c00001{transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478824,0.000000,0.000000,0.250000,0,0);}
.m5c_c00001{transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479128,0.000000,0.000000,0.250000,0,0);}
.m31c_c00001{transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);}
.m402_c00001{transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479253,0.000000,0.000000,0.250000,0,0);}
.m22e_c00001{transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);}
.m4ee_c00001{transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479412,0.000000,0.000000,0.250000,0,0);}
.m80_c00001{transform:matrix(0.479592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479592,0.000000,0.000000,0.250000,0,0);}
.m1ac_c00001{transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479772,0.000000,0.000000,0.250000,0,0);}
.m386_c00001{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);}
.m24_c00001{transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480056,0.000000,0.000000,0.250000,0,0);}
.m511_c00001{transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480290,0.000000,0.000000,0.250000,0,0);}
.m455_c00001{transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480519,0.000000,0.000000,0.250000,0,0);}
.m312_c00001{transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);}
.m69_c00001{transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480809,0.000000,0.000000,0.250000,0,0);}
.m21b_c00001{transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480983,0.000000,0.000000,0.250000,0,0);}
.m47c_c00001{transform:matrix(0.481092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481092,0.000000,0.000000,0.250000,0,0);}
.m7da_c00001{transform:matrix(0.481176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481176,0.000000,0.000000,0.250000,0,0);}
.m2d1_c00001{transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481328,0.000000,0.000000,0.250000,0,0);}
.m190_c00001{transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481447,0.000000,0.000000,0.250000,0,0);}
.m724_c00001{transform:matrix(0.481765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481765,0.000000,0.000000,0.250000,0,0);}
.m2d4_c00001{transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481846,0.000000,0.000000,0.250000,0,0);}
.m3ef_c00001{transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481911,0.000000,0.000000,0.250000,0,0);}
.m464_c00001{transform:matrix(0.481933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481933,0.000000,0.000000,0.250000,0,0);}
.m3f0_c00001{transform:matrix(0.482353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482353,0.000000,0.000000,0.250000,0,0);}
.m510_c00001{transform:matrix(0.482365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482365,0.000000,0.000000,0.250000,0,0);}
.m121_c00001{transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482375,0.000000,0.000000,0.250000,0,0);}
.m392_c00001{transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482839,0.000000,0.000000,0.250000,0,0);}
.m46f_c00001{transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482884,0.000000,0.000000,0.250000,0,0);}
.m26b_c00001{transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482941,0.000000,0.000000,0.250000,0,0);}
.m3cc_c00001{transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483302,0.000000,0.000000,0.250000,0,0);}
.m357_c00001{transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483402,0.000000,0.000000,0.250000,0,0);}
.m841_c00001{transform:matrix(0.483529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483529,0.000000,0.000000,0.250000,0,0);}
.m846_c00001{transform:matrix(0.483824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483824,0.000000,0.000000,0.250000,0,0);}
.me3_c00001{transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483921,0.000000,0.000000,0.250000,0,0);}
.m704_c00001{transform:matrix(0.484118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484118,0.000000,0.000000,0.250000,0,0);}
.m1e4_c00001{transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484230,0.000000,0.000000,0.250000,0,0);}
.m18a_c00001{transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484440,0.000000,0.000000,0.250000,0,0);}
.m20b_c00001{transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484694,0.000000,0.000000,0.250000,0,0);}
.m76e_c00001{transform:matrix(0.484706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484706,0.000000,0.000000,0.250000,0,0);}
.m3ac_c00001{transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484776,0.000000,0.000000,0.250000,0,0);}
.m2b0_c00001{transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484959,0.000000,0.000000,0.250000,0,0);}
.m3f2_c00001{transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485158,0.000000,0.000000,0.250000,0,0);}
.m195_c00001{transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);}
.m427_c00001{transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485477,0.000000,0.000000,0.250000,0,0);}
.m5ac_c00001{transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485622,0.000000,0.000000,0.250000,0,0);}
.m7a6_c00001{transform:matrix(0.485882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485882,0.000000,0.000000,0.250000,0,0);}
.mc6_c00001{transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485996,0.000000,0.000000,0.250000,0,0);}
.m321_c00001{transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486378,0.000000,0.000000,0.250000,0,0);}
.m586_c00001{transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486471,0.000000,0.000000,0.250000,0,0);}
.mdb_c00001{transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486515,0.000000,0.000000,0.250000,0,0);}
.m16d_c00001{transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486549,0.000000,0.000000,0.250000,0,0);}
.m1c6_c00001{transform:matrix(0.486975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486975,0.000000,0.000000,0.250000,0,0);}
.m67f_c00001{transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487013,0.000000,0.000000,0.250000,0,0);}
.m1d0_c00001{transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487033,0.000000,0.000000,0.250000,0,0);}
.m6cc_c00001{transform:matrix(0.487059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487059,0.000000,0.000000,0.250000,0,0);}
.m327_c00001{transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);}
.m2e5_c00001{transform:matrix(0.487477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487477,0.000000,0.000000,0.250000,0,0);}
.m10c_c00001{transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487552,0.000000,0.000000,0.250000,0,0);}
.m3ec_c00001{transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487647,0.000000,0.000000,0.250000,0,0);}
.m178_c00001{transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487941,0.000000,0.000000,0.250000,0,0);}
.m82_c00001{transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488071,0.000000,0.000000,0.250000,0,0);}
.m844_c00001{transform:matrix(0.488235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488235,0.000000,0.000000,0.250000,0,0);}
.m412_c00001{transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488404,0.000000,0.000000,0.250000,0,0);}
.m78_c00001{transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488589,0.000000,0.000000,0.250000,0,0);}
.m727_c00001{transform:matrix(0.488824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488824,0.000000,0.000000,0.250000,0,0);}
.m2bb_c00001{transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488868,0.000000,0.000000,0.250000,0,0);}
.m365_c00001{transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489108,0.000000,0.000000,0.250000,0,0);}
.m1b0_c00001{transform:matrix(0.489332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489332,0.000000,0.000000,0.250000,0,0);}
.m656_c00001{transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489412,0.000000,0.000000,0.250000,0,0);}
.m829_c00001{transform:matrix(0.489583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489583,0.000000,0.000000,0.250000,0,0);}
.m4d6_c00001{transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489627,0.000000,0.000000,0.250000,0,0);}
.m3d6_c00001{transform:matrix(0.489796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489796,0.000000,0.000000,0.250000,0,0);}
.m48e_c00001{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);}
.m2cd_c00001{transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490145,0.000000,0.000000,0.250000,0,0);}
.m3d7_c00001{transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490260,0.000000,0.000000,0.250000,0,0);}
.m313_c00001{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.m808_c00001{transform:matrix(0.490441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490441,0.000000,0.000000,0.250000,0,0);}
.m687_c00001{transform:matrix(0.490588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490588,0.000000,0.000000,0.250000,0,0);}
.mb1_c00001{transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490664,0.000000,0.000000,0.250000,0,0);}
.m477_c00001{transform:matrix(0.491176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491176,0.000000,0.000000,0.250000,0,0);}
.m10a_c00001{transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491183,0.000000,0.000000,0.250000,0,0);}
.m3cb_c00001{transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491187,0.000000,0.000000,0.250000,0,0);}
.m5aa_c00001{transform:matrix(0.491651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491651,0.000000,0.000000,0.250000,0,0);}
.m159_c00001{transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491701,0.000000,0.000000,0.250000,0,0);}
.m43b_c00001{transform:matrix(0.491765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491765,0.000000,0.000000,0.250000,0,0);}
.m341_c00001{transform:matrix(0.492017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492017,0.000000,0.000000,0.250000,0,0);}
.m36c_c00001{transform:matrix(0.492115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492115,0.000000,0.000000,0.250000,0,0);}
.m3c0_c00001{transform:matrix(0.492220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492220,0.000000,0.000000,0.250000,0,0);}
.m58f_c00001{transform:matrix(0.492437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492437,0.000000,0.000000,0.250000,0,0);}
.m1b5_c00001{transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492579,0.000000,0.000000,0.250000,0,0);}
.ma5_c00001{transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492739,0.000000,0.000000,0.250000,0,0);}
.m309_c00001{transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492788,0.000000,0.000000,0.250000,0,0);}
.m347_c00001{transform:matrix(0.492941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492941,0.000000,0.000000,0.250000,0,0);}
.m5b4_c00001{transform:matrix(0.493257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493257,0.000000,0.000000,0.250000,0,0);}
.m3dc_c00001{transform:matrix(0.493506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493506,0.000000,0.000000,0.250000,0,0);}
.m421_c00001{transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493529,0.000000,0.000000,0.250000,0,0);}
.m447_c00001{transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);}
.m48_c00001{transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493776,0.000000,0.000000,0.250000,0,0);}
.m470_c00001{transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493970,0.000000,0.000000,0.250000,0,0);}
.m479_c00001{transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494118,0.000000,0.000000,0.250000,0,0);}
.m1fe_c00001{transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494295,0.000000,0.000000,0.250000,0,0);}
.m319_c00001{transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494391,0.000000,0.000000,0.250000,0,0);}
.m1e3_c00001{transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494434,0.000000,0.000000,0.250000,0,0);}
.m7ab_c00001{transform:matrix(0.494706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494706,0.000000,0.000000,0.250000,0,0);}
.m38_c00001{transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494813,0.000000,0.000000,0.250000,0,0);}
.m6d2_c00001{transform:matrix(0.495294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495294,0.000000,0.000000,0.250000,0,0);}
.m1f7_c00001{transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495332,0.000000,0.000000,0.250000,0,0);}
.m3d8_c00001{transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495362,0.000000,0.000000,0.250000,0,0);}
.m742_c00001{transform:matrix(0.495614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495614,0.000000,0.000000,0.250000,0,0);}
.m199_c00001{transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495826,0.000000,0.000000,0.250000,0,0);}
.m405_c00001{transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495851,0.000000,0.000000,0.250000,0,0);}
.m6c6_c00001{transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495882,0.000000,0.000000,0.250000,0,0);}
.m693_c00001{transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496289,0.000000,0.000000,0.250000,0,0);}
.m38d_c00001{transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496369,0.000000,0.000000,0.250000,0,0);}
.m7b5_c00001{transform:matrix(0.496471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496471,0.000000,0.000000,0.250000,0,0);}
.m68f_c00001{transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496753,0.000000,0.000000,0.250000,0,0);}
.m208_c00001{transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496888,0.000000,0.000000,0.250000,0,0);}
.m765_c00001{transform:matrix(0.497059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497059,0.000000,0.000000,0.250000,0,0);}
.m721_c00001{transform:matrix(0.497407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497407,0.000000,0.000000,0.250000,0,0);}
.m588_c00001{transform:matrix(0.497899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497899,0.000000,0.000000,0.250000,0,0);}
.m722_c00001{transform:matrix(0.498444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.498444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.498444,0.000000,0.000000,0.250000,0,0);}
.m1f2_c00001{transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499536,0.000000,0.000000,0.250000,0,0);}
.m5d_c00001{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);}
.m42b_c00001{transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500420,0.000000,0.000000,0.250000,0,0);}
.m557_c00001{transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501263,0.000000,0.000000,0.250000,0,0);}
.m49b_c00001{transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502593,0.000000,0.000000,0.250000,0,0);}
.m4e1_c00001{transform:matrix(0.502783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502783,0.000000,0.000000,0.250000,0,0);}
.m716_c00001{transform:matrix(0.502941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502941,0.000000,0.000000,0.250000,0,0);}
.m2b3_c00001{transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503112,0.000000,0.000000,0.250000,0,0);}
.m770_c00001{transform:matrix(0.503529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503529,0.000000,0.000000,0.250000,0,0);}
.m197_c00001{transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503631,0.000000,0.000000,0.250000,0,0);}
.m4e4_c00001{transform:matrix(0.503711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503711,0.000000,0.000000,0.250000,0,0);}
.m4db_c00001{transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504118,0.000000,0.000000,0.250000,0,0);}
.m136_c00001{transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504149,0.000000,0.000000,0.250000,0,0);}
.m160_c00001{transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504174,0.000000,0.000000,0.250000,0,0);}
.mde_c00001{transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504668,0.000000,0.000000,0.250000,0,0);}
.m777_c00001{transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504706,0.000000,0.000000,0.250000,0,0);}
.m690_c00001{transform:matrix(0.505102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505102,0.000000,0.000000,0.250000,0,0);}
.m245_c00001{transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505187,0.000000,0.000000,0.250000,0,0);}
.m595_c00001{transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505294,0.000000,0.000000,0.250000,0,0);}
.m4b3_c00001{transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505566,0.000000,0.000000,0.250000,0,0);}
.m4d_c00001{transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505705,0.000000,0.000000,0.250000,0,0);}
.m51d_c00001{transform:matrix(0.505882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505882,0.000000,0.000000,0.250000,0,0);}
.m13c_c00001{transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506224,0.000000,0.000000,0.250000,0,0);}
.m281_c00001{transform:matrix(0.506471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506471,0.000000,0.000000,0.250000,0,0);}
.m9e_c00001{transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506743,0.000000,0.000000,0.250000,0,0);}
.m140_c00001{transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506957,0.000000,0.000000,0.250000,0,0);}
.m287_c00001{transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507059,0.000000,0.000000,0.250000,0,0);}
.m3ae_c00001{transform:matrix(0.507212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507212,0.000000,0.000000,0.250000,0,0);}
.m117_c00001{transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507261,0.000000,0.000000,0.250000,0,0);}
.m29e_c00001{transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507647,0.000000,0.000000,0.250000,0,0);}
.mcc_c00001{transform:matrix(0.507780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507780,0.000000,0.000000,0.250000,0,0);}
.m87d_c00001{transform:matrix(0.508235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508235,0.000000,0.000000,0.250000,0,0);}
.maf_c00001{transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508299,0.000000,0.000000,0.250000,0,0);}
.m2e4_c00001{transform:matrix(0.508349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508349,0.000000,0.000000,0.250000,0,0);}
.m7e_c00001{transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508817,0.000000,0.000000,0.250000,0,0);}
.m6c2_c00001{transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508824,0.000000,0.000000,0.250000,0,0);}
.m449_c00001{transform:matrix(0.509276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509276,0.000000,0.000000,0.250000,0,0);}
.m243_c00001{transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509336,0.000000,0.000000,0.250000,0,0);}
.m6e2_c00001{transform:matrix(0.509412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509412,0.000000,0.000000,0.250000,0,0);}
.m6d_c00001{transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509855,0.000000,0.000000,0.250000,0,0);}
.m6be_c00001{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);}
.m5a3_c00001{transform:matrix(0.510204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510204,0.000000,0.000000,0.250000,0,0);}
.m872_c00001{transform:matrix(0.510294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510294,0.000000,0.000000,0.250000,0,0);}
.m213_c00001{transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510373,0.000000,0.000000,0.250000,0,0);}
.m283_c00001{transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510588,0.000000,0.000000,0.250000,0,0);}
.m86_c00001{transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510892,0.000000,0.000000,0.250000,0,0);}
.m680_c00001{transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511132,0.000000,0.000000,0.250000,0,0);}
.m51e_c00001{transform:matrix(0.511176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511176,0.000000,0.000000,0.250000,0,0);}
.md1_c00001{transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511411,0.000000,0.000000,0.250000,0,0);}
.m426_c00001{transform:matrix(0.511596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511596,0.000000,0.000000,0.250000,0,0);}
.m4d9_c00001{transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511765,0.000000,0.000000,0.250000,0,0);}
.m244_c00001{transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511929,0.000000,0.000000,0.250000,0,0);}
.m590_c00001{transform:matrix(0.512353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512353,0.000000,0.000000,0.250000,0,0);}
.m112_c00001{transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512448,0.000000,0.000000,0.250000,0,0);}
.m599_c00001{transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512941,0.000000,0.000000,0.250000,0,0);}
.m7d_c00001{transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512967,0.000000,0.000000,0.250000,0,0);}
.m498_c00001{transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512987,0.000000,0.000000,0.250000,0,0);}
.m809_c00001{transform:matrix(0.513235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513235,0.000000,0.000000,0.250000,0,0);}
.m698_c00001{transform:matrix(0.513445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513445,0.000000,0.000000,0.250000,0,0);}
.m2af_c00001{transform:matrix(0.513451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513451,0.000000,0.000000,0.250000,0,0);}
.m17d_c00001{transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513485,0.000000,0.000000,0.250000,0,0);}
.m414_c00001{transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513529,0.000000,0.000000,0.250000,0,0);}
.m32a_c00001{transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513622,0.000000,0.000000,0.250000,0,0);}
.m49_c00001{transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514004,0.000000,0.000000,0.250000,0,0);}
.m24d_c00001{transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514118,0.000000,0.000000,0.250000,0,0);}
.m597_c00001{transform:matrix(0.514378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514378,0.000000,0.000000,0.250000,0,0);}
.m11b_c00001{transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514523,0.000000,0.000000,0.250000,0,0);}
.m2a5_c00001{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.m7a_c00001{transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515041,0.000000,0.000000,0.250000,0,0);}
.m7ad_c00001{transform:matrix(0.515294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515294,0.000000,0.000000,0.250000,0,0);}
.m333_c00001{transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515560,0.000000,0.000000,0.250000,0,0);}
.m3d4_c00001{transform:matrix(0.515770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515770,0.000000,0.000000,0.250000,0,0);}
.meb_c00001{transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515882,0.000000,0.000000,0.250000,0,0);}
.m3af_c00001{transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516026,0.000000,0.000000,0.250000,0,0);}
.m6f_c00001{transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516079,0.000000,0.000000,0.250000,0,0);}
.m272_c00001{transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516471,0.000000,0.000000,0.250000,0,0);}
.m3e8_c00001{transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516598,0.000000,0.000000,0.250000,0,0);}
.m384_c00001{transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516698,0.000000,0.000000,0.250000,0,0);}
.m3a6_c00001{transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516827,0.000000,0.000000,0.250000,0,0);}
.m71b_c00001{transform:matrix(0.517059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517059,0.000000,0.000000,0.250000,0,0);}
.m336_c00001{transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517116,0.000000,0.000000,0.250000,0,0);}
.m1d8_c00001{transform:matrix(0.517161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517161,0.000000,0.000000,0.250000,0,0);}
.m3c3_c00001{transform:matrix(0.517625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517625,0.000000,0.000000,0.250000,0,0);}
.m2db_c00001{transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517635,0.000000,0.000000,0.250000,0,0);}
.m6bf_c00001{transform:matrix(0.517647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517647,0.000000,0.000000,0.250000,0,0);}
.m523_c00001{transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518089,0.000000,0.000000,0.250000,0,0);}
.m56_c00001{transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518154,0.000000,0.000000,0.250000,0,0);}
.m587_c00001{transform:matrix(0.518235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518235,0.000000,0.000000,0.250000,0,0);}
.m37f_c00001{transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518672,0.000000,0.000000,0.250000,0,0);}
.m25d_c00001{transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518824,0.000000,0.000000,0.250000,0,0);}
.m4be_c00001{transform:matrix(0.519017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519017,0.000000,0.000000,0.250000,0,0);}
.m133_c00001{transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519191,0.000000,0.000000,0.250000,0,0);}
.m515_c00001{transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519412,0.000000,0.000000,0.250000,0,0);}
.m246_c00001{transform:matrix(0.519481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519481,0.000000,0.000000,0.250000,0,0);}
.ma3_c00001{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m307_c00001{transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519824,0.000000,0.000000,0.250000,0,0);}
.m420_c00001{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);}
.md2_c00001{transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520228,0.000000,0.000000,0.250000,0,0);}
.m598_c00001{transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520588,0.000000,0.000000,0.250000,0,0);}
.m194_c00001{transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520747,0.000000,0.000000,0.250000,0,0);}
.m2_c00001{transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);}
.m400_c00001{transform:matrix(0.520872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520872,0.000000,0.000000,0.250000,0,0);}
.m696_c00001{transform:matrix(0.521008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521008,0.000000,0.000000,0.250000,0,0);}
.m1f1_c00001{transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521176,0.000000,0.000000,0.250000,0,0);}
.m76_c00001{transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521266,0.000000,0.000000,0.250000,0,0);}
.m76b_c00001{transform:matrix(0.521324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521324,0.000000,0.000000,0.250000,0,0);}
.m7b8_c00001{transform:matrix(0.521765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521765,0.000000,0.000000,0.250000,0,0);}
.m3df_c00001{transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521784,0.000000,0.000000,0.250000,0,0);}
.m394_c00001{transform:matrix(0.521800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521800,0.000000,0.000000,0.250000,0,0);}
.m671_c00001{transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522353,0.000000,0.000000,0.250000,0,0);}
.md3_c00001{transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522822,0.000000,0.000000,0.250000,0,0);}
.m6cf_c00001{transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522941,0.000000,0.000000,0.250000,0,0);}
.m614_c00001{transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523191,0.000000,0.000000,0.250000,0,0);}
.m4a8_c00001{transform:matrix(0.523237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523237,0.000000,0.000000,0.250000,0,0);}
.mac_c00001{transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523340,0.000000,0.000000,0.250000,0,0);}
.m206_c00001{transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523529,0.000000,0.000000,0.250000,0,0);}
.mfe_c00001{transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523859,0.000000,0.000000,0.250000,0,0);}
.m29f_c00001{transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524118,0.000000,0.000000,0.250000,0,0);}
.m432_c00001{transform:matrix(0.524583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524583,0.000000,0.000000,0.250000,0,0);}
.m781_c00001{transform:matrix(0.524706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524706,0.000000,0.000000,0.250000,0,0);}
.m848_c00001{transform:matrix(0.524840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524840,0.000000,0.000000,0.250000,0,0);}
.m67_c00001{transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524896,0.000000,0.000000,0.250000,0,0);}
.m266_c00001{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);}
.m1af_c00001{transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525294,0.000000,0.000000,0.250000,0,0);}
.m19e_c00001{transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525415,0.000000,0.000000,0.250000,0,0);}
.m4bf_c00001{transform:matrix(0.525510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525510,0.000000,0.000000,0.250000,0,0);}
.m6c9_c00001{transform:matrix(0.525882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525882,0.000000,0.000000,0.250000,0,0);}
.m19a_c00001{transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525934,0.000000,0.000000,0.250000,0,0);}
.m42e_c00001{transform:matrix(0.526438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526438,0.000000,0.000000,0.250000,0,0);}
.m148_c00001{transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526452,0.000000,0.000000,0.250000,0,0);}
.m6e3_c00001{transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526471,0.000000,0.000000,0.250000,0,0);}
.m65c_c00001{transform:matrix(0.526515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526515,0.000000,0.000000,0.250000,0,0);}
.m92_c00001{transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526971,0.000000,0.000000,0.250000,0,0);}
.m5a5_c00001{transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527059,0.000000,0.000000,0.250000,0,0);}
.m14d_c00001{transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527490,0.000000,0.000000,0.250000,0,0);}
.m77e_c00001{transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527647,0.000000,0.000000,0.250000,0,0);}
.m63_c00001{transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528008,0.000000,0.000000,0.250000,0,0);}
.m270_c00001{transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528235,0.000000,0.000000,0.250000,0,0);}
.m4e5_c00001{transform:matrix(0.528293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528293,0.000000,0.000000,0.250000,0,0);}
.m8f_c00001{transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528527,0.000000,0.000000,0.250000,0,0);}
.m260_c00001{transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528824,0.000000,0.000000,0.250000,0,0);}
.m2d8_c00001{transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529046,0.000000,0.000000,0.250000,0,0);}
.m43d_c00001{transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);}
.m4fd_c00001{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_c00001{transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530083,0.000000,0.000000,0.250000,0,0);}
.m65d_c00001{transform:matrix(0.530147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530147,0.000000,0.000000,0.250000,0,0);}
.m35d_c00001{transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530588,0.000000,0.000000,0.250000,0,0);}
.m1d1_c00001{transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530602,0.000000,0.000000,0.250000,0,0);}
.ma2_c00001{transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531120,0.000000,0.000000,0.250000,0,0);}
.m49f_c00001{transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531176,0.000000,0.000000,0.250000,0,0);}
.m444_c00001{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.m7b7_c00001{transform:matrix(0.531618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531618,0.000000,0.000000,0.250000,0,0);}
.m2de_c00001{transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531639,0.000000,0.000000,0.250000,0,0);}
.m41a_c00001{transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531765,0.000000,0.000000,0.250000,0,0);}
.m401_c00001{transform:matrix(0.532004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532004,0.000000,0.000000,0.250000,0,0);}
.m1ef_c00001{transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532158,0.000000,0.000000,0.250000,0,0);}
.m7b0_c00001{transform:matrix(0.532353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532353,0.000000,0.000000,0.250000,0,0);}
.m232_c00001{transform:matrix(0.532468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532468,0.000000,0.000000,0.250000,0,0);}
.ma_c00001{transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532676,0.000000,0.000000,0.250000,0,0);}
.m59f_c00001{transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532853,0.000000,0.000000,0.250000,0,0);}
.m497_c00001{transform:matrix(0.532931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532931,0.000000,0.000000,0.250000,0,0);}
.mf4_c00001{transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532941,0.000000,0.000000,0.250000,0,0);}
.m1d_c00001{transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533195,0.000000,0.000000,0.250000,0,0);}
.m27f_c00001{transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533529,0.000000,0.000000,0.250000,0,0);}
.m230_c00001{transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533714,0.000000,0.000000,0.250000,0,0);}
.m48f_c00001{transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534118,0.000000,0.000000,0.250000,0,0);}
.m212_c00001{transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534232,0.000000,0.000000,0.250000,0,0);}
.m6ff_c00001{transform:matrix(0.534706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534706,0.000000,0.000000,0.250000,0,0);}
.m9a_c00001{transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534751,0.000000,0.000000,0.250000,0,0);}
.m780_c00001{transform:matrix(0.535256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535256,0.000000,0.000000,0.250000,0,0);}
.mc_c00001{transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535270,0.000000,0.000000,0.250000,0,0);}
.m25a_c00001{transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535294,0.000000,0.000000,0.250000,0,0);}
.m8a_c00001{transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535788,0.000000,0.000000,0.250000,0,0);}
.m28f_c00001{transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535882,0.000000,0.000000,0.250000,0,0);}
.m753_c00001{transform:matrix(0.536029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536029,0.000000,0.000000,0.250000,0,0);}
.m12e_c00001{transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536307,0.000000,0.000000,0.250000,0,0);}
.m581_c00001{transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536471,0.000000,0.000000,0.250000,0,0);}
.mb_c00001{transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536826,0.000000,0.000000,0.250000,0,0);}
.m254_c00001{transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537059,0.000000,0.000000,0.250000,0,0);}
.m529_c00001{transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537344,0.000000,0.000000,0.250000,0,0);}
.m70a_c00001{transform:matrix(0.537647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537647,0.000000,0.000000,0.250000,0,0);}
.m91_c00001{transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537863,0.000000,0.000000,0.250000,0,0);}
.m8a1_c00001{transform:matrix(0.538033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538033,0.000000,0.000000,0.250000,0,0);}
.m23c_c00001{transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538235,0.000000,0.000000,0.250000,0,0);}
.m2c_c00001{transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538382,0.000000,0.000000,0.250000,0,0);}
.m6d0_c00001{transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538824,0.000000,0.000000,0.250000,0,0);}
.m74_c00001{transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538900,0.000000,0.000000,0.250000,0,0);}
.m751_c00001{transform:matrix(0.539412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539412,0.000000,0.000000,0.250000,0,0);}
.m71_c00001{transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539419,0.000000,0.000000,0.250000,0,0);}
.m7c5_c00001{transform:matrix(0.539706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539706,0.000000,0.000000,0.250000,0,0);}
.m4f4_c00001{transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539938,0.000000,0.000000,0.250000,0,0);}
.m476_c00001{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);}
.m74b_c00001{transform:matrix(0.540441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540441,0.000000,0.000000,0.250000,0,0);}
.m31_c00001{transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540456,0.000000,0.000000,0.250000,0,0);}
.m2ef_c00001{transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540588,0.000000,0.000000,0.250000,0,0);}
.m1c9_c00001{transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540975,0.000000,0.000000,0.250000,0,0);}
.m6bb_c00001{transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541176,0.000000,0.000000,0.250000,0,0);}
.m691_c00001{transform:matrix(0.541280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541280,0.000000,0.000000,0.250000,0,0);}
.m33_c00001{transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541494,0.000000,0.000000,0.250000,0,0);}
.m76a_c00001{transform:matrix(0.541667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541667,0.000000,0.000000,0.250000,0,0);}
.m252_c00001{transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541765,0.000000,0.000000,0.250000,0,0);}
.m7f5_c00001{transform:matrix(0.541912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541912,0.000000,0.000000,0.250000,0,0);}
.m64_c00001{transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542012,0.000000,0.000000,0.250000,0,0);}
.m6f7_c00001{transform:matrix(0.542353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542353,0.000000,0.000000,0.250000,0,0);}
.m186_c00001{transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542531,0.000000,0.000000,0.250000,0,0);}
.m519_c00001{transform:matrix(0.542941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542941,0.000000,0.000000,0.250000,0,0);}
.m107_c00001{transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543050,0.000000,0.000000,0.250000,0,0);}
.m639_c00001{transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543529,0.000000,0.000000,0.250000,0,0);}
.m463_c00001{transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543568,0.000000,0.000000,0.250000,0,0);}
.m2fd_c00001{transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544071,0.000000,0.000000,0.250000,0,0);}
.m3d_c00001{transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544087,0.000000,0.000000,0.250000,0,0);}
.m627_c00001{transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);}
.m30_c00001{transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544606,0.000000,0.000000,0.250000,0,0);}
.m7af_c00001{transform:matrix(0.544706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544706,0.000000,0.000000,0.250000,0,0);}
.m7db_c00001{transform:matrix(0.544853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544853,0.000000,0.000000,0.250000,0,0);}
.m32c_c00001{transform:matrix(0.544872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544872,0.000000,0.000000,0.250000,0,0);}
.m158_c00001{transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545124,0.000000,0.000000,0.250000,0,0);}
.m261_c00001{transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545294,0.000000,0.000000,0.250000,0,0);}
.md9_c00001{transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545643,0.000000,0.000000,0.250000,0,0);}
.m28a_c00001{transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545882,0.000000,0.000000,0.250000,0,0);}
.m62_c00001{transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546162,0.000000,0.000000,0.250000,0,0);}
.m660_c00001{transform:matrix(0.546256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546256,0.000000,0.000000,0.250000,0,0);}
.m832_c00001{transform:matrix(0.546382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546382,0.000000,0.000000,0.250000,0,0);}
.m6fd_c00001{transform:matrix(0.546471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546471,0.000000,0.000000,0.250000,0,0);}
.m1bd_c00001{transform:matrix(0.546474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546474,0.000000,0.000000,0.250000,0,0);}
.m7c_c00001{transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546680,0.000000,0.000000,0.250000,0,0);}
.m99_c00001{transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547059,0.000000,0.000000,0.250000,0,0);}
.m170_c00001{transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547199,0.000000,0.000000,0.250000,0,0);}
.m237_c00001{transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547647,0.000000,0.000000,0.250000,0,0);}
.m37_c00001{transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547718,0.000000,0.000000,0.250000,0,0);}
.m234_c00001{transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547794,0.000000,0.000000,0.250000,0,0);}
.m5c4_c00001{transform:matrix(0.548237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548237,0.000000,0.000000,0.250000,0,0);}
.ma7_c00001{transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548755,0.000000,0.000000,0.250000,0,0);}
.m6f3_c00001{transform:matrix(0.548824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548824,0.000000,0.000000,0.250000,0,0);}
.m101_c00001{transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549274,0.000000,0.000000,0.250000,0,0);}
.m29a_c00001{transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549412,0.000000,0.000000,0.250000,0,0);}
.m793_c00001{transform:matrix(0.549559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549559,0.000000,0.000000,0.250000,0,0);}
.m382_c00001{transform:matrix(0.549629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549629,0.000000,0.000000,0.250000,0,0);}
.mf_c00001{transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549793,0.000000,0.000000,0.250000,0,0);}
.m5f3_c00001{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);}
.m863_c00001{transform:matrix(0.550588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550588,0.000000,0.000000,0.250000,0,0);}
.m7d4_c00001{transform:matrix(0.550735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550735,0.000000,0.000000,0.250000,0,0);}
.m77_c00001{transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550830,0.000000,0.000000,0.250000,0,0);}
.m257_c00001{transform:matrix(0.551176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551176,0.000000,0.000000,0.250000,0,0);}
.m30e_c00001{transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551282,0.000000,0.000000,0.250000,0,0);}
.m12d_c00001{transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551349,0.000000,0.000000,0.250000,0,0);}
.m779_c00001{transform:matrix(0.551471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551471,0.000000,0.000000,0.250000,0,0);}
.m7a1_c00001{transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551484,0.000000,0.000000,0.250000,0,0);}
.m7f1_c00001{transform:matrix(0.551762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551762,0.000000,0.000000,0.250000,0,0);}
.m3a4_c00001{transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551765,0.000000,0.000000,0.250000,0,0);}
.m15f_c00001{transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551867,0.000000,0.000000,0.250000,0,0);}
.m302_c00001{transform:matrix(0.552083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552083,0.000000,0.000000,0.250000,0,0);}
.m23f_c00001{transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552206,0.000000,0.000000,0.250000,0,0);}
.m1b9_c00001{transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552353,0.000000,0.000000,0.250000,0,0);}
.m53_c00001{transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552386,0.000000,0.000000,0.250000,0,0);}
.m4b5_c00001{transform:matrix(0.552905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552905,0.000000,0.000000,0.250000,0,0);}
.m391_c00001{transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552941,0.000000,0.000000,0.250000,0,0);}
.m5b_c00001{transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553423,0.000000,0.000000,0.250000,0,0);}
.m416_c00001{transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553529,0.000000,0.000000,0.250000,0,0);}
.m15a_c00001{transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553942,0.000000,0.000000,0.250000,0,0);}
.m296_c00001{transform:matrix(0.554118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554118,0.000000,0.000000,0.250000,0,0);}
.m828_c00001{transform:matrix(0.554412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554412,0.000000,0.000000,0.250000,0,0);}
.m28_c00001{transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554461,0.000000,0.000000,0.250000,0,0);}
.m3b7_c00001{transform:matrix(0.554487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554487,0.000000,0.000000,0.250000,0,0);}
.m2a8_c00001{transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554706,0.000000,0.000000,0.250000,0,0);}
.m21_c00001{transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554979,0.000000,0.000000,0.250000,0,0);}
.m74f_c00001{transform:matrix(0.555147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555147,0.000000,0.000000,0.250000,0,0);}
.m95f_c00001{transform:matrix(0.555195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555195,0.000000,0.000000,0.250000,0,0);}
.m669_c00001{transform:matrix(0.555288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555288,0.000000,0.000000,0.250000,0,0);}
.m469_c00001{transform:matrix(0.555294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555294,0.000000,0.000000,0.250000,0,0);}
.m45_c00001{transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555498,0.000000,0.000000,0.250000,0,0);}
.m331_c00001{transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555882,0.000000,0.000000,0.250000,0,0);}
.m4c_c00001{transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556017,0.000000,0.000000,0.250000,0,0);}
.m390_c00001{transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556090,0.000000,0.000000,0.250000,0,0);}
.m59c_c00001{transform:matrix(0.556167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556167,0.000000,0.000000,0.250000,0,0);}
.m161_c00001{transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556471,0.000000,0.000000,0.250000,0,0);}
.m12f_c00001{transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556535,0.000000,0.000000,0.250000,0,0);}
.m494_c00001{transform:matrix(0.556586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556586,0.000000,0.000000,0.250000,0,0);}
.m706_c00001{transform:matrix(0.556618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556618,0.000000,0.000000,0.250000,0,0);}
.m13f_c00001{transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557054,0.000000,0.000000,0.250000,0,0);}
.m6e1_c00001{transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557059,0.000000,0.000000,0.250000,0,0);}
.m4a1_c00001{transform:matrix(0.557269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557269,0.000000,0.000000,0.250000,0,0);}
.m6d3_c00001{transform:matrix(0.557353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557353,0.000000,0.000000,0.250000,0,0);}
.m15c_c00001{transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557573,0.000000,0.000000,0.250000,0,0);}
.m24f_c00001{transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557647,0.000000,0.000000,0.250000,0,0);}
.m7fe_c00001{transform:matrix(0.558088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558088,0.000000,0.000000,0.250000,0,0);}
.m18c_c00001{transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558091,0.000000,0.000000,0.250000,0,0);}
.m282_c00001{transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);}
.m141_c00001{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m88_c00001{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m46_c00001{transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559129,0.000000,0.000000,0.250000,0,0);}
.m37d_c00001{transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559295,0.000000,0.000000,0.250000,0,0);}
.m675_c00001{transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559412,0.000000,0.000000,0.250000,0,0);}
.m295_c00001{transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559559,0.000000,0.000000,0.250000,0,0);}
.m128_c00001{transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559647,0.000000,0.000000,0.250000,0,0);}
.m12a_c00001{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);}
.m71e_c00001{transform:matrix(0.560294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560294,0.000000,0.000000,0.250000,0,0);}
.m13e_c00001{transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560588,0.000000,0.000000,0.250000,0,0);}
.m3_c00001{transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560685,0.000000,0.000000,0.250000,0,0);}
.m73c_c00001{transform:matrix(0.561029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561029,0.000000,0.000000,0.250000,0,0);}
.m406_c00001{transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561176,0.000000,0.000000,0.250000,0,0);}
.m2ff_c00001{transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561674,0.000000,0.000000,0.250000,0,0);}
.m3ea_c00001{transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561722,0.000000,0.000000,0.250000,0,0);}
.m762_c00001{transform:matrix(0.561765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561765,0.000000,0.000000,0.250000,0,0);}
.m44c_c00001{transform:matrix(0.562152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562152,0.000000,0.000000,0.250000,0,0);}
.m43_c00001{transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562241,0.000000,0.000000,0.250000,0,0);}
.m773_c00001{transform:matrix(0.562353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562353,0.000000,0.000000,0.250000,0,0);}
.m86e_c00001{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);}
.m251_c00001{transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562941,0.000000,0.000000,0.250000,0,0);}
.m606_c00001{transform:matrix(0.563131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563131,0.000000,0.000000,0.250000,0,0);}
.m411_c00001{transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563278,0.000000,0.000000,0.250000,0,0);}
.m882_c00001{transform:matrix(0.563529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563529,0.000000,0.000000,0.250000,0,0);}
.m12c_c00001{transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563797,0.000000,0.000000,0.250000,0,0);}
.m423_c00001{transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564118,0.000000,0.000000,0.250000,0,0);}
.m34b_c00001{transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564315,0.000000,0.000000,0.250000,0,0);}
.m6d6_c00001{transform:matrix(0.564706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564706,0.000000,0.000000,0.250000,0,0);}
.m396_c00001{transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564834,0.000000,0.000000,0.250000,0,0);}
.m353_c00001{transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565294,0.000000,0.000000,0.250000,0,0);}
.mfc_c00001{transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565353,0.000000,0.000000,0.250000,0,0);}
.m717_c00001{transform:matrix(0.565441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565441,0.000000,0.000000,0.250000,0,0);}
.m404_c00001{transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565871,0.000000,0.000000,0.250000,0,0);}
.m6f0_c00001{transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565882,0.000000,0.000000,0.250000,0,0);}
.md0_c00001{transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566390,0.000000,0.000000,0.250000,0,0);}
.mf1_c00001{transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566471,0.000000,0.000000,0.250000,0,0);}
.m31e_c00001{transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566506,0.000000,0.000000,0.250000,0,0);}
.m51_c00001{transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566909,0.000000,0.000000,0.250000,0,0);}
.m82d_c00001{transform:matrix(0.566912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566912,0.000000,0.000000,0.250000,0,0);}
.m26f_c00001{transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567059,0.000000,0.000000,0.250000,0,0);}
.m125_c00001{transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567427,0.000000,0.000000,0.250000,0,0);}
.m7ec_c00001{transform:matrix(0.567647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567647,0.000000,0.000000,0.250000,0,0);}
.m16e_c00001{transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567946,0.000000,0.000000,0.250000,0,0);}
.m28b_c00001{transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568235,0.000000,0.000000,0.250000,0,0);}
.m77f_c00001{transform:matrix(0.568382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568382,0.000000,0.000000,0.250000,0,0);}
.m11a_c00001{transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568465,0.000000,0.000000,0.250000,0,0);}
.m635_c00001{transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568824,0.000000,0.000000,0.250000,0,0);}
.m4d8_c00001{transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568983,0.000000,0.000000,0.250000,0,0);}
.m86d_c00001{transform:matrix(0.569118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569118,0.000000,0.000000,0.250000,0,0);}
.m3fb_c00001{transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569412,0.000000,0.000000,0.250000,0,0);}
.m10b_c00001{transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569502,0.000000,0.000000,0.250000,0,0);}
.m2eb_c00001{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);}
.m487_c00001{transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570021,0.000000,0.000000,0.250000,0,0);}
.m445_c00001{transform:matrix(0.570485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570485,0.000000,0.000000,0.250000,0,0);}
.m21f_c00001{transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570539,0.000000,0.000000,0.250000,0,0);}
.m48a_c00001{transform:matrix(0.570588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570588,0.000000,0.000000,0.250000,0,0);}
.m7e1_c00001{transform:matrix(0.570588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570588,0.000000,0.000000,0.250000,0,0);}
.m457_c00001{transform:matrix(0.570965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570965,0.000000,0.000000,0.250000,0,0);}
.m25_c00001{transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571058,0.000000,0.000000,0.250000,0,0);}
.m790_c00001{transform:matrix(0.571324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571324,0.000000,0.000000,0.250000,0,0);}
.m46d_c00001{transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571577,0.000000,0.000000,0.250000,0,0);}
.m7f_c00001{transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571765,0.000000,0.000000,0.250000,0,0);}
.m22f_c00001{transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572059,0.000000,0.000000,0.250000,0,0);}
.m61b_c00001{transform:matrix(0.572353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572353,0.000000,0.000000,0.250000,0,0);}
.m172_c00001{transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572614,0.000000,0.000000,0.250000,0,0);}
.m2a9_c00001{transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572794,0.000000,0.000000,0.250000,0,0);}
.m629_c00001{transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572941,0.000000,0.000000,0.250000,0,0);}
.m85b_c00001{transform:matrix(0.573284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573284,0.000000,0.000000,0.250000,0,0);}
.m34a_c00001{transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573529,0.000000,0.000000,0.250000,0,0);}
.md8_c00001{transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573651,0.000000,0.000000,0.250000,0,0);}
.m17b_c00001{transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574170,0.000000,0.000000,0.250000,0,0);}
.m6c4_c00001{transform:matrix(0.574265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574265,0.000000,0.000000,0.250000,0,0);}
.m337_c00001{transform:matrix(0.574519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574519,0.000000,0.000000,0.250000,0,0);}
.m17_c00001{transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574689,0.000000,0.000000,0.250000,0,0);}
.m138_c00001{transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574706,0.000000,0.000000,0.250000,0,0);}
.m2da_c00001{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00001{transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575207,0.000000,0.000000,0.250000,0,0);}
.m1c7_c00001{transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575294,0.000000,0.000000,0.250000,0,0);}
.mad_c00001{transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575726,0.000000,0.000000,0.250000,0,0);}
.m6ca_c00001{transform:matrix(0.575735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575735,0.000000,0.000000,0.250000,0,0);}
.m4d5_c00001{transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575882,0.000000,0.000000,0.250000,0,0);}
.m83e_c00001{transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576122,0.000000,0.000000,0.250000,0,0);}
.m460_c00001{transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576245,0.000000,0.000000,0.250000,0,0);}
.m301_c00001{transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576471,0.000000,0.000000,0.250000,0,0);}
.m90_c00001{transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576763,0.000000,0.000000,0.250000,0,0);}
.m198_c00001{transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577059,0.000000,0.000000,0.250000,0,0);}
.m4ff_c00001{transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577206,0.000000,0.000000,0.250000,0,0);}
.m2b6_c00001{transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577282,0.000000,0.000000,0.250000,0,0);}
.m3e6_c00001{transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577647,0.000000,0.000000,0.250000,0,0);}
.m314_c00001{transform:matrix(0.577724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577724,0.000000,0.000000,0.250000,0,0);}
.mfa_c00001{transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577801,0.000000,0.000000,0.250000,0,0);}
.m7a5_c00001{transform:matrix(0.577941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577941,0.000000,0.000000,0.250000,0,0);}
.m100_c00001{transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578235,0.000000,0.000000,0.250000,0,0);}
.m2d6_c00001{transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578320,0.000000,0.000000,0.250000,0,0);}
.m4f3_c00001{transform:matrix(0.578676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578676,0.000000,0.000000,0.250000,0,0);}
.m2c4_c00001{transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578824,0.000000,0.000000,0.250000,0,0);}
.m1b1_c00001{transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578838,0.000000,0.000000,0.250000,0,0);}
.m5bc_c00001{transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579357,0.000000,0.000000,0.250000,0,0);}
.m273_c00001{transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579412,0.000000,0.000000,0.250000,0,0);}
.m1f0_c00001{transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579876,0.000000,0.000000,0.250000,0,0);}
.m1d3_c00001{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);}
.m621_c00001{transform:matrix(0.580147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580147,0.000000,0.000000,0.250000,0,0);}
.m640_c00001{transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580588,0.000000,0.000000,0.250000,0,0);}
.m5a7_c00001{transform:matrix(0.580913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580913,0.000000,0.000000,0.250000,0,0);}
.m78a_c00001{transform:matrix(0.582353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582353,0.000000,0.000000,0.250000,0,0);}
.m613_c00001{transform:matrix(0.582469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582469,0.000000,0.000000,0.250000,0,0);}
.m2f7_c00001{transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582599,0.000000,0.000000,0.250000,0,0);}
.m1a8_c00001{transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582941,0.000000,0.000000,0.250000,0,0);}
.m6_c00001{transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582988,0.000000,0.000000,0.250000,0,0);}
.m45c_c00001{transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583024,0.000000,0.000000,0.250000,0,0);}
.m25e_c00001{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m8d_c00001{transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583529,0.000000,0.000000,0.250000,0,0);}
.mb9_c00001{transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583613,0.000000,0.000000,0.250000,0,0);}
.m274_c00001{transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583824,0.000000,0.000000,0.250000,0,0);}
.m340_c00001{transform:matrix(0.584025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584025,0.000000,0.000000,0.250000,0,0);}
.m3e_c00001{transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584544,0.000000,0.000000,0.250000,0,0);}
.m51c_c00001{transform:matrix(0.584559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584559,0.000000,0.000000,0.250000,0,0);}
.m2c2_c00001{transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584706,0.000000,0.000000,0.250000,0,0);}
.m334_c00001{transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585294,0.000000,0.000000,0.250000,0,0);}
.m5ed_c00001{transform:matrix(0.586618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586618,0.000000,0.000000,0.250000,0,0);}
.m761_c00001{transform:matrix(0.587059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587059,0.000000,0.000000,0.250000,0,0);}
.m3e5_c00001{transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587137,0.000000,0.000000,0.250000,0,0);}
.m734_c00001{transform:matrix(0.587647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587647,0.000000,0.000000,0.250000,0,0);}
.m3d0_c00001{transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587656,0.000000,0.000000,0.250000,0,0);}
.m3fa_c00001{transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588174,0.000000,0.000000,0.250000,0,0);}
.m633_c00001{transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588235,0.000000,0.000000,0.250000,0,0);}
.m71f_c00001{transform:matrix(0.588824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588824,0.000000,0.000000,0.250000,0,0);}
.m803_c00001{transform:matrix(0.588971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588971,0.000000,0.000000,0.250000,0,0);}
.m1d4_c00001{transform:matrix(0.589212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589212,0.000000,0.000000,0.250000,0,0);}
.m1ff_c00001{transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589412,0.000000,0.000000,0.250000,0,0);}
.m2a0_c00001{transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589706,0.000000,0.000000,0.250000,0,0);}
.m14a_c00001{transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589730,0.000000,0.000000,0.250000,0,0);}
.m4d4_c00001{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);}
.m3d5_c00001{transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590249,0.000000,0.000000,0.250000,0,0);}
.m6e7_c00001{transform:matrix(0.590441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590441,0.000000,0.000000,0.250000,0,0);}
.m10f_c00001{transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590588,0.000000,0.000000,0.250000,0,0);}
.m32_c00001{transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590768,0.000000,0.000000,0.250000,0,0);}
.m157_c00001{transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591176,0.000000,0.000000,0.250000,0,0);}
.m47_c00001{transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591286,0.000000,0.000000,0.250000,0,0);}
.m2dc_c00001{transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591765,0.000000,0.000000,0.250000,0,0);}
.m75d_c00001{transform:matrix(0.591912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591912,0.000000,0.000000,0.250000,0,0);}
.m59_c00001{transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592324,0.000000,0.000000,0.250000,0,0);}
.m19c_c00001{transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592353,0.000000,0.000000,0.250000,0,0);}
.m26a_c00001{transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592647,0.000000,0.000000,0.250000,0,0);}
.m184_c00001{transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592842,0.000000,0.000000,0.250000,0,0);}
.m2a7_c00001{transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592941,0.000000,0.000000,0.250000,0,0);}
.m5c6_c00001{transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593361,0.000000,0.000000,0.250000,0,0);}
.m596_c00001{transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593382,0.000000,0.000000,0.250000,0,0);}
.m58a_c00001{transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593529,0.000000,0.000000,0.250000,0,0);}
.m10d_c00001{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m6de_c00001{transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594118,0.000000,0.000000,0.250000,0,0);}
.m114_c00001{transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594706,0.000000,0.000000,0.250000,0,0);}
.m657_c00001{transform:matrix(0.594853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594853,0.000000,0.000000,0.250000,0,0);}
.m5b3_c00001{transform:matrix(0.595294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595294,0.000000,0.000000,0.250000,0,0);}
.m69c_c00001{transform:matrix(0.595353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595353,0.000000,0.000000,0.250000,0,0);}
.m1cb_c00001{transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595436,0.000000,0.000000,0.250000,0,0);}
.m6fb_c00001{transform:matrix(0.595588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595588,0.000000,0.000000,0.250000,0,0);}
.m1a6_c00001{transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595882,0.000000,0.000000,0.250000,0,0);}
.m425_c00001{transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596154,0.000000,0.000000,0.250000,0,0);}
.m864_c00001{transform:matrix(0.596324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596324,0.000000,0.000000,0.250000,0,0);}
.m5bb_c00001{transform:matrix(0.596471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596471,0.000000,0.000000,0.250000,0,0);}
.m410_c00001{transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596473,0.000000,0.000000,0.250000,0,0);}
.m36a_c00001{transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597059,0.000000,0.000000,0.250000,0,0);}
.m685_c00001{transform:matrix(0.597510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597510,0.000000,0.000000,0.250000,0,0);}
.m68e_c00001{transform:matrix(0.597647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597647,0.000000,0.000000,0.250000,0,0);}
.m802_c00001{transform:matrix(0.597794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597794,0.000000,0.000000,0.250000,0,0);}
.m5_c00001{transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598029,0.000000,0.000000,0.250000,0,0);}
.m204_c00001{transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598235,0.000000,0.000000,0.250000,0,0);}
.m351_c00001{transform:matrix(0.598529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598529,0.000000,0.000000,0.250000,0,0);}
.m805_c00001{transform:matrix(0.599265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599265,0.000000,0.000000,0.250000,0,0);}
.m224_c00001{transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599359,0.000000,0.000000,0.250000,0,0);}
.m119_c00001{transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599412,0.000000,0.000000,0.250000,0,0);}
.m6c_c00001{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);}
.m728_c00001{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);}
.m473_c00001{transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600104,0.000000,0.000000,0.250000,0,0);}
.m448_c00001{transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601176,0.000000,0.000000,0.250000,0,0);}
.m30a_c00001{transform:matrix(0.601322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601322,0.000000,0.000000,0.250000,0,0);}
.m7fb_c00001{transform:matrix(0.601471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601471,0.000000,0.000000,0.250000,0,0);}
.m83d_c00001{transform:matrix(0.601763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601763,0.000000,0.000000,0.250000,0,0);}
.m5ae_c00001{transform:matrix(0.601765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601765,0.000000,0.000000,0.250000,0,0);}
.ma6_c00001{transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602178,0.000000,0.000000,0.250000,0,0);}
.m74d_c00001{transform:matrix(0.602206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602206,0.000000,0.000000,0.250000,0,0);}
.m110_c00001{transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602353,0.000000,0.000000,0.250000,0,0);}
.m6f1_c00001{transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602941,0.000000,0.000000,0.250000,0,0);}
.m363_c00001{transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603676,0.000000,0.000000,0.250000,0,0);}
.m435_c00001{transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604118,0.000000,0.000000,0.250000,0,0);}
.m5a8_c00001{transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604253,0.000000,0.000000,0.250000,0,0);}
.m7ac_c00001{transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604412,0.000000,0.000000,0.250000,0,0);}
.m19f_c00001{transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604706,0.000000,0.000000,0.250000,0,0);}
.m850_c00001{transform:matrix(0.604968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604968,0.000000,0.000000,0.250000,0,0);}
.m2d3_c00001{transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605290,0.000000,0.000000,0.250000,0,0);}
.m4b2_c00001{transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605294,0.000000,0.000000,0.250000,0,0);}
.m2b5_c00001{transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605882,0.000000,0.000000,0.250000,0,0);}
.m85c_c00001{transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606471,0.000000,0.000000,0.250000,0,0);}
.m701_c00001{transform:matrix(0.606618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606618,0.000000,0.000000,0.250000,0,0);}
.m4ca_c00001{transform:matrix(0.606846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606846,0.000000,0.000000,0.250000,0,0);}
.m527_c00001{transform:matrix(0.607353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607353,0.000000,0.000000,0.250000,0,0);}
.m3b_c00001{transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607647,0.000000,0.000000,0.250000,0,0);}
.m769_c00001{transform:matrix(0.608088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608088,0.000000,0.000000,0.250000,0,0);}
.m451_c00001{transform:matrix(0.608235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608235,0.000000,0.000000,0.250000,0,0);}
.m2c1_c00001{transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608402,0.000000,0.000000,0.250000,0,0);}
.m20_c00001{transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608824,0.000000,0.000000,0.250000,0,0);}
.m233_c00001{transform:matrix(0.608921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608921,0.000000,0.000000,0.250000,0,0);}
.m5b0_c00001{transform:matrix(0.608974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608974,0.000000,0.000000,0.250000,0,0);}
.m836_c00001{transform:matrix(0.608998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608998,0.000000,0.000000,0.250000,0,0);}
.m30b_c00001{transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609031,0.000000,0.000000,0.250000,0,0);}
.m1b_c00001{transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609412,0.000000,0.000000,0.250000,0,0);}
.m388_c00001{transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609440,0.000000,0.000000,0.250000,0,0);}
.mea_c00001{transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609559,0.000000,0.000000,0.250000,0,0);}
.m674_c00001{transform:matrix(0.610294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610294,0.000000,0.000000,0.250000,0,0);}
.m47f_c00001{transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610996,0.000000,0.000000,0.250000,0,0);}
.m43a_c00001{transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611029,0.000000,0.000000,0.250000,0,0);}
.m16a_c00001{transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611176,0.000000,0.000000,0.250000,0,0);}
.m1a7_c00001{transform:matrix(0.611765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611765,0.000000,0.000000,0.250000,0,0);}
.m2bd_c00001{transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612033,0.000000,0.000000,0.250000,0,0);}
.m2fc_c00001{transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612179,0.000000,0.000000,0.250000,0,0);}
.m2f3_c00001{transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612335,0.000000,0.000000,0.250000,0,0);}
.m193_c00001{transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612353,0.000000,0.000000,0.250000,0,0);}
.m6df_c00001{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);}
.m225_c00001{transform:matrix(0.612552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612552,0.000000,0.000000,0.250000,0,0);}
.m19_c00001{transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612941,0.000000,0.000000,0.250000,0,0);}
.m585_c00001{transform:matrix(0.613071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613071,0.000000,0.000000,0.250000,0,0);}
.m362_c00001{transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613235,0.000000,0.000000,0.250000,0,0);}
.m38f_c00001{transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613589,0.000000,0.000000,0.250000,0,0);}
.m520_c00001{transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613971,0.000000,0.000000,0.250000,0,0);}
.m1e0_c00001{transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614108,0.000000,0.000000,0.250000,0,0);}
.m207_c00001{transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614118,0.000000,0.000000,0.250000,0,0);}
.m2f2_c00001{transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614537,0.000000,0.000000,0.250000,0,0);}
.m528_c00001{transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);}
.m695_c00001{transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614706,0.000000,0.000000,0.250000,0,0);}
.m8a3_c00001{transform:matrix(0.615028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615028,0.000000,0.000000,0.250000,0,0);}
.m52_c00001{transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615145,0.000000,0.000000,0.250000,0,0);}
.m873_c00001{transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615294,0.000000,0.000000,0.250000,0,0);}
.m683_c00001{transform:matrix(0.615385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615385,0.000000,0.000000,0.250000,0,0);}
.m2f0_c00001{transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615441,0.000000,0.000000,0.250000,0,0);}
.m466_c00001{transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615882,0.000000,0.000000,0.250000,0,0);}
.m757_c00001{transform:matrix(0.616176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616176,0.000000,0.000000,0.250000,0,0);}
.me7_c00001{transform:matrix(0.616183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616183,0.000000,0.000000,0.250000,0,0);}
.m1eb_c00001{transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616471,0.000000,0.000000,0.250000,0,0);}
.m5cc_c00001{transform:matrix(0.616701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616701,0.000000,0.000000,0.250000,0,0);}
.m4fe_c00001{transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616912,0.000000,0.000000,0.250000,0,0);}
.m43f_c00001{transform:matrix(0.616987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616987,0.000000,0.000000,0.250000,0,0);}
.m2c7_c00001{transform:matrix(0.617059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617059,0.000000,0.000000,0.250000,0,0);}
.mf0_c00001{transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617647,0.000000,0.000000,0.250000,0,0);}
.m3c1_c00001{transform:matrix(0.617739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617739,0.000000,0.000000,0.250000,0,0);}
.m153_c00001{transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618235,0.000000,0.000000,0.250000,0,0);}
.m699_c00001{transform:matrix(0.618257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618257,0.000000,0.000000,0.250000,0,0);}
.m3a5_c00001{transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618382,0.000000,0.000000,0.250000,0,0);}
.m20f_c00001{transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618824,0.000000,0.000000,0.250000,0,0);}
.m52e_c00001{transform:matrix(0.619118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619118,0.000000,0.000000,0.250000,0,0);}
.m492_c00001{transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619412,0.000000,0.000000,0.250000,0,0);}
.m5f7_c00001{transform:matrix(0.619853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619853,0.000000,0.000000,0.250000,0,0);}
.m294_c00001{transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620588,0.000000,0.000000,0.250000,0,0);}
.m33c_c00001{transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621176,0.000000,0.000000,0.250000,0,0);}
.m116_c00001{transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621765,0.000000,0.000000,0.250000,0,0);}
.m31d_c00001{transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);}
.m352_c00001{transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622059,0.000000,0.000000,0.250000,0,0);}
.m18b_c00001{transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622353,0.000000,0.000000,0.250000,0,0);}
.m6a9_c00001{transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622794,0.000000,0.000000,0.250000,0,0);}
.m849_c00001{transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623529,0.000000,0.000000,0.250000,0,0);}
.m62f_c00001{transform:matrix(0.624304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624304,0.000000,0.000000,0.250000,0,0);}
.m323_c00001{transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624449,0.000000,0.000000,0.250000,0,0);}
.m1_c00001{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_c00001{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);}
.m41_c00001{transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625294,0.000000,0.000000,0.250000,0,0);}
.m7b1_c00001{transform:matrix(0.626471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.626471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.626471,0.000000,0.000000,0.250000,0,0);}
.m6ee_c00001{transform:matrix(0.627206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627206,0.000000,0.000000,0.250000,0,0);}
.m1b7_c00001{transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627647,0.000000,0.000000,0.250000,0,0);}
.m6f2_c00001{transform:matrix(0.627941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627941,0.000000,0.000000,0.250000,0,0);}
.m641_c00001{transform:matrix(0.628112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628112,0.000000,0.000000,0.250000,0,0);}
.m4f5_c00001{transform:matrix(0.628235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628235,0.000000,0.000000,0.250000,0,0);}
.m4c6_c00001{transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628631,0.000000,0.000000,0.250000,0,0);}
.m4dc_c00001{transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628676,0.000000,0.000000,0.250000,0,0);}
.m5c1_c00001{transform:matrix(0.628824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628824,0.000000,0.000000,0.250000,0,0);}
.m7b2_c00001{transform:matrix(0.629006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629006,0.000000,0.000000,0.250000,0,0);}
.m279_c00001{transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629412,0.000000,0.000000,0.250000,0,0);}
.m4bc_c00001{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);}
.m784_c00001{transform:matrix(0.630147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630147,0.000000,0.000000,0.250000,0,0);}
.m584_c00001{transform:matrix(0.630588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630588,0.000000,0.000000,0.250000,0,0);}
.m513_c00001{transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630609,0.000000,0.000000,0.250000,0,0);}
.m355_c00001{transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630882,0.000000,0.000000,0.250000,0,0);}
.m4cc_c00001{transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631176,0.000000,0.000000,0.250000,0,0);}
.m4fc_c00001{transform:matrix(0.632212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632212,0.000000,0.000000,0.250000,0,0);}
.m368_c00001{transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632353,0.000000,0.000000,0.250000,0,0);}
.m175_c00001{transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632941,0.000000,0.000000,0.250000,0,0);}
.m356_c00001{transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633088,0.000000,0.000000,0.250000,0,0);}
.m5a9_c00001{transform:matrix(0.633299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633299,0.000000,0.000000,0.250000,0,0);}
.m798_c00001{transform:matrix(0.633814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633814,0.000000,0.000000,0.250000,0,0);}
.m430_c00001{transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633817,0.000000,0.000000,0.250000,0,0);}
.m36b_c00001{transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633824,0.000000,0.000000,0.250000,0,0);}
.mdc_c00001{transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634118,0.000000,0.000000,0.250000,0,0);}
.m277_c00001{transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634559,0.000000,0.000000,0.250000,0,0);}
.m64f_c00001{transform:matrix(0.634706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634706,0.000000,0.000000,0.250000,0,0);}
.m434_c00001{transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635294,0.000000,0.000000,0.250000,0,0);}
.m41b_c00001{transform:matrix(0.636029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636029,0.000000,0.000000,0.250000,0,0);}
.m7bc_c00001{transform:matrix(0.636218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636218,0.000000,0.000000,0.250000,0,0);}
.m3ca_c00001{transform:matrix(0.636411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636411,0.000000,0.000000,0.250000,0,0);}
.m164_c00001{transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636471,0.000000,0.000000,0.250000,0,0);}
.m4a_c00001{transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636765,0.000000,0.000000,0.250000,0,0);}
.m86c_c00001{transform:matrix(0.637019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637019,0.000000,0.000000,0.250000,0,0);}
.m5f5_c00001{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);}
.m2b1_c00001{transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637647,0.000000,0.000000,0.250000,0,0);}
.m65f_c00001{transform:matrix(0.637665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637665,0.000000,0.000000,0.250000,0,0);}
.m5e_c00001{transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638235,0.000000,0.000000,0.250000,0,0);}
.m36d_c00001{transform:matrix(0.638485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638485,0.000000,0.000000,0.250000,0,0);}
.m3c5_c00001{transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638622,0.000000,0.000000,0.250000,0,0);}
.m3a9_c00001{transform:matrix(0.638767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638767,0.000000,0.000000,0.250000,0,0);}
.m72_c00001{transform:matrix(0.638824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638824,0.000000,0.000000,0.250000,0,0);}
.m1dc_c00001{transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638971,0.000000,0.000000,0.250000,0,0);}
.m3c6_c00001{transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639412,0.000000,0.000000,0.250000,0,0);}
.m6ed_c00001{transform:matrix(0.639423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639423,0.000000,0.000000,0.250000,0,0);}
.m2a2_c00001{transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640441,0.000000,0.000000,0.250000,0,0);}
.m2b2_c00001{transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640588,0.000000,0.000000,0.250000,0,0);}
.m1a4_c00001{transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641176,0.000000,0.000000,0.250000,0,0);}
.m624_c00001{transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641912,0.000000,0.000000,0.250000,0,0);}
.m329_c00001{transform:matrix(0.642070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642070,0.000000,0.000000,0.250000,0,0);}
.m6b_c00001{transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642353,0.000000,0.000000,0.250000,0,0);}
.m978_c00001{transform:matrix(0.642628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642628,0.000000,0.000000,0.250000,0,0);}
.m9df_c00001{transform:matrix(0.642635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642635,0.000000,0.000000,0.250000,0,0);}
.m35c_c00001{transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642647,0.000000,0.000000,0.250000,0,0);}
.m3ba_c00001{transform:matrix(0.643172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643172,0.000000,0.000000,0.250000,0,0);}
.m51a_c00001{transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643382,0.000000,0.000000,0.250000,0,0);}
.m7f8_c00001{transform:matrix(0.643429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643429,0.000000,0.000000,0.250000,0,0);}
.m135_c00001{transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644118,0.000000,0.000000,0.250000,0,0);}
.m4f9_c00001{transform:matrix(0.644191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644191,0.000000,0.000000,0.250000,0,0);}
.m3aa_c00001{transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644273,0.000000,0.000000,0.250000,0,0);}
.m2cf_c00001{transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644706,0.000000,0.000000,0.250000,0,0);}
.m2e7_c00001{transform:matrix(0.644710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644710,0.000000,0.000000,0.250000,0,0);}
.m256_c00001{transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644853,0.000000,0.000000,0.250000,0,0);}
.m5e9_c00001{transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645294,0.000000,0.000000,0.250000,0,0);}
.mef_c00001{transform:matrix(0.645588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645588,0.000000,0.000000,0.250000,0,0);}
.m5e8_c00001{transform:matrix(0.646266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.646266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.646266,0.000000,0.000000,0.250000,0,0);}
.m834_c00001{transform:matrix(0.646324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.646324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.646324,0.000000,0.000000,0.250000,0,0);}
.m24c_c00001{transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647059,0.000000,0.000000,0.250000,0,0);}
.m437_c00001{transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647647,0.000000,0.000000,0.250000,0,0);}
.m6cd_c00001{transform:matrix(0.647794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647794,0.000000,0.000000,0.250000,0,0);}
.m433_c00001{transform:matrix(0.648235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648235,0.000000,0.000000,0.250000,0,0);}
.m7e9_c00001{transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648529,0.000000,0.000000,0.250000,0,0);}
.m459_c00001{transform:matrix(0.648824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648824,0.000000,0.000000,0.250000,0,0);}
.m72e_c00001{transform:matrix(0.649265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649265,0.000000,0.000000,0.250000,0,0);}
.m4ac_c00001{transform:matrix(0.649412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649412,0.000000,0.000000,0.250000,0,0);}
.m3b2_c00001{transform:matrix(0.649780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649780,0.000000,0.000000,0.250000,0,0);}
.m42c_c00001{transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649840,0.000000,0.000000,0.250000,0,0);}
.m858_c00001{transform:matrix(0.649896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649896,0.000000,0.000000,0.250000,0,0);}
.m268_c00001{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);}
.m360_c00001{transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650588,0.000000,0.000000,0.250000,0,0);}
.m837_c00001{transform:matrix(0.650735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650735,0.000000,0.000000,0.250000,0,0);}
.m52c_c00001{transform:matrix(0.651176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651176,0.000000,0.000000,0.250000,0,0);}
.m636_c00001{transform:matrix(0.651471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651471,0.000000,0.000000,0.250000,0,0);}
.m1fc_c00001{transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651765,0.000000,0.000000,0.250000,0,0);}
.m592_c00001{transform:matrix(0.652206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652206,0.000000,0.000000,0.250000,0,0);}
.m182_c00001{transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652353,0.000000,0.000000,0.250000,0,0);}
.m70d_c00001{transform:matrix(0.652941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652941,0.000000,0.000000,0.250000,0,0);}
.m7f6_c00001{transform:matrix(0.653045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653045,0.000000,0.000000,0.250000,0,0);}
.m4ce_c00001{transform:matrix(0.653529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653529,0.000000,0.000000,0.250000,0,0);}
.m27e_c00001{transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653676,0.000000,0.000000,0.250000,0,0);}
.m3c8_c00001{transform:matrix(0.654118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.654118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.654118,0.000000,0.000000,0.250000,0,0);}
.m6b3_c00001{transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.654412,0.000000,0.000000,0.250000,0,0);}
.m855_c00001{transform:matrix(0.655083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655083,0.000000,0.000000,0.250000,0,0);}
.m710_c00001{transform:matrix(0.655147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655147,0.000000,0.000000,0.250000,0,0);}
.m300_c00001{transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655286,0.000000,0.000000,0.250000,0,0);}
.m81a_c00001{transform:matrix(0.655882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655882,0.000000,0.000000,0.250000,0,0);}
.mfb_c00001{transform:matrix(0.656120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656120,0.000000,0.000000,0.250000,0,0);}
.m4a6_c00001{transform:matrix(0.656250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656250,0.000000,0.000000,0.250000,0,0);}
.m67d_c00001{transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656471,0.000000,0.000000,0.250000,0,0);}
.m1ae_c00001{transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656618,0.000000,0.000000,0.250000,0,0);}
.m6b6_c00001{transform:matrix(0.657051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657051,0.000000,0.000000,0.250000,0,0);}
.m263_c00001{transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657353,0.000000,0.000000,0.250000,0,0);}
.m40_c00001{transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657647,0.000000,0.000000,0.250000,0,0);}
.m1df_c00001{transform:matrix(0.658654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.658654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.658654,0.000000,0.000000,0.250000,0,0);}
.m856_c00001{transform:matrix(0.658824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.658824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.658824,0.000000,0.000000,0.250000,0,0);}
.m7a3_c00001{transform:matrix(0.659455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659455,0.000000,0.000000,0.250000,0,0);}
.m27c_c00001{transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659559,0.000000,0.000000,0.250000,0,0);}
.m84f_c00001{transform:matrix(0.660256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660256,0.000000,0.000000,0.250000,0,0);}
.m20c_c00001{transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660294,0.000000,0.000000,0.250000,0,0);}
.m25f_c00001{transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661029,0.000000,0.000000,0.250000,0,0);}
.m137_c00001{transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661176,0.000000,0.000000,0.250000,0,0);}
.m358_c00001{transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661765,0.000000,0.000000,0.250000,0,0);}
.m593_c00001{transform:matrix(0.661859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661859,0.000000,0.000000,0.250000,0,0);}
.m2f4_c00001{transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661894,0.000000,0.000000,0.250000,0,0);}
.mf3_c00001{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);}
.m177_c00001{transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662941,0.000000,0.000000,0.250000,0,0);}
.m833_c00001{transform:matrix(0.663235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.663235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.663235,0.000000,0.000000,0.250000,0,0);}
.m6b9_c00001{transform:matrix(0.663971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.663971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.663971,0.000000,0.000000,0.250000,0,0);}
.m4cb_c00001{transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664118,0.000000,0.000000,0.250000,0,0);}
.m7d7_c00001{transform:matrix(0.664263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664263,0.000000,0.000000,0.250000,0,0);}
.m61c_c00001{transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);}
.m64b_c00001{transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664706,0.000000,0.000000,0.250000,0,0);}
.m22_c00001{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m79b_c00001{transform:matrix(0.666176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666176,0.000000,0.000000,0.250000,0,0);}
.m2f8_c00001{transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666300,0.000000,0.000000,0.250000,0,0);}
.m960_c00001{transform:matrix(0.666494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666494,0.000000,0.000000,0.250000,0,0);}
.m21d_c00001{transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666912,0.000000,0.000000,0.250000,0,0);}
.m9_c00001{transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667059,0.000000,0.000000,0.250000,0,0);}
.m4c9_c00001{transform:matrix(0.668269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.668269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.668269,0.000000,0.000000,0.250000,0,0);}
.m758_c00001{transform:matrix(0.668382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.668382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.668382,0.000000,0.000000,0.250000,0,0);}
.m58d_c00001{transform:matrix(0.668824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.668824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.668824,0.000000,0.000000,0.250000,0,0);}
.m361_c00001{transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669118,0.000000,0.000000,0.250000,0,0);}
.m60e_c00001{transform:matrix(0.669412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669412,0.000000,0.000000,0.250000,0,0);}
.m869_c00001{transform:matrix(0.669606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669606,0.000000,0.000000,0.250000,0,0);}
.m884_c00001{transform:matrix(0.669853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669853,0.000000,0.000000,0.250000,0,0);}
.m35e_c00001{transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670588,0.000000,0.000000,0.250000,0,0);}
.m4cf_c00001{transform:matrix(0.671324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.671324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.671324,0.000000,0.000000,0.250000,0,0);}
.m830_c00001{transform:matrix(0.672059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672059,0.000000,0.000000,0.250000,0,0);}
.m7e2_c00001{transform:matrix(0.672276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672276,0.000000,0.000000,0.250000,0,0);}
.m290_c00001{transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672794,0.000000,0.000000,0.250000,0,0);}
.m374_c00001{transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672941,0.000000,0.000000,0.250000,0,0);}
.m6ad_c00001{transform:matrix(0.673529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673529,0.000000,0.000000,0.250000,0,0);}
.m83f_c00001{transform:matrix(0.674265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674265,0.000000,0.000000,0.250000,0,0);}
.m44d_c00001{transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674679,0.000000,0.000000,0.250000,0,0);}
.m4e8_c00001{transform:matrix(0.674706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674706,0.000000,0.000000,0.250000,0,0);}
.m3f5_c00001{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);}
.m5ca_c00001{transform:matrix(0.675294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675294,0.000000,0.000000,0.250000,0,0);}
.m7e4_c00001{transform:matrix(0.675735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675735,0.000000,0.000000,0.250000,0,0);}
.m66e_c00001{transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676282,0.000000,0.000000,0.250000,0,0);}
.mb6_c00001{transform:matrix(0.676349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676349,0.000000,0.000000,0.250000,0,0);}
.m35f_c00001{transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676471,0.000000,0.000000,0.250000,0,0);}
.m4af_c00001{transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677059,0.000000,0.000000,0.250000,0,0);}
.m880_c00001{transform:matrix(0.677206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677206,0.000000,0.000000,0.250000,0,0);}
.m61a_c00001{transform:matrix(0.677885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677885,0.000000,0.000000,0.250000,0,0);}
.m6bc_c00001{transform:matrix(0.677941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677941,0.000000,0.000000,0.250000,0,0);}
.m582_c00001{transform:matrix(0.678235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.678235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.678235,0.000000,0.000000,0.250000,0,0);}
.m7ed_c00001{transform:matrix(0.678676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.678676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.678676,0.000000,0.000000,0.250000,0,0);}
.me5_c00001{transform:matrix(0.679487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679487,0.000000,0.000000,0.250000,0,0);}
.m3a7_c00001{transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679515,0.000000,0.000000,0.250000,0,0);}
.m6f4_c00001{transform:matrix(0.680147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680147,0.000000,0.000000,0.250000,0,0);}
.m22d_c00001{transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680288,0.000000,0.000000,0.250000,0,0);}
.m375_c00001{transform:matrix(0.680588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680588,0.000000,0.000000,0.250000,0,0);}
.m6db_c00001{transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680882,0.000000,0.000000,0.250000,0,0);}
.m214_c00001{transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681090,0.000000,0.000000,0.250000,0,0);}
.m591_c00001{transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681618,0.000000,0.000000,0.250000,0,0);}
.m3b8_c00001{transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681718,0.000000,0.000000,0.250000,0,0);}
.m7ee_c00001{transform:matrix(0.681891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681891,0.000000,0.000000,0.250000,0,0);}
.m2a_c00001{transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682353,0.000000,0.000000,0.250000,0,0);}
.m85e_c00001{transform:matrix(0.682692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682692,0.000000,0.000000,0.250000,0,0);}
.m1a0_c00001{transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682941,0.000000,0.000000,0.250000,0,0);}
.m5b5_c00001{transform:matrix(0.683088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683088,0.000000,0.000000,0.250000,0,0);}
.m49e_c00001{transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683824,0.000000,0.000000,0.250000,0,0);}
.m32f_c00001{transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685022,0.000000,0.000000,0.250000,0,0);}
.m619_c00001{transform:matrix(0.685096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685096,0.000000,0.000000,0.250000,0,0);}
.m35b_c00001{transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685294,0.000000,0.000000,0.250000,0,0);}
.m6b7_c00001{transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686029,0.000000,0.000000,0.250000,0,0);}
.m38a_c00001{transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686699,0.000000,0.000000,0.250000,0,0);}
.m259_c00001{transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687225,0.000000,0.000000,0.250000,0,0);}
.m6aa_c00001{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);}
.m1cc_c00001{transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687647,0.000000,0.000000,0.250000,0,0);}
.m768_c00001{transform:matrix(0.688971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.688971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.688971,0.000000,0.000000,0.250000,0,0);}
.m316_c00001{transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689394,0.000000,0.000000,0.250000,0,0);}
.m7f4_c00001{transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689706,0.000000,0.000000,0.250000,0,0);}
.m7c3_c00001{transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689904,0.000000,0.000000,0.250000,0,0);}
.m7a0_c00001{transform:matrix(0.690441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690441,0.000000,0.000000,0.250000,0,0);}
.m6c0_c00001{transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.691176,0.000000,0.000000,0.250000,0,0);}
.m9db_c00001{transform:matrix(0.692308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692308,0.000000,0.000000,0.250000,0,0);}
.m64e_c00001{transform:matrix(0.692647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692647,0.000000,0.000000,0.250000,0,0);}
.m349_c00001{transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693910,0.000000,0.000000,0.250000,0,0);}
.m3c_c00001{transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694502,0.000000,0.000000,0.250000,0,0);}
.m4ef_c00001{transform:matrix(0.694853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.694853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.694853,0.000000,0.000000,0.250000,0,0);}
.m715_c00001{transform:matrix(0.695513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695513,0.000000,0.000000,0.250000,0,0);}
.m6e4_c00001{transform:matrix(0.695588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695588,0.000000,0.000000,0.250000,0,0);}
.m310_c00001{transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696035,0.000000,0.000000,0.250000,0,0);}
.m5f_c00001{transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696314,0.000000,0.000000,0.250000,0,0);}
.m4f1_c00001{transform:matrix(0.696324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696324,0.000000,0.000000,0.250000,0,0);}
.m4de_c00001{transform:matrix(0.696471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696471,0.000000,0.000000,0.250000,0,0);}
.m18e_c00001{transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697059,0.000000,0.000000,0.250000,0,0);}
.mca_c00001{transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697115,0.000000,0.000000,0.250000,0,0);}
.m4a7_c00001{transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697137,0.000000,0.000000,0.250000,0,0);}
.m867_c00001{transform:matrix(0.697614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697614,0.000000,0.000000,0.250000,0,0);}
.m61e_c00001{transform:matrix(0.697794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697794,0.000000,0.000000,0.250000,0,0);}
.m1fb_c00001{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m3f_c00001{transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698235,0.000000,0.000000,0.250000,0,0);}
.mf2_c00001{transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698529,0.000000,0.000000,0.250000,0,0);}
.m41f_c00001{transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699265,0.000000,0.000000,0.250000,0,0);}
.m3b1_c00001{transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699339,0.000000,0.000000,0.250000,0,0);}
.m96f_c00001{transform:matrix(0.699443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699443,0.000000,0.000000,0.250000,0,0);}
.m34_c00001{transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699519,0.000000,0.000000,0.250000,0,0);}
.mc9_c00001{transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699689,0.000000,0.000000,0.250000,0,0);}
.m253_c00001{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);}
.m651_c00001{transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700588,0.000000,0.000000,0.250000,0,0);}
.m7ef_c00001{transform:matrix(0.704412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.704412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.704412,0.000000,0.000000,0.250000,0,0);}
.m84b_c00001{transform:matrix(0.705147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705147,0.000000,0.000000,0.250000,0,0);}
.m83c_c00001{transform:matrix(0.705882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705882,0.000000,0.000000,0.250000,0,0);}
.m5eb_c00001{transform:matrix(0.705929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705929,0.000000,0.000000,0.250000,0,0);}
.m5c5_c00001{transform:matrix(0.706618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.706618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.706618,0.000000,0.000000,0.250000,0,0);}
.m5a6_c00001{transform:matrix(0.707353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707353,0.000000,0.000000,0.250000,0,0);}
.m3eb_c00001{transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707532,0.000000,0.000000,0.250000,0,0);}
.m86f_c00001{transform:matrix(0.708333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.708333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.708333,0.000000,0.000000,0.250000,0,0);}
.m514_c00001{transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.708824,0.000000,0.000000,0.250000,0,0);}
.m4e2_c00001{transform:matrix(0.709135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709135,0.000000,0.000000,0.250000,0,0);}
.m2ae_c00001{transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709936,0.000000,0.000000,0.250000,0,0);}
.m5b6_c00001{transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710294,0.000000,0.000000,0.250000,0,0);}
.m3b5_c00001{transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710352,0.000000,0.000000,0.250000,0,0);}
.m7a9_c00001{transform:matrix(0.711765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.711765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.711765,0.000000,0.000000,0.250000,0,0);}
.m886_c00001{transform:matrix(0.712137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712137,0.000000,0.000000,0.250000,0,0);}
.m875_c00001{transform:matrix(0.712340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712340,0.000000,0.000000,0.250000,0,0);}
.m881_c00001{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);}
.m804_c00001{transform:matrix(0.713235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713235,0.000000,0.000000,0.250000,0,0);}
.m228_c00001{transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713942,0.000000,0.000000,0.250000,0,0);}
.m383_c00001{transform:matrix(0.714706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.714706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.714706,0.000000,0.000000,0.250000,0,0);}
.m72c_c00001{transform:matrix(0.714744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.714744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.714744,0.000000,0.000000,0.250000,0,0);}
.m4e9_c00001{transform:matrix(0.716471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.716471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.716471,0.000000,0.000000,0.250000,0,0);}
.m861_c00001{transform:matrix(0.716912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.716912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.716912,0.000000,0.000000,0.250000,0,0);}
.m883_c00001{transform:matrix(0.717647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717647,0.000000,0.000000,0.250000,0,0);}
.mda_c00001{transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717949,0.000000,0.000000,0.250000,0,0);}
.m31b_c00001{transform:matrix(0.718062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.718062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.718062,0.000000,0.000000,0.250000,0,0);}
.m610_c00001{transform:matrix(0.718750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.718750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.718750,0.000000,0.000000,0.250000,0,0);}
.m428_c00001{transform:matrix(0.718824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.718824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.718824,0.000000,0.000000,0.250000,0,0);}
.m280_c00001{transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719118,0.000000,0.000000,0.250000,0,0);}
.m3b6_c00001{transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719163,0.000000,0.000000,0.250000,0,0);}
.m7cb_c00001{transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719551,0.000000,0.000000,0.250000,0,0);}
.m814_c00001{transform:matrix(0.719853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719853,0.000000,0.000000,0.250000,0,0);}
.m72d_c00001{transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720588,0.000000,0.000000,0.250000,0,0);}
.m16c_c00001{transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721955,0.000000,0.000000,0.250000,0,0);}
.m40c_c00001{transform:matrix(0.721992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721992,0.000000,0.000000,0.250000,0,0);}
.m887_c00001{transform:matrix(0.722059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722059,0.000000,0.000000,0.250000,0,0);}
.m380_c00001{transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722756,0.000000,0.000000,0.250000,0,0);}
.m7b6_c00001{transform:matrix(0.722794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722794,0.000000,0.000000,0.250000,0,0);}
.m493_c00001{transform:matrix(0.723529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.723529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.723529,0.000000,0.000000,0.250000,0,0);}
.m4d7_c00001{transform:matrix(0.723558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.723558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.723558,0.000000,0.000000,0.250000,0,0);}
.m7e6_c00001{transform:matrix(0.724265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.724265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.724265,0.000000,0.000000,0.250000,0,0);}
.m4b7_c00001{transform:matrix(0.724359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.724359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.724359,0.000000,0.000000,0.250000,0,0);}
.m490_c00001{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);}
.m168_c00001{transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726763,0.000000,0.000000,0.250000,0,0);}
.m3ad_c00001{transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726872,0.000000,0.000000,0.250000,0,0);}
.m68b_c00001{transform:matrix(0.727178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727178,0.000000,0.000000,0.250000,0,0);}
.m7f2_c00001{transform:matrix(0.727206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727206,0.000000,0.000000,0.250000,0,0);}
.mb3_c00001{transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727564,0.000000,0.000000,0.250000,0,0);}
.mb4_c00001{transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727647,0.000000,0.000000,0.250000,0,0);}
.m6c1_c00001{transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727941,0.000000,0.000000,0.250000,0,0);}
.m9c_c00001{transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728365,0.000000,0.000000,0.250000,0,0);}
.m6c7_c00001{transform:matrix(0.728676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728676,0.000000,0.000000,0.250000,0,0);}
.m6a0_c00001{transform:matrix(0.728824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728824,0.000000,0.000000,0.250000,0,0);}
.m152_c00001{transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729412,0.000000,0.000000,0.250000,0,0);}
.m87c_c00001{transform:matrix(0.730882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.730882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.730882,0.000000,0.000000,0.250000,0,0);}
.m845_c00001{transform:matrix(0.731571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.731571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.731571,0.000000,0.000000,0.250000,0,0);}
.m876_c00001{transform:matrix(0.732353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732353,0.000000,0.000000,0.250000,0,0);}
.m826_c00001{transform:matrix(0.732372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732372,0.000000,0.000000,0.250000,0,0);}
.m30d_c00001{transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732379,0.000000,0.000000,0.250000,0,0);}
.m835_c00001{transform:matrix(0.733088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733088,0.000000,0.000000,0.250000,0,0);}
.m2d0_c00001{transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733173,0.000000,0.000000,0.250000,0,0);}
.m94_c00001{transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735577,0.000000,0.000000,0.250000,0,0);}
.m86a_c00001{transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735683,0.000000,0.000000,0.250000,0,0);}
.m796_c00001{transform:matrix(0.736765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736765,0.000000,0.000000,0.250000,0,0);}
.m52d_c00001{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);}
.m5f1_c00001{transform:matrix(0.737981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737981,0.000000,0.000000,0.250000,0,0);}
.mfd_c00001{transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738782,0.000000,0.000000,0.250000,0,0);}
.m320_c00001{transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738987,0.000000,0.000000,0.250000,0,0);}
.m247_c00001{transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739583,0.000000,0.000000,0.250000,0,0);}
.m5bf_c00001{transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739706,0.000000,0.000000,0.250000,0,0);}
.m5bd_c00001{transform:matrix(0.741186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741186,0.000000,0.000000,0.250000,0,0);}
.m317_c00001{transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741189,0.000000,0.000000,0.250000,0,0);}
.m69a_c00001{transform:matrix(0.741987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741987,0.000000,0.000000,0.250000,0,0);}
.m5f0_c00001{transform:matrix(0.745192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.745192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.745192,0.000000,0.000000,0.250000,0,0);}
.m305_c00001{transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748899,0.000000,0.000000,0.250000,0,0);}
.m4e_c00001{transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749199,0.000000,0.000000,0.250000,0,0);}
.m61d_c00001{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_c00001{transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750588,0.000000,0.000000,0.250000,0,0);}
.m11f_c00001{transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754006,0.000000,0.000000,0.250000,0,0);}
.m438_c00001{transform:matrix(0.755609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.755609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.755609,0.000000,0.000000,0.250000,0,0);}
.m108_c00001{transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756410,0.000000,0.000000,0.250000,0,0);}
.m3bb_c00001{transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757709,0.000000,0.000000,0.250000,0,0);}
.m33a_c00001{transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758814,0.000000,0.000000,0.250000,0,0);}
.m221_c00001{transform:matrix(0.759615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.759615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.759615,0.000000,0.000000,0.250000,0,0);}
.m75_c00001{transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761218,0.000000,0.000000,0.250000,0,0);}
.m9a8_c00001{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);}
.m440_c00001{transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.764317,0.000000,0.000000,0.250000,0,0);}
.md5_c00001{transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765224,0.000000,0.000000,0.250000,0,0);}
.m9f_c00001{transform:matrix(0.765560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765560,0.000000,0.000000,0.250000,0,0);}
.m6e_c00001{transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766026,0.000000,0.000000,0.250000,0,0);}
.m709_c00001{transform:matrix(0.766176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766176,0.000000,0.000000,0.250000,0,0);}
.m503_c00001{transform:matrix(0.766912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766912,0.000000,0.000000,0.250000,0,0);}
.m439_c00001{transform:matrix(0.768429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.768429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.768429,0.000000,0.000000,0.250000,0,0);}
.m32b_c00001{transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.769824,0.000000,0.000000,0.250000,0,0);}
.m42_c00001{transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770032,0.000000,0.000000,0.250000,0,0);}
.m62c_c00001{transform:matrix(0.770228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770228,0.000000,0.000000,0.250000,0,0);}
.m3ab_c00001{transform:matrix(0.770925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770925,0.000000,0.000000,0.250000,0,0);}
.m847_c00001{transform:matrix(0.771324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.771324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.771324,0.000000,0.000000,0.250000,0,0);}
.m612_c00001{transform:matrix(0.771635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.771635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.771635,0.000000,0.000000,0.250000,0,0);}
.m5ef_c00001{transform:matrix(0.772059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772059,0.000000,0.000000,0.250000,0,0);}
.m33d_c00001{transform:matrix(0.772436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772436,0.000000,0.000000,0.250000,0,0);}
.m326_c00001{transform:matrix(0.772727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772727,0.000000,0.000000,0.250000,0,0);}
.m852_c00001{transform:matrix(0.774378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.774378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.774378,0.000000,0.000000,0.250000,0,0);}
.m3f7_c00001{transform:matrix(0.774840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.774840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.774840,0.000000,0.000000,0.250000,0,0);}
.m377_c00001{transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777244,0.000000,0.000000,0.250000,0,0);}
.m3c4_c00001{transform:matrix(0.778045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.778045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.778045,0.000000,0.000000,0.250000,0,0);}
.m65b_c00001{transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.778634,0.000000,0.000000,0.250000,0,0);}
.m39c_c00001{transform:matrix(0.778846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.778846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.778846,0.000000,0.000000,0.250000,0,0);}
.m7de_c00001{transform:matrix(0.779412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779412,0.000000,0.000000,0.250000,0,0);}
.m147_c00001{transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779647,0.000000,0.000000,0.250000,0,0);}
.m666_c00001{transform:matrix(0.779736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779736,0.000000,0.000000,0.250000,0,0);}
.m4bb_c00001{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);}
.m3fe_c00001{transform:matrix(0.780449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780449,0.000000,0.000000,0.250000,0,0);}
.m4df_c00001{transform:matrix(0.780588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780588,0.000000,0.000000,0.250000,0,0);}
.m5b7_c00001{transform:matrix(0.780837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780837,0.000000,0.000000,0.250000,0,0);}
.m6d5_c00001{transform:matrix(0.781618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.781618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.781618,0.000000,0.000000,0.250000,0,0);}
.m677_c00001{transform:matrix(0.781765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.781765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.781765,0.000000,0.000000,0.250000,0,0);}
.m76d_c00001{transform:matrix(0.782828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782828,0.000000,0.000000,0.250000,0,0);}
.m63c_c00001{transform:matrix(0.782853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782853,0.000000,0.000000,0.250000,0,0);}
.m38b_c00001{transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.784455,0.000000,0.000000,0.250000,0,0);}
.m3ee_c00001{transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785256,0.000000,0.000000,0.250000,0,0);}
.m14_c00001{transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786859,0.000000,0.000000,0.250000,0,0);}
.m450_c00001{transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789263,0.000000,0.000000,0.250000,0,0);}
.m7d8_c00001{transform:matrix(0.789706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789706,0.000000,0.000000,0.250000,0,0);}
.m4e0_c00001{transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790064,0.000000,0.000000,0.250000,0,0);}
.m2be_c00001{transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790865,0.000000,0.000000,0.250000,0,0);}
.m76f_c00001{transform:matrix(0.795154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795154,0.000000,0.000000,0.250000,0,0);}
.m21e_c00001{transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797276,0.000000,0.000000,0.250000,0,0);}
.m885_c00001{transform:matrix(0.798755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.798755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.798755,0.000000,0.000000,0.250000,0,0);}
.m3be_c00001{transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799559,0.000000,0.000000,0.250000,0,0);}
.m36_c00001{transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799679,0.000000,0.000000,0.250000,0,0);}
.m5f4_c00001{transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800735,0.000000,0.000000,0.250000,0,0);}
.m59e_c00001{transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.803965,0.000000,0.000000,0.250000,0,0);}
.m431_c00001{transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805288,0.000000,0.000000,0.250000,0,0);}
.m73_c00001{transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806090,0.000000,0.000000,0.250000,0,0);}
.m854_c00001{transform:matrix(0.807573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807573,0.000000,0.000000,0.250000,0,0);}
.m5f2_c00001{transform:matrix(0.807692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807692,0.000000,0.000000,0.250000,0,0);}
.m692_c00001{transform:matrix(0.808088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.808088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.808088,0.000000,0.000000,0.250000,0,0);}
.m1a5_c00001{transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809295,0.000000,0.000000,0.250000,0,0);}
.m306_c00001{transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811674,0.000000,0.000000,0.250000,0,0);}
.m6a_c00001{transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811699,0.000000,0.000000,0.250000,0,0);}
.m3b4_c00001{transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812775,0.000000,0.000000,0.250000,0,0);}
.m407_c00001{transform:matrix(0.814103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.814103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.814103,0.000000,0.000000,0.250000,0,0);}
.m3de_c00001{transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816506,0.000000,0.000000,0.250000,0,0);}
.m868_c00001{transform:matrix(0.816909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816909,0.000000,0.000000,0.250000,0,0);}
.mbd_c00001{transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821314,0.000000,0.000000,0.250000,0,0);}
.m46b_c00001{transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.823718,0.000000,0.000000,0.250000,0,0);}
.m838_c00001{transform:matrix(0.824265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.824265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.824265,0.000000,0.000000,0.250000,0,0);}
.m68c_c00001{transform:matrix(0.824519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.824519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.824519,0.000000,0.000000,0.250000,0,0);}
.m30f_c00001{transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827093,0.000000,0.000000,0.250000,0,0);}
.m12b_c00001{transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827724,0.000000,0.000000,0.250000,0,0);}
.m150_c00001{transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830128,0.000000,0.000000,0.250000,0,0);}
.m2b8_c00001{transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832532,0.000000,0.000000,0.250000,0,0);}
.m81_c00001{transform:matrix(0.837340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837340,0.000000,0.000000,0.250000,0,0);}
.m31a_c00001{transform:matrix(0.841410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.841410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.841410,0.000000,0.000000,0.250000,0,0);}
.m1bc_c00001{transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844551,0.000000,0.000000,0.250000,0,0);}
.m7ae_c00001{transform:matrix(0.844714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844714,0.000000,0.000000,0.250000,0,0);}
.m879_c00001{transform:matrix(0.848029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.848029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.848029,0.000000,0.000000,0.250000,0,0);}
.m443_c00001{transform:matrix(0.849119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.849119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.849119,0.000000,0.000000,0.250000,0,0);}
.m4ba_c00001{transform:matrix(0.850962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.850962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.850962,0.000000,0.000000,0.250000,0,0);}
.m3b3_c00001{transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.853524,0.000000,0.000000,0.250000,0,0);}
.m4ab_c00001{transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874199,0.000000,0.000000,0.250000,0,0);}
.m322_c00001{transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.874449,0.000000,0.000000,0.250000,0,0);}
.m853_c00001{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);}
.m24a_c00001{transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875294,0.000000,0.000000,0.250000,0,0);}
.m626_c00001{transform:matrix(0.875735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875735,0.000000,0.000000,0.250000,0,0);}
.m549_c00001{transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876263,0.000000,0.000000,0.250000,0,0);}
.m79c_c00001{transform:matrix(0.879956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.879956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.879956,0.000000,0.000000,0.250000,0,0);}
.m441_c00001{transform:matrix(0.881057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.881057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.881057,0.000000,0.000000,0.250000,0,0);}
.m730_c00001{transform:matrix(0.886765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.886765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.886765,0.000000,0.000000,0.250000,0,0);}
.m6b1_c00001{transform:matrix(0.887665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.887665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.887665,0.000000,0.000000,0.250000,0,0);}
.m69e_c00001{transform:matrix(0.888622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.888622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.888622,0.000000,0.000000,0.250000,0,0);}
.m72a_c00001{transform:matrix(0.892070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.892070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.892070,0.000000,0.000000,0.250000,0,0);}
.m4e6_c00001{transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893529,0.000000,0.000000,0.250000,0,0);}
.m413_c00001{transform:matrix(0.899840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.899840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.899840,0.000000,0.000000,0.250000,0,0);}
.m6a6_c00001{transform:matrix(0.908195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.908195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.908195,0.000000,0.000000,0.250000,0,0);}
.m866_c00001{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);}
.m615_c00001{transform:matrix(0.914263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.914263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.914263,0.000000,0.000000,0.250000,0,0);}
.m807_c00001{transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.915865,0.000000,0.000000,0.250000,0,0);}
.m646_c00001{transform:matrix(0.916912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.916912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.916912,0.000000,0.000000,0.250000,0,0);}
.m83a_c00001{transform:matrix(0.917059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.917059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.917059,0.000000,0.000000,0.250000,0,0);}
.m74c_c00001{transform:matrix(0.932819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.932819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.932819,0.000000,0.000000,0.250000,0,0);}
.m766_c00001{transform:matrix(0.936123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.936123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.936123,0.000000,0.000000,0.250000,0,0);}
.m752_c00001{transform:matrix(0.940529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.940529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.940529,0.000000,0.000000,0.250000,0,0);}
.m96d_c00001{transform:matrix(0.941630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.941630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.941630,0.000000,0.000000,0.250000,0,0);}
.m5ba_c00001{transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.944934,0.000000,0.000000,0.250000,0,0);}
.m711_c00001{transform:matrix(0.951542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.951542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.951542,0.000000,0.000000,0.250000,0,0);}
.m628_c00001{transform:matrix(0.953744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.953744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.953744,0.000000,0.000000,0.250000,0,0);}
.m86b_c00001{transform:matrix(0.955947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.955947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.955947,0.000000,0.000000,0.250000,0,0);}
.m262_c00001{transform:matrix(0.957048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.957048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.957048,0.000000,0.000000,0.250000,0,0);}
.m81d_c00001{transform:matrix(0.958824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.958824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.958824,0.000000,0.000000,0.250000,0,0);}
.m2bf_c00001{transform:matrix(0.964212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.964212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.964212,0.000000,0.000000,0.250000,0,0);}
.m7cf_c00001{transform:matrix(0.972467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.972467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.972467,0.000000,0.000000,0.250000,0,0);}
.m82b_c00001{transform:matrix(0.972794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.972794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.972794,0.000000,0.000000,0.250000,0,0);}
.m303_c00001{transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.973568,0.000000,0.000000,0.250000,0,0);}
.m616_c00001{transform:matrix(0.979075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.979075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.979075,0.000000,0.000000,0.250000,0,0);}
.m491_c00001{transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.984581,0.000000,0.000000,0.250000,0,0);}
.m59d_c00001{transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.995614,0.000000,0.000000,0.250000,0,0);}
.m24e_c00001{transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998899,0.000000,0.000000,0.250000,0,0);}
.m9c7_c00001{transform:matrix(1.004405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.004405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.004405,0.000000,0.000000,0.250000,0,0);}
.m6c3_c00001{transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.004425,0.000000,0.000000,0.250000,0,0);}
.m7f3_c00001{transform:matrix(1.011013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.011013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.011013,0.000000,0.000000,0.250000,0,0);}
.ma0b_c00001{transform:matrix(1.018722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.018722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.018722,0.000000,0.000000,0.250000,0,0);}
.m659_c00001{transform:matrix(1.019824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.019824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.019824,0.000000,0.000000,0.250000,0,0);}
.m877_c00001{transform:matrix(1.019853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.019853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.019853,0.000000,0.000000,0.250000,0,0);}
.m7b3_c00001{transform:matrix(1.026432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.026432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.026432,0.000000,0.000000,0.250000,0,0);}
.m712_c00001{transform:matrix(1.034141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.034141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.034141,0.000000,0.000000,0.250000,0,0);}
.m70c_c00001{transform:matrix(1.040749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.040749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.040749,0.000000,0.000000,0.250000,0,0);}
.m9b6_c00001{transform:matrix(1.040865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.040865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.040865,0.000000,0.000000,0.250000,0,0);}
.m7e5_c00001{transform:matrix(1.044053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.044053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.044053,0.000000,0.000000,0.250000,0,0);}
.m2fe_c00001{transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048458,0.000000,0.000000,0.250000,0,0);}
.m24b_c00001{transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.049679,0.000000,0.000000,0.250000,0,0);}
.m827_c00001{transform:matrix(1.064904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.064904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.064904,0.000000,0.000000,0.250000,0,0);}
.m79a_c00001{transform:matrix(1.066079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.066079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.066079,0.000000,0.000000,0.250000,0,0);}
.m417_c00001{transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.092511,0.000000,0.000000,0.250000,0,0);}
.m6f5_c00001{transform:matrix(1.103524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.103524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.103524,0.000000,0.000000,0.250000,0,0);}
.m6b2_c00001{transform:matrix(1.123348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.123348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.123348,0.000000,0.000000,0.250000,0,0);}
.m548_c00001{transform:matrix(1.127525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.127525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.127525,0.000000,0.000000,0.250000,0,0);}
.m88a_c00001{transform:matrix(1.165865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.165865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.165865,0.000000,0.000000,0.250000,0,0);}
.m453_c00001{transform:matrix(1.166912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.166912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.166912,0.000000,0.000000,0.250000,0,0);}
.m842_c00001{transform:matrix(1.170354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.170354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.170354,0.000000,0.000000,0.250000,0,0);}
.m17f_c00001{transform:matrix(1.190871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.190871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.190871,0.000000,0.000000,0.250000,0,0);}
.m7c8_c00001{transform:matrix(1.248899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.248899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.248899,0.000000,0.000000,0.250000,0,0);}
.m82e_c00001{transform:matrix(1.249199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.249199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.249199,0.000000,0.000000,0.250000,0,0);}
.m6e0_c00001{transform:matrix(1.271635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.271635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.271635,0.000000,0.000000,0.250000,0,0);}
.ma1a_c00001{transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.311674,0.000000,0.000000,0.250000,0,0);}
.m878_c00001{transform:matrix(1.311699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.311699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.311699,0.000000,0.000000,0.250000,0,0);}
.m653_c00001{transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.332532,0.000000,0.000000,0.250000,0,0);}
.m9da_c00001{transform:matrix(1.360577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.360577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.360577,0.000000,0.000000,0.250000,0,0);}
.m354_c00001{transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.373348,0.000000,0.000000,0.250000,0,0);}
.m35a_c00001{transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.374199,0.000000,0.000000,0.250000,0,0);}
.m7aa_c00001{transform:matrix(1.560573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560573,0.000000,0.000000,0.250000,0,0);}
.m862_c00001{transform:matrix(1.565657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.565657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.565657,0.000000,0.000000,0.250000,0,0);}
.m4fa_c00001{transform:matrix(1.741228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.741228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.741228,0.000000,0.000000,0.250000,0,0);}
.m81c_c00001{transform:matrix(1.747797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.747797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.747797,0.000000,0.000000,0.250000,0,0);}
.m578_c00001{transform:matrix(1.756637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.756637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.756637,0.000000,0.000000,0.250000,0,0);}
.m79f_c00001{transform:matrix(2.175439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.175439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.175439,0.000000,0.000000,0.250000,0,0);}
.m96e_c00001{transform:matrix(2.247797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.247797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.247797,0.000000,0.000000,0.250000,0,0);}
.m4aa_c00001{transform:matrix(2.255051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.255051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.255051,0.000000,0.000000,0.250000,0,0);}
.m7ca_c00001{transform:matrix(2.653509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.653509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.653509,0.000000,0.000000,0.250000,0,0);}
.m2f6_c00001{transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.736842,0.000000,0.000000,0.250000,0,0);}
.m6ce_c00001{transform:matrix(2.899123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.899123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.899123,0.000000,0.000000,0.250000,0,0);}
.m7f9_c00001{transform:matrix(3.134956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.134956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.134956,0.000000,0.000000,0.250000,0,0);}
.m1f9_c00001{transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.232456,0.000000,0.000000,0.250000,0,0);}
.m57d_c00001{transform:matrix(3.482456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.482456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.482456,0.000000,0.000000,0.250000,0,0);}
.m697_c00001{transform:matrix(3.763274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.763274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.763274,0.000000,0.000000,0.250000,0,0);}
.m617_c00001{transform:matrix(3.978070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.978070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.978070,0.000000,0.000000,0.250000,0,0);}
.m103_c00001{transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.350877,0.000000,0.000000,0.250000,0,0);}
.mf8_c00001{transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850877,0.000000,0.000000,0.250000,0,0);}
.v7_c00001{vertical-align:-18.000000px;}
.v9_c00001{vertical-align:-12.000000px;}
.vd_c00001{vertical-align:-8.580000px;}
.v3_c00001{vertical-align:-6.000000px;}
.v6_c00001{vertical-align:-4.320000px;}
.vb_c00001{vertical-align:-1.680000px;}
.v0_c00001{vertical-align:0.000000px;}
.v8_c00001{vertical-align:1.680000px;}
.vc_c00001{vertical-align:3.420000px;}
.v1_c00001{vertical-align:6.000000px;}
.v2_c00001{vertical-align:7.680000px;}
.va_c00001{vertical-align:9.420000px;}
.v4_c00001{vertical-align:12.000000px;}
.ve_c00001{vertical-align:16.320000px;}
.v5_c00001{vertical-align:18.000000px;}
.ls0_c00001{letter-spacing:0.000000px;}
.lsa_c00001{letter-spacing:3.657600px;}
.ls9_c00001{letter-spacing:8.817600px;}
.ls1_c00001{letter-spacing:11.817600px;}
.ls8_c00001{letter-spacing:12.657600px;}
.ls5_c00001{letter-spacing:14.817600px;}
.ls4_c00001{letter-spacing:17.817600px;}
.ls3_c00001{letter-spacing:18.591909px;}
.ls7_c00001{letter-spacing:44.030060px;}
.ls2_c00001{letter-spacing:71.004203px;}
.ls6_c00001{letter-spacing:107.409862px;}
.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;}
}
.ws11_c00001{word-spacing:-78.958283px;}
.ws7a_c00001{word-spacing:-64.878860px;}
.ws31_c00001{word-spacing:-20.589189px;}
.wsd_c00001{word-spacing:-16.889280px;}
.ws2_c00001{word-spacing:-14.892000px;}
.ws10d_c00001{word-spacing:-11.913600px;}
.ws6_c00001{word-spacing:-8.811328px;}
.ws87_c00001{word-spacing:-8.747089px;}
.ws10c_c00001{word-spacing:-8.722029px;}
.ws5d_c00001{word-spacing:-8.678629px;}
.ws6d_c00001{word-spacing:-8.551971px;}
.wsf8_c00001{word-spacing:-8.474061px;}
.ws9a_c00001{word-spacing:-8.284709px;}
.wsb2_c00001{word-spacing:-8.118000px;}
.ws54_c00001{word-spacing:-8.044355px;}
.ws8a_c00001{word-spacing:-8.008560px;}
.ws9_c00001{word-spacing:-8.008080px;}
.wsca_c00001{word-spacing:-7.986105px;}
.ws48_c00001{word-spacing:-7.977360px;}
.ws80_c00001{word-spacing:-7.954080px;}
.wsf5_c00001{word-spacing:-7.815562px;}
.ws88_c00001{word-spacing:-7.665879px;}
.ws6a_c00001{word-spacing:-7.558516px;}
.wsd9_c00001{word-spacing:-7.515000px;}
.wsbf_c00001{word-spacing:-7.508019px;}
.ws52_c00001{word-spacing:-7.485234px;}
.ws4d_c00001{word-spacing:-7.448345px;}
.ws99_c00001{word-spacing:-7.443563px;}
.ws90_c00001{word-spacing:-7.411080px;}
.wsfa_c00001{word-spacing:-7.368623px;}
.ws42_c00001{word-spacing:-7.189112px;}
.ws89_c00001{word-spacing:-7.064643px;}
.wsf7_c00001{word-spacing:-7.039850px;}
.ws44_c00001{word-spacing:-6.837240px;}
.ws6c_c00001{word-spacing:-6.732789px;}
.ws9c_c00001{word-spacing:-6.677519px;}
.wseb_c00001{word-spacing:-6.675000px;}
.ws93_c00001{word-spacing:-6.587529px;}
.wsbe_c00001{word-spacing:-6.464327px;}
.ws5b_c00001{word-spacing:-6.425697px;}
.ws38_c00001{word-spacing:-6.419372px;}
.ws8_c00001{word-spacing:-6.400641px;}
.ws60_c00001{word-spacing:-6.336053px;}
.ws6b_c00001{word-spacing:-6.184625px;}
.ws0_c00001{word-spacing:-6.129590px;}
.wsf3_c00001{word-spacing:-6.061117px;}
.ws95_c00001{word-spacing:-5.989500px;}
.ws5e_c00001{word-spacing:-5.939993px;}
.ws8b_c00001{word-spacing:-5.908830px;}
.wsbc_c00001{word-spacing:-5.907647px;}
.ws71_c00001{word-spacing:-5.903887px;}
.ws6e_c00001{word-spacing:-5.877452px;}
.wsc_c00001{word-spacing:-5.871000px;}
.wsfb_c00001{word-spacing:-5.857012px;}
.wsfd_c00001{word-spacing:-5.841494px;}
.ws109_c00001{word-spacing:-5.798400px;}
.wsee_c00001{word-spacing:-5.791781px;}
.ws9b_c00001{word-spacing:-5.775986px;}
.wsb5_c00001{word-spacing:-5.745608px;}
.ws103_c00001{word-spacing:-5.347467px;}
.ws27_c00001{word-spacing:-5.271525px;}
.ws4f_c00001{word-spacing:-5.248080px;}
.ws4c_c00001{word-spacing:-5.241692px;}
.wsf9_c00001{word-spacing:-5.236318px;}
.wsff_c00001{word-spacing:-5.147600px;}
.wse3_c00001{word-spacing:-5.058351px;}
.ws3f_c00001{word-spacing:-4.994764px;}
.ws107_c00001{word-spacing:-4.989500px;}
.wsf1_c00001{word-spacing:-4.950371px;}
.ws10a_c00001{word-spacing:-4.841387px;}
.ws2a_c00001{word-spacing:-4.814632px;}
.ws85_c00001{word-spacing:-4.714920px;}
.wsbb_c00001{word-spacing:-4.563919px;}
.wsc8_c00001{word-spacing:-4.555500px;}
.wsb_c00001{word-spacing:-4.550858px;}
.ws5_c00001{word-spacing:-4.530080px;}
.wsd3_c00001{word-spacing:-4.515000px;}
.wsec_c00001{word-spacing:-4.345915px;}
.ws3b_c00001{word-spacing:-4.343067px;}
.wsc0_c00001{word-spacing:-4.328665px;}
.wsd4_c00001{word-spacing:-4.310457px;}
.ws94_c00001{word-spacing:-4.248000px;}
.wsc4_c00001{word-spacing:-4.197072px;}
.ws2f_c00001{word-spacing:-4.188296px;}
.ws78_c00001{word-spacing:-4.173859px;}
.ws81_c00001{word-spacing:-4.149320px;}
.ws40_c00001{word-spacing:-4.115442px;}
.wsa8_c00001{word-spacing:-4.005200px;}
.wsc7_c00001{word-spacing:-3.991385px;}
.ws43_c00001{word-spacing:-3.947650px;}
.ws82_c00001{word-spacing:-3.872710px;}
.wsed_c00001{word-spacing:-3.857699px;}
.ws100_c00001{word-spacing:-3.820629px;}
.ws8e_c00001{word-spacing:-3.784800px;}
.wsac_c00001{word-spacing:-3.739500px;}
.ws2d_c00001{word-spacing:-3.727836px;}
.wsf6_c00001{word-spacing:-3.621020px;}
.ws50_c00001{word-spacing:-3.584672px;}
.wsad_c00001{word-spacing:-3.558443px;}
.ws73_c00001{word-spacing:-3.557922px;}
.ws101_c00001{word-spacing:-3.537414px;}
.wsfc_c00001{word-spacing:-3.526286px;}
.ws36_c00001{word-spacing:-3.524477px;}
.ws8d_c00001{word-spacing:-3.523277px;}
.ws102_c00001{word-spacing:-3.398789px;}
.wsa9_c00001{word-spacing:-3.340852px;}
.ws70_c00001{word-spacing:-3.321549px;}
.wsb1_c00001{word-spacing:-3.308400px;}
.ws7b_c00001{word-spacing:-3.089552px;}
.ws77_c00001{word-spacing:-3.074350px;}
.ws51_c00001{word-spacing:-2.999844px;}
.wsa6_c00001{word-spacing:-2.926546px;}
.ws5a_c00001{word-spacing:-2.871000px;}
.ws4b_c00001{word-spacing:-2.828966px;}
.wsae_c00001{word-spacing:-2.802447px;}
.wse0_c00001{word-spacing:-2.795879px;}
.ws2e_c00001{word-spacing:-2.787069px;}
.wsef_c00001{word-spacing:-2.755452px;}
.ws55_c00001{word-spacing:-2.723335px;}
.wse7_c00001{word-spacing:-2.717193px;}
.wsba_c00001{word-spacing:-2.709687px;}
.wsa4_c00001{word-spacing:-2.692218px;}
.wsaa_c00001{word-spacing:-2.568000px;}
.ws72_c00001{word-spacing:-2.556473px;}
.ws9f_c00001{word-spacing:-2.527200px;}
.ws91_c00001{word-spacing:-2.497699px;}
.wsab_c00001{word-spacing:-2.441305px;}
.ws76_c00001{word-spacing:-2.356291px;}
.wsda_c00001{word-spacing:-2.353129px;}
.ws9d_c00001{word-spacing:-2.311857px;}
.ws28_c00001{word-spacing:-2.221929px;}
.wse_c00001{word-spacing:-2.171720px;}
.ws98_c00001{word-spacing:-2.095500px;}
.ws41_c00001{word-spacing:-2.079441px;}
.ws6f_c00001{word-spacing:-2.046360px;}
.wsf2_c00001{word-spacing:-2.038645px;}
.wscf_c00001{word-spacing:-1.954278px;}
.ws2b_c00001{word-spacing:-1.906578px;}
.ws9e_c00001{word-spacing:-1.884806px;}
.wsf0_c00001{word-spacing:-1.866492px;}
.wsf4_c00001{word-spacing:-1.808209px;}
.wsa0_c00001{word-spacing:-1.777378px;}
.ws7_c00001{word-spacing:-1.760609px;}
.ws108_c00001{word-spacing:-1.616952px;}
.ws75_c00001{word-spacing:-1.611816px;}
.ws49_c00001{word-spacing:-1.557174px;}
.wsb7_c00001{word-spacing:-1.550674px;}
.ws4a_c00001{word-spacing:-1.543455px;}
.wse2_c00001{word-spacing:-1.515000px;}
.ws26_c00001{word-spacing:-1.449234px;}
.wsb6_c00001{word-spacing:-1.418154px;}
.wsfe_c00001{word-spacing:-1.319807px;}
.ws4e_c00001{word-spacing:-1.319410px;}
.ws97_c00001{word-spacing:-1.248000px;}
.wsbd_c00001{word-spacing:-1.184343px;}
.wsc1_c00001{word-spacing:-1.160963px;}
.wsce_c00001{word-spacing:-1.121077px;}
.wsa7_c00001{word-spacing:-1.038831px;}
.ws86_c00001{word-spacing:-1.023219px;}
.ws105_c00001{word-spacing:-0.998400px;}
.wse9_c00001{word-spacing:-0.925129px;}
.wsb8_c00001{word-spacing:-0.825177px;}
.ws2c_c00001{word-spacing:-0.768703px;}
.ws10b_c00001{word-spacing:-0.693798px;}
.wsd0_c00001{word-spacing:-0.686397px;}
.wsdf_c00001{word-spacing:-0.451605px;}
.wsb0_c00001{word-spacing:-0.366107px;}
.ws92_c00001{word-spacing:-0.355771px;}
.wscd_c00001{word-spacing:-0.314743px;}
.wsd6_c00001{word-spacing:-0.274006px;}
.wsea_c00001{word-spacing:-0.226610px;}
.ws83_c00001{word-spacing:-0.141089px;}
.wsa3_c00001{word-spacing:-0.055496px;}
.wsdc_c00001{word-spacing:-0.000815px;}
.ws1_c00001{word-spacing:0.000000px;}
.ws57_c00001{word-spacing:0.129000px;}
.ws29_c00001{word-spacing:0.237377px;}
.wsc6_c00001{word-spacing:0.387858px;}
.ws39_c00001{word-spacing:0.516081px;}
.ws3a_c00001{word-spacing:0.597205px;}
.wsb9_c00001{word-spacing:0.610960px;}
.ws84_c00001{word-spacing:0.653999px;}
.ws4_c00001{word-spacing:0.742460px;}
.ws58_c00001{word-spacing:0.779342px;}
.ws79_c00001{word-spacing:0.991440px;}
.wsaf_c00001{word-spacing:0.994500px;}
.wsa1_c00001{word-spacing:1.020754px;}
.wsb3_c00001{word-spacing:1.025447px;}
.ws37_c00001{word-spacing:1.025518px;}
.wse8_c00001{word-spacing:1.074290px;}
.ws47_c00001{word-spacing:1.332643px;}
.ws8c_c00001{word-spacing:1.361694px;}
.wsd1_c00001{word-spacing:1.485000px;}
.ws3_c00001{word-spacing:1.735582px;}
.wsc2_c00001{word-spacing:2.006739px;}
.wsa_c00001{word-spacing:2.262918px;}
.wsa5_c00001{word-spacing:2.352890px;}
.ws56_c00001{word-spacing:2.514149px;}
.ws69_c00001{word-spacing:2.665618px;}
.wsd5_c00001{word-spacing:2.715563px;}
.wsd7_c00001{word-spacing:2.893696px;}
.wscb_c00001{word-spacing:2.937663px;}
.ws59_c00001{word-spacing:3.368175px;}
.wsdb_c00001{word-spacing:3.461968px;}
.ws5f_c00001{word-spacing:3.689926px;}
.ws104_c00001{word-spacing:3.921140px;}
.ws8f_c00001{word-spacing:3.989270px;}
.wse5_c00001{word-spacing:4.169634px;}
.wsc9_c00001{word-spacing:4.304966px;}
.ws96_c00001{word-spacing:4.529943px;}
.ws21_c00001{word-spacing:5.082749px;}
.wsc5_c00001{word-spacing:5.174441px;}
.wsd2_c00001{word-spacing:5.431941px;}
.ws106_c00001{word-spacing:5.462651px;}
.wsa2_c00001{word-spacing:6.358971px;}
.wsb4_c00001{word-spacing:6.421065px;}
.wse4_c00001{word-spacing:6.561723px;}
.wse6_c00001{word-spacing:6.627954px;}
.wse1_c00001{word-spacing:7.485000px;}
.wsd8_c00001{word-spacing:8.148320px;}
.wsc3_c00001{word-spacing:8.342143px;}
.wsdd_c00001{word-spacing:10.050469px;}
.wsde_c00001{word-spacing:10.654500px;}
.ws5c_c00001{word-spacing:13.612215px;}
.ws16_c00001{word-spacing:15.831969px;}
.ws35_c00001{word-spacing:16.046552px;}
.ws20_c00001{word-spacing:16.074564px;}
.ws74_c00001{word-spacing:16.199709px;}
.ws19_c00001{word-spacing:16.594629px;}
.ws25_c00001{word-spacing:17.518243px;}
.ws53_c00001{word-spacing:23.181260px;}
.wscc_c00001{word-spacing:24.682024px;}
.ws24_c00001{word-spacing:32.801645px;}
.wsf_c00001{word-spacing:35.766347px;}
.ws65_c00001{word-spacing:36.899244px;}
.ws3d_c00001{word-spacing:37.246408px;}
.ws32_c00001{word-spacing:37.437075px;}
.ws1b_c00001{word-spacing:37.647282px;}
.ws1f_c00001{word-spacing:39.332958px;}
.ws1c_c00001{word-spacing:39.650224px;}
.ws34_c00001{word-spacing:40.651310px;}
.ws66_c00001{word-spacing:40.968615px;}
.ws30_c00001{word-spacing:42.369370px;}
.ws68_c00001{word-spacing:42.527343px;}
.ws1d_c00001{word-spacing:43.123678px;}
.ws64_c00001{word-spacing:45.278742px;}
.ws33_c00001{word-spacing:45.581731px;}
.ws46_c00001{word-spacing:47.957572px;}
.ws15_c00001{word-spacing:50.372388px;}
.ws1a_c00001{word-spacing:50.420501px;}
.ws7d_c00001{word-spacing:51.791710px;}
.ws7e_c00001{word-spacing:52.623628px;}
.ws3c_c00001{word-spacing:57.062880px;}
.ws3e_c00001{word-spacing:57.638400px;}
.ws18_c00001{word-spacing:59.307203px;}
.ws7c_c00001{word-spacing:59.334450px;}
.ws1e_c00001{word-spacing:60.638400px;}
.ws61_c00001{word-spacing:62.015851px;}
.ws13_c00001{word-spacing:63.050123px;}
.ws22_c00001{word-spacing:68.126897px;}
.ws23_c00001{word-spacing:69.032182px;}
.ws10_c00001{word-spacing:69.426706px;}
.ws67_c00001{word-spacing:72.265343px;}
.ws63_c00001{word-spacing:73.041656px;}
.ws62_c00001{word-spacing:78.542632px;}
.ws14_c00001{word-spacing:79.488769px;}
.ws45_c00001{word-spacing:79.892453px;}
.ws17_c00001{word-spacing:91.679451px;}
.ws12_c00001{word-spacing:96.477382px;}
.ws7f_c00001{word-spacing:96.795137px;}
._2_c00001{margin-left:-71.004203px;}
._12_c00001{margin-left:-44.030060px;}
._6_c00001{margin-left:-18.591909px;}
._14_c00001{width:2.937113px;}
._17_c00001{width:4.188555px;}
._0_c00001{width:6.248045px;}
._a_c00001{width:11.809007px;}
._16_c00001{width:13.731037px;}
._9_c00001{width:15.060603px;}
._15_c00001{width:16.202883px;}
._b_c00001{width:17.870607px;}
._7_c00001{width:19.139986px;}
._1_c00001{width:45.986650px;}
._8_c00001{width:47.604304px;}
._e_c00001{width:48.605390px;}
._10_c00001{width:50.481423px;}
._5_c00001{width:53.232822px;}
._f_c00001{width:54.233489px;}
._3_c00001{width:60.577708px;}
._13_c00001{width:67.261283px;}
._4_c00001{width:69.550358px;}
._c_c00001{width:72.544600px;}
._d_c00001{width:74.570880px;}
._11_c00001{width:83.197823px;}
.fc0_c00001{color:transparent;}
.fs7_c00001{font-size:3.420000px;}
.fs1c_c00001{font-size:6.780000px;}
.fs9_c00001{font-size:11.880000px;}
.fs8_c00001{font-size:13.620000px;}
.fs2_c00001{font-size:18.720000px;}
.fs1_c00001{font-size:20.400000px;}
.fs26_c00001{font-size:22.140000px;}
.fs4_c00001{font-size:25.500000px;}
.fs3_c00001{font-size:28.920000px;}
.fs5_c00001{font-size:32.340000px;}
.fs0_c00001{font-size:35.700000px;}
.fs6_c00001{font-size:39.120000px;}
.fs15_c00001{font-size:42.540000px;}
.fs14_c00001{font-size:45.900000px;}
.fs16_c00001{font-size:49.320000px;}
.fsc_c00001{font-size:52.740000px;}
.fs30_c00001{font-size:56.100000px;}
.fs19_c00001{font-size:61.200000px;}
.fs1a_c00001{font-size:64.620000px;}
.fsd_c00001{font-size:68.040000px;}
.fs1d_c00001{font-size:71.460000px;}
.fs17_c00001{font-size:74.820000px;}
.fs11_c00001{font-size:78.240000px;}
.fs36_c00001{font-size:81.660000px;}
.fs1e_c00001{font-size:85.020000px;}
.fs10_c00001{font-size:88.440000px;}
.fs1f_c00001{font-size:91.860000px;}
.fsa_c00001{font-size:95.220000px;}
.fs25_c00001{font-size:100.320000px;}
.fs24_c00001{font-size:102.060000px;}
.fs1b_c00001{font-size:107.160000px;}
.fs35_c00001{font-size:110.580000px;}
.fs37_c00001{font-size:113.940000px;}
.fs2a_c00001{font-size:117.360000px;}
.fs23_c00001{font-size:120.780000px;}
.fs2e_c00001{font-size:124.140000px;}
.fsb_c00001{font-size:127.560000px;}
.fs18_c00001{font-size:132.660000px;}
.fs22_c00001{font-size:134.340000px;}
.fs13_c00001{font-size:139.440000px;}
.fs20_c00001{font-size:141.180000px;}
.fsf_c00001{font-size:146.280000px;}
.fs12_c00001{font-size:149.640000px;}
.fs32_c00001{font-size:153.060000px;}
.fs33_c00001{font-size:156.480000px;}
.fs2d_c00001{font-size:159.900000px;}
.fs39_c00001{font-size:163.260000px;}
.fs2b_c00001{font-size:166.680000px;}
.fs2c_c00001{font-size:170.100000px;}
.fs29_c00001{font-size:173.460000px;}
.fs28_c00001{font-size:176.880000px;}
.fs27_c00001{font-size:181.980000px;}
.fs3b_c00001{font-size:183.660000px;}
.fs21_c00001{font-size:188.760000px;}
.fs3a_c00001{font-size:192.180000px;}
.fs3c_c00001{font-size:195.600000px;}
.fs34_c00001{font-size:199.020000px;}
.fs42_c00001{font-size:202.380000px;}
.fse_c00001{font-size:205.800000px;}
.fs2f_c00001{font-size:214.320000px;}
.fs3e_c00001{font-size:216.000000px;}
.fs43_c00001{font-size:222.780000px;}
.fs31_c00001{font-size:227.880000px;}
.fs3f_c00001{font-size:335.040000px;}
.fs3d_c00001{font-size:369.060000px;}
.fs38_c00001{font-size:391.200000px;}
.fs44_c00001{font-size:831.660000px;}
.fs41_c00001{font-size:926.940000px;}
.fs40_c00001{font-size:1644.660000px;}
.y0_c00001{bottom:0.000000px;}
.y12f2_c00001{bottom:100.470000px;}
.y12f1_c00001{bottom:101.325000px;}
.y12f3_c00001{bottom:102.195000px;}
.y12ef_c00001{bottom:102.405000px;}
.y12f0_c00001{bottom:102.630000px;}
.y12f4_c00001{bottom:103.470000px;}
.ybfe_c00001{bottom:152.745000px;}
.ybfc_c00001{bottom:153.825000px;}
.yc00_c00001{bottom:154.245000px;}
.ybfd_c00001{bottom:155.130000px;}
.ybff_c00001{bottom:157.470000px;}
.y1185_c00001{bottom:174.825000px;}
.y1184_c00001{bottom:176.325000px;}
.y1186_c00001{bottom:178.470000px;}
.y1176_c00001{bottom:180.825000px;}
.y1181_c00001{bottom:182.325000px;}
.y1177_c00001{bottom:182.970000px;}
.y116f_c00001{bottom:183.825000px;}
.y11b3_c00001{bottom:184.470000px;}
.y1170_c00001{bottom:184.905000px;}
.y117a_c00001{bottom:185.325000px;}
.y1171_c00001{bottom:185.970000px;}
.y11b2_c00001{bottom:186.405000px;}
.y11b4_c00001{bottom:186.825000px;}
.y117b_c00001{bottom:187.470000px;}
.y11b1_c00001{bottom:187.695000px;}
.y12ba_c00001{bottom:187.905000px;}
.y117f_c00001{bottom:189.825000px;}
.y1278_c00001{bottom:190.050000px;}
.y12de_c00001{bottom:190.905000px;}
.y11ab_c00001{bottom:191.325000px;}
.y120d_c00001{bottom:191.550000px;}
.y117e_c00001{bottom:191.970000px;}
.y11ae_c00001{bottom:192.405000px;}
.y1276_c00001{bottom:193.050000px;}
.y11ac_c00001{bottom:193.470000px;}
.y11ad_c00001{bottom:193.695000px;}
.y1347_c00001{bottom:193.905000px;}
.y120e_c00001{bottom:194.550000px;}
.y1348_c00001{bottom:194.970000px;}
.y1349_c00001{bottom:195.195000px;}
.y11f9_c00001{bottom:196.050000px;}
.y11f8_c00001{bottom:196.470000px;}
.y11f6_c00001{bottom:196.905000px;}
.y12a5_c00001{bottom:197.550000px;}
.y11dc_c00001{bottom:197.970000px;}
.y11fa_c00001{bottom:198.195000px;}
.y12b3_c00001{bottom:198.405000px;}
.y11f7_c00001{bottom:198.630000px;}
.y11db_c00001{bottom:198.825000px;}
.y11fb_c00001{bottom:199.050000px;}
.y11bf_c00001{bottom:199.470000px;}
.y12b4_c00001{bottom:199.695000px;}
.y12b1_c00001{bottom:199.905000px;}
.y12b2_c00001{bottom:200.130000px;}
.y11bc_c00001{bottom:200.325000px;}
.y1251_c00001{bottom:200.550000px;}
.y11c4_c00001{bottom:200.970000px;}
.y11da_c00001{bottom:201.195000px;}
.y11be_c00001{bottom:201.405000px;}
.y11c5_c00001{bottom:201.825000px;}
.y11c3_c00001{bottom:202.050000px;}
.yffd_c00001{bottom:202.470000px;}
.y11bd_c00001{bottom:202.695000px;}
.y11c2_c00001{bottom:202.905000px;}
.y11c1_c00001{bottom:203.130000px;}
.yfc1_c00001{bottom:203.325000px;}
.yfc2_c00001{bottom:203.550000px;}
.yff5_c00001{bottom:203.970000px;}
.yff9_c00001{bottom:204.195000px;}
.yff2_c00001{bottom:204.405000px;}
.yff8_c00001{bottom:204.630000px;}
.y1277_c00001{bottom:204.825000px;}
.yffb_c00001{bottom:205.050000px;}
.yfc0_c00001{bottom:205.470000px;}
.yffc_c00001{bottom:205.695000px;}
.yff4_c00001{bottom:205.905000px;}
.yff7_c00001{bottom:206.130000px;}
.y12ae_c00001{bottom:206.325000px;}
.yffa_c00001{bottom:206.550000px;}
.yff6_c00001{bottom:206.970000px;}
.yff3_c00001{bottom:207.195000px;}
.y12ad_c00001{bottom:207.405000px;}
.y11ef_c00001{bottom:207.825000px;}
.y1279_c00001{bottom:208.050000px;}
.y11ee_c00001{bottom:208.470000px;}
.y12aa_c00001{bottom:208.695000px;}
.y12a8_c00001{bottom:208.905000px;}
.y12a9_c00001{bottom:209.130000px;}
.y1174_c00001{bottom:209.325000px;}
.y11ed_c00001{bottom:209.550000px;}
.y1173_c00001{bottom:209.970000px;}
.y12e3_c00001{bottom:210.195000px;}
.y1202_c00001{bottom:210.405000px;}
.y1190_c00001{bottom:210.825000px;}
.y1201_c00001{bottom:211.050000px;}
.y11fe_c00001{bottom:211.905000px;}
.y11ff_c00001{bottom:212.130000px;}
.y1209_c00001{bottom:212.325000px;}
.y129a_c00001{bottom:212.550000px;}
.y118f_c00001{bottom:212.970000px;}
.y1200_c00001{bottom:213.195000px;}
.y120b_c00001{bottom:213.405000px;}
.y12a0_c00001{bottom:213.630000px;}
.y1229_c00001{bottom:213.825000px;}
.y122c_c00001{bottom:214.050000px;}
.y122d_c00001{bottom:214.470000px;}
.y120c_c00001{bottom:214.695000px;}
.y122b_c00001{bottom:214.905000px;}
.y11d9_c00001{bottom:215.325000px;}
.y120a_c00001{bottom:215.550000px;}
.y124f_c00001{bottom:215.970000px;}
.y122a_c00001{bottom:216.195000px;}
.y1087_c00001{bottom:216.405000px;}
.y11a4_c00001{bottom:216.825000px;}
.y1085_c00001{bottom:217.050000px;}
.y11a3_c00001{bottom:217.470000px;}
.y1250_c00001{bottom:217.695000px;}
.yfc5_c00001{bottom:217.905000px;}
.yfc3_c00001{bottom:218.325000px;}
.yfc4_c00001{bottom:218.550000px;}
.y1006_c00001{bottom:218.970000px;}
.y1084_c00001{bottom:219.195000px;}
.y1086_c00001{bottom:219.405000px;}
.y127d_c00001{bottom:219.630000px;}
.y1005_c00001{bottom:219.825000px;}
.y1004_c00001{bottom:220.050000px;}
.yfc7_c00001{bottom:220.470000px;}
.y1008_c00001{bottom:220.905000px;}
.y1205_c00001{bottom:221.325000px;}
.yfc6_c00001{bottom:221.550000px;}
.y1007_c00001{bottom:221.970000px;}
.y12d4_c00001{bottom:222.195000px;}
.y1207_c00001{bottom:222.405000px;}
.y1009_c00001{bottom:222.630000px;}
.y1248_c00001{bottom:222.825000px;}
.y124b_c00001{bottom:223.050000px;}
.y1206_c00001{bottom:223.470000px;}
.y1214_c00001{bottom:223.695000px;}
.y124a_c00001{bottom:223.905000px;}
.y3_c00001{bottom:224.130000px;}
.y1215_c00001{bottom:224.550000px;}
.yeec_c00001{bottom:224.970000px;}
.y1249_c00001{bottom:225.195000px;}
.y119a_c00001{bottom:225.825000px;}
.y124c_c00001{bottom:226.050000px;}
.y12b6_c00001{bottom:226.470000px;}
.y11ba_c00001{bottom:226.695000px;}
.y11b9_c00001{bottom:226.905000px;}
.yec5_c00001{bottom:227.130000px;}
.y11bb_c00001{bottom:227.325000px;}
.y124d_c00001{bottom:227.550000px;}
.y12d5_c00001{bottom:227.745000px;}
.yf74_c00001{bottom:227.970000px;}
.y11b8_c00001{bottom:228.195000px;}
.y644_c00001{bottom:228.405000px;}
.y7f4_c00001{bottom:228.630000px;}
.yfbb_c00001{bottom:228.825000px;}
.y129f_c00001{bottom:229.050000px;}
.yf71_c00001{bottom:229.470000px;}
.y1247_c00001{bottom:229.695000px;}
.yf9d_c00001{bottom:229.905000px;}
.y129b_c00001{bottom:230.130000px;}
.yf54_c00001{bottom:230.325000px;}
.yc9e_c00001{bottom:230.550000px;}
.y646_c00001{bottom:230.745000px;}
.yc9a_c00001{bottom:230.970000px;}
.yb80_c00001{bottom:231.180000px;}
.yc9d_c00001{bottom:231.405000px;}
.yc2d_c00001{bottom:231.630000px;}
.yb7c_c00001{bottom:231.825000px;}
.yc9b_c00001{bottom:232.050000px;}
.y645_c00001{bottom:232.470000px;}
.y12ab_c00001{bottom:232.680000px;}
.yfef_c00001{bottom:232.695000px;}
.y643_c00001{bottom:232.905000px;}
.yb81_c00001{bottom:232.920000px;}
.y570_c00001{bottom:233.130000px;}
.yb82_c00001{bottom:233.325000px;}
.yc9c_c00001{bottom:233.550000px;}
.yb7b_c00001{bottom:233.970000px;}
.yb7f_c00001{bottom:234.405000px;}
.yb7e_c00001{bottom:234.630000px;}
.yd30_c00001{bottom:234.825000px;}
.yfc8_c00001{bottom:235.050000px;}
.yb7d_c00001{bottom:235.470000px;}
.yfca_c00001{bottom:235.695000px;}
.yd31_c00001{bottom:235.905000px;}
.yad7_c00001{bottom:236.130000px;}
.y1000_c00001{bottom:236.325000px;}
.yfc9_c00001{bottom:236.550000px;}
.y12a3_c00001{bottom:236.970000px;}
.y1001_c00001{bottom:237.405000px;}
.y12a2_c00001{bottom:238.050000px;}
.y1003_c00001{bottom:238.695000px;}
.y6e7_c00001{bottom:238.905000px;}
.y1002_c00001{bottom:239.550000px;}
.y122e_c00001{bottom:240.585000px;}
.y6e5_c00001{bottom:241.245000px;}
.y92d_c00001{bottom:241.470000px;}
.y131d_c00001{bottom:241.755000px;}
.y92a_c00001{bottom:241.905000px;}
.y6e8_c00001{bottom:242.130000px;}
.y129d_c00001{bottom:242.325000px;}
.y12a1_c00001{bottom:242.550000px;}
.y92c_c00001{bottom:242.970000px;}
.y92b_c00001{bottom:243.195000px;}
.y6e6_c00001{bottom:243.405000px;}
.y7f3_c00001{bottom:243.825000px;}
.y929_c00001{bottom:244.050000px;}
.y6e9_c00001{bottom:244.470000px;}
.yf9c_c00001{bottom:244.905000px;}
.yc97_c00001{bottom:245.130000px;}
.yf53_c00001{bottom:245.325000px;}
.y129c_c00001{bottom:245.550000px;}
.y7f2_c00001{bottom:245.970000px;}
.y11d6_c00001{bottom:246.195000px;}
.y908_c00001{bottom:246.405000px;}
.y909_c00001{bottom:246.420000px;}
.y90a_c00001{bottom:246.630000px;}
.y82d_c00001{bottom:246.825000px;}
.yc99_c00001{bottom:247.050000px;}
.y832_c00001{bottom:247.470000px;}
.yc98_c00001{bottom:247.695000px;}
.y82e_c00001{bottom:247.905000px;}
.ye24_c00001{bottom:248.130000px;}
.yef6_c00001{bottom:248.325000px;}
.y830_c00001{bottom:248.550000px;}
.y218_c00001{bottom:248.745000px;}
.y54b_c00001{bottom:248.970000px;}
.y6a2_c00001{bottom:249.180000px;}
.y12c2_c00001{bottom:249.195000px;}
.y187_c00001{bottom:249.405000px;}
.yea8_c00001{bottom:249.630000px;}
.y217_c00001{bottom:249.825000px;}
.y82f_c00001{bottom:250.050000px;}
.y14a_c00001{bottom:250.245000px;}
.y9ab_c00001{bottom:250.470000px;}
.y188_c00001{bottom:250.680000px;}
.yf61_c00001{bottom:250.695000px;}
.y216_c00001{bottom:250.905000px;}
.y1c3_c00001{bottom:251.130000px;}
.y1e4_c00001{bottom:251.325000px;}
.y75d_c00001{bottom:251.550000px;}
.y14c_c00001{bottom:251.745000px;}
.y372_c00001{bottom:251.970000px;}
.yc0b_c00001{bottom:252.180000px;}
.y692_c00001{bottom:252.195000px;}
.y14b_c00001{bottom:252.405000px;}
.y1c2_c00001{bottom:252.420000px;}
.y14e_c00001{bottom:252.630000px;}
.y2af_c00001{bottom:252.825000px;}
.y9ac_c00001{bottom:253.050000px;}
.y1264_c00001{bottom:253.140000px;}
.y4ed_c00001{bottom:253.245000px;}
.y1e3_c00001{bottom:253.470000px;}
.ybfb_c00001{bottom:253.695000px;}
.y14d_c00001{bottom:253.905000px;}
.ye90_c00001{bottom:253.920000px;}
.y755_c00001{bottom:254.130000px;}
.y377_c00001{bottom:254.325000px;}
.y507_c00001{bottom:254.550000px;}
.y374_c00001{bottom:254.745000px;}
.y486_c00001{bottom:254.970000px;}
.y3c0_c00001{bottom:255.180000px;}
.y691_c00001{bottom:255.195000px;}
.y371_c00001{bottom:255.405000px;}
.y373_c00001{bottom:255.630000px;}
.y3bf_c00001{bottom:255.825000px;}
.y75e_c00001{bottom:256.050000px;}
.y3c2_c00001{bottom:256.245000px;}
.y375_c00001{bottom:256.470000px;}
.y12f5_c00001{bottom:256.755000px;}
.y376_c00001{bottom:256.905000px;}
.y51a_c00001{bottom:257.130000px;}
.y3be_c00001{bottom:257.325000px;}
.y3bd_c00001{bottom:257.970000px;}
.y693_c00001{bottom:258.195000px;}
.y3c1_c00001{bottom:258.405000px;}
.y694_c00001{bottom:258.630000px;}
.y7ef_c00001{bottom:258.825000px;}
.yc95_c00001{bottom:258.855000px;}
.y7ee_c00001{bottom:259.050000px;}
.y628_c00001{bottom:259.245000px;}
.y928_c00001{bottom:259.470000px;}
.y695_c00001{bottom:259.695000px;}
.y7ed_c00001{bottom:259.905000px;}
.yc96_c00001{bottom:260.130000px;}
.y1275_c00001{bottom:260.190000px;}
.y629_c00001{bottom:260.325000px;}
.ye22_c00001{bottom:260.355000px;}
.y7f0_c00001{bottom:260.550000px;}
.y62a_c00001{bottom:260.745000px;}
.y6e3_c00001{bottom:260.970000px;}
.ye7d_c00001{bottom:261.195000px;}
.y1280_c00001{bottom:261.360000px;}
.y627_c00001{bottom:261.405000px;}
.ye21_c00001{bottom:261.825000px;}
.y7f1_c00001{bottom:262.050000px;}
.ydba_c00001{bottom:262.275000px;}
.y6e2_c00001{bottom:262.470000px;}
.y62b_c00001{bottom:262.905000px;}
.y6e1_c00001{bottom:263.130000px;}
.yd2e_c00001{bottom:263.325000px;}
.yf21_c00001{bottom:263.355000px;}
.y831_c00001{bottom:263.550000px;}
.y907_c00001{bottom:263.745000px;}
.y82b_c00001{bottom:263.970000px;}
.yf11_c00001{bottom:264.195000px;}
.y6e4_c00001{bottom:264.405000px;}
.ye23_c00001{bottom:264.420000px;}
.yf22_c00001{bottom:264.630000px;}
.y9a7_c00001{bottom:264.825000px;}
.y82c_c00001{bottom:265.050000px;}
.y822_c00001{bottom:265.470000px;}
.yd2f_c00001{bottom:265.695000px;}
.y906_c00001{bottom:265.905000px;}
.y9aa_c00001{bottom:266.130000px;}
.y759_c00001{bottom:266.325000px;}
.y75c_c00001{bottom:266.550000px;}
.y9a6_c00001{bottom:266.970000px;}
.y9a9_c00001{bottom:267.195000px;}
.y215_c00001{bottom:267.405000px;}
.yf23_c00001{bottom:267.420000px;}
.y758_c00001{bottom:267.630000px;}
.y213_c00001{bottom:267.825000px;}
.y9a8_c00001{bottom:268.050000px;}
.yca_c00001{bottom:268.245000px;}
.y75a_c00001{bottom:268.470000px;}
.y1298_c00001{bottom:268.590000px;}
.yba3_c00001{bottom:268.680000px;}
.ybfa_c00001{bottom:268.695000px;}
.y214_c00001{bottom:268.905000px;}
.yeb6_c00001{bottom:268.920000px;}
.y6b7_c00001{bottom:269.325000px;}
.y75b_c00001{bottom:269.550000px;}
.y185_c00001{bottom:269.745000px;}
.y642_c00001{bottom:269.970000px;}
.y1e1_c00001{bottom:270.180000px;}
.y54a_c00001{bottom:270.405000px;}
.y1e2_c00001{bottom:270.630000px;}
.y1c1_c00001{bottom:270.825000px;}
.y927_c00001{bottom:271.050000px;}
.y147_c00001{bottom:271.245000px;}
.y184_c00001{bottom:271.470000px;}
.y68f_c00001{bottom:271.695000px;}
.y1159_c00001{bottom:271.800000px;}
.y144_c00001{bottom:271.905000px;}
.y1c0_c00001{bottom:271.920000px;}
.y145_c00001{bottom:272.130000px;}
.y186_c00001{bottom:272.325000px;}
.y484_c00001{bottom:272.745000px;}
.y149_c00001{bottom:272.970000px;}
.y483_c00001{bottom:273.180000px;}
.y690_c00001{bottom:273.195000px;}
.y146_c00001{bottom:273.405000px;}
.yc28_c00001{bottom:273.420000px;}
.y754_c00001{bottom:273.630000px;}
.y485_c00001{bottom:273.825000px;}
.y4eb_c00001{bottom:274.050000px;}
.y36f_c00001{bottom:274.245000px;}
.y148_c00001{bottom:274.470000px;}
.y36d_c00001{bottom:274.905000px;}
.y980_c00001{bottom:274.920000px;}
.y36e_c00001{bottom:275.130000px;}
.y4ec_c00001{bottom:275.325000px;}
.yf70_c00001{bottom:275.550000px;}
.y3ba_c00001{bottom:275.745000px;}
.y36c_c00001{bottom:275.970000px;}
.y843_c00001{bottom:276.180000px;}
.y370_c00001{bottom:276.405000px;}
.y102e_c00001{bottom:276.465000px;}
.yb87_c00001{bottom:276.630000px;}
.y519_c00001{bottom:276.825000px;}
.ye7b_c00001{bottom:277.050000px;}
.y88d_c00001{bottom:277.455000px;}
.y3bb_c00001{bottom:277.470000px;}
.y9d3_c00001{bottom:277.680000px;}
.yea7_c00001{bottom:277.695000px;}
.y3bc_c00001{bottom:277.905000px;}
.yc94_c00001{bottom:277.920000px;}
.yf10_c00001{bottom:278.130000px;}
.y9ce_c00001{bottom:278.325000px;}
.yedc_c00001{bottom:278.355000px;}
.y876_c00001{bottom:278.505000px;}
.yd9e_c00001{bottom:278.550000px;}
.y896_c00001{bottom:278.730000px;}
.y621_c00001{bottom:278.745000px;}
.y9f0_c00001{bottom:278.955000px;}
.yd2d_c00001{bottom:278.970000px;}
.y9c3_c00001{bottom:279.180000px;}
.ye7c_c00001{bottom:279.195000px;}
.ycf8_c00001{bottom:279.405000px;}
.ybf7_c00001{bottom:279.630000px;}
.y622_c00001{bottom:279.825000px;}
.y894_c00001{bottom:280.005000px;}
.y9a5_c00001{bottom:280.050000px;}
.y8ba_c00001{bottom:280.200000px;}
.y9f2_c00001{bottom:280.230000px;}
.y6dc_c00001{bottom:280.245000px;}
.y8a4_c00001{bottom:280.425000px;}
.yd68_c00001{bottom:280.470000px;}
.ybf8_c00001{bottom:280.695000px;}
.y623_c00001{bottom:280.905000px;}
.ye42_c00001{bottom:280.920000px;}
.y620_c00001{bottom:281.130000px;}
.y6dd_c00001{bottom:281.325000px;}
.y9e7_c00001{bottom:281.505000px;}
.ycf9_c00001{bottom:281.550000px;}
.y8a7_c00001{bottom:281.700000px;}
.ya17_c00001{bottom:281.730000px;}
.y6e0_c00001{bottom:281.745000px;}
.y624_c00001{bottom:281.970000px;}
.ybf9_c00001{bottom:282.195000px;}
.y626_c00001{bottom:282.405000px;}
.yeeb_c00001{bottom:282.420000px;}
.y8a1_c00001{bottom:282.555000px;}
.y6de_c00001{bottom:282.630000px;}
.y106a_c00001{bottom:282.690000px;}
.ya03_c00001{bottom:282.780000px;}
.y834_c00001{bottom:282.960000px;}
.y9fe_c00001{bottom:283.005000px;}
.y9a4_c00001{bottom:283.050000px;}
.y1146_c00001{bottom:283.185000px;}
.ya19_c00001{bottom:283.200000px;}
.y901_c00001{bottom:283.245000px;}
.y625_c00001{bottom:283.470000px;}
.y68c_c00001{bottom:283.695000px;}
.y6df_c00001{bottom:283.905000px;}
.ydb9_c00001{bottom:283.920000px;}
.y9fc_c00001{bottom:284.055000px;}
.y68b_c00001{bottom:284.130000px;}
.y900_c00001{bottom:284.325000px;}
.ycfa_c00001{bottom:284.550000px;}
.y903_c00001{bottom:284.745000px;}
.y68a_c00001{bottom:285.195000px;}
.y902_c00001{bottom:285.405000px;}
.y68d_c00001{bottom:285.630000px;}
.y905_c00001{bottom:286.470000px;}
.y68e_c00001{bottom:286.695000px;}
.y1308_c00001{bottom:286.755000px;}
.y87e_c00001{bottom:286.800000px;}
.y904_c00001{bottom:286.905000px;}
.y10b4_c00001{bottom:287.025000px;}
.y924_c00001{bottom:287.130000px;}
.y9eb_c00001{bottom:287.460000px;}
.y926_c00001{bottom:287.550000px;}
.y549_c00001{bottom:287.745000px;}
.y2ae_c00001{bottom:287.970000px;}
.yc5_c00001{bottom:288.180000px;}
.y140_c00001{bottom:288.405000px;}
.y925_c00001{bottom:288.630000px;}
.y742_c00001{bottom:288.825000px;}
.y7ec_c00001{bottom:289.050000px;}
.yc7_c00001{bottom:289.245000px;}
.ye20_c00001{bottom:289.470000px;}
.y1bf_c00001{bottom:289.680000px;}
.y689_c00001{bottom:289.695000px;}
.y6f5_c00001{bottom:289.905000px;}
.y1109_c00001{bottom:290.055000px;}
.y6ee_c00001{bottom:290.130000px;}
.yc9_c00001{bottom:290.325000px;}
.yf0f_c00001{bottom:290.550000px;}
.y141_c00001{bottom:290.745000px;}
.ya9d_c00001{bottom:290.955000px;}
.y212_c00001{bottom:290.970000px;}
.y6f7_c00001{bottom:291.180000px;}
.y973_c00001{bottom:291.195000px;}
.yc6_c00001{bottom:291.405000px;}
.y142_c00001{bottom:291.630000px;}
.y143_c00001{bottom:291.825000px;}
.yc1f_c00001{bottom:291.855000px;}
.yc93_c00001{bottom:292.050000px;}
.yaa3_c00001{bottom:292.230000px;}
.y36a_c00001{bottom:292.245000px;}
.yf20_c00001{bottom:292.275000px;}
.y13f_c00001{bottom:292.470000px;}
.yf52_c00001{bottom:292.695000px;}
.yc8_c00001{bottom:292.905000px;}
.y6b6_c00001{bottom:292.920000px;}
.y6f6_c00001{bottom:293.130000px;}
.y97f_c00001{bottom:293.325000px;}
.ya8b_c00001{bottom:293.505000px;}
.ybf5_c00001{bottom:293.550000px;}
.yad4_c00001{bottom:293.700000px;}
.y367_c00001{bottom:293.745000px;}
.y183_c00001{bottom:293.970000px;}
.y10cc_c00001{bottom:294.105000px;}
.ybf4_c00001{bottom:294.195000px;}
.y481_c00001{bottom:294.405000px;}
.y36b_c00001{bottom:294.630000px;}
.yacd_c00001{bottom:294.780000px;}
.y482_c00001{bottom:294.825000px;}
.yc20_c00001{bottom:295.050000px;}
.yab4_c00001{bottom:295.200000px;}
.y3b8_c00001{bottom:295.245000px;}
.y4ea_c00001{bottom:295.470000px;}
.y1138_c00001{bottom:295.590000px;}
.ybf6_c00001{bottom:295.695000px;}
.y368_c00001{bottom:295.905000px;}
.yaae_c00001{bottom:296.055000px;}
.y518_c00001{bottom:296.130000px;}
.y3b9_c00001{bottom:296.325000px;}
.y9a1_c00001{bottom:296.550000px;}
.y1281_c00001{bottom:296.730000px;}
.y369_c00001{bottom:296.970000px;}
.y9a3_c00001{bottom:297.195000px;}
.y3b7_c00001{bottom:297.405000px;}
.ycf7_c00001{bottom:297.420000px;}
.y972_c00001{bottom:297.630000px;}
.y1093_c00001{bottom:297.690000px;}
.yfac_c00001{bottom:297.825000px;}
.y9a2_c00001{bottom:298.050000px;}
.y61d_c00001{bottom:298.245000px;}
.y687_c00001{bottom:298.275000px;}
.ye8d_c00001{bottom:298.470000px;}
.y685_c00001{bottom:298.695000px;}
.y6db_c00001{bottom:298.905000px;}
.ye8f_c00001{bottom:298.920000px;}
.y686_c00001{bottom:299.130000px;}
.y85d_c00001{bottom:299.325000px;}
.yaaa_c00001{bottom:299.460000px;}
.ye8e_c00001{bottom:299.550000px;}
.y61f_c00001{bottom:299.745000px;}
.y971_c00001{bottom:299.775000px;}
.y688_c00001{bottom:300.195000px;}
.ya8f_c00001{bottom:300.300000px;}
.y61c_c00001{bottom:300.630000px;}
.y10e7_c00001{bottom:300.705000px;}
.y9d4_c00001{bottom:300.825000px;}
.y122f_c00001{bottom:300.960000px;}
.y868_c00001{bottom:301.035000px;}
.y61e_c00001{bottom:301.470000px;}
.y61b_c00001{bottom:301.905000px;}
.y109f_c00001{bottom:302.250000px;}
.y9dc_c00001{bottom:302.535000px;}
.y9c4_c00001{bottom:302.730000px;}
.y8fe_c00001{bottom:302.745000px;}
.y6d9_c00001{bottom:302.970000px;}
.y844_c00001{bottom:303.150000px;}
.y6da_c00001{bottom:303.405000px;}
.y8fd_c00001{bottom:303.825000px;}
.y7ea_c00001{bottom:304.050000px;}
.yc92_c00001{bottom:304.470000px;}
.y7eb_c00001{bottom:304.905000px;}
.y8ff_c00001{bottom:305.130000px;}
.ye1e_c00001{bottom:305.325000px;}
.y8a8_c00001{bottom:305.550000px;}
.y10fe_c00001{bottom:305.865000px;}
.y8fc_c00001{bottom:305.970000px;}
.y8a9_c00001{bottom:306.330000px;}
.y8fa_c00001{bottom:306.405000px;}
.y8fb_c00001{bottom:306.420000px;}
.y897_c00001{bottom:306.630000px;}
.ye1f_c00001{bottom:306.825000px;}
.yea5_c00001{bottom:306.855000px;}
.y9f3_c00001{bottom:307.050000px;}
.y88e_c00001{bottom:307.230000px;}
.yd2c_c00001{bottom:307.470000px;}
.yf51_c00001{bottom:307.695000px;}
.y113b_c00001{bottom:307.800000px;}
.yc3_c00001{bottom:307.905000px;}
.ya04_c00001{bottom:308.130000px;}
.y1038_c00001{bottom:308.250000px;}
.yd67_c00001{bottom:308.325000px;}
.y1014_c00001{bottom:308.355000px;}
.yea6_c00001{bottom:308.550000px;}
.yc2_c00001{bottom:308.745000px;}
.ya06_c00001{bottom:308.910000px;}
.y13d_c00001{bottom:308.970000px;}
.y6ae_c00001{bottom:309.180000px;}
.ybf3_c00001{bottom:309.195000px;}
.y6f4_c00001{bottom:309.405000px;}
.y1122_c00001{bottom:309.555000px;}
.y741_c00001{bottom:309.630000px;}
.y17f_c00001{bottom:309.825000px;}
.y56d_c00001{bottom:310.050000px;}
.yc4_c00001{bottom:310.245000px;}
.yc27_c00001{bottom:310.470000px;}
.yedb_c00001{bottom:310.695000px;}
.y13b_c00001{bottom:310.905000px;}
.y181_c00001{bottom:311.130000px;}
.y182_c00001{bottom:311.325000px;}
.yc26_c00001{bottom:311.550000px;}
.y55a_c00001{bottom:311.745000px;}
.y180_c00001{bottom:311.970000px;}
.yc0e_c00001{bottom:312.180000px;}
.y683_c00001{bottom:312.195000px;}
.y13c_c00001{bottom:312.405000px;}
.y1be_c00001{bottom:312.420000px;}
.y682_c00001{bottom:312.630000px;}
.y4e9_c00001{bottom:312.825000px;}
.y1077_c00001{bottom:312.915000px;}
.y9a0_c00001{bottom:313.050000px;}
.y365_c00001{bottom:313.245000px;}
.y13e_c00001{bottom:313.470000px;}
.y684_c00001{bottom:313.695000px;}
.y10db_c00001{bottom:313.800000px;}
.y1e0_c00001{bottom:313.905000px;}
.y480_c00001{bottom:314.130000px;}
.y781_c00001{bottom:314.325000px;}
.ya7f_c00001{bottom:314.535000px;}
.y3b4_c00001{bottom:314.745000px;}
.y96f_c00001{bottom:314.775000px;}
.y877_c00001{bottom:314.955000px;}
.y4e8_c00001{bottom:314.970000px;}
.y970_c00001{bottom:315.195000px;}
.y1118_c00001{bottom:315.300000px;}
.y131e_c00001{bottom:315.330000px;}
.y364_c00001{bottom:315.405000px;}
.y47f_c00001{bottom:315.420000px;}
.y366_c00001{bottom:315.630000px;}
.y3b6_c00001{bottom:315.825000px;}
.ya4b_c00001{bottom:315.960000px;}
.y895_c00001{bottom:316.230000px;}
.y9e8_c00001{bottom:316.455000px;}
.y506_c00001{bottom:316.470000px;}
.y3b3_c00001{bottom:316.905000px;}
.y3b5_c00001{bottom:317.130000px;}
.y1050_c00001{bottom:317.205000px;}
.yc8f_c00001{bottom:317.355000px;}
.y9f1_c00001{bottom:317.730000px;}
.y7e6_c00001{bottom:317.970000px;}
.y7e4_c00001{bottom:318.405000px;}
.y7e9_c00001{bottom:318.825000px;}
.y7e5_c00001{bottom:319.050000px;}
.y1151_c00001{bottom:319.185000px;}
.y617_c00001{bottom:319.245000px;}
.ye1d_c00001{bottom:319.470000px;}
.y85e_c00001{bottom:319.680000px;}
.yaba_c00001{bottom:319.830000px;}
.y7e7_c00001{bottom:319.905000px;}
.y618_c00001{bottom:320.130000px;}
.y1044_c00001{bottom:320.250000px;}
.y619_c00001{bottom:320.325000px;}
.yf44_c00001{bottom:320.355000px;}
.yc90_c00001{bottom:320.550000px;}
.y8c4_c00001{bottom:320.730000px;}
.y6d5_c00001{bottom:320.745000px;}
.y7e8_c00001{bottom:320.970000px;}
.ybf1_c00001{bottom:321.195000px;}
.y616_c00001{bottom:321.405000px;}
.y6d7_c00001{bottom:321.630000px;}
.yf78_c00001{bottom:321.825000px;}
.y105c_c00001{bottom:321.960000px;}
.y115a_c00001{bottom:322.035000px;}
.yc91_c00001{bottom:322.050000px;}
.y8bb_c00001{bottom:322.230000px;}
.y61a_c00001{bottom:322.470000px;}
.ybf0_c00001{bottom:322.695000px;}
.y6d8_c00001{bottom:322.905000px;}
.y6d6_c00001{bottom:322.920000px;}
.ycf5_c00001{bottom:323.325000px;}
.y99a_c00001{bottom:323.550000px;}
.ya14_c00001{bottom:323.730000px;}
.ycf6_c00001{bottom:323.970000px;}
.ybf2_c00001{bottom:324.195000px;}
.y8f9_c00001{bottom:324.405000px;}
.yef5_c00001{bottom:324.630000px;}
.y99f_c00001{bottom:324.825000px;}
.ye8a_c00001{bottom:324.855000px;}
.y99b_c00001{bottom:325.050000px;}
.y898_c00001{bottom:325.230000px;}
.y8f8_c00001{bottom:325.470000px;}
.yd65_c00001{bottom:325.695000px;}
.yd8c_c00001{bottom:325.905000px;}
.yd66_c00001{bottom:325.920000px;}
.y67f_c00001{bottom:326.130000px;}
.ydd6_c00001{bottom:326.325000px;}
.y8a2_c00001{bottom:326.505000px;}
.y99c_c00001{bottom:326.550000px;}
.y9f4_c00001{bottom:326.730000px;}
.y9fd_c00001{bottom:326.925000px;}
.y99d_c00001{bottom:326.970000px;}
.y67e_c00001{bottom:327.195000px;}
.y1282_c00001{bottom:327.375000px;}
.y17b_c00001{bottom:327.405000px;}
.yf1f_c00001{bottom:327.420000px;}
.y869_c00001{bottom:327.600000px;}
.y680_c00001{bottom:327.630000px;}
.y8bf_c00001{bottom:327.780000px;}
.ya05_c00001{bottom:328.005000px;}
.y99e_c00001{bottom:328.050000px;}
.ya18_c00001{bottom:328.200000px;}
.yc0_c00001{bottom:328.245000px;}
.ya8c_c00001{bottom:328.455000px;}
.ye8c_c00001{bottom:328.470000px;}
.y9dd_c00001{bottom:328.680000px;}
.y681_c00001{bottom:328.695000px;}
.y56c_c00001{bottom:328.905000px;}
.y10aa_c00001{bottom:328.980000px;}
.y1df_c00001{bottom:329.325000px;}
.y1022_c00001{bottom:329.460000px;}
.ye8b_c00001{bottom:329.550000px;}
.yaa0_c00001{bottom:329.730000px;}
.yc1_c00001{bottom:329.745000px;}
.ya1d_c00001{bottom:329.970000px;}
.ybe_c00001{bottom:330.405000px;}
.ybf_c00001{bottom:330.630000px;}
.y13a_c00001{bottom:330.825000px;}
.yfab_c00001{bottom:331.050000px;}
.y35f_c00001{bottom:331.245000px;}
.ybd_c00001{bottom:331.470000px;}
.ya73_c00001{bottom:331.680000px;}
.y139_c00001{bottom:331.905000px;}
.y56b_c00001{bottom:331.920000px;}
.y17e_c00001{bottom:332.130000px;}
.y1ba_c00001{bottom:332.325000px;}
.y1bc_c00001{bottom:332.550000px;}
.y360_c00001{bottom:332.745000px;}
.y835_c00001{bottom:332.955000px;}
.y17d_c00001{bottom:332.970000px;}
.y47d_c00001{bottom:333.180000px;}
.y1088_c00001{bottom:333.255000px;}
.y17c_c00001{bottom:333.405000px;}
.y8a5_c00001{bottom:333.555000px;}
.y1bd_c00001{bottom:333.630000px;}
.y47c_c00001{bottom:333.825000px;}
.y7e2_c00001{bottom:334.050000px;}
.yace_c00001{bottom:334.230000px;}
.y363_c00001{bottom:334.245000px;}
.y211_c00001{bottom:334.470000px;}
.y10f2_c00001{bottom:334.830000px;}
.y361_c00001{bottom:334.905000px;}
.y505_c00001{bottom:334.920000px;}
.y9ff_c00001{bottom:335.055000px;}
.y3b1_c00001{bottom:335.130000px;}
.yb86_c00001{bottom:335.325000px;}
.ye77_c00001{bottom:335.355000px;}
.y1bb_c00001{bottom:335.550000px;}
.y47e_c00001{bottom:335.970000px;}
.y7e3_c00001{bottom:336.195000px;}
.y362_c00001{bottom:336.405000px;}
.yc8e_c00001{bottom:336.420000px;}
.y3b2_c00001{bottom:336.630000px;}
.y121c_c00001{bottom:336.750000px;}
.y10b5_c00001{bottom:336.780000px;}
.ye7a_c00001{bottom:336.825000px;}
.yea4_c00001{bottom:336.855000px;}
.yc8d_c00001{bottom:337.050000px;}
.yd64_c00001{bottom:337.470000px;}
.ybef_c00001{bottom:337.695000px;}
.ye41_c00001{bottom:337.905000px;}
.ycf1_c00001{bottom:338.325000px;}
.y110a_c00001{bottom:338.460000px;}
.ydb8_c00001{bottom:338.550000px;}
.yaa4_c00001{bottom:338.730000px;}
.y611_c00001{bottom:338.745000px;}
.yaaf_c00001{bottom:338.925000px;}
.ye78_c00001{bottom:338.970000px;}
.yfaf_c00001{bottom:339.195000px;}
.y999_c00001{bottom:339.405000px;}
.ye79_c00001{bottom:339.420000px;}
.y615_c00001{bottom:339.630000px;}
.y614_c00001{bottom:339.825000px;}
.y12f6_c00001{bottom:339.915000px;}
.yab7_c00001{bottom:340.005000px;}
.ye89_c00001{bottom:340.050000px;}
.yad0_c00001{bottom:340.200000px;}
.y87f_c00001{bottom:340.230000px;}
.yb5a_c00001{bottom:340.245000px;}
.yd2b_c00001{bottom:340.470000px;}
.y67b_c00001{bottom:340.695000px;}
.y1258_c00001{bottom:340.800000px;}
.y612_c00001{bottom:340.905000px;}
.yeda_c00001{bottom:340.920000px;}
.ya80_c00001{bottom:341.100000px;}
.y67c_c00001{bottom:341.130000px;}
.ycf2_c00001{bottom:341.550000px;}
.y613_c00001{bottom:341.970000px;}
.y67d_c00001{bottom:342.195000px;}
.yb5b_c00001{bottom:342.405000px;}
.ycf4_c00001{bottom:342.420000px;}
.ycf3_c00001{bottom:343.050000px;}
.y8f5_c00001{bottom:343.245000px;}
.y1147_c00001{bottom:343.755000px;}
.y8f7_c00001{bottom:343.905000px;}
.y8f3_c00001{bottom:344.130000px;}
.y8f6_c00001{bottom:344.325000px;}
.yfa9_c00001{bottom:344.970000px;}
.y8f2_c00001{bottom:345.405000px;}
.y8f4_c00001{bottom:345.420000px;}
.yab2_c00001{bottom:345.975000px;}
.y8bc_c00001{bottom:346.275000px;}
.yfaa_c00001{bottom:346.470000px;}
.y1265_c00001{bottom:346.590000px;}
.y89d_c00001{bottom:346.800000px;}
.y640_c00001{bottom:346.905000px;}
.yfba_c00001{bottom:347.325000px;}
.y8aa_c00001{bottom:347.355000px;}
.yfa5_c00001{bottom:347.550000px;}
.ybc_c00001{bottom:347.745000px;}
.y10c1_c00001{bottom:347.865000px;}
.y641_c00001{bottom:347.970000px;}
.y10cd_c00001{bottom:348.105000px;}
.y56a_c00001{bottom:348.180000px;}
.ybee_c00001{bottom:348.195000px;}
.y9f8_c00001{bottom:348.300000px;}
.y6a1_c00001{bottom:348.405000px;}
.ybed_c00001{bottom:348.630000px;}
.y1dd_c00001{bottom:348.825000px;}
.ya07_c00001{bottom:348.855000px;}
.y115b_c00001{bottom:349.035000px;}
.y1dc_c00001{bottom:349.050000px;}
.y136_c00001{bottom:349.245000px;}
.ya48_c00001{bottom:349.470000px;}
.y6f3_c00001{bottom:349.680000px;}
.y6b5_c00001{bottom:349.695000px;}
.y1285_c00001{bottom:349.800000px;}
.yb9_c00001{bottom:349.905000px;}
.yba_c00001{bottom:350.130000px;}
.y179_c00001{bottom:350.325000px;}
.ye76_c00001{bottom:350.550000px;}
.y17a_c00001{bottom:350.745000px;}
.ybb_c00001{bottom:350.970000px;}
.y9de_c00001{bottom:351.180000px;}
.y7e1_c00001{bottom:351.195000px;}
.y137_c00001{bottom:351.405000px;}
.y2ad_c00001{bottom:351.420000px;}
.y138_c00001{bottom:351.630000px;}
.y20b_c00001{bottom:351.825000px;}
.yed9_c00001{bottom:351.855000px;}
.y20c_c00001{bottom:352.050000px;}
.y10a0_c00001{bottom:352.185000px;}
.y35a_c00001{bottom:352.245000px;}
.ydb6_c00001{bottom:352.275000px;}
.ya1a_c00001{bottom:352.455000px;}
.y20e_c00001{bottom:352.470000px;}
.y3af_c00001{bottom:352.680000px;}
.y1de_c00001{bottom:352.905000px;}
.ye1c_c00001{bottom:352.920000px;}
.y47a_c00001{bottom:353.130000px;}
.y20f_c00001{bottom:353.325000px;}
.ycf0_c00001{bottom:353.550000px;}
.ya90_c00001{bottom:353.730000px;}
.y35c_c00001{bottom:353.745000px;}
.y35e_c00001{bottom:353.970000px;}
.y67a_c00001{bottom:354.195000px;}
.y359_c00001{bottom:354.405000px;}
.y47b_c00001{bottom:354.420000px;}
.y210_c00001{bottom:354.630000px;}
.y1230_c00001{bottom:354.780000px;}
.y35d_c00001{bottom:354.825000px;}
.y20d_c00001{bottom:355.050000px;}
.y1b9_c00001{bottom:355.245000px;}
.y8ab_c00001{bottom:355.275000px;}
.y1123_c00001{bottom:355.410000px;}
.y516_c00001{bottom:355.470000px;}
.y96e_c00001{bottom:355.695000px;}
.y106b_c00001{bottom:355.830000px;}
.y35b_c00001{bottom:355.905000px;}
.yef4_c00001{bottom:355.920000px;}
.y3b0_c00001{bottom:356.130000px;}
.y1b7_c00001{bottom:356.325000px;}
.y8bd_c00001{bottom:356.550000px;}
.y1b8_c00001{bottom:356.745000px;}
.ya08_c00001{bottom:356.775000px;}
.y1039_c00001{bottom:356.910000px;}
.y517_c00001{bottom:356.970000px;}
.ydd5_c00001{bottom:357.195000px;}
.yf83_c00001{bottom:357.405000px;}
.ydb7_c00001{bottom:357.420000px;}
.y998_c00001{bottom:358.050000px;}
.y60e_c00001{bottom:358.245000px;}
.y60f_c00001{bottom:358.470000px;}
.y60d_c00001{bottom:359.130000px;}
.yf82_c00001{bottom:359.550000px;}
.yb58_c00001{bottom:359.745000px;}
.yacf_c00001{bottom:359.775000px;}
.y6d3_c00001{bottom:359.970000px;}
.yaab_c00001{bottom:360.300000px;}
.y60c_c00001{bottom:360.405000px;}
.yb59_c00001{bottom:360.630000px;}
.y8f1_c00001{bottom:360.825000px;}
.yabb_c00001{bottom:360.855000px;}
.y102f_c00001{bottom:360.915000px;}
.y6cd_c00001{bottom:361.050000px;}
.yc8c_c00001{bottom:361.275000px;}
.y610_c00001{bottom:361.470000px;}
.y6d1_c00001{bottom:361.905000px;}
.y6d2_c00001{bottom:362.130000px;}
.y6d4_c00001{bottom:362.325000px;}
.yfa4_c00001{bottom:362.550000px;}
.y8ee_c00001{bottom:362.745000px;}
.ye19_c00001{bottom:362.775000px;}
.y6ce_c00001{bottom:362.970000px;}
.y836_c00001{bottom:363.150000px;}
.y6d0_c00001{bottom:363.195000px;}
.y7dd_c00001{bottom:363.405000px;}
.ybea_c00001{bottom:363.630000px;}
.y1139_c00001{bottom:363.705000px;}
.y7df_c00001{bottom:363.825000px;}
.y6cf_c00001{bottom:364.050000px;}
.y8c5_c00001{bottom:364.275000px;}
.ye1a_c00001{bottom:364.470000px;}
.ya81_c00001{bottom:364.680000px;}
.ybeb_c00001{bottom:364.695000px;}
.y7e0_c00001{bottom:364.905000px;}
.yacb_c00001{bottom:364.920000px;}
.y8f0_c00001{bottom:365.325000px;}
.y8b9_c00001{bottom:365.355000px;}
.y8ac_c00001{bottom:365.550000px;}
.y113c_c00001{bottom:365.685000px;}
.ye3f_c00001{bottom:365.775000px;}
.ya4c_c00001{bottom:365.955000px;}
.y7de_c00001{bottom:365.970000px;}
.ybec_c00001{bottom:366.195000px;}
.ye1b_c00001{bottom:366.405000px;}
.y8ef_c00001{bottom:366.420000px;}
.y679_c00001{bottom:366.630000px;}
.ye40_c00001{bottom:366.825000px;}
.y675_c00001{bottom:367.050000px;}
.yb7_c00001{bottom:367.245000px;}
.y131f_c00001{bottom:367.410000px;}
.yb8_c00001{bottom:367.470000px;}
.y678_c00001{bottom:367.695000px;}
.y6a0_c00001{bottom:367.905000px;}
.y677_c00001{bottom:368.130000px;}
.y1da_c00001{bottom:368.325000px;}
.y10ff_c00001{bottom:368.475000px;}
.y6b4_c00001{bottom:368.550000px;}
.y130_c00001{bottom:368.745000px;}
.yabc_c00001{bottom:368.775000px;}
.y1309_c00001{bottom:368.835000px;}
.y178_c00001{bottom:368.970000px;}
.y10e8_c00001{bottom:369.105000px;}
.y63e_c00001{bottom:369.180000px;}
.y676_c00001{bottom:369.195000px;}
.yb6_c00001{bottom:369.405000px;}
.ye75_c00001{bottom:369.420000px;}
.y1db_c00001{bottom:369.630000px;}
.y10dc_c00001{bottom:369.750000px;}
.y135_c00001{bottom:369.825000px;}
.y997_c00001{bottom:370.050000px;}
.y1045_c00001{bottom:370.185000px;}
.y4e7_c00001{bottom:370.245000px;}
.y1094_c00001{bottom:370.410000px;}
.y880_c00001{bottom:370.455000px;}
.y6ad_c00001{bottom:370.470000px;}
.y995_c00001{bottom:370.695000px;}
.y132_c00001{bottom:370.905000px;}
.y569_c00001{bottom:370.920000px;}
.y133_c00001{bottom:371.130000px;}
.y63f_c00001{bottom:371.325000px;}
.y559_c00001{bottom:371.550000px;}
.y358_c00001{bottom:371.745000px;}
.y131_c00001{bottom:371.970000px;}
.y996_c00001{bottom:372.195000px;}
.y134_c00001{bottom:372.405000px;}
.ya47_c00001{bottom:372.420000px;}
.y4e6_c00001{bottom:372.630000px;}
.y514_c00001{bottom:372.825000px;}
.yeb5_c00001{bottom:372.855000px;}
.y1152_c00001{bottom:372.960000px;}
.yec4_c00001{bottom:373.050000px;}
.y356_c00001{bottom:373.245000px;}
.y515_c00001{bottom:373.470000px;}
.y355_c00001{bottom:373.905000px;}
.y76a_c00001{bottom:374.130000px;}
.y3ae_c00001{bottom:374.325000px;}
.y1283_c00001{bottom:374.910000px;}
.y2ab_c00001{bottom:374.970000px;}
.y357_c00001{bottom:375.405000px;}
.y6cb_c00001{bottom:375.825000px;}
.y20a_c00001{bottom:376.245000px;}
.y6c8_c00001{bottom:376.470000px;}
.y2aa_c00001{bottom:376.905000px;}
.y6cc_c00001{bottom:377.130000px;}
.y10b6_c00001{bottom:377.280000px;}
.y208_c00001{bottom:377.325000px;}
.y7da_c00001{bottom:377.550000px;}
.y60b_c00001{bottom:377.745000px;}
.yacc_c00001{bottom:377.775000px;}
.y2ac_c00001{bottom:377.970000px;}
.ybe8_c00001{bottom:378.195000px;}
.y1330_c00001{bottom:378.285000px;}
.y209_c00001{bottom:378.405000px;}
.y608_c00001{bottom:378.630000px;}
.y607_c00001{bottom:378.825000px;}
.ye15_c00001{bottom:378.855000px;}
.y6ca_c00001{bottom:379.050000px;}
.y6c9_c00001{bottom:379.470000px;}
.ybe9_c00001{bottom:379.695000px;}
.y609_c00001{bottom:379.905000px;}
.y7db_c00001{bottom:380.130000px;}
.ye17_c00001{bottom:380.325000px;}
.y105d_c00001{bottom:380.460000px;}
.y7dc_c00001{bottom:380.550000px;}
.y60a_c00001{bottom:380.970000px;}
.yb56_c00001{bottom:381.405000px;}
.y674_c00001{bottom:381.630000px;}
.yed8_c00001{bottom:381.825000px;}
.yea2_c00001{bottom:381.855000px;}
.y1078_c00001{bottom:381.975000px;}
.ye16_c00001{bottom:382.050000px;}
.y8eb_c00001{bottom:382.245000px;}
.y991_c00001{bottom:382.470000px;}
.y673_c00001{bottom:382.695000px;}
.y1119_c00001{bottom:382.755000px;}
.y10f3_c00001{bottom:382.830000px;}
.yb57_c00001{bottom:382.905000px;}
.ye18_c00001{bottom:382.920000px;}
.yed7_c00001{bottom:383.130000px;}
.ycef_c00001{bottom:383.325000px;}
.yf47_c00001{bottom:383.355000px;}
.y992_c00001{bottom:383.550000px;}
.ya91_c00001{bottom:383.955000px;}
.ye3d_c00001{bottom:383.970000px;}
.ye3e_c00001{bottom:384.195000px;}
.y8ea_c00001{bottom:384.405000px;}
.yf43_c00001{bottom:384.420000px;}
.y8ec_c00001{bottom:384.630000px;}
.y115c_c00001{bottom:384.705000px;}
.yec3_c00001{bottom:384.825000px;}
.yea3_c00001{bottom:385.050000px;}
.y8ed_c00001{bottom:385.470000px;}
.y110b_c00001{bottom:385.680000px;}
.y994_c00001{bottom:385.695000px;}
.yb2_c00001{bottom:385.905000px;}
.yd8b_c00001{bottom:385.920000px;}
.yeb4_c00001{bottom:386.130000px;}
.y1051_c00001{bottom:386.460000px;}
.y993_c00001{bottom:386.550000px;}
.yeb3_c00001{bottom:386.970000px;}
.y6ac_c00001{bottom:387.405000px;}
.ye88_c00001{bottom:387.420000px;}
.y72c_c00001{bottom:387.825000px;}
.y1023_c00001{bottom:387.930000px;}
.ydd4_c00001{bottom:388.050000px;}
.y1015_c00001{bottom:388.230000px;}
.yb4_c00001{bottom:388.245000px;}
.yba8_c00001{bottom:388.905000px;}
.y121d_c00001{bottom:389.025000px;}
.yb5_c00001{bottom:389.130000px;}
.y63d_c00001{bottom:389.325000px;}
.y2a9_c00001{bottom:389.550000px;}
.y12f_c00001{bottom:389.745000px;}
.yb3_c00001{bottom:389.970000px;}
.y97e_c00001{bottom:390.180000px;}
.yb1_c00001{bottom:390.405000px;}
.y923_c00001{bottom:390.420000px;}
.y12d_c00001{bottom:390.630000px;}
.y479_c00001{bottom:390.825000px;}
.y2a5_c00001{bottom:391.050000px;}
.y478_c00001{bottom:391.245000px;}
.yc89_c00001{bottom:391.275000px;}
.y177_c00001{bottom:391.470000px;}
.y351_c00001{bottom:391.680000px;}
.ybe7_c00001{bottom:391.695000px;}
.y12e_c00001{bottom:391.905000px;}
.y2a7_c00001{bottom:392.130000px;}
.y350_c00001{bottom:392.325000px;}
.y2a8_c00001{bottom:392.550000px;}
.y3ac_c00001{bottom:392.745000px;}
.y2a6_c00001{bottom:392.970000px;}
.y6c6_c00001{bottom:393.195000px;}
.y34e_c00001{bottom:393.405000px;}
.yc0d_c00001{bottom:393.420000px;}
.y352_c00001{bottom:393.630000px;}
.y3ad_c00001{bottom:393.825000px;}
.y6c7_c00001{bottom:394.050000px;}
.y353_c00001{bottom:394.470000px;}
.ya4d_c00001{bottom:394.650000px;}
.y96d_c00001{bottom:394.695000px;}
.y354_c00001{bottom:394.905000px;}
.y34f_c00001{bottom:394.920000px;}
.y66e_c00001{bottom:395.130000px;}
.y10ce_c00001{bottom:395.280000px;}
.ye72_c00001{bottom:395.325000px;}
.yc8a_c00001{bottom:395.550000px;}
.y670_c00001{bottom:395.775000px;}
.y513_c00001{bottom:395.970000px;}
.y1259_c00001{bottom:396.150000px;}
.y66f_c00001{bottom:396.195000px;}
.ye74_c00001{bottom:396.405000px;}
.yc8b_c00001{bottom:396.420000px;}
.y671_c00001{bottom:396.630000px;}
.y1231_c00001{bottom:396.780000px;}
.ye3b_c00001{bottom:396.825000px;}
.yd29_c00001{bottom:396.855000px;}
.y98c_c00001{bottom:397.050000px;}
.y605_c00001{bottom:397.245000px;}
.yd2a_c00001{bottom:397.470000px;}
.y672_c00001{bottom:397.695000px;}
.ycee_c00001{bottom:397.905000px;}
.ye73_c00001{bottom:397.920000px;}
.y606_c00001{bottom:398.130000px;}
.y10ab_c00001{bottom:398.250000px;}
.y990_c00001{bottom:398.325000px;}
.yd63_c00001{bottom:398.550000px;}
.ycec_c00001{bottom:398.970000px;}
.yea1_c00001{bottom:399.195000px;}
.y604_c00001{bottom:399.405000px;}
.ydb5_c00001{bottom:399.630000px;}
.yec1_c00001{bottom:399.825000px;}
.yced_c00001{bottom:400.050000px;}
.y98d_c00001{bottom:400.470000px;}
.y98f_c00001{bottom:400.695000px;}
.yb55_c00001{bottom:400.905000px;}
.ye3c_c00001{bottom:400.920000px;}
.yec2_c00001{bottom:401.130000px;}
.y98e_c00001{bottom:401.550000px;}
.y8e4_c00001{bottom:401.745000px;}
.yec0_c00001{bottom:401.970000px;}
.y115f_c00001{bottom:402.300000px;}
.y1124_c00001{bottom:402.330000px;}
.y8e9_c00001{bottom:402.825000px;}
.yd9d_c00001{bottom:403.050000px;}
.y8e5_c00001{bottom:403.245000px;}
.y1266_c00001{bottom:403.455000px;}
.y8e7_c00001{bottom:403.905000px;}
.y8e8_c00001{bottom:404.130000px;}
.y1089_c00001{bottom:404.280000px;}
.y10a1_c00001{bottom:404.685000px;}
.y106c_c00001{bottom:404.910000px;}
.y6c2_c00001{bottom:404.970000px;}
.y6c5_c00001{bottom:405.405000px;}
.y8e6_c00001{bottom:405.420000px;}
.ybe5_c00001{bottom:405.630000px;}
.y2a3_c00001{bottom:405.825000px;}
.y6c4_c00001{bottom:406.050000px;}
.y740_c00001{bottom:406.470000px;}
.y73f_c00001{bottom:406.680000px;}
.ybe6_c00001{bottom:406.695000px;}
.y1b6_c00001{bottom:406.905000px;}
.y6c1_c00001{bottom:407.130000px;}
.yf9b_c00001{bottom:407.325000px;}
.y7d9_c00001{bottom:407.550000px;}
.yaf_c00001{bottom:407.745000px;}
.y1b5_c00001{bottom:407.970000px;}
.y6c3_c00001{bottom:408.195000px;}
.y7d8_c00001{bottom:408.405000px;}
.y66c_c00001{bottom:408.630000px;}
.y10c2_c00001{bottom:408.780000px;}
.y176_c00001{bottom:408.825000px;}
.ye71_c00001{bottom:408.855000px;}
.y2a4_c00001{bottom:409.050000px;}
.y103a_c00001{bottom:409.155000px;}
.y12c_c00001{bottom:409.245000px;}
.y72b_c00001{bottom:409.470000px;}
.y9b2_c00001{bottom:409.680000px;}
.y66b_c00001{bottom:409.695000px;}
.yb0_c00001{bottom:409.905000px;}
.y12b_c00001{bottom:410.130000px;}
.y769_c00001{bottom:410.325000px;}
.yed6_c00001{bottom:410.355000px;}
.y7d7_c00001{bottom:410.550000px;}
.y504_c00001{bottom:410.745000px;}
.y558_c00001{bottom:410.970000px;}
.y66d_c00001{bottom:411.195000px;}
.y12a_c00001{bottom:411.405000px;}
.y922_c00001{bottom:411.420000px;}
.y4e4_c00001{bottom:411.630000px;}
.y4e5_c00001{bottom:411.825000px;}
.ye14_c00001{bottom:412.050000px;}
.y34d_c00001{bottom:412.245000px;}
.y98b_c00001{bottom:412.470000px;}
.y10b7_c00001{bottom:412.680000px;}
.y477_c00001{bottom:412.905000px;}
.ye13_c00001{bottom:412.920000px;}
.y34b_c00001{bottom:413.130000px;}
.y1286_c00001{bottom:413.205000px;}
.y3ab_c00001{bottom:413.325000px;}
.ye86_c00001{bottom:413.355000px;}
.y1100_c00001{bottom:413.475000px;}
.y1320_c00001{bottom:413.505000px;}
.y98a_c00001{bottom:413.550000px;}
.y3a8_c00001{bottom:413.745000px;}
.y837_c00001{bottom:413.805000px;}
.y34c_c00001{bottom:413.970000px;}
.y3aa_c00001{bottom:414.405000px;}
.yc0a_c00001{bottom:414.420000px;}
.y3a9_c00001{bottom:414.630000px;}
.yc19_c00001{bottom:414.825000px;}
.yceb_c00001{bottom:415.050000px;}
.y3a7_c00001{bottom:415.470000px;}
.yd28_c00001{bottom:415.695000px;}
.y3a6_c00001{bottom:415.905000px;}
.yd8a_c00001{bottom:415.920000px;}
.ydd3_c00001{bottom:416.130000px;}
.yd27_c00001{bottom:416.550000px;}
.y110c_c00001{bottom:416.655000px;}
.y601_c00001{bottom:416.745000px;}
.yebf_c00001{bottom:416.970000px;}
.yb54_c00001{bottom:417.405000px;}
.ye87_c00001{bottom:417.420000px;}
.y113d_c00001{bottom:417.555000px;}
.y602_c00001{bottom:417.825000px;}
.y8ad_c00001{bottom:418.005000px;}
.yb53_c00001{bottom:418.245000px;}
.y600_c00001{bottom:418.905000px;}
.ya09_c00001{bottom:419.085000px;}
.y603_c00001{bottom:419.130000px;}
.y12c9_c00001{bottom:419.865000px;}
.y29b_c00001{bottom:419.970000px;}
.ybe4_c00001{bottom:420.195000px;}
.y2a0_c00001{bottom:420.405000px;}
.y1095_c00001{bottom:420.525000px;}
.yb52_c00001{bottom:420.630000px;}
.y11e5_c00001{bottom:420.780000px;}
.y29f_c00001{bottom:420.825000px;}
.y6c0_c00001{bottom:421.050000px;}
.y126f_c00001{bottom:421.290000px;}
.y845_c00001{bottom:421.455000px;}
.yb51_c00001{bottom:421.470000px;}
.y10e9_c00001{bottom:421.605000px;}
.y2a1_c00001{bottom:421.695000px;}
.y29d_c00001{bottom:421.905000px;}
.y669_c00001{bottom:422.130000px;}
.y7d6_c00001{bottom:422.325000px;}
.yc84_c00001{bottom:422.355000px;}
.y9c5_c00001{bottom:422.535000px;}
.y29e_c00001{bottom:422.550000px;}
.ye11_c00001{bottom:422.775000px;}
.y2a2_c00001{bottom:422.970000px;}
.y8c0_c00001{bottom:423.180000px;}
.y668_c00001{bottom:423.195000px;}
.yc88_c00001{bottom:423.405000px;}
.y1046_c00001{bottom:423.525000px;}
.y66a_c00001{bottom:423.630000px;}
.y85f_c00001{bottom:423.825000px;}
.y29c_c00001{bottom:424.050000px;}
.y851_c00001{bottom:424.275000px;}
.yc85_c00001{bottom:424.470000px;}
.y881_c00001{bottom:424.680000px;}
.y96c_c00001{bottom:424.695000px;}
.y207_c00001{bottom:424.905000px;}
.y96b_c00001{bottom:425.130000px;}
.y9d5_c00001{bottom:425.325000px;}
.yc87_c00001{bottom:425.550000px;}
.y871_c00001{bottom:425.775000px;}
.y1016_c00001{bottom:425.910000px;}
.y567_c00001{bottom:425.970000px;}
.y899_c00001{bottom:426.180000px;}
.ye12_c00001{bottom:426.195000px;}
.y1148_c00001{bottom:426.255000px;}
.y6b2_c00001{bottom:426.405000px;}
.yc86_c00001{bottom:426.420000px;}
.ye70_c00001{bottom:426.630000px;}
.y566_c00001{bottom:426.825000px;}
.yef3_c00001{bottom:426.855000px;}
.y568_c00001{bottom:427.050000px;}
.yac_c00001{bottom:427.245000px;}
.y129_c00001{bottom:427.470000px;}
.y72a_c00001{bottom:427.905000px;}
.yf0e_c00001{bottom:427.920000px;}
.y206_c00001{bottom:428.130000px;}
.y127_c00001{bottom:428.325000px;}
.y6b3_c00001{bottom:428.550000px;}
.y128_c00001{bottom:428.745000px;}
.yae_c00001{bottom:428.970000px;}
.yce9_c00001{bottom:429.195000px;}
.yab_c00001{bottom:429.405000px;}
.yd62_c00001{bottom:429.420000px;}
.yad_c00001{bottom:429.630000px;}
.y69f_c00001{bottom:429.825000px;}
.y8e3_c00001{bottom:430.050000px;}
.y4e2_c00001{bottom:430.245000px;}
.y205_c00001{bottom:430.470000px;}
.y347_c00001{bottom:430.680000px;}
.yd26_c00001{bottom:430.695000px;}
.y126_c00001{bottom:430.905000px;}
.ydd2_c00001{bottom:430.920000px;}
.y12e5_c00001{bottom:431.055000px;}
.y4e3_c00001{bottom:431.130000px;}
.y503_c00001{bottom:431.325000px;}
.ycea_c00001{bottom:431.550000px;}
.y346_c00001{bottom:431.745000px;}
.y780_c00001{bottom:431.970000px;}
.y1079_c00001{bottom:432.105000px;}
.y349_c00001{bottom:432.180000px;}
.y4e1_c00001{bottom:432.405000px;}
.y4e0_c00001{bottom:432.630000px;}
.y476_c00001{bottom:432.825000px;}
.yabd_c00001{bottom:433.005000px;}
.y1153_c00001{bottom:433.155000px;}
.y3a5_c00001{bottom:433.245000px;}
.y512_c00001{bottom:433.470000px;}
.ybe2_c00001{bottom:433.695000px;}
.y34a_c00001{bottom:433.905000px;}
.y475_c00001{bottom:433.920000px;}
.y29a_c00001{bottom:434.550000px;}
.ya5a_c00001{bottom:434.955000px;}
.y348_c00001{bottom:434.970000px;}
.y1191_c00001{bottom:435.105000px;}
.y1052_c00001{bottom:435.180000px;}
.ybe3_c00001{bottom:435.195000px;}
.y298_c00001{bottom:435.405000px;}
.y665_c00001{bottom:435.630000px;}
.y113a_c00001{bottom:435.705000px;}
.y295_c00001{bottom:435.825000px;}
.y10f4_c00001{bottom:436.155000px;}
.y5fe_c00001{bottom:436.245000px;}
.yf81_c00001{bottom:436.470000px;}
.y297_c00001{bottom:436.695000px;}
.y296_c00001{bottom:436.905000px;}
.y10cf_c00001{bottom:437.055000px;}
.y667_c00001{bottom:437.130000px;}
.y7d4_c00001{bottom:437.325000px;}
.y299_c00001{bottom:437.550000px;}
.y5fa_c00001{bottom:437.745000px;}
.ya66_c00001{bottom:437.775000px;}
.yc83_c00001{bottom:437.970000px;}
.ya92_c00001{bottom:438.180000px;}
.y666_c00001{bottom:438.195000px;}
.y1331_c00001{bottom:438.375000px;}
.y5fb_c00001{bottom:438.405000px;}
.y96a_c00001{bottom:438.420000px;}
.y5ff_c00001{bottom:438.630000px;}
.yb4f_c00001{bottom:438.825000px;}
.y1030_c00001{bottom:438.915000px;}
.y105e_c00001{bottom:438.960000px;}
.yc82_c00001{bottom:439.050000px;}
.yb4e_c00001{bottom:439.245000px;}
.ya8d_c00001{bottom:439.275000px;}
.y5fc_c00001{bottom:439.470000px;}
.y7d5_c00001{bottom:439.695000px;}
.y5fd_c00001{bottom:439.905000px;}
.y969_c00001{bottom:439.920000px;}
.ya87_c00001{bottom:440.130000px;}
.yaa5_c00001{bottom:440.325000px;}
.ya74_c00001{bottom:440.550000px;}
.yb50_c00001{bottom:440.970000px;}
.yab3_c00001{bottom:441.405000px;}
.yab8_c00001{bottom:441.825000px;}
.ye85_c00001{bottom:441.855000px;}
.yd9c_c00001{bottom:442.050000px;}
.ydb4_c00001{bottom:442.470000px;}
.y1267_c00001{bottom:442.590000px;}
.yf42_c00001{bottom:442.695000px;}
.yce8_c00001{bottom:442.905000px;}
.yce7_c00001{bottom:443.130000px;}
.yd22_c00001{bottom:443.325000px;}
.y988_c00001{bottom:443.550000px;}
.yf5f_c00001{bottom:443.775000px;}
.ya4e_c00001{bottom:443.805000px;}
.yce6_c00001{bottom:443.970000px;}
.y115d_c00001{bottom:444.180000px;}
.yd25_c00001{bottom:444.195000px;}
.y989_c00001{bottom:444.405000px;}
.ye3a_c00001{bottom:444.420000px;}
.y121e_c00001{bottom:444.525000px;}
.yd24_c00001{bottom:444.630000px;}
.y8e1_c00001{bottom:444.825000px;}
.y8e2_c00001{bottom:445.050000px;}
.y10b8_c00001{bottom:445.155000px;}
.ya9_c00001{bottom:445.470000px;}
.y130a_c00001{bottom:445.590000px;}
.y73e_c00001{bottom:445.680000px;}
.yd23_c00001{bottom:445.695000px;}
.y124_c00001{bottom:445.905000px;}
.yebe_c00001{bottom:446.130000px;}
.ybe0_c00001{bottom:446.550000px;}
.yaa_c00001{bottom:446.745000px;}
.y69e_c00001{bottom:446.970000px;}
.y1232_c00001{bottom:447.090000px;}
.y1b4_c00001{bottom:447.180000px;}
.y1b3_c00001{bottom:447.405000px;}
.y10ac_c00001{bottom:447.555000px;}
.ya8_c00001{bottom:447.630000px;}
.y173_c00001{bottom:447.825000px;}
.y175_c00001{bottom:448.050000px;}
.y125_c00001{bottom:448.245000px;}
.ya7_c00001{bottom:448.470000px;}
.y108a_c00001{bottom:448.605000px;}
.y10a2_c00001{bottom:448.680000px;}
.ybe1_c00001{bottom:448.695000px;}
.ya6_c00001{bottom:448.905000px;}
.y174_c00001{bottom:449.130000px;}
.y293_c00001{bottom:449.325000px;}
.y1321_c00001{bottom:449.535000px;}
.y1284_c00001{bottom:449.550000px;}
.y4de_c00001{bottom:449.745000px;}
.y123_c00001{bottom:449.970000px;}
.y663_c00001{bottom:450.195000px;}
.y122_c00001{bottom:450.405000px;}
.y921_c00001{bottom:450.420000px;}
.y10dd_c00001{bottom:450.525000px;}
.y662_c00001{bottom:450.630000px;}
.y6f2_c00001{bottom:450.825000px;}
.y294_c00001{bottom:451.050000px;}
.y345_c00001{bottom:451.245000px;}
.yc81_c00001{bottom:451.275000px;}
.y290_c00001{bottom:451.470000px;}
.y511_c00001{bottom:451.680000px;}
.y291_c00001{bottom:451.695000px;}
.y4dd_c00001{bottom:451.905000px;}
.y664_c00001{bottom:451.920000px;}
.y10c3_c00001{bottom:452.055000px;}
.y28f_c00001{bottom:452.130000px;}
.y565_c00001{bottom:452.325000px;}
.y292_c00001{bottom:452.550000px;}
.y3a2_c00001{bottom:452.745000px;}
.y4df_c00001{bottom:452.970000px;}
.y1125_c00001{bottom:453.105000px;}
.y967_c00001{bottom:453.195000px;}
.y343_c00001{bottom:453.405000px;}
.yc09_c00001{bottom:453.420000px;}
.y344_c00001{bottom:453.630000px;}
.yc18_c00001{bottom:453.825000px;}
.ye0f_c00001{bottom:453.855000px;}
.y1315_c00001{bottom:453.885000px;}
.yfb1_c00001{bottom:454.050000px;}
.y3a4_c00001{bottom:454.470000px;}
.yf5e_c00001{bottom:454.695000px;}
.y3a1_c00001{bottom:454.905000px;}
.y968_c00001{bottom:454.920000px;}
.ye6f_c00001{bottom:455.130000px;}
.yef2_c00001{bottom:455.325000px;}
.yf1c_c00001{bottom:455.355000px;}
.y7d3_c00001{bottom:455.550000px;}
.y5f9_c00001{bottom:455.745000px;}
.y3a3_c00001{bottom:455.970000px;}
.yed5_c00001{bottom:456.195000px;}
.yf1d_c00001{bottom:456.405000px;}
.ye10_c00001{bottom:456.420000px;}
.y1101_c00001{bottom:456.585000px;}
.yf1e_c00001{bottom:456.630000px;}
.y5f8_c00001{bottom:456.825000px;}
.yd89_c00001{bottom:456.855000px;}
.yd21_c00001{bottom:457.050000px;}
.y1024_c00001{bottom:457.155000px;}
.ydd1_c00001{bottom:457.470000px;}
.y5f7_c00001{bottom:457.905000px;}
.yf0d_c00001{bottom:457.920000px;}
.yce5_c00001{bottom:458.130000px;}
.y472_c00001{bottom:458.325000px;}
.ydd0_c00001{bottom:458.550000px;}
.y106d_c00001{bottom:458.655000px;}
.yb4c_c00001{bottom:458.745000px;}
.y5f6_c00001{bottom:458.970000px;}
.y986_c00001{bottom:459.195000px;}
.y471_c00001{bottom:459.405000px;}
.y473_c00001{bottom:459.630000px;}
.y987_c00001{bottom:460.050000px;}
.y111a_c00001{bottom:460.155000px;}
.y470_c00001{bottom:460.470000px;}
.yebd_c00001{bottom:460.695000px;}
.yb4d_c00001{bottom:460.905000px;}
.ye84_c00001{bottom:460.920000px;}
.y1160_c00001{bottom:461.460000px;}
.y474_c00001{bottom:461.550000px;}
.y11e6_c00001{bottom:462.750000px;}
.y8e0_c00001{bottom:462.825000px;}
.y28e_c00001{bottom:463.470000px;}
.y966_c00001{bottom:464.130000px;}
.y28d_c00001{bottom:464.325000px;}
.y113e_c00001{bottom:464.910000px;}
.y8de_c00001{bottom:464.970000px;}
.y660_c00001{bottom:465.195000px;}
.y28c_c00001{bottom:465.405000px;}
.y661_c00001{bottom:465.420000px;}
.y204_c00001{bottom:465.825000px;}
.y8df_c00001{bottom:466.050000px;}
.ya3_c00001{bottom:466.245000px;}
.y28b_c00001{bottom:466.470000px;}
.y6b1_c00001{bottom:466.680000px;}
.y965_c00001{bottom:466.695000px;}
.y11f_c00001{bottom:466.905000px;}
.y203_c00001{bottom:467.130000px;}
.y73d_c00001{bottom:467.325000px;}
.y28a_c00001{bottom:467.550000px;}
.y1053_c00001{bottom:467.655000px;}
.ya5_c00001{bottom:467.745000px;}
.ye6e_c00001{bottom:467.775000px;}
.y4dc_c00001{bottom:467.970000px;}
.y964_c00001{bottom:468.195000px;}
.ya4_c00001{bottom:468.405000px;}
.y171_c00001{bottom:468.630000px;}
.y1d9_c00001{bottom:468.825000px;}
.y7d1_c00001{bottom:469.050000px;}
.y6f1_c00001{bottom:469.245000px;}
.y172_c00001{bottom:469.470000px;}
.y557_c00001{bottom:469.680000px;}
.y11e_c00001{bottom:469.905000px;}
.y920_c00001{bottom:469.920000px;}
.y1017_c00001{bottom:470.085000px;}
.y121_c00001{bottom:470.130000px;}
.y63c_c00001{bottom:470.325000px;}
.yea0_c00001{bottom:470.355000px;}
.y7d2_c00001{bottom:470.550000px;}
.y33f_c00001{bottom:470.745000px;}
.yf46_c00001{bottom:470.775000px;}
.y502_c00001{bottom:470.970000px;}
.y120_c00001{bottom:471.405000px;}
.yc80_c00001{bottom:471.420000px;}
.y4da_c00001{bottom:471.630000px;}
.y556_c00001{bottom:471.825000px;}
.yeb1_c00001{bottom:471.855000px;}
.y342_c00001{bottom:472.050000px;}
.y39e_c00001{bottom:472.245000px;}
.y115e_c00001{bottom:472.425000px;}
.y4db_c00001{bottom:472.470000px;}
.y33e_c00001{bottom:472.905000px;}
.yc1e_c00001{bottom:472.920000px;}
.y110d_c00001{bottom:473.085000px;}
.y3a0_c00001{bottom:473.130000px;}
.yc17_c00001{bottom:473.325000px;}
.y10de_c00001{bottom:473.475000px;}
.yd61_c00001{bottom:473.550000px;}
.y8ae_c00001{bottom:473.925000px;}
.y341_c00001{bottom:473.970000px;}
.y103b_c00001{bottom:474.285000px;}
.y340_c00001{bottom:474.405000px;}
.yeb2_c00001{bottom:474.420000px;}
.y10ea_c00001{bottom:474.555000px;}
.yebc_c00001{bottom:474.630000px;}
.yce4_c00001{bottom:475.050000px;}
.y5f4_c00001{bottom:475.245000px;}
.y1096_c00001{bottom:475.410000px;}
.ya0a_c00001{bottom:475.425000px;}
.y39f_c00001{bottom:475.470000px;}
.y1288_c00001{bottom:475.800000px;}
.yf4a_c00001{bottom:475.920000px;}
.yf8c_c00001{bottom:476.550000px;}
.y846_c00001{bottom:476.955000px;}
.yb49_c00001{bottom:476.970000px;}
.y5f3_c00001{bottom:477.405000px;}
.y5f5_c00001{bottom:477.630000px;}
.yb4a_c00001{bottom:478.245000px;}
.y12f7_c00001{bottom:478.410000px;}
.y288_c00001{bottom:478.470000px;}
.y882_c00001{bottom:478.680000px;}
.y65d_c00001{bottom:478.695000px;}
.y5f2_c00001{bottom:478.905000px;}
.y12e6_c00001{bottom:479.010000px;}
.y963_c00001{bottom:479.130000px;}
.y289_c00001{bottom:479.325000px;}
.y1047_c00001{bottom:479.460000px;}
.y46e_c00001{bottom:479.550000px;}
.y852_c00001{bottom:479.775000px;}
.yb4b_c00001{bottom:479.970000px;}
.y88f_c00001{bottom:480.180000px;}
.y65e_c00001{bottom:480.195000px;}
.y287_c00001{bottom:480.405000px;}
.y65f_c00001{bottom:480.420000px;}
.y285_c00001{bottom:480.630000px;}
.yc7f_c00001{bottom:480.855000px;}
.yfa3_c00001{bottom:481.050000px;}
.y878_c00001{bottom:481.275000px;}
.y286_c00001{bottom:481.470000px;}
.y10a3_c00001{bottom:481.590000px;}
.y9ec_c00001{bottom:481.680000px;}
.y46f_c00001{bottom:481.695000px;}
.y1332_c00001{bottom:482.100000px;}
.y872_c00001{bottom:482.130000px;}
.y7ce_c00001{bottom:482.325000px;}
.y7ca_c00001{bottom:482.550000px;}
.yf9a_c00001{bottom:482.970000px;}
.y7cb_c00001{bottom:483.405000px;}
.y7cc_c00001{bottom:483.630000px;}
.ya15_c00001{bottom:483.825000px;}
.ye6c_c00001{bottom:483.855000px;}
.y1287_c00001{bottom:483.960000px;}
.yfb9_c00001{bottom:484.050000px;}
.yf1b_c00001{bottom:484.275000px;}
.y7d0_c00001{bottom:484.470000px;}
.y7cf_c00001{bottom:484.695000px;}
.y1d8_c00001{bottom:484.905000px;}
.ybde_c00001{bottom:485.130000px;}
.y73c_c00001{bottom:485.325000px;}
.yef1_c00001{bottom:485.355000px;}
.y7cd_c00001{bottom:485.550000px;}
.y12ca_c00001{bottom:485.685000px;}
.y9d_c00001{bottom:485.745000px;}
.yee9_c00001{bottom:485.775000px;}
.yce3_c00001{bottom:485.970000px;}
.y6ab_c00001{bottom:486.180000px;}
.ybdf_c00001{bottom:486.195000px;}
.y11d_c00001{bottom:486.405000px;}
.ye0e_c00001{bottom:486.420000px;}
.y1340_c00001{bottom:486.555000px;}
.y739_c00001{bottom:486.630000px;}
.y73b_c00001{bottom:486.825000px;}
.ye0d_c00001{bottom:487.050000px;}
.y10d0_c00001{bottom:487.155000px;}
.ya0_c00001{bottom:487.245000px;}
.y73a_c00001{bottom:487.470000px;}
.yc25_c00001{bottom:487.680000px;}
.yd60_c00001{bottom:487.695000px;}
.y107a_c00001{bottom:487.800000px;}
.y555_c00001{bottom:487.905000px;}
.ye6d_c00001{bottom:487.920000px;}
.ya1_c00001{bottom:488.130000px;}
.y1b2_c00001{bottom:488.325000px;}
.yabe_c00001{bottom:488.505000px;}
.y9b1_c00001{bottom:488.550000px;}
.y11b_c00001{bottom:488.745000px;}
.y9e_c00001{bottom:488.970000px;}
.y9b9_c00001{bottom:489.180000px;}
.y985_c00001{bottom:489.195000px;}
.y9f_c00001{bottom:489.405000px;}
.y91f_c00001{bottom:489.420000px;}
.y10ad_c00001{bottom:489.585000px;}
.y1b1_c00001{bottom:489.630000px;}
.y33c_c00001{bottom:489.825000px;}
.yb92_c00001{bottom:490.050000px;}
.y33d_c00001{bottom:490.245000px;}
.ya2_c00001{bottom:490.470000px;}
.yeea_c00001{bottom:490.695000px;}
.y11a_c00001{bottom:490.905000px;}
.yd88_c00001{bottom:490.920000px;}
.y1102_c00001{bottom:491.085000px;}
.y554_c00001{bottom:491.130000px;}
.y501_c00001{bottom:491.325000px;}
.y9ba_c00001{bottom:491.550000px;}
.y1192_c00001{bottom:491.655000px;}
.y39b_c00001{bottom:491.745000px;}
.y11c_c00001{bottom:491.970000px;}
.y105f_c00001{bottom:492.135000px;}
.y4d9_c00001{bottom:492.405000px;}
.yc08_c00001{bottom:492.420000px;}
.y39c_c00001{bottom:492.630000px;}
.yf8b_c00001{bottom:493.050000px;}
.ya67_c00001{bottom:493.275000px;}
.y39d_c00001{bottom:493.470000px;}
.ya5b_c00001{bottom:493.680000px;}
.y65b_c00001{bottom:493.695000px;}
.y39a_c00001{bottom:493.905000px;}
.y65c_c00001{bottom:493.920000px;}
.y962_c00001{bottom:494.130000px;}
.y282_c00001{bottom:494.325000px;}
.ya75_c00001{bottom:494.775000px;}
.yb85_c00001{bottom:494.970000px;}
.ya93_c00001{bottom:495.180000px;}
.y961_c00001{bottom:495.195000px;}
.y281_c00001{bottom:495.405000px;}
.y283_c00001{bottom:495.630000px;}
.yfa1_c00001{bottom:495.825000px;}
.y5ee_c00001{bottom:496.245000px;}
.y284_c00001{bottom:496.470000px;}
.yb47_c00001{bottom:496.905000px;}
.y108b_c00001{bottom:497.085000px;}
.y5f1_c00001{bottom:497.130000px;}
.y7c9_c00001{bottom:497.325000px;}
.ye09_c00001{bottom:497.355000px;}
.y7c7_c00001{bottom:497.550000px;}
.yb45_c00001{bottom:497.745000px;}
.ye0a_c00001{bottom:497.970000px;}
.y1126_c00001{bottom:498.180000px;}
.y10f5_c00001{bottom:498.300000px;}
.y5f0_c00001{bottom:498.405000px;}
.y5ef_c00001{bottom:498.420000px;}
.y7c8_c00001{bottom:498.630000px;}
.ye0b_c00001{bottom:498.825000px;}
.yf41_c00001{bottom:498.855000px;}
.yfa2_c00001{bottom:499.050000px;}
.yb48_c00001{bottom:499.470000px;}
.y1149_c00001{bottom:499.830000px;}
.yb44_c00001{bottom:499.905000px;}
.yd5e_c00001{bottom:500.325000px;}
.yd5c_c00001{bottom:500.355000px;}
.yc7e_c00001{bottom:500.550000px;}
.yb46_c00001{bottom:500.970000px;}
.y1018_c00001{bottom:501.180000px;}
.ye0c_c00001{bottom:501.195000px;}
.ycde_c00001{bottom:501.405000px;}
.yf77_c00001{bottom:501.630000px;}
.yd1f_c00001{bottom:501.825000px;}
.yeb0_c00001{bottom:501.855000px;}
.yd20_c00001{bottom:502.050000px;}
.y1268_c00001{bottom:502.230000px;}
.yce2_c00001{bottom:502.470000px;}
.yd5d_c00001{bottom:502.695000px;}
.ycdd_c00001{bottom:502.905000px;}
.yd5f_c00001{bottom:502.920000px;}
.yd9b_c00001{bottom:503.130000px;}
.yee7_c00001{bottom:503.325000px;}
.yce1_c00001{bottom:503.550000px;}
.ycdf_c00001{bottom:503.970000px;}
.y1135_c00001{bottom:504.105000px;}
.y110e_c00001{bottom:504.180000px;}
.y121f_c00001{bottom:504.285000px;}
.yee8_c00001{bottom:504.405000px;}
.yd87_c00001{bottom:504.420000px;}
.y658_c00001{bottom:504.630000px;}
.yf93_c00001{bottom:504.825000px;}
.yce0_c00001{bottom:505.050000px;}
.y1216_c00001{bottom:505.185000px;}
.y737_c00001{bottom:505.245000px;}
.y10b9_c00001{bottom:505.410000px;}
.y547_c00001{bottom:505.470000px;}
.y46d_c00001{bottom:505.680000px;}
.y657_c00001{bottom:505.695000px;}
.y9c_c00001{bottom:505.905000px;}
.ydcf_c00001{bottom:505.920000px;}
.y738_c00001{bottom:506.130000px;}
.y548_c00001{bottom:506.325000px;}
.y6bf_c00001{bottom:506.550000px;}
.y119_c00001{bottom:506.745000px;}
.y1b0_c00001{bottom:506.970000px;}
.y130b_c00001{bottom:507.135000px;}
.yc23_c00001{bottom:507.180000px;}
.y659_c00001{bottom:507.195000px;}
.y9a_c00001{bottom:507.405000px;}
.y65a_c00001{bottom:507.420000px;}
.y170_c00001{bottom:507.630000px;}
.y9b_c00001{bottom:507.825000px;}
.y202_c00001{bottom:508.050000px;}
.y1233_c00001{bottom:508.200000px;}
.y63b_c00001{bottom:508.245000px;}
.y1d7_c00001{bottom:508.470000px;}
.y77f_c00001{bottom:508.680000px;}
.y99_c00001{bottom:508.905000px;}
.y838_c00001{bottom:509.055000px;}
.y118_c00001{bottom:509.130000px;}
.y27f_c00001{bottom:509.325000px;}
.y335_c00001{bottom:509.745000px;}
.y117_c00001{bottom:509.970000px;}
.y27e_c00001{bottom:510.405000px;}
.y6f0_c00001{bottom:510.420000px;}
.y27b_c00001{bottom:510.630000px;}
.y336_c00001{bottom:510.825000px;}
.yc7b_c00001{bottom:510.855000px;}
.y280_c00001{bottom:511.050000px;}
.y338_c00001{bottom:511.245000px;}
.y27d_c00001{bottom:511.470000px;}
.y11dd_c00001{bottom:511.590000px;}
.y9bb_c00001{bottom:511.635000px;}
.y10df_c00001{bottom:511.680000px;}
.y33b_c00001{bottom:511.905000px;}
.yb91_c00001{bottom:511.920000px;}
.y339_c00001{bottom:512.130000px;}
.y399_c00001{bottom:512.325000px;}
.y27c_c00001{bottom:512.550000px;}
.y398_c00001{bottom:512.745000px;}
.yf40_c00001{bottom:512.775000px;}
.y33a_c00001{bottom:512.970000px;}
.y7c6_c00001{bottom:513.195000px;}
.y1031_c00001{bottom:513.300000px;}
.y11e7_c00001{bottom:513.330000px;}
.y337_c00001{bottom:513.405000px;}
.yc16_c00001{bottom:513.420000px;}
.y7c4_c00001{bottom:513.630000px;}
.ye08_c00001{bottom:513.825000px;}
.y91e_c00001{bottom:514.050000px;}
.ye39_c00001{bottom:514.275000px;}
.y7c5_c00001{bottom:514.470000px;}
.y1097_c00001{bottom:514.680000px;}
.y960_c00001{bottom:514.695000px;}
.y12c3_c00001{bottom:514.755000px;}
.y397_c00001{bottom:514.905000px;}
.yc7d_c00001{bottom:514.920000px;}
.y111b_c00001{bottom:515.085000px;}
.ye6b_c00001{bottom:515.130000px;}
.yd58_c00001{bottom:515.325000px;}
.yed3_c00001{bottom:515.355000px;}
.yc7c_c00001{bottom:515.550000px;}
.yebb_c00001{bottom:515.775000px;}
.ya41_c00001{bottom:515.970000px;}
.ye6a_c00001{bottom:516.195000px;}
.y1333_c00001{bottom:516.300000px;}
.yd57_c00001{bottom:516.405000px;}
.y10eb_c00001{bottom:516.585000px;}
.yed4_c00001{bottom:516.630000px;}
.ya43_c00001{bottom:516.825000px;}
.yd5b_c00001{bottom:517.050000px;}
.yb43_c00001{bottom:517.245000px;}
.yd5a_c00001{bottom:517.470000px;}
.yf1a_c00001{bottom:517.695000px;}
.y10c4_c00001{bottom:517.860000px;}
.y5ed_c00001{bottom:517.905000px;}
.yd59_c00001{bottom:517.920000px;}
.ycdc_c00001{bottom:518.130000px;}
.y5e9_c00001{bottom:518.325000px;}
.y106e_c00001{bottom:518.475000px;}
.y5ec_c00001{bottom:518.550000px;}
.ya42_c00001{bottom:518.970000px;}
.ydb3_c00001{bottom:519.195000px;}
.y5e7_c00001{bottom:519.405000px;}
.yd1e_c00001{bottom:519.420000px;}
.ya44_c00001{bottom:519.630000px;}
.ycdb_c00001{bottom:520.050000px;}
.y5e8_c00001{bottom:520.470000px;}
.y1054_c00001{bottom:520.680000px;}
.y5eb_c00001{bottom:520.695000px;}
.yf92_c00001{bottom:520.905000px;}
.yf89_c00001{bottom:521.325000px;}
.y5ea_c00001{bottom:521.550000px;}
.yf91_c00001{bottom:521.970000px;}
.y1103_c00001{bottom:522.180000px;}
.yf8a_c00001{bottom:522.630000px;}
.y653_c00001{bottom:523.695000px;}
.y1af_c00001{bottom:523.905000px;}
.y654_c00001{bottom:524.130000px;}
.ybc7_c00001{bottom:524.325000px;}
.y27a_c00001{bottom:524.550000px;}
.y94_c00001{bottom:524.745000px;}
.yfd3_c00001{bottom:524.835000px;}
.yfb8_c00001{bottom:524.970000px;}
.y736_c00001{bottom:525.180000px;}
.y655_c00001{bottom:525.195000px;}
.y277_c00001{bottom:525.405000px;}
.y656_c00001{bottom:525.420000px;}
.y546_c00001{bottom:525.825000px;}
.yc79_c00001{bottom:525.855000px;}
.y98_c00001{bottom:526.050000px;}
.y95_c00001{bottom:526.245000px;}
.y1127_c00001{bottom:526.425000px;}
.y112_c00001{bottom:526.470000px;}
.y1048_c00001{bottom:526.680000px;}
.y278_c00001{bottom:526.695000px;}
.y4d7_c00001{bottom:526.905000px;}
.y97_c00001{bottom:527.130000px;}
.y1d6_c00001{bottom:527.325000px;}
.y279_c00001{bottom:527.550000px;}
.y114_c00001{bottom:527.745000px;}
.y93_c00001{bottom:527.970000px;}
.y753_c00001{bottom:528.180000px;}
.y96_c00001{bottom:528.405000px;}
.y113_c00001{bottom:528.630000px;}
.y50f_c00001{bottom:528.825000px;}
.y8af_c00001{bottom:529.005000px;}
.y7c3_c00001{bottom:529.050000px;}
.yfe4_c00001{bottom:529.155000px;}
.y4d5_c00001{bottom:529.245000px;}
.y116_c00001{bottom:529.470000px;}
.y1060_c00001{bottom:529.680000px;}
.y95f_c00001{bottom:529.695000px;}
.y115_c00001{bottom:529.905000px;}
.yc7a_c00001{bottom:529.920000px;}
.y4d8_c00001{bottom:530.130000px;}
.y510_c00001{bottom:530.325000px;}
.yeaf_c00001{bottom:530.355000px;}
.ya0b_c00001{bottom:530.505000px;}
.ye07_c00001{bottom:530.550000px;}
.y11d2_c00001{bottom:530.655000px;}
.y331_c00001{bottom:530.745000px;}
.y4d6_c00001{bottom:530.970000px;}
.y95e_c00001{bottom:531.195000px;}
.y334_c00001{bottom:531.405000px;}
.ye06_c00001{bottom:531.420000px;}
.y500_c00001{bottom:531.630000px;}
.y1289_c00001{bottom:531.780000px;}
.y50e_c00001{bottom:531.825000px;}
.ydcd_c00001{bottom:532.050000px;}
.y394_c00001{bottom:532.245000px;}
.y847_c00001{bottom:532.455000px;}
.y4ff_c00001{bottom:532.470000px;}
.y103c_c00001{bottom:532.680000px;}
.yef0_c00001{bottom:532.695000px;}
.y332_c00001{bottom:532.905000px;}
.y333_c00001{bottom:533.130000px;}
.y5e5_c00001{bottom:533.325000px;}
.y91d_c00001{bottom:533.550000px;}
.y395_c00001{bottom:533.970000px;}
.y8c1_c00001{bottom:534.180000px;}
.y396_c00001{bottom:534.405000px;}
.ydce_c00001{bottom:534.420000px;}
.y11f0_c00001{bottom:534.750000px;}
.y860_c00001{bottom:534.825000px;}
.yd1d_c00001{bottom:535.050000px;}
.y853_c00001{bottom:535.275000px;}
.y5e6_c00001{bottom:535.470000px;}
.y1019_c00001{bottom:535.590000px;}
.y883_c00001{bottom:535.680000px;}
.yfea_c00001{bottom:535.785000px;}
.yb42_c00001{bottom:535.905000px;}
.yee6_c00001{bottom:535.920000px;}
.y1269_c00001{bottom:536.085000px;}
.y1161_c00001{bottom:536.250000px;}
.y9d6_c00001{bottom:536.325000px;}
.yf90_c00001{bottom:536.550000px;}
.yb41_c00001{bottom:536.745000px;}
.y879_c00001{bottom:536.775000px;}
.yf88_c00001{bottom:536.970000px;}
.y1025_c00001{bottom:537.135000px;}
.y8a6_c00001{bottom:537.180000px;}
.y12f8_c00001{bottom:537.255000px;}
.ya4f_c00001{bottom:537.555000px;}
.y119e_c00001{bottom:537.705000px;}
.y276_c00001{bottom:537.825000px;}
.y86a_c00001{bottom:538.050000px;}
.y125a_c00001{bottom:538.155000px;}
.yb3f_c00001{bottom:538.245000px;}
.y9e4_c00001{bottom:538.275000px;}
.y113f_c00001{bottom:538.590000px;}
.y12cb_c00001{bottom:538.605000px;}
.y107b_c00001{bottom:538.680000px;}
.y10e0_c00001{bottom:538.860000px;}
.y275_c00001{bottom:538.905000px;}
.yb3d_c00001{bottom:539.130000px;}
.y274_c00001{bottom:539.325000px;}
.y270_c00001{bottom:539.550000px;}
.yb3e_c00001{bottom:539.970000px;}
.y10d1_c00001{bottom:540.180000px;}
.yb40_c00001{bottom:540.405000px;}
.y64f_c00001{bottom:540.630000px;}
.yf5d_c00001{bottom:540.825000px;}
.yf5c_c00001{bottom:541.050000px;}
.ye03_c00001{bottom:541.275000px;}
.y271_c00001{bottom:541.470000px;}
.y114a_c00001{bottom:541.680000px;}
.y272_c00001{bottom:541.695000px;}
.y46c_c00001{bottom:541.905000px;}
.y651_c00001{bottom:542.130000px;}
.ye04_c00001{bottom:542.325000px;}
.y120f_c00001{bottom:542.430000px;}
.y273_c00001{bottom:542.550000px;}
.yabf_c00001{bottom:542.925000px;}
.y7c2_c00001{bottom:542.970000px;}
.y1241_c00001{bottom:543.105000px;}
.y650_c00001{bottom:543.195000px;}
.y82a_c00001{bottom:543.405000px;}
.y1154_c00001{bottom:543.600000px;}
.y652_c00001{bottom:543.630000px;}
.ye69_c00001{bottom:543.825000px;}
.yf19_c00001{bottom:543.855000px;}
.y7c1_c00001{bottom:544.050000px;}
.y8dd_c00001{bottom:544.245000px;}
.y1ae_c00001{bottom:544.470000px;}
.y91_c00001{bottom:544.680000px;}
.ye05_c00001{bottom:544.695000px;}
.y200_c00001{bottom:544.905000px;}
.yf3f_c00001{bottom:545.130000px;}
.y118a_c00001{bottom:545.160000px;}
.y1302_c00001{bottom:545.280000px;}
.y544_c00001{bottom:545.325000px;}
.ycd8_c00001{bottom:545.355000px;}
.ycd9_c00001{bottom:545.550000px;}
.y8f_c00001{bottom:545.745000px;}
.y1fe_c00001{bottom:545.970000px;}
.yb7a_c00001{bottom:546.180000px;}
.y8dc_c00001{bottom:546.405000px;}
.y1234_c00001{bottom:546.600000px;}
.y545_c00001{bottom:546.630000px;}
.y1ad_c00001{bottom:546.825000px;}
.y10ae_c00001{bottom:547.005000px;}
.ya5c_c00001{bottom:547.035000px;}
.ya40_c00001{bottom:547.050000px;}
.y111_c00001{bottom:547.245000px;}
.y201_c00001{bottom:547.470000px;}
.y9b0_c00001{bottom:547.680000px;}
.y727_c00001{bottom:547.695000px;}
.y90_c00001{bottom:547.905000px;}
.ye38_c00001{bottom:547.920000px;}
.y130c_c00001{bottom:548.085000px;}
.y92_c00001{bottom:548.130000px;}
.y5e4_c00001{bottom:548.325000px;}
.y5e1_c00001{bottom:548.550000px;}
.y4d2_c00001{bottom:548.745000px;}
.ya68_c00001{bottom:548.775000px;}
.y1ff_c00001{bottom:548.970000px;}
.y1098_c00001{bottom:549.090000px;}
.ya82_c00001{bottom:549.180000px;}
.yd86_c00001{bottom:549.195000px;}
.y1055_c00001{bottom:549.360000px;}
.y110_c00001{bottom:549.405000px;}
.ycda_c00001{bottom:549.420000px;}
.y4d4_c00001{bottom:549.630000px;}
.y32e_c00001{bottom:549.825000px;}
.y5e2_c00001{bottom:550.050000px;}
.y393_c00001{bottom:550.245000px;}
.y38f_c00001{bottom:550.470000px;}
.y1104_c00001{bottom:550.635000px;}
.y1136_c00001{bottom:550.680000px;}
.y5e3_c00001{bottom:550.695000px;}
.y4d3_c00001{bottom:550.905000px;}
.yfdf_c00001{bottom:550.980000px;}
.y108c_c00001{bottom:551.100000px;}
.y4fe_c00001{bottom:551.130000px;}
.y392_c00001{bottom:551.325000px;}
.ya76_c00001{bottom:551.550000px;}
.y390_c00001{bottom:551.745000px;}
.y330_c00001{bottom:551.970000px;}
.y1253_c00001{bottom:552.090000px;}
.y726_c00001{bottom:552.195000px;}
.y32f_c00001{bottom:552.405000px;}
.y97d_c00001{bottom:552.420000px;}
.y50d_c00001{bottom:552.630000px;}
.yaac_c00001{bottom:552.825000px;}
.y26e_c00001{bottom:553.470000px;}
.y1049_c00001{bottom:553.860000px;}
.y391_c00001{bottom:553.905000px;}
.yc14_c00001{bottom:553.920000px;}
.y26a_c00001{bottom:554.325000px;}
.y95d_c00001{bottom:554.550000px;}
.y91c_c00001{bottom:554.745000px;}
.yc76_c00001{bottom:554.970000px;}
.y1169_c00001{bottom:555.090000px;}
.y100c_c00001{bottom:555.285000px;}
.y26b_c00001{bottom:555.405000px;}
.y7be_c00001{bottom:555.825000px;}
.yc75_c00001{bottom:555.855000px;}
.yf5b_c00001{bottom:556.050000px;}
.y1193_c00001{bottom:556.155000px;}
.y26d_c00001{bottom:556.470000px;}
.y106f_c00001{bottom:556.680000px;}
.y26c_c00001{bottom:556.695000px;}
.yf6f_c00001{bottom:556.905000px;}
.y1322_c00001{bottom:557.100000px;}
.yf0b_c00001{bottom:557.325000px;}
.y26f_c00001{bottom:557.550000px;}
.yb3b_c00001{bottom:557.745000px;}
.yc15_c00001{bottom:557.775000px;}
.y1341_c00001{bottom:557.835000px;}
.y7c0_c00001{bottom:557.970000px;}
.y7bf_c00001{bottom:558.195000px;}
.y1061_c00001{bottom:558.360000px;}
.ye02_c00001{bottom:558.405000px;}
.yc78_c00001{bottom:558.420000px;}
.y1217_c00001{bottom:558.525000px;}
.yb3c_c00001{bottom:558.630000px;}
.yb39_c00001{bottom:558.825000px;}
.yed2_c00001{bottom:558.855000px;}
.yc77_c00001{bottom:559.050000px;}
.yd55_c00001{bottom:559.470000px;}
.yb3a_c00001{bottom:559.905000px;}
.yf0c_c00001{bottom:560.130000px;}
.yd56_c00001{bottom:560.325000px;}
.yd84_c00001{bottom:560.355000px;}
.ye01_c00001{bottom:560.550000px;}
.y128b_c00001{bottom:560.655000px;}
.ya3e_c00001{bottom:560.970000px;}
.y839_c00001{bottom:561.090000px;}
.yf84_c00001{bottom:561.195000px;}
.y103d_c00001{bottom:561.360000px;}
.yd1b_c00001{bottom:561.405000px;}
.ye37_c00001{bottom:561.630000px;}
.y5dc_c00001{bottom:561.825000px;}
.ya3d_c00001{bottom:562.050000px;}
.ycd7_c00001{bottom:562.470000px;}
.yd1c_c00001{bottom:562.695000px;}
.y5dd_c00001{bottom:562.905000px;}
.y9bc_c00001{bottom:563.010000px;}
.ya3f_c00001{bottom:563.130000px;}
.y5e0_c00001{bottom:563.325000px;}
.yd85_c00001{bottom:563.550000px;}
.y10a4_c00001{bottom:563.925000px;}
.y1fd_c00001{bottom:563.970000px;}
.y1032_c00001{bottom:564.180000px;}
.y1d5_c00001{bottom:564.405000px;}
.ye83_c00001{bottom:564.420000px;}
.y110f_c00001{bottom:564.600000px;}
.y5de_c00001{bottom:564.630000px;}
.y64d_c00001{bottom:564.825000px;}
.y5df_c00001{bottom:565.050000px;}
.y89_c00001{bottom:565.245000px;}
.y10f_c00001{bottom:565.680000px;}
.y724_c00001{bottom:565.695000px;}
.y16f_c00001{bottom:565.905000px;}
.yfcd_c00001{bottom:566.010000px;}
.y725_c00001{bottom:566.130000px;}
.y1fb_c00001{bottom:566.325000px;}
.y8e_c00001{bottom:566.745000px;}
.y107c_c00001{bottom:566.925000px;}
.y1fc_c00001{bottom:566.970000px;}
.ya46_c00001{bottom:567.180000px;}
.y8a_c00001{bottom:567.405000px;}
.y8c_c00001{bottom:567.630000px;}
.y10e_c00001{bottom:567.825000px;}
.y64e_c00001{bottom:568.050000px;}
.y1220_c00001{bottom:568.200000px;}
.y4d0_c00001{bottom:568.245000px;}
.y11e8_c00001{bottom:568.365000px;}
.y8b_c00001{bottom:568.470000px;}
.y9b8_c00001{bottom:568.680000px;}
.y10d2_c00001{bottom:568.860000px;}
.y8d_c00001{bottom:568.905000px;}
.y4d1_c00001{bottom:569.130000px;}
.y4fd_c00001{bottom:569.325000px;}
.y95c_c00001{bottom:569.550000px;}
.y32d_c00001{bottom:569.745000px;}
.y114b_c00001{bottom:569.925000px;}
.y10d_c00001{bottom:569.970000px;}
.yb84_c00001{bottom:570.180000px;}
.y12e0_c00001{bottom:570.285000px;}
.yfd9_c00001{bottom:570.300000px;}
.y4cf_c00001{bottom:570.405000px;}
.y269_c00001{bottom:570.630000px;}
.y4fb_c00001{bottom:570.825000px;}
.y268_c00001{bottom:571.050000px;}
.y111c_c00001{bottom:571.230000px;}
.y38b_c00001{bottom:571.245000px;}
.ydfb_c00001{bottom:571.275000px;}
.y4fc_c00001{bottom:571.470000px;}
.y32c_c00001{bottom:571.905000px;}
.y77e_c00001{bottom:571.920000px;}
.y38c_c00001{bottom:572.130000px;}
.y1343_c00001{bottom:572.250000px;}
.y10ba_c00001{bottom:572.280000px;}
.ydfe_c00001{bottom:572.325000px;}
.yf3b_c00001{bottom:572.355000px;}
.ydfc_c00001{bottom:572.550000px;}
.y10ec_c00001{bottom:572.730000px;}
.y12e7_c00001{bottom:572.955000px;}
.y38e_c00001{bottom:572.970000px;}
.y7bd_c00001{bottom:573.195000px;}
.y11ce_c00001{bottom:573.360000px;}
.y38d_c00001{bottom:573.405000px;}
.yc13_c00001{bottom:573.420000px;}
.y1316_c00001{bottom:573.555000px;}
.yf50_c00001{bottom:573.630000px;}
.y11de_c00001{bottom:573.750000px;}
.ye68_c00001{bottom:573.825000px;}
.y7bc_c00001{bottom:574.050000px;}
.yd83_c00001{bottom:574.275000px;}
.yd54_c00001{bottom:574.470000px;}
.ydff_c00001{bottom:574.695000px;}
.y126a_c00001{bottom:574.860000px;}
.yf3e_c00001{bottom:574.905000px;}
.ye00_c00001{bottom:574.920000px;}
.yf3c_c00001{bottom:575.130000px;}
.ycd5_c00001{bottom:575.325000px;}
.ydb2_c00001{bottom:575.355000px;}
.y128a_c00001{bottom:575.460000px;}
.ydfd_c00001{bottom:575.550000px;}
.y97c_c00001{bottom:575.970000px;}
.y10f6_c00001{bottom:576.360000px;}
.ycd4_c00001{bottom:576.405000px;}
.yf3d_c00001{bottom:576.420000px;}
.yf18_c00001{bottom:576.630000px;}
.yb37_c00001{bottom:576.825000px;}
.y1334_c00001{bottom:576.960000px;}
.ya3c_c00001{bottom:577.050000px;}
.yb36_c00001{bottom:577.245000px;}
.y5d9_c00001{bottom:577.470000px;}
.y722_c00001{bottom:577.695000px;}
.y1137_c00001{bottom:577.860000px;}
.y5da_c00001{bottom:577.905000px;}
.ye36_c00001{bottom:577.920000px;}
.y721_c00001{bottom:578.130000px;}
.yb38_c00001{bottom:578.325000px;}
.ya3b_c00001{bottom:578.550000px;}
.y5d8_c00001{bottom:578.970000px;}
.y720_c00001{bottom:579.195000px;}
.y5db_c00001{bottom:579.405000px;}
.ycd6_c00001{bottom:579.420000px;}
.y5d7_c00001{bottom:580.050000px;}
.yf80_c00001{bottom:580.470000px;}
.y723_c00001{bottom:580.695000px;}
.y64c_c00001{bottom:580.905000px;}
.ybc0_c00001{bottom:581.325000px;}
.ybbf_c00001{bottom:581.745000px;}
.y64a_c00001{bottom:581.970000px;}
.ybc1_c00001{bottom:582.825000px;}
.y64b_c00001{bottom:583.050000px;}
.y735_c00001{bottom:583.245000px;}
.yc74_c00001{bottom:583.275000px;}
.y1162_c00001{bottom:583.425000px;}
.y266_c00001{bottom:583.470000px;}
.y91b_c00001{bottom:583.680000px;}
.y1fa_c00001{bottom:583.905000px;}
.y1070_c00001{bottom:584.280000px;}
.y265_c00001{bottom:584.325000px;}
.y1235_c00001{bottom:584.430000px;}
.yf8f_c00001{bottom:584.550000px;}
.y85_c00001{bottom:584.745000px;}
.y8b0_c00001{bottom:584.925000px;}
.y263_c00001{bottom:584.970000px;}
.y1323_c00001{bottom:585.150000px;}
.y564_c00001{bottom:585.180000px;}
.y264_c00001{bottom:585.195000px;}
.y63a_c00001{bottom:585.405000px;}
.y8db_c00001{bottom:585.630000px;}
.y6be_c00001{bottom:585.825000px;}
.yf73_c00001{bottom:586.050000px;}
.y11f1_c00001{bottom:586.230000px;}
.y87_c00001{bottom:586.245000px;}
.y267_c00001{bottom:586.470000px;}
.ya50_c00001{bottom:586.590000px;}
.y1303_c00001{bottom:586.635000px;}
.y752_c00001{bottom:586.680000px;}
.y86_c00001{bottom:586.905000px;}
.y84_c00001{bottom:587.130000px;}
.y1ac_c00001{bottom:587.325000px;}
.ya0c_c00001{bottom:587.505000px;}
.ydfa_c00001{bottom:587.550000px;}
.y467_c00001{bottom:587.745000px;}
.y848_c00001{bottom:587.955000px;}
.y16e_c00001{bottom:587.970000px;}
.y46a_c00001{bottom:588.180000px;}
.y125d_c00001{bottom:588.300000px;}
.y88_c00001{bottom:588.405000px;}
.y10c_c00001{bottom:588.420000px;}
.y1d4_c00001{bottom:588.630000px;}
.y750_c00001{bottom:588.825000px;}
.yf17_c00001{bottom:588.855000px;}
.y7bb_c00001{bottom:589.050000px;}
.y468_c00001{bottom:589.245000px;}
.yeb9_c00001{bottom:589.275000px;}
.y9c6_c00001{bottom:589.455000px;}
.y639_c00001{bottom:589.470000px;}
.y12d8_c00001{bottom:589.635000px;}
.y8c2_c00001{bottom:589.680000px;}
.y751_c00001{bottom:589.905000px;}
.ydf9_c00001{bottom:589.920000px;}
.y46b_c00001{bottom:590.130000px;}
.y865_c00001{bottom:590.325000px;}
.yd9a_c00001{bottom:590.550000px;}
.y38a_c00001{bottom:590.745000px;}
.y854_c00001{bottom:590.775000px;}
.y4ce_c00001{bottom:590.970000px;}
.y884_c00001{bottom:591.180000px;}
.y469_c00001{bottom:591.405000px;}
.yc1d_c00001{bottom:591.420000px;}
.y32b_c00001{bottom:591.630000px;}
.y388_c00001{bottom:591.825000px;}
.ye9f_c00001{bottom:592.050000px;}
.y87a_c00001{bottom:592.275000px;}
.y768_c00001{bottom:592.470000px;}
.y130d_c00001{bottom:592.560000px;}
.y1110_c00001{bottom:592.650000px;}
.y9ed_c00001{bottom:592.680000px;}
.y71d_c00001{bottom:592.695000px;}
.y389_c00001{bottom:592.905000px;}
.yd1a_c00001{bottom:592.920000px;}
.y71e_c00001{bottom:593.130000px;}
.y8c6_c00001{bottom:593.325000px;}
.y86b_c00001{bottom:593.550000px;}
.y71f_c00001{bottom:593.775000px;}
.y5d5_c00001{bottom:593.970000px;}
.y9f5_c00001{bottom:594.180000px;}
.y5d4_c00001{bottom:594.195000px;}
.y11d3_c00001{bottom:594.285000px;}
.yeba_c00001{bottom:594.420000px;}
.y89e_c00001{bottom:594.825000px;}
.y5d6_c00001{bottom:595.050000px;}
.yfe5_c00001{bottom:595.140000px;}
.yf7e_c00001{bottom:595.470000px;}
.y12c4_c00001{bottom:595.980000px;}
.y9f9_c00001{bottom:596.325000px;}
.yf7f_c00001{bottom:596.550000px;}
.yb33_c00001{bottom:596.745000px;}
.yf7d_c00001{bottom:597.405000px;}
.yb35_c00001{bottom:597.630000px;}
.yb34_c00001{bottom:597.825000px;}
.y125b_c00001{bottom:598.185000px;}
.y25d_c00001{bottom:598.470000px;}
.y12cc_c00001{bottom:598.785000px;}
.yb32_c00001{bottom:598.905000px;}
.y260_c00001{bottom:599.325000px;}
.yac0_c00001{bottom:599.505000px;}
.yf8e_c00001{bottom:599.550000px;}
.yc73_c00001{bottom:599.970000px;}
.y262_c00001{bottom:600.405000px;}
.y25f_c00001{bottom:600.630000px;}
.yf5a_c00001{bottom:600.825000px;}
.y7ba_c00001{bottom:601.050000px;}
.ybbd_c00001{bottom:601.245000px;}
.y25e_c00001{bottom:601.470000px;}
.y7b7_c00001{bottom:601.905000px;}
.y7b6_c00001{bottom:602.130000px;}
.ydf7_c00001{bottom:602.325000px;}
.yf38_c00001{bottom:602.355000px;}
.yfeb_c00001{bottom:602.460000px;}
.ya5d_c00001{bottom:602.535000px;}
.y261_c00001{bottom:602.550000px;}
.y7b9_c00001{bottom:602.970000px;}
.ya94_c00001{bottom:603.180000px;}
.y734_c00001{bottom:603.405000px;}
.ya00_c00001{bottom:603.420000px;}
.ydf8_c00001{bottom:603.630000px;}
.yf39_c00001{bottom:603.825000px;}
.ye35_c00001{bottom:603.855000px;}
.y1242_c00001{bottom:603.915000px;}
.y7b8_c00001{bottom:604.050000px;}
.y7e_c00001{bottom:604.245000px;}
.ya69_c00001{bottom:604.275000px;}
.ybbe_c00001{bottom:604.470000px;}
.y1f9_c00001{bottom:604.680000px;}
.y1d3_c00001{bottom:604.905000px;}
.yf0a_c00001{bottom:604.920000px;}
.y8da_c00001{bottom:605.130000px;}
.y6bd_c00001{bottom:605.325000px;}
.yfd4_c00001{bottom:605.415000px;}
.y83_c00001{bottom:605.550000px;}
.y82_c00001{bottom:605.745000px;}
.ya77_c00001{bottom:605.775000px;}
.y1d2_c00001{bottom:605.970000px;}
.y69d_c00001{bottom:606.180000px;}
.y7f_c00001{bottom:606.405000px;}
.yf3a_c00001{bottom:606.420000px;}
.y1210_c00001{bottom:606.525000px;}
.y543_c00001{bottom:606.630000px;}
.y1d1_c00001{bottom:606.825000px;}
.y5d1_c00001{bottom:607.050000px;}
.y637_c00001{bottom:607.245000px;}
.y81_c00001{bottom:607.470000px;}
.y9b7_c00001{bottom:607.680000px;}
.y71c_c00001{bottom:607.695000px;}
.y80_c00001{bottom:607.905000px;}
.yd19_c00001{bottom:607.920000px;}
.y638_c00001{bottom:608.130000px;}
.y5d3_c00001{bottom:608.325000px;}
.yd18_c00001{bottom:608.550000px;}
.y119f_c00001{bottom:608.655000px;}
.y329_c00001{bottom:608.745000px;}
.y1ab_c00001{bottom:608.970000px;}
.yab0_c00001{bottom:609.180000px;}
.y384_c00001{bottom:609.405000px;}
.yeae_c00001{bottom:609.420000px;}
.y327_c00001{bottom:609.630000px;}
.y50b_c00001{bottom:609.825000px;}
.y5d2_c00001{bottom:610.050000px;}
.y12bd_c00001{bottom:610.200000px;}
.y50a_c00001{bottom:610.245000px;}
.y4cd_c00001{bottom:610.470000px;}
.y326_c00001{bottom:610.905000px;}
.ya29_c00001{bottom:610.920000px;}
.y328_c00001{bottom:611.130000px;}
.y50c_c00001{bottom:611.325000px;}
.y387_c00001{bottom:611.745000px;}
.y32a_c00001{bottom:611.970000px;}
.y1221_c00001{bottom:612.330000px;}
.y383_c00001{bottom:612.405000px;}
.yc12_c00001{bottom:612.420000px;}
.y385_c00001{bottom:612.630000px;}
.y25b_c00001{bottom:612.825000px;}
.yf7c_c00001{bottom:613.050000px;}
.y386_c00001{bottom:613.470000px;}
.yc70_c00001{bottom:613.695000px;}
.y258_c00001{bottom:613.905000px;}
.y1218_c00001{bottom:614.025000px;}
.y259_c00001{bottom:614.130000px;}
.y979_c00001{bottom:614.325000px;}
.y7b0_c00001{bottom:614.550000px;}
.y11cf_c00001{bottom:614.910000px;}
.y25a_c00001{bottom:614.970000px;}
.y12f9_c00001{bottom:615.300000px;}
.y116a_c00001{bottom:615.330000px;}
.y7b1_c00001{bottom:615.405000px;}
.y97a_c00001{bottom:615.630000px;}
.y7b5_c00001{bottom:615.825000px;}
.y25c_c00001{bottom:616.050000px;}
.yb2f_c00001{bottom:616.245000px;}
.y97b_c00001{bottom:616.470000px;}
.y7b2_c00001{bottom:616.905000px;}
.yc71_c00001{bottom:617.130000px;}
.yb2e_c00001{bottom:617.325000px;}
.ydf6_c00001{bottom:617.550000px;}
.y11f2_c00001{bottom:617.730000px;}
.yb30_c00001{bottom:617.745000px;}
.yd15_c00001{bottom:617.775000px;}
.y7b4_c00001{bottom:617.970000px;}
.y128c_c00001{bottom:618.135000px;}
.y7b3_c00001{bottom:618.195000px;}
.yb2d_c00001{bottom:618.405000px;}
.yc72_c00001{bottom:618.420000px;}
.yb31_c00001{bottom:618.630000px;}
.yed1_c00001{bottom:618.825000px;}
.ydf5_c00001{bottom:619.050000px;}
.yd16_c00001{bottom:619.470000px;}
.ye67_c00001{bottom:619.695000px;}
.y1254_c00001{bottom:619.785000px;}
.ye9e_c00001{bottom:619.905000px;}
.ydf4_c00001{bottom:619.920000px;}
.y71a_c00001{bottom:620.130000px;}
.ycd3_c00001{bottom:620.325000px;}
.ya37_c00001{bottom:620.550000px;}
.ybbb_c00001{bottom:620.745000px;}
.yd50_c00001{bottom:620.970000px;}
.y71b_c00001{bottom:621.195000px;}
.y95a_c00001{bottom:621.405000px;}
.yd17_c00001{bottom:621.630000px;}
.y5d0_c00001{bottom:621.825000px;}
.yd51_c00001{bottom:622.050000px;}
.y95b_c00001{bottom:622.245000px;}
.ybbc_c00001{bottom:622.470000px;}
.yfe0_c00001{bottom:622.605000px;}
.yd52_c00001{bottom:622.695000px;}
.y1194_c00001{bottom:622.785000px;}
.y1a8_c00001{bottom:622.905000px;}
.yd53_c00001{bottom:622.920000px;}
.ya39_c00001{bottom:623.130000px;}
.y11df_c00001{bottom:623.250000px;}
.y8d9_c00001{bottom:623.325000px;}
.y100d_c00001{bottom:623.460000px;}
.ya38_c00001{bottom:623.550000px;}
.y563_c00001{bottom:623.745000px;}
.y1a9_c00001{bottom:623.970000px;}
.y562_c00001{bottom:624.180000px;}
.ya3a_c00001{bottom:624.195000px;}
.y7d_c00001{bottom:624.405000px;}
.ydcc_c00001{bottom:624.420000px;}
.y829_c00001{bottom:624.825000px;}
.y12d1_c00001{bottom:624.930000px;}
.ydcb_c00001{bottom:625.050000px;}
.y7b_c00001{bottom:625.245000px;}
.y1335_c00001{bottom:625.470000px;}
.yba7_c00001{bottom:625.680000px;}
.yfda_c00001{bottom:625.830000px;}
.y1f8_c00001{bottom:625.905000px;}
.y91a_c00001{bottom:625.920000px;}
.y1f7_c00001{bottom:626.130000px;}
.y79_c00001{bottom:626.325000px;}
.y10b_c00001{bottom:626.745000px;}
.y1aa_c00001{bottom:626.970000px;}
.y7a_c00001{bottom:627.405000px;}
.y7c_c00001{bottom:627.630000px;}
.ya28_c00001{bottom:627.825000px;}
.yf8d_c00001{bottom:628.050000px;}
.y126b_c00001{bottom:628.140000px;}
.y123f_c00001{bottom:628.200000px;}
.y322_c00001{bottom:628.245000px;}
.y553_c00001{bottom:628.470000px;}
.y12d9_c00001{bottom:628.650000px;}
.y1324_c00001{bottom:628.800000px;}
.y10a_c00001{bottom:628.905000px;}
.yba6_c00001{bottom:628.920000px;}
.y4cc_c00001{bottom:629.130000px;}
.y1304_c00001{bottom:629.280000px;}
.y4cb_c00001{bottom:629.325000px;}
.yb90_c00001{bottom:629.550000px;}
.yfce_c00001{bottom:629.655000px;}
.y509_c00001{bottom:629.745000px;}
.y257_c00001{bottom:629.970000px;}
.y37e_c00001{bottom:630.180000px;}
.y323_c00001{bottom:630.405000px;}
.y325_c00001{bottom:630.630000px;}
.y552_c00001{bottom:630.825000px;}
.ydf1_c00001{bottom:630.855000px;}
.y256_c00001{bottom:631.050000px;}
.y380_c00001{bottom:631.245000px;}
.y4fa_c00001{bottom:631.470000px;}
.y118b_c00001{bottom:631.800000px;}
.y324_c00001{bottom:631.905000px;}
.yc07_c00001{bottom:631.920000px;}
.y381_c00001{bottom:632.130000px;}
.yc1c_c00001{bottom:632.325000px;}
.yf37_c00001{bottom:632.355000px;}
.y132e_c00001{bottom:632.460000px;}
.y7af_c00001{bottom:632.550000px;}
.y119b_c00001{bottom:632.655000px;}
.y11e9_c00001{bottom:632.910000px;}
.y382_c00001{bottom:632.970000px;}
.y1317_c00001{bottom:633.015000px;}
.yf4f_c00001{bottom:633.195000px;}
.y37f_c00001{bottom:633.405000px;}
.ydf3_c00001{bottom:633.630000px;}
.yed0_c00001{bottom:633.825000px;}
.ye9d_c00001{bottom:633.855000px;}
.ydf2_c00001{bottom:634.050000px;}
.ycd0_c00001{bottom:634.275000px;}
.yd14_c00001{bottom:634.470000px;}
.yf09_c00001{bottom:634.695000px;}
.ycd1_c00001{bottom:634.905000px;}
.y719_c00001{bottom:635.130000px;}
.yd13_c00001{bottom:635.325000px;}
.ya32_c00001{bottom:635.550000px;}
.yb2a_c00001{bottom:635.745000px;}
.y12e8_c00001{bottom:635.805000px;}
.yd4f_c00001{bottom:635.970000px;}
.y718_c00001{bottom:636.195000px;}
.ya33_c00001{bottom:636.405000px;}
.ya36_c00001{bottom:636.630000px;}
.y5c9_c00001{bottom:636.825000px;}
.y5c8_c00001{bottom:637.050000px;}
.yb2b_c00001{bottom:637.245000px;}
.ya35_c00001{bottom:637.470000px;}
.ycd2_c00001{bottom:637.695000px;}
.y5ce_c00001{bottom:637.905000px;}
.yd82_c00001{bottom:637.920000px;}
.y5cf_c00001{bottom:638.130000px;}
.y5cd_c00001{bottom:638.325000px;}
.ya34_c00001{bottom:638.550000px;}
.y83a_c00001{bottom:638.700000px;}
.y5ca_c00001{bottom:638.970000px;}
.y5cb_c00001{bottom:639.195000px;}
.y1342_c00001{bottom:639.375000px;}
.ya51_c00001{bottom:639.405000px;}
.y5cc_c00001{bottom:640.050000px;}
.y12e1_c00001{bottom:640.155000px;}
.ybb9_c00001{bottom:640.245000px;}
.yb2c_c00001{bottom:640.470000px;}
.y9bd_c00001{bottom:640.635000px;}
.y11a5_c00001{bottom:640.905000px;}
.ybba_c00001{bottom:641.130000px;}
.y8b1_c00001{bottom:641.505000px;}
.y253_c00001{bottom:641.970000px;}
.y125e_c00001{bottom:642.150000px;}
.y958_c00001{bottom:642.180000px;}
.y11a7_c00001{bottom:642.195000px;}
.y542_c00001{bottom:642.405000px;}
.y833_c00001{bottom:642.555000px;}
.ya0d_c00001{bottom:643.005000px;}
.y11a6_c00001{bottom:643.050000px;}
.y828_c00001{bottom:643.245000px;}
.yc6f_c00001{bottom:643.275000px;}
.y849_c00001{bottom:643.455000px;}
.ya1c_c00001{bottom:643.470000px;}
.y109_c00001{bottom:643.905000px;}
.y959_c00001{bottom:644.130000px;}
.y7ae_c00001{bottom:644.325000px;}
.yf6e_c00001{bottom:644.550000px;}
.y74_c00001{bottom:644.745000px;}
.y254_c00001{bottom:644.970000px;}
.yba2_c00001{bottom:645.180000px;}
.y6a9_c00001{bottom:645.405000px;}
.y1a6_c00001{bottom:645.630000px;}
.y1f6_c00001{bottom:645.825000px;}
.y255_c00001{bottom:646.050000px;}
.y108_c00001{bottom:646.245000px;}
.y855_c00001{bottom:646.275000px;}
.y1a7_c00001{bottom:646.470000px;}
.y885_c00001{bottom:646.680000px;}
.y1236_c00001{bottom:646.860000px;}
.y75_c00001{bottom:646.905000px;}
.y78_c00001{bottom:647.130000px;}
.y16d_c00001{bottom:647.325000px;}
.y716_c00001{bottom:647.550000px;}
.y321_c00001{bottom:647.745000px;}
.y87b_c00001{bottom:647.775000px;}
.y76_c00001{bottom:647.970000px;}
.y89a_c00001{bottom:648.180000px;}
.yf59_c00001{bottom:648.195000px;}
.y77_c00001{bottom:648.405000px;}
.y649_c00001{bottom:648.420000px;}
.y466_c00001{bottom:648.630000px;}
.y4f9_c00001{bottom:648.825000px;}
.yd81_c00001{bottom:648.855000px;}
.y873_c00001{bottom:649.050000px;}
.y31e_c00001{bottom:649.245000px;}
.y9e9_c00001{bottom:649.275000px;}
.y9c7_c00001{bottom:649.455000px;}
.y6aa_c00001{bottom:649.470000px;}
.y9f6_c00001{bottom:649.680000px;}
.y717_c00001{bottom:649.695000px;}
.y465_c00001{bottom:649.905000px;}
.y4ca_c00001{bottom:649.920000px;}
.y320_c00001{bottom:650.130000px;}
.y508_c00001{bottom:650.325000px;}
.y9df_c00001{bottom:650.550000px;}
.y125c_c00001{bottom:650.685000px;}
.y1336_c00001{bottom:650.910000px;}
.y4f8_c00001{bottom:650.970000px;}
.ye9c_c00001{bottom:651.195000px;}
.y31f_c00001{bottom:651.405000px;}
.y37c_c00001{bottom:651.630000px;}
.y5c6_c00001{bottom:651.825000px;}
.y5c3_c00001{bottom:652.050000px;}
.y37b_c00001{bottom:652.470000px;}
.ya31_c00001{bottom:652.695000px;}
.y37d_c00001{bottom:652.905000px;}
.yd12_c00001{bottom:652.920000px;}
.ya49_c00001{bottom:653.055000px;}
.yc05_c00001{bottom:653.130000px;}
.yc06_c00001{bottom:653.325000px;}
.y5c7_c00001{bottom:653.550000px;}
.y12be_c00001{bottom:653.685000px;}
.yac1_c00001{bottom:653.925000px;}
.y5c4_c00001{bottom:653.970000px;}
.y5c5_c00001{bottom:655.050000px;}
.yb27_c00001{bottom:655.245000px;}
.y977_c00001{bottom:656.325000px;}
.yf7b_c00001{bottom:656.550000px;}
.y978_c00001{bottom:656.745000px;}
.ya5e_c00001{bottom:656.955000px;}
.y250_c00001{bottom:656.970000px;}
.yb28_c00001{bottom:657.405000px;}
.yf7a_c00001{bottom:657.630000px;}
.yb29_c00001{bottom:657.825000px;}
.y24d_c00001{bottom:658.050000px;}
.ya52_c00001{bottom:658.230000px;}
.yb26_c00001{bottom:658.470000px;}
.ya95_c00001{bottom:658.680000px;}
.y24f_c00001{bottom:658.905000px;}
.y252_c00001{bottom:659.130000px;}
.y7aa_c00001{bottom:659.325000px;}
.yfec_c00001{bottom:659.460000px;}
.y7ab_c00001{bottom:659.550000px;}
.y130e_c00001{bottom:659.700000px;}
.y12da_c00001{bottom:659.730000px;}
.ybb6_c00001{bottom:659.745000px;}
.ya6a_c00001{bottom:659.775000px;}
.y12cd_c00001{bottom:659.925000px;}
.y251_c00001{bottom:659.970000px;}
.ya88_c00001{bottom:660.180000px;}
.y11b5_c00001{bottom:660.195000px;}
.y11f3_c00001{bottom:660.285000px;}
.yf6d_c00001{bottom:660.405000px;}
.y7ac_c00001{bottom:660.630000px;}
.yf08_c00001{bottom:660.825000px;}
.y24e_c00001{bottom:661.050000px;}
.ybb7_c00001{bottom:661.245000px;}
.yf36_c00001{bottom:661.275000px;}
.y7ad_c00001{bottom:661.470000px;}
.y1211_c00001{bottom:661.605000px;}
.y128d_c00001{bottom:661.635000px;}
.yad1_c00001{bottom:661.680000px;}
.y12af_c00001{bottom:661.695000px;}
.ybb8_c00001{bottom:661.905000px;}
.yc6e_c00001{bottom:661.920000px;}
.yf58_c00001{bottom:662.130000px;}
.yaa6_c00001{bottom:662.325000px;}
.y128f_c00001{bottom:662.505000px;}
.ya78_c00001{bottom:662.550000px;}
.y919_c00001{bottom:662.745000px;}
.yd80_c00001{bottom:662.775000px;}
.y6d_c00001{bottom:662.970000px;}
.y715_c00001{bottom:663.195000px;}
.y636_c00001{bottom:663.405000px;}
.y714_c00001{bottom:663.630000px;}
.yab9_c00001{bottom:663.825000px;}
.yd99_c00001{bottom:663.855000px;}
.ydf0_c00001{bottom:664.050000px;}
.y71_c00001{bottom:664.245000px;}
.y6bc_c00001{bottom:664.470000px;}
.y635_c00001{bottom:664.680000px;}
.ye65_c00001{bottom:664.695000px;}
.y107_c00001{bottom:664.905000px;}
.ye66_c00001{bottom:664.920000px;}
.y827_c00001{bottom:665.130000px;}
.y73_c00001{bottom:665.325000px;}
.ydb1_c00001{bottom:665.550000px;}
.y16c_c00001{bottom:665.745000px;}
.y11d4_c00001{bottom:665.865000px;}
.y6e_c00001{bottom:665.970000px;}
.y1222_c00001{bottom:666.090000px;}
.ye9b_c00001{bottom:666.195000px;}
.y6f_c00001{bottom:666.405000px;}
.y72_c00001{bottom:666.630000px;}
.y104_c00001{bottom:666.825000px;}
.y1240_c00001{bottom:667.035000px;}
.ya2f_c00001{bottom:667.050000px;}
.y116b_c00001{bottom:667.155000px;}
.y319_c00001{bottom:667.245000px;}
.y70_c00001{bottom:667.470000px;}
.ydca_c00001{bottom:667.695000px;}
.y12fa_c00001{bottom:667.875000px;}
.y105_c00001{bottom:667.905000px;}
.ydb0_c00001{bottom:667.920000px;}
.y464_c00001{bottom:668.130000px;}
.y4c9_c00001{bottom:668.325000px;}
.ya30_c00001{bottom:668.550000px;}
.y31c_c00001{bottom:668.745000px;}
.y106_c00001{bottom:668.970000px;}
.yfe6_c00001{bottom:669.060000px;}
.y1188_c00001{bottom:669.195000px;}
.y318_c00001{bottom:669.405000px;}
.y31a_c00001{bottom:669.630000px;}
.y9b6_c00001{bottom:669.825000px;}
.y5c2_c00001{bottom:670.050000px;}
.y378_c00001{bottom:670.245000px;}
.y31d_c00001{bottom:670.470000px;}
.y31b_c00001{bottom:670.905000px;}
.y77d_c00001{bottom:670.920000px;}
.y37a_c00001{bottom:671.130000px;}
.y11a0_c00001{bottom:671.655000px;}
.y767_c00001{bottom:671.970000px;}
.y11fc_c00001{bottom:672.195000px;}
.y379_c00001{bottom:672.405000px;}
.y127a_c00001{bottom:672.825000px;}
.yf99_c00001{bottom:673.050000px;}
.y7a8_c00001{bottom:673.470000px;}
.y100e_c00001{bottom:673.875000px;}
.y24b_c00001{bottom:673.905000px;}
.y12c5_c00001{bottom:673.980000px;}
.y1219_c00001{bottom:674.010000px;}
.y1243_c00001{bottom:674.055000px;}
.y24c_c00001{bottom:674.130000px;}
.y7a6_c00001{bottom:674.325000px;}
.y7a5_c00001{bottom:674.550000px;}
.yb22_c00001{bottom:674.745000px;}
.yfdb_c00001{bottom:674.910000px;}
.yc6c_c00001{bottom:674.970000px;}
.y7a7_c00001{bottom:675.405000px;}
.y7a9_c00001{bottom:675.630000px;}
.yf07_c00001{bottom:675.825000px;}
.y24a_c00001{bottom:676.050000px;}
.yb25_c00001{bottom:676.245000px;}
.y713_c00001{bottom:676.275000px;}
.yf6c_c00001{bottom:676.470000px;}
.y10d3_c00001{bottom:676.605000px;}
.yf72_c00001{bottom:676.695000px;}
.yb21_c00001{bottom:676.905000px;}
.yfe1_c00001{bottom:677.025000px;}
.y11d0_c00001{bottom:677.055000px;}
.y711_c00001{bottom:677.130000px;}
.ye64_c00001{bottom:677.325000px;}
.yeef_c00001{bottom:677.355000px;}
.yc6d_c00001{bottom:677.550000px;}
.yee5_c00001{bottom:677.775000px;}
.yd11_c00001{bottom:677.970000px;}
.y12e9_c00001{bottom:678.180000px;}
.y712_c00001{bottom:678.195000px;}
.yb23_c00001{bottom:678.405000px;}
.yfae_c00001{bottom:678.630000px;}
.yd0e_c00001{bottom:678.825000px;}
.yd10_c00001{bottom:679.050000px;}
.ybb5_c00001{bottom:679.245000px;}
.yb24_c00001{bottom:679.470000px;}
.ya2e_c00001{bottom:679.905000px;}
.yd7f_c00001{bottom:680.130000px;}
.ybb4_c00001{bottom:680.325000px;}
.yccf_c00001{bottom:680.550000px;}
.ybb3_c00001{bottom:680.745000px;}
.y83b_c00001{bottom:680.925000px;}
.y955_c00001{bottom:680.970000px;}
.yd98_c00001{bottom:681.195000px;}
.y8d8_c00001{bottom:681.405000px;}
.yd4e_c00001{bottom:681.420000px;}
.y1325_c00001{bottom:681.585000px;}
.y1195_c00001{bottom:681.600000px;}
.ybb2_c00001{bottom:681.630000px;}
.y5be_c00001{bottom:681.825000px;}
.y5c1_c00001{bottom:682.050000px;}
.y956_c00001{bottom:682.245000px;}
.y8d7_c00001{bottom:682.470000px;}
.ydc9_c00001{bottom:682.695000px;}
.y68_c00001{bottom:682.905000px;}
.yd0f_c00001{bottom:682.920000px;}
.y5bd_c00001{bottom:683.130000px;}
.y957_c00001{bottom:683.325000px;}
.yfd5_c00001{bottom:683.415000px;}
.y1237_c00001{bottom:683.535000px;}
.y5bf_c00001{bottom:683.550000px;}
.y67_c00001{bottom:683.745000px;}
.y561_c00001{bottom:683.970000px;}
.y5c0_c00001{bottom:684.195000px;}
.y634_c00001{bottom:684.405000px;}
.y66_c00001{bottom:684.630000px;}
.y1f5_c00001{bottom:684.825000px;}
.y11ea_c00001{bottom:685.155000px;}
.y6b_c00001{bottom:685.245000px;}
.y826_c00001{bottom:685.470000px;}
.y125f_c00001{bottom:685.590000px;}
.yc24_c00001{bottom:685.680000px;}
.y6a_c00001{bottom:685.905000px;}
.y12d6_c00001{bottom:686.025000px;}
.y132f_c00001{bottom:686.085000px;}
.y69_c00001{bottom:686.130000px;}
.y103_c00001{bottom:686.325000px;}
.yc04_c00001{bottom:686.550000px;}
.y463_c00001{bottom:686.745000px;}
.y1a5_c00001{bottom:686.970000px;}
.y6c_c00001{bottom:687.405000px;}
.y74f_c00001{bottom:687.630000px;}
.y248_c00001{bottom:687.825000px;}
.y249_c00001{bottom:688.050000px;}
.y315_c00001{bottom:688.245000px;}
.y16b_c00001{bottom:688.470000px;}
.y244_c00001{bottom:688.905000px;}
.y317_c00001{bottom:689.130000px;}
.y316_c00001{bottom:689.325000px;}
.y7a4_c00001{bottom:689.550000px;}
.y9be_c00001{bottom:689.655000px;}
.ye60_c00001{bottom:689.775000px;}
.y247_c00001{bottom:689.970000px;}
.y246_c00001{bottom:690.195000px;}
.y314_c00001{bottom:690.405000px;}
.y70f_c00001{bottom:690.630000px;}
.ydec_c00001{bottom:690.825000px;}
.y245_c00001{bottom:691.050000px;}
.y551_c00001{bottom:691.470000px;}
.y710_c00001{bottom:691.695000px;}
.yfcf_c00001{bottom:691.800000px;}
.ye61_c00001{bottom:691.905000px;}
.yc6b_c00001{bottom:691.920000px;}
.y1255_c00001{bottom:692.010000px;}
.ydef_c00001{bottom:692.130000px;}
.ya4a_c00001{bottom:692.325000px;}
.ye34_c00001{bottom:692.355000px;}
.y7a3_c00001{bottom:692.550000px;}
.ydee_c00001{bottom:692.970000px;}
.y1305_c00001{bottom:693.105000px;}
.ye9a_c00001{bottom:693.405000px;}
.yded_c00001{bottom:693.420000px;}
.ye62_c00001{bottom:693.630000px;}
.ycca_c00001{bottom:693.825000px;}
.yd0d_c00001{bottom:693.855000px;}
.yd4d_c00001{bottom:694.050000px;}
.yccc_c00001{bottom:694.470000px;}
.yccd_c00001{bottom:694.905000px;}
.ye63_c00001{bottom:694.920000px;}
.yd97_c00001{bottom:695.130000px;}
.y5bc_c00001{bottom:695.325000px;}
.yd7e_c00001{bottom:695.550000px;}
.y10f7_c00001{bottom:695.655000px;}
.y1337_c00001{bottom:695.730000px;}
.yb20_c00001{bottom:695.745000px;}
.ycce_c00001{bottom:695.970000px;}
.ya2a_c00001{bottom:696.195000px;}
.y126c_c00001{bottom:696.360000px;}
.ya2d_c00001{bottom:696.405000px;}
.ydaf_c00001{bottom:696.420000px;}
.y8b2_c00001{bottom:696.585000px;}
.yd7d_c00001{bottom:696.630000px;}
.yccb_c00001{bottom:697.050000px;}
.y119c_c00001{bottom:697.155000px;}
.ya2c_c00001{bottom:697.470000px;}
.ya2b_c00001{bottom:697.695000px;}
.ya53_c00001{bottom:697.800000px;}
.yb1f_c00001{bottom:697.905000px;}
.yd7c_c00001{bottom:697.920000px;}
.ya0e_c00001{bottom:698.505000px;}
.y5bb_c00001{bottom:698.550000px;}
.ybb0_c00001{bottom:698.745000px;}
.y1260_c00001{bottom:699.180000px;}
.y84a_c00001{bottom:700.035000px;}
.y435_c00001{bottom:700.050000px;}
.y130f_c00001{bottom:700.230000px;}
.ybb1_c00001{bottom:700.245000px;}
.yb8c_c00001{bottom:700.470000px;}
.y12ce_c00001{bottom:700.605000px;}
.y866_c00001{bottom:700.905000px;}
.y437_c00001{bottom:701.130000px;}
.y11e0_c00001{bottom:701.265000px;}
.y9d7_c00001{bottom:701.325000px;}
.y23f_c00001{bottom:701.550000px;}
.y954_c00001{bottom:701.745000px;}
.y856_c00001{bottom:701.775000px;}
.y8d6_c00001{bottom:701.970000px;}
.y886_c00001{bottom:702.180000px;}
.y436_c00001{bottom:702.195000px;}
.y65_c00001{bottom:702.405000px;}
.y12db_c00001{bottom:702.510000px;}
.y434_c00001{bottom:702.630000px;}
.y240_c00001{bottom:702.825000px;}
.yc6a_c00001{bottom:702.855000px;}
.yb8b_c00001{bottom:703.050000px;}
.y61_c00001{bottom:703.245000px;}
.y87c_c00001{bottom:703.275000px;}
.y6bb_c00001{bottom:703.470000px;}
.y1f4_c00001{bottom:703.680000px;}
.y243_c00001{bottom:703.695000px;}
.y7a2_c00001{bottom:703.905000px;}
.y241_c00001{bottom:704.130000px;}
.y60_c00001{bottom:704.325000px;}
.yf06_c00001{bottom:704.355000px;}
.y86c_c00001{bottom:704.550000px;}
.y12bf_c00001{bottom:704.685000px;}
.y63_c00001{bottom:704.745000px;}
.y9e5_c00001{bottom:704.775000px;}
.y242_c00001{bottom:704.970000px;}
.y100f_c00001{bottom:705.150000px;}
.ya01_c00001{bottom:705.180000px;}
.y70e_c00001{bottom:705.195000px;}
.y5f_c00001{bottom:705.405000px;}
.y101_c00001{bottom:705.630000px;}
.y100_c00001{bottom:705.825000px;}
.yf35_c00001{bottom:705.855000px;}
.y9e0_c00001{bottom:706.050000px;}
.y460_c00001{bottom:706.245000px;}
.y62_c00001{bottom:706.470000px;}
.y64_c00001{bottom:706.905000px;}
.y6a8_c00001{bottom:707.130000px;}
.y462_c00001{bottom:707.325000px;}
.y74e_c00001{bottom:707.550000px;}
.y30f_c00001{bottom:707.745000px;}
.ydae_c00001{bottom:707.775000px;}
.y102_c00001{bottom:707.970000px;}
.y12ea_c00001{bottom:708.135000px;}
.y461_c00001{bottom:708.405000px;}
.y312_c00001{bottom:708.630000px;}
.y313_c00001{bottom:708.825000px;}
.yd7a_c00001{bottom:708.855000px;}
.yac2_c00001{bottom:709.005000px;}
.ycc9_c00001{bottom:709.050000px;}
.y310_c00001{bottom:709.470000px;}
.y311_c00001{bottom:709.905000px;}
.yd7b_c00001{bottom:710.130000px;}
.y5ba_c00001{bottom:710.325000px;}
.y128e_c00001{bottom:710.460000px;}
.ydc7_c00001{bottom:710.550000px;}
.yc03_c00001{bottom:710.745000px;}
.ya5f_c00001{bottom:710.955000px;}
.yc0c_c00001{bottom:710.970000px;}
.y5b7_c00001{bottom:711.405000px;}
.yd4c_c00001{bottom:711.420000px;}
.y12e2_c00001{bottom:711.465000px;}
.y5b5_c00001{bottom:711.630000px;}
.yc02_c00001{bottom:711.825000px;}
.y539_c00001{bottom:712.050000px;}
.y5b6_c00001{bottom:712.470000px;}
.y5b9_c00001{bottom:712.695000px;}
.ydc8_c00001{bottom:712.920000px;}
.y5b8_c00001{bottom:713.550000px;}
.y1196_c00001{bottom:714.105000px;}
.yaa1_c00001{bottom:714.180000px;}
.y433_c00001{bottom:714.630000px;}
.yb1e_c00001{bottom:714.825000px;}
.y101a_c00001{bottom:715.140000px;}
.yb1d_c00001{bottom:715.245000px;}
.ya6b_c00001{bottom:715.275000px;}
.y1238_c00001{bottom:715.425000px;}
.yb89_c00001{bottom:715.470000px;}
.ya96_c00001{bottom:715.680000px;}
.y432_c00001{bottom:715.695000px;}
.y1212_c00001{bottom:715.800000px;}
.yb88_c00001{bottom:715.905000px;}
.y53a_c00001{bottom:715.920000px;}
.y431_c00001{bottom:716.130000px;}
.y23c_c00001{bottom:716.325000px;}
.ya83_c00001{bottom:716.550000px;}
.ya8e_c00001{bottom:716.775000px;}
.y10bb_c00001{bottom:716.835000px;}
.y23d_c00001{bottom:716.970000px;}
.y430_c00001{bottom:717.195000px;}
.y23e_c00001{bottom:717.405000px;}
.y70c_c00001{bottom:717.630000px;}
.y1099_c00001{bottom:717.690000px;}
.y237_c00001{bottom:717.825000px;}
.y236_c00001{bottom:718.050000px;}
.yb8a_c00001{bottom:718.470000px;}
.y42f_c00001{bottom:718.695000px;}
.y23a_c00001{bottom:718.905000px;}
.y70d_c00001{bottom:719.130000px;}
.y7a0_c00001{bottom:719.325000px;}
.y23b_c00001{bottom:719.550000px;}
.ybae_c00001{bottom:719.745000px;}
.y83c_c00001{bottom:719.925000px;}
.y79f_c00001{bottom:719.970000px;}
.y238_c00001{bottom:720.195000px;}
.y917_c00001{bottom:720.405000px;}
.ybaf_c00001{bottom:720.630000px;}
.ye5d_c00001{bottom:720.825000px;}
.ye5c_c00001{bottom:720.855000px;}
.y239_c00001{bottom:721.050000px;}
.y953_c00001{bottom:721.245000px;}
.yc67_c00001{bottom:721.470000px;}
.y7a1_c00001{bottom:721.695000px;}
.y1a4_c00001{bottom:721.905000px;}
.yc69_c00001{bottom:721.920000px;}
.ye5f_c00001{bottom:722.130000px;}
.y918_c00001{bottom:722.325000px;}
.ye32_c00001{bottom:722.355000px;}
.yc68_c00001{bottom:722.550000px;}
.y5a_c00001{bottom:722.745000px;}
.y6a7_c00001{bottom:722.970000px;}
.y1290_c00001{bottom:723.090000px;}
.yba1_c00001{bottom:723.180000px;}
.ye5e_c00001{bottom:723.195000px;}
.y69c_c00001{bottom:723.405000px;}
.yf05_c00001{bottom:723.420000px;}
.y8d4_c00001{bottom:723.630000px;}
.y5c_c00001{bottom:723.825000px;}
.yd79_c00001{bottom:724.050000px;}
.y1244_c00001{bottom:724.155000px;}
.y5e_c00001{bottom:724.245000px;}
.y1223_c00001{bottom:724.425000px;}
.y8d5_c00001{bottom:724.470000px;}
.yd4b_c00001{bottom:724.695000px;}
.y59_c00001{bottom:724.905000px;}
.yf34_c00001{bottom:724.920000px;}
.y16a_c00001{bottom:725.130000px;}
.y1d0_c00001{bottom:725.325000px;}
.y537_c00001{bottom:725.550000px;}
.y1062_c00001{bottom:725.610000px;}
.y1338_c00001{bottom:725.730000px;}
.yff_c00001{bottom:725.745000px;}
.y5b_c00001{bottom:725.970000px;}
.ye33_c00001{bottom:726.195000px;}
.y107d_c00001{bottom:726.255000px;}
.y5d_c00001{bottom:726.405000px;}
.ycc8_c00001{bottom:726.420000px;}
.y633_c00001{bottom:726.630000px;}
.y45f_c00001{bottom:726.825000px;}
.ya45_c00001{bottom:727.050000px;}
.y30e_c00001{bottom:727.245000px;}
.y4c8_c00001{bottom:727.470000px;}
.y1344_c00001{bottom:727.635000px;}
.y1326_c00001{bottom:727.785000px;}
.y45d_c00001{bottom:727.905000px;}
.yfdc_c00001{bottom:728.010000px;}
.y30d_c00001{bottom:728.130000px;}
.yfed_c00001{bottom:728.160000px;}
.y30b_c00001{bottom:728.325000px;}
.y1318_c00001{bottom:728.415000px;}
.y45e_c00001{bottom:728.970000px;}
.y42e_c00001{bottom:729.195000px;}
.y30c_c00001{bottom:729.405000px;}
.y538_c00001{bottom:729.420000px;}
.y976_c00001{bottom:729.630000px;}
.y10af_c00001{bottom:729.750000px;}
.y10c5_c00001{bottom:730.155000px;}
.y766_c00001{bottom:730.470000px;}
.y42d_c00001{bottom:730.695000px;}
.y1071_c00001{bottom:730.755000px;}
.y42c_c00001{bottom:730.905000px;}
.y42b_c00001{bottom:731.130000px;}
.y709_c00001{bottom:731.550000px;}
.y121a_c00001{bottom:731.730000px;}
.yf87_c00001{bottom:731.970000px;}
.y70a_c00001{bottom:732.195000px;}
.y1261_c00001{bottom:732.300000px;}
.y235_c00001{bottom:732.405000px;}
.y70b_c00001{bottom:732.420000px;}
.y42a_c00001{bottom:732.630000px;}
.y79e_c00001{bottom:732.825000px;}
.yf6b_c00001{bottom:733.050000px;}
.y116c_c00001{bottom:733.140000px;}
.y5b2_c00001{bottom:733.245000px;}
.yf6a_c00001{bottom:733.470000px;}
.y79c_c00001{bottom:733.905000px;}
.y11d5_c00001{bottom:734.025000px;}
.y5b3_c00001{bottom:734.130000px;}
.y5b4_c00001{bottom:734.550000px;}
.y114c_c00001{bottom:734.685000px;}
.y1310_c00001{bottom:734.700000px;}
.yb1a_c00001{bottom:734.745000px;}
.yc64_c00001{bottom:734.970000px;}
.y5b1_c00001{bottom:735.405000px;}
.y11a1_c00001{bottom:735.510000px;}
.yc66_c00001{bottom:735.630000px;}
.yb1c_c00001{bottom:735.825000px;}
.y79d_c00001{bottom:736.050000px;}
.yc65_c00001{bottom:736.470000px;}
.yfe2_c00001{bottom:736.590000px;}
.yb19_c00001{bottom:736.905000px;}
.y111d_c00001{bottom:737.055000px;}
.y126d_c00001{bottom:737.085000px;}
.yf86_c00001{bottom:737.130000px;}
.ye98_c00001{bottom:737.325000px;}
.y1010_c00001{bottom:737.505000px;}
.ydeb_c00001{bottom:737.550000px;}
.ydad_c00001{bottom:737.775000px;}
.yb1b_c00001{bottom:737.970000px;}
.y108d_c00001{bottom:738.060000px;}
.yd4a_c00001{bottom:738.405000px;}
.ye99_c00001{bottom:738.630000px;}
.ybab_c00001{bottom:738.825000px;}
.ydc6_c00001{bottom:738.855000px;}
.ycc7_c00001{bottom:739.050000px;}
.ybac_c00001{bottom:739.245000px;}
.ye31_c00001{bottom:739.470000px;}
.yecf_c00001{bottom:739.695000px;}
.ycc4_c00001{bottom:739.905000px;}
.ye82_c00001{bottom:739.920000px;}
.ybad_c00001{bottom:740.130000px;}
.ye2f_c00001{bottom:740.550000px;}
.y951_c00001{bottom:740.745000px;}
.yd0c_c00001{bottom:740.970000px;}
.ycc6_c00001{bottom:741.195000px;}
.yfe7_c00001{bottom:741.300000px;}
.y560_c00001{bottom:741.405000px;}
.ye30_c00001{bottom:741.420000px;}
.y1111_c00001{bottom:741.555000px;}
.y536_c00001{bottom:741.630000px;}
.y104a_c00001{bottom:741.750000px;}
.y952_c00001{bottom:741.825000px;}
.ycc5_c00001{bottom:742.050000px;}
.y6ec_c00001{bottom:742.245000px;}
.y8d3_c00001{bottom:742.470000px;}
.yfc_c00001{bottom:742.680000px;}
.y429_c00001{bottom:742.695000px;}
.y632_c00001{bottom:742.905000px;}
.y1306_c00001{bottom:743.085000px;}
.y428_c00001{bottom:743.130000px;}
.y57_c00001{bottom:743.325000px;}
.y55f_c00001{bottom:743.550000px;}
.y58_c00001{bottom:743.745000px;}
.y6ed_c00001{bottom:743.970000px;}
.y427_c00001{bottom:744.195000px;}
.y4c7_c00001{bottom:744.405000px;}
.y535_c00001{bottom:744.420000px;}
.y1133_c00001{bottom:744.525000px;}
.y56_c00001{bottom:744.630000px;}
.y54_c00001{bottom:744.825000px;}
.y424_c00001{bottom:745.050000px;}
.y1026_c00001{bottom:745.140000px;}
.y45c_c00001{bottom:745.245000px;}
.y426_c00001{bottom:745.275000px;}
.y53_c00001{bottom:745.470000px;}
.yc21_c00001{bottom:745.680000px;}
.y425_c00001{bottom:745.695000px;}
.y55_c00001{bottom:745.905000px;}
.yfd_c00001{bottom:746.130000px;}
.y233_c00001{bottom:746.325000px;}
.y308_c00001{bottom:746.745000px;}
.yc5e_c00001{bottom:746.775000px;}
.y1cf_c00001{bottom:746.970000px;}
.y707_c00001{bottom:747.195000px;}
.y1163_c00001{bottom:747.300000px;}
.yfe_c00001{bottom:747.405000px;}
.y708_c00001{bottom:747.420000px;}
.y230_c00001{bottom:747.630000px;}
.y10a5_c00001{bottom:747.750000px;}
.y309_c00001{bottom:747.825000px;}
.y11eb_c00001{bottom:747.960000px;}
.y79a_c00001{bottom:748.050000px;}
.y1128_c00001{bottom:748.365000px;}
.y232_c00001{bottom:748.470000px;}
.y234_c00001{bottom:748.695000px;}
.y306_c00001{bottom:748.905000px;}
.yb8f_c00001{bottom:748.920000px;}
.y307_c00001{bottom:749.130000px;}
.yc5f_c00001{bottom:749.325000px;}
.y231_c00001{bottom:749.550000px;}
.y10ed_c00001{bottom:749.865000px;}
.y1056_c00001{bottom:749.910000px;}
.y30a_c00001{bottom:749.970000px;}
.y118c_c00001{bottom:750.300000px;}
.y12cf_c00001{bottom:750.360000px;}
.ydea_c00001{bottom:750.405000px;}
.y12c6_c00001{bottom:750.510000px;}
.yc62_c00001{bottom:750.630000px;}
.ye5b_c00001{bottom:750.825000px;}
.y1033_c00001{bottom:750.930000px;}
.y8b3_c00001{bottom:751.005000px;}
.y79b_c00001{bottom:751.050000px;}
.y5ac_c00001{bottom:751.470000px;}
.y12fb_c00001{bottom:751.590000px;}
.y11e1_c00001{bottom:751.680000px;}
.yc61_c00001{bottom:751.695000px;}
.ye5a_c00001{bottom:751.905000px;}
.yc63_c00001{bottom:751.920000px;}
.yf04_c00001{bottom:752.130000px;}
.ye97_c00001{bottom:752.325000px;}
.yc60_c00001{bottom:752.550000px;}
.y5ab_c00001{bottom:752.745000px;}
.yb18_c00001{bottom:752.970000px;}
.yd48_c00001{bottom:753.405000px;}
.ye59_c00001{bottom:753.420000px;}
.yece_c00001{bottom:753.630000px;}
.y103e_c00001{bottom:753.750000px;}
.ycc1_c00001{bottom:753.825000px;}
.ya0f_c00001{bottom:754.005000px;}
.yd49_c00001{bottom:754.050000px;}
.yb16_c00001{bottom:754.245000px;}
.y84b_c00001{bottom:754.455000px;}
.y5af_c00001{bottom:754.470000px;}
.yf16_c00001{bottom:754.695000px;}
.y5b0_c00001{bottom:754.905000px;}
.yeee_c00001{bottom:754.920000px;}
.yfd0_c00001{bottom:755.010000px;}
.y1256_c00001{bottom:755.085000px;}
.y5ae_c00001{bottom:755.130000px;}
.y9c8_c00001{bottom:755.535000px;}
.ycc3_c00001{bottom:755.550000px;}
.y533_c00001{bottom:755.775000px;}
.y5ad_c00001{bottom:755.970000px;}
.y534_c00001{bottom:756.195000px;}
.y861_c00001{bottom:756.405000px;}
.ycc0_c00001{bottom:756.420000px;}
.y423_c00001{bottom:756.630000px;}
.y9da_c00001{bottom:756.825000px;}
.y10f8_c00001{bottom:756.960000px;}
.ycc2_c00001{bottom:757.050000px;}
.y857_c00001{bottom:757.275000px;}
.yb17_c00001{bottom:757.470000px;}
.y887_c00001{bottom:757.680000px;}
.y422_c00001{bottom:757.695000px;}
.ya54_c00001{bottom:757.800000px;}
.y9d8_c00001{bottom:757.905000px;}
.y9ea_c00001{bottom:758.325000px;}
.y41e_c00001{bottom:758.550000px;}
.ybaa_c00001{bottom:758.745000px;}
.y420_c00001{bottom:758.775000px;}
.y8a3_c00001{bottom:759.180000px;}
.y421_c00001{bottom:759.195000px;}
.y10e1_c00001{bottom:759.300000px;}
.y94e_c00001{bottom:759.405000px;}
.y705_c00001{bottom:759.630000px;}
.y9bf_c00001{bottom:759.690000px;}
.y8c7_c00001{bottom:759.825000px;}
.y1140_c00001{bottom:759.960000px;}
.y950_c00001{bottom:760.245000px;}
.yfd6_c00001{bottom:760.590000px;}
.y41f_c00001{bottom:760.695000px;}
.y4f_c00001{bottom:760.905000px;}
.y706_c00001{bottom:760.920000px;}
.y119d_c00001{bottom:761.010000px;}
.y9e1_c00001{bottom:761.130000px;}
.y22f_c00001{bottom:761.325000px;}
.y8d2_c00001{bottom:761.745000px;}
.y1f3_c00001{bottom:761.970000px;}
.y733_c00001{bottom:762.180000px;}
.y22c_c00001{bottom:762.405000px;}
.y94f_c00001{bottom:762.630000px;}
.y798_c00001{bottom:762.825000px;}
.y797_c00001{bottom:763.050000px;}
.y1224_c00001{bottom:763.200000px;}
.y50_c00001{bottom:763.245000px;}
.y1197_c00001{bottom:763.425000px;}
.y22b_c00001{bottom:763.470000px;}
.y22e_c00001{bottom:763.695000px;}
.y1ce_c00001{bottom:763.905000px;}
.y52_c00001{bottom:764.130000px;}
.y12eb_c00001{bottom:764.190000px;}
.y51_c00001{bottom:764.325000px;}
.yac3_c00001{bottom:764.505000px;}
.y22d_c00001{bottom:764.550000px;}
.y121b_c00001{bottom:764.700000px;}
.yfb_c00001{bottom:764.745000px;}
.yf33_c00001{bottom:764.775000px;}
.y541_c00001{bottom:764.970000px;}
.y4e_c00001{bottom:765.405000px;}
.y169_c00001{bottom:765.630000px;}
.y765_c00001{bottom:765.825000px;}
.y799_c00001{bottom:766.050000px;}
.y304_c00001{bottom:766.245000px;}
.ya60_c00001{bottom:766.455000px;}
.y4f6_c00001{bottom:766.470000px;}
.yf9_c00001{bottom:766.905000px;}
.yfa_c00001{bottom:766.920000px;}
.y83d_c00001{bottom:767.010000px;}
.y45b_c00001{bottom:767.130000px;}
.y300_c00001{bottom:767.325000px;}
.y9b5_c00001{bottom:767.550000px;}
.y302_c00001{bottom:767.745000px;}
.ydc5_c00001{bottom:767.775000px;}
.y74d_c00001{bottom:767.970000px;}
.ye58_c00001{bottom:768.195000px;}
.y301_c00001{bottom:768.405000px;}
.ya27_c00001{bottom:768.420000px;}
.y4f7_c00001{bottom:768.630000px;}
.ydab_c00001{bottom:768.825000px;}
.ycbf_c00001{bottom:769.050000px;}
.y305_c00001{bottom:769.470000px;}
.ya84_c00001{bottom:769.680000px;}
.yecd_c00001{bottom:769.695000px;}
.y303_c00001{bottom:769.905000px;}
.y77c_c00001{bottom:769.920000px;}
.y41d_c00001{bottom:770.130000px;}
.ycbe_c00001{bottom:770.550000px;}
.ya6c_c00001{bottom:770.775000px;}
.yd0b_c00001{bottom:770.970000px;}
.ya97_c00001{bottom:771.180000px;}
.y41c_c00001{bottom:771.195000px;}
.y532_c00001{bottom:771.405000px;}
.ydac_c00001{bottom:771.420000px;}
.y41b_c00001{bottom:771.630000px;}
.ya79_c00001{bottom:772.050000px;}
.y5aa_c00001{bottom:772.245000px;}
.y41a_c00001{bottom:772.695000px;}
.y4c5_c00001{bottom:772.905000px;}
.y702_c00001{bottom:773.130000px;}
.y1339_c00001{bottom:773.190000px;}
.yaa7_c00001{bottom:773.325000px;}
.yb12_c00001{bottom:773.745000px;}
.yd78_c00001{bottom:773.775000px;}
.y4c4_c00001{bottom:773.970000px;}
.y703_c00001{bottom:774.195000px;}
.y4c3_c00001{bottom:774.405000px;}
.y704_c00001{bottom:774.420000px;}
.y419_c00001{bottom:774.630000px;}
.y4c6_c00001{bottom:775.050000px;}
.y1011_c00001{bottom:775.230000px;}
.y225_c00001{bottom:775.470000px;}
.yad2_c00001{bottom:775.680000px;}
.yb13_c00001{bottom:775.905000px;}
.yb15_c00001{bottom:776.130000px;}
.y1311_c00001{bottom:776.280000px;}
.y229_c00001{bottom:776.325000px;}
.y22a_c00001{bottom:776.550000px;}
.y126e_c00001{bottom:776.925000px;}
.yb14_c00001{bottom:776.970000px;}
.y226_c00001{bottom:777.405000px;}
.y223_c00001{bottom:777.630000px;}
.y793_c00001{bottom:777.825000px;}
.y791_c00001{bottom:778.050000px;}
.yba9_c00001{bottom:778.245000px;}
.y228_c00001{bottom:778.470000px;}
.y227_c00001{bottom:778.695000px;}
.y794_c00001{bottom:778.905000px;}
.yc5c_c00001{bottom:779.130000px;}
.yde8_c00001{bottom:779.325000px;}
.y224_c00001{bottom:779.550000px;}
.y94d_c00001{bottom:779.745000px;}
.y11e2_c00001{bottom:779.925000px;}
.y796_c00001{bottom:779.970000px;}
.y795_c00001{bottom:780.195000px;}
.y55e_c00001{bottom:780.405000px;}
.yc5d_c00001{bottom:780.420000px;}
.yde9_c00001{bottom:780.630000px;}
.y10d4_c00001{bottom:780.750000px;}
.yf76_c00001{bottom:780.825000px;}
.y792_c00001{bottom:781.050000px;}
.y8d1_c00001{bottom:781.245000px;}
.y6eb_c00001{bottom:781.470000px;}
.ye2e_c00001{bottom:781.695000px;}
.y1a3_c00001{bottom:781.905000px;}
.y94c_c00001{bottom:782.130000px;}
.y1f2_c00001{bottom:782.325000px;}
.ydaa_c00001{bottom:782.355000px;}
.ycbd_c00001{bottom:782.550000px;}
.y4d_c00001{bottom:782.745000px;}
.y1cd_c00001{bottom:782.970000px;}
.y69b_c00001{bottom:783.180000px;}
.ye57_c00001{bottom:783.195000px;}
.y1291_c00001{bottom:783.300000px;}
.y8d0_c00001{bottom:783.405000px;}
.ye56_c00001{bottom:783.420000px;}
.y4b_c00001{bottom:783.630000px;}
.y1cc_c00001{bottom:783.825000px;}
.y69a_c00001{bottom:784.050000px;}
.yf6_c00001{bottom:784.245000px;}
.y540_c00001{bottom:784.470000px;}
.y45a_c00001{bottom:784.680000px;}
.y418_c00001{bottom:784.695000px;}
.y4c_c00001{bottom:784.905000px;}
.y1a2_c00001{bottom:784.920000px;}
.y101b_c00001{bottom:785.025000px;}
.y1345_c00001{bottom:785.100000px;}
.yf7_c00001{bottom:785.130000px;}
.y9af_c00001{bottom:785.325000px;}
.y10b0_c00001{bottom:785.415000px;}
.y700_c00001{bottom:785.550000px;}
.y2fc_c00001{bottom:785.745000px;}
.y4a_c00001{bottom:785.970000px;}
.y417_c00001{bottom:786.195000px;}
.yf5_c00001{bottom:786.405000px;}
.yead_c00001{bottom:786.420000px;}
.y1262_c00001{bottom:786.585000px;}
.y416_c00001{bottom:786.630000px;}
.y4c1_c00001{bottom:786.825000px;}
.y4c2_c00001{bottom:787.050000px;}
.y2ff_c00001{bottom:787.245000px;}
.yf8_c00001{bottom:787.470000px;}
.y114d_c00001{bottom:787.605000px;}
.y415_c00001{bottom:787.695000px;}
.y2fa_c00001{bottom:787.905000px;}
.y701_c00001{bottom:787.920000px;}
.y2fd_c00001{bottom:788.130000px;}
.y4be_c00001{bottom:788.550000px;}
.y820_c00001{bottom:788.745000px;}
.y2fb_c00001{bottom:788.970000px;}
.y4c0_c00001{bottom:789.195000px;}
.y1112_c00001{bottom:789.300000px;}
.y2fe_c00001{bottom:789.405000px;}
.y9b4_c00001{bottom:789.420000px;}
.y4bf_c00001{bottom:790.050000px;}
.yfa0_c00001{bottom:790.470000px;}
.y1319_c00001{bottom:790.695000px;}
.y5a7_c00001{bottom:790.905000px;}
.y821_c00001{bottom:791.130000px;}
.yfbd_c00001{bottom:791.550000px;}
.y1327_c00001{bottom:791.700000px;}
.y5a5_c00001{bottom:791.745000px;}
.y81f_c00001{bottom:791.970000px;}
.y111e_c00001{bottom:792.255000px;}
.y10c6_c00001{bottom:792.300000px;}
.y109a_c00001{bottom:792.330000px;}
.yfbc_c00001{bottom:792.405000px;}
.y10bc_c00001{bottom:792.510000px;}
.y5a3_c00001{bottom:792.825000px;}
.y1134_c00001{bottom:793.005000px;}
.y78f_c00001{bottom:793.050000px;}
.y5a6_c00001{bottom:793.245000px;}
.ye55_c00001{bottom:793.275000px;}
.yb0f_c00001{bottom:793.470000px;}
.y5a8_c00001{bottom:793.905000px;}
.y104b_c00001{bottom:794.025000px;}
.y5a4_c00001{bottom:794.130000px;}
.yde6_c00001{bottom:794.325000px;}
.yf02_c00001{bottom:794.550000px;}
.yb0d_c00001{bottom:794.745000px;}
.y5a9_c00001{bottom:794.970000px;}
.yf4e_c00001{bottom:795.195000px;}
.yb0c_c00001{bottom:795.405000px;}
.yb11_c00001{bottom:795.630000px;}
.yf32_c00001{bottom:795.825000px;}
.y790_c00001{bottom:796.050000px;}
.yb10_c00001{bottom:796.470000px;}
.yde7_c00001{bottom:796.695000px;}
.yb0e_c00001{bottom:796.905000px;}
.yf03_c00001{bottom:796.920000px;}
.y10a6_c00001{bottom:797.025000px;}
.y531_c00001{bottom:797.130000px;}
.ycbc_c00001{bottom:797.325000px;}
.yd75_c00001{bottom:797.355000px;}
.y1164_c00001{bottom:797.535000px;}
.ycba_c00001{bottom:797.550000px;}
.yd47_c00001{bottom:797.970000px;}
.y52f_c00001{bottom:798.195000px;}
.ycb8_c00001{bottom:798.405000px;}
.ye54_c00001{bottom:798.420000px;}
.y414_c00001{bottom:798.630000px;}
.yd77_c00001{bottom:798.825000px;}
.yda9_c00001{bottom:799.050000px;}
.y530_c00001{bottom:799.275000px;}
.ycbb_c00001{bottom:799.470000px;}
.y1057_c00001{bottom:799.605000px;}
.y413_c00001{bottom:799.695000px;}
.y55d_c00001{bottom:799.905000px;}
.ye81_c00001{bottom:800.130000px;}
.y8cf_c00001{bottom:800.325000px;}
.ycb9_c00001{bottom:800.550000px;}
.y916_c00001{bottom:800.745000px;}
.y825_c00001{bottom:800.970000px;}
.y412_c00001{bottom:801.195000px;}
.y49_c00001{bottom:801.405000px;}
.yd76_c00001{bottom:801.420000px;}
.y411_c00001{bottom:801.630000px;}
.y4bc_c00001{bottom:801.825000px;}
.y1063_c00001{bottom:801.960000px;}
.yd0a_c00001{bottom:802.050000px;}
.y45_c00001{bottom:802.245000px;}
.yf2_c00001{bottom:802.470000px;}
.y1293_c00001{bottom:802.800000px;}
.y4bd_c00001{bottom:802.905000px;}
.y44_c00001{bottom:803.130000px;}
.y167_c00001{bottom:803.325000px;}
.y4bb_c00001{bottom:803.550000px;}
.y1072_c00001{bottom:803.685000px;}
.y168_c00001{bottom:803.745000px;}
.y46_c00001{bottom:803.970000px;}
.y4ba_c00001{bottom:804.195000px;}
.y48_c00001{bottom:804.405000px;}
.yf4_c00001{bottom:804.630000px;}
.y6a6_c00001{bottom:804.825000px;}
.y4b9_c00001{bottom:805.050000px;}
.y2f4_c00001{bottom:805.245000px;}
.y47_c00001{bottom:805.470000px;}
.y4b8_c00001{bottom:805.695000px;}
.y103f_c00001{bottom:805.800000px;}
.yf3_c00001{bottom:805.905000px;}
.y459_c00001{bottom:806.130000px;}
.y2f5_c00001{bottom:806.325000px;}
.y131a_c00001{bottom:806.730000px;}
.y2f7_c00001{bottom:806.745000px;}
.y458_c00001{bottom:806.970000px;}
.y2f3_c00001{bottom:807.405000px;}
.y6ff_c00001{bottom:807.420000px;}
.y2f8_c00001{bottom:807.630000px;}
.y108e_c00001{bottom:807.750000px;}
.y78c_c00001{bottom:807.825000px;}
.y8b4_c00001{bottom:808.005000px;}
.yf57_c00001{bottom:808.050000px;}
.y1239_c00001{bottom:808.245000px;}
.yf30_c00001{bottom:808.275000px;}
.y2f9_c00001{bottom:808.470000px;}
.y78b_c00001{bottom:808.695000px;}
.y2f6_c00001{bottom:808.905000px;}
.y77b_c00001{bottom:808.920000px;}
.y81c_c00001{bottom:809.130000px;}
.yf75_c00001{bottom:809.325000px;}
.y9c9_c00001{bottom:809.535000px;}
.y78e_c00001{bottom:809.550000px;}
.yd45_c00001{bottom:809.775000px;}
.y84c_c00001{bottom:809.955000px;}
.y81d_c00001{bottom:809.970000px;}
.ya55_c00001{bottom:810.150000px;}
.y1346_c00001{bottom:810.375000px;}
.y81b_c00001{bottom:810.405000px;}
.yc5b_c00001{bottom:810.420000px;}
.y52e_c00001{bottom:810.630000px;}
.yf60_c00001{bottom:810.825000px;}
.yf49_c00001{bottom:810.855000px;}
.y1027_c00001{bottom:810.975000px;}
.y78d_c00001{bottom:811.050000px;}
.y5a2_c00001{bottom:811.245000px;}
.y52c_c00001{bottom:811.275000px;}
.y81e_c00001{bottom:811.470000px;}
.y888_c00001{bottom:811.680000px;}
.y52d_c00001{bottom:811.695000px;}
.yd46_c00001{bottom:811.905000px;}
.y1225_c00001{bottom:812.010000px;}
.y52b_c00001{bottom:812.130000px;}
.y862_c00001{bottom:812.325000px;}
.y10f9_c00001{bottom:812.460000px;}
.yd09_c00001{bottom:812.550000px;}
.y5a0_c00001{bottom:812.745000px;}
.y858_c00001{bottom:812.775000px;}
.ye2d_c00001{bottom:812.970000px;}
.y1141_c00001{bottom:813.135000px;}
.y890_c00001{bottom:813.180000px;}
.y410_c00001{bottom:813.195000px;}
.y5a1_c00001{bottom:813.405000px;}
.yf31_c00001{bottom:813.420000px;}
.y40e_c00001{bottom:813.630000px;}
.y9db_c00001{bottom:813.825000px;}
.y1105_c00001{bottom:813.975000px;}
.y86d_c00001{bottom:814.050000px;}
.yb09_c00001{bottom:814.245000px;}
.y9cf_c00001{bottom:814.275000px;}
.yd08_c00001{bottom:814.470000px;}
.y89b_c00001{bottom:814.680000px;}
.y40f_c00001{bottom:814.695000px;}
.yb0b_c00001{bottom:814.905000px;}
.ye96_c00001{bottom:814.920000px;}
.y1155_c00001{bottom:815.025000px;}
.y40d_c00001{bottom:815.130000px;}
.y1034_c00001{bottom:815.250000px;}
.y9e2_c00001{bottom:815.550000px;}
.yb0a_c00001{bottom:815.970000px;}
.y9f7_c00001{bottom:816.180000px;}
.ybdc_c00001{bottom:816.195000px;}
.yb08_c00001{bottom:816.405000px;}
.ye80_c00001{bottom:816.420000px;}
.y9e6_c00001{bottom:816.630000px;}
.y10e2_c00001{bottom:816.750000px;}
.y89f_c00001{bottom:816.825000px;}
.yac4_c00001{bottom:817.035000px;}
.yee4_c00001{bottom:817.050000px;}
.ybdd_c00001{bottom:817.695000px;}
.y4b7_c00001{bottom:817.905000px;}
.y10ee_c00001{bottom:818.010000px;}
.y10d5_c00001{bottom:818.055000px;}
.y9fa_c00001{bottom:818.325000px;}
.y915_c00001{bottom:819.405000px;}
.y4b6_c00001{bottom:820.050000px;}
.y42_c00001{bottom:820.245000px;}
.y732_c00001{bottom:820.680000px;}
.y166_c00001{bottom:820.905000px;}
.y1f1_c00001{bottom:821.325000px;}
.y3e_c00001{bottom:821.745000px;}
.ya61_c00001{bottom:821.955000px;}
.y1a1_c00001{bottom:821.970000px;}
.yf0_c00001{bottom:822.405000px;}
.y40_c00001{bottom:822.630000px;}
.y164_c00001{bottom:822.825000px;}
.y1165_c00001{bottom:823.035000px;}
.yf69_c00001{bottom:823.050000px;}
.yef_c00001{bottom:823.245000px;}
.y41_c00001{bottom:823.470000px;}
.y74c_c00001{bottom:823.680000px;}
.y6fe_c00001{bottom:823.695000px;}
.y3f_c00001{bottom:823.905000px;}
.y1f0_c00001{bottom:823.920000px;}
.y12fc_c00001{bottom:824.100000px;}
.y43_c00001{bottom:824.130000px;}
.y165_c00001{bottom:824.325000px;}
.ye53_c00001{bottom:824.355000px;}
.y631_c00001{bottom:824.550000px;}
.y457_c00001{bottom:824.745000px;}
.yf1_c00001{bottom:824.970000px;}
.ya89_c00001{bottom:825.180000px;}
.y789_c00001{bottom:825.195000px;}
.yee_c00001{bottom:825.405000px;}
.y40c_c00001{bottom:825.630000px;}
.y2f2_c00001{bottom:825.825000px;}
.y1198_c00001{bottom:825.915000px;}
.y78a_c00001{bottom:826.050000px;}
.y2ef_c00001{bottom:826.245000px;}
.ya6d_c00001{bottom:826.275000px;}
.y699_c00001{bottom:826.470000px;}
.ya98_c00001{bottom:826.680000px;}
.y40b_c00001{bottom:826.695000px;}
.y2ec_c00001{bottom:826.905000px;}
.ya26_c00001{bottom:826.920000px;}
.y2f1_c00001{bottom:827.130000px;}
.yc11_c00001{bottom:827.325000px;}
.y407_c00001{bottom:827.550000px;}
.y819_c00001{bottom:827.745000px;}
.y409_c00001{bottom:827.775000px;}
.y2ee_c00001{bottom:827.970000px;}
.y83e_c00001{bottom:828.150000px;}
.y40a_c00001{bottom:828.195000px;}
.y2ed_c00001{bottom:828.405000px;}
.yf2f_c00001{bottom:828.420000px;}
.y2f0_c00001{bottom:828.630000px;}
.y779_c00001{bottom:828.825000px;}
.y81a_c00001{bottom:829.050000px;}
.ycb7_c00001{bottom:829.470000px;}
.y9c0_c00001{bottom:829.650000px;}
.y408_c00001{bottom:829.695000px;}
.y59d_c00001{bottom:829.905000px;}
.yd74_c00001{bottom:829.920000px;}
.y77a_c00001{bottom:830.130000px;}
.ycb6_c00001{bottom:830.550000px;}
.y59f_c00001{bottom:830.745000px;}
.y778_c00001{bottom:830.970000px;}
.ybdb_c00001{bottom:831.195000px;}
.y1263_c00001{bottom:831.510000px;}
.y4b5_c00001{bottom:831.825000px;}
.y777_c00001{bottom:832.050000px;}
.y59b_c00001{bottom:832.245000px;}
.y1328_c00001{bottom:832.875000px;}
.y4b4_c00001{bottom:832.905000px;}
.y4b2_c00001{bottom:833.130000px;}
.yb05_c00001{bottom:833.745000px;}
.y59c_c00001{bottom:833.970000px;}
.y59e_c00001{bottom:834.405000px;}
.yb07_c00001{bottom:834.630000px;}
.y4b3_c00001{bottom:835.050000px;}
.y10d7_c00001{bottom:835.155000px;}
.yf98_c00001{bottom:835.470000px;}
.yb04_c00001{bottom:835.905000px;}
.y12ec_c00001{bottom:836.055000px;}
.yfb6_c00001{bottom:836.325000px;}
.yfb7_c00001{bottom:836.550000px;}
.yb06_c00001{bottom:836.970000px;}
.y1129_c00001{bottom:837.195000px;}
.y784_c00001{bottom:837.405000px;}
.yac5_c00001{bottom:837.630000px;}
.yf4d_c00001{bottom:837.825000px;}
.y786_c00001{bottom:838.050000px;}
.y788_c00001{bottom:838.470000px;}
.y783_c00001{bottom:838.695000px;}
.yde5_c00001{bottom:838.905000px;}
.y406_c00001{bottom:839.130000px;}
.yb78_c00001{bottom:839.325000px;}
.y787_c00001{bottom:839.550000px;}
.y94b_c00001{bottom:839.745000px;}
.y785_c00001{bottom:839.970000px;}
.y405_c00001{bottom:840.195000px;}
.yeb_c00001{bottom:840.405000px;}
.y131b_c00001{bottom:840.585000px;}
.y1a0_c00001{bottom:840.630000px;}
.y3d_c00001{bottom:840.825000px;}
.ye2b_c00001{bottom:840.855000px;}
.yb77_c00001{bottom:841.050000px;}
.y114e_c00001{bottom:841.185000px;}
.y19e_c00001{bottom:841.245000px;}
.y6ea_c00001{bottom:841.470000px;}
.y404_c00001{bottom:841.695000px;}
.y19d_c00001{bottom:841.905000px;}
.y403_c00001{bottom:842.130000px;}
.y162_c00001{bottom:842.325000px;}
.ydc4_c00001{bottom:842.355000px;}
.yb79_c00001{bottom:842.550000px;}
.yec_c00001{bottom:842.745000px;}
.y3a_c00001{bottom:842.970000px;}
.yecc_c00001{bottom:843.195000px;}
.y39_c00001{bottom:843.405000px;}
.ye2c_c00001{bottom:843.420000px;}
.y1292_c00001{bottom:843.525000px;}
.y163_c00001{bottom:843.630000px;}
.y698_c00001{bottom:843.825000px;}
.y19f_c00001{bottom:844.050000px;}
.y456_c00001{bottom:844.245000px;}
.y3b_c00001{bottom:844.470000px;}
.ybda_c00001{bottom:844.695000px;}
.y3c_c00001{bottom:844.905000px;}
.y1ca_c00001{bottom:844.920000px;}
.yed_c00001{bottom:845.130000px;}
.y454_c00001{bottom:845.325000px;}
.yd07_c00001{bottom:845.550000px;}
.y2ea_c00001{bottom:845.745000px;}
.y1cb_c00001{bottom:845.970000px;}
.y112e_c00001{bottom:846.180000px;}
.y455_c00001{bottom:846.405000px;}
.y2eb_c00001{bottom:846.630000px;}
.y2e9_c00001{bottom:846.825000px;}
.yeb8_c00001{bottom:847.050000px;}
.y101c_c00001{bottom:847.335000px;}
.y2e7_c00001{bottom:847.470000px;}
.y133a_c00001{bottom:847.635000px;}
.y1113_c00001{bottom:847.800000px;}
.y2e8_c00001{bottom:847.905000px;}
.y975_c00001{bottom:847.920000px;}
.y123a_c00001{bottom:847.965000px;}
.y4b0_c00001{bottom:848.130000px;}
.y770_c00001{bottom:848.325000px;}
.y817_c00001{bottom:848.745000px;}
.y4af_c00001{bottom:848.970000px;}
.yc2a_c00001{bottom:849.195000px;}
.y772_c00001{bottom:849.405000px;}
.y771_c00001{bottom:849.630000px;}
.y774_c00001{bottom:849.825000px;}
.y4b1_c00001{bottom:850.050000px;}
.ya56_c00001{bottom:850.155000px;}
.yc57_c00001{bottom:850.275000px;}
.yf97_c00001{bottom:850.470000px;}
.y59a_c00001{bottom:850.680000px;}
.y818_c00001{bottom:850.905000px;}
.y10a7_c00001{bottom:851.025000px;}
.y773_c00001{bottom:851.130000px;}
.yfb5_c00001{bottom:851.325000px;}
.y12d0_c00001{bottom:851.475000px;}
.y775_c00001{bottom:851.550000px;}
.y597_c00001{bottom:851.745000px;}
.y776_c00001{bottom:851.970000px;}
.y1142_c00001{bottom:852.180000px;}
.y6fd_c00001{bottom:852.195000px;}
.yc58_c00001{bottom:852.405000px;}
.y402_c00001{bottom:852.630000px;}
.y599_c00001{bottom:852.825000px;}
.y1058_c00001{bottom:852.975000px;}
.y12fd_c00001{bottom:853.005000px;}
.yfa7_c00001{bottom:853.050000px;}
.yb01_c00001{bottom:853.245000px;}
.yc5a_c00001{bottom:853.470000px;}
.y1106_c00001{bottom:853.680000px;}
.y401_c00001{bottom:853.695000px;}
.y10c7_c00001{bottom:853.800000px;}
.y598_c00001{bottom:853.905000px;}
.yb00_c00001{bottom:854.130000px;}
.yb03_c00001{bottom:854.325000px;}
.yc59_c00001{bottom:854.550000px;}
.yb02_c00001{bottom:854.970000px;}
.y3ff_c00001{bottom:855.195000px;}
.yaff_c00001{bottom:855.405000px;}
.y400_c00001{bottom:855.420000px;}
.y3fd_c00001{bottom:855.630000px;}
.yeed_c00001{bottom:855.825000px;}
.yd41_c00001{bottom:855.855000px;}
.yb74_c00001{bottom:856.050000px;}
.y1073_c00001{bottom:856.185000px;}
.yb75_c00001{bottom:856.470000px;}
.y3fe_c00001{bottom:856.695000px;}
.yd42_c00001{bottom:856.905000px;}
.ye52_c00001{bottom:856.920000px;}
.y3fc_c00001{bottom:857.130000px;}
.yd73_c00001{bottom:857.325000px;}
.ycb4_c00001{bottom:857.355000px;}
.yb76_c00001{bottom:857.550000px;}
.yd44_c00001{bottom:857.970000px;}
.y10d6_c00001{bottom:858.180000px;}
.ybd9_c00001{bottom:858.195000px;}
.y913_c00001{bottom:858.405000px;}
.ye2a_c00001{bottom:858.420000px;}
.yd06_c00001{bottom:858.630000px;}
.y108f_c00001{bottom:858.750000px;}
.y94a_c00001{bottom:858.825000px;}
.yd43_c00001{bottom:859.050000px;}
.y948_c00001{bottom:859.245000px;}
.ycb5_c00001{bottom:859.470000px;}
.y10bd_c00001{bottom:859.590000px;}
.yd72_c00001{bottom:859.695000px;}
.y19c_c00001{bottom:859.905000px;}
.ydc3_c00001{bottom:859.920000px;}
.y11ec_c00001{bottom:860.085000px;}
.y1064_c00001{bottom:860.460000px;}
.yc29_c00001{bottom:860.550000px;}
.y19a_c00001{bottom:860.745000px;}
.y648_c00001{bottom:860.970000px;}
.y10fa_c00001{bottom:861.180000px;}
.y19b_c00001{bottom:861.405000px;}
.y914_c00001{bottom:861.630000px;}
.y1294_c00001{bottom:861.750000px;}
.y38_c00001{bottom:861.825000px;}
.y8b5_c00001{bottom:862.005000px;}
.y1ef_c00001{bottom:862.050000px;}
.yea_c00001{bottom:862.245000px;}
.y62f_c00001{bottom:862.470000px;}
.y112a_c00001{bottom:862.800000px;}
.y10e3_c00001{bottom:862.860000px;}
.y37_c00001{bottom:862.905000px;}
.y949_c00001{bottom:862.920000px;}
.y35_c00001{bottom:863.130000px;}
.ye9_c00001{bottom:863.325000px;}
.y10b1_c00001{bottom:863.415000px;}
.y76e_c00001{bottom:863.550000px;}
.y453_c00001{bottom:863.745000px;}
.y1028_c00001{bottom:863.865000px;}
.y36_c00001{bottom:863.970000px;}
.y1040_c00001{bottom:864.300000px;}
.ye6_c00001{bottom:864.405000px;}
.ye7_c00001{bottom:864.420000px;}
.y1035_c00001{bottom:864.555000px;}
.y630_c00001{bottom:864.630000px;}
.y451_c00001{bottom:864.825000px;}
.ya10_c00001{bottom:865.005000px;}
.y84d_c00001{bottom:865.035000px;}
.yc1b_c00001{bottom:865.050000px;}
.y111f_c00001{bottom:865.185000px;}
.y2e3_c00001{bottom:865.245000px;}
.y9ca_c00001{bottom:865.455000px;}
.ye8_c00001{bottom:865.470000px;}
.y450_c00001{bottom:865.905000px;}
.ya25_c00001{bottom:865.920000px;}
.y3fb_c00001{bottom:866.130000px;}
.y550_c00001{bottom:866.325000px;}
.y76f_c00001{bottom:866.550000px;}
.yde4_c00001{bottom:866.775000px;}
.y452_c00001{bottom:866.970000px;}
.y8c3_c00001{bottom:867.180000px;}
.y52a_c00001{bottom:867.195000px;}
.y2e5_c00001{bottom:867.405000px;}
.y2e6_c00001{bottom:867.630000px;}
.ye51_c00001{bottom:867.855000px;}
.yf4c_c00001{bottom:868.050000px;}
.y816_c00001{bottom:868.245000px;}
.y859_c00001{bottom:868.275000px;}
.y2e4_c00001{bottom:868.470000px;}
.y889_c00001{bottom:868.680000px;}
.y3fa_c00001{bottom:868.695000px;}
.yb73_c00001{bottom:868.905000px;}
.y3f8_c00001{bottom:869.130000px;}
.y9d9_c00001{bottom:869.325000px;}
.yf2e_c00001{bottom:869.355000px;}
.y86e_c00001{bottom:869.550000px;}
.y83f_c00001{bottom:869.655000px;}
.y87d_c00001{bottom:869.775000px;}
.y596_c00001{bottom:869.970000px;}
.y89c_c00001{bottom:870.180000px;}
.y3f9_c00001{bottom:870.195000px;}
.y595_c00001{bottom:870.405000px;}
.y3f7_c00001{bottom:870.630000px;}
.y109b_c00001{bottom:870.780000px;}
.y8be_c00001{bottom:870.825000px;}
.y874_c00001{bottom:871.050000px;}
.y1156_c00001{bottom:871.185000px;}
.y594_c00001{bottom:871.245000px;}
.yd71_c00001{bottom:871.470000px;}
.ybd5_c00001{bottom:871.695000px;}
.y9c1_c00001{bottom:871.800000px;}
.ycb2_c00001{bottom:871.905000px;}
.ybd6_c00001{bottom:871.920000px;}
.ybd7_c00001{bottom:872.130000px;}
.y112f_c00001{bottom:872.280000px;}
.y593_c00001{bottom:872.325000px;}
.yac6_c00001{bottom:872.505000px;}
.y9e3_c00001{bottom:872.550000px;}
.yafe_c00001{bottom:872.745000px;}
.yd40_c00001{bottom:872.970000px;}
.y1226_c00001{bottom:873.135000px;}
.ybd8_c00001{bottom:873.195000px;}
.ya1b_c00001{bottom:873.405000px;}
.ye95_c00001{bottom:873.420000px;}
.yafb_c00001{bottom:873.630000px;}
.ya16_c00001{bottom:873.825000px;}
.yd96_c00001{bottom:874.050000px;}
.ya62_c00001{bottom:874.455000px;}
.yafd_c00001{bottom:874.470000px;}
.yd05_c00001{bottom:874.695000px;}
.yafa_c00001{bottom:874.905000px;}
.ycb3_c00001{bottom:874.920000px;}
.yafc_c00001{bottom:875.130000px;}
.yd04_c00001{bottom:875.550000px;}
.y1166_c00001{bottom:876.300000px;}
.y4ac_c00001{bottom:876.405000px;}
.y12ed_c00001{bottom:876.600000px;}
.y6fb_c00001{bottom:876.825000px;}
.y4ad_c00001{bottom:877.470000px;}
.ya85_c00001{bottom:877.680000px;}
.y4ae_c00001{bottom:878.130000px;}
.y4ab_c00001{bottom:878.550000px;}
.ya6e_c00001{bottom:878.775000px;}
.y6fa_c00001{bottom:878.970000px;}
.ya99_c00001{bottom:879.180000px;}
.y1ee_c00001{bottom:879.405000px;}
.y529_c00001{bottom:879.630000px;}
.y198_c00001{bottom:879.825000px;}
.y6fc_c00001{bottom:880.050000px;}
.y2f_c00001{bottom:880.245000px;}
.y199_c00001{bottom:880.470000px;}
.y104d_c00001{bottom:880.575000px;}
.y1143_c00001{bottom:880.635000px;}
.y222_c00001{bottom:880.680000px;}
.y3f6_c00001{bottom:880.695000px;}
.y912_c00001{bottom:880.905000px;}
.y3f5_c00001{bottom:881.130000px;}
.y33_c00001{bottom:881.325000px;}
.yf56_c00001{bottom:881.550000px;}
.y34_c00001{bottom:881.745000px;}
.y8ce_c00001{bottom:881.970000px;}
.y74b_c00001{bottom:882.180000px;}
.y3f4_c00001{bottom:882.195000px;}
.y30_c00001{bottom:882.405000px;}
.y104c_c00001{bottom:882.555000px;}
.y2e_c00001{bottom:882.630000px;}
.y31_c00001{bottom:882.825000px;}
.yf68_c00001{bottom:883.050000px;}
.y107e_c00001{bottom:883.155000px;}
.y44d_c00001{bottom:883.245000px;}
.y197_c00001{bottom:883.470000px;}
.y1329_c00001{bottom:883.635000px;}
.y984_c00001{bottom:883.680000px;}
.y3f2_c00001{bottom:883.695000px;}
.y32_c00001{bottom:883.905000px;}
.y3f3_c00001{bottom:883.920000px;}
.ye4_c00001{bottom:884.130000px;}
.y1107_c00001{bottom:884.250000px;}
.y44e_c00001{bottom:884.325000px;}
.yc56_c00001{bottom:884.550000px;}
.y10ef_c00001{bottom:884.655000px;}
.y2de_c00001{bottom:884.745000px;}
.yd95_c00001{bottom:884.775000px;}
.y1c9_c00001{bottom:884.970000px;}
.y3f1_c00001{bottom:885.195000px;}
.y74a_c00001{bottom:885.405000px;}
.ye5_c00001{bottom:885.420000px;}
.y44f_c00001{bottom:885.630000px;}
.y2e1_c00001{bottom:885.825000px;}
.yd3f_c00001{bottom:885.855000px;}
.yb72_c00001{bottom:886.050000px;}
.y2df_c00001{bottom:886.470000px;}
.ybd4_c00001{bottom:886.695000px;}
.y2e0_c00001{bottom:886.905000px;}
.yb8e_c00001{bottom:886.920000px;}
.y2e2_c00001{bottom:887.130000px;}
.y812_c00001{bottom:887.325000px;}
.ydc2_c00001{bottom:887.550000px;}
.y76d_c00001{bottom:887.745000px;}
.y974_c00001{bottom:887.970000px;}
.yd03_c00001{bottom:888.195000px;}
.ya23_c00001{bottom:888.405000px;}
.yd3e_c00001{bottom:888.420000px;}
.y1312_c00001{bottom:888.585000px;}
.y815_c00001{bottom:888.630000px;}
.y814_c00001{bottom:888.825000px;}
.ycb1_c00001{bottom:889.050000px;}
.yf2d_c00001{bottom:889.275000px;}
.y76c_c00001{bottom:889.470000px;}
.yee3_c00001{bottom:889.695000px;}
.y813_c00001{bottom:889.905000px;}
.yf48_c00001{bottom:889.920000px;}
.y4aa_c00001{bottom:890.325000px;}
.ya24_c00001{bottom:890.550000px;}
.y592_c00001{bottom:890.745000px;}
.y76b_c00001{bottom:890.970000px;}
.y4a7_c00001{bottom:891.405000px;}
.y4a6_c00001{bottom:891.825000px;}
.y4a2_c00001{bottom:892.050000px;}
.yaf9_c00001{bottom:892.245000px;}
.y4a9_c00001{bottom:892.470000px;}
.y4a8_c00001{bottom:892.695000px;}
.y4a4_c00001{bottom:892.905000px;}
.y528_c00001{bottom:893.130000px;}
.y4a5_c00001{bottom:893.550000px;}
.y10fb_c00001{bottom:893.655000px;}
.y4a3_c00001{bottom:893.970000px;}
.y527_c00001{bottom:894.195000px;}
.y114f_c00001{bottom:894.300000px;}
.yaf8_c00001{bottom:894.405000px;}
.y3ef_c00001{bottom:894.630000px;}
.yfb4_c00001{bottom:894.825000px;}
.y6f9_c00001{bottom:895.050000px;}
.yaf7_c00001{bottom:895.470000px;}
.y3ec_c00001{bottom:895.695000px;}
.yf96_c00001{bottom:895.905000px;}
.y3f0_c00001{bottom:895.920000px;}
.y1059_c00001{bottom:896.085000px;}
.yf4b_c00001{bottom:896.325000px;}
.y10d8_c00001{bottom:896.460000px;}
.yf9f_c00001{bottom:896.970000px;}
.y3ed_c00001{bottom:897.195000px;}
.yc54_c00001{bottom:897.405000px;}
.y3ee_c00001{bottom:897.420000px;}
.y3eb_c00001{bottom:897.630000px;}
.yf01_c00001{bottom:897.825000px;}
.yde3_c00001{bottom:898.050000px;}
.yc53_c00001{bottom:898.470000px;}
.y2d_c00001{bottom:898.905000px;}
.ybd3_c00001{bottom:899.130000px;}
.yf2c_c00001{bottom:899.325000px;}
.ye29_c00001{bottom:899.355000px;}
.yc55_c00001{bottom:899.550000px;}
.y8cd_c00001{bottom:899.745000px;}
.yda8_c00001{bottom:899.775000px;}
.y196_c00001{bottom:899.970000px;}
.yb71_c00001{bottom:900.195000px;}
.y193_c00001{bottom:900.405000px;}
.ye50_c00001{bottom:900.630000px;}
.y53f_c00001{bottom:900.825000px;}
.ydc1_c00001{bottom:900.855000px;}
.y946_c00001{bottom:901.050000px;}
.y29_c00001{bottom:901.245000px;}
.y195_c00001{bottom:901.470000px;}
.y8cc_c00001{bottom:901.905000px;}
.y911_c00001{bottom:901.920000px;}
.y2b_c00001{bottom:902.130000px;}
.y2c_c00001{bottom:902.325000px;}
.y194_c00001{bottom:902.550000px;}
.y12ee_c00001{bottom:902.730000px;}
.ye3_c00001{bottom:902.745000px;}
.y10a8_c00001{bottom:902.925000px;}
.y161_c00001{bottom:902.970000px;}
.y749_c00001{bottom:903.180000px;}
.y947_c00001{bottom:903.195000px;}
.y2a_c00001{bottom:903.405000px;}
.y6ba_c00001{bottom:903.420000px;}
.y160_c00001{bottom:903.630000px;}
.y62e_c00001{bottom:903.825000px;}
.yba5_c00001{bottom:904.050000px;}
.y2db_c00001{bottom:904.245000px;}
.y6a5_c00001{bottom:904.275000px;}
.y4f5_c00001{bottom:904.470000px;}
.yee2_c00001{bottom:904.695000px;}
.y54f_c00001{bottom:904.905000px;}
.ye2_c00001{bottom:904.920000px;}
.y44b_c00001{bottom:905.130000px;}
.y54e_c00001{bottom:905.325000px;}
.yeac_c00001{bottom:905.550000px;}
.y764_c00001{bottom:905.745000px;}
.y748_c00001{bottom:905.970000px;}
.y80f_c00001{bottom:906.180000px;}
.y2dc_c00001{bottom:906.405000px;}
.y983_c00001{bottom:906.420000px;}
.y1114_c00001{bottom:906.525000px;}
.y1036_c00001{bottom:906.585000px;}
.y763_c00001{bottom:906.630000px;}
.ya20_c00001{bottom:906.825000px;}
.y810_c00001{bottom:907.245000px;}
.y44c_c00001{bottom:907.470000px;}
.y2dd_c00001{bottom:907.905000px;}
.y525_c00001{bottom:908.130000px;}
.yb8d_c00001{bottom:908.325000px;}
.y1074_c00001{bottom:908.685000px;}
.ya22_c00001{bottom:908.970000px;}
.y526_c00001{bottom:909.195000px;}
.y591_c00001{bottom:909.405000px;}
.y3ea_c00001{bottom:909.420000px;}
.y109c_c00001{bottom:909.585000px;}
.y3e9_c00001{bottom:909.630000px;}
.yf94_c00001{bottom:909.825000px;}
.ya21_c00001{bottom:910.050000px;}
.y1090_c00001{bottom:910.185000px;}
.y58e_c00001{bottom:910.245000px;}
.y811_c00001{bottom:910.470000px;}
.y3e7_c00001{bottom:910.695000px;}
.yf95_c00001{bottom:910.905000px;}
.y3e8_c00001{bottom:910.920000px;}
.y1130_c00001{bottom:911.085000px;}
.y3e5_c00001{bottom:911.130000px;}
.yc51_c00001{bottom:911.325000px;}
.yc52_c00001{bottom:911.550000px;}
.yaf4_c00001{bottom:911.745000px;}
.yde1_c00001{bottom:911.775000px;}
.yfa8_c00001{bottom:911.970000px;}
.y3e6_c00001{bottom:912.195000px;}
.y590_c00001{bottom:912.405000px;}
.y10c8_c00001{bottom:912.555000px;}
.y58f_c00001{bottom:912.630000px;}
.yaf6_c00001{bottom:912.825000px;}
.y1295_c00001{bottom:912.960000px;}
.ye4f_c00001{bottom:913.050000px;}
.yf14_c00001{bottom:913.275000px;}
.yf00_c00001{bottom:913.470000px;}
.y112b_c00001{bottom:913.680000px;}
.ybd2_c00001{bottom:913.695000px;}
.y133b_c00001{bottom:913.800000px;}
.yaf3_c00001{bottom:913.905000px;}
.y10e4_c00001{bottom:914.085000px;}
.yaf5_c00001{bottom:914.130000px;}
.yeca_c00001{bottom:914.325000px;}
.yd3b_c00001{bottom:914.355000px;}
.y1227_c00001{bottom:914.505000px;}
.yecb_c00001{bottom:914.550000px;}
.ye7f_c00001{bottom:914.775000px;}
.y944_c00001{bottom:914.970000px;}
.y1157_c00001{bottom:915.180000px;}
.yb70_c00001{bottom:915.195000px;}
.yd3c_c00001{bottom:915.405000px;}
.yde2_c00001{bottom:915.420000px;}
.yec9_c00001{bottom:915.630000px;}
.y941_c00001{bottom:915.825000px;}
.yda6_c00001{bottom:915.855000px;}
.y1065_c00001{bottom:915.975000px;}
.y940_c00001{bottom:916.050000px;}
.ycae_c00001{bottom:916.470000px;}
.yf15_c00001{bottom:916.695000px;}
.y1041_c00001{bottom:916.875000px;}
.y945_c00001{bottom:916.905000px;}
.ya6f_c00001{bottom:916.920000px;}
.y101d_c00001{bottom:917.085000px;}
.yd02_c00001{bottom:917.130000px;}
.yee1_c00001{bottom:917.325000px;}
.y8b6_c00001{bottom:917.505000px;}
.yd3d_c00001{bottom:917.550000px;}
.y943_c00001{bottom:917.970000px;}
.y1144_c00001{bottom:918.180000px;}
.yda7_c00001{bottom:918.195000px;}
.y192_c00001{bottom:918.405000px;}
.yd94_c00001{bottom:918.420000px;}
.ycaf_c00001{bottom:918.630000px;}
.y190_c00001{bottom:918.825000px;}
.y942_c00001{bottom:919.050000px;}
.y12fe_c00001{bottom:919.140000px;}
.y18e_c00001{bottom:919.245000px;}
.ya11_c00001{bottom:919.425000px;}
.y731_c00001{bottom:919.470000px;}
.y1120_c00001{bottom:919.800000px;}
.y1270_c00001{bottom:919.830000px;}
.y18f_c00001{bottom:919.905000px;}
.ycb0_c00001{bottom:919.920000px;}
.ya57_c00001{bottom:920.100000px;}
.y4a0_c00001{bottom:920.325000px;}
.y84e_c00001{bottom:920.535000px;}
.y25_c00001{bottom:920.550000px;}
.y26_c00001{bottom:920.745000px;}
.y9cb_c00001{bottom:920.955000px;}
.y191_c00001{bottom:920.970000px;}
.y6b9_c00001{bottom:921.180000px;}
.y49f_c00001{bottom:921.405000px;}
.y10be_c00001{bottom:921.525000px;}
.y1c8_c00001{bottom:921.630000px;}
.y15e_c00001{bottom:921.825000px;}
.y123b_c00001{bottom:922.035000px;}
.y6f8_c00001{bottom:922.050000px;}
.ye1_c00001{bottom:922.245000px;}
.y27_c00001{bottom:922.470000px;}
.y88a_c00001{bottom:922.680000px;}
.y3e3_c00001{bottom:922.695000px;}
.y24_c00001{bottom:922.905000px;}
.y3e4_c00001{bottom:922.920000px;}
.y28_c00001{bottom:923.130000px;}
.y221_c00001{bottom:923.325000px;}
.y4a1_c00001{bottom:923.550000px;}
.y2d7_c00001{bottom:923.745000px;}
.y85a_c00001{bottom:923.775000px;}
.y15d_c00001{bottom:923.970000px;}
.y891_c00001{bottom:924.180000px;}
.y3e1_c00001{bottom:924.195000px;}
.y15f_c00001{bottom:924.405000px;}
.y1029_c00001{bottom:924.585000px;}
.y3df_c00001{bottom:924.630000px;}
.y2d8_c00001{bottom:924.825000px;}
.yc4d_c00001{bottom:924.855000px;}
.y86f_c00001{bottom:925.050000px;}
.y2da_c00001{bottom:925.245000px;}
.y9d0_c00001{bottom:925.275000px;}
.y44a_c00001{bottom:925.470000px;}
.y9ee_c00001{bottom:925.680000px;}
.y3e0_c00001{bottom:925.695000px;}
.y2d5_c00001{bottom:925.905000px;}
.y3e2_c00001{bottom:925.920000px;}
.y1313_c00001{bottom:926.085000px;}
.y2d6_c00001{bottom:926.130000px;}
.y8c8_c00001{bottom:926.325000px;}
.yac7_c00001{bottom:926.535000px;}
.y910_c00001{bottom:926.550000px;}
.y80e_c00001{bottom:926.745000px;}
.y4f4_c00001{bottom:926.970000px;}
.y105a_c00001{bottom:927.180000px;}
.ybd0_c00001{bottom:927.195000px;}
.y2d9_c00001{bottom:927.405000px;}
.ya7a_c00001{bottom:927.420000px;}
.y80c_c00001{bottom:927.630000px;}
.y8a0_c00001{bottom:927.825000px;}
.yc4f_c00001{bottom:928.050000px;}
.yc10_c00001{bottom:928.245000px;}
.ye4d_c00001{bottom:928.470000px;}
.ybd1_c00001{bottom:928.695000px;}
.y10b2_c00001{bottom:928.875000px;}
.y80b_c00001{bottom:928.905000px;}
.yc50_c00001{bottom:928.920000px;}
.y80d_c00001{bottom:929.130000px;}
.y9fb_c00001{bottom:929.325000px;}
.yc4e_c00001{bottom:929.550000px;}
.y58a_c00001{bottom:929.745000px;}
.yd93_c00001{bottom:929.775000px;}
.y1296_c00001{bottom:929.925000px;}
.ya63_c00001{bottom:929.955000px;}
.yb6f_c00001{bottom:929.970000px;}
.yb6e_c00001{bottom:930.195000px;}
.yaf2_c00001{bottom:930.405000px;}
.ye4e_c00001{bottom:930.420000px;}
.yd38_c00001{bottom:930.630000px;}
.ycac_c00001{bottom:930.825000px;}
.yd6e_c00001{bottom:930.855000px;}
.yb6d_c00001{bottom:931.050000px;}
.y58c_c00001{bottom:931.245000px;}
.yd39_c00001{bottom:931.470000px;}
.yf2b_c00001{bottom:931.695000px;}
.y58d_c00001{bottom:931.905000px;}
.yf13_c00001{bottom:931.920000px;}
.ycab_c00001{bottom:932.130000px;}
.yaee_c00001{bottom:932.325000px;}
.y132a_c00001{bottom:932.460000px;}
.yd3a_c00001{bottom:932.550000px;}
.yaef_c00001{bottom:932.745000px;}
.y58b_c00001{bottom:932.970000px;}
.yaa2_c00001{bottom:933.180000px;}
.ycaa_c00001{bottom:933.195000px;}
.y589_c00001{bottom:933.405000px;}
.yd70_c00001{bottom:933.420000px;}
.yd6f_c00001{bottom:933.630000px;}
.ycad_c00001{bottom:934.050000px;}
.ya70_c00001{bottom:934.275000px;}
.yaf0_c00001{bottom:934.470000px;}
.ya9a_c00001{bottom:934.680000px;}
.ye7e_c00001{bottom:934.695000px;}
.yaf1_c00001{bottom:934.905000px;}
.y524_c00001{bottom:935.130000px;}
.y49e_c00001{bottom:935.325000px;}
.ya7b_c00001{bottom:935.550000px;}
.yad3_c00001{bottom:936.180000px;}
.y523_c00001{bottom:936.195000px;}
.y49d_c00001{bottom:936.405000px;}
.y840_c00001{bottom:936.600000px;}
.y49b_c00001{bottom:936.630000px;}
.yaa8_c00001{bottom:936.825000px;}
.y49c_c00001{bottom:937.470000px;}
.y10f0_c00001{bottom:937.680000px;}
.y3dd_c00001{bottom:937.695000px;}
.y3de_c00001{bottom:937.920000px;}
.y3da_c00001{bottom:938.130000px;}
.yab5_c00001{bottom:938.325000px;}
.y3d9_c00001{bottom:938.550000px;}
.y109d_c00001{bottom:939.180000px;}
.y3db_c00001{bottom:939.195000px;}
.y18d_c00001{bottom:939.405000px;}
.y3dc_c00001{bottom:939.420000px;}
.ybcd_c00001{bottom:939.630000px;}
.y824_c00001{bottom:939.825000px;}
.yc4c_c00001{bottom:940.050000px;}
.y21_c00001{bottom:940.245000px;}
.y112c_c00001{bottom:940.425000px;}
.ydf_c00001{bottom:940.470000px;}
.y1131_c00001{bottom:940.680000px;}
.y6b0_c00001{bottom:940.905000px;}
.y107f_c00001{bottom:941.085000px;}
.y1e_c00001{bottom:941.130000px;}
.y23_c00001{bottom:941.325000px;}
.yf9e_c00001{bottom:941.550000px;}
.yde_c00001{bottom:941.745000px;}
.y1f_c00001{bottom:941.970000px;}
.yc22_c00001{bottom:942.180000px;}
.ybcf_c00001{bottom:942.195000px;}
.y22_c00001{bottom:942.405000px;}
.ybce_c00001{bottom:942.420000px;}
.ye0_c00001{bottom:942.630000px;}
.y697_c00001{bottom:942.825000px;}
.y746_c00001{bottom:943.050000px;}
.y448_c00001{bottom:943.245000px;}
.yda5_c00001{bottom:943.275000px;}
.y1158_c00001{bottom:943.425000px;}
.y20_c00001{bottom:943.470000px;}
.y1042_c00001{bottom:943.680000px;}
.yeff_c00001{bottom:943.695000px;}
.ydd_c00001{bottom:943.905000px;}
.y6b8_c00001{bottom:943.920000px;}
.y449_c00001{bottom:944.130000px;}
.y747_c00001{bottom:944.325000px;}
.yd37_c00001{bottom:944.355000px;}
.yc1a_c00001{bottom:944.550000px;}
.y762_c00001{bottom:944.745000px;}
.y4f3_c00001{bottom:944.970000px;}
.y10e5_c00001{bottom:945.180000px;}
.yefe_c00001{bottom:945.195000px;}
.y2d0_c00001{bottom:945.405000px;}
.yc0f_c00001{bottom:945.420000px;}
.y2d3_c00001{bottom:945.630000px;}
.y2d2_c00001{bottom:945.825000px;}
.y93e_c00001{bottom:946.050000px;}
.ya1f_c00001{bottom:946.245000px;}
.y2d4_c00001{bottom:946.470000px;}
.y101e_c00001{bottom:946.680000px;}
.yec8_c00001{bottom:946.695000px;}
.y2d1_c00001{bottom:946.905000px;}
.yac8_c00001{bottom:947.130000px;}
.ya1e_c00001{bottom:947.325000px;}
.y93d_c00001{bottom:947.550000px;}
.y809_c00001{bottom:947.745000px;}
.y1145_c00001{bottom:947.925000px;}
.y80a_c00001{bottom:947.970000px;}
.y93f_c00001{bottom:948.195000px;}
.y807_c00001{bottom:948.405000px;}
.yca9_c00001{bottom:948.420000px;}
.yfb2_c00001{bottom:948.825000px;}
.y93c_c00001{bottom:949.050000px;}
.y808_c00001{bottom:949.470000px;}
.y522_c00001{bottom:949.695000px;}
.y49a_c00001{bottom:949.905000px;}
.y10fc_c00001{bottom:950.085000px;}
.y521_c00001{bottom:950.130000px;}
.y499_c00001{bottom:950.325000px;}
.ya58_c00001{bottom:950.475000px;}
.y495_c00001{bottom:950.550000px;}
.y588_c00001{bottom:950.745000px;}
.yfb3_c00001{bottom:950.970000px;}
.y1273_c00001{bottom:951.090000px;}
.y10c9_c00001{bottom:951.180000px;}
.y3d7_c00001{bottom:951.195000px;}
.y3d8_c00001{bottom:951.420000px;}
.y3d5_c00001{bottom:951.630000px;}
.y498_c00001{bottom:952.050000px;}
.yaed_c00001{bottom:952.245000px;}
.y496_c00001{bottom:952.470000px;}
.y1075_c00001{bottom:952.680000px;}
.y3d4_c00001{bottom:952.695000px;}
.y587_c00001{bottom:952.905000px;}
.y3d6_c00001{bottom:952.920000px;}
.y3d3_c00001{bottom:953.130000px;}
.yaec_c00001{bottom:953.325000px;}
.y497_c00001{bottom:953.550000px;}
.y1108_c00001{bottom:953.925000px;}
.yaeb_c00001{bottom:953.970000px;}
.y1091_c00001{bottom:954.180000px;}
.ybca_c00001{bottom:954.195000px;}
.y105b_c00001{bottom:954.360000px;}
.y90f_c00001{bottom:954.405000px;}
.ybcb_c00001{bottom:954.630000px;}
.yc47_c00001{bottom:954.825000px;}
.y90d_c00001{bottom:955.470000px;}
.y102a_c00001{bottom:955.680000px;}
.y90c_c00001{bottom:955.695000px;}
.yc4b_c00001{bottom:955.905000px;}
.ybcc_c00001{bottom:955.920000px;}
.yf55_c00001{bottom:956.130000px;}
.yc49_c00001{bottom:956.325000px;}
.y90e_c00001{bottom:956.550000px;}
.ye4b_c00001{bottom:956.775000px;}
.yc48_c00001{bottom:956.970000px;}
.yc46_c00001{bottom:957.195000px;}
.y823_c00001{bottom:957.405000px;}
.yefd_c00001{bottom:957.825000px;}
.yc4a_c00001{bottom:958.050000px;}
.y730_c00001{bottom:958.245000px;}
.ye93_c00001{bottom:958.275000px;}
.yde0_c00001{bottom:958.470000px;}
.y55c_c00001{bottom:958.680000px;}
.y6ef_c00001{bottom:958.905000px;}
.y1066_c00001{bottom:959.085000px;}
.yb6c_c00001{bottom:959.130000px;}
.y1ed_c00001{bottom:959.325000px;}
.y8cb_c00001{bottom:959.550000px;}
.y1b_c00001{bottom:959.745000px;}
.yd6d_c00001{bottom:959.775000px;}
.y1ec_c00001{bottom:959.970000px;}
.ye4c_c00001{bottom:960.195000px;}
.y9ae_c00001{bottom:960.405000px;}
.yddf_c00001{bottom:960.420000px;}
.y1a_c00001{bottom:960.630000px;}
.y15c_c00001{bottom:960.825000px;}
.y6a4_c00001{bottom:961.050000px;}
.yda_c00001{bottom:961.245000px;}
.y18c_c00001{bottom:961.470000px;}
.yec7_c00001{bottom:961.695000px;}
.y1c_c00001{bottom:961.905000px;}
.yf12_c00001{bottom:961.920000px;}
.ydc_c00001{bottom:962.130000px;}
.y447_c00001{bottom:962.325000px;}
.ye94_c00001{bottom:962.550000px;}
.y1037_c00001{bottom:962.730000px;}
.y446_c00001{bottom:962.745000px;}
.y1d_c00001{bottom:962.970000px;}
.y93b_c00001{bottom:963.195000px;}
.ydb_c00001{bottom:963.405000px;}
.yca8_c00001{bottom:963.420000px;}
.y520_c00001{bottom:963.630000px;}
.y4f2_c00001{bottom:963.825000px;}
.y93a_c00001{bottom:964.050000px;}
.y2cf_c00001{bottom:964.245000px;}
.y10a9_c00001{bottom:964.425000px;}
.y220_c00001{bottom:964.470000px;}
.y51f_c00001{bottom:964.695000px;}
.y2cc_c00001{bottom:964.905000px;}
.y3d2_c00001{bottom:964.920000px;}
.y2cb_c00001{bottom:965.130000px;}
.y494_c00001{bottom:965.325000px;}
.yf67_c00001{bottom:965.550000px;}
.y803_c00001{bottom:965.745000px;}
.y2cd_c00001{bottom:965.970000px;}
.y3d1_c00001{bottom:966.195000px;}
.y2ce_c00001{bottom:966.405000px;}
.y841_c00001{bottom:966.555000px;}
.y3d0_c00001{bottom:966.630000px;}
.yf66_c00001{bottom:967.050000px;}
.y1132_c00001{bottom:967.230000px;}
.yc40_c00001{bottom:967.245000px;}
.y9b3_c00001{bottom:967.470000px;}
.y10bf_c00001{bottom:967.680000px;}
.y3cf_c00001{bottom:967.695000px;}
.y805_c00001{bottom:967.905000px;}
.y806_c00001{bottom:968.130000px;}
.y90b_c00001{bottom:968.325000px;}
.y493_c00001{bottom:968.550000px;}
.y583_c00001{bottom:968.745000px;}
.y729_c00001{bottom:968.775000px;}
.yc41_c00001{bottom:968.970000px;}
.yaea_c00001{bottom:969.405000px;}
.y804_c00001{bottom:969.420000px;}
.yb9e_c00001{bottom:969.630000px;}
.yc42_c00001{bottom:969.825000px;}
.yb9d_c00001{bottom:970.050000px;}
.y133c_c00001{bottom:970.200000px;}
.y123c_c00001{bottom:970.230000px;}
.y584_c00001{bottom:970.245000px;}
.yb9c_c00001{bottom:970.470000px;}
.y1080_c00001{bottom:970.680000px;}
.yba0_c00001{bottom:970.695000px;}
.y586_c00001{bottom:970.905000px;}
.y585_c00001{bottom:971.130000px;}
.yb68_c00001{bottom:971.325000px;}
.yb9f_c00001{bottom:971.550000px;}
.y10e6_c00001{bottom:971.730000px;}
.yae7_c00001{bottom:971.745000px;}
.y1043_c00001{bottom:971.925000px;}
.yc45_c00001{bottom:971.970000px;}
.y1271_c00001{bottom:972.105000px;}
.y582_c00001{bottom:972.405000px;}
.yae8_c00001{bottom:972.630000px;}
.yb6b_c00001{bottom:972.825000px;}
.y8b7_c00001{bottom:973.005000px;}
.yc43_c00001{bottom:973.050000px;}
.ydc0_c00001{bottom:973.275000px;}
.y1150_c00001{bottom:973.425000px;}
.yb66_c00001{bottom:973.470000px;}
.y109e_c00001{bottom:973.590000px;}
.yb6a_c00001{bottom:973.695000px;}
.yae9_c00001{bottom:973.905000px;}
.yc44_c00001{bottom:973.920000px;}
.y936_c00001{bottom:974.325000px;}
.yda3_c00001{bottom:974.355000px;}
.ya12_c00001{bottom:974.505000px;}
.y935_c00001{bottom:974.550000px;}
.y84f_c00001{bottom:974.955000px;}
.yb69_c00001{bottom:974.970000px;}
.y938_c00001{bottom:975.405000px;}
.yb67_c00001{bottom:975.420000px;}
.yda4_c00001{bottom:975.630000px;}
.yd00_c00001{bottom:975.825000px;}
.yd01_c00001{bottom:976.050000px;}
.y9cc_c00001{bottom:976.455000px;}
.y937_c00001{bottom:976.470000px;}
.yd36_c00001{bottom:976.695000px;}
.y8ca_c00001{bottom:976.905000px;}
.ye28_c00001{bottom:976.920000px;}
.yd92_c00001{bottom:977.130000px;}
.y863_c00001{bottom:977.325000px;}
.y939_c00001{bottom:977.550000px;}
.y10ca_c00001{bottom:977.925000px;}
.yca7_c00001{bottom:977.970000px;}
.y88b_c00001{bottom:978.180000px;}
.y101f_c00001{bottom:978.330000px;}
.y1eb_c00001{bottom:978.405000px;}
.y1ea_c00001{bottom:978.825000px;}
.yd91_c00001{bottom:979.050000px;}
.y17_c00001{bottom:979.245000px;}
.y85b_c00001{bottom:979.275000px;}
.y6af_c00001{bottom:979.470000px;}
.y892_c00001{bottom:979.680000px;}
.y490_c00001{bottom:979.905000px;}
.y8c9_c00001{bottom:980.130000px;}
.y19_c00001{bottom:980.325000px;}
.y16_c00001{bottom:980.550000px;}
.y102b_c00001{bottom:980.730000px;}
.yd5_c00001{bottom:980.745000px;}
.y9d1_c00001{bottom:980.775000px;}
.y1115_c00001{bottom:980.925000px;}
.y491_c00001{bottom:980.970000px;}
.y9ef_c00001{bottom:981.180000px;}
.ybc8_c00001{bottom:981.195000px;}
.y1076_c00001{bottom:981.360000px;}
.y18_c00001{bottom:981.405000px;}
.yd9_c00001{bottom:981.630000px;}
.y21f_c00001{bottom:981.825000px;}
.y492_c00001{bottom:982.050000px;}
.y445_c00001{bottom:982.245000px;}
.ybc9_c00001{bottom:982.275000px;}
.y1092_c00001{bottom:982.425000px;}
.y18b_c00001{bottom:982.470000px;}
.y48f_c00001{bottom:982.695000px;}
.yd7_c00001{bottom:982.905000px;}
.yd6_c00001{bottom:982.920000px;}
.y3ce_c00001{bottom:983.130000px;}
.y2ca_c00001{bottom:983.325000px;}
.yac9_c00001{bottom:983.505000px;}
.yf65_c00001{bottom:983.550000px;}
.y2c5_c00001{bottom:983.745000px;}
.y10b3_c00001{bottom:983.925000px;}
.yd8_c00001{bottom:983.970000px;}
.y3cd_c00001{bottom:984.195000px;}
.y2c4_c00001{bottom:984.405000px;}
.y51e_c00001{bottom:984.420000px;}
.y2c9_c00001{bottom:984.630000px;}
.y4f1_c00001{bottom:984.825000px;}
.ya64_c00001{bottom:985.035000px;}
.yc3e_c00001{bottom:985.245000px;}
.y10f1_c00001{bottom:985.275000px;}
.y12ff_c00001{bottom:985.425000px;}
.y2c7_c00001{bottom:985.470000px;}
.y3cc_c00001{bottom:985.695000px;}
.y2c6_c00001{bottom:985.905000px;}
.yefc_c00001{bottom:986.325000px;}
.yf28_c00001{bottom:986.355000px;}
.yb9b_c00001{bottom:986.550000px;}
.yc3f_c00001{bottom:986.745000px;}
.y2c8_c00001{bottom:986.970000px;}
.y3cb_c00001{bottom:987.195000px;}
.yb63_c00001{bottom:987.405000px;}
.yc3d_c00001{bottom:987.630000px;}
.yf2a_c00001{bottom:987.825000px;}
.yd35_c00001{bottom:987.855000px;}
.yf29_c00001{bottom:988.050000px;}
.yd8f_c00001{bottom:988.470000px;}
.ya9b_c00001{bottom:988.680000px;}
.yc3c_c00001{bottom:988.905000px;}
.yfad_c00001{bottom:989.130000px;}
.y934_c00001{bottom:989.325000px;}
.yd6c_c00001{bottom:989.355000px;}
.y801_c00001{bottom:989.550000px;}
.y580_c00001{bottom:989.745000px;}
.ya71_c00001{bottom:989.775000px;}
.yb65_c00001{bottom:989.970000px;}
.ya9e_c00001{bottom:990.180000px;}
.ye4a_c00001{bottom:990.195000px;}
.y132b_c00001{bottom:990.330000px;}
.y802_c00001{bottom:990.405000px;}
.yb64_c00001{bottom:990.420000px;}
.y57f_c00001{bottom:990.630000px;}
.ycff_c00001{bottom:990.825000px;}
.yedf_c00001{bottom:990.855000px;}
.ya7c_c00001{bottom:991.050000px;}
.yae6_c00001{bottom:991.245000px;}
.y933_c00001{bottom:991.470000px;}
.ycfe_c00001{bottom:991.695000px;}
.y581_c00001{bottom:991.905000px;}
.ya86_c00001{bottom:992.130000px;}
.yaad_c00001{bottom:992.325000px;}
.y932_c00001{bottom:992.550000px;}
.y48b_c00001{bottom:992.970000px;}
.y1297_c00001{bottom:993.090000px;}
.yee0_c00001{bottom:993.195000px;}
.yae5_c00001{bottom:993.405000px;}
.yca6_c00001{bottom:993.420000px;}
.y48d_c00001{bottom:993.825000px;}
.yd90_c00001{bottom:994.050000px;}
.y10d9_c00001{bottom:994.530000px;}
.y48e_c00001{bottom:994.905000px;}
.y489_c00001{bottom:995.130000px;}
.y1081_c00001{bottom:995.730000px;}
.y48c_c00001{bottom:995.970000px;}
.yf64_c00001{bottom:996.195000px;}
.y48a_c00001{bottom:997.050000px;}
.y10c0_c00001{bottom:997.425000px;}
.yf63_c00001{bottom:997.470000px;}
.y157_c00001{bottom:997.905000px;}
.y14_c00001{bottom:998.745000px;}
.y1121_c00001{bottom:998.925000px;}
.y1e9_c00001{bottom:998.970000px;}
.y745_c00001{bottom:999.405000px;}
.y51d_c00001{bottom:999.630000px;}
.y15_c00001{bottom:999.825000px;}
.y15b_c00001{bottom:1000.245000px;}
.y53e_c00001{bottom:1000.470000px;}
.yc01_c00001{bottom:1000.680000px;}
.y3ca_c00001{bottom:1000.695000px;}
.ya59_c00001{bottom:1000.800000px;}
.y12_c00001{bottom:1000.905000px;}
.y13_c00001{bottom:1001.130000px;}
.y15a_c00001{bottom:1001.325000px;}
.yb99_c00001{bottom:1001.550000px;}
.y444_c00001{bottom:1001.745000px;}
.y159_c00001{bottom:1001.970000px;}
.y3c9_c00001{bottom:1002.195000px;}
.y156_c00001{bottom:1002.405000px;}
.y21e_c00001{bottom:1002.420000px;}
.y62d_c00001{bottom:1002.630000px;}
.y4f0_c00001{bottom:1002.825000px;}
.ye26_c00001{bottom:1002.855000px;}
.yb9a_c00001{bottom:1003.050000px;}
.y54d_c00001{bottom:1003.245000px;}
.yda1_c00001{bottom:1003.275000px;}
.y158_c00001{bottom:1003.470000px;}
.y3c8_c00001{bottom:1003.695000px;}
.yd4_c00001{bottom:1003.905000px;}
.y2c3_c00001{bottom:1004.130000px;}
.y761_c00001{bottom:1004.325000px;}
.y123d_c00001{bottom:1004.505000px;}
.yb98_c00001{bottom:1004.550000px;}
.yc3b_c00001{bottom:1004.745000px;}
.y1314_c00001{bottom:1004.925000px;}
.y2c1_c00001{bottom:1004.970000px;}
.y2c0_c00001{bottom:1005.405000px;}
.yf27_c00001{bottom:1005.420000px;}
.y800_c00001{bottom:1005.630000px;}
.yeab_c00001{bottom:1005.825000px;}
.yd34_c00001{bottom:1006.050000px;}
.yc37_c00001{bottom:1006.245000px;}
.y2c2_c00001{bottom:1006.470000px;}
.y931_c00001{bottom:1006.695000px;}
.yc3a_c00001{bottom:1006.905000px;}
.ye27_c00001{bottom:1006.920000px;}
.ydbf_c00001{bottom:1007.130000px;}
.yc39_c00001{bottom:1007.325000px;}
.yca5_c00001{bottom:1007.550000px;}
.y10fd_c00001{bottom:1007.700000px;}
.ybc6_c00001{bottom:1007.970000px;}
.yede_c00001{bottom:1008.195000px;}
.yc38_c00001{bottom:1008.405000px;}
.yda2_c00001{bottom:1008.420000px;}
.yb62_c00001{bottom:1009.050000px;}
.y57e_c00001{bottom:1009.245000px;}
.yb5e_c00001{bottom:1009.905000px;}
.yb61_c00001{bottom:1010.130000px;}
.yae3_c00001{bottom:1010.745000px;}
.yb5f_c00001{bottom:1011.195000px;}
.y57d_c00001{bottom:1011.405000px;}
.yb60_c00001{bottom:1012.050000px;}
.yae4_c00001{bottom:1012.905000px;}
.y9c2_c00001{bottom:1013.025000px;}
.y11c9_c00001{bottom:1013.550000px;}
.y842_c00001{bottom:1014.960000px;}
.yf79_c00001{bottom:1015.470000px;}
.yddd_c00001{bottom:1015.905000px;}
.ye48_c00001{bottom:1016.325000px;}
.ye46_c00001{bottom:1016.355000px;}
.ye47_c00001{bottom:1016.550000px;}
.yf85_c00001{bottom:1016.970000px;}
.y21d_c00001{bottom:1017.405000px;}
.yddc_c00001{bottom:1017.630000px;}
.y1067_c00001{bottom:1017.780000px;}
.y72f_c00001{bottom:1017.825000px;}
.yd33_c00001{bottom:1017.855000px;}
.ydde_c00001{bottom:1018.050000px;}
.yf_c00001{bottom:1018.245000px;}
.yd6b_c00001{bottom:1018.275000px;}
.y647_c00001{bottom:1018.470000px;}
.y6a3_c00001{bottom:1018.680000px;}
.ye49_c00001{bottom:1018.695000px;}
.y133d_c00001{bottom:1018.800000px;}
.yd2_c00001{bottom:1018.905000px;}
.yefb_c00001{bottom:1018.920000px;}
.y72e_c00001{bottom:1019.130000px;}
.y10_c00001{bottom:1019.325000px;}
.y1300_c00001{bottom:1019.535000px;}
.y728_c00001{bottom:1019.550000px;}
.y1274_c00001{bottom:1019.655000px;}
.y155_c00001{bottom:1019.745000px;}
.yd1_c00001{bottom:1019.970000px;}
.ye92_c00001{bottom:1020.195000px;}
.y11_c00001{bottom:1020.405000px;}
.y18a_c00001{bottom:1020.630000px;}
.y1c7_c00001{bottom:1020.825000px;}
.yd0_c00001{bottom:1021.050000px;}
.y2ba_c00001{bottom:1021.245000px;}
.ye_c00001{bottom:1021.470000px;}
.y443_c00001{bottom:1021.680000px;}
.y930_c00001{bottom:1021.695000px;}
.y154_c00001{bottom:1021.905000px;}
.ye25_c00001{bottom:1021.920000px;}
.y696_c00001{bottom:1022.130000px;}
.y4ef_c00001{bottom:1022.325000px;}
.yd3_c00001{bottom:1022.550000px;}
.y2be_c00001{bottom:1022.745000px;}
.y1c6_c00001{bottom:1022.970000px;}
.ybc4_c00001{bottom:1023.195000px;}
.y2bb_c00001{bottom:1023.405000px;}
.yba4_c00001{bottom:1023.420000px;}
.y2bd_c00001{bottom:1023.630000px;}
.y2bf_c00001{bottom:1023.825000px;}
.ybc5_c00001{bottom:1024.050000px;}
.y488_c00001{bottom:1024.470000px;}
.y2bc_c00001{bottom:1024.905000px;}
.y982_c00001{bottom:1024.920000px;}
.yb95_c00001{bottom:1025.745000px;}
.y760_c00001{bottom:1025.970000px;}
.yc35_c00001{bottom:1026.405000px;}
.yc36_c00001{bottom:1026.630000px;}
.yb97_c00001{bottom:1026.825000px;}
.y51c_c00001{bottom:1027.050000px;}
.y57c_c00001{bottom:1027.470000px;}
.y1272_c00001{bottom:1027.605000px;}
.yb94_c00001{bottom:1027.905000px;}
.yb96_c00001{bottom:1028.130000px;}
.y8b8_c00001{bottom:1028.505000px;}
.y3c7_c00001{bottom:1028.550000px;}
.y57b_c00001{bottom:1028.745000px;}
.yf62_c00001{bottom:1028.970000px;}
.yae1_c00001{bottom:1029.825000px;}
.ya13_c00001{bottom:1030.005000px;}
.yfa6_c00001{bottom:1030.050000px;}
.yae2_c00001{bottom:1030.245000px;}
.y850_c00001{bottom:1030.455000px;}
.yefa_c00001{bottom:1030.470000px;}
.y579_c00001{bottom:1030.905000px;}
.y57a_c00001{bottom:1030.920000px;}
.yf26_c00001{bottom:1031.325000px;}
.ye45_c00001{bottom:1031.550000px;}
.yb5d_c00001{bottom:1031.745000px;}
.y9cd_c00001{bottom:1031.955000px;}
.yef9_c00001{bottom:1031.970000px;}
.yae0_c00001{bottom:1032.405000px;}
.y867_c00001{bottom:1032.825000px;}
.ydbe_c00001{bottom:1032.855000px;}
.yddb_c00001{bottom:1033.050000px;}
.ydd9_c00001{bottom:1033.470000px;}
.y893_c00001{bottom:1033.680000px;}
.ydda_c00001{bottom:1033.695000px;}
.y864_c00001{bottom:1033.905000px;}
.yf25_c00001{bottom:1033.920000px;}
.yb5c_c00001{bottom:1034.130000px;}
.y7fd_c00001{bottom:1034.325000px;}
.yf45_c00001{bottom:1034.355000px;}
.y7fb_c00001{bottom:1034.550000px;}
.y85c_c00001{bottom:1034.775000px;}
.ycfc_c00001{bottom:1034.970000px;}
.y88c_c00001{bottom:1035.180000px;}
.yec6_c00001{bottom:1035.195000px;}
.y7fc_c00001{bottom:1035.405000px;}
.ycfd_c00001{bottom:1035.630000px;}
.y870_c00001{bottom:1036.050000px;}
.y1e7_c00001{bottom:1036.245000px;}
.y9d2_c00001{bottom:1036.275000px;}
.y7fe_c00001{bottom:1036.470000px;}
.ya02_c00001{bottom:1036.680000px;}
.y7ff_c00001{bottom:1036.695000px;}
.yd_c00001{bottom:1036.905000px;}
.ye91_c00001{bottom:1036.920000px;}
.y875_c00001{bottom:1037.130000px;}
.y72d_c00001{bottom:1037.325000px;}
.yce_c00001{bottom:1037.550000px;}
.y9_c00001{bottom:1037.745000px;}
.ybc3_c00001{bottom:1037.970000px;}
.ycf_c00001{bottom:1038.405000px;}
.y11a8_c00001{bottom:1038.630000px;}
.y55b_c00001{bottom:1038.825000px;}
.yaca_c00001{bottom:1039.005000px;}
.y53d_c00001{bottom:1039.050000px;}
.ya_c00001{bottom:1039.245000px;}
.y1e8_c00001{bottom:1039.470000px;}
.y132c_c00001{bottom:1039.635000px;}
.y8_c00001{bottom:1039.905000px;}
.yc_c00001{bottom:1040.130000px;}
.y1c5_c00001{bottom:1040.325000px;}
.ycd_c00001{bottom:1040.550000px;}
.y43f_c00001{bottom:1040.745000px;}
.ya65_c00001{bottom:1040.955000px;}
.y153_c00001{bottom:1040.970000px;}
.yb_c00001{bottom:1041.405000px;}
.y782_c00001{bottom:1041.420000px;}
.y62c_c00001{bottom:1041.630000px;}
.y441_c00001{bottom:1041.825000px;}
.y3c6_c00001{bottom:1042.050000px;}
.y2b6_c00001{bottom:1042.245000px;}
.y152_c00001{bottom:1042.470000px;}
.ya9c_c00001{bottom:1042.680000px;}
.y43e_c00001{bottom:1042.905000px;}
.y442_c00001{bottom:1043.130000px;}
.y2b7_c00001{bottom:1043.325000px;}
.y3c5_c00001{bottom:1043.550000px;}
.yc32_c00001{bottom:1043.745000px;}
.ya72_c00001{bottom:1043.775000px;}
.y440_c00001{bottom:1043.970000px;}
.ya9f_c00001{bottom:1044.180000px;}
.y2b8_c00001{bottom:1044.405000px;}
.y9ad_c00001{bottom:1044.420000px;}
.y2b9_c00001{bottom:1044.630000px;}
.ydd7_c00001{bottom:1044.825000px;}
.ya7d_c00001{bottom:1045.050000px;}
.yc31_c00001{bottom:1045.245000px;}
.ya8a_c00001{bottom:1045.275000px;}
.ye44_c00001{bottom:1045.470000px;}
.yab1_c00001{bottom:1045.680000px;}
.yc33_c00001{bottom:1045.905000px;}
.yc34_c00001{bottom:1046.130000px;}
.yaa9_c00001{bottom:1046.325000px;}
.yf24_c00001{bottom:1046.355000px;}
.ya7e_c00001{bottom:1046.550000px;}
.yda0_c00001{bottom:1046.970000px;}
.y123e_c00001{bottom:1047.105000px;}
.y1301_c00001{bottom:1047.180000px;}
.yab6_c00001{bottom:1047.405000px;}
.ydd8_c00001{bottom:1047.630000px;}
.y92f_c00001{bottom:1047.825000px;}
.ye43_c00001{bottom:1048.050000px;}
.y578_c00001{bottom:1048.245000px;}
.yca2_c00001{bottom:1048.470000px;}
.y7fa_c00001{bottom:1048.905000px;}
.yd32_c00001{bottom:1049.130000px;}
.yca3_c00001{bottom:1049.325000px;}
.yeb7_c00001{bottom:1049.355000px;}
.yca4_c00001{bottom:1049.550000px;}
.yadd_c00001{bottom:1049.745000px;}
.y576_c00001{bottom:1049.970000px;}
.y7f8_c00001{bottom:1050.195000px;}
.y577_c00001{bottom:1050.405000px;}
.yd9f_c00001{bottom:1050.420000px;}
.ydbd_c00001{bottom:1050.630000px;}
.y7f9_c00001{bottom:1051.050000px;}
.yca0_c00001{bottom:1051.470000px;}
.ycfb_c00001{bottom:1051.695000px;}
.yade_c00001{bottom:1051.905000px;}
.yd6a_c00001{bottom:1051.920000px;}
.yca1_c00001{bottom:1052.550000px;}
.yadf_c00001{bottom:1052.970000px;}
.y151_c00001{bottom:1056.405000px;}
.y189_c00001{bottom:1057.245000px;}
.y53c_c00001{bottom:1057.470000px;}
.y14f_c00001{bottom:1057.680000px;}
.y21a_c00001{bottom:1057.905000px;}
.y53b_c00001{bottom:1058.130000px;}
.y1e6_c00001{bottom:1058.325000px;}
.y5_c00001{bottom:1058.745000px;}
.y744_c00001{bottom:1058.775000px;}
.y757_c00001{bottom:1058.970000px;}
.y4_c00001{bottom:1059.405000px;}
.y150_c00001{bottom:1059.630000px;}
.y1c4_c00001{bottom:1059.825000px;}
.yef7_c00001{bottom:1059.855000px;}
.ybc2_c00001{bottom:1060.050000px;}
.y43b_c00001{bottom:1060.245000px;}
.y7_c00001{bottom:1060.470000px;}
.y6_c00001{bottom:1060.905000px;}
.y21b_c00001{bottom:1061.130000px;}
.y75f_c00001{bottom:1061.325000px;}
.y54c_c00001{bottom:1061.550000px;}
.y2b2_c00001{bottom:1061.745000px;}
.y21c_c00001{bottom:1061.970000px;}
.yef8_c00001{bottom:1062.195000px;}
.y43a_c00001{bottom:1062.405000px;}
.y219_c00001{bottom:1062.420000px;}
.y2b5_c00001{bottom:1062.630000px;}
.y43c_c00001{bottom:1062.825000px;}
.yea9_c00001{bottom:1062.855000px;}
.y92e_c00001{bottom:1063.050000px;}
.yd69_c00001{bottom:1063.275000px;}
.y43d_c00001{bottom:1063.470000px;}
.ydbb_c00001{bottom:1063.695000px;}
.y2b3_c00001{bottom:1063.905000px;}
.y981_c00001{bottom:1063.920000px;}
.y2b4_c00001{bottom:1064.130000px;}
.y51b_c00001{bottom:1064.325000px;}
.yedd_c00001{bottom:1064.355000px;}
.yc9f_c00001{bottom:1064.550000px;}
.yc2f_c00001{bottom:1064.745000px;}
.y7f7_c00001{bottom:1064.970000px;}
.y7f5_c00001{bottom:1065.195000px;}
.y3c4_c00001{bottom:1065.405000px;}
.ydbc_c00001{bottom:1065.630000px;}
.yc30_c00001{bottom:1065.825000px;}
.y7f6_c00001{bottom:1066.050000px;}
.yd8d_c00001{bottom:1066.470000px;}
.yeaa_c00001{bottom:1066.695000px;}
.yc2e_c00001{bottom:1066.905000px;}
.yd8e_c00001{bottom:1066.920000px;}
.y3c3_c00001{bottom:1067.550000px;}
.y571_c00001{bottom:1067.745000px;}
.y133e_c00001{bottom:1067.970000px;}
.yadc_c00001{bottom:1068.405000px;}
.y575_c00001{bottom:1068.825000px;}
.y11d7_c00001{bottom:1069.050000px;}
.yad8_c00001{bottom:1069.245000px;}
.y572_c00001{bottom:1069.905000px;}
.y573_c00001{bottom:1070.130000px;}
.y574_c00001{bottom:1070.970000px;}
.yad9_c00001{bottom:1071.405000px;}
.yadb_c00001{bottom:1071.630000px;}
.yada_c00001{bottom:1072.470000px;}
.y11cb_c00001{bottom:1077.405000px;}
.y132d_c00001{bottom:1078.245000px;}
.y11ca_c00001{bottom:1080.630000px;}
.y12c1_c00001{bottom:1081.905000px;}
.y133f_c00001{bottom:1083.195000px;}
.y11cd_c00001{bottom:1083.405000px;}
.y12c0_c00001{bottom:1084.050000px;}
.y127e_c00001{bottom:1085.550000px;}
.y127f_c00001{bottom:1086.405000px;}
.y11cc_c00001{bottom:1087.050000px;}
.y104f_c00001{bottom:1089.405000px;}
.y112d_c00001{bottom:1090.245000px;}
.y10cb_c00001{bottom:1090.470000px;}
.y1021_c00001{bottom:1090.905000px;}
.y102c_c00001{bottom:1091.550000px;}
.y1013_c00001{bottom:1092.405000px;}
.y104e_c00001{bottom:1092.630000px;}
.y1020_c00001{bottom:1093.050000px;}
.y1307_c00001{bottom:1093.245000px;}
.y102d_c00001{bottom:1093.905000px;}
.y1069_c00001{bottom:1094.130000px;}
.y1068_c00001{bottom:1094.550000px;}
.y1117_c00001{bottom:1094.745000px;}
.y1012_c00001{bottom:1095.630000px;}
.yb93_c00001{bottom:1096.680000px;}
.y1116_c00001{bottom:1097.130000px;}
.y1e5_c00001{bottom:1097.550000px;}
.y1_c00001{bottom:1097.745000px;}
.y743_c00001{bottom:1098.405000px;}
.yfee_c00001{bottom:1098.630000px;}
.ycb_c00001{bottom:1098.825000px;}
.y2_c00001{bottom:1099.050000px;}
.yfb0_c00001{bottom:1099.245000px;}
.y439_c00001{bottom:1099.470000px;}
.y2b1_c00001{bottom:1099.905000px;}
.ycc_c00001{bottom:1100.130000px;}
.yb83_c00001{bottom:1100.325000px;}
.y756_c00001{bottom:1100.550000px;}
.y1199_c00001{bottom:1100.745000px;}
.y4ee_c00001{bottom:1100.970000px;}
.y11d1_c00001{bottom:1101.405000px;}
.y487_c00001{bottom:1101.630000px;}
.y438_c00001{bottom:1102.050000px;}
.y11b7_c00001{bottom:1102.245000px;}
.y12b5_c00001{bottom:1102.470000px;}
.yc2c_c00001{bottom:1102.905000px;}
.y2b0_c00001{bottom:1103.130000px;}
.y10da_c00001{bottom:1103.550000px;}
.y11b6_c00001{bottom:1104.630000px;}
.yc2b_c00001{bottom:1105.050000px;}
.y1213_c00001{bottom:1105.905000px;}
.y1204_c00001{bottom:1106.745000px;}
.y56f_c00001{bottom:1106.970000px;}
.yfde_c00001{bottom:1107.405000px;}
.y56e_c00001{bottom:1108.050000px;}
.y131c_c00001{bottom:1108.245000px;}
.yad6_c00001{bottom:1108.905000px;}
.y1203_c00001{bottom:1109.130000px;}
.yfdd_c00001{bottom:1109.550000px;}
.y11e4_c00001{bottom:1109.745000px;}
.y12d3_c00001{bottom:1109.970000px;}
.y11c6_c00001{bottom:1110.405000px;}
.yad5_c00001{bottom:1110.630000px;}
.y12d2_c00001{bottom:1111.050000px;}
.y12dc_c00001{bottom:1111.245000px;}
.y1083_c00001{bottom:1111.470000px;}
.y11c8_c00001{bottom:1111.905000px;}
.y11e3_c00001{bottom:1112.130000px;}
.yffe_c00001{bottom:1112.550000px;}
.y1246_c00001{bottom:1112.745000px;}
.y11a2_c00001{bottom:1113.405000px;}
.yfff_c00001{bottom:1113.630000px;}
.y1082_c00001{bottom:1114.050000px;}
.y1245_c00001{bottom:1115.130000px;}
.y118e_c00001{bottom:1115.745000px;}
.y1228_c00001{bottom:1116.405000px;}
.y118d_c00001{bottom:1117.050000px;}
.y12bc_c00001{bottom:1117.905000px;}
.y11fd_c00001{bottom:1118.130000px;}
.y1208_c00001{bottom:1118.550000px;}
.yfd2_c00001{bottom:1119.405000px;}
.y129e_c00001{bottom:1119.630000px;}
.y12bb_c00001{bottom:1120.050000px;}
.yfe9_c00001{bottom:1120.905000px;}
.y1299_c00001{bottom:1121.130000px;}
.yfd1_c00001{bottom:1121.550000px;}
.y12a7_c00001{bottom:1121.970000px;}
.y1257_c00001{bottom:1122.630000px;}
.yfe8_c00001{bottom:1123.050000px;}
.y127c_c00001{bottom:1123.905000px;}
.y1172_c00001{bottom:1124.130000px;}
.y12a6_c00001{bottom:1124.550000px;}
.y11c7_c00001{bottom:1124.745000px;}
.y12ac_c00001{bottom:1125.405000px;}
.y12d7_c00001{bottom:1125.630000px;}
.y127b_c00001{bottom:1126.050000px;}
.y11c0_c00001{bottom:1126.245000px;}
.y1187_c00001{bottom:1126.905000px;}
.yfbe_c00001{bottom:1127.550000px;}
.yff1_c00001{bottom:1127.970000px;}
.y1189_c00001{bottom:1128.405000px;}
.yfbf_c00001{bottom:1128.630000px;}
.yfcb_c00001{bottom:1129.050000px;}
.y11d8_c00001{bottom:1129.245000px;}
.y12a4_c00001{bottom:1129.470000px;}
.y12e4_c00001{bottom:1129.905000px;}
.yfcc_c00001{bottom:1130.130000px;}
.yff0_c00001{bottom:1130.550000px;}
.y11f5_c00001{bottom:1130.745000px;}
.y12b8_c00001{bottom:1131.405000px;}
.y124e_c00001{bottom:1131.630000px;}
.y11f4_c00001{bottom:1133.130000px;}
.y12b0_c00001{bottom:1133.550000px;}
.y1252_c00001{bottom:1133.970000px;}
.y1168_c00001{bottom:1134.405000px;}
.y12b7_c00001{bottom:1134.630000px;}
.y11aa_c00001{bottom:1135.245000px;}
.y12c8_c00001{bottom:1135.905000px;}
.y117c_c00001{bottom:1136.550000px;}
.y117d_c00001{bottom:1136.745000px;}
.yfd8_c00001{bottom:1137.405000px;}
.y11a9_c00001{bottom:1137.630000px;}
.y1167_c00001{bottom:1138.050000px;}
.y12c7_c00001{bottom:1139.130000px;}
.yfd7_c00001{bottom:1139.550000px;}
.yfe3_c00001{bottom:1140.405000px;}
.y12dd_c00001{bottom:1141.050000px;}
.y11b0_c00001{bottom:1141.245000px;}
.y100b_c00001{bottom:1141.470000px;}
.y12df_c00001{bottom:1142.325000px;}
.y100a_c00001{bottom:1142.550000px;}
.y1179_c00001{bottom:1143.405000px;}
.y11af_c00001{bottom:1143.630000px;}
.y116e_c00001{bottom:1144.905000px;}
.y12b9_c00001{bottom:1145.130000px;}
.y1178_c00001{bottom:1145.550000px;}
.y1175_c00001{bottom:1145.745000px;}
.y116d_c00001{bottom:1148.130000px;}
.y1180_c00001{bottom:1148.550000px;}
.y1183_c00001{bottom:1153.905000px;}
.y1182_c00001{bottom:1154.550000px;}
.h9_c00001{height:4.206533px;}
.h26_c00001{height:8.339268px;}
.hc_c00001{height:14.612168px;}
.ha_c00001{height:16.752334px;}
.hf_c00001{height:22.752334px;}
.h3_c00001{height:23.025234px;}
.h2_c00001{height:25.091602px;}
.h35_c00001{height:26.991035px;}
.h12_c00001{height:27.044502px;}
.h37_c00001{height:27.231768px;}
.he_c00001{height:29.025234px;}
.h53_c00001{height:31.091602px;}
.h5_c00001{height:31.364502px;}
.h29_c00001{height:33.044502px;}
.h4_c00001{height:35.571035px;}
.h33_c00001{height:37.091602px;}
.h2a_c00001{height:37.364502px;}
.h34_c00001{height:38.991035px;}
.hb_c00001{height:39.044502px;}
.h6_c00001{height:39.777568px;}
.h38_c00001{height:41.411602px;}
.h10_c00001{height:41.571035px;}
.h36_c00001{height:43.311035px;}
.h13_c00001{height:43.364502px;}
.h1_c00001{height:43.910303px;}
.h32_c00001{height:44.991035px;}
.hd_c00001{height:47.571035px;}
.h7_c00001{height:48.116836px;}
.h8_c00001{height:49.910303px;}
.h1f_c00001{height:52.323369px;}
.h11_c00001{height:53.571035px;}
.h1e_c00001{height:56.456104px;}
.h20_c00001{height:60.662637px;}
.h16_c00001{height:64.869170px;}
.h42_c00001{height:69.001904px;}
.h23_c00001{height:75.274805px;}
.h24_c00001{height:79.481338px;}
.h17_c00001{height:83.687871px;}
.h27_c00001{height:87.894404px;}
.h21_c00001{height:92.027139px;}
.h1b_c00001{height:96.233672px;}
.h48_c00001{height:100.440205px;}
.h28_c00001{height:104.572939px;}
.h1a_c00001{height:108.779473px;}
.h2b_c00001{height:112.986006px;}
.h14_c00001{height:117.118740px;}
.h31_c00001{height:123.391641px;}
.h30_c00001{height:125.531807px;}
.h25_c00001{height:131.804707px;}
.h47_c00001{height:136.011240px;}
.h49_c00001{height:140.143975px;}
.h3c_c00001{height:144.350508px;}
.h2f_c00001{height:148.557041px;}
.h40_c00001{height:152.689775px;}
.h15_c00001{height:156.896309px;}
.h22_c00001{height:163.169209px;}
.h2e_c00001{height:165.235576px;}
.h1d_c00001{height:171.508477px;}
.h2c_c00001{height:173.648643px;}
.h19_c00001{height:179.921543px;}
.h1c_c00001{height:184.054277px;}
.h44_c00001{height:188.260811px;}
.h45_c00001{height:192.467344px;}
.h3f_c00001{height:196.673877px;}
.h4b_c00001{height:200.806611px;}
.h3d_c00001{height:205.013145px;}
.h3e_c00001{height:209.219678px;}
.h3b_c00001{height:213.352412px;}
.h3a_c00001{height:217.558945px;}
.h39_c00001{height:223.831846px;}
.h4d_c00001{height:225.898213px;}
.h2d_c00001{height:232.171113px;}
.h4c_c00001{height:236.377646px;}
.h4e_c00001{height:240.584180px;}
.h46_c00001{height:244.790713px;}
.h56_c00001{height:248.923447px;}
.h18_c00001{height:253.129980px;}
.h41_c00001{height:263.609414px;}
.h50_c00001{height:265.675781px;}
.h57_c00001{height:274.015049px;}
.h43_c00001{height:280.287949px;}
.h51_c00001{height:412.092656px;}
.h4f_c00001{height:453.936592px;}
.h4a_c00001{height:481.168359px;}
.h58_c00001{height:1022.925557px;}
.h55_c00001{height:1119.000000px;}
.h54_c00001{height:1140.118096px;}
.h0_c00001{height:1335.000000px;}
.h52_c00001{height:2022.899678px;}
.w1_c00001{width:784.500000px;}
.w0_c00001{width:880.500000px;}
.x0_c00001{left:0.000000px;}
.x19f_c00001{left:105.000000px;}
.x186_c00001{left:112.500000px;}
.x1a3_c00001{left:114.000000px;}
.x184_c00001{left:115.500000px;}
.x1d0_c00001{left:118.500000px;}
.x1ca_c00001{left:120.000000px;}
.x1cf_c00001{left:121.500000px;}
.x1d2_c00001{left:124.500000px;}
.x1ce_c00001{left:125.580000px;}
.x1cb_c00001{left:129.000000px;}
.x1d1_c00001{left:130.500000px;}
.x18a_c00001{left:135.000000px;}
.x187_c00001{left:136.080000px;}
.x1a2_c00001{left:137.580000px;}
.x18b_c00001{left:139.500000px;}
.x18d_c00001{left:140.580000px;}
.x1a5_c00001{left:142.080000px;}
.x190_c00001{left:144.000000px;}
.x1a8_c00001{left:145.500000px;}
.x19b_c00001{left:147.000000px;}
.x17f_c00001{left:148.920000px;}
.x178_c00001{left:150.000000px;}
.x4_c00001{left:151.500000px;}
.x103_c00001{left:152.775000px;}
.x100_c00001{left:154.275000px;}
.x175_c00001{left:155.775000px;}
.x18e_c00001{left:157.920000px;}
.x1a7_c00001{left:159.000000px;}
.x1a6_c00001{left:160.080000px;}
.x180_c00001{left:161.580000px;}
.x181_c00001{left:163.920000px;}
.x10f_c00001{left:165.000000px;}
.xab_c00001{left:166.500000px;}
.x73_c00001{left:168.000000px;}
.x129_c00001{left:169.080000px;}
.x9a_c00001{left:171.000000px;}
.x48_c00001{left:172.080000px;}
.x17d_c00001{left:174.000000px;}
.x17e_c00001{left:175.500000px;}
.x174_c00001{left:177.000000px;}
.x14d_c00001{left:178.500000px;}
.x3b_c00001{left:180.420000px;}
.x1a_c00001{left:181.500000px;}
.x2f_c00001{left:182.580000px;}
.x19d_c00001{left:183.645000px;}
.x165_c00001{left:184.920000px;}
.xd3_c00001{left:186.420000px;}
.xa3_c00001{left:187.920000px;}
.x68_c00001{left:189.420000px;}
.x5_c00001{left:190.500000px;}
.x49_c00001{left:192.000000px;}
.x139_c00001{left:193.080000px;}
.x1b0_c00001{left:194.355000px;}
.xbf_c00001{left:195.420000px;}
.xb9_c00001{left:196.500000px;}
.xac_c00001{left:198.000000px;}
.x104_c00001{left:199.080000px;}
.x5f_c00001{left:200.580000px;}
.x194_c00001{left:201.645000px;}
.xcb_c00001{left:202.920000px;}
.x54_c00001{left:204.000000px;}
.xdb_c00001{left:205.080000px;}
.x7c_c00001{left:207.000000px;}
.x12a_c00001{left:208.920000px;}
.x115_c00001{left:210.420000px;}
.x94_c00001{left:211.500000px;}
.xe4_c00001{left:213.000000px;}
.xcf_c00001{left:214.080000px;}
.xa4_c00001{left:215.580000px;}
.x195_c00001{left:216.645000px;}
.xef_c00001{left:217.920000px;}
.x60_c00001{left:219.000000px;}
.x85_c00001{left:220.080000px;}
.x3c_c00001{left:222.000000px;}
.x24_c00001{left:223.500000px;}
.x30_c00001{left:225.000000px;}
.xb3_c00001{left:226.500000px;}
.x4a_c00001{left:228.000000px;}
.x70_c00001{left:229.080000px;}
.x105_c00001{left:230.580000px;}
.x11a_c00001{left:232.500000px;}
.x74_c00001{left:234.000000px;}
.x55_c00001{left:235.500000px;}
.x13d_c00001{left:237.420000px;}
.xf2_c00001{left:238.500000px;}
.x10_c00001{left:239.580000px;}
.x3d_c00001{left:240.855000px;}
.x8e_c00001{left:241.920000px;}
.x25_c00001{left:243.420000px;}
.x152_c00001{left:244.920000px;}
.x147_c00001{left:246.000000px;}
.x16b_c00001{left:247.500000px;}
.x9b_c00001{left:249.000000px;}
.x124_c00001{left:250.080000px;}
.x110_c00001{left:252.000000px;}
.xc0_c00001{left:253.500000px;}
.x75_c00001{left:254.580000px;}
.x13f_c00001{left:256.500000px;}
.x69_c00001{left:258.000000px;}
.xb4_c00001{left:259.080000px;}
.x1ae_c00001{left:260.355000px;}
.xa5_c00001{left:261.420000px;}
.x6_c00001{left:262.920000px;}
.x9c_c00001{left:264.000000px;}
.x148_c00001{left:265.080000px;}
.x4b_c00001{left:266.355000px;}
.x8f_c00001{left:267.645000px;}
.x172_c00001{left:268.920000px;}
.x111_c00001{left:270.000000px;}
.x26_c00001{left:271.500000px;}
.xba_c00001{left:272.580000px;}
.x86_c00001{left:274.500000px;}
.x3e_c00001{left:276.000000px;}
.x61_c00001{left:277.500000px;}
.x143_c00001{left:278.580000px;}
.x1b_c00001{left:280.500000px;}
.xc4_c00001{left:281.580000px;}
.xf0_c00001{left:283.500000px;}
.x101_c00001{left:285.000000px;}
.x11_c00001{left:286.500000px;}
.x120_c00001{left:287.580000px;}
.x198_c00001{left:288.645000px;}
.xad_c00001{left:289.920000px;}
.xe9_c00001{left:291.420000px;}
.x6a_c00001{left:292.500000px;}
.x31_c00001{left:294.000000px;}
.x62_c00001{left:295.500000px;}
.x9d_c00001{left:297.000000px;}
.x153_c00001{left:298.500000px;}
.x7_c00001{left:300.000000px;}
.x76_c00001{left:301.920000px;}
.x149_c00001{left:303.000000px;}
.x4c_c00001{left:304.080000px;}
.x196_c00001{left:305.145000px;}
.x87_c00001{left:306.420000px;}
.x156_c00001{left:307.500000px;}
.xf3_c00001{left:309.420000px;}
.x12_c00001{left:310.920000px;}
.x145_c00001{left:312.000000px;}
.x32_c00001{left:313.920000px;}
.xae_c00001{left:315.000000px;}
.x8_c00001{left:316.500000px;}
.xa6_c00001{left:317.580000px;}
.x7d_c00001{left:319.500000px;}
.xb5_c00001{left:321.000000px;}
.xc6_c00001{left:322.080000px;}
.xdc_c00001{left:323.580000px;}
.x192_c00001{left:324.645000px;}
.xea_c00001{left:325.920000px;}
.x15f_c00001{left:327.420000px;}
.x56_c00001{left:328.500000px;}
.xd7_c00001{left:330.420000px;}
.x90_c00001{left:331.500000px;}
.x112_c00001{left:333.420000px;}
.xcc_c00001{left:334.500000px;}
.x16f_c00001{left:336.000000px;}
.x4d_c00001{left:337.080000px;}
.x27_c00001{left:339.000000px;}
.x63_c00001{left:340.920000px;}
.x1c_c00001{left:342.000000px;}
.x135_c00001{left:343.500000px;}
.x71_c00001{left:345.000000px;}
.x12b_c00001{left:346.080000px;}
.x121_c00001{left:347.580000px;}
.x171_c00001{left:349.275000px;}
.x1af_c00001{left:350.355000px;}
.x57_c00001{left:351.420000px;}
.xdd_c00001{left:352.500000px;}
.x116_c00001{left:353.580000px;}
.x9e_c00001{left:355.500000px;}
.x3f_c00001{left:357.000000px;}
.x14c_c00001{left:358.500000px;}
.xb6_c00001{left:360.000000px;}
.x157_c00001{left:361.080000px;}
.x7e_c00001{left:363.000000px;}
.x15a_c00001{left:364.080000px;}
.xaf_c00001{left:365.580000px;}
.x64_c00001{left:367.500000px;}
.x106_c00001{left:369.420000px;}
.xe5_c00001{left:370.500000px;}
.xb7_c00001{left:372.000000px;}
.x1d_c00001{left:373.080000px;}
.x182_c00001{left:374.145000px;}
.x7f_c00001{left:375.420000px;}
.xd8_c00001{left:376.920000px;}
.x9_c00001{left:378.000000px;}
.x13_c00001{left:379.500000px;}
.x158_c00001{left:381.000000px;}
.xa7_c00001{left:382.920000px;}
.xfc_c00001{left:384.000000px;}
.x6b_c00001{left:385.500000px;}
.x33_c00001{left:387.000000px;}
.xd4_c00001{left:388.500000px;}
.xde_c00001{left:389.580000px;}
.x1ac_c00001{left:390.855000px;}
.x72_c00001{left:391.920000px;}
.x161_c00001{left:393.420000px;}
.xc7_c00001{left:394.920000px;}
.xeb_c00001{left:396.000000px;}
.x131_c00001{left:397.500000px;}
.x28_c00001{left:398.580000px;}
.xfb_c00001{left:400.500000px;}
.x4e_c00001{left:402.000000px;}
.x40_c00001{left:403.500000px;}
.x122_c00001{left:405.000000px;}
.x2_c00001{left:406.500000px;}
.x10a_c00001{left:408.000000px;}
.xa8_c00001{left:409.500000px;}
.xb0_c00001{left:411.000000px;}
.x77_c00001{left:412.500000px;}
.xf1_c00001{left:414.000000px;}
.x14f_c00001{left:415.500000px;}
.xd0_c00001{left:417.000000px;}
.x29_c00001{left:418.500000px;}
.x13a_c00001{left:419.580000px;}
.x10d_c00001{left:420.855000px;}
.x17a_c00001{left:421.920000px;}
.x160_c00001{left:423.000000px;}
.x88_c00001{left:424.080000px;}
.xbb_c00001{left:425.580000px;}
.x13e_c00001{left:427.500000px;}
.x137_c00001{left:429.000000px;}
.x34_c00001{left:430.500000px;}
.xc1_c00001{left:431.580000px;}
.x58_c00001{left:433.080000px;}
.x78_c00001{left:435.000000px;}
.xa_c00001{left:436.500000px;}
.xd5_c00001{left:437.580000px;}
.x4f_c00001{left:439.080000px;}
.x193_c00001{left:440.145000px;}
.xdf_c00001{left:441.420000px;}
.xcd_c00001{left:442.500000px;}
.x91_c00001{left:444.000000px;}
.x10e_c00001{left:445.500000px;}
.x163_c00001{left:446.580000px;}
.x65_c00001{left:448.500000px;}
.x16d_c00001{left:450.000000px;}
.x1e_c00001{left:451.920000px;}
.xd1_c00001{left:453.000000px;}
.x35_c00001{left:454.920000px;}
.xb_c00001{left:456.420000px;}
.xfd_c00001{left:457.500000px;}
.x41_c00001{left:459.420000px;}
.x13b_c00001{left:460.500000px;}
.xb1_c00001{left:462.000000px;}
.x14_c00001{left:463.500000px;}
.x2a_c00001{left:464.580000px;}
.x1ad_c00001{left:465.645000px;}
.x164_c00001{left:466.920000px;}
.x95_c00001{left:468.000000px;}
.xd9_c00001{left:469.500000px;}
.xc8_c00001{left:471.420000px;}
.xe6_c00001{left:472.920000px;}
.x166_c00001{left:474.000000px;}
.x59_c00001{left:475.080000px;}
.x9f_c00001{left:477.000000px;}
.x1f_c00001{left:478.920000px;}
.x10b_c00001{left:480.000000px;}
.x16c_c00001{left:481.500000px;}
.x36_c00001{left:482.580000px;}
.x2b_c00001{left:484.500000px;}
.xc_c00001{left:485.580000px;}
.x132_c00001{left:487.500000px;}
.x50_c00001{left:489.000000px;}
.x96_c00001{left:490.080000px;}
.x1ab_c00001{left:491.145000px;}
.x42_c00001{left:492.420000px;}
.x6c_c00001{left:493.920000px;}
.x80_c00001{left:495.420000px;}
.x5a_c00001{left:496.920000px;}
.x79_c00001{left:498.420000px;}
.xf7_c00001{left:499.500000px;}
.xe7_c00001{left:501.420000px;}
.x17b_c00001{left:502.920000px;}
.x92_c00001{left:504.000000px;}
.x15_c00001{left:505.080000px;}
.xc2_c00001{left:507.000000px;}
.x127_c00001{left:508.500000px;}
.x169_c00001{left:510.420000px;}
.xa0_c00001{left:511.920000px;}
.xb2_c00001{left:513.000000px;}
.x89_c00001{left:514.080000px;}
.x107_c00001{left:515.580000px;}
.x162_c00001{left:517.080000px;}
.x43_c00001{left:519.000000px;}
.x15b_c00001{left:520.080000px;}
.x6d_c00001{left:522.000000px;}
.x170_c00001{left:523.500000px;}
.x13c_c00001{left:525.000000px;}
.x37_c00001{left:526.080000px;}
.x11b_c00001{left:527.580000px;}
.x19e_c00001{left:528.645000px;}
.xc3_c00001{left:529.920000px;}
.x5b_c00001{left:531.420000px;}
.x123_c00001{left:532.500000px;}
.xe0_c00001{left:534.000000px;}
.xc5_c00001{left:535.080000px;}
.x146_c00001{left:537.000000px;}
.x117_c00001{left:538.080000px;}
.x20_c00001{left:539.580000px;}
.xbc_c00001{left:541.500000px;}
.xd_c00001{left:543.000000px;}
.x154_c00001{left:544.080000px;}
.x38_c00001{left:545.145000px;}
.x159_c00001{left:546.420000px;}
.x183_c00001{left:547.500000px;}
.x108_c00001{left:548.580000px;}
.x10c_c00001{left:550.275000px;}
.x12c_c00001{left:552.000000px;}
.x51_c00001{left:553.080000px;}
.x136_c00001{left:555.000000px;}
.x2c_c00001{left:556.500000px;}
.x21_c00001{left:558.000000px;}
.x44_c00001{left:559.080000px;}
.x81_c00001{left:561.000000px;}
.xb8_c00001{left:562.080000px;}
.x8a_c00001{left:564.000000px;}
.x167_c00001{left:565.500000px;}
.x5c_c00001{left:566.580000px;}
.x113_c00001{left:568.500000px;}
.x66_c00001{left:569.580000px;}
.xa9_c00001{left:571.080000px;}
.x125_c00001{left:572.580000px;}
.xf8_c00001{left:574.500000px;}
.xd2_c00001{left:576.000000px;}
.xa1_c00001{left:577.080000px;}
.x6e_c00001{left:579.000000px;}
.x82_c00001{left:580.500000px;}
.xe1_c00001{left:582.420000px;}
.xf4_c00001{left:583.920000px;}
.x16_c00001{left:585.420000px;}
.xbd_c00001{left:586.500000px;}
.x109_c00001{left:588.000000px;}
.xaa_c00001{left:589.920000px;}
.x150_c00001{left:591.000000px;}
.xfa_c00001{left:592.080000px;}
.x19a_c00001{left:593.145000px;}
.x12d_c00001{left:594.420000px;}
.x173_c00001{left:595.500000px;}
.x8b_c00001{left:596.580000px;}
.x15e_c00001{left:598.500000px;}
.x102_c00001{left:600.000000px;}
.xe8_c00001{left:601.500000px;}
.x97_c00001{left:603.000000px;}
.xc9_c00001{left:604.080000px;}
.x1b1_c00001{left:605.355000px;}
.x140_c00001{left:606.420000px;}
.xbe_c00001{left:607.500000px;}
.xe2_c00001{left:609.000000px;}
.x130_c00001{left:610.080000px;}
.x11c_c00001{left:612.000000px;}
.x52_c00001{left:613.920000px;}
.xe_c00001{left:615.000000px;}
.x22_c00001{left:616.500000px;}
.xfe_c00001{left:618.000000px;}
.xec_c00001{left:619.500000px;}
.x14e_c00001{left:620.580000px;}
.x45_c00001{left:622.500000px;}
.x11d_c00001{left:624.000000px;}
.xf5_c00001{left:625.920000px;}
.x39_c00001{left:627.000000px;}
.x8c_c00001{left:628.500000px;}
.x2d_c00001{left:630.000000px;}
.x15d_c00001{left:631.080000px;}
.x133_c00001{left:632.580000px;}
.x118_c00001{left:634.500000px;}
.x14a_c00001{left:635.580000px;}
.x177_c00001{left:636.645000px;}
.x46_c00001{left:637.920000px;}
.x168_c00001{left:639.000000px;}
.xce_c00001{left:640.080000px;}
.x11e_c00001{left:641.580000px;}
.x19c_c00001{left:642.645000px;}
.x17_c00001{left:643.920000px;}
.x98_c00001{left:645.000000px;}
.x16e_c00001{left:646.500000px;}
.x7a_c00001{left:648.420000px;}
.x83_c00001{left:649.500000px;}
.xa2_c00001{left:650.775000px;}
.x16a_c00001{left:652.080000px;}
.x128_c00001{left:653.580000px;}
.x53_c00001{left:655.500000px;}
.xe3_c00001{left:657.000000px;}
.xff_c00001{left:658.080000px;}
.x141_c00001{left:659.580000px;}
.x155_c00001{left:661.080000px;}
.x67_c00001{left:662.580000px;}
.xd6_c00001{left:664.080000px;}
.x2e_c00001{left:666.000000px;}
.x15c_c00001{left:667.500000px;}
.x18_c00001{left:669.420000px;}
.x5d_c00001{left:670.920000px;}
.x23_c00001{left:672.000000px;}
.x47_c00001{left:673.500000px;}
.x8d_c00001{left:675.000000px;}
.xca_c00001{left:676.500000px;}
.x7b_c00001{left:678.000000px;}
.xf_c00001{left:679.080000px;}
.xed_c00001{left:680.775000px;}
.x126_c00001{left:682.500000px;}
.x6f_c00001{left:684.000000px;}
.x138_c00001{left:685.500000px;}
.x176_c00001{left:687.000000px;}
.x3a_c00001{left:688.500000px;}
.x93_c00001{left:689.580000px;}
.x12e_c00001{left:691.080000px;}
.x114_c00001{left:693.000000px;}
.x19_c00001{left:694.080000px;}
.x134_c00001{left:696.000000px;}
.xf9_c00001{left:697.920000px;}
.x5e_c00001{left:699.000000px;}
.x144_c00001{left:700.500000px;}
.x99_c00001{left:701.580000px;}
.xda_c00001{left:703.500000px;}
.x1_c00001{left:705.000000px;}
.x119_c00001{left:706.920000px;}
.x142_c00001{left:708.420000px;}
.x17c_c00001{left:709.920000px;}
.x179_c00001{left:711.000000px;}
.xf6_c00001{left:712.080000px;}
.x151_c00001{left:714.000000px;}
.x11f_c00001{left:715.080000px;}
.x84_c00001{left:717.000000px;}
.x3_c00001{left:718.500000px;}
.x14b_c00001{left:720.000000px;}
.x12f_c00001{left:721.500000px;}
.xee_c00001{left:723.000000px;}
.x199_c00001{left:724.500000px;}
.x197_c00001{left:725.580000px;}
.x185_c00001{left:727.080000px;}
.x1c7_c00001{left:728.145000px;}
.x1ba_c00001{left:729.420000px;}
.x1b8_c00001{left:730.725000px;}
.x1b7_c00001{left:732.000000px;}
.x1c6_c00001{left:733.275000px;}
.x1b9_c00001{left:735.000000px;}
.x191_c00001{left:736.500000px;}
.x18f_c00001{left:738.000000px;}
.x1aa_c00001{left:739.500000px;}
.x188_c00001{left:741.000000px;}
.x1b3_c00001{left:742.725000px;}
.x1a0_c00001{left:744.000000px;}
.x18c_c00001{left:745.500000px;}
.x1b2_c00001{left:747.000000px;}
.x189_c00001{left:748.500000px;}
.x1a9_c00001{left:750.420000px;}
.x1b6_c00001{left:751.500000px;}
.x1a4_c00001{left:753.000000px;}
.x1c0_c00001{left:754.500000px;}
.x1c8_c00001{left:756.000000px;}
.x1cc_c00001{left:757.275000px;}
.x1c9_c00001{left:759.000000px;}
.x1a1_c00001{left:760.500000px;}
.x1c4_c00001{left:762.450000px;}
.x1b4_c00001{left:763.500000px;}
.x1b5_c00001{left:765.000000px;}
.x1cd_c00001{left:766.695000px;}
.x1c1_c00001{left:767.805000px;}
.x1c2_c00001{left:769.920000px;}
.x1c3_c00001{left:771.000000px;}
.x1c5_c00001{left:774.000000px;}
.x1be_c00001{left:775.500000px;}
.x1bc_c00001{left:777.000000px;}
.x1bb_c00001{left:778.500000px;}
.x1bd_c00001{left:780.000000px;}
.x1bf_c00001{left:784.500000px;}
@media print{
.v7_c00001{vertical-align:-16.000000pt;}
.v9_c00001{vertical-align:-10.666667pt;}
.vd_c00001{vertical-align:-7.626667pt;}
.v3_c00001{vertical-align:-5.333333pt;}
.v6_c00001{vertical-align:-3.840000pt;}
.vb_c00001{vertical-align:-1.493333pt;}
.v0_c00001{vertical-align:0.000000pt;}
.v8_c00001{vertical-align:1.493333pt;}
.vc_c00001{vertical-align:3.040000pt;}
.v1_c00001{vertical-align:5.333333pt;}
.v2_c00001{vertical-align:6.826667pt;}
.va_c00001{vertical-align:8.373333pt;}
.v4_c00001{vertical-align:10.666667pt;}
.ve_c00001{vertical-align:14.506667pt;}
.v5_c00001{vertical-align:16.000000pt;}
.ls0_c00001{letter-spacing:0.000000pt;}
.lsa_c00001{letter-spacing:3.251200pt;}
.ls9_c00001{letter-spacing:7.837867pt;}
.ls1_c00001{letter-spacing:10.504533pt;}
.ls8_c00001{letter-spacing:11.251200pt;}
.ls5_c00001{letter-spacing:13.171200pt;}
.ls4_c00001{letter-spacing:15.837867pt;}
.ls3_c00001{letter-spacing:16.526142pt;}
.ls7_c00001{letter-spacing:39.137831pt;}
.ls2_c00001{letter-spacing:63.114847pt;}
.ls6_c00001{letter-spacing:95.475433pt;}
.ws11_c00001{word-spacing:-70.185141pt;}
.ws7a_c00001{word-spacing:-57.670098pt;}
.ws31_c00001{word-spacing:-18.301502pt;}
.wsd_c00001{word-spacing:-15.012693pt;}
.ws2_c00001{word-spacing:-13.237333pt;}
.ws10d_c00001{word-spacing:-10.589867pt;}
.ws6_c00001{word-spacing:-7.832291pt;}
.ws87_c00001{word-spacing:-7.775190pt;}
.ws10c_c00001{word-spacing:-7.752915pt;}
.ws5d_c00001{word-spacing:-7.714337pt;}
.ws6d_c00001{word-spacing:-7.601752pt;}
.wsf8_c00001{word-spacing:-7.532499pt;}
.ws9a_c00001{word-spacing:-7.364186pt;}
.wsb2_c00001{word-spacing:-7.216000pt;}
.ws54_c00001{word-spacing:-7.150537pt;}
.ws8a_c00001{word-spacing:-7.118720pt;}
.ws9_c00001{word-spacing:-7.118293pt;}
.wsca_c00001{word-spacing:-7.098760pt;}
.ws48_c00001{word-spacing:-7.090986pt;}
.ws80_c00001{word-spacing:-7.070293pt;}
.wsf5_c00001{word-spacing:-6.947166pt;}
.ws88_c00001{word-spacing:-6.814115pt;}
.ws6a_c00001{word-spacing:-6.718681pt;}
.wsd9_c00001{word-spacing:-6.680000pt;}
.wsbf_c00001{word-spacing:-6.673794pt;}
.ws52_c00001{word-spacing:-6.653541pt;}
.ws4d_c00001{word-spacing:-6.620751pt;}
.ws99_c00001{word-spacing:-6.616501pt;}
.ws90_c00001{word-spacing:-6.587627pt;}
.wsfa_c00001{word-spacing:-6.549887pt;}
.ws42_c00001{word-spacing:-6.390322pt;}
.ws89_c00001{word-spacing:-6.279683pt;}
.wsf7_c00001{word-spacing:-6.257644pt;}
.ws44_c00001{word-spacing:-6.077547pt;}
.ws6c_c00001{word-spacing:-5.984701pt;}
.ws9c_c00001{word-spacing:-5.935573pt;}
.wseb_c00001{word-spacing:-5.933333pt;}
.ws93_c00001{word-spacing:-5.855582pt;}
.wsbe_c00001{word-spacing:-5.746069pt;}
.ws5b_c00001{word-spacing:-5.711730pt;}
.ws38_c00001{word-spacing:-5.706108pt;}
.ws8_c00001{word-spacing:-5.689459pt;}
.ws60_c00001{word-spacing:-5.632047pt;}
.ws6b_c00001{word-spacing:-5.497444pt;}
.ws0_c00001{word-spacing:-5.448524pt;}
.wsf3_c00001{word-spacing:-5.387659pt;}
.ws95_c00001{word-spacing:-5.324000pt;}
.ws5e_c00001{word-spacing:-5.279994pt;}
.ws8b_c00001{word-spacing:-5.252293pt;}
.wsbc_c00001{word-spacing:-5.251241pt;}
.ws71_c00001{word-spacing:-5.247899pt;}
.ws6e_c00001{word-spacing:-5.224402pt;}
.wsc_c00001{word-spacing:-5.218667pt;}
.wsfb_c00001{word-spacing:-5.206233pt;}
.wsfd_c00001{word-spacing:-5.192439pt;}
.ws109_c00001{word-spacing:-5.154133pt;}
.wsee_c00001{word-spacing:-5.148250pt;}
.ws9b_c00001{word-spacing:-5.134210pt;}
.wsb5_c00001{word-spacing:-5.107207pt;}
.ws103_c00001{word-spacing:-4.753304pt;}
.ws27_c00001{word-spacing:-4.685800pt;}
.ws4f_c00001{word-spacing:-4.664960pt;}
.ws4c_c00001{word-spacing:-4.659282pt;}
.wsf9_c00001{word-spacing:-4.654505pt;}
.wsff_c00001{word-spacing:-4.575644pt;}
.wse3_c00001{word-spacing:-4.496312pt;}
.ws3f_c00001{word-spacing:-4.439790pt;}
.ws107_c00001{word-spacing:-4.435111pt;}
.wsf1_c00001{word-spacing:-4.400330pt;}
.ws10a_c00001{word-spacing:-4.303455pt;}
.ws2a_c00001{word-spacing:-4.279673pt;}
.ws85_c00001{word-spacing:-4.191040pt;}
.wsbb_c00001{word-spacing:-4.056817pt;}
.wsc8_c00001{word-spacing:-4.049334pt;}
.wsb_c00001{word-spacing:-4.045207pt;}
.ws5_c00001{word-spacing:-4.026738pt;}
.wsd3_c00001{word-spacing:-4.013333pt;}
.wsec_c00001{word-spacing:-3.863035pt;}
.ws3b_c00001{word-spacing:-3.860504pt;}
.wsc0_c00001{word-spacing:-3.847702pt;}
.wsd4_c00001{word-spacing:-3.831517pt;}
.ws94_c00001{word-spacing:-3.776000pt;}
.wsc4_c00001{word-spacing:-3.730731pt;}
.ws2f_c00001{word-spacing:-3.722930pt;}
.ws78_c00001{word-spacing:-3.710097pt;}
.ws81_c00001{word-spacing:-3.688285pt;}
.ws40_c00001{word-spacing:-3.658170pt;}
.wsa8_c00001{word-spacing:-3.560178pt;}
.wsc7_c00001{word-spacing:-3.547898pt;}
.ws43_c00001{word-spacing:-3.509022pt;}
.ws82_c00001{word-spacing:-3.442409pt;}
.wsed_c00001{word-spacing:-3.429065pt;}
.ws100_c00001{word-spacing:-3.396114pt;}
.ws8e_c00001{word-spacing:-3.364267pt;}
.wsac_c00001{word-spacing:-3.324000pt;}
.ws2d_c00001{word-spacing:-3.313632pt;}
.wsf6_c00001{word-spacing:-3.218684pt;}
.ws50_c00001{word-spacing:-3.186375pt;}
.wsad_c00001{word-spacing:-3.163060pt;}
.ws73_c00001{word-spacing:-3.162597pt;}
.ws101_c00001{word-spacing:-3.144368pt;}
.wsfc_c00001{word-spacing:-3.134476pt;}
.ws36_c00001{word-spacing:-3.132868pt;}
.ws8d_c00001{word-spacing:-3.131802pt;}
.ws102_c00001{word-spacing:-3.021145pt;}
.wsa9_c00001{word-spacing:-2.969646pt;}
.ws70_c00001{word-spacing:-2.952488pt;}
.wsb1_c00001{word-spacing:-2.940800pt;}
.ws7b_c00001{word-spacing:-2.746269pt;}
.ws77_c00001{word-spacing:-2.732755pt;}
.ws51_c00001{word-spacing:-2.666528pt;}
.wsa6_c00001{word-spacing:-2.601375pt;}
.ws5a_c00001{word-spacing:-2.552000pt;}
.ws4b_c00001{word-spacing:-2.514636pt;}
.wsae_c00001{word-spacing:-2.491064pt;}
.wse0_c00001{word-spacing:-2.485226pt;}
.ws2e_c00001{word-spacing:-2.477395pt;}
.wsef_c00001{word-spacing:-2.449291pt;}
.ws55_c00001{word-spacing:-2.420742pt;}
.wse7_c00001{word-spacing:-2.415283pt;}
.wsba_c00001{word-spacing:-2.408610pt;}
.wsa4_c00001{word-spacing:-2.393083pt;}
.wsaa_c00001{word-spacing:-2.282667pt;}
.ws72_c00001{word-spacing:-2.272420pt;}
.ws9f_c00001{word-spacing:-2.246400pt;}
.ws91_c00001{word-spacing:-2.220177pt;}
.wsab_c00001{word-spacing:-2.170049pt;}
.ws76_c00001{word-spacing:-2.094481pt;}
.wsda_c00001{word-spacing:-2.091670pt;}
.ws9d_c00001{word-spacing:-2.054984pt;}
.ws28_c00001{word-spacing:-1.975048pt;}
.wse_c00001{word-spacing:-1.930418pt;}
.ws98_c00001{word-spacing:-1.862667pt;}
.ws41_c00001{word-spacing:-1.848392pt;}
.ws6f_c00001{word-spacing:-1.818986pt;}
.wsf2_c00001{word-spacing:-1.812129pt;}
.wscf_c00001{word-spacing:-1.737136pt;}
.ws2b_c00001{word-spacing:-1.694736pt;}
.ws9e_c00001{word-spacing:-1.675384pt;}
.wsf0_c00001{word-spacing:-1.659104pt;}
.wsf4_c00001{word-spacing:-1.607297pt;}
.wsa0_c00001{word-spacing:-1.579892pt;}
.ws7_c00001{word-spacing:-1.564986pt;}
.ws108_c00001{word-spacing:-1.437291pt;}
.ws75_c00001{word-spacing:-1.432725pt;}
.ws49_c00001{word-spacing:-1.384155pt;}
.wsb7_c00001{word-spacing:-1.378377pt;}
.ws4a_c00001{word-spacing:-1.371960pt;}
.wse2_c00001{word-spacing:-1.346667pt;}
.ws26_c00001{word-spacing:-1.288208pt;}
.wsb6_c00001{word-spacing:-1.260581pt;}
.wsfe_c00001{word-spacing:-1.173162pt;}
.ws4e_c00001{word-spacing:-1.172809pt;}
.ws97_c00001{word-spacing:-1.109333pt;}
.wsbd_c00001{word-spacing:-1.052749pt;}
.wsc1_c00001{word-spacing:-1.031967pt;}
.wsce_c00001{word-spacing:-0.996513pt;}
.wsa7_c00001{word-spacing:-0.923405pt;}
.ws86_c00001{word-spacing:-0.909528pt;}
.ws105_c00001{word-spacing:-0.887467pt;}
.wse9_c00001{word-spacing:-0.822337pt;}
.wsb8_c00001{word-spacing:-0.733490pt;}
.ws2c_c00001{word-spacing:-0.683292pt;}
.ws10b_c00001{word-spacing:-0.616709pt;}
.wsd0_c00001{word-spacing:-0.610131pt;}
.wsdf_c00001{word-spacing:-0.401427pt;}
.wsb0_c00001{word-spacing:-0.325428pt;}
.ws92_c00001{word-spacing:-0.316241pt;}
.wscd_c00001{word-spacing:-0.279771pt;}
.wsd6_c00001{word-spacing:-0.243561pt;}
.wsea_c00001{word-spacing:-0.201431pt;}
.ws83_c00001{word-spacing:-0.125413pt;}
.wsa3_c00001{word-spacing:-0.049330pt;}
.wsdc_c00001{word-spacing:-0.000724pt;}
.ws1_c00001{word-spacing:0.000000pt;}
.ws57_c00001{word-spacing:0.114667pt;}
.ws29_c00001{word-spacing:0.211002pt;}
.wsc6_c00001{word-spacing:0.344762pt;}
.ws39_c00001{word-spacing:0.458739pt;}
.ws3a_c00001{word-spacing:0.530848pt;}
.wsb9_c00001{word-spacing:0.543076pt;}
.ws84_c00001{word-spacing:0.581332pt;}
.ws4_c00001{word-spacing:0.659964pt;}
.ws58_c00001{word-spacing:0.692749pt;}
.ws79_c00001{word-spacing:0.881280pt;}
.wsaf_c00001{word-spacing:0.884000pt;}
.wsa1_c00001{word-spacing:0.907337pt;}
.wsb3_c00001{word-spacing:0.911508pt;}
.ws37_c00001{word-spacing:0.911571pt;}
.wse8_c00001{word-spacing:0.954925pt;}
.ws47_c00001{word-spacing:1.184571pt;}
.ws8c_c00001{word-spacing:1.210394pt;}
.wsd1_c00001{word-spacing:1.320000pt;}
.ws3_c00001{word-spacing:1.542740pt;}
.wsc2_c00001{word-spacing:1.783768pt;}
.wsa_c00001{word-spacing:2.011482pt;}
.wsa5_c00001{word-spacing:2.091458pt;}
.ws56_c00001{word-spacing:2.234799pt;}
.ws69_c00001{word-spacing:2.369438pt;}
.wsd5_c00001{word-spacing:2.413834pt;}
.wsd7_c00001{word-spacing:2.572174pt;}
.wscb_c00001{word-spacing:2.611256pt;}
.ws59_c00001{word-spacing:2.993933pt;}
.wsdb_c00001{word-spacing:3.077305pt;}
.ws5f_c00001{word-spacing:3.279935pt;}
.ws104_c00001{word-spacing:3.485458pt;}
.ws8f_c00001{word-spacing:3.546018pt;}
.wse5_c00001{word-spacing:3.706342pt;}
.wsc9_c00001{word-spacing:3.826637pt;}
.ws96_c00001{word-spacing:4.026616pt;}
.ws21_c00001{word-spacing:4.517999pt;}
.wsc5_c00001{word-spacing:4.599503pt;}
.wsd2_c00001{word-spacing:4.828392pt;}
.ws106_c00001{word-spacing:4.855690pt;}
.wsa2_c00001{word-spacing:5.652419pt;}
.wsb4_c00001{word-spacing:5.707613pt;}
.wse4_c00001{word-spacing:5.832643pt;}
.wse6_c00001{word-spacing:5.891515pt;}
.wse1_c00001{word-spacing:6.653333pt;}
.wsd8_c00001{word-spacing:7.242951pt;}
.wsc3_c00001{word-spacing:7.415238pt;}
.wsdd_c00001{word-spacing:8.933750pt;}
.wsde_c00001{word-spacing:9.470667pt;}
.ws5c_c00001{word-spacing:12.099747pt;}
.ws16_c00001{word-spacing:14.072862pt;}
.ws35_c00001{word-spacing:14.263602pt;}
.ws20_c00001{word-spacing:14.288501pt;}
.ws74_c00001{word-spacing:14.399741pt;}
.ws19_c00001{word-spacing:14.750782pt;}
.ws25_c00001{word-spacing:15.571771pt;}
.ws53_c00001{word-spacing:20.605564pt;}
.wscc_c00001{word-spacing:21.939577pt;}
.ws24_c00001{word-spacing:29.157018pt;}
.wsf_c00001{word-spacing:31.792308pt;}
.ws65_c00001{word-spacing:32.799328pt;}
.ws3d_c00001{word-spacing:33.107918pt;}
.ws32_c00001{word-spacing:33.277400pt;}
.ws1b_c00001{word-spacing:33.464251pt;}
.ws1f_c00001{word-spacing:34.962629pt;}
.ws1c_c00001{word-spacing:35.244643pt;}
.ws34_c00001{word-spacing:36.134498pt;}
.ws66_c00001{word-spacing:36.416547pt;}
.ws30_c00001{word-spacing:37.661663pt;}
.ws68_c00001{word-spacing:37.802083pt;}
.ws1d_c00001{word-spacing:38.332159pt;}
.ws64_c00001{word-spacing:40.247770pt;}
.ws33_c00001{word-spacing:40.517094pt;}
.ws46_c00001{word-spacing:42.628953pt;}
.ws15_c00001{word-spacing:44.775456pt;}
.ws1a_c00001{word-spacing:44.818223pt;}
.ws7d_c00001{word-spacing:46.037075pt;}
.ws7e_c00001{word-spacing:46.776558pt;}
.ws3c_c00001{word-spacing:50.722560pt;}
.ws3e_c00001{word-spacing:51.234133pt;}
.ws18_c00001{word-spacing:52.717514pt;}
.ws7c_c00001{word-spacing:52.741733pt;}
.ws1e_c00001{word-spacing:53.900800pt;}
.ws61_c00001{word-spacing:55.125201pt;}
.ws13_c00001{word-spacing:56.044554pt;}
.ws22_c00001{word-spacing:60.557242pt;}
.ws23_c00001{word-spacing:61.361940pt;}
.ws10_c00001{word-spacing:61.712627pt;}
.ws67_c00001{word-spacing:64.235860pt;}
.ws63_c00001{word-spacing:64.925917pt;}
.ws62_c00001{word-spacing:69.815673pt;}
.ws14_c00001{word-spacing:70.656684pt;}
.ws45_c00001{word-spacing:71.015514pt;}
.ws17_c00001{word-spacing:81.492846pt;}
.ws12_c00001{word-spacing:85.757673pt;}
.ws7f_c00001{word-spacing:86.040122pt;}
._2_c00001{margin-left:-63.114847pt;}
._12_c00001{margin-left:-39.137831pt;}
._6_c00001{margin-left:-16.526142pt;}
._14_c00001{width:2.610767pt;}
._17_c00001{width:3.723160pt;}
._0_c00001{width:5.553818pt;}
._a_c00001{width:10.496896pt;}
._16_c00001{width:12.205366pt;}
._9_c00001{width:13.387203pt;}
._15_c00001{width:14.402563pt;}
._b_c00001{width:15.884984pt;}
._7_c00001{width:17.013321pt;}
._1_c00001{width:40.877022pt;}
._8_c00001{width:42.314936pt;}
._e_c00001{width:43.204791pt;}
._10_c00001{width:44.872376pt;}
._5_c00001{width:47.318064pt;}
._f_c00001{width:48.207546pt;}
._3_c00001{width:53.846851pt;}
._13_c00001{width:59.787807pt;}
._4_c00001{width:61.822541pt;}
._c_c00001{width:64.484089pt;}
._d_c00001{width:66.285227pt;}
._11_c00001{width:73.953620pt;}
.fs7_c00001{font-size:3.040000pt;}
.fs1c_c00001{font-size:6.026667pt;}
.fs9_c00001{font-size:10.560000pt;}
.fs8_c00001{font-size:12.106667pt;}
.fs2_c00001{font-size:16.640000pt;}
.fs1_c00001{font-size:18.133333pt;}
.fs26_c00001{font-size:19.680000pt;}
.fs4_c00001{font-size:22.666667pt;}
.fs3_c00001{font-size:25.706667pt;}
.fs5_c00001{font-size:28.746667pt;}
.fs0_c00001{font-size:31.733333pt;}
.fs6_c00001{font-size:34.773333pt;}
.fs15_c00001{font-size:37.813333pt;}
.fs14_c00001{font-size:40.800000pt;}
.fs16_c00001{font-size:43.840000pt;}
.fsc_c00001{font-size:46.880000pt;}
.fs30_c00001{font-size:49.866667pt;}
.fs19_c00001{font-size:54.400000pt;}
.fs1a_c00001{font-size:57.440000pt;}
.fsd_c00001{font-size:60.480000pt;}
.fs1d_c00001{font-size:63.520000pt;}
.fs17_c00001{font-size:66.506667pt;}
.fs11_c00001{font-size:69.546667pt;}
.fs36_c00001{font-size:72.586667pt;}
.fs1e_c00001{font-size:75.573333pt;}
.fs10_c00001{font-size:78.613333pt;}
.fs1f_c00001{font-size:81.653333pt;}
.fsa_c00001{font-size:84.640000pt;}
.fs25_c00001{font-size:89.173333pt;}
.fs24_c00001{font-size:90.720000pt;}
.fs1b_c00001{font-size:95.253333pt;}
.fs35_c00001{font-size:98.293333pt;}
.fs37_c00001{font-size:101.280000pt;}
.fs2a_c00001{font-size:104.320000pt;}
.fs23_c00001{font-size:107.360000pt;}
.fs2e_c00001{font-size:110.346667pt;}
.fsb_c00001{font-size:113.386667pt;}
.fs18_c00001{font-size:117.920000pt;}
.fs22_c00001{font-size:119.413333pt;}
.fs13_c00001{font-size:123.946667pt;}
.fs20_c00001{font-size:125.493333pt;}
.fsf_c00001{font-size:130.026667pt;}
.fs12_c00001{font-size:133.013333pt;}
.fs32_c00001{font-size:136.053333pt;}
.fs33_c00001{font-size:139.093333pt;}
.fs2d_c00001{font-size:142.133333pt;}
.fs39_c00001{font-size:145.120000pt;}
.fs2b_c00001{font-size:148.160000pt;}
.fs2c_c00001{font-size:151.200000pt;}
.fs29_c00001{font-size:154.186667pt;}
.fs28_c00001{font-size:157.226667pt;}
.fs27_c00001{font-size:161.760000pt;}
.fs3b_c00001{font-size:163.253333pt;}
.fs21_c00001{font-size:167.786667pt;}
.fs3a_c00001{font-size:170.826667pt;}
.fs3c_c00001{font-size:173.866667pt;}
.fs34_c00001{font-size:176.906667pt;}
.fs42_c00001{font-size:179.893333pt;}
.fse_c00001{font-size:182.933333pt;}
.fs2f_c00001{font-size:190.506667pt;}
.fs3e_c00001{font-size:192.000000pt;}
.fs43_c00001{font-size:198.026667pt;}
.fs31_c00001{font-size:202.560000pt;}
.fs3f_c00001{font-size:297.813333pt;}
.fs3d_c00001{font-size:328.053333pt;}
.fs38_c00001{font-size:347.733333pt;}
.fs44_c00001{font-size:739.253333pt;}
.fs41_c00001{font-size:823.946667pt;}
.fs40_c00001{font-size:1461.920000pt;}
.y0_c00001{bottom:0.000000pt;}
.y12f2_c00001{bottom:89.306667pt;}
.y12f1_c00001{bottom:90.066667pt;}
.y12f3_c00001{bottom:90.840000pt;}
.y12ef_c00001{bottom:91.026667pt;}
.y12f0_c00001{bottom:91.226667pt;}
.y12f4_c00001{bottom:91.973333pt;}
.ybfe_c00001{bottom:135.773333pt;}
.ybfc_c00001{bottom:136.733333pt;}
.yc00_c00001{bottom:137.106667pt;}
.ybfd_c00001{bottom:137.893333pt;}
.ybff_c00001{bottom:139.973333pt;}
.y1185_c00001{bottom:155.400000pt;}
.y1184_c00001{bottom:156.733333pt;}
.y1186_c00001{bottom:158.640000pt;}
.y1176_c00001{bottom:160.733333pt;}
.y1181_c00001{bottom:162.066667pt;}
.y1177_c00001{bottom:162.640000pt;}
.y116f_c00001{bottom:163.400000pt;}
.y11b3_c00001{bottom:163.973333pt;}
.y1170_c00001{bottom:164.360000pt;}
.y117a_c00001{bottom:164.733333pt;}
.y1171_c00001{bottom:165.306667pt;}
.y11b2_c00001{bottom:165.693333pt;}
.y11b4_c00001{bottom:166.066667pt;}
.y117b_c00001{bottom:166.640000pt;}
.y11b1_c00001{bottom:166.840000pt;}
.y12ba_c00001{bottom:167.026667pt;}
.y117f_c00001{bottom:168.733333pt;}
.y1278_c00001{bottom:168.933333pt;}
.y12de_c00001{bottom:169.693333pt;}
.y11ab_c00001{bottom:170.066667pt;}
.y120d_c00001{bottom:170.266667pt;}
.y117e_c00001{bottom:170.640000pt;}
.y11ae_c00001{bottom:171.026667pt;}
.y1276_c00001{bottom:171.600000pt;}
.y11ac_c00001{bottom:171.973333pt;}
.y11ad_c00001{bottom:172.173333pt;}
.y1347_c00001{bottom:172.360000pt;}
.y120e_c00001{bottom:172.933333pt;}
.y1348_c00001{bottom:173.306667pt;}
.y1349_c00001{bottom:173.506667pt;}
.y11f9_c00001{bottom:174.266667pt;}
.y11f8_c00001{bottom:174.640000pt;}
.y11f6_c00001{bottom:175.026667pt;}
.y12a5_c00001{bottom:175.600000pt;}
.y11dc_c00001{bottom:175.973333pt;}
.y11fa_c00001{bottom:176.173333pt;}
.y12b3_c00001{bottom:176.360000pt;}
.y11f7_c00001{bottom:176.560000pt;}
.y11db_c00001{bottom:176.733333pt;}
.y11fb_c00001{bottom:176.933333pt;}
.y11bf_c00001{bottom:177.306667pt;}
.y12b4_c00001{bottom:177.506667pt;}
.y12b1_c00001{bottom:177.693333pt;}
.y12b2_c00001{bottom:177.893333pt;}
.y11bc_c00001{bottom:178.066667pt;}
.y1251_c00001{bottom:178.266667pt;}
.y11c4_c00001{bottom:178.640000pt;}
.y11da_c00001{bottom:178.840000pt;}
.y11be_c00001{bottom:179.026667pt;}
.y11c5_c00001{bottom:179.400000pt;}
.y11c3_c00001{bottom:179.600000pt;}
.yffd_c00001{bottom:179.973333pt;}
.y11bd_c00001{bottom:180.173333pt;}
.y11c2_c00001{bottom:180.360000pt;}
.y11c1_c00001{bottom:180.560000pt;}
.yfc1_c00001{bottom:180.733333pt;}
.yfc2_c00001{bottom:180.933333pt;}
.yff5_c00001{bottom:181.306667pt;}
.yff9_c00001{bottom:181.506667pt;}
.yff2_c00001{bottom:181.693333pt;}
.yff8_c00001{bottom:181.893333pt;}
.y1277_c00001{bottom:182.066667pt;}
.yffb_c00001{bottom:182.266667pt;}
.yfc0_c00001{bottom:182.640000pt;}
.yffc_c00001{bottom:182.840000pt;}
.yff4_c00001{bottom:183.026667pt;}
.yff7_c00001{bottom:183.226667pt;}
.y12ae_c00001{bottom:183.400000pt;}
.yffa_c00001{bottom:183.600000pt;}
.yff6_c00001{bottom:183.973333pt;}
.yff3_c00001{bottom:184.173333pt;}
.y12ad_c00001{bottom:184.360000pt;}
.y11ef_c00001{bottom:184.733333pt;}
.y1279_c00001{bottom:184.933333pt;}
.y11ee_c00001{bottom:185.306667pt;}
.y12aa_c00001{bottom:185.506667pt;}
.y12a8_c00001{bottom:185.693333pt;}
.y12a9_c00001{bottom:185.893333pt;}
.y1174_c00001{bottom:186.066667pt;}
.y11ed_c00001{bottom:186.266667pt;}
.y1173_c00001{bottom:186.640000pt;}
.y12e3_c00001{bottom:186.840000pt;}
.y1202_c00001{bottom:187.026667pt;}
.y1190_c00001{bottom:187.400000pt;}
.y1201_c00001{bottom:187.600000pt;}
.y11fe_c00001{bottom:188.360000pt;}
.y11ff_c00001{bottom:188.560000pt;}
.y1209_c00001{bottom:188.733333pt;}
.y129a_c00001{bottom:188.933333pt;}
.y118f_c00001{bottom:189.306667pt;}
.y1200_c00001{bottom:189.506667pt;}
.y120b_c00001{bottom:189.693333pt;}
.y12a0_c00001{bottom:189.893333pt;}
.y1229_c00001{bottom:190.066667pt;}
.y122c_c00001{bottom:190.266667pt;}
.y122d_c00001{bottom:190.640000pt;}
.y120c_c00001{bottom:190.840000pt;}
.y122b_c00001{bottom:191.026667pt;}
.y11d9_c00001{bottom:191.400000pt;}
.y120a_c00001{bottom:191.600000pt;}
.y124f_c00001{bottom:191.973333pt;}
.y122a_c00001{bottom:192.173333pt;}
.y1087_c00001{bottom:192.360000pt;}
.y11a4_c00001{bottom:192.733333pt;}
.y1085_c00001{bottom:192.933333pt;}
.y11a3_c00001{bottom:193.306667pt;}
.y1250_c00001{bottom:193.506667pt;}
.yfc5_c00001{bottom:193.693333pt;}
.yfc3_c00001{bottom:194.066667pt;}
.yfc4_c00001{bottom:194.266667pt;}
.y1006_c00001{bottom:194.640000pt;}
.y1084_c00001{bottom:194.840000pt;}
.y1086_c00001{bottom:195.026667pt;}
.y127d_c00001{bottom:195.226667pt;}
.y1005_c00001{bottom:195.400000pt;}
.y1004_c00001{bottom:195.600000pt;}
.yfc7_c00001{bottom:195.973333pt;}
.y1008_c00001{bottom:196.360000pt;}
.y1205_c00001{bottom:196.733333pt;}
.yfc6_c00001{bottom:196.933333pt;}
.y1007_c00001{bottom:197.306667pt;}
.y12d4_c00001{bottom:197.506667pt;}
.y1207_c00001{bottom:197.693333pt;}
.y1009_c00001{bottom:197.893333pt;}
.y1248_c00001{bottom:198.066667pt;}
.y124b_c00001{bottom:198.266667pt;}
.y1206_c00001{bottom:198.640000pt;}
.y1214_c00001{bottom:198.840000pt;}
.y124a_c00001{bottom:199.026667pt;}
.y3_c00001{bottom:199.226667pt;}
.y1215_c00001{bottom:199.600000pt;}
.yeec_c00001{bottom:199.973333pt;}
.y1249_c00001{bottom:200.173333pt;}
.y119a_c00001{bottom:200.733333pt;}
.y124c_c00001{bottom:200.933333pt;}
.y12b6_c00001{bottom:201.306667pt;}
.y11ba_c00001{bottom:201.506667pt;}
.y11b9_c00001{bottom:201.693333pt;}
.yec5_c00001{bottom:201.893333pt;}
.y11bb_c00001{bottom:202.066667pt;}
.y124d_c00001{bottom:202.266667pt;}
.y12d5_c00001{bottom:202.440000pt;}
.yf74_c00001{bottom:202.640000pt;}
.y11b8_c00001{bottom:202.840000pt;}
.y644_c00001{bottom:203.026667pt;}
.y7f4_c00001{bottom:203.226667pt;}
.yfbb_c00001{bottom:203.400000pt;}
.y129f_c00001{bottom:203.600000pt;}
.yf71_c00001{bottom:203.973333pt;}
.y1247_c00001{bottom:204.173333pt;}
.yf9d_c00001{bottom:204.360000pt;}
.y129b_c00001{bottom:204.560000pt;}
.yf54_c00001{bottom:204.733333pt;}
.yc9e_c00001{bottom:204.933333pt;}
.y646_c00001{bottom:205.106667pt;}
.yc9a_c00001{bottom:205.306667pt;}
.yb80_c00001{bottom:205.493333pt;}
.yc9d_c00001{bottom:205.693333pt;}
.yc2d_c00001{bottom:205.893333pt;}
.yb7c_c00001{bottom:206.066667pt;}
.yc9b_c00001{bottom:206.266667pt;}
.y645_c00001{bottom:206.640000pt;}
.y12ab_c00001{bottom:206.826667pt;}
.yfef_c00001{bottom:206.840000pt;}
.y643_c00001{bottom:207.026667pt;}
.yb81_c00001{bottom:207.040000pt;}
.y570_c00001{bottom:207.226667pt;}
.yb82_c00001{bottom:207.400000pt;}
.yc9c_c00001{bottom:207.600000pt;}
.yb7b_c00001{bottom:207.973333pt;}
.yb7f_c00001{bottom:208.360000pt;}
.yb7e_c00001{bottom:208.560000pt;}
.yd30_c00001{bottom:208.733333pt;}
.yfc8_c00001{bottom:208.933333pt;}
.yb7d_c00001{bottom:209.306667pt;}
.yfca_c00001{bottom:209.506667pt;}
.yd31_c00001{bottom:209.693333pt;}
.yad7_c00001{bottom:209.893333pt;}
.y1000_c00001{bottom:210.066667pt;}
.yfc9_c00001{bottom:210.266667pt;}
.y12a3_c00001{bottom:210.640000pt;}
.y1001_c00001{bottom:211.026667pt;}
.y12a2_c00001{bottom:211.600000pt;}
.y1003_c00001{bottom:212.173333pt;}
.y6e7_c00001{bottom:212.360000pt;}
.y1002_c00001{bottom:212.933333pt;}
.y122e_c00001{bottom:213.853333pt;}
.y6e5_c00001{bottom:214.440000pt;}
.y92d_c00001{bottom:214.640000pt;}
.y131d_c00001{bottom:214.893333pt;}
.y92a_c00001{bottom:215.026667pt;}
.y6e8_c00001{bottom:215.226667pt;}
.y129d_c00001{bottom:215.400000pt;}
.y12a1_c00001{bottom:215.600000pt;}
.y92c_c00001{bottom:215.973333pt;}
.y92b_c00001{bottom:216.173333pt;}
.y6e6_c00001{bottom:216.360000pt;}
.y7f3_c00001{bottom:216.733333pt;}
.y929_c00001{bottom:216.933333pt;}
.y6e9_c00001{bottom:217.306667pt;}
.yf9c_c00001{bottom:217.693333pt;}
.yc97_c00001{bottom:217.893333pt;}
.yf53_c00001{bottom:218.066667pt;}
.y129c_c00001{bottom:218.266667pt;}
.y7f2_c00001{bottom:218.640000pt;}
.y11d6_c00001{bottom:218.840000pt;}
.y908_c00001{bottom:219.026667pt;}
.y909_c00001{bottom:219.040000pt;}
.y90a_c00001{bottom:219.226667pt;}
.y82d_c00001{bottom:219.400000pt;}
.yc99_c00001{bottom:219.600000pt;}
.y832_c00001{bottom:219.973333pt;}
.yc98_c00001{bottom:220.173333pt;}
.y82e_c00001{bottom:220.360000pt;}
.ye24_c00001{bottom:220.560000pt;}
.yef6_c00001{bottom:220.733333pt;}
.y830_c00001{bottom:220.933333pt;}
.y218_c00001{bottom:221.106667pt;}
.y54b_c00001{bottom:221.306667pt;}
.y6a2_c00001{bottom:221.493333pt;}
.y12c2_c00001{bottom:221.506667pt;}
.y187_c00001{bottom:221.693333pt;}
.yea8_c00001{bottom:221.893333pt;}
.y217_c00001{bottom:222.066667pt;}
.y82f_c00001{bottom:222.266667pt;}
.y14a_c00001{bottom:222.440000pt;}
.y9ab_c00001{bottom:222.640000pt;}
.y188_c00001{bottom:222.826667pt;}
.yf61_c00001{bottom:222.840000pt;}
.y216_c00001{bottom:223.026667pt;}
.y1c3_c00001{bottom:223.226667pt;}
.y1e4_c00001{bottom:223.400000pt;}
.y75d_c00001{bottom:223.600000pt;}
.y14c_c00001{bottom:223.773333pt;}
.y372_c00001{bottom:223.973333pt;}
.yc0b_c00001{bottom:224.160000pt;}
.y692_c00001{bottom:224.173333pt;}
.y14b_c00001{bottom:224.360000pt;}
.y1c2_c00001{bottom:224.373333pt;}
.y14e_c00001{bottom:224.560000pt;}
.y2af_c00001{bottom:224.733333pt;}
.y9ac_c00001{bottom:224.933333pt;}
.y1264_c00001{bottom:225.013333pt;}
.y4ed_c00001{bottom:225.106667pt;}
.y1e3_c00001{bottom:225.306667pt;}
.ybfb_c00001{bottom:225.506667pt;}
.y14d_c00001{bottom:225.693333pt;}
.ye90_c00001{bottom:225.706667pt;}
.y755_c00001{bottom:225.893333pt;}
.y377_c00001{bottom:226.066667pt;}
.y507_c00001{bottom:226.266667pt;}
.y374_c00001{bottom:226.440000pt;}
.y486_c00001{bottom:226.640000pt;}
.y3c0_c00001{bottom:226.826667pt;}
.y691_c00001{bottom:226.840000pt;}
.y371_c00001{bottom:227.026667pt;}
.y373_c00001{bottom:227.226667pt;}
.y3bf_c00001{bottom:227.400000pt;}
.y75e_c00001{bottom:227.600000pt;}
.y3c2_c00001{bottom:227.773333pt;}
.y375_c00001{bottom:227.973333pt;}
.y12f5_c00001{bottom:228.226667pt;}
.y376_c00001{bottom:228.360000pt;}
.y51a_c00001{bottom:228.560000pt;}
.y3be_c00001{bottom:228.733333pt;}
.y3bd_c00001{bottom:229.306667pt;}
.y693_c00001{bottom:229.506667pt;}
.y3c1_c00001{bottom:229.693333pt;}
.y694_c00001{bottom:229.893333pt;}
.y7ef_c00001{bottom:230.066667pt;}
.yc95_c00001{bottom:230.093333pt;}
.y7ee_c00001{bottom:230.266667pt;}
.y628_c00001{bottom:230.440000pt;}
.y928_c00001{bottom:230.640000pt;}
.y695_c00001{bottom:230.840000pt;}
.y7ed_c00001{bottom:231.026667pt;}
.yc96_c00001{bottom:231.226667pt;}
.y1275_c00001{bottom:231.280000pt;}
.y629_c00001{bottom:231.400000pt;}
.ye22_c00001{bottom:231.426667pt;}
.y7f0_c00001{bottom:231.600000pt;}
.y62a_c00001{bottom:231.773333pt;}
.y6e3_c00001{bottom:231.973333pt;}
.ye7d_c00001{bottom:232.173333pt;}
.y1280_c00001{bottom:232.320000pt;}
.y627_c00001{bottom:232.360000pt;}
.ye21_c00001{bottom:232.733333pt;}
.y7f1_c00001{bottom:232.933333pt;}
.ydba_c00001{bottom:233.133333pt;}
.y6e2_c00001{bottom:233.306667pt;}
.y62b_c00001{bottom:233.693333pt;}
.y6e1_c00001{bottom:233.893333pt;}
.yd2e_c00001{bottom:234.066667pt;}
.yf21_c00001{bottom:234.093333pt;}
.y831_c00001{bottom:234.266667pt;}
.y907_c00001{bottom:234.440000pt;}
.y82b_c00001{bottom:234.640000pt;}
.yf11_c00001{bottom:234.840000pt;}
.y6e4_c00001{bottom:235.026667pt;}
.ye23_c00001{bottom:235.040000pt;}
.yf22_c00001{bottom:235.226667pt;}
.y9a7_c00001{bottom:235.400000pt;}
.y82c_c00001{bottom:235.600000pt;}
.y822_c00001{bottom:235.973333pt;}
.yd2f_c00001{bottom:236.173333pt;}
.y906_c00001{bottom:236.360000pt;}
.y9aa_c00001{bottom:236.560000pt;}
.y759_c00001{bottom:236.733333pt;}
.y75c_c00001{bottom:236.933333pt;}
.y9a6_c00001{bottom:237.306667pt;}
.y9a9_c00001{bottom:237.506667pt;}
.y215_c00001{bottom:237.693333pt;}
.yf23_c00001{bottom:237.706667pt;}
.y758_c00001{bottom:237.893333pt;}
.y213_c00001{bottom:238.066667pt;}
.y9a8_c00001{bottom:238.266667pt;}
.yca_c00001{bottom:238.440000pt;}
.y75a_c00001{bottom:238.640000pt;}
.y1298_c00001{bottom:238.746667pt;}
.yba3_c00001{bottom:238.826667pt;}
.ybfa_c00001{bottom:238.840000pt;}
.y214_c00001{bottom:239.026667pt;}
.yeb6_c00001{bottom:239.040000pt;}
.y6b7_c00001{bottom:239.400000pt;}
.y75b_c00001{bottom:239.600000pt;}
.y185_c00001{bottom:239.773333pt;}
.y642_c00001{bottom:239.973333pt;}
.y1e1_c00001{bottom:240.160000pt;}
.y54a_c00001{bottom:240.360000pt;}
.y1e2_c00001{bottom:240.560000pt;}
.y1c1_c00001{bottom:240.733333pt;}
.y927_c00001{bottom:240.933333pt;}
.y147_c00001{bottom:241.106667pt;}
.y184_c00001{bottom:241.306667pt;}
.y68f_c00001{bottom:241.506667pt;}
.y1159_c00001{bottom:241.600000pt;}
.y144_c00001{bottom:241.693333pt;}
.y1c0_c00001{bottom:241.706667pt;}
.y145_c00001{bottom:241.893333pt;}
.y186_c00001{bottom:242.066667pt;}
.y484_c00001{bottom:242.440000pt;}
.y149_c00001{bottom:242.640000pt;}
.y483_c00001{bottom:242.826667pt;}
.y690_c00001{bottom:242.840000pt;}
.y146_c00001{bottom:243.026667pt;}
.yc28_c00001{bottom:243.040000pt;}
.y754_c00001{bottom:243.226667pt;}
.y485_c00001{bottom:243.400000pt;}
.y4eb_c00001{bottom:243.600000pt;}
.y36f_c00001{bottom:243.773333pt;}
.y148_c00001{bottom:243.973333pt;}
.y36d_c00001{bottom:244.360000pt;}
.y980_c00001{bottom:244.373333pt;}
.y36e_c00001{bottom:244.560000pt;}
.y4ec_c00001{bottom:244.733333pt;}
.yf70_c00001{bottom:244.933333pt;}
.y3ba_c00001{bottom:245.106667pt;}
.y36c_c00001{bottom:245.306667pt;}
.y843_c00001{bottom:245.493333pt;}
.y370_c00001{bottom:245.693333pt;}
.y102e_c00001{bottom:245.746667pt;}
.yb87_c00001{bottom:245.893333pt;}
.y519_c00001{bottom:246.066667pt;}
.ye7b_c00001{bottom:246.266667pt;}
.y88d_c00001{bottom:246.626667pt;}
.y3bb_c00001{bottom:246.640000pt;}
.y9d3_c00001{bottom:246.826667pt;}
.yea7_c00001{bottom:246.840000pt;}
.y3bc_c00001{bottom:247.026667pt;}
.yc94_c00001{bottom:247.040000pt;}
.yf10_c00001{bottom:247.226667pt;}
.y9ce_c00001{bottom:247.400000pt;}
.yedc_c00001{bottom:247.426667pt;}
.y876_c00001{bottom:247.560000pt;}
.yd9e_c00001{bottom:247.600000pt;}
.y896_c00001{bottom:247.760000pt;}
.y621_c00001{bottom:247.773333pt;}
.y9f0_c00001{bottom:247.960000pt;}
.yd2d_c00001{bottom:247.973333pt;}
.y9c3_c00001{bottom:248.160000pt;}
.ye7c_c00001{bottom:248.173333pt;}
.ycf8_c00001{bottom:248.360000pt;}
.ybf7_c00001{bottom:248.560000pt;}
.y622_c00001{bottom:248.733333pt;}
.y894_c00001{bottom:248.893333pt;}
.y9a5_c00001{bottom:248.933333pt;}
.y8ba_c00001{bottom:249.066667pt;}
.y9f2_c00001{bottom:249.093333pt;}
.y6dc_c00001{bottom:249.106667pt;}
.y8a4_c00001{bottom:249.266667pt;}
.yd68_c00001{bottom:249.306667pt;}
.ybf8_c00001{bottom:249.506667pt;}
.y623_c00001{bottom:249.693333pt;}
.ye42_c00001{bottom:249.706667pt;}
.y620_c00001{bottom:249.893333pt;}
.y6dd_c00001{bottom:250.066667pt;}
.y9e7_c00001{bottom:250.226667pt;}
.ycf9_c00001{bottom:250.266667pt;}
.y8a7_c00001{bottom:250.400000pt;}
.ya17_c00001{bottom:250.426667pt;}
.y6e0_c00001{bottom:250.440000pt;}
.y624_c00001{bottom:250.640000pt;}
.ybf9_c00001{bottom:250.840000pt;}
.y626_c00001{bottom:251.026667pt;}
.yeeb_c00001{bottom:251.040000pt;}
.y8a1_c00001{bottom:251.160000pt;}
.y6de_c00001{bottom:251.226667pt;}
.y106a_c00001{bottom:251.280000pt;}
.ya03_c00001{bottom:251.360000pt;}
.y834_c00001{bottom:251.520000pt;}
.y9fe_c00001{bottom:251.560000pt;}
.y9a4_c00001{bottom:251.600000pt;}
.y1146_c00001{bottom:251.720000pt;}
.ya19_c00001{bottom:251.733333pt;}
.y901_c00001{bottom:251.773333pt;}
.y625_c00001{bottom:251.973333pt;}
.y68c_c00001{bottom:252.173333pt;}
.y6df_c00001{bottom:252.360000pt;}
.ydb9_c00001{bottom:252.373333pt;}
.y9fc_c00001{bottom:252.493333pt;}
.y68b_c00001{bottom:252.560000pt;}
.y900_c00001{bottom:252.733333pt;}
.ycfa_c00001{bottom:252.933333pt;}
.y903_c00001{bottom:253.106667pt;}
.y68a_c00001{bottom:253.506667pt;}
.y902_c00001{bottom:253.693333pt;}
.y68d_c00001{bottom:253.893333pt;}
.y905_c00001{bottom:254.640000pt;}
.y68e_c00001{bottom:254.840000pt;}
.y1308_c00001{bottom:254.893333pt;}
.y87e_c00001{bottom:254.933333pt;}
.y904_c00001{bottom:255.026667pt;}
.y10b4_c00001{bottom:255.133333pt;}
.y924_c00001{bottom:255.226667pt;}
.y9eb_c00001{bottom:255.520000pt;}
.y926_c00001{bottom:255.600000pt;}
.y549_c00001{bottom:255.773333pt;}
.y2ae_c00001{bottom:255.973333pt;}
.yc5_c00001{bottom:256.160000pt;}
.y140_c00001{bottom:256.360000pt;}
.y925_c00001{bottom:256.560000pt;}
.y742_c00001{bottom:256.733333pt;}
.y7ec_c00001{bottom:256.933333pt;}
.yc7_c00001{bottom:257.106667pt;}
.ye20_c00001{bottom:257.306667pt;}
.y1bf_c00001{bottom:257.493333pt;}
.y689_c00001{bottom:257.506667pt;}
.y6f5_c00001{bottom:257.693333pt;}
.y1109_c00001{bottom:257.826667pt;}
.y6ee_c00001{bottom:257.893333pt;}
.yc9_c00001{bottom:258.066667pt;}
.yf0f_c00001{bottom:258.266667pt;}
.y141_c00001{bottom:258.440000pt;}
.ya9d_c00001{bottom:258.626667pt;}
.y212_c00001{bottom:258.640000pt;}
.y6f7_c00001{bottom:258.826667pt;}
.y973_c00001{bottom:258.840000pt;}
.yc6_c00001{bottom:259.026667pt;}
.y142_c00001{bottom:259.226667pt;}
.y143_c00001{bottom:259.400000pt;}
.yc1f_c00001{bottom:259.426667pt;}
.yc93_c00001{bottom:259.600000pt;}
.yaa3_c00001{bottom:259.760000pt;}
.y36a_c00001{bottom:259.773333pt;}
.yf20_c00001{bottom:259.800000pt;}
.y13f_c00001{bottom:259.973333pt;}
.yf52_c00001{bottom:260.173333pt;}
.yc8_c00001{bottom:260.360000pt;}
.y6b6_c00001{bottom:260.373333pt;}
.y6f6_c00001{bottom:260.560000pt;}
.y97f_c00001{bottom:260.733333pt;}
.ya8b_c00001{bottom:260.893333pt;}
.ybf5_c00001{bottom:260.933333pt;}
.yad4_c00001{bottom:261.066667pt;}
.y367_c00001{bottom:261.106667pt;}
.y183_c00001{bottom:261.306667pt;}
.y10cc_c00001{bottom:261.426667pt;}
.ybf4_c00001{bottom:261.506667pt;}
.y481_c00001{bottom:261.693333pt;}
.y36b_c00001{bottom:261.893333pt;}
.yacd_c00001{bottom:262.026667pt;}
.y482_c00001{bottom:262.066667pt;}
.yc20_c00001{bottom:262.266667pt;}
.yab4_c00001{bottom:262.400000pt;}
.y3b8_c00001{bottom:262.440000pt;}
.y4ea_c00001{bottom:262.640000pt;}
.y1138_c00001{bottom:262.746667pt;}
.ybf6_c00001{bottom:262.840000pt;}
.y368_c00001{bottom:263.026667pt;}
.yaae_c00001{bottom:263.160000pt;}
.y518_c00001{bottom:263.226667pt;}
.y3b9_c00001{bottom:263.400000pt;}
.y9a1_c00001{bottom:263.600000pt;}
.y1281_c00001{bottom:263.760000pt;}
.y369_c00001{bottom:263.973333pt;}
.y9a3_c00001{bottom:264.173333pt;}
.y3b7_c00001{bottom:264.360000pt;}
.ycf7_c00001{bottom:264.373333pt;}
.y972_c00001{bottom:264.560000pt;}
.y1093_c00001{bottom:264.613333pt;}
.yfac_c00001{bottom:264.733333pt;}
.y9a2_c00001{bottom:264.933333pt;}
.y61d_c00001{bottom:265.106667pt;}
.y687_c00001{bottom:265.133333pt;}
.ye8d_c00001{bottom:265.306667pt;}
.y685_c00001{bottom:265.506667pt;}
.y6db_c00001{bottom:265.693333pt;}
.ye8f_c00001{bottom:265.706667pt;}
.y686_c00001{bottom:265.893333pt;}
.y85d_c00001{bottom:266.066667pt;}
.yaaa_c00001{bottom:266.186667pt;}
.ye8e_c00001{bottom:266.266667pt;}
.y61f_c00001{bottom:266.440000pt;}
.y971_c00001{bottom:266.466667pt;}
.y688_c00001{bottom:266.840000pt;}
.ya8f_c00001{bottom:266.933333pt;}
.y61c_c00001{bottom:267.226667pt;}
.y10e7_c00001{bottom:267.293333pt;}
.y9d4_c00001{bottom:267.400000pt;}
.y122f_c00001{bottom:267.520000pt;}
.y868_c00001{bottom:267.586667pt;}
.y61e_c00001{bottom:267.973333pt;}
.y61b_c00001{bottom:268.360000pt;}
.y109f_c00001{bottom:268.666667pt;}
.y9dc_c00001{bottom:268.920000pt;}
.y9c4_c00001{bottom:269.093333pt;}
.y8fe_c00001{bottom:269.106667pt;}
.y6d9_c00001{bottom:269.306667pt;}
.y844_c00001{bottom:269.466667pt;}
.y6da_c00001{bottom:269.693333pt;}
.y8fd_c00001{bottom:270.066667pt;}
.y7ea_c00001{bottom:270.266667pt;}
.yc92_c00001{bottom:270.640000pt;}
.y7eb_c00001{bottom:271.026667pt;}
.y8ff_c00001{bottom:271.226667pt;}
.ye1e_c00001{bottom:271.400000pt;}
.y8a8_c00001{bottom:271.600000pt;}
.y10fe_c00001{bottom:271.880000pt;}
.y8fc_c00001{bottom:271.973333pt;}
.y8a9_c00001{bottom:272.293333pt;}
.y8fa_c00001{bottom:272.360000pt;}
.y8fb_c00001{bottom:272.373333pt;}
.y897_c00001{bottom:272.560000pt;}
.ye1f_c00001{bottom:272.733333pt;}
.yea5_c00001{bottom:272.760000pt;}
.y9f3_c00001{bottom:272.933333pt;}
.y88e_c00001{bottom:273.093333pt;}
.yd2c_c00001{bottom:273.306667pt;}
.yf51_c00001{bottom:273.506667pt;}
.y113b_c00001{bottom:273.600000pt;}
.yc3_c00001{bottom:273.693333pt;}
.ya04_c00001{bottom:273.893333pt;}
.y1038_c00001{bottom:274.000000pt;}
.yd67_c00001{bottom:274.066667pt;}
.y1014_c00001{bottom:274.093333pt;}
.yea6_c00001{bottom:274.266667pt;}
.yc2_c00001{bottom:274.440000pt;}
.ya06_c00001{bottom:274.586667pt;}
.y13d_c00001{bottom:274.640000pt;}
.y6ae_c00001{bottom:274.826667pt;}
.ybf3_c00001{bottom:274.840000pt;}
.y6f4_c00001{bottom:275.026667pt;}
.y1122_c00001{bottom:275.160000pt;}
.y741_c00001{bottom:275.226667pt;}
.y17f_c00001{bottom:275.400000pt;}
.y56d_c00001{bottom:275.600000pt;}
.yc4_c00001{bottom:275.773333pt;}
.yc27_c00001{bottom:275.973333pt;}
.yedb_c00001{bottom:276.173333pt;}
.y13b_c00001{bottom:276.360000pt;}
.y181_c00001{bottom:276.560000pt;}
.y182_c00001{bottom:276.733333pt;}
.yc26_c00001{bottom:276.933333pt;}
.y55a_c00001{bottom:277.106667pt;}
.y180_c00001{bottom:277.306667pt;}
.yc0e_c00001{bottom:277.493333pt;}
.y683_c00001{bottom:277.506667pt;}
.y13c_c00001{bottom:277.693333pt;}
.y1be_c00001{bottom:277.706667pt;}
.y682_c00001{bottom:277.893333pt;}
.y4e9_c00001{bottom:278.066667pt;}
.y1077_c00001{bottom:278.146667pt;}
.y9a0_c00001{bottom:278.266667pt;}
.y365_c00001{bottom:278.440000pt;}
.y13e_c00001{bottom:278.640000pt;}
.y684_c00001{bottom:278.840000pt;}
.y10db_c00001{bottom:278.933333pt;}
.y1e0_c00001{bottom:279.026667pt;}
.y480_c00001{bottom:279.226667pt;}
.y781_c00001{bottom:279.400000pt;}
.ya7f_c00001{bottom:279.586667pt;}
.y3b4_c00001{bottom:279.773333pt;}
.y96f_c00001{bottom:279.800000pt;}
.y877_c00001{bottom:279.960000pt;}
.y4e8_c00001{bottom:279.973333pt;}
.y970_c00001{bottom:280.173333pt;}
.y1118_c00001{bottom:280.266667pt;}
.y131e_c00001{bottom:280.293333pt;}
.y364_c00001{bottom:280.360000pt;}
.y47f_c00001{bottom:280.373333pt;}
.y366_c00001{bottom:280.560000pt;}
.y3b6_c00001{bottom:280.733333pt;}
.ya4b_c00001{bottom:280.853333pt;}
.y895_c00001{bottom:281.093333pt;}
.y9e8_c00001{bottom:281.293333pt;}
.y506_c00001{bottom:281.306667pt;}
.y3b3_c00001{bottom:281.693333pt;}
.y3b5_c00001{bottom:281.893333pt;}
.y1050_c00001{bottom:281.960000pt;}
.yc8f_c00001{bottom:282.093333pt;}
.y9f1_c00001{bottom:282.426667pt;}
.y7e6_c00001{bottom:282.640000pt;}
.y7e4_c00001{bottom:283.026667pt;}
.y7e9_c00001{bottom:283.400000pt;}
.y7e5_c00001{bottom:283.600000pt;}
.y1151_c00001{bottom:283.720000pt;}
.y617_c00001{bottom:283.773333pt;}
.ye1d_c00001{bottom:283.973333pt;}
.y85e_c00001{bottom:284.160000pt;}
.yaba_c00001{bottom:284.293333pt;}
.y7e7_c00001{bottom:284.360000pt;}
.y618_c00001{bottom:284.560000pt;}
.y1044_c00001{bottom:284.666667pt;}
.y619_c00001{bottom:284.733333pt;}
.yf44_c00001{bottom:284.760000pt;}
.yc90_c00001{bottom:284.933333pt;}
.y8c4_c00001{bottom:285.093333pt;}
.y6d5_c00001{bottom:285.106667pt;}
.y7e8_c00001{bottom:285.306667pt;}
.ybf1_c00001{bottom:285.506667pt;}
.y616_c00001{bottom:285.693333pt;}
.y6d7_c00001{bottom:285.893333pt;}
.yf78_c00001{bottom:286.066667pt;}
.y105c_c00001{bottom:286.186667pt;}
.y115a_c00001{bottom:286.253333pt;}
.yc91_c00001{bottom:286.266667pt;}
.y8bb_c00001{bottom:286.426667pt;}
.y61a_c00001{bottom:286.640000pt;}
.ybf0_c00001{bottom:286.840000pt;}
.y6d8_c00001{bottom:287.026667pt;}
.y6d6_c00001{bottom:287.040000pt;}
.ycf5_c00001{bottom:287.400000pt;}
.y99a_c00001{bottom:287.600000pt;}
.ya14_c00001{bottom:287.760000pt;}
.ycf6_c00001{bottom:287.973333pt;}
.ybf2_c00001{bottom:288.173333pt;}
.y8f9_c00001{bottom:288.360000pt;}
.yef5_c00001{bottom:288.560000pt;}
.y99f_c00001{bottom:288.733333pt;}
.ye8a_c00001{bottom:288.760000pt;}
.y99b_c00001{bottom:288.933333pt;}
.y898_c00001{bottom:289.093333pt;}
.y8f8_c00001{bottom:289.306667pt;}
.yd65_c00001{bottom:289.506667pt;}
.yd8c_c00001{bottom:289.693333pt;}
.yd66_c00001{bottom:289.706667pt;}
.y67f_c00001{bottom:289.893333pt;}
.ydd6_c00001{bottom:290.066667pt;}
.y8a2_c00001{bottom:290.226667pt;}
.y99c_c00001{bottom:290.266667pt;}
.y9f4_c00001{bottom:290.426667pt;}
.y9fd_c00001{bottom:290.600000pt;}
.y99d_c00001{bottom:290.640000pt;}
.y67e_c00001{bottom:290.840000pt;}
.y1282_c00001{bottom:291.000000pt;}
.y17b_c00001{bottom:291.026667pt;}
.yf1f_c00001{bottom:291.040000pt;}
.y869_c00001{bottom:291.200000pt;}
.y680_c00001{bottom:291.226667pt;}
.y8bf_c00001{bottom:291.360000pt;}
.ya05_c00001{bottom:291.560000pt;}
.y99e_c00001{bottom:291.600000pt;}
.ya18_c00001{bottom:291.733333pt;}
.yc0_c00001{bottom:291.773333pt;}
.ya8c_c00001{bottom:291.960000pt;}
.ye8c_c00001{bottom:291.973333pt;}
.y9dd_c00001{bottom:292.160000pt;}
.y681_c00001{bottom:292.173333pt;}
.y56c_c00001{bottom:292.360000pt;}
.y10aa_c00001{bottom:292.426667pt;}
.y1df_c00001{bottom:292.733333pt;}
.y1022_c00001{bottom:292.853333pt;}
.ye8b_c00001{bottom:292.933333pt;}
.yaa0_c00001{bottom:293.093333pt;}
.yc1_c00001{bottom:293.106667pt;}
.ya1d_c00001{bottom:293.306667pt;}
.ybe_c00001{bottom:293.693333pt;}
.ybf_c00001{bottom:293.893333pt;}
.y13a_c00001{bottom:294.066667pt;}
.yfab_c00001{bottom:294.266667pt;}
.y35f_c00001{bottom:294.440000pt;}
.ybd_c00001{bottom:294.640000pt;}
.ya73_c00001{bottom:294.826667pt;}
.y139_c00001{bottom:295.026667pt;}
.y56b_c00001{bottom:295.040000pt;}
.y17e_c00001{bottom:295.226667pt;}
.y1ba_c00001{bottom:295.400000pt;}
.y1bc_c00001{bottom:295.600000pt;}
.y360_c00001{bottom:295.773333pt;}
.y835_c00001{bottom:295.960000pt;}
.y17d_c00001{bottom:295.973333pt;}
.y47d_c00001{bottom:296.160000pt;}
.y1088_c00001{bottom:296.226667pt;}
.y17c_c00001{bottom:296.360000pt;}
.y8a5_c00001{bottom:296.493333pt;}
.y1bd_c00001{bottom:296.560000pt;}
.y47c_c00001{bottom:296.733333pt;}
.y7e2_c00001{bottom:296.933333pt;}
.yace_c00001{bottom:297.093333pt;}
.y363_c00001{bottom:297.106667pt;}
.y211_c00001{bottom:297.306667pt;}
.y10f2_c00001{bottom:297.626667pt;}
.y361_c00001{bottom:297.693333pt;}
.y505_c00001{bottom:297.706667pt;}
.y9ff_c00001{bottom:297.826667pt;}
.y3b1_c00001{bottom:297.893333pt;}
.yb86_c00001{bottom:298.066667pt;}
.ye77_c00001{bottom:298.093333pt;}
.y1bb_c00001{bottom:298.266667pt;}
.y47e_c00001{bottom:298.640000pt;}
.y7e3_c00001{bottom:298.840000pt;}
.y362_c00001{bottom:299.026667pt;}
.yc8e_c00001{bottom:299.040000pt;}
.y3b2_c00001{bottom:299.226667pt;}
.y121c_c00001{bottom:299.333333pt;}
.y10b5_c00001{bottom:299.360000pt;}
.ye7a_c00001{bottom:299.400000pt;}
.yea4_c00001{bottom:299.426667pt;}
.yc8d_c00001{bottom:299.600000pt;}
.yd64_c00001{bottom:299.973333pt;}
.ybef_c00001{bottom:300.173333pt;}
.ye41_c00001{bottom:300.360000pt;}
.ycf1_c00001{bottom:300.733333pt;}
.y110a_c00001{bottom:300.853333pt;}
.ydb8_c00001{bottom:300.933333pt;}
.yaa4_c00001{bottom:301.093333pt;}
.y611_c00001{bottom:301.106667pt;}
.yaaf_c00001{bottom:301.266667pt;}
.ye78_c00001{bottom:301.306667pt;}
.yfaf_c00001{bottom:301.506667pt;}
.y999_c00001{bottom:301.693333pt;}
.ye79_c00001{bottom:301.706667pt;}
.y615_c00001{bottom:301.893333pt;}
.y614_c00001{bottom:302.066667pt;}
.y12f6_c00001{bottom:302.146667pt;}
.yab7_c00001{bottom:302.226667pt;}
.ye89_c00001{bottom:302.266667pt;}
.yad0_c00001{bottom:302.400000pt;}
.y87f_c00001{bottom:302.426667pt;}
.yb5a_c00001{bottom:302.440000pt;}
.yd2b_c00001{bottom:302.640000pt;}
.y67b_c00001{bottom:302.840000pt;}
.y1258_c00001{bottom:302.933333pt;}
.y612_c00001{bottom:303.026667pt;}
.yeda_c00001{bottom:303.040000pt;}
.ya80_c00001{bottom:303.200000pt;}
.y67c_c00001{bottom:303.226667pt;}
.ycf2_c00001{bottom:303.600000pt;}
.y613_c00001{bottom:303.973333pt;}
.y67d_c00001{bottom:304.173333pt;}
.yb5b_c00001{bottom:304.360000pt;}
.ycf4_c00001{bottom:304.373333pt;}
.ycf3_c00001{bottom:304.933333pt;}
.y8f5_c00001{bottom:305.106667pt;}
.y1147_c00001{bottom:305.560000pt;}
.y8f7_c00001{bottom:305.693333pt;}
.y8f3_c00001{bottom:305.893333pt;}
.y8f6_c00001{bottom:306.066667pt;}
.yfa9_c00001{bottom:306.640000pt;}
.y8f2_c00001{bottom:307.026667pt;}
.y8f4_c00001{bottom:307.040000pt;}
.yab2_c00001{bottom:307.533333pt;}
.y8bc_c00001{bottom:307.800000pt;}
.yfaa_c00001{bottom:307.973333pt;}
.y1265_c00001{bottom:308.080000pt;}
.y89d_c00001{bottom:308.266667pt;}
.y640_c00001{bottom:308.360000pt;}
.yfba_c00001{bottom:308.733333pt;}
.y8aa_c00001{bottom:308.760000pt;}
.yfa5_c00001{bottom:308.933333pt;}
.ybc_c00001{bottom:309.106667pt;}
.y10c1_c00001{bottom:309.213333pt;}
.y641_c00001{bottom:309.306667pt;}
.y10cd_c00001{bottom:309.426667pt;}
.y56a_c00001{bottom:309.493333pt;}
.ybee_c00001{bottom:309.506667pt;}
.y9f8_c00001{bottom:309.600000pt;}
.y6a1_c00001{bottom:309.693333pt;}
.ybed_c00001{bottom:309.893333pt;}
.y1dd_c00001{bottom:310.066667pt;}
.ya07_c00001{bottom:310.093333pt;}
.y115b_c00001{bottom:310.253333pt;}
.y1dc_c00001{bottom:310.266667pt;}
.y136_c00001{bottom:310.440000pt;}
.ya48_c00001{bottom:310.640000pt;}
.y6f3_c00001{bottom:310.826667pt;}
.y6b5_c00001{bottom:310.840000pt;}
.y1285_c00001{bottom:310.933333pt;}
.yb9_c00001{bottom:311.026667pt;}
.yba_c00001{bottom:311.226667pt;}
.y179_c00001{bottom:311.400000pt;}
.ye76_c00001{bottom:311.600000pt;}
.y17a_c00001{bottom:311.773333pt;}
.ybb_c00001{bottom:311.973333pt;}
.y9de_c00001{bottom:312.160000pt;}
.y7e1_c00001{bottom:312.173333pt;}
.y137_c00001{bottom:312.360000pt;}
.y2ad_c00001{bottom:312.373333pt;}
.y138_c00001{bottom:312.560000pt;}
.y20b_c00001{bottom:312.733333pt;}
.yed9_c00001{bottom:312.760000pt;}
.y20c_c00001{bottom:312.933333pt;}
.y10a0_c00001{bottom:313.053333pt;}
.y35a_c00001{bottom:313.106667pt;}
.ydb6_c00001{bottom:313.133333pt;}
.ya1a_c00001{bottom:313.293333pt;}
.y20e_c00001{bottom:313.306667pt;}
.y3af_c00001{bottom:313.493333pt;}
.y1de_c00001{bottom:313.693333pt;}
.ye1c_c00001{bottom:313.706667pt;}
.y47a_c00001{bottom:313.893333pt;}
.y20f_c00001{bottom:314.066667pt;}
.ycf0_c00001{bottom:314.266667pt;}
.ya90_c00001{bottom:314.426667pt;}
.y35c_c00001{bottom:314.440000pt;}
.y35e_c00001{bottom:314.640000pt;}
.y67a_c00001{bottom:314.840000pt;}
.y359_c00001{bottom:315.026667pt;}
.y47b_c00001{bottom:315.040000pt;}
.y210_c00001{bottom:315.226667pt;}
.y1230_c00001{bottom:315.360000pt;}
.y35d_c00001{bottom:315.400000pt;}
.y20d_c00001{bottom:315.600000pt;}
.y1b9_c00001{bottom:315.773333pt;}
.y8ab_c00001{bottom:315.800000pt;}
.y1123_c00001{bottom:315.920000pt;}
.y516_c00001{bottom:315.973333pt;}
.y96e_c00001{bottom:316.173333pt;}
.y106b_c00001{bottom:316.293333pt;}
.y35b_c00001{bottom:316.360000pt;}
.yef4_c00001{bottom:316.373333pt;}
.y3b0_c00001{bottom:316.560000pt;}
.y1b7_c00001{bottom:316.733333pt;}
.y8bd_c00001{bottom:316.933333pt;}
.y1b8_c00001{bottom:317.106667pt;}
.ya08_c00001{bottom:317.133333pt;}
.y1039_c00001{bottom:317.253333pt;}
.y517_c00001{bottom:317.306667pt;}
.ydd5_c00001{bottom:317.506667pt;}
.yf83_c00001{bottom:317.693333pt;}
.ydb7_c00001{bottom:317.706667pt;}
.y998_c00001{bottom:318.266667pt;}
.y60e_c00001{bottom:318.440000pt;}
.y60f_c00001{bottom:318.640000pt;}
.y60d_c00001{bottom:319.226667pt;}
.yf82_c00001{bottom:319.600000pt;}
.yb58_c00001{bottom:319.773333pt;}
.yacf_c00001{bottom:319.800000pt;}
.y6d3_c00001{bottom:319.973333pt;}
.yaab_c00001{bottom:320.266667pt;}
.y60c_c00001{bottom:320.360000pt;}
.yb59_c00001{bottom:320.560000pt;}
.y8f1_c00001{bottom:320.733333pt;}
.yabb_c00001{bottom:320.760000pt;}
.y102f_c00001{bottom:320.813333pt;}
.y6cd_c00001{bottom:320.933333pt;}
.yc8c_c00001{bottom:321.133333pt;}
.y610_c00001{bottom:321.306667pt;}
.y6d1_c00001{bottom:321.693333pt;}
.y6d2_c00001{bottom:321.893333pt;}
.y6d4_c00001{bottom:322.066667pt;}
.yfa4_c00001{bottom:322.266667pt;}
.y8ee_c00001{bottom:322.440000pt;}
.ye19_c00001{bottom:322.466667pt;}
.y6ce_c00001{bottom:322.640000pt;}
.y836_c00001{bottom:322.800000pt;}
.y6d0_c00001{bottom:322.840000pt;}
.y7dd_c00001{bottom:323.026667pt;}
.ybea_c00001{bottom:323.226667pt;}
.y1139_c00001{bottom:323.293333pt;}
.y7df_c00001{bottom:323.400000pt;}
.y6cf_c00001{bottom:323.600000pt;}
.y8c5_c00001{bottom:323.800000pt;}
.ye1a_c00001{bottom:323.973333pt;}
.ya81_c00001{bottom:324.160000pt;}
.ybeb_c00001{bottom:324.173333pt;}
.y7e0_c00001{bottom:324.360000pt;}
.yacb_c00001{bottom:324.373333pt;}
.y8f0_c00001{bottom:324.733333pt;}
.y8b9_c00001{bottom:324.760000pt;}
.y8ac_c00001{bottom:324.933333pt;}
.y113c_c00001{bottom:325.053333pt;}
.ye3f_c00001{bottom:325.133333pt;}
.ya4c_c00001{bottom:325.293333pt;}
.y7de_c00001{bottom:325.306667pt;}
.ybec_c00001{bottom:325.506667pt;}
.ye1b_c00001{bottom:325.693333pt;}
.y8ef_c00001{bottom:325.706667pt;}
.y679_c00001{bottom:325.893333pt;}
.ye40_c00001{bottom:326.066667pt;}
.y675_c00001{bottom:326.266667pt;}
.yb7_c00001{bottom:326.440000pt;}
.y131f_c00001{bottom:326.586667pt;}
.yb8_c00001{bottom:326.640000pt;}
.y678_c00001{bottom:326.840000pt;}
.y6a0_c00001{bottom:327.026667pt;}
.y677_c00001{bottom:327.226667pt;}
.y1da_c00001{bottom:327.400000pt;}
.y10ff_c00001{bottom:327.533333pt;}
.y6b4_c00001{bottom:327.600000pt;}
.y130_c00001{bottom:327.773333pt;}
.yabc_c00001{bottom:327.800000pt;}
.y1309_c00001{bottom:327.853333pt;}
.y178_c00001{bottom:327.973333pt;}
.y10e8_c00001{bottom:328.093333pt;}
.y63e_c00001{bottom:328.160000pt;}
.y676_c00001{bottom:328.173333pt;}
.yb6_c00001{bottom:328.360000pt;}
.ye75_c00001{bottom:328.373333pt;}
.y1db_c00001{bottom:328.560000pt;}
.y10dc_c00001{bottom:328.666667pt;}
.y135_c00001{bottom:328.733333pt;}
.y997_c00001{bottom:328.933333pt;}
.y1045_c00001{bottom:329.053333pt;}
.y4e7_c00001{bottom:329.106667pt;}
.y1094_c00001{bottom:329.253333pt;}
.y880_c00001{bottom:329.293333pt;}
.y6ad_c00001{bottom:329.306667pt;}
.y995_c00001{bottom:329.506667pt;}
.y132_c00001{bottom:329.693333pt;}
.y569_c00001{bottom:329.706667pt;}
.y133_c00001{bottom:329.893333pt;}
.y63f_c00001{bottom:330.066667pt;}
.y559_c00001{bottom:330.266667pt;}
.y358_c00001{bottom:330.440000pt;}
.y131_c00001{bottom:330.640000pt;}
.y996_c00001{bottom:330.840000pt;}
.y134_c00001{bottom:331.026667pt;}
.ya47_c00001{bottom:331.040000pt;}
.y4e6_c00001{bottom:331.226667pt;}
.y514_c00001{bottom:331.400000pt;}
.yeb5_c00001{bottom:331.426667pt;}
.y1152_c00001{bottom:331.520000pt;}
.yec4_c00001{bottom:331.600000pt;}
.y356_c00001{bottom:331.773333pt;}
.y515_c00001{bottom:331.973333pt;}
.y355_c00001{bottom:332.360000pt;}
.y76a_c00001{bottom:332.560000pt;}
.y3ae_c00001{bottom:332.733333pt;}
.y1283_c00001{bottom:333.253333pt;}
.y2ab_c00001{bottom:333.306667pt;}
.y357_c00001{bottom:333.693333pt;}
.y6cb_c00001{bottom:334.066667pt;}
.y20a_c00001{bottom:334.440000pt;}
.y6c8_c00001{bottom:334.640000pt;}
.y2aa_c00001{bottom:335.026667pt;}
.y6cc_c00001{bottom:335.226667pt;}
.y10b6_c00001{bottom:335.360000pt;}
.y208_c00001{bottom:335.400000pt;}
.y7da_c00001{bottom:335.600000pt;}
.y60b_c00001{bottom:335.773333pt;}
.yacc_c00001{bottom:335.800000pt;}
.y2ac_c00001{bottom:335.973333pt;}
.ybe8_c00001{bottom:336.173333pt;}
.y1330_c00001{bottom:336.253333pt;}
.y209_c00001{bottom:336.360000pt;}
.y608_c00001{bottom:336.560000pt;}
.y607_c00001{bottom:336.733333pt;}
.ye15_c00001{bottom:336.760000pt;}
.y6ca_c00001{bottom:336.933333pt;}
.y6c9_c00001{bottom:337.306667pt;}
.ybe9_c00001{bottom:337.506667pt;}
.y609_c00001{bottom:337.693333pt;}
.y7db_c00001{bottom:337.893333pt;}
.ye17_c00001{bottom:338.066667pt;}
.y105d_c00001{bottom:338.186667pt;}
.y7dc_c00001{bottom:338.266667pt;}
.y60a_c00001{bottom:338.640000pt;}
.yb56_c00001{bottom:339.026667pt;}
.y674_c00001{bottom:339.226667pt;}
.yed8_c00001{bottom:339.400000pt;}
.yea2_c00001{bottom:339.426667pt;}
.y1078_c00001{bottom:339.533333pt;}
.ye16_c00001{bottom:339.600000pt;}
.y8eb_c00001{bottom:339.773333pt;}
.y991_c00001{bottom:339.973333pt;}
.y673_c00001{bottom:340.173333pt;}
.y1119_c00001{bottom:340.226667pt;}
.y10f3_c00001{bottom:340.293333pt;}
.yb57_c00001{bottom:340.360000pt;}
.ye18_c00001{bottom:340.373333pt;}
.yed7_c00001{bottom:340.560000pt;}
.ycef_c00001{bottom:340.733333pt;}
.yf47_c00001{bottom:340.760000pt;}
.y992_c00001{bottom:340.933333pt;}
.ya91_c00001{bottom:341.293333pt;}
.ye3d_c00001{bottom:341.306667pt;}
.ye3e_c00001{bottom:341.506667pt;}
.y8ea_c00001{bottom:341.693333pt;}
.yf43_c00001{bottom:341.706667pt;}
.y8ec_c00001{bottom:341.893333pt;}
.y115c_c00001{bottom:341.960000pt;}
.yec3_c00001{bottom:342.066667pt;}
.yea3_c00001{bottom:342.266667pt;}
.y8ed_c00001{bottom:342.640000pt;}
.y110b_c00001{bottom:342.826667pt;}
.y994_c00001{bottom:342.840000pt;}
.yb2_c00001{bottom:343.026667pt;}
.yd8b_c00001{bottom:343.040000pt;}
.yeb4_c00001{bottom:343.226667pt;}
.y1051_c00001{bottom:343.520000pt;}
.y993_c00001{bottom:343.600000pt;}
.yeb3_c00001{bottom:343.973333pt;}
.y6ac_c00001{bottom:344.360000pt;}
.ye88_c00001{bottom:344.373333pt;}
.y72c_c00001{bottom:344.733333pt;}
.y1023_c00001{bottom:344.826667pt;}
.ydd4_c00001{bottom:344.933333pt;}
.y1015_c00001{bottom:345.093333pt;}
.yb4_c00001{bottom:345.106667pt;}
.yba8_c00001{bottom:345.693333pt;}
.y121d_c00001{bottom:345.800000pt;}
.yb5_c00001{bottom:345.893333pt;}
.y63d_c00001{bottom:346.066667pt;}
.y2a9_c00001{bottom:346.266667pt;}
.y12f_c00001{bottom:346.440000pt;}
.yb3_c00001{bottom:346.640000pt;}
.y97e_c00001{bottom:346.826667pt;}
.yb1_c00001{bottom:347.026667pt;}
.y923_c00001{bottom:347.040000pt;}
.y12d_c00001{bottom:347.226667pt;}
.y479_c00001{bottom:347.400000pt;}
.y2a5_c00001{bottom:347.600000pt;}
.y478_c00001{bottom:347.773333pt;}
.yc89_c00001{bottom:347.800000pt;}
.y177_c00001{bottom:347.973333pt;}
.y351_c00001{bottom:348.160000pt;}
.ybe7_c00001{bottom:348.173333pt;}
.y12e_c00001{bottom:348.360000pt;}
.y2a7_c00001{bottom:348.560000pt;}
.y350_c00001{bottom:348.733333pt;}
.y2a8_c00001{bottom:348.933333pt;}
.y3ac_c00001{bottom:349.106667pt;}
.y2a6_c00001{bottom:349.306667pt;}
.y6c6_c00001{bottom:349.506667pt;}
.y34e_c00001{bottom:349.693333pt;}
.yc0d_c00001{bottom:349.706667pt;}
.y352_c00001{bottom:349.893333pt;}
.y3ad_c00001{bottom:350.066667pt;}
.y6c7_c00001{bottom:350.266667pt;}
.y353_c00001{bottom:350.640000pt;}
.ya4d_c00001{bottom:350.800000pt;}
.y96d_c00001{bottom:350.840000pt;}
.y354_c00001{bottom:351.026667pt;}
.y34f_c00001{bottom:351.040000pt;}
.y66e_c00001{bottom:351.226667pt;}
.y10ce_c00001{bottom:351.360000pt;}
.ye72_c00001{bottom:351.400000pt;}
.yc8a_c00001{bottom:351.600000pt;}
.y670_c00001{bottom:351.800000pt;}
.y513_c00001{bottom:351.973333pt;}
.y1259_c00001{bottom:352.133333pt;}
.y66f_c00001{bottom:352.173333pt;}
.ye74_c00001{bottom:352.360000pt;}
.yc8b_c00001{bottom:352.373333pt;}
.y671_c00001{bottom:352.560000pt;}
.y1231_c00001{bottom:352.693333pt;}
.ye3b_c00001{bottom:352.733333pt;}
.yd29_c00001{bottom:352.760000pt;}
.y98c_c00001{bottom:352.933333pt;}
.y605_c00001{bottom:353.106667pt;}
.yd2a_c00001{bottom:353.306667pt;}
.y672_c00001{bottom:353.506667pt;}
.ycee_c00001{bottom:353.693333pt;}
.ye73_c00001{bottom:353.706667pt;}
.y606_c00001{bottom:353.893333pt;}
.y10ab_c00001{bottom:354.000000pt;}
.y990_c00001{bottom:354.066667pt;}
.yd63_c00001{bottom:354.266667pt;}
.ycec_c00001{bottom:354.640000pt;}
.yea1_c00001{bottom:354.840000pt;}
.y604_c00001{bottom:355.026667pt;}
.ydb5_c00001{bottom:355.226667pt;}
.yec1_c00001{bottom:355.400000pt;}
.yced_c00001{bottom:355.600000pt;}
.y98d_c00001{bottom:355.973333pt;}
.y98f_c00001{bottom:356.173333pt;}
.yb55_c00001{bottom:356.360000pt;}
.ye3c_c00001{bottom:356.373333pt;}
.yec2_c00001{bottom:356.560000pt;}
.y98e_c00001{bottom:356.933333pt;}
.y8e4_c00001{bottom:357.106667pt;}
.yec0_c00001{bottom:357.306667pt;}
.y115f_c00001{bottom:357.600000pt;}
.y1124_c00001{bottom:357.626667pt;}
.y8e9_c00001{bottom:358.066667pt;}
.yd9d_c00001{bottom:358.266667pt;}
.y8e5_c00001{bottom:358.440000pt;}
.y1266_c00001{bottom:358.626667pt;}
.y8e7_c00001{bottom:359.026667pt;}
.y8e8_c00001{bottom:359.226667pt;}
.y1089_c00001{bottom:359.360000pt;}
.y10a1_c00001{bottom:359.720000pt;}
.y106c_c00001{bottom:359.920000pt;}
.y6c2_c00001{bottom:359.973333pt;}
.y6c5_c00001{bottom:360.360000pt;}
.y8e6_c00001{bottom:360.373333pt;}
.ybe5_c00001{bottom:360.560000pt;}
.y2a3_c00001{bottom:360.733333pt;}
.y6c4_c00001{bottom:360.933333pt;}
.y740_c00001{bottom:361.306667pt;}
.y73f_c00001{bottom:361.493333pt;}
.ybe6_c00001{bottom:361.506667pt;}
.y1b6_c00001{bottom:361.693333pt;}
.y6c1_c00001{bottom:361.893333pt;}
.yf9b_c00001{bottom:362.066667pt;}
.y7d9_c00001{bottom:362.266667pt;}
.yaf_c00001{bottom:362.440000pt;}
.y1b5_c00001{bottom:362.640000pt;}
.y6c3_c00001{bottom:362.840000pt;}
.y7d8_c00001{bottom:363.026667pt;}
.y66c_c00001{bottom:363.226667pt;}
.y10c2_c00001{bottom:363.360000pt;}
.y176_c00001{bottom:363.400000pt;}
.ye71_c00001{bottom:363.426667pt;}
.y2a4_c00001{bottom:363.600000pt;}
.y103a_c00001{bottom:363.693333pt;}
.y12c_c00001{bottom:363.773333pt;}
.y72b_c00001{bottom:363.973333pt;}
.y9b2_c00001{bottom:364.160000pt;}
.y66b_c00001{bottom:364.173333pt;}
.yb0_c00001{bottom:364.360000pt;}
.y12b_c00001{bottom:364.560000pt;}
.y769_c00001{bottom:364.733333pt;}
.yed6_c00001{bottom:364.760000pt;}
.y7d7_c00001{bottom:364.933333pt;}
.y504_c00001{bottom:365.106667pt;}
.y558_c00001{bottom:365.306667pt;}
.y66d_c00001{bottom:365.506667pt;}
.y12a_c00001{bottom:365.693333pt;}
.y922_c00001{bottom:365.706667pt;}
.y4e4_c00001{bottom:365.893333pt;}
.y4e5_c00001{bottom:366.066667pt;}
.ye14_c00001{bottom:366.266667pt;}
.y34d_c00001{bottom:366.440000pt;}
.y98b_c00001{bottom:366.640000pt;}
.y10b7_c00001{bottom:366.826667pt;}
.y477_c00001{bottom:367.026667pt;}
.ye13_c00001{bottom:367.040000pt;}
.y34b_c00001{bottom:367.226667pt;}
.y1286_c00001{bottom:367.293333pt;}
.y3ab_c00001{bottom:367.400000pt;}
.ye86_c00001{bottom:367.426667pt;}
.y1100_c00001{bottom:367.533333pt;}
.y1320_c00001{bottom:367.560000pt;}
.y98a_c00001{bottom:367.600000pt;}
.y3a8_c00001{bottom:367.773333pt;}
.y837_c00001{bottom:367.826667pt;}
.y34c_c00001{bottom:367.973333pt;}
.y3aa_c00001{bottom:368.360000pt;}
.yc0a_c00001{bottom:368.373333pt;}
.y3a9_c00001{bottom:368.560000pt;}
.yc19_c00001{bottom:368.733333pt;}
.yceb_c00001{bottom:368.933333pt;}
.y3a7_c00001{bottom:369.306667pt;}
.yd28_c00001{bottom:369.506667pt;}
.y3a6_c00001{bottom:369.693333pt;}
.yd8a_c00001{bottom:369.706667pt;}
.ydd3_c00001{bottom:369.893333pt;}
.yd27_c00001{bottom:370.266667pt;}
.y110c_c00001{bottom:370.360000pt;}
.y601_c00001{bottom:370.440000pt;}
.yebf_c00001{bottom:370.640000pt;}
.yb54_c00001{bottom:371.026667pt;}
.ye87_c00001{bottom:371.040000pt;}
.y113d_c00001{bottom:371.160000pt;}
.y602_c00001{bottom:371.400000pt;}
.y8ad_c00001{bottom:371.560000pt;}
.yb53_c00001{bottom:371.773333pt;}
.y600_c00001{bottom:372.360000pt;}
.ya09_c00001{bottom:372.520000pt;}
.y603_c00001{bottom:372.560000pt;}
.y12c9_c00001{bottom:373.213333pt;}
.y29b_c00001{bottom:373.306667pt;}
.ybe4_c00001{bottom:373.506667pt;}
.y2a0_c00001{bottom:373.693333pt;}
.y1095_c00001{bottom:373.800000pt;}
.yb52_c00001{bottom:373.893333pt;}
.y11e5_c00001{bottom:374.026667pt;}
.y29f_c00001{bottom:374.066667pt;}
.y6c0_c00001{bottom:374.266667pt;}
.y126f_c00001{bottom:374.480000pt;}
.y845_c00001{bottom:374.626667pt;}
.yb51_c00001{bottom:374.640000pt;}
.y10e9_c00001{bottom:374.760000pt;}
.y2a1_c00001{bottom:374.840000pt;}
.y29d_c00001{bottom:375.026667pt;}
.y669_c00001{bottom:375.226667pt;}
.y7d6_c00001{bottom:375.400000pt;}
.yc84_c00001{bottom:375.426667pt;}
.y9c5_c00001{bottom:375.586667pt;}
.y29e_c00001{bottom:375.600000pt;}
.ye11_c00001{bottom:375.800000pt;}
.y2a2_c00001{bottom:375.973333pt;}
.y8c0_c00001{bottom:376.160000pt;}
.y668_c00001{bottom:376.173333pt;}
.yc88_c00001{bottom:376.360000pt;}
.y1046_c00001{bottom:376.466667pt;}
.y66a_c00001{bottom:376.560000pt;}
.y85f_c00001{bottom:376.733333pt;}
.y29c_c00001{bottom:376.933333pt;}
.y851_c00001{bottom:377.133333pt;}
.yc85_c00001{bottom:377.306667pt;}
.y881_c00001{bottom:377.493333pt;}
.y96c_c00001{bottom:377.506667pt;}
.y207_c00001{bottom:377.693333pt;}
.y96b_c00001{bottom:377.893333pt;}
.y9d5_c00001{bottom:378.066667pt;}
.yc87_c00001{bottom:378.266667pt;}
.y871_c00001{bottom:378.466667pt;}
.y1016_c00001{bottom:378.586667pt;}
.y567_c00001{bottom:378.640000pt;}
.y899_c00001{bottom:378.826667pt;}
.ye12_c00001{bottom:378.840000pt;}
.y1148_c00001{bottom:378.893333pt;}
.y6b2_c00001{bottom:379.026667pt;}
.yc86_c00001{bottom:379.040000pt;}
.ye70_c00001{bottom:379.226667pt;}
.y566_c00001{bottom:379.400000pt;}
.yef3_c00001{bottom:379.426667pt;}
.y568_c00001{bottom:379.600000pt;}
.yac_c00001{bottom:379.773333pt;}
.y129_c00001{bottom:379.973333pt;}
.y72a_c00001{bottom:380.360000pt;}
.yf0e_c00001{bottom:380.373333pt;}
.y206_c00001{bottom:380.560000pt;}
.y127_c00001{bottom:380.733333pt;}
.y6b3_c00001{bottom:380.933333pt;}
.y128_c00001{bottom:381.106667pt;}
.yae_c00001{bottom:381.306667pt;}
.yce9_c00001{bottom:381.506667pt;}
.yab_c00001{bottom:381.693333pt;}
.yd62_c00001{bottom:381.706667pt;}
.yad_c00001{bottom:381.893333pt;}
.y69f_c00001{bottom:382.066667pt;}
.y8e3_c00001{bottom:382.266667pt;}
.y4e2_c00001{bottom:382.440000pt;}
.y205_c00001{bottom:382.640000pt;}
.y347_c00001{bottom:382.826667pt;}
.yd26_c00001{bottom:382.840000pt;}
.y126_c00001{bottom:383.026667pt;}
.ydd2_c00001{bottom:383.040000pt;}
.y12e5_c00001{bottom:383.160000pt;}
.y4e3_c00001{bottom:383.226667pt;}
.y503_c00001{bottom:383.400000pt;}
.ycea_c00001{bottom:383.600000pt;}
.y346_c00001{bottom:383.773333pt;}
.y780_c00001{bottom:383.973333pt;}
.y1079_c00001{bottom:384.093333pt;}
.y349_c00001{bottom:384.160000pt;}
.y4e1_c00001{bottom:384.360000pt;}
.y4e0_c00001{bottom:384.560000pt;}
.y476_c00001{bottom:384.733333pt;}
.yabd_c00001{bottom:384.893333pt;}
.y1153_c00001{bottom:385.026667pt;}
.y3a5_c00001{bottom:385.106667pt;}
.y512_c00001{bottom:385.306667pt;}
.ybe2_c00001{bottom:385.506667pt;}
.y34a_c00001{bottom:385.693333pt;}
.y475_c00001{bottom:385.706667pt;}
.y29a_c00001{bottom:386.266667pt;}
.ya5a_c00001{bottom:386.626667pt;}
.y348_c00001{bottom:386.640000pt;}
.y1191_c00001{bottom:386.760000pt;}
.y1052_c00001{bottom:386.826667pt;}
.ybe3_c00001{bottom:386.840000pt;}
.y298_c00001{bottom:387.026667pt;}
.y665_c00001{bottom:387.226667pt;}
.y113a_c00001{bottom:387.293333pt;}
.y295_c00001{bottom:387.400000pt;}
.y10f4_c00001{bottom:387.693333pt;}
.y5fe_c00001{bottom:387.773333pt;}
.yf81_c00001{bottom:387.973333pt;}
.y297_c00001{bottom:388.173333pt;}
.y296_c00001{bottom:388.360000pt;}
.y10cf_c00001{bottom:388.493333pt;}
.y667_c00001{bottom:388.560000pt;}
.y7d4_c00001{bottom:388.733333pt;}
.y299_c00001{bottom:388.933333pt;}
.y5fa_c00001{bottom:389.106667pt;}
.ya66_c00001{bottom:389.133333pt;}
.yc83_c00001{bottom:389.306667pt;}
.ya92_c00001{bottom:389.493333pt;}
.y666_c00001{bottom:389.506667pt;}
.y1331_c00001{bottom:389.666667pt;}
.y5fb_c00001{bottom:389.693333pt;}
.y96a_c00001{bottom:389.706667pt;}
.y5ff_c00001{bottom:389.893333pt;}
.yb4f_c00001{bottom:390.066667pt;}
.y1030_c00001{bottom:390.146667pt;}
.y105e_c00001{bottom:390.186667pt;}
.yc82_c00001{bottom:390.266667pt;}
.yb4e_c00001{bottom:390.440000pt;}
.ya8d_c00001{bottom:390.466667pt;}
.y5fc_c00001{bottom:390.640000pt;}
.y7d5_c00001{bottom:390.840000pt;}
.y5fd_c00001{bottom:391.026667pt;}
.y969_c00001{bottom:391.040000pt;}
.ya87_c00001{bottom:391.226667pt;}
.yaa5_c00001{bottom:391.400000pt;}
.ya74_c00001{bottom:391.600000pt;}
.yb50_c00001{bottom:391.973333pt;}
.yab3_c00001{bottom:392.360000pt;}
.yab8_c00001{bottom:392.733333pt;}
.ye85_c00001{bottom:392.760000pt;}
.yd9c_c00001{bottom:392.933333pt;}
.ydb4_c00001{bottom:393.306667pt;}
.y1267_c00001{bottom:393.413333pt;}
.yf42_c00001{bottom:393.506667pt;}
.yce8_c00001{bottom:393.693333pt;}
.yce7_c00001{bottom:393.893333pt;}
.yd22_c00001{bottom:394.066667pt;}
.y988_c00001{bottom:394.266667pt;}
.yf5f_c00001{bottom:394.466667pt;}
.ya4e_c00001{bottom:394.493333pt;}
.yce6_c00001{bottom:394.640000pt;}
.y115d_c00001{bottom:394.826667pt;}
.yd25_c00001{bottom:394.840000pt;}
.y989_c00001{bottom:395.026667pt;}
.ye3a_c00001{bottom:395.040000pt;}
.y121e_c00001{bottom:395.133333pt;}
.yd24_c00001{bottom:395.226667pt;}
.y8e1_c00001{bottom:395.400000pt;}
.y8e2_c00001{bottom:395.600000pt;}
.y10b8_c00001{bottom:395.693333pt;}
.ya9_c00001{bottom:395.973333pt;}
.y130a_c00001{bottom:396.080000pt;}
.y73e_c00001{bottom:396.160000pt;}
.yd23_c00001{bottom:396.173333pt;}
.y124_c00001{bottom:396.360000pt;}
.yebe_c00001{bottom:396.560000pt;}
.ybe0_c00001{bottom:396.933333pt;}
.yaa_c00001{bottom:397.106667pt;}
.y69e_c00001{bottom:397.306667pt;}
.y1232_c00001{bottom:397.413333pt;}
.y1b4_c00001{bottom:397.493333pt;}
.y1b3_c00001{bottom:397.693333pt;}
.y10ac_c00001{bottom:397.826667pt;}
.ya8_c00001{bottom:397.893333pt;}
.y173_c00001{bottom:398.066667pt;}
.y175_c00001{bottom:398.266667pt;}
.y125_c00001{bottom:398.440000pt;}
.ya7_c00001{bottom:398.640000pt;}
.y108a_c00001{bottom:398.760000pt;}
.y10a2_c00001{bottom:398.826667pt;}
.ybe1_c00001{bottom:398.840000pt;}
.ya6_c00001{bottom:399.026667pt;}
.y174_c00001{bottom:399.226667pt;}
.y293_c00001{bottom:399.400000pt;}
.y1321_c00001{bottom:399.586667pt;}
.y1284_c00001{bottom:399.600000pt;}
.y4de_c00001{bottom:399.773333pt;}
.y123_c00001{bottom:399.973333pt;}
.y663_c00001{bottom:400.173333pt;}
.y122_c00001{bottom:400.360000pt;}
.y921_c00001{bottom:400.373333pt;}
.y10dd_c00001{bottom:400.466667pt;}
.y662_c00001{bottom:400.560000pt;}
.y6f2_c00001{bottom:400.733333pt;}
.y294_c00001{bottom:400.933333pt;}
.y345_c00001{bottom:401.106667pt;}
.yc81_c00001{bottom:401.133333pt;}
.y290_c00001{bottom:401.306667pt;}
.y511_c00001{bottom:401.493333pt;}
.y291_c00001{bottom:401.506667pt;}
.y4dd_c00001{bottom:401.693333pt;}
.y664_c00001{bottom:401.706667pt;}
.y10c3_c00001{bottom:401.826667pt;}
.y28f_c00001{bottom:401.893333pt;}
.y565_c00001{bottom:402.066667pt;}
.y292_c00001{bottom:402.266667pt;}
.y3a2_c00001{bottom:402.440000pt;}
.y4df_c00001{bottom:402.640000pt;}
.y1125_c00001{bottom:402.760000pt;}
.y967_c00001{bottom:402.840000pt;}
.y343_c00001{bottom:403.026667pt;}
.yc09_c00001{bottom:403.040000pt;}
.y344_c00001{bottom:403.226667pt;}
.yc18_c00001{bottom:403.400000pt;}
.ye0f_c00001{bottom:403.426667pt;}
.y1315_c00001{bottom:403.453333pt;}
.yfb1_c00001{bottom:403.600000pt;}
.y3a4_c00001{bottom:403.973333pt;}
.yf5e_c00001{bottom:404.173333pt;}
.y3a1_c00001{bottom:404.360000pt;}
.y968_c00001{bottom:404.373333pt;}
.ye6f_c00001{bottom:404.560000pt;}
.yef2_c00001{bottom:404.733333pt;}
.yf1c_c00001{bottom:404.760000pt;}
.y7d3_c00001{bottom:404.933333pt;}
.y5f9_c00001{bottom:405.106667pt;}
.y3a3_c00001{bottom:405.306667pt;}
.yed5_c00001{bottom:405.506667pt;}
.yf1d_c00001{bottom:405.693333pt;}
.ye10_c00001{bottom:405.706667pt;}
.y1101_c00001{bottom:405.853333pt;}
.yf1e_c00001{bottom:405.893333pt;}
.y5f8_c00001{bottom:406.066667pt;}
.yd89_c00001{bottom:406.093333pt;}
.yd21_c00001{bottom:406.266667pt;}
.y1024_c00001{bottom:406.360000pt;}
.ydd1_c00001{bottom:406.640000pt;}
.y5f7_c00001{bottom:407.026667pt;}
.yf0d_c00001{bottom:407.040000pt;}
.yce5_c00001{bottom:407.226667pt;}
.y472_c00001{bottom:407.400000pt;}
.ydd0_c00001{bottom:407.600000pt;}
.y106d_c00001{bottom:407.693333pt;}
.yb4c_c00001{bottom:407.773333pt;}
.y5f6_c00001{bottom:407.973333pt;}
.y986_c00001{bottom:408.173333pt;}
.y471_c00001{bottom:408.360000pt;}
.y473_c00001{bottom:408.560000pt;}
.y987_c00001{bottom:408.933333pt;}
.y111a_c00001{bottom:409.026667pt;}
.y470_c00001{bottom:409.306667pt;}
.yebd_c00001{bottom:409.506667pt;}
.yb4d_c00001{bottom:409.693333pt;}
.ye84_c00001{bottom:409.706667pt;}
.y1160_c00001{bottom:410.186667pt;}
.y474_c00001{bottom:410.266667pt;}
.y11e6_c00001{bottom:411.333333pt;}
.y8e0_c00001{bottom:411.400000pt;}
.y28e_c00001{bottom:411.973333pt;}
.y966_c00001{bottom:412.560000pt;}
.y28d_c00001{bottom:412.733333pt;}
.y113e_c00001{bottom:413.253333pt;}
.y8de_c00001{bottom:413.306667pt;}
.y660_c00001{bottom:413.506667pt;}
.y28c_c00001{bottom:413.693333pt;}
.y661_c00001{bottom:413.706667pt;}
.y204_c00001{bottom:414.066667pt;}
.y8df_c00001{bottom:414.266667pt;}
.ya3_c00001{bottom:414.440000pt;}
.y28b_c00001{bottom:414.640000pt;}
.y6b1_c00001{bottom:414.826667pt;}
.y965_c00001{bottom:414.840000pt;}
.y11f_c00001{bottom:415.026667pt;}
.y203_c00001{bottom:415.226667pt;}
.y73d_c00001{bottom:415.400000pt;}
.y28a_c00001{bottom:415.600000pt;}
.y1053_c00001{bottom:415.693333pt;}
.ya5_c00001{bottom:415.773333pt;}
.ye6e_c00001{bottom:415.800000pt;}
.y4dc_c00001{bottom:415.973333pt;}
.y964_c00001{bottom:416.173333pt;}
.ya4_c00001{bottom:416.360000pt;}
.y171_c00001{bottom:416.560000pt;}
.y1d9_c00001{bottom:416.733333pt;}
.y7d1_c00001{bottom:416.933333pt;}
.y6f1_c00001{bottom:417.106667pt;}
.y172_c00001{bottom:417.306667pt;}
.y557_c00001{bottom:417.493333pt;}
.y11e_c00001{bottom:417.693333pt;}
.y920_c00001{bottom:417.706667pt;}
.y1017_c00001{bottom:417.853333pt;}
.y121_c00001{bottom:417.893333pt;}
.y63c_c00001{bottom:418.066667pt;}
.yea0_c00001{bottom:418.093333pt;}
.y7d2_c00001{bottom:418.266667pt;}
.y33f_c00001{bottom:418.440000pt;}
.yf46_c00001{bottom:418.466667pt;}
.y502_c00001{bottom:418.640000pt;}
.y120_c00001{bottom:419.026667pt;}
.yc80_c00001{bottom:419.040000pt;}
.y4da_c00001{bottom:419.226667pt;}
.y556_c00001{bottom:419.400000pt;}
.yeb1_c00001{bottom:419.426667pt;}
.y342_c00001{bottom:419.600000pt;}
.y39e_c00001{bottom:419.773333pt;}
.y115e_c00001{bottom:419.933333pt;}
.y4db_c00001{bottom:419.973333pt;}
.y33e_c00001{bottom:420.360000pt;}
.yc1e_c00001{bottom:420.373333pt;}
.y110d_c00001{bottom:420.520000pt;}
.y3a0_c00001{bottom:420.560000pt;}
.yc17_c00001{bottom:420.733333pt;}
.y10de_c00001{bottom:420.866667pt;}
.yd61_c00001{bottom:420.933333pt;}
.y8ae_c00001{bottom:421.266667pt;}
.y341_c00001{bottom:421.306667pt;}
.y103b_c00001{bottom:421.586667pt;}
.y340_c00001{bottom:421.693333pt;}
.yeb2_c00001{bottom:421.706667pt;}
.y10ea_c00001{bottom:421.826667pt;}
.yebc_c00001{bottom:421.893333pt;}
.yce4_c00001{bottom:422.266667pt;}
.y5f4_c00001{bottom:422.440000pt;}
.y1096_c00001{bottom:422.586667pt;}
.ya0a_c00001{bottom:422.600000pt;}
.y39f_c00001{bottom:422.640000pt;}
.y1288_c00001{bottom:422.933333pt;}
.yf4a_c00001{bottom:423.040000pt;}
.yf8c_c00001{bottom:423.600000pt;}
.y846_c00001{bottom:423.960000pt;}
.yb49_c00001{bottom:423.973333pt;}
.y5f3_c00001{bottom:424.360000pt;}
.y5f5_c00001{bottom:424.560000pt;}
.yb4a_c00001{bottom:425.106667pt;}
.y12f7_c00001{bottom:425.253333pt;}
.y288_c00001{bottom:425.306667pt;}
.y882_c00001{bottom:425.493333pt;}
.y65d_c00001{bottom:425.506667pt;}
.y5f2_c00001{bottom:425.693333pt;}
.y12e6_c00001{bottom:425.786667pt;}
.y963_c00001{bottom:425.893333pt;}
.y289_c00001{bottom:426.066667pt;}
.y1047_c00001{bottom:426.186667pt;}
.y46e_c00001{bottom:426.266667pt;}
.y852_c00001{bottom:426.466667pt;}
.yb4b_c00001{bottom:426.640000pt;}
.y88f_c00001{bottom:426.826667pt;}
.y65e_c00001{bottom:426.840000pt;}
.y287_c00001{bottom:427.026667pt;}
.y65f_c00001{bottom:427.040000pt;}
.y285_c00001{bottom:427.226667pt;}
.yc7f_c00001{bottom:427.426667pt;}
.yfa3_c00001{bottom:427.600000pt;}
.y878_c00001{bottom:427.800000pt;}
.y286_c00001{bottom:427.973333pt;}
.y10a3_c00001{bottom:428.080000pt;}
.y9ec_c00001{bottom:428.160000pt;}
.y46f_c00001{bottom:428.173333pt;}
.y1332_c00001{bottom:428.533333pt;}
.y872_c00001{bottom:428.560000pt;}
.y7ce_c00001{bottom:428.733333pt;}
.y7ca_c00001{bottom:428.933333pt;}
.yf9a_c00001{bottom:429.306667pt;}
.y7cb_c00001{bottom:429.693333pt;}
.y7cc_c00001{bottom:429.893333pt;}
.ya15_c00001{bottom:430.066667pt;}
.ye6c_c00001{bottom:430.093333pt;}
.y1287_c00001{bottom:430.186667pt;}
.yfb9_c00001{bottom:430.266667pt;}
.yf1b_c00001{bottom:430.466667pt;}
.y7d0_c00001{bottom:430.640000pt;}
.y7cf_c00001{bottom:430.840000pt;}
.y1d8_c00001{bottom:431.026667pt;}
.ybde_c00001{bottom:431.226667pt;}
.y73c_c00001{bottom:431.400000pt;}
.yef1_c00001{bottom:431.426667pt;}
.y7cd_c00001{bottom:431.600000pt;}
.y12ca_c00001{bottom:431.720000pt;}
.y9d_c00001{bottom:431.773333pt;}
.yee9_c00001{bottom:431.800000pt;}
.yce3_c00001{bottom:431.973333pt;}
.y6ab_c00001{bottom:432.160000pt;}
.ybdf_c00001{bottom:432.173333pt;}
.y11d_c00001{bottom:432.360000pt;}
.ye0e_c00001{bottom:432.373333pt;}
.y1340_c00001{bottom:432.493333pt;}
.y739_c00001{bottom:432.560000pt;}
.y73b_c00001{bottom:432.733333pt;}
.ye0d_c00001{bottom:432.933333pt;}
.y10d0_c00001{bottom:433.026667pt;}
.ya0_c00001{bottom:433.106667pt;}
.y73a_c00001{bottom:433.306667pt;}
.yc25_c00001{bottom:433.493333pt;}
.yd60_c00001{bottom:433.506667pt;}
.y107a_c00001{bottom:433.600000pt;}
.y555_c00001{bottom:433.693333pt;}
.ye6d_c00001{bottom:433.706667pt;}
.ya1_c00001{bottom:433.893333pt;}
.y1b2_c00001{bottom:434.066667pt;}
.yabe_c00001{bottom:434.226667pt;}
.y9b1_c00001{bottom:434.266667pt;}
.y11b_c00001{bottom:434.440000pt;}
.y9e_c00001{bottom:434.640000pt;}
.y9b9_c00001{bottom:434.826667pt;}
.y985_c00001{bottom:434.840000pt;}
.y9f_c00001{bottom:435.026667pt;}
.y91f_c00001{bottom:435.040000pt;}
.y10ad_c00001{bottom:435.186667pt;}
.y1b1_c00001{bottom:435.226667pt;}
.y33c_c00001{bottom:435.400000pt;}
.yb92_c00001{bottom:435.600000pt;}
.y33d_c00001{bottom:435.773333pt;}
.ya2_c00001{bottom:435.973333pt;}
.yeea_c00001{bottom:436.173333pt;}
.y11a_c00001{bottom:436.360000pt;}
.yd88_c00001{bottom:436.373333pt;}
.y1102_c00001{bottom:436.520000pt;}
.y554_c00001{bottom:436.560000pt;}
.y501_c00001{bottom:436.733333pt;}
.y9ba_c00001{bottom:436.933333pt;}
.y1192_c00001{bottom:437.026667pt;}
.y39b_c00001{bottom:437.106667pt;}
.y11c_c00001{bottom:437.306667pt;}
.y105f_c00001{bottom:437.453333pt;}
.y4d9_c00001{bottom:437.693333pt;}
.yc08_c00001{bottom:437.706667pt;}
.y39c_c00001{bottom:437.893333pt;}
.yf8b_c00001{bottom:438.266667pt;}
.ya67_c00001{bottom:438.466667pt;}
.y39d_c00001{bottom:438.640000pt;}
.ya5b_c00001{bottom:438.826667pt;}
.y65b_c00001{bottom:438.840000pt;}
.y39a_c00001{bottom:439.026667pt;}
.y65c_c00001{bottom:439.040000pt;}
.y962_c00001{bottom:439.226667pt;}
.y282_c00001{bottom:439.400000pt;}
.ya75_c00001{bottom:439.800000pt;}
.yb85_c00001{bottom:439.973333pt;}
.ya93_c00001{bottom:440.160000pt;}
.y961_c00001{bottom:440.173333pt;}
.y281_c00001{bottom:440.360000pt;}
.y283_c00001{bottom:440.560000pt;}
.yfa1_c00001{bottom:440.733333pt;}
.y5ee_c00001{bottom:441.106667pt;}
.y284_c00001{bottom:441.306667pt;}
.yb47_c00001{bottom:441.693333pt;}
.y108b_c00001{bottom:441.853333pt;}
.y5f1_c00001{bottom:441.893333pt;}
.y7c9_c00001{bottom:442.066667pt;}
.ye09_c00001{bottom:442.093333pt;}
.y7c7_c00001{bottom:442.266667pt;}
.yb45_c00001{bottom:442.440000pt;}
.ye0a_c00001{bottom:442.640000pt;}
.y1126_c00001{bottom:442.826667pt;}
.y10f5_c00001{bottom:442.933333pt;}
.y5f0_c00001{bottom:443.026667pt;}
.y5ef_c00001{bottom:443.040000pt;}
.y7c8_c00001{bottom:443.226667pt;}
.ye0b_c00001{bottom:443.400000pt;}
.yf41_c00001{bottom:443.426667pt;}
.yfa2_c00001{bottom:443.600000pt;}
.yb48_c00001{bottom:443.973333pt;}
.y1149_c00001{bottom:444.293333pt;}
.yb44_c00001{bottom:444.360000pt;}
.yd5e_c00001{bottom:444.733333pt;}
.yd5c_c00001{bottom:444.760000pt;}
.yc7e_c00001{bottom:444.933333pt;}
.yb46_c00001{bottom:445.306667pt;}
.y1018_c00001{bottom:445.493333pt;}
.ye0c_c00001{bottom:445.506667pt;}
.ycde_c00001{bottom:445.693333pt;}
.yf77_c00001{bottom:445.893333pt;}
.yd1f_c00001{bottom:446.066667pt;}
.yeb0_c00001{bottom:446.093333pt;}
.yd20_c00001{bottom:446.266667pt;}
.y1268_c00001{bottom:446.426667pt;}
.yce2_c00001{bottom:446.640000pt;}
.yd5d_c00001{bottom:446.840000pt;}
.ycdd_c00001{bottom:447.026667pt;}
.yd5f_c00001{bottom:447.040000pt;}
.yd9b_c00001{bottom:447.226667pt;}
.yee7_c00001{bottom:447.400000pt;}
.yce1_c00001{bottom:447.600000pt;}
.ycdf_c00001{bottom:447.973333pt;}
.y1135_c00001{bottom:448.093333pt;}
.y110e_c00001{bottom:448.160000pt;}
.y121f_c00001{bottom:448.253333pt;}
.yee8_c00001{bottom:448.360000pt;}
.yd87_c00001{bottom:448.373333pt;}
.y658_c00001{bottom:448.560000pt;}
.yf93_c00001{bottom:448.733333pt;}
.yce0_c00001{bottom:448.933333pt;}
.y1216_c00001{bottom:449.053333pt;}
.y737_c00001{bottom:449.106667pt;}
.y10b9_c00001{bottom:449.253333pt;}
.y547_c00001{bottom:449.306667pt;}
.y46d_c00001{bottom:449.493333pt;}
.y657_c00001{bottom:449.506667pt;}
.y9c_c00001{bottom:449.693333pt;}
.ydcf_c00001{bottom:449.706667pt;}
.y738_c00001{bottom:449.893333pt;}
.y548_c00001{bottom:450.066667pt;}
.y6bf_c00001{bottom:450.266667pt;}
.y119_c00001{bottom:450.440000pt;}
.y1b0_c00001{bottom:450.640000pt;}
.y130b_c00001{bottom:450.786667pt;}
.yc23_c00001{bottom:450.826667pt;}
.y659_c00001{bottom:450.840000pt;}
.y9a_c00001{bottom:451.026667pt;}
.y65a_c00001{bottom:451.040000pt;}
.y170_c00001{bottom:451.226667pt;}
.y9b_c00001{bottom:451.400000pt;}
.y202_c00001{bottom:451.600000pt;}
.y1233_c00001{bottom:451.733333pt;}
.y63b_c00001{bottom:451.773333pt;}
.y1d7_c00001{bottom:451.973333pt;}
.y77f_c00001{bottom:452.160000pt;}
.y99_c00001{bottom:452.360000pt;}
.y838_c00001{bottom:452.493333pt;}
.y118_c00001{bottom:452.560000pt;}
.y27f_c00001{bottom:452.733333pt;}
.y335_c00001{bottom:453.106667pt;}
.y117_c00001{bottom:453.306667pt;}
.y27e_c00001{bottom:453.693333pt;}
.y6f0_c00001{bottom:453.706667pt;}
.y27b_c00001{bottom:453.893333pt;}
.y336_c00001{bottom:454.066667pt;}
.yc7b_c00001{bottom:454.093333pt;}
.y280_c00001{bottom:454.266667pt;}
.y338_c00001{bottom:454.440000pt;}
.y27d_c00001{bottom:454.640000pt;}
.y11dd_c00001{bottom:454.746667pt;}
.y9bb_c00001{bottom:454.786667pt;}
.y10df_c00001{bottom:454.826667pt;}
.y33b_c00001{bottom:455.026667pt;}
.yb91_c00001{bottom:455.040000pt;}
.y339_c00001{bottom:455.226667pt;}
.y399_c00001{bottom:455.400000pt;}
.y27c_c00001{bottom:455.600000pt;}
.y398_c00001{bottom:455.773333pt;}
.yf40_c00001{bottom:455.800000pt;}
.y33a_c00001{bottom:455.973333pt;}
.y7c6_c00001{bottom:456.173333pt;}
.y1031_c00001{bottom:456.266667pt;}
.y11e7_c00001{bottom:456.293333pt;}
.y337_c00001{bottom:456.360000pt;}
.yc16_c00001{bottom:456.373333pt;}
.y7c4_c00001{bottom:456.560000pt;}
.ye08_c00001{bottom:456.733333pt;}
.y91e_c00001{bottom:456.933333pt;}
.ye39_c00001{bottom:457.133333pt;}
.y7c5_c00001{bottom:457.306667pt;}
.y1097_c00001{bottom:457.493333pt;}
.y960_c00001{bottom:457.506667pt;}
.y12c3_c00001{bottom:457.560000pt;}
.y397_c00001{bottom:457.693333pt;}
.yc7d_c00001{bottom:457.706667pt;}
.y111b_c00001{bottom:457.853333pt;}
.ye6b_c00001{bottom:457.893333pt;}
.yd58_c00001{bottom:458.066667pt;}
.yed3_c00001{bottom:458.093333pt;}
.yc7c_c00001{bottom:458.266667pt;}
.yebb_c00001{bottom:458.466667pt;}
.ya41_c00001{bottom:458.640000pt;}
.ye6a_c00001{bottom:458.840000pt;}
.y1333_c00001{bottom:458.933333pt;}
.yd57_c00001{bottom:459.026667pt;}
.y10eb_c00001{bottom:459.186667pt;}
.yed4_c00001{bottom:459.226667pt;}
.ya43_c00001{bottom:459.400000pt;}
.yd5b_c00001{bottom:459.600000pt;}
.yb43_c00001{bottom:459.773333pt;}
.yd5a_c00001{bottom:459.973333pt;}
.yf1a_c00001{bottom:460.173333pt;}
.y10c4_c00001{bottom:460.320000pt;}
.y5ed_c00001{bottom:460.360000pt;}
.yd59_c00001{bottom:460.373333pt;}
.ycdc_c00001{bottom:460.560000pt;}
.y5e9_c00001{bottom:460.733333pt;}
.y106e_c00001{bottom:460.866667pt;}
.y5ec_c00001{bottom:460.933333pt;}
.ya42_c00001{bottom:461.306667pt;}
.ydb3_c00001{bottom:461.506667pt;}
.y5e7_c00001{bottom:461.693333pt;}
.yd1e_c00001{bottom:461.706667pt;}
.ya44_c00001{bottom:461.893333pt;}
.ycdb_c00001{bottom:462.266667pt;}
.y5e8_c00001{bottom:462.640000pt;}
.y1054_c00001{bottom:462.826667pt;}
.y5eb_c00001{bottom:462.840000pt;}
.yf92_c00001{bottom:463.026667pt;}
.yf89_c00001{bottom:463.400000pt;}
.y5ea_c00001{bottom:463.600000pt;}
.yf91_c00001{bottom:463.973333pt;}
.y1103_c00001{bottom:464.160000pt;}
.yf8a_c00001{bottom:464.560000pt;}
.y653_c00001{bottom:465.506667pt;}
.y1af_c00001{bottom:465.693333pt;}
.y654_c00001{bottom:465.893333pt;}
.ybc7_c00001{bottom:466.066667pt;}
.y27a_c00001{bottom:466.266667pt;}
.y94_c00001{bottom:466.440000pt;}
.yfd3_c00001{bottom:466.520000pt;}
.yfb8_c00001{bottom:466.640000pt;}
.y736_c00001{bottom:466.826667pt;}
.y655_c00001{bottom:466.840000pt;}
.y277_c00001{bottom:467.026667pt;}
.y656_c00001{bottom:467.040000pt;}
.y546_c00001{bottom:467.400000pt;}
.yc79_c00001{bottom:467.426667pt;}
.y98_c00001{bottom:467.600000pt;}
.y95_c00001{bottom:467.773333pt;}
.y1127_c00001{bottom:467.933333pt;}
.y112_c00001{bottom:467.973333pt;}
.y1048_c00001{bottom:468.160000pt;}
.y278_c00001{bottom:468.173333pt;}
.y4d7_c00001{bottom:468.360000pt;}
.y97_c00001{bottom:468.560000pt;}
.y1d6_c00001{bottom:468.733333pt;}
.y279_c00001{bottom:468.933333pt;}
.y114_c00001{bottom:469.106667pt;}
.y93_c00001{bottom:469.306667pt;}
.y753_c00001{bottom:469.493333pt;}
.y96_c00001{bottom:469.693333pt;}
.y113_c00001{bottom:469.893333pt;}
.y50f_c00001{bottom:470.066667pt;}
.y8af_c00001{bottom:470.226667pt;}
.y7c3_c00001{bottom:470.266667pt;}
.yfe4_c00001{bottom:470.360000pt;}
.y4d5_c00001{bottom:470.440000pt;}
.y116_c00001{bottom:470.640000pt;}
.y1060_c00001{bottom:470.826667pt;}
.y95f_c00001{bottom:470.840000pt;}
.y115_c00001{bottom:471.026667pt;}
.yc7a_c00001{bottom:471.040000pt;}
.y4d8_c00001{bottom:471.226667pt;}
.y510_c00001{bottom:471.400000pt;}
.yeaf_c00001{bottom:471.426667pt;}
.ya0b_c00001{bottom:471.560000pt;}
.ye07_c00001{bottom:471.600000pt;}
.y11d2_c00001{bottom:471.693333pt;}
.y331_c00001{bottom:471.773333pt;}
.y4d6_c00001{bottom:471.973333pt;}
.y95e_c00001{bottom:472.173333pt;}
.y334_c00001{bottom:472.360000pt;}
.ye06_c00001{bottom:472.373333pt;}
.y500_c00001{bottom:472.560000pt;}
.y1289_c00001{bottom:472.693333pt;}
.y50e_c00001{bottom:472.733333pt;}
.ydcd_c00001{bottom:472.933333pt;}
.y394_c00001{bottom:473.106667pt;}
.y847_c00001{bottom:473.293333pt;}
.y4ff_c00001{bottom:473.306667pt;}
.y103c_c00001{bottom:473.493333pt;}
.yef0_c00001{bottom:473.506667pt;}
.y332_c00001{bottom:473.693333pt;}
.y333_c00001{bottom:473.893333pt;}
.y5e5_c00001{bottom:474.066667pt;}
.y91d_c00001{bottom:474.266667pt;}
.y395_c00001{bottom:474.640000pt;}
.y8c1_c00001{bottom:474.826667pt;}
.y396_c00001{bottom:475.026667pt;}
.ydce_c00001{bottom:475.040000pt;}
.y11f0_c00001{bottom:475.333333pt;}
.y860_c00001{bottom:475.400000pt;}
.yd1d_c00001{bottom:475.600000pt;}
.y853_c00001{bottom:475.800000pt;}
.y5e6_c00001{bottom:475.973333pt;}
.y1019_c00001{bottom:476.080000pt;}
.y883_c00001{bottom:476.160000pt;}
.yfea_c00001{bottom:476.253333pt;}
.yb42_c00001{bottom:476.360000pt;}
.yee6_c00001{bottom:476.373333pt;}
.y1269_c00001{bottom:476.520000pt;}
.y1161_c00001{bottom:476.666667pt;}
.y9d6_c00001{bottom:476.733333pt;}
.yf90_c00001{bottom:476.933333pt;}
.yb41_c00001{bottom:477.106667pt;}
.y879_c00001{bottom:477.133333pt;}
.yf88_c00001{bottom:477.306667pt;}
.y1025_c00001{bottom:477.453333pt;}
.y8a6_c00001{bottom:477.493333pt;}
.y12f8_c00001{bottom:477.560000pt;}
.ya4f_c00001{bottom:477.826667pt;}
.y119e_c00001{bottom:477.960000pt;}
.y276_c00001{bottom:478.066667pt;}
.y86a_c00001{bottom:478.266667pt;}
.y125a_c00001{bottom:478.360000pt;}
.yb3f_c00001{bottom:478.440000pt;}
.y9e4_c00001{bottom:478.466667pt;}
.y113f_c00001{bottom:478.746667pt;}
.y12cb_c00001{bottom:478.760000pt;}
.y107b_c00001{bottom:478.826667pt;}
.y10e0_c00001{bottom:478.986667pt;}
.y275_c00001{bottom:479.026667pt;}
.yb3d_c00001{bottom:479.226667pt;}
.y274_c00001{bottom:479.400000pt;}
.y270_c00001{bottom:479.600000pt;}
.yb3e_c00001{bottom:479.973333pt;}
.y10d1_c00001{bottom:480.160000pt;}
.yb40_c00001{bottom:480.360000pt;}
.y64f_c00001{bottom:480.560000pt;}
.yf5d_c00001{bottom:480.733333pt;}
.yf5c_c00001{bottom:480.933333pt;}
.ye03_c00001{bottom:481.133333pt;}
.y271_c00001{bottom:481.306667pt;}
.y114a_c00001{bottom:481.493333pt;}
.y272_c00001{bottom:481.506667pt;}
.y46c_c00001{bottom:481.693333pt;}
.y651_c00001{bottom:481.893333pt;}
.ye04_c00001{bottom:482.066667pt;}
.y120f_c00001{bottom:482.160000pt;}
.y273_c00001{bottom:482.266667pt;}
.yabf_c00001{bottom:482.600000pt;}
.y7c2_c00001{bottom:482.640000pt;}
.y1241_c00001{bottom:482.760000pt;}
.y650_c00001{bottom:482.840000pt;}
.y82a_c00001{bottom:483.026667pt;}
.y1154_c00001{bottom:483.200000pt;}
.y652_c00001{bottom:483.226667pt;}
.ye69_c00001{bottom:483.400000pt;}
.yf19_c00001{bottom:483.426667pt;}
.y7c1_c00001{bottom:483.600000pt;}
.y8dd_c00001{bottom:483.773333pt;}
.y1ae_c00001{bottom:483.973333pt;}
.y91_c00001{bottom:484.160000pt;}
.ye05_c00001{bottom:484.173333pt;}
.y200_c00001{bottom:484.360000pt;}
.yf3f_c00001{bottom:484.560000pt;}
.y118a_c00001{bottom:484.586667pt;}
.y1302_c00001{bottom:484.693333pt;}
.y544_c00001{bottom:484.733333pt;}
.ycd8_c00001{bottom:484.760000pt;}
.ycd9_c00001{bottom:484.933333pt;}
.y8f_c00001{bottom:485.106667pt;}
.y1fe_c00001{bottom:485.306667pt;}
.yb7a_c00001{bottom:485.493333pt;}
.y8dc_c00001{bottom:485.693333pt;}
.y1234_c00001{bottom:485.866667pt;}
.y545_c00001{bottom:485.893333pt;}
.y1ad_c00001{bottom:486.066667pt;}
.y10ae_c00001{bottom:486.226667pt;}
.ya5c_c00001{bottom:486.253333pt;}
.ya40_c00001{bottom:486.266667pt;}
.y111_c00001{bottom:486.440000pt;}
.y201_c00001{bottom:486.640000pt;}
.y9b0_c00001{bottom:486.826667pt;}
.y727_c00001{bottom:486.840000pt;}
.y90_c00001{bottom:487.026667pt;}
.ye38_c00001{bottom:487.040000pt;}
.y130c_c00001{bottom:487.186667pt;}
.y92_c00001{bottom:487.226667pt;}
.y5e4_c00001{bottom:487.400000pt;}
.y5e1_c00001{bottom:487.600000pt;}
.y4d2_c00001{bottom:487.773333pt;}
.ya68_c00001{bottom:487.800000pt;}
.y1ff_c00001{bottom:487.973333pt;}
.y1098_c00001{bottom:488.080000pt;}
.ya82_c00001{bottom:488.160000pt;}
.yd86_c00001{bottom:488.173333pt;}
.y1055_c00001{bottom:488.320000pt;}
.y110_c00001{bottom:488.360000pt;}
.ycda_c00001{bottom:488.373333pt;}
.y4d4_c00001{bottom:488.560000pt;}
.y32e_c00001{bottom:488.733333pt;}
.y5e2_c00001{bottom:488.933333pt;}
.y393_c00001{bottom:489.106667pt;}
.y38f_c00001{bottom:489.306667pt;}
.y1104_c00001{bottom:489.453333pt;}
.y1136_c00001{bottom:489.493333pt;}
.y5e3_c00001{bottom:489.506667pt;}
.y4d3_c00001{bottom:489.693333pt;}
.yfdf_c00001{bottom:489.760000pt;}
.y108c_c00001{bottom:489.866667pt;}
.y4fe_c00001{bottom:489.893333pt;}
.y392_c00001{bottom:490.066667pt;}
.ya76_c00001{bottom:490.266667pt;}
.y390_c00001{bottom:490.440000pt;}
.y330_c00001{bottom:490.640000pt;}
.y1253_c00001{bottom:490.746667pt;}
.y726_c00001{bottom:490.840000pt;}
.y32f_c00001{bottom:491.026667pt;}
.y97d_c00001{bottom:491.040000pt;}
.y50d_c00001{bottom:491.226667pt;}
.yaac_c00001{bottom:491.400000pt;}
.y26e_c00001{bottom:491.973333pt;}
.y1049_c00001{bottom:492.320000pt;}
.y391_c00001{bottom:492.360000pt;}
.yc14_c00001{bottom:492.373333pt;}
.y26a_c00001{bottom:492.733333pt;}
.y95d_c00001{bottom:492.933333pt;}
.y91c_c00001{bottom:493.106667pt;}
.yc76_c00001{bottom:493.306667pt;}
.y1169_c00001{bottom:493.413333pt;}
.y100c_c00001{bottom:493.586667pt;}
.y26b_c00001{bottom:493.693333pt;}
.y7be_c00001{bottom:494.066667pt;}
.yc75_c00001{bottom:494.093333pt;}
.yf5b_c00001{bottom:494.266667pt;}
.y1193_c00001{bottom:494.360000pt;}
.y26d_c00001{bottom:494.640000pt;}
.y106f_c00001{bottom:494.826667pt;}
.y26c_c00001{bottom:494.840000pt;}
.yf6f_c00001{bottom:495.026667pt;}
.y1322_c00001{bottom:495.200000pt;}
.yf0b_c00001{bottom:495.400000pt;}
.y26f_c00001{bottom:495.600000pt;}
.yb3b_c00001{bottom:495.773333pt;}
.yc15_c00001{bottom:495.800000pt;}
.y1341_c00001{bottom:495.853333pt;}
.y7c0_c00001{bottom:495.973333pt;}
.y7bf_c00001{bottom:496.173333pt;}
.y1061_c00001{bottom:496.320000pt;}
.ye02_c00001{bottom:496.360000pt;}
.yc78_c00001{bottom:496.373333pt;}
.y1217_c00001{bottom:496.466667pt;}
.yb3c_c00001{bottom:496.560000pt;}
.yb39_c00001{bottom:496.733333pt;}
.yed2_c00001{bottom:496.760000pt;}
.yc77_c00001{bottom:496.933333pt;}
.yd55_c00001{bottom:497.306667pt;}
.yb3a_c00001{bottom:497.693333pt;}
.yf0c_c00001{bottom:497.893333pt;}
.yd56_c00001{bottom:498.066667pt;}
.yd84_c00001{bottom:498.093333pt;}
.ye01_c00001{bottom:498.266667pt;}
.y128b_c00001{bottom:498.360000pt;}
.ya3e_c00001{bottom:498.640000pt;}
.y839_c00001{bottom:498.746667pt;}
.yf84_c00001{bottom:498.840000pt;}
.y103d_c00001{bottom:498.986667pt;}
.yd1b_c00001{bottom:499.026667pt;}
.ye37_c00001{bottom:499.226667pt;}
.y5dc_c00001{bottom:499.400000pt;}
.ya3d_c00001{bottom:499.600000pt;}
.ycd7_c00001{bottom:499.973333pt;}
.yd1c_c00001{bottom:500.173333pt;}
.y5dd_c00001{bottom:500.360000pt;}
.y9bc_c00001{bottom:500.453333pt;}
.ya3f_c00001{bottom:500.560000pt;}
.y5e0_c00001{bottom:500.733333pt;}
.yd85_c00001{bottom:500.933333pt;}
.y10a4_c00001{bottom:501.266667pt;}
.y1fd_c00001{bottom:501.306667pt;}
.y1032_c00001{bottom:501.493333pt;}
.y1d5_c00001{bottom:501.693333pt;}
.ye83_c00001{bottom:501.706667pt;}
.y110f_c00001{bottom:501.866667pt;}
.y5de_c00001{bottom:501.893333pt;}
.y64d_c00001{bottom:502.066667pt;}
.y5df_c00001{bottom:502.266667pt;}
.y89_c00001{bottom:502.440000pt;}
.y10f_c00001{bottom:502.826667pt;}
.y724_c00001{bottom:502.840000pt;}
.y16f_c00001{bottom:503.026667pt;}
.yfcd_c00001{bottom:503.120000pt;}
.y725_c00001{bottom:503.226667pt;}
.y1fb_c00001{bottom:503.400000pt;}
.y8e_c00001{bottom:503.773333pt;}
.y107c_c00001{bottom:503.933333pt;}
.y1fc_c00001{bottom:503.973333pt;}
.ya46_c00001{bottom:504.160000pt;}
.y8a_c00001{bottom:504.360000pt;}
.y8c_c00001{bottom:504.560000pt;}
.y10e_c00001{bottom:504.733333pt;}
.y64e_c00001{bottom:504.933333pt;}
.y1220_c00001{bottom:505.066667pt;}
.y4d0_c00001{bottom:505.106667pt;}
.y11e8_c00001{bottom:505.213333pt;}
.y8b_c00001{bottom:505.306667pt;}
.y9b8_c00001{bottom:505.493333pt;}
.y10d2_c00001{bottom:505.653333pt;}
.y8d_c00001{bottom:505.693333pt;}
.y4d1_c00001{bottom:505.893333pt;}
.y4fd_c00001{bottom:506.066667pt;}
.y95c_c00001{bottom:506.266667pt;}
.y32d_c00001{bottom:506.440000pt;}
.y114b_c00001{bottom:506.600000pt;}
.y10d_c00001{bottom:506.640000pt;}
.yb84_c00001{bottom:506.826667pt;}
.y12e0_c00001{bottom:506.920000pt;}
.yfd9_c00001{bottom:506.933333pt;}
.y4cf_c00001{bottom:507.026667pt;}
.y269_c00001{bottom:507.226667pt;}
.y4fb_c00001{bottom:507.400000pt;}
.y268_c00001{bottom:507.600000pt;}
.y111c_c00001{bottom:507.760000pt;}
.y38b_c00001{bottom:507.773333pt;}
.ydfb_c00001{bottom:507.800000pt;}
.y4fc_c00001{bottom:507.973333pt;}
.y32c_c00001{bottom:508.360000pt;}
.y77e_c00001{bottom:508.373333pt;}
.y38c_c00001{bottom:508.560000pt;}
.y1343_c00001{bottom:508.666667pt;}
.y10ba_c00001{bottom:508.693333pt;}
.ydfe_c00001{bottom:508.733333pt;}
.yf3b_c00001{bottom:508.760000pt;}
.ydfc_c00001{bottom:508.933333pt;}
.y10ec_c00001{bottom:509.093333pt;}
.y12e7_c00001{bottom:509.293333pt;}
.y38e_c00001{bottom:509.306667pt;}
.y7bd_c00001{bottom:509.506667pt;}
.y11ce_c00001{bottom:509.653333pt;}
.y38d_c00001{bottom:509.693333pt;}
.yc13_c00001{bottom:509.706667pt;}
.y1316_c00001{bottom:509.826667pt;}
.yf50_c00001{bottom:509.893333pt;}
.y11de_c00001{bottom:510.000000pt;}
.ye68_c00001{bottom:510.066667pt;}
.y7bc_c00001{bottom:510.266667pt;}
.yd83_c00001{bottom:510.466667pt;}
.yd54_c00001{bottom:510.640000pt;}
.ydff_c00001{bottom:510.840000pt;}
.y126a_c00001{bottom:510.986667pt;}
.yf3e_c00001{bottom:511.026667pt;}
.ye00_c00001{bottom:511.040000pt;}
.yf3c_c00001{bottom:511.226667pt;}
.ycd5_c00001{bottom:511.400000pt;}
.ydb2_c00001{bottom:511.426667pt;}
.y128a_c00001{bottom:511.520000pt;}
.ydfd_c00001{bottom:511.600000pt;}
.y97c_c00001{bottom:511.973333pt;}
.y10f6_c00001{bottom:512.320000pt;}
.ycd4_c00001{bottom:512.360000pt;}
.yf3d_c00001{bottom:512.373333pt;}
.yf18_c00001{bottom:512.560000pt;}
.yb37_c00001{bottom:512.733333pt;}
.y1334_c00001{bottom:512.853333pt;}
.ya3c_c00001{bottom:512.933333pt;}
.yb36_c00001{bottom:513.106667pt;}
.y5d9_c00001{bottom:513.306667pt;}
.y722_c00001{bottom:513.506667pt;}
.y1137_c00001{bottom:513.653333pt;}
.y5da_c00001{bottom:513.693333pt;}
.ye36_c00001{bottom:513.706667pt;}
.y721_c00001{bottom:513.893333pt;}
.yb38_c00001{bottom:514.066667pt;}
.ya3b_c00001{bottom:514.266667pt;}
.y5d8_c00001{bottom:514.640000pt;}
.y720_c00001{bottom:514.840000pt;}
.y5db_c00001{bottom:515.026667pt;}
.ycd6_c00001{bottom:515.040000pt;}
.y5d7_c00001{bottom:515.600000pt;}
.yf80_c00001{bottom:515.973333pt;}
.y723_c00001{bottom:516.173333pt;}
.y64c_c00001{bottom:516.360000pt;}
.ybc0_c00001{bottom:516.733333pt;}
.ybbf_c00001{bottom:517.106667pt;}
.y64a_c00001{bottom:517.306667pt;}
.ybc1_c00001{bottom:518.066667pt;}
.y64b_c00001{bottom:518.266667pt;}
.y735_c00001{bottom:518.440000pt;}
.yc74_c00001{bottom:518.466667pt;}
.y1162_c00001{bottom:518.600000pt;}
.y266_c00001{bottom:518.640000pt;}
.y91b_c00001{bottom:518.826667pt;}
.y1fa_c00001{bottom:519.026667pt;}
.y1070_c00001{bottom:519.360000pt;}
.y265_c00001{bottom:519.400000pt;}
.y1235_c00001{bottom:519.493333pt;}
.yf8f_c00001{bottom:519.600000pt;}
.y85_c00001{bottom:519.773333pt;}
.y8b0_c00001{bottom:519.933333pt;}
.y263_c00001{bottom:519.973333pt;}
.y1323_c00001{bottom:520.133333pt;}
.y564_c00001{bottom:520.160000pt;}
.y264_c00001{bottom:520.173333pt;}
.y63a_c00001{bottom:520.360000pt;}
.y8db_c00001{bottom:520.560000pt;}
.y6be_c00001{bottom:520.733333pt;}
.yf73_c00001{bottom:520.933333pt;}
.y11f1_c00001{bottom:521.093333pt;}
.y87_c00001{bottom:521.106667pt;}
.y267_c00001{bottom:521.306667pt;}
.ya50_c00001{bottom:521.413333pt;}
.y1303_c00001{bottom:521.453333pt;}
.y752_c00001{bottom:521.493333pt;}
.y86_c00001{bottom:521.693333pt;}
.y84_c00001{bottom:521.893333pt;}
.y1ac_c00001{bottom:522.066667pt;}
.ya0c_c00001{bottom:522.226667pt;}
.ydfa_c00001{bottom:522.266667pt;}
.y467_c00001{bottom:522.440000pt;}
.y848_c00001{bottom:522.626667pt;}
.y16e_c00001{bottom:522.640000pt;}
.y46a_c00001{bottom:522.826667pt;}
.y125d_c00001{bottom:522.933333pt;}
.y88_c00001{bottom:523.026667pt;}
.y10c_c00001{bottom:523.040000pt;}
.y1d4_c00001{bottom:523.226667pt;}
.y750_c00001{bottom:523.400000pt;}
.yf17_c00001{bottom:523.426667pt;}
.y7bb_c00001{bottom:523.600000pt;}
.y468_c00001{bottom:523.773333pt;}
.yeb9_c00001{bottom:523.800000pt;}
.y9c6_c00001{bottom:523.960000pt;}
.y639_c00001{bottom:523.973333pt;}
.y12d8_c00001{bottom:524.120000pt;}
.y8c2_c00001{bottom:524.160000pt;}
.y751_c00001{bottom:524.360000pt;}
.ydf9_c00001{bottom:524.373333pt;}
.y46b_c00001{bottom:524.560000pt;}
.y865_c00001{bottom:524.733333pt;}
.yd9a_c00001{bottom:524.933333pt;}
.y38a_c00001{bottom:525.106667pt;}
.y854_c00001{bottom:525.133333pt;}
.y4ce_c00001{bottom:525.306667pt;}
.y884_c00001{bottom:525.493333pt;}
.y469_c00001{bottom:525.693333pt;}
.yc1d_c00001{bottom:525.706667pt;}
.y32b_c00001{bottom:525.893333pt;}
.y388_c00001{bottom:526.066667pt;}
.ye9f_c00001{bottom:526.266667pt;}
.y87a_c00001{bottom:526.466667pt;}
.y768_c00001{bottom:526.640000pt;}
.y130d_c00001{bottom:526.720000pt;}
.y1110_c00001{bottom:526.800000pt;}
.y9ed_c00001{bottom:526.826667pt;}
.y71d_c00001{bottom:526.840000pt;}
.y389_c00001{bottom:527.026667pt;}
.yd1a_c00001{bottom:527.040000pt;}
.y71e_c00001{bottom:527.226667pt;}
.y8c6_c00001{bottom:527.400000pt;}
.y86b_c00001{bottom:527.600000pt;}
.y71f_c00001{bottom:527.800000pt;}
.y5d5_c00001{bottom:527.973333pt;}
.y9f5_c00001{bottom:528.160000pt;}
.y5d4_c00001{bottom:528.173333pt;}
.y11d3_c00001{bottom:528.253333pt;}
.yeba_c00001{bottom:528.373333pt;}
.y89e_c00001{bottom:528.733333pt;}
.y5d6_c00001{bottom:528.933333pt;}
.yfe5_c00001{bottom:529.013333pt;}
.yf7e_c00001{bottom:529.306667pt;}
.y12c4_c00001{bottom:529.760000pt;}
.y9f9_c00001{bottom:530.066667pt;}
.yf7f_c00001{bottom:530.266667pt;}
.yb33_c00001{bottom:530.440000pt;}
.yf7d_c00001{bottom:531.026667pt;}
.yb35_c00001{bottom:531.226667pt;}
.yb34_c00001{bottom:531.400000pt;}
.y125b_c00001{bottom:531.720000pt;}
.y25d_c00001{bottom:531.973333pt;}
.y12cc_c00001{bottom:532.253333pt;}
.yb32_c00001{bottom:532.360000pt;}
.y260_c00001{bottom:532.733333pt;}
.yac0_c00001{bottom:532.893333pt;}
.yf8e_c00001{bottom:532.933333pt;}
.yc73_c00001{bottom:533.306667pt;}
.y262_c00001{bottom:533.693333pt;}
.y25f_c00001{bottom:533.893333pt;}
.yf5a_c00001{bottom:534.066667pt;}
.y7ba_c00001{bottom:534.266667pt;}
.ybbd_c00001{bottom:534.440000pt;}
.y25e_c00001{bottom:534.640000pt;}
.y7b7_c00001{bottom:535.026667pt;}
.y7b6_c00001{bottom:535.226667pt;}
.ydf7_c00001{bottom:535.400000pt;}
.yf38_c00001{bottom:535.426667pt;}
.yfeb_c00001{bottom:535.520000pt;}
.ya5d_c00001{bottom:535.586667pt;}
.y261_c00001{bottom:535.600000pt;}
.y7b9_c00001{bottom:535.973333pt;}
.ya94_c00001{bottom:536.160000pt;}
.y734_c00001{bottom:536.360000pt;}
.ya00_c00001{bottom:536.373333pt;}
.ydf8_c00001{bottom:536.560000pt;}
.yf39_c00001{bottom:536.733333pt;}
.ye35_c00001{bottom:536.760000pt;}
.y1242_c00001{bottom:536.813333pt;}
.y7b8_c00001{bottom:536.933333pt;}
.y7e_c00001{bottom:537.106667pt;}
.ya69_c00001{bottom:537.133333pt;}
.ybbe_c00001{bottom:537.306667pt;}
.y1f9_c00001{bottom:537.493333pt;}
.y1d3_c00001{bottom:537.693333pt;}
.yf0a_c00001{bottom:537.706667pt;}
.y8da_c00001{bottom:537.893333pt;}
.y6bd_c00001{bottom:538.066667pt;}
.yfd4_c00001{bottom:538.146667pt;}
.y83_c00001{bottom:538.266667pt;}
.y82_c00001{bottom:538.440000pt;}
.ya77_c00001{bottom:538.466667pt;}
.y1d2_c00001{bottom:538.640000pt;}
.y69d_c00001{bottom:538.826667pt;}
.y7f_c00001{bottom:539.026667pt;}
.yf3a_c00001{bottom:539.040000pt;}
.y1210_c00001{bottom:539.133333pt;}
.y543_c00001{bottom:539.226667pt;}
.y1d1_c00001{bottom:539.400000pt;}
.y5d1_c00001{bottom:539.600000pt;}
.y637_c00001{bottom:539.773333pt;}
.y81_c00001{bottom:539.973333pt;}
.y9b7_c00001{bottom:540.160000pt;}
.y71c_c00001{bottom:540.173333pt;}
.y80_c00001{bottom:540.360000pt;}
.yd19_c00001{bottom:540.373333pt;}
.y638_c00001{bottom:540.560000pt;}
.y5d3_c00001{bottom:540.733333pt;}
.yd18_c00001{bottom:540.933333pt;}
.y119f_c00001{bottom:541.026667pt;}
.y329_c00001{bottom:541.106667pt;}
.y1ab_c00001{bottom:541.306667pt;}
.yab0_c00001{bottom:541.493333pt;}
.y384_c00001{bottom:541.693333pt;}
.yeae_c00001{bottom:541.706667pt;}
.y327_c00001{bottom:541.893333pt;}
.y50b_c00001{bottom:542.066667pt;}
.y5d2_c00001{bottom:542.266667pt;}
.y12bd_c00001{bottom:542.400000pt;}
.y50a_c00001{bottom:542.440000pt;}
.y4cd_c00001{bottom:542.640000pt;}
.y326_c00001{bottom:543.026667pt;}
.ya29_c00001{bottom:543.040000pt;}
.y328_c00001{bottom:543.226667pt;}
.y50c_c00001{bottom:543.400000pt;}
.y387_c00001{bottom:543.773333pt;}
.y32a_c00001{bottom:543.973333pt;}
.y1221_c00001{bottom:544.293333pt;}
.y383_c00001{bottom:544.360000pt;}
.yc12_c00001{bottom:544.373333pt;}
.y385_c00001{bottom:544.560000pt;}
.y25b_c00001{bottom:544.733333pt;}
.yf7c_c00001{bottom:544.933333pt;}
.y386_c00001{bottom:545.306667pt;}
.yc70_c00001{bottom:545.506667pt;}
.y258_c00001{bottom:545.693333pt;}
.y1218_c00001{bottom:545.800000pt;}
.y259_c00001{bottom:545.893333pt;}
.y979_c00001{bottom:546.066667pt;}
.y7b0_c00001{bottom:546.266667pt;}
.y11cf_c00001{bottom:546.586667pt;}
.y25a_c00001{bottom:546.640000pt;}
.y12f9_c00001{bottom:546.933333pt;}
.y116a_c00001{bottom:546.960000pt;}
.y7b1_c00001{bottom:547.026667pt;}
.y97a_c00001{bottom:547.226667pt;}
.y7b5_c00001{bottom:547.400000pt;}
.y25c_c00001{bottom:547.600000pt;}
.yb2f_c00001{bottom:547.773333pt;}
.y97b_c00001{bottom:547.973333pt;}
.y7b2_c00001{bottom:548.360000pt;}
.yc71_c00001{bottom:548.560000pt;}
.yb2e_c00001{bottom:548.733333pt;}
.ydf6_c00001{bottom:548.933333pt;}
.y11f2_c00001{bottom:549.093333pt;}
.yb30_c00001{bottom:549.106667pt;}
.yd15_c00001{bottom:549.133333pt;}
.y7b4_c00001{bottom:549.306667pt;}
.y128c_c00001{bottom:549.453333pt;}
.y7b3_c00001{bottom:549.506667pt;}
.yb2d_c00001{bottom:549.693333pt;}
.yc72_c00001{bottom:549.706667pt;}
.yb31_c00001{bottom:549.893333pt;}
.yed1_c00001{bottom:550.066667pt;}
.ydf5_c00001{bottom:550.266667pt;}
.yd16_c00001{bottom:550.640000pt;}
.ye67_c00001{bottom:550.840000pt;}
.y1254_c00001{bottom:550.920000pt;}
.ye9e_c00001{bottom:551.026667pt;}
.ydf4_c00001{bottom:551.040000pt;}
.y71a_c00001{bottom:551.226667pt;}
.ycd3_c00001{bottom:551.400000pt;}
.ya37_c00001{bottom:551.600000pt;}
.ybbb_c00001{bottom:551.773333pt;}
.yd50_c00001{bottom:551.973333pt;}
.y71b_c00001{bottom:552.173333pt;}
.y95a_c00001{bottom:552.360000pt;}
.yd17_c00001{bottom:552.560000pt;}
.y5d0_c00001{bottom:552.733333pt;}
.yd51_c00001{bottom:552.933333pt;}
.y95b_c00001{bottom:553.106667pt;}
.ybbc_c00001{bottom:553.306667pt;}
.yfe0_c00001{bottom:553.426667pt;}
.yd52_c00001{bottom:553.506667pt;}
.y1194_c00001{bottom:553.586667pt;}
.y1a8_c00001{bottom:553.693333pt;}
.yd53_c00001{bottom:553.706667pt;}
.ya39_c00001{bottom:553.893333pt;}
.y11df_c00001{bottom:554.000000pt;}
.y8d9_c00001{bottom:554.066667pt;}
.y100d_c00001{bottom:554.186667pt;}
.ya38_c00001{bottom:554.266667pt;}
.y563_c00001{bottom:554.440000pt;}
.y1a9_c00001{bottom:554.640000pt;}
.y562_c00001{bottom:554.826667pt;}
.ya3a_c00001{bottom:554.840000pt;}
.y7d_c00001{bottom:555.026667pt;}
.ydcc_c00001{bottom:555.040000pt;}
.y829_c00001{bottom:555.400000pt;}
.y12d1_c00001{bottom:555.493333pt;}
.ydcb_c00001{bottom:555.600000pt;}
.y7b_c00001{bottom:555.773333pt;}
.y1335_c00001{bottom:555.973333pt;}
.yba7_c00001{bottom:556.160000pt;}
.yfda_c00001{bottom:556.293333pt;}
.y1f8_c00001{bottom:556.360000pt;}
.y91a_c00001{bottom:556.373333pt;}
.y1f7_c00001{bottom:556.560000pt;}
.y79_c00001{bottom:556.733333pt;}
.y10b_c00001{bottom:557.106667pt;}
.y1aa_c00001{bottom:557.306667pt;}
.y7a_c00001{bottom:557.693333pt;}
.y7c_c00001{bottom:557.893333pt;}
.ya28_c00001{bottom:558.066667pt;}
.yf8d_c00001{bottom:558.266667pt;}
.y126b_c00001{bottom:558.346667pt;}
.y123f_c00001{bottom:558.400000pt;}
.y322_c00001{bottom:558.440000pt;}
.y553_c00001{bottom:558.640000pt;}
.y12d9_c00001{bottom:558.800000pt;}
.y1324_c00001{bottom:558.933333pt;}
.y10a_c00001{bottom:559.026667pt;}
.yba6_c00001{bottom:559.040000pt;}
.y4cc_c00001{bottom:559.226667pt;}
.y1304_c00001{bottom:559.360000pt;}
.y4cb_c00001{bottom:559.400000pt;}
.yb90_c00001{bottom:559.600000pt;}
.yfce_c00001{bottom:559.693333pt;}
.y509_c00001{bottom:559.773333pt;}
.y257_c00001{bottom:559.973333pt;}
.y37e_c00001{bottom:560.160000pt;}
.y323_c00001{bottom:560.360000pt;}
.y325_c00001{bottom:560.560000pt;}
.y552_c00001{bottom:560.733333pt;}
.ydf1_c00001{bottom:560.760000pt;}
.y256_c00001{bottom:560.933333pt;}
.y380_c00001{bottom:561.106667pt;}
.y4fa_c00001{bottom:561.306667pt;}
.y118b_c00001{bottom:561.600000pt;}
.y324_c00001{bottom:561.693333pt;}
.yc07_c00001{bottom:561.706667pt;}
.y381_c00001{bottom:561.893333pt;}
.yc1c_c00001{bottom:562.066667pt;}
.yf37_c00001{bottom:562.093333pt;}
.y132e_c00001{bottom:562.186667pt;}
.y7af_c00001{bottom:562.266667pt;}
.y119b_c00001{bottom:562.360000pt;}
.y11e9_c00001{bottom:562.586667pt;}
.y382_c00001{bottom:562.640000pt;}
.y1317_c00001{bottom:562.680000pt;}
.yf4f_c00001{bottom:562.840000pt;}
.y37f_c00001{bottom:563.026667pt;}
.ydf3_c00001{bottom:563.226667pt;}
.yed0_c00001{bottom:563.400000pt;}
.ye9d_c00001{bottom:563.426667pt;}
.ydf2_c00001{bottom:563.600000pt;}
.ycd0_c00001{bottom:563.800000pt;}
.yd14_c00001{bottom:563.973333pt;}
.yf09_c00001{bottom:564.173333pt;}
.ycd1_c00001{bottom:564.360000pt;}
.y719_c00001{bottom:564.560000pt;}
.yd13_c00001{bottom:564.733333pt;}
.ya32_c00001{bottom:564.933333pt;}
.yb2a_c00001{bottom:565.106667pt;}
.y12e8_c00001{bottom:565.160000pt;}
.yd4f_c00001{bottom:565.306667pt;}
.y718_c00001{bottom:565.506667pt;}
.ya33_c00001{bottom:565.693333pt;}
.ya36_c00001{bottom:565.893333pt;}
.y5c9_c00001{bottom:566.066667pt;}
.y5c8_c00001{bottom:566.266667pt;}
.yb2b_c00001{bottom:566.440000pt;}
.ya35_c00001{bottom:566.640000pt;}
.ycd2_c00001{bottom:566.840000pt;}
.y5ce_c00001{bottom:567.026667pt;}
.yd82_c00001{bottom:567.040000pt;}
.y5cf_c00001{bottom:567.226667pt;}
.y5cd_c00001{bottom:567.400000pt;}
.ya34_c00001{bottom:567.600000pt;}
.y83a_c00001{bottom:567.733333pt;}
.y5ca_c00001{bottom:567.973333pt;}
.y5cb_c00001{bottom:568.173333pt;}
.y1342_c00001{bottom:568.333333pt;}
.ya51_c00001{bottom:568.360000pt;}
.y5cc_c00001{bottom:568.933333pt;}
.y12e1_c00001{bottom:569.026667pt;}
.ybb9_c00001{bottom:569.106667pt;}
.yb2c_c00001{bottom:569.306667pt;}
.y9bd_c00001{bottom:569.453333pt;}
.y11a5_c00001{bottom:569.693333pt;}
.ybba_c00001{bottom:569.893333pt;}
.y8b1_c00001{bottom:570.226667pt;}
.y253_c00001{bottom:570.640000pt;}
.y125e_c00001{bottom:570.800000pt;}
.y958_c00001{bottom:570.826667pt;}
.y11a7_c00001{bottom:570.840000pt;}
.y542_c00001{bottom:571.026667pt;}
.y833_c00001{bottom:571.160000pt;}
.ya0d_c00001{bottom:571.560000pt;}
.y11a6_c00001{bottom:571.600000pt;}
.y828_c00001{bottom:571.773333pt;}
.yc6f_c00001{bottom:571.800000pt;}
.y849_c00001{bottom:571.960000pt;}
.ya1c_c00001{bottom:571.973333pt;}
.y109_c00001{bottom:572.360000pt;}
.y959_c00001{bottom:572.560000pt;}
.y7ae_c00001{bottom:572.733333pt;}
.yf6e_c00001{bottom:572.933333pt;}
.y74_c00001{bottom:573.106667pt;}
.y254_c00001{bottom:573.306667pt;}
.yba2_c00001{bottom:573.493333pt;}
.y6a9_c00001{bottom:573.693333pt;}
.y1a6_c00001{bottom:573.893333pt;}
.y1f6_c00001{bottom:574.066667pt;}
.y255_c00001{bottom:574.266667pt;}
.y108_c00001{bottom:574.440000pt;}
.y855_c00001{bottom:574.466667pt;}
.y1a7_c00001{bottom:574.640000pt;}
.y885_c00001{bottom:574.826667pt;}
.y1236_c00001{bottom:574.986667pt;}
.y75_c00001{bottom:575.026667pt;}
.y78_c00001{bottom:575.226667pt;}
.y16d_c00001{bottom:575.400000pt;}
.y716_c00001{bottom:575.600000pt;}
.y321_c00001{bottom:575.773333pt;}
.y87b_c00001{bottom:575.800000pt;}
.y76_c00001{bottom:575.973333pt;}
.y89a_c00001{bottom:576.160000pt;}
.yf59_c00001{bottom:576.173333pt;}
.y77_c00001{bottom:576.360000pt;}
.y649_c00001{bottom:576.373333pt;}
.y466_c00001{bottom:576.560000pt;}
.y4f9_c00001{bottom:576.733333pt;}
.yd81_c00001{bottom:576.760000pt;}
.y873_c00001{bottom:576.933333pt;}
.y31e_c00001{bottom:577.106667pt;}
.y9e9_c00001{bottom:577.133333pt;}
.y9c7_c00001{bottom:577.293333pt;}
.y6aa_c00001{bottom:577.306667pt;}
.y9f6_c00001{bottom:577.493333pt;}
.y717_c00001{bottom:577.506667pt;}
.y465_c00001{bottom:577.693333pt;}
.y4ca_c00001{bottom:577.706667pt;}
.y320_c00001{bottom:577.893333pt;}
.y508_c00001{bottom:578.066667pt;}
.y9df_c00001{bottom:578.266667pt;}
.y125c_c00001{bottom:578.386667pt;}
.y1336_c00001{bottom:578.586667pt;}
.y4f8_c00001{bottom:578.640000pt;}
.ye9c_c00001{bottom:578.840000pt;}
.y31f_c00001{bottom:579.026667pt;}
.y37c_c00001{bottom:579.226667pt;}
.y5c6_c00001{bottom:579.400000pt;}
.y5c3_c00001{bottom:579.600000pt;}
.y37b_c00001{bottom:579.973333pt;}
.ya31_c00001{bottom:580.173333pt;}
.y37d_c00001{bottom:580.360000pt;}
.yd12_c00001{bottom:580.373333pt;}
.ya49_c00001{bottom:580.493333pt;}
.yc05_c00001{bottom:580.560000pt;}
.yc06_c00001{bottom:580.733333pt;}
.y5c7_c00001{bottom:580.933333pt;}
.y12be_c00001{bottom:581.053333pt;}
.yac1_c00001{bottom:581.266667pt;}
.y5c4_c00001{bottom:581.306667pt;}
.y5c5_c00001{bottom:582.266667pt;}
.yb27_c00001{bottom:582.440000pt;}
.y977_c00001{bottom:583.400000pt;}
.yf7b_c00001{bottom:583.600000pt;}
.y978_c00001{bottom:583.773333pt;}
.ya5e_c00001{bottom:583.960000pt;}
.y250_c00001{bottom:583.973333pt;}
.yb28_c00001{bottom:584.360000pt;}
.yf7a_c00001{bottom:584.560000pt;}
.yb29_c00001{bottom:584.733333pt;}
.y24d_c00001{bottom:584.933333pt;}
.ya52_c00001{bottom:585.093333pt;}
.yb26_c00001{bottom:585.306667pt;}
.ya95_c00001{bottom:585.493333pt;}
.y24f_c00001{bottom:585.693333pt;}
.y252_c00001{bottom:585.893333pt;}
.y7aa_c00001{bottom:586.066667pt;}
.yfec_c00001{bottom:586.186667pt;}
.y7ab_c00001{bottom:586.266667pt;}
.y130e_c00001{bottom:586.400000pt;}
.y12da_c00001{bottom:586.426667pt;}
.ybb6_c00001{bottom:586.440000pt;}
.ya6a_c00001{bottom:586.466667pt;}
.y12cd_c00001{bottom:586.600000pt;}
.y251_c00001{bottom:586.640000pt;}
.ya88_c00001{bottom:586.826667pt;}
.y11b5_c00001{bottom:586.840000pt;}
.y11f3_c00001{bottom:586.920000pt;}
.yf6d_c00001{bottom:587.026667pt;}
.y7ac_c00001{bottom:587.226667pt;}
.yf08_c00001{bottom:587.400000pt;}
.y24e_c00001{bottom:587.600000pt;}
.ybb7_c00001{bottom:587.773333pt;}
.yf36_c00001{bottom:587.800000pt;}
.y7ad_c00001{bottom:587.973333pt;}
.y1211_c00001{bottom:588.093333pt;}
.y128d_c00001{bottom:588.120000pt;}
.yad1_c00001{bottom:588.160000pt;}
.y12af_c00001{bottom:588.173333pt;}
.ybb8_c00001{bottom:588.360000pt;}
.yc6e_c00001{bottom:588.373333pt;}
.yf58_c00001{bottom:588.560000pt;}
.yaa6_c00001{bottom:588.733333pt;}
.y128f_c00001{bottom:588.893333pt;}
.ya78_c00001{bottom:588.933333pt;}
.y919_c00001{bottom:589.106667pt;}
.yd80_c00001{bottom:589.133333pt;}
.y6d_c00001{bottom:589.306667pt;}
.y715_c00001{bottom:589.506667pt;}
.y636_c00001{bottom:589.693333pt;}
.y714_c00001{bottom:589.893333pt;}
.yab9_c00001{bottom:590.066667pt;}
.yd99_c00001{bottom:590.093333pt;}
.ydf0_c00001{bottom:590.266667pt;}
.y71_c00001{bottom:590.440000pt;}
.y6bc_c00001{bottom:590.640000pt;}
.y635_c00001{bottom:590.826667pt;}
.ye65_c00001{bottom:590.840000pt;}
.y107_c00001{bottom:591.026667pt;}
.ye66_c00001{bottom:591.040000pt;}
.y827_c00001{bottom:591.226667pt;}
.y73_c00001{bottom:591.400000pt;}
.ydb1_c00001{bottom:591.600000pt;}
.y16c_c00001{bottom:591.773333pt;}
.y11d4_c00001{bottom:591.880000pt;}
.y6e_c00001{bottom:591.973333pt;}
.y1222_c00001{bottom:592.080000pt;}
.ye9b_c00001{bottom:592.173333pt;}
.y6f_c00001{bottom:592.360000pt;}
.y72_c00001{bottom:592.560000pt;}
.y104_c00001{bottom:592.733333pt;}
.y1240_c00001{bottom:592.920000pt;}
.ya2f_c00001{bottom:592.933333pt;}
.y116b_c00001{bottom:593.026667pt;}
.y319_c00001{bottom:593.106667pt;}
.y70_c00001{bottom:593.306667pt;}
.ydca_c00001{bottom:593.506667pt;}
.y12fa_c00001{bottom:593.666667pt;}
.y105_c00001{bottom:593.693333pt;}
.ydb0_c00001{bottom:593.706667pt;}
.y464_c00001{bottom:593.893333pt;}
.y4c9_c00001{bottom:594.066667pt;}
.ya30_c00001{bottom:594.266667pt;}
.y31c_c00001{bottom:594.440000pt;}
.y106_c00001{bottom:594.640000pt;}
.yfe6_c00001{bottom:594.720000pt;}
.y1188_c00001{bottom:594.840000pt;}
.y318_c00001{bottom:595.026667pt;}
.y31a_c00001{bottom:595.226667pt;}
.y9b6_c00001{bottom:595.400000pt;}
.y5c2_c00001{bottom:595.600000pt;}
.y378_c00001{bottom:595.773333pt;}
.y31d_c00001{bottom:595.973333pt;}
.y31b_c00001{bottom:596.360000pt;}
.y77d_c00001{bottom:596.373333pt;}
.y37a_c00001{bottom:596.560000pt;}
.y11a0_c00001{bottom:597.026667pt;}
.y767_c00001{bottom:597.306667pt;}
.y11fc_c00001{bottom:597.506667pt;}
.y379_c00001{bottom:597.693333pt;}
.y127a_c00001{bottom:598.066667pt;}
.yf99_c00001{bottom:598.266667pt;}
.y7a8_c00001{bottom:598.640000pt;}
.y100e_c00001{bottom:599.000000pt;}
.y24b_c00001{bottom:599.026667pt;}
.y12c5_c00001{bottom:599.093333pt;}
.y1219_c00001{bottom:599.120000pt;}
.y1243_c00001{bottom:599.160000pt;}
.y24c_c00001{bottom:599.226667pt;}
.y7a6_c00001{bottom:599.400000pt;}
.y7a5_c00001{bottom:599.600000pt;}
.yb22_c00001{bottom:599.773333pt;}
.yfdb_c00001{bottom:599.920000pt;}
.yc6c_c00001{bottom:599.973333pt;}
.y7a7_c00001{bottom:600.360000pt;}
.y7a9_c00001{bottom:600.560000pt;}
.yf07_c00001{bottom:600.733333pt;}
.y24a_c00001{bottom:600.933333pt;}
.yb25_c00001{bottom:601.106667pt;}
.y713_c00001{bottom:601.133333pt;}
.yf6c_c00001{bottom:601.306667pt;}
.y10d3_c00001{bottom:601.426667pt;}
.yf72_c00001{bottom:601.506667pt;}
.yb21_c00001{bottom:601.693333pt;}
.yfe1_c00001{bottom:601.800000pt;}
.y11d0_c00001{bottom:601.826667pt;}
.y711_c00001{bottom:601.893333pt;}
.ye64_c00001{bottom:602.066667pt;}
.yeef_c00001{bottom:602.093333pt;}
.yc6d_c00001{bottom:602.266667pt;}
.yee5_c00001{bottom:602.466667pt;}
.yd11_c00001{bottom:602.640000pt;}
.y12e9_c00001{bottom:602.826667pt;}
.y712_c00001{bottom:602.840000pt;}
.yb23_c00001{bottom:603.026667pt;}
.yfae_c00001{bottom:603.226667pt;}
.yd0e_c00001{bottom:603.400000pt;}
.yd10_c00001{bottom:603.600000pt;}
.ybb5_c00001{bottom:603.773333pt;}
.yb24_c00001{bottom:603.973333pt;}
.ya2e_c00001{bottom:604.360000pt;}
.yd7f_c00001{bottom:604.560000pt;}
.ybb4_c00001{bottom:604.733333pt;}
.yccf_c00001{bottom:604.933333pt;}
.ybb3_c00001{bottom:605.106667pt;}
.y83b_c00001{bottom:605.266667pt;}
.y955_c00001{bottom:605.306667pt;}
.yd98_c00001{bottom:605.506667pt;}
.y8d8_c00001{bottom:605.693333pt;}
.yd4e_c00001{bottom:605.706667pt;}
.y1325_c00001{bottom:605.853333pt;}
.y1195_c00001{bottom:605.866667pt;}
.ybb2_c00001{bottom:605.893333pt;}
.y5be_c00001{bottom:606.066667pt;}
.y5c1_c00001{bottom:606.266667pt;}
.y956_c00001{bottom:606.440000pt;}
.y8d7_c00001{bottom:606.640000pt;}
.ydc9_c00001{bottom:606.840000pt;}
.y68_c00001{bottom:607.026667pt;}
.yd0f_c00001{bottom:607.040000pt;}
.y5bd_c00001{bottom:607.226667pt;}
.y957_c00001{bottom:607.400000pt;}
.yfd5_c00001{bottom:607.480000pt;}
.y1237_c00001{bottom:607.586667pt;}
.y5bf_c00001{bottom:607.600000pt;}
.y67_c00001{bottom:607.773333pt;}
.y561_c00001{bottom:607.973333pt;}
.y5c0_c00001{bottom:608.173333pt;}
.y634_c00001{bottom:608.360000pt;}
.y66_c00001{bottom:608.560000pt;}
.y1f5_c00001{bottom:608.733333pt;}
.y11ea_c00001{bottom:609.026667pt;}
.y6b_c00001{bottom:609.106667pt;}
.y826_c00001{bottom:609.306667pt;}
.y125f_c00001{bottom:609.413333pt;}
.yc24_c00001{bottom:609.493333pt;}
.y6a_c00001{bottom:609.693333pt;}
.y12d6_c00001{bottom:609.800000pt;}
.y132f_c00001{bottom:609.853333pt;}
.y69_c00001{bottom:609.893333pt;}
.y103_c00001{bottom:610.066667pt;}
.yc04_c00001{bottom:610.266667pt;}
.y463_c00001{bottom:610.440000pt;}
.y1a5_c00001{bottom:610.640000pt;}
.y6c_c00001{bottom:611.026667pt;}
.y74f_c00001{bottom:611.226667pt;}
.y248_c00001{bottom:611.400000pt;}
.y249_c00001{bottom:611.600000pt;}
.y315_c00001{bottom:611.773333pt;}
.y16b_c00001{bottom:611.973333pt;}
.y244_c00001{bottom:612.360000pt;}
.y317_c00001{bottom:612.560000pt;}
.y316_c00001{bottom:612.733333pt;}
.y7a4_c00001{bottom:612.933333pt;}
.y9be_c00001{bottom:613.026667pt;}
.ye60_c00001{bottom:613.133333pt;}
.y247_c00001{bottom:613.306667pt;}
.y246_c00001{bottom:613.506667pt;}
.y314_c00001{bottom:613.693333pt;}
.y70f_c00001{bottom:613.893333pt;}
.ydec_c00001{bottom:614.066667pt;}
.y245_c00001{bottom:614.266667pt;}
.y551_c00001{bottom:614.640000pt;}
.y710_c00001{bottom:614.840000pt;}
.yfcf_c00001{bottom:614.933333pt;}
.ye61_c00001{bottom:615.026667pt;}
.yc6b_c00001{bottom:615.040000pt;}
.y1255_c00001{bottom:615.120000pt;}
.ydef_c00001{bottom:615.226667pt;}
.ya4a_c00001{bottom:615.400000pt;}
.ye34_c00001{bottom:615.426667pt;}
.y7a3_c00001{bottom:615.600000pt;}
.ydee_c00001{bottom:615.973333pt;}
.y1305_c00001{bottom:616.093333pt;}
.ye9a_c00001{bottom:616.360000pt;}
.yded_c00001{bottom:616.373333pt;}
.ye62_c00001{bottom:616.560000pt;}
.ycca_c00001{bottom:616.733333pt;}
.yd0d_c00001{bottom:616.760000pt;}
.yd4d_c00001{bottom:616.933333pt;}
.yccc_c00001{bottom:617.306667pt;}
.yccd_c00001{bottom:617.693333pt;}
.ye63_c00001{bottom:617.706667pt;}
.yd97_c00001{bottom:617.893333pt;}
.y5bc_c00001{bottom:618.066667pt;}
.yd7e_c00001{bottom:618.266667pt;}
.y10f7_c00001{bottom:618.360000pt;}
.y1337_c00001{bottom:618.426667pt;}
.yb20_c00001{bottom:618.440000pt;}
.ycce_c00001{bottom:618.640000pt;}
.ya2a_c00001{bottom:618.840000pt;}
.y126c_c00001{bottom:618.986667pt;}
.ya2d_c00001{bottom:619.026667pt;}
.ydaf_c00001{bottom:619.040000pt;}
.y8b2_c00001{bottom:619.186667pt;}
.yd7d_c00001{bottom:619.226667pt;}
.yccb_c00001{bottom:619.600000pt;}
.y119c_c00001{bottom:619.693333pt;}
.ya2c_c00001{bottom:619.973333pt;}
.ya2b_c00001{bottom:620.173333pt;}
.ya53_c00001{bottom:620.266667pt;}
.yb1f_c00001{bottom:620.360000pt;}
.yd7c_c00001{bottom:620.373333pt;}
.ya0e_c00001{bottom:620.893333pt;}
.y5bb_c00001{bottom:620.933333pt;}
.ybb0_c00001{bottom:621.106667pt;}
.y1260_c00001{bottom:621.493333pt;}
.y84a_c00001{bottom:622.253333pt;}
.y435_c00001{bottom:622.266667pt;}
.y130f_c00001{bottom:622.426667pt;}
.ybb1_c00001{bottom:622.440000pt;}
.yb8c_c00001{bottom:622.640000pt;}
.y12ce_c00001{bottom:622.760000pt;}
.y866_c00001{bottom:623.026667pt;}
.y437_c00001{bottom:623.226667pt;}
.y11e0_c00001{bottom:623.346667pt;}
.y9d7_c00001{bottom:623.400000pt;}
.y23f_c00001{bottom:623.600000pt;}
.y954_c00001{bottom:623.773333pt;}
.y856_c00001{bottom:623.800000pt;}
.y8d6_c00001{bottom:623.973333pt;}
.y886_c00001{bottom:624.160000pt;}
.y436_c00001{bottom:624.173333pt;}
.y65_c00001{bottom:624.360000pt;}
.y12db_c00001{bottom:624.453333pt;}
.y434_c00001{bottom:624.560000pt;}
.y240_c00001{bottom:624.733333pt;}
.yc6a_c00001{bottom:624.760000pt;}
.yb8b_c00001{bottom:624.933333pt;}
.y61_c00001{bottom:625.106667pt;}
.y87c_c00001{bottom:625.133333pt;}
.y6bb_c00001{bottom:625.306667pt;}
.y1f4_c00001{bottom:625.493333pt;}
.y243_c00001{bottom:625.506667pt;}
.y7a2_c00001{bottom:625.693333pt;}
.y241_c00001{bottom:625.893333pt;}
.y60_c00001{bottom:626.066667pt;}
.yf06_c00001{bottom:626.093333pt;}
.y86c_c00001{bottom:626.266667pt;}
.y12bf_c00001{bottom:626.386667pt;}
.y63_c00001{bottom:626.440000pt;}
.y9e5_c00001{bottom:626.466667pt;}
.y242_c00001{bottom:626.640000pt;}
.y100f_c00001{bottom:626.800000pt;}
.ya01_c00001{bottom:626.826667pt;}
.y70e_c00001{bottom:626.840000pt;}
.y5f_c00001{bottom:627.026667pt;}
.y101_c00001{bottom:627.226667pt;}
.y100_c00001{bottom:627.400000pt;}
.yf35_c00001{bottom:627.426667pt;}
.y9e0_c00001{bottom:627.600000pt;}
.y460_c00001{bottom:627.773333pt;}
.y62_c00001{bottom:627.973333pt;}
.y64_c00001{bottom:628.360000pt;}
.y6a8_c00001{bottom:628.560000pt;}
.y462_c00001{bottom:628.733333pt;}
.y74e_c00001{bottom:628.933333pt;}
.y30f_c00001{bottom:629.106667pt;}
.ydae_c00001{bottom:629.133333pt;}
.y102_c00001{bottom:629.306667pt;}
.y12ea_c00001{bottom:629.453333pt;}
.y461_c00001{bottom:629.693333pt;}
.y312_c00001{bottom:629.893333pt;}
.y313_c00001{bottom:630.066667pt;}
.yd7a_c00001{bottom:630.093333pt;}
.yac2_c00001{bottom:630.226667pt;}
.ycc9_c00001{bottom:630.266667pt;}
.y310_c00001{bottom:630.640000pt;}
.y311_c00001{bottom:631.026667pt;}
.yd7b_c00001{bottom:631.226667pt;}
.y5ba_c00001{bottom:631.400000pt;}
.y128e_c00001{bottom:631.520000pt;}
.ydc7_c00001{bottom:631.600000pt;}
.yc03_c00001{bottom:631.773333pt;}
.ya5f_c00001{bottom:631.960000pt;}
.yc0c_c00001{bottom:631.973333pt;}
.y5b7_c00001{bottom:632.360000pt;}
.yd4c_c00001{bottom:632.373333pt;}
.y12e2_c00001{bottom:632.413333pt;}
.y5b5_c00001{bottom:632.560000pt;}
.yc02_c00001{bottom:632.733333pt;}
.y539_c00001{bottom:632.933333pt;}
.y5b6_c00001{bottom:633.306667pt;}
.y5b9_c00001{bottom:633.506667pt;}
.ydc8_c00001{bottom:633.706667pt;}
.y5b8_c00001{bottom:634.266667pt;}
.y1196_c00001{bottom:634.760000pt;}
.yaa1_c00001{bottom:634.826667pt;}
.y433_c00001{bottom:635.226667pt;}
.yb1e_c00001{bottom:635.400000pt;}
.y101a_c00001{bottom:635.680000pt;}
.yb1d_c00001{bottom:635.773333pt;}
.ya6b_c00001{bottom:635.800000pt;}
.y1238_c00001{bottom:635.933333pt;}
.yb89_c00001{bottom:635.973333pt;}
.ya96_c00001{bottom:636.160000pt;}
.y432_c00001{bottom:636.173333pt;}
.y1212_c00001{bottom:636.266667pt;}
.yb88_c00001{bottom:636.360000pt;}
.y53a_c00001{bottom:636.373333pt;}
.y431_c00001{bottom:636.560000pt;}
.y23c_c00001{bottom:636.733333pt;}
.ya83_c00001{bottom:636.933333pt;}
.ya8e_c00001{bottom:637.133333pt;}
.y10bb_c00001{bottom:637.186667pt;}
.y23d_c00001{bottom:637.306667pt;}
.y430_c00001{bottom:637.506667pt;}
.y23e_c00001{bottom:637.693333pt;}
.y70c_c00001{bottom:637.893333pt;}
.y1099_c00001{bottom:637.946667pt;}
.y237_c00001{bottom:638.066667pt;}
.y236_c00001{bottom:638.266667pt;}
.yb8a_c00001{bottom:638.640000pt;}
.y42f_c00001{bottom:638.840000pt;}
.y23a_c00001{bottom:639.026667pt;}
.y70d_c00001{bottom:639.226667pt;}
.y7a0_c00001{bottom:639.400000pt;}
.y23b_c00001{bottom:639.600000pt;}
.ybae_c00001{bottom:639.773333pt;}
.y83c_c00001{bottom:639.933333pt;}
.y79f_c00001{bottom:639.973333pt;}
.y238_c00001{bottom:640.173333pt;}
.y917_c00001{bottom:640.360000pt;}
.ybaf_c00001{bottom:640.560000pt;}
.ye5d_c00001{bottom:640.733333pt;}
.ye5c_c00001{bottom:640.760000pt;}
.y239_c00001{bottom:640.933333pt;}
.y953_c00001{bottom:641.106667pt;}
.yc67_c00001{bottom:641.306667pt;}
.y7a1_c00001{bottom:641.506667pt;}
.y1a4_c00001{bottom:641.693333pt;}
.yc69_c00001{bottom:641.706667pt;}
.ye5f_c00001{bottom:641.893333pt;}
.y918_c00001{bottom:642.066667pt;}
.ye32_c00001{bottom:642.093333pt;}
.yc68_c00001{bottom:642.266667pt;}
.y5a_c00001{bottom:642.440000pt;}
.y6a7_c00001{bottom:642.640000pt;}
.y1290_c00001{bottom:642.746667pt;}
.yba1_c00001{bottom:642.826667pt;}
.ye5e_c00001{bottom:642.840000pt;}
.y69c_c00001{bottom:643.026667pt;}
.yf05_c00001{bottom:643.040000pt;}
.y8d4_c00001{bottom:643.226667pt;}
.y5c_c00001{bottom:643.400000pt;}
.yd79_c00001{bottom:643.600000pt;}
.y1244_c00001{bottom:643.693333pt;}
.y5e_c00001{bottom:643.773333pt;}
.y1223_c00001{bottom:643.933333pt;}
.y8d5_c00001{bottom:643.973333pt;}
.yd4b_c00001{bottom:644.173333pt;}
.y59_c00001{bottom:644.360000pt;}
.yf34_c00001{bottom:644.373333pt;}
.y16a_c00001{bottom:644.560000pt;}
.y1d0_c00001{bottom:644.733333pt;}
.y537_c00001{bottom:644.933333pt;}
.y1062_c00001{bottom:644.986667pt;}
.y1338_c00001{bottom:645.093333pt;}
.yff_c00001{bottom:645.106667pt;}
.y5b_c00001{bottom:645.306667pt;}
.ye33_c00001{bottom:645.506667pt;}
.y107d_c00001{bottom:645.560000pt;}
.y5d_c00001{bottom:645.693333pt;}
.ycc8_c00001{bottom:645.706667pt;}
.y633_c00001{bottom:645.893333pt;}
.y45f_c00001{bottom:646.066667pt;}
.ya45_c00001{bottom:646.266667pt;}
.y30e_c00001{bottom:646.440000pt;}
.y4c8_c00001{bottom:646.640000pt;}
.y1344_c00001{bottom:646.786667pt;}
.y1326_c00001{bottom:646.920000pt;}
.y45d_c00001{bottom:647.026667pt;}
.yfdc_c00001{bottom:647.120000pt;}
.y30d_c00001{bottom:647.226667pt;}
.yfed_c00001{bottom:647.253333pt;}
.y30b_c00001{bottom:647.400000pt;}
.y1318_c00001{bottom:647.480000pt;}
.y45e_c00001{bottom:647.973333pt;}
.y42e_c00001{bottom:648.173333pt;}
.y30c_c00001{bottom:648.360000pt;}
.y538_c00001{bottom:648.373333pt;}
.y976_c00001{bottom:648.560000pt;}
.y10af_c00001{bottom:648.666667pt;}
.y10c5_c00001{bottom:649.026667pt;}
.y766_c00001{bottom:649.306667pt;}
.y42d_c00001{bottom:649.506667pt;}
.y1071_c00001{bottom:649.560000pt;}
.y42c_c00001{bottom:649.693333pt;}
.y42b_c00001{bottom:649.893333pt;}
.y709_c00001{bottom:650.266667pt;}
.y121a_c00001{bottom:650.426667pt;}
.yf87_c00001{bottom:650.640000pt;}
.y70a_c00001{bottom:650.840000pt;}
.y1261_c00001{bottom:650.933333pt;}
.y235_c00001{bottom:651.026667pt;}
.y70b_c00001{bottom:651.040000pt;}
.y42a_c00001{bottom:651.226667pt;}
.y79e_c00001{bottom:651.400000pt;}
.yf6b_c00001{bottom:651.600000pt;}
.y116c_c00001{bottom:651.680000pt;}
.y5b2_c00001{bottom:651.773333pt;}
.yf6a_c00001{bottom:651.973333pt;}
.y79c_c00001{bottom:652.360000pt;}
.y11d5_c00001{bottom:652.466667pt;}
.y5b3_c00001{bottom:652.560000pt;}
.y5b4_c00001{bottom:652.933333pt;}
.y114c_c00001{bottom:653.053333pt;}
.y1310_c00001{bottom:653.066667pt;}
.yb1a_c00001{bottom:653.106667pt;}
.yc64_c00001{bottom:653.306667pt;}
.y5b1_c00001{bottom:653.693333pt;}
.y11a1_c00001{bottom:653.786667pt;}
.yc66_c00001{bottom:653.893333pt;}
.yb1c_c00001{bottom:654.066667pt;}
.y79d_c00001{bottom:654.266667pt;}
.yc65_c00001{bottom:654.640000pt;}
.yfe2_c00001{bottom:654.746667pt;}
.yb19_c00001{bottom:655.026667pt;}
.y111d_c00001{bottom:655.160000pt;}
.y126d_c00001{bottom:655.186667pt;}
.yf86_c00001{bottom:655.226667pt;}
.ye98_c00001{bottom:655.400000pt;}
.y1010_c00001{bottom:655.560000pt;}
.ydeb_c00001{bottom:655.600000pt;}
.ydad_c00001{bottom:655.800000pt;}
.yb1b_c00001{bottom:655.973333pt;}
.y108d_c00001{bottom:656.053333pt;}
.yd4a_c00001{bottom:656.360000pt;}
.ye99_c00001{bottom:656.560000pt;}
.ybab_c00001{bottom:656.733333pt;}
.ydc6_c00001{bottom:656.760000pt;}
.ycc7_c00001{bottom:656.933333pt;}
.ybac_c00001{bottom:657.106667pt;}
.ye31_c00001{bottom:657.306667pt;}
.yecf_c00001{bottom:657.506667pt;}
.ycc4_c00001{bottom:657.693333pt;}
.ye82_c00001{bottom:657.706667pt;}
.ybad_c00001{bottom:657.893333pt;}
.ye2f_c00001{bottom:658.266667pt;}
.y951_c00001{bottom:658.440000pt;}
.yd0c_c00001{bottom:658.640000pt;}
.ycc6_c00001{bottom:658.840000pt;}
.yfe7_c00001{bottom:658.933333pt;}
.y560_c00001{bottom:659.026667pt;}
.ye30_c00001{bottom:659.040000pt;}
.y1111_c00001{bottom:659.160000pt;}
.y536_c00001{bottom:659.226667pt;}
.y104a_c00001{bottom:659.333333pt;}
.y952_c00001{bottom:659.400000pt;}
.ycc5_c00001{bottom:659.600000pt;}
.y6ec_c00001{bottom:659.773333pt;}
.y8d3_c00001{bottom:659.973333pt;}
.yfc_c00001{bottom:660.160000pt;}
.y429_c00001{bottom:660.173333pt;}
.y632_c00001{bottom:660.360000pt;}
.y1306_c00001{bottom:660.520000pt;}
.y428_c00001{bottom:660.560000pt;}
.y57_c00001{bottom:660.733333pt;}
.y55f_c00001{bottom:660.933333pt;}
.y58_c00001{bottom:661.106667pt;}
.y6ed_c00001{bottom:661.306667pt;}
.y427_c00001{bottom:661.506667pt;}
.y4c7_c00001{bottom:661.693333pt;}
.y535_c00001{bottom:661.706667pt;}
.y1133_c00001{bottom:661.800000pt;}
.y56_c00001{bottom:661.893333pt;}
.y54_c00001{bottom:662.066667pt;}
.y424_c00001{bottom:662.266667pt;}
.y1026_c00001{bottom:662.346667pt;}
.y45c_c00001{bottom:662.440000pt;}
.y426_c00001{bottom:662.466667pt;}
.y53_c00001{bottom:662.640000pt;}
.yc21_c00001{bottom:662.826667pt;}
.y425_c00001{bottom:662.840000pt;}
.y55_c00001{bottom:663.026667pt;}
.yfd_c00001{bottom:663.226667pt;}
.y233_c00001{bottom:663.400000pt;}
.y308_c00001{bottom:663.773333pt;}
.yc5e_c00001{bottom:663.800000pt;}
.y1cf_c00001{bottom:663.973333pt;}
.y707_c00001{bottom:664.173333pt;}
.y1163_c00001{bottom:664.266667pt;}
.yfe_c00001{bottom:664.360000pt;}
.y708_c00001{bottom:664.373333pt;}
.y230_c00001{bottom:664.560000pt;}
.y10a5_c00001{bottom:664.666667pt;}
.y309_c00001{bottom:664.733333pt;}
.y11eb_c00001{bottom:664.853333pt;}
.y79a_c00001{bottom:664.933333pt;}
.y1128_c00001{bottom:665.213333pt;}
.y232_c00001{bottom:665.306667pt;}
.y234_c00001{bottom:665.506667pt;}
.y306_c00001{bottom:665.693333pt;}
.yb8f_c00001{bottom:665.706667pt;}
.y307_c00001{bottom:665.893333pt;}
.yc5f_c00001{bottom:666.066667pt;}
.y231_c00001{bottom:666.266667pt;}
.y10ed_c00001{bottom:666.546667pt;}
.y1056_c00001{bottom:666.586667pt;}
.y30a_c00001{bottom:666.640000pt;}
.y118c_c00001{bottom:666.933333pt;}
.y12cf_c00001{bottom:666.986667pt;}
.ydea_c00001{bottom:667.026667pt;}
.y12c6_c00001{bottom:667.120000pt;}
.yc62_c00001{bottom:667.226667pt;}
.ye5b_c00001{bottom:667.400000pt;}
.y1033_c00001{bottom:667.493333pt;}
.y8b3_c00001{bottom:667.560000pt;}
.y79b_c00001{bottom:667.600000pt;}
.y5ac_c00001{bottom:667.973333pt;}
.y12fb_c00001{bottom:668.080000pt;}
.y11e1_c00001{bottom:668.160000pt;}
.yc61_c00001{bottom:668.173333pt;}
.ye5a_c00001{bottom:668.360000pt;}
.yc63_c00001{bottom:668.373333pt;}
.yf04_c00001{bottom:668.560000pt;}
.ye97_c00001{bottom:668.733333pt;}
.yc60_c00001{bottom:668.933333pt;}
.y5ab_c00001{bottom:669.106667pt;}
.yb18_c00001{bottom:669.306667pt;}
.yd48_c00001{bottom:669.693333pt;}
.ye59_c00001{bottom:669.706667pt;}
.yece_c00001{bottom:669.893333pt;}
.y103e_c00001{bottom:670.000000pt;}
.ycc1_c00001{bottom:670.066667pt;}
.ya0f_c00001{bottom:670.226667pt;}
.yd49_c00001{bottom:670.266667pt;}
.yb16_c00001{bottom:670.440000pt;}
.y84b_c00001{bottom:670.626667pt;}
.y5af_c00001{bottom:670.640000pt;}
.yf16_c00001{bottom:670.840000pt;}
.y5b0_c00001{bottom:671.026667pt;}
.yeee_c00001{bottom:671.040000pt;}
.yfd0_c00001{bottom:671.120000pt;}
.y1256_c00001{bottom:671.186667pt;}
.y5ae_c00001{bottom:671.226667pt;}
.y9c8_c00001{bottom:671.586667pt;}
.ycc3_c00001{bottom:671.600000pt;}
.y533_c00001{bottom:671.800000pt;}
.y5ad_c00001{bottom:671.973333pt;}
.y534_c00001{bottom:672.173333pt;}
.y861_c00001{bottom:672.360000pt;}
.ycc0_c00001{bottom:672.373333pt;}
.y423_c00001{bottom:672.560000pt;}
.y9da_c00001{bottom:672.733333pt;}
.y10f8_c00001{bottom:672.853333pt;}
.ycc2_c00001{bottom:672.933333pt;}
.y857_c00001{bottom:673.133333pt;}
.yb17_c00001{bottom:673.306667pt;}
.y887_c00001{bottom:673.493333pt;}
.y422_c00001{bottom:673.506667pt;}
.ya54_c00001{bottom:673.600000pt;}
.y9d8_c00001{bottom:673.693333pt;}
.y9ea_c00001{bottom:674.066667pt;}
.y41e_c00001{bottom:674.266667pt;}
.ybaa_c00001{bottom:674.440000pt;}
.y420_c00001{bottom:674.466667pt;}
.y8a3_c00001{bottom:674.826667pt;}
.y421_c00001{bottom:674.840000pt;}
.y10e1_c00001{bottom:674.933333pt;}
.y94e_c00001{bottom:675.026667pt;}
.y705_c00001{bottom:675.226667pt;}
.y9bf_c00001{bottom:675.280000pt;}
.y8c7_c00001{bottom:675.400000pt;}
.y1140_c00001{bottom:675.520000pt;}
.y950_c00001{bottom:675.773333pt;}
.yfd6_c00001{bottom:676.080000pt;}
.y41f_c00001{bottom:676.173333pt;}
.y4f_c00001{bottom:676.360000pt;}
.y706_c00001{bottom:676.373333pt;}
.y119d_c00001{bottom:676.453333pt;}
.y9e1_c00001{bottom:676.560000pt;}
.y22f_c00001{bottom:676.733333pt;}
.y8d2_c00001{bottom:677.106667pt;}
.y1f3_c00001{bottom:677.306667pt;}
.y733_c00001{bottom:677.493333pt;}
.y22c_c00001{bottom:677.693333pt;}
.y94f_c00001{bottom:677.893333pt;}
.y798_c00001{bottom:678.066667pt;}
.y797_c00001{bottom:678.266667pt;}
.y1224_c00001{bottom:678.400000pt;}
.y50_c00001{bottom:678.440000pt;}
.y1197_c00001{bottom:678.600000pt;}
.y22b_c00001{bottom:678.640000pt;}
.y22e_c00001{bottom:678.840000pt;}
.y1ce_c00001{bottom:679.026667pt;}
.y52_c00001{bottom:679.226667pt;}
.y12eb_c00001{bottom:679.280000pt;}
.y51_c00001{bottom:679.400000pt;}
.yac3_c00001{bottom:679.560000pt;}
.y22d_c00001{bottom:679.600000pt;}
.y121b_c00001{bottom:679.733333pt;}
.yfb_c00001{bottom:679.773333pt;}
.yf33_c00001{bottom:679.800000pt;}
.y541_c00001{bottom:679.973333pt;}
.y4e_c00001{bottom:680.360000pt;}
.y169_c00001{bottom:680.560000pt;}
.y765_c00001{bottom:680.733333pt;}
.y799_c00001{bottom:680.933333pt;}
.y304_c00001{bottom:681.106667pt;}
.ya60_c00001{bottom:681.293333pt;}
.y4f6_c00001{bottom:681.306667pt;}
.yf9_c00001{bottom:681.693333pt;}
.yfa_c00001{bottom:681.706667pt;}
.y83d_c00001{bottom:681.786667pt;}
.y45b_c00001{bottom:681.893333pt;}
.y300_c00001{bottom:682.066667pt;}
.y9b5_c00001{bottom:682.266667pt;}
.y302_c00001{bottom:682.440000pt;}
.ydc5_c00001{bottom:682.466667pt;}
.y74d_c00001{bottom:682.640000pt;}
.ye58_c00001{bottom:682.840000pt;}
.y301_c00001{bottom:683.026667pt;}
.ya27_c00001{bottom:683.040000pt;}
.y4f7_c00001{bottom:683.226667pt;}
.ydab_c00001{bottom:683.400000pt;}
.ycbf_c00001{bottom:683.600000pt;}
.y305_c00001{bottom:683.973333pt;}
.ya84_c00001{bottom:684.160000pt;}
.yecd_c00001{bottom:684.173333pt;}
.y303_c00001{bottom:684.360000pt;}
.y77c_c00001{bottom:684.373333pt;}
.y41d_c00001{bottom:684.560000pt;}
.ycbe_c00001{bottom:684.933333pt;}
.ya6c_c00001{bottom:685.133333pt;}
.yd0b_c00001{bottom:685.306667pt;}
.ya97_c00001{bottom:685.493333pt;}
.y41c_c00001{bottom:685.506667pt;}
.y532_c00001{bottom:685.693333pt;}
.ydac_c00001{bottom:685.706667pt;}
.y41b_c00001{bottom:685.893333pt;}
.ya79_c00001{bottom:686.266667pt;}
.y5aa_c00001{bottom:686.440000pt;}
.y41a_c00001{bottom:686.840000pt;}
.y4c5_c00001{bottom:687.026667pt;}
.y702_c00001{bottom:687.226667pt;}
.y1339_c00001{bottom:687.280000pt;}
.yaa7_c00001{bottom:687.400000pt;}
.yb12_c00001{bottom:687.773333pt;}
.yd78_c00001{bottom:687.800000pt;}
.y4c4_c00001{bottom:687.973333pt;}
.y703_c00001{bottom:688.173333pt;}
.y4c3_c00001{bottom:688.360000pt;}
.y704_c00001{bottom:688.373333pt;}
.y419_c00001{bottom:688.560000pt;}
.y4c6_c00001{bottom:688.933333pt;}
.y1011_c00001{bottom:689.093333pt;}
.y225_c00001{bottom:689.306667pt;}
.yad2_c00001{bottom:689.493333pt;}
.yb13_c00001{bottom:689.693333pt;}
.yb15_c00001{bottom:689.893333pt;}
.y1311_c00001{bottom:690.026667pt;}
.y229_c00001{bottom:690.066667pt;}
.y22a_c00001{bottom:690.266667pt;}
.y126e_c00001{bottom:690.600000pt;}
.yb14_c00001{bottom:690.640000pt;}
.y226_c00001{bottom:691.026667pt;}
.y223_c00001{bottom:691.226667pt;}
.y793_c00001{bottom:691.400000pt;}
.y791_c00001{bottom:691.600000pt;}
.yba9_c00001{bottom:691.773333pt;}
.y228_c00001{bottom:691.973333pt;}
.y227_c00001{bottom:692.173333pt;}
.y794_c00001{bottom:692.360000pt;}
.yc5c_c00001{bottom:692.560000pt;}
.yde8_c00001{bottom:692.733333pt;}
.y224_c00001{bottom:692.933333pt;}
.y94d_c00001{bottom:693.106667pt;}
.y11e2_c00001{bottom:693.266667pt;}
.y796_c00001{bottom:693.306667pt;}
.y795_c00001{bottom:693.506667pt;}
.y55e_c00001{bottom:693.693333pt;}
.yc5d_c00001{bottom:693.706667pt;}
.yde9_c00001{bottom:693.893333pt;}
.y10d4_c00001{bottom:694.000000pt;}
.yf76_c00001{bottom:694.066667pt;}
.y792_c00001{bottom:694.266667pt;}
.y8d1_c00001{bottom:694.440000pt;}
.y6eb_c00001{bottom:694.640000pt;}
.ye2e_c00001{bottom:694.840000pt;}
.y1a3_c00001{bottom:695.026667pt;}
.y94c_c00001{bottom:695.226667pt;}
.y1f2_c00001{bottom:695.400000pt;}
.ydaa_c00001{bottom:695.426667pt;}
.ycbd_c00001{bottom:695.600000pt;}
.y4d_c00001{bottom:695.773333pt;}
.y1cd_c00001{bottom:695.973333pt;}
.y69b_c00001{bottom:696.160000pt;}
.ye57_c00001{bottom:696.173333pt;}
.y1291_c00001{bottom:696.266667pt;}
.y8d0_c00001{bottom:696.360000pt;}
.ye56_c00001{bottom:696.373333pt;}
.y4b_c00001{bottom:696.560000pt;}
.y1cc_c00001{bottom:696.733333pt;}
.y69a_c00001{bottom:696.933333pt;}
.yf6_c00001{bottom:697.106667pt;}
.y540_c00001{bottom:697.306667pt;}
.y45a_c00001{bottom:697.493333pt;}
.y418_c00001{bottom:697.506667pt;}
.y4c_c00001{bottom:697.693333pt;}
.y1a2_c00001{bottom:697.706667pt;}
.y101b_c00001{bottom:697.800000pt;}
.y1345_c00001{bottom:697.866667pt;}
.yf7_c00001{bottom:697.893333pt;}
.y9af_c00001{bottom:698.066667pt;}
.y10b0_c00001{bottom:698.146667pt;}
.y700_c00001{bottom:698.266667pt;}
.y2fc_c00001{bottom:698.440000pt;}
.y4a_c00001{bottom:698.640000pt;}
.y417_c00001{bottom:698.840000pt;}
.yf5_c00001{bottom:699.026667pt;}
.yead_c00001{bottom:699.040000pt;}
.y1262_c00001{bottom:699.186667pt;}
.y416_c00001{bottom:699.226667pt;}
.y4c1_c00001{bottom:699.400000pt;}
.y4c2_c00001{bottom:699.600000pt;}
.y2ff_c00001{bottom:699.773333pt;}
.yf8_c00001{bottom:699.973333pt;}
.y114d_c00001{bottom:700.093333pt;}
.y415_c00001{bottom:700.173333pt;}
.y2fa_c00001{bottom:700.360000pt;}
.y701_c00001{bottom:700.373333pt;}
.y2fd_c00001{bottom:700.560000pt;}
.y4be_c00001{bottom:700.933333pt;}
.y820_c00001{bottom:701.106667pt;}
.y2fb_c00001{bottom:701.306667pt;}
.y4c0_c00001{bottom:701.506667pt;}
.y1112_c00001{bottom:701.600000pt;}
.y2fe_c00001{bottom:701.693333pt;}
.y9b4_c00001{bottom:701.706667pt;}
.y4bf_c00001{bottom:702.266667pt;}
.yfa0_c00001{bottom:702.640000pt;}
.y1319_c00001{bottom:702.840000pt;}
.y5a7_c00001{bottom:703.026667pt;}
.y821_c00001{bottom:703.226667pt;}
.yfbd_c00001{bottom:703.600000pt;}
.y1327_c00001{bottom:703.733333pt;}
.y5a5_c00001{bottom:703.773333pt;}
.y81f_c00001{bottom:703.973333pt;}
.y111e_c00001{bottom:704.226667pt;}
.y10c6_c00001{bottom:704.266667pt;}
.y109a_c00001{bottom:704.293333pt;}
.yfbc_c00001{bottom:704.360000pt;}
.y10bc_c00001{bottom:704.453333pt;}
.y5a3_c00001{bottom:704.733333pt;}
.y1134_c00001{bottom:704.893333pt;}
.y78f_c00001{bottom:704.933333pt;}
.y5a6_c00001{bottom:705.106667pt;}
.ye55_c00001{bottom:705.133333pt;}
.yb0f_c00001{bottom:705.306667pt;}
.y5a8_c00001{bottom:705.693333pt;}
.y104b_c00001{bottom:705.800000pt;}
.y5a4_c00001{bottom:705.893333pt;}
.yde6_c00001{bottom:706.066667pt;}
.yf02_c00001{bottom:706.266667pt;}
.yb0d_c00001{bottom:706.440000pt;}
.y5a9_c00001{bottom:706.640000pt;}
.yf4e_c00001{bottom:706.840000pt;}
.yb0c_c00001{bottom:707.026667pt;}
.yb11_c00001{bottom:707.226667pt;}
.yf32_c00001{bottom:707.400000pt;}
.y790_c00001{bottom:707.600000pt;}
.yb10_c00001{bottom:707.973333pt;}
.yde7_c00001{bottom:708.173333pt;}
.yb0e_c00001{bottom:708.360000pt;}
.yf03_c00001{bottom:708.373333pt;}
.y10a6_c00001{bottom:708.466667pt;}
.y531_c00001{bottom:708.560000pt;}
.ycbc_c00001{bottom:708.733333pt;}
.yd75_c00001{bottom:708.760000pt;}
.y1164_c00001{bottom:708.920000pt;}
.ycba_c00001{bottom:708.933333pt;}
.yd47_c00001{bottom:709.306667pt;}
.y52f_c00001{bottom:709.506667pt;}
.ycb8_c00001{bottom:709.693333pt;}
.ye54_c00001{bottom:709.706667pt;}
.y414_c00001{bottom:709.893333pt;}
.yd77_c00001{bottom:710.066667pt;}
.yda9_c00001{bottom:710.266667pt;}
.y530_c00001{bottom:710.466667pt;}
.ycbb_c00001{bottom:710.640000pt;}
.y1057_c00001{bottom:710.760000pt;}
.y413_c00001{bottom:710.840000pt;}
.y55d_c00001{bottom:711.026667pt;}
.ye81_c00001{bottom:711.226667pt;}
.y8cf_c00001{bottom:711.400000pt;}
.ycb9_c00001{bottom:711.600000pt;}
.y916_c00001{bottom:711.773333pt;}
.y825_c00001{bottom:711.973333pt;}
.y412_c00001{bottom:712.173333pt;}
.y49_c00001{bottom:712.360000pt;}
.yd76_c00001{bottom:712.373333pt;}
.y411_c00001{bottom:712.560000pt;}
.y4bc_c00001{bottom:712.733333pt;}
.y1063_c00001{bottom:712.853333pt;}
.yd0a_c00001{bottom:712.933333pt;}
.y45_c00001{bottom:713.106667pt;}
.yf2_c00001{bottom:713.306667pt;}
.y1293_c00001{bottom:713.600000pt;}
.y4bd_c00001{bottom:713.693333pt;}
.y44_c00001{bottom:713.893333pt;}
.y167_c00001{bottom:714.066667pt;}
.y4bb_c00001{bottom:714.266667pt;}
.y1072_c00001{bottom:714.386667pt;}
.y168_c00001{bottom:714.440000pt;}
.y46_c00001{bottom:714.640000pt;}
.y4ba_c00001{bottom:714.840000pt;}
.y48_c00001{bottom:715.026667pt;}
.yf4_c00001{bottom:715.226667pt;}
.y6a6_c00001{bottom:715.400000pt;}
.y4b9_c00001{bottom:715.600000pt;}
.y2f4_c00001{bottom:715.773333pt;}
.y47_c00001{bottom:715.973333pt;}
.y4b8_c00001{bottom:716.173333pt;}
.y103f_c00001{bottom:716.266667pt;}
.yf3_c00001{bottom:716.360000pt;}
.y459_c00001{bottom:716.560000pt;}
.y2f5_c00001{bottom:716.733333pt;}
.y131a_c00001{bottom:717.093333pt;}
.y2f7_c00001{bottom:717.106667pt;}
.y458_c00001{bottom:717.306667pt;}
.y2f3_c00001{bottom:717.693333pt;}
.y6ff_c00001{bottom:717.706667pt;}
.y2f8_c00001{bottom:717.893333pt;}
.y108e_c00001{bottom:718.000000pt;}
.y78c_c00001{bottom:718.066667pt;}
.y8b4_c00001{bottom:718.226667pt;}
.yf57_c00001{bottom:718.266667pt;}
.y1239_c00001{bottom:718.440000pt;}
.yf30_c00001{bottom:718.466667pt;}
.y2f9_c00001{bottom:718.640000pt;}
.y78b_c00001{bottom:718.840000pt;}
.y2f6_c00001{bottom:719.026667pt;}
.y77b_c00001{bottom:719.040000pt;}
.y81c_c00001{bottom:719.226667pt;}
.yf75_c00001{bottom:719.400000pt;}
.y9c9_c00001{bottom:719.586667pt;}
.y78e_c00001{bottom:719.600000pt;}
.yd45_c00001{bottom:719.800000pt;}
.y84c_c00001{bottom:719.960000pt;}
.y81d_c00001{bottom:719.973333pt;}
.ya55_c00001{bottom:720.133333pt;}
.y1346_c00001{bottom:720.333333pt;}
.y81b_c00001{bottom:720.360000pt;}
.yc5b_c00001{bottom:720.373333pt;}
.y52e_c00001{bottom:720.560000pt;}
.yf60_c00001{bottom:720.733333pt;}
.yf49_c00001{bottom:720.760000pt;}
.y1027_c00001{bottom:720.866667pt;}
.y78d_c00001{bottom:720.933333pt;}
.y5a2_c00001{bottom:721.106667pt;}
.y52c_c00001{bottom:721.133333pt;}
.y81e_c00001{bottom:721.306667pt;}
.y888_c00001{bottom:721.493333pt;}
.y52d_c00001{bottom:721.506667pt;}
.yd46_c00001{bottom:721.693333pt;}
.y1225_c00001{bottom:721.786667pt;}
.y52b_c00001{bottom:721.893333pt;}
.y862_c00001{bottom:722.066667pt;}
.y10f9_c00001{bottom:722.186667pt;}
.yd09_c00001{bottom:722.266667pt;}
.y5a0_c00001{bottom:722.440000pt;}
.y858_c00001{bottom:722.466667pt;}
.ye2d_c00001{bottom:722.640000pt;}
.y1141_c00001{bottom:722.786667pt;}
.y890_c00001{bottom:722.826667pt;}
.y410_c00001{bottom:722.840000pt;}
.y5a1_c00001{bottom:723.026667pt;}
.yf31_c00001{bottom:723.040000pt;}
.y40e_c00001{bottom:723.226667pt;}
.y9db_c00001{bottom:723.400000pt;}
.y1105_c00001{bottom:723.533333pt;}
.y86d_c00001{bottom:723.600000pt;}
.yb09_c00001{bottom:723.773333pt;}
.y9cf_c00001{bottom:723.800000pt;}
.yd08_c00001{bottom:723.973333pt;}
.y89b_c00001{bottom:724.160000pt;}
.y40f_c00001{bottom:724.173333pt;}
.yb0b_c00001{bottom:724.360000pt;}
.ye96_c00001{bottom:724.373333pt;}
.y1155_c00001{bottom:724.466667pt;}
.y40d_c00001{bottom:724.560000pt;}
.y1034_c00001{bottom:724.666667pt;}
.y9e2_c00001{bottom:724.933333pt;}
.yb0a_c00001{bottom:725.306667pt;}
.y9f7_c00001{bottom:725.493333pt;}
.ybdc_c00001{bottom:725.506667pt;}
.yb08_c00001{bottom:725.693333pt;}
.ye80_c00001{bottom:725.706667pt;}
.y9e6_c00001{bottom:725.893333pt;}
.y10e2_c00001{bottom:726.000000pt;}
.y89f_c00001{bottom:726.066667pt;}
.yac4_c00001{bottom:726.253333pt;}
.yee4_c00001{bottom:726.266667pt;}
.ybdd_c00001{bottom:726.840000pt;}
.y4b7_c00001{bottom:727.026667pt;}
.y10ee_c00001{bottom:727.120000pt;}
.y10d5_c00001{bottom:727.160000pt;}
.y9fa_c00001{bottom:727.400000pt;}
.y915_c00001{bottom:728.360000pt;}
.y4b6_c00001{bottom:728.933333pt;}
.y42_c00001{bottom:729.106667pt;}
.y732_c00001{bottom:729.493333pt;}
.y166_c00001{bottom:729.693333pt;}
.y1f1_c00001{bottom:730.066667pt;}
.y3e_c00001{bottom:730.440000pt;}
.ya61_c00001{bottom:730.626667pt;}
.y1a1_c00001{bottom:730.640000pt;}
.yf0_c00001{bottom:731.026667pt;}
.y40_c00001{bottom:731.226667pt;}
.y164_c00001{bottom:731.400000pt;}
.y1165_c00001{bottom:731.586667pt;}
.yf69_c00001{bottom:731.600000pt;}
.yef_c00001{bottom:731.773333pt;}
.y41_c00001{bottom:731.973333pt;}
.y74c_c00001{bottom:732.160000pt;}
.y6fe_c00001{bottom:732.173333pt;}
.y3f_c00001{bottom:732.360000pt;}
.y1f0_c00001{bottom:732.373333pt;}
.y12fc_c00001{bottom:732.533333pt;}
.y43_c00001{bottom:732.560000pt;}
.y165_c00001{bottom:732.733333pt;}
.ye53_c00001{bottom:732.760000pt;}
.y631_c00001{bottom:732.933333pt;}
.y457_c00001{bottom:733.106667pt;}
.yf1_c00001{bottom:733.306667pt;}
.ya89_c00001{bottom:733.493333pt;}
.y789_c00001{bottom:733.506667pt;}
.yee_c00001{bottom:733.693333pt;}
.y40c_c00001{bottom:733.893333pt;}
.y2f2_c00001{bottom:734.066667pt;}
.y1198_c00001{bottom:734.146667pt;}
.y78a_c00001{bottom:734.266667pt;}
.y2ef_c00001{bottom:734.440000pt;}
.ya6d_c00001{bottom:734.466667pt;}
.y699_c00001{bottom:734.640000pt;}
.ya98_c00001{bottom:734.826667pt;}
.y40b_c00001{bottom:734.840000pt;}
.y2ec_c00001{bottom:735.026667pt;}
.ya26_c00001{bottom:735.040000pt;}
.y2f1_c00001{bottom:735.226667pt;}
.yc11_c00001{bottom:735.400000pt;}
.y407_c00001{bottom:735.600000pt;}
.y819_c00001{bottom:735.773333pt;}
.y409_c00001{bottom:735.800000pt;}
.y2ee_c00001{bottom:735.973333pt;}
.y83e_c00001{bottom:736.133333pt;}
.y40a_c00001{bottom:736.173333pt;}
.y2ed_c00001{bottom:736.360000pt;}
.yf2f_c00001{bottom:736.373333pt;}
.y2f0_c00001{bottom:736.560000pt;}
.y779_c00001{bottom:736.733333pt;}
.y81a_c00001{bottom:736.933333pt;}
.ycb7_c00001{bottom:737.306667pt;}
.y9c0_c00001{bottom:737.466667pt;}
.y408_c00001{bottom:737.506667pt;}
.y59d_c00001{bottom:737.693333pt;}
.yd74_c00001{bottom:737.706667pt;}
.y77a_c00001{bottom:737.893333pt;}
.ycb6_c00001{bottom:738.266667pt;}
.y59f_c00001{bottom:738.440000pt;}
.y778_c00001{bottom:738.640000pt;}
.ybdb_c00001{bottom:738.840000pt;}
.y1263_c00001{bottom:739.120000pt;}
.y4b5_c00001{bottom:739.400000pt;}
.y777_c00001{bottom:739.600000pt;}
.y59b_c00001{bottom:739.773333pt;}
.y1328_c00001{bottom:740.333333pt;}
.y4b4_c00001{bottom:740.360000pt;}
.y4b2_c00001{bottom:740.560000pt;}
.yb05_c00001{bottom:741.106667pt;}
.y59c_c00001{bottom:741.306667pt;}
.y59e_c00001{bottom:741.693333pt;}
.yb07_c00001{bottom:741.893333pt;}
.y4b3_c00001{bottom:742.266667pt;}
.y10d7_c00001{bottom:742.360000pt;}
.yf98_c00001{bottom:742.640000pt;}
.yb04_c00001{bottom:743.026667pt;}
.y12ec_c00001{bottom:743.160000pt;}
.yfb6_c00001{bottom:743.400000pt;}
.yfb7_c00001{bottom:743.600000pt;}
.yb06_c00001{bottom:743.973333pt;}
.y1129_c00001{bottom:744.173333pt;}
.y784_c00001{bottom:744.360000pt;}
.yac5_c00001{bottom:744.560000pt;}
.yf4d_c00001{bottom:744.733333pt;}
.y786_c00001{bottom:744.933333pt;}
.y788_c00001{bottom:745.306667pt;}
.y783_c00001{bottom:745.506667pt;}
.yde5_c00001{bottom:745.693333pt;}
.y406_c00001{bottom:745.893333pt;}
.yb78_c00001{bottom:746.066667pt;}
.y787_c00001{bottom:746.266667pt;}
.y94b_c00001{bottom:746.440000pt;}
.y785_c00001{bottom:746.640000pt;}
.y405_c00001{bottom:746.840000pt;}
.yeb_c00001{bottom:747.026667pt;}
.y131b_c00001{bottom:747.186667pt;}
.y1a0_c00001{bottom:747.226667pt;}
.y3d_c00001{bottom:747.400000pt;}
.ye2b_c00001{bottom:747.426667pt;}
.yb77_c00001{bottom:747.600000pt;}
.y114e_c00001{bottom:747.720000pt;}
.y19e_c00001{bottom:747.773333pt;}
.y6ea_c00001{bottom:747.973333pt;}
.y404_c00001{bottom:748.173333pt;}
.y19d_c00001{bottom:748.360000pt;}
.y403_c00001{bottom:748.560000pt;}
.y162_c00001{bottom:748.733333pt;}
.ydc4_c00001{bottom:748.760000pt;}
.yb79_c00001{bottom:748.933333pt;}
.yec_c00001{bottom:749.106667pt;}
.y3a_c00001{bottom:749.306667pt;}
.yecc_c00001{bottom:749.506667pt;}
.y39_c00001{bottom:749.693333pt;}
.ye2c_c00001{bottom:749.706667pt;}
.y1292_c00001{bottom:749.800000pt;}
.y163_c00001{bottom:749.893333pt;}
.y698_c00001{bottom:750.066667pt;}
.y19f_c00001{bottom:750.266667pt;}
.y456_c00001{bottom:750.440000pt;}
.y3b_c00001{bottom:750.640000pt;}
.ybda_c00001{bottom:750.840000pt;}
.y3c_c00001{bottom:751.026667pt;}
.y1ca_c00001{bottom:751.040000pt;}
.yed_c00001{bottom:751.226667pt;}
.y454_c00001{bottom:751.400000pt;}
.yd07_c00001{bottom:751.600000pt;}
.y2ea_c00001{bottom:751.773333pt;}
.y1cb_c00001{bottom:751.973333pt;}
.y112e_c00001{bottom:752.160000pt;}
.y455_c00001{bottom:752.360000pt;}
.y2eb_c00001{bottom:752.560000pt;}
.y2e9_c00001{bottom:752.733333pt;}
.yeb8_c00001{bottom:752.933333pt;}
.y101c_c00001{bottom:753.186667pt;}
.y2e7_c00001{bottom:753.306667pt;}
.y133a_c00001{bottom:753.453333pt;}
.y1113_c00001{bottom:753.600000pt;}
.y2e8_c00001{bottom:753.693333pt;}
.y975_c00001{bottom:753.706667pt;}
.y123a_c00001{bottom:753.746667pt;}
.y4b0_c00001{bottom:753.893333pt;}
.y770_c00001{bottom:754.066667pt;}
.y817_c00001{bottom:754.440000pt;}
.y4af_c00001{bottom:754.640000pt;}
.yc2a_c00001{bottom:754.840000pt;}
.y772_c00001{bottom:755.026667pt;}
.y771_c00001{bottom:755.226667pt;}
.y774_c00001{bottom:755.400000pt;}
.y4b1_c00001{bottom:755.600000pt;}
.ya56_c00001{bottom:755.693333pt;}
.yc57_c00001{bottom:755.800000pt;}
.yf97_c00001{bottom:755.973333pt;}
.y59a_c00001{bottom:756.160000pt;}
.y818_c00001{bottom:756.360000pt;}
.y10a7_c00001{bottom:756.466667pt;}
.y773_c00001{bottom:756.560000pt;}
.yfb5_c00001{bottom:756.733333pt;}
.y12d0_c00001{bottom:756.866667pt;}
.y775_c00001{bottom:756.933333pt;}
.y597_c00001{bottom:757.106667pt;}
.y776_c00001{bottom:757.306667pt;}
.y1142_c00001{bottom:757.493333pt;}
.y6fd_c00001{bottom:757.506667pt;}
.yc58_c00001{bottom:757.693333pt;}
.y402_c00001{bottom:757.893333pt;}
.y599_c00001{bottom:758.066667pt;}
.y1058_c00001{bottom:758.200000pt;}
.y12fd_c00001{bottom:758.226667pt;}
.yfa7_c00001{bottom:758.266667pt;}
.yb01_c00001{bottom:758.440000pt;}
.yc5a_c00001{bottom:758.640000pt;}
.y1106_c00001{bottom:758.826667pt;}
.y401_c00001{bottom:758.840000pt;}
.y10c7_c00001{bottom:758.933333pt;}
.y598_c00001{bottom:759.026667pt;}
.yb00_c00001{bottom:759.226667pt;}
.yb03_c00001{bottom:759.400000pt;}
.yc59_c00001{bottom:759.600000pt;}
.yb02_c00001{bottom:759.973333pt;}
.y3ff_c00001{bottom:760.173333pt;}
.yaff_c00001{bottom:760.360000pt;}
.y400_c00001{bottom:760.373333pt;}
.y3fd_c00001{bottom:760.560000pt;}
.yeed_c00001{bottom:760.733333pt;}
.yd41_c00001{bottom:760.760000pt;}
.yb74_c00001{bottom:760.933333pt;}
.y1073_c00001{bottom:761.053333pt;}
.yb75_c00001{bottom:761.306667pt;}
.y3fe_c00001{bottom:761.506667pt;}
.yd42_c00001{bottom:761.693333pt;}
.ye52_c00001{bottom:761.706667pt;}
.y3fc_c00001{bottom:761.893333pt;}
.yd73_c00001{bottom:762.066667pt;}
.ycb4_c00001{bottom:762.093333pt;}
.yb76_c00001{bottom:762.266667pt;}
.yd44_c00001{bottom:762.640000pt;}
.y10d6_c00001{bottom:762.826667pt;}
.ybd9_c00001{bottom:762.840000pt;}
.y913_c00001{bottom:763.026667pt;}
.ye2a_c00001{bottom:763.040000pt;}
.yd06_c00001{bottom:763.226667pt;}
.y108f_c00001{bottom:763.333333pt;}
.y94a_c00001{bottom:763.400000pt;}
.yd43_c00001{bottom:763.600000pt;}
.y948_c00001{bottom:763.773333pt;}
.ycb5_c00001{bottom:763.973333pt;}
.y10bd_c00001{bottom:764.080000pt;}
.yd72_c00001{bottom:764.173333pt;}
.y19c_c00001{bottom:764.360000pt;}
.ydc3_c00001{bottom:764.373333pt;}
.y11ec_c00001{bottom:764.520000pt;}
.y1064_c00001{bottom:764.853333pt;}
.yc29_c00001{bottom:764.933333pt;}
.y19a_c00001{bottom:765.106667pt;}
.y648_c00001{bottom:765.306667pt;}
.y10fa_c00001{bottom:765.493333pt;}
.y19b_c00001{bottom:765.693333pt;}
.y914_c00001{bottom:765.893333pt;}
.y1294_c00001{bottom:766.000000pt;}
.y38_c00001{bottom:766.066667pt;}
.y8b5_c00001{bottom:766.226667pt;}
.y1ef_c00001{bottom:766.266667pt;}
.yea_c00001{bottom:766.440000pt;}
.y62f_c00001{bottom:766.640000pt;}
.y112a_c00001{bottom:766.933333pt;}
.y10e3_c00001{bottom:766.986667pt;}
.y37_c00001{bottom:767.026667pt;}
.y949_c00001{bottom:767.040000pt;}
.y35_c00001{bottom:767.226667pt;}
.ye9_c00001{bottom:767.400000pt;}
.y10b1_c00001{bottom:767.480000pt;}
.y76e_c00001{bottom:767.600000pt;}
.y453_c00001{bottom:767.773333pt;}
.y1028_c00001{bottom:767.880000pt;}
.y36_c00001{bottom:767.973333pt;}
.y1040_c00001{bottom:768.266667pt;}
.ye6_c00001{bottom:768.360000pt;}
.ye7_c00001{bottom:768.373333pt;}
.y1035_c00001{bottom:768.493333pt;}
.y630_c00001{bottom:768.560000pt;}
.y451_c00001{bottom:768.733333pt;}
.ya10_c00001{bottom:768.893333pt;}
.y84d_c00001{bottom:768.920000pt;}
.yc1b_c00001{bottom:768.933333pt;}
.y111f_c00001{bottom:769.053333pt;}
.y2e3_c00001{bottom:769.106667pt;}
.y9ca_c00001{bottom:769.293333pt;}
.ye8_c00001{bottom:769.306667pt;}
.y450_c00001{bottom:769.693333pt;}
.ya25_c00001{bottom:769.706667pt;}
.y3fb_c00001{bottom:769.893333pt;}
.y550_c00001{bottom:770.066667pt;}
.y76f_c00001{bottom:770.266667pt;}
.yde4_c00001{bottom:770.466667pt;}
.y452_c00001{bottom:770.640000pt;}
.y8c3_c00001{bottom:770.826667pt;}
.y52a_c00001{bottom:770.840000pt;}
.y2e5_c00001{bottom:771.026667pt;}
.y2e6_c00001{bottom:771.226667pt;}
.ye51_c00001{bottom:771.426667pt;}
.yf4c_c00001{bottom:771.600000pt;}
.y816_c00001{bottom:771.773333pt;}
.y859_c00001{bottom:771.800000pt;}
.y2e4_c00001{bottom:771.973333pt;}
.y889_c00001{bottom:772.160000pt;}
.y3fa_c00001{bottom:772.173333pt;}
.yb73_c00001{bottom:772.360000pt;}
.y3f8_c00001{bottom:772.560000pt;}
.y9d9_c00001{bottom:772.733333pt;}
.yf2e_c00001{bottom:772.760000pt;}
.y86e_c00001{bottom:772.933333pt;}
.y83f_c00001{bottom:773.026667pt;}
.y87d_c00001{bottom:773.133333pt;}
.y596_c00001{bottom:773.306667pt;}
.y89c_c00001{bottom:773.493333pt;}
.y3f9_c00001{bottom:773.506667pt;}
.y595_c00001{bottom:773.693333pt;}
.y3f7_c00001{bottom:773.893333pt;}
.y109b_c00001{bottom:774.026667pt;}
.y8be_c00001{bottom:774.066667pt;}
.y874_c00001{bottom:774.266667pt;}
.y1156_c00001{bottom:774.386667pt;}
.y594_c00001{bottom:774.440000pt;}
.yd71_c00001{bottom:774.640000pt;}
.ybd5_c00001{bottom:774.840000pt;}
.y9c1_c00001{bottom:774.933333pt;}
.ycb2_c00001{bottom:775.026667pt;}
.ybd6_c00001{bottom:775.040000pt;}
.ybd7_c00001{bottom:775.226667pt;}
.y112f_c00001{bottom:775.360000pt;}
.y593_c00001{bottom:775.400000pt;}
.yac6_c00001{bottom:775.560000pt;}
.y9e3_c00001{bottom:775.600000pt;}
.yafe_c00001{bottom:775.773333pt;}
.yd40_c00001{bottom:775.973333pt;}
.y1226_c00001{bottom:776.120000pt;}
.ybd8_c00001{bottom:776.173333pt;}
.ya1b_c00001{bottom:776.360000pt;}
.ye95_c00001{bottom:776.373333pt;}
.yafb_c00001{bottom:776.560000pt;}
.ya16_c00001{bottom:776.733333pt;}
.yd96_c00001{bottom:776.933333pt;}
.ya62_c00001{bottom:777.293333pt;}
.yafd_c00001{bottom:777.306667pt;}
.yd05_c00001{bottom:777.506667pt;}
.yafa_c00001{bottom:777.693333pt;}
.ycb3_c00001{bottom:777.706667pt;}
.yafc_c00001{bottom:777.893333pt;}
.yd04_c00001{bottom:778.266667pt;}
.y1166_c00001{bottom:778.933333pt;}
.y4ac_c00001{bottom:779.026667pt;}
.y12ed_c00001{bottom:779.200000pt;}
.y6fb_c00001{bottom:779.400000pt;}
.y4ad_c00001{bottom:779.973333pt;}
.ya85_c00001{bottom:780.160000pt;}
.y4ae_c00001{bottom:780.560000pt;}
.y4ab_c00001{bottom:780.933333pt;}
.ya6e_c00001{bottom:781.133333pt;}
.y6fa_c00001{bottom:781.306667pt;}
.ya99_c00001{bottom:781.493333pt;}
.y1ee_c00001{bottom:781.693333pt;}
.y529_c00001{bottom:781.893333pt;}
.y198_c00001{bottom:782.066667pt;}
.y6fc_c00001{bottom:782.266667pt;}
.y2f_c00001{bottom:782.440000pt;}
.y199_c00001{bottom:782.640000pt;}
.y104d_c00001{bottom:782.733333pt;}
.y1143_c00001{bottom:782.786667pt;}
.y222_c00001{bottom:782.826667pt;}
.y3f6_c00001{bottom:782.840000pt;}
.y912_c00001{bottom:783.026667pt;}
.y3f5_c00001{bottom:783.226667pt;}
.y33_c00001{bottom:783.400000pt;}
.yf56_c00001{bottom:783.600000pt;}
.y34_c00001{bottom:783.773333pt;}
.y8ce_c00001{bottom:783.973333pt;}
.y74b_c00001{bottom:784.160000pt;}
.y3f4_c00001{bottom:784.173333pt;}
.y30_c00001{bottom:784.360000pt;}
.y104c_c00001{bottom:784.493333pt;}
.y2e_c00001{bottom:784.560000pt;}
.y31_c00001{bottom:784.733333pt;}
.yf68_c00001{bottom:784.933333pt;}
.y107e_c00001{bottom:785.026667pt;}
.y44d_c00001{bottom:785.106667pt;}
.y197_c00001{bottom:785.306667pt;}
.y1329_c00001{bottom:785.453333pt;}
.y984_c00001{bottom:785.493333pt;}
.y3f2_c00001{bottom:785.506667pt;}
.y32_c00001{bottom:785.693333pt;}
.y3f3_c00001{bottom:785.706667pt;}
.ye4_c00001{bottom:785.893333pt;}
.y1107_c00001{bottom:786.000000pt;}
.y44e_c00001{bottom:786.066667pt;}
.yc56_c00001{bottom:786.266667pt;}
.y10ef_c00001{bottom:786.360000pt;}
.y2de_c00001{bottom:786.440000pt;}
.yd95_c00001{bottom:786.466667pt;}
.y1c9_c00001{bottom:786.640000pt;}
.y3f1_c00001{bottom:786.840000pt;}
.y74a_c00001{bottom:787.026667pt;}
.ye5_c00001{bottom:787.040000pt;}
.y44f_c00001{bottom:787.226667pt;}
.y2e1_c00001{bottom:787.400000pt;}
.yd3f_c00001{bottom:787.426667pt;}
.yb72_c00001{bottom:787.600000pt;}
.y2df_c00001{bottom:787.973333pt;}
.ybd4_c00001{bottom:788.173333pt;}
.y2e0_c00001{bottom:788.360000pt;}
.yb8e_c00001{bottom:788.373333pt;}
.y2e2_c00001{bottom:788.560000pt;}
.y812_c00001{bottom:788.733333pt;}
.ydc2_c00001{bottom:788.933333pt;}
.y76d_c00001{bottom:789.106667pt;}
.y974_c00001{bottom:789.306667pt;}
.yd03_c00001{bottom:789.506667pt;}
.ya23_c00001{bottom:789.693333pt;}
.yd3e_c00001{bottom:789.706667pt;}
.y1312_c00001{bottom:789.853333pt;}
.y815_c00001{bottom:789.893333pt;}
.y814_c00001{bottom:790.066667pt;}
.ycb1_c00001{bottom:790.266667pt;}
.yf2d_c00001{bottom:790.466667pt;}
.y76c_c00001{bottom:790.640000pt;}
.yee3_c00001{bottom:790.840000pt;}
.y813_c00001{bottom:791.026667pt;}
.yf48_c00001{bottom:791.040000pt;}
.y4aa_c00001{bottom:791.400000pt;}
.ya24_c00001{bottom:791.600000pt;}
.y592_c00001{bottom:791.773333pt;}
.y76b_c00001{bottom:791.973333pt;}
.y4a7_c00001{bottom:792.360000pt;}
.y4a6_c00001{bottom:792.733333pt;}
.y4a2_c00001{bottom:792.933333pt;}
.yaf9_c00001{bottom:793.106667pt;}
.y4a9_c00001{bottom:793.306667pt;}
.y4a8_c00001{bottom:793.506667pt;}
.y4a4_c00001{bottom:793.693333pt;}
.y528_c00001{bottom:793.893333pt;}
.y4a5_c00001{bottom:794.266667pt;}
.y10fb_c00001{bottom:794.360000pt;}
.y4a3_c00001{bottom:794.640000pt;}
.y527_c00001{bottom:794.840000pt;}
.y114f_c00001{bottom:794.933333pt;}
.yaf8_c00001{bottom:795.026667pt;}
.y3ef_c00001{bottom:795.226667pt;}
.yfb4_c00001{bottom:795.400000pt;}
.y6f9_c00001{bottom:795.600000pt;}
.yaf7_c00001{bottom:795.973333pt;}
.y3ec_c00001{bottom:796.173333pt;}
.yf96_c00001{bottom:796.360000pt;}
.y3f0_c00001{bottom:796.373333pt;}
.y1059_c00001{bottom:796.520000pt;}
.yf4b_c00001{bottom:796.733333pt;}
.y10d8_c00001{bottom:796.853333pt;}
.yf9f_c00001{bottom:797.306667pt;}
.y3ed_c00001{bottom:797.506667pt;}
.yc54_c00001{bottom:797.693333pt;}
.y3ee_c00001{bottom:797.706667pt;}
.y3eb_c00001{bottom:797.893333pt;}
.yf01_c00001{bottom:798.066667pt;}
.yde3_c00001{bottom:798.266667pt;}
.yc53_c00001{bottom:798.640000pt;}
.y2d_c00001{bottom:799.026667pt;}
.ybd3_c00001{bottom:799.226667pt;}
.yf2c_c00001{bottom:799.400000pt;}
.ye29_c00001{bottom:799.426667pt;}
.yc55_c00001{bottom:799.600000pt;}
.y8cd_c00001{bottom:799.773333pt;}
.yda8_c00001{bottom:799.800000pt;}
.y196_c00001{bottom:799.973333pt;}
.yb71_c00001{bottom:800.173333pt;}
.y193_c00001{bottom:800.360000pt;}
.ye50_c00001{bottom:800.560000pt;}
.y53f_c00001{bottom:800.733333pt;}
.ydc1_c00001{bottom:800.760000pt;}
.y946_c00001{bottom:800.933333pt;}
.y29_c00001{bottom:801.106667pt;}
.y195_c00001{bottom:801.306667pt;}
.y8cc_c00001{bottom:801.693333pt;}
.y911_c00001{bottom:801.706667pt;}
.y2b_c00001{bottom:801.893333pt;}
.y2c_c00001{bottom:802.066667pt;}
.y194_c00001{bottom:802.266667pt;}
.y12ee_c00001{bottom:802.426667pt;}
.ye3_c00001{bottom:802.440000pt;}
.y10a8_c00001{bottom:802.600000pt;}
.y161_c00001{bottom:802.640000pt;}
.y749_c00001{bottom:802.826667pt;}
.y947_c00001{bottom:802.840000pt;}
.y2a_c00001{bottom:803.026667pt;}
.y6ba_c00001{bottom:803.040000pt;}
.y160_c00001{bottom:803.226667pt;}
.y62e_c00001{bottom:803.400000pt;}
.yba5_c00001{bottom:803.600000pt;}
.y2db_c00001{bottom:803.773333pt;}
.y6a5_c00001{bottom:803.800000pt;}
.y4f5_c00001{bottom:803.973333pt;}
.yee2_c00001{bottom:804.173333pt;}
.y54f_c00001{bottom:804.360000pt;}
.ye2_c00001{bottom:804.373333pt;}
.y44b_c00001{bottom:804.560000pt;}
.y54e_c00001{bottom:804.733333pt;}
.yeac_c00001{bottom:804.933333pt;}
.y764_c00001{bottom:805.106667pt;}
.y748_c00001{bottom:805.306667pt;}
.y80f_c00001{bottom:805.493333pt;}
.y2dc_c00001{bottom:805.693333pt;}
.y983_c00001{bottom:805.706667pt;}
.y1114_c00001{bottom:805.800000pt;}
.y1036_c00001{bottom:805.853333pt;}
.y763_c00001{bottom:805.893333pt;}
.ya20_c00001{bottom:806.066667pt;}
.y810_c00001{bottom:806.440000pt;}
.y44c_c00001{bottom:806.640000pt;}
.y2dd_c00001{bottom:807.026667pt;}
.y525_c00001{bottom:807.226667pt;}
.yb8d_c00001{bottom:807.400000pt;}
.y1074_c00001{bottom:807.720000pt;}
.ya22_c00001{bottom:807.973333pt;}
.y526_c00001{bottom:808.173333pt;}
.y591_c00001{bottom:808.360000pt;}
.y3ea_c00001{bottom:808.373333pt;}
.y109c_c00001{bottom:808.520000pt;}
.y3e9_c00001{bottom:808.560000pt;}
.yf94_c00001{bottom:808.733333pt;}
.ya21_c00001{bottom:808.933333pt;}
.y1090_c00001{bottom:809.053333pt;}
.y58e_c00001{bottom:809.106667pt;}
.y811_c00001{bottom:809.306667pt;}
.y3e7_c00001{bottom:809.506667pt;}
.yf95_c00001{bottom:809.693333pt;}
.y3e8_c00001{bottom:809.706667pt;}
.y1130_c00001{bottom:809.853333pt;}
.y3e5_c00001{bottom:809.893333pt;}
.yc51_c00001{bottom:810.066667pt;}
.yc52_c00001{bottom:810.266667pt;}
.yaf4_c00001{bottom:810.440000pt;}
.yde1_c00001{bottom:810.466667pt;}
.yfa8_c00001{bottom:810.640000pt;}
.y3e6_c00001{bottom:810.840000pt;}
.y590_c00001{bottom:811.026667pt;}
.y10c8_c00001{bottom:811.160000pt;}
.y58f_c00001{bottom:811.226667pt;}
.yaf6_c00001{bottom:811.400000pt;}
.y1295_c00001{bottom:811.520000pt;}
.ye4f_c00001{bottom:811.600000pt;}
.yf14_c00001{bottom:811.800000pt;}
.yf00_c00001{bottom:811.973333pt;}
.y112b_c00001{bottom:812.160000pt;}
.ybd2_c00001{bottom:812.173333pt;}
.y133b_c00001{bottom:812.266667pt;}
.yaf3_c00001{bottom:812.360000pt;}
.y10e4_c00001{bottom:812.520000pt;}
.yaf5_c00001{bottom:812.560000pt;}
.yeca_c00001{bottom:812.733333pt;}
.yd3b_c00001{bottom:812.760000pt;}
.y1227_c00001{bottom:812.893333pt;}
.yecb_c00001{bottom:812.933333pt;}
.ye7f_c00001{bottom:813.133333pt;}
.y944_c00001{bottom:813.306667pt;}
.y1157_c00001{bottom:813.493333pt;}
.yb70_c00001{bottom:813.506667pt;}
.yd3c_c00001{bottom:813.693333pt;}
.yde2_c00001{bottom:813.706667pt;}
.yec9_c00001{bottom:813.893333pt;}
.y941_c00001{bottom:814.066667pt;}
.yda6_c00001{bottom:814.093333pt;}
.y1065_c00001{bottom:814.200000pt;}
.y940_c00001{bottom:814.266667pt;}
.ycae_c00001{bottom:814.640000pt;}
.yf15_c00001{bottom:814.840000pt;}
.y1041_c00001{bottom:815.000000pt;}
.y945_c00001{bottom:815.026667pt;}
.ya6f_c00001{bottom:815.040000pt;}
.y101d_c00001{bottom:815.186667pt;}
.yd02_c00001{bottom:815.226667pt;}
.yee1_c00001{bottom:815.400000pt;}
.y8b6_c00001{bottom:815.560000pt;}
.yd3d_c00001{bottom:815.600000pt;}
.y943_c00001{bottom:815.973333pt;}
.y1144_c00001{bottom:816.160000pt;}
.yda7_c00001{bottom:816.173333pt;}
.y192_c00001{bottom:816.360000pt;}
.yd94_c00001{bottom:816.373333pt;}
.ycaf_c00001{bottom:816.560000pt;}
.y190_c00001{bottom:816.733333pt;}
.y942_c00001{bottom:816.933333pt;}
.y12fe_c00001{bottom:817.013333pt;}
.y18e_c00001{bottom:817.106667pt;}
.ya11_c00001{bottom:817.266667pt;}
.y731_c00001{bottom:817.306667pt;}
.y1120_c00001{bottom:817.600000pt;}
.y1270_c00001{bottom:817.626667pt;}
.y18f_c00001{bottom:817.693333pt;}
.ycb0_c00001{bottom:817.706667pt;}
.ya57_c00001{bottom:817.866667pt;}
.y4a0_c00001{bottom:818.066667pt;}
.y84e_c00001{bottom:818.253333pt;}
.y25_c00001{bottom:818.266667pt;}
.y26_c00001{bottom:818.440000pt;}
.y9cb_c00001{bottom:818.626667pt;}
.y191_c00001{bottom:818.640000pt;}
.y6b9_c00001{bottom:818.826667pt;}
.y49f_c00001{bottom:819.026667pt;}
.y10be_c00001{bottom:819.133333pt;}
.y1c8_c00001{bottom:819.226667pt;}
.y15e_c00001{bottom:819.400000pt;}
.y123b_c00001{bottom:819.586667pt;}
.y6f8_c00001{bottom:819.600000pt;}
.ye1_c00001{bottom:819.773333pt;}
.y27_c00001{bottom:819.973333pt;}
.y88a_c00001{bottom:820.160000pt;}
.y3e3_c00001{bottom:820.173333pt;}
.y24_c00001{bottom:820.360000pt;}
.y3e4_c00001{bottom:820.373333pt;}
.y28_c00001{bottom:820.560000pt;}
.y221_c00001{bottom:820.733333pt;}
.y4a1_c00001{bottom:820.933333pt;}
.y2d7_c00001{bottom:821.106667pt;}
.y85a_c00001{bottom:821.133333pt;}
.y15d_c00001{bottom:821.306667pt;}
.y891_c00001{bottom:821.493333pt;}
.y3e1_c00001{bottom:821.506667pt;}
.y15f_c00001{bottom:821.693333pt;}
.y1029_c00001{bottom:821.853333pt;}
.y3df_c00001{bottom:821.893333pt;}
.y2d8_c00001{bottom:822.066667pt;}
.yc4d_c00001{bottom:822.093333pt;}
.y86f_c00001{bottom:822.266667pt;}
.y2da_c00001{bottom:822.440000pt;}
.y9d0_c00001{bottom:822.466667pt;}
.y44a_c00001{bottom:822.640000pt;}
.y9ee_c00001{bottom:822.826667pt;}
.y3e0_c00001{bottom:822.840000pt;}
.y2d5_c00001{bottom:823.026667pt;}
.y3e2_c00001{bottom:823.040000pt;}
.y1313_c00001{bottom:823.186667pt;}
.y2d6_c00001{bottom:823.226667pt;}
.y8c8_c00001{bottom:823.400000pt;}
.yac7_c00001{bottom:823.586667pt;}
.y910_c00001{bottom:823.600000pt;}
.y80e_c00001{bottom:823.773333pt;}
.y4f4_c00001{bottom:823.973333pt;}
.y105a_c00001{bottom:824.160000pt;}
.ybd0_c00001{bottom:824.173333pt;}
.y2d9_c00001{bottom:824.360000pt;}
.ya7a_c00001{bottom:824.373333pt;}
.y80c_c00001{bottom:824.560000pt;}
.y8a0_c00001{bottom:824.733333pt;}
.yc4f_c00001{bottom:824.933333pt;}
.yc10_c00001{bottom:825.106667pt;}
.ye4d_c00001{bottom:825.306667pt;}
.ybd1_c00001{bottom:825.506667pt;}
.y10b2_c00001{bottom:825.666667pt;}
.y80b_c00001{bottom:825.693333pt;}
.yc50_c00001{bottom:825.706667pt;}
.y80d_c00001{bottom:825.893333pt;}
.y9fb_c00001{bottom:826.066667pt;}
.yc4e_c00001{bottom:826.266667pt;}
.y58a_c00001{bottom:826.440000pt;}
.yd93_c00001{bottom:826.466667pt;}
.y1296_c00001{bottom:826.600000pt;}
.ya63_c00001{bottom:826.626667pt;}
.yb6f_c00001{bottom:826.640000pt;}
.yb6e_c00001{bottom:826.840000pt;}
.yaf2_c00001{bottom:827.026667pt;}
.ye4e_c00001{bottom:827.040000pt;}
.yd38_c00001{bottom:827.226667pt;}
.ycac_c00001{bottom:827.400000pt;}
.yd6e_c00001{bottom:827.426667pt;}
.yb6d_c00001{bottom:827.600000pt;}
.y58c_c00001{bottom:827.773333pt;}
.yd39_c00001{bottom:827.973333pt;}
.yf2b_c00001{bottom:828.173333pt;}
.y58d_c00001{bottom:828.360000pt;}
.yf13_c00001{bottom:828.373333pt;}
.ycab_c00001{bottom:828.560000pt;}
.yaee_c00001{bottom:828.733333pt;}
.y132a_c00001{bottom:828.853333pt;}
.yd3a_c00001{bottom:828.933333pt;}
.yaef_c00001{bottom:829.106667pt;}
.y58b_c00001{bottom:829.306667pt;}
.yaa2_c00001{bottom:829.493333pt;}
.ycaa_c00001{bottom:829.506667pt;}
.y589_c00001{bottom:829.693333pt;}
.yd70_c00001{bottom:829.706667pt;}
.yd6f_c00001{bottom:829.893333pt;}
.ycad_c00001{bottom:830.266667pt;}
.ya70_c00001{bottom:830.466667pt;}
.yaf0_c00001{bottom:830.640000pt;}
.ya9a_c00001{bottom:830.826667pt;}
.ye7e_c00001{bottom:830.840000pt;}
.yaf1_c00001{bottom:831.026667pt;}
.y524_c00001{bottom:831.226667pt;}
.y49e_c00001{bottom:831.400000pt;}
.ya7b_c00001{bottom:831.600000pt;}
.yad3_c00001{bottom:832.160000pt;}
.y523_c00001{bottom:832.173333pt;}
.y49d_c00001{bottom:832.360000pt;}
.y840_c00001{bottom:832.533333pt;}
.y49b_c00001{bottom:832.560000pt;}
.yaa8_c00001{bottom:832.733333pt;}
.y49c_c00001{bottom:833.306667pt;}
.y10f0_c00001{bottom:833.493333pt;}
.y3dd_c00001{bottom:833.506667pt;}
.y3de_c00001{bottom:833.706667pt;}
.y3da_c00001{bottom:833.893333pt;}
.yab5_c00001{bottom:834.066667pt;}
.y3d9_c00001{bottom:834.266667pt;}
.y109d_c00001{bottom:834.826667pt;}
.y3db_c00001{bottom:834.840000pt;}
.y18d_c00001{bottom:835.026667pt;}
.y3dc_c00001{bottom:835.040000pt;}
.ybcd_c00001{bottom:835.226667pt;}
.y824_c00001{bottom:835.400000pt;}
.yc4c_c00001{bottom:835.600000pt;}
.y21_c00001{bottom:835.773333pt;}
.y112c_c00001{bottom:835.933333pt;}
.ydf_c00001{bottom:835.973333pt;}
.y1131_c00001{bottom:836.160000pt;}
.y6b0_c00001{bottom:836.360000pt;}
.y107f_c00001{bottom:836.520000pt;}
.y1e_c00001{bottom:836.560000pt;}
.y23_c00001{bottom:836.733333pt;}
.yf9e_c00001{bottom:836.933333pt;}
.yde_c00001{bottom:837.106667pt;}
.y1f_c00001{bottom:837.306667pt;}
.yc22_c00001{bottom:837.493333pt;}
.ybcf_c00001{bottom:837.506667pt;}
.y22_c00001{bottom:837.693333pt;}
.ybce_c00001{bottom:837.706667pt;}
.ye0_c00001{bottom:837.893333pt;}
.y697_c00001{bottom:838.066667pt;}
.y746_c00001{bottom:838.266667pt;}
.y448_c00001{bottom:838.440000pt;}
.yda5_c00001{bottom:838.466667pt;}
.y1158_c00001{bottom:838.600000pt;}
.y20_c00001{bottom:838.640000pt;}
.y1042_c00001{bottom:838.826667pt;}
.yeff_c00001{bottom:838.840000pt;}
.ydd_c00001{bottom:839.026667pt;}
.y6b8_c00001{bottom:839.040000pt;}
.y449_c00001{bottom:839.226667pt;}
.y747_c00001{bottom:839.400000pt;}
.yd37_c00001{bottom:839.426667pt;}
.yc1a_c00001{bottom:839.600000pt;}
.y762_c00001{bottom:839.773333pt;}
.y4f3_c00001{bottom:839.973333pt;}
.y10e5_c00001{bottom:840.160000pt;}
.yefe_c00001{bottom:840.173333pt;}
.y2d0_c00001{bottom:840.360000pt;}
.yc0f_c00001{bottom:840.373333pt;}
.y2d3_c00001{bottom:840.560000pt;}
.y2d2_c00001{bottom:840.733333pt;}
.y93e_c00001{bottom:840.933333pt;}
.ya1f_c00001{bottom:841.106667pt;}
.y2d4_c00001{bottom:841.306667pt;}
.y101e_c00001{bottom:841.493333pt;}
.yec8_c00001{bottom:841.506667pt;}
.y2d1_c00001{bottom:841.693333pt;}
.yac8_c00001{bottom:841.893333pt;}
.ya1e_c00001{bottom:842.066667pt;}
.y93d_c00001{bottom:842.266667pt;}
.y809_c00001{bottom:842.440000pt;}
.y1145_c00001{bottom:842.600000pt;}
.y80a_c00001{bottom:842.640000pt;}
.y93f_c00001{bottom:842.840000pt;}
.y807_c00001{bottom:843.026667pt;}
.yca9_c00001{bottom:843.040000pt;}
.yfb2_c00001{bottom:843.400000pt;}
.y93c_c00001{bottom:843.600000pt;}
.y808_c00001{bottom:843.973333pt;}
.y522_c00001{bottom:844.173333pt;}
.y49a_c00001{bottom:844.360000pt;}
.y10fc_c00001{bottom:844.520000pt;}
.y521_c00001{bottom:844.560000pt;}
.y499_c00001{bottom:844.733333pt;}
.ya58_c00001{bottom:844.866667pt;}
.y495_c00001{bottom:844.933333pt;}
.y588_c00001{bottom:845.106667pt;}
.yfb3_c00001{bottom:845.306667pt;}
.y1273_c00001{bottom:845.413333pt;}
.y10c9_c00001{bottom:845.493333pt;}
.y3d7_c00001{bottom:845.506667pt;}
.y3d8_c00001{bottom:845.706667pt;}
.y3d5_c00001{bottom:845.893333pt;}
.y498_c00001{bottom:846.266667pt;}
.yaed_c00001{bottom:846.440000pt;}
.y496_c00001{bottom:846.640000pt;}
.y1075_c00001{bottom:846.826667pt;}
.y3d4_c00001{bottom:846.840000pt;}
.y587_c00001{bottom:847.026667pt;}
.y3d6_c00001{bottom:847.040000pt;}
.y3d3_c00001{bottom:847.226667pt;}
.yaec_c00001{bottom:847.400000pt;}
.y497_c00001{bottom:847.600000pt;}
.y1108_c00001{bottom:847.933333pt;}
.yaeb_c00001{bottom:847.973333pt;}
.y1091_c00001{bottom:848.160000pt;}
.ybca_c00001{bottom:848.173333pt;}
.y105b_c00001{bottom:848.320000pt;}
.y90f_c00001{bottom:848.360000pt;}
.ybcb_c00001{bottom:848.560000pt;}
.yc47_c00001{bottom:848.733333pt;}
.y90d_c00001{bottom:849.306667pt;}
.y102a_c00001{bottom:849.493333pt;}
.y90c_c00001{bottom:849.506667pt;}
.yc4b_c00001{bottom:849.693333pt;}
.ybcc_c00001{bottom:849.706667pt;}
.yf55_c00001{bottom:849.893333pt;}
.yc49_c00001{bottom:850.066667pt;}
.y90e_c00001{bottom:850.266667pt;}
.ye4b_c00001{bottom:850.466667pt;}
.yc48_c00001{bottom:850.640000pt;}
.yc46_c00001{bottom:850.840000pt;}
.y823_c00001{bottom:851.026667pt;}
.yefd_c00001{bottom:851.400000pt;}
.yc4a_c00001{bottom:851.600000pt;}
.y730_c00001{bottom:851.773333pt;}
.ye93_c00001{bottom:851.800000pt;}
.yde0_c00001{bottom:851.973333pt;}
.y55c_c00001{bottom:852.160000pt;}
.y6ef_c00001{bottom:852.360000pt;}
.y1066_c00001{bottom:852.520000pt;}
.yb6c_c00001{bottom:852.560000pt;}
.y1ed_c00001{bottom:852.733333pt;}
.y8cb_c00001{bottom:852.933333pt;}
.y1b_c00001{bottom:853.106667pt;}
.yd6d_c00001{bottom:853.133333pt;}
.y1ec_c00001{bottom:853.306667pt;}
.ye4c_c00001{bottom:853.506667pt;}
.y9ae_c00001{bottom:853.693333pt;}
.yddf_c00001{bottom:853.706667pt;}
.y1a_c00001{bottom:853.893333pt;}
.y15c_c00001{bottom:854.066667pt;}
.y6a4_c00001{bottom:854.266667pt;}
.yda_c00001{bottom:854.440000pt;}
.y18c_c00001{bottom:854.640000pt;}
.yec7_c00001{bottom:854.840000pt;}
.y1c_c00001{bottom:855.026667pt;}
.yf12_c00001{bottom:855.040000pt;}
.ydc_c00001{bottom:855.226667pt;}
.y447_c00001{bottom:855.400000pt;}
.ye94_c00001{bottom:855.600000pt;}
.y1037_c00001{bottom:855.760000pt;}
.y446_c00001{bottom:855.773333pt;}
.y1d_c00001{bottom:855.973333pt;}
.y93b_c00001{bottom:856.173333pt;}
.ydb_c00001{bottom:856.360000pt;}
.yca8_c00001{bottom:856.373333pt;}
.y520_c00001{bottom:856.560000pt;}
.y4f2_c00001{bottom:856.733333pt;}
.y93a_c00001{bottom:856.933333pt;}
.y2cf_c00001{bottom:857.106667pt;}
.y10a9_c00001{bottom:857.266667pt;}
.y220_c00001{bottom:857.306667pt;}
.y51f_c00001{bottom:857.506667pt;}
.y2cc_c00001{bottom:857.693333pt;}
.y3d2_c00001{bottom:857.706667pt;}
.y2cb_c00001{bottom:857.893333pt;}
.y494_c00001{bottom:858.066667pt;}
.yf67_c00001{bottom:858.266667pt;}
.y803_c00001{bottom:858.440000pt;}
.y2cd_c00001{bottom:858.640000pt;}
.y3d1_c00001{bottom:858.840000pt;}
.y2ce_c00001{bottom:859.026667pt;}
.y841_c00001{bottom:859.160000pt;}
.y3d0_c00001{bottom:859.226667pt;}
.yf66_c00001{bottom:859.600000pt;}
.y1132_c00001{bottom:859.760000pt;}
.yc40_c00001{bottom:859.773333pt;}
.y9b3_c00001{bottom:859.973333pt;}
.y10bf_c00001{bottom:860.160000pt;}
.y3cf_c00001{bottom:860.173333pt;}
.y805_c00001{bottom:860.360000pt;}
.y806_c00001{bottom:860.560000pt;}
.y90b_c00001{bottom:860.733333pt;}
.y493_c00001{bottom:860.933333pt;}
.y583_c00001{bottom:861.106667pt;}
.y729_c00001{bottom:861.133333pt;}
.yc41_c00001{bottom:861.306667pt;}
.yaea_c00001{bottom:861.693333pt;}
.y804_c00001{bottom:861.706667pt;}
.yb9e_c00001{bottom:861.893333pt;}
.yc42_c00001{bottom:862.066667pt;}
.yb9d_c00001{bottom:862.266667pt;}
.y133c_c00001{bottom:862.400000pt;}
.y123c_c00001{bottom:862.426667pt;}
.y584_c00001{bottom:862.440000pt;}
.yb9c_c00001{bottom:862.640000pt;}
.y1080_c00001{bottom:862.826667pt;}
.yba0_c00001{bottom:862.840000pt;}
.y586_c00001{bottom:863.026667pt;}
.y585_c00001{bottom:863.226667pt;}
.yb68_c00001{bottom:863.400000pt;}
.yb9f_c00001{bottom:863.600000pt;}
.y10e6_c00001{bottom:863.760000pt;}
.yae7_c00001{bottom:863.773333pt;}
.y1043_c00001{bottom:863.933333pt;}
.yc45_c00001{bottom:863.973333pt;}
.y1271_c00001{bottom:864.093333pt;}
.y582_c00001{bottom:864.360000pt;}
.yae8_c00001{bottom:864.560000pt;}
.yb6b_c00001{bottom:864.733333pt;}
.y8b7_c00001{bottom:864.893333pt;}
.yc43_c00001{bottom:864.933333pt;}
.ydc0_c00001{bottom:865.133333pt;}
.y1150_c00001{bottom:865.266667pt;}
.yb66_c00001{bottom:865.306667pt;}
.y109e_c00001{bottom:865.413333pt;}
.yb6a_c00001{bottom:865.506667pt;}
.yae9_c00001{bottom:865.693333pt;}
.yc44_c00001{bottom:865.706667pt;}
.y936_c00001{bottom:866.066667pt;}
.yda3_c00001{bottom:866.093333pt;}
.ya12_c00001{bottom:866.226667pt;}
.y935_c00001{bottom:866.266667pt;}
.y84f_c00001{bottom:866.626667pt;}
.yb69_c00001{bottom:866.640000pt;}
.y938_c00001{bottom:867.026667pt;}
.yb67_c00001{bottom:867.040000pt;}
.yda4_c00001{bottom:867.226667pt;}
.yd00_c00001{bottom:867.400000pt;}
.yd01_c00001{bottom:867.600000pt;}
.y9cc_c00001{bottom:867.960000pt;}
.y937_c00001{bottom:867.973333pt;}
.yd36_c00001{bottom:868.173333pt;}
.y8ca_c00001{bottom:868.360000pt;}
.ye28_c00001{bottom:868.373333pt;}
.yd92_c00001{bottom:868.560000pt;}
.y863_c00001{bottom:868.733333pt;}
.y939_c00001{bottom:868.933333pt;}
.y10ca_c00001{bottom:869.266667pt;}
.yca7_c00001{bottom:869.306667pt;}
.y88b_c00001{bottom:869.493333pt;}
.y101f_c00001{bottom:869.626667pt;}
.y1eb_c00001{bottom:869.693333pt;}
.y1ea_c00001{bottom:870.066667pt;}
.yd91_c00001{bottom:870.266667pt;}
.y17_c00001{bottom:870.440000pt;}
.y85b_c00001{bottom:870.466667pt;}
.y6af_c00001{bottom:870.640000pt;}
.y892_c00001{bottom:870.826667pt;}
.y490_c00001{bottom:871.026667pt;}
.y8c9_c00001{bottom:871.226667pt;}
.y19_c00001{bottom:871.400000pt;}
.y16_c00001{bottom:871.600000pt;}
.y102b_c00001{bottom:871.760000pt;}
.yd5_c00001{bottom:871.773333pt;}
.y9d1_c00001{bottom:871.800000pt;}
.y1115_c00001{bottom:871.933333pt;}
.y491_c00001{bottom:871.973333pt;}
.y9ef_c00001{bottom:872.160000pt;}
.ybc8_c00001{bottom:872.173333pt;}
.y1076_c00001{bottom:872.320000pt;}
.y18_c00001{bottom:872.360000pt;}
.yd9_c00001{bottom:872.560000pt;}
.y21f_c00001{bottom:872.733333pt;}
.y492_c00001{bottom:872.933333pt;}
.y445_c00001{bottom:873.106667pt;}
.ybc9_c00001{bottom:873.133333pt;}
.y1092_c00001{bottom:873.266667pt;}
.y18b_c00001{bottom:873.306667pt;}
.y48f_c00001{bottom:873.506667pt;}
.yd7_c00001{bottom:873.693333pt;}
.yd6_c00001{bottom:873.706667pt;}
.y3ce_c00001{bottom:873.893333pt;}
.y2ca_c00001{bottom:874.066667pt;}
.yac9_c00001{bottom:874.226667pt;}
.yf65_c00001{bottom:874.266667pt;}
.y2c5_c00001{bottom:874.440000pt;}
.y10b3_c00001{bottom:874.600000pt;}
.yd8_c00001{bottom:874.640000pt;}
.y3cd_c00001{bottom:874.840000pt;}
.y2c4_c00001{bottom:875.026667pt;}
.y51e_c00001{bottom:875.040000pt;}
.y2c9_c00001{bottom:875.226667pt;}
.y4f1_c00001{bottom:875.400000pt;}
.ya64_c00001{bottom:875.586667pt;}
.yc3e_c00001{bottom:875.773333pt;}
.y10f1_c00001{bottom:875.800000pt;}
.y12ff_c00001{bottom:875.933333pt;}
.y2c7_c00001{bottom:875.973333pt;}
.y3cc_c00001{bottom:876.173333pt;}
.y2c6_c00001{bottom:876.360000pt;}
.yefc_c00001{bottom:876.733333pt;}
.yf28_c00001{bottom:876.760000pt;}
.yb9b_c00001{bottom:876.933333pt;}
.yc3f_c00001{bottom:877.106667pt;}
.y2c8_c00001{bottom:877.306667pt;}
.y3cb_c00001{bottom:877.506667pt;}
.yb63_c00001{bottom:877.693333pt;}
.yc3d_c00001{bottom:877.893333pt;}
.yf2a_c00001{bottom:878.066667pt;}
.yd35_c00001{bottom:878.093333pt;}
.yf29_c00001{bottom:878.266667pt;}
.yd8f_c00001{bottom:878.640000pt;}
.ya9b_c00001{bottom:878.826667pt;}
.yc3c_c00001{bottom:879.026667pt;}
.yfad_c00001{bottom:879.226667pt;}
.y934_c00001{bottom:879.400000pt;}
.yd6c_c00001{bottom:879.426667pt;}
.y801_c00001{bottom:879.600000pt;}
.y580_c00001{bottom:879.773333pt;}
.ya71_c00001{bottom:879.800000pt;}
.yb65_c00001{bottom:879.973333pt;}
.ya9e_c00001{bottom:880.160000pt;}
.ye4a_c00001{bottom:880.173333pt;}
.y132b_c00001{bottom:880.293333pt;}
.y802_c00001{bottom:880.360000pt;}
.yb64_c00001{bottom:880.373333pt;}
.y57f_c00001{bottom:880.560000pt;}
.ycff_c00001{bottom:880.733333pt;}
.yedf_c00001{bottom:880.760000pt;}
.ya7c_c00001{bottom:880.933333pt;}
.yae6_c00001{bottom:881.106667pt;}
.y933_c00001{bottom:881.306667pt;}
.ycfe_c00001{bottom:881.506667pt;}
.y581_c00001{bottom:881.693333pt;}
.ya86_c00001{bottom:881.893333pt;}
.yaad_c00001{bottom:882.066667pt;}
.y932_c00001{bottom:882.266667pt;}
.y48b_c00001{bottom:882.640000pt;}
.y1297_c00001{bottom:882.746667pt;}
.yee0_c00001{bottom:882.840000pt;}
.yae5_c00001{bottom:883.026667pt;}
.yca6_c00001{bottom:883.040000pt;}
.y48d_c00001{bottom:883.400000pt;}
.yd90_c00001{bottom:883.600000pt;}
.y10d9_c00001{bottom:884.026667pt;}
.y48e_c00001{bottom:884.360000pt;}
.y489_c00001{bottom:884.560000pt;}
.y1081_c00001{bottom:885.093333pt;}
.y48c_c00001{bottom:885.306667pt;}
.yf64_c00001{bottom:885.506667pt;}
.y48a_c00001{bottom:886.266667pt;}
.y10c0_c00001{bottom:886.600000pt;}
.yf63_c00001{bottom:886.640000pt;}
.y157_c00001{bottom:887.026667pt;}
.y14_c00001{bottom:887.773333pt;}
.y1121_c00001{bottom:887.933333pt;}
.y1e9_c00001{bottom:887.973333pt;}
.y745_c00001{bottom:888.360000pt;}
.y51d_c00001{bottom:888.560000pt;}
.y15_c00001{bottom:888.733333pt;}
.y15b_c00001{bottom:889.106667pt;}
.y53e_c00001{bottom:889.306667pt;}
.yc01_c00001{bottom:889.493333pt;}
.y3ca_c00001{bottom:889.506667pt;}
.ya59_c00001{bottom:889.600000pt;}
.y12_c00001{bottom:889.693333pt;}
.y13_c00001{bottom:889.893333pt;}
.y15a_c00001{bottom:890.066667pt;}
.yb99_c00001{bottom:890.266667pt;}
.y444_c00001{bottom:890.440000pt;}
.y159_c00001{bottom:890.640000pt;}
.y3c9_c00001{bottom:890.840000pt;}
.y156_c00001{bottom:891.026667pt;}
.y21e_c00001{bottom:891.040000pt;}
.y62d_c00001{bottom:891.226667pt;}
.y4f0_c00001{bottom:891.400000pt;}
.ye26_c00001{bottom:891.426667pt;}
.yb9a_c00001{bottom:891.600000pt;}
.y54d_c00001{bottom:891.773333pt;}
.yda1_c00001{bottom:891.800000pt;}
.y158_c00001{bottom:891.973333pt;}
.y3c8_c00001{bottom:892.173333pt;}
.yd4_c00001{bottom:892.360000pt;}
.y2c3_c00001{bottom:892.560000pt;}
.y761_c00001{bottom:892.733333pt;}
.y123d_c00001{bottom:892.893333pt;}
.yb98_c00001{bottom:892.933333pt;}
.yc3b_c00001{bottom:893.106667pt;}
.y1314_c00001{bottom:893.266667pt;}
.y2c1_c00001{bottom:893.306667pt;}
.y2c0_c00001{bottom:893.693333pt;}
.yf27_c00001{bottom:893.706667pt;}
.y800_c00001{bottom:893.893333pt;}
.yeab_c00001{bottom:894.066667pt;}
.yd34_c00001{bottom:894.266667pt;}
.yc37_c00001{bottom:894.440000pt;}
.y2c2_c00001{bottom:894.640000pt;}
.y931_c00001{bottom:894.840000pt;}
.yc3a_c00001{bottom:895.026667pt;}
.ye27_c00001{bottom:895.040000pt;}
.ydbf_c00001{bottom:895.226667pt;}
.yc39_c00001{bottom:895.400000pt;}
.yca5_c00001{bottom:895.600000pt;}
.y10fd_c00001{bottom:895.733333pt;}
.ybc6_c00001{bottom:895.973333pt;}
.yede_c00001{bottom:896.173333pt;}
.yc38_c00001{bottom:896.360000pt;}
.yda2_c00001{bottom:896.373333pt;}
.yb62_c00001{bottom:896.933333pt;}
.y57e_c00001{bottom:897.106667pt;}
.yb5e_c00001{bottom:897.693333pt;}
.yb61_c00001{bottom:897.893333pt;}
.yae3_c00001{bottom:898.440000pt;}
.yb5f_c00001{bottom:898.840000pt;}
.y57d_c00001{bottom:899.026667pt;}
.yb60_c00001{bottom:899.600000pt;}
.yae4_c00001{bottom:900.360000pt;}
.y9c2_c00001{bottom:900.466667pt;}
.y11c9_c00001{bottom:900.933333pt;}
.y842_c00001{bottom:902.186667pt;}
.yf79_c00001{bottom:902.640000pt;}
.yddd_c00001{bottom:903.026667pt;}
.ye48_c00001{bottom:903.400000pt;}
.ye46_c00001{bottom:903.426667pt;}
.ye47_c00001{bottom:903.600000pt;}
.yf85_c00001{bottom:903.973333pt;}
.y21d_c00001{bottom:904.360000pt;}
.yddc_c00001{bottom:904.560000pt;}
.y1067_c00001{bottom:904.693333pt;}
.y72f_c00001{bottom:904.733333pt;}
.yd33_c00001{bottom:904.760000pt;}
.ydde_c00001{bottom:904.933333pt;}
.yf_c00001{bottom:905.106667pt;}
.yd6b_c00001{bottom:905.133333pt;}
.y647_c00001{bottom:905.306667pt;}
.y6a3_c00001{bottom:905.493333pt;}
.ye49_c00001{bottom:905.506667pt;}
.y133d_c00001{bottom:905.600000pt;}
.yd2_c00001{bottom:905.693333pt;}
.yefb_c00001{bottom:905.706667pt;}
.y72e_c00001{bottom:905.893333pt;}
.y10_c00001{bottom:906.066667pt;}
.y1300_c00001{bottom:906.253333pt;}
.y728_c00001{bottom:906.266667pt;}
.y1274_c00001{bottom:906.360000pt;}
.y155_c00001{bottom:906.440000pt;}
.yd1_c00001{bottom:906.640000pt;}
.ye92_c00001{bottom:906.840000pt;}
.y11_c00001{bottom:907.026667pt;}
.y18a_c00001{bottom:907.226667pt;}
.y1c7_c00001{bottom:907.400000pt;}
.yd0_c00001{bottom:907.600000pt;}
.y2ba_c00001{bottom:907.773333pt;}
.ye_c00001{bottom:907.973333pt;}
.y443_c00001{bottom:908.160000pt;}
.y930_c00001{bottom:908.173333pt;}
.y154_c00001{bottom:908.360000pt;}
.ye25_c00001{bottom:908.373333pt;}
.y696_c00001{bottom:908.560000pt;}
.y4ef_c00001{bottom:908.733333pt;}
.yd3_c00001{bottom:908.933333pt;}
.y2be_c00001{bottom:909.106667pt;}
.y1c6_c00001{bottom:909.306667pt;}
.ybc4_c00001{bottom:909.506667pt;}
.y2bb_c00001{bottom:909.693333pt;}
.yba4_c00001{bottom:909.706667pt;}
.y2bd_c00001{bottom:909.893333pt;}
.y2bf_c00001{bottom:910.066667pt;}
.ybc5_c00001{bottom:910.266667pt;}
.y488_c00001{bottom:910.640000pt;}
.y2bc_c00001{bottom:911.026667pt;}
.y982_c00001{bottom:911.040000pt;}
.yb95_c00001{bottom:911.773333pt;}
.y760_c00001{bottom:911.973333pt;}
.yc35_c00001{bottom:912.360000pt;}
.yc36_c00001{bottom:912.560000pt;}
.yb97_c00001{bottom:912.733333pt;}
.y51c_c00001{bottom:912.933333pt;}
.y57c_c00001{bottom:913.306667pt;}
.y1272_c00001{bottom:913.426667pt;}
.yb94_c00001{bottom:913.693333pt;}
.yb96_c00001{bottom:913.893333pt;}
.y8b8_c00001{bottom:914.226667pt;}
.y3c7_c00001{bottom:914.266667pt;}
.y57b_c00001{bottom:914.440000pt;}
.yf62_c00001{bottom:914.640000pt;}
.yae1_c00001{bottom:915.400000pt;}
.ya13_c00001{bottom:915.560000pt;}
.yfa6_c00001{bottom:915.600000pt;}
.yae2_c00001{bottom:915.773333pt;}
.y850_c00001{bottom:915.960000pt;}
.yefa_c00001{bottom:915.973333pt;}
.y579_c00001{bottom:916.360000pt;}
.y57a_c00001{bottom:916.373333pt;}
.yf26_c00001{bottom:916.733333pt;}
.ye45_c00001{bottom:916.933333pt;}
.yb5d_c00001{bottom:917.106667pt;}
.y9cd_c00001{bottom:917.293333pt;}
.yef9_c00001{bottom:917.306667pt;}
.yae0_c00001{bottom:917.693333pt;}
.y867_c00001{bottom:918.066667pt;}
.ydbe_c00001{bottom:918.093333pt;}
.yddb_c00001{bottom:918.266667pt;}
.ydd9_c00001{bottom:918.640000pt;}
.y893_c00001{bottom:918.826667pt;}
.ydda_c00001{bottom:918.840000pt;}
.y864_c00001{bottom:919.026667pt;}
.yf25_c00001{bottom:919.040000pt;}
.yb5c_c00001{bottom:919.226667pt;}
.y7fd_c00001{bottom:919.400000pt;}
.yf45_c00001{bottom:919.426667pt;}
.y7fb_c00001{bottom:919.600000pt;}
.y85c_c00001{bottom:919.800000pt;}
.ycfc_c00001{bottom:919.973333pt;}
.y88c_c00001{bottom:920.160000pt;}
.yec6_c00001{bottom:920.173333pt;}
.y7fc_c00001{bottom:920.360000pt;}
.ycfd_c00001{bottom:920.560000pt;}
.y870_c00001{bottom:920.933333pt;}
.y1e7_c00001{bottom:921.106667pt;}
.y9d2_c00001{bottom:921.133333pt;}
.y7fe_c00001{bottom:921.306667pt;}
.ya02_c00001{bottom:921.493333pt;}
.y7ff_c00001{bottom:921.506667pt;}
.yd_c00001{bottom:921.693333pt;}
.ye91_c00001{bottom:921.706667pt;}
.y875_c00001{bottom:921.893333pt;}
.y72d_c00001{bottom:922.066667pt;}
.yce_c00001{bottom:922.266667pt;}
.y9_c00001{bottom:922.440000pt;}
.ybc3_c00001{bottom:922.640000pt;}
.ycf_c00001{bottom:923.026667pt;}
.y11a8_c00001{bottom:923.226667pt;}
.y55b_c00001{bottom:923.400000pt;}
.yaca_c00001{bottom:923.560000pt;}
.y53d_c00001{bottom:923.600000pt;}
.ya_c00001{bottom:923.773333pt;}
.y1e8_c00001{bottom:923.973333pt;}
.y132c_c00001{bottom:924.120000pt;}
.y8_c00001{bottom:924.360000pt;}
.yc_c00001{bottom:924.560000pt;}
.y1c5_c00001{bottom:924.733333pt;}
.ycd_c00001{bottom:924.933333pt;}
.y43f_c00001{bottom:925.106667pt;}
.ya65_c00001{bottom:925.293333pt;}
.y153_c00001{bottom:925.306667pt;}
.yb_c00001{bottom:925.693333pt;}
.y782_c00001{bottom:925.706667pt;}
.y62c_c00001{bottom:925.893333pt;}
.y441_c00001{bottom:926.066667pt;}
.y3c6_c00001{bottom:926.266667pt;}
.y2b6_c00001{bottom:926.440000pt;}
.y152_c00001{bottom:926.640000pt;}
.ya9c_c00001{bottom:926.826667pt;}
.y43e_c00001{bottom:927.026667pt;}
.y442_c00001{bottom:927.226667pt;}
.y2b7_c00001{bottom:927.400000pt;}
.y3c5_c00001{bottom:927.600000pt;}
.yc32_c00001{bottom:927.773333pt;}
.ya72_c00001{bottom:927.800000pt;}
.y440_c00001{bottom:927.973333pt;}
.ya9f_c00001{bottom:928.160000pt;}
.y2b8_c00001{bottom:928.360000pt;}
.y9ad_c00001{bottom:928.373333pt;}
.y2b9_c00001{bottom:928.560000pt;}
.ydd7_c00001{bottom:928.733333pt;}
.ya7d_c00001{bottom:928.933333pt;}
.yc31_c00001{bottom:929.106667pt;}
.ya8a_c00001{bottom:929.133333pt;}
.ye44_c00001{bottom:929.306667pt;}
.yab1_c00001{bottom:929.493333pt;}
.yc33_c00001{bottom:929.693333pt;}
.yc34_c00001{bottom:929.893333pt;}
.yaa9_c00001{bottom:930.066667pt;}
.yf24_c00001{bottom:930.093333pt;}
.ya7e_c00001{bottom:930.266667pt;}
.yda0_c00001{bottom:930.640000pt;}
.y123e_c00001{bottom:930.760000pt;}
.y1301_c00001{bottom:930.826667pt;}
.yab6_c00001{bottom:931.026667pt;}
.ydd8_c00001{bottom:931.226667pt;}
.y92f_c00001{bottom:931.400000pt;}
.ye43_c00001{bottom:931.600000pt;}
.y578_c00001{bottom:931.773333pt;}
.yca2_c00001{bottom:931.973333pt;}
.y7fa_c00001{bottom:932.360000pt;}
.yd32_c00001{bottom:932.560000pt;}
.yca3_c00001{bottom:932.733333pt;}
.yeb7_c00001{bottom:932.760000pt;}
.yca4_c00001{bottom:932.933333pt;}
.yadd_c00001{bottom:933.106667pt;}
.y576_c00001{bottom:933.306667pt;}
.y7f8_c00001{bottom:933.506667pt;}
.y577_c00001{bottom:933.693333pt;}
.yd9f_c00001{bottom:933.706667pt;}
.ydbd_c00001{bottom:933.893333pt;}
.y7f9_c00001{bottom:934.266667pt;}
.yca0_c00001{bottom:934.640000pt;}
.ycfb_c00001{bottom:934.840000pt;}
.yade_c00001{bottom:935.026667pt;}
.yd6a_c00001{bottom:935.040000pt;}
.yca1_c00001{bottom:935.600000pt;}
.yadf_c00001{bottom:935.973333pt;}
.y151_c00001{bottom:939.026667pt;}
.y189_c00001{bottom:939.773333pt;}
.y53c_c00001{bottom:939.973333pt;}
.y14f_c00001{bottom:940.160000pt;}
.y21a_c00001{bottom:940.360000pt;}
.y53b_c00001{bottom:940.560000pt;}
.y1e6_c00001{bottom:940.733333pt;}
.y5_c00001{bottom:941.106667pt;}
.y744_c00001{bottom:941.133333pt;}
.y757_c00001{bottom:941.306667pt;}
.y4_c00001{bottom:941.693333pt;}
.y150_c00001{bottom:941.893333pt;}
.y1c4_c00001{bottom:942.066667pt;}
.yef7_c00001{bottom:942.093333pt;}
.ybc2_c00001{bottom:942.266667pt;}
.y43b_c00001{bottom:942.440000pt;}
.y7_c00001{bottom:942.640000pt;}
.y6_c00001{bottom:943.026667pt;}
.y21b_c00001{bottom:943.226667pt;}
.y75f_c00001{bottom:943.400000pt;}
.y54c_c00001{bottom:943.600000pt;}
.y2b2_c00001{bottom:943.773333pt;}
.y21c_c00001{bottom:943.973333pt;}
.yef8_c00001{bottom:944.173333pt;}
.y43a_c00001{bottom:944.360000pt;}
.y219_c00001{bottom:944.373333pt;}
.y2b5_c00001{bottom:944.560000pt;}
.y43c_c00001{bottom:944.733333pt;}
.yea9_c00001{bottom:944.760000pt;}
.y92e_c00001{bottom:944.933333pt;}
.yd69_c00001{bottom:945.133333pt;}
.y43d_c00001{bottom:945.306667pt;}
.ydbb_c00001{bottom:945.506667pt;}
.y2b3_c00001{bottom:945.693333pt;}
.y981_c00001{bottom:945.706667pt;}
.y2b4_c00001{bottom:945.893333pt;}
.y51b_c00001{bottom:946.066667pt;}
.yedd_c00001{bottom:946.093333pt;}
.yc9f_c00001{bottom:946.266667pt;}
.yc2f_c00001{bottom:946.440000pt;}
.y7f7_c00001{bottom:946.640000pt;}
.y7f5_c00001{bottom:946.840000pt;}
.y3c4_c00001{bottom:947.026667pt;}
.ydbc_c00001{bottom:947.226667pt;}
.yc30_c00001{bottom:947.400000pt;}
.y7f6_c00001{bottom:947.600000pt;}
.yd8d_c00001{bottom:947.973333pt;}
.yeaa_c00001{bottom:948.173333pt;}
.yc2e_c00001{bottom:948.360000pt;}
.yd8e_c00001{bottom:948.373333pt;}
.y3c3_c00001{bottom:948.933333pt;}
.y571_c00001{bottom:949.106667pt;}
.y133e_c00001{bottom:949.306667pt;}
.yadc_c00001{bottom:949.693333pt;}
.y575_c00001{bottom:950.066667pt;}
.y11d7_c00001{bottom:950.266667pt;}
.yad8_c00001{bottom:950.440000pt;}
.y572_c00001{bottom:951.026667pt;}
.y573_c00001{bottom:951.226667pt;}
.y574_c00001{bottom:951.973333pt;}
.yad9_c00001{bottom:952.360000pt;}
.yadb_c00001{bottom:952.560000pt;}
.yada_c00001{bottom:953.306667pt;}
.y11cb_c00001{bottom:957.693333pt;}
.y132d_c00001{bottom:958.440000pt;}
.y11ca_c00001{bottom:960.560000pt;}
.y12c1_c00001{bottom:961.693333pt;}
.y133f_c00001{bottom:962.840000pt;}
.y11cd_c00001{bottom:963.026667pt;}
.y12c0_c00001{bottom:963.600000pt;}
.y127e_c00001{bottom:964.933333pt;}
.y127f_c00001{bottom:965.693333pt;}
.y11cc_c00001{bottom:966.266667pt;}
.y104f_c00001{bottom:968.360000pt;}
.y112d_c00001{bottom:969.106667pt;}
.y10cb_c00001{bottom:969.306667pt;}
.y1021_c00001{bottom:969.693333pt;}
.y102c_c00001{bottom:970.266667pt;}
.y1013_c00001{bottom:971.026667pt;}
.y104e_c00001{bottom:971.226667pt;}
.y1020_c00001{bottom:971.600000pt;}
.y1307_c00001{bottom:971.773333pt;}
.y102d_c00001{bottom:972.360000pt;}
.y1069_c00001{bottom:972.560000pt;}
.y1068_c00001{bottom:972.933333pt;}
.y1117_c00001{bottom:973.106667pt;}
.y1012_c00001{bottom:973.893333pt;}
.yb93_c00001{bottom:974.826667pt;}
.y1116_c00001{bottom:975.226667pt;}
.y1e5_c00001{bottom:975.600000pt;}
.y1_c00001{bottom:975.773333pt;}
.y743_c00001{bottom:976.360000pt;}
.yfee_c00001{bottom:976.560000pt;}
.ycb_c00001{bottom:976.733333pt;}
.y2_c00001{bottom:976.933333pt;}
.yfb0_c00001{bottom:977.106667pt;}
.y439_c00001{bottom:977.306667pt;}
.y2b1_c00001{bottom:977.693333pt;}
.ycc_c00001{bottom:977.893333pt;}
.yb83_c00001{bottom:978.066667pt;}
.y756_c00001{bottom:978.266667pt;}
.y1199_c00001{bottom:978.440000pt;}
.y4ee_c00001{bottom:978.640000pt;}
.y11d1_c00001{bottom:979.026667pt;}
.y487_c00001{bottom:979.226667pt;}
.y438_c00001{bottom:979.600000pt;}
.y11b7_c00001{bottom:979.773333pt;}
.y12b5_c00001{bottom:979.973333pt;}
.yc2c_c00001{bottom:980.360000pt;}
.y2b0_c00001{bottom:980.560000pt;}
.y10da_c00001{bottom:980.933333pt;}
.y11b6_c00001{bottom:981.893333pt;}
.yc2b_c00001{bottom:982.266667pt;}
.y1213_c00001{bottom:983.026667pt;}
.y1204_c00001{bottom:983.773333pt;}
.y56f_c00001{bottom:983.973333pt;}
.yfde_c00001{bottom:984.360000pt;}
.y56e_c00001{bottom:984.933333pt;}
.y131c_c00001{bottom:985.106667pt;}
.yad6_c00001{bottom:985.693333pt;}
.y1203_c00001{bottom:985.893333pt;}
.yfdd_c00001{bottom:986.266667pt;}
.y11e4_c00001{bottom:986.440000pt;}
.y12d3_c00001{bottom:986.640000pt;}
.y11c6_c00001{bottom:987.026667pt;}
.yad5_c00001{bottom:987.226667pt;}
.y12d2_c00001{bottom:987.600000pt;}
.y12dc_c00001{bottom:987.773333pt;}
.y1083_c00001{bottom:987.973333pt;}
.y11c8_c00001{bottom:988.360000pt;}
.y11e3_c00001{bottom:988.560000pt;}
.yffe_c00001{bottom:988.933333pt;}
.y1246_c00001{bottom:989.106667pt;}
.y11a2_c00001{bottom:989.693333pt;}
.yfff_c00001{bottom:989.893333pt;}
.y1082_c00001{bottom:990.266667pt;}
.y1245_c00001{bottom:991.226667pt;}
.y118e_c00001{bottom:991.773333pt;}
.y1228_c00001{bottom:992.360000pt;}
.y118d_c00001{bottom:992.933333pt;}
.y12bc_c00001{bottom:993.693333pt;}
.y11fd_c00001{bottom:993.893333pt;}
.y1208_c00001{bottom:994.266667pt;}
.yfd2_c00001{bottom:995.026667pt;}
.y129e_c00001{bottom:995.226667pt;}
.y12bb_c00001{bottom:995.600000pt;}
.yfe9_c00001{bottom:996.360000pt;}
.y1299_c00001{bottom:996.560000pt;}
.yfd1_c00001{bottom:996.933333pt;}
.y12a7_c00001{bottom:997.306667pt;}
.y1257_c00001{bottom:997.893333pt;}
.yfe8_c00001{bottom:998.266667pt;}
.y127c_c00001{bottom:999.026667pt;}
.y1172_c00001{bottom:999.226667pt;}
.y12a6_c00001{bottom:999.600000pt;}
.y11c7_c00001{bottom:999.773333pt;}
.y12ac_c00001{bottom:1000.360000pt;}
.y12d7_c00001{bottom:1000.560000pt;}
.y127b_c00001{bottom:1000.933333pt;}
.y11c0_c00001{bottom:1001.106667pt;}
.y1187_c00001{bottom:1001.693333pt;}
.yfbe_c00001{bottom:1002.266667pt;}
.yff1_c00001{bottom:1002.640000pt;}
.y1189_c00001{bottom:1003.026667pt;}
.yfbf_c00001{bottom:1003.226667pt;}
.yfcb_c00001{bottom:1003.600000pt;}
.y11d8_c00001{bottom:1003.773333pt;}
.y12a4_c00001{bottom:1003.973333pt;}
.y12e4_c00001{bottom:1004.360000pt;}
.yfcc_c00001{bottom:1004.560000pt;}
.yff0_c00001{bottom:1004.933333pt;}
.y11f5_c00001{bottom:1005.106667pt;}
.y12b8_c00001{bottom:1005.693333pt;}
.y124e_c00001{bottom:1005.893333pt;}
.y11f4_c00001{bottom:1007.226667pt;}
.y12b0_c00001{bottom:1007.600000pt;}
.y1252_c00001{bottom:1007.973333pt;}
.y1168_c00001{bottom:1008.360000pt;}
.y12b7_c00001{bottom:1008.560000pt;}
.y11aa_c00001{bottom:1009.106667pt;}
.y12c8_c00001{bottom:1009.693333pt;}
.y117c_c00001{bottom:1010.266667pt;}
.y117d_c00001{bottom:1010.440000pt;}
.yfd8_c00001{bottom:1011.026667pt;}
.y11a9_c00001{bottom:1011.226667pt;}
.y1167_c00001{bottom:1011.600000pt;}
.y12c7_c00001{bottom:1012.560000pt;}
.yfd7_c00001{bottom:1012.933333pt;}
.yfe3_c00001{bottom:1013.693333pt;}
.y12dd_c00001{bottom:1014.266667pt;}
.y11b0_c00001{bottom:1014.440000pt;}
.y100b_c00001{bottom:1014.640000pt;}
.y12df_c00001{bottom:1015.400000pt;}
.y100a_c00001{bottom:1015.600000pt;}
.y1179_c00001{bottom:1016.360000pt;}
.y11af_c00001{bottom:1016.560000pt;}
.y116e_c00001{bottom:1017.693333pt;}
.y12b9_c00001{bottom:1017.893333pt;}
.y1178_c00001{bottom:1018.266667pt;}
.y1175_c00001{bottom:1018.440000pt;}
.y116d_c00001{bottom:1020.560000pt;}
.y1180_c00001{bottom:1020.933333pt;}
.y1183_c00001{bottom:1025.693333pt;}
.y1182_c00001{bottom:1026.266667pt;}
.h9_c00001{height:3.739141pt;}
.h26_c00001{height:7.412682pt;}
.hc_c00001{height:12.988594pt;}
.ha_c00001{height:14.890964pt;}
.hf_c00001{height:20.224297pt;}
.h3_c00001{height:20.466875pt;}
.h2_c00001{height:22.303646pt;}
.h35_c00001{height:23.992031pt;}
.h12_c00001{height:24.039557pt;}
.h37_c00001{height:24.206016pt;}
.he_c00001{height:25.800208pt;}
.h53_c00001{height:27.636979pt;}
.h5_c00001{height:27.879557pt;}
.h29_c00001{height:29.372891pt;}
.h4_c00001{height:31.618698pt;}
.h33_c00001{height:32.970312pt;}
.h2a_c00001{height:33.212891pt;}
.h34_c00001{height:34.658698pt;}
.hb_c00001{height:34.706224pt;}
.h6_c00001{height:35.357839pt;}
.h38_c00001{height:36.810313pt;}
.h10_c00001{height:36.952031pt;}
.h36_c00001{height:38.498698pt;}
.h13_c00001{height:38.546224pt;}
.h1_c00001{height:39.031380pt;}
.h32_c00001{height:39.992031pt;}
.hd_c00001{height:42.285365pt;}
.h7_c00001{height:42.770521pt;}
.h8_c00001{height:44.364714pt;}
.h1f_c00001{height:46.509661pt;}
.h11_c00001{height:47.618698pt;}
.h1e_c00001{height:50.183203pt;}
.h20_c00001{height:53.922344pt;}
.h16_c00001{height:57.661484pt;}
.h42_c00001{height:61.335026pt;}
.h23_c00001{height:66.910937pt;}
.h24_c00001{height:70.650078pt;}
.h17_c00001{height:74.389219pt;}
.h27_c00001{height:78.128359pt;}
.h21_c00001{height:81.801901pt;}
.h1b_c00001{height:85.541042pt;}
.h48_c00001{height:89.280182pt;}
.h28_c00001{height:92.953724pt;}
.h1a_c00001{height:96.692865pt;}
.h2b_c00001{height:100.432005pt;}
.h14_c00001{height:104.105547pt;}
.h31_c00001{height:109.681458pt;}
.h30_c00001{height:111.583828pt;}
.h25_c00001{height:117.159740pt;}
.h47_c00001{height:120.898880pt;}
.h49_c00001{height:124.572422pt;}
.h3c_c00001{height:128.311562pt;}
.h2f_c00001{height:132.050703pt;}
.h40_c00001{height:135.724245pt;}
.h15_c00001{height:139.463385pt;}
.h22_c00001{height:145.039297pt;}
.h2e_c00001{height:146.876068pt;}
.h1d_c00001{height:152.451979pt;}
.h2c_c00001{height:154.354349pt;}
.h19_c00001{height:159.930260pt;}
.h1c_c00001{height:163.603802pt;}
.h44_c00001{height:167.342943pt;}
.h45_c00001{height:171.082083pt;}
.h3f_c00001{height:174.821224pt;}
.h4b_c00001{height:178.494766pt;}
.h3d_c00001{height:182.233906pt;}
.h3e_c00001{height:185.973047pt;}
.h3b_c00001{height:189.646589pt;}
.h3a_c00001{height:193.385729pt;}
.h39_c00001{height:198.961641pt;}
.h4d_c00001{height:200.798411pt;}
.h2d_c00001{height:206.374323pt;}
.h4c_c00001{height:210.113464pt;}
.h4e_c00001{height:213.852604pt;}
.h46_c00001{height:217.591745pt;}
.h56_c00001{height:221.265286pt;}
.h18_c00001{height:225.004427pt;}
.h41_c00001{height:234.319479pt;}
.h50_c00001{height:236.156250pt;}
.h57_c00001{height:243.568932pt;}
.h43_c00001{height:249.144844pt;}
.h51_c00001{height:366.304583pt;}
.h4f_c00001{height:403.499193pt;}
.h4a_c00001{height:427.705208pt;}
.h58_c00001{height:909.267161pt;}
.h55_c00001{height:994.666667pt;}
.h54_c00001{height:1013.438307pt;}
.h0_c00001{height:1186.666667pt;}
.h52_c00001{height:1798.133047pt;}
.w1_c00001{width:697.333333pt;}
.w0_c00001{width:782.666667pt;}
.x0_c00001{left:0.000000pt;}
.x19f_c00001{left:93.333333pt;}
.x186_c00001{left:100.000000pt;}
.x1a3_c00001{left:101.333333pt;}
.x184_c00001{left:102.666667pt;}
.x1d0_c00001{left:105.333333pt;}
.x1ca_c00001{left:106.666667pt;}
.x1cf_c00001{left:108.000000pt;}
.x1d2_c00001{left:110.666667pt;}
.x1ce_c00001{left:111.626667pt;}
.x1cb_c00001{left:114.666667pt;}
.x1d1_c00001{left:116.000000pt;}
.x18a_c00001{left:120.000000pt;}
.x187_c00001{left:120.960000pt;}
.x1a2_c00001{left:122.293333pt;}
.x18b_c00001{left:124.000000pt;}
.x18d_c00001{left:124.960000pt;}
.x1a5_c00001{left:126.293333pt;}
.x190_c00001{left:128.000000pt;}
.x1a8_c00001{left:129.333333pt;}
.x19b_c00001{left:130.666667pt;}
.x17f_c00001{left:132.373333pt;}
.x178_c00001{left:133.333333pt;}
.x4_c00001{left:134.666667pt;}
.x103_c00001{left:135.800000pt;}
.x100_c00001{left:137.133333pt;}
.x175_c00001{left:138.466667pt;}
.x18e_c00001{left:140.373333pt;}
.x1a7_c00001{left:141.333333pt;}
.x1a6_c00001{left:142.293333pt;}
.x180_c00001{left:143.626667pt;}
.x181_c00001{left:145.706667pt;}
.x10f_c00001{left:146.666667pt;}
.xab_c00001{left:148.000000pt;}
.x73_c00001{left:149.333333pt;}
.x129_c00001{left:150.293333pt;}
.x9a_c00001{left:152.000000pt;}
.x48_c00001{left:152.960000pt;}
.x17d_c00001{left:154.666667pt;}
.x17e_c00001{left:156.000000pt;}
.x174_c00001{left:157.333333pt;}
.x14d_c00001{left:158.666667pt;}
.x3b_c00001{left:160.373333pt;}
.x1a_c00001{left:161.333333pt;}
.x2f_c00001{left:162.293333pt;}
.x19d_c00001{left:163.240000pt;}
.x165_c00001{left:164.373333pt;}
.xd3_c00001{left:165.706667pt;}
.xa3_c00001{left:167.040000pt;}
.x68_c00001{left:168.373333pt;}
.x5_c00001{left:169.333333pt;}
.x49_c00001{left:170.666667pt;}
.x139_c00001{left:171.626667pt;}
.x1b0_c00001{left:172.760000pt;}
.xbf_c00001{left:173.706667pt;}
.xb9_c00001{left:174.666667pt;}
.xac_c00001{left:176.000000pt;}
.x104_c00001{left:176.960000pt;}
.x5f_c00001{left:178.293333pt;}
.x194_c00001{left:179.240000pt;}
.xcb_c00001{left:180.373333pt;}
.x54_c00001{left:181.333333pt;}
.xdb_c00001{left:182.293333pt;}
.x7c_c00001{left:184.000000pt;}
.x12a_c00001{left:185.706667pt;}
.x115_c00001{left:187.040000pt;}
.x94_c00001{left:188.000000pt;}
.xe4_c00001{left:189.333333pt;}
.xcf_c00001{left:190.293333pt;}
.xa4_c00001{left:191.626667pt;}
.x195_c00001{left:192.573333pt;}
.xef_c00001{left:193.706667pt;}
.x60_c00001{left:194.666667pt;}
.x85_c00001{left:195.626667pt;}
.x3c_c00001{left:197.333333pt;}
.x24_c00001{left:198.666667pt;}
.x30_c00001{left:200.000000pt;}
.xb3_c00001{left:201.333333pt;}
.x4a_c00001{left:202.666667pt;}
.x70_c00001{left:203.626667pt;}
.x105_c00001{left:204.960000pt;}
.x11a_c00001{left:206.666667pt;}
.x74_c00001{left:208.000000pt;}
.x55_c00001{left:209.333333pt;}
.x13d_c00001{left:211.040000pt;}
.xf2_c00001{left:212.000000pt;}
.x10_c00001{left:212.960000pt;}
.x3d_c00001{left:214.093333pt;}
.x8e_c00001{left:215.040000pt;}
.x25_c00001{left:216.373333pt;}
.x152_c00001{left:217.706667pt;}
.x147_c00001{left:218.666667pt;}
.x16b_c00001{left:220.000000pt;}
.x9b_c00001{left:221.333333pt;}
.x124_c00001{left:222.293333pt;}
.x110_c00001{left:224.000000pt;}
.xc0_c00001{left:225.333333pt;}
.x75_c00001{left:226.293333pt;}
.x13f_c00001{left:228.000000pt;}
.x69_c00001{left:229.333333pt;}
.xb4_c00001{left:230.293333pt;}
.x1ae_c00001{left:231.426667pt;}
.xa5_c00001{left:232.373333pt;}
.x6_c00001{left:233.706667pt;}
.x9c_c00001{left:234.666667pt;}
.x148_c00001{left:235.626667pt;}
.x4b_c00001{left:236.760000pt;}
.x8f_c00001{left:237.906667pt;}
.x172_c00001{left:239.040000pt;}
.x111_c00001{left:240.000000pt;}
.x26_c00001{left:241.333333pt;}
.xba_c00001{left:242.293333pt;}
.x86_c00001{left:244.000000pt;}
.x3e_c00001{left:245.333333pt;}
.x61_c00001{left:246.666667pt;}
.x143_c00001{left:247.626667pt;}
.x1b_c00001{left:249.333333pt;}
.xc4_c00001{left:250.293333pt;}
.xf0_c00001{left:252.000000pt;}
.x101_c00001{left:253.333333pt;}
.x11_c00001{left:254.666667pt;}
.x120_c00001{left:255.626667pt;}
.x198_c00001{left:256.573333pt;}
.xad_c00001{left:257.706667pt;}
.xe9_c00001{left:259.040000pt;}
.x6a_c00001{left:260.000000pt;}
.x31_c00001{left:261.333333pt;}
.x62_c00001{left:262.666667pt;}
.x9d_c00001{left:264.000000pt;}
.x153_c00001{left:265.333333pt;}
.x7_c00001{left:266.666667pt;}
.x76_c00001{left:268.373333pt;}
.x149_c00001{left:269.333333pt;}
.x4c_c00001{left:270.293333pt;}
.x196_c00001{left:271.240000pt;}
.x87_c00001{left:272.373333pt;}
.x156_c00001{left:273.333333pt;}
.xf3_c00001{left:275.040000pt;}
.x12_c00001{left:276.373333pt;}
.x145_c00001{left:277.333333pt;}
.x32_c00001{left:279.040000pt;}
.xae_c00001{left:280.000000pt;}
.x8_c00001{left:281.333333pt;}
.xa6_c00001{left:282.293333pt;}
.x7d_c00001{left:284.000000pt;}
.xb5_c00001{left:285.333333pt;}
.xc6_c00001{left:286.293333pt;}
.xdc_c00001{left:287.626667pt;}
.x192_c00001{left:288.573333pt;}
.xea_c00001{left:289.706667pt;}
.x15f_c00001{left:291.040000pt;}
.x56_c00001{left:292.000000pt;}
.xd7_c00001{left:293.706667pt;}
.x90_c00001{left:294.666667pt;}
.x112_c00001{left:296.373333pt;}
.xcc_c00001{left:297.333333pt;}
.x16f_c00001{left:298.666667pt;}
.x4d_c00001{left:299.626667pt;}
.x27_c00001{left:301.333333pt;}
.x63_c00001{left:303.040000pt;}
.x1c_c00001{left:304.000000pt;}
.x135_c00001{left:305.333333pt;}
.x71_c00001{left:306.666667pt;}
.x12b_c00001{left:307.626667pt;}
.x121_c00001{left:308.960000pt;}
.x171_c00001{left:310.466667pt;}
.x1af_c00001{left:311.426667pt;}
.x57_c00001{left:312.373333pt;}
.xdd_c00001{left:313.333333pt;}
.x116_c00001{left:314.293333pt;}
.x9e_c00001{left:316.000000pt;}
.x3f_c00001{left:317.333333pt;}
.x14c_c00001{left:318.666667pt;}
.xb6_c00001{left:320.000000pt;}
.x157_c00001{left:320.960000pt;}
.x7e_c00001{left:322.666667pt;}
.x15a_c00001{left:323.626667pt;}
.xaf_c00001{left:324.960000pt;}
.x64_c00001{left:326.666667pt;}
.x106_c00001{left:328.373333pt;}
.xe5_c00001{left:329.333333pt;}
.xb7_c00001{left:330.666667pt;}
.x1d_c00001{left:331.626667pt;}
.x182_c00001{left:332.573333pt;}
.x7f_c00001{left:333.706667pt;}
.xd8_c00001{left:335.040000pt;}
.x9_c00001{left:336.000000pt;}
.x13_c00001{left:337.333333pt;}
.x158_c00001{left:338.666667pt;}
.xa7_c00001{left:340.373333pt;}
.xfc_c00001{left:341.333333pt;}
.x6b_c00001{left:342.666667pt;}
.x33_c00001{left:344.000000pt;}
.xd4_c00001{left:345.333333pt;}
.xde_c00001{left:346.293333pt;}
.x1ac_c00001{left:347.426667pt;}
.x72_c00001{left:348.373333pt;}
.x161_c00001{left:349.706667pt;}
.xc7_c00001{left:351.040000pt;}
.xeb_c00001{left:352.000000pt;}
.x131_c00001{left:353.333333pt;}
.x28_c00001{left:354.293333pt;}
.xfb_c00001{left:356.000000pt;}
.x4e_c00001{left:357.333333pt;}
.x40_c00001{left:358.666667pt;}
.x122_c00001{left:360.000000pt;}
.x2_c00001{left:361.333333pt;}
.x10a_c00001{left:362.666667pt;}
.xa8_c00001{left:364.000000pt;}
.xb0_c00001{left:365.333333pt;}
.x77_c00001{left:366.666667pt;}
.xf1_c00001{left:368.000000pt;}
.x14f_c00001{left:369.333333pt;}
.xd0_c00001{left:370.666667pt;}
.x29_c00001{left:372.000000pt;}
.x13a_c00001{left:372.960000pt;}
.x10d_c00001{left:374.093333pt;}
.x17a_c00001{left:375.040000pt;}
.x160_c00001{left:376.000000pt;}
.x88_c00001{left:376.960000pt;}
.xbb_c00001{left:378.293333pt;}
.x13e_c00001{left:380.000000pt;}
.x137_c00001{left:381.333333pt;}
.x34_c00001{left:382.666667pt;}
.xc1_c00001{left:383.626667pt;}
.x58_c00001{left:384.960000pt;}
.x78_c00001{left:386.666667pt;}
.xa_c00001{left:388.000000pt;}
.xd5_c00001{left:388.960000pt;}
.x4f_c00001{left:390.293333pt;}
.x193_c00001{left:391.240000pt;}
.xdf_c00001{left:392.373333pt;}
.xcd_c00001{left:393.333333pt;}
.x91_c00001{left:394.666667pt;}
.x10e_c00001{left:396.000000pt;}
.x163_c00001{left:396.960000pt;}
.x65_c00001{left:398.666667pt;}
.x16d_c00001{left:400.000000pt;}
.x1e_c00001{left:401.706667pt;}
.xd1_c00001{left:402.666667pt;}
.x35_c00001{left:404.373333pt;}
.xb_c00001{left:405.706667pt;}
.xfd_c00001{left:406.666667pt;}
.x41_c00001{left:408.373333pt;}
.x13b_c00001{left:409.333333pt;}
.xb1_c00001{left:410.666667pt;}
.x14_c00001{left:412.000000pt;}
.x2a_c00001{left:412.960000pt;}
.x1ad_c00001{left:413.906667pt;}
.x164_c00001{left:415.040000pt;}
.x95_c00001{left:416.000000pt;}
.xd9_c00001{left:417.333333pt;}
.xc8_c00001{left:419.040000pt;}
.xe6_c00001{left:420.373333pt;}
.x166_c00001{left:421.333333pt;}
.x59_c00001{left:422.293333pt;}
.x9f_c00001{left:424.000000pt;}
.x1f_c00001{left:425.706667pt;}
.x10b_c00001{left:426.666667pt;}
.x16c_c00001{left:428.000000pt;}
.x36_c00001{left:428.960000pt;}
.x2b_c00001{left:430.666667pt;}
.xc_c00001{left:431.626667pt;}
.x132_c00001{left:433.333333pt;}
.x50_c00001{left:434.666667pt;}
.x96_c00001{left:435.626667pt;}
.x1ab_c00001{left:436.573333pt;}
.x42_c00001{left:437.706667pt;}
.x6c_c00001{left:439.040000pt;}
.x80_c00001{left:440.373333pt;}
.x5a_c00001{left:441.706667pt;}
.x79_c00001{left:443.040000pt;}
.xf7_c00001{left:444.000000pt;}
.xe7_c00001{left:445.706667pt;}
.x17b_c00001{left:447.040000pt;}
.x92_c00001{left:448.000000pt;}
.x15_c00001{left:448.960000pt;}
.xc2_c00001{left:450.666667pt;}
.x127_c00001{left:452.000000pt;}
.x169_c00001{left:453.706667pt;}
.xa0_c00001{left:455.040000pt;}
.xb2_c00001{left:456.000000pt;}
.x89_c00001{left:456.960000pt;}
.x107_c00001{left:458.293333pt;}
.x162_c00001{left:459.626667pt;}
.x43_c00001{left:461.333333pt;}
.x15b_c00001{left:462.293333pt;}
.x6d_c00001{left:464.000000pt;}
.x170_c00001{left:465.333333pt;}
.x13c_c00001{left:466.666667pt;}
.x37_c00001{left:467.626667pt;}
.x11b_c00001{left:468.960000pt;}
.x19e_c00001{left:469.906667pt;}
.xc3_c00001{left:471.040000pt;}
.x5b_c00001{left:472.373333pt;}
.x123_c00001{left:473.333333pt;}
.xe0_c00001{left:474.666667pt;}
.xc5_c00001{left:475.626667pt;}
.x146_c00001{left:477.333333pt;}
.x117_c00001{left:478.293333pt;}
.x20_c00001{left:479.626667pt;}
.xbc_c00001{left:481.333333pt;}
.xd_c00001{left:482.666667pt;}
.x154_c00001{left:483.626667pt;}
.x38_c00001{left:484.573333pt;}
.x159_c00001{left:485.706667pt;}
.x183_c00001{left:486.666667pt;}
.x108_c00001{left:487.626667pt;}
.x10c_c00001{left:489.133333pt;}
.x12c_c00001{left:490.666667pt;}
.x51_c00001{left:491.626667pt;}
.x136_c00001{left:493.333333pt;}
.x2c_c00001{left:494.666667pt;}
.x21_c00001{left:496.000000pt;}
.x44_c00001{left:496.960000pt;}
.x81_c00001{left:498.666667pt;}
.xb8_c00001{left:499.626667pt;}
.x8a_c00001{left:501.333333pt;}
.x167_c00001{left:502.666667pt;}
.x5c_c00001{left:503.626667pt;}
.x113_c00001{left:505.333333pt;}
.x66_c00001{left:506.293333pt;}
.xa9_c00001{left:507.626667pt;}
.x125_c00001{left:508.960000pt;}
.xf8_c00001{left:510.666667pt;}
.xd2_c00001{left:512.000000pt;}
.xa1_c00001{left:512.960000pt;}
.x6e_c00001{left:514.666667pt;}
.x82_c00001{left:516.000000pt;}
.xe1_c00001{left:517.706667pt;}
.xf4_c00001{left:519.040000pt;}
.x16_c00001{left:520.373333pt;}
.xbd_c00001{left:521.333333pt;}
.x109_c00001{left:522.666667pt;}
.xaa_c00001{left:524.373333pt;}
.x150_c00001{left:525.333333pt;}
.xfa_c00001{left:526.293333pt;}
.x19a_c00001{left:527.240000pt;}
.x12d_c00001{left:528.373333pt;}
.x173_c00001{left:529.333333pt;}
.x8b_c00001{left:530.293333pt;}
.x15e_c00001{left:532.000000pt;}
.x102_c00001{left:533.333333pt;}
.xe8_c00001{left:534.666667pt;}
.x97_c00001{left:536.000000pt;}
.xc9_c00001{left:536.960000pt;}
.x1b1_c00001{left:538.093333pt;}
.x140_c00001{left:539.040000pt;}
.xbe_c00001{left:540.000000pt;}
.xe2_c00001{left:541.333333pt;}
.x130_c00001{left:542.293333pt;}
.x11c_c00001{left:544.000000pt;}
.x52_c00001{left:545.706667pt;}
.xe_c00001{left:546.666667pt;}
.x22_c00001{left:548.000000pt;}
.xfe_c00001{left:549.333333pt;}
.xec_c00001{left:550.666667pt;}
.x14e_c00001{left:551.626667pt;}
.x45_c00001{left:553.333333pt;}
.x11d_c00001{left:554.666667pt;}
.xf5_c00001{left:556.373333pt;}
.x39_c00001{left:557.333333pt;}
.x8c_c00001{left:558.666667pt;}
.x2d_c00001{left:560.000000pt;}
.x15d_c00001{left:560.960000pt;}
.x133_c00001{left:562.293333pt;}
.x118_c00001{left:564.000000pt;}
.x14a_c00001{left:564.960000pt;}
.x177_c00001{left:565.906667pt;}
.x46_c00001{left:567.040000pt;}
.x168_c00001{left:568.000000pt;}
.xce_c00001{left:568.960000pt;}
.x11e_c00001{left:570.293333pt;}
.x19c_c00001{left:571.240000pt;}
.x17_c00001{left:572.373333pt;}
.x98_c00001{left:573.333333pt;}
.x16e_c00001{left:574.666667pt;}
.x7a_c00001{left:576.373333pt;}
.x83_c00001{left:577.333333pt;}
.xa2_c00001{left:578.466667pt;}
.x16a_c00001{left:579.626667pt;}
.x128_c00001{left:580.960000pt;}
.x53_c00001{left:582.666667pt;}
.xe3_c00001{left:584.000000pt;}
.xff_c00001{left:584.960000pt;}
.x141_c00001{left:586.293333pt;}
.x155_c00001{left:587.626667pt;}
.x67_c00001{left:588.960000pt;}
.xd6_c00001{left:590.293333pt;}
.x2e_c00001{left:592.000000pt;}
.x15c_c00001{left:593.333333pt;}
.x18_c00001{left:595.040000pt;}
.x5d_c00001{left:596.373333pt;}
.x23_c00001{left:597.333333pt;}
.x47_c00001{left:598.666667pt;}
.x8d_c00001{left:600.000000pt;}
.xca_c00001{left:601.333333pt;}
.x7b_c00001{left:602.666667pt;}
.xf_c00001{left:603.626667pt;}
.xed_c00001{left:605.133333pt;}
.x126_c00001{left:606.666667pt;}
.x6f_c00001{left:608.000000pt;}
.x138_c00001{left:609.333333pt;}
.x176_c00001{left:610.666667pt;}
.x3a_c00001{left:612.000000pt;}
.x93_c00001{left:612.960000pt;}
.x12e_c00001{left:614.293333pt;}
.x114_c00001{left:616.000000pt;}
.x19_c00001{left:616.960000pt;}
.x134_c00001{left:618.666667pt;}
.xf9_c00001{left:620.373333pt;}
.x5e_c00001{left:621.333333pt;}
.x144_c00001{left:622.666667pt;}
.x99_c00001{left:623.626667pt;}
.xda_c00001{left:625.333333pt;}
.x1_c00001{left:626.666667pt;}
.x119_c00001{left:628.373333pt;}
.x142_c00001{left:629.706667pt;}
.x17c_c00001{left:631.040000pt;}
.x179_c00001{left:632.000000pt;}
.xf6_c00001{left:632.960000pt;}
.x151_c00001{left:634.666667pt;}
.x11f_c00001{left:635.626667pt;}
.x84_c00001{left:637.333333pt;}
.x3_c00001{left:638.666667pt;}
.x14b_c00001{left:640.000000pt;}
.x12f_c00001{left:641.333333pt;}
.xee_c00001{left:642.666667pt;}
.x199_c00001{left:644.000000pt;}
.x197_c00001{left:644.960000pt;}
.x185_c00001{left:646.293333pt;}
.x1c7_c00001{left:647.240000pt;}
.x1ba_c00001{left:648.373333pt;}
.x1b8_c00001{left:649.533333pt;}
.x1b7_c00001{left:650.666667pt;}
.x1c6_c00001{left:651.800000pt;}
.x1b9_c00001{left:653.333333pt;}
.x191_c00001{left:654.666667pt;}
.x18f_c00001{left:656.000000pt;}
.x1aa_c00001{left:657.333333pt;}
.x188_c00001{left:658.666667pt;}
.x1b3_c00001{left:660.200000pt;}
.x1a0_c00001{left:661.333333pt;}
.x18c_c00001{left:662.666667pt;}
.x1b2_c00001{left:664.000000pt;}
.x189_c00001{left:665.333333pt;}
.x1a9_c00001{left:667.040000pt;}
.x1b6_c00001{left:668.000000pt;}
.x1a4_c00001{left:669.333333pt;}
.x1c0_c00001{left:670.666667pt;}
.x1c8_c00001{left:672.000000pt;}
.x1cc_c00001{left:673.133333pt;}
.x1c9_c00001{left:674.666667pt;}
.x1a1_c00001{left:676.000000pt;}
.x1c4_c00001{left:677.733333pt;}
.x1b4_c00001{left:678.666667pt;}
.x1b5_c00001{left:680.000000pt;}
.x1cd_c00001{left:681.506667pt;}
.x1c1_c00001{left:682.493333pt;}
.x1c2_c00001{left:684.373333pt;}
.x1c3_c00001{left:685.333333pt;}
.x1c5_c00001{left:688.000000pt;}
.x1be_c00001{left:689.333333pt;}
.x1bc_c00001{left:690.666667pt;}
.x1bb_c00001{left:692.000000pt;}
.x1bd_c00001{left:693.333333pt;}
.x1bf_c00001{left:697.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; }
  